From 33ed8f19060527a9f4b3e7247d94ce4cf291040b Mon Sep 17 00:00:00 2001 From: Jake Low Date: Mon, 9 Sep 2024 13:51:00 -0700 Subject: [PATCH] Add terrain (hillshade and contour) generation scripts --- terrain/Dockerfile | 26 ++++++ terrain/README.md | 25 ++++++ terrain/entrypoint.sh | 3 + terrain/filter_tiles.py | 29 +++++++ terrain/generate.sh | 29 +++++++ terrain/land.geojson | 1 + terrain/make_tile.py | 173 +++++++++++++++++++++++++++++++++++++ terrain/mapzen-dem.wms.xml | 25 ++++++ 8 files changed, 311 insertions(+) create mode 100644 terrain/Dockerfile create mode 100644 terrain/README.md create mode 100644 terrain/entrypoint.sh create mode 100644 terrain/filter_tiles.py create mode 100755 terrain/generate.sh create mode 100644 terrain/land.geojson create mode 100644 terrain/make_tile.py create mode 100644 terrain/mapzen-dem.wms.xml diff --git a/terrain/Dockerfile b/terrain/Dockerfile new file mode 100644 index 0000000..64a6234 --- /dev/null +++ b/terrain/Dockerfile @@ -0,0 +1,26 @@ +FROM debian:bookworm + +RUN apt update +RUN apt install -y python3 python3-pip python3-venv libsqlite3-dev gdal-bin git jq +RUN ln -s /usr/bin/python3 /usr/bin/python + +RUN mkdir /root/src +WORKDIR /root/src + +RUN git clone https://github.com/felt/tippecanoe.git +WORKDIR /root/src/tippecanoe +RUN make -j && make install + +WORKDIR /root/src +RUN python -m venv . +RUN bin/pip install mercantile shapely + +COPY generate.sh . +COPY make_tile.py . +COPY mapzen-dem.wms.xml . +COPY filter_tiles.py . +COPY land.geojson . +COPY entrypoint.sh . +RUN chmod +x entrypoint.sh + +CMD /root/src/entrypoint.sh diff --git a/terrain/README.md b/terrain/README.md new file mode 100644 index 0000000..05dfcb0 --- /dev/null +++ b/terrain/README.md @@ -0,0 +1,25 @@ +The scripts in this directory can be used to generate the hillshade and contour line tilesets used by OpenTrailMap. + +The main entrypoint is `generate.sh` which builds all tiles in both tilesets. Edit the variables at the top of this script to change the min and max zoom and the bounding box for which tiles are built. + +Internally, `generate.sh` calls `make_tile.py` repeatedly. `make_tile.py` takes a tile ID, fetches the required DEM data for that region, and builds a hillshade tile and contour tile. There are variables at the top of this file that can be changed to configure how tiles are built (e.g. contour intervals and simplification threshold). + +DEM data is fetched from Mapzen's global DEM dataset, hosted on AWS. The file `mapzen-dem.wms.xml` describes how to read this dataset in a format that GDAL tools such as `gdalwarp` understand. `make_tile.py` uses this to fetch the DEM data for a single-tile region (plus required buffer) on the fly, and discards the data once it builds the output tiles. This reduces the disk space required to build tiles. + +The scripts have the following dependencies: +- gdal +- tippecanoe +- mercantile +- jq +- python + +You can install these dependencies yourself, or use the provided Dockerfile to build a container that has them all. When building in Docker, be sure to mount a directory from the host system to `/root/src/build` in the container, as this is where the output tiles will be written. + +Running `generate.sh` will produce two tilesets in the working directory called `contours` and `hillshade`, which are directory trees. If desired, these directory trees can be converted to MBTiles or PMTiles archives using a variety of tools, but this is not handled automatically by the scripts in this repository. + +Tip: building the tiles creates a lot of intermediate artifacts on disk. These are created in temporary directories and automatically cleaned up afterwards. But you can speed up the process significantly by ensuring that they are written to an in-memory 'ramfs' rather than disk. By default tempdirs are created in `/tmp`, but if that directory isn't a ramfs on your machine (e.g. macOS), you can set the `TMPDIR` environment variable to somewhere else before running `generate.sh`, and tempdirs will be created there instead. + +The current tilesets (s3://osmus-tile/hillshade.pmtiles and s3://osmus-tile/contours-feet.pmtiles) were built on 2024-09-07, on a c7g.8xlarge EC2 instance in AWS. The tiled area covers the bbox `[-180, -60, 180, 85]`, which includes all land except Antarctica. The `filter_tiles.py` script was used to additionally exclude tiles in the oceans (i.e. not intersecting `land.geojson`). Hillshade tiles were built for zooms 1-12 and contour lines were built for zooms 8-12. + +The build took around 36 hours and cost about $50. It required about 128GB of disk space, though I recommend allocating 256GB or even 512GB since at then end you need to package the tiles into PMTiles, and I found the easiest way to do that was to create MBTiles first, so there were large intermediate artifacts to deal with. Converting the tiles from a directory tree to a PMTiles archive is I/O bound and does not require multiple cores, so you can downsize the EC2 instance to something like a c7g.medium to save some money during this phase. + diff --git a/terrain/entrypoint.sh b/terrain/entrypoint.sh new file mode 100644 index 0000000..23a9d27 --- /dev/null +++ b/terrain/entrypoint.sh @@ -0,0 +1,3 @@ +#!/bin/bash +source bin/activate +./generate.sh diff --git a/terrain/filter_tiles.py b/terrain/filter_tiles.py new file mode 100644 index 0000000..f74ba43 --- /dev/null +++ b/terrain/filter_tiles.py @@ -0,0 +1,29 @@ +""" +Read tile IDs from STDIN, filter them to just those that intersect a GeoJSON geometry, +and write just the intersecting ones to STDOUT. + +Useful in conjunction with `mercantile tiles` command, to filter tiles to an area of +interest and avoid needlessly tiling unwanted areas e.g. oceans. + +Usage: python filter_tiles.py GEOJSON_FILE +""" + +import json +import sys + +import mercantile +import shapely + +geojson_file = sys.argv[1] +with open(geojson_file) as f: + geojson = shapely.from_geojson(f.read()) + shapely.prepare(geojson) + +for line in sys.stdin: + x, y, z = json.loads(line) + bounds = mercantile.bounds((x, y, z)) + if shapely.intersects(geojson, shapely.box(*bounds)): + print(json.dumps([x, y, z]), file=sys.stdout) + + + diff --git a/terrain/generate.sh b/terrain/generate.sh new file mode 100755 index 0000000..247738e --- /dev/null +++ b/terrain/generate.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +# This script generates hillshade and contour line tiles from Mapzen's DEM dataset + +### Configuration parameters + +SOURCE_DATASET=mapzen-dem.wms.xml +MINZOOM=10 +MAXZOOM=12 +# BOUNDS="[-124.73460, 45.56631, -116.87882, 48.99251]" # US-WA +# BOUNDS="[-180, -85.05, 180, 85.05]" # let's GOOOO! +BOUNDS="[-180, -60, 180, 85.05]" # exclude antarctica + +# Z7 + Z8 took about 9h on my laptop. But osmx extract for a planet file was running at the same time + + +### GDAL settings (these make fetching and reprojecting data faster) + +export GDAL_CACHEMAX=4096 # in MB +export GDAL_MAX_CONNECTIONS=8 # make GDAL use more parallelism when fetching (default is 2) + +for zoom in $(seq $MINZOOM $MAXZOOM); do + echo $BOUNDS \ + | mercantile tiles $zoom \ + | python filter_tiles.py land.geojson \ + | jq -r '[.[2], .[0], .[1]] | join(" ")' \ + | xargs --verbose -d '\n' -n 1 -P 16 sh -c "python make_tile.py $SOURCE_DATASET \$0 >/dev/null 2>&1" +done + diff --git a/terrain/land.geojson b/terrain/land.geojson new file mode 100644 index 0000000..433317f --- /dev/null +++ b/terrain/land.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-180,-84.35232046401032],[-179.96759967599675,-84.35569761855008],[-179.549995499955,-84.3438775776609],[-179.13239132391323,-84.33205753677173],[-178.71478714787148,-84.32023749588255],[-178.29718297182973,-84.30841745499337],[-178.1819818198182,-84.32192607315243],[-178.17118171181713,-84.32361465042231],[-178.1819818198182,-84.33036895950184],[-178.19278192781928,-84.33374611404162],[-178.20358203582035,-84.33543469131149],[-178.21438214382144,-84.33543469131149],[-178.03078030780307,-84.35569761855008],[-178.0019800198002,-84.36582908216938],[-177.99837998379985,-84.38609200940797],[-177.7031770317703,-84.41817497753574],[-177.54117541175412,-84.39960062756704],[-177.3251732517325,-84.40635493664657],[-177.10557105571056,-84.38271485486821],[-176.759967599676,-84.38778058667786],[-176.41076410764109,-84.39115774121763],[-176.0651606516065,-84.39622347302728],[-176.11556115561154,-84.40804351391645],[-176.45756457564576,-84.41986355480563],[-176.51156511565117,-84.43506075023457],[-176.2559625596256,-84.4620779865527],[-176.00036000360004,-84.48740664560094],[-176.0219602196022,-84.49247237741058],[-176.04356043560435,-84.49416095468047],[-176.01476014760146,-84.49922668649012],[-175.96435964359642,-84.51780103645882],[-175.91395913959138,-84.54312969550706],[-175.88155881558816,-84.54819542731671],[-175.56475564755647,-84.52286676826847],[-175.2479524795248,-84.49753810922023],[-175.19035190351903,-84.48571806833105],[-175.14355143551435,-84.4519465229334],[-175.16155161551615,-84.44519221385387],[-175.1831518315183,-84.44181505931411],[-175.22635226352264,-84.44012648204422],[-175.20835208352082,-84.41986355480563],[-175.17955179551797,-84.41479782299598],[-174.68274682746826,-84.4316835956948],[-174.18954189541896,-84.44856936839363],[-173.69273692736928,-84.46545514109246],[-173.19953199531994,-84.4806523365214],[-172.70632706327063,-84.49753810922023],[-172.20952209522096,-84.51442388191906],[-171.71631716317162,-84.53130965461789],[-171.22311223112231,-84.54819542731671],[-170.72630726307264,-84.56508120001554],[-170.2331023310233,-84.58196697271437],[-169.739897398974,-84.5988527454132],[-169.24309243092432,-84.61404994084214],[-168.74988749887498,-84.63093571354096],[-168.2530825308253,-84.64782148623979],[-168.209882098821,-84.6562643725892],[-168.1450814508145,-84.69003591798686],[-168.12348123481235,-84.69510164979651],[-168.1630816308163,-84.72211888611463],[-168.0550805508055,-84.77108762694122],[-168.0190801908019,-84.78121909056053],[-167.76347763477634,-84.79641628598947],[-167.5078750787508,-84.81161348141842],[-167.47907479074792,-84.83694214046666],[-167.55467554675548,-84.84876218135584],[-167.4430744307443,-84.86733653132454],[-167.17667176671767,-84.84369644954619],[-166.91026910269102,-84.82005636776783],[-166.4350643506435,-84.83018783138712],[-165.95625956259562,-84.83863071773654],[-165.4810548105481,-84.84876218135584],[-165.00225002250022,-84.85720506770525],[-164.52344523445234,-84.86733653132454],[-164.04824048240482,-84.87577941767395],[-163.9330393303933,-84.89435376764267],[-163.4650346503465,-84.90448523126196],[-162.99342993429934,-84.91461669488126],[-162.95742957429573,-84.90955096307161],[-162.84942849428495,-84.8825337267535],[-162.35262352623528,-84.90786238580174],[-161.85581855818558,-84.93150246758009],[-161.3590135901359,-84.95514254935844],[-160.85860858608586,-84.98047120840668],[-160.3618036180362,-85.00411129018504],[-159.8649986499865,-85.0277513719634],[-159.36819368193682,-85.05139145374176],[-158.87138871388714,-85.07672011279],[-158.67338673386735,-85.13244316269613],[-158.46458464584646,-85.1543946672046],[-158.4861848618486,-85.13413173996601],[-158.51138511385113,-85.11893454453707],[-158.56538565385654,-85.09867161729848],[-158.4969849698497,-85.09191730821894],[-158.4249842498425,-85.09191730821894],[-158.35298352983529,-85.10373734910812],[-158.19818198181983,-85.15946039901425],[-158.16218162181622,-85.1645261308239],[-157.73377733777338,-85.17634617171308],[-157.30177301773017,-85.18816621260225],[-156.86976869768696,-85.19829767622156],[-156.4377643776438,-85.21011771711073],[-156.00936009360095,-85.22193775799991],[-156.05616056160562,-85.2033634080312],[-156.49176491764916,-85.19998625349143],[-156.92736927369273,-85.19492052168178],[-156.45936459364594,-85.19154336714202],[-155.99135991359913,-85.18647763533238],[-155.9409594095941,-85.17972332625284],[-155.90135901359014,-85.15777182174436],[-155.94455944559445,-85.14426320358531],[-156.09936099360993,-85.14257462631542],[-156.07056070560705,-85.13413173996601],[-155.7861578615786,-85.13075458542625],[-155.50535505355055,-85.1256888536166],[-155.98055980559806,-85.08685157640929],[-156.45936459364594,-85.0463257219321],[-156.93816938169383,-85.00748844472481],[-156.95976959769598,-85.00073413564527],[-157.01017010170102,-84.9686511675175],[-157.0461704617046,-84.95683112662833],[-157.34137341373415,-84.92643673577044],[-157.63657636576366,-84.89773092218243],[-157.58257582575825,-84.8825337267535],[-157.13257132571326,-84.88759945856313],[-156.68616686166862,-84.89435376764267],[-156.23616236162363,-84.89941949945232],[-155.78975789757897,-84.90448523126196],[-155.75735757357575,-84.9011080767222],[-155.75015750157502,-84.9011080767222],[-155.78975789757897,-84.89097661310291],[-156.11016110161103,-84.88591088129326],[-155.70335703357034,-84.87915657221372],[-155.73935739357393,-84.86564795405467],[-155.8689586895869,-84.86058222224501],[-155.5881558815588,-84.84031929500642],[-155.6421564215642,-84.82849925411725],[-156.09936099360993,-84.82174494503771],[-156.55656556565566,-84.81499063595818],[-157.01377013770139,-84.80823632687864],[-157.4709747097471,-84.80148201779912],[-157.9281792817928,-84.79641628598947],[-158.38538385383853,-84.78966197690994],[-158.27738277382775,-84.78121909056053],[-158.24858248582487,-84.76771047240146],[-158.71658716587166,-84.74913612243276],[-159.18459184591845,-84.73056177246404],[-159.65259652596527,-84.71367599976521],[-160.12060120601205,-84.69510164979651],[-160.58860588605887,-84.6765272998278],[-161.05661056610566,-84.6579529498591],[-161.52461524615245,-84.64106717716027],[-161.99261992619927,-84.62249282719155],[-162.46062460624606,-84.60391847722285],[-162.92862928629287,-84.58534412725413],[-163.39663396633966,-84.5684583545553],[-163.86463864638645,-84.5498840045866],[-163.89343893438934,-84.54481827277695],[-163.91143911439116,-84.529621077348],[-163.9078390783908,-84.52793250007812],[-163.90423904239043,-84.5211781909986],[-163.90063900639007,-84.51780103645882],[-163.91143911439116,-84.51273530464918],[-164.0950409504095,-84.4806523365214],[-163.6810368103681,-84.48571806833105],[-163.2670326703267,-84.49247237741058],[-163.31743317433174,-84.47727518198164],[-163.65943659436596,-84.42830644115504],[-164.1490414904149,-84.42661786388516],[-164.6422464224642,-84.4232407093454],[-165.13185131851318,-84.41986355480563],[-165.1750517505175,-84.4333721729647],[-165.19305193051932,-84.43506075023457],[-165.60345603456034,-84.4131092457261],[-166.0138601386014,-84.39115774121763],[-166.42426424264244,-84.37089481397904],[-165.96345963459635,-84.38440343213809],[-165.50625506255062,-84.39791205029715],[-165.51345513455135,-84.38102627759832],[-165.4090540905409,-84.3641405048995],[-164.92664926649266,-84.3641405048995],[-164.44784447844478,-84.3641405048995],[-163.96543965439653,-84.3641405048995],[-163.4830348303483,-84.36245192762962],[-163.00063000630007,-84.36245192762962],[-163.01863018630186,-84.35907477308986],[-163.04383043830438,-84.3455661549308],[-163.0582305823058,-84.34050042312114],[-163.42543425434255,-84.32361465042231],[-163.7890378903789,-84.30841745499337],[-164.15624156241563,-84.29153168229455],[-164.17064170641706,-84.28815452775478],[-164.18144181441815,-84.28308879594513],[-164.16344163441636,-84.27126875505596],[-164.11664116641165,-84.27126875505596],[-164.09864098640986,-84.26282586870654],[-164.10944109441095,-84.26451444597642],[-164.22464224642246,-84.25100582781735],[-164.27144271442714,-84.23918578692818],[-164.2318423184232,-84.23412005511854],[-164.18864188641885,-84.22567716876912],[-164.62424624246242,-84.18515131429193],[-164.73944739447396,-84.15644550070392],[-165.15345153451534,-84.13787115073522],[-165.12825128251282,-84.11760822349663],[-165.09225092250924,-84.11254249168698],[-165.020250202502,-84.1192968007665],[-165.059850598506,-84.10241102806768],[-165.07785077850778,-84.08890240990861],[-165.09225092250924,-84.0720166372098],[-165.00945009450095,-84.05681944178085],[-164.57384573845738,-84.05513086451097],[-164.1382413824138,-84.0517537099712],[-163.70263702637027,-84.05006513270132],[-163.74223742237422,-84.0314907827326],[-164.03744037440373,-83.99096492825542],[-164.03024030240303,-83.98927635098553],[-163.99783997839978,-83.97745631009636],[-163.97263972639726,-83.9740791555566],[-163.91863918639186,-83.9723905782867],[-163.90063900639007,-83.97070200101683],[-163.88983889838897,-83.9639476919373],[-163.90423904239043,-83.95719338285777],[-163.94743947439474,-83.95212765104812],[-163.99423994239942,-83.93861903288906],[-164.45144451444514,-83.88120740571304],[-164.91224912249123,-83.82379577853703],[-164.96264962649627,-83.80184427402857],[-164.98064980649806,-83.79677854221892],[-165.419854198542,-83.76638415136102],[-165.48465484654847,-83.7494983786622],[-165.51345513455135,-83.74612122412243],[-165.93465934659346,-83.78495850132974],[-165.95265952659526,-83.79002423313938],[-165.98865988659887,-83.80353285129844],[-166.0678606786068,-83.81873004672738],[-166.4710647106471,-83.80522142856833],[-166.87426874268743,-83.79340138767915],[-167.27747277472776,-83.78158134678996],[-167.68067680676808,-83.76976130590079],[-167.62667626676267,-83.79002423313938],[-167.25227252272524,-83.81028716037797],[-167.19467194671947,-83.82548435580692],[-167.2990729907299,-83.8373043966961],[-167.69147691476914,-83.8085985831081],[-168.0838808388084,-83.77989276952009],[-167.99027990279902,-83.76638415136102],[-168.0550805508055,-83.75287553320196],[-168.26028260282604,-83.74274406958267],[-167.96867968679686,-83.74443264685254],[-167.6770767707677,-83.74443264685254],[-167.73467734677348,-83.72248114234408],[-168.2170821708217,-83.71234967872478],[-168.3358833588336,-83.69208675148619],[-168.45468454684547,-83.65493805154877],[-168.60948609486096,-83.622855083421],[-168.63468634686348,-83.60428073345228],[-168.55908559085591,-83.57895207440404],[-168.5338853388534,-83.57219776532452],[-168.54828548285482,-83.54180337446662],[-168.58428584285843,-83.52998333357745],[-169.01629016290164,-83.51478613814851],[-169.04869048690486,-83.50803182906897],[-169.07389073890738,-83.48945747910027],[-169.00549005490055,-83.47426028367131],[-168.77868778687787,-83.4759488609412],[-169.06309063090632,-83.45906308824237],[-169.3438934389344,-83.44217731554355],[-169.3618936189362,-83.43880016100378],[-169.41949419494196,-83.41347150195554],[-169.4338943389434,-83.41009434741578],[-169.89469894698948,-83.37294564747836],[-170.35550355503554,-83.33579694754094],[-170.81630816308163,-83.3003368248734],[-171.28071280712808,-83.26318812493598],[-171.74151741517414,-83.22772800226845],[-171.69471694716947,-83.21759653864915],[-171.3239132391324,-83.23954804315763],[-170.95670956709566,-83.26149954766609],[-171.3959139591396,-83.2125308068395],[-171.83511835118352,-83.1635620660129],[-172.27432274322743,-83.11290474791642],[-172.709927099271,-83.06393600708982],[-173.1491314913149,-83.01496726626323],[-173.58833588335884,-82.96430994816674],[-174.02754027540274,-82.91534120734015],[-174.3371433714337,-82.81233799387729],[-174.36954369543696,-82.77856644847965],[-174.34074340743408,-82.75830352124105],[-174.26874268742688,-82.75661494397117],[-173.9051390513905,-82.80896083933753],[-173.54513545135453,-82.86299531197378],[-173.18153181531815,-82.91702978461002],[-172.74232742327422,-82.91871836187991],[-172.5119251192512,-82.86974962105332],[-172.14472144721447,-82.89845543464132],[-171.77751777517776,-82.92547267095944],[-171.40671406714068,-82.95417848454744],[-170.95670956709566,-83.05549312074041],[-170.93150931509314,-83.06393600708982],[-170.83430834308342,-83.12810194334537],[-170.79470794707947,-83.16862779782255],[-170.76950769507695,-83.18213641598162],[-170.7191071910719,-83.19733361141056],[-170.34470344703448,-83.23448231134797],[-169.97389973899737,-83.27331958855528],[-169.59949599495994,-83.3104682884927],[-169.53469534695347,-83.30202540214329],[-169.73629736297363,-83.24461377496728],[-169.32229322293222,-83.24799092950704],[-168.9118891188912,-83.24967950677691],[-168.49788497884978,-83.25305666131668],[-168.08748087480876,-83.25474523858657],[-168.0622806228062,-83.24630235223715],[-168.029880298803,-83.21590796137926],[-168.00828008280084,-83.20746507502984],[-167.72747727477275,-83.21759653864915],[-167.4430744307443,-83.22603942499856],[-167.42867428674288,-83.22435084772867],[-167.35667356673568,-83.20071076595032],[-167.33147331473316,-83.19733361141056],[-166.8850688506885,-83.19902218868043],[-166.4350643506435,-83.19902218868043],[-165.9850598505985,-83.20071076595032],[-165.5350553505535,-83.20071076595032],[-165.0850508505085,-83.20239934322021],[-164.85464854648546,-83.24967950677691],[-164.87264872648726,-83.26487670220587],[-164.8942489424894,-83.2699424340155],[-164.9158491584916,-83.2699424340155],[-164.93744937449375,-83.27669674309504],[-164.94464944649445,-83.27838532036492],[-164.94824948249482,-83.2817624749047],[-164.95184951849518,-83.28513962944446],[-164.95184951849518,-83.29020536125411],[-164.95184951849518,-83.29358251579387],[-164.94824948249482,-83.3003368248734],[-164.94824948249482,-83.30540255668305],[-164.95544955449554,-83.31722259757223],[-164.98424984249843,-83.34086267935058],[-164.98424984249843,-83.35605987477953],[-164.95184951849518,-83.35437129750964],[-164.82224822248222,-83.37632280201812],[-164.7790477904779,-83.39151999744706],[-164.70344703447034,-83.43880016100378],[-164.67464674646746,-83.4472430473532],[-164.66744667446673,-83.45230877916285],[-164.67464674646746,-83.45737451097249],[-164.68904689046892,-83.46412882005203],[-164.69624696246962,-83.46750597459179],[-164.69264692646925,-83.48439174729062],[-164.65664656646567,-83.49790036544968],[-164.6170461704617,-83.5063432517991],[-164.1778417784178,-83.52660617903769],[-164.11304113041132,-83.5063432517991],[-164.159841598416,-83.48101459275085],[-164.17424174241742,-83.46919455186168],[-164.19584195841958,-83.4472430473532],[-164.2030420304203,-83.43204585192424],[-164.2030420304203,-83.4168486564953],[-164.18864188641885,-83.40334003833624],[-164.1670416704167,-83.39658572925671],[-163.88263882638827,-83.38138853382777],[-163.59823598235982,-83.36787991566871],[-163.4650346503465,-83.33748552481082],[-163.2850328503285,-83.3391741020807],[-163.13383133831337,-83.31553402030234],[-162.8710287102871,-83.32228832938188],[-162.8278282782828,-83.33410837027105],[-162.80262802628027,-83.36619133839882],[-162.80982809828097,-83.36787991566871],[-162.82062820628207,-83.37125707020847],[-162.8278282782828,-83.37294564747836],[-162.80262802628027,-83.39151999744706],[-162.77022770227703,-83.3982743065266],[-162.37062370623707,-83.42360296557483],[-162.2590225902259,-83.45062020189296],[-162.30942309423094,-83.46244024278214],[-162.4570245702457,-83.47426028367131],[-162.40662406624065,-83.49621178817979],[-162.1690216902169,-83.5249176017678],[-161.7478174781748,-83.51478613814851],[-161.33021330213302,-83.5063432517991],[-160.9090090900909,-83.49790036544968],[-160.49140491404916,-83.48776890183038],[-160.070200702007,-83.47932601548096],[-159.77859778597787,-83.51309756087862],[-159.48339483394835,-83.54518052900639],[-159.19179191791918,-83.54518052900639],[-159.1017910179102,-83.53336048811721],[-159.0909909099091,-83.52660617903769],[-159.06939069390694,-83.49958894271956],[-159.04419044190442,-83.4759488609412],[-159.0009900099001,-83.45737451097249],[-158.51858518585186,-83.43542300646402],[-158.03618036180362,-83.41178292468565],[-157.55377553775537,-83.38983142017719],[-157.52857528575285,-83.38476568836754],[-157.48177481774817,-83.35268272023977],[-157.4529745297453,-83.34255125662047],[-157.18657186571866,-83.28513962944446],[-156.91656916569167,-83.22941657953832],[-157.02457024570245,-83.20577649775997],[-157.50337503375033,-83.1922678796009],[-157.9821798217982,-83.18044783871173],[-158.46458464584646,-83.16693922055266],[-158.52218522185223,-83.15849633420325],[-158.5581855818558,-83.13316767515501],[-158.4969849698497,-83.11797047972607],[-158.01458014580146,-83.10615043883689],[-157.52857528575285,-83.09433039794772],[-157.0461704617046,-83.08251035705854],[-156.56016560165602,-83.07069031616935],[-156.07776077760778,-83.05887027528017],[-155.59175591755917,-83.0453616571211],[-155.43695436954368,-83.00821295718369],[-155.49815498154982,-82.95586706181733],[-155.13455134551344,-82.87819250740273],[-155.10935109351092,-82.86299531197378],[-155.08055080550804,-82.81740372568694],[-155.05895058950588,-82.802206530258],[-154.63774637746377,-82.75999209851093],[-154.22014220142202,-82.71777766676387],[-153.80253802538024,-82.6755632350168],[-153.38133381333813,-82.63334880326974],[-152.96372963729638,-82.59113437152267],[-152.54252542525424,-82.5489199397756],[-152.5569255692557,-82.52696843526712],[-152.57852578525785,-82.51345981710806],[-152.63252632526326,-82.49657404440923],[-152.6541265412654,-82.48475400352005],[-152.69732697326972,-82.45604818993205],[-152.72252722527224,-82.44253957177298],[-152.81252812528126,-82.41383375818498],[-152.89532895328952,-82.3733079037078],[-153.33453334533345,-82.29056761748355],[-153.77373773737736,-82.2078273312593],[-154.21654216542166,-82.12508704503504],[-154.2561425614256,-82.10144696325668],[-154.1121411214112,-82.0710525723988],[-154.45774457744577,-82.01870667703243],[-154.80334803348035,-81.96636078166607],[-154.83934839348393,-81.94440927715759],[-154.77454774547746,-81.92245777264912],[-154.53334533345333,-81.87855476363217],[-154.42534425344252,-81.83802890915499],[-154.35334353343532,-81.82283171372603],[-154.09054090540906,-81.80763451829709],[-153.83133831338313,-81.79243732286815],[-153.75933759337593,-81.7772401274392],[-153.6909369093691,-81.74684573658132],[-153.71973719737198,-81.73671427296202],[-153.79173791737918,-81.69112268667519],[-153.8169381693817,-81.6809912230559],[-153.84573845738458,-81.67761406851612],[-153.98253982539825,-81.67761406851612],[-154.0041400414004,-81.6691711821667],[-154.0329403294033,-81.65397398673777],[-154.06534065340654,-81.64384252311848],[-154.29934299342995,-81.60838240045094],[-154.31374313743137,-81.60162809137141],[-154.34254342543426,-81.5830537414027],[-154.35694356943569,-81.57461085505328],[-154.4109441094411,-81.5627908141641],[-154.81774817748177,-81.5340850005761],[-154.99774997749978,-81.48849341428927],[-155.40815408154083,-81.46147617797114],[-155.8221582215822,-81.43445894165302],[-156.23256232562326,-81.40575312806502],[-156.64296642966428,-81.37873589174689],[-157.0569705697057,-81.35171865542877],[-157.14697146971469,-81.31963568730099],[-157.14337143371432,-81.3095042236817],[-157.139771397714,-81.2993727600624],[-157.12177121771217,-81.28417556463346],[-157.09657096570965,-81.26560121466474],[-157.06417064170643,-81.25546975104545],[-156.75816758167582,-81.2014352784092],[-156.44856448564485,-81.14908938304285],[-155.9589595895959,-81.13558076488378],[-155.46935469354693,-81.12376072399461],[-154.97974979749796,-81.11025210583554],[-154.490144901449,-81.09843206494637],[-154.00054000540007,-81.0849234467873],[-153.5109351093511,-81.07310340589812],[-153.01773017730176,-81.05959478773906],[-152.5281252812528,-81.04777474684988],[-152.03852038520384,-81.03426612869082],[-151.5489154891549,-81.02244608780164],[-151.05931059310592,-81.00893746964258],[-150.56970569705697,-80.9971174287534],[-150.080100801008,-80.98360881059433],[-149.5868958689587,-80.97178876970516],[-149.09729097290972,-80.95828015154609],[-148.60768607686077,-80.94477153338704],[-148.1180811808118,-80.93295149249785],[-147.62847628476285,-80.9194428743388],[-147.5852758527585,-80.90762283344962],[-147.54927549275493,-80.88735990621102],[-147.58167581675815,-80.8603426698929],[-147.6248762487625,-80.84683405173384],[-147.9380793807938,-80.83501401084466],[-148.25128251282513,-80.82319396995548],[-148.2980829808298,-80.81306250633618],[-148.08928089280892,-80.80630819725666],[-148.17928179281793,-80.79111100182772],[-148.4528845288453,-80.7826681154783],[-148.43128431284313,-80.77591380639876],[-148.40968409684098,-80.772536651859],[-148.36648366483664,-80.77084807458911],[-148.4060840608406,-80.74551941554088],[-148.7588875888759,-80.73707652919147],[-149.11169111691117,-80.72863364284206],[-149.4608946089461,-80.71850217922275],[-149.17289172891728,-80.71005929287334],[-148.8848888488885,-80.69992782925405],[-149.16569165691658,-80.69148494290462],[-149.44649446494464,-80.68304205655522],[-149.42129421294214,-80.68304205655522],[-149.3780937809378,-80.66784486112627],[-149.35649356493565,-80.66277912931662],[-149.03609036090361,-80.66109055204674],[-149.24849248492484,-80.64251620207803],[-149.1908919089191,-80.62731900664909],[-148.72288722887228,-80.63069616118885],[-148.25848258482586,-80.6357618929985],[-148.34488344883448,-80.6256304293792],[-148.6148861488615,-80.62225327483944],[-148.88848888488886,-80.62056469756956],[-148.98928989289894,-80.59523603852132],[-149.01809018090182,-80.59185888398156],[-149.34929349293492,-80.59017030671167],[-149.68049680496804,-80.59017030671167],[-149.72729727297272,-80.58172742036226],[-149.5040950409504,-80.56821880220319],[-149.5760957609576,-80.5580873385839],[-149.79569795697958,-80.55302160677425],[-149.6228962289623,-80.5378244113453],[-149.66609666096662,-80.52769294772601],[-149.95049950499504,-80.52769294772601],[-150.23490234902349,-80.52769294772601],[-150.32130321303214,-80.51418432956694],[-150.2709027090271,-80.49560997959824],[-150.08370083700837,-80.49560997959824],[-150.44730447304474,-80.45677270239094],[-150.43650436504365,-80.44664123877163],[-150.41850418504185,-80.43988692969211],[-150.4041040410404,-80.43650977515235],[-150.3861038610386,-80.43650977515235],[-150.42210422104222,-80.4297554660728],[-150.71730717307173,-80.4297554660728],[-151.01251012510124,-80.4297554660728],[-150.9441094410944,-80.4111811161041],[-150.72450724507246,-80.41286969337398],[-150.890108901089,-80.39767249794504],[-150.42930429304292,-80.39598392067516],[-149.96849968499686,-80.39429534340528],[-150.01530015300153,-80.37909814797634],[-150.21330213302133,-80.35545806619797],[-150.29970299702995,-80.33012940714973],[-150.3969039690397,-80.31662078899068],[-150.72450724507246,-80.31999794353044],[-150.57330573305734,-80.30648932537137],[-150.60930609306092,-80.26934062543395],[-150.67410674106742,-80.25414343000502],[-150.80370803708036,-80.2457005436556],[-150.72450724507246,-80.2169947300676],[-150.64530645306453,-80.21192899825795],[-150.47610476104762,-80.22206046187723],[-150.1341013410134,-80.18491176193982],[-150.15570155701556,-80.16296025743135],[-150.18090180901808,-80.14438590746263],[-150.2061020610206,-80.13087728930357],[-150.31050310503105,-80.1089257847951],[-150.34650346503466,-80.09541716663604],[-150.3681036810368,-80.07515423939745],[-149.98649986499865,-80.0886628575565],[-149.60129601296012,-80.10217147571556],[-149.21969219692198,-80.11736867114452],[-148.83448834488345,-80.13087728930357],[-148.82728827288273,-80.1291887120337],[-148.82368823688236,-80.12412298022404],[-148.81648816488166,-80.11230293933487],[-148.8128881288813,-80.10723720752522],[-148.8020880208802,-80.10386005298545],[-148.66168661686618,-80.09372858936615],[-148.54648546485464,-80.07177708485769],[-148.04968049680497,-80.06164562123838],[-147.55647556475566,-80.05151415761908],[-147.61047610476106,-80.0396941167299],[-148.03168031680318,-80.03293980765038],[-148.45648456484565,-80.02449692130097],[-148.51048510485106,-80.00761114860214],[-148.19368193681936,-80.00592257133225],[-147.88047880478805,-80.00254541679249],[-147.93447934479343,-79.98565964409366],[-148.27288272882728,-79.98059391228401],[-148.61128611286114,-79.97721675774424],[-148.94968949689496,-79.97215102593461],[-148.90648906489065,-79.9637081395852],[-148.550085500855,-79.96708529412496],[-148.19368193681936,-79.97046244866472],[-148.24768247682476,-79.9620195623153],[-148.64728647286472,-79.95357667596589],[-148.5788857888579,-79.95019952142613],[-148.51408514085142,-79.93669090326706],[-148.53568535685358,-79.92824801691765],[-148.60768607686077,-79.923182285108],[-148.58248582485825,-79.91642797602847],[-148.49968499684996,-79.91305082148871],[-148.84888848888488,-79.90123078059953],[-148.8308883088831,-79.89447647152],[-148.8128881288813,-79.89278789425012],[-148.78048780487805,-79.89109931698023],[-148.88128881288813,-79.87252496701151],[-148.97128971289712,-79.87083638974164],[-149.0000900009,-79.86070492612234],[-148.7048870488705,-79.86408208066212],[-148.51768517685176,-79.88603358517058],[-148.04248042480424,-79.88941073971034],[-148.07848078480785,-79.90629651240917],[-148.20808208082082,-79.90629651240917],[-148.15768157681578,-79.91811655329835],[-147.99567995679956,-79.91642797602847],[-148.0280802808028,-79.92993659418754],[-147.97767977679777,-79.93837948053695],[-147.56727567275672,-79.94175663507671],[-147.1568715687157,-79.94513378961648],[-147.1820718207182,-79.91811655329835],[-147.06687066870668,-79.90798508967906],[-147.11727117271172,-79.89954220332964],[-147.16767167671676,-79.89616504878988],[-147.2720727207272,-79.90123078059953],[-147.34047340473404,-79.92149370783812],[-147.36927369273693,-79.92487086237789],[-147.39087390873908,-79.92487086237789],[-147.5708757087571,-79.89954220332964],[-147.89847898478985,-79.90123078059953],[-147.86247862478626,-79.88941073971034],[-147.5852758527585,-79.8742135442814],[-148.06048060480606,-79.8353762670741],[-148.13968139681396,-79.81004760802585],[-148.01368013680136,-79.8151133398355],[-147.98127981279814,-79.81173618529574],[-147.920079200792,-79.79822756713668],[-147.88767887678875,-79.79991614440657],[-147.94527945279452,-79.7864075262475],[-147.77247772477725,-79.77965321716798],[-148.1828818288183,-79.7475702490402],[-148.59328593285932,-79.71717585818232],[-149.0000900009,-79.68678146732442],[-149.0720907209072,-79.66651854008583],[-149.03969039690398,-79.649632767387],[-149.09369093690935,-79.6310584174183],[-149.54369543695438,-79.60741833563993],[-149.99369993699938,-79.58208967659169],[-150.44730447304474,-79.55844959481334],[-150.53370533705336,-79.53480951303499],[-151.02331023310234,-79.47064357677944],[-151.51291512915128,-79.4064776405239],[-152.00252002520025,-79.34231170426835],[-151.86571865718656,-79.31360589068035],[-151.75771757717578,-79.2781457680128],[-151.73611736117363,-79.27476861347304],[-151.69651696516965,-79.27308003620317],[-151.65331653316534,-79.26801430439352],[-151.69651696516965,-79.25112853169469],[-151.7469174691747,-79.24606279988504],[-152.21492214922148,-79.31022873614059],[-152.26532265322652,-79.3085401588707],[-152.31572315723156,-79.29840869525141],[-152.41292412924128,-79.26463714985375],[-152.3121231212312,-79.23593133626575],[-151.9881198811988,-79.20384836813797],[-152.1069210692107,-79.2021597908681],[-151.97371973719737,-79.17007682274031],[-151.9809198091981,-79.16669966820055],[-151.99531995319953,-79.15487962731137],[-152.00252002520025,-79.15150247277161],[-151.72171721717217,-79.0839593819763],[-151.78651786517867,-79.08058222743654],[-152.07452074520745,-79.10759946375465],[-152.1069210692107,-79.10591088648478],[-152.2221222212222,-79.07551649562689],[-152.25812258122582,-79.07720507289677],[-152.2329223292233,-79.09915657740524],[-152.2329223292233,-79.11097661829443],[-152.33732337323374,-79.1430595864222],[-152.5641256412564,-79.17514255454996],[-152.59292592925928,-79.1717654000102],[-152.61452614526144,-79.15656820458126],[-152.70452704527045,-79.11435377283419],[-152.9349293492935,-79.17007682274031],[-153.03933039330394,-79.15150247277161],[-153.0789307893079,-79.13968243188243],[-153.55053550535504,-79.1126651955643],[-154.02574025740256,-79.08733653651606],[-154.49734497344974,-79.06031930019795],[-154.9689496894969,-79.0349906411497],[-155.00855008550084,-79.02148202299064],[-155.0409504095041,-78.99953051848216],[-155.05175051750518,-78.99446478667252],[-155.42255422554226,-78.91172450044826],[-155.78975789757897,-78.82898421422401],[-156.16056160561607,-78.74624392799976],[-156.52776527765278,-78.6635036417755],[-156.54576545765457,-78.64999502361644],[-156.54936549365493,-78.62297778729832],[-156.52776527765278,-78.60440343732961],[-156.4989649896499,-78.59427197371032],[-156.08856088560884,-78.5571232737729],[-156.0381603816038,-78.54192607834395],[-156.05616056160562,-78.52672888291501],[-156.07416074160741,-78.51659741929572],[-156.11736117361173,-78.5081545329463],[-156.05256052560526,-78.49464591478724],[-155.7069570695707,-78.48620302843783],[-155.36135361353612,-78.47776014208841],[-155.0121501215012,-78.469317255739],[-154.97974979749796,-78.45749721484982],[-155.05175051750518,-78.42541424672206],[-154.88974889748897,-78.42372566945217],[-154.79614796147962,-78.44905432850041],[-154.73134731347312,-78.45412006031006],[-154.52254522545226,-78.43385713307146],[-154.58374583745837,-78.41697136037263],[-154.5081450814508,-78.40683989675334],[-154.36054360543605,-78.40515131948345],[-154.29214292142922,-78.38826554678462],[-154.33174331743317,-78.37475692862557],[-154.30294302943028,-78.3528054241171],[-154.18054180541804,-78.33591965141827],[-154.20934209342093,-78.30890241510014],[-154.23454234542345,-78.28019660151213],[-154.13734137341373,-78.24811363338436],[-153.91773917739178,-78.24980221065425],[-153.81333813338134,-78.23291643795542],[-154.20934209342093,-78.22109639706625],[-154.22014220142202,-78.21940781979636],[-154.2381423814238,-78.21096493344695],[-154.24534245342454,-78.20252204709753],[-154.25254252542524,-78.19407916074812],[-154.26334263342633,-78.18394769712883],[-154.27774277742776,-78.17719338804929],[-154.3209432094321,-78.16875050169988],[-154.33174331743317,-78.16368476989022],[-154.35694356943569,-78.14679899719141],[-154.36774367743678,-78.14004468811187],[-154.39654396543966,-78.13666753357211],[-154.56934569345694,-78.13497895630222],[-154.7169471694717,-78.15355330627094],[-154.65214652146523,-78.17550481077942],[-154.66654666546665,-78.18394769712883],[-154.7529475294753,-78.20927635617706],[-154.760147601476,-78.21434208798671],[-154.76734767347673,-78.22953928341566],[-154.77454774547746,-78.2346050152253],[-155.12015120151202,-78.25655651973378],[-155.21375213752137,-78.24642505611448],[-155.25335253352534,-78.20421062436742],[-155.09135091350913,-78.19407916074812],[-154.97614976149762,-78.2058992016373],[-154.99774997749978,-78.19239058347824],[-155.02655026550266,-78.16030761535046],[-155.0409504095041,-78.15355330627094],[-155.18135181351812,-78.16199619262035],[-155.2749527495275,-78.19239058347824],[-155.32175321753218,-78.19914489255777],[-155.3469534695347,-78.195767738018],[-155.39735397353974,-78.17719338804929],[-155.42255422554226,-78.17043907896976],[-155.44775447754478,-78.17212765623964],[-155.49455494554945,-78.18901342893847],[-155.51975519755197,-78.19407916074812],[-155.74655746557465,-78.20421062436742],[-155.9337593375934,-78.18901342893847],[-156.02736027360274,-78.19914489255777],[-156.34776347763477,-78.19914489255777],[-156.3729637296373,-78.19407916074812],[-156.4449644496445,-78.16875050169988],[-156.45216452164522,-78.16030761535046],[-156.45216452164522,-78.14511041992152],[-156.5709657096571,-78.15186472900105],[-156.6249662496625,-78.14342184265163],[-156.650166501665,-78.14511041992152],[-156.6789667896679,-78.15861903808059],[-156.67176671766717,-78.16030761535046],[-156.6609666096661,-78.16706192443],[-156.65376653766538,-78.16875050169988],[-156.68256682566826,-78.19407916074812],[-156.740167401674,-78.21265351071683],[-156.9669696696967,-78.25317936519401],[-157.2009720097201,-78.25317936519401],[-157.25857258572586,-78.24135932430484],[-157.3521735217352,-78.195767738018],[-157.6689766897669,-78.12484749268293],[-157.9821798217982,-78.05223867007797],[-158.00738007380073,-78.04210720645868],[-158.05778057780577,-78.01508997014055],[-158.09018090180902,-78.00495850652126],[-158.180181801818,-78.00664708379114],[-158.2521825218252,-77.9813184247429],[-158.30978309783097,-77.9813184247429],[-158.34218342183422,-77.97456411566337],[-158.37458374583747,-77.96274407477419],[-158.40338403384033,-77.94923545661513],[-158.42138421384215,-77.93066110664641],[-158.43578435784357,-77.91208675667771],[-158.45378453784537,-77.89857813851864],[-158.63738637386373,-77.86480659312099],[-158.6409864098641,-77.84792082042216],[-158.6229862298623,-77.82934647045346],[-158.5329853298533,-77.76518053419791],[-158.51138511385113,-77.7567376478485],[-158.45378453784537,-77.74660618422921],[-158.42858428584285,-77.7364747206099],[-158.39978399784,-77.72296610245084],[-158.38178381783817,-77.70439175248214],[-158.34578345783459,-77.65711158892542],[-158.32418324183243,-77.63684866168683],[-158.2737827378274,-77.61658573444824],[-158.15858158581585,-77.58956849813012],[-158.1189811898119,-77.55579695273246],[-158.28458284582845,-77.5135825209854],[-158.2521825218252,-77.4831881301275],[-158.21978219782198,-77.46292520288891],[-158.14058140581406,-77.42746508022137],[-158.180181801818,-77.40044784390325],[-158.29178291782918,-77.37511918485501],[-158.3277832778328,-77.34303621672724],[-158.32418324183243,-77.29575605317052],[-158.2809828098281,-77.25691877596321],[-158.17658176581767,-77.20626145786674],[-158.2089820898209,-77.18262137608838],[-158.22338223382235,-77.17417848973896],[-158.2809828098281,-77.15391556250037],[-158.30258302583024,-77.14378409888108],[-158.31338313383134,-77.1319640579919],[-158.30258302583024,-77.10494682167378],[-158.2629826298263,-77.08637247170506],[-158.21978219782198,-77.07286385354601],[-157.92457924579247,-77.05597808084718],[-157.84177841778418,-77.07455243081588],[-157.69417694176943,-77.1420955216112],[-157.62937629376293,-77.1522269852305],[-157.60777607776078,-77.15898129431002],[-157.59337593375935,-77.16911275792933],[-157.58617586175862,-77.17924422154861],[-157.5717757177572,-77.18768710789803],[-157.51057510575106,-77.2011957260571],[-157.39537395373952,-77.25016446688369],[-157.25137251372513,-77.27380454866204],[-157.26217262172622,-77.2788702804717],[-157.27657276572765,-77.28224743501146],[-157.2909729097291,-77.28224743501146],[-157.30537305373053,-77.28224743501146],[-157.2549725497255,-77.30251036225005],[-157.08217082170822,-77.35147910307666],[-157.02097020970209,-77.35823341215618],[-157.00657006570066,-77.35485625761642],[-156.98136981369814,-77.34303621672724],[-156.9309693096931,-77.35316768034653],[-156.9021690216902,-77.3481019485369],[-156.89856898568985,-77.33797048491759],[-156.89856898568985,-77.32783902129829],[-156.89496894968948,-77.31939613494887],[-156.8229682296823,-77.31939613494887],[-156.46656466564664,-77.26029593050299],[-156.51336513365135,-77.24847588961381],[-156.6969669696697,-77.23496727145475],[-156.73656736567366,-77.22483580783545],[-156.81216812168122,-77.19106426243779],[-156.83376833768338,-77.18768710789803],[-156.78336783367834,-77.16573560338955],[-156.65376653766538,-77.15729271704015],[-156.58896588965888,-77.1117011307533],[-156.50976509765098,-77.10494682167378],[-156.4161641616416,-77.07792958535566],[-156.32256322563225,-77.06610954446647],[-155.86535865358653,-77.05935523538695],[-155.6961569615696,-77.08130673989542],[-155.5809558095581,-77.11338970802319],[-155.50175501755018,-77.16066987157991],[-155.47655476554766,-77.16742418065944],[-155.3577535775358,-77.16573560338955],[-155.3289532895329,-77.16911275792933],[-155.31455314553145,-77.1708013351992],[-155.30735307353075,-77.16404702611968],[-155.30735307353075,-77.15053840796061],[-155.30735307353075,-77.13702978980155],[-155.28935289352893,-77.12858690345213],[-154.89334893348934,-77.10325824440389],[-154.83934839348393,-77.1117011307533],[-154.81774817748177,-77.1218325943726],[-154.77454774547746,-77.14716125342085],[-154.74934749347494,-77.15391556250037],[-154.40374403744036,-77.1522269852305],[-154.1949419494195,-77.17586706700885],[-154.16974169741698,-77.18430995335827],[-154.1229412294123,-77.20795003513662],[-154.09774097740979,-77.21301576694627],[-153.8169381693817,-77.23327869418486],[-153.53253532535325,-77.25354162142345],[-153.31653316533166,-77.33797048491759],[-153.37773377733777,-77.38018491666466],[-153.4569345693457,-77.39875926663336],[-153.90333903339032,-77.4055135757129],[-153.9429394293943,-77.41564503933219],[-153.9069390693907,-77.4342193893009],[-153.86373863738638,-77.44266227565032],[-153.5541355413554,-77.4443508529202],[-153.2481324813248,-77.44603943019008],[-153.0789307893079,-77.4730566665082],[-152.9961299612996,-77.4730566665082],[-152.9349293492935,-77.47981097558774],[-152.91692916929168,-77.47812239831785],[-152.87372873728737,-77.46799093469856],[-152.8521285212852,-77.46630235742867],[-152.8269282692827,-77.46799093469856],[-152.8089280892809,-77.4730566665082],[-152.77292772927728,-77.48656528466726],[-152.75132751327513,-77.48994243920703],[-152.5749257492575,-77.50176248009622],[-152.57852578525785,-77.4831881301275],[-152.58932589325894,-77.46630235742867],[-152.61452614526144,-77.43928512111056],[-152.58212582125822,-77.42577650295149],[-152.47772477724777,-77.40720215298278],[-152.5029250292503,-77.38693922574419],[-152.46692466924668,-77.34134763945735],[-152.4849248492485,-77.31939613494887],[-152.420124201242,-77.30419893951994],[-152.35172351723517,-77.30251036225005],[-152.21852218522184,-77.32446186675853],[-152.18612186121862,-77.33290475310794],[-152.17532175321753,-77.33965906218748],[-152.13212132121322,-77.37511918485501],[-152.11772117721176,-77.38356207120442],[-152.0961209612096,-77.39031638028395],[-152.06012060120602,-77.3953821120936],[-151.9881198811988,-77.38862780301407],[-151.51291512915128,-77.41564503933219],[-151.37251372513725,-77.45110516199973],[-151.41571415714157,-77.47474524377809],[-151.44091440914409,-77.4831881301275],[-151.4661146611466,-77.48656528466726],[-151.41931419314193,-77.50851678917574],[-151.00171001710018,-77.55917410727223],[-150.91170911709116,-77.5912570754],[-150.45450454504544,-77.68075167070378],[-150.42570425704258,-77.6891945570532],[-150.37530375303754,-77.7179003706412],[-150.31770317703177,-77.7364747206099],[-150.27450274502746,-77.76518053419791],[-150.2493024930249,-77.77362342054732],[-150.09810098100982,-77.77868915235698],[-150.05130051300512,-77.79219777051604],[-150.00450004500044,-77.81077212048474],[-149.97569975699756,-77.8158378522944],[-149.85689856898568,-77.82090358410404],[-149.61569615696158,-77.80232923413533],[-149.5040950409504,-77.77193484327745],[-149.24489244892447,-77.7567376478485],[-149.2628926289263,-77.75336049330873],[-149.30249302493024,-77.72803183426049],[-149.3240932409324,-77.72296610245084],[-149.38169381693817,-77.71958894791108],[-149.39969399693996,-77.71283463883155],[-149.43569435694357,-77.69763744340261],[-149.450094500945,-77.69088313432307],[-149.50769507695077,-77.67737451616401],[-149.52569525695256,-77.6689316298146],[-149.59049590495906,-77.648668702576],[-149.81369813698137,-77.648668702576],[-149.80289802898028,-77.64529154803624],[-149.78849788497885,-77.64191439349648],[-149.77769777697776,-77.64191439349648],[-149.7668976689767,-77.64360297076635],[-149.77049770497706,-77.63853723895672],[-149.7848978489785,-77.62502862079765],[-149.64449644496446,-77.60814284809882],[-149.49689496894968,-77.60983142536871],[-149.22689226892268,-77.6588001661953],[-148.9568895688957,-77.7077689070219],[-148.8848888488885,-77.7077689070219],[-148.67248672486724,-77.67568593889413],[-148.8020880208802,-77.58450276632047],[-148.78048780487805,-77.57943703451082],[-148.7912879128791,-77.57605987997106],[-148.80568805688057,-77.56592841635175],[-148.8128881288813,-77.5608626845421],[-148.75168751687517,-77.55241979819269],[-148.5608856088561,-77.55917410727223],[-148.2872828728287,-77.52709113914446],[-148.01728017280172,-77.49500817101668],[-147.87327873278733,-77.49838532555644],[-147.7940779407794,-77.48994243920703],[-147.75807758077582,-77.46123662561902],[-148.17928179281793,-77.42071077114184],[-148.60048600486004,-77.37849633939477],[-149.02169021690216,-77.33797048491759],[-149.03969039690398,-77.33290475310794],[-149.0540905409054,-77.32108471221876],[-149.06129061290613,-77.29406747590065],[-149.05049050490504,-77.27549312593193],[-149.0288902889029,-77.26367308504275],[-149.00369003690037,-77.25691877596321],[-148.8020880208802,-77.23496727145475],[-148.97128971289712,-77.22821296237521],[-148.9568895688957,-77.21301576694627],[-148.91368913689138,-77.18599853062815],[-148.8668886688867,-77.13702978980155],[-148.85248852488525,-77.12520974891237],[-148.8128881288813,-77.1117011307533],[-148.76968769687696,-77.10494682167378],[-148.51408514085142,-77.10832397621354],[-148.17928179281793,-77.18599853062815],[-147.8480784807848,-77.26367308504275],[-147.76887768877688,-77.31095324859947],[-147.77967779677797,-77.37005345304536],[-147.70047700477005,-77.40889073025266],[-147.6608766087661,-77.42239934841173],[-147.62127621276213,-77.41733361660208],[-147.69327693276932,-77.37343060758514],[-147.71487714877148,-77.35485625761642],[-147.6860768607686,-77.34979052580677],[-147.6608766087661,-77.35654483488631],[-147.6068760687607,-77.38356207120442],[-147.5780757807578,-77.38525064847431],[-147.49167491674916,-77.35316768034653],[-147.39087390873908,-77.34134763945735],[-147.29727297272973,-77.31601898040911],[-147.26487264872648,-77.31264182586935],[-147.23247232472323,-77.31433040313924],[-147.26487264872648,-77.28731316682111],[-147.27567275672757,-77.2687388168524],[-147.26487264872648,-77.26029593050299],[-146.9768697686977,-77.23665584872462],[-146.89046890468904,-77.25523019869334],[-146.46926469264693,-77.43928512111056],[-146.39726397263973,-77.49500817101668],[-146.37566375663755,-77.50345105736609],[-146.35406354063542,-77.50345105736609],[-146.31086310863108,-77.50007390282633],[-146.02646026460263,-77.51864825279505],[-145.93285932859328,-77.50007390282633],[-145.9688596885969,-77.49669674828657],[-145.98685986859869,-77.49163101647692],[-146.00126001260014,-77.47981097558774],[-145.78525785257852,-77.47812239831785],[-145.49725497254974,-77.52540256187457],[-145.46125461254613,-77.52371398460468],[-145.42885428854288,-77.50682821190586],[-145.4360543605436,-77.50345105736609],[-145.45045450454504,-77.49669674828657],[-145.45765457654576,-77.49500817101668],[-145.4468544685447,-77.48825386193715],[-145.43245432454324,-77.4831881301275],[-145.42165421654215,-77.47981097558774],[-145.40725407254072,-77.47981097558774],[-145.55845558455584,-77.45110516199973],[-145.5692556925569,-77.44603943019008],[-145.5692556925569,-77.43928512111056],[-145.56565565655657,-77.43253081203102],[-145.5692556925569,-77.42746508022137],[-145.66645666456665,-77.38525064847431],[-145.73485734857348,-77.36836487577548],[-145.95445954459544,-77.36329914396583],[-145.93645936459365,-77.35992198942607],[-145.9040590405904,-77.3481019485369],[-145.8860588605886,-77.346413371267],[-145.81045810458104,-77.3481019485369],[-145.8320583205832,-77.33797048491759],[-145.85365853658536,-77.33290475310794],[-145.90045900459006,-77.32952759856818],[-145.89325893258933,-77.32615044402841],[-145.8860588605886,-77.317707557679],[-145.87885878858788,-77.31433040313924],[-145.940059400594,-77.28055885774158],[-145.96525965259653,-77.25523019869334],[-145.95445954459544,-77.23327869418486],[-145.91845918459185,-77.22652438510534],[-145.8860588605886,-77.23327869418486],[-145.85005850058502,-77.24509873507404],[-145.81765817658177,-77.25185304415358],[-145.70965709657096,-77.24341015780416],[-145.56565565655657,-77.25185304415358],[-145.55485554855548,-77.25016446688369],[-145.55125551255512,-77.24678731234393],[-145.54045540455405,-77.23834442599451],[-145.53325533255332,-77.23496727145475],[-145.5260552605526,-77.23496727145475],[-145.42885428854288,-77.24678731234393],[-145.24525245252454,-77.23159011691499],[-145.2740527405274,-77.22145865329568],[-145.60525605256052,-77.14378409888108],[-145.93645936459365,-77.06610954446647],[-145.97245972459723,-77.06273238992671],[-146.04806048060482,-77.06610954446647],[-146.16326163261633,-77.05935523538695],[-146.31086310863108,-77.03064942179894],[-146.38286382863828,-77.00363218548081],[-146.3180631806318,-76.99012356732176],[-145.92925929259292,-77.02220653544953],[-145.5368553685537,-77.0542895035773],[-145.52965529655296,-77.05935523538695],[-145.5260552605526,-77.07286385354601],[-145.52245522455223,-77.07792958535566],[-145.5080550805508,-77.07961816262554],[-145.34605346053462,-77.05766665811706],[-145.310053100531,-77.05935523538695],[-145.3280532805328,-77.04078088541823],[-145.36045360453605,-77.02896084452905],[-145.5692556925569,-76.98336925824222],[-145.54405544055442,-76.96986064008317],[-145.54765547655478,-76.94790913557469],[-145.56565565655657,-76.92595763106621],[-145.5908559085591,-76.9175147447168],[-145.81045810458104,-76.91920332198669],[-145.88245882458824,-76.90907185836738],[-145.9148591485915,-76.8972518174782],[-145.94725947259474,-76.88036604477938],[-145.96525965259653,-76.85672596300103],[-145.94365943659437,-76.8297087266829],[-145.9148591485915,-76.81788868579372],[-145.87885878858788,-76.81620010852384],[-145.81045810458104,-76.82802014941302],[-145.73845738457385,-76.82802014941302],[-145.5260552605526,-76.79931433582502],[-145.51165511655117,-76.79593718128524],[-145.48645486454865,-76.7807399858563],[-145.47565475654756,-76.77905140858641],[-145.40005400054,-76.77905140858641],[-145.46125461254613,-76.7520341722683],[-145.53325533255332,-76.73852555410923],[-145.8212582125821,-76.72332835868029],[-146.10926109261092,-76.70981974052123],[-146.1272612726127,-76.70475400871157],[-146.1380613806138,-76.69968827690192],[-146.18486184861848,-76.6625395769645],[-146.31086310863108,-76.63045660883674],[-146.34326343263433,-76.62707945429698],[-146.41526415264153,-76.62707945429698],[-146.45126451264514,-76.61863656794756],[-146.46926469264693,-76.59330790889932],[-146.43326433264332,-76.56966782712097],[-146.41166411664116,-76.56122494077155],[-146.390063900639,-76.55784778623179],[-146.44766447664477,-76.54771632261249],[-146.6168661686617,-76.53251912718355],[-147.0812708127081,-76.43289306826047],[-147.56007560075602,-76.44133595460988],[-148.03888038880388,-76.44809026368941],[-148.11448114481144,-76.46328745911835],[-148.19368193681936,-76.46497603638824],[-148.4528845288453,-76.50550189086542],[-148.84888848888488,-76.48017323181718],[-149.24489244892447,-76.45484457276893],[-149.6408964089641,-76.4295159137207],[-149.68769687696877,-76.41600729556164],[-149.7128971289713,-76.39743294559293],[-149.70929709297093,-76.37717001835433],[-149.68769687696877,-76.35521851384586],[-149.6588965889659,-76.33833274114703],[-149.60489604896048,-76.31469265936867],[-149.54729547295472,-76.30118404120961],[-149.48249482494825,-76.2927411548602],[-149.03249032490325,-76.30118404120961],[-148.8740887408874,-76.26572391854208],[-148.5392853928539,-76.22857521860466],[-148.64728647286472,-76.20831229136607],[-148.69048690486903,-76.19142651866724],[-148.69048690486903,-76.16103212780935],[-148.64728647286472,-76.13401489149123],[-148.58968589685895,-76.1171291187924],[-148.4240842408424,-76.09011188247428],[-148.19728197281972,-76.08673472793451],[-147.85167851678517,-76.13570346876111],[-147.50967509675098,-76.18298363231783],[-147.1640716407164,-76.23195237314442],[-147.17847178471783,-76.23701810495407],[-147.18927189271892,-76.24039525949384],[-147.20367203672038,-76.24208383676373],[-147.2180721807218,-76.24039525949384],[-147.16767167671676,-76.25728103219267],[-146.95526955269554,-76.29949546393973],[-146.76086760867608,-76.31300408209879],[-146.5988659886599,-76.3602842456555],[-146.570065700657,-76.35521851384586],[-146.54846548465486,-76.34002131841692],[-146.51966519665197,-76.32988985479761],[-146.49446494464945,-76.32651270025785],[-146.46566465664657,-76.33833274114703],[-146.4188641886419,-76.37548144108445],[-146.39366393663937,-76.3906786365134],[-146.24966249662498,-76.42445018191106],[-146.2208622086221,-76.42107302737128],[-146.17046170461705,-76.4092529864821],[-146.00486004860048,-76.41600729556164],[-145.93285932859328,-76.44302453187976],[-145.7168571685717,-76.46497603638824],[-145.35325353253532,-76.43458164553034],[-145.3820538205382,-76.4092529864821],[-145.47925479254792,-76.35352993657598],[-145.50445504455044,-76.32988985479761],[-145.51885518855187,-76.32144696844821],[-145.5368553685537,-76.31469265936867],[-145.90765907659076,-76.25896960946255],[-146.2028620286203,-76.17285216869853],[-146.49806498064981,-76.08673472793451],[-146.46926469264693,-76.06309464615616],[-146.43686436864368,-76.0495860279971],[-146.3648636486365,-76.03776598710792],[-146.36846368463685,-76.03270025529827],[-146.37206372063721,-76.0191916371392],[-146.37926379263791,-76.01412590532955],[-146.28926289262893,-75.99555155536085],[-146.2928629286293,-75.98879724628131],[-146.30006300063002,-75.97191147358248],[-146.30366303663038,-75.96515716450295],[-146.210062100621,-75.91618842367636],[-145.9508595085951,-75.8824168782787],[-145.56565565655657,-75.89423691916788],[-145.18045180451804,-75.90774553732695],[-145.2128521285213,-75.89423691916788],[-145.1840518405184,-75.8824168782787],[-145.0580505805058,-75.87566256919918],[-144.89244892448926,-75.84020244653163],[-144.59004590045902,-75.8435796010714],[-144.38844388443886,-75.81318521021352],[-144.320043200432,-75.81487378748339],[-144.26964269642696,-75.8233166738328],[-144.22284222842228,-75.82162809656293],[-144.2048420484205,-75.81825094202316],[-144.1760417604176,-75.8047423238641],[-144.16164161641615,-75.8047423238641],[-144.2048420484205,-75.74901927395797],[-144.2120421204212,-75.73382207852903],[-144.20124201242012,-75.71862488310008],[-144.1868418684187,-75.71355915129044],[-143.97083970839708,-75.69667337859161],[-143.9960399603996,-75.67472187408313],[-144.04644046440464,-75.66627898773372],[-144.19764197641976,-75.66121325592407],[-144.30924309243093,-75.64263890595537],[-144.3560435604356,-75.62406455598665],[-144.30564305643057,-75.61393309236736],[-144.08964089640898,-75.61393309236736],[-143.74043740437403,-75.57678439242994],[-143.39123391233912,-75.53794711522264],[-143.03483034830347,-75.54976715611181],[-142.67842678426786,-75.56158719700099],[-142.6532265322653,-75.55821004246123],[-142.63882638826388,-75.55314431065158],[-142.62802628026282,-75.54639000157205],[-142.61722617226172,-75.53963569249251],[-142.59922599225993,-75.53794711522264],[-142.5560255602556,-75.5413242697624],[-142.54522545225453,-75.53963569249251],[-142.5380253802538,-75.53625853795275],[-142.52722527225274,-75.53119280614311],[-142.51282512825128,-75.51937276525392],[-142.53442534425344,-75.50417556982498],[-142.5488254882549,-75.48897837439604],[-142.57762577625778,-75.45182967445862],[-142.52722527225274,-75.43832105629956],[-142.4660246602466,-75.43156674722002],[-142.1312213122131,-75.46027256080802],[-142.03042030420303,-75.49573268347557],[-141.91161911619116,-75.50417556982498],[-141.86121861218612,-75.52106134252381],[-141.73521735217352,-75.62575313325654],[-141.6920169201692,-75.65445894684454],[-141.67401674016742,-75.66965614227348],[-141.66321663216632,-75.69498480132172],[-141.64881648816487,-75.7068048422109],[-141.59121591215913,-75.73044492398927],[-141.55521555215552,-75.76083931484715],[-141.52641526415263,-75.76759362392669],[-141.42921429214292,-75.7659050466568],[-141.4148141481415,-75.76421646938692],[-141.39681396813967,-75.75408500576762],[-141.38961389613897,-75.74395354214832],[-141.37881378813788,-75.73888781033867],[-141.30321303213032,-75.75070785122786],[-140.91440914409145,-75.76252789211703],[-140.89640896408963,-75.76759362392669],[-140.86040860408605,-75.79292228297493],[-140.84240842408423,-75.79798801478456],[-140.82440824408243,-75.80136516932433],[-140.6480064800648,-75.80643090113398],[-140.77760777607776,-75.74395354214832],[-140.75240752407524,-75.74057638760856],[-140.6840068400684,-75.7456421194182],[-140.83880838808386,-75.68316476043255],[-141.23841238412385,-75.59873589693841],[-141.29961299612995,-75.56665292881064],[-141.32481324813247,-75.52612707433346],[-141.29961299612995,-75.50079841528522],[-141.23121231212312,-75.4923555289358],[-140.92880928809288,-75.5109298789045],[-140.86760867608677,-75.52612707433346],[-140.82080820808207,-75.53119280614311],[-140.5472054720547,-75.4822240653165],[-140.27720277202772,-75.4332553244899],[-140.2160021600216,-75.40961524271155],[-140.1980019800198,-75.39272947001272],[-140.21960219602195,-75.3758436973139],[-140.19080190801907,-75.3555807700753],[-140.15840158401585,-75.34038357464635],[-139.84879848798488,-75.24075751572327],[-139.81639816398163,-75.23569178391364],[-139.7659976599766,-75.23569178391364],[-139.75519755197553,-75.23400320664375],[-139.7371973719737,-75.22724889756422],[-139.67239672396724,-75.21880601121481],[-139.6759967599676,-75.19685450670633],[-139.6579965799658,-75.17659157946774],[-139.63279632796326,-75.16139438403879],[-139.61119611196114,-75.15295149768937],[-139.5679956799568,-75.14788576587974],[-139.3519935199352,-75.14788576587974],[-139.20439204392045,-75.12424568410137],[-139.0351903519035,-75.1411314568002],[-138.6571865718657,-75.12931141591102],[-138.2791827918279,-75.11749137502184],[-137.90477904779047,-75.10567133413267],[-137.84717847178473,-75.09553987051336],[-137.7859778597786,-75.07021121146512],[-137.76437764377644,-75.0634569023856],[-137.74277742777429,-75.06007974784583],[-137.47637476374763,-75.08878556143384],[-137.0947709477095,-75.1799687340075],[-137.0731707317073,-75.17828015673761],[-137.05517055170552,-75.16814869311833],[-137.0407704077041,-75.15464007495926],[-137.0191701917019,-75.14619718860985],[-136.9939699396994,-75.14450861133997],[-136.91836918369182,-75.15632865222915],[-136.6339663396634,-75.16646011584844],[-136.3459634596346,-75.17828015673761],[-136.36396363963638,-75.15801722949902],[-136.3819638196382,-75.14619718860985],[-136.42876428764288,-75.13437714772067],[-136.40716407164072,-75.12762283864114],[-136.33516335163353,-75.12593426137126],[-136.37476374763747,-75.10735991140254],[-136.62676626766267,-75.07358836600488],[-136.87876878768787,-75.03812824333735],[-136.9651696516965,-75.01279958428911],[-137.00837008370084,-75.00942242974935],[-136.99756997569975,-75.00773385247946],[-136.9579695796958,-74.99253665705052],[-136.8859688596886,-74.98071661616135],[-136.87156871568715,-74.9756508843517],[-136.86436864368642,-74.96383084346252],[-136.86436864368642,-74.94863364803358],[-136.86796867968678,-74.93174787533475],[-136.8859688596886,-74.89966490720697],[-136.88956889568897,-74.88109055723827],[-136.88956889568897,-74.86927051634909],[-136.8859688596886,-74.86251620726955],[-136.88236882368824,-74.85407332092014],[-136.8859688596886,-74.8287446618719],[-136.88236882368824,-74.81692462098272],[-136.86796867968678,-74.79328453920436],[-136.83556835568356,-74.7612015710766],[-136.7959679596796,-74.7493815301874],[-136.56556565565654,-74.75782441653683],[-136.41796417964179,-74.73925006656812],[-136.34956349563495,-74.71729856205964],[-136.22356223562235,-74.7021013666307],[-136.12276122761227,-74.70041278936081],[-135.93555935559357,-74.72405287113918],[-135.87435874358744,-74.74600437564764],[-135.85635856358564,-74.7493815301874],[-135.7159571595716,-74.7493815301874],[-135.70155701557016,-74.74769295291753],[-135.69075690756907,-74.74262722110788],[-135.679956799568,-74.73418433475847],[-135.6691566915669,-74.72743002567894],[-135.64755647556476,-74.71392140751988],[-135.65835658356582,-74.69872421209094],[-135.70155701557016,-74.67846128485235],[-135.63315633156333,-74.64131258491491],[-135.49635496354963,-74.58052380319914],[-135.42075420754207,-74.5653266077702],[-135.34155341553415,-74.56026087596055],[-134.93114931149313,-74.60247530770762],[-134.51714517145172,-74.6430011621848],[-134.48834488344883,-74.65819835761374],[-134.50274502745026,-74.67677270758246],[-134.52434524345244,-74.69365848028129],[-134.57114571145712,-74.71729856205964],[-134.58554585545855,-74.73587291202836],[-134.56754567545676,-74.75613583926695],[-134.53874538745387,-74.77302161196577],[-134.51354513545135,-74.78146449831519],[-134.39114391143912,-74.80172742555378],[-134.37314373143732,-74.81185888917307],[-134.3767437674377,-74.8287446618719],[-134.39474394743948,-74.84731901184061],[-134.41634416344164,-74.85913905272979],[-134.3551435514355,-74.87095909361896],[-134.239942399424,-74.85576189819002],[-134.17514175141753,-74.85407332092014],[-134.08874088740887,-74.88109055723827],[-134.059940599406,-74.88446771177803],[-133.93033930339303,-74.88446771177803],[-133.94473944739448,-74.88784486631779],[-133.95193951939518,-74.8962877526672],[-133.95553955539555,-74.90641921628651],[-133.94833948339482,-74.91992783444556],[-133.93753937539375,-74.92330498898534],[-133.86553865538656,-74.92837072079499],[-133.5919359193592,-74.88109055723827],[-133.31833318333184,-74.83549897095143],[-133.19953199531994,-74.84056470276109],[-132.79272792727926,-74.76795588015612],[-132.76032760327604,-74.76795588015612],[-132.73872738727385,-74.77639876650554],[-132.71712717127173,-74.79328453920436],[-132.68832688326881,-74.80341600282367],[-132.63432634326344,-74.8186131982526],[-132.58032580325803,-74.82536750733213],[-132.09432094320942,-74.76289014834647],[-131.77751777517776,-74.78146449831519],[-131.57231572315723,-74.84394185730085],[-131.55431554315544,-74.84563043457072],[-131.28431284312842,-74.83043323914178],[-131.01431014310143,-74.81692462098272],[-130.97470974709748,-74.8287446618719],[-130.95310953109532,-74.83043323914178],[-130.81630816308163,-74.81523604371284],[-130.76950769507695,-74.82367893006226],[-130.74070740707407,-74.83549897095143],[-130.73350733507334,-74.8388761254912],[-130.3519035190352,-74.87602482542862],[-129.97389973899737,-74.91317352536603],[-129.62469624696246,-74.8777134026985],[-129.27549275492754,-74.84056470276109],[-129.26469264692648,-74.83718754822131],[-129.23949239492396,-74.82367893006226],[-129.22869228692286,-74.8203017755225],[-129.18549185491855,-74.82705608460202],[-128.71028710287104,-74.82199035279237],[-128.6490864908649,-74.81354746644296],[-128.5338853388534,-74.77302161196577],[-128.47268472684726,-74.76289014834647],[-128.00468004680047,-74.740938643838],[-127.99387993879938,-74.73756148929823],[-127.97227972279723,-74.7206757165994],[-127.95787957879578,-74.71729856205964],[-127.9038790387904,-74.71898713932953],[-127.84987849878499,-74.72574144840905],[-127.8390783907839,-74.72405287113918],[-127.81027810278103,-74.70885567571023],[-127.79587795877958,-74.70378994390057],[-127.74187741877418,-74.70378994390057],[-127.63027630276304,-74.71898713932953],[-127.35307353073532,-74.70716709844035],[-127.32427324273243,-74.7021013666307],[-127.27027270272703,-74.68352701666198],[-127.2450724507245,-74.68014986212222],[-127.12627126271263,-74.69028132574152],[-126.9390693906939,-74.67677270758246],[-126.87786877868778,-74.68183843939211],[-126.79866798667987,-74.70378994390057],[-126.67626676266762,-74.7206757165994],[-126.59346593465935,-74.74262722110788],[-126.11466114661147,-74.7612015710766],[-126.0570605706057,-74.74769295291753],[-126.02466024660247,-74.74769295291753],[-125.95985959859598,-74.75275868472718],[-125.93465934659346,-74.75275868472718],[-125.8230582305823,-74.72743002567894],[-125.7690576905769,-74.70716709844035],[-125.74025740257403,-74.70547852117046],[-125.33705337053371,-74.71054425298011],[-124.93744937449375,-74.71560998478977],[-124.85464854648546,-74.73249575748859],[-124.82584825848258,-74.73587291202836],[-124.47664476644766,-74.71392140751988],[-124.4370443704437,-74.7206757165994],[-124.42264422644226,-74.7206757165994],[-124.40824408244083,-74.71898713932953],[-124.37944379443795,-74.70885567571023],[-124.3650436504365,-74.70716709844035],[-124.30744307443075,-74.71223283025],[-124.19944199441994,-74.74769295291753],[-124.0770407704077,-74.80679315736343],[-124.05184051840519,-74.81185888917307],[-123.76023760237602,-74.79666169374413],[-123.4650346503465,-74.78146449831519],[-123.34263342633426,-74.75613583926695],[-123.21663216632166,-74.75613583926695],[-123.22383223832239,-74.77471018923565],[-123.16983169831698,-74.78821880739471],[-123.11943119431194,-74.79666169374413],[-123.01143011430113,-74.79666169374413],[-122.8350283502835,-74.76626730288623],[-122.72342723427235,-74.77639876650554],[-122.45342453424534,-74.75275868472718],[-122.42462424624246,-74.75444726199706],[-122.33462334623346,-74.77639876650554],[-122.30582305823057,-74.77639876650554],[-122.22662226622266,-74.75613583926695],[-122.20142201422014,-74.75444726199706],[-122.00342003420033,-74.77471018923565],[-121.91341913419134,-74.76626730288623],[-121.83061830618306,-74.78484165285495],[-121.80181801818017,-74.78653023012484],[-121.7730177301773,-74.78653023012484],[-121.76581765817659,-74.78146449831519],[-121.7550175501755,-74.76457872561636],[-121.74421744217442,-74.75782441653683],[-121.71541715417155,-74.7510701074573],[-121.70101701017009,-74.7510701074573],[-121.63621636216362,-74.75951299380671],[-121.47421474214741,-74.75613583926695],[-121.45981459814598,-74.75275868472718],[-121.44181441814418,-74.73756148929823],[-121.43461434614346,-74.73587291202836],[-121.25461254612546,-74.72405287113918],[-121.2690126901269,-74.73418433475847],[-121.28341283412834,-74.740938643838],[-121.30141301413013,-74.74600437564764],[-121.31941319413194,-74.74769295291753],[-121.26181261812619,-74.75613583926695],[-121.20421204212042,-74.75613583926695],[-121.14661146611465,-74.74431579837777],[-121.09261092610926,-74.72405287113918],[-121.07101071010709,-74.71560998478977],[-121.04221042210422,-74.71560998478977],[-121.0170101701017,-74.72236429386929],[-120.97740977409774,-74.74600437564764],[-120.94500945009449,-74.74769295291753],[-120.82980829808298,-74.73925006656812],[-120.71820718207182,-74.71392140751988],[-120.43380433804339,-74.68690417120175],[-120.1530015300153,-74.65988693488363],[-120.04140041400413,-74.67677270758246],[-119.89739897398974,-74.68183843939211],[-119.54459544595446,-74.6430011621848],[-119.42219422194222,-74.65819835761374],[-119.40059400594006,-74.65482120307398],[-119.38259382593826,-74.64637831672457],[-119.33939339393393,-74.62273823494621],[-119.32139321393214,-74.61598392586669],[-119.13419134191341,-74.59740957589797],[-119.0549905499055,-74.60585246224738],[-118.98298982989829,-74.59572099862808],[-118.91098910989109,-74.60247530770762],[-118.86778867788678,-74.60247530770762],[-118.68058680586805,-74.56363803050031],[-118.630186301863,-74.54506368053161],[-118.61578615786158,-74.52142359875324],[-118.64818648186483,-74.50960355786407],[-119.13779137791377,-74.50284924878454],[-119.06939069390694,-74.44037188979888],[-118.97578975789759,-74.40491176713134],[-118.5509855098551,-74.3593201808445],[-118.12258122581225,-74.3120400172878],[-118.03618036180362,-74.2833342036998],[-117.9929799297993,-74.2630712764612],[-117.97137971379713,-74.25800554465155],[-117.94617946179461,-74.26138269919132],[-117.9209792097921,-74.2715141628106],[-117.8489784897849,-74.31710574909744],[-117.84177841778418,-74.33736867633604],[-117.8849788497885,-74.36269733538427],[-117.97857978579785,-74.3998460353217],[-117.91377913779138,-74.42010896256029],[-117.89217892178922,-74.42010896256029],[-117.83457834578346,-74.41166607621088],[-117.80937809378094,-74.41504323075064],[-117.79137791377914,-74.43192900344947],[-117.88137881378813,-74.46907770338689],[-117.84537845378453,-74.50960355786407],[-117.78417784177842,-74.51804644421348],[-117.66177661776618,-74.50284924878454],[-117.60417604176041,-74.50960355786407],[-117.4889748897489,-74.53493221691231],[-117.34137341373413,-74.54675225780149],[-117.14337143371434,-74.53493221691231],[-116.69336693366932,-74.55857229869066],[-116.52056520565205,-74.51804644421348],[-116.4629646296463,-74.51129213513396],[-116.29736297362973,-74.51973502148337],[-116.2109621096211,-74.49440636243513],[-116.18576185761857,-74.496094939705],[-116.15336153361534,-74.50453782605442],[-116.0489604896049,-74.49778351697489],[-116.08496084960849,-74.47920916700619],[-116.09576095760957,-74.467389126117],[-116.09936099360993,-74.44712619887841],[-116.09576095760957,-74.43024042617958],[-116.08496084960849,-74.4184203852904],[-116.07056070560705,-74.41166607621088],[-116.05256052560526,-74.40660034440123],[-115.98055980559805,-74.39140314897229],[-115.90495904959049,-74.38464883989275],[-115.91935919359193,-74.39815745805181],[-115.92655926559266,-74.40997749894099],[-115.92655926559266,-74.42179753983017],[-115.91575915759158,-74.43530615798923],[-115.8869588695887,-74.45556908522782],[-115.79335793357933,-74.50116067151465],[-115.7249572495725,-74.52142359875324],[-115.64935649356494,-74.53155506237255],[-115.41535415354153,-74.51129213513396],[-115.23895238952389,-74.51466928967372],[-115.0229502295023,-74.48258632154595],[-114.87534875348753,-74.48089774427606],[-114.83934839348393,-74.47076628065676],[-114.85374853748537,-74.46401197157724],[-114.87174871748718,-74.45219193068806],[-114.88254882548826,-74.43699473525912],[-114.88974889748897,-74.42179753983017],[-114.88974889748897,-74.39815745805181],[-114.8789487894879,-74.38802599443251],[-114.86454864548645,-74.38464883989275],[-114.8429484294843,-74.38464883989275],[-114.85374853748537,-74.37789453081322],[-114.86454864548645,-74.37451737627346],[-114.88974889748897,-74.36945164446381],[-114.90414904149041,-74.36438591265416],[-114.92214922149222,-74.34750013995533],[-114.9329493294933,-74.34412298541557],[-114.9689496894969,-74.33568009906615],[-114.99414994149942,-74.32386005817698],[-115.06975069750698,-74.25631696738166],[-115.07695076950769,-74.24449692649249],[-115.09135091350913,-74.20565964928518],[-115.12375123751237,-74.17357668115741],[-115.12735127351273,-74.15162517664893],[-115.10935109351094,-74.13136224941034],[-115.08415084150842,-74.11278789944164],[-115.12375123751237,-74.09421354947293],[-115.0229502295023,-74.04693338591622],[-114.91134911349113,-74.01653899505833],[-114.94374943749438,-73.99458749054985],[-114.81414814148141,-73.96419309969195],[-114.79614796147962,-73.93886444064373],[-114.73494734947349,-73.92704439975454],[-114.50454504545046,-73.92029009067501],[-114.45054450544505,-73.90847004978583],[-114.37494374943749,-73.8814528134677],[-114.20934209342093,-73.862878463499],[-114.18054180541804,-73.86625561803876],[-114.10134101341013,-73.891584277087],[-113.95013950139501,-73.91522435886536],[-113.9789397893979,-73.94899590426301],[-114.01134011340113,-73.96757025423173],[-114.28494284942849,-74.0587534268054],[-114.24174241742418,-74.07901635404399],[-114.18774187741877,-74.0773277767741],[-113.89253892538925,-74.02329330413785],[-113.61173611736118,-74.02498188140774],[-113.58293582935829,-74.0283590359475],[-113.56133561335614,-74.03511334502703],[-113.43893438934388,-74.09927928128258],[-113.42453424534246,-74.11954220852117],[-113.44613446134461,-74.1262965176007],[-113.44613446134461,-74.14318229029952],[-113.43533435334353,-74.16175664026824],[-113.4209342093421,-74.1752652584273],[-113.88173881738817,-74.23774261741296],[-113.94653946539465,-74.25631696738166],[-113.91773917739177,-74.26475985373108],[-113.80613806138061,-74.27657989462026],[-113.74853748537485,-74.27320274008049],[-113.73413734137341,-74.27657989462026],[-113.70173701737018,-74.29177709004921],[-113.68373683736837,-74.29684282185885],[-113.78813788137882,-74.33399152179626],[-113.80613806138061,-74.34243440814568],[-113.80973809738097,-74.35594302630474],[-113.80253802538026,-74.39309172624216],[-113.79533795337953,-74.3998460353217],[-113.78093780937809,-74.40491176713134],[-113.74853748537485,-74.41166607621088],[-113.80253802538026,-74.45219193068806],[-113.73053730537305,-74.46907770338689],[-113.65853658536585,-74.46570054884712],[-113.5109351093511,-74.43192900344947],[-113.22653226532265,-74.40153461259158],[-113.26253262532624,-74.45050335341817],[-113.30933309333093,-74.48089774427606],[-113.56493564935649,-74.55350656688103],[-113.62253622536225,-74.58052380319914],[-113.64773647736477,-74.58727811227868],[-114.05814058140581,-74.62780396675586],[-114.12294122941229,-74.65482120307398],[-114.14454144541445,-74.65988693488363],[-114.32454324543245,-74.68183843939211],[-114.35694356943569,-74.69534705755117],[-114.3029430294303,-74.71054425298011],[-114.2669426694267,-74.71560998478977],[-114.15174151741518,-74.71560998478977],[-113.97173971739717,-74.68183843939211],[-113.91413914139142,-74.68014986212222],[-113.86013860138601,-74.68859274847163],[-113.83853838538386,-74.69872421209094],[-113.82773827738278,-74.71223283025],[-113.82773827738278,-74.72911860294882],[-113.8421384213842,-74.7493815301874],[-113.86013860138601,-74.75951299380671],[-113.92133921339213,-74.78315307558506],[-113.93573935739357,-74.80172742555378],[-113.95373953739538,-74.85913905272979],[-113.9681396813968,-74.88446771177803],[-114.01854018540185,-74.91148494809616],[-114.1409414094141,-74.93512502987451],[-114.27054270542705,-75.0043566979397],[-114.27774277742778,-75.01955389336865],[-114.26334263342633,-75.043193975147],[-114.23814238142381,-75.0533254387663],[-114.10494104941048,-75.06852263419525],[-114.07974079740796,-75.06683405692536],[-113.96453964539646,-75.03812824333735],[-113.8889388893889,-75.03643966606748],[-113.86373863738638,-75.02630820244818],[-113.78813788137882,-74.97733946162158],[-113.7629376293763,-74.96551942073239],[-113.73413734137341,-74.96045368892275],[-113.65493654936549,-74.96551942073239],[-113.50013500135002,-74.94863364803358],[-113.44253442534425,-74.94863364803358],[-113.17973179731797,-74.91148494809616],[-112.91692916929169,-74.87264767088885],[-112.86652866528665,-74.87602482542862],[-112.72612726127261,-74.89966490720697],[-112.67572675726757,-74.8979763299371],[-112.65772657726578,-74.88953344358768],[-112.64332643326433,-74.87433624815873],[-112.63252632526326,-74.85913905272979],[-112.62532625326253,-74.85238474365026],[-112.57132571325712,-74.84563043457072],[-112.24732247322473,-74.86251620726955],[-112.22932229322294,-74.85407332092014],[-112.2149221492215,-74.83718754822131],[-112.18972189721897,-74.83212181641167],[-112.13932139321393,-74.82705608460202],[-112.0961209612096,-74.81354746644296],[-112.07452074520745,-74.8084817346333],[-111.80811808118081,-74.80510458009354],[-111.54171541715417,-74.80172742555378],[-111.55971559715597,-74.78146449831519],[-111.55611556115561,-74.76289014834647],[-111.54171541715417,-74.74769295291753],[-111.51651516515165,-74.73925006656812],[-111.5489154891549,-74.72236429386929],[-111.66771667716677,-74.73587291202836],[-111.71091710917109,-74.7206757165994],[-111.7541175411754,-74.68352701666198],[-111.80451804518044,-74.65650978034387],[-111.9161191611916,-74.61767250313656],[-111.91251912519125,-74.60247530770762],[-111.9161191611916,-74.58727811227868],[-111.92331923319233,-74.57039233957985],[-111.9269192691927,-74.55181798961114],[-111.91971919719197,-74.53493221691231],[-111.90171901719017,-74.52142359875324],[-111.86211862118621,-74.50284924878454],[-111.81891818918189,-74.49102920789537],[-111.48411484114841,-74.50116067151465],[-111.41931419314193,-74.48596347608571],[-111.32571325713256,-74.47583201246641],[-111.35811358113581,-74.45894623976758],[-111.47691476914768,-74.45556908522782],[-111.69651696516965,-74.42348611710005],[-111.73971739717398,-74.40997749894099],[-111.78291782917829,-74.39140314897229],[-111.88731887318873,-74.31541717182756],[-111.90531905319052,-74.2816456264299],[-111.87651876518765,-74.2529398128419],[-111.88371883718837,-74.25125123557201],[-111.89811898118981,-74.24449692649249],[-111.90531905319052,-74.24111977195273],[-111.88731887318873,-74.22929973106355],[-111.86211862118621,-74.2242339992539],[-111.81531815318154,-74.22254542198401],[-111.64971649716497,-74.1752652584273],[-111.5921159211592,-74.17188810388753],[-111.45171451714516,-74.18539672204659],[-111.40131401314012,-74.18201956750683],[-111.3761137611376,-74.18370814477672],[-111.34731347313473,-74.19046245385624],[-111.23211232112321,-74.19721676293577],[-111.15291152911529,-74.22085684471413],[-111.04491044910449,-74.23943119468284],[-111.03771037710376,-74.24449692649249],[-111.01611016110161,-74.25800554465155],[-111.00531005310053,-74.2630712764612],[-110.94410944109441,-74.26982558554073],[-110.88650886508864,-74.2816456264299],[-110.86130861308612,-74.29515424458897],[-110.84330843308433,-74.3120400172878],[-110.82890828908289,-74.32386005817698],[-110.79650796507966,-74.32723721271674],[-110.76410764107641,-74.32386005817698],[-110.74250742507425,-74.32048290363721],[-110.7209072090721,-74.30359713093839],[-110.68850688506885,-74.2529398128419],[-110.67050670506706,-74.24111977195273],[-110.55530555305553,-74.24449692649249],[-110.44730447304472,-74.2715141628106],[-110.24930249302493,-74.37282879900357],[-110.40050400504005,-74.39478030351205],[-110.44730447304472,-74.40997749894099],[-110.42930429304293,-74.4184203852904],[-110.41130411304113,-74.42686327163982],[-110.37170371703716,-74.438683312529],[-110.35010350103501,-74.44037188979888],[-110.22770227702277,-74.42686327163982],[-110.19170191701917,-74.43192900344947],[-110.13050130501304,-74.46907770338689],[-110.12330123301233,-74.4775205897363],[-110.12330123301233,-74.48258632154595],[-110.1341013410134,-74.49271778516524],[-110.1341013410134,-74.496094939705],[-110.13050130501304,-74.50284924878454],[-110.11250112501125,-74.52311217602313],[-110.10170101701017,-74.54844083507137],[-110.11610116101161,-74.57714664865938],[-110.13770137701377,-74.60078673043773],[-110.16290162901629,-74.60922961678715],[-110.22050220502204,-74.60585246224738],[-110.24210242102421,-74.61091819405704],[-110.31770317703177,-74.65482120307398],[-110.32130321303212,-74.66664124396316],[-110.29250292502925,-74.68183843939211],[-110.26730267302673,-74.6919699030114],[-110.24930249302493,-74.70547852117046],[-110.24210242102421,-74.72236429386929],[-110.24570245702456,-74.75275868472718],[-110.26370263702637,-74.76795588015612],[-110.2961029610296,-74.78146449831519],[-110.47250472504724,-74.82199035279237],[-110.5949059490595,-74.83212181641167],[-110.64890648906488,-74.82705608460202],[-110.6741067410674,-74.8287446618719],[-110.69570695706958,-74.8388761254912],[-110.72450724507245,-74.8574504754599],[-110.85050850508505,-74.93174787533475],[-110.93330933309333,-74.9553879571131],[-110.99090990909909,-74.98071661616135],[-111.01611016110161,-74.98915950251076],[-111.25731257312573,-75.01955389336865],[-111.30051300513004,-75.0330625115277],[-111.38331383313833,-75.07358836600488],[-111.52731527315272,-75.10735991140254],[-111.57771577715776,-75.12931141591102],[-111.59931599315993,-75.15464007495926],[-111.51651516515165,-75.15295149768937],[-111.49131491314913,-75.15801722949902],[-111.52011520115201,-75.17321442492798],[-111.61731617316173,-75.19685450670633],[-111.55971559715597,-75.2002316612461],[-111.48051480514805,-75.19516592943644],[-111.46251462514626,-75.2002316612461],[-111.4229142291423,-75.21711743394492],[-111.36531365313652,-75.23400320664375],[-111.3041130411304,-75.24075751572327],[-111.27531275312752,-75.2390689384534],[-111.18891188911888,-75.2103631248654],[-111.13131131311313,-75.20192023851598],[-110.78930789307893,-75.19685450670633],[-110.44730447304472,-75.19347735216657],[-110.41850418504185,-75.2002316612461],[-110.36450364503645,-75.22218316575457],[-110.33930339303393,-75.22724889756422],[-110.17370173701737,-75.2390689384534],[-109.99369993699936,-75.22049458848468],[-109.90009900099001,-75.23231462937386],[-109.86769867698676,-75.23062605210399],[-109.83889838898389,-75.22387174302445],[-109.81729817298172,-75.21374027940516],[-109.71649716497164,-75.15632865222915],[-109.69129691296912,-75.14619718860985],[-109.66249662496625,-75.14788576587974],[-109.63369633696337,-75.15295149768937],[-109.2520925209252,-75.17828015673761],[-108.86688866888669,-75.20529739305574],[-108.48528485284852,-75.23062605210399],[-108.10368103681037,-75.25595471115223],[-108.06408064080641,-75.26608617477152],[-108.02808028080281,-75.28297194747034],[-107.8660786607866,-75.32349780194752],[-107.38727387273873,-75.31336633832824],[-107.36207362073621,-75.31843207013789],[-107.31527315273152,-75.33700642010659],[-107.290072900729,-75.34038357464635],[-107.19287192871928,-75.34376072918613],[-107.1640716407164,-75.33700642010659],[-107.14967149671496,-75.33025211102706],[-107.1280712807128,-75.31336633832824],[-107.11367113671136,-75.30830060651859],[-106.90486904869049,-75.30998918378847],[-106.81486814868148,-75.33025211102706],[-106.7140671406714,-75.33362926556683],[-106.65646656466565,-75.37077796550425],[-106.59166591665917,-75.37922085185366],[-106.52686526865268,-75.37246654277413],[-106.48006480064801,-75.3555807700753],[-106.45846458464584,-75.32180922467765],[-106.44766447664476,-75.316743492868],[-106.0840608406084,-75.28466052474023],[-105.71685716857168,-75.25088897934258],[-105.70245702457024,-75.24413467026304],[-105.67365673656737,-75.22724889756422],[-105.66285662856629,-75.22049458848468],[-105.40005400054001,-75.2002316612461],[-105.14085140851408,-75.18165731127739],[-105.11925119251192,-75.17659157946774],[-105.10485104851048,-75.16646011584844],[-105.09765097650977,-75.16139438403879],[-105.10125101251012,-75.15632865222915],[-105.10125101251012,-75.15295149768937],[-105.10485104851048,-75.14619718860985],[-105.09765097650977,-75.12424568410137],[-105.06525065250652,-75.11242564321219],[-105.02565025650256,-75.10735991140254],[-104.83484834848348,-75.10735991140254],[-104.81684816848168,-75.11073706594232],[-104.80964809648096,-75.11411422048208],[-104.79884798847988,-75.12424568410137],[-104.78084780847809,-75.13437714772067],[-104.75924759247592,-75.1411314568002],[-104.63324633246332,-75.15970580676891],[-104.55044550445504,-75.16139438403879],[-104.33444334443344,-75.12424568410137],[-104.10044100441004,-75.1208685295616],[-103.93123931239312,-75.15464007495926],[-103.81243812438125,-75.15295149768937],[-103.55323553235532,-75.11917995229173],[-103.29763297632977,-75.08540840689408],[-102.94482944829448,-75.10735991140254],[-102.59562595625955,-75.12931141591102],[-102.43722437224372,-75.10904848867243],[-102.340023400234,-75.13099999318091],[-102.17082170821708,-75.1225571068315],[-102.07722077220772,-75.12931141591102],[-101.85761857618576,-75.10567133413267],[-101.78561785617856,-75.08371982962419],[-101.76041760417604,-75.08371982962419],[-101.6560165601656,-75.10060560232301],[-101.59841598415984,-75.11917995229173],[-101.56241562415624,-75.14619718860985],[-101.55161551615515,-75.17490300219785],[-101.55521555215552,-75.19685450670633],[-101.5660156601566,-75.21542885667503],[-101.59121591215911,-75.23738036118351],[-101.62361623616236,-75.25595471115223],[-101.63081630816308,-75.26270902023175],[-101.6380163801638,-75.27284048385106],[-101.64881648816488,-75.29479198835952],[-101.6560165601656,-75.30492345197882],[-101.53361533615336,-75.34882646099577],[-101.14841148411485,-75.37246654277413],[-101.15921159211592,-75.3944180472826],[-101.15561155611556,-75.41299239725132],[-101.13761137611375,-75.42818959268025],[-101.11241112411123,-75.43156674722002],[-101.0260102601026,-75.41974670633084],[-100.93960939609396,-75.42143528360073],[-100.630006300063,-75.39104089274284],[-100.54720547205471,-75.3657122336946],[-100.43560435604356,-75.35051503826566],[-100.3240032400324,-75.35051503826566],[-100.22320223202232,-75.36064650188496],[-100.13680136801368,-75.38428658366331],[-100.11160111601116,-75.38597516093319],[-100.09720097200972,-75.38259800639342],[-100.05040050400504,-75.36740081096448],[-100.03960039600396,-75.3657122336946],[-100.01440014400144,-75.36740081096448],[-100.00360003600036,-75.36402365642472],[-99.97479974799748,-75.3555807700753],[-99.83079830798307,-75.33025211102706],[-99.43119431194312,-75.30323487470893],[-99.01359013590135,-75.33869499737648],[-99.00279002790028,-75.33700642010659],[-98.95958959589596,-75.32012064740776],[-98.94518945189452,-75.316743492868],[-98.77238772387723,-75.32180922467765],[-98.64278642786428,-75.30998918378847],[-98.62478624786247,-75.30323487470893],[-98.59598595985959,-75.28128337020047],[-98.5779857798578,-75.27284048385106],[-98.56358563585636,-75.2694633293113],[-98.48078480784808,-75.25933186569199],[-98.40158401584016,-75.23569178391364],[-98.43038430384304,-75.21711743394492],[-98.47718477184772,-75.21542885667503],[-98.57078570785707,-75.22556032029433],[-98.74358743587436,-75.22387174302445],[-98.43398433984339,-75.13268857045078],[-98.54918549185491,-75.12424568410137],[-98.89838898388983,-75.17490300219785],[-98.92718927189271,-75.17321442492798],[-99.03879038790387,-75.14619718860985],[-99.38079380793808,-75.11242564321219],[-99.35199351993519,-75.09385129324349],[-99.3339933399334,-75.07696552054466],[-99.32679326793267,-75.0533254387663],[-99.33039330393304,-75.00773385247946],[-99.32319323193232,-74.97396230708182],[-99.32319323193232,-74.96214226619263],[-99.3339933399334,-74.95201080257334],[-99.38439384393844,-74.9266821435251],[-99.43839438394383,-74.91317352536603],[-99.60039600396004,-74.94694507076369],[-99.62919629196291,-74.9452564934938],[-99.74079740797407,-74.92499356625521],[-99.88479884798848,-74.92161641171545],[-100.10440104401044,-74.94356791622393],[-100.3420034200342,-74.9266821435251],[-100.5220052200522,-74.89122202085755],[-100.53640536405364,-74.88446771177803],[-100.54360543605436,-74.87433624815873],[-100.53640536405364,-74.8574504754599],[-100.52920529205292,-74.85576189819002],[-100.36360363603636,-74.84056470276109],[-100.30600306003059,-74.84225328003096],[-100.20520205202051,-74.86082762999968],[-100.14760147601476,-74.85913905272979],[-100.08280082800827,-74.84563043457072],[-100.05760057600575,-74.83212181641167],[-100.03240032400323,-74.80679315736343],[-100.01080010800108,-74.79497311647424],[-99.92079920799208,-74.76964445742601],[-99.9639996399964,-74.74431579837777],[-100.01080010800108,-74.73249575748859],[-100.11160111601116,-74.71560998478977],[-100.1080010800108,-74.71054425298011],[-100.07560075600756,-74.6919699030114],[-100.05040050400504,-74.67846128485235],[-100.03960039600396,-74.67001839850293],[-100.01800018000179,-74.6430011621848],[-100.03960039600396,-74.63793543037515],[-100.11520115201152,-74.63118112129563],[-100.08640086400864,-74.61091819405704],[-100.0540005400054,-74.60247530770762],[-99.87759877598776,-74.57714664865938],[-99.81639816398163,-74.53830937145207],[-99.8019980199802,-74.5366207941822],[-99.81639816398163,-74.5264893305629],[-99.83439834398344,-74.52142359875324],[-99.84879848798488,-74.52311217602313],[-99.87039870398704,-74.5264893305629],[-99.88119881198811,-74.52480075329302],[-99.91359913599136,-74.51129213513396],[-99.9279992799928,-74.5079149805942],[-100.00720007200071,-74.51129213513396],[-100.03240032400323,-74.5079149805942],[-100.04680046800468,-74.50284924878454],[-100.09360093600935,-74.47920916700619],[-100.11160111601116,-74.47414343519654],[-100.12960129601295,-74.47414343519654],[-100.24480244802447,-74.48934063062548],[-100.33120331203311,-74.48089774427606],[-100.39960399603996,-74.48258632154595],[-100.42120421204211,-74.4775205897363],[-100.43560435604356,-74.47583201246641],[-100.46440464404644,-74.48258632154595],[-100.47880478804788,-74.48258632154595],[-100.540005400054,-74.48089774427606],[-100.60120601206012,-74.48427489881583],[-100.92880928809288,-74.55012941234125],[-101.39681396813968,-74.50284924878454],[-101.46161461614616,-74.47583201246641],[-101.41841418414184,-74.45556908522782],[-101.39681396813968,-74.44206046706876],[-101.37881378813788,-74.42517469436993],[-101.4040140401404,-74.42179753983017],[-101.42561425614255,-74.41335465348075],[-101.43281432814328,-74.39646888078192],[-101.42921429214292,-74.37451737627346],[-101.41121411214112,-74.35594302630474],[-101.38961389613895,-74.34412298541557],[-101.34281342813428,-74.32723721271674],[-101.30681306813068,-74.30697428547815],[-101.29961299612995,-74.29684282185885],[-101.29241292412924,-74.28502278096967],[-101.2960129601296,-74.27489131735038],[-101.30681306813068,-74.27320274008049],[-101.36441364413643,-74.2816456264299],[-101.42561425614255,-74.27995704916002],[-101.40761407614076,-74.26813700827084],[-101.37881378813788,-74.25800554465155],[-101.36081360813608,-74.24449692649249],[-101.35361353613536,-74.22592257652377],[-101.36441364413643,-74.19890534020566],[-101.38241382413824,-74.1752652584273],[-101.4040140401404,-74.16006806299835],[-101.43281432814328,-74.15500233118871],[-101.42561425614255,-74.12967367214046],[-101.440014400144,-74.1161650539814],[-101.48681486814868,-74.10265643582234],[-101.51561515615155,-74.08914781766327],[-101.53361533615336,-74.07395062223434],[-101.5480154801548,-74.05199911772586],[-101.55521555215552,-74.02329330413785],[-101.58761587615876,-73.9996532223595],[-101.65961659616596,-73.99458749054985],[-101.78561785617856,-74.00303037689926],[-101.90081900819008,-73.99796464508961],[-102.06282062820628,-73.95743879061243],[-102.22842228422284,-73.96250452242208],[-102.39402394023939,-73.93211013156419],[-102.73242732427325,-73.93717586337384],[-102.84762847628475,-73.9219786679449],[-102.8980289802898,-73.9017157407063],[-102.92322923229231,-73.85781273168935],[-102.88362883628837,-73.81728687721217],[-102.82242822428223,-73.78013817727475],[-102.790027900279,-73.74805520914697],[-102.80442804428044,-73.71766081828909],[-102.84762847628475,-73.70077504559026],[-102.96282962829628,-73.68557785016131],[-102.97722977229772,-73.68220069562155],[-102.9880298802988,-73.67544638654202],[-102.9880298802988,-73.65518345930343],[-102.98082980829808,-73.63660910933471],[-102.98442984429845,-73.62141191390577],[-102.99882998829987,-73.6095918730166],[-102.9520295202952,-73.58932894577799],[-102.89082890828908,-73.58595179123823],[-102.40122401224012,-73.61128045028647],[-101.91161911619116,-73.63660910933471],[-101.80001800018,-73.66362634565284],[-101.3860138601386,-73.6670035001926],[-101.36081360813608,-73.67038065473237],[-101.27441274412743,-73.69570931378061],[-101.26361263612635,-73.70077504559026],[-101.260012600126,-73.70921793193968],[-101.260012600126,-73.72272655009873],[-101.260012600126,-73.73792374552768],[-101.24921249212491,-73.74805520914697],[-101.23481234812348,-73.75480951822651],[-101.16281162811627,-73.77000671365545],[-100.89640896408964,-73.77676102273497],[-100.63360633606335,-73.78182675454462],[-100.61920619206192,-73.77844960000486],[-100.6120061200612,-73.77169529092534],[-100.59760597605975,-73.75312094095662],[-100.58680586805868,-73.74805520914697],[-100.5760057600576,-73.7463666318771],[-100.53280532805327,-73.75143236368675],[-100.51840518405184,-73.74974378641686],[-100.50040500405004,-73.73623516825779],[-100.4860048600486,-73.72948085917827],[-100.45720457204571,-73.7261037046385],[-100.1620016200162,-73.72948085917827],[-99.86679866798667,-73.73285801371803],[-99.66879668796687,-73.70246362286014],[-99.5859958599586,-73.70752935466979],[-99.55719557195572,-73.70077504559026],[-99.49959499594996,-73.68220069562155],[-99.47079470794708,-73.67544638654202],[-99.49959499594996,-73.66193776838296],[-99.5859958599586,-73.63492053206483],[-99.4959949599496,-73.61803475936601],[-99.21159211592115,-73.64505199568413],[-98.81558815588156,-73.63154337752506],[-98.85158851588515,-73.60452614120695],[-98.8659886598866,-73.59439467758764],[-98.89118891188912,-73.58764036850812],[-99.189991899919,-73.56737744126953],[-99.48519485194852,-73.54711451403094],[-99.5859958599586,-73.52347443225257],[-99.549995499955,-73.49983435047422],[-99.50319503195031,-73.48970288685493],[-99.4059940599406,-73.48632573231515],[-99.60039600396004,-73.44748845510786],[-99.63639636396364,-73.44748845510786],[-99.67239672396724,-73.45424276418738],[-99.70119701197012,-73.46606280507656],[-99.71559715597155,-73.46775138234645],[-99.72639726397264,-73.4626856505368],[-99.729997299973,-73.44917703237773],[-99.7119971199712,-73.41540548698008],[-99.7119971199712,-73.39851971428125],[-99.71919719197192,-73.38332251885231],[-99.73359733597336,-73.37319105523301],[-99.75159751597516,-73.36643674615348],[-99.76959769597696,-73.36474816888361],[-100.21960219602195,-73.35292812799442],[-100.66960669606696,-73.34110808710524],[-101.11961119611196,-73.32928804621606],[-101.21321213212131,-73.315779428057],[-101.69561695616956,-73.33604235529559],[-101.85761857618576,-73.30395938716782],[-102.22842228422284,-73.31746800532689],[-102.60282602826028,-73.33097662348595],[-102.87282872828727,-73.30902511897747],[-102.88722887228872,-73.30395938716782],[-102.89442894428944,-73.2972050780883],[-102.90162901629016,-73.28876219173888],[-102.90882908829089,-73.28031930538947],[-102.9880298802988,-73.2381048736424],[-103.04563045630456,-73.22459625548333],[-103.11763117631176,-73.18575897827603],[-103.14643146431465,-73.17731609192663],[-103.24723247232473,-73.17056178284709],[-103.26523265232652,-73.16718462830733],[-103.28683286832869,-73.15874174195791],[-103.30843308433084,-73.14692170106873],[-103.31563315633156,-73.1317245056398],[-103.30843308433084,-73.11652731021084],[-103.28683286832869,-73.1013301147819],[-103.240032400324,-73.07769003300353],[-103.25083250832508,-73.06755856938425],[-103.26163261632617,-73.05911568303483],[-103.2760327603276,-73.0523613739553],[-103.28683286832869,-73.04729564214566],[-103.28323283232832,-73.03716417852635],[-103.2760327603276,-73.02534413763718],[-103.26163261632617,-73.00676978766847],[-103.31203312033121,-72.97806397408047],[-103.33363333633336,-72.96117820138164],[-103.35523355233552,-72.93922669687316],[-103.3840338403384,-72.88688080150679],[-103.4020340203402,-72.86324071972844],[-103.43083430834308,-72.84973210156937],[-103.33363333633336,-72.77543470169454],[-103.29763297632977,-72.75686035172583],[-103.0420304203042,-72.70789161089922],[-102.68562685626856,-72.72308880632818],[-102.32922329223292,-72.73828600175712],[-102.27162271622716,-72.75517177445595],[-102.09522095220952,-72.77205754715477],[-102.11682116821169,-72.78218901077408],[-102.14922149221492,-72.79400905166325],[-102.16722167221673,-72.80920624709219],[-102.14922149221492,-72.83115775160067],[-102.160021600216,-72.84128921521996],[-102.17082170821708,-72.84973210156937],[-102.18522185221852,-72.85648641064891],[-102.1960219602196,-72.85986356518868],[-102.160021600216,-72.88012649242727],[-102.18882188821888,-72.89363511058633],[-102.26082260822608,-72.90207799693574],[-102.29322293222931,-72.90883230601527],[-102.30762307623075,-72.91727519236468],[-102.3220232202322,-72.92740665598399],[-102.33282332823327,-72.93416096506351],[-102.35082350823508,-72.93922669687316],[-102.42642426424264,-72.94091527414304],[-102.44082440824408,-72.94260385141293],[-102.46962469624695,-72.95780104684187],[-102.4840248402484,-72.96286677865152],[-102.5560255602556,-72.96286677865152],[-102.7180271802718,-72.99832690131906],[-102.67842678426784,-73.00508121039859],[-102.3760237602376,-72.99157259223952],[-102.07722077220772,-72.97806397408047],[-101.98361983619836,-72.98650686042987],[-101.9980199801998,-73.04054133306613],[-101.9620196201962,-73.05573852849507],[-101.67761677616775,-73.03378702398659],[-101.39681396813968,-73.013524096748],[-101.31041310413104,-72.99157259223952],[-101.03681036810367,-72.98312970589011],[-100.76680766807668,-72.97637539681058],[-100.65880658806587,-73.01014694220824],[-100.3780037800378,-73.06586999211436],[-100.31680316803168,-73.06924714665413],[-100.26280262802628,-73.06080426030472],[-100.14040140401404,-73.02196698309741],[-100.11160111601116,-73.01858982855765],[-100.02160021600216,-73.0236555603673],[-99.85239852398524,-72.9949497467793],[-99.68319683196832,-73.01690125128776],[-99.189991899919,-73.01858982855765],[-98.70038700387003,-73.02196698309741],[-98.20718207182071,-73.0236555603673],[-97.71757717577175,-73.02534413763718],[-97.80397803978039,-73.0911986511626],[-97.83637836378364,-73.10977300113132],[-97.98037980379803,-73.16887320557721],[-97.92997929979299,-73.1891361328158],[-97.87237872378724,-73.19926759643509],[-97.81837818378183,-73.20095617370498],[-97.76077760777608,-73.19420186462546],[-97.60237602376023,-73.13679023744943],[-97.45117451174511,-73.12328161929038],[-97.41877418774187,-73.12497019656026],[-97.3359733597336,-73.14861027833862],[-97.30717307173072,-73.1502988556085],[-97.28557285572856,-73.14692170106873],[-97.25317253172531,-73.14861027833862],[-97.22437224372243,-73.15367601014826],[-97.18117181171812,-73.18069324646639],[-97.1559715597156,-73.18575897827603],[-96.99036990369903,-73.19251328735557],[-96.96156961569615,-73.20095617370498],[-96.91116911169111,-73.22966198729299],[-96.7059670596706,-73.2668106872304],[-96.58716587165871,-73.27525357357982],[-96.47556475564755,-73.29889365535817],[-96.15876158761587,-73.315779428057],[-95.84195841958419,-73.33097662348595],[-95.83115831158311,-73.32422231440641],[-95.82035820358203,-73.31240227351724],[-95.80595805958059,-73.28369645992923],[-95.79515795157951,-73.27525357357982],[-95.74835748357484,-73.25499064634123],[-95.68715687156872,-73.24485918272192],[-95.51075510755108,-73.24485918272192],[-95.39555395553955,-73.22290767821346],[-95.33795337953379,-73.21953052367368],[-95.27675276752767,-73.2279734100231],[-95.26955269552695,-73.22628483275322],[-95.24435244352443,-73.21446479186405],[-95.23355233552336,-73.21108763732428],[-95.1939519395194,-73.2093990600544],[-95.00315003150031,-73.24485918272192],[-94.57834578345783,-73.23472771910264],[-94.53154531545316,-73.24654775999181],[-94.38754387543875,-73.30902511897747],[-94.33714337143371,-73.32084515986665],[-94.13194131941319,-73.31240227351724],[-93.93753937539375,-73.27863072811958],[-93.79713797137971,-73.22290767821346],[-93.77553775537756,-73.21615336913392],[-93.75033750337504,-73.21277621459416],[-93.69633696336963,-73.21277621459416],[-93.65673656736567,-73.22121910094357],[-93.63513635136351,-73.22459625548333],[-93.61713617136171,-73.21615336913392],[-93.609936099361,-73.2093990600544],[-93.60633606336063,-73.19082471008568],[-93.59913599135992,-73.18238182373626],[-93.58833588335884,-73.17731609192663],[-93.57033570335703,-73.17562751465674],[-93.29673296732967,-73.18407040100615],[-93.0231302313023,-73.19251328735557],[-92.96912969129691,-73.1790046691965],[-92.91872918729187,-73.17225036011698],[-92.86472864728647,-73.15536458741815],[-92.79992799927999,-73.14354454652897],[-92.78912789127891,-73.14354454652897],[-92.7711277112771,-73.14861027833862],[-92.76032760327602,-73.15705316468802],[-92.75672756727568,-73.16718462830733],[-92.74232742327423,-73.1790046691965],[-92.71712717127171,-73.18407040100615],[-92.54072540725407,-73.16549605103744],[-92.24552245522455,-73.17562751465674],[-91.95391953919538,-73.18407040100615],[-91.93231932319323,-73.19082471008568],[-91.92511925119251,-73.20264475097486],[-91.92151921519215,-73.21446479186405],[-91.91791917919178,-73.22459625548333],[-91.85671856718567,-73.25161349180146],[-91.84231842318422,-73.25499064634123],[-91.66231662316623,-73.24485918272192],[-91.38871388713886,-73.27356499630993],[-91.1151111511115,-73.30058223262806],[-91.10431104311043,-73.30395938716782],[-91.09711097110971,-73.31071369624735],[-91.09351093510935,-73.32759946894618],[-91.08991089910899,-73.33435377802572],[-91.07911079110791,-73.33604235529559],[-90.75870758707586,-73.30902511897747],[-90.65070650706507,-73.2769421508497],[-90.62190621906218,-73.27525357357982],[-90.56070560705606,-73.28369645992923],[-90.53550535505354,-73.28031930538947],[-90.3591035910359,-73.22290767821346],[-90.29430294302942,-73.19251328735557],[-90.20790207902078,-73.1502988556085],[-90.18630186301863,-73.14354454652897],[-90.16110161101611,-73.1401673919892],[-90.0711007110071,-73.14354454652897],[-89.9450994509945,-73.12665877383014],[-89.90189901899019,-73.12834735110002],[-89.80109801098011,-73.14354454652897],[-89.74709747097471,-73.14185596925908],[-89.53829538295382,-73.10470726932166],[-89.5130951309513,-73.10470726932166],[-89.44469444694447,-73.12159304202049],[-89.28269282692827,-73.10639584659155],[-89.22869228692286,-73.11146157840119],[-89.26109261092611,-73.08782149662284],[-89.28269282692827,-73.0624928375746],[-89.2790927909279,-73.03716417852635],[-89.2430924309243,-73.01690125128776],[-89.08829088290882,-72.95948962411175],[-89.07749077490774,-72.95273531503223],[-89.0630906309063,-72.94091527414304],[-89.05229052290522,-72.92909523325386],[-89.0630906309063,-72.92234092417434],[-89.10629106291063,-72.91389803782492],[-89.12069120691207,-72.90207799693574],[-89.1170911709117,-72.88181506969715],[-89.10629106291063,-72.82609201979102],[-89.0990909909099,-72.80920624709219],[-89.10989109891099,-72.76361466080536],[-89.17109171091711,-72.7298431154077],[-89.35829358293583,-72.67749722004135],[-89.42309423094231,-72.64372567464369],[-89.34749347493475,-72.63528278829428],[-88.9730897308973,-72.66061144734252],[-88.59868598685986,-72.68594010639076],[-88.22428224282243,-72.71295734270888],[-88.17388173881739,-72.73153169267759],[-88.13788137881379,-72.76192608353549],[-88.13068130681306,-72.78387758804395],[-88.12708127081271,-72.80582909255243],[-88.12348123481235,-72.82609201979102],[-88.1090810908109,-72.84297779248985],[-88.19548195481954,-72.8767493378875],[-88.28548285482854,-72.90038941966586],[-88.36468364683647,-72.90883230601527],[-88.40788407884078,-72.91896376963457],[-88.4330843308433,-72.9358495423334],[-88.44028440284403,-72.95611246957199],[-88.4330843308433,-72.96962108773104],[-88.39348393483934,-72.98988401496965],[-88.41868418684186,-73.02027840582753],[-88.45468454684547,-73.03885275579624],[-88.71388713887139,-73.1199044647506],[-88.70308703087031,-73.12665877383014],[-88.60948609486094,-73.14861027833862],[-88.56628566285663,-73.16549605103744],[-88.53388533885338,-73.18744755554592],[-88.47988479884799,-73.24317060545205],[-88.44388443884438,-73.26343353269064],[-88.40788407884078,-73.27018784177017],[-88.36828368283682,-73.26512210996052],[-88.26388263882639,-73.22121910094357],[-88.23148231482314,-73.21277621459416],[-88.18828188281883,-73.2093990600544],[-88.15228152281523,-73.2093990600544],[-88.11628116281163,-73.21446479186405],[-88.10188101881019,-73.21953052367368],[-88.0730807308073,-73.2381048736424],[-88.05868058680586,-73.24317060545205],[-87.92187921879218,-73.25330206907134],[-87.88587885878859,-73.24654775999181],[-87.82467824678247,-73.22121910094357],[-87.64827648276483,-73.19420186462546],[-87.50427504275042,-73.20095617370498],[-87.47187471874719,-73.19589044189533],[-87.36747367473674,-73.16887320557721],[-87.34947349473494,-73.16887320557721],[-87.33147331473315,-73.17393893738685],[-87.32427324273242,-73.18407040100615],[-87.33147331473315,-73.20264475097486],[-87.34587345873459,-73.21277621459416],[-87.36027360273603,-73.21953052367368],[-87.39267392673926,-73.22628483275322],[-87.35667356673567,-73.25667922361112],[-87.3170731707317,-73.26849926450029],[-87.18027180271802,-73.2769421508497],[-87.13347133471335,-73.287073614469],[-87.11187111871118,-73.30902511897747],[-87.13347133471335,-73.35292812799442],[-87.09027090270902,-73.36643674615348],[-87.03987039870398,-73.37656820977278],[-86.94626946269463,-73.38332251885231],[-86.66546665466655,-73.37150247796313],[-86.59346593465935,-73.34955097345465],[-86.46026460264602,-73.33773093256548],[-86.4350643506435,-73.32759946894618],[-86.41346413464134,-73.31240227351724],[-86.38466384663846,-73.27525357357982],[-86.36666366663667,-73.26343353269064],[-86.3450634506345,-73.25836780088099],[-86.31626316263163,-73.25836780088099],[-86.29106291062911,-73.26343353269064],[-86.26946269462694,-73.27356499630993],[-86.24786247862478,-73.28031930538947],[-86.22266222662226,-73.2769421508497],[-86.07146071460714,-73.24654775999181],[-85.9850598505985,-73.20264475097486],[-85.88785887858879,-73.17731609192663],[-85.78345783457834,-73.16887320557721],[-85.6790567905679,-73.17731609192663],[-85.58185581855818,-73.20095617370498],[-85.6430564305643,-73.21277621459416],[-85.65745657456574,-73.22290767821346],[-85.66825668256682,-73.24148202818216],[-85.66465664656646,-73.25499064634123],[-85.65385653856538,-73.26512210996052],[-85.61065610656107,-73.2769421508497],[-85.59625596255962,-73.28369645992923],[-85.58545585455855,-73.29551650081841],[-85.57465574655747,-73.32084515986665],[-85.56385563855638,-73.33435377802572],[-85.54585545855458,-73.34279666437513],[-85.50265502655026,-73.35292812799442],[-85.54225542255422,-73.37150247796313],[-85.53145531455314,-73.3850110961222],[-85.5170551705517,-73.38838825066196],[-85.49905499054991,-73.38838825066196],[-85.48465484654847,-73.39345398247161],[-85.45945459454595,-73.40527402336079],[-85.44145441454414,-73.41033975517044],[-85.41985419854198,-73.40696260063066],[-85.39465394653946,-73.39683113701138],[-85.36585365853658,-73.39176540520172],[-85.34065340653406,-73.39683113701138],[-85.2290522905229,-73.44073414602832],[-85.16785167851678,-73.45593134145727],[-85.1030510305103,-73.48632573231515],[-85.05265052650526,-73.4913914641248],[-85.00945009450095,-73.50321150501398],[-84.91944919449195,-73.51334296863328],[-84.8510485104851,-73.53191731860198],[-84.46584465844658,-73.5690660185394],[-84.17784177841779,-73.55724597765023],[-84.13464134641346,-73.5504916685707],[-84.1130411304113,-73.54880309130081],[-84.0410404104041,-73.56737744126953],[-84.01944019440194,-73.56568886399964],[-83.97263972639726,-73.5504916685707],[-83.94743947439474,-73.54542593676105],[-83.92943929439294,-73.54880309130081],[-83.88623886238862,-73.56231170945988],[-83.86463864638647,-73.56568886399964],[-83.7530375303753,-73.56062313218999],[-83.7530375303753,-73.61296902755636],[-83.76023760237602,-73.63492053206483],[-83.78543785437854,-73.64167484114436],[-83.81063810638106,-73.64167484114436],[-83.83583835838358,-73.64505199568413],[-83.85743857438574,-73.65349488203354],[-83.88263882638826,-73.6670035001926],[-83.86823868238682,-73.67882354108178],[-83.82863828638285,-73.68557785016131],[-83.8070380703807,-73.69402073651072],[-83.81423814238143,-73.69739789105049],[-83.81783817838178,-73.70921793193968],[-83.82143821438214,-73.72272655009873],[-83.81783817838178,-73.73285801371803],[-83.81063810638106,-73.74130090006744],[-83.79623796237962,-73.74298947733732],[-83.69183691836918,-73.7261037046385],[-83.66663666636666,-73.72779228190838],[-83.65583655836558,-73.73454659098792],[-83.64143641436414,-73.75143236368675],[-83.63063630636306,-73.75143236368675],[-83.57663576635765,-73.73454659098792],[-83.5550355503555,-73.73116943644814],[-83.54423544235442,-73.73285801371803],[-83.52983529835298,-73.73792374552768],[-83.5190351903519,-73.73623516825779],[-83.50823508235082,-73.7261037046385],[-83.49023490234902,-73.70246362286014],[-83.45063450634505,-73.68557785016131],[-83.39663396633966,-73.6872664274312],[-83.29583295832958,-73.70584077739991],[-82.93222932229322,-73.71090650920955],[-82.71262712627126,-73.7446780546072],[-82.6730267302673,-73.77000671365545],[-82.64782647826478,-73.77169529092534],[-82.6010260102601,-73.76831813638557],[-82.3490234902349,-73.82572976356158],[-82.27342273422734,-73.85950130895924],[-82.20862208622086,-73.87976423619783],[-82.13662136621366,-73.88989569981712],[-82.06462064620646,-73.88651854527735],[-81.99981999819998,-73.86963277257853],[-81.91341913419134,-73.82572976356158],[-81.89181891818917,-73.81897545448204],[-81.87381873818738,-73.81728687721217],[-81.78741787417874,-73.82741834083146],[-81.70821708217082,-73.82741834083146],[-81.2330123301233,-73.72948085917827],[-81.18621186211861,-73.70415220013003],[-81.14661146611466,-73.66531492292272],[-81.1250112501125,-73.62141191390577],[-81.11061110611105,-73.60452614120695],[-81.08541085410853,-73.59439467758764],[-81.11421114211142,-73.5690660185394],[-81.15381153811538,-73.55555740038035],[-81.23661236612365,-73.53698305041164],[-81.27261272612726,-73.5217858549827],[-81.3050130501305,-73.5015229277441],[-81.32661326613265,-73.47957142323563],[-81.33381333813338,-73.45761991872715],[-81.33381333813338,-73.4339798369488],[-81.31221312213121,-73.37656820977278],[-81.30861308613086,-73.35292812799442],[-81.3230132301323,-73.33604235529559],[-81.35541355413554,-73.32422231440641],[-81.31221312213121,-73.27356499630993],[-81.2330123301233,-73.24823633726169],[-81.15021150211501,-73.23979345091229],[-80.81180811808117,-73.26343353269064],[-80.77580775807758,-73.27525357357982],[-80.76140761407613,-73.28538503719912],[-80.73980739807398,-73.30733654170758],[-80.7290072900729,-73.31746800532689],[-80.7110071100711,-73.32422231440641],[-80.61020610206101,-73.33435377802572],[-80.39420394203941,-73.4137169097102],[-80.27180271802717,-73.42215979605962],[-80.23220232202321,-73.41709406424997],[-80.19620196201961,-73.40189686882103],[-80.2250022500225,-73.40020829155114],[-80.32580325803258,-73.36305959161372],[-80.3510035100351,-73.34617381891489],[-80.35820358203581,-73.33435377802572],[-80.35820358203581,-73.32422231440641],[-80.35820358203581,-73.31240227351724],[-80.35820358203581,-73.30058223262806],[-80.36540365403654,-73.287073614469],[-80.41940419404193,-73.2077104827845],[-80.43740437404374,-73.18744755554592],[-80.46260462604626,-73.17393893738685],[-80.50580505805058,-73.1604303192278],[-80.52020520205201,-73.15367601014826],[-80.55260552605526,-73.11652731021084],[-80.56340563405634,-73.10977300113132],[-80.62460624606246,-73.09795296024214],[-80.64980649806498,-73.08444434208307],[-80.6570065700657,-73.0624928375746],[-80.6570065700657,-73.04560706487577],[-80.66420664206642,-73.03378702398659],[-80.66420664206642,-73.0236555603673],[-80.6570065700657,-73.00845836493835],[-80.64620646206461,-72.99663832404917],[-80.63540635406353,-72.98819543769976],[-80.62100621006209,-72.97975255135034],[-80.60660606606066,-72.9746868195407],[-80.49140491404914,-72.95273531503223],[-80.37620376203762,-72.94935816049245],[-80.01260012600126,-72.9949497467793],[-79.6489964899649,-73.03885275579624],[-79.62739627396273,-73.04898421941553],[-79.58059580595805,-73.07937861027342],[-79.23139231392314,-73.19589044189533],[-79.14139141391414,-73.24654775999181],[-79.0909909099091,-73.26512210996052],[-78.99378993789938,-73.287073614469],[-78.93618936189361,-73.28876219173888],[-78.91818918189182,-73.29213934627865],[-78.88218882188822,-73.31071369624735],[-78.78138781387814,-73.33773093256548],[-78.74538745387453,-73.36474816888361],[-78.74178741787418,-73.4137169097102],[-78.76338763387633,-73.44579987783797],[-78.79218792187922,-73.46775138234645],[-78.82458824588245,-73.48463715504528],[-78.85338853388534,-73.50827723682363],[-78.86058860588605,-73.52009727771281],[-78.86058860588605,-73.52854016406222],[-78.8569885698857,-73.53360589587187],[-78.8569885698857,-73.54204878222129],[-78.87138871388713,-73.58257463669847],[-78.86778867788678,-73.5994604093973],[-78.84618846188461,-73.6095918730166],[-78.78138781387814,-73.61128045028647],[-78.58338583385833,-73.58257463669847],[-78.52938529385294,-73.56062313218999],[-78.50058500585006,-73.55724597765023],[-78.20178201782018,-73.55555740038035],[-77.9749797497975,-73.52347443225257],[-77.85257852578525,-73.5217858549827],[-77.53217532175321,-73.46775138234645],[-77.49977499774998,-73.46606280507656],[-77.44217442174421,-73.4728171141561],[-77.35937359373594,-73.50321150501398],[-77.33057330573305,-73.50827723682363],[-77.24417244172442,-73.51334296863328],[-77.21537215372153,-73.50996581409352],[-77.16137161371613,-73.49308004139469],[-77.11097110971109,-73.47112853688621],[-77.07857078570785,-73.4626856505368],[-76.88056880568806,-73.45930849599704],[-76.84816848168481,-73.46437422780667],[-76.77976779767798,-73.48970288685493],[-76.71856718567186,-73.52347443225257],[-76.69696696966969,-73.54711451403094],[-76.70416704167042,-73.57075459580929],[-76.72936729367294,-73.59101752304788],[-76.94176941769418,-73.66869207746248],[-76.95616956169562,-73.6771349638119],[-76.98136981369814,-73.70077504559026],[-76.99576995769958,-73.70921793193968],[-77.24417244172442,-73.81222114540252],[-77.20457204572045,-73.834172649911],[-77.12177121771218,-73.87132134984842],[-77.08217082170822,-73.87976423619783],[-77.04977049770497,-73.87807565892794],[-77.0209702097021,-73.87132134984842],[-76.9309693096931,-73.83248407264111],[-76.77976779767798,-73.79026964089404],[-76.60336603366034,-73.78689248635428],[-76.57816578165782,-73.79026964089404],[-76.53496534965349,-73.81053256813263],[-76.50976509765097,-73.81559829994228],[-76.30456304563046,-73.8240411862917],[-76.27576275762758,-73.82066403175193],[-76.2649626496265,-73.8139097226724],[-76.23976239762398,-73.7936467954338],[-76.22536225362254,-73.78520390908439],[-76.2109621096211,-73.78351533181451],[-75.9661596615966,-73.75143236368675],[-75.95175951759518,-73.7463666318771],[-75.94095940959409,-73.73792374552768],[-75.9229592295923,-73.73116943644814],[-75.89775897758977,-73.72779228190838],[-75.81495814958149,-73.73116943644814],[-75.70695706957069,-73.71259508647944],[-75.67815678156781,-73.71090650920955],[-75.59175591755917,-73.7159722410192],[-75.55935559355594,-73.71428366374931],[-75.53415534155342,-73.70752935466979],[-75.35775357753577,-73.63492053206483],[-75.3109531095311,-73.62478906844554],[-75.26775267752677,-73.62141191390577],[-74.90774907749078,-73.64167484114436],[-74.78174781747818,-73.66869207746248],[-74.73854738547385,-73.68895500470109],[-74.70254702547025,-73.71428366374931],[-74.66294662946629,-73.73454659098792],[-74.61254612546125,-73.73623516825779],[-74.51174511745117,-73.71766081828909],[-74.49014490144901,-73.70752935466979],[-74.45414454144542,-73.68557785016131],[-74.43254432544325,-73.67544638654202],[-74.41094410944109,-73.67206923200226],[-74.34254342543426,-73.67375780927213],[-74.27774277742778,-73.66193776838296],[-74.2561425614256,-73.66531492292272],[-74.10494104941048,-73.7159722410192],[-74.02574025740257,-73.72441512736862],[-73.95013950139501,-73.70921793193968],[-73.86373863738638,-73.6670035001926],[-73.80253802538024,-73.65856061384319],[-73.77013770137701,-73.64842915022389],[-73.73773737737378,-73.63323195479495],[-73.68733687336874,-73.58932894577799],[-73.65853658536585,-73.58257463669847],[-73.6261362613626,-73.59270610031777],[-73.59373593735937,-73.61128045028647],[-73.60093600936008,-73.6281662229853],[-73.590135901359,-73.63998626387448],[-73.57213572135721,-73.64505199568413],[-73.55773557735577,-73.63998626387448],[-73.51453514535145,-73.59439467758764],[-73.49653496534965,-73.58257463669847],[-73.44973449734496,-73.56568886399964],[-73.40653406534065,-73.56231170945988],[-73.30933309333093,-73.5690660185394],[-73.23013230132301,-73.55893455492011],[-73.20853208532085,-73.54880309130081],[-73.15813158131581,-73.48463715504528],[-73.14013140131401,-73.46943995961632],[-73.11853118531185,-73.45761991872715],[-73.0969309693097,-73.44917703237773],[-73.07173071730718,-73.44411130056808],[-72.83052830528305,-73.44411130056808],[-72.64332643326433,-73.46943995961632],[-72.51372513725137,-73.46099707326691],[-72.42732427324273,-73.46943995961632],[-72.3841238412384,-73.46943995961632],[-72.35532355323552,-73.45424276418738],[-72.41652416524165,-73.43566841421867],[-72.24012240122401,-73.38838825066196],[-72.00252002520025,-73.37319105523301],[-71.86211862118621,-73.37825678704266],[-71.75051750517505,-73.35123955072454],[-71.54171541715417,-73.36137101434383],[-71.4229142291423,-73.3546167052643],[-71.06291062910628,-73.2668106872304],[-70.8829088290883,-73.25667922361112],[-70.50850508505084,-73.27525357357982],[-70.45450454504545,-73.26849926450029],[-70.42570425704257,-73.26849926450029],[-70.34650346503464,-73.29045076900876],[-70.31770317703176,-73.29551650081841],[-70.29250292502924,-73.29382792354853],[-69.9180991809918,-73.21784194640381],[-69.62649626496264,-73.19926759643509],[-69.33849338493384,-73.18069324646639],[-68.91728917289173,-73.10301869205179],[-68.84168841688417,-73.11146157840119],[-68.78048780487805,-73.10808442386143],[-68.66888668886689,-73.08782149662284],[-68.64368643686437,-73.07937861027342],[-68.6220862208622,-73.06586999211436],[-68.59688596885968,-73.05742710576494],[-68.53928539285393,-73.05404995122518],[-68.46728467284673,-73.01521267401789],[-68.20448204482044,-72.97130966500093],[-67.94167941679416,-72.92740665598399],[-67.91287912879129,-72.91727519236468],[-67.83727837278373,-72.86999502880798],[-67.79047790477904,-72.85310925610915],[-67.76527765277652,-72.85142067883926],[-67.740077400774,-72.85142067883926],[-67.71487714877148,-72.85986356518868],[-67.68967689676896,-72.87168360607785],[-67.66447664476644,-72.87843791515738],[-67.63567635676357,-72.87337218334774],[-67.61047610476105,-72.86155214245855],[-67.58527585275853,-72.85310925610915],[-67.53487534875349,-72.84466636975974],[-67.50967509675097,-72.83453490614043],[-67.51687516875168,-72.81427197890184],[-67.52767527675276,-72.79063189712349],[-67.53487534875349,-72.76868039261501],[-67.52767527675276,-72.76530323807525],[-67.5060750607506,-72.74166315629688],[-67.50247502475024,-72.73659742448724],[-67.49167491674916,-72.7298431154077],[-67.4520745207452,-72.71464591997876],[-67.37647376473764,-72.66398860188228],[-67.26487264872648,-72.62177417013521],[-67.22167221672217,-72.5930683565472],[-67.22167221672217,-72.58800262473756],[-67.2180721807218,-72.5542310793399],[-67.22167221672217,-72.51877095667237],[-67.2180721807218,-72.50019660670365],[-67.20727207272073,-72.48331083400484],[-67.18927189271892,-72.46135932949636],[-67.14967149671496,-72.42927636136858],[-67.13887138871388,-72.42252205228905],[-67.09567095670957,-72.41239058866975],[-67.08487084870848,-72.40732485686011],[-67.05247052470524,-72.38030762054198],[-66.99846998469984,-72.36173327057328],[-66.97686976869768,-72.3499132296841],[-66.97326973269732,-72.30769879793704],[-66.95886958869588,-72.29925591158762],[-66.94086940869408,-72.29081302523821],[-66.92646926469264,-72.27730440707914],[-66.92646926469264,-72.2621072116502],[-66.930069300693,-72.24859859349114],[-66.930069300693,-72.23677855260196],[-66.91926919269193,-72.2232699344429],[-66.90126901269012,-72.2131384708236],[-66.81126811268112,-72.17092403907654],[-66.78966789667896,-72.15741542091747],[-66.77166771667716,-72.13884107094876],[-66.750067500675,-72.11351241190052],[-66.74646746467464,-72.09156090739205],[-66.76086760867608,-72.06960940288357],[-66.77886778867789,-72.04765789837509],[-66.7860678606786,-72.02570639386661],[-66.77886778867789,-71.98518053938943],[-66.78246782467825,-71.97504907577014],[-66.79326793267933,-71.95985188034119],[-66.80046800468004,-71.95478614853155],[-66.81126811268112,-71.95309757126167],[-66.82566825668256,-71.94803183945201],[-66.840068400684,-71.94465468491225],[-66.84726847268472,-71.94634326218214],[-66.85446854468545,-71.94465468491225],[-66.86166861668616,-71.93114606675319],[-66.86526865268652,-71.91426029405436],[-66.86886868868689,-71.90750598497483],[-66.89046890468904,-71.89737452135553],[-66.91566915669156,-71.890620212276],[-66.96966969669697,-71.88555448046635],[-66.99486994869949,-71.87711159411694],[-67.1820718207182,-71.76735407157457],[-67.16047160471604,-71.76059976249503],[-67.10287102871028,-71.75384545341551],[-67.14247142471424,-71.72176248528774],[-67.42327423274233,-71.62044784909477],[-67.48087480874808,-71.58667630369712],[-67.50247502475024,-71.54108471741029],[-67.52407524075241,-71.50731317201263],[-67.5780757807578,-71.47354162661497],[-67.62127621276213,-71.4330157721378],[-67.61767617676176,-71.37729272223166],[-67.59967599675997,-71.3536526404533],[-67.59247592475924,-71.34352117683402],[-67.56727567275672,-71.3249468268653],[-67.53487534875349,-71.2962410132773],[-67.49887498874989,-71.28104381784836],[-67.49167491674916,-71.27260093149894],[-67.48087480874808,-71.25740373606999],[-67.47367473674737,-71.24896084972058],[-67.46287462874628,-71.24220654064105],[-67.44487444874449,-71.23882938610129],[-67.45927459274593,-71.22194361340246],[-67.4880748807488,-71.21350072705305],[-67.54567545675457,-71.2067464179735],[-67.52407524075241,-71.1983035316241],[-67.45927459274593,-71.18986064527468],[-67.46647466474664,-71.16790914076621],[-67.5060750607506,-71.1307604408288],[-67.51327513275132,-71.1104975135902],[-67.49887498874989,-71.09023458635161],[-67.46647466474664,-71.07841454546242],[-67.40167401674016,-71.06997165911301],[-67.41967419674197,-71.05477446368407],[-67.42687426874268,-71.03620011371535],[-67.41967419674197,-71.01424860920689],[-67.41247412474124,-70.99229710469841],[-67.51327513275132,-70.9534598274911],[-67.52407524075241,-70.94163978660193],[-67.55287552875528,-70.90955681847416],[-67.57087570875709,-70.8960482003151],[-67.6140761407614,-70.88085100488615],[-67.6320763207632,-70.86903096399698],[-67.64287642876428,-70.85552234583791],[-67.66087660876609,-70.82175080044026],[-67.67167671676717,-70.80655360501132],[-67.68967689676896,-70.7879792550426],[-67.70047700477005,-70.77615921415342],[-67.7040770407704,-70.76265059599436],[-67.69327693276932,-70.74914197783531],[-67.67887678876788,-70.73563335967624],[-67.6680766807668,-70.72043616424729],[-67.68247682476824,-70.68835319611952],[-67.67887678876788,-70.67484457796046],[-67.67527675276753,-70.65964738253152],[-67.67527675276753,-70.63938445529293],[-67.68247682476824,-70.62587583713386],[-67.7580775807758,-70.55326701452891],[-67.7940779407794,-70.53131551002043],[-67.8480784807848,-70.51105258278184],[-67.85527855278552,-70.50092111916254],[-67.8840788407884,-70.44350949198653],[-67.90207902079021,-70.39116359662017],[-67.920079200792,-70.3489491648731],[-67.94887948879489,-70.31180046493569],[-67.98127981279812,-70.28816038315732],[-67.98847988479885,-70.28647180588744],[-68.01368013680137,-70.28647180588744],[-68.02448024480245,-70.28309465134768],[-68.04248042480424,-70.26789745591873],[-68.04968049680497,-70.2611431468392],[-68.06768067680676,-70.25607741502955],[-68.19008190081901,-70.23412591052107],[-68.2080820808208,-70.22568302417166],[-68.23688236882369,-70.19022290150413],[-68.25128251282513,-70.17671428334506],[-68.27288272882728,-70.16320566518601],[-68.28728287282873,-70.15138562429682],[-68.30528305283052,-70.12267981070882],[-68.32328323283232,-70.10917119254975],[-68.34488344883448,-70.10072830620035],[-68.42768427684277,-70.08721968804129],[-68.44928449284492,-70.07708822442198],[-68.47088470884708,-70.06526818353281],[-68.48528485284852,-70.05344814264363],[-68.48528485284852,-70.03318521540504],[-68.48168481684816,-70.00616797908691],[-68.47448474484744,-69.98252789730856],[-68.46368463684637,-69.97070785641938],[-68.47808478084781,-69.95213350645066],[-68.48888488884889,-69.93524773375184],[-68.48888488884889,-69.91836196105301],[-68.47088470884708,-69.89809903381442],[-68.45288452884529,-69.889656147465],[-68.43128431284312,-69.88459041565537],[-68.3880838808388,-69.87952468384572],[-68.38088380883808,-69.86939322022641],[-68.37728377283773,-69.84744171571793],[-68.39168391683917,-69.7731443158431],[-68.39168391683917,-69.76132427495392],[-68.36288362883629,-69.71742126593698],[-68.35568355683556,-69.70053549323815],[-68.36288362883629,-69.68364972053932],[-68.37728377283773,-69.66845252511037],[-68.39528395283952,-69.65832106149108],[-68.48168481684816,-69.63805813425249],[-68.49968499684996,-69.62792667063319],[-68.50688506885068,-69.6076637433946],[-68.5140851408514,-69.59922085704518],[-68.57168571685716,-69.58571223888612],[-68.5860858608586,-69.57220362072707],[-68.60408604086041,-69.53843207532941],[-68.6220862208622,-69.52323487990046],[-68.640086400864,-69.51648057082093],[-68.67968679686797,-69.50466052993175],[-68.73008730087301,-69.4810204481534],[-68.74448744487445,-69.47257756180397],[-68.75888758887588,-69.45400321183527],[-68.76968769687697,-69.44556032548586],[-68.82368823688236,-69.43205170732679],[-68.81288812888128,-69.4117887800882],[-68.80568805688057,-69.40334589373879],[-68.65448654486545,-69.38139438923031],[-68.46728467284673,-69.3830829665002],[-68.36648366483665,-69.40334589373879],[-68.3340833408334,-69.40672304827855],[-68.30888308883088,-69.40334589373879],[-68.29448294482944,-69.39996873919902],[-68.29088290882909,-69.3932144301195],[-68.28368283682836,-69.36450861653148],[-68.28728287282873,-69.34931142110254],[-68.29448294482944,-69.34086853475313],[-68.32688326883269,-69.32229418478443],[-68.3340833408334,-69.30371983481571],[-68.31608316083161,-69.28852263938677],[-68.280082800828,-69.28176833030723],[-68.2440824408244,-69.285145484847],[-68.18288182881828,-69.31385129843501],[-68.15048150481505,-69.31891703024465],[-68.11448114481145,-69.31722845297477],[-68.10008100081001,-69.32060560751454],[-68.0820808208082,-69.32904849386395],[-68.06768067680676,-69.33242564840371],[-68.010080100801,-69.32735991659408],[-68.00288002880028,-69.36619719380137],[-67.95247952479524,-69.37464008015078],[-67.85527855278552,-69.3628200392616],[-67.80847808478084,-69.36957434834113],[-67.52767527675276,-69.43374028459668],[-67.49167491674916,-69.45400321183527],[-67.45927459274593,-69.48608617996304],[-67.43767437674376,-69.4995947981221],[-67.41967419674197,-69.50634910720163],[-67.39087390873908,-69.50297195266187],[-67.35487354873548,-69.4810204481534],[-67.30807308073081,-69.46751182999434],[-67.28287282872829,-69.45738036637503],[-67.27567275672756,-69.44387174821597],[-67.29367293672937,-69.43036313005692],[-67.31887318873189,-69.4219202437075],[-67.33327333273333,-69.41010020281831],[-67.34047340473404,-69.39490300738937],[-67.3260732607326,-69.37464008015078],[-67.31527315273152,-69.37126292561102],[-67.30447304473044,-69.36957434834113],[-67.29367293672937,-69.36788577107126],[-67.290072900729,-69.35944288472184],[-67.27927279272792,-69.31047414389525],[-67.26847268472685,-69.28852263938677],[-67.2540725407254,-69.27332544395782],[-67.23247232472325,-69.26319398033853],[-67.21087210872108,-69.25981682579877],[-67.00927009270092,-69.26319398033853],[-66.89406894068941,-69.23279958948063],[-66.8760687606876,-69.22097954859146],[-66.85806858068581,-69.20240519862276],[-66.84366843668437,-69.17538796230463],[-66.87246872468724,-69.16356792141545],[-66.92646926469264,-69.13317353055756],[-66.95526955269553,-69.12304206693827],[-66.93366933669336,-69.1095334487792],[-66.9120691206912,-69.10109056242979],[-66.83286832868329,-69.08927052154061],[-66.78246782467825,-69.07238474884178],[-66.76086760867608,-69.0706961715719],[-66.78966789667896,-69.03523604890437],[-66.84366843668437,-69.03523604890437],[-66.90126901269012,-69.04705608979354],[-66.94446944469445,-69.0504332443333],[-66.91926919269193,-69.03017031709471],[-66.89046890468904,-69.01328454439589],[-66.85806858068581,-69.0031530807766],[-66.82566825668256,-68.99808734896695],[-66.84366843668437,-68.9727586899187],[-66.87966879668797,-68.96431580356929],[-67.27207272072721,-68.9440528763307],[-67.35127351273512,-68.91703564001257],[-67.45567455674556,-68.86637832191609],[-67.47367473674737,-68.85455828102691],[-67.48087480874808,-68.84104966286785],[-67.47727477274772,-68.82416389016902],[-67.46287462874628,-68.81403242654973],[-67.38367383673837,-68.79376949931114],[-67.0560705607056,-68.78532661296173],[-67.0380703807038,-68.78701519023161],[-67.01647016470164,-68.78532661296173],[-66.99486994869949,-68.77519514934242],[-66.95886958869588,-68.7481779130243],[-66.97686976869768,-68.73466929486524],[-66.9840698406984,-68.7194720994363],[-66.98766987669876,-68.70427490400735],[-66.99846998469984,-68.68738913130852],[-67.00567005670057,-68.67219193587958],[-67.0020700207002,-68.62828892686264],[-67.01287012870128,-68.61478030870357],[-67.10287102871028,-68.58100876330592],[-67.14967149671496,-68.55736868152755],[-67.17487174871748,-68.52528571339978],[-67.1640716407164,-68.48982559073225],[-67.11367113671136,-68.47631697257319],[-66.98766987669876,-68.47800554984308],[-66.9660696606966,-68.47293981803342],[-66.95166951669516,-68.46111977714425],[-66.94086940869408,-68.4256596544767],[-66.92286922869228,-68.41890534539718],[-66.87246872468724,-68.41890534539718],[-66.92646926469264,-68.40033099542848],[-66.95526955269553,-68.38682237726941],[-66.95886958869588,-68.3682480273007],[-66.94086940869408,-68.35811656368139],[-66.9120691206912,-68.35811656368139],[-66.86166861668616,-68.3682480273007],[-66.90486904869049,-68.35136225460187],[-67.05967059670596,-68.33785363644282],[-67.12447124471244,-68.34123079098256],[-67.15327153271532,-68.33109932736328],[-67.16047160471604,-68.31759070920421],[-67.15687156871569,-68.30239351377527],[-67.14607146071461,-68.2888848956162],[-67.1280712807128,-68.28213058653668],[-67.10647106471065,-68.27875343199692],[-66.76446764467644,-68.31421355466445],[-66.73206732067321,-68.30239351377527],[-66.72126721267212,-68.29395062742586],[-66.70326703267033,-68.27537627745716],[-66.68886688866888,-68.26862196837762],[-66.6240662406624,-68.24667046386914],[-66.67446674466744,-68.19770172304254],[-66.68886688866888,-68.19094741396302],[-66.75366753667537,-68.18925883669313],[-66.79686796867968,-68.19770172304254],[-66.840068400684,-68.2128989184715],[-66.86166861668616,-68.22471895936067],[-66.87966879668797,-68.22978469117032],[-66.94446944469445,-68.22303038209078],[-66.9480694806948,-68.2010788775823],[-66.98046980469805,-68.17575021853406],[-67.110071100711,-68.11833859135805],[-67.13887138871388,-68.08963277777005],[-67.16047160471604,-68.08287846869052],[-67.21087210872108,-68.07443558234111],[-67.19287192871928,-68.06430411872181],[-67.17847178471784,-68.06261554145192],[-67.13887138871388,-68.06936985053146],[-67.11727117271172,-68.07105842780135],[-67.09927099270992,-68.06430411872181],[-67.06327063270632,-68.04066403694345],[-67.15327153271532,-68.02546684151451],[-67.1820718207182,-68.01702395516509],[-67.18927189271892,-68.00520391427591],[-67.18927189271892,-67.99507245065662],[-67.19287192871928,-67.98831814157708],[-67.24327243272432,-67.97987525522768],[-67.26847268472685,-67.96805521433849],[-67.01647016470164,-67.92584078259142],[-66.87246872468724,-67.91739789624202],[-66.85086850868508,-67.91402074170225],[-66.840068400684,-67.90557785535283],[-66.83286832868329,-67.89206923719377],[-66.83286832868329,-67.8701177326853],[-66.89046890468904,-67.82959187820812],[-66.85806858068581,-67.81439468277917],[-66.82566825668256,-67.80932895096953],[-66.79686796867968,-67.8008860646201],[-66.76806768067681,-67.77555740557187],[-66.8040680406804,-67.77893456011164],[-66.9120691206912,-67.76880309649233],[-67.08127081270813,-67.78062313738153],[-67.03087030870309,-67.74685159198387],[-67.01647016470164,-67.74178586017422],[-66.77886778867789,-67.72152293293563],[-66.73926739267392,-67.72996581928504],[-66.77886778867789,-67.69619427388739],[-66.91566915669156,-67.70632573750667],[-66.9660696606966,-67.69281711934761],[-66.92286922869228,-67.66073415121984],[-66.81846818468185,-67.60501110131372],[-66.76806768067681,-67.5881253286149],[-66.70686706867069,-67.586436751345],[-66.59166591665917,-67.6066996785836],[-66.5340653406534,-67.60838825585348],[-66.54486544865448,-67.58474817407512],[-66.54126541265413,-67.57461671045583],[-66.5340653406534,-67.56786240137629],[-66.51966519665196,-67.55097662867747],[-66.50886508865088,-67.52733654689911],[-66.5160651606516,-67.51382792874006],[-66.5340653406534,-67.50707361966052],[-66.55926559265592,-67.5087621969304],[-66.57366573665736,-67.51551650600993],[-66.59886598865988,-67.53577943324852],[-66.61326613266132,-67.54253374232806],[-66.63126631266313,-67.54422231959794],[-66.73206732067321,-67.52733654689911],[-66.80046800468004,-67.50031931058099],[-66.83646836468364,-67.49356500150145],[-66.86166861668616,-67.49356500150145],[-66.97326973269732,-67.46823634245322],[-66.99126991269912,-67.46823634245322],[-67.47367473674737,-67.54928805140759],[-67.59247592475924,-67.55097662867747],[-67.61047610476105,-67.54759947413771],[-67.56727567275672,-67.52227081508946],[-67.54567545675457,-67.51382792874006],[-67.52047520475205,-67.50707361966052],[-67.55287552875528,-67.49187642423158],[-67.58887588875888,-67.48343353788216],[-67.62127621276213,-67.4800563833424],[-67.66087660876609,-67.48343353788216],[-67.53487534875349,-67.35847881991084],[-67.48447484474845,-67.32808442905295],[-67.54567545675457,-67.31119865635412],[-67.56367563675636,-67.29262430638542],[-67.55647556475564,-67.26391849279742],[-67.53127531275312,-67.24027841101905],[-67.5060750607506,-67.22001548378046],[-67.44487444874449,-67.18962109292258],[-67.48447484474845,-67.18117820657315],[-67.57087570875709,-67.19130967019245],[-67.60687606876068,-67.1778010520334],[-67.59247592475924,-67.16598101114421],[-67.5420754207542,-67.1389637748261],[-67.5060750607506,-67.11194653850796],[-67.47367473674737,-67.0798635703802],[-67.470074700747,-67.06804352949102],[-67.47727477274772,-67.05960064314161],[-67.47727477274772,-67.05453491133196],[-67.46287462874628,-67.04778060225243],[-67.45567455674556,-67.04609202498254],[-67.44487444874449,-67.04778060225243],[-67.43407434074341,-67.0494691795223],[-67.43047430474304,-67.05453491133196],[-67.41247412474124,-67.07310926130066],[-67.39447394473945,-67.08155214765009],[-67.30447304473044,-67.10012649761879],[-67.290072900729,-67.09337218853926],[-67.24327243272432,-67.05791206587172],[-67.23247232472325,-67.04102629317289],[-67.22887228872288,-67.02245194320419],[-67.22527225272252,-66.9920575523463],[-67.2180721807218,-66.9734832023776],[-67.19647196471965,-66.97517177964747],[-67.17487174871748,-66.98868039780653],[-67.16047160471604,-67.00050043869571],[-67.13887138871388,-67.01400905685477],[-67.11727117271172,-67.01738621139454],[-67.09927099270992,-67.010631902315],[-67.0740707407074,-67.00050043869571],[-67.10647106471065,-66.9717946251077],[-67.12087120871209,-66.95490885240888],[-67.11727117271172,-66.93633450244016],[-67.10287102871028,-66.92789161609076],[-67.07767077670776,-66.92282588428111],[-67.04887048870488,-66.92113730701122],[-67.03087030870309,-66.92113730701122],[-66.95166951669516,-66.93971165697994],[-66.91566915669156,-66.95659742967877],[-66.92646926469264,-66.98361466599688],[-66.92646926469264,-66.99036897507642],[-66.90846908469084,-67.03764913863313],[-66.9120691206912,-67.05284633406208],[-66.91926919269193,-67.06804352949102],[-66.94086940869408,-67.09168361126937],[-66.94086940869408,-67.10181507488868],[-66.94086940869408,-67.11870084758749],[-66.930069300693,-67.14740666117551],[-66.92286922869228,-67.1575381247948],[-66.91566915669156,-67.16260385660445],[-66.88686886868868,-67.1676695884141],[-66.93726937269372,-67.20312971108163],[-66.95166951669516,-67.2149497519708],[-66.95886958869588,-67.23858983374917],[-66.96966969669697,-67.25040987463835],[-66.98046980469805,-67.27573853368659],[-66.9480694806948,-67.284181420036],[-66.8760687606876,-67.284181420036],[-66.81486814868148,-67.31119865635412],[-66.7860678606786,-67.31119865635412],[-66.76446764467644,-67.28924715184564],[-66.76446764467644,-67.28080426549624],[-66.76446764467644,-67.26729564733718],[-66.76446764467644,-67.26222991552753],[-66.75726757267573,-67.25040987463835],[-66.72846728467285,-67.23183552466963],[-66.72126721267212,-67.22170406105035],[-66.7140671406714,-67.2065068656214],[-66.7140671406714,-67.1963754020021],[-66.71046710467104,-67.19130967019245],[-66.69246692466925,-67.19299824746234],[-66.64926649266492,-67.22001548378046],[-66.60606606066061,-67.23858983374917],[-66.59526595265952,-67.2453441428287],[-66.56286562865628,-67.27742711095647],[-66.55926559265592,-67.28755857457577],[-66.54126541265413,-67.32808442905295],[-66.5340653406534,-67.33990446994213],[-66.52326523265232,-67.34497020175178],[-66.4980649806498,-67.34665877902167],[-66.4620646206462,-67.33652731540236],[-66.45126451264512,-67.30782150181436],[-66.45486454864549,-67.2149497519708],[-66.45486454864549,-67.19806397927198],[-66.47286472864728,-67.16091527933457],[-66.48366483664836,-67.14740666117551],[-66.51246512465124,-67.12714373393692],[-66.52686526865268,-67.11363511577785],[-66.4440644406444,-67.08492930218985],[-66.46566465664657,-67.07817499311031],[-66.52326523265232,-67.0494691795223],[-66.54486544865448,-67.04440344771265],[-66.59166591665917,-67.04271487044278],[-66.61326613266132,-67.03764913863313],[-66.59886598865988,-67.01232047958489],[-66.58446584465844,-66.99374612961618],[-66.49446494464944,-66.91776015247146],[-66.48366483664836,-66.91607157520157],[-66.47646476464764,-66.91607157520157],[-66.4620646206462,-66.91269442066181],[-66.44046440464405,-66.90087437977263],[-66.41886418864188,-66.88230002980393],[-66.41886418864188,-66.86034852529545],[-66.44046440464405,-66.8451513298665],[-66.5520655206552,-66.81137978446884],[-66.5340653406534,-66.77591966180131],[-66.52686526865268,-66.74552527094342],[-66.5340653406534,-66.71344230281565],[-66.5520655206552,-66.679670757418],[-66.54846548465484,-66.65096494382999],[-66.51246512465124,-66.6307020165914],[-66.29286292862928,-66.58511043030457],[-66.25686256862568,-66.58342185303468],[-66.09126091260912,-66.59186473938409],[-66.07686076860769,-66.59693047119374],[-66.06966069660696,-66.6019962030034],[-66.06246062460625,-66.62057055297211],[-66.05526055260552,-66.62732486205164],[-66.0480604806048,-66.62901343932151],[-66.01926019260192,-66.6307020165914],[-66.00126001260013,-66.63576774840105],[-65.98685986859869,-66.64252205748058],[-65.96165961659617,-66.66278498471917],[-65.94365943659436,-66.67291644833847],[-65.93285932859328,-66.67629360287823],[-65.89685896858968,-66.67629360287823],[-65.83925839258391,-66.68811364376741],[-65.82845828458284,-66.69317937557706],[-65.8140581405814,-66.708376571006],[-65.79965799657997,-66.71513088008554],[-65.78525785257852,-66.71513088008554],[-65.76365763657637,-66.708376571006],[-65.74925749257493,-66.69993368465659],[-65.73845738457385,-66.6898022210373],[-65.7240572405724,-66.68304791195777],[-65.68805688056881,-66.68304791195777],[-65.67365673656737,-66.67629360287823],[-65.64485644856448,-66.65265352109988],[-65.76365763657637,-66.61043908935281],[-65.76725767257672,-66.6019962030034],[-65.75285752857528,-66.59524189392386],[-65.73485734857348,-66.59355331665398],[-65.71685716857168,-66.59693047119374],[-65.70245702457024,-66.59524189392386],[-65.68805688056881,-66.58679900757446],[-65.69165691656916,-66.5817332757648],[-65.72045720457204,-66.56484750306598],[-65.7240572405724,-66.55471603944667],[-65.72045720457204,-66.54627315309726],[-65.7060570605706,-66.52769880312856],[-65.68805688056881,-66.49561583500079],[-65.66645666456664,-66.46184428960314],[-65.65925659256592,-66.45002424871396],[-65.66285662856629,-66.434827053285],[-65.63765637656377,-66.42300701239583],[-65.57645576455764,-66.40949839423676],[-65.55125551255512,-66.39936693061748],[-65.60165601656016,-66.37910400337887],[-65.61245612456125,-66.377415426109],[-65.6340563405634,-66.37910400337887],[-65.64125641256412,-66.377415426109],[-65.65925659256592,-66.36052965341017],[-65.66285662856629,-66.34364388071134],[-65.670056700567,-66.33013526255228],[-65.69165691656916,-66.32000379893299],[-65.73845738457385,-66.3183152216631],[-65.78525785257852,-66.32338095347275],[-65.82845828458284,-66.32169237620286],[-65.87165871658716,-66.29974087169438],[-65.78525785257852,-66.27441221264615],[-65.76365763657637,-66.27103505810638],[-65.74565745657456,-66.27272363537627],[-65.72765727657276,-66.2693464808365],[-65.64125641256412,-66.21531200820026],[-65.6340563405634,-66.20011481277132],[-65.64845648456485,-66.1815404628026],[-65.66285662856629,-66.16972042191342],[-65.7060570605706,-66.14945749467483],[-65.61245612456125,-66.12581741289648],[-65.60885608856088,-66.12075168108683],[-65.60165601656016,-66.10217733111811],[-65.59445594455944,-66.09880017657835],[-65.58365583655836,-66.10048875384823],[-65.5440554405544,-66.12075168108683],[-65.52965529655296,-66.12412883562659],[-65.50085500855008,-66.12075168108683],[-65.48645486454865,-66.1224402583567],[-65.43605436054361,-66.14439176286518],[-65.41445414454144,-66.14776891740495],[-65.32085320853209,-66.14776891740495],[-65.18765187651876,-66.17309757645319],[-65.13725137251372,-66.16972042191342],[-65.09045090450904,-66.14945749467483],[-65.24885248852488,-66.06671720845057],[-65.29925299252992,-66.04983143575176],[-65.32085320853209,-66.03801139486256],[-65.33165331653316,-66.02112562216374],[-65.33525335253353,-66.00086269492516],[-65.3280532805328,-65.98059976768656],[-65.31365313653136,-65.97046830406727],[-65.29565295652957,-65.96371399498773],[-65.25965259652597,-65.9569596859082],[-65.05085050850508,-65.96202541771785],[-65.040050400504,-65.96033684044797],[-65.01485014850148,-65.94513964501903],[-65.00045000450004,-65.94007391320937],[-64.91764917649176,-65.92656529505031],[-64.88524885248852,-65.9282538723202],[-64.8240482404824,-65.94007391320937],[-64.81684816848168,-65.9468282222889],[-64.80964809648096,-65.97046830406727],[-64.79884798847988,-65.98059976768656],[-64.7880478804788,-65.98397692222633],[-64.77364773647736,-65.9873540767661],[-64.76284762847628,-65.99073123130586],[-64.74124741247412,-66.01268273581434],[-64.71244712447124,-66.01774846762397],[-64.70524705247053,-66.03294566305293],[-64.68724687246872,-66.03801139486256],[-64.58284582845828,-66.03294566305293],[-64.5720457204572,-66.02956850851317],[-64.53964539645396,-66.0059284267348],[-64.50724507245071,-65.99073123130586],[-64.49644496444964,-65.98059976768656],[-64.48924489244892,-65.96540257225762],[-64.48924489244892,-65.95020537682868],[-64.49644496444964,-65.94007391320937],[-64.52164521645216,-65.92318814051055],[-64.55764557645576,-65.88941659511289],[-64.55764557645576,-65.88266228603337],[-64.59364593645937,-65.88266228603337],[-64.62964629646297,-65.8792851314936],[-64.6620466204662,-65.86577651333454],[-64.69444694446945,-65.8404478542863],[-64.67284672846728,-65.81343061796818],[-64.67284672846728,-65.7526418362524],[-64.65844658446584,-65.73744464082345],[-64.6260462604626,-65.73913321809334],[-64.56484564845648,-65.76446187714157],[-64.39564395643956,-65.8100534634284],[-64.37764377643776,-65.80498773161875],[-64.37044370443704,-65.79823342253923],[-64.36684366843669,-65.76446187714157],[-64.37044370443704,-65.75770756806205],[-64.3740437404374,-65.74926468171263],[-64.37764377643776,-65.74251037263309],[-64.3740437404374,-65.73575606355357],[-64.33444334443344,-65.71718171358486],[-64.44244442444425,-65.65808150913897],[-64.47844478444784,-65.63106427282084],[-64.30564305643055,-65.63275285009072],[-64.25164251642516,-65.64288431371003],[-64.22644226442264,-65.65639293186908],[-64.20844208442084,-65.6732787045679],[-64.19044190441905,-65.68509874545708],[-64.13284132841328,-65.68003301364743],[-64.07524075240752,-65.6935416318065],[-64.04644046440464,-65.6935416318065],[-64.0680406804068,-65.66990155002814],[-64.1220412204122,-65.64288431371003],[-64.14364143641436,-65.62430996374131],[-64.1220412204122,-65.61417850012202],[-64.11484114841149,-65.61080134558225],[-64.140041400414,-65.58716126380389],[-64.16524165241653,-65.56858691383519],[-64.1940419404194,-65.556766872946],[-64.22644226442264,-65.55338971840624],[-64.08244082440824,-65.51455244119893],[-64.00324003240031,-65.51455244119893],[-63.97443974439744,-65.55507829567613],[-63.97443974439744,-65.57027549110506],[-63.967239672396715,-65.57534122291472],[-63.938439384393845,-65.57871837745448],[-63.88083880838808,-65.59898130469307],[-63.80523805238052,-65.60742419104248],[-63.79443794437944,-65.6057356137726],[-63.790837908379075,-65.59053841834366],[-63.80163801638015,-65.57534122291472],[-63.83043830438304,-65.54832398659659],[-63.79443794437944,-65.53143821389776],[-63.68283682836828,-65.52468390481823],[-63.70083700837007,-65.50442097757964],[-63.75483754837548,-65.49597809123023],[-63.762037620376205,-65.47233800945187],[-63.83043830438304,-65.48415805034105],[-63.82683826838267,-65.4790923185314],[-63.82323823238232,-65.46727227764222],[-63.81963819638196,-65.46220654583257],[-63.92043920439204,-65.4689608549121],[-64.06084060840608,-65.4301235777048],[-64.08964089640897,-65.41323780500598],[-64.06444064440645,-65.40986065046621],[-64.03564035640356,-65.39972918684691],[-64.00684006840068,-65.38453199141797],[-63.98523985239852,-65.36933479598902],[-63.9960399603996,-65.35413760056008],[-64.0140401404014,-65.3423175596709],[-64.050040500405,-65.32712036424195],[-64.1040410404104,-65.27646304614548],[-64.11124111241112,-65.26802015979607],[-64.07884078840787,-65.26970873706594],[-64.06444064440645,-65.26970873706594],[-64.05364053640535,-65.26295442798641],[-64.05724057240572,-65.24100292347794],[-64.08244082440824,-65.19372275992123],[-64.07884078840787,-65.16501694633322],[-64.05724057240572,-65.14475401909462],[-63.9960399603996,-65.1481311736344],[-63.97083970839708,-65.13293397820544],[-63.97083970839708,-65.12955682366568],[-63.97443974439744,-65.12111393731627],[-63.97443974439744,-65.11604820550662],[-63.97083970839708,-65.11267105096685],[-63.963639636396366,-65.10929389642709],[-63.94563945639456,-65.10253958734756],[-63.92043920439204,-65.09578527826802],[-63.913239132391325,-65.09071954645837],[-63.9060390603906,-65.08227666010896],[-63.89523895238952,-65.06201373287037],[-63.888038880388805,-65.05357084652096],[-63.87363873638736,-65.04681653744143],[-63.82683826838267,-65.0299307647426],[-63.80523805238052,-65.02655361020284],[-63.790837908379075,-65.02824218747271],[-63.75843758437584,-65.04175080563178],[-63.740437404374035,-65.04343938290167],[-63.72243722437224,-65.04175080563178],[-63.7080370803708,-65.0400622283619],[-63.690036900368995,-65.0485051147113],[-63.6720367203672,-65.06707946468002],[-63.664836648366474,-65.07214519648967],[-63.6540365403654,-65.07552235102943],[-63.589235892358914,-65.08396523737885],[-63.55683556835568,-65.08227666010896],[-63.535235352353524,-65.0788995055692],[-63.528035280352796,-65.08058808283909],[-63.499234992349926,-65.09240812372826],[-63.452434524345236,-65.09240812372826],[-63.427234272342716,-65.09578527826802],[-63.384033840338404,-65.11098247369696],[-63.358833588335884,-65.11098247369696],[-63.31563315633156,-65.09071954645837],[-63.28683286832867,-65.08227666010896],[-63.26163261632615,-65.08058808283909],[-63.247232472324725,-65.09071954645837],[-63.23643236432363,-65.1177367827765],[-63.225632256322555,-65.1363111327452],[-63.2040320403204,-65.14644259636451],[-63.150031500314995,-65.14306544182475],[-63.10683106831068,-65.16332836906334],[-63.08523085230851,-65.1667055236031],[-63.06003060030599,-65.15826263725369],[-63.01683016830168,-65.13293397820544],[-62.99162991629916,-65.12617966912592],[-63.024030240302395,-65.08565381464874],[-62.998829988299875,-65.07552235102943],[-62.99162991629916,-65.07214519648967],[-62.998829988299875,-65.06876804194991],[-63.01323013230132,-65.0586365783306],[-63.020430204302045,-65.05525942379084],[-63.00243002430024,-65.04343938290167],[-63.0060300603006,-65.03499649655225],[-63.01683016830168,-65.0299307647426],[-63.03123031230312,-65.02824218747271],[-63.049230492304915,-65.02824218747271],[-63.08523085230851,-65.03668507382213],[-63.10323103231032,-65.03668507382213],[-63.13923139231392,-65.02824218747271],[-63.175231752317515,-65.00966783750401],[-63.23283232832328,-64.96576482848705],[-63.20763207632076,-64.94887905578824],[-63.099630996309955,-64.93368186035929],[-63.08883088830888,-64.93030470581952],[-63.0780307803078,-64.92186181947011],[-63.06723067230672,-64.90666462404116],[-63.05643056430564,-64.90497604677128],[-63.03843038430384,-64.90835320131104],[-63.01323013230132,-64.92017324220022],[-62.998829988299875,-64.92355039673998],[-62.98442984429843,-64.92186181947011],[-62.973629736297354,-64.91679608766046],[-62.95922959229591,-64.91510751039058],[-62.944829448294485,-64.91679608766046],[-62.9160291602916,-64.92861612854963],[-62.898028980289794,-64.93030470581952],[-62.869228692286924,-64.92017324220022],[-62.822428224282234,-64.87795881045315],[-62.790027900279,-64.86613876956397],[-62.8260282602826,-64.8543187286748],[-62.84042840428404,-64.84587584232538],[-62.85482854828548,-64.83236722416632],[-62.793627936279364,-64.81210429692773],[-62.73962739627396,-64.82223576054703],[-62.59562595625955,-64.90666462404116],[-62.584825848258475,-64.91004177858093],[-62.56322563225632,-64.91004177858093],[-62.55242552425524,-64.90159889223152],[-62.54162541625416,-64.88977885134234],[-62.52722527225272,-64.88133596499293],[-62.49842498424984,-64.87964738772304],[-62.43722437224372,-64.88133596499293],[-62.408424084240835,-64.87627023318328],[-62.67482674826748,-64.7766441742602],[-62.65322653226532,-64.76313555610113],[-62.63162631626315,-64.75975840156137],[-62.58122581225811,-64.75975840156137],[-62.559625596255955,-64.75300409248183],[-62.51642516425164,-64.73105258797337],[-62.49842498424984,-64.73105258797337],[-62.54162541625416,-64.70234677438536],[-62.556025560255605,-64.68546100168653],[-62.5740257402574,-64.65675518809853],[-62.57042570425703,-64.65000087901899],[-62.56322563225632,-64.64155799266958],[-62.55242552425524,-64.63649226085994],[-62.54162541625416,-64.63649226085994],[-62.52362523625236,-64.64155799266958],[-62.505625056250565,-64.64155799266958],[-62.49122491224912,-64.63818083812981],[-62.47322473224732,-64.63142652905029],[-62.484024840248395,-64.62298364270087],[-62.49482494824947,-64.61622933362133],[-62.509225092250915,-64.61285217908157],[-62.52002520025199,-64.61285217908157],[-62.49482494824947,-64.5993435609225],[-62.46962469624695,-64.59258925184298],[-62.44442444424443,-64.59427782911287],[-62.41562415624156,-64.6010321381924],[-62.42282422824228,-64.60609787000205],[-62.43722437224372,-64.61960648816111],[-62.44442444424443,-64.62467221997076],[-62.39042390423904,-64.66013234263829],[-62.36522365223652,-64.6685752289877],[-62.36522365223652,-64.64493514720934],[-62.34362343623435,-64.64662372447923],[-62.3220232202322,-64.65168945628888],[-62.31122311223112,-64.65675518809853],[-62.304023040230405,-64.66519807444794],[-62.304023040230405,-64.67364096079734],[-62.31122311223112,-64.678706692607],[-62.33642336423364,-64.68714957895641],[-62.354423544235445,-64.70234677438536],[-62.36162361623616,-64.72429827889383],[-62.36882368823687,-64.74962693794207],[-62.14202142021419,-64.78508706060961],[-62.160021600216,-64.76988986518066],[-62.19962199621996,-64.75300409248183],[-62.221222212222116,-64.73780689705289],[-62.196021960219596,-64.73442974251313],[-62.17442174421744,-64.736118319783],[-62.127621276212764,-64.7462497834023],[-62.13482134821348,-64.73105258797337],[-62.13842138421384,-64.71585539254443],[-62.13842138421384,-64.68377242441665],[-62.055620556205554,-64.7175439698143],[-62.044820448204476,-64.71416681527454],[-62.026820268202684,-64.70065819711547],[-62.01602016020159,-64.69559246530582],[-61.98361983619836,-64.69559246530582],[-61.969219692196916,-64.69052673349617],[-61.95481954819547,-64.678706692607],[-61.944019440194396,-64.66688665171782],[-61.92241922419224,-64.63818083812981],[-61.96561965619655,-64.61285217908157],[-61.944019440194396,-64.5993435609225],[-61.93321933219332,-64.58583494276346],[-61.91521915219151,-64.57570347914415],[-61.89001890018899,-64.57401490187428],[-61.87921879218791,-64.57739205641404],[-61.843218432184315,-64.59258925184298],[-61.8360183601836,-64.59258925184298],[-61.79641796417964,-64.58245778822368],[-61.81081810818108,-64.57232632460439],[-61.82881828818287,-64.53517762466697],[-61.843218432184315,-64.51829185196814],[-61.82881828818287,-64.51322612015849],[-61.81441814418143,-64.49634034745966],[-61.80721807218072,-64.4929631929199],[-61.78561785617856,-64.4929631929199],[-61.77841778417783,-64.49634034745966],[-61.77841778417783,-64.50478323380908],[-61.767617676176755,-64.51829185196814],[-61.72081720817208,-64.5621948609851],[-61.71361713617135,-64.5807692109538],[-61.710017100171,-64.59765498365263],[-61.70281702817027,-64.60947502454181],[-61.68481684816848,-64.61791791089122],[-61.67041670416704,-64.62129506543099],[-61.65961659616596,-64.62467221997076],[-61.6560165601656,-64.63311510632016],[-61.6560165601656,-64.64493514720934],[-61.65241652416523,-64.65337803355877],[-61.63801638016379,-64.66013234263829],[-61.60921609216092,-64.66688665171782],[-61.58041580415804,-64.66182091990817],[-61.490414904149034,-64.61454075635146],[-61.56961569615696,-64.58414636549357],[-61.60561605616056,-64.56050628371521],[-61.60561605616056,-64.53180047012721],[-61.57321573215732,-64.5216690065079],[-61.51921519215192,-64.52504616104767],[-61.465214652146514,-64.53517762466697],[-61.43281432814328,-64.54530908828627],[-61.44721447214472,-64.53180047012721],[-61.44721447214472,-64.51153754288862],[-61.44361443614436,-64.48789746111025],[-61.44361443614436,-64.46594595660179],[-61.52641526415263,-64.48452030657049],[-61.55881558815588,-64.47776599749096],[-61.5840158401584,-64.44230587482342],[-61.566015660156594,-64.43724014301378],[-61.540815408154074,-64.42035437031495],[-61.52641526415263,-64.4152886385053],[-61.49761497614976,-64.41191148396553],[-61.486814868148684,-64.40853432942576],[-61.47241472414724,-64.39840286580647],[-61.461614616146164,-64.38320567037752],[-61.461614616146164,-64.37307420675823],[-61.454414544145436,-64.36800847494858],[-61.414814148141474,-64.37138562948834],[-61.39681396813968,-64.36969705221847],[-61.364413644136434,-64.35956558859917],[-61.37161371613716,-64.376451361298],[-61.386013860138604,-64.38489424764741],[-61.4220142201422,-64.39333713399682],[-61.414814148141474,-64.40684575215589],[-61.404014040140396,-64.40853432942576],[-61.386013860138604,-64.405157174886],[-61.3680136801368,-64.405157174886],[-61.35001350013499,-64.41022290669565],[-61.2960129601296,-64.43217441120413],[-61.2960129601296,-64.405157174886],[-61.27081270812708,-64.3950257112667],[-61.14841148411483,-64.39333713399682],[-61.09081090810908,-64.3865828249173],[-61.11241112411123,-64.38151709310765],[-61.12321123211231,-64.37138562948834],[-61.13041130411304,-64.35449985678952],[-61.1340113401134,-64.33254835228105],[-61.1160111601116,-64.33423692955093],[-61.10881108811088,-64.32410546593164],[-61.10521105211052,-64.31228542504246],[-61.09441094410944,-64.30215396142316],[-61.080010800108,-64.2987768068834],[-61.06561065610656,-64.29539965234363],[-61.000810008100075,-64.2987768068834],[-60.96840968409684,-64.29539965234363],[-60.94320943209432,-64.28189103418457],[-60.93240932409324,-64.25149664332667],[-60.9540095400954,-64.24811948878691],[-60.975609756097555,-64.24136517970737],[-60.96840968409684,-64.2211022524688],[-60.95760957609576,-64.21265936611937],[-60.93960939609396,-64.2109707888495],[-60.92160921609215,-64.2092822115796],[-60.96120961209611,-64.15693631621325],[-60.87120871208711,-64.16706777983254],[-60.84240842408424,-64.16369062529277],[-60.84600846008459,-64.15355916167348],[-60.85680856808568,-64.14680485259395],[-60.864008640086396,-64.14342769805418],[-60.874808748087474,-64.14173912078431],[-60.88560885608855,-64.13667338897466],[-60.90360903609036,-64.11809903900594],[-60.91440914409144,-64.10965615265653],[-61.01881018810188,-64.08263891633841],[-60.98640986409863,-64.0640645663697],[-60.925209252092515,-64.05562168002028],[-60.88920889208892,-64.04717879367087],[-60.87840878408784,-64.04717879367087],[-60.86040860408603,-64.0539331027504],[-60.83160831608316,-64.07250745271911],[-60.81720817208172,-64.07588460725887],[-60.799207992079914,-64.07250745271911],[-60.76680766807668,-64.0640645663697],[-60.774007740077394,-64.08432749360828],[-60.74520745207451,-64.07926176179865],[-60.72720727207272,-64.06237598909982],[-60.72000720007199,-64.03873590732145],[-60.73080730807308,-64.01171867100334],[-60.52920529205292,-63.986390011955095],[-60.30600306003059,-63.91546976662002],[-60.2520025200252,-63.92053549842967],[-60.20160201602016,-63.91378118935013],[-60.172801728017276,-63.91546976662002],[-59.996399963999636,-63.95937277563697],[-59.981999819998194,-63.95937277563697],[-59.971199711997116,-63.95768419836709],[-59.956799567995674,-63.95261846655744],[-59.95319953199531,-63.94755273474779],[-59.956799567995674,-63.94079842566826],[-59.956799567995674,-63.93066696204896],[-59.95319953199531,-63.922224075699546],[-59.93879938799388,-63.90702688027061],[-59.931599315993154,-63.89858399392119],[-59.93519935199352,-63.89182968484167],[-59.945999459994596,-63.88338679849225],[-59.945999459994596,-63.876632489412714],[-59.94239942399423,-63.86481244852354],[-59.93519935199352,-63.85636956217412],[-59.920799207992076,-63.85130383036448],[-59.909999099991,-63.84792667582471],[-59.88479884798848,-63.8496152530946],[-59.86319863198632,-63.85805813944401],[-59.845198451984515,-63.859746716713886],[-59.82359823598236,-63.84623809855483],[-59.8379983799838,-63.83104090312588],[-59.84879848798488,-63.819220862236705],[-59.84879848798488,-63.80571224407764],[-59.8379983799838,-63.78713789410894],[-59.82359823598236,-63.77531785321976],[-59.80919809198092,-63.77194069867999],[-59.79119791197911,-63.77362927594987],[-59.77679776797767,-63.782072162299286],[-59.76239762397624,-63.798957934998114],[-59.769597695976955,-63.81246655315718],[-59.7839978399784,-63.82259801677647],[-59.79119791197911,-63.83441805766565],[-59.7839978399784,-63.85299240763436],[-59.769597695976955,-63.859746716713886],[-59.7119971199712,-63.861435293983774],[-59.66159661596616,-63.87325533487295],[-59.60759607596076,-63.87325533487295],[-59.567995679956795,-63.8884525303019],[-59.54999549995499,-63.89182968484167],[-59.5319953199532,-63.8884525303019],[-59.51039510395104,-63.881698221222365],[-59.48879488794887,-63.8783210666826],[-59.467194671946714,-63.886763953032016],[-59.42759427594275,-63.91040403481037],[-59.40239402394023,-63.861435293983774],[-59.41319413194131,-63.85805813944401],[-59.42399423994239,-63.85130383036448],[-59.43479434794348,-63.841172366745184],[-59.441994419944194,-63.83104090312588],[-59.34479344793448,-63.79220362591858],[-59.341193411934114,-63.78544931683905],[-59.33759337593375,-63.77362927594987],[-59.34479344793448,-63.761809235060696],[-59.366393663936634,-63.73310342147269],[-59.369993699937,-63.72297195785339],[-59.35199351993519,-63.70777476242445],[-59.32679326793267,-63.69764329880515],[-59.254792547925476,-63.68244610337621],[-59.229592295922956,-63.680757526106326],[-59.2079920799208,-63.68244610337621],[-59.18639186391863,-63.68920041245573],[-59.13959139591395,-63.71115191696421],[-59.11439114391143,-63.717906226043745],[-59.09639096390964,-63.71621764877386],[-59.01359013590135,-63.67231463975691],[-58.98838988389883,-63.66724890794727],[-58.95958959589595,-63.67062606248703],[-58.93438934389343,-63.66893748521714],[-58.919989199892,-63.65036313524844],[-58.92358923589235,-63.631788785279724],[-58.94158941589416,-63.58619719899289],[-58.94158941589416,-63.56424569448442],[-58.92358923589235,-63.54904849905547],[-58.89838898388983,-63.54060561270606],[-58.5779857798578,-63.496702603689116],[-58.25758257582575,-63.454488171942046],[-58.1639816398164,-63.46293105829146],[-58.14598145981459,-63.45786532648181],[-58.13158131581315,-63.44435670832274],[-58.1279812798128,-63.41565089473474],[-58.14238142381423,-63.41733947200463],[-58.1639816398164,-63.41565089473474],[-58.18198181981819,-63.407208008385325],[-58.185581855818555,-63.392010812956386],[-58.17118171181711,-63.37681361752744],[-58.14598145981459,-63.37850219479732],[-58.12078120781207,-63.392010812956386],[-58.10278102781028,-63.40214227657568],[-58.08838088380884,-63.41058516292509],[-58.07038070380703,-63.41396231746486],[-58.048780487804876,-63.41565089473474],[-58.034380343803434,-63.41396231746486],[-58.023580235802356,-63.407208008385325],[-58.00558005580055,-63.392010812956386],[-57.99117991179911,-63.386945081146735],[-57.96957969579695,-63.38525650387685],[-57.958779587795874,-63.38187934933708],[-57.87957879578795,-63.31433625854178],[-57.86157861578616,-63.305893372192365],[-57.796777967779676,-63.30758194946225],[-57.49077490774907,-63.25185889955612],[-57.411574115741146,-63.224841663237996],[-57.368373683736834,-63.21808735415847],[-57.285572855728546,-63.2147101996187],[-57.105571055710556,-63.241727435936824],[-57.029970299702995,-63.28056471314413],[-57.03717037170371,-63.34641922666955],[-57.02637026370263,-63.349796381209316],[-57.01197011970119,-63.35992784482861],[-57.00117001170011,-63.36161642209849],[-57.01557015570155,-63.37343646298767],[-57.02637026370263,-63.386945081146735],[-57.04797047970479,-63.41565089473474],[-56.96516965169651,-63.39538796749615],[-56.94356943569436,-63.39876512203591],[-56.929169291692915,-63.42071662654439],[-56.94356943569436,-63.4392909765131],[-56.96876968769688,-63.45279959467216],[-56.99036990369903,-63.45955390375169],[-56.979569795697955,-63.471373944640874],[-56.96876968769688,-63.47306252191075],[-56.9579695796958,-63.47475109918064],[-56.94716947169471,-63.47981683099029],[-56.93276932769328,-63.491636871879464],[-56.92556925569255,-63.50176833549876],[-56.91476914769147,-63.510211221848174],[-56.90036900369003,-63.516965530927706],[-56.82476824768247,-63.530474149086764],[-56.79956799567995,-63.54229418997595],[-56.77436774367743,-63.56255711721454],[-56.76716767167672,-63.58282004445313],[-56.77436774367743,-63.60308297169172],[-56.79956799567995,-63.62672305347008],[-56.82116821168211,-63.63854309435926],[-56.84636846368463,-63.6436088261689],[-56.87516875168751,-63.64192024889903],[-56.90036900369003,-63.63516593981949],[-56.94716947169471,-63.61321443531102],[-56.96876968769688,-63.611525858041134],[-57.01917019170192,-63.63347736254961],[-57.09477094770948,-63.652051712518315],[-57.12357123571235,-63.6537402897882],[-57.14517145171452,-63.6436088261689],[-57.16317163171631,-63.62165732166043],[-57.17397173971739,-63.596328662612194],[-57.17037170371704,-63.579442889913366],[-57.14517145171452,-63.56762284902418],[-57.116371163711634,-63.559179962674776],[-57.09477094770948,-63.559179962674776],[-57.105571055710556,-63.54567134451571],[-57.116371163711634,-63.5372284581663],[-57.12717127171271,-63.530474149086764],[-57.141571415714154,-63.52371984000723],[-57.13797137971379,-63.52034268546747],[-57.130771307713076,-63.50852264457829],[-57.12717127171271,-63.50345691276864],[-57.14517145171452,-63.49839118095899],[-57.17757177571775,-63.47643967645052],[-57.20277202772027,-63.47306252191075],[-57.292772927729274,-63.48150540826016],[-57.343173431734314,-63.47306252191075],[-57.393573935739354,-63.454488171942046],[-57.443974439744395,-63.44435670832274],[-57.49077490774907,-63.45955390375169],[-57.45837458374584,-63.491636871879464],[-57.45117451174511,-63.510211221848174],[-57.45837458374584,-63.533851303626534],[-57.386373863738626,-63.54229418997595],[-57.42237422374224,-63.56255711721454],[-57.48357483574836,-63.5659342717543],[-57.68517685176852,-63.552425653595236],[-57.71397713977139,-63.554114230865125],[-57.72837728377283,-63.5659342717543],[-57.73917739177391,-63.58113146718324],[-57.76437764377643,-63.58619719899289],[-57.72477724777248,-63.59801723988207],[-57.60597605976059,-63.60308297169172],[-57.61677616776167,-63.60646012623148],[-57.65637656376563,-63.6250344762002],[-57.67437674376744,-63.63010020800984],[-57.69957699576996,-63.63010020800984],[-57.70677706777067,-63.631788785279724],[-57.71757717577175,-63.636854517089375],[-57.72837728377283,-63.64698598070867],[-57.73557735577356,-63.652051712518315],[-57.749977499775,-63.657117444327966],[-57.76797767977679,-63.6537402897882],[-57.78237782377823,-63.65036313524844],[-57.80037800378004,-63.64698598070867],[-57.84357843578435,-63.64867455797855],[-57.86517865178651,-63.652051712518315],[-57.87957879578795,-63.658806021597854],[-57.8759787597876,-63.66049459886773],[-57.86877868778687,-63.66556033067738],[-57.86517865178651,-63.66724890794727],[-57.86517865178651,-63.66893748521714],[-57.88677886778868,-63.68244610337621],[-57.89397893978939,-63.68413468064609],[-57.90477904779047,-63.68413468064609],[-57.922779227792276,-63.68413468064609],[-57.99117991179911,-63.67062606248703],[-58.034380343803434,-63.674003217026794],[-58.07758077580776,-63.66218317613762],[-58.09918099180992,-63.6638717534075],[-58.11718117181171,-63.674003217026794],[-58.15318153181532,-63.70439760788469],[-58.17478174781748,-63.71621764877386],[-58.29358293582935,-63.75336634871128],[-58.32958329583295,-63.777006430489635],[-58.37998379983799,-63.83104090312588],[-58.40158401584016,-63.842860944015065],[-58.41958419584195,-63.842860944015065],[-58.44118441184412,-63.841172366745184],[-58.45558455584555,-63.842860944015065],[-58.46998469984699,-63.85805813944401],[-58.46638466384664,-63.861435293983774],[-58.45558455584555,-63.86987818033319],[-58.44838448384483,-63.87156675760307],[-58.498784987849874,-63.91040403481037],[-58.61758617586176,-63.944175580208025],[-58.66078660786607,-63.964438507446616],[-58.7039870398704,-63.99483289830451],[-58.73278732787327,-64.03198159824193],[-58.72198721987219,-64.06744172090947],[-58.70758707587075,-64.08770464814805],[-58.714787147871476,-64.09783611176735],[-58.750787507875074,-64.11472188446618],[-58.77238772387723,-64.131607657165],[-58.78318783187831,-64.14680485259395],[-58.80478804788048,-64.18733070707114],[-58.80838808388083,-64.19577359342054],[-58.81198811988119,-64.20590505703984],[-58.81558815588156,-64.21434794338926],[-58.81918819188192,-64.21941367519891],[-58.876788767887675,-64.21772509792902],[-58.89838898388983,-64.21434794338926],[-58.93798937989379,-64.20083932523019],[-59.03519035190351,-64.18901928434101],[-59.053190531905315,-64.19239643888078],[-59.06039060390603,-64.19746217069043],[-59.07119071190712,-64.21434794338926],[-59.0819908199082,-64.21772509792902],[-59.09279092790928,-64.2211022524688],[-59.10719107191072,-64.22785656154832],[-59.1179911799118,-64.23629944789774],[-59.11079110791107,-64.24643091151702],[-59.08919089190891,-64.25656237513633],[-58.76878768787688,-64.28189103418457],[-58.75438754387544,-64.29371107507374],[-58.74718747187471,-64.31566257958222],[-58.76158761587615,-64.33254835228105],[-58.79038790387904,-64.33930266136058],[-58.84798847988479,-64.33930266136058],[-58.87318873188731,-64.34099123863047],[-58.92358923589235,-64.3578770113293],[-58.94878948789487,-64.3578770113293],[-58.93438934389343,-64.37982851583776],[-58.90558905589056,-64.40009144307635],[-58.87318873188731,-64.41360006123541],[-58.81198811988119,-64.41697721577518],[-58.77958779587796,-64.43217441120413],[-58.76158761587615,-64.45919164752225],[-58.765187651876516,-64.49802892472955],[-58.78318783187831,-64.52842331558745],[-58.81558815588156,-64.5419319337465],[-58.89118891188912,-64.5520633973658],[-58.91638916389164,-64.54699766555615],[-58.9559895598956,-64.53180047012721],[-58.9919899198992,-64.51491469742838],[-59.01359013590135,-64.49634034745966],[-58.9919899198992,-64.48283172930061],[-58.98478984789847,-64.4642573793319],[-58.9919899198992,-64.4439944520933],[-59.01359013590135,-64.43048583393424],[-59.03519035190351,-64.43048583393424],[-59.1719917199172,-64.45919164752225],[-59.22239222392224,-64.46088022479213],[-59.27639276392763,-64.45412591571261],[-59.330393303933036,-64.44061729755354],[-59.366393663936634,-64.41191148396553],[-59.416794167941674,-64.33085977501116],[-59.46359463594635,-64.31059684777257],[-59.48879488794887,-64.31228542504246],[-59.517595175951755,-64.3173511568521],[-59.542795427954275,-64.32579404320151],[-59.56439564395643,-64.33930266136058],[-59.60759607596076,-64.37813993856788],[-59.63279632796328,-64.38995997945706],[-59.66159661596616,-64.39164855672695],[-59.65079650796507,-64.40684575215589],[-59.6219962199622,-64.43048583393424],[-59.61119611196112,-64.44737160663307],[-59.61119611196112,-64.46594595660179],[-59.63999639996399,-64.5030946565392],[-59.65079650796507,-64.51998042923802],[-59.62559625596255,-64.51322612015849],[-59.60399603996039,-64.50984896561873],[-59.5859958599586,-64.51491469742838],[-59.56439564395643,-64.52673473831756],[-59.54999549995499,-64.54530908828627],[-59.55719557195572,-64.5621948609851],[-59.57159571595716,-64.57739205641404],[-59.58959589595895,-64.58752352003333],[-59.63639636396364,-64.59427782911287],[-59.67959679596795,-64.58921209730322],[-59.769597695976955,-64.56726059279474],[-59.75879758797588,-64.55544055190556],[-59.75519755197551,-64.5419319337465],[-59.7479974799748,-64.49634034745966],[-59.75519755197551,-64.43555156574389],[-59.769597695976955,-64.42542010212459],[-59.79119791197911,-64.42035437031495],[-59.83079830798307,-64.41697721577518],[-59.91719917199171,-64.39333713399682],[-59.956799567995674,-64.38827140218717],[-60.007200072000714,-64.39840286580647],[-59.98919989199892,-64.42879725666435],[-59.98559985599856,-64.44230587482342],[-59.996399963999636,-64.45581449298248],[-60.01080010800108,-64.46763453387166],[-60.02520025200252,-64.47607742022107],[-60.03960039600396,-64.48114315203073],[-60.183601836018354,-64.51322612015849],[-60.22320223202232,-64.51660327469827],[-60.234002340023395,-64.51998042923802],[-60.24480244802447,-64.53686620193685],[-60.2520025200252,-64.55375197463567],[-60.26280262802628,-64.56557201552485],[-60.28080280802807,-64.5706377473345],[-60.34560345603455,-64.53686620193685],[-60.36360363603636,-64.53180047012721],[-60.42120421204211,-64.52504616104767],[-60.38880388803888,-64.59258925184298],[-60.37440374403744,-64.60778644727193],[-60.36360363603636,-64.61791791089122],[-60.35640356403563,-64.62804937451051],[-60.360003600035995,-64.64324656993946],[-60.37440374403744,-64.64831230174912],[-60.39600396003959,-64.64662372447923],[-60.435604356043555,-64.63818083812981],[-60.45720457204571,-64.6398694153997],[-60.46800468004679,-64.64493514720934],[-60.47880478804788,-64.65506661082864],[-60.49680496804967,-64.66350949717805],[-60.637206372063716,-64.69728104257571],[-60.6660066600666,-64.70910108346489],[-60.7020070200702,-64.73105258797337],[-60.723607236072354,-64.75806982429148],[-60.70560705607056,-64.78170990606984],[-60.73440734407343,-64.81041571965785],[-60.82080820808207,-64.8441872650555],[-60.85680856808568,-64.86276161502421],[-61.0080100801008,-64.98771633299553],[-61.051210512105115,-65.0113564147739],[-61.09801098010979,-65.00797926023412],[-61.14481144811448,-64.99953637388471],[-61.19521195211952,-64.99953637388471],[-61.38241382413824,-65.05357084652096],[-61.389613896138954,-65.05188226925108],[-61.39681396813968,-65.04681653744143],[-61.4220142201422,-65.02148787839319],[-61.429214292142916,-65.01473356931365],[-61.436414364143644,-65.00966783750401],[-61.51921519215192,-64.97927344664612],[-61.540815408154074,-64.97420771483647],[-61.72801728017279,-64.96914198302682],[-61.74961749617496,-64.97589629210636],[-61.75681756817568,-64.99278206480518],[-61.7460174601746,-65.07383377375955],[-61.73881738817387,-65.08734239191861],[-61.73161731617316,-65.09240812372826],[-61.72441724417244,-65.09409670099814],[-61.692016920169195,-65.11267105096685],[-61.6740167401674,-65.11942536004639],[-61.63441634416344,-65.12617966912592],[-61.5840158401584,-65.12449109185603],[-61.56961569615696,-65.13293397820544],[-61.555215552155516,-65.15826263725369],[-61.60921609216092,-65.17008267814286],[-61.62721627216271,-65.17008267814286],[-61.60561605616056,-65.20047706900075],[-61.60561605616056,-65.22411715077911],[-61.62721627216271,-65.24100292347794],[-61.66321663216631,-65.24606865528759],[-61.73521735217352,-65.24100292347794],[-61.80361803618035,-65.24606865528759],[-61.82881828818287,-65.24269150074782],[-61.93321933219332,-65.19372275992123],[-61.9620196201962,-65.19203418265134],[-61.9980199801998,-65.19878849173087],[-62.030420304203034,-65.21398568715982],[-62.055620556205554,-65.22918288258876],[-62.02322023220232,-65.24944580982735],[-62.03762037620376,-65.26126585071653],[-62.1240212402124,-65.2933488188443],[-62.14922149221492,-65.29841455065394],[-62.19962199621996,-65.30516885973348],[-62.18882188821888,-65.33049751878173],[-62.17442174421744,-65.34400613694078],[-62.156421564215634,-65.35076044602032],[-62.030420304203034,-65.37271195052878],[-62.044820448204476,-65.38284341414808],[-62.05922059220592,-65.38959772322761],[-62.07362073620736,-65.39297487776739],[-62.0880208802088,-65.39297487776739],[-62.095220952209516,-65.40310634138667],[-62.09882098820988,-65.42505784589515],[-62.09882098820988,-65.4486979276735],[-62.095220952209516,-65.46220654583257],[-62.06642066420663,-65.47740374126151],[-61.99081990819907,-65.48584662761093],[-61.9620196201962,-65.49428951396034],[-61.951219512195124,-65.50442097757964],[-61.93321933219332,-65.53312679116765],[-61.92241922419224,-65.54156967751706],[-61.88281882818828,-65.54832398659659],[-61.83961839618395,-65.54832398659659],[-61.767617676176755,-65.53143821389776],[-61.73161731617316,-65.52974963662788],[-61.69921699216992,-65.54494683205682],[-61.72441724417244,-65.56183260475565],[-61.74961749617496,-65.57027549110506],[-61.87561875618756,-65.57871837745448],[-61.90441904419043,-65.57702980018459],[-61.93681936819368,-65.56352118202554],[-61.95841958419584,-65.56520975929541],[-62.044820448204476,-65.59053841834366],[-62.06642066420663,-65.59222699561354],[-62.080820808208074,-65.5956041501533],[-62.0880208802088,-65.6057356137726],[-62.08442084420844,-65.6259985410112],[-62.077220772207724,-65.63613000463049],[-62.06642066420663,-65.64119573644014],[-62.05922059220592,-65.64795004551966],[-62.055620556205554,-65.66652439548838],[-62.06642066420663,-65.69185305453662],[-62.0880208802088,-65.71211598177521],[-62.120421204212036,-65.72562459993426],[-62.14922149221492,-65.73575606355357],[-62.19242192421923,-65.74082179536322],[-62.206822068220674,-65.74588752717287],[-62.21762217622175,-65.75433041352228],[-62.24282242822427,-65.77628191803075],[-62.253622536225365,-65.7813476498404],[-62.31482314823148,-65.78641338165005],[-62.340023400234,-65.79485626799946],[-62.36162361623616,-65.81343061796818],[-62.36162361623616,-65.82693923612723],[-62.354423544235445,-65.83875927701641],[-62.340023400234,-65.84889074063571],[-62.33642336423364,-65.85902220425501],[-62.340023400234,-65.87084224514419],[-62.37242372423724,-65.91643383143102],[-62.282422824228235,-65.92149956324067],[-62.26442264422644,-65.9282538723202],[-62.26082260822608,-65.9383853359395],[-62.26802268022679,-65.97215688133714],[-62.26442264422644,-65.98397692222633],[-62.257222572225714,-65.99917411765527],[-62.250022500225,-66.00930558127456],[-62.02322023220232,-66.11230879473742],[-61.91521915219151,-66.132571721976],[-61.86121861218612,-66.132571721976],[-61.81081810818108,-66.12075168108683],[-61.77481774817748,-66.10724306292776],[-61.75321753217531,-66.10217733111811],[-61.73521735217352,-66.11230879473742],[-61.71361713617135,-66.13932603105553],[-61.69561695616956,-66.14608034013506],[-61.59481594815948,-66.16634326737366],[-61.60201602016019,-66.13932603105553],[-61.61281612816127,-66.11230879473742],[-61.64521645216452,-66.0650286311807],[-61.64881648816488,-66.03294566305293],[-61.616416164161635,-66.02112562216374],[-61.57681576815767,-66.02281419943363],[-61.339213392133914,-66.08698013568917],[-61.310413104131044,-66.08698013568917],[-61.31761317613176,-66.06334005391082],[-61.32121321213212,-66.03969997213245],[-61.31761317613176,-66.01774846762397],[-61.29961299612995,-65.99917411765527],[-61.32121321213212,-65.98059976768656],[-61.34641346413464,-65.95527110863833],[-61.353613536135356,-65.93163102685996],[-61.3320133201332,-65.91981098597078],[-61.27441274412743,-65.91305667689124],[-61.24561245612456,-65.91305667689124],[-61.22401224012239,-65.92149956324067],[-61.19881198811987,-65.94176249047926],[-61.1160111601116,-65.98397692222633],[-61.10521105211052,-65.99579696311551],[-61.09081090810908,-66.02281419943363],[-61.080010800108,-66.02956850851317],[-61.06201062010619,-66.03294566305293],[-61.02961029610296,-66.03632281759269],[-61.01521015210152,-66.0346342403228],[-61.01521015210152,-66.01437131308421],[-61.01881018810188,-65.92487671778044],[-61.0080100801008,-65.91305667689124],[-60.98640986409863,-65.91136809962137],[-60.93240932409324,-65.91643383143102],[-60.87120871208711,-65.91136809962137],[-60.5760057600576,-65.94007391320937],[-60.54720547205471,-65.95864826317808],[-60.561605616056156,-65.99748554038538],[-60.60120601206012,-66.03632281759269],[-60.637206372063716,-66.05489716756139],[-60.65880658806587,-66.04983143575176],[-60.68040680406804,-66.04138854940234],[-60.698406984069834,-66.04138854940234],[-60.7020070200702,-66.0650286311807],[-60.698406984069834,-66.09204586749883],[-60.698406984069834,-66.11568594927718],[-60.70920709207091,-66.13088314470612],[-60.73440734407343,-66.12412883562659],[-60.79560795607955,-66.09880017657835],[-60.813608136081356,-66.08529155841929],[-60.82080820808207,-66.07684867206987],[-60.8280082800828,-66.05489716756139],[-60.83160831608316,-66.04814285848187],[-60.838808388083876,-66.0447657039421],[-60.900009000089995,-66.03969997213245],[-60.91080910809107,-66.03969997213245],[-60.9180091800918,-66.046454281212],[-60.92160921609215,-66.05996289937104],[-60.925209252092515,-66.06671720845057],[-60.93600936009359,-66.06840578572046],[-61.00441004410044,-66.07347151753011],[-61.02241022410223,-66.0836029811494],[-61.04041040410404,-66.10724306292776],[-61.02241022410223,-66.132571721976],[-60.97200972009719,-66.15621180375436],[-60.874808748087474,-66.18829477188213],[-60.8820088200882,-66.19842623550143],[-60.90720907209072,-66.22037774000991],[-60.91080910809107,-66.22713204908943],[-60.90360903609036,-66.24570639905815],[-60.90360903609036,-66.25752643994733],[-60.91080910809107,-66.2693464808365],[-60.97200972009719,-66.32506953074264],[-60.99360993609936,-66.34195530344147],[-61.02961029610296,-66.34870961252099],[-61.09081090810908,-66.35208676706075],[-61.11961119611196,-66.3470210352511],[-61.14481144811448,-66.33182383982216],[-61.16641166411664,-66.30480660350403],[-61.16281162811627,-66.28116652172568],[-61.152011520115195,-66.25414928540755],[-61.14481144811448,-66.22206631727978],[-61.15561155611556,-66.20011481277132],[-61.18801188011879,-66.1815404628026],[-61.24921249212491,-66.15958895829412],[-61.285212852128524,-66.15452322648449],[-61.35721357213572,-66.15958895829412],[-61.39321393213932,-66.15621180375436],[-61.41841418414184,-66.14101460832542],[-61.44361443614436,-66.1224402583567],[-61.46881468814688,-66.11399737200729],[-61.4940149401494,-66.12919456743623],[-61.50121501215011,-66.15452322648449],[-61.504815048150476,-66.19336050369178],[-61.50121501215011,-66.23219778089909],[-61.4940149401494,-66.2592150172172],[-61.52281522815228,-66.25077213086779],[-61.57321573215732,-66.22544347181955],[-61.60201602016019,-66.21868916274002],[-61.73161731617316,-66.20011481277132],[-61.76401764017639,-66.20349196731108],[-61.7820178201782,-66.21362343093037],[-61.77841778417783,-66.2305092036292],[-61.75681756817568,-66.25414928540755],[-61.72801728017279,-66.2794779444558],[-61.69561695616956,-66.30142944896427],[-61.68121681216812,-66.31662664439321],[-61.68841688416883,-66.33182383982216],[-61.70281702817027,-66.34364388071134],[-61.710017100171,-66.35377534433064],[-61.70281702817027,-66.3672839624897],[-61.67041670416704,-66.39261262153794],[-61.68481684816848,-66.44326993963442],[-61.69561695616956,-66.45846713506336],[-61.717217172171715,-66.47197575322242],[-61.74961749617496,-66.47704148503207],[-61.78561785617856,-66.47535290776219],[-61.81081810818108,-66.4652214441429],[-61.83241832418324,-66.44326993963442],[-61.84681846818468,-66.41962985785607],[-61.85761857618576,-66.39261262153794],[-61.893618936189355,-66.3284466852824],[-61.90081900819008,-66.32169237620286],[-61.918819188191875,-66.3183152216631],[-61.926019260192604,-66.31493806712334],[-61.951219512195124,-66.2879208308052],[-61.96561965619655,-66.27610078991603],[-61.98361983619836,-66.2693464808365],[-61.9620196201962,-66.2406406672485],[-61.95481954819547,-66.22206631727978],[-61.95481954819547,-66.20855769912072],[-61.969219692196916,-66.19842623550143],[-61.994419944199436,-66.19673765823154],[-62.11322113221132,-66.20686912185084],[-62.145621456214556,-66.20349196731108],[-62.18882188821888,-66.18491761734236],[-62.221222212222116,-66.17478615372306],[-62.257222572225714,-66.17478615372306],[-62.329223292232925,-66.18660619461225],[-62.39402394023939,-66.18491761734236],[-62.41562415624156,-66.18660619461225],[-62.47322473224732,-66.20686912185084],[-62.49482494824947,-66.2119348536605],[-62.667626676266764,-66.22713204908943],[-62.70002700027,-66.23726351270872],[-62.73962739627396,-66.26090359448709],[-62.76482764827648,-66.2896094080751],[-62.761227612276116,-66.31662664439321],[-62.692826928269284,-66.35546392160052],[-62.617226172261724,-66.37910400337887],[-62.55242552425524,-66.41287554877653],[-62.51282512825128,-66.47873006230196],[-62.63162631626315,-66.49223868046101],[-62.68922689226892,-66.50912445315984],[-62.721627216272154,-66.5428959985575],[-62.70362703627036,-66.58004469849492],[-62.642426424264244,-66.59186473938409],[-62.52002520025199,-66.59355331665398],[-62.54882548825488,-66.62563628478175],[-62.556025560255605,-66.64252205748058],[-62.556025560255605,-66.66447356198906],[-62.505625056250565,-66.66109640744929],[-62.484024840248395,-66.65434209836975],[-62.458824588245875,-66.64252205748058],[-62.458824588245875,-66.67122787106858],[-62.4660246602466,-66.6898022210373],[-62.480424804248045,-66.70331083919635],[-62.505625056250565,-66.71175372554578],[-62.534425344253435,-66.7185080346253],[-62.58842588425884,-66.72526234370483],[-62.642426424264244,-66.72526234370483],[-62.6640266402664,-66.7185080346253],[-62.790027900279,-66.66447356198906],[-62.80082800828008,-66.64927636656012],[-62.80082800828008,-66.60875051208292],[-62.80442804428044,-66.59861904846363],[-62.81522815228152,-66.59017616211422],[-62.82962829628296,-66.58679900757446],[-62.84042840428404,-66.5817332757648],[-62.844028440284404,-66.56653608033585],[-62.85122851228512,-66.53783026674785],[-62.862028620286196,-66.51250160769962],[-62.880028800288,-66.4939272577309],[-62.90522905229052,-66.47704148503207],[-63.16443164431644,-66.35377534433064],[-63.17883178831788,-66.33351241709204],[-63.18243182431824,-66.32506953074264],[-63.196831968319685,-66.30649518077392],[-63.2040320403204,-66.29636371715462],[-63.2040320403204,-66.2794779444558],[-63.200432004320035,-66.2693464808365],[-63.200432004320035,-66.26090359448709],[-63.21123211232111,-66.24908355359791],[-63.23283232832328,-66.23895208997861],[-63.2580325803258,-66.24232924451837],[-63.301233012330115,-66.26259217175698],[-63.31923319233192,-66.26596932629674],[-63.330033300333,-66.26259217175698],[-63.34083340833408,-66.2592150172172],[-63.35523355233552,-66.25752643994733],[-63.402034020340196,-66.25752643994733],[-63.420034200342,-66.25414928540755],[-63.43083430834308,-66.25077213086779],[-63.448834488344886,-66.23726351270872],[-63.4560345603456,-66.23219778089909],[-63.47043470434704,-66.2305092036292],[-63.49563495634956,-66.2305092036292],[-63.510035100351004,-66.22882062635932],[-63.52083520835208,-66.22206631727978],[-63.5460354603546,-66.20349196731108],[-63.560435604356044,-66.19842623550143],[-63.574835748357486,-66.19842623550143],[-63.614436144361434,-66.2119348536605],[-63.664836648366474,-66.21362343093037],[-63.812438124381245,-66.18829477188213],[-63.78363783637836,-66.20349196731108],[-63.75483754837548,-66.21531200820026],[-63.787237872378725,-66.23219778089909],[-63.76923769237692,-66.2406406672485],[-63.711637116371165,-66.25077213086779],[-63.75123751237511,-66.26259217175698],[-63.8340383403834,-66.26428074902685],[-63.87363873638736,-66.27272363537627],[-63.837638376383765,-66.29129798534498],[-63.7980379803798,-66.29805229442451],[-63.715237152371515,-66.29974087169438],[-63.72243722437224,-66.30480660350403],[-63.73323733237332,-66.31493806712334],[-63.736837368373685,-66.32000379893299],[-63.639636396363954,-66.33351241709204],[-63.585635856358564,-66.35208676706075],[-63.574835748357486,-66.35884107614028],[-63.57123571235712,-66.37066111702947],[-63.574835748357486,-66.39092404426806],[-63.5820358203582,-66.39430119880782],[-63.90243902439023,-66.38079258064876],[-63.888038880388805,-66.40949839423676],[-63.84483844838448,-66.4246955896657],[-63.762037620376205,-66.434827053285],[-63.85203852038519,-66.44158136236453],[-63.87723877238771,-66.44833567144407],[-63.891638916389155,-66.46015571233325],[-63.90243902439023,-66.47704148503207],[-63.913239132391325,-66.50237014408032],[-63.80523805238052,-66.52938738039843],[-63.82323823238232,-66.54458457582739],[-63.82683826838267,-66.55978177125633],[-63.816038160381595,-66.57497896668526],[-63.7980379803798,-66.58848758484433],[-63.87363873638736,-66.59693047119374],[-63.89523895238952,-66.60368478027328],[-63.92763927639275,-66.60706193481305],[-63.94923949239492,-66.59861904846363],[-63.9960399603996,-66.56653608033585],[-64.02124021240212,-66.55809319398645],[-64.04284042840428,-66.56484750306598],[-64.05724057240572,-66.5817332757648],[-64.07164071640716,-66.6019962030034],[-64.07884078840787,-66.62732486205164],[-64.0860408604086,-66.63239059386129],[-64.11124111241112,-66.63239059386129],[-64.12564125641256,-66.63576774840105],[-64.13644136441364,-66.64252205748058],[-64.13284132841328,-66.65434209836975],[-64.11124111241112,-66.67798218014812],[-64.08964089640897,-66.68811364376741],[-63.98523985239852,-66.69486795284695],[-63.93483934839348,-66.70499941646624],[-63.841238412384115,-66.73877096186389],[-63.75123751237511,-66.78773970269049],[-63.75483754837548,-66.79280543450014],[-63.765637656376555,-66.80462547538932],[-63.76923769237692,-66.80800262992908],[-63.71883718837188,-66.86203710256532],[-63.75483754837548,-66.89749722523287],[-63.83043830438304,-66.91776015247146],[-64.04284042840428,-66.93633450244016],[-64.11484114841149,-66.92789161609076],[-64.1940419404194,-66.88567718434369],[-64.22644226442264,-66.8738571434545],[-64.25524255242551,-66.84852848440627],[-64.27324273242732,-66.84177417532673],[-64.30924309243092,-66.8367084435171],[-64.33444334443344,-66.85190563894604],[-64.34884348843488,-66.88567718434369],[-64.36684366843669,-66.91100584339193],[-64.43524435244352,-66.89918580250276],[-64.51444514445144,-66.9042515343124],[-64.53964539645396,-66.8941200706931],[-64.55044550445504,-66.8738571434545],[-64.55044550445504,-66.86203710256532],[-64.53964539645396,-66.85190563894604],[-64.53244532445324,-66.83164271170745],[-64.52524525245252,-66.75734531183261],[-64.60084600846008,-66.77423108453144],[-64.6080460804608,-66.77254250726155],[-64.61164611646116,-66.76916535272179],[-64.61884618846189,-66.7674767754519],[-64.62244622446224,-66.77254250726155],[-64.64764647646476,-66.80293689811944],[-64.680046800468,-66.82151124808814],[-64.77364773647736,-66.8451513298665],[-64.75564755647557,-66.86710283437498],[-64.7160471604716,-66.9042515343124],[-64.70164701647016,-66.92789161609076],[-64.70164701647016,-66.93971165697994],[-64.70524705247053,-66.97854893418723],[-64.70884708847088,-66.98699182053664],[-64.72684726847268,-66.9920575523463],[-64.76284762847628,-66.99374612961618],[-64.79164791647916,-66.98699182053664],[-64.80964809648096,-66.9717946251077],[-64.82764827648276,-66.95322027513899],[-64.85284852848528,-66.93464592517029],[-64.90324903249032,-66.90931726612204],[-64.9320493204932,-66.9025629570425],[-64.96444964449644,-66.89749722523287],[-64.9140491404914,-66.92451446155098],[-64.89244892448924,-66.9430888115197],[-64.88164881648817,-66.96335173875829],[-64.89244892448924,-66.98361466599688],[-64.91764917649176,-67.00387759323547],[-64.9680496804968,-67.03427198409337],[-64.95364953649536,-67.04271487044278],[-64.92124921249211,-67.05791206587172],[-64.91044910449104,-67.06635495222113],[-64.89964899648996,-67.08155214765009],[-64.88884888848888,-67.09674934307903],[-64.87444874448744,-67.11025796123809],[-64.85284852848528,-67.11194653850796],[-64.83844838448384,-67.1085693839682],[-64.80964809648096,-67.09506076580914],[-64.79164791647916,-67.08999503399949],[-64.77364773647736,-67.08999503399949],[-64.72684726847268,-67.09843792034891],[-64.73044730447305,-67.11701227031762],[-64.72324723247232,-67.12883231120679],[-64.69084690846908,-67.14909523844538],[-64.76644766447664,-67.16260385660445],[-64.85284852848528,-67.16935816568397],[-64.87444874448744,-67.16598101114421],[-64.88884888848888,-67.19130967019245],[-64.950049500495,-67.20144113381176],[-65.06525065250652,-67.20144113381176],[-65.00765007650077,-67.23690125647929],[-64.79164791647916,-67.26222991552753],[-64.74844748447484,-67.30782150181436],[-64.83484834848348,-67.32639585178308],[-64.88164881648817,-67.33146158359273],[-64.92124921249211,-67.32470727451319],[-64.95724957249573,-67.30613292454447],[-64.97524975249752,-67.29937861546495],[-64.99324993249932,-67.29769003819507],[-65.01125011250112,-67.30275577000471],[-65.03645036450364,-67.3230186972433],[-65.05445054450544,-67.32639585178308],[-65.02565025650256,-67.33990446994213],[-65.05445054450544,-67.36016739718073],[-65.09045090450904,-67.3635445517205],[-65.11925119251192,-67.3517245108313],[-65.14445144451444,-67.32808442905295],[-65.15885158851589,-67.3230186972433],[-65.17685176851768,-67.33146158359273],[-65.21645216452164,-67.36016739718073],[-65.22365223652235,-67.3635445517205],[-65.23085230852308,-67.36523312899037],[-65.2380523805238,-67.36692170626026],[-65.24525245252453,-67.37029886080002],[-65.24165241652416,-67.38887321076874],[-65.24525245252453,-67.39393894257839],[-65.28485284852849,-67.40069325165791],[-65.3280532805328,-67.39900467438802],[-65.3640536405364,-67.38380747895908],[-65.38925389253892,-67.35003593356143],[-65.38925389253892,-67.33652731540236],[-65.38565385653857,-67.31964154270354],[-65.3820538205382,-67.3044443472746],[-65.39285392853928,-67.29262430638542],[-65.47565475654756,-67.26391849279742],[-65.46845468454684,-67.27742711095647],[-65.44685446854469,-67.29937861546495],[-65.43965439654396,-67.30613292454447],[-65.44325443254432,-67.32133011997342],[-65.45045450454504,-67.33483873813249],[-65.46485464854648,-67.34665877902167],[-65.47925479254792,-67.3517245108313],[-65.50445504455044,-67.35341308810119],[-65.53685536855369,-67.3432816244819],[-65.56205562055621,-67.32808442905295],[-65.58365583655836,-67.31119865635412],[-65.6160561605616,-67.36861028353013],[-65.57645576455764,-67.38549605622896],[-65.53685536855369,-67.39562751984826],[-65.51885518855188,-67.40744756073744],[-65.51525515255152,-67.44459626067486],[-65.50085500855008,-67.46317061064357],[-65.5260552605526,-67.4699249197231],[-65.57285572855729,-67.47667922880262],[-65.5980559805598,-67.48343353788216],[-65.6160561605616,-67.49525357877134],[-65.61965619656196,-67.50707361966052],[-65.61245612456125,-67.51720508327982],[-65.58725587255873,-67.52395939235934],[-65.58725587255873,-67.55435378321724],[-65.55125551255512,-67.57461671045583],[-65.4540545405454,-67.59994536950407],[-65.43965439654396,-67.60163394677394],[-65.42885428854288,-67.6066996785836],[-65.42885428854288,-67.6168311422029],[-65.42525425254252,-67.62865118309207],[-65.42165421654217,-67.63709406944149],[-65.40365403654036,-67.6455369557909],[-65.33885338853388,-67.65735699668008],[-65.34965349653496,-67.66917703756926],[-65.36045360453605,-67.69619427388739],[-65.36765367653676,-67.70294858296691],[-65.55125551255512,-67.71983435566574],[-65.57645576455764,-67.72827724201515],[-65.59085590855908,-67.75529447833327],[-65.56205562055621,-67.81270610550929],[-65.57645576455764,-67.84478907363706],[-65.60525605256052,-67.85660911452624],[-65.63765637656377,-67.86167484633589],[-65.7060570605706,-67.859986269066],[-65.67365673656737,-67.88869208265402],[-65.56925569255692,-67.91402074170225],[-65.50085500855008,-67.9477922870999],[-65.47925479254792,-67.95116944163968],[-65.42885428854288,-67.95285801890955],[-65.40365403654036,-67.9579237507192],[-65.3280532805328,-67.98325240976745],[-65.3820538205382,-68.01195822335545],[-65.52245522455225,-68.04404119148322],[-65.58365583655836,-68.04404119148322],[-65.6160561605616,-68.04910692329287],[-65.63045630456304,-68.05417265510252],[-65.64845648456485,-68.07612415961098],[-65.66285662856629,-68.08625562323029],[-65.69165691656916,-68.09300993230981],[-65.75285752857528,-68.08625562323029],[-65.78165781657816,-68.0946985095797],[-65.76365763657637,-68.12847005497736],[-65.760057600576,-68.14535582767618],[-65.760057600576,-68.16561875491477],[-65.51525515255152,-68.1419786731364],[-65.5080550805508,-68.14704440494606],[-65.49725497254973,-68.1537987140256],[-65.48645486454865,-68.15886444583523],[-65.4720547205472,-68.15886444583523],[-65.37845378453784,-68.13860151859664],[-65.35325353253532,-68.14029009586653],[-65.2740527405274,-68.17068448672441],[-65.22725227252272,-68.16224160037501],[-65.130051300513,-68.1132728595484],[-65.02565025650256,-68.07443558234111],[-65.01485014850148,-68.0659926959917],[-65.00045000450004,-68.04404119148322],[-64.98964989649896,-68.03728688240369],[-64.93564935649356,-68.02208968697474],[-64.94644946449463,-68.04235261421334],[-64.98964989649896,-68.08963277777005],[-64.95364953649536,-68.09976424138935],[-64.82764827648276,-68.10145281865923],[-64.83124831248313,-68.09300993230981],[-64.83124831248313,-68.07781273688087],[-64.83484834848348,-68.07105842780135],[-64.80964809648096,-68.07612415961098],[-64.79164791647916,-68.0845670459604],[-64.75564755647557,-68.10820712773877],[-64.76644766447664,-68.11665001408818],[-64.770047700477,-68.12509290043758],[-64.770047700477,-68.13522436405688],[-64.76284762847628,-68.14535582767618],[-64.80244802448024,-68.16393017764489],[-65.0040500405004,-68.22471895936067],[-65.04725047250471,-68.2314732684402],[-65.09045090450904,-68.22471895936067],[-65.130051300513,-68.20952176393172],[-65.1480514805148,-68.20783318666184],[-65.1660516605166,-68.21458749574137],[-65.20565205652056,-68.23991615478961],[-65.24885248852488,-68.25680192748844],[-65.27045270452705,-68.25680192748844],[-65.28845288452884,-68.25342477294868],[-65.30285302853028,-68.25342477294868],[-65.31725317253172,-68.26862196837762],[-65.3280532805328,-68.27875343199692],[-65.34965349653496,-68.2888848956162],[-65.39285392853928,-68.29901635923551],[-65.48285482854828,-68.3091478228548],[-65.49365493654936,-68.31759070920421],[-65.49365493654936,-68.33447648190304],[-65.48285482854828,-68.35305083187176],[-65.47565475654756,-68.36655945003082],[-65.43605436054361,-68.38175664545976],[-65.39285392853928,-68.38682237726941],[-65.18045180451804,-68.36318229549104],[-65.11925119251192,-68.36655945003082],[-65.07965079650796,-68.36487087276093],[-65.06165061650616,-68.3682480273007],[-64.97524975249752,-68.407085304508],[-64.99684996849967,-68.42397107720683],[-65.0760507605076,-68.46111977714425],[-65.17685176851768,-68.48644843619249],[-65.20565205652056,-68.50333420889132],[-65.23085230852308,-68.51684282705037],[-65.33885338853388,-68.52528571339978],[-65.3460534605346,-68.5337285997492],[-65.3460534605346,-68.54892579517815],[-65.33885338853388,-68.56412299060709],[-65.3280532805328,-68.5725658769565],[-65.31005310053101,-68.57763160876615],[-65.2560525605256,-68.58438591784568],[-65.26325263252632,-68.61815746324334],[-65.24525245252453,-68.62997750413251],[-65.1840518405184,-68.62660034959275],[-65.1660516605166,-68.62828892686264],[-65.15525155251552,-68.63504323594216],[-65.14445144451444,-68.64348612229158],[-65.12645126451264,-68.65192900864099],[-65.1120511205112,-68.65361758591087],[-65.06165061650616,-68.6502404313711],[-64.81684816848168,-68.68907770857841],[-64.78444784447844,-68.68907770857841],[-64.72684726847268,-68.67556909041934],[-64.67284672846728,-68.6705033586097],[-64.6620466204662,-68.67219193587958],[-64.65124651246512,-68.680634822229],[-64.64404644046441,-68.6992091721977],[-64.63684636846368,-68.71102921308689],[-64.58644586445864,-68.75155506756407],[-64.57564575645756,-68.7583093766436],[-64.52884528845289,-68.77350657207255],[-64.51444514445144,-68.77181799480266],[-64.50364503645037,-68.7684408402629],[-64.4820448204482,-68.76506368572313],[-64.45324453244532,-68.76506368572313],[-64.35964359643596,-68.78363803569184],[-64.36684366843669,-68.7684408402629],[-64.38124381243811,-68.75662079937372],[-64.41364413644136,-68.738046449405],[-64.3740437404374,-68.738046449405],[-64.27324273242732,-68.77857230388219],[-64.0860408604086,-68.82922962197867],[-64.0320403204032,-68.83091819924856],[-64.03924039240393,-68.81065527200997],[-64.05364053640535,-68.79883523112079],[-64.13644136441364,-68.77012941753279],[-64.17964179641795,-68.7481779130243],[-64.13284132841328,-68.7481779130243],[-64.04644046440464,-68.7583093766436],[-63.999639996399964,-68.75493222210383],[-64.07884078840787,-68.71440636762665],[-64.24444244442444,-68.67219193587958],[-64.32724327243272,-68.64179754502169],[-64.28044280442803,-68.63335465867227],[-64.17964179641795,-68.64855185410123],[-64.14724147241472,-68.6316660814024],[-64.1760417604176,-68.61815746324334],[-64.20844208442084,-68.60802599962403],[-64.23724237242372,-68.59620595873486],[-64.25884258842588,-68.57425445422638],[-64.230042300423,-68.57087729968663],[-64.140041400414,-68.58607449511557],[-64.14364143641436,-68.56074583606733],[-64.12924129241291,-68.54554864063837],[-64.07524075240752,-68.53035144520943],[-63.988839888398886,-68.49151416800214],[-63.963639636396366,-68.48813701346236],[-63.9060390603906,-68.48813701346236],[-63.6180361803618,-68.45267689079483],[-63.330033300333,-68.41552819085742],[-62.872828728287274,-68.42059392266705],[-62.85842858428583,-68.43410254082612],[-62.872828728287274,-68.45943119987436],[-62.90522905229052,-68.49657989981178],[-62.923229232292314,-68.50502278616119],[-62.95562955629556,-68.50671136343108],[-62.98082980829808,-68.50164563162143],[-63.121231212312125,-68.45774262260448],[-63.17883178831788,-68.44761115898518],[-63.23643236432363,-68.44592258171531],[-63.2940329403294,-68.4560540453346],[-63.330033300333,-68.47125124076354],[-63.43083430834308,-68.53879433155885],[-63.46683466834668,-68.54723721790826],[-63.664836648366474,-68.54892579517815],[-63.70083700837007,-68.55736868152755],[-63.740437404374035,-68.57087729968663],[-63.762037620376205,-68.58100876330592],[-63.77643776437763,-68.5928288041951],[-63.80883808838088,-68.61984604051321],[-63.82323823238232,-68.64010896775181],[-63.81963819638196,-68.65192900864099],[-63.80523805238052,-68.6620604722603],[-63.780037800378,-68.6705033586097],[-63.7980379803798,-68.67725766768923],[-63.812438124381245,-68.680634822229],[-63.84843848438484,-68.67725766768923],[-63.812438124381245,-68.71778352216641],[-63.36963369633696,-68.77350657207255],[-63.28683286832867,-68.80052380839066],[-63.21123211232111,-68.83936108559797],[-63.276032760327595,-68.85793543556667],[-63.438034380343794,-68.81740958108949],[-63.513635136351354,-68.81403242654973],[-63.488434884348834,-68.83767250832808],[-63.387633876338754,-68.87988694007515],[-63.409234092340924,-68.89846129004385],[-63.463234632346314,-68.9035270218535],[-63.477634776347756,-68.92378994909211],[-63.40563405634056,-68.93560998998129],[-63.44523445234452,-68.94574145360058],[-63.65043650436503,-68.96093864902952],[-63.80883808838088,-68.94236429906081],[-63.83043830438304,-68.94236429906081],[-63.888038880388805,-68.95756149448977],[-63.90243902439023,-68.96769295810905],[-63.89883898838988,-68.982890153538],[-63.88083880838808,-68.99808734896695],[-63.866438664386635,-69.00653023531635],[-63.84843848438484,-69.00990738985612],[-63.80523805238052,-69.00990738985612],[-63.62523625236253,-69.04367893525378],[-63.31923319233192,-69.0504332443333],[-63.30483304833048,-69.05549897614296],[-63.30483304833048,-69.07238474884178],[-63.330033300333,-69.09602483062014],[-63.3660336603366,-69.12135348966838],[-63.434434344343444,-69.1585021896058],[-63.39483394833948,-69.18551942592393],[-63.34443344433444,-69.19565088954322],[-63.240032400324,-69.18889658046369],[-63.21483214832148,-69.17876511684439],[-63.19323193231932,-69.16694507595521],[-63.171631716317165,-69.16187934414556],[-63.14283142831428,-69.17369938503475],[-63.121231212312125,-69.19058515773357],[-63.06003060030599,-69.25306251671923],[-63.06003060030599,-69.26488255760842],[-63.06723067230672,-69.285145484847],[-63.070830708307085,-69.30709698935547],[-63.05643056430564,-69.32904849386395],[-63.01323013230132,-69.35944288472184],[-62.9880298802988,-69.37295150288091],[-62.96282962829628,-69.37970581196043],[-62.797227972279714,-69.34762284383267],[-62.746827468274674,-69.3526885756423],[-62.692826928269284,-69.36788577107126],[-62.65322653226532,-69.38814869830985],[-62.62082620826207,-69.42023166643762],[-62.59562595625955,-69.46751182999434],[-62.559625596255955,-69.49284048904258],[-62.44082440824408,-69.48777475723293],[-62.39762397623976,-69.51479199355104],[-62.39402394023939,-69.53674349805952],[-62.40122401224012,-69.57895792980659],[-62.39402394023939,-69.60428658885483],[-62.38682386823868,-69.62961524790308],[-62.383223832238315,-69.65494390695132],[-62.383223832238315,-69.68027256599956],[-62.39402394023939,-69.70728980231767],[-62.40122401224012,-69.72079842047674],[-62.41922419224191,-69.74106134771533],[-62.42642426424264,-69.75288138860451],[-62.433624336243355,-69.76470142949368],[-62.433624336243355,-69.7731443158431],[-62.43722437224372,-69.7832757794624],[-62.455224552245525,-69.80691586124075],[-62.46242462424624,-69.81535874759017],[-62.46962469624695,-69.8221130566697],[-62.509225092250915,-69.8423759839083],[-62.52002520025199,-69.85081887025771],[-62.530825308253085,-69.86432748841676],[-62.32562325623256,-69.91160765197348],[-62.31482314823148,-69.91836196105301],[-62.29682296822968,-69.94200204283138],[-62.282422824228235,-69.95213350645066],[-62.29682296822968,-69.95551066099043],[-62.307623076230755,-69.96226497006997],[-62.31842318423183,-69.97070785641938],[-62.32562325623256,-69.98252789730856],[-62.29682296822968,-69.99434793819773],[-62.26442264422644,-70.00110224727726],[-62.19962199621996,-70.00110224727726],[-62.170821708217076,-70.00616797908691],[-62.07362073620736,-70.0551367199135],[-62.00882008820088,-70.0753996471521],[-61.98721987219872,-70.09397399712081],[-61.969219692196916,-70.12605696524858],[-61.94761947619476,-70.1446313152173],[-61.88281882818828,-70.18853432423424],[-61.868418684186835,-70.20879725147284],[-61.88281882818828,-70.2324373332512],[-61.918819188191875,-70.2510116832199],[-62.01602016020159,-70.29322611496697],[-62.026820268202684,-70.2915375376971],[-62.052020520205204,-70.26452030137897],[-62.070020700206996,-70.25776599229944],[-62.11322113221132,-70.2510116832199],[-62.181621816218154,-70.24763452868014],[-62.196021960219596,-70.24256879687049],[-62.22482224822248,-70.22568302417166],[-62.23922239222392,-70.21892871509213],[-62.26082260822608,-70.21892871509213],[-62.31842318423183,-70.22399444690178],[-62.3760237602376,-70.21555156055237],[-62.39402394023939,-70.21892871509213],[-62.379623796237965,-70.24088021960061],[-62.36162361623616,-70.25270026048979],[-62.3220232202322,-70.27634034226814],[-62.34722347223472,-70.2915375376971],[-62.408424084240835,-70.29829184677662],[-62.43722437224372,-70.30504615585615],[-62.430024300243005,-70.31855477401521],[-62.41922419224191,-70.32699766036463],[-62.408424084240835,-70.33206339217428],[-62.404824048240485,-70.33712912398393],[-62.404824048240485,-70.35232631941287],[-62.4120241202412,-70.39116359662017],[-62.408424084240835,-70.40467221477923],[-62.379623796237965,-70.41480367839853],[-62.203222032220324,-70.4164922556684],[-62.170821708217076,-70.42155798747805],[-62.14922149221492,-70.436755182907],[-62.13482134821348,-70.46883815103477],[-62.13482134821348,-70.49585538735289],[-62.152821528215284,-70.51780689186137],[-62.18522185221852,-70.53638124183009],[-62.145621456214556,-70.55326701452891],[-62.09162091620915,-70.54820128271926],[-61.93681936819368,-70.49923254189267],[-61.53361533615336,-70.50092111916254],[-61.47241472414724,-70.49247823281313],[-61.44721447214472,-70.49416681008302],[-61.414814148141474,-70.50260969643243],[-61.39321393213932,-70.51780689186137],[-61.353613536135356,-70.56170990087833],[-61.429214292142916,-70.59041571446633],[-61.68121681216812,-70.61912152805434],[-61.64881648816488,-70.63263014621339],[-61.62721627216271,-70.64951591891221],[-61.62361623616236,-70.66977884615082],[-61.6560165601656,-70.69510750519905],[-61.68841688416883,-70.70692754608824],[-61.83961839618395,-70.73732193694612],[-61.88281882818828,-70.73732193694612],[-62.00882008820088,-70.72043616424729],[-62.127621276212764,-70.72381331878707],[-62.11682116821167,-70.73732193694612],[-62.11682116821167,-70.74914197783531],[-62.1240212402124,-70.76096201872448],[-62.13842138421384,-70.77109348234377],[-62.03762037620376,-70.78460210050284],[-62.005220052200514,-70.79304498685225],[-62.01602016020159,-70.80655360501132],[-62.019620196201956,-70.83525941859932],[-62.026820268202684,-70.8470794594885],[-62.04122041220411,-70.85889950037767],[-62.044820448204476,-70.87240811853674],[-62.044820448204476,-70.8859167366958],[-62.0340203402034,-70.90280250939463],[-62.005220052200514,-70.92137685936333],[-61.969219692196916,-70.9247540139031],[-61.90081900819008,-70.91799970482357],[-61.792817928179275,-70.91968828209346],[-61.75681756817568,-70.90955681847416],[-61.7460174601746,-70.90111393212474],[-61.72081720817208,-70.87240811853674],[-61.70281702817027,-70.86227665491744],[-61.68481684816848,-70.85383376856802],[-61.666816668166675,-70.85045661402826],[-61.555215552155516,-70.84201372767885],[-61.303213032130316,-70.85552234583791],[-61.278012780127796,-70.87071954126685],[-61.260012600126004,-70.89435962304522],[-61.26721267212672,-70.93150832298264],[-61.28161281612816,-70.96021413657064],[-61.30681306813068,-70.98891995015865],[-61.335613356133564,-71.00918287739724],[-61.37161371613716,-71.01593718647676],[-61.35001350013499,-71.03451153644548],[-61.335613356133564,-71.03957726825513],[-61.260012600126004,-71.02775722736595],[-61.23121231212312,-71.02775722736595],[-61.177211772117715,-71.03282295917559],[-61.18441184411844,-71.05646304095396],[-61.21681216812168,-71.08348027727207],[-61.20961209612096,-71.1003660499709],[-61.18801188011879,-71.10880893632032],[-61.1160111601116,-71.11387466812997],[-61.01881018810188,-71.13582617263845],[-60.97200972009719,-71.15440052260715],[-60.93600936009359,-71.18141775892528],[-60.925209252092515,-71.22025503613257],[-60.96840968409684,-71.23376365429164],[-61.22401224012239,-71.2185664588627],[-61.278012780127796,-71.22363219067233],[-61.2420124201242,-71.25064942699046],[-61.202412024120235,-71.26078089060977],[-61.11241112411123,-71.26753519968929],[-61.01161011610115,-71.286109549658],[-60.96480964809648,-71.3063724768966],[-60.925209252092515,-71.33845544502437],[-60.98280982809828,-71.36716125861237],[-61.04041040410404,-71.36716125861237],[-61.29241292412924,-71.314815363246],[-61.360813608136084,-71.30974963143636],[-61.41841418414184,-71.32325824959543],[-61.38241382413824,-71.33338971321471],[-61.364413644136434,-71.34014402229424],[-61.335613356133564,-71.36547268134248],[-61.32121321213212,-71.37053841315213],[-61.278012780127796,-71.3739155676919],[-61.13041130411304,-71.41444142216909],[-61.15561155611556,-71.41781857670885],[-61.22401224012239,-71.4414586584872],[-61.335613356133564,-71.46509874026556],[-61.389613896138954,-71.46678731753545],[-61.555215552155516,-71.44652439029686],[-61.540815408154074,-71.50562459474276],[-61.59481594815948,-71.52926467652111],[-61.72441724417244,-71.53264183106087],[-61.70641706417064,-71.58667630369712],[-61.710017100171,-71.59680776731642],[-61.72441724417244,-71.60525065366583],[-61.81441814418143,-71.6272021581743],[-61.8720187201872,-71.63226788998395],[-62.055620556205554,-71.62213642636466],[-62.070020700206996,-71.62551358090442],[-62.095220952209516,-71.63902219906348],[-62.11322113221132,-71.63902219906348],[-62.095220952209516,-71.65928512630208],[-62.08442084420844,-71.66941658992137],[-62.070020700206996,-71.67279374446113],[-61.6740167401674,-71.68123663081055],[-61.59481594815948,-71.69474524896961],[-61.55881558815588,-71.69136809442985],[-61.285212852128524,-71.59343061277664],[-61.27081270812708,-71.58161057188747],[-61.26721267212672,-71.57654484007782],[-61.27081270812708,-71.56979053099829],[-61.27081270812708,-71.56303622191876],[-61.26361263612635,-71.55797049010911],[-61.18081180811808,-71.53264183106087],[-61.15921159211592,-71.53095325379098],[-61.14121141211412,-71.53264183106087],[-61.11961119611196,-71.53939614014041],[-61.11241112411123,-71.54783902648981],[-61.10881108811088,-71.559659067379],[-61.09441094410944,-71.57316768553805],[-61.06201062010619,-71.59005345823688],[-60.98280982809828,-71.60525065366583],[-60.94680946809467,-71.61875927182489],[-60.96120961209611,-71.62213642636466],[-60.97200972009719,-71.6272021581743],[-60.99720997209971,-71.63902219906348],[-60.97920979209792,-71.66097370357195],[-60.9540095400954,-71.6660394353816],[-60.900009000089995,-71.65928512630208],[-60.838808388083876,-71.66266228084184],[-60.77760777607776,-71.67785947627078],[-60.78480784807847,-71.69136809442985],[-60.80280802808028,-71.69981098077926],[-60.83520835208351,-71.71163102166844],[-60.81720817208172,-71.72851679436727],[-60.78480784807847,-71.7437139897962],[-60.77040770407703,-71.76059976249503],[-60.799207992079914,-71.78086268973362],[-60.8280082800828,-71.78930557608304],[-60.86040860408603,-71.78930557608304],[-60.95760957609576,-71.77241980338422],[-61.04761047610475,-71.74033683525644],[-61.06201062010619,-71.73358252617692],[-61.08721087210871,-71.71163102166844],[-61.09801098010979,-71.70825386712868],[-61.16281162811627,-71.71838533074796],[-61.152011520115195,-71.72851679436727],[-61.13761137611375,-71.75384545341551],[-61.13041130411304,-71.7639769170348],[-61.05481054810548,-71.79774846243245],[-61.101611016110155,-71.80619134878187],[-61.08721087210871,-71.81969996694093],[-61.06921069210692,-71.82645427602046],[-61.026010260102595,-71.83152000783011],[-61.06561065610656,-71.84502862598917],[-61.07281072810727,-71.8517829350687],[-61.08361083610836,-71.86698013049765],[-61.09081090810908,-71.87035728503741],[-61.32121321213212,-71.87542301684707],[-61.49761497614976,-71.85516008960846],[-61.77481774817748,-71.86866870776753],[-61.85041850418504,-71.890620212276],[-61.89001890018899,-71.89737452135553],[-62.16722167221671,-71.90919456224472],[-62.44082440824408,-71.91932602586401],[-62.39762397623976,-71.95985188034119],[-62.29682296822968,-71.98686911665932],[-62.11322113221132,-72.0088206211678],[-62.13482134821348,-72.02908354840639],[-62.16362163621636,-72.0375264347558],[-62.22482224822248,-72.05103505291487],[-62.35082350823508,-72.09831521647158],[-62.31122311223112,-72.13208676186923],[-62.253622536225365,-72.135463916409],[-62.13482134821348,-72.11182383463064],[-61.9080190801908,-72.09156090739205],[-61.73161731617316,-72.04934647564498],[-61.6740167401674,-72.04596932110522],[-61.42561425614255,-72.06454367107392],[-61.37521375213751,-72.07805228923299],[-61.285212852128524,-72.1337753391391],[-61.19161191611916,-72.16585830726689],[-61.16641166411664,-72.16923546180665],[-61.14841148411483,-72.15403826637771],[-61.152011520115195,-72.12870960732947],[-61.177211772117715,-72.10675810282099],[-61.19161191611916,-72.0864951755824],[-61.17361173611735,-72.06623224834381],[-61.1160111601116,-72.04934647564498],[-61.05481054810548,-72.04596932110522],[-60.92880928809288,-72.05272363018474],[-60.87120871208711,-72.04596932110522],[-60.75240752407524,-72.0088206211678],[-60.69480694806947,-71.99700058027861],[-60.66960669606695,-72.01050919843767],[-60.65520655206552,-72.04090358929557],[-60.65160651606516,-72.07805228923299],[-60.662406624066236,-72.10675810282099],[-60.687606876068756,-72.12026672098006],[-60.799207992079914,-72.1337753391391],[-60.86760867608676,-72.15066111183793],[-60.93960939609396,-72.15910399818736],[-60.99360993609936,-72.15066111183793],[-61.0080100801008,-72.15403826637771],[-61.07281072810727,-72.19118696631513],[-61.01521015210152,-72.19625269812477],[-60.900009000089995,-72.18612123450548],[-60.84240842408424,-72.18780981177537],[-60.748807488074874,-72.2046955844742],[-60.687606876068756,-72.23171282079231],[-60.66960669606695,-72.2418442844116],[-60.662406624066236,-72.25535290257066],[-60.662406624066236,-72.27223867526949],[-60.66960669606695,-72.28574729342856],[-60.66960669606695,-72.29925591158762],[-60.65520655206552,-72.31276452974669],[-60.673206732067314,-72.32458457063586],[-60.69120691206912,-72.33133887971539],[-60.70560705607056,-72.33133887971539],[-60.77040770407703,-72.31783026155632],[-60.813608136081356,-72.31276452974669],[-60.86040860408603,-72.31783026155632],[-60.99720997209971,-72.35666753876363],[-60.96480964809648,-72.36848757965281],[-60.69120691206912,-72.37524188873235],[-60.65520655206552,-72.38537335235164],[-60.637206372063716,-72.40732485686011],[-60.64080640806408,-72.42927636136858],[-60.68040680406804,-72.44616213406741],[-60.824408244082434,-72.46473648403612],[-61.14121141211412,-72.45460502041682],[-61.465214652146514,-72.40732485686011],[-61.4580145801458,-72.42927636136858],[-61.43281432814328,-72.44278497952764],[-61.37521375213751,-72.4579821749566],[-61.364413644136434,-72.46642506130601],[-61.37161371613716,-72.47486794765541],[-61.389613896138954,-72.47993367946506],[-61.40041400414003,-72.48499941127471],[-61.47241472414724,-72.49850802943378],[-61.436414364143644,-72.52214811121213],[-61.40041400414003,-72.53396815210131],[-61.364413644136434,-72.53396815210131],[-61.32121321213212,-72.52383668848202],[-61.27441274412743,-72.5255252657519],[-61.24921249212491,-72.55591965660979],[-61.21681216812168,-72.63865994283404],[-61.25641256412564,-72.6521685609931],[-61.4220142201422,-72.64541425191356],[-61.39321393213932,-72.6707429109618],[-61.260012600126004,-72.6910058382004],[-61.22401224012239,-72.70789161089922],[-61.20961209612096,-72.72140022905829],[-61.2060120601206,-72.73153169267759],[-61.22041220412204,-72.75348319718606],[-61.21681216812168,-72.76361466080536],[-61.19881198811987,-72.77036896988488],[-61.13761137611375,-72.78387758804395],[-61.11961119611196,-72.78050043350419],[-61.09801098010979,-72.76699181534512],[-61.08361083610836,-72.75179461991618],[-61.05841058410584,-72.71802307451853],[-61.04041040410404,-72.7011373018197],[-61.00441004410044,-72.68594010639076],[-60.864008640086396,-72.68087437458111],[-60.73440734407343,-72.65385713826299],[-60.597605976059754,-72.65047998372322],[-60.55080550805508,-72.65554571553287],[-60.52200522005219,-72.682562951851],[-60.50040500405004,-72.72140022905829],[-60.48960489604896,-72.75686035172583],[-60.49320493204931,-72.79063189712349],[-60.511205112051115,-72.82778059706091],[-60.54360543605435,-72.86155214245855],[-60.57960579605796,-72.89025795604657],[-60.60120601206012,-72.90207799693574],[-60.6660066600666,-72.91558661509481],[-60.65520655206552,-72.9257180787141],[-60.648006480064794,-72.93416096506351],[-60.63360633606335,-72.94091527414304],[-60.622806228062274,-72.94260385141293],[-60.637206372063716,-72.95780104684187],[-60.77040770407703,-73.03547560125648],[-60.78120781207812,-73.05067279668542],[-60.763207632076316,-73.07431287846377],[-60.70920709207091,-73.06418141484448],[-60.60480604806048,-73.02196698309741],[-60.59040590405904,-73.01014694220824],[-60.572405724057234,-72.99326116950941],[-60.55080550805508,-72.97975255135034],[-60.52920529205292,-72.98312970589011],[-60.5040050400504,-72.9949497467793],[-60.42480424804248,-73.01858982855765],[-60.35640356403563,-73.0523613739553],[-60.334803348033475,-73.05573852849507],[-60.27720277202772,-73.04560706487577],[-60.24840248402484,-73.03378702398659],[-60.22680226802268,-73.01521267401789],[-60.2160021600216,-72.9949497467793],[-60.183601836018354,-72.95780104684187],[-60.108001080010794,-72.88856937877668],[-60.082800828008274,-72.87506076061761],[-60.06120061200612,-72.86999502880798],[-60.0360003600036,-72.86830645153809],[-60.01080010800108,-72.87168360607785],[-59.96759967599675,-72.88350364696703],[-59.95319953199531,-72.88856937877668],[-59.94959949599496,-72.8953236878562],[-59.94959949599496,-72.91052088328516],[-59.945999459994596,-72.92234092417434],[-59.94239942399423,-72.93247238779364],[-59.931599315993154,-72.94429242868281],[-59.90279902799027,-72.99326116950941],[-59.91719917199171,-73.02534413763718],[-59.996399963999636,-73.08106718754331],[-60.01440014400144,-73.09964153751201],[-60.02880028800287,-73.12159304202049],[-60.03960039600396,-73.14523312379885],[-60.0360003600036,-73.17056178284709],[-60.02880028800287,-73.18744755554592],[-60.01080010800108,-73.2093990600544],[-59.99279992799927,-73.2279734100231],[-59.97479974799748,-73.2381048736424],[-60.02520025200252,-73.27863072811958],[-60.09360093600935,-73.29889365535817],[-60.29160291602916,-73.32253373713654],[-60.3780037800378,-73.32253373713654],[-60.450004500045,-73.30227080989795],[-60.46800468004679,-73.2279734100231],[-60.49680496804967,-73.21277621459416],[-60.597605976059754,-73.18407040100615],[-60.62640626406264,-73.19589044189533],[-60.637206372063716,-73.22290767821346],[-60.6660066600666,-73.33435377802572],[-60.68400684006839,-73.37150247796313],[-60.7020070200702,-73.39176540520172],[-60.73440734407343,-73.39851971428125],[-60.77040770407703,-73.39851971428125],[-60.80280802808028,-73.39514255974149],[-60.83520835208351,-73.3850110961222],[-60.8280082800828,-73.36305959161372],[-60.82080820808207,-73.34955097345465],[-60.81720817208172,-73.33435377802572],[-60.82080820808207,-73.30902511897747],[-60.87840878408784,-73.24148202818216],[-60.89640896408963,-73.24823633726169],[-60.90360903609036,-73.27018784177017],[-60.91080910809107,-73.29551650081841],[-60.9180091800918,-73.315779428057],[-60.93240932409324,-73.33097662348595],[-60.950409504095035,-73.34279666437513],[-60.96840968409684,-73.34955097345465],[-60.990009900099,-73.35292812799442],[-61.08361083610836,-73.34786239618478],[-61.13041130411304,-73.33773093256548],[-61.16641166411664,-73.31915658259678],[-61.21681216812168,-73.27356499630993],[-61.25641256412564,-73.24485918272192],[-61.26361263612635,-73.22628483275322],[-61.252812528125276,-73.21108763732428],[-61.23121231212312,-73.20264475097486],[-61.28161281612816,-73.19926759643509],[-61.335613356133564,-73.20433332824474],[-61.37161371613716,-73.20433332824474],[-61.39681396813968,-73.19420186462546],[-61.44721447214472,-73.15874174195791],[-61.4580145801458,-73.16380747376756],[-61.54441544415444,-73.17562751465674],[-62.001620016200164,-73.10470726932166],[-62.01602016020159,-73.10470726932166],[-62.026820268202684,-73.11146157840119],[-62.03762037620376,-73.1199044647506],[-62.04842048420484,-73.12834735110002],[-62.06642066420663,-73.1300359283699],[-61.99081990819907,-73.17393893738685],[-61.9620196201962,-73.18407040100615],[-61.64521645216452,-73.25161349180146],[-61.62721627216271,-73.28538503719912],[-61.67041670416704,-73.26849926450029],[-61.767617676176755,-73.24654775999181],[-61.95481954819547,-73.22459625548333],[-62.001620016200164,-73.23135056456287],[-61.818018180181795,-73.26005637815088],[-61.710017100171,-73.30395938716782],[-61.63441634416344,-73.3259108916763],[-61.56961569615696,-73.35292812799442],[-61.540815408154074,-73.39176540520172],[-61.58761587615875,-73.39345398247161],[-61.68841688416883,-73.3748796325029],[-61.88641886418864,-73.36474816888361],[-61.93321933219332,-73.37150247796313],[-61.926019260192604,-73.39514255974149],[-61.918819188191875,-73.40865117790055],[-61.9080190801908,-73.41540548698008],[-61.88281882818828,-73.42047121878973],[-61.81441814418143,-73.42384837332949],[-61.72801728017279,-73.45086560964762],[-61.71361713617135,-73.45930849599704],[-61.71361713617135,-73.47788284596574],[-61.72081720817208,-73.49814577320433],[-61.717217172171715,-73.51672012317304],[-61.68841688416883,-73.53529447314176],[-61.641616416164155,-73.54373735949116],[-61.59481594815948,-73.54373735949116],[-61.56241562415623,-73.53698305041164],[-61.5480154801548,-73.52854016406222],[-61.52281522815228,-73.49814577320433],[-61.50841508415084,-73.48801430958504],[-61.490414904149034,-73.4812600005055],[-61.47241472414724,-73.47788284596574],[-61.45081450814507,-73.47788284596574],[-61.303213032130316,-73.49476861866457],[-61.27441274412743,-73.5116543913634],[-61.25641256412564,-73.52685158679233],[-61.2420124201242,-73.53529447314176],[-61.22401224012239,-73.53867162768152],[-61.16281162811627,-73.52516300952246],[-61.14481144811448,-73.52347443225257],[-61.11961119611196,-73.52347443225257],[-60.799207992079914,-73.57750890488882],[-60.84600846008459,-73.62141191390577],[-60.90360903609036,-73.64674057295402],[-61.02961029610296,-73.67375780927213],[-61.026010260102595,-73.67882354108178],[-61.01161011610115,-73.69402073651072],[-61.0080100801008,-73.70077504559026],[-61.14481144811448,-73.73792374552768],[-60.98640986409863,-73.74805520914697],[-60.93240932409324,-73.73623516825779],[-60.864008640086396,-73.70415220013003],[-60.838808388083876,-73.69908646832037],[-60.78480784807847,-73.69402073651072],[-60.763207632076316,-73.69908646832037],[-60.73440734407343,-73.7159722410192],[-60.77760777607776,-73.74130090006744],[-60.813608136081356,-73.77169529092534],[-60.87840878408784,-73.84261553626041],[-60.88560885608855,-73.8527469998797],[-60.90360903609036,-73.88820712254724],[-60.91080910809107,-73.90002716343642],[-60.96840968409684,-73.94393017245336],[-60.98640986409863,-73.95575021334254],[-61.0080100801008,-73.96250452242208],[-61.02961029610296,-73.96419309969195],[-61.23121231212312,-73.95743879061243],[-61.35001350013499,-73.92704439975454],[-61.360813608136084,-73.92029009067501],[-61.3680136801368,-73.9118472043256],[-61.37161371613716,-73.90002716343642],[-61.37521375213751,-73.88989569981712],[-61.389613896138954,-73.8814528134677],[-61.436414364143644,-73.87300992711829],[-61.540815408154074,-73.89327285435688],[-61.64521645216452,-73.88314139073759],[-61.692016920169195,-73.88651854527735],[-61.78921789217891,-73.90678147251595],[-61.7460174601746,-73.9304215542943],[-61.58041580415804,-73.9692588315016],[-61.64881648816488,-73.99289891327996],[-61.85761857618576,-74.03004761321739],[-61.77481774817748,-74.04186765410657],[-61.490414904149034,-74.01485041778844],[-61.44721447214472,-74.01991614959809],[-61.404014040140396,-74.03342476775715],[-61.378813788137876,-74.05537627226562],[-61.35001350013499,-74.06550773588492],[-61.08361083610836,-74.06381915861503],[-61.05481054810548,-74.07395062223434],[-61.05481054810548,-74.10265643582234],[-61.08721087210871,-74.13642798122],[-61.1340113401134,-74.16344521753811],[-61.2420124201242,-74.20903680382494],[-61.404014040140396,-74.24787408103225],[-61.48321483214832,-74.25462839011178],[-61.479614796147956,-74.24449692649249],[-61.47241472414724,-74.23436546287319],[-61.465214652146514,-74.22929973106355],[-61.454414544145436,-74.2242339992539],[-61.47601476014759,-74.22085684471413],[-61.51201512015119,-74.23098830833342],[-61.530015300152996,-74.23267688560331],[-61.55161551615515,-74.22592257652377],[-61.566015660156594,-74.21241395836472],[-61.56961569615696,-74.19552818566589],[-61.555215552155516,-74.1752652584273],[-61.63801638016379,-74.18201956750683],[-61.66321663216631,-74.19046245385624],[-61.73161731617316,-74.24111977195273],[-61.75681756817568,-74.25125123557201],[-61.81441814418143,-74.25462839011178],[-61.92241922419224,-74.2428083492226],[-61.976419764197644,-74.24449692649249],[-61.951219512195124,-74.25800554465155],[-61.918819188191875,-74.26644843100097],[-61.88641886418864,-74.27826847189014],[-61.868418684186835,-74.30021997639861],[-61.87921879218791,-74.30021997639861],[-61.893618936189355,-74.30697428547815],[-61.90081900819008,-74.30866286274804],[-61.88641886418864,-74.32554863544686],[-61.85761857618576,-74.32892578998663],[-61.64521645216452,-74.29684282185885],[-61.490414904149034,-74.32892578998663],[-61.278012780127796,-74.3306143672565],[-61.06921069210692,-74.30021997639861],[-60.85680856808568,-74.24449692649249],[-60.75240752407524,-74.23605404014307],[-60.69120691206912,-74.23943119468284],[-60.65160651606516,-74.25462839011178],[-60.64080640806408,-74.29346566731908],[-60.68040680406804,-74.32554863544686],[-60.78120781207812,-74.3593201808445],[-60.8820088200882,-74.37789453081322],[-60.89640896408963,-74.38464883989275],[-60.91440914409144,-74.39815745805181],[-60.925209252092515,-74.40153461259158],[-60.93960939609396,-74.40322318986146],[-60.950409504095035,-74.4082889216711],[-60.97920979209792,-74.42179753983017],[-60.95760957609576,-74.42348611710005],[-60.93960939609396,-74.43024042617958],[-60.92160921609215,-74.438683312529],[-60.90720907209072,-74.4488147761483],[-60.97920979209792,-74.49778351697489],[-61.06921069210692,-74.51973502148337],[-61.54441544415444,-74.54337510326172],[-61.59481594815948,-74.5366207941822],[-61.641616416164155,-74.49947209424478],[-61.66321663216631,-74.49778351697489],[-61.68841688416883,-74.50284924878454],[-61.70641706417064,-74.5062264033243],[-62.11322113221132,-74.46401197157724],[-62.206822068220674,-74.43192900344947],[-62.36522365223652,-74.40322318986146],[-62.332823328233275,-74.45894623976758],[-62.278822788227885,-74.49271778516524],[-62.21042210422104,-74.51973502148337],[-62.13842138421384,-74.5653266077702],[-62.11322113221132,-74.57039233957985],[-62.06642066420663,-74.57545807138949],[-62.0340203402034,-74.5839009577389],[-62.00882008820088,-74.59572099862808],[-61.95841958419584,-74.63286969856551],[-61.93681936819368,-74.65482120307398],[-61.92241922419224,-74.65988693488363],[-61.89721897218972,-74.66832982123304],[-61.88641886418864,-74.6733955530427],[-61.87561875618756,-74.68014986212222],[-61.868418684186835,-74.69534705755117],[-61.85761857618576,-74.7021013666307],[-61.84681846818468,-74.70378994390057],[-61.818018180181795,-74.70378994390057],[-61.80001800018,-74.70716709844035],[-61.78921789217891,-74.71223283025],[-61.7820178201782,-74.72236429386929],[-61.792817928179275,-74.7797759210453],[-61.82521825218252,-74.8203017755225],[-61.8720187201872,-74.85069616638037],[-62.131221312213114,-74.95201080257334],[-62.4660246602466,-74.99760238886017],[-62.52722527225272,-74.99760238886017],[-62.5740257402574,-74.97733946162158],[-62.5920259202592,-74.95032222530345],[-62.58842588425884,-74.92499356625521],[-62.58122581225811,-74.89966490720697],[-62.584825848258475,-74.87264767088885],[-62.59922599225992,-74.8490075891105],[-62.610026100260995,-74.8203017755225],[-62.60642606426063,-74.79497311647424],[-62.58842588425884,-74.77302161196577],[-62.610026100260995,-74.76289014834647],[-62.62442624426244,-74.7612015710766],[-62.6640266402664,-74.7612015710766],[-62.68922689226892,-74.75275868472718],[-62.70002700027,-74.73587291202836],[-62.692826928269284,-74.71898713932953],[-62.67482674826748,-74.70378994390057],[-62.70002700027,-74.67846128485235],[-62.736027360273596,-74.67846128485235],[-62.80802808028079,-74.70378994390057],[-62.844028440284404,-74.70885567571023],[-62.88362883628835,-74.70547852117046],[-63.11763117631176,-74.65144404853422],[-63.13923139231392,-74.65144404853422],[-63.150031500314995,-74.65482120307398],[-63.175231752317515,-74.66495266669328],[-63.18603186031859,-74.66832982123304],[-63.247232472324725,-74.66495266669328],[-63.26523265232652,-74.66832982123304],[-63.26523265232652,-74.6733955530427],[-63.2940329403294,-74.7206757165994],[-63.150031500314995,-74.78821880739471],[-63.10683106831068,-74.82199035279237],[-63.070830708307085,-74.8675819390792],[-63.06363063630636,-74.89291059812744],[-63.0780307803078,-74.90810779355638],[-63.10323103231032,-74.91486210263592],[-63.18243182431824,-74.91992783444556],[-63.40563405634056,-74.8979763299371],[-63.52083520835208,-74.8675819390792],[-63.574835748357486,-74.87095909361896],[-63.60723607236072,-74.9165506799058],[-63.585635856358564,-74.92161641171545],[-63.610836108361084,-74.93681360714439],[-63.64323643236432,-74.94356791622393],[-64.02124021240212,-74.97902803889146],[-64.0860408604086,-74.99929096613005],[-64.05364053640535,-75.00773385247946],[-63.9960399603996,-75.00942242974935],[-63.963639636396366,-75.01279958428911],[-63.92043920439204,-75.03137393425783],[-63.89883898838988,-75.03475108879759],[-63.62163621636216,-75.02124247063853],[-63.34443344433444,-75.00773385247946],[-63.27963279632796,-75.01617673882888],[-63.24363243632436,-75.02461962517829],[-63.06723067230672,-75.1208685295616],[-63.0420304203042,-75.14788576587974],[-63.30483304833048,-75.17659157946774],[-63.39123391233912,-75.17490300219785],[-63.47043470434704,-75.16139438403879],[-63.510035100351004,-75.15970580676891],[-63.8340383403834,-75.19178877489668],[-64.1580415804158,-75.22387174302445],[-64.20484204842047,-75.23569178391364],[-64.2480424804248,-75.23738036118351],[-64.27324273242732,-75.24075751572327],[-64.3560435604356,-75.27959479293058],[-64.39924399243992,-75.29141483381976],[-64.42084420844208,-75.30154629743906],[-64.43524435244352,-75.316743492868],[-64.41364413644136,-75.3268749564873],[-64.38844388443884,-75.33025211102706],[-64.37044370443704,-75.33531784283672],[-64.35964359643596,-75.35220361553553],[-64.34884348843488,-75.36402365642472],[-64.33084330843307,-75.3657122336946],[-64.21924219242192,-75.33700642010659],[-64.19764197641976,-75.33531784283672],[-64.11124111241112,-75.35051503826566],[-63.762037620376205,-75.32518637921741],[-63.423634236342366,-75.33869499737648],[-63.08523085230851,-75.35220361553553],[-63.10683106831068,-75.38597516093319],[-63.16083160831607,-75.40961524271155],[-63.62523625236253,-75.50417556982498],[-64.0860408604086,-75.59873589693841],[-64.54684546845468,-75.69329622405183],[-65.01125011250112,-75.78785655116528],[-65.26325263252632,-75.79123370570504],[-65.28845288452884,-75.79629943751469],[-65.35685356853568,-75.83344813745211],[-65.37845378453784,-75.8435796010714],[-65.760057600576,-75.91449984640647],[-66.14166141661416,-75.98542009174155],[-66.21726217262172,-76.01074875078979],[-66.68886688866888,-76.04452029618744],[-67.16047160471604,-76.07998041885497],[-67.6320763207632,-76.11375196425263],[-68.10368103681036,-76.14752350965028],[-68.12888128881288,-76.15427781872982],[-68.14688146881468,-76.166097859619],[-68.10008100081001,-76.18129505504794],[-68.0820808208082,-76.18973794139735],[-68.05328053280532,-76.21000086863594],[-68.03888038880389,-76.21844375498536],[-68.01728017280172,-76.22182090952512],[-67.94887948879489,-76.21675517771548],[-68.33048330483304,-76.24714956857336],[-68.7120871208712,-76.27923253670114],[-69.09369093690937,-76.30962692755902],[-69.47529475294752,-76.3417098956868],[-69.48609486094861,-76.33833274114703],[-69.50049500495004,-76.32988985479761],[-69.51489514895148,-76.32651270025785],[-69.54729547295473,-76.32651270025785],[-69.60489604896048,-76.33664416387715],[-69.71649716497164,-76.36872713200492],[-69.79929799297993,-76.37717001835433],[-69.85329853298532,-76.39405579105316],[-69.87849878498784,-76.39574436832305],[-69.92529925299253,-76.3906786365134],[-70.10170101701017,-76.42445018191106],[-70.15210152101521,-76.44471310914965],[-70.18090180901808,-76.4497788409593],[-70.1341013410134,-76.468353190928],[-70.07290072900729,-76.47341892273765],[-69.85329853298532,-76.45146741822917],[-69.79929799297993,-76.45653315003882],[-69.74529745297453,-76.47004176819789],[-70.05130051300513,-76.49874758178589],[-69.99729997299973,-76.52069908629437],[-69.81729817298172,-76.52238766356425],[-69.85329853298532,-76.53251912718355],[-69.97929979299792,-76.53420770445342],[-70.05850058500585,-76.54771632261249],[-70.09810098100981,-76.56460209531132],[-70.11970119701196,-76.58824217708967],[-70.080100801008,-76.61694799067767],[-69.98649986499865,-76.62370229975721],[-69.8280982809828,-76.61357083613791],[-69.86049860498605,-76.62370229975721],[-69.9648996489965,-76.63214518610663],[-70.02970029700296,-76.64903095880545],[-70.09450094500944,-76.6743596178537],[-69.97929979299792,-76.6625395769645],[-69.94329943299432,-76.66760530877416],[-69.9720997209972,-76.68617965874287],[-70.01530015300153,-76.6929339678224],[-70.3321033210332,-76.67773677239346],[-70.58050580505805,-76.71150831779111],[-70.53010530105301,-76.71995120414053],[-70.3681036810368,-76.71488547233088],[-70.39330393303932,-76.72670551322005],[-70.4221042210422,-76.73008266775982],[-70.50130501305013,-76.73514839956947],[-70.58770587705877,-76.74865701772853],[-70.77490774907749,-76.73345982229958],[-70.78210782107821,-76.73683697683936],[-70.78570785707856,-76.74865701772853],[-70.79290792907929,-76.7520341722683],[-70.96570965709657,-76.73852555410923],[-71.33651336513364,-76.75034559499841],[-71.70731707317073,-76.76216563588758],[-72.05652056520564,-76.72670551322005],[-72.40572405724056,-76.68955681328264],[-72.57132571325712,-76.70475400871157],[-72.8809288092881,-76.67267104058381],[-72.89532895328954,-76.6743596178537],[-72.90252902529025,-76.68111392693322],[-72.90972909729096,-76.69462254509229],[-72.91692916929169,-76.7030654314417],[-72.92772927729277,-76.70644258598146],[-72.94212942129421,-76.70981974052123],[-72.97452974529745,-76.71319689506099],[-73.06093060930608,-76.69124539055252],[-73.50013500135,-76.67267104058381],[-73.93573935739357,-76.65240811334522],[-73.91773917739177,-76.67098246331392],[-73.89973899738997,-76.68111392693322],[-73.79533795337953,-76.68617965874287],[-73.77013770137701,-76.69631112236216],[-73.76653766537665,-76.71826262687064],[-73.98253982539825,-76.69462254509229],[-74.08334083340833,-76.6929339678224],[-74.45774457744577,-76.65071953607533],[-74.83574835748357,-76.60850510432826],[-75.21015210152102,-76.56460209531132],[-75.26055260552606,-76.56460209531132],[-75.27135271352714,-76.59668506343908],[-75.33255332553325,-76.60343937251862],[-75.61335613356133,-76.56122494077155],[-75.66735667356673,-76.56122494077155],[-75.60975609756098,-76.57979929074025],[-75.5989559895599,-76.58824217708967],[-75.59175591755917,-76.60850510432826],[-75.60255602556025,-76.62032514521745],[-75.62415624156242,-76.62876803156686],[-75.67815678156781,-76.6439652269958],[-75.81135811358114,-76.63889949518615],[-75.89415894158941,-76.62032514521745],[-76.05256052560526,-76.56122494077155],[-76.1389613896139,-76.54940489988238],[-76.29736297362973,-76.56797924985108],[-76.37656376563766,-76.56797924985108],[-76.49896498964989,-76.52576481810401],[-76.54216542165422,-76.5173219317546],[-76.58536585365853,-76.52069908629437],[-76.62496624966249,-76.53927343626307],[-76.62856628566286,-76.5460277453426],[-76.62856628566286,-76.55447063169201],[-76.6321663216632,-76.55953636350166],[-76.63936639366393,-76.56460209531132],[-76.7689676896769,-76.57811071347038],[-76.76536765367653,-76.60681652705838],[-76.75096750967509,-76.62876803156686],[-76.72936729367294,-76.65071953607533],[-76.70776707767077,-76.6743596178537],[-76.75096750967509,-76.66929388604404],[-76.92736927369273,-76.60343937251862],[-77.11817118171182,-76.56122494077155],[-77.26577265772657,-76.56291351804143],[-77.31617316173161,-76.55447063169201],[-77.36657366573665,-76.53420770445342],[-77.45657456574565,-76.48017323181718],[-77.44217442174421,-76.497059004516],[-77.38457384573846,-76.54433916807272],[-77.41337413374133,-76.5561592089619],[-77.51057510575106,-76.5561592089619],[-77.49257492574925,-76.57979929074025],[-77.47457474574746,-76.59668506343908],[-77.42417424174242,-76.62707945429698],[-77.49617496174962,-76.61019368159815],[-77.53217532175321,-76.59668506343908],[-77.5609756097561,-76.57642213620049],[-77.59337593375933,-76.54940489988238],[-77.69417694176941,-76.48692754089672],[-77.69777697776978,-76.51563335448472],[-77.6761767617676,-76.53589628172331],[-77.61497614976149,-76.55953636350166],[-77.5069750697507,-76.63045660883674],[-77.52137521375214,-76.63889949518615],[-77.5249752497525,-76.64903095880545],[-77.5249752497525,-76.67604819512357],[-77.53217532175321,-76.68449108147298],[-77.54297542975429,-76.68955681328264],[-77.56817568175681,-76.69799969963205],[-77.5249752497525,-76.73008266775982],[-77.18657186571865,-76.82633157214313],[-77.03897038970389,-76.92595763106621],[-76.98496984969849,-76.94790913557469],[-76.86616866168661,-76.97323779462293],[-76.83736837368373,-76.986746412782],[-76.82296822968229,-77.0053207627507],[-76.83016830168302,-77.02558368998929],[-76.86256862568625,-77.02896084452905],[-76.97056970569706,-77.01038649456035],[-76.98496984969849,-77.01207507183022],[-76.99576995769958,-77.01545222637],[-77.00657006570066,-77.02051795817964],[-77.01017010170101,-77.02727226725918],[-76.99936999369993,-77.03571515360859],[-76.85896858968589,-77.08637247170506],[-76.75096750967509,-77.07961816262554],[-76.72216722167221,-77.08130673989542],[-76.47376473764737,-77.16404702611968],[-76.32256322563225,-77.26367308504275],[-76.2649626496265,-77.28562458955123],[-76.08856088560886,-77.33121617583807],[-75.9229592295923,-77.3362819076477],[-75.87255872558725,-77.34979052580677],[-75.91215912159122,-77.3649877212357],[-75.81855818558185,-77.41395646206232],[-75.78615786157862,-77.42577650295149],[-75.69255692556925,-77.43759654384067],[-75.66735667356673,-77.44603943019008],[-75.5989559895599,-77.48994243920703],[-75.56655566555665,-77.50345105736609],[-75.55935559355594,-77.51020536644563],[-75.54855548555486,-77.52540256187457],[-75.53775537755376,-77.53553402549386],[-75.52695526955269,-77.54059975730351],[-75.45855458554585,-77.55241979819269],[-75.4369543695437,-77.54735406638305],[-75.36495364953649,-77.50007390282633],[-75.30735307353073,-77.4730566665082],[-75.25335253352533,-77.45785947107926],[-75.08055080550805,-77.43759654384067],[-74.60894608946089,-77.4646137801588],[-74.13734137341373,-77.4933195937468],[-73.66573665736657,-77.52033683006492],[-73.19413194131941,-77.54735406638305],[-72.72252722527224,-77.57605987997106],[-72.7981279812798,-77.6013885390193],[-72.77292772927728,-77.619962888988],[-72.75852758527584,-77.63684866168683],[-72.7621276212762,-77.65542301165554],[-72.78012780127801,-77.68075167070378],[-72.80532805328053,-77.69932602067249],[-73.04293042930429,-77.80064065686545],[-73.08973089730897,-77.82934647045346],[-73.10773107731077,-77.84792082042216],[-73.11853118531185,-77.85636370677157],[-73.1329313293133,-77.85974086131134],[-73.15093150931509,-77.85974086131134],[-73.16173161731616,-77.86311801585111],[-73.18693186931868,-77.87662663401017],[-73.2121321213212,-77.88844667489936],[-73.39933399333992,-77.94923545661513],[-73.43173431734317,-77.96949838385372],[-73.44973449734496,-77.97456411566337],[-73.48213482134821,-77.97962984747302],[-73.49653496534965,-77.98638415655255],[-73.43173431734317,-77.99989277471161],[-73.4641346413464,-78.01508997014055],[-73.47853478534785,-78.01846712468031],[-73.50013500135,-78.01846712468031],[-73.50373503735037,-78.01171281560079],[-73.50733507335073,-78.00326992925137],[-73.51813518135181,-77.99820419744172],[-73.54333543335433,-77.99820419744172],[-73.6261362613626,-78.02522143375985],[-73.95013950139501,-78.07756732912621],[-74.27054270542705,-78.12991322449258],[-74.18774187741877,-78.13497895630222],[-74.01854018540185,-78.11302745179376],[-73.93213932139321,-78.11302745179376],[-74.05454054540544,-78.13666753357211],[-74.47214472144721,-78.15186472900105],[-74.89334893348934,-78.16875050169988],[-74.96174961749617,-78.18225911985894],[-74.99774997749977,-78.18394769712883],[-74.99054990549905,-78.18732485166859],[-74.97614976149761,-78.20083346982764],[-74.99414994149942,-78.21940781979636],[-75.01935019350194,-78.22953928341566],[-75.0481504815048,-78.23122786068554],[-75.07335073350733,-78.22616212887588],[-75.08775087750877,-78.21940781979636],[-75.0949509495095,-78.21096493344695],[-75.09855098550985,-78.20252204709753],[-75.10935109351094,-78.19070200620835],[-75.12015120151202,-78.18225911985894],[-75.14895148951489,-78.16706192443],[-75.21735217352173,-78.14511041992152],[-75.71055710557106,-78.10120741090456],[-76.20376203762038,-78.05899297915751],[-76.69696696966969,-78.01508997014055],[-77.19017190171901,-77.97287553839348],[-77.6869768697687,-77.93066110664641],[-77.7589775897759,-77.94585830207537],[-77.78417784177842,-77.94923545661513],[-78.23778237782378,-77.9137753339476],[-78.69138691386914,-77.88000378854994],[-79.1449914499145,-77.8445436658824],[-79.17379173791737,-77.84623224315229],[-79.31419314193141,-77.87662663401017],[-79.42219422194222,-77.87831521128005],[-79.69579695796958,-77.84623224315229],[-79.96579965799657,-77.81246069775463],[-80.02340023400234,-77.8158378522944],[-80.22860228602286,-77.79726350232569],[-80.3870038700387,-77.75167191603884],[-80.57780577805778,-77.72296610245084],[-80.76860768607686,-77.67062020708448],[-80.75060750607506,-77.6891945570532],[-80.71820718207182,-77.70439175248214],[-80.6570065700657,-77.72465467972073],[-80.70380703807038,-77.76349195692804],[-80.76140761407613,-77.79050919324615],[-81.15741157411574,-77.85298655223181],[-81.39861398613986,-77.83272362499322],[-81.66861668616686,-77.84116651134264],[-81.61461614616145,-77.86142943858123],[-81.15021150211501,-77.92390679756689],[-80.68220682206822,-77.98638415655255],[-80.21420214202142,-78.04717293826832],[-79.74619746197462,-78.10965029725398],[-79.28179281792818,-78.17212765623964],[-78.81378813788137,-78.2346050152253],[-78.34578345783457,-78.29539379694108],[-77.88137881378813,-78.35787115592674],[-77.41337413374133,-78.4203485149124],[-77.36657366573665,-78.44736575123052],[-77.36297362973629,-78.50140022386677],[-77.35577355773557,-78.51153168748607],[-77.33417334173342,-78.52504030564512],[-77.33057330573305,-78.53348319199455],[-77.33777337773377,-78.55881185104278],[-77.33777337773377,-78.57063189193197],[-77.33057330573305,-78.58751766463078],[-77.33057330573305,-78.59764912825008],[-77.33417334173342,-78.6060920145995],[-77.34857348573486,-78.6162234782188],[-77.36297362973629,-78.62466636456821],[-77.66177661776618,-78.70571807352258],[-77.70137701377013,-78.72598100076117],[-77.7229772297723,-78.73104673257082],[-77.75537755377553,-78.73611246438047],[-78.17658176581766,-78.75468681434917],[-78.60138601386014,-78.77326116431789],[-79.02619026190261,-78.79183551428659],[-79.44739447394474,-78.8104098642553],[-79.87219872198722,-78.82898421422401],[-80.2970029700297,-78.84755856419272],[-80.71820718207182,-78.771572587048],[-81.13941139411394,-78.69558660990327],[-81.56061560615606,-78.62128921002844],[-81.98181981819818,-78.54530323288373],[-82.4030240302403,-78.47100583300889],[-82.46062460624606,-78.469317255739],[-82.48582485824858,-78.46594010119924],[-82.88542885428853,-78.31396814690979],[-83.28143281432814,-78.16368476989022],[-83.67743677436773,-78.01171281560079],[-83.7350373503735,-77.97962984747302],[-83.76743767437674,-77.96780980658383],[-83.79983799837999,-77.96780980658383],[-83.81063810638106,-77.96949838385372],[-83.8250382503825,-77.97456411566337],[-83.83223832238322,-77.98300700201278],[-83.82863828638285,-77.99651562017185],[-83.81783817838178,-78.01171281560079],[-83.7890378903789,-78.03535289737914],[-83.77823778237781,-78.04717293826832],[-83.74583745837458,-78.10965029725398],[-83.72423724237242,-78.13497895630222],[-83.69543695436954,-78.15524188354081],[-83.6630366303663,-78.16706192443],[-83.63063630636306,-78.17381623350953],[-83.55863558635586,-78.17719338804929],[-83.56943569435694,-78.18394769712883],[-83.59823598235982,-78.20252204709753],[-83.59823598235982,-78.21771924252647],[-83.5910359103591,-78.22616212887588],[-83.37863378633786,-78.29877095148085],[-83.30663306633066,-78.30214810602061],[-83.26343263432634,-78.32072245598933],[-83.21663216632166,-78.33423107414838],[-83.18063180631806,-78.36124831046651],[-83.02223022230221,-78.42879140126182],[-83.0150301503015,-78.43723428761123],[-83.00423004230042,-78.46087436938959],[-82.99342993429934,-78.46594010119924],[-82.94662946629465,-78.47269441027876],[-82.98622986229861,-78.49126876024748],[-83.04743047430473,-78.50477737840653],[-83.1050310503105,-78.50477737840653],[-83.14463144631446,-78.48620302843783],[-83.13743137431373,-78.48282587389807],[-83.1230312303123,-78.47269441027876],[-83.11223112231121,-78.469317255739],[-83.15183151831518,-78.44230001942087],[-83.1950319503195,-78.41697136037263],[-83.23823238232382,-78.39839701040393],[-83.2850328503285,-78.3916427013244],[-83.3750337503375,-78.40515131948345],[-83.41823418234182,-78.40515131948345],[-83.46143461434615,-78.39333127859427],[-83.4470344703447,-78.37982266043521],[-83.4290342903429,-78.3713797740858],[-83.38583385833859,-78.36462546500627],[-83.40743407434074,-78.3511168468472],[-83.4290342903429,-78.34773969230744],[-83.47583475834757,-78.3511168468472],[-83.6810368103681,-78.32747676506885],[-83.70263702637025,-78.33423107414838],[-83.71343713437135,-78.34098538322792],[-83.7350373503735,-78.35449400138698],[-83.73863738637387,-78.36124831046651],[-83.73863738637387,-78.37475692862557],[-83.7350373503735,-78.38657696951475],[-83.72423724237242,-78.39333127859427],[-83.70983709837098,-78.39670843313404],[-83.74583745837458,-78.41865993764252],[-83.79263792637926,-78.42372566945217],[-83.88623886238862,-78.41865993764252],[-83.85743857438574,-78.44398859669076],[-83.80343803438033,-78.50140022386677],[-83.72063720637206,-78.56050042831266],[-83.54063540635406,-78.62973209637785],[-83.43983439834398,-78.69558660990327],[-83.40383403834038,-78.71416095987199],[-83.25263252632526,-78.77326116431789],[-82.91782917829178,-78.8593786050819],[-82.7270272702727,-78.87626437778073],[-82.63342633426333,-78.86444433689155],[-82.58662586625866,-78.86782149143131],[-82.5650256502565,-78.89483872774944],[-82.60822608226081,-78.91172450044826],[-82.60822608226081,-78.93029885041697],[-82.57942579425794,-78.94380746857604],[-82.51822518225183,-78.95562750946522],[-82.47862478624786,-78.9674475503544],[-82.46062460624606,-78.96913612762428],[-82.38862388623886,-78.96913612762428],[-82.06462064620646,-79.01810486845088],[-81.74421744217442,-79.0653850320076],[-81.7190171901719,-79.08058222743654],[-81.70821708217082,-79.09071369105584],[-81.69021690216901,-79.09577942286548],[-81.65061650616506,-79.10084515467513],[-81.45261452614525,-79.16669966820055],[-81.40941409414094,-79.17345397728009],[-81.45261452614525,-79.18865117270903],[-81.40941409414094,-79.20891409994762],[-81.38781387813877,-79.21566840902715],[-81.36621366213662,-79.21566840902715],[-81.30141301413013,-79.19709405905844],[-81.27621276212761,-79.19371690451868],[-81.1070110701107,-79.20384836813797],[-81.22221222212222,-79.23255418172597],[-81.27621276212761,-79.25450568623445],[-81.31941319413194,-79.29840869525141],[-81.30141301413013,-79.32542593156953],[-81.16821168211682,-79.44869207227096],[-81.11781117811178,-79.47064357677944],[-80.80460804608046,-79.52467804941568],[-80.49140491404914,-79.57871252205193],[-80.46980469804697,-79.57533536751217],[-80.43740437404374,-79.56520390389286],[-80.41220412204122,-79.55169528573381],[-80.39420394203941,-79.53480951303499],[-80.3870038700387,-79.50779227671686],[-80.40140401404014,-79.48921792674815],[-80.50580505805058,-79.4453149177312],[-80.5310053100531,-79.43180629957213],[-80.54540545405453,-79.41492052687332],[-80.54540545405453,-79.39296902236484],[-80.53820538205382,-79.32373735429964],[-80.5310053100531,-79.30347442706105],[-80.48780487804878,-79.27308003620317],[-80.43020430204302,-79.25788284077422],[-79.94059940599405,-79.26463714985375],[-79.45459454594545,-79.27139145893328],[-78.96858968589686,-79.2781457680128],[-78.48258482584825,-79.28490007709235],[-77.99297992979929,-79.29334296344176],[-77.5069750697507,-79.30009727252128],[-77.0209702097021,-79.30685158160082],[-76.53136531365313,-79.31360589068035],[-76.32616326163262,-79.37777182693588],[-76.2181621816218,-79.39128044509495],[-76.17856178561786,-79.40141190871425],[-76.13176131761317,-79.42336341322272],[-76.11376113761138,-79.4250519904926],[-76.06696066960669,-79.43518345411191],[-76.03456034560345,-79.46388926769991],[-76.00936009360093,-79.49597223582768],[-75.96975969759697,-79.52298947214581],[-75.95535955359553,-79.52130089487592],[-75.93735937359374,-79.51792374033616],[-75.9229592295923,-79.51961231760603],[-75.9229592295923,-79.54156382211451],[-75.93735937359374,-79.56858105843264],[-75.96255962559626,-79.58884398567123],[-76.0129601296013,-79.62261553106889],[-76.03456034560345,-79.64794419011713],[-76.07416074160741,-79.70704439456301],[-76.09936099360993,-79.73406163088114],[-76.14976149761497,-79.76952175354867],[-76.26136261362613,-79.80667045348609],[-76.41976419764197,-79.87927927609105],[-76.6321663216632,-79.93837948053695],[-77.02457024570245,-79.97721675774424],[-77.42057420574206,-80.01436545768166],[-77.87417874178742,-80.00761114860214],[-78.32778327783278,-80.00085683952261],[-78.78138781387814,-79.99579110771296],[-79.2349923499235,-79.98903679863342],[-79.68859688596886,-79.9822824895539],[-79.64539645396454,-80.0211197667612],[-79.22059220592206,-80.06502277577815],[-78.79578795787957,-80.10723720752522],[-78.37098370983709,-80.15114021654216],[-78.29538295382953,-80.17478029832053],[-78.27378273782737,-80.17815745286029],[-77.89937899378994,-80.14945163927229],[-77.78057780577805,-80.16127168016146],[-77.70497704977049,-80.17815745286029],[-77.66537665376653,-80.18153460740005],[-77.20097200972009,-80.1477630620024],[-76.73656736567365,-80.11399151660474],[-76.27576275762758,-80.08190854847697],[-76.24696246962469,-80.09035143482639],[-76.25416254162542,-80.1089257847951],[-76.27216272162721,-80.13256586657346],[-76.27576275762758,-80.15451737108194],[-76.25416254162542,-80.18491176193982],[-76.23256232562325,-80.20179753463864],[-76.1749617496175,-80.23050334822665],[-76.15336153361534,-80.2457005436556],[-76.11376113761138,-80.28116066632313],[-76.09576095760957,-80.2946692844822],[-76.08136081360813,-80.2946692844822],[-76.06696066960669,-80.28960355267255],[-76.04176041760417,-80.27609493451348],[-76.02736027360274,-80.27271777997372],[-76.0129601296013,-80.27102920270384],[-75.9661596615966,-80.2744063572436],[-75.95535955359553,-80.27778351178337],[-75.94815948159481,-80.28284924359302],[-75.98775987759878,-80.30311217083161],[-75.9661596615966,-80.31324363445091],[-75.90135901359014,-80.30648932537137],[-75.87255872558725,-80.30817790264126],[-75.57735577355773,-80.40273822975469],[-75.56655566555665,-80.4111811161041],[-75.5449554495545,-80.43482119788246],[-75.53055530555305,-80.441575506962],[-75.51255512555124,-80.44664123877163],[-75.49815498154982,-80.45508412512105],[-75.46575465754657,-80.47703562962953],[-75.45495454954549,-80.48210136143918],[-75.41535415354153,-80.4888556705187],[-75.40095400954009,-80.5192500613766],[-75.42255422554226,-80.54120156588507],[-75.45855458554585,-80.55639876131401],[-75.51975519755197,-80.56990737947308],[-75.64575645756457,-80.58679315217191],[-75.6709567095671,-80.59523603852132],[-75.68895688956889,-80.61212181122015],[-75.71055710557106,-80.63745047026839],[-75.64935649356494,-80.66277912931662],[-75.46935469354693,-80.70330498379381],[-75.39015390153901,-80.70499356106369],[-75.36855368553685,-80.71174787014323],[-75.3469534695347,-80.72187933376252],[-75.24615246152462,-80.74045368373123],[-75.1309513095131,-80.743830838271],[-75.03015030150301,-80.772536651859],[-74.95094950949509,-80.77084807458911],[-74.98694986949869,-80.79111100182772],[-75.04095040950409,-80.79279957909759],[-75.19215192151921,-80.77084807458911],[-75.35055350553505,-80.79955388817712],[-75.7249572495725,-80.81812823814583],[-75.77175771757717,-80.83839116538442],[-75.65295652956529,-80.84176831992418],[-75.64215642156421,-80.84514547446396],[-75.63135631356313,-80.85189978354349],[-75.61335613356133,-80.8704741335122],[-75.5989559895599,-80.8789170198616],[-75.58455584555846,-80.88398275167125],[-75.55575555755557,-80.8907370607508],[-75.49815498154982,-80.89580279256043],[-75.37935379353793,-80.88060559713149],[-75.24255242552425,-80.88229417440138],[-75.14895148951489,-80.86371982443266],[-75.13815138151381,-80.86540840170255],[-75.09855098550985,-80.88398275167125],[-75.08415084150842,-80.88398275167125],[-75.06255062550625,-80.8789170198616],[-75.0481504815048,-80.8789170198616],[-74.98694986949869,-80.89580279256043],[-74.96174961749617,-80.89411421529056],[-74.9329493294933,-80.88735990621102],[-74.90414904149041,-80.88567132894114],[-74.83934839348393,-80.9194428743388],[-74.78174781747818,-80.90762283344962],[-74.72414724147241,-80.88567132894114],[-74.670146701467,-80.87385128805197],[-74.61974619746196,-80.87385128805197],[-74.59454594545944,-80.8704741335122],[-74.47934479344794,-80.83501401084466],[-74.27774277742778,-80.82319396995548],[-74.16254162541625,-80.79955388817712],[-74.10494104941048,-80.79617673363735],[-74.04734047340473,-80.80461961998677],[-73.98973989739898,-80.82657112449525],[-73.95013950139501,-80.83670258811455],[-73.86373863738638,-80.8316368563049],[-73.82413824138241,-80.83501401084466],[-73.77733777337772,-80.84852262900372],[-73.44253442534425,-80.8890484834809],[-73.10413104131041,-80.92957433795809],[-72.76932769327694,-80.9684116151654],[-72.58932589325893,-80.96165730608587],[-72.60372603726037,-80.93126291522798],[-72.61452614526145,-80.9194428743388],[-72.62892628926289,-80.91099998798938],[-72.5821258212582,-80.8316368563049],[-72.55692556925568,-80.79786531090724],[-72.51732517325173,-80.77084807458911],[-72.46332463324633,-80.75058514735052],[-72.40932409324093,-80.743830838271],[-72.35892358923589,-80.74889657008065],[-72.27612276122761,-80.76578234277947],[-71.95931959319593,-80.73201079738182],[-71.63891638916388,-80.69992782925405],[-71.60651606516065,-80.70161640652393],[-71.5489154891549,-80.71512502468299],[-71.52731527315272,-80.71512502468299],[-71.28251282512825,-80.66277912931662],[-71.1241112411124,-80.60199034760085],[-71.06651066510665,-80.60199034760085],[-70.97290972909728,-80.62394185210933],[-70.94050940509405,-80.6256304293792],[-70.82170821708216,-80.61043323395026],[-70.43290432904328,-80.65771339750698],[-70.40050400504005,-80.66784486112627],[-70.37530375303753,-80.6847306338251],[-70.36450364503645,-80.70837071560345],[-70.3681036810368,-80.7235679110324],[-70.38970389703897,-80.74889657008065],[-70.39330393303932,-80.76409376550959],[-70.38970389703897,-80.78097953820841],[-70.3861038610386,-80.79448815636748],[-70.38250382503824,-80.80799677452654],[-70.39690396903968,-80.82319396995548],[-70.38970389703897,-80.82657112449525],[-70.32490324903249,-80.84007974265431],[-70.19890198901989,-80.8890484834809],[-70.15570155701556,-80.89580279256043],[-70.03330033300333,-80.89242563802067],[-70.05490054900548,-80.91268856525926],[-70.06210062100621,-80.92957433795809],[-70.05130051300513,-80.94308295611715],[-70.02970029700296,-80.95996872881598],[-70.00090000900009,-80.97010019243527],[-69.97569975699757,-80.97516592424492],[-69.77769777697776,-80.98529738786422],[-69.68409684096841,-80.97516592424492],[-69.42849428494284,-81.00218316056305],[-69.17289172891728,-81.02920039688117],[-69.11529115291152,-81.0258232423414],[-68.95328953289533,-80.98529738786422],[-68.67968679686797,-80.96165730608587],[-68.44928449284492,-80.97685450151481],[-68.30528305283052,-81.00387173783292],[-68.23328233282332,-81.00387173783292],[-68.16848168481684,-81.0258232423414],[-68.05688056880568,-81.03764328323058],[-68.08928089280893,-81.05115190138964],[-68.2980829808298,-81.08998917859695],[-68.42048420484204,-81.08830060132706],[-68.370083700837,-81.11025210583554],[-67.91647916479164,-81.16766373301155],[-67.45927459274593,-81.22507536018756],[-67.0020700207002,-81.28248698736357],[-66.54486544865448,-81.33989861453959],[-66.08766087660877,-81.3973102417156],[-65.63045630456304,-81.45472186889161],[-65.17325173251731,-81.51213349606762],[-64.92484924849248,-81.51382207333751],[-64.67284672846728,-81.51382207333751],[-64.61884618846189,-81.53070784603634],[-64.590045900459,-81.5340850005761],[-64.15444154441543,-81.53915073238575],[-63.71883718837188,-81.54421646419539],[-63.28323283232832,-81.54759361873516],[-62.847628476284754,-81.5526593505448],[-62.41562415624156,-81.55772508235445],[-62.282422824228235,-81.58643089594246],[-62.21042210422104,-81.59149662775211],[-62.18882188821888,-81.59993951410152],[-62.181621816218154,-81.60669382318105],[-62.160021600216,-81.63033390495941],[-62.14922149221492,-81.6404653685787],[-62.131221312213114,-81.64553110038835],[-62.11682116821167,-81.64721967765824],[-62.08442084420844,-81.64553110038835],[-62.11322113221132,-81.6708597594366],[-62.160021600216,-81.68605695486553],[-62.206822068220674,-81.69281126394507],[-62.59922599225992,-81.70125415029449],[-62.9880298802988,-81.70800845937401],[-63.38043380433804,-81.71645134572343],[-63.459634596345964,-81.70125415029449],[-63.2940329403294,-81.64890825492812],[-63.39123391233912,-81.63202248222929],[-63.4920349203492,-81.6404653685787],[-63.736837368373685,-81.68943410940531],[-64.03564035640356,-81.69787699575471],[-64.0860408604086,-81.68943410940531],[-63.84483844838448,-81.62189101861],[-63.87723877238771,-81.60162809137141],[-63.938439384393845,-81.61007097772082],[-64.09324093240932,-81.66579402762694],[-64.19764197641976,-81.68774553213542],[-64.45684456844567,-81.69281126394507],[-64.71244712447124,-81.69787699575471],[-64.66564665646656,-81.67761406851612],[-64.51444514445144,-81.63877679130883],[-64.55764557645576,-81.62189101861],[-64.61524615246152,-81.61851386407024],[-64.77724777247772,-81.63708821403894],[-64.97884978849788,-81.69449984121495],[-65.30285302853028,-81.71813992299332],[-65.4180541805418,-81.70125415029449],[-65.69165691656916,-81.71138561391378],[-65.7060570605706,-81.71476276845354],[-65.71325713257133,-81.71982850026319],[-65.71325713257133,-81.7299599638825],[-65.7060570605706,-81.76204293201026],[-65.70245702457024,-81.77048581835967],[-65.69525695256952,-81.77386297289944],[-65.67725677256772,-81.7772401274392],[-65.62325623256233,-81.78399443651874],[-65.26685266852668,-81.79074874559826],[-64.91044910449104,-81.79581447740792],[-64.96444964449644,-81.81438882737662],[-64.91764917649176,-81.81945455918627],[-64.7520475204752,-81.7975030546778],[-64.68724687246872,-81.80088020921757],[-64.63324633246332,-81.79412590013803],[-64.2480424804248,-81.78906016832839],[-63.862838628386285,-81.78399443651874],[-63.477634776347756,-81.78061728197898],[-63.513635136351354,-81.80256878648744],[-63.54243542435424,-81.82958602280557],[-63.510035100351004,-81.8363403318851],[-63.477634776347756,-81.83802890915499],[-63.51723517235172,-81.86166899093334],[-63.578435784357836,-81.87180045455264],[-64.02124021240212,-81.8751776090924],[-64.46764467644677,-81.87855476363217],[-64.9140491404914,-81.88193191817193],[-65.35685356853568,-81.88530907271169],[-65.80325803258032,-81.88868622725147],[-66.25686256862568,-81.94778643169735],[-65.97965979659796,-81.95791789531665],[-65.70245702457024,-81.96973793620583],[-65.63045630456304,-81.98662370890466],[-65.6520565205652,-82.00519805887338],[-65.68085680856808,-82.01532952249266],[-65.7420574205742,-82.02714956338184],[-65.9220592205922,-82.07949545874821],[-65.94365943659436,-82.09638123144704],[-65.98685986859869,-82.15041570408329],[-66.00486004860048,-82.16730147678211],[-66.06246062460625,-82.19600729037012],[-66.03366033660336,-82.21458164033882],[-65.8680586805868,-82.20951590852917],[-65.89325893258932,-82.226401681228],[-65.940059400594,-82.23484456757741],[-66.02646026460265,-82.23991029938706],[-65.99045990459904,-82.25004176300637],[-65.86445864458643,-82.24497603119671],[-65.91485914859147,-82.26355038116542],[-66.08046080460804,-82.29225619475343],[-66.030060300603,-82.31083054472214],[-65.760057600576,-82.30238765837272],[-65.48645486454865,-82.29394477202331],[-65.37485374853748,-82.26355038116542],[-65.23445234452345,-82.25679607208589],[-65.220052200522,-82.26017322662565],[-65.20925209252093,-82.2652389584353],[-65.2020520205202,-82.27368184478472],[-65.19485194851949,-82.28212473113413],[-65.18765187651876,-82.29056761748355],[-65.18045180451804,-82.29394477202331],[-65.16245162451624,-82.29732192656307],[-65.15525155251552,-82.30069908110285],[-65.1480514805148,-82.30914196745226],[-65.14445144451444,-82.3142076992619],[-65.1480514805148,-82.31927343107155],[-65.15525155251552,-82.32602774015108],[-65.1660516605166,-82.33953635831014],[-65.1660516605166,-82.34966782192944],[-65.15165151651516,-82.35642213100897],[-65.10845108451085,-82.3631764400885],[-65.0940509405094,-82.36824217189815],[-65.09045090450904,-82.3733079037078],[-65.10125101251012,-82.39357083094639],[-65.09045090450904,-82.4020137172958],[-65.07245072450723,-82.40539087183556],[-64.76644766447664,-82.38006221278732],[-64.45684456844567,-82.3547335537391],[-64.48924489244892,-82.36824217189815],[-64.52524525245252,-82.37837363551745],[-64.48924489244892,-82.40370229456569],[-64.43884438844388,-82.41045660364522],[-64.140041400414,-82.35642213100897],[-63.841238412384115,-82.30238765837272],[-63.589235892358914,-82.32096200834144],[-63.333633336333364,-82.34122493558003],[-63.28683286832867,-82.33109347196073],[-63.196831968319685,-82.29394477202331],[-63.23643236432363,-82.26861611297507],[-63.18963189631896,-82.25679607208589],[-63.0420304203042,-82.25173034027624],[-63.03483034830347,-82.27368184478472],[-63.00963009630095,-82.28043615386424],[-62.73962739627396,-82.26861611297507],[-62.47322473224732,-82.25679607208589],[-62.07362073620736,-82.28719046294378],[-61.620016200162,-82.24497603119671],[-61.16281162811627,-82.20276159944964],[-60.70920709207091,-82.16054716770257],[-60.648006480064794,-82.16730147678211],[-60.69120691206912,-82.19769586764],[-60.39960399603996,-82.17067863132188],[-60.50760507605075,-82.21458164033882],[-60.813608136081356,-82.28043615386424],[-61.11961119611196,-82.34460209011979],[-61.288812888128874,-82.3429135128499],[-61.75681756817568,-82.4020137172958],[-61.994419944199436,-82.45942534447181],[-62.39402394023939,-82.4898197353297],[-62.793627936279364,-82.5202141261876],[-62.76482764827648,-82.55398567158525],[-62.72882728827288,-82.5776257533636],[-62.49482494824947,-82.68231754409634],[-62.51282512825128,-82.70933478041445],[-62.52362523625236,-82.71777766676387],[-62.5380253802538,-82.72115482130363],[-62.52002520025199,-82.72622055311328],[-62.480424804248045,-82.71946624403375],[-62.46242462424624,-82.71946624403375],[-62.44442444424443,-82.72622055311328],[-62.404824048240485,-82.744794903082],[-62.102421024210244,-82.84948669381473],[-62.09162091620915,-82.85455242562436],[-62.09162091620915,-82.86299531197378],[-62.09162091620915,-82.87143819832319],[-62.09162091620915,-82.88156966194249],[-62.080820808208074,-82.89170112556178],[-61.93321933219332,-82.97275283451616],[-61.9980199801998,-83.00145864810416],[-62.06642066420663,-83.01327868899334],[-62.21042210422104,-83.01834442080299],[-62.181621816218154,-83.03354161623193],[-62.13842138421384,-83.03691877077169],[-61.94041940419403,-83.02847588442228],[-61.90441904419043,-83.02003299807288],[-61.85401854018539,-82.99470433902464],[-61.83241832418324,-82.99301576175475],[-61.81441814418143,-82.99470433902464],[-61.65961659616596,-83.0571816980103],[-61.620016200162,-83.06393600708982],[-61.60201602016019,-83.06055885255006],[-61.58761587615875,-83.05042738893076],[-61.56241562415623,-83.02341015261264],[-61.5480154801548,-83.00990153445358],[-61.53361533615336,-83.00145864810416],[-61.386013860138604,-82.96599852543663],[-61.364413644136434,-82.9491127527378],[-61.35001350013499,-82.90858689826061],[-61.335613356133564,-82.89845543464132],[-61.314013140131394,-82.8900125482919],[-61.2960129601296,-82.88663539375214],[-61.278012780127796,-82.8900125482919],[-61.260012600126004,-82.89845543464132],[-61.21681216812168,-82.9389812891185],[-61.18441184411844,-82.95924421635709],[-61.14841148411483,-82.96430994816674],[-61.10881108811088,-82.9491127527378],[-61.1340113401134,-82.91871836187991],[-61.09801098010979,-82.90520974372085],[-61.06561065610656,-82.9102754755305],[-61.0080100801008,-82.94573559819803],[-60.97920979209792,-82.97444141178605],[-60.975609756097555,-83.00483580264392],[-61.000810008100075,-83.07237889343924],[-61.04041040410404,-83.11965905699596],[-61.11241112411123,-83.16525064328279],[-61.19161191611916,-83.19902218868043],[-61.252812528125276,-83.21084222956962],[-61.32481324813247,-83.21421938410938],[-61.48321483214832,-83.25474523858657],[-61.62361623616236,-83.31215686576257],[-61.85041850418504,-83.36787991566871],[-61.82521825218252,-83.37463422474823],[-61.79641796417964,-83.37294564747836],[-61.73881738817387,-83.36112560658918],[-61.540815408154074,-83.35099414296988],[-61.530015300152996,-83.3577484520494],[-61.52281522815228,-83.37463422474823],[-61.51921519215192,-83.39320857471695],[-61.515615156151554,-83.40334003833624],[-61.490414904149034,-83.40671719287602],[-61.41841418414184,-83.39151999744706],[-61.25641256412564,-83.37632280201812],[-61.18801188011879,-83.37969995655789],[-61.14841148411483,-83.40840577014589],[-61.10881108811088,-83.41347150195554],[-60.900009000089995,-83.3881428429073],[-61.00441004410044,-83.42360296557483],[-61.11241112411123,-83.4472430473532],[-60.9540095400954,-83.4759488609412],[-60.900009000089995,-83.47426028367131],[-60.66960669606695,-83.43035727465437],[-60.60840608406083,-83.42866869738448],[-60.44640446404463,-83.46919455186168],[-60.158401584015834,-83.44893162462307],[-59.8739987399874,-83.4269801201146],[-59.86319863198632,-83.43373442919413],[-59.845198451984515,-83.45399735643272],[-59.83439834398344,-83.45906308824237],[-59.47079470794708,-83.46075166551226],[-59.078390783907835,-83.34761698843012],[-58.68238682386823,-83.23448231134797],[-58.289982899829,-83.12134763426583],[-57.897578975789756,-83.00821295718369],[-57.69957699576996,-82.9102754755305],[-57.2459724597246,-82.8224694574966],[-56.79236792367924,-82.73297486219282],[-56.338763387633875,-82.64516884415892],[-56.32076320763207,-82.6367259578095],[-56.29556295562955,-82.62152876238055],[-55.99315993159931,-82.54047705342619],[-55.93195931959319,-82.51345981710806],[-55.924759247592476,-82.5100826625683],[-55.924759247592476,-82.50501693075864],[-55.928359283592826,-82.48813115805982],[-55.928359283592826,-82.48306542625018],[-55.91755917559175,-82.47631111717064],[-55.849158491584916,-82.46280249901159],[-55.84195841958419,-82.46786823082122],[-55.84195841958419,-82.47631111717064],[-55.827558275582746,-82.48475400352005],[-55.777157771577706,-82.48813115805982],[-55.67995679956799,-82.4611139217417],[-55.55755557555575,-82.4611139217417],[-55.496354963549635,-82.47462253990076],[-55.44235442354423,-82.47631111717064],[-55.42795427954279,-82.4796882717104],[-55.424354243542425,-82.48644258078994],[-55.424354243542425,-82.49319688986947],[-55.41355413554135,-82.499951198949],[-55.39195391953919,-82.50670550802853],[-55.22635226352263,-82.51852554891771],[-55.17595175951759,-82.5100826625683],[-55.143551435514354,-82.4898197353297],[-55.186751867518666,-82.45773676720194],[-55.13995139951399,-82.44422814904287],[-55.12915129151291,-82.43916241723322],[-55.121951219512184,-82.42565379907415],[-55.111151111511106,-82.39357083094639],[-55.10035100351003,-82.38512794459697],[-55.01395013950139,-82.3530449764692],[-54.98874988749887,-82.34629066738968],[-54.859148591485905,-82.34797924465956],[-54.84834848348483,-82.3429135128499],[-54.830348303483035,-82.32265058561131],[-54.81954819548196,-82.31589627653179],[-54.76194761947619,-82.29901050383296],[-54.49914499144991,-82.28719046294378],[-54.239942399423995,-82.2753704220546],[-54.17514175141751,-82.26355038116542],[-54.20034200342003,-82.25341891754613],[-54.293942939429385,-82.25341891754613],[-53.92313923139231,-82.2061387539894],[-53.96993969939699,-82.19769586764],[-54.25794257942579,-82.20107302217976],[-54.30474304743046,-82.19094155856047],[-53.90873908739087,-82.17912151767129],[-53.800738007380076,-82.19431871310023],[-53.31473314733147,-82.15210428135316],[-53.28593285932858,-82.14703854954351],[-53.275132751327504,-82.14197281773387],[-53.25713257132571,-82.1301527768447],[-53.239132391323906,-82.12677562230492],[-53.224732247322464,-82.12508704503504],[-52.9331293312933,-82.14197281773387],[-52.64152641526415,-82.16054716770257],[-52.18792187921879,-82.11157842687598],[-51.73071730717308,-82.06260968604938],[-51.248312483124835,-82.01026379068301],[-50.762307623076225,-81.95791789531665],[-50.73350733507334,-81.95960647258654],[-50.5571055710557,-81.99337801798418],[-50.12150121501216,-81.9731150907456],[-49.68589685896859,-81.952852163507],[-49.25029250292502,-81.93090065899852],[-48.81468814688145,-81.91063773175993],[-48.37908379083791,-81.89037480452134],[-48.22788227882279,-81.91739204083947],[-48.22068220682206,-81.91570346356959],[-48.206282062820634,-81.89881769087076],[-48.199081990819906,-81.89206338179123],[-48.18828188281881,-81.89206338179123],[-47.88947889478894,-81.92245777264912],[-47.43227432274321,-81.91739204083947],[-47.38187381873817,-81.924146349919],[-47.34587345873459,-81.94947500896724],[-47.34947349473495,-81.95454074077689],[-47.360273602736015,-81.96636078166607],[-47.36747367473674,-81.96973793620583],[-47.2630726307263,-81.96973793620583],[-47.42507425074251,-82.00688663614325],[-47.58347583475833,-82.02039525430231],[-47.561875618756176,-82.03728102700114],[-47.52587525875259,-82.04741249062043],[-47.48987489874898,-82.05247822243008],[-47.461074610746095,-82.05247822243008],[-47.39627396273963,-82.04572391335056],[-47.36387363873638,-82.04403533608067],[-47.29547295472955,-82.06936399512891],[-47.25587255872557,-82.07274114966867],[-47.21627216272162,-82.06598684058915],[-47.176671766717675,-82.05247822243008],[-47.08667086670866,-82.00350948160349],[-47.05427054270541,-81.99337801798418],[-46.665466654666545,-81.95116358623713],[-46.280262802628016,-81.90894915449006],[-46.229862298622976,-81.91739204083947],[-46.25146251462513,-81.94440927715759],[-46.255062550625496,-81.95454074077689],[-46.24786247862477,-81.9731150907456],[-46.23346233462334,-81.98831228617455],[-46.21546215462155,-82.00350948160349],[-46.19746197461973,-82.01364094522279],[-46.136261362613624,-82.03559244973125],[-46.053460534605335,-82.08287261328798],[-46.01386013860139,-82.09469265417715],[-46.028260282602815,-82.10144696325668],[-46.03906039060391,-82.11326700414587],[-46.04626046260461,-82.12677562230492],[-46.04626046260461,-82.14197281773387],[-45.97425974259741,-82.12508704503504],[-45.94905949059489,-82.12508704503504],[-46.028260282602815,-82.15379285862305],[-46.04986049860497,-82.17067863132188],[-46.06426064260643,-82.19263013583034],[-46.07506075060749,-82.20951590852917],[-46.08946089460895,-82.22471310395812],[-46.30186301863017,-82.30576481291249],[-46.6870668706687,-82.40539087183556],[-46.6330663306633,-82.4307195308838],[-46.45306453064529,-82.47124538536099],[-46.463864638646385,-82.48813115805982],[-46.47826478264781,-82.49657404440923],[-46.51786517865179,-82.50332835348877],[-46.053460534605335,-82.55567424885513],[-46.02466024660245,-82.55229709431536],[-46.04266042660427,-82.54047705342619],[-45.945459454594555,-82.49150831259959],[-45.83385833858338,-82.4509824581224],[-45.718657186571875,-82.44422814904287],[-45.57825578255782,-82.52190270345747],[-45.52065520655205,-82.52696843526712],[-45.02745027450274,-82.45267103539229],[-44.53784537845377,-82.38006221278732],[-44.30384303843039,-82.31589627653179],[-44.19944199441994,-82.255107494816],[-44.13824138241381,-82.24497603119671],[-44.07344073440734,-82.24835318573648],[-44.01224012240121,-82.26355038116542],[-44.01944019440194,-82.2753704220546],[-44.026640266402666,-82.2855018856739],[-44.03744037440373,-82.29225619475343],[-44.04824048240482,-82.29901050383296],[-44.05544055440555,-82.30914196745226],[-44.05544055440555,-82.33784778104027],[-44.05544055440555,-82.34966782192944],[-44.07344073440734,-82.3631764400885],[-44.102241022410226,-82.37499648097769],[-44.152641526415266,-82.38850509913674],[-44.084240842408406,-82.4020137172958],[-44.01224012240121,-82.39188225367651],[-43.68103681036811,-82.30069908110285],[-43.35343353433535,-82.20951590852917],[-43.346233462334624,-82.19938444490988],[-43.34263342633426,-82.17912151767129],[-43.33183331833317,-82.17067863132188],[-43.263432634326335,-82.14197281773387],[-43.15903159031589,-82.12508704503504],[-43.14823148231483,-82.11495558141574],[-43.15543155431553,-82.09638123144704],[-43.16983169831698,-82.07949545874821],[-43.18063180631805,-82.0710525723988],[-43.19863198631987,-82.06260968604938],[-43.25623256232561,-82.04741249062043],[-43.23463234632345,-82.03052671792162],[-43.19143191431914,-82.00857521341314],[-43.16983169831698,-81.99337801798418],[-43.21663216632166,-81.96467220439618],[-43.22383223832239,-81.95622931804677],[-43.22383223832239,-81.94103212261783],[-43.213032130321295,-81.92583492718889],[-43.19143191431914,-81.90050626814065],[-43.16623166231662,-81.88530907271169],[-43.13023130231301,-81.87855476363217],[-42.99702997029971,-81.86673472274299],[-42.961029610296094,-81.85998041366346],[-42.90702907029069,-81.82958602280557],[-42.79902799027991,-81.81945455918627],[-42.518225182251825,-81.75528862293073],[-42.233822338223376,-81.69112268667519],[-42.28062280622805,-81.67761406851612],[-42.223022230222284,-81.64384252311848],[-42.20502205022049,-81.63708821403894],[-41.98541985419854,-81.62020244134011],[-41.94221942219423,-81.6117595549907],[-41.89901899018989,-81.5830537414027],[-41.92421924219241,-81.56110223689421],[-41.938619386193864,-81.55434792781469],[-41.956619566195656,-81.55097077327493],[-41.92061920619204,-81.5340850005761],[-41.87741877418773,-81.49355914609892],[-41.84501845018448,-81.47667337340009],[-41.84141841418415,-81.47160764159044],[-41.84141841418415,-81.46316475524102],[-41.84141841418415,-81.45472186889161],[-41.84141841418415,-81.44796755981208],[-41.830618306183055,-81.44459040527231],[-41.82341823418233,-81.44290182800243],[-41.78381783817838,-81.44121325073255],[-41.77301773017729,-81.43952467346267],[-41.76941769417692,-81.43445894165302],[-41.76581765817659,-81.41757316895419],[-41.76221762217622,-81.41081885987467],[-41.75861758617586,-81.40744170533489],[-41.72621726217261,-81.39899881898548],[-41.58941589415895,-81.33989861453959],[-41.117811178111765,-81.22676393745745],[-41.10341103411034,-81.22000962837791],[-41.06381063810639,-81.18792666025014],[-41.04581045810457,-81.18117235117062],[-40.88020880208802,-81.15753226939225],[-40.91260912609127,-81.16935231028144],[-40.94860948609485,-81.17610661936097],[-40.916209162091604,-81.18961523752003],[-40.57060570605705,-81.15415511485249],[-40.397803978039775,-81.16935231028144],[-40.14220142201421,-81.12038356945483],[-39.88299882998828,-81.07141482862824],[-39.85059850598506,-81.04777474684988],[-39.83979839798397,-81.04270901504023],[-39.69939699396994,-81.02075751053175],[-39.64539645396454,-81.02244608780164],[-39.62019620196202,-81.02075751053175],[-39.54819548195482,-80.9971174287534],[-39.242192421924216,-80.95152584246657],[-38.93258932589325,-80.90593425617973],[-38.8209882098821,-80.90593425617973],[-38.77058770587706,-80.89242563802067],[-38.8209882098821,-80.88567132894114],[-38.813788137881374,-80.87216271078208],[-38.80298802988028,-80.86371982443266],[-38.79218792187922,-80.8603426698929],[-38.77778777787776,-80.86371982443266],[-38.756187561875606,-80.8704741335122],[-38.547385473854746,-80.91268856525926],[-38.39258392583926,-80.91268856525926],[-38.00738007380073,-80.95321441973645],[-37.6221762217622,-80.99542885148351],[-37.63657636576366,-81.00556031510281],[-37.65457654576545,-81.01062604691246],[-37.6869768697687,-81.01400320145223],[-37.47097470974708,-81.03088897415105],[-37.373773737737366,-81.06972625135836],[-37.33777337773378,-81.07816913770776],[-37.229772297722974,-81.08998917859695],[-37.21177211772118,-81.08830060132706],[-37.19377193771936,-81.0849234467873],[-37.139771397713986,-81.05959478773906],[-37.12537125371253,-81.0562176331993],[-36.97776977769777,-81.05284047865953],[-36.90936909369094,-81.03088897415105],[-36.862568625686265,-80.9869859651341],[-36.81576815768156,-80.97516592424492],[-36.58896588965888,-81.00556031510281],[-36.59616596165961,-80.97178876970516],[-36.552965529655296,-80.95152584246657],[-36.459364593645944,-80.93464006976774],[-36.03456034560344,-80.92113145160867],[-36.01296012960128,-80.91099998798938],[-35.998559985599854,-80.89242563802067],[-35.9841598415984,-80.88398275167125],[-35.88335883358832,-80.86709697897243],[-35.82935829358294,-80.84007974265431],[-35.79335793357933,-80.8316368563049],[-35.78255782557824,-80.82657112449525],[-35.7789577895779,-80.80799677452654],[-35.7789577895779,-80.801242465447],[-35.771757717577174,-80.801242465447],[-35.76815768157681,-80.801242465447],[-35.76095760957608,-80.79955388817712],[-35.721357213572134,-80.78604527001806],[-35.46935469354693,-80.74045368373123],[-35.21375213752137,-80.6948620974444],[-35.46575465754657,-80.64758193388768],[-35.35775357753576,-80.61549896575991],[-34.88614886148861,-80.61549896575991],[-34.41814418144182,-80.61549896575991],[-33.946539465394636,-80.61549896575991],[-33.47493474934748,-80.61549896575991],[-33.176131761317606,-80.55471018404413],[-33.42453424534244,-80.52431579318625],[-33.46413464134642,-80.49729855686812],[-33.41373413734138,-80.49729855686812],[-33.125731257312566,-80.53275867953566],[-33.0681306813068,-80.53107010226577],[-32.93132931329313,-80.54120156588507],[-32.481324813248136,-80.4888556705187],[-32.03132031320314,-80.43482119788246],[-31.649716497164974,-80.44664123877163],[-31.26811268112681,-80.45677270239094],[-30.886508865088643,-80.46690416601024],[-30.50490504905048,-80.47872420689941],[-30.386103861038606,-80.498987134138],[-30.350103501034994,-80.50067571140788],[-30.386103861038606,-80.46859274328011],[-30.458104581045802,-80.45846127966082],[-30.587705877058767,-80.45846127966082],[-30.954909549095476,-80.38416387978597],[-31.31851318513185,-80.30817790264126],[-31.278912789127872,-80.29635786175209],[-30.828908289082875,-80.29298070721231],[-30.375303753037514,-80.28791497540267],[-29.925299252992517,-80.2845378208629],[-29.914499144991453,-80.28116066632313],[-29.896498964989632,-80.26934062543395],[-29.88569885698857,-80.2642748936243],[-29.871298712987112,-80.2642748936243],[-29.720097200971992,-80.26258631635443],[-29.792097920979216,-80.23388050276643],[-29.864098640986413,-80.21530615279771],[-29.817298172981737,-80.1866003392097],[-29.75969759697597,-80.17478029832053],[-29.270092700926995,-80.16802598924099],[-28.78048780487805,-80.15958310289157],[-28.290882908829076,-80.15282879381205],[-27.80127801278013,-80.14438590746263],[-27.311673116731157,-80.13763159838311],[-26.822068220682212,-80.1291887120337],[-26.33246332463324,-80.12243440295416],[-26.307263072630718,-80.11905724841439],[-26.228062280622794,-80.09710574390591],[-26.195661956619574,-80.09204001209628],[-25.709657096570965,-80.08697428028663],[-25.223652236522355,-80.08359712574686],[-24.737647376473745,-80.0802199712071],[-24.25524255242553,-80.07515423939745],[-24.208442084420852,-80.0700885075878],[-24.107641076410772,-80.01943118949131],[-24.068040680406796,-80.00929972587203],[-23.67923679236793,-80.00085683952261],[-23.2940329403294,-79.9924139531732],[-22.905229052290508,-79.9822824895539],[-22.82242822428225,-79.9637081395852],[-22.829628296282948,-79.95864240777554],[-22.836828368283676,-79.94851094415624],[-22.84042840428404,-79.94344521234659],[-22.768427684276844,-79.92655943964778],[-22.610026100260995,-79.92993659418754],[-22.53082530825307,-79.91642797602847],[-22.934029340293392,-79.88772216244047],[-23.337233372333714,-79.85901634885246],[-23.740437404374035,-79.83031053526446],[-23.765637656376555,-79.82017907164516],[-23.790837908379075,-79.8151133398355],[-23.81963819638196,-79.8168019171054],[-23.877238772387727,-79.82693338072468],[-23.93123931239313,-79.83031053526446],[-24.08964089640895,-79.82017907164516],[-24.201242012420124,-79.82693338072468],[-24.262442624426228,-79.82186764891505],[-24.302043020430204,-79.80329329894633],[-24.284042840428413,-79.78978468078726],[-24.27324273242732,-79.78134179443785],[-24.269642696426956,-79.77289890808844],[-24.27324273242732,-79.75601313538962],[-24.27324273242732,-79.74081593996067],[-24.266042660426592,-79.72899589907149],[-24.25524255242553,-79.71548728091243],[-24.730447304473046,-79.78134179443785],[-25.223652236522355,-79.76614459900891],[-25.72045720457203,-79.74925882631008],[-26.21726217262173,-79.73406163088114],[-26.71046710467104,-79.71717585818232],[-27.207272072720713,-79.70197866275336],[-27.70047700477005,-79.68509289005455],[-28.197281972819724,-79.66820711735572],[-28.690486904869033,-79.65300992192677],[-29.187291872918735,-79.63612414922794],[-29.684096840968408,-79.620926953799],[-30.177301773017717,-79.60404118110017],[-30.67410674106742,-79.58884398567123],[-30.652506525065235,-79.56351532662299],[-30.28170281702816,-79.46895499950955],[-29.91089910899109,-79.37439467239612],[-29.540095400954016,-79.2798343452827],[-29.586895868958692,-79.26801430439352],[-29.630096300963004,-79.26801430439352],[-29.788497884978852,-79.31360589068035],[-29.8280982809828,-79.31867162249],[-29.849698496984956,-79.30685158160082],[-29.849698496984956,-79.29840869525141],[-29.83529835298353,-79.27645719074293],[-30.058500585005845,-79.26294857258387],[-30.526505265052634,-79.28658865436222],[-30.54090540905409,-79.27476861347304],[-30.55530555305552,-79.24775137715493],[-30.450904509045074,-79.21735698629703],[-30.008100081000805,-79.14474816369207],[-29.943299432994337,-79.11097661829443],[-29.990099900999013,-79.09071369105584],[-30.195301953019538,-79.10422230921489],[-30.184501845018445,-79.0940908455956],[-30.170101701017018,-79.08564795924619],[-30.15570155701556,-79.07889365016665],[-30.13770137701377,-79.07382791835701],[-30.184501845018445,-79.04343352749912],[-30.23850238502385,-79.0349906411497],[-30.296102961029618,-79.03667921841958],[-30.458104581045802,-79.0653850320076],[-30.468904689046894,-79.07045076381723],[-30.483304833048322,-79.08564795924619],[-30.494104941049414,-79.09240226832571],[-30.512105121051206,-79.09577942286548],[-30.57330573305734,-79.10591088648478],[-30.584105841058403,-79.10591088648478],[-30.587705877058767,-79.09915657740524],[-30.59130591305913,-79.08564795924619],[-30.59850598505986,-79.07720507289677],[-30.612906129061287,-79.07551649562689],[-31.05211052110519,-79.10928804102454],[-31.49491494914949,-79.1430595864222],[-31.93771937719376,-79.17683113181985],[-32.37692376923769,-79.21060267721751],[-32.81972819728196,-79.24437422261516],[-33.28773287732878,-79.20891409994762],[-33.752137521375204,-79.17345397728009],[-34.21654216542166,-79.13799385461255],[-34.18774187741877,-79.12448523645348],[-34.16974169741698,-79.11941950464384],[-34.15174151741516,-79.11773092737396],[-34.2021420214202,-79.09071369105584],[-34.25974259742597,-79.07720507289677],[-34.65574655746556,-79.03161348660994],[-35.05535055350552,-78.98602190032311],[-35.45495454954548,-78.94211889130615],[-35.8509585095851,-78.89652730501932],[-36.250562505625055,-78.85093571873249],[-36.34416344163441,-78.81547559606496],[-36.41256412564124,-78.7529982370793],[-36.41976419764197,-78.73104673257082],[-36.426964269642696,-78.6837665690141],[-36.44496444964449,-78.6347978281875],[-36.44136441364412,-78.61115774640915],[-36.426964269642696,-78.59089481917056],[-36.40536405364054,-78.57063189193197],[-36.39816398163981,-78.56387758285243],[-36.39456394563945,-78.5469918101536],[-36.39096390963908,-78.54023750107407],[-36.326163261632615,-78.45749721484982],[-36.30816308163082,-78.4389228648811],[-36.2829628296283,-78.42372566945217],[-36.275762757627575,-78.41865993764252],[-36.26856268562685,-78.40008558767381],[-36.26136261362612,-78.3916427013244],[-36.05616056160562,-78.26499940608319],[-36.0381603816038,-78.24642505611448],[-36.0309603096031,-78.23629359249519],[-36.02736027360274,-78.22616212887588],[-36.02016020160201,-78.2160306652566],[-36.01296012960128,-78.21096493344695],[-35.92655926559266,-78.1856362743987],[-35.8509585095851,-78.18394769712883],[-35.840158401584006,-78.18225911985894],[-35.83295832958328,-78.17719338804929],[-35.822158221582214,-78.15524188354081],[-35.81855818558185,-78.15186472900105],[-35.80775807758076,-78.15355330627094],[-35.78255782557824,-78.1569304608107],[-35.63135631356312,-78.16199619262035],[-35.6061560615606,-78.15861903808059],[-35.58095580955808,-78.15017615173117],[-35.59535595355953,-78.14004468811187],[-35.60975609756096,-78.12147033814317],[-35.62055620556205,-78.09951883363469],[-35.62055620556205,-78.08094448366597],[-35.6061560615606,-78.07250159731656],[-35.58455584555844,-78.06743586550692],[-35.50175501755018,-78.05899297915751],[-35.49095490954909,-78.0505500928081],[-35.47655476554766,-77.98638415655255],[-35.46575465754657,-77.96780980658383],[-35.41535415354153,-77.92390679756689],[-35.386553865538644,-77.89182382943912],[-35.35775357753576,-77.86142943858123],[-35.31455314553145,-77.8445436658824],[-35.05535055350552,-77.82259216137392],[-34.66294662946629,-77.85298655223181],[-34.59814598145982,-77.84623224315229],[-34.508145081450806,-77.85298655223181],[-34.50094500945008,-77.85129797496194],[-34.490144901449014,-77.84623224315229],[-34.47214472144722,-77.82765789318357],[-34.457744577445766,-77.82259216137392],[-34.64854648546486,-77.79388634778591],[-34.6449464494645,-77.76349195692804],[-34.68094680946808,-77.75167191603884],[-34.76014760147601,-77.74829476149908],[-34.742147421474215,-77.73140898880025],[-34.73854738547385,-77.71283463883155],[-34.74934749347494,-77.69594886613272],[-34.77454774547746,-77.68750597978331],[-34.70974709747097,-77.6300943526073],[-34.68814688146881,-77.61827431171812],[-34.60174601746016,-77.60645427082893],[-34.5729457294573,-77.59969996174941],[-34.52254522545226,-77.57605987997106],[-34.47574475744756,-77.54566548911316],[-34.43614436144361,-77.52877971641433],[-34.42534425344252,-77.52371398460468],[-34.414544145441454,-77.50851678917574],[-34.40014400144,-77.49838532555644],[-34.37134371343714,-77.4831881301275],[-34.3209432094321,-77.46630235742867],[-34.13374133741337,-77.44266227565032],[-34.08694086940869,-77.42915365749126],[-33.97533975339752,-77.41902219387197],[-33.863738637386376,-77.38862780301407],[-33.838538385383856,-77.37849633939477],[-33.719737197371956,-77.31095324859947],[-33.6981369813698,-77.30588751678982],[-33.644136441364395,-77.30588751678982],[-33.62253622536224,-77.29913320771028],[-33.593735937359355,-77.28731316682111],[-33.5649356493565,-77.28224743501146],[-33.53253532535325,-77.28224743501146],[-33.50373503735037,-77.28731316682111],[-33.48213482134821,-77.28731316682111],[-33.40653406534065,-77.26705023958252],[-33.34533345333452,-77.26029593050299],[-33.17253172531724,-77.26198450777287],[-33.1221312213122,-77.25354162142345],[-32.95292952929529,-77.18937568516792],[-32.49932499324993,-77.12689832618226],[-32.11772117721176,-77.1708013351992],[-31.916119161191602,-77.15053840796061],[-31.894518945189446,-77.14378409888108],[-31.88011880118802,-77.12689832618226],[-31.869318693186926,-77.06779812173636],[-31.851318513185134,-77.05091234903753],[-31.750517505175054,-76.9951892991314],[-31.69651696516965,-76.9766149491627],[-31.36171361713616,-76.93440051741563],[-31.02691026910267,-76.89218608566856],[-30.69210692106921,-76.84997165392149],[-30.659706597065963,-76.85166023119137],[-30.6489064890649,-76.84659449938172],[-30.64170641706417,-76.83477445849255],[-30.634506345063443,-76.81957726306361],[-30.627306273062715,-76.8094457994443],[-30.612906129061287,-76.80438006763465],[-30.56610566105661,-76.79593718128524],[-30.54090540905409,-76.78580571766595],[-30.454504545045438,-76.74527986318876],[-30.404104041040398,-76.73683697683936],[-30.3969039690397,-76.73008266775982],[-30.386103861038606,-76.70644258598146],[-30.375303753037514,-76.69968827690192],[-30.227702277022757,-76.66760530877416],[-30.152101521015197,-76.63552234064639],[-29.658896588965888,-76.57642213620049],[-29.62649626496264,-76.56966782712097],[-29.558095580955808,-76.54265059080284],[-29.56169561695617,-76.5375848589932],[-29.565295652956536,-76.52576481810401],[-29.56889568895687,-76.52069908629437],[-29.558095580955808,-76.51563335448472],[-29.53649536495365,-76.497059004516],[-29.52569525695256,-76.49199327270637],[-29.514895148951496,-76.49030469543648],[-29.48609486094861,-76.49199327270637],[-29.471694716947155,-76.49030469543648],[-29.41049410494105,-76.47510750000754],[-29.38529385293853,-76.46328745911835],[-29.356493564935647,-76.44302453187976],[-29.338493384933855,-76.43964737734],[-29.15849158491585,-76.42613875918093],[-28.859688596885974,-76.35352993657598],[-28.514085140851392,-76.31131550482891],[-28.164881648816475,-76.26910107308184],[-27.819278192781923,-76.22688664133477],[-27.596075960759606,-76.22688664133477],[-27.336873368733677,-76.17285216869853],[-27.22167221672217,-76.16103212780935],[-26.984069840698396,-76.16947501415876],[-26.890468904689044,-76.14921208692017],[-26.858068580685796,-76.13570346876111],[-26.85446854468543,-76.13232631422134],[-26.850868508685068,-76.1272605824117],[-26.850868508685068,-76.11375196425263],[-26.847268472684732,-76.10868623244299],[-26.822068220682212,-76.0968661915538],[-26.793267932679328,-76.09180045974416],[-26.62766627666275,-76.09517761428393],[-26.59526595265953,-76.09011188247428],[-26.50886508865088,-76.05465175980675],[-26.404464044640434,-76.04114314164768],[-26.372063720637215,-76.03270025529827],[-26.289262892628926,-75.99724013263072],[-26.231662316623158,-75.98542009174155],[-26.11646116461165,-75.97360005085237],[-25.94725947259471,-75.93307419637519],[-25.544055440554388,-75.89423691916788],[-25.13725137251373,-75.85708821923046],[-24.730447304473046,-75.81825094202316],[-24.327243272432725,-75.77941366481586],[-24.212042120421188,-75.7557735830375],[-23.740437404374035,-75.7473306966881],[-23.26883268832688,-75.7371992330688],[-23.24363243632436,-75.73044492398927],[-23.214832148321477,-75.71524772856031],[-23.189631896318957,-75.71187057402055],[-23.160831608316073,-75.71187057402055],[-23.10683106831067,-75.70511626494103],[-22.84762847628477,-75.7068048422109],[-22.728827288272868,-75.68991906951207],[-22.649626496264943,-75.68991906951207],[-22.620826208262088,-75.68485333770244],[-22.595625956259568,-75.67472187408313],[-22.559625596255955,-75.64432748322524],[-22.534425344253435,-75.64263890595537],[-22.37962379623795,-75.6780990286229],[-22.365223652236523,-75.67641045135302],[-22.350823508235067,-75.66796756500361],[-22.32922329223291,-75.64939321503489],[-22.314823148231483,-75.64601606049513],[-22.300423004230026,-75.64432748322524],[-22.073620736207346,-75.70511626494103],[-22.07002070020701,-75.68485333770244],[-22.05202052020519,-75.68147618316266],[-21.86121861218612,-75.71018199675066],[-21.81081810818108,-75.70849341948079],[-21.76041760417604,-75.70005053313137],[-21.681216812168117,-75.67134471954337],[-21.270812708127067,-75.71355915129044],[-21.17361173611735,-75.70511626494103],[-21.080010800108,-75.67978760589278],[-20.993609936099347,-75.64432748322524],[-20.94680946809467,-75.63250744233606],[-20.860408604086047,-75.63588459687583],[-20.817208172081706,-75.62575313325654],[-20.774007740077394,-75.60717878328782],[-20.756007560075602,-75.60549020601795],[-20.730807308073082,-75.60886736055771],[-20.68760687606874,-75.62068740144689],[-20.666006660066586,-75.62068740144689],[-20.64440644406443,-75.61224451509747],[-20.72000720007199,-75.57847296969982],[-20.734407344073446,-75.56327577427088],[-20.730807308073082,-75.5413242697624],[-20.705607056070562,-75.52781565160333],[-20.49320493204931,-75.49742126074545],[-20.446404464044633,-75.48053548804663],[-20.399603996039957,-75.47209260169721],[-20.08280082800829,-75.5109298789045],[-19.76599765997659,-75.54976715611181],[-19.74079740797407,-75.54639000157205],[-19.693996939969395,-75.52950422887322],[-19.67239672396724,-75.52781565160333],[-19.593195931959315,-75.53963569249251],[-19.38799387993879,-75.54639000157205],[-19.373593735937362,-75.54301284703229],[-19.348393483934842,-75.53288138341298],[-19.33759337593375,-75.53119280614311],[-19.240392403924034,-75.54807857884194],[-19.23679236792367,-75.52443849706357],[-19.23679236792367,-75.50248699255509],[-19.006390063900625,-75.52106134252381],[-18.966789667896677,-75.51430703344428],[-18.93438934389343,-75.49066695166592],[-19.02799027990278,-75.4535182517285],[-18.988389883898833,-75.44338678810921],[-18.653586535865344,-75.4822240653165],[-18.62478624786246,-75.4822240653165],[-18.577985779857784,-75.46702686988756],[-18.5491854918549,-75.4636497153478],[-18.527585275852744,-75.46533829261767],[-18.45918459184591,-75.48053548804663],[-18.40878408784087,-75.48053548804663],[-18.250382503825023,-75.46027256080802],[-18.505985059850588,-75.41636955179108],[-18.531185311853108,-75.40792666544166],[-18.552785527855264,-75.37753227458379],[-18.57438574385742,-75.35895792461507],[-18.613986139861396,-75.33025211102706],[-18.639186391863916,-75.32012064740776],[-18.664386643866436,-75.31167776105835],[-18.736387363873632,-75.29985772016917],[-18.77598775987758,-75.27959479293058],[-18.797587975879765,-75.27452906112093],[-18.81918819188192,-75.27115190658117],[-18.85158851588514,-75.26270902023175],[-18.873188731887325,-75.24920040207269],[-18.865988659886597,-75.2289374748341],[-18.84438844388444,-75.22556032029433],[-18.78318783187831,-75.23062605210399],[-18.761587615876152,-75.2289374748341],[-18.75078750787506,-75.22387174302445],[-18.739987399873996,-75.21880601121481],[-18.721987219872204,-75.20529739305574],[-18.714787147871476,-75.19516592943644],[-18.711187111871112,-75.17152584765809],[-18.703987039870384,-75.16139438403879],[-18.682386823868228,-75.1512629204195],[-18.653586535865344,-75.14957434314961],[-18.59958599585994,-75.15801722949902],[-18.545585455854564,-75.14619718860985],[-18.538385383853836,-75.10398275686278],[-18.53478534785347,-75.0533254387663],[-18.50958509585095,-75.02293104790841],[-18.48438484384843,-75.02124247063853],[-18.462784627846275,-75.02630820244818],[-18.44118441184412,-75.02799677971805],[-18.4159841598416,-75.01955389336865],[-18.394383943839443,-75.00604527520959],[-18.369183691836923,-74.99422523432041],[-18.318783187831883,-74.97902803889146],[-18.30798307983079,-74.97902803889146],[-18.27198271982718,-74.98747092524087],[-18.25758257582575,-74.98915950251076],[-18.24678246782466,-74.98409377070111],[-18.225182251822503,-74.96551942073239],[-18.203582035820347,-74.9553879571131],[-18.18198181981819,-74.94863364803358],[-18.13158131581315,-74.93850218441428],[-18.149581495814942,-74.92499356625521],[-18.14598145981458,-74.90304206174675],[-18.127981279812786,-74.88446771177803],[-18.10638106381063,-74.87264767088885],[-18.05598055980559,-74.85913905272979],[-18.034380343803434,-74.8490075891105],[-18.01278012780128,-74.83212181641167],[-17.998379983799822,-74.82199035279237],[-17.915579155791562,-74.80172742555378],[-17.85437854378543,-74.79835027101402],[-17.825578255782546,-74.79159596193448],[-17.800378003780025,-74.77639876650554],[-17.82197821978218,-74.76795588015612],[-17.836378363783638,-74.75782441653683],[-17.850778507785066,-74.74262722110788],[-17.861578615786158,-74.72574144840905],[-17.87237872378722,-74.71392140751988],[-17.883178831788314,-74.71054425298011],[-17.89757897578974,-74.70885567571023],[-17.911979119791198,-74.70378994390057],[-17.919179191791926,-74.69872421209094],[-17.926379263792626,-74.68859274847163],[-17.92997929979299,-74.68352701666198],[-17.958779587795874,-74.66664124396316],[-17.965979659796602,-74.65819835761374],[-17.965979659796602,-74.63793543037515],[-17.95517955179551,-74.63286969856551],[-17.92277922779226,-74.63455827583539],[-17.811178111781118,-74.61767250313656],[-17.706777067770673,-74.58727811227868],[-17.674376743767425,-74.5855895350088],[-17.641976419764205,-74.59403242135821],[-17.623976239762385,-74.5855895350088],[-17.616776167761685,-74.55181798961114],[-17.605976059760593,-74.51973502148337],[-17.566375663756645,-74.51466928967372],[-17.57717577175771,-74.49947209424478],[-17.5879758797588,-74.48596347608571],[-17.60237602376023,-74.47583201246641],[-17.616776167761685,-74.47076628065676],[-17.609576095760957,-74.46570054884712],[-17.5951759517595,-74.45219193068806],[-17.5879758797588,-74.44712619887841],[-17.61317613176132,-74.40322318986146],[-17.56997569975698,-74.36945164446381],[-17.505175051750513,-74.34750013995533],[-17.454774547745473,-74.33736867633604],[-17.02637026370263,-74.32217148090709],[-16.59796597965979,-74.30697428547815],[-16.2631626316263,-74.34243440814568],[-15.92835928359284,-74.37789453081322],[-15.7519575195752,-74.43024042617958],[-15.640356403564027,-74.43024042617958],[-15.615156151561507,-74.42348611710005],[-15.615156151561507,-74.40153461259158],[-15.611556115561143,-74.3998460353217],[-15.597155971559715,-74.3998460353217],[-15.582755827558259,-74.39815745805181],[-15.561155611556103,-74.3998460353217],[-15.193951939519394,-74.3610087581144],[-15.280352803528018,-74.33905725360592],[-15.319953199531994,-74.31879432636732],[-15.334353343533422,-74.28839993550943],[-15.330753307533058,-74.2816456264299],[-15.323553235532358,-74.27489131735038],[-15.309153091530902,-74.26644843100097],[-15.305553055530538,-74.25631696738166],[-15.305553055530538,-74.23098830833342],[-15.301953019530202,-74.22085684471413],[-15.287552875528746,-74.21579111290448],[-15.222752227522278,-74.21241395836472],[-15.208352083520822,-74.20565964928518],[-15.204752047520458,-74.20059391747554],[-15.208352083520822,-74.193839608396],[-15.201152011520122,-74.18708529931648],[-15.193951939519394,-74.18201956750683],[-15.154351543515418,-74.16851094934776],[-15.136351363513626,-74.16682237207789],[-15.129151291512898,-74.16344521753811],[-15.121951219512198,-74.15669090845859],[-15.11475114751147,-74.13811655848988],[-15.111151111511106,-74.13136224941034],[-15.08955089550895,-74.1262965176007],[-15.017550175501754,-74.12967367214046],[-15.003150031500297,-74.1262965176007],[-14.970749707497077,-74.10941074490187],[-14.952749527495257,-74.10265643582234],[-14.826748267482657,-74.08070493131386],[-14.790747907479073,-74.06550773588492],[-14.733147331473305,-74.02160472686796],[-14.715147151471513,-74.00978468597879],[-14.693546935469357,-74.00134179962937],[-14.610746107461068,-73.98614460420043],[-14.574745747457456,-73.98783318147032],[-14.524345243452416,-73.97601314058113],[-14.517145171451716,-73.9709474087715],[-14.517145171451716,-73.96250452242208],[-14.52074520745208,-73.9405530179136],[-14.517145171451716,-73.93379870883408],[-14.434344343443428,-73.90847004978583],[-14.398343983439815,-73.88820712254724],[-14.362343623436232,-73.85781273168935],[-14.416344163441636,-73.84261553626041],[-14.59634596345964,-73.84261553626041],[-14.62874628746286,-73.83923838172063],[-14.65394653946538,-73.82910691810135],[-14.675546755467536,-73.81222114540252],[-14.69714697146972,-73.79026964089404],[-14.718747187471877,-73.78013817727475],[-14.743947439474397,-73.78520390908439],[-14.797947979479801,-73.80208968178322],[-15.24075240752407,-73.87638708165807],[-15.687156871568703,-73.94899590426301],[-16.176761767617677,-73.93886444064373],[-16.198361983619833,-73.9304215542943],[-16.241562415624145,-73.9017157407063],[-16.2631626316263,-73.89496143162677],[-16.461164611646097,-73.89496143162677],[-16.518765187651866,-73.88482996800747],[-16.554765547655478,-73.86456704076888],[-16.511565115651138,-73.85781273168935],[-16.435964359643577,-73.87638708165807],[-16.392763927639265,-73.87976423619783],[-16.19476194761947,-73.834172649911],[-15.91035910359102,-73.81728687721217],[-15.867158671586708,-73.80884399086275],[-15.823958239582396,-73.78858106362416],[-15.874358743587436,-73.76325240457592],[-15.92835928359284,-73.74974378641686],[-16.33156331563316,-73.70921793193968],[-16.374763747637473,-73.71934939555896],[-16.399963999639994,-73.72272655009873],[-16.493564935649346,-73.71428366374931],[-16.558365583655842,-73.69570931378061],[-16.583565835658362,-73.68557785016131],[-16.59796597965979,-73.6670035001926],[-16.601566015660154,-73.63323195479495],[-16.59796597965979,-73.60114898666718],[-16.587165871658698,-73.57413175034905],[-16.569165691656906,-73.54880309130081],[-16.54756547565475,-73.52854016406222],[-16.561965619656178,-73.50321150501398],[-16.558365583655842,-73.48463715504528],[-16.543965439654386,-73.46943995961632],[-16.43956439564394,-73.4137169097102],[-15.975159751597516,-73.30395938716782],[-15.957159571595696,-73.29045076900876],[-15.96075960759606,-73.26512210996052],[-15.97875978759788,-73.23979345091229],[-15.993159931599308,-73.21446479186405],[-15.97875978759788,-73.19420186462546],[-15.895958959589592,-73.1502988556085],[-15.870758707587072,-73.13847881471932],[-15.640356403564027,-73.1013301147819],[-15.568355683556831,-73.07937861027342],[-15.543155431554311,-73.07600145573366],[-15.427954279542803,-73.0911986511626],[-15.255152551525498,-73.07937861027342],[-15.24075240752407,-73.0726243011939],[-15.21555215552155,-73.0523613739553],[-15.204752047520458,-73.04729564214566],[-15.179551795517938,-73.0439184876059],[-14.985149851498505,-73.0523613739553],[-14.884348843488425,-73.042229910336],[-14.610746107461068,-73.08275576481319],[-14.509945099450988,-73.1199044647506],[-14.459544595445948,-73.15874174195791],[-14.441544415444156,-73.16549605103744],[-14.4271442714427,-73.1604303192278],[-14.380343803438024,-73.1317245056398],[-14.365943659436596,-73.1317245056398],[-14.340743407434076,-73.14523312379885],[-14.322743227432255,-73.14185596925908],[-14.2939429394294,-73.12834735110002],[-14.261542615426151,-73.1199044647506],[-14.229142291422903,-73.11821588748073],[-14.200342003420019,-73.1199044647506],[-14.131941319413187,-73.1317245056398],[-14.095940959409575,-73.13341308290967],[-14.049140491404899,-73.12497019656026],[-14.016740167401679,-73.1300359283699],[-13.998739987399858,-73.12834735110002],[-13.937539375393754,-73.11315015567108],[-13.915939159391598,-73.10639584659155],[-13.941139411394118,-73.09288722843249],[-13.991539915399159,-73.07769003300353],[-14.013140131401315,-73.06586999211436],[-13.980739807398066,-73.042229910336],[-13.95913959139591,-73.01521267401789],[-13.937539375393754,-72.9949497467793],[-13.894338943389414,-72.98650686042987],[-14.031140311403107,-72.90883230601527],[-14.171541715417135,-72.84635494702961],[-14.207542075420747,-72.83622348341032],[-14.221942219422175,-72.82778059706091],[-14.225542255422539,-72.81596055617172],[-14.225542255422539,-72.79738620620302],[-14.236342363423631,-72.78556616531384],[-14.250742507425059,-72.77712327896442],[-14.308343083430827,-72.75854892899571],[-14.387543875438752,-72.74166315629688],[-14.419944199442,-72.72308880632818],[-14.391143911439116,-72.71295734270888],[-14.365943659436596,-72.70958018816911],[-14.221942219422175,-72.711268765439],[-14.013140131401315,-72.73828600175712],[-13.897938979389778,-72.77036896988488],[-13.789937899378998,-72.78725474258371],[-13.653136531365305,-72.79232047439336],[-13.63153631536315,-72.79907478347289],[-13.577535775357745,-72.82609201979102],[-13.519935199351977,-72.84466636975974],[-13.491134911349121,-72.84635494702961],[-13.437134371343717,-72.83284632887054],[-13.379533795337949,-72.83622348341032],[-13.350733507335065,-72.83115775160067],[-13.28953289532896,-72.81089482436208],[-13.26433264332644,-72.80582909255243],[-13.181531815318152,-72.80414051528254],[-13.156331563315632,-72.79907478347289],[-13.127531275312748,-72.7889433198536],[-13.055530555305552,-72.7501060426463],[-13.026730267302668,-72.739974579027],[-13.001530015300148,-72.73490884721735],[-12.972729727297263,-72.73322026994747],[-12.9619296192962,-72.72815453813783],[-12.94392943929438,-72.711268765439],[-12.933129331293316,-72.70620303362935],[-12.915129151291495,-72.70451445635946],[-12.900729007290067,-72.7011373018197],[-12.889928899288975,-72.69269441547029],[-12.875528755287547,-72.68087437458111],[-12.86832868328682,-72.66905433369193],[-12.864728647286455,-72.66061144734252],[-12.86112861128612,-72.65385713826299],[-12.580325803258035,-72.58462547019779],[-12.537125371253694,-72.58462547019779],[-12.515525155251538,-72.5829368929279],[-12.454324543245434,-72.55929681114955],[-12.436324363243614,-72.5542310793399],[-12.411124111241094,-72.55591965660979],[-12.342723427234262,-72.5643625429592],[-12.321123211232106,-72.56098538841944],[-12.245522455224545,-72.54072246118085],[-11.899918999189993,-72.49175372035424],[-11.557915579155775,-72.44278497952764],[-11.5039150391504,-72.44616213406741],[-11.464314643146423,-72.44109640225777],[-11.388713887138863,-72.4174563204794],[-11.370713707137071,-72.40901343412999],[-11.356313563135615,-72.39719339324081],[-11.349113491134915,-72.38030762054198],[-11.334713347133459,-72.34484749787445],[-11.323913239132395,-72.32796172517563],[-11.338313383133823,-72.32796172517563],[-11.381513815138135,-72.32120741609609],[-11.406714067140655,-72.30601022066715],[-11.410314103141019,-72.30263306612738],[-11.377913779137799,-72.29419017977797],[-11.367113671136707,-72.28912444796832],[-11.359913599135979,-72.2806815616189],[-11.349113491134915,-72.2621072116502],[-11.341913419134187,-72.25704147984055],[-11.298712987129875,-72.24691001622125],[-11.287912879128783,-72.24015570714172],[-11.280712807128054,-72.23171282079231],[-11.273512735127355,-72.21820420263325],[-11.26991269912699,-72.20638416174407],[-11.273512735127355,-72.2030070072043],[-11.248312483124835,-72.19118696631513],[-11.241112411124107,-72.17598977088618],[-11.248312483124835,-72.16585830726689],[-11.273512735127355,-72.164169729997],[-11.359913599135979,-72.17767834815606],[-11.381513815138135,-72.17261261634641],[-11.359913599135979,-72.16248115272712],[-11.251912519125199,-72.13884107094876],[-11.24471244712447,-72.1337753391391],[-11.24471244712447,-72.12702103005958],[-11.251912519125199,-72.12195529824993],[-11.273512735127355,-72.11351241190052],[-11.251912519125199,-72.10000379374146],[-11.151111511115118,-72.08142944377275],[-11.125911259112598,-72.06792082561368],[-11.115111151111506,-72.06454367107392],[-11.032310323103218,-72.04934647564498],[-11.053910539105374,-72.03583785748592],[-11.075510755107558,-72.03583785748592],[-11.097110971109714,-72.03921501202568],[-11.11871118711187,-72.0375264347558],[-11.107911079110778,-72.02570639386661],[-11.097110971109714,-72.01895208478709],[-11.035910359103582,-72.00544346662802],[-10.981909819098178,-71.98011480757978],[-10.974709747097478,-71.97336049850026],[-10.974709747097478,-71.97167192123038],[-10.978309783097814,-71.96660618942073],[-10.978309783097814,-71.96154045761108],[-10.978309783097814,-71.95647472580143],[-10.974709747097478,-71.95309757126167],[-10.935109351093502,-71.92270318040377],[-10.924309243092438,-71.90919456224472],[-10.91710917109171,-71.89568594408566],[-10.924309243092438,-71.87880017138683],[-10.945909459094594,-71.86529155322776],[-10.938709387093866,-71.8517829350687],[-10.920709207092074,-71.83152000783011],[-10.848708487084878,-71.78086268973362],[-10.888308883088825,-71.75384545341551],[-10.949509495094958,-71.74202541252633],[-11.237512375123742,-71.74877972160586],[-11.52911529115292,-71.7555340306854],[-11.752317523175236,-71.70487671258891],[-11.986319863198617,-71.67954805354067],[-12.151921519215193,-71.63564504452371],[-12.17352173521735,-71.62382500363454],[-12.331923319233198,-71.49549313112345],[-12.367923679236782,-71.45159012210651],[-12.382323823238238,-71.39586707220037],[-12.34992349923499,-71.35702979499307],[-12.295922959229586,-71.33001255867495],[-12.209522095220933,-71.30299532235682],[-12.06552065520654,-71.2962410132773],[-11.878318783187837,-71.26078089060977],[-11.806318063180612,-71.25909231333988],[-11.658716587165856,-71.2759780860387],[-11.698316983169832,-71.30468389962671],[-11.716317163171624,-71.32832398140506],[-11.71271712717126,-71.3553412177232],[-11.683916839168376,-71.39248991766061],[-11.651516515165156,-71.40937569035944],[-11.608316083160815,-71.41612999943897],[-11.370713707137071,-71.42288430851849],[-11.29511295112951,-71.43808150394744],[-11.21951219512195,-71.46678731753545],[-11.071910719107194,-71.5495276037597],[-11.035910359103582,-71.56134764464888],[-10.960309603096022,-71.57654484007782],[-10.84150841508415,-71.58498772642724],[-10.758707587075861,-71.5782334173477],[-10.679506795067937,-71.55797049010911],[-10.600306003060012,-71.52757609925122],[-10.621906219062197,-71.5005588629331],[-10.639906399063989,-71.48029593569451],[-10.722707227072277,-71.42795004032814],[-10.733507335073341,-71.40937569035944],[-10.726307263072613,-71.38911276312085],[-10.704707047070457,-71.36209552680272],[-10.654306543065417,-71.3249468268653],[-10.596705967059677,-71.29792959054717],[-10.348303483034812,-71.23882938610129],[-10.099900999009975,-71.18141775892528],[-10.035100351003507,-71.15608909987704],[-9.988299882998831,-71.11894039993962],[-10.031500315003143,-71.08516885454196],[-10.092700927009275,-71.06490592730337],[-10.215102151021512,-71.03957726825513],[-10.351903519035176,-71.03282295917559],[-10.423904239042372,-71.01931434101652],[-10.449104491044892,-70.99060852742852],[-10.4311043110431,-70.97541133199958],[-10.395103951039516,-70.96190271384052],[-10.265502655026552,-70.93150832298264],[-10.071100711007091,-70.91124539574403],[-10.002700027000259,-70.91968828209346],[-9.941499414994155,-70.94501694114169],[-9.981099810998103,-70.98723137288876],[-9.977499774997739,-71.02775722736595],[-9.93789937899379,-71.06321735003348],[-9.883898838988387,-71.08348027727207],[-9.833498334983346,-71.09361174089138],[-9.451894518945181,-71.09867747270101],[-9.106291062910628,-71.18479491346504],[-9.055890558905588,-71.2067464179735],[-9.012690126901276,-71.2371408088314],[-8.991089910899092,-71.25909231333988],[-8.987489874898756,-71.2759780860387],[-9.001890018900184,-71.29286385873753],[-9.030690306903068,-71.30974963143636],[-9.066690666906652,-71.32325824959543],[-9.131491314913148,-71.36040694953283],[-9.138691386913877,-71.36716125861237],[-9.142291422914212,-71.38066987677144],[-9.138691386913877,-71.39417849493049],[-9.135091350913513,-71.40599853581968],[-9.127891278912784,-71.41612999943897],[-9.113491134911357,-71.42457288578838],[-9.102691026910264,-71.42626146305827],[-9.070290702907016,-71.41950715397873],[-9.045090450904496,-71.41781857670885],[-8.994689946899456,-71.42795004032814],[-8.969489694896936,-71.42795004032814],[-8.911889118891196,-71.42119573124862],[-8.854288542885428,-71.42119573124862],[-8.825488254882544,-71.42795004032814],[-8.749887498874983,-71.47354162661497],[-8.829088290882908,-71.53264183106087],[-8.767887678876775,-71.55290475829946],[-8.735487354873555,-71.56641337645853],[-8.713887138871371,-71.58498772642724],[-8.688686886868851,-71.64071077633336],[-8.685086850868515,-71.6559079717623],[-8.695886958869579,-71.66941658992137],[-8.74628746287462,-71.70149955804914],[-8.717487174871735,-71.70487671258891],[-8.692286922869215,-71.70487671258891],[-8.641886418864175,-71.69981098077926],[-8.61308613086129,-71.69981098077926],[-8.566285662856615,-71.71331959893833],[-8.42948429484295,-71.73020537163715],[-8.41148411484113,-71.73020537163715],[-8.393483934839338,-71.72345106255761],[-8.382683826838274,-71.70994244439856],[-8.382683826838274,-71.70318813531902],[-8.38628386283861,-71.6964338262395],[-8.389883898838974,-71.69136809442985],[-8.382683826838274,-71.68292520808043],[-8.371883718837182,-71.67617089900091],[-8.350283502835026,-71.6660394353816],[-8.31068310683105,-71.63395646725384],[-8.296282962829622,-71.62551358090442],[-8.22788227882279,-71.60525065366583],[-8.181081810818114,-71.58329914915736],[-8.163081630816293,-71.57654484007782],[-8.141481414814137,-71.57654484007782],[-8.116281162811617,-71.58161057188747],[-8.087480874808733,-71.59511919004653],[-8.073080730807305,-71.61031638547547],[-8.073080730807305,-71.63226788998395],[-8.091080910809097,-71.65759654903219],[-7.817478174781741,-71.67279374446113],[-7.788677886778856,-71.6677280126515],[-7.763477634776336,-71.6559079717623],[-7.738277382773816,-71.6474650854129],[-7.709477094770932,-71.6474650854129],[-7.651876518765192,-71.65759654903219],[-7.630276302763008,-71.65253081722254],[-7.605076050760488,-71.63395646725384],[-7.587075870758696,-71.61200496274536],[-7.597875978759788,-71.59343061277664],[-7.623076230762308,-71.58329914915736],[-7.709477094770932,-71.56303622191876],[-7.734677346773452,-71.55121618102959],[-7.759877598775972,-71.53601898560063],[-7.774277742777429,-71.51744463563193],[-7.777877778777793,-71.49380455385358],[-7.774277742777429,-71.44652439029686],[-7.763477634776336,-71.42795004032814],[-7.633876338763372,-71.3553412177232],[-7.587075870758696,-71.34520975410389],[-7.569075690756904,-71.3350782904846],[-7.561875618756176,-71.31143820870624],[-7.558275582755812,-71.20168068616387],[-7.56547565475654,-71.15102336806738],[-7.594275942759424,-71.11387466812997],[-7.687876878768776,-71.06321735003348],[-7.803078030780313,-71.02944580463583],[-7.853478534785353,-71.00580572285747],[-7.875078750787509,-70.99060852742852],[-7.893078930789301,-70.97034560018993],[-7.939879398793977,-70.89435962304522],[-7.961479614796133,-70.87240811853674],[-7.911079110791093,-70.84370230494874],[-7.8570785707856885,-70.82512795498002],[-7.493474934749344,-70.78460210050284],[-7.284672846728455,-70.79135640958236],[-6.949869498694994,-70.8572109231078],[-6.618666186661869,-70.9247540139031],[-6.604266042660413,-70.91462255028381],[-6.571865718657193,-70.8369479958692],[-6.553865538655373,-70.81499649136073],[-6.4314643146431365,-70.73732193694612],[-6.373863738637368,-70.72043616424729],[-6.316263162631628,-70.70861612335811],[-6.0138601386013875,-70.67991030977011],[-5.675456754567534,-70.73225620513648],[-5.653856538565378,-70.74407624602566],[-5.574655746557454,-70.80317645047154],[-5.56385563855639,-70.82006222317037],[-5.567455674556726,-70.84201372767885],[-5.578255782557818,-70.86227665491744],[-5.592655926559246,-70.87409669580663],[-5.61425614256143,-70.88422815942592],[-5.628656286562858,-70.89435962304522],[-5.6862568625686265,-70.95852555930075],[-5.69705697056969,-70.97541133199958],[-5.711457114571147,-71.01762576374665],[-5.72225722257221,-71.02944580463583],[-5.736657366573667,-71.03957726825513],[-6.021060210602087,-71.10880893632032],[-6.042660426604272,-71.11894039993962],[-6.0786607866078555,-71.14595763625773],[-6.1002610026100115,-71.15608909987704],[-6.064260642606428,-71.17466344984574],[-6.046260462604607,-71.1881720680048],[-6.042660426604272,-71.20168068616387],[-6.0570605706056995,-71.2185664588627],[-6.075060750607491,-71.23207507702175],[-6.193861938619392,-71.29117528146764],[-6.237062370623704,-71.3063724768966],[-6.280262802628016,-71.31143820870624],[-6.179461794617936,-71.35871837226296],[-6.150661506615052,-71.36547268134248],[-6.1218612186121675,-71.36378410407261],[-6.067860678606792,-71.34689833137378],[-5.891458914589151,-71.36040694953283],[-5.819458194581927,-71.34183259956413],[-5.592655926559246,-71.3536526404533],[-5.578255782557818,-71.35196406318343],[-5.53865538655387,-71.34014402229424],[-5.527855278552778,-71.34183259956413],[-5.49545495454953,-71.34858690864365],[-5.41265412654127,-71.34014402229424],[-5.297452974529733,-71.3553412177232],[-5.272252722527213,-71.3536526404533],[-5.221852218522173,-71.3350782904846],[-5.193051930519289,-71.33001255867495],[-4.797047970479696,-71.34520975410389],[-4.710647106471072,-71.3350782904846],[-4.599045990459899,-71.34520975410389],[-4.3866438664386465,-71.32325824959543],[-4.3470434704346985,-71.32663540413519],[-4.174241742417422,-71.37053841315213],[-4.170641706417058,-71.34520975410389],[-4.141841418414174,-71.34183259956413],[-4.077040770407706,-71.35702979499307],[-3.936639366393649,-71.36716125861237],[-3.9726397263972615,-71.34352117683402],[-3.9906399063990534,-71.314815363246],[-3.9834398343983253,-71.2962410132773],[-3.936639366393649,-71.29455243600741],[-3.889838898388973,-71.3063724768966],[-3.753037530375309,-71.36547268134248],[-3.727837278372789,-71.37222699042202],[-3.7170371703716967,-71.37898129950155],[-3.7098370983709685,-71.38742418585096],[-3.7062370623706045,-71.39924422674014],[-3.7098370983709685,-71.40937569035944],[-3.7134371343713326,-71.41950715397873],[-3.7134371343713326,-71.43132719486792],[-3.7134371343713326,-71.45327869937638],[-3.7062370623706045,-71.45665585391615],[-3.6450364503645005,-71.46341016299569],[-3.6234362343623445,-71.4718530493451],[-3.5910359103590963,-71.49887028566322],[-3.5730357303573044,-71.51069032655239],[-3.5514355143551484,-71.51575605836204],[-3.49383493834938,-71.52251036744158],[-3.472234722347224,-71.5208217901717],[-3.497434974349744,-71.48536166750415],[-3.497434974349744,-71.46847589480532],[-3.490234902349016,-71.45159012210651],[-3.46863468634686,-71.43808150394744],[-3.447034470344704,-71.43470434940768],[-3.400234002340028,-71.4431472357571],[-3.375033750337508,-71.44483581302697],[-3.3534335343353234,-71.43977008121732],[-3.3390333903338956,-71.42457288578838],[-3.3354333543335315,-71.3249468268653],[-3.3210332103321036,-71.30299532235682],[-3.3102331023310114,-71.28948670419777],[-3.2886328863288554,-71.28779812692788],[-3.2634326343263353,-71.29286385873753],[-3.2382323823238153,-71.30130674508695],[-3.169831698316983,-71.34352117683402],[-3.133831338313371,-71.35702979499307],[-2.9898298982989786,-71.36040694953283],[-2.9970299702997067,-71.33676686775448],[-3.0114301143011346,-71.314815363246],[-3.0150301503014987,-71.29792959054717],[-2.9934299342993427,-71.28104381784836],[-2.9646296462964585,-71.27428950876882],[-2.9394293942939385,-71.26922377695917],[-2.8854288542885342,-71.26753519968929],[-2.777427774277726,-71.28442097238812],[-2.7270272702726857,-71.28442097238812],[-2.6766267662676455,-71.25740373606999],[-2.6514265142651254,-71.28779812692788],[-2.485824858248577,-71.36884983588226],[-2.435424354243537,-71.38235845404131],[-2.3382233822338208,-71.39080134039072],[-2.2734227342273243,-71.37729272223166],[-2.2518225182251683,-71.37729272223166],[-2.2374223742237405,-71.38742418585096],[-2.2158221582215845,-71.42626146305827],[-2.197821978219764,-71.44652439029686],[-2.154621546215452,-71.47354162661497],[-2.133021330213296,-71.48198451296439],[-2.107821078210776,-71.48536166750415],[-2.08622086220862,-71.48198451296439],[-2.039420394203944,-71.46847589480532],[-2.0214202142021236,-71.45834443118603],[-1.9854198541985397,-71.42457288578838],[-1.9710197101970834,-71.42288430851849],[-1.9278192781927714,-71.43977008121732],[-1.9026190261902514,-71.44652439029686],[-1.8810188101880954,-71.44821296756673],[-1.8594185941859394,-71.44652439029686],[-1.7838178381783791,-71.41950715397873],[-1.7622176221762231,-71.41444142216909],[-1.737017370173703,-71.41612999943897],[-1.6146161461614668,-71.4414586584872],[-1.5966159661596464,-71.43808150394744],[-1.5786157861578545,-71.42795004032814],[-1.5606156061560625,-71.42626146305827],[-1.4886148861488664,-71.45834443118603],[-1.467014670146682,-71.45834443118603],[-1.3950139501394858,-71.4431472357571],[-1.3734137341373298,-71.4330157721378],[-1.3302133021330178,-71.40937569035944],[-1.3050130501304977,-71.4026213812799],[-1.3266132661326537,-71.35871837226296],[-1.3230132301322897,-71.34014402229424],[-1.3122131221312259,-71.31988109505565],[-1.2726127261272495,-71.29117528146764],[-1.2294122941229375,-71.26753519968929],[-1.1862118621186255,-71.25571515880011],[-1.1358113581135854,-71.25571515880011],[-0.9522095220952167,-71.30130674508695],[-0.9126091260912403,-71.31819251778577],[-0.8118081180811885,-71.37729272223166],[-0.8046080460804603,-71.39417849493049],[-0.8046080460804603,-71.42119573124862],[-0.8190081900818882,-71.43639292667756],[-0.8370083700837085,-71.44483581302697],[-0.8658086580865643,-71.44821296756673],[-0.8442084420844083,-71.50393601747287],[-0.8694086940869283,-71.54446187195005],[-0.9162091620916044,-71.58329914915736],[-0.9522095220952167,-71.62382500363454],[-0.8982089820898125,-71.63395646725384],[-0.8766087660876565,-71.64071077633336],[-0.8550085500855005,-71.6559079717623],[-0.8370083700837085,-71.66266228084184],[-0.7830078300783043,-71.6559079717623],[-0.7542075420754202,-71.6559079717623],[-0.6210062100620917,-71.68461378535031],[-0.5994059940599357,-71.69474524896961],[-0.5814058140581437,-71.70994244439856],[-0.5598055980559877,-71.73695968071668],[-0.5202052020520114,-71.76566549430468],[-0.4698046980469712,-71.75384545341551],[-0.2286022860228627,-71.62213642636466],[-0.0018000180001820354,-71.49887028566322],[0.01620016200163832,-71.4904273993138],[0.03420034200343025,-71.47354162661497],[0.059400594005950325,-71.43639292667756],[0.07740077400774226,-71.41950715397873],[0.23220232202322677,-71.35027548591354],[0.29340293402935913,-71.33676686775448],[0.41220412204123136,-71.32663540413519],[0.43740437404375143,-71.31988109505565],[0.5166051660516757,-71.27260093149894],[0.5454054540545599,-71.26246946787964],[0.635406354063548,-71.25571515880011],[0.6498064980649758,-71.25064942699046],[0.6930069300693162,-71.22363219067233],[0.7110071100711082,-71.2185664588627],[0.7974079740797606,-71.21350072705305],[0.9342093420934248,-71.17972918165539],[1.1934119341193536,-71.1493347907975],[1.452614526145254,-71.11894039993962],[1.4598145981459822,-71.11556324539984],[1.4742147421474385,-71.09698889543114],[1.4850148501485023,-71.09192316362149],[1.5318153181531784,-71.09023458635161],[1.5426154261542706,-71.08685743181184],[1.5678156781567907,-71.06997165911301],[1.5894158941589467,-71.06490592730337],[1.6110161101611027,-71.06490592730337],[1.6398163981639868,-71.0615287727636],[1.7262172621726393,-71.03282295917559],[1.8702187021870316,-71.01762576374665],[1.9494194941949559,-70.99060852742852],[2.1510215102151165,-70.97878848653934],[2.1654216542165443,-70.97372275472969],[2.1834218342183362,-70.95852555930075],[2.1978219782197925,-70.95514840476099],[2.4570245702457214,-70.91968828209346],[2.5002250022500334,-70.9044910866645],[2.5182251822518253,-70.90111393212474],[2.5290252902529176,-70.90280250939463],[2.5506255062550736,-70.90955681847416],[2.5614256142561374,-70.91124539574403],[2.5758257582575936,-70.90955681847416],[2.6118261182611775,-70.89773677758498],[2.633426334263362,-70.89267104577533],[2.691026910269102,-70.8960482003151],[2.712627126271258,-70.89435962304522],[2.755827558275598,-70.8859167366958],[2.8242282422824303,-70.89098246850544],[2.979029790297915,-70.88422815942592],[3.072630726307267,-70.89435962304522],[3.1878318783188035,-70.87240811853674],[3.2022320223202314,-70.8656538094572],[3.2238322383223874,-70.85889950037767],[3.2598325983259997,-70.8656538094572],[3.2814328143281557,-70.8656538094572],[3.3282332823328318,-70.8572109231078],[3.5730357303573044,-70.85214519129815],[3.6234362343623445,-70.84032515040897],[3.6918369183691766,-70.8369479958692],[3.774637746377465,-70.8166850686306],[3.821438214382141,-70.8166850686306],[3.807038070380713,-70.80148787320167],[3.828638286382869,-70.7981107186619],[3.846638466384661,-70.7981107186619],[3.8862388623886375,-70.80317645047154],[3.9078390783907935,-70.80317645047154],[4.012240122401238,-70.78291352323295],[4.095040950409498,-70.77447063688354],[4.224642246422462,-70.78460210050284],[4.271442714427138,-70.77615921415342],[4.318243182431843,-70.76265059599436],[4.336243362433635,-70.75420770964494],[4.343443434434363,-70.74914197783531],[4.350643506435063,-70.73732193694612],[4.357843578435791,-70.73394478240635],[4.372243722437219,-70.73225620513648],[4.390243902439039,-70.73225620513648],[4.401044010440103,-70.72719047332683],[4.397443974439739,-70.710304700628],[4.415444154441559,-70.71199327789788],[4.447844478444779,-70.72212474151718],[4.462244622446235,-70.72381331878707],[4.476644766447663,-70.72381331878707],[4.509045090450911,-70.71874758697741],[4.624246242462419,-70.72043616424729],[4.854648546485464,-70.68497604157976],[4.908649086490868,-70.68159888704],[4.948249482494845,-70.68835319611952],[4.9626496264962725,-70.68835319611952],[4.9770497704977,-70.68497604157976],[4.991449914499157,-70.67484457796046],[5.00225002250022,-70.66302453707128],[5.00225002250022,-70.65289307345199],[5.0058500585005845,-70.64276160983269],[5.020250202502041,-70.63769587802304],[5.074250742507445,-70.63431872348328],[5.211052110521109,-70.64951591891221],[5.218252182521837,-70.64782734164234],[5.2254522545225655,-70.64445018710258],[5.236252362523629,-70.64276160983269],[5.3154531545315535,-70.64951591891221],[5.340653406534074,-70.64951591891221],[5.416254162541634,-70.63094156894351],[5.441454414544154,-70.62925299167362],[5.58905589055891,-70.64951591891221],[5.61425614256143,-70.64107303256282],[5.635856358563586,-70.62587583713386],[5.668256682566835,-70.61405579624468],[5.679056790567898,-70.6123672189748],[5.7078570785707825,-70.61574437351457],[5.736657366573667,-70.6123672189748],[5.747457474574759,-70.61743295078445],[5.758257582575823,-70.62587583713386],[5.769057690576915,-70.63263014621339],[5.801458014580163,-70.63431872348328],[5.9742597425974395,-70.61067864170492],[5.99945999459996,-70.6123672189748],[6.046260462604636,-70.62587583713386],[6.0606606066060635,-70.62587583713386],[6.10026100261004,-70.60899006443503],[6.114661146611468,-70.60899006443503],[6.1830618306183,-70.61743295078445],[6.204662046620484,-70.62756441440375],[6.197461974619756,-70.6224986825941],[6.186661866618664,-70.60223575535551],[6.222662226622276,-70.60223575535551],[6.298262982629836,-70.62081010532421],[6.33426334263342,-70.61574437351457],[6.341463414634148,-70.61067864170492],[6.352263522635241,-70.59548144627598],[6.355863558635605,-70.59041571446633],[6.3666636666366685,-70.58872713719644],[6.381063810638125,-70.58872713719644],[6.427864278642801,-70.58197282811692],[6.449464494644957,-70.58197282811692],[6.467464674646749,-70.58703855992655],[6.485464854648541,-70.58872713719644],[6.517865178651789,-70.57859567357715],[6.535865358653581,-70.57521851903738],[6.557465574655765,-70.57859567357715],[6.625866258662597,-70.59885860081575],[6.647466474664753,-70.60223575535551],[6.705067050670522,-70.5937928690061],[6.723067230672314,-70.5937928690061],[6.7626676266762615,-70.59885860081575],[6.780667806678082,-70.59885860081575],[6.784267842678446,-70.5937928690061],[6.791467914679146,-70.58872713719644],[6.809468094680966,-70.58366140538679],[6.79506795067951,-70.55833274633855],[6.809468094680966,-70.53975839636985],[6.838268382683822,-70.53300408729032],[6.863468634686342,-70.5448241281795],[6.885068850688526,-70.55833274633855],[6.899468994689954,-70.56002132360844],[6.967869678696786,-70.52624977821078],[6.9858698586986065,-70.52287262367102],[7.000270002700034,-70.5245612009409],[7.108271082710843,-70.54651270544937],[7.144271442714427,-70.56170990087833],[7.151471514715155,-70.56002132360844],[7.158671586715883,-70.55495559179879],[7.165871658716583,-70.54651270544937],[7.173071730717311,-70.54144697363972],[7.180271802718039,-70.54144697363972],[7.227072270722715,-70.54651270544937],[7.241472414724143,-70.5448241281795],[7.252272522725235,-70.5346926645602],[7.248672486724871,-70.5161183145915],[7.263072630726327,-70.52118404640113],[7.3350733507335235,-70.52624977821078],[7.349473494734951,-70.52287262367102],[7.3746737467374714,-70.5144297373216],[7.385473854738564,-70.51105258278184],[7.403474034740356,-70.51105258278184],[7.450274502745032,-70.52118404640113],[7.515075150751528,-70.52118404640113],[7.554675546755476,-70.52793835548067],[7.569075690756904,-70.5245612009409],[7.579875798757996,-70.51274116005172],[7.594275942759424,-70.49585538735289],[7.612276122761244,-70.4857239237336],[7.630276302763036,-70.49585538735289],[7.644676446764464,-70.51105258278184],[7.669876698766984,-70.51780689186137],[7.6662766627666485,-70.48741250100349],[7.655476554765556,-70.47390388284443],[7.475474754747552,-70.37765497846111],[7.453874538745396,-70.35908062849239],[7.439474394743968,-70.33712912398393],[7.428674286742876,-70.31180046493569],[7.414274142741448,-70.25438883775968],[7.414274142741448,-70.22061729236202],[7.425074250742512,-70.2037315196632],[7.479074790747916,-70.19022290150413],[7.835478354783561,-70.16320566518601],[7.893078930789301,-70.17671428334506],[7.918279182791821,-70.19360005604389],[7.925479254792549,-70.21724013782224],[7.921879218792185,-70.24425737414037],[7.896678966789665,-70.3101118876658],[7.889478894788965,-70.3202433512851],[7.878678786787873,-70.32530908309474],[7.846278462784625,-70.33375196944415],[7.835478354783561,-70.34050627852369],[7.835478354783561,-70.36583493757193],[7.846278462784625,-70.3979179056997],[7.860678606786081,-70.42831229655759],[7.878678786787873,-70.4468866465263],[7.903879038790393,-70.46377241922512],[7.929079290792913,-70.47221530557454],[8.105481054810554,-70.4755924601143],[8.224282242822426,-70.49416681008302],[8.25308253082531,-70.49247823281313],[8.30348303483035,-70.47390388284443],[8.32868328683287,-70.46714957376489],[8.35388353883539,-70.46883815103477],[8.443884438844407,-70.48234676919384],[8.548285482854823,-70.47221530557454],[8.656286562865631,-70.44857522379618],[8.667086670866723,-70.44182091471664],[8.685086850868515,-70.42493514201783],[8.692286922869243,-70.42155798747805],[8.753487534875347,-70.42155798747805],[8.785887858878596,-70.41818083293829],[8.811088110881116,-70.40467221477923],[8.832688326883272,-70.38272071027076],[8.836288362883636,-70.35401489668274],[8.973089730897328,-70.37258924665146],[8.983889838898392,-70.37258924665146],[8.998289982899848,-70.3692120921117],[9.023490234902368,-70.35739205122252],[9.037890378903796,-70.35739205122252],[9.11709117091172,-70.37596640119122],[9.135091350913513,-70.37596640119122],[9.156691566915669,-70.35908062849239],[9.16749167491676,-70.33375196944415],[9.16749167491676,-70.30842331039591],[9.153091530915304,-70.28984896042721],[9.127891278912784,-70.2814060740778],[9.102691026910264,-70.27634034226814],[9.019890198902004,-70.2712746104585],[8.937089370893716,-70.24594595141025],[8.886688866888676,-70.21555156055237],[8.897488974889768,-70.18515716969448],[9.081090810908108,-70.08890826531116],[9.127891278912784,-70.0753996471521],[9.181891818918189,-70.07033391534246],[9.293492934929361,-70.07877680169187],[9.405094050940505,-70.10410546074012],[9.415894158941597,-70.10917119254975],[9.423094230942326,-70.11592550162929],[9.430294302943025,-70.13618842886788],[9.441094410944117,-70.14969704702695],[9.45189451894521,-70.15645135610647],[9.531095310953106,-70.18684574696437],[9.55269552695529,-70.19866578785354],[9.574295742957446,-70.21724013782224],[9.592295922959238,-70.22906017871144],[9.63549635496355,-70.23919164233072],[9.657096570965706,-70.24763452868014],[9.671496714967162,-70.26789745591873],[9.671496714967162,-70.2915375376971],[9.66069660696607,-70.31686619674534],[9.657096570965706,-70.34219485579357],[9.714697146971474,-70.3388177012538],[9.765097650976514,-70.3489491648731],[9.865898658986595,-70.39285217389005],[9.955899558995583,-70.44350949198653],[9.977499774997767,-70.45364095560583],[10.287102871028708,-70.5245612009409],[10.32310323103232,-70.53638124183009],[10.337503375033748,-70.53975839636985],[10.391503915039152,-70.53975839636985],[10.420304203042036,-70.54651270544937],[10.477904779047805,-70.57184136449762],[10.531905319053209,-70.57859567357715],[10.600306003060041,-70.60392433262538],[10.65790657906581,-70.61067864170492],[10.704707047070485,-70.63263014621339],[10.722707227072277,-70.63769587802304],[10.80910809108093,-70.64613876437245],[10.96750967509675,-70.68835319611952],[11.06831068310683,-70.70186181427859],[11.107911079110806,-70.69679608246894],[11.11871118711187,-70.7001732370087],[11.158311583115847,-70.7288790505967],[11.208712087120887,-70.74914197783531],[11.23751237512377,-70.75758486418471],[11.259112591125927,-70.75589628691483],[11.32031320313203,-70.74069909148588],[11.352713527135279,-70.73732193694612],[11.640716407164092,-70.77278205961366],[11.701917019170196,-70.77109348234377],[11.824318243182432,-70.78291352323295],[11.853118531185316,-70.78122494596307],[11.860318603186045,-70.77615921415342],[11.885518855188565,-70.75251913237507],[11.892718927189293,-70.74407624602566],[11.914319143191449,-70.73732193694612],[11.993519935199345,-70.72550189605694],[12.004320043200437,-70.72043616424729],[12.015120151201529,-70.71368185516776],[12.033120331203321,-70.68497604157976],[12.047520475204749,-70.67991030977011],[12.079920799207997,-70.67484457796046],[12.072720727207269,-70.6512044961821],[12.09072090720909,-70.60392433262538],[12.087120871208725,-70.5448241281795],[12.108721087210881,-70.52962693275055],[12.16632166321665,-70.5144297373216],[12.14112141121413,-70.4857239237336],[12.162721627216285,-70.47052672830466],[12.184321843218441,-70.46208384195525],[12.231122311223118,-70.45364095560583],[12.252722527225274,-70.4468866465263],[12.26712267122673,-70.43337802836723],[12.277922779227794,-70.41480367839853],[12.288722887228886,-70.39454075115994],[12.321123211232106,-70.37090066938157],[12.378723787237874,-70.35908062849239],[12.529925299252994,-70.35232631941287],[12.609126091260919,-70.3202433512851],[12.648726487264867,-70.31517761947545],[12.713527135271363,-70.32193192855497],[12.735127351273519,-70.3202433512851],[12.799927999279987,-70.29829184677662],[12.825128251282507,-70.29491469223686],[12.839528395283963,-70.26452030137897],[12.897128971289732,-70.24763452868014],[13.019530195301968,-70.24256879687049],[13.041130411304124,-70.23412591052107],[13.030330303303032,-70.21724013782224],[12.969129691296928,-70.1733371288053],[12.940329403294044,-70.16489424245589],[12.483124831248318,-70.12605696524858],[12.436324363243642,-70.10579403800999],[12.42552425524255,-70.0855311107714],[12.44352443524437,-70.07033391534246],[12.472324723247226,-70.06020245172316],[12.497524975249746,-70.0551367199135],[12.558725587255879,-70.05344814264363],[12.735127351273519,-70.07202249261233],[12.969129691296928,-70.04669383356409],[13.026730267302668,-70.05175956537374],[13.084330843308436,-70.0753996471521],[13.109531095310956,-70.09059684258105],[13.16353163531636,-70.15138562429682],[13.185131851318516,-70.16658281972578],[13.235532355323556,-70.18853432423424],[13.293132931329325,-70.24763452868014],[13.343533435334365,-70.27296318772838],[13.401134011340133,-70.28647180588744],[13.570335703357046,-70.28984896042721],[13.59913599135993,-70.29829184677662],[13.64953649536497,-70.32362050582486],[13.847538475384766,-70.34726058760322],[14.016740167401679,-70.34219485579357],[14.081540815408175,-70.34557201033334],[14.092340923409239,-70.34388343306345],[14.121141211412123,-70.33037481490439],[14.135541355413551,-70.32699766036463],[14.1679416794168,-70.32699766036463],[14.189541895418955,-70.33206339217428],[14.203942039420411,-70.32868623763451],[14.229142291422932,-70.30166900131638],[14.247142471424723,-70.29491469223686],[14.340743407434076,-70.30673473312604],[14.34434344343444,-70.30166900131638],[14.347943479434804,-70.29660326950673],[14.347943479434804,-70.28984896042721],[14.355143551435532,-70.28816038315732],[14.387543875438752,-70.28647180588744],[14.401944019440208,-70.28816038315732],[14.427144271442728,-70.29491469223686],[14.441544415444156,-70.29660326950673],[14.47034470344704,-70.29491469223686],[14.49554495544956,-70.28647180588744],[14.509945099450988,-70.28309465134768],[14.538745387453872,-70.28984896042721],[14.556745567455692,-70.2915375376971],[14.574745747457484,-70.2915375376971],[14.585545855458548,-70.29322611496697],[14.59634596345964,-70.29660326950673],[14.610746107461068,-70.30673473312604],[14.617946179461796,-70.3101118876658],[14.628746287462889,-70.30842331039591],[14.650346503465045,-70.30166900131638],[14.682746827468293,-70.30335757858627],[14.74754747547476,-70.32530908309474],[14.779947799478009,-70.33037481490439],[14.837548375483749,-70.32699766036463],[14.866348663486633,-70.32362050582486],[14.88074880748809,-70.31348904220556],[14.898748987489881,-70.29829184677662],[15.035550355503574,-70.2915375376971],[15.143551435514354,-70.3101118876658],[15.535955359553611,-70.33712912398393],[15.60075600756008,-70.33206339217428],[15.629556295562963,-70.33375196944415],[15.70155701557016,-70.36583493757193],[15.766357663576656,-70.37765497846111],[15.82755827558276,-70.37765497846111],[15.856358563585644,-70.35401489668274],[15.863558635586372,-70.32362050582486],[15.859958599586008,-70.31348904220556],[15.849158491584916,-70.30166900131638],[15.845558455584552,-70.29322611496697],[15.845558455584552,-70.2814060740778],[15.85275852758528,-70.26958603318862],[15.856358563585644,-70.25945456956931],[15.906759067590684,-70.21724013782224],[15.931959319593204,-70.20035436512342],[15.964359643596453,-70.19022290150413],[16.129961299613,-70.1733371288053],[16.140761407614093,-70.16658281972578],[16.16236162361625,-70.14800846975706],[16.176761767617677,-70.14125416067753],[16.201962019620197,-70.13956558340765],[16.284762847628485,-70.14969704702695],[16.518765187651894,-70.12605696524858],[16.576365763657634,-70.13112269705823],[16.626766267662674,-70.15138562429682],[16.637566375663766,-70.16151708791612],[16.64836648366483,-70.1733371288053],[16.651966519665194,-70.18515716969448],[16.65556655566556,-70.20035436512342],[16.64836648366483,-70.22061729236202],[16.644766447664495,-70.23074875598131],[16.63036630366304,-70.23750306506085],[16.612366123661246,-70.24256879687049],[16.62316623166231,-70.27802891953803],[16.626766267662674,-70.31180046493569],[16.619566195661974,-70.34219485579357],[16.59796597965979,-70.37427782392135],[16.576365763657634,-70.39622932842981],[16.543965439654414,-70.41818083293829],[16.51516515165153,-70.43506660563712],[16.486364863648646,-70.4468866465263],[16.504365043650438,-70.45364095560583],[16.871568715687175,-70.44013233744677],[16.92556925569255,-70.46377241922512],[16.911169111691123,-70.47728103738419],[16.92556925569255,-70.48403534646371],[16.94356943569437,-70.48403534646371],[16.961569615696163,-70.48065819192395],[17.12717127171271,-70.48065819192395],[17.195571955719572,-70.46546099649501],[17.217172171721728,-70.46377241922512],[17.483574835748357,-70.47896961465406],[17.749977499775014,-70.49416681008302],[17.78957789577896,-70.51105258278184],[17.875978759787614,-70.51780689186137],[17.908379083790834,-70.5144297373216],[18.091980919809203,-70.54313555090961],[18.329583295832975,-70.53975839636985],[18.33318333183334,-70.5346926645602],[18.33318333183334,-70.52793835548067],[18.34038340383404,-70.51949546913126],[18.37638376383765,-70.50767542824208],[18.4159841598416,-70.50260969643243],[18.498784987849888,-70.50260969643243],[18.311583115831155,-70.37427782392135],[18.304383043830455,-70.36583493757193],[18.30078300783009,-70.35739205122252],[18.297182971829727,-70.35063774214298],[18.286382863828635,-70.34557201033334],[18.268382683826843,-70.3388177012538],[18.261182611826115,-70.33375196944415],[18.253982539825415,-70.32530908309474],[18.31518315183152,-70.32362050582486],[18.448384483844848,-70.29998042404651],[18.505985059850616,-70.27802891953803],[18.574385743857448,-70.26452030137897],[18.714787147871476,-70.25945456956931],[18.783187831878337,-70.23919164233072],[18.804788047880493,-70.21892871509213],[18.822788227882285,-70.19866578785354],[18.837188371883713,-70.18178001515471],[18.873188731887325,-70.17164855153541],[18.941589415894157,-70.17164855153541],[19.15399153991541,-70.2037315196632],[19.290792907929074,-70.24763452868014],[19.276392763927646,-70.2510116832199],[19.261992619926218,-70.25270026048979],[19.233192331923334,-70.24932310595003],[19.215192151921514,-70.24932310595003],[19.200792007920086,-70.25438883775968],[19.1719917199172,-70.27465176499827],[19.200792007920086,-70.28816038315732],[19.269192691926918,-70.34050627852369],[19.297992979929802,-70.3675235148418],[19.27999279992801,-70.38103213300087],[19.251192511925126,-70.38947501935029],[19.233192331923334,-70.39960648296959],[19.22959229592297,-70.41480367839853],[19.222392223922242,-70.41986941020818],[19.19719197191972,-70.4266237192877],[19.17919179191793,-70.43168945109736],[19.168391683916838,-70.43844376017688],[19.14679146791468,-70.47390388284443],[19.143191431914317,-70.4857239237336],[19.135991359913618,-70.49585538735289],[19.017190171901717,-70.59717002354586],[18.991989919899197,-70.61067864170492],[18.937989379893793,-70.6224986825941],[18.916389163891637,-70.63431872348328],[18.919989199892,-70.65289307345199],[18.930789307893093,-70.67822173250023],[18.930789307893093,-70.73563335967624],[18.94518945189452,-70.75251913237507],[18.959589595895977,-70.75420770964494],[18.981189811898133,-70.74914197783531],[18.99558995589956,-70.74914197783531],[19.013590135901353,-70.75251913237507],[19.02799027990281,-70.76096201872448],[19.056790567905693,-70.78122494596307],[19.074790747907485,-70.79979929593178],[19.110791107911098,-70.8470794594885],[19.12879128791289,-70.86058807764756],[19.290792907929074,-70.91462255028381],[19.567995679956795,-70.94670551841158],[19.629196291962927,-70.94163978660193],[19.73359733597337,-70.89267104577533],[19.787597875978776,-70.89267104577533],[19.902799027990284,-70.91293397301392],[20.032400324003248,-70.91968828209346],[20.07560075600756,-70.92981974571275],[20.111601116011173,-70.93150832298264],[20.190801908019097,-70.90955681847416],[20.22680226802268,-70.9061796639344],[20.40320403204032,-70.92306543663322],[20.42120421204214,-70.92306543663322],[20.4968049680497,-70.90280250939463],[20.56160561605617,-70.9044910866645],[20.57960579605796,-70.90280250939463],[20.619206192061938,-70.88929389123557],[20.63720637206373,-70.8859167366958],[20.705607056070562,-70.88253958215603],[20.84600846008462,-70.8572109231078],[20.885608856088567,-70.85552234583791],[21.00441004410044,-70.87071954126685],[21.044010440104415,-70.86396523218733],[21.202412024120235,-70.81161933682097],[21.17361173611738,-70.78460210050284],[21.159211592115923,-70.75589628691483],[21.16641166411665,-70.7288790505967],[21.1988119881199,-70.70186181427859],[21.170011700117016,-70.67822173250023],[21.159211592115923,-70.66471311434117],[21.15561155611556,-70.64951591891221],[21.16641166411665,-70.63263014621339],[21.184411844118443,-70.6224986825941],[21.22401224012242,-70.6123672189748],[21.202412024120235,-70.5937928690061],[21.209612096120964,-70.57690709630727],[21.288812888128888,-70.50767542824208],[21.317613176131772,-70.49078965554325],[21.342813428134292,-70.48234676919384],[21.43281432814328,-70.47896961465406],[21.4508145081451,-70.46883815103477],[21.472414724147256,-70.44013233744677],[21.472414724147256,-70.43506660563712],[21.46521465214653,-70.42155798747805],[21.46521465214653,-70.41818083293829],[21.472414724147256,-70.40636079204911],[21.50121501215014,-70.38440928754063],[21.612816128161285,-70.27296318772838],[21.638016380163805,-70.25776599229944],[21.695616956169573,-70.23412591052107],[21.746017460174613,-70.22568302417166],[21.800018000180017,-70.23581448779096],[21.99441994419945,-70.30166900131638],[22.01962019620197,-70.31855477401521],[22.030420304203062,-70.32699766036463],[22.034020340203398,-70.33544054671404],[22.041220412204126,-70.34219485579357],[22.059220592205918,-70.3489491648731],[22.181621816218183,-70.38440928754063],[22.282422824228263,-70.436755182907],[22.33642336423364,-70.45532953287571],[22.44802448024481,-70.47728103738419],[22.476824768247695,-70.48910107827336],[22.527225272252736,-70.5161183145915],[22.552425524255256,-70.5245612009409],[22.577625776257776,-70.53975839636985],[22.57402574025741,-70.56170990087833],[22.55602556025562,-70.58197282811692],[22.5308253082531,-70.59548144627598],[22.48042480424806,-70.61067864170492],[22.167221672216726,-70.62418725986399],[21.85401854018542,-70.63769587802304],[21.825218252182538,-70.65458165072187],[22.026820268202698,-70.68328746430987],[22.250022500225015,-70.68497604157976],[22.293222932229327,-70.69679608246894],[22.34722347223473,-70.69341892792917],[22.368823688236887,-70.69510750519905],[22.325623256232575,-70.7592734414546],[22.343623436234367,-70.76265059599436],[22.37962379623798,-70.76096201872448],[22.415624156241563,-70.7694049050739],[22.433624336243383,-70.76433917326425],[22.451624516245175,-70.75758486418471],[22.469624696246967,-70.75420770964494],[22.48762487624876,-70.75758486418471],[22.54882548825489,-70.77784779142331],[22.56322563225632,-70.77784779142331],[22.595625956259568,-70.77278205961366],[22.725227252272532,-70.7694049050739],[22.761227612276116,-70.77784779142331],[22.83322833228334,-70.80486502774143],[22.854828548285496,-70.80824218228119],[22.9160291602916,-70.81330791409084],[22.926829268292693,-70.8166850686306],[22.94122941229412,-70.82681653224991],[22.94842948429485,-70.8285051095198],[22.955629556295577,-70.8285051095198],[22.97362973629737,-70.82343937771014],[23.182431824318257,-70.81330791409084],[23.258032580325818,-70.82343937771014],[23.2940329403294,-70.82175080044026],[23.322833228332286,-70.80993075955108],[23.412834128341302,-70.74407624602566],[23.438034380343822,-70.71705900970753],[23.434434344343458,-70.69173035065928],[23.448834488344886,-70.68666461884965],[23.45963459634598,-70.68497604157976],[23.488434884348862,-70.68328746430987],[23.50283502835029,-70.67991030977011],[23.513635136351382,-70.6714674234207],[23.520835208352082,-70.65964738253152],[23.53523535235354,-70.64951591891221],[23.55323553235533,-70.62925299167362],[23.556835568355694,-70.60561290989527],[23.549635496354966,-70.58534998265668],[23.520835208352082,-70.57521851903738],[23.55323553235533,-70.56846420995785],[23.6180361803618,-70.56508705541809],[23.64323643236432,-70.55157843725902],[23.66843668436684,-70.5245612009409],[23.68643686436866,-70.49416681008302],[23.71163711637118,-70.4266237192877],[23.751237512375127,-70.40298363750935],[24.107641076410772,-70.40973794658888],[24.176041760417604,-70.42493514201783],[24.276842768427684,-70.46039526468536],[24.410044100441013,-70.5346926645602],[24.420844208442105,-70.5448241281795],[24.428044280442805,-70.5633984781482],[24.43164431644317,-70.58197282811692],[24.438844388443897,-70.59885860081575],[24.45684456844569,-70.61405579624468],[24.345243452434545,-70.67315600069058],[24.320043200432025,-70.67991030977011],[24.29124291242914,-70.68159888704],[24.26604266042662,-70.67822173250023],[24.29124291242914,-70.71874758697741],[24.320043200432025,-70.74069909148588],[24.478444784447845,-70.79642214139201],[24.50004500045,-70.80993075955108],[24.53244532445325,-70.83863657313908],[24.554045540455405,-70.8470794594885],[24.96804968049682,-70.94501694114169],[25.259652596525967,-70.98047706380923],[25.439654396543972,-70.98047706380923],[25.526055260552624,-70.9939856819683],[25.569255692556936,-70.9939856819683],[25.562055620556208,-70.98891995015865],[25.55485554855548,-70.97878848653934],[25.54765547655478,-70.97541133199958],[25.576455764557664,-70.97203417745982],[25.59805598055982,-70.97709990926947],[25.619656196561976,-70.98723137288876],[25.644856448564497,-70.99736283650806],[25.66285662856629,-71.00073999104782],[25.67365673656738,-71.00073999104782],[25.702457024570265,-70.99060852742852],[25.716857168571693,-70.99060852742852],[25.73125731257312,-70.9939856819683],[25.760057600576005,-71.00242856831771],[25.78165781657816,-71.00580572285747],[25.828458284582865,-71.00749430012735],[25.91485914859149,-71.03451153644548],[25.98325983259832,-71.041265845525],[26.102061020610222,-71.04295442279489],[26.159661596615962,-71.03451153644548],[26.21726217262173,-71.01593718647676],[26.26766267662677,-71.00918287739724],[26.390063900639007,-71.03113438190572],[26.44406444064441,-71.03282295917559],[26.480064800648023,-71.01931434101652],[26.490864908649087,-71.01931434101652],[26.505265052650543,-71.0226914955563],[26.516065160651607,-71.0226914955563],[26.606066060660623,-71.00749430012735],[26.634866348663508,-70.99905141377793],[26.674466744667455,-70.96527986838029],[26.699666996669976,-70.96190271384052],[26.768067680676808,-70.96021413657064],[26.793267932679328,-70.96527986838029],[26.80406804068042,-70.9635912911104],[26.822068220682212,-70.95514840476099],[26.82926829268294,-70.94670551841158],[26.840068400684004,-70.94163978660193],[26.861668616686188,-70.94332836387181],[26.890468904689044,-70.94163978660193],[26.908469084690864,-70.93150832298264],[26.926469264692656,-70.9247540139031],[26.951669516695176,-70.92981974571275],[26.98046980469806,-70.93826263206216],[27.275672756727573,-70.98891995015865],[27.29727297272973,-70.98554279561888],[27.304473044730457,-70.96865702292006],[27.29727297272973,-70.95177125022123],[27.29727297272973,-70.93657405479229],[27.318873188731885,-70.9247540139031],[27.300873008730093,-70.91124539574403],[27.2828728287283,-70.90786824120427],[27.243272432724325,-70.90786824120427],[27.218072180721805,-70.9044910866645],[27.19647196471965,-70.89773677758498],[27.178471784717857,-70.8859167366958],[27.160471604716065,-70.87071954126685],[27.18207182071822,-70.85552234583791],[27.203672036720377,-70.84539088221861],[27.225272252722533,-70.83863657313908],[27.250472504725053,-70.83863657313908],[27.29727297272973,-70.8470794594885],[27.318873188731885,-70.84370230494874],[27.329673296732977,-70.82512795498002],[27.351273512735133,-70.83863657313908],[27.37287372873729,-70.83357084132943],[27.39087390873908,-70.82175080044026],[27.412474124741266,-70.81161933682097],[27.44127441274412,-70.80824218228119],[27.470074700747006,-70.81161933682097],[27.49887498874989,-70.80993075955108],[27.545675456754566,-70.79304498685225],[27.57447574475745,-70.78966783231249],[27.585275852758542,-70.78291352323295],[27.603276032760334,-70.7592734414546],[27.617676176761762,-70.74745340056542],[27.628476284762854,-70.74069909148588],[28.02808028080281,-70.72719047332683],[28.056880568805695,-70.72212474151718],[28.08568085680858,-70.71199327789788],[28.114481144811464,-70.70692754608824],[28.172081720817204,-70.71705900970753],[28.200882008820088,-70.71537043243765],[28.233282332823336,-70.70355039154848],[28.254882548825492,-70.68835319611952],[28.283682836828376,-70.67822173250023],[28.316083160831624,-70.67822173250023],[28.45288452884529,-70.69341892792917],[28.474484744847445,-70.68835319611952],[28.49608496084963,-70.67822173250023],[28.55368553685537,-70.65964738253152],[28.611286112861137,-70.63263014621339],[28.64008640086402,-70.62418725986399],[28.72288722887231,-70.61067864170492],[28.77328773287735,-70.5937928690061],[28.834488344883454,-70.59548144627598],[29.021690216902186,-70.57184136449762],[29.036090360903614,-70.56846420995785],[29.05049050490507,-70.56170990087833],[29.07569075690759,-70.54313555090961],[29.09009090090902,-70.53638124183009],[29.144091440914423,-70.52962693275055],[29.151291512915122,-70.5245612009409],[29.162091620916215,-70.50092111916254],[29.172891728917307,-70.49078965554325],[29.201692016920163,-70.48234676919384],[29.295292952929543,-70.46208384195525],[29.331293312933127,-70.46208384195525],[29.345693456934583,-70.4570181101456],[29.363693636936375,-70.44013233744677],[29.374493744937467,-70.43337802836723],[29.439294392943935,-70.41142652385876],[29.4428944289443,-70.408049369319],[29.446494464944664,-70.39622932842981],[29.450094500945028,-70.39285217389005],[29.46089460894609,-70.39116359662017],[29.478894788947883,-70.39285217389005],[29.48609486094861,-70.39285217389005],[29.601296012960148,-70.37258924665146],[29.748897488974904,-70.36583493757193],[29.763297632976332,-70.36245778303217],[29.77049770497706,-70.35570347395263],[29.77769777697779,-70.3388177012538],[29.78489784897849,-70.32868623763451],[29.79569795697958,-70.32362050582486],[29.813698136981372,-70.31686619674534],[29.842498424984257,-70.31180046493569],[30.166501665016654,-70.28478322861756],[30.170101701017018,-70.28309465134768],[30.18090180901811,-70.27296318772838],[30.184501845018445,-70.2712746104585],[30.191701917019174,-70.27296318772838],[30.20610206102063,-70.28478322861756],[30.21330213302133,-70.28816038315732],[30.23850238502385,-70.28647180588744],[30.296102961029618,-70.27802891953803],[30.353703537035386,-70.27802891953803],[30.44010440104401,-70.26620887864885],[30.630906309063107,-70.2611431468392],[30.706507065070667,-70.27465176499827],[30.738907389073887,-70.27296318772838],[30.936909369093712,-70.21386298328248],[30.965709657096568,-70.21386298328248],[31.016110161101608,-70.22737160144155],[31.044910449104492,-70.2324373332512],[31.2789127891279,-70.23750306506085],[31.41211412114123,-70.22399444690178],[31.49491494914949,-70.2037315196632],[31.610116101161026,-70.20035436512342],[31.844118441184406,-70.14631989248718],[31.995319953199527,-70.134499851598],[32.04572045720457,-70.11761407889917],[32.26532265322655,-70.08721968804129],[32.312123121231224,-70.06526818353281],[32.34092340923411,-70.05851387445328],[32.36612366123663,-70.05344814264363],[32.56772567725679,-70.05175956537374],[32.62532625326253,-70.03993952448457],[32.67212672126723,-70.02305375178574],[32.69372693726939,-70.01798801997609],[32.72252722527227,-70.01798801997609],[32.74412744127443,-70.01292228816645],[32.75852758527586,-69.99941367000739],[32.76932769327695,-69.98252789730856],[32.78372783727838,-69.96564212460973],[32.80532805328053,-69.95551066099043],[32.85212852128521,-69.94537919737114],[32.87012870128703,-69.9301820019422],[32.87732877328773,-69.90485334289396],[32.87012870128703,-69.88459041565537],[32.85212852128521,-69.8710817974963],[32.82332823328235,-69.86601606568665],[32.83052830528305,-69.85588460206735],[32.848528485284874,-69.83393309755888],[32.85212852128521,-69.82549021120947],[32.85212852128521,-69.81873590212993],[32.841328413284145,-69.79678439762145],[32.83772837728378,-69.78496435673227],[32.85212852128521,-69.78496435673227],[32.8629286292863,-69.78158720219251],[32.87012870128703,-69.7731443158431],[32.866528665286666,-69.75963569768405],[32.88812888128882,-69.75963569768405],[32.898928989289914,-69.75119281133462],[32.90252902529025,-69.73599561590568],[32.91332913329134,-69.72079842047674],[32.924129241292434,-69.71066695685744],[32.949329493294954,-69.6954697614285],[32.96012960129602,-69.6853382978092],[32.974529745297474,-69.67182967965014],[32.98532985329854,-69.66000963876095],[32.992529925299266,-69.64481244333201],[32.99612996129963,-69.62623809336331],[32.99612996129963,-69.6177952070139],[32.992529925299266,-69.61272947520425],[32.98532985329854,-69.60090943431507],[32.981729817298174,-69.59415512523553],[32.98532985329854,-69.587400816156],[32.992529925299266,-69.58064650707647],[32.99612996129963,-69.57220362072707],[33.00333003330033,-69.5198577253607],[32.999729997299994,-69.50466052993175],[32.99612996129963,-69.49790622085222],[32.981729817298174,-69.47595471634375],[32.97812978129781,-69.46920040726421],[32.981729817298174,-69.46413467545457],[32.981729817298174,-69.45738036637503],[32.981729817298174,-69.45062605729551],[32.967329673296746,-69.38646012103996],[32.95292952929529,-69.35944288472184],[32.92772927729277,-69.34424568929289],[32.790927909279105,-69.29021121665664],[32.75132751327513,-69.26319398033853],[32.70092700927009,-69.24293105309994],[32.531725317253176,-69.11966491239849],[32.52092520925211,-69.10784487150931],[32.513725137251384,-69.09433625335026],[32.50292502925029,-69.08420478973096],[32.488524885248864,-69.0808276351912],[32.52452524525245,-69.05549897614296],[32.531725317253176,-69.04874466706343],[32.52812528125281,-69.03692462617424],[32.51012510125102,-68.99133303988741],[32.50292502925029,-68.96093864902952],[32.49932499324993,-68.93054425817164],[32.506525065250656,-68.9035270218535],[32.56052560525606,-68.8562468582968],[32.57132571325715,-68.85286970375702],[32.58572585725858,-68.85118112648715],[32.6109261092611,-68.84442681740762],[32.83772837728378,-68.75155506756407],[33.21573215732158,-68.66881478133982],[33.71613716137162,-68.67388051314947],[34.21294212942129,-68.67725766768923],[34.299342993429946,-68.68738913130852],[34.364143641436414,-68.72622640851583],[34.38574385743857,-68.79376949931114],[34.37134371343714,-68.80558954020032],[34.09054090540906,-68.85286970375702],[34.08334083340833,-68.85962401283656],[34.07614076140763,-68.88664124915468],[34.06534065340654,-68.88832982642457],[34.047340473404745,-68.88664124915468],[34.03294032940329,-68.90014986731374],[34.00774007740077,-68.92716710363187],[33.97533975339755,-68.94743003087046],[33.83133831338313,-69.00990738985612],[33.60453604536045,-69.0521218216032],[33.62973629736297,-69.06056470795261],[33.770137701377024,-69.05381039887307],[33.78093780937809,-69.05887613068272],[33.79893798937991,-69.08251621246107],[33.80973809738097,-69.09095909881049],[33.86733867338674,-69.11291060331897],[33.921339213392145,-69.12304206693827],[34.36054360543605,-69.13317353055756],[34.389343893438934,-69.12641922147803],[34.450544505445066,-69.08758194427072],[34.46854468544686,-69.0808276351912],[34.58734587345873,-69.06731901703213],[34.61974619746198,-69.0706961715719],[34.65214652146523,-69.08420478973096],[34.608946089460915,-69.09095909881049],[34.65214652146523,-69.11122202604909],[34.666546665466655,-69.11459918058884],[34.734947349473515,-69.11291060331897],[34.75294752947531,-69.11797633512862],[34.77454774547746,-69.12641922147803],[34.83934839348393,-69.14161641690697],[34.85734857348575,-69.15005930325638],[34.88974889748897,-69.17201080776486],[34.943749437494375,-69.19227373500345],[35.012150121501236,-69.22942243494087],[35.12375123751238,-69.25981682579877],[35.19935199351994,-69.29358837119642],[35.17415174151742,-69.31216272116512],[35.15615156151563,-69.3239827620543],[35.145351453514536,-69.34086853475313],[35.15975159751599,-69.37126292561102],[35.16695166951669,-69.39996873919902],[35.15615156151563,-69.42529739824727],[35.13095130951311,-69.44724890275575],[35.10575105751059,-69.45906894364492],[35.127351273512744,-69.49452906631245],[35.138151381513836,-69.50803768447152],[35.15615156151563,-69.51648057082093],[35.228152281522824,-69.53674349805952],[35.202952029520304,-69.57895792980659],[35.15615156151563,-69.59584370250542],[35.10935109351095,-69.60597516612472],[35.07335073350734,-69.63130382517295],[35.08055080550807,-69.67014110238026],[35.12375123751238,-69.69884691596826],[35.24255242552425,-69.73599561590568],[35.26775267752677,-69.73768419317557],[35.31815318153181,-69.7343070386358],[35.34335343353433,-69.72924130682615],[35.38655386553867,-69.71573268866709],[35.43335433354335,-69.71235553412733],[35.48375483754839,-69.70053549323815],[35.55935559355595,-69.69884691596826],[35.706957069570706,-69.6667639478405],[35.9049590495905,-69.6667639478405],[36.00216002160022,-69.65325532968143],[36.05256052560526,-69.63805813425249],[36.08136081360814,-69.6363695569826],[36.1029610296103,-69.64481244333201],[36.14616146161461,-69.70053549323815],[36.16056160561607,-69.70391264777791],[36.21096210962111,-69.68871545234896],[36.369363693636956,-69.65832106149108],[36.33336333363334,-69.61948378428377],[36.369363693636956,-69.60597516612472],[36.41616416164163,-69.60597516612472],[36.502565025650256,-69.62117236155366],[36.704167041670416,-69.62961524790308],[36.75096750967509,-69.63805813425249],[36.75816758167582,-69.64143528879225],[36.75816758167582,-69.64987817514167],[36.75816758167582,-69.66000963876095],[36.75816758167582,-69.67014110238026],[36.76896768967691,-69.69378118415861],[36.78336783367834,-69.70391264777791],[36.91656916569167,-69.75119281133462],[36.97416974169744,-69.79003008854193],[36.99576995769959,-69.79678439762145],[36.97056970569707,-69.81535874759017],[36.97056970569707,-69.83899882936852],[36.98136981369814,-69.86263891114689],[37.00657006570066,-69.88121326111559],[37.03537035370354,-69.88627899292524],[37.0569705697057,-69.87952468384572],[37.07497074970752,-69.86770464295654],[37.10377103771037,-69.86432748841676],[37.128971289712894,-69.86263891114689],[37.21177211772118,-69.8423759839083],[37.240572405724066,-69.832244520289],[37.2369723697237,-69.81535874759017],[37.21897218972191,-69.79847297489134],[37.19377193771939,-69.78158720219251],[37.280172801728014,-69.72924130682615],[37.49257492574927,-69.7545699658744],[37.59697596975971,-69.72924130682615],[37.550175501755035,-69.71404411139721],[37.52857528575288,-69.70391264777791],[37.506975069750695,-69.69040402961885],[37.53937539375394,-69.6853382978092],[37.78777787777878,-69.68196114326943],[37.78057780577805,-69.68702687507908],[37.77337773377735,-69.69715833869839],[37.76977769777699,-69.70222407050802],[37.776977769777716,-69.70391264777791],[37.791377913779144,-69.71235553412733],[37.79857798577987,-69.71573268866709],[37.791377913779144,-69.72248699774661],[37.78057780577805,-69.72755272955627],[37.76977769777699,-69.72924130682615],[37.758977589775895,-69.72924130682615],[37.784177841778416,-69.75625854314427],[37.841778417784184,-69.75963569768405],[38.03978039780398,-69.71742126593698],[38.061380613806136,-69.71742126593698],[38.219782197821985,-69.75625854314427],[38.24138241382414,-69.76639000676357],[38.24858248582487,-69.78158720219251],[38.244982449824505,-69.79509582035158],[38.219782197821985,-69.8018501294311],[38.118981189811905,-69.81873590212993],[38.02178021780219,-69.84913029298782],[38.043380433804344,-69.86263891114689],[38.0649806498065,-69.86770464295654],[38.11538115381154,-69.87277037476618],[38.14058140581406,-69.88121326111559],[38.20538205382056,-69.92511627013255],[38.244982449824505,-69.94200204283138],[38.2557825578256,-69.9487563519109],[38.26658266582666,-69.9673307018796],[38.2629826298263,-69.9774621654989],[38.25218252182523,-69.98421647457843],[38.22338223382235,-70.01461086543632],[38.219782197821985,-70.02474232905563],[38.23778237782378,-70.02811948359539],[38.295382953829545,-70.03318521540504],[38.33138331383316,-70.02980806086526],[38.35658356583568,-70.02305375178574],[38.38538385383853,-70.01798801997609],[38.41778417784178,-70.02474232905563],[38.446584465844666,-70.03825094721469],[38.46818468184682,-70.05175956537374],[38.536585365853654,-70.10917119254975],[38.561785617856174,-70.12099123343894],[38.68418684186844,-70.14969704702695],[38.712987129871294,-70.16320566518601],[38.712987129871294,-70.18853432423424],[38.788587885878854,-70.18853432423424],[38.939789397893975,-70.20542009693307],[39.015390153901535,-70.19866578785354],[39.05139051390515,-70.18853432423424],[39.06939069390694,-70.18178001515471],[39.07659076590767,-70.1733371288053],[39.07659076590767,-70.15476277883658],[39.065790657906575,-70.14631989248718],[38.92178921789218,-70.10917119254975],[38.813788137881374,-70.0551367199135],[38.79578795787958,-70.02811948359539],[38.80298802988031,-69.98759362911821],[39.08019080190803,-69.90654192016383],[39.159391593915956,-69.90316476562407],[39.191791917919176,-69.89303330200477],[39.19539195391954,-69.860950333877],[39.209792097920996,-69.86263891114689],[39.22059220592206,-69.860950333877],[39.234992349923516,-69.85757317933724],[39.24579245792458,-69.85081887025771],[39.17739177391775,-69.84744171571793],[39.159391593915956,-69.84406456117817],[39.1377913779138,-69.82886736574923],[39.13059130591307,-69.81029301578052],[39.1377913779138,-69.76301285222381],[39.16299162991632,-69.72586415228639],[39.209792097920996,-69.70728980231767],[39.49419494194942,-69.68702687507908],[39.53739537395376,-69.66845252511037],[39.56259562595628,-69.62961524790308],[39.5877958779588,-69.59922085704518],[39.63819638196384,-69.60935232066448],[39.62379623796238,-69.6363695569826],[39.64539645396454,-69.65156675241155],[39.677796777967785,-69.65663248422119],[39.70659706597067,-69.65832106149108],[39.69219692196924,-69.64818959787178],[39.6417964179642,-69.62623809336331],[39.66699666996672,-69.60428658885483],[39.702997029970305,-69.59922085704518],[39.778597785977865,-69.61104089793436],[39.7677976779768,-69.59415512523553],[39.75699756997571,-69.58571223888612],[39.74619746197462,-69.58402366161624],[39.728197281972825,-69.5890893934259],[39.7137971379714,-69.587400816156],[39.69939699396994,-69.57389219799694],[39.69219692196924,-69.55531784802824],[39.68499684996851,-69.54180922986917],[39.7677976779768,-69.52492345717035],[39.79659796597966,-69.52661203444023],[39.73899738997392,-69.49115191177269],[39.7677976779768,-69.4894633345028],[39.78219782197823,-69.48608617996304],[39.78939789397896,-69.47764329361362],[39.79659796597966,-69.46413467545457],[39.81819818198184,-69.4219202437075],[39.82539825398254,-69.4117887800882],[39.84339843398436,-69.3932144301195],[39.8469984699847,-69.38477154377009],[39.84339843398436,-69.36788577107126],[39.83259832598327,-69.35944288472184],[39.7137971379714,-69.31553987570489],[39.702997029970305,-69.30709698935547],[39.7137971379714,-69.29021121665664],[39.74619746197462,-69.28345690757712],[39.81459814598148,-69.28007975303736],[39.803798037980386,-69.24799678490959],[39.785797857978594,-69.22942243494087],[39.73539735397355,-69.19565088954322],[39.810998109981114,-69.18045369411428],[39.73539735397355,-69.10784487150931],[39.70659706597067,-69.06731901703213],[39.71019710197103,-69.0217274307453],[39.72459724597246,-68.9930216171573],[39.73899738997392,-68.97613584445847],[39.803798037980386,-68.92547852636199],[39.81819818198184,-68.9052155991234],[39.84339843398436,-68.8562468582968],[39.85059850598506,-68.83429535378832],[39.85779857798579,-68.82922962197867],[39.89739897398974,-68.82247531289914],[40.264602646026475,-68.80221238566055],[40.372603726037255,-68.77519514934242],[40.397803978039775,-68.76337510845325],[40.44460444604448,-68.73466929486524],[40.469804698047,-68.72622640851583],[40.523805238052375,-68.7194720994363],[40.700207002070016,-68.72622640851583],[40.71460714607147,-68.73129214032548],[40.73980739807399,-68.74648933575442],[40.750607506075056,-68.74986649029418],[40.76140761407615,-68.7481779130243],[40.76860768607688,-68.74142360394477],[40.77940779407794,-68.73466929486524],[40.88740887408875,-68.709340635817],[40.99180991809919,-68.65192900864099],[41.03861038610387,-68.63504323594216],[41.03861038610387,-68.6215346177831],[41.01341013410135,-68.59620595873486],[41.02781027810278,-68.5928288041951],[41.05661056610566,-68.58945164965533],[41.06741067410675,-68.58776307238544],[41.07821078210782,-68.5826973405758],[41.09621096210964,-68.57087729968663],[41.1070110701107,-68.56581156787698],[41.11781117811179,-68.56412299060709],[41.20781207812078,-68.56074583606733],[41.22941229412294,-68.55568010425768],[41.27261272612728,-68.53710575428897],[41.35541355413554,-68.5151542497805],[41.45261452614528,-68.50671136343108],[41.50301503015032,-68.49320274527201],[41.54261542615427,-68.47293981803342],[41.981819818198204,-68.407085304508],[42.107821078210776,-68.41046245904776],[42.19422194221943,-68.38682237726941],[42.28782287822878,-68.37837949092],[42.53622536225362,-68.38006806818987],[42.52542525425255,-68.35136225460187],[42.52182521825219,-68.33616505917293],[42.52902529025292,-68.32772217282351],[42.543425434254345,-68.3192792864741],[42.57942579425796,-68.28550774107644],[42.550625506255074,-68.27875343199692],[42.543425434254345,-68.26524481383785],[42.54702547025471,-68.24498188659926],[42.56142561425614,-68.22303038209078],[42.57222572225723,-68.21458749574137],[42.58302583025832,-68.20952176393172],[42.59742597425975,-68.20445603212207],[42.60822608226084,-68.19939030031243],[42.63342633426336,-68.17743879580395],[42.644226442264426,-68.17068448672441],[42.65862658626588,-68.16561875491477],[42.84942849428495,-68.13691294132677],[42.827828278282794,-68.09638708684957],[42.86022860228604,-68.10314139592911],[42.99702997029971,-68.09132135503994],[43.10863108631088,-68.06430411872181],[43.40383403834039,-68.03390972786391],[43.44343443434434,-68.04066403694345],[43.508235082350836,-68.05923838691217],[43.774637746377465,-68.0457297687531],[43.81063810638108,-68.03897545967357],[43.85743857438575,-68.01026964608556],[43.875438754387545,-68.00520391427591],[43.94023940239404,-67.99844960519638],[43.95463954639547,-67.99169529611686],[43.969039690396926,-67.98156383249756],[43.98703987039872,-67.97143236887825],[44.001440014400146,-67.96805521433849],[44.15624156241563,-67.9781866779578],[44.49464494644948,-67.95961232798908],[44.52344523445234,-67.96298948252885],[44.5990459904599,-68.00351533700604],[44.63144631446315,-68.00858106881569],[44.65664656646567,-68.00520391427591],[44.689046890468916,-67.98325240976745],[44.714247142471436,-67.9764981006879],[44.804248042480424,-67.9764981006879],[44.829448294482944,-67.96636663706862],[44.78264782647827,-67.93259509167096],[44.61704617046172,-67.859986269066],[44.66024660246603,-67.8110175282394],[44.7178471784718,-67.78400029192127],[44.973449734497365,-67.73165439655492],[45.03825038250383,-67.73165439655492],[45.1030510305103,-67.74516301471398],[45.131851318513185,-67.74685159198387],[45.16065160651607,-67.74178586017422],[45.21825218252184,-67.72152293293563],[45.24705247052472,-67.71476862385609],[45.3478534785348,-67.71476862385609],[45.36225362253623,-67.71139146931633],[45.391053910539114,-67.69619427388739],[45.40545405454054,-67.6945056966175],[45.452254522545246,-67.70970289204644],[45.502655026550286,-67.71308004658621],[45.527855278552806,-67.71983435566574],[45.55665556655566,-67.72996581928504],[45.585455854558546,-67.74516301471398],[45.57465574655748,-67.7637373646827],[45.55665556655566,-67.78062313738153],[45.53865538655387,-67.7924431782707],[45.517055170551714,-67.79750891008034],[45.5458554585546,-67.81777183731893],[45.58185581855818,-67.82452614639847],[45.661056610566106,-67.81777183731893],[45.68985689856899,-67.80257464188999],[45.71505715057151,-67.78062313738153],[45.74025740257403,-67.76036021014292],[45.77265772657728,-67.75867163287305],[45.75105751057512,-67.71983435566574],[45.74025740257403,-67.70801431477656],[45.819458194581955,-67.66579988302949],[45.84825848258484,-67.65735699668008],[46.21546215462155,-67.65229126487043],[46.24426244262443,-67.6641113057596],[46.29106291062911,-67.7046371602368],[46.3090630906309,-67.71476862385609],[46.37026370263703,-67.74347443744409],[46.40266402664028,-67.74516301471398],[46.4350643506435,-67.72996581928504],[46.39906399063992,-67.69788285115726],[46.388263882638824,-67.67930850118856],[46.38466384663846,-67.65904557394997],[46.39186391863919,-67.63202833763184],[46.406264062640645,-67.62020829674266],[46.42426424264244,-67.61514256493301],[46.557465574655765,-67.61851971947277],[46.61146611466114,-67.61176541039325],[46.62226622266223,-67.58981390588477],[46.589865898658985,-67.57799386499559],[46.34866348663488,-67.56955097864618],[46.305463054630565,-67.55941951502689],[46.298262982629836,-67.55604236048711],[46.29466294662947,-67.54928805140759],[46.287462874628744,-67.52395939235934],[46.28386283862838,-67.51213935147017],[46.273062730627316,-67.50369646512075],[46.312663126631264,-67.47330207426286],[46.23346233462337,-67.44797341521462],[46.25866258662589,-67.41589044708685],[46.247862478624796,-67.39900467438802],[46.25146251462516,-67.37367601533978],[46.26586265862659,-67.34834735629155],[46.280262802628044,-67.33483873813249],[46.37746377463776,-67.29600146092518],[46.4278642786428,-67.28249284276612],[46.47826478264784,-67.27573853368659],[46.582665826658285,-67.2740499564167],[46.66186661866618,-67.28755857457577],[46.6870668706687,-67.28924715184564],[46.766267662676626,-67.27573853368659],[46.816668166681666,-67.27911568822636],[46.867068670686706,-67.26729564733718],[46.892268922689226,-67.26391849279742],[46.91386913869138,-67.26729564733718],[46.9390693906939,-67.27236137914683],[46.98226982269824,-67.28924715184564],[46.95346953469536,-67.31288723362401],[46.96426964269642,-67.3331501608626],[46.993069930699306,-67.34665877902167],[47.025470254702554,-67.35341308810119],[47.30627306273064,-67.37029886080002],[47.43947439474397,-67.40913613800733],[47.327873278732795,-67.43446479705557],[47.309873098731,-67.43953052886522],[47.277472774727755,-67.45810487883392],[47.26307263072633,-67.46654776518334],[47.24867248672487,-67.46823634245322],[47.201872018720195,-67.46317061064357],[46.92106921069211,-67.50707361966052],[46.95706957069572,-67.51382792874006],[46.97146971469715,-67.52395939235934],[46.98226982269824,-67.53915658778828],[46.975069750697514,-67.54591089686782],[46.95706957069572,-67.55266520594735],[46.9390693906939,-67.56279666956665],[46.9318693186932,-67.58137101953535],[46.97866978669788,-67.57968244226548],[47.126271262712635,-67.54422231959794],[47.227072270722715,-67.54591089686782],[47.327873278732795,-67.56617382410641],[47.30627306273064,-67.58305959680524],[47.27027270272703,-67.59994536950407],[47.23427234272344,-67.61176541039325],[47.20547205472056,-67.61514256493301],[47.16947169471695,-67.61176541039325],[47.14067140671406,-67.61514256493301],[47.11547115471154,-67.62865118309207],[47.09747097470975,-67.65735699668008],[47.19467194671947,-67.65904557394997],[47.129871298713,-67.67930850118856],[47.09747097470975,-67.68437423299821],[47.0578705787058,-67.68437423299821],[47.09387093870939,-67.7046371602368],[47.13347133471336,-67.7046371602368],[47.16947169471695,-67.6945056966175],[47.22347223472235,-67.67086561483914],[47.24867248672487,-67.6556684194102],[47.26667266672666,-67.65060268760055],[47.6338763387634,-67.66073415121984],[47.612276122761244,-67.69112854207773],[47.569075690756904,-67.70970289204644],[47.30627306273064,-67.74347443744409],[47.32427324273243,-67.76204878741281],[47.360273602736044,-67.77386882830199],[47.48267482674828,-67.79413175554058],[47.504275042750436,-67.7924431782707],[47.543875438754384,-67.78400029192127],[47.55107551075511,-67.77893456011164],[47.554675546755476,-67.77386882830199],[47.55827558275584,-67.76880309649233],[47.64827648276483,-67.74685159198387],[47.87507875078751,-67.6556684194102],[47.91107911079112,-67.64891411033067],[48.13428134281344,-67.65229126487043],[48.166681666816686,-67.65735699668008],[48.31068310683108,-67.71814577839586],[48.382683826838274,-67.72996581928504],[48.45468454684547,-67.72996581928504],[48.44388443884441,-67.74685159198387],[48.42948429484295,-67.7536059010634],[48.41148411484116,-67.75529447833327],[48.389883898839,-67.75867163287305],[48.17028170281705,-67.88869208265402],[48.20268202682027,-67.9089550098926],[48.22788227882279,-67.93259509167096],[48.22068220682209,-67.93766082348061],[48.206282062820634,-67.9477922870999],[48.19548195481957,-67.95285801890955],[48.217082170821726,-67.96298948252885],[48.231482314823154,-68.00520391427591],[48.249482494824946,-68.02040110970486],[48.274682746827466,-68.02546684151451],[48.382683826838274,-68.02377826424463],[48.400684006840066,-68.01195822335545],[48.41508415084152,-67.99676102792651],[48.433084330843315,-67.97987525522768],[48.5230852308523,-67.94103797802038],[48.57348573485734,-67.91233216443237],[48.61308613086132,-67.87856061903472],[48.6490864908649,-67.8414119190973],[48.710287102871035,-67.7519173237935],[48.71748717487176,-67.72996581928504],[48.72468724687246,-67.70294858296691],[48.71748717487176,-67.68268565572832],[48.69588695886961,-67.66748846029938],[48.6490864908649,-67.6455369557909],[48.63828638286384,-67.63709406944149],[48.62388623886238,-67.62020829674266],[48.59868598685986,-67.60163394677394],[48.59508595085953,-67.58981390588477],[48.59148591485916,-67.55941951502689],[48.56988569885701,-67.51720508327982],[48.56628566285664,-67.49525357877134],[48.58068580685807,-67.47499065153275],[48.60588605886059,-67.46148203337368],[48.63108631086311,-67.4513505697544],[49.012690126901276,-67.39393894257839],[49.06669066690668,-67.37705316987956],[49.095490954909565,-67.37198743806991],[49.120691206912085,-67.37198743806991],[49.17469174691749,-67.37705316987956],[49.18189181891819,-67.36861028353013],[49.19989199892001,-67.35679024264095],[49.20709207092071,-67.35003593356143],[49.196291962919645,-67.33821589267225],[49.20709207092071,-67.32470727451319],[49.221492214922165,-67.3145758108939],[49.23229232292323,-67.30613292454447],[49.25749257492575,-67.29769003819507],[49.329493294932945,-67.28924715184564],[49.32589325893261,-67.28080426549624],[49.30069300693009,-67.24703272009859],[49.289892898929,-67.23858983374917],[49.31149311493115,-67.22170406105035],[49.3438934389344,-67.22170406105035],[49.37629376293765,-67.22508121559011],[49.405094050940505,-67.22339263832023],[49.35109351093513,-67.18286678384304],[49.25749257492575,-67.17273532022375],[49.08829088290884,-67.19468682473222],[49.11349113491136,-67.17104674295386],[49.0918909189092,-67.15584954752492],[49.06669066690668,-67.15078381571527],[49.045090450904524,-67.15247239298515],[48.73188731887319,-67.22001548378046],[48.6418864188642,-67.21832690651058],[48.584285842858435,-67.20988402016117],[48.53028530285303,-67.19299824746234],[48.47628476284763,-67.18793251565269],[48.44748447484474,-67.18117820657315],[48.39348393483937,-67.15922670206469],[48.37188371883721,-67.14234092936586],[48.35388353883539,-67.12207800212727],[48.34668346683469,-67.09506076580914],[48.33948339483396,-67.06466637495126],[48.34308343083433,-67.03596056136325],[48.36108361083612,-67.01569763412465],[48.5878858788588,-66.93802307971005],[49.05949059490595,-66.88567718434369],[49.11349113491136,-66.86710283437498],[49.1638916389164,-66.83839702078697],[49.2178921789218,-66.81813409354838],[49.271892718927205,-66.82995413443756],[49.28629286292863,-66.84177417532673],[49.329493294932945,-66.8839886070738],[49.33669336693367,-66.9025629570425],[49.33669336693367,-66.93971165697994],[49.347493474934765,-66.95490885240888],[49.253892538925385,-66.9717946251077],[49.16029160291603,-67.00050043869571],[49.21069210692107,-66.99881186142582],[49.22509225092253,-67.0021890159656],[49.23949239492396,-67.00894332504512],[49.26469264692648,-67.03427198409337],[49.279092790927905,-67.04271487044278],[49.31149311493115,-67.04609202498254],[49.487894878948794,-67.02245194320419],[49.7938979389794,-67.02751767501383],[49.82629826298265,-67.03764913863313],[49.85509855098553,-67.05284633406208],[49.88389883898839,-67.07817499311031],[49.89469894698948,-67.10688080669831],[49.87309873098732,-67.13389804301644],[49.82989829898301,-67.16598101114421],[49.7938979389794,-67.20988402016117],[49.783097830978306,-67.21832690651058],[49.664296642966434,-67.27911568822636],[49.69669696696968,-67.28924715184564],[49.732697326973266,-67.2858699973059],[49.765097650976514,-67.2740499564167],[49.7938979389794,-67.255475606448],[49.82269822698228,-67.24027841101905],[49.90189901899021,-67.23690125647929],[49.93429934299343,-67.22508121559011],[49.94509945099452,-67.2149497519708],[49.97029970299704,-67.1862439383828],[49.98109981099813,-67.17442389749363],[49.99549995499956,-67.16598101114421],[50.00990009900099,-67.16091527933457],[50.02430024300244,-67.15922670206469],[50.07830078300785,-67.15922670206469],[50.092700927009275,-67.15416097025503],[50.11070110701107,-67.12714373393692],[50.12870128701289,-67.11870084758749],[50.14670146701468,-67.11532369304774],[50.16470164701647,-67.11532369304774],[50.200702007020084,-67.12038942485738],[50.301503015030164,-67.16260385660445],[50.402304023040244,-67.17104674295386],[50.47070470704708,-67.19468682473222],[50.585905859058585,-67.2166383292407],[50.60030600306004,-67.22170406105035],[50.62550625506256,-67.23690125647929],[50.64350643506435,-67.24196698828894],[50.661506615066145,-67.24365556555881],[50.71910719107191,-67.23858983374917],[50.69390693906939,-67.22170406105035],[50.63990639906399,-67.20819544289128],[50.61830618306183,-67.18455536111293],[50.65070650706508,-67.1778010520334],[50.68310683106833,-67.17611247476351],[50.7479074790748,-67.18286678384304],[50.76590765907659,-67.18793251565269],[50.812708127081265,-67.21157259743104],[50.82710827108272,-67.2149497519708],[50.881108811088126,-67.2166383292407],[50.81990819908199,-67.1778010520334],[50.85230852308524,-67.16429243387434],[50.895508955089554,-67.16091527933457],[50.97830978309784,-67.1676695884141],[50.96030960309605,-67.1575381247948],[50.945909459094594,-67.14571808390562],[50.94230942309423,-67.13220946574656],[50.956709567095686,-67.11363511577785],[50.9279092790928,-67.12038942485738],[50.89910899108992,-67.11532369304774],[50.84150841508415,-67.09674934307903],[50.69390693906939,-67.08155214765009],[50.654306543065445,-67.06466637495126],[50.636306363063625,-67.06128922041148],[50.603906039060405,-67.05960064314161],[50.585905859058585,-67.05622348860184],[50.55710557105573,-67.05284633406208],[50.45990459904601,-67.06804352949102],[50.47430474304744,-67.05960064314161],[50.48150481504817,-67.0494691795223],[50.48150481504817,-67.03596056136325],[50.477904779047805,-67.0207633659343],[50.48150481504817,-67.00725474777525],[50.49230492304923,-67.00050043869571],[50.52470524705248,-66.99543470688606],[50.452704527045285,-66.97854893418723],[50.427504275042764,-66.96335173875829],[50.445504455044556,-66.93971165697994],[50.49230492304923,-66.9025629570425],[50.51390513905139,-66.89243149342322],[50.528305283052845,-66.88905433888345],[50.53910539105391,-66.88736576161357],[50.549905499055,-66.8839886070738],[50.56790567905679,-66.85865994802556],[50.578705787057885,-66.85021706167615],[50.762307623076225,-66.82151124808814],[50.78390783907841,-66.80969120719897],[50.830708307083086,-66.77423108453144],[50.77670776707768,-66.75565673456272],[50.76590765907659,-66.75565673456272],[50.74430744307443,-66.7674767754519],[50.73350733507337,-66.7674767754519],[50.704707047070485,-66.76072246637237],[50.6759067590676,-66.75903388910248],[50.61470614706147,-66.76241104364225],[50.585905859058585,-66.7674767754519],[50.53910539105391,-66.78605112542061],[50.51030510305105,-66.79280543450014],[50.49950499504996,-66.79111685723026],[50.47070470704708,-66.77591966180131],[50.452704527045285,-66.77254250726155],[50.34830348303484,-66.77423108453144],[50.28710287102871,-66.76916535272179],[50.24030240302403,-66.74383669367354],[50.22230222302224,-66.68642506649752],[50.21510215102151,-66.66109640744929],[50.19710197101972,-66.61043908935281],[50.18990189901899,-66.58679900757446],[50.193501935019356,-66.56991323487563],[50.200702007020084,-66.55809319398645],[50.22230222302224,-66.53445311220808],[50.225902259022604,-66.52263307131891],[50.23310233102333,-66.49055010319114],[50.24030240302403,-66.47535290776219],[50.32310323103232,-66.39430119880782],[50.4239042390424,-66.33857814890169],[50.53910539105391,-66.30311802623416],[50.79470794707947,-66.2794779444558],[51.0539105391054,-66.25583786267744],[51.10431104311044,-66.24232924451837],[51.15471154711548,-66.22206631727978],[51.179911799118,-66.21531200820026],[51.20871208712089,-66.21362343093037],[51.323913239132395,-66.22713204908943],[51.35271352713528,-66.22206631727978],[51.36711367113671,-66.20349196731108],[51.38151381513816,-66.1815404628026],[51.40311403114032,-66.16296611283389],[51.47871478714788,-66.12075168108683],[51.61551615516157,-66.0937344447687],[51.77391773917739,-66.03801139486256],[52.220322203222054,-65.97215688133714],[52.53352533525336,-65.9670911495275],[52.84672846728469,-65.96202541771785],[53.27873278732787,-65.8995480587322],[53.40113401134013,-65.90123663600207],[53.735937359373594,-65.84551358609595],[53.789937899379,-65.84551358609595],[53.95913959139591,-65.88435086330324],[54.013140131401315,-65.88941659511289],[54.239942399423995,-65.87590797695384],[54.71154711547118,-65.90292521327196],[55.18315183151833,-65.93163102685996],[55.61155611556117,-66.02787993124328],[55.7519575195752,-66.10724306292776],[55.76995769957699,-66.11568594927718],[55.791557915579176,-66.11906310381694],[55.841958419584216,-66.11737452654705],[55.85995859958601,-66.11906310381694],[55.84555845558455,-66.14945749467483],[55.87075870758707,-66.1815404628026],[55.91395913959141,-66.20855769912072],[55.94635946359463,-66.22544347181955],[56.03636036360365,-66.24739497632802],[56.05436054360544,-66.25752643994733],[56.108361083610845,-66.29974087169438],[56.12636126361264,-66.30987233531368],[56.14436144361446,-66.31493806712334],[56.16596165961661,-66.3183152216631],[56.18756187561877,-66.31662664439321],[56.209162091620925,-66.32000379893299],[56.21996219962202,-66.33182383982216],[56.22716227162272,-66.34870961252099],[56.24156241562417,-66.3672839624897],[56.26316263162633,-66.38079258064876],[56.309963099631005,-66.39936693061748],[56.33156331563316,-66.41118697150665],[56.37836378363784,-66.45340140325371],[56.39996399963999,-66.46184428960314],[56.410764107641086,-66.42807274420548],[56.425164251642514,-66.40780981696687],[56.4467644676447,-66.39767835334759],[56.51516515165153,-66.3875468897283],[56.80676806768068,-66.406121239697],[57.206372063720636,-66.53107595766832],[57.238772387723884,-66.54796173036715],[57.256772567725676,-66.5614703485262],[57.274772747727496,-66.5817332757648],[57.28557285572856,-66.60368478027328],[57.281972819728196,-66.62563628478175],[57.249572495724976,-66.65265352109988],[57.249572495724976,-66.66447356198906],[57.281972819728196,-66.69317937557706],[57.289172891728924,-66.70162226192647],[57.281972819728196,-66.708376571006],[57.263972639726404,-66.71513088008554],[57.24237242372425,-66.7185080346253],[57.01557015570157,-66.7286394982446],[57.00117001170014,-66.72695092097472],[56.96516965169653,-66.71006514827589],[56.954369543695435,-66.708376571006],[56.795967959679615,-66.71513088008554],[56.74196741967421,-66.71006514827589],[56.62316623166234,-66.68135933468788],[56.56556565565657,-66.65265352109988],[56.56556565565657,-66.61212766662268],[56.53316533165332,-66.62057055297211],[56.51516515165153,-66.63239059386129],[56.50436504365044,-66.65434209836975],[56.49716497164974,-66.68642506649752],[56.37836378363784,-66.63239059386129],[56.34596345963462,-66.62394770751186],[56.27756277562776,-66.62057055297211],[56.24876248762487,-66.61212766662268],[56.209162091620925,-66.58679900757446],[56.1947619476195,-66.58342185303468],[56.17676176761768,-66.5817332757648],[56.14076140761409,-66.58342185303468],[56.057960579605805,-66.57329038941539],[56.02556025560256,-66.57497896668526],[55.99315993159934,-66.58511043030457],[56.07236072360723,-66.6003076257335],[56.08676086760869,-66.61043908935281],[56.08676086760869,-66.63239059386129],[56.06516065160653,-66.64589921202034],[56.01116011160113,-66.66109640744929],[56.08676086760869,-66.67629360287823],[56.11916119161194,-66.67798218014812],[56.133561335613365,-66.679670757418],[56.15156151561516,-66.69149079830717],[56.158761587615885,-66.70331083919635],[56.16956169561698,-66.71175372554578],[56.209162091620925,-66.70162226192647],[56.22716227162272,-66.70162226192647],[56.360363603636046,-66.72357376643495],[56.417964179641814,-66.74383669367354],[56.47916479164792,-66.74214811640365],[56.5079650796508,-66.74383669367354],[56.486364863648646,-66.75903388910248],[56.35676356763568,-66.77591966180131],[56.37116371163714,-66.7961825890399],[56.3819638196382,-66.8063140526592],[56.38916389163893,-66.80800262992908],[56.40716407164072,-66.80462547538932],[56.443164431644334,-66.80462547538932],[56.51516515165153,-66.79111685723026],[56.543965439654414,-66.79111685723026],[56.392763927639294,-66.83164271170745],[56.46476464764649,-66.85865994802556],[56.500765007650074,-66.86203710256532],[56.619566195661974,-66.84852848440627],[56.65916659166592,-66.85190563894604],[56.695166951669535,-66.86203710256532],[56.65916659166592,-66.89074291615333],[56.7059670596706,-66.89918580250276],[56.68076680766808,-66.92113730701122],[56.65916659166592,-66.9329573479004],[56.6339663396634,-66.93971165697994],[56.601566015660154,-66.9430888115197],[56.43236432364324,-66.92789161609076],[56.417964179641814,-66.92282588428111],[56.410764107641086,-66.91607157520157],[56.40356403564036,-66.90762868885216],[56.392763927639294,-66.89918580250276],[56.36396363963641,-66.8839886070738],[56.335163351633526,-66.87554572072439],[56.27036270362706,-66.87554572072439],[56.3207632076321,-66.90931726612204],[56.29196291962921,-66.92958019336064],[56.1947619476195,-66.93464592517029],[56.15516155161552,-66.95153169786911],[56.27396273962739,-66.96504031602817],[56.309963099631005,-66.97686035691736],[56.29556295562958,-66.98023751145712],[56.28116281162812,-66.98530324326677],[56.2559625596256,-66.99881186142582],[56.342363423634254,-67.00050043869571],[56.367563675636774,-67.010631902315],[56.28836288362885,-67.05284633406208],[56.209162091620925,-67.08324072491996],[55.856358563585644,-67.17104674295386],[55.76275762757629,-67.20819544289128],[55.73395733957341,-67.26391849279742],[56.15516155161552,-67.1963754020021],[56.14436144361446,-67.23014694739976],[56.08676086760869,-67.34834735629155],[56.09036090360905,-67.35847881991084],[56.10476104761048,-67.37367601533978],[56.11916119161194,-67.38718463349885],[56.133561335613365,-67.39562751984826],[56.16956169561698,-67.40913613800733],[56.18036180361804,-67.3821189016892],[56.19116191161913,-67.35679024264095],[56.209162091620925,-67.33652731540236],[56.26316263162633,-67.2943128836553],[56.29556295562958,-67.27573853368659],[56.309963099631005,-67.26729564733718],[56.3279632796328,-67.24196698828894],[56.33876338763389,-67.23183552466963],[56.4467644676447,-67.16429243387434],[56.55836558365584,-67.11025796123809],[56.68076680766808,-67.07479783857055],[56.83916839168393,-67.05622348860184],[56.853568535685355,-67.05960064314161],[56.86796867968681,-67.06466637495126],[56.8859688596886,-67.06804352949102],[56.896768967689695,-67.06297779768137],[56.90756907569076,-67.05284633406208],[56.921969219692215,-67.04778060225243],[56.96876968769689,-67.04609202498254],[57.27837278372783,-67.08492930218985],[57.34317343173433,-67.08492930218985],[57.357573575735756,-67.08830645672961],[57.307173071730716,-67.04271487044278],[57.34317343173433,-67.03427198409337],[57.37557375573758,-67.02920625228371],[57.49437494374945,-67.03427198409337],[57.50877508775088,-67.03258340682348],[57.5267752677527,-67.02245194320419],[57.54837548375485,-67.0021890159656],[57.56277562775628,-66.99374612961618],[57.59517595175953,-66.99036897507642],[57.63117631176311,-66.99374612961618],[57.667176671766725,-67.0021890159656],[57.72117721177213,-67.02414052047406],[57.82917829178294,-67.03258340682348],[57.839978399784,-67.03764913863313],[57.86157861578616,-67.05622348860184],[57.87237872378725,-67.06128922041148],[57.958779587795874,-67.07479783857055],[57.97317973179733,-67.08155214765009],[57.994779947799486,-67.10181507488868],[58.00558005580058,-67.1085693839682],[58.02358023580237,-67.11025796123809],[58.07398073980741,-67.09337218853926],[58.12438124381245,-67.09337218853926],[58.135181351813515,-67.09843792034891],[58.14598145981461,-67.11025796123809],[58.153181531815335,-67.12545515666703],[58.14958149581497,-67.14065235209597],[58.13878138781388,-67.15247239298515],[58.07038070380705,-67.1778010520334],[58.0379803798038,-67.1963754020021],[58.019980199802006,-67.21832690651058],[58.04518045180453,-67.22508121559011],[58.07038070380705,-67.22001548378046],[58.27198271982721,-67.14740666117551],[58.42678426784269,-67.14909523844538],[58.41958419584196,-67.1862439383828],[58.455584555845576,-67.19468682473222],[58.689586895868956,-67.1575381247948],[58.86958869588696,-67.16429243387434],[58.91638916389164,-67.1778010520334],[59.04239042390424,-67.23690125647929],[59.09279092790928,-67.2453441428287],[59.0459904599046,-67.28924715184564],[59.02079020790208,-67.3044443472746],[58.98838988389886,-67.30951007908425],[58.721987219872204,-67.2740499564167],[58.581585815858176,-67.23183552466963],[58.54918549185493,-67.23014694739976],[58.56718567185672,-67.2740499564167],[58.59238592385924,-67.29769003819507],[58.671586715867164,-67.32639585178308],[58.67878678786789,-67.32977300632284],[58.67878678786789,-67.33652731540236],[58.682386823868256,-67.3432816244819],[58.689586895868956,-67.34497020175178],[58.72558725587257,-67.33821589267225],[58.75798757987582,-67.33652731540236],[58.7939879398794,-67.34159304721202],[58.93798937989382,-67.37705316987956],[59.05319053190533,-67.42939906524592],[59.09279092790928,-67.43615337432544],[59.125191251912526,-67.42433333343627],[59.12879128791289,-67.44628483794475],[59.1179911799118,-67.4597934561038],[59.09639096390964,-67.46485918791345],[59.03159031590317,-67.47161349699299],[59.00999009990102,-67.47667922880262],[58.9847898478985,-67.48681069242193],[59.02799027990281,-67.49018784696169],[59.0387903879039,-67.49356500150145],[59.05319053190533,-67.50538504239063],[59.06039060390606,-67.5087621969304],[59.207992079920814,-67.4986307333111],[59.251192511925126,-67.48512211515205],[59.265592655926554,-67.48512211515205],[59.2979929799298,-67.50200788785088],[59.41319413194134,-67.54422231959794],[59.48159481594817,-67.59487963769442],[59.51399513995142,-67.6066996785836],[59.549995499955,-67.60501110131372],[59.593195931959315,-67.59487963769442],[59.549995499955,-67.56279666956665],[59.510395103951055,-67.52395939235934],[59.52479524795248,-67.51382792874006],[59.542795427954275,-67.51382792874006],[59.57519575195752,-67.52227081508946],[59.593195931959315,-67.52395939235934],[59.6147961479615,-67.52058223781958],[59.65439654396545,-67.51045077420028],[59.643596435964355,-67.48681069242193],[59.63999639996402,-67.46148203337368],[59.643596435964355,-67.43953052886522],[59.66519665196654,-67.4209561788965],[59.64719647196472,-67.41589044708685],[59.64719647196472,-67.40575898346756],[59.65799657996581,-67.39731609711814],[59.67959679596797,-67.39393894257839],[59.91719917199174,-67.40069325165791],[60.09360093600938,-67.40575898346756],[60.23400234002341,-67.3821189016892],[60.32760327603276,-67.37705316987956],[60.39240392403926,-67.38380747895908],[60.46800468004682,-67.37029886080002],[60.47520475204752,-67.37198743806991],[60.489604896048974,-67.38549605622896],[60.50040500405004,-67.38887321076874],[60.61920619206194,-67.40069325165791],[60.658806588065886,-67.41926760162661],[60.67680676806768,-67.42771048797603],[60.7488074880749,-67.44290768340498],[60.792007920079215,-67.44290768340498],[60.8280082800828,-67.46148203337368],[60.85320853208532,-67.4699249197231],[60.8748087480875,-67.4699249197231],[60.892808928089295,-67.46654776518334],[60.91440914409145,-67.46485918791345],[60.9540095400954,-67.48174496061228],[60.97560975609758,-67.48343353788216],[60.993609936099375,-67.47667922880262],[61.01161011610117,-67.46485918791345],[61.018810188101895,-67.48343353788216],[61.03321033210332,-67.49187642423158],[61.07641076410766,-67.49187642423158],[61.14121141211413,-67.50538504239063],[61.16641166411665,-67.50538504239063],[61.16281162811629,-67.5188936605497],[61.15561155611556,-67.53071370143888],[61.144811448114496,-67.53746801051841],[61.13041130411304,-67.54084516505817],[61.14121141211413,-67.55097662867747],[61.152011520115224,-67.55604236048711],[61.16281162811629,-67.557730937757],[61.177211772117744,-67.55435378321724],[61.18441184411844,-67.55604236048711],[61.21681216812169,-67.57968244226548],[61.24201242012421,-67.58981390588477],[61.27441274412746,-67.59319106042454],[61.60921609216092,-67.53915658778828],[61.86121861218612,-67.55097662867747],[62.116821168211686,-67.56279666956665],[62.14562145621457,-67.56786240137629],[62.20322203222034,-67.586436751345],[62.23202232022322,-67.58981390588477],[62.32922329223294,-67.58981390588477],[62.35802358023582,-67.59825679223418],[62.4120241202412,-67.62527402855231],[62.49122491224912,-67.63371691490173],[62.617226172261724,-67.66073415121984],[62.667626676266764,-67.65229126487043],[62.68922689226892,-67.64722553306078],[62.77202772027721,-67.64215980125114],[63.088830888308905,-67.53915658778828],[63.114031140311425,-67.53409085597865],[63.380433804338054,-67.5188936605497],[63.65043650436505,-67.50369646512075],[63.84483844838448,-67.52733654689911],[63.960039600396016,-67.52733654689911],[64.42444424444244,-67.58981390588477],[64.47484474844748,-67.60838825585348],[64.52884528845289,-67.61514256493301],[64.5540455404554,-67.62358545128242],[64.5648456484565,-67.62527402855231],[64.59004590045902,-67.62020829674266],[64.60444604446045,-67.62020829674266],[64.62244622446227,-67.62358545128242],[64.65124651246512,-67.63709406944149],[64.71964719647198,-67.65229126487043],[65.1228512285123,-67.68099707845843],[65.52245522455226,-67.70801431477656],[65.92205922059222,-67.73672012836457],[66.32526325263254,-67.7637373646827],[66.7248672486725,-67.7924431782707],[66.73566735667359,-67.78906602373092],[66.76086760867611,-67.77724598284175],[66.77166771667717,-67.77386882830199],[66.86526865268652,-67.78568886919116],[66.88686886868871,-67.78400029192127],[66.94086940869408,-67.76711451922246],[67.00567005670058,-67.75867163287305],[67.12807128071282,-67.75867163287305],[67.28647286472867,-67.78737744646105],[67.3008730087301,-67.7924431782707],[67.32607326073261,-67.80595179642975],[67.34047340473407,-67.8110175282394],[67.70407704077041,-67.82959187820812],[68.07128071280712,-67.84816622817682],[68.1828818288183,-67.87687204176483],[68.37728377283773,-67.89544639173354],[68.71208712087122,-67.87349488722506],[68.77688776887769,-67.88531492811424],[69.10809108091081,-67.84647765090693],[69.15489154891549,-67.83296903274788],[69.1908919089191,-67.8110175282394],[69.19449194491946,-67.80426321915988],[69.20169201692019,-67.7823117146514],[69.20889208892089,-67.77386882830199],[69.21609216092162,-67.7637373646827],[69.23049230492305,-67.75867163287305],[69.30249302493027,-67.73672012836457],[69.35289352893531,-67.72996581928504],[69.55449554495547,-67.73840870563444],[69.61209612096121,-67.75022874652363],[69.63729637296373,-67.7637373646827],[69.64809648096482,-67.78062313738153],[69.64449644496446,-67.80426321915988],[69.65169651696519,-67.82959187820812],[69.66249662496625,-67.85323195998647],[69.68409684096841,-67.86505200087565],[69.63369633696337,-67.93934940075049],[69.60129601296015,-68.01871253243498],[69.59409594095942,-68.04235261421334],[69.60129601296015,-68.06936985053146],[69.63369633696337,-68.12171574589783],[69.81369813698137,-68.28550774107644],[69.98649986499865,-68.37162518184046],[69.99729997299974,-68.38006806818987],[70.0009000090001,-68.38851095453929],[70.0081000810008,-68.39864241815859],[70.02610026100263,-68.40539672723811],[70.03690036900369,-68.41383961358753],[70.04770047700478,-68.42734823174659],[70.06570065700657,-68.45774262260448],[70.0909009090091,-68.48307128165271],[70.11610116101161,-68.49320274527201],[70.18090180901811,-68.4948913225419],[70.12330123301234,-68.50839994070097],[70.10530105301055,-68.51684282705037],[70.0909009090091,-68.52190855886002],[70.05490054900551,-68.52021998159015],[70.04050040500405,-68.52528571339978],[70.0081000810008,-68.54554864063837],[69.96849968499686,-68.5624344133372],[69.92889928899291,-68.57425445422638],[69.8928989289893,-68.58100876330592],[69.86049860498605,-68.58100876330592],[69.79209792097922,-68.57425445422638],[69.66249662496625,-68.57932018603603],[69.63009630096303,-68.58945164965533],[69.65169651696519,-68.59620595873486],[69.67329673296734,-68.59958311327463],[69.60129601296015,-68.60971457689392],[69.57249572495726,-68.6215346177831],[69.6228962289623,-68.6316660814024],[69.67689676896771,-68.63335465867227],[69.65169651696519,-68.65192900864099],[69.62649626496267,-68.70258632673747],[69.60489604896051,-68.7194720994363],[69.6228962289623,-68.72116067670618],[69.63729637296373,-68.7194720994363],[69.67329673296734,-68.71440636762665],[69.6228962289623,-68.73635787213513],[69.43569435694357,-68.78194945842196],[69.36009360093601,-68.81234384927984],[69.3060930609306,-68.82078673562926],[69.28089280892809,-68.83091819924856],[69.27009270092702,-68.85118112648715],[69.30969309693097,-68.84949254921726],[69.29169291692918,-68.86468974464621],[69.32409324093243,-68.86975547645585],[69.38529385293853,-68.8849526718848],[69.71649716497166,-68.86300116737632],[69.85689856898571,-68.87313263099563],[69.82449824498246,-68.8950841355041],[69.71289712897129,-68.93729856725116],[69.74169741697418,-68.94236429906081],[69.77049770497706,-68.94236429906081],[69.72009720097202,-68.96769295810905],[69.66249662496625,-68.98457873080788],[69.30249302493027,-69.04705608979354],[69.32049320493206,-69.0521218216032],[69.3708937089371,-69.05718755341283],[69.36009360093601,-69.06563043976226],[69.34929349293495,-69.07576190338155],[69.34209342093422,-69.08758194427072],[69.33489334893349,-69.0994019851599],[69.38529385293853,-69.10277913969966],[69.72729727297275,-69.17032223049497],[69.75969759697597,-69.1973394668131],[69.76329763297633,-69.2463082076397],[69.74169741697418,-69.2952769484663],[69.70569705697059,-69.32735991659408],[69.65529655296555,-69.34255711202302],[69.60489604896051,-69.3526885756423],[69.55089550895511,-69.3526885756423],[69.39609396093962,-69.32229418478443],[69.34209342093422,-69.32229418478443],[69.25929259292593,-69.36788577107126],[69.21249212492125,-69.36788577107126],[68.97128971289715,-69.30878556662536],[68.9208892088921,-69.30878556662536],[68.89568895688959,-69.31553987570489],[68.87408874088743,-69.32735991659408],[68.83088830888309,-69.36113146199172],[68.8128881288813,-69.37295150288091],[68.78768787687878,-69.38139438923031],[68.7408874088741,-69.38983727557972],[68.77688776887769,-69.40841162554844],[68.86328863288634,-69.43374028459668],[68.89928899288995,-69.45400321183527],[68.74808748087483,-69.49284048904258],[68.73368733687337,-69.50297195266187],[68.73008730087301,-69.5198577253607],[68.73368733687337,-69.55025211621859],[68.88848888488886,-69.54349780713906],[69.0468904689047,-69.55700642529811],[69.35649356493565,-69.6177952070139],[69.3060930609306,-69.65832106149108],[69.25569255692557,-69.68871545234896],[69.20169201692019,-69.70560122504779],[69.1368913689137,-69.71066695685744],[69.00009000090003,-69.70391264777791],[68.93168931689317,-69.71235553412733],[68.88128881288813,-69.74106134771533],[69.02529025290255,-69.7731443158431],[69.1728917289173,-69.78665293400216],[69.20529205292053,-69.79847297489134],[69.20529205292053,-69.82380163393958],[69.18369183691837,-69.85250744752759],[69.15489154891549,-69.87614752930594],[69.02169021690219,-69.9487563519109],[68.89208892088922,-69.99434793819773],[68.7588875888759,-70.01798801997609],[68.60768607686077,-70.0264309063255],[68.57168571685719,-70.02136517451586],[68.52848528485285,-70.00279082454715],[68.49608496084963,-69.9774621654989],[68.49968499684996,-69.95719923826032],[68.3628836288363,-69.89641045654454],[68.31248312483126,-69.860950333877],[68.2908829088291,-69.85250744752759],[68.28008280082801,-69.84575313844806],[68.26928269282695,-69.83393309755888],[68.22968229682297,-69.77145573857322],[68.21888218882191,-69.74612707952498],[68.20088200882009,-69.72586415228639],[68.17568175681757,-69.71910984320685],[68.14688146881468,-69.72586415228639],[68.13608136081362,-69.73599561590568],[68.13248132481326,-69.75288138860451],[68.13248132481326,-69.77989862492264],[68.12888128881289,-69.79678439762145],[68.12528125281253,-69.80860443851064],[68.12528125281253,-69.82042447939982],[68.12528125281253,-69.83731025209865],[68.12168121681216,-69.84913029298782],[68.1108811088111,-69.85588460206735],[68.10008100081001,-69.860950333877],[68.0568805688057,-69.89303330200477],[68.01008010080102,-69.90823049743372],[67.90927909279094,-69.92342769286266],[67.9128791287913,-69.9791507427688],[67.86607866078663,-70.00279082454715],[67.6068760687607,-70.01461086543632],[67.57087570875709,-70.02474232905563],[67.56007560075602,-70.03993952448457],[67.56007560075602,-70.06357960626292],[67.56727567275675,-70.09735115166058],[67.53847538475387,-70.10241688347023],[67.50607506075062,-70.11592550162929],[67.4808748087481,-70.13618842886788],[67.47727477274773,-70.16489424245589],[67.4808748087481,-70.18853432423424],[67.47727477274773,-70.2020429423933],[67.46647466474667,-70.20879725147284],[67.22527225272253,-70.25270026048979],[67.2180721807218,-70.26283172410908],[67.2180721807218,-70.2814060740778],[67.22167221672217,-70.29829184677662],[67.2288722887229,-70.30504615585615],[67.6788767887679,-70.27296318772838],[67.71127711277114,-70.27465176499827],[67.74727747277473,-70.28647180588744],[67.72927729277293,-70.29998042404651],[67.65727657276574,-70.32362050582486],[67.6788767887679,-70.34557201033334],[67.70047700477005,-70.3489491648731],[67.72567725677257,-70.3489491648731],[67.75087750877509,-70.35739205122252],[67.75447754477545,-70.36583493757193],[67.75807758077582,-70.379343555731],[67.76167761677618,-70.39285217389005],[67.77607776077761,-70.3979179056997],[67.86967869678696,-70.39116359662017],[67.87687876878769,-70.3979179056997],[67.88047880478805,-70.40636079204911],[67.88767887678878,-70.4164922556684],[67.90927909279094,-70.43168945109736],[67.91647916479167,-70.436755182907],[67.95967959679598,-70.45195237833595],[67.97767977679777,-70.45364095560583],[67.99207992079923,-70.45364095560583],[68.01008010080102,-70.45026380106606],[68.02088020880208,-70.44350949198653],[68.03528035280354,-70.44013233744677],[68.07488074880749,-70.45364095560583],[68.10008100081001,-70.45195237833595],[68.15048150481505,-70.43337802836723],[68.38808388083882,-70.40129506023946],[68.42048420484207,-70.40129506023946],[68.44208442084422,-70.41311510112864],[68.48528485284854,-70.45195237833595],[68.51048510485106,-70.46546099649501],[68.53568535685358,-70.47221530557454],[68.5608856088561,-70.47221530557454],[68.58968589685898,-70.46714957376489],[68.62208622086223,-70.45195237833595],[68.6328863288633,-70.44857522379618],[68.64008640086402,-70.44013233744677],[68.65088650886509,-70.3877864420804],[68.6868868688687,-70.35401489668274],[68.74808748087483,-70.33375196944415],[68.92448924489247,-70.30504615585615],[69.14769147691479,-70.30842331039591],[69.16929169291694,-70.31686619674534],[69.24849248492487,-70.40636079204911],[69.25929259292593,-70.43168945109736],[69.25569255692557,-70.46039526468536],[69.23049230492305,-70.5633984781482],[69.21249212492125,-70.6714674234207],[69.20529205292053,-70.69341892792917],[69.1908919089191,-70.710304700628],[69.10449104491045,-70.76771632780401],[69.07929079290793,-70.77784779142331],[69.10089100891011,-70.79304498685225],[69.09009090090902,-70.81161933682097],[69.02889028890289,-70.85552234583791],[69.01809018090182,-70.87409669580663],[69.01449014490146,-70.89435962304522],[69.02529025290255,-70.91799970482357],[69.00729007290073,-70.94163978660193],[68.85608856088561,-71.02438007282618],[68.86328863288634,-71.02944580463583],[68.87408874088743,-71.03451153644548],[68.8848888488885,-71.03620011371535],[68.89568895688959,-71.03620011371535],[68.80928809288093,-71.08010312273231],[68.58608586085862,-71.1493347907975],[68.56808568085683,-71.16115483168667],[68.54648546485467,-71.18141775892528],[68.58968589685898,-71.1983035316241],[68.60408604086041,-71.19999210889398],[68.65448654486545,-71.19999210889398],[68.6688866888669,-71.20336926343374],[68.52128521285215,-71.2472722724507],[68.33768337683378,-71.25740373606999],[68.31968319683199,-71.26415804514953],[68.31248312483126,-71.27935524057847],[68.32328323283232,-71.30974963143636],[68.25848258482586,-71.32663540413519],[68.05328053280533,-71.3553412177232],[68.06048060480606,-71.35702979499307],[68.08208082080822,-71.36547268134248],[68.06768067680679,-71.37898129950155],[68.03168031680318,-71.40093280401003],[67.92367923679237,-71.48029593569451],[67.86247862478626,-71.50900174928252],[67.84447844478444,-71.52251036744158],[67.83367833678338,-71.53770756287052],[67.83727837278374,-71.55121618102959],[67.8588785887859,-71.55628191283922],[67.85527855278553,-71.56810195372842],[67.84447844478444,-71.5782334173477],[67.83367833678338,-71.58498772642724],[67.81927819278192,-71.59005345823688],[67.83727837278374,-71.5984963445863],[67.85527855278553,-71.60356207639595],[67.89487894878948,-71.60356207639595],[67.88767887678878,-71.62044784909477],[67.88047880478805,-71.63057931271408],[67.86607866078663,-71.63564504452371],[67.8480784807848,-71.6373336217936],[67.87687876878769,-71.64915366268278],[67.88407884078842,-71.6660394353816],[67.86967869678696,-71.68292520808043],[67.84447844478444,-71.69812240350937],[67.79047790477907,-71.71669675347809],[67.78327783277834,-71.72007390801785],[67.77247772477725,-71.74033683525644],[67.76167761677618,-71.74877972160586],[67.70767707677078,-71.76735407157457],[67.5348753487535,-71.79774846243245],[67.54927549275493,-71.81632281240117],[67.56727567275675,-71.82476569875058],[67.61047610476106,-71.82645427602046],[67.47367473674737,-71.87204586230729],[67.44847448474485,-71.89568594408566],[67.47367473674737,-71.90412883043507],[67.50967509675098,-71.93621179856284],[67.53127531275314,-71.94465468491225],[67.51687516875171,-71.95647472580143],[67.51327513275135,-71.96660618942073],[67.51327513275135,-71.9784262303099],[67.50607506075062,-71.99362342573885],[67.49527495274953,-72.00375488935815],[67.48447484474846,-72.01050919843767],[67.45567455674558,-72.02064066205698],[67.44847448474485,-72.0273949711365],[67.43407434074342,-72.04596932110522],[67.4268742687427,-72.05272363018474],[67.39807398073981,-72.06454367107392],[67.36927369273693,-72.07129798015346],[67.2828728287283,-72.07129798015346],[67.26127261272615,-72.08142944377275],[67.25047250472505,-72.10675810282099],[67.27207272072721,-72.12026672098006],[67.33327333273334,-72.12870960732947],[67.32607326073261,-72.13884107094876],[67.32607326073261,-72.14897253456806],[67.32967329673298,-72.15572684364759],[67.3368733687337,-72.16585830726689],[67.3368733687337,-72.17261261634641],[67.33327333273334,-72.18105550269583],[67.32247322473225,-72.19456412085489],[67.31527315273155,-72.21651562536337],[67.31527315273155,-72.26379578892008],[67.30447304473046,-72.30263306612738],[67.30807308073082,-72.3110759524768],[67.31527315273155,-72.31783026155632],[67.31527315273155,-72.32796172517563],[67.31167311673119,-72.34147034333469],[67.30447304473046,-72.35497896149374],[67.29367293672937,-72.36679900238292],[67.2288722887229,-72.42083347501918],[67.21447214472147,-72.43940782498788],[67.2288722887229,-72.44953928860718],[67.21447214472147,-72.46135932949636],[67.20367203672038,-72.47317937038554],[67.19287192871928,-72.48837656581448],[67.17847178471786,-72.5255252657519],[67.17127171271713,-72.53903388391096],[67.13167131671318,-72.57618258384838],[67.0848708487085,-72.63359421102439],[67.0848708487085,-72.64541425191356],[67.0920709207092,-72.65892287007263],[67.0920709207092,-72.68087437458111],[67.07767077670778,-72.71971165178842],[67.07047070470705,-72.73828600175712],[67.04887048870489,-72.77374612442466],[67.0308703087031,-72.8379120606802],[66.99846998469985,-72.90376657420562],[66.9768697686977,-72.9257180787141],[66.94086940869408,-72.94766958322258],[66.86166861668619,-72.97637539681058],[66.69246692466925,-72.99832690131906],[66.55566555665558,-73.03716417852635],[66.54126541265413,-73.0439184876059],[66.50166501665018,-73.08106718754331],[66.48366483664839,-73.0911986511626],[66.3468634686347,-73.12834735110002],[66.32526325263254,-73.1317245056398],[66.3360633606336,-73.13510166017956],[66.3468634686347,-73.14185596925908],[66.35406354063542,-73.14861027833862],[66.36126361263612,-73.15705316468802],[66.36846368463685,-73.16718462830733],[66.37926379263794,-73.19251328735557],[66.38646386463864,-73.20264475097486],[66.40446404464046,-73.21615336913392],[66.42966429664298,-73.22121910094357],[66.55926559265595,-73.23135056456287],[66.58446584465847,-73.23135056456287],[66.64206642066421,-73.21953052367368],[66.6528665286653,-73.22121910094357],[66.66366663666636,-73.2279734100231],[66.67446674466746,-73.23641629637251],[66.68526685266855,-73.24148202818216],[66.73566735667359,-73.24485918272192],[66.91926919269193,-73.19757901916522],[66.94446944469445,-73.19589044189533],[66.97326973269733,-73.20095617370498],[66.99846998469985,-73.21277621459416],[67.02367023670237,-73.21784194640381],[67.04887048870489,-73.21277621459416],[67.09927099270993,-73.19757901916522],[67.1028710287103,-73.22459625548333],[67.07767077670778,-73.24317060545205],[67.01647016470164,-73.27018784177017],[67.04887048870489,-73.28538503719912],[67.08847088470887,-73.28369645992923],[67.16407164071643,-73.26512210996052],[67.16407164071643,-73.30227080989795],[67.22167221672217,-73.31240227351724],[67.34047340473407,-73.30227080989795],[67.82287822878229,-73.18407040100615],[67.87687876878769,-73.1790046691965],[67.90207902079021,-73.17056178284709],[67.9308793087931,-73.15367601014826],[67.95967959679598,-73.14692170106873],[67.98847988479886,-73.14523312379885],[68.02088020880208,-73.14692170106873],[68.02808028080281,-73.11652731021084],[68.0460804608046,-73.08613291935296],[68.0568805688057,-73.05742710576494],[68.0460804608046,-73.0320984467167],[68.08928089280894,-73.013524096748],[68.10368103681037,-73.00001547858894],[68.1108811088111,-72.97637539681058],[68.11808118081183,-72.95273531503223],[68.11448114481146,-72.94429242868281],[68.10728107281074,-72.92909523325386],[68.10008100081001,-72.92065234690445],[68.08208082080822,-72.90545515147551],[68.07488074880749,-72.8767493378875],[68.05328053280533,-72.8666178742682],[67.99927999279993,-72.85648641064891],[67.97407974079741,-72.84466636975974],[67.95967959679598,-72.82778059706091],[67.95247952479525,-72.80582909255243],[67.97047970479704,-72.75348319718606],[67.95967959679598,-72.739974579027],[67.94167941679419,-72.72815453813783],[67.920079200792,-72.711268765439],[67.920079200792,-72.69269441547029],[67.94887948879489,-72.67412006550158],[68.01368013680138,-72.64710282918345],[68.03168031680318,-72.63021705648463],[68.04248042480427,-72.62515132467497],[68.05328053280533,-72.62008559286534],[68.08208082080822,-72.61670843832556],[68.12528125281253,-72.60151124289662],[68.20088200882009,-72.58969120200744],[68.19728197281972,-72.58631404746768],[68.17928179281793,-72.57618258384838],[68.33408334083342,-72.5069509157832],[68.41328413284134,-72.48162225673495],[68.49608496084963,-72.47486794765541],[68.62208622086223,-72.48162225673495],[68.70848708487085,-72.49850802943378],[68.75168751687517,-72.49344229762413],[69.04329043290434,-72.42083347501918],[69.08289082890829,-72.41576774320953],[69.15489154891549,-72.42589920682882],[69.34569345693458,-72.41576774320953],[69.5148951489515,-72.43265351590836],[69.50769507695077,-72.44109640225777],[69.50049500495007,-72.44953928860718],[69.48969489694898,-72.45629359768671],[69.47889478894791,-72.46304790676623],[69.51849518495186,-72.46980221584577],[69.55809558095581,-72.46473648403612],[69.59769597695978,-72.44953928860718],[69.63009630096303,-72.43096493863847],[69.59049590495906,-72.39719339324081],[69.60849608496085,-72.3701761569227],[69.61929619296194,-72.3600446933034],[69.63729637296373,-72.35497896149374],[69.63009630096303,-72.35329038422387],[69.61569615696158,-72.34653607514433],[69.61209612096121,-72.34484749787445],[69.63729637296373,-72.32120741609609],[69.66969669696698,-72.30263306612738],[69.70209702097023,-72.29081302523821],[69.73809738097381,-72.2823701388888],[69.78129781297815,-72.27899298434903],[69.79569795697958,-72.27561582980925],[69.84609846098462,-72.25535290257066],[69.86409864098641,-72.2519757480309],[69.93249932499324,-72.26548436618997],[69.95049950499507,-72.25873005711043],[69.93969939699397,-72.21989277990313],[69.91449914499145,-72.19962985266454],[69.87849878498787,-72.192875543585],[69.80649806498067,-72.18780981177537],[69.8208982089821,-72.15572684364759],[69.83529835298353,-72.1337753391391],[69.85689856898571,-72.11857814371017],[69.88929889298893,-72.11013525736075],[69.90729907299072,-72.11013525736075],[69.91809918099182,-72.1152009891704],[69.92529925299255,-72.11351241190052],[69.9468994689947,-72.08142944377275],[69.95409954099543,-72.07805228923299],[69.9648996489965,-72.07805228923299],[70.17370173701738,-72.06285509380405],[70.2709027090271,-72.07129798015346],[70.36450364503645,-72.05441220745463],[70.49770497704978,-72.05272363018474],[70.53010530105303,-72.04765789837509],[70.65610656106563,-71.99531200300873],[70.69930699306994,-71.95985188034119],[70.72810728107282,-71.94634326218214],[70.72450724507246,-71.94127753037249],[70.71010710107103,-71.92776891221342],[70.70650706507067,-71.92270318040377],[70.71370713707137,-71.9210146031339],[70.72450724507246,-71.91426029405436],[70.73170731707319,-71.91257171678448],[70.71010710107103,-71.90581740770494],[70.64170641706417,-71.90581740770494],[70.62730627306274,-71.90244025316518],[70.59130591305913,-71.88048874865672],[70.56610566105661,-71.87542301684707],[70.44370443704437,-71.861914398688],[70.43290432904331,-71.85684866687835],[70.43290432904331,-71.83827431690965],[70.44730447304474,-71.82983143056023],[70.46530465304653,-71.82645427602046],[70.68850688506885,-71.83152000783011],[70.85050850508506,-71.8028141942421],[70.87930879308794,-71.79268273062281],[70.9729097290973,-71.75215687614562],[71.03771037710379,-71.74709114433597],[71.12051120511205,-71.73020537163715],[71.14931149311494,-71.73527110344679],[71.18171181711818,-71.75215687614562],[71.21411214112143,-71.75384545341551],[71.2789127891279,-71.72851679436727],[71.25011250112502,-71.71838533074796],[71.13491134911351,-71.69812240350937],[71.0809108091081,-71.67785947627078],[71.05211052110522,-71.67110516719126],[71.06651066510665,-71.65928512630208],[71.07011070110701,-71.6474650854129],[71.07371073710738,-71.63564504452371],[71.07731077310774,-71.6272021581743],[71.09531095310953,-71.62213642636466],[71.10971109711099,-71.62213642636466],[71.14211142111421,-71.6272021581743],[71.16371163711639,-71.6272021581743],[71.17811178111782,-71.62551358090442],[71.18891188911891,-71.61875927182489],[71.2069120691207,-71.6086278082056],[71.21771217712177,-71.60693923093571],[71.41211412114123,-71.63902219906348],[71.44451444514445,-71.6373336217936],[71.53811538115383,-71.61031638547547],[71.41211412114123,-71.56810195372842],[71.40131401314014,-71.56134764464888],[71.38331383313835,-71.54446187195005],[71.36891368913689,-71.53939614014041],[71.31131311313115,-71.53264183106087],[71.18171181711818,-71.49211597658369],[71.16011160111603,-71.4718530493451],[71.15651156511566,-71.45665585391615],[71.16731167311673,-71.44652439029686],[71.19971199711998,-71.4330157721378],[71.21411214112143,-71.42288430851849],[71.23571235712359,-71.39586707220037],[71.25371253712538,-71.38742418585096],[71.2249122491225,-71.36547268134248],[71.21411214112143,-71.35196406318343],[71.20331203312034,-71.3350782904846],[71.22851228512286,-71.33001255867495],[71.24651246512465,-71.32325824959543],[71.26451264512647,-71.31143820870624],[71.28251282512826,-71.29286385873753],[71.30051300513006,-71.286109549658],[71.43731437314375,-71.27766666330858],[71.49491494914949,-71.25402658153023],[71.51291512915131,-71.24896084972058],[71.53451534515347,-71.24558369518081],[71.52731527315274,-71.22700934521211],[71.53451534515347,-71.22532076794222],[71.5489154891549,-71.21687788159281],[71.55611556115562,-71.21518930432293],[71.53451534515347,-71.20505784070363],[71.50931509315095,-71.20168068616387],[71.43011430114302,-71.19999210889398],[71.36891368913689,-71.19154922254457],[71.34011340113403,-71.18141775892528],[71.34731347313473,-71.16622056349632],[71.36171361713619,-71.15777767714691],[71.37611376113762,-71.15271194533727],[71.39411394113941,-71.15102336806738],[71.39411394113941,-71.11894039993962],[71.5417154171542,-70.96021413657064],[71.5849158491585,-70.95177125022123],[71.63171631716318,-70.95514840476099],[71.68571685716859,-70.9534598274911],[71.65331653316534,-70.91293397301392],[71.6677166771668,-70.90955681847416],[71.69651696516965,-70.90786824120427],[71.70731707317074,-70.90280250939463],[71.71451714517147,-70.89098246850544],[71.7289172891729,-70.88085100488615],[71.75051750517505,-70.87409669580663],[71.8009180091801,-70.8757852730765],[71.82611826118261,-70.86734238672709],[71.84771847718477,-70.84539088221861],[71.85851858518586,-70.80993075955108],[71.7829178291783,-70.79979929593178],[71.76851768517687,-70.79473356412214],[71.74331743317435,-70.77953636869319],[71.72531725317253,-70.77447063688354],[71.79731797317973,-70.71705900970753],[71.82251822518225,-70.70355039154848],[71.85131851318513,-70.69848465973882],[71.91251912519127,-70.69510750519905],[71.94131941319415,-70.68835319611952],[71.95211952119521,-70.68328746430987],[71.97011970119704,-70.6714674234207],[71.98451984519846,-70.66640169161104],[71.99891998919989,-70.66302453707128],[72.01332013320135,-70.6613359598014],[72.04212042120423,-70.66471311434117],[72.07452074520745,-70.67315600069058],[72.12492124921249,-70.69848465973882],[72.15732157321574,-70.70523896881835],[72.15012150121501,-70.66809026888093],[72.19332193321935,-70.65289307345199],[72.25452254522546,-70.65627022799175],[72.29772297722977,-70.66977884615082],[72.34452344523447,-70.67484457796046],[72.40212402124021,-70.64613876437245],[72.44172441724419,-70.60392433262538],[72.43812438124382,-70.57015278722774],[72.45252452524525,-70.56508705541809],[72.46692466924671,-70.56170990087833],[72.49572495724959,-70.55664416906868],[72.47772477724777,-70.54651270544937],[72.6109261092611,-70.51105258278184],[72.61812618126183,-70.50598685097219],[72.6217262172622,-70.4857239237336],[72.62532625326253,-70.47728103738419],[72.64692646926471,-70.46714957376489],[72.67212672126723,-70.46377241922512],[72.69732697326975,-70.46377241922512],[72.74412744127443,-70.47052672830466],[72.76572765727659,-70.46883815103477],[72.85212852128521,-70.44519806925642],[72.87012870128703,-70.43337802836723],[72.86652866528667,-70.4164922556684],[72.85212852128521,-70.3979179056997],[72.84492844928451,-70.38947501935029],[72.82332823328235,-70.379343555731],[72.81972819728199,-70.37090066938157],[72.81612816128163,-70.36245778303217],[72.81252812528126,-70.3489491648731],[72.78012780127801,-70.31180046493569],[72.69372693726939,-70.26283172410908],[72.65772657726578,-70.22906017871144],[72.62892628926289,-70.19528863331378],[72.62532625326253,-70.17840286061495],[72.63972639726398,-70.15982851064624],[72.65412654126541,-70.14800846975706],[72.69732697326975,-70.12267981070882],[72.72972729727297,-70.10917119254975],[72.7369273692737,-70.10241688347023],[72.74052740527407,-70.09397399712081],[72.7477274772748,-70.08046537896175],[72.7549275492755,-70.07371106988222],[72.76572765727659,-70.06864533807257],[72.8809288092881,-70.03993952448457],[72.90612906129061,-70.0264309063255],[72.9169291692917,-70.0264309063255],[72.94212942129423,-70.02811948359539],[72.95652956529565,-70.02811948359539],[72.97092970929711,-70.02474232905563],[72.98172981729817,-70.01967659724598],[72.9997299973,-70.00279082454715],[73.0069300693007,-69.99941367000739],[73.01773017730179,-70.00110224727726],[73.0429304293043,-70.01292228816645],[73.05733057330573,-70.01461086543632],[73.07173071730719,-70.00616797908691],[73.08973089730898,-69.99265936092786],[73.10773107731077,-69.98252789730856],[73.12933129331293,-69.98252789730856],[73.15813158131581,-69.99434793819773],[73.17973179731797,-69.99265936092786],[73.23013230132301,-69.9791507427688],[73.21213212132122,-69.95382208372055],[73.20853208532085,-69.94200204283138],[73.21573215732158,-69.93187057921207],[73.23373233732337,-69.9099190747036],[73.2409324093241,-69.88796757019513],[73.2409324093241,-69.8710817974963],[73.24813248132483,-69.85926175660711],[73.27693276932771,-69.84913029298782],[73.34533345333455,-69.83731025209865],[73.3669336693367,-69.8305559430191],[73.3777337773378,-69.8221130566697],[73.39573395733959,-69.80522728397088],[73.40653406534065,-69.79678439762145],[73.41733417334174,-69.79509582035158],[73.4389343893439,-69.79509582035158],[73.47133471334715,-69.78158720219251],[73.48933489334894,-69.78665293400216],[73.50013500135003,-69.79847297489134],[73.51453514535146,-69.80353870670099],[73.53613536135362,-69.80353870670099],[73.56133561335614,-69.80691586124075],[73.57933579335796,-69.81535874759017],[73.60813608136081,-69.85081887025771],[73.629736297363,-69.85757317933724],[73.70533705337056,-69.86263891114689],[73.72693726937271,-69.85250744752759],[73.7449374493745,-69.83731025209865],[73.81333813338134,-69.8018501294311],[73.88533885338853,-69.74612707952498],[73.92853928539287,-69.72924130682615],[73.98613986139861,-69.71910984320685],[74.02934029340295,-69.71910984320685],[74.07614076140763,-69.71235553412733],[74.22014220142202,-69.7343070386358],[74.23454234542345,-69.73768419317557],[74.24174241742418,-69.7444385022551],[74.24534245342454,-69.7545699658744],[74.25254252542527,-69.76639000676357],[74.31734317343174,-69.80691586124075],[74.32814328143283,-69.82042447939982],[74.3209432094321,-69.83731025209865],[74.27414274142743,-69.90823049743372],[74.30294302943031,-69.9200505383229],[74.33534335343353,-69.91498480651325],[74.40374403744039,-69.89809903381442],[74.41094410944109,-69.92849342467231],[74.46854468544686,-69.92511627013255],[74.57654576545767,-69.89303330200477],[74.67014670146702,-69.84913029298782],[74.7169471694717,-69.83562167482876],[74.7709477094771,-69.8423759839083],[74.72054720547206,-69.87952468384572],[74.7529475294753,-69.90147618835418],[74.77454774547746,-69.90823049743372],[74.79974799747998,-69.90316476562407],[74.86814868148682,-69.86939322022641],[74.90414904149043,-69.85757317933724],[74.94014940149401,-69.85588460206735],[74.97254972549726,-69.86770464295654],[75.03015030150303,-69.91160765197348],[75.05895058950591,-69.9301820019422],[75.09135091350913,-69.93693631102173],[75.12375123751238,-69.92511627013255],[75.18135181351815,-69.87783610657583],[75.21735217352173,-69.86770464295654],[75.21015210152103,-69.84068740663841],[75.22455224552246,-69.8221130566697],[75.24975249752498,-69.8119815930504],[75.2749527495275,-69.81029301578052],[75.30015300153002,-69.81873590212993],[75.31815318153181,-69.832244520289],[75.34335343353433,-69.87952468384572],[75.35055350553506,-69.88627899292524],[75.37935379353794,-69.88627899292524],[75.38655386553867,-69.89303330200477],[75.39375393753937,-69.92342769286266],[75.4009540095401,-69.93524773375184],[75.41535415354156,-69.94200204283138],[75.43695436954371,-69.93693631102173],[75.52335523355234,-69.90147618835418],[75.55575555755559,-69.89303330200477],[75.5809558095581,-69.89809903381442],[75.5917559175592,-69.89809903381442],[75.60255602556026,-69.89472187927466],[75.63855638556387,-69.86770464295654],[75.66015660156603,-69.85926175660711],[75.7177571775718,-69.84913029298782],[75.76095760957611,-69.832244520289],[75.77535775357754,-69.832244520289],[75.80055800558006,-69.83731025209865],[75.81495814958151,-69.83562167482876],[75.84015840158403,-69.81704732486006],[75.86175861758619,-69.79509582035158],[75.88335883358835,-69.77821004765275],[75.9157591575916,-69.7832757794624],[75.83655836558367,-69.73092988409603],[75.82215822158221,-69.71573268866709],[75.81495814958151,-69.69040402961885],[75.7969579695797,-69.66169821603084],[75.7789577895779,-69.63468097971273],[75.75375753757538,-69.62117236155366],[75.76455764557647,-69.61441805247412],[75.789757897579,-69.60428658885483],[75.80055800558006,-69.5975322797753],[75.80415804158042,-69.587400816156],[75.80415804158042,-69.5772693525367],[75.80775807758079,-69.56713788891742],[75.82575825758258,-69.56038357983788],[75.81855818558188,-69.558695002568],[75.79335793357936,-69.55025211621859],[75.82215822158221,-69.52492345717035],[75.85815858158583,-69.52323487990046],[75.89775897758977,-69.52830061171011],[75.93015930159302,-69.52661203444023],[75.94815948159481,-69.51648057082093],[75.97335973359733,-69.4894633345028],[75.99135991359915,-69.48439760269316],[76.03456034560344,-69.47933187088351],[76.08136081360817,-69.46920040726421],[76.21456214562147,-69.42023166643762],[76.37656376563768,-69.40503447100868],[76.36576365763659,-69.42867455278703],[76.35856358563586,-69.44893748002562],[76.36216362163623,-69.46751182999434],[76.38376383763841,-69.47764329361362],[76.40536405364054,-69.47426613907386],[76.43416434164345,-69.46413467545457],[76.45936459364594,-69.45062605729551],[76.51696516965171,-69.40334589373879],[76.56016560165602,-69.37970581196043],[76.60336603366034,-69.36450861653148],[76.68256682566829,-69.3526885756423],[76.73296732967333,-69.35099999837243],[76.75816758167582,-69.35437715291219],[76.78336783367837,-69.3628200392616],[76.7941679416794,-69.36450861653148],[76.80856808568086,-69.36113146199172],[76.82656826568268,-69.3526885756423],[76.83376833768341,-69.34593426656278],[76.83016830168305,-69.33749138021336],[76.83376833768341,-69.31891703024465],[76.83016830168305,-69.3054084120856],[76.82656826568268,-69.29696552573618],[76.82656826568268,-69.29021121665664],[76.84096840968408,-69.28345690757712],[76.869768697687,-69.2750140212277],[76.89856898568985,-69.27163686668794],[76.92736927369276,-69.2750140212277],[76.94536945369452,-69.27839117576747],[76.95976959769598,-69.2767025984976],[76.98496984969853,-69.25981682579877],[76.98136981369817,-69.25475109398911],[76.96696966969671,-69.24293105309994],[76.95976959769598,-69.23955389856017],[76.99936999369993,-69.21084808497216],[77.06417064170643,-69.20240519862276],[77.23697236972373,-69.20409377589263],[77.26577265772659,-69.19902804408298],[77.31977319773199,-69.18214227138415],[77.43137431374316,-69.18383084865404],[77.4421744217442,-69.18889658046369],[77.45657456574565,-69.19902804408298],[77.47097470974711,-69.20578235316252],[77.4817748177482,-69.20409377589263],[77.5069750697507,-69.18889658046369],[77.53217532175324,-69.18045369411428],[77.84177841778421,-69.1297963760178],[77.82737827378276,-69.11122202604909],[77.82377823778239,-69.09602483062014],[77.83097830978312,-69.08251621246107],[77.84897848978488,-69.0706961715719],[77.88137881378816,-69.05381039887307],[77.88857888578889,-69.04536751252365],[77.91377913779138,-69.01497312166578],[77.92097920979211,-69.00821881258624],[77.94977949779496,-69.00146450350671],[78.04338043380437,-69.0031530807766],[77.9461794617946,-68.97782442172834],[77.96777967779678,-68.95587291721988],[77.9857798577986,-68.94236429906081],[78.00378003780037,-68.9339214127114],[78.03258032580328,-68.92547852636199],[77.93537935379356,-68.92041279455233],[77.94257942579429,-68.89846129004385],[77.93897938979393,-68.87650978553539],[77.93897938979393,-68.8562468582968],[77.95697956979569,-68.84273824013773],[77.96417964179642,-68.83936108559797],[77.97857978579788,-68.8258524674389],[77.9857798577986,-68.82078673562926],[78.1189811898119,-68.76337510845325],[78.14418144181445,-68.7583093766436],[78.34938349383492,-68.75155506756407],[78.37458374583747,-68.74648933575442],[78.41778417784178,-68.72622640851583],[78.44298442984433,-68.7194720994363],[78.66978669786698,-68.6992091721977],[78.62658626586267,-68.6705033586097],[78.57258572585727,-68.65530616318075],[78.51138511385113,-68.64855185410123],[78.45738457384573,-68.6502404313711],[78.47898478984791,-68.64348612229158],[78.53298532985332,-68.61478030870357],[78.54378543785441,-68.60127169054451],[78.54378543785441,-68.5928288041951],[78.52578525785259,-68.57763160876615],[78.5149851498515,-68.56750014514685],[78.51138511385113,-68.55230294971791],[78.51138511385113,-68.53541717701908],[78.5149851498515,-68.51853140432026],[78.52578525785259,-68.50671136343108],[78.51138511385113,-68.49995705435154],[78.49698496984973,-68.49826847708167],[78.46458464584646,-68.50164563162143],[78.4609846098461,-68.4847598589226],[78.46818468184682,-68.47631697257319],[78.47898478984791,-68.47125124076354],[78.49338493384937,-68.46787408622377],[78.50058500585004,-68.46111977714425],[78.50778507785077,-68.435791118096],[78.51138511385113,-68.4256596544767],[78.53298532985332,-68.40033099542848],[78.55098550985508,-68.37500233638022],[78.55818558185581,-68.36487087276093],[78.60498604986049,-68.3479851000621],[78.74538745387457,-68.26186765929809],[79.13059130591307,-68.14704440494606],[79.4437944379444,-68.09300993230981],[79.75699756997568,-68.03897545967357],[79.86859868598685,-68.03222115059404],[80.30060300603009,-67.9579237507192],[80.73620736207363,-67.88531492811424],[80.7938079380794,-67.88193777357448],[80.87660876608766,-67.89206923719377],[81.19341193411935,-67.83296903274788],[81.51021510215105,-67.77386882830199],[81.56781567815682,-67.77386882830199],[81.87741877418773,-67.69957142842715],[81.88821888218882,-67.70126000569704],[81.91701917019174,-67.70801431477656],[81.93141931419314,-67.70970289204644],[81.94221942219423,-67.70632573750667],[81.9998199982,-67.68437423299821],[82.06102061020613,-67.67255419210903],[82.1222212222122,-67.66917703756926],[82.23742237422374,-67.68943996480785],[82.24462244622447,-67.69281711934761],[82.2518225182252,-67.69957142842715],[82.26262262622629,-67.7046371602368],[82.27702277022769,-67.70970289204644],[82.28782287822878,-67.70801431477656],[82.29862298622987,-67.70294858296691],[82.31302313023133,-67.70126000569704],[82.34902349023491,-67.70632573750667],[82.36342363423637,-67.7046371602368],[82.39582395823959,-67.67255419210903],[82.42462424624244,-67.65904557394997],[82.51462514625149,-67.62865118309207],[82.52902529025289,-67.6269626058222],[82.54342543425435,-67.62189687401255],[82.57222572225726,-67.6066996785836],[82.58662586625866,-67.60332252404383],[82.66942669426697,-67.61007683312337],[82.78102781027809,-67.59825679223418],[82.80622806228064,-67.60332252404383],[82.85302853028531,-67.6269626058222],[82.8782287822878,-67.6354054921716],[82.90342903429035,-67.63709406944149],[82.9970299702997,-67.61007683312337],[83.02943029430293,-67.60501110131372],[83.08343083430833,-67.61176541039325],[83.10503105031052,-67.61007683312337],[83.15903159031592,-67.5881253286149],[83.18783187831878,-67.58137101953535],[83.21663216632169,-67.57968244226548],[83.24543245432454,-67.58305959680524],[83.29583295832958,-67.59656821496431],[83.32103321033213,-67.60838825585348],[83.36423364233644,-67.6354054921716],[83.38943389433894,-67.64384837852101],[83.47223472234725,-67.65735699668008],[83.61623616236164,-67.63878264671138],[83.62703627036274,-67.63202833763184],[83.63423634236341,-67.62189687401255],[83.64143641436414,-67.61007683312337],[83.65223652236523,-67.59825679223418],[83.65583655836559,-67.59319106042454],[83.58023580235806,-67.57123955591607],[83.50103501035011,-67.56617382410641],[83.43263432634325,-67.54591089686782],[83.38223382233821,-67.4800563833424],[83.38583385833857,-67.44628483794475],[83.41823418234185,-67.42771048797603],[83.58383583835837,-67.39900467438802],[83.62343623436237,-67.38380747895908],[83.64863648636486,-67.35341308810119],[83.67743677436778,-67.32977300632284],[83.72423724237245,-67.31288723362401],[84.10224102241023,-67.26222991552753],[84.24984249842498,-67.22339263832023],[84.26064260642607,-67.21832690651058],[84.2930429304293,-67.19130967019245],[84.30384303843039,-67.18117820657315],[84.3362433624336,-67.16935816568397],[84.41544415444156,-67.12376657939714],[84.43704437044369,-67.11532369304774],[84.49104491044909,-67.11025796123809],[84.59544595445954,-67.11194653850796],[84.96264962649627,-67.07648641584044],[85.07065070650708,-67.08830645672961],[85.01665016650168,-67.12883231120679],[85.04185041850417,-67.13052088847668],[85.09585095850957,-67.12545515666703],[85.11745117451176,-67.13558662028632],[85.14265142651425,-67.15078381571527],[85.1678516785168,-67.15922670206469],[85.31185311853119,-67.16935816568397],[85.35865358653587,-67.18117820657315],[85.419854198542,-67.18962109292258],[85.44145441454418,-67.18962109292258],[85.45585455854558,-67.18455536111293],[85.4738547385474,-67.17273532022375],[85.48825488254886,-67.17104674295386],[85.6178561785618,-67.18793251565269],[85.64305643056434,-67.18286678384304],[85.69705697056969,-67.16429243387434],[85.7258572585726,-67.16091527933457],[85.779857798578,-67.16260385660445],[85.88065880658809,-67.1372751975562],[85.89145891458918,-67.13220946574656],[85.90585905859058,-67.11025796123809],[85.91305913059131,-67.10181507488868],[85.9238592385924,-67.09506076580914],[85.9778597785978,-67.07648641584044],[86.00666006660066,-67.07310926130066],[86.02106021060212,-67.06973210676091],[86.03186031860321,-67.06128922041148],[86.0426604266043,-67.05284633406208],[86.04986049860497,-67.04609202498254],[86.06786067860679,-67.04102629317289],[86.1218612186122,-67.03764913863313],[86.23346233462337,-67.04778060225243],[86.55746557465574,-67.02751767501383],[86.58626586265865,-67.03427198409337],[86.64386643866442,-67.05791206587172],[86.66906669066691,-67.06466637495126],[86.69786697866982,-67.06466637495126],[86.91746917469175,-67.01232047958489],[87.01467014670146,-66.96504031602817],[87.10827108271081,-66.9329573479004],[87.47547475474755,-66.8738571434545],[87.58347583475836,-66.84177417532673],[87.64107641076413,-66.8367084435171],[87.6986769867699,-66.82319982535803],[87.72747727477275,-66.81982267081827],[87.81747817478174,-66.8248884026279],[87.84627846278465,-66.81982267081827],[87.91467914679146,-66.78436254815072],[87.939879398794,-66.77591966180131],[87.9650796507965,-66.77085392999166],[88.13428134281344,-66.77254250726155],[88.1630816308163,-66.7776082390712],[88.18828188281884,-66.78605112542061],[88.19908199081993,-66.79280543450014],[88.20628206282066,-66.79955974357966],[88.2170821708217,-66.81306836173873],[88.22428224282243,-66.8451513298665],[88.23148231482315,-66.85359421621591],[88.24948249482497,-66.86034852529545],[88.3358833588336,-66.84683990713638],[88.389883898839,-66.84683990713638],[88.44028440284404,-66.84177417532673],[88.60948609486098,-66.7961825890399],[88.68508685086852,-66.79449401177001],[88.73548735487356,-66.78436254815072],[88.74628746287465,-66.78436254815072],[88.8938889388894,-66.80969120719897],[88.92268922689226,-66.8063140526592],[89.00189001890021,-66.78773970269049],[89.03429034290343,-66.78942827996038],[89.12789127891278,-66.80969120719897],[89.18909189091892,-66.81306836173873],[89.30429304293045,-66.8063140526592],[89.36549365493659,-66.81137978446884],[89.44829448294485,-66.8367084435171],[89.4770947709477,-66.84177417532673],[89.59949599495997,-66.8451513298665],[89.65349653496537,-66.84008559805685],[89.75789757897581,-66.80124832084955],[89.81189811898122,-66.78942827996038],[89.88749887498875,-66.78773970269049],[89.94149941499415,-66.79449401177001],[89.99909999099992,-66.78436254815072],[90.08910089100891,-66.77085392999166],[90.15030150301504,-66.77085392999166],[90.20790207902081,-66.77929681634107],[90.27630276302762,-66.80124832084955],[90.29070290702907,-66.80293689811944],[90.32310323103229,-66.79955974357966],[90.33390333903338,-66.80124832084955],[90.34830348303484,-66.8063140526592],[90.37350373503733,-66.82151124808814],[90.39870398703988,-66.81982267081827],[90.42750427504274,-66.79955974357966],[90.4707047070471,-66.75396815729283],[90.49230492304923,-66.74214811640365],[90.54270542705427,-66.74383669367354],[90.56790567905682,-66.73877096186389],[90.61830618306186,-66.7185080346253],[90.67230672306727,-66.70499941646624],[90.71190711907121,-66.708376571006],[90.7227072270723,-66.70668799373613],[90.8019080190802,-66.67291644833847],[91.00351003510036,-66.61381624389257],[91.05751057510577,-66.58679900757446],[91.08631086310862,-66.57835612122503],[91.14391143911439,-66.57329038941539],[91.37791377913783,-66.6003076257335],[91.43551435514354,-66.59524189392386],[91.64071640716406,-66.55809319398645],[91.69831698316983,-66.53783026674785],[91.78111781117815,-66.53783026674785],[91.96111961119612,-66.49899298954055],[92.06552065520657,-66.5141901849695],[92.16632166321665,-66.51081303042973],[92.21672216722169,-66.52094449404902],[92.37152371523717,-66.59524189392386],[92.42192421924221,-66.6019962030034],[92.50832508325084,-66.59693047119374],[92.6451264512645,-66.62563628478175],[92.76032760327604,-66.63407917113116],[92.81432814328144,-66.62732486205164],[92.87552875528758,-66.61212766662268],[92.97272972729729,-66.57497896668526],[93.02313023130233,-66.5614703485262],[93.07353073530737,-66.56484750306598],[93.18513185131854,-66.59017616211422],[93.2139321393214,-66.59017616211422],[93.29673296732966,-66.58004469849492],[93.45873458734587,-66.58679900757446],[93.56673566735668,-66.58004469849492],[93.62433624336245,-66.58342185303468],[93.73233732337326,-66.60368478027328],[93.71073710737107,-66.63239059386129],[93.69993699936998,-66.64421063475046],[93.68193681936822,-66.65096494382999],[93.68913689136895,-66.65603067563964],[93.69993699936998,-66.66447356198906],[93.70713707137071,-66.66785071652882],[93.69273692736931,-66.68304791195777],[93.69993699936998,-66.70668799373613],[93.72153721537217,-66.73032807551448],[93.73953739537399,-66.7472138482133],[93.75393753937539,-66.74383669367354],[93.88713887138874,-66.68642506649752],[93.9159391593916,-66.68642506649752],[93.93753937539378,-66.69149079830717],[93.96273962739627,-66.70499941646624],[93.969939699397,-66.72019661189518],[93.94833948339482,-66.73370523005424],[93.99873998739986,-66.73201665278435],[94.07794077940781,-66.7185080346253],[94.09594095940963,-66.71175372554578],[94.10674106741067,-66.70331083919635],[94.1139411394114,-66.68642506649752],[94.12114121141212,-66.67798218014812],[94.13194131941322,-66.67291644833847],[94.29394293942943,-66.65265352109988],[94.42714427144273,-66.62225913024199],[94.44514445144455,-66.61043908935281],[94.46674466744668,-66.59017616211422],[94.49194491944922,-66.56991323487563],[94.52074520745208,-66.5530274621768],[94.54594545945463,-66.5428959985575],[94.70434704347042,-66.51250160769962],[94.78714787147874,-66.50743587588997],[94.90594905949058,-66.47704148503207],[94.91674916749167,-66.47535290776219],[94.93114931149313,-66.47873006230196],[94.95634956349562,-66.48717294865136],[94.99594995949963,-66.48886152592125],[95.02115021150212,-66.49223868046101],[95.0679506795068,-66.50912445315984],[95.0967509675097,-66.5141901849695],[95.1759517595176,-66.50743587588997],[95.22635226352264,-66.51081303042973],[95.28035280352805,-66.52769880312856],[95.319953199532,-66.55640461671656],[95.34515345153454,-66.6003076257335],[95.34515345153454,-66.61381624389257],[95.34155341553418,-66.62563628478175],[95.34515345153454,-66.63745632567093],[95.35955359553594,-66.64252205748058],[95.4927549275493,-66.65434209836975],[95.52155521555216,-66.65096494382999],[95.51075510755106,-66.6594078301794],[95.4819548195482,-66.708376571006],[95.49635496354966,-66.69993368465659],[95.51795517955179,-66.70162226192647],[95.55755557555574,-66.71006514827589],[95.57555575555756,-66.70668799373613],[95.63675636756369,-66.679670757418],[95.65115651156515,-66.67629360287823],[95.68355683556837,-66.67629360287823],[95.69795697956982,-66.67460502560834],[95.7591575915759,-66.6594078301794],[95.82755827558276,-66.64927636656012],[95.85995859958598,-66.65096494382999],[95.89235892358926,-66.65771925290952],[95.94995949959502,-66.65771925290952],[96.00396003960043,-66.6307020165914],[96.05436054360547,-66.59524189392386],[96.10836108361087,-66.56991323487563],[96.13356133561336,-66.57329038941539],[96.18036180361804,-66.60537335754316],[96.20556205562059,-66.61381624389257],[96.23436234362345,-66.61043908935281],[96.29196291962921,-66.59524189392386],[96.40716407164075,-66.58342185303468],[96.43236432364324,-66.58679900757446],[96.5547655476555,-66.61550482116246],[96.60876608766091,-66.61550482116246],[96.97236972369723,-66.50912445315984],[97.08037080370804,-66.49223868046101],[97.18837188371884,-66.49899298954055],[97.23517235172352,-66.50743587588997],[97.2567725677257,-66.51587876223937],[97.2711727117271,-66.53107595766832],[97.3359733597336,-66.5817332757648],[97.41877418774186,-66.56653608033585],[97.44037440374404,-66.5716018121455],[97.44757447574477,-66.6019962030034],[97.45117451174514,-66.61043908935281],[97.46197461974623,-66.62394770751186],[97.47277472774726,-66.6307020165914],[97.48357483574836,-66.63576774840105],[97.49797497974981,-66.63914490294081],[97.5231752317523,-66.64252205748058],[97.57717577175771,-66.64252205748058],[97.60237602376026,-66.64589921202034],[97.67077670776706,-66.67798218014812],[97.69597695976961,-66.67798218014812],[97.73917739177392,-66.65771925290952],[97.80397803978042,-66.59186473938409],[97.839978399784,-66.56653608033585],[97.88677886778868,-66.55471603944667],[97.97677976779767,-66.54796173036715],[98.07038070380707,-66.50743587588997],[98.16758167581679,-66.4837957941116],[98.2107821078211,-66.46015571233325],[98.24678246782469,-66.44833567144407],[98.52758527585274,-66.44833567144407],[98.53838538385384,-66.4550899805236],[98.55278552785529,-66.47366433049231],[98.56358563585638,-66.48041863957184],[98.57438574385748,-66.48548437138149],[98.5419854198542,-66.5530274621768],[98.52038520385207,-66.58342185303468],[98.49158491584916,-66.60368478027328],[98.53838538385384,-66.62225913024199],[98.62478624786252,-66.60875051208292],[98.9127891278913,-66.50405872135019],[98.99558995589956,-66.49223868046101],[99.06759067590679,-66.49055010319114],[99.05319053190533,-66.5243216485888],[99.00639006390065,-66.5530274621768],[98.7147871478715,-66.64252205748058],[98.75798757987582,-66.64927636656012],[98.77238772387727,-66.65771925290952],[98.78678786787867,-66.67122787106858],[98.80478804788049,-66.71344230281565],[98.81918819188195,-66.7286394982446],[98.70398703987041,-66.77423108453144],[98.73278732787327,-66.78773970269049],[98.74718747187472,-66.79111685723026],[98.76158761587618,-66.79449401177001],[98.77598775987764,-66.79955974357966],[98.77958779587794,-66.80969120719897],[98.77958779587794,-66.8451513298665],[98.78678786787867,-66.87892287526415],[98.80118801188013,-66.90087437977263],[98.82638826388268,-66.90931726612204],[98.85518855188553,-66.9042515343124],[98.88398883988839,-66.88230002980393],[98.88038880388802,-66.86034852529545],[98.86958869588699,-66.8367084435171],[98.88038880388802,-66.80800262992908],[98.90558905589057,-66.78267397088084],[98.9919899198992,-66.72357376643495],[99.00279002790029,-66.71006514827589],[99.00999009990102,-66.69993368465659],[99.01719017190175,-66.69486795284695],[99.03879038790387,-66.69486795284695],[99.04959049590497,-66.69824510738671],[99.06039060390606,-66.708376571006],[99.08199081990819,-66.7286394982446],[99.09639096390964,-66.73877096186389],[99.10719107191073,-66.74383669367354],[99.15759157591577,-66.75227958002296],[99.16839168391687,-66.75227958002296],[99.1755917559176,-66.74552527094342],[99.18279182791827,-66.72695092097472],[99.20079200792009,-66.71006514827589],[99.2331923319233,-66.70162226192647],[99.2979929799298,-66.69655653011682],[99.33039330393302,-66.69993368465659],[99.34839348393484,-66.69824510738671],[99.3627936279363,-66.69149079830717],[99.38799387993879,-66.66953929379869],[99.40239402394025,-66.66278498471917],[99.42399423994243,-66.66278498471917],[99.42399423994243,-66.61888197570222],[99.46719467194674,-66.5817332757648],[99.52839528395288,-66.55809319398645],[99.57519575195755,-66.54796173036715],[99.54639546395464,-66.59524189392386],[99.53559535595355,-66.62225913024199],[99.53919539195391,-66.64758778929023],[99.5607956079561,-66.67122787106858],[99.58239582395822,-66.66953929379869],[99.60759607596077,-66.65096494382999],[99.62559625596259,-66.62901343932151],[99.679596795968,-66.59186473938409],[99.80559805598057,-66.5530274621768],[99.8667986679867,-66.52601022585867],[99.89919899198992,-66.50743587588997],[99.92439924399247,-66.49899298954055],[99.94959949599496,-66.49730441227067],[99.98559985599854,-66.50068156681043],[100,-66.49899298954055],[100.03600036000358,-66.49055010319114],[100.05040050400504,-66.49055010319114],[100.06840068400686,-66.49561583500079],[100.08640086400862,-66.49561583500079],[100.10080100801008,-66.49055010319114],[100.13680136801366,-66.47704148503207],[100.16560165601658,-66.46015571233325],[100.18000180001803,-66.4550899805236],[100.20160201602016,-66.45340140325371],[100.21600216002162,-66.45171282598383],[100.23040230402307,-66.45002424871396],[100.28080280802811,-66.43144989874524],[100.30960309603097,-66.43313847601513],[100.32400324003243,-66.44833567144407],[100.31320313203133,-66.4837957941116],[100.33480334803352,-66.48210721684173],[100.42120421204214,-66.45340140325371],[100.44640446404463,-66.4550899805236],[100.46800468004682,-66.47197575322242],[100.50040500405004,-66.51925591677914],[100.52920529205295,-66.4939272577309],[100.56520565205653,-66.47704148503207],[100.64440644406443,-66.45846713506336],[100.61920619206194,-66.44833567144407],[100.52920529205295,-66.45171282598383],[100.5688056880569,-66.4246955896657],[100.54360543605435,-66.41456412604641],[100.47160471604718,-66.39767835334759],[100.8208082080821,-66.38416973518852],[100.85320853208532,-66.37910400337887],[100.88920889208896,-66.3672839624897],[101.0728107281073,-66.26765790356662],[101.10161101611016,-66.24570639905815],[101.12321123211234,-66.21868916274002],[101.13041130411307,-66.20180339004119],[101.13401134011343,-66.18660619461225],[101.1412114121141,-66.17647473099295],[101.16281162811629,-66.17309757645319],[101.20241202412024,-66.17140899918331],[101.22041220412206,-66.16803184464354],[101.26721267212673,-66.14608034013506],[101.27441274412746,-66.13763745378566],[101.29601296012959,-66.11230879473742],[101.30681306813068,-66.10048875384823],[101.31761317613177,-66.09035729022894],[101.33201332013323,-66.0836029811494],[101.44001440014404,-66.06840578572046],[101.47601476014762,-66.05827432210117],[101.17001170011702,-66.02956850851317],[101.18441184411847,-66.02281419943363],[101.19881198811987,-66.01943704489386],[101.22761227612278,-66.01437131308421],[101.21681216812169,-66.00761700400469],[101.20961209612096,-66.00255127219503],[101.19521195211951,-66.00086269492516],[101.18441184411847,-66.00086269492516],[101.23841238412388,-65.98397692222633],[101.28881288812892,-65.96202541771785],[101.33561335613359,-65.94345106774914],[101.57321573215734,-65.94851679955879],[101.68481684816851,-65.9670911495275],[102.00882008820088,-65.95864826317808],[102.33642336423367,-65.95189395409855],[102.51282512825128,-65.89110517238278],[102.59922599225996,-65.87084224514419],[102.71442714427144,-65.86071078152489],[102.91242912429124,-65.8792851314936],[102.96642966429664,-65.87759655422371],[103.04923049230496,-65.88941659511289],[103.06723067230672,-65.89279374965267],[103.07083070830708,-65.90292521327196],[103.07443074430745,-65.91474525416113],[103.08523085230854,-65.92487671778044],[103.09603096030963,-65.92487671778044],[103.14643146431467,-65.91643383143102],[103.15723157231571,-65.91643383143102],[103.20043200432008,-65.9282538723202],[103.27963279632797,-65.92487671778044],[103.30483304833047,-65.9282538723202],[103.31923319233192,-65.93331960412985],[103.33723337233374,-65.94513964501903],[103.34803348033483,-65.95020537682868],[103.41283412834127,-65.9569596859082],[103.56043560435603,-66.00255127219503],[103.61083610836107,-66.00930558127456],[103.63963639636398,-66.00761700400469],[103.72963729637297,-65.98228834495644],[103.75843758437583,-65.9772226131468],[103.90963909639095,-65.97891119041668],[104.16164161641615,-66.01943704489386],[104.41724417244171,-66.05996289937104],[104.5720457204572,-66.13088314470612],[104.62964629646297,-66.14101460832542],[104.8636486364864,-66.1427031855953],[105.29205292052922,-66.21531200820026],[105.34965349653498,-66.20855769912072],[105.36045360453608,-66.2102462763906],[105.40725407254075,-66.2305092036292],[105.4468544685447,-66.23219778089909],[105.46125461254616,-66.23726351270872],[105.48645486454865,-66.25414928540755],[105.49725497254974,-66.2592150172172],[105.90045900459006,-66.32000379893299],[106.30366303663038,-66.38079258064876],[106.3216632166322,-66.38923546699817],[106.32526325263251,-66.39767835334759],[106.32526325263251,-66.40949839423676],[106.32526325263251,-66.42131843512594],[106.33246332463324,-66.43144989874524],[106.3468634686347,-66.43313847601513],[106.36126361263615,-66.42807274420548],[106.37566375663755,-66.41962985785607],[106.38646386463864,-66.41118697150665],[106.41166411664119,-66.40105550788735],[106.5988659886599,-66.41456412604641],[106.64566645666457,-66.42638416693559],[106.69966699666998,-66.47028717595254],[106.72126721267216,-66.46859859868266],[106.76806768067684,-66.4550899805236],[107.11727117271175,-66.46184428960314],[107.33327333273331,-66.49899298954055],[107.4340743407434,-66.52769880312856],[107.779677796778,-66.55133888490691],[107.80127801278013,-66.5614703485262],[107.8480784807848,-66.59355331665398],[107.86967869678699,-66.61381624389257],[107.88047880478808,-66.63239059386129],[107.86607866078663,-66.65265352109988],[107.84087840878408,-66.66616213925894],[107.78687786877867,-66.68304791195777],[107.76527765277655,-66.69486795284695],[107.70047700477005,-66.737082384594],[107.7148771487715,-66.75734531183261],[107.7148771487715,-66.78773970269049],[107.71127711277114,-66.84683990713638],[107.7256772567726,-66.84346275259662],[107.73647736477363,-66.8367084435171],[107.78327783277831,-66.79787116630979],[107.7940779407794,-66.79280543450014],[107.80127801278013,-66.79111685723026],[107.81927819278195,-66.79280543450014],[107.82647826478268,-66.79280543450014],[107.83727837278371,-66.77929681634107],[107.8588785887859,-66.7472138482133],[107.86967869678699,-66.73370523005424],[107.88407884078839,-66.72695092097472],[108.04248042480424,-66.679670757418],[108.13608136081359,-66.62394770751186],[108.1648816488165,-66.62057055297211],[108.20808208082082,-66.62732486205164],[108.20088200882009,-66.65265352109988],[108.21168211682118,-66.67122787106858],[108.25128251282513,-66.69655653011682],[108.26928269282695,-66.71681945735541],[108.2836828368284,-66.73877096186389],[108.2980829808298,-66.75565673456272],[108.32328323283235,-66.76578819818201],[108.35208352083521,-66.7674767754519],[108.37728377283776,-66.76409962091213],[108.40248402484025,-66.76578819818201],[108.47808478084784,-66.79449401177001],[108.49968499684996,-66.79955974357966],[108.57528575285755,-66.8063140526592],[108.62208622086223,-66.81813409354838],[108.66168661686618,-66.84177417532673],[108.69768697686976,-66.88230002980393],[108.70848708487085,-66.91944872974133],[108.71208712087122,-66.92789161609076],[108.72288722887231,-66.9329573479004],[108.76248762487626,-66.94140023424981],[108.83448834488348,-66.96841747056794],[108.85968859688597,-66.9717946251077],[108.88128881288816,-66.96841747056794],[108.94968949689496,-66.95153169786911],[108.9856898568986,-66.95322027513899],[108.99648996489964,-66.95153169786911],[109.0000900009,-66.94815454332934],[108.99648996489964,-66.94140023424981],[108.99648996489964,-66.93464592517029],[109.0000900009,-66.92958019336064],[109.07929079290795,-66.89749722523287],[109.12609126091263,-66.8839886070738],[109.15129151291512,-66.88567718434369],[109.22329223292235,-66.9042515343124],[109.24849248492484,-66.9042515343124],[109.27009270092702,-66.90087437977263],[109.29169291692921,-66.90087437977263],[109.3168931689317,-66.90762868885216],[109.36369363693638,-66.92620303882087],[109.38529385293856,-66.9329573479004],[109.60849608496085,-66.91944872974133],[109.60489604896048,-66.91269442066181],[109.59409594095939,-66.89918580250276],[109.58689586895872,-66.89243149342322],[109.61929619296194,-66.87723429799428],[109.84609846098459,-66.85359421621591],[109.80649806498064,-66.82995413443756],[109.90729907299072,-66.80800262992908],[109.88209882098823,-66.79955974357966],[110.0981009810098,-66.76578819818201],[110.15570155701556,-66.7472138482133],[110.25290252902528,-66.69655653011682],[110.389703897039,-66.6594078301794],[110.41850418504185,-66.65603067563964],[110.4437044370444,-66.65771925290952],[110.50490504905048,-66.67122787106858],[110.55530555305552,-66.6898022210373],[110.60570605706056,-66.71681945735541],[110.6309063090631,-66.72526234370483],[110.6561065610656,-66.7286394982446],[110.74250742507428,-66.71513088008554],[110.73530735307355,-66.69655653011682],[110.71370713707137,-66.68304791195777],[110.67410674106742,-66.66785071652882],[110.70650706507064,-66.62394770751186],[110.67050670506706,-66.61212766662268],[110.65250652506523,-66.59355331665398],[110.64530645306456,-66.56822465760574],[110.65250652506523,-66.53107595766832],[110.62730627306274,-66.52938738039843],[110.6021060210602,-66.52938738039843],[110.68850688506888,-66.48886152592125],[110.70650706507064,-66.47197575322242],[110.710107101071,-66.42638416693559],[110.72450724507246,-66.406121239697],[110.63450634506347,-66.38585831245841],[110.61290612906129,-66.37234969429934],[110.59490594905952,-66.36221823068004],[110.58050580505807,-66.35546392160052],[110.54450544505448,-66.35208676706075],[110.52650526505266,-66.3470210352511],[110.5121051210512,-66.33688957163181],[110.50130501305011,-66.32338095347275],[110.49050490504908,-66.30818375804381],[110.51930519305193,-66.29636371715462],[110.54810548105485,-66.27441221264615],[110.59850598505989,-66.22713204908943],[110.62370623706238,-66.21700058547015],[110.68490684906851,-66.2102462763906],[110.70650706507064,-66.19336050369178],[110.710107101071,-66.17985188553271],[110.710107101071,-66.16803184464354],[110.71370713707137,-66.15790038102425],[110.7209072090721,-66.14776891740495],[110.76050760507604,-66.12919456743623],[110.80010800108005,-66.11568594927718],[110.92610926109262,-66.05489716756139],[110.95490954909548,-66.04814285848187],[111.01251012510124,-66.04307712667222],[111.31491314913148,-65.98904265403597],[111.61731617316173,-65.93331960412985],[111.8477184771848,-65.93500818139972],[112.30492304923052,-65.88097370876348],[112.76572765727656,-65.82525065885736],[112.87732877328773,-65.79823342253923],[113.20493204932052,-65.76615045441146],[113.22293222932228,-65.77290476349098],[113.2517325173252,-65.81511919523805],[113.27693276932769,-65.83200496793688],[113.3057330573306,-65.84213643155618],[113.42453424534244,-65.86071078152489],[113.52893528935289,-65.89617090419242],[113.66213662136624,-65.91474525416113],[113.77733777337772,-65.94851679955879],[113.79893798937991,-65.96033684044797],[113.84213842138422,-65.99410838584562],[113.89613896138962,-66.02112562216374],[114.00414004140043,-66.06165147664093],[114.0617406174062,-66.06840578572046],[114.08694086940869,-66.0751600948],[114.13374133741337,-66.11906310381694],[114.16254162541628,-66.12919456743623],[114.19134191341914,-66.12919456743623],[114.22374223742236,-66.12581741289648],[114.25614256142563,-66.13426029924588],[114.29214292142922,-66.17985188553271],[114.32094320943213,-66.18829477188213],[114.3389433894339,-66.18829477188213],[114.34974349743499,-66.19167192642189],[114.36054360543608,-66.19842623550143],[114.37854378543784,-66.20855769912072],[114.38934389343893,-66.2119348536605],[114.40374403744039,-66.21362343093037],[114.41454414544148,-66.21700058547015],[114.42894428944288,-66.22544347181955],[114.40734407344075,-66.23557493543885],[114.40374403744039,-66.25414928540755],[114.40014400144003,-66.27272363537627],[114.38934389343893,-66.2896094080751],[114.3389433894339,-66.31493806712334],[114.32094320943213,-66.33182383982216],[114.31014310143104,-66.3571524988704],[114.33534335343353,-66.35208676706075],[114.41454414544148,-66.3672839624897],[114.40734407344075,-66.37066111702947],[114.38934389343893,-66.38248115791865],[114.42894428944288,-66.40105550788735],[114.42534425344252,-66.406121239697],[114.41454414544148,-66.4162527033163],[114.40734407344075,-66.41962985785607],[114.48294482944829,-66.41456412604641],[114.35334353343535,-66.47704148503207],[114.32094320943213,-66.50912445315984],[114.67374673746741,-66.47873006230196],[114.76734767347676,-66.4939272577309],[114.81054810548108,-66.49561583500079],[114.8969489694897,-66.47197575322242],[115.04095040950409,-66.48210721684173],[115.08775087750877,-66.47704148503207],[115.11295112951132,-66.47873006230196],[115.13095130951308,-66.48717294865136],[115.15255152551526,-66.50743587588997],[115.17055170551708,-66.51925591677914],[115.19215192151921,-66.5243216485888],[115.26415264152644,-66.5327645349382],[115.35055350553506,-66.55640461671656],[115.43335433354332,-66.55978177125633],[115.5989559895599,-66.59355331665398],[115.64935649356494,-66.61381624389257],[115.68175681756821,-66.64252205748058],[115.66735667356676,-66.67291644833847],[115.68175681756821,-66.68642506649752],[115.69975699756998,-66.69655653011682],[115.7069570695707,-66.70499941646624],[115.7069570695707,-66.71344230281565],[115.7069570695707,-66.72357376643495],[115.71055710557107,-66.73201665278435],[115.7177571775718,-66.73877096186389],[115.74295742957429,-66.7472138482133],[115.75375753757538,-66.75396815729283],[115.76455764557647,-66.77254250726155],[115.7825578255783,-66.78773970269049],[115.69255692556925,-66.86034852529545],[115.5989559895599,-66.91944872974133],[115.38655386553864,-67.00387759323547],[115.15975159751599,-67.05453491133196],[114.7637476374764,-67.07142068403078],[114.59814598145982,-67.11701227031762],[114.48294482944829,-67.13052088847668],[114.39654396543966,-67.12207800212727],[114.02934029340292,-67.19130967019245],[114.00414004140043,-67.20312971108163],[113.90693906939072,-67.284181420036],[113.8781387813878,-67.29769003819507],[113.81693816938173,-67.31795296543366],[113.84933849338495,-67.32639585178308],[113.88533885338853,-67.32977300632284],[113.86733867338677,-67.3618559744506],[113.83493834938349,-67.37874174714943],[113.76293762937632,-67.39562751984826],[113.74133741337414,-67.40407040619768],[113.71613716137165,-67.42939906524592],[113.69813698136983,-67.43784195159533],[113.65853658536588,-67.4513505697544],[113.64773647736479,-67.46485918791345],[113.64773647736479,-67.48343353788216],[113.66573665736661,-67.48174496061228],[113.68013680136801,-67.48681069242193],[113.6909369093691,-67.49525357877134],[113.70533705337056,-67.50031931058099],[113.72333723337232,-67.50031931058099],[113.78093780937809,-67.48681069242193],[113.81333813338136,-67.48343353788216],[113.89973899738999,-67.49018784696169],[114.03294032940329,-67.47836780607251],[114.34974349743499,-67.4108247152772],[114.67014670146705,-67.3432816244819],[114.60174601746019,-67.39393894257839],[114.58374583745837,-67.41589044708685],[114.62694626946268,-67.42771048797603],[114.67014670146705,-67.42433333343627],[114.7529475294753,-67.40407040619768],[114.77454774547749,-67.39731609711814],[114.79254792547925,-67.37536459260967],[114.81054810548108,-67.36692170626026],[115.06255062550628,-67.32808442905295],[115.2137521375214,-67.32639585178308],[115.25335253352534,-67.31288723362401],[115.20655206552067,-67.29093572911553],[115.24255242552425,-67.25885276098776],[115.28575285752856,-67.23352410193952],[115.3361533615336,-67.22001548378046],[115.52695526955273,-67.22339263832023],[115.5881558815588,-67.21157259743104],[115.67095670956712,-67.20988402016117],[115.72495724957253,-67.20144113381176],[115.77535775357757,-67.18117820657315],[115.80055800558006,-67.18117820657315],[115.80775807758079,-67.20312971108163],[115.81855818558188,-67.22170406105035],[115.84735847358473,-67.22508121559011],[115.96615966159663,-67.19975255654187],[115.98415984159845,-67.1862439383828],[115.99855998559985,-67.15584954752492],[116.01296012960131,-67.14402950663575],[116.04536045360453,-67.14402950663575],[116.0777607776078,-67.15078381571527],[116.12816128161285,-67.16935816568397],[116.1569615696157,-67.16429243387434],[116.17856178561789,-67.14909523844538],[116.21456214562147,-67.10350365215855],[116.23256232562329,-67.09674934307903],[116.25416254162542,-67.10012649761879],[116.30816308163082,-67.1389637748261],[116.33336333363337,-67.14909523844538],[116.35856358563586,-67.14909523844538],[116.49896498964989,-67.12376657939714],[116.53136531365317,-67.11363511577785],[116.58536585365857,-67.0798635703802],[116.69336693366932,-67.04440344771265],[116.79776797767977,-66.98868039780653],[116.94176941769416,-66.94815454332934],[116.94176941769416,-66.97517177964747],[116.93096930969313,-67.00556617050536],[116.90216902169021,-67.06128922041148],[116.86256862568627,-67.10181507488868],[116.85536855368554,-67.12207800212727],[116.88416884168845,-67.1372751975562],[116.9921699216992,-67.14571808390562],[117.08937089370897,-67.13052088847668],[117.15417154171541,-67.13220946574656],[117.23697236972373,-67.11363511577785],[117.29457294572944,-67.10688080669831],[117.46377463774638,-67.1085693839682],[117.4961749617496,-67.10012649761879],[117.52137521375215,-67.08661787945972],[117.54657546575464,-67.08324072491996],[117.56817568175683,-67.10519222942844],[117.58617586175865,-67.11532369304774],[117.64377643776442,-67.12376657939714],[117.66897668976691,-67.13558662028632],[117.67617676176764,-67.14571808390562],[117.679776797768,-67.15584954752492],[117.68697686976873,-67.16598101114421],[117.69417694176946,-67.17104674295386],[117.71577715777158,-67.17104674295386],[117.73017730177304,-67.1676695884141],[117.86337863378634,-67.10181507488868],[117.91377913779138,-67.08324072491996],[118.36738367383674,-67.04609202498254],[118.42858428584287,-67.03258340682348],[118.39978399783996,-67.07142068403078],[118.3817838178382,-67.08999503399949],[118.36018360183601,-67.10350365215855],[118.2521825218252,-67.14740666117551],[118.27018270182703,-67.14909523844538],[118.28098280982812,-67.15584954752492],[118.28818288182885,-67.16598101114421],[118.29178291782921,-67.18117820657315],[118.42498424984251,-67.1575381247948],[118.4357843578436,-67.16091527933457],[118.4609846098461,-67.18455536111293],[118.47178471784719,-67.18286678384304],[118.48618486184864,-67.17611247476351],[118.5041850418504,-67.16935816568397],[118.60498604986049,-67.16260385660445],[118.61938619386194,-67.16598101114421],[118.66618666186662,-67.17948962930328],[118.68058680586807,-67.17948962930328],[118.70938709387093,-67.17273532022375],[118.78138781387815,-67.16598101114421],[118.80298802988028,-67.16935816568397],[118.84258842588429,-67.18455536111293],[118.85698856988569,-67.18793251565269],[118.86778867788678,-67.1862439383828],[118.88218882188823,-67.18455536111293],[118.88218882188823,-67.18117820657315],[118.87858878588787,-67.16598101114421],[118.87858878588787,-67.16260385660445],[118.88938889388896,-67.16091527933457],[118.92178921789218,-67.15922670206469],[119.14859148591489,-67.11701227031762],[119.18099180991811,-67.11363511577785],[119.26739267392674,-67.12883231120679],[119.29619296192965,-67.13052088847668],[119.32859328593287,-67.12714373393692],[119.43659436594368,-67.09506076580914],[119.59859598595989,-67.07648641584044],[119.67059670596706,-67.04778060225243],[119.9621996219962,-67.01400905685477],[120.01620016200161,-66.9920575523463],[120.35100351003513,-66.93464592517029],[120.40140401404017,-66.94477738878959],[120.44460444604448,-66.97854893418723],[120.34020340203404,-67.01232047958489],[119.94059940599408,-67.07817499311031],[119.53739537395376,-67.14571808390562],[119.13419134191344,-67.21157259743104],[118.73098730987311,-67.27911568822636],[118.74538745387457,-67.284181420036],[118.75978759787597,-67.28755857457577],[118.78858788587888,-67.28924715184564],[118.78498784987852,-67.2943128836553],[118.77418774187743,-67.30782150181436],[118.77058770587706,-67.3145758108939],[118.81378813788137,-67.3517245108313],[118.82818828188283,-67.35679024264095],[118.86418864188641,-67.35003593356143],[118.88218882188823,-67.35003593356143],[118.90378903789036,-67.3517245108313],[118.90018900189006,-67.35679024264095],[118.89658896588969,-67.36861028353013],[118.89298892988933,-67.37198743806991],[118.96138961389613,-67.38043032441932],[118.88938889388896,-67.41926760162661],[118.92538925389255,-67.42264475616639],[118.95778957789577,-67.42264475616639],[119.02259022590226,-67.41251329254709],[119.10179101791022,-67.3821189016892],[119.12699126991271,-67.3821189016892],[119.13419134191344,-67.38380747895908],[119.14499144991453,-67.39056178803861],[119.14859148591489,-67.39393894257839],[119.16659166591666,-67.39562751984826],[119.18459184591848,-67.39393894257839],[119.19899198991993,-67.38887321076874],[119.24579245792461,-67.37029886080002],[119.2709927099271,-67.3635445517205],[119.29619296192965,-67.36016739718073],[119.35739357393572,-67.35847881991084],[119.41499414994149,-67.36523312899037],[119.4437944379444,-67.36523312899037],[119.72819728197283,-67.31626438816377],[119.80379803798041,-67.3230186972433],[119.93339933399335,-67.29093572911553],[120.2142021420214,-67.26222991552753],[120.49860498604988,-67.23352410193952],[120.55260552605529,-67.2149497519708],[120.61740617406173,-67.20819544289128],[120.91980919809197,-67.13220946574656],[120.94860948609488,-67.13052088847668],[121.00621006210065,-67.14234092936586],[121.03861038610387,-67.14234092936586],[121.4058140581406,-67.08830645672961],[121.51381513815141,-67.09337218853926],[121.66141661416617,-67.0511577567922],[121.67581675816757,-67.04778060225243],[121.70101701017012,-67.0511577567922],[121.71541715417158,-67.04609202498254],[121.72981729817297,-67.03933771590302],[121.74421744217443,-67.03427198409337],[121.77661776617765,-67.02920625228371],[121.77301773017729,-67.02414052047406],[121.76941769417698,-67.01232047958489],[121.76941769417698,-67.00725474777525],[121.78381783817838,-67.00556617050536],[121.79821798217984,-67.00725474777525],[121.80901809018093,-67.01400905685477],[121.81981819818202,-67.02414052047406],[121.82701827018269,-67.02414052047406],[121.85221852218524,-67.01569763412465],[121.86301863018633,-67.01907478866443],[121.85221852218524,-66.99374612961618],[121.83421834218342,-66.9920575523463],[121.81621816218166,-66.9920575523463],[121.8018180181802,-66.97517177964747],[121.83061830618306,-66.96672889329805],[121.90981909819101,-66.92789161609076],[121.93861938619386,-66.91776015247146],[122.08262082620826,-66.89243149342322],[122.1870218702187,-66.8552827934858],[122.24462244622447,-66.8451513298665],[122.43542435424354,-66.83164271170745],[122.4930249302493,-66.81475693900862],[122.52182521825222,-66.81137978446884],[122.6118261182612,-66.80969120719897],[122.88182881828817,-66.77254250726155],[123.14823148231483,-66.73370523005424],[123.20943209432096,-66.73539380732413],[123.32823328233286,-66.75059100275307],[123.51543515435156,-66.75396815729283],[123.55863558635588,-66.74890242548318],[123.5910359103591,-66.737082384594],[123.66303663036632,-66.70499941646624],[123.69183691836918,-66.68473648922765],[123.70263702637027,-66.67291644833847],[123.70623706237063,-66.66447356198906],[123.71343713437136,-66.65771925290952],[123.73143731437318,-66.65096494382999],[123.93303933039334,-66.60875051208292],[123.9618396183962,-66.61043908935281],[123.96903969039693,-66.60706193481305],[123.97263972639729,-66.6019962030034],[123.97983979839802,-66.59693047119374],[124.00144001440015,-66.59186473938409],[124.0158401584016,-66.58848758484433],[124.03024030240306,-66.59017616211422],[124.04824048240482,-66.59861904846363],[124.01944019440197,-66.61381624389257],[124.03744037440373,-66.61381624389257],[124.05184051840519,-66.61043908935281],[124.0950409504095,-66.59017616211422],[124.10224102241023,-66.58848758484433],[124.26064260642607,-66.59524189392386],[124.26064260642607,-66.62394770751186],[124.28224282242826,-66.63576774840105],[124.36504365043652,-66.65096494382999],[124.37224372243725,-66.65771925290952],[124.37224372243725,-66.67460502560834],[124.36864368643688,-66.68473648922765],[124.36144361443615,-66.69824510738671],[124.33984339843397,-66.7185080346253],[124.35784357843579,-66.72019661189518],[124.37584375843761,-66.7185080346253],[124.4118441184412,-66.71175372554578],[124.42984429844302,-66.71344230281565],[124.4550445504455,-66.72019661189518],[124.47304473044733,-66.71681945735541],[124.4658446584466,-66.72188518916506],[124.46224462244624,-66.73539380732413],[124.4550445504455,-66.74045953913378],[124.48384483844842,-66.73370523005424],[124.51264512645128,-66.73201665278435],[124.57024570245704,-66.73370523005424],[124.57744577445777,-66.73370523005424],[124.59184591845917,-66.72695092097472],[124.59544595445954,-66.72695092097472],[124.60264602646026,-66.73201665278435],[124.61704617046172,-66.74890242548318],[124.62424624246245,-66.75565673456272],[124.63864638646385,-66.76241104364225],[124.6530465304653,-66.76578819818201],[124.67104671046712,-66.76578819818201],[124.7178471784718,-66.75903388910248],[124.77904779047793,-66.74045953913378],[124.80424804248042,-66.7286394982446],[124.81504815048152,-66.71681945735541],[124.81864818648188,-66.70668799373613],[124.82584825848261,-66.69824510738671],[124.84744847448474,-66.69655653011682],[124.8510485104851,-66.69993368465659],[124.86184861848619,-66.71344230281565],[124.86904869048692,-66.71681945735541],[124.87624876248765,-66.71513088008554],[125.0238502385024,-66.679670757418],[125.12105121051212,-66.66785071652882],[125.14985149851498,-66.6594078301794],[125.20025200252002,-66.6307020165914],[125.22545225452257,-66.61212766662268],[125.23985239852402,-66.59017616211422],[125.2470524705247,-66.5614703485262],[125.26505265052651,-66.53951884401773],[125.29025290252906,-66.5243216485888],[125.31905319053192,-66.51756733950926],[125.33345333453337,-66.44833567144407],[125.4090540905409,-66.41794128058618],[125.70425704257042,-66.39092404426806],[125.7366573665737,-66.377415426109],[125.76905769057691,-66.35884107614028],[125.89865898658985,-66.30649518077392],[125.92025920259204,-66.30311802623416],[125.94185941859422,-66.30311802623416],[125.95985959859598,-66.30480660350403],[125.97425974259744,-66.31324948985345],[125.9886598865989,-66.32169237620286],[126.0030600306003,-66.33182383982216],[126.06786067860679,-66.34026672617158],[126.09306093060934,-66.36052965341017],[126.10746107461074,-66.39430119880782],[126.11466114661147,-66.43989278509466],[126.1758617586176,-66.47028717595254],[126.19386193861942,-66.46015571233325],[126.21546215462155,-66.45340140325371],[126.25866258662586,-66.44833567144407],[126.29826298262986,-66.45340140325371],[126.32706327063272,-66.47028717595254],[126.33426334263345,-66.48886152592125],[126.29106291062914,-66.49899298954055],[126.30546305463054,-66.5141901849695],[126.35226352263521,-66.5530274621768],[126.3738637386374,-66.5614703485262],[126.39186391863922,-66.5530274621768],[126.40266402664025,-66.52769880312856],[126.40986409864098,-66.46859859868266],[126.39906399063995,-66.38923546699817],[126.40266402664025,-66.37234969429934],[126.43146431464316,-66.35546392160052],[126.45666456664566,-66.3571524988704],[126.48546485464857,-66.3672839624897],[126.51426514265142,-66.37234969429934],[126.49626496264966,-66.40443266242713],[126.48906489064893,-66.42300701239583],[126.49986499865003,-66.42976132147535],[126.51786517865179,-66.43313847601513],[126.55386553865537,-66.44326993963442],[126.56826568265683,-66.44495851690431],[126.58266582665829,-66.43989278509466],[126.62946629466296,-66.4162527033163],[126.64746647466478,-66.40949839423676],[126.68706687066873,-66.40443266242713],[126.7050670506705,-66.40443266242713],[126.66906669066691,-66.42131843512594],[126.68346683466837,-66.44326993963442],[126.7050670506705,-66.44495851690431],[126.74826748267486,-66.434827053285],[126.77706777067772,-66.434827053285],[126.85266852668525,-66.45002424871396],[126.83106831068312,-66.47873006230196],[126.82026820268203,-66.48548437138149],[126.80946809468094,-66.49055010319114],[126.78066780667808,-66.49730441227067],[126.76626766267663,-66.50237014408032],[126.74826748267486,-66.52263307131891],[126.74826748267486,-66.53783026674785],[126.75186751867517,-66.55471603944667],[126.74106741067413,-66.57666754395515],[126.71946719467195,-66.59355331665398],[126.69426694266946,-66.6019962030034],[126.64386643866442,-66.61043908935281],[126.61866618666187,-66.61888197570222],[126.6006660066601,-66.6307020165914],[126.56826568265683,-66.66616213925894],[126.67266672666727,-66.64421063475046],[126.7050670506705,-66.64083348021069],[126.76626766267663,-66.65265352109988],[126.78066780667808,-66.6594078301794],[126.80586805868057,-66.68304791195777],[126.82026820268203,-66.69149079830717],[126.79506795067954,-66.71513088008554],[126.71586715867159,-66.73877096186389],[126.679866798668,-66.75734531183261],[126.67626676266764,-66.76916535272179],[126.66546665466655,-66.81644551627849],[126.66546665466655,-66.83164271170745],[126.68346683466837,-66.8451513298665],[126.7050670506705,-66.8451513298665],[126.96786967869679,-66.80800262992908],[126.98226982269824,-66.80969120719897],[127.06147061470614,-66.84852848440627],[127.03627036270365,-66.89580864796298],[127.01827018270183,-66.91607157520157],[127.00027000270006,-66.9329573479004],[127.08307083070832,-66.95659742967877],[127.0650706507065,-66.97010604783782],[127.05787057870577,-66.98361466599688],[127.05787057870577,-67.00050043869571],[127.05787057870577,-67.0207633659343],[127.05787057870577,-67.02920625228371],[127.05427054270541,-67.03596056136325],[127.04347043470437,-67.0494691795223],[127.04347043470437,-67.05791206587172],[127.05427054270541,-67.06297779768137],[127.0650706507065,-67.06804352949102],[127.07227072270723,-67.07310926130066],[127.06867068670687,-67.08661787945972],[127.0650706507065,-67.10688080669831],[127.0650706507065,-67.12545515666703],[127.08307083070832,-67.13558662028632],[127.09747097470978,-67.13389804301644],[127.11187111871118,-67.12376657939714],[127.14787147871482,-67.08155214765009],[127.15867158671585,-67.06804352949102],[127.15867158671585,-67.05453491133196],[127.15147151471518,-67.03427198409337],[127.15507155071549,-67.0207633659343],[127.16947169471695,-67.00387759323547],[127.1838718387184,-66.98868039780653],[127.19827198271986,-66.98023751145712],[127.36387363873638,-66.93126877063052],[127.33507335073352,-66.981926088727],[127.35667356673565,-66.9920575523463],[127.36747367473674,-66.99881186142582],[127.37107371073711,-67.00556617050536],[127.36027360273602,-67.03258340682348],[127.36027360273602,-67.04440344771265],[127.37107371073711,-67.05453491133196],[127.39987399874002,-67.06804352949102],[127.43227432274324,-67.06973210676091],[127.61587615876158,-67.0494691795223],[127.69507695076953,-67.05622348860184],[127.83547835478356,-67.0207633659343],[127.86427864278642,-67.01907478866443],[127.92187921879218,-67.02920625228371],[128.0730807308073,-67.02245194320419],[128.08028080280803,-67.02582909774395],[128.08748087480876,-67.03596056136325],[128.10188101881022,-67.07648641584044],[128.10908109081095,-67.08324072491996],[128.1630816308163,-67.10181507488868],[128.18468184681848,-67.10350365215855],[128.20628206282066,-67.10012649761879],[128.29628296282965,-67.07479783857055],[128.33228332283323,-67.07142068403078],[128.35748357483578,-67.07817499311031],[128.36468364683645,-67.08830645672961],[128.37548375483755,-67.11025796123809],[128.38268382683827,-67.11870084758749],[128.49428494284945,-67.14402950663575],[128.51948519485194,-67.14571808390562],[128.62388623886238,-67.12376657939714],[128.68148681486815,-67.11870084758749],[128.7066870668707,-67.1085693839682],[128.72468724687246,-67.08830645672961],[128.7318873188732,-67.05960064314161],[128.76428764287647,-67.02582909774395],[128.82548825488254,-67.03427198409337],[129.0126901269013,-67.11194653850796],[129.02349023490234,-67.12207800212727],[129.0378903789038,-67.15584954752492],[129.06309063090634,-67.17442389749363],[129.09909099090993,-67.1676695884141],[129.20349203492037,-67.10012649761879],[129.2106921069211,-67.09337218853926],[129.21429214292147,-67.08492930218985],[129.21429214292147,-67.06804352949102],[129.21429214292147,-67.05960064314161],[129.22149221492214,-67.0494691795223],[129.24669246692469,-67.02414052047406],[129.27189271892718,-67.00725474777525],[129.4338943389434,-66.96672889329805],[129.44469444694448,-66.95997458421853],[129.44469444694448,-66.94477738878959],[129.43749437494375,-66.92789161609076],[129.4230942309423,-66.91269442066181],[129.38349383493835,-66.87723429799428],[129.39429394293944,-66.85865994802556],[129.4230942309423,-66.84346275259662],[129.48069480694807,-66.82319982535803],[129.49509495094952,-66.81475693900862],[129.5058950589506,-66.80293689811944],[129.5166951669517,-66.78436254815072],[129.52749527495274,-66.77591966180131],[129.57429574295742,-66.75059100275307],[129.5850958509585,-66.7286394982446],[129.54909549095493,-66.7185080346253],[129.50229502295025,-66.71513088008554],[129.46989469894697,-66.71681945735541],[129.47349473494734,-66.69149079830717],[129.50949509495098,-66.65265352109988],[129.520295202952,-66.62901343932151],[129.5310953109531,-66.61381624389257],[129.55989559895602,-66.6003076257335],[129.6390963909639,-66.57497896668526],[129.65349653496537,-66.5614703485262],[129.67149671496713,-66.54627315309726],[129.69309693096932,-66.5327645349382],[129.71109711097114,-66.51587876223937],[129.72549725497254,-66.48717294865136],[129.73269732697327,-66.45846713506336],[129.72189721897217,-66.43820420782477],[129.80109801098013,-66.406121239697],[129.87669876698766,-66.36221823068004],[129.9126991269913,-66.35208676706075],[130.00990009900102,-66.34533245798121],[130.0351003510035,-66.33182383982216],[130.06390063900642,-66.29467513988475],[130.10350103501037,-66.27610078991603],[130.23670236702367,-66.26090359448709],[130.2547025470255,-66.26259217175698],[130.29070290702907,-66.2794779444558],[130.31230312303126,-66.27778936718592],[130.34830348303484,-66.26596932629674],[130.34470344703448,-66.27272363537627],[130.34470344703448,-66.2879208308052],[130.3411034110341,-66.29467513988475],[130.46350463504638,-66.25246070813768],[130.52830528305282,-66.24232924451837],[130.56430564305646,-66.26090359448709],[130.58230582305822,-66.24232924451837],[130.6039060390604,-66.19673765823154],[130.6255062550626,-66.18491761734236],[130.70470704707049,-66.14945749467483],[130.72990729907298,-66.14776891740495],[130.84150841508415,-66.17816330826284],[130.87030870308706,-66.18322904007249],[131.02151021510218,-66.18660619461225],[131.07191071910722,-66.19842623550143],[131.09711097110971,-66.20180339004119],[131.15831158311585,-66.19504908096167],[131.18351183511834,-66.19842623550143],[131.1979119791198,-66.20518054458095],[131.21951219512198,-66.22375489454967],[131.23031230312301,-66.2305092036292],[131.24471244712447,-66.23388635816897],[131.26991269912702,-66.23726351270872],[131.32391323913242,-66.2406406672485],[131.33831338313382,-66.23726351270872],[131.35271352713528,-66.23219778089909],[131.38151381513813,-66.21531200820026],[131.3959139591396,-66.2119348536605],[131.75951759517596,-66.24401782178826],[132.0511205112051,-66.21700058547015],[132.14832148321483,-66.17816330826284],[132.47952479524798,-66.15114607194471],[132.50472504725047,-66.15621180375436],[132.55512555125551,-66.17478615372306],[132.60552605526055,-66.18660619461225],[132.82512825128254,-66.18998334915202],[133.0159301593016,-66.14608034013506],[133.0915309153092,-66.10555448565788],[133.12033120331205,-66.09711159930846],[133.27513275132753,-66.08022582660963],[133.50193501935019,-66.0836029811494],[133.60633606336063,-66.10893164019765],[133.7935379353794,-66.10555448565788],[133.8259382593826,-66.11399737200729],[133.85473854738547,-66.12750599016636],[133.8727387273873,-66.14608034013506],[133.8907389073891,-66.16972042191342],[133.90873908739087,-66.18322904007249],[133.93393933939342,-66.19336050369178],[133.96273962739627,-66.19842623550143],[133.97713977139773,-66.19842623550143],[134.00234002340022,-66.19504908096167],[134.01674016740168,-66.19504908096167],[134.07434074340745,-66.21700058547015],[134.12834128341285,-66.22713204908943],[134.14994149941498,-66.23726351270872],[134.18954189541898,-66.2794779444558],[134.2111421114211,-66.2794779444558],[134.2327423274233,-66.27441221264615],[134.2579425794258,-66.2794779444558],[134.26514265142652,-66.28623225353533],[134.27234272342724,-66.30649518077392],[134.27954279542797,-66.31324948985345],[134.29034290342906,-66.3183152216631],[134.3011430114301,-66.32000379893299],[134.3767437674377,-66.30649518077392],[134.40194401944018,-66.30480660350403],[134.42714427144273,-66.31156091258357],[134.43794437944382,-66.3284466852824],[134.419944199442,-66.34364388071134],[134.34794347943483,-66.3672839624897],[134.26154261542615,-66.41287554877653],[134.22914229142293,-66.44158136236453],[134.11034110341103,-66.50405872135019],[134.16434164341644,-66.51250160769962],[134.3407434074341,-66.4837957941116],[134.32634326343265,-66.48886152592125],[134.31554315543156,-66.49730441227067],[134.30834308343083,-66.50743587588997],[134.2975429754298,-66.51756733950926],[134.35154351543514,-66.51925591677914],[134.419944199442,-66.49730441227067],[134.76554765547655,-66.33688957163181],[134.74034740347406,-66.3672839624897],[134.87354873548736,-66.3571524988704],[134.9347493474935,-66.34195530344147],[134.95634956349562,-66.34364388071134],[134.98514985149853,-66.35884107614028],[135.01035010350103,-66.36559538521982],[135.03555035550357,-66.36390680794993],[135.17955179551797,-66.33182383982216],[135.1759517595176,-66.31156091258357],[135.17955179551797,-66.29129798534498],[135.17955179551797,-66.27441221264615],[135.1651516515165,-66.26090359448709],[135.1867518675187,-66.2592150172172],[135.229952299523,-66.24739497632802],[135.28755287552877,-66.22206631727978],[135.29835298352987,-66.21531200820026],[135.30195301953023,-66.16296611283389],[135.319953199532,-66.12581741289648],[135.3307533075331,-66.10893164019765],[135.34155341553418,-66.10048875384823],[135.48915489154894,-66.11062021746753],[135.4927549275493,-66.11399737200729],[135.49635496354966,-66.1224402583567],[135.49995499955003,-66.13088314470612],[135.5035550355504,-66.13932603105553],[135.53955539555398,-66.17478615372306],[135.54315543155434,-66.17985188553271],[135.5611556115561,-66.18491761734236],[135.56835568355683,-66.18998334915202],[135.61155611556114,-66.24570639905815],[135.64755647556478,-66.27778936718592],[135.65115651156515,-66.30142944896427],[135.64035640356406,-66.32506953074264],[135.62955629556296,-66.3470210352511],[135.66555665556655,-66.35377534433064],[135.69795697956982,-66.3284466852824],[135.72675726757268,-66.29467513988475],[135.7555575555756,-66.27610078991603],[135.80955809558094,-66.26765790356662],[135.81675816758167,-66.2693464808365],[135.8347583475835,-66.27778936718592],[135.84195841958422,-66.2794779444558],[135.86355863558634,-66.27610078991603],[135.9067590675907,-66.26090359448709],[135.92835928359284,-66.25752643994733],[135.98235982359824,-66.26090359448709],[135.9967599675997,-66.2592150172172],[136.08316083160832,-66.23726351270872],[136.129961299613,-66.23557493543885],[136.1587615876159,-66.24570639905815],[136.22356223562235,-66.2879208308052],[136.28476284762849,-66.31662664439321],[136.3027630276303,-66.3284466852824],[136.33516335163353,-66.3571524988704],[136.35316353163535,-66.3672839624897],[136.38916389163893,-66.37910400337887],[136.5115651156512,-66.3959897760777],[136.5259652596526,-66.39936693061748],[136.54396543965441,-66.40949839423676],[136.55836558365587,-66.42300701239583],[136.56556565565654,-66.434827053285],[136.57276572765727,-66.45677855779348],[136.579965799658,-66.47366433049231],[136.63756637566377,-66.52938738039843],[136.6555665556656,-66.54120742128762],[136.669966699667,-66.54120742128762],[136.70596705967063,-66.51250160769962],[136.72036720367203,-66.49730441227067],[136.73116731167312,-66.47704148503207],[136.70596705967063,-66.47535290776219],[136.65916659166595,-66.46015571233325],[136.63756637566377,-66.45677855779348],[136.6555665556656,-66.39936693061748],[136.6879668796688,-66.36559538521982],[136.73476734767348,-66.34870961252099],[136.94356943569437,-66.3284466852824],[137.41517415174155,-66.35039818979087],[137.45837458374587,-66.34533245798121],[137.4691746917469,-66.3470210352511],[137.49077490774908,-66.36221823068004],[137.50157501575018,-66.36559538521982],[137.67077670776706,-66.377415426109],[137.71037710377107,-66.36897253975958],[137.7211772117721,-66.3672839624897],[137.7319773197732,-66.37403827156923],[137.75357753577538,-66.3959897760777],[137.76797767977683,-66.40274408515724],[137.78237782377823,-66.406121239697],[137.82197821978218,-66.40949839423676],[137.84717847178473,-66.4162527033163],[137.91197911979123,-66.44158136236453],[137.92277922779226,-66.44833567144407],[137.92637926379263,-66.4550899805236],[137.93357933579335,-66.46184428960314],[137.9587795877959,-66.4652214441429],[137.969579695797,-66.47028717595254],[137.99117991179912,-66.48041863957184],[138.01998019980203,-66.48886152592125],[138.14238142381424,-66.49899298954055],[138.14958149581497,-66.50405872135019],[138.16398163981643,-66.52601022585867],[138.17118171181716,-66.5327645349382],[138.18558185581855,-66.53783026674785],[138.13158131581315,-66.62394770751186],[138.17838178381783,-66.61550482116246],[138.2215822158222,-66.6003076257335],[138.3007830078301,-66.5530274621768],[138.3331833318333,-66.53951884401773],[138.37638376383762,-66.5327645349382],[138.6067860678607,-66.54120742128762],[138.6175861758618,-66.53951884401773],[138.6319863198632,-66.52601022585867],[138.64278642786428,-66.52263307131891],[138.649986499865,-66.52769880312856],[138.66438664386646,-66.54458457582739],[138.66798667986683,-66.55133888490691],[138.67878678786786,-66.55640461671656],[138.73278732787327,-66.56991323487563],[138.75438754387545,-66.56653608033585],[138.77238772387727,-66.56315892579609],[138.92718927189276,-66.55640461671656],[138.97038970389707,-66.55978177125633],[139.02799027990284,-66.57666754395515],[139.0459904599046,-66.57666754395515],[139.09279092790928,-66.56653608033585],[139.1755917559176,-66.5716018121455],[139.25119251192513,-66.56653608033585],[139.45639456394565,-66.59355331665398],[139.4419944199442,-66.62394770751186],[139.4527945279453,-66.64252205748058],[139.47799477994784,-66.65096494382999],[139.5067950679507,-66.65096494382999],[139.5247952479525,-66.64589921202034],[139.57519575195755,-66.62732486205164],[139.58959589595895,-66.62563628478175],[139.67599675996763,-66.6307020165914],[139.71199711997122,-66.64083348021069],[139.7767977679777,-66.66953929379869],[139.8127981279813,-66.679670757418],[139.84159841598415,-66.68304791195777],[139.8667986679867,-66.69149079830717],[139.8919989199892,-66.72188518916506],[139.8667986679867,-66.73370523005424],[139.84159841598415,-66.75059100275307],[139.8235982359824,-66.77085392999166],[139.8235982359824,-66.7961825890399],[139.86319863198634,-66.77591966180131],[139.91719917199174,-66.75734531183261],[139.96399963999642,-66.75227958002296],[140.02160021600218,-66.77423108453144],[140.03960039600395,-66.76241104364225],[140.06120061200613,-66.74383669367354],[140.08280082800832,-66.73370523005424],[140.11160111601117,-66.7286394982446],[140.28440284402848,-66.7286394982446],[140.31320313203133,-66.73539380732413],[140.33480334803352,-66.7472138482133],[140.37800378003783,-66.78436254815072],[140.38520385203856,-66.78773970269049],[140.39240392403923,-66.78267397088084],[140.41040410404105,-66.7674767754519],[140.41760417604178,-66.75396815729283],[140.4140041400414,-66.74383669367354],[140.4140041400414,-66.737082384594],[140.4356043560436,-66.73032807551448],[140.46440464404645,-66.72695092097472],[140.51840518405186,-66.72526234370483],[140.69480694806947,-66.74890242548318],[140.90000900009,-66.75227958002296],[141.00441004410044,-66.7674767754519],[141.260012600126,-66.85697137075567],[141.2816128161282,-66.86203710256532],[141.2960129601296,-66.85359421621591],[141.30681306813068,-66.8265769798978],[141.3356133561336,-66.8367084435171],[141.36081360813608,-66.84008559805685],[141.389613896139,-66.83501986624721],[141.4436144361444,-66.81306836173873],[141.5768157681577,-66.77929681634107],[141.98001980019802,-66.79955974357966],[142.0916209162092,-66.8265769798978],[142.19962199621995,-66.87554572072439],[142.21762217622177,-66.89243149342322],[142.250022500225,-66.93126877063052],[142.2680226802268,-66.94815454332934],[142.27522275222753,-66.94984312059923],[142.289622896229,-66.94984312059923],[142.29682296822972,-66.94984312059923],[142.3040230402304,-66.95490885240888],[142.31482314823148,-66.96504031602817],[142.31842318423185,-66.97010604783782],[142.33642336423367,-66.9734832023776],[142.34722347223476,-66.9734832023776],[142.3580235802358,-66.97854893418723],[142.37242372423725,-66.9920575523463],[142.41562415624156,-67.01400905685477],[142.4768247682477,-67.02582909774395],[142.82242822428225,-67.01907478866443],[142.88002880028802,-67.00894332504512],[142.99882998829992,-66.9616631614884],[143.47043470434704,-66.8451513298665],[143.510035100351,-66.8451513298665],[143.75123751237516,-66.88061145253404],[143.82323823238232,-66.90087437977263],[143.85923859238596,-66.91944872974133],[143.87723877238773,-66.93971165697994],[143.86283862838627,-66.99543470688606],[143.86643866438664,-67.01400905685477],[143.87363873638736,-67.03258340682348],[143.88443884438846,-67.04102629317289],[143.88803888038882,-67.0511577567922],[143.87723877238773,-67.07310926130066],[143.8556385563856,-67.09337218853926],[143.780037800378,-67.12038942485738],[143.75123751237516,-67.1389637748261],[144.0428404284043,-67.08830645672961],[144.0680406804068,-67.08661787945972],[144.07524075240752,-67.09168361126937],[144.0788407884079,-67.10519222942844],[144.08244082440825,-67.13389804301644],[144.08964089640898,-67.15416097025503],[144.10044100441007,-67.17104674295386],[144.11484114841147,-67.1778010520334],[144.12564125641256,-67.16091527933457],[144.14364143641438,-67.09337218853926],[144.15444154441548,-67.07310926130066],[144.18324183241833,-67.04440344771265],[144.22644226442264,-67.02414052047406],[144.27324273242732,-67.010631902315],[144.31644316443163,-67.0021890159656],[144.41364413644135,-67.00050043869571],[144.51084510845112,-67.01569763412465],[144.5468454684547,-67.0308948295536],[144.64404644046442,-67.09506076580914],[144.66204662046624,-67.11701227031762],[144.62964629646297,-67.16091527933457],[144.59724597245975,-67.1862439383828],[144.5576455764558,-67.1963754020021],[144.50004500045003,-67.1963754020021],[144.45684456844572,-67.18793251565269],[144.41004410044104,-67.17273532022375],[144.3632436324363,-67.16260385660445],[144.320043200432,-67.17104674295386],[144.34164341643418,-67.19468682473222],[144.359643596436,-67.2065068656214],[144.38124381243813,-67.21157259743104],[144.4388443884439,-67.20819544289128],[144.4640446404464,-67.21326117470093],[144.48924489244894,-67.22339263832023],[144.51444514445143,-67.23521267920941],[144.50724507245076,-67.24872129736846],[144.48564485644857,-67.26898422460707],[144.47484474844748,-67.28080426549624],[144.45684456844572,-67.3230186972433],[144.44604446044463,-67.3331501608626],[144.43164431644317,-67.3432816244819],[144.38844388443886,-67.35847881991084],[144.37764377643776,-67.36523312899037],[144.32364323643236,-67.40575898346756],[144.30204302043023,-67.41757902435674],[144.27684276842768,-67.4209561788965],[144.24804248042483,-67.41420186981696],[144.22644226442264,-67.3922503653085],[144.20124201242015,-67.3635445517205],[144.1760417604176,-67.34665877902167],[144.1508415084151,-67.3618559744506],[144.14364143641438,-67.37367601533978],[144.14724147241475,-67.38380747895908],[144.14724147241475,-67.3922503653085],[144.13644136441366,-67.40744756073744],[144.11844118441184,-67.41757902435674],[144.10044100441007,-67.41926760162661],[144.08604086040862,-67.42433333343627],[144.08604086040862,-67.44628483794475],[144.09324093240934,-67.4513505697544],[144.1220412204122,-67.45303914702427],[144.13644136441366,-67.45810487883392],[144.15444154441548,-67.46823634245322],[144.1652416524165,-67.47836780607251],[144.1652416524165,-67.49187642423158],[144.1652416524165,-67.51213935147017],[144.1652416524165,-67.52564796962923],[144.16884168841688,-67.53915658778828],[144.18324183241833,-67.56448524683654],[144.19044190441906,-67.58137101953535],[144.19044190441906,-67.59487963769442],[144.17964179641797,-67.60838825585348],[144.14364143641438,-67.6455369557909],[144.11844118441184,-67.6641113057596],[144.09324093240934,-67.67930850118856],[144.05004050040503,-67.69788285115726],[143.98523985239854,-67.71645720112598],[143.90963909639095,-67.75529447833327],[143.8808388083881,-67.78062313738153],[143.8556385563856,-67.81270610550929],[143.84123841238414,-67.84647765090693],[143.870038700387,-67.84816622817682],[143.95643956439568,-67.83296903274788],[143.92043920439204,-67.84985480544671],[143.9132391323913,-67.86167484633589],[143.9132391323913,-67.88024919630459],[143.9132391323913,-67.89206923719377],[143.90243902439028,-67.90726643262272],[143.8808388083881,-67.93428366894085],[143.95283952839532,-67.94610370983003],[144.02124021240212,-67.93597224621072],[144.15444154441548,-67.88531492811424],[144.14004140041402,-67.9190864735119],[144.13644136441366,-67.93597224621072],[144.14004140041402,-67.95285801890955],[144.1868418684187,-67.93934940075049],[144.20844208442088,-67.94103797802038],[144.230042300423,-67.95116944163968],[144.24804248042483,-67.95454659617943],[144.26964269642696,-67.94610370983003],[144.35244352443527,-67.9005121235432],[144.42444424444244,-67.82452614639847],[144.46764467644675,-67.79413175554058],[144.55404554045543,-67.76204878741281],[144.6008460084601,-67.7519173237935],[144.6476464764648,-67.74685159198387],[144.809648096481,-67.75529447833327],[144.8636486364864,-67.75022874652363],[144.90324903249035,-67.73840870563444],[144.9428494284943,-67.71814577839586],[145.05445054450547,-67.6354054921716],[145.2380523805238,-67.529025124169],[145.28125281252812,-67.51551650600993],[145.32445324453244,-67.51045077420028],[145.42165421654215,-67.5087621969304],[145.44325443254434,-67.51551650600993],[145.46125461254616,-67.53409085597865],[145.48285482854828,-67.57630528772572],[145.490054900549,-67.59656821496431],[145.48285482854828,-67.62358545128242],[145.50805508055083,-67.63033976036195],[145.52965529655296,-67.64047122398125],[145.5368553685537,-67.65060268760055],[145.53325533255332,-67.6641113057596],[145.5260552605526,-67.67761992391867],[145.5260552605526,-67.69112854207773],[145.54765547655478,-67.71139146931633],[145.580055800558,-67.72827724201515],[145.61605616056164,-67.73672012836457],[145.6448564485645,-67.73672012836457],[145.6880568805688,-67.70126000569704],[145.70605706057063,-67.64384837852101],[145.73485734857348,-67.59319106042454],[145.79605796057962,-67.57461671045583],[145.91845918459188,-67.58981390588477],[146.04806048060482,-67.586436751345],[146.0732607326073,-67.59150248315466],[146.13086130861308,-67.61345398766312],[146.1920619206192,-67.62358545128242],[146.2028620286203,-67.64384837852101],[146.20646206462067,-67.66917703756926],[146.2280622806228,-67.68775138753797],[146.2028620286203,-67.70632573750667],[146.10926109261095,-67.75022874652363],[146.1272612726127,-67.76542594195257],[146.1740617406174,-67.76880309649233],[146.19566195661957,-67.7823117146514],[146.2136621366214,-67.79750891008034],[146.24966249662498,-67.8211489918587],[146.26406264062643,-67.83465761001776],[146.30006300063002,-67.85154338271659],[146.34326343263433,-67.831280455478],[146.38286382863828,-67.7924431782707],[146.40806408064083,-67.7536059010634],[146.44046440464405,-67.73165439655492],[146.4908649086491,-67.74178586017422],[146.53046530465303,-67.77049167376222],[146.53766537665376,-67.80257464188999],[146.51246512465127,-67.8414119190973],[146.47286472864732,-67.87349488722506],[146.42966429664295,-67.8988235462733],[146.38646386463864,-67.91570931897213],[146.4116641166412,-67.95116944163968],[146.4548645486455,-67.94948086436979],[146.50526505265054,-67.93597224621072],[146.5448654486545,-67.93766082348061],[146.53046530465303,-67.94948086436979],[146.52686526865267,-67.96130090525897],[146.5340653406534,-67.97312094614814],[146.5448654486545,-67.98662956430721],[146.55206552065522,-67.98831814157708],[146.56646566465668,-67.98156383249756],[146.59526595265953,-67.96130090525897],[146.61686616866172,-67.95116944163968],[146.6420664206642,-67.94441513256014],[146.66726667266676,-67.93934940075049],[146.68886688866888,-67.93934940075049],[146.68166681666816,-67.94272655529025],[146.6636666366664,-67.95454659617943],[146.71046710467107,-67.95961232798908],[146.81846818468188,-67.92077505078178],[146.87246872468728,-67.93766082348061],[146.80406804068042,-68.00013818246627],[146.63486634866348,-68.08625562323029],[146.55926559265595,-68.1436672504063],[146.58086580865807,-68.15042155948584],[146.60246602466026,-68.17912737307384],[146.62046620466208,-68.1825045276136],[146.70326703267034,-68.16899590945454],[146.7968679686797,-68.13860151859664],[146.969669696697,-68.05248407783263],[147.0236702367024,-68.03390972786391],[147.06327063270635,-68.03897545967357],[147.07407074070744,-68.05417265510252],[147.0776707767078,-68.07781273688087],[147.0776707767078,-68.10145281865923],[147.07047070470708,-68.11665001408818],[147.05607056070562,-68.13522436405688],[147.03447034470344,-68.14873298221595],[146.99126991269912,-68.17068448672441],[146.85806858068582,-68.20952176393172],[146.80406804068042,-68.24329330932937],[146.74646746467465,-68.2703105456475],[146.72126721267216,-68.28719631834633],[146.7176671766718,-68.30408209104516],[146.7320673206732,-68.31590213193434],[146.7608676086761,-68.32265644101386],[146.80406804068042,-68.3192792864741],[146.8940689406894,-68.29395062742586],[146.93726937269372,-68.29563920469573],[146.94446944469445,-68.30239351377527],[146.94446944469445,-68.31083640012469],[146.9480694806948,-68.31590213193434],[146.96246962469627,-68.31590213193434],[147.10647106471066,-68.29395062742586],[147.09927099270993,-68.31083640012469],[147.09567095670957,-68.34123079098256],[147.0812708127081,-68.35980514095128],[147.0488704887049,-68.38006806818987],[147.0380703807038,-68.39357668634894],[147.03087030870307,-68.41552819085742],[147.05967059670598,-68.42228249993694],[147.08847088470884,-68.41890534539718],[147.17487174871752,-68.39526526361882],[147.18567185671856,-68.39526526361882],[147.21447214472147,-68.41046245904776],[147.22887228872293,-68.41215103631765],[147.26127261272615,-68.40877388177788],[147.38727387273872,-68.37669091365011],[147.40527405274054,-68.37669091365011],[147.419674196742,-68.37837949092],[147.45567455674558,-68.38851095453929],[147.47007470074703,-68.38851095453929],[147.5168751687517,-68.37500233638022],[147.62847628476288,-68.35642798641152],[147.6608766087661,-68.35642798641152],[147.7256772567726,-68.36993660457058],[147.75807758077582,-68.37331375911035],[147.81927819278195,-68.36655945003082],[147.8480784807848,-68.36993660457058],[147.88407884078845,-68.407085304508],[147.91647916479167,-68.41721676812729],[147.98487984879853,-68.42228249993694],[147.98127981279816,-68.435791118096],[147.98127981279816,-68.44423400444542],[147.98487984879853,-68.45436546806471],[147.9920799207992,-68.46280835441412],[147.99927999279993,-68.46449693168401],[148.01368013680138,-68.45774262260448],[148.02448024480248,-68.44929973625506],[148.0316803168032,-68.44254542717553],[148.06048060480606,-68.43747969536588],[148.11448114481146,-68.44592258171531],[148.13968139681396,-68.44592258171531],[148.21528215282154,-68.41890534539718],[148.24048240482404,-68.41383961358753],[148.26568265682658,-68.41721676812729],[148.29448294482944,-68.42734823174659],[148.30528305283053,-68.44423400444542],[148.2872828728287,-68.46618550895388],[148.43488434884353,-68.47293981803342],[148.51768517685178,-68.45267689079483],[148.61128611286114,-68.46787408622377],[148.62208622086223,-68.45774262260448],[148.62208622086223,-68.44761115898518],[148.61848618486187,-68.43916827263577],[148.6256862568626,-68.43072538628635],[148.640086400864,-68.41890534539718],[148.65448654486545,-68.41046245904776],[148.67248672486727,-68.40539672723811],[148.69048690486903,-68.40370814996822],[148.7228872288723,-68.40539672723811],[148.7480874808748,-68.41383961358753],[148.79848798487984,-68.44085684990566],[148.83088830888312,-68.45267689079483],[148.8560885608856,-68.45436546806471],[148.91728917289174,-68.44592258171531],[148.98208982089824,-68.44592258171531],[149.00729007290073,-68.43916827263577],[149.06129061290613,-68.41215103631765],[149.09369093690935,-68.40539672723811],[149.12609126091263,-68.40201957269835],[149.1548915489155,-68.40201957269835],[149.1188911889119,-68.42059392266705],[149.15849158491585,-68.44929973625506],[149.2088920889209,-68.46111977714425],[149.25569255692557,-68.45098831352495],[149.30969309693097,-68.407085304508],[149.33849338493388,-68.39526526361882],[149.36729367293674,-68.38851095453929],[149.38889388893892,-68.38513379999952],[149.41409414094142,-68.38682237726941],[149.48249482494828,-68.41890534539718],[149.78489784897852,-68.48644843619249],[149.83529835298356,-68.4847598589226],[149.88209882098823,-68.46280835441412],[149.83889838898392,-68.43072538628635],[149.81369813698137,-68.41721676812729],[149.78849788497888,-68.41215103631765],[149.75969759697597,-68.40877388177788],[149.7308973089731,-68.40201957269835],[149.70569705697056,-68.38851095453929],[149.68409684096844,-68.36993660457058],[149.73449734497348,-68.35305083187176],[149.7776977769778,-68.36487087276093],[149.8640986409864,-68.41215103631765],[149.91449914499145,-68.42397107720683],[150.27450274502746,-68.42734823174659],[150.350103501035,-68.43916827263577],[150.3789037890379,-68.43916827263577],[150.65250652506523,-68.41046245904776],[150.8541085410854,-68.35136225460187],[150.9081090810908,-68.34291936825245],[150.95490954909548,-68.34291936825245],[151.01251012510124,-68.35136225460187],[151.06291062910628,-68.36993660457058],[151.09531095310956,-68.407085304508],[151.11331113311132,-68.4560540453346],[151.10971109711096,-68.47293981803342],[151.06651066510665,-68.5151542497805],[151.05211052110525,-68.53710575428897],[151.05211052110525,-68.55905725879744],[151.0809108091081,-68.57425445422638],[151.0017100171002,-68.68907770857841],[150.96930969309693,-68.71778352216641],[150.99090990909912,-68.7279149857857],[151.0017100171002,-68.74480075848453],[151.00891008910088,-68.76168653118336],[151.02331023310234,-68.77688372661231],[151.1061110611106,-68.8275410447088],[151.1457114571146,-68.86637832191609],[151.16371163711636,-68.87819836280528],[151.1709117091171,-68.86975547645585],[151.23931239312395,-68.83091819924856],[151.28611286112863,-68.82922962197867],[151.3221132211322,-68.84104966286785],[151.3977139771398,-68.8849526718848],[151.41931419314193,-68.89339555823422],[151.43731437314375,-68.89846129004385],[151.50211502115025,-68.90183844458363],[151.56691566915669,-68.91703564001257],[151.57771577715778,-68.84273824013773],[151.5741157411574,-68.80727811747019],[151.5525155251553,-68.78363803569184],[151.55971559715596,-68.78194945842196],[151.57051570515705,-68.77688372661231],[151.5741157411574,-68.77519514934242],[151.5525155251553,-68.7279149857857],[151.5525155251553,-68.70765205854713],[151.5741157411574,-68.69245486311817],[151.58851588515887,-68.6907662858483],[151.61371613716136,-68.6992091721977],[151.92331923319233,-68.66712620406993],[151.93411934119342,-68.66881478133982],[151.95211952119524,-68.680634822229],[151.96291962919628,-68.68401197676876],[151.97731977319773,-68.68232339949887],[151.98451984519846,-68.68401197676876],[152.00612006120065,-68.69414344038806],[152.03132031320314,-68.70258632673747],[152.09252092520927,-68.71102921308689],[152.15732157321577,-68.73635787213513],[152.21492214922148,-68.73466929486524],[152.40212402124024,-68.6992091721977],[152.4309243092431,-68.70089774946759],[152.4417244172442,-68.70596348127724],[152.45612456124564,-68.7194720994363],[152.46692466924668,-68.72453783124595],[152.48132481324814,-68.72453783124595],[152.51012510125105,-68.71609494489653],[152.5281252812528,-68.71440636762665],[152.55332553325536,-68.72284925397607],[152.59652596525967,-68.75155506756407],[152.62172621726216,-68.76506368572313],[152.65052650526508,-68.77012941753279],[152.7369273692737,-68.75662079937372],[152.76212762127625,-68.75999795391348],[152.86292862928633,-68.79039234477136],[152.88452884528846,-68.80221238566055],[152.93132931329313,-68.83260677651845],[152.98172981729817,-68.86131259010645],[153.03573035730358,-68.87650978553539],[153.09333093330935,-68.87988694007515],[153.1761317613176,-68.87313263099563],[153.22653226532265,-68.87819836280528],[153.2517325173252,-68.87819836280528],[153.25893258932592,-68.8748212082655],[153.2625326253263,-68.86806689918598],[153.26973269732696,-68.86300116737632],[153.28053280532805,-68.85962401283656],[153.30933309333096,-68.86131259010645],[153.320133201332,-68.85962401283656],[153.32733327333273,-68.85286970375702],[153.34173341733418,-68.79039234477136],[153.34173341733418,-68.78701519023161],[153.34533345333455,-68.78363803569184],[153.35613356133564,-68.77688372661231],[153.38133381333813,-68.7684408402629],[153.40653406534068,-68.7684408402629],[153.50013500135003,-68.79039234477136],[153.5469354693547,-68.79545807658101],[153.59733597335975,-68.79376949931114],[153.6909369093691,-68.76675226299301],[153.74133741337414,-68.75999795391348],[153.84573845738458,-68.75999795391348],[153.83133831338313,-68.73298071759535],[153.79533795337954,-68.64010896775181],[153.77733777337772,-68.61646888597346],[153.7017370173702,-68.54554864063837],[153.74133741337414,-68.5337285997492],[153.78813788137882,-68.52866286793954],[153.8349383493835,-68.52021998159015],[153.8637386373864,-68.49320274527201],[153.8205382053821,-68.47631697257319],[153.73053730537305,-68.44929973625506],[153.69813698136983,-68.42059392266705],[153.68373683736837,-68.37669091365011],[153.68733687336874,-68.33447648190304],[153.70893708937092,-68.30070493650538],[153.74853748537487,-68.28044200926679],[153.79173791737918,-68.27368770018727],[153.8349383493835,-68.27368770018727],[153.8781387813878,-68.27875343199692],[153.92133921339217,-68.2888848956162],[153.99333993339934,-68.31590213193434],[154.05814058140584,-68.32265644101386],[154.07974079740796,-68.32941075009339],[154.1157411574116,-68.3479851000621],[154.13374133741337,-68.35473940914163],[154.17334173341737,-68.35811656368139],[154.17334173341737,-68.36318229549104],[154.17334173341737,-68.37162518184046],[154.1841418414184,-68.37669091365011],[154.36054360543608,-68.42228249993694],[154.43254432544325,-68.4560540453346],[154.47574475744761,-68.46956266349366],[154.5225452254523,-68.47800554984308],[154.55854558545587,-68.47969412711295],[154.61254612546128,-68.47462839530331],[154.619746197462,-68.47800554984308],[154.62694626946268,-68.4847598589226],[154.6341463414634,-68.4948913225419],[154.64134641346413,-68.50164563162143],[154.65934659346595,-68.51177709524072],[154.6989469894699,-68.52528571339978],[154.71694716947172,-68.52866286793954],[154.709747097471,-68.55736868152755],[154.709747097471,-68.5725658769565],[154.71334713347136,-68.5826973405758],[154.74574745747458,-68.59789453600474],[154.75654756547567,-68.60802599962403],[154.77094770947713,-68.6215346177831],[154.71334713347136,-68.64179754502169],[154.69534695346954,-68.64686327683134],[154.67734677346772,-68.64348612229158],[154.6341463414634,-68.62997750413251],[154.45054450544507,-68.62491177232286],[154.46494464944652,-68.65192900864099],[154.49734497344974,-68.67556909041934],[154.56934569345697,-68.70596348127724],[154.58734587345873,-68.72622640851583],[154.57294572945733,-68.75493222210383],[154.51894518945193,-68.80390096293043],[154.56934569345697,-68.80558954020032],[154.61254612546128,-68.78870376750149],[154.69174691746917,-68.72960356305559],[154.74214742147421,-68.709340635817],[154.79614796147962,-68.71102921308689],[154.8429484294843,-68.7279149857857],[154.9509495094951,-68.80221238566055],[154.9617496174962,-68.81740958108949],[154.9617496174962,-68.84442681740762],[154.96894968949692,-68.86637832191609],[154.9869498694987,-68.88664124915468],[155.01215012150124,-68.89846129004385],[155.03735037350373,-68.90183844458363],[155.06255062550628,-68.8950841355041],[155.1057510575106,-68.8748212082655],[155.13455134551344,-68.86975547645585],[155.30735307353075,-68.89339555823422],[155.3361533615336,-68.9052155991234],[155.35055350553506,-68.91196990820292],[155.36135361353615,-68.92210137182222],[155.36855368553688,-68.93223283544151],[155.3757537575376,-68.9440528763307],[155.37935379353797,-68.96093864902952],[155.37935379353797,-68.9930216171573],[155.38655386553864,-69.00990738985612],[155.3109531095311,-69.02510458528506],[155.28935289352893,-69.03523604890437],[155.39375393753937,-69.040301780714],[155.4117541175412,-69.04367893525378],[155.429754297543,-69.06394186249237],[155.4549545495455,-69.0808276351912],[155.5089550895509,-69.10615629423944],[155.63855638556385,-69.13486210782744],[155.6637566375664,-69.13148495328767],[155.75735757357575,-69.10109056242979],[155.74655746557465,-69.08420478973096],[155.73215732157325,-69.08251621246107],[155.71415714157143,-69.08589336700084],[155.6961569615696,-69.08589336700084],[155.6817568175682,-69.07913905792131],[155.6421564215642,-69.04874466706343],[155.57015570155704,-69.03017031709471],[155.54135541355413,-69.01328454439589],[155.53775537755376,-68.982890153538],[155.55935559355595,-68.95756149448977],[155.59175591755917,-68.94743003087046],[155.73935739357393,-68.9440528763307],[155.77535775357757,-68.94743003087046],[155.81135811358115,-68.95587291721988],[155.81855818558188,-68.96093864902952],[155.82935829358297,-68.9727586899187],[155.83295832958333,-68.97444726718858],[155.86535865358655,-68.97444726718858],[155.87255872558728,-68.97613584445847],[155.88695886958868,-68.982890153538],[155.95535955359554,-69.02848173982483],[155.96615966159663,-69.040301780714],[155.969759697597,-69.05381039887307],[155.96615966159663,-69.07576190338155],[155.97335973359736,-69.08758194427072],[155.98415984159845,-69.10109056242979],[156.00216002160022,-69.11122202604909],[156.0129601296013,-69.11628775785873],[156.03096030960313,-69.11628775785873],[156.08136081360817,-69.10109056242979],[156.1029610296103,-69.0994019851599],[156.11736117361176,-69.10277913969966],[156.14976149761497,-69.11628775785873],[156.22536225362256,-69.13486210782744],[156.26136261362615,-69.15343645779615],[156.2649626496265,-69.1770765395745],[156.30456304563046,-69.19227373500345],[156.35136351363514,-69.20240519862276],[156.4845648456485,-69.2074709304324],[156.5637656376564,-69.1973394668131],[156.65376653766538,-69.17032223049497],[156.67536675366756,-69.17032223049497],[156.72216722167224,-69.17369938503475],[156.7689676896769,-69.17032223049497],[156.78696786967873,-69.17201080776486],[156.79776797767977,-69.1770765395745],[156.8157681576816,-69.19058515773357],[156.82656826568268,-69.19396231227333],[156.8589685896859,-69.19396231227333],[156.89136891368912,-69.19058515773357],[157.02457024570248,-69.14499357144673],[157.0461704617046,-69.14499357144673],[157.13977139771401,-69.16187934414556],[157.15777157771578,-69.17032223049497],[157.20817208172082,-69.22097954859146],[157.26217262172622,-69.25643967125899],[157.34497344973448,-69.3239827620543],[157.3737737377374,-69.35437715291219],[157.38817388173885,-69.38814869830985],[157.39537395373952,-69.4117887800882],[157.40617406174061,-69.43036313005692],[157.42417424174243,-69.43711743913644],[157.46017460174602,-69.40841162554844],[157.47817478174784,-69.4117887800882],[157.4961749617496,-69.4219202437075],[157.5177751777518,-69.43036313005692],[157.53217532175324,-69.4117887800882],[157.56817568175683,-69.39828016192914],[157.64737647376472,-69.3830829665002],[157.58617586175865,-69.37126292561102],[157.53937539375397,-69.36788577107126],[157.5177751777518,-69.3628200392616],[157.50337503375033,-69.34931142110254],[157.49977499774997,-69.3239827620543],[157.4961749617496,-69.28007975303736],[157.49977499774997,-69.26150540306864],[157.51417514175142,-69.24461963036981],[157.53217532175324,-69.23279958948063],[157.56817568175683,-69.21422523951193],[157.61137611376114,-69.19902804408298],[157.6257762577626,-69.19565088954322],[157.70857708577086,-69.19396231227333],[157.72657726577268,-69.19902804408298],[157.7445774457745,-69.21422523951193],[157.76257762577626,-69.22435670313122],[157.78417784177844,-69.22773385767098],[157.80937809378094,-69.22266812586135],[157.83097830978312,-69.21422523951193],[157.84897848978488,-69.19396231227333],[157.85977859778598,-69.18045369411428],[157.87417874178743,-69.17201080776486],[157.90657906579065,-69.17032223049497],[157.99297992979933,-69.17201080776486],[158.0109801098011,-69.1770765395745],[158.07938079380796,-69.20915950770228],[158.12618126181263,-69.2176023940517],[158.22338223382235,-69.2176023940517],[158.26658266582666,-69.22435670313122],[158.39978399784002,-69.28345690757712],[158.40338403384033,-69.29021121665664],[158.40338403384033,-69.29865410300606],[158.41058410584105,-69.30878556662536],[158.4465844658447,-69.32735991659408],[158.49698496984973,-69.34255711202302],[158.54738547385477,-69.35099999837243],[158.58698586985872,-69.34931142110254],[158.58338583385836,-69.34593426656278],[158.56538565385654,-69.33749138021336],[158.58338583385836,-69.32735991659408],[158.60138601386018,-69.32567133932419],[158.61938619386194,-69.32735991659408],[158.66618666186662,-69.31722845297477],[158.6877868778688,-69.31891703024465],[158.73098730987311,-69.32567133932419],[158.7957879578796,-69.31553987570489],[158.81738817388174,-69.31553987570489],[158.83898838988392,-69.3239827620543],[158.86058860588605,-69.33242564840371],[158.939789397894,-69.38139438923031],[158.96138961389613,-69.39828016192914],[158.98298982989832,-69.43542886186657],[159.01179011790117,-69.45738036637503],[159.04059040590408,-69.49115191177269],[159.05859058590585,-69.49790622085222],[159.07659076590767,-69.50128337539199],[159.10179101791022,-69.51310341628117],[159.11979119791198,-69.51648057082093],[159.13059130591307,-69.50128337539199],[159.1485914859149,-69.4607575209148],[159.18819188191884,-69.43542886186657],[159.23499234992352,-69.42867455278703],[159.28539285392856,-69.43374028459668],[159.5121951219512,-69.4995947981221],[159.55539555395558,-69.50128337539199],[159.63819638196384,-69.49621764358234],[159.75339753397537,-69.50128337539199],[159.7749977499775,-69.50634910720163],[159.82179821798218,-69.52830061171011],[159.83619836198363,-69.53674349805952],[159.87939879398795,-69.57389219799694],[159.97659976599766,-69.62286093882354],[159.99459994599948,-69.62961524790308],[160.0378003780038,-69.6363695569826],[160.05940059400598,-69.64312386606213],[160.07380073800738,-69.65832106149108],[160.08820088200883,-69.67351825692002],[160.1026010260103,-69.6853382978092],[160.12420124201242,-69.68871545234896],[160.14220142201424,-69.69378118415861],[160.20340203402037,-69.73768419317557],[160.289802898029,-69.76976716130334],[160.3330033300333,-69.79678439762145],[160.34020340203404,-69.82886736574923],[160.32580325803258,-69.84913029298782],[160.30420304203045,-69.860950333877],[160.2790027900279,-69.86939322022641],[160.25020250202505,-69.87445895203606],[160.17460174601746,-69.87445895203606],[160.12060120601205,-69.88627899292524],[160.0918009180092,-69.88796757019513],[159.9837998379984,-69.87277037476618],[159.87939879398795,-69.88121326111559],[159.8037980379804,-69.87277037476618],[159.77859778597787,-69.87445895203606],[159.76059760597605,-69.88459041565537],[159.76059760597605,-69.90823049743372],[159.77139771397714,-69.91836196105301],[159.7857978579786,-69.9200505383229],[159.80019800198005,-69.92173911559277],[159.81099810998109,-69.92342769286266],[159.82179821798218,-69.93355915648196],[159.83619836198363,-69.95382208372055],[159.86139861398613,-69.96901927914949],[159.87219872198722,-69.98590505184832],[159.87939879398795,-69.99097078365797],[159.89019890198904,-69.99265936092786],[159.94059940599408,-69.98928220638808],[160.0162001620016,-69.99603651546762],[160.04140041400416,-69.99097078365797],[160.1170011700117,-69.96901927914949],[160.14220142201424,-69.96901927914949],[160.21780217802177,-69.98759362911821],[160.63540635406355,-70.04838241083398],[160.64260642606428,-70.0551367199135],[160.64620646206464,-70.06357960626292],[160.649806498065,-70.07371106988222],[160.6606066060661,-70.08215395623164],[160.5958059580596,-70.10410546074012],[160.72180721807217,-70.0956625743907],[160.76140761407618,-70.10241688347023],[160.7938079380794,-70.11761407889917],[160.82620826208262,-70.13956558340765],[160.8586085860859,-70.16489424245589],[160.9018090180902,-70.20879725147284],[160.91980919809197,-70.22061729236202],[160.98460984609846,-70.24088021960061],[160.99540995409956,-70.24932310595003],[161.00261002610029,-70.2611431468392],[161.02061020610205,-70.2797174968079],[161.0566105661057,-70.30166900131638],[161.0890108901089,-70.31855477401521],[161.10701107011073,-70.34219485579357],[161.0890108901089,-70.38103213300087],[161.18621186211863,-70.41142652385876],[161.20421204212045,-70.42324656474794],[161.24741247412476,-70.46208384195525],[161.25821258212585,-70.47728103738419],[161.24741247412476,-70.49585538735289],[161.22581225812257,-70.50936400551196],[161.20061200612008,-70.52118404640113],[161.18621186211863,-70.53131551002043],[161.17541175411753,-70.55664416906868],[161.1790117901179,-70.57521851903738],[161.19341193411935,-70.58197282811692],[161.21501215012154,-70.56846420995785],[161.22941229412294,-70.54820128271926],[161.24741247412476,-70.53300408729032],[161.26541265412658,-70.52793835548067],[161.28341283412834,-70.54144697363972],[161.29061290612907,-70.56677563268796],[161.27261272612725,-70.60223575535551],[161.27981279812798,-70.62587583713386],[161.31581315813162,-70.64951591891221],[161.3626136261363,-70.66640169161104],[161.45261452614528,-70.68666461884965],[161.38061380613806,-70.75083055510518],[161.3230132301323,-70.78460210050284],[161.3086130861309,-70.79642214139201],[161.31221312213125,-70.80824218228119],[161.3230132301323,-70.82343937771014],[161.33021330213302,-70.84201372767885],[161.33021330213302,-70.8572109231078],[161.3086130861309,-70.86058807764756],[161.33021330213302,-70.8757852730765],[161.34461344613447,-70.89098246850544],[161.3626136261363,-70.90111393212474],[161.3878138781388,-70.9061796639344],[161.4166141661417,-70.9044910866645],[161.54621546215463,-70.88085100488615],[161.5930159301593,-70.88253958215603],[161.60741607416077,-70.87916242761627],[161.63261632616326,-70.8656538094572],[161.64701647016471,-70.86396523218733],[161.65421654216544,-70.87071954126685],[161.6722167221672,-70.89942535485486],[161.6830168301683,-70.90955681847416],[161.7262172621726,-70.9247540139031],[161.77661776617765,-70.92644259117299],[161.87381873818737,-70.90786824120427],[161.93141931419314,-70.90786824120427],[161.9890198901989,-70.92306543663322],[162.0430204302043,-70.94670551841158],[162.09342093420935,-70.97709990926947],[162.08622086220862,-70.98723137288876],[162.0790207902079,-70.99736283650806],[162.06822068220686,-71.00580572285747],[162.05742057420576,-71.01087145466713],[162.08982089820898,-71.041265845525],[162.1438214382144,-71.06490592730337],[162.20142201422016,-71.07841454546242],[162.27342273422738,-71.07841454546242],[162.29862298622987,-71.08516885454196],[162.34182341823418,-71.10880893632032],[162.359823598236,-71.11218609086008],[162.38862388623886,-71.10205462724079],[162.41742417424177,-71.08854600908172],[162.43182431824317,-71.0716602363829],[162.42102421024214,-71.06490592730337],[162.4138241382414,-71.05646304095396],[162.40662406624068,-71.04633157733466],[162.40302403024032,-71.03451153644548],[162.42102421024214,-71.03113438190572],[162.4282242822428,-71.03113438190572],[162.3166231662317,-70.93319690025251],[162.30942309423097,-70.92981974571275],[162.27342273422738,-70.92813116844286],[162.25542255422556,-70.92644259117299],[162.24462244622447,-70.91968828209346],[162.230222302223,-70.89267104577533],[162.22662226622265,-70.86396523218733],[162.21942219422198,-70.85383376856802],[162.20502205022052,-70.8470794594885],[162.1726217262173,-70.83863657313908],[162.1438214382144,-70.8369479958692],[162.08982089820898,-70.84876803675839],[162.06102061020613,-70.8470794594885],[162.04662046620467,-70.83863657313908],[162.03942039420394,-70.83019368678967],[162.0250202502025,-70.80148787320167],[162.02142021420218,-70.7879792550426],[162.02862028620285,-70.78460210050284],[162.03582035820358,-70.77953636869319],[162.03942039420394,-70.7694049050739],[162.03942039420394,-70.74238766875577],[162.0430204302043,-70.7288790505967],[162.04662046620467,-70.71874758697741],[162.07182071820722,-70.69341892792917],[162.08262082620826,-70.67653315523035],[162.08622086220862,-70.66302453707128],[162.0790207902079,-70.65458165072187],[162.04662046620467,-70.64445018710258],[162.03582035820358,-70.63769587802304],[162.03222032220322,-70.62587583713386],[162.03222032220322,-70.61574437351457],[162.03222032220322,-70.60392433262538],[162.0106201062011,-70.57859567357715],[162.01782017820182,-70.56846420995785],[162.0250202502025,-70.56002132360844],[162.02862028620285,-70.55326701452891],[162.02862028620285,-70.5346926645602],[162.0250202502025,-70.51949546913126],[162.01782017820182,-70.5042982737023],[162.00702007020072,-70.49078965554325],[161.99621996219963,-70.46377241922512],[161.99621996219963,-70.43844376017688],[162.02142021420218,-70.38440928754063],[162.02862028620285,-70.37596640119122],[162.0430204302043,-70.3692120921117],[162.07182071820722,-70.35908062849239],[162.08262082620826,-70.34726058760322],[162.08622086220862,-70.3202433512851],[162.09342093420935,-70.31348904220556],[162.20502205022052,-70.32868623763451],[162.22662226622265,-70.32362050582486],[162.32022320223206,-70.28478322861756],[162.37422374223746,-70.27634034226814],[162.59382593825939,-70.26958603318862],[162.65502655026552,-70.27634034226814],[162.68382683826837,-70.28478322861756],[162.70902709027092,-70.29998042404651],[162.7810278102781,-70.37765497846111],[162.7990279902799,-70.39454075115994],[162.8206282062821,-70.40467221477923],[162.8458284582846,-70.40636079204911],[162.87102871028713,-70.40636079204911],[162.89622896228963,-70.408049369319],[162.91422914229145,-70.4266237192877],[162.89982899829,-70.43168945109736],[162.88542885428853,-70.43506660563712],[162.87102871028713,-70.43337802836723],[162.85662856628568,-70.43000087382747],[162.87822878228786,-70.47221530557454],[162.92142921429217,-70.50260969643243],[162.97182971829722,-70.52118404640113],[163.0186301863019,-70.52962693275055],[163.0726307263073,-70.52962693275055],[163.10143101431015,-70.53300408729032],[163.12303123031234,-70.54313555090961],[163.13383133831337,-70.54988985998915],[163.15903159031592,-70.58197282811692],[163.169831698317,-70.58703855992655],[163.36063360633608,-70.62418725986399],[163.4218342183422,-70.65289307345199],[163.45063450634507,-70.65795880526164],[163.47943479434798,-70.65795880526164],[163.52623526235266,-70.65289307345199],[163.6342363423634,-70.66471311434117],[163.6558365583656,-70.66302453707128],[163.68103681036814,-70.65627022799175],[163.73143731437318,-70.63263014621339],[163.78543785437853,-70.63094156894351],[163.84663846638466,-70.6224986825941],[163.86823868238685,-70.62587583713386],[163.87543875438757,-70.64107303256282],[163.86463864638648,-70.6714674234207],[163.86103861038612,-70.69004177338941],[163.86463864638648,-70.75251913237507],[163.8718387183872,-70.7694049050739],[163.89343893438934,-70.78122494596307],[163.91863918639189,-70.78460210050284],[163.94383943839438,-70.78122494596307],[163.9726397263973,-70.78291352323295],[163.99783997839978,-70.78966783231249],[164.01224012240124,-70.79135640958236],[164.01944019440197,-70.78629067777273],[164.02304023040233,-70.77447063688354],[164.03024030240306,-70.76602775053414],[164.03744037440373,-70.75758486418471],[164.04824048240482,-70.75251913237507],[164.0590405904059,-70.74576482329553],[164.0590405904059,-70.72381331878707],[164.069840698407,-70.71368185516776],[164.09144091440913,-70.69679608246894],[164.09864098640986,-70.68835319611952],[164.10944109441095,-70.67653315523035],[164.12744127441277,-70.6613359598014],[164.15264152641527,-70.64951591891221],[164.17784177841781,-70.64276160983269],[164.19944199441994,-70.63938445529293],[164.04464044640446,-70.55157843725902],[164.0266402664027,-70.53300408729032],[164.0950409504095,-70.50598685097219],[164.16704167041672,-70.49416681008302],[164.2390423904239,-70.49078965554325],[164.49464494644945,-70.52118404640113],[164.56304563045632,-70.53975839636985],[164.59544595445954,-70.54651270544937],[164.69984699846998,-70.54651270544937],[164.75744757447575,-70.53806981909996],[164.7718477184772,-70.54144697363972],[164.7826478264783,-70.54651270544937],[164.80064800648006,-70.55495559179879],[164.8366483664837,-70.56677563268796],[164.87624876248765,-70.5735299417675],[165.11025110251103,-70.5633984781482],[165.1426514265143,-70.58703855992655],[165.18225182251825,-70.58534998265668],[165.26865268652688,-70.56508705541809],[165.3118531185312,-70.56002132360844],[165.3406534065341,-70.56508705541809],[165.36225362253623,-70.56508705541809],[165.36945369453696,-70.57015278722774],[165.3766537665377,-70.57521851903738],[165.3838538385384,-70.57690709630727],[165.3982539825398,-70.57521851903738],[165.41625416254163,-70.56677563268796],[165.42705427054273,-70.56508705541809],[165.43785437854382,-70.56677563268796],[165.45945459454595,-70.5735299417675],[165.47025470254704,-70.5735299417675],[165.43425434254345,-70.5937928690061],[165.45945459454595,-70.60223575535551],[165.52425524255244,-70.59717002354586],[165.55665556655566,-70.59885860081575],[165.5530555305553,-70.60223575535551],[165.54585545855457,-70.61067864170492],[165.5386553865539,-70.61405579624468],[165.92745927459276,-70.68497604157976],[165.9238592385924,-70.66302453707128],[165.93825938259386,-70.65289307345199],[165.95625956259562,-70.64951591891221],[166.02106021060212,-70.64951591891221],[166.03906039060394,-70.64445018710258],[166.0966609666097,-70.61743295078445],[166.37026370263703,-70.58366140538679],[166.40986409864098,-70.58872713719644],[166.4170641706417,-70.5937928690061],[166.43146431464316,-70.60899006443503],[166.44226442264426,-70.61067864170492],[166.7230672306723,-70.61743295078445],[166.76626766267663,-70.63094156894351],[166.80946809468094,-70.6512044961821],[166.83106831068312,-70.66471311434117],[166.83826838268385,-70.67653315523035],[166.8238682386824,-70.69173035065928],[166.80226802268027,-70.7001732370087],[166.75186751867523,-70.70692754608824],[166.7446674466745,-70.70523896881835],[166.73746737467377,-70.69679608246894],[166.73026730267304,-70.69341892792917],[166.69786697866982,-70.7001732370087],[166.68706687066873,-70.69679608246894],[166.66186661866618,-70.68835319611952],[166.64386643866442,-70.68835319611952],[166.59706597065974,-70.7001732370087],[166.50346503465033,-70.70186181427859],[166.45666456664566,-70.70861612335811],[166.4278642786428,-70.73225620513648],[166.44586445864462,-70.74407624602566],[166.46026460264602,-70.75758486418471],[166.4710647106471,-70.76602775053414],[166.4926649266493,-70.7694049050739],[166.55746557465574,-70.76433917326425],[166.5718657186572,-70.76602775053414],[166.59346593465938,-70.77784779142331],[166.60786607866078,-70.78291352323295],[166.6258662586626,-70.78460210050284],[166.7230672306723,-70.77784779142331],[166.77346773467735,-70.76433917326425],[166.7986679866799,-70.76602775053414],[166.83826838268385,-70.78291352323295],[166.8562685626856,-70.78966783231249],[166.8778687786878,-70.78460210050284],[166.90306903069035,-70.77615921415342],[166.92826928269284,-70.77109348234377],[166.9534695346954,-70.7694049050739],[167.00387003870043,-70.77447063688354],[167.07227072270723,-70.76433917326425],[167.41787417874178,-70.7592734414546],[167.4610746107461,-70.76265059599436],[167.55107551075514,-70.78460210050284],[167.70227702277026,-70.79135640958236],[167.73827738277384,-70.80993075955108],[167.7418774187742,-70.82006222317037],[167.74547745477457,-70.83357084132943],[167.74547745477457,-70.84370230494874],[167.7526775267753,-70.8470794594885],[167.78147781477816,-70.84370230494874],[167.79227792277925,-70.84539088221861],[167.8066780667807,-70.84876803675839],[167.8318783187832,-70.86058807764756],[167.84627846278465,-70.87916242761627],[167.85347853478538,-70.89942535485486],[167.87147871478714,-70.9247540139031],[167.82827828278283,-70.94332836387181],[167.47907479074792,-70.95008267295134],[167.41787417874178,-70.96190271384052],[167.21267212672126,-70.98047706380923],[167.16587165871658,-70.99229710469841],[167.1406714067141,-70.99567425923817],[167.1838718387184,-71.03113438190572],[167.25587255872563,-71.03788869098524],[167.51147511475114,-71.00411714558759],[167.87867878678787,-71.01424860920689],[167.90387903879042,-71.02438007282618],[167.9506795067951,-71.06490592730337],[167.9758797587976,-71.07672596819255],[168.10188101881022,-71.10880893632032],[168.0838808388084,-71.12569470901914],[168.06588065880658,-71.13751474990832],[168.04428044280445,-71.14426905898785],[168.0190801908019,-71.14426905898785],[167.98667986679868,-71.13751474990832],[167.9758797587976,-71.13582617263845],[167.96147961479613,-71.13751474990832],[167.939879398794,-71.14595763625773],[167.9290792907929,-71.14764621352762],[167.90747907479079,-71.14258048171797],[167.88947889478897,-71.13582617263845],[167.86787867878678,-71.13244901809867],[167.85347853478538,-71.14426905898785],[167.83547835478356,-71.16115483168667],[167.81387813878138,-71.17128629530598],[167.75987759877597,-71.18310633619515],[167.7418774187742,-71.19492637708433],[167.73467734677348,-71.21012357251328],[167.7418774187742,-71.22363219067233],[167.75987759877597,-71.22869792248198],[168.11268112681125,-71.19492637708433],[168.1630816308163,-71.20168068616387],[168.18828188281884,-71.19999210889398],[168.26388263882637,-71.18479491346504],[168.35748357483578,-71.19661495435422],[168.38268382683827,-71.19492637708433],[168.44748447484477,-71.17635202711563],[168.48348483484835,-71.16284340895656],[168.50148501485018,-71.16115483168667],[168.5626856268563,-71.17128629530598],[168.5878858788588,-71.18310633619515],[168.59508595085953,-71.18479491346504],[168.64548645486457,-71.18141775892528],[168.67068670686706,-71.18310633619515],[168.69228692286924,-71.18986064527468],[168.7318873188732,-71.22363219067233],[168.75348753487538,-71.2371408088314],[168.7750877508775,-71.24051796337116],[168.7606876068761,-71.2759780860387],[169.01629016290167,-71.3249468268653],[169.0378903789038,-71.3350782904846],[169.05949059490598,-71.34689833137378],[169.07029070290702,-71.35196406318343],[169.08469084690847,-71.3553412177232],[169.09549095490956,-71.35196406318343],[169.12069120691206,-71.33676686775448],[169.1350913509135,-71.3350782904846],[169.14229142291424,-71.34014402229424],[169.1458914589146,-71.35027548591354],[169.15309153091533,-71.35871837226296],[169.16389163891643,-71.36547268134248],[169.25029250292505,-71.3739155676919],[169.26829268292687,-71.38066987677144],[169.32589325893258,-71.42288430851849],[169.3438934389344,-71.4330157721378],[169.36549365493659,-71.43808150394744],[169.39069390693908,-71.43808150394744],[169.419494194942,-71.4431472357571],[169.4626946269463,-71.46341016299569],[169.49509495094952,-71.46341016299569],[169.48429484294843,-71.46847589480532],[169.4770947709477,-71.47523020388486],[169.46989469894703,-71.48198451296439],[169.46629466294667,-71.4904273993138],[169.48069480694807,-71.49549313112345],[169.5058950589506,-71.51069032655239],[169.5166951669517,-71.51575605836204],[169.5526955269553,-71.5191332129018],[169.58869588695887,-71.5208217901717],[169.72189721897217,-71.50562459474276],[169.76149761497618,-71.50731317201263],[169.79029790297903,-71.5191332129018],[169.869498694987,-71.559659067379],[169.88029880298802,-71.56810195372842],[169.89109891098911,-71.57485626280794],[169.90549905499057,-71.5782334173477],[169.97749977499774,-71.56303622191876],[169.97389973899737,-71.58161057188747],[169.98469984699847,-71.59511919004653],[170.02430024300241,-71.61538211728512],[170.04230042300424,-71.62889073544419],[170.0567005670057,-71.64408793087313],[170.07470074700745,-71.6559079717623],[170.09630096300964,-71.65928512630208],[170.1215012150122,-71.65759654903219],[170.18270182701826,-71.67448232173102],[170.20430204302045,-71.67448232173102],[170.22950229502294,-71.66941658992137],[170.25110251102512,-71.66097370357195],[170.2727027270273,-71.65084223995267],[170.2547025470255,-71.64239935360325],[170.24750247502476,-71.6272021581743],[170.25830258302585,-71.61369354001525],[170.27630276302762,-71.6086278082056],[170.26190261902622,-71.59343061277664],[170.31230312303126,-71.56472479918864],[170.3627036270363,-71.54446187195005],[170.31230312303126,-71.4414586584872],[170.2979029790298,-71.42457288578838],[170.2439024390244,-71.38235845404131],[170.22950229502294,-71.36716125861237],[170.22230222302227,-71.35196406318343],[170.2079020790208,-71.314815363246],[170.21510215102154,-71.30299532235682],[170.24030240302403,-71.29455243600741],[170.26550265502658,-71.29286385873753],[170.28350283502834,-71.29792959054717],[170.32310323103235,-71.34689833137378],[170.33030330303302,-71.3536526404533],[170.3519035190352,-71.3553412177232],[170.35910359103593,-71.36040694953283],[170.3771037710377,-71.37560414496178],[170.40230402304024,-71.40937569035944],[170.459904599046,-71.44990154483662],[170.49230492304923,-71.48198451296439],[170.53550535505354,-71.53770756287052],[170.55350553505536,-71.55121618102959],[170.58950589505895,-71.57316768553805],[170.69030690306903,-71.65759654903219],[170.67230672306727,-71.67617089900091],[170.66510665106654,-71.68123663081055],[170.8127081270813,-71.69981098077926],[170.80550805508057,-71.70149955804914],[170.78750787507875,-71.71163102166844],[170.80910809108093,-71.73358252617692],[170.83070830708306,-71.74709114433597],[170.8559085590856,-71.75384545341551],[170.88470884708846,-71.75891118522516],[170.8667086670867,-71.76904264884445],[170.86310863108633,-71.78255126700351],[170.87390873908743,-71.79774846243245],[170.88830888308883,-71.80956850332163],[170.90270902709028,-71.81969996694093],[170.92430924309247,-71.82814285329034],[170.94950949509496,-71.83489716236987],[170.96750967509678,-71.83489716236987],[170.9459094590946,-71.86022582141811],[170.91710917109174,-71.87880017138683],[170.85230852308524,-71.90581740770494],[170.77310773107735,-71.95140899399178],[170.74430744307443,-71.95816330307132],[170.67230672306727,-71.96154045761108],[170.639906399064,-71.9682947666906],[170.62190621906223,-71.98855769392921],[170.6147061470615,-71.9986891575485],[170.60030600306004,-72.00375488935815],[170.58590585905858,-72.00713204389791],[170.57150571505719,-72.00544346662802],[170.55710557105573,-71.9986891575485],[170.549905499055,-71.98686911665932],[170.5391053910539,-71.95478614853155],[170.549905499055,-71.95478614853155],[170.5607056070561,-71.95309757126167],[170.57150571505719,-71.94634326218214],[170.57870578705786,-71.93790037583273],[170.49950499504996,-71.89568594408566],[170.44550445504456,-71.88217732592659],[170.4419044190442,-71.87373443957718],[170.43830438304383,-71.86529155322776],[170.4311043110431,-71.85853724414824],[170.39150391503915,-71.84334004871928],[170.3771037710377,-71.83152000783011],[170.3627036270363,-71.81632281240117],[170.33390333903338,-71.80112561697223],[170.30150301503016,-71.82138854421082],[170.2547025470255,-71.87204586230729],[170.13950139501395,-71.93114606675319],[170.22950229502294,-71.9395889531026],[170.2547025470255,-71.95140899399178],[170.23670236702367,-71.97673765304002],[170.2187021870219,-72.00037773481839],[170.19710197101972,-72.02064066205698],[170.16830168301686,-72.0375264347558],[170.13950139501395,-72.04428074383533],[170.07830078300782,-72.02401781659674],[170.0459004590046,-72.02064066205698],[170.05310053100533,-72.03246070294615],[170.05310053100533,-72.04259216656544],[170.04950049500496,-72.05272363018474],[170.03870038700387,-72.06285509380405],[170.0891008910089,-72.08480659831251],[170.07830078300782,-72.08818375285227],[170.07110071100715,-72.09493806193181],[170.07110071100715,-72.10338094828123],[170.07110071100715,-72.11351241190052],[170.06750067500678,-72.12364387551982],[170.02790027900278,-72.14390680275841],[170.0207002070021,-72.15572684364759],[170.0207002070021,-72.164169729997],[170.01710017100174,-72.17092403907654],[170.0027000270003,-72.17936692542595],[169.98829988299883,-72.18105550269583],[169.94869948699488,-72.17767834815606],[169.9270992709927,-72.18443265723559],[169.88029880298802,-72.2030070072043],[169.85509855098553,-72.20807273901396],[169.79749797497976,-72.20976131628383],[169.7722977229772,-72.21989277990313],[169.76509765097654,-72.24522143895138],[169.7830978309783,-72.24353286168149],[169.7938979389794,-72.24859859349114],[169.8046980469805,-72.25535290257066],[169.81909819098195,-72.26041863438031],[169.89109891098911,-72.26548436618997],[169.90549905499057,-72.27055009799962],[169.91989919899203,-72.27730440707914],[169.93429934299343,-72.2823701388888],[169.94869948699488,-72.2806815616189],[169.96309963099634,-72.2806815616189],[169.9918999189992,-72.29081302523821],[170.00990009900102,-72.28743587069845],[169.9918999189992,-72.30769879793704],[169.86589865898662,-72.39719339324081],[169.8586985869859,-72.41407916593964],[169.8838988389884,-72.42927636136858],[169.94149941499415,-72.42589920682882],[170.0459004590046,-72.40225912505046],[170.06390063900642,-72.39381623870105],[170.09990099901,-72.36342184784316],[170.11790117901182,-72.35329038422387],[170.2439024390244,-72.32120741609609],[170.26550265502658,-72.31783026155632],[170.28350283502834,-72.32627314790574],[170.29070290702907,-72.36511042511304],[170.30150301503016,-72.36848757965281],[170.31230312303126,-72.3701761569227],[170.31950319503198,-72.37861904327211],[170.32670326703266,-72.40563627959023],[170.33030330303302,-72.4174563204794],[170.3411034110341,-72.43096493863847],[170.3411034110341,-72.43940782498788],[170.33030330303302,-72.4478507113373],[170.31230312303126,-72.46304790676623],[170.30150301503016,-72.47317937038554],[170.2979029790298,-72.48499941127471],[170.29430294302944,-72.51370522486272],[170.28350283502834,-72.5643625429592],[170.26910269102694,-72.58969120200744],[170.2547025470255,-72.60319982016651],[170.20430204302045,-72.61501986105569],[170.15030150301504,-72.61839701559545],[170.09990099901,-72.61164270651592],[170.04950049500496,-72.59982266562673],[169.97389973899737,-72.57280542930862],[169.92349923499233,-72.56773969749896],[169.88029880298802,-72.5542310793399],[169.8586985869859,-72.55085392480014],[169.7290972909729,-72.55254250207003],[169.70029700297005,-72.54747677026037],[169.6858968589686,-72.54409961572061],[169.6750967509675,-72.53903388391096],[169.63549635496355,-72.51201664759284],[169.61389613896142,-72.50357376124343],[169.58869588695887,-72.50019660670365],[169.58149581495815,-72.50357376124343],[169.56709567095675,-72.51370522486272],[169.55989559895602,-72.51708237940248],[169.54909549095493,-72.5153938021326],[169.4338943389434,-72.47317937038554],[169.39069390693908,-72.46642506130601],[169.31149311493118,-72.48837656581448],[169.12789127891278,-72.48499941127471],[168.7066870668707,-72.35835611603352],[168.6778867788678,-72.36342184784316],[168.6418864188642,-72.38199619781187],[168.59508595085953,-72.38706192962152],[168.40788407884082,-72.36848757965281],[168.31788317883178,-72.37355331146246],[168.59148591485916,-72.47486794765541],[168.86868868688686,-72.57618258384838],[168.9190891908919,-72.5829368929279],[169.3006930069301,-72.57787116111827],[169.34749347493477,-72.5947569338171],[169.3870938709387,-72.61839701559545],[169.3978939789398,-72.62683990194486],[169.40149401494017,-72.64034852010393],[169.40149401494017,-72.64879140645334],[169.40149401494017,-72.65554571553287],[169.419494194942,-72.66398860188228],[169.46989469894703,-72.682562951851],[169.49869498694989,-72.68762868366063],[169.52029520295207,-72.68425152912087],[169.57429574295742,-72.6724314882317],[169.62469624696246,-72.66398860188228],[169.67869678696786,-72.66567717915217],[169.8838988389884,-72.711268765439],[169.93069930699306,-72.73659742448724],[169.8478984789848,-72.80076336074278],[169.75789757897581,-72.85310925610915],[169.72189721897217,-72.8666178742682],[169.7146971469715,-72.87337218334774],[169.7038970389704,-72.90207799693574],[169.69309693096932,-72.91220946055503],[169.68229682296823,-72.92065234690445],[169.61029610296106,-72.95611246957199],[169.5850958509585,-72.96286677865152],[169.6066960669607,-72.99326116950941],[169.59949599495997,-72.99663832404917],[169.5850958509585,-73.00676978766847],[169.57789577895778,-73.01183551947811],[169.6318963189632,-73.0439184876059],[169.6066960669607,-73.06418141484448],[169.58149581495815,-73.08106718754331],[169.55629556295565,-73.0911986511626],[169.40149401494017,-73.10977300113132],[169.39069390693908,-73.10977300113132],[169.37989379893799,-73.10639584659155],[169.36909369093695,-73.09795296024214],[169.36189361893622,-73.08951007389273],[169.34749347493477,-73.07937861027342],[169.3330933309333,-73.07600145573366],[169.2646926469265,-73.07937861027342],[169.1710917109171,-73.10301869205179],[169.22149221492214,-73.1317245056398],[169.25029250292505,-73.19082471008568],[169.25029250292505,-73.24823633726169],[169.21429214292147,-73.2769421508497],[169.07389073890738,-73.2668106872304],[169.00909009090094,-73.27187641904005],[168.98028980289803,-73.26343353269064],[168.9838898388984,-73.2381048736424],[168.93348933489335,-73.24148202818216],[168.91188911889122,-73.23641629637251],[168.8938889388894,-73.22290767821346],[168.89748897488977,-73.21953052367368],[168.90828908289086,-73.21277621459416],[168.91188911889122,-73.2093990600544],[168.88668886688868,-73.19420186462546],[168.87948879488795,-73.1790046691965],[168.88668886688868,-73.16380747376756],[168.91188911889122,-73.14861027833862],[168.94428944289444,-73.13510166017956],[168.9478894788948,-73.1317245056398],[168.95148951489517,-73.1199044647506],[168.95508955089554,-73.11483873294097],[168.96588965889663,-73.11315015567108],[169.00549005490058,-73.10977300113132],[168.97668976689766,-73.0911986511626],[168.94068940689408,-73.08782149662284],[168.8506885068851,-73.10301869205179],[168.8146881468815,-73.11821588748073],[168.79308793087932,-73.12328161929038],[168.75348753487538,-73.12328161929038],[168.71388713887143,-73.1199044647506],[168.72468724687246,-73.11146157840119],[168.73548735487356,-73.10470726932166],[168.749887498875,-73.09964153751201],[168.7606876068761,-73.09795296024214],[168.75348753487538,-73.07769003300353],[168.72828728287283,-73.07093572392401],[168.67428674286742,-73.07431287846377],[168.63828638286384,-73.06755856938425],[168.61308613086135,-73.05573852849507],[168.56628566285661,-73.02027840582753],[168.54108541085412,-73.00845836493835],[168.39348393483937,-72.97130966500093],[168.36828368283682,-72.96962108773104],[168.3358833588336,-72.96962108773104],[168.29628296282965,-72.98988401496965],[168.3250832508325,-73.02703271490707],[168.37548375483755,-73.06755856938425],[168.40428404284046,-73.10301869205179],[168.39708397083973,-73.12834735110002],[168.38268382683827,-73.14861027833862],[168.35748357483578,-73.1604303192278],[168.3358833588336,-73.16549605103744],[168.30348303483038,-73.16380747376756],[168.2566825668257,-73.14523312379885],[168.2278822788228,-73.13847881471932],[168.21348213482133,-73.13847881471932],[168.18828188281884,-73.1502988556085],[168.17748177481775,-73.15367601014826],[168.1630816308163,-73.15367601014826],[168.06948069480694,-73.12328161929038],[168.04068040680409,-73.11821588748073],[168.01548015480154,-73.12159304202049],[167.97947979479795,-73.1317245056398],[167.95427954279546,-73.13510166017956],[167.8966789667897,-73.12834735110002],[167.86427864278642,-73.1300359283699],[167.810278102781,-73.14692170106873],[167.78147781477816,-73.15367601014826],[167.72027720277202,-73.15198743287839],[167.69507695076953,-73.14523312379885],[167.6446764467645,-73.11483873294097],[167.61587615876158,-73.11821588748073],[167.5582755827558,-73.1401673919892],[167.50427504275046,-73.14861027833862],[167.1730717307173,-73.15367601014826],[167.05787057870577,-73.12834735110002],[167.0506705067051,-73.12328161929038],[167.02907029070292,-73.08951007389273],[166.98946989469897,-73.0523613739553],[166.97146971469715,-73.03716417852635],[166.94626946269466,-73.0236555603673],[166.8346683466835,-72.99663832404917],[166.6150661506615,-72.97299824227082],[166.56466564665647,-72.95611246957199],[166.52146521465215,-72.92909523325386],[166.56826568265683,-72.8970122651261],[166.58266582665829,-72.88181506969715],[166.53946539465397,-72.88181506969715],[166.4530645306453,-72.90038941966586],[166.36666366663667,-72.90038941966586],[166.34146341463418,-72.90376657420562],[166.33066330663308,-72.91389803782492],[166.3378633786338,-72.92909523325386],[166.35586355863558,-72.94766958322258],[166.39546395463958,-72.97806397408047],[166.41346413464134,-72.98650686042987],[166.46026460264602,-72.9949497467793],[166.55026550265507,-73.02872129217694],[166.76626766267663,-73.06418141484448],[166.7590675906759,-73.08782149662284],[166.7446674466745,-73.10470726932166],[166.73026730267304,-73.11821588748073],[166.7050670506705,-73.12159304202049],[166.73746737467377,-73.16211889649767],[166.77706777067772,-73.1891361328158],[166.82026820268203,-73.2077104827845],[166.87066870668707,-73.22121910094357],[166.74106741067413,-73.32928804621606],[166.77706777067772,-73.36474816888361],[166.8238682386824,-73.3546167052643],[166.91386913869138,-73.30058223262806],[166.97506975069751,-73.27525357357982],[167.09387093870941,-73.25161349180146],[167.30987309873098,-73.27356499630993],[167.30627306273067,-73.28031930538947],[167.29907299072994,-73.2972050780883],[167.29547295472958,-73.30395938716782],[167.33147331473316,-73.31409085078712],[167.4466744667447,-73.30395938716782],[167.9290792907929,-73.35799385980407],[167.75627756277567,-73.36812532342337],[167.6230762307623,-73.35968243707396],[167.64107641076413,-73.38163394158244],[167.6770767707677,-73.40189686882103],[167.7526775267753,-73.4322912596789],[167.71667716677166,-73.44748845510786],[167.68067680676808,-73.44748845510786],[167.51867518675186,-73.42047121878973],[167.48267482674828,-73.40189686882103],[167.46467464674646,-73.39851971428125],[167.44307443074433,-73.4035854460909],[167.4250742507425,-73.40527402336079],[167.3818738187382,-73.39514255974149],[167.36387363873638,-73.39514255974149],[167.2486724867249,-73.40527402336079],[167.23067230672308,-73.41033975517044],[167.22347223472235,-73.41878264151984],[167.22707227072272,-73.4339798369488],[167.2378723787238,-73.44411130056808],[167.2738727387274,-73.4525541869175],[167.22347223472235,-73.47619426869586],[167.2486724867249,-73.4812600005055],[167.30627306273067,-73.47619426869586],[167.3278732787328,-73.4812600005055],[167.3566735667357,-73.4913914641248],[167.4358743587436,-73.50321150501398],[167.3818738187382,-73.52347443225257],[167.3278732787328,-73.53191731860198],[167.2738727387274,-73.52854016406222],[167.1946719467195,-73.4913914641248],[167.0218702187022,-73.4626856505368],[166.98946989469897,-73.46437422780667],[167.05787057870577,-73.49983435047422],[167.0758707587076,-73.51334296863328],[167.05427054270547,-73.54711451403094],[167.03267032670328,-73.56568886399964],[167.00747007470073,-73.57075459580929],[166.92466924669247,-73.56062313218999],[166.88506885068853,-73.56062313218999],[166.8778687786878,-73.56400028672977],[166.87066870668707,-73.57075459580929],[166.85986859868598,-73.58595179123823],[166.84906849068494,-73.59101752304788],[166.83826838268385,-73.58932894577799],[166.81666816668167,-73.57750890488882],[166.82026820268203,-73.57413175034905],[166.8346683466835,-73.56231170945988],[166.83826838268385,-73.55893455492011],[166.82746827468276,-73.54880309130081],[166.8130681306813,-73.54204878222129],[166.7986679866799,-73.53867162768152],[166.78066780667808,-73.53867162768152],[166.83106831068312,-73.5217858549827],[166.79146791467917,-73.49814577320433],[166.74826748267486,-73.48632573231515],[166.7014670146702,-73.49308004139469],[166.66186661866618,-73.51840870044293],[166.64386643866442,-73.53867162768152],[166.62946629466296,-73.56231170945988],[166.6150661506615,-73.5808860594286],[166.589865898659,-73.59101752304788],[166.55746557465574,-73.59101752304788],[166.4710647106471,-73.5808860594286],[166.46386463864638,-73.58426321396836],[166.45666456664566,-73.58932894577799],[166.4530645306453,-73.59270610031777],[166.4386643866439,-73.59101752304788],[166.42426424264244,-73.58595179123823],[166.39186391863922,-73.56568886399964],[166.19386193861942,-73.48970288685493],[166.13986139861402,-73.4812600005055],[166.09306093060934,-73.49308004139469],[166.11826118261183,-73.51672012317304],[166.2190621906219,-73.56568886399964],[166.13986139861402,-73.57413175034905],[165.87345873458736,-73.56568886399964],[165.8158581585816,-73.57750890488882],[165.82665826658268,-73.59777183212742],[165.8446584465845,-73.60790329574671],[165.99585995859962,-73.62310049117565],[166.2010620106201,-73.67206923200226],[166.19026190261906,-73.68388927289143],[166.17946179461796,-73.69233215924085],[166.1650616506165,-73.69739789105049],[166.15066150661505,-73.70077504559026],[166.22626226262264,-73.70246362286014],[166.2658626586266,-73.70921793193968],[166.2946629466295,-73.7261037046385],[166.27306273062732,-73.73285801371803],[166.23706237062373,-73.75987525003615],[166.21546215462155,-73.7649409818458],[166.20466204662046,-73.76325240457592],[166.19386193861942,-73.75818667276627],[166.17946179461796,-73.75818667276627],[166.16866168661687,-73.76156382730603],[166.1650616506165,-73.77000671365545],[166.1650616506165,-73.79026964089404],[166.16146161461614,-73.79871252724345],[166.15066150661505,-73.80884399086275],[166.14346143461438,-73.8139097226724],[166.02826028260284,-73.80884399086275],[166.00666006660066,-73.8139097226724],[165.96345963459635,-73.82910691810135],[165.93825938259386,-73.834172649911],[165.6718567185672,-73.79702394997358],[165.5818558185582,-73.80546683632298],[165.63225632256325,-73.834172649911],[165.6826568265683,-73.8527469998797],[165.79425794257946,-73.87300992711829],[165.77625776257764,-73.87976423619783],[165.71865718657187,-73.88651854527735],[165.70065700657005,-73.891584277087],[165.66825668256683,-73.90847004978583],[165.65025650256501,-73.91353578159547],[165.57105571055712,-73.91353578159547],[165.49185491854922,-73.9017157407063],[165.26145261452615,-73.89327285435688],[165.20025200252002,-73.85950130895924],[165.19305193051935,-73.83079549537122],[165.2470524705247,-73.77844960000486],[165.25425254252542,-73.7446780546072],[165.25065250652506,-73.73792374552768],[165.23625236252366,-73.72779228190838],[165.22905229052293,-73.72272655009873],[165.2326523265233,-73.7159722410192],[165.2470524705247,-73.70415220013003],[165.2434524345244,-73.69739789105049],[165.21465214652147,-73.66024919111308],[165.21465214652147,-73.64505199568413],[165.22905229052293,-73.62478906844554],[165.23625236252366,-73.60621471847682],[165.2326523265233,-73.59270610031777],[165.21825218252184,-73.58257463669847],[165.19665196651965,-73.57413175034905],[165.1786517865179,-73.56400028672977],[165.1678516785168,-73.54880309130081],[165.1462514625146,-73.5116543913634],[165.1318513185132,-73.47619426869586],[165.12465124651249,-73.4626856505368],[165.05265052650526,-73.41709406424997],[165.03105031050313,-73.41033975517044],[165.1786517865179,-73.35123955072454],[165.2218522185222,-73.34279666437513],[165.35865358653587,-73.33941950983537],[165.30825308253083,-73.32759946894618],[165.25065250652506,-73.32084515986665],[165.19665196651965,-73.32253373713654],[165.1462514625146,-73.33266520075583],[165.0346503465035,-73.37319105523301],[164.97704977049773,-73.38669967339207],[164.91224912249123,-73.38838825066196],[164.55944559445595,-73.32422231440641],[164.52704527045273,-73.33097662348595],[164.44424444244441,-73.36812532342337],[164.4910449104491,-73.39851971428125],[164.53784537845382,-73.41709406424997],[164.59184591845917,-73.42553695059938],[164.70344703447034,-73.41878264151984],[164.76824768247684,-73.42384837332949],[164.82944829448297,-73.43735699148856],[164.879848798488,-73.46099707326691],[164.8942489424894,-73.48294857777539],[164.879848798488,-73.52685158679233],[164.91224912249123,-73.57244317307917],[164.9158491584916,-73.60114898666718],[164.9050490504905,-73.6568720365733],[164.8906489064891,-73.68220069562155],[164.8618486184862,-73.69739789105049],[164.82944829448297,-73.70415220013003],[164.7970479704797,-73.70584077739991],[164.77544775447757,-73.71428366374931],[164.75024750247502,-73.73623516825779],[164.7286472864729,-73.76156382730603],[164.71424714247144,-73.78182675454462],[164.77544775447757,-73.80884399086275],[164.78984789847902,-73.8139097226724],[164.8258482584826,-73.81559829994228],[164.84024840248406,-73.8240411862917],[164.8510485104851,-73.83586122718087],[164.85464854648546,-73.85105842260981],[164.8618486184862,-73.86456704076888],[164.879848798488,-73.87300992711829],[164.95184951849518,-73.891584277087],[164.8942489424894,-73.92535582248466],[164.87264872648728,-73.93211013156419],[164.8906489064891,-73.94730732699313],[164.91224912249123,-73.95406163607267],[164.99864998649986,-73.97432456331126],[165.02025020250204,-73.97601314058113],[165.04545045450453,-73.97263598604137],[165.02025020250204,-73.94393017245336],[165.1318513185132,-73.97939029512091],[165.26145261452615,-74.00134179962937],[165.23985239852402,-74.00978468597879],[165.30825308253083,-74.03004761321739],[165.28305283052833,-74.04186765410657],[165.25425254252542,-74.04524480864633],[165.20025200252002,-74.04693338591622],[165.11025110251103,-74.05706484953551],[165.07425074250745,-74.05537627226562],[165.06705067050672,-74.0486219631861],[165.06345063450635,-74.02329330413785],[165.05625056250562,-74.0182275723282],[164.8942489424894,-73.9996532223595],[164.82224822248224,-73.96419309969195],[164.59184591845917,-73.92704439975454],[164.5306453064531,-73.92366724521477],[164.46944469444696,-73.92873297702442],[164.4118441184412,-73.94393017245336],[164.43704437044374,-73.9506844815329],[164.519845198452,-73.96081594515219],[164.58824588245886,-73.97939029512091],[164.59544595445954,-73.98614460420043],[164.59544595445954,-73.99796464508961],[164.59184591845917,-74.01991614959809],[164.67104671046712,-73.9996532223595],[164.66744667446676,-74.01653899505833],[164.67104671046712,-74.03342476775715],[164.67824678246785,-74.04355623137644],[164.69624696246962,-74.04693338591622],[164.71424714247144,-74.04186765410657],[164.73944739447398,-74.02160472686796],[164.75744757447575,-74.01653899505833],[164.78624786247866,-74.02160472686796],[164.81864818648188,-74.04017907683668],[164.84384843848437,-74.06550773588492],[164.86544865448656,-74.08914781766327],[164.81864818648188,-74.10265643582234],[164.83304833048334,-74.11278789944164],[164.85464854648546,-74.11785363125128],[164.8942489424894,-74.11954220852117],[164.87624876248765,-74.13305082668023],[164.85464854648546,-74.13980513575976],[164.81144811448115,-74.14655944483928],[164.88344883448838,-74.17019952661765],[164.85824858248583,-74.20903680382494],[164.89784897848978,-74.22761115379366],[165.04545045450453,-74.24956265830214],[165.06345063450635,-74.25631696738166],[165.0778507785078,-74.27320274008049],[165.08145081450817,-74.2833342036998],[165.08505085050854,-74.30697428547815],[165.0886508865089,-74.31372859455767],[165.1138511385114,-74.32048290363721],[165.12105121051212,-74.32723721271674],[165.12825128251285,-74.3407458308758],[165.10665106651066,-74.34243440814568],[165.09945099450994,-74.34243440814568],[165.12105121051212,-74.35425444903487],[165.15345153451534,-74.3897145717024],[165.1786517865179,-74.40322318986146],[165.20745207452075,-74.40997749894099],[165.2218522185222,-74.41504323075064],[165.23625236252366,-74.42517469436993],[165.2470524705247,-74.438683312529],[165.25785257852579,-74.45050335341817],[165.27225272252724,-74.45894623976758],[165.2866528665287,-74.46570054884712],[165.40545405454054,-74.4775205897363],[165.45945459454595,-74.49440636243513],[165.4630546305463,-74.52986648510266],[165.45585455854558,-74.55350656688103],[165.44865448654485,-74.60754103951727],[165.43425434254345,-74.62949254402574],[165.41265412654127,-74.63962400764504],[165.38745387453878,-74.63455827583539],[165.3406534065341,-74.60247530770762],[165.23985239852402,-74.54675225780149],[165.1786517865179,-74.5264893305629],[165.1318513185132,-74.52986648510266],[165.10665106651066,-74.54506368053161],[165.08145081450817,-74.55350656688103],[165.059850598506,-74.55857229869066],[165.00225002250022,-74.55688372142079],[164.94824948249482,-74.5653266077702],[164.92304923049232,-74.5653266077702],[164.89784897848978,-74.56701518504008],[164.84744847448474,-74.5855895350088],[164.81864818648188,-74.58221238046903],[164.79344793447933,-74.57376949411962],[164.76464764647648,-74.57039233957985],[164.58824588245886,-74.57545807138949],[164.55224552245522,-74.5653266077702],[164.50544505445055,-74.56870376230997],[164.48744487444878,-74.56701518504008],[164.4658446584466,-74.55857229869066],[164.36144361443615,-74.5079149805942],[164.33984339843397,-74.50284924878454],[164.31824318243184,-74.50284924878454],[164.11304113041132,-74.54844083507137],[163.9258392583926,-74.55688372142079],[163.9618396183962,-74.5855895350088],[163.84663846638466,-74.61767250313656],[163.7890378903789,-74.6244268122161],[163.7206372063721,-74.61260677132691],[163.69543695436954,-74.61598392586669],[163.68463684636845,-74.61598392586669],[163.67023670236705,-74.60754103951727],[163.66303663036632,-74.59740957589797],[163.66303663036632,-74.5839009577389],[163.65943659436596,-74.57039233957985],[163.64863648636486,-74.54506368053161],[163.64143641436414,-74.5163578669436],[163.64863648636486,-74.49102920789537],[163.67023670236705,-74.47414343519654],[163.60543605436055,-74.45388050795795],[163.56943569435697,-74.4488147761483],[163.53343533435333,-74.45725766249771],[163.53343533435333,-74.43192900344947],[163.5550355503555,-74.38464883989275],[163.5550355503555,-74.3610087581144],[163.5370353703537,-74.3407458308758],[163.50463504635047,-74.33736867633604],[163.4686346863469,-74.34243440814568],[163.39663396633966,-74.36269733538427],[163.30663306633068,-74.3998460353217],[163.25623256232564,-74.41335465348075],[163.23463234632345,-74.41335465348075],[163.18783187831878,-74.40997749894099],[163.12303123031234,-74.40997749894099],[163.10863108631088,-74.41335465348075],[163.0978309783098,-74.4184203852904],[163.09063090630906,-74.4285518489097],[163.0870308703087,-74.438683312529],[163.0978309783098,-74.44543762160853],[163.18063180631805,-74.44712619887841],[163.1950319503195,-74.45556908522782],[163.20943209432096,-74.48089774427606],[163.22743227432278,-74.50284924878454],[163.2706327063271,-74.54168652599185],[163.2166321663217,-74.58727811227868],[163.20223202232023,-74.59403242135821],[163.16623166231665,-74.60754103951727],[163.09063090630906,-74.65819835761374],[163.07983079830802,-74.6717069757728],[163.0726307263073,-74.68690417120175],[163.0618306183062,-74.70041278936081],[163.04383043830438,-74.70716709844035],[163.01143011430116,-74.7021013666307],[162.98982989829898,-74.67508413031257],[162.9538295382954,-74.61598392586669],[162.93942939429394,-74.60416388497751],[162.9178291782918,-74.60247530770762],[162.89982899829,-74.60416388497751],[162.88182881828817,-74.60922961678715],[162.8638286382864,-74.61091819405704],[162.83142831428313,-74.60416388497751],[162.81342813428137,-74.60416388497751],[162.8350283502835,-74.63624685310528],[162.83862838628386,-74.65144404853422],[162.83142831428313,-74.66495266669328],[162.82422824228246,-74.67001839850293],[162.80262802628027,-74.67677270758246],[162.79542795427955,-74.68014986212222],[162.78822788227882,-74.68859274847163],[162.77742777427778,-74.70547852117046],[162.77022770227705,-74.71223283025],[162.73062730627305,-74.7308071802187],[162.59022590225902,-74.7493815301874],[162.59382593825939,-74.76626730288623],[162.6010260102601,-74.7797759210453],[162.6118261182612,-74.78821880739471],[162.62982629826297,-74.79159596193448],[162.60822608226084,-74.82705608460202],[162.5830258302583,-74.85069616638037],[162.55422554225544,-74.86420478453944],[162.51102511025113,-74.87095909361896],[162.47502475024754,-74.86420478453944],[162.40302403024032,-74.83718754822131],[162.36342363423637,-74.84225328003096],[162.3850238502385,-74.85576189819002],[162.45342453424536,-74.88277913450816],[162.45342453424536,-74.92161641171545],[162.48942489424894,-74.94356791622393],[162.54342543425435,-74.95369937984321],[162.6910269102691,-74.95876511165287],[162.74142741427414,-74.97058515254204],[162.78462784627845,-74.99084807978065],[162.7558275582756,-75.01617673882888],[162.70902709027092,-75.02799677971805],[162.61902619026193,-75.03137393425783],[162.63342633426333,-75.043193975147],[162.6478264782648,-75.04657112968677],[162.68742687426874,-75.04994828422653],[162.65862658626588,-75.08034267508442],[162.6226262262623,-75.09385129324349],[162.5470254702547,-75.10060560232301],[162.5578255782558,-75.1225571068315],[162.57942579425793,-75.13775430226043],[162.60462604626048,-75.14788576587974],[162.62622626226266,-75.15295149768937],[162.65502655026552,-75.16814869311833],[162.64422644226443,-75.18841162035692],[162.61902619026193,-75.2103631248654],[162.59382593825939,-75.22387174302445],[162.54342543425435,-75.24075751572327],[162.2626226262263,-75.27115190658117],[162.02862028620285,-75.25933186569199],[161.9206192061921,-75.23569178391364],[161.89901899018992,-75.22724889756422],[161.85221852218524,-75.20360881578586],[161.83061830618306,-75.19516592943644],[161.80541805418056,-75.1901001976268],[161.77661776617765,-75.18841162035692],[161.6686166861669,-75.2002316612461],[161.6146161461615,-75.21374027940516],[161.58941589415895,-75.2289374748341],[161.55341553415536,-75.26439759750164],[161.52821528215281,-75.27621763839082],[161.4742147421474,-75.2863491020101],[160.97740977409774,-75.28803767928],[160.90900909009093,-75.30154629743906],[160.88020880208802,-75.30323487470893],[160.8478084780848,-75.30998918378847],[160.80100801008012,-75.34038357464635],[160.70740707407077,-75.3657122336946],[160.58140581405814,-75.37753227458379],[160.6390063900639,-75.39779520182238],[160.9270092700927,-75.42818959268025],[160.97740977409774,-75.42143528360073],[161.08541085410855,-75.38428658366331],[161.45621456214565,-75.38597516093319],[161.82341823418233,-75.38597516093319],[162.19062190621906,-75.38766373820307],[162.20862208622088,-75.39779520182238],[162.2626226262263,-75.44169821083932],[162.27342273422738,-75.45689540626826],[162.28422284222842,-75.47884691077674],[162.30222302223024,-75.50586414709487],[162.3058230582306,-75.52950422887322],[162.28062280622805,-75.54301284703229],[162.1438214382144,-75.53625853795275],[162.07182071820722,-75.54301284703229],[162.02862028620285,-75.57340723789017],[162.05742057420576,-75.58522727877934],[162.08622086220862,-75.59198158785888],[162.11142111421117,-75.59535874239864],[162.2158221582216,-75.59198158785888],[162.22662226622265,-75.59873589693841],[162.22302223022234,-75.61224451509747],[162.21222212222125,-75.6291302877963],[162.20142201422016,-75.63757317414571],[162.2158221582216,-75.6392617514156],[162.22662226622265,-75.64263890595537],[162.23382233822338,-75.64939321503489],[162.2410224102241,-75.66121325592407],[162.2518225182252,-75.66627898773372],[162.2626226262263,-75.66965614227348],[162.28782287822878,-75.66796756500361],[162.29862298622987,-75.67303329681324],[162.30942309423097,-75.6882304922422],[162.3166231662317,-75.69498480132172],[162.46062460624609,-75.71355915129044],[162.4678246782468,-75.71187057402055],[162.47862478624785,-75.71018199675066],[162.48942489424894,-75.71018199675066],[162.4930249302493,-75.7169363058302],[162.49662496624967,-75.7355106557989],[162.5038250382504,-75.7456421194182],[162.5146251462515,-75.74901927395797],[162.53262532625325,-75.75070785122786],[162.5578255782558,-75.75070785122786],[162.5830258302583,-75.7473306966881],[162.59382593825939,-75.7473306966881],[162.6226262262623,-75.76083931484715],[162.84222842228422,-75.79292228297493],[162.89982899829,-75.8233166738328],[162.88182881828817,-75.83682529199187],[162.84222842228422,-75.8537110646907],[162.81702817028173,-75.86890826011964],[162.809828098281,-75.87059683738953],[162.80622806228064,-75.87397399192929],[162.80622806228064,-75.88072830100882],[162.809828098281,-75.89085976462812],[162.809828098281,-75.89761407370764],[162.80262802628027,-75.90099122824742],[162.79182791827918,-75.90774553732695],[162.75942759427596,-75.91449984640647],[162.57582575825762,-75.90943411459682],[162.5578255782558,-75.9128112691366],[162.53982539825398,-75.92125415548601],[162.54342543425435,-75.9313856191053],[162.56142561425617,-75.93982850545471],[162.57942579425793,-75.94320565999448],[162.60822608226084,-75.94320565999448],[162.62622626226266,-75.94489423726436],[162.70542705427056,-75.98035435993191],[162.70902709027092,-75.99386297809096],[162.69462694626947,-76.0191916371392],[162.7126271262713,-76.02763452348862],[162.72342723427238,-76.04114314164768],[162.73782737827378,-76.07322610977545],[162.65142651426515,-76.09180045974416],[162.3958239582396,-76.05971749161638],[162.4246242462425,-76.07491468704534],[162.52182521825222,-76.09855476882369],[162.4822248222482,-76.10868623244299],[162.44262442624427,-76.10530907790323],[162.39942399423995,-76.09348903701404],[162.36342363423637,-76.0782918415851],[162.35622356223564,-76.08335757339475],[162.30222302223024,-76.10024334609358],[162.33462334623346,-76.11375196425263],[162.44622446224463,-76.12894915968158],[162.4138241382414,-76.14752350965028],[162.36342363423637,-76.15090066419006],[162.26622266222665,-76.14752350965028],[162.16542165421657,-76.15427781872982],[162.11502115021153,-76.16947501415876],[162.09342093420935,-76.20155798228653],[162.12582125821257,-76.20155798228653],[162.14742147421475,-76.2049351368263],[162.1618216182162,-76.21844375498536],[162.16542165421657,-76.25052672311313],[162.2626226262263,-76.25728103219267],[162.3310233102331,-76.27585538216137],[162.34542345423455,-76.27585538216137],[162.43542435424354,-76.23364095041431],[162.4822248222482,-76.22013233225525],[162.57222572225726,-76.2150666004456],[162.5830258302583,-76.21675517771548],[162.59382593825939,-76.22182090952512],[162.6010260102601,-76.22688664133477],[162.6118261182612,-76.23195237314442],[162.6226262262623,-76.23364095041431],[162.73062730627305,-76.23195237314442],[162.75222752227523,-76.23532952768419],[162.77382773827742,-76.2437724140336],[162.78822788227882,-76.25896960946255],[162.78822788227882,-76.28429826851078],[162.77382773827742,-76.30118404120961],[162.74862748627487,-76.30793835028915],[162.7018270182702,-76.30793835028915],[162.70542705427056,-76.30962692755902],[162.72342723427238,-76.31806981390844],[162.73782737827378,-76.35859566838562],[162.82422824228246,-76.39743294559293],[162.88542885428853,-76.43964737734],[162.8350283502835,-76.49368184997624],[162.72342723427238,-76.54265059080284],[162.68742687426874,-76.54940489988238],[162.56502565025653,-76.53420770445342],[162.53622536225362,-76.54771632261249],[162.53982539825398,-76.54940489988238],[162.55422554225544,-76.55784778623179],[162.5578255782558,-76.55953636350166],[162.53982539825398,-76.56460209531132],[162.5038250382504,-76.56797924985108],[162.48582485824858,-76.57304498166073],[162.47862478624785,-76.59161933162943],[162.47502475024754,-76.59837364070897],[162.4678246782468,-76.59837364070897],[162.46062460624609,-76.59837364070897],[162.45342453424536,-76.60175079524873],[162.4246242462425,-76.63889949518615],[162.45342453424536,-76.65071953607533],[162.4930249302493,-76.65747384515487],[162.7558275582756,-76.64903095880545],[162.84222842228422,-76.6642281542344],[162.8746287462875,-76.67604819512357],[162.9322293222932,-76.70813116325135],[162.9430294302943,-76.71995120414053],[162.9538295382954,-76.75709990407795],[162.96102961029612,-76.77398567677677],[162.97542975429758,-76.78918287220571],[162.9538295382954,-76.7908714494756],[162.93942939429394,-76.79931433582502],[162.92502925029254,-76.8111343767142],[162.91422914229145,-76.82802014941302],[162.89982899829,-76.84152876757207],[162.88542885428853,-76.84828307665161],[162.86742867428677,-76.84997165392149],[162.8458284582846,-76.84828307665161],[162.7990279902799,-76.83477445849255],[162.78462784627845,-76.83308588122266],[162.74142741427414,-76.83308588122266],[162.69822698226983,-76.82633157214313],[162.62622626226266,-76.82464299487324],[162.42102421024214,-76.8989403947481],[162.5470254702547,-76.90400612655773],[162.58662586625866,-76.9175147447168],[162.52182521825222,-76.93777767195539],[162.30222302223024,-76.95128629011445],[162.52542525425258,-76.95972917646387],[162.50022500225003,-76.9766149491627],[162.46062460624609,-76.98505783551211],[162.38862388623886,-76.98843499005187],[162.4282242822428,-77.01207507183022],[162.4678246782468,-77.01545222637],[162.61902619026193,-77.00194360821094],[162.6478264782648,-77.00363218548081],[162.6910269102691,-77.02558368998929],[162.71622716227165,-77.02727226725918],[162.8206282062821,-77.01545222637],[162.92142921429217,-77.02051795817964],[163.02223022230226,-77.01376364910011],[163.06903069030693,-77.01882938090976],[163.16263162631628,-77.044158039958],[163.14463144631446,-77.0644209671966],[163.12303123031234,-77.08468389443519],[163.1842318423184,-77.10832397621354],[163.20943209432096,-77.1218325943726],[163.23823238232382,-77.14547267615096],[163.26703267032673,-77.15898129431002],[163.34263342633426,-77.16573560338955],[163.3786337863379,-77.17586706700885],[163.38943389433894,-77.18768710789803],[163.40743407434076,-77.21470434421616],[163.41823418234185,-77.22652438510534],[163.43263432634325,-77.23159011691499],[163.46503465034652,-77.2400330032644],[163.47943479434798,-77.25016446688369],[163.5010350103501,-77.2788702804717],[163.5118351183512,-77.29069032136087],[163.52983529835302,-77.30082178498017],[163.54423544235442,-77.31264182586935],[163.54783547835478,-77.32952759856818],[163.54423544235442,-77.3481019485369],[163.5370353703537,-77.36329914396583],[163.56943569435697,-77.37849633939477],[163.6018360183602,-77.38862780301407],[163.63783637836377,-77.39369353482373],[163.71703717037173,-77.39707068936349],[163.72783727837282,-77.40382499844301],[163.74583745837458,-77.42071077114184],[163.76023760237604,-77.42915365749126],[163.78183781837822,-77.43084223476114],[163.82503825038253,-77.43084223476114],[163.7746377463775,-77.44772800745997],[163.8178381783818,-77.47643382104798],[163.83223832238326,-77.49500817101668],[163.82143821438217,-77.51864825279505],[163.79983799837999,-77.52877971641433],[163.54783547835478,-77.54904264365292],[163.50463504635047,-77.56930557089152],[163.66663666636668,-77.59463422993976],[163.71703717037173,-77.61489715717835],[163.6558365583656,-77.64698012530613],[163.58743587435873,-77.66048874346518],[163.43983439834398,-77.6689316298146],[163.53343533435333,-77.71621179337131],[163.55863558635588,-77.71958894791108],[163.9078390783908,-77.69594886613272],[163.91503915039152,-77.70101459794238],[163.92223922239225,-77.7077689070219],[163.93663936639365,-77.71283463883155],[164.24264242642425,-77.78206630689674],[164.19944199441994,-77.80739496594498],[164.12024120241205,-77.81246069775463],[163.97623976239765,-77.80232923413533],[163.83583835838357,-77.8158378522944],[163.70263702637027,-77.84960939769205],[163.72783727837282,-77.88000378854994],[163.78183781837822,-77.87831521128005],[163.87903879038794,-77.85974086131134],[164.18864188641885,-77.85636370677157],[164.50184501845018,-77.8546751295017],[164.52704527045273,-77.86480659312099],[164.5450454504545,-77.87493805674029],[164.5558455584556,-77.89013525216923],[164.56664566645668,-77.9137753339476],[164.52704527045273,-77.91884106575723],[164.53424534245346,-77.98638415655255],[164.48384483844842,-78.01846712468031],[164.40824408244083,-78.02859858829962],[164.33984339843397,-78.03028716556949],[164.3578435784358,-78.04379578372856],[164.3758437584376,-78.05223867007797],[164.41904419044192,-78.06237013369727],[164.4010440104401,-78.08601021547562],[164.36864368643688,-78.0978302563648],[164.30024300243002,-78.1079617199841],[164.18144181441818,-78.14342184265163],[164.03024030240306,-78.17043907896976],[163.8826388263883,-78.22109639706625],[163.8430384303843,-78.22616212887588],[163.93303933039334,-78.23122786068554],[164.11664116641168,-78.21434208798671],[164.20664206642067,-78.22616212887588],[164.37224372243725,-78.27850802424226],[164.44784447844478,-78.28357375605191],[164.4658446584466,-78.28863948786154],[164.5306453064531,-78.31734530144956],[164.5558455584556,-78.32072245598933],[164.6386463864639,-78.32578818779896],[164.67824678246785,-78.32072245598933],[164.75744757447575,-78.29201664240132],[165.09585095850957,-78.25317936519401],[165.1138511385114,-78.24642505611448],[165.1462514625146,-78.21940781979636],[165.16425164251643,-78.20758777890718],[165.18585185851862,-78.19914489255777],[165.2110521105211,-78.19407916074812],[165.23625236252366,-78.19407916074812],[165.21465214652147,-78.18394769712883],[165.1570515705157,-78.16537334716011],[165.22545225452257,-78.11809318360339],[165.30465304653046,-78.08769879274551],[165.41625416254163,-78.02522143375985],[165.4450544505445,-78.01846712468031],[165.49545495454953,-78.01846712468031],[165.54225542255426,-78.02691001102973],[165.56025560255603,-78.03366432010927],[165.58545585455857,-78.04548436099844],[165.6070560705607,-78.05899297915751],[165.6178561785618,-78.07587875185634],[165.6178561785618,-78.10289598817445],[165.60345603456034,-78.12315891541304],[165.5818558185582,-78.13666753357211],[165.33705337053374,-78.19914489255777],[165.36225362253623,-78.21096493344695],[165.44865448654485,-78.22785070614577],[165.50625506255062,-78.2447364788446],[165.56745567455675,-78.2548679424639],[165.65745657456574,-78.2548679424639],[165.68625686256865,-78.26162225154343],[165.70785707857078,-78.27175371516272],[165.7366573665737,-78.29032806513143],[165.7510575105751,-78.31059099237002],[165.73305733057333,-78.32409961052909],[165.74025740257406,-78.32578818779896],[165.75465754657546,-78.3325424968785],[165.7618576185762,-78.33423107414838],[165.74385743857442,-78.34605111503757],[165.7258572585726,-78.3528054241171],[165.68985689856902,-78.36462546500627],[165.72945729457297,-78.40008558767381],[165.78705787057874,-78.4203485149124],[166.12906129061292,-78.469317255739],[166.34506345063454,-78.47269441027876],[166.56466564665647,-78.50646595567642],[167.00027000270006,-78.50140022386677],[167.05787057870577,-78.50984311021618],[167.1046710467105,-78.52672888291501],[167.21627216272162,-78.60102628278985],[167.23427234272344,-78.62297778729832],[167.24147241472417,-78.64830644634657],[167.22707227072272,-78.66856937358516],[167.20187201872022,-78.68207799174422],[167.14787147871482,-78.69558660990327],[167.06867068670687,-78.70740665079246],[166.80586805868057,-78.70909522806234],[166.5466654666547,-78.7124723826021],[166.4170641706417,-78.68545514628399],[166.3738637386374,-78.65843790996585],[166.19746197461978,-78.58751766463078],[166.08946089460898,-78.56725473739219],[165.76545765457655,-78.56556616012232],[165.4450544505445,-78.56387758285243],[165.45225452254522,-78.57232046920184],[165.4630546305463,-78.57907477828138],[165.4738547385474,-78.58414051009102],[165.4846548465485,-78.5858290873609],[165.30825308253083,-78.60440343732961],[164.85824858248583,-78.60440343732961],[164.40824408244083,-78.60440343732961],[164.07344073440737,-78.68714372355387],[163.9870398703987,-78.68545514628399],[164.07344073440737,-78.70571807352258],[164.04464044640446,-78.7124723826021],[163.9870398703987,-78.70740665079246],[163.9618396183962,-78.70740665079246],[163.94383943839438,-78.71416095987199],[163.91863918639189,-78.7327353098407],[163.90063900639007,-78.73611246438047],[163.85023850238503,-78.73780104165034],[163.64143641436414,-78.71584953714188],[163.5766357663577,-78.72091526895152],[163.58383583835837,-78.72429242349129],[163.5910359103591,-78.7327353098407],[163.59823598235982,-78.73611246438047],[163.58383583835837,-78.74117819619012],[163.56943569435697,-78.74455535072988],[163.5550355503555,-78.74455535072988],[163.54423544235442,-78.74455535072988],[163.54783547835478,-78.74962108253953],[163.5550355503555,-78.76312970069858],[163.55863558635588,-78.76988400977812],[163.4830348303483,-78.7817040506673],[163.47223472234725,-78.78001547339741],[163.44343443434434,-78.74286677346],[163.4362343623436,-78.73442388711058],[163.42543425434258,-78.73442388711058],[163.41823418234185,-78.73948961892023],[163.4038340383404,-78.74455535072988],[163.35703357033572,-78.74455535072988],[163.259832598326,-78.7327353098407],[163.21303213032132,-78.7327353098407],[163.13743137431373,-78.74624392799976],[163.1158311583116,-78.74455535072988],[163.0870308703087,-78.73780104165034],[163.06543065430657,-78.73611246438047],[163.04383043830438,-78.74455535072988],[163.0186301863019,-78.76144112342871],[162.98622986229861,-78.79183551428659],[162.96822968229685,-78.80196697790589],[162.94662946629467,-78.80872128698542],[162.91062910629108,-78.8120984415252],[162.89982899829,-78.81378701879507],[162.89622896228963,-78.82222990514448],[162.89622896228963,-78.83404994603366],[162.89622896228963,-78.84755856419272],[162.88182881828817,-78.85769002781203],[162.90342903429035,-78.87626437778073],[162.91062910629108,-78.88133010959038],[162.88182881828817,-78.8880844186699],[162.80622806228064,-78.92692169587721],[162.74862748627487,-78.94043031403628],[162.6910269102691,-78.9471846231158],[162.6226262262623,-78.94549604584591],[162.59022590225902,-78.93367600495674],[162.5686256862569,-78.91003592317838],[162.54342543425435,-78.89483872774944],[162.47862478624785,-78.89315015047956],[162.45342453424536,-78.87795295505062],[162.46422464224645,-78.86613291416143],[162.46062460624609,-78.85093571873249],[162.45702457024572,-78.83742710057342],[162.45702457024572,-78.8306727914939],[162.52542525425258,-78.79690124609624],[162.4822248222482,-78.77832689612754],[162.43182431824317,-78.7817040506673],[162.33822338223382,-78.79521266882637],[162.12582125821257,-78.75975254615882],[162.10422104221044,-78.74962108253953],[162.0646206462065,-78.71922669168164],[161.97101971019714,-78.67701225993457],[161.95301953019532,-78.67363510539481],[161.90621906219064,-78.67025795085505],[161.85221852218524,-78.65506075542609],[161.76221762217625,-78.61115774640915],[161.78021780217802,-78.59933770551997],[161.82341823418233,-78.55543469650301],[161.86301863018633,-78.53517176926442],[161.87381873818737,-78.52335172837525],[161.86301863018633,-78.50140022386677],[161.82341823418233,-78.48113729662818],[161.78021780217802,-78.49295733751735],[161.7370173701737,-78.51322026475594],[161.69741697416976,-78.52166315110536],[161.6038160381604,-78.50646595567642],[161.55341553415536,-78.50477737840653],[161.5066150661507,-78.51490884202583],[161.49941499414996,-78.52166315110536],[161.4850148501485,-78.54023750107407],[161.4742147421474,-78.54530323288373],[161.3626136261363,-78.57907477828138],[161.33741337413375,-78.58076335555126],[161.37341373413733,-78.59089481917056],[161.39141391413915,-78.61284632367902],[161.4058140581406,-78.64155213726704],[161.4310143101431,-78.66688079631527],[161.44901449014492,-78.67870083720446],[161.46341463414637,-78.69220945536351],[161.48861488614887,-78.7226038462214],[161.50301503015032,-78.73442388711058],[161.55701557015573,-78.74962108253953],[161.54261542615427,-78.77494974158776],[161.53181531815318,-78.78676978247695],[161.5210152101521,-78.79521266882637],[161.54621546215463,-78.80534413244565],[161.63621636216362,-78.80365555517577],[161.6686166861669,-78.80703270971554],[161.69741697416976,-78.81547559606496],[161.75501755017552,-78.83911567784331],[161.72981729817297,-78.8593786050819],[161.69741697416976,-78.86613291416143],[161.63261632616326,-78.87119864597108],[161.7910179101791,-78.91003592317838],[161.80541805418056,-78.91679023225791],[161.81621816218166,-78.92861027314709],[161.8270182701827,-78.94043031403628],[161.83781837818378,-78.95056177765557],[161.87741877418773,-78.96238181854474],[161.91701917019174,-78.99784194121229],[162.0646206462065,-79.06876218654736],[161.77661776617765,-79.06876218654736],[161.49221492214923,-79.01979344572077],[161.4958149581496,-78.99108763213275],[161.46701467014674,-78.97251328216404],[161.4310143101431,-78.9573160867351],[161.38421384213842,-78.92185596406756],[161.34821348213484,-78.91510165498804],[161.27981279812798,-78.91679023225791],[161.2618126181262,-78.9184788095278],[161.25101251012512,-78.92523311860732],[161.24021240212403,-78.93367600495674],[161.22581225812257,-78.94043031403628],[161.2078120781208,-78.94380746857604],[161.00261002610029,-78.93367600495674],[161.19701197011972,-78.96238181854474],[161.1682116821168,-78.97926759124357],[161.1538115381154,-78.98939905486287],[161.14661146611468,-79.00459625029181],[161.12861128611286,-79.05018783657864],[161.09981099811,-79.06031930019795],[161.06021060210605,-79.06369645473771],[160.69660696606968,-79.03836779568947],[160.74700747007472,-79.07551649562689],[160.71100711007114,-79.09746800013536],[160.3870038700387,-79.16838824547044],[160.49500495004952,-79.19878263632833],[160.49140491404916,-79.20553694540786],[160.4878048780488,-79.21904556356692],[160.48420484204843,-79.22579987264645],[160.520205202052,-79.24099706807539],[160.50940509405098,-79.25788284077422],[160.4770047700477,-79.27139145893328],[160.43740437404375,-79.27645719074293],[160.45900459004594,-79.30347442706105],[160.49500495004952,-79.31191731341046],[160.57780577805778,-79.31022873614059],[160.65340653406537,-79.32036019975988],[160.7290072900729,-79.34062312699847],[160.70740707407077,-79.3575088996973],[160.67860678606786,-79.3676403633166],[160.62460624606246,-79.37777182693588],[160.6390063900639,-79.39296902236484],[160.6606066060661,-79.40478906325401],[160.71100711007114,-79.41998625868295],[160.96300963009634,-79.42842914503237],[161.02781027810278,-79.44193776319143],[161.0350103501035,-79.4740207313192],[161.01341013410138,-79.48246361766861],[160.75420754207545,-79.46726642223967],[160.6858068580686,-79.45038064954085],[160.62460624606246,-79.45038064954085],[160.5058050580506,-79.46557784496979],[160.48420484204843,-79.47570930858909],[160.4662046620466,-79.49766081309757],[160.44460444604448,-79.5128580085265],[160.41580415804157,-79.52298947214581],[160.24660246602468,-79.53987524484462],[160.21780217802177,-79.54831813119404],[160.16740167401673,-79.5719582129724],[160.14220142201424,-79.57871252205193],[160.07740077400774,-79.58040109932182],[159.63459634596347,-79.52636662668557],[159.64539645396457,-79.53818666757475],[159.66339663396633,-79.54494097665427],[159.6957969579696,-79.55169528573381],[159.71739717397173,-79.5618267493531],[159.7209972099721,-79.57533536751217],[159.71739717397173,-79.5905325629411],[159.7209972099721,-79.60235260383028],[159.73539735397355,-79.61754979925924],[159.75699756997574,-79.62599268560865],[159.80019800198005,-79.63612414922794],[159.86139861398613,-79.6597642310063],[159.87579875798758,-79.66145280827618],[160.35820358203586,-79.6395013037677],[160.84060840608407,-79.61923837652911],[160.76140761407618,-79.65132134465689],[160.4230042300423,-79.71211012637266],[160.08460084600847,-79.77289890808844],[159.78939789397896,-79.77965321716798],[159.6669966699667,-79.80667045348609],[159.4977949779498,-79.82017907164516],[159.53739537395376,-79.82524480345481],[159.62379623796238,-79.82524480345481],[159.66339663396633,-79.83368768980422],[159.63459634596347,-79.85395061704281],[159.5985959859599,-79.86408208066212],[159.5229952299523,-79.8742135442814],[159.67059670596706,-79.90967366694895],[159.82179821798218,-79.92487086237789],[159.9729997299973,-79.92149370783812],[160.32940329403294,-79.86070492612234],[160.3690036900369,-79.86239350339223],[160.45900459004594,-79.89616504878988],[160.62820628206282,-79.91305082148871],[160.7938079380794,-79.95526525323578],[160.85140851408516,-79.95695383050565],[161.31941319413193,-79.87759069882117],[161.47061470614705,-79.90123078059953],[161.44901449014492,-79.91136224421882],[161.4058140581406,-79.93669090326706],[161.38421384213842,-79.94682236688637],[160.94860948609488,-79.99916826225272],[160.51660516605165,-80.05151415761908],[160.08460084600847,-80.10217147571556],[159.64899648996493,-80.15451737108194],[159.2169921699217,-80.2068632664483],[158.78138781387815,-80.25920916181465],[158.78858788587888,-80.29973501629185],[158.73458734587348,-80.32506367534009],[158.47178471784719,-80.36558952981727],[158.2089820898209,-80.40611538429445],[158.1729817298173,-80.41962400245352],[158.19098190981913,-80.44495266150176],[158.25578255782557,-80.45339554785117],[158.53298532985332,-80.45677270239094],[158.54738547385477,-80.46183843420059],[158.57618576185763,-80.47534705235964],[158.58698586985872,-80.47703562962953],[159.0189901899019,-80.45677270239094],[159.4545945459455,-80.43819835242222],[159.88659886598867,-80.41962400245352],[160.31860318603185,-80.39936107521493],[160.75060750607508,-80.38078672524621],[160.77580775807758,-80.3824753025161],[160.81180811808122,-80.39429534340528],[160.84060840608407,-80.40949253883421],[160.85140851408516,-80.41793542518363],[160.86580865808662,-80.43819835242222],[160.8730087300873,-80.44326408423187],[160.89460894608948,-80.44832981604152],[160.93420934209342,-80.44495266150176],[160.95220952209525,-80.44832981604152],[160.97740977409774,-80.45846127966082],[161.03861038610387,-80.49729855686812],[160.98820988209883,-80.52262721591636],[160.93060930609306,-80.52262721591636],[160.62460624606246,-80.47028132055],[160.55620556205565,-80.47365847508976],[160.6066060660607,-80.5091185977573],[160.63540635406355,-80.52262721591636],[160.66420664206646,-80.5293815249959],[160.61380613806142,-80.54626729769471],[160.3546035460355,-80.56821880220319],[160.09900099000993,-80.59017030671167],[160.0378003780038,-80.58510457490202],[159.9621996219962,-80.55302160677425],[159.93339933399335,-80.54964445223449],[159.8181981819818,-80.56821880220319],[159.75339753397537,-80.56990737947308],[159.82539825398254,-80.6070560794105],[159.85419854198545,-80.64251620207803],[159.87939879398795,-80.65095908842744],[160.26100261002614,-80.67797632474557],[160.55980559805602,-80.64420477934792],[160.8586085860859,-80.61043323395026],[160.96300963009634,-80.62056469756956],[161.09981099811,-80.64758193388768],[161.1250112501125,-80.64589335661779],[161.15021150211504,-80.63913904753827],[161.1790117901179,-80.63745047026839],[161.20061200612008,-80.64758193388768],[161.20421204212045,-80.67459917020581],[161.19701197011972,-80.68304205655522],[161.18261182611826,-80.6847306338251],[161.1682116821168,-80.6847306338251],[161.1538115381154,-80.68641921109499],[161.14661146611468,-80.69655067471427],[161.13221132211322,-80.72187933376252],[161.1250112501125,-80.73201079738182],[161.10341103411037,-80.7421422610011],[161.009810098101,-80.75902803369993],[161.34821348213484,-80.78435669274818],[161.24021240212403,-80.80293104271689],[160.88020880208802,-80.79617673363735],[160.520205202052,-80.78942242455783],[160.16020160201606,-80.78097953820841],[160.04140041400416,-80.79617673363735],[159.74619746197465,-80.79279957909759],[159.5769957699577,-80.76747092004935],[159.53019530195303,-80.78097953820841],[159.54819548195485,-80.78773384728794],[159.5661956619566,-80.79279957909759],[159.60219602196025,-80.79786531090724],[159.5769957699577,-80.80630819725666],[159.52659526595266,-80.83332543357477],[159.4977949779498,-80.84345689719407],[159.53019530195303,-80.85358836081338],[159.749797497975,-80.82994827903501],[160.17460174601746,-80.84852262900372],[160.60300603006033,-80.86878555624232],[160.59940599405996,-80.87385128805197],[160.5958059580596,-80.88567132894114],[160.59220592205924,-80.8907370607508],[160.87660876608766,-80.91437714252915],[160.7182071820718,-80.94646011065691],[160.69660696606968,-80.94308295611715],[160.6606066060661,-80.93126291522798],[160.6390063900639,-80.93464006976774],[160.66420664206646,-80.95321441973645],[160.70020700207004,-80.95828015154609],[160.8586085860859,-80.9481486879268],[160.87660876608766,-80.95152584246657],[160.93420934209342,-80.97178876970516],[160.90900909009093,-80.99205169694375],[160.54900549005492,-81.0072488923727],[160.6066060660607,-81.0258232423414],[160.62460624606246,-81.03933186050047],[160.61740617406173,-81.04102043777034],[160.60300603006033,-81.04608616958],[160.5958059580596,-81.04777474684988],[160.649806498065,-81.06803767408847],[160.82620826208262,-81.09843206494637],[160.77580775807758,-81.12544930126448],[160.5418054180542,-81.11869499218496],[160.7578075780758,-81.15753226939225],[160.7938079380794,-81.1727294648212],[160.81540815408158,-81.18961523752003],[160.76500765007654,-81.19974670113932],[160.61020610206106,-81.1929923920598],[160.87660876608766,-81.22507536018756],[161.08181081810818,-81.21832105110803],[161.1430114301143,-81.24364971015628],[160.91980919809197,-81.27066694647439],[160.52740527405274,-81.23689540107674],[160.13140131401315,-81.20312385567908],[160.1566015660157,-81.22338678291769],[160.19260192601928,-81.23520682380686],[160.26100261002614,-81.2504040192358],[160.28620286202863,-81.2605354828551],[160.33660336603367,-81.28755271917322],[160.36180361803622,-81.29430702825276],[160.61380613806142,-81.31794711003111],[160.62460624606246,-81.31625853276122],[160.59220592205924,-81.32470141911064],[160.40140401404017,-81.32638999638053],[160.36540365403653,-81.33652145999982],[160.36180361803622,-81.36016154177818],[160.30780307803082,-81.38042446901677],[160.35100351003513,-81.39224450990595],[160.40140401404017,-81.39224450990595],[160.49860498604988,-81.37535873720712],[160.88740887408875,-81.35678438723842],[161.0710107101071,-81.38549020082642],[160.98820988209883,-81.4158845916843],[160.95940959409597,-81.42263890076384],[160.84060840608407,-81.42770463257348],[160.88380883808838,-81.43952467346267],[160.85140851408516,-81.45978760070126],[160.8910089100891,-81.47160764159044],[160.93060930609306,-81.46654190978079],[161.01701017010174,-81.44796755981208],[161.45261452614528,-81.42432747803372],[161.5210152101521,-81.45134471435185],[161.4958149581496,-81.47667337340009],[161.47061470614705,-81.49018199155914],[161.009810098101,-81.54928219600504],[161.30141301413016,-81.55941365962434],[161.5930159301593,-81.57123370051352],[161.57141571415713,-81.57798800959304],[161.5066150661507,-81.58474231867258],[161.56421564215646,-81.60500524591117],[161.99621996219963,-81.61851386407024],[161.95661956619568,-81.62864532768953],[161.91341913419137,-81.63371105949918],[161.98181981819818,-81.64721967765824],[162.230222302223,-81.66748260489683],[162.47862478624785,-81.68943410940531],[162.47862478624785,-81.69449984121495],[162.47502475024754,-81.70631988210413],[162.47502475024754,-81.71138561391378],[162.5290252902529,-81.71982850026319],[162.44622446224463,-81.72658280934273],[162.4678246782468,-81.73164854115237],[162.50742507425076,-81.74684573658132],[162.57582575825762,-81.7485343138512],[162.61902619026193,-81.75360004566085],[162.38862388623886,-81.7975030546778],[162.47142471424718,-81.80763451829709],[162.35262352623528,-81.82283171372603],[162.23742237422374,-81.82452029099592],[162.26982269822702,-81.83802890915499],[162.29862298622987,-81.8464717955044],[162.32742327423273,-81.84984895004416],[162.6370263702637,-81.8363403318851],[162.7666276662767,-81.84816037277427],[162.76302763027633,-81.84478321823451],[162.75942759427596,-81.83465175461522],[162.7558275582756,-81.83127460007545],[162.79182791827918,-81.81270025010674],[162.84222842228422,-81.80425736375733],[162.89262892628926,-81.80763451829709],[162.94662946629467,-81.82958602280557],[163.01143011430116,-81.83802890915499],[163.05823058230584,-81.85153752731405],[163.10143101431015,-81.87348903182252],[163.04023040230402,-81.88699764998158],[162.97902979029794,-81.8937519590611],[162.72702727027274,-81.88699764998158],[162.69822698226983,-81.89037480452134],[162.6118261182612,-81.91232630902982],[162.66222662226625,-81.92245777264912],[162.8458284582846,-81.9140148862997],[162.89982899829,-81.91908061810935],[162.95022950229503,-81.9342778135383],[163.03663036630365,-81.94103212261783],[163.00423004230043,-81.95116358623713],[162.96822968229685,-81.952852163507],[162.90342903429035,-81.94947500896724],[163.0726307263073,-82.00013232706372],[163.2490324903249,-82.02377240884208],[163.22743227432278,-82.02883814065173],[163.2058320583206,-82.03896960427102],[163.59823598235982,-82.0896269223675],[163.5658356583566,-82.0997583859868],[163.46503465034652,-82.10313554052657],[163.54063540635406,-82.12170989049528],[163.77823778237786,-82.12846419957481],[163.74223742237422,-82.14197281773387],[163.62343623436237,-82.14703854954351],[163.91503915039152,-82.19094155856047],[163.8826388263883,-82.21627021760871],[163.83943839438393,-82.23146741303765],[163.3822338223382,-82.25848464935578],[162.92502925029254,-82.2855018856739],[162.4678246782468,-82.31251912199203],[162.0106201062011,-82.34122493558003],[161.55341553415536,-82.36824217189815],[161.09621096210964,-82.39525940821628],[160.6390063900639,-82.42227664453439],[160.68940689406895,-82.4509824581224],[160.74340743407436,-82.47462253990076],[160.80100801008012,-82.49150831259959],[160.8586085860859,-82.50163977621888],[161.2546125461255,-82.499951198949],[161.65061650616508,-82.49826262167912],[162.04662046620467,-82.49657404440923],[162.44262442624427,-82.49488546713935],[162.50022500225003,-82.4796882717104],[162.5290252902529,-82.47631111717064],[162.77022770227705,-82.48644258078994],[162.93582935829357,-82.53034558980688],[163.08343083430833,-82.54385420796595],[163.0978309783098,-82.54216563069606],[163.12303123031234,-82.52190270345747],[163.14463144631446,-82.51514839437795],[163.43983439834398,-82.54554278523584],[163.4038340383404,-82.51177123983818],[163.31743317433177,-82.48306542625018],[163.16623166231665,-82.44929388085252],[163.28143281432813,-82.42565379907415],[163.74583745837458,-82.39694798548615],[164.21024210242103,-82.36824217189815],[164.6746467464675,-82.33953635831014],[164.73224732247326,-82.35642213100897],[164.88344883448838,-82.38006221278732],[165.22905229052293,-82.39357083094639],[165.35145351453514,-82.43409668542357],[165.4090540905409,-82.46617965355135],[165.43785437854382,-82.47631111717064],[165.56025560255603,-82.49319688986947],[165.5386553865539,-82.50839408529842],[165.47745477454777,-82.51514839437795],[165.4630546305463,-82.52527985799725],[165.44145441454418,-82.55736282612501],[165.39465394653945,-82.57424859882384],[165.3442534425344,-82.5793143306335],[165.30465304653046,-82.5793143306335],[165.37305373053732,-82.60633156695161],[165.74025740257406,-82.62997164872996],[166.10746107461074,-82.65361173050833],[166.1866618666187,-82.64179168961914],[166.22626226262264,-82.64348026688903],[166.52866528665288,-82.70258047133493],[166.45666456664566,-82.74141774854223],[166.43146431464316,-82.74986063489163],[166.44586445864462,-82.75154921216152],[166.46386463864638,-82.75661494397117],[166.49626496264966,-82.77181213940011],[166.5178651786518,-82.77856644847965],[166.53946539465397,-82.78194360301941],[166.57906579065792,-82.78363218028929],[166.90666906669065,-82.75830352124105],[167.30627306273067,-82.81740372568694],[167.34227342273425,-82.82922376657612],[167.34947349473498,-82.84442096200507],[167.33147331473316,-82.85792958016413],[167.19827198271986,-82.89676685737143],[167.16587165871658,-82.9001440119112],[167.40707407074075,-82.92547267095944],[167.36747367473674,-82.94573559819803],[167.34587345873462,-82.95248990727757],[167.06147061470614,-82.95586706181733],[167.10827108271081,-82.9693756799764],[167.4574745747458,-82.98119572086557],[167.4574745747458,-82.9980814935644],[167.45027450274506,-83.00990153445358],[167.43947439474397,-83.02003299807288],[167.4250742507425,-83.0267873071524],[167.53667536675368,-83.04029592531147],[167.61587615876158,-83.05887027528017],[167.65547655476558,-83.06224742981993],[167.73827738277384,-83.05549312074041],[167.88947889478897,-83.02509872988252],[168.04428044280445,-82.97106425724627],[168.11988119881198,-82.96093279362698],[168.59148591485916,-82.99977007083427],[168.62388623886238,-83.00652437991381],[168.61668616686165,-83.00821295718369],[168.60588605886062,-83.01496726626323],[168.59508595085953,-83.02341015261264],[168.59148591485916,-83.03016446169217],[168.60228602286026,-83.05549312074041],[168.64548645486457,-83.07237889343924],[168.77148771487714,-83.09264182067783],[168.80388803888042,-83.10783901610677],[168.86868868688686,-83.14667629331407],[168.86148861488618,-83.14836487058396],[168.82548825488254,-83.17031637509243],[168.7966879668797,-83.18382499325149],[168.76428764287647,-83.19057930233103],[168.41868418684186,-83.18720214779125],[168.07668076680767,-83.18382499325149],[168.1810818108181,-83.2226622704588],[168.5338853388534,-83.23448231134797],[168.50148501485018,-83.24799092950704],[168.4150841508415,-83.26656527947574],[168.15228152281526,-83.24967950677691],[167.8858788587886,-83.23279373407809],[167.86427864278642,-83.23617088861786],[167.79947799477998,-83.2513680840468],[167.74907749077494,-83.25474523858657],[167.49347493474937,-83.2226622704588],[167.2378723787238,-83.1922678796009],[167.00027000270006,-83.19902218868043],[167.02547025470255,-83.21759653864915],[167.05787057870577,-83.22603942499856],[167.54747547475478,-83.26656527947574],[168.03348033480336,-83.30709113395292],[167.95427954279546,-83.3290426384614],[167.98667986679868,-83.35099414296988],[168.03348033480336,-83.3594370293193],[168.1630816308163,-83.36787991566871],[168.28548285482856,-83.35268272023977],[168.33948339483396,-83.36450276112895],[168.35748357483578,-83.36450276112895],[168.47268472684726,-83.35268272023977],[168.5230852308523,-83.3577484520494],[168.56628566285661,-83.36787991566871],[168.61668616686165,-83.38983142017719],[168.6310863108631,-83.39489715198683],[168.65988659886602,-83.39658572925671],[169.02349023490234,-83.36619133839882],[169.38349383493835,-83.33748552481082],[169.3978939789398,-83.3391741020807],[169.40509405094053,-83.34761698843012],[169.4086940869409,-83.35605987477953],[169.41589415894163,-83.36450276112895],[169.42669426694266,-83.37125707020847],[169.41229412294126,-83.38476568836754],[169.37989379893799,-83.40840577014589],[169.36549365493659,-83.42191438830496],[169.3978939789398,-83.43373442919413],[169.46629466294667,-83.4472430473532],[169.5418954189542,-83.45062020189296],[169.55989559895602,-83.4472430473532],[169.57789577895778,-83.4371115837339],[169.58869588695887,-83.42529154284472],[169.59949599495997,-83.41853723376519],[169.61389613896142,-83.41516007922543],[169.62829628296282,-83.41516007922543],[169.5850958509585,-83.3982743065266],[169.59949599495997,-83.39320857471695],[169.6174961749618,-83.37294564747836],[169.62829628296282,-83.36956849293858],[170.10350103501037,-83.40502861560613],[170.06030060300606,-83.41347150195554],[170.06750067500678,-83.42191438830496],[170.08190081900818,-83.4269801201146],[170.09270092700928,-83.43035727465437],[170.10710107101073,-83.42866869738448],[170.09990099901,-83.43373442919413],[170.09270092700928,-83.44386589281343],[170.08550085500855,-83.44893162462307],[170.12870128701286,-83.46412882005203],[170.22230222302227,-83.48439174729062],[170.40230402304024,-83.49114605637014],[170.41310413104134,-83.48945747910027],[170.42030420304206,-83.48270317002073],[170.43830438304383,-83.4658173973219],[170.44910449104492,-83.46244024278214],[170.73350733507334,-83.45230877916285],[170.74430744307443,-83.44893162462307],[170.7479074790748,-83.43880016100378],[170.7479074790748,-83.43035727465437],[170.75510755107553,-83.4269801201146],[170.8127081270813,-83.42360296557483],[171.19431194311943,-83.44555447008331],[171.25911259112593,-83.46412882005203],[171.3851138511385,-83.47088312913155],[171.4787147871479,-83.48945747910027],[171.55431554315544,-83.4945232109099],[171.57591575915762,-83.49958894271956],[171.50031500315004,-83.51816329268827],[171.4247142471425,-83.52829475630756],[171.17631176311767,-83.53167191084732],[170.92430924309247,-83.5350490653871],[170.9459094590946,-83.54180337446662],[170.97110971109714,-83.54518052900639],[171.02151021510218,-83.54686910627628],[170.97830978309787,-83.56206630170522],[171.00351003510036,-83.56882061078475],[171.33111331113315,-83.55531199262569],[171.7019170191702,-83.58570638348357],[171.7307173071731,-83.59246069256311],[171.78831788317882,-83.61103504253181],[171.96111961119612,-83.61947792888122],[171.93951939519394,-83.63298654704029],[171.91431914319145,-83.63974085611983],[171.86751867518677,-83.64480658792947],[172.04752047520475,-83.65831520608853],[172.01512015120153,-83.67013524697771],[171.9827198271983,-83.67857813332712],[171.91431914319145,-83.68702101967654],[172.00072000720007,-83.71741541053443],[172.0979209792098,-83.71741541053443],[172.3679236792368,-83.67688955605725],[172.82152821528217,-83.66844666970783],[173.23193231932322,-83.71234967872478],[173.31833318333184,-83.73261260596337],[173.31473314733148,-83.73598976050313],[173.31113311133112,-83.74780980139232],[173.30753307533075,-83.75287553320196],[173.4119341193412,-83.76131841955137],[173.62073620736209,-83.7494983786622],[173.72153721537217,-83.76300699682126],[173.68193681936822,-83.79171281040927],[173.289532895329,-83.85587874666481],[173.40833408334083,-83.87783025117328],[173.83313833138334,-83.87445309663352],[173.86913869138692,-83.86263305574434],[173.88353883538838,-83.86094447847445],[173.91233912339123,-83.86432163301421],[173.9267392673927,-83.86769878755399],[173.95193951939518,-83.87951882844317],[173.96273962739627,-83.88120740571304],[174.3011430114301,-83.86432163301421],[174.63594635946362,-83.8474358603154],[174.97434974349744,-83.83055008761657],[175.1219512195122,-83.86938736482387],[175.44235442354426,-83.90315891022152],[175.37755377553776,-83.92848756926976],[175.16155161551615,-83.95719338285777],[175.19035190351906,-83.95719338285777],[175.26955269552695,-83.98083346463612],[175.30195301953023,-83.9842106191759],[175.67635676356764,-83.96225911466742],[176.1407614076141,-83.98589919644577],[176.60516605166055,-84.00953927822414],[177.06957069570694,-84.03317936000249],[177.5339753397534,-84.05850801905073],[177.6167761677617,-84.07370521447967],[177.55917559175595,-84.08045952355921],[177.61317613176135,-84.09227956444839],[177.87237872378728,-84.10409960533757],[178.13158131581315,-84.11591964622674],[178.1567815678157,-84.12267395530627],[178.19998199982,-84.14293688254486],[178.21798217982183,-84.14462545981475],[178.40518405184054,-84.11760822349663],[178.52758527585274,-84.1209853780364],[178.40518405184054,-84.15475692343405],[178.48078480784807,-84.1783970052124],[178.56718567185675,-84.18346273702205],[178.77958779587794,-84.17164269613288],[178.869588695887,-84.18346273702205],[179.35559355593557,-84.1969713551811],[179.75159751597516,-84.26958017778607],[179.78759787597875,-84.28477737321501],[179.6939969399694,-84.30335172318372],[179.60039600396004,-84.31179460953314],[179.69759697596976,-84.33205753677173],[-180,-84.35232046401032]]],[[[-56.669966699666986,-36.7361300305881],[-56.666366663666636,-36.850953284940125],[-56.669966699666986,-36.894856293957076],[-56.68796687966879,-36.92693926208485],[-56.727567275672754,-36.96915369383191],[-56.78876788767887,-37.038385361897106],[-56.88956889568895,-37.161651502598545],[-57.01917019170192,-37.34739500228564],[-57.055170551705515,-37.41324951581107],[-57.166771667716674,-37.53482707924262],[-57.19917199171991,-37.56691004737039],[-57.310773107731066,-37.64627317905488],[-57.35037350373503,-37.698619074421245],[-57.361173611736106,-37.70706196077065],[-57.37557375573755,-37.713816269850184],[-57.45837458374584,-37.794867978804554],[-57.48717487174871,-37.83201667874197],[-57.51237512375123,-37.87254253321916],[-57.53037530375303,-37.91306838769634],[-57.53757537575375,-37.95528281944341],[-57.54117541175411,-37.99918582846036],[-57.54117541175411,-38.005940137539895],[-57.53037530375303,-38.01607160115919],[-57.53037530375303,-38.02282591023872],[-57.53037530375303,-38.02958021931825],[-57.5339753397534,-38.03971168293754],[-57.5339753397534,-38.04308883747731],[-57.5339753397534,-38.07179465106532],[-57.5339753397534,-38.083614691954494],[-57.55917559175592,-38.12076339189192],[-57.595175951759515,-38.15284636001969],[-57.68517685176852,-38.20519225538605],[-57.78957789577895,-38.252472418942766],[-57.86157861578616,-38.294686850689835],[-58.01998019980199,-38.36729567329479],[-58.05238052380524,-38.372361405104435],[-58.06678066780667,-38.377427136914086],[-58.11718117181171,-38.41288725958162],[-58.15678156781567,-38.42977303228045],[-58.27558275582756,-38.46861030948775],[-58.311583115831155,-38.48718465945646],[-58.32958329583295,-38.49225039126611],[-58.41958419584195,-38.50407043215529],[-58.49518495184951,-38.52433335939388],[-58.56718567185672,-38.558104904791534],[-58.72918729187292,-38.58849929564943],[-58.94158941589416,-38.645910922825436],[-58.99558995589956,-38.67630531368332],[-59.027990279902795,-38.68137104549297],[-59.06399063990639,-38.69319108638215],[-59.34839348393484,-38.73878267266898],[-59.63279632796328,-38.784374258955815],[-59.79839798397984,-38.83840873159206],[-59.819998199981995,-38.84009730886195],[-59.88839888398884,-38.83840873159206],[-60.34560345603455,-38.90595182238737],[-60.5040050400504,-38.927903326895844],[-60.65880658806587,-38.94310052232479],[-60.864008640086396,-38.975183490452565],[-60.97920979209792,-38.975183490452565],[-61.00441004410044,-38.96842918137303],[-61.01521015210152,-38.96842918137303],[-61.02961029610296,-38.970117758642914],[-61.03681036810367,-38.97349491318268],[-61.051210512105115,-38.98193779953209],[-61.14481144811448,-39.0005121495008],[-61.339213392133914,-38.98193779953209],[-61.429214292142916,-38.98193779953209],[-61.4940149401494,-38.99882357223092],[-61.504815048150476,-39.00557788131045],[-61.51921519215192,-39.012332190389984],[-61.6740167401674,-38.993757840421274],[-61.68841688416883,-38.98531495407186],[-61.70641706417064,-38.98024922226221],[-61.717217172171715,-38.970117758642914],[-61.72441724417244,-38.96842918137303],[-61.73161731617316,-38.96842918137303],[-61.73881738817387,-38.970117758642914],[-61.742417424174235,-38.97349491318268],[-61.74961749617496,-38.975183490452565],[-61.78921789217891,-38.98193779953209],[-61.83961839618395,-38.98024922226221],[-62.026820268202684,-38.93803479051514],[-62.06282062820628,-38.9228375950862],[-62.09162091620915,-38.9025746678476],[-62.11322113221132,-38.87218027698972],[-62.131221312213114,-38.83672015432218],[-62.14202142021419,-38.81814580435347],[-62.156421564215634,-38.80970291800406],[-62.31842318423183,-38.80126003165464],[-62.33642336423364,-38.79281714530523],[-62.358023580235795,-38.787751413495585],[-62.379623796237965,-38.79788287711488],[-62.39042390423904,-38.81476864981371],[-62.379623796237965,-38.824900113433],[-62.38682386823868,-38.84516304067159],[-62.36882368823687,-38.88231174060901],[-62.37242372423724,-38.89919751330784],[-62.36162361623616,-38.890754626958426],[-62.34722347223472,-38.889066049688545],[-62.33642336423364,-38.89750893603796],[-62.332823328233275,-38.909328976927135],[-62.332823328233275,-38.94816625413444],[-62.332823328233275,-38.95492056321397],[-62.3220232202322,-38.95998629502362],[-62.307623076230755,-38.95998629502362],[-62.27522275222752,-38.95492056321397],[-62.27522275222752,-38.95998629502362],[-62.282422824228235,-38.971806335912795],[-62.2860228602286,-38.98869210861162],[-62.282422824228235,-39.00220072677069],[-62.307623076230755,-39.012332190389984],[-62.31842318423183,-39.02246365400928],[-62.332823328233275,-39.057923776676816],[-62.34362343623435,-39.07818670391541],[-62.34722347223472,-39.0883181675347],[-62.354423544235445,-39.095072476614234],[-62.358023580235795,-39.10182678569377],[-62.35082350823508,-39.11026967204318],[-62.34362343623435,-39.118712558392595],[-62.340023400234,-39.127155444742],[-62.340023400234,-39.14404121744083],[-62.34362343623435,-39.16092699013966],[-62.34722347223472,-39.176124185568604],[-62.340023400234,-39.19469853553731],[-62.3220232202322,-39.20989573096626],[-62.27522275222752,-39.23691296728438],[-62.257222572225714,-39.25548731725309],[-62.27162271622716,-39.25548731725309],[-62.2860228602286,-39.25211016271332],[-62.31122311223112,-39.24197869909403],[-62.32562325623256,-39.25548731725309],[-62.31482314823148,-39.26561878087239],[-62.29322293222931,-39.27237308995192],[-62.27162271622716,-39.277438821761564],[-62.19242192421923,-39.279127399031445],[-62.16722167221671,-39.284193130841096],[-62.0880208802088,-39.31458752169898],[-62.044820448204476,-39.33822760347734],[-62.02322023220232,-39.365244839795466],[-62.02322023220232,-39.37706488068464],[-62.026820268202684,-39.388884921573826],[-62.0340203402034,-39.39901638519312],[-62.044820448204476,-39.407459271542535],[-62.055620556205554,-39.4108364260823],[-62.06642066420663,-39.40914784881242],[-62.070020700206996,-39.404082117002766],[-62.077220772207724,-39.400704962463],[-62.09882098820988,-39.39226207611359],[-62.156421564215634,-39.3517362216364],[-62.17442174421744,-39.33147329439781],[-62.178021780217804,-39.326407562588166],[-62.18522185221852,-39.31458752169898],[-62.18882188821888,-39.31121036715922],[-62.196021960219596,-39.30783321261946],[-62.19962199621996,-39.30783321261946],[-62.203222032220324,-39.31121036715922],[-62.21042210422104,-39.31121036715922],[-62.228422284222844,-39.30783321261946],[-62.282422824228235,-39.31121036715922],[-62.282422824228235,-39.31965325350863],[-62.278822788227885,-39.32978471712793],[-62.27162271622716,-39.33822760347734],[-62.26442264422644,-39.344981912556875],[-62.253622536225365,-39.34667048982676],[-62.23922239222392,-39.344981912556875],[-62.228422284222844,-39.34667048982676],[-62.22482224822248,-39.35511337617617],[-62.2140221402214,-39.37537630341476],[-62.196021960219596,-39.39732780792324],[-62.152821528215284,-39.427722198781126],[-62.13482134821348,-39.43616508513054],[-62.0880208802088,-39.446296548749835],[-62.06282062820628,-39.44798512601972],[-62.055620556205554,-39.451362280559486],[-62.052020520205204,-39.46149374417878],[-62.052020520205204,-39.47500236233784],[-62.055620556205554,-39.485133825957135],[-62.06642066420663,-39.49357671230655],[-62.07362073620736,-39.503708175925844],[-62.07362073620736,-39.57293984399104],[-62.080820808208074,-39.584759884880214],[-62.0880208802088,-39.5965799257694],[-62.11322113221132,-39.733354684629894],[-62.11322113221132,-39.821160702663796],[-62.120421204212036,-39.838046475362624],[-62.1240212402124,-39.838046475362624],[-62.160021600216,-39.854932248061445],[-62.16362163621636,-39.858309402601215],[-62.23922239222392,-39.84817793898192],[-62.26082260822608,-39.838046475362624],[-62.304023040230405,-39.8110292390445],[-62.307623076230755,-39.821160702663796],[-62.304023040230405,-39.83298074355297],[-62.282422824228235,-39.853243670791564],[-62.307623076230755,-39.86168655714098],[-62.31482314823148,-39.87012944349039],[-62.31122311223112,-39.88194948437957],[-62.31122311223112,-39.90727814342781],[-62.31482314823148,-39.92416391612664],[-62.329223292232925,-39.959624038794175],[-62.33642336423364,-39.99508416146171],[-62.354423544235445,-40.0356100159389],[-62.36162361623616,-40.04405290228831],[-62.36522365223652,-40.05418436590761],[-62.340023400234,-40.1132845703535],[-62.340023400234,-40.13354749759209],[-62.354423544235445,-40.17576192933916],[-62.358023580235795,-40.19264770203799],[-62.36882368823687,-40.2112220520067],[-62.39042390423904,-40.22135351562599],[-62.41562415624156,-40.228107824705525],[-62.433624336243355,-40.23655071105494],[-62.45162451624516,-40.250059329214],[-62.46962469624695,-40.266945101912825],[-62.484024840248395,-40.28720802915142],[-62.49122491224912,-40.30747095639001],[-62.484024840248395,-40.32266815181895],[-62.455224552245525,-40.3665711608359],[-62.44082440824408,-40.4256713652818],[-62.430024300243005,-40.434114251631215],[-62.430024300243005,-40.43917998344086],[-62.41562415624156,-40.46282006521922],[-62.404824048240485,-40.46788579702887],[-62.37242372423724,-40.476328683378284],[-62.340023400234,-40.493214456077105],[-62.329223292232925,-40.496591610616875],[-62.32562325623256,-40.50165734242652],[-62.32562325623256,-40.52529742420488],[-62.3220232202322,-40.53036315601453],[-62.307623076230755,-40.53880604236394],[-62.29682296822968,-40.555691815062765],[-62.282422824228235,-40.56413470141218],[-62.26442264422644,-40.552314660523],[-62.250022500225,-40.59621766953995],[-62.250022500225,-40.621546328588195],[-62.26802268022679,-40.63336636947737],[-62.31482314823148,-40.62661206039784],[-62.31842318423183,-40.62323490585808],[-62.33642336423364,-40.60466055588937],[-62.34722347223472,-40.599594824079716],[-62.34722347223472,-40.60803771042913],[-62.34362343623435,-40.616480596778544],[-62.340023400234,-40.62323490585808],[-62.33642336423364,-40.62998921493761],[-62.329223292232925,-40.640120678556904],[-62.329223292232925,-40.64856356490632],[-62.33642336423364,-40.65362929671596],[-62.340023400234,-40.65362929671596],[-62.329223292232925,-40.66882649214491],[-62.3220232202322,-40.67220364668467],[-62.24282242822427,-40.636743524017135],[-62.2140221402214,-40.62830063766772],[-62.181621816218154,-40.62661206039784],[-62.19242192421923,-40.63843210128702],[-62.228422284222844,-40.658695028525614],[-62.23562235622356,-40.67051506941479],[-62.23922239222392,-40.68571226484374],[-62.246422464224636,-40.71610665570162],[-62.250022500225,-40.73299242840045],[-62.253622536225365,-40.746501046559516],[-62.282422824228235,-40.79209263284635],[-62.31122311223112,-40.846127105482594],[-62.33642336423364,-40.87314434180072],[-62.48762487624876,-40.93224454624661],[-62.60642606426063,-40.989656173422624],[-62.67482674826748,-41.011607677931096],[-62.692826928269284,-41.02005056428051],[-62.710827108271076,-41.033559182439575],[-62.72882728827288,-41.0403134915191],[-62.75042750427504,-41.04369064605887],[-62.77562775627756,-41.04537922332875],[-62.80082800828008,-41.04200206878898],[-62.811628116281156,-41.04369064605887],[-62.822428224282234,-41.05551068694805],[-62.847628476284754,-41.072396459646875],[-62.86562865628656,-41.08590507780593],[-62.93402934029339,-41.099413695965],[-63.05283052830528,-41.14669385952171],[-63.099630996309955,-41.155136745871125],[-63.31563315633156,-41.14838243679159],[-63.358833588335884,-41.15851390041089],[-63.384033840338404,-41.16189105495066],[-63.48123481234812,-41.153448168601244],[-63.62163621636216,-41.16020247768078],[-63.780037800378,-41.15851390041089],[-63.82323823238232,-41.150071014061474],[-63.866438664386635,-41.13318524136265],[-63.967239672396715,-41.0605764187577],[-64.01044010440104,-41.04537922332875],[-64.05364053640535,-41.04537922332875],[-64.06444064440645,-41.04200206878898],[-64.06444064440645,-41.031870605169686],[-64.06084060840608,-41.02173914155039],[-64.05364053640535,-41.00654194612145],[-64.06084060840608,-40.99978763704192],[-64.0860408604086,-41.00485336885156],[-64.11124111241112,-41.01329625520098],[-64.13284132841328,-41.01667340974075],[-64.1760417604176,-41.00823052339133],[-64.41724417244173,-40.910293041738136],[-64.55044550445504,-40.88327580542001],[-64.64404644046441,-40.846127105482594],[-64.7340473404734,-40.83092991005365],[-64.78444784447844,-40.827552755513885],[-64.85284852848528,-40.83261848732353],[-64.88524885248852,-40.83092991005365],[-64.91044910449104,-40.824175600974115],[-64.91044910449104,-40.808978405545176],[-64.89244892448924,-40.79884694192587],[-64.86724867248672,-40.79209263284635],[-64.84924849248492,-40.79546978738611],[-64.85284852848528,-40.81235556008494],[-64.84564845648455,-40.81235556008494],[-64.83844838448384,-40.808978405545176],[-64.83484834848348,-40.80728982827529],[-64.83484834848348,-40.805601251005406],[-64.77364773647736,-40.805601251005406],[-64.75564755647557,-40.803912673735525],[-64.74484744847447,-40.79715836465599],[-64.7520475204752,-40.7768954374174],[-64.78444784447844,-40.76845255106799],[-64.79884798847988,-40.75832108744869],[-64.770047700477,-40.73636958294021],[-64.79524795247951,-40.722860964781155],[-64.88884888848888,-40.70597519208233],[-64.94644946449463,-40.71104092389198],[-64.98244982449825,-40.722860964781155],[-64.98964989649896,-40.72961527386069],[-64.97164971649715,-40.73130385113057],[-64.93924939249392,-40.72454954205104],[-64.92124921249211,-40.72961527386069],[-64.93564935649356,-40.74481246928963],[-64.9320493204932,-40.75325535563904],[-64.92124921249211,-40.760009664718574],[-64.91044910449104,-40.77014112833787],[-65.01125011250112,-40.766763973798106],[-65.02925029250292,-40.77351828287764],[-65.04365043650436,-40.785338323766815],[-65.12285122851227,-40.83430706459341],[-65.130051300513,-40.842749950942824],[-65.13365133651337,-40.85119283729224],[-65.13365133651337,-40.87314434180072],[-65.13725137251372,-40.88327580542001],[-65.15165151651516,-40.90185015538872],[-65.16245162451624,-40.923801659897194],[-65.17325173251731,-40.94575316440567],[-65.17685176851768,-40.969393246184026],[-65.17685176851768,-41.009919100661214],[-65.1480514805148,-41.18046540491937],[-65.10845108451085,-41.298665813811155],[-65.10485104851048,-41.32906020466904],[-65.07965079650796,-41.38647183184506],[-65.07245072450723,-41.41686622270294],[-65.06165061650616,-41.44894919083072],[-65.00765007650077,-41.49285219984767],[-64.98964989649896,-41.524935167975435],[-64.99324993249932,-41.55364098156344],[-65.00045000450004,-41.585723949691214],[-65.01485014850148,-41.61780691781899],[-65.02925029250292,-41.63806984505758],[-65.03645036450364,-41.6650870813757],[-65.02565025650256,-41.70054720404324],[-64.99684996849967,-41.75795883121925],[-65.00045000450004,-41.793418953886786],[-65.01845018450184,-41.835633385633855],[-65.0580505805058,-41.90824220823881],[-65.0760507605076,-41.95045663998588],[-65.06885068850688,-41.98591676265341],[-65.05445054450544,-42.01124542170165],[-65.0040500405004,-42.0939857079259],[-64.97164971649715,-42.12606867605368],[-64.93564935649356,-42.1530859123718],[-64.85644856448565,-42.19361176684899],[-64.84564845648455,-42.19530034411887],[-64.8240482404824,-42.19530034411887],[-64.80964809648096,-42.19530034411887],[-64.80244802448024,-42.19867749865863],[-64.7880478804788,-42.20880896227793],[-64.76284762847628,-42.21894042589722],[-64.73764737647376,-42.22738331224664],[-64.7160471604716,-42.229071889516526],[-64.66564665646656,-42.23076046678641],[-64.64404644046441,-42.23413762132617],[-64.6260462604626,-42.247646239485235],[-64.60444604446045,-42.25777770310453],[-64.57924579245793,-42.25608912583465],[-64.5540455404554,-42.247646239485235],[-64.53244532445324,-42.244269084945465],[-64.50364503645037,-42.245957662215346],[-64.48924489244892,-42.249334816755116],[-64.4820448204482,-42.25440054856476],[-64.46764467644677,-42.267909166723825],[-64.4640446404464,-42.27466347580336],[-64.49284492844929,-42.28479493942265],[-64.51084510845108,-42.29830355758171],[-64.58644586445864,-42.38104384380596],[-64.59364593645937,-42.391175307425264],[-64.60084600846008,-42.42156969828315],[-64.59724597245972,-42.430012584632564],[-64.56484564845648,-42.4367668937121],[-64.48564485644856,-42.431701161902446],[-64.4460444604446,-42.44689835733139],[-64.410044100441,-42.44689835733139],[-64.37764377643776,-42.44183262552174],[-64.35244352443524,-42.4367668937121],[-64.33084330843307,-42.426635430092794],[-64.31644316443165,-42.42325827555303],[-64.12924129241291,-42.43338973917233],[-64.1040410404104,-42.42832400736268],[-64.09324093240932,-42.411438234663855],[-64.08964089640897,-42.409749657393974],[-64.06084060840608,-42.387798152885495],[-64.05364053640535,-42.37935526653608],[-64.050040500405,-42.37260095745655],[-64.05364053640535,-42.35402660748784],[-64.05364053640535,-42.348960875678195],[-64.05724057240572,-42.343895143868544],[-64.06084060840608,-42.33714083478902],[-64.05724057240572,-42.33376368024925],[-64.05364053640535,-42.33207510297937],[-64.04644046440464,-42.328697948439604],[-64.04644046440464,-42.32194363936007],[-64.04644046440464,-42.310123598470895],[-64.05724057240572,-42.29154924850218],[-64.06084060840608,-42.28141778488288],[-64.0680406804068,-42.26959774399371],[-64.08964089640897,-42.262843434914174],[-64.13284132841328,-42.25777770310453],[-64.24444244442444,-42.262843434914174],[-64.29484294842948,-42.25777770310453],[-64.3380433804338,-42.23751477586593],[-64.30564305643055,-42.224006157706874],[-64.16164161641616,-42.20880896227793],[-64.03924039240393,-42.15815164418145],[-63.95643956439564,-42.1142486351645],[-63.870038700387,-42.08385424430661],[-63.80883808838088,-42.07034562614755],[-63.76923769237692,-42.07709993522708],[-63.73323733237332,-42.10580574881509],[-63.7080370803708,-42.13451156240309],[-63.67923679236792,-42.19530034411887],[-63.67563675636755,-42.2121861168177],[-63.66843668436684,-42.229071889516526],[-63.6540365403654,-42.242580507675584],[-63.62163621636216,-42.264532012184056],[-63.59643596435964,-42.29999213485159],[-63.589235892358914,-42.34051798932878],[-63.59643596435964,-42.44183262552174],[-63.578435784357836,-42.5921160025413],[-63.59283592835928,-42.632641857018484],[-63.6180361803618,-42.674856288765554],[-63.63243632436324,-42.71538214324274],[-63.62163621636216,-42.75084226591028],[-63.6720367203672,-42.801499584006756],[-63.736837368373685,-42.825139665785116],[-63.942039420394195,-42.85891121118277],[-64.00324003240031,-42.85891121118277],[-64.02484024840248,-42.862288365722534],[-64.07164071640716,-42.87917413842136],[-64.10764107641076,-42.884239870231006],[-64.140041400414,-42.867354097532186],[-64.16164161641616,-42.84709117029359],[-64.1940419404194,-42.80825389308629],[-64.21564215642157,-42.79136812038746],[-64.23364233642336,-42.78461381130793],[-64.25164251642516,-42.77448234768863],[-64.25164251642516,-42.75253084318016],[-64.24444244442444,-42.7288907614018],[-64.23724237242372,-42.71707072051262],[-64.21924219242192,-42.656281938796845],[-64.20844208442084,-42.64783905244743],[-64.1940419404194,-42.64446189790767],[-64.20124201242012,-42.636019011558254],[-64.22284222842228,-42.62082181612931],[-64.230042300423,-42.619133238859426],[-64.24444244442444,-42.614067507049775],[-64.2480424804248,-42.60900177524013],[-64.25524255242551,-42.60393604343048],[-64.25884258842588,-42.60055888889072],[-64.29484294842948,-42.58536169346177],[-64.30564305643055,-42.575230229842475],[-64.31284312843128,-42.554967302603885],[-64.32364323643236,-42.5431472617147],[-64.34524345243452,-42.531327220825524],[-64.38844388443884,-42.517818602666466],[-64.43884438844388,-42.50768713904717],[-64.54324543245433,-42.50599856177728],[-64.61524615246152,-42.51613002539658],[-64.64044640446404,-42.52119575720623],[-64.6620466204662,-42.531327220825524],[-64.68724687246872,-42.54652441625447],[-64.72324723247232,-42.553278725334],[-64.7340473404734,-42.55834445714365],[-64.74124741247412,-42.5634101889533],[-64.78444784447844,-42.60900177524013],[-64.80244802448024,-42.62082181612931],[-64.8240482404824,-42.62757612520884],[-64.87444874448744,-42.6309532797486],[-64.92124921249211,-42.6410847433679],[-64.94644946449463,-42.65459336152696],[-64.95724957249573,-42.66979055695591],[-64.9680496804968,-42.68667632965473],[-64.98244982449825,-42.70693925689333],[-65.01125011250112,-42.73226791594156],[-65.01845018450184,-42.74746511137051],[-65.01125011250112,-42.77110519314887],[-64.99684996849967,-42.78461381130793],[-64.95724957249573,-42.79305669765734],[-64.92484924849248,-42.81163104762605],[-64.860048600486,-42.826828243055],[-64.73764737647376,-42.87073125207195],[-64.70524705247053,-42.887617024770776],[-64.66564665646656,-42.9146342610889],[-64.64404644046441,-42.924765724708195],[-64.61524615246152,-42.93152003378773],[-64.590045900459,-42.93996292013714],[-64.57924579245793,-42.943340074676904],[-64.56484564845648,-42.943340074676904],[-64.53964539645396,-42.93827434286725],[-64.51444514445144,-42.93658576559737],[-64.50364503645037,-42.93658576559737],[-64.49644496444964,-42.93996292013714],[-64.47844478444784,-42.9534715382962],[-64.46044460444604,-42.96191442464561],[-64.45324453244532,-42.966980156455264],[-64.43524435244352,-42.97711162007456],[-64.40644406444063,-42.97542304280468],[-64.32724327243272,-42.95178296102632],[-64.31644316443165,-42.950094383756436],[-64.31644316443165,-42.95516011556608],[-64.3020430204302,-42.98048877461432],[-64.30564305643055,-42.99399739277339],[-64.32724327243272,-43.00919458820233],[-64.4460444604446,-43.068294792648224],[-64.56484564845648,-43.10375491531576],[-64.76644766447664,-43.14765792433271],[-64.94284942849428,-43.23884109690638],[-64.97524975249752,-43.26923548776426],[-64.99324993249932,-43.28274410592333],[-65.01485014850148,-43.294564146812505],[-65.03285032850329,-43.299629878622156],[-65.04365043650436,-43.32158138313063],[-65.04365043650436,-43.34015573309934],[-65.03645036450364,-43.357041505798165],[-65.03285032850329,-43.377304433036755],[-65.040050400504,-43.395878783005465],[-65.05445054450544,-43.40601024662476],[-65.07245072450723,-43.41614171024406],[-65.15525155251552,-43.47861906922972],[-65.19125191251912,-43.5292763873262],[-65.20925209252093,-43.54616216002503],[-65.26325263252632,-43.581622282692564],[-65.2740527405274,-43.586688014502215],[-65.31365313653136,-43.63903390986857],[-65.31725317253172,-43.64916537348787],[-65.33165331653316,-43.66267399164693],[-65.33525335253353,-43.67280545526623],[-65.33165331653316,-43.730217082442245],[-65.3280532805328,-43.747102855141065],[-65.30645306453064,-43.77918582326884],[-65.31365313653136,-43.7926944414279],[-65.31725317253172,-43.812957368666495],[-65.31725317253172,-43.831531718635205],[-65.31005310053101,-43.83997460498462],[-65.29565295652957,-43.84841749133403],[-65.28845288452884,-43.86530326403286],[-65.28125281252812,-43.88387761400157],[-65.2740527405274,-43.89907480943051],[-65.27045270452705,-43.912583427589574],[-65.2740527405274,-43.951420704796874],[-65.27045270452705,-43.96324074568605],[-65.25965259652597,-43.9683064774957],[-65.2380523805238,-43.96324074568605],[-65.22725227252272,-43.975060786575234],[-65.25245252452524,-43.98856940473429],[-65.24165241652416,-44.01052090924277],[-65.24165241652416,-44.0274066819416],[-65.22365223652235,-44.037538145560895],[-65.18765187651876,-44.035849568291006],[-65.21285212852128,-44.05104676371995],[-65.23085230852308,-44.06793253641878],[-65.2380523805238,-44.08481830911761],[-65.23445234452345,-44.098326927276666],[-65.23445234452345,-44.11352412270561],[-65.220052200522,-44.118589854515264],[-65.21645216452164,-44.13716420448397],[-65.23085230852308,-44.143918513563506],[-65.26325263252632,-44.14729566810327],[-65.28125281252812,-44.1540499771828],[-65.29925299252992,-44.16587001807198],[-65.31005310053101,-44.19964156346963],[-65.30645306453064,-44.224970222517875],[-65.30645306453064,-44.240167417946815],[-65.2920529205292,-44.25536461337576],[-65.28485284852849,-44.262118922455294],[-65.27765277652776,-44.265496076995056],[-65.26685266852668,-44.27225038607459],[-65.27045270452705,-44.282381849693884],[-65.27045270452705,-44.2908247360433],[-65.26685266852668,-44.30095619966259],[-65.25245252452524,-44.307710508742126],[-65.2560525605256,-44.31446481782165],[-65.25965259652597,-44.322907704171065],[-65.24525245252453,-44.33472774506025],[-65.23085230852308,-44.33472774506025],[-65.220052200522,-44.33810489960001],[-65.220052200522,-44.35667924956872],[-65.21645216452164,-44.366810713188016],[-65.22725227252272,-44.370187867727786],[-65.23445234452345,-44.3786307540772],[-65.23445234452345,-44.387073640426614],[-65.24885248852488,-44.387073640426614],[-65.25965259652597,-44.388762217696495],[-65.26685266852668,-44.39551652677603],[-65.27045270452705,-44.40564799039532],[-65.28125281252812,-44.407336567665205],[-65.28485284852849,-44.41240229947485],[-65.27765277652776,-44.4174680312845],[-65.27765277652776,-44.42253376309415],[-65.28845288452884,-44.42422234036403],[-65.28845288452884,-44.425910917633914],[-65.28125281252812,-44.42928807217368],[-65.28485284852849,-44.432665226713446],[-65.29565295652957,-44.43097664944356],[-65.30285302853028,-44.425910917633914],[-65.31005310053101,-44.427599494903795],[-65.31005310053101,-44.43435380398333],[-65.30645306453064,-44.43941953579297],[-65.31005310053101,-44.44448526760262],[-65.31725317253172,-44.446173844872504],[-65.32085320853209,-44.451239576682156],[-65.3280532805328,-44.45461673122192],[-65.33165331653316,-44.46137104030145],[-65.3280532805328,-44.46474819484121],[-65.31365313653136,-44.466436772111095],[-65.31005310053101,-44.471502503920746],[-65.31365313653136,-44.4765682357304],[-65.31725317253172,-44.48163396754004],[-65.32085320853209,-44.488388276619574],[-65.31365313653136,-44.49345400842922],[-65.30645306453064,-44.49176543115934],[-65.29925299252992,-44.49176543115934],[-65.29565295652957,-44.490076853889455],[-65.28125281252812,-44.49176543115934],[-65.28125281252812,-44.49851974023887],[-65.28845288452884,-44.50358547204852],[-65.28845288452884,-44.508651203858165],[-65.28125281252812,-44.51202835839793],[-65.27765277652776,-44.51709409020758],[-65.28845288452884,-44.51878266747746],[-65.30285302853028,-44.5154055129377],[-65.31005310053101,-44.51878266747746],[-65.31365313653136,-44.52384839928711],[-65.31365313653136,-44.530602708366644],[-65.32085320853209,-44.532291285636525],[-65.32445324453244,-44.527225553826874],[-65.32085320853209,-44.51709409020758],[-65.32445324453244,-44.508651203858165],[-65.33885338853388,-44.50696262658828],[-65.34965349653496,-44.508651203858165],[-65.35325353253532,-44.5154055129377],[-65.36045360453605,-44.5154055129377],[-65.3640536405364,-44.513716935667816],[-65.37485374853748,-44.5154055129377],[-65.37485374853748,-44.52047124474734],[-65.37125371253713,-44.528914131096755],[-65.36045360453605,-44.533979862906406],[-65.36045360453605,-44.54073417198594],[-65.37125371253713,-44.5441113265257],[-65.3820538205382,-44.54073417198594],[-65.38925389253892,-44.54579990379558],[-65.39285392853928,-44.552554212875116],[-65.38925389253892,-44.56099709922453],[-65.3820538205382,-44.56775140830406],[-65.37125371253713,-44.56775140830406],[-65.3640536405364,-44.572817140113706],[-65.35685356853568,-44.57450571738359],[-65.35685356853568,-44.57957144919324],[-65.36765367653676,-44.58632575827277],[-65.37485374853748,-44.58632575827277],[-65.37485374853748,-44.576194294653476],[-65.3820538205382,-44.576194294653476],[-65.38925389253892,-44.58126002646312],[-65.39285392853928,-44.58632575827277],[-65.39645396453965,-44.594768644622185],[-65.40005400054,-44.589702912812534],[-65.40725407254072,-44.58632575827277],[-65.41085410854109,-44.576194294653476],[-65.4180541805418,-44.572817140113706],[-65.42165421654217,-44.57450571738359],[-65.42525425254252,-44.572817140113706],[-65.42885428854288,-44.56943998557394],[-65.43965439654396,-44.572817140113706],[-65.45045450454504,-44.576194294653476],[-65.46125461254613,-44.576194294653476],[-65.46485464854648,-44.582948603733],[-65.46485464854648,-44.591391490082415],[-65.46125461254613,-44.60152295370171],[-65.47565475654756,-44.59983437643183],[-65.47925479254792,-44.60490010824148],[-65.50085500855008,-44.60490010824148],[-65.5440554405544,-44.62009730367042],[-65.580055800558,-44.64711453998854],[-65.5980559805598,-44.6420488081789],[-65.64485644856448,-44.66737746722714],[-65.65925659256592,-44.68257466265608],[-65.670056700567,-44.69777185808503],[-65.68085680856808,-44.70452616716456],[-65.68445684456844,-44.71296905351397],[-65.69525695256952,-44.734920558022445],[-65.69165691656916,-44.76193779434057],[-65.69525695256952,-44.778823567039396],[-65.69885698856989,-44.79233218519846],[-65.7060570605706,-44.800775071547875],[-65.71685716857168,-44.80415222608764],[-65.72765727657276,-44.80921795789729],[-65.72765727657276,-44.82948088513588],[-65.71685716857168,-44.83623519421541],[-65.7240572405724,-44.83792377148529],[-65.72765727657276,-44.84805523510459],[-65.71685716857168,-44.87000673961306],[-65.69885698856989,-44.87338389415283],[-65.68445684456844,-44.87338389415283],[-65.68085680856808,-44.878449625962475],[-65.67365673656737,-44.878449625962475],[-65.670056700567,-44.883515357772126],[-65.66645666456664,-44.89026966685166],[-65.64845648456485,-44.88858108958177],[-65.64845648456485,-44.89026966685166],[-65.6340563405634,-44.88520393504201],[-65.6160561605616,-44.88858108958177],[-65.5980559805598,-44.898712553201065],[-65.57285572855729,-44.8953353986613],[-65.55125551255512,-44.91053259409025],[-65.53685536855369,-44.91559832589989],[-65.52245522455225,-44.93248409859872],[-65.53325533255332,-44.9341726758686],[-65.54765547655477,-44.945992716757786],[-65.55845558455584,-44.95105844856743],[-65.56565565655656,-44.95612418037708],[-65.57285572855729,-44.961189912186725],[-65.58725587255873,-44.95781275764696],[-65.59445594455944,-44.96625564399638],[-65.60525605256052,-44.97300995307591],[-65.60165601656016,-44.984829993965086],[-65.58725587255873,-44.9932728803145],[-65.58365583655836,-45.006781498473565],[-65.60165601656016,-45.005092921203676],[-65.61245612456125,-44.99833861212415],[-65.62325623256233,-45.006781498473565],[-65.6160561605616,-45.01353580755309],[-65.60165601656016,-45.027044425712155],[-65.64485644856448,-45.047307352950746],[-65.66285662856629,-45.042241621141095],[-65.68445684456844,-45.04393019841098],[-65.69165691656916,-45.06250454837969],[-65.73485734857348,-45.03548731206157],[-65.75285752857528,-45.023667271172386],[-65.78525785257852,-45.027044425712155],[-65.80325803258032,-45.027044425712155],[-65.81765817658176,-45.04055304387121],[-65.8320583205832,-45.03548731206157],[-65.82845828458284,-45.01691296209286],[-65.84285842858428,-45.003404343933795],[-65.85725857258572,-45.005092921203676],[-65.87165871658716,-45.003404343933795],[-65.88965889658895,-45.008470075743446],[-65.88965889658895,-45.027044425712155],[-65.8860588605886,-45.03886446660133],[-65.90765907659076,-45.03886446660133],[-65.93645936459365,-45.04899593022063],[-65.96525965259652,-45.042241621141095],[-65.98685986859869,-45.021978693902504],[-66.01566015660156,-45.003404343933795],[-66.04446044460444,-45.003404343933795],[-66.10926109261092,-44.98820714850485],[-66.16686166861668,-44.99665003485426],[-66.19926199261992,-44.9932728803145],[-66.22086220862208,-45.01522438482297],[-66.26046260462604,-45.03886446660133],[-66.2820628206282,-45.05743881657004],[-66.30006300063,-45.047307352950746],[-66.31446314463145,-45.04393019841098],[-66.3360633606336,-45.04393019841098],[-66.35046350463504,-45.04393019841098],[-66.36846368463684,-45.047307352950746],[-66.3720637206372,-45.05575023930016],[-66.39366393663936,-45.0523730847604],[-66.40446404464045,-45.064193125649574],[-66.46926469264692,-45.07770174380863],[-66.4980649806498,-45.087833207427934],[-66.52326523265232,-45.109784711936406],[-66.52686526865268,-45.13173621644488],[-66.47646476464764,-45.14186768006418],[-66.45486454864549,-45.148621989143706],[-66.47286472864728,-45.168884916382304],[-66.570065700657,-45.14186768006418],[-66.5880658806588,-45.14017910279429],[-66.5880658806588,-45.167196339112415],[-66.54486544865448,-45.17395064819195],[-66.52326523265232,-45.19252499816066],[-66.52326523265232,-45.21616507993902],[-66.55926559265592,-45.214476502669136],[-66.67086670866708,-45.214476502669136],[-66.7860678606786,-45.229673698098075],[-66.86886868868689,-45.23642800717761],[-66.930069300693,-45.2566909344162],[-66.96246962469624,-45.276953861654796],[-67.00927009270092,-45.30397109797292],[-67.06327063270632,-45.34956268425975],[-67.09567095670957,-45.391777116006814],[-67.13527135271352,-45.42554866140447],[-67.16767167671676,-45.46100878407201],[-67.20007200072,-45.501534638549195],[-67.22167221672217,-45.52855187486732],[-67.26847268472685,-45.560634842995086],[-67.29367293672937,-45.58934065658309],[-67.30807308073081,-45.601160697472274],[-67.33327333273333,-45.61298073836145],[-67.3440734407344,-45.63324366560004],[-67.35487354873548,-45.65857232464828],[-67.35487354873548,-45.69065529277606],[-67.35487354873548,-45.705852488205],[-67.33687336873368,-45.71936110636406],[-67.34047340473404,-45.72949256998336],[-67.34767347673477,-45.734558301793],[-67.36567365673656,-45.73624687906289],[-67.36567365673656,-45.74975549722195],[-67.36927369273693,-45.761575538111124],[-67.36927369273693,-45.76832984719066],[-67.3620736207362,-45.77677273354007],[-67.36567365673656,-45.786904197159366],[-67.37647376473764,-45.7936585062389],[-67.39807398073981,-45.790281351699136],[-67.42687426874268,-45.807167124397964],[-67.44127441274412,-45.81729858801726],[-67.45567455674556,-45.82574147436667],[-67.47367473674737,-45.86289017430409],[-67.5060750607506,-45.87808736973303],[-67.51687516875168,-45.89666171970174],[-67.53487534875349,-45.91692464694034],[-67.54927549275493,-45.933810419639165],[-67.53487534875349,-45.95745050141752],[-67.55647556475564,-45.967581965036814],[-67.5780757807578,-45.992910624085056],[-67.58167581675816,-45.99966493316459],[-67.6140761407614,-46.072273755769544],[-67.62127621276213,-46.09929099208767],[-67.62487624876249,-46.12968538294555],[-67.62127621276213,-46.16345692834321],[-67.57447574475745,-46.322183191712185],[-67.5420754207542,-46.40154632339667],[-67.51687516875168,-46.43869502333409],[-67.42327423274233,-46.567026895845174],[-67.36567365673656,-46.605864173052474],[-67.33687336873368,-46.62443852302118],[-67.28647286472864,-46.63625856391037],[-67.25767257672577,-46.6430128729899],[-67.24687246872469,-46.651455759339306],[-67.23247232472325,-46.671718686577904],[-67.19287192871928,-46.69029303654661],[-67.15327153271532,-46.697047345626146],[-67.13167131671317,-46.70717880924544],[-67.11367113671136,-46.735884622833446],[-67.08127081270813,-46.75783612734192],[-67.04887048870488,-46.794984827279336],[-67.03447034470344,-46.8186249090577],[-67.02367023670236,-46.82200206359746],[-67.00927009270092,-46.82200206359746],[-66.99846998469984,-46.82537921813723],[-66.99126991269912,-46.83888783629629],[-66.9840698406984,-46.84226499083606],[-66.97326973269732,-46.84901929991558],[-66.88326883268832,-46.918250967980775],[-66.82566825668256,-46.980728326966435],[-66.7860678606786,-47.00605698601468],[-66.69966699666996,-47.038139954142444],[-66.660066600666,-47.03645137687256],[-66.62766627666277,-47.05164857230151],[-66.5880658806588,-47.041517108682214],[-66.56646566465665,-47.04827141776175],[-66.54846548465484,-47.04658284049186],[-66.52686526865268,-47.041517108682214],[-66.50526505265053,-47.041517108682214],[-66.49086490864909,-47.04489426322198],[-66.45846458464584,-47.05840288138104],[-66.44046440464405,-47.061780035920805],[-66.38646386463864,-47.05840288138104],[-66.36846368463684,-47.061780035920805],[-66.35766357663576,-47.066845767730456],[-66.30366303663037,-47.07360007680998],[-66.19926199261992,-47.08879727223893],[-66.0840608406084,-47.082042963159395],[-66.030060300603,-47.066845767730456],[-66.00486004860048,-47.063468613190686],[-65.97965979659796,-47.066845767730456],[-65.91845918459184,-47.09386300404858],[-65.88245882458824,-47.09724015858834],[-65.85725857258572,-47.11412593128717],[-65.84645846458464,-47.13945459033541],[-65.82485824858249,-47.15296320849447],[-65.80685806858068,-47.168160403923416],[-65.7960579605796,-47.17491471300295],[-65.74565745657456,-47.20362052659095],[-65.75645756457564,-47.223883453829544],[-65.73845738457385,-47.27791792646579],[-65.7240572405724,-47.310000894593564],[-65.71325713257133,-47.34208386272133],[-65.72765727657276,-47.40962695351664],[-65.73485734857348,-47.50925301243972],[-65.760057600576,-47.56835321688561],[-65.79245792457924,-47.63251915314116],[-65.84645846458464,-47.742276675683534],[-65.86445864458643,-47.75071956203295],[-65.89325893258932,-47.75071956203295],[-65.9220592205922,-47.74734240749318],[-65.97245972459724,-47.74058809841365],[-66.03366033660336,-47.738899521143765],[-66.06246062460625,-47.757473871112474],[-66.09486094860948,-47.78786826197037],[-66.12366123661236,-47.79968830285954],[-66.14886148861488,-47.806442611939076],[-66.210062100621,-47.82839411644755],[-66.27486274862748,-47.85878850730544],[-66.29646296462964,-47.863854239115085],[-66.3720637206372,-47.86047708457532],[-66.390063900639,-47.863854239115085],[-66.33966339663397,-47.87567428000427],[-66.30006300063,-47.8722971254645],[-66.22446224462244,-47.84190273460661],[-66.19926199261992,-47.83852558006685],[-66.14526145261452,-47.82839411644755],[-66.0480604806048,-47.79124541651013],[-66.02286022860228,-47.77098248927154],[-65.97245972459724,-47.764228180192006],[-65.92925929259292,-47.767605334731776],[-65.90045900459005,-47.76929391200166],[-65.8860588605886,-47.7844911074306],[-65.8680586805868,-47.83514842552708],[-65.85365853658536,-47.87905143454403],[-65.82845828458284,-47.89931436178262],[-65.78885788857887,-47.90438009359227],[-65.760057600576,-47.911134402671806],[-65.78885788857887,-47.924643020830864],[-65.7960579605796,-47.93646306172004],[-65.77445774457745,-47.94321737079957],[-65.76365763657637,-47.948283102609224],[-65.78525785257852,-47.95334883441887],[-65.8140581405814,-47.9601031434984],[-65.83565835658356,-47.963480298038164],[-65.84645846458464,-47.944905948069454],[-65.90045900459005,-47.93308590718028],[-65.92565925659257,-47.94152879352969],[-65.94725947259472,-47.96179172076828],[-65.95085950859509,-47.98036607073699],[-65.92925929259292,-47.99049753435629],[-65.93645936459365,-48.01582619340453],[-65.940059400594,-48.02089192521418],[-65.94725947259472,-48.025957657023824],[-65.94725947259472,-48.03777769791301],[-65.96885968859688,-48.0479091615323],[-65.96525965259652,-48.05635204788172],[-65.93645936459365,-48.071549243310656],[-65.9040590405904,-48.07830355239019],[-65.89685896858968,-48.09518932508902],[-65.91845918459184,-48.113763675057726],[-65.94365943659436,-48.11714082959749],[-65.95445954459544,-48.10532078870831],[-65.97245972459724,-48.10025505689867],[-65.99045990459904,-48.10700936597819],[-66.01566015660156,-48.10700936597819],[-66.06246062460625,-48.11038652051796],[-66.09126091260912,-48.11545225232761],[-66.10926109261092,-48.12389513867702],[-66.13086130861308,-48.135715179566205],[-66.14166141661416,-48.16104383861444],[-66.15246152461525,-48.174552456773505],[-66.15966159661596,-48.1846839203928],[-66.20286202862029,-48.198192538551865],[-66.23886238862389,-48.20832400217116],[-66.2640626406264,-48.24209554756881],[-66.30006300063,-48.25222701118811],[-66.3180631806318,-48.26404705207729],[-66.3360633606336,-48.28599855658576],[-66.35406354063541,-48.3214586792533],[-66.33966339663397,-48.35354164738107],[-66.35406354063541,-48.356918801920834],[-66.38646386463864,-48.35185307011119],[-66.42246422464224,-48.3501644928413],[-66.44766447664476,-48.3501644928413],[-66.45126451264512,-48.35523022465095],[-66.46926469264692,-48.36536168827025],[-66.4620646206462,-48.37887030642931],[-66.46926469264692,-48.400821810937785],[-66.50166501665016,-48.41433042909685],[-66.54486544865448,-48.424461892716145],[-66.57726577265773,-48.424461892716145],[-66.64926649266492,-48.43121620179567],[-66.69246692466925,-48.45485628357403],[-66.750067500675,-48.47511921081262],[-66.77166771667716,-48.49369356078133],[-66.80766807668077,-48.51226791075004],[-66.840068400684,-48.53928514706816],[-66.85806858068581,-48.54772803341758],[-66.86166861668616,-48.569679537926056],[-66.86526865268652,-48.58994246516465],[-66.89046890468904,-48.59669677424418],[-66.91566915669156,-48.60345108332371],[-66.98766987669876,-48.611893969673126],[-67.04527045270453,-48.64397693780089],[-67.11367113671136,-48.67437132865878],[-67.13527135271352,-48.692945678627495],[-67.14607146071461,-48.74191441945409],[-67.18567185671856,-48.772308810311976],[-67.19287192871928,-48.79594889209034],[-67.20007200072,-48.81790039659881],[-67.24687246872469,-48.84491763291693],[-67.32247322473225,-48.86686913742541],[-67.40527405274052,-48.90401783736283],[-67.55647556475564,-49.015463937175085],[-67.57447574475745,-49.04754690530286],[-67.58887588875888,-49.08469560524028],[-67.5960759607596,-49.10664710974876],[-67.6140761407614,-49.11846715063793],[-67.6320763207632,-49.13028719152711],[-67.63567635676357,-49.15561585057535],[-67.6140761407614,-49.160681582385],[-67.61047610476105,-49.17756735508382],[-67.62487624876249,-49.184321664163356],[-67.6320763207632,-49.19107597324289],[-67.65007650076501,-49.19614170505254],[-67.65727657276572,-49.20458459140195],[-67.66087660876609,-49.21471605502125],[-67.6680766807668,-49.224847518640544],[-67.67527675276753,-49.2484876004189],[-67.7040770407704,-49.26706195038761],[-67.73287732877328,-49.27550483673702],[-67.7220772207722,-49.283947723086435],[-67.71127711277113,-49.29407918670573],[-67.7040770407704,-49.30421065032503],[-67.71127711277113,-49.31603069121421],[-67.72567725677257,-49.31771926848409],[-67.740077400774,-49.327850732103386],[-67.7580775807758,-49.33460504118292],[-67.74367743677436,-49.34304792753233],[-67.74727747277473,-49.35486796842151],[-67.77607776077761,-49.3751308956601],[-67.830078300783,-49.38019662746975],[-67.83367833678336,-49.3852623592794],[-67.81567815678156,-49.39201666835893],[-67.7940779407794,-49.39201666835893],[-67.72567725677257,-49.390328091089046],[-67.69687696876969,-49.37175374112034],[-67.68247682476824,-49.3362936184528],[-67.68607686076861,-49.30927638213468],[-67.6680766807668,-49.29576776397562],[-67.66447664476644,-49.26706195038761],[-67.64647646476465,-49.25186475495867],[-67.63567635676357,-49.246799023149016],[-67.62127621276213,-49.250176177688786],[-67.60687606876068,-49.265373373117725],[-67.60687606876068,-49.283947723086435],[-67.61047610476105,-49.32278500029374],[-67.65367653676536,-49.37681947292999],[-67.65727657276572,-49.3953938228987],[-67.67527675276753,-49.46124833642412],[-67.70047700477005,-49.533857159029075],[-67.70767707677076,-49.56256297261708],[-67.70767707677076,-49.60646598163403],[-67.71487714877148,-49.63010606341239],[-67.71847718477184,-49.67063191788957],[-67.71127711277113,-49.68582911331852],[-67.73287732877328,-49.782078017701835],[-67.76167761677617,-49.84793253122726],[-67.77247772477725,-49.87157261300562],[-67.78687786877869,-49.89183554024421],[-67.7940779407794,-49.90534415840327],[-67.79767797677977,-49.91040989021292],[-67.83367833678336,-49.95431289922987],[-67.89487894878948,-49.99652733097694],[-67.98127981279812,-50.04380749453365],[-68.07488074880749,-50.0877105035506],[-68.16848168481684,-50.11472773986873],[-68.25848258482584,-50.12485920348802],[-68.32688326883269,-50.11979347167837],[-68.34128341283413,-50.11810489440849],[-68.35208352083521,-50.11135058532896],[-68.37728377283773,-50.08264477174095],[-68.39888398883988,-50.07589046266142],[-68.42048420484204,-50.050561803613185],[-68.43488434884348,-50.031987453644476],[-68.44568445684456,-50.004970217326346],[-68.46368463684637,-49.97964155827811],[-68.48528485284852,-49.95937863103951],[-68.52128521285212,-49.940804281070804],[-68.54288542885429,-49.91547562202257],[-68.550085500855,-49.89352411751409],[-68.56808568085681,-49.85806399484655],[-68.59328593285933,-49.8344239130682],[-68.640086400864,-49.7753237086223],[-68.65448654486545,-49.758437935923475],[-68.67248672486724,-49.7466178950343],[-68.69408694086941,-49.734797854145114],[-68.71928719287193,-49.72973212233547],[-68.74088740887409,-49.72804354506559],[-68.6760867608676,-49.75506078138371],[-68.66528665286653,-49.76688082227289],[-68.6580865808658,-49.782078017701835],[-68.62928629286293,-49.81753814036937],[-68.59688596885968,-49.85806399484655],[-68.57888578885789,-49.903655581133386],[-68.57888578885789,-49.927295662911746],[-68.59328593285933,-49.93742712653104],[-68.62568625686256,-49.95262432195999],[-68.65088650886509,-49.95769005376963],[-68.6760867608676,-49.96782151738893],[-68.70128701287013,-49.9711986719287],[-68.74448744487445,-49.964444362849164],[-68.8020880208802,-49.96782151738893],[-68.8740887408874,-49.96275578557928],[-68.91368913689136,-49.98133013554799],[-68.94608946089461,-49.99146159916729],[-68.97488974889748,-49.99146159916729],[-69.01449014490144,-50.008347371866115],[-69.01449014490144,-50.01510168094565],[-69.00729007290073,-50.01510168094565],[-68.99648996489965,-50.01510168094565],[-68.99288992889929,-50.01510168094565],[-68.97128971289713,-50.01341310367576],[-68.91368913689136,-50.01172452640588],[-68.88128881288813,-49.99315017643717],[-68.85608856088561,-49.983018712817874],[-68.84168841688417,-49.98133013554799],[-68.82728827288273,-49.98133013554799],[-68.8020880208802,-49.984707290087755],[-68.76968769687697,-49.98133013554799],[-68.71568715687157,-49.989773021897406],[-68.67248672486724,-49.99483875370705],[-68.640086400864,-49.984707290087755],[-68.60048600486004,-49.97288724919858],[-68.58248582485824,-49.969510094658816],[-68.56808568085681,-49.97457582646846],[-68.56088560885608,-49.97964155827811],[-68.55368553685537,-49.9999044855167],[-68.5320853208532,-50.008347371866115],[-68.51768517685177,-50.01510168094565],[-68.51768517685177,-50.02523314456494],[-68.51768517685177,-50.04043033999388],[-68.51048510485104,-50.06069326723248],[-68.49248492484925,-50.08095619447107],[-68.46728467284673,-50.09953054443978],[-68.44568445684456,-50.109662008059075],[-68.42048420484204,-50.11135058532896],[-68.40248402484025,-50.11641631713861],[-68.39168391683917,-50.128236358027785],[-68.36288362883629,-50.13499066710732],[-68.34848348483484,-50.148499285266375],[-68.36288362883629,-50.16876221250497],[-68.39528395283952,-50.17720509885439],[-68.41688416884169,-50.192402294283326],[-68.43848438484385,-50.20084518063274],[-68.61488614886149,-50.251502498729224],[-68.73728737287372,-50.292028353206405],[-68.76608766087661,-50.28865119866664],[-68.79128791287913,-50.30384839409559],[-68.79488794887949,-50.31735701225465],[-68.82728827288273,-50.32411132133418],[-68.84168841688417,-50.32579989860406],[-68.85608856088561,-50.3224227440643],[-68.87768877688777,-50.33086563041371],[-68.88128881288813,-50.352817134922184],[-68.89928899288992,-50.3612600212716],[-68.94608946089461,-50.40516303028855],[-68.97488974889748,-50.42880311206691],[-68.98928989289892,-50.45075461657538],[-69.01089010890108,-50.477771852893504],[-69.04329043290433,-50.51492055283092],[-69.06129061290612,-50.541937789149046],[-69.07569075690756,-50.560512139117755],[-69.07929079290793,-50.604415148134706],[-69.12249122491224,-50.68040112527943],[-69.14409144091441,-50.71923840248673],[-69.15129151291512,-50.74287848426509],[-69.14769147691476,-50.75807567969403],[-69.13329133291333,-50.78340433874227],[-69.1260912609126,-50.847570274997814],[-69.12969129691297,-50.87796466585571],[-69.13689136891368,-50.90329332490394],[-69.15849158491585,-50.915113365793125],[-69.20529205292053,-50.935376293031716],[-69.25929259292593,-50.974213570239016],[-69.34929349293492,-51.01811657925597],[-69.38889388893888,-51.04851097011386],[-69.41049410494105,-51.0839710927814],[-69.38169381693817,-51.06539674281268],[-69.3240932409324,-51.03162519741503],[-69.2880928809288,-51.016428001986085],[-69.22689226892268,-50.992787920207725],[-69.1980919809198,-50.98096787931855],[-69.16929169291693,-50.977590724778786],[-69.15849158491585,-50.996165074747495],[-69.15849158491585,-51.016428001986085],[-69.14409144091441,-51.056953856463274],[-69.12249122491224,-51.13462841087787],[-69.10809108091081,-51.183597151704475],[-69.10449104491045,-51.21568011983224],[-69.08649086490864,-51.23594304707083],[-69.07929079290793,-51.2781574788179],[-69.06129061290612,-51.322060487834854],[-68.9640896408964,-51.50104967844242],[-68.95688956889569,-51.52300118295089],[-68.95328953289533,-51.54326411018949],[-68.9640896408964,-51.56014988288831],[-68.98208982089821,-51.571969923777495],[-69.0000900009,-51.568592769237725],[-69.01809018090181,-51.56352703742808],[-69.04689046890468,-51.56352703742808],[-69.06849068490685,-51.571969923777495],[-69.10089100891008,-51.59898716009562],[-69.11889118891189,-51.60405289190526],[-69.14769147691476,-51.60405289190526],[-69.17289172891728,-51.59898716009562],[-69.28449284492845,-51.56014988288831],[-69.36009360093601,-51.55508415107867],[-69.3780937809378,-51.55677272834855],[-69.38889388893888,-51.56014988288831],[-69.41769417694177,-51.57028134650761],[-69.47529475294752,-51.57534707831726],[-69.50049500495004,-51.58041281012691],[-69.54729547295473,-51.60574146917515],[-69.5940959409594,-51.615872932794446],[-69.61569615696156,-51.62600439641374],[-69.39969399693996,-51.592232851016085],[-69.35289352893528,-51.58885569647632],[-69.3060930609306,-51.59392142828597],[-69.20169201692016,-51.62093866460409],[-69.15849158491585,-51.634447282763155],[-69.16569165691656,-51.65133305546198],[-69.21969219692197,-51.68003886904999],[-69.21969219692197,-51.68679317812952],[-69.1980919809198,-51.68679317812952],[-69.180091800918,-51.68172744631987],[-69.09729097290972,-51.653021632731864],[-69.0540905409054,-51.629381550953504],[-69.02889028890289,-51.614184355524564],[-69.0000900009,-51.610807200984794],[-68.97488974889748,-51.61925008733421],[-68.93528935289352,-51.64626732365233],[-68.8740887408874,-51.759402000734475],[-68.82728827288273,-51.803305009751426],[-68.75168751687517,-51.91475110956368],[-68.68328683286832,-52.004245704867465],[-68.52128521285212,-52.16297196823644],[-68.39888398883988,-52.274418068048696],[-68.36648366483665,-52.30650103617647],[-68.35568355683556,-52.32507538614518],[-68.36288362883629,-52.33858400430424],[-68.39168391683917,-52.35715835427295],[-68.4060840608406,-52.37066697243201],[-68.41688416884169,-52.38586416786095],[-68.43488434884348,-52.3909298996706],[-68.44208442084421,-52.379109858781426],[-68.43488434884348,-52.36560124062236],[-68.44928449284492,-52.34702689065365],[-68.47088470884708,-52.33689542703436],[-68.56448564485645,-52.34027258157412],[-68.7120871208712,-52.30650103617647],[-68.78048780487805,-52.313255345255996],[-68.82008820088201,-52.3031238816367],[-68.89928899288992,-52.3031238816367],[-68.94608946089461,-52.287926686207754],[-68.9640896408964,-52.28454953166799],[-69.00729007290073,-52.267663758969164],[-69.08649086490864,-52.2254493272221],[-69.12969129691297,-52.20856355452327],[-69.18369183691837,-52.19843209090397],[-69.23409234092341,-52.20349782271362],[-69.34569345693457,-52.24402367719081],[-69.40329403294032,-52.24571225446069],[-69.44289442894429,-52.252466563540224],[-69.450094500945,-52.26090944988963],[-69.47169471694717,-52.272729490778815],[-69.47889478894788,-52.28454953166799],[-69.48249482494825,-52.291303840747524],[-69.48969489694896,-52.36560124062236],[-69.49689496894969,-52.38586416786095],[-69.51849518495185,-52.392618476940484],[-69.54369543695437,-52.39937278602002],[-69.55449554495544,-52.41456998144896],[-69.55809558095581,-52.434832908687554],[-69.56169561695617,-52.45340725865626],[-69.5760957609576,-52.46860445408521],[-69.61569615696156,-52.4888673813238],[-69.63369633696337,-52.498998844943095],[-69.65529655296552,-52.51588461764192],[-69.67329673296733,-52.53108181307087],[-69.71649716497164,-52.536147544880514],[-69.78129781297812,-52.522638926721456],[-69.81369813698137,-52.50575315402263],[-69.8280982809828,-52.49224453586356],[-69.8460984609846,-52.48717880405392],[-69.87129871298713,-52.49562169040333],[-69.91089910899109,-52.51081888583227],[-69.94689946899469,-52.53108181307087],[-70.08370083700837,-52.57498482208781],[-70.15210152101521,-52.586804862977],[-70.18090180901808,-52.603690635675825],[-70.19890198901989,-52.622264985644534],[-70.2061020610206,-52.65097079923254],[-70.2421024210242,-52.63915075834336],[-70.27450274502745,-52.63915075834336],[-70.29250292502924,-52.63408502653371],[-70.32130321303212,-52.637462181073474],[-70.3321033210332,-52.644216490153006],[-70.3321033210332,-52.65941368558195],[-70.36450364503645,-52.65603653104218],[-70.38250382503824,-52.67123372647113],[-70.51930519305192,-52.723579621837494],[-70.5481054810548,-52.72189104456761],[-70.5481054810548,-52.703316694598904],[-70.52290522905228,-52.68811949916996],[-70.50130501305013,-52.67798803555066],[-70.50490504905049,-52.661102262851834],[-70.52650526505265,-52.65941368558195],[-70.54450544505444,-52.666167994661485],[-70.56970569705696,-52.66954514920125],[-70.5841058410584,-52.67123372647113],[-70.59130591305913,-52.68811949916996],[-70.56970569705696,-52.703316694598904],[-70.58770587705877,-52.7134481582182],[-70.60930609306092,-52.705005271868785],[-70.63450634506344,-52.70838242640855],[-70.65970659706596,-52.72020246729773],[-70.68490684906848,-52.725268199107376],[-70.69930699306992,-52.73877681726644],[-70.71730717307173,-52.73708823999655],[-70.71730717307173,-52.723579621837494],[-70.72450724507245,-52.705005271868785],[-70.73530735307352,-52.701628117329015],[-70.7461074610746,-52.70838242640855],[-70.75330753307533,-52.71682531275796],[-70.76410764107641,-52.72189104456761],[-70.80730807308073,-52.72695677637726],[-70.82170821708216,-52.72864535364714],[-70.8361083610836,-52.725268199107376],[-70.84330843308433,-52.72020246729773],[-70.85050850508505,-52.71851389002784],[-70.86490864908649,-52.72189104456761],[-70.85770857708577,-52.73371108545679],[-70.84690846908468,-52.73708823999655],[-70.8361083610836,-52.73877681726644],[-70.80730807308073,-52.747219703615855],[-70.80370803708037,-52.748908280885736],[-70.80010800108,-52.75397401269538],[-70.80370803708037,-52.765794053584564],[-70.80370803708037,-52.76917120812433],[-70.79290792907929,-52.77592551720386],[-70.78570785707856,-52.77592551720386],[-70.77490774907749,-52.77423693993398],[-70.74250742507425,-52.77761409447374],[-70.73890738907389,-52.78436840355327],[-70.7461074610746,-52.79787702171233],[-70.7569075690757,-52.8012541762521],[-70.79650796507964,-52.811385639871396],[-70.80730807308073,-52.81645137168104],[-70.81090810908108,-52.82151710349069],[-70.82170821708216,-52.83840287618952],[-70.82530825308253,-52.84684576253893],[-70.83250832508325,-52.86542011250764],[-70.8361083610836,-52.87217442158717],[-70.83970839708397,-52.90425738971494],[-70.86130861308612,-52.90256881244506],[-70.87930879308793,-52.90088023517518],[-70.89010890108901,-52.91438885333424],[-70.86130861308612,-52.91607743060412],[-70.8361083610836,-52.92114316241377],[-70.81090810908108,-52.9278974714933],[-70.80730807308073,-52.94140608965236],[-70.81090810908108,-52.96166901689095],[-70.81090810908108,-52.97855478958978],[-70.81810818108181,-52.992063407748844],[-70.86490864908649,-53.04947503492485],[-70.8721087210872,-53.06129507581403],[-70.87570875708757,-53.08831231213215],[-70.88650886508864,-53.113640971180395],[-70.94050940509405,-53.176118330166055],[-70.95130951309513,-53.198069834674534],[-70.95850958509585,-53.22339849372277],[-70.95850958509585,-53.30276162540726],[-70.9621096210962,-53.32640170718562],[-70.98730987309872,-53.363550407123036],[-70.99450994509945,-53.38381333436163],[-70.99450994509945,-53.404076261600224],[-70.99450994509945,-53.42771634337858],[-70.98370983709837,-53.46824219785576],[-70.95130951309513,-53.54760532954025],[-70.94050940509405,-53.591508338557205],[-70.94050940509405,-53.61345984306568],[-70.94410944109441,-53.63878850211391],[-70.95490954909549,-53.65905142935251],[-70.96930969309693,-53.66749431570192],[-70.98010980109801,-53.6793143565911],[-70.98010980109801,-53.70633159290922],[-70.97290972909728,-53.73503740649723],[-70.97290972909728,-53.75530033373582],[-70.99450994509945,-53.7873833018636],[-71.03411034110341,-53.809334806372064],[-71.22851228512285,-53.875189319897494],[-71.2861128611286,-53.88532078351679],[-71.33651336513364,-53.88025505170714],[-71.430114301143,-53.84310635176972],[-71.48051480514805,-53.82959773361066],[-71.64611646116461,-53.82284342453113],[-71.72171721717217,-53.79751476548289],[-71.72891728917288,-53.79244903367324],[-71.74691746917469,-53.78062899278406],[-71.7541175411754,-53.7772518382443],[-71.81531815318152,-53.76036606554547],[-71.83691836918369,-53.74516887011653],[-71.84771847718477,-53.74179171557676],[-71.86571865718656,-53.733348829227346],[-71.87291872918729,-53.69620012928993],[-71.89091890918908,-53.694511552020046],[-71.90171901719017,-53.70126586109957],[-71.9161191611916,-53.72490594287794],[-71.93051930519304,-53.7282830974177],[-71.94131941319412,-53.72490594287794],[-71.96291962919629,-53.70633159290922],[-71.97731977319773,-53.69788870655981],[-71.99171991719916,-53.67762577932122],[-72.00252002520025,-53.674248624781455],[-72.01692016920168,-53.67593720205134],[-72.01692016920168,-53.68100293386098],[-72.01692016920168,-53.68775724294051],[-72.02052020520205,-53.694511552020046],[-72.0421204212042,-53.70633159290922],[-72.0529205292053,-53.70633159290922],[-72.06732067320672,-53.69788870655981],[-72.07812078120782,-53.69113439748028],[-72.10332103321034,-53.689445820210395],[-72.11412114121141,-53.68438008840075],[-72.18612186121861,-53.626968461224735],[-72.22932229322292,-53.59995122490662],[-72.25092250922509,-53.589819761287316],[-72.28332283322833,-53.5813768749379],[-72.28692286922869,-53.57293398858849],[-72.29052290522905,-53.56111394769931],[-72.29772297722977,-53.550982484080016],[-72.30492304923048,-53.544228175000484],[-72.32652326523265,-53.53747386592096],[-72.33732337323373,-53.53071955684142],[-72.38772387723877,-53.485127970554586],[-72.39852398523985,-53.47837366147506],[-72.40572405724056,-53.45979931150635],[-72.44532445324452,-53.42096203429905],[-72.45252452524525,-53.40745341613999],[-72.44532445324452,-53.38550191163151],[-72.42372423724237,-53.37368187074233],[-72.40572405724056,-53.361861829853154],[-72.41652416524165,-53.341598902614564],[-72.42372423724237,-53.33146743899526],[-72.42372423724237,-53.324713129915736],[-72.420124201242,-53.3179588208362],[-72.41292412924129,-53.31120451175667],[-72.40932409324093,-53.31120451175667],[-72.39132391323913,-53.304450202677145],[-72.30132301323013,-53.24872715277101],[-72.28332283322833,-53.241972843691485],[-72.15732157321573,-53.257170039120425],[-72.13572135721357,-53.25548146185054],[-72.11412114121141,-53.257170039120425],[-72.0961209612096,-53.26730150273973],[-72.08172081720816,-53.32977886172539],[-72.07812078120782,-53.35004178896398],[-72.08172081720816,-53.37199329347245],[-72.0889208892089,-53.382124757091745],[-72.09972099720997,-53.39056764344116],[-72.11052110521105,-53.39056764344116],[-72.13572135721357,-53.37199329347245],[-72.14292142921428,-53.37537044801222],[-72.15012150121501,-53.39732195252069],[-72.1681216812168,-53.41083057067975],[-72.21852218522184,-53.424339188838815],[-72.24012240122401,-53.43447065245811],[-72.21132211322113,-53.44122496153764],[-72.18252182521825,-53.43784780699788],[-72.15372153721538,-53.43109349791834],[-72.10692106921069,-53.426027766108696],[-72.09252092520924,-53.422650611568926],[-72.07092070920709,-53.40745341613999],[-72.05652056520564,-53.39394479798092],[-72.04932049320493,-53.39056764344116],[-72.0421204212042,-53.39056764344116],[-72.02412024120241,-53.39563337525081],[-72.01692016920168,-53.39225622071105],[-72.0061200612006,-53.35004178896398],[-72.01692016920168,-53.29600731632773],[-72.02052020520205,-53.24703857550113],[-71.98091980919808,-53.22170991645289],[-71.96651966519664,-53.22339849372277],[-71.93771937719377,-53.23352995734207],[-71.9269192691927,-53.23521853461195],[-71.91251912519125,-53.23352995734207],[-71.89451894518945,-53.22508707099266],[-71.880118801188,-53.22170991645289],[-71.85491854918548,-53.22508707099266],[-71.84051840518404,-53.23521853461195],[-71.83331833318333,-53.25210430731077],[-71.81891818918189,-53.341598902614564],[-71.81531815318152,-53.361861829853154],[-71.81171811718117,-53.37874760255198],[-71.79731797317973,-53.39901052979057],[-71.790117901179,-53.41927345702916],[-71.790117901179,-53.44122496153764],[-71.80451804518044,-53.45642215696658],[-71.82971829718296,-53.47161935239553],[-71.85491854918548,-53.485127970554586],[-71.87291872918729,-53.488505125094356],[-71.90171901719017,-53.491882279634126],[-71.96651966519664,-53.51721093868236],[-71.99531995319953,-53.52227667049201],[-72.00252002520025,-53.529030979571544],[-72.00972009720097,-53.54085102046072],[-72.00972009720097,-53.554359638619786],[-72.0061200612006,-53.56111394769931],[-71.99891998919989,-53.564491102239074],[-71.98451984519845,-53.564491102239074],[-71.96291962919629,-53.55942537042943],[-71.91971919719197,-53.53916244319083],[-71.89811898118981,-53.53071955684142],[-71.84051840518404,-53.525653825031775],[-71.81531815318152,-53.52058809322213],[-71.79371793717937,-53.507079475063065],[-71.76131761317613,-53.47161935239553],[-71.7541175411754,-53.463176466046114],[-71.7541175411754,-53.45135642515694],[-71.76491764917648,-53.43109349791834],[-71.76851768517685,-53.42096203429905],[-71.76131761317613,-53.39901052979057],[-71.76131761317613,-53.38550191163151],[-71.76491764917648,-53.37874760255198],[-71.76851768517685,-53.37368187074233],[-71.77571775717757,-53.341598902614564],[-71.77211772117721,-53.319647398106085],[-71.74331743317433,-53.22339849372277],[-71.72891728917288,-53.21157845283359],[-71.69291692916929,-53.20651272102395],[-71.67851678516784,-53.20313556648418],[-71.67131671316713,-53.2014469892143],[-71.64611646116461,-53.2014469892143],[-71.63171631716317,-53.198069834674534],[-71.62091620916209,-53.19300410286488],[-71.58491584915849,-53.16767544381664],[-71.57411574115741,-53.162609712007],[-71.54531545315453,-53.157543980197346],[-71.48051480514805,-53.135592475688874],[-71.4661146611466,-53.132215321149104],[-71.41931419314193,-53.13390389841899],[-71.40491404914049,-53.132215321149104],[-71.38331383313833,-53.12714958933946],[-71.36171361713616,-53.115329548450276],[-71.340113401134,-53.1035095075611],[-71.31851318513185,-53.08831231213215],[-71.31131311313112,-53.07818084851286],[-71.29691296912969,-53.054540766734505],[-71.28971289712896,-53.04440930311521],[-71.27891278912789,-53.035966416765795],[-71.26091260912608,-53.0258349531465],[-71.25371253712537,-53.017392066797086],[-71.24651246512465,-52.99712913955849],[-71.24291242912429,-52.97517763505002],[-71.23571235712356,-52.95660328508131],[-71.19971199711996,-52.92452031695353],[-71.17091170911709,-52.931274626033066],[-71.12051120511205,-52.91945458514389],[-71.12051120511205,-52.88061730793658],[-71.14931149311492,-52.843468607999164],[-71.17091170911709,-52.81307421714128],[-71.21051210512104,-52.81476279441116],[-71.250112501125,-52.78943413536292],[-71.30771307713077,-52.806319908061745],[-71.35091350913508,-52.806319908061745],[-71.36891368913689,-52.78436840355327],[-71.37971379713797,-52.767482630854445],[-71.39771397713977,-52.72864535364714],[-71.40131401314012,-52.75059685815562],[-71.40131401314012,-52.77085978539421],[-71.40491404914049,-52.787745558093036],[-71.40131401314012,-52.81982852622081],[-71.39771397713977,-52.83164856710999],[-71.4229142291423,-52.83671429891963],[-71.44811448114481,-52.829959989840106],[-71.4661146611466,-52.824894258030454],[-71.48411484114841,-52.824894258030454],[-71.49131491314913,-52.828271412570224],[-71.5021150211502,-52.83840287618952],[-71.50571505715057,-52.843468607999164],[-71.51291512915128,-52.845157185269045],[-71.53091530915309,-52.867108689777524],[-71.57771577715776,-52.890748771555884],[-71.61371613716136,-52.892437348825766],[-71.64251642516425,-52.91607743060412],[-71.66771667716677,-52.91776600787401],[-71.70371703717036,-52.93465178057283],[-71.73611736117361,-52.94140608965236],[-71.77931779317792,-52.9667347487006],[-71.84051840518404,-52.98362052139943],[-71.86211862118621,-53.00219487136814],[-71.90531905319052,-53.010637757717554],[-71.92331923319233,-53.03427783949591],[-71.99531995319953,-53.09168946667192],[-72.01332013320133,-53.118706702990046],[-72.02052020520205,-53.12546101206958],[-72.03492034920349,-53.12714958933946],[-72.04572045720457,-53.12377243479969],[-72.06012060120601,-53.12208385752981],[-72.08532085320853,-53.13390389841899],[-72.10332103321034,-53.13390389841899],[-72.11772117721176,-53.12883816660934],[-72.13572135721357,-53.115329548450276],[-72.15732157321573,-53.10688666210087],[-72.16452164521645,-53.10013235302134],[-72.17172171721717,-53.09000088940204],[-72.18612186121861,-53.074803693973095],[-72.19332193321932,-53.0646722303538],[-72.20412204122042,-53.054540766734505],[-72.2149221492215,-53.04947503492485],[-72.22572225722257,-53.04440930311521],[-72.25452254522544,-53.04272072584532],[-72.27612276122761,-53.032589262226026],[-72.28692286922869,-53.02921210768626],[-72.31212312123121,-53.032589262226026],[-72.30492304923048,-53.04272072584532],[-72.28332283322833,-53.056229344004386],[-72.26892268922688,-53.07142653943333],[-72.28692286922869,-53.07142653943333],[-72.30852308523085,-53.06804938489356],[-72.36252362523625,-53.05285218946462],[-72.38052380523804,-53.051163612194735],[-72.49572495724956,-53.056229344004386],[-72.53532535325353,-53.0646722303538],[-72.56412564125641,-53.07818084851286],[-72.54252542525425,-53.08493515759239],[-72.52092520925208,-53.08155800305263],[-72.49572495724956,-53.074803693973095],[-72.47412474124741,-53.07142653943333],[-72.43452434524345,-53.08324658032251],[-72.41292412924129,-53.08493515759239],[-72.39492394923948,-53.074803693973095],[-72.36612366123661,-53.06804938489356],[-72.32292322923229,-53.132215321149104],[-72.22572225722257,-53.15078967111781],[-72.21132211322113,-53.157543980197346],[-72.19692196921969,-53.16936402108653],[-72.18972189721897,-53.181184061975706],[-72.19332193321932,-53.191315525595],[-72.20772207722077,-53.2014469892143],[-72.22572225722257,-53.20651272102395],[-72.25452254522544,-53.20651272102395],[-72.27972279722796,-53.2014469892143],[-72.29772297722977,-53.18287263924559],[-72.31932319323192,-53.179495484705825],[-72.36612366123661,-53.181184061975706],[-72.36612366123661,-53.18793837105524],[-72.32652326523265,-53.191315525595],[-72.31572315723157,-53.20651272102395],[-72.32652326523265,-53.22170991645289],[-72.36612366123661,-53.22170991645289],[-72.45252452524525,-53.18962694832512],[-72.48852488524885,-53.18793837105524],[-72.44892448924489,-53.20482414375406],[-72.43452434524345,-53.21664418464324],[-72.44172441724417,-53.22846422553242],[-72.46332463324633,-53.23015280280231],[-72.48492484924849,-53.218332761913125],[-72.51372513725137,-53.194692680134764],[-72.53892538925389,-53.198069834674534],[-72.53532535325353,-53.20820129829383],[-72.52092520925208,-53.220021339183006],[-72.50292502925029,-53.22846422553242],[-72.45252452524525,-53.23521853461195],[-72.42732427324273,-53.241972843691485],[-72.41292412924129,-53.257170039120425],[-72.42732427324273,-53.26561292546984],[-72.43452434524345,-53.27405581181925],[-72.44532445324452,-53.282498698168666],[-72.4669246692467,-53.282498698168666],[-72.48492484924849,-53.27574438908914],[-72.49932499324993,-53.26730150273973],[-72.51732517325173,-53.262235770930076],[-72.53532535325353,-53.27067865727949],[-72.51372513725137,-53.28587585270843],[-72.50292502925029,-53.314581666296434],[-72.50652506525064,-53.343287479884445],[-72.52092520925208,-53.366927561662806],[-72.55692556925568,-53.37537044801222],[-72.5929259292593,-53.363550407123036],[-72.62532625326253,-53.343287479884445],[-72.64692646926468,-53.3179588208362],[-72.65052650526505,-53.339910325344675],[-72.6361263612636,-53.35848467531339],[-72.5929259292593,-53.387190488901396],[-72.57852578525785,-53.39901052979057],[-72.57132571325712,-53.41083057067975],[-72.56052560525605,-53.41758487975928],[-72.53892538925389,-53.42096203429905],[-72.53532535325353,-53.41758487975928],[-72.53172531725316,-53.404076261600224],[-72.52812528125281,-53.400699107060454],[-72.52092520925208,-53.39901052979057],[-72.49932499324993,-53.400699107060454],[-72.48492484924849,-53.40914199340987],[-72.38052380523804,-53.52396524776189],[-72.36612366123661,-53.53747386592096],[-72.52092520925208,-53.544228175000484],[-72.53172531725316,-53.5425395977306],[-72.53892538925389,-53.53578528865107],[-72.54252542525425,-53.529030979571544],[-72.54972549725497,-53.52396524776189],[-72.57132571325712,-53.51552236141248],[-72.61812618126181,-53.507079475063065],[-72.63972639726397,-53.49694801144377],[-72.64692646926468,-53.488505125094356],[-72.65052650526505,-53.47837366147506],[-72.65772657726576,-53.47161935239553],[-72.66852668526685,-53.46824219785576],[-72.71172711727117,-53.464865043315996],[-72.72252722527224,-53.463176466046114],[-72.73332733327332,-53.449667847887056],[-72.72972729727297,-53.41758487975928],[-72.74052740527405,-53.400699107060454],[-72.7621276212762,-53.387190488901396],[-72.76932769327694,-53.39901052979057],[-72.76932769327694,-53.41927345702916],[-72.77652776527765,-53.43447065245811],[-72.79452794527946,-53.439536384267754],[-72.80172801728017,-53.426027766108696],[-72.80172801728017,-53.404076261600224],[-72.80892808928088,-53.387190488901396],[-72.82692826928269,-53.38381333436163],[-72.85572855728557,-53.38550191163151],[-72.87732877328773,-53.382124757091745],[-72.87372873728737,-53.366927561662806],[-72.88812888128881,-53.360173252583266],[-72.94212942129421,-53.35341894350374],[-73.07893078930789,-53.28587585270843],[-73.14013140131401,-53.2689900800096],[-73.17253172531726,-53.257170039120425],[-73.19773197731978,-53.2402842664216],[-73.21933219332193,-53.22170991645289],[-73.25173251732517,-53.18456121651547],[-73.26613266132661,-53.176118330166055],[-73.29133291332913,-53.16598686654676],[-73.3021330213302,-53.15416682565758],[-73.18333183331833,-53.18624979378535],[-73.14013140131401,-53.18793837105524],[-73.11853118531185,-53.18287263924559],[-73.0861308613086,-53.16936402108653],[-72.98172981729817,-53.160921134737116],[-72.95652956529565,-53.160921134737116],[-72.94212942129421,-53.16598686654676],[-72.92772927729277,-53.176118330166055],[-72.91692916929169,-53.191315525595],[-72.90612906129061,-53.194692680134764],[-72.8809288092881,-53.19300410286488],[-72.87012870128702,-53.198069834674534],[-72.85932859328592,-53.20313556648418],[-72.77652776527765,-53.23352995734207],[-72.75852758527584,-53.23521853461195],[-72.75132751327513,-53.241972843691485],[-72.75852758527584,-53.257170039120425],[-72.76572765727657,-53.27405581181925],[-72.77652776527765,-53.282498698168666],[-72.76932769327694,-53.29094158451808],[-72.75852758527584,-53.29431873905784],[-72.74412744127441,-53.29431873905784],[-72.73332733327332,-53.282498698168666],[-72.7189271892719,-53.29263016178796],[-72.71172711727117,-53.29094158451808],[-72.71532715327153,-53.280810120898785],[-72.72612726127261,-53.26730150273973],[-72.71532715327153,-53.262235770930076],[-72.70092700927009,-53.25210430731077],[-72.69012690126901,-53.2402842664216],[-72.69732697326972,-53.23521853461195],[-72.72252722527224,-53.22846422553242],[-72.7549275492755,-53.21157845283359],[-72.78372783727836,-53.191315525595],[-72.79452794527946,-53.17274117562629],[-72.77652776527765,-53.17274117562629],[-72.72612726127261,-53.18793837105524],[-72.73692736927369,-53.16936402108653],[-72.7549275492755,-53.155855402927465],[-72.7621276212762,-53.14572393930817],[-72.74772747727476,-53.13896963022864],[-72.72612726127261,-53.13896963022864],[-72.65412654126541,-53.15416682565758],[-72.66132661326613,-53.1423467847684],[-72.67572675726757,-53.135592475688874],[-72.69372693726937,-53.13052674387922],[-72.7081270812708,-53.12546101206958],[-72.71532715327153,-53.10857523937075],[-72.71532715327153,-53.10519808483098],[-72.72612726127261,-53.10519808483098],[-72.72972729727297,-53.11026381664063],[-72.73332733327332,-53.115329548450276],[-72.74052740527405,-53.118706702990046],[-72.78732787327873,-53.115329548450276],[-72.80172801728017,-53.118706702990046],[-72.83052830528305,-53.1423467847684],[-72.8449284492845,-53.15078967111781],[-72.91332913329133,-53.118706702990046],[-72.93492934929348,-53.10519808483098],[-72.93132931329313,-53.08831231213215],[-72.89172891728917,-53.056229344004386],[-72.87732877328773,-53.035966416765795],[-72.87732877328773,-53.017392066797086],[-72.89532895328954,-53.030900684956144],[-72.90612906129061,-53.035966416765795],[-72.91332913329133,-53.03765499403568],[-72.92052920529206,-53.032589262226026],[-72.92772927729277,-53.02414637587661],[-72.92772927729277,-53.0157034895272],[-72.9241292412924,-53.0055720259079],[-72.91692916929169,-52.988686253209075],[-72.92772927729277,-52.970111903240365],[-72.93852938529385,-52.951537553271656],[-72.94572945729458,-52.93465178057283],[-72.94932949329493,-52.926208894223414],[-72.94572945729458,-52.92114316241377],[-72.93852938529385,-52.907634544254705],[-72.93492934929348,-52.90088023517518],[-72.92772927729277,-52.89412592609565],[-72.9241292412924,-52.88568303974623],[-72.93132931329313,-52.87555157612694],[-72.96732967329673,-52.85191149434858],[-72.97812978129781,-52.83840287618952],[-72.960129601296,-52.824894258030454],[-72.93492934929348,-52.81813994895092],[-72.87732877328773,-52.81307421714128],[-72.8341283412834,-52.787745558093036],[-72.7621276212762,-52.76917120812433],[-72.74412744127441,-52.75735116723515],[-72.70452704527045,-52.70838242640855],[-72.69012690126901,-52.70838242640855],[-72.68292682926828,-52.7134481582182],[-72.65772657726576,-52.72864535364714],[-72.61812618126181,-52.73877681726644],[-72.61092610926109,-52.742153971806204],[-72.61092610926109,-52.77423693993398],[-72.65052650526505,-52.8012541762521],[-72.69732697326972,-52.826582835300336],[-72.72252722527224,-52.85191149434858],[-72.71532715327153,-52.868797267047405],[-72.69372693726937,-52.86035438069799],[-72.66852668526685,-52.84178003072928],[-72.62892628926289,-52.82320568076057],[-72.60732607326072,-52.806319908061745],[-72.58932589325893,-52.79618844444245],[-72.56412564125641,-52.804631330791864],[-72.57852578525785,-52.81307421714128],[-72.5929259292593,-52.824894258030454],[-72.59652596525964,-52.83502572164975],[-72.57852578525785,-52.83840287618952],[-72.56052560525605,-52.83333714437987],[-72.53532535325353,-52.81476279441116],[-72.52452524525245,-52.811385639871396],[-72.49212492124921,-52.804631330791864],[-72.47412474124741,-52.806319908061745],[-72.4669246692467,-52.82151710349069],[-72.45972459724597,-52.8400914534594],[-72.44532445324452,-52.85528864888835],[-72.43092430924308,-52.85697722615823],[-72.420124201242,-52.83840287618952],[-72.42732427324273,-52.824894258030454],[-72.420124201242,-52.80800848533163],[-72.40932409324093,-52.79281128990269],[-72.39852398523985,-52.782679826283385],[-72.38052380523804,-52.77423693993398],[-72.31212312123121,-52.75059685815562],[-72.30492304923048,-52.747219703615855],[-72.2941229412294,-52.74046539453632],[-72.28692286922869,-52.73202250818691],[-72.28332283322833,-52.725268199107376],[-72.27252272522725,-52.70669384913867],[-72.26892268922688,-52.701628117329015],[-72.24732247322473,-52.69487380824949],[-72.19692196921969,-52.69318523097961],[-72.1789217892179,-52.67967661282054],[-72.1789217892179,-52.65772510831207],[-72.16092160921609,-52.65265937650242],[-72.11412114121141,-52.65772510831207],[-72.0961209612096,-52.6543479537723],[-72.07812078120782,-52.6543479537723],[-72.06372063720637,-52.65772510831207],[-72.0421204212042,-52.67461088101089],[-72.01332013320133,-52.67292230374101],[-72.0061200612006,-52.65603653104218],[-71.99891998919989,-52.64590506742289],[-71.98091980919808,-52.64590506742289],[-71.96291962919629,-52.64928222196266],[-71.94851948519485,-52.66785657193137],[-71.91971919719197,-52.681365190090425],[-71.85131851318513,-52.69487380824949],[-71.6281162811628,-52.683053767360306],[-71.59931599315993,-52.67461088101089],[-71.58491584915849,-52.661102262851834],[-71.52011520115201,-52.65603653104218],[-71.47691476914768,-52.64590506742289],[-71.49131491314913,-52.61213352202524],[-71.53451534515345,-52.580050553897465],[-71.57051570515705,-52.561476203928756],[-71.63171631716317,-52.57498482208781],[-71.68571685716857,-52.56316478119864],[-71.72891728917288,-52.561476203928756],[-71.76131761317613,-52.56823051300829],[-71.83331833318333,-52.55303331757934],[-71.91251912519125,-52.541213276690165],[-71.97371973719737,-52.561476203928756],[-72.00252002520025,-52.55134474030946],[-72.02772027720277,-52.559787626658874],[-72.04932049320493,-52.55809904938899],[-72.07092070920709,-52.537836122150395],[-72.0889208892089,-52.52095034945157],[-72.0961209612096,-52.51588461764192],[-72.12492124921249,-52.51250746310215],[-72.20412204122042,-52.522638926721456],[-72.28332283322833,-52.51419604037204],[-72.30852308523085,-52.51588461764192],[-72.32652326523265,-52.52432750399134],[-72.34452344523444,-52.541213276690165],[-72.35892358923589,-52.55809904938899],[-72.36612366123661,-52.57498482208781],[-72.37332373323733,-52.58849344024688],[-72.420124201242,-52.60706779021559],[-72.43452434524345,-52.618887831104765],[-72.42372423724237,-52.61382209929512],[-72.41652416524165,-52.61213352202524],[-72.40572405724056,-52.61382209929512],[-72.39852398523985,-52.618887831104765],[-72.41292412924129,-52.64928222196266],[-72.420124201242,-52.65265937650242],[-72.43092430924308,-52.65097079923254],[-72.44172441724417,-52.64590506742289],[-72.45972459724597,-52.63239644926383],[-72.50292502925029,-52.615510676565],[-72.50652506525064,-52.61213352202524],[-72.52452524525245,-52.600313481136055],[-72.54972549725497,-52.59187059478664],[-72.54252542525425,-52.5766733993577],[-72.50652506525064,-52.54965616303958],[-72.48852488524885,-52.53952469942028],[-72.47052470524704,-52.53445896761063],[-72.42732427324273,-52.536147544880514],[-72.40212402124021,-52.53108181307087],[-72.38772387723877,-52.519261772181686],[-72.39132391323913,-52.50744173129251],[-72.41292412924129,-52.50237599948286],[-72.42372423724237,-52.50406457675274],[-72.44172441724417,-52.51250746310215],[-72.45252452524525,-52.51588461764192],[-72.4669246692467,-52.517573194911805],[-72.48852488524885,-52.51588461764192],[-72.50292502925029,-52.51588461764192],[-72.53172531725316,-52.5277046585311],[-72.53892538925389,-52.52939323580098],[-72.5461254612546,-52.53445896761063],[-72.56052560525605,-52.55303331757934],[-72.57132571325712,-52.556410472119104],[-72.58932589325893,-52.55472189484922],[-72.61092610926109,-52.54796758576969],[-72.62892628926289,-52.537836122150395],[-72.63252632526324,-52.52939323580098],[-72.65772657726576,-52.52095034945157],[-72.67932679326793,-52.52432750399134],[-72.70092700927009,-52.53277039034075],[-72.78012780127801,-52.54459043122993],[-72.79452794527946,-52.541213276690165],[-72.80172801728017,-52.53445896761063],[-72.80172801728017,-52.52601608126122],[-72.80892808928088,-52.51588461764192],[-72.84852848528485,-52.50237599948286],[-72.85932859328592,-52.50237599948286],[-72.86292862928629,-52.51081888583227],[-72.85572855728557,-52.52939323580098],[-72.86292862928629,-52.53952469942028],[-72.86652866528665,-52.54796758576969],[-72.87012870128702,-52.556410472119104],[-72.87372873728737,-52.561476203928756],[-72.87372873728737,-52.56316478119864],[-72.88812888128881,-52.58849344024688],[-72.89172891728917,-52.59524774932641],[-72.89532895328954,-52.61382209929512],[-72.90612906129061,-52.62901929472406],[-72.91692916929169,-52.642527912883125],[-72.92772927729277,-52.65265937650242],[-72.98172981729817,-52.69487380824949],[-72.98892988929889,-52.705005271868785],[-72.9709297092971,-52.71682531275796],[-72.93852938529385,-52.68980807643984],[-72.86292862928629,-52.61213352202524],[-72.84132841328413,-52.59355917205652],[-72.81972819728198,-52.586804862977],[-72.7981279812798,-52.615510676565],[-72.77292772927728,-52.623953562914416],[-72.72252722527224,-52.63239644926383],[-72.69372693726937,-52.63239644926383],[-72.68652686526865,-52.63408502653371],[-72.67572675726757,-52.642527912883125],[-72.6721267212672,-52.65265937650242],[-72.67932679326793,-52.662790840121716],[-72.71172711727117,-52.69318523097961],[-72.7621276212762,-52.72864535364714],[-72.78012780127801,-52.745531126345966],[-72.79092790927909,-52.7522854354255],[-72.80532805328053,-52.75566258996526],[-72.8341283412834,-52.75566258996526],[-72.8449284492845,-52.75903974450503],[-72.85212852128521,-52.765794053584564],[-72.85932859328592,-52.78943413536292],[-72.88452884528844,-52.79449986717257],[-72.93852938529385,-52.79787702171233],[-73.0069300693007,-52.83333714437987],[-73.01413014130141,-52.84178003072928],[-73.0069300693007,-52.85528864888835],[-72.96732967329673,-52.8789287306667],[-72.95292952929529,-52.89412592609565],[-72.9709297092971,-52.907634544254705],[-72.9709297092971,-52.92452031695353],[-72.96732967329673,-52.95829186235119],[-72.96372963729637,-52.96335759416084],[-72.94932949329493,-52.9768662123199],[-72.94572945729458,-52.98530909866931],[-72.95292952929529,-53.02414637587661],[-72.96372963729637,-53.03765499403568],[-72.97812978129781,-53.054540766734505],[-72.99612996129962,-53.0646722303538],[-73.00333003330033,-53.054540766734505],[-73.01053010530104,-53.056229344004386],[-73.11493114931149,-53.09675519848157],[-73.14013140131401,-53.098443775751456],[-73.16173161731616,-53.08831231213215],[-73.17973179731797,-53.073115116703214],[-73.18333183331833,-53.0646722303538],[-73.18693186931868,-53.05791792127427],[-73.17973179731797,-53.051163612194735],[-73.16893168931689,-53.04440930311521],[-73.15813158131581,-53.035966416765795],[-73.15813158131581,-53.02414637587661],[-73.1761317613176,-53.0157034895272],[-73.19413194131941,-53.030900684956144],[-73.20853208532085,-53.05285218946462],[-73.2121321213212,-53.06804938489356],[-73.20133201332013,-53.073115116703214],[-73.19053190531905,-53.07818084851286],[-73.18333183331833,-53.08324658032251],[-73.17973179731797,-53.09168946667192],[-73.18693186931868,-53.10182093029122],[-73.19773197731978,-53.10519808483098],[-73.2121321213212,-53.10182093029122],[-73.21933219332193,-53.10013235302134],[-73.23373233732337,-53.093378043941804],[-73.24093240932409,-53.08662373486227],[-73.25173251732517,-53.08155800305263],[-73.32733327333273,-53.07142653943333],[-73.35973359733597,-53.051163612194735],[-73.3849338493385,-53.017392066797086],[-73.39933399333992,-53.014014912257316],[-73.42453424534244,-53.017392066797086],[-73.43533435334353,-53.012326334987435],[-73.45333453334533,-52.99712913955849],[-73.45693456934569,-52.98699767593919],[-73.44253442534425,-52.98193194412955],[-73.40293402934029,-52.98024336685966],[-73.39213392133921,-52.98193194412955],[-73.3849338493385,-52.98530909866931],[-73.37773377733777,-52.992063407748844],[-73.36693366933669,-52.99712913955849],[-73.35253352533525,-52.99544056228861],[-73.35613356133561,-52.98699767593919],[-73.36333363333632,-52.98024336685966],[-73.37053370533705,-52.973489057780135],[-73.37053370533705,-52.96504617143072],[-73.36693366933669,-52.95660328508131],[-73.35253352533525,-52.954914707811426],[-73.32373323733236,-52.954914707811426],[-73.32373323733236,-52.951537553271656],[-73.32373323733236,-52.94478324419213],[-73.32013320133201,-52.9380289351126],[-73.31293312933128,-52.93465178057283],[-73.30933309333093,-52.93465178057283],[-73.29853298532984,-52.93971751238248],[-73.27693276932769,-52.94478324419213],[-73.25533255332553,-52.95660328508131],[-73.24093240932409,-52.96166901689095],[-73.24453244532445,-52.951537553271656],[-73.26253262532624,-52.9278974714933],[-73.23733237332372,-52.931274626033066],[-73.22653226532265,-52.93465178057283],[-73.23373233732337,-52.91438885333424],[-73.2229322293223,-52.90088023517518],[-73.20493204932049,-52.89750308063541],[-73.2121321213212,-52.887371617016115],[-73.28773287732876,-52.90256881244506],[-73.3021330213302,-52.88230588520647],[-73.30933309333093,-52.87386299885706],[-73.32013320133201,-52.87724015339682],[-73.33453334533345,-52.88399446247635],[-73.35253352533525,-52.88568303974623],[-73.36333363333632,-52.87555157612694],[-73.37053370533705,-52.86035438069799],[-73.38133381333813,-52.845157185269045],[-73.40293402934029,-52.83840287618952],[-73.49293492934929,-52.824894258030454],[-73.54333543335433,-52.81307421714128],[-73.56493564935649,-52.79787702171233],[-73.53973539735397,-52.77930267174362],[-73.49293492934929,-52.77592551720386],[-73.46053460534606,-52.78436840355327],[-73.46773467734677,-52.811385639871396],[-73.44973449734496,-52.806319908061745],[-73.42453424534244,-52.782679826283385],[-73.41013410134101,-52.77592551720386],[-73.39573395733957,-52.782679826283385],[-73.3849338493385,-52.804631330791864],[-73.3741337413374,-52.8012541762521],[-73.36693366933669,-52.79618844444245],[-73.35613356133561,-52.79281128990269],[-73.34173341733417,-52.7911227126328],[-73.32373323733236,-52.79787702171233],[-73.31653316533165,-52.79449986717257],[-73.30573305733057,-52.787745558093036],[-73.29493294932949,-52.782679826283385],[-73.25533255332553,-52.7911227126328],[-73.23373233732337,-52.7911227126328],[-73.21933219332193,-52.77592551720386],[-73.23373233732337,-52.77761409447374],[-73.24453244532445,-52.77761409447374],[-73.25173251732517,-52.77254836266409],[-73.24813248132482,-52.762416899044794],[-73.26253262532624,-52.75397401269538],[-73.28773287732876,-52.762416899044794],[-73.3021330213302,-52.75566258996526],[-73.30933309333093,-52.748908280885736],[-73.30933309333093,-52.742153971806204],[-73.30933309333093,-52.725268199107376],[-73.30573305733057,-52.71513673548808],[-73.29853298532984,-52.71513673548808],[-73.28413284132841,-52.72189104456761],[-73.26253262532624,-52.7134481582182],[-73.24813248132482,-52.703316694598904],[-73.24093240932409,-52.69149665370972],[-73.22653226532265,-52.67292230374101],[-73.22653226532265,-52.666167994661485],[-73.22653226532265,-52.65603653104218],[-73.22653226532265,-52.64928222196266],[-73.21573215732157,-52.64590506742289],[-73.17973179731797,-52.64590506742289],[-73.16173161731616,-52.642527912883125],[-73.15093150931509,-52.63408502653371],[-73.14733147331474,-52.620576408374646],[-73.14373143731437,-52.60200205840594],[-73.12573125731257,-52.55809904938899],[-73.12213122131222,-52.54965616303958],[-73.050130501305,-52.55472189484922],[-73.02133021330214,-52.56485335846852],[-73.01053010530104,-52.56316478119864],[-73.00333003330033,-52.55809904938899],[-73.01053010530104,-52.54965616303958],[-73.01773017730177,-52.54796758576969],[-73.050130501305,-52.54965616303958],[-73.10773107731077,-52.536147544880514],[-73.11853118531185,-52.53277039034075],[-73.11493114931149,-52.52432750399134],[-73.10773107731077,-52.51419604037204],[-73.10413104131041,-52.50575315402263],[-73.09333093330933,-52.493933113133444],[-73.06093060930608,-52.49055595859368],[-73.01053010530104,-52.49562169040333],[-72.92772927729277,-52.51419604037204],[-72.90612906129061,-52.5277046585311],[-72.89892898928989,-52.52939323580098],[-72.88452884528844,-52.52601608126122],[-72.88812888128881,-52.51588461764192],[-72.89532895328954,-52.50406457675274],[-72.90612906129061,-52.49562169040333],[-72.91692916929169,-52.49224453586356],[-72.960129601296,-52.4888673813238],[-73.02133021330214,-52.475358763164735],[-73.05733057330573,-52.47198160862497],[-73.08253082530825,-52.478735917704505],[-73.10053100531005,-52.4888673813238],[-73.12213122131222,-52.49224453586356],[-73.14373143731437,-52.49055595859368],[-73.15813158131581,-52.48211307224427],[-73.18333183331833,-52.44496437230685],[-73.19413194131941,-52.4297671768779],[-73.20133201332013,-52.43821006322732],[-73.19773197731978,-52.44665294957673],[-73.19413194131941,-52.456784413196026],[-73.19053190531905,-52.46691587681532],[-73.19413194131941,-52.475358763164735],[-73.20493204932049,-52.480424494974386],[-73.21573215732157,-52.478735917704505],[-73.22653226532265,-52.48211307224427],[-73.23373233732337,-52.49562169040333],[-73.19773197731978,-52.50068742221298],[-73.17973179731797,-52.51419604037204],[-73.17253172531726,-52.536147544880514],[-73.15813158131581,-52.56316478119864],[-73.18693186931868,-52.59187059478664],[-73.20493204932049,-52.60537921294571],[-73.2229322293223,-52.61213352202524],[-73.23733237332372,-52.620576408374646],[-73.25533255332553,-52.661102262851834],[-73.26973269732697,-52.67292230374101],[-73.29133291332913,-52.67292230374101],[-73.32013320133201,-52.662790840121716],[-73.3381333813338,-52.64590506742289],[-73.33453334533345,-52.62901929472406],[-73.31293312933128,-52.61213352202524],[-73.30573305733057,-52.60200205840594],[-73.3021330213302,-52.59187059478664],[-73.30933309333093,-52.585116285707116],[-73.31653316533165,-52.585116285707116],[-73.32733327333273,-52.59018201751676],[-73.3381333813338,-52.59187059478664],[-73.35253352533525,-52.59018201751676],[-73.36333363333632,-52.58849344024688],[-73.37053370533705,-52.581739131167346],[-73.37053370533705,-52.56823051300829],[-73.3741337413374,-52.55809904938899],[-73.3849338493385,-52.54965616303958],[-73.39213392133921,-52.54459043122993],[-73.40293402934029,-52.54627900849981],[-73.40653406534065,-52.56485335846852],[-73.3849338493385,-52.60537921294571],[-73.3849338493385,-52.6256421401843],[-73.39573395733957,-52.63577360380359],[-73.41013410134101,-52.637462181073474],[-73.43533435334353,-52.63239644926383],[-73.44973449734496,-52.63577360380359],[-73.45333453334533,-52.642527912883125],[-73.45333453334533,-52.65265937650242],[-73.45693456934569,-52.662790840121716],[-73.47493474934748,-52.6644794173916],[-73.49293492934929,-52.65603653104218],[-73.50733507335073,-52.65603653104218],[-73.50733507335073,-52.67967661282054],[-73.53613536135362,-52.67461088101089],[-73.55773557735577,-52.684742344630195],[-73.59733597335973,-52.72189104456761],[-73.60453604536045,-52.72189104456761],[-73.61173611736118,-52.72189104456761],[-73.61533615336153,-52.72020246729773],[-73.61893618936189,-52.725268199107376],[-73.61893618936189,-52.73033393091703],[-73.61533615336153,-52.73371108545679],[-73.61173611736118,-52.73539966272667],[-73.61173611736118,-52.73877681726644],[-73.61533615336153,-52.748908280885736],[-73.62973629736297,-52.745531126345966],[-73.65493654936549,-52.72864535364714],[-73.68373683736837,-52.72189104456761],[-73.69813698136981,-52.71513673548808],[-73.69813698136981,-52.705005271868785],[-73.66933669336693,-52.67967661282054],[-73.65853658536585,-52.67292230374101],[-73.60813608136081,-52.662790840121716],[-73.58293582935829,-52.65265937650242],[-73.57213572135721,-52.63239644926383],[-73.590135901359,-52.63408502653371],[-73.64773647736477,-52.64590506742289],[-73.66933669336693,-52.642527912883125],[-73.67653676536764,-52.63239644926383],[-73.68013680136801,-52.615510676565],[-73.68733687336874,-52.598624903866174],[-73.65853658536585,-52.59018201751676],[-73.64413644136441,-52.585116285707116],[-73.64053640536405,-52.57498482208781],[-73.6369363693637,-52.56316478119864],[-73.62973629736297,-52.561476203928756],[-73.61893618936189,-52.56316478119864],[-73.61173611736118,-52.56316478119864],[-73.60453604536045,-52.559787626658874],[-73.60453604536045,-52.55472189484922],[-73.60093600936008,-52.55134474030946],[-73.590135901359,-52.54965616303958],[-73.58293582935829,-52.55134474030946],[-73.57933579335793,-52.55303331757934],[-73.57933579335793,-52.556410472119104],[-73.57573575735756,-52.556410472119104],[-73.56133561335614,-52.55472189484922],[-73.55413554135541,-52.55134474030946],[-73.55053550535504,-52.54459043122993],[-73.55773557735577,-52.536147544880514],[-73.56853568535685,-52.53108181307087],[-73.61533615336153,-52.522638926721456],[-73.61893618936189,-52.52095034945157],[-73.60813608136081,-52.51419604037204],[-73.58293582935829,-52.50237599948286],[-73.57573575735756,-52.49562169040333],[-73.56493564935649,-52.478735917704505],[-73.56133561335614,-52.475358763164735],[-73.49653496534965,-52.475358763164735],[-73.51813518135181,-52.46522729954544],[-73.53253532535325,-52.456784413196026],[-73.52893528935289,-52.44496437230685],[-73.51453514535145,-52.41963571325861],[-73.53253532535325,-52.41456998144896],[-73.5469354693547,-52.42639002233814],[-73.56133561335614,-52.4398986404972],[-73.57933579335793,-52.44834152684661],[-73.65493654936549,-52.431455754147784],[-73.66573665736657,-52.42470144506826],[-73.66573665736657,-52.39937278602002],[-73.65853658536585,-52.38417559059107],[-73.64773647736477,-52.374044126971775],[-73.62973629736297,-52.37235554970189],[-73.61893618936189,-52.375732704241656],[-73.61533615336153,-52.38248701332119],[-73.60813608136081,-52.38755274513084],[-73.59733597335973,-52.38586416786095],[-73.590135901359,-52.379109858781426],[-73.58653586535866,-52.368978395162124],[-73.58293582935829,-52.34871546792353],[-73.57933579335793,-52.34364973611389],[-73.56853568535685,-52.333518272494594],[-73.56133561335614,-52.32338680887529],[-73.57573575735756,-52.31832107706565],[-73.59733597335973,-52.30143530436682],[-73.60453604536045,-52.29636957255717],[-73.61173611736118,-52.27779522258846],[-73.60813608136081,-52.2642866044294],[-73.59373593735937,-52.252466563540224],[-73.58293582935829,-52.2355807908414],[-73.57933579335793,-52.20856355452327],[-73.590135901359,-52.20012066817386],[-73.61173611736118,-52.20012066817386],[-73.63333633336333,-52.19336635909433],[-73.63333633336333,-52.188300627284676],[-73.6369363693637,-52.17479200912562],[-73.64413644136441,-52.16297196823644],[-73.64773647736477,-52.16297196823644],[-73.65133651336512,-52.15790623642679],[-73.68013680136801,-52.14608619553761],[-73.68733687336874,-52.12244611375925],[-73.71973719737197,-52.09542887744113],[-73.74493744937449,-52.065034486583244],[-73.73413734137341,-52.02957436391571],[-73.7161371613716,-52.02113147756629],[-73.69813698136981,-52.02619720937594],[-73.67653676536764,-52.043082982074765],[-73.6729367293673,-52.05152586842418],[-73.64053640536405,-52.09880603198089],[-73.6261362613626,-52.13088900010867],[-73.61533615336153,-52.144397618267725],[-73.60093600936008,-52.14270904099784],[-73.58293582935829,-52.13426615464843],[-73.56853568535685,-52.147774772807495],[-73.55773557735577,-52.17141485458585],[-73.55053550535504,-52.186612050014794],[-73.52893528935289,-52.19505493636421],[-73.5109351093511,-52.189989204554564],[-73.49293492934929,-52.17985774093526],[-73.47853478534785,-52.173103431855736],[-73.46773467734677,-52.16972627731597],[-73.48213482134821,-52.15790623642679],[-73.52173521735217,-52.13933188645808],[-73.49653496534965,-52.13257757737855],[-73.4641346413464,-52.1376433091882],[-73.43173431734317,-52.15284050461714],[-73.38853388533884,-52.191677781824446],[-73.36333363333632,-52.20856355452327],[-73.33453334533345,-52.21869501814257],[-73.3021330213302,-52.22207217268233],[-73.27333273332734,-52.2153178636028],[-73.24453244532445,-52.20180924544374],[-73.2229322293223,-52.17985774093526],[-73.2121321213212,-52.149463350077376],[-73.21573215732157,-52.125823268299015],[-73.2121321213212,-52.11906895921949],[-73.20493204932049,-52.107248918330306],[-73.19053190531905,-52.10387176379054],[-73.17253172531726,-52.107248918330306],[-73.15453154531545,-52.11569180467972],[-73.14373143731437,-52.125823268299015],[-73.11853118531185,-52.10218318652066],[-73.0861308613086,-52.08192025928207],[-73.05373053730537,-52.06841164112301],[-73.01773017730177,-52.063345909313355],[-72.99612996129962,-52.065034486583244],[-72.98892988929889,-52.07010021839289],[-72.98532985329852,-52.08023168201218],[-72.98172981729817,-52.09880603198089],[-72.98172981729817,-52.110626072870076],[-72.98172981729817,-52.127511845568904],[-72.98892988929889,-52.14270904099784],[-72.99612996129962,-52.15284050461714],[-73.00333003330033,-52.15452908188703],[-73.02493024930249,-52.147774772807495],[-73.03213032130321,-52.14608619553761],[-73.03933039330393,-52.149463350077376],[-73.04653046530466,-52.15621765915691],[-73.050130501305,-52.16297196823644],[-73.05373053730537,-52.16972627731597],[-73.06453064530645,-52.18154631820515],[-73.07533075330753,-52.19505493636421],[-73.08253082530825,-52.210252131793155],[-73.0861308613086,-52.2254493272221],[-73.07893078930789,-52.23726936811128],[-73.06813068130681,-52.23220363630163],[-73.02853028530285,-52.19336635909433],[-73.01413014130141,-52.186612050014794],[-72.99612996129962,-52.186612050014794],[-72.94572945729458,-52.20180924544374],[-72.92052920529206,-52.21362928633292],[-72.91692916929169,-52.2254493272221],[-72.92052920529206,-52.23895794538116],[-72.91332913329133,-52.24402367719081],[-72.88452884528844,-52.249089409000455],[-72.87372873728737,-52.254155140810106],[-72.86652866528665,-52.25753229534987],[-72.86292862928629,-52.25584371807999],[-72.84132841328413,-52.24064652265104],[-72.8341283412834,-52.23389221357151],[-72.83052830528305,-52.2254493272221],[-72.83052830528305,-52.211940709063036],[-72.82692826928269,-52.20012066817386],[-72.81252812528125,-52.17985774093526],[-72.80892808928088,-52.16972627731597],[-72.80532805328053,-52.14608619553761],[-72.7981279812798,-52.129200422838785],[-72.76932769327694,-52.09880603198089],[-72.7549275492755,-52.07516595020254],[-72.7549275492755,-52.05659160023383],[-72.76932769327694,-52.05152586842418],[-72.82692826928269,-52.09205172290137],[-72.84132841328413,-52.105560341060425],[-72.85212852128521,-52.125823268299015],[-72.85212852128521,-52.16128339096655],[-72.85572855728557,-52.17816916366538],[-72.87012870128702,-52.19674351363409],[-72.88452884528844,-52.19843209090397],[-72.90612906129061,-52.189989204554564],[-72.93132931329313,-52.17816916366538],[-72.94572945729458,-52.166349122776204],[-72.94212942129421,-52.15115192734726],[-72.94932949329493,-52.12244611375925],[-72.93852938529385,-52.09542887744113],[-72.94932949329493,-52.065034486583244],[-72.94572945729458,-52.0498372911543],[-72.93132931329313,-52.039705827535],[-72.92052920529206,-52.046460136614535],[-72.90972909729096,-52.05828017750371],[-72.90252902529025,-52.063345909313355],[-72.89532895328954,-52.05659160023383],[-72.88812888128881,-52.024508632106055],[-72.8809288092881,-52.01268859121688],[-72.87372873728737,-51.999179973057814],[-72.87012870128702,-51.96878558219993],[-72.86652866528665,-51.95527696404086],[-72.85212852128521,-51.94852265496134],[-72.8341283412834,-51.941768345881805],[-72.81612816128161,-51.93839119134204],[-72.80172801728017,-51.93670261407215],[-72.74052740527405,-51.96878558219993],[-72.69732697326972,-51.980605623089104],[-72.68652686526865,-51.98904850943852],[-72.69012690126901,-52.00762285940723],[-72.70452704527045,-52.02113147756629],[-72.71532715327153,-52.03801725026512],[-72.70452704527045,-52.05996875477359],[-72.69372693726937,-52.066723063853125],[-72.66852668526685,-52.0785431047423],[-72.65772657726576,-52.085297413821834],[-72.65052650526505,-52.09205172290137],[-72.65052650526505,-52.10049460925078],[-72.64332643326433,-52.107248918330306],[-72.63252632526324,-52.11231465013996],[-72.63252632526324,-52.108937495600195],[-72.62892628926289,-52.10218318652066],[-72.62172621726216,-52.09880603198089],[-72.61452614526145,-52.10049460925078],[-72.60012600126001,-52.11231465013996],[-72.59652596525964,-52.1173803819496],[-72.5821258212582,-52.13933188645808],[-72.57852578525785,-52.14270904099784],[-72.56772567725677,-52.16466054550632],[-72.54972549725497,-52.17985774093526],[-72.53532535325353,-52.19505493636421],[-72.53532535325353,-52.22207217268233],[-72.54252542525425,-52.228826481761864],[-72.54972549725497,-52.23389221357151],[-72.56052560525605,-52.24064652265104],[-72.56412564125641,-52.252466563540224],[-72.56412564125641,-52.26090944988963],[-72.56772567725677,-52.274418068048696],[-72.57492574925749,-52.30987819071623],[-72.58572585725857,-52.32676396341506],[-72.60012600126001,-52.33858400430424],[-72.62532625326253,-52.34533831338377],[-72.6361263612636,-52.34364973611389],[-72.65052650526505,-52.34027258157412],[-72.66132661326613,-52.335206849764475],[-72.66852668526685,-52.32845254068494],[-72.67932679326793,-52.32338680887529],[-72.68652686526865,-52.32845254068494],[-72.69732697326972,-52.34871546792353],[-72.71532715327153,-52.3622240860826],[-72.74052740527405,-52.375732704241656],[-72.76572765727657,-52.37742128151154],[-72.78372783727836,-52.36560124062236],[-72.77652776527765,-52.38248701332119],[-72.78012780127801,-52.38755274513084],[-72.79452794527946,-52.38586416786095],[-72.80172801728017,-52.38586416786095],[-72.81252812528125,-52.392618476940484],[-72.83052830528305,-52.412881404179075],[-72.85212852128521,-52.42470144506826],[-72.8809288092881,-52.434832908687554],[-72.90972909729096,-52.4398986404972],[-72.93492934929348,-52.441587217767086],[-72.93132931329313,-52.44834152684661],[-72.92772927729277,-52.45171868138638],[-72.92052920529206,-52.45340725865626],[-72.91332913329133,-52.45340725865626],[-72.88812888128881,-52.45171868138638],[-72.83772837728377,-52.43821006322732],[-72.79092790927909,-52.4297671768779],[-72.74772747727476,-52.41119282690919],[-72.72252722527224,-52.40612709509955],[-72.69372693726937,-52.40781567236943],[-72.61452614526145,-52.41963571325861],[-72.58932589325893,-52.42807859960802],[-72.57132571325712,-52.44327579503697],[-72.54972549725497,-52.45340725865626],[-72.52092520925208,-52.44834152684661],[-72.50652506525064,-52.43314433141767],[-72.52092520925208,-52.42470144506826],[-72.60732607326072,-52.416258558718845],[-72.62172621726216,-52.412881404179075],[-72.63252632526324,-52.40612709509955],[-72.6361263612636,-52.397684208750135],[-72.63252632526324,-52.394307054210365],[-72.62532625326253,-52.3909298996706],[-72.61092610926109,-52.38586416786095],[-72.57852578525785,-52.36560124062236],[-72.5461254612546,-52.341961158844],[-72.52812528125281,-52.330141117954824],[-72.510125101251,-52.32507538614518],[-72.49572495724956,-52.31494392252588],[-72.47052470524704,-52.22376074995221],[-72.4669246692467,-52.20349782271362],[-72.47412474124741,-52.186612050014794],[-72.57852578525785,-52.09711745471101],[-72.60732607326072,-52.08360883655195],[-72.64692646926468,-52.0498372911543],[-72.65772657726576,-52.03632867299523],[-72.66492664926649,-51.97047415946981],[-72.66852668526685,-51.960342695850514],[-72.66132661326613,-51.95696554131075],[-72.65412654126541,-51.95021123223122],[-72.64692646926468,-51.94514550042157],[-72.63252632526324,-51.946834077691456],[-72.62532625326253,-51.95358838677098],[-72.62172621726216,-51.965408427660165],[-72.61092610926109,-51.97385131400958],[-72.59652596525964,-51.97553989127946],[-72.58932589325893,-51.96878558219993],[-72.5821258212582,-51.94514550042157],[-72.57492574925749,-51.94007976861192],[-72.56052560525605,-51.943456923151686],[-72.54252542525425,-51.9518998095011],[-72.52812528125281,-51.95527696404086],[-72.50292502925029,-51.9518998095011],[-72.48492484924849,-51.941768345881805],[-72.47052470524704,-51.92994830499263],[-72.45252452524525,-51.9130625322938],[-72.4669246692467,-51.89617675959497],[-72.49932499324993,-51.87422525508649],[-72.50652506525064,-51.859028059657554],[-72.510125101251,-51.837076555149075],[-72.49932499324993,-51.82019078245025],[-72.4669246692467,-51.78979639159236],[-72.49572495724956,-51.76953346435377],[-72.510125101251,-51.72900760987658],[-72.52092520925208,-51.71381041444764],[-72.56412564125641,-51.70199037355846],[-72.60732607326072,-51.678350291780106],[-72.62532625326253,-51.66653025089092],[-72.6361263612636,-51.654710210001745],[-72.66852668526685,-51.60743004644503],[-72.69012690126901,-51.59392142828597],[-72.71172711727117,-51.58210138739679],[-72.73692736927369,-51.57534707831726],[-72.7621276212762,-51.57028134650761],[-72.82692826928269,-51.57028134650761],[-72.83772837728377,-51.56690419196784],[-72.85932859328592,-51.553395573808785],[-72.87012870128702,-51.550018419269016],[-72.89892898928989,-51.548329841999134],[-72.91692916929169,-51.54664126472925],[-72.92772927729277,-51.54326411018949],[-72.93132931329313,-51.534821223840076],[-72.94212942129421,-51.51455829660148],[-72.94572945729458,-51.50780398752195],[-72.9709297092971,-51.49767252390266],[-73.02853028530285,-51.489229637553244],[-73.05373053730537,-51.487541060283355],[-73.06813068130681,-51.47909817393394],[-73.07893078930789,-51.45883524669535],[-73.0861308613086,-51.435195164917],[-73.07893078930789,-51.41999796948805],[-73.08973089730897,-51.41999796948805],[-73.12213122131222,-51.44026089672664],[-73.14013140131401,-51.447015205806174],[-73.24453244532445,-51.46558955577488],[-73.2589325893259,-51.470655287584535],[-73.26613266132661,-51.48078675120383],[-73.26253262532624,-51.49429536936289],[-73.24453244532445,-51.506115410252065],[-73.22653226532265,-51.50780398752195],[-73.17253172531726,-51.49767252390266],[-73.15813158131581,-51.489229637553244],[-73.14013140131401,-51.487541060283355],[-73.12213122131222,-51.49767252390266],[-73.10413104131041,-51.5027382557123],[-73.05373053730537,-51.5027382557123],[-73.04293042930429,-51.511181142061716],[-73.04293042930429,-51.52300118295089],[-73.03933039330393,-51.528066914760544],[-73.03933039330393,-51.534821223840076],[-73.04653046530466,-51.54664126472925],[-73.05373053730537,-51.551706996538904],[-73.07173071730718,-51.5618384601582],[-73.10773107731077,-51.58378996466667],[-73.11133111331112,-51.59392142828597],[-73.0969309693097,-51.60405289190526],[-73.03933039330393,-51.56521561469796],[-73.02493024930249,-51.56014988288831],[-73.02133021330214,-51.55508415107867],[-73.02493024930249,-51.548329841999134],[-73.02133021330214,-51.54326411018949],[-73.01413014130141,-51.53650980110996],[-73.00333003330033,-51.529755492030425],[-72.98892988929889,-51.52637833749066],[-72.97812978129781,-51.53313264657019],[-72.94932949329493,-51.55846130561843],[-72.94212942129421,-51.56352703742808],[-72.9241292412924,-51.56690419196784],[-72.85932859328592,-51.597298582825736],[-72.8341283412834,-51.59898716009562],[-72.81612816128161,-51.59561000555585],[-72.79452794527946,-51.59561000555585],[-72.77292772927728,-51.60743004644503],[-72.75852758527584,-51.62262724187397],[-72.71532715327153,-51.68172744631987],[-72.71172711727117,-51.69017033266928],[-72.70452704527045,-51.698613219018696],[-72.69012690126901,-51.70030179628858],[-72.6361263612636,-51.70705610536811],[-72.63252632526324,-51.70874468263799],[-72.62172621726216,-51.71887614625729],[-72.61812618126181,-51.72225330079706],[-72.61092610926109,-51.72225330079706],[-72.5929259292593,-51.72056472352717],[-72.56412564125641,-51.72394187806694],[-72.55692556925568,-51.72900760987658],[-72.54972549725497,-51.740827650765766],[-72.55332553325533,-51.75771342346459],[-72.56412564125641,-51.777976350703184],[-72.57852578525785,-51.796550700671894],[-72.60372603726037,-51.80668216429119],[-72.63252632526324,-51.8252565142599],[-72.64692646926468,-51.83201082333943],[-72.65772657726576,-51.83201082333943],[-72.70092700927009,-51.83201082333943],[-72.71532715327153,-51.837076555149075],[-72.72252722527224,-51.838765132418956],[-72.72612726127261,-51.83369940060931],[-72.72972729727297,-51.83032224606955],[-72.73692736927369,-51.818502205180366],[-72.73692736927369,-51.816813627910484],[-72.78732787327873,-51.81005931883095],[-72.80172801728017,-51.803305009751426],[-72.81252812528125,-51.78473065978271],[-72.83052830528305,-51.76784488708389],[-72.85932859328592,-51.76277915527424],[-72.88452884528844,-51.774599196163415],[-72.89892898928989,-51.7762877734333],[-72.90612906129061,-51.766156309814],[-72.90972909729096,-51.75771342346459],[-72.91692916929169,-51.75771342346459],[-72.96372963729637,-51.76784488708389],[-72.97812978129781,-51.76953346435377],[-72.98892988929889,-51.76277915527424],[-72.98892988929889,-51.75264769165494],[-72.98532985329852,-51.74420480530553],[-72.98172981729817,-51.73407334168623],[-72.98892988929889,-51.72225330079706],[-72.99972999729997,-51.71887614625729],[-73.02853028530285,-51.717187568987406],[-73.03573035730356,-51.71043325990787],[-73.03933039330393,-51.70199037355846],[-73.050130501305,-51.696924641748815],[-73.06093060930608,-51.693547487209045],[-73.07173071730718,-51.693547487209045],[-73.12213122131222,-51.70199037355846],[-73.15093150931509,-51.70367895082834],[-73.17253172531726,-51.693547487209045],[-73.18333183331833,-51.66990740543069],[-73.17973179731797,-51.65133305546198],[-73.18333183331833,-51.63782443730292],[-73.23013230132301,-51.629381550953504],[-73.24093240932409,-51.610807200984794],[-73.25533255332553,-51.60405289190526],[-73.26973269732697,-51.60405289190526],[-73.28053280532805,-51.60574146917515],[-73.29133291332913,-51.610807200984794],[-73.29493294932949,-51.61756151006433],[-73.25533255332553,-51.636135860033036],[-73.23733237332372,-51.64795590092221],[-73.22653226532265,-51.66653025089092],[-73.23013230132301,-51.68003886904999],[-73.23373233732337,-51.6884817553994],[-73.23373233732337,-51.696924641748815],[-73.2229322293223,-51.71043325990787],[-73.2121321213212,-51.717187568987406],[-73.20133201332013,-51.72056472352717],[-73.07173071730718,-51.72394187806694],[-73.02493024930249,-51.74420480530553],[-72.99612996129962,-51.78979639159236],[-73.02853028530285,-51.777976350703184],[-73.06813068130681,-51.754336268924824],[-73.10773107731077,-51.74420480530553],[-73.14013140131401,-51.76953346435377],[-73.12933129331293,-51.7762877734333],[-73.11493114931149,-51.7762877734333],[-73.10413104131041,-51.77291061889353],[-73.09333093330933,-51.766156309814],[-73.08253082530825,-51.76109057800436],[-73.07533075330753,-51.76277915527424],[-73.06093060930608,-51.76953346435377],[-73.050130501305,-51.777976350703184],[-73.04653046530466,-51.798239277941775],[-73.04653046530466,-51.818502205180366],[-73.050130501305,-51.83201082333943],[-73.08253082530825,-51.8539623278479],[-73.17253172531726,-51.859028059657554],[-73.20853208532085,-51.879290986896144],[-73.19053190531905,-51.88773387324556],[-73.16893168931689,-51.88942245051544],[-73.14733147331474,-51.88604529597568],[-73.12933129331293,-51.87591383235638],[-73.11853118531185,-51.87084810054673],[-73.07893078930789,-51.87253667781661],[-73.06813068130681,-51.86915952327685],[-73.04293042930429,-51.85058517330814],[-73.0069300693007,-51.83201082333943],[-72.9709297092971,-51.821879359720135],[-72.94212942129421,-51.82694509152978],[-72.92052920529206,-51.859028059657554],[-72.93852938529385,-51.86915952327685],[-73.00333003330033,-51.88604529597568],[-73.06093060930608,-51.91643968683356],[-73.08253082530825,-51.921505418643214],[-73.10413104131041,-51.923193995913095],[-73.12573125731257,-51.92825972772274],[-73.14373143731437,-51.94007976861192],[-73.15453154531545,-51.95865411858063],[-73.15453154531545,-51.97216273673969],[-73.17253172531726,-52.022820054836174],[-73.1761317613176,-52.046460136614535],[-73.17253172531726,-52.066723063853125],[-73.1761317613176,-52.08192025928207],[-73.19413194131941,-52.09036314563148],[-73.2229322293223,-52.09205172290137],[-73.24093240932409,-52.0785431047423],[-73.27333273332734,-52.039705827535],[-73.27333273332734,-52.022820054836174],[-73.26973269732697,-51.97216273673969],[-73.27333273332734,-51.960342695850514],[-73.28053280532805,-51.9518998095011],[-73.3021330213302,-51.899553914134735],[-73.29493294932949,-51.87084810054673],[-73.29853298532984,-51.83201082333943],[-73.32733327333273,-51.7273190326067],[-73.3381333813338,-51.70030179628858],[-73.35613356133561,-51.67666171451022],[-73.3849338493385,-51.653021632731864],[-73.3849338493385,-51.67159598270057],[-73.38133381333813,-51.68341602358975],[-73.35973359733597,-51.70705610536811],[-73.34893348933488,-51.72225330079706],[-73.34173341733417,-51.75264769165494],[-73.33093330933309,-51.80161643248154],[-73.32733327333273,-51.860716636927435],[-73.31293312933128,-51.95696554131075],[-73.30933309333093,-52.022820054836174],[-73.28413284132841,-52.10387176379054],[-73.28413284132841,-52.14270904099784],[-73.29133291332913,-52.166349122776204],[-73.31653316533165,-52.166349122776204],[-73.34173341733417,-52.15452908188703],[-73.35973359733597,-52.14608619553761],[-73.39573395733957,-52.13426615464843],[-73.39933399333992,-52.129200422838785],[-73.40293402934029,-52.1173803819496],[-73.41013410134101,-52.107248918330306],[-73.4209342093421,-52.10049460925078],[-73.45333453334533,-52.09374030017125],[-73.53973539735397,-52.05490302296395],[-73.56493564935649,-52.039705827535],[-73.58293582935829,-52.02113147756629],[-73.57933579335793,-52.005934282137346],[-73.57213572135721,-51.983982777628874],[-73.58293582935829,-51.965408427660165],[-73.60093600936008,-51.94852265496134],[-73.61173611736118,-51.93501403680227],[-73.60093600936008,-51.93501403680227],[-73.59373593735937,-51.93332545953239],[-73.58653586535866,-51.93163688226251],[-73.57933579335793,-51.92657115045286],[-73.59373593735937,-51.91137395502392],[-73.62253622536225,-51.880979564166026],[-73.64413644136441,-51.84889659603826],[-73.65133651336512,-51.82863366879966],[-73.62253622536225,-51.81174789610083],[-73.60093600936008,-51.821879359720135],[-73.56493564935649,-51.86578236873708],[-73.53613536135362,-51.884356718705796],[-73.52533525335252,-51.89448818232509],[-73.52173521735217,-51.90968537775403],[-73.52173521735217,-51.923193995913095],[-73.51453514535145,-51.93839119134204],[-73.50373503735037,-51.95021123223122],[-73.4641346413464,-51.96709700493005],[-73.45333453334533,-51.99411424124817],[-73.43533435334353,-52.01606574575664],[-73.39933399333992,-52.01606574575664],[-73.41373413734136,-51.9907370867084],[-73.48213482134821,-51.9130625322938],[-73.47493474934748,-51.91137395502392],[-73.46773467734677,-51.90968537775403],[-73.4641346413464,-51.90630822321427],[-73.45333453334533,-51.90630822321427],[-73.46053460534606,-51.89617675959497],[-73.47133471334713,-51.8927996050552],[-73.47853478534785,-51.89111102778532],[-73.48933489334892,-51.88604529597568],[-73.49293492934929,-51.87591383235638],[-73.49293492934929,-51.855650905117784],[-73.50013500135,-51.85058517330814],[-73.51813518135181,-51.84720801876837],[-73.52893528935289,-51.83538797787919],[-73.53253532535325,-51.818502205180366],[-73.52173521735217,-51.803305009751426],[-73.55053550535504,-51.78979639159236],[-73.57933579335793,-51.76784488708389],[-73.590135901359,-51.74927053711518],[-73.53253532535325,-51.735761918956115],[-73.50373503735037,-51.72225330079706],[-73.47493474934748,-51.70536752809823],[-73.46053460534606,-51.68679317812952],[-73.48933489334892,-51.68679317812952],[-73.5109351093511,-51.695236064478934],[-73.55053550535504,-51.72225330079706],[-73.55053550535504,-51.68003886904999],[-73.56133561335614,-51.69017033266928],[-73.57933579335793,-51.71381041444764],[-73.590135901359,-51.72225330079706],[-73.61173611736118,-51.72056472352717],[-73.62253622536225,-51.70705610536811],[-73.62973629736297,-51.693547487209045],[-73.6369363693637,-51.68679317812952],[-73.65493654936549,-51.6884817553994],[-73.65853658536585,-51.695236064478934],[-73.66213662136622,-51.70367895082834],[-73.67653676536764,-51.7273190326067],[-73.68373683736837,-51.74251622803565],[-73.68373683736837,-51.756024846194705],[-73.68013680136801,-51.76953346435377],[-73.69813698136981,-51.78473065978271],[-73.71973719737197,-51.7762877734333],[-73.7629376293763,-51.735761918956115],[-73.7629376293763,-51.715498991717524],[-73.81333813338134,-51.6884817553994],[-73.80613806138061,-51.66990740543069],[-73.78813788137882,-51.6597759418114],[-73.73773737737378,-51.65133305546198],[-73.7161371613716,-51.6395130145728],[-73.73773737737378,-51.63782443730292],[-73.75933759337593,-51.64289016911257],[-73.78453784537845,-51.64457874638245],[-73.80613806138061,-51.636135860033036],[-73.82053820538205,-51.629381550953504],[-73.82773827738276,-51.62769297368362],[-73.83853838538386,-51.631070128223385],[-73.85293852938528,-51.63275870549327],[-73.86373863738638,-51.629381550953504],[-73.87453874538745,-51.62093866460409],[-73.88533885338853,-51.61756151006433],[-73.89973899738997,-51.62600439641374],[-73.90333903339032,-51.61756151006433],[-73.90333903339032,-51.612495778254676],[-73.90333903339032,-51.60574146917515],[-73.89973899738997,-51.597298582825736],[-73.89253892538925,-51.58716711920644],[-73.88533885338853,-51.58378996466667],[-73.87453874538745,-51.58210138739679],[-73.86373863738638,-51.57703565558714],[-73.82773827738276,-51.54664126472925],[-73.81693816938169,-51.53650980110996],[-73.88173881738817,-51.53650980110996],[-73.91053910539105,-51.52637833749066],[-73.92133921339213,-51.49767252390266],[-73.91773917739177,-51.490918214823125],[-73.91053910539105,-51.48416390574359],[-73.90693906939069,-51.47909817393394],[-73.91053910539105,-51.470655287584535],[-73.91413914139142,-51.46558955577488],[-73.91773917739177,-51.45545809215559],[-73.9249392493925,-51.45039236034594],[-73.92853928539284,-51.43857231945676],[-73.92853928539284,-51.4149322376784],[-73.93573935739357,-51.406489351328986],[-73.93573935739357,-51.39973504224946],[-73.89973899738997,-51.37440638320122],[-73.88173881738817,-51.367652074121686],[-73.87093870938709,-51.38284926955063],[-73.86013860138601,-51.39298073316993],[-73.81333813338134,-51.39298073316993],[-73.80253802538024,-51.40311219678922],[-73.79533795337953,-51.41830939221817],[-73.78093780937809,-51.43350658764711],[-73.74853748537485,-51.45376951488571],[-73.71253712537126,-51.470655287584535],[-73.69813698136981,-51.48078675120383],[-73.68733687336874,-51.49429536936289],[-73.66213662136622,-51.5415755329196],[-73.65493654936549,-51.56690419196784],[-73.62973629736297,-51.59561000555585],[-73.62253622536225,-51.62769297368362],[-73.61173611736118,-51.62600439641374],[-73.60453604536045,-51.610807200984794],[-73.60453604536045,-51.590544273746204],[-73.61173611736118,-51.57872423285703],[-73.64053640536405,-51.53650980110996],[-73.61533615336153,-51.52300118295089],[-73.60453604536045,-51.5128697193316],[-73.60813608136081,-51.50780398752195],[-73.64053640536405,-51.509492564791834],[-73.65133651336512,-51.506115410252065],[-73.65853658536585,-51.49429536936289],[-73.65493654936549,-51.468966710314646],[-73.60093600936008,-51.45208093761582],[-73.59733597335973,-51.43350658764711],[-73.6369363693637,-51.447015205806174],[-73.66933669336693,-51.43857231945676],[-73.69093690936909,-51.4149322376784],[-73.71973719737197,-51.35583203323251],[-73.71973719737197,-51.347389146883096],[-73.71973719737197,-51.31024044694568],[-73.71973719737197,-51.29842040605649],[-73.7161371613716,-51.29335467424685],[-73.7161371613716,-51.2882889424372],[-73.72333723337233,-51.279846056087784],[-73.74133741337413,-51.26971459246849],[-73.74493744937449,-51.262960283388956],[-73.74853748537485,-51.25114024249978],[-73.7521375213752,-51.2494516652299],[-73.77373773737737,-51.241008778880484],[-73.78453784537845,-51.23425446980095],[-73.78453784537845,-51.22412300618166],[-73.78093780937809,-51.21568011983224],[-73.77373773737737,-51.20892581075271],[-73.77013770137701,-51.203860078943066],[-73.75933759337593,-51.19541719259365],[-73.73773737737378,-51.20892581075271],[-73.70533705337053,-51.23763162434072],[-73.70173701737016,-51.24776308796002],[-73.70173701737016,-51.25789455157931],[-73.70173701737016,-51.26802601519861],[-73.69453694536945,-51.27646890154802],[-73.68373683736837,-51.27646890154802],[-73.68013680136801,-51.264648860658845],[-73.68733687336874,-51.24438593342025],[-73.69093690936909,-51.21399154256236],[-73.69093690936909,-51.202171501673185],[-73.6729367293673,-51.19372861532377],[-73.6729367293673,-51.18697430624424],[-73.69093690936909,-51.190351460784],[-73.70533705337053,-51.190351460784],[-73.7161371613716,-51.18697430624424],[-73.73053730537305,-51.180219997164706],[-73.71973719737197,-51.16839995627553],[-73.69453694536945,-51.139694142687524],[-73.70533705337053,-51.13125125633811],[-73.7161371613716,-51.13462841087787],[-73.72333723337233,-51.141382719957406],[-73.73413734137341,-51.14475987449717],[-73.74493744937449,-51.141382719957406],[-73.77013770137701,-51.117742638179045],[-73.77373773737737,-51.12787410179834],[-73.77013770137701,-51.13293983360799],[-73.76653766537665,-51.13800556541764],[-73.7629376293763,-51.14475987449717],[-73.7629376293763,-51.159957069926115],[-73.7629376293763,-51.16333422446588],[-73.77013770137701,-51.16671137900565],[-73.78453784537845,-51.17346568808517],[-73.85653856538565,-51.22750016072142],[-73.8781387813878,-51.23763162434072],[-73.89613896138961,-51.2393202016106],[-73.91413914139142,-51.23087731526119],[-73.94293942939429,-51.20892581075271],[-73.9681396813968,-51.19372861532377],[-73.97533975339753,-51.18697430624424],[-73.97893978939788,-51.180219997164706],[-73.98253982539825,-51.1515141835767],[-73.99333993339933,-51.136316988147755],[-74.00774007740077,-51.117742638179045],[-74.02214022140221,-51.11098832909952],[-74.02934029340292,-51.12787410179834],[-74.02574025740257,-51.14813702903694],[-74.01854018540185,-51.17008853354541],[-74.01854018540185,-51.190351460784],[-74.02934029340292,-51.20723723348283],[-74.05454054540544,-51.21230296529248],[-74.07974079740796,-51.203860078943066],[-74.10494104941048,-51.19372861532377],[-74.130141301413,-51.18697430624424],[-74.13734137341373,-51.17684284262494],[-74.13374133741337,-51.11098832909952],[-74.13374133741337,-51.092413979130804],[-74.14814148141481,-51.08059393824163],[-74.15534155341552,-51.07046247462233],[-74.15174151741518,-51.060331011003036],[-74.14814148141481,-51.05188812465362],[-74.09774097740977,-51.00123080655714],[-74.07614076140761,-50.98772218839808],[-74.08694086940869,-50.98096787931855],[-74.08694086940869,-50.974213570239016],[-74.07974079740796,-50.9657706838896],[-74.07254072540725,-50.96070495207996],[-74.07254072540725,-50.953950643000425],[-74.09054090540906,-50.95732779754019],[-74.10134101341013,-50.96408210661972],[-74.18414184141841,-51.03331377468491],[-74.19494194941949,-51.03837950649456],[-74.23094230942309,-51.035002351954795],[-74.23814238142381,-51.02824804287526],[-74.23814238142381,-50.98941076566796],[-74.24174241742418,-50.974213570239016],[-74.22374223742237,-50.9657706838896],[-74.22374223742237,-50.95563922027031],[-74.23814238142381,-50.94719633392089],[-74.2561425614256,-50.93875344757148],[-74.23094230942309,-50.90667047944371],[-74.19494194941949,-50.88471897493523],[-74.15174151741518,-50.872898934046056],[-74.10494104941048,-50.871210356776174],[-73.99693996939969,-50.88471897493523],[-73.97533975339753,-50.891473284014765],[-73.95013950139501,-50.893161861284646],[-73.93213932139321,-50.88640755220512],[-73.92853928539284,-50.86445604769664],[-73.90333903339032,-50.872898934046056],[-73.87453874538745,-50.889784706744884],[-73.85653856538565,-50.910047633983474],[-73.85653856538565,-50.933687715761835],[-73.80253802538024,-50.96070495207996],[-73.80253802538024,-50.94719633392089],[-73.79173791737917,-50.93199913849195],[-73.78813788137882,-50.92017909760277],[-73.81693816938169,-50.87796466585571],[-73.85653856538565,-50.84419312045805],[-73.86373863738638,-50.84250454318817],[-73.87093870938709,-50.84419312045805],[-73.8781387813878,-50.84250454318817],[-73.8781387813878,-50.834061656838756],[-73.8781387813878,-50.828995925029105],[-73.87093870938709,-50.82561877048934],[-73.86733867338673,-50.82393019321946],[-73.86373863738638,-50.82055303867969],[-73.85293852938528,-50.79691295690134],[-73.83133831338313,-50.79691295690134],[-73.80253802538024,-50.808732997790514],[-73.77733777337772,-50.82561877048934],[-73.7629376293763,-50.830684502298986],[-73.74853748537485,-50.828995925029105],[-73.74133741337413,-50.82055303867969],[-73.74853748537485,-50.81211015233028],[-73.77733777337772,-50.80197868871098],[-73.78813788137882,-50.79691295690134],[-73.78453784537845,-50.788470070551924],[-73.77733777337772,-50.77496145239286],[-73.77013770137701,-50.75807567969403],[-73.77013770137701,-50.74456706153497],[-73.77373773737737,-50.729369866106026],[-73.78093780937809,-50.70066405251802],[-73.78453784537845,-50.68715543435896],[-73.77373773737737,-50.670269661660136],[-73.75573755737557,-50.66013819804083],[-73.73413734137341,-50.65507246623119],[-73.70173701737016,-50.65000673442154],[-73.66933669336693,-50.63987527080224],[-73.65493654936549,-50.63818669353236],[-73.6369363693637,-50.63987527080224],[-73.61893618936189,-50.644941002611894],[-73.60453604536045,-50.65169531169142],[-73.590135901359,-50.65844962077095],[-73.56133561335614,-50.70066405251802],[-73.55413554135541,-50.707418361597554],[-73.53253532535325,-50.705729784327666],[-73.52893528935289,-50.704041207057784],[-73.53253532535325,-50.69728689797826],[-73.52893528935289,-50.68715543435896],[-73.51813518135181,-50.67702397073966],[-73.50733507335073,-50.67195823893002],[-73.47493474934748,-50.67195823893002],[-73.48573485734858,-50.66013819804083],[-73.50733507335073,-50.65676104350107],[-73.52893528935289,-50.65676104350107],[-73.55053550535504,-50.65338388896131],[-73.55773557735577,-50.63312096172271],[-73.56133561335614,-50.628055229913066],[-73.56853568535685,-50.624678075373296],[-73.57933579335793,-50.622989498103415],[-73.59733597335973,-50.624678075373296],[-73.6369363693637,-50.61792376629377],[-73.66933669336693,-50.602726570864824],[-73.72333723337233,-50.55882356184787],[-73.72693726937268,-50.54869209822858],[-73.71973719737197,-50.53349490279963],[-73.70893708937089,-50.519986284640574],[-73.69813698136981,-50.51492055283092],[-73.65853658536585,-50.51323197556104],[-73.64053640536405,-50.50816624375139],[-73.6261362613626,-50.501411934671864],[-73.60813608136081,-50.482837584703155],[-73.58293582935829,-50.43218026660667],[-73.56493564935649,-50.40516303028855],[-73.58653586535866,-50.40347445301867],[-73.60813608136081,-50.42373738025726],[-73.64773647736477,-50.47439469835374],[-73.65853658536585,-50.482837584703155],[-73.66933669336693,-50.4879033165128],[-73.68373683736837,-50.49296904832245],[-73.70893708937089,-50.49634620286221],[-73.73053730537305,-50.50647766648151],[-73.75933759337593,-50.51492055283092],[-73.76653766537665,-50.53349490279963],[-73.77733777337772,-50.57739791181658],[-73.78453784537845,-50.58752937543588],[-73.79173791737917,-50.59259510724553],[-73.7989379893799,-50.60103799359494],[-73.80253802538024,-50.614546611754],[-73.80253802538024,-50.626366652643185],[-73.7989379893799,-50.63649811626248],[-73.7989379893799,-50.644941002611894],[-73.82413824138241,-50.67871254800954],[-73.82413824138241,-50.69897547524814],[-73.81333813338134,-50.71754982521685],[-73.80973809738097,-50.7411899069952],[-73.82413824138241,-50.75807567969403],[-73.84573845738457,-50.77665002966274],[-73.87093870938709,-50.790158647821805],[-73.88533885338853,-50.79353580236157],[-73.89973899738997,-50.791847225091686],[-73.90693906939069,-50.8002901114411],[-73.92133921339213,-50.81717588413993],[-73.93573935739357,-50.82730734775922],[-73.94653946539465,-50.828995925029105],[-73.98613986139861,-50.830684502298986],[-74.04374043740437,-50.82224161594957],[-74.06174061740617,-50.81379872960016],[-74.11214112141121,-50.77833860693263],[-74.12654126541265,-50.76314141150368],[-74.06894068940689,-50.73612417518556],[-74.05814058140581,-50.727681288836145],[-74.06174061740617,-50.7124840934072],[-74.07974079740796,-50.70066405251802],[-74.11934119341193,-50.68715543435896],[-74.11574115741158,-50.70066405251802],[-74.11574115741158,-50.707418361597554],[-74.11214112141121,-50.71417267067708],[-74.13374133741337,-50.73274702064579],[-74.14814148141481,-50.729369866106026],[-74.16614166141662,-50.68715543435896],[-74.18054180541804,-50.666892507120366],[-74.22014220142201,-50.626366652643185],[-74.23454234542345,-50.604415148134706],[-74.22014220142201,-50.585840798166],[-74.20214202142022,-50.57233218000694],[-74.19854198541985,-50.55882356184787],[-74.22014220142201,-50.541937789149046],[-74.23454234542345,-50.540249211879164],[-74.24894248942489,-50.540249211879164],[-74.25974259742597,-50.53518348006951],[-74.2669426694267,-50.50647766648151],[-74.27414274142741,-50.49634620286221],[-74.29574295742957,-50.48114900743327],[-74.28134281342813,-50.47439469835374],[-74.22014220142201,-50.464263234734446],[-74.20934209342093,-50.464263234734446],[-74.20574205742057,-50.477771852893504],[-74.19494194941949,-50.49465762559233],[-74.18054180541804,-50.51323197556104],[-74.16974169741697,-50.52505201645022],[-74.15894158941589,-50.540249211879164],[-74.1409414094141,-50.579086489086464],[-74.12654126541265,-50.59090652997565],[-74.10854108541085,-50.58752937543588],[-74.11574115741158,-50.56895502546717],[-74.14454144541445,-50.53518348006951],[-74.1409414094141,-50.53180632552975],[-74.130141301413,-50.519986284640574],[-74.12654126541265,-50.51492055283092],[-74.14814148141481,-50.50647766648151],[-74.15534155341552,-50.49296904832245],[-74.14814148141481,-50.482837584703155],[-74.12654126541265,-50.48114900743327],[-74.10854108541085,-50.4879033165128],[-74.07254072540725,-50.516609130100804],[-74.05454054540544,-50.521674861910455],[-73.93933939339394,-50.540249211879164],[-73.91773917739177,-50.545314943688815],[-73.89613896138961,-50.54869209822858],[-73.8781387813878,-50.541937789149046],[-73.90693906939069,-50.53011774825987],[-73.97533975339753,-50.51154339829116],[-74.0041400414004,-50.50816624375139],[-74.0149401494015,-50.503100511941746],[-74.01854018540185,-50.48959189378268],[-74.01854018540185,-50.47439469835374],[-74.01134011340113,-50.464263234734446],[-74.00774007740077,-50.45582034838503],[-74.0149401494015,-50.4490660393055],[-74.02574025740257,-50.44737746203562],[-74.03294032940329,-50.4490660393055],[-74.05814058140581,-50.46764038927421],[-74.07254072540725,-50.46932896654409],[-74.08334083340833,-50.46595181200433],[-74.09774097740977,-50.44737746203562],[-74.12294122941229,-50.43218026660667],[-74.130141301413,-50.42373738025726],[-74.11574115741158,-50.418671648447614],[-74.10134101341013,-50.416983071177725],[-74.08694086940869,-50.4102287620982],[-74.07614076140761,-50.401785875748786],[-74.07254072540725,-50.38827725758972],[-74.06534065340654,-50.37983437124031],[-74.04734047340473,-50.373080062160774],[-74.0149401494015,-50.36463717581137],[-74.03294032940329,-50.36294859854148],[-74.06894068940689,-50.354505712192065],[-74.08334083340833,-50.357882866731835],[-74.08694086940869,-50.3612600212716],[-74.09054090540906,-50.37983437124031],[-74.09054090540906,-50.38490010304996],[-74.09774097740977,-50.38658868031984],[-74.11214112141121,-50.3899658348596],[-74.16614166141662,-50.4102287620982],[-74.18054180541804,-50.41191733936808],[-74.2129421294213,-50.40516303028855],[-74.22734227342274,-50.40516303028855],[-74.25254252542526,-50.440623152956086],[-74.28854288542885,-50.42711453479702],[-74.31734317343174,-50.4000972984789],[-74.32094320943209,-50.38490010304996],[-74.31374313743137,-50.378145793970425],[-74.28854288542885,-50.34099709403301],[-74.28134281342813,-50.33255420768359],[-74.27054270542705,-50.32579989860406],[-74.26334263342633,-50.31735701225465],[-74.27774277742778,-50.30215981682571],[-74.27054270542705,-50.28020831231723],[-74.28134281342813,-50.26501111688828],[-74.29934299342993,-50.258256807808756],[-74.31014310143101,-50.26501111688828],[-74.31374313743137,-50.28358546685699],[-74.33534335343353,-50.312291280445],[-74.3389433894339,-50.32579989860406],[-74.35334353343534,-50.359571444001716],[-74.39294392943928,-50.36632575308125],[-74.43974439744397,-50.357882866731835],[-74.47574475744757,-50.34437424857277],[-74.46854468544684,-50.34099709403301],[-74.46134461344613,-50.33255420768359],[-74.45414454144542,-50.32917705314383],[-74.46854468544684,-50.32411132133418],[-74.49374493744936,-50.32579989860406],[-74.5081450814508,-50.3224227440643],[-74.51534515345153,-50.31904558952453],[-74.53694536945369,-50.297094085016056],[-74.52254522545225,-50.28189688958711],[-74.49374493744936,-50.26163396234852],[-74.48294482944829,-50.24812534418946],[-74.49734497344973,-50.24981392145934],[-74.52254522545225,-50.26163396234852],[-74.53694536945369,-50.26163396234852],[-74.54774547745477,-50.254879653268986],[-74.5441454414544,-50.24474818964969],[-74.52974529745298,-50.232928148760514],[-74.52254522545225,-50.22110810787134],[-74.54774547745477,-50.22617383968098],[-74.56934569345692,-50.234616726030396],[-74.5909459094591,-50.23968245784005],[-74.61974619746196,-50.234616726030396],[-74.61614616146161,-50.2244852624111],[-74.60894608946089,-50.214353798791805],[-74.60174601746017,-50.20759948971227],[-74.5909459094591,-50.20084518063274],[-74.59814598145981,-50.194090871553215],[-74.62334623346233,-50.20591091244239],[-74.65574655746558,-50.214353798791805],[-74.68454684546845,-50.209288066982154],[-74.69534695346952,-50.18227083066403],[-74.69174691746917,-50.16876221250497],[-74.68454684546845,-50.16031932615556],[-74.65934659346593,-50.14512213072661],[-74.64134641346413,-50.12485920348802],[-74.62694626946269,-50.11472773986873],[-74.61614616146161,-50.11135058532896],[-74.60174601746017,-50.107973430789194],[-74.57294572945729,-50.09953054443978],[-74.55854558545585,-50.0978419671699],[-74.53694536945369,-50.10121912170966],[-74.53334533345333,-50.11135058532896],[-74.53334533345333,-50.12148204894825],[-74.52974529745298,-50.131613512567554],[-74.51894518945188,-50.13499066710732],[-74.50454504545046,-50.131613512567554],[-74.49374493744936,-50.12485920348802],[-74.49734497344973,-50.11472773986873],[-74.5081450814508,-50.10459627624943],[-74.5081450814508,-50.09446481263013],[-74.50454504545046,-50.084333349010834],[-74.49374493744936,-50.07589046266142],[-74.47574475744757,-50.08602192628072],[-74.46134461344613,-50.0978419671699],[-74.46854468544684,-50.0978419671699],[-74.46134461344613,-50.0978419671699],[-74.34614346143461,-50.08602192628072],[-74.33534335343353,-50.089399080820485],[-74.33174331743317,-50.107973430789194],[-74.32454324543245,-50.113039162598845],[-74.29934299342993,-50.12485920348802],[-74.28854288542885,-50.131613512567554],[-74.31734317343174,-50.16200790342544],[-74.32454324543245,-50.172139367044736],[-74.31374313743137,-50.16876221250497],[-74.3029430294303,-50.1653850579652],[-74.28854288542885,-50.16369648069532],[-74.27774277742778,-50.1653850579652],[-74.27054270542705,-50.16876221250497],[-74.2669426694267,-50.1755165215845],[-74.26334263342633,-50.17889367612427],[-74.24174241742418,-50.1856479852038],[-74.22374223742237,-50.19746802609298],[-74.20934209342093,-50.210976644252035],[-74.20214202142022,-50.22786241695086],[-74.21654216542166,-50.24812534418946],[-74.19494194941949,-50.25994538507864],[-74.1769417694177,-50.253191075999105],[-74.14454144541445,-50.22786241695086],[-74.12294122941229,-50.22279668514122],[-74.09774097740977,-50.22786241695086],[-73.95733957339573,-50.28696262139676],[-73.90693906939069,-50.29878266228594],[-73.85653856538565,-50.28865119866664],[-73.8781387813878,-50.275142580507584],[-73.97533975339753,-50.254879653268986],[-74.00054000540005,-50.24137103510993],[-74.02214022140221,-50.2244852624111],[-74.02574025740257,-50.212665221521924],[-73.99693996939969,-50.214353798791805],[-74.00774007740077,-50.20253375790262],[-74.02574025740257,-50.20084518063274],[-74.06534065340654,-50.20759948971227],[-74.06894068940689,-50.20422233517251],[-74.08334083340833,-50.195779448823096],[-74.09054090540906,-50.194090871553215],[-74.09774097740977,-50.194090871553215],[-74.11214112141121,-50.19915660336286],[-74.15894158941589,-50.20253375790262],[-74.17334173341733,-50.19915660336286],[-74.19494194941949,-50.1856479852038],[-74.20574205742057,-50.1755165215845],[-74.20934209342093,-50.16707363523509],[-74.21654216542166,-50.13836782164708],[-74.22014220142201,-50.12317062621814],[-74.23814238142381,-50.0978419671699],[-74.24174241742418,-50.07926761720119],[-74.24894248942489,-50.08095619447107],[-74.28854288542885,-50.065758999042124],[-74.29934299342993,-50.0590046899626],[-74.34614346143461,-50.01510168094565],[-74.36414364143641,-49.989773021897406],[-74.36054360543605,-49.97288724919858],[-74.36414364143641,-49.9509357446901],[-74.34974349743497,-49.93573854926116],[-74.32814328143282,-49.927295662911746],[-74.31734317343174,-49.92898424018163],[-74.31374313743137,-49.94924716742022],[-74.29934299342993,-49.94924716742022],[-74.28134281342813,-49.93911570380092],[-74.2669426694267,-49.93236139472139],[-74.22734227342274,-49.940804281070804],[-74.19854198541985,-49.95937863103951],[-74.14814148141481,-50.01172452640588],[-74.1409414094141,-50.01510168094565],[-74.130141301413,-50.01172452640588],[-74.12294122941229,-50.004970217326346],[-74.11214112141121,-50.00159306278658],[-74.10494104941048,-50.003281640056464],[-74.07614076140761,-50.01510168094565],[-74.07254072540725,-50.02016741275529],[-74.06174061740617,-50.031987453644476],[-74.05814058140581,-50.03536460818424],[-74.04734047340473,-50.03705318545412],[-73.95373953739536,-50.02523314456494],[-73.93573935739357,-50.028610299104706],[-73.92133921339213,-50.04043033999388],[-73.90333903339032,-50.069136153581894],[-73.88533885338853,-50.07589046266142],[-73.88533885338853,-50.05562753542283],[-73.8889388893889,-50.03536460818424],[-73.89613896138961,-50.01847883548541],[-73.91413914139142,-50.008347371866115],[-73.94653946539465,-50.01847883548541],[-73.98253982539825,-50.010035949136],[-74.00774007740077,-49.99146159916729],[-74.00054000540005,-49.96275578557928],[-73.96093960939609,-49.93067281745151],[-73.95013950139501,-49.925607085641865],[-73.91413914139142,-49.925607085641865],[-73.89613896138961,-49.923918508371976],[-73.8781387813878,-49.91885277656233],[-73.90333903339032,-49.91547562202257],[-73.91053910539105,-49.901967003863504],[-73.90693906939069,-49.85637541757667],[-73.92133921339213,-49.86819545846585],[-73.93573935739357,-49.89521269478397],[-73.94653946539465,-49.90534415840327],[-73.95733957339573,-49.907032735673155],[-73.97893978939788,-49.903655581133386],[-73.98973989739898,-49.90534415840327],[-73.98973989739898,-49.91040989021292],[-73.99333993339933,-49.93236139472139],[-73.99693996939969,-49.93911570380092],[-74.0149401494015,-49.95937863103951],[-74.03654036540365,-49.964444362849164],[-74.08694086940869,-49.95937863103951],[-74.11214112141121,-49.95431289922987],[-74.12294122941229,-49.94249285834069],[-74.13374133741337,-49.925607085641865],[-74.14454144541445,-49.9120984674828],[-74.18774187741877,-49.89858984932374],[-74.28854288542885,-49.89352411751409],[-74.32454324543245,-49.87157261300562],[-74.34254342543426,-49.82935818125855],[-74.34974349743497,-49.80571809948019],[-74.34974349743497,-49.79220948132113],[-74.33534335343353,-49.78714374951148],[-74.32094320943209,-49.78883232678136],[-74.31014310143101,-49.79389805859101],[-74.29574295742957,-49.79558663586089],[-74.28494284942849,-49.79220948132113],[-74.28134281342813,-49.78714374951148],[-74.27414274142741,-49.780389440431954],[-74.27054270542705,-49.7753237086223],[-74.24894248942489,-49.763503667733126],[-74.22374223742237,-49.75506078138371],[-74.19854198541985,-49.74830647230418],[-74.0941409414094,-49.74830647230418],[-74.07254072540725,-49.74155216322465],[-74.07614076140761,-49.734797854145114],[-74.07614076140761,-49.72804354506559],[-74.06894068940689,-49.721289235986056],[-74.06534065340654,-49.71284634963664],[-74.09774097740977,-49.71284634963664],[-74.16614166141662,-49.719600658716175],[-74.20214202142022,-49.72804354506559],[-74.24894248942489,-49.72804354506559],[-74.27774277742778,-49.74155216322465],[-74.28854288542885,-49.74155216322465],[-74.31734317343174,-49.719600658716175],[-74.32814328143282,-49.677386226969105],[-74.32094320943209,-49.63179464068227],[-74.3029430294303,-49.60308882709427],[-74.26334263342633,-49.58789163166532],[-74.25974259742597,-49.58451447712556],[-74.25254252542526,-49.58113732258579],[-74.24534245342453,-49.572694436236375],[-74.23454234542345,-49.56594012715685],[-74.22014220142201,-49.56256297261708],[-74.16974169741697,-49.55918581807732],[-74.14814148141481,-49.555808663537555],[-74.10494104941048,-49.54061146810861],[-74.07974079740796,-49.53723431356884],[-74.05454054540544,-49.53892289083873],[-74.03294032940329,-49.552431508997785],[-74.02934029340292,-49.56931728169661],[-74.03294032940329,-49.58789163166532],[-74.03654036540365,-49.60646598163403],[-74.02214022140221,-49.61828602252321],[-74.00774007740077,-49.571005858966494],[-74.00054000540005,-49.55918581807732],[-73.98253982539825,-49.552431508997785],[-73.96093960939609,-49.554120086267666],[-73.93933939339394,-49.55918581807732],[-73.92853928539284,-49.56931728169661],[-73.93213932139321,-49.58282589985568],[-73.92853928539284,-49.591268786205084],[-73.91773917739177,-49.5997116725545],[-73.91413914139142,-49.614908867983445],[-73.91053910539105,-49.62841748614251],[-73.90693906939069,-49.64023752703169],[-73.89973899738997,-49.65036899065098],[-73.89253892538925,-49.658811877000396],[-73.80973809738097,-49.68920626785828],[-73.79533795337953,-49.70271488601735],[-73.75573755737557,-49.72804354506559],[-73.74493744937449,-49.736486431415],[-73.74133741337413,-49.74492931776442],[-73.73773737737378,-49.75506078138371],[-73.73413734137341,-49.77194655408254],[-73.72693726937268,-49.782078017701835],[-73.71253712537126,-49.76519224500301],[-73.69453694536945,-49.739863585954765],[-73.68733687336874,-49.719600658716175],[-73.71253712537126,-49.716223504176405],[-73.72333723337233,-49.71284634963664],[-73.73413734137341,-49.70609204055711],[-73.74133741337413,-49.701026308747466],[-73.74493744937449,-49.68920626785828],[-73.7521375213752,-49.682451958778756],[-73.77373773737737,-49.66894334061969],[-73.79173791737917,-49.66556618607993],[-73.80973809738097,-49.66387760881005],[-73.83853838538386,-49.658811877000396],[-73.85293852938528,-49.653746145190745],[-73.85653856538565,-49.65036899065098],[-73.85293852938528,-49.64530325884133],[-73.86373863738638,-49.616597445253326],[-73.86733867338673,-49.60815455890391],[-73.87453874538745,-49.5997116725545],[-73.8781387813878,-49.58789163166532],[-73.87453874538745,-49.54398862264837],[-73.8781387813878,-49.52879142721943],[-73.91413914139142,-49.510217077250715],[-74.07614076140761,-49.50177419090131],[-74.09054090540906,-49.49670845909166],[-74.10134101341013,-49.491642727282006],[-74.10854108541085,-49.48319984093259],[-74.11214112141121,-49.469691222773534],[-74.10854108541085,-49.44773971826506],[-74.10854108541085,-49.43760825464576],[-74.11574115741158,-49.432542522836115],[-74.12294122941229,-49.42241105921682],[-74.11934119341193,-49.40045955470834],[-74.09054090540906,-49.32278500029374],[-74.08694086940869,-49.29914491851538],[-74.08334083340833,-49.27888199127679],[-74.07614076140761,-49.26199621857796],[-74.0509405094051,-49.25861906403819],[-74.02574025740257,-49.265373373117725],[-74.00774007740077,-49.27550483673702],[-73.99333993339933,-49.29407918670573],[-73.97893978939788,-49.31434211394433],[-73.96453964539646,-49.32953930937327],[-73.92853928539284,-49.33798219572268],[-73.91053910539105,-49.346425082072095],[-73.89973899738997,-49.349802236611865],[-73.84573845738457,-49.349802236611865],[-73.84573845738457,-49.34304792753233],[-73.9249392493925,-49.32109642302385],[-73.94653946539465,-49.30927638213468],[-73.98613986139861,-49.27381625946714],[-74.0041400414004,-49.2484876004189],[-74.00774007740077,-49.226536095910426],[-74.0041400414004,-49.21471605502125],[-73.98253982539825,-49.18601024143324],[-73.97893978939788,-49.1708130460043],[-73.97893978939788,-49.164058736924765],[-73.98613986139861,-49.158993005115114],[-73.98973989739898,-49.15223869603559],[-73.99693996939969,-49.125221459717466],[-74.0041400414004,-49.11677857336805],[-74.01134011340113,-49.10664710974876],[-74.04374043740437,-49.083007027970396],[-73.97893978939788,-49.037415441683564],[-73.94293942939429,-49.0239068235245],[-73.89973899738997,-49.02897255533415],[-73.87093870938709,-49.04754690530286],[-73.85293852938528,-49.057678368922154],[-73.83853838538386,-49.05598979165227],[-73.82053820538205,-49.04248117349321],[-73.83133831338313,-49.03234970987391],[-73.86733867338673,-49.018841091714854],[-73.8889388893889,-49.00702105082567],[-73.91413914139142,-49.00702105082567],[-74.02934029340292,-49.02221824625462],[-74.04734047340473,-49.018841091714854],[-74.05814058140581,-49.01208678263532],[-74.06174061740617,-49.020529668984736],[-74.06534065340654,-49.034038287143794],[-74.06534065340654,-49.04248117349321],[-74.06174061740617,-49.05092405984262],[-74.04734047340473,-49.06949840981133],[-74.04374043740437,-49.07962987343063],[-74.04734047340473,-49.099892800669224],[-74.05454054540544,-49.11677857336805],[-74.05454054540544,-49.13028719152711],[-74.03654036540365,-49.145484386956056],[-74.07974079740796,-49.19783028232242],[-74.10494104941048,-49.221470364100774],[-74.13374133741337,-49.226536095910426],[-74.1409414094141,-49.221470364100774],[-74.15894158941589,-49.20458459140195],[-74.16614166141662,-49.1995188595923],[-74.1769417694177,-49.1995188595923],[-74.18774187741877,-49.202896014132065],[-74.19134191341914,-49.20796174594172],[-74.19134191341914,-49.21640463229113],[-74.18414184141841,-49.221470364100774],[-74.16254162541625,-49.22991325045019],[-74.15894158941589,-49.23666755952972],[-74.15894158941589,-49.245110445879135],[-74.15174151741518,-49.26199621857796],[-74.14454144541445,-49.26706195038761],[-74.15174151741518,-49.27719341400691],[-74.15534155341552,-49.285636300356316],[-74.15174151741518,-49.29407918670573],[-74.14454144541445,-49.302522073055144],[-74.15174151741518,-49.31434211394433],[-74.15534155341552,-49.326162154833504],[-74.15894158941589,-49.33798219572268],[-74.15894158941589,-49.35317939115163],[-74.16254162541625,-49.366688009310685],[-74.1769417694177,-49.38695093654928],[-74.18054180541804,-49.3953938228987],[-74.19494194941949,-49.469691222773534],[-74.18774187741877,-49.48826557274224],[-74.21654216542166,-49.52372569540978],[-74.24174241742418,-49.52710284994954],[-74.27054270542705,-49.510217077250715],[-74.30654306543065,-49.47644553185307],[-74.31734317343174,-49.462936913694],[-74.32814328143282,-49.44773971826506],[-74.3389433894339,-49.434231100106],[-74.35334353343534,-49.42578821375658],[-74.37854378543786,-49.41903390467705],[-74.39654396543965,-49.413968172867406],[-74.41094410944109,-49.40045955470834],[-74.42174421744217,-49.3852623592794],[-74.42534425344253,-49.37175374112034],[-74.4181441814418,-49.35824512296128],[-74.40374403744038,-49.346425082072095],[-74.39294392943928,-49.33291646391304],[-74.39294392943928,-49.31771926848409],[-74.41094410944109,-49.21809320956101],[-74.40374403744038,-49.19276455051277],[-74.37134371343713,-49.18601024143324],[-74.40014400144001,-49.15730442784523],[-74.41094410944109,-49.140418655146405],[-74.41454414544145,-49.11677857336805],[-74.41094410944109,-49.10495853247887],[-74.40014400144001,-49.08807275978005],[-74.40014400144001,-49.07962987343063],[-74.40374403744038,-49.06780983254145],[-74.4181441814418,-49.07118698708122],[-74.43254432544325,-49.07962987343063],[-74.43974439744397,-49.08976133704993],[-74.45414454144542,-49.07962987343063],[-74.46134461344613,-49.06612125527157],[-74.46854468544684,-49.04923548257274],[-74.46854468544684,-49.03234970987391],[-74.46134461344613,-49.020529668984736],[-74.44334443344432,-49.01208678263532],[-74.42534425344253,-49.00702105082567],[-74.41454414544145,-49.000266741746145],[-74.40374403744038,-48.98675812358708],[-74.40014400144001,-48.9749380826979],[-74.40374403744038,-48.96311804180873],[-74.4181441814418,-48.94960942364966],[-74.42174421744217,-48.934412228220715],[-74.40734407344073,-48.92934649641107],[-74.3821438214382,-48.92934649641107],[-74.36414364143641,-48.932723650950834],[-74.3821438214382,-48.92090361006166],[-74.41094410944109,-48.91246072371224],[-74.42534425344253,-48.90401783736283],[-74.43614436144361,-48.895574951013415],[-74.43974439744397,-48.88375491012424],[-74.43614436144361,-48.87362344650494],[-74.42174421744217,-48.870246291965174],[-74.42174421744217,-48.86349198288565],[-74.44694446944469,-48.851671941996464],[-74.45414454144542,-48.831409014757874],[-74.44694446944469,-48.80776893297951],[-74.43614436144361,-48.78750600574092],[-74.40014400144001,-48.7604887694228],[-74.39294392943928,-48.74866872853362],[-74.38934389343893,-48.73853726491433],[-74.3821438214382,-48.728405801295025],[-74.37134371343713,-48.71996291494562],[-74.34254342543426,-48.752045883073386],[-74.33534335343353,-48.755423037613156],[-74.33534335343353,-48.750357305803504],[-74.3389433894339,-48.74022584218421],[-74.30654306543065,-48.750357305803504],[-74.27414274142741,-48.74191441945409],[-74.23814238142381,-48.726717224025144],[-74.20214202142022,-48.71996291494562],[-74.11934119341193,-48.726717224025144],[-74.10494104941048,-48.731782955834795],[-74.09054090540906,-48.73853726491433],[-74.07614076140761,-48.74360299672397],[-74.06534065340654,-48.74191441945409],[-74.05814058140581,-48.74022584218421],[-74.05814058140581,-48.73347153310468],[-74.09054090540906,-48.71658576040585],[-74.12654126541265,-48.70645429678655],[-74.16974169741697,-48.70307714224679],[-74.20934209342093,-48.70645429678655],[-74.27414274142741,-48.72502864675526],[-74.30654306543065,-48.728405801295025],[-74.33174331743317,-48.713208605866086],[-74.32094320943209,-48.70476571951667],[-74.31374313743137,-48.69801141043714],[-74.3029430294303,-48.692945678627495],[-74.28854288542885,-48.692945678627495],[-74.29934299342993,-48.68281421500819],[-74.30654306543065,-48.67943706046843],[-74.31374313743137,-48.67437132865878],[-74.31734317343174,-48.664239865039484],[-74.32814328143282,-48.67774848319855],[-74.34614346143461,-48.68450279227808],[-74.36414364143641,-48.68281421500819],[-74.37134371343713,-48.667617019579254],[-74.37134371343713,-48.63891120599125],[-74.37134371343713,-48.630468319641835],[-74.37854378543786,-48.625402587832184],[-74.38934389343893,-48.6237140105623],[-74.39654396543965,-48.62033685602253],[-74.40014400144001,-48.61020539240324],[-74.39294392943928,-48.59838535151406],[-74.32814328143282,-48.549416610687466],[-74.31014310143101,-48.54097372433805],[-74.28854288542885,-48.5359079925284],[-74.27054270542705,-48.53421941525852],[-74.28494284942849,-48.524087951639224],[-74.27054270542705,-48.51057933348016],[-74.23094230942309,-48.49031640624157],[-74.22374223742237,-48.48525067443192],[-74.21654216542166,-48.48018494262227],[-74.20574205742057,-48.47511921081262],[-74.19854198541985,-48.47343063354274],[-74.18774187741877,-48.47680778808251],[-74.16614166141662,-48.49031640624157],[-74.13734137341373,-48.500447869860864],[-74.08334083340833,-48.54097372433805],[-74.05454054540544,-48.549416610687466],[-74.04374043740437,-48.55617091976699],[-74.03654036540365,-48.562925228846524],[-74.02574025740257,-48.583188156085114],[-74.02214022140221,-48.58994246516465],[-73.99333993339933,-48.59669677424418],[-73.97533975339753,-48.584876733355],[-73.97173971739717,-48.564613806116405],[-73.98613986139861,-48.55617091976699],[-74.01134011340113,-48.549416610687466],[-74.02214022140221,-48.53421941525852],[-74.02214022140221,-48.51226791075004],[-74.02214022140221,-48.49031640624157],[-74.02934029340292,-48.4481019744945],[-74.01854018540185,-48.4379705108752],[-73.91773917739177,-48.419396160906494],[-73.89253892538925,-48.41095327455708],[-73.89973899738997,-48.402510388207666],[-73.90333903339032,-48.399133233667904],[-73.91413914139142,-48.39744465639802],[-73.93573935739357,-48.395756079128134],[-73.99693996939969,-48.41433042909685],[-74.02934029340292,-48.41095327455708],[-74.03654036540365,-48.40757612001732],[-74.0509405094051,-48.395756079128134],[-74.05814058140581,-48.39069034731849],[-74.06534065340654,-48.38900177004861],[-74.08334083340833,-48.39069034731849],[-74.09054090540906,-48.39069034731849],[-74.10854108541085,-48.38562461550884],[-74.11934119341193,-48.37887030642931],[-74.13734137341373,-48.36367311100037],[-74.15534155341552,-48.358607379190715],[-74.22734227342274,-48.35354164738107],[-74.23814238142381,-48.3501644928413],[-74.23814238142381,-48.34509876103166],[-74.22014220142201,-48.33496729741236],[-74.20574205742057,-48.32990156560271],[-74.15174151741518,-48.32990156560271],[-74.10494104941048,-48.318081524713534],[-74.08334083340833,-48.31639294744365],[-74.10854108541085,-48.30626148382436],[-74.13734137341373,-48.30288432928459],[-74.18774187741877,-48.30963863836412],[-74.20934209342093,-48.314704370173764],[-74.26334263342633,-48.33496729741236],[-74.27054270542705,-48.33496729741236],[-74.27774277742778,-48.32652441106295],[-74.27414274142741,-48.318081524713534],[-74.2669426694267,-48.30963863836412],[-74.26334263342633,-48.301195752014706],[-74.26334263342633,-48.28937571112553],[-74.2669426694267,-48.280932824776116],[-74.27774277742778,-48.26742420661705],[-74.29214292142922,-48.255604165727874],[-74.30654306543065,-48.2437841248387],[-74.32094320943209,-48.23027550667963],[-74.31734317343174,-48.21170115671092],[-74.39654396543965,-48.199881115821746],[-74.44334443344432,-48.18299534312292],[-74.46134461344613,-48.154289529534914],[-74.46854468544684,-48.14753522045538],[-74.50094500945009,-48.10532078870831],[-74.50454504545046,-48.09518932508902],[-74.51174511745117,-48.090123593279365],[-74.49734497344973,-48.07661497512031],[-74.46854468544684,-48.05635204788172],[-74.46854468544684,-48.0479091615323],[-74.47214472144721,-48.04115485245277],[-74.47214472144721,-48.03608912064312],[-74.46854468544684,-48.02764623429371],[-74.49374493744936,-48.03440054337324],[-74.54054540545405,-48.06479493423113],[-74.56574565745657,-48.074926397850426],[-74.58734587345873,-48.07999212966007],[-74.60894608946089,-48.074926397850426],[-74.62694626946269,-48.05972920242148],[-74.6341463414634,-48.03440054337324],[-74.63054630546306,-48.02089192521418],[-74.62694626946269,-48.00400615251535],[-74.60534605346054,-47.99725184343582],[-74.59454594545944,-47.99387468889606],[-74.57294572945729,-47.987120379816524],[-74.53694536945369,-47.963480298038164],[-74.51534515345153,-47.9601031434984],[-74.50454504545046,-47.963480298038164],[-74.48294482944829,-47.97698891619723],[-74.47214472144721,-47.98036607073699],[-74.4289442894429,-47.98036607073699],[-74.41454414544145,-47.98374322527676],[-74.38574385743857,-48.007383307055115],[-74.37494374943749,-48.010760461594884],[-74.35334353343534,-48.01582619340453],[-74.34614346143461,-48.02089192521418],[-74.33534335343353,-48.032711966103356],[-74.31014310143101,-48.071549243310656],[-74.3029430294303,-48.08505786146972],[-74.29574295742957,-48.12896087048667],[-74.28494284942849,-48.17117530223374],[-74.27774277742778,-48.1846839203928],[-74.27414274142741,-48.18806107493256],[-74.25254252542526,-48.1846839203928],[-74.24534245342453,-48.18806107493256],[-74.24174241742418,-48.194815384012095],[-74.23814238142381,-48.20325827036151],[-74.23454234542345,-48.20832400217116],[-74.22734227342274,-48.22858692940975],[-74.20574205742057,-48.23027550667963],[-74.18054180541804,-48.2235211976001],[-74.17334173341733,-48.218455465790456],[-74.18414184141841,-48.218455465790456],[-74.19494194941949,-48.213389733980804],[-74.20214202142022,-48.20156969309163],[-74.20214202142022,-48.193126806742214],[-74.20214202142022,-48.19143822947233],[-74.20934209342093,-48.18974965220245],[-74.21654216542166,-48.18130676585304],[-74.23094230942309,-48.16442099315421],[-74.23454234542345,-48.15935526134456],[-74.23454234542345,-48.150912374995144],[-74.23454234542345,-48.1458466431855],[-74.22374223742237,-48.14246948864573],[-74.22014220142201,-48.137403756836086],[-74.22734227342274,-48.132338025026435],[-74.23094230942309,-48.130649447756554],[-74.23814238142381,-48.132338025026435],[-74.24174241742418,-48.130649447756554],[-74.25254252542526,-48.11882940686738],[-74.2561425614256,-48.113763675057726],[-74.25974259742597,-48.10700936597819],[-74.26334263342633,-48.093500747819135],[-74.28134281342813,-48.06648351150101],[-74.28854288542885,-48.06310635696124],[-74.29934299342993,-48.054663470611835],[-74.31374313743137,-48.03608912064312],[-74.32814328143282,-48.01582619340453],[-74.33174331743317,-48.00062899797559],[-74.31014310143101,-47.99049753435629],[-74.24534245342453,-47.9989404207057],[-74.22374223742237,-47.99725184343582],[-74.20574205742057,-47.99049753435629],[-74.06174061740617,-48.00062899797559],[-74.0509405094051,-48.00569472978523],[-74.04014040140402,-48.029334811563594],[-74.03294032940329,-48.03440054337324],[-74.02214022140221,-48.032711966103356],[-74.01854018540185,-48.029334811563594],[-74.0149401494015,-48.025957657023824],[-74.0041400414004,-48.02764623429371],[-73.99333993339933,-48.032711966103356],[-73.97173971739717,-48.04453200699253],[-73.96093960939609,-48.0479091615323],[-73.91773917739177,-48.029334811563594],[-73.89253892538925,-48.02258050248406],[-73.8781387813878,-48.031023388833475],[-73.8781387813878,-48.03946627518289],[-73.87093870938709,-48.04115485245277],[-73.86013860138601,-48.04115485245277],[-73.85653856538565,-48.04115485245277],[-73.85653856538565,-48.049597738802184],[-73.86013860138601,-48.05297489334195],[-73.86373863738638,-48.0580406251516],[-73.86373863738638,-48.06310635696124],[-73.87093870938709,-48.069860666040775],[-73.8781387813878,-48.07661497512031],[-73.88173881738817,-48.0867464387396],[-73.8781387813878,-48.09518932508902],[-73.86733867338673,-48.091812170549254],[-73.82053820538205,-48.05635204788172],[-73.79173791737917,-48.04453200699253],[-73.78093780937809,-48.029334811563594],[-73.77013770137701,-48.02764623429371],[-73.7629376293763,-48.032711966103356],[-73.75933759337593,-48.04115485245277],[-73.75933759337593,-48.051286316072066],[-73.7629376293763,-48.06310635696124],[-73.79173791737917,-48.090123593279365],[-73.80253802538024,-48.10869794324808],[-73.79173791737917,-48.11545225232761],[-73.78453784537845,-48.11038652051796],[-73.7629376293763,-48.0867464387396],[-73.74853748537485,-48.08168070692996],[-73.73773737737378,-48.08505786146972],[-73.70173701737016,-48.10363221143843],[-73.67653676536764,-48.10869794324808],[-73.65133651336512,-48.11038652051796],[-73.6369363693637,-48.112075097787844],[-73.61173611736118,-48.12727229321679],[-73.60093600936008,-48.130649447756554],[-73.590135901359,-48.14078091137585],[-73.590135901359,-48.16442099315421],[-73.59733597335973,-48.18974965220245],[-73.60453604536045,-48.20663542490127],[-73.58653586535866,-48.21170115671092],[-73.57573575735756,-48.22183262033022],[-73.55773557735577,-48.24716127937846],[-73.5469354693547,-48.233652661219395],[-73.52893528935289,-48.198192538551865],[-73.51813518135181,-48.18637249766268],[-73.50373503735037,-48.17792961131327],[-73.48573485734858,-48.17286387950362],[-73.46773467734677,-48.17117530223374],[-73.43533435334353,-48.176241034043386],[-73.35253352533525,-48.22014404306034],[-73.35253352533525,-48.20494684763139],[-73.34893348933488,-48.19143822947233],[-73.34173341733417,-48.18130676585304],[-73.31653316533165,-48.174552456773505],[-73.29493294932949,-48.155978106804795],[-73.28773287732876,-48.150912374995144],[-73.27693276932769,-48.13909233410597],[-73.27693276932769,-48.10869794324808],[-73.28053280532805,-48.07999212966007],[-73.29133291332913,-48.06310635696124],[-73.29133291332913,-48.073237820580545],[-73.29133291332913,-48.112075097787844],[-73.29493294932949,-48.12727229321679],[-73.30573305733057,-48.134026602296316],[-73.33093330933309,-48.14415806591562],[-73.34893348933488,-48.154289529534914],[-73.3741337413374,-48.16273241588433],[-73.39933399333992,-48.16273241588433],[-73.43533435334353,-48.13909233410597],[-73.48213482134821,-48.12389513867702],[-73.50733507335073,-48.09518932508902],[-73.5109351093511,-48.090123593279365],[-73.53253532535325,-48.08336928419984],[-73.590135901359,-48.04115485245277],[-73.57933579335793,-48.02258050248406],[-73.57933579335793,-48.012449038864766],[-73.590135901359,-48.007383307055115],[-73.6261362613626,-47.99387468889606],[-73.64053640536405,-47.98374322527676],[-73.64773647736477,-47.973611761657466],[-73.63333633336333,-47.96685745257793],[-73.63333633336333,-47.9601031434984],[-73.64413644136441,-47.95166025714899],[-73.65493654936549,-47.93308590718028],[-73.65853658536585,-47.911134402671806],[-73.65493654936549,-47.89762578451274],[-73.64413644136441,-47.89593720724286],[-73.58293582935829,-47.907757248132036],[-73.57573575735756,-47.90944582540192],[-73.55773557735577,-47.93308590718028],[-73.5469354693547,-47.95334883441887],[-73.53973539735397,-47.963480298038164],[-73.53253532535325,-47.96685745257793],[-73.50733507335073,-47.97867749346711],[-73.50013500135,-47.98036607073699],[-73.42453424534244,-47.988808957086405],[-73.34533345333453,-47.97867749346711],[-73.31293312933128,-47.98036607073699],[-73.27333273332734,-48.00062899797559],[-73.24453244532445,-48.007383307055115],[-73.22653226532265,-48.00400615251535],[-73.23373233732337,-47.987120379816524],[-73.2589325893259,-47.97698891619723],[-73.31293312933128,-47.97192318438758],[-73.35613356133561,-47.95503741168875],[-73.44253442534425,-47.96685745257793],[-73.46773467734677,-47.96516887530805],[-73.48213482134821,-47.963480298038164],[-73.52533525335252,-47.931397329910396],[-73.52533525335252,-47.92802017537063],[-73.5109351093511,-47.907757248132036],[-73.50733507335073,-47.89762578451274],[-73.5109351093511,-47.885805743623564],[-73.51813518135181,-47.87905143454403],[-73.52533525335252,-47.87398570273438],[-73.53613536135362,-47.87060854819462],[-73.53973539735397,-47.88411716635368],[-73.55053550535504,-47.89087147543321],[-73.56133561335614,-47.88918289816333],[-73.57573575735756,-47.88074001181391],[-73.58293582935829,-47.87567428000427],[-73.61173611736118,-47.867231393654855],[-73.61893618936189,-47.863854239115085],[-73.61173611736118,-47.848657043686146],[-73.59373593735937,-47.83177127098732],[-73.56853568535685,-47.81657407555837],[-73.55053550535504,-47.80813118920896],[-73.57933579335793,-47.79968830285954],[-73.6729367293673,-47.7946225710499],[-73.69813698136981,-47.786179684700485],[-73.70893708937089,-47.77604822108119],[-73.7161371613716,-47.762539602922125],[-73.73053730537305,-47.742276675683534],[-73.74133741337413,-47.70343939847623],[-73.70533705337053,-47.67304500761834],[-73.66933669336693,-47.6477163485701],[-73.66573665736657,-47.61563338044233],[-73.68373683736837,-47.62407626679175],[-73.70173701737016,-47.62914199860139],[-73.70893708937089,-47.6088790713628],[-73.70173701737016,-47.593681875933854],[-73.69093690936909,-47.580173257774796],[-73.6729367293673,-47.56835321688561],[-73.68373683736837,-47.559910330536205],[-73.69453694536945,-47.554844598726554],[-73.70533705337053,-47.554844598726554],[-73.7161371613716,-47.561598907806086],[-73.72333723337233,-47.55315602145667],[-73.72693726937268,-47.54640171237714],[-73.72693726937268,-47.53964740329761],[-73.71973719737197,-47.53458167148796],[-73.71973719737197,-47.52782736240843],[-73.73773737737378,-47.53458167148796],[-73.75573755737557,-47.575107525965144],[-73.77733777337772,-47.58861614412421],[-73.77733777337772,-47.595370453203735],[-73.73053730537305,-47.62407626679175],[-73.74493744937449,-47.657847812189395],[-73.77373773737737,-47.69837366666658],[-73.78813788137882,-47.738899521143765],[-73.78453784537845,-47.74903098476307],[-73.77373773737737,-47.76591675746189],[-73.77013770137701,-47.77098248927154],[-73.77373773737737,-47.77942537562095],[-73.78813788137882,-47.79293399378001],[-73.78813788137882,-47.79799972558966],[-73.80253802538024,-47.806442611939076],[-73.8781387813878,-47.82163980736802],[-73.91413914139142,-47.84021415733673],[-73.9249392493925,-47.84190273460661],[-73.93573935739357,-47.84190273460661],[-73.95373953739536,-47.83683700279696],[-73.99693996939969,-47.83514842552708],[-74.00774007740077,-47.8334598482572],[-74.02214022140221,-47.82839411644755],[-74.03654036540365,-47.82163980736802],[-74.04014040140402,-47.81657407555837],[-74.04014040140402,-47.80981976647884],[-74.04374043740437,-47.801376880129425],[-74.06894068940689,-47.77098248927154],[-74.07254072540725,-47.77267106654142],[-74.19854198541985,-47.78955683924025],[-74.22014220142201,-47.78786826197037],[-74.26334263342633,-47.77267106654142],[-74.29214292142922,-47.767605334731776],[-74.31734317343174,-47.78955683924025],[-74.34974349743497,-47.78786826197037],[-74.38574385743857,-47.77942537562095],[-74.40734407344073,-47.767605334731776],[-74.38934389343893,-47.764228180192006],[-74.34254342543426,-47.760851025652244],[-74.3389433894339,-47.75409671657271],[-74.35334353343534,-47.743965252953416],[-74.37854378543786,-47.743965252953416],[-74.47574475744757,-47.762539602922125],[-74.53334533345333,-47.782802530160716],[-74.54774547745477,-47.7844911074306],[-74.5441454414544,-47.7743596438113],[-74.5441454414544,-47.767605334731776],[-74.58014580145802,-47.77267106654142],[-74.62694626946269,-47.767605334731776],[-74.670146701467,-47.75409671657271],[-74.6809468094681,-47.73214521206424],[-74.69534695346952,-47.738899521143765],[-74.70974709747097,-47.73721094387388],[-74.72774727747277,-47.73045663479435],[-74.73494734947349,-47.718636593905174],[-74.73494734947349,-47.705127975746116],[-74.72774727747277,-47.6966850893967],[-74.70614706147062,-47.681487893967756],[-74.68454684546845,-47.657847812189395],[-74.67374673746737,-47.6477163485701],[-74.65574655746558,-47.64433919403034],[-74.63774637746377,-47.64602777130022],[-74.59454594545944,-47.656159234919514],[-74.57654576545765,-47.66460212126893],[-74.58374583745837,-47.67135643034846],[-74.5909459094591,-47.69161935758705],[-74.57654576545765,-47.68824220304729],[-74.56934569345692,-47.681487893967756],[-74.55134551345513,-47.66460212126893],[-74.56214562145621,-47.65278208037975],[-74.58374583745837,-47.642650616760456],[-74.60534605346054,-47.63420773041104],[-74.62334623346233,-47.62914199860139],[-74.63054630546306,-47.62069911225198],[-74.62694626946269,-47.60212476228327],[-74.61614616146161,-47.58186183504468],[-74.61254612546125,-47.56835321688561],[-74.5549455494555,-47.5497788669169],[-74.53334533345333,-47.54809028964702],[-74.52254522545225,-47.559910330536205],[-74.52254522545225,-47.58523898958444],[-74.51894518945188,-47.60381333955315],[-74.50454504545046,-47.595370453203735],[-74.49734497344973,-47.58692756685433],[-74.49014490144901,-47.56328748507597],[-74.48294482944829,-47.554844598726554],[-74.47214472144721,-47.5497788669169],[-74.46134461344613,-47.55146744418679],[-74.43614436144361,-47.554844598726554],[-74.4181441814418,-47.56328748507597],[-74.41094410944109,-47.60381333955315],[-74.40014400144001,-47.61563338044233],[-74.40014400144001,-47.60381333955315],[-74.39294392943928,-47.593681875933854],[-74.38574385743857,-47.58692756685433],[-74.37134371343713,-47.58861614412421],[-74.37134371343713,-47.595370453203735],[-74.35334353343534,-47.62576484406163],[-74.34614346143461,-47.63589630768092],[-74.37494374943749,-47.656159234919514],[-74.45414454144542,-47.67135643034846],[-74.48294482944829,-47.69837366666658],[-74.38574385743857,-47.67811073942799],[-74.36774367743676,-47.67135643034846],[-74.35694356943569,-47.66966785307858],[-74.34614346143461,-47.67135643034846],[-74.32814328143282,-47.67473358488822],[-74.32814328143282,-47.679799316697874],[-74.32814328143282,-47.68655362577741],[-74.32454324543245,-47.69837366666658],[-74.29574295742957,-47.72539090298471],[-74.25254252542526,-47.74734240749318],[-74.20574205742057,-47.75578529384259],[-74.15894158941589,-47.74734240749318],[-74.25254252542526,-47.738899521143765],[-74.27054270542705,-47.73214521206424],[-74.28134281342813,-47.71525943936541],[-74.3029430294303,-47.67811073942799],[-74.27414274142741,-47.662913543999046],[-74.17334173341733,-47.67473358488822],[-74.13374133741337,-47.66460212126893],[-74.15894158941589,-47.656159234919514],[-74.2129421294213,-47.662913543999046],[-74.24174241742418,-47.657847812189395],[-74.26334263342633,-47.642650616760456],[-74.25254252542526,-47.63083057587127],[-74.23094230942309,-47.62576484406163],[-74.19494194941949,-47.62238768952186],[-74.17334173341733,-47.617321957712214],[-74.16254162541625,-47.61563338044233],[-74.15174151741518,-47.619010534982095],[-74.13374133741337,-47.62745342133151],[-74.12294122941229,-47.62914199860139],[-74.07614076140761,-47.62745342133151],[-74.05454054540544,-47.62238768952186],[-74.04374043740437,-47.6088790713628],[-74.09054090540906,-47.61056764863268],[-74.10494104941048,-47.6088790713628],[-74.11574115741158,-47.60381333955315],[-74.130141301413,-47.595370453203735],[-74.1409414094141,-47.58692756685433],[-74.13734137341373,-47.58186183504468],[-74.11214112141121,-47.578484680504914],[-74.09054090540906,-47.56666463961573],[-74.07254072540725,-47.55146744418679],[-74.05814058140581,-47.53458167148796],[-74.07614076140761,-47.54640171237714],[-74.11934119341193,-47.55315602145667],[-74.13734137341373,-47.561598907806086],[-74.15174151741518,-47.5700417941555],[-74.15894158941589,-47.578484680504914],[-74.16974169741697,-47.58523898958444],[-74.18054180541804,-47.58861614412421],[-74.19494194941949,-47.58861614412421],[-74.2129421294213,-47.58355041231456],[-74.22374223742237,-47.58186183504468],[-74.23454234542345,-47.58355041231456],[-74.26334263342633,-47.593681875933854],[-74.27414274142741,-47.598747607743505],[-74.28494284942849,-47.60381333955315],[-74.29574295742957,-47.60212476228327],[-74.30654306543065,-47.598747607743505],[-74.31374313743137,-47.595370453203735],[-74.32814328143282,-47.58523898958444],[-74.33534335343353,-47.56328748507597],[-74.3389433894339,-47.537958826027726],[-74.34614346143461,-47.51938447605902],[-74.36774367743676,-47.53458167148796],[-74.39294392943928,-47.53458167148796],[-74.41454414544145,-47.52445020786867],[-74.43614436144361,-47.50756443516984],[-74.45414454144542,-47.48054719885172],[-74.44334443344432,-47.47041573523242],[-74.38574385743857,-47.45859569434324],[-74.39294392943928,-47.44677565345406],[-74.40734407344073,-47.44508707618418],[-74.42534425344253,-47.44677565345406],[-74.43974439744397,-47.44508707618418],[-74.44694446944469,-47.43833276710465],[-74.45054450544505,-47.42988988075523],[-74.45414454144542,-47.42144699440582],[-74.4649446494465,-47.41806983986606],[-74.4649446494465,-47.431578458025115],[-74.48294482944829,-47.45690711707336],[-74.5081450814508,-47.47041573523242],[-74.52974529745298,-47.431578458025115],[-74.52974529745298,-47.4231355716757],[-74.51174511745117,-47.41806983986606],[-74.50454504545046,-47.413004108056406],[-74.49374493744936,-47.40118406716723],[-74.48294482944829,-47.37585540811899],[-74.46854468544684,-47.36234678995993],[-74.45054450544505,-47.353903903610515],[-74.40734407344073,-47.34208386272133],[-74.41454414544145,-47.32182093548274],[-74.39654396543965,-47.306623740053794],[-74.36774367743676,-47.291426544624855],[-74.35334353343534,-47.269475040116376],[-74.32454324543245,-47.2188177220199],[-74.31374313743137,-47.2188177220199],[-74.3029430294303,-47.22726060836931],[-74.29214292142922,-47.23739207198861],[-74.28494284942849,-47.24583495833802],[-74.27774277742778,-47.223883453829544],[-74.27414274142741,-47.21544056748013],[-74.2669426694267,-47.21206341294037],[-74.2561425614256,-47.21712914475001],[-74.23814238142381,-47.23570349471872],[-74.23094230942309,-47.23908064925849],[-74.22014220142201,-47.23570349471872],[-74.22374223742237,-47.228949185639195],[-74.22734227342274,-47.2188177220199],[-74.22374223742237,-47.2086862584006],[-74.21654216542166,-47.205309103860834],[-74.20214202142022,-47.20362052659095],[-74.1769417694177,-47.205309103860834],[-74.16614166141662,-47.21544056748013],[-74.15894158941589,-47.28129508100556],[-74.14814148141481,-47.29818085370438],[-74.13374133741337,-47.31675520367309],[-74.11934119341193,-47.33364097637192],[-74.11214112141121,-47.335329553641806],[-74.11214112141121,-47.32857524456227],[-74.10494104941048,-47.32182093548274],[-74.10494104941048,-47.31506662640321],[-74.10854108541085,-47.306623740053794],[-74.12654126541265,-47.288049390085085],[-74.13734137341373,-47.269475040116376],[-74.1409414094141,-47.25596642195732],[-74.13734137341373,-47.22219487655966],[-74.13374133741337,-47.205309103860834],[-74.11574115741158,-47.19348906297166],[-74.0941409414094,-47.186734753892125],[-74.07614076140761,-47.185046176622244],[-74.05454054540544,-47.19011190843189],[-74.04734047340473,-47.19011190843189],[-74.04374043740437,-47.181669022082474],[-74.04014040140402,-47.17829186754271],[-74.03294032940329,-47.17660329027283],[-74.02214022140221,-47.17660329027283],[-74.0149401494015,-47.17660329027283],[-74.0041400414004,-47.1985547947813],[-73.98613986139861,-47.23570349471872],[-73.97173971739717,-47.25427784468744],[-73.9681396813968,-47.228949185639195],[-73.97173971739717,-47.21544056748013],[-73.98613986139861,-47.186734753892125],[-73.98973989739898,-47.168160403923416],[-74.00054000540005,-47.16478324938365],[-74.05814058140581,-47.15634036303424],[-73.95733957339573,-47.06009145865092],[-73.94653946539465,-47.04827141776175],[-73.94293942939429,-47.02800849052315],[-73.95013950139501,-47.01618844963397],[-74.01854018540185,-46.979039749696554],[-74.04014040140402,-46.97228544061702],[-74.06534065340654,-46.97228544061702],[-74.10134101341013,-46.98748263604597],[-74.11934119341193,-46.98748263604597],[-74.13734137341373,-46.979039749696554],[-74.15174151741518,-46.96721970880738],[-74.20574205742057,-46.90811950436148],[-74.20934209342093,-46.89461088620242],[-74.20214202142022,-46.88110226804336],[-74.18054180541804,-46.86928222715418],[-74.17334173341733,-46.86928222715418],[-74.15894158941589,-46.86928222715418],[-74.15174151741518,-46.8675936498843],[-74.14454144541445,-46.859150763534885],[-74.14454144541445,-46.85070787718547],[-74.1409414094141,-46.84395356810594],[-74.13374133741337,-46.83888783629629],[-74.12654126541265,-46.835510681756524],[-74.12654126541265,-46.82875637267699],[-74.16974169741697,-46.837199259026406],[-74.18054180541804,-46.84226499083606],[-74.19134191341914,-46.84901929991558],[-74.20934209342093,-46.86421649534453],[-74.22014220142201,-46.86928222715418],[-74.24174241742418,-46.86421649534453],[-74.2669426694267,-46.83044494994687],[-74.28854288542885,-46.82200206359746],[-74.28134281342813,-46.811870599978164],[-74.27414274142741,-46.8084934454384],[-74.26334263342633,-46.80511629089864],[-74.26334263342633,-46.793296250009455],[-74.2669426694267,-46.78147620912028],[-74.27774277742778,-46.7797876318504],[-74.28854288542885,-46.78147620912028],[-74.3029430294303,-46.7797876318504],[-74.31014310143101,-46.778099054580515],[-74.31734317343174,-46.774721900040745],[-74.32094320943209,-46.7696561682311],[-74.32454324543245,-46.76290185915157],[-74.32814328143282,-46.75783612734192],[-74.33534335343353,-46.7595247046118],[-74.3389433894339,-46.76459043642145],[-74.3389433894339,-46.76796759096121],[-74.43974439744397,-46.76796759096121],[-74.45774457744577,-46.76459043642145],[-74.48294482944829,-46.756147550072036],[-74.52254522545225,-46.749393240992504],[-74.5909459094591,-46.72575315921415],[-74.5909459094591,-46.732507468293676],[-74.52254522545225,-46.76290185915157],[-74.47934479344794,-46.773033322770864],[-74.48294482944829,-46.78485336366004],[-74.50454504545046,-46.796673404549225],[-74.52614526145261,-46.80173913635887],[-74.58734587345873,-46.793296250009455],[-74.60174601746017,-46.78991909546969],[-74.61254612546125,-46.78316478639016],[-74.62694626946269,-46.778099054580515],[-74.64134641346413,-46.7797876318504],[-74.65214652146521,-46.78823051819981],[-74.65214652146521,-46.796673404549225],[-74.64854648546485,-46.80680486816852],[-74.64494644946448,-46.8186249090577],[-74.64854648546485,-46.82875637267699],[-74.65574655746558,-46.837199259026406],[-74.67374673746737,-46.84901929991558],[-74.55134551345513,-46.835510681756524],[-74.53334533345333,-46.84057641356617],[-74.5081450814508,-46.859150763534885],[-74.49374493744936,-46.86421649534453],[-74.45054450544505,-46.855773608995115],[-74.43614436144361,-46.855773608995115],[-74.47934479344794,-46.90305377255183],[-74.5441454414544,-46.8962994634723],[-74.61974619746196,-46.876036536233705],[-74.6809468094681,-46.88447942258312],[-74.69174691746917,-46.876036536233705],[-74.70254702547025,-46.86590507261441],[-74.70974709747097,-46.85408503172523],[-74.71334713347133,-46.84564214537582],[-74.72054720547204,-46.84057641356617],[-74.76374763747637,-46.815247754517934],[-74.78894788947889,-46.80680486816852],[-74.79974799747997,-46.80173913635887],[-74.80334803348033,-46.78991909546969],[-74.8069480694807,-46.77641047731063],[-74.81414814148141,-46.76796759096121],[-74.82494824948249,-46.7696561682311],[-74.83934839348393,-46.7797876318504],[-74.83214832148322,-46.7797876318504],[-74.84654846548464,-46.80680486816852],[-74.85734857348574,-46.813559177248045],[-74.86814868148682,-46.80511629089864],[-74.89334893348934,-46.78823051819981],[-74.90054900549005,-46.78316478639016],[-74.95454954549545,-46.76121328188169],[-74.95814958149582,-46.7595247046118],[-75.0049500495005,-46.75277039553227],[-75.01575015750157,-46.749393240992504],[-75.01575015750157,-46.73926177737321],[-75.01575015750157,-46.72744173648403],[-75.01575015750157,-46.71899885013462],[-75.07335073350733,-46.65989864568872],[-75.08415084150842,-46.64132429572001],[-75.07695076950769,-46.61937279121154],[-75.0589505895059,-46.60248701851271],[-75.02655026550265,-46.57884693673435],[-75.01575015750157,-46.56533831857529],[-75.00855008550086,-46.55182970041623],[-74.99774997749977,-46.54000965952705],[-74.97974979749797,-46.53156677317764],[-74.95814958149582,-46.524812464098105],[-74.94014940149401,-46.51636957774869],[-74.9329493294933,-46.50286095958963],[-74.93654936549365,-46.48259803235104],[-74.94014940149401,-46.47077799146186],[-74.94374943749438,-46.45895795057268],[-74.9329493294933,-46.43700644606421],[-74.96534965349653,-46.45389221876303],[-74.98694986949869,-46.491040918700456],[-75.01575015750157,-46.51974673228846],[-75.05175051750517,-46.51299242320893],[-75.07335073350733,-46.55858400949576],[-75.11295112951129,-46.587289823083765],[-75.20295202952029,-46.629504254830834],[-75.20655206552065,-46.60417559578259],[-75.20655206552065,-46.59573270943318],[-75.23535235352354,-46.6227499457513],[-75.24975249752497,-46.6328814093706],[-75.26775267752677,-46.63625856391037],[-75.32535325353253,-46.63963571845013],[-75.33975339753397,-46.6430128729899],[-75.33975339753397,-46.64639002752966],[-75.33975339753397,-46.651455759339306],[-75.33975339753397,-46.654832913879076],[-75.34335343353433,-46.65652149114896],[-75.38655386553866,-46.654832913879076],[-75.39735397353974,-46.651455759339306],[-75.40095400954009,-46.64639002752966],[-75.40455404554045,-46.629504254830834],[-75.41535415354153,-46.6328814093706],[-75.4261542615426,-46.6430128729899],[-75.4369543695437,-46.649767182069425],[-75.56295562955628,-46.68016157292732],[-75.57375573755738,-46.68860445927673],[-75.58455584555846,-46.693670191086376],[-75.59175591755917,-46.697047345626146],[-75.59535595355953,-46.70042450016591],[-75.5989559895599,-46.70886738651532],[-75.5989559895599,-46.71731027286474],[-75.5989559895599,-46.72237600467438],[-75.60255602556025,-46.72744173648403],[-75.60615606156061,-46.732507468293676],[-75.61695616956169,-46.74263893191298],[-75.64575645756457,-46.756147550072036],[-75.66015660156602,-46.76796759096121],[-75.63135631356313,-46.78485336366004],[-75.5989559895599,-46.75783612734192],[-75.56655566555665,-46.71899885013462],[-75.54135541355413,-46.69873592289603],[-75.4621546215462,-46.70042450016591],[-75.44055440554405,-46.70549023197555],[-75.42255422554226,-46.71393311832497],[-75.41895418954189,-46.72237600467438],[-75.4261542615426,-46.72744173648403],[-75.44775447754478,-46.72575315921415],[-75.44055440554405,-46.74263893191298],[-75.44775447754478,-46.756147550072036],[-75.4621546215462,-46.76796759096121],[-75.47655476554765,-46.774721900040745],[-75.40095400954009,-46.77641047731063],[-75.38655386553866,-46.7797876318504],[-75.3829538295383,-46.80680486816852],[-75.39735397353974,-46.82875637267699],[-75.42255422554226,-46.8473307226457],[-75.43335433354333,-46.86421649534453],[-75.39375393753937,-46.85239645445535],[-75.37215372153722,-46.84901929991558],[-75.35415354153541,-46.855773608995115],[-75.3469534695347,-46.8675936498843],[-75.3469534695347,-46.879413690773475],[-75.35415354153541,-46.90136519528195],[-75.36135361353614,-46.90305377255183],[-75.41175411754118,-46.93175958613984],[-75.4261542615426,-46.93344816340972],[-75.46935469354693,-46.9452682042989],[-75.51975519755197,-46.94864535883867],[-75.5521555215552,-46.94864535883867],[-75.57015570155701,-46.940202472489254],[-75.58455584555846,-46.90980808163136],[-75.58455584555846,-46.90305377255183],[-75.59535595355953,-46.899676618012066],[-75.61695616956169,-46.89292230893253],[-75.62775627756277,-46.88954515439277],[-75.64215642156421,-46.879413690773475],[-75.64935649356494,-46.87265938169394],[-75.65295652956529,-46.86590507261441],[-75.65295652956529,-46.84395356810594],[-75.65295652956529,-46.83382210448664],[-75.66015660156602,-46.82369064086735],[-75.70695706957069,-46.78654194092992],[-75.71055710557106,-46.74432750918286],[-75.70695706957069,-46.654832913879076],[-75.70335703357033,-46.63963571845013],[-75.69615696156961,-46.62781567756095],[-75.67455674556746,-46.61599563667178],[-75.66015660156602,-46.60079844124283],[-75.64935649356494,-46.58560124581388],[-75.6349563495635,-46.57378120492471],[-75.61335613356133,-46.567026895845174],[-75.57015570155701,-46.568715473115056],[-75.55935559355594,-46.567026895845174],[-75.54855548555486,-46.56364974130541],[-75.54135541355413,-46.55858400949576],[-75.53415534155342,-46.553518277686116],[-75.51615516155161,-46.553518277686116],[-75.53415534155342,-46.53156677317764],[-75.54135541355413,-46.51974673228846],[-75.54135541355413,-46.51299242320893],[-75.4729547295473,-46.51299242320893],[-75.45135451354513,-46.509615268669165],[-75.44775447754478,-46.49948380504987],[-75.44415444154441,-46.48935234143057],[-75.43335433354333,-46.47922087781127],[-75.41895418954189,-46.47415514600163],[-75.39015390153901,-46.47753230054139],[-75.37215372153722,-46.47077799146186],[-75.37215372153722,-46.465712259652214],[-75.40095400954009,-46.44882648695339],[-75.40095400954009,-46.44038360060397],[-75.39015390153901,-46.42687498244491],[-75.3469534695347,-46.39479201431714],[-75.33615336153362,-46.38972628250749],[-75.31455314553145,-46.386349127967726],[-75.29655296552966,-46.37790624161831],[-75.28575285752858,-46.36777477799902],[-75.27135271352714,-46.362709046189366],[-75.25335253352533,-46.366086200729136],[-75.23895238952389,-46.37621766434843],[-75.22815228152281,-46.38972628250749],[-75.2209522095221,-46.403234900666554],[-75.21015210152102,-46.33569180987124],[-75.20655206552065,-46.3306260780616],[-75.20295202952029,-46.3204946144423],[-75.20295202952029,-46.30867457355312],[-75.20295202952029,-46.300231687203706],[-75.19575195751958,-46.298543109933824],[-75.18855188551885,-46.29516595539406],[-75.17775177751777,-46.29685453266394],[-75.1741517415174,-46.303608841743475],[-75.15255152551525,-46.323871768982066],[-75.10575105751057,-46.34751185076043],[-75.05535055350553,-46.35764331437972],[-75.03015030150301,-46.342446118950775],[-75.05535055350553,-46.33906896441101],[-75.10575105751057,-46.32556034625195],[-75.1309513095131,-46.322183191712185],[-75.13815138151381,-46.31374030536277],[-75.13455134551346,-46.29685453266394],[-75.12375123751237,-46.279968759965115],[-75.09855098550985,-46.27321445088558],[-75.09855098550985,-46.26646014180606],[-75.11295112951129,-46.259705832726524],[-75.11655116551165,-46.24957436910723],[-75.11295112951129,-46.237754328218045],[-75.10575105751057,-46.22593428732887],[-75.09135091350913,-46.21580282370957],[-75.06975069750698,-46.21073709189992],[-75.0481504815048,-46.20904851463004],[-75.03015030150301,-46.21242566916981],[-75.0049500495005,-46.22762286459875],[-74.98334983349834,-46.24957436910723],[-74.96174961749617,-46.26814871907594],[-74.92934929349293,-46.27321445088558],[-74.95094950949509,-46.24788579183735],[-74.96174961749617,-46.23100001913852],[-74.95814958149582,-46.21580282370957],[-74.92574925749257,-46.18709701012157],[-74.91854918549186,-46.178654123772155],[-74.91134911349113,-46.14994831018415],[-74.88974889748897,-46.14657115564438],[-74.8789487894879,-46.14657115564438],[-74.86454864548645,-46.14994831018415],[-74.83934839348393,-46.17021123742274],[-74.81054810548105,-46.198917051010746],[-74.7961479614796,-46.20904851463004],[-74.77814778147781,-46.21242566916981],[-74.78534785347853,-46.197228473740864],[-74.79254792547925,-46.19047416466133],[-74.78534785347853,-46.1837198555818],[-74.77454774547745,-46.178654123772155],[-74.76734767347673,-46.176965546502274],[-74.75654756547566,-46.178654123772155],[-74.77094770947708,-46.16514550561309],[-74.8069480694807,-46.15332546472391],[-74.81774817748177,-46.14319400110462],[-74.82494824948249,-46.12630822840579],[-74.82134821348212,-46.11279961024673],[-74.81414814148141,-46.09929099208767],[-74.81054810548105,-46.08409379665872],[-74.78174781747818,-46.0469450967213],[-74.77454774547745,-46.04019078764177],[-74.70254702547025,-46.033436478562244],[-74.70614706147062,-46.02330501494295],[-74.70974709747097,-46.02161643767306],[-74.7169471694717,-46.02499359221283],[-74.72414724147241,-46.02668216948271],[-74.73854738547385,-46.02330501494295],[-74.73854738547385,-46.014862128593535],[-74.72774727747277,-45.99797635589471],[-74.72414724147241,-45.992910624085056],[-74.7169471694717,-45.98953346954529],[-74.71334713347133,-45.98446773773564],[-74.7169471694717,-45.97602485138623],[-74.72414724147241,-45.967581965036814],[-74.72774727747277,-45.96082765595729],[-74.72774727747277,-45.94394188325846],[-74.69174691746917,-45.84093866979561],[-74.66654666546665,-45.824052897096784],[-74.64854648546485,-45.81561001074737],[-74.63054630546306,-45.824052897096784],[-74.61614616146161,-45.83925009252573],[-74.60534605346054,-45.84600440160526],[-74.59454594545944,-45.84431582433538],[-74.58014580145802,-45.8324957834462],[-74.55854558545585,-45.82574147436667],[-74.54774547745477,-45.84431582433538],[-74.5441454414544,-45.87471021519327],[-74.55854558545585,-45.90341602878127],[-74.5441454414544,-45.90341602878127],[-74.52974529745298,-45.90341602878127],[-74.51534515345153,-45.90341602878127],[-74.5081450814508,-45.91354749240057],[-74.5081450814508,-45.92705611055963],[-74.50094500945009,-45.928744687829514],[-74.49374493744936,-45.92536753328975],[-74.49014490144901,-45.92367895601986],[-74.47574475744757,-45.92536753328975],[-74.47214472144721,-45.92367895601986],[-74.46854468544684,-45.92536753328975],[-74.45774457744577,-45.933810419639165],[-74.45414454144542,-45.94394188325846],[-74.45414454144542,-45.95576192414764],[-74.45774457744577,-45.96589338776693],[-74.46134461344613,-45.97602485138623],[-74.4649446494465,-45.98615631500552],[-74.47574475744757,-45.99797635589471],[-74.47934479344794,-46.008107819514],[-74.47574475744757,-46.01992786040318],[-74.4649446494465,-46.02161643767306],[-74.45414454144542,-46.016550705863416],[-74.44334443344432,-46.008107819514],[-74.43974439744397,-46.00135351043447],[-74.43974439744397,-45.992910624085056],[-74.43254432544325,-45.98446773773564],[-74.42534425344253,-45.977713428656116],[-74.42174421744217,-45.972647696846465],[-74.4181441814418,-45.96082765595729],[-74.4181441814418,-45.95069619233799],[-74.41094410944109,-45.94225330598858],[-74.40014400144001,-45.93718757417893],[-74.40014400144001,-45.930433265099396],[-74.42534425344253,-45.91692464694034],[-74.44694446944469,-45.89497314243186],[-74.4649446494465,-45.866267328843854],[-74.46854468544684,-45.83418436071609],[-74.46134461344613,-45.83925009252573],[-74.45414454144542,-45.84093866979561],[-74.43614436144361,-45.84093866979561],[-74.45054450544505,-45.829118628906436],[-74.46134461344613,-45.81561001074737],[-74.44694446944469,-45.808855701667845],[-74.39294392943928,-45.80041281531843],[-74.36054360543605,-45.790281351699136],[-74.34614346143461,-45.790281351699136],[-74.33174331743317,-45.80041281531843],[-74.32814328143282,-45.807167124397964],[-74.32454324543245,-45.824052897096784],[-74.32094320943209,-45.8324957834462],[-74.31374313743137,-45.8324957834462],[-74.30654306543065,-45.827430051636554],[-74.29574295742957,-45.82067574255702],[-74.28854288542885,-45.81561001074737],[-74.18774187741877,-45.7936585062389],[-74.16974169741697,-45.79196992896902],[-74.15534155341552,-45.79703566077866],[-74.10134101341013,-45.83756151525585],[-74.11574115741158,-45.85444728795468],[-74.13374133741337,-45.867955906113735],[-74.14454144541445,-45.866267328843854],[-74.15534155341552,-45.871333060653505],[-74.17334173341733,-45.87808736973303],[-74.19134191341914,-45.8814645242728],[-74.18414184141841,-45.88315310154268],[-74.11934119341193,-45.89666171970174],[-74.12294122941229,-45.905104606051154],[-74.130141301413,-45.911858915130686],[-74.13734137341373,-45.91692464694034],[-74.14454144541445,-45.92367895601986],[-74.14454144541445,-45.930433265099396],[-74.07974079740796,-45.92199037874998],[-74.05814058140581,-45.930433265099396],[-74.06534065340654,-45.96420481049705],[-74.07974079740796,-45.98109058319588],[-74.10854108541085,-45.99459920135494],[-74.13734137341373,-46.00304208770435],[-74.16614166141662,-46.00473066497424],[-74.16614166141662,-46.013173551323646],[-74.15174151741518,-46.0182392831333],[-74.10134101341013,-46.013173551323646],[-74.08694086940869,-46.0182392831333],[-74.08334083340833,-46.030059324022474],[-74.09774097740977,-46.08071664211896],[-74.11934119341193,-46.10266814662743],[-74.16614166141662,-46.136439692025085],[-74.1409414094141,-46.13137396021544],[-74.10494104941048,-46.116176764786495],[-74.07614076140761,-46.095913837547904],[-74.06534065340654,-46.077339487579195],[-74.05814058140581,-46.02837074675259],[-74.06174061740617,-46.01992786040318],[-74.06894068940689,-46.011484974053765],[-74.06894068940689,-45.99459920135494],[-74.06174061740617,-45.98109058319588],[-74.04374043740437,-45.979402005926],[-74.03654036540365,-45.98615631500552],[-74.03294032940329,-45.99797635589471],[-74.02934029340292,-46.008107819514],[-73.98253982539825,-46.030059324022474],[-73.97893978939788,-46.04019078764177],[-73.9681396813968,-46.06045371488037],[-73.9681396813968,-46.073962333039425],[-73.97173971739717,-46.08409379665872],[-73.98973989739898,-46.116176764786495],[-74.02214022140221,-46.14825973291426],[-74.06534065340654,-46.17189981469262],[-74.19134191341914,-46.219179978249336],[-74.26334263342633,-46.23100001913852],[-74.31374313743137,-46.24957436910723],[-74.3389433894339,-46.25295152364699],[-74.36054360543605,-46.24619721456746],[-74.39654396543965,-46.222557132789106],[-74.4181441814418,-46.219179978249336],[-74.42534425344253,-46.21580282370957],[-74.47934479344794,-46.16852266015286],[-74.49014490144901,-46.16345692834321],[-74.49014490144901,-46.18878558739145],[-74.4649446494465,-46.20735993736016],[-74.41094410944109,-46.236065750948164],[-74.40014400144001,-46.24450863729758],[-74.38934389343893,-46.25126294637711],[-74.37494374943749,-46.25632867818676],[-74.36054360543605,-46.259705832726524],[-74.34254342543426,-46.261394409996406],[-74.19134191341914,-46.2428200600277],[-74.07614076140761,-46.2039827828204],[-74.0509405094051,-46.19047416466133],[-74.04374043740437,-46.197228473740864],[-74.05454054540544,-46.21580282370957],[-74.07254072540725,-46.2326885964084],[-74.04014040140402,-46.24619721456746],[-74.04014040140402,-46.2715258736157],[-74.07614076140761,-46.322183191712185],[-74.06174061740617,-46.31711745990253],[-74.03654036540365,-46.29178880085429],[-74.02574025740257,-46.28672306904465],[-74.00774007740077,-46.28841164631453],[-73.94293942939429,-46.30529741901336],[-73.92853928539284,-46.31374030536277],[-73.91773917739177,-46.32556034625195],[-73.90693906939069,-46.33569180987124],[-73.89253892538925,-46.33906896441101],[-73.84573845738457,-46.342446118950775],[-73.94653946539465,-46.26646014180606],[-73.95733957339573,-46.24957436910723],[-73.95373953739536,-46.23100001913852],[-73.97533975339753,-46.222557132789106],[-74.0149401494015,-46.219179978249336],[-74.01854018540185,-46.2039827828204],[-74.01134011340113,-46.18540843285169],[-73.99693996939969,-46.16683408288298],[-73.98613986139861,-46.15332546472391],[-73.9681396813968,-46.1448825783745],[-73.94293942939429,-46.139816846564855],[-73.89613896138961,-46.136439692025085],[-73.88173881738817,-46.14150542383474],[-73.87093870938709,-46.155014041993795],[-73.85653856538565,-46.1837198555818],[-73.82773827738276,-46.2039827828204],[-73.79533795337953,-46.21580282370957],[-73.77013770137701,-46.23437717367828],[-73.7629376293763,-46.27321445088558],[-73.77373773737737,-46.3204946144423],[-73.79533795337953,-46.361020468919484],[-73.82413824138241,-46.3981691688569],[-73.85653856538565,-46.43025213698468],[-73.91413914139142,-46.46908941419198],[-73.92133921339213,-46.48259803235104],[-73.92853928539284,-46.49779522777998],[-73.97533975339753,-46.54000965952705],[-73.98973989739898,-46.56027258676564],[-73.98253982539825,-46.567026895845174],[-73.96453964539646,-46.57040405038494],[-73.9249392493925,-46.59742128670306],[-73.89973899738997,-46.60248701851271],[-73.87453874538745,-46.60248701851271],[-73.85293852938528,-46.59573270943318],[-73.83133831338313,-46.57715835946447],[-73.82053820538205,-46.55689543222588],[-73.81333813338134,-46.53663250498729],[-73.79173791737917,-46.504549536859514],[-73.78813788137882,-46.49779522777998],[-73.78093780937809,-46.49441807324022],[-73.77013770137701,-46.49948380504987],[-73.75933759337593,-46.506238114129395],[-73.7521375213752,-46.51468100047881],[-73.74133741337413,-46.53325535044752],[-73.73773737737378,-46.52143530955834],[-73.73773737737378,-46.50792669139928],[-73.74493744937449,-46.4961066505101],[-73.7521375213752,-46.49272949597034],[-73.76653766537665,-46.485975186890805],[-73.76653766537665,-46.47246656873175],[-73.75573755737557,-46.443760755143735],[-73.74133741337413,-46.42180925063526],[-73.69093690936909,-46.37284050980866],[-73.6729367293673,-46.3593318916496],[-73.62253622536225,-46.33400323260136],[-73.60093600936008,-46.318806037172415],[-73.57933579335793,-46.31036315082301],[-73.51453514535145,-46.30698599628324],[-73.48933489334892,-46.300231687203706],[-73.52893528935289,-46.300231687203706],[-73.55053550535504,-46.29516595539406],[-73.56493564935649,-46.28672306904465],[-73.56853568535685,-46.26983729634582],[-73.56133561335614,-46.25801725545664],[-73.55053550535504,-46.24619721456746],[-73.54333543335433,-46.2326885964084],[-73.52533525335252,-46.175276969232385],[-73.50733507335073,-46.155014041993795],[-73.47493474934748,-46.14994831018415],[-73.48213482134821,-46.14319400110462],[-73.42453424534244,-46.07058517849966],[-73.40293402934029,-46.06045371488037],[-73.35613356133561,-46.04187936491166],[-73.34533345333453,-46.02668216948271],[-73.36333363333632,-46.02330501494295],[-73.3849338493385,-46.01992786040318],[-73.41013410134101,-46.02161643767306],[-73.43173431734317,-46.030059324022474],[-73.44613446134461,-46.04863367399118],[-73.46773467734677,-46.08915952846837],[-73.57573575735756,-46.20229420555051],[-73.61173611736118,-46.219179978249336],[-73.61173611736118,-46.22593428732887],[-73.60093600936008,-46.24619721456746],[-73.6261362613626,-46.27659160542535],[-73.68733687336874,-46.322183191712185],[-73.70173701737016,-46.29347737812418],[-73.69093690936909,-46.25632867818676],[-73.66573665736657,-46.22593428732887],[-73.63333633336333,-46.219179978249336],[-73.64773647736477,-46.19553989647098],[-73.64053640536405,-46.16514550561309],[-73.6261362613626,-46.13137396021544],[-73.61893618936189,-46.10266814662743],[-73.61893618936189,-46.08240521938884],[-73.6261362613626,-46.07058517849966],[-73.65133651336512,-46.05032225126107],[-73.65133651336512,-46.04187936491166],[-73.65493654936549,-45.996287778624826],[-73.65493654936549,-45.98446773773564],[-73.66213662136622,-45.979402005926],[-73.66213662136622,-45.97602485138623],[-73.64773647736477,-45.96420481049705],[-73.62253622536225,-45.95069619233799],[-73.61893618936189,-45.94563046052834],[-73.61893618936189,-45.933810419639165],[-73.60813608136081,-45.90341602878127],[-73.58653586535866,-45.88484167881256],[-73.55413554135541,-45.87808736973303],[-73.52173521735217,-45.87639879246315],[-73.53613536135362,-45.871333060653505],[-73.55053550535504,-45.86289017430409],[-73.55773557735577,-45.85444728795468],[-73.56493564935649,-45.84093866979561],[-73.56133561335614,-45.829118628906436],[-73.53973539735397,-45.81223285620761],[-73.53613536135362,-45.803789969858194],[-73.40293402934029,-45.702475333665234],[-73.35613356133561,-45.68727813823629],[-73.19773197731978,-45.67714667461699],[-73.18693186931868,-45.67208094280735],[-73.18693186931868,-45.661949479188046],[-73.19053190531905,-45.65519517010852],[-73.19773197731978,-45.660260901918164],[-73.29493294932949,-45.65012943829887],[-73.31293312933128,-45.643375129219336],[-73.31653316533165,-45.63830939740969],[-73.32013320133201,-45.62986651106028],[-73.32733327333273,-45.61973504744098],[-73.33453334533345,-45.621423624710864],[-73.35973359733597,-45.63324366560004],[-73.36693366933669,-45.639997974679574],[-73.37773377733777,-45.643375129219336],[-73.4209342093421,-45.65012943829887],[-73.42453424534244,-45.65519517010852],[-73.47493474934748,-45.71260679728453],[-73.48933489334892,-45.726115415443594],[-73.5109351093511,-45.73286972452312],[-73.53253532535325,-45.741312610872534],[-73.56493564935649,-45.77677273354007],[-73.590135901359,-45.78014988807984],[-73.58293582935829,-45.75144407449183],[-73.57573575735756,-45.722738260903824],[-73.57213572135721,-45.660260901918164],[-73.56493564935649,-45.63324366560004],[-73.54333543335433,-45.580897770233676],[-73.53613536135362,-45.536994761216725],[-73.52533525335252,-45.50491179308896],[-73.52173521735217,-45.4711402476913],[-73.51813518135181,-45.46100878407201],[-73.5109351093511,-45.45256589772259],[-73.50373503735037,-45.44412301137318],[-73.47493474934748,-45.42386008413459],[-73.44613446134461,-45.41372862051529],[-73.4209342093421,-45.41879435232494],[-73.41373413734136,-45.45087732045271],[-73.40653406534065,-45.45087732045271],[-73.39933399333992,-45.38839996146705],[-73.39213392133921,-45.374891343307986],[-73.37053370533705,-45.36644845695858],[-73.35253352533525,-45.373202766038105],[-73.32373323733236,-45.395154270546584],[-73.32373323733236,-45.378268497847756],[-73.32733327333273,-45.358005570609166],[-73.32733327333273,-45.34111979791034],[-73.31293312933128,-45.334365488830805],[-73.30573305733057,-45.332676911560924],[-73.28773287732876,-45.32254544794163],[-73.27693276932769,-45.32085687067174],[-73.26613266132661,-45.32085687067174],[-73.2589325893259,-45.31916829340186],[-73.25173251732517,-45.315791138862096],[-73.24453244532445,-45.310725407052445],[-73.22653226532265,-45.30059394343315],[-73.20853208532085,-45.30228252070303],[-73.19413194131941,-45.31241398432233],[-73.17973179731797,-45.32761117975127],[-73.1761317613176,-45.33605406610069],[-73.17253172531726,-45.352939838799514],[-73.16533165331653,-45.36138272514893],[-73.16173161731616,-45.36644845695858],[-73.14013140131401,-45.374891343307986],[-73.10413104131041,-45.39853142508635],[-73.0861308613086,-45.40697431143576],[-73.06813068130681,-45.41035146597552],[-73.04653046530466,-45.415417197785175],[-73.01413014130141,-45.44412301137318],[-72.99252992529925,-45.45087732045271],[-72.90252902529025,-45.46438593861177],[-72.85932859328592,-45.46438593861177],[-72.85932859328592,-45.44412301137318],[-72.83772837728377,-45.42723723867435],[-72.83052830528305,-45.41879435232494],[-72.8341283412834,-45.40697431143576],[-72.8449284492845,-45.396842847816465],[-72.85932859328592,-45.39008853873693],[-72.87372873728737,-45.38671138419717],[-72.89172891728917,-45.39008853873693],[-72.90612906129061,-45.395154270546584],[-72.91332913329133,-45.40190857962611],[-72.9241292412924,-45.40697431143576],[-72.94212942129421,-45.41035146597552],[-72.95652956529565,-45.40866288870564],[-72.98172981729817,-45.40022000235623],[-73.07893078930789,-45.354628416069396],[-73.1761317613176,-45.28201959346444],[-73.21573215732157,-45.25837951168608],[-73.25533255332553,-45.248248048066785],[-73.29493294932949,-45.26006808895597],[-73.32733327333273,-45.28370817073432],[-73.34533345333453,-45.290462479813854],[-73.3741337413374,-45.292151057083736],[-73.39933399333992,-45.292151057083736],[-73.42453424534244,-45.28708532527409],[-73.44973449734496,-45.27864243892468],[-73.46053460534606,-45.266822398035494],[-73.4641346413464,-45.2465594707969],[-73.46053460534606,-45.22123081174866],[-73.44973449734496,-45.19927930724019],[-73.43533435334353,-45.190836420890776],[-73.38133381333813,-45.19421357543054],[-73.35613356133561,-45.190836420890776],[-73.33093330933309,-45.17732780273171],[-73.33093330933309,-45.16213060730277],[-73.31653316533165,-45.15368772095336],[-73.30573305733057,-45.14524483460394],[-73.31293312933128,-45.12498190736535],[-73.33093330933309,-45.109784711936406],[-73.3381333813338,-45.10134182558699],[-73.3381333813338,-45.09458751650746],[-73.33453334533345,-45.087833207427934],[-73.3381333813338,-45.08276747561828],[-73.35613356133561,-45.0810788983484],[-73.37053370533705,-45.07601316653875],[-73.3849338493385,-45.06081597110981],[-73.39933399333992,-45.04393019841098],[-73.40653406534065,-45.025355848442274],[-73.40653406534065,-45.006781498473565],[-73.39933399333992,-44.98820714850485],[-73.3849338493385,-44.97300995307591],[-73.37053370533705,-44.964567066726495],[-73.34893348933488,-44.95781275764696],[-73.23373233732337,-44.964567066726495],[-73.21933219332193,-44.964567066726495],[-73.20853208532085,-44.959501334916844],[-73.19053190531905,-44.94768129402767],[-73.17973179731797,-44.944304139487905],[-73.15813158131581,-44.942615562218016],[-73.11853118531185,-44.94768129402767],[-73.10053100531005,-44.940926984948135],[-73.08253082530825,-44.92404121224931],[-73.02853028530285,-44.88858108958177],[-73.0069300693007,-44.86494100780342],[-72.99972999729997,-44.86156385326365],[-72.95652956529565,-44.86156385326365],[-72.93492934929348,-44.858186698723884],[-72.91332913329133,-44.84805523510459],[-72.80892808928088,-44.76700352615022],[-72.76572765727657,-44.75011775345139],[-72.72612726127261,-44.758560639800805],[-72.72252722527224,-44.74674059891163],[-72.71172711727117,-44.733231980752564],[-72.7081270812708,-44.72478909440315],[-72.71172711727117,-44.71803478532362],[-72.72252722527224,-44.701149012624796],[-72.72612726127261,-44.694394703545264],[-72.72972729727297,-44.67413177630667],[-72.72972729727297,-44.66568888995726],[-72.7081270812708,-44.6420488081789],[-72.70452704527045,-44.633605921829485],[-72.68652686526865,-44.57957144919324],[-72.68292682926828,-44.56099709922453],[-72.67932679326793,-44.5441113265257],[-72.66852668526685,-44.532291285636525],[-72.64332643326433,-44.51878266747746],[-72.61812618126181,-44.508651203858165],[-72.59652596525964,-44.5052740493184],[-72.61812618126181,-44.46474819484121],[-72.61452614526145,-44.42084518582426],[-72.5929259292593,-44.341482054139775],[-72.59652596525964,-44.34992494048919],[-72.61092610926109,-44.37187644499767],[-72.61452614526145,-44.37187644499767],[-72.62892628926289,-44.39045079496638],[-72.63252632526324,-44.39551652677603],[-72.64332643326433,-44.40564799039532],[-72.65052650526505,-44.407336567665205],[-72.66132661326613,-44.409025144935086],[-72.66492664926649,-44.41240229947485],[-72.66132661326613,-44.432665226713446],[-72.66132661326613,-44.43941953579297],[-72.6721267212672,-44.45461673122192],[-72.68652686526865,-44.488388276619574],[-72.70092700927009,-44.49851974023887],[-72.72252722527224,-44.50189689477863],[-72.73332733327332,-44.49514258569911],[-72.74052740527405,-44.47994539027016],[-72.74052740527405,-44.46137104030145],[-72.75132751327513,-44.449550999412274],[-72.76932769327694,-44.43941953579297],[-72.79452794527946,-44.432665226713446],[-72.81252812528125,-44.43097664944356],[-72.81612816128161,-44.427599494903795],[-72.83772837728377,-44.409025144935086],[-72.84852848528485,-44.40227083585555],[-72.9241292412924,-44.37356502226755],[-72.93492934929348,-44.365122135918135],[-72.93132931329313,-44.346547785949426],[-72.9241292412924,-44.33303916779037],[-72.92772927729277,-44.321219126901184],[-72.93852938529385,-44.306021931472245],[-72.960129601296,-44.29926762239271],[-73.01413014130141,-44.29251331331318],[-73.050130501305,-44.27393896334447],[-73.15813158131581,-44.260430345185405],[-73.17253172531726,-44.25536461337576],[-73.18333183331833,-44.24861030429623],[-73.19053190531905,-44.241855995216696],[-73.19413194131941,-44.23341310886728],[-73.19053190531905,-44.22665879978776],[-73.14013140131401,-44.20977302708893],[-73.12213122131222,-44.18951009985034],[-73.11853118531185,-44.182755790770806],[-73.11853118531185,-44.159115708992445],[-73.12933129331293,-44.14560709083339],[-73.14013140131401,-44.14560709083339],[-73.15453154531545,-44.177690058961154],[-73.17253172531726,-44.18951009985034],[-73.19773197731978,-44.19626440892986],[-73.21933219332193,-44.19626440892986],[-73.24453244532445,-44.19457583165998],[-73.26613266132661,-44.18782152258045],[-73.28413284132841,-44.17431290442139],[-73.29133291332913,-44.15236139991291],[-73.28773287732876,-44.12365558632491],[-73.27693276932769,-44.11014696816585],[-73.26253262532624,-44.10845839089597],[-73.24093240932409,-44.115212699975494],[-73.23373233732337,-44.120278431785145],[-73.22653226532265,-44.12703274086468],[-73.2229322293223,-44.12703274086468],[-73.21933219332193,-44.11183554543573],[-73.21933219332193,-44.078064000038076],[-73.21573215732157,-44.06793253641878],[-73.20133201332013,-44.06117822733925],[-73.18693186931868,-44.05948965006937],[-73.17253172531726,-44.05948965006937],[-73.16893168931689,-44.06455538187902],[-73.15813158131581,-44.07975257730796],[-73.15453154531545,-44.08819546365737],[-73.12573125731257,-44.096638350006785],[-73.11493114931149,-44.08650688638749],[-73.11493114931149,-44.06793253641878],[-73.12213122131222,-44.05948965006937],[-73.1329313293133,-44.04935818645007],[-73.13653136531364,-44.02402952740183],[-73.14013140131401,-43.98519225019453],[-73.1329313293133,-43.9683064774957],[-73.12213122131222,-43.951420704796874],[-73.09333093330933,-43.92609204574863],[-73.08253082530825,-43.91933773666911],[-73.07533075330753,-43.91764915939922],[-73.07173071730718,-43.914272004859455],[-73.06453064530645,-43.90245196397028],[-73.06093060930608,-43.89232050035098],[-73.06093060930608,-43.88387761400157],[-73.06093060930608,-43.87374615038227],[-73.05733057330573,-43.86023753222321],[-73.03213032130321,-43.82646598682555],[-73.02133021330214,-43.807891636856844],[-73.01413014130141,-43.7825629778086],[-73.01413014130141,-43.77243151418931],[-73.0069300693007,-43.77412009145919],[-72.99612996129962,-43.78594013234837],[-72.98892988929889,-43.79607159596767],[-72.98892988929889,-43.80620305958696],[-72.98532985329852,-43.81464594593638],[-72.96732967329673,-43.81971167774602],[-72.95292952929529,-43.8028259050472],[-72.92772927729277,-43.787628709618254],[-72.89892898928989,-43.77749724599896],[-72.87372873728737,-43.77918582326884],[-72.86652866528665,-43.78594013234837],[-72.86292862928629,-43.79776017323755],[-72.85572855728557,-43.807891636856844],[-72.8449284492845,-43.812957368666495],[-72.83052830528305,-43.811268791396614],[-72.82332823328233,-43.807891636856844],[-72.82692826928269,-43.80113732777731],[-72.8449284492845,-43.77580866872908],[-72.84852848528485,-43.75892289603025],[-72.85212852128521,-43.74034854606154],[-72.85212852128521,-43.71670846428318],[-72.8449284492845,-43.69982269158435],[-72.84132841328413,-43.689691227965056],[-72.84852848528485,-43.67955976434576],[-72.85572855728557,-43.67955976434576],[-72.85572855728557,-43.689691227965056],[-72.85932859328592,-43.704888423394],[-72.86292862928629,-43.71333130974342],[-72.86652866528665,-43.72346277336271],[-72.87012870128702,-43.73359423698201],[-72.87372873728737,-43.7437257006013],[-72.88452884528844,-43.750480009680835],[-72.89532895328954,-43.7538571642206],[-72.92052920529206,-43.750480009680835],[-72.93492934929348,-43.750480009680835],[-72.94572945729458,-43.75554574149048],[-72.960129601296,-43.76398862783989],[-72.9709297092971,-43.765677205109775],[-72.97812978129781,-43.76061147330013],[-72.98892988929889,-43.74203712333142],[-72.99972999729997,-43.73697139152177],[-73.02493024930249,-43.73528281425189],[-73.04293042930429,-43.730217082442245],[-73.04653046530466,-43.728528505172356],[-73.05373053730537,-43.7150198870133],[-73.04293042930429,-43.69644553704459],[-73.02493024930249,-43.684625496155405],[-73.00333003330033,-43.67787118707588],[-72.98892988929889,-43.666051146186696],[-72.97452974529745,-43.622148137169745],[-72.95292952929529,-43.61539382809022],[-72.92772927729277,-43.61370525082034],[-72.90612906129061,-43.606950941740806],[-72.91692916929169,-43.588376591772096],[-72.93132931329313,-43.586688014502215],[-72.97812978129781,-43.59344232358174],[-73.0069300693007,-43.59344232358174],[-73.02493024930249,-43.586688014502215],[-73.03933039330393,-43.57486797361303],[-73.06813068130681,-43.51407919189725],[-73.07893078930789,-43.49550484192854],[-73.11133111331112,-43.461733296530895],[-73.11133111331112,-43.443158946562185],[-73.08973089730897,-43.402633092085],[-73.0861308613086,-43.38237016484641],[-73.0861308613086,-43.31651565132098],[-73.07533075330753,-43.30131845589204],[-73.05733057330573,-43.28949841500285],[-72.95292952929529,-43.24728398325579],[-72.93132931329313,-43.24390682871602],[-72.91332913329133,-43.23546394236661],[-72.90612906129061,-43.21520101512802],[-72.90972909729096,-43.189872356079775],[-72.91332913329133,-43.169609428841184],[-72.93132931329313,-43.12401784255435],[-72.93492934929348,-43.09868918350611],[-72.9241292412924,-43.08686914261693],[-72.90612906129061,-43.07673767899764],[-72.86652866528665,-43.01932605182162],[-72.84852848528485,-43.01088316547221],[-72.82332823328233,-43.007506010932445],[-72.80532805328053,-43.01426032001198],[-72.79092790927909,-43.05478617448916],[-72.77292772927728,-43.068294792648224],[-72.7549275492755,-43.07673767899764],[-72.73332733327332,-43.0801148335374],[-72.7549275492755,-43.03452324725057],[-72.7621276212762,-43.00919458820233],[-72.75132751327513,-42.987243083693855],[-72.75132751327513,-42.97880019734444],[-72.74772747727476,-42.90956852927925],[-72.7549275492755,-42.901125642929834],[-72.76932769327694,-42.887617024770776],[-72.81972819728198,-42.85722263391288],[-72.84132841328413,-42.838648283944174],[-72.85212852128521,-42.80994247035617],[-72.85212852128521,-42.79305669765734],[-72.86652866528665,-42.75084226591028],[-72.86292862928629,-42.737333647751214],[-72.86292862928629,-42.72551360686204],[-72.85932859328592,-42.71200498870297],[-72.86652866528665,-42.69680779327403],[-72.8341283412834,-42.68836490692462],[-72.82692826928269,-42.679922020575205],[-72.82332823328233,-42.66472482514626],[-72.83052830528305,-42.65290478425708],[-72.85572855728557,-42.63433043428837],[-72.86652866528665,-42.62082181612931],[-72.86652866528665,-42.59042742527142],[-72.85572855728557,-42.556655879873766],[-72.84132841328413,-42.52457291174599],[-72.82332823328233,-42.5043099845074],[-72.79452794527946,-42.494178520888106],[-72.7549275492755,-42.492489943618224],[-72.71172711727117,-42.49586709815799],[-72.67932679326793,-42.5043099845074],[-72.66852668526685,-42.512752870856815],[-72.65412654126541,-42.52457291174599],[-72.63972639726397,-42.534704375365294],[-72.60732607326072,-42.5431472617147],[-72.57852578525785,-42.56172161168342],[-72.56412564125641,-42.56509876622318],[-72.53892538925389,-42.55834445714365],[-72.54252542525425,-42.54145868444482],[-72.55692556925568,-42.52457291174599],[-72.5821258212582,-42.517818602666466],[-72.60372603726037,-42.514441448126696],[-72.65772657726576,-42.49080136634834],[-72.67932679326793,-42.47898132545916],[-72.7189271892719,-42.43338973917233],[-72.72252722527224,-42.42325827555303],[-72.71532715327153,-42.40130677104456],[-72.72252722527224,-42.387798152885495],[-72.72972729727297,-42.38442099834573],[-72.7549275492755,-42.38442099834573],[-72.7621276212762,-42.38104384380596],[-72.77292772927728,-42.36584664837702],[-72.79092790927909,-42.31687790755042],[-72.79452794527946,-42.305057866661244],[-72.81252812528125,-42.305057866661244],[-72.8341283412834,-42.30336928939136],[-72.8449284492845,-42.29492640304195],[-72.8449284492845,-42.27804063034312],[-72.80892808928088,-42.242580507675584],[-72.76572765727657,-42.22738331224664],[-72.6721267212672,-42.20880896227793],[-72.62172621726216,-42.185168880499575],[-72.5929259292593,-42.181791725959805],[-72.57132571325712,-42.19023461230922],[-72.55692556925568,-42.21049753954781],[-72.4561245612456,-42.44014404825186],[-72.44172441724417,-42.45871839822057],[-72.42732427324273,-42.46378413003022],[-72.420124201242,-42.44014404825186],[-72.42732427324273,-42.39624103923491],[-72.44172441724417,-42.35402660748784],[-72.45252452524525,-42.3388294120589],[-72.46332463324633,-42.32363221662995],[-72.47772477724777,-42.30843502120101],[-72.48132481324812,-42.288172093962416],[-72.47412474124741,-42.26959774399371],[-72.4561245612456,-42.25946628037441],[-72.43092430924308,-42.249334816755116],[-72.41292412924129,-42.23751477586593],[-72.43812438124381,-42.23751477586593],[-72.45972459724597,-42.23413762132617],[-72.47412474124741,-42.22231758043699],[-72.48132481324812,-42.19867749865863],[-72.47772477724777,-42.17334883961039],[-72.4669246692467,-42.163217375991096],[-72.44892448924489,-42.15815164418145],[-72.42732427324273,-42.14802018056215],[-72.44172441724417,-42.144643026022386],[-72.45972459724597,-42.142954448752505],[-72.47412474124741,-42.13957729421274],[-72.48852488524885,-42.12775725332356],[-72.48852488524885,-42.11762578970426],[-72.48852488524885,-42.080477089766845],[-72.48852488524885,-42.0652798943379],[-72.46332463324633,-41.98591676265341],[-72.46332463324633,-41.975785299034115],[-72.48492484924849,-41.95889952633529],[-72.51732517325173,-41.95045663998588],[-72.54252542525425,-41.977473876304],[-72.56052560525605,-42.01293399897153],[-72.5821258212582,-42.03150834894025],[-72.60732607326072,-42.03319692621013],[-72.61812618126181,-42.03150834894025],[-72.62532625326253,-42.0163111535113],[-72.63252632526324,-42.00955684443177],[-72.65412654126541,-42.02137688532095],[-72.66852668526685,-42.0163111535113],[-72.67932679326793,-42.00617968989201],[-72.68652686526865,-41.997736803542594],[-72.71172711727117,-42.0163111535113],[-72.73692736927369,-42.01462257624142],[-72.81612816128161,-41.979162453573885],[-72.82692826928269,-41.97240814449435],[-72.83772837728377,-41.96227668087506],[-72.84132841328413,-41.957210949065406],[-72.84132841328413,-41.94707948544611],[-72.8449284492845,-41.942013753636466],[-72.85212852128521,-41.936948021826815],[-72.86652866528665,-41.931882290017164],[-72.87372873728737,-41.9285051354774],[-72.8809288092881,-41.92343940366776],[-72.88812888128881,-41.916685094588225],[-72.88812888128881,-41.91161936277857],[-72.86292862928629,-41.90655363096893],[-72.85572855728557,-41.8997993218894],[-72.84132841328413,-41.88460212646045],[-72.8341283412834,-41.88122497192069],[-72.81972819728198,-41.876159240111036],[-72.81612816128161,-41.874470662841155],[-72.81612816128161,-41.86940493103151],[-72.81972819728198,-41.85758489014233],[-72.81612816128161,-41.854207735602564],[-72.80892808928088,-41.84576484925315],[-72.7189271892719,-41.77822175845784],[-72.70452704527045,-41.771467449378314],[-72.69012690126901,-41.76471314029878],[-72.66492664926649,-41.73263017217101],[-72.64692646926468,-41.72249870855171],[-72.62172621726216,-41.72249870855171],[-72.5929259292593,-41.729253017631244],[-72.56772567725677,-41.730941594901125],[-72.53532535325353,-41.7140558222023],[-72.52092520925208,-41.7140558222023],[-72.510125101251,-41.71574439947218],[-72.49572495724956,-41.71574439947218],[-72.48492484924849,-41.7140558222023],[-72.45972459724597,-41.70223578131312],[-72.42372423724237,-41.69717004950347],[-72.41652416524165,-41.692104317693826],[-72.38052380523804,-41.668464235915465],[-72.37692376923769,-41.6650870813757],[-72.35892358923589,-41.65326704048652],[-72.35172351723517,-41.648201308676875],[-72.3409234092341,-41.64651273140699],[-72.30132301323013,-41.648201308676875],[-72.330123301233,-41.63469269051781],[-72.33732337323373,-41.627938381438284],[-72.34452344523444,-41.61274118600934],[-72.3409234092341,-41.60092114512016],[-72.32292322923229,-41.565461022452624],[-72.32292322923229,-41.55870671337309],[-72.32292322923229,-41.545198095214026],[-72.32292322923229,-41.5384437861345],[-72.30492304923048,-41.528312322515205],[-72.30132301323013,-41.524935167975435],[-72.30852308523085,-41.51142654981638],[-72.32652326523265,-41.49285219984767],[-72.330123301233,-41.482720736228366],[-72.32652326523265,-41.45739207718013],[-72.30132301323013,-41.405046181813766],[-72.30132301323013,-41.381406100035406],[-72.32292322923229,-41.36789748187635],[-72.3409234092341,-41.37127463641611],[-72.34452344523444,-41.38647183184506],[-72.32292322923229,-41.40842333635353],[-72.330123301233,-41.42024337724271],[-72.34452344523444,-41.442194881751185],[-72.35172351723517,-41.45570349991024],[-72.37332373323733,-41.590789681500866],[-72.38052380523804,-41.609364031469575],[-72.39132391323913,-41.62118407235875],[-72.40572405724056,-41.64651273140699],[-72.41652416524165,-41.65833277229617],[-72.42732427324273,-41.66339850410582],[-72.45972459724597,-41.673529967725116],[-72.52092520925208,-41.68197285407453],[-72.53172531725316,-41.68535000861429],[-72.54252542525425,-41.692104317693826],[-72.57132571325712,-41.707301513122765],[-72.58572585725857,-41.70899009039265],[-72.61092610926109,-41.707301513122765],[-72.65052650526505,-41.687038585884174],[-72.66852668526685,-41.68197285407453],[-72.67572675726757,-41.673529967725116],[-72.68652686526865,-41.629626958708165],[-72.69372693726937,-41.61274118600934],[-72.72972729727297,-41.590789681500866],[-72.72972729727297,-41.585723949691214],[-72.73692736927369,-41.58065821788156],[-72.75132751327513,-41.548575249753796],[-72.75852758527584,-41.543509517944145],[-72.79092790927909,-41.53168947705497],[-72.81972819728198,-41.50973797254649],[-72.84132841328413,-41.499606508927194],[-72.85212852128521,-41.49791793165731],[-72.86292862928629,-41.49791793165731],[-72.87372873728737,-41.506360818006726],[-72.88452884528844,-41.51142654981638],[-72.89532895328954,-41.50804939527661],[-72.90252902529025,-41.499606508927194],[-72.90972909729096,-41.49622935438743],[-72.93492934929348,-41.486097890768136],[-72.94572945729458,-41.482720736228366],[-72.95652956529565,-41.484409313498254],[-72.97812978129781,-41.51649228162602],[-73.02133021330214,-41.51480370435614],[-73.03573035730356,-41.53000089978509],[-73.03573035730356,-41.55701813610321],[-73.07893078930789,-41.565461022452624],[-73.0861308613086,-41.57052675426227],[-73.0969309693097,-41.57221533153215],[-73.10413104131041,-41.5772810633418],[-73.11133111331112,-41.585723949691214],[-73.10773107731077,-41.590789681500866],[-73.0969309693097,-41.60260972239004],[-73.08973089730897,-41.605986876929805],[-73.09333093330933,-41.611052608739456],[-73.0969309693097,-41.61442976327922],[-73.0969309693097,-41.6161183405491],[-73.0969309693097,-41.61949549508887],[-73.07893078930789,-41.627938381438284],[-73.07533075330753,-41.6363812677877],[-73.07893078930789,-41.6650870813757],[-73.07173071730718,-41.673529967725116],[-73.06453064530645,-41.687038585884174],[-73.06093060930608,-41.69717004950347],[-73.06813068130681,-41.70223578131312],[-73.08973089730897,-41.703924358583],[-73.10053100531005,-41.710678667662535],[-73.11853118531185,-41.73769590398066],[-73.12933129331293,-41.74782736759995],[-73.14013140131401,-41.754581676679486],[-73.15813158131581,-41.75627025394937],[-73.17253172531726,-41.751204522139716],[-73.20133201332013,-41.78497606753737],[-73.27693276932769,-41.78328749026749],[-73.36333363333632,-41.773156026648195],[-73.4281342813428,-41.77822175845784],[-73.42453424534244,-41.78328749026749],[-73.4209342093421,-41.78666464480725],[-73.41733417334173,-41.79004179934702],[-73.41373413734136,-41.791730376616904],[-73.41373413734136,-41.79848468569644],[-73.43533435334353,-41.793418953886786],[-73.45693456934569,-41.79679610842655],[-73.49653496534965,-41.80523899477596],[-73.51453514535145,-41.80355041750608],[-73.57213572135721,-41.77822175845784],[-73.65853658536585,-41.75795883121925],[-73.73413734137341,-41.754581676679486],[-73.75933759337593,-41.749515944869835],[-73.75573755737557,-41.74107305852042],[-73.74133741337413,-41.73600732671078],[-73.72693726937268,-41.72587586309148],[-73.70893708937089,-41.69717004950347],[-73.70173701737016,-41.68197285407453],[-73.69813698136981,-41.668464235915465],[-73.69453694536945,-41.65157846321664],[-73.69813698136981,-41.6363812677877],[-73.68373683736837,-41.626249804168395],[-73.66933669336693,-41.6161183405491],[-73.64053640536405,-41.61274118600934],[-73.58293582935829,-41.61442976327922],[-73.55413554135541,-41.607675454199686],[-73.54333543335433,-41.58910110423098],[-73.53613536135362,-41.567149599722505],[-73.50373503735037,-41.53000089978509],[-73.49653496534965,-41.50973797254649],[-73.52893528935289,-41.53675520886462],[-73.5469354693547,-41.567149599722505],[-73.57213572135721,-41.590789681500866],[-73.61533615336153,-41.59923256785027],[-73.6261362613626,-41.59754399058039],[-73.64773647736477,-41.58910110423098],[-73.65853658536585,-41.585723949691214],[-73.66933669336693,-41.587412526961096],[-73.68373683736837,-41.590789681500866],[-73.69453694536945,-41.59247825877075],[-73.71253712537126,-41.58910110423098],[-73.74493744937449,-41.57559248607192],[-73.75933759337593,-41.57221533153215],[-73.76653766537665,-41.57052675426227],[-73.77013770137701,-41.56377244518274],[-73.77373773737737,-41.56039529064297],[-73.78453784537845,-41.562083867912854],[-73.78813788137882,-41.56377244518274],[-73.79173791737917,-41.565461022452624],[-73.7989379893799,-41.565461022452624],[-73.80613806138061,-41.55701813610321],[-73.80973809738097,-41.545198095214026],[-73.7989379893799,-41.53506663159473],[-73.80253802538024,-41.523246590705554],[-73.81333813338134,-41.49622935438743],[-73.8421384213842,-41.46752354079943],[-73.84933849338493,-41.4405063044813],[-73.85293852938528,-41.421931954512594],[-73.8421384213842,-41.39660329546435],[-73.8421384213842,-41.33243735920881],[-73.85653856538565,-41.278402886572565],[-73.87453874538745,-41.22774556847608],[-73.89613896138961,-41.18384255945913],[-73.92133921339213,-41.153448168601244],[-73.91413914139142,-41.134873818632535],[-73.91773917739177,-41.116299468663826],[-73.93213932139321,-41.09434796415535],[-73.92853928539284,-41.07577361418664],[-73.93933939339394,-41.050444955138396],[-73.93573935739357,-41.02173914155039],[-73.93933939339394,-40.99472190523227],[-73.94653946539465,-40.972770400723796],[-73.93933939339394,-40.95926178256473],[-73.9249392493925,-40.95419605075509],[-73.90333903339032,-40.949130318945436],[-73.89253892538925,-40.93731027805626],[-73.87093870938709,-40.930555968976726],[-73.85293852938528,-40.91535877354778],[-73.85653856538565,-40.90185015538872],[-73.87453874538745,-40.890030114499545],[-73.8889388893889,-40.87821007361036],[-73.89253892538925,-40.86301287818142],[-73.8889388893889,-40.85288141456212],[-73.8781387813878,-40.84106137367294],[-73.87093870938709,-40.82079844643435],[-73.87093870938709,-40.79546978738611],[-73.86373863738638,-40.765075396528225],[-73.84573845738457,-40.73974673747998],[-73.82773827738276,-40.71610665570162],[-73.80973809738097,-40.70597519208233],[-73.82053820538205,-40.69077799665338],[-73.83853838538386,-40.67726937849432],[-73.8421384213842,-40.66713791487503],[-73.83133831338313,-40.65700645125573],[-73.82053820538205,-40.641809255826786],[-73.80613806138061,-40.63167779220749],[-73.75933759337593,-40.60803771042913],[-73.74853748537485,-40.574266165031474],[-73.72693726937268,-40.54387177417359],[-73.73773737737378,-40.523608846935],[-73.74853748537485,-40.50334591969641],[-73.74853748537485,-40.48814872426746],[-73.7521375213752,-40.476328683378284],[-73.7629376293763,-40.45606575613969],[-73.77013770137701,-40.44762286979027],[-73.77733777337772,-40.44424571525051],[-73.78093780937809,-40.43749140617098],[-73.78453784537845,-40.42398278801192],[-73.78093780937809,-40.415539901662505],[-73.76653766537665,-40.40203128350344],[-73.7629376293763,-40.390211242614264],[-73.7629376293763,-40.347996810867194],[-73.75933759337593,-40.3277338836286],[-73.74853748537485,-40.27369941099236],[-73.74853748537485,-40.26019079283329],[-73.74493744937449,-40.250059329214],[-73.73773737737378,-40.23148497924529],[-73.73413734137341,-40.21966493835611],[-73.72333723337233,-40.21459920654646],[-73.71973719737197,-40.209533474736816],[-73.72333723337233,-40.204467742927164],[-73.72333723337233,-40.19771343384764],[-73.72693726937268,-40.19433627930787],[-73.73053730537305,-40.19602485657775],[-73.73053730537305,-40.189270547498225],[-73.73413734137341,-40.18082766114881],[-73.73413734137341,-40.17407335206928],[-73.71973719737197,-40.165630465719865],[-73.7161371613716,-40.16056473391021],[-73.69813698136981,-40.13185892032221],[-73.69813698136981,-40.126793188512565],[-73.68733687336874,-40.126793188512565],[-73.6729367293673,-40.125104611242676],[-73.66573665736657,-40.12003887943303],[-73.65853658536585,-40.10990741581374],[-73.66573665736657,-40.06769298406667],[-73.66933669336693,-40.045741479558195],[-73.6729367293673,-40.03054428412925],[-73.70173701737016,-40.00014989327136],[-73.71253712537126,-39.978198388762884],[-73.71253712537126,-39.96806692514359],[-73.70173701737016,-39.964689770603826],[-73.68373683736837,-39.94273826609535],[-73.6729367293673,-39.93429537974593],[-73.66213662136622,-39.93260680247605],[-73.63333633336333,-39.93429537974593],[-73.61173611736118,-39.92585249339652],[-73.58293582935829,-39.90390098888805],[-73.53613536135362,-39.897146679808515],[-73.51813518135181,-39.88701521618922],[-73.50013500135,-39.873506598030154],[-73.48213482134821,-39.858309402601215],[-73.46773467734677,-39.839735052632506],[-73.45693456934569,-39.83298074355297],[-73.44253442534425,-39.83129216628309],[-73.43533435334353,-39.83298074355297],[-73.42453424534244,-39.838046475362624],[-73.41733417334173,-39.84311220717227],[-73.41373413734136,-39.84817793898192],[-73.41013410134101,-39.87181802076027],[-73.40293402934029,-39.89545810253863],[-73.39213392133921,-39.90896672069769],[-73.37773377733777,-39.90052383434828],[-73.3741337413374,-39.88026090710969],[-73.3741337413374,-39.858309402601215],[-73.3849338493385,-39.836357898092736],[-73.39573395733957,-39.821160702663796],[-73.40293402934029,-39.80427492996497],[-73.39573395733957,-39.78232342545649],[-73.3849338493385,-39.76037192094802],[-73.37773377733777,-39.74348614824919],[-73.3849338493385,-39.72153464374072],[-73.39933399333992,-39.70802602558165],[-73.40653406534065,-39.694517407422595],[-73.39573395733957,-39.67763163472377],[-73.35973359733597,-39.6641230165647],[-73.34533345333453,-39.65568013021529],[-73.35973359733597,-39.647237243865874],[-73.31653316533165,-39.60671138938869],[-73.29853298532984,-39.58307130761033],[-73.29133291332913,-39.56111980310186],[-73.28773287732876,-39.550988339482565],[-73.28413284132841,-39.53916829859338],[-73.27333273332734,-39.527348257704205],[-73.26613266132661,-39.52397110316444],[-73.26253262532624,-39.51890537135479],[-73.2589325893259,-39.507085330465614],[-73.25533255332553,-39.49526528957643],[-73.24093240932409,-39.490199557766786],[-73.25173251732517,-39.46824805325831],[-73.25173251732517,-39.4496737032896],[-73.24093240932409,-39.43447650786066],[-73.2229322293223,-39.41759073516183],[-73.22653226532265,-39.4108364260823],[-73.24453244532445,-39.39057349884371],[-73.24813248132482,-39.38044203522441],[-73.24453244532445,-39.36862199433523],[-73.23373233732337,-39.363556262525584],[-73.22653226532265,-39.35680195344605],[-73.21933219332193,-39.341604758017105],[-73.2229322293223,-39.31796467623875],[-73.23733237332372,-39.27068451268203],[-73.23373233732337,-39.24873300817356],[-73.2121321213212,-39.21327288550602],[-73.20853208532085,-39.19300995826743],[-73.23373233732337,-39.18118991737825],[-73.23373233732337,-39.20651857642649],[-73.23733237332372,-39.221715771855436],[-73.24453244532445,-39.221715771855436],[-73.25173251732517,-39.177812762838485],[-73.26613266132661,-39.14404121744083],[-73.28413284132841,-39.074809549375644],[-73.35973359733597,-38.914394708736786],[-73.43173431734317,-38.68643677730262],[-73.44253442534425,-38.68643677730262],[-73.43893438934388,-38.73371694085934],[-73.4281342813428,-38.7759313726064],[-73.43893438934388,-38.77255421806664],[-73.44613446134461,-38.76073417717746],[-73.45333453334533,-38.73540551812922],[-73.45693456934569,-38.71514259089063],[-73.45693456934569,-38.69319108638215],[-73.46053460534606,-38.67292815914356],[-73.48213482134821,-38.63746803647602],[-73.50373503735037,-38.5716135229506],[-73.51453514535145,-38.539530554822825],[-73.52173521735217,-38.520956204854116],[-73.52533525335252,-38.47536461856728],[-73.54333543335433,-38.42133014593104],[-73.54333543335433,-38.399378641422565],[-73.52893528935289,-38.352098477865844],[-73.52533525335252,-38.34196701424655],[-73.53253532535325,-38.331835550627254],[-73.52533525335252,-38.3267698188176],[-73.51453514535145,-38.32170408700796],[-73.50733507335073,-38.31663835519831],[-73.50733507335073,-38.30650689157901],[-73.52173521735217,-38.26766961437171],[-73.51813518135181,-38.25753815075242],[-73.5109351093511,-38.24571810986323],[-73.50373503735037,-38.24065237805359],[-73.49653496534965,-38.23389806897406],[-73.48573485734858,-38.227143759894524],[-73.48213482134821,-38.21870087354511],[-73.4641346413464,-38.09205757830391],[-73.4641346413464,-38.05153172382673],[-73.47133471334713,-38.01269444661942],[-73.50373503735037,-37.93333131493494],[-73.55773557735577,-37.84552529690104],[-73.62253622536225,-37.75940785613702],[-73.63333633336333,-37.7509649697876],[-73.65133651336512,-37.74083350616831],[-73.65853658536585,-37.734079197088775],[-73.66573665736657,-37.72563631073937],[-73.66933669336693,-37.718882001659836],[-73.66573665736657,-37.66315895175371],[-73.66933669336693,-37.653027488134406],[-73.68373683736837,-37.631075983625934],[-73.68733687336874,-37.62094452000664],[-73.68373683736837,-37.59899301549816],[-73.67653676536764,-37.57873008825957],[-73.66573665736657,-37.56353289283063],[-73.65493654936549,-37.550024274671564],[-73.61893618936189,-37.526384192893204],[-73.60453604536045,-37.512875574734146],[-73.59733597335973,-37.492612647495555],[-73.60093600936008,-37.44702106120872],[-73.60453604536045,-37.42844671124001],[-73.61173611736118,-37.41324951581107],[-73.6729367293673,-37.362592197714584],[-73.68013680136801,-37.34739500228564],[-73.67653676536764,-37.325443497777165],[-73.65493654936549,-37.28998337510963],[-73.64773647736477,-37.268031870601156],[-73.64413644136441,-37.202177357075726],[-73.6369363693637,-37.18360300710702],[-73.61893618936189,-37.16671723440819],[-73.60813608136081,-37.15489719351901],[-73.59373593735937,-37.15320861624913],[-73.57933579335793,-37.158274348058775],[-73.56493564935649,-37.17347154348772],[-73.55773557735577,-37.18360300710702],[-73.5469354693547,-37.18698016164679],[-73.54333543335433,-37.18866873891667],[-73.50373503735037,-37.20724308888538],[-73.47853478534785,-37.205554511615496],[-73.46773467734677,-37.20724308888538],[-73.4641346413464,-37.21568597523479],[-73.46773467734677,-37.22581743885409],[-73.46773467734677,-37.2342603252035],[-73.46053460534606,-37.242703211552914],[-73.44973449734496,-37.24101463428303],[-73.4281342813428,-37.22750601612397],[-73.40293402934029,-37.23594890247338],[-73.38853388533884,-37.2342603252035],[-73.36333363333632,-37.22750601612397],[-73.32013320133201,-37.224128861584205],[-73.28413284132841,-37.21399739796491],[-73.23733237332372,-37.19204589345643],[-73.20853208532085,-37.159962925328664],[-73.17253172531726,-37.075534061834524],[-73.17253172531726,-37.02656532100793],[-73.1761317613176,-37.0096795483091],[-73.17973179731797,-37.00123666195969],[-73.17973179731797,-36.99110519834039],[-73.1761317613176,-36.98435088926086],[-73.16533165331653,-36.96915369383191],[-73.15813158131581,-36.9607108074825],[-73.15813158131581,-36.950579343863204],[-73.14373143731437,-36.8340675122413],[-73.15093150931509,-36.80873885319306],[-73.16533165331653,-36.793541657764116],[-73.18693186931868,-36.78341019414482],[-73.20853208532085,-36.77496730779541],[-73.19773197731978,-36.76314726690622],[-73.18693186931868,-36.75132722601705],[-73.17253172531726,-36.74119576239775],[-73.15813158131581,-36.73444145331822],[-73.15093150931509,-36.7462614942074],[-73.1329313293133,-36.7361300305881],[-73.12573125731257,-36.71755568061939],[-73.15453154531545,-36.707424217000096],[-73.12933129331293,-36.67702982614221],[-73.12573125731257,-36.66520978525303],[-73.1329313293133,-36.65001258982409],[-73.12933129331293,-36.63312681712526],[-73.12213122131222,-36.61455246715655],[-73.11853118531185,-36.59766669445772],[-73.09333093330933,-36.61792962169631],[-73.08973089730897,-36.687161289761505],[-73.07173071730718,-36.71417852607963],[-73.05373053730537,-36.71924425788928],[-73.03573035730356,-36.72093283515916],[-73.01773017730177,-36.71924425788928],[-73.00333003330033,-36.71417852607963],[-72.98892988929889,-36.70235848519045],[-72.98172981729817,-36.69053844430127],[-72.98172981729817,-36.65507832163373],[-72.97812978129781,-36.648324012554205],[-72.97452974529745,-36.63988112620479],[-72.96732967329673,-36.63312681712526],[-72.96372963729637,-36.62806108531561],[-72.960129601296,-36.62130677623608],[-72.960129601296,-36.61455246715655],[-72.96372963729637,-36.60779815807702],[-72.9709297092971,-36.59260096264808],[-72.98532985329852,-36.57740376721913],[-72.98892988929889,-36.57233803540948],[-72.98892988929889,-36.52843502639253],[-72.98532985329852,-36.521680717313004],[-72.98172981729817,-36.51661498550335],[-72.9709297092971,-36.51492640823347],[-72.96372963729637,-36.518303562773234],[-72.960129601296,-36.525057871852766],[-72.960129601296,-36.5318121809323],[-72.95652956529565,-36.53518933547206],[-72.94212942129421,-36.5318121809323],[-72.93132931329313,-36.523369294582885],[-72.9241292412924,-36.50986067642382],[-72.90612906129061,-36.45582620378757],[-72.89532895328954,-36.437251853818864],[-72.8809288092881,-36.422054658389925],[-72.87732877328773,-36.41361177204051],[-72.87372873728737,-36.378151649372974],[-72.86652866528665,-36.36633160848379],[-72.85212852128521,-36.34438010397532],[-72.84132841328413,-36.32749433127649],[-72.8341283412834,-36.3072314040379],[-72.82692826928269,-36.28696847679931],[-72.82332823328233,-36.26501697229083],[-72.83772837728377,-36.19578530422564],[-72.83772837728377,-36.17889953152682],[-72.83052830528305,-36.168768067907514],[-72.81252812528125,-36.155259449748456],[-72.80892808928088,-36.14175083158939],[-72.81252812528125,-36.131619367970096],[-72.82332823328233,-36.111356440731505],[-72.82332823328233,-36.10122497711221],[-72.81972819728198,-36.08096204987362],[-72.7981279812798,-36.05056765901573],[-72.79092790927909,-36.028616154507255],[-72.79092790927909,-36.01848469088796],[-72.79092790927909,-36.008353227268664],[-72.79452794527946,-35.99822176364936],[-72.80532805328053,-35.988090300030066],[-72.80172801728017,-35.97795883641077],[-72.79452794527946,-35.967827372791476],[-72.78012780127801,-35.95263017736253],[-72.68652686526865,-35.88339850929734],[-72.6721267212672,-35.866512736598516],[-72.66492664926649,-35.84624980935992],[-72.61092610926109,-35.819232573041795],[-72.59652596525964,-35.81078968669239],[-72.5821258212582,-35.7702638322152],[-72.58572585725857,-35.72973797773802],[-72.60012600126001,-35.69090070053071],[-72.65052650526505,-35.60816041430646],[-72.65412654126541,-35.58620890979799],[-72.64692646926468,-35.56594598255939],[-72.63252632526324,-35.55243736440033],[-72.53892538925389,-35.49840289176409],[-72.52812528125281,-35.48996000541467],[-72.50652506525064,-35.4477455736676],[-72.48852488524885,-35.4190397600796],[-72.49212492124921,-35.40384256465065],[-72.49212492124921,-35.390333946491594],[-72.48852488524885,-35.37682532833253],[-72.48132481324812,-35.36331671017347],[-72.4669246692467,-35.35149666928429],[-72.44532445324452,-35.34474236020476],[-72.43092430924308,-35.33461089658547],[-72.42732427324273,-35.31265939207699],[-72.42372423724237,-35.289019310298634],[-72.420124201242,-35.26875638306004],[-72.41292412924129,-35.25018203309133],[-72.39852398523985,-35.2332962603925],[-72.36252362523625,-35.20796760134426],[-72.28692286922869,-35.16913032413696],[-72.25452254522544,-35.145490242358605],[-72.22932229322292,-35.11678442877059],[-72.2149221492215,-35.081324306103056],[-72.20412204122042,-35.040798451625875],[-72.19332193321932,-34.90908942457502],[-72.18612186121861,-34.88544934279667],[-72.17532175321753,-34.86687499282796],[-72.15732157321573,-34.84998922012913],[-72.14652146521465,-34.829726292890534],[-72.1321213212132,-34.7841347066037],[-72.12492124921249,-34.77906897479406],[-72.10332103321034,-34.76049462482535],[-72.0961209612096,-34.75036316120605],[-72.09252092520924,-34.733477388507225],[-72.06372063720637,-34.6777543386011],[-72.05652056520564,-34.65917998863238],[-72.0529205292053,-34.5696853933286],[-72.0421204212042,-34.507208034342945],[-72.0421204212042,-34.485256529834466],[-72.0529205292053,-34.44979640716693],[-72.05652056520564,-34.42784490265846],[-72.04932049320493,-34.404204820880096],[-72.03132031320312,-34.39069620272104],[-72.00972009720097,-34.380564739101736],[-71.99531995319953,-34.37043327548244],[-71.98811988119881,-34.3552360800535],[-71.98811988119881,-34.334973152814904],[-71.98811988119881,-34.253921443860534],[-71.99531995319953,-34.21170701211347],[-72.0061200612006,-34.19819839395441],[-72.02052020520205,-34.18131262125558],[-72.02772027720277,-34.16273827128687],[-72.01692016920168,-34.1407867667784],[-71.97371973719737,-34.091818025951795],[-71.95931959319593,-34.07493225325297],[-71.94491944919449,-34.03947213058544],[-71.93051930519304,-34.02258635788661],[-71.90531905319052,-34.009077739727545],[-71.90531905319052,-33.99725769883837],[-71.90531905319052,-33.9837490806793],[-71.90531905319052,-33.97361761706001],[-71.90171901719017,-33.965174730710594],[-71.87651876518765,-33.944911803472],[-71.85851858518585,-33.91114025807435],[-71.83691836918369,-33.826711394580215],[-71.81531815318152,-33.787874117372915],[-71.80811808118081,-33.77774265375361],[-71.8009180091801,-33.77267692194397],[-71.79371793717937,-33.77098834467409],[-71.78651786517865,-33.764234035594555],[-71.77571775717757,-33.76085688105479],[-71.7541175411754,-33.76085688105479],[-71.74331743317433,-33.75747972651502],[-71.72531725317253,-33.742282531086076],[-71.70731707317073,-33.73383964473667],[-71.68931689316892,-33.720331026577604],[-71.67131671316713,-33.69837952206913],[-71.65331653316532,-33.65616509032206],[-71.64611646116461,-33.63421358581358],[-71.64611646116461,-33.61226208130511],[-71.64611646116461,-33.578490535907456],[-71.64611646116461,-33.56835907228816],[-71.64251642516425,-33.56160476320863],[-71.6281162811628,-33.54640756777969],[-71.62451624516245,-33.54134183597004],[-71.64251642516425,-33.500815981492856],[-71.70731707317073,-33.434961467967426],[-71.70731707317073,-33.389369881680594],[-71.70371703717036,-33.3792384180613],[-71.69651696516965,-33.370795531711885],[-71.68931689316892,-33.36572979990224],[-71.6749167491675,-33.36404122263235],[-71.67131671316713,-33.35897549082271],[-71.67131671316713,-33.347155449933524],[-71.67131671316713,-33.32520394542505],[-71.6749167491675,-33.30156386364669],[-71.68571685716857,-33.28467809094787],[-71.69651696516965,-33.26779231824904],[-71.70731707317073,-33.245840813740564],[-71.72171721717217,-33.168166259325965],[-71.72531725317253,-33.1546576411669],[-71.75051750517505,-33.11413178668972],[-71.76131761317613,-33.102311745800534],[-71.74331743317433,-33.087114550371595],[-71.68931689316892,-33.08542597310171],[-71.67851678516784,-33.07191735494265],[-71.67851678516784,-33.06009731405347],[-71.67131671316713,-33.04827727316429],[-71.66771667716677,-33.03645723227511],[-71.66051660516605,-33.0280143459257],[-71.64611646116461,-33.019571459576284],[-71.63891638916388,-33.0178828823064],[-71.63171631716317,-33.019571459576284],[-71.5921159211592,-33.019571459576284],[-71.58131581315813,-33.01619430503652],[-71.57411574115741,-33.00943999595699],[-71.56691566915669,-33.002685686877456],[-71.56331563315632,-32.98411133690875],[-71.55251552515524,-32.963848409670156],[-71.55251552515524,-32.95371694605086],[-71.55611556115561,-32.943585482431565],[-71.55611556115561,-32.93176544154238],[-71.5489154891549,-32.921633977923086],[-71.52731527315272,-32.90812535976403],[-71.52011520115201,-32.896305318874845],[-71.51651516515165,-32.87266523709649],[-71.52731527315272,-32.852402309857894],[-71.5381153811538,-32.83045080534942],[-71.54531545315453,-32.80512214630118],[-71.5489154891549,-32.794990682681885],[-71.5489154891549,-32.78485921906259],[-71.54171541715417,-32.77303917817341],[-71.53091530915309,-32.76966202363364],[-71.50931509315093,-32.76966202363364],[-71.5021150211502,-32.76628486909388],[-71.49491494914949,-32.74602194185529],[-71.5021150211502,-32.72575901461669],[-71.50571505715057,-32.71056181918775],[-71.4661146611466,-32.69874177829857],[-71.45531455314553,-32.68523316013951],[-71.44811448114481,-32.66497023290092],[-71.44451444514445,-32.64301872839244],[-71.44811448114481,-32.59742714210561],[-71.45531455314553,-32.57378706032725],[-71.47691476914768,-32.53494978311995],[-71.46971469714697,-32.51637543315124],[-71.45531455314553,-32.49948966045241],[-71.44091440914409,-32.48429246502347],[-71.44091440914409,-32.47247242413429],[-71.430114301143,-32.426880837847456],[-71.42651426514264,-32.40999506514863],[-71.41931419314193,-32.39986360152933],[-71.4121141211412,-32.39479786971969],[-71.40851408514085,-32.386354983370275],[-71.4121141211412,-32.36946921067145],[-71.44451444514445,-32.342451974353324],[-71.45171451714516,-32.339074819813554],[-71.46251462514624,-32.33569766527379],[-71.4661146611466,-32.33232051073403],[-71.4661146611466,-32.33063193346414],[-71.4661146611466,-32.3154347380352],[-71.47691476914768,-32.27828603809778],[-71.48051480514805,-32.2664659972086],[-71.49491494914949,-32.25126880177966],[-71.51291512915128,-32.239448760890475],[-71.53091530915309,-32.22594014273142],[-71.54171541715417,-32.20567721549283],[-71.54531545315453,-32.19385717460364],[-71.54171541715417,-32.16008562920599],[-71.5381153811538,-32.14826558831681],[-71.52731527315272,-32.12631408380834],[-71.52731527315272,-32.08409965206127],[-71.50931509315093,-31.977719284058658],[-71.51291512915128,-31.96083351135983],[-71.52011520115201,-31.950702047740535],[-71.52731527315272,-31.94057058412124],[-71.52731527315272,-31.930439120501944],[-71.52731527315272,-31.91693050234288],[-71.52371523715237,-31.906799038723584],[-71.51291512915128,-31.90004472964406],[-71.50571505715057,-31.894978997834407],[-71.5021150211502,-31.889913266024756],[-71.50571505715057,-31.869650338786165],[-71.5381153811538,-31.837567370658398],[-71.5381153811538,-31.824058752499333],[-71.52011520115201,-31.805484402530624],[-71.51291512915128,-31.790287207101677],[-71.51651516515165,-31.775090011672738],[-71.56331563315632,-31.607920861954348],[-71.57051570515705,-31.59103508925552],[-71.57051570515705,-31.518426266650565],[-71.5921159211592,-31.444128866775728],[-71.61011610116101,-31.420488784997367],[-71.64611646116461,-31.2026623171825],[-71.66771667716677,-31.170579349054726],[-71.66771667716677,-31.150316421816136],[-71.65331653316532,-31.069264712861766],[-71.64971649716497,-31.021984549305053],[-71.65331653316532,-30.97639296301822],[-71.6641166411664,-30.937555685810914],[-71.67131671316713,-30.930801376731388],[-71.6749167491675,-30.925735644921737],[-71.67851678516784,-30.918981335842204],[-71.68211682116821,-30.89534125406385],[-71.68571685716857,-30.87507832682526],[-71.68931689316892,-30.842995358697486],[-71.70731707317073,-30.778829422441945],[-71.70011700117001,-30.70959775437675],[-71.70371703717036,-30.697777713487575],[-71.71451714517144,-30.615037427263324],[-71.71091710917109,-30.593085922754845],[-71.69651696516965,-30.54411718192825],[-71.69651696516965,-30.528919986499304],[-71.70371703717036,-30.508657059260713],[-71.70011700117001,-30.485016977482353],[-71.68571685716857,-30.449556854814816],[-71.67851678516784,-30.343176486812204],[-71.63891638916388,-30.25199331423854],[-71.63891638916388,-30.241861850619244],[-71.63531635316353,-30.23848469607948],[-71.6281162811628,-30.240173273349363],[-71.62091620916209,-30.246927582428896],[-71.61011610116101,-30.2756333960169],[-71.58851588515884,-30.285764859636195],[-71.56331563315632,-30.287453436906077],[-71.54171541715417,-30.285764859636195],[-71.51651516515165,-30.279010550556663],[-71.50571505715057,-30.27225624147713],[-71.5021150211502,-30.262124777857835],[-71.5021150211502,-30.25199331423854],[-71.50571505715057,-30.243550427889126],[-71.50571505715057,-30.240173273349363],[-71.49131491314913,-30.23848469607948],[-71.48771487714876,-30.226664655190298],[-71.44451444514445,-30.162498718934756],[-71.43371433714337,-30.17431875982394],[-71.4229142291423,-30.184450223443235],[-71.41571415714157,-30.187827377982998],[-71.39771397713977,-30.17600733709382],[-71.38691386913868,-30.162498718934756],[-71.38331383313833,-30.147301523505817],[-71.3761137611376,-30.115218555378043],[-71.3761137611376,-30.078069855440624],[-71.38331383313833,-30.04598688731285],[-71.39411394113941,-30.017281073724845],[-71.4121141211412,-29.991952414676604],[-71.40851408514085,-29.98350952832719],[-71.40131401314012,-29.978443796517546],[-71.39411394113941,-29.978443796517546],[-71.38331383313833,-29.98350952832719],[-71.38331383313833,-29.976755219247664],[-71.37971379713797,-29.97000091016813],[-71.3761137611376,-29.96493517835848],[-71.35811358113581,-29.961558023818718],[-71.35811358113581,-29.956492292009067],[-71.36171361713616,-29.94973798292954],[-71.35811358113581,-29.94298367385001],[-71.35451354513545,-29.937917942040357],[-71.35451354513545,-29.934540787500595],[-71.35091350913508,-29.931163632960832],[-71.340113401134,-29.929475055690943],[-71.33651336513364,-29.931163632960832],[-71.32571325713256,-29.941295096580127],[-71.31851318513185,-29.94298367385001],[-71.29691296912969,-29.934540787500595],[-71.2861128611286,-29.910900705722234],[-71.28251282512825,-29.88050631486435],[-71.28251282512825,-29.850111924006455],[-71.2861128611286,-29.836603305847397],[-71.29331293312933,-29.82478326495822],[-71.31131311313112,-29.809586069529274],[-71.31851318513185,-29.79945460590998],[-71.32571325713256,-29.787634565020802],[-71.33651336513364,-29.728534360574905],[-71.33651336513364,-29.711648587876077],[-71.32571325713256,-29.703205701526663],[-71.31851318513185,-29.69645139244713],[-71.31851318513185,-29.68125419701819],[-71.31851318513185,-29.666057001589245],[-71.32211322113221,-29.65592553796995],[-71.29691296912969,-29.622153992572294],[-71.28971289712896,-29.603579642603584],[-71.30051300513004,-29.59513675625417],[-71.31131311313112,-29.586693869904757],[-71.32211322113221,-29.568119519936047],[-71.33291332913329,-29.544479438157687],[-71.33651336513364,-29.524216510919096],[-71.33291332913329,-29.503953583680506],[-71.31851318513185,-29.47187061555273],[-71.31491314913148,-29.44485337923461],[-71.31131311313112,-29.43303333834543],[-71.30771307713077,-29.421213297456255],[-71.30771307713077,-29.40939325656707],[-71.31491314913148,-29.400950370217664],[-71.32931329313293,-29.390818906598362],[-71.33651336513364,-29.380687442979067],[-71.340113401134,-29.357047361200713],[-71.34371343713437,-29.336784433962116],[-71.34731347313473,-29.316521506723525],[-71.36171361713616,-29.296258579484935],[-71.3761137611376,-29.28274996132587],[-71.46971469714697,-29.228715488689623],[-71.48771487714876,-29.211829715990795],[-71.49491494914949,-29.193255366022086],[-71.49491494914949,-29.14259804792561],[-71.49491494914949,-29.13922089338584],[-71.49491494914949,-29.134155161576196],[-71.49491494914949,-29.127400852496663],[-71.49131491314913,-29.12233512068702],[-71.48411484114841,-29.112203657067717],[-71.48051480514805,-29.107137925258073],[-71.48051480514805,-29.093629307099008],[-71.48771487714876,-29.086874998019482],[-71.49851498514985,-29.08012068893995],[-71.5021150211502,-29.069989225320654],[-71.49851498514985,-29.06154633897124],[-71.49131491314913,-29.046349143542294],[-71.48771487714876,-29.036217679923],[-71.5021150211502,-28.990626093636166],[-71.49851498514985,-28.987248939096403],[-71.49851498514985,-28.9771174754771],[-71.5021150211502,-28.970363166397576],[-71.51651516515165,-28.9771174754771],[-71.52371523715237,-28.939968775539683],[-71.51291512915128,-28.889311457443206],[-71.48771487714876,-28.845408448426255],[-71.45531455314553,-28.826834098457546],[-71.44091440914409,-28.823456943917776],[-71.40131401314012,-28.80657117121895],[-71.39051390513904,-28.799816862139423],[-71.37971379713797,-28.781242512170714],[-71.36891368913689,-28.740716657693525],[-71.35811358113581,-28.723830884994697],[-71.31851318513185,-28.69343649413681],[-71.30051300513004,-28.674862144168102],[-71.2861128611286,-28.619139094261975],[-71.28971289712896,-28.60731905337279],[-71.29331293312933,-28.598876167023377],[-71.3041130411304,-28.59212185794385],[-71.31131311313112,-28.583678971594438],[-71.31491314913148,-28.573547507975135],[-71.30771307713077,-28.56172746708596],[-71.28971289712896,-28.551596003466663],[-71.27171271712717,-28.539775962577487],[-71.26091260912608,-28.521201612608778],[-71.26811268112681,-28.48574148994124],[-71.26811268112681,-28.477298603591827],[-71.26091260912608,-28.472232871782175],[-71.250112501125,-28.470544294512294],[-71.23931239312392,-28.470544294512294],[-71.23211232112321,-28.470544294512294],[-71.21051210512104,-28.446904212733934],[-71.18891188911888,-28.40468978098687],[-71.17451174511744,-28.36078677196992],[-71.17091170911709,-28.327015226572264],[-71.1781117811178,-28.308440876603555],[-71.18171181711817,-28.301686567524023],[-71.18891188911888,-28.29830941298426],[-71.19251192511925,-28.29493225844449],[-71.18531185311852,-28.284800794825195],[-71.17091170911709,-28.267915022126367],[-71.17091170911709,-28.249340672157658],[-71.160111601116,-28.21219197222024],[-71.15651156511565,-28.142960304155054],[-71.160111601116,-28.121008799646575],[-71.17451174511744,-28.09230298605857],[-71.16731167311673,-28.083860099709156],[-71.160111601116,-28.07372863608986],[-71.15291152911529,-28.065285749740447],[-71.14571145711457,-28.04839997704162],[-71.13851138511384,-27.945396763578778],[-71.13131131311313,-27.9234452590703],[-71.1241112411124,-27.901493754561827],[-71.12051120511205,-27.894739445482294],[-71.10971109711097,-27.889673713672643],[-71.10251102511025,-27.884607981863],[-71.09891098910988,-27.874476518243704],[-71.10251102511025,-27.852525013735224],[-71.10611106111061,-27.839016395576166],[-71.09891098910988,-27.832262086496634],[-71.0881108811088,-27.830573509226753],[-71.08451084510845,-27.82213062287734],[-71.08451084510845,-27.813687736527925],[-71.08451084510845,-27.801867695638748],[-71.07731077310773,-27.77991619113027],[-71.05931059310593,-27.744456068462732],[-71.04851048510484,-27.72250456395426],[-71.04491044910449,-27.70224163671567],[-71.04131041310413,-27.67860155493731],[-71.03771037710376,-27.666781514048132],[-71.03051030510305,-27.65665005042883],[-71.02331023310232,-27.65496147315895],[-71.01971019710197,-27.665092936778244],[-71.01251012510124,-27.671847245857776],[-70.96930969309693,-27.6600272049686],[-70.95130951309513,-27.66171578223848],[-70.94770947709476,-27.649895741349305],[-70.94050940509405,-27.63807570046012],[-70.92970929709297,-27.629632814110707],[-70.92250922509224,-27.626255659570944],[-70.91170911709116,-27.6211899277613],[-70.91170911709116,-27.609369886872116],[-70.91890918909189,-27.585729805093763],[-70.91890918909189,-27.543515373346693],[-70.89370893708937,-27.502989518869505],[-70.89010890108901,-27.49285805525021],[-70.89730897308972,-27.469217973471856],[-70.90450904509045,-27.442200737153733],[-70.91890918909189,-27.41518350083561],[-70.94410944109441,-27.37128049181866],[-70.94410944109441,-27.34932898731018],[-70.93690936909368,-27.325688905531827],[-70.93330933309333,-27.298671669213704],[-70.93690936909368,-27.281785896514876],[-70.94770947709476,-27.263211546546167],[-70.95490954909549,-27.24294861930757],[-70.94410944109441,-27.214242805719564],[-70.94770947709476,-27.20411134210027],[-70.95850958509585,-27.188914146671323],[-70.9621096210962,-27.182159837591797],[-70.9621096210962,-27.168651219432732],[-70.95850958509585,-27.1618969103532],[-70.94770947709476,-27.133191096765195],[-70.94770947709476,-27.1230596331459],[-70.94050940509405,-27.112928169526604],[-70.92970929709297,-27.106173860447072],[-70.91530915309153,-27.106173860447072],[-70.91170911709116,-27.116305324066367],[-70.90810908109081,-27.129813942225432],[-70.90090900909009,-27.133191096765195],[-70.89010890108901,-27.129813942225432],[-70.8829088290883,-27.12643678768567],[-70.8721087210872,-27.117993901336256],[-70.86850868508685,-27.10955101498684],[-70.8721087210872,-27.10279670590731],[-70.8721087210872,-27.092665242288014],[-70.86490864908649,-27.0842223559386],[-70.85770857708577,-27.077468046859067],[-70.85410854108541,-27.070713737779535],[-70.85050850508505,-27.06227085143012],[-70.85050850508505,-27.048762233271063],[-70.84690846908468,-27.045385078731293],[-70.83970839708397,-27.048762233271063],[-70.83250832508325,-27.052139387810826],[-70.81810818108181,-27.048762233271063],[-70.81810818108181,-27.04031934692165],[-70.82170821708216,-27.030187883302354],[-70.82170821708216,-27.02343357422282],[-70.81450814508145,-27.014990687873407],[-70.79290792907929,-27.00317064698423],[-70.78930789307893,-26.996416337904698],[-70.78930789307893,-26.97784198793599],[-70.80730807308073,-26.930561824379275],[-70.80730807308073,-26.92043036075998],[-70.80730807308073,-26.91536462895033],[-70.82170821708216,-26.886658815362324],[-70.82530825308253,-26.87315019720326],[-70.82170821708216,-26.866395888123733],[-70.78570785707856,-26.788721333709127],[-70.77850778507785,-26.77858987008983],[-70.77130771307712,-26.7718355610103],[-70.74970749707497,-26.760015520121122],[-70.73170731707317,-26.749884056501827],[-70.74970749707497,-26.72962112926323],[-70.75330753307533,-26.722866820183704],[-70.7569075690757,-26.71442393383429],[-70.75330753307533,-26.702603892945106],[-70.7461074610746,-26.69247242932581],[-70.73170731707317,-26.682340965706516],[-70.72810728107281,-26.67220950208722],[-70.72450724507245,-26.660389461198044],[-70.71370713707137,-26.60804356583168],[-70.69570695706956,-26.56920628862438],[-70.69210692106921,-26.543877629576137],[-70.70290702907029,-26.511794661448363],[-70.70650706507065,-26.493220311479654],[-70.69570695706956,-26.472957384241063],[-70.68850688506885,-26.46451449789165],[-70.68490684906848,-26.456071611542235],[-70.68490684906848,-26.44762872519282],[-70.68490684906848,-26.434120107033763],[-70.68850688506885,-26.42398864341446],[-70.69930699306992,-26.400348561636108],[-70.69930699306992,-26.393594252556575],[-70.69210692106921,-26.38346278893728],[-70.66690666906669,-26.38515136620716],[-70.65610656106561,-26.356445552619157],[-70.63090630906309,-26.34124835719021],[-70.64170641706417,-26.31591969814197],[-70.68130681306813,-26.30409965725279],[-70.6741067410674,-26.27708242093467],[-70.65610656106561,-26.265262380045492],[-70.64890648906488,-26.236556566457487],[-70.65610656106561,-26.21967079375866],[-70.66330663306633,-26.20278502105983],[-70.66330663306633,-26.17576778474171],[-70.67050670506704,-26.160570589312762],[-70.66690666906669,-26.150439125693467],[-70.66330663306633,-26.13355335299464],[-70.65970659706596,-26.099781807596983],[-70.65970659706596,-26.07276457127886],[-70.65970659706596,-26.064321684929446],[-70.65250652506525,-26.055878798580032],[-70.64170641706417,-26.049124489500507],[-70.6381063810638,-26.044058757690856],[-70.63090630906309,-26.0102872122932],[-70.63450634506344,-25.974827089625663],[-70.64890648906488,-25.944432698767777],[-70.66690666906669,-25.920792616989417],[-70.69570695706956,-25.88533249432188],[-70.70290702907029,-25.86675814435317],[-70.70650706507065,-25.841429485304936],[-70.710107101071,-25.834675176225403],[-70.73170731707317,-25.829609444415752],[-70.73890738907389,-25.829609444415752],[-70.73170731707317,-25.80428078536751],[-70.72450724507245,-25.778952126319275],[-70.69930699306992,-25.773886394509624],[-70.69210692106921,-25.74180342638185],[-70.69210692106921,-25.714786190063727],[-70.69210692106921,-25.691146108285373],[-70.68490684906848,-25.667506026507013],[-70.6741067410674,-25.653997408347955],[-70.65250652506525,-25.648931676538304],[-70.63450634506344,-25.62529159475995],[-70.6381063810638,-25.581388585743],[-70.64170641706417,-25.571257122123704],[-70.64890648906488,-25.550994194885106],[-70.65250652506525,-25.54086273126581],[-70.64890648906488,-25.529042690376635],[-70.64530645306452,-25.522288381297102],[-70.62370623706236,-25.503714031328393],[-70.620106201062,-25.503714031328393],[-70.61290612906129,-25.503714031328393],[-70.60210602106021,-25.50202545405851],[-70.5841058410584,-25.493582567709097],[-70.55170551705517,-25.47163106320062],[-70.53730537305373,-25.468253908660856],[-70.53010530105301,-25.45643386777168],[-70.52290522905228,-25.404087972405314],[-70.5121051210512,-25.385513622436605],[-70.47610476104761,-25.385513622436605],[-70.46530465304653,-25.382136467896835],[-70.4581045810458,-25.37369358154743],[-70.45450454504545,-25.363562117928126],[-70.45090450904509,-25.355119231578712],[-70.44370443704436,-25.344987767959417],[-70.44730447304472,-25.33316772707024],[-70.45450454504545,-25.317970531641294],[-70.45090450904509,-25.306150490752117],[-70.44010440104401,-25.27575609989423],[-70.43290432904328,-25.236918822686924],[-70.43650436504365,-25.193015813669973],[-70.44730447304472,-25.152489959192792],[-70.47250472504724,-25.118718413795136],[-70.49050490504905,-25.110275527445722],[-70.49770497704976,-25.10352121836619],[-70.50130501305013,-25.095078332016783],[-70.50130501305013,-25.08494686839748],[-70.4941049410494,-25.06974967296854],[-70.4941049410494,-25.061306786619127],[-70.48690486904869,-25.039355282110648],[-70.47610476104761,-25.02078093214194],[-70.46890468904688,-25.00051800490335],[-70.47250472504724,-24.975189345855107],[-70.51930519305192,-24.91946629594898],[-70.52650526505265,-24.89582621417062],[-70.53010530105301,-24.873874709662147],[-70.5481054810548,-24.831660277915077],[-70.55530555305553,-24.811397350676486],[-70.55530555305553,-24.765805764389654],[-70.55890558905588,-24.75567430077036],[-70.57330573305732,-24.73709995080165],[-70.57690576905769,-24.732034218992],[-70.57690576905769,-24.65267108730751],[-70.55530555305553,-24.605390923750797],[-70.55530555305553,-24.5952594601315],[-70.55890558905588,-24.585127996512206],[-70.56610566105661,-24.561487914733846],[-70.57330573305732,-24.55304502838443],[-70.57690576905769,-24.546290719304906],[-70.5841058410584,-24.537847832955492],[-70.5841058410584,-24.524339214796427],[-70.58050580505805,-24.517584905716895],[-70.57330573305732,-24.51083059663737],[-70.56970569705696,-24.502387710287955],[-70.56250562505625,-24.482124783049358],[-70.55530555305553,-24.45004181492159],[-70.54090540905409,-24.414581692254053],[-70.5481054810548,-24.38587587866605],[-70.5481054810548,-24.379121569586516],[-70.55530555305553,-24.370678683237102],[-70.55530555305553,-24.36561295142745],[-70.5481054810548,-24.360547219617807],[-70.54450544505444,-24.355481487808156],[-70.54090540905409,-24.352104333268393],[-70.54450544505444,-24.341972869649098],[-70.5481054810548,-24.32677567422015],[-70.54090540905409,-24.318332787870737],[-70.53370533705336,-24.30651274698156],[-70.53370533705336,-24.293004128822496],[-70.53010530105301,-24.279495510663438],[-70.53370533705336,-24.26092116069473],[-70.53010530105301,-24.2440353879959],[-70.5121051210512,-24.213640997138008],[-70.51930519305192,-24.20182095624883],[-70.51930519305192,-24.190000915359654],[-70.50490504905049,-24.168049410851175],[-70.51570515705157,-24.146097906342703],[-70.51930519305192,-24.12414640183423],[-70.50850508505084,-24.122457824564343],[-70.50490504905049,-24.11401493821493],[-70.50130501305013,-24.097129165516108],[-70.50130501305013,-24.068423351928097],[-70.50850508505084,-24.03802896107021],[-70.52650526505265,-23.99581452932314],[-70.51930519305192,-23.965420138465255],[-70.50130501305013,-23.91307424309889],[-70.50490504905049,-23.886057006780767],[-70.5121051210512,-23.87254838862171],[-70.5121051210512,-23.859039770462644],[-70.4941049410494,-23.837088265954172],[-70.49770497704976,-23.784742370587807],[-70.4941049410494,-23.76954517515886],[-70.48330483304832,-23.754347979729914],[-70.45090450904509,-23.72901932068168],[-70.44010440104401,-23.713822125252733],[-70.4221042210422,-23.68511631166473],[-70.40410404104041,-23.651344766267073],[-70.39330393303932,-23.614196066329654],[-70.38970389703897,-23.577047366392236],[-70.40410404104041,-23.551718707343994],[-70.41130411304113,-23.511192852866806],[-70.44010440104401,-23.492618502898097],[-70.46530465304653,-23.48079846200892],[-70.49770497704976,-23.468978421119743],[-70.5121051210512,-23.48079846200892],[-70.51930519305192,-23.50443854378728],[-70.53370533705336,-23.516258584676457],[-70.54090540905409,-23.531455780105404],[-70.56250562505625,-23.526390048295752],[-70.58050580505805,-23.51963573921622],[-70.60570605706057,-23.511192852866806],[-70.620106201062,-23.531455780105404],[-70.63090630906309,-23.516258584676457],[-70.62370623706236,-23.474044152929388],[-70.61650616506165,-23.45546980296068],[-70.61290612906129,-23.447026916611264],[-70.60210602106021,-23.4436497620715],[-70.59130591305913,-23.435206875722088],[-70.5841058410584,-23.42338683483291],[-70.59490594905948,-23.406501062134083],[-70.59850598505984,-23.404812484864202],[-70.60210602106021,-23.37948382581596],[-70.60570605706057,-23.35753232130748],[-70.59130591305913,-23.325449353179714],[-70.59490594905948,-23.301809271401353],[-70.60210602106021,-23.281546344162763],[-70.59850598505984,-23.262971994194054],[-70.59850598505984,-23.244397644225344],[-70.58770587705877,-23.21400325336745],[-70.56610566105661,-23.200494635208393],[-70.56250562505625,-23.17516597616015],[-70.57330573305732,-23.15490304892156],[-70.56610566105661,-23.1312629671432],[-70.58050580505805,-23.10762288536484],[-70.57330573305732,-23.080605649046717],[-70.56250562505625,-23.060342721808126],[-70.53730537305373,-23.033325485490003],[-70.5121051210512,-23.014751135521294],[-70.50850508505084,-23.00968540371165],[-70.50490504905049,-23.00968540371165],[-70.49770497704976,-23.018128290061064],[-70.4941049410494,-23.02657117641047],[-70.4941049410494,-23.036702640029773],[-70.49770497704976,-23.04683410364907],[-70.50130501305013,-23.055276989998482],[-70.4941049410494,-23.07385133996719],[-70.48330483304832,-23.08567138085637],[-70.46890468904688,-23.095802844475664],[-70.45090450904509,-23.097491421745545],[-70.42570425704257,-23.08904853539613],[-70.39690396903968,-23.070474185427422],[-70.37170371703716,-23.05021125818883],[-70.35730357303572,-23.02994833095024],[-70.33570335703357,-23.002931094632117],[-70.32850328503285,-22.970848126504343],[-70.32850328503285,-22.96240524015493],[-70.32850328503285,-22.957339508345285],[-70.32130321303212,-22.94720804472599],[-70.32130321303212,-22.9455194674561],[-70.31050310503105,-22.933699426566925],[-70.2961029610296,-22.91850223113798],[-70.29250292502924,-22.901616458439157],[-70.28890288902889,-22.88473068574033],[-70.28890288902889,-22.867844913041502],[-70.29250292502924,-22.845893408533023],[-70.30690306903068,-22.8188761722149],[-70.31410314103141,-22.790170358626895],[-70.30330303303033,-22.76146454503889],[-70.30330303303033,-22.747955926879825],[-70.29250292502924,-22.724315845101472],[-70.28170281702816,-22.695610031513468],[-70.28890288902889,-22.665215640655575],[-70.28170281702816,-22.658461331576042],[-70.28170281702816,-22.650018445226635],[-70.28890288902889,-22.64157555887722],[-70.28890288902889,-22.63144409525792],[-70.28170281702816,-22.623001208908512],[-70.27450274502745,-22.623001208908512],[-70.27090270902708,-22.619624054368742],[-70.26730267302672,-22.607804013479566],[-70.27090270902708,-22.59598397259039],[-70.27810278102781,-22.577409622621673],[-70.28170281702816,-22.565589581732496],[-70.27810278102781,-22.557146695383082],[-70.2421024210242,-22.496357913667303],[-70.2421024210242,-22.487915027317896],[-70.2421024210242,-22.477783563698594],[-70.25290252902529,-22.455832059190122],[-70.24570245702456,-22.384911813855048],[-70.24930249302493,-22.32750018667904],[-70.2421024210242,-22.313991568519974],[-70.23490234902349,-22.298794373091027],[-70.22410224102241,-22.16201961423053],[-70.22410224102241,-22.14682241880159],[-70.20970209702097,-22.10123083251476],[-70.21330213302133,-22.082656482546042],[-70.19890198901989,-22.075902173466517],[-70.19170191701916,-22.05901640076769],[-70.18450184501845,-22.04213062806886],[-70.18450184501845,-22.025244855370033],[-70.19890198901989,-22.004981928131443],[-70.19890198901989,-22.00329335086156],[-70.19530195301952,-22.001604773591673],[-70.19170191701916,-22.001604773591673],[-70.19170191701916,-21.994850464512147],[-70.17730177301773,-21.97289896000367],[-70.18450184501845,-21.964456073654254],[-70.18090180901808,-21.95601318730484],[-70.17370173701737,-21.945881723685545],[-70.170101701017,-21.932373105526487],[-70.17370173701737,-21.91717591009754],[-70.17730177301773,-21.907044446478245],[-70.19170191701916,-21.885092941969766],[-70.14850148501485,-21.861452860191413],[-70.14490144901448,-21.81248411936481],[-70.15210152101521,-21.760138223998453],[-70.14490144901448,-21.73312098768033],[-70.14850148501485,-21.722989524061028],[-70.15210152101521,-21.66557789688502],[-70.14850148501485,-21.653757855995842],[-70.14130141301412,-21.631806351487363],[-70.12330123301233,-21.619986310598186],[-70.10530105301052,-21.60816626970901],[-70.09450094500944,-21.59128049701018],[-70.09450094500944,-21.574394724311354],[-70.09090090900908,-21.559197528882407],[-70.08730087300873,-21.54568891072335],[-70.07290072900729,-21.537246024373935],[-70.07290072900729,-21.52204882894499],[-70.07650076500765,-21.511917365325694],[-70.080100801008,-21.500097324436517],[-70.08370083700837,-21.488277283547333],[-70.08370083700837,-21.48321155173769],[-70.07290072900729,-21.46632577903886],[-70.06210062100621,-21.451128583609915],[-70.05850058500585,-21.432554233641206],[-70.06570065700657,-21.415668460942378],[-70.08370083700837,-21.392028379164024],[-70.09090090900908,-21.3650111428459],[-70.09450094500944,-21.344748215607304],[-70.08730087300873,-21.33630532925789],[-70.08370083700837,-21.327862442908476],[-70.07290072900729,-21.3160424020193],[-70.06930069300692,-21.305910938400004],[-70.07650076500765,-21.282270856621643],[-70.07650076500765,-21.263696506652934],[-70.08730087300873,-21.25525362030352],[-70.08730087300873,-21.245122156684225],[-70.08370083700837,-21.24005642487458],[-70.080100801008,-21.23330211579505],[-70.08370083700837,-21.226547806715516],[-70.09090090900908,-21.216416343096228],[-70.09450094500944,-21.202907724937162],[-70.09450094500944,-21.189399106778097],[-70.10890108901089,-21.174201911349158],[-70.11250112501125,-21.16238187045998],[-70.11970119701196,-21.140430365951502],[-70.12330123301233,-21.13536463414185],[-70.12690126901269,-21.1302989023322],[-70.13050130501304,-21.123544593252674],[-70.13050130501304,-21.118478861443023],[-70.12690126901269,-21.113413129633372],[-70.12330123301233,-21.11003597509361],[-70.12690126901269,-21.08977304785502],[-70.14130141301412,-21.076264429695954],[-70.16290162901629,-21.040804307028424],[-70.170101701017,-21.013787070710293],[-70.16650166501664,-20.996901298011466],[-70.16290162901629,-20.986769834392177],[-70.14850148501485,-20.96312975261381],[-70.13050130501304,-20.946243979914996],[-70.12690126901269,-20.936112516295694],[-70.14130141301412,-20.915849589057103],[-70.13770137701377,-20.90065239362815],[-70.14130141301412,-20.88038946638956],[-70.14850148501485,-20.866880848230508],[-70.15570155701556,-20.856749384611206],[-70.170101701017,-20.841552189182266],[-70.18450184501845,-20.8280435710232],[-70.19530195301952,-20.816223530134025],[-70.21330213302133,-20.814534952864136],[-70.21330213302133,-20.811157798324373],[-70.19890198901989,-20.804403489244848],[-70.19170191701916,-20.792583448355657],[-70.20250202502025,-20.76218905749778],[-70.2061020610206,-20.73854897571941],[-70.19170191701916,-20.71997462575071],[-70.19170191701916,-20.713220316671183],[-70.19890198901989,-20.711531739401295],[-70.19890198901989,-20.709843162131406],[-70.20250202502025,-20.708154584861532],[-70.2061020610206,-20.706466007591644],[-70.19530195301952,-20.67776019400364],[-70.19530195301952,-20.643988648605983],[-70.20250202502025,-20.54267401241303],[-70.2061020610206,-20.527476816984077],[-70.19890198901989,-20.5156567760949],[-70.17730177301773,-20.492016694316547],[-70.170101701017,-20.476819498887593],[-70.16650166501664,-20.44811368529959],[-70.170101701017,-20.421096448981473],[-70.17370173701737,-20.404210676282645],[-70.18810188101881,-20.378882017234403],[-70.19170191701916,-20.367061976345227],[-70.18810188101881,-20.35355335818616],[-70.16290162901629,-20.338356162757222],[-70.14490144901448,-20.329913276407808],[-70.14130141301412,-20.301207462819804],[-70.13770137701377,-20.294453153740264],[-70.13050130501304,-20.267435917422148],[-70.15930159301593,-20.220155753865427],[-70.16650166501664,-20.20833571297625],[-70.16290162901629,-20.196515672087074],[-70.15570155701556,-20.19313851754731],[-70.14850148501485,-20.189761363007534],[-70.14490144901448,-20.177941322118357],[-70.14490144901448,-20.171187013038832],[-70.15210152101521,-20.14754693126048],[-70.15210152101521,-20.137415467641176],[-70.14490144901448,-20.12390684948211],[-70.12690126901269,-20.091823881354344],[-70.12330123301233,-20.071560954115753],[-70.12690126901269,-20.066495222306102],[-70.1341013410134,-20.051298026877163],[-70.13770137701377,-20.04116656325786],[-70.1341013410134,-20.031035099638572],[-70.12690126901269,-20.009083595130093],[-70.12330123301233,-20.00064070878068],[-70.12330123301233,-19.9786892042722],[-70.1341013410134,-19.949983390684196],[-70.13770137701377,-19.91621184528654],[-70.14490144901448,-19.890883186238298],[-70.14130141301412,-19.87906314534912],[-70.13770137701377,-19.86048879538042],[-70.13770137701377,-19.84866875449123],[-70.15930159301593,-19.81827436363335],[-70.15930159301593,-19.79125712731522],[-70.14850148501485,-19.737222654678973],[-70.15210152101521,-19.71864830471027],[-70.17370173701737,-19.661236677534262],[-70.17730177301773,-19.640973750295657],[-70.18450184501845,-19.62915370940648],[-70.20970209702097,-19.617333668517304],[-70.23850238502385,-19.60382505035824],[-70.2421024210242,-19.598759318548602],[-70.21330213302133,-19.597070741278714],[-70.20970209702097,-19.580184968579886],[-70.20250202502025,-19.56836492769071],[-70.20250202502025,-19.55316773226177],[-70.19890198901989,-19.534593382293053],[-70.2061020610206,-19.48900179600622],[-70.21330213302133,-19.460295982418216],[-70.22770227702277,-19.436655900639863],[-70.22770227702277,-19.41132724159162],[-70.2421024210242,-19.372489964384314],[-70.26730267302672,-19.335341264446896],[-70.26370263702637,-19.32858695536737],[-70.260102601026,-19.32352122355772],[-70.27090270902708,-19.313389759938417],[-70.28170281702816,-19.30325829631913],[-70.28890288902889,-19.30156971904924],[-70.28890288902889,-19.291438255429938],[-70.28170281702816,-19.272863905461236],[-70.28170281702816,-19.262732441841933],[-70.28170281702816,-19.22389516463464],[-70.27810278102781,-19.20363223739605],[-70.26730267302672,-19.17830357834781],[-70.27090270902708,-19.17154926926827],[-70.27810278102781,-19.16648353745863],[-70.28170281702816,-19.159729228379092],[-70.27450274502745,-19.132711992060976],[-70.27450274502745,-19.122580528441674],[-70.27810278102781,-19.10907191028261],[-70.31410314103141,-19.021265892248707],[-70.31410314103141,-19.007757274089656],[-70.31050310503105,-18.97229715142211],[-70.32130321303212,-18.943591337834107],[-70.32850328503285,-18.879425401578573],[-70.34650346503464,-18.838899547101377],[-70.35370353703537,-18.796685115354308],[-70.35730357303572,-18.773045033575954],[-70.35370353703537,-18.762913569956666],[-70.34290342903428,-18.735896333638536],[-70.34290342903428,-18.70887909732042],[-70.34290342903428,-18.69705905643123],[-70.33570335703357,-18.675107551922764],[-70.33570335703357,-18.663287511033587],[-70.33930339303393,-18.653156047414285],[-70.34650346503464,-18.643024583794983],[-70.35010350103501,-18.636270274715457],[-70.33570335703357,-18.617695924746755],[-70.33930339303393,-18.578858647539448],[-70.33570335703357,-18.54677567941168],[-70.32490324903249,-18.524824174903202],[-70.32130321303212,-18.513004134014025],[-70.32130321303212,-18.502872670394723],[-70.32850328503285,-18.47923258861637],[-70.32850328503285,-18.47247827953683],[-70.30690306903068,-18.460658238647653],[-70.30330303303033,-18.445461043218714],[-70.31410314103141,-18.430263847789774],[-70.32490324903249,-18.413378075090947],[-70.35010350103501,-18.382983684233054],[-70.37170371703716,-18.362720756994463],[-70.39330393303932,-18.33908067521611],[-70.41850418504184,-18.31712917070763],[-70.46890468904688,-18.286734779849738],[-70.53010530105301,-18.242831770832794],[-70.56250562505625,-18.224257420864078],[-70.59850598505984,-18.205683070895375],[-70.63450634506344,-18.18710872092666],[-70.68490684906848,-18.161780061878417],[-70.73170731707317,-18.116188475591585],[-70.73530735307352,-18.111122743781934],[-70.74250742507425,-18.100991280162646],[-70.7461074610746,-18.094236971083106],[-70.75330753307533,-18.09254839381323],[-70.76410764107641,-18.090859816543343],[-70.76770767707677,-18.08748266200358],[-70.82530825308253,-18.036825343907097],[-70.84330843308433,-18.02669388028781],[-70.87930879308793,-18.016562416668506],[-70.89010890108901,-18.006430953049218],[-70.90450904509045,-17.965905098572023],[-70.91530915309153,-17.94733074860332],[-70.92970929709297,-17.93719928498402],[-70.94410944109441,-17.932133553174367],[-70.98730987309872,-17.9000505850466],[-71.0089100891009,-17.88991912142731],[-71.06651066510665,-17.871344771458595],[-71.0881108811088,-17.869656194188707],[-71.13851138511384,-17.820687453362112],[-71.160111601116,-17.808867412472935],[-71.17451174511744,-17.79704737158376],[-71.20331203312033,-17.763275826186103],[-71.21771217712177,-17.751455785296926],[-71.26811268112681,-17.731192858058336],[-71.3041130411304,-17.705864199010094],[-71.32571325713256,-17.69573273539079],[-71.34731347313473,-17.69066700358114],[-71.37971379713797,-17.69573273539079],[-71.38331383313833,-17.69742131266068],[-71.38691386913868,-17.687289849041377],[-71.37971379713797,-17.6754698081522],[-71.36531365313652,-17.6568954581835],[-71.35811358113581,-17.63325537640513],[-71.36171361713616,-17.61299244916654],[-71.36891368913689,-17.59272952192795],[-71.3761137611376,-17.49310346300487],[-71.38331383313833,-17.474529113036155],[-71.39411394113941,-17.434003258558974],[-71.40131401314012,-17.40023171316132],[-71.40491404914049,-17.396854558621555],[-71.4121141211412,-17.393477404081793],[-71.41931419314193,-17.39010024954203],[-71.44451444514445,-17.354640126874486],[-71.48051480514805,-17.331000045096133],[-71.48411484114841,-17.32762289055637],[-71.49851498514985,-17.297228499698477],[-71.51291512915128,-17.2854084588093],[-71.53091530915309,-17.28034272699965],[-71.57051570515705,-17.273588417920124],[-71.5921159211592,-17.26514553157071],[-71.60291602916028,-17.26007979976106],[-71.62091620916209,-17.24488260433212],[-71.63531635316353,-17.233062563442928],[-71.64251642516425,-17.231373986173054],[-71.80811808118081,-17.190848131695873],[-71.8441184411844,-17.173962358997045],[-71.87651876518765,-17.148633699948803],[-71.92331923319233,-17.09628780458243],[-71.94851948519485,-17.074336300073966],[-72.00252002520025,-17.042253331946185],[-72.02412024120241,-17.03381044559677],[-72.04572045720457,-17.027056136517245],[-72.11052110521105,-17.023678981977483],[-72.11772117721176,-17.01861325016783],[-72.12492124921249,-17.010170363818418],[-72.12132121321213,-16.98821885930994],[-72.12492124921249,-16.97808739569065],[-72.13932139321393,-16.964578777531585],[-72.1789217892179,-16.942627273023106],[-72.18612186121861,-16.934184386673692],[-72.19692196921969,-16.91561003670499],[-72.22212222122221,-16.905478573085688],[-72.26892268922688,-16.8953471094664],[-72.2941229412294,-16.880149914037446],[-72.29772297722977,-16.863264141338618],[-72.29772297722977,-16.843001214100028],[-72.30492304923048,-16.824426864131325],[-72.36252362523625,-16.761949505145665],[-72.3841238412384,-16.745063732446837],[-72.39492394923948,-16.741686577907075],[-72.40572405724056,-16.741686577907075],[-72.41292412924129,-16.741686577907075],[-72.42372423724237,-16.734932268827535],[-72.43452434524345,-16.719735073398596],[-72.44172441724417,-16.714669341588944],[-72.44892448924489,-16.71129218704918],[-72.4561245612456,-16.709603609779293],[-72.47772477724777,-16.694406414350354],[-72.48852488524885,-16.69102925981059],[-72.52812528125281,-16.68427495073105],[-72.58932589325893,-16.658946291682824],[-72.69372693726937,-16.660634868952698],[-72.78012780127801,-16.62855190082493],[-72.88812888128881,-16.554254500950094],[-73.06093060930608,-16.495154296504197],[-73.09333093330933,-16.459694173836652],[-73.13653136531364,-16.437742669328188],[-73.1761317613176,-16.41410258754982],[-73.19413194131941,-16.407348278470295],[-73.23013230132301,-16.407348278470295],[-73.25173251732517,-16.402282546660643],[-73.26613266132661,-16.39383966031123],[-73.28053280532805,-16.388773928501593],[-73.29493294932949,-16.395528237581118],[-73.30573305733057,-16.382019619422053],[-73.31653316533165,-16.339805187674983],[-73.32733327333273,-16.33136230132557],[-73.33453334533345,-16.326296569515932],[-73.36333363333632,-16.319542260436393],[-73.4209342093421,-16.292525024118277],[-73.48213482134821,-16.27901640595921],[-73.59733597335973,-16.240179128751905],[-73.67653676536764,-16.228359087862728],[-73.70173701737016,-16.245244860561556],[-73.70173701737016,-16.219916201513314],[-73.71973719737197,-16.20640758335425],[-73.72693726937268,-16.19627611973496],[-73.73413734137341,-16.18952181065542],[-73.77013770137701,-16.177701769766244],[-73.8421384213842,-16.147307378908366],[-73.87093870938709,-16.12873302893965],[-73.93573935739357,-16.08651859719258],[-74.0041400414004,-16.037549856365985],[-74.03294032940329,-16.012221197317743],[-74.03294032940329,-16.000401156428566],[-74.02934029340292,-15.98858111553939],[-74.03654036540365,-15.973383920110436],[-74.04734047340473,-15.959875301951385],[-74.07614076140761,-15.94636668379232],[-74.16254162541625,-15.900775097505488],[-74.1769417694177,-15.897397942965725],[-74.22014220142201,-15.890643633886185],[-74.23814238142381,-15.880512170266897],[-74.24894248942489,-15.865314974837943],[-74.25254252542526,-15.855183511218655],[-74.2669426694267,-15.848429202139116],[-74.28854288542885,-15.839986315789716],[-74.32814328143282,-15.848429202139116],[-74.36414364143641,-15.839986315789716],[-74.39654396543965,-15.82647769763065],[-74.44334443344432,-15.797771884042646],[-74.44694446944469,-15.792706152232995],[-74.45054450544505,-15.772443224994404],[-74.45054450544505,-15.762311761375102],[-74.45774457744577,-15.753868875025688],[-74.45774457744577,-15.740360256866623],[-74.46134461344613,-15.726851638707572],[-74.49014490144901,-15.718408752358158],[-74.53694536945369,-15.703211556929205],[-74.6809468094681,-15.642422775213433],[-74.75294752947529,-15.605274075276014],[-74.84654846548464,-15.566436798068708],[-74.86814868148682,-15.537730984480703],[-74.97974979749797,-15.482007934574582],[-75.0049500495005,-15.461745007335978],[-75.01935019350194,-15.45667927552634],[-75.03375033750338,-15.460056430066103],[-75.04095040950409,-15.461745007335978],[-75.0481504815048,-15.460056430066103],[-75.06615066150661,-15.449924966446801],[-75.0949509495095,-15.417841998319034],[-75.10575105751057,-15.40939911196962],[-75.12735127351273,-15.402644802890094],[-75.14535145351454,-15.399267648350317],[-75.15975159751598,-15.392513339270792],[-75.16695166951669,-15.377316143841853],[-75.17055170551706,-15.37393898930209],[-75.18855188551885,-15.368873257492439],[-75.19215192151921,-15.362118948412899],[-75.18855188551885,-15.358741793873136],[-75.1741517415174,-15.35198748479361],[-75.15615156151561,-15.34692175298396],[-75.15255152551525,-15.333413134824895],[-75.16695166951669,-15.31146163031643],[-75.19575195751958,-15.292887280347713],[-75.23535235352354,-15.276001507648886],[-75.26415264152641,-15.250672848600644],[-75.24255242552425,-15.250672848600644],[-75.23175231752317,-15.245607116790993],[-75.22815228152281,-15.235475653171704],[-75.22815228152281,-15.223655612282528],[-75.23535235352354,-15.215212725933114],[-75.24255242552425,-15.205081262313811],[-75.28935289352893,-15.161178253296868],[-75.3109531095311,-15.152735366947454],[-75.36135361353614,-15.14429248059804],[-75.37575375753757,-15.134161016978737],[-75.38655386553866,-15.11727524427991],[-75.39375393753937,-15.093635162501556],[-75.44055440554405,-15.027780648976133],[-75.44775447754478,-15.007517721737543],[-75.45495454954549,-14.99738625811824],[-75.49095490954909,-14.973746176339887],[-75.50175501755017,-14.963614712720585],[-75.50535505355053,-14.956860403641059],[-75.50175501755017,-14.924777435513292],[-75.50535505355053,-14.918023126433752],[-75.5521555215552,-14.884251581036096],[-75.63135631356313,-14.845414303828804],[-75.66015660156602,-14.831905685669739],[-75.68175681756817,-14.821774222050436],[-75.70335703357033,-14.806577026621497],[-75.74655746557465,-14.771116903953967],[-75.7969579695797,-14.7474768221756],[-75.80055800558006,-14.742411090365948],[-75.81135811358114,-14.737345358556311],[-75.81855818558185,-14.73227962674666],[-75.82935829358293,-14.730591049476772],[-75.840158401584,-14.725525317667135],[-75.84735847358473,-14.71708243131772],[-75.85455854558545,-14.70526239042853],[-75.85815858158581,-14.696819504079116],[-75.86535865358653,-14.69006519499959],[-75.87255872558725,-14.68499946318994],[-75.91575915759157,-14.663047958681474],[-75.93015930159301,-14.64953934052241],[-75.92655926559266,-14.62758783601393],[-75.93015930159301,-14.603947754235577],[-75.93375933759337,-14.58030767245721],[-75.94455944559445,-14.558356167948745],[-75.96255962559626,-14.534716086170377],[-75.97335973359733,-14.527961777090852],[-75.9769597695977,-14.51783031347155],[-75.97335973359733,-14.507698849852261],[-75.9661596615966,-14.492501654423322],[-75.96975969759697,-14.484058768073908],[-75.98055980559805,-14.46041868629554],[-76.00216002160022,-14.450287222676252],[-76.03816038160382,-14.430024295437661],[-76.0489604896049,-14.41820425454847],[-76.06696066960669,-14.391187018230355],[-76.08136081360813,-14.37767840007129],[-76.0921609216092,-14.372612668261638],[-76.11736117361173,-14.370924090991764],[-76.12816128161282,-14.367546936452001],[-76.13176131761317,-14.359104050102587],[-76.14256142561425,-14.328709659244694],[-76.11736117361173,-14.325332504704932],[-76.10656106561065,-14.31520104108563],[-76.10656106561065,-14.305069577466341],[-76.11376113761138,-14.29324953657715],[-76.12456124561245,-14.274675186608448],[-76.12816128161282,-14.262855145719271],[-76.13536135361353,-14.24259221848068],[-76.14976149761497,-14.224017868511964],[-76.16416164161642,-14.21557498216255],[-76.18216182161821,-14.2105092503529],[-76.18936189361894,-14.197000632193848],[-76.19656196561965,-14.181803436764895],[-76.20376203762038,-14.168294818605844],[-76.21456214562146,-14.161540509526304],[-76.25056250562506,-14.14803189136724],[-76.25056250562506,-14.169983395875718],[-76.27216272162721,-14.200377786733611],[-76.29016290162902,-14.166606241335955],[-76.28296282962829,-14.141277582287714],[-76.28296282962829,-14.104128882350295],[-76.29016290162902,-14.080488800571942],[-76.28296282962829,-14.073734491492402],[-76.27936279362794,-14.056848718793574],[-76.26856268562685,-14.050094409714049],[-76.27576275762758,-14.038274368824872],[-76.27216272162721,-14.031520059745333],[-76.26856268562685,-14.019700018856156],[-76.27936279362794,-14.00787997796698],[-76.28296282962829,-13.990994205268152],[-76.27216272162721,-13.987617050728389],[-76.27216272162721,-13.962288391680147],[-76.27576275762758,-13.94540261898132],[-76.29376293762937,-13.935271155362031],[-76.29736297362973,-13.921762537202966],[-76.29736297362973,-13.915008228123426],[-76.29376293762937,-13.9082539190439],[-76.29376293762937,-13.899811032694487],[-76.29736297362973,-13.894745300884836],[-76.30816308163081,-13.891368146345073],[-76.31536315363154,-13.896433878154724],[-76.31896318963189,-13.913319650853552],[-76.32616326163262,-13.921762537202966],[-76.3369633696337,-13.916696805393315],[-76.3549635496355,-13.920073959933077],[-76.37296372963729,-13.9082539190439],[-76.39456394563945,-13.9082539190439],[-76.39456394563945,-13.881236682725785],[-76.3909639096391,-13.86772806456672],[-76.37656376563766,-13.835645096438952],[-76.36576365763658,-13.822136478279887],[-76.37296372963729,-13.808627860120822],[-76.36216362163621,-13.801873551041297],[-76.34416344163441,-13.80525070558106],[-76.32616326163262,-13.791742087421994],[-76.30816308163081,-13.791742087421994],[-76.29736297362973,-13.793430664691883],[-76.29016290162902,-13.80525070558106],[-76.3009630096301,-13.818759323740125],[-76.30456304563046,-13.832267941899175],[-76.29376293762937,-13.84071082824859],[-76.27936279362794,-13.847465137328129],[-76.26136261362613,-13.86097375548718],[-76.25416254162542,-13.850842291867892],[-76.25416254162542,-13.828890787359413],[-76.24696246962469,-13.808627860120822],[-76.23256232562325,-13.764724851103878],[-76.22536225362254,-13.734330460245985],[-76.22536225362254,-13.714067533007395],[-76.22176221762217,-13.687050296689264],[-76.2109621096211,-13.653278751291609],[-76.19656196561965,-13.62288436043373],[-76.18216182161821,-13.54014407420948],[-76.18936189361894,-13.464158097064754],[-76.19656196561965,-13.42869797439721],[-76.22176221762217,-13.357777729062136],[-76.27576275762758,-13.286857483727076],[-76.30816308163081,-13.256463092869183],[-76.36936369363693,-13.173722806644932],[-76.45216452164522,-13.072408170451965],[-76.48456484564845,-13.036948047784435],[-76.49176491764918,-13.011619388736193],[-76.50616506165062,-12.989667884227714],[-76.5169651696517,-12.94576487521077],[-76.51336513365133,-12.910304752543226],[-76.5169651696517,-12.869778898066045],[-76.53136531365313,-12.844450239017803],[-76.54216542165422,-12.832630198128626],[-76.61056610566105,-12.773529993682729],[-76.62856628566286,-12.749889911904376],[-76.67176671766717,-12.668838202949999],[-76.68256682566825,-12.655329584790934],[-76.6789667896679,-12.628312348472818],[-76.68256682566825,-12.619869462123404],[-76.68976689766897,-12.609737998504102],[-76.70416704167042,-12.594540803075162],[-76.73656736567365,-12.552326371328093],[-76.77976779767798,-12.523620557740088],[-76.79776797767977,-12.510111939581023],[-76.81216812168121,-12.483094703262907],[-76.79056790567905,-12.456077466944777],[-76.78336783367833,-12.418928767007358],[-76.79056790567905,-12.38178006706994],[-76.82656826568265,-12.353074253481935],[-76.85536855368554,-12.302416935385452],[-76.94896948969489,-12.250071040019094],[-77.00657006570066,-12.22643095824074],[-77.01737017370174,-12.22643095824074],[-77.0209702097021,-12.22136522643109],[-77.03897038970389,-12.204479453732262],[-77.04617046170462,-12.19434799011296],[-77.04617046170462,-12.180839371953894],[-77.04257042570426,-12.172396485604494],[-77.03897038970389,-12.16395359925508],[-77.03897038970389,-12.153822135635778],[-77.05337053370533,-12.114984858428471],[-77.08937089370893,-12.08965619938023],[-77.11457114571145,-12.081213313030815],[-77.13257132571326,-12.076147581221178],[-77.17577175771757,-12.071081849411527],[-77.16497164971649,-12.052507499442811],[-77.15417154171541,-12.03899888128376],[-77.14337143371434,-12.023801685854806],[-77.13977139771397,-11.998473026806565],[-77.1469714697147,-11.932618513281142],[-77.15417154171541,-11.908978431502788],[-77.16137161371613,-11.880272617914784],[-77.16497164971649,-11.870141154295482],[-77.1829718297183,-11.846501072517128],[-77.18657186571865,-11.82454956800865],[-77.1829718297183,-11.800909486230296],[-77.19737197371974,-11.777269404451943],[-77.19737197371974,-11.76713794083264],[-77.17937179371793,-11.770515095372403],[-77.16857168571686,-11.757006477213338],[-77.17217172171722,-11.736743549974747],[-77.19377193771938,-11.691151963687915],[-77.20097200972009,-11.670889036449324],[-77.21177211772117,-11.647248954670971],[-77.22617226172261,-11.62698602743238],[-77.24057240572405,-11.62023171835284],[-77.25137251372513,-11.615165986543204],[-77.26577265772657,-11.605034522923901],[-77.28017280172801,-11.581394441145548],[-77.28377283772838,-11.574640132066008],[-77.27657276572765,-11.566197245716594],[-77.27657276572765,-11.55775435936718],[-77.28017280172801,-11.549311473017767],[-77.29817298172982,-11.530737123049065],[-77.31257312573125,-11.505408464000823],[-77.31977319773198,-11.493588423111646],[-77.33057330573305,-11.488522691301995],[-77.34137341373413,-11.485145536762232],[-77.34857348573486,-11.478391227682692],[-77.35937359373594,-11.461505454983865],[-77.37737377373773,-11.449685414094688],[-77.42057420574206,-11.431111064125986],[-77.45297452974529,-11.404093827807856],[-77.60777607776078,-11.323042118853493],[-77.6329763297633,-11.302779191614903],[-77.64737647376474,-11.2926477279956],[-77.64377643776437,-11.279139109836535],[-77.64737647376474,-11.25718760532807],[-77.65097650976509,-11.236924678089466],[-77.64377643776437,-11.23017036900994],[-77.64737647376474,-11.221727482660526],[-77.64017640176401,-11.213284596311112],[-77.62937629376293,-11.213284596311112],[-77.61857618576185,-11.216661750850875],[-77.60777607776078,-11.20990744177135],[-77.5969759697597,-11.206530287231587],[-77.59337593375933,-11.191333091802633],[-77.59337593375933,-11.164315855484517],[-77.60777607776078,-11.142364350976038],[-77.61857618576185,-11.127167155547099],[-77.61137611376114,-11.115347114657922],[-77.6329763297633,-11.093395610149443],[-77.62937629376293,-11.08326414653014],[-77.64017640176401,-11.064689796561439],[-77.6329763297633,-11.056246910212025],[-77.64377643776437,-11.037672560243308],[-77.66177661776618,-11.014032478464955],[-77.65817658176582,-11.005589592115541],[-77.64737647376474,-10.997146705766127],[-77.65457654576545,-10.976883778527537],[-77.66537665376653,-10.959998005828709],[-77.66177661776618,-10.946489387669644],[-77.6689766897669,-10.927915037700942],[-77.67977679776797,-10.909340687732225],[-77.69777697776978,-10.890766337763523],[-77.71217712177122,-10.868814833255044],[-77.70857708577086,-10.851929060556216],[-77.73377733777338,-10.831666133317626],[-77.75177751777517,-10.816468937888686],[-77.75177751777517,-10.801271742459733],[-77.74817748177482,-10.792828856110319],[-77.76617766177661,-10.769188774331965],[-77.76257762577626,-10.760745887982551],[-77.79137791377913,-10.73541722893431],[-77.80937809378094,-10.723597188045133],[-77.8129781297813,-10.711777147155956],[-77.82017820178201,-10.701645683536654],[-77.82737827378273,-10.69320279718724],[-77.8489784897849,-10.67293986994865],[-77.91017910179102,-10.566559501946045],[-77.91017910179102,-10.554739461056869],[-77.9209792097921,-10.531099379278501],[-77.94257942579425,-10.515902183849562],[-77.96777967779677,-10.493950679341083],[-77.96777967779677,-10.478753483912143],[-77.97857978579785,-10.456801979403664],[-77.99657996579965,-10.431473320355423],[-78.0109801098011,-10.41289897038672],[-78.01458014580146,-10.402767506767418],[-78.00378003780037,-10.394324620418004],[-78.00738007380073,-10.382504579528828],[-78.01818018180181,-10.372373115909525],[-78.05418054180541,-10.347044456861283],[-78.05778057780577,-10.328470106892581],[-78.05778057780577,-10.301452870574451],[-78.07578075780758,-10.286255675145512],[-78.08658086580866,-10.277812788796098],[-78.08658086580866,-10.26092701609727],[-78.09378093780937,-10.24066408885868],[-78.09378093780937,-10.235598357049028],[-78.09018090180902,-10.228844047969503],[-78.1009810098101,-10.215335429810438],[-78.10458104581045,-10.201826811651372],[-78.12258122581225,-10.179875307142908],[-78.16578165781658,-10.1410380299356],[-78.17658176581766,-10.12077510269701],[-78.18378183781837,-10.110643639077708],[-78.18378183781837,-10.10051217545842],[-78.1729817298173,-10.098823598188531],[-78.16938169381693,-10.09375786637888],[-78.16938169381693,-10.080249248219829],[-78.18018180181801,-10.068429207330638],[-78.17658176581766,-10.063363475521001],[-78.17658176581766,-10.051543434631824],[-78.17658176581766,-10.04310054828241],[-78.19458194581945,-10.021149043773931],[-78.19818198181981,-9.997508961995578],[-78.20178201782018,-9.987377498376276],[-78.21258212582126,-9.97386888021721],[-78.21618216182162,-9.962048839328034],[-78.2269822698227,-9.958671684788271],[-78.23058230582305,-9.95360595297862],[-78.23418234182341,-9.951917375708746],[-78.23778237782378,-9.946851643899095],[-78.23418234182341,-9.941785912089443],[-78.2269822698227,-9.935031603009918],[-78.23058230582305,-9.924900139390616],[-78.23058230582305,-9.913080098501439],[-78.23058230582305,-9.901260057612262],[-78.23418234182341,-9.884374284913434],[-78.24138241382414,-9.87593139856402],[-78.24498244982449,-9.859045625865193],[-78.23778237782378,-9.838782698626602],[-78.23058230582305,-9.825274080467537],[-78.23058230582305,-9.79319111233977],[-78.27018270182701,-9.759419566942114],[-78.30258302583026,-9.722270867004696],[-78.30618306183061,-9.698630785226328],[-78.32418324183242,-9.6817450125275],[-78.33138331383313,-9.663170662558798],[-78.34218342183422,-9.653039198939496],[-78.3529835298353,-9.632776271700905],[-78.37098370983709,-9.615890499002077],[-78.37458374583746,-9.585496108144199],[-78.36738367383674,-9.556790294556194],[-78.38538385383853,-9.546658830936892],[-78.39258392583926,-9.529773058238064],[-78.3889838898389,-9.516264440078999],[-78.39978399783998,-9.50106724465006],[-78.40698406984069,-9.477427162871706],[-78.39618396183961,-9.46391854471264],[-78.38538385383853,-9.452098503823464],[-78.39258392583926,-9.435212731124636],[-78.40698406984069,-9.435212731124636],[-78.42858428584286,-9.420015535695683],[-78.43218432184321,-9.392998299377567],[-78.42858428584286,-9.376112526678739],[-78.42138421384213,-9.367669640329325],[-78.41418414184142,-9.362603908519674],[-78.4249842498425,-9.357538176710023],[-78.43578435784357,-9.345718135820846],[-78.4429844298443,-9.340652404011209],[-78.45018450184502,-9.328832363122018],[-78.4609846098461,-9.323766631312381],[-78.47538475384754,-9.325455208582255],[-78.48258482584825,-9.330520940391906],[-78.50778507785077,-9.305192281343665],[-78.50778507785077,-9.295060817724362],[-78.51138511385113,-9.284929354105074],[-78.51858518585186,-9.278175045025549],[-78.52578525785258,-9.269732158676135],[-78.51858518585186,-9.262977849596595],[-78.50778507785077,-9.25622354051707],[-78.49698496984969,-9.252846385977307],[-78.48978489784898,-9.23427203600859],[-78.48978489784898,-9.21400910877],[-78.49698496984969,-9.190369026991647],[-78.5149851498515,-9.17854898610247],[-78.53658536585365,-9.17179467702293],[-78.5509855098551,-9.17854898610247],[-78.55818558185581,-9.183614717912107],[-78.56178561785617,-9.192057604261521],[-78.55818558185581,-9.200500490610935],[-78.55818558185581,-9.212320531500112],[-78.5509855098551,-9.232583458738716],[-78.55458554585546,-9.244403499627893],[-78.56538565385654,-9.241026345088116],[-78.57618576185762,-9.21400910877],[-78.59778597785977,-9.192057604261521],[-78.61218612186121,-9.176860408832582],[-78.61218612186121,-9.16672894521328],[-78.61578615786158,-9.159974636133754],[-78.60858608586085,-9.156597481593991],[-78.59418594185942,-9.161663213403642],[-78.5689856898569,-9.168417522483168],[-78.56538565385654,-9.159974636133754],[-78.55818558185581,-9.148154595244577],[-78.55818558185581,-9.127891668005987],[-78.5689856898569,-9.104251586227619],[-78.57978579785798,-9.08905439079868],[-78.59058590585906,-9.077234349909503],[-78.6049860498605,-9.077234349909503],[-78.62298622986229,-9.078922927179377],[-78.63378633786337,-9.072168618099852],[-78.6409864098641,-9.056971422670912],[-78.6409864098641,-9.040085649972085],[-78.63378633786337,-9.023199877273257],[-78.63018630186302,-9.013068413653954],[-78.63738637386373,-9.00462552730454],[-78.66258662586625,-8.996182640955126],[-78.66258662586625,-8.98436260006595],[-78.65538655386554,-8.987739754605713],[-78.64818648186481,-8.980985445526187],[-78.64818648186481,-8.959033941017708],[-78.65538655386554,-8.933705281969466],[-78.66258662586625,-8.918508086540527],[-78.67338673386733,-8.896556582032048],[-78.68058680586806,-8.883047963872997],[-78.69498694986949,-8.86447361390428],[-78.71658716587166,-8.837456377586165],[-78.76338763387633,-8.774979018600504],[-78.76338763387633,-8.76653613225109],[-78.76338763387633,-8.756404668631788],[-78.75618756187562,-8.747961782282374],[-78.74178741787418,-8.73951889593296],[-78.74178741787418,-8.710813082344956],[-78.74538745387453,-8.688861577836477],[-78.74178741787418,-8.673664382407537],[-78.74898748987489,-8.646647146089407],[-78.75978759787597,-8.607809868882114],[-78.78858788587885,-8.567284014404933],[-78.82098820988209,-8.528446737197626],[-78.86058860588605,-8.491298037260208],[-78.88218882188822,-8.47441226456138],[-78.91458914589145,-8.462592223672203],[-78.9289892898929,-8.450772182783027],[-78.93978939789397,-8.435574987354073],[-78.93618936189361,-8.423754946464896],[-78.92538925389253,-8.423754946464896],[-78.91818918189182,-8.42713210100466],[-78.90738907389074,-8.418689214655245],[-78.90018900189001,-8.39673771014678],[-78.90378903789038,-8.376474782908176],[-78.9649896498965,-8.2869801876044],[-78.9649896498965,-8.26502868309592],[-78.99018990189902,-8.231257137698265],[-78.98658986589865,-8.217748519539214],[-79.0189901899019,-8.180599819601781],[-79.12339123391233,-8.089416647028116],[-79.12339123391233,-8.065776565249763],[-79.18459184591846,-8.025250710772582],[-79.29979299792997,-7.939133270008568],[-79.35019350193501,-7.880033065562671],[-79.38259382593826,-7.834441479275839],[-79.3969939699397,-7.792227047528769],[-79.44379443794438,-7.738192574892523],[-79.45819458194582,-7.726372534003346],[-79.46539465394653,-7.716241070384044],[-79.46179461794618,-7.709486761304518],[-79.44739447394474,-7.704421029494867],[-79.43659436594366,-7.694289565875565],[-79.43659436594366,-7.674026638636974],[-79.44739447394474,-7.650386556858621],[-79.48339483394834,-7.592974929682612],[-79.55539555395553,-7.495037448029407],[-79.58419584195842,-7.46295447990164],[-79.58419584195842,-7.439314398123287],[-79.59139591395913,-7.4207400481545704],[-79.58779587795878,-7.410608584535282],[-79.57699576995769,-7.40047712091598],[-79.57339573395734,-7.386968502756915],[-79.58419584195842,-7.356574111899036],[-79.5949959499595,-7.331245452850794],[-79.5949959499595,-7.312671102882078],[-79.6129961299613,-7.2670795165952455],[-79.64539645396454,-7.231619393927716],[-79.6849968499685,-7.192782116720409],[-79.69579695796958,-7.177584921291469],[-79.69219692196921,-7.157321994052879],[-79.68859688596886,-7.1303047577347485],[-79.70659706597066,-7.106664675956395],[-79.81459814598145,-7.000284307953777],[-79.86499864998649,-6.9496269898573075],[-79.87579875798758,-6.929364062618703],[-79.92979929799297,-6.88377247633187],[-79.94419944199441,-6.851689508204103],[-79.94779947799478,-6.819606540076336],[-79.96579965799657,-6.787523571948569],[-79.98739987399874,-6.757129181090676],[-80.00540005400053,-6.740243408391848],[-80.12060120601205,-6.650748813088057],[-80.1710017100171,-6.61866584496029],[-80.2970029700297,-6.544368445085453],[-80.4590045900459,-6.463316736131077],[-80.7290072900729,-6.329919131810357],[-80.79020790207902,-6.299524740952464],[-80.85140851408514,-6.238735959236678],[-80.9270092700927,-6.189767218410083],[-81.01341013410133,-6.139109900313599],[-81.09981099810997,-6.071566809518302],[-81.13221132211322,-6.0344181095808835],[-81.15021150211501,-5.975317905134986],[-81.15021150211501,-5.936480627927679],[-81.15021150211501,-5.892577618910735],[-81.15021150211501,-5.882446155291433],[-81.12861128611286,-5.865560382592605],[-81.1250112501125,-5.846986032623903],[-81.11781117811178,-5.840231723544363],[-81.09621096210962,-5.838543146274489],[-81.08541085410853,-5.8149030644961215],[-81.08541085410853,-5.799705869067182],[-81.07461074610745,-5.786197250908117],[-81.05661056610566,-5.7878858281780055],[-81.03861038610385,-5.818280219035898],[-81.00981009810097,-5.831788837194949],[-80.97020970209702,-5.8452974553540145],[-80.94140941409414,-5.850363187163666],[-80.90180901809018,-5.8149030644961215],[-80.86580865808658,-5.743982819161047],[-80.8550085500855,-5.651111069317508],[-80.88020880208802,-5.573436514902895],[-80.93060930609306,-5.463678992360528],[-80.9630096300963,-5.429907446962872],[-81.05661056610566,-5.340412851659096],[-81.0710107101071,-5.318461347150617],[-81.09621096210962,-5.313395615340966],[-81.1070110701107,-5.316772769880728],[-81.13221132211322,-5.2998869971819005],[-81.15381153811538,-5.267804029054133],[-81.1790117901179,-5.239098215466129],[-81.1970119701197,-5.208703824608236],[-81.19341193411934,-5.198572360988948],[-81.18621186211861,-5.190129474639534],[-81.17541175411753,-5.1850637428298825],[-81.16461164611646,-5.164800815591292],[-81.16821168211682,-5.152980774702115],[-81.1790117901179,-5.142849311082813],[-81.17541175411753,-5.129340692923748],[-81.16101161011609,-5.125963538383985],[-81.16821168211682,-5.109077765685157],[-81.17181171811718,-5.087126261176678],[-81.16101161011609,-5.071929065747739],[-81.14661146611466,-5.0753062202875014],[-81.12861128611286,-5.065174756668213],[-81.11421114211142,-5.082060529367041],[-81.08181081810818,-5.078683374827264],[-81.06741067410674,-5.056731870318799],[-81.06381063810637,-5.021271747651255],[-81.08541085410853,-4.973991584094549],[-81.11781117811178,-4.940220038696893],[-81.15021150211501,-4.916579956918525],[-81.17181171811718,-4.881119834250995],[-81.18981189811898,-4.850725443393102],[-81.22221222212222,-4.8068224343761585],[-81.3050130501305,-4.720704993612145],[-81.33741337413373,-4.678490561865075],[-81.33381333813338,-4.66498194370601],[-81.31941319413194,-4.658227634626485],[-81.3050130501305,-4.643030439197531],[-81.30861308613086,-4.624456089228829],[-81.31581315813158,-4.600816007450462],[-81.30861308613086,-4.550158689353992],[-81.30861308613086,-4.534961493925039],[-81.31221312213121,-4.516387143956337],[-81.3230132301323,-4.496124216717746],[-81.33021330213302,-4.475861289479141],[-81.32661326613265,-4.46235267132009],[-81.31581315813158,-4.452221207700788],[-81.30861308613086,-4.447155475891137],[-81.30141301413013,-4.4420897440815],[-81.29421294212942,-4.430269703192309],[-81.27981279812798,-4.396498157794667],[-81.27981279812798,-4.3728580760163],[-81.29421294212942,-4.317135026110179],[-81.29061290612906,-4.298560676141463],[-81.27621276212761,-4.27492059436311],[-81.26541265412654,-4.252969089854631],[-81.2510125101251,-4.2394604716955655],[-81.16461164611646,-4.178671689979794],[-81.1430114301143,-4.156720185471315],[-81.1250112501125,-4.122948640073659],[-81.11061110611105,-4.10775144464472],[-81.09261092610926,-4.100997135565194],[-81.07461074610745,-4.095931403755543],[-81.06381063810637,-4.085799940136241],[-81.04581045810458,-4.053716972008473],[-80.99180991809918,-3.972665263054097],[-80.9630096300963,-3.9388937176564554],[-80.92340923409233,-3.9101879040684366],[-80.88380883808837,-3.8865478222900833],[-80.86940869408694,-3.873039204131018],[-80.86220862208621,-3.8510876996225534],[-80.85860858608585,-3.8291361951140743],[-80.85140851408514,-3.8088732678754837],[-80.83340833408333,-3.7734131452079396],[-80.80820808208081,-3.739641599810284],[-80.77220772207721,-3.7109357862222794],[-80.61380613806138,-3.616375459108852],[-80.5850058500585,-3.5876696455208474],[-80.54180541805418,-3.5268808638050757],[-80.53460534605345,-3.5049293592965967],[-80.52740527405274,-3.501552204756834],[-80.51660516605166,-3.4998636274869455],[-80.50940509405093,-3.4947978956772943],[-80.49500495004949,-3.4897321638676573],[-80.4230042300423,-3.4914207411375315],[-80.4050040500405,-3.488043586597769],[-80.38340383403833,-3.4779121229784664],[-80.36900369003689,-3.4660920820892898],[-80.36180361803618,-3.4475177321205877],[-80.35820358203581,-3.4373862685012853],[-80.34380343803437,-3.413746186722932],[-80.34020340203402,-3.4036147231036296],[-80.34020340203402,-3.3934832594843414],[-80.34380343803437,-3.3867289504048017],[-80.34380343803437,-3.378286064055388],[-80.34020340203402,-3.3681546004360996],[-80.32940329403294,-3.3597117140866857],[-80.32220322203221,-3.347891673197509],[-80.3150031500315,-3.334383055038444],[-80.30780307803077,-3.3208744368793788],[-80.31860318603185,-3.3495802504673833],[-80.32220322203221,-3.356334559546923],[-80.3150031500315,-3.3765974867855135],[-80.30060300603006,-3.366466023166211],[-80.2970029700297,-3.3360716323083324],[-80.28620286202862,-3.3208744368793788],[-80.25740257402573,-3.347891673197509],[-80.24660246602465,-3.342825941387858],[-80.17460174601746,-3.3276287459589184],[-80.16020160201602,-3.3293173232287927],[-80.1530015300153,-3.331005900498681],[-80.14580145801457,-3.331005900498681],[-80.1350013500135,-3.3276287459589184],[-80.11340113401134,-3.300611509640788],[-80.10980109801098,-3.2972343551010255],[-80.07020070200701,-3.2178712234165374],[-80.05940059400594,-3.2043626052574723],[-80.03780037800378,-3.207739759797235],[-80.03420034200342,-3.2313798415756025],[-80.04140041400413,-3.2803485824021976],[-80.03060030600305,-3.273594273322672],[-80.02340023400234,-3.2634628097033698],[-80.01620016200161,-3.2533313460840674],[-80.0090000900009,-3.2415113051948907],[-79.99819998199982,-3.2347569961153653],[-79.96939969399693,-3.2144940688767747],[-79.95139951399514,-3.197608296177947],[-79.94419944199441,-3.1773453689393563],[-79.9369993699937,-3.1537052871609887],[-79.93339933399334,-3.114868009953696],[-79.91539915399153,-3.079407887286152],[-79.8829988299883,-3.0253734146499056],[-79.87579875798758,-3.005110487411315],[-79.88659886598866,-2.988224714712487],[-79.8829988299883,-2.964584632934134],[-79.86859868598685,-2.925747355726827],[-79.86499864998649,-2.908861583027999],[-79.83619836198362,-2.8075469468350462],[-79.81459814598145,-2.7687096696277393],[-79.8109981099811,-2.761955360548214],[-79.80019800198002,-2.741692433309609],[-79.79659796597966,-2.718052351531256],[-79.7749977499775,-2.6589521470853583],[-79.76419764197641,-2.6420663743865305],[-79.73539735397354,-2.6116719835286517],[-79.72819728197281,-2.5930976335599354],[-79.72459724597246,-2.569457551781582],[-79.73179731797318,-2.525554542764624],[-79.74619746197462,-2.490094420097094],[-79.74979749797498,-2.485028688287443],[-79.77139771397714,-2.4867172655573313],[-79.78219782197822,-2.485028688287443],[-79.78939789397893,-2.48165153374768],[-79.80019800198002,-2.463077183778964],[-79.82179821798218,-2.4090427111427175],[-79.83259832598326,-2.388779783904127],[-79.83979839798397,-2.3769597430149503],[-79.83979839798397,-2.363451124855885],[-79.83979839798397,-2.304350920410002],[-79.8469984699847,-2.2587593341231695],[-79.8469984699847,-2.2452507159641044],[-79.83979839798397,-2.2232992114556254],[-79.83979839798397,-2.2097905932965602],[-79.84339843398433,-2.203036284217035],[-79.8469984699847,-2.199659129677272],[-79.85779857798578,-2.182773356978444],[-79.86139861398614,-2.1793962024386815],[-79.86499864998649,-2.172641893359142],[-79.86499864998649,-2.167576161549505],[-79.86859868598685,-2.160821852469965],[-79.86859868598685,-2.1490018115807885],[-79.86139861398614,-2.137181770691612],[-79.85779857798578,-2.128738884342198],[-79.85419854198541,-2.120295997992784],[-79.86139861398614,-2.1084759571036074],[-79.8469984699847,-2.0915901844047795],[-79.82899828998289,-2.0865244525951283],[-79.81819818198181,-2.079770143515603],[-79.81459814598145,-2.0561300617372353],[-79.80739807398074,-2.045998598117947],[-79.78939789397893,-2.0375557117685332],[-79.77139771397714,-2.027424248149231],[-79.76419764197641,-2.005472743640766],[-79.82539825398254,-2.0392442890384075],[-79.83259832598326,-2.0443100208480587],[-79.83259832598326,-2.0527529071974726],[-79.83619836198362,-2.0696386798963005],[-79.84339843398433,-2.073015834436063],[-79.87579875798758,-2.0747044117059517],[-79.8829988299883,-2.0831472980553656],[-79.8829988299883,-2.0915901844047795],[-79.89019890198901,-2.115230266183133],[-79.9009990099901,-2.155756120660314],[-79.9009990099901,-2.1844619342483185],[-79.89739897398974,-2.213167747836337],[-79.86499864998649,-2.2672022204725835],[-79.86139861398614,-2.2975966113304622],[-79.87939879398793,-2.4917829973669825],[-79.89019890198901,-2.5323088518441637],[-79.89739897398974,-2.5441288927333403],[-79.92259922599226,-2.5745232835912333],[-79.93339933399334,-2.5795890154008703],[-79.94779947799478,-2.5846547472105215],[-79.98379983799838,-2.604917674449112],[-79.99819998199982,-2.608294828988889],[-80.0090000900009,-2.603229097179238],[-80.01260012600126,-2.5897204790201727],[-80.02340023400234,-2.58634332448041],[-80.0450004500045,-2.5897204790201727],[-80.05220052200522,-2.58634332448041],[-80.0630006300063,-2.577900438130996],[-80.07020070200701,-2.561014665432168],[-80.05580055800557,-2.5458174700032288],[-80.0270002700027,-2.525554542764624],[-80.01620016200161,-2.503603038256159],[-80.01260012600126,-2.4884058428272056],[-80.00180001800018,-2.4799629564777916],[-79.97659976599766,-2.476585801938029],[-79.96939969399693,-2.48165153374768],[-79.96219962199622,-2.490094420097094],[-79.95499954999549,-2.4968487291766195],[-79.94419944199441,-2.498537306446508],[-79.93339933399334,-2.4917829973669825],[-79.92979929799297,-2.4833401110175686],[-79.92979929799297,-2.473208647398266],[-79.9369993699937,-2.463077183778964],[-79.94059940599405,-2.4833401110175686],[-79.95499954999549,-2.4799629564777916],[-79.97659976599766,-2.4563228746994383],[-79.99819998199982,-2.459700029239201],[-80.01980019800197,-2.4698314928585035],[-80.03420034200342,-2.473208647398266],[-80.04140041400413,-2.459700029239201],[-80.03420034200342,-2.437748524730736],[-80.01620016200161,-2.3955340929836666],[-80.01260012600126,-2.371894011205299],[-80.0090000900009,-2.358385393046248],[-79.99819998199982,-2.353319661236597],[-79.98739987399874,-2.3516310839667085],[-79.97659976599766,-2.3482539294269458],[-79.96939969399693,-2.339811043077532],[-79.95139951399514,-2.3077280749497646],[-79.95859958599586,-2.309416652219639],[-79.96579965799657,-2.312793806759416],[-79.97659976599766,-2.322925270378704],[-79.98379983799838,-2.3263024249184667],[-80.00180001800018,-2.3246138476485925],[-80.01260012600126,-2.3263024249184667],[-80.02340023400234,-2.3347453112678807],[-80.03420034200342,-2.3465653521570715],[-80.07740077400774,-2.458011451969327],[-80.14580145801457,-2.5525717790827542],[-80.17460174601746,-2.58634332448041],[-80.20700207002069,-2.6015405199093493],[-80.21420214202142,-2.613360560798526],[-80.22140221402213,-2.6234920244178284],[-80.23220232202321,-2.6285577562274796],[-80.24300243002429,-2.6285577562274796],[-80.24660246602465,-2.625180601687717],[-80.25020250202502,-2.618426292608177],[-80.25380253802538,-2.6116719835286517],[-80.27180271802717,-2.604917674449112],[-80.2790027900279,-2.613360560798526],[-80.28260282602825,-2.6285577562274796],[-80.2790027900279,-2.64882068346607],[-80.27540275402754,-2.652197838005833],[-80.25020250202502,-2.679215074323963],[-80.24660246602465,-2.687657960673363],[-80.24300243002429,-2.6994780015625537],[-80.24660246602465,-2.7214295060710185],[-80.25380253802538,-2.7298723924204324],[-80.2790027900279,-2.7264952378806697],[-80.32220322203221,-2.7112980424517303],[-80.36180361803618,-2.674149342514312],[-80.37620376203762,-2.665706456164898],[-80.39060390603906,-2.6538864152757213],[-80.39780397803978,-2.64882068346607],[-80.40140401404014,-2.6471321061961817],[-80.41940419404193,-2.6454435289263074],[-80.43020430204302,-2.6420663743865305],[-80.46620466204662,-2.618426292608177],[-80.57420574205742,-2.4934715746368568],[-80.6570065700657,-2.415797020222257],[-80.68940689406894,-2.405665556602955],[-80.71820718207182,-2.3904683611740154],[-80.75060750607506,-2.392156938443904],[-80.80460804608046,-2.375271165745076],[-80.82260822608225,-2.366828279395662],[-80.86220862208621,-2.3296795794582437],[-80.88740887408873,-2.3212366931088297],[-80.90180901809018,-2.3212366931088297],[-80.91260912609125,-2.3195481158389413],[-80.91980919809198,-2.309416652219639],[-80.9270092700927,-2.2756451068219974],[-80.93420934209341,-2.260447911393044],[-80.95220952209522,-2.2368078296146905],[-80.96660966609666,-2.2232992114556254],[-81.00261002610026,-2.1929048205977324],[-81.00621006210062,-2.1878390887880954],[-81.00981009810097,-2.1760190478989188],[-81.01341013410133,-2.167576161549505],[-81.00981009810097,-2.1625104297398536],[-81.00261002610026,-2.164199007009728],[-80.99900999009989,-2.169264738819379],[-80.99540995409954,-2.172641893359142],[-80.99180991809918,-2.1760190478989188],[-80.96660966609666,-2.182773356978444],[-80.95580955809558,-2.182773356978444],[-80.94860948609485,-2.186150511518207],[-80.9450094500945,-2.203036284217035],[-80.93060930609306,-2.2165449023761],[-80.90540905409054,-2.2165449023761],[-80.86940869408694,-2.203036284217035],[-80.8190081900819,-2.1625104297398536],[-80.77940779407794,-2.142247502501263],[-80.74340743407434,-2.103410225293956],[-80.73620736207361,-2.0443100208480587],[-80.75060750607506,-2.01391562999018],[-80.75780757807578,-1.9818326618623985],[-80.76140761407613,-1.9733897755129846],[-80.75780757807578,-1.9632583118936964],[-80.74700747007469,-1.961569734623808],[-80.73260732607326,-1.953126848274394],[-80.7290072900729,-1.9294867664960407],[-80.73260732607326,-1.904158107447799],[-80.76140761407613,-1.7977777394451806],[-80.77580775807758,-1.7555633076981252],[-80.7830078300783,-1.7369889577294089],[-80.79020790207902,-1.7217917623004695],[-80.8010080100801,-1.7099717214112928],[-80.81180811808117,-1.6913973714425765],[-80.8370083700837,-1.6339857442665675],[-80.84780847808477,-1.6154113942978512],[-80.8550085500855,-1.6035913534086745],[-80.8550085500855,-1.5883941579797352],[-80.85140851408514,-1.5765741170905585],[-80.81540815408154,-1.552934035312191],[-80.8190081900819,-1.5292939535338377],[-80.8190081900819,-1.5005881399458332],[-80.81180811808117,-1.4921452535964193],[-80.8010080100801,-1.4803252127072426],[-80.78660786607865,-1.4769480581674799],[-80.77220772207721,-1.4786366354373541],[-80.7650076500765,-1.465128017278289],[-80.76860768607686,-1.4499308218493496],[-80.7650076500765,-1.4313564718806475],[-80.76140761407613,-1.4144706991818197],[-80.7650076500765,-1.3908306174034522],[-80.76140761407613,-1.3773219992444012],[-80.74340743407434,-1.3688791128949873],[-80.74340743407434,-1.3435504538467455],[-80.77580775807758,-1.3030245993695502],[-80.83340833408333,-1.2304157767646018],[-80.88380883808837,-1.1459869132704625],[-80.90180901809018,-1.095329595173979],[-80.91620916209162,-1.0649352043161002],[-80.90900909009089,-1.0446722770775096],[-80.89820898208981,-1.0328522361883188],[-80.88380883808837,-1.0210321952991421],[-80.86940869408694,-1.0075235771400912],[-80.86220862208621,-0.9973921135207888],[-80.8550085500855,-0.9872606499014864],[-80.84060840608406,-0.9737520317424355],[-80.82980829808298,-0.9585548363134819],[-80.82620826208262,-0.950111949964068],[-80.81540815408154,-0.9467347954243053],[-80.8010080100801,-0.950111949964068],[-80.78660786607865,-0.950111949964068],[-80.77580775807758,-0.9416690636146541],[-80.76140761407613,-0.9366033318050171],[-80.74700747007469,-0.9399804863447798],[-80.73260732607326,-0.9349147545351286],[-80.72180721807217,-0.9315375999953659],[-80.72540725407254,-0.9399804863447798],[-80.70740707407074,-0.9484233726941937],[-80.68940689406894,-0.950111949964068],[-80.67860678606786,-0.9399804863447798],[-80.67140671406713,-0.9366033318050171],[-80.66420664206642,-0.9264718681857147],[-80.65340653406534,-0.923094713645952],[-80.64260642606426,-0.9366033318050171],[-80.63540635406353,-0.9399804863447798],[-80.61740617406174,-0.9416690636146541],[-80.59220592205922,-0.9315375999953659],[-80.57060570605705,-0.9129632500266496],[-80.5490054900549,-0.8893231682482963],[-80.53460534605345,-0.8268458092626361],[-80.52740527405274,-0.8065828820240455],[-80.51660516605166,-0.7424169457684968],[-80.49860498604986,-0.6917596276720133],[-80.47340473404734,-0.6478566186550694],[-80.46260462604626,-0.6174622277971764],[-80.4590045900459,-0.6123964959875394],[-80.44820448204482,-0.6056421869079998],[-80.43380433804337,-0.6039536096381255],[-80.4230042300423,-0.5988878778284743],[-80.41940419404193,-0.6259051141465903],[-80.4050040500405,-0.6461680413851809],[-80.37980379803798,-0.6579880822743718],[-80.35460354603546,-0.6613652368141345],[-80.30060300603006,-0.6630538140840088],[-80.30060300603006,-0.6495451959249579],[-80.32580325803258,-0.6427908868454182],[-80.35820358203581,-0.6360365777658927],[-80.37620376203762,-0.6360365777658927],[-80.39060390603906,-0.6259051141465903],[-80.40140401404014,-0.5971993005585858],[-80.41580415804158,-0.5735592187802325],[-80.43020430204302,-0.5684934869705813],[-80.43740437404374,-0.5583620233512931],[-80.43740437404374,-0.5330333643030514],[-80.44820448204482,-0.5060161279849211],[-80.45180451804518,-0.4773103143969166],[-80.46620466204662,-0.4452273462691494],[-80.48420484204841,-0.42327584176067035],[-80.49500495004949,-0.3810614100136007],[-80.48420484204841,-0.3675527918545356],[-80.46620466204662,-0.36586421458466134],[-80.43380433804337,-0.3388469782665311],[-80.40140401404014,-0.2915668147098245],[-80.39060390603906,-0.27468104201099663],[-80.3870038700387,-0.2611724238519315],[-80.37980379803798,-0.23922091934345247],[-80.37260372603726,-0.22233514664462461],[-80.3510035100351,-0.21558083756509916],[-80.33660336603366,-0.19531791032650858],[-80.32220322203221,-0.17336640581802953],[-80.30420304203042,-0.18856360124696891],[-80.28260282602825,-0.17843213762768073],[-80.2610026100261,-0.1598577876589644],[-80.23220232202321,-0.13959486042037383],[-80.1710017100171,-0.07542892416483937],[-80.12420124201242,-0.01295156517917917],[-80.11340113401134,0.0005570529798859525],[-80.10620106201061,0.007311362059411408],[-80.10260102601026,0.027574289298016197],[-80.0990009900099,0.03939433018719285],[-80.09540095400953,0.04277148472695558],[-80.08820088200882,0.046148639266718305],[-80.06660066600665,0.05290294834624376],[-80.05220052200522,0.0900516482836764],[-80.04140041400413,0.12382319368131789],[-80.03780037800378,0.1761690890476899],[-80.03780037800378,0.19980917082604321],[-80.0450004500045,0.24202360257311284],[-80.04860048600486,0.31800957971783816],[-80.03780037800378,0.3450268160359542],[-80.03780037800378,0.3534697023853681],[-80.03780037800378,0.35684685692513085],[-80.0270002700027,0.35178112511549386],[-80.01980019800197,0.34671539330584267],[-80.01620016200161,0.339961084226303],[-80.01260012600126,0.3247638887973636],[-80.00540005400053,0.3247638887973636],[-80.00540005400053,0.3365839296865403],[-79.99459994599945,0.35684685692513085],[-79.99099990999909,0.3652897432745448],[-79.99459994599945,0.3787983614336099],[-79.99819998199982,0.3872412477830238],[-80.01260012600126,0.40074986594208895],[-80.03780037800378,0.43958714314938163],[-80.0450004500045,0.45816149311809795],[-80.0450004500045,0.47842442035668853],[-80.0450004500045,0.5003759248651676],[-80.03780037800378,0.5121959657543442],[-80.0270002700027,0.5223274293736466],[-80.01980019800197,0.537524624802586],[-80.01620016200161,0.559476129311065],[-80.02340023400234,0.5797390565496556],[-80.03060030600305,0.5966248292484835],[-80.03780037800378,0.625330642836488],[-80.0450004500045,0.6371506837256646],[-80.05940059400594,0.6439049928051901],[-80.07740077400774,0.647282147344967],[-80.09180091800917,0.652347879154604],[-80.0990009900099,0.6641679200437807],[-80.10620106201061,0.6793651154727343],[-80.10980109801098,0.6945623109016736],[-80.10980109801098,0.7384653199186317],[-80.0990009900099,0.7806797516656871],[-80.07740077400774,0.8161398743332313],[-80.0450004500045,0.8397799561115846],[-80.03060030600305,0.8313370697621707],[-80.01620016200161,0.8296484924922964],[-79.98019980199801,0.8330256470320592],[-79.96579965799657,0.8364028015718219],[-79.94779947799478,0.8549771515405382],[-79.93339933399334,0.8583543060803009],[-79.9189991899919,0.8617314606200637],[-79.89379893798937,0.8718629242393519],[-79.86139861398614,0.876928656049003],[-79.84339843398433,0.8904372742080682],[-79.83259832598326,0.8938144287478309],[-79.82179821798218,0.8971915832875936],[-79.7929979299793,0.9208316650659611],[-79.78579785797858,0.9292745514153751],[-79.77139771397714,0.9478489013840772],[-79.76419764197641,0.9546032104636168],[-79.74259742597425,0.9664232513527935],[-79.68139681396814,0.9849976013214956],[-79.65619656196561,1.003571951290212],[-79.6489964899649,0.9934404876709095],[-79.6489964899649,0.9849976013214956],[-79.67059670596706,0.9208316650659611],[-79.6669966699667,0.907323046906896],[-79.65619656196561,0.8971915832875936],[-79.64539645396454,0.8904372742080682],[-79.63459634596346,0.8803058105887658],[-79.62019620196202,0.8532885742706497],[-79.61659616596165,0.8448456879212358],[-79.6309963099631,0.8904372742080682],[-79.64539645396454,0.9005687378273706],[-79.6489964899649,0.907323046906896],[-79.6489964899649,0.9123887787165472],[-79.64179641796417,0.9225202423358354],[-79.64179641796417,0.9275859741454866],[-79.64539645396454,0.9529146331937284],[-79.64179641796417,0.9714889831624447],[-79.6309963099631,0.9866861785913841],[-79.61659616596165,0.9968176422106723],[-79.57339573395734,0.9833090240516213],[-79.5229952299523,1.0103262603697374],[-79.45819458194582,1.0728036193553976],[-79.43659436594366,1.0778693511650488],[-79.36459364593645,1.0728036193553976],[-79.35739357393574,1.074492196625286],[-79.33219332193322,1.0829350829747],[-79.32499324993249,1.0863122375144627],[-79.29619296192962,1.0846236602445742],[-79.28179281792818,1.0863122375144627],[-79.2709927099271,1.0930665465939882],[-79.24939249392493,1.0795579284349373],[-79.22059220592206,1.0846236602445742],[-79.19179191791918,1.0947551238638766],[-79.16659166591666,1.0998208556735278],[-79.14859148591485,1.109952319292816],[-79.07299072990729,1.2095783782158946],[-79.05859058590586,1.2180212645653086],[-79.03339033390334,1.2095783782158946],[-79.01179011790117,1.1926926055170668],[-79.0009900099001,1.1724296782784762],[-78.99378993789938,1.1471010192302344],[-78.99018990189902,1.1200837829121184],[-78.97218972189721,1.1302152465314066],[-78.96138961389613,1.1454124419603602],[-78.95778957789578,1.1639867919290623],[-78.95418954189542,1.2078898009460204],[-78.94698946989469,1.2180212645653086],[-78.93978939789397,1.228152728184611],[-78.9289892898929,1.2433499236135503],[-78.92538925389253,1.2349070372641364],[-78.91818918189182,1.2298413054544852],[-78.91098910989109,1.2315298827243737],[-78.90018900189001,1.236595614534025],[-78.8929889298893,1.2450385008834388],[-78.8929889298893,1.2517928099629643],[-78.8929889298893,1.2602356963123782],[-78.88938889388893,1.2703671599316806],[-78.87138871388713,1.2889415099003827],[-78.85338853388534,1.2923186644401454],[-78.81378813788137,1.277121469011206],[-78.82098820988209,1.2923186644401454],[-78.8389883898839,1.2956958189799224],[-78.86058860588605,1.299072973519685],[-78.87498874988749,1.3058272825992105],[-78.88218882188822,1.3193359007582757],[-78.87858878588786,1.3328445189173408],[-78.87138871388713,1.3446645598065174],[-78.83178831788318,1.3818132597439359],[-78.82818828188282,1.395321877903001],[-78.82818828188282,1.4105190733319404],[-78.83178831788318,1.4240276914910055],[-78.82818828188282,1.4341591551102937],[-78.81378813788137,1.4426020414597076],[-78.82098820988209,1.4594878141585355],[-78.83178831788318,1.4696192777778379],[-78.84618846188461,1.4780621641272518],[-78.85338853388534,1.4898822050164284],[-78.8569885698857,1.5050794004453678],[-78.85338853388534,1.5236537504140841],[-78.85338853388534,1.5439166776526747],[-78.86058860588605,1.559113873081614],[-78.86778867788678,1.5608024503515026],[-78.87858878588786,1.554048141271963],[-78.90018900189001,1.545605254922549],[-78.90738907389074,1.5557367185418514],[-78.91818918189182,1.5641796048912653],[-78.93258932589326,1.5658681821611538],[-78.93978939789397,1.5743110685105677],[-78.96138961389613,1.5878196866696186],[-78.97218972189721,1.5911968412093955],[-78.99738997389973,1.6080826139082092],[-79.01179011790117,1.6232798093371628],[-79.02259022590225,1.6384770047661021],[-79.01539015390154,1.65536277746493],[-79.00819008190082,1.6654942410842324],[-78.99378993789938,1.6705599728938694],[-78.97218972189721,1.6756257047035206],[-78.95418954189542,1.6925114774023484],[-78.93978939789397,1.7229058682602414],[-78.92538925389253,1.7414802182289435],[-78.90018900189001,1.7668088772771853],[-78.87858878588786,1.7904489590555528],[-78.86778867788678,1.8056461544844922],[-78.84618846188461,1.8208433499134316],[-78.79938799387993,1.8326633908026082],[-78.77778777787778,1.8275976589929712],[-78.75978759787597,1.830974813532734],[-78.73818738187381,1.8259090817230827],[-78.72018720187201,1.8174661953736688],[-78.69858698586985,1.8124004635640176],[-78.66258662586625,1.809023309024255],[-78.6409864098641,1.8056461544844922],[-78.61218612186121,1.800580422674841],[-78.60858608586085,1.7988918454049667],[-78.60138601386014,1.7904489590555528],[-78.59058590585906,1.7836946499760131],[-78.57978579785798,1.7803174954362504],[-78.57258572585725,1.7820060727061389],[-78.57258572585725,1.7955146908651898],[-78.5689856898569,1.8039575772146037],[-78.56538565385654,1.8191547726435573],[-78.55458554585546,1.8343519680724967],[-78.54738547385473,1.8596806271207384],[-78.55458554585546,1.8765663998195663],[-78.55458554585546,1.8917635952485057],[-78.5509855098551,1.8951407497882684],[-78.54738547385473,1.8985179043280453],[-78.54378543785438,1.9052722134075708],[-78.54378543785438,1.9154036770268732],[-78.54738547385473,1.9204694088365102],[-78.5509855098551,1.9170922542967475],[-78.55818558185581,1.9035836361376823],[-78.57258572585725,1.8968293270581569],[-78.59058590585906,1.8968293270581569],[-78.59778597785977,1.910337945217222],[-78.59778597785977,1.928912295185924],[-78.59418594185942,1.9491752224245147],[-78.59418594185942,1.9643724178534683],[-78.5869858698587,1.9880124996318216],[-78.5869858698587,1.9998325405209982],[-78.59058590585906,2.008275426870412],[-78.59778597785977,2.020095467759589],[-78.60858608586085,2.0285383541090027],[-78.61938619386194,2.0319155086487797],[-78.63018630186302,2.02516119956924],[-78.63738637386373,2.011652581410175],[-78.64818648186481,1.9812581905522961],[-78.65898658986589,1.9745038814727565],[-78.66618666186662,1.9829467678221704],[-78.66618666186662,2.003209695060761],[-78.66978669786697,2.030226931378891],[-78.68418684186841,2.065687054046421],[-78.69138691386914,2.112967217603142],[-78.70218702187022,2.1467387630007977],[-78.70218702187022,2.1906417720177416],[-78.69138691386914,2.214281853796109],[-78.68058680586806,2.241299090114225],[-78.67338673386733,2.266627749162467],[-78.64458644586446,2.2784477900516436],[-78.63738637386373,2.307153603639648],[-78.60858608586085,2.35949949900602],[-78.5869858698587,2.403402508022964],[-78.57258572585725,2.433796898880857],[-78.55818558185581,2.4489940943097963],[-78.56538565385654,2.4321083216109685],[-78.56538565385654,2.4152225489121406],[-78.56538565385654,2.3983367762133128],[-78.55818558185581,2.381451003514485],[-78.54378543785438,2.4270425898013173],[-78.53658536585365,2.474322753358038],[-78.52578525785258,2.496274257866517],[-78.50778507785077,2.491208526056866],[-78.48258482584825,2.521602916914759],[-78.45738457384573,2.5519973077726377],[-78.43218432184321,2.587457430440182],[-78.41058410584105,2.5959003167895958],[-78.39258392583926,2.6127860894884236],[-78.37098370983709,2.633049016727014],[-78.34578345783457,2.6482462121559536],[-78.3349833498335,2.6465576348860793],[-78.32418324183242,2.6246061303776003],[-78.31338313383134,2.59758889405947],[-78.2989829898299,2.570571657741354],[-78.27738277382774,2.5418658441533495],[-78.25578255782557,2.5418658441533495],[-78.26658266582666,2.575637389551005],[-78.27018270182701,2.6043432031390097],[-78.27018270182701,2.6347375939969027],[-78.2629826298263,2.649934789425842],[-78.24858248582485,2.663443407584907],[-78.23418234182341,2.6465576348860793],[-78.2269822698227,2.6161632440281863],[-78.23418234182341,2.592523162249833],[-78.22338223382233,2.5773259668208794],[-78.21618216182162,2.5553744623124146],[-78.20898208982089,2.5368001123436983],[-78.19458194581945,2.521602916914759],[-78.18378183781837,2.5148486078352192],[-78.14778147781477,2.4979628351363914],[-78.13338133381333,2.4928971033267544],[-78.12258122581225,2.4928971033267544],[-78.10818108181081,2.504717144215931],[-78.08658086580866,2.5097828760255823],[-78.08658086580866,2.5165371851051077],[-78.08658086580866,2.523291494184633],[-78.08658086580866,2.530045803264173],[-78.08658086580866,2.531734380534047],[-78.08298082980829,2.5368001123436983],[-78.08298082980829,2.5418658441533495],[-78.08298082980829,2.5773259668208794],[-78.08658086580866,2.592523162249833],[-78.09018090180902,2.6077203576787724],[-78.1009810098101,2.6246061303776003],[-78.10458104581045,2.641491903076428],[-78.09738097380973,2.6516233666957163],[-78.07218072180721,2.6465576348860793],[-78.0649806498065,2.6550005212354932],[-78.03978039780398,2.6550005212354932],[-78.02178021780217,2.6550005212354932],[-78.00378003780037,2.6550005212354932],[-77.99297992979929,2.663443407584907],[-77.96777967779677,2.676952025743958],[-77.94977949779498,2.675263448474084],[-77.93537935379354,2.6617548303150187],[-77.92457924579246,2.6431804803463166],[-77.91737917379173,2.633049016727014],[-77.90657906579065,2.6296718621872515],[-77.88857888578886,2.6347375939969027],[-77.89577895778957,2.619540398567949],[-77.90657906579065,2.59758889405947],[-77.90297902979029,2.5807031213606564],[-77.8849788497885,2.5722602350112425],[-77.87417874178742,2.570571657741354],[-77.85257852578525,2.565505925931703],[-77.83817838178382,2.565505925931703],[-77.8129781297813,2.570571657741354],[-77.80217802178021,2.5722602350112425],[-77.77697776977769,2.5773259668208794],[-77.7589775897759,2.5908345849799446],[-77.75177751777517,2.609408934948661],[-77.75177751777517,2.627983284917363],[-77.7589775897759,2.6398033258065396],[-77.76977769777697,2.6566890985053675],[-77.78417784177842,2.671886293934321],[-77.79857798577986,2.675263448474084],[-77.79857798577986,2.6820177575536093],[-77.77697776977769,2.6820177575536093],[-77.77697776977769,2.688772066633149],[-77.79137791377913,2.6921492211729117],[-77.79857798577986,2.698903530252437],[-77.79857798577986,2.707346416601851],[-77.79137791377913,2.7174778802211534],[-77.80217802178021,2.7191664574910277],[-77.80577805778057,2.7259207665705674],[-77.80577805778057,2.7343636529199813],[-77.79857798577986,2.7444951165392695],[-77.80577805778057,2.746183693809158],[-77.8129781297813,2.747872271079032],[-77.8129781297813,2.754626580158572],[-77.8129781297813,2.76475804377786],[-77.7949779497795,2.7580037346983346],[-77.78057780577805,2.763069466507986],[-77.76977769777697,2.773200930127274],[-77.75537755377553,2.778266661936925],[-77.74817748177482,2.7799552392068136],[-77.74097740977409,2.781643816476688],[-77.73377733777338,2.786709548286339],[-77.73737737377374,2.7917752800959903],[-77.74457744577445,2.7934638573658646],[-77.76257762577626,2.7850209710164506],[-77.76977769777697,2.7850209710164506],[-77.78417784177842,2.795152434635753],[-77.78057780577805,2.8019067437152785],[-77.76977769777697,2.808661052794818],[-77.76617766177661,2.8154153618743436],[-77.7589775897759,2.8137267846044693],[-77.74097740977409,2.8103496300646924],[-77.7229772297723,2.808661052794818],[-77.70857708577086,2.812038207334581],[-77.70497704977049,2.8052838982550554],[-77.69777697776978,2.7968410119056415],[-77.69777697776978,2.7917752800959903],[-77.69057690576905,2.7917752800959903],[-77.69777697776978,2.8137267846044693],[-77.73377733777338,2.822169670953869],[-77.7229772297723,2.8407440209225854],[-77.70857708577086,2.8491869072719993],[-77.69417694176941,2.8508754845418878],[-77.67977679776797,2.8542526390816505],[-77.6689766897669,2.8677612572407156],[-77.65817658176582,2.8626955254310644],[-77.65097650976509,2.8593183708913017],[-77.64377643776437,2.8542526390816505],[-77.64017640176401,2.8458097527322366],[-77.63657636576366,2.86944983451059],[-77.65817658176582,2.8762041435901153],[-77.6869768697687,2.8728269890503526],[-77.70857708577086,2.861006948161176],[-77.71577715777157,2.8762041435901153],[-77.71577715777157,2.8981556480985944],[-77.70857708577086,2.918418575337185],[-77.69777697776978,2.9285500389564874],[-77.68337683376834,2.926861461686599],[-77.67257672576726,2.918418575337185],[-77.66537665376653,2.909975688987771],[-77.65457654576545,2.901532802638357],[-77.64377643776437,2.8981556480985944],[-77.64017640176401,2.899844225368483],[-77.64017640176401,2.9065985344480083],[-77.6329763297633,2.9150414207974222],[-77.62577625776257,2.9251728844167246],[-77.62217622176222,2.926861461686599],[-77.61857618576185,2.93192719349625],[-77.62217622176222,2.9420586571155525],[-77.62217622176222,2.948812966195078],[-77.63657636576366,2.9521901207348407],[-77.64017640176401,2.9555672752746034],[-77.64017640176401,2.9606330070842546],[-77.63657636576366,2.9640101616240173],[-77.62937629376293,2.9775187797830824],[-77.62577625776257,2.979207357052971],[-77.62217622176222,2.9825845115927336],[-77.62577625776257,2.9910273979421476],[-77.6329763297633,2.9944045524819103],[-77.64377643776437,2.9944045524819103],[-77.65097650976509,2.9960931297517988],[-77.65457654576545,3.0045360161012127],[-77.65457654576545,2.997781707021673],[-77.65817658176582,2.9960931297517988],[-77.65817658176582,2.9944045524819103],[-77.65457654576545,2.9910273979421476],[-77.66537665376653,2.984273088862608],[-77.6761767617676,2.9825845115927336],[-77.6869768697687,2.9859616661324964],[-77.69057690576905,2.997781707021673],[-77.71217712177122,2.9741416252433197],[-77.7229772297723,2.9690758934336685],[-77.7229772297723,2.9825845115927336],[-77.68337683376834,3.0264875206096775],[-77.66177661776618,3.058570488737459],[-77.64737647376474,3.0737676841663983],[-77.57177571775718,3.137933620421947],[-77.55017550175502,3.1750823203593654],[-77.53937539375393,3.1970338248678303],[-77.5249752497525,3.2020995566774815],[-77.5069750697507,3.195345247597956],[-77.5069750697507,3.20378813394737],[-77.50337503375033,3.213919597566658],[-77.50337503375033,3.2240510611859605],[-77.49617496174962,3.2240510611859605],[-77.48537485374854,3.220673906646198],[-77.47817478174781,3.2274282157257232],[-77.48537485374854,3.2375596793450256],[-77.49977499774998,3.244313988424551],[-77.51777517775177,3.2392482566149],[-77.53937539375393,3.2375596793450256],[-77.54297542975429,3.2460025656944396],[-77.52857528575285,3.261199761123379],[-77.5069750697507,3.283151265631858],[-77.48897488974889,3.293282729251146],[-77.46377463774637,3.30172561560056],[-77.47817478174781,3.3135456564897368],[-77.47817478174781,3.3338085837283273],[-77.46737467374673,3.3439400473476297],[-77.45657456574565,3.3557600882368064],[-77.44577445774458,3.362514397316346],[-77.4349743497435,3.3608258200464576],[-77.42057420574206,3.3658915518561088],[-77.40617406174061,3.367580129125983],[-77.3989739897399,3.3692687063958715],[-77.3809738097381,3.3878430563645736],[-77.35937359373594,3.345628624617518],[-77.3449734497345,3.3287428519186903],[-77.31977319773198,3.3202999655692764],[-77.32337323373234,3.3304314291885646],[-77.35577355773557,3.3709572836657458],[-77.36657366573665,3.3861544790946994],[-77.36657366573665,3.4013516745236387],[-77.36297362973629,3.4182374472224666],[-77.35217352173521,3.4300574881116432],[-77.34857348573486,3.4216146017622293],[-77.34137341373413,3.411483138142941],[-77.33777337773377,3.40641740633329],[-77.33417334173342,3.411483138142941],[-77.33417334173342,3.419926024492355],[-77.3449734497345,3.4317460653815317],[-77.3449734497345,3.436811797191183],[-77.34137341373413,3.4570747244297735],[-77.33057330573305,3.4739604971286013],[-77.32697326973269,3.490846269827429],[-77.33417334173342,3.5111091970660198],[-77.32337323373234,3.512797774335894],[-77.31257312573125,3.5111091970660198],[-77.31617316173161,3.507732042526257],[-77.31617316173161,3.5009777334467174],[-77.31977319773198,3.495912001637066],[-77.31977319773198,3.4874691152876522],[-77.31617316173161,3.480714806208127],[-77.3089730897309,3.480714806208127],[-77.30177301773017,3.485780538017778],[-77.28377283772838,3.485780538017778],[-77.27657276572765,3.4824033834780153],[-77.26937269372694,3.4739604971286013],[-77.26577265772657,3.4705833425888386],[-77.26577265772657,3.480714806208127],[-77.26937269372694,3.4874691152876522],[-77.27657276572765,3.494223424367192],[-77.28377283772838,3.4976005789069546],[-77.28017280172801,3.499289156176843],[-77.27657276572765,3.502666310716606],[-77.2729727297273,3.50435488798648],[-77.29097290972909,3.5111091970660198],[-77.29817298172982,3.5111091970660198],[-77.29457294572946,3.521240660685308],[-77.29097290972909,3.5229292379551964],[-77.28737287372873,3.521240660685308],[-77.27657276572765,3.517863506145545],[-77.27657276572765,3.533060701574499],[-77.28737287372873,3.538126433384136],[-77.3089730897309,3.5364378561142615],[-77.32697326973269,3.5313721243046103],[-77.32337323373234,3.548257897003438],[-77.3089730897309,3.5499464742733124],[-77.29457294572946,3.5465693197335497],[-77.27657276572765,3.5465693197335497],[-77.28377283772838,3.548257897003438],[-77.29457294572946,3.556700783352852],[-77.29817298172982,3.5583893606227264],[-77.29457294572946,3.5617665151625033],[-77.29097290972909,3.5634550924323776],[-77.28737287372873,3.565143669702266],[-77.27657276572765,3.5668322469721403],[-77.28017280172801,3.5702094015119172],[-77.28377283772838,3.5803408651312054],[-77.26577265772657,3.5854065969408566],[-77.24417244172442,3.587095174210745],[-77.24417244172442,3.5803408651312054],[-77.24777247772478,3.5718979787817915],[-77.24057240572405,3.5718979787817915],[-77.20817208172082,3.5803408651312054],[-77.22257222572226,3.583718019670968],[-77.22617226172261,3.590472328750508],[-77.22257222572226,3.600603792369796],[-77.20457204572045,3.6208667196083866],[-77.19737197371974,3.6326867604975774],[-77.19017190171901,3.663081151355456],[-77.17937179371793,3.6546382650060423],[-77.16857168571686,3.652949687736168],[-77.16137161371613,3.6563268422759307],[-77.15057150571505,3.666458305895219],[-77.13977139771397,3.669835460434996],[-77.12537125371253,3.6732126149747586],[-77.11817118171182,3.67827834678441],[-77.13257132571326,3.6833440785940468],[-77.1469714697147,3.6816555013241725],[-77.16137161371613,3.6765897695145213],[-77.17217172171722,3.6765897695145213],[-77.17577175771757,3.693475542213349],[-77.16857168571686,3.6951641194832376],[-77.15057150571505,3.6985412740230004],[-77.13617136171361,3.7036070058326374],[-77.12537125371253,3.7171156239917025],[-77.14337143371434,3.715427046721828],[-77.18657186571865,3.7036070058326374],[-77.19737197371974,3.710361314912177],[-77.20457204572045,3.7255585103411164],[-77.20097200972009,3.7441328603098327],[-77.19377193771938,3.757641478468898],[-77.16857168571686,3.737378551230293],[-77.15057150571505,3.732312819420656],[-77.1289712897129,3.732312819420656],[-77.12537125371253,3.7340013966905303],[-77.1289712897129,3.737378551230293],[-77.13617136171361,3.7424442830399443],[-77.14337143371434,3.7441328603098327],[-77.15417154171541,3.7441328603098327],[-77.16497164971649,3.745821437579707],[-77.16857168571686,3.749198592119484],[-77.17577175771757,3.757641478468898],[-77.15777157771578,3.757641478468898],[-77.14337143371434,3.759330055738772],[-77.13257132571326,3.7660843648182976],[-77.12537125371253,3.7779044057074884],[-77.14337143371434,3.7880358693267766],[-77.15057150571505,3.7998559102159533],[-77.15057150571505,3.8133645283750184],[-77.13257132571326,3.8268731465340835],[-77.12537125371253,3.8218074147244323],[-77.12177121771218,3.816741682914781],[-77.11817118171182,3.8099873738352557],[-77.12177121771218,3.7998559102159533],[-77.10737107371074,3.8133645283750184],[-77.11097110971109,3.833627455613609],[-77.11457114571145,3.8522018055823253],[-77.06777067770678,3.8673990010112647],[-77.0569705697057,3.8842847737100925],[-77.04617046170462,3.902859123678809],[-77.03177031770318,3.9163677418378597],[-77.03177031770318,3.921433473647511],[-77.0929709297093,3.9096134327583343],[-77.0929709297093,3.9163677418378597],[-77.08577085770857,3.918056319107748],[-77.07857078570785,3.921433473647511],[-77.10377103771037,3.921433473647511],[-77.11457114571145,3.9231220509173994],[-77.12537125371253,3.929876359996925],[-77.12177121771218,3.885973350979981],[-77.17937179371793,3.8522018055823253],[-77.25137251372513,3.8403817646931486],[-77.29097290972909,3.860644691931739],[-77.29097290972909,3.869087578281153],[-77.27657276572765,3.877530464630567],[-77.2729727297273,3.885973350979981],[-77.27657276572765,3.8893505055197437],[-77.29097290972909,3.8977933918691576],[-77.30537305373053,3.9062362782185716],[-77.3089730897309,3.9062362782185716],[-77.31257312573125,3.907924855488446],[-77.31257312573125,3.9197448963776367],[-77.31257312573125,3.9281877827270364],[-77.3089730897309,3.934942091806576],[-77.30537305373053,3.94338497815599],[-77.30177301773017,3.9687136372042318],[-77.29457294572946,3.9771565235536457],[-77.28377283772838,3.983910832633171],[-77.26937269372694,3.9855994099030596],[-77.26217262172621,3.983910832633171],[-77.25857258572586,3.975467946283757],[-77.2729727297273,3.9636479053945806],[-77.22257222572226,3.9720907917439945],[-77.20817208172082,3.9771565235536457],[-77.20817208172082,3.983910832633171],[-77.24417244172442,3.9771565235536457],[-77.24057240572405,3.9906651417126966],[-77.23337233372334,4.000796605331999],[-77.20457204572045,4.032879573459766],[-77.19017190171901,4.066651118857422],[-77.20097200972009,4.066651118857422],[-77.20457204572045,4.06833969612731],[-77.20817208172082,4.071716850667073],[-77.20817208172082,4.080159737016487],[-77.22617226172261,4.076782582476724],[-77.23697236972369,4.085225468826138],[-77.24777247772478,4.098734086985189],[-77.26577265772657,4.1088655506044915],[-77.25857258572586,4.098734086985189],[-77.25857258572586,4.0869140460960125],[-77.25857258572586,4.076782582476724],[-77.26577265772657,4.066651118857422],[-77.2729727297273,4.071716850667073],[-77.28017280172801,4.073405427936962],[-77.29097290972909,4.071716850667073],[-77.29817298172982,4.066651118857422],[-77.29817298172982,4.0598968097778965],[-77.29457294572946,4.054831077968245],[-77.29457294572946,4.053142500698357],[-77.29817298172982,4.046388191618831],[-77.30177301773017,4.049765346158594],[-77.30537305373053,4.0514539234284825],[-77.3089730897309,4.0514539234284825],[-77.31977319773198,4.053142500698357],[-77.31617316173161,4.034568150729655],[-77.31977319773198,4.00586233714165],[-77.32697326973269,3.9822222553632827],[-77.33777337773377,3.970402214474106],[-77.34137341373413,3.9636479053945806],[-77.3449734497345,3.9366306690764503],[-77.3449734497345,3.929876359996925],[-77.36297362973629,3.9281877827270364],[-77.37377373773738,3.9366306690764503],[-77.3809738097381,3.9501392872355154],[-77.37377373773738,3.9636479053945806],[-77.42417424174242,4.004173759871762],[-77.43137431374313,4.012616646221176],[-77.4349743497435,4.0295024189200035],[-77.43137431374313,4.044699614348943],[-77.40977409774098,4.046388191618831],[-77.42057420574206,4.0598968097778965],[-77.42417424174242,4.066651118857422],[-77.43137431374313,4.093668355175552],[-77.4349743497435,4.124062746033431],[-77.4349743497435,4.154457136891324],[-77.43137431374313,4.169654332320263],[-77.42777427774277,4.179785795939566],[-77.41337413374133,4.189917259558868],[-77.40257402574025,4.193294414098631],[-77.38817388173881,4.191605836828742],[-77.37737377373773,4.193294414098631],[-77.37377373773738,4.206803032257682],[-77.37017370173702,4.213557341337221],[-77.35937359373594,4.220311650416747],[-77.34857348573486,4.225377382226398],[-77.33777337773377,4.220311650416747],[-77.31977319773198,4.200048723178156],[-77.31257312573125,4.198360145908282],[-77.29817298172982,4.203425877717919],[-77.28017280172801,4.213557341337221],[-77.26577265772657,4.228754536766161],[-77.23697236972369,4.265903236703579],[-77.31977319773198,4.265903236703579],[-77.33777337773377,4.269280391243342],[-77.34857348573486,4.28616616394217],[-77.38817388173881,4.346954945657956],[-77.35937359373594,4.387480800135137],[-77.35217352173521,4.402677995564076],[-77.3449734497345,4.444892427311146],[-77.33417334173342,4.4600896227400995],[-77.31257312573125,4.471909663629276],[-77.31257312573125,4.478663972708802],[-77.33417334173342,4.471909663629276],[-77.33057330573305,4.498926899947392],[-77.31977319773198,4.546207063504113],[-77.31977319773198,4.68298182236461],[-77.31617316173161,4.674538936015196],[-77.31257312573125,4.667784626935671],[-77.30537305373053,4.661030317856131],[-77.29817298172982,4.65596458604648],[-77.29457294572946,4.666096049665782],[-77.29097290972909,4.6812932450947216],[-77.29457294572946,4.696490440523675],[-77.31977319773198,4.709999058682726],[-77.32337323373234,4.723507676841791],[-77.32337323373234,4.738704872270745],[-77.32697326973269,4.752213490429796],[-77.30177301773017,4.748836335890033],[-77.28737287372873,4.737016295000856],[-77.2729727297273,4.7201305223020285],[-77.26577265772657,4.703244749603201],[-77.25857258572586,4.703244749603201],[-77.26937269372694,4.735327717730968],[-77.31257312573125,4.78767361309734],[-77.31977319773198,4.8214451584949956],[-77.32337323373234,4.818068003955219],[-77.33417334173342,4.814690849415456],[-77.34137341373413,4.813002272145582],[-77.34857348573486,4.853528126622763],[-77.35937359373594,4.981859999133846],[-77.36657366573665,4.998745771832674],[-77.37377373773738,5.149029148852236],[-77.36657366573665,5.182800694249892],[-77.35937359373594,5.214883662377659],[-77.3449734497345,5.245278053235552],[-77.35937359373594,5.253720939584966],[-77.36297362973629,5.275672444093431],[-77.35937359373594,5.29762394860191],[-77.36297362973629,5.307755412221212],[-77.37377373773738,5.316198298570626],[-77.37737377373773,5.334772648539328],[-77.3809738097381,5.375298503016509],[-77.39537395373954,5.370232771206872],[-77.40617406174061,5.375298503016509],[-77.40977409774098,5.385429966635812],[-77.40977409774098,5.4023157393346395],[-77.40257402574025,5.4023157393346395],[-77.39537395373954,5.398938584794877],[-77.39177391773917,5.395561430255114],[-77.38817388173881,5.397250007524988],[-77.3809738097381,5.4023157393346395],[-77.39177391773917,5.409070048414165],[-77.39537395373954,5.419201512033467],[-77.40257402574025,5.44959590289136],[-77.40257402574025,5.452973057431123],[-77.40257402574025,5.458038789240774],[-77.40977409774098,5.4647930983203],[-77.41337413374133,5.466481675590188],[-77.42777427774277,5.468170252860062],[-77.4349743497435,5.471547407399825],[-77.44577445774458,5.4816788710191275],[-77.45297452974529,5.491810334638416],[-77.46377463774637,5.50025322098783],[-77.47817478174781,5.505318952797481],[-77.49257492574925,5.505318952797481],[-77.49977499774998,5.501941798257718],[-77.5069750697507,5.495187489178193],[-77.51057510575106,5.48505602555889],[-77.52137521375214,5.495187489178193],[-77.53577535775358,5.495187489178193],[-77.54657546575466,5.491810334638416],[-77.55377553775537,5.491810334638416],[-77.5609756097561,5.503630375527607],[-77.55737557375573,5.5120732618770205],[-77.54657546575466,5.5171389936866575],[-77.53577535775358,5.520516148226434],[-77.5249752497525,5.530647611845723],[-77.50337503375033,5.579616352672318],[-77.49257492574925,5.594813548101271],[-77.48177481774817,5.598190702641034],[-77.46017460174602,5.598190702641034],[-77.44937449374494,5.601567857180797],[-77.43857438574385,5.610010743530211],[-77.42777427774277,5.618453629879625],[-77.42057420574206,5.62520793895915],[-77.40617406174061,5.628585093498927],[-77.38817388173881,5.623519361689276],[-77.37377373773738,5.613387898069973],[-77.35577355773557,5.608322166260322],[-77.33417334173342,5.615076475339862],[-77.32697326973269,5.621830784419387],[-77.32337323373234,5.6268965162290385],[-77.32337323373234,5.633650825308564],[-77.31977319773198,5.642093711657978],[-77.31617316173161,5.647159443467629],[-77.31977319773198,5.658979484356806],[-77.31977319773198,5.6623566388965685],[-77.31617316173161,5.664045216166457],[-77.3089730897309,5.6623566388965685],[-77.30177301773017,5.6623566388965685],[-77.29817298172982,5.665733793436345],[-77.29457294572946,5.677553834325522],[-77.28377283772838,5.685996720674936],[-77.26937269372694,5.6927510297544615],[-77.26217262172621,5.701193916103875],[-77.2549725497255,5.711325379723178],[-77.24777247772478,5.723145420612354],[-77.24417244172442,5.734965461501531],[-77.24417244172442,5.7450969251208335],[-77.24777247772478,5.787311356867889],[-77.26217262172621,5.822771479535433],[-77.30177301773017,5.888625993060856],[-77.30537305373053,5.892003147600619],[-77.31257312573125,5.89706887941027],[-77.31257312573125,5.919020383918749],[-77.35217352173521,6.025400751921353],[-77.35937359373594,6.025400751921353],[-77.35937359373594,5.998383515603237],[-77.36657366573665,5.998383515603237],[-77.38457384573846,6.042286524620181],[-77.40977409774098,6.082812379097362],[-77.4709747097471,6.157109778972199],[-77.48177481774817,6.173995551671027],[-77.48537485374854,6.18919274709998],[-77.48177481774817,6.228030024307273],[-77.47817478174781,6.263490146974817],[-77.47457474574746,6.282064496943519],[-77.48177481774817,6.29388453783271],[-77.47817478174781,6.300638846912236],[-77.43857438574385,6.270244456054343],[-77.41337413374133,6.239850065196464],[-77.40617406174061,6.246604374275989],[-77.39537395373954,6.263490146974817],[-77.3809738097381,6.300638846912236],[-77.37737377373773,6.319213196880938],[-77.37737377373773,6.336098969579766],[-77.37737377373773,6.351296165008719],[-77.3809738097381,6.363116205897896],[-77.3989739897399,6.388444864946138],[-77.39537395373954,6.395199174025663],[-77.37377373773738,6.403642060375077],[-77.37017370173702,6.398576328565426],[-77.36657366573665,6.395199174025663],[-77.36297362973629,6.393510596755789],[-77.35937359373594,6.390133442216012],[-77.35577355773557,6.4053306376449655],[-77.35937359373594,6.418839255804031],[-77.37017370173702,6.430659296693207],[-77.3809738097381,6.437413605772733],[-77.3809738097381,6.444167914852258],[-77.36657366573665,6.4694965739005],[-77.35937359373594,6.486382346599328],[-77.35937359373594,6.506645273837918],[-77.34857348573486,6.521842469266872],[-77.34137341373413,6.543793973775337],[-77.3449734497345,6.565745478283816],[-77.35217352173521,6.580942673712769],[-77.38817388173881,6.609648487300774],[-77.39537395373954,6.616402796380299],[-77.3989739897399,6.623157105459825],[-77.40617406174061,6.6299114145393645],[-77.41337413374133,6.63666572361889],[-77.41337413374133,6.646797187238192],[-77.40977409774098,6.668748691746657],[-77.40977409774098,6.680568732635848],[-77.40977409774098,6.694077350794899],[-77.41697416974169,6.69914308260455],[-77.42777427774277,6.700831659874439],[-77.46377463774637,6.721094587113029],[-77.48537485374854,6.7143402780334895],[-77.5069750697507,6.700831659874439],[-77.51777517775177,6.683945887175611],[-77.51417514175141,6.677191578096071],[-77.51057510575106,6.670437269016546],[-77.51777517775177,6.668748691746657],[-77.5249752497525,6.667060114476783],[-77.53217532175321,6.66368295993702],[-77.53937539375393,6.66368295993702],[-77.53937539375393,6.689011618985262],[-77.53577535775358,6.700831659874439],[-77.53217532175321,6.712651700763615],[-77.57177571775718,6.800457718797517],[-77.59337593375933,6.827474955115633],[-77.62217622176222,6.856180768703638],[-77.63657636576366,6.864623655053052],[-77.66177661776618,6.871377964132591],[-77.66537665376653,6.876443695942228],[-77.67257672576726,6.879820850482005],[-77.68337683376834,6.876443695942228],[-77.6869768697687,6.869689386862703],[-77.6869768697687,6.861246500513289],[-77.6869768697687,6.8544921914337635],[-77.69777697776978,6.849426459624112],[-77.70137701377013,6.918658127689298],[-77.69057690576905,6.9473639412773025],[-77.66537665376653,6.959183982166493],[-77.65097650976509,6.976069754865321],[-77.66537665376653,7.014907032072614],[-77.69777697776978,7.074007236518511],[-77.70137701377013,7.074007236518511],[-77.69777697776978,7.062187195629335],[-77.69417694176941,7.058810041089572],[-77.69057690576905,7.055432886549795],[-77.69057690576905,7.046990000200381],[-77.69777697776978,7.046990000200381],[-77.71217712177122,7.070630081978749],[-77.78777787777878,7.148304636393348],[-77.79857798577986,7.155058945472874],[-77.81657816578165,7.156747522742762],[-77.82737827378273,7.163501831822288],[-77.83097830978309,7.1753218727114785],[-77.83817838178382,7.187141913600655],[-77.85257852578525,7.192207645410306],[-77.84537845378453,7.197273377219943],[-77.85977859778598,7.2023391090295945],[-77.87057870578705,7.210781995379008],[-77.88857888578886,7.2327334998874875],[-77.89577895778957,7.234422077157362],[-77.89577895778957,7.23611065442725],[-77.91737917379173,7.241176386236901],[-77.94617946179461,7.268193622555017],[-77.98937989379894,7.3205395179213895],[-78.00738007380073,7.332359558810566],[-78.01458014580146,7.34080244515998],[-78.01818018180181,7.352622486049157],[-78.01458014580146,7.362753949668459],[-78.0109801098011,7.372885413287747],[-78.0109801098011,7.38301687690705],[-78.01458014580146,7.393148340526338],[-78.02178021780217,7.398214072335989],[-78.02178021780217,7.396525495066101],[-78.02538025380254,7.391459763256464],[-78.02898028980289,7.389771185986575],[-78.03618036180362,7.393148340526338],[-78.03978039780398,7.3999026496058775],[-78.03618036180362,7.4049683814155145],[-78.03258032580325,7.40327980414564],[-78.04338043380433,7.421854154114342],[-78.05058050580506,7.425231308654105],[-78.05778057780577,7.41847699957458],[-78.0649806498065,7.41847699957458],[-78.09018090180902,7.44549423589271],[-78.10458104581045,7.459002854051761],[-78.11898118981189,7.4657571631313004],[-78.11898118981189,7.469134317671063],[-78.12258122581225,7.479265781290351],[-78.12618126181262,7.489397244909654],[-78.1369813698137,7.4927743994494165],[-78.14418144181441,7.497840131259068],[-78.14778147781477,7.50797159487837],[-78.15498154981549,7.528234522116961],[-78.16218162181622,7.528234522116961],[-78.16578165781658,7.513037326688007],[-78.16938169381693,7.5231687903073095],[-78.16938169381693,7.556940335704965],[-78.1729817298173,7.575514685673667],[-78.18378183781837,7.578891840213444],[-78.19458194581945,7.5721375311339045],[-78.19818198181981,7.553563181165202],[-78.20178201782018,7.567071799324253],[-78.20178201782018,7.575514685673667],[-78.19818198181981,7.58564614929297],[-78.19818198181981,7.595777612912258],[-78.20178201782018,7.60590907653156],[-78.20538205382053,7.612663385611086],[-78.21618216182162,7.622794849230388],[-78.23778237782378,7.649812085548504],[-78.25218252182522,7.661632126437695],[-78.27018270182701,7.663320703707569],[-78.27018270182701,7.675140744596746],[-78.27378273782737,7.68358363094616],[-78.28098280982809,7.688649362755811],[-78.29178291782918,7.692026517295574],[-78.28098280982809,7.71060086726429],[-78.27738277382774,7.724109485423355],[-78.27738277382774,7.737618103582406],[-78.28458284582845,7.754503876281234],[-78.3169831698317,7.800095462568066],[-78.32058320583205,7.811915503457243],[-78.32778327783278,7.843998471585024],[-78.34938349383494,7.87101570790314],[-78.37458374583746,7.894655789681508],[-78.39618396183961,7.916607294189973],[-78.40698406984069,7.948690262317754],[-78.41418414184142,7.9807732304455214],[-78.41778417784178,7.992593271334698],[-78.41418414184142,8.004413312223875],[-78.41418414184142,8.012856198573289],[-78.43218432184321,8.046627743970944],[-78.43578435784357,8.058447784860121],[-78.43218432184321,8.077022134828837],[-78.41778417784178,8.09559648479754],[-78.40698406984069,8.10235079387708],[-78.39618396183961,8.070267825749298],[-78.38178381783817,8.063513516669772],[-78.36378363783638,8.06520209393966],[-78.3529835298353,8.075333557558949],[-78.32418324183242,8.06013636213001],[-78.28818288182882,8.0803992893686],[-78.25218252182522,8.117547989306019],[-78.23778237782378,8.154696689243437],[-78.23778237782378,8.174959616482028],[-78.24498244982449,8.186779657371204],[-78.25218252182522,8.195222543720618],[-78.26658266582666,8.20535400733992],[-78.29538295382953,8.239125552737576],[-78.30618306183061,8.245879861817102],[-78.30618306183061,8.254322748166516],[-78.27738277382774,8.250945593626753],[-78.27018270182701,8.252634170896641],[-78.25578255782557,8.259388479976167],[-78.25578255782557,8.26783136632558],[-78.2629826298263,8.269519943595455],[-78.26658266582666,8.272897098135232],[-78.26658266582666,8.276274252674995],[-78.27018270182701,8.281339984484646],[-78.2629826298263,8.284717139024409],[-78.25578255782557,8.294848602643697],[-78.24858248582485,8.28978287083406],[-78.23778237782378,8.277962829944869],[-78.23058230582305,8.274585675405106],[-78.22338223382233,8.271208520865343],[-78.21258212582126,8.272897098135232],[-78.19818198181981,8.274585675405106],[-78.19818198181981,8.277962829944869],[-78.18738187381874,8.294848602643697],[-78.18378183781837,8.298225757183474],[-78.18378183781837,8.32524299350159],[-78.18378183781837,8.335374457120892],[-78.18018180181801,8.337063034390766],[-78.16218162181622,8.355637384359483],[-78.15858158581585,8.36576884797877],[-78.15498154981549,8.374211734328185],[-78.15498154981549,8.394474661566775],[-78.15138151381514,8.399540393376427],[-78.14058140581406,8.404606125186078],[-78.13338133381333,8.404606125186078],[-78.12978129781297,8.401228970646315],[-78.12258122581225,8.364080270708897],[-78.12258122581225,8.355637384359483],[-78.11178111781118,8.347194498010069],[-78.09378093780937,8.338751611660655],[-78.07578075780758,8.331997302581115],[-78.06138061380614,8.328620148041352],[-78.05058050580506,8.321865838961827],[-78.04338043380433,8.306668643532888],[-78.02538025380254,8.259388479976167],[-78.01458014580146,8.245879861817102],[-78.00378003780037,8.237436975467688],[-77.98577985779858,8.234059820927925],[-77.98217982179821,8.235748398197813],[-77.97137971379713,8.239125552737576],[-77.96057960579606,8.237436975467688],[-77.95337953379533,8.223928357308623],[-77.94617946179461,8.218862625498986],[-77.9389793897939,8.213796893689334],[-77.92817928179281,8.212108316419446],[-77.91377913779138,8.212108316419446],[-77.91377913779138,8.218862625498986],[-77.93177931779317,8.222239780038748],[-77.94617946179461,8.230682666388162],[-77.95697956979569,8.24081413000745],[-77.96417964179642,8.254322748166516],[-77.91377913779138,8.244191284547227],[-77.8849788497885,8.234059820927925],[-77.87057870578705,8.215485470959209],[-77.84537845378453,8.201976852800158],[-77.83817838178382,8.195222543720618],[-77.83817838178382,8.180025348291679],[-77.83457834578346,8.169893884672376],[-77.83097830978309,8.16313957559285],[-77.82017820178201,8.1580738437832],[-77.80937809378094,8.16313957559285],[-77.79857798577986,8.1580738437832],[-77.78777787777878,8.144565225624135],[-77.78417784177842,8.127679452925321],[-77.77697776977769,8.11585941203613],[-77.76257762577626,8.112482257496367],[-77.74817748177482,8.11585941203613],[-77.73737737377374,8.131056607465084],[-77.76617766177661,8.129368030195195],[-77.80217802178021,8.174959616482028],[-77.82017820178201,8.171582461942265],[-77.87057870578705,8.235748398197813],[-77.88137881378813,8.242502707277339],[-77.89577895778957,8.250945593626753],[-77.98577985779858,8.26783136632558],[-78.00738007380073,8.276274252674995],[-78.02178021780217,8.28978287083406],[-78.03618036180362,8.31004579807265],[-78.03978039780398,8.331997302581115],[-78.06138061380614,8.375900311598073],[-78.06858068580685,8.40291754791619],[-78.05058050580506,8.418114743345143],[-78.06138061380614,8.424869052424668],[-78.07578075780758,8.43500051604397],[-78.08658086580866,8.446820556933147],[-78.09378093780937,8.458640597822324],[-78.09738097380973,8.475526370521152],[-78.09378093780937,8.48565783414044],[-78.09018090180902,8.49241214321998],[-78.08658086580866,8.500855029569394],[-78.08658086580866,8.51267507045857],[-78.09378093780937,8.516052224998333],[-78.10458104581045,8.517740802268222],[-78.11538115381154,8.52787226588751],[-78.11898118981189,8.538003729506812],[-78.11898118981189,8.5481351931261],[-78.12258122581225,8.556578079475514],[-78.13338133381333,8.561643811285165],[-78.12978129781297,8.553200924935751],[-78.12978129781297,8.52787226588751],[-78.12618126181262,8.517740802268222],[-78.11178111781118,8.509297915918808],[-78.10458104581045,8.507609338648919],[-78.10458104581045,8.504232184109156],[-78.10818108181081,8.47214921598139],[-78.10458104581045,8.463706329631975],[-78.09018090180902,8.431623361504194],[-78.09018090180902,8.419803320615017],[-78.09378093780937,8.411360434265603],[-78.1009810098101,8.411360434265603],[-78.11898118981189,8.441754825123496],[-78.12978129781297,8.458640597822324],[-78.14058140581406,8.46539490690185],[-78.15858158581585,8.46539490690185],[-78.16938169381693,8.456952020552436],[-78.18018180181801,8.441754825123496],[-78.18378183781837,8.421491897884906],[-78.18738187381874,8.406294702455966],[-78.20538205382053,8.394474661566775],[-78.22338223382233,8.386031775217361],[-78.24138241382414,8.384343197947487],[-78.24858248582485,8.38772035248725],[-78.25218252182522,8.394474661566775],[-78.25218252182522,8.404606125186078],[-78.25218252182522,8.411360434265603],[-78.24498244982449,8.418114743345143],[-78.21618216182162,8.431623361504194],[-78.21258212582126,8.428246206964431],[-78.20898208982089,8.426557629694557],[-78.20178201782018,8.424869052424668],[-78.20178201782018,8.456952020552436],[-78.20538205382053,8.487346411410329],[-78.22338223382233,8.541380884046575],[-78.23058230582305,8.541380884046575],[-78.23778237782378,8.52787226588751],[-78.23418234182341,8.517740802268222],[-78.22338223382233,8.510986493188682],[-78.21618216182162,8.500855029569394],[-78.21618216182162,8.482280679600677],[-78.2269822698227,8.468772061441626],[-78.23058230582305,8.456952020552436],[-78.22338223382233,8.445131979663259],[-78.22338223382233,8.438377670583733],[-78.2269822698227,8.436689093313845],[-78.23058230582305,8.43500051604397],[-78.23778237782378,8.431623361504194],[-78.24138241382414,8.440066247853608],[-78.24858248582485,8.445131979663259],[-78.25218252182522,8.448509134203022],[-78.25578255782557,8.451886288742799],[-78.25938259382593,8.460329175092212],[-78.25938259382593,8.462017752362087],[-78.25578255782557,8.462017752362087],[-78.25218252182522,8.46539490690185],[-78.24138241382414,8.48565783414044],[-78.24138241382414,8.494100720489854],[-78.25578255782557,8.500855029569394],[-78.25218252182522,8.487346411410329],[-78.25578255782557,8.482280679600677],[-78.25938259382593,8.478903525060915],[-78.26658266582666,8.47214921598139],[-78.27738277382774,8.445131979663259],[-78.29538295382953,8.443443402393385],[-78.30258302583026,8.453574866012673],[-78.31338313383134,8.487346411410329],[-78.32058320583205,8.478903525060915],[-78.32058320583205,8.467083484171738],[-78.3349833498335,8.446820556933147],[-78.3529835298353,8.428246206964431],[-78.36738367383674,8.424869052424668],[-78.37818378183782,8.441754825123496],[-78.38538385383853,8.500855029569394],[-78.39618396183961,8.521117956807984],[-78.3889838898389,8.52787226588751],[-78.3889838898389,8.53462657496705],[-78.39618396183961,8.53462657496705],[-78.39618396183961,8.52787226588751],[-78.40338403384034,8.52787226588751],[-78.40338403384034,8.5481351931261],[-78.40698406984069,8.5481351931261],[-78.41058410584105,8.522806534077873],[-78.39258392583926,8.473837793251263],[-78.38538385383853,8.426557629694557],[-78.36378363783638,8.411360434265603],[-78.36018360183601,8.394474661566775],[-78.3889838898389,8.335374457120892],[-78.39258392583926,8.343817343470306],[-78.39978399783998,8.348883075279943],[-78.40698406984069,8.35226022981972],[-78.41058410584105,8.35226022981972],[-78.41418414184142,8.355637384359483],[-78.43938439384394,8.384343197947487],[-78.45018450184502,8.391097507027013],[-78.4429844298443,8.40291754791619],[-78.44658446584465,8.421491897884906],[-78.45018450184502,8.438377670583733],[-78.45738457384573,8.451886288742799],[-78.46458464584646,8.446820556933147],[-78.46818468184682,8.440066247853608],[-78.46818468184682,8.433311938774082],[-78.47178471784717,8.424869052424668],[-78.47538475384754,8.433311938774082],[-78.48618486184861,8.448509134203022],[-78.48978489784898,8.458640597822324],[-78.48978489784898,8.473837793251263],[-78.48258482584825,8.507609338648919],[-78.48978489784898,8.524495111347747],[-78.51858518585186,8.563332388555054],[-78.53298532985329,8.57515242944423],[-78.5149851498515,8.57515242944423],[-78.50418504185042,8.571775274904468],[-78.49698496984969,8.57008669763458],[-78.48258482584825,8.57515242944423],[-78.50058500585006,8.588661047603296],[-78.50418504185042,8.598792511222584],[-78.50418504185042,8.634252633890128],[-78.56538565385654,8.651138406588956],[-78.56178561785617,8.666335602017895],[-78.55818558185581,8.671401333827546],[-78.56538565385654,8.671401333827546],[-78.5689856898569,8.669712756557658],[-78.57258572585725,8.664647024748007],[-78.57978579785798,8.669712756557658],[-78.59058590585906,8.669712756557658],[-78.59778597785977,8.666335602017895],[-78.6049860498605,8.664647024748007],[-78.61218612186121,8.669712756557658],[-78.61938619386194,8.681532797446835],[-78.62658626586266,8.705172879225202],[-78.61218612186121,8.716992920114379],[-78.60858608586085,8.73556727008308],[-78.60858608586085,8.755830197321671],[-78.61578615786158,8.774404547290388],[-78.62298622986229,8.774404547290388],[-78.62298622986229,8.759207351861448],[-78.61938619386194,8.73725584735297],[-78.61938619386194,8.723747229193904],[-78.63378633786337,8.725435806463793],[-78.65178651786518,8.708550033764965],[-78.68058680586806,8.747387310972272],[-78.70938709387093,8.747387310972272],[-78.7309873098731,8.759207351861448],[-78.74898748987489,8.801421783608518],[-78.76338763387633,8.814930401767569],[-78.76338763387633,8.821684710847109],[-78.75618756187562,8.821684710847109],[-78.75618756187562,8.828439019926634],[-78.77418774187741,8.833504751736285],[-78.78138781387814,8.843636215355573],[-78.78858788587885,8.853767678974876],[-78.79938799387993,8.863899142594178],[-78.79218792187922,8.84701336989535],[-78.78858788587885,8.833504751736285],[-78.79578795787957,8.823373288116983],[-78.81378813788137,8.814930401767569],[-78.82818828188282,8.813241824497695],[-78.8389883898839,8.816618979037457],[-78.8569885698857,8.84025906081581],[-78.86418864188641,8.855456256244764],[-78.86778867788678,8.875719183483355],[-78.87498874988749,8.890916378912294],[-79.00459004590046,8.96014804697748],[-79.05859058590586,8.970279510596782],[-79.08379083790838,8.988853860565484],[-79.08739087390873,8.993919592375136],[-79.08739087390873,9.004051055994438],[-79.08739087390873,9.00911678780409],[-79.08019080190802,9.015871096883615],[-79.08019080190802,9.024313983233029],[-79.08019080190802,9.04457691047162],[-79.08019080190802,9.063151260440335],[-79.08739087390873,9.073282724059624],[-79.1089910899109,9.074971301329512],[-79.1089910899109,9.083414187678926],[-79.08739087390873,9.0851027649488],[-79.06939069390694,9.093545651298214],[-79.05859058590586,9.10705426945728],[-79.05139051390513,9.123940042156107],[-79.04779047790477,9.123940042156107],[-79.03699036990369,9.110431423997042],[-79.02619026190261,9.110431423997042],[-79.01179011790117,9.123940042156107],[-78.99018990189902,9.130694351235633],[-78.9829898298983,9.135760083045284],[-78.97578975789757,9.145891546664586],[-78.9829898298983,9.142514392124824],[-78.99738997389973,9.140825814854935],[-79.00459004590046,9.139137237585047],[-79.01179011790117,9.132382928505521],[-79.02619026190261,9.118874310346456],[-79.02979029790298,9.117185733076582],[-79.03699036990369,9.118874310346456],[-79.04059040590406,9.125628619425996],[-79.04419044190442,9.130694351235633],[-79.05139051390513,9.130694351235633],[-79.05859058590586,9.125628619425996],[-79.06939069390694,9.10705426945728],[-79.07659076590765,9.103677114917517],[-79.08019080190802,9.101988537647628],[-79.08379083790838,9.096922805837977],[-79.08739087390873,9.09185707402834],[-79.09819098190981,9.090168496758452],[-79.10539105391054,9.090168496758452],[-79.11259112591125,9.086791342218689],[-79.11979119791198,9.083414187678926],[-79.11979119791198,9.074971301329512],[-79.11619116191162,9.068216992249972],[-79.10179101791017,9.06483983771021],[-79.0909909099091,9.056396951360796],[-79.08739087390873,9.036134024122205],[-79.0909909099091,9.02262540596314],[-79.10179101791017,9.005739633264312],[-79.11619116191162,8.993919592375136],[-79.13059130591306,8.997296746914898],[-79.13779137791377,9.000673901454675],[-79.16299162991629,9.0074282105342],[-79.16299162991629,9.012493942343852],[-79.16659166591666,9.019248251423377],[-79.17379173791737,9.02262540596314],[-79.17739177391773,9.010805365073963],[-79.19179191791918,9.005739633264312],[-79.27459274592745,9.019248251423377],[-79.29979299792997,9.014182519613726],[-79.3069930699307,9.014182519613726],[-79.3069930699307,9.020936828693266],[-79.32859328593285,9.014182519613726],[-79.38619386193862,9.019248251423377],[-79.40779407794078,9.0074282105342],[-79.41859418594186,9.014182519613726],[-79.42579425794257,9.014182519613726],[-79.43659436594366,9.00911678780409],[-79.45459454594545,9.005739633264312],[-79.46539465394653,9.00236247872455],[-79.47619476194761,9.000673901454675],[-79.48339483394834,8.998985324184787],[-79.48339483394834,8.993919592375136],[-79.48339483394834,8.988853860565484],[-79.4869948699487,8.98716528329561],[-79.49059490594905,8.983788128755847],[-79.51939519395194,8.96690235605702],[-79.5229952299523,8.956770892437717],[-79.51939519395194,8.948328006088303],[-79.5229952299523,8.941573697008778],[-79.53379533795338,8.93988511973889],[-79.51579515795157,8.90949072888101],[-79.51219512195122,8.89767068799182],[-79.52659526595265,8.907802151611122],[-79.54099540995409,8.922999347040061],[-79.55539555395553,8.941573697008778],[-79.5589955899559,8.96014804697748],[-79.56619566195661,8.96014804697748],[-79.56619566195661,8.953393737897954],[-79.56259562595626,8.950016583358192],[-79.5589955899559,8.94495085154854],[-79.5589955899559,8.93988511973889],[-79.56619566195661,8.93988511973889],[-79.5589955899559,8.914556460690648],[-79.56259562595626,8.892604956182183],[-79.57699576995769,8.88247349256288],[-79.60219602196021,8.890916378912294],[-79.64539645396454,8.88247349256288],[-79.65979659796598,8.875719183483355],[-79.65619656196561,8.863899142594178],[-79.65619656196561,8.857144833514639],[-79.6669966699667,8.860521988054401],[-79.67419674196742,8.865587719864052],[-79.68139681396814,8.867276297133941],[-79.69219692196921,8.863899142594178],[-79.69219692196921,8.867276297133941],[-79.69579695796958,8.868964874403815],[-79.70299702997029,8.870653451673704],[-79.70299702997029,8.863899142594178],[-79.69939699396994,8.860521988054401],[-79.69939699396994,8.855456256244764],[-79.69579695796958,8.850390524435113],[-79.71379713797138,8.852079101704987],[-79.73179731797318,8.843636215355573],[-79.74259742597425,8.830127597196523],[-79.75339753397533,8.814930401767569],[-79.7569975699757,8.796356051798867],[-79.75339753397533,8.73725584735297],[-79.74979749797498,8.730501538273444],[-79.74619746197462,8.728812961003555],[-79.73899738997389,8.725435806463793],[-79.73899738997389,8.72205865192403],[-79.73899738997389,8.716992920114379],[-79.74259742597425,8.711927188304728],[-79.74619746197462,8.705172879225202],[-79.74619746197462,8.698418570145662],[-79.74979749797498,8.689975683796249],[-79.7569975699757,8.681532797446835],[-79.76059760597606,8.67477848836731],[-79.76419764197641,8.671401333827546],[-79.77859778597785,8.666335602017895],[-79.78939789397893,8.662958447478132],[-79.7929979299793,8.65958129293837],[-79.78939789397893,8.654515561128719],[-79.7929979299793,8.651138406588956],[-79.8109981099811,8.646072674779305],[-79.82539825398254,8.63931836569978],[-79.81459814598145,8.625809747540714],[-79.77859778597785,8.619055438461174],[-79.74619746197462,8.630875479350365],[-79.71739717397173,8.646072674779305],[-79.70659706597066,8.65282698385883],[-79.70299702997029,8.657892715668481],[-79.69579695796958,8.657892715668481],[-79.69579695796958,8.649449829319067],[-79.69939699396994,8.641006942969653],[-79.73539735397354,8.615678283921412],[-79.7749977499775,8.580218161253882],[-79.7929979299793,8.571775274904468],[-79.82539825398254,8.561643811285165],[-79.86499864998649,8.553200924935751],[-79.87219872198722,8.543069461316463],[-79.86859868598685,8.531249420427287],[-79.87219872198722,8.524495111347747],[-79.87579875798758,8.521117956807984],[-79.87939879398793,8.519429379538096],[-79.89019890198901,8.516052224998333],[-79.89379893798937,8.514363647728459],[-79.91179911799118,8.500855029569394],[-79.9189991899919,8.495789297759742],[-79.92619926199262,8.494100720489854],[-79.93339933399334,8.489034988680217],[-79.94059940599405,8.4704606387115],[-79.94779947799478,8.46539490690185],[-79.94779947799478,8.462017752362087],[-79.96939969399693,8.443443402393385],[-80.04140041400413,8.397851816106552],[-80.08100081000809,8.37252315705831],[-80.12420124201242,8.348883075279943],[-80.19620196201961,8.313422952612413],[-80.2250022500225,8.301602911723236],[-80.27180271802717,8.294848602643697],[-80.28260282602825,8.296537179913585],[-80.29340293402933,8.299914334453348],[-80.30060300603006,8.301602911723236],[-80.30780307803077,8.298225757183474],[-80.32580325803258,8.28978287083406],[-80.33300333003329,8.288094293564171],[-80.36180361803618,8.294848602643697],[-80.37620376203762,8.30329148899311],[-80.37980379803798,8.31004579807265],[-80.37620376203762,8.315111529882287],[-80.3870038700387,8.311734375342525],[-80.3870038700387,8.306668643532888],[-80.38340383403833,8.301602911723236],[-80.3870038700387,8.294848602643697],[-80.40860408604085,8.28302856175452],[-80.46980469804697,8.22055120276886],[-80.4770047700477,8.201976852800158],[-80.47340473404734,8.105727948416842],[-80.4770047700477,8.09559648479754],[-80.4770047700477,8.092219330257777],[-80.48420484204841,8.082087866638489],[-80.46980469804697,8.075333557558949],[-80.46260462604626,8.055070630320358],[-80.45540455404554,8.036496280351642],[-80.44820448204482,8.028053394002242],[-80.43380433804337,8.024676239462465],[-80.39420394203941,8.007790466763637],[-80.38340383403833,7.999347580414224],[-80.34740347403473,7.989216116794935],[-80.32940329403294,7.953755994127391],[-80.3150031500315,7.911541562380336],[-80.30060300603006,7.882835748792317],[-80.20340203402034,7.806849771647606],[-80.14220142201421,7.75281529901136],[-80.05220052200522,7.636303467389453],[-80.00540005400053,7.551874603895314],[-79.99459994599945,7.5231687903073095],[-79.99459994599945,7.502905863068719],[-80.0090000900009,7.4657571631313004],[-80.01620016200161,7.4573142767818865],[-80.03060030600305,7.453937122242124],[-80.05580055800557,7.452248544972235],[-80.06660066600665,7.450559967702347],[-80.1350013500135,7.425231308654105],[-80.19980199801998,7.425231308654105],[-80.21060210602106,7.41847699957458],[-80.22140221402213,7.423542731384231],[-80.25020250202502,7.430297040463756],[-80.25740257402573,7.43873992681317],[-80.26460264602646,7.43873992681317],[-80.27540275402754,7.433674195003519],[-80.30780307803077,7.425231308654105],[-80.30780307803077,7.41847699957458],[-80.29340293402933,7.41847699957458],[-80.28260282602825,7.421854154114342],[-80.27540275402754,7.425231308654105],[-80.26460264602646,7.430297040463756],[-80.25740257402573,7.425231308654105],[-80.32940329403294,7.401591226875752],[-80.35820358203581,7.381328299637161],[-80.36180361803618,7.355999640588919],[-80.34380343803437,7.327293827000915],[-80.34740347403473,7.318850940651501],[-80.37260372603726,7.315473786111738],[-80.37980379803798,7.3120966315719755],[-80.3870038700387,7.308719477032213],[-80.39420394203941,7.301965167952673],[-80.39780397803978,7.296899436143022],[-80.39780397803978,7.286767972523734],[-80.4050040500405,7.283390817983971],[-80.41580415804158,7.280013663444194],[-80.4230042300423,7.273259354364669],[-80.43020430204302,7.264816468015255],[-80.42660426604266,7.258062158935729],[-80.43020430204302,7.252996427126078],[-80.43740437404374,7.246242118046553],[-80.44460444604445,7.246242118046553],[-80.46260462604626,7.25130784985619],[-80.47340473404734,7.252996427126078],[-80.59580595805957,7.237799231697139],[-80.6030060300603,7.23611065442725],[-80.71460714607146,7.21584772718866],[-80.79380793807938,7.214159149918771],[-80.81540815408154,7.219224881728422],[-80.8190081900819,7.219224881728422],[-80.82620826208262,7.214159149918771],[-80.82980829808298,7.210781995379008],[-80.8370083700837,7.214159149918771],[-80.84060840608406,7.219224881728422],[-80.84780847808477,7.219224881728422],[-80.86220862208621,7.205716263569357],[-80.87300873008729,7.212470572648897],[-80.88740887408873,7.239487808967013],[-80.89460894608946,7.242864963506776],[-80.90180901809018,7.247930695316427],[-80.90900909009089,7.25130784985619],[-80.91980919809198,7.252996427126078],[-80.93060930609306,7.256373581665841],[-80.93060930609306,7.263127890745366],[-80.9270092700927,7.269882199824906],[-80.91980919809198,7.273259354364669],[-80.91620916209162,7.27832508617432],[-80.91620916209162,7.300276590682799],[-80.91620916209162,7.308719477032213],[-80.91260912609125,7.315473786111738],[-80.89820898208981,7.323916672461152],[-80.89460894608946,7.328982404270803],[-80.8910089100891,7.342491022429854],[-80.8910089100891,7.359376795128682],[-80.89460894608946,7.37626256782751],[-80.91980919809198,7.391459763256464],[-80.91980919809198,7.410034113225166],[-80.90900909009089,7.442117081352933],[-80.91620916209162,7.453937122242124],[-80.95220952209522,7.4927743994494165],[-80.95580955809558,7.496151553989179],[-80.9630096300963,7.502905863068719],[-80.96660966609666,7.509660172148244],[-80.95580955809558,7.516414481227784],[-80.95220952209522,7.524857367577198],[-80.95220952209522,7.534988831196486],[-80.94860948609485,7.5434317175459],[-80.9450094500945,7.555251758435077],[-80.95580955809558,7.57044895386403],[-80.97020970209702,7.582268994753207],[-80.97740977409774,7.589023303832732],[-80.97740977409774,7.595777612912258],[-80.97020970209702,7.595777612912258],[-80.97020970209702,7.6025319219917975],[-81.02061020610206,7.649812085548504],[-81.03141031410314,7.656566394628044],[-81.03861038610385,7.658254971897918],[-81.04221042210422,7.661632126437695],[-81.03861038610385,7.671763590056983],[-81.03501035010349,7.680206476406397],[-81.02781027810278,7.686960785485937],[-81.0170101701017,7.688649362755811],[-81.00621006210062,7.685272208216048],[-81.00981009810097,7.693715094565462],[-81.02061020610206,7.702157980914876],[-81.03501035010349,7.708912289994402],[-81.04221042210422,7.712289444534164],[-81.04581045810458,7.7173551763438155],[-81.02781027810278,7.74606098993182],[-81.03861038610385,7.74606098993182],[-81.04581045810458,7.7477495672017085],[-81.05661056610566,7.749438144471597],[-81.06021060210601,7.754503876281234],[-81.05661056610566,7.754503876281234],[-81.0530105301053,7.754503876281234],[-81.0530105301053,7.756192453551122],[-81.0530105301053,7.759569608090885],[-81.07821078210782,7.764635339900536],[-81.08541085410853,7.779832535329476],[-81.08541085410853,7.795029730758429],[-81.07821078210782,7.801784039837955],[-81.0710107101071,7.803472617107843],[-81.06741067410674,7.80853834891748],[-81.06021060210601,7.813604080727131],[-81.04941049410493,7.81529265799702],[-81.03861038610385,7.81529265799702],[-81.02781027810278,7.816981235266894],[-81.02061020610206,7.822046967076545],[-81.02061020610206,7.8355555852356105],[-81.02781027810278,7.8355555852356105],[-81.04941049410493,7.822046967076545],[-81.05661056610566,7.849064203394676],[-81.0530105301053,7.911541562380336],[-81.07461074610745,7.87101570790314],[-81.0890108901089,7.8575070897440895],[-81.10341103411034,7.87777001698268],[-81.1070110701107,7.87777001698268],[-81.1070110701107,7.865949976093503],[-81.10341103411034,7.859195667013964],[-81.09621096210962,7.852441357934438],[-81.0890108901089,7.849064203394676],[-81.0890108901089,7.842309894315136],[-81.13221132211322,7.842309894315136],[-81.1430114301143,7.843998471585024],[-81.15381153811538,7.854129935204313],[-81.16821168211682,7.855818512474201],[-81.19341193411934,7.8625728215537265],[-81.1970119701197,7.879458594252554],[-81.20061200612005,7.8929672124116195],[-81.21861218612186,7.898032944221271],[-81.20781207812078,7.8929672124116195],[-81.20421204212042,7.889590057871857],[-81.20421204212042,7.882835748792317],[-81.21861218612186,7.879458594252554],[-81.2150121501215,7.87101570790314],[-81.1970119701197,7.855818512474201],[-81.1790117901179,7.847375626124787],[-81.17541175411753,7.845687048854899],[-81.1790117901179,7.837244162505485],[-81.18261182611826,7.830489853425959],[-81.18261182611826,7.823735544346434],[-81.16461164611646,7.78827542167889],[-81.17541175411753,7.762946762630648],[-81.1970119701197,7.740995258122183],[-81.21861218612186,7.725798062693229],[-81.22221222212222,7.734240949042643],[-81.22221222212222,7.739306680852295],[-81.22221222212222,7.742683835392057],[-81.21861218612186,7.74606098993182],[-81.21861218612186,7.754503876281234],[-81.2330123301233,7.754503876281234],[-81.24741247412474,7.754503876281234],[-81.24741247412474,7.74606098993182],[-81.23661236612365,7.744372412661946],[-81.22941229412294,7.737618103582406],[-81.21861218612186,7.719043753613704],[-81.2330123301233,7.713978021804053],[-81.23661236612365,7.715666599073941],[-81.24741247412474,7.719043753613704],[-81.24021240212402,7.707223712724527],[-81.2330123301233,7.698780826375113],[-81.22581225812257,7.698780826375113],[-81.21141211412113,7.705535135454639],[-81.1970119701197,7.712289444534164],[-81.19341193411934,7.700469403644988],[-81.1970119701197,7.656566394628044],[-81.1970119701197,7.646434931008741],[-81.19341193411934,7.639680621929216],[-81.1970119701197,7.6295491583099135],[-81.20061200612005,7.6244834265002766],[-81.2150121501215,7.616040540150863],[-81.21861218612186,7.609286231071323],[-81.22581225812257,7.609286231071323],[-81.2330123301233,7.616040540150863],[-81.26541265412654,7.6329263128496905],[-81.27261272612726,7.6329263128496905],[-81.27981279812798,7.646434931008741],[-81.29061290612906,7.651500662818393],[-81.31581315813158,7.649812085548504],[-81.39861398613986,7.673452167326872],[-81.42381423814238,7.671763590056983],[-81.42741427414273,7.681895053676286],[-81.43461434614346,7.692026517295574],[-81.44181441814418,7.700469403644988],[-81.4490144901449,7.705535135454639],[-81.47421474214742,7.698780826375113],[-81.5030150301503,7.702157980914876],[-81.52461524615246,7.712289444534164],[-81.52821528215281,7.725798062693229],[-81.51741517415174,7.729175217232992],[-81.49941499414994,7.739306680852295],[-81.48861488614885,7.749438144471597],[-81.52821528215281,7.761258185360774],[-81.53901539015389,7.757881030820997],[-81.53901539015389,7.739306680852295],[-81.56421564215641,7.756192453551122],[-81.5750157501575,7.759569608090885],[-81.5750157501575,7.768012494440299],[-81.56781567815678,7.776455380789713],[-81.5750157501575,7.784898267139127],[-81.58221582215822,7.793341153488541],[-81.58941589415893,7.8051611943777175],[-81.58581585815858,7.820358389806657],[-81.58221582215822,7.832178430695848],[-81.56781567815678,7.849064203394676],[-81.56781567815678,7.855818512474201],[-81.5750157501575,7.860884244283852],[-81.58221582215822,7.8625728215537265],[-81.58941589415893,7.860884244283852],[-81.59661596615966,7.855818512474201],[-81.60021600216002,7.855818512474201],[-81.60741607416074,7.8625728215537265],[-81.60741607416074,7.87101570790314],[-81.60021600216002,7.87777001698268],[-81.60021600216002,7.8845243260622055],[-81.60741607416074,7.889590057871857],[-81.62181621816218,7.889590057871857],[-81.61821618216182,7.904787253300796],[-81.61821618216182,7.921673025999624],[-81.61461614616145,7.931804489618926],[-81.59661596615966,7.925050180539387],[-81.59661596615966,7.933493066888801],[-81.60381603816037,7.94024737596834],[-81.61461614616145,7.952067416857517],[-81.6110161101611,7.958821725937042],[-81.61461614616145,7.974018921365996],[-81.60741607416074,7.985838962255173],[-81.62181621816218,7.9807732304455214],[-81.62541625416254,7.982461807715396],[-81.6290162901629,7.982461807715396],[-81.6290162901629,7.968953189556345],[-81.62541625416254,7.95544457139728],[-81.62181621816218,7.948690262317754],[-81.62541625416254,7.945313107777977],[-81.63261632616326,7.945313107777977],[-81.63981639816397,7.948690262317754],[-81.63981639816397,7.95544457139728],[-81.64341643416434,7.962198880476805],[-81.6470164701647,7.9723303440961075],[-81.66501665016649,7.997659003144349],[-81.67221672216722,8.006101889493763],[-81.6830168301683,8.044939166701056],[-81.69021690216901,8.055070630320358],[-81.69741697416974,8.039873434891419],[-81.69741697416974,8.031430548542005],[-81.69741697416974,8.021299084922703],[-81.70821708217082,8.031430548542005],[-81.70821708217082,8.046627743970944],[-81.71181711817118,8.06013636213001],[-81.72621726217263,8.068579248479423],[-81.72621726217263,8.075333557558949],[-81.7190171901719,8.070267825749298],[-81.70821708217082,8.068579248479423],[-81.70461704617045,8.070267825749298],[-81.69741697416974,8.075333557558949],[-81.69021690216901,8.075333557558949],[-81.68661686616866,8.071956403019186],[-81.67581675816758,8.068579248479423],[-81.71181711817118,8.131056607465084],[-81.73341733417334,8.1580738437832],[-81.74421744217442,8.173271039212153],[-81.74781747817478,8.191845389180855],[-81.75141751417515,8.191845389180855],[-81.75861758617586,8.180025348291679],[-81.76221762217622,8.169893884672376],[-81.75861758617586,8.161450998322962],[-81.74781747817478,8.1580738437832],[-81.75141751417515,8.149630957433786],[-81.76581765817657,8.132745184734958],[-81.7730177301773,8.124302298385544],[-81.78021780217802,8.124302298385544],[-81.79821798217982,8.137810916544609],[-81.87741877418773,8.168205307402502],[-81.88461884618846,8.173271039212153],[-81.92781927819277,8.183402502831441],[-81.94221942219421,8.18509108010133],[-81.95301953019529,8.191845389180855],[-81.94941949419494,8.207042584609795],[-81.93141931419314,8.234059820927925],[-81.94221942219421,8.228994089118274],[-81.95661956619566,8.22055120276886],[-81.96741967419673,8.208731161879683],[-81.9710197101971,8.195222543720618],[-81.97821978219781,8.191845389180855],[-81.99261992619925,8.20028827553027],[-82.01422014220142,8.218862625498986],[-82.02862028620285,8.208731161879683],[-82.0610206102061,8.210419739149572],[-82.09342093420933,8.22055120276886],[-82.10782107821078,8.234059820927925],[-82.1150211502115,8.234059820927925],[-82.11862118621185,8.215485470959209],[-82.14382143821437,8.159762421053088],[-82.14382143821437,8.161450998322962],[-82.14742147421474,8.16482815286274],[-82.1510215102151,8.16482815286274],[-82.1510215102151,8.1580738437832],[-82.15822158221582,8.1580738437832],[-82.14742147421474,8.181713925561567],[-82.14742147421474,8.188468234641093],[-82.15822158221582,8.18509108010133],[-82.15462154621545,8.193533966450744],[-82.15462154621545,8.198599698260395],[-82.1510215102151,8.203665430070032],[-82.14382143821437,8.20535400733992],[-82.14382143821437,8.212108316419446],[-82.15822158221582,8.212108316419446],[-82.17262172621726,8.201976852800158],[-82.1870218702187,8.198599698260395],[-82.19782197821978,8.201976852800158],[-82.20862208622086,8.215485470959209],[-82.21942219422193,8.218862625498986],[-82.21942219422193,8.225616934578511],[-82.21582215822158,8.2273055118484],[-82.20862208622086,8.230682666388162],[-82.20502205022049,8.234059820927925],[-82.21582215822158,8.264454211785818],[-82.21582215822158,8.277962829944869],[-82.21222212222122,8.288094293564171],[-82.21222212222122,8.294848602643697],[-82.21942219422193,8.299914334453348],[-82.21942219422193,8.304980066263],[-82.21582215822158,8.31004579807265],[-82.21222212222122,8.315111529882287],[-82.21222212222122,8.313422952612413],[-82.21222212222122,8.31004579807265],[-82.20862208622086,8.308357220802762],[-82.20502205022049,8.308357220802762],[-82.20862208622086,8.321865838961827],[-82.20862208622086,8.331997302581115],[-82.20142201422014,8.338751611660655],[-82.18342183421834,8.343817343470306],[-82.20862208622086,8.343817343470306],[-82.21942219422193,8.342128766200418],[-82.22662226622266,8.338751611660655],[-82.2410224102241,8.306668643532888],[-82.2410224102241,8.301602911723236],[-82.26262262622626,8.30329148899311],[-82.2770227702277,8.31004579807265],[-82.28422284222842,8.321865838961827],[-82.28062280622805,8.343817343470306],[-82.2950229502295,8.335374457120892],[-82.3130231302313,8.330308725311241],[-82.33102331023309,8.330308725311241],[-82.3490234902349,8.335374457120892],[-82.34542345423453,8.328620148041352],[-82.34542345423453,8.315111529882287],[-82.34182341823418,8.308357220802762],[-82.35982359823598,8.306668643532888],[-82.38862388623886,8.291471448103934],[-82.39942399423994,8.288094293564171],[-82.41742417424175,8.293160025373822],[-82.43182431824317,8.304980066263],[-82.43542435424354,8.316800107152176],[-82.41742417424175,8.323554416231701],[-82.41742417424175,8.328620148041352],[-82.42462424624246,8.331997302581115],[-82.43182431824317,8.338751611660655],[-82.43182431824317,8.34550592074018],[-82.43182431824317,8.355637384359483],[-82.44262442624427,8.348883075279943],[-82.44262442624427,8.337063034390766],[-82.44622446224461,8.323554416231701],[-82.46422464224642,8.315111529882287],[-82.46422464224642,8.308357220802762],[-82.46062460624606,8.30329148899311],[-82.4570245702457,8.296537179913585],[-82.45342453424534,8.288094293564171],[-82.45342453424534,8.281339984484646],[-82.47142471424714,8.277962829944869],[-82.47862478624786,8.277962829944869],[-82.48582485824858,8.281339984484646],[-82.5110251102511,8.276274252674995],[-82.55422554225542,8.288094293564171],[-82.62262622626226,8.315111529882287],[-82.65862658626585,8.323554416231701],[-82.69822698226982,8.323554416231701],[-82.73782737827378,8.316800107152176],[-82.80982809828097,8.294848602643697],[-82.83862838628386,8.277962829944869],[-82.86382863828638,8.254322748166516],[-82.87822878228782,8.218862625498986],[-82.87822878228782,8.17833677102179],[-82.87462874628746,8.136122339274735],[-82.84942849428494,8.068579248479423],[-82.84942849428494,8.061824939399884],[-82.86382863828638,8.048316321240833],[-82.86742867428674,8.03311912581188],[-82.87822878228782,8.024676239462465],[-82.89622896228963,8.034807703081768],[-82.91062910629105,8.044939166701056],[-82.91062910629105,8.06013636213001],[-82.90342903429034,8.077022134828837],[-82.89622896228963,8.092219330257777],[-82.89982899828998,8.105727948416842],[-82.96822968229682,8.22055120276886],[-82.99342993429934,8.245879861817102],[-83.11583115831158,8.335374457120892],[-83.15183151831518,8.369146002518534],[-83.1230312303123,8.404606125186078],[-83.11583115831158,8.40798327972584],[-83.11223112231121,8.418114743345143],[-83.09783097830977,8.431623361504194],[-83.09423094230942,8.446820556933147],[-83.09783097830977,8.462017752362087],[-83.13023130231302,8.502543606839268],[-83.13743137431373,8.514363647728459],[-83.13743137431373,8.529560843157398],[-83.13023130231302,8.53462657496705],[-83.11943119431194,8.538003729506812],[-83.10143101431014,8.5481351931261],[-83.11583115831158,8.551512347665877],[-83.14463144631446,8.549823770395989],[-83.1590315903159,8.55488950220564],[-83.16623166231662,8.563332388555054],[-83.18423184231843,8.602169665762347],[-83.18063180631806,8.607235397571998],[-83.18063180631806,8.61061255211176],[-83.1770317703177,8.6173668611913],[-83.16983169831698,8.6173668611913],[-83.16263162631626,8.600481088492472],[-83.1590315903159,8.592038202143058],[-83.1590315903159,8.580218161253882],[-83.15183151831518,8.576841006714119],[-83.1230312303123,8.588661047603296],[-83.1230312303123,8.59710393395271],[-83.13743137431373,8.602169665762347],[-83.15183151831518,8.612301129381649],[-83.16263162631626,8.625809747540714],[-83.16983169831698,8.63762978842989],[-83.1770317703177,8.63762978842989],[-83.18423184231843,8.625809747540714],[-83.20223202232022,8.624121170270826],[-83.22383223832237,8.627498324810588],[-83.24183241832418,8.624121170270826],[-83.2490324903249,8.63762978842989],[-83.25983259832599,8.651138406588956],[-83.27423274232741,8.657892715668481],[-83.28863288632886,8.651138406588956],[-83.31743317433174,8.669712756557658],[-83.32823328233282,8.684909951986612],[-83.3210332103321,8.705172879225202],[-83.32823328233282,8.706861456495076],[-83.33543335433355,8.705172879225202],[-83.33183331833318,8.72205865192403],[-83.34623346233462,8.730501538273444],[-83.36783367833678,8.733878692813207],[-83.38223382233822,8.740633001892732],[-83.38943389433894,8.728812961003555],[-83.3930339303393,8.728812961003555],[-83.40023400234001,8.733878692813207],[-83.4110341103411,8.733878692813207],[-83.41463414634146,8.728812961003555],[-83.41823418234182,8.72205865192403],[-83.42183421834218,8.71530434284449],[-83.43623436234363,8.711927188304728],[-83.46863468634686,8.716992920114379],[-83.4830348303483,8.711927188304728],[-83.48663486634867,8.693352838336025],[-83.47943479434794,8.698418570145662],[-83.47223472234722,8.698418570145662],[-83.43623436234363,8.646072674779305],[-83.43263432634326,8.630875479350365],[-83.4110341103411,8.598792511222584],[-83.40383403834038,8.588661047603296],[-83.3930339303393,8.581906738523756],[-83.35343353433534,8.571775274904468],[-83.3390333903339,8.568398120364705],[-83.32463324633245,8.561643811285165],[-83.31383313833138,8.544758038586338],[-83.29943299432993,8.53462657496705],[-83.28863288632886,8.541380884046575],[-83.28863288632886,8.517740802268222],[-83.28863288632886,8.507609338648919],[-83.29583295832958,8.500855029569394],[-83.29583295832958,8.494100720489854],[-83.28143281432814,8.47214921598139],[-83.27423274232741,8.438377670583733],[-83.27783277832778,8.401228970646315],[-83.28863288632886,8.375900311598073],[-83.31023310233103,8.375900311598073],[-83.34623346233462,8.38772035248725],[-83.38223382233822,8.404606125186078],[-83.39663396633966,8.418114743345143],[-83.38943389433894,8.418114743345143],[-83.38583385833859,8.41473758880538],[-83.38223382233822,8.413049011535492],[-83.36783367833678,8.411360434265603],[-83.38943389433894,8.419803320615017],[-83.39663396633966,8.424869052424668],[-83.40383403834038,8.431623361504194],[-83.40383403834038,8.418114743345143],[-83.46143461434615,8.443443402393385],[-83.4830348303483,8.445131979663259],[-83.54423544235442,8.438377670583733],[-83.56223562235623,8.438377670583733],[-83.57663576635765,8.445131979663259],[-83.58743587435875,8.458640597822324],[-83.61263612636127,8.490723565950091],[-83.6990369903699,8.57008669763458],[-83.70623706237062,8.580218161253882],[-83.70983709837098,8.580218161253882],[-83.73143731437314,8.588661047603296],[-83.7350373503735,8.592038202143058],[-83.73863738637387,8.624121170270826],[-83.70983709837098,8.669712756557658],[-83.70263702637025,8.678155642907072],[-83.68823688236883,8.688287106526374],[-83.67743677436773,8.691664261066137],[-83.67023670236702,8.688287106526374],[-83.66663666636666,8.683221374716723],[-83.65943659436594,8.689975683796249],[-83.63783637836379,8.727124383733667],[-83.63063630636306,8.733878692813207],[-83.64143641436414,8.749075888242146],[-83.6270362703627,8.767650238210862],[-83.59823598235982,8.782847433639802],[-83.57663576635765,8.787913165449453],[-83.57663576635765,8.794667474528978],[-83.59823598235982,8.796356051798867],[-83.6090360903609,8.796356051798867],[-83.61623616236162,8.789601742719327],[-83.6270362703627,8.77778170183015],[-83.63783637836379,8.7727159700205],[-83.64143641436414,8.781158856369913],[-83.63783637836379,8.798044629068741],[-83.62343623436234,8.814930401767569],[-83.59823598235982,8.826750442656746],[-83.58743587435875,8.83519332900616],[-83.58383583835838,8.84701336989535],[-83.58743587435875,8.857144833514639],[-83.60183601836017,8.863899142594178],[-83.61263612636127,8.874030606213466],[-83.61623616236162,8.890916378912294],[-83.59823598235982,8.880784915292992],[-83.58743587435875,8.87740776075323],[-83.57663576635765,8.87740776075323],[-83.58023580235802,8.884162069832769],[-83.58743587435875,8.890916378912294],[-83.60183601836017,8.89767068799182],[-83.6090360903609,8.902736419801471],[-83.61263612636127,8.907802151611122],[-83.61983619836198,8.911179306150885],[-83.63063630636306,8.911179306150885],[-83.61623616236162,8.919622192500299],[-83.61983619836198,8.92468792430995],[-83.6270362703627,8.928065078849713],[-83.63063630636306,8.931442233389475],[-83.6270362703627,8.943262274278652],[-83.61983619836198,8.950016583358192],[-83.61263612636127,8.958459469707606],[-83.60183601836017,8.96690235605702],[-83.63063630636306,9.036134024122205],[-83.63423634236342,9.04457691047162],[-83.65223652236521,9.061462683170447],[-83.65943659436594,9.054708374090922],[-83.6810368103681,9.083414187678926],[-83.70263702637025,9.117185733076582],[-83.72783727837277,9.144202969394698],[-83.76743767437674,9.150957278474223],[-83.76383763837639,9.177974514792353],[-83.78543785437854,9.199926019300833],[-83.81783817838178,9.215123214729772],[-83.83943839438395,9.220188946539423],[-83.91863918639186,9.29448634641426],[-83.99423994239942,9.32994646908179],[-84.00864008640086,9.340077932701092],[-84.10224102241023,9.37722663263851],[-84.10944109441094,9.37722663263851],[-84.11664116641165,9.37216090082886],[-84.12024120241202,9.37216090082886],[-84.12744127441275,9.37722663263851],[-84.1310413104131,9.383980941718036],[-84.14544145441454,9.3789152099084],[-84.15264152641527,9.385669518987925],[-84.15984159841598,9.394112405337339],[-84.17784177841779,9.397489559877101],[-84.1670416704167,9.416063909845818],[-84.18144181441814,9.44139256889406],[-84.20664206642066,9.465032650672413],[-84.23184231842318,9.473475537021827],[-84.23184231842318,9.466721227942301],[-84.22464224642246,9.465032650672413],[-84.21744217442173,9.463344073402524],[-84.20664206642066,9.453212609783236],[-84.23184231842318,9.458278341592887],[-84.27144271442714,9.48191842337124],[-84.30024300243002,9.486984155180892],[-84.32544325443254,9.488672732450766],[-84.45864458644586,9.525821432388184],[-84.48384483844838,9.527510009658073],[-84.49464494644945,9.525821432388184],[-84.5090450904509,9.522444277848422],[-84.51984519845197,9.519067123308659],[-84.53424534245342,9.520755700578547],[-84.5450454504545,9.530887164197836],[-84.55224552245522,9.542707205087012],[-84.55584555845559,9.552838668706315],[-84.57024570245702,9.556215823246077],[-84.56664566645667,9.551150091436426],[-84.56664566645667,9.547772936896664],[-84.5630456304563,9.541018627817138],[-84.58104581045811,9.554527245976189],[-84.6170461704617,9.578167327754556],[-84.62424624246242,9.593364523183496],[-84.62784627846278,9.606873141342561],[-84.6350463504635,9.613627450422086],[-84.64584645846458,9.61700460496185],[-84.65664656646567,9.623758914041389],[-84.66024660246602,9.633890377660677],[-84.66024660246602,9.645710418549854],[-84.66384663846638,9.652464727629393],[-84.67824678246782,9.650776150359505],[-84.67464674646746,9.662596191248682],[-84.67464674646746,9.672727654867984],[-84.67824678246782,9.682859118487286],[-84.67824678246782,9.692990582106574],[-84.6710467104671,9.703122045725877],[-84.65664656646567,9.720007818424705],[-84.64944649446494,9.736893591123533],[-84.64224642246423,9.745336477472947],[-84.6350463504635,9.757156518362123],[-84.63144631446315,9.770665136521174],[-84.6350463504635,9.78417375468024],[-84.64224642246423,9.794305218299542],[-84.65664656646567,9.809502413728481],[-84.69984699846998,9.868602618174378],[-84.71064710647106,9.877045504523792],[-84.7250472504725,9.883799813603318],[-84.7250472504725,9.898997009032271],[-84.71064710647106,9.922637090810625],[-84.73584735847358,9.942900018049215],[-84.73944739447394,9.953031481668518],[-84.73224732247323,9.966540099827569],[-84.7610476104761,9.974982986176983],[-84.8510485104851,9.966540099827569],[-84.8510485104851,9.974982986176983],[-84.84024840248402,9.978360140716745],[-84.82224822248222,9.980048717986634],[-84.78984789847898,9.980048717986634],[-84.78984789847898,9.98680302706616],[-84.81864818648187,9.988491604336048],[-84.84744847448474,9.993557336145699],[-84.87264872648726,10.002000222495113],[-84.89784897848978,10.015508840654178],[-84.92664926649266,10.040837499702405],[-84.93384933849339,10.045903231512057],[-84.9410494104941,10.047591808781945],[-84.95184951849518,10.056034695131359],[-84.96264962649626,10.064477581480773],[-84.95544955449554,10.069543313290424],[-84.97344973449734,10.077986199639838],[-85.0130501305013,10.11682347684713],[-85.03465034650347,10.126954940466433],[-85.04545045450455,10.135397826815847],[-85.05265052650526,10.13877498135561],[-85.05625056250562,10.135397826815847],[-85.06345063450634,10.132020672276084],[-85.0670506705067,10.132020672276084],[-85.07785077850778,10.13877498135561],[-85.07065070650707,10.148906444974898],[-85.0670506705067,10.155660754054438],[-85.07425074250742,10.1590379085942],[-85.07785077850778,10.160726485864089],[-85.08865088650886,10.172546526753266],[-85.10665106651066,10.165792217673726],[-85.1750517505175,10.165792217673726],[-85.1930519305193,10.170857949483377],[-85.2110521105211,10.18098941310268],[-85.23625236252362,10.206318072150921],[-85.23625236252362,10.213072381230447],[-85.2290522905229,10.231646731199163],[-85.24705247052471,10.251909658437754],[-85.29025290252902,10.282304049295632],[-85.2830528305283,10.262041122057042],[-85.25425254252542,10.241778194818451],[-85.24705247052471,10.21644953577021],[-85.24345243452434,10.170857949483377],[-85.23985239852398,10.143840713165261],[-85.22545225452254,10.125266363196545],[-85.23985239852398,10.11682347684713],[-85.23985239852398,10.101626281418191],[-85.22545225452254,10.089806240529015],[-85.19665196651967,10.077986199639838],[-85.18585185851857,10.067854736020536],[-85.17145171451715,10.042526076972294],[-85.16425164251642,10.042526076972294],[-85.1570515705157,10.045903231512057],[-85.15345153451534,10.042526076972294],[-85.15345153451534,10.035771767892768],[-85.16065160651605,10.035771767892768],[-85.17145171451715,10.035771767892768],[-85.17865178651786,10.039148922432531],[-85.18585185851857,10.042526076972294],[-85.18585185851857,10.035771767892768],[-85.16785167851678,10.01888599519394],[-85.14625146251463,9.99862306795535],[-85.08505085050851,9.974982986176983],[-85.07785077850778,9.969917254367346],[-85.07065070650707,9.973294408907108],[-85.05265052650526,9.966540099827569],[-85.0130501305013,9.944588595319104],[-84.9950499504995,9.939522863509453],[-84.9770497704977,9.939522863509453],[-84.95904959049591,9.946277172588978],[-84.94824948249482,9.937834286239564],[-84.9230492304923,9.920948513540736],[-84.91224912249122,9.912505627191322],[-84.91224912249122,9.905751318111797],[-84.93024930249302,9.900685586302146],[-84.93024930249302,9.885488390873206],[-84.91944919449195,9.870291195444253],[-84.9050490504905,9.856782577285202],[-84.91224912249122,9.855094000015313],[-84.91944919449195,9.848339690935788],[-84.93384933849339,9.836519650046611],[-84.91944919449195,9.829765340967072],[-84.90144901449014,9.828076763697197],[-84.86544865448654,9.829765340967072],[-84.86544865448654,9.823011031887546],[-84.87984879848798,9.812879568268244],[-84.89784897848978,9.806125259188718],[-84.91224912249122,9.795993795569416],[-84.91944919449195,9.779108022870588],[-84.9230492304923,9.774042291060951],[-84.94464944649447,9.760533672901886],[-84.95184951849518,9.75377936382236],[-84.95544955449554,9.735205013853644],[-84.95904959049591,9.72676212750423],[-84.99144991449914,9.74195932293317],[-85.00585005850058,9.743647900203058],[-85.0130501305013,9.730139282043993],[-85.00945009450095,9.723384972964467],[-84.9950499504995,9.703122045725877],[-84.99864998649986,9.6997448911861],[-85.0310503105031,9.68454769575716],[-85.03465034650347,9.682859118487286],[-85.03825038250382,9.677793386677635],[-85.06345063450634,9.665973345788458],[-85.0670506705067,9.657530459439045],[-85.08865088650886,9.588298791373845],[-85.09945099450994,9.571413018675017],[-85.11025110251101,9.556215823246077],[-85.11745117451174,9.556215823246077],[-85.14625146251463,9.611938873152212],[-85.2290522905229,9.725073550234342],[-85.23625236252362,9.736893591123533],[-85.23985239852398,9.74195932293317],[-85.24705247052471,9.74702505474282],[-85.27225272252723,9.758845095631997],[-85.27585275852758,9.765599404711537],[-85.27585275852758,9.775730868330825],[-85.27585275852758,9.782485177410365],[-85.3010530105301,9.807813836458607],[-85.33345333453335,9.826388186427309],[-85.44145441454414,9.865225463634616],[-85.44865448654487,9.861848309094853],[-85.4630546305463,9.853405422745439],[-85.47025470254702,9.850028268205662],[-85.4810548105481,9.85171684547555],[-85.49185491854918,9.861848309094853],[-85.50625506255062,9.865225463634616],[-85.50985509855099,9.865225463634616],[-85.51345513455134,9.86691404090449],[-85.51345513455134,9.870291195444253],[-85.5170551705517,9.87366834998403],[-85.52425524255243,9.877045504523792],[-85.53145531455314,9.875356927253904],[-85.5350553505535,9.871979772714141],[-85.5350553505535,9.870291195444253],[-85.59265592655926,9.888865545412969],[-85.61785617856178,9.892242699952732],[-85.62505625056251,9.897308431762383],[-85.63225632256322,9.902374163572034],[-85.63945639456394,9.905751318111797],[-85.65025650256503,9.905751318111797],[-85.65745657456574,9.900685586302146],[-85.66465664656646,9.900685586302146],[-85.67185671856718,9.912505627191322],[-85.66465664656646,9.931079977160039],[-85.67545675456755,9.954720058938392],[-85.77985779857798,10.079674776909712],[-85.78345783457834,10.091494817798889],[-85.79425794257942,10.11851205411702],[-85.8050580505805,10.137086404085721],[-85.84465844658446,10.231646731199163],[-85.84825848258482,10.258663967517279],[-85.85185851858519,10.277238317485995],[-85.8590585905859,10.289058358375172],[-85.84465844658446,10.302566976534237],[-85.83745837458375,10.312698440153525],[-85.8410584105841,10.31945274923305],[-85.86265862658627,10.346469985551181],[-85.87345873458735,10.354912871900595],[-85.86625866258662,10.365044335519897],[-85.85185851858519,10.378552953678948],[-85.83745837458375,10.395438726377776],[-85.83025830258302,10.412324499076604],[-85.81225812258123,10.405570189997079],[-85.8050580505805,10.415701653616367],[-85.79785797857978,10.43089884904532],[-85.77625776257763,10.447784621744148],[-85.78345783457834,10.464670394442976],[-85.79785797857978,10.483244744411678],[-85.80865808658086,10.495064785300855],[-85.80145801458015,10.498441939840617],[-85.80145801458015,10.500130517110506],[-85.79425794257942,10.501819094380394],[-85.79425794257942,10.50857340345992],[-85.80865808658086,10.50857340345992],[-85.80865808658086,10.515327712539445],[-85.79785797857978,10.517016289809334],[-85.79065790657906,10.52377059888886],[-85.78345783457834,10.542344948857576],[-85.77625776257763,10.542344948857576],[-85.76185761857619,10.532213485238273],[-85.74025740257402,10.540656371587687],[-85.72225722257222,10.55078783520699],[-85.70785707857078,10.549099257937101],[-85.70065700657007,10.549099257937101],[-85.70065700657007,10.562607876096166],[-85.6970569705697,10.569362185175692],[-85.69345693456934,10.572739339715469],[-85.68625686256863,10.576116494255231],[-85.6790567905679,10.59131368968417],[-85.67545675456755,10.59131368968417],[-85.6610566105661,10.589625112414282],[-85.63225632256322,10.621708080542064],[-85.63225632256322,10.630150966891478],[-85.63945639456394,10.635216698701129],[-85.65385653856538,10.645348162320417],[-85.69345693456934,10.603133730573347],[-85.69345693456934,10.60651088511311],[-85.69345693456934,10.609888039652887],[-85.69345693456934,10.611576616922761],[-85.70065700657007,10.611576616922761],[-85.70065700657007,10.616642348732412],[-85.68985689856898,10.630150966891478],[-85.68265682656826,10.635216698701129],[-85.67185671856718,10.638593853240891],[-85.6790567905679,10.645348162320417],[-85.6790567905679,10.643659585050528],[-85.68265682656826,10.641971007780654],[-85.68265682656826,10.640282430510766],[-85.68625686256863,10.638593853240891],[-85.68625686256863,10.645348162320417],[-85.68265682656826,10.64872531686018],[-85.67185671856718,10.652102471399942],[-85.67185671856718,10.658856780479482],[-85.6790567905679,10.658856780479482],[-85.6790567905679,10.665611089559007],[-85.66465664656646,10.679119707718073],[-85.6610566105661,10.712891253115728],[-85.66465664656646,10.778745766641151],[-85.6790567905679,10.795631539339979],[-85.7150571505715,10.810828734768918],[-85.74745747457474,10.81589446657857],[-85.76185761857619,10.805763002959281],[-85.7690576905769,10.805763002959281],[-85.79425794257942,10.829403084737635],[-85.80145801458015,10.837845971087049],[-85.79785797857978,10.83615739381716],[-85.79065790657906,10.837845971087049],[-85.79065790657906,10.844600280166574],[-85.79425794257942,10.851354589246114],[-85.80145801458015,10.853043166515988],[-85.8230582305823,10.851354589246114],[-85.83025830258302,10.851354589246114],[-85.8590585905859,10.861486052865402],[-85.88425884258842,10.874994671024467],[-85.90945909459094,10.886814711913644],[-85.94545945459454,10.891880443723295],[-85.94545945459454,10.89863475280282],[-85.92385923859239,10.903700484612472],[-85.88065880658806,10.923963411851062],[-85.8590585905859,10.92565198912095],[-85.86265862658627,10.932406298200476],[-85.86625866258662,10.935783452740239],[-85.86985869858698,10.937472030010127],[-85.87705877058771,10.939160607280002],[-85.87705877058771,10.945914916359541],[-85.83025830258302,10.949292070899304],[-85.81585815858158,10.945914916359541],[-85.81225812258123,10.939160607280002],[-85.81225812258123,10.929029143660713],[-85.81585815858158,10.922274834581174],[-85.81225812258123,10.918897680041411],[-85.80865808658086,10.917209102771537],[-85.79425794257942,10.90538906188236],[-85.79065790657906,10.90538906188236],[-85.78345783457834,10.912143370961886],[-85.78345783457834,10.918897680041411],[-85.79425794257942,10.930717720930588],[-85.78345783457834,10.937472030010127],[-85.76185761857619,10.94084918454989],[-85.74025740257402,10.939160607280002],[-85.7330573305733,10.935783452740239],[-85.72585725857259,10.927340566390825],[-85.71865718657186,10.92565198912095],[-85.71145711457115,10.929029143660713],[-85.70785707857078,10.934094875470365],[-85.70785707857078,10.94084918454989],[-85.7150571505715,10.945914916359541],[-85.7150571505715,10.954357802708955],[-85.70065700657007,10.959423534518606],[-85.69345693456934,10.969554998137895],[-85.6970569705697,10.98306361629696],[-85.70785707857078,10.994883657186136],[-85.7150571505715,10.999949388995788],[-85.72945729457294,11.006703698075313],[-85.73665736657367,11.011769429884964],[-85.74745747457474,11.020212316234378],[-85.74745747457474,11.02358947077414],[-85.74025740257402,11.02358947077414],[-85.7330573305733,11.028655202583792],[-85.71865718657186,11.042163820742857],[-85.71145711457115,11.03878666620308],[-85.70065700657007,11.028655202583792],[-85.6790567905679,11.028655202583792],[-85.66825668256682,11.040475243472969],[-85.67185671856718,11.053983861632034],[-85.68265682656826,11.069181057060973],[-85.69345693456934,11.077623943410387],[-85.70065700657007,11.08100109795015],[-85.75105751057511,11.10126402518874],[-85.77265772657726,11.104641179728517],[-85.7870578705787,11.113084066077931],[-85.79425794257942,11.12996983877676],[-85.80145801458015,11.16542996144429],[-85.8230582305823,11.19244719776242],[-85.92745927459275,11.3106476066542],[-85.93825938259383,11.317401915733726],[-85.94185941859418,11.319090493003614],[-85.95625956259562,11.329221956622916],[-85.95985959859598,11.334287688432553],[-85.99585995859958,11.344419152051856],[-86.01026010260102,11.357927770210921],[-86.04266042660426,11.398453624688102],[-86.07146071460714,11.411962242847167],[-86.10386103861039,11.447422365514697],[-86.1470614706147,11.471062447293065],[-86.16146161461614,11.484571065452116],[-86.16506165061651,11.49301395180153],[-86.17586175861759,11.521719765389534],[-86.20826208262082,11.5352283835486],[-86.24426244262442,11.572377083486018],[-86.33786337863378,11.611214360693324],[-86.35226352263523,11.623034401582501],[-86.36666366663667,11.63823159701144],[-86.37746377463775,11.668625987869333],[-86.49626496264962,11.759809160442998],[-86.51426514265142,11.783449242221351],[-86.54306543065431,11.842549446667249],[-86.55386553865539,11.850992333016663],[-86.56466564665647,11.856058064826314],[-86.58986589865899,11.88307530114443],[-86.60426604266043,11.90502680565291],[-86.62226622266222,11.935421196510802],[-86.62586625866258,11.950618391939742],[-86.62946629466295,11.964127010098807],[-86.64026640266403,11.975947050987983],[-86.66546665466655,11.9945214009567],[-86.69066690666907,12.024915791814578],[-86.72666726667266,12.089081728070127],[-86.76266762667626,12.18195347791368],[-86.77346773467734,12.19715067334262],[-86.79866798667986,12.219102177851099],[-87.00387003870038,12.340679741282642],[-87.01467014670146,12.35756551398147],[-87.07227072270723,12.387959904839363],[-87.1010710107101,12.421731450237019],[-87.16947169471695,12.452125841094912],[-87.17307173071731,12.474077345603376],[-87.16227162271622,12.458880150174437],[-87.14427144271443,12.44706010928526],[-87.1190711907119,12.436928645665958],[-87.09747097470975,12.433551491126195],[-87.12267122671227,12.460568727444326],[-87.1370713707137,12.470700191063614],[-87.14787147871479,12.474077345603376],[-87.15867158671587,12.480831654682916],[-87.18027180271802,12.523046086429986],[-87.18747187471874,12.523046086429986],[-87.17667176671766,12.485897386492553],[-87.1910719107191,12.499406004651618],[-87.21987219872199,12.531488972779385],[-87.23787237872378,12.550063322748102],[-87.25227252272522,12.555129054557753],[-87.31347313473134,12.60240921811446],[-87.32067320673207,12.610852104463874],[-87.32427324273242,12.620983568083176],[-87.33147331473315,12.639557918051892],[-87.33507335073351,12.632803608972353],[-87.34227342273422,12.624360722622939],[-87.34587345873459,12.619294990813287],[-87.45387453874538,12.744249708784608],[-87.46827468274682,12.76957836783285],[-87.46467464674646,12.764512636023198],[-87.46107461074611,12.762824058753324],[-87.44667446674467,12.756069749673784],[-87.44667446674467,12.762824058753324],[-87.45027450274502,12.764512636023198],[-87.46107461074611,12.76957836783285],[-87.46107461074611,12.77633267691239],[-87.46467464674646,12.786464140531677],[-87.4790747907479,12.799972758690743],[-87.50427504275042,12.81179279957992],[-87.52227522275223,12.81685853138957],[-87.52227522275223,12.81010422231003],[-87.49707497074971,12.793218449611217],[-87.48267482674827,12.781398408722026],[-87.48267482674827,12.76957836783285],[-87.49347493474934,12.771266945102738],[-87.50787507875079,12.783086985991915],[-87.52947529475294,12.803349913230505],[-87.64827648276483,12.872581581295691],[-87.66987669876698,12.892844508534296],[-87.68427684276843,12.918173167582538],[-87.68427684276843,12.946878981170542],[-87.66627666276662,12.982339103838072],[-87.63747637476375,13.005979185616425],[-87.60867608676087,13.024553535585142],[-87.58707587075871,13.04650504009362],[-87.58347583475835,13.085342317300913],[-87.57627576275762,13.085342317300913],[-87.57987579875798,13.063390812792449],[-87.58347583475835,13.056636503712909],[-87.57267572675727,13.056636503712909],[-87.55827558275583,13.054947926443035],[-87.54747547475475,13.051570771903258],[-87.54387543875438,13.048193617363495],[-87.53667536675367,13.044816462823732],[-87.51147511475115,13.022864958315253],[-87.50787507875079,13.01948780377549],[-87.48987489874898,12.995847721997137],[-87.48267482674827,12.992470567457374],[-87.47187471874719,12.985716258377835],[-87.46827468274682,12.982339103838072],[-87.46827468274682,12.975584794758547],[-87.46827468274682,12.960387599329593],[-87.46827468274682,12.953633290250067],[-87.43587435874359,12.9215503221223],[-87.39267392673926,12.913107435772886],[-87.28827288272882,12.919861744852412],[-87.28827288272882,12.926616053931937],[-87.34227342273422,12.924927476662063],[-87.36747367473674,12.928304631201826],[-87.37827378273782,12.93674751755124],[-87.36747367473674,12.953633290250067],[-87.32067320673207,12.97727337202842],[-87.31347313473134,12.982339103838072],[-87.30267302673026,12.989093412917597],[-87.2990729907299,13.000913453806788],[-87.29187291872918,13.011044917426076],[-87.2810728107281,13.017799226505616],[-87.27027270272703,13.022864958315253],[-87.27027270272703,13.029619267394793],[-87.29547295472955,13.029619267394793],[-87.3170731707317,13.03468499920443],[-87.33147331473315,13.043127885553844],[-87.34587345873459,13.056636503712909],[-87.3530735307353,13.066767967332211],[-87.3530735307353,13.071833699141862],[-87.34947349473494,13.088719471840676],[-87.34587345873459,13.090408049110565],[-87.31347313473134,13.095473780920216],[-87.30267302673026,13.098850935459978],[-87.36027360273603,13.114048130888918],[-87.39627396273963,13.117425285428695],[-87.41427414274142,13.110670976349155],[-87.41787417874178,13.110670976349155],[-87.42147421474215,13.149508253556462],[-87.43587435874359,13.190034108033643],[-87.45387453874538,13.223805653431299],[-87.47547475474754,13.24913431247954],[-87.4790747907479,13.26433150790848],[-87.48267482674827,13.266020085178369],[-87.48627486274863,13.269397239718131],[-87.48987489874898,13.269397239718131],[-87.49707497074971,13.267708662448243],[-87.50067500675006,13.269397239718131],[-87.50787507875079,13.277840126067545],[-87.51147511475115,13.286283012416959],[-87.51147511475115,13.294725898766373],[-87.50067500675006,13.304857362385675],[-87.49347493474934,13.309923094195312],[-87.47547475474754,13.316677403274852],[-87.46827468274682,13.325120289624266],[-87.44667446674467,13.352137525942382],[-87.43947439474394,13.358891835021922],[-87.42867428674286,13.355514680482145],[-87.41067410674107,13.360580412291796],[-87.37827378273782,13.372400453180973],[-87.38187381873819,13.380843339530387],[-87.38187381873819,13.385909071340038],[-87.37827378273782,13.392663380419563],[-87.39267392673926,13.406171998578628],[-87.39987399873998,13.41123773038828],[-87.41067410674107,13.412926307658168],[-87.42867428674286,13.409549153118391],[-87.43947439474394,13.41123773038828],[-87.44667446674467,13.419680616737693],[-87.46467464674646,13.407860575848517],[-87.46827468274682,13.402794844038866],[-87.47547475474754,13.392663380419563],[-87.47547475474754,13.379154762260512],[-87.47187471874719,13.372400453180973],[-87.47187471874719,13.367334721371321],[-87.48267482674827,13.358891835021922],[-87.48987489874898,13.358891835021922],[-87.52227522275223,13.358891835021922],[-87.54027540275402,13.355514680482145],[-87.54747547475475,13.355514680482145],[-87.55827558275583,13.358891835021922],[-87.55827558275583,13.365646144101447],[-87.54387543875438,13.365646144101447],[-87.54387543875438,13.372400453180973],[-87.56187561875619,13.375777607720735],[-87.57987579875798,13.382531916800275],[-87.59787597875979,13.38422049407015],[-87.61227612276123,13.372400453180973],[-87.61947619476194,13.372400453180973],[-87.61587615876158,13.382531916800275],[-87.6050760507605,13.406171998578628],[-87.61947619476194,13.41123773038828],[-87.62307623076231,13.423057771277456],[-87.61947619476194,13.45176358486546],[-87.62307623076231,13.466960780294414],[-87.63747637476375,13.463583625754637],[-87.65187651876518,13.45176358486546],[-87.6590765907659,13.441632121246172],[-87.65187651876518,13.412926307658168],[-87.66627666276662,13.385909071340038],[-87.69147691476914,13.365646144101447],[-87.72027720277202,13.358891835021922],[-87.73827738277383,13.362268989561684],[-87.76347763477635,13.375777607720735],[-87.78147781477814,13.382531916800275],[-87.78147781477814,13.3892862258798],[-87.78147781477814,13.39604053495934],[-87.7850778507785,13.399417689499103],[-87.79587795877958,13.399417689499103],[-87.8030780307803,13.401106266768977],[-87.81747817478174,13.406171998578628],[-87.82467824678247,13.41123773038828],[-87.83187831878318,13.419680616737693],[-87.83907839078391,13.441632121246172],[-87.86787867878678,13.392663380419563],[-87.87507875078751,13.365646144101447],[-87.8570785707857,13.352137525942382],[-87.84267842678426,13.34876037140262],[-87.81027810278103,13.316677403274852],[-87.79227792277922,13.304857362385675],[-87.78867788677887,13.299791630576024],[-87.78867788677887,13.286283012416959],[-87.79947799477995,13.266020085178369],[-87.81747817478174,13.25082288974943],[-87.8930789307893,13.213674189811996],[-87.9110791107911,13.198476994383057],[-87.91467914679147,13.18159122168423],[-87.8930789307893,13.16639402625529],[-87.9290792907929,13.157951139905876],[-88.06588065880659,13.168082603525164],[-88.09828098280983,13.174836912604704],[-88.10548105481054,13.174836912604704],[-88.12348123481235,13.168082603525164],[-88.20988209882098,13.15963971717575],[-88.29988299882999,13.174836912604704],[-88.3250832508325,13.16639402625529],[-88.33948339483395,13.171459758064941],[-88.35388353883539,13.174836912604704],[-88.35388353883539,13.179902644414355],[-88.32868328683287,13.18159122168423],[-88.32868328683287,13.196788417113183],[-88.33948339483395,13.215362767081885],[-88.35748357483574,13.22887138524095],[-88.35388353883539,13.220428498891536],[-88.3430834308343,13.205231303462583],[-88.33948339483395,13.195099839843294],[-88.37548375483755,13.195099839843294],[-88.39348393483934,13.193411262573406],[-88.40788407884078,13.188345530763769],[-88.3970839708397,13.183279798954118],[-88.38988389883899,13.184968376223992],[-88.37908379083791,13.18665695349388],[-88.36468364683647,13.188345530763769],[-88.36468364683647,13.179902644414355],[-88.38988389883899,13.171459758064941],[-88.41508415084151,13.171459758064941],[-88.4330843308433,13.183279798954118],[-88.44028440284403,13.20860845800236],[-88.42948429484295,13.203542726192708],[-88.42588425884259,13.20185414892282],[-88.41508415084151,13.215362767081885],[-88.41508415084151,13.220428498891536],[-88.42948429484295,13.22887138524095],[-88.4510845108451,13.254200044289192],[-88.46188461884618,13.262642930638606],[-88.45828458284582,13.247445735209652],[-88.45468454684547,13.235625694320476],[-88.4510845108451,13.225494230701187],[-88.45468454684547,13.215362767081885],[-88.4690846908469,13.223805653431299],[-88.51228512285122,13.233937117050601],[-88.53028530285303,13.242380003400015],[-88.54468544685446,13.27108581698802],[-88.55548555485555,13.276151548797657],[-88.56628566285663,13.277840126067545],[-88.59868598685986,13.28459443514707],[-88.6130861308613,13.28459443514707],[-88.65268652686527,13.276151548797657],[-88.71028710287102,13.274462971527782],[-88.7210872108721,13.269397239718131],[-88.71748717487175,13.26433150790848],[-88.71028710287102,13.260954353368717],[-88.70308703087031,13.259265776098829],[-88.69588695886958,13.262642930638606],[-88.66708667086671,13.255888621559066],[-88.58788587885878,13.26433150790848],[-88.5770857708577,13.262642930638606],[-88.56268562685626,13.255888621559066],[-88.5590855908559,13.24913431247954],[-88.54468544685446,13.233937117050601],[-88.53748537485374,13.22887138524095],[-88.53748537485374,13.220428498891536],[-88.55548555485555,13.223805653431299],[-88.56988569885698,13.227182807971062],[-88.59868598685986,13.235625694320476],[-88.59868598685986,13.22887138524095],[-88.51588515885159,13.211985612542122],[-88.47268472684726,13.198476994383057],[-88.45468454684547,13.179902644414355],[-88.46188461884618,13.168082603525164],[-88.47988479884799,13.171459758064941],[-88.49788497884978,13.18159122168423],[-88.51228512285122,13.191722685303532],[-88.52668526685267,13.198476994383057],[-88.78588785887858,13.245757157939778],[-88.81828818288183,13.259265776098829],[-89.0630906309063,13.372400453180973],[-89.18189181891819,13.443320698516047],[-89.25029250292502,13.472026512104051],[-89.32589325893258,13.488912284802879],[-89.35829358293583,13.488912284802879],[-89.38349383493835,13.495666593882419],[-89.52749527495274,13.49397801661253],[-89.58869588695886,13.50917521204147],[-89.61749617496174,13.51424094385112],[-89.67869678696786,13.534503871089711],[-89.71469714697146,13.527749562010186],[-89.80829808298083,13.526060984740297],[-89.82269822698227,13.537881025629474],[-89.83349833498335,13.573341148297018],[-89.83709837098371,13.596981230075372],[-89.84789847898479,13.607112693694674],[-89.86949869498694,13.61893273458385],[-89.95229952299523,13.664524320870683],[-89.99909999099991,13.686475825379162],[-90.02070020700206,13.694918711728576],[-90.09990099900999,13.732067411665994],[-90.24390243902438,13.791167616111892],[-90.40230402304023,13.858710706907189],[-90.49950499504995,13.894170829574733],[-90.57870578705787,13.912745179543435],[-90.63630636306362,13.922876643162738],[-90.70830708307082,13.929630952242263],[-90.78390783907838,13.92118806589285],[-90.79470794707947,13.917810911353087],[-90.90990909909098,13.911056602273561],[-91.04311043110431,13.912745179543435],[-91.16551165511655,13.9262537977025],[-91.31671316713167,13.954959611290505],[-91.55071550715506,14.057962824753346],[-91.63711637116371,14.105242988310067],[-91.76311763117631,14.179540388184904],[-91.9071190711907,14.284232178917634],[-92.05112051120511,14.407498319619066],[-92.24552245522455,14.545961655749451],[-92.24912249122491,14.551027387559103],[-92.30672306723066,14.615193323814637],[-92.38232382323822,14.684424991879837],[-92.50832508325082,14.807691132581269],[-92.6991269912699,14.998500364078012],[-92.82512825128251,15.13527512293851],[-92.83952839528395,15.160603781986751],[-92.83952839528395,15.18255528649523],[-92.82512825128251,15.172423822875928],[-92.7819278192782,15.158915204716877],[-92.7711277112771,15.150472318367463],[-92.7711277112771,15.131897968398746],[-92.76392763927639,15.113323618430044],[-92.75312753127531,15.09812642300109],[-92.73872738727387,15.09306069119144],[-92.74952749527495,15.113323618430044],[-92.75672756727568,15.153849472907226],[-92.76752767527675,15.170735245606053],[-92.7819278192782,15.179178131955467],[-92.80352803528035,15.187621018304881],[-92.82512825128251,15.192686750114532],[-92.83952839528395,15.189309595574755],[-92.84312843128431,15.206195368273583],[-92.85392853928539,15.207883945543472],[-92.8611286112861,15.201129636463932],[-92.84672846728466,15.189309595574755],[-92.86472864728647,15.190998172844644],[-92.92232922329222,15.236589759131476],[-92.96552965529655,15.253475531830304],[-92.98352983529836,15.26529557271948],[-92.99792997929978,15.294001386307485],[-93.07713077130771,15.348035858943732],[-93.17073170731707,15.449350495136699],[-93.18873188731887,15.478056308724703],[-93.19953199531994,15.491564926883768],[-93.22833228332283,15.501696390503056],[-93.46953469534695,15.700948508349214],[-93.48753487534876,15.709391394698628],[-93.65673656736567,15.8394118444796],[-93.75753757537575,15.90695493527491],[-93.94473944739447,16.009958148737752],[-93.93033930339303,16.016712457817277],[-93.90873908739087,16.015023880547403],[-93.89433894338943,16.016712457817277],[-93.89073890738906,16.00658099419799],[-93.87633876338764,16.0048924169281],[-93.86553865538654,16.01164672600764],[-93.85473854738547,16.02515534416669],[-93.87273872738727,16.04879542594506],[-93.88353883538835,16.070746930453524],[-93.89793897938979,16.08932128042224],[-93.92313923139231,16.09945274404153],[-94.04194041940418,16.12478140308977],[-94.07434074340743,16.141667175788598],[-94.08514085140851,16.148421484868138],[-94.10314103141032,16.163618680297077],[-94.11754117541174,16.178815875726016],[-94.12114121141211,16.19232449388508],[-94.12834128341284,16.221030307473086],[-94.14274142741426,16.226096039282737],[-94.16074160741607,16.21934173020321],[-94.18234182341823,16.20921026658391],[-94.22554225542255,16.204144534774258],[-94.26514265142652,16.215964575663435],[-94.30834308343083,16.237916080171914],[-94.34074340743408,16.263244739220156],[-94.36234362343623,16.28688482099851],[-94.37674376743767,16.295327707347923],[-94.39834398343983,16.2987048618877],[-94.41634416344164,16.29195055280816],[-94.41994419944199,16.278441934649095],[-94.41634416344164,16.259867584680393],[-94.41634416344164,16.244670389251453],[-94.42354423544235,16.244670389251453],[-94.43074430744308,16.248047543791216],[-94.43794437944379,16.246358966521328],[-94.43434434344343,16.239604657441802],[-94.42714427144271,16.23622750290204],[-94.41274412744127,16.23453892563215],[-94.41274412744127,16.227784616552626],[-94.42354423544235,16.22440746201285],[-94.43794437944379,16.222718884742974],[-94.34434344343443,16.163618680297077],[-94.29394293942939,16.141667175788598],[-94.26514265142652,16.148421484868138],[-94.34074340743408,16.175438721186254],[-94.34074340743408,16.182193030265793],[-94.31554315543156,16.180504452995905],[-94.2759427594276,16.165307257566965],[-94.25434254342544,16.16193010302719],[-94.22914229142292,16.163618680297077],[-94.21834218342183,16.16193010302719],[-94.2039420394204,16.155175793947663],[-94.17154171541715,16.134912866709072],[-94.17154171541715,16.12646998035966],[-94.18234182341823,16.12646998035966],[-94.18234182341823,16.119715671280133],[-94.1139411394114,16.106207053121068],[-94.08154081540815,16.09438701223189],[-94.05634056340563,16.075812662263175],[-94.0311403114031,16.040352539595645],[-94.02034020340203,16.03190965324623],[-93.98433984339843,16.018401035087166],[-93.96993969939699,16.009958148737752],[-93.96273962739627,15.998138107848575],[-94.34434344343443,16.148421484868138],[-94.35874358743587,16.158552948487426],[-94.39114391143912,16.177127298456142],[-94.43794437944379,16.18725876207543],[-94.53154531545316,16.18894733934532],[-94.5279452794528,16.18894733934532],[-94.57834578345783,16.190635916615207],[-94.60714607146072,16.19401307115497],[-94.62154621546215,16.202455957504384],[-94.63954639546395,16.195701648424844],[-94.66114661146611,16.19401307115497],[-94.70074700747007,16.195701648424844],[-94.72234722347223,16.199078802964607],[-94.72954729547295,16.20921026658391],[-94.72594725947259,16.221030307473086],[-94.71154711547115,16.2294731938225],[-94.62514625146251,16.25649043014063],[-94.58554585545855,16.281819089188872],[-94.5819458194582,16.325722098205816],[-94.59274592745928,16.337542139094992],[-94.62874628746287,16.347673602714295],[-94.64674646746467,16.35611648906371],[-94.6539465394654,16.362870798143234],[-94.66114661146611,16.364559375413123],[-94.66834668346684,16.364559375413123],[-94.67554675546755,16.36118222087336],[-94.67914679146791,16.344296448174532],[-94.68274682746828,16.340919293634755],[-94.68994689946899,16.337542139094992],[-94.70074700747007,16.33416498455523],[-94.70434704347043,16.33247640728534],[-94.71514715147151,16.322344943666053],[-94.72234722347223,16.315590634586513],[-94.72234722347223,16.31221348004675],[-94.74754747547475,16.2987048618877],[-94.76194761947619,16.29363913007805],[-94.779947799478,16.268310471029807],[-94.79434794347944,16.258179007410504],[-94.80514805148051,16.275064780109332],[-94.80874808748086,16.28688482099851],[-94.80874808748086,16.2987048618877],[-94.79794797947979,16.308836325506988],[-94.779947799478,16.317279211856402],[-94.77274772747727,16.327410675475704],[-94.78354783547834,16.342607870904644],[-94.79794797947979,16.357805066333583],[-94.80154801548015,16.36962510722276],[-94.80154801548015,16.379756570842062],[-94.80874808748086,16.394953766271],[-94.8159481594816,16.403396652620415],[-94.82674826748267,16.415216693509606],[-94.84114841148411,16.425348157128894],[-94.85194851948519,16.428725311668657],[-94.87714877148771,16.425348157128894],[-94.90234902349023,16.413528116239718],[-94.92034920349204,16.394953766271],[-94.96354963549635,16.33247640728534],[-94.97434974349743,16.325722098205816],[-95.0319503195032,16.325722098205816],[-95.02835028350283,16.308836325506988],[-95.03555035550355,16.302082016427462],[-95.04635046350464,16.300393439157574],[-95.05355053550535,16.295327707347923],[-95.06435064350643,16.278441934649095],[-95.06435064350643,16.268310471029807],[-95.04275042750427,16.261556161950267],[-94.99954999549995,16.25142469833098],[-94.96354963549635,16.248047543791216],[-94.93114931149312,16.24973612106109],[-94.90234902349023,16.25142469833098],[-94.88794887948879,16.253113275600853],[-94.869948699487,16.258179007410504],[-94.8591485914859,16.264933316490044],[-94.84114841148411,16.283507666458746],[-94.83394833948338,16.285196243728635],[-94.82674826748267,16.26999904829968],[-94.8591485914859,16.25649043014063],[-94.90234902349023,16.246358966521328],[-94.93114931149312,16.244670389251453],[-94.89514895148952,16.23453892563215],[-94.80514805148051,16.237916080171914],[-94.77634776347763,16.226096039282737],[-94.76194761947619,16.204144534774258],[-94.76554765547655,16.199078802964607],[-94.81954819548196,16.21427599839356],[-94.89514895148952,16.210898843853798],[-94.94914949149491,16.202455957504384],[-94.99234992349923,16.195701648424844],[-95.01755017550175,16.190635916615207],[-95.06435064350643,16.183881607535668],[-95.10395103951039,16.183881607535668],[-95.1219512195122,16.18894733934532],[-95.13635136351363,16.18894733934532],[-95.15075150751507,16.18725876207543],[-95.15435154351543,16.182193030265793],[-95.15435154351543,16.175438721186254],[-95.15075150751507,16.168684412106728],[-95.16155161551615,16.163618680297077],[-95.18675186751867,16.16699583483684],[-95.19755197551976,16.158552948487426],[-95.21555215552155,16.158552948487426],[-95.23355233552336,16.158552948487426],[-95.2479524795248,16.14673290759825],[-95.2479524795248,16.134912866709072],[-95.26955269552695,16.128158557629547],[-95.28035280352803,16.119715671280133],[-95.28035280352803,16.107895630390942],[-95.2839528395284,16.10451847585118],[-95.29835298352984,16.101141321311417],[-95.30555305553055,16.092698434962003],[-95.33795337953379,16.08932128042224],[-95.35235352353523,16.079189816802938],[-95.37755377553775,16.04710684867517],[-95.3739537395374,16.02684392143658],[-95.38475384753848,16.02177818962693],[-95.39915399153992,16.008269571467864],[-95.42435424354244,15.99982668511845],[-95.42795427954279,15.98462948968951],[-95.43515435154352,15.976186603340096],[-95.49275492754927,15.974498026070208],[-95.49635496354963,15.966055139720808],[-95.5719557195572,15.957612253371394],[-95.58275582755827,15.945792212482203],[-95.6079560795608,15.94241505794244],[-95.61515615156151,15.928906439783376],[-95.6619566195662,15.912020667084562],[-95.70515705157051,15.908643512544785],[-95.7339573395734,15.903577780735148],[-95.75555755557555,15.898512048925497],[-95.76995769957699,15.890069162576083],[-95.77715777157772,15.885003430766432],[-95.77715777157772,15.873183389877255],[-95.80235802358024,15.869806235337492],[-95.8239582395824,15.864740503527841],[-95.84915849158492,15.857986194448316],[-95.87795877958779,15.851231885368776],[-95.88875888758888,15.842788999019362],[-95.96075960759607,15.827591803590423],[-95.96795967959679,15.81746033997112],[-96.00396003960039,15.809017453621706],[-96.03276032760327,15.792131680922878],[-96.05076050760508,15.787065949113241],[-96.07956079560795,15.770180176414414],[-96.09036090360904,15.768491599144525],[-96.09756097560975,15.761737290065],[-96.10476104761047,15.756671558255348],[-96.11556115561156,15.761737290065],[-96.12636126361264,15.753294403715586],[-96.12636126361264,15.738097208286632],[-96.20556205562055,15.704325662888976],[-96.2379623796238,15.684062735650386],[-96.28836288362884,15.685751312920274],[-96.36036360363603,15.684062735650386],[-96.39996399964,15.6925056219998],[-96.43236432364323,15.695882776539577],[-96.44676446764467,15.682374158380512],[-96.47196471964719,15.67224269476121],[-96.48636486364863,15.660422653872033],[-96.50436504365044,15.658734076602144],[-96.5259652596526,15.660422653872033],[-96.54756547565475,15.663799808411795],[-96.55476554765548,15.658734076602144],[-96.61236612366123,15.680685581110623],[-96.68076680766808,15.709391394698628],[-96.80316803168031,15.731342899207107],[-96.84636846368464,15.733031476476995],[-96.92916929169292,15.78200021730359],[-96.99036990369903,15.800574567272292],[-97.02277022770227,15.807328876351832],[-97.04797047970479,15.829280380860297],[-97.04437044370444,15.832657535400074],[-97.06237062370623,15.85967477171819],[-97.07677076770767,15.856297617178427],[-97.10197101971019,15.869806235337492],[-97.15957159571596,15.903577780735148],[-97.20637206372064,15.920463553433962],[-97.26757267572675,15.935660748862915],[-97.28557285572856,15.935660748862915],[-97.34677346773468,15.945792212482203],[-97.36837368373683,15.933972171593027],[-97.45837458374584,15.945792212482203],[-97.53037530375303,15.967743716990682],[-97.55917559175592,15.962677985181031],[-97.61677616776167,15.976186603340096],[-97.659976599766,15.976186603340096],[-97.67437674376744,15.96943229426057],[-97.68157681576815,15.962677985181031],[-97.71757717577175,15.96943229426057],[-97.77157771577716,15.979563757879859],[-97.79317793177931,15.988006644229273],[-97.81117811178112,16.003203839658227],[-97.83637836378364,16.009958148737752],[-97.84717847178472,16.018401035087166],[-97.85437854378543,16.02515534416669],[-97.86157861578616,16.02853249870647],[-97.8759787597876,16.040352539595645],[-97.94437944379443,16.08763270315235],[-97.98037980379803,16.10958420766083],[-98.08478084780847,16.165307257566965],[-98.12078120781207,16.175438721186254],[-98.15318153181532,16.190635916615207],[-98.17118171181711,16.20921026658391],[-98.11358113581136,16.19232449388508],[-98.08118081180811,16.18894733934532],[-98.06678066780667,16.202455957504384],[-98.08478084780847,16.200767380234495],[-98.09558095580955,16.210898843853798],[-98.109981099811,16.21934173020321],[-98.12438124381244,16.20921026658391],[-98.14238142381423,16.217653152933323],[-98.1639816398164,16.222718884742974],[-98.1639816398164,16.22440746201285],[-98.16758167581675,16.2294731938225],[-98.17118171181711,16.23453892563215],[-98.17838178381784,16.23622750290204],[-98.17838178381784,16.23453892563215],[-98.18198181981819,16.2294731938225],[-98.18918189181892,16.22440746201285],[-98.19638196381963,16.222718884742974],[-98.21438214382144,16.22440746201285],[-98.31518315183152,16.25649043014063],[-98.44478444784447,16.278441934649095],[-98.50958509585095,16.300393439157574],[-98.53118531185312,16.308836325506988],[-98.54558545585455,16.31221348004675],[-98.55278552785528,16.315590634586513],[-98.55278552785528,16.31896778912629],[-98.56718567185672,16.324033520935927],[-98.57078570785707,16.327410675475704],[-98.56718567185672,16.327410675475704],[-98.56358563585636,16.330787830015467],[-98.56718567185672,16.340919293634755],[-98.58158581585816,16.36118222087336],[-98.61758617586176,16.39157661173124],[-98.69678696786967,16.462496857066313],[-98.73638736387363,16.513154175162796],[-98.76518765187652,16.54354856602069],[-98.76878768787688,16.550302875100215],[-98.7759877598776,16.555368606909866],[-98.79038790387904,16.553680029639978],[-98.80478804788048,16.55705718417974],[-98.81558815588156,16.553680029639978],[-98.82278822788227,16.553680029639978],[-98.829988299883,16.550302875100215],[-98.84798847988479,16.546925720560452],[-98.85158851588515,16.540171411480912],[-98.85518855188552,16.5317285251315],[-98.85518855188552,16.528351370591736],[-98.88758887588875,16.535105679671275],[-98.90558905589056,16.535105679671275],[-98.94518945189452,16.550302875100215],[-99.14319143191432,16.611091656815987],[-99.30879308793088,16.653306088563056],[-99.37359373593736,16.66850328399201],[-99.4959949599496,16.685389056690838],[-99.55719557195572,16.687077633960712],[-99.60399603996039,16.68201190215106],[-99.63639636396364,16.690454788500475],[-99.66159661596616,16.69889767484989],[-99.69039690396903,16.707340561199302],[-99.71919719197192,16.71916060208848],[-99.74079740797407,16.73098064297767],[-99.79479794797948,16.77150649745485],[-99.819998199982,16.790080847423553],[-99.82719827198272,16.78839227015368],[-99.83439834398344,16.78163796107414],[-99.84519845198452,16.78670369288379],[-99.84879848798488,16.79176942469344],[-99.85959859598596,16.796835156503093],[-99.84879848798488,16.800212311042856],[-99.8379983799838,16.795146579233204],[-99.83439834398344,16.801900888312744],[-99.84159841598415,16.80865519739227],[-99.84879848798488,16.810343774662144],[-99.85239852398524,16.80696662012238],[-99.86319863198632,16.80865519739227],[-99.87039870398704,16.80865519739227],[-99.87759877598776,16.815409506471795],[-99.87039870398704,16.817098083741683],[-99.86679866798667,16.825540970091097],[-99.86319863198632,16.83398385644051],[-99.85959859598596,16.83398385644051],[-99.85239852398524,16.835672433710386],[-99.85239852398524,16.842426742789925],[-99.85959859598596,16.85086962913934],[-99.86679866798667,16.85593536094899],[-99.88119881198811,16.859312515488753],[-99.89919899198992,16.852558206409213],[-99.90639906399063,16.845803897329688],[-99.90639906399063,16.839049588250163],[-99.89559895598956,16.840738165520037],[-99.89199891998919,16.837361010980274],[-99.89919899198992,16.82891812463086],[-99.91359913599136,16.82722954736097],[-99.92079920799208,16.83398385644051],[-99.92439924399244,16.85593536094899],[-99.93159931599315,16.861001092758627],[-99.95679956799567,16.882952597267106],[-99.96039960399604,16.89308406088641],[-99.99279992799927,16.909969833585237],[-100.06480064800648,16.935298492633464],[-100.11520115201152,16.94880711079253],[-100.16560165601656,16.967381460761246],[-100.2340023400234,16.9910215425396],[-100.32040320403203,17.023104510667366],[-100.56520565205652,17.105844796891617],[-100.65160651606516,17.134550610479636],[-100.71280712807128,17.15143638317845],[-100.78120781207812,17.180142196766468],[-100.83520835208351,17.19871654673517],[-100.90000900009,17.217290896703886],[-100.9540095400954,17.237553823942477],[-101.0080100801008,17.252751019371416],[-101.0440104401044,17.269636792070244],[-101.05841058410584,17.264571060260593],[-101.06561065610656,17.27639110114977],[-101.05481054810548,17.28314541022931],[-101.05481054810548,17.3034083374679],[-101.07281072810729,17.320294110166728],[-101.10521105211052,17.35068850102462],[-101.17361173611737,17.389525778231913],[-101.18081180811808,17.41316586001028],[-101.26361263612635,17.455380291757336],[-101.34641346413464,17.48577468261523],[-101.39321393213932,17.50603760985382],[-101.45441454414544,17.52630053709241],[-101.4580145801458,17.538120577981587],[-101.44361443614436,17.539809155251476],[-101.440014400144,17.556694927950304],[-101.44721447214472,17.57020354610937],[-101.4580145801458,17.583712164268434],[-101.49761497614976,17.614106555126313],[-101.52641526415263,17.619172286935964],[-101.55161551615515,17.61072940058655],[-101.55881558815588,17.62592659601549],[-101.56961569615696,17.62592659601549],[-101.58041580415804,17.63605805963479],[-101.59481594815948,17.63605805963479],[-101.59841598415984,17.65294383233362],[-101.61641616416163,17.659698141413145],[-101.64521645216452,17.66814102776256],[-101.64881648816488,17.705289727699977],[-101.67041670416704,17.74074985036752],[-101.69921699216992,17.75763562306635],[-101.7460174601746,17.791407168464005],[-101.75681756817568,17.816735827512233],[-101.77121771217712,17.828555868401423],[-101.77481774817748,17.848818795640014],[-101.81081810818108,17.891033227387084],[-101.85761857618576,17.909607577355786],[-101.8720187201872,17.914673309165437],[-101.93321933219332,17.950133431832967],[-101.99081990819909,17.97546209088121],[-102.03762037620376,17.990659286310162],[-102.09882098820988,17.98221639996075],[-102.10962109621096,17.96533062726192],[-102.13122131221311,17.951822009102855],[-102.14562145621456,17.934936236404027],[-102.16362163621636,17.924804772784725],[-102.17442174421744,17.916361886435325],[-102.19242192421925,17.916361886435325],[-102.22842228422284,17.93324765913414],[-102.28962289622896,17.961953472722158],[-102.41922419224191,17.997413595389688],[-102.47682476824768,18.01767652262828],[-102.51282512825128,18.02105367716804],[-102.59562595625955,18.049759490756045],[-102.69282692826928,18.056513799835585],[-102.74322743227432,18.066645263454873],[-102.880028800288,18.122368313361008],[-102.97362973629735,18.166271322377952],[-103.0240302403024,18.186534249616557],[-103.060030600306,18.18822282688643],[-103.1140311403114,18.191599981426194],[-103.12483124831247,18.206797176855147],[-103.13923139231392,18.201731445045496],[-103.2220322203222,18.233814413173263],[-103.240032400324,18.23212583590339],[-103.29043290432904,18.249011608602217],[-103.30843308433084,18.259143072221505],[-103.34443344433444,18.27096311311068],[-103.36243362433623,18.26758595857092],[-103.38043380433804,18.279405999460096],[-103.42363423634237,18.303046081238463],[-103.49923499234993,18.333440472096342],[-103.52443524435245,18.37565490384341],[-103.57483574835749,18.492166735465318],[-103.61083610836108,18.531004012672625],[-103.6180361803618,18.53775832175215],[-103.62883628836288,18.547889785371453],[-103.64323643236432,18.55970982626063],[-103.66123661236612,18.571529867149806],[-103.69363693636936,18.588415639848634],[-103.7080370803708,18.591792794388397],[-103.71163711637116,18.6019242580077],[-103.68643686436864,18.628941494325815],[-103.70083700837009,18.654270153374057],[-103.73323733237332,18.68297596696206],[-103.79443794437944,18.74207617140796],[-103.95283952839529,18.848456539410563],[-103.98163981639816,18.875473775728693],[-104.08964089640897,18.92781967109505],[-104.17964179641797,18.97172268011201],[-104.24084240842409,18.9919856073506],[-104.27324273242732,19.002117070969888],[-104.29484294842948,19.010559957319302],[-104.31644316443165,19.01731426639884],[-104.33084330843309,19.022379998208493],[-104.32724327243272,19.05277438906637],[-104.30564305643057,19.056151543606134],[-104.29844298442984,19.066283007225437],[-104.30564305643057,19.081480202654376],[-104.32724327243272,19.100054552623092],[-104.34164341643417,19.101743129892967],[-104.35244352443524,19.09161166627368],[-104.35604356043561,19.09498882081344],[-104.35604356043561,19.11187459351227],[-104.36684366843669,19.11694032532192],[-104.38484384843848,19.11525174805203],[-104.3920439204392,19.108497438972506],[-104.38844388443884,19.093300243543553],[-104.39924399243992,19.09161166627368],[-104.40644406444063,19.100054552623092],[-104.41724417244173,19.105120284432743],[-104.4280442804428,19.09161166627368],[-104.43884438844388,19.081480202654376],[-104.45324453244532,19.105120284432743],[-104.48564485644856,19.118628902591794],[-104.50364503645037,19.130448943480985],[-104.59364593645937,19.149023293449687],[-104.63684636846368,19.15915475706899],[-104.67284672846728,19.176040529767818],[-104.68364683646836,19.182794838847343],[-104.68724687246872,19.19461487973652],[-104.69084690846908,19.208123497895585],[-104.70164701647016,19.20981207516546],[-104.71244712447124,19.20981207516546],[-104.72324723247232,19.211500652435348],[-104.73044730447305,19.218254961514873],[-104.73044730447305,19.223320693324524],[-104.7340473404734,19.228386425134175],[-104.74484744847449,19.231763579673938],[-104.7520475204752,19.231763579673938],[-104.77724777247772,19.225009270594413],[-104.79884798847988,19.225009270594413],[-104.8060480604806,19.228386425134175],[-104.8060480604806,19.25540366145229],[-104.79884798847988,19.28242089777042],[-104.80244802448024,19.2942409386596],[-104.81684816848168,19.29930667046925],[-104.8240482404824,19.29761809319936],[-104.8420484204842,19.289175206849947],[-104.84924849248492,19.285798052310184],[-104.860048600486,19.287486629580073],[-104.86724867248672,19.289175206849947],[-104.87084870848709,19.289175206849947],[-104.88164881648817,19.27904374323066],[-104.95724957249573,19.31788102043795],[-104.99324993249932,19.34152110221632],[-105.01845018450184,19.368538338534435],[-105.02925029250292,19.414129924821268],[-105.040050400504,19.436081429329747],[-105.06885068850688,19.447901470218923],[-105.06885068850688,19.456344356568337],[-105.06525065250652,19.474918706537053],[-105.06885068850688,19.48505017015634],[-105.07245072450725,19.493493056505756],[-105.07965079650796,19.500247365585295],[-105.08685086850868,19.505313097394932],[-105.08685086850868,19.561036147301067],[-105.11565115651156,19.58636480634931],[-105.130051300513,19.58636480634931],[-105.14445144451444,19.582987651809546],[-105.15165151651516,19.58467622907942],[-105.16965169651696,19.601562001778248],[-105.19125191251912,19.615070619937313],[-105.25245252452524,19.665727938033797],[-105.29925299252993,19.718073833400155],[-105.35325353253532,19.804191274164182],[-105.3820538205382,19.83458566502206],[-105.38925389253892,19.853160014990777],[-105.40005400054001,19.864980055879954],[-105.42885428854288,19.888620137658307],[-105.44325443254432,19.907194487627024],[-105.46845468454684,19.951097496643968],[-105.5260552605526,20.032149205598344],[-105.53325533255332,20.050723555567046],[-105.53325533255332,20.062543596456223],[-105.5440554405544,20.08111794642494],[-105.5440554405544,20.091249410044227],[-105.5440554405544,20.135152419061185],[-105.55485554855548,20.20100693258661],[-105.55845558455584,20.217892705285436],[-105.56565565655656,20.22802416890474],[-105.58365583655836,20.238155632524027],[-105.59445594455944,20.244909941603566],[-105.60885608856088,20.27361575519157],[-105.62685626856268,20.300632991509687],[-105.65565655656556,20.312453032398864],[-105.67365673656737,20.35297888687606],[-105.69165691656916,20.385061855003826],[-105.69885698856989,20.407013359512305],[-105.68445684456844,20.42389913221112],[-105.57645576455764,20.488065068466668],[-105.52965529655296,20.49313080027632],[-105.46125461254613,20.49313080027632],[-105.44685446854469,20.49650795481608],[-105.42885428854288,20.506639418435384],[-105.36045360453605,20.51170515024502],[-105.3280532805328,20.51339372751491],[-105.29925299252993,20.53196807748361],[-105.28845288452884,20.550542427452328],[-105.26685266852668,20.557296736531853],[-105.2560525605256,20.57080535469092],[-105.24525245252453,20.584313972849984],[-105.2380523805238,20.602888322818686],[-105.23445234452345,20.63665986821634],[-105.25245252452524,20.656922795454932],[-105.28485284852849,20.670431413613997],[-105.31005310053101,20.727843040790006],[-105.34245342453424,20.754860277108136],[-105.36045360453605,20.76330316345755],[-105.37125371253713,20.754860277108136],[-105.38925389253892,20.739663081679197],[-105.41085410854109,20.734597349869546],[-105.44325443254432,20.74810596802861],[-105.47925479254792,20.751483122568374],[-105.51525515255152,20.770057472537076],[-105.53325533255332,20.75654885437801],[-105.5440554405544,20.7683688952672],[-105.53685536855369,20.77850035888649],[-105.52245522455225,20.790320399775666],[-105.51525515255152,20.788631822505792],[-105.50445504455044,20.78525466796603],[-105.48645486454865,20.795386131585317],[-105.47565475654756,20.82071479063356],[-105.46485464854648,20.834223408792624],[-105.46125461254613,20.856174913301103],[-105.4540545405454,20.86630637692039],[-105.45045450454505,20.873060685999917],[-105.43965439654396,20.871372108730043],[-105.42525425254253,20.889946458698745],[-105.40365403654036,20.928783735906052],[-105.37125371253713,20.954112394954294],[-105.35685356853568,20.957489549494056],[-105.34965349653497,20.97099816765312],[-105.33525335253353,20.984506785812187],[-105.32445324453245,21.00308113578089],[-105.31725317253172,21.016589753939954],[-105.31005310053101,21.03009837209902],[-105.29925299252993,21.03347552663878],[-105.2920529205292,21.026721217559242],[-105.28125281252812,21.026721217559242],[-105.27045270452705,21.025032640289368],[-105.24885248852489,21.04360699025807],[-105.23445234452345,21.060492762956898],[-105.23085230852308,21.09088715381479],[-105.23085230852308,21.116215812863032],[-105.2380523805238,21.131413008291972],[-105.23085230852308,21.15505309007034],[-105.23445234452345,21.183758903658344],[-105.21645216452164,21.204021830896934],[-105.22725227252272,21.283384962581422],[-105.24165241652416,21.34248516702732],[-105.23085230852308,21.388076753314152],[-105.220052200522,21.408339680552743],[-105.2020520205202,21.43535691687086],[-105.1840518405184,21.443799803220273],[-105.18765187651876,21.453931266839575],[-105.19485194851949,21.472505616808277],[-105.19845198451985,21.492768544046868],[-105.20925209252093,21.506277162205933],[-105.21645216452164,21.516408625825235],[-105.23085230852308,21.52485151217465],[-105.24525245252453,21.526540089444524],[-105.24885248852489,21.514720048555347],[-105.26325263252632,21.513031471285473],[-105.28125281252812,21.528228666714412],[-105.32085320853209,21.54511443941324],[-105.39285392853928,21.589017448430184],[-105.41445414454144,21.60083748931936],[-105.44685446854469,21.631231880177253],[-105.46125461254613,21.671757734654435],[-105.54765547655477,21.83048399802341],[-105.6340563405634,21.95543871599473],[-105.64845648456485,21.99258741593215],[-105.65565655656556,22.046621888568396],[-105.64845648456485,22.190150956508433],[-105.65565655656556,22.256005470033855],[-105.68085680856808,22.34718864260752],[-105.7060570605706,22.421486042482357],[-105.72045720457204,22.47214336057884],[-105.73125731257312,22.504226328706608],[-105.71685716857168,22.51435779232591],[-105.7240572405724,22.52786641048496],[-105.73125731257312,22.541375028644026],[-105.7420574205742,22.546440760453677],[-105.74925749257493,22.5346207195645],[-105.75645756457564,22.5346207195645],[-105.76725767257672,22.59034376947062],[-105.79965799657997,22.637623933027342],[-105.88245882458824,22.713609910172067],[-105.92565925659257,22.765955805538425],[-105.94365943659436,22.78115300096738],[-105.98325983259832,22.806481660015606],[-105.99045990459905,22.811547391825258],[-105.9940599405994,22.81492454636502],[-105.99765997659976,22.818301700904797],[-106.00126001260013,22.823367432714434],[-106.00486004860048,22.830121741793974],[-105.98325983259832,22.85713897811209],[-105.99765997659976,22.853761823572327],[-106.00846008460084,22.848696091762676],[-106.02286022860228,22.840253205413262],[-106.03366033660336,22.830121741793974],[-106.22086220862208,23.05132536414861],[-106.22806228062281,23.058079673228136],[-106.2460624606246,23.06483398230766],[-106.25686256862568,23.068211136847438],[-106.27846278462785,23.083408332276377],[-106.3720637206372,23.184722968469345],[-106.38646386463864,23.193165854818744],[-106.40086400864008,23.18978870027898],[-106.41166411664116,23.183034391199456],[-106.41886418864189,23.179657236659693],[-106.42966429664297,23.184722968469345],[-106.43326433264332,23.193165854818744],[-106.42966429664297,23.230314554756177],[-106.43686436864368,23.243823172915228],[-106.46926469264693,23.29448049101171],[-106.48726487264872,23.307989109170776],[-106.49086490864909,23.314743418250302],[-106.47646476464764,23.32149772732984],[-106.48006480064801,23.328252036409367],[-106.48006480064801,23.33331776821902],[-106.48366483664836,23.33838350002867],[-106.48726487264872,23.340072077298544],[-106.52326523265232,23.407615168093855],[-106.5340653406534,23.417746631713143],[-106.5520655206552,23.422812363522794],[-106.570065700657,23.43463240441197],[-106.61326613266132,23.468403949809627],[-106.61686616866169,23.473469681619278],[-106.62046620466204,23.480223990698804],[-106.63126631266313,23.505552649747045],[-106.64206642066421,23.517372690636236],[-106.66726667266673,23.529192731525413],[-106.68166681666817,23.54607850422424],[-106.70326703267033,23.57647289508212],[-106.73206732067321,23.606867285940012],[-106.750067500675,23.61868732682919],[-106.79326793267933,23.632195944988254],[-106.8040680406804,23.652458872226845],[-106.81486814868148,23.699739035783566],[-106.82566825668256,23.718313385752268],[-106.84366843668437,23.735199158451096],[-106.86166861668616,23.755462085689686],[-106.87246872468724,23.797676517436756],[-106.90126901269012,23.84664525826335],[-107.03447034470345,23.980042862584085],[-107.08487084870849,24.01550298525163],[-107.10287102871028,24.022257294331155],[-107.11727117271172,24.02901160341068],[-107.17127171271713,24.0762917669674],[-107.31167311673117,24.16578636227119],[-107.37647376473764,24.206312216748373],[-107.38727387273873,24.21813225763755],[-107.39447394473945,24.241772339415903],[-107.40527405274052,24.251903803035205],[-107.44487444874449,24.268789575734033],[-107.48087480874808,24.294118234782275],[-107.5420754207542,24.346464130148632],[-107.77607776077761,24.47817315719948],[-107.7940779407794,24.493370352628432],[-107.80127801278013,24.511944702597134],[-107.79767797677977,24.522076166216436],[-107.79047790477904,24.523764743486325],[-107.78327783277832,24.518699011676674],[-107.77607776077761,24.511944702597134],[-107.77247772477725,24.506878970787497],[-107.77247772477725,24.501813238977846],[-107.77247772477725,24.491681775358543],[-107.76887768877688,24.48999319808867],[-107.68967689676896,24.449467343611474],[-107.67887678876788,24.4477787663416],[-107.5420754207542,24.36503848011735],[-107.52767527675276,24.35828417103781],[-107.51327513275133,24.351529861958284],[-107.49887498874989,24.344775552878758],[-107.50967509675097,24.353218439228172],[-107.53847538475385,24.370104211926986],[-107.55287552875528,24.3785470982764],[-107.54927549275493,24.388678561895702],[-107.53127531275312,24.380235675546288],[-107.49887498874989,24.35828417103781],[-107.49527495274953,24.361661325577572],[-107.49167491674916,24.366727057387223],[-107.49167491674916,24.370104211926986],[-107.49527495274953,24.370104211926986],[-107.50247502475024,24.370104211926986],[-107.5060750607506,24.370104211926986],[-107.49527495274953,24.381924252816177],[-107.48447484474845,24.39036713916559],[-107.47727477274772,24.40049860278488],[-107.47727477274772,24.419072952753595],[-107.48087480874808,24.432581570912646],[-107.52047520475205,24.511944702597134],[-107.53127531275312,24.522076166216436],[-107.54567545675457,24.528830475295962],[-107.56367563675637,24.53051905256585],[-107.5780757807578,24.527141898026088],[-107.59247592475924,24.520387588946548],[-107.60327603276032,24.50856754805737],[-107.58887588875889,24.50519039351761],[-107.56007560075601,24.51532185713691],[-107.55287552875528,24.50856754805737],[-107.55647556475564,24.500124661707957],[-107.58527585275853,24.474796002659716],[-107.59247592475924,24.46804169358019],[-107.62487624876249,24.457910229960888],[-107.64287642876428,24.469730270850064],[-107.65727657276572,24.48830462081878],[-107.67527675276753,24.501813238977846],[-107.69687696876969,24.48999319808867],[-107.7040770407704,24.48830462081878],[-107.71127711277113,24.48999319808867],[-107.71847718477184,24.491681775358543],[-107.740077400774,24.506878970787497],[-107.74367743677436,24.51532185713691],[-107.74727747277473,24.522076166216436],[-107.74727747277473,24.5355847843755],[-107.75087750877509,24.542339093455027],[-107.7580775807758,24.547404825264678],[-107.77247772477725,24.55247055707433],[-107.77967779677796,24.555847711614092],[-107.81927819278192,24.594684988821385],[-107.83367833678336,24.59806214336116],[-107.8480784807848,24.589619257011748],[-107.8660786607866,24.60819360698045],[-107.88767887678877,24.623390802409403],[-107.91287912879129,24.63521084329858],[-107.93807938079381,24.638587997838343],[-107.93087930879308,24.62845653421904],[-107.92367923679237,24.621702225139515],[-107.90927909279092,24.611570761520213],[-107.87687876878769,24.579487793392445],[-107.86247862478625,24.56766775250327],[-107.81927819278192,24.544027670724915],[-107.80487804878048,24.528830475295962],[-107.83367833678336,24.5355847843755],[-107.90927909279092,24.57779921612257],[-107.99567995679956,24.64871946145763],[-108.00648006480064,24.662228079616696],[-108.010080100801,24.67742527504565],[-108.01368013680137,24.714573974983068],[-108.01728017280172,24.731459747681896],[-108.02808028080281,24.74834552038071],[-108.03888038880389,24.763542715809663],[-108.04968049680497,24.768608447619314],[-108.05328053280533,24.771985602159077],[-108.06048060480605,24.778739911238603],[-108.06048060480605,24.787182797588017],[-108.05688056880568,24.788871374857905],[-108.0460804608046,24.788871374857905],[-108.03528035280353,24.785494220318142],[-108.01728017280172,24.77536275669884],[-108.010080100801,24.768608447619314],[-107.99567995679956,24.758476984000012],[-107.97767977679777,24.756788406730124],[-107.97047970479704,24.778739911238603],[-107.97767977679777,24.79731426120732],[-107.98847988479885,24.814200033906147],[-108.00288002880029,24.829397229335086],[-108.01368013680137,24.83615153841461],[-107.99927999279993,24.847971579303803],[-107.99927999279993,24.863168774732742],[-108.00648006480064,24.898628897400272],[-108.00288002880029,24.913826092829225],[-107.99927999279993,24.927334710988276],[-107.98487984879849,24.952663370036518],[-107.99567995679956,24.96786056546547],[-108.03528035280353,24.99825495632335],[-108.04968049680497,25.001632110863127],[-108.04968049680497,24.98305776089441],[-108.03528035280353,24.929023288258165],[-108.03528035280353,24.923957556448514],[-108.03168031680316,24.917203247368988],[-108.03168031680316,24.90538320647981],[-108.03888038880389,24.87330023835203],[-108.04248042480424,24.8378401156845],[-108.04248042480424,24.827708652065198],[-108.04968049680497,24.82264292025556],[-108.05688056880568,24.824331497525435],[-108.06048060480605,24.826020074795323],[-108.06408064080641,24.829397229335086],[-108.07128071280712,24.834462961144737],[-108.07848078480785,24.8378401156845],[-108.0820808208082,24.83277438387485],[-108.0820808208082,24.826020074795323],[-108.08928089280893,24.82264292025556],[-108.12528125281253,24.844594424764026],[-108.15408154081541,24.883431701971332],[-108.23328233282332,25.028649347181243],[-108.25848258482584,25.055666583499374],[-108.29448294482944,25.084372397087378],[-108.31248312483125,25.092815283436792],[-108.32328323283232,25.099569592516318],[-108.32688326883269,25.111389633405494],[-108.30528305283053,25.111389633405494],[-108.28368283682836,25.106323901595843],[-108.26568265682657,25.096192437976555],[-108.25848258482584,25.0809952425476],[-108.19728197281972,25.01514072902218],[-108.18648186481865,24.986434915434174],[-108.18288182881828,24.981369183624523],[-108.17568175681757,24.981369183624523],[-108.1720817208172,24.98305776089441],[-108.16488164881649,24.986434915434174],[-108.16488164881649,24.988123492704062],[-108.14328143281432,24.976303451814886],[-108.13968139681397,24.974614874544997],[-108.12888128881289,24.976303451814886],[-108.12888128881289,24.9847463381643],[-108.12888128881289,25.00500926540289],[-108.13248132481324,25.018517883561955],[-108.14328143281432,25.018517883561955],[-108.15408154081541,25.016829306292067],[-108.16488164881649,25.021895038101718],[-108.16128161281613,25.028649347181243],[-108.15408154081541,25.04553511988007],[-108.15048150481505,25.050600851689723],[-108.13968139681397,25.057355160769248],[-108.1360813608136,25.06073231530901],[-108.13248132481324,25.055666583499374],[-108.12528125281253,25.04722369714996],[-108.10728107281072,25.026960769911355],[-108.08928089280893,25.02020646083183],[-108.0460804608046,25.01514072902218],[-108.01368013680137,25.001632110863127],[-108.00648006480064,25.01007499721254],[-108.00288002880029,25.02020646083183],[-108.00288002880029,25.032026501721006],[-108.10728107281072,25.116455365215145],[-108.1180811808118,25.12320967429467],[-108.1360813608136,25.12489825156456],[-108.12888128881289,25.116455365215145],[-108.12888128881289,25.111389633405494],[-108.1360813608136,25.106323901595843],[-108.15048150481505,25.10463532432597],[-108.16128161281613,25.106323901595843],[-108.1720817208172,25.113078210675383],[-108.19008190081901,25.131652560644085],[-108.21168211682117,25.16711268331163],[-108.21888218882188,25.173866992391154],[-108.23328233282332,25.17217841512128],[-108.24048240482405,25.16542410604174],[-108.25128251282513,25.16035837423209],[-108.26568265682657,25.16542410604174],[-108.28008280082801,25.158669796962215],[-108.30528305283053,25.156981219692327],[-108.3340833408334,25.16035837423209],[-108.35208352083521,25.168801260581503],[-108.35568355683557,25.200884228709285],[-108.35568355683557,25.20594996051892],[-108.34848348483484,25.204261383249047],[-108.32328323283232,25.190752765089982],[-108.31248312483125,25.18568703328033],[-108.31608316083161,25.199195651439396],[-108.31608316083161,25.2279014650274],[-108.31968319683196,25.241410083186466],[-108.33048330483305,25.251541546805754],[-108.35208352083521,25.261673010425056],[-108.36288362883629,25.27011589677447],[-108.38448384483844,25.162046951501978],[-108.39888398883988,25.14516117880315],[-108.40248402484025,25.153604065152564],[-108.39528395283952,25.199195651439396],[-108.39528395283952,25.214392846868336],[-108.40608406084061,25.23465577410694],[-108.42048420484204,25.24985296953588],[-108.43488434884348,25.259984433155168],[-108.44928449284492,25.27011589677447],[-108.55368553685537,25.30726459671189],[-108.61488614886149,25.342724719379433],[-108.65448654486545,25.35454476026861],[-108.69768697686976,25.357921914808372],[-108.73368733687336,25.357921914808372],[-108.70848708487084,25.37311911023731],[-108.66888668886689,25.371430532967437],[-108.59328593285933,25.351167605728847],[-108.61848618486185,25.361299069348135],[-108.65808658086581,25.391693460206028],[-108.68688686886868,25.398447769285553],[-108.74088740887409,25.383250573856614],[-108.76608766087661,25.381561996586726],[-108.78048780487805,25.398447769285553],[-108.73728737287372,25.398447769285553],[-108.73008730087301,25.405202078365093],[-108.74088740887409,25.423776428333795],[-108.74448744487445,25.43053073741332],[-108.74448744487445,25.438973623762735],[-108.7480874808748,25.444039355572386],[-108.75528755287553,25.44741651011215],[-108.75888758887588,25.445727932842274],[-108.77328773287732,25.435596469222972],[-108.78048780487805,25.433907891953098],[-108.76968769687697,25.464302282810976],[-108.76608766087661,25.47949947823993],[-108.76608766087661,25.525091064526762],[-108.76968769687697,25.5402882599557],[-108.77328773287732,25.54197683722559],[-108.7840878408784,25.53691110541594],[-108.79488794887949,25.53691110541594],[-108.82728827288273,25.548731146305116],[-108.83088830888309,25.55210830084488],[-108.83088830888309,25.55717403265453],[-108.83448834488344,25.56223976446418],[-108.8380883808838,25.563928341734055],[-108.84528845288453,25.56223976446418],[-108.85248852488525,25.55717403265453],[-108.85968859688596,25.55717403265453],[-108.87768877688777,25.558862609924418],[-108.88848888488884,25.563928341734055],[-108.89568895688957,25.560551187194292],[-108.89568895688957,25.543665414495464],[-108.89208892088921,25.531845373606288],[-108.88848888488884,25.526779641796637],[-108.88488884888848,25.52002533271711],[-108.88128881288813,25.508205291827935],[-108.88488884888848,25.496385250938758],[-108.88848888488884,25.489630941859218],[-108.89208892088921,25.484565210049567],[-108.89928899288992,25.47781090097004],[-108.91728917289173,25.467679437350753],[-108.9280892808928,25.465990860080865],[-108.94248942489425,25.47274516916039],[-108.95328953289533,25.487942364589344],[-108.94608946089461,25.486253787319455],[-108.93888938889388,25.489630941859218],[-108.93888938889388,25.49469667366887],[-108.94248942489425,25.501450982748395],[-108.95328953289533,25.503139560018283],[-109.0000900009,25.49976240547852],[-109.01449014490144,25.49300809639898],[-109.01809018090181,25.482876632779693],[-109.00729007290073,25.467679437350753],[-109.0360903609036,25.465990860080865],[-109.06489064890648,25.484565210049567],[-109.11529115291152,25.53691110541594],[-109.09369093690937,25.545353991765353],[-109.08649086490864,25.548731146305116],[-109.08289082890829,25.558862609924418],[-109.07569075690756,25.570682650813595],[-109.07209072090721,25.580814114432883],[-109.05769057690577,25.584191268972646],[-109.02529025290252,25.57237122808347],[-109.01449014490144,25.574059805353357],[-109.00369003690037,25.57743695989312],[-108.99648996489965,25.568994073543706],[-108.99288992889929,25.548731146305116],[-108.98208982089821,25.543665414495464],[-108.98208982089821,25.545353991765353],[-108.97848978489785,25.550419723575004],[-108.97128971289713,25.563928341734055],[-108.97128971289713,25.568994073543706],[-108.97128971289713,25.580814114432883],[-108.97128971289713,25.584191268972646],[-108.96768967689677,25.589257000782297],[-108.96048960489604,25.590945578052185],[-108.90648906489065,25.638225741608892],[-108.89568895688957,25.653422937037845],[-108.89568895688957,25.658488668847497],[-108.89568895688957,25.66186582338726],[-108.89928899288992,25.66693155519691],[-108.89568895688957,25.671997287006548],[-108.89208892088921,25.675374441546325],[-108.88848888488884,25.678751596086087],[-108.88488884888848,25.678751596086087],[-108.88128881288813,25.685505905165613],[-108.88128881288813,25.71758887329338],[-108.8740887408874,25.736163223262096],[-108.83448834488344,25.768246191389863],[-108.82728827288273,25.790197695898343],[-108.8380883808838,25.805394891327282],[-108.84888848888488,25.79188627316823],[-108.87048870488705,25.753048995960924],[-108.88488884888848,25.732786068722334],[-108.89928899288992,25.700703100594552],[-108.91728917289173,25.6871944824355],[-108.94248942489425,25.6770630188162],[-108.98928989289892,25.663554400657134],[-109.01089010890108,25.650045782498083],[-109.04329043290433,25.60445419621125],[-109.06129061290612,25.590945578052185],[-109.08649086490864,25.59769988713171],[-109.11529115291152,25.584191268972646],[-109.12969129691297,25.584191268972646],[-109.14409144091441,25.594322732591948],[-109.15489154891549,25.6179628143703],[-109.16569165691656,25.638225741608892],[-109.17289172891729,25.648357205228194],[-109.180091800918,25.653422937037845],[-109.19449194491945,25.65511151430772],[-109.22329223292233,25.668620132466785],[-109.24849248492485,25.685505905165613],[-109.25569255692557,25.68212875062585],[-109.2520925209252,25.670308709736673],[-109.24489244892449,25.658488668847497],[-109.23769237692376,25.650045782498083],[-109.16929169291693,25.59769988713171],[-109.15129151291512,25.575748382623246],[-109.15489154891549,25.55717403265453],[-109.180091800918,25.575748382623246],[-109.20169201692016,25.60445419621125],[-109.22689226892268,25.628094277989604],[-109.26289262892628,25.63991431887878],[-109.37449374493745,25.636537164339018],[-109.41049410494105,25.646668627958306],[-109.38889388893888,25.66017724611737],[-109.36009360093601,25.668620132466785],[-109.32769327693276,25.668620132466785],[-109.2988929889299,25.658488668847497],[-109.30249302493024,25.6770630188162],[-109.2988929889299,25.693948791515027],[-109.2988929889299,25.69732594605479],[-109.2880928809288,25.705768832404203],[-109.2880928809288,25.710834564213854],[-109.2880928809288,25.715900296023506],[-109.29169291692916,25.71927745056327],[-109.29169291692916,25.720966027833157],[-109.29529295292953,25.72434318237292],[-109.30249302493024,25.736163223262096],[-109.32049320493205,25.747983264151273],[-109.3420934209342,25.758114727770575],[-109.36009360093601,25.763180459580212],[-109.3780937809378,25.761491882310338],[-109.38889388893888,25.756426150500687],[-109.39609396093961,25.74291753234162],[-109.39609396093961,25.685505905165613],[-109.39969399693997,25.678751596086087],[-109.41049410494105,25.693948791515027],[-109.40689406894069,25.710834564213854],[-109.40329403294032,25.736163223262096],[-109.40689406894069,25.75980330504045],[-109.4140941409414,25.768246191389863],[-109.43569435694357,25.776689077739277],[-109.43929439294392,25.793574850438105],[-109.43569435694357,25.813837777676696],[-109.4248942489425,25.852675054884003],[-109.42129421294213,25.861117941233417],[-109.41769417694177,25.86280651850329],[-109.41769417694177,25.881380868472007],[-109.41769417694177,25.896578063900947],[-109.42129421294213,25.90502095025036],[-109.43209432094321,25.920218145679314],[-109.43929439294392,25.94216965018778],[-109.43929439294392,25.960744000156495],[-109.43929439294392,26.006335586443328],[-109.43209432094321,26.021532781872267],[-109.39609396093961,26.077255831778402],[-109.36009360093601,26.11440453171582],[-109.3420934209342,26.13466745895441],[-109.33129331293313,26.175193313431592],[-109.2880928809288,26.244424981496792],[-109.27009270092701,26.278196526894448],[-109.26649266492664,26.293393722323387],[-109.26289262892628,26.303525185942675],[-109.25569255692557,26.3018366086728],[-109.2520925209252,26.290016567783624],[-109.26289262892628,26.268065063275145],[-109.27009270092701,26.262999331465494],[-109.27369273692737,26.25455644511608],[-109.28089280892809,26.247802136036555],[-109.28449284492845,26.24104782695703],[-109.28449284492845,26.23935924968714],[-109.2880928809288,26.225850631528075],[-109.2880928809288,26.203899127019596],[-109.2880928809288,26.19376766340031],[-109.29529295292953,26.183636199781006],[-109.29529295292953,26.17181615889183],[-109.29169291692916,26.163373272542415],[-109.28089280892809,26.159996118002653],[-109.27369273692737,26.168439004352066],[-109.26649266492664,26.180259045241243],[-109.26289262892628,26.210653436099136],[-109.23049230492305,26.262999331465494],[-109.22689226892268,26.28157368143421],[-109.22689226892268,26.333919576800568],[-109.2160921609216,26.34405104041987],[-109.19809198091981,26.34405104041987],[-109.17649176491764,26.33898530861022],[-109.16569165691656,26.330542422260805],[-109.15489154891549,26.31196807229209],[-109.15849158491585,26.293393722323387],[-109.16569165691656,26.27650794962456],[-109.17649176491764,26.268065063275145],[-109.17649176491764,26.262999331465494],[-109.15489154891549,26.25455644511608],[-109.10809108091081,26.215719167908787],[-109.09369093690937,26.2140305906389],[-109.09369093690937,26.225850631528075],[-109.10809108091081,26.24949071330643],[-109.10809108091081,26.262999331465494],[-109.10089100891008,26.268065063275145],[-109.090090900909,26.271442217814908],[-109.08289082890829,26.27650794962456],[-109.08649086490864,26.290016567783624],[-109.11529115291152,26.288327990513736],[-109.14049140491404,26.332230999530694],[-109.15849158491585,26.36431396765846],[-109.18369183691837,26.377822585817526],[-109.180091800918,26.37444543127775],[-109.17649176491764,26.371068276737986],[-109.17289172891729,26.366002544928335],[-109.16929169291693,26.35924823584881],[-109.19089190891908,26.36431396765846],[-109.20169201692016,26.366002544928335],[-109.21249212492124,26.36431396765846],[-109.24129241292412,26.335608154070457],[-109.24849248492485,26.333919576800568],[-109.2520925209252,26.34911677222952],[-109.23769237692376,26.42003701756458],[-109.24489244892449,26.45887429477189],[-109.25569255692557,26.497711571979195],[-109.27729277292772,26.52135165375755],[-109.31329313293132,26.56863181731427],[-109.35649356493565,26.597337630902274],[-109.38529385293853,26.637863485379455],[-109.41769417694177,26.66150356715781],[-109.44649446494465,26.67163503077711],[-109.47529475294753,26.675012185316874],[-109.48249482494825,26.681766494396413],[-109.47169471694717,26.685143648936176],[-109.45009450094501,26.680077917126525],[-109.42849428494284,26.67163503077711],[-109.43209432094321,26.690209380745813],[-109.44289442894429,26.69358653528559],[-109.43569435694357,26.703717998904878],[-109.44289442894429,26.71384946252418],[-109.46089460894609,26.715538039794055],[-109.47169471694717,26.717226617063943],[-109.47889478894788,26.72904665795312],[-109.48249482494825,26.742555276112185],[-109.49329493294933,26.737489544302534],[-109.50769507695077,26.72904665795312],[-109.51129511295113,26.747621007921836],[-109.52929529295292,26.7509981624616],[-109.540095400954,26.739178121572422],[-109.5508955089551,26.727358080683246],[-109.55449554495544,26.717226617063943],[-109.54369543695437,26.712160885254292],[-109.53289532895329,26.710472307984418],[-109.52209522095221,26.70878373071453],[-109.51849518495185,26.702029421635004],[-109.52209522095221,26.695275112555464],[-109.52209522095221,26.68852080347594],[-109.5040950409504,26.678389339856636],[-109.49329493294933,26.676700762586762],[-109.49329493294933,26.669946453507222],[-109.52929529295292,26.683455071666287],[-109.60489604896048,26.696963689825353],[-109.64809648096481,26.69358653528559],[-109.66249662496625,26.683455071666287],[-109.66249662496625,26.673323608047],[-109.69489694896949,26.678389339856636],[-109.72369723697237,26.6918979580157],[-109.76689766897668,26.70709515344464],[-109.78489784897849,26.71891519433383],[-109.83169831698316,26.76619535789054],[-109.85689856898568,26.801655480558082],[-109.86409864098641,26.835427025955738],[-109.87129871298713,26.870887148623268],[-109.88569885698857,26.892838653131747],[-109.90009900099001,26.923233043989626],[-109.90369903699036,26.93843023941858],[-109.91089910899109,26.951938857577645],[-109.94689946899469,26.997530443864477],[-109.94329943299432,27.007661907483765],[-109.93249932499324,26.9941532893247],[-109.90369903699036,26.95362743484752],[-109.8820988209882,26.940118816688454],[-109.90729907299072,26.99584186659459],[-109.91089910899109,27.017793371103068],[-109.9180991809918,27.060007802850137],[-109.95049950499505,27.09884508005743],[-109.9648996489965,27.108976543676732],[-109.98289982899828,27.115730852756258],[-110.00090000900009,27.117419430026146],[-110.01530015300153,27.11910800729602],[-110.02250022500225,27.117419430026146],[-110.02970029700296,27.114042275486383],[-110.03690036900369,27.107287966406844],[-110.0441004410044,27.102222234597193],[-110.05130051300513,27.090402193708016],[-110.06210062100621,27.081959307358602],[-110.0909009090091,27.102222234597193],[-110.14850148501485,27.11910800729602],[-110.19170191701917,27.127550893645434],[-110.2169021690217,27.134305202724974],[-110.24210242102421,27.137682357264737],[-110.26370263702637,27.142748089074388],[-110.28890288902889,27.147813820884025],[-110.32130321303212,27.164699593582853],[-110.33570335703357,27.171453902662392],[-110.37170371703716,27.20860260259981],[-110.40410404104041,27.24575130253723],[-110.44730447304472,27.274457116125234],[-110.46530465304653,27.282900002474648],[-110.50130501305013,27.29134288882406],[-110.52290522905228,27.289654311554173],[-110.52290522905228,27.299785775173476],[-110.49410494104941,27.298097197903587],[-110.46530465304653,27.296408620633713],[-110.44010440104401,27.29303146609395],[-110.42570425704257,27.30147435244335],[-110.44370443704437,27.318360125142178],[-110.47250472504724,27.345377361460308],[-110.47970479704797,27.358885979619373],[-110.47610476104761,27.362263134159136],[-110.47250472504724,27.37070602050855],[-110.47250472504724,27.377460329588075],[-110.48690486904869,27.380837484127838],[-110.49050490504905,27.384214638667615],[-110.50130501305013,27.39265752501703],[-110.51930519305193,27.379148906857964],[-110.53010530105301,27.372394597778424],[-110.54090540905409,27.372394597778424],[-110.55170551705517,27.377460329588075],[-110.55530555305553,27.384214638667615],[-110.55530555305553,27.409543297715857],[-110.55890558905588,27.434871956764084],[-110.58770587705877,27.450069152193038],[-110.58770587705877,27.512546511178698],[-110.59850598505984,27.542940902036577],[-110.62730627306273,27.608795415562014],[-110.62730627306273,27.64087838368978],[-110.61650616506165,27.65776415638861],[-110.59850598505984,27.664518465468134],[-110.58050580505805,27.667895620007897],[-110.56970569705697,27.681404238166962],[-110.56970569705697,27.6966014335959],[-110.58050580505805,27.69997858813568],[-110.5949059490595,27.69322427905614],[-110.60210602106021,27.681404238166962],[-110.5949059490595,27.715175783564618],[-110.58770587705877,27.721930092644143],[-110.57690576905769,27.728684401723683],[-110.56250562505625,27.728684401723683],[-110.55170551705517,27.732061556263446],[-110.5481054810548,27.742193019882748],[-110.58050580505805,27.74557017442251],[-110.59850598505984,27.752324483502036],[-110.60210602106021,27.767521678930976],[-110.58770587705877,27.791161760709343],[-110.60210602106021,27.792850337979218],[-110.61290612906129,27.80129322432863],[-110.61650616506165,27.811424687947934],[-110.60930609306092,27.824933306107],[-110.60570605706057,27.814801842487697],[-110.59850598505984,27.813113265217808],[-110.59130591305913,27.81817899702746],[-110.58770587705877,27.836753346996176],[-110.58050580505805,27.83844192426605],[-110.56970569705697,27.83844192426605],[-110.51930519305193,27.84519623334559],[-110.50850508505084,27.853639119695004],[-110.5121051210512,27.873902046933594],[-110.53370533705336,27.86545916058418],[-110.59130591305913,27.88741066509266],[-110.61650616506165,27.88572208782277],[-110.60570605706057,27.87559062420347],[-110.60930609306092,27.87052489239383],[-110.62370623706236,27.872213469663706],[-110.65610656106561,27.892476396902296],[-110.67050670506706,27.897542128711947],[-110.74250742507425,27.914427901410775],[-110.77850778507785,27.916116478680664],[-110.81090810908108,27.914427901410775],[-110.85050850508505,27.90598501506136],[-110.85050850508505,27.914427901410775],[-110.83970839708397,27.916116478680664],[-110.80730807308073,27.92793651956984],[-110.81450814508145,27.941445137728905],[-110.82170821708218,27.94988802407832],[-110.82170821708218,27.960019487697608],[-110.82170821708218,27.971839528586784],[-110.82890828908289,27.98365956947596],[-110.83970839708397,27.988725301285612],[-110.85050850508505,27.988725301285612],[-110.85770857708577,27.978593837666324],[-110.85770857708577,27.951576601348194],[-110.86130861308612,27.934690828649366],[-110.8721087210872,27.9211822104903],[-110.89010890108901,27.899230705981836],[-110.87570875708757,27.9026078605216],[-110.86850868508685,27.899230705981836],[-110.86490864908649,27.889099242362533],[-110.86130861308612,27.87559062420347],[-110.86850868508685,27.86377058331429],[-110.87570875708757,27.846884810615464],[-110.88650886508864,27.83844192426605],[-110.89010890108901,27.848573387885352],[-110.89370893708937,27.85026196515524],[-110.91890918909189,27.878967778743245],[-110.92250922509224,27.88065635601312],[-110.94050940509405,27.884033510552882],[-110.94770947709476,27.88572208782277],[-110.95130951309513,27.890787819632422],[-110.95490954909549,27.897542128711947],[-110.95850958509585,27.9026078605216],[-110.96570965709657,27.90598501506136],[-110.95490954909549,27.916116478680664],[-110.94770947709476,27.919493633220426],[-110.93690936909368,27.9211822104903],[-110.95490954909549,27.936379405919254],[-110.97650976509765,27.951576601348194],[-110.9981099810998,27.96339664223737],[-111.01971019710197,27.961708064967496],[-111.04131041310413,27.956642333157845],[-111.05931059310593,27.936379405919254],[-111.0881108811088,27.936379405919254],[-111.10611106111061,27.934690828649366],[-111.10251102511025,27.944822292268668],[-111.09531095310953,27.951576601348194],[-111.10251102511025,27.961708064967496],[-111.11691116911169,27.97015095131691],[-111.12771127711277,27.96846237404702],[-111.14211142111421,27.98365956947596],[-111.17091170911709,27.9904138785555],[-111.18171181711817,28.00561107398444],[-111.19971199711996,28.022496846683268],[-111.22131221312213,28.044448351191747],[-111.250112501125,28.051202660271272],[-111.26451264512644,28.07315416477975],[-111.28251282512825,28.091728514748453],[-111.30051300513004,28.128877214685886],[-111.33291332913329,28.160960182813653],[-111.340113401134,28.204863191830597],[-111.35091350913508,28.2149946554499],[-111.35091350913508,28.216683232719774],[-111.36531365313652,28.2149946554499],[-111.37251372513725,28.218371809989662],[-111.3761137611376,28.221748964529425],[-111.3761137611376,28.228503273608965],[-111.38331383313833,28.242011891768016],[-111.3869138691387,28.263963396276495],[-111.39411394113941,28.274094859895797],[-111.43731437314374,28.30786640529344],[-111.45171451714516,28.326440755262155],[-111.45891458914589,28.346703682500745],[-111.45171451714516,28.358523723389922],[-111.44091440914409,28.368655187009225],[-111.43731437314374,28.387229536977927],[-111.47331473314733,28.3804752278984],[-111.51651516515165,28.393983846057466],[-111.58491584915849,28.41593535056593],[-111.64971649716497,28.44464116415395],[-111.6749167491675,28.453084050503364],[-111.69651696516965,28.458149782313],[-111.70731707317073,28.45983835958289],[-111.72531725317253,28.50036421406007],[-111.74331743317433,28.539201491267377],[-111.76131761317613,28.58479307755421],[-111.91971919719197,28.719879259144818],[-111.94131941319412,28.74689649546295],[-111.94851948519485,28.757027959082237],[-111.94491944919449,28.763782268161776],[-111.93411934119341,28.763782268161776],[-111.91971919719197,28.76715942270154],[-111.90531905319052,28.778979463590716],[-111.89451894518945,28.780668040860604],[-111.88731887318873,28.7705365772413],[-111.88371883718837,28.760405113622014],[-111.87651876518765,28.753650804542474],[-111.86571865718658,28.75027365000271],[-111.86211862118621,28.753650804542474],[-111.85851858518585,28.762093690891888],[-111.85491854918548,28.773913731781064],[-111.85851858518585,28.784045195400367],[-111.86931869318693,28.80261954536907],[-111.88371883718837,28.80261954536907],[-111.90171901719017,28.799242390829306],[-111.92331923319233,28.800930968099195],[-111.95211952119521,28.824571049877548],[-111.96651966519664,28.841456822576376],[-112.0061200612006,28.85496544073544],[-112.03132031320312,28.861719749814966],[-112.03492034920349,28.880294099783683],[-112.04932049320493,28.885359831593334],[-112.04572045720457,28.895491295212622],[-112.06012060120601,28.908999913371687],[-112.08532085320853,28.924197108800627],[-112.09252092520924,28.93939430422958],[-112.09972099720997,28.951214345118757],[-112.10692106921069,28.957968654198282],[-112.11412114121141,28.961345808738045],[-112.12852128521286,28.964722963277822],[-112.15012150121501,28.963034386007934],[-112.1681216812168,28.966411540547696],[-112.17172171721717,28.97316584962722],[-112.16092160921609,28.97992015870676],[-112.15372153721538,28.986674467786287],[-112.15372153721538,28.99680593140559],[-112.15732157321573,29.005248817755003],[-112.17172171721717,29.047463249502073],[-112.17172171721717,29.071103331280426],[-112.18612186121861,29.07448048582019],[-112.18252182521825,29.08461194943949],[-112.17532175321753,29.098120567598542],[-112.16452164521645,29.109940608487733],[-112.16452164521645,29.12007207210702],[-112.1789217892179,29.140334999345612],[-112.19332193321932,29.15722077204444],[-112.18972189721897,29.167352235663742],[-112.20772207722077,29.180860853822807],[-112.22572225722257,29.187615162902333],[-112.2149221492215,29.228141017379514],[-112.21132211322113,29.253469676427756],[-112.22572225722257,29.280486912745886],[-112.24012240122401,29.315947035413416],[-112.26172261722617,29.32945565357248],[-112.31572315723157,29.331144230842355],[-112.32292322923229,29.326078499032718],[-112.33012330123302,29.321012767223067],[-112.33372333723337,29.315947035413416],[-112.33012330123302,29.307504149064002],[-112.33372333723337,29.297372685444714],[-112.3409234092341,29.300749839984476],[-112.35532355323554,29.31932418995318],[-112.39492394923948,29.332832808112244],[-112.41292412924129,29.34465284900142],[-112.420124201242,29.376735817129187],[-112.40572405724058,29.403753053447318],[-112.3841238412384,29.442590330654625],[-112.37692376923769,29.462853257893215],[-112.37692376923769,29.48649333967157],[-112.38772387723877,29.498313380560745],[-112.40932409324093,29.503379112370396],[-112.420124201242,29.510133421449922],[-112.4309243092431,29.520264885069224],[-112.42732427324273,29.542216389577703],[-112.4309243092431,29.560790739546405],[-112.4669246692467,29.586119398594647],[-112.50652506525066,29.61651378945254],[-112.53172531725318,29.675613993898438],[-112.53532535325353,29.687434034787614],[-112.54252542525425,29.697565498406902],[-112.56052560525605,29.695876921137028],[-112.57852578525785,29.717828425645493],[-112.58572585725857,29.733025621074447],[-112.59652596525964,29.77186289828174],[-112.61092610926109,29.792125825520344],[-112.62532625326253,29.810700175489046],[-112.63972639726397,29.825897370917986],[-112.65772657726578,29.88330899809401],[-112.66852668526685,29.89681761625306],[-112.68652686526865,29.906949079872362],[-112.69372693726937,29.9035719253326],[-112.70812708127082,29.910326234412125],[-112.72972729727297,29.9035719253326],[-112.74772747727476,29.910326234412125],[-112.75132751327513,29.92383485257119],[-112.74052740527405,29.940720625270018],[-112.74412744127441,29.95929497523872],[-112.73692736927369,29.988000788826724],[-112.72972729727297,30.013329447874966],[-112.73692736927369,30.02852664330392],[-112.74772747727476,30.04203526146297],[-112.75852758527586,30.0589210341618],[-112.75852758527586,30.075806806860626],[-112.75132751327513,30.129841279496873],[-112.7549275492755,30.185564329403007],[-112.76572765727657,30.21089298845125],[-112.78012780127801,30.22946733841995],[-112.79452794527946,30.24635311111878],[-112.8089280892809,30.258173152007956],[-112.83052830528305,30.269993192897147],[-112.83772837728377,30.269993192897147],[-112.8449284492845,30.27168177016702],[-112.85572855728557,30.263238883817607],[-112.85932859328594,30.268304615627258],[-112.84852848528485,30.28856754286585],[-112.8449284492845,30.31896193372374],[-112.84852848528485,30.36117636547081],[-112.85572855728557,30.400013642678104],[-112.87012870128702,30.42871945626611],[-112.91692916929169,30.47431104255294],[-112.98532985329852,30.531722669728964],[-113.04293042930429,30.607708646873675],[-113.07893078930789,30.670186005859335],[-113.11493114931149,30.781632105671605],[-113.12933129331293,30.812026496529484],[-113.11133111331112,30.844109464657265],[-113.10053100531005,30.906586823642925],[-113.0969309693097,30.945424100850218],[-113.10053100531005,30.979195646247874],[-113.12933129331293,31.050115891582948],[-113.12933129331293,31.065313087011887],[-113.12213122131222,31.067001664281776],[-113.11493114931149,31.056870200662473],[-113.11133111331112,31.045050159773297],[-113.10413104131041,31.024787232534706],[-113.08973089730897,30.99270426440694],[-113.08253082530825,30.989327109867176],[-113.07533075330753,30.99776999621659],[-113.05733057330573,31.03154154161423],[-113.05373053730537,31.078821705170952],[-113.05373053730537,31.12272471418791],[-113.050130501305,31.156496259585552],[-113.06813068130681,31.171693455014506],[-113.09333093330933,31.202087845872384],[-113.11853118531185,31.217285041301338],[-113.14373143731437,31.218973618571212],[-113.14373143731437,31.210530732221798],[-113.12933129331293,31.203776423142273],[-113.11493114931149,31.197022114062747],[-113.12213122131222,31.190267804983208],[-113.14013140131401,31.19533353679286],[-113.15453154531545,31.20546500041216],[-113.19773197731978,31.225727927650752],[-113.20853208532085,31.247679432159217],[-113.2229322293223,31.26118805031828],[-113.23373233732337,31.288205286636412],[-113.24453244532445,31.286516709366524],[-113.26253262532624,31.279762400286998],[-113.27693276932769,31.27807382301711],[-113.26253262532624,31.26287662758817],[-113.25173251732517,31.25612231850863],[-113.23733237332372,31.251056586698994],[-113.23013230132301,31.244302277619454],[-113.24093240932409,31.24092512307969],[-113.27693276932769,31.251056586698994],[-113.43533435334353,31.276385245747235],[-113.48213482134821,31.286516709366524],[-113.55053550535506,31.294959595715937],[-113.55773557735577,31.315222522954528],[-113.58653586535866,31.323665409303942],[-113.62253622536225,31.32535398657383],[-113.64413644136441,31.34223975927266],[-113.6369363693637,31.34730549108231],[-113.61893618936189,31.34561691381242],[-113.60813608136081,31.352371222891946],[-113.61893618936189,31.38107703647995],[-113.6369363693637,31.435111509116197],[-113.63333633336333,31.46550589997409],[-113.65853658536585,31.497588868101857],[-113.71253712537126,31.531360413499513],[-113.75933759337593,31.54993476346823],[-113.77373773737737,31.563443381627295],[-113.80253802538026,31.56513195889717],[-113.84933849338493,31.583706308865885],[-113.87453874538745,31.597214927024936],[-113.88533885338853,31.614100699723764],[-113.91413914139142,31.603969236104476],[-113.9249392493925,31.602280658834587],[-113.93933939339394,31.600592081564713],[-113.95733957339573,31.615789276993652],[-113.96093960939609,31.65462655420096],[-113.9789397893979,31.663069440550373],[-113.9789397893979,31.649560822391308],[-113.9789397893979,31.595526349755062],[-113.98253982539825,31.587083463405648],[-113.97533975339753,31.578640577056234],[-113.9681396813968,31.576951999786345],[-113.96093960939609,31.578640577056234],[-113.96093960939609,31.580329154326108],[-113.95013950139501,31.56850911343693],[-113.95373953739538,31.56513195889717],[-113.96453964539646,31.563443381627295],[-113.9789397893979,31.54486903165858],[-113.98253982539825,31.5330489907694],[-113.99333993339933,31.526294681689862],[-114.00414004140042,31.526294681689862],[-114.01134011340113,31.516163218070574],[-114.0149401494015,31.511097486260923],[-114.01854018540185,31.504343177181397],[-114.02934029340294,31.490834559022332],[-114.07254072540725,31.49252313629222],[-114.11934119341193,31.49252313629222],[-114.15894158941589,31.494211713562095],[-114.20934209342093,31.51278606353081],[-114.23094230942309,31.52967183622964],[-114.25974259742597,31.538114722579053],[-114.28854288542885,31.551623340738104],[-114.29934299342993,31.561754804357406],[-114.31374313743137,31.57526342251647],[-114.32454324543245,31.582017731595997],[-114.32814328143282,31.593837772485173],[-114.36054360543605,31.609034967914127],[-114.41094410944109,31.636052204232243],[-114.43254432544325,31.646183667851545],[-114.44694446944469,31.649560822391308],[-114.46134461344613,31.666446595090136],[-114.49374493744938,31.676578058709424],[-114.54054540545405,31.71710391318662],[-114.58374583745837,31.761006922203563],[-114.60534605346054,31.766072654013215],[-114.67734677346773,31.764384076743326],[-114.68814688146881,31.766072654013215],[-114.69534695346954,31.771138385822866],[-114.71334713347133,31.788024158521694],[-114.7169471694717,31.791401313061456],[-114.72774727747277,31.79477846760122],[-114.74574745747458,31.80997566303016],[-114.760147601476,31.81335281756992],[-114.79254792547925,31.816729972109698],[-114.80334803348033,31.82010712664946],[-114.81774817748177,31.83023859026875],[-114.8429484294843,31.86232155839653],[-114.85374853748537,31.867387290206167],[-114.87534875348753,31.87245302201582],[-114.9329493294933,31.909601721953237],[-114.95454954549545,31.91804460830265],[-114.9689496894969,31.921421762842414],[-114.97974979749797,31.923110340112302],[-114.99054990549905,31.92479891738219],[-115.0049500495005,31.93493038100148],[-115.01215012150121,31.936618958271367],[-115.01575015750157,31.94168469008102],[-115.01575015750157,31.953504730970195],[-115.01935019350194,31.965324771859372],[-115.03015030150301,31.970390503669023],[-115.03375033750338,31.965324771859372],[-115.03375033750338,31.95519330824007],[-115.03015030150301,31.94168469008102],[-115.01575015750157,31.91973318557254],[-115.01215012150121,31.91466745376289],[-115.00135001350013,31.909601721953237],[-114.99414994149942,31.906224567413474],[-114.9689496894969,31.90284741287371],[-114.95094950949509,31.894404526524298],[-114.93654936549365,31.884273062904995],[-114.92214922149222,31.874141599285707],[-114.91494914949149,31.860632981126642],[-114.88974889748897,31.85556724931699],[-114.87174871748718,31.84037005388805],[-114.85734857348574,31.821795703919335],[-114.85014850148501,31.806598508490396],[-114.83574835748357,31.801532776680745],[-114.82854828548285,31.789712735791568],[-114.81774817748177,31.718792490456494],[-114.8069480694807,31.698529563217903],[-114.79254792547925,31.6799552132492],[-114.78174781747818,31.656315131470834],[-114.78894788947889,31.636052204232243],[-114.82494824948249,31.600592081564713],[-114.83934839348393,31.566820536167057],[-114.85374853748537,31.526294681689862],[-114.85374853748537,31.389519922829365],[-114.87534875348753,31.328731141113593],[-114.87174871748718,31.27300809120746],[-114.88254882548826,31.181824918633794],[-114.88974889748897,31.16325056866509],[-114.88254882548826,31.121036136918022],[-114.86454864548645,31.088953168790255],[-114.83934839348393,31.067001664281776],[-114.81414814148141,31.050115891582948],[-114.81414814148141,31.043361582503422],[-114.83214832148322,31.02816438707447],[-114.83214832148322,31.006212882566004],[-114.82134821348214,30.989327109867176],[-114.80334803348033,30.97581849170811],[-114.73494734947349,30.94880125538998],[-114.72054720547206,30.940358369040567],[-114.7169471694717,30.93529263723093],[-114.71334713347133,30.92853832815139],[-114.70974709747097,30.918406864532102],[-114.70974709747097,30.884635319134446],[-114.70614706147062,30.874503855515144],[-114.70614706147062,30.857618082816316],[-114.70974709747097,30.844109464657265],[-114.70254702547025,30.83566657830785],[-114.69534695346954,30.820469382878898],[-114.69894698946989,30.774877796592065],[-114.69534695346954,30.761369178433],[-114.68814688146881,30.744483405734172],[-114.69534695346954,30.736040519384773],[-114.70614706147062,30.712400437606405],[-114.69534695346954,30.687071778558163],[-114.69174691746917,30.670186005859335],[-114.69894698946989,30.63641446046168],[-114.68454684546845,30.6060200696038],[-114.66294662946629,30.573937101476034],[-114.64854648546485,30.555362751507317],[-114.64854648546485,30.54354271061814],[-114.6449464494645,30.535099824268727],[-114.6449464494645,30.52327978337955],[-114.64134641346413,30.513148319760248],[-114.63054630546306,30.494573969791546],[-114.63054630546306,30.48106535163248],[-114.63774637746377,30.462491001663764],[-114.63774637746377,30.442228074425174],[-114.63054630546306,30.425342301726346],[-114.6341463414634,30.39663648813834],[-114.64134641346413,30.374684983629862],[-114.6341463414634,30.364553520010574],[-114.6449464494645,30.31389620191409],[-114.65214652146521,30.297010429215263],[-114.65214652146521,30.28856754286585],[-114.65214652146521,30.276747501976672],[-114.64134641346413,30.263238883817607],[-114.6449464494645,30.249730265658542],[-114.65214652146521,30.227778761150077],[-114.65574655746558,30.212581565721123],[-114.66654666546665,30.199072947562072],[-114.65934659346593,30.18387575213312],[-114.65214652146521,30.175432865783705],[-114.64134641346413,30.155169938545114],[-114.63054630546306,30.145038474925826],[-114.63054630546306,30.133218434036635],[-114.62334623346233,30.118021238607696],[-114.60534605346054,30.11126692952817],[-114.59814598145981,30.08931542501969],[-114.58014580145802,30.072429652320864],[-114.58014580145802,30.050478147812385],[-114.55854558545585,30.018395179684617],[-114.54414544145442,29.9913779433665],[-114.53334533345333,29.967737861588134],[-114.48294482944829,29.947474934349543],[-114.47214472144721,29.91876912076154],[-114.45774457744577,29.910326234412125],[-114.4289442894429,29.906949079872362],[-114.41814418144182,29.891751884443423],[-114.40734407344073,29.88162042082412],[-114.41454414544145,29.854603184506004],[-114.40374403744038,29.832651679997525],[-114.39654396543965,29.827585948187874],[-114.40374403744038,29.827585948187874],[-114.40734407344073,29.82083163910835],[-114.41094410944109,29.815765907298697],[-114.39654396543965,29.809011598219158],[-114.39654396543965,29.805634443679395],[-114.39654396543965,29.795502980060107],[-114.3929439294393,29.78368293917093],[-114.3821438214382,29.775240052821516],[-114.37134371343713,29.770174321011865],[-114.36414364143641,29.77186289828174],[-114.35334353343534,29.768485743741977],[-114.34614346143461,29.75835428012269],[-114.34614346143461,29.75159997104315],[-114.3389433894339,29.744845661963623],[-114.32094320943209,29.74146850742386],[-114.3029430294303,29.74146850742386],[-114.29574295742957,29.743157084693735],[-114.28854288542885,29.748222816503386],[-114.28854288542885,29.753288548313037],[-114.28494284942849,29.7566657028528],[-114.29214292142922,29.7566657028528],[-114.29574295742957,29.76173143466245],[-114.29214292142922,29.766797166472102],[-114.28494284942849,29.765108589202214],[-114.28134281342813,29.770174321011865],[-114.28134281342813,29.77186289828174],[-114.27774277742778,29.770174321011865],[-114.27414274142741,29.770174321011865],[-114.27054270542705,29.77186289828174],[-114.2669426694267,29.768485743741977],[-114.26334263342633,29.765108589202214],[-114.25974259742597,29.765108589202214],[-114.2561425614256,29.760042857392563],[-114.25254252542526,29.76173143466245],[-114.24174241742418,29.763420011932325],[-114.23454234542345,29.75835428012269],[-114.22734227342274,29.749911393773274],[-114.22014220142201,29.748222816503386],[-114.22014220142201,29.746534239233497],[-114.20934209342093,29.744845661963623],[-114.20214202142022,29.739779930153972],[-114.19854198541985,29.727959889264795],[-114.19494194941949,29.72120558018527],[-114.19134191341914,29.71951700291538],[-114.18774187741877,29.71445127110573],[-114.18414184141841,29.712762693835856],[-114.18054180541804,29.70938553929608],[-114.18054180541804,29.707696962026205],[-114.1769417694177,29.704319807486442],[-114.16974169741697,29.702631230216554],[-114.16614166141662,29.700942652946665],[-114.15894158941589,29.69249976659725],[-114.15894158941589,29.690811189327377],[-114.15174151741518,29.69249976659725],[-114.15174151741518,29.69418834386714],[-114.1409414094141,29.690811189327377],[-114.1409414094141,29.682368302977963],[-114.13374133741337,29.677302571168312],[-114.13374133741337,29.670548262088786],[-114.12654126541265,29.670548262088786],[-114.11934119341193,29.663793953009247],[-114.11214112141121,29.655351066659833],[-114.11214112141121,29.65366248938996],[-114.09774097740977,29.648596757580307],[-114.09054090540906,29.641842448500782],[-114.08334083340833,29.640153871230893],[-114.06174061740617,29.630022407611605],[-114.05814058140581,29.61651378945254],[-114.05814058140581,29.61144805764289],[-114.0509405094051,29.604693748563363],[-114.04734047340473,29.59625086221395],[-114.03294032940329,29.59456228494406],[-114.02934029340294,29.592873707674173],[-114.02934029340294,29.587807975864536],[-114.02214022140221,29.58443082132476],[-114.02214022140221,29.581053666784996],[-114.0149401494015,29.577676512245233],[-114.00414004140042,29.57598793497536],[-113.99333993339933,29.577676512245233],[-113.98253982539825,29.567545048625945],[-113.97533975339753,29.557413585006643],[-113.96453964539646,29.54728212138734],[-113.95733957339573,29.540527812307815],[-113.95373953739538,29.538839235037926],[-113.94293942939429,29.525330616878875],[-113.93213932139321,29.520264885069224],[-113.92133921339213,29.51182199871981],[-113.91053910539105,29.500001957830634],[-113.89613896138961,29.48649333967157],[-113.88173881738817,29.476361876052266],[-113.86373863738638,29.462853257893215],[-113.84933849338493,29.459476103353452],[-113.83853838538386,29.456098948813676],[-113.83133831338313,29.44934463973415],[-113.83133831338313,29.435836021575085],[-113.82413824138241,29.42908171249556],[-113.81333813338134,29.42739313522567],[-113.80253802538026,29.42401598068591],[-113.79533795337953,29.417261671606383],[-113.78813788137882,29.415573094336494],[-113.77013770137701,29.40713020798708],[-113.68013680136801,29.315947035413416],[-113.64773647736477,29.293995530904937],[-113.6369363693637,29.28217549001576],[-113.63333633336333,29.263601140047058],[-113.62613626136262,29.258535408237407],[-113.62253622536225,29.253469676427756],[-113.6369363693637,29.23996105826869],[-113.64773647736477,29.228141017379514],[-113.65493654936549,29.218009553760226],[-113.65493654936549,29.207878090140923],[-113.64773647736477,29.202812358331272],[-113.6369363693637,29.19943520379151],[-113.64053640536405,29.18423800836257],[-113.63333633336333,29.174106544743267],[-113.62973629736297,29.175795122013156],[-113.62613626136262,29.170729390203505],[-113.62613626136262,29.16228650385409],[-113.61533615336153,29.16228650385409],[-113.60813608136081,29.16397508112398],[-113.60813608136081,29.153843617504677],[-113.6009360093601,29.140334999345612],[-113.590135901359,29.128514958456435],[-113.57933579335793,29.12682638118656],[-113.57213572135721,29.11500634029737],[-113.56493564935649,29.091366258519017],[-113.5469354693547,29.066037599470775],[-113.53613536135362,29.050840404041836],[-113.53973539735397,29.03902036315266],[-113.55053550535506,29.03902036315266],[-113.55773557735577,29.027200322263468],[-113.56133561335614,29.023823167723705],[-113.56493564935649,29.013691704104417],[-113.56133561335614,29.000183085945352],[-113.55053550535506,28.993428776865827],[-113.54333543335433,28.97485442689711],[-113.5469354693547,28.95965723146817],[-113.55413554135541,28.95459149965852],[-113.55773557735577,28.947837190578994],[-113.5469354693547,28.93263999515004],[-113.53973539735397,28.920819954260864],[-113.53253532535325,28.9073113361018],[-113.52533525335254,28.900557027022273],[-113.52533525335254,28.89211414067286],[-113.50373503735037,28.888736986133097],[-113.48213482134821,28.893802717942748],[-113.47853478534785,28.898868449752385],[-113.47853478534785,28.902245604292162],[-113.47133471334713,28.915754222451213],[-113.48213482134821,28.922508531530752],[-113.48933489334892,28.930951417880166],[-113.48213482134821,28.93263999515004],[-113.48213482134821,28.93939430422958],[-113.47853478534785,28.946148613309106],[-113.4749347493475,28.947837190578994],[-113.46053460534606,28.946148613309106],[-113.44973449734498,28.942771458769343],[-113.43893438934388,28.951214345118757],[-113.43533435334353,28.95965723146817],[-113.42453424534246,28.94952576784887],[-113.4281342813428,28.93432857241993],[-113.41373413734136,28.922508531530752],[-113.40653406534065,28.92757426334039],[-113.40653406534065,28.93263999515004],[-113.38853388533884,28.93939430422958],[-113.38133381333813,28.936017149689803],[-113.38853388533884,28.930951417880166],[-113.39213392133921,28.929262840610278],[-113.39573395733957,28.91237706791145],[-113.36693366933669,28.9073113361018],[-113.36693366933669,28.902245604292162],[-113.37773377733777,28.900557027022273],[-113.38133381333813,28.893802717942748],[-113.37413374133742,28.88704840886321],[-113.36693366933669,28.87691694524392],[-113.35973359733597,28.873539790704143],[-113.36693366933669,28.868474058894506],[-113.36693366933669,28.858342595275204],[-113.36693366933669,28.84483397711614],[-113.37053370533705,28.836391090766725],[-113.36693366933669,28.824571049877548],[-113.35253352533525,28.817816740798023],[-113.35613356133561,28.800930968099195],[-113.33093330933309,28.800930968099195],[-113.30933309333093,28.80261954536907],[-113.3021330213302,28.80937385444861],[-113.29133291332913,28.819505318067897],[-113.28413284132841,28.826259627147437],[-113.26973269732697,28.833013936226962],[-113.2589325893259,28.8397682453065],[-113.23373233732337,28.836391090766725],[-113.21933219332193,28.824571049877548],[-113.21573215732157,28.817816740798023],[-113.2121321213212,28.80261954536907],[-113.20133201332013,28.799242390829306],[-113.19773197731978,28.79248808174978],[-113.20133201332013,28.778979463590716],[-113.19053190531905,28.77222515451119],[-113.19053190531905,28.758716536352125],[-113.19413194131941,28.743519340923186],[-113.18333183331833,28.716502104605055],[-113.1761317613176,28.713124950065293],[-113.16893168931689,28.691173445556814],[-113.15453154531545,28.657401900159158],[-113.1329313293133,28.64051612746033],[-113.12573125731257,28.628696086571154],[-113.1329313293133,28.6050560047928],[-113.12213122131222,28.57972734574456],[-113.11493114931149,28.566218727585493],[-113.11133111331112,28.545955800346903],[-113.11493114931149,28.5273814503782],[-113.10413104131041,28.503741368599833],[-113.08253082530825,28.493609904980545],[-113.07893078930789,28.486855595901005],[-113.06453064530645,28.48010128682148],[-113.03933039330393,28.476724132281717],[-113.03573035730356,28.466592668662415],[-113.00333003330033,28.454772627773238],[-112.9709297092971,28.456461205043126],[-112.93132931329313,28.466592668662415],[-112.90252902529025,28.47503555501183],[-112.88452884528846,28.463215514122652],[-112.88812888128881,28.456461205043126],[-112.87732877328773,28.449706895963587],[-112.87372873728737,28.44464116415395],[-112.8809288092881,28.43788685507441],[-112.8809288092881,28.434509700534647],[-112.86652866528665,28.43282112326476],[-112.86292862928629,28.434509700534647],[-112.85932859328594,28.441264009614173],[-112.8449284492845,28.441264009614173],[-112.84852848528485,28.431132545994885],[-112.8449284492845,28.42268965964547],[-112.85212852128521,28.41762392783582],[-112.85932859328594,28.404115309676754],[-112.85572855728557,28.39736100059723],[-112.84852848528485,28.38216380516829],[-112.85572855728557,28.368655187009225],[-112.87012870128702,28.331506487071806],[-112.87372873728737,28.30786640529344],[-112.87012870128702,28.29942351894404],[-112.87372873728737,28.284226323515085],[-112.86652866528665,28.27240628262591],[-112.85212852128521,28.260586241736732],[-112.83772837728377,28.252143355387318],[-112.83772837728377,28.243700469037904],[-112.80532805328053,28.20992892364025],[-112.80172801728017,28.203174614560723],[-112.79092790927909,28.201486037290834],[-112.78732787327873,28.196420305481183],[-112.79452794527946,28.189665996401658],[-112.79452794527946,28.184600264592007],[-112.7981279812798,28.16771449189318],[-112.80532805328053,28.162648760083528],[-112.8089280892809,28.15082871919435],[-112.81252812528125,28.120434328336472],[-112.80172801728017,28.084974205668928],[-112.7981279812798,28.081597051129165],[-112.79092790927909,28.078219896589403],[-112.79092790927909,28.0680884329701],[-112.7981279812798,28.057956969350812],[-112.80532805328053,28.04613692846162],[-112.80532805328053,28.03262831030257],[-112.7981279812798,28.017431114873617],[-112.78732787327873,28.002233919444677],[-112.76932769327694,28.002233919444677],[-112.7621276212762,27.997168187635026],[-112.7621276212762,27.98365956947596],[-112.7549275492755,27.96846237404702],[-112.75852758527586,27.96339664223737],[-112.76572765727657,27.93806798318913],[-112.7621276212762,27.919493633220426],[-112.7621276212762,27.90767359233125],[-112.7621276212762,27.90091928325171],[-112.7621276212762,27.894164974172185],[-112.76572765727657,27.890787819632422],[-112.76932769327694,27.88065635601312],[-112.77292772927728,27.86377058331429],[-112.75852758527586,27.846884810615464],[-112.74412744127441,27.836753346996176],[-112.73692736927369,27.829999037916636],[-112.72612726127261,27.82324472883711],[-112.72252722527224,27.826621883376873],[-112.7189271892719,27.826621883376873],[-112.7189271892719,27.819867574297348],[-112.71172711727117,27.806358956138283],[-112.71532715327153,27.80129322432863],[-112.71532715327153,27.784407451629804],[-112.70452704527045,27.777653142550278],[-112.70812708127082,27.767521678930976],[-112.70452704527045,27.7557016380418],[-112.69372693726937,27.742193019882748],[-112.67932679326793,27.728684401723683],[-112.6721267212672,27.71855293810438],[-112.66492664926649,27.715175783564618],[-112.65772657726578,27.708421474485093],[-112.65052650526505,27.710110051754967],[-112.64332643326433,27.710110051754967],[-112.6361263612636,27.70335574267544],[-112.63252632526326,27.694912856326027],[-112.62172621726216,27.686469969976613],[-112.62172621726216,27.6780270836272],[-112.60012600126001,27.666207042738023],[-112.59652596525964,27.654387001848846],[-112.56772567725677,27.64087838368978],[-112.54252542525425,27.64087838368978],[-112.52812528125281,27.63750122915002],[-112.51732517325173,27.629058342800604],[-112.49932499324993,27.623992610990953],[-112.48492484924849,27.62061545645119],[-112.47772477724777,27.61386114737165],[-112.4669246692467,27.605418261022237],[-112.45612456124562,27.59866395194271],[-112.420124201242,27.590221065593298],[-112.40212402124021,27.580089601973995],[-112.37332373323733,27.564892406545056],[-112.35532355323554,27.548006633846228],[-112.35172351723517,27.534498015687163],[-112.33372333723337,27.51592366571846],[-112.32292322923229,27.49397216120998],[-112.31932319323192,27.45851203854245],[-112.31932319323192,27.443314843113498],[-112.30852308523085,27.423051915874908],[-112.29772297722977,27.404477565906205],[-112.30132301323013,27.39265752501703],[-112.29772297722977,27.380837484127838],[-112.28692286922869,27.3656402886989],[-112.27252272522725,27.357197402349485],[-112.26532265322653,27.342000206920545],[-112.2581225812258,27.33018016603137],[-112.24012240122401,27.32680301149159],[-112.23652236522365,27.314982970602415],[-112.22932229322294,27.29134288882406],[-112.21852218522184,27.282900002474648],[-112.20772207722077,27.26094849796617],[-112.19692196921969,27.25081703434688],[-112.20412204122042,27.23055410710829],[-112.20772207722077,27.22548837529864],[-112.21132211322113,27.2187340662191],[-112.21132211322113,27.210291179869685],[-112.19332193321932,27.19847113898051],[-112.18252182521825,27.186651098091332],[-112.1681216812168,27.174831057202155],[-112.16452164521645,27.16638817085274],[-112.15372153721538,27.16132243904309],[-112.13572135721357,27.159633861773216],[-112.11412114121141,27.142748089074388],[-112.0889208892089,27.13092804818521],[-112.06732067320672,27.134305202724974],[-112.06372063720637,27.129239470915323],[-112.0529205292053,27.12417373910567],[-112.00972009720097,27.117419430026146],[-111.99531995319953,27.095467925517667],[-111.95931959319593,27.095467925517667],[-111.95211952119521,27.09377934824778],[-111.95211952119521,27.085336461898365],[-111.94491944919449,27.07858215281884],[-111.94491944919449,27.070139266469425],[-111.95931959319593,27.065073534659774],[-111.970119701197,27.06845068919955],[-111.98811988119881,27.05663064831036],[-112.00252002520025,27.03636772107177],[-112.01332013320133,27.014416216563305],[-112.01332013320133,26.99921902113435],[-112.01692016920168,26.97895609389576],[-112.00252002520025,26.951938857577645],[-111.98451984519845,26.940118816688454],[-111.97371973719737,26.93674166214869],[-111.970119701197,26.928298775799277],[-111.95571955719556,26.91141300310045],[-111.95211952119521,26.892838653131747],[-111.94131941319412,26.886084344052207],[-111.9161191611916,26.877641457702794],[-111.90891908919089,26.85906710773409],[-111.86931869318693,26.8286727168762],[-111.86211862118621,26.805032635097845],[-111.86211862118621,26.789835439668906],[-111.86211862118621,26.783081130589366],[-111.87291872918729,26.77632682150984],[-111.87651876518765,26.76619535789054],[-111.87651876518765,26.75606389427125],[-111.8909189091891,26.762818203350776],[-111.90531905319052,26.73411238976277],[-111.90171901719017,26.71384946252418],[-111.88731887318873,26.710472307984418],[-111.86211862118621,26.69358653528559],[-111.85131851318513,26.676700762586762],[-111.84771847718477,26.663192144427697],[-111.84771847718477,26.654749258078283],[-111.8441184411844,26.64461779445898],[-111.82611826118261,26.639552062649344],[-111.81171811718117,26.62942059903004],[-111.79731797317973,26.612534826331213],[-111.78291782917829,26.572008971854032],[-111.76131761317613,26.553434621885316],[-111.73611736117361,26.539926003726265],[-111.71451714517146,26.55174604461544],[-111.67851678516784,26.58214043547332],[-111.67851678516784,26.59396047636251],[-111.69291692916929,26.602403362711925],[-111.71451714517146,26.62942059903004],[-111.74331743317433,26.653060680808395],[-111.75771757717577,26.659814989887934],[-111.76851768517685,26.676700762586762],[-111.79371793717937,26.690209380745813],[-111.80811808118081,26.715538039794055],[-111.81531815318154,26.71384946252418],[-111.81531815318154,26.722292348873594],[-111.81531815318154,26.73073523522301],[-111.81531815318154,26.739178121572422],[-111.81531815318154,26.76619535789054],[-111.82251822518225,26.778015398779715],[-111.82251822518225,26.79152401693878],[-111.82971829718296,26.808409789637608],[-111.82251822518225,26.820229830526785],[-111.83331833318333,26.8286727168762],[-111.83691836918369,26.835427025955738],[-111.83691836918369,26.843869912305152],[-111.84051840518406,26.84893564411479],[-111.84771847718477,26.857378530464203],[-111.8441184411844,26.867509994083505],[-111.85131851318513,26.87426430316303],[-111.85131851318513,26.88101861224257],[-111.83331833318333,26.882707189512445],[-111.82611826118261,26.89115007586186],[-111.81891818918189,26.89621580767151],[-111.79371793717937,26.884395766782333],[-111.79371793717937,26.87595288043292],[-111.76851768517685,26.862444262273854],[-111.74691746917469,26.843869912305152],[-111.72891728917288,26.821918407796673],[-111.72171721717217,26.80672121236772],[-111.67851678516784,26.778015398779715],[-111.66771667716677,26.781392553319492],[-111.66411664116642,26.767883935160427],[-111.65691656916569,26.759441048811013],[-111.64971649716497,26.752686739731473],[-111.64611646116461,26.745932430651948],[-111.62451624516245,26.739178121572422],[-111.62451624516245,26.732423812492883],[-111.60651606516065,26.725669503413357],[-111.61011610116101,26.720603771603706],[-111.58491584915849,26.712160885254292],[-111.57051570515705,26.70709515344464],[-111.57051570515705,26.700340844365115],[-111.55971559715597,26.695275112555464],[-111.56331563315634,26.67163503077711],[-111.56691566915669,26.649683526268632],[-111.56331563315634,26.62604344449028],[-111.57051570515705,26.577074703663683],[-111.56331563315634,26.558500353694967],[-111.5489154891549,26.54836889007568],[-111.52371523715237,26.539926003726265],[-111.5021150211502,26.533171694646725],[-111.48411484114841,26.528105962837074],[-111.47331473314733,26.53148311737685],[-111.47331473314733,26.536548849186488],[-111.45891458914589,26.538237426456377],[-111.46251462514626,26.529794540106963],[-111.45531455314553,26.52472880829731],[-111.44091440914409,26.517974499217786],[-111.44811448114481,26.514597344678023],[-111.45531455314553,26.50615445832861],[-111.45531455314553,26.48589153109002],[-111.46971469714697,26.465628603851428],[-111.4661146611466,26.440299944803186],[-111.46971469714697,26.42003701756458],[-111.46251462514626,26.39977409032599],[-111.43731437314374,26.38626547216694],[-111.430114301143,26.382888317627163],[-111.4229142291423,26.377822585817526],[-111.4229142291423,26.371068276737986],[-111.43371433714337,26.367691122198224],[-111.43371433714337,26.3609368131187],[-111.4229142291423,26.350805349499396],[-111.40491404914049,26.34405104041987],[-111.39411394113941,26.330542422260805],[-111.3869138691387,26.313656649561977],[-111.38331383313833,26.300148031402912],[-111.38331383313833,26.27650794962456],[-111.39411394113941,26.278196526894448],[-111.39771397713977,26.252867867846206],[-111.3869138691387,26.242736404226903],[-111.3869138691387,26.23429351787749],[-111.3761137611376,26.21234201336901],[-111.37971379713797,26.200521972479834],[-111.3761137611376,26.183636199781006],[-111.36531365313652,26.17688189070148],[-111.35811358113581,26.163373272542415],[-111.35811358113581,26.143110345303825],[-111.35091350913508,26.126224572604997],[-111.340113401134,26.111027377176057],[-111.32211322113221,26.097518759016992],[-111.32211322113221,26.085698718127816],[-111.31851318513185,26.07387867723864],[-111.31851318513185,26.063747213619337],[-111.32571325713256,26.058681481809685],[-111.32931329313293,26.048550018190397],[-111.340113401134,26.038418554571095],[-111.34371343713437,26.028287090951807],[-111.33651336513365,26.013089895522853],[-111.33651336513365,25.98776123647461],[-111.34731347313473,25.97425261831556],[-111.36171361713618,25.964121154696258],[-111.35451354513545,25.945546804727556],[-111.35091350913508,25.92528387748895],[-111.340113401134,25.908398104790137],[-111.33651336513365,25.899955218440724],[-111.33291332913329,25.88475802301177],[-111.340113401134,25.872937982122593],[-111.33291332913329,25.866183673043068],[-111.32931329313293,25.837477859455063],[-111.32211322113221,25.832412127645412],[-111.31851318513185,25.834100704915286],[-111.31491314913148,25.835789282185175],[-111.30771307713077,25.830723550375524],[-111.30051300513004,25.820592086756236],[-111.29691296912969,25.81721493221646],[-111.29331293312933,25.81214920040682],[-111.29691296912969,25.80708346859717],[-111.30051300513004,25.80708346859717],[-111.3041130411304,25.81214920040682],[-111.30771307713077,25.81721493221646],[-111.31491314913148,25.820592086756236],[-111.31491314913148,25.815526354946584],[-111.31131311313113,25.800329159517645],[-111.30771307713077,25.788509118628454],[-111.30771307713077,25.778377655009166],[-111.3041130411304,25.771623345929626],[-111.28971289712896,25.7648690368501],[-111.27891278912789,25.751360418691036],[-111.26451264512644,25.746294686881384],[-111.25731257312573,25.741228955071747],[-111.24651246512465,25.731097491452445],[-111.24291242912429,25.72265460510303],[-111.23571235712357,25.71927745056327],[-111.23211232112321,25.72434318237292],[-111.22491224912248,25.72434318237292],[-111.2141121411214,25.70239167786444],[-111.2141121411214,25.695637368784915],[-111.21051210512105,25.68212875062585],[-111.20691206912069,25.668620132466785],[-111.19971199711996,25.653422937037845],[-111.19971199711996,25.63991431887878],[-111.19611196111961,25.629782855259492],[-111.19251192511925,25.61458565983054],[-111.18171181711817,25.602765618941362],[-111.17091170911709,25.594322732591948],[-111.16371163711636,25.574059805353357],[-111.14931149311492,25.570682650813595],[-111.14571145711457,25.565616919003944],[-111.14571145711457,25.558862609924418],[-111.13851138511384,25.543665414495464],[-111.12771127711277,25.538599682685813],[-111.1241112411124,25.5301567963364],[-111.11331113311132,25.525091064526762],[-111.10251102511025,25.525091064526762],[-111.09891098910988,25.5301567963364],[-111.09531095310953,25.526779641796637],[-111.07731077310773,25.525091064526762],[-111.07011070110701,25.531845373606288],[-111.06651066510665,25.5301567963364],[-111.07371073710736,25.521713909987],[-111.07371073710736,25.51664817817735],[-111.06291062910628,25.51495960090746],[-111.05931059310593,25.52002533271711],[-111.05571055710557,25.521713909987],[-111.04851048510484,25.51664817817735],[-111.04131041310413,25.51664817817735],[-111.03771037710376,25.52002533271711],[-111.03411034110341,25.52002533271711],[-111.03051030510305,25.518336755447223],[-111.01971019710197,25.51495960090746],[-111.01611016110161,25.506516714558046],[-111.02331023310232,25.498073828208632],[-111.01611016110161,25.484565210049567],[-111.01611016110161,25.47781090097004],[-111.01971019710197,25.47274516916039],[-111.01971019710197,25.460925128271214],[-111.02691026910269,25.45923655100134],[-111.02691026910269,25.44741651011215],[-111.01971019710197,25.440662201032623],[-111.01251012510124,25.423776428333795],[-111.00531005310053,25.41702211925427],[-111.00171001710017,25.393382037475902],[-110.9981099810998,25.383250573856614],[-110.98370983709837,25.359610492078247],[-110.98010980109801,25.342724719379433],[-110.97290972909728,25.335970410299893],[-110.95490954909549,25.329216101220368],[-110.95490954909549,25.322461792140828],[-110.94770947709476,25.315707483061303],[-110.94410944109441,25.30726459671189],[-110.94770947709476,25.305576019442],[-110.94770947709476,25.298821710362475],[-110.94050940509405,25.293755978552824],[-110.93330933309333,25.29037882401306],[-110.93690936909368,25.288690246743187],[-110.93690936909368,25.283624514933535],[-110.93330933309333,25.278558783123884],[-110.93690936909368,25.273493051314233],[-110.94410944109441,25.273493051314233],[-110.94770947709476,25.261673010425056],[-110.94770947709476,25.25491870134553],[-110.93690936909368,25.246475814996117],[-110.94050940509405,25.23465577410694],[-110.93330933309333,25.216081424138224],[-110.92250922509224,25.211015692328573],[-110.91530915309153,25.19244134235987],[-110.90810908109081,25.18737561055022],[-110.90450904509045,25.18230987874057],[-110.91170911709116,25.177244146930917],[-110.91170911709116,25.16035837423209],[-110.90450904509045,25.14347260153326],[-110.89370893708937,25.131652560644085],[-110.87930879308793,25.126586828834448],[-110.87930879308793,25.12320967429467],[-110.87570875708757,25.119832519754908],[-110.87570875708757,25.114766787945257],[-110.8721087210872,25.10970105613562],[-110.86850868508685,25.10463532432597],[-110.86850868508685,25.099569592516318],[-110.86490864908649,25.092815283436792],[-110.86130861308612,25.079306665277727],[-110.84690846908468,25.074240933468076],[-110.84690846908468,25.069175201658425],[-110.82890828908289,25.064109469848788],[-110.82530825308253,25.059043738039136],[-110.82530825308253,25.04722369714996],[-110.82170821708218,25.04046938807042],[-110.81450814508145,25.033715078990895],[-110.80370803708037,25.032026501721006],[-110.79290792907929,25.030337924451132],[-110.79290792907929,25.033715078990895],[-110.78930789307893,25.037092233530657],[-110.78210782107821,25.032026501721006],[-110.77850778507785,25.026960769911355],[-110.7569075690757,25.011763574482416],[-110.76050760507604,25.006697842672764],[-110.7569075690757,25.003320688133],[-110.7569075690757,24.996566379053476],[-110.74970749707497,24.993189224513713],[-110.74970749707497,24.986434915434174],[-110.74970749707497,24.974614874544997],[-110.74610746107462,24.96448341092571],[-110.73530735307352,24.952663370036518],[-110.72810728107281,24.94084332914734],[-110.71730717307173,24.930711865528053],[-110.7209072090721,24.923957556448514],[-110.710107101071,24.92058040190875],[-110.70650706507065,24.92058040190875],[-110.70290702907029,24.917203247368988],[-110.69930699306992,24.913826092829225],[-110.69930699306992,24.912137515559337],[-110.70650706507065,24.912137515559337],[-110.710107101071,24.908760361019574],[-110.70290702907029,24.907071783749686],[-110.70290702907029,24.90200605194005],[-110.69210692106921,24.891874588320746],[-110.69210692106921,24.886808856511095],[-110.68490684906848,24.883431701971332],[-110.68850688506885,24.88005454743157],[-110.68850688506885,24.87498881562192],[-110.68490684906848,24.868234506542393],[-110.68130681306813,24.864857352002616],[-110.68490684906848,24.856414465653216],[-110.67770677706777,24.849660156573677],[-110.6741067410674,24.84290584749415],[-110.6741067410674,24.83615153841461],[-110.6741067410674,24.829397229335086],[-110.66690666906669,24.82264292025556],[-110.66690666906669,24.81588861117602],[-110.66330663306633,24.81082287936637],[-110.66330663306633,24.809134302096496],[-110.65970659706596,24.809134302096496],[-110.65610656106561,24.807445724826607],[-110.65970659706596,24.799002838477193],[-110.66330663306633,24.792248529397668],[-110.65970659706596,24.788871374857905],[-110.66330663306633,24.77536275669884],[-110.66330663306633,24.765231293079538],[-110.67770677706777,24.74834552038071],[-110.68850688506885,24.731459747681896],[-110.69210692106921,24.719639706792705],[-110.68850688506885,24.709508243173417],[-110.69570695706958,24.699376779554115],[-110.710107101071,24.69768820228424],[-110.72450724507245,24.680802429585412],[-110.72810728107281,24.662228079616696],[-110.73170731707317,24.638587997838343],[-110.73890738907389,24.621702225139515],[-110.73890738907389,24.601439297900924],[-110.73890738907389,24.58793067974186],[-110.73530735307352,24.57104490704303],[-110.73170731707317,24.560913443423743],[-110.73890738907389,24.554159134344204],[-110.73530735307352,24.544027670724915],[-110.72810728107281,24.522076166216436],[-110.72810728107281,24.51532185713691],[-110.7209072090721,24.50519039351761],[-110.68850688506885,24.4663531163103],[-110.68490684906848,24.454533075421125],[-110.68490684906848,24.444401611801837],[-110.69210692106921,24.435958725452423],[-110.69210692106921,24.424138684563232],[-110.68850688506885,24.415695798213818],[-110.69210692106921,24.40725291186442],[-110.68490684906848,24.398810025515004],[-110.68130681306813,24.39036713916559],[-110.68490684906848,24.381924252816177],[-110.67770677706777,24.373481366466763],[-110.68130681306813,24.359972748307698],[-110.65610656106561,24.329578357449805],[-110.65250652506525,24.32282404837028],[-110.6381063810638,24.314381162020865],[-110.64170641706417,24.309315430211214],[-110.62730627306273,24.283986771162972],[-110.61650616506165,24.268789575734033],[-110.60930609306092,24.25359238030508],[-110.59850598505984,24.246838071225554],[-110.58050580505805,24.24008376214603],[-110.57690576905769,24.224886566717075],[-110.56610566105661,24.219820834907438],[-110.56250562505625,24.213066525827898],[-110.54090540905409,24.204623639478484],[-110.5121051210512,24.19618075312907],[-110.48690486904869,24.189426444049545],[-110.45450454504545,24.18267213497002],[-110.40050400504005,24.17591782589048],[-110.35010350103501,24.17591782589048],[-110.32850328503285,24.177606403160368],[-110.32490324903249,24.17591782589048],[-110.32850328503285,24.169163516810954],[-110.33930339303393,24.16072063046154],[-110.35370353703537,24.15565489865189],[-110.36810368103681,24.148900589572364],[-110.37890378903789,24.153966321382],[-110.40410404104041,24.167474939541066],[-110.43290432904328,24.174229248620605],[-110.43290432904328,24.167474939541066],[-110.42570425704257,24.16072063046154],[-110.42930429304293,24.145523435032587],[-110.4221042210422,24.137080548683173],[-110.41850418504185,24.128637662333773],[-110.4221042210422,24.12019477598436],[-110.41850418504185,24.10837473509517],[-110.39330393303933,24.106686157825294],[-110.37170371703716,24.11344046690482],[-110.36090360903609,24.111751889634945],[-110.35010350103501,24.115129044174708],[-110.35010350103501,24.121883353254233],[-110.35010350103501,24.132014816873536],[-110.34650346503464,24.13876912595306],[-110.3429034290343,24.143834857762712],[-110.32490324903249,24.157343475921778],[-110.30690306903068,24.17591782589048],[-110.29970299702997,24.21644368036766],[-110.31050310503105,24.21813225763755],[-110.31050310503105,24.22826372125685],[-110.31050310503105,24.236706607606266],[-110.31770317703177,24.241772339415903],[-110.32490324903249,24.24514949395568],[-110.32130321303212,24.248526648495442],[-110.32130321303212,24.256969534844856],[-110.32130321303212,24.26541242119427],[-110.32850328503285,24.267100998464144],[-110.32850328503285,24.256969534844856],[-110.33570335703357,24.255280957574968],[-110.33930339303393,24.27554388481356],[-110.33570335703357,24.28060961662321],[-110.33930339303393,24.287363925702735],[-110.33570335703357,24.29580681205215],[-110.33930339303393,24.3008725438618],[-110.33570335703357,24.311004007481102],[-110.33930339303393,24.31606973929074],[-110.32490324903249,24.31606973929074],[-110.32130321303212,24.32113547110039],[-110.32850328503285,24.32282404837028],[-110.3321033210332,24.329578357449805],[-110.32490324903249,24.334644089259456],[-110.31050310503105,24.33802124379922],[-110.29970299702997,24.34308697560887],[-110.2961029610296,24.351529861958284],[-110.27450274502745,24.351529861958284],[-110.24930249302493,24.346464130148632],[-110.24570245702456,24.349841284688395],[-110.23130231302312,24.34308697560887],[-110.22770227702277,24.336332666529344],[-110.23490234902349,24.332955511989567],[-110.23490234902349,24.319446893830516],[-110.23130231302312,24.312692584750977],[-110.22050220502204,24.311004007481102],[-110.20970209702097,24.3008725438618],[-110.19890198901989,24.297495389322037],[-110.19170191701917,24.290741080242512],[-110.18450184501845,24.27892103935332],[-110.18450184501845,24.268789575734033],[-110.17730177301773,24.26034668938462],[-110.17370173701737,24.25359238030508],[-110.14490144901448,24.24514949395568],[-110.13770137701377,24.23839518487614],[-110.12690126901269,24.22826372125685],[-110.11610116101161,24.226575143986963],[-110.10170101701017,24.21644368036766],[-110.08730087300873,24.21644368036766],[-110.08370083700837,24.213066525827898],[-110.07650076500765,24.208000794018247],[-110.07290072900729,24.20124648493872],[-110.06210062100621,24.19786933039896],[-110.05850058500585,24.191115021319433],[-110.04770047700477,24.186049289509782],[-110.03330033300333,24.177606403160368],[-110.01890018900188,24.169163516810954],[-110.0081000810008,24.159032053191652],[-110.00090000900009,24.137080548683173],[-109.99729997299973,24.128637662333773],[-109.99729997299973,24.115129044174708],[-109.99369993699936,24.110063312365057],[-109.99009990099901,24.066160303348113],[-109.98649986499865,24.045897376109508],[-109.97569975699757,24.039143067029983],[-109.9540995409954,24.037454489760094],[-109.93249932499324,24.02901160341068],[-109.88929889298893,24.037454489760094],[-109.85329853298532,24.05096310791916],[-109.83529835298353,24.059405994268573],[-109.8280982809828,24.062783148808336],[-109.8280982809828,24.0577174169987],[-109.82449824498245,24.047585953379397],[-109.82089820898209,24.037454489760094],[-109.81009810098101,24.032388757950457],[-109.80289802898028,24.022257294331155],[-109.80649806498064,24.01381440798174],[-109.81009810098101,24.010437253441978],[-109.81009810098101,24.001994367092564],[-109.82449824498245,23.9884857489335],[-109.83169831698316,23.9884857489335],[-109.83169831698316,23.985108594393736],[-109.83169831698316,23.97835428531421],[-109.83529835298353,23.961468512615383],[-109.83889838898389,23.95133704899608],[-109.83889838898389,23.937828430837016],[-109.83169831698316,23.919254080868313],[-109.82449824498245,23.9108111945189],[-109.81369813698137,23.90574546270925],[-109.81009810098101,23.902368308169486],[-109.80649806498064,23.897302576359834],[-109.79569795697957,23.892236844550183],[-109.7920979209792,23.88885969001042],[-109.78489784897849,23.882105380930895],[-109.77409774097741,23.877039649121244],[-109.74169741697416,23.843268103723588],[-109.72369723697237,23.82638233102476],[-109.71289712897129,23.807807981056058],[-109.69849698496985,23.797676517436756],[-109.70929709297093,23.775725012928277],[-109.71289712897129,23.74870777661016],[-109.70569705697056,23.725067694831807],[-109.69489694896949,23.689607572164263],[-109.69489694896949,23.66596749038591],[-109.68049680496804,23.647393140417194],[-109.65889658896589,23.640638831337668],[-109.64089640896408,23.633884522258143],[-109.63729637296373,23.62544163590873],[-109.62289622896229,23.62206448136895],[-109.60849608496085,23.620375904099078],[-109.58329583295833,23.6085558632099],[-109.57609576095761,23.60180155413036],[-109.56529565295652,23.59673582232071],[-109.540095400954,23.591670090511073],[-109.52569525695257,23.588292935971296],[-109.51849518495185,23.58322720416166],[-109.51489514895148,23.569718586002594],[-109.50049500495005,23.564652854192943],[-109.47529475294753,23.55958712238329],[-109.4680946809468,23.554521390573655],[-109.4680946809468,23.547767081494115],[-109.47529475294753,23.5393241951447],[-109.47889478894788,23.525815576985636],[-109.4680946809468,23.50386407247717],[-109.44289442894429,23.475158258889167],[-109.4248942489425,23.45827248619034],[-109.4248942489425,23.439698136221622],[-109.42849428494284,23.422812363522794],[-109.42849428494284,23.409303745363744],[-109.4140941409414,23.405926590823967],[-109.4140941409414,23.392417972664916],[-109.41769417694177,23.380597931775725],[-109.42849428494284,23.3738436226962],[-109.4248942489425,23.363712159076897],[-109.42849428494284,23.345137809108195],[-109.4248942489425,23.335006345488893],[-109.4248942489425,23.313054840980428],[-109.4248942489425,23.297857645551474],[-109.43209432094321,23.284349027392423],[-109.43929439294392,23.280971872852646],[-109.43929439294392,23.270840409233358],[-109.43569435694357,23.250577481994767],[-109.43929439294392,23.240446018375465],[-109.44289442894429,23.230314554756177],[-109.45009450094501,23.21342878205735],[-109.45369453694536,23.201608741168158],[-109.46449464494644,23.194854432088633],[-109.47529475294753,23.177968659389805],[-109.49329493294933,23.15095142307169],[-109.5040950409504,23.14419711399215],[-109.51489514895148,23.125622764023447],[-109.52569525695257,23.122245609483684],[-109.53289532895329,23.10873699132462],[-109.56529565295652,23.095228373165554],[-109.57609576095761,23.08171975500649],[-109.60849608496085,23.08171975500649],[-109.62649626496265,23.0715882913872],[-109.67329673296733,23.056391095958247],[-109.69489694896949,23.041193900529308],[-109.71289712897129,23.031062436910005],[-109.71649716497164,23.017553818750955],[-109.71289712897129,23.007422355131652],[-109.73089730897308,22.98715942789306],[-109.75969759697597,22.9837822733533],[-109.80289802898028,22.95676503703517],[-109.80649806498064,22.936502109796578],[-109.82449824498245,22.91961633709775],[-109.83529835298353,22.909484873478462],[-109.84969849698497,22.89935340985916],[-109.86049860498605,22.897664832589285],[-109.88569885698857,22.897664832589285],[-109.90009900099001,22.88922194623987],[-109.90369903699036,22.88246763716033],[-109.89649896498965,22.874024750810918],[-109.93609936099361,22.872336173541044],[-109.9540995409954,22.872336173541044],[-109.9648996489965,22.87740190535068],[-109.97929979299792,22.88246763716033],[-110.00090000900009,22.89428767804951],[-110.02610026100261,22.916239182557987],[-110.0441004410044,22.931436377986927],[-110.05850058500585,22.950010727955643],[-110.080100801008,22.980405118813536],[-110.080100801008,22.990536582432824],[-110.0909009090091,23.010799509671415],[-110.09810098100981,23.017553818750955],[-110.10530105301052,23.047948209608833],[-110.10890108901089,23.074965445926964],[-110.15210152101521,23.2269374002164],[-110.15930159301593,23.292791913741837],[-110.16650166501665,23.32149772732984],[-110.17730177301773,23.329940613679256],[-110.18450184501845,23.340072077298544],[-110.20970209702097,23.37890935450585],[-110.2169021690217,23.39410654993479],[-110.22770227702277,23.407615168093855],[-110.23490234902349,23.426189518062557],[-110.26730267302673,23.47853541342893],[-110.27810278102781,23.488666877048217],[-110.30690306903068,23.54101277241459],[-110.35370353703537,23.58153862689177],[-110.40410404104041,23.6085558632099],[-110.52290522905228,23.65921318130637],[-110.57690576905769,23.68116468581485],[-110.64890648906488,23.73351058118122],[-110.75330753307533,23.839890949183825],[-110.81450814508145,23.90912261724901],[-110.85050850508505,23.941205585376792],[-110.86850868508685,23.95133704899608],[-110.87930879308793,23.95302562626597],[-110.8829088290883,23.966534244425034],[-110.89370893708937,23.976665708044322],[-110.93330933309333,24.01550298525163],[-110.95490954909549,24.03070018068057],[-110.98730987309872,24.0577174169987],[-111.0089100891009,24.07122603515775],[-111.01611016110161,24.084734653316815],[-111.04131041310413,24.104997580555406],[-111.08451084510845,24.130326239603647],[-111.10611106111061,24.147212012302475],[-111.13851138511384,24.164097785001303],[-111.17451174511744,24.18098355770013],[-111.22851228512285,24.21813225763755],[-111.28251282512825,24.24346091668579],[-111.44451444514445,24.324512625640153],[-111.44811448114481,24.329578357449805],[-111.43731437314374,24.32788978017993],[-111.35811358113581,24.290741080242512],[-111.3761137611376,24.30593827567145],[-111.41211412114122,24.324512625640153],[-111.44451444514445,24.339709821069107],[-111.45891458914589,24.34308697560887],[-111.47691476914768,24.354907016498046],[-111.48771487714878,24.373481366466763],[-111.52371523715237,24.40387575732464],[-111.54171541715417,24.415695798213818],[-111.56691566915669,24.419072952753595],[-111.59571595715957,24.44271303453195],[-111.62091620916209,24.47310742538984],[-111.6281162811628,24.50856754805737],[-111.64971649716497,24.542339093455027],[-111.65331653316532,24.55247055707433],[-111.64611646116461,24.547404825264678],[-111.63531635316353,24.547404825264678],[-111.64611646116461,24.562602020693618],[-111.66771667716677,24.576110638852683],[-111.67851678516784,24.58624210247197],[-111.69651696516965,24.58793067974186],[-111.69651696516965,24.57104490704303],[-111.68571685716857,24.557536288883966],[-111.70011700117001,24.5355847843755],[-111.72531725317253,24.538961938915264],[-111.73611736117361,24.547404825264678],[-111.75051750517505,24.542339093455027],[-111.7649176491765,24.538961938915264],[-111.78651786517865,24.542339093455027],[-111.80451804518044,24.54571624799479],[-111.78291782917829,24.527141898026088],[-111.76131761317613,24.51532185713691],[-111.78291782917829,24.511944702597134],[-111.79011790117902,24.517010434406785],[-111.8009180091801,24.513633279867022],[-111.81171811718117,24.50519039351761],[-111.81891818918189,24.517010434406785],[-111.82251822518225,24.533896207105613],[-111.81891818918189,24.54571624799479],[-111.81531815318154,24.569356329773157],[-111.83331833318333,24.621702225139515],[-111.84771847718477,24.653785193267282],[-111.86571865718658,24.668982388696236],[-111.88731887318873,24.689245315934826],[-111.90531905319052,24.71288539771318],[-111.93051930519304,24.729771170412008],[-111.94131941319412,24.744968365840947],[-111.93771937719377,24.74834552038071],[-111.9161191611916,24.73314832495177],[-111.91251912519125,24.736525479491533],[-111.91251912519125,24.743279788571073],[-111.93411934119341,24.756788406730124],[-111.95211952119521,24.77536275669884],[-111.96651966519664,24.793937106667556],[-111.97371973719737,24.809134302096496],[-111.97731977319773,24.826020074795323],[-111.98451984519845,24.847971579303803],[-111.99531995319953,24.866545929272505],[-112.00972009720097,24.87498881562192],[-111.99891998919989,24.846283002033914],[-111.99531995319953,24.819265765715784],[-111.98811988119881,24.79731426120732],[-111.96651966519664,24.778739911238603],[-111.97371973719737,24.77536275669884],[-111.98811988119881,24.765231293079538],[-111.98451984519845,24.7601655612699],[-111.97371973719737,24.74834552038071],[-111.96651966519664,24.744968365840947],[-111.97731977319773,24.741591211301184],[-111.98451984519845,24.743279788571073],[-111.99171991719916,24.74834552038071],[-111.99531995319953,24.758476984000012],[-112.01332013320133,24.73990263403131],[-112.02412024120241,24.75509982946025],[-112.0421204212042,24.805757147556733],[-112.03492034920349,24.81251145663626],[-112.02772027720277,24.820954342985672],[-112.03132031320312,24.829397229335086],[-112.03492034920349,24.841217270224263],[-112.0529205292053,24.829397229335086],[-112.0529205292053,24.81757718844591],[-112.04932049320493,24.785494220318142],[-112.04932049320493,24.765231293079538],[-112.0421204212042,24.75341125219036],[-112.06372063720637,24.751722674920487],[-112.07812078120782,24.761854138539775],[-112.0889208892089,24.77367417942895],[-112.09252092520924,24.787182797588017],[-112.0961209612096,24.805757147556733],[-112.0961209612096,24.83615153841461],[-112.0961209612096,24.846283002033914],[-112.10332103321034,24.85303731111344],[-112.11052110521105,24.854725888383328],[-112.11772117721176,24.856414465653216],[-112.12492124921249,24.87330023835203],[-112.11412114121141,24.87836597016168],[-112.0961209612096,24.893563165590635],[-112.0889208892089,24.90200605194005],[-112.0961209612096,24.923957556448514],[-112.09972099720997,24.927334710988276],[-112.10332103321034,24.932400442797928],[-112.10332103321034,24.94084332914734],[-112.09972099720997,24.944220483687104],[-112.08532085320853,24.952663370036518],[-112.08172081720816,24.961106256385932],[-112.08532085320853,24.966171988195583],[-112.09252092520924,24.97968060635465],[-112.0961209612096,24.991500647243825],[-112.0961209612096,24.99994353359324],[-112.10332103321034,25.008386419942653],[-112.11052110521105,25.003320688133],[-112.12132121321213,24.988123492704062],[-112.12132121321213,24.971237720005234],[-112.12852128521286,24.959417679116058],[-112.13572135721357,24.945909060956993],[-112.1321213212132,24.927334710988276],[-112.12132121321213,24.908760361019574],[-112.1321213212132,24.890186011050858],[-112.14652146521465,24.87330023835203],[-112.15732157321573,24.87498881562192],[-112.16092160921609,24.893563165590635],[-112.15732157321573,24.907071783749686],[-112.15372153721538,24.932400442797928],[-112.16092160921609,24.939154751877467],[-112.16452164521645,24.94253190641723],[-112.16452164521645,24.954351947306407],[-112.16092160921609,24.959417679116058],[-112.14652146521465,24.961106256385932],[-112.14292142921428,24.969549142735346],[-112.15012150121501,24.97968060635465],[-112.14292142921428,24.989812069973937],[-112.1321213212132,25.01007499721254],[-112.12492124921249,25.038780810800546],[-112.12852128521286,25.04722369714996],[-112.12132121321213,25.0624208925789],[-112.12132121321213,25.074240933468076],[-112.1321213212132,25.074240933468076],[-112.1321213212132,25.079306665277727],[-112.14292142921428,25.086060974357252],[-112.13932139321393,25.101258169786206],[-112.13572135721357,25.111389633405494],[-112.13932139321393,25.126586828834448],[-112.13932139321393,25.14516117880315],[-112.1321213212132,25.17217841512128],[-112.11772117721176,25.199195651439396],[-112.09972099720997,25.224524310487638],[-112.08532085320853,25.243098660456354],[-112.07812078120782,25.258295855885294],[-112.07812078120782,25.29037882401306],[-112.07452074520745,25.344413296649307],[-112.07452074520745,25.37311911023731],[-112.08532085320853,25.378184842046963],[-112.08532085320853,25.39000488293614],[-112.08172081720816,25.406890655634967],[-112.07092070920709,25.41702211925427],[-112.07092070920709,25.433907891953098],[-112.07092070920709,25.440662201032623],[-112.08172081720816,25.444039355572386],[-112.07452074520745,25.455859396461562],[-112.04932049320493,25.465990860080865],[-112.03132031320312,25.47443374643028],[-112.0421204212042,25.47781090097004],[-112.06732067320672,25.476122323700153],[-112.07812078120782,25.471056591890516],[-112.08532085320853,25.481188055509804],[-112.07452074520745,25.486253787319455],[-112.06372063720637,25.49469667366887],[-112.06372063720637,25.513271023637586],[-112.06732067320672,25.550419723575004],[-112.07092070920709,25.570682650813595],[-112.06372063720637,25.590945578052185],[-112.06372063720637,25.62471712344984],[-112.07092070920709,25.68381732789574],[-112.07452074520745,25.714211718753617],[-112.08172081720816,25.720966027833157],[-112.0889208892089,25.715900296023506],[-112.0889208892089,25.699014523324678],[-112.08532085320853,25.59263415532206],[-112.09252092520924,25.548731146305116],[-112.0961209612096,25.50989386909781],[-112.10332103321034,25.50482813728817],[-112.10692106921069,25.51495960090746],[-112.10332103321034,25.538599682685813],[-112.09972099720997,25.596011309861836],[-112.10332103321034,25.727720336912682],[-112.10692106921069,25.783443386818817],[-112.1321213212132,25.81721493221646],[-112.13932139321393,25.857740786693654],[-112.16092160921609,25.88982375482142],[-112.1789217892179,25.955678268346844],[-112.19692196921969,25.99451554555415],[-112.21852218522184,26.01477847279274],[-112.24012240122401,26.040107131840983],[-112.26532265322653,26.05361575000005],[-112.2941229412294,26.05023859546027],[-112.30852308523085,26.070501522698876],[-112.31212312123121,26.102584490826644],[-112.32292322923229,26.131290304414648],[-112.34452344523444,26.17857046797137],[-112.38052380523806,26.220784899718424],[-112.40212402124021,26.24104782695703],[-112.44172441724417,26.26131075419562],[-112.45252452524525,26.262999331465494],[-112.4669246692467,26.257933599655843],[-112.47412474124741,26.247802136036555],[-112.48132481324814,26.237670672417252],[-112.49932499324993,26.23429351787749],[-112.5569255692557,26.273130795084796],[-112.5569255692557,26.27650794962456],[-112.55332553325533,26.2917051450535],[-112.56052560525605,26.3018366086728],[-112.57492574925749,26.293393722323387],[-112.58932589325893,26.288327990513736],[-112.60372603726037,26.298459454133038],[-112.61452614526145,26.31703380410174],[-112.61812618126181,26.320410958641503],[-112.63252632526326,26.320410958641503],[-112.67572675726757,26.31872238137163],[-112.69012690126901,26.32209953591139],[-112.72972729727297,26.371068276737986],[-112.7549275492755,26.38626547216694],[-112.78732787327873,26.404839822135642],[-112.80532805328053,26.418348440294707],[-112.83052830528305,26.435234212993535],[-112.86292862928629,26.46394002658154],[-112.90252902529025,26.492645840169544],[-112.95292952929529,26.517974499217786],[-112.95652956529565,26.529794540106963],[-112.95652956529565,26.53148311737685],[-112.95652956529565,26.534860271916614],[-112.96012960129602,26.539926003726265],[-112.96372963729637,26.543303158266028],[-112.96732967329673,26.544991735535902],[-112.98532985329852,26.543303158266028],[-113.00333003330033,26.550057467345553],[-113.01773017730177,26.56356608550462],[-113.04293042930429,26.585517590013097],[-113.06093060930608,26.59902620817215],[-113.05733057330573,26.612534826331213],[-113.06093060930608,26.62942059903004],[-113.05733057330573,26.639552062649344],[-113.05733057330573,26.649683526268632],[-113.06453064530645,26.65643783534817],[-113.07533075330753,26.675012185316874],[-113.0861308613086,26.690209380745813],[-113.10413104131041,26.70878373071453],[-113.11493114931149,26.717226617063943],[-113.12573125731257,26.73073523522301],[-113.13653136531364,26.747621007921836],[-113.14373143731437,26.757752471541124],[-113.14373143731437,26.7695725124303],[-113.14013140131401,26.781392553319492],[-113.12573125731257,26.789835439668906],[-113.11853118531185,26.794901171478543],[-113.12933129331293,26.79827832601832],[-113.13653136531364,26.79827832601832],[-113.15093150931509,26.794901171478543],[-113.16533165331653,26.789835439668906],[-113.16533165331653,26.778015398779715],[-113.16893168931689,26.764506780620664],[-113.18693186931868,26.762818203350776],[-113.19773197731978,26.759441048811013],[-113.19053190531905,26.7509981624616],[-113.19413194131941,26.744243853382073],[-113.20493204932049,26.739178121572422],[-113.21573215732157,26.744243853382073],[-113.2229322293223,26.75437531700136],[-113.23013230132301,26.76619535789054],[-113.23013230132301,26.781392553319492],[-113.23733237332372,26.78645828512913],[-113.23013230132301,26.79152401693878],[-113.2121321213212,26.79321259420867],[-113.20493204932049,26.799966903288194],[-113.19053190531905,26.808409789637608],[-113.17973179731797,26.815164098717133],[-113.16893168931689,26.826984139606324],[-113.16173161731616,26.8388041804955],[-113.14733147331474,26.847247066844915],[-113.13653136531364,26.857378530464203],[-113.1329313293133,26.87595288043292],[-113.12573125731257,26.886084344052207],[-113.12573125731257,26.93843023941858],[-113.1329313293133,26.955316012117407],[-113.14733147331474,26.970513207546347],[-113.16533165331653,26.975578939355998],[-113.17973179731797,26.967136053006584],[-113.19413194131941,26.945184548498105],[-113.19773197731978,26.882707189512445],[-113.20493204932049,26.85400137592444],[-113.23373233732337,26.8286727168762],[-113.24453244532445,26.837115603225612],[-113.2589325893259,26.825295562336436],[-113.26253262532624,26.81178694417737],[-113.26253262532624,26.801655480558082],[-113.26613266132661,26.794901171478543],[-113.26253262532624,26.78645828512913],[-113.26253262532624,26.774638244239952],[-113.26613266132661,26.759441048811013],[-113.26973269732697,26.752686739731473],[-113.28413284132841,26.74930958519171],[-113.32373323733238,26.77632682150984],[-113.36333363333632,26.794901171478543],[-113.39933399333994,26.803344057827957],[-113.4209342093421,26.805032635097845],[-113.44973449734498,26.805032635097845],[-113.47133471334713,26.805032635097845],[-113.50373503735037,26.79321259420867],[-113.51813518135181,26.7695725124303],[-113.52533525335254,26.75437531700136],[-113.54333543335433,26.742555276112185],[-113.54333543335433,26.71891519433383],[-113.55413554135541,26.71891519433383],[-113.57573575735758,26.705406576174767],[-113.59733597335973,26.70878373071453],[-113.6369363693637,26.725669503413357],[-113.66573665736657,26.7695725124303],[-113.7269372693727,26.799966903288194],[-113.73413734137341,26.81347552144726],[-113.73773737737378,26.8286727168762],[-113.75573755737557,26.860755685003966],[-113.79173791737917,26.919855889449863],[-113.81693816938169,26.948561703037868],[-113.8529385293853,26.967136053006584],[-113.87813878138782,26.984021825705412],[-113.91053910539105,26.992464712054826],[-113.96093960939609,26.997530443864477],[-113.97533975339753,26.9941532893247],[-113.97173971739717,26.98064467116565],[-113.98253982539825,26.975578939355998],[-113.99333993339933,26.972201784816235],[-114.00414004140042,26.977267516625872],[-114.0509405094051,27.017793371103068],[-114.06534065340654,27.051564916500723],[-114.08334083340833,27.075204998279077],[-114.11574115741158,27.10559938913697],[-114.14814148141481,27.12417373910567],[-114.18054180541804,27.13937093453461],[-114.20934209342093,27.142748089074388],[-114.23814238142381,27.152879552693676],[-114.27414274142741,27.149502398153913],[-114.28854288542885,27.14612524361415],[-114.29574295742957,27.12586231637556],[-114.32094320943209,27.14612524361415],[-114.34974349743497,27.16638817085274],[-114.39654396543965,27.18327394355157],[-114.42174421744217,27.16638817085274],[-114.43614436144361,27.176519634472044],[-114.4289442894429,27.18833967536122],[-114.4289442894429,27.19847113898051],[-114.4289442894429,27.20860260259981],[-114.44334443344434,27.213668334409462],[-114.4649446494465,27.222111220758876],[-114.47574475744757,27.217045488949225],[-114.48654486544865,27.237308416187815],[-114.48654486544865,27.28121142520476],[-114.48294482944829,27.325114434221717],[-114.49014490144901,27.362263134159136],[-114.5081450814508,27.40616614317608],[-114.52974529745298,27.42642907041467],[-114.53694536945369,27.43318337949421],[-114.56214562145621,27.44838057492315],[-114.58014580145802,27.450069152193038],[-114.59814598145981,27.477086388511154],[-114.63054630546306,27.48890642940033],[-114.6809468094681,27.507480779369047],[-114.7169471694717,27.522677974797986],[-114.73494734947349,27.520989397528112],[-114.74934749347493,27.548006633846228],[-114.75294752947529,27.55307236565588],[-114.76734767347673,27.569958138354707],[-114.7709477094771,27.575023870164358],[-114.78174781747818,27.602041106482474],[-114.8069480694807,27.62061545645119],[-114.83214832148322,27.63074692007048],[-114.83934839348393,27.629058342800604],[-114.84654846548466,27.61554972464154],[-114.85734857348574,27.622304033721065],[-114.86094860948609,27.63074692007048],[-114.87534875348753,27.644255538229544],[-114.87174871748718,27.649321270039195],[-114.85734857348574,27.639189806419893],[-114.85014850148501,27.64087838368978],[-114.8429484294843,27.659452733658483],[-114.84654846548466,27.671272774547674],[-114.85374853748537,27.681404238166962],[-114.86094860948609,27.689847124516376],[-114.87174871748718,27.694912856326027],[-114.8861488614886,27.694912856326027],[-114.89334893348934,27.688158547246502],[-114.8969489694897,27.6780270836272],[-114.90054900549005,27.664518465468134],[-114.91134911349113,27.669584197277786],[-114.9329493294933,27.67633850635731],[-114.94014940149401,27.69997858813568],[-114.95094950949509,27.716864360834506],[-114.97254972549726,27.723618669914032],[-114.98694986949869,27.726995824453795],[-115.00135001350013,27.715175783564618],[-115.01215012150121,27.728684401723683],[-115.0229502295023,27.74050444261286],[-115.03375033750338,27.759078792581562],[-115.03375033750338,27.779341719820167],[-115.04455044550446,27.794538915249106],[-115.04815048150482,27.80804753340817],[-115.05175051750517,27.821556151567222],[-115.05535055350553,27.824933306107],[-115.08415084150842,27.85026196515524],[-115.05535055350553,27.86039342877453],[-115.04095040950409,27.857016274234766],[-115.0229502295023,27.84519623334559],[-115.01575015750157,27.829999037916636],[-114.96534965349653,27.826621883376873],[-114.92214922149222,27.836753346996176],[-114.88254882548826,27.829999037916636],[-114.86814868148682,27.829999037916636],[-114.84654846548466,27.824933306107],[-114.83934839348393,27.813113265217808],[-114.81774817748177,27.809736110678045],[-114.78534785347853,27.814801842487697],[-114.76374763747637,27.811424687947934],[-114.73854738547385,27.806358956138283],[-114.72414724147241,27.806358956138283],[-114.72054720547206,27.796227492518994],[-114.70974709747097,27.791161760709343],[-114.69174691746917,27.78778460616958],[-114.67014670146702,27.78778460616958],[-114.63774637746377,27.779341719820167],[-114.60534605346054,27.774275988010515],[-114.57294572945729,27.78271887435993],[-114.52974529745298,27.78778460616958],[-114.49734497344973,27.774275988010515],[-114.4649446494465,27.789473183439455],[-114.43254432544325,27.799604647058757],[-114.40374403744038,27.81817899702746],[-114.3929439294393,27.82831046064676],[-114.3821438214382,27.836753346996176],[-114.36414364143641,27.85026196515524],[-114.34614346143461,27.86377058331429],[-114.33534335343353,27.87052489239383],[-114.32454324543245,27.873902046933594],[-114.31734317343174,27.873902046933594],[-114.3029430294303,27.872213469663706],[-114.29934299342993,27.868836315123943],[-114.29574295742957,27.86039342877453],[-114.29574295742957,27.851950542425115],[-114.29214292142922,27.833376192456413],[-114.29574295742957,27.81817899702746],[-114.3029430294303,27.80129322432863],[-114.30654306543065,27.789473183439455],[-114.31374313743137,27.779341719820167],[-114.30654306543065,27.764144524391213],[-114.28134281342813,27.73543871080321],[-114.26334263342633,27.726995824453795],[-114.24174241742418,27.706732897215204],[-114.22374223742237,27.6966014335959],[-114.19494194941949,27.691535701786265],[-114.1769417694177,27.679715660897088],[-114.15174151741518,27.669584197277786],[-114.13734137341373,27.65776415638861],[-114.12654126541265,27.642566960959655],[-114.11934119341193,27.63581265188013],[-114.11934119341193,27.62568118826084],[-114.11214112141121,27.62061545645119],[-114.10134101341013,27.62061545645119],[-114.10494104941048,27.610483992831888],[-114.10134101341013,27.602041106482474],[-114.0941409414094,27.607106838292125],[-114.08334083340833,27.61386114737165],[-114.07614076140761,27.622304033721065],[-114.07254072540725,27.629058342800604],[-114.05814058140581,27.64087838368978],[-114.04734047340473,27.652698424578958],[-114.04374043740437,27.667895620007897],[-114.0509405094051,27.674649929087437],[-114.05814058140581,27.669584197277786],[-114.06174061740617,27.67633850635731],[-114.06174061740617,27.679715660897088],[-114.06534065340654,27.68309281543685],[-114.07254072540725,27.679715660897088],[-114.07974079740796,27.679715660897088],[-114.07974079740796,27.686469969976613],[-114.07614076140761,27.689847124516376],[-114.06534065340654,27.691535701786265],[-114.05454054540544,27.694912856326027],[-114.04734047340473,27.691535701786265],[-114.04734047340473,27.684781392706725],[-114.04374043740437,27.679715660897088],[-114.02934029340294,27.68309281543685],[-114.02214022140221,27.679715660897088],[-114.01854018540185,27.671272774547674],[-114.01134011340113,27.666207042738023],[-113.99333993339933,27.659452733658483],[-113.9681396813968,27.654387001848846],[-113.95373953739538,27.65607557911872],[-113.95013950139501,27.659452733658483],[-113.94293942939429,27.669584197277786],[-113.93573935739357,27.6780270836272],[-113.93213932139321,27.688158547246502],[-113.91773917739177,27.6966014335959],[-113.91413914139142,27.710110051754967],[-113.91773917739177,27.71855293810438],[-113.92853928539286,27.726995824453795],[-113.93933939339394,27.728684401723683],[-113.94293942939429,27.733750133533334],[-113.95733957339573,27.74050444261286],[-113.9681396813968,27.742193019882748],[-113.97533975339753,27.74557017442251],[-113.97533975339753,27.752324483502036],[-113.98253982539825,27.757390215311688],[-113.98613986139861,27.7557016380418],[-113.99333993339933,27.750635906232148],[-114.00414004140042,27.750635906232148],[-114.0149401494015,27.748947328962274],[-114.02214022140221,27.748947328962274],[-114.02574025740257,27.750635906232148],[-114.03654036540365,27.767521678930976],[-114.04374043740437,27.784407451629804],[-114.0509405094051,27.792850337979218],[-114.05814058140581,27.80129322432863],[-114.06534065340654,27.80298180159852],[-114.06894068940689,27.799604647058757],[-114.06534065340654,27.791161760709343],[-114.05814058140581,27.77596456528039],[-114.05814058140581,27.764144524391213],[-114.0509405094051,27.759078792581562],[-114.04374043740437,27.750635906232148],[-114.04014040140402,27.73881586534297],[-114.04014040140402,27.732061556263446],[-114.0509405094051,27.732061556263446],[-114.0509405094051,27.726995824453795],[-114.0509405094051,27.72024151537427],[-114.05454054540544,27.72024151537427],[-114.06174061740617,27.72530724718392],[-114.07254072540725,27.72530724718392],[-114.07974079740796,27.71855293810438],[-114.09054090540906,27.711798629024855],[-114.10494104941048,27.708421474485093],[-114.11574115741158,27.710110051754967],[-114.12654126541265,27.71348720629473],[-114.13374133741337,27.723618669914032],[-114.1409414094141,27.730372978993557],[-114.1409414094141,27.742193019882748],[-114.14454144541445,27.7557016380418],[-114.15174151741518,27.7658331016611],[-114.16254162541625,27.774275988010515],[-114.17334173341733,27.789473183439455],[-114.17334173341733,27.80298180159852],[-114.17334173341733,27.816490419757585],[-114.17334173341733,27.826621883376873],[-114.16614166141662,27.833376192456413],[-114.16254162541625,27.84519623334559],[-114.14454144541445,27.86377058331429],[-114.13374133741337,27.877279201473357],[-114.130141301413,27.889099242362533],[-114.13374133741337,27.892476396902296],[-114.14454144541445,27.894164974172185],[-114.14814148141481,27.895853551442073],[-114.15174151741518,27.899230705981836],[-114.14454144541445,27.9026078605216],[-114.13734137341373,27.90598501506136],[-114.13374133741337,27.912739324140887],[-114.1409414094141,27.914427901410775],[-114.14814148141481,27.917805055950538],[-114.15534155341552,27.92287078776019],[-114.15894158941589,27.929625096839715],[-114.15534155341552,27.936379405919254],[-114.15174151741518,27.944822292268668],[-114.16254162541625,27.94988802407832],[-114.16974169741697,27.951576601348194],[-114.1769417694177,27.946510869538542],[-114.1769417694177,27.93806798318913],[-114.18414184141841,27.931313674109603],[-114.19134191341914,27.92793651956984],[-114.19854198541985,27.92287078776019],[-114.20934209342093,27.917805055950538],[-114.22014220142201,27.919493633220426],[-114.23814238142381,27.912739324140887],[-114.24894248942489,27.90091928325171],[-114.2561425614256,27.892476396902296],[-114.2669426694267,27.88741066509266],[-114.27774277742778,27.90091928325171],[-114.27414274142741,27.916116478680664],[-114.27054270542705,27.929625096839715],[-114.26334263342633,27.944822292268668],[-114.25254252542526,27.953265178618082],[-114.23454234542345,27.96846237404702],[-114.22734227342274,27.980282414936198],[-114.2129421294213,27.99547961036515],[-114.20574205742057,28.00054534217479],[-114.18414184141841,28.022496846683268],[-114.15534155341552,28.06302270116045],[-114.13374133741337,28.08328562839904],[-114.11934119341193,28.086662782938816],[-114.11214112141121,28.059645546620686],[-114.11574115741158,28.04275977392186],[-114.13374133741337,28.03093973303268],[-114.14454144541445,28.022496846683268],[-114.14814148141481,28.014053960333854],[-114.15174151741518,28.003922496714566],[-114.13734137341373,27.988725301285612],[-114.130141301413,27.971839528586784],[-114.130141301413,27.961708064967496],[-114.10494104941048,27.92793651956984],[-114.0941409414094,27.958330910427733],[-114.09054090540906,27.976905260396435],[-114.0941409414094,27.99547961036515],[-114.10854108541085,28.014053960333854],[-114.11934119341193,28.01067680579409],[-114.12294122941229,28.015742537603742],[-114.12294122941229,28.022496846683268],[-114.10854108541085,28.03093973303268],[-114.0941409414094,28.024185423953156],[-114.07614076140761,28.008988228524203],[-114.06894068940689,27.99547961036515],[-114.05454054540544,28.00729965125433],[-114.04014040140402,28.02756257849292],[-114.03654036540365,28.037694042112207],[-114.04734047340473,28.037694042112207],[-114.05814058140581,28.04275977392186],[-114.06894068940689,28.054579814811035],[-114.08694086940869,28.056268392080923],[-114.10134101341013,28.054579814811035],[-114.10134101341013,28.071465587509863],[-114.10134101341013,28.098482823827993],[-114.10494104941048,28.11199144198706],[-114.11214112141121,28.120434328336472],[-114.11214112141121,28.12550006014611],[-114.10494104941048,28.133942946495523],[-114.09054090540906,28.155894451004002],[-114.07974079740796,28.176157378242593],[-114.06894068940689,28.19304315094142],[-114.05814058140581,28.206551769100486],[-114.06174061740617,28.211617500910137],[-114.06534065340654,28.223437541799314],[-114.06894068940689,28.238634737228253],[-114.07974079740796,28.247077623577667],[-114.09054090540906,28.247077623577667],[-114.09774097740977,28.238634737228253],[-114.10854108541085,28.242011891768016],[-114.11574115741158,28.25045477811743],[-114.12654126541265,28.25552050992708],[-114.11934119341193,28.269029128086146],[-114.11214112141121,28.285914900784974],[-114.09774097740977,28.30786640529344],[-114.07974079740796,28.343326527960983],[-114.06174061740617,28.404115309676754],[-114.0509405094051,28.43282112326476],[-114.04374043740437,28.458149782313],[-114.0509405094051,28.473346977741954],[-114.06534065340654,28.48010128682148],[-114.07254072540725,28.486855595901005],[-114.06894068940689,28.503741368599833],[-114.06894068940689,28.517249986758898],[-114.07614076140761,28.524004295838424],[-114.08334083340833,28.532447182187838],[-114.08694086940869,28.54089006853725],[-114.09774097740977,28.552710109426442],[-114.11214112141121,28.561152995775856],[-114.12654126541265,28.56284157304573],[-114.14814148141481,28.561152995775856],[-114.15894158941589,28.566218727585493],[-114.15894158941589,28.581415923014447],[-114.15534155341552,28.601678850253037],[-114.15894158941589,28.62531893203139],[-114.16614166141662,28.64727043653987],[-114.17334173341733,28.657401900159158],[-114.18414184141841,28.66246763196881],[-114.20934209342093,28.660779054698935],[-114.23454234542345,28.660779054698935],[-114.24534245342453,28.654024745619395],[-114.27054270542705,28.659090477429046],[-114.27414274142741,28.67259909558811],[-114.27054270542705,28.674287672857986],[-114.27054270542705,28.68441913647729],[-114.27414274142741,28.696239177366465],[-114.29934299342993,28.70299348644599],[-114.31374313743137,28.726633568224358],[-114.34614346143461,28.73001072276412],[-114.34614346143461,28.748585072732823],[-114.34974349743497,28.763782268161776],[-114.36054360543605,28.77729088632084],[-114.36054360543605,28.795865236289544],[-114.37134371343713,28.81275100898837],[-114.3929439294393,28.805996699908846],[-114.40734407344073,28.8397682453065],[-114.40374403744038,28.860031172545092],[-114.41814418144182,28.878605522513794],[-114.43614436144361,28.87691694524392],[-114.43974439744397,28.893802717942748],[-114.45774457744577,28.910688490641576],[-114.47574475744757,28.929262840610278],[-114.50094500945009,28.93263999515004],[-114.51534515345153,28.929262840610278],[-114.52254522545225,28.925885686070515],[-114.52974529745298,28.925885686070515],[-114.54414544145442,28.93432857241993],[-114.54774547745477,28.951214345118757],[-114.5549455494555,28.96978869508746],[-114.56214562145621,28.97992015870676],[-114.57654576545765,28.97992015870676],[-114.5909459094591,28.964722963277822],[-114.60534605346054,28.99680593140559],[-114.60174601746017,29.030577476803245],[-114.60894608946089,29.045774672232184],[-114.61974619746198,29.062660444931012],[-114.62334623346233,29.081234794899714],[-114.63054630546306,29.09474341305878],[-114.65934659346593,29.103186299408193],[-114.68814688146881,29.113317763027496],[-114.70614706147062,29.096431990328668],[-114.72054720547206,29.11669491756726],[-114.72774727747277,29.1420235766155],[-114.73494734947349,29.15215504023479],[-114.73854738547385,29.175795122013156],[-114.74214742147421,29.187615162902333],[-114.75294752947529,29.192680894711984],[-114.78534785347853,29.194369471981858],[-114.82854828548285,29.231518171919276],[-114.85014850148501,29.258535408237407],[-114.8789487894879,29.28724122182541],[-114.92574925749257,29.331144230842355],[-114.97254972549726,29.378424394399076],[-115.10575105751057,29.418950248876257],[-115.18855188551885,29.42908171249556],[-115.23175231752317,29.48987049421133],[-115.28575285752858,29.530396348688512],[-115.37215372153722,29.557413585006643],[-115.42255422554226,29.59625086221395],[-115.45135451354513,29.619890943992303],[-115.47655476554765,29.62664525307183],[-115.49815498154982,29.61144805764289],[-115.51975519755197,29.62664525307183],[-115.53775537755378,29.635088139421242],[-115.54855548555486,29.65366248938996],[-115.57375573755738,29.668859684818898],[-115.59535595355953,29.69249976659725],[-115.62055620556205,29.695876921137028],[-115.69615696156961,29.7566657028528],[-115.69615696156961,29.77692863009139],[-115.6889568895689,29.802257289139632],[-115.68535685356854,29.830963102727637],[-115.6889568895689,29.851226029966227],[-115.69615696156961,29.869800379934944],[-115.69975699756998,29.898506193522948],[-115.72135721357213,29.920457698031427],[-115.72855728557285,29.935654893460367],[-115.74295742957429,29.947474934349543],[-115.7609576095761,29.954229243429083],[-115.80775807758077,29.955917820698957],[-115.81135811358114,29.967737861588134],[-115.78975789757898,30.038658106923208],[-115.78255782557825,30.092692579559454],[-115.78975789757898,30.123086970417347],[-115.79335793357933,30.129841279496873],[-115.80055800558006,30.143349897655938],[-115.80415804158041,30.15179278400535],[-115.80415804158041,30.16361282489453],[-115.7969579695797,30.195695793022296],[-115.7969579695797,30.239598802039254],[-115.80775807758077,30.283501811056198],[-115.82575825758258,30.317273356453853],[-115.83655836558366,30.345979170041858],[-115.86535865358654,30.367930674550337],[-115.89775897758977,30.386505024519053],[-115.93375933759337,30.400013642678104],[-115.9769597695977,30.401702219947992],[-115.94815948159481,30.42365372445647],[-115.93735937359374,30.435473765345648],[-115.93375933759337,30.448982383504713],[-115.9409594095941,30.464179578933653],[-115.95535955359553,30.479376774362592],[-115.97335973359733,30.492885392521657],[-115.98775987759878,30.49795112433131],[-115.98055980559805,30.482753928902355],[-115.96975969759697,30.470933888013178],[-115.96255962559626,30.459113847124],[-115.96255962559626,30.442228074425174],[-115.97335973359733,30.43378518807576],[-115.98415984159841,30.432096610805885],[-115.98775987759878,30.4405394971553],[-116.00216002160022,30.448982383504713],[-116.00936009360093,30.443916651695062],[-116.01656016560165,30.43378518807576],[-116.0129601296013,30.425342301726346],[-116.00576005760058,30.421965147186583],[-115.99495994959949,30.410145106297406],[-115.99135991359914,30.388193601788927],[-115.98055980559805,30.359487788200923],[-116.00576005760058,30.359487788200923],[-116.0129601296013,30.39157075632869],[-116.02736027360274,30.4405394971553],[-116.0489604896049,30.479376774362592],[-116.0309603096031,30.62797157411228],[-116.03816038160382,30.73097478757512],[-116.05616056160562,30.78332068294148],[-116.05616056160562,30.801895032910195],[-116.06696066960669,30.813715073799372],[-116.10656106561066,30.818780805609023],[-116.15336153361534,30.857618082816316],[-116.1749617496175,30.859306660086204],[-116.20016200162001,30.89138962821397],[-116.2181621816218,30.91334113272245],[-116.22536225362254,30.926849750881516],[-116.25056250562506,30.957244141739395],[-116.26856268562685,30.963998450818934],[-116.30816308163082,30.953866987199632],[-116.3369633696337,30.95555556446952],[-116.34056340563406,30.989327109867176],[-116.32616326163262,31.02816438707447],[-116.31896318963189,31.088953168790255],[-116.30816308163082,31.148053373236138],[-116.34056340563406,31.218973618571212],[-116.45576455764558,31.338862604732896],[-116.49896498964989,31.406405695528193],[-116.50976509765098,31.419914313687258],[-116.51336513365133,31.42329146822702],[-116.53136531365314,31.44017724092585],[-116.53856538565385,31.446931550005388],[-116.5529655296553,31.451997281815025],[-116.57096570965709,31.46719447724398],[-116.58536585365854,31.47057163178374],[-116.59616596165961,31.477325940863267],[-116.59976599765997,31.484080249942807],[-116.60336603366034,31.490834559022332],[-116.61056610566106,31.500966022641634],[-116.64656646566465,31.52798325895975],[-116.65376653766538,31.538114722579053],[-116.67536675366753,31.553311918007992],[-116.68256682566826,31.566820536167057],[-116.6789667896679,31.576951999786345],[-116.68256682566826,31.576951999786345],[-116.6681666816668,31.580329154326108],[-116.64296642966428,31.580329154326108],[-116.66456664566645,31.600592081564713],[-116.6609666096661,31.615789276993652],[-116.65736657366574,31.63267504969248],[-116.64656646566465,31.659692286010596],[-116.65376653766538,31.678266635979313],[-116.6681666816668,31.696840985948015],[-116.67536675366753,31.701906717757666],[-116.68976689766897,31.708661026837206],[-116.7149671496715,31.71034960410708],[-116.74016740167401,31.739055417695084],[-116.75096750967509,31.75256403585415],[-116.70776707767078,31.744121149504736],[-116.6789667896679,31.727235376805908],[-116.6609666096661,31.723858222266145],[-116.64296642966428,31.733989685885447],[-116.63216632166322,31.75256403585415],[-116.62136621366213,31.771138385822866],[-116.61416614166141,31.801532776680745],[-116.61056610566106,31.821795703919335],[-116.61056610566106,31.84205863115794],[-116.62136621366213,31.85725582658688],[-116.65736657366574,31.864010135666405],[-116.67536675366753,31.869075867476056],[-116.69336693366932,31.889338794714646],[-116.71856718567184,31.901158835603823],[-116.73656736567366,31.90284741287371],[-116.75456754567546,31.909601721953237],[-116.75456754567546,31.93493038100148],[-116.75816758167582,31.965324771859372],[-116.76896768967688,31.97714481274855],[-116.8049680496805,31.978833390018437],[-116.8409684096841,31.98727627636785],[-116.86616866168661,32.01260493541609],[-116.87696876968769,32.03455643992456],[-116.87696876968769,32.0700165625921],[-116.88776887768879,32.13249392157776],[-116.90576905769058,32.178085507864594],[-116.92376923769237,32.218611362341775],[-116.93456934569346,32.233808557770715],[-116.94896948969489,32.24731717592978],[-116.9669696696967,32.255760062279194],[-117.01017010170102,32.265891525898496],[-117.02457024570245,32.27771156678767],[-117.07497074970749,32.36889473936134],[-117.08937089370893,32.40435486202887],[-117.10737107371074,32.43812640742652],[-117.11817118171182,32.45501218012535],[-117.12177121771217,32.47189795282418],[-117.12177121771217,32.490472302792895],[-117.12537125371253,32.51242380730136],[-117.12537125371253,32.52424384819054],[-117.12537125371253,32.53944104361949],[-117.13257132571326,32.568146857207495],[-117.13257132571326,32.59347551625574],[-117.13617136171362,32.615427020764216],[-117.15057150571505,32.645821411622094],[-117.16497164971649,32.66946149340046],[-117.19017190171901,32.68297011155951],[-117.22257222572225,32.6846586888294],[-117.22617226172261,32.69647872971858],[-117.2189721897219,32.70661019333788],[-117.20457204572045,32.713364502417406],[-117.19017190171901,32.713364502417406],[-117.18657186571866,32.70661019333788],[-117.16857168571686,32.698167306988466],[-117.16497164971649,32.68297011155951],[-117.15417154171541,32.672838647940225],[-117.14337143371434,32.652575720701634],[-117.13257132571326,32.630624216193155],[-117.12537125371253,32.6069841344148],[-117.11457114571145,32.60022982533526],[-117.10377103771037,32.6069841344148],[-117.10377103771037,32.62049275257385],[-117.11817118171182,32.652575720701634],[-117.11817118171182,32.671150070670336],[-117.13257132571326,32.68972442063905],[-117.14697146971469,32.69479015244869],[-117.16497164971649,32.70661019333788],[-117.17577175771757,32.715053079687294],[-117.17577175771757,32.72687312057647],[-117.20817208172082,32.72518454330658],[-117.22257222572225,32.71843023422706],[-117.2369723697237,32.70661019333788],[-117.2369723697237,32.66946149340046],[-117.24417244172442,32.6745272252101],[-117.2549725497255,32.69141299790893],[-117.25857258572586,32.70154446152823],[-117.2549725497255,32.74713604781506],[-117.2549725497255,32.76402182051389],[-117.25857258572586,32.78428474775248],[-117.28017280172801,32.82312202495979],[-117.28377283772838,32.838319220388726],[-117.27297272972729,32.85182783854779],[-117.26577265772657,32.84676210673814],[-117.25857258572586,32.853516415817666],[-117.2549725497255,32.88559938394545],[-117.25857258572586,32.9092394657238],[-117.27297272972729,32.99366832921794],[-117.28017280172801,33.00717694737699],[-117.28737287372874,33.02406272007582],[-117.2981729817298,33.035882760964995],[-117.32337323373233,33.10849158356996],[-117.3629736297363,33.16590321074597],[-117.51057510575106,33.334760937734245],[-117.5969759697597,33.390483987640366],[-117.65457654576545,33.44114130573685],[-117.6689766897669,33.452961346626026],[-117.71577715777158,33.474912851134505],[-117.73377733777338,33.48504431475379],[-117.77697776977769,33.52894732377075],[-117.82377823778238,33.56103029189852],[-117.88137881378813,33.593113260026286],[-117.93177931779317,33.60831045545524],[-117.97857978579785,33.635327691773355],[-118.09018090180902,33.73157659615667],[-118.1189811898119,33.74339663704585],[-118.15138151381514,33.7585938324748],[-118.1729817298173,33.76365956428444],[-118.18378183781837,33.75690525520491],[-118.19818198181981,33.76365956428444],[-118.20898208982089,33.76365956428444],[-118.1909819098191,33.75183952339526],[-118.18738187381874,33.74170805977597],[-118.18378183781837,33.73157659615667],[-118.19458194581946,33.73157659615667],[-118.20178201782018,33.740019482506085],[-118.20178201782018,33.74677379158561],[-118.20898208982089,33.74170805977597],[-118.21258212582126,33.7484623688555],[-118.21978219782198,33.77041387336398],[-118.23058230582305,33.76872529609409],[-118.24138241382414,33.767036718824215],[-118.24858248582485,33.76365956428444],[-118.25578255782557,33.76534814155433],[-118.25938259382593,33.760282409744676],[-118.27018270182703,33.75352810066515],[-118.27738277382774,33.75690525520491],[-118.27378273782737,33.75015094612539],[-118.27738277382774,33.73833090523621],[-118.27378273782737,33.72313370980726],[-118.27378273782737,33.71469082345784],[-118.28098280982809,33.71637940072773],[-118.28098280982809,33.71131366891808],[-118.27738277382774,33.70793651437832],[-118.28098280982809,33.70793651437832],[-118.29178291782918,33.70287078256867],[-118.30258302583026,33.70962509164819],[-118.3169831698317,33.71469082345784],[-118.33138331383313,33.719756555267494],[-118.35658356583565,33.72651086434702],[-118.36378363783638,33.734953750696434],[-118.37458374583746,33.73664232796632],[-118.38538385383853,33.740019482506085],[-118.39258392583926,33.73664232796632],[-118.39978399783998,33.734953750696434],[-118.40338403384034,33.740019482506085],[-118.41058410584105,33.74170805977597],[-118.41418414184142,33.755216677935024],[-118.42138421384215,33.76365956428444],[-118.42858428584286,33.77379102790374],[-118.42138421384215,33.78392249152304],[-118.41058410584105,33.79067680060257],[-118.40698406984069,33.797431109682094],[-118.39618396183963,33.80587399603151],[-118.39258392583926,33.817694036920685],[-118.39258392583926,33.8362683868894],[-118.39618396183963,33.844711273238815],[-118.39978399783998,33.85146558231834],[-118.41058410584105,33.87341708682682],[-118.4249842498425,33.90550005495459],[-118.4429844298443,33.949403063971545],[-118.48258482584825,33.99837180479814],[-118.5149851498515,34.02201188657649],[-118.54378543785438,34.03889765927532],[-118.55818558185581,34.03720908200545],[-118.5689856898569,34.04058623654521],[-118.58338583385833,34.03720908200545],[-118.59058590585906,34.03889765927532],[-118.60498604986049,34.03889765927532],[-118.60858608586085,34.03552050473556],[-118.63738637386373,34.03720908200545],[-118.66618666186662,34.03889765927532],[-118.6769867698677,34.03889765927532],[-118.6769867698677,34.03383192746567],[-118.68058680586805,34.03045477292591],[-118.69138691386914,34.032143350195796],[-118.70578705787057,34.02876619565603],[-118.73098730987309,34.032143350195796],[-118.7489874898749,34.032143350195796],[-118.7561875618756,34.025389041116256],[-118.77418774187743,34.02370046384638],[-118.78498784987849,34.02201188657649],[-118.78858788587885,34.02032330930662],[-118.78858788587885,34.01525757749697],[-118.79218792187922,34.011880422957205],[-118.79218792187922,34.006814691147554],[-118.79578795787958,34.006814691147554],[-118.8029880298803,34.005126113877665],[-118.8029880298803,34.0017489593379],[-118.80658806588065,34.00006038206803],[-118.82818828188282,34.02032330930662],[-118.85338853388534,34.03383192746567],[-118.86418864188641,34.03383192746567],[-118.8749887498875,34.03720908200545],[-118.8929889298893,34.03889765927532],[-118.90378903789038,34.04058623654521],[-118.91458914589145,34.04058623654521],[-118.92178921789218,34.04396339108497],[-118.9289892898929,34.04565196835486],[-118.93618936189361,34.04396339108497],[-118.95418954189542,34.047340545624735],[-118.97578975789759,34.05916058651391],[-118.99738997389974,34.06591489559345],[-119.0081900819008,34.06591489559345],[-119.03699036990369,34.08280066829228],[-119.06219062190621,34.08617782283204],[-119.0909909099091,34.09968644099111],[-119.10179101791019,34.10306359553087],[-119.11619116191162,34.10644075007063],[-119.11979119791198,34.10644075007063],[-119.11979119791198,34.10306359553087],[-119.11259112591125,34.10137501826098],[-119.10179101791019,34.09968644099111],[-119.10539105391054,34.094620709181456],[-119.12699126991271,34.10137501826098],[-119.15219152191521,34.116572213689935],[-119.19539195391954,34.14190087273816],[-119.20259202592025,34.14358945000805],[-119.20619206192062,34.14527802727794],[-119.20259202592025,34.1486551818177],[-119.20619206192062,34.150343759087576],[-119.20979209792097,34.152032336357465],[-119.20979209792097,34.1486551818177],[-119.21339213392133,34.14527802727794],[-119.2169921699217,34.14527802727794],[-119.22059220592206,34.15372091362735],[-119.22419224192242,34.157098068167116],[-119.22779227792277,34.15878664543699],[-119.23139231392314,34.167229531786404],[-119.23859238592385,34.17736099540571],[-119.24219242192422,34.19086961356477],[-119.2529925299253,34.20437823172382],[-119.26019260192601,34.21788684988289],[-119.26379263792637,34.2263297362323],[-119.26019260192601,34.23308404531184],[-119.26379263792637,34.234772622581715],[-119.26739267392674,34.24490408620102],[-119.2709927099271,34.255035549820306],[-119.28179281792818,34.26854416797937],[-119.28899288992889,34.2752984770589],[-119.29619296192962,34.27360989978902],[-119.30339303393033,34.271921322519134],[-119.31419314193141,34.276987054328785],[-119.32139321393214,34.282052786138436],[-119.32859328593285,34.2854299406782],[-119.33939339393393,34.29049567248785],[-119.35019350193502,34.3040042906469],[-119.35739357393574,34.31075859972644],[-119.36459364593645,34.31582433153609],[-119.37179371793718,34.319201486075855],[-119.37539375393754,34.32089006334573],[-119.38259382593826,34.319201486075855],[-119.38619386193861,34.317512908805966],[-119.38979389793897,34.319201486075855],[-119.39339393393934,34.32257864061562],[-119.40059400594006,34.33102152696503],[-119.41139411394113,34.33608725877468],[-119.41859418594186,34.34284156785421],[-119.42939429394293,34.35297303147351],[-119.43659436594365,34.35635018601327],[-119.44379443794438,34.354661608743385],[-119.45459454594545,34.36817022690245],[-119.46179461794617,34.3732359587121],[-119.46539465394653,34.374924535981975],[-119.4689946899469,34.376613113251864],[-119.47259472594726,34.3732359587121],[-119.47619476194762,34.3732359587121],[-119.47979479794797,34.374924535981975],[-119.48339483394834,34.37830169052175],[-119.48699486994869,34.381678845061515],[-119.49419494194942,34.38336742233139],[-119.50139501395014,34.38505599960128],[-119.51579515795157,34.386744576871166],[-119.51939519395194,34.39012173141093],[-119.53019530195301,34.39518746322058],[-119.53739537395373,34.39518746322058],[-119.55539555395553,34.41038465864952],[-119.56259562595625,34.41545039045917],[-119.56979569795698,34.41376181318928],[-119.57339573395734,34.412073235919394],[-119.5769957699577,34.412073235919394],[-119.58059580595805,34.412073235919394],[-119.5949959499595,34.41882754499893],[-119.61659616596165,34.42051612226881],[-119.62019620196202,34.41882754499893],[-119.62739627396274,34.41882754499893],[-119.63819638196381,34.41545039045917],[-119.65619656196561,34.417138967729045],[-119.67779677796779,34.41376181318928],[-119.68859688596885,34.41038465864952],[-119.68859688596885,34.40869608137963],[-119.69219692196921,34.40531892683987],[-119.69219692196921,34.403630349569994],[-119.69939699396994,34.40025319503022],[-119.7029970299703,34.39856461776034],[-119.70659706597066,34.39518746322058],[-119.7209972099721,34.39518746322058],[-119.73179731797318,34.396876040490454],[-119.74259742597425,34.401941772300106],[-119.75339753397535,34.40531892683987],[-119.78939789397893,34.417138967729045],[-119.80379803798039,34.41882754499893],[-119.80739807398074,34.417138967729045],[-119.83259832598326,34.41545039045917],[-119.83619836198362,34.41545039045917],[-119.83979839798397,34.41376181318928],[-119.83979839798397,34.41038465864952],[-119.84339843398433,34.40700750410976],[-119.84339843398433,34.403630349569994],[-119.85419854198543,34.40869608137963],[-119.86859868598685,34.40869608137963],[-119.87579875798758,34.40869608137963],[-119.87939879398795,34.40700750410976],[-119.89019890198901,34.41882754499893],[-119.9009990099901,34.42051612226881],[-119.92259922599226,34.43402474042787],[-119.93339933399334,34.43571331769776],[-119.94419944199441,34.43571331769776],[-119.95139951399514,34.43402474042787],[-119.95859958599586,34.43571331769776],[-119.96219962199622,34.439090472237524],[-119.97659976599766,34.44753335858694],[-119.98379983799838,34.449221935856826],[-119.99099990999909,34.449221935856826],[-120.0090000900009,34.461041976746],[-120.02340023400234,34.45766482220624],[-120.03780037800378,34.46273055401588],[-120.09180091800917,34.459353399476115],[-120.1350013500135,34.47286201763518],[-120.1710017100171,34.46948486309542],[-120.29340293402933,34.46779628582553],[-120.42660426604266,34.4509105131267],[-120.44460444604445,34.4509105131267],[-120.45540455404554,34.44246762677729],[-120.47340473404734,34.4509105131267],[-120.49140491404914,34.49143636760388],[-120.50940509405095,34.521830758461775],[-120.53460534605347,34.53533937662084],[-120.55620556205562,34.54040510843049],[-120.57780577805778,34.55391372658954],[-120.59580595805957,34.55391372658954],[-120.62100621006209,34.55222514931967],[-120.63540635406355,34.562356612938956],[-120.64620646206461,34.57417665382815],[-120.64620646206461,34.58599669471732],[-120.64260642606426,34.60119389014626],[-120.63180631806318,34.62821112646439],[-120.61380613806138,34.65860551732227],[-120.60660606606066,34.67886844456086],[-120.6030060300603,34.704197103609104],[-120.61740617406174,34.72614860811758],[-120.62820628206282,34.74303438081641],[-120.6390063900639,34.75823157624535],[-120.62820628206282,34.78187165802372],[-120.62100621006209,34.819020357961136],[-120.61740617406174,34.84434901700938],[-120.61380613806138,34.85785763516843],[-120.62100621006209,34.86798909878773],[-120.63180631806318,34.871366253327494],[-120.6390063900639,34.87980913967691],[-120.64620646206461,34.89500633510585],[-120.65340653406534,34.90176064418539],[-120.66780667806678,34.898383489645624],[-120.67140671406713,34.90682637599504],[-120.66780667806678,34.932155035043266],[-120.64260642606426,35.001386703108466],[-120.63540635406355,35.03515824850612],[-120.63180631806318,35.073995525713414],[-120.63540635406355,35.10776707111107],[-120.64620646206461,35.13985003923884],[-120.65340653406534,35.14491577104849],[-120.6570065700657,35.14998150285814],[-120.67140671406713,35.14998150285814],[-120.67860678606786,35.1533586573979],[-120.69660696606965,35.168555852826856],[-120.70740707407074,35.17362158463649],[-120.72540725407254,35.17531016190638],[-120.75060750607506,35.17699873917627],[-120.75420754207542,35.17193300736662],[-120.75420754207542,35.163490121017205],[-120.75780757807578,35.15842438920755],[-120.7650076500765,35.16011296647744],[-120.79020790207902,35.178687316446144],[-120.85140851408514,35.2023273982245],[-120.87660876608766,35.224278902732976],[-120.88740887408875,35.23441036635228],[-120.89820898208981,35.24960756178122],[-120.89460894608945,35.27324764355957],[-120.88740887408875,35.28675626171864],[-120.86940869408693,35.330659270735595],[-120.86220862208623,35.36274223886336],[-120.8550085500855,35.34754504343442],[-120.85860858608586,35.32728211619582],[-120.8550085500855,35.32221638438618],[-120.84420844208441,35.323904961656055],[-120.84060840608406,35.33234784800547],[-120.82980829808298,35.33572500254523],[-120.83700837008371,35.34247931162477],[-120.84060840608406,35.345856466164534],[-120.85140851408514,35.36780797067301],[-120.85860858608586,35.37456227975254],[-120.86580865808658,35.371185125212776],[-120.86940869408693,35.40495667061043],[-120.88020880208802,35.42015386603937],[-120.88740887408875,35.433662484198436],[-120.9090090900909,35.448859679627375],[-120.94500945009449,35.44548252508761],[-120.96300963009631,35.45730256597679],[-120.9810098100981,35.46067972051655],[-121.00621006210062,35.46067972051655],[-121.03861038610387,35.48938553410456],[-121.06741067410674,35.518091347692575],[-121.10341103411034,35.55017431582034],[-121.13221132211322,35.600831633916826],[-121.1430114301143,35.60420878845659],[-121.15741157411574,35.62784887023494],[-121.16821168211682,35.636291756584356],[-121.18621186211863,35.64135748839401],[-121.19341193411934,35.63966891112412],[-121.18981189811899,35.63460317931447],[-121.19341193411934,35.63291460204459],[-121.21501215012151,35.64811179747353],[-121.2330123301233,35.651488952013295],[-121.2510125101251,35.65655468382295],[-121.2690126901269,35.66499757017236],[-121.2870128701287,35.66499757017236],[-121.2870128701287,35.68188334287119],[-121.29781297812977,35.69708053830013],[-121.30861308613086,35.70721200191943],[-121.31581315813158,35.713966310998956],[-121.32301323013229,35.76462362909544],[-121.33741337413375,35.78657513360392],[-121.36621366213662,35.81021521538227],[-121.38781387813879,35.82203525627145],[-121.40941409414094,35.84398676077993],[-121.4130141301413,35.85411822439923],[-121.42381423814237,35.85918395620887],[-121.44181441814418,35.86931541982817],[-121.46341463414635,35.886201192527],[-121.46341463414635,35.903086965225825],[-121.47061470614706,35.91321842884511],[-121.47781477814777,35.93179277881383],[-121.48141481414814,35.94867855151266],[-121.48861488614887,35.965564324211485],[-121.48861488614887,35.98245009691031],[-121.50661506615066,36.0027130241489],[-121.5210152101521,36.00946733322843],[-121.54261542615426,36.01453306503808],[-121.56781567815678,36.01959879684773],[-121.58221582215822,36.03648456954656],[-121.5930159301593,36.049993187705624],[-121.5930159301593,36.063501805864675],[-121.60741607416074,36.07194469221409],[-121.61821618216182,36.083764733103266],[-121.6290162901629,36.112470546691284],[-121.64341643416434,36.12429058758046],[-121.65781657816578,36.14286493754916],[-121.67941679416793,36.163127864787754],[-121.69381693816938,36.17157075113717],[-121.70461704617045,36.18170221475647],[-121.72981729817297,36.1985879874553],[-121.7550175501755,36.21209660561436],[-121.78021780217802,36.225605223773414],[-121.79821798217982,36.23404811012283],[-121.8090180901809,36.23235953285295],[-121.82341823418234,36.23911384193248],[-121.83421834218342,36.24924530555178],[-121.84141841418415,36.25937676917107],[-121.8450184501845,36.272885387330135],[-121.85221852218521,36.27963969640966],[-121.8630186301863,36.28301685094944],[-121.87381873818738,36.28977116002896],[-121.8810188101881,36.29990262364825],[-121.8990189901899,36.3049683554579],[-121.89541895418954,36.313411241807316],[-121.89541895418954,36.32860843723627],[-121.89541895418954,36.33198559177603],[-121.89181891818919,36.33873990085556],[-121.8990189901899,36.34380563266521],[-121.90261902619025,36.35224851901462],[-121.90261902619025,36.36237998263391],[-121.90621906219062,36.37251144625321],[-121.90621906219062,36.377577178062865],[-121.90261902619025,36.38433148714239],[-121.90621906219062,36.38770864168215],[-121.90981909819098,36.39615152803157],[-121.91341913419134,36.402905837111106],[-121.91701917019171,36.41472587800028],[-121.91701917019171,36.4231687643497],[-121.91701917019171,36.42992307342922],[-121.92781927819277,36.44849742339794],[-121.93141931419314,36.455251732477464],[-121.93141931419314,36.46369461882688],[-121.93861938619386,36.46876035063653],[-121.94581945819458,36.48564612333536],[-121.94581945819458,36.49240043241488],[-121.94221942219423,36.497466164224534],[-121.94221942219423,36.502531896034185],[-121.94581945819458,36.50590905057395],[-121.94221942219423,36.51266335965347],[-121.94941949419494,36.51435193692336],[-121.95661956619566,36.517729091463124],[-121.95661956619566,36.522794823272775],[-121.94941949419494,36.52448340054265],[-121.93861938619386,36.522794823272775],[-121.92781927819277,36.52448340054265],[-121.92781927819277,36.53123770962219],[-121.93141931419314,36.537992018701715],[-121.9350193501935,36.544746327781255],[-121.93141931419314,36.54643490505113],[-121.93141931419314,36.55487779140054],[-121.9350193501935,36.56163210048008],[-121.93861938619386,36.558254945940305],[-121.94221942219423,36.56332067774996],[-121.94581945819458,36.565009255019845],[-121.94941949419494,36.56332067774996],[-121.95301953019529,36.559943523210194],[-121.9710197101971,36.56838640955961],[-121.97821978219781,36.57514071863913],[-121.98181981819818,36.58358360498855],[-121.97461974619746,36.58358360498855],[-121.96741967419675,36.585272182258436],[-121.96741967419675,36.59202649133796],[-121.96381963819638,36.600469377687375],[-121.96021960219602,36.61228941857655],[-121.95661956619566,36.61397799584644],[-121.94941949419494,36.61060084130668],[-121.94581945819458,36.6173551503862],[-121.94221942219423,36.62579803673562],[-121.94221942219423,36.63424092308503],[-121.93861938619386,36.63930665489468],[-121.92781927819277,36.63761807762479],[-121.92061920619206,36.63424092308503],[-121.92061920619206,36.62917519127538],[-121.91341913419134,36.62410945946574],[-121.90261902619025,36.620732304925966],[-121.89541895418954,36.61228941857655],[-121.88821888218882,36.60215795495726],[-121.87741877418773,36.60215795495726],[-121.87021870218702,36.607223686766915],[-121.85221852218521,36.61904372765609],[-121.83781837818378,36.63592950035492],[-121.82701827018269,36.65619242759351],[-121.81261812618126,36.683209663911626],[-121.8090180901809,36.71866978657917],[-121.80541805418054,36.73724413654787],[-121.79101791017911,36.73048982746835],[-121.76221762217622,36.72204694111893],[-121.76221762217622,36.73048982746835],[-121.76581765817659,36.735555559278],[-121.76941769417694,36.73893271381776],[-121.77661776617765,36.73724413654787],[-121.78381783817838,36.73724413654787],[-121.79101791017911,36.74230986835752],[-121.79461794617946,36.745687022897286],[-121.80181801818017,36.75075275470694],[-121.79821798217982,36.77945856829494],[-121.79101791017911,36.80647580461307],[-121.80541805418054,36.83518161820108],[-121.85941859418594,36.928053368044615],[-121.88821888218882,36.955070604362746],[-121.90621906219062,36.96857922252181],[-121.93861938619386,36.9787106861411],[-121.95301953019529,36.970267799791685],[-121.96381963819638,36.9601363361724],[-121.97461974619746,36.955070604362746],[-121.99261992619927,36.9601363361724],[-122.0070200702007,36.96182491344227],[-122.02142021420214,36.96182491344227],[-122.0250202502025,36.9601363361724],[-122.0250202502025,36.956759181632634],[-122.0250202502025,36.95169344982298],[-122.03582035820358,36.95338202709286],[-122.04662046620466,36.94831629528322],[-122.0610206102061,36.94831629528322],[-122.08262082620826,36.95169344982298],[-122.10422104221041,36.955070604362746],[-122.12222122221222,36.96351349071216],[-122.13662136621366,36.965202067982034],[-122.14382143821439,36.975333531601336],[-122.15462154621545,36.977022108871225],[-122.17622176221762,36.99559645883993],[-122.20862208622086,37.01923654061828],[-122.2230222302223,37.02430227242793],[-122.22662226622266,37.039499467856885],[-122.25542255422553,37.059762395095476],[-122.26622266222662,37.0766481677943],[-122.28062280622805,37.096911095032894],[-122.29142291422914,37.10366540411242],[-122.29862298622986,37.11041971319196],[-122.30942309423094,37.117174022271485],[-122.32022320223203,37.115485445001596],[-122.32742327423274,37.11210829046183],[-122.33822338223382,37.11886259954137],[-122.33822338223382,37.13405979497031],[-122.35982359823598,37.15094556766914],[-122.35982359823598,37.16276560855832],[-122.37062370623707,37.17458564944749],[-122.3850238502385,37.18302853579691],[-122.39582395823959,37.18133995852703],[-122.4030240302403,37.194848576686084],[-122.40662406624065,37.21680008119456],[-122.41022410224102,37.226931544813866],[-122.41742417424175,37.23368585389339],[-122.41742417424175,37.25226020386209],[-122.41022410224102,37.26914597656092],[-122.40662406624065,37.29447463560916],[-122.4030240302403,37.340066221895995],[-122.39942399423994,37.360329149134586],[-122.41022410224102,37.36370630367436],[-122.41022410224102,37.37552634456354],[-122.42822428224282,37.40760931269131],[-122.44622446224463,37.4380037035492],[-122.44982449824498,37.47684098075649],[-122.46422464224642,37.4971039079951],[-122.47862478624786,37.502169639804734],[-122.48582485824858,37.502169639804734],[-122.4930249302493,37.50048106253486],[-122.49662496624967,37.49541533072521],[-122.50022500225002,37.49372675345532],[-122.50022500225002,37.502169639804734],[-122.5110251102511,37.51061252615415],[-122.52182521825219,37.53087545339274],[-122.51822518225183,37.54607264882169],[-122.51462514625146,37.56126984425063],[-122.52182521825219,37.5747784624097],[-122.51822518225183,37.589975657838636],[-122.52182521825219,37.5933528123784],[-122.51822518225183,37.59504138964829],[-122.51462514625146,37.59841854418805],[-122.50742507425073,37.59841854418805],[-122.50382503825038,37.60179569872781],[-122.50022500225002,37.606861430537464],[-122.49662496624967,37.627124357776054],[-122.4930249302493,37.66596163498336],[-122.50022500225002,37.70311033492078],[-122.50742507425073,37.72506183942926],[-122.51462514625146,37.752079075747375],[-122.51462514625146,37.78078488933538],[-122.50742507425073,37.78585062114503],[-122.49662496624967,37.78753919841492],[-122.48582485824858,37.79091635295468],[-122.4750247502475,37.81117928019327],[-122.46422464224642,37.80611354838362],[-122.41742417424175,37.81117928019327],[-122.41022410224102,37.81117928019327],[-122.39942399423994,37.80273639384386],[-122.38862388623886,37.79091635295468],[-122.38862388623886,37.779096312065505],[-122.38142381423813,37.774030580255854],[-122.38142381423813,37.76389911663655],[-122.37782377823778,37.75545623028714],[-122.37422374223742,37.74870192120761],[-122.3670236702367,37.7402590348582],[-122.35622356223561,37.73012757123891],[-122.36342363423634,37.714930375809956],[-122.37782377823778,37.716618953079845],[-122.37782377823778,37.70817606673043],[-122.39222392223922,37.709864644000305],[-122.38862388623886,37.67778167587254],[-122.38142381423813,37.676093098602664],[-122.38142381423813,37.66765021225325],[-122.37422374223742,37.65583017136406],[-122.38142381423813,37.647387285014645],[-122.3850238502385,37.63725582139536],[-122.3850238502385,37.632190089585706],[-122.36342363423634,37.627124357776054],[-122.35262352623526,37.613615739617],[-122.35982359823598,37.60855000780735],[-122.37062370623707,37.613615739617],[-122.37422374223742,37.6034842759977],[-122.36342363423634,37.60010712145794],[-122.35982359823598,37.5933528123784],[-122.33102331023309,37.589975657838636],[-122.31662316623166,37.589975657838636],[-122.31662316623166,37.58322134875911],[-122.29862298622986,37.57646703967957],[-122.28422284222842,37.5747784624097],[-122.2590225902259,37.571401307869934],[-122.25182251822518,37.56802415333017],[-122.24462244622447,37.55282695790122],[-122.2410224102241,37.54607264882169],[-122.23022230222301,37.544384071551804],[-122.20862208622086,37.53931833974215],[-122.19782197821978,37.534252607932515],[-122.19782197821978,37.527498298852976],[-122.20862208622086,37.51736683523369],[-122.19422194221943,37.5156782579638],[-122.18342183421834,37.507235371614385],[-122.17262172621726,37.50385821707462],[-122.15822158221582,37.50385821707462],[-122.14742147421474,37.4971039079951],[-122.1330213302133,37.4971039079951],[-122.12222122221222,37.485283867105906],[-122.11142111421114,37.466709517137204],[-122.10062100621006,37.45488947624803],[-122.08262082620826,37.44813516716849],[-122.05742057420574,37.44813516716849],[-122.03942039420394,37.451512321708265],[-122.03222032220322,37.46333236259744],[-122.03942039420394,37.46839809440708],[-122.04662046620466,37.46839809440708],[-122.05382053820537,37.471775248946855],[-122.05022050220502,37.47684098075649],[-122.05022050220502,37.48359528983603],[-122.05022050220502,37.48866102164568],[-122.05742057420574,37.4971039079951],[-122.0610206102061,37.502169639804734],[-122.06822068220683,37.50385821707462],[-122.09342093420935,37.50385821707462],[-122.10782107821078,37.51736683523369],[-122.1150211502115,37.54269549428193],[-122.14742147421474,37.57815561694946],[-122.1510215102151,37.61530431688688],[-122.16182161821618,37.66427305771347],[-122.1870218702187,37.6912902940316],[-122.19062190621906,37.69973318038102],[-122.20502205022049,37.709864644000305],[-122.21582215822158,37.69973318038102],[-122.25182251822518,37.72337326215937],[-122.26262262622626,37.74363618939796],[-122.24822248222482,37.74870192120761],[-122.21222212222122,37.74363618939796],[-122.21582215822158,37.758833384826914],[-122.2230222302223,37.76052196209679],[-122.22662226622266,37.75545623028714],[-122.2410224102241,37.75545623028714],[-122.26982269822699,37.76221053936668],[-122.28422284222842,37.76389911663655],[-122.29142291422914,37.76727627117633],[-122.29862298622986,37.772342002985965],[-122.29862298622986,37.779096312065505],[-122.30582305823057,37.78078488933538],[-122.30942309423094,37.77571915752574],[-122.33102331023309,37.78247346660527],[-122.32742327423274,37.79598208476433],[-122.32382323823238,37.80104781657397],[-122.32382323823238,37.80442497111375],[-122.32742327423274,37.80442497111375],[-122.33822338223382,37.80273639384386],[-122.34182341823418,37.80780212565351],[-122.33462334623346,37.81117928019327],[-122.32382323823238,37.81117928019327],[-122.31662316623166,37.8179335892728],[-122.32742327423274,37.821310743812575],[-122.32022320223203,37.82468789835234],[-122.30222302223022,37.82637647562221],[-122.29502295022951,37.83144220743186],[-122.29862298622986,37.83988509378128],[-122.30222302223022,37.86352517555963],[-122.31662316623166,37.86014802101987],[-122.31662316623166,37.86859090736928],[-122.30942309423094,37.87027948463917],[-122.3130231302313,37.88547668006811],[-122.32742327423274,37.90742818457659],[-122.3490234902349,37.9057396073067],[-122.36342363423634,37.904051030036825],[-122.39222392223922,37.90742818457659],[-122.38862388623886,37.92093680273565],[-122.39582395823959,37.92769111181518],[-122.41022410224102,37.93275684362483],[-122.42102421024211,37.94795403905377],[-122.42822428224282,37.9648398117526],[-122.41382413824138,37.961462657212834],[-122.39942399423994,37.95639692540318],[-122.39582395823959,37.96990554356225],[-122.3670236702367,37.98003700718154],[-122.35982359823598,37.98847989353095],[-122.37062370623707,38.003677088959904],[-122.3670236702367,38.01211997530932],[-122.34542345423455,38.00536566622978],[-122.33462334623346,38.003677088959904],[-122.32382323823238,38.00536566622978],[-122.31662316623166,38.01043139803943],[-122.29862298622986,38.01043139803943],[-122.2770227702277,38.02562859346837],[-122.2770227702277,38.039137211627434],[-122.26262262622626,38.045891520706974],[-122.24822248222482,38.05602298432626],[-122.22662226622266,38.05771156159615],[-122.20502205022049,38.0526458297865],[-122.1870218702187,38.04758009797685],[-122.16902169021691,38.02731717073826],[-122.14742147421474,38.023940016198495],[-122.12582125821258,38.029005748008146],[-122.08262082620826,38.04758009797685],[-122.05382053820537,38.0526458297865],[-122.00342003420033,38.05602298432626],[-121.93861938619386,38.044202943437085],[-121.88821888218882,38.04082578889732],[-121.87741877418773,38.03407147981778],[-121.83781837818378,38.022251438928606],[-121.78021780217802,38.01549712984908],[-121.75141751417513,38.01887428438884],[-121.72261722617226,38.01043139803943],[-121.70101701017009,38.008742820769555],[-121.69021690216903,38.008742820769555],[-121.6830168301683,38.01718570711897],[-121.69381693816938,38.023940016198495],[-121.71181711817118,38.022251438928606],[-121.72261722617226,38.02562859346837],[-121.7190171901719,38.03238290254791],[-121.70461704617045,38.03576005708767],[-121.69381693816938,38.044202943437085],[-121.68661686616866,38.044202943437085],[-121.6830168301683,38.04758009797685],[-121.67941679416793,38.05771156159615],[-121.67581675816757,38.06784302521544],[-121.67581675816757,38.07628591156485],[-121.67221672216722,38.084728797914266],[-121.66141661416614,38.086417375184155],[-121.63621636216362,38.086417375184155],[-121.62541625416253,38.08979452972392],[-121.62541625416253,38.09486026153357],[-121.61821618216182,38.09823741607333],[-121.60741607416074,38.09992599334322],[-121.59661596615966,38.09486026153357],[-121.58221582215822,38.091483106993806],[-121.57861578615785,38.08304022064439],[-121.57501575015749,38.07459733429498],[-121.58221582215822,38.06953160248533],[-121.58581585815858,38.0627772934058],[-121.60021600216001,38.059400138866025],[-121.6110161101611,38.06108871613591],[-121.62181621816218,38.06108871613591],[-121.6290162901629,38.05095725251661],[-121.63261632616326,38.044202943437085],[-121.62181621816218,38.03576005708767],[-121.6110161101611,38.022251438928606],[-121.60381603816037,38.01718570711897],[-121.59661596615966,38.022251438928606],[-121.58581585815858,38.029005748008146],[-121.58221582215822,38.03576005708767],[-121.57861578615785,38.04758009797685],[-121.57861578615785,38.05771156159615],[-121.57861578615785,38.0627772934058],[-121.56781567815678,38.066154447945564],[-121.5570155701557,38.05771156159615],[-121.54621546215462,38.05433440705639],[-121.5390153901539,38.05095725251661],[-121.52461524615245,38.04082578889732],[-121.51381513815139,38.04082578889732],[-121.49941499414993,38.03069432527802],[-121.48141481414814,38.022251438928606],[-121.45981459814598,38.00536566622978],[-121.44541445414454,37.996922779880364],[-121.44541445414454,38.003677088959904],[-121.45981459814598,38.02056286165873],[-121.47421474214741,38.03744863435756],[-121.4850148501485,38.044202943437085],[-121.5030150301503,38.049268675246736],[-121.51381513815139,38.05433440705639],[-121.52461524615245,38.05433440705639],[-121.52821528215281,38.06108871613591],[-121.53541535415354,38.064465870675676],[-121.54261542615426,38.0627772934058],[-121.54981549815497,38.064465870675676],[-121.56421564215643,38.081351643374504],[-121.57141571415714,38.09654883880344],[-121.58581585815858,38.101614570613094],[-121.60381603816037,38.10499172515286],[-121.62541625416253,38.10499172515286],[-121.63261632616326,38.10330314788298],[-121.63981639816399,38.09486026153357],[-121.64341643416434,38.09317168426368],[-121.65061650616505,38.09486026153357],[-121.65781657816578,38.09823741607333],[-121.6650166501665,38.09992599334322],[-121.67941679416793,38.09317168426368],[-121.68661686616866,38.08304022064439],[-121.69021690216903,38.07459733429498],[-121.69021690216903,38.06108871613591],[-121.70101701017009,38.05095725251661],[-121.7190171901719,38.04082578889732],[-121.74061740617407,38.029005748008146],[-121.76581765817659,38.03069432527802],[-121.78021780217802,38.03576005708767],[-121.78381783817838,38.044202943437085],[-121.78381783817838,38.0526458297865],[-121.78021780217802,38.06108871613591],[-121.76941769417694,38.06953160248533],[-121.75861758617586,38.07290875702509],[-121.74781747817478,38.07628591156485],[-121.7370173701737,38.079663066104615],[-121.71541715417155,38.09317168426368],[-121.70461704617045,38.10499172515286],[-121.68661686616866,38.12356607512157],[-121.6830168301683,38.14720615689993],[-121.69021690216903,38.14720615689993],[-121.70461704617045,38.121877497851685],[-121.72261722617226,38.108368879692634],[-121.74781747817478,38.08810595245403],[-121.76581765817659,38.079663066104615],[-121.80181801818017,38.0627772934058],[-121.82341823418234,38.06953160248533],[-121.8450184501845,38.07290875702509],[-121.8630186301863,38.071220179755215],[-121.86661866618667,38.064465870675676],[-121.8810188101881,38.05771156159615],[-121.8990189901899,38.0526458297865],[-121.91701917019171,38.0526458297865],[-121.92781927819277,38.05771156159615],[-121.92061920619206,38.0627772934058],[-121.91701917019171,38.066154447945564],[-121.90981909819098,38.079663066104615],[-121.95661956619566,38.079663066104615],[-121.9710197101971,38.07459733429498],[-121.9890198901989,38.08304022064439],[-122.01422014220142,38.09823741607333],[-121.98541985419854,38.11005745696251],[-121.9890198901989,38.12525465239146],[-121.99981999819998,38.13707469328064],[-122.01782017820179,38.13876327055051],[-122.03942039420394,38.13707469328064],[-122.05382053820537,38.13369753874086],[-122.06462064620646,38.126943229661336],[-122.06822068220683,38.121877497851685],[-122.06462064620646,38.11343461150227],[-122.07542075420754,38.09992599334322],[-122.09342093420935,38.084728797914266],[-122.12222122221222,38.059400138866025],[-122.12582125821258,38.05095725251661],[-122.12942129421293,38.0425143661672],[-122.15822158221582,38.044202943437085],[-122.16542165421654,38.05433440705639],[-122.18342183421834,38.064465870675676],[-122.19062190621906,38.06108871613591],[-122.19422194221943,38.06108871613591],[-122.20502205022049,38.064465870675676],[-122.2230222302223,38.066154447945564],[-122.24462244622447,38.07290875702509],[-122.26262262622626,38.06953160248533],[-122.26982269822699,38.07459733429498],[-122.28062280622805,38.086417375184155],[-122.30222302223022,38.108368879692634],[-122.39582395823959,38.153960465979466],[-122.41022410224102,38.13369753874086],[-122.43542435424354,38.12356607512157],[-122.44982449824498,38.12525465239146],[-122.4570245702457,38.11850034331192],[-122.50382503825038,38.11343461150227],[-122.48582485824858,38.10499172515286],[-122.48222482224821,38.07628591156485],[-122.4930249302493,38.049268675246736],[-122.50382503825038,38.03238290254791],[-122.50742507425073,38.023940016198495],[-122.50742507425073,38.01718570711897],[-122.4930249302493,38.01211997530932],[-122.47142471424715,38.00536566622978],[-122.45342453424534,37.99861135715025],[-122.44622446224463,37.98510273899119],[-122.44982449824498,37.98003700718154],[-122.46062460624606,37.981725584451425],[-122.46782467824679,37.98341416172131],[-122.4750247502475,37.976659852641774],[-122.4930249302493,37.96990554356225],[-122.4930249302493,37.95808550267307],[-122.48222482224821,37.94795403905377],[-122.47862478624786,37.941199729974244],[-122.4930249302493,37.93613399816459],[-122.50382503825038,37.941199729974244],[-122.50382503825038,37.934445420894704],[-122.50382503825038,37.924313957275416],[-122.4750247502475,37.915871070926],[-122.47142471424715,37.91080533911635],[-122.4750247502475,37.9057396073067],[-122.46062460624606,37.89560814368741],[-122.44982449824498,37.89391956641752],[-122.4390243902439,37.882099525528346],[-122.44622446224463,37.87365663917893],[-122.45342453424534,37.871968061909044],[-122.46062460624606,37.87027948463917],[-122.46062460624606,37.861836598289756],[-122.46782467824679,37.86690233009941],[-122.4750247502475,37.87365663917893],[-122.47142471424715,37.88041094825846],[-122.4750247502475,37.887165257338],[-122.48942489424894,37.89391956641752],[-122.50022500225002,37.89391956641752],[-122.49662496624967,37.883788102798235],[-122.4930249302493,37.877033793718695],[-122.50022500225002,37.871968061909044],[-122.48942489424894,37.86352517555963],[-122.47862478624786,37.86014802101987],[-122.47862478624786,37.85339371194034],[-122.4750247502475,37.84326224832104],[-122.47142471424715,37.83144220743186],[-122.47862478624786,37.82468789835234],[-122.48942489424894,37.82468789835234],[-122.50382503825038,37.821310743812575],[-122.5110251102511,37.82468789835234],[-122.52182521825219,37.821310743812575],[-122.5290252902529,37.81624501200292],[-122.53622536225362,37.8280650528921],[-122.54702547025471,37.834819361971626],[-122.5650256502565,37.84832798013069],[-122.57222572225723,37.855082289210216],[-122.58662586625866,37.86014802101987],[-122.6010260102601,37.87365663917893],[-122.6190261902619,37.877033793718695],[-122.64422644226443,37.898985298227174],[-122.67302673026731,37.9057396073067],[-122.68742687426874,37.904051030036825],[-122.69822698226983,37.898985298227174],[-122.70182701827018,37.89223098914765],[-122.71262712627126,37.90067387549706],[-122.7270272702727,37.90236245276694],[-122.73422734227341,37.92093680273565],[-122.74862748627487,37.93275684362483],[-122.76662766627666,37.93782257543448],[-122.7810278102781,37.94795403905377],[-122.79542795427955,37.9749712753719],[-122.80982809828097,37.98510273899119],[-122.82062820628207,37.996922779880364],[-122.83862838628386,38.00705424349967],[-122.90702907029069,38.03238290254791],[-122.92142921429215,38.03407147981778],[-122.93222932229321,38.049268675246736],[-122.93222932229321,38.059400138866025],[-122.92142921429215,38.066154447945564],[-122.93582935829357,38.071220179755215],[-122.9430294302943,38.064465870675676],[-122.95022950229503,38.06108871613591],[-122.94662946629467,38.05433440705639],[-122.94662946629467,38.045891520706974],[-122.9430294302943,38.04082578889732],[-122.93582935829357,38.03069432527802],[-122.95022950229503,38.029005748008146],[-122.96462964629646,38.02562859346837],[-122.9790297902979,38.01380855257919],[-122.98262982629825,38.003677088959904],[-122.9790297902979,37.99861135715025],[-122.97182971829719,37.996922779880364],[-122.9610296102961,37.99185704807073],[-122.97542975429755,37.99016847080084],[-122.98622986229861,37.99185704807073],[-122.9970299702997,37.9935456253406],[-123.01863018630186,37.9935456253406],[-123.02583025830259,37.99523420261049],[-123.02223022230223,38.00029993442014],[-123.0150301503015,38.00029993442014],[-122.98982989829898,38.049268675246736],[-122.95022950229503,38.143829002360164],[-122.95022950229503,38.164091929598754],[-122.95382953829538,38.17591197048793],[-122.96462964629646,38.18266627956747],[-122.96462964629646,38.19786347499641],[-122.97542975429755,38.20799493861571],[-122.98262982629825,38.21981497950489],[-122.99342993429934,38.22994644312418],[-122.9970299702997,38.24345506128324],[-122.98622986229861,38.23838932947359],[-122.96462964629646,38.218126402235],[-122.92502925029251,38.17591197048793],[-122.90702907029069,38.15227188870958],[-122.89262892628926,38.1303203842011],[-122.86742867428674,38.11005745696251],[-122.84222842228422,38.091483106993806],[-122.82422824228243,38.07290875702509],[-122.83142831428314,38.09654883880344],[-122.84942849428495,38.11005745696251],[-122.8890288902889,38.153960465979466],[-122.93582935829357,38.21474924769524],[-122.9430294302943,38.21981497950489],[-122.95022950229503,38.218126402235],[-122.95382953829538,38.231635020394066],[-122.96462964629646,38.231635020394066],[-122.96822968229682,38.23670075220372],[-122.96822968229682,38.25020937036277],[-122.97542975429755,38.26540656579172],[-122.98622986229861,38.2772266066809],[-123.00063000630007,38.294112379379726],[-123.02943029430294,38.31268672934843],[-123.04743047430475,38.31268672934843],[-123.05103051030511,38.3059324202689],[-123.05463054630546,38.29748953391949],[-123.06183061830617,38.2958009566496],[-123.07623076230763,38.32281819296773],[-123.0690306903069,38.346458274746084],[-123.07263072630727,38.35996689290515],[-123.07983079830798,38.371786933794326],[-123.0870308703087,38.392049861032916],[-123.09423094230942,38.39542701557269],[-123.10143101431015,38.41231278827151],[-123.11223112231121,38.42075567462092],[-123.12303123031231,38.43764144731975],[-123.13023130231302,38.44946148820894],[-123.16983169831698,38.47985587906682],[-123.25263252632527,38.51025026992471],[-123.27423274232743,38.52882461989341],[-123.30303303033031,38.54908754713202],[-123.31383313833138,38.55753043348143],[-123.33543335433353,38.56766189710072],[-123.34263342633426,38.586236247069436],[-123.3570335703357,38.596367710688725],[-123.36423364233642,38.601433442498376],[-123.36783367833678,38.61156490611768],[-123.40023400234003,38.643647874245445],[-123.41463414634146,38.6672879560238],[-123.43263432634326,38.6774194196431],[-123.43263432634326,38.68755088326239],[-123.47583475834759,38.721322428660045],[-123.49383493834938,38.736519624089],[-123.52263522635226,38.74665108770829],[-123.53703537035369,38.77197974675653],[-123.55863558635586,38.783799787645705],[-123.56583565835658,38.79561982853488],[-123.59463594635946,38.805751292154184],[-123.61623616236162,38.82770279666266],[-123.64863648636486,38.84965430117113],[-123.66303663036629,38.873294382949496],[-123.6990369903699,38.90031161926761],[-123.71343713437133,38.91382023742668],[-123.72783727837279,38.91888596923633],[-123.72783727837279,38.93239458739538],[-123.74223742237422,38.95603466917375],[-123.72423724237242,38.9611004009834],[-123.70263702637027,38.9898062145714],[-123.69543695436954,39.008380564540104],[-123.68823688236881,39.028643491778695],[-123.69183691836918,39.038774955398],[-123.69543695436954,39.05903788263659],[-123.70263702637027,39.08436654168483],[-123.71343713437133,39.10631804619331],[-123.72063720637206,39.133335282511425],[-123.73863738637385,39.14346674613073],[-123.7350373503735,39.15866394155967],[-123.76743767437674,39.194124064227196],[-123.77823778237783,39.222829877815215],[-123.78903789037889,39.27011004137192],[-123.80343803438035,39.278552927721336],[-123.79623796237962,39.29712727769005],[-123.8070380703807,39.305570164039466],[-123.8070380703807,39.32414451400817],[-123.8250382503825,39.347784595786536],[-123.82143821438214,39.405196222962545],[-123.81783817838178,39.44403350016984],[-123.79983799837999,39.49131366372656],[-123.77463774637746,39.52846236366398],[-123.7710377103771,39.545348136362804],[-123.7710377103771,39.56392248633152],[-123.78543785437854,39.59600545445929],[-123.78543785437854,39.655105658905185],[-123.78903789037889,39.66692569979436],[-123.78903789037889,39.67705716341365],[-123.79623796237962,39.692254358842604],[-123.80343803438035,39.70238582246189],[-123.8070380703807,39.712517286081194],[-123.8250382503825,39.717583017890846],[-123.82863828638287,39.72602590424026],[-123.83223832238322,39.7412230996692],[-123.83583835838358,39.76148602690779],[-123.83583835838358,39.78343753141627],[-123.8430384303843,39.80876619046451],[-123.85383853838539,39.83409484951275],[-123.87903879038791,39.84422631313204],[-123.90783907839078,39.86617781764052],[-123.92943929439295,39.90839224938759],[-123.95463954639547,39.92527802208642],[-123.97983979839799,39.962426722023835],[-124.00144001440015,39.977623917452775],[-124.0230402304023,40.002952576501016],[-124.03384033840338,40.01139546285043],[-124.04464044640446,40.018149771929956],[-124.0590405904059,40.02321550373961],[-124.06264062640626,40.02321550373961],[-124.06984069840698,40.02152692646972],[-124.0770407704077,40.02659265827937],[-124.08064080640807,40.035035544628784],[-124.08064080640807,40.060364203677025],[-124.08784087840878,40.07724997637585],[-124.11664116641165,40.107644367233746],[-124.13824138241382,40.11608725358316],[-124.1850418504185,40.12959587174221],[-124.2210422104221,40.165055994409755],[-124.25704257042571,40.18363034437846],[-124.31824318243181,40.22415619885565],[-124.32544325443254,40.23766481701472],[-124.34344343443433,40.242730548824355],[-124.3650436504365,40.26130489879307],[-124.36144361443614,40.28156782603166],[-124.3470434704347,40.31871652596908],[-124.3650436504365,40.34404518501732],[-124.3650436504365,40.37781673041498],[-124.39744397443974,40.41665400762227],[-124.40824408244083,40.4436712439404],[-124.39744397443974,40.46562274844888],[-124.38664386643866,40.48250852114771],[-124.38304383043831,40.499394293846535],[-124.38664386643866,40.50952575746582],[-124.36864368643685,40.536542993783954],[-124.35784357843579,40.56356023010207],[-124.35064350643506,40.577068848261135],[-124.32184321843218,40.617594702738316],[-124.31824318243181,40.62941474362749],[-124.31824318243181,40.632791898167255],[-124.31464314643146,40.634480475437144],[-124.3110431104311,40.63616905270703],[-124.30744307443075,40.63785762997691],[-124.30744307443075,40.64123478451667],[-124.3110431104311,40.64630051632632],[-124.30744307443075,40.65305482540586],[-124.2930429304293,40.67669490718421],[-124.2750427504275,40.70033498896257],[-124.25344253442535,40.73410653436022],[-124.2390423904239,40.759435193408464],[-124.23184231842319,40.74930372978916],[-124.24624246242462,40.7273522252807],[-124.25704257042571,40.707089298042106],[-124.26064260642606,40.69864641169269],[-124.24624246242462,40.69358067988304],[-124.23544235442354,40.69189210261315],[-124.22464224642246,40.6868263708035],[-124.2210422104221,40.69020352534328],[-124.22464224642246,40.695269257152916],[-124.2210422104221,40.696957834422804],[-124.21384213842138,40.702023566232455],[-124.21384213842138,40.70877787531198],[-124.2210422104221,40.722286493471046],[-124.21744217442173,40.73072937982046],[-124.2210422104221,40.737483688899985],[-124.21384213842138,40.742549420709636],[-124.2030420304203,40.7459265752494],[-124.19944199441994,40.75436946159881],[-124.19944199441994,40.76112377067835],[-124.19944199441994,40.76956665702777],[-124.19224192241921,40.77294381156753],[-124.18864188641886,40.78982958426636],[-124.18144181441815,40.799961047885645],[-124.17424174241742,40.80333820242541],[-124.16344163441634,40.806715356965185],[-124.14544145441454,40.81009251150495],[-124.13824138241382,40.806715356965185],[-124.12024120241202,40.806715356965185],[-124.10944109441094,40.81346966604471],[-124.08784087840878,40.82528970693389],[-124.08424084240842,40.8438640569026],[-124.08424084240842,40.848929788712255],[-124.0950409504095,40.85399552052189],[-124.10224102241023,40.85906125233154],[-124.10944109441094,40.85399552052189],[-124.12024120241202,40.85230694325202],[-124.12744127441275,40.85399552052189],[-124.13104131041311,40.857372675061654],[-124.13824138241382,40.864126984141194],[-124.15264152641527,40.864126984141194],[-124.15624156241563,40.862438406871306],[-124.15624156241563,40.85061836598213],[-124.1670416704167,40.842175479632715],[-124.17064170641706,40.826978284203776],[-124.1850418504185,40.8151582433146],[-124.19224192241921,40.801649625155534],[-124.19944199441994,40.784763852456706],[-124.22464224642246,40.757746616138576],[-124.23184231842319,40.76618950248799],[-124.21744217442173,40.786452429726594],[-124.17784177841779,40.847241211442366],[-124.13464134641346,40.93673580674614],[-124.12024120241202,40.97895023849321],[-124.10944109441094,41.014410361160756],[-124.1130411304113,41.04142759747887],[-124.11664116641165,41.04818190655841],[-124.12744127441275,41.049870483828286],[-124.13464134641346,41.04818190655841],[-124.14184141841417,41.05324763836805],[-124.14544145441454,41.06000194744759],[-124.1490414904149,41.07519914287653],[-124.15624156241563,41.087019183765705],[-124.15984159841598,41.09883922465488],[-124.15984159841598,41.114036420083835],[-124.16344163441634,41.13261077005254],[-124.16344163441634,41.13936507913208],[-124.15624156241563,41.14274223367184],[-124.1490414904149,41.14105365640195],[-124.14184141841417,41.144430810941714],[-124.12384123841238,41.181579510879146],[-124.1130411304113,41.22041678808644],[-124.09144091440913,41.28964845615164],[-124.08064080640807,41.341994351518],[-124.06624066240661,41.399405978694006],[-124.06264062640626,41.436554678631424],[-124.0770407704077,41.49058915126767],[-124.08064080640807,41.52098354212556],[-124.06984069840698,41.539557892094265],[-124.08064080640807,41.54293504663404],[-124.08784087840878,41.54968935571357],[-124.09864098640986,41.55644366479309],[-124.10224102241023,41.566575128412396],[-124.10224102241023,41.576706592031684],[-124.10224102241023,41.602035251079926],[-124.10584105841059,41.608789560159465],[-124.11664116641165,41.61723244650888],[-124.12744127441275,41.64087252828723],[-124.13824138241382,41.664512610065586],[-124.13824138241382,41.67970980549454],[-124.14544145441454,41.706727041812655],[-124.15984159841598,41.73712143267055],[-124.17784177841779,41.743875741750074],[-124.18864188641886,41.74725289628984],[-124.19584195841958,41.743875741750074],[-124.19944199441994,41.73881000994042],[-124.23184231842319,41.76245009171879],[-124.26424264242642,41.775958709877855],[-124.26064260642606,41.789467328036906],[-124.24624246242462,41.79453305984656],[-124.23544235442354,41.813107409815274],[-124.21744217442173,41.85025610975269],[-124.21024210242102,41.89078196422987],[-124.2030420304203,41.96001363229506],[-124.2030420304203,41.971833673184236],[-124.20664206642067,41.98196513680354],[-124.21744217442173,42.00560521858189],[-124.23544235442354,42.01742525947107],[-124.26064260642606,42.034311032169896],[-124.2750427504275,42.04613107305909],[-124.2930429304293,42.04613107305909],[-124.33624336243362,42.09172265934592],[-124.35064350643506,42.098476968425445],[-124.35784357843579,42.113674163854384],[-124.35424354243543,42.1322485138231],[-124.3650436504365,42.1508228637918],[-124.3650436504365,42.17446294557017],[-124.37584375843758,42.196414450078635],[-124.37944379443795,42.220054531857],[-124.39384393843937,42.238628881825704],[-124.41184411844118,42.24876034544501],[-124.41184411844118,42.258891809064295],[-124.40824408244083,42.29604050900171],[-124.42264422644226,42.31799201351019],[-124.42624426244262,42.31968059078008],[-124.43344433444335,42.32981205439937],[-124.42984429844299,42.35007498163796],[-124.42624426244262,42.36189502252715],[-124.42624426244262,42.37709221795609],[-124.42624426244262,42.39735514519468],[-124.42624426244262,42.41930664970316],[-124.44064440644406,42.43956957694175],[-124.42264422644226,42.45476677237069],[-124.42264422644226,42.466586813259866],[-124.4190441904419,42.490226895038234],[-124.40464404644047,42.51893270862624],[-124.4010440104401,42.5324413267853],[-124.39384393843937,42.56621287218296],[-124.39744397443974,42.58478722215166],[-124.40464404644047,42.59491868577096],[-124.4010440104401,42.615181613009554],[-124.40824408244083,42.64557600386743],[-124.41544415444154,42.66246177656626],[-124.42624426244262,42.670904662915675],[-124.44064440644406,42.677658971995214],[-124.4550445504455,42.68610185834463],[-124.46584465844658,42.702987631043456],[-124.4730447304473,42.73000486736157],[-124.4910449104491,42.738447753710986],[-124.50544505445055,42.73675917644111],[-124.51624516245163,42.74857921733029],[-124.53064530645307,42.80430226723641],[-124.53784537845378,42.816122308125586],[-124.54864548645486,42.82625377174489],[-124.56664566645667,42.83469665809429],[-124.54864548645486,42.84482812171359],[-124.4910449104491,42.92925698520773],[-124.4910449104491,42.936011294287255],[-124.46224462244622,42.993422921463264],[-124.4550445504455,43.011997271431994],[-124.44424444244441,43.030571621400696],[-124.4370443704437,43.055900280448924],[-124.43344433444335,43.074474630417654],[-124.42624426244262,43.12006621670449],[-124.41544415444154,43.12513194851414],[-124.4190441904419,43.142017721212966],[-124.38664386643866,43.26359528464451],[-124.39384393843937,43.30074398458191],[-124.4010440104401,43.310875448201216],[-124.38664386643866,43.32944979816992],[-124.37584375843758,43.33958126178922],[-124.36144361443614,43.342958416329],[-124.34344343443433,43.3514013026784],[-124.3290432904329,43.34802414813865],[-124.32544325443254,43.337892684519346],[-124.32544325443254,43.31256402547112],[-124.31824318243181,43.29905540731204],[-124.31464314643146,43.30918687093134],[-124.30744307443075,43.327761220900044],[-124.3110431104311,43.337892684519346],[-124.30744307443075,43.354778457218174],[-124.30024300243002,43.363221343567574],[-124.28584285842858,43.36997565264713],[-124.2750427504275,43.39361573442548],[-124.25344253442535,43.417255816203834],[-124.23184231842319,43.42401012528336],[-124.2210422104221,43.425698702553234],[-124.21744217442173,43.41556723893396],[-124.21744217442173,43.40205862077488],[-124.21744217442173,43.386861425345955],[-124.21384213842138,43.37504138445678],[-124.19944199441994,43.373352807186876],[-124.17784177841779,43.36997565264713],[-124.15264152641527,43.36997565264713],[-124.13824138241382,43.37504138445678],[-124.17064170641706,43.3801071162664],[-124.1850418504185,43.39192715715558],[-124.19224192241921,43.40543577531466],[-124.19584195841958,43.42063297074361],[-124.21024210242102,43.430764434362885],[-124.20664206642067,43.44258447525206],[-124.19584195841958,43.452715938871364],[-124.21024210242102,43.452715938871364],[-124.23184231842319,43.44765020706171],[-124.2390423904239,43.435830166172536],[-124.26064260642606,43.42738727982314],[-124.27864278642787,43.42063297074361],[-124.28224282242823,43.40374719804478],[-124.32544325443254,43.363221343567574],[-124.33624336243362,43.364909920837476],[-124.29664296642966,43.417255816203834],[-124.2390423904239,43.547276265984806],[-124.22464224642246,43.58611354319211],[-124.21744217442173,43.626639397669294],[-124.21024210242102,43.65703378852717],[-124.2030420304203,43.662099520336824],[-124.17424174241742,43.672230983956126],[-124.16344163441634,43.689116756654954],[-124.15624156241563,43.69924822027426],[-124.1490414904149,43.71106826116343],[-124.14184141841417,43.72119972478271],[-124.13824138241382,43.733019765671884],[-124.13464134641346,43.734708342941786],[-124.12744127441275,43.72795403386226],[-124.11664116641165,43.71106826116343],[-124.10944109441094,43.70600252935378],[-124.07344073440734,43.70431395208388],[-124.06984069840698,43.71106826116343],[-124.08424084240842,43.71275683843331],[-124.10224102241023,43.71951114751283],[-124.11664116641165,43.734708342941786],[-124.12744127441275,43.74990553837071],[-124.1490414904149,43.74821696110084],[-124.15984159841598,43.73639692021166],[-124.15984159841598,43.71782257024296],[-124.17064170641706,43.697559643004354],[-124.19224192241921,43.6840510248453],[-124.2030420304203,43.680673870305526],[-124.19224192241921,43.71782257024296],[-124.17424174241742,43.76172557925992],[-124.15264152641527,43.881614565421586],[-124.14544145441454,43.94240334713734],[-124.13824138241382,43.98124062434465],[-124.13824138241382,43.98968351069408],[-124.12384123841238,43.996437819773604],[-124.12024120241202,44.006569283392906],[-124.13464134641346,44.031897942441134],[-124.13464134641346,44.04371798333031],[-124.12744127441275,44.099441033236445],[-124.1130411304113,44.19062420581011],[-124.1130411304113,44.24972441025599],[-124.10584105841059,44.286873110193426],[-124.10944109441094,44.29193884200308],[-124.1130411304113,44.30207030562238],[-124.1130411304113,44.307136037432],[-124.1130411304113,44.313890346511556],[-124.10224102241023,44.322333232860956],[-124.09864098640986,44.32739896467061],[-124.08784087840878,44.384810591846616],[-124.08424084240842,44.411827828164746],[-124.07344073440734,44.42195929178405],[-124.06624066240661,44.428713600863574],[-124.05184051840519,44.433779332673225],[-124.04464044640446,44.4253364463238],[-124.03384033840338,44.4168935599744],[-124.01944019440194,44.41013925089487],[-124.02664026640267,44.43884506448288],[-124.0410404104041,44.4439107962925],[-124.04824048240482,44.44897652810215],[-124.06984069840698,44.437156487212974],[-124.0770407704077,44.433779332673225],[-124.08424084240842,44.4270250235937],[-124.08424084240842,44.44053364175275],[-124.08064080640807,44.46248514626123],[-124.08424084240842,44.49794526892876],[-124.06264062640626,44.60939136874103],[-124.05184051840519,44.61783425509043],[-124.04464044640446,44.621211409630206],[-124.03024030240303,44.61783425509043],[-124.0230402304023,44.6110799460109],[-124.01944019440194,44.60770279147113],[-124.01224012240122,44.59925990512173],[-124.00864008640086,44.60939136874103],[-124.00504005040051,44.616145677820555],[-124.00504005040051,44.624588564169954],[-124.01944019440194,44.62627714143986],[-124.0230402304023,44.62289998690008],[-124.02664026640267,44.62289998690008],[-124.03384033840338,44.62627714143986],[-124.04824048240482,44.63303145051938],[-124.05544055440555,44.62627714143986],[-124.06984069840698,44.61783425509043],[-124.06984069840698,44.621211409630206],[-124.06624066240661,44.63134287324948],[-124.06264062640626,44.63978575959891],[-124.0590405904059,44.651605800488085],[-124.0590405904059,44.66342584137726],[-124.06264062640626,44.67186872772669],[-124.07344073440734,44.673557304996564],[-124.0770407704077,44.67524588226644],[-124.07344073440734,44.678623036806215],[-124.06624066240661,44.68875450042552],[-124.0590405904059,44.72590320036292],[-124.0590405904059,44.746166127601526],[-124.06624066240661,44.763051900300354],[-124.07344073440734,44.77824909572928],[-124.06624066240661,44.80526633204741],[-124.06624066240661,44.82384068201611],[-124.05184051840519,44.839037877445065],[-124.04824048240482,44.85761222741377],[-124.03384033840338,44.87787515465237],[-124.03384033840338,44.89813808189095],[-124.03024030240303,44.9048923909705],[-124.0230402304023,44.909958122780125],[-124.01944019440194,44.91671243185968],[-124.01944019440194,44.92684389547895],[-124.02664026640267,44.93528678182838],[-124.0230402304023,44.94372966817778],[-124.01584015840157,44.96736974995616],[-124.01224012240122,44.99776414081404],[-124.00504005040051,45.043355727100874],[-124.01584015840157,45.05517576799005],[-124.01584015840157,45.06361865433945],[-124.00504005040051,45.08219300430818],[-123.98343983439834,45.10414450881666],[-123.97623976239763,45.12947316786489],[-123.97263972639726,45.15311324964324],[-123.9690396903969,45.16662186780232],[-123.9690396903969,45.186884795040896],[-123.9690396903969,45.2054591450096],[-123.97623976239763,45.217279185898775],[-123.9690396903969,45.24260784494703],[-123.9690396903969,45.25105073129643],[-123.96543965439653,45.257805040375985],[-123.96183961839618,45.279756544884435],[-123.96183961839618,45.30001947212304],[-123.97263972639726,45.33210244025082],[-123.9870398703987,45.33716817206047],[-124.00144001440015,45.33716817206047],[-124.00144001440015,45.34392248114],[-123.97983979839799,45.34898821294965],[-123.97263972639726,45.3624968311087],[-123.9690396903969,45.37938260380753],[-123.9690396903969,45.391202644696705],[-123.96543965439653,45.40302268558588],[-123.96183961839618,45.40977699466541],[-123.95823958239582,45.41484272647506],[-123.95463954639547,45.413154149205184],[-123.95463954639547,45.40977699466541],[-123.96183961839618,45.37938260380753],[-123.94383943839438,45.38951406742683],[-123.9330393303933,45.404711262855756],[-123.91863918639186,45.418219881014835],[-123.95463954639547,45.43341707644376],[-123.97263972639726,45.45199142641249],[-123.9690396903969,45.494205858159546],[-123.95823958239582,45.516157362668025],[-123.95463954639547,45.54824033079581],[-123.94743947439474,45.556683217145206],[-123.94743947439474,45.52628882628733],[-123.94023940239401,45.4992715899692],[-123.92223922239222,45.494205858159546],[-123.91143911439114,45.484074394540244],[-123.88983889838897,45.475631508190844],[-123.89343893438934,45.48238581727037],[-123.88983889838897,45.48745154908002],[-123.88623886238862,45.49251728088967],[-123.88263882638826,45.4992715899692],[-123.88623886238862,45.507714476318625],[-123.88983889838897,45.5195345172078],[-123.8970389703897,45.52460024901745],[-123.90063900639007,45.538108867176504],[-123.8970389703897,45.56006037168498],[-123.92583925839259,45.55499463987533],[-123.94743947439474,45.56850325803438],[-123.95823958239582,45.57694614438381],[-123.9510395103951,45.59045476254286],[-123.94383943839438,45.62084915340074],[-123.94023940239401,45.64786638971887],[-123.92223922239222,45.663063585147825],[-123.92223922239222,45.6833265123864],[-123.91863918639186,45.690080821465955],[-123.91143911439114,45.69176939873583],[-123.90063900639007,45.68670366692618],[-123.89343893438934,45.6833265123864],[-123.88623886238862,45.6833265123864],[-123.87903879038791,45.68670366692618],[-123.87183871838718,45.698523707815355],[-123.87543875438755,45.69683513054548],[-123.88263882638826,45.695146553275606],[-123.88623886238862,45.6934579760057],[-123.8970389703897,45.695146553275606],[-123.90423904239043,45.70021228508523],[-123.90783907839078,45.70865517143466],[-123.91863918639186,45.70527801689488],[-123.92223922239222,45.69683513054548],[-123.92943929439295,45.6934579760057],[-123.9330393303933,45.68163793511653],[-123.9330393303933,45.668129316957476],[-123.93663936639366,45.66137500787795],[-123.94023940239401,45.668129316957476],[-123.93663936639366,45.698523707815355],[-123.94023940239401,45.72722952140336],[-123.94743947439474,45.73567240775279],[-123.96543965439653,45.74411529410219],[-123.9690396903969,45.752558180451615],[-123.9690396903969,45.761001066801015],[-123.97263972639726,45.76268964407089],[-123.97983979839799,45.761001066801015],[-123.98343983439834,45.76775537588054],[-123.9690396903969,45.78126399403962],[-123.96543965439653,45.796461189468545],[-123.95823958239582,45.815035539437275],[-123.95823958239582,45.872447166613284],[-123.95823958239582,45.89777582566151],[-123.9690396903969,45.91803875290012],[-123.99063990639905,45.93830168013869],[-123.98343983439834,45.948433143757995],[-123.97263972639726,45.95349887556765],[-123.96543965439653,45.9670074937267],[-123.9510395103951,45.97207322553635],[-123.9330393303933,45.98051611188578],[-123.92943929439295,45.99233615277495],[-123.92223922239222,46.01428765728343],[-123.92943929439295,46.037927739061786],[-123.93663936639366,46.081830748078744],[-123.9510395103951,46.12066802528602],[-123.99063990639905,46.20003115697051],[-124.0230402304023,46.23042554782842],[-124.01584015840157,46.23549127963807],[-124.00144001440015,46.23717985690794],[-123.9870398703987,46.22704839328864],[-123.99423994239942,46.220294084209115],[-123.98343983439834,46.21016262058981],[-123.9690396903969,46.21016262058981],[-123.9510395103951,46.20509688878016],[-123.92223922239222,46.18989969335124],[-123.9150391503915,46.179768229731934],[-123.91143911439114,46.18145680700181],[-123.90423904239043,46.179768229731934],[-123.90063900639007,46.16794818884276],[-123.87903879038791,46.16457103430298],[-123.86823868238682,46.15950530249333],[-123.83583835838358,46.162882457033106],[-123.8250382503825,46.15612814795358],[-123.81783817838178,46.14768526160415],[-123.81423814238141,46.127422334365576],[-123.81423814238141,46.1139137162065],[-123.79983799837999,46.10209367531732],[-123.79983799837999,46.11560229347637],[-123.79983799837999,46.130799488905325],[-123.79983799837999,46.144308107064404],[-123.77823778237783,46.13755379798485],[-123.77823778237783,46.1426195297945],[-123.78543785437854,46.14937383887403],[-123.8070380703807,46.16794818884276],[-123.81783817838178,46.171325343382506],[-123.82863828638287,46.171325343382506],[-123.8430384303843,46.17301392065241],[-123.85023850238503,46.17807965246203],[-123.8610386103861,46.18145680700181],[-123.86463864638645,46.18652253881146],[-123.85743857438574,46.18989969335124],[-123.83583835838358,46.18989969335124],[-123.82143821438214,46.18989969335124],[-123.79983799837999,46.193276847890985],[-123.77823778237783,46.20171973424041],[-123.76743767437674,46.20340831151029],[-123.75663756637566,46.19496542516086],[-123.7350373503735,46.17807965246203],[-123.72783727837279,46.16963676611263],[-123.70623706237062,46.171325343382506],[-123.61263612636125,46.18652253881146],[-123.59823598235982,46.19158827062111],[-123.61983619836198,46.19665400243076],[-123.61983619836198,46.20509688878016],[-123.6090360903609,46.20847404331994],[-123.58023580235802,46.206785466050064],[-123.56583565835658,46.21691692966934],[-123.54063540635406,46.225359816018766],[-123.53703537035369,46.233802702368166],[-123.5190351903519,46.23549127963807],[-123.49743497434974,46.23211412509829],[-123.48663486634865,46.23042554782842],[-123.47223472234722,46.21691692966934],[-123.45423454234542,46.206785466050064],[-123.43623436234361,46.198342579700636],[-123.43263432634326,46.18652253881146],[-123.42903429034291,46.17639107519216],[-123.42183421834218,46.16963676611263],[-123.40743407434074,46.157816725223455],[-123.38583385833857,46.14599668433428],[-123.32463324633247,46.13924237525475],[-123.29943299432995,46.14093095252463],[-123.27783277832779,46.1341766434451],[-123.25623256232562,46.1324880661752],[-123.23463234632345,46.13755379798485],[-123.22023220232202,46.14768526160415],[-123.20583205832058,46.16457103430298],[-123.1950319503195,46.17301392065241],[-123.18063180631806,46.179768229731934],[-123.20583205832058,46.17807965246203],[-123.24903249032491,46.162882457033106],[-123.27063270632706,46.15106241614393],[-123.29943299432995,46.15106241614393],[-123.32823328233283,46.166259611572855],[-123.3930339303393,46.20340831151029],[-123.41103411034109,46.220294084209115],[-123.42903429034291,46.23886843417782],[-123.44343443434434,46.25744278414652],[-123.45423454234542,46.26757424776582],[-123.47943479434794,46.27601713411525],[-123.60183601836019,46.260819938686296],[-123.66303663036629,46.2709514023056],[-123.66663666636666,46.27601713411525],[-123.67023670236702,46.286148597734524],[-123.67383673836738,46.29459148408395],[-123.69183691836918,46.304722947703254],[-123.70263702637027,46.30303437043335],[-123.7170371703717,46.30134579316348],[-123.72423724237242,46.2996572158936],[-123.72783727837279,46.2895257522743],[-123.7350373503735,46.28783717500443],[-123.74583745837458,46.291214329544175],[-123.75303753037531,46.286148597734524],[-123.75663756637566,46.277705711385124],[-123.76383763837637,46.27263997957547],[-123.77823778237783,46.27432855684535],[-123.79263792637926,46.282771443194775],[-123.8070380703807,46.282771443194775],[-123.81423814238141,46.27601713411525],[-123.81783817838178,46.269262825035696],[-123.83583835838358,46.269262825035696],[-123.8430384303843,46.260819938686296],[-123.85023850238503,46.25913136141642],[-123.85383853838539,46.2523770523369],[-123.8610386103861,46.24899989779712],[-123.87183871838718,46.24055701144769],[-123.88983889838897,46.242245588717594],[-123.90783907839078,46.24562274325734],[-123.92583925839259,46.2523770523369],[-123.94023940239401,46.26419709322607],[-123.94743947439474,46.269262825035696],[-123.96543965439653,46.29459148408395],[-123.97263972639726,46.2996572158936],[-123.98343983439834,46.309788679512906],[-124.00864008640086,46.313165834052654],[-124.0230402304023,46.31485441132256],[-124.03384033840338,46.30641152497313],[-124.0410404104041,46.304722947703254],[-124.04824048240482,46.296280061353826],[-124.05184051840519,46.286148597734524],[-124.0410404104041,46.2810828659249],[-124.03744037440374,46.27601713411525],[-124.0410404104041,46.27263997957547],[-124.05184051840519,46.27432855684535],[-124.06264062640626,46.27601713411525],[-124.06984069840698,46.2709514023056],[-124.0770407704077,46.26757424776582],[-124.08064080640807,46.2709514023056],[-124.0770407704077,46.282771443194775],[-124.0770407704077,46.29459148408395],[-124.07344073440734,46.30641152497313],[-124.06984069840698,46.32329729767196],[-124.06624066240661,46.33849449310091],[-124.06264062640626,46.35706884306961],[-124.06264062640626,46.38746323392749],[-124.06264062640626,46.43980912929385],[-124.06264062640626,46.595158238123076],[-124.07344073440734,46.64243840167978],[-124.06264062640626,46.65425844256896],[-124.05184051840519,46.64581555621956],[-124.03744037440374,46.630618360790606],[-124.04464044640446,46.62386405171108],[-124.03744037440374,46.60697827901225],[-124.02664026640267,46.590092506313425],[-124.01944019440194,46.568141001804946],[-124.02664026640267,46.492155024660235],[-124.0230402304023,46.465137788342105],[-124.0230402304023,46.41954620205527],[-124.01584015840157,46.38577465665762],[-123.99423994239942,46.380708924847966],[-123.97623976239763,46.38239750211784],[-123.95823958239582,46.37902034757809],[-123.94743947439474,46.402660429356445],[-123.9330393303933,46.41448047024562],[-123.92583925839259,46.43980912929385],[-123.92223922239222,46.43980912929385],[-123.91143911439114,46.42798908840467],[-123.87543875438755,46.41954620205527],[-123.84663846638466,46.39590612027692],[-123.83943839438393,46.416169047515496],[-123.85743857438574,46.4263005111348],[-123.87903879038791,46.43305482021432],[-123.8970389703897,46.44149770656375],[-123.90063900639007,46.4465634383734],[-123.90063900639007,46.45669490199268],[-123.90423904239043,46.460072056532454],[-123.91143911439114,46.460072056532454],[-123.91863918639186,46.46344921107223],[-123.92583925839259,46.46851494288188],[-123.93663936639366,46.47189209742163],[-123.93663936639366,46.48033498377106],[-123.93663936639366,46.495532179199984],[-123.92223922239222,46.50228648827951],[-123.90783907839078,46.50904079735906],[-123.90063900639007,46.514106529168714],[-123.8970389703897,46.52086083824824],[-123.89343893438934,46.53099230186754],[-123.8970389703897,46.54450092002659],[-123.90063900639007,46.55125522910612],[-123.90423904239043,46.55632096091577],[-123.91863918639186,46.57996104269412],[-123.94383943839438,46.60528970174238],[-123.95463954639547,46.62386405171108],[-123.94023940239401,46.620486897171304],[-123.91143911439114,46.60528970174238],[-123.89343893438934,46.6019125472026],[-123.9150391503915,46.62892978352073],[-123.92223922239222,46.65763559710874],[-123.91143911439114,46.68127567888709],[-123.87903879038791,46.69140714250639],[-123.8430384303843,46.69647287431604],[-123.8250382503825,46.69309571977627],[-123.81783817838178,46.674521369807564],[-123.81063810638106,46.66270132891839],[-123.79623796237962,46.661012751648485],[-123.77823778237783,46.66776706072804],[-123.76383763837637,46.67789852434731],[-123.79623796237962,46.68127567888709],[-123.81783817838178,46.69816145158592],[-123.83943839438393,46.71673580155462],[-123.86823868238682,46.73362157425345],[-123.88263882638826,46.736998728793225],[-123.90063900639007,46.74713019241253],[-123.91143911439114,46.74037588333297],[-123.91143911439114,46.7285558424438],[-123.9510395103951,46.72517868790405],[-123.97623976239763,46.74037588333297],[-123.98343983439834,46.7201129560944],[-123.97623976239763,46.71167006974497],[-123.96183961839618,46.70660433793532],[-123.97263972639726,46.701538606125695],[-123.9870398703987,46.70491576066544],[-124.00144001440015,46.70491576066544],[-124.01584015840157,46.709981492475094],[-124.02664026640267,46.71335864701487],[-124.03024030240303,46.7201129560944],[-124.06984069840698,46.73531015152332],[-124.0950409504095,46.74375303787275],[-124.10224102241023,46.76063881057158],[-124.10224102241023,46.807918974128285],[-124.1130411304113,46.848444828605466],[-124.13104131041311,46.8855935285429],[-124.12744127441275,46.89910214670195],[-124.1130411304113,46.91261076486103],[-124.09144091440913,46.90079072397185],[-124.09864098640986,46.87715064219347],[-124.0770407704077,46.85857629222477],[-124.07344073440734,46.843379096795815],[-124.0590405904059,46.84506767406572],[-124.0410404104041,46.840001942256066],[-124.02664026640267,46.83324763317654],[-124.0230402304023,46.83155905590664],[-124.01224012240122,46.84169051952594],[-124.01584015840157,46.85182198314524],[-124.0230402304023,46.86026486949464],[-124.03024030240303,46.870396333113945],[-124.05544055440555,46.861953446764545],[-124.05544055440555,46.875462064923596],[-124.04824048240482,46.89065926035255],[-124.03384033840338,46.897413569432075],[-124.00504005040051,46.89910214670195],[-123.99063990639905,46.9041678785116],[-123.96183961839618,46.91767649667068],[-123.88263882638826,46.94131657844903],[-123.81423814238141,46.95820235114786],[-123.82863828638287,46.96495666022739],[-123.8430384303843,46.96157950568761],[-123.86823868238682,46.97002239203704],[-123.9510395103951,46.968333814767135],[-123.95463954639547,46.97171096930691],[-123.94383943839438,46.973399546576786],[-123.92223922239222,46.98015385565634],[-123.96543965439653,46.98353101019609],[-124.01224012240122,46.98353101019609],[-124.01944019440194,46.99366247381539],[-124.01224012240122,47.008859669244345],[-124.02664026640267,47.02743401921305],[-124.04824048240482,47.0324997510227],[-124.06624066240661,47.03756548283235],[-124.09144091440913,47.0409426373721],[-124.11664116641165,47.04263121464197],[-124.13824138241382,47.035876905562446],[-124.1490414904149,47.02405686467327],[-124.14544145441454,47.017302555593744],[-124.13824138241382,47.00210536016479],[-124.13824138241382,46.986908164735866],[-124.13824138241382,46.97677670111656],[-124.13824138241382,46.968333814767135],[-124.13104131041311,46.95651377387796],[-124.12384123841238,46.946382310258684],[-124.10944109441094,46.94807088752856],[-124.10584105841059,46.94469373298878],[-124.10584105841059,46.932873692099605],[-124.12384123841238,46.94131657844903],[-124.13824138241382,46.94469373298878],[-124.1490414904149,46.94300515571891],[-124.15264152641527,46.937939423909256],[-124.15264152641527,46.92949653755986],[-124.16344163441634,46.927807960289954],[-124.17784177841779,46.92611938302008],[-124.17424174241742,46.93625084663938],[-124.17784177841779,46.94300515571891],[-124.17424174241742,46.95313661933821],[-124.17064170641706,46.981842432926214],[-124.17064170641706,47.04263121464197],[-124.17424174241742,47.066271296420354],[-124.17784177841779,47.106797150897535],[-124.19944199441994,47.1878488598519],[-124.21024210242102,47.226686137059204],[-124.22824228242283,47.26383483699661],[-124.24264242642425,47.29085207331474],[-124.25344253442535,47.30098353693404],[-124.2750427504275,47.302672114203915],[-124.28224282242823,47.31280357782322],[-124.30024300243002,47.34826370049075],[-124.28584285842858,47.34657512322087],[-124.27864278642787,47.34150939141122],[-124.27144271442714,47.343197968681096],[-124.28224282242823,47.351640855030524],[-124.30744307443075,47.3533294323004],[-124.31824318243181,47.356706586840176],[-124.3470434704347,47.5002356547802],[-124.35064350643506,47.547515818336905],[-124.37584375843758,47.60830460005269],[-124.38304383043831,47.63532183637082],[-124.41184411844118,47.68766773173718],[-124.41544415444154,47.72481643167458],[-124.42264422644226,47.74170220437341],[-124.4370443704437,47.74507935891319],[-124.44784447844478,47.75014509072284],[-124.4550445504455,47.761965131612016],[-124.47664476644766,47.77885090431084],[-124.48384483844839,47.8126224497085],[-124.54144541445415,47.83457395421698],[-124.55584555845559,47.85314830418568],[-124.56664566645667,47.87003407688451],[-124.59184591845919,47.87678838596403],[-124.60984609846099,47.87509980869416],[-124.63864638646386,47.90718277682194],[-124.65664656646567,47.95446294037865],[-124.6710467104671,47.98992306304618],[-124.68184681846819,48.02707176298361],[-124.69264692646927,48.07435192654032],[-124.6890468904689,48.099680585588544],[-124.72144721447214,48.15033790368503],[-124.73584735847359,48.17060083092363],[-124.71784717847179,48.175666562733284],[-124.69984699846998,48.19255233543211],[-124.6890468904689,48.21281526267069],[-124.6890468904689,48.21956957175021],[-124.69624696246962,48.22632388082977],[-124.70704707047071,48.24658680806834],[-124.70344703447034,48.24996396260812],[-124.6890468904689,48.25334111714787],[-124.68184681846819,48.26347258076717],[-124.68184681846819,48.28542408527565],[-124.67824678246782,48.29386697162508],[-124.66384663846638,48.309064167054004],[-124.66024660246603,48.319195630673306],[-124.6710467104671,48.32426136248296],[-124.6710467104671,48.33270424883236],[-124.67824678246782,48.33439282610226],[-124.6890468904689,48.33776998064201],[-124.70344703447034,48.34790144426131],[-124.71784717847179,48.35803290788061],[-124.72864728647286,48.371541526039664],[-124.72864728647286,48.38842729873849],[-124.69624696246962,48.39180445327827],[-124.66024660246603,48.38673872146862],[-124.63864638646386,48.38336156692884],[-124.62064620646206,48.368164371499915],[-124.60624606246063,48.36647579423001],[-124.59184591845919,48.37491868057944],[-124.57384573845738,48.36985294876979],[-124.53064530645307,48.349590021531185],[-124.45864458644587,48.31750705340343],[-124.39744397443974,48.29386697162508],[-124.3470434704347,48.280358353466],[-124.33624336243362,48.27698119892625],[-124.29664296642966,48.2617840034973],[-124.2750427504275,48.256718271687646],[-124.24984249842498,48.26347258076717],[-124.22824228242283,48.25840684895752],[-124.15984159841598,48.23307818990929],[-124.1130411304113,48.216192417210465],[-124.09864098640986,48.20099522178151],[-124.05184051840519,48.17735514000316],[-123.99783997839978,48.17228940819351],[-123.97263972639726,48.16553509911398],[-123.94383943839438,48.16553509911398],[-123.91863918639186,48.162157944574204],[-123.87183871838718,48.162157944574204],[-123.8610386103861,48.15709221276455],[-123.81783817838178,48.16046936730433],[-123.78903789037889,48.153715058224805],[-123.74223742237422,48.16046936730433],[-123.6990369903699,48.16553509911398],[-123.64143641436414,48.15202648095493],[-123.63423634236342,48.14189501733563],[-123.58383583835838,48.1351407082561],[-123.56583565835658,48.14696074914528],[-123.55143551435515,48.15202648095493],[-123.53343533435334,48.145272171875376],[-123.52263522635226,48.1351407082561],[-123.50463504635046,48.1334521309862],[-123.47583475834759,48.1334521309862],[-123.43623436234361,48.14189501733563],[-123.41823418234182,48.14189501733563],[-123.40383403834039,48.13851786279585],[-123.42543425434255,48.13682928552598],[-123.43983439834398,48.1334521309862],[-123.45423454234542,48.131763553716326],[-123.45063450634507,48.1250092446368],[-123.42183421834218,48.118254935557275],[-123.3570335703357,48.118254935557275],[-123.3210332103321,48.1148777810175],[-123.28863288632886,48.118254935557275],[-123.24543245432454,48.1148777810175],[-123.22383223832239,48.12163209009702],[-123.16983169831698,48.16384652184411],[-123.15183151831519,48.17735514000316],[-123.10863108631085,48.18410944908268],[-123.11943119431194,48.17904371727303],[-123.13023130231302,48.17397798546338],[-123.14463144631446,48.16384652184411],[-123.16263162631626,48.15202648095493],[-123.14463144631446,48.15202648095493],[-123.11223112231121,48.14864932641515],[-123.09063090630906,48.12838639917655],[-123.06183061830617,48.118254935557275],[-123.04023040230402,48.08448339015962],[-123.04383043830438,48.05915473111136],[-123.02943029430294,48.04564611295231],[-123.00783007830077,48.03889180387279],[-122.9970299702997,48.03889180387279],[-123.00423004230042,48.07941765834997],[-123.00063000630007,48.091237699239144],[-122.95742957429573,48.09799200831867],[-122.93942939429394,48.09799200831867],[-122.92862928629286,48.09461485377892],[-122.92142921429215,48.08617196742949],[-122.91782917829178,48.07097477200054],[-122.91062910629105,48.06590904019089],[-122.89982899828999,48.06590904019089],[-122.88542885428853,48.06253188565114],[-122.8710287102871,48.04902326749206],[-122.85662856628566,48.028760340253484],[-122.8530285302853,48.01018599028478],[-122.87462874628747,48.001743103935354],[-122.87462874628747,47.993300217585954],[-122.8530285302853,47.99498879485583],[-122.84222842228422,48.00512025847513],[-122.82422824228243,48.03551464933301],[-122.83862838628386,48.05071184476196],[-122.87822878228782,48.07941765834997],[-122.88182881828818,48.091237699239144],[-122.87822878228782,48.1064348946681],[-122.86742867428674,48.11994351282715],[-122.85662856628566,48.1250092446368],[-122.82422824228243,48.131763553716326],[-122.79542795427955,48.14189501733563],[-122.77022770227703,48.14189501733563],[-122.74862748627487,48.11656635828737],[-122.75942759427593,48.11150062647772],[-122.78462784627845,48.10305774012832],[-122.79182791827918,48.096303431048796],[-122.79182791827918,48.082794812889716],[-122.78462784627845,48.07266334927044],[-122.77382773827739,48.06590904019089],[-122.77022770227703,48.05915473111136],[-122.7630276302763,48.04395753568244],[-122.72342723427235,47.993300217585954],[-122.71262712627126,47.9865459085064],[-122.69462694626947,47.979791599426875],[-122.68742687426874,47.97303729034735],[-122.68742687426874,47.96459440399795],[-122.68382683826837,47.944331476759345],[-122.67662676626766,47.935888590409945],[-122.62622626226262,47.89029700412311],[-122.6190261902619,47.87678838596403],[-122.62982629826298,47.873411231424285],[-122.65862658626585,47.87172265415438],[-122.66942669426695,47.87003407688451],[-122.67662676626766,47.86159119053511],[-122.68382683826837,47.84301684056638],[-122.6910269102691,47.832885376947075],[-122.73782737827378,47.7940480997398],[-122.74862748627487,47.77378517250119],[-122.77022770227703,47.73832504983366],[-122.77382773827739,47.71806212259506],[-122.77742777427774,47.70286492716613],[-122.7810278102781,47.69273346354683],[-122.78822788227882,47.6842905771974],[-122.79902799027991,47.67922484538775],[-122.81342813428134,47.677536268117876],[-122.82782827828278,47.68260199992753],[-122.82782827828278,47.694422040816704],[-122.8170281702817,47.712996390785406],[-122.79902799027991,47.77716232704097],[-122.79902799027991,47.805868140628974],[-122.80622806228062,47.84301684056638],[-122.8170281702817,47.82950822240733],[-122.8170281702817,47.810933872438625],[-122.82062820628207,47.792359522469894],[-122.83862838628386,47.78222805885062],[-122.83862838628386,47.8024909860892],[-122.84582845828459,47.8210653360579],[-122.85662856628566,47.82613106786755],[-122.86742867428674,47.80924529516872],[-122.86742867428674,47.7940480997398],[-122.85662856628566,47.775473749771066],[-122.83862838628386,47.74676793618306],[-122.86022860228601,47.73325931802401],[-122.87462874628747,47.70961923624566],[-122.88542885428853,47.68766773173718],[-122.90342903429034,47.672470536308225],[-122.91062910629105,47.650519031799746],[-122.91782917829178,47.64545329999012],[-122.92862928629286,47.642076145450346],[-122.9430294302943,47.63532183637082],[-123.02223022230223,47.566090168305635],[-123.03303033030329,47.54920439560681],[-123.06543065430654,47.49348134570067],[-123.07983079830798,47.47828415027172],[-123.10143101431015,47.46477553211267],[-123.11943119431194,47.449578336683714],[-123.13383133831337,47.41242963674631],[-123.15903159031589,47.3719037822691],[-123.16263162631626,47.356706586840176],[-123.13023130231302,47.33982081414135],[-123.07263072630727,47.344886545951],[-122.90342903429034,47.39554386404748],[-122.8710287102871,47.40905248220653],[-122.83862838628386,47.43269256398489],[-122.86742867428674,47.436069718524664],[-122.90702907029069,47.42424967763549],[-122.97542975429755,47.39047813223783],[-123.05103051030511,47.36683805045948],[-123.09063090630906,47.36683805045948],[-123.11223112231121,47.39047813223783],[-123.11223112231121,47.405675327666756],[-123.09783097830979,47.419183945825836],[-123.07263072630727,47.44620118214394],[-123.06183061830617,47.45633264576324],[-123.02223022230223,47.52218715928868],[-122.95022950229503,47.596484559163514],[-122.93582935829357,47.60323886824304],[-122.87462874628747,47.631944681831044],[-122.79902799027991,47.65220760906965],[-122.77382773827739,47.66065049541905],[-122.7630276302763,47.66909338176848],[-122.75582755827558,47.68260199992753],[-122.74142741427414,47.726505008944486],[-122.73422734227341,47.74339078164331],[-122.63342633426333,47.83963968602663],[-122.62262622626227,47.846393995106155],[-122.61182611826118,47.8497711496459],[-122.59742597425975,47.846393995106155],[-122.59382593825939,47.83963968602663],[-122.59742597425975,47.8311967996772],[-122.59382593825939,47.8227539133278],[-122.57222572225723,47.819376758788025],[-122.5650256502565,47.83457395421698],[-122.57222572225723,47.85652545872546],[-122.58662586625866,47.903805622282164],[-122.59382593825939,47.91224850863156],[-122.61182611826118,47.935888590409945],[-122.61182611826118,47.94602005402922],[-122.55422554225542,47.92069139498099],[-122.5290252902529,47.90549419955204],[-122.51822518225183,47.881854117773685],[-122.51822518225183,47.86665692234473],[-122.5110251102511,47.832885376947075],[-122.50382503825038,47.8227539133278],[-122.4930249302493,47.81431102697837],[-122.48942489424894,47.80417956335907],[-122.50382503825038,47.788982367930146],[-122.49662496624967,47.78560521339037],[-122.48582485824858,47.78222805885062],[-122.4750247502475,47.775473749771066],[-122.46782467824679,47.76871944069154],[-122.46782467824679,47.756899399802364],[-122.4750247502475,47.748456513452965],[-122.47862478624786,47.74170220437341],[-122.48222482224821,47.73663647256379],[-122.4930249302493,47.734947895293885],[-122.53982539825398,47.74339078164331],[-122.55782557825577,47.74001362710354],[-122.55422554225542,47.72819358621436],[-122.5650256502565,47.712996390785406],[-122.57942579425794,47.69779919535648],[-122.59742597425975,47.69273346354683],[-122.65142651426514,47.73325931802401],[-122.66222662226622,47.729882163484234],[-122.65862658626585,47.71806212259506],[-122.65142651426514,47.71130781351553],[-122.64062640626406,47.70624208170588],[-122.63342633426333,47.699487772626355],[-122.62982629826298,47.69273346354683],[-122.59382593825939,47.596484559163514],[-122.6010260102601,47.58973025008399],[-122.59382593825939,47.58297594100446],[-122.61542615426154,47.574533054655035],[-122.64422644226443,47.596484559163514],[-122.68022680226802,47.65220760906965],[-122.68742687426874,47.64376472272022],[-122.69462694626947,47.63363325910092],[-122.69822698226983,47.623501795481644],[-122.69462694626947,47.609993177322565],[-122.6910269102691,47.596484559163514],[-122.68022680226802,47.58973025008399],[-122.64782647826479,47.57622163192491],[-122.64062640626406,47.57622163192491],[-122.64062640626406,47.574533054655035],[-122.64782647826479,47.56271301376586],[-122.65862658626585,47.552581550146556],[-122.67662676626766,47.53738435471763],[-122.68022680226802,47.52725289109833],[-122.62982629826298,47.544138663797156],[-122.60822608226081,47.55595870468633],[-122.58662586625866,47.569467322845384],[-122.55422554225542,47.58297594100446],[-122.54342543425435,47.566090168305635],[-122.53982539825398,47.54076150925738],[-122.53262532625325,47.52725289109833],[-122.50742507425073,47.5204985820188],[-122.5110251102511,47.503612809319975],[-122.52182521825219,47.481661304811496],[-122.5290252902529,47.463086954842765],[-122.53982539825398,47.43775829579454],[-122.55062550625506,47.414118214016185],[-122.55782557825577,47.392166709507705],[-122.53622536225362,47.370215204999226],[-122.54342543425435,47.356706586840176],[-122.55422554225542,47.34657512322087],[-122.56862568625687,47.33982081414135],[-122.58662586625866,47.33644365960157],[-122.56142561425614,47.30098353693404],[-122.55782557825577,47.28409776423521],[-122.56862568625687,47.26383483699661],[-122.5830258302583,47.26383483699661],[-122.66222662226622,47.28747491877499],[-122.68742687426874,47.30098353693404],[-122.68382683826837,47.31111500055334],[-122.66942669426695,47.31955788690274],[-122.66222662226622,47.33306650506182],[-122.6550265502655,47.34995227776065],[-122.6370263702637,47.3634608959197],[-122.62622626226262,47.38034666861853],[-122.63342633426333,47.40398675039688],[-122.64062640626406,47.38541240042818],[-122.6550265502655,47.37696951407875],[-122.68742687426874,47.365149473189575],[-122.69462694626947,47.35839516411005],[-122.70182701827018,47.351640855030524],[-122.7090270902709,47.344886545951],[-122.71982719827199,47.343197968681096],[-122.7270272702727,47.33982081414135],[-122.7270272702727,47.33137792779192],[-122.73062730627306,47.32124646417262],[-122.73422734227341,47.31280357782322],[-122.74862748627487,47.29591780512439],[-122.75222752227522,47.280720609695436],[-122.74862748627487,47.267211991536385],[-122.72342723427235,47.23850617794838],[-122.72342723427235,47.23344044613873],[-122.73062730627306,47.22837471432908],[-122.73782737827378,47.21993182797968],[-122.73782737827378,47.22499755978933],[-122.74142741427414,47.22162040524955],[-122.74862748627487,47.2165546734399],[-122.74862748627487,47.213177518900125],[-122.74862748627487,47.21148894163025],[-122.7450274502745,47.204734632550725],[-122.74142741427414,47.1979803234712],[-122.74142741427414,47.191226014391674],[-122.77382773827739,47.17265166442294],[-122.79902799027991,47.204734632550725],[-122.81342813428134,47.25032621883756],[-122.81342813428134,47.27396630061591],[-122.79542795427955,47.280720609695436],[-122.78822788227882,47.29591780512439],[-122.78462784627845,47.31449215509309],[-122.78462784627845,47.343197968681096],[-122.78462784627845,47.34995227776065],[-122.79182791827918,47.365149473189575],[-122.79902799027991,47.3719037822691],[-122.80622806228062,47.37696951407875],[-122.80982809828097,47.38372382315828],[-122.80622806228062,47.39723244131736],[-122.82062820628207,47.38372382315828],[-122.8350283502835,47.3347550823317],[-122.84582845828459,47.316180732362994],[-122.8710287102871,47.29929495966417],[-122.88542885428853,47.29085207331474],[-122.89622896228963,47.28747491877499],[-122.91422914229142,47.28578634150509],[-122.92142921429215,47.27734345515569],[-122.95022950229503,47.20304605528085],[-122.96462964629646,47.18109455077237],[-122.98982989829898,47.164208778073544],[-123.04383043830438,47.15407731445424],[-123.0690306903069,47.14563442810484],[-123.07983079830798,47.13043723267589],[-123.06543065430654,47.13719154175541],[-123.04023040230402,47.14394585083494],[-123.02223022230223,47.14394585083494],[-123.01863018630186,47.13043723267589],[-123.02943029430294,47.12199434632646],[-123.04743047430475,47.11861719178671],[-123.0690306903069,47.111862882707186],[-123.07983079830798,47.09666568727823],[-123.05823058230581,47.10341999635776],[-122.97542975429755,47.14563442810484],[-122.96822968229682,47.147323005374716],[-122.96462964629646,47.15070015991449],[-122.9430294302943,47.177717396232595],[-122.92862928629286,47.174340241692846],[-122.93582935829357,47.15914304626389],[-122.9790297902979,47.10173141908788],[-122.99342993429934,47.09159995546858],[-123.01143011430113,47.08315706911918],[-122.98622986229861,47.08146849184928],[-122.96462964629646,47.08991137819871],[-122.94662946629467,47.106797150897535],[-122.93582935829357,47.13043723267589],[-122.92862928629286,47.120305769056586],[-122.92862928629286,47.11017430543728],[-122.92862928629286,47.10004284181801],[-122.93582935829357,47.08991137819871],[-122.92502925029251,47.07809133730953],[-122.91782917829178,47.05613983280105],[-122.90702907029069,47.04769694645162],[-122.89262892628926,47.04769694645162],[-122.89262892628926,47.057828410070925],[-122.89982899828999,47.071337028230005],[-122.90702907029069,47.08315706911918],[-122.89622896228963,47.093288532738455],[-122.89622896228963,47.10510857362763],[-122.89982899828999,47.11861719178671],[-122.89982899828999,47.13043723267589],[-122.89262892628926,47.142257273565065],[-122.8530285302853,47.164208778073544],[-122.84582845828459,47.155765891724116],[-122.84942849428495,47.14563442810484],[-122.8530285302853,47.13719154175541],[-122.86022860228601,47.13043723267589],[-122.84582845828459,47.13212580994576],[-122.83142831428314,47.13719154175541],[-122.82062820628207,47.142257273565065],[-122.82062820628207,47.14394585083494],[-122.82422824228243,47.16083162353377],[-122.8170281702817,47.16589735534342],[-122.79902799027991,47.15745446899402],[-122.79182791827918,47.14901158264459],[-122.7810278102781,47.13719154175541],[-122.77382773827739,47.12706007813611],[-122.74862748627487,47.120305769056586],[-122.73422734227341,47.111862882707186],[-122.7270272702727,47.10004284181801],[-122.72342723427235,47.08991137819871],[-122.68742687426874,47.10510857362763],[-122.65142651426514,47.128748655406014],[-122.57222572225723,47.209800364360376],[-122.55062550625506,47.24188333248816],[-122.53622536225362,47.27903203242556],[-122.53622536225362,47.316180732362994],[-122.52182521825219,47.30604926874369],[-122.48582485824858,47.29085207331474],[-122.44982449824498,47.26890056880626],[-122.43182431824317,47.26552341426651],[-122.41742417424175,47.26890056880626],[-122.39942399423994,47.280720609695436],[-122.41742417424175,47.289163496044864],[-122.42822428224282,47.29591780512439],[-122.42822428224282,47.30436069147382],[-122.42102421024211,47.316180732362994],[-122.41022410224102,47.324623618712394],[-122.39222392223922,47.33306650506182],[-122.37062370623707,47.33982081414135],[-122.33822338223382,47.34657512322087],[-122.32742327423274,47.356706586840176],[-122.32382323823238,47.3719037822691],[-122.32382323823238,47.39047813223783],[-122.33462334623346,47.40398675039688],[-122.35982359823598,47.42931540944511],[-122.3670236702367,47.44282402760419],[-122.3670236702367,47.485038459351244],[-122.37062370623707,47.49685850024042],[-122.38142381423813,47.5103671183995],[-122.38862388623886,47.5204985820188],[-122.40662406624065,47.566090168305635],[-122.41022410224102,47.574533054655035],[-122.4030240302403,47.58128736373456],[-122.39222392223922,47.59310740462374],[-122.37782377823778,47.596484559163514],[-122.3670236702367,47.58635309554421],[-122.35622356223561,47.57115590011526],[-122.34542345423455,47.56271301376586],[-122.34182341823418,47.58297594100446],[-122.33822338223382,47.59817313643339],[-122.34542345423455,47.61168175459247],[-122.35982359823598,47.623501795481644],[-122.4030240302403,47.637010413640695],[-122.41382413824138,47.642076145450346],[-122.42462424624246,47.650519031799746],[-122.42822428224282,47.66065049541905],[-122.42462424624246,47.664027649958825],[-122.41382413824138,47.667404804498574],[-122.41022410224102,47.67415911357813],[-122.40662406624065,47.68260199992753],[-122.39942399423994,47.69273346354683],[-122.3850238502385,47.70961923624566],[-122.38142381423813,47.71975069986496],[-122.3850238502385,47.73663647256379],[-122.38862388623886,47.75183366799271],[-122.39942399423994,47.76365370888189],[-122.40662406624065,47.77716232704097],[-122.4030240302403,47.797425254279545],[-122.39942399423994,47.81431102697837],[-122.39222392223922,47.82781964513745],[-122.38142381423813,47.83963968602663],[-122.35262352623526,47.85652545872546],[-122.33822338223382,47.873411231424285],[-122.33822338223382,47.895362735932736],[-122.33462334623346,47.91055993136169],[-122.32382323823238,47.92406854952077],[-122.32382323823238,47.93420001314004],[-122.32022320223203,47.94264289948947],[-122.3130231302313,47.94770863129912],[-122.29142291422914,47.957840094918396],[-122.28422284222842,47.96290582672805],[-122.2770227702277,47.9679715585377],[-122.2410224102241,47.97303729034735],[-122.23382233822338,47.978103022157],[-122.21222212222122,47.9865459085064],[-122.20862208622086,48.00005452666548],[-122.20862208622086,48.01356314482453],[-122.20142201422014,48.01862887663418],[-122.19782197821978,48.02200603117396],[-122.19062190621906,48.02707176298361],[-122.19422194221943,48.03044891752336],[-122.20142201422014,48.033826072063135],[-122.20862208622086,48.037203226602884],[-122.2230222302223,48.03889180387279],[-122.23742237422374,48.02707176298361],[-122.30942309423094,48.06590904019089],[-122.34182341823418,48.08954912196927],[-122.36342363423634,48.123320667366926],[-122.3670236702367,48.158780790034456],[-122.3670236702367,48.19086375816221],[-122.37422374223742,48.21281526267069],[-122.41742417424175,48.22632388082977],[-122.42102421024211,48.22801245809964],[-122.42822428224282,48.23138961263942],[-122.43542435424354,48.23476676717917],[-122.44262442624427,48.23307818990929],[-122.44982449824498,48.22294672628999],[-122.44622446224463,48.202683799051414],[-122.46782467824679,48.19255233543211],[-122.46782467824679,48.17735514000316],[-122.46422464224642,48.158780790034456],[-122.4570245702457,48.1435835946055],[-122.44982449824498,48.1334521309862],[-122.43182431824317,48.12163209009702],[-122.41382413824138,48.11318920374762],[-122.39942399423994,48.10812347193797],[-122.3850238502385,48.10136916285845],[-122.37062370623707,48.08617196742949],[-122.3490234902349,48.05408899930171],[-122.3670236702367,48.05408899930171],[-122.37782377823778,48.060843308381266],[-122.39582395823959,48.08110623561984],[-122.40662406624065,48.08786054469937],[-122.48942489424894,48.13007497644645],[-122.5110251102511,48.14696074914528],[-122.52542525425254,48.17060083092363],[-122.53262532625325,48.19592948997186],[-122.53262532625325,48.21956957175021],[-122.53262532625325,48.24996396260812],[-122.50022500225002,48.25334111714787],[-122.46422464224642,48.26009542622742],[-122.44622446224463,48.2617840034973],[-122.42822428224282,48.25840684895752],[-122.41742417424175,48.251652539877995],[-122.41022410224102,48.24152107625869],[-122.39942399423994,48.23476676717917],[-122.38862388623886,48.23983249898882],[-122.39222392223922,48.24996396260812],[-122.39222392223922,48.26009542622742],[-122.37422374223742,48.280358353466],[-122.37782377823778,48.28542408527565],[-122.38142381423813,48.29724412616483],[-122.3850238502385,48.30399843524435],[-122.39222392223922,48.309064167054004],[-122.42462424624246,48.33101567156248],[-122.45342453424534,48.34283571245166],[-122.47862478624786,48.35972148515049],[-122.4930249302493,48.36478721696014],[-122.50742507425073,48.368164371499915],[-122.52182521825219,48.368164371499915],[-122.53262532625325,48.37491868057944],[-122.55422554225542,48.40193591689757],[-122.56862568625687,48.41037880324697],[-122.56862568625687,48.417133112326496],[-122.55062550625506,48.4272645759458],[-122.55782557825577,48.434018885025324],[-122.57582575825758,48.4373960395651],[-122.5830258302583,48.4373960395651],[-122.59022590225902,48.434018885025324],[-122.60822608226081,48.41544453505662],[-122.61542615426154,48.41037880324697],[-122.62982629826298,48.40531307143732],[-122.64782647826479,48.403624494167445],[-122.66222662226622,48.407001648707194],[-122.67302673026731,48.41375595778675],[-122.68382683826837,48.430641730485576],[-122.68022680226802,48.439084616834975],[-122.66942669426695,48.4458389259145],[-122.66222662226622,48.45428181226393],[-122.66942669426695,48.47285616223263],[-122.68382683826837,48.47961047131216],[-122.69822698226983,48.48129904858206],[-122.70542705427054,48.48636478039168],[-122.70182701827018,48.49818482128086],[-122.68742687426874,48.49987339855076],[-122.67302673026731,48.49818482128086],[-122.65862658626585,48.50325055309051],[-122.63342633426333,48.51675917124959],[-122.61182611826118,48.49987339855076],[-122.59742597425975,48.474544739502505],[-122.57942579425794,48.45765896680368],[-122.57942579425794,48.48467620312181],[-122.56862568625687,48.48974193493146],[-122.55062550625506,48.48129904858206],[-122.52542525425254,48.461036121343454],[-122.51462514625146,48.452593234994026],[-122.50022500225002,48.45090465772415],[-122.48942489424894,48.45428181226393],[-122.48222482224821,48.46441327588323],[-122.47862478624786,48.469479007692854],[-122.48222482224821,48.47623331677241],[-122.48582485824858,48.48636478039168],[-122.48942489424894,48.51338201670981],[-122.4930249302493,48.528579212138766],[-122.50382503825038,48.54377640756769],[-122.51462514625146,48.55728502572677],[-122.55422554225542,48.57585937569547],[-122.56862568625687,48.585990839314775],[-122.54702547025471,48.58936799385455],[-122.52542525425254,48.582613684775],[-122.48582485824858,48.558973602996645],[-122.46782467824679,48.55390787118699],[-122.44622446224463,48.56235075753642],[-122.4390243902439,48.580925107505124],[-122.44262442624427,48.6028766120136],[-122.4570245702457,48.62313953925218],[-122.46782467824679,48.62820527106183],[-122.4750247502475,48.63158242560161],[-122.48582485824858,48.634959580141384],[-122.4930249302493,48.643402466490784],[-122.49662496624967,48.653533930110086],[-122.50382503825038,48.678862589158314],[-122.50382503825038,48.68561689823784],[-122.52542525425254,48.69237120731739],[-122.52182521825219,48.70925698001622],[-122.50022500225002,48.7396513708741],[-122.50742507425073,48.75484856630305],[-122.5290252902529,48.768357184462104],[-122.55422554225542,48.776800070811504],[-122.57582575825758,48.78017722535128],[-122.59382593825939,48.773422916271755],[-122.60822608226081,48.7582257208428],[-122.64062640626406,48.72276559817527],[-122.65142651426514,48.71769986636562],[-122.65862658626585,48.72276559817527],[-122.66582665826658,48.73120848452467],[-122.66942669426695,48.74302852541388],[-122.66582665826658,48.7480942572235],[-122.65142651426514,48.7582257208428],[-122.65142651426514,48.76329145265245],[-122.65862658626585,48.776800070811504],[-122.67662676626766,48.79368584351033],[-122.69462694626947,48.800440152589886],[-122.70542705427054,48.78862011170071],[-122.70182701827018,48.81226019347906],[-122.70542705427054,48.82745738890799],[-122.71262712627126,48.83758885252729],[-122.75582755827558,48.86460608884542],[-122.76662766627666,48.87473755246472],[-122.77382773827739,48.8865575933539],[-122.76662766627666,48.8966890569732],[-122.75942759427593,48.9051319433226],[-122.74862748627487,48.91188625240213],[-122.7450274502745,48.91695198421178],[-122.75942759427593,48.93552633418048],[-122.80982809828097,48.933837756910606],[-122.81342813428134,48.95241210687931],[-122.80262802628026,48.96254357049861],[-122.77742777427774,48.964232147768485],[-122.73062730627306,48.95916641595886],[-122.74142741427414,48.97605218865769],[-122.75222752227522,48.99293796135649],[-122.75942759427593,49.00138084770592],[-122.7810278102781,49.01657804313487],[-122.80262802628026,49.00982373405532],[-122.82422824228243,49.00644657951557],[-122.8530285302853,49.01657804313487],[-122.87462874628747,49.03684097037345],[-122.87462874628747,49.05541532034215],[-122.86382863828638,49.0706125157711],[-122.86742867428674,49.080743979390405],[-122.88182881828818,49.085809711200056],[-122.90702907029069,49.08749828846993],[-122.92862928629286,49.08749828846993],[-122.95022950229503,49.08243255666028],[-123.03303033030329,49.05034958853253],[-123.04743047430475,49.03515239310357],[-123.04383043830438,49.01657804313487],[-123.03303033030329,48.99462653862639],[-123.03663036630365,48.99293796135649],[-123.04383043830438,48.98449507500709],[-123.0870308703087,48.97267503411791],[-123.09063090630906,48.987872229546866],[-123.09063090630906,48.99293796135649],[-123.09423094230942,49.004758002245694],[-123.10143101431015,49.02164377494452],[-123.10863108631085,49.0334638158337],[-123.12303123031231,49.04697243399275],[-123.13743137431373,49.053726743072275],[-123.14463144631446,49.0604810521518],[-123.13023130231302,49.07398967031088],[-123.07623076230763,49.10607263843863],[-123.05463054630546,49.12295841113746],[-123.04023040230402,49.151664224725465],[-123.07983079830798,49.12802414294711],[-123.12303123031231,49.116204102057935],[-123.16623166231662,49.116204102057935],[-123.2130321303213,49.129712720217015],[-123.2130321303213,49.13646702929654],[-123.19863198631987,49.14828707018572],[-123.20583205832058,49.19050150193277],[-123.19863198631987,49.205698697361726],[-123.18063180631806,49.209075851901474],[-123.15543155431554,49.205698697361726],[-123.13743137431373,49.19556723374242],[-123.14463144631446,49.2073872746316],[-123.17703177031771,49.22427304733043],[-123.20943209432093,49.236093088219604],[-123.23463234632345,49.249601706378684],[-123.24543245432454,49.27493036542691],[-123.21663216632166,49.27999609723656],[-123.17703177031771,49.276618942696786],[-123.14463144631446,49.27999609723656],[-123.16263162631626,49.30025902447517],[-123.15543155431554,49.30870191082457],[-123.13743137431373,49.30870191082457],[-123.13023130231302,49.30532475628479],[-123.12303123031231,49.295193292665516],[-123.10863108631085,49.28843898358596],[-123.09063090630906,49.28843898358596],[-123.07263072630727,49.295193292665516],[-123.0690306903069,49.28675040631609],[-123.05823058230581,49.29350471539561],[-123.04023040230402,49.295193292665516],[-123.02223022230223,49.29350471539561],[-123.00783007830077,49.28675040631609],[-122.9610296102961,49.28168467450644],[-122.92142921429215,49.30025902447517],[-122.89262892628926,49.334030569872795],[-122.86382863828638,49.40663939247776],[-122.85662856628566,49.423525165176585],[-122.85662856628566,49.44209951514529],[-122.86022860228601,49.450542401494715],[-122.86742867428674,49.455608133304366],[-122.87822878228782,49.45729671057424],[-122.88182881828818,49.44885382422484],[-122.87822878228782,49.41677085609706],[-122.88182881828818,49.40495081520788],[-122.93942939429394,49.325587683523395],[-123.02223022230223,49.30701333355469],[-123.2130321303213,49.34247345622222],[-123.22743227432275,49.3441620334921],[-123.27063270632706,49.3357191471427],[-123.27783277832779,49.35091634257162],[-123.28503285032849,49.36273638346083],[-123.29223292232922,49.36949069254035],[-123.28503285032849,49.382999310699404],[-123.25623256232562,49.396507928858455],[-123.24543245432454,49.41170512428741],[-123.24183241832418,49.42690231971636],[-123.24183241832418,49.44209951514529],[-123.25263252632527,49.5113311832105],[-123.25263252632527,49.52315122409968],[-123.24183241832418,49.55523419222743],[-123.22743227432275,49.583940005815435],[-123.21663216632166,49.59576004670461],[-123.22023220232202,49.597448623974515],[-123.22383223832239,49.597448623974515],[-123.22743227432275,49.59913720124439],[-123.22743227432275,49.60420293305404],[-123.21663216632166,49.60926866486369],[-123.20583205832058,49.62108870575287],[-123.20583205832058,49.63628590118182],[-123.2130321303213,49.64979451934087],[-123.16983169831698,49.6751231783891],[-123.15543155431554,49.69369752835783],[-123.16983169831698,49.70551756924701],[-123.18783187831878,49.69200895108793],[-123.20223202232023,49.681877487468654],[-123.21663216632166,49.67850033292888],[-123.22743227432275,49.6751231783891],[-123.23823238232382,49.6666802920397],[-123.24903249032491,49.65823740569027],[-123.25263252632527,49.64979451934087],[-123.24543245432454,49.62615443756252],[-123.24543245432454,49.61264581940344],[-123.24903249032491,49.597448623974515],[-123.25623256232562,49.59238289216486],[-123.2670326703267,49.59069431489499],[-123.28863288632886,49.58056285127569],[-123.31743317433174,49.58225142854556],[-123.32823328233283,49.58225142854556],[-123.33543335433353,49.57718569673591],[-123.34983349833499,49.56029992403708],[-123.3570335703357,49.55523419222743],[-123.38223382233822,49.55861134676721],[-123.39663396633966,49.55861134676721],[-123.40383403834039,49.55185703768768],[-123.41103411034109,49.548479883147905],[-123.43983439834398,49.53665984225873],[-123.4470344703447,49.53159411044908],[-123.49023490234902,49.51470833775025],[-123.50103501035011,49.50626545140085],[-123.48663486634865,49.49275683324177],[-123.49023490234902,49.472493906003194],[-123.47223472234722,49.43534520606576],[-123.4830348303483,49.41339370155728],[-123.50103501035011,49.39988508339823],[-123.51543515435154,49.39144219704883],[-123.53343533435334,49.388065042509055],[-123.5550355503555,49.38975361977893],[-123.78183781837818,49.46573959692367],[-123.8070380703807,49.47080532873332],[-123.86463864638645,49.472493906003194],[-123.88623886238862,49.477559637812845],[-123.90423904239043,49.486002524162245],[-123.91143911439114,49.49444541051167],[-123.9150391503915,49.5011997195912],[-123.91863918639186,49.507954028670724],[-123.92943929439295,49.513019760480375],[-123.94743947439474,49.51808549229003],[-123.95463954639547,49.51808549229003],[-123.96543965439653,49.521462646829775],[-123.97623976239763,49.53159411044908],[-123.99423994239942,49.55016846041778],[-124.02664026640267,49.60420293305404],[-124.03384033840338,49.610957242133566],[-124.05184051840519,49.62277728302274],[-124.06264062640626,49.63122016937217],[-124.06624066240661,49.64472878753122],[-124.06624066240661,49.66161456023005],[-124.06264062640626,49.67850033292888],[-124.05184051840519,49.6852546420084],[-124.04464044640446,49.69200895108793],[-124.03024030240303,49.72071476467593],[-124.01944019440194,49.73253480556514],[-124.00504005040051,49.74097769191454],[-123.99063990639905,49.744354846454314],[-123.95463954639547,49.74773200099406],[-123.94023940239401,49.744354846454314],[-123.9330393303933,49.735911960104886],[-123.92943929439295,49.725780496485584],[-123.92223922239222,49.71564903286631],[-123.86823868238682,49.67174602384935],[-123.83943839438393,49.637974478451696],[-123.83583835838358,49.63459732391192],[-123.82863828638287,49.59576004670461],[-123.82863828638287,49.58225142854556],[-123.82143821438214,49.56705423311661],[-123.80343803438035,49.52821695590933],[-123.79263792637926,49.513019760480375],[-123.77823778237783,49.50457687413095],[-123.76743767437674,49.513019760480375],[-123.76023760237602,49.52821695590933],[-123.75303753037531,49.540036996798506],[-123.76383763837637,49.55692276949733],[-123.7710377103771,49.575497119466036],[-123.7710377103771,49.59407146943474],[-123.76023760237602,49.60926866486369],[-123.74943749437494,49.61264581940344],[-123.7170371703717,49.61602297394322],[-123.70983709837098,49.62277728302274],[-123.70263702637027,49.62953159210227],[-123.69543695436954,49.63459732391192],[-123.63783637836377,49.64135163299147],[-123.5910359103591,49.65317167388065],[-123.55143551435515,49.6751231783891],[-123.53343533435334,49.70551756924701],[-123.66303663036629,49.6565488284204],[-123.79623796237962,49.64472878753122],[-123.8070380703807,49.646417364801096],[-123.81063810638106,49.6666802920397],[-123.82143821438214,49.68356606473853],[-123.88263882638826,49.73928911464466],[-123.91863918639186,49.75617488734349],[-123.92583925839259,49.762929196423016],[-123.9330393303933,49.78319212366159],[-123.92223922239222,49.80007789636042],[-123.88983889838897,49.828783709948425],[-123.88263882638826,49.847358059917156],[-123.87903879038791,49.86593240988586],[-123.88263882638826,49.90139253255339],[-123.88983889838897,49.92165545979199],[-123.90783907839078,49.931786923411295],[-123.92943929439295,49.93685265522092],[-123.94383943839438,49.945295541570346],[-123.95823958239582,49.967247046078825],[-123.95463954639547,49.989198550587304],[-123.93663936639366,50.007772900556006],[-123.8970389703897,50.01790436417531],[-123.87903879038791,50.03141298233436],[-123.86463864638645,50.034790136874136],[-123.82143821438214,50.038167291413885],[-123.8070380703807,50.04154444595366],[-123.7710377103771,50.07362741408144],[-123.75303753037531,50.09389034132002],[-123.75663756637566,50.10233322766945],[-123.77823778237783,50.11246469128872],[-123.81423814238141,50.149613391226154],[-123.82863828638287,50.158056277575554],[-123.88623886238862,50.181696359353936],[-123.92943929439295,50.190139245703335],[-123.9690396903969,50.21377932748169],[-123.99423994239942,50.220533636561214],[-123.98343983439834,50.20533644113229],[-123.97263972639726,50.19351640024311],[-123.95823958239582,50.181696359353936],[-123.94383943839438,50.17156489573463],[-123.92583925839259,50.16481058665511],[-123.88263882638826,50.1529905457659],[-123.8610386103861,50.1445476594165],[-123.85743857438574,50.13948192760685],[-123.85023850238503,50.1259733094478],[-123.84663846638466,50.12090757763815],[-123.83583835838358,50.1158418458285],[-123.81423814238141,50.10739895947907],[-123.8070380703807,50.10233322766945],[-123.81423814238141,50.09051318678027],[-123.83223832238322,50.07531599135132],[-123.86823868238682,50.05505306411271],[-123.97983979839799,50.02128151871506],[-123.99423994239942,50.01115005509578],[-123.99783997839978,49.99257570512705],[-124.00144001440015,49.97400135515835],[-123.99783997839978,49.953738427919745],[-123.99063990639905,49.93347550068117],[-123.97983979839799,49.918278305252215],[-123.96183961839618,49.904769687093165],[-123.92583925839259,49.88619533712446],[-123.91143911439114,49.869309564425635],[-123.91863918639186,49.860866678076206],[-123.92943929439295,49.83891517356773],[-123.93663936639366,49.828783709948425],[-123.96183961839618,49.81696366905925],[-123.96543965439653,49.815275091789374],[-123.9690396903969,49.8135865145195],[-123.97263972639726,49.81020935997972],[-123.97983979839799,49.80852078270985],[-123.9870398703987,49.80852078270985],[-124.00144001440015,49.811897937249626],[-124.00864008640086,49.820340823599025],[-124.01224012240122,49.842292328107504],[-124.01224012240122,49.847358059917156],[-124.01224012240122,49.850735214456904],[-124.01224012240122,49.85411236899668],[-124.01224012240122,49.86424383261598],[-124.01584015840157,49.869309564425635],[-124.03024030240303,49.877752450775034],[-124.03384033840338,49.882818182584685],[-124.02664026640267,49.89463822347386],[-124.01944019440194,49.90814684163291],[-124.0230402304023,49.91996688252212],[-124.03744037440374,49.92503261433174],[-124.04464044640446,49.91658972798234],[-124.07344073440734,49.869309564425635],[-124.06264062640626,49.86424383261598],[-124.05184051840519,49.85242379172681],[-124.04824048240482,49.84060375083763],[-124.0590405904059,49.83553801902798],[-124.07344073440734,49.83553801902798],[-124.08424084240842,49.83047228721833],[-124.08784087840878,49.8220294008689],[-124.08064080640807,49.80852078270985],[-124.10224102241023,49.798389319090546],[-124.1490414904149,49.784880700931495],[-124.17064170641706,49.78150354639172],[-124.24984249842498,49.78150354639172],[-124.2750427504275,49.77474923731219],[-124.26784267842677,49.75110915553384],[-124.28224282242823,49.74604342372419],[-124.30384303843039,49.752797732803714],[-124.32544325443254,49.77474923731219],[-124.35424354243543,49.77474923731219],[-124.40464404644047,49.76799492823267],[-124.42984429844299,49.771372082772416],[-124.47664476644766,49.78994643274115],[-124.51264512645126,49.79670074182067],[-124.51984519845197,49.80514362817007],[-124.5270452704527,49.815275091789374],[-124.5270452704527,49.83722659629785],[-124.53064530645307,49.84398090537738],[-124.58464584645847,49.882818182584685],[-124.60624606246063,49.89294964620399],[-124.62784627846278,49.89801537801364],[-124.63504635046351,49.90139253255339],[-124.64944649446494,49.91996688252212],[-124.66024660246603,49.92503261433174],[-124.67464674646746,49.926721191601644],[-124.73224732247323,49.953738427919745],[-124.76464764647646,49.97737850969813],[-124.82224822248222,50.03985586868379],[-124.82944829448294,50.05505306411271],[-124.81864818648187,50.07193883681154],[-124.80064800648006,50.06180737319224],[-124.7790477904779,50.04492160049341],[-124.76464764647646,50.034790136874136],[-124.7430474304743,50.02803582779461],[-124.70344703447034,49.9976414369367],[-124.68544685446855,49.98582139604753],[-124.70344703447034,50.02297009598496],[-124.70344703447034,50.04154444595366],[-124.6890468904689,50.04829875503319],[-124.68184681846819,50.051675909572964],[-124.67824678246782,50.06180737319224],[-124.6710467104671,50.07362741408144],[-124.6710467104671,50.08207030043084],[-124.67824678246782,50.08882460951037],[-124.70704707047071,50.10233322766945],[-124.69264692646927,50.114153268558624],[-124.67464674646746,50.119219000368275],[-124.66384663846638,50.1259733094478],[-124.6710467104671,50.1445476594165],[-124.64944649446494,50.1529905457659],[-124.62784627846278,50.16987631846473],[-124.6170461704617,50.18845066843346],[-124.62424624246242,50.20533644113229],[-124.60624606246063,50.23235367745039],[-124.60264602646026,50.24079656379982],[-124.60624606246063,50.25092802741912],[-124.62784627846278,50.266125222848046],[-124.63144631446315,50.27794526373722],[-124.63864638646386,50.29314245916618],[-124.66384663846638,50.30496250005535],[-124.6890468904689,50.31340538640478],[-124.70704707047071,50.32184827275418],[-124.71424714247142,50.33197973637348],[-124.71064710647107,50.33366831364336],[-124.70344703447034,50.33535689091326],[-124.67824678246782,50.35393124088196],[-124.67464674646746,50.36068554996149],[-124.6710467104671,50.37419416812054],[-124.66024660246603,50.39276851808927],[-124.63144631446315,50.40121140443867],[-124.5990459904599,50.404588558978446],[-124.57744577445774,50.404588558978446],[-124.5450454504545,50.39783424989892],[-124.53424534245343,50.39783424989892],[-124.52344523445234,50.40121140443867],[-124.50544505445055,50.41640859986762],[-124.49464494644945,50.41978575440737],[-124.47664476644766,50.421474331677274],[-124.42984429844299,50.4366715271062],[-124.41184411844118,50.44511441345563],[-124.35784357843579,50.48564026793281],[-124.3470434704347,50.497460308821985],[-124.35784357843579,50.50928034971116],[-124.38304383043831,50.497460308821985],[-124.42624426244262,50.467065917964106],[-124.50544505445055,50.4383601043761],[-124.58824588245882,50.42485148621702],[-124.6710467104671,50.43160579529655],[-124.68544685446855,50.421474331677274],[-124.69264692646927,50.40289998170854],[-124.73224732247323,50.37081701358079],[-124.73944739447394,50.36068554996149],[-124.75024750247502,50.35224266361209],[-124.80784807848079,50.32184827275418],[-124.82944829448294,50.31678254094453],[-124.8510485104851,50.32015969548431],[-124.87624876248762,50.32522542729396],[-124.89784897848978,50.32860258183371],[-124.9410494104941,50.32522542729396],[-124.95184951849518,50.32860258183371],[-124.96264962649627,50.34042262272288],[-124.95904959049591,50.34886550907231],[-124.94824948249482,50.358996972691614],[-124.94464944649447,50.37081701358079],[-124.95184951849518,50.39107994081937],[-124.96624966249662,50.413031445327846],[-124.98424984249843,50.4282286407568],[-125.00585005850058,50.43160579529655],[-124.99864998649986,50.41134286805797],[-124.99144991449914,50.38432563173984],[-124.9950499504995,50.36068554996149],[-125.03825038250383,50.342111199992786],[-125.06345063450635,50.32691400456383],[-125.08145081450814,50.32522542729396],[-125.08865088650887,50.350554086342186],[-125.08505085050851,50.364062704501265],[-125.07785077850778,50.36743985904101],[-125.07065070650705,50.369128436310916],[-125.05985059850599,50.377571322660316],[-125.0670506705067,50.41134286805797],[-125.06345063450635,50.41472002259775],[-125.0670506705067,50.42485148621702],[-125.0670506705067,50.434982949836325],[-125.06345063450635,50.44511441345563],[-125.05985059850599,50.470443072503855],[-125.05625056250562,50.47719738158341],[-125.05265052650526,50.48226311339303],[-125.04185041850418,50.48732884520268],[-124.96984969849699,50.50083746336176],[-124.95904959049591,50.510968926981036],[-124.95184951849518,50.537986163299166],[-124.93744937449375,50.546429049648594],[-124.89064890648906,50.554871935997994],[-124.88704887048871,50.559937667807645],[-124.87264872648726,50.57682344050647],[-124.8690486904869,50.583577749586],[-124.8690486904869,50.58864348139565],[-124.87264872648726,50.60721783136435],[-124.87264872648726,50.613972140443906],[-124.86544865448654,50.62916933587283],[-124.86544865448654,50.671383767619915],[-124.85464854648546,50.693335272128394],[-124.82944829448294,50.720352508446496],[-124.82224822248222,50.733861126605575],[-124.83664836648367,50.75412405384415],[-124.89784897848978,50.774386981082756],[-124.9050490504905,50.777764135622505],[-124.91224912249123,50.78451844470206],[-124.91224912249123,50.79296133105146],[-124.90864908649087,50.79802706286111],[-124.88704887048871,50.818289990099686],[-124.86184861848619,50.831798608258765],[-124.8510485104851,50.840241494608165],[-124.82584825848258,50.86894730819617],[-124.80784807848079,50.87907877181547],[-124.78624786247863,50.88414450362512],[-124.80424804248042,50.916227471752904],[-124.8150481504815,50.92635893537221],[-124.83304833048331,50.93142466718183],[-124.84744847448474,50.93142466718183],[-124.86184861848619,50.92804751264208],[-124.8690486904869,50.916227471752904],[-124.8690486904869,50.894275967244425],[-124.87624876248762,50.88414450362512],[-124.91944919449195,50.84361864914794],[-124.93384933849339,50.835175762798514],[-124.96984969849699,50.81997856736959],[-124.98784987849879,50.80815852648041],[-124.96624966249662,50.80309279467076],[-124.95544955449554,50.79802706286111],[-124.95184951849518,50.791272753781584],[-124.95184951849518,50.76594409473333],[-124.94824948249482,50.76087836292368],[-124.92664926649266,50.75750120838393],[-124.90864908649087,50.7490583220345],[-124.90144901449014,50.73554970387545],[-124.91224912249123,50.70515531301757],[-124.9230492304923,50.66969519035001],[-124.92664926649266,50.657875149460835],[-124.91944919449195,50.644366531301785],[-124.90864908649087,50.635923644952356],[-124.90864908649087,50.62748075860296],[-124.93384933849339,50.6021520995547],[-124.9410494104941,50.59877494501495],[-124.94824948249482,50.59708636774508],[-124.95184951849518,50.59877494501495],[-124.95184951849518,50.6021520995547],[-124.95544955449554,50.6038406768246],[-124.95904959049591,50.6038406768246],[-124.96264962649627,50.59877494501495],[-124.96624966249662,50.590332058665524],[-125.02745027450274,50.55824909053777],[-125.04185041850418,50.53123185421964],[-125.1030510305103,50.49914888609186],[-125.12465124651246,50.47382022704363],[-125.1138511385114,50.45524587707493],[-125.12825128251282,50.4366715271062],[-125.15345153451534,50.42485148621702],[-125.17865178651786,50.41978575440737],[-125.19665196651965,50.41978575440737],[-125.20745207452075,50.426540063486925],[-125.22545225452254,50.45186872253515],[-125.24345243452434,50.467065917964106],[-125.2470524705247,50.47382022704363],[-125.2470524705247,50.48057453612316],[-125.24345243452434,50.489017422472585],[-125.239852398524,50.49577173155211],[-125.24345243452434,50.50421461790151],[-125.25425254252542,50.50590319517141],[-125.26865268652686,50.497460308821985],[-125.2830528305283,50.47719738158341],[-125.29745297452973,50.467065917964106],[-125.30465304653046,50.467065917964106],[-125.31185311853119,50.470443072503855],[-125.32625326253262,50.47382022704363],[-125.34065340653407,50.489017422472585],[-125.34785347853477,50.519411813330464],[-125.3550535505355,50.54305189510882],[-125.38385383853839,50.53460900875942],[-125.38385383853839,50.52616612240999],[-125.38385383853839,50.51265750425094],[-125.39105391053911,50.497460308821985],[-125.39825398253981,50.48732884520268],[-125.41265412654127,50.47382022704363],[-125.43065430654306,50.465377340694204],[-125.51705517055171,50.45524587707493],[-125.54585545855458,50.45524587707493],[-125.56385563855639,50.45862303161468],[-125.57825578255782,50.470443072503855],[-125.57465574655745,50.47888595885328],[-125.56025560255603,50.48564026793281],[-125.54945549455493,50.49408315428221],[-125.54225542255423,50.50590319517141],[-125.52785527855278,50.54305189510882],[-125.52785527855278,50.554871935997994],[-125.53145531455314,50.5650033996173],[-125.53865538655387,50.58020059504625],[-125.54225542255423,50.58864348139565],[-125.5350553505535,50.617349294983654],[-125.52785527855278,50.635923644952356],[-125.51705517055171,50.65112084038131],[-125.50625506255062,50.66294088127049],[-125.48825488254883,50.67307234488979],[-125.46305463054631,50.679826653969315],[-125.45225452254522,50.684892385778966],[-125.4450544505445,50.69164669485849],[-125.43425434254343,50.70515531301757],[-125.42345423454233,50.71359819936697],[-125.45585455854558,50.720352508446496],[-125.4810548105481,50.706843890287445],[-125.50265502655026,50.68826954031874],[-125.53145531455314,50.67813807669944],[-125.55665556655566,50.666318035810264],[-125.56745567455675,50.63761222222226],[-125.5710557105571,50.60721783136435],[-125.56385563855639,50.58864348139565],[-125.5710557105571,50.573446285966696],[-125.57825578255782,50.551494781458246],[-125.58545585455855,50.53460900875942],[-125.62145621456214,50.52278896787024],[-125.62145621456214,50.510968926981036],[-125.61425614256143,50.49914888609186],[-125.61065610656107,50.49408315428221],[-125.61425614256143,50.47888595885328],[-125.61785617856178,50.470443072503855],[-125.63225632256322,50.45524587707493],[-125.6430564305643,50.448491567995376],[-125.65745657456574,50.44342583618575],[-125.67185671856718,50.440048681645976],[-125.70425704257042,50.4383601043761],[-125.70785707857078,50.440048681645976],[-125.71865718657186,50.44511441345563],[-125.77265772657726,50.48732884520268],[-125.79425794257942,50.49408315428221],[-125.7870578705787,50.50590319517141],[-125.7510575105751,50.50928034971116],[-125.74025740257403,50.519411813330464],[-125.7870578705787,50.53123185421964],[-125.81585815858159,50.532920431489515],[-125.83745837458375,50.527854699679864],[-125.84105841058411,50.52278896787024],[-125.85545855458554,50.50759177244129],[-125.86265862658627,50.50083746336176],[-125.95625956259562,50.475508804313506],[-126.00666006660066,50.47213164977376],[-126.0570605706057,50.47888595885328],[-126.08946089460895,50.50083746336176],[-126.1110611106111,50.49070599974246],[-126.13266132661326,50.489017422472585],[-126.24066240662407,50.50083746336176],[-126.26226262262622,50.50759177244129],[-126.28026280262802,50.519411813330464],[-126.27666276662767,50.524477545140115],[-126.25866258662586,50.52954327694977],[-126.24426244262443,50.537986163299166],[-126.22626226262263,50.54474047237869],[-126.20826208262082,50.537986163299166],[-126.17946179461794,50.519411813330464],[-126.18666186661866,50.54811762691847],[-126.18666186661866,50.56331482234742],[-126.17946179461794,50.5751348632366],[-126.17226172261722,50.57851201777635],[-126.13626136261362,50.583577749586],[-126.11466114661147,50.5937092132053],[-126.10386103861038,50.59708636774508],[-126.09666096660966,50.595397790475175],[-126.09306093060931,50.59202063593543],[-126.08586085860858,50.58864348139565],[-126.06426064260643,50.6038406768246],[-125.97785977859778,50.613972140443906],[-125.95985959859598,50.61903787225353],[-125.93825938259383,50.630857913142734],[-125.95985959859598,50.64605510857166],[-125.9850598505985,50.644366531301785],[-126.03546035460354,50.630857913142734],[-126.06066060660606,50.62748075860296],[-126.13266132661326,50.6038406768246],[-126.16146161461614,50.59708636774508],[-126.24426244262443,50.59708636774508],[-126.25146251462515,50.60046352228483],[-126.26586265862659,50.61903787225353],[-126.2730627306273,50.62410360406318],[-126.27666276662767,50.62579218133308],[-126.26946269462695,50.630857913142734],[-126.24786247862478,50.63761222222226],[-126.22266222662226,50.64267795403191],[-126.11826118261183,50.64605510857166],[-126.04986049860499,50.66462945854036],[-126.01746017460175,50.666318035810264],[-125.93825938259383,50.65112084038131],[-125.91305913059131,50.65449799492109],[-125.82665826658265,50.676449499429566],[-125.7510575105751,50.684892385778966],[-125.74025740257403,50.684892385778966],[-125.72585725857257,50.679826653969315],[-125.71505715057151,50.67813807669944],[-125.70425704257042,50.68151523123919],[-125.70065700657005,50.68995811758862],[-125.68265682656826,50.72541824025615],[-125.6790567905679,50.733861126605575],[-125.67185671856718,50.7406154356851],[-125.65745657456574,50.74568116749475],[-125.63225632256322,50.7507468993044],[-125.62145621456214,50.75750120838393],[-125.6070560705607,50.78114129016228],[-125.62145621456214,50.799715640130984],[-125.63945639456395,50.81660141282981],[-125.65025650256501,50.836864340068416],[-125.64665646656466,50.85543869003712],[-125.62865628656286,50.862192999116644],[-125.56025560255603,50.86557015365642],[-125.54945549455493,50.87401304000582],[-125.54585545855458,50.8875216581649],[-125.5350553505535,50.91116173994325],[-125.52785527855278,50.91791604902278],[-125.52065520655206,50.921293203562556],[-125.50985509855099,50.92635893537221],[-125.50625506255062,50.93986755353126],[-125.50625506255062,50.94999901715056],[-125.51345513455135,50.960130480769834],[-125.51705517055171,50.97026194438914],[-125.52425524255241,50.97701625346866],[-125.53865538655387,50.99559060343739],[-125.56385563855639,51.054690807883276],[-125.57825578255782,51.071576580582104],[-125.63585635856359,51.103659548709885],[-125.63585635856359,51.08001946693153],[-125.63225632256322,51.063133694232704],[-125.61065610656107,51.014164953406095],[-125.58185581855818,50.96688478984939],[-125.57465574655745,50.95844190349996],[-125.54945549455493,50.94662186261078],[-125.54225542255423,50.93986755353126],[-125.55665556655566,50.91960462629265],[-125.57465574655745,50.907784585403476],[-125.59985599855997,50.90103027632395],[-125.62865628656286,50.897653121784174],[-125.63945639456395,50.8959645445143],[-125.65385653856538,50.8875216581649],[-125.66825668256682,50.87907877181547],[-125.6790567905679,50.87063588546607],[-125.68265682656826,50.86050442184677],[-125.68625686256863,50.84361864914794],[-125.68625686256863,50.82842145371899],[-125.68265682656826,50.82166714463946],[-125.65025650256501,50.804781371940635],[-125.6430564305643,50.79802706286111],[-125.64665646656466,50.782829867432156],[-125.65745657456574,50.777764135622505],[-125.66825668256682,50.777764135622505],[-125.68625686256863,50.774386981082756],[-125.70785707857078,50.75750120838393],[-125.74385743857438,50.71697535390675],[-125.7690576905769,50.706843890287445],[-125.7690576905769,50.71359819936697],[-125.88065880658806,50.70853246755732],[-125.89865898658987,50.69671242666814],[-125.90585905859058,50.68995811758862],[-125.92025920259202,50.684892385778966],[-125.93825938259383,50.68320380850909],[-125.95265952659526,50.684892385778966],[-125.96705967059671,50.69671242666814],[-125.97425974259743,50.70853246755732],[-125.9850598505985,50.715286776636844],[-126.00666006660066,50.71359819936697],[-126.0210602106021,50.706843890287445],[-126.04626046260462,50.68826954031874],[-126.06066060660606,50.684892385778966],[-126.18666186661866,50.671383767619915],[-126.21186211862118,50.67476092215966],[-126.22626226262263,50.693335272128394],[-126.21186211862118,50.71022104482719],[-126.16866168661687,50.71866393117662],[-126.1470614706147,50.7304839720658],[-126.12546125461255,50.7490583220345],[-126.0570605706057,50.774386981082756],[-126.03186031860318,50.78958417651168],[-126.03546035460354,50.79464990832133],[-126.07866078660786,50.79464990832133],[-126.10386103861038,50.78958417651168],[-126.1290612906129,50.77945271289241],[-126.15066150661507,50.774386981082756],[-126.17946179461794,50.78114129016228],[-126.19746197461974,50.79802706286111],[-126.19386193861939,50.81491283555994],[-126.1830618306183,50.831798608258765],[-126.17946179461794,50.853750112767244],[-126.1830618306183,50.867258730926295],[-126.19746197461974,50.862192999116644],[-126.21546215462155,50.84868438095759],[-126.23346233462334,50.84361864914794],[-126.2370623706237,50.84699580368772],[-126.24066240662407,50.853750112767244],[-126.24066240662407,50.86050442184677],[-126.24066240662407,50.86388157638655],[-126.2550625506255,50.86388157638655],[-126.26946269462695,50.86388157638655],[-126.31266312663126,50.85712726730699],[-126.3630636306363,50.85543869003712],[-126.38826388263882,50.85206153549734],[-126.46026460264602,50.82166714463946],[-126.4890648906489,50.81660141282981],[-126.51066510665106,50.82504429917924],[-126.52146521465215,50.831798608258765],[-126.54666546665467,50.836864340068416],[-126.55746557465574,50.84361864914794],[-126.5610656106561,50.853750112767244],[-126.55746557465574,50.86894730819617],[-126.5610656106561,50.8773901945456],[-126.55026550265502,50.889210235434774],[-126.49986499864998,50.92298178083243],[-126.4890648906489,50.921293203562556],[-126.47826478264783,50.916227471752904],[-126.46746467464675,50.91116173994325],[-126.35946359463594,50.90440743086373],[-126.31986319863199,50.914538894483],[-126.22266222662226,50.90440743086373],[-126.20466204662046,50.90947316267338],[-126.1830618306183,50.92298178083243],[-126.17226172261722,50.93817897626138],[-126.17946179461794,50.95337617169031],[-126.19026190261903,50.94999901715056],[-126.22626226262263,50.93142466718183],[-126.24426244262443,50.92804751264208],[-126.40626406264062,50.93986755353126],[-126.46026460264602,50.951687594420434],[-126.48186481864818,50.965196212579485],[-126.5070650706507,51.01078779886632],[-126.51426514265142,51.063133694232704],[-126.51426514265142,51.076642312391755],[-126.52146521465215,51.076642312391755],[-126.54306543065431,51.03105072610492],[-126.55386553865539,51.005722067056666],[-126.54666546665467,50.983770562548216],[-126.5250652506525,50.95506474896021],[-126.53586535865358,50.94155613080113],[-126.55386553865539,50.93142466718183],[-126.5610656106561,50.914538894483],[-126.57546575465754,50.9060960081336],[-126.67266672666727,50.8773901945456],[-126.6978669786698,50.8773901945456],[-126.71946719467195,50.88245592635525],[-126.74826748267483,50.89089881270465],[-126.74826748267483,50.897653121784174],[-126.75546755467555,50.90440743086373],[-126.76986769867699,50.90947316267338],[-126.80226802268022,50.91285031721313],[-126.81666816668167,50.91791604902278],[-126.83466834668346,50.93480182172161],[-126.84546845468455,50.943244708071006],[-126.85986859868598,50.943244708071006],[-126.87066870668707,50.93817897626138],[-126.87786877868778,50.93142466718183],[-126.88866888668886,50.91960462629265],[-126.89226892268923,50.91285031721313],[-126.89946899468995,50.9060960081336],[-127.02547025470255,50.9060960081336],[-127.05067050670507,50.914538894483],[-127.0650706507065,50.921293203562556],[-127.07947079470794,50.92635893537221],[-127.11187111871118,50.93142466718183],[-127.1370713707137,50.93142466718183],[-127.15147151471515,50.93311324445173],[-127.16587165871658,50.93986755353126],[-127.17307173071731,50.92635893537221],[-127.1550715507155,50.914538894483],[-127.12987129871298,50.907784585403476],[-127.08307083070831,50.902718853593825],[-127.03267032670327,50.8875216581649],[-127.00747007470075,50.88414450362512],[-126.95346953469534,50.88414450362512],[-126.9390693906939,50.880767349085346],[-126.92466924669247,50.8773901945456],[-126.92106921069211,50.872324462735946],[-126.93546935469354,50.87063588546607],[-126.95706957069571,50.86388157638655],[-127.00027000270003,50.831798608258765],[-127.02187021870219,50.82166714463946],[-127.04347043470435,50.82335572190934],[-127.06867068670687,50.83011003098889],[-127.12987129871298,50.86557015365642],[-127.21267212672126,50.8773901945456],[-127.22347223472235,50.880767349085346],[-127.24867248672487,50.897653121784174],[-127.25587255872559,50.91791604902278],[-127.2630726307263,50.91791604902278],[-127.27747277472776,50.91285031721313],[-127.28467284672845,50.91116173994325],[-127.30987309873098,50.91285031721313],[-127.3278732787328,50.916227471752904],[-127.42867428674288,50.943244708071006],[-127.44667446674467,50.95337617169031],[-127.42507425074251,50.96350763530961],[-127.41787417874178,50.97026194438914],[-127.41427414274142,50.97701625346866],[-127.42507425074251,50.983770562548216],[-127.43227432274323,50.987147717087964],[-127.4430744307443,50.98883629435784],[-127.4538745387454,50.987147717087964],[-127.44667446674467,50.987147717087964],[-127.47187471874719,50.983770562548216],[-127.50787507875079,50.99052487162774],[-127.52947529475296,51.00403348978679],[-127.5330753307533,51.01754210794587],[-127.51867518675186,51.041182189724225],[-127.51147511475114,51.071576580582104],[-127.50067500675007,51.09521666236046],[-127.48267482674827,51.103659548709885],[-127.48267482674827,51.11041385778941],[-127.50427504275044,51.12054532140871],[-127.52587525875259,51.117168166868936],[-127.55467554675548,51.108725280519536],[-127.63387633876339,51.09690523963033],[-127.66267662676626,51.09690523963033],[-127.68787687876878,51.11041385778941],[-127.69147691476914,51.12898820775811],[-127.77787777877779,51.16782548496542],[-127.78147781477814,51.18639983493412],[-127.79227792277922,51.1982198758233],[-127.79227792277922,51.2083513394426],[-127.78867788677886,51.22017138033178],[-127.78867788677886,51.23367999849086],[-127.77067770677706,51.24043430757038],[-127.75267752677527,51.24887719391978],[-127.73467734677347,51.25732008026921],[-127.62667626676267,51.27589443023791],[-127.60867608676087,51.286025893857214],[-127.57267572675727,51.30122308928614],[-127.41427414274142,51.28940304839696],[-127.4070740707407,51.28771447112709],[-127.3890738907389,51.277583007507786],[-127.37827378273784,51.27589443023791],[-127.21987219872199,51.28940304839696],[-127.18027180271802,51.30966597563557],[-127.14427144271443,51.31979743925487],[-127.1370713707137,51.32317459379462],[-127.12627126271263,51.33837178922357],[-127.1190711907119,51.36032329373205],[-127.11547115471154,51.38227479824053],[-127.1190711907119,51.39916057093936],[-127.13347133471335,51.38565195278028],[-127.16587165871658,51.3451260983031],[-127.17667176671767,51.3366832119537],[-127.2018720187202,51.33161748014405],[-127.25587255872559,51.30966597563557],[-127.2810728107281,51.30291166655604],[-127.5150751507515,51.31642028471509],[-127.5150751507515,51.32317459379462],[-127.49347493474934,51.33161748014405],[-127.47187471874719,51.34343752103322],[-127.46467464674646,51.353568984652526],[-127.48627486274862,51.356946139192274],[-127.5150751507515,51.353568984652526],[-127.56187561875618,51.33330605741392],[-127.59067590675906,51.329928902874144],[-127.64827648276483,51.3366832119537],[-127.68067680676808,51.3366832119537],[-127.70227702277023,51.326551748334396],[-127.72027720277202,51.321486016524744],[-127.75267752677527,51.321486016524744],[-127.77787777877779,51.329928902874144],[-127.78867788677886,51.35019183011275],[-127.77787777877779,51.3653890255417],[-127.75627756277562,51.37889764370075],[-127.72747727477275,51.38734053005018],[-127.7058770587706,51.39071768458993],[-127.68067680676808,51.392406261859804],[-127.66267662676626,51.397471993669456],[-127.61947619476194,51.44306357995629],[-127.60507605076052,51.45657219811537],[-127.58347583475835,51.46501508446477],[-127.55827558275583,51.46670366173467],[-127.55107551075511,51.47008081627442],[-127.55107551075511,51.478523702623846],[-127.55467554675548,51.48865516624312],[-127.55107551075511,51.49709805259255],[-127.54387543875438,51.503852361672074],[-127.5330753307533,51.508918093481725],[-127.52227522275223,51.51567240256125],[-127.5150751507515,51.52749244345043],[-127.5150751507515,51.549443947958906],[-127.51867518675186,51.56970687519751],[-127.52227522275223,51.58828122516621],[-127.51147511475114,51.606855575134915],[-127.49347493474934,51.620364193293995],[-127.46827468274682,51.628807079643394],[-127.3170731707317,51.655824315961524],[-127.04347043470435,51.669332934120575],[-126.70866708667086,51.64400427507235],[-126.67626676266762,51.64569285234222],[-126.65466654666547,51.655824315961524],[-126.6510665106651,51.65920147050127],[-126.6510665106651,51.664267202310924],[-126.6510665106651,51.6760872432001],[-126.64746647466475,51.67946439773988],[-126.62946629466295,51.67777582047],[-126.62586625866258,51.67777582047],[-126.61866618666187,51.6862187068194],[-126.6150661506615,51.69803874770858],[-126.61146611466114,51.70817021132788],[-126.60426604266043,51.71323594313753],[-126.63666636666366,51.762204683964114],[-126.63666636666366,51.77402472485332],[-126.64746647466475,51.78415618847259],[-126.65826658266582,51.79259907482202],[-126.66546665466655,51.802730538441324],[-126.66546665466655,51.794287652091896],[-126.66186661866618,51.79091049755215],[-126.65826658266582,51.78753334301237],[-126.66906669066691,51.76558183850389],[-126.66186661866618,51.75038464307494],[-126.6510665106651,51.73518744764601],[-126.64386643866439,51.71999025221706],[-126.64746647466475,51.70648163405801],[-126.65826658266582,51.70141590224836],[-126.66546665466655,51.69803874770858],[-126.67986679866799,51.69297301589893],[-126.6978669786698,51.66595577958083],[-127.09387093870939,51.704793056788105],[-127.25947259472593,51.6862187068194],[-127.28467284672845,51.691284438629054],[-127.3278732787328,51.71154736586766],[-127.34947349473495,51.71323594313753],[-127.35307353073532,51.68790728408928],[-127.38547385473854,51.67439866593023],[-127.42147421474215,51.67102151139045],[-127.44667446674467,51.6862187068194],[-127.43947439474394,51.68790728408928],[-127.43587435874358,51.691284438629054],[-127.43587435874358,51.69466159316883],[-127.43947439474394,51.69297301589893],[-127.43227432274323,51.69803874770858],[-127.42867428674288,51.70141590224836],[-127.42507425074251,51.70648163405801],[-127.43227432274323,51.70648163405801],[-127.43587435874358,51.745318911265315],[-127.43227432274323,51.75545037488459],[-127.42147421474215,51.76051610669424],[-127.38547385473854,51.767270415773766],[-127.37467374673747,51.76895899304367],[-127.36387363873638,51.780779033932845],[-127.33867338673386,51.856765011077556],[-127.34947349473495,51.870273629236635],[-127.36387363873638,51.856765011077556],[-127.37467374673747,51.838190661108854],[-127.38547385473854,51.816239156600375],[-127.39267392673926,51.79935338390155],[-127.39267392673926,51.78415618847259],[-127.39987399873999,51.77740187939307],[-127.4430744307443,51.775713302123194],[-127.45027450274503,51.77740187939307],[-127.4538745387454,51.77402472485332],[-127.4610746107461,51.762204683964114],[-127.47547475474755,51.71323594313753],[-127.49347493474934,51.69803874770858],[-127.52227522275223,51.70310447951823],[-127.55107551075511,51.71154736586766],[-127.58347583475835,51.71154736586766],[-127.61587615876158,51.70817021132788],[-127.64467644676446,51.69972732497848],[-127.64467644676446,51.69297301589893],[-127.61947619476194,51.68959586135918],[-127.57267572675727,51.6760872432001],[-127.55107551075511,51.67271008866035],[-127.50067500675007,51.6760872432001],[-127.47547475474755,51.67439866593023],[-127.46827468274682,51.66257862504105],[-127.47907479074792,51.65075858415187],[-127.54387543875438,51.633872811453045],[-127.55827558275583,51.61867561602409],[-127.57627576275763,51.58828122516621],[-127.59067590675906,51.576461184277036],[-127.59067590675906,51.56970687519751],[-127.57267572675727,51.557886834308334],[-127.56547565475654,51.544378216149255],[-127.57267572675727,51.52749244345043],[-127.62307623076231,51.478523702623846],[-127.64467644676446,51.46501508446477],[-127.66627666276662,51.459949352655116],[-127.7130771307713,51.45826077538524],[-127.72747727477275,51.459949352655116],[-127.75627756277562,51.48865516624312],[-127.75987759877599,51.49372089805277],[-127.74547745477454,51.50554093894195],[-127.68067680676808,51.50554093894195],[-127.6590765907659,51.508918093481725],[-127.6590765907659,51.513983825291376],[-127.66987669876698,51.51904955710103],[-127.68787687876878,51.52918102072033],[-127.69867698676987,51.53424675252995],[-127.71667716677166,51.535935329799855],[-127.79227792277922,51.52749244345043],[-127.79587795877958,51.52749244345043],[-127.80307803078031,51.53762390706973],[-127.79947799477995,51.544378216149255],[-127.79227792277922,51.549443947958906],[-127.78867788677886,51.55619825703843],[-127.79227792277922,51.56801829792761],[-127.79947799477995,51.57814976154691],[-127.80307803078031,51.58828122516621],[-127.80307803078031,51.60347842059517],[-127.82467824678247,51.598412688785515],[-127.83187831878318,51.60854415240479],[-127.83187831878318,51.62711850237352],[-127.8390783907839,51.64569285234222],[-127.84987849878499,51.6575128932314],[-127.86427864278642,51.664267202310924],[-127.87507875078751,51.67271008866035],[-127.87867878678787,51.696350170438706],[-127.87867878678787,51.71492452040741],[-127.87507875078751,51.72167882948693],[-127.86787867878678,51.73012171583636],[-127.86427864278642,51.73687602491589],[-127.86787867878678,51.74363033399541],[-127.87507875078751,51.75038464307494],[-127.87867878678787,51.758827529424366],[-127.87867878678787,51.785844765742496],[-127.87867878678787,51.79259907482202],[-127.88947889478894,51.80610769298107],[-127.8930789307893,51.816239156600375],[-127.88947889478894,51.821304888410026],[-127.87867878678787,51.843256392918505],[-127.87867878678787,51.84494497018838],[-127.88227882278822,51.856765011077556],[-127.88587885878859,51.86014216561733],[-127.88227882278822,51.865207897426984],[-127.87867878678787,51.86858505196673],[-127.87147871478714,51.870273629236635],[-127.86787867878678,51.88884797920534],[-127.86067860678607,51.905733751904165],[-127.84987849878499,51.92093094733309],[-127.81747817478174,51.92937383368252],[-127.78147781477814,51.949636760921095],[-127.7670776707767,51.95301391546087],[-127.7130771307713,51.949636760921095],[-127.68427684276843,51.949636760921095],[-127.66627666276662,51.9597682245404],[-127.67347673476735,51.96652253361992],[-127.6590765907659,51.99185119266818],[-127.64827648276483,52.05770570619359],[-127.63747637476374,52.08303436524184],[-127.61587615876158,52.1066744470202],[-127.58347583475835,52.128625951528676],[-127.54747547475475,52.14382314695763],[-127.5150751507515,52.15226603330703],[-127.49347493474934,52.1539546105769],[-127.47547475474755,52.150577456037155],[-127.46827468274682,52.14044599241785],[-127.46827468274682,52.1252487969889],[-127.47547475474755,52.1066744470202],[-127.48987489874898,52.0982315606708],[-127.50787507875079,52.096542983400894],[-127.56547565475654,52.09992013794067],[-127.57627576275763,52.093165828861146],[-127.62307623076231,52.02899989260558],[-127.59067590675906,52.05095139711406],[-127.56187561875618,52.07796863343219],[-127.55107551075511,52.08303436524184],[-127.46467464674646,52.08303436524184],[-127.43227432274323,52.088100097051495],[-127.4070740707407,52.10498586975032],[-127.43947439474394,52.150577456037155],[-127.4430744307443,52.159020342386555],[-127.45027450274503,52.16239749692633],[-127.4538745387454,52.172528960545634],[-127.45027450274503,52.18266042416491],[-127.43947439474394,52.186037578704685],[-127.41427414274142,52.191103310514336],[-127.39987399873999,52.19616904232399],[-127.39267392673926,52.20292335140351],[-127.38187381873819,52.21980912410234],[-127.35667356673567,52.22994058772164],[-127.28467284672845,52.23838347407104],[-127.2630726307263,52.24682636042047],[-127.2450724507245,52.25864640130965],[-127.18747187471874,52.30930371940613],[-127.17307173071731,52.31605802848566],[-127.14787147871479,52.319435183025405],[-127.09387093870939,52.310992296676005],[-127.04347043470435,52.30930371940613],[-127.01827018270183,52.305926564866354],[-126.99666996669967,52.297483678516954],[-126.95706957069571,52.26877786492895],[-126.94266942669427,52.253580669499996],[-126.93546935469354,52.235006319531294],[-126.94626946269463,52.213054815022815],[-126.90666906669067,52.17928326962516],[-126.7770677706777,52.0982315606708],[-126.75546755467555,52.07628005616232],[-126.7410674106741,52.06952574708279],[-126.71226712267122,52.04757424257431],[-126.6978669786698,52.03575420168514],[-126.67986679866799,52.00029407901758],[-126.67266672666727,51.98678546085853],[-126.67266672666727,52.012114119906755],[-126.66906669066691,52.030688469875486],[-126.67266672666727,52.04757424257431],[-126.6870668706687,52.06277143800324],[-126.6978669786698,52.06783716981289],[-126.70866708667086,52.07121432435267],[-126.71586715867159,52.07628005616232],[-126.72306723067231,52.09485440613102],[-126.7410674106741,52.11849448790937],[-126.75186751867518,52.128625951528676],[-126.79146791467915,52.1539546105769],[-126.8850688506885,52.19448046505411],[-126.91386913869138,52.226563433181866],[-126.9030690306903,52.24513778315057],[-126.9030690306903,52.25864640130965],[-126.91026910269102,52.26877786492895],[-126.92826928269282,52.29410652397718],[-126.9390693906939,52.305926564866354],[-126.9390693906939,52.319435183025405],[-126.92466924669247,52.33632095572423],[-126.91746917469175,52.33969811026401],[-126.8850688506885,52.34476384207366],[-126.88146881468815,52.34814099661344],[-126.87786877868778,52.35658388296284],[-126.87426874268743,52.35827246023271],[-126.85626856268563,52.35658388296284],[-126.8130681306813,52.368403923852014],[-126.77346773467735,52.37178107839179],[-126.73386733867338,52.37178107839179],[-126.75186751867518,52.39373258290027],[-126.78426784267842,52.39710973744002],[-126.91386913869138,52.37178107839179],[-126.94266942669427,52.36333819204236],[-126.96786967869679,52.34982957388331],[-127.00387003870038,52.33969811026401],[-127.03987039870398,52.338009532994135],[-127.1190711907119,52.34982957388331],[-127.12627126271263,52.351518151153186],[-127.14427144271443,52.34982957388331],[-127.15147151471515,52.34982957388331],[-127.15867158671587,52.35489530569296],[-127.16227162271622,52.36164961477249],[-127.16227162271622,52.36671534658214],[-127.16587165871658,52.37178107839179],[-127.1910719107191,52.38866685109062],[-127.19467194671947,52.39879831470989],[-127.18027180271802,52.41230693286897],[-127.19827198271983,52.4393241691871],[-127.2090720907209,52.44607847826663],[-127.21987219872199,52.44945563280638],[-127.22347223472235,52.45620994188593],[-127.23427234272341,52.50855583725229],[-127.22707227072272,52.52206445541134],[-127.1910719107191,52.55414742353912],[-127.16947169471695,52.56765604169817],[-127.14787147871479,52.57947608258735],[-127.10827108271083,52.58960754620665],[-127.0758707587076,52.61493620525488],[-127.05427054270542,52.62506766887418],[-127.00387003870038,52.63351055522361],[-126.98226982269823,52.645330596112785],[-126.97506975069751,52.66897067789114],[-126.96426964269642,52.68585645058997],[-126.93186931869319,52.7128736869081],[-126.92466924669247,52.734825191416576],[-126.93186931869319,52.75339954138528],[-126.95346953469534,52.78885966405281],[-126.96786967869679,52.82938551852999],[-126.9930699306993,52.84458271395894],[-127.04347043470435,52.86484564119752],[-127.05067050670507,52.87159995027707],[-127.05787057870579,52.8783542593566],[-127.0650706507065,52.88341999116625],[-127.0758707587076,52.885108568436124],[-127.06147061470614,52.859779909387896],[-127.01827018270183,52.814188323101064],[-127.00027000270003,52.78210535497328],[-127.00027000270003,52.77535104589376],[-127.00027000270003,52.751710964115404],[-126.99666996669967,52.74664523230575],[-126.98226982269823,52.73313661414667],[-126.97866978669786,52.72469372779727],[-126.98586985869858,52.711185109638194],[-127.05427054270542,52.653773482462185],[-127.15147151471515,52.61155905071513],[-127.21267212672126,52.5744103507777],[-127.22347223472235,52.5659674644283],[-127.24147241472414,52.560901732618646],[-127.25947259472593,52.55245884626922],[-127.25587255872559,52.53557307357042],[-127.27027270272703,52.528818764490865],[-127.27747277472776,52.52206445541134],[-127.2810728107281,52.515310146331814],[-127.2810728107281,52.50349010544264],[-127.27387273872739,52.49504721909321],[-127.26667266672666,52.48998148728356],[-127.2630726307263,52.484915755473935],[-127.27027270272703,52.46971856004498],[-127.28467284672845,52.45958709642568],[-127.4538745387454,52.41230693286897],[-127.47187471874719,52.38866685109062],[-127.49347493474934,52.35827246023271],[-127.54387543875438,52.341386687533884],[-127.59067590675906,52.33125522391461],[-127.61227612276122,52.319435183025405],[-127.61587615876158,52.29917225578683],[-127.63027630276304,52.29579510124705],[-127.65187651876519,52.3008608330567],[-127.67347673476735,52.30423798759648],[-127.69147691476914,52.29579510124705],[-127.70947709477095,52.283975060357875],[-127.7310773107731,52.275532174008475],[-127.75627756277562,52.282286483088],[-127.74907749077491,52.2924179467073],[-127.74907749077491,52.31268087394588],[-127.74547745477454,52.319435183025405],[-127.73467734677347,52.32956664664471],[-127.7130771307713,52.35827246023271],[-127.73827738277382,52.35489530569296],[-127.75627756277562,52.33969811026401],[-127.78147781477814,52.30423798759648],[-127.79227792277922,52.28735221489765],[-127.79587795877958,52.275532174008475],[-127.79587795877958,52.26540071038917],[-127.79947799477995,52.25695782403977],[-127.81027810278103,52.25020351496022],[-127.8210782107821,52.24513778315057],[-127.82827828278283,52.240072051340945],[-127.84627846278462,52.22487485591199],[-127.86067860678607,52.216431969562564],[-127.87147871478714,52.21980912410234],[-127.88587885878859,52.240072051340945],[-127.88587885878859,52.25189209223012],[-127.88587885878859,52.26540071038917],[-127.88947889478894,52.27722075127835],[-127.91467914679146,52.28566363762778],[-127.92187921879218,52.29410652397718],[-127.92907929079291,52.30423798759648],[-127.93267932679326,52.31605802848566],[-127.92187921879218,52.32281233756518],[-127.91827918279182,52.33125522391461],[-127.91467914679146,52.33969811026401],[-127.9110791107911,52.34814099661344],[-127.89667896678966,52.35489530569296],[-127.87147871478714,52.35489530569296],[-127.8570785707857,52.35827246023271],[-127.84627846278462,52.37178107839179],[-127.8570785707857,52.38528969655084],[-127.8930789307893,52.41230693286897],[-127.91467914679146,52.44101274645698],[-127.91827918279182,52.44945563280638],[-127.91467914679146,52.46465282823533],[-127.9038790387904,52.47309571458476],[-127.8930789307893,52.479850023664284],[-127.88587885878859,52.48829291001368],[-127.87867878678787,52.49504721909321],[-127.87147871478714,52.50349010544264],[-127.87507875078751,52.51193299179204],[-127.88947889478894,52.515310146331814],[-127.89667896678966,52.51193299179204],[-127.90747907479074,52.49673579636311],[-127.91827918279182,52.48829291001368],[-127.91467914679146,52.479850023664284],[-127.91827918279182,52.471407137314856],[-127.92187921879218,52.45958709642568],[-127.92547925479255,52.44607847826663],[-127.92547925479255,52.43256986010755],[-127.91827918279182,52.4275041282979],[-127.90747907479074,52.42074981921837],[-127.90027900279003,52.40555262378945],[-127.9038790387904,52.38528969655084],[-127.92187921879218,52.36164961477249],[-127.96867968679686,52.32281233756518],[-128.0010800108001,52.33632095572423],[-128.01548015480154,52.346452419343535],[-128.02628026280263,52.37515823293154],[-128.04068040680406,52.38528969655084],[-128.05148051480515,52.39373258290027],[-128.0622806228062,52.40555262378945],[-128.0550805508055,52.41230693286897],[-128.06588065880658,52.44945563280638],[-128.05148051480515,52.484915755473935],[-128.02268022680227,52.51193299179204],[-127.9830798307983,52.52206445541134],[-127.97227972279723,52.51868730087159],[-127.96147961479615,52.51193299179204],[-127.95067950679507,52.50517868271251],[-127.9470794707947,52.50180152817276],[-127.93267932679326,52.50517868271251],[-127.93267932679326,52.515310146331814],[-127.93987939879398,52.52375303268121],[-127.93987939879398,52.528818764490865],[-127.92907929079291,52.53557307357042],[-127.90747907479074,52.53895022811017],[-127.90027900279003,52.542327382649944],[-127.8930789307893,52.550770268999344],[-127.88587885878859,52.56259030988852],[-127.87867878678787,52.584541814397],[-127.89667896678966,52.577787505317474],[-127.93267932679326,52.560901732618646],[-128.029880298803,52.547393114459595],[-128.04788047880479,52.53895022811017],[-128.0622806228062,52.52375303268121],[-128.06948069480694,52.51699872360169],[-128.08028080280803,52.515310146331814],[-128.0910809108091,52.51362156906194],[-128.09828098280983,52.50855583725229],[-128.1018810188102,52.50180152817276],[-128.10548105481055,52.49504721909321],[-128.15228152281523,52.43256986010755],[-128.1558815588156,52.42581555102802],[-128.15948159481593,52.41399551013885],[-128.16668166681666,52.40555262378945],[-128.17388173881739,52.400486891979796],[-128.18828188281884,52.39373258290027],[-128.19548195481954,52.38866685109062],[-128.23508235082352,52.32618949210496],[-128.2818828188282,52.283975060357875],[-128.29628296282962,52.275532174008475],[-128.31068310683105,52.275532174008475],[-128.32148321483214,52.28059790581813],[-128.33228332283323,52.28566363762778],[-128.33948339483396,52.289040792167526],[-128.36828368283682,52.289040792167526],[-128.3790837908379,52.2924179467073],[-128.39348393483934,52.29579510124705],[-128.3790837908379,52.30930371940613],[-128.36468364683645,52.31774660575553],[-128.32868328683287,52.32956664664471],[-128.33948339483396,52.34814099661344],[-128.33948339483396,52.368403923852014],[-128.32868328683287,52.386978273820716],[-128.31068310683105,52.39879831470989],[-128.29988299883,52.40217546924967],[-128.28908289082892,52.40217546924967],[-128.2818828188282,52.400486891979796],[-128.2710827108271,52.39879831470989],[-128.260282602826,52.40217546924967],[-128.25668256682567,52.4106183555991],[-128.25668256682567,52.42074981921837],[-128.2530825308253,52.4291927055678],[-128.23868238682388,52.44270132372685],[-128.2278822788228,52.46127567369555],[-128.22068220682206,52.479850023664284],[-128.23508235082352,52.50517868271251],[-128.23508235082352,52.525441609951116],[-128.23508235082352,52.528818764490865],[-128.24228242282422,52.55921315534877],[-128.24228242282422,52.57103319623795],[-128.23148231482315,52.587918968936776],[-128.19188191881918,52.63857628703326],[-128.19188191881918,52.64701917338266],[-128.19188191881918,52.65715063700196],[-128.18828188281884,52.667282100621264],[-128.18468184681848,52.675724986970664],[-128.1558815588156,52.69598791420927],[-128.15228152281523,52.70443080055867],[-128.15228152281523,52.71456226417797],[-128.14868148681487,52.721316573257496],[-128.1450814508145,52.72638230506715],[-128.13068130681307,52.743268077765975],[-128.1270812708127,52.74833380957563],[-128.1270812708127,52.75339954138528],[-128.12348123481235,52.765219582274455],[-128.1270812708127,52.78548250951303],[-128.1378813788138,52.82263120945046],[-128.1378813788138,52.84458271395894],[-128.13068130681307,52.87328852754695],[-128.1090810908109,52.89186287751565],[-128.07668076680767,52.90199434113495],[-128.03708037080372,52.9070600729446],[-128.029880298803,52.91043722748435],[-128.029880298803,52.917191536563905],[-128.03708037080372,52.922257268373556],[-128.04068040680406,52.92394584564343],[-128.10548105481055,52.912125804754254],[-128.11988119881198,52.91381438202413],[-128.13068130681307,52.92732300018318],[-128.1378813788138,52.92732300018318],[-128.14148141481414,52.9070600729446],[-128.15228152281523,52.885108568436124],[-128.16668166681666,52.863157063927645],[-128.1810818108181,52.85133702303847],[-128.21348213482133,52.83107409579986],[-128.22428224282243,52.82094263218059],[-128.23148231482315,52.814188323101064],[-128.23868238682388,52.80743401402151],[-128.24948249482495,52.80236828221186],[-128.27468274682747,52.79899112767211],[-128.3070830708307,52.80236828221186],[-128.37188371883718,52.82094263218059],[-128.43308433084331,52.82431978672034],[-128.44388443884438,52.827696941260115],[-128.4510845108451,52.85133702303847],[-128.45828458284583,52.85809133211799],[-128.4690846908469,52.86146848665777],[-128.47628476284763,52.868222795737296],[-128.49788497884978,52.895240032055426],[-128.49788497884978,52.898617186595175],[-128.49428494284942,52.90874865021448],[-128.49788497884978,52.92901157745308],[-128.50868508685087,52.96447170012061],[-128.50868508685087,52.98473462735919],[-128.51948519485194,53.0252604818364],[-128.5230852308523,53.04721198634485],[-128.5230852308523,53.0522777181545],[-128.5338853388534,53.06916349085333],[-128.53748537485376,53.080983531742504],[-128.53028530285303,53.08942641809193],[-128.51948519485194,53.09280357263168],[-128.50868508685087,53.09449214990158],[-128.49428494284942,53.09786930444133],[-128.5122851228512,53.108000768060634],[-128.5338853388534,53.10631219079076],[-128.54828548285482,53.10968934533051],[-128.55548555485555,53.12826369529924],[-128.54828548285482,53.13670658164864],[-128.49788497884978,53.14177231345829],[-128.479884798848,53.14514946799807],[-128.49788497884978,53.15021519980772],[-128.55908559085591,53.14514946799807],[-128.5770857708577,53.15021519980772],[-128.59148591485916,53.162035240696895],[-128.6490864908649,53.22282402241265],[-128.65268652686527,53.23126690876208],[-128.65628656286563,53.23970979511148],[-128.66348663486633,53.24139837238138],[-128.6670866708667,53.23970979511148],[-128.67428674286742,53.23464406330183],[-128.67068670686706,53.2278897542223],[-128.6670866708667,53.217758290603],[-128.659886598866,53.2008725179042],[-128.68148681486815,53.19242963155477],[-128.69948699486994,53.197495363364425],[-128.80028800288002,53.25659556781031],[-128.81468814688145,53.26166129961996],[-128.83268832688327,53.26672703142961],[-128.85068850688506,53.27854707231879],[-128.87588875888758,53.30556430863692],[-128.8830888308883,53.325827235875494],[-128.87588875888758,53.344401585844224],[-128.86148861488616,53.36128735854305],[-128.84348843488436,53.371418822162326],[-128.87588875888758,53.371418822162326],[-128.88668886688868,53.37648455397198],[-128.8830888308883,53.388304594861154],[-128.87228872288722,53.40012463575036],[-128.87588875888758,53.406878944829884],[-128.8830888308883,53.41363325390941],[-128.88668886688868,53.42714187206846],[-128.87948879488795,53.447404799307066],[-128.84348843488436,53.47104488108542],[-128.83268832688327,53.48793065378425],[-128.86148861488616,53.48961923105412],[-128.87588875888758,53.48624207651437],[-128.89028890288904,53.477799190164944],[-128.9010890108901,53.46597914927577],[-128.90828908289083,53.45922484019624],[-128.9190891908919,53.45922484019624],[-128.93348933489335,53.46766772654564],[-128.94788947889478,53.48624207651437],[-128.96228962289624,53.53352224007108],[-128.9730897308973,53.55716232184943],[-128.94428944289444,53.553785167309684],[-128.8938889388894,53.536899394610856],[-128.8650886508865,53.536899394610856],[-128.8470884708847,53.54703085823013],[-128.8290882908829,53.562228053659084],[-128.81108811088112,53.572359517278386],[-128.78948789487896,53.57067094000851],[-128.7750877508775,53.55547374457956],[-128.7570875708757,53.509882158292726],[-128.74988749887498,53.49468496286377],[-128.73908739087392,53.491307808324024],[-128.70668706687067,53.48117634470472],[-128.69588695886958,53.474422035625196],[-128.67428674286742,53.45415910838659],[-128.6670866708667,53.46091341746612],[-128.68148681486815,53.474422035625196],[-128.69228692286924,53.482864921974596],[-128.69228692286924,53.48793065378425],[-128.68508685086852,53.4929963855939],[-128.6670866708667,53.48961923105412],[-128.63828638286384,53.474422035625196],[-128.56268562685625,53.41869898571906],[-128.51948519485194,53.40181321302023],[-128.50868508685087,53.393370326670805],[-128.5050850508505,53.39168174940093],[-128.49788497884978,53.38661601759128],[-128.49428494284942,53.38155028578163],[-128.49788497884978,53.37817313124188],[-128.50148501485015,53.37648455397198],[-128.50148501485015,53.36973024489245],[-128.50148501485015,53.362975935812926],[-128.50148501485015,53.357910204003275],[-128.49428494284942,53.344401585844224],[-128.48708487084872,53.3460901631141],[-128.48348483484835,53.357910204003275],[-128.479884798848,53.38661601759128],[-128.48348483484835,53.398436058480456],[-128.49068490684908,53.40519036755998],[-128.50868508685087,53.406878944829884],[-128.50868508685087,53.411944676639536],[-128.49788497884978,53.41701040844919],[-128.47628476284763,53.42883044933836],[-128.4690846908469,53.433896181147986],[-128.3790837908379,53.447404799307066],[-128.36468364683645,53.45922484019624],[-128.35028350283503,53.48117634470472],[-128.3070830708307,53.46091341746612],[-128.2530825308253,53.45247053111672],[-128.14868148681487,53.45415910838659],[-128.1270812708127,53.450781953846814],[-128.10548105481055,53.442339067497414],[-128.0910809108091,53.43051902660824],[-128.08028080280803,53.411944676639536],[-128.0730807308073,53.40350179029011],[-128.06948069480694,53.398436058480456],[-128.0730807308073,53.39168174940093],[-128.08028080280803,53.38323886305153],[-128.0838808388084,53.37817313124188],[-128.08748087480876,53.36973024489245],[-128.10548105481055,53.3376472767647],[-128.06948069480694,53.3646645130828],[-128.05148051480515,53.37310739943223],[-128.03348033480336,53.36804166762258],[-128.01548015480154,53.35959878127315],[-127.97587975879759,53.34271300857432],[-127.96147961479615,53.330892967685145],[-127.95787957879578,53.31907292679597],[-127.95427954279543,53.265038454159736],[-127.94347943479434,53.25321841327056],[-127.87147871478714,53.2278897542223],[-127.87867878678787,53.24984125873078],[-127.89667896678966,53.26166129961996],[-127.91827918279182,53.27179276323926],[-127.93267932679326,53.28867853593809],[-127.93267932679326,53.30218715409714],[-127.92907929079291,53.32413865860562],[-127.93267932679326,53.3376472767647],[-127.94347943479434,53.344401585844224],[-127.97947979479795,53.3562216267334],[-127.99027990279902,53.357910204003275],[-128.0010800108001,53.362975935812926],[-128.029880298803,53.38155028578163],[-128.03708037080372,53.388304594861154],[-128.04068040680406,53.39168174940093],[-128.05868058680585,53.41869898571906],[-128.06588065880658,53.42545329479859],[-128.0838808388084,53.447404799307066],[-128.09468094680946,53.45415910838659],[-128.1018810188102,53.45753626292637],[-128.11268112681125,53.46597914927577],[-128.11628116281162,53.47611061289507],[-128.11268112681125,53.48793065378425],[-128.13428134281344,53.48455349924447],[-128.1990819908199,53.48793065378425],[-128.29988299883,53.48117634470472],[-128.34668346683466,53.49806211740355],[-128.37548375483755,53.5031278492132],[-128.38628386283864,53.491307808324024],[-128.389883898839,53.474422035625196],[-128.40428404284043,53.46091341746612],[-128.42228422284222,53.45247053111672],[-128.44028440284404,53.447404799307066],[-128.4510845108451,53.44571622203719],[-128.49068490684908,53.447404799307066],[-128.50148501485015,53.44402764476729],[-128.50868508685087,53.43896191295764],[-128.51588515885157,53.433896181147986],[-128.53028530285303,53.433896181147986],[-128.53748537485376,53.43896191295764],[-128.5518855188552,53.45753626292637],[-128.55908559085591,53.46091341746612],[-128.57348573485734,53.46260199473602],[-128.58428584285843,53.46597914927577],[-128.5950859508595,53.474422035625196],[-128.59868598685986,53.48455349924447],[-128.6130861308613,53.504816426483075],[-128.6418864188642,53.513259312832474],[-128.67428674286742,53.51663646737225],[-128.68868688686888,53.52001362191203],[-128.69228692286924,53.53352224007108],[-128.69948699486994,53.54703085823013],[-128.72828728287283,53.57067094000851],[-128.74988749887498,53.562228053659084],[-128.7642876428764,53.575736671818134],[-128.77868778687787,53.594311021786865],[-128.79308793087932,53.60444248540614],[-128.80028800288002,53.607819639945916],[-128.80748807488075,53.61457394902544],[-128.81468814688145,53.624705412644744],[-128.81828818288182,53.634836876264046],[-128.81468814688145,53.65003407169297],[-128.81108811088112,53.6584769580424],[-128.79668796687966,53.67198557620145],[-128.7750877508775,53.70406854432923],[-128.77148771487714,53.72095431702806],[-128.79308793087932,53.75979159423537],[-128.78948789487896,53.781743098743846],[-128.7750877508775,53.79862887144267],[-128.7570875708757,53.81044891233185],[-128.7318873188732,53.8155146441415],[-128.71028710287104,53.8155146441415],[-128.69228692286924,53.820580375951124],[-128.68868688686888,53.84084330318973],[-128.6778867788678,53.85941765315843],[-128.65628656286563,53.86279480769821],[-128.55908559085591,53.8425318804596],[-128.479884798848,53.83746614864995],[-128.47268472684726,53.84084330318973],[-128.48348483484835,53.85435192134878],[-128.50148501485015,53.86279480769821],[-128.51948519485194,53.86279480769821],[-128.54828548285482,53.85772907588856],[-128.57348573485734,53.861106230428334],[-128.61668616686165,53.87630342585726],[-128.64548645486454,53.88136915766691],[-128.65268652686527,53.888123466746435],[-128.66348663486633,53.89150062128621],[-128.67428674286742,53.88643488947656],[-128.68148681486815,53.88981204401634],[-128.68868688686888,53.89318919855609],[-128.69228692286924,53.89994350763561],[-128.69228692286924,53.906697816715166],[-128.68868688686888,53.910074971254915],[-128.68148681486815,53.91176354852482],[-128.6778867788678,53.91345212579469],[-128.67068670686706,53.93033789849352],[-128.63468634686348,53.9708637529707],[-128.6310863108631,53.977618062050226],[-128.6310863108631,53.98774952566953],[-128.6310863108631,54.004635298368356],[-128.62748627486275,54.013078184717756],[-128.61668616686165,54.01983249379731],[-128.59868598685986,54.029963957416584],[-128.62028620286202,54.031652534686486],[-128.65268652686527,54.01983249379731],[-128.68148681486815,54.00125814382858],[-128.69948699486994,53.98099521659],[-128.71748717487174,53.95735513481165],[-128.73548735487356,53.93371505303327],[-128.73908739087392,53.932026475763394],[-128.74628746287462,53.92527216668387],[-128.74988749887498,53.92020643487422],[-128.7642876428764,53.91345212579469],[-128.77148771487714,53.91345212579469],[-128.78228782287823,53.92020643487422],[-128.78948789487896,53.89318919855609],[-128.81468814688145,53.87799200312716],[-128.839888398884,53.866171962237985],[-128.86148861488616,53.83071183957043],[-128.93348933489335,53.776677366934194],[-128.929889298893,53.7952517169029],[-128.90828908289083,53.82733468503068],[-128.90468904689047,53.844220457729506],[-128.91548915489153,53.85772907588856],[-128.92628926289262,53.84590903499938],[-128.94788947889478,53.81044891233185],[-128.94788947889478,53.839154725919855],[-128.94428944289444,53.852663344078906],[-128.94068940689408,53.86448338496808],[-128.96588965889657,53.88981204401634],[-128.9838898388984,53.89825493036574],[-129.0090900909009,53.89994350763561],[-129.0090900909009,53.89318919855609],[-128.97668976689766,53.866171962237985],[-128.96588965889657,53.820580375951124],[-128.9730897308973,53.77836594420407],[-129.00189001890018,53.76148017150524],[-129.01989019890198,53.77498878966429],[-129.04869048690486,53.812137489601724],[-129.06309063090632,53.81044891233185],[-129.06309063090632,53.79187456236312],[-129.03429034290343,53.749660130616064],[-129.04509045090452,53.741217244266664],[-129.06669066690665,53.73952866699676],[-129.08829088290884,53.73108578064736],[-129.11349113491136,53.722642894297934],[-129.12789127891278,53.71082285340876],[-129.1350913509135,53.70237996705936],[-129.13869138691388,53.68887134890028],[-129.1458914589146,53.6770513080111],[-129.15669156691567,53.67198557620145],[-129.16749167491673,53.67198557620145],[-129.17829178291782,53.6669198443918],[-129.18909189091892,53.661854112582176],[-129.22869228692286,53.63314829899417],[-129.23949239492396,53.61963968083509],[-129.24309243092432,53.594311021786865],[-129.23949239492396,53.55209659003978],[-129.24309243092432,53.5301450855313],[-129.2610926109261,53.5217021991819],[-129.2610926109261,53.51663646737225],[-129.24309243092432,53.5115707355626],[-129.2358923589236,53.491307808324024],[-129.2358923589236,53.46766772654564],[-129.24309243092432,53.447404799307066],[-129.25029250292502,53.43051902660824],[-129.26469264692648,53.41025609936963],[-129.2790927909279,53.393370326670805],[-129.289892898929,53.384927440321405],[-129.33669336693367,53.39674748121058],[-129.59229592295924,53.572359517278386],[-129.6138961389614,53.57742524908804],[-129.67149671496713,53.61795110356522],[-129.67869678696786,53.62808256718452],[-129.68949689496895,53.6399026080737],[-129.72549725497254,53.67198557620145],[-129.74349743497436,53.68042846255088],[-129.74349743497436,53.687182771630404],[-129.73269732697327,53.68549419436053],[-129.72189721897217,53.68211703982075],[-129.70029700297002,53.67198557620145],[-129.71469714697147,53.69562565797983],[-129.73269732697327,53.705757121599106],[-129.75429754297542,53.71082285340876],[-129.77589775897758,53.72095431702806],[-129.7830978309783,53.72939720337746],[-129.80469804698046,53.754725862425715],[-129.8118981189812,53.75641443969559],[-129.83349833498335,53.754725862425715],[-129.84429844298444,53.754725862425715],[-129.85149851498514,53.75979159423537],[-129.88029880298802,53.78343167601372],[-129.91269912699127,53.79694029417277],[-129.91989919899197,53.803694603252325],[-129.9270992709927,53.812137489601724],[-129.9378993789938,53.83071183957043],[-129.94869948699488,53.83746614864995],[-129.95949959499595,53.8425318804596],[-129.99549995499956,53.85097476680903],[-129.97389973899737,53.866171962237985],[-129.96669966699667,53.87630342585726],[-129.9630996309963,53.88981204401634],[-129.970299702997,53.89150062128621],[-130.00630006300062,53.874614848587385],[-130.02070020700205,53.87630342585726],[-130.02790027900278,53.88474631220669],[-130.0531005310053,53.89825493036574],[-130.0639006390064,53.906697816715166],[-130.09270092700928,53.94046936211282],[-130.10350103501034,53.94722367119235],[-130.08550085500855,53.9708637529707],[-130.08550085500855,54.004635298368356],[-130.09270092700928,54.08062127551307],[-130.08550085500855,54.10088420275167],[-130.05670056700566,54.13972147995898],[-130.04950049500496,54.15660725265781],[-130.03870038700387,54.154918675387904],[-129.9810998109981,54.16167298446743],[-129.9630996309963,54.16673871627708],[-129.94869948699488,54.159984407197555],[-129.94509945099452,54.14985294357825],[-129.94509945099452,54.13972147995898],[-129.94149941499415,54.132967170879425],[-129.93069930699306,54.1262128617999],[-129.9090990909909,54.1177699754505],[-129.89829898298984,54.11270424364085],[-129.8730987309873,54.08568700732272],[-129.85149851498514,54.056981193734714],[-129.8478984789848,54.048538307385314],[-129.8478984789848,54.04178399830576],[-129.84429844298444,54.03671826649611],[-129.8370983709837,54.029963957416584],[-129.82989829898298,54.02489822560693],[-129.81909819098192,54.02489822560693],[-129.8118981189812,54.02489822560693],[-129.80469804698046,54.02320964833706],[-129.79749797497976,54.01814391652741],[-129.79029790297903,54.00632387563823],[-129.7830978309783,54.00294672109848],[-129.77589775897758,54.00125814382858],[-129.76149761497615,54.004635298368356],[-129.7578975789758,54.00294672109848],[-129.75429754297542,53.99619241201893],[-129.75069750697506,53.986060948399654],[-129.75069750697506,53.98099521659],[-129.73629736297363,53.964109443891175],[-129.7290972909729,53.95735513481165],[-129.71469714697147,53.95397798027187],[-129.72549725497254,53.972552330240575],[-129.73269732697327,53.99281525747918],[-129.74709747097472,54.00970103017801],[-129.7830978309783,54.021521071067184],[-129.82629826298262,54.05191546192506],[-129.8370983709837,54.06373550281424],[-129.8478984789848,54.07386696643354],[-129.85869858698587,54.09581847094202],[-129.8658986589866,54.10426135729142],[-129.89469894698948,54.124524284530025],[-129.89829898298984,54.12959001633968],[-129.90549905499054,54.14478721176863],[-129.92349923499233,54.15660725265781],[-129.93069930699306,54.16842729354698],[-129.9270992709927,54.187001643515686],[-129.91269912699127,54.20051026167474],[-129.88749887498875,54.21233030256391],[-129.85869858698587,54.21908461164347],[-129.8370983709837,54.222461766183216],[-129.80829808298083,54.22077318891334],[-129.7938979389794,54.217396034373564],[-129.76509765097651,54.20388741621451],[-129.75069750697506,54.20388741621451],[-129.72189721897217,54.20726457075426],[-129.63549635496355,54.181935911706034],[-129.61029610296103,54.18362448897591],[-129.58149581495815,54.19713310713499],[-129.56349563495635,54.21233030256391],[-129.55269552695526,54.21570745710369],[-129.5310953109531,54.222461766183216],[-129.50229502295022,54.23259322980252],[-129.49149491494916,54.235970384342295],[-129.4770947709477,54.23428180707239],[-129.49149491494916,54.25116757977122],[-129.51669516695168,54.24779042523147],[-129.56709567095672,54.22752749799287],[-129.57429574295742,54.22415034345309],[-129.58869588695887,54.20388741621451],[-129.5958959589596,54.20051026167474],[-129.62469624696246,54.20219883894464],[-129.76869768697688,54.235970384342295],[-129.82989829898298,54.24272469342182],[-129.88749887498875,54.23428180707239],[-129.95589955899558,54.21064172529404],[-129.97749977499774,54.20726457075426],[-129.98829988299883,54.20388741621451],[-130.009900099001,54.18531306624581],[-130.02070020700205,54.18024733443616],[-130.0639006390064,54.181935911706034],[-130.07830078300782,54.18024733443616],[-130.0891008910089,54.17518160262651],[-130.09990099901,54.16167298446743],[-130.11070110701107,54.159984407197555],[-130.1251012510125,54.16167298446743],[-130.13950139501395,54.16505013900721],[-130.15390153901538,54.173493025356635],[-130.1611016110161,54.18362448897591],[-130.17550175501754,54.195444529865085],[-130.27630276302762,54.20726457075426],[-130.27990279902798,54.214018879833816],[-130.28350283502834,54.230904652532644],[-130.2871028710287,54.23428180707239],[-130.29430294302944,54.23765896161217],[-130.28350283502834,54.24272469342182],[-130.22950229502294,54.25961046612065],[-130.19350193501936,54.2629876206604],[-130.20790207902078,54.271430507009825],[-130.22950229502294,54.279873393359225],[-130.24030240302403,54.28662770243875],[-130.24030240302403,54.29675916605805],[-130.24030240302403,54.311956361487006],[-130.2439024390244,54.32546497964606],[-130.25110251102512,54.33221928872558],[-130.25830258302582,54.34066217507501],[-130.24750247502476,54.38794233863172],[-130.25110251102512,54.40651668860045],[-130.25830258302582,54.391319493171494],[-130.26550265502655,54.37274514320279],[-130.27270272702725,54.35754794777384],[-130.2871028710287,54.35248221596419],[-130.30870308703086,54.347416484154536],[-130.34830348303484,54.333907865995485],[-130.37350373503733,54.33221928872558],[-130.42390423904237,54.342350752344885],[-130.44550445504456,54.34572790688466],[-130.45990459904598,54.34910506142441],[-130.4743047430474,54.35923652504371],[-130.48150481504814,54.374433720472666],[-130.4743047430474,54.391319493171494],[-130.48150481504814,54.40313953406067],[-130.48150481504814,54.418336729489624],[-130.4743047430474,54.43353392491855],[-130.4671046710467,54.44366538853785],[-130.44550445504456,54.453796852157154],[-130.39870398703988,54.453796852157154],[-130.38070380703806,54.46055116123668],[-130.42030420304204,54.48587982028491],[-130.43470434704346,54.502765592983735],[-130.4419044190442,54.52640567476212],[-130.43830438304383,54.54835717927057],[-130.43830438304383,54.55848864288987],[-130.4311043110431,54.5669315292393],[-130.41670416704167,54.57030868377905],[-130.40230402304024,54.565242951969395],[-130.38430384303842,54.565242951969395],[-130.38070380703806,54.5770629928586],[-130.39150391503915,54.585505879208],[-130.42030420304204,54.6040802291767],[-130.43830438304383,54.62434315641531],[-130.4311043110431,54.63278604276471],[-130.40590405904058,54.63109746549483],[-130.38430384303842,54.62265457914543],[-130.36270362703627,54.61252311552613],[-130.34470344703448,54.59732592009718],[-130.31950319503196,54.565242951969395],[-130.2871028710287,54.53822571565129],[-130.28350283502834,54.53315998384164],[-130.27630276302762,54.51965136568256],[-130.0531005310053,54.337285020535234],[-130.03150031500314,54.32715355691596],[-130.00630006300062,54.320399247836406],[-129.97749977499774,54.31702209329666],[-129.9630996309963,54.31871067056653],[-129.95949959499595,54.32208782510631],[-129.9630996309963,54.32715355691596],[-129.97389973899737,54.33221928872558],[-129.98829988299883,54.333907865995485],[-129.99909999099992,54.33221928872558],[-130.01350013500135,54.333907865995485],[-130.02790027900278,54.34066217507501],[-130.07470074700745,54.377810875012415],[-130.08550085500855,54.391319493171494],[-130.08550085500855,54.41158242041007],[-130.0639006390064,54.44704254307763],[-130.0711007110071,54.46055116123668],[-130.0639006390064,54.47912551120538],[-130.0531005310053,54.48587982028491],[-130.01710017100172,54.48756839755481],[-129.99909999099992,54.494322706634335],[-129.98469984699847,54.50445417025364],[-129.9810998109981,54.516274211142814],[-129.99549995499956,54.52302852022234],[-130.00630006300062,54.51965136568256],[-130.0639006390064,54.502765592983735],[-130.07830078300782,54.49094555209456],[-130.08190081900818,54.47912551120538],[-130.08550085500855,54.46392831577646],[-130.08550085500855,54.44366538853785],[-130.09990099901,54.426779615839024],[-130.1359013590136,54.44197681126798],[-130.189901899019,54.48250266574516],[-130.21150211502115,54.49263412936446],[-130.29070290702907,54.57030868377905],[-130.2871028710287,54.5753744155887],[-130.28350283502834,54.585505879208],[-130.3231032310323,54.6040802291767],[-130.3591035910359,54.63278604276471],[-130.37350373503733,54.66486901089249],[-130.33750337503375,54.69357482448049],[-130.2871028710287,54.707083442639544],[-130.2331023310233,54.712149174449195],[-130.18270182701826,54.70539486536967],[-130.12150121501213,54.68344336086119],[-130.09630096300964,54.67837762905154],[-130.08550085500855,54.67331189724189],[-130.07830078300782,54.668246165432265],[-130.06030060300603,54.64291750638401],[-130.03870038700387,54.62940888822496],[-130.009900099001,54.619277424605656],[-129.92349923499233,54.60914596098635],[-129.90549905499054,54.60914596098635],[-129.89469894698948,54.61252311552613],[-129.88029880298802,54.62096600187553],[-129.88029880298802,54.62434315641531],[-129.89109891098911,54.62603173368518],[-129.9630996309963,54.62603173368518],[-129.98829988299883,54.63109746549483],[-130.01710017100172,54.63954035184426],[-130.0351003510035,54.654737547273186],[-130.07470074700745,54.69357482448049],[-130.09630096300964,54.70201771082992],[-130.11070110701107,54.70201771082992],[-130.12150121501213,54.707083442639544],[-130.13950139501395,54.71890348352872],[-130.15390153901538,54.7222806380685],[-130.18630186301863,54.72396921533837],[-130.20070200702008,54.72903494714802],[-130.19350193501936,54.75605218346615],[-130.189901899019,54.76280649254568],[-130.1791017910179,54.77293795616498],[-130.17190171901717,54.77631511070476],[-130.1611016110161,54.79826661521321],[-130.15750157501574,54.80333234702286],[-130.15750157501574,54.81684096518194],[-130.15390153901538,54.82528385153134],[-130.14670146701468,54.828661006071115],[-130.13230132301322,54.83034958334099],[-130.1251012510125,54.832038160610864],[-130.09990099901,54.84385820150004],[-130.08550085500855,54.85398966511934],[-130.0711007110071,54.86580970600852],[-130.06030060300603,54.8793183241676],[-130.04950049500496,54.89282694232665],[-130.06750067500676,54.89620409686643],[-130.08190081900818,54.88944978778687],[-130.10350103501034,54.86580970600852],[-130.12150121501213,54.859055396928994],[-130.15390153901538,54.85230108784947],[-130.17190171901717,54.84385820150004],[-130.16470164701647,54.85736681965912],[-130.15030150301504,54.87425259235795],[-130.1359013590136,54.887761210517],[-130.10350103501034,54.90126982867608],[-130.0639006390064,54.953615724042436],[-130.0459004590046,54.96543576493161],[-130.02070020700205,54.97387865128101],[-129.99549995499956,54.97725580582079],[-129.97389973899737,54.97219007401114],[-129.95589955899558,54.956992878582184],[-129.9630996309963,54.948549992232785],[-129.97749977499774,54.93841852861348],[-129.98829988299883,54.91984417864478],[-129.97389973899737,54.921532755914654],[-129.96669966699667,54.92490991045443],[-129.95589955899558,54.92997564226408],[-129.94869948699488,54.935041374073705],[-129.9378993789938,54.94517283769301],[-129.93429934299343,54.948549992232785],[-129.93069930699306,54.94686141496291],[-129.90189901899018,54.948549992232785],[-129.88029880298802,54.95530430131231],[-129.84429844298444,54.98738726944009],[-129.82629826298262,54.99583015578949],[-129.8118981189812,54.99245300124974],[-129.7830978309783,54.97894438309066],[-129.76869768697688,54.975567228550915],[-129.75429754297542,54.97725580582079],[-129.7290972909729,54.98738726944009],[-129.71829718297184,54.989075846709966],[-129.66429664296643,54.984010114900315],[-129.64269642696428,54.989075846709966],[-129.62469624696246,55.00933877394857],[-129.6750967509675,54.99414157851962],[-129.95589955899558,55.00933877394857],[-129.97749977499774,55.005961619408794],[-129.98829988299883,55.005961619408794],[-129.99909999099992,55.01271592848832],[-130.00270002700026,55.02284739210762],[-129.9918999189992,55.0346674329968],[-129.97389973899737,55.05830751477515],[-129.95589955899558,55.10221052379211],[-129.94149941499415,55.11909629649094],[-129.91629916299163,55.12585060557046],[-129.89109891098911,55.157933573698244],[-129.88029880298802,55.16468788277777],[-129.86949869498693,55.16975361458742],[-129.86229862298623,55.17650792366695],[-129.85149851498514,55.18832796455612],[-129.85149851498514,55.193393696365774],[-129.85149851498514,55.20352515998508],[-129.85149851498514,55.20859089179473],[-129.84429844298444,55.21703377814413],[-129.8370983709837,55.22209950995378],[-129.82629826298262,55.242362437192384],[-129.82269822698225,55.25080532354178],[-129.81549815498155,55.25924820989118],[-129.80469804698046,55.26600251897074],[-129.7830978309783,55.27444540532014],[-129.76869768697688,55.282888291669565],[-129.7578975789758,55.28457686893944],[-129.75429754297542,55.28626544620931],[-129.75069750697506,55.29301975528884],[-129.75069750697506,55.29808548709849],[-129.75069750697506,55.304839796178044],[-129.75069750697506,55.31159410525757],[-129.72189721897217,55.34874280519497],[-129.70389703897038,55.3656285778938],[-129.68229682296823,55.37238288697333],[-129.6750967509675,55.37744861878298],[-129.6750967509675,55.389268659672155],[-129.6750967509675,55.40108870056133],[-129.67149671496713,55.40615443237098],[-129.66429664296643,55.411220164180634],[-129.64629646296464,55.43317166868911],[-129.6390963909639,55.44161455503854],[-129.61029610296103,55.446680286848164],[-129.5418954189542,55.438237400498764],[-129.520295202952,55.44499170957829],[-129.4878948789488,55.46018890500724],[-129.4770947709477,55.46187748227712],[-129.4770947709477,55.46356605954699],[-129.47349473494734,55.46863179135664],[-129.4770947709477,55.478763254975945],[-129.4770947709477,55.483828986785596],[-129.48429484294843,55.48214040951572],[-129.49509495094952,55.4753861004362],[-129.50589505895059,55.47200894589642],[-129.5310953109531,55.45850032773737],[-129.5418954189542,55.45512317319759],[-129.559895598956,55.45512317319759],[-129.59229592295924,55.46018890500724],[-129.63549635496355,55.46187748227712],[-129.64629646296464,55.45850032773737],[-129.6570965709657,55.451746018657815],[-129.6858968589686,55.41966305053006],[-129.69309693096932,55.41459731872041],[-129.71469714697147,55.421351627799936],[-129.71469714697147,55.465254636816894],[-129.74349743497436,55.483828986785596],[-129.75429754297542,55.5024033367543],[-129.79029790297903,55.598652241137614],[-129.80829808298083,55.62398090018587],[-129.82629826298262,55.61891516837622],[-129.81549815498155,55.60202939567739],[-129.8118981189812,55.58345504570869],[-129.8118981189812,55.541240613961605],[-129.78669786697867,55.5040919140242],[-129.77589775897758,55.478763254975945],[-129.77949779497794,55.46863179135664],[-129.79029790297903,55.46356605954699],[-129.79029790297903,55.45343459592772],[-129.79029790297903,55.44161455503854],[-129.79029790297903,55.43486024595899],[-129.79749797497976,55.42641735960959],[-129.81549815498155,55.41966305053006],[-129.82629826298262,55.41459731872041],[-129.83349833498335,55.40446585510111],[-129.8370983709837,55.39602296875171],[-129.84069840698407,55.385891505132406],[-129.8370983709837,55.37238288697333],[-129.83349833498335,55.3656285778938],[-129.82629826298262,55.367317155163704],[-129.81909819098192,55.37407146424323],[-129.82629826298262,55.385891505132406],[-129.81549815498155,55.39264581421193],[-129.80829808298083,55.39602296875171],[-129.8010980109801,55.39940012329146],[-129.79029790297903,55.39940012329146],[-129.79749797497976,55.38758008240228],[-129.80469804698046,55.3842029278625],[-129.8118981189812,55.380825773322755],[-129.80469804698046,55.37238288697333],[-129.8010980109801,55.367317155163704],[-129.7938979389794,55.3656285778938],[-129.7830978309783,55.3656285778938],[-129.78669786697867,55.3571856915444],[-129.79029790297903,55.3470542279251],[-129.79749797497976,55.34198849611545],[-129.81909819098192,55.33523418703592],[-129.82629826298262,55.3284798779564],[-129.82629826298262,55.30146264163827],[-129.82269822698225,55.296396909828616],[-129.82269822698225,55.28964260074909],[-129.82629826298262,55.27951113712979],[-129.86229862298623,55.255871055351435],[-129.87669876698766,55.247428169002006],[-129.88749887498875,55.228853819033304],[-129.89829898298984,55.18832796455612],[-129.91269912699127,55.16806503731752],[-129.99549995499956,55.09883336925233],[-130.02070020700205,55.068438978394454],[-130.03870038700387,55.03635601026667],[-130.05670056700566,55.00933877394857],[-130.0639006390064,55.00258446486902],[-130.08190081900818,54.997518733059366],[-130.1071010710107,54.997518733059366],[-130.1251012510125,55.005961619408794],[-130.13230132301322,55.019470237567845],[-130.1359013590136,55.03635601026667],[-130.16830168301684,55.08532475109328],[-130.13950139501395,55.11234198741141],[-130.12150121501213,55.14780211007894],[-130.11430114301143,55.15455641915847],[-130.1071010710107,55.157933573698244],[-130.0891008910089,55.17819650093682],[-130.08550085500855,55.184950810016346],[-130.07830078300782,55.193393696365774],[-130.01710017100172,55.228853819033304],[-129.95949959499595,55.27275682805026],[-129.94869948699488,55.29301975528884],[-129.95949959499595,55.30990552798767],[-129.99549995499956,55.33861134157567],[-130.00270002700026,55.3571856915444],[-130.00270002700026,55.39771154602158],[-130.00630006300062,55.40953158691076],[-130.009900099001,55.41797447326016],[-130.02070020700205,55.44161455503854],[-130.02430024300241,55.465254636816894],[-130.03150031500314,55.473697523166294],[-130.03870038700387,55.48045183224582],[-130.04950049500496,55.48889471859525],[-130.07830078300782,55.5226662639929],[-130.09270092700928,55.55306065485078],[-130.09990099901,55.58683220024844],[-130.09270092700928,55.63242378653527],[-130.07830078300782,55.6594410228534],[-130.07830078300782,55.67126106374258],[-130.08190081900818,55.68476968190163],[-130.0891008910089,55.69152399098118],[-130.09990099901,55.69490114552093],[-130.11070110701107,55.701655454600456],[-130.1251012510125,55.715164072759535],[-130.13230132301322,55.737115577268014],[-130.12870128701286,55.759067081776465],[-130.11430114301143,55.77933000901507],[-130.0351003510035,55.848561677080255],[-129.98469984699847,55.905973304256264],[-129.9630996309963,55.92117049968522],[-129.970299702997,55.93130196330452],[-129.9810998109981,55.93467911784427],[-129.99549995499956,55.932990540574394],[-130.009900099001,55.92792480876474],[-130.02070020700205,55.90766188152617],[-130.02430024300241,55.90090757244661],[-130.04950049500496,55.87220175885861],[-130.10350103501034,55.8249215953019],[-130.1359013590136,55.8063472453332],[-130.15030150301504,55.79452720444402],[-130.16470164701647,55.77088712266564],[-130.16830168301684,55.76582139085602],[-130.17190171901717,55.759067081776465],[-130.17190171901717,55.74893561815719],[-130.17190171901717,55.74049273180776],[-130.16470164701647,55.73373842272824],[-130.1611016110161,55.72698411364871],[-130.16830168301684,55.715164072759535],[-130.15750157501574,55.69996687733058],[-130.14310143101432,55.68983541371128],[-130.13230132301322,55.67632679555223],[-130.1251012510125,55.65437529104375],[-130.12870128701286,55.63580094107505],[-130.1359013590136,55.61891516837622],[-130.15390153901538,55.58514362297856],[-130.15030150301504,55.57838931389904],[-130.14670146701468,55.56994642754961],[-130.14670146701468,55.54799492304113],[-130.11070110701107,55.509157645833824],[-130.09990099901,55.48045183224582],[-130.09630096300964,55.47200894589642],[-130.0639006390064,55.446680286848164],[-130.05670056700566,55.43486024595899],[-130.0531005310053,55.41459731872041],[-130.0531005310053,55.367317155163704],[-130.04950049500496,55.345365650655225],[-130.03870038700387,55.33016845522627],[-129.98829988299883,55.28457686893944],[-130.03150031500314,55.264313941700834],[-130.04950049500496,55.25249390081166],[-130.06750067500676,55.23898528265261],[-130.07830078300782,55.233919550842955],[-130.09990099901,55.23054239630318],[-130.10350103501034,55.225476664493556],[-130.1071010710107,55.211968046334476],[-130.11070110701107,55.2001480054453],[-130.11430114301143,55.1917051190959],[-130.1251012510125,55.1815736554766],[-130.15030150301504,55.162999305507896],[-130.1611016110161,55.15455641915847],[-130.16830168301684,55.12922776011024],[-130.17190171901717,55.11740771922106],[-130.20070200702008,55.103899101061984],[-130.21150211502115,55.08363617382341],[-130.22950229502294,55.0431103193462],[-130.24030240302403,55.0346674329968],[-130.2619026190262,55.02284739210762],[-130.26910269102692,55.016093083028096],[-130.27630276302762,55.00765019667867],[-130.2871028710287,54.984010114900315],[-130.29430294302944,54.97219007401114],[-130.32670326703266,54.95192714677253],[-130.33390333903338,54.93841852861348],[-130.36630366303663,54.9080241377556],[-130.38430384303842,54.89620409686643],[-130.4311043110431,54.88100690143747],[-130.48870488704887,54.84385820150004],[-130.57870578705786,54.806709501562636],[-130.6039060390604,54.801643769752985],[-130.6039060390604,54.815152387912036],[-130.5679056790568,54.842169624230166],[-130.56070560705606,54.850612510579595],[-130.5679056790568,54.85398966511934],[-130.57870578705786,54.85398966511934],[-130.58590585905858,54.85230108784947],[-130.60750607506074,54.83879246969042],[-130.67230672306724,54.77124937889511],[-130.67950679506794,54.766183647085455],[-130.69030690306903,54.76280649254568],[-130.70470704707049,54.766183647085455],[-130.7191071910719,54.77293795616498],[-130.72990729907298,54.78475799705416],[-130.72990729907298,54.79826661521321],[-130.71190711907118,54.80333234702286],[-130.69030690306903,54.806709501562636],[-130.67950679506794,54.815152387912036],[-130.69030690306903,54.83541531515064],[-130.70470704707049,54.850612510579595],[-130.71550715507155,54.86749828327842],[-130.72270722707228,54.887761210517],[-130.72990729907298,54.9080241377556],[-130.72990729907298,54.916467024105],[-130.7263072630726,54.93841852861348],[-130.72990729907298,54.948549992232785],[-130.73350733507334,54.956992878582184],[-130.74430744307443,54.96712434220149],[-130.75150751507516,54.96881291947136],[-130.75510755107553,54.956992878582184],[-130.75510755107553,54.89282694232665],[-130.75150751507516,54.872564015088045],[-130.7371073710737,54.85398966511934],[-130.73350733507334,54.84385820150004],[-130.7371073710737,54.832038160610864],[-130.74430744307443,54.82190669699159],[-130.75510755107553,54.82021811972169],[-130.7659076590766,54.823595274261464],[-130.77670776707765,54.832038160610864],[-130.78750787507875,54.80333234702286],[-130.80550805508057,54.77800368797463],[-130.83070830708306,54.766183647085455],[-130.86670866708667,54.77293795616498],[-130.9171091710917,54.80333234702286],[-130.9351093510935,54.82528385153134],[-130.92790927909277,54.85230108784947],[-130.93150931509314,54.85398966511934],[-130.94230942309423,54.859055396928994],[-130.9351093510935,54.88100690143747],[-130.94230942309423,54.894515519596524],[-130.9567095670957,54.90971271502548],[-130.96030960309602,54.92828706499418],[-130.94230942309423,54.92490991045443],[-130.93150931509314,54.94010710588336],[-130.93870938709387,54.95868145585209],[-130.96390963909639,54.96881291947136],[-130.97470974709748,54.98232153763044],[-130.98190981909818,54.99076442397984],[-130.99270992709927,54.99583015578949],[-131.01071010710106,54.997518733059366],[-131.01071010710106,55.005961619408794],[-130.99630996309963,55.02284739210762],[-130.98550985509854,55.0431103193462],[-130.9711097110971,55.06168466931493],[-130.94950949509496,55.073504710204105],[-130.90270902709028,55.08363617382341],[-130.8559085590856,55.103899101061984],[-130.83070830708306,55.10558767833186],[-130.819908199082,55.100521946522235],[-130.81630816308163,55.09207906017281],[-130.81630816308163,55.08363617382341],[-130.81270812708127,55.078570442013756],[-130.79830798307984,55.076881864743854],[-130.76230762307623,55.078570442013756],[-130.75510755107553,55.081947596553505],[-130.74430744307443,55.08363617382341],[-130.72990729907298,55.08025901928363],[-130.7191071910719,55.08025901928363],[-130.71190711907118,55.10727625560176],[-130.70470704707049,55.11909629649094],[-130.68670686706866,55.139359223729514],[-130.64710647106472,55.17313076912717],[-130.56430564305643,55.22378808722365],[-130.4743047430474,55.30990552798767],[-130.45990459904598,55.331857032496146],[-130.48150481504814,55.33016845522627],[-130.49230492304923,55.323414146146746],[-130.50310503105032,55.31497125979732],[-130.52470524705245,55.30652837344792],[-130.55350553505536,55.287954023479216],[-130.56070560705606,55.27951113712979],[-130.5931059310593,55.225476664493556],[-130.61470614706147,55.2001480054453],[-130.66870668706687,55.17988507820672],[-130.6939069390694,55.16131072823799],[-130.75870758707586,55.09714479198246],[-130.77310773107732,55.09207906017281],[-130.7911079110791,55.09883336925233],[-130.79830798307984,55.108964832871635],[-130.80550805508057,55.135982069189765],[-130.81270812708127,55.14611353280907],[-130.84150841508415,55.13767064645964],[-130.85230852308524,55.13260491464999],[-130.88470884708846,55.108964832871635],[-130.8919089190892,55.10558767833186],[-130.9711097110971,55.08532475109328],[-130.99630996309963,55.08532475109328],[-131.01431014310143,55.09376763744268],[-131.03951039510395,55.108964832871635],[-131.05751057510577,55.12585060557046],[-131.06471064710647,55.14273637826929],[-131.06471064710647,55.18663938728625],[-131.05751057510577,55.198459428175426],[-131.00351003510036,55.24067385992248],[-130.9783097830978,55.25080532354178],[-130.9567095670957,55.255871055351435],[-130.9567095670957,55.260936787161086],[-130.93870938709387,55.28626544620931],[-130.92430924309244,55.29470833255874],[-130.90990909909098,55.29470833255874],[-130.8811088110881,55.28964260074909],[-130.63270632706326,55.291331178018964],[-130.6219062190622,55.29301975528884],[-130.6111061110611,55.296396909828616],[-130.65790657906578,55.31497125979732],[-130.66870668706687,55.3284798779564],[-130.64710647106472,55.33861134157567],[-130.65790657906578,55.35211995973475],[-130.66870668706687,55.350431382464876],[-130.71190711907118,55.32003699160697],[-130.7263072630726,55.31497125979732],[-130.83430834308342,55.304839796178044],[-130.8631086310863,55.31159410525757],[-130.8739087390874,55.34198849611545],[-130.88830888308883,55.451746018657815],[-130.8739087390874,55.53448630488208],[-130.86670866708667,55.54968350031103],[-130.8739087390874,55.62229232291597],[-130.87750877508773,55.63580094107505],[-130.90270902709028,55.666195331932926],[-130.90630906309065,55.68139252736188],[-130.90270902709028,55.68983541371128],[-130.8919089190892,55.69996687733058],[-130.88830888308883,55.70840976367998],[-130.88830888308883,55.715164072759535],[-130.90270902709028,55.72698411364871],[-130.91350913509135,55.74724704088729],[-130.94950949509496,55.77088712266564],[-130.96030960309602,55.782707163554846],[-130.92790927909277,55.799592936253674],[-130.92070920709207,55.80972439987295],[-130.9351093510935,55.818167286222376],[-130.94230942309423,55.816478708952474],[-130.96750967509675,55.8046586680633],[-130.98190981909818,55.8063472453332],[-130.99630996309963,55.80972439987295],[-131.00711007110073,55.816478708952474],[-131.01431014310143,55.818167286222376],[-131.02151021510215,55.826610172571776],[-131.0611106111061,55.87726749066826],[-131.0791107911079,55.889087531557436],[-131.1331113311133,55.92117049968522],[-131.1331113311133,55.924547654224966],[-131.1259112591126,55.93467911784427],[-131.14751147511475,55.93467911784427],[-131.16551165511655,55.93974484965392],[-131.17631176311764,55.9515648905431],[-131.17631176311764,55.97013924051183],[-131.1979119791198,55.9718278177817],[-131.18351183511834,55.987025013210626],[-131.14031140311403,56.017419404068534],[-131.0431104311043,56.057945258545715],[-131.0539105391054,56.057945258545715],[-131.0791107911079,56.057945258545715],[-131.06831068310683,56.071453876704766],[-131.01071010710106,56.11197973118195],[-131.06471064710647,56.09509395848312],[-131.08631086310862,56.08665107213372],[-131.1079110791108,56.071453876704766],[-131.1259112591126,56.05119094946619],[-131.13671136711366,56.04105948584689],[-131.16551165511655,56.03261659949749],[-131.19071190711907,56.01404224952876],[-131.29151291512915,55.98871359048053],[-131.30231302313024,55.981959281401004],[-131.3131131311313,55.9718278177817],[-131.3419134191342,55.9616963541624],[-131.37071370713707,55.968450663241924],[-131.3959139591396,55.987025013210626],[-131.41391413914138,56.01066509498901],[-131.43191431914317,55.99715647682993],[-131.4607146071461,55.98533643594075],[-131.48231482314822,55.9802707041311],[-131.49671496714967,55.9904021677504],[-131.5651156511565,55.946499158733445],[-131.59031590315902,55.941433426923794],[-131.6191161911619,55.9431220041937],[-131.62631626316264,55.941433426923794],[-131.629916299163,55.938056272384046],[-131.63351633516334,55.93467911784427],[-131.6371163711637,55.92961338603462],[-131.65511655116552,55.924547654224966],[-131.68031680316804,55.911039036065915],[-131.7019170191702,55.90428472698639],[-131.72711727117272,55.89077610882734],[-131.73431734317342,55.88739895428756],[-131.75231752317524,55.88571037701769],[-131.78471784717846,55.88739895428756],[-131.80631806318064,55.88739895428756],[-131.8171181711817,55.88233322247791],[-131.84231842318422,55.870513181588734],[-131.85311853118532,55.86544744977908],[-131.8711187111871,55.86544744977908],[-131.88551885518854,55.86544744977908],[-131.89991899919,55.86544744977908],[-131.91431914319142,55.85869314069956],[-131.89271892718926,55.85531598615978],[-131.82431824318243,55.83167590438143],[-131.77751777517776,55.8249215953019],[-131.76671766717666,55.816478708952474],[-131.7631176311763,55.79790435898377],[-131.7739177391774,55.77088712266564],[-131.78111781117812,55.75400134996684],[-131.79191791917918,55.74218130907764],[-131.809918099181,55.728672690918586],[-131.82431824318243,55.72529553637881],[-131.86751867518674,55.728672690918586],[-131.83151831518316,55.696589722790804],[-131.8279182791828,55.6678839092028],[-131.84951849518495,55.64255525015457],[-131.88551885518854,55.61891516837622],[-131.88551885518854,55.61384943656657],[-131.8819188191882,55.603717972947265],[-131.8819188191882,55.598652241137614],[-132.00432004320044,55.6678839092028],[-131.99351993519934,55.657752445583526],[-131.96831968319682,55.634112363805144],[-131.96471964719646,55.62229232291597],[-131.9539195391954,55.612160859296694],[-131.93591935919358,55.598652241137614],[-131.92871928719288,55.58852077751831],[-131.95031950319503,55.59189793205809],[-131.95031950319503,55.58514362297856],[-131.93591935919358,55.576700736629135],[-131.9251192511925,55.563192118470084],[-131.9251192511925,55.54799492304113],[-131.92871928719288,55.5311091503423],[-131.93231932319324,55.52604341853265],[-131.9431194311943,55.5226662639929],[-131.95031950319503,55.51760053218325],[-131.9539195391954,55.505780491294075],[-131.96111961119612,55.500714759484424],[-131.97551975519755,55.5040919140242],[-131.9971199711997,55.51760053218325],[-132.13392133921337,55.56488069573996],[-132.16992169921699,55.58852077751831],[-132.1843218432184,55.61553801383644],[-132.21312213122133,55.69827830006071],[-132.22752227522275,55.715164072759535],[-132.24552245522455,55.723606959108935],[-132.259922599226,55.74049273180776],[-132.2671226712267,55.755689927236716],[-132.24552245522455,55.764132813586116],[-132.22752227522275,55.75737850450659],[-132.18792187921878,55.73036126818846],[-132.16632166321662,55.723606959108935],[-132.1771217712177,55.75231277269694],[-132.18072180721808,55.777641431745195],[-132.1771217712177,55.79452720444402],[-132.16992169921699,55.80297009079342],[-132.1411214112141,55.8046586680633],[-132.07272072720727,55.80297009079342],[-132.05832058320584,55.8046586680633],[-132.04752047520475,55.816478708952474],[-132.05472054720548,55.82829874984168],[-132.0871208712087,55.84518452254051],[-132.0691206912069,55.862070295239334],[-132.0511205112051,55.878956067938134],[-132.03672036720366,55.89415326336709],[-132.04032040320402,55.911039036065915],[-132.05472054720548,55.92961338603462],[-132.05832058320584,55.94481058146357],[-132.04392043920438,55.95494204508287],[-132.01872018720186,55.9616963541624],[-131.96831968319682,55.95831919962262],[-131.9539195391954,55.9616963541624],[-131.95031950319503,55.9718278177817],[-131.9539195391954,55.99209074502028],[-131.94671946719467,55.99715647682993],[-131.9431194311943,56.00728794044923],[-131.96471964719646,56.071453876704766],[-131.96471964719646,56.15757131746878],[-131.95031950319503,56.16601420381821],[-131.8891188911889,56.18458855378691],[-131.81351813518134,56.196408594676086],[-131.69831698316983,56.196408594676086],[-131.59751597515975,56.177834244707384],[-131.57951579515796,56.17952282197726],[-131.5579155791558,56.187965708326686],[-131.52911529115292,56.213294367374914],[-131.51471514715146,56.22173725372434],[-131.48951489514894,56.22173725372434],[-131.51471514715146,56.22849156280387],[-131.53631536315362,56.22511440826409],[-131.58671586715866,56.20822863556526],[-131.61551615516154,56.204851481025514],[-131.6371163711637,56.20654005829539],[-131.68751687516874,56.21667152191469],[-131.87831878318784,56.223425830994216],[-131.90711907119072,56.23355729461352],[-131.96111961119612,56.294346076329305],[-131.96471964719646,56.31123184902813],[-131.9719197191972,56.356823435314965],[-131.97911979119792,56.365266321664365],[-132.00432004320044,56.36695489893424],[-132.0619206192062,56.38046351709332],[-132.07632076320763,56.38215209436319],[-132.09072090720906,56.37708636255354],[-132.10512105121052,56.373709208013764],[-132.14472144721447,56.38890640344272],[-132.15552155521556,56.38046351709332],[-132.16272162721629,56.38046351709332],[-132.1843218432184,56.4294322579199],[-132.18792187921878,56.45138376242838],[-132.20232202322023,56.47164668966698],[-132.23472234722345,56.48346673055616],[-132.2851228512285,56.49359819417546],[-132.28872288722886,56.498663925985085],[-132.33552335523353,56.52399258503334],[-132.34632346323463,56.52905831684299],[-132.349923499235,56.53750120319239],[-132.35352353523535,56.552698398621345],[-132.349923499235,56.579715634939475],[-132.3391233912339,56.601667139447954],[-132.30672306723068,56.64050441665523],[-132.32832328323283,56.63881583938536],[-132.37152371523715,56.623618643956405],[-132.4471244712447,56.60673287125758],[-132.4759247592476,56.6050442939877],[-132.5191251912519,56.62699579849618],[-132.54072540725406,56.63206153030583],[-132.55152551525515,56.63881583938536],[-132.5371253712537,56.66076734389384],[-132.52272522725227,56.67427596205289],[-132.50472504725047,56.677653116592666],[-132.4579245792458,56.67427596205289],[-132.46872468724686,56.69116173475172],[-132.48672486724865,56.69791604383127],[-132.50832508325084,56.70129319837102],[-132.529925299253,56.708047507450544],[-132.47952479524795,56.7435076301181],[-132.46152461524616,56.757016248277154],[-132.46152461524616,56.76545913462655],[-132.4147241472415,56.784033484595284],[-132.41112411124112,56.792476370944684],[-132.4147241472415,56.80091925729411],[-132.41112411124112,56.80936214364351],[-132.40032400324003,56.81273929818329],[-132.37872378723787,56.81273929818329],[-132.36792367923678,56.81442787545316],[-132.36072360723608,56.81780502999294],[-132.37872378723787,56.82624791634234],[-132.40032400324003,56.824559339072465],[-132.41832418324182,56.81611645272304],[-132.4363243632436,56.80598498910376],[-132.43272432724328,56.79416494821456],[-132.45432454324543,56.78741063913503],[-132.47952479524795,56.78572206186516],[-132.49032490324902,56.78065633005551],[-132.49752497524975,56.762081980086805],[-132.51552515525157,56.75532767100728],[-132.5371253712537,56.75870482554703],[-132.6739267392674,56.802607834563986],[-132.76032760327604,56.846510843580944],[-132.77472774727747,56.85664230720022],[-132.77832778327783,56.86170803900987],[-132.7819278192782,56.87521665716895],[-132.78552785527856,56.8802823889786],[-132.7891278912789,56.88534812078822],[-132.8431284312843,56.91236535710635],[-132.85752857528576,56.914053934376255],[-132.86112861128612,56.91911966618588],[-132.86112861128612,56.93769401615461],[-132.86472864728648,56.94107117069436],[-132.8791287912879,56.94613690250401],[-132.8971289712897,56.957956943393185],[-132.91152911529116,56.971465561552264],[-132.92232922329222,56.98328560244144],[-132.8971289712897,56.99003991152097],[-132.88272882728828,56.99172848879084],[-132.86832868328685,56.99003991152097],[-132.85032850328503,56.97484271609201],[-132.83952839528393,56.96808840701249],[-132.82872828728287,56.97315413882214],[-132.81072810728108,56.97484271609201],[-132.78552785527856,56.96808840701249],[-132.76752767527677,56.96977698428236],[-132.7711277112771,56.99679422060049],[-132.81072810728108,57.055894425046375],[-132.80712807128072,57.06602588866568],[-132.79992799928,57.069403043205455],[-132.79272792727926,57.07953450682476],[-132.7891278912789,57.08797739317416],[-132.79632796327962,57.09304312498381],[-132.80712807128072,57.08966597044403],[-132.83232832328324,57.077845929554854],[-132.83952839528393,57.0727801977452],[-132.86112861128612,57.0356314978078],[-132.8791287912879,57.02212287964875],[-132.8971289712897,57.02718861145837],[-132.92232922329222,57.042385806887324],[-132.94392943929438,57.047451538696976],[-132.98352983529836,57.0440743841572],[-132.99432994329942,57.047451538696976],[-133.0411304113041,57.069403043205455],[-133.06633066330664,57.07615735228498],[-133.08073080730807,57.082911661364506],[-133.09153091530914,57.08628881590428],[-133.11313113131132,57.08797739317416],[-133.1311313113131,57.08797739317416],[-133.14553145531454,57.082911661364506],[-133.1491314913149,57.08122308409463],[-133.15633156331563,57.082911661364506],[-133.16353163531636,57.08628881590428],[-133.16713167131672,57.08966597044403],[-133.16713167131672,57.096420279523585],[-133.159931599316,57.10148601133321],[-133.15633156331563,57.10655174314286],[-133.1491314913149,57.11668320676216],[-133.14553145531454,57.12174893857181],[-133.14193141931418,57.13019182492124],[-133.1491314913149,57.140323288540515],[-133.12033120331205,57.14370044308029],[-133.13473134731348,57.16058621577912],[-133.16713167131672,57.16902910212852],[-133.18873188731888,57.14876617488994],[-133.17433174331742,57.14876617488994],[-133.17433174331742,57.140323288540515],[-133.21033210332104,57.14201186581042],[-133.22113221132213,57.14707759762004],[-133.21033210332104,57.16058621577912],[-133.21753217532176,57.17071767939842],[-133.22473224732246,57.17578341120807],[-133.23553235532356,57.17409483393817],[-133.24273242732426,57.16902910212852],[-133.24993249932498,57.13356897946099],[-133.2679326793268,57.11330605222241],[-133.28953289532896,57.10148601133321],[-133.31833318333184,57.10317458860311],[-133.36513365133652,57.12850324765134],[-133.4227342273423,57.145389020350166],[-133.44433444334442,57.14876617488994],[-133.45153451534514,57.15045475215982],[-133.47673476734766,57.16565194758877],[-133.48753487534876,57.16902910212852],[-133.519935199352,57.172406256668296],[-133.5379353793538,57.17578341120807],[-133.55233552335523,57.180849143017696],[-133.55233552335523,57.18760345209725],[-133.53073530735307,57.190980606637],[-133.50553505535055,57.202800647526175],[-133.48753487534876,57.221374997494905],[-133.49473494734946,57.23994934746361],[-133.50553505535055,57.251769388352784],[-133.50193501935019,57.25345796562266],[-133.49473494734946,57.256835120162435],[-133.49113491134912,57.26696658378174],[-133.4839348393484,57.27709804740101],[-133.47313473134733,57.28216377921066],[-133.44073440734408,57.283852356480566],[-133.25353253532535,57.28047520194079],[-133.18153181531815,57.305803860989016],[-133.17433174331742,57.30918101552879],[-133.1707317073171,57.31593532460832],[-133.16353163531636,57.319312479148095],[-133.1059310593106,57.319312479148095],[-133.0879308793088,57.322689633687844],[-133.05913059130592,57.33113252003727],[-133.03753037530376,57.346329715466226],[-133.03753037530376,57.3665926427048],[-133.0519305193052,57.3665926427048],[-133.09873098730986,57.33957540638667],[-133.12033120331205,57.332821097307146],[-133.1779317793178,57.332821097307146],[-133.18873188731888,57.33113252003727],[-133.21033210332104,57.322689633687844],[-133.22473224732246,57.319312479148095],[-133.24273242732426,57.32100105641797],[-133.27153271532717,57.3294439427674],[-133.28953289532896,57.332821097307146],[-133.39033390333904,57.33450967457702],[-133.41913419134193,57.34464113819632],[-133.44073440734408,57.3581497563554],[-133.4551345513455,57.38010126086385],[-133.41913419134193,57.39529845629281],[-133.4011340113401,57.39867561083258],[-133.3579335793358,57.40205276537233],[-133.34353343533434,57.40542991991211],[-133.339933399334,57.412184228991634],[-133.33633336333364,57.42907000169046],[-133.33633336333364,57.43751288803989],[-133.34353343533434,57.44257861984951],[-133.35073350733506,57.439201465309765],[-133.36873368733688,57.43075857896034],[-133.37953379533795,57.42907000169046],[-133.40473404734047,57.43244715623024],[-133.41553415534156,57.43244715623024],[-133.42633426334262,57.425692847150685],[-133.43713437134372,57.42400426988081],[-133.4551345513455,57.43244715623024],[-133.46953469534697,57.444267197119416],[-133.50193501935019,57.47635016524717],[-133.50553505535055,57.48648162886647],[-133.50553505535055,57.5033674015653],[-133.49833498334982,57.532073215153304],[-133.49113491134912,57.53882752423283],[-133.47673476734766,57.55233614239191],[-133.44073440734408,57.569221915090736],[-133.3471334713347,57.57597622417026],[-133.31473314733148,57.59286199686909],[-133.33273332733327,57.59623915140884],[-133.41553415534156,57.594550574138964],[-133.44073440734408,57.58948484232931],[-133.46233462334624,57.57935337871004],[-133.53433534335343,57.572599069630485],[-133.5919359193592,57.57428764690039],[-133.60633606336063,57.57935337871004],[-133.64953649536494,57.61650207864744],[-133.66033660336603,57.621567810457094],[-133.65673656736567,57.63338785134627],[-133.64593645936458,57.68742232398253],[-133.64953649536494,57.702619519411456],[-133.6351363513635,57.70768525122111],[-133.62073620736209,57.70937382849098],[-133.5919359193592,57.70937382849098],[-133.58473584735847,57.711062405760885],[-133.5739357393574,57.716128137570536],[-133.56673566735668,57.716128137570536],[-133.55953559535595,57.71443956030063],[-133.54873548735486,57.70430809668133],[-133.53433534335343,57.69924236487171],[-133.52353523535237,57.692488055792154],[-133.5091350913509,57.6789794376331],[-133.49473494734946,57.67222512855358],[-133.44073440734408,57.6688479740138],[-133.21033210332104,57.58948484232931],[-133.16713167131672,57.57935337871004],[-133.159931599316,57.572599069630485],[-133.13833138331384,57.55571329693166],[-133.1311313113131,57.55233614239191],[-133.11313113131132,57.54558183331238],[-133.069930699307,57.5134988651846],[-133.04473044730446,57.5033674015653],[-133.0339303393034,57.5033674015653],[-133.01953019530197,57.506744556105076],[-133.00873008730088,57.51181028791473],[-133.0051300513005,57.51856459699425],[-133.01233012330124,57.521941751534],[-133.08073080730807,57.537138946962955],[-133.09873098730986,57.550647565122006],[-133.12753127531275,57.57935337871004],[-133.15633156331563,57.599616305948615],[-133.16353163531636,57.613124924107666],[-133.16353163531636,57.626633542266745],[-133.18153181531815,57.62325638772697],[-133.2139321393214,57.626633542266745],[-133.23913239132392,57.63676500588605],[-133.24993249932498,57.65196220131497],[-133.36153361533616,57.68235659217288],[-133.39753397533974,57.70937382849098],[-133.41913419134193,57.719505292110284],[-133.46953469534697,57.72794817845971],[-133.49833498334982,57.738079642078986],[-133.5271352713527,57.751588260238066],[-133.5451354513545,57.76509687839712],[-133.55233552335523,57.79211411471525],[-133.55953559535595,57.89005159636844],[-133.55233552335523,57.91538025541669],[-133.5379353793538,57.91706883268657],[-133.49113491134912,57.90862594633714],[-133.429934299343,57.90862594633714],[-133.39753397533974,57.903560214527516],[-133.34353343533434,57.884985864558786],[-133.31473314733148,57.879920132749135],[-133.3039330393304,57.88160871001904],[-133.28953289532896,57.88667444182869],[-133.27873278732787,57.88836301909856],[-133.2679326793268,57.884985864558786],[-133.24273242732426,57.876542978209386],[-133.14193141931418,57.85459147370091],[-133.12393123931238,57.85628005097078],[-133.1311313113131,57.86472293732021],[-133.18513185131852,57.89005159636844],[-133.20673206732067,57.89511732817809],[-133.5559355593556,57.928888873575744],[-133.5739357393574,57.92382314176609],[-133.58473584735847,57.91031452360704],[-133.5919359193592,57.88836301909856],[-133.5919359193592,57.88160871001904],[-133.58833588335884,57.86810009185996],[-133.5919359193592,57.857968628240684],[-133.60273602736027,57.86472293732021],[-133.609936099361,57.86978866912986],[-133.62433624336242,57.879920132749135],[-133.6351363513635,57.88836301909856],[-133.63873638736388,57.86810009185996],[-133.62433624336242,57.82926281465265],[-133.6351363513635,57.8056227328743],[-133.66033660336603,57.787048382905596],[-133.68553685536855,57.79042553744537],[-133.7071370713707,57.808999887414075],[-133.74313743137432,57.844460010081605],[-133.80433804338043,57.898494482717865],[-133.8079380793808,57.90524879179739],[-133.81153811538115,57.91369167814679],[-133.81153811538115,57.92551171903597],[-133.81873818738188,57.93226602811552],[-133.8619386193862,57.955906109893874],[-133.81153811538115,57.98461192348188],[-133.79353793537936,57.98967765529153],[-133.77553775537754,57.98967765529153],[-133.76473764737648,57.9812347689421],[-133.75393753937539,57.969414728052925],[-133.7359373593736,57.955906109893874],[-133.7179371793718,57.94577464627457],[-133.70353703537035,57.94070891446492],[-133.69273692736928,57.942397491734795],[-133.68913689136892,57.955906109893874],[-133.69633696336962,57.98967765529153],[-133.69273692736928,58.00149769618071],[-133.67113671136713,58.01162915980001],[-133.67113671136713,58.01669489160963],[-133.73233732337323,58.02007204614941],[-133.75393753937539,58.03020350976871],[-133.76473764737648,58.062286477896464],[-133.75033750337502,58.07748367332542],[-133.7179371793718,58.09774660056402],[-133.69993699936998,58.116320950532725],[-133.7179371793718,58.1281409914219],[-133.7179371793718,58.13489530050143],[-133.69633696336962,58.138272455041204],[-133.68553685536855,58.143338186850855],[-133.67473674736746,58.148403918660506],[-133.6819368193682,58.15515822774003],[-133.69993699936998,58.148403918660506],[-133.75753757537575,58.13489530050143],[-133.75753757537575,58.1281409914219],[-133.74313743137432,58.1196981050725],[-133.75033750337502,58.10618948691342],[-133.81153811538115,58.045400705197636],[-133.81513815138152,58.02851493249884],[-133.80073800738006,58.01162915980001],[-133.86553865538656,57.98630050075175],[-133.88353883538835,57.98461192348188],[-133.90873908739087,57.98461192348188],[-133.91953919539196,57.98630050075175],[-133.93033930339303,57.98967765529153],[-133.9339393393934,57.99305480983128],[-133.93753937539375,58.00149769618071],[-133.94473944739448,58.00318627345058],[-133.94833948339482,58.00656342799036],[-133.96633966339664,58.009940582530106],[-133.969939699397,58.01162915980001],[-133.9771397713977,58.02007204614941],[-133.9771397713977,58.02851493249884],[-133.9771397713977,58.03526924157836],[-133.9879398793988,58.03864639611811],[-134.00234002340022,58.04033497338801],[-134.00954009540095,58.04371212792776],[-134.01674016740168,58.05046643700729],[-134.01674016740168,58.062286477896464],[-134.0239402394024,58.07072936424589],[-134.03474034740347,58.072417941515766],[-134.0491404914049,58.07072936424589],[-134.059940599406,58.072417941515766],[-134.06354063540635,58.07917225059529],[-134.07434074340745,58.11294379599295],[-134.05634056340563,58.11125521872307],[-134.0491404914049,58.11463237326285],[-134.04554045540456,58.1196981050725],[-134.04554045540456,58.1281409914219],[-134.05274052740526,58.13489530050143],[-134.07074070740708,58.1467153413906],[-134.08154081540815,58.15515822774003],[-134.0851408514085,58.16360111408943],[-134.0851408514085,58.17542115497861],[-134.08874088740887,58.187241195867784],[-134.0851408514085,58.19568408221721],[-134.08154081540815,58.20750412310639],[-134.07434074340745,58.214258432185915],[-134.06714067140672,58.22101274126544],[-134.059940599406,58.23114420488474],[-134.05634056340563,58.23958709123417],[-134.05634056340563,58.24802997758357],[-134.059940599406,58.254784286663096],[-134.059940599406,58.2649157502824],[-134.059940599406,58.268292904822175],[-134.06354063540635,58.273358636631826],[-134.06714067140672,58.27842436844145],[-134.06714067140672,58.285178677521],[-134.059940599406,58.28855583206075],[-134.0311403114031,58.285178677521],[-134.00954009540095,58.2936215638704],[-133.99153991539916,58.30544160475958],[-133.98073980739807,58.31557306837888],[-133.98073980739807,58.32063880018853],[-133.9879398793988,58.325704531998184],[-133.99153991539916,58.33245884107771],[-134.0059400594006,58.37298469555489],[-134.00954009540095,58.39155904552359],[-134.0059400594006,58.40844481822242],[-133.99513995139952,58.4118219727622],[-133.97353973539737,58.41857628184172],[-133.96273962739627,58.4219534363815],[-133.95193951939518,58.432084900000774],[-133.94833948339482,58.43883920908033],[-133.95193951939518,58.44559351815985],[-133.94833948339482,58.455724981779156],[-133.91953919539196,58.49793941352621],[-133.87633876338762,58.50975945441539],[-133.7719377193772,58.518202340764816],[-133.7719377193772,58.52495664984434],[-133.88713887138871,58.52495664984434],[-133.9339393393934,58.518202340764816],[-133.9591395913959,58.513136608955165],[-133.9771397713977,58.50469372260574],[-133.98073980739807,58.48780794990691],[-133.97353973539737,58.450659249969505],[-133.9879398793988,58.442216363620076],[-134.00954009540095,58.4405277863502],[-134.0491404914049,58.42533059092125],[-134.07434074340745,58.4219534363815],[-134.07434074340745,58.415199127301975],[-134.05274052740526,58.40844481822242],[-134.04554045540456,58.38987046825372],[-134.05274052740526,58.36791896374524],[-134.06354063540635,58.35103319104641],[-134.08154081540815,58.33752457288736],[-134.1247412474125,58.31895022291866],[-134.14274142741428,58.30544160475958],[-134.14634146341464,58.285178677521],[-134.1319413194132,58.273358636631826],[-134.11034110341103,58.263227173012524],[-134.09954099540994,58.24802997758357],[-134.1031410314103,58.23958709123417],[-134.1139411394114,58.23283278215462],[-134.14634146341464,58.20919270037626],[-134.1571415714157,58.20412696856661],[-134.17154171541716,58.20243839129674],[-134.18954189541896,58.20243839129674],[-134.239942399424,58.214258432185915],[-134.44154441544416,58.32232737745841],[-134.45954459544595,58.32739310926806],[-134.47034470344704,58.330770263807835],[-134.48834488344883,58.34934461377654],[-134.4991449914499,58.35441034558619],[-134.5531455314553,58.35441034558619],[-134.56754567545676,58.35609892285606],[-134.59634596345964,58.366230386475365],[-134.61074610746107,58.36791896374524],[-134.62154621546216,58.36454180920549],[-134.62514625146252,58.35609892285606],[-134.6287462874629,58.35103319104641],[-134.64314643146432,58.35441034558619],[-134.64314643146432,58.36285323193559],[-134.64674646746468,58.37636185009467],[-134.65394653946538,58.38649331371394],[-134.66834668346684,58.38480473644407],[-134.68634686346863,58.379739004634416],[-134.71874718747188,58.374673272824765],[-134.7331473314733,58.37298469555489],[-134.75474754747546,58.38142758190432],[-134.76554765547655,58.40000193187302],[-134.77274772747728,58.423642013651374],[-134.77634776347765,58.47598790901773],[-134.78354783547834,58.49287368171656],[-134.7979479794798,58.50300514533586],[-134.82674826748269,58.51144803168526],[-134.82674826748269,58.518202340764816],[-134.82314823148232,58.51989091803469],[-134.81954819548196,58.521579495304564],[-134.8159481594816,58.52326807257447],[-134.81234812348123,58.52495664984434],[-134.84834848348484,58.535088113463644],[-134.87354873548736,58.553662463432346],[-134.89874898748988,58.575613967940825],[-134.93474934749347,58.62289413149753],[-134.97434974349744,58.65835425416506],[-134.99234992349923,58.68368291321332],[-134.95994959949599,58.66679714051449],[-134.94554945549456,58.66341998597471],[-134.93114931149313,58.668485717784364],[-134.92754927549277,58.66510856324459],[-134.92034920349204,58.660042831434964],[-134.91674916749167,58.65497709962531],[-134.92034920349204,58.678617181403666],[-134.93114931149313,58.69719153137237],[-134.9419494194942,58.71576588134107],[-134.92754927549277,58.75460315854838],[-134.93474934749347,58.77824324032673],[-134.94554945549456,58.80019474483521],[-134.94914949149492,58.820457672073815],[-134.96354963549635,58.81539194026416],[-134.97434974349744,58.81201478572439],[-134.9851498514985,58.81370336299429],[-134.99954999549996,58.820457672073815],[-135.00675006750066,58.806949053914735],[-135.02475024750248,58.793440435755684],[-135.0319503195032,58.784997549406285],[-135.02835028350285,58.77655466305686],[-135.02115021150212,58.76811177670746],[-135.02115021150212,58.7613574676279],[-135.0319503195032,58.75122600400863],[-135.02835028350285,58.744471694929075],[-135.02475024750248,58.73771738584955],[-135.05355053550534,58.7529145812785],[-135.10395103951038,58.81032620845451],[-135.14355143551435,58.833966290232866],[-135.15075150751508,58.84409775385217],[-135.14715147151472,58.85760637201122],[-135.12915129151293,58.89475507194865],[-135.14715147151472,58.90657511283783],[-135.15435154351542,58.923460885536656],[-135.16155161551615,58.94372381277523],[-135.16155161551615,58.967363894553614],[-135.1651516515165,58.99100397633197],[-135.1759517595176,59.00451259449102],[-135.19035190351903,59.016332635380195],[-135.20475204752046,59.03321840807902],[-135.20835208352082,59.03997271715855],[-135.2119521195212,59.06698995347668],[-135.22275222752228,59.09400718979481],[-135.22275222752228,59.10413865341411],[-135.229952299523,59.12609015792259],[-135.27315273152732,59.1835017850986],[-135.3019530195302,59.212207598686604],[-135.33435334353345,59.239224835004705],[-135.3631536315363,59.27130780313249],[-135.36675366753667,59.31352223487954],[-135.3379533795338,59.40132825291346],[-135.3307533075331,59.45198557100994],[-135.34875348753488,59.470559920978644],[-135.35955359553594,59.45705130281959],[-135.38835388353883,59.37431101659533],[-135.40275402754028,59.320276543959096],[-135.41355413554135,59.30001361672049],[-135.43515435154353,59.31352223487954],[-135.46755467554675,59.30507934853014],[-135.52875528755288,59.320276543959096],[-135.5539555395554,59.320276543959096],[-135.53235532355325,59.310145080339794],[-135.4819548195482,59.29494788491084],[-135.46035460354602,59.28143926675179],[-135.43155431554317,59.252733453163785],[-135.4279542795428,59.247667721354134],[-135.4279542795428,59.24091341227461],[-135.42435424354244,59.23753625773483],[-135.41355413554135,59.23415910319508],[-135.39915399153992,59.230781948655306],[-135.3847538475385,59.22233906230588],[-135.35955359553594,59.21389617595648],[-135.35595355953558,59.20714186687695],[-135.35235352353524,59.19701040325765],[-135.33435334353345,59.16155028059012],[-135.3379533795338,59.163238857859994],[-135.3379533795338,59.15986170332022],[-135.34155341553415,59.15310739424069],[-135.34155341553415,59.14804166243104],[-135.3379533795338,59.14466450789129],[-135.31635316353163,59.13115588973221],[-135.3091530915309,59.12271300338281],[-135.30555305553054,59.11089296249364],[-135.30555305553054,59.09907292160446],[-135.3091530915309,59.08725288071528],[-135.319953199532,59.100761498874334],[-135.35955359553594,59.114270117033385],[-135.37755377553776,59.12440158065269],[-135.38835388353883,59.13959877608164],[-135.3919539195392,59.16999316693952],[-135.39555395553955,59.1835017850986],[-135.42435424354244,59.20545328960705],[-135.47115471154711,59.225716216845655],[-135.5179551795518,59.23584768046496],[-135.5539555395554,59.230781948655306],[-135.53955539555395,59.21558475322635],[-135.48555485554857,59.1835017850986],[-135.47475474754748,59.16999316693952],[-135.45315453154532,59.141287353351515],[-135.43515435154353,59.127778735192464],[-135.40275402754028,59.11089296249364],[-135.3847538475385,59.100761498874334],[-135.3739537395374,59.08725288071528],[-135.37755377553776,59.070367108016455],[-135.3847538475385,59.05348133531763],[-135.38835388353883,59.038284139888674],[-135.3739537395374,59.02477552172962],[-135.3847538475385,59.016332635380195],[-135.38835388353883,59.00620117176089],[-135.3847538475385,58.99775828541149],[-135.3739537395374,58.99100397633197],[-135.3847538475385,58.975806780903014],[-135.3847538475385,58.953855276394535],[-135.37755377553776,58.93696950369571],[-135.3631536315363,58.92852661734631],[-135.32715327153272,58.92008373099688],[-135.319953199532,58.91501799918723],[-135.319953199532,58.904886535567954],[-135.33435334353345,58.888000762869126],[-135.3307533075331,58.877869299249824],[-135.29475294752947,58.83565486750274],[-135.229952299523,58.771488931247205],[-135.24075240752407,58.74784884946885],[-135.24075240752407,58.730963076770024],[-135.229952299523,58.71576588134107],[-135.16875168751687,58.646534213275885],[-135.16155161551615,58.63471417238671],[-135.17955179551797,58.624582708767406],[-135.20835208352082,58.62120555422766],[-135.22635226352264,58.61276266787823],[-135.21555215552155,58.589122586099876],[-135.16875168751687,58.54521957708292],[-135.15435154351542,58.51989091803469],[-135.14715147151472,58.51482518622504],[-135.14355143551435,58.51144803168526],[-135.139951399514,58.50638229987564],[-135.14355143551435,58.49625083625634],[-135.14355143551435,58.491185104446686],[-135.13635136351363,58.48443079536716],[-135.1111511115111,58.459102136318904],[-135.10035100351004,58.44390494088998],[-135.0571505715057,58.35103319104641],[-135.05355053550534,58.33245884107771],[-135.05355053550534,58.308818759299356],[-135.0571505715057,58.298687295680054],[-135.0679506795068,58.30037587294993],[-135.0787507875079,58.30544160475958],[-135.08955089550895,58.30206445021983],[-135.0931509315093,58.29531014114028],[-135.0931509315093,58.2649157502824],[-135.0931509315093,58.254784286663096],[-135.08955089550895,58.24802997758357],[-135.08955089550895,58.24465282304382],[-135.0931509315093,58.23789851396427],[-135.10395103951038,58.23283278215462],[-135.13635136351363,58.219324163995566],[-135.14715147151472,58.21594700945579],[-135.17235172351724,58.219324163995566],[-135.3091530915309,58.25140713212335],[-135.34875348753488,58.276735791171575],[-135.38115381153813,58.31050733656923],[-135.40275402754028,58.35441034558619],[-135.40995409954098,58.38480473644407],[-135.4171541715417,58.39493620006337],[-135.4459544595446,58.4219534363815],[-135.45675456754566,58.44559351815985],[-135.46755467554675,58.46754502266833],[-135.48555485554857,58.48443079536716],[-135.5071550715507,58.48443079536716],[-135.51435514355143,58.46585644539843],[-135.49995499955,58.44559351815985],[-135.47475474754748,58.42701916819115],[-135.4639546395464,58.4118219727622],[-135.46035460354602,58.388181890983844],[-135.4639546395464,58.37805042736454],[-135.47835478354784,58.37298469555489],[-135.49275492754927,58.37636185009467],[-135.5071550715507,58.38142758190432],[-135.53235532355325,58.39493620006337],[-135.59355593555935,58.4202648591116],[-135.6259562595626,58.42701916819115],[-135.65115651156512,58.41857628184172],[-135.67635676356764,58.40675624095255],[-135.88515885158853,58.379739004634416],[-135.91035910359102,58.38142758190432],[-135.91035910359102,58.39493620006337],[-135.90315903159032,58.4219534363815],[-135.88875888758886,58.4489706726996],[-135.87435874358744,58.46247929085868],[-135.8959589595896,58.464167868128555],[-135.949959499595,58.455724981779156],[-135.949959499595,58.46247929085868],[-135.93555935559357,58.46247929085868],[-135.92475924759248,58.46754502266833],[-135.91395913959138,58.47429933174786],[-135.90315903159032,58.477676486287635],[-135.88875888758886,58.477676486287635],[-135.84915849158492,58.46923359993821],[-135.85995859958598,58.491185104446686],[-135.85635856358564,58.499627990796085],[-135.84555845558455,58.508070877145514],[-135.8419584195842,58.52833380438409],[-135.84555845558455,58.54690815435282],[-135.85635856358564,58.558728195242],[-135.87075870758707,58.5671710815914],[-135.88875888758886,58.57223681340105],[-135.88875888758886,58.580679699750476],[-135.82035820358203,58.60094262698905],[-135.8347583475835,58.60431978152883],[-135.87435874358744,58.60938551333848],[-135.88155881558816,58.611074090608355],[-135.88515885158853,58.61276266787823],[-135.9391593915939,58.681994335943415],[-135.95355953559536,58.69381437683262],[-135.97875978759788,58.69719153137237],[-135.97515975159752,58.70225726318202],[-135.9679596795968,58.71070014953142],[-135.96435964359642,58.71576588134107],[-135.97515975159752,58.72927449950015],[-135.98955989559894,58.744471694929075],[-136.00756007560076,58.75966889035803],[-136.0219602196022,58.76473462216768],[-136.03276032760328,58.771488931247205],[-136.0579605796058,58.80357189937499],[-136.07236072360723,58.81201478572439],[-136.06156061560614,58.825523403883466],[-135.96435964359642,58.86267210382087],[-135.94635946359463,58.8711149901703],[-135.92835928359284,58.88124645378957],[-135.93555935559357,58.86436068109077],[-135.91755917559175,58.86267210382087],[-135.7591575915759,58.888000762869126],[-135.77355773557736,58.904886535567954],[-135.79875798757988,58.913329421917354],[-135.93555935559357,58.91670657645713],[-135.96435964359642,58.92177230826678],[-135.95715957159572,58.913329421917354],[-135.949959499595,58.9082636901077],[-135.92835928359284,58.90150938102818],[-135.94275942759427,58.891377917408875],[-136.01476014760146,58.85929494928112],[-136.02916029160292,58.855917794741345],[-136.0471604716047,58.860983526550996],[-136.0471604716047,58.869426412900395],[-136.05076050760508,58.87280356744017],[-136.05436054360544,58.8795578765197],[-136.05436054360544,58.888000762869126],[-136.05076050760508,58.896443649218526],[-136.03636036360365,58.91501799918723],[-136.03276032760328,58.92177230826678],[-136.0579605796058,58.93021519461618],[-136.0759607596076,58.94710096731501],[-136.0939609396094,58.96567531728371],[-136.10116101161012,58.98424966725244],[-136.10476104761048,58.99775828541149],[-136.10476104761048,59.007889749030795],[-136.10476104761048,59.01464405811032],[-136.11556115561154,59.02477552172962],[-136.12636126361264,59.03321840807902],[-136.14076140761406,59.0365955626188],[-136.15876158761588,59.038284139888674],[-136.16956169561695,59.03321840807902],[-136.15516155161552,59.02308694445972],[-136.14076140761406,59.00620117176089],[-136.13716137161373,58.989315399062065],[-136.1479614796148,58.97749535817289],[-136.14076140761406,58.95554385366444],[-136.16596165961658,58.94203523550536],[-136.2019620196202,58.93359234915596],[-136.22356223562235,58.92177230826678],[-136.15156151561516,58.931903771886056],[-136.1191611916119,58.93359234915596],[-136.10116101161012,58.91501799918723],[-136.11556115561154,58.909952267377605],[-136.12276122761227,58.9082636901077],[-136.12276122761227,58.90150938102818],[-136.10476104761048,58.89475507194865],[-136.09756097560975,58.87618072197995],[-136.10116101161012,58.85422921747147],[-136.10836108361084,58.833966290232866],[-136.13356133561336,58.80526047664486],[-136.13716137161373,58.79512901302556],[-136.13716137161373,58.78668612667616],[-136.14076140761406,58.78162039486651],[-136.1479614796148,58.77824324032673],[-136.15876158761588,58.76811177670746],[-136.20916209162093,58.75122600400863],[-136.27036270362703,58.76473462216768],[-136.3819638196382,58.806949053914735],[-136.3819638196382,58.81201478572439],[-136.31356313563134,58.81032620845451],[-136.27756277562776,58.81370336299429],[-136.25956259562597,58.825523403883466],[-136.28836288362885,58.825523403883466],[-136.37476374763747,58.833966290232866],[-136.4251642516425,58.82383482661356],[-136.45036450364503,58.82383482661356],[-136.47556475564755,58.83734344477264],[-136.49356493564935,58.86436068109077],[-136.5079650796508,58.904886535567954],[-136.51156511565114,58.94203523550536],[-136.49356493564935,58.96398674001384],[-136.49356493564935,58.97074104909336],[-136.5259652596526,58.967363894553614],[-136.5439654396544,58.95723243093431],[-136.57276572765727,58.91501799918723],[-136.63756637566377,58.967363894553614],[-136.67356673566735,59.002824017221144],[-136.69156691566917,59.0180212126501],[-136.7131671316713,59.02477552172962],[-136.60876608766088,58.9082636901077],[-136.6339663396634,58.891377917408875],[-136.65916659166592,58.8981322264884],[-136.68076680766808,58.913329421917354],[-136.7059670596706,58.92177230826678],[-136.71676716767166,58.923460885536656],[-136.73476734767348,58.926838040076404],[-136.75276752767527,58.93359234915596],[-136.7779677796778,58.94878954458488],[-136.82836828368283,58.95723243093431],[-136.8427684276843,58.96229816274396],[-136.8751687516875,58.98424966725244],[-136.91836918369182,59.00113543995127],[-136.9471694716947,59.02308694445972],[-137.0119701197012,59.05348133531763],[-137.03357033570336,59.06698995347668],[-137.04437044370445,59.06867853074655],[-137.05877058770588,59.06361279893693],[-137.06237062370624,59.0551699125875],[-137.06237062370624,59.043349871698325],[-137.05157051570515,59.038284139888674],[-137.029970299703,59.03321840807902],[-137.00837008370084,59.021398367189846],[-136.97236972369723,58.99100397633197],[-136.92916929169292,58.96905247182349],[-136.91116911169112,58.953855276394535],[-136.9039690396904,58.931903771886056],[-136.91836918369182,58.92008373099688],[-137.0119701197012,58.92177230826678],[-137.029970299703,58.913329421917354],[-137.06597065970658,58.87449214471005],[-137.0839708397084,58.869426412900395],[-137.1019710197102,58.85929494928112],[-137.13077130771308,58.833966290232866],[-137.13077130771308,58.825523403883466],[-137.10917109171092,58.828900558423214],[-137.08757087570876,58.83734344477264],[-137.06597065970658,58.85085206293169],[-137.03357033570336,58.877869299249824],[-137.01557015570154,58.888000762869126],[-136.9939699396994,58.89306649467878],[-136.89676896768967,58.89306649467878],[-136.8427684276843,58.882935031059475],[-136.82836828368283,58.877869299249824],[-136.81756817568174,58.8711149901703],[-136.81396813968138,58.86267210382087],[-136.81036810368104,58.85422921747147],[-136.81036810368104,58.847474908391945],[-136.79956799567995,58.84072059931239],[-136.79236792367925,58.85422921747147],[-136.7779677796778,58.86604925836065],[-136.759967599676,58.87280356744017],[-136.73836738367385,58.87449214471005],[-136.72756727567275,58.8711149901703],[-136.69876698766987,58.85422921747147],[-136.67356673566735,58.85254064020157],[-136.66276662766626,58.85085206293169],[-136.6519665196652,58.84409775385217],[-136.64476644766447,58.83903202204252],[-136.62676626766267,58.83903202204252],[-136.60876608766088,58.83903202204252],[-136.58716587165873,58.84916348566182],[-136.57636576365763,58.84409775385217],[-136.56556565565654,58.83734344477264],[-136.55836558365584,58.833966290232866],[-136.54036540365405,58.828900558423214],[-136.48636486364865,58.80019474483521],[-136.4971649716497,58.784997549406285],[-136.51156511565114,58.77993181759663],[-136.52956529565296,58.78162039486651],[-136.54756547565475,58.77993181759663],[-136.54036540365405,58.771488931247205],[-136.56556565565654,58.78668612667616],[-136.58716587165873,58.80863763118464],[-136.61596615966158,58.825523403883466],[-136.64836648366483,58.820457672073815],[-136.64476644766447,58.806949053914735],[-136.62676626766267,58.80526047664486],[-136.57276572765727,58.77993181759663],[-136.58356583565836,58.77317750851708],[-136.59436594365943,58.771488931247205],[-136.60516605166052,58.771488931247205],[-136.61596615966158,58.771488931247205],[-136.56196561965618,58.7613574676279],[-136.5439654396544,58.75122600400863],[-136.52956529565296,58.75122600400863],[-136.52236522365223,58.74784884946885],[-136.51876518765187,58.74109454038933],[-136.52236522365223,58.736028808579675],[-136.5259652596526,58.730963076770024],[-136.5259652596526,58.7242087676905],[-136.51876518765187,58.71070014953142],[-136.5151651516515,58.70225726318202],[-136.5079650796508,58.69719153137237],[-136.489964899649,58.69719153137237],[-136.47556475564755,58.69212579956272],[-136.4539645396454,58.673551449594015],[-136.4359643596436,58.668485717784364],[-136.45036450364503,58.68874864502297],[-136.4719647196472,58.703945840451894],[-136.489964899649,58.72083161315072],[-136.50076500765007,58.74784884946885],[-136.49356493564935,58.749537426738726],[-136.38556385563857,58.72589734496037],[-136.37476374763747,58.72083161315072],[-136.36756367563675,58.71070014953142],[-136.35316353163532,58.70225726318202],[-136.34236342363423,58.69212579956272],[-136.3459634596346,58.678617181403666],[-136.35676356763568,58.67186287232414],[-136.39636396363963,58.65497709962531],[-136.45756457564576,58.62289413149753],[-136.489964899649,58.61276266787823],[-136.51876518765187,58.62120555422766],[-136.5259652596526,58.61445124514813],[-136.48636486364865,58.5958768951794],[-136.47556475564755,58.59249974063965],[-136.46476464764646,58.5958768951794],[-136.43236432364324,58.62120555422766],[-136.39996399964,58.62627128603731],[-136.37836378363784,58.61782839968788],[-136.35316353163532,58.606008358798704],[-136.3279632796328,58.60094262698905],[-136.33516335163353,58.60938551333848],[-136.35316353163532,58.62120555422766],[-136.35676356763568,58.62795986330718],[-136.35316353163532,58.638091326926485],[-136.34236342363423,58.641468481466234],[-136.33516335163353,58.641468481466234],[-136.3279632796328,58.641468481466234],[-136.3171631716317,58.638091326926485],[-136.30996309963098,58.63133701784696],[-136.30276302763028,58.62964844057706],[-136.29196291962919,58.63471417238671],[-136.29556295562955,58.646534213275885],[-136.2991629916299,58.65835425416506],[-136.29196291962919,58.668485717784364],[-136.28116281162812,58.660042831434964],[-136.1839618396184,58.61445124514813],[-136.1839618396184,58.60769693606858],[-136.1911619116191,58.60769693606858],[-136.19836198361983,58.606008358798704],[-136.21276212762126,58.60094262698905],[-136.2019620196202,58.59418831790953],[-136.17676176761768,58.57223681340105],[-136.16236162361622,58.57223681340105],[-136.14436144361443,58.57392539067092],[-136.129961299613,58.570548236131174],[-136.12276122761227,58.55535104070222],[-136.12636126361264,58.55197388616247],[-136.14076140761406,58.55197388616247],[-136.15156151561516,58.548596731622695],[-136.15516155161552,58.535088113463644],[-136.16236162361622,58.526645227114216],[-136.18036180361804,58.52326807257447],[-136.21276212762126,58.52495664984434],[-136.19836198361983,58.50975945441539],[-136.18036180361804,58.508070877145514],[-136.14436144361443,58.518202340764816],[-136.13356133561336,58.51989091803469],[-136.08316083160832,58.51651376349491],[-136.08316083160832,58.51144803168526],[-136.0867608676087,58.50469372260574],[-136.0867608676087,58.49793941352621],[-136.0867608676087,58.491185104446686],[-136.08316083160832,58.48443079536716],[-136.07956079560796,58.47936506355751],[-136.07236072360723,58.477676486287635],[-136.06156061560614,58.47429933174786],[-136.06156061560614,58.46585644539843],[-136.06156061560614,58.45741355904903],[-136.06156061560614,58.4489706726996],[-136.03636036360365,58.39831335460315],[-136.02556025560256,58.388181890983844],[-136.0579605796058,58.35947607739584],[-136.0759607596076,58.34596745923676],[-136.09756097560975,58.339213150157235],[-136.12636126361264,58.33583599561749],[-136.18756187561877,58.32232737745841],[-136.2739627396274,58.312195913839105],[-136.28836288362885,58.31895022291866],[-136.28476284762849,58.32908168653793],[-136.27036270362703,58.34090172742711],[-136.26676266762667,58.34596745923676],[-136.2739627396274,58.35947607739584],[-136.3279632796328,58.40844481822242],[-136.3279632796328,58.379739004634416],[-136.34236342363423,58.37636185009467],[-136.41076410764106,58.393247622793496],[-136.45756457564576,58.41688770457185],[-136.48276482764828,58.4219534363815],[-136.489964899649,58.42533059092125],[-136.4971649716497,58.4405277863502],[-136.50436504365044,58.442216363620076],[-136.5151651516515,58.43546205454055],[-136.51156511565114,58.428707745461026],[-136.50076500765007,58.415199127301975],[-136.50076500765007,58.38480473644407],[-136.5151651516515,58.379739004634416],[-136.5367653676537,58.38311615917419],[-136.56196561965618,58.37298469555489],[-136.5511655116551,58.37129611828502],[-136.54756547565475,58.366230386475365],[-136.54036540365405,58.36285323193559],[-136.5367653676537,58.35947607739584],[-136.5259652596526,58.35778750012594],[-136.5079650796508,58.34934461377654],[-136.50076500765007,58.34596745923676],[-136.47916479164792,58.34765603650666],[-136.47916479164792,58.352721768316314],[-136.48636486364865,58.36285323193559],[-136.48276482764828,58.37805042736454],[-136.4719647196472,58.38480473644407],[-136.46836468364683,58.38649331371394],[-136.4431644316443,58.38142758190432],[-136.41796417964179,58.38142758190432],[-136.41076410764106,58.379739004634416],[-136.40716407164072,58.374673272824765],[-136.40356403564036,58.369607541015114],[-136.40356403564036,58.36791896374524],[-136.37836378363784,58.35947607739584],[-136.36396363963638,58.352721768316314],[-136.36036360363602,58.34090172742711],[-136.36036360363602,58.31557306837888],[-136.3711637116371,58.30037587294993],[-136.39276392763927,58.30206445021983],[-136.4359643596436,58.31895022291866],[-136.49356493564935,58.31388449110901],[-136.51156511565114,58.31895022291866],[-136.51876518765187,58.32401595472828],[-136.52236522365223,58.330770263807835],[-136.5259652596526,58.33752457288736],[-136.5367653676537,58.339213150157235],[-136.5511655116551,58.34090172742711],[-136.56196561965618,58.344278881966886],[-136.57276572765727,58.34934461377654],[-136.58356583565836,58.35778750012594],[-136.5979659796598,58.35947607739584],[-136.61956619566195,58.35441034558619],[-136.65556655566556,58.339213150157235],[-136.57636576365763,58.281801522981226],[-136.56556565565654,58.27842436844145],[-136.56196561965618,58.271670059361924],[-136.56196561965618,58.25816144120287],[-136.56556565565654,58.249718554853445],[-136.5907659076591,58.227767050344994],[-136.5979659796598,58.22270131853534],[-136.6339663396634,58.227767050344994],[-136.63756637566377,58.22607847307509],[-136.6519665196652,58.22101274126544],[-136.66636666366662,58.22101274126544],[-136.67716677166771,58.22438989580522],[-136.69156691566917,58.23114420488474],[-136.7059670596706,58.24802997758357],[-136.7131671316713,58.268292904822175],[-136.70236702367023,58.2834901002511],[-136.669966699667,58.285178677521],[-136.669966699667,58.290244409330654],[-136.67356673566735,58.30206445021983],[-136.67716677166771,58.30544160475958],[-136.6951669516695,58.298687295680054],[-136.70956709567096,58.29699871841018],[-136.7239672396724,58.30206445021983],[-136.73116731167312,58.312195913839105],[-136.7419674196742,58.30713018202948],[-136.7491674916749,58.30037587294993],[-136.76356763567634,58.29699871841018],[-136.77436774367743,58.298687295680054],[-136.78516785167852,58.30713018202948],[-136.7779677796778,58.312195913839105],[-136.77076770767707,58.31895022291866],[-136.77436774367743,58.32739310926806],[-136.7887678876789,58.33245884107771],[-136.82476824768247,58.31895022291866],[-136.849968499685,58.32739310926806],[-136.8427684276843,58.330770263807835],[-136.8319683196832,58.34259030469701],[-136.82836828368283,58.34596745923676],[-136.83556835568356,58.361164654665714],[-136.84636846368463,58.37298469555489],[-136.86076860768608,58.38311615917419],[-136.8751687516875,58.388181890983844],[-136.87876878768787,58.36285323193559],[-136.88956889568897,58.34934461377654],[-136.9039690396904,58.35103319104641],[-136.91116911169112,58.37129611828502],[-136.9219692196922,58.388181890983844],[-136.9471694716947,58.40000193187302],[-136.97956979569796,58.40675624095255],[-137.00837008370084,58.40844481822242],[-137.02277022770227,58.40675624095255],[-137.06597065970658,58.39493620006337],[-137.07677076770767,58.393247622793496],[-137.11277112771128,58.39493620006337],[-137.13077130771308,58.401690509142895],[-137.1991719917199,58.442216363620076],[-137.26037260372604,58.455724981779156],[-137.29997299973,58.47429933174786],[-137.32157321573214,58.48105364082738],[-137.33957339573396,58.494562258986434],[-137.3467734677347,58.49793941352621],[-137.36117361173612,58.499627990796085],[-137.47277472774726,58.553662463432346],[-137.51957519575194,58.56548250432152],[-137.56277562775628,58.59081116336975],[-137.5879758797588,58.60094262698905],[-137.62037620376202,58.60263120425893],[-137.6311763117631,58.606008358798704],[-137.62397623976238,58.61445124514813],[-137.6059760597606,58.61782839968788],[-137.56997569975698,58.61782839968788],[-137.55557555575555,58.62120555422766],[-137.51237512375124,58.643157058736136],[-137.4979749797498,58.64822279054576],[-137.48357483574836,58.64991136781566],[-137.4511745117451,58.64991136781566],[-137.43677436774368,58.65497709962531],[-137.45837458374584,58.67186287232414],[-137.4691746917469,58.68030575867354],[-137.479974799748,58.68368291321332],[-137.49437494374945,58.68030575867354],[-137.5231752317523,58.66510856324459],[-137.53757537575376,58.66173140870484],[-137.56637566375665,58.65835425416506],[-137.6419764197642,58.63471417238671],[-137.67077670776706,58.633025595116834],[-137.6779767797678,58.646534213275885],[-137.68157681576815,58.66679714051449],[-137.7031770317703,58.687060067753066],[-137.8687786877869,58.766423199437554],[-137.8939789397894,58.78162039486651],[-137.90117901179013,58.78668612667616],[-137.91557915579156,58.79006328121591],[-137.92637926379263,58.79512901302556],[-137.929979299793,58.80357189937499],[-137.929979299793,58.81539194026416],[-137.92277922779226,58.833966290232866],[-137.92277922779226,58.847474908391945],[-137.94437944379445,58.888000762869126],[-137.9839798397984,58.92008373099688],[-138.18558185581855,59.02477552172962],[-138.25038250382505,59.048415603507976],[-138.28278282782827,59.06192422166703],[-138.28638286382863,59.08049857163576],[-138.3619836198362,59.08049857163576],[-138.3979839798398,59.083875726175506],[-138.43038430384303,59.09400718979481],[-138.3979839798398,59.092318612524934],[-138.38358383583835,59.09400718979481],[-138.36918369183692,59.100761498874334],[-138.42678426784266,59.11089296249364],[-138.559985599856,59.105827230683985],[-138.61038610386103,59.127778735192464],[-138.5419854198542,59.12271300338281],[-138.5059850598506,59.12440158065269],[-138.49158491584916,59.13791019881177],[-138.49518495184952,59.14973023970094],[-138.49518495184952,59.15310739424069],[-138.48438484384843,59.16492743512987],[-138.47358473584734,59.16999316693952],[-138.44478444784448,59.176747476019045],[-138.43758437584376,59.1835017850986],[-138.44838448384485,59.191944671448],[-138.559985599856,59.18012463055882],[-138.58158581585815,59.17168174420942],[-138.5959859598596,59.168304589669646],[-138.62838628386282,59.168304589669646],[-138.64278642786428,59.16661601239977],[-138.65358653586537,59.163238857859994],[-138.64278642786428,59.154795971510595],[-138.6319863198632,59.14297593062142],[-138.6571865718657,59.15817312605034],[-138.68958689586896,59.176747476019045],[-138.72558725587254,59.191944671448],[-138.76878768787688,59.20038755779743],[-138.81558815588156,59.21389617595648],[-138.8371883718837,59.22740479411553],[-138.9811898118981,59.274684957672264],[-139.20439204392045,59.320276543959096],[-139.18279182791827,59.32534227576875],[-139.13959139591395,59.310145080339794],[-139.1179911799118,59.31352223487954],[-139.1539915399154,59.33547373938802],[-139.16479164791647,59.34053947119767],[-139.18279182791827,59.34053947119767],[-139.20079200792009,59.34053947119767],[-139.21879218792188,59.34053947119767],[-139.2331923319233,59.3472937802772],[-139.23679236792367,59.36080239843628],[-139.22959229592294,59.3675567075158],[-139.2259922599226,59.37431101659533],[-139.24039240392403,59.381065325674854],[-139.2547925479255,59.381065325674854],[-139.27279272792728,59.377688171135105],[-139.2871928719287,59.372622439325454],[-139.29439294392944,59.364179552976026],[-139.30519305193053,59.350670934816975],[-139.3267932679327,59.355736666626626],[-139.3519935199352,59.3675567075158],[-139.37719377193773,59.37431101659533],[-139.40959409594097,59.377688171135105],[-139.44559445594456,59.38781963475441],[-139.48159481594814,59.40132825291346],[-139.5067950679507,59.41652544834241],[-139.42759427594277,59.40132825291346],[-139.3879938799388,59.382753902944756],[-139.36639366393663,59.381065325674854],[-139.3411934119341,59.38444248021463],[-139.32319323193232,59.39626252110381],[-139.36279362793627,59.41145971653276],[-139.3879938799388,59.41483687107251],[-139.4059940599406,59.41145971653276],[-139.4239942399424,59.40639398472311],[-139.4419944199442,59.408082561992984],[-139.46359463594635,59.413148293802635],[-139.5067950679507,59.43003406650146],[-139.52479524795248,59.440165530120765],[-139.53559535595355,59.443542684660514],[-139.59679596795968,59.45705130281959],[-139.8559985599856,59.546545898123355],[-139.83439834398342,59.55836593901256],[-139.7659976599766,59.54823447539326],[-139.73359733597334,59.55330020720291],[-139.7371973719737,59.55667736174266],[-139.74079740797407,59.56680882536196],[-139.71919719197192,59.56680882536196],[-139.7047970479705,59.57018597990174],[-139.69039690396903,59.58031744352101],[-139.67959679596797,59.595514638949965],[-139.66879668796687,59.58369459806079],[-139.6579965799658,59.57525171171139],[-139.64359643596435,59.573563134441486],[-139.62919629196293,59.58031744352101],[-139.63639636396363,59.587071752600565],[-139.6219962199622,59.595514638949965],[-139.57519575195752,59.61408898891867],[-139.58959589595895,59.622531875268095],[-139.5787957879579,59.63941764796692],[-139.52839528395285,59.67825492517423],[-139.48159481594814,59.70358358422246],[-139.47439474394744,59.71709220238151],[-139.5391953919539,59.75761805685872],[-139.54639546395464,59.76437236593824],[-139.5607956079561,59.77281525228764],[-139.57159571595716,59.78970102498647],[-139.58239582395822,59.8268497249239],[-139.60759607596077,59.86399842486131],[-139.6219962199622,59.89101566117944],[-139.61479614796147,59.902835702068614],[-139.6039960399604,59.90621285660839],[-139.58239582395822,59.92478720657709],[-139.57159571595716,59.929852938386745],[-139.5607956079561,59.93154151565662],[-139.54639546395464,59.93660724746627],[-139.52119521195212,59.951804442895224],[-139.49239492394923,59.98388741102298],[-139.47439474394744,59.99401887464228],[-139.44919449194492,59.98051025648323],[-139.4311943119431,59.965313061054275],[-139.369993699937,59.929852938386745],[-139.30519305193053,59.86399842486131],[-139.30159301593017,59.84880122943238],[-139.3339933399334,59.813341106764824],[-139.34479344793448,59.78632387044672],[-139.3411934119341,59.77281525228764],[-139.3339933399334,59.73735512962011],[-139.3411934119341,59.72722366600081],[-139.3411934119341,59.720469356921285],[-139.3267932679327,59.715403625111634],[-139.31959319593196,59.71033789330198],[-139.31239312393123,59.70527216149233],[-139.3087930879309,59.70020642968268],[-139.30159301593017,59.679943502444104],[-139.27639276392765,59.64617195704645],[-139.26559265592655,59.62084329799822],[-139.2871928719287,59.62084329799822],[-139.31239312393123,59.61577756618857],[-139.3339933399334,59.609023257109016],[-139.34479344793448,59.600580370759616],[-139.29079290792907,59.57694028898126],[-139.26919269192692,59.573563134441486],[-139.25839258392585,59.57862886625114],[-139.2259922599226,59.62084329799822],[-139.2331923319233,59.6326633388874],[-139.2619926199262,59.6596805752055],[-139.26559265592655,59.66643488428505],[-139.26559265592655,59.698517852412806],[-139.26919269192692,59.715403625111634],[-139.27279272792728,59.73060082054059],[-139.27999279992798,59.73566655235024],[-139.2871928719287,59.73735512962011],[-139.29079290792907,59.742420861429764],[-139.29439294392944,59.755929479588815],[-139.29079290792907,59.760995211398466],[-139.27639276392765,59.77619240682742],[-139.26919269192692,59.77956956136717],[-139.2619926199262,59.78632387044672],[-139.27999279992798,59.82009541584438],[-139.27999279992798,59.83360403400343],[-139.26559265592655,59.84204692035283],[-139.1719917199172,59.85048980670226],[-139.0351903519035,59.84711265216248],[-139.009990099901,59.84204692035283],[-138.97038970389704,59.8167182613046],[-138.94518945189452,59.8065867976853],[-138.919989199892,59.804898220415424],[-138.89838898388984,59.813341106764824],[-138.9091890918909,59.813341106764824],[-138.92358923589236,59.813341106764824],[-138.94518945189452,59.82009541584438],[-139.01359013590135,59.85724411578178],[-139.02799027990278,59.86230984759143],[-139.21879218792188,59.87075273394083],[-139.24039240392403,59.87750704302039],[-139.31959319593196,59.938295824736144],[-139.35559355593557,59.95011586562532],[-139.369993699937,59.9636244837844],[-139.38079380793806,59.978821679213326],[-139.39159391593915,59.99064172010253],[-139.4131941319413,60.00246176099171],[-139.46359463594635,60.01259322461098],[-139.48159481594814,60.022724688230284],[-139.5067950679507,60.04636477000864],[-139.52119521195212,60.05143050181829],[-139.54279542795427,60.04636477000864],[-139.54279542795427,60.03792188365924],[-139.5787957879579,60.00752749280136],[-139.58959589595895,59.987264565562754],[-139.5859958599586,59.965313061054275],[-139.5859958599586,59.95518159743497],[-139.59319593195931,59.951804442895224],[-139.62559625596256,59.95011586562532],[-139.6579965799658,59.943361556545796],[-139.7047970479705,59.92141005203732],[-139.73359733597334,59.899458547528866],[-139.79479794797948,59.85386696124203],[-139.84879848798488,59.82009541584438],[-139.9567995679957,59.79476675679612],[-140.0432004320043,59.769438097747894],[-140.13680136801366,59.74073228415989],[-140.25560255602556,59.71033789330198],[-140.3240032400324,59.70189500695258],[-140.50040500405004,59.70527216149233],[-140.61560615606157,59.70864931603211],[-140.6912069120691,59.71878077965141],[-140.76320763207633,59.72891224327071],[-140.8640086400864,59.74579801596954],[-141.01161011610117,59.78970102498647],[-141.1160111601116,59.809963952225075],[-141.27441274412743,59.84880122943238],[-141.35361353613536,59.86399842486131],[-141.42921429214292,59.872441311210736],[-141.45441454414544,59.88257277483004],[-141.4688146881469,59.902835702068614],[-141.4580145801458,59.916344320227694],[-141.43641436414364,59.92478720657709],[-141.41121411214112,59.929852938386745],[-141.43281432814328,59.91972147476744],[-141.44361443614434,59.91296716568792],[-141.45441454414544,59.902835702068614],[-141.43641436414364,59.89608139298909],[-141.4148141481415,59.899458547528866],[-141.35361353613536,59.91972147476744],[-141.34641346413463,59.92478720657709],[-141.33921339213393,59.92816436111687],[-141.3140131401314,59.93154151565662],[-141.28521285212852,59.93998440200605],[-141.27441274412743,59.943361556545796],[-141.26721267212673,59.95518159743497],[-141.26361263612637,59.9737559474037],[-141.260012600126,59.99401887464228],[-141.260012600126,60.01259322461098],[-141.26721267212673,60.02947899730981],[-141.2780127801278,60.04467619273876],[-141.29241292412922,60.05649623362794],[-141.31041310413104,60.06662769724724],[-141.30321303213032,60.06662769724724],[-141.28161281612816,60.06662769724724],[-141.30681306813068,60.08689062448585],[-141.34641346413463,60.09871066537502],[-141.37881378813788,60.11390786080395],[-141.37881378813788,60.14261367439195],[-141.44361443614434,60.13585936531243],[-141.4760147601476,60.125727901693125],[-141.4760147601476,60.1105307062642],[-141.45441454414544,60.07844773813642],[-141.4472144721447,60.07338200632677],[-141.43281432814328,60.07169342905689],[-141.41841418414185,60.068316274517116],[-141.40041400414003,60.05311907908819],[-141.3860138601386,60.03454472911946],[-141.3932139321393,60.022724688230284],[-141.4148141481415,60.014281801880884],[-141.47241472414726,60.00921607007123],[-141.61281612816128,59.96869021559405],[-141.67401674016742,59.961935906514526],[-141.73161731617316,59.9636244837844],[-141.89361893618937,60.00752749280136],[-141.96921969219693,60.027790420039935],[-142.10242102421023,60.03454472911946],[-142.1960219602196,60.05311907908819],[-142.35082350823507,60.068316274517116],[-142.48762487624876,60.07507058359664],[-142.63882638826388,60.10208781991477],[-142.79722797227973,60.112219283534074],[-142.9808298082981,60.09195635629547],[-143.19683196831969,60.068316274517116],[-143.4632346323463,60.05311907908819],[-143.61083610836107,60.049741924548414],[-143.74763747637476,60.02610184277006],[-143.86283862838627,60.000773183721805],[-143.91683916839168,59.997396029182056],[-144.04284042840428,60.027790420039935],[-144.1040410404104,60.03116757457971],[-144.2480424804248,60.032856151849586],[-144.1328413284133,60.03961046092911],[-144.0320403204032,60.03454472911946],[-144.00324003240033,60.03961046092911],[-144.02124021240212,60.06156196543759],[-144.050040500405,60.08013631540629],[-144.2048420484205,60.14599082893173],[-144.21924219242192,60.14936798347148],[-144.2408424084241,60.14936798347148],[-144.25164251642516,60.15443371528113],[-144.2408424084241,60.166253756170306],[-144.2048420484205,60.183139528869134],[-144.19764197641976,60.18482810613904],[-144.19044190441906,60.18651668340891],[-144.1868418684187,60.193270992488436],[-144.19044190441906,60.201713878837865],[-144.19764197641976,60.20509103337761],[-144.2048420484205,60.20509103337761],[-144.2120421204212,60.20002530156796],[-144.2480424804248,60.188205260678785],[-144.34884348843488,60.201713878837865],[-144.38844388443886,60.19664814702821],[-144.3740437404374,60.183139528869134],[-144.44964449644496,60.17638521978961],[-144.4640446404464,60.179762374329385],[-144.47844478444784,60.18651668340891],[-144.48564485644857,60.19664814702821],[-144.47484474844748,60.20509103337761],[-144.48924489244894,60.21691107426679],[-144.5180451804518,60.210156765187264],[-144.54684546845468,60.19664814702821],[-144.5720457204572,60.18989383794869],[-144.60084600846008,60.19664814702821],[-144.65844658446585,60.215222496996915],[-144.68724687246873,60.22535396061622],[-144.67284672846728,60.22704253788609],[-144.6620466204662,60.223665383346344],[-144.65484654846549,60.22028822880657],[-144.64044640446406,60.21691107426679],[-144.64044640446406,60.22197680607644],[-144.6620466204662,60.245616887854794],[-144.69444694446943,60.272634124172924],[-144.73764737647377,60.2844541650621],[-144.74484744847447,60.28951989687175],[-144.75564755647557,60.29627420595128],[-144.770047700477,60.30302851503083],[-144.78444784447845,60.30640566957058],[-144.7952479524795,60.30302851503083],[-144.80964809648097,60.2945856286814],[-144.82044820448203,60.29796278322118],[-144.82764827648276,60.30302851503083],[-144.83844838448385,60.30302851503083],[-144.84924849248492,60.30133993776093],[-144.86364863648637,60.304717092300706],[-144.87444874448744,60.30302851503083],[-144.8888488884889,60.29289705141153],[-144.9068490684907,60.29289705141153],[-144.91764917649175,60.2945856286814],[-144.92844928449284,60.29796278322118],[-144.9428494284943,60.30640566957058],[-144.93564935649357,60.31653713318988],[-144.91764917649175,60.326668596809185],[-144.8888488884889,60.35030867858754],[-144.88524885248853,60.35537441039719],[-144.8888488884889,60.36381729674659],[-144.8960489604896,60.36550587401649],[-144.90324903249032,60.36550587401649],[-144.9068490684907,60.36888302855624],[-144.9140491404914,60.38070306944542],[-144.9140491404914,60.38745737852494],[-144.89964899648996,60.39590026487437],[-144.88524885248853,60.40096599668402],[-144.87084870848707,60.402654573953896],[-144.83844838448385,60.402654573953896],[-144.83844838448385,60.40940888303342],[-144.860048600486,60.41785176938285],[-144.84204842048422,60.43642611935155],[-144.79164791647918,60.465131932939556],[-144.7952479524795,60.47526339655886],[-144.7952479524795,60.490460591987784],[-144.79884798847988,60.49890347833721],[-144.83124831248313,60.47695197382873],[-144.85284852848528,60.47019766474921],[-144.87444874448744,60.47188624201908],[-144.88524885248853,60.48539486017816],[-144.8780487804878,60.495526323797435],[-144.87084870848707,60.50228063287699],[-144.860048600486,60.50565778741674],[-144.84564845648455,60.517477828305914],[-144.8348483484835,60.522543560115565],[-144.83124831248313,60.52592071465534],[-144.83124831248313,60.53098644646499],[-144.83124831248313,60.53774075554452],[-144.83124831248313,60.544495064624044],[-144.82764827648276,60.54618364189392],[-144.81684816848167,60.55124937370357],[-144.81684816848167,60.563069414592746],[-144.82044820448203,60.58333234183135],[-144.81684816848167,60.59515238272053],[-144.80964809648097,60.60359526906993],[-144.79164791647918,60.615415309959104],[-144.770047700477,60.62554677357841],[-144.7628476284763,60.63061250538806],[-144.75564755647557,60.642432546277234],[-144.75564755647557,60.65256400989654],[-144.7628476284763,60.66438405078571],[-144.75924759247593,60.67282693713514],[-144.74484744847447,60.67620409167489],[-144.7160471604716,60.67113835986524],[-144.68724687246873,60.66438405078571],[-144.6620466204662,60.65931831897606],[-144.63324633246333,60.669449782595365],[-144.61884618846187,60.67958124621467],[-144.6152461524615,60.68802413256407],[-144.61164611646117,60.69815559618337],[-144.6152461524615,60.71335279161232],[-144.62244622446224,60.71672994615207],[-144.63324633246333,60.71335279161232],[-144.70524705247053,60.70322132799302],[-144.7340473404734,60.69477844164359],[-144.75564755647557,60.68464697802432],[-144.770047700477,60.669449782595365],[-144.78444784447845,60.65087543262666],[-144.80244802448024,60.63567823719771],[-144.85644856448565,60.62216961903866],[-144.87084870848707,60.60528384633983],[-144.8780487804878,60.585020919101225],[-144.89244892448926,60.5681351464024],[-144.91044910449105,60.558003682783095],[-144.97524975249752,60.53774075554452],[-145.00045000450004,60.53267502373487],[-145.01845018450183,60.52592071465534],[-145.04005040050401,60.51072351922639],[-145.07245072450723,60.47864055109861],[-145.09765097650975,60.44486900570095],[-145.11565115651155,60.429671810272026],[-145.16245162451625,60.41785176938285],[-145.23445234452345,60.36888302855624],[-145.27045270452703,60.357062987667064],[-145.30645306453064,60.35537441039719],[-145.38925389253893,60.362128719476715],[-145.40365403654036,60.36550587401649],[-145.41445414454145,60.37226018309602],[-145.4360543605436,60.38576880125507],[-145.46845468454683,60.392523110334594],[-145.48285482854828,60.39590026487437],[-145.490054900549,60.402654573953896],[-145.49725497254974,60.4229175011925],[-145.50445504455044,60.4313603875419],[-145.51525515255153,60.43642611935155],[-145.55125551255512,60.4414918511612],[-145.57285572855727,60.451623314780505],[-145.67365673656735,60.45837762386003],[-145.73125731257312,60.465131932939556],[-145.80325803258032,60.455000469320254],[-145.86445864458645,60.44824616024073],[-145.940059400594,60.45668904659016],[-145.940059400594,60.47188624201908],[-145.9220592205922,60.48032912836851],[-145.87885878858788,60.487083437448035],[-145.86445864458645,60.495526323797435],[-145.84645846458466,60.50734636468661],[-145.77085770857707,60.54280648735417],[-145.68085680856808,60.60866100087958],[-145.67365673656735,60.61879246449888],[-145.66645666456665,60.63567823719771],[-145.64845648456486,60.64580970081701],[-145.63045630456304,60.65256400989654],[-145.61965619656195,60.66269547351584],[-145.63045630456304,60.67958124621467],[-145.6520565205652,60.674515514405016],[-145.69165691656917,60.655941164436314],[-145.8428584285843,60.620481041768755],[-145.87885878858788,60.62892392811818],[-145.83925839258393,60.639055391737486],[-145.81765817658177,60.64918685535676],[-145.80325803258032,60.66269547351584],[-145.82485824858247,60.66438405078571],[-145.86085860858608,60.655941164436314],[-145.87885878858788,60.66269547351584],[-145.85725857258572,60.67620409167489],[-145.84645846458466,60.68633555529419],[-145.83925839258393,60.69815559618337],[-145.85725857258572,60.69477844164359],[-145.88245882458824,60.68633555529419],[-145.9040590405904,60.67282693713514],[-145.92565925659255,60.64580970081701],[-145.9508595085951,60.63736681446758],[-146.00486004860048,60.63567823719771],[-145.9940599405994,60.64918685535676],[-145.98325983259832,60.65762974170619],[-145.95445954459544,60.669449782595365],[-145.94365943659437,60.677892668944764],[-145.92565925659255,60.696467018913495],[-145.9148591485915,60.70322132799302],[-145.940059400594,60.70828705980267],[-145.96525965259653,60.69815559618337],[-145.9940599405994,60.682958400754416],[-146.01566015660157,60.67620409167489],[-146.04446044460445,60.67282693713514],[-146.19926199261994,60.63736681446758],[-146.2388623886239,60.633989659927835],[-146.25686256862568,60.64580970081701],[-146.25686256862568,60.64918685535676],[-146.26046260462604,60.65087543262666],[-146.2640626406264,60.65425258716641],[-146.2640626406264,60.65931831897606],[-146.26046260462604,60.66269547351584],[-146.24606246062461,60.66438405078571],[-146.2388623886239,60.66607262805559],[-146.23166231662316,60.67282693713514],[-146.11646116461165,60.72179567796172],[-146.08046080460804,60.726861409771374],[-146.06966069660697,60.73023856431115],[-146.06246062460625,60.73868145066055],[-146.05886058860588,60.74881291427985],[-146.05166051660518,60.75219006881963],[-146.02646026460263,60.745435759740076],[-146.01926019260193,60.75219006881963],[-146.01926019260193,60.75725580062925],[-146.03726037260373,60.77920730513773],[-146.03366033660336,60.78765019148716],[-146.030060300603,60.794404500566685],[-146.03726037260373,60.799470232376336],[-146.04446044460445,60.80115880964621],[-146.05166051660518,60.80115880964621],[-146.05526055260552,60.799470232376336],[-146.05886058860588,60.79609307783656],[-146.06966069660697,60.77920730513773],[-146.0948609486095,60.762321532438904],[-146.14166141661417,60.745435759740076],[-146.1668616686167,60.740370027930425],[-146.18126181261812,60.7437471824702],[-146.18126181261812,60.753878646089504],[-146.15966159661596,60.767387264248555],[-146.210062100621,60.76063295516903],[-146.2208622086221,60.75556722335938],[-146.23166231662316,60.74712433700998],[-146.2388623886239,60.736992873390676],[-146.24966249662498,60.72854998704125],[-146.2640626406264,60.7251728325015],[-146.29646296462965,60.726861409771374],[-146.30726307263072,60.731927141581025],[-146.31086310863108,60.745435759740076],[-146.31086310863108,60.758944377899155],[-146.30366303663038,60.76569868697868],[-146.2928629286293,60.77076441878833],[-146.28566285662856,60.77920730513773],[-146.31446314463145,60.772452996058206],[-146.35406354063542,60.7336157188509],[-146.390063900639,60.72179567796172],[-146.4188641886419,60.70659848253277],[-146.4260642606426,60.701532750723146],[-146.43686436864368,60.696467018913495],[-146.48366483664836,60.68633555529419],[-146.49446494464945,60.68633555529419],[-146.5160651606516,60.69815559618337],[-146.54846548465486,60.701532750723146],[-146.64566645666457,60.69815559618337],[-146.6528665286653,60.69984417345324],[-146.6528665286653,60.70659848253277],[-146.6528665286653,60.71166421434242],[-146.65646656466564,60.718418523421974],[-146.66366663666636,60.7251728325015],[-146.6960669606696,60.745435759740076],[-146.6780667806678,60.75219006881963],[-146.660066600666,60.75050149154973],[-146.6420664206642,60.740370027930425],[-146.62766627666275,60.731927141581025],[-146.62046620466205,60.75219006881963],[-146.6168661686617,60.76063295516903],[-146.6060660606606,60.767387264248555],[-146.59166591665917,60.76569868697868],[-146.56286562865628,60.75050149154973],[-146.5340653406534,60.758944377899155],[-146.50526505265051,60.7437471824702],[-146.49446494464945,60.74881291427985],[-146.4908649086491,60.76063295516903],[-146.50526505265051,60.76907584151843],[-146.52326523265234,60.772452996058206],[-146.53766537665376,60.772452996058206],[-146.5160651606516,60.780895882407634],[-146.4908649086491,60.77920730513773],[-146.4440644406444,60.772452996058206],[-146.4260642606426,60.77414157332808],[-146.38646386463864,60.78427303694738],[-146.34326343263433,60.789338768757034],[-146.2640626406264,60.81129027326551],[-146.19566195661957,60.81973315961491],[-146.19566195661957,60.82817604596434],[-146.2280622806228,60.83155320050409],[-146.2388623886239,60.84168466412339],[-146.22446224462243,60.85012755047282],[-146.19566195661957,60.85519328228247],[-146.0948609486095,60.84168466412339],[-146.22446224462243,60.892341982219875],[-146.25326253262534,60.88558767314035],[-146.2820628206282,60.85857043682222],[-146.3180631806318,60.83661893231374],[-146.35766357663576,60.82311031415469],[-146.4008640086401,60.81973315961491],[-146.4008640086401,60.82817604596434],[-146.39726397263973,60.83155320050409],[-146.39366393663937,60.834930355043866],[-146.38646386463864,60.84843897320292],[-146.51246512465124,60.81804458234504],[-146.55926559265592,60.82817604596434],[-146.55566555665555,60.84506181866317],[-146.56646566465665,60.85350470501257],[-146.58446584465844,60.85350470501257],[-146.60246602466026,60.84506181866317],[-146.62046620466205,60.83155320050409],[-146.62766627666275,60.82648746869447],[-146.63126631266312,60.834930355043866],[-146.62766627666275,60.85519328228247],[-146.60966609666096,60.86363616863187],[-146.6060660606606,60.86870190044152],[-146.60966609666096,60.87714478679092],[-146.62046620466205,60.883899095870476],[-146.63126631266312,60.887276250410224],[-146.6420664206642,60.88896482768013],[-146.65646656466564,60.88558767314035],[-146.66726667266673,60.8805219413307],[-146.68526685266852,60.8805219413307],[-146.70326703267034,60.88896482768013],[-146.70326703267034,60.892341982219875],[-146.71766717667177,60.9092277549187],[-146.7248672486725,60.91598206399823],[-146.7320673206732,60.919359218538006],[-146.73566735667356,60.92442495034766],[-146.73566735667356,60.93455641396696],[-146.75366753667538,60.954819341205535],[-146.75366753667538,60.96495080482484],[-146.72846728467283,60.96495080482484],[-146.7140671406714,60.95988507301519],[-146.69246692466925,60.94806503212601],[-146.6060660606606,60.93793356850671],[-146.58446584465844,60.94468787758623],[-146.62046620466205,60.954819341205535],[-146.66726667266673,60.963262227554964],[-146.69966699666998,60.976770845714015],[-146.69246692466925,61.00209950476224],[-146.68526685266852,61.012230968381544],[-146.67446674466746,61.03249389562015],[-146.66366663666636,61.04093678196955],[-146.6420664206642,61.04262535923945],[-146.59166591665917,61.03249389562015],[-146.57366573665738,61.0274281638105],[-146.570065700657,61.030805318350275],[-146.56646566465665,61.04093678196955],[-146.56646566465665,61.0460025137792],[-146.60966609666096,61.052756822858726],[-146.63126631266312,61.05951113193828],[-146.64926649266494,61.07301975009733],[-146.55566555665555,61.08652836825638],[-146.2820628206282,61.08146263644673],[-146.23526235262352,61.09497125460581],[-146.27846278462783,61.12198849092394],[-146.30006300063002,61.132119954543214],[-146.3252632526325,61.137185686352865],[-146.38286382863828,61.133808531813116],[-146.43326433264332,61.13887426362277],[-146.49446494464945,61.133808531813116],[-146.58446584465844,61.137185686352865],[-146.60966609666096,61.13043137727334],[-146.63126631266312,61.11861133638416],[-146.67446674466746,61.088216945526284],[-146.72126721267213,61.0645768637479],[-146.81486814868148,61.03249389562015],[-146.85446854468546,61.00547665930202],[-146.87246872468725,60.985213732063414],[-146.89046890468904,60.97170511390436],[-146.9120691206912,60.96157365028506],[-146.9480694806948,60.949753609395884],[-146.9768697686977,60.946376454856136],[-147.00567005670058,60.94806503212601],[-147.03087030870307,60.95819649574531],[-146.9948699486995,60.98352515479354],[-146.98046980469803,60.998722350222494],[-146.9840698406984,61.00547665930202],[-147.00567005670058,61.00716523657189],[-147.00927009270092,61.00547665930202],[-147.01647016470164,61.00209950476224],[-147.01647016470164,60.998722350222494],[-147.01647016470164,60.99365661841284],[-147.020070200702,60.99196804114297],[-147.03447034470344,60.981836577523666],[-147.04527045270453,60.97845942298389],[-147.05967059670596,60.97845942298389],[-147.0488704887049,60.99196804114297],[-147.04167041670416,61.00209950476224],[-147.0488704887049,61.01054239111167],[-147.08847088470884,61.01560812292132],[-147.09927099270993,61.01560812292132],[-147.1208712087121,61.00209950476224],[-147.14967149671497,60.99196804114297],[-147.14967149671497,60.976770845714015],[-147.1460714607146,60.963262227554964],[-147.1460714607146,60.954819341205535],[-147.1640716407164,60.95144218666579],[-147.18567185671856,60.95313076393566],[-147.20007200072,60.96157365028506],[-147.20727207272074,60.976770845714015],[-147.21087210872108,60.99534519568272],[-147.20727207272074,61.008853813841796],[-147.20367203672038,61.01391954565145],[-147.21087210872108,61.01391954565145],[-147.25407254072542,60.99365661841284],[-147.26487264872648,60.99196804114297],[-147.2792727927279,61.003788082032145],[-147.28647286472864,61.00716523657189],[-147.29367293672937,60.99534519568272],[-147.28647286472864,60.985213732063414],[-147.26487264872648,60.968327959364615],[-147.25767257672578,60.95819649574531],[-147.25767257672578,60.93793356850671],[-147.26847268472685,60.92949068215731],[-147.31167311673116,60.93117925942718],[-147.30447304473046,60.922736373077754],[-147.3440734407344,60.8990962912994],[-147.36567365673656,60.89065340495],[-147.3728737287373,60.8990962912994],[-147.38367383673835,60.914293486728354],[-147.40527405274054,60.91260490945848],[-147.43047430474303,60.905850600378955],[-147.44847448474485,60.90247344583918],[-147.43767437674376,60.92611352761753],[-147.380073800738,60.985213732063414],[-147.40167401674017,60.990279463873065],[-147.4160741607416,60.98014800025379],[-147.4340743407434,60.96495080482484],[-147.44847448474485,60.95819649574531],[-147.45927459274594,60.96495080482484],[-147.4520745207452,60.98352515479354],[-147.4340743407434,61.00209950476224],[-147.42327423274233,61.012230968381544],[-147.4520745207452,61.01054239111167],[-147.470074700747,61.00041092749237],[-147.49527495274953,60.968327959364615],[-147.50967509675098,60.92611352761753],[-147.5240752407524,60.90753917764883],[-147.5420754207542,60.91260490945848],[-147.54567545675457,60.985213732063414],[-147.53847538475384,61.003788082032145],[-147.5312753127531,61.017296700191196],[-147.5240752407524,61.030805318350275],[-147.5312753127531,61.05444540012863],[-147.52047520475205,61.05951113193828],[-147.49167491674916,61.06964259555755],[-147.48447484474843,61.07301975009733],[-147.48447484474843,61.08315121371663],[-147.49527495274953,61.088216945526284],[-147.50247502475025,61.08990552279616],[-147.50967509675098,61.09497125460581],[-147.52047520475205,61.10847987276486],[-147.52767527675277,61.12536564546369],[-147.5240752407524,61.13887426362277],[-147.50967509675098,61.14900572724204],[-147.5240752407524,61.15407145905169],[-147.5420754207542,61.15744861359147],[-147.56007560075602,61.15576003632157],[-147.57447574475745,61.14900572724204],[-147.5780757807578,61.13549710908299],[-147.57447574475745,61.12705422273356],[-147.56367563675636,61.12029991365404],[-147.56007560075602,61.11185702730464],[-147.56727567275672,61.08652836825638],[-147.58167581675815,61.05951113193828],[-147.60327603276033,61.0358710501599],[-147.62127621276213,61.0274281638105],[-147.63927639276392,61.02405100927072],[-147.65727657276574,61.01898527746107],[-147.66447664476644,61.01391954565145],[-147.650076500765,61.012230968381544],[-147.62127621276213,61.01391954565145],[-147.6140761407614,61.012230968381544],[-147.6068760687607,61.003788082032145],[-147.61047610476106,60.998722350222494],[-147.61767617676176,60.99534519568272],[-147.62127621276213,60.99196804114297],[-147.6248762487625,60.98690230933332],[-147.6320763207632,60.97845942298389],[-147.63567635676355,60.97508226844414],[-147.6320763207632,60.96663938209471],[-147.62127621276213,60.96495080482484],[-147.61047610476106,60.96495080482484],[-147.60327603276033,60.96157365028506],[-147.59967599675997,60.949753609395884],[-147.6068760687607,60.92442495034766],[-147.59967599675997,60.9092277549187],[-147.5960759607596,60.88558767314035],[-147.59967599675997,60.86870190044152],[-147.61047610476106,60.861947591362],[-147.66447664476644,60.85857043682222],[-147.68247682476823,60.865324745901745],[-147.66447664476644,60.9007848685693],[-147.6860768607686,60.8990962912994],[-147.71127711277114,60.89065340495],[-147.72927729277293,60.88896482768013],[-147.73287732877327,60.9007848685693],[-147.72567725677257,60.91767064126813],[-147.71487714877148,60.93624499123683],[-147.70407704077041,60.94468787758623],[-147.70407704077041,60.95144218666579],[-147.72927729277293,60.94806503212601],[-147.76887768877688,60.92949068215731],[-147.78687786877867,60.93117925942718],[-147.78687786877867,60.92611352761753],[-147.79047790477904,60.92442495034766],[-147.7940779407794,60.91598206399823],[-147.76887768877688,60.91091633218858],[-147.7760777607776,60.8990962912994],[-147.81207812078122,60.87545620952105],[-147.7760777607776,60.86701332317165],[-147.77247772477725,60.865324745901745],[-147.76527765277652,60.861947591362],[-147.75807758077582,60.85350470501257],[-147.7508775087751,60.84506181866317],[-147.75447754477545,60.84168466412339],[-147.76527765277652,60.83830750958364],[-147.7832778327783,60.829864623234215],[-147.7940779407794,60.82817604596434],[-147.86967869678696,60.83830750958364],[-147.88767887678875,60.84506181866317],[-147.89847898478985,60.85519328228247],[-147.90927909279094,60.86870190044152],[-147.91647916479164,60.88896482768013],[-147.92367923679237,60.89571913675965],[-147.9308793087931,60.90416202310905],[-147.9380793807938,60.9092277549187],[-148.02088020880208,60.941310723046485],[-148.03888038880388,60.94468787758623],[-148.04968049680497,60.949753609395884],[-148.0352803528035,60.96157365028506],[-147.99927999279993,60.981836577523666],[-147.99927999279993,60.98690230933332],[-148.0028800288003,60.990279463873065],[-148.0028800288003,60.99365661841284],[-147.99927999279993,60.998722350222494],[-147.98847988479883,61.00547665930202],[-147.96687966879668,61.00716523657189],[-147.95607956079562,61.012230968381544],[-147.94527945279452,61.0274281638105],[-147.92727927279273,61.05444540012863],[-147.91647916479164,61.06795401828768],[-147.9308793087931,61.07301975009733],[-147.93447934479343,61.07301975009733],[-147.91647916479164,61.09497125460581],[-147.8840788407884,61.11861133638416],[-147.84447844478444,61.14056284089264],[-147.81567815678156,61.14900572724204],[-147.8048780487805,61.15576003632157],[-147.77247772477725,61.1827772726397],[-147.75807758077582,61.191220158989125],[-147.71487714877148,61.2013516226084],[-147.70047700477005,61.213171663497604],[-147.71127711277114,61.23174601346631],[-147.73647736477363,61.21486024076748],[-147.7508775087751,61.213171663497604],[-147.76527765277652,61.21823739530723],[-147.7220772207722,61.25538609524466],[-147.71487714877148,61.27227186794349],[-147.72927729277293,61.27902617702301],[-147.74727747277473,61.275649022483265],[-147.76167761677618,61.26551755886396],[-147.78687786877867,61.23850032254583],[-147.83367833678335,61.19797446806865],[-147.84447844478444,61.191220158989125],[-147.87327873278733,61.18108869536982],[-147.90927909279094,61.16082576813122],[-147.96327963279634,61.115234181844386],[-147.99927999279993,61.06288828647803],[-148.02088020880208,61.0375596274298],[-148.04968049680497,61.0274281638105],[-148.07128071280712,61.02405100927072],[-148.07848078480785,61.0274281638105],[-148.08568085680855,61.030805318350275],[-148.09288092880928,61.044313936509326],[-148.11448114481144,61.061199709208154],[-148.12168121681216,61.07639690463711],[-148.13248132481326,61.088216945526284],[-148.15048150481505,61.09497125460581],[-148.13968139681396,61.11354560457451],[-148.14688146881468,61.11861133638416],[-148.16128161281614,61.115234181844386],[-148.19728197281972,61.101725563685335],[-148.25848258482586,61.09497125460581],[-148.280082800828,61.088216945526284],[-148.30528305283053,61.07639690463711],[-148.39168391683916,61.06795401828768],[-148.40968409684098,61.05951113193828],[-148.39888398883988,61.0561339773985],[-148.37368373683736,61.052756822858726],[-148.35928359283594,61.0460025137792],[-148.370083700837,61.04093678196955],[-148.39168391683916,61.02405100927072],[-148.39888398883988,61.01560812292132],[-148.40968409684098,61.01054239111167],[-148.44928449284492,60.998722350222494],[-148.44928449284492,60.99196804114297],[-148.40968409684098,60.98690230933332],[-148.37728377283773,60.998722350222494],[-148.31248312483126,61.04093678196955],[-148.280082800828,61.05444540012863],[-148.2260822608226,61.071331172827456],[-148.17928179281793,61.07639690463711],[-148.15048150481505,61.05951113193828],[-148.16488164881648,61.0561339773985],[-148.16848168481684,61.0460025137792],[-148.16848168481684,61.03418247289002],[-148.1720817208172,61.02405100927072],[-148.20808208082082,60.981836577523666],[-148.21888218882188,60.97170511390436],[-148.25128251282513,60.954819341205535],[-148.26568265682656,60.95144218666579],[-148.280082800828,60.95313076393566],[-148.31248312483126,60.97001653663449],[-148.33408334083342,60.97170511390436],[-148.3268832688327,60.96157365028506],[-148.2872828728287,60.93455641396696],[-148.280082800828,60.92104779580788],[-148.2872828728287,60.91260490945848],[-148.2980829808298,60.90753917764883],[-148.30528305283053,60.89571913675965],[-148.3088830888309,60.8805219413307],[-148.30528305283053,60.865324745901745],[-148.3088830888309,60.85350470501257],[-148.31968319683196,60.84843897320292],[-148.33768337683375,60.85012755047282],[-148.37368373683736,60.85857043682222],[-148.39528395283952,60.861947591362],[-148.34848348483484,60.83324177777399],[-148.33408334083342,60.81973315961491],[-148.35568355683557,60.81297885053539],[-148.38448384483846,60.816356005075164],[-148.42768427684277,60.834930355043866],[-148.45648456484565,60.84168466412339],[-148.52488524885248,60.83999608685352],[-148.58608586085862,60.829864623234215],[-148.7048870488705,60.79271592329681],[-148.66888668886688,60.78596161421726],[-148.63648636486366,60.794404500566685],[-148.60048600486004,60.80622454145586],[-148.5680856808568,60.81297885053539],[-148.5608856088561,60.81129027326551],[-148.550085500855,60.802847386916085],[-148.54648546485464,60.799470232376336],[-148.5392853928539,60.80115880964621],[-148.4780847808478,60.81466742780526],[-148.46008460084602,60.81297885053539],[-148.44928449284492,60.799470232376336],[-148.48888488884887,60.79102734602691],[-148.5788857888579,60.780895882407634],[-148.61128611286114,60.762321532438904],[-148.6220862208622,60.75219006881963],[-148.65088650886509,60.736992873390676],[-148.66168661686618,60.7251728325015],[-148.6760867608676,60.69984417345324],[-148.69048690486903,60.68971270983397],[-148.7048870488705,60.68464697802432],[-148.7048870488705,60.67620409167489],[-148.66888668886688,60.674515514405016],[-148.65448654486545,60.67620409167489],[-148.64368643686436,60.68126982348454],[-148.6220862208622,60.69477844164359],[-148.59688596885968,60.69984417345324],[-148.58968589685895,60.704909905262895],[-148.58248582485825,60.71166421434242],[-148.58248582485825,60.72179567796172],[-148.5788857888579,60.7353042961208],[-148.57528575285752,60.740370027930425],[-148.56448564485646,60.740370027930425],[-148.55368553685537,60.745435759740076],[-148.52848528485285,60.75725580062925],[-148.51048510485106,60.764010109708806],[-148.48888488884887,60.76569868697868],[-148.46368463684638,60.767387264248555],[-148.4528845288453,60.76907584151843],[-148.43848438484383,60.77751872786786],[-148.43128431284313,60.77920730513773],[-148.37368373683736,60.77920730513773],[-148.37368373683736,60.772452996058206],[-148.3880838808388,60.772452996058206],[-148.3880838808388,60.767387264248555],[-148.37728377283773,60.764010109708806],[-148.370083700837,60.758944377899155],[-148.36648366483664,60.753878646089504],[-148.35928359283594,60.745435759740076],[-148.38448384483846,60.740370027930425],[-148.39528395283952,60.7353042961208],[-148.40248402484025,60.7251728325015],[-148.40248402484025,60.7150413688822],[-148.39528395283952,60.68971270983397],[-148.39888398883988,60.68464697802432],[-148.42768427684277,60.67958124621467],[-148.4348843488435,60.66776120532549],[-148.43128431284313,60.62892392811818],[-148.42048420484204,60.63567823719771],[-148.39528395283952,60.655941164436314],[-148.3808838088381,60.66100689624594],[-148.370083700837,60.66438405078571],[-148.35928359283594,60.66776120532549],[-148.34848348483484,60.67620409167489],[-148.34128341283412,60.70322132799302],[-148.3088830888309,60.7353042961208],[-148.26568265682656,60.76063295516903],[-148.22968229682297,60.772452996058206],[-148.22968229682297,60.767387264248555],[-148.24768247682476,60.753878646089504],[-148.2548825488255,60.73868145066055],[-148.2548825488255,60.718418523421974],[-148.2440824408244,60.69815559618337],[-148.23688236882367,60.68802413256407],[-148.21888218882188,60.67282693713514],[-148.21168211682118,60.66269547351584],[-148.20808208082082,60.65425258716641],[-148.20448204482045,60.64580970081701],[-148.20448204482045,60.63736681446758],[-148.19728197281972,60.62892392811818],[-148.20808208082082,60.620481041768755],[-148.21888218882188,60.61372673268923],[-148.23328233282334,60.61034957814948],[-148.24768247682476,60.60866100087958],[-148.3160831608316,60.549560796433695],[-148.33768337683375,60.54111791008427],[-148.35928359283594,60.54618364189392],[-148.35928359283594,60.552937950973444],[-148.3628836288363,60.563069414592746],[-148.41688416884168,60.559692260053],[-148.43128431284313,60.571512300942175],[-148.43848438484383,60.5867094963711],[-148.46368463684638,60.59008665091088],[-148.48888488884887,60.58164376456148],[-148.52488524885248,60.559692260053],[-148.60048600486004,60.52929786919509],[-148.65448654486545,60.49890347833721],[-148.66888668886688,60.48877201471791],[-148.68328683286833,60.47188624201908],[-148.69048690486903,60.45668904659016],[-148.67248672486724,60.4499347375106],[-148.65088650886509,60.45668904659016],[-148.6148861488615,60.48539486017816],[-148.55728557285573,60.50396921014686],[-148.51408514085142,60.52929786919509],[-148.47088470884708,60.54618364189392],[-148.43128431284313,60.53942933281439],[-148.42768427684277,60.52929786919509],[-148.40968409684098,60.52423213738544],[-148.38448384483846,60.522543560115565],[-148.36648366483664,60.51916640557582],[-148.3808838088381,60.50565778741674],[-148.34848348483484,60.509034941956514],[-148.34128341283412,60.50734636468661],[-148.3520835208352,60.495526323797435],[-148.35928359283594,60.48370628290826],[-148.34848348483484,60.48032912836851],[-148.33048330483305,60.48370628290826],[-148.31248312483126,60.48877201471791],[-148.27648276482765,60.495526323797435],[-148.26928269282692,60.473574819288984],[-148.26208262082622,60.451623314780505],[-148.23688236882367,60.45668904659016],[-148.2260822608226,60.46850908747933],[-148.22248222482224,60.47864055109861],[-148.2260822608226,60.48877201471791],[-148.22968229682297,60.50228063287699],[-148.23328233282334,60.50565778741674],[-148.23688236882367,60.51072351922639],[-148.23688236882367,60.51578925103604],[-148.23328233282334,60.522543560115565],[-148.22968229682297,60.52592071465534],[-148.21168211682118,60.53267502373487],[-148.21168211682118,60.536052178274616],[-148.20448204482045,60.54618364189392],[-148.19728197281972,60.55462652824335],[-148.1828818288183,60.558003682783095],[-148.17568175681757,60.552937950973444],[-148.1720817208172,60.53942933281439],[-148.17568175681757,60.52592071465534],[-148.1828818288183,60.51241209649626],[-148.190081900819,60.50565778741674],[-148.16488164881648,60.50228063287699],[-148.1540815408154,60.52592071465534],[-148.14688146881468,60.558003682783095],[-148.13968139681396,60.579955187291574],[-148.13248132481326,60.5867094963711],[-148.09288092880928,60.60359526906993],[-148.08208082080822,60.60528384633983],[-148.06768067680676,60.5867094963711],[-148.06048060480606,60.5782666100217],[-148.0460804608046,60.57488945548192],[-148.06768067680676,60.53942933281439],[-148.0568805688057,60.54111791008427],[-148.03168031680318,60.55124937370357],[-148.02448024480245,60.552937950973444],[-148.01008010080102,60.54787221916382],[-148.00648006480066,60.54111791008427],[-148.0028800288003,60.53267502373487],[-147.99927999279993,60.52592071465534],[-147.98487984879847,60.52085498284569],[-147.97047970479704,60.51916640557582],[-147.95967959679598,60.51241209649626],[-147.95607956079562,60.49890347833721],[-147.96327963279634,60.49214916925769],[-147.9740797407974,60.48539486017816],[-147.98847988479883,60.48032912836851],[-147.99927999279993,60.47864055109861],[-147.98487984879847,60.46175477839978],[-147.96327963279634,60.46344335566968],[-147.94527945279452,60.46850908747933],[-147.93447934479343,60.46175477839978],[-147.94167941679416,60.44318042843108],[-147.95607956079562,60.43642611935155],[-147.99927999279993,60.43642611935155],[-147.99567995679956,60.4212289239226],[-148.01368013680136,60.411097460303324],[-148.0352803528035,60.40434315122377],[-148.0568805688057,60.402654573953896],[-148.08568085680855,60.419540346652724],[-148.09648096480964,60.419540346652724],[-148.08568085680855,60.39590026487437],[-148.1108811088111,60.39927741941412],[-148.15768157681578,60.41447461484307],[-148.1828818288183,60.41616319211295],[-148.1720817208172,60.40940888303342],[-148.1360813608136,60.37901449217554],[-148.1288812888129,60.36888302855624],[-148.14328143281432,60.35537441039719],[-148.16848168481684,60.35368583312729],[-148.19728197281972,60.357062987667064],[-148.21528215282152,60.36044014220684],[-148.21528215282152,60.37901449217554],[-148.23328233282334,60.384080223985194],[-148.2548825488255,60.37901449217554],[-148.26568265682656,60.36550587401649],[-148.25848258482586,60.348620101317664],[-148.24768247682476,60.348620101317664],[-148.23328233282334,60.35368583312729],[-148.21528215282152,60.34693152404776],[-148.21528215282152,60.321602864999534],[-148.24048240482404,60.29796278322118],[-148.27648276482765,60.27938843325245],[-148.3088830888309,60.27094554690305],[-148.31968319683196,60.26081408328375],[-148.33048330483305,60.25912550601387],[-148.33768337683375,60.26250266055362],[-148.3520835208352,60.27938843325245],[-148.35928359283594,60.286142742332004],[-148.3808838088381,60.28783131960188],[-148.39168391683916,60.277699855982576],[-148.39168391683916,60.264191237823525],[-148.38448384483846,60.25912550601387],[-148.36648366483664,60.25405977420422],[-148.3628836288363,60.242239733315046],[-148.370083700837,60.228731115155966],[-148.3808838088381,60.21691107426679],[-148.39888398883988,60.20846818791739],[-148.41688416884168,60.20509103337761],[-148.43128431284313,60.19833672429809],[-148.4420844208442,60.183139528869134],[-148.40968409684098,60.18651668340891],[-148.37368373683736,60.193270992488436],[-148.34488344883448,60.20340245610774],[-148.31248312483126,60.21691107426679],[-148.25848258482586,60.25237119693435],[-148.2260822608226,60.26081408328375],[-148.190081900819,60.250682619664445],[-148.190081900819,60.245616887854794],[-148.22968229682297,60.242239733315046],[-148.26568265682656,60.23210826969574],[-148.24768247682476,60.22704253788609],[-148.20448204482045,60.22028822880657],[-148.190081900819,60.21184534245714],[-148.18648186481863,60.19664814702821],[-148.190081900819,60.183139528869134],[-148.21168211682118,60.15612229255103],[-148.18648186481863,60.166253756170306],[-148.16128161281614,60.21353391972704],[-148.13968139681396,60.23210826969574],[-148.13248132481326,60.23379684696562],[-148.1180811808118,60.23379684696562],[-148.10728107281074,60.23041969242587],[-148.10008100081,60.22028822880657],[-148.10368103681037,60.20846818791739],[-148.10728107281074,60.201713878837865],[-148.16488164881648,60.14936798347148],[-148.190081900819,60.13417078804255],[-148.21528215282152,60.1291050562329],[-148.280082800828,60.12741647896303],[-148.2980829808298,60.13585936531243],[-148.2872828728287,60.16287660163056],[-148.30168301683017,60.16456517890043],[-148.32328323283232,60.17300806524986],[-148.33408334083342,60.16963091071008],[-148.36648366483664,60.1189735926136],[-148.37368373683736,60.08689062448585],[-148.3880838808388,60.058184810897814],[-148.41328413284134,60.03792188365924],[-148.4420844208442,60.032856151849586],[-148.4420844208442,60.02610184277006],[-148.4060840608406,60.01765895642063],[-148.40248402484025,60.01597037915076],[-148.40248402484025,60.00752749280136],[-148.4060840608406,60.00246176099171],[-148.4060840608406,59.99908460645193],[-148.40248402484025,59.99064172010253],[-148.4348843488435,59.95855875197475],[-148.4528845288453,59.95518159743497],[-148.47088470884708,59.970378792863926],[-148.49968499684996,60.01259322461098],[-148.51768517685176,60.027790420039935],[-148.54648546485464,60.032856151849586],[-148.53568535685358,60.01259322461098],[-148.53568535685358,59.997396029182056],[-148.54648546485464,59.98557598829288],[-148.5680856808568,59.97713310194345],[-148.54648546485464,59.970378792863926],[-148.5608856088561,59.956870174704875],[-148.64728647286472,59.92309862930722],[-148.65448654486545,59.92309862930722],[-148.66528665286654,59.93154151565662],[-148.66528665286654,59.93998440200605],[-148.6580865808658,59.94673871108557],[-148.65088650886509,59.951804442895224],[-148.66528665286654,59.95518159743497],[-148.67968679686797,59.95518159743497],[-148.6940869408694,59.951804442895224],[-148.71208712087122,59.951804442895224],[-148.72288722887228,59.9534930201651],[-148.74448744487444,59.961935906514526],[-148.7588875888759,59.9636244837844],[-148.78768787687878,59.95855875197475],[-148.84528845288452,59.93660724746627],[-148.8740887408874,59.93660724746627],[-148.8920889208892,59.94673871108557],[-148.92448924489244,59.9720673701338],[-148.94968949689496,59.97713310194345],[-149.00369003690037,59.96700163832415],[-149.02169021690216,59.96700163832415],[-149.01809018090182,59.98388741102298],[-149.07569075690756,59.96869021559405],[-149.1080910809108,59.96869021559405],[-149.12249122491224,59.99064172010253],[-149.1080910809108,60.00246176099171],[-149.0540905409054,60.03792188365924],[-149.03969039690398,60.05311907908819],[-149.06849068490686,60.06156196543759],[-149.10449104491045,60.058184810897814],[-149.13329133291333,60.04805334727854],[-149.19449194491943,60.014281801880884],[-149.20169201692016,60.00752749280136],[-149.20529205292053,59.997396029182056],[-149.20529205292053,59.987264565562754],[-149.2088920889209,59.97713310194345],[-149.21609216092162,59.970378792863926],[-149.21969219692198,59.95518159743497],[-149.2340923409234,59.93998440200605],[-149.24489244892447,59.92647578384697],[-149.23049230492305,59.916344320227694],[-149.24129241292414,59.902835702068614],[-149.25929259292593,59.88763850663966],[-149.27369273692736,59.87750704302039],[-149.28449284492845,59.87412988848061],[-149.29169291692918,59.88763850663966],[-149.29169291692918,59.92478720657709],[-149.29889298892988,59.94673871108557],[-149.29889298892988,59.956870174704875],[-149.29889298892988,59.9737559474037],[-149.3060930609306,59.97713310194345],[-149.3168931689317,59.978821679213326],[-149.32769327693276,59.98388741102298],[-149.32769327693276,59.997396029182056],[-149.32049320493206,60.000773183721805],[-149.29889298892988,60.005838915531456],[-149.29169291692918,60.01259322461098],[-149.29889298892988,60.022724688230284],[-149.3168931689317,60.024413265500186],[-149.34209342093422,60.022724688230284],[-149.35289352893528,60.090267779025595],[-149.36369363693638,60.1105307062642],[-149.38529385293853,60.12235074715338],[-149.4068940689407,60.12403932442325],[-149.42849428494284,60.11559643807385],[-149.43569435694357,60.103776397184646],[-149.4428944289443,60.08351346994607],[-149.4428944289443,60.063250542707465],[-149.43929439294394,60.049741924548414],[-149.42129421294214,60.022724688230284],[-149.41769417694178,60.01765895642063],[-149.3888938889389,59.997396029182056],[-149.41769417694178,59.99064172010253],[-149.4320943209432,59.98557598829288],[-149.4428944289443,59.97713310194345],[-149.450094500945,59.96869021559405],[-149.45369453694536,59.9450501338157],[-149.45729457294573,59.93660724746627],[-149.47169471694718,59.93154151565662],[-149.48249482494825,59.93323009292649],[-149.49689496894968,59.93660724746627],[-149.51129511295113,59.93660724746627],[-149.52569525695256,59.93154151565662],[-149.55449554495544,59.91296716568792],[-149.56529565295654,59.90959001114814],[-149.5760957609576,59.89776997025896],[-149.60489604896048,59.845424074892605],[-149.62649626496264,59.83360403400343],[-149.62649626496264,59.82853830219378],[-149.61929619296194,59.8167182613046],[-149.60849608496085,59.804898220415424],[-149.59769597695976,59.79983248860577],[-149.5868958689587,59.78970102498647],[-149.57969579695796,59.78632387044672],[-149.57249572495726,59.78463529317682],[-149.54009540095402,59.78632387044672],[-149.54729547295472,59.774503829557545],[-149.54729547295472,59.76606094320812],[-149.54729547295472,59.75930663412859],[-149.54729547295472,59.752552325049066],[-149.52929529295292,59.73904370688999],[-149.52209522095222,59.72722366600081],[-149.52569525695256,59.71709220238151],[-149.53649536495365,59.71709220238151],[-149.55089550895508,59.72384651146106],[-149.57249572495726,59.73735512962011],[-149.5868958689587,59.742420861429764],[-149.63729637296373,59.74410943869964],[-149.60129601296012,59.76606094320812],[-149.59409594095942,59.77281525228764],[-149.60129601296012,59.782946715906945],[-149.61929619296194,59.78463529317682],[-149.63729637296373,59.78463529317682],[-149.6480964809648,59.78632387044672],[-149.64449644496446,59.80152106587565],[-149.67329673296734,59.8167182613046],[-149.66609666096662,59.83022687946365],[-149.6588965889659,59.840358343082954],[-149.64449644496446,59.87412988848061],[-149.6408964089641,59.88594992936979],[-149.65169651696516,59.91296716568792],[-149.66969669696698,59.93998440200605],[-149.69849698496984,59.96024732924462],[-149.72369723697238,59.9636244837844],[-149.74169741697418,59.94842728835545],[-149.7380973809738,59.89101566117944],[-149.74889748897488,59.86399842486131],[-149.7668976689767,59.840358343082954],[-149.77769777697776,59.8352926112733],[-149.79929799297992,59.840358343082954],[-149.83169831698316,59.85724411578178],[-149.84609846098462,59.858932693051656],[-149.86769867698678,59.84880122943238],[-149.85329853298532,59.84373549762273],[-149.84249842498426,59.8352926112733],[-149.79209792097922,59.79983248860577],[-149.77049770497706,59.78632387044672],[-149.74889748897488,59.70527216149233],[-149.75249752497524,59.68332065698388],[-149.74529745297454,59.66643488428505],[-149.7560975609756,59.6613691524754],[-149.77409774097742,59.66474630701515],[-149.78849788497885,59.67318919336458],[-149.810098100981,59.68669781152363],[-149.81369813698137,59.693452120603155],[-149.80649806498064,59.71033789330198],[-149.80649806498064,59.71709220238151],[-149.8208982089821,59.725535088730936],[-149.85689856898568,59.733977975080336],[-149.87129871298714,59.74073228415989],[-149.9108991089911,59.774503829557545],[-149.92169921699218,59.77956956136717],[-149.96129961299613,59.782946715906945],[-150.0189001890019,59.7981439113359],[-150.03330033300333,59.79983248860577],[-150.0369003690037,59.79307817952625],[-150.04050040500405,59.77619240682742],[-149.97929979299792,59.752552325049066],[-149.97209972099722,59.74579801596954],[-149.96129961299613,59.72722366600081],[-149.95049950499504,59.72384651146106],[-149.92889928899288,59.720469356921285],[-149.91809918099182,59.71709220238151],[-149.95769957699576,59.6698120388248],[-150.00090000900008,59.64279480250667],[-150.01170011700117,59.627597607077746],[-150.02970029700296,59.63772907069705],[-150.04410044100442,59.649549111586225],[-150.0621006210062,59.67656634790433],[-150.0729007290073,59.685009234253755],[-150.09810098100982,59.69514069787306],[-150.11970119701198,59.70020642968268],[-150.13050130501304,59.693452120603155],[-150.11970119701198,59.68163207971398],[-150.10530105301052,59.671500616094676],[-150.09450094500946,59.6613691524754],[-150.09810098100982,59.64617195704645],[-150.10530105301052,59.62928618434762],[-150.10890108901089,59.61577756618857],[-150.10170101701016,59.60226894802949],[-150.08730087300873,59.595514638949965],[-150.10890108901089,59.58031744352101],[-150.12330123301234,59.57525171171139],[-150.1341013410134,59.573563134441486],[-150.14850148501483,59.57694028898126],[-150.16650166501665,59.59213748441019],[-150.17730177301772,59.595514638949965],[-150.19890198901987,59.587071752600565],[-150.19890198901987,59.568497402631834],[-150.1881018810188,59.54823447539326],[-150.17730177301772,59.53134870269443],[-150.23850238502385,59.533037279964304],[-150.25650256502564,59.52628297088478],[-150.24570245702458,59.497577157296774],[-150.2781027810278,59.4958885800269],[-150.29250292502925,59.49251142548712],[-150.3249032490325,59.475625652788295],[-150.34650346503466,59.470559920978644],[-150.3681036810368,59.46887134370877],[-150.38970389703897,59.47731423005817],[-150.38250382503824,59.47900280732807],[-150.3681036810368,59.484068539137695],[-150.3609036090361,59.484068539137695],[-150.37530375303754,59.4958885800269],[-150.38250382503824,59.497577157296774],[-150.3681036810368,59.502642889106426],[-150.35730357303572,59.5043314663763],[-150.3429034290343,59.50939719818595],[-150.33570335703357,59.51784008453535],[-150.350103501035,59.51952866180525],[-150.35730357303572,59.52628297088478],[-150.35730357303572,59.53641443450408],[-150.35370353703536,59.546545898123355],[-150.34650346503466,59.55498878447278],[-150.3141031410314,59.56343167082218],[-150.30330303303032,59.57018597990174],[-150.29610296102962,59.582006020790914],[-150.29610296102962,59.59213748441019],[-150.29610296102962,59.600580370759616],[-150.2889028890289,59.61071183437892],[-150.2709027090271,59.627597607077746],[-150.26730267302673,59.636040493427146],[-150.27450274502746,59.649549111586225],[-150.2493024930249,59.66812346155493],[-150.22770227702276,59.69514069787306],[-150.22410224102242,59.715403625111634],[-150.25290252902528,59.71033789330198],[-150.2781027810278,59.69176354333328],[-150.35370353703536,59.60226894802949],[-150.37890378903788,59.587071752600565],[-150.39330393303933,59.57694028898126],[-150.42570425704258,59.53134870269443],[-150.46530465304653,59.494200002757],[-150.4689046890469,59.47900280732807],[-150.47970479704796,59.467182766438896],[-150.49410494104941,59.46549418916899],[-150.50490504905048,59.47731423005817],[-150.50130501305011,59.494200002757],[-150.5409054090541,59.5144629299956],[-150.55170551705515,59.53641443450408],[-150.54450544505445,59.54992305266313],[-150.50490504905048,59.582006020790914],[-150.49410494104941,59.600580370759616],[-150.530105301053,59.60226894802949],[-150.61650616506165,59.565120248092086],[-150.6561065610656,59.55330020720291],[-150.6561065610656,59.546545898123355],[-150.6381063810638,59.54148016631373],[-150.6129061290613,59.52797154815465],[-150.5949059490595,59.51277435272573],[-150.58050580505804,59.497577157296774],[-150.58050580505804,59.48237996186782],[-150.5949059490595,59.47393707551842],[-150.6381063810638,59.46380561189912],[-150.6381063810638,59.45705130281959],[-150.6129061290613,59.45029699374007],[-150.60570605706056,59.44523126193042],[-150.60930609306092,59.43847695285086],[-150.63090630906308,59.43003406650146],[-150.65250652506523,59.42327975742194],[-150.72810728107282,59.42159118015206],[-150.73530735307352,59.41483687107251],[-150.74250742507425,59.39795109837368],[-150.75330753307531,59.382753902944756],[-150.77130771307714,59.37431101659533],[-150.78930789307893,59.37093386205558],[-150.85050850508506,59.34391662573745],[-150.85770857708576,59.3388508939278],[-150.8649086490865,59.33547373938802],[-150.9189091890919,59.32703085303862],[-150.9189091890919,59.31689938941932],[-150.9081090810908,59.30339077126027],[-150.88650886508864,59.274684957672264],[-150.89370893708937,59.257799184973436],[-150.92970929709298,59.247667721354134],[-150.96570965709657,59.23415910319508],[-150.95850958509584,59.203764712337176],[-150.99810998109982,59.225716216845655],[-151.01251012510124,59.24091341227461],[-151.00891008910088,59.25442203043366],[-150.99810998109982,59.26793064859271],[-150.99810998109982,59.27299638040236],[-151.00891008910088,59.274684957672264],[-151.01971019710197,59.27806211221201],[-151.0341103411034,59.293259307640966],[-151.04131041310413,59.29663646218074],[-151.05571055710556,59.30001361672049],[-151.06651066510665,59.29663646218074],[-151.07731077310774,59.28988215310119],[-151.09171091710917,59.28481642129154],[-151.12051120511205,59.293259307640966],[-151.17811178111782,59.301702193990366],[-151.22851228512286,59.31689938941932],[-151.2429124291243,59.31858796668919],[-151.25731257312572,59.31689938941932],[-151.27171271712717,59.31352223487954],[-151.25731257312572,59.29832503945062],[-151.23571235712356,59.29663646218074],[-151.2141121411214,59.29663646218074],[-151.1961119611196,59.28988215310119],[-151.18171181711818,59.279750689481915],[-151.13131131311314,59.257799184973436],[-151.10971109711096,59.252733453163785],[-151.0989109891099,59.24935629862401],[-151.09531095310953,59.24091341227461],[-151.0989109891099,59.23247052592518],[-151.10251102511026,59.22402763957578],[-151.10971109711096,59.21896190776613],[-151.14571145711457,59.20883044414683],[-151.160111601116,59.20714186687695],[-151.18171181711818,59.217273330496255],[-151.21051210512104,59.22402763957578],[-151.22131221312213,59.22402763957578],[-151.27531275312754,59.22233906230588],[-151.29331293312933,59.22402763957578],[-151.3509135091351,59.24260198954448],[-151.37251372513725,59.24597914408426],[-151.39051390513904,59.25611060770353],[-151.39771397713977,59.257799184973436],[-151.40851408514084,59.25948776224331],[-151.41931419314193,59.25948776224331],[-151.50211502115022,59.23415910319508],[-151.520115201152,59.22402763957578],[-151.50931509315092,59.220650485036],[-151.48411484114843,59.21896190776613],[-151.47331473314733,59.217273330496255],[-151.48771487714876,59.20038755779743],[-151.51651516515165,59.19701040325765],[-151.5741157411574,59.203764712337176],[-151.6029160291603,59.2020761350673],[-151.61371613716136,59.19701040325765],[-151.61731617316173,59.18856751690825],[-151.6029160291603,59.1818132078287],[-151.57771577715778,59.18856751690825],[-151.56691566915669,59.17505889874917],[-151.68211682116822,59.163238857859994],[-151.74331743317433,59.16661601239977],[-151.76851768517685,59.19363324871787],[-151.76131761317612,59.2105190214167],[-151.75771757717578,59.21896190776613],[-151.76491764917648,59.22402763957578],[-151.84051840518404,59.21389617595648],[-151.86931869318693,59.21389617595648],[-151.89451894518945,59.220650485036],[-151.91251912519124,59.23753625773483],[-151.89451894518945,59.23753625773483],[-151.88731887318875,59.24091341227461],[-151.88731887318875,59.247667721354134],[-151.8981189811898,59.257799184973436],[-151.90531905319054,59.261176339513185],[-151.9449194491945,59.26455349405296],[-151.96291962919628,59.27130780313249],[-151.97731977319773,59.279750689481915],[-151.9881198811988,59.293259307640966],[-151.98451984519846,59.31352223487954],[-151.97731977319773,59.32534227576875],[-151.95931959319594,59.337162316657924],[-151.92331923319233,59.35404808935675],[-151.8981189811898,59.3591138211664],[-151.81531815318152,59.35404808935675],[-151.8369183691837,59.3675567075158],[-151.88011880118802,59.386131057484505],[-151.90171901719017,59.399639675643584],[-151.89451894518945,59.413148293802635],[-151.86571865718656,59.426656911961686],[-151.80811808118082,59.443542684660514],[-151.7469174691747,59.44523126193042],[-151.7181171811718,59.45029699374007],[-151.70371703717038,59.467182766438896],[-151.68931689316892,59.48069138459795],[-151.65331653316534,59.4857571164076],[-151.46971469714697,59.47731423005817],[-151.44091440914409,59.467182766438896],[-151.4229142291423,59.453674148279816],[-151.40131401314014,59.44523126193042],[-151.38331383313835,59.44523126193042],[-151.37611376113762,59.45705130281959],[-151.39051390513904,59.47393707551842],[-151.44091440914409,59.494200002757],[-151.45171451714518,59.50770862091608],[-151.44091440914409,59.533037279964304],[-151.41571415714157,59.546545898123355],[-151.36171361713616,59.560054516282435],[-151.340113401134,59.56174309355231],[-151.29331293312933,59.55667736174266],[-151.27171271712717,59.560054516282435],[-151.26451264512644,59.57187455717161],[-151.26451264512644,59.58538317533066],[-151.25731257312572,59.595514638949965],[-151.23571235712356,59.600580370759616],[-151.1961119611196,59.59720321621984],[-151.17451174511746,59.600580370759616],[-151.17451174511746,59.61071183437892],[-151.19971199711998,59.630974761617495],[-151.19971199711998,59.6411062252368],[-151.18531185311852,59.65630342066575],[-151.1709117091171,59.6613691524754],[-151.1421114211142,59.6698120388248],[-151.13131131311314,59.67656634790433],[-151.12051120511205,59.68669781152363],[-151.1061110611106,59.71033789330198],[-151.0989109891099,59.720469356921285],[-151.07371073710738,59.73735512962011],[-150.99450994509945,59.77956956136717],[-151.02331023310234,59.79476675679612],[-151.06651066510665,59.796455334065996],[-151.10971109711096,59.78632387044672],[-151.1529115291153,59.75930663412859],[-151.2141121411214,59.74410943869964],[-151.37971379713798,59.67487777063445],[-151.41571415714157,59.6698120388248],[-151.43011430114302,59.66643488428505],[-151.4481144811448,59.657991997935625],[-151.4661146611466,59.64617195704645],[-151.47331473314733,59.636040493427146],[-151.4661146611466,59.62590902980784],[-151.4481144811448,59.617466143458444],[-151.43011430114302,59.61240041164879],[-151.42651426514266,59.61071183437892],[-151.4121141211412,59.60733467983914],[-151.43011430114302,59.61240041164879],[-151.7469174691747,59.68332065698388],[-151.77931779317794,59.69176354333328],[-151.82971829718298,59.715403625111634],[-151.8729187291873,59.74917517050929],[-151.88371883718838,59.78632387044672],[-151.87651876518765,59.796455334065996],[-151.84771847718477,59.82009541584438],[-151.84051840518404,59.831915456733554],[-151.82971829718298,59.85555553851191],[-151.73971739717396,59.98895314283263],[-151.73251732517326,60.00752749280136],[-151.72531725317253,60.024413265500186],[-151.70731707317074,60.041299038198986],[-151.4661146611466,60.188205260678785],[-151.43011430114302,60.21691107426679],[-151.4049140491405,60.25237119693435],[-151.39051390513904,60.299651360491055],[-151.3941139411394,60.34524294677789],[-151.39051390513904,60.35875156493694],[-151.37611376113762,60.37226018309602],[-151.36171361713616,60.37732591490567],[-151.34731347313473,60.38070306944542],[-151.31851318513185,60.38239164671529],[-151.30771307713076,60.38745737852494],[-151.30051300513006,60.397588842144245],[-151.30051300513006,60.4229175011925],[-151.28251282512826,60.487083437448035],[-151.28251282512826,60.509034941956514],[-151.28251282512826,60.53774075554452],[-151.28971289712896,60.55124937370357],[-151.3221132211322,60.57488945548192],[-151.3329133291333,60.59177522818075],[-151.35451354513546,60.639055391737486],[-151.37611376113762,60.65762974170619],[-151.3941139411394,60.67958124621467],[-151.4121141211412,60.701532750723146],[-151.41571415714157,60.718418523421974],[-151.39771397713977,60.73868145066055],[-151.3221132211322,60.73868145066055],[-151.2969129691297,60.74881291427985],[-151.27531275312754,60.767387264248555],[-151.25371253712538,60.77583015059798],[-151.070110701107,60.78596161421726],[-151.0449104491045,60.79609307783656],[-151.0269102691027,60.80960169599564],[-150.7641076410764,60.92611352761753],[-150.6021060210602,60.97845942298389],[-150.45090450904507,61.03418247289002],[-150.3861038610386,61.047691091049074],[-150.33570335703357,61.03249389562015],[-150.32130321303214,61.01391954565145],[-150.31050310503105,60.990279463873065],[-150.29250292502925,60.96663938209471],[-150.260102601026,60.954819341205535],[-150.23490234902349,60.93962214577658],[-150.22410224102242,60.93793356850671],[-150.04410044100442,60.91598206399823],[-149.97929979299792,60.93962214577658],[-149.93249932499324,60.94468787758623],[-149.84969849698496,60.97339369117424],[-149.82449824498246,60.97845942298389],[-149.75249752497524,60.97339369117424],[-149.71649716497166,60.968327959364615],[-149.6840968409684,60.95819649574531],[-149.63729637296373,60.93962214577658],[-149.6228962289623,60.93793356850671],[-149.52569525695256,60.93793356850671],[-149.50769507695077,60.93455641396696],[-149.46809468094682,60.919359218538006],[-149.1260912609126,60.883899095870476],[-149.10449104491045,60.878833364060824],[-149.09009090090902,60.8720790549813],[-149.07929079290793,60.86363616863187],[-149.05769057690577,60.856881859552345],[-149.03969039690398,60.851816127742694],[-149.02529025290252,60.85519328228247],[-149.06129061290613,60.89740771402953],[-149.11169111691117,60.927802104887405],[-149.16929169291694,60.946376454856136],[-149.22329223292232,60.95144218666579],[-149.3348933489335,60.92949068215731],[-149.35649356493565,60.93455641396696],[-149.3780937809378,60.946376454856136],[-149.48249482494825,60.981836577523666],[-149.5148951489515,60.98859088660319],[-149.61929619296194,60.99534519568272],[-149.7848978489785,61.0460025137792],[-149.8280982809828,61.07301975009733],[-149.90729907299072,61.09497125460581],[-150.06570065700657,61.15576003632157],[-150.05850058500585,61.172645809020395],[-150.0369003690037,61.192908736259],[-150.01530015300153,61.20641735441805],[-149.99369993699938,61.2013516226084],[-149.97569975699756,61.19797446806865],[-149.94329943299434,61.20810593168795],[-149.91449914499145,61.221614549847004],[-149.89649896498966,61.23174601346631],[-149.88929889298893,61.240188899815706],[-149.87489874898748,61.27227186794349],[-149.86769867698678,61.28240333156279],[-149.810098100981,61.33137207238937],[-149.79569795697958,61.3398149587388],[-149.78129781297812,61.34150353600867],[-149.7668976689767,61.3398149587388],[-149.75249752497524,61.34150353600867],[-149.73089730897308,61.351634999627976],[-149.70569705697056,61.38371796775576],[-149.6840968409684,61.39891516318468],[-149.65529655296552,61.409046626803985],[-149.32049320493206,61.479966872139045],[-149.2808928089281,61.48165544940895],[-149.25929259292593,61.4867211812186],[-149.24489244892447,61.498541222107775],[-149.27729277292772,61.506984108457175],[-149.41769417694178,61.498541222107775],[-149.40329403294032,61.5052955311873],[-149.42849428494284,61.5137384175367],[-149.6480964809648,61.48840975848847],[-149.7560975609756,61.45294963582094],[-149.79569795697958,61.42424382223294],[-149.81369813698137,61.414112358613636],[-149.86049860498605,61.395538008644934],[-149.87849878498784,61.38540654502563],[-149.89649896498966,61.37189792686655],[-149.9108991089911,61.35332357689785],[-149.91809918099182,61.311109145150795],[-149.92889928899288,61.289157640642316],[-149.93969939699397,61.27058329067361],[-149.95049950499504,61.25876324978444],[-149.98289982899828,61.24694320889526],[-150.28170281702816,61.26045182705431],[-150.29250292502925,61.26551755886396],[-150.30690306903068,61.275649022483265],[-150.31050310503105,61.28071475429289],[-150.3141031410314,61.28240333156279],[-150.32850328503284,61.27227186794349],[-150.3249032490325,61.27227186794349],[-150.3249032490325,61.26551755886396],[-150.3249032490325,61.25876324978444],[-150.32850328503284,61.25200894070488],[-150.33570335703357,61.25032036343501],[-150.45090450904507,61.25200894070488],[-150.50130501305011,61.262140404324185],[-150.5409054090541,61.28578048610254],[-150.55890558905588,61.32292918603997],[-150.5409054090541,61.368520772326804],[-150.56250562505625,61.36514361778703],[-150.58770587705877,61.351634999627976],[-150.6021060210602,61.333060649659274],[-150.5841058410584,61.29422337245197],[-150.60570605706056,61.29084621791219],[-150.63450634506344,61.29928910426162],[-150.6561065610656,61.31448629969054],[-150.6921069210692,61.27733759975314],[-150.73170731707316,61.253697517974786],[-150.890108901089,61.21486024076748],[-150.94770947709478,61.2114830862277],[-150.95850958509584,61.20810593168795],[-150.97650976509766,61.194597313528874],[-150.98730987309872,61.191220158989125],[-151.00171001710018,61.18953158171922],[-151.0269102691027,61.1827772726397],[-151.04131041310413,61.177711540830046],[-151.05931059310592,61.16251434540112],[-151.12771127711278,61.09497125460581],[-151.1421114211142,61.07808548190698],[-151.15651156511564,61.0645768637479],[-151.17811178111782,61.05444540012863],[-151.2429124291243,61.039248204699675],[-151.31131311313112,61.03249389562015],[-151.3221132211322,61.02911674108037],[-151.3509135091351,61.01560812292132],[-151.36171361713616,61.012230968381544],[-151.43731437314372,61.02067385473097],[-151.4769147691477,61.017296700191196],[-151.52371523715237,61.008853813841796],[-151.56691566915669,60.99534519568272],[-151.61371613716136,60.96495080482484],[-151.6461164611646,60.95144218666579],[-151.68211682116822,60.92949068215731],[-151.72531725317253,60.92442495034766],[-151.7469174691747,60.91598206399823],[-151.75051750517505,60.89740771402953],[-151.79371793717937,60.86870190044152],[-151.80811808118082,60.84843897320292],[-151.80451804518046,60.83830750958364],[-151.8009180091801,60.82817604596434],[-151.7181171811718,60.7437471824702],[-151.71091710917108,60.7251728325015],[-151.7469174691747,60.718418523421974],[-151.77931779317794,60.7234842552316],[-151.84051840518404,60.75050149154973],[-151.86931869318693,60.758944377899155],[-151.86931869318693,60.753878646089504],[-151.86571865718656,60.7437471824702],[-151.8621186211862,60.73868145066055],[-151.9089190891909,60.731927141581025],[-151.93051930519306,60.7251728325015],[-151.96291962919628,60.70322132799302],[-152.01332013320132,60.68126982348454],[-152.03132031320314,60.67620409167489],[-152.04572045720457,60.67620409167489],[-152.0529205292053,60.67282693713514],[-152.06012060120602,60.66269547351584],[-152.06372063720636,60.66100689624594],[-152.09972099720997,60.61372673268923],[-152.11052110521106,60.60866100087958],[-152.12132121321213,60.60359526906993],[-152.14292142921428,60.5968409599904],[-152.17172171721717,60.58164376456148],[-152.2329223292233,60.559692260053],[-152.31572315723156,60.50565778741674],[-152.33012330123302,60.49214916925769],[-152.34092340923408,60.47695197382873],[-152.34452344523444,60.45668904659016],[-152.33732337323374,60.43642611935155],[-152.31932319323192,60.4212289239226],[-152.2941229412294,60.4127860375732],[-152.24732247322473,60.402654573953896],[-152.24732247322473,60.39590026487437],[-152.36972369723696,60.357062987667064],[-152.39852398523985,60.33342290588871],[-152.4021240212402,60.326668596809185],[-152.4021240212402,60.30978282411036],[-152.40932409324094,60.30302851503083],[-152.41652416524164,60.29796278322118],[-152.46692466924668,60.28276558779223],[-152.51372513725136,60.2743227014428],[-152.53532535325354,60.2658798150934],[-152.59652596525964,60.228731115155966],[-152.61452614526144,60.223665383346344],[-152.63252632526326,60.23041969242587],[-152.65052650526505,60.23886257877527],[-152.6721267212672,60.245616887854794],[-152.80532805328053,60.23548542423552],[-152.84852848528485,60.245616887854794],[-152.84132841328415,60.2557483514741],[-152.82332823328233,60.2557483514741],[-152.80532805328053,60.25237119693435],[-152.78732787327874,60.250682619664445],[-152.78732787327874,60.25912550601387],[-152.84132841328415,60.26756839236327],[-152.8629286292863,60.2658798150934],[-152.89172891728919,60.250682619664445],[-152.89892898928989,60.2760112787127],[-152.89892898928989,60.2945856286814],[-152.9061290612906,60.308094246840454],[-152.93852938529386,60.313159978650106],[-153.01053010530106,60.313159978650106],[-153.050130501305,60.30978282411036],[-153.08253082530825,60.299651360491055],[-153.1041310413104,60.286142742332004],[-153.1041310413104,60.277699855982576],[-153.08613086130862,60.277699855982576],[-153.06453064530646,60.28951989687175],[-153.03933039330394,60.299651360491055],[-152.9961299612996,60.30133993776093],[-152.95652956529565,60.2945856286814],[-152.93132931329313,60.27938843325245],[-152.93132931329313,60.27094554690305],[-152.9349293492935,60.25237119693435],[-152.93132931329313,60.245616887854794],[-152.9241292412924,60.237174001505394],[-152.89892898928989,60.22704253788609],[-152.8629286292863,60.20846818791739],[-152.76572765727656,60.18989383794869],[-152.7441274412744,60.174696642519734],[-152.73332733327334,60.16963091071008],[-152.72252722527224,60.16963091071008],[-152.70812708127082,60.17131948797996],[-152.69732697326972,60.16963091071008],[-152.6829268292683,60.16287660163056],[-152.67572675726757,60.157810869820906],[-152.6829268292683,60.15612229255103],[-152.68652686526866,60.15105656074138],[-152.6829268292683,60.14261367439195],[-152.67932679326793,60.13417078804255],[-152.66852668526684,60.1291050562329],[-152.65772657726578,60.125727901693125],[-152.58932589325894,60.09195635629547],[-152.57852578525785,60.081824892676195],[-152.57852578525785,60.07000485178702],[-152.59652596525964,60.04298761546889],[-152.6109261092611,60.032856151849586],[-152.6289262892629,60.032856151849586],[-152.6289262892629,60.02610184277006],[-152.62532625326253,60.024413265500186],[-152.6181261812618,60.019347533690535],[-152.66492664926648,59.99401887464228],[-152.67932679326793,59.98388741102298],[-152.69012690126902,59.96700163832415],[-152.70452704527045,59.929852938386745],[-152.71892718927188,59.916344320227694],[-152.7369273692737,59.907901433878266],[-152.8089280892809,59.89608139298909],[-152.83052830528305,59.88763850663966],[-152.84132841328415,59.88426135209991],[-152.85572855728557,59.88257277483004],[-152.9061290612906,59.88594992936979],[-152.91332913329134,59.88594992936979],[-152.9349293492935,59.87919562029026],[-153.02133021330212,59.88932708390956],[-153.04653046530464,59.88594992936979],[-153.09333093330935,59.87750704302039],[-153.230132301323,59.86906415667096],[-153.24453244532447,59.86230984759143],[-153.26253262532626,59.84880122943238],[-153.28053280532805,59.831915456733554],[-153.28773287732878,59.82009541584438],[-153.25533255332553,59.82178399311425],[-153.22653226532265,59.82853830219378],[-153.19773197731976,59.831915456733554],[-153.1509315093151,59.82009541584438],[-153.13653136531366,59.82178399311425],[-153.12573125731257,59.825161147654],[-153.0609306093061,59.83360403400343],[-153.01413014130142,59.831915456733554],[-153.0069300693007,59.8268497249239],[-152.99972999729997,59.813341106764824],[-152.99972999729997,59.79983248860577],[-153.0069300693007,59.79307817952625],[-153.01053010530106,59.78632387044672],[-153.01773017730176,59.76268378866834],[-153.0429304293043,59.72215793419116],[-153.05373053730537,59.71033789330198],[-153.0789307893079,59.70189500695258],[-153.14013140131402,59.68669781152363],[-153.1509315093151,59.67318919336458],[-153.16533165331654,59.66474630701515],[-153.20133201332013,59.65461484339585],[-153.23733237332374,59.64786053431632],[-153.26253262532626,59.649549111586225],[-153.26613266132662,59.65630342066575],[-153.2769327693277,59.67656634790433],[-153.28773287732878,59.68332065698388],[-153.30573305733057,59.68163207971398],[-153.31653316533166,59.671500616094676],[-153.31653316533166,59.6613691524754],[-153.30573305733057,59.65630342066575],[-153.3021330213302,59.652926266125974],[-153.30573305733057,59.64617195704645],[-153.31653316533166,59.63941764796692],[-153.32733327333273,59.636040493427146],[-153.34533345333455,59.63772907069705],[-153.39213392133922,59.649549111586225],[-153.39933399333992,59.6512376888561],[-153.42453424534244,59.649549111586225],[-153.42453424534244,59.65630342066575],[-153.41013410134101,59.663057729745276],[-153.39933399333992,59.671500616094676],[-153.35973359733597,59.720469356921285],[-153.34533345333455,59.725535088730936],[-153.32373323733236,59.71709220238151],[-153.33813338133382,59.73060082054059],[-153.38133381333813,59.74073228415989],[-153.45333453334533,59.79307817952625],[-153.44973449734496,59.77619240682742],[-153.45333453334533,59.760995211398466],[-153.45333453334533,59.747486593239415],[-153.44253442534426,59.72722366600081],[-153.44613446134463,59.71709220238151],[-153.46413464134642,59.67487777063445],[-153.47133471334712,59.663057729745276],[-153.48933489334894,59.649549111586225],[-153.51453514535146,59.6411062252368],[-153.53613536135362,59.63772907069705],[-153.55773557735577,59.636040493427146],[-153.5721357213572,59.64279480250667],[-153.59733597335975,59.67318919336458],[-153.61173611736118,59.68332065698388],[-153.60453604536045,59.68669781152363],[-153.60093600936008,59.688386388793504],[-153.59733597335975,59.690074966063406],[-153.59733597335975,59.69682927514293],[-153.62253622536224,59.69514069787306],[-153.6261362613626,59.685009234253755],[-153.62253622536224,59.6698120388248],[-153.62253622536224,59.65630342066575],[-153.64413644136442,59.64786053431632],[-153.69453694536946,59.644483379776574],[-153.70533705337053,59.6326633388874],[-153.6189361893619,59.627597607077746],[-153.61173611736118,59.62590902980784],[-153.5721357213572,59.609023257109016],[-153.5649356493565,59.609023257109016],[-153.56853568535686,59.595514638949965],[-153.58653586535866,59.56680882536196],[-153.62253622536224,59.55498878447278],[-153.79173791737918,59.54316874358361],[-153.81333813338134,59.55667736174266],[-153.8349383493835,59.560054516282435],[-153.85653856538565,59.55498878447278],[-153.8781387813878,59.546545898123355],[-153.83853838538386,59.54485732085348],[-153.80973809738097,59.538103011773956],[-153.78813788137882,59.52797154815465],[-153.74133741337414,59.497577157296774],[-153.72693726937268,59.48237996186782],[-153.72333723337232,59.46549418916899],[-153.74853748537487,59.45029699374007],[-153.7521375213752,59.440165530120765],[-153.7809378093781,59.43341122104124],[-153.84213842138422,59.43003406650146],[-153.89613896138962,59.43172264377134],[-153.91413914139142,59.43003406650146],[-153.92133921339214,59.42496833469181],[-153.93573935739357,59.408082561992984],[-153.94653946539466,59.40301683018333],[-154.02934029340292,59.38781963475441],[-154.03654036540365,59.38950821202428],[-154.04734047340474,59.39457394383393],[-154.05454054540544,59.39626252110381],[-154.06174061740617,59.39288536656403],[-154.07254072540726,59.38444248021463],[-154.0761407614076,59.381065325674854],[-154.09414094140942,59.37937674840498],[-154.14454144541446,59.381065325674854],[-154.1121411214112,59.36080239843628],[-154.06534065340654,59.3489823575471],[-154.02214022140222,59.350670934816975],[-153.99333993339934,59.37431101659533],[-153.9861398613986,59.37093386205558],[-153.97533975339752,59.3675567075158],[-153.96453964539646,59.3675567075158],[-153.95373953739536,59.3675567075158],[-153.95373953739536,59.36080239843628],[-154.02574025740256,59.342228048467575],[-154.1121411214112,59.30507934853014],[-154.12654126541264,59.29494788491084],[-154.1409414094141,59.28143926675179],[-154.14454144541446,59.26793064859271],[-154.14814148141483,59.23584768046496],[-154.14454144541446,59.22402763957578],[-154.1229412294123,59.22402763957578],[-154.130141301413,59.20883044414683],[-154.14454144541446,59.2020761350673],[-154.18774187741877,59.203764712337176],[-154.18054180541804,59.1835017850986],[-154.19854198541987,59.1733703214793],[-154.22374223742239,59.16999316693952],[-154.2489424894249,59.168304589669646],[-154.22734227342272,59.163238857859994],[-154.22014220142202,59.16155028059012],[-154.23094230942309,59.15648454878047],[-154.2381423814238,59.15141881697082],[-154.2489424894249,59.14973023970094],[-154.25974259742597,59.14804166243104],[-154.25254252542524,59.13115588973221],[-154.23454234542345,59.127778735192464],[-154.19134191341914,59.13453304427199],[-154.17694176941768,59.12946731246234],[-154.17334173341735,59.119335848843036],[-154.17694176941768,59.10751580795386],[-154.19134191341914,59.100761498874334],[-154.1841418414184,59.09569576706468],[-154.18054180541804,59.09400718979481],[-154.18054180541804,59.08725288071528],[-154.19854198541987,59.07712141709598],[-154.19854198541987,59.0551699125875],[-154.18774187741877,59.0349069853489],[-154.16614166141662,59.02477552172962],[-154.1409414094141,59.03152983080915],[-154.11934119341194,59.0450384489682],[-154.10494104941048,59.06023564439715],[-154.08334083340833,59.073744262556204],[-154.02214022140222,59.083875726175506],[-153.89613896138962,59.065301376206804],[-153.8349383493835,59.06698995347668],[-153.8169381693817,59.07205568528633],[-153.80973809738097,59.073744262556204],[-153.71253712537126,59.070367108016455],[-153.68733687336874,59.06361279893693],[-153.66933669336694,59.05348133531763],[-153.65133651336512,59.038284139888674],[-153.63333633336333,59.0180212126501],[-153.62253622536224,59.011266903570544],[-153.5829358293583,59.00113543995127],[-153.5721357213572,58.994381130871716],[-153.56133561335614,58.99100397633197],[-153.54333543335434,58.989315399062065],[-153.52173521735216,58.99100397633197],[-153.5109351093511,58.994381130871716],[-153.49653496534967,59.002824017221144],[-153.48573485734858,59.002824017221144],[-153.46773467734678,58.99100397633197],[-153.4281342813428,58.980872512712665],[-153.41373413734138,58.97411820363314],[-153.38133381333813,58.940346658235484],[-153.37053370533704,58.93696950369571],[-153.33813338133382,58.93696950369571],[-153.3309333093331,58.93359234915596],[-153.3309333093331,58.92852661734631],[-153.33453334533345,58.92177230826678],[-153.33453334533345,58.91501799918723],[-153.32373323733236,58.89475507194865],[-153.3129331293313,58.889689340139],[-153.2949329493295,58.888000762869126],[-153.2949329493295,58.88124645378957],[-153.30933309333093,58.877869299249824],[-153.36333363333634,58.87449214471005],[-153.34893348933488,58.86773783563052],[-153.33453334533345,58.86604925836065],[-153.26973269732696,58.8711149901703],[-153.2589325893259,58.869426412900395],[-153.26253262532626,58.85760637201122],[-153.28773287732878,58.84409775385217],[-153.33813338133382,58.85422921747147],[-153.36333363333634,58.847474908391945],[-153.37773377733777,58.828900558423214],[-153.3957339573396,58.78162039486651],[-153.40653406534065,58.7613574676279],[-153.42453424534244,58.744471694929075],[-153.4389343893439,58.7343402313098],[-153.5289352893529,58.69719153137237],[-153.56133561335614,58.695502954102494],[-153.57573575735756,58.69043722229284],[-153.5829358293583,58.678617181403666],[-153.59013590135902,58.65835425416506],[-153.6081360813608,58.64484563600601],[-153.63333633336333,58.63471417238671],[-153.6909369093691,58.62120555422766],[-153.79533795337954,58.61445124514813],[-153.86373863738638,58.619516976957755],[-153.89973899739,58.616139822418006],[-153.91413914139142,58.60094262698905],[-153.91053910539105,58.59249974063965],[-153.9069390693907,58.58743400883],[-153.89973899739,58.58574543156013],[-153.90333903339032,58.580679699750476],[-153.91413914139142,58.5688596588613],[-153.91773917739178,58.55535104070222],[-153.92853928539284,58.54015384527327],[-153.92853928539284,58.53846526800339],[-153.9321393213932,58.535088113463644],[-153.93933939339394,58.53171095892387],[-153.94653946539466,58.53339953619374],[-153.95373953739536,58.535088113463644],[-153.96453964539646,58.53677669073352],[-153.97173971739718,58.53171095892387],[-153.9609396093961,58.52833380438409],[-153.9321393213932,58.52326807257447],[-153.92493924939248,58.518202340764816],[-153.92853928539284,58.51144803168526],[-153.9429394293943,58.50300514533586],[-153.95733957339573,58.494562258986434],[-153.96813968139682,58.491185104446686],[-154.00054000540007,58.491185104446686],[-154.04374043740438,58.49625083625634],[-154.08334083340833,58.494562258986434],[-154.1121411214112,58.477676486287635],[-154.09774097740979,58.46754502266833],[-154.07974079740796,58.437150631810425],[-154.0689406894069,58.4219534363815],[-154.06534065340654,58.41688770457185],[-154.0689406894069,58.41351055003207],[-154.0689406894069,58.41013339549232],[-154.06174061740617,58.40844481822242],[-154.0329403294033,58.40844481822242],[-154.02214022140222,58.40506766368267],[-154.00774007740077,58.39493620006337],[-154.00054000540007,58.38480473644407],[-154.0041400414004,58.38142758190432],[-154.0149401494015,58.379739004634416],[-154.06174061740617,58.36454180920549],[-154.0869408694087,58.361164654665714],[-154.19134191341914,58.361164654665714],[-154.19854198541987,58.35441034558619],[-154.19134191341914,58.352721768316314],[-154.1949419494195,58.34596745923676],[-154.20574205742057,58.339213150157235],[-154.21654216542166,58.33583599561749],[-154.24174241742418,58.334147418347584],[-154.29934299342995,58.32063880018853],[-154.31734317343174,58.31050733656923],[-154.32454324543247,58.298687295680054],[-154.3641436414364,58.285178677521],[-154.35694356943569,58.28011294571135],[-154.34974349743499,58.271670059361924],[-154.35334353343532,58.263227173012524],[-154.3641436414364,58.25816144120287],[-154.35334353343532,58.254784286663096],[-154.34254342543426,58.25985001847275],[-154.33534335343353,58.26660432755227],[-154.32454324543247,58.271670059361924],[-154.30654306543065,58.273358636631826],[-154.28134281342813,58.273358636631826],[-154.2669426694267,58.27842436844145],[-154.27054270542706,58.29531014114028],[-154.25254252542524,58.30037587294993],[-154.20574205742057,58.298687295680054],[-154.2021420214202,58.30206445021983],[-154.19854198541987,58.308818759299356],[-154.1949419494195,58.31557306837888],[-154.18774187741877,58.31895022291866],[-154.16974169741698,58.32232737745841],[-154.16614166141662,58.31895022291866],[-154.16254162541625,58.31388449110901],[-154.1229412294123,58.28011294571135],[-154.15174151741516,58.271670059361924],[-154.20574205742057,58.268292904822175],[-154.2489424894249,58.25816144120287],[-154.18774187741877,58.25140713212335],[-154.16614166141662,58.23958709123417],[-154.16614166141662,58.21594700945579],[-154.18774187741877,58.19737265948709],[-154.22014220142202,58.19061835040756],[-154.2561425614256,58.19399550494734],[-154.28134281342813,58.20243839129674],[-154.28854288542885,58.200749814026864],[-154.30294302943028,58.19568408221721],[-154.28854288542885,58.18217546405816],[-154.23454234542345,58.15515822774003],[-154.22734227342272,58.14164960958095],[-154.24534245342454,58.12645241415203],[-154.28134281342813,58.13320672323155],[-154.33534335343353,58.16191253681956],[-154.34974349743499,58.14502676412073],[-154.34614346143462,58.13320672323155],[-154.33534335343353,58.121386682342376],[-154.3281432814328,58.10618948691342],[-154.33534335343353,58.085926559674846],[-154.35334353343532,58.08254940513507],[-154.37134371343714,58.09099229148447],[-154.38574385743857,58.1180095278026],[-154.40734407344073,58.1281409914219],[-154.42894428944288,58.13658387777133],[-154.44334443344434,58.14502676412073],[-154.4469444694447,58.151781073200254],[-154.45054450544507,58.16022395954968],[-154.4541445414454,58.17035542316896],[-154.4541445414454,58.178798309518385],[-154.45774457744577,58.187241195867784],[-154.47214472144722,58.19399550494734],[-154.49374493744938,58.20243839129674],[-154.46854468544686,58.1467153413906],[-154.46134461344613,58.11463237326285],[-154.46854468544686,58.089303714214594],[-154.49734497344974,58.08761513694472],[-154.57654576545764,58.12645241415203],[-154.61254612546125,58.121386682342376],[-154.60534605346052,58.11294379599295],[-154.55494554945548,58.08254940513507],[-154.55134551345515,58.07917225059529],[-154.54414544145442,58.07072936424589],[-154.55134551345515,58.05215501427719],[-154.56574565745657,58.03358066430846],[-154.58374583745837,58.02513777795906],[-154.63054630546304,58.031892087038585],[-154.6449464494645,58.03526924157836],[-154.64854648546486,58.045400705197636],[-154.64854648546486,58.05722074608684],[-154.65214652146523,58.06566363243624],[-154.67014670146702,58.072417941515766],[-154.69174691746917,58.06904078697602],[-154.7169471694717,58.058909323356716],[-154.7349473494735,58.045400705197636],[-154.73854738547385,58.03864639611811],[-154.74214742147421,58.02513777795906],[-154.74574745747458,58.01669489160963],[-154.75654756547564,58.01331773706988],[-154.76734767347673,58.00825200526023],[-154.7781477814778,58.004874850720455],[-154.7889478894789,58.00318627345058],[-154.81054810548105,58.00825200526023],[-154.85734857348572,58.026826355228934],[-154.88254882548824,58.031892087038585],[-154.97254972549726,58.031892087038585],[-155.0229502295023,58.02513777795906],[-155.0409504095041,58.01669489160963],[-155.030150301503,58.00318627345058],[-155.04455044550446,57.97616903713245],[-155.06255062550625,57.9626604189734],[-155.08775087750877,57.95759468716375],[-155.12375123751238,57.955906109893874],[-155.0769507695077,57.91538025541669],[-155.06975069750698,57.89680590544796],[-155.09855098550986,57.879920132749135],[-155.1381513815138,57.87316582366961],[-155.25335253352534,57.879920132749135],[-155.22455224552246,57.857968628240684],[-155.2209522095221,57.849525741891256],[-155.22815228152282,57.84277143281173],[-155.24255242552425,57.836017123732205],[-155.2749527495275,57.83263996919243],[-155.30735307353075,57.83939427827195],[-155.32535325353254,57.83939427827195],[-155.3361533615336,57.83263996919243],[-155.3361533615336,57.8258856601129],[-155.31095310953108,57.79886842379477],[-155.3469534695347,57.8056227328743],[-155.3577535775358,57.8056227328743],[-155.3577535775358,57.79886842379477],[-155.3361533615336,57.79042553744537],[-155.31095310953108,57.77522834201642],[-155.30015300153002,57.75665399204772],[-155.31095310953108,57.73976821934889],[-155.32175321753218,57.73639106480911],[-155.35055350553506,57.73132533299946],[-155.37575375753758,57.72794817845971],[-155.38655386553864,57.72625960118981],[-155.39375393753937,57.72625960118981],[-155.40455404554046,57.72963675572959],[-155.43335433354332,57.746522528428414],[-155.4909549095491,57.76340830112724],[-155.50535505355055,57.76509687839712],[-155.53055530555307,57.77185118747664],[-155.55215552155522,57.78873696017547],[-155.57375573755738,57.79886842379477],[-155.60615606156063,57.79211411471525],[-155.6169561695617,57.78029407382607],[-155.62775627756278,57.76340830112724],[-155.63495634956348,57.74314537388864],[-155.63855638556385,57.72625960118981],[-155.62775627756278,57.70768525122111],[-155.5881558815588,57.689110901252405],[-155.59175591755917,57.675602283093326],[-155.61335613356133,57.66547081947405],[-155.70335703357034,57.648585046775224],[-155.7609576095761,57.648585046775224],[-155.77175771757717,57.64520789223545],[-155.7609576095761,57.63676500588605],[-155.73575735757356,57.626633542266745],[-155.73215732157323,57.621567810457094],[-155.73575735757356,57.61650207864744],[-155.73935739357393,57.61143634683779],[-155.7429574295743,57.60805919229804],[-155.73575735757356,57.594550574138964],[-155.73935739357393,57.572599069630485],[-155.73575735757356,57.559090451471434],[-155.7429574295743,57.55233614239191],[-155.79335793357933,57.54389325604248],[-155.80415804158042,57.54727041058226],[-155.81135811358115,57.55571329693166],[-155.81135811358115,57.564156183281085],[-155.81495814958149,57.572599069630485],[-155.82575825758258,57.57935337871004],[-155.8329583295833,57.57935337871004],[-155.84735847358473,57.56246760601121],[-155.8617586175862,57.559090451471434],[-155.9049590495905,57.55571329693166],[-155.91215912159123,57.54895898785213],[-155.9229592295923,57.532073215153304],[-155.95175951759518,57.533761792423206],[-155.9769597695977,57.54727041058226],[-156.020160201602,57.57597622417026],[-156.03456034560347,57.57091049236061],[-156.03456034560347,57.55571329693166],[-156.01656016560165,57.53882752423283],[-156.01656016560165,57.532073215153304],[-156.08136081360814,57.537138946962955],[-156.1029610296103,57.532073215153304],[-156.0921609216092,57.52025317426413],[-156.05256052560526,57.51856459699425],[-156.04176041760417,57.506744556105076],[-156.04176041760417,57.48985878340625],[-156.04176041760417,57.474661587977295],[-156.03456034560347,57.46284154708812],[-156.02376023760237,57.45608723800859],[-156.059760597606,57.43075857896034],[-156.1137611376114,57.447644351659164],[-156.16776167761677,57.47297301070742],[-156.21456214562147,57.47635016524717],[-156.22176221762217,57.46790727889777],[-156.22536225362254,57.45608723800859],[-156.2289622896229,57.44257861984951],[-156.23976239762396,57.43751288803989],[-156.26856268562685,57.42907000169046],[-156.30816308163082,57.425692847150685],[-156.34056340563404,57.41556138353141],[-156.470164701647,57.33957540638667],[-156.49536495364953,57.3378868291168],[-156.52056520565205,57.332821097307146],[-156.54576545765457,57.322689633687844],[-156.55656556565566,57.305803860989016],[-156.5529655296553,57.28216377921066],[-156.5349653496535,57.278786624670914],[-156.39096390963908,57.314246747338444],[-156.3549635496355,57.31086959279867],[-156.3441634416344,57.31255817006857],[-156.34776347763477,57.30073812917939],[-156.34056340563404,57.28554093375044],[-156.3441634416344,57.270343738321486],[-156.34776347763477,57.270343738321486],[-156.35136351363514,57.27203231559136],[-156.35136351363514,57.27540947013114],[-156.35136351363514,57.27709804740101],[-156.35856358563586,57.251769388352784],[-156.38376383763838,57.23994934746361],[-156.44856448564485,57.229817883844305],[-156.44856448564485,57.22306357476478],[-156.43056430564306,57.22306357476478],[-156.4089640896409,57.21799784295513],[-156.39456394563945,57.2112435338756],[-156.38736387363875,57.199423492986426],[-156.38016380163802,57.194357761176775],[-156.35856358563586,57.190980606637],[-156.35136351363514,57.18760345209725],[-156.34776347763477,57.17747198847795],[-156.34776347763477,57.17409483393817],[-156.3549635496355,57.17071767939842],[-156.35856358563586,57.16396337031887],[-156.37656376563766,57.14370044308029],[-156.45936459364594,57.12512609311159],[-156.48816488164883,57.11330605222241],[-156.470164701647,57.10148601133321],[-156.45216452164522,57.08628881590428],[-156.470164701647,57.07953450682476],[-156.4809648096481,57.08628881590428],[-156.48816488164883,57.096420279523585],[-156.49536495364953,57.09979743406333],[-156.50256502565026,57.08966597044403],[-156.50256502565026,57.06264873412593],[-156.50976509765098,57.05251727050663],[-156.5241652416524,57.0457629614271],[-156.5421654216542,57.0457629614271],[-156.5637656376564,57.047451538696976],[-156.57816578165782,57.05251727050663],[-156.58896588965888,57.05758300231628],[-156.6249662496625,57.07953450682476],[-156.63216632166322,57.0727801977452],[-156.6249662496625,57.05927157958615],[-156.64656646566465,57.05927157958615],[-156.5637656376564,57.00523710694992],[-156.54936549365493,56.98328560244144],[-156.57456574565745,56.98328560244144],[-156.65736657366574,56.998482797870366],[-156.6681666816668,56.998482797870366],[-156.6789667896679,57.00017137514027],[-156.68616686166862,57.00354852968002],[-156.68976689766896,57.00861426148967],[-156.70416704167042,57.03056576599815],[-156.70776707767078,57.033942920537925],[-156.7149671496715,57.03732007507767],[-156.72576725767257,57.042385806887324],[-156.7761677616776,57.05251727050663],[-156.78336783367834,57.04914011596685],[-156.79056790567904,57.042385806887324],[-156.7941679416794,57.033942920537925],[-156.7941679416794,57.02718861145837],[-156.7869678696787,57.02381145691862],[-156.7761677616776,57.0170571478391],[-156.76896768967688,57.011991416029446],[-156.76176761767618,57.00354852968002],[-156.76176761767618,56.99172848879084],[-156.76896768967688,56.98666275698119],[-156.7761677616776,56.98328560244144],[-156.78336783367834,56.976531293361916],[-156.7869678696787,56.96808840701249],[-156.7869678696787,56.95120263431366],[-156.79056790567904,56.94107117069436],[-156.79776797767977,56.92418539799553],[-156.80856808568086,56.9072996252967],[-156.8229682296823,56.89716816167743],[-156.84096840968408,56.90392247075695],[-156.88776887768879,56.952891211583534],[-156.90576905769058,56.96133409793296],[-156.92736927369273,56.96977698428236],[-156.9489694896949,56.976531293361916],[-156.95976959769598,56.976531293361916],[-156.95256952569525,56.96639982974261],[-156.94536945369452,56.95457978885344],[-156.9489694896949,56.94275974796426],[-156.95616956169562,56.93431686161483],[-156.9489694896949,56.92925112980518],[-156.94536945369452,56.92080824345578],[-156.94176941769416,56.914053934376255],[-156.95256952569525,56.91067677983648],[-156.99576995769957,56.9072996252967],[-157.03177031770318,56.890413852597874],[-157.0389703897039,56.887036698058125],[-157.04977049770497,56.8785938117087],[-157.07857078570785,56.83637937996164],[-157.09297092970928,56.82624791634234],[-157.1109711097111,56.83131364815199],[-157.16857168571687,56.854953729930344],[-157.19017190171903,56.84988799812069],[-157.1829718297183,56.84144511177129],[-157.16137161371614,56.83131364815199],[-157.14697146971469,56.81442787545316],[-157.16137161371614,56.79078779367481],[-157.19017190171903,56.775590598245856],[-157.21537215372155,56.78065633005551],[-157.24057240572407,56.79078779367481],[-157.28737287372874,56.80091925729411],[-157.30537305373053,56.811050720913386],[-157.36657366573667,56.851576575390595],[-157.3917739177392,56.86339661627977],[-157.42057420574207,56.86677377081952],[-157.44217442174423,56.85664230720022],[-157.46017460174602,56.846510843580944],[-157.46737467374675,56.83975653450139],[-157.46737467374675,56.829625070882116],[-157.46377463774638,56.81611645272304],[-157.4529745297453,56.811050720913386],[-157.43857438574386,56.80936214364351],[-157.42777427774277,56.80598498910376],[-157.4169741697417,56.797542102754335],[-157.40977409774098,56.78572206186516],[-157.40257402574025,56.77390202097598],[-157.40617406174061,56.76377055735668],[-157.41337413374134,56.76883628916633],[-157.42057420574207,56.77390202097598],[-157.42777427774277,56.775590598245856],[-157.4349743497435,56.77390202097598],[-157.43857438574386,56.770524866436205],[-157.44577445774456,56.76545913462655],[-157.44937449374493,56.75870482554703],[-157.44577445774456,56.757016248277154],[-157.46377463774638,56.757016248277154],[-157.51057510575106,56.76377055735668],[-157.53217532175321,56.7519505164675],[-157.55377553775537,56.72999901195902],[-157.5717757177572,56.71649039379997],[-157.59697596975968,56.72999901195902],[-157.6041760417604,56.721556125609624],[-157.59337593375935,56.71817897106985],[-157.58617586175862,56.713113239260196],[-157.5789757897579,56.704670352910796],[-157.5789757897579,56.69622746656137],[-157.5717757177572,56.70298177564089],[-157.55737557375573,56.686096002942065],[-157.53577535775358,56.677653116592666],[-157.48537485374854,56.67427596205289],[-157.48177481774817,56.67089880751314],[-157.46377463774638,56.650635880274535],[-157.45657456574565,56.64725872573479],[-157.45657456574565,56.64388157119501],[-157.46377463774638,56.63375010757571],[-157.47457474574745,56.62530722122631],[-157.48177481774817,56.62024148941666],[-157.51417514175142,56.62024148941666],[-157.58257582575825,56.63206153030583],[-157.60777607776078,56.623618643956405],[-157.6329763297633,56.61179860306723],[-157.66537665376654,56.61179860306723],[-157.69417694176943,56.62024148941666],[-157.71577715777158,56.63375010757571],[-157.75177751777517,56.67427596205289],[-157.77337773377735,56.68440742567219],[-157.80577805778057,56.677653116592666],[-157.83817838178382,56.66583307570349],[-157.84897848978488,56.65739018935406],[-157.85977859778598,56.65232445754441],[-157.89937899378992,56.65401303481431],[-157.91377913779138,56.65401303481431],[-157.93177931779317,56.642192993925136],[-157.96417964179642,56.61179860306723],[-157.9821798217982,56.60673287125758],[-158.03258032580325,56.59828998490818],[-158.03978039780398,56.5966014076383],[-158.04338043380434,56.593224253098526],[-158.05058050580504,56.588158521288875],[-158.05058050580504,56.58140421220935],[-158.0541805418054,56.57802705766957],[-158.08658086580866,56.57802705766957],[-158.10458104581045,56.57296132585995],[-158.1189811898119,56.56282986224065],[-158.12618126181263,56.54932124408157],[-158.13338133381333,56.530746894112866],[-158.0757807578076,56.53750120319239],[-157.96417964179642,56.56958417132017],[-157.88137881378813,56.57127274859005],[-157.87057870578707,56.56958417132017],[-157.85977859778598,56.56451843951052],[-157.84897848978488,56.55607555316112],[-157.84897848978488,56.54594408954182],[-157.84897848978488,56.53750120319239],[-157.84177841778418,56.52736973957312],[-157.83817838178382,56.517238275953815],[-157.84177841778418,56.50710681233451],[-157.86337863378634,56.49359819417546],[-157.87777877778777,56.47840099874651],[-157.8849788497885,56.476712421476634],[-157.89937899378992,56.47502384420673],[-157.9569795697957,56.48177815328626],[-158.06858068580686,56.512172544144164],[-158.12618126181263,56.517238275953815],[-158.15138151381512,56.51386112141404],[-158.16578165781658,56.50710681233451],[-158.16938169381694,56.49697534871521],[-158.15858158581585,56.48853246236581],[-158.13338133381333,56.49697534871521],[-158.12618126181263,56.48684388509591],[-158.1369813698137,56.46489238058746],[-158.16578165781658,56.4581380715079],[-158.22338223382235,56.46151522604768],[-158.24858248582487,56.4581380715079],[-158.2629826298263,56.4581380715079],[-158.2737827378274,56.46658095785733],[-158.2809828098281,56.46995811239708],[-158.3169831698317,56.47502384420673],[-158.33858338583386,56.47502384420673],[-158.35658356583565,56.47164668966698],[-158.41418414184142,56.44631803061873],[-158.4321843218432,56.43787514426933],[-158.4429844298443,56.427743680650025],[-158.45378453784537,56.414235062490974],[-158.47178471784719,56.400726444331895],[-158.50778507785077,56.378774939823415],[-158.52218522185223,56.365266321664365],[-158.51858518585186,56.36020058985471],[-158.51138511385113,56.34500339442576],[-158.54018540185402,56.343314817155886],[-158.57618576185763,56.329806198996835],[-158.60858608586085,56.31460900356788],[-158.63378633786337,56.29772323086905],[-158.64818648186483,56.27070599455092],[-158.61938619386194,56.255508799122],[-158.53658536585365,56.25044306731235],[-158.54378543785438,56.26057453093165],[-158.55458554585545,56.267328840011174],[-158.56178561785617,56.275771726360574],[-158.56538565385654,56.28759176724975],[-158.56178561785617,56.29941180813893],[-158.5509855098551,56.307854694488356],[-158.47178471784719,56.343314817155886],[-158.44658446584467,56.33993766261614],[-158.4429844298443,56.31123184902813],[-158.4321843218432,56.31798615810766],[-158.4249842498425,56.32136331264741],[-158.41418414184142,56.32136331264741],[-158.4069840698407,56.31798615810766],[-158.41058410584105,56.31292042629801],[-158.41418414184142,56.29772323086905],[-158.3709837098371,56.31798615810766],[-158.34578345783459,56.32642904445706],[-158.3349833498335,56.32305188991731],[-158.32058320583207,56.31460900356788],[-158.31338313383134,56.31123184902813],[-158.25938259382593,56.30447753994858],[-158.2269822698227,56.29603465359918],[-158.2089820898209,56.28421461271],[-158.2269822698227,56.26901741728105],[-158.24858248582487,56.255508799122],[-158.2737827378274,56.24706591277257],[-158.30978309783097,56.240311603693044],[-158.3349833498335,56.231868717343644],[-158.34938349383495,56.22849156280387],[-158.36378363783638,56.23018014007374],[-158.38538385383853,56.23524587188339],[-158.39978399784,56.23693444915327],[-158.39618396183963,56.22849156280387],[-158.39978399784,56.22004867645444],[-158.4069840698407,56.213294367374914],[-158.41418414184142,56.20147432648574],[-158.39978399784,56.20654005829539],[-158.38538385383853,56.213294367374914],[-158.3709837098371,56.21667152191469],[-158.3277832778328,56.19978574921586],[-158.32418324183243,56.19303144013634],[-158.34578345783459,56.18121139924716],[-158.3169831698317,56.17445709016761],[-158.28818288182882,56.18458855378691],[-158.25938259382593,56.20147432648574],[-158.20538205382053,56.218360099184565],[-158.17658176581767,56.23524587188339],[-158.1477814778148,56.245377335502695],[-158.1189811898119,56.23693444915327],[-158.15138151381512,56.23018014007374],[-158.16218162181622,56.22511440826409],[-158.16938169381694,56.22004867645444],[-158.1729817298173,56.21160579010504],[-158.180181801818,56.204851481025514],[-158.19818198181983,56.19978574921586],[-158.21258212582126,56.18627713105681],[-158.22338223382235,56.18121139924716],[-158.2341823418234,56.18121139924716],[-158.2449824498245,56.182899976517035],[-158.25578255782557,56.182899976517035],[-158.27018270182703,56.17445709016761],[-158.2629826298263,56.16770278108808],[-158.28818288182882,56.160948472008556],[-158.32418324183243,56.15925989473868],[-158.35298352983529,56.150817008389254],[-158.360183601836,56.1271769266109],[-158.38178381783817,56.13561981296033],[-158.3889838898389,56.152505585659156],[-158.3889838898389,56.169391358357984],[-158.39258392583926,56.18121139924716],[-158.41058410584105,56.18121139924716],[-158.42138421384215,56.16601420381821],[-158.4249842498425,56.147439853849505],[-158.41418414184142,56.133931235690426],[-158.4321843218432,56.13224265842055],[-158.4429844298443,56.133931235690426],[-158.42858428584285,56.11366830845185],[-158.41058410584105,56.09509395848312],[-158.4069840698407,56.07820818578432],[-158.42858428584285,56.06469956762524],[-158.4429844298443,56.084962494863845],[-158.44658446584467,56.09509395848312],[-158.4429844298443,56.106913999372324],[-158.45378453784537,56.1086025766422],[-158.50058500585007,56.106913999372324],[-158.5041850418504,56.10184826756267],[-158.49338493384934,56.090028226673496],[-158.46818468184682,56.071453876704766],[-158.4861848618486,56.05963383581559],[-158.4861848618486,56.04274806311676],[-158.46818468184682,56.03261659949749],[-158.45378453784537,56.04105948584689],[-158.45738457384573,56.04274806311676],[-158.45738457384573,56.04612521765654],[-158.4609846098461,56.05119094946619],[-158.43578435784357,56.04274806311676],[-158.42138421384215,56.02417371314806],[-158.42858428584285,56.00728794044923],[-158.44658446584467,56.00222220863958],[-158.4609846098461,56.01066509498901],[-158.48258482584825,56.03261659949749],[-158.4969849698497,56.03768233130711],[-158.51138511385113,56.03430517676736],[-158.51138511385113,56.022485135878185],[-158.5041850418504,56.008976517719105],[-158.4969849698497,55.99715647682993],[-158.51138511385113,55.995467899560055],[-158.5329853298533,56.003910785909454],[-158.55458554585545,56.017419404068534],[-158.57258572585727,56.030928022227585],[-158.51138511385113,56.05119094946619],[-158.51138511385113,56.057945258545715],[-158.5689856898569,56.04781379492641],[-158.5869858698587,56.04105948584689],[-158.60138601386015,56.04105948584689],[-158.60498604986049,56.052879526736064],[-158.5977859778598,56.066388144895114],[-158.57978579785797,56.071453876704766],[-158.57978579785797,56.07820818578432],[-158.60138601386015,56.08665107213372],[-158.60138601386015,56.10015969029277],[-158.5869858698587,56.11366830845185],[-158.56178561785617,56.1187340402615],[-158.5581855818558,56.12379977207115],[-158.5509855098551,56.1457512765796],[-158.54378543785438,56.15419416292903],[-158.54018540185402,56.15419416292903],[-158.52938529385293,56.152505585659156],[-158.51858518585186,56.15419416292903],[-158.5149851498515,56.152505585659156],[-158.51138511385113,56.152505585659156],[-158.51138511385113,56.15757131746878],[-158.51138511385113,56.16601420381821],[-158.51138511385113,56.16770278108808],[-158.48978489784898,56.17614566743751],[-158.47898478984789,56.18458855378691],[-158.47898478984789,56.191342862866435],[-158.48978489784898,56.196408594676086],[-158.56538565385654,56.19472001740621],[-158.6409864098641,56.20147432648574],[-158.62658626586267,56.18627713105681],[-158.60858608586085,56.177834244707384],[-158.56538565385654,56.16770278108808],[-158.59058590585906,56.152505585659156],[-158.6121861218612,56.13561981296033],[-158.63378633786337,56.120422617531375],[-158.66618666186662,56.11197973118195],[-158.66258662586625,56.13055408115068],[-158.66978669786698,56.1457512765796],[-158.6841868418684,56.152505585659156],[-158.7021870218702,56.147439853849505],[-158.69138691386914,56.13561981296033],[-158.68778687786877,56.125488349341026],[-158.69138691386914,56.115356885721724],[-158.7021870218702,56.106913999372324],[-158.66978669786698,56.098471113022896],[-158.6589865898659,56.09171680394337],[-158.66618666186662,56.07820818578432],[-158.66618666186662,56.06132241308549],[-158.7309873098731,56.04612521765654],[-158.71658716587166,56.030928022227585],[-158.6949869498695,56.02923944495771],[-158.6769867698677,56.030928022227585],[-158.6589865898659,56.02923944495771],[-158.64818648186483,56.017419404068534],[-158.64818648186483,56.000533631369706],[-158.6589865898659,55.9904021677504],[-158.68778687786877,55.981959281401004],[-158.68778687786877,55.97689354959135],[-158.6841868418684,55.97520497232145],[-158.67338673386735,55.97013924051183],[-158.66618666186662,55.97013924051183],[-158.6841868418684,55.95831919962262],[-158.7129871298713,55.953253467813],[-158.74178741787418,55.95494204508287],[-158.76338763387633,55.9616963541624],[-158.7561875618756,55.96676208597205],[-158.7489874898749,55.9718278177817],[-158.73818738187381,55.97520497232145],[-158.72738727387275,55.97689354959135],[-158.72738727387275,55.981959281401004],[-158.73818738187381,55.99209074502028],[-158.74538745387454,56.00222220863958],[-158.7561875618756,56.00728794044923],[-158.78138781387813,56.01066509498901],[-158.7849878498785,56.00728794044923],[-158.79218792187922,55.99209074502028],[-158.79938799387995,55.9904021677504],[-158.81378813788137,55.99209074502028],[-158.82458824588247,55.99715647682993],[-158.83538835388353,56.01404224952876],[-158.86058860588605,56.01235367225888],[-158.88938889388893,55.98364785867088],[-158.9289892898929,55.92117049968522],[-158.9361893618936,55.92117049968522],[-158.94338943389434,55.93130196330452],[-158.95778957789577,55.93636769511417],[-158.97218972189722,55.93636769511417],[-159.00459004590044,55.93130196330452],[-159.01539015390154,55.92961338603462],[-159.0189901899019,55.924547654224966],[-159.02259022590226,55.91610476787557],[-159.0189901899019,55.911039036065915],[-159.01539015390154,55.905973304256264],[-159.01179011790117,55.90766188152617],[-159.01179011790117,55.90090757244661],[-159.01179011790117,55.897530417906864],[-159.01539015390154,55.89415326336709],[-159.02619026190263,55.89246468609721],[-159.0369903699037,55.89415326336709],[-159.04059040590406,55.897530417906864],[-159.04419044190442,55.902596149716516],[-159.0729907299073,55.92117049968522],[-159.08379083790837,55.92623623149487],[-159.09819098190982,55.92792480876474],[-159.11259112591125,55.92623623149487],[-159.1449914499145,55.91610476787557],[-159.15939159391593,55.91441619060569],[-159.17379173791738,55.911039036065915],[-159.1881918819188,55.89584184063696],[-159.20259202592027,55.89246468609721],[-159.26739267392674,55.889087531557436],[-159.29259292592926,55.878956067938134],[-159.31779317793178,55.85869314069956],[-159.33219332193323,55.87726749066826],[-159.35739357393572,55.878956067938134],[-159.38259382593827,55.87220175885861],[-159.40059400594006,55.85869314069956],[-159.41139411394113,55.84180736800073],[-159.4149941499415,55.80297009079342],[-159.42219422194222,55.791150049904246],[-159.440194401944,55.78946147263437],[-159.45459454594547,55.80128151352355],[-159.4689946899469,55.818167286222376],[-159.47619476194762,55.83167590438143],[-159.479794797948,55.84518452254051],[-159.479794797948,55.86375887250921],[-159.47619476194762,55.88233322247791],[-159.4689946899469,55.90090757244661],[-159.49059490594905,55.90090757244661],[-159.51939519395194,55.89584184063696],[-159.54459544595446,55.889087531557436],[-159.55899558995588,55.88064464520804],[-159.55539555395555,55.86544744977908],[-159.52659526595266,55.83674163619108],[-159.51939519395194,55.821544440762125],[-159.51579515795157,55.81141297714285],[-159.5121951219512,55.79283862717412],[-159.5121951219512,55.782707163554846],[-159.50859508595084,55.777641431745195],[-159.5049950499505,55.77088712266564],[-159.5049950499505,55.76750996812589],[-159.5049950499505,55.76075565904637],[-159.5121951219512,55.75737850450659],[-159.51579515795157,55.755689927236716],[-159.51939519395194,55.75231277269694],[-159.53019530195303,55.74049273180776],[-159.55179551795518,55.72191838183906],[-159.5661956619566,55.70503260914023],[-159.54459544595446,55.69490114552093],[-159.54819548195482,55.68308110463175],[-159.54819548195482,55.674638218282354],[-159.54819548195482,55.66450675466305],[-159.55539555395555,55.657752445583526],[-159.55899558995588,55.65437529104375],[-159.56259562595625,55.6493095592341],[-159.5661956619566,55.64593240469435],[-159.56979569795698,55.64424382742445],[-159.58059580595807,55.64255525015457],[-159.58419584195843,55.639178095614795],[-159.60219602196022,55.62735805472562],[-159.62019620196202,55.61047228202679],[-159.6309963099631,55.59358650932796],[-159.62739627396274,55.57838931389904],[-159.7209972099721,55.56656927300986],[-159.74259742597425,55.571635004819484],[-159.7317973179732,55.58007789116891],[-159.710197101971,55.59696366386774],[-159.69579695796958,55.60540655021714],[-159.72819728197283,55.603717972947265],[-159.7569975699757,55.598652241137614],[-159.74259742597425,55.61384943656657],[-159.710197101971,55.61891516837622],[-159.68139681396815,55.617226591106316],[-159.65979659796596,55.60540655021714],[-159.64179641796417,55.612160859296694],[-159.64179641796417,55.62060374564609],[-159.6381963819638,55.62735805472562],[-159.63459634596347,55.630735209265396],[-159.62379623796238,55.63242378653527],[-159.61659616596165,55.63580094107505],[-159.62379623796238,55.6408666728847],[-159.65619656196563,55.652686713773875],[-159.6921969219692,55.661129600123274],[-159.710197101971,55.6678839092028],[-159.6921969219692,55.67970395009198],[-159.63459634596347,55.701655454600456],[-159.6489964899649,55.71178691821976],[-159.65979659796596,55.71854122729928],[-159.66339663396633,55.73542699999811],[-159.67059670596706,55.737115577268014],[-159.67779677796779,55.737115577268014],[-159.68139681396815,55.74218130907764],[-159.67779677796779,55.75231277269694],[-159.6489964899649,55.786084318094595],[-159.62739627396274,55.8046586680633],[-159.62379623796238,55.813101554412725],[-159.64179641796417,55.8249215953019],[-159.65619656196563,55.83167590438143],[-159.7029970299703,55.843495945270604],[-159.8289982899829,55.85193883162003],[-159.8469984699847,55.85193883162003],[-159.85419854198543,55.84180736800073],[-159.86139861398613,55.818167286222376],[-159.85419854198543,55.8046586680633],[-159.85059850598506,55.79452720444402],[-159.8577985779858,55.791150049904246],[-159.90459904599047,55.782707163554846],[-159.92259922599226,55.78946147263437],[-159.9549995499955,55.816478708952474],[-159.97659976599766,55.818167286222376],[-159.97659976599766,55.81141297714285],[-159.96939969399693,55.8063472453332],[-159.96579965799657,55.80128151352355],[-159.96939969399693,55.786084318094595],[-159.9729997299973,55.777641431745195],[-159.9837998379984,55.777641431745195],[-160.0090000900009,55.786084318094595],[-160.0162001620016,55.791150049904246],[-160.0270002700027,55.7962157817139],[-160.0378003780038,55.79790435898377],[-160.0450004500045,55.79283862717412],[-160.05220052200522,55.77595285447529],[-160.05940059400595,55.76919854539577],[-160.03060030600307,55.73542699999811],[-160.03420034200343,55.72698411364871],[-160.06660066600665,55.723606959108935],[-160.08820088200883,55.728672690918586],[-160.09540095400953,55.728672690918586],[-160.0990009900099,55.71854122729928],[-160.09540095400953,55.71347549548963],[-160.06660066600665,55.701655454600456],[-160.09540095400953,55.69996687733058],[-160.109801098011,55.70334403187036],[-160.12420124201242,55.71178691821976],[-160.13140131401315,55.720229804569186],[-160.1350013500135,55.728672690918586],[-160.1422014220142,55.73373842272824],[-160.15660156601567,55.737115577268014],[-160.14940149401494,55.720229804569186],[-160.1422014220142,55.688146836441405],[-160.1350013500135,55.674638218282354],[-160.16380163801637,55.657752445583526],[-160.23940239402395,55.66450675466305],[-160.25740257402575,55.65437529104375],[-160.25740257402575,55.64593240469435],[-160.3510035100351,55.64593240469435],[-160.39780397803978,55.652686713773875],[-160.41940419404193,55.65437529104375],[-160.44100441004412,55.64593240469435],[-160.42660426604266,55.634112363805144],[-160.36540365403653,55.612160859296694],[-160.36540365403653,55.60540655021714],[-160.39060390603908,55.598652241137614],[-160.4338043380434,55.576700736629135],[-160.45540455404554,55.57838931389904],[-160.45540455404554,55.563192118470084],[-160.45540455404554,55.55812638666043],[-160.44820448204482,55.54968350031103],[-160.4590045900459,55.54292919123148],[-160.46260462604627,55.52942057307243],[-160.46980469804697,55.51591195491338],[-160.46980469804697,55.505780491294075],[-160.4770047700477,55.4939604504049],[-160.4950049500495,55.48551756405547],[-160.5310053100531,55.4753861004362],[-160.5490054900549,55.48889471859525],[-160.58140581405814,55.541240613961605],[-160.5922059220592,55.56488069573996],[-160.59580595805957,55.58852077751831],[-160.59940599405994,55.60540655021714],[-160.6138061380614,55.60540655021714],[-160.62820628206282,55.590209354788215],[-160.64260642606425,55.56994642754961],[-160.6570065700657,55.55137207758091],[-160.68220682206822,55.54461776850138],[-160.74340743407433,55.54799492304113],[-160.76860768607685,55.54461776850138],[-160.7650076500765,55.5311091503423],[-160.739807398074,55.52435484126278],[-160.70740707407074,55.52435484126278],[-160.6750067500675,55.5226662639929],[-160.66060660606607,55.505780491294075],[-160.66780667806677,55.47707467770607],[-160.68220682206822,55.465254636816894],[-160.7830078300783,55.446680286848164],[-160.79740797407973,55.448368864118066],[-160.80820808208082,55.451746018657815],[-160.83340833408334,55.465254636816894],[-160.8442084420844,55.46863179135664],[-160.84780847808477,55.473697523166294],[-160.8442084420844,55.483828986785596],[-160.8370083700837,55.49902618221455],[-160.83340833408334,55.51084622310373],[-160.84060840608407,55.519289109453126],[-160.86580865808656,55.52435484126278],[-160.92340923409233,55.519289109453126],[-160.95940959409594,55.4939604504049],[-160.98820988209883,55.45850032773737],[-161.0242102421024,55.42810593687946],[-161.0710107101071,55.407843009640885],[-161.27981279812798,55.3554971142745],[-161.31221312213123,55.353808537004625],[-161.32661326613265,55.36225142335405],[-161.3410134101341,55.38251435059263],[-161.36981369813697,55.385891505132406],[-161.47781477814777,55.36056284608415],[-161.50661506615066,55.36394000062393],[-161.51741517415175,55.3842029278625],[-161.5138151381514,55.389268659672155],[-161.48861488614887,55.42810593687946],[-161.4850148501485,55.438237400498764],[-161.48141481414814,55.48045183224582],[-161.47781477814777,55.48551756405547],[-161.45261452614525,55.514223377643475],[-161.4418144181442,55.52604341853265],[-161.420214202142,55.53786345942183],[-161.3878138781388,55.571635004819484],[-161.36621366213663,55.57838931389904],[-161.3482134821348,55.56994642754961],[-161.3158131581316,55.54292919123148],[-161.29061290612907,55.53786345942183],[-161.18261182611826,55.52435484126278],[-161.150211502115,55.52604341853265],[-161.14661146611465,55.53448630488208],[-161.1610116101161,55.54461776850138],[-161.24741247412473,55.55812638666043],[-161.26181261812619,55.56150354120021],[-161.27261272612725,55.571635004819484],[-161.27981279812798,55.581766468438786],[-161.29061290612907,55.59189793205809],[-161.3158131581316,55.60034081840749],[-161.36621366213663,55.61047228202679],[-161.40941409414094,55.63580094107505],[-161.43821438214383,55.639178095614795],[-161.62181621816217,55.612160859296694],[-161.61461614616147,55.60034081840749],[-161.61821618216183,55.59358650932796],[-161.62541625416253,55.590209354788215],[-161.63621636216362,55.58514362297856],[-161.65061650616505,55.56150354120021],[-161.70821708217082,55.527731995802554],[-161.71541715417155,55.5125348003736],[-161.71181711817118,55.5024033367543],[-161.70821708217082,55.49733760494465],[-161.7010170101701,55.49564902767477],[-161.69741697416976,55.492271873134996],[-161.69741697416976,55.48214040951572],[-161.70821708217082,55.43486024595899],[-161.71181711817118,55.42472878233971],[-161.70821708217082,55.407843009640885],[-161.71181711817118,55.40108870056133],[-161.71541715417155,55.39264581421193],[-161.81621816218163,55.31665983706722],[-161.83421834218342,55.29301975528884],[-161.84141841418415,55.28964260074909],[-161.89541895418955,55.242362437192384],[-161.89901899018992,55.233919550842955],[-161.89901899018992,55.22378808722365],[-161.90261902619025,55.21703377814413],[-161.91341913419134,55.21534520087425],[-161.9350193501935,55.21365662360435],[-161.9458194581946,55.21534520087425],[-161.95661956619566,55.22209950995378],[-161.94941949419496,55.220410932683905],[-161.9242192421924,55.22209950995378],[-161.9242192421924,55.228853819033304],[-161.94941949419496,55.23729670538273],[-161.98541985419854,55.24067385992248],[-162.0178201782018,55.23898528265261],[-162.04662046620467,55.23560812811283],[-162.04662046620467,55.228853819033304],[-162.02142021420215,55.2001480054453],[-162.01422014220142,55.184950810016346],[-162.03222032220322,55.17481934639707],[-161.98541985419854,55.157933573698244],[-161.98181981819818,55.14780211007894],[-161.97461974619745,55.13767064645964],[-161.96381963819638,55.130916337380114],[-161.95661956619566,55.12585060557046],[-161.9710197101971,55.10727625560176],[-161.9998199982,55.09376763744268],[-162.03222032220322,55.08363617382341],[-162.05742057420574,55.078570442013756],[-162.08262082620826,55.08025901928363],[-162.1042210422104,55.08870190563306],[-162.12942129421293,55.10221052379211],[-162.14022140221402,55.11909629649094],[-162.12222122221223,55.12416202830059],[-162.1150211502115,55.12585060557046],[-162.12222122221223,55.13260491464999],[-162.11142111421114,55.14104780099942],[-162.10782107821078,55.149490687348816],[-162.1042210422104,55.157933573698244],[-162.10062100621008,55.16806503731752],[-162.19422194221943,55.14273637826929],[-162.230222302223,55.11234198741141],[-162.21222212222122,55.09039048290293],[-162.1978219782198,55.0633732465848],[-162.20142201422016,55.03973316480645],[-162.230222302223,55.02960170118715],[-162.24462244622447,55.0262245466474],[-162.2590225902259,55.02115881483775],[-162.27342273422735,55.019470237567845],[-162.28782287822878,55.0262245466474],[-162.29862298622987,55.03635601026667],[-162.3130231302313,55.05830751477515],[-162.32022320223203,55.07181613293423],[-162.3310233102331,55.06675040112458],[-162.33822338223382,55.05830751477515],[-162.35262352623528,55.03973316480645],[-162.36342363423634,55.03635601026667],[-162.4210242102421,55.03635601026667],[-162.449824498245,55.03973316480645],[-162.47142471424715,55.04817605115585],[-162.4930249302493,55.06168466931493],[-162.5110251102511,55.078570442013756],[-162.52542525425255,55.10221052379211],[-162.51822518225183,55.114030564681286],[-162.4930249302493,55.11740771922106],[-162.46422464224642,55.11234198741141],[-162.41742417424175,55.09714479198246],[-162.39222392223922,55.09714479198246],[-162.35982359823598,55.10558767833186],[-162.41742417424175,55.12922776011024],[-162.43542435424354,55.139359223729514],[-162.47862478624785,55.17481934639707],[-162.48942489424894,55.18832796455612],[-162.53262532625325,55.24911674627191],[-162.55782557825577,55.26769109624061],[-162.6010260102601,55.27106825078039],[-162.57222572225723,55.28119971439966],[-162.56862568625687,55.29301975528884],[-162.5830258302583,55.30146264163827],[-162.61542615426154,55.30315121890814],[-162.64422644226443,55.29977406436839],[-162.66942669426695,55.291331178018964],[-162.68742687426874,55.277822559859914],[-162.70542705427056,55.25924820989118],[-162.719827198272,55.23898528265261],[-162.719827198272,55.218722355414],[-162.70542705427056,55.201836582715174],[-162.65862658626585,55.190016541826],[-162.63342633426333,55.17988507820672],[-162.61542615426154,55.166376460047644],[-162.61542615426154,55.15455641915847],[-162.60462604626048,55.14273637826929],[-162.6010260102601,55.13767064645964],[-162.60462604626048,55.13260491464999],[-162.61542615426154,55.12585060557046],[-162.61542615426154,55.12922776011024],[-162.6190261902619,55.13429349191989],[-162.62622626226263,55.13767064645964],[-162.63342633426333,55.135982069189765],[-162.6370263702637,55.130916337380114],[-162.6370263702637,55.12585060557046],[-162.63342633426333,55.11909629649094],[-162.6370263702637,55.11234198741141],[-162.64062640626406,55.09039048290293],[-162.64422644226443,55.07181613293423],[-162.63342633426333,55.0633732465848],[-162.61542615426154,55.078570442013756],[-162.61182611826118,55.06168466931493],[-162.56142561425614,54.962058610391836],[-162.58662586625866,54.96543576493161],[-162.61542615426154,54.98063296036054],[-162.64422644226443,54.99920731032927],[-162.66222662226622,55.016093083028096],[-162.62622626226263,55.01271592848832],[-162.6190261902619,55.016093083028096],[-162.62262622626227,55.02960170118715],[-162.63342633426333,55.0447988966161],[-162.6478264782648,55.0532417829655],[-162.66582665826658,55.04986462842575],[-162.67662676626767,55.03635601026667],[-162.68382683826837,55.01778166029797],[-162.69822698226983,55.00258446486902],[-162.72342723427235,54.975567228550915],[-162.719827198272,54.96881291947136],[-162.71622716227162,54.96374718766174],[-162.719827198272,54.962058610391836],[-162.72342723427235,54.96037003312196],[-162.75222752227523,54.94517283769301],[-162.76662766627666,54.94010710588336],[-162.78462784627845,54.93672995134361],[-162.84942849428495,54.935041374073705],[-162.87822878228783,54.93841852861348],[-162.92142921429215,54.956992878582184],[-162.92862928629287,54.96374718766174],[-162.92862928629287,54.97219007401114],[-162.93582935829357,54.97725580582079],[-162.96822968229682,54.99245300124974],[-162.97542975429755,55.00933877394857],[-162.9538295382954,55.01440450575819],[-162.9250292502925,55.01440450575819],[-162.91782917829178,55.019470237567845],[-162.93582935829357,55.02960170118715],[-162.9790297902979,55.038044587536575],[-162.9970299702997,55.04986462842575],[-163.0258302583026,55.08532475109328],[-163.04023040230402,55.09883336925233],[-163.06183061830617,55.10558767833186],[-163.07623076230763,55.10727625560176],[-163.0978309783098,55.11234198741141],[-163.10863108631085,55.11234198741141],[-163.1230312303123,55.11065341014151],[-163.14823148231483,55.100521946522235],[-163.16263162631626,55.09883336925233],[-163.14823148231483,55.10558767833186],[-163.1230312303123,55.11740771922106],[-163.10863108631085,55.12585060557046],[-163.130231302313,55.13429349191989],[-163.15543155431556,55.139359223729514],[-163.1842318423184,55.139359223729514],[-163.19863198631987,55.13260491464999],[-163.19863198631987,55.12078487376081],[-163.1950319503195,55.108964832871635],[-163.19143191431914,55.09714479198246],[-163.19143191431914,55.09207906017281],[-163.20223202232023,55.08532475109328],[-163.21663216632166,55.09039048290293],[-163.23823238232382,55.10558767833186],[-163.23823238232382,55.09039048290293],[-163.2310323103231,55.08025901928363],[-163.22023220232202,55.076881864743854],[-163.2058320583206,55.078570442013756],[-163.21663216632166,55.0447988966161],[-163.2058320583206,55.019470237567845],[-163.17343173431735,55.00089588759914],[-163.11223112231121,54.99245300124974],[-163.09063090630906,54.984010114900315],[-163.0690306903069,54.97387865128101],[-163.05463054630548,54.962058610391836],[-163.0510305103051,54.94179568315326],[-163.06183061830617,54.92828706499418],[-163.13383133831337,54.90295840594595],[-163.16983169831698,54.88269547870735],[-163.19863198631987,54.872564015088045],[-163.2310323103231,54.84554677876994],[-163.25263252632527,54.83879246969042],[-163.2778327783278,54.83372673788077],[-163.3210332103321,54.81346381064216],[-163.34263342633426,54.81177523337229],[-163.35703357033572,54.81684096518194],[-163.36783367833678,54.83034958334099],[-163.3750337503375,54.84554677876994],[-163.38943389433894,54.859055396928994],[-163.34263342633426,54.87594116962782],[-163.32823328233283,54.886072633247124],[-163.32463324633247,54.891138365056776],[-163.32463324633247,54.90295840594595],[-163.3210332103321,54.9080241377556],[-163.310233102331,54.91140129229535],[-163.3030330303303,54.913089869565255],[-163.29223292232922,54.91477844683513],[-163.28143281432813,54.913089869565255],[-163.29583295832958,54.92828706499418],[-163.34623346233462,54.91984417864478],[-163.34623346233462,54.94010710588336],[-163.32823328233283,54.96712434220149],[-163.30663306633068,54.95868145585209],[-163.28143281432813,54.94517283769301],[-163.25623256232564,54.95192714677253],[-163.24543245432454,54.970501496741264],[-163.28143281432813,54.99076442397984],[-163.29223292232922,55.01271592848832],[-163.29943299432995,55.06168466931493],[-163.30663306633068,55.073504710204105],[-163.31743317433174,55.08532475109328],[-163.32463324633247,55.095456214712584],[-163.31383313833138,55.10558767833186],[-163.31383313833138,55.11234198741141],[-163.3210332103321,55.11234198741141],[-163.32463324633247,55.114030564681286],[-163.32823328233283,55.11740771922106],[-163.33543335433353,55.11909629649094],[-163.14823148231483,55.1815736554766],[-163.0258302583026,55.24573959173213],[-162.98982989829898,55.242362437192384],[-163.00783007830077,55.23729670538273],[-163.02943029430293,55.22716524176343],[-163.0510305103051,55.21365662360435],[-163.06543065430654,55.201836582715174],[-163.07623076230763,55.17988507820672],[-163.06183061830617,55.17650792366695],[-162.99342993429934,55.1815736554766],[-162.98622986229861,55.1815736554766],[-162.98262982629825,55.17988507820672],[-162.9790297902979,55.17481934639707],[-162.97542975429755,55.16975361458742],[-162.9718297182972,55.16806503731752],[-162.9610296102961,55.16975361458742],[-162.89622896228963,55.190016541826],[-162.87462874628747,55.2001480054453],[-162.8350283502835,55.228853819033304],[-162.84942849428495,55.24573959173213],[-162.8890288902889,55.247428169002006],[-162.89622896228963,55.26600251897074],[-162.7990279902799,55.28964260074909],[-162.79542795427955,55.29977406436839],[-162.73782737827378,55.31159410525757],[-162.71262712627126,55.32172556887684],[-162.65502655026552,55.36225142335405],[-162.64062640626406,55.380825773322755],[-162.63342633426333,55.36225142335405],[-162.61542615426154,55.35211995973475],[-162.59022590225902,55.345365650655225],[-162.5650256502565,55.345365650655225],[-162.55062550625507,55.34874280519497],[-162.53982539825398,55.353808537004625],[-162.51822518225183,55.37238288697333],[-162.5110251102511,55.37407146424323],[-162.5038250382504,55.37407146424323],[-162.49662496624967,55.37407146424323],[-162.48942489424894,55.380825773322755],[-162.48942489424894,55.385891505132406],[-162.48942489424894,55.39264581421193],[-162.4930249302493,55.39771154602158],[-162.4930249302493,55.39940012329146],[-162.50742507425073,55.407843009640885],[-162.5038250382504,55.42472878233971],[-162.5038250382504,55.43992597776864],[-162.5290252902529,55.448368864118066],[-162.55782557825577,55.446680286848164],[-162.5830258302583,55.43654882322889],[-162.6010260102601,55.42304020506981],[-162.62262622626227,55.40615443237098],[-162.60462604626048,55.429794514149336],[-162.59022590225902,55.43654882322889],[-162.5758257582576,55.446680286848164],[-162.55062550625507,55.45850032773737],[-162.22662226622265,55.69827830006071],[-162.14742147421475,55.723606959108935],[-162.12942129421293,55.73373842272824],[-162.09342093420935,55.764132813586116],[-162.07542075420753,55.76919854539577],[-162.05022050220504,55.77426427720542],[-161.91341913419134,55.83167590438143],[-161.89901899018992,55.84180736800073],[-161.8270182701827,55.88064464520804],[-161.79821798217984,55.889087531557436],[-161.7730177301773,55.89584184063696],[-161.69021690216903,55.90428472698639],[-161.639816398164,55.91779334514544],[-161.52461524615245,55.93467911784427],[-161.45621456214562,55.953253467813],[-161.3878138781388,55.9616963541624],[-161.3770137701377,55.965073508702176],[-161.35541355413554,55.97689354959135],[-161.15381153811538,56.017419404068534],[-161.22581225812257,55.995467899560055],[-161.25821258212582,55.98533643594075],[-161.27261272612725,55.97858212686123],[-161.36621366213663,55.95494204508287],[-161.20781207812078,55.95494204508287],[-161.17181171811717,55.94987631327322],[-161.15381153811538,55.94987631327322],[-161.13941139411395,55.95831919962262],[-161.1250112501125,55.9616963541624],[-161.0710107101071,55.941433426923794],[-161.0530105301053,55.941433426923794],[-161.03861038610387,55.946499158733445],[-161.00981009810098,55.9616963541624],[-160.95940959409594,55.97689354959135],[-160.9450094500945,55.98533643594075],[-160.93060930609306,55.9904021677504],[-160.8730087300873,55.99377932229018],[-160.8730087300873,55.9616963541624],[-160.86580865808656,55.946499158733445],[-160.86220862208623,55.93467911784427],[-160.90180901809018,55.93467911784427],[-160.94140941409415,55.93974484965392],[-160.9810098100981,55.938056272384046],[-161.01341013410135,55.91779334514544],[-161.0242102421024,55.902596149716516],[-161.0242102421024,55.89077610882734],[-161.01701017010168,55.88064464520804],[-161.00621006210062,55.87389033612851],[-160.98460984609846,55.86713602704896],[-160.96660966609664,55.86882460431886],[-160.94860948609485,55.875578913398385],[-160.9270092700927,55.88064464520804],[-160.9450094500945,55.85025025435013],[-160.94860948609485,55.8333644816513],[-160.9450094500945,55.8249215953019],[-160.93060930609306,55.821544440762125],[-160.9162091620916,55.813101554412725],[-160.8190081900819,55.73880415453789],[-160.79740797407973,55.715164072759535],[-160.7830078300783,55.750624195427065],[-160.76860768607685,55.759067081776465],[-160.7470074700747,55.745558463617414],[-160.7182071820718,55.723606959108935],[-160.70020700207002,55.70334403187036],[-160.68940689406895,55.69827830006071],[-160.6750067500675,55.701655454600456],[-160.6750067500675,55.70503260914023],[-160.66420664206643,55.73036126818846],[-160.66060660606607,55.73204984545836],[-160.66780667806677,55.74386988634754],[-160.6750067500675,55.74724704088729],[-160.68940689406895,55.74893561815719],[-160.70020700207002,55.75231277269694],[-160.70740707407074,55.759067081776465],[-160.72540725407254,55.77088712266564],[-160.75780757807578,55.786084318094595],[-160.7650076500765,55.8046586680633],[-160.77580775807758,55.84687309981038],[-160.7830078300783,55.86544744977908],[-160.79380793807937,55.87389033612851],[-160.8010080100801,55.875578913398385],[-160.79740797407973,55.878956067938134],[-160.79380793807937,55.884021799747785],[-160.79020790207903,55.88739895428756],[-160.7830078300783,55.88739895428756],[-160.77580775807758,55.88571037701769],[-160.7650076500765,55.88064464520804],[-160.7182071820718,55.86544744977908],[-160.68940689406895,55.862070295239334],[-160.5130051300513,55.870513181588734],[-160.50220502205022,55.85869314069956],[-160.48060480604806,55.85025025435013],[-160.4770047700477,55.83843021346095],[-160.48060480604806,55.82323301803203],[-160.4770047700477,55.8046586680633],[-160.4590045900459,55.7962157817139],[-160.44100441004412,55.80128151352355],[-160.4230042300423,55.80972439987295],[-160.40140401404014,55.81141297714285],[-160.3942039420394,55.808035822603074],[-160.3870038700387,55.79452720444402],[-160.37980379803798,55.791150049904246],[-160.3690036900369,55.786084318094595],[-160.31140311403115,55.77933000901507],[-160.289802898029,55.77426427720542],[-160.2682026820268,55.772575699935544],[-160.2430024300243,55.777641431745195],[-160.2790027900279,55.78777289536447],[-160.28620286202863,55.79452720444402],[-160.3078030780308,55.81985586349225],[-160.31860318603185,55.8249215953019],[-160.2358023580236,55.83843021346095],[-160.25020250202502,55.85193883162003],[-160.27180271802717,55.85869314069956],[-160.31860318603185,55.86544744977908],[-160.520205202052,55.93467911784427],[-160.5418054180542,55.93467911784427],[-160.5670056700567,55.92792480876474],[-160.57420574205742,55.93467911784427],[-160.55260552605526,55.94987631327322],[-160.5418054180542,55.95831919962262],[-160.53820538205383,55.97013924051183],[-160.53820538205383,55.98533643594075],[-160.5490054900549,55.99377932229018],[-160.56340563405635,55.995467899560055],[-160.58140581405814,55.9904021677504],[-160.5670056700567,56.00728794044923],[-160.5310053100531,56.04105948584689],[-160.51660516605165,56.06807672216502],[-160.4770047700477,56.09678253575302],[-160.46260462604627,56.11197973118195],[-160.46260462604627,56.150817008389254],[-160.45540455404554,56.17276851289773],[-160.43740437404375,56.18121139924716],[-160.43020430204302,56.19303144013634],[-160.4050040500405,56.240311603693044],[-160.3942039420394,56.24368875823282],[-160.3690036900369,56.27746030363048],[-160.2358023580236,56.33993766261614],[-160.18900189001891,56.387217826172844],[-160.0162001620016,56.44462945334885],[-159.929799297993,56.48853246236581],[-159.8469984699847,56.54087835773217],[-159.74619746197462,56.579715634939475],[-159.48339483394835,56.64725872573479],[-159.55899558995588,56.62024148941666],[-159.54819548195482,56.61348718033713],[-159.52659526595266,56.61686433487688],[-159.50139501395014,56.623618643956405],[-159.45459454594547,56.628684375766056],[-159.3249932499325,56.67427596205289],[-159.30699306993068,56.68440742567219],[-159.2889928899289,56.69285031202162],[-159.23139231392315,56.69116173475172],[-159.20979209792097,56.69622746656137],[-159.22059220592206,56.70129319837102],[-159.2349923499235,56.70298177564089],[-159.26379263792637,56.70298177564089],[-159.26379263792637,56.708047507450544],[-159.1989919899199,56.7519505164675],[-159.17379173791738,56.76377055735668],[-159.08739087390873,56.78572206186516],[-159.04059040590406,56.81442787545316],[-158.99018990189902,56.84313368904117],[-158.94338943389434,56.8701509253593],[-158.88938889388893,56.890413852597874],[-158.86778867788678,56.89379100713765],[-158.8929889298893,56.87521665716895],[-158.95778957789577,56.85326515266047],[-158.99738997389974,56.829625070882116],[-159.02619026190263,56.81611645272304],[-159.029790297903,56.80936214364351],[-159.02619026190263,56.79585352548446],[-159.01179011790117,56.789099216404935],[-158.99378993789938,56.78572206186516],[-158.9757897578976,56.784033484595284],[-158.97938979389795,56.80598498910376],[-158.97218972189722,56.827936493612214],[-158.95778957789577,56.84313368904117],[-158.94338943389434,56.84313368904117],[-158.9109891098911,56.81780502999294],[-158.8749887498875,56.797542102754335],[-158.849788497885,56.789099216404935],[-158.81378813788137,56.78065633005551],[-158.78138781387813,56.77727917551573],[-158.7561875618756,56.78065633005551],[-158.74538745387454,56.78572206186516],[-158.72738727387275,56.789099216404935],[-158.69858698586987,56.79078779367481],[-158.68058680586805,56.78741063913503],[-158.65538655386553,56.767147711896456],[-158.6409864098641,56.76377055735668],[-158.65538655386553,56.80598498910376],[-158.65538655386553,56.81780502999294],[-158.6517865178652,56.82624791634234],[-158.6517865178652,56.83637937996164],[-158.6841868418684,56.8701509253593],[-158.68778687786877,56.88534812078822],[-158.68778687786877,56.93938259342448],[-158.6949869498695,56.96977698428236],[-158.6949869498695,56.979908447901664],[-158.68778687786877,57.006925684219794],[-158.68058680586805,57.02212287964875],[-158.6517865178652,57.05927157958615],[-158.60858608586085,57.10148601133321],[-158.31338313383134,57.314246747338444],[-158.2989829898299,57.319312479148095],[-158.28458284582845,57.322689633687844],[-158.18378183781837,57.36152691089515],[-158.05778057780577,57.3665926427048],[-158.0649806498065,57.376724106324104],[-158.07218072180723,57.381789838133756],[-158.08658086580866,57.381789838133756],[-158.09738097380975,57.38010126086385],[-158.07938079380793,57.39698703356268],[-158.01818018180182,57.42907000169046],[-157.99657996579967,57.44595577438929],[-157.96057960579606,57.4847930515966],[-157.9389793897939,57.49830166975565],[-157.87417874178743,57.5134988651846],[-157.78777787777878,57.55571329693166],[-157.7589775897759,57.564156183281085],[-157.73737737377374,57.559090451471434],[-157.7229772297723,57.564156183281085],[-157.70857708577086,57.569221915090736],[-157.67977679776797,57.572599069630485],[-157.69057690576906,57.55740187420156],[-157.68337683376834,57.54051610150273],[-157.65457654576545,57.5033674015653],[-157.66537665376654,57.48985878340625],[-157.65817658176582,57.48310447432672],[-157.51057510575106,57.47635016524717],[-157.51417514175142,57.466218701627895],[-157.5177751777518,57.46284154708812],[-157.4781747817478,57.48310447432672],[-157.44577445774456,57.48310447432672],[-157.42777427774277,57.4847930515966],[-157.41337413374134,57.48985878340625],[-157.39537395373952,57.501678824295425],[-157.39537395373952,57.5134988651846],[-157.40617406174061,57.521941751534],[-157.42777427774277,57.532073215153304],[-157.4169741697417,57.53882752423283],[-157.40617406174061,57.54558183331238],[-157.3989739897399,57.55402471966178],[-157.3917739177392,57.56584476055096],[-157.40617406174061,57.56077902874131],[-157.43857438574386,57.55740187420156],[-157.45657456574565,57.55233614239191],[-157.44217442174423,57.537138946962955],[-157.42057420574207,57.51181028791473],[-157.41337413374134,57.49830166975565],[-157.51417514175142,57.510121710644825],[-157.53217532175321,57.506744556105076],[-157.5429754297543,57.49999024702555],[-157.55737557375573,57.4949245152159],[-157.56817568175683,57.49154736067612],[-157.58257582575825,57.48985878340625],[-157.59697596975968,57.493235937946],[-157.59697596975968,57.501678824295425],[-157.58977589775898,57.51856459699425],[-157.58617586175862,57.56246760601121],[-157.58977589775898,57.58441911051966],[-157.60057600576005,57.60299346048839],[-157.6041760417604,57.60805919229804],[-157.60057600576005,57.613124924107666],[-157.59697596975968,57.61819065591732],[-157.60057600576005,57.62325638772697],[-157.60777607776078,57.62832211953662],[-157.61857618576187,57.63338785134627],[-157.62217622176223,57.63845358315592],[-157.62937629376293,57.6418307376957],[-157.64017640176402,57.640142160425796],[-157.6437764377644,57.63676500588605],[-157.6437764377644,57.630010696806494],[-157.62577625776257,57.613124924107666],[-157.6509765097651,57.613124924107666],[-157.67257672576727,57.61819065591732],[-157.69057690576906,57.626633542266745],[-157.7049770497705,57.63845358315592],[-157.70857708577086,57.65196220131497],[-157.70857708577086,57.67391370582345],[-157.7049770497705,57.69586521033193],[-157.70137701377013,57.70937382849098],[-157.70857708577086,57.72963675572959],[-157.69777697776976,57.760031146587465],[-157.66537665376654,57.81913135103338],[-157.6437764377644,57.87823155547926],[-157.63657636576366,57.90862594633714],[-157.62937629376293,57.97785761440235],[-157.6149761497615,58.04033497338801],[-157.61137611376114,58.09268086875437],[-157.6041760417604,58.10450090964355],[-157.58977589775898,58.1281409914219],[-157.5789757897579,58.13996103231108],[-157.55377553775537,58.16191253681956],[-157.5429754297543,58.17542115497861],[-157.52137521375215,58.16697826862921],[-157.48537485374854,58.165289691359334],[-157.4529745297453,58.16866684589908],[-157.42777427774277,58.17542115497861],[-157.40977409774098,58.18892977313769],[-157.3989739897399,58.19906123675699],[-157.38457384573846,58.20750412310639],[-157.35577355773557,58.20919270037626],[-157.19377193771936,58.19399550494734],[-157.17937179371793,58.18892977313769],[-157.1721717217172,58.18217546405816],[-157.1649716497165,58.17542115497861],[-157.1541715417154,58.16866684589908],[-157.139771397714,58.16866684589908],[-157.1649716497165,58.192306927677436],[-157.18657186571866,58.20412696856661],[-157.34857348573485,58.23958709123417],[-157.3809738097381,58.23789851396427],[-157.4349743497435,58.22270131853534],[-157.45657456574565,58.22101274126544],[-157.48177481774817,58.23114420488474],[-157.52857528575285,58.256472863933],[-157.54657546575464,58.273358636631826],[-157.53577535775358,58.29193298660053],[-157.56817568175683,58.32063880018853],[-157.5609756097561,58.36285323193559],[-157.50337503375033,58.464167868128555],[-157.45657456574565,58.508070877145514],[-157.4349743497435,58.521579495304564],[-157.3809738097381,58.53677669073352],[-157.35937359373594,58.54690815435282],[-157.2657726577266,58.619516976957755],[-157.13257132571326,58.687060067753066],[-157.11457114571147,58.69888010864224],[-157.09297092970928,58.709011572261545],[-156.99576995769957,58.7242087676905],[-156.97056970569705,58.7326516540399],[-156.94176941769416,58.73771738584955],[-156.94176941769416,58.744471694929075],[-156.97776977769777,58.73940596311945],[-157.02457024570245,58.72589734496037],[-157.06057060570606,58.72589734496037],[-157.07857078570785,58.757980313088154],[-157.0677706777068,58.77824324032673],[-157.0029700297003,58.84072059931239],[-157.02457024570245,58.86267210382087],[-157.02097020970209,58.869426412900395],[-157.01017010170102,58.88124645378957],[-156.98856988569887,58.89475507194865],[-156.9849698496985,58.90319795829805],[-156.9849698496985,58.909952267377605],[-156.98856988569887,58.91501799918723],[-156.98136981369814,58.94372381277523],[-156.97776977769777,58.953855276394535],[-156.95976959769598,58.96398674001384],[-156.92376923769237,58.975806780903014],[-156.88416884168842,58.98424966725244],[-156.8589685896859,58.994381130871716],[-156.85176851768517,59.0180212126501],[-156.85176851768517,59.07712141709598],[-156.84456844568444,59.10245007614421],[-156.8229682296823,59.12271300338281],[-156.80136801368013,59.13791019881177],[-156.78336783367834,59.154795971510595],[-156.85536855368554,59.119335848843036],[-156.86616866168663,59.11089296249364],[-156.86616866168663,59.10245007614421],[-156.8769687696877,59.078809994365855],[-156.88776887768879,59.06867853074655],[-156.88416884168842,59.0551699125875],[-156.88056880568806,59.04166129442845],[-156.88056880568806,59.03321840807902],[-156.89136891368912,59.012955480840446],[-156.90936909369094,58.99775828541149],[-156.93456934569346,58.98762682179219],[-156.9921699216992,58.98256108998254],[-157.01737017370175,58.97411820363314],[-157.03537035370354,58.958921008204186],[-157.04977049770497,58.93696950369571],[-157.0677706777068,58.8998208037583],[-157.08577085770858,58.88631218559922],[-157.13617136171362,58.877869299249824],[-157.2549725497255,58.84072059931239],[-157.37377373773737,58.825523403883466],[-157.38817388173882,58.820457672073815],[-157.3989739897399,58.81539194026416],[-157.40977409774098,58.81032620845451],[-157.4241742417424,58.80357189937499],[-157.47457474574745,58.80019474483521],[-157.56817568175683,58.74784884946885],[-157.65817658176582,58.736028808579675],[-157.8129781297813,58.687060067753066],[-157.97857978579785,58.64822279054576],[-158.1549815498155,58.61445124514813],[-158.20178201782016,58.61276266787823],[-158.2629826298263,58.62289413149753],[-158.3169831698317,58.646534213275885],[-158.34578345783459,58.68368291321332],[-158.3349833498335,58.70225726318202],[-158.34578345783459,58.7242087676905],[-158.36378363783638,58.744471694929075],[-158.38178381783817,58.757980313088154],[-158.4069840698407,58.76980035397733],[-158.54738547385475,58.798506167565336],[-158.5581855818558,58.806949053914735],[-158.56538565385654,58.81876909480391],[-158.56538565385654,58.83058913569312],[-158.5581855818558,58.84072059931239],[-158.5509855098551,58.847474908391945],[-158.53658536585365,58.855917794741345],[-158.52938529385293,58.860983526550996],[-158.51858518585186,58.86773783563052],[-158.51138511385113,58.88124645378957],[-158.4969849698497,58.91164084464748],[-158.48978489784898,58.92177230826678],[-158.50058500585007,58.94878954458488],[-158.47898478984789,58.96398674001384],[-158.42138421384215,58.97749535817289],[-158.4321843218432,58.97918393544279],[-158.43938439384394,58.98424966725244],[-158.4429844298443,58.989315399062065],[-158.4429844298443,58.99775828541149],[-158.45018450184503,58.99775828541149],[-158.4609846098461,58.994381130871716],[-158.46818468184682,58.99100397633197],[-158.47538475384755,58.98424966725244],[-158.4969849698497,58.994381130871716],[-158.48978489784898,59.00113543995127],[-158.45738457384573,59.01464405811032],[-158.4429844298443,59.02477552172962],[-158.4249842498425,59.03321840807902],[-158.40338403384033,59.0365955626188],[-158.38178381783817,59.038284139888674],[-158.1729817298173,59.012955480840446],[-158.1369813698137,58.99944686268137],[-158.10458104581045,58.97918393544279],[-158.07938079380793,58.95723243093431],[-158.06858068580686,58.94372381277523],[-158.07218072180723,58.92514946280653],[-158.0649806498065,58.9082636901077],[-158.05778057780577,58.8998208037583],[-158.04338043380434,58.888000762869126],[-158.0289802898029,58.8795578765197],[-158.01818018180182,58.87449214471005],[-158.01818018180182,58.88631218559922],[-158.01458014580146,58.896443649218526],[-158.00738007380073,58.90150938102818],[-157.99657996579967,58.90150938102818],[-157.99657996579967,58.9082636901077],[-158.0289802898029,58.9082636901077],[-158.03978039780398,58.91164084464748],[-158.05058050580504,58.92177230826678],[-158.03258032580325,58.94203523550536],[-158.05058050580504,58.97074104909336],[-158.10098100981008,59.01464405811032],[-158.14058140581406,59.0365955626188],[-158.2341823418234,59.03997271715855],[-158.3169831698317,59.06192422166703],[-158.40338403384033,59.073744262556204],[-158.4429844298443,59.08725288071528],[-158.47178471784719,59.10413865341411],[-158.48978489784898,59.11764727157316],[-158.4969849698497,59.13115588973221],[-158.50058500585007,59.14466450789129],[-158.5041850418504,59.14635308516117],[-158.5149851498515,59.14466450789129],[-158.52218522185223,59.14804166243104],[-158.52938529385293,59.15648454878047],[-158.52938529385293,59.163238857859994],[-158.5329853298533,59.16999316693952],[-158.54378543785438,59.17505889874917],[-158.54738547385475,59.15817312605034],[-158.54738547385475,59.14466450789129],[-158.53658536585365,59.13791019881177],[-158.5149851498515,59.13453304427199],[-158.5149851498515,59.11089296249364],[-158.45738457384573,59.07543283982611],[-158.4609846098461,59.05348133531763],[-158.47898478984789,59.043349871698325],[-158.52218522185223,59.0365955626188],[-158.53658536585365,59.02477552172962],[-158.54018540185402,59.021398367189846],[-158.54378543785438,59.016332635380195],[-158.54378543785438,59.00957832630067],[-158.54378543785438,59.00113543995127],[-158.54738547385475,58.99269255360184],[-158.55458554585545,58.989315399062065],[-158.56178561785617,58.985938244522316],[-158.57618576185763,58.958921008204186],[-158.60858608586085,58.93359234915596],[-158.64458644586446,58.91164084464748],[-158.68778687786877,58.89475507194865],[-158.70938709387093,58.882935031059475],[-158.7309873098731,58.87280356744017],[-158.74538745387454,58.877869299249824],[-158.75258752587524,58.889689340139],[-158.7489874898749,58.8998208037583],[-158.73818738187381,58.91164084464748],[-158.72738727387275,58.92852661734631],[-158.76338763387633,58.94372381277523],[-158.7777877778778,58.95216669912466],[-158.79218792187922,58.96398674001384],[-158.75258752587524,58.972429626363265],[-158.73818738187381,58.97918393544279],[-158.74538745387454,58.994381130871716],[-158.82458824588247,58.97749535817289],[-158.810188101881,58.96567531728371],[-158.77058770587706,58.92008373099688],[-158.77058770587706,58.91164084464748],[-158.79218792187922,58.81708051753404],[-158.7849878498785,58.80019474483521],[-158.78138781387813,58.78330897213638],[-158.78858788587885,58.76980035397733],[-158.79578795787958,58.757980313088154],[-158.810188101881,58.744471694929075],[-158.82818828188283,58.736028808579675],[-158.84618846188462,58.7326516540399],[-158.87138871388714,58.730963076770024],[-158.87858878588787,58.7326516540399],[-158.88578885788857,58.736028808579675],[-158.8929889298893,58.7427831176592],[-158.8929889298893,58.75122600400863],[-158.88938889388893,58.763046044897806],[-158.8821888218882,58.76811177670746],[-158.86058860588605,58.771488931247205],[-158.8209882098821,58.78330897213638],[-158.80298802988028,58.79512901302556],[-158.80658806588065,58.81032620845451],[-158.82818828188283,58.81876909480391],[-158.849788497885,58.820457672073815],[-158.8749887498875,58.81370336299429],[-158.88578885788857,58.80019474483521],[-158.86058860588605,58.80019474483521],[-158.8749887498875,58.79006328121591],[-158.90018900189003,58.77824324032673],[-158.91458914589145,58.77486608578698],[-158.91458914589145,58.757980313088154],[-158.90738907389073,58.74109454038933],[-158.88938889388893,58.7056344177218],[-158.85338853388532,58.67692860413379],[-158.8209882098821,58.61445124514813],[-158.79218792187922,58.5688596588613],[-158.79218792187922,58.570548236131174],[-158.7777877778778,58.562105349781746],[-158.77418774187743,58.558728195242],[-158.77058770587706,58.548596731622695],[-158.77058770587706,58.52495664984434],[-158.77058770587706,58.518202340764816],[-158.75978759787597,58.508070877145514],[-158.74538745387454,58.50469372260574],[-158.73458734587345,58.50638229987564],[-158.7237872378724,58.50469372260574],[-158.70938709387093,58.49287368171656],[-158.72018720187202,58.48443079536716],[-158.73818738187381,58.47429933174786],[-158.75978759787597,58.44728209542973],[-158.78138781387813,58.437150631810425],[-158.80658806588065,58.4303963227309],[-158.82458824588247,58.428707745461026],[-158.82458824588247,58.4219534363815],[-158.79578795787958,58.4219534363815],[-158.82818828188283,58.40506766368267],[-158.8821888218882,58.40000193187302],[-158.93978939789397,58.39831335460315],[-159.01539015390154,58.415199127301975],[-159.05139051390515,58.42533059092125],[-159.0729907299073,58.442216363620076],[-159.05859058590585,58.43883920908033],[-159.04779047790478,58.43883920908033],[-159.0369903699037,58.44390494088998],[-159.029790297903,58.455724981779156],[-159.05499054990548,58.455724981779156],[-159.0729907299073,58.459102136318904],[-159.08379083790837,58.46923359993821],[-159.08019080190803,58.491185104446686],[-159.11619116191162,58.48949652717681],[-159.15219152191523,58.518202340764816],[-159.20979209792097,58.58743400883],[-159.29979299792998,58.67186287232414],[-159.3861938619386,58.75629173581825],[-159.48339483394835,58.81539194026416],[-159.50859508595084,58.82214624934369],[-159.51939519395194,58.825523403883466],[-159.54459544595446,58.84409775385217],[-159.55179551795518,58.847474908391945],[-159.58059580595807,58.84578633112204],[-159.5949959499595,58.83227771296299],[-159.63459634596347,58.833966290232866],[-159.65979659796596,58.83903202204252],[-159.6309963099631,58.85254064020157],[-159.60219602196022,58.88462360832935],[-159.58779587795877,58.9082636901077],[-159.61659616596165,58.931903771886056],[-159.6381963819638,58.93528092642583],[-159.65259652596527,58.93528092642583],[-159.68139681396815,58.931903771886056],[-159.710197101971,58.92852661734631],[-159.7389973899739,58.92852661734631],[-159.72819728197283,58.918395153727005],[-159.72459724597246,58.909952267377605],[-159.73539735397355,58.89306649467878],[-159.7569975699757,58.88124645378957],[-159.76779767797677,58.86604925836065],[-159.74259742597425,58.85422921747147],[-159.75339753397535,58.84072059931239],[-159.7641976419764,58.83058913569312],[-159.77859778597787,58.84916348566182],[-159.80019800198002,58.84916348566182],[-159.80739807398075,58.84409775385217],[-159.80739807398075,58.83734344477264],[-159.80019800198002,58.83227771296299],[-159.79659796597966,58.82383482661356],[-159.7857978579786,58.81708051753404],[-159.79659796597966,58.80019474483521],[-159.8181981819818,58.793440435755684],[-159.83979839798397,58.793440435755684],[-159.8649986499865,58.77993181759663],[-159.90459904599047,58.76473462216768],[-159.91179911799117,58.77655466305686],[-159.929799297993,58.79006328121591],[-159.9621996219962,58.820457672073815],[-159.9837998379984,58.83565486750274],[-159.9909999099991,58.84072059931239],[-159.9837998379984,58.84916348566182],[-159.9837998379984,58.860983526550996],[-159.9909999099991,58.86604925836065],[-159.99819998199982,58.87449214471005],[-160.01980019800197,58.8795578765197],[-160.0450004500045,58.882935031059475],[-160.070200702007,58.8795578765197],[-160.08460084600847,58.87618072197995],[-160.08820088200883,58.869426412900395],[-160.09180091800917,58.86267210382087],[-160.09540095400953,58.85760637201122],[-160.11340113401133,58.860983526550996],[-160.13140131401315,58.86604925836065],[-160.1530015300153,58.860983526550996],[-160.16380163801637,58.86436068109077],[-160.14940149401494,58.88124645378957],[-160.15660156601567,58.8998208037583],[-160.1530015300153,58.91670657645713],[-160.20340203402034,58.9082636901077],[-160.22140221402213,58.90150938102818],[-160.22860228602286,58.891377917408875],[-160.24660246602465,58.88631218559922],[-160.25380253802538,58.8981322264884],[-160.25740257402575,58.91164084464748],[-160.25380253802538,58.93528092642583],[-160.25740257402575,58.945412390045135],[-160.2682026820268,58.950478121854786],[-160.28620286202863,58.931903771886056],[-160.30060300603006,58.945412390045135],[-160.32940329403294,58.94203523550536],[-160.32940329403294,58.95216669912466],[-160.31860318603185,58.95723243093431],[-160.31860318603185,58.96567531728371],[-160.30060300603006,58.972429626363265],[-160.2970029700297,58.97749535817289],[-160.2682026820268,58.97749535817289],[-160.25740257402575,58.98424966725244],[-160.25380253802538,58.99100397633197],[-160.25740257402575,58.99606970814162],[-160.26460264602645,59.00113543995127],[-160.2682026820268,59.011266903570544],[-160.2790027900279,59.0180212126501],[-160.29340293402933,59.02308694445972],[-160.30060300603006,59.02815267626937],[-160.3078030780308,59.03321840807902],[-160.31860318603185,59.038284139888674],[-160.32220322203221,59.04166129442845],[-160.3330033300333,59.05348133531763],[-160.32220322203221,59.06192422166703],[-160.32580325803258,59.06698995347668],[-160.3510035100351,59.070367108016455],[-160.40140401404014,59.048415603507976],[-160.5310053100531,59.00113543995127],[-160.66780667806677,58.94710096731501],[-160.6930069300693,58.92852661734631],[-160.76860768607685,58.896443649218526],[-160.83340833408334,58.81201478572439],[-160.82620826208262,58.83734344477264],[-160.82980829808298,58.85254064020157],[-160.8442084420844,58.86773783563052],[-160.86940869408693,58.8795578765197],[-160.88740887408875,58.88462360832935],[-160.9090090900909,58.87618072197995],[-160.9630096300963,58.87280356744017],[-160.9810098100981,58.86436068109077],[-160.9918099180992,58.847474908391945],[-161.0350103501035,58.842409176582294],[-161.07461074610745,58.81708051753404],[-161.11061110611107,58.81201478572439],[-161.13581135811359,58.798506167565336],[-161.17181171811717,58.79681759029546],[-161.1790117901179,58.78330897213638],[-161.2438124381244,58.78330897213638],[-161.27261272612725,58.78668612667616],[-161.29061290612907,58.793440435755684],[-161.27981279812798,58.81032620845451],[-161.27261272612725,58.81201478572439],[-161.27261272612725,58.820457672073815],[-161.30141301413013,58.81539194026416],[-161.3050130501305,58.81201478572439],[-161.30861308613086,58.80526047664486],[-161.31221312213123,58.79681759029546],[-161.31221312213123,58.78837470394603],[-161.30141301413013,58.784997549406285],[-161.29061290612907,58.77824324032673],[-161.26181261812619,58.77655466305686],[-161.29061290612907,58.76980035397733],[-161.31221312213123,58.74784884946885],[-161.3590135901359,58.72589734496037],[-161.36621366213663,58.71070014953142],[-161.37341373413733,58.69888010864224],[-161.3770137701377,58.687060067753066],[-161.37341373413733,58.67186287232414],[-161.36261362613627,58.668485717784364],[-161.32661326613265,58.678617181403666],[-161.30141301413013,58.681994335943415],[-161.36261362613627,58.660042831434964],[-161.48861488614887,58.63977990419636],[-161.53541535415354,58.62289413149753],[-161.54981549815497,58.606008358798704],[-161.56061560615606,58.60263120425893],[-161.58581585815858,58.60769693606858],[-161.59661596615967,58.60769693606858],[-161.6110161101611,58.60431978152883],[-161.639816398164,58.5958768951794],[-161.6650166501665,58.59081116336975],[-161.67581675816757,58.58574543156013],[-161.68661686616866,58.5773025452107],[-161.6938169381694,58.5688596588613],[-161.70821708217082,58.56041677251187],[-161.7262172621726,58.558728195242],[-161.7658176581766,58.558728195242],[-161.75141751417513,58.5773025452107],[-161.7190171901719,58.59925404971918],[-161.71181711817118,58.61445124514813],[-161.72261722617225,58.62627128603731],[-161.7370173701737,58.63471417238671],[-161.7550175501755,58.643157058736136],[-161.7658176581766,58.64484563600601],[-161.76221762217622,58.638091326926485],[-161.76221762217622,58.62964844057706],[-161.7658176581766,58.61782839968788],[-161.76221762217622,58.59081116336975],[-161.78021780217802,58.61276266787823],[-161.79821798217984,58.62289413149753],[-161.83421834218342,58.62627128603731],[-161.91341913419134,58.63133701784696],[-161.9350193501935,58.62964844057706],[-161.96021960219602,58.62289413149753],[-161.98181981819818,58.62795986330718],[-162.01062010620106,58.62120555422766],[-162.03582035820358,58.62627128603731],[-162.07542075420753,58.62120555422766],[-162.13662136621366,58.633025595116834],[-162.1762217622176,58.64484563600601],[-162.12222122221223,58.66341998597471],[-162.06822068220683,58.66679714051449],[-162.04662046620467,58.68368291321332],[-162.02862028620285,58.67524002686389],[-161.9890198901989,58.678617181403666],[-161.96741967419675,58.67524002686389],[-161.9530195301953,58.67692860413379],[-161.94941949419496,58.67524002686389],[-161.94941949419496,58.673551449594015],[-161.94941949419496,58.66341998597471],[-161.94941949419496,58.66173140870484],[-161.94221942219423,58.65666567689519],[-161.93861938619386,58.65328852235541],[-161.9350193501935,58.64991136781566],[-161.9242192421924,58.64822279054576],[-161.8918189181892,58.65328852235541],[-161.85941859418594,58.67017429505424],[-161.84141841418415,58.69212579956272],[-161.86661866618667,58.703945840451894],[-161.86661866618667,58.71576588134107],[-161.82341823418233,58.7343402313098],[-161.8090180901809,58.74109454038933],[-161.79461794617947,58.75460315854838],[-161.78741787417874,58.757980313088154],[-161.75861758617586,58.757980313088154],[-161.7190171901719,58.75460315854838],[-161.67581675816757,58.77317750851708],[-161.65421654216541,58.806949053914735],[-161.68661686616866,58.81876909480391],[-161.71181711817118,58.81370336299429],[-161.73341733417334,58.80863763118464],[-161.75141751417513,58.79006328121591],[-161.76221762217622,58.77317750851708],[-161.7730177301773,58.76980035397733],[-161.76221762217622,58.80526047664486],[-161.75861758617586,58.81539194026416],[-161.75861758617586,58.825523403883466],[-161.76221762217622,58.83565486750274],[-161.76941769417695,58.84916348566182],[-161.77661776617765,58.85760637201122],[-161.78381783817838,58.877869299249824],[-161.7910179101791,58.8998208037583],[-161.7910179101791,58.96398674001384],[-161.79461794617947,58.97411820363314],[-161.79821798217984,58.98424966725244],[-161.8090180901809,58.989315399062065],[-161.83421834218342,59.002824017221144],[-161.84141841418415,59.007889749030795],[-161.8522185221852,59.02308694445972],[-161.85581855818558,59.03321840807902],[-161.8522185221852,59.038284139888674],[-161.8450184501845,59.03997271715855],[-161.83421834218342,59.0450384489682],[-161.83061830618306,59.0467270262381],[-161.82341823418233,59.0450384489682],[-161.819818198182,59.03997271715855],[-161.82341823418233,59.0365955626188],[-161.819818198182,59.03321840807902],[-161.81621816218163,59.029841253539274],[-161.81621816218163,59.0264640989995],[-161.81261812618126,59.021398367189846],[-161.80541805418054,59.0180212126501],[-161.79821798217984,59.0180212126501],[-161.7730177301773,59.02477552172962],[-161.74421744217443,59.029841253539274],[-161.7262172621726,59.0349069853489],[-161.6938169381694,59.0551699125875],[-161.61461614616147,59.08049857163576],[-161.60741607416074,59.08556430344538],[-161.60381603816037,59.09569576706468],[-161.60021600216,59.100761498874334],[-161.5930159301593,59.10245007614421],[-161.57861578615785,59.100761498874334],[-161.57141571415713,59.100761498874334],[-161.5678156781568,59.114270117033385],[-161.57861578615785,59.12102442611294],[-161.6110161101611,59.12102442611294],[-161.61461614616147,59.12440158065269],[-161.61461614616147,59.13115588973221],[-161.62181621816217,59.13959877608164],[-161.63621636216362,59.14297593062142],[-161.64701647016471,59.13959877608164],[-161.6722167221672,59.12609015792259],[-161.6830168301683,59.12102442611294],[-161.72261722617225,59.11595869430329],[-161.84141841418415,59.12102442611294],[-161.87381873818737,59.11089296249364],[-161.88821888218882,59.09400718979481],[-161.8810188101881,59.078809994365855],[-161.84861848618488,59.073744262556204],[-161.84861848618488,59.06698995347668],[-161.89541895418955,59.07543283982611],[-161.93861938619386,59.09907292160446],[-161.97461974619745,59.13115588973221],[-162.02862028620285,59.230781948655306],[-162.0430204302043,59.247667721354134],[-162.05022050220504,59.26961922586261],[-162.03942039420394,59.28988215310119],[-162.02142021420215,59.301702193990366],[-161.9998199982,59.31352223487954],[-162.03582035820358,59.28143926675179],[-162.0430204302043,59.266242071322836],[-162.03582035820358,59.25104487589391],[-162.01062010620106,59.23753625773483],[-161.98181981819818,59.25442203043366],[-161.96741967419675,59.28143926675179],[-161.9710197101971,59.30676792580002],[-161.96381963819638,59.315210812149445],[-161.96381963819638,59.328719430308496],[-161.96381963819638,59.342228048467575],[-161.9710197101971,59.35404808935675],[-161.96021960219602,59.37431101659533],[-161.9458194581946,59.38781963475441],[-161.92781927819277,59.39457394383393],[-161.90621906219062,59.39626252110381],[-161.88461884618846,59.42159118015206],[-161.86661866618667,59.43341122104124],[-161.8522185221852,59.42159118015206],[-161.84861848618488,59.42159118015206],[-161.83781837818378,59.440165530120765],[-161.819818198182,59.46380561189912],[-161.80181801818017,59.47900280732807],[-161.76941769417695,59.470559920978644],[-161.7550175501755,59.47224849824852],[-161.74061740617407,59.47900280732807],[-161.72981729817297,59.484068539137695],[-161.7190171901719,59.4958885800269],[-161.71541715417155,59.50095431183652],[-161.85941859418594,59.627597607077746],[-161.86661866618667,59.65630342066575],[-161.87741877418773,59.66812346155493],[-161.8810188101881,59.679943502444104],[-161.8810188101881,59.690074966063406],[-161.8810188101881,59.69682927514293],[-161.88821888218882,59.706960738762234],[-161.90981909819098,59.71878077965141],[-161.99261992619927,59.81165252949495],[-162.08262082620826,59.87750704302039],[-162.09342093420935,59.894392815719215],[-162.10062100621008,59.916344320227694],[-162.10062100621008,59.951804442895224],[-162.10782107821078,59.965313061054275],[-162.15822158221582,59.97713310194345],[-162.17982179821797,59.99064172010253],[-162.1978219782198,60.00752749280136],[-162.20862208622086,60.02610184277006],[-162.230222302223,60.06493911997737],[-162.2410224102241,60.090267779025595],[-162.23382233822338,60.1003992426449],[-162.2230222302223,60.10546497445455],[-162.21582215822158,60.11559643807385],[-162.2050220502205,60.12741647896303],[-162.2050220502205,60.139236519852204],[-162.20142201422016,60.147679406201604],[-162.2050220502205,60.152745138011255],[-162.20862208622086,60.15949944709078],[-162.24462244622447,60.19495956975834],[-162.2518225182252,60.201713878837865],[-162.2230222302223,60.201713878837865],[-162.1870218702187,60.210156765187264],[-162.16182161821618,60.21691107426679],[-162.16182161821618,60.23210826969574],[-162.15822158221582,60.24392831058492],[-162.14742147421475,60.245616887854794],[-162.16182161821618,60.250682619664445],[-162.1762217622176,60.250682619664445],[-162.2050220502205,60.245616887854794],[-162.20142201422016,60.242239733315046],[-162.1978219782198,60.23886257877527],[-162.17982179821797,60.23210826969574],[-162.17982179821797,60.223665383346344],[-162.21222212222122,60.21859965153669],[-162.24822248222483,60.215222496996915],[-162.2770227702277,60.223665383346344],[-162.27342273422735,60.245616887854794],[-162.29142291422914,60.242239733315046],[-162.29862298622987,60.23548542423552],[-162.29862298622987,60.22704253788609],[-162.29862298622987,60.21691107426679],[-162.29862298622987,60.21353391972704],[-162.29142291422914,60.21184534245714],[-162.28782287822878,60.210156765187264],[-162.28422284222842,60.21184534245714],[-162.28422284222842,60.19664814702821],[-162.29142291422914,60.19664814702821],[-162.29862298622987,60.18989383794869],[-162.29862298622987,60.179762374329385],[-162.28782287822878,60.17638521978961],[-162.2590225902259,60.17300806524986],[-162.23742237422374,60.16287660163056],[-162.230222302223,60.14599082893173],[-162.23742237422374,60.13585936531243],[-162.26262262622626,60.12741647896303],[-162.28782287822878,60.12235074715338],[-162.29862298622987,60.11559643807385],[-162.31662316623166,60.112219283534074],[-162.33822338223382,60.1291050562329],[-162.34182341823418,60.139236519852204],[-162.3670236702367,60.16287660163056],[-162.37422374223743,60.16963091071008],[-162.37422374223743,60.17638521978961],[-162.36342363423634,60.18145095159926],[-162.35262352623528,60.188205260678785],[-162.3490234902349,60.18989383794869],[-162.34182341823418,60.20846818791739],[-162.34182341823418,60.21859965153669],[-162.3490234902349,60.228731115155966],[-162.36342363423634,60.242239733315046],[-162.41382413824138,60.272634124172924],[-162.43182431824317,60.2760112787127],[-162.44622446224463,60.28276558779223],[-162.4570245702457,60.2945856286814],[-162.44262442624427,60.30978282411036],[-162.39222392223922,60.33004575134893],[-162.33462334623346,60.40096599668402],[-162.32022320223203,60.4229175011925],[-162.3130231302313,60.446557582970854],[-162.30222302223024,60.47019766474921],[-162.2770227702277,60.48539486017816],[-162.24822248222483,60.49721490106734],[-162.22662226622265,60.509034941956514],[-162.2230222302223,60.51916640557582],[-162.22662226622265,60.53267502373487],[-162.230222302223,60.54280648735417],[-162.21942219422195,60.54618364189392],[-162.21942219422195,60.552937950973444],[-162.2230222302223,60.5782666100217],[-162.2230222302223,60.588398073641],[-162.20862208622086,60.588398073641],[-162.19062190621906,60.593463805450654],[-162.11142111421114,60.63061250538806],[-162.0970209702097,60.639055391737486],[-162.0610206102061,60.65087543262666],[-161.96741967419675,60.64580970081701],[-161.94221942219423,60.669449782595365],[-161.95661956619566,60.674515514405016],[-161.96381963819638,60.67620409167489],[-161.9458194581946,60.68464697802432],[-161.8810188101881,60.70322132799302],[-161.90981909819098,60.71335279161232],[-161.93861938619386,60.70828705980267],[-161.96381963819638,60.696467018913495],[-162.0718207182072,60.66607262805559],[-162.09342093420935,60.669449782595365],[-162.08982089820898,60.68633555529419],[-162.1150211502115,60.71335279161232],[-162.15462154621545,60.731927141581025],[-162.18342183421834,60.731927141581025],[-162.12942129421293,60.701532750723146],[-162.12222122221223,60.69477844164359],[-162.12222122221223,60.674515514405016],[-162.12222122221223,60.65931831897606],[-162.1330213302133,60.647498278086886],[-162.18342183421834,60.639055391737486],[-162.23742237422374,60.62554677357841],[-162.26262262622626,60.620481041768755],[-162.2770227702277,60.61372673268923],[-162.28422284222842,60.593463805450654],[-162.28782287822878,60.571512300942175],[-162.2950229502295,60.55631510551322],[-162.29862298622987,60.55124937370357],[-162.30582305823057,60.53267502373487],[-162.3670236702367,60.47695197382873],[-162.37422374223743,60.465131932939556],[-162.37782377823777,60.45837762386003],[-162.37782377823777,60.44318042843108],[-162.38142381423813,60.43642611935155],[-162.3958239582396,60.433048964811775],[-162.4282242822428,60.43642611935155],[-162.44262442624427,60.4229175011925],[-162.43542435424354,60.4127860375732],[-162.42462424624247,60.40096599668402],[-162.41742417424175,60.38239164671529],[-162.45342453424536,60.370571605826115],[-162.46422464224642,60.37226018309602],[-162.4570245702457,60.389145955794845],[-162.46422464224642,60.39590026487437],[-162.50022500225003,60.38239164671529],[-162.5110251102511,60.37226018309602],[-162.49662496624967,60.36044014220684],[-162.5110251102511,60.35537441039719],[-162.53622536225362,60.35030867858754],[-162.55062550625507,60.34524294677789],[-162.55782557825577,60.33680006042846],[-162.56862568625687,60.33342290588871],[-162.5758257582576,60.33680006042846],[-162.57942579425793,60.34693152404776],[-162.58662586625866,60.340177214968236],[-162.59022590225902,60.335111483158585],[-162.59742597425975,60.33342290588871],[-162.6082260822608,60.33342290588871],[-162.6082260822608,60.326668596809185],[-162.5758257582576,60.31822571045976],[-162.5650256502565,60.313159978650106],[-162.59022590225902,60.30640566957058],[-162.6010260102601,60.30640566957058],[-162.56142561425614,60.2945856286814],[-162.55422554225544,60.286142742332004],[-162.55062550625507,60.2760112787127],[-162.55062550625507,60.26756839236327],[-162.56142561425614,60.26081408328375],[-162.57222572225723,60.25912550601387],[-162.7018270182702,60.2658798150934],[-162.65862658626585,60.25237119693435],[-162.55782557825577,60.237174001505394],[-162.46782467824679,60.20509103337761],[-162.449824498245,60.19158241521856],[-162.45342453424536,60.17300806524986],[-162.4822248222482,60.15105656074138],[-162.4930249302493,60.1375479425823],[-162.49662496624967,60.1189735926136],[-162.4930249302493,60.09871066537502],[-162.4822248222482,60.08689062448585],[-162.4750247502475,60.07338200632677],[-162.47862478624785,60.05311907908819],[-162.48582485824858,60.03454472911946],[-162.49662496624967,60.019347533690535],[-162.5110251102511,60.00752749280136],[-162.52542525425255,59.997396029182056],[-162.57942579425793,59.98388741102298],[-162.64062640626406,59.9821988337531],[-162.7018270182702,59.98895314283263],[-162.75222752227523,60.00415033826158],[-162.75222752227523,59.96869021559405],[-162.8062280622806,59.943361556545796],[-163.0870308703087,59.858932693051656],[-163.31743317433174,59.83022687946365],[-163.61623616236162,59.80152106587565],[-163.87543875438755,59.79983248860577],[-164.09864098640986,59.83360403400343],[-164.12744127441275,59.84204692035283],[-164.159841598416,59.86399842486131],[-164.18864188641885,59.89101566117944],[-164.2030420304203,59.916344320227694],[-164.2138421384214,59.95518159743497],[-164.18504185041851,59.96869021559405],[-164.0950409504095,59.97713310194345],[-164.0950409504095,59.98388741102298],[-164.1058410584106,59.98388741102298],[-164.11664116641165,59.98388741102298],[-164.12744127441275,59.987264565562754],[-164.1382413824138,59.99064172010253],[-164.1310413104131,59.99401887464228],[-164.11304113041132,60.00415033826158],[-164.14544145441454,60.01090464734111],[-164.19944199441994,60.03454472911946],[-164.3470434704347,60.06662769724724],[-164.38664386643867,60.085202047215944],[-164.4010440104401,60.08689062448585],[-164.4118441184412,60.09195635629547],[-164.43344433444335,60.1105307062642],[-164.44064440644405,60.11559643807385],[-164.44424444244441,60.1189735926136],[-164.48024480244803,60.14261367439195],[-164.48744487444876,60.15105656074138],[-164.49464494644945,60.15949944709078],[-164.49464494644945,60.16963091071008],[-164.4838448384484,60.17638521978961],[-164.4838448384484,60.183139528869134],[-164.51264512645128,60.18989383794869],[-164.56304563045632,60.21859965153669],[-164.61344613446136,60.23210826969574],[-164.6422464224642,60.24899404239457],[-164.66024660246603,60.2658798150934],[-164.64944649446494,60.27938843325245],[-164.65664656646567,60.28783131960188],[-164.67464674646746,60.2945856286814],[-164.67824678246782,60.30302851503083],[-164.67464674646746,60.31147140138023],[-164.64944649446494,60.33342290588871],[-164.71424714247144,60.30133993776093],[-164.75384753847538,60.28783131960188],[-164.78264782647827,60.29627420595128],[-164.8078480784808,60.308094246840454],[-164.9878498784988,60.34186579223811],[-165.00585005850058,60.34693152404776],[-165.03825038250383,60.370571605826115],[-165.07065070650705,60.384080223985194],[-165.1030510305103,60.40603172849367],[-165.12825128251282,60.4313603875419],[-165.14265142651428,60.4499347375106],[-165.1210512105121,60.4499347375106],[-165.05265052650526,60.465131932939556],[-165.03465034650347,60.46682051020943],[-165.02385023850238,60.46850908747933],[-165.020250202502,60.47526339655886],[-165.01665016650168,60.482017705638384],[-165.0130501305013,60.49214916925769],[-165.00945009450095,60.50228063287699],[-165.00225002250022,60.50565778741674],[-164.98424984249843,60.51072351922639],[-164.97344973449734,60.52085498284569],[-164.97344973449734,60.53436360100474],[-164.98424984249843,60.54618364189392],[-165.00945009450095,60.55462652824335],[-165.16065160651607,60.522543560115565],[-165.1750517505175,60.51578925103604],[-165.19665196651965,60.50228063287699],[-165.22185221852217,60.49890347833721],[-165.36945369453696,60.51241209649626],[-165.38385383853839,60.517477828305914],[-165.43065430654306,60.552937950973444],[-165.41265412654127,60.5681351464024],[-165.38385383853839,60.58164376456148],[-165.3550535505355,60.588398073641],[-165.31545315453155,60.58164376456148],[-165.29745297452973,60.58333234183135],[-165.2830528305283,60.588398073641],[-165.26865268652688,60.598529537260276],[-165.25785257852579,60.60866100087958],[-165.2470524705247,60.615415309959104],[-165.20385203852038,60.62554677357841],[-165.17145171451713,60.642432546277234],[-165.11745117451176,60.65931831897606],[-165.08145081450814,60.68126982348454],[-165.02385023850238,60.696467018913495],[-164.99864998649986,60.71166421434242],[-164.99144991449916,60.73023856431115],[-164.9950499504995,60.745435759740076],[-165.0310503105031,60.77583015059798],[-165.0310503105031,60.78765019148716],[-165.01665016650168,60.79102734602691],[-164.9950499504995,60.79271592329681],[-164.98064980649806,60.79609307783656],[-164.96984969849697,60.802847386916085],[-164.9230492304923,60.81973315961491],[-164.87624876248762,60.84843897320292],[-164.89784897848978,60.86870190044152],[-164.94104941049412,60.88896482768013],[-164.9590495904959,60.91598206399823],[-164.93744937449375,60.93624499123683],[-164.9158491584916,60.92442495034766],[-164.8942489424894,60.90247344583918],[-164.87984879848798,60.88896482768013],[-164.87264872648726,60.88558767314035],[-164.84744847448474,60.8720790549813],[-164.8330483304833,60.86870190044152],[-164.81864818648185,60.8720790549813],[-164.7790477904779,60.89571913675965],[-164.75384753847538,60.905850600378955],[-164.71064710647107,60.91767064126813],[-164.66744667446673,60.92104779580788],[-164.63864638646388,60.91260490945848],[-164.6422464224642,60.8990962912994],[-164.68544685446855,60.86701332317165],[-164.69624696246962,60.85519328228247],[-164.66744667446673,60.82648746869447],[-164.59544595445954,60.81973315961491],[-164.46584465844657,60.81973315961491],[-164.429844298443,60.80453596418599],[-164.41544415444153,60.799470232376336],[-164.37584375843758,60.799470232376336],[-164.3578435784358,60.794404500566685],[-164.35064350643506,60.79271592329681],[-164.28224282242823,60.79271592329681],[-164.27144271442714,60.78765019148716],[-164.26784267842677,60.77751872786786],[-164.26784267842677,60.764010109708806],[-164.26784267842677,60.75219006881963],[-164.26064260642607,60.74205860520033],[-164.25344253442535,60.7353042961208],[-164.24264242642425,60.731927141581025],[-164.22464224642246,60.731927141581025],[-164.23544235442355,60.7234842552316],[-164.23544235442355,60.71335279161232],[-164.22824228242283,60.701532750723146],[-164.21744217442173,60.68971270983397],[-164.31824318243181,60.66269547351584],[-164.3290432904329,60.655941164436314],[-164.33264332643327,60.65256400989654],[-164.33624336243363,60.64074396900736],[-164.33984339843397,60.63567823719771],[-164.34344343443433,60.63230108265793],[-164.33984339843397,60.62385819630853],[-164.33984339843397,60.620481041768755],[-164.3470434704347,60.620481041768755],[-164.3578435784358,60.62216961903866],[-164.36144361443615,60.620481041768755],[-164.36864368643685,60.61710388722901],[-164.38664386643867,60.61372673268923],[-164.39744397443974,60.60866100087958],[-164.4010440104401,60.60359526906993],[-164.40464404644047,60.5867094963711],[-164.4118441184412,60.579955187291574],[-164.41544415444153,60.576578032751826],[-164.44424444244441,60.5681351464024],[-164.4190441904419,60.55462652824335],[-164.39744397443974,60.559692260053],[-164.35424354243543,60.593463805450654],[-164.30024300243002,60.62723535084831],[-164.28224282242823,60.639055391737486],[-164.26064260642607,60.65256400989654],[-164.22824228242283,60.65762974170619],[-164.16344163441636,60.655941164436314],[-164.13464134641347,60.66438405078571],[-164.12024120241202,60.68126982348454],[-164.10224102241023,60.718418523421974],[-164.08424084240843,60.7353042961208],[-164.06264062640628,60.74712433700998],[-164.01944019440194,60.767387264248555],[-163.9870398703987,60.77583015059798],[-163.95463954639547,60.77920730513773],[-163.88983889838897,60.77920730513773],[-163.86463864638645,60.77751872786786],[-163.83943839438393,60.76907584151843],[-163.81783817838178,60.75556722335938],[-163.8070380703807,60.7353042961208],[-163.8142381423814,60.7150413688822],[-163.82863828638287,60.69815559618337],[-163.83223832238323,60.682958400754416],[-163.8070380703807,60.669449782595365],[-163.81783817838178,60.65931831897606],[-163.82863828638287,60.65087543262666],[-163.83583835838357,60.639055391737486],[-163.83583835838357,60.620481041768755],[-163.8250382503825,60.606972423609704],[-163.81063810638108,60.593463805450654],[-163.79263792637926,60.58333234183135],[-163.77823778237783,60.579955187291574],[-163.73143731437315,60.58333234183135],[-163.6882368823688,60.59008665091088],[-163.6450364503645,60.60190669180005],[-163.4650346503465,60.67620409167489],[-163.4362343623436,60.69815559618337],[-163.4290342903429,60.71672994615207],[-163.44343443434434,60.7353042961208],[-163.47223472234722,60.75219006881963],[-163.4578345783458,60.753878646089504],[-163.40743407434076,60.75219006881963],[-163.42543425434255,60.764010109708806],[-163.54423544235442,60.80960169599564],[-163.86103861038612,60.85519328228247],[-163.91143911439116,60.85012755047282],[-163.92943929439295,60.85519328228247],[-163.8538385383854,60.883899095870476],[-163.81063810638108,60.892341982219875],[-163.76743767437674,60.88896482768013],[-163.7170371703717,60.8720790549813],[-163.6990369903699,60.86870190044152],[-163.58023580235803,60.883899095870476],[-163.5622356223562,60.89065340495],[-163.5550355503555,60.9007848685693],[-163.5622356223562,60.91260490945848],[-163.58023580235803,60.919359218538006],[-163.72423724237242,60.932867836697056],[-163.75663756637567,60.94468787758623],[-163.74583745837458,60.96495080482484],[-163.72423724237242,60.95650791847541],[-163.70263702637027,60.96495080482484],[-163.68463684636845,60.97845942298389],[-163.67023670236702,60.99196804114297],[-163.70263702637027,61.00041092749237],[-163.76743767437674,60.98014800025379],[-163.79983799837999,60.97845942298389],[-163.79623796237962,60.95819649574531],[-163.81063810638108,60.95144218666579],[-163.83583835838357,60.949753609395884],[-163.85743857438575,60.941310723046485],[-163.86823868238682,60.93455641396696],[-163.8862388623886,60.927802104887405],[-163.8970389703897,60.922736373077754],[-163.90063900639007,60.91598206399823],[-163.9078390783908,60.8990962912994],[-163.9150391503915,60.892341982219875],[-163.95823958239583,60.86870190044152],[-164.00864008640087,60.861947591362],[-164.13464134641347,60.86701332317165],[-164.36504365043652,60.8720790549813],[-164.56304563045632,60.85519328228247],[-164.57384573845738,60.856881859552345],[-164.59184591845917,60.8720790549813],[-164.60264602646026,60.87545620952105],[-164.58464584645847,60.9007848685693],[-164.58464584645847,60.9092277549187],[-164.60264602646026,60.922736373077754],[-164.62784627846278,60.932867836697056],[-164.71424714247144,60.93793356850671],[-164.7250472504725,60.93455641396696],[-164.74664746647466,60.92442495034766],[-164.7682476824768,60.919359218538006],[-164.789847898479,60.905850600378955],[-164.7970479704797,60.90247344583918],[-164.81504815048152,60.90753917764883],[-164.83664836648367,60.93793356850671],[-164.85464854648546,60.95144218666579],[-164.87984879848798,60.95819649574531],[-164.90864908649087,60.95819649574531],[-164.9338493384934,60.95650791847541],[-164.9590495904959,60.95144218666579],[-165.01665016650168,60.92104779580788],[-165.03825038250383,60.91598206399823],[-165.08145081450814,60.91767064126813],[-165.12825128251282,60.922736373077754],[-165.17145171451713,60.941310723046485],[-165.20025200252002,60.97845942298389],[-165.11745117451176,61.01391954565145],[-165.08865088650887,61.02067385473097],[-164.97344973449734,61.025739586540624],[-164.95184951849518,61.02067385473097],[-164.95184951849518,61.05782255466838],[-164.95184951849518,61.06795401828768],[-164.94104941049412,61.08315121371663],[-164.92664926649266,61.08652836825638],[-164.86544865448656,61.079774059176856],[-164.85824858248583,61.08315121371663],[-164.84384843848437,61.09159410006603],[-164.82944829448294,61.10003698641546],[-164.78624786247863,61.10510271822511],[-164.7682476824768,61.10847987276486],[-164.78264782647827,61.12029991365404],[-164.81504815048152,61.11861133638416],[-164.87624876248762,61.10847987276486],[-164.93024930249302,61.115234181844386],[-164.99864998649986,61.115234181844386],[-165.0130501305013,61.106791295494986],[-165.00585005850058,61.088216945526284],[-165.00225002250022,61.06795401828768],[-165.03465034650347,61.05951113193828],[-165.059850598506,61.06288828647803],[-165.0850508505085,61.06964259555755],[-165.11025110251103,61.08146263644673],[-165.12825128251282,61.09497125460581],[-165.12825128251282,61.106791295494986],[-165.1750517505175,61.12198849092394],[-165.18945189451895,61.137185686352865],[-165.1678516785168,61.14562857270229],[-165.1462514625146,61.14900572724204],[-165.12825128251282,61.15744861359147],[-165.1138511385114,61.191220158989125],[-165.09945099450994,61.2030401998783],[-165.059850598506,61.21823739530723],[-165.14265142651428,61.25876324978444],[-165.13185131851318,61.24187747708561],[-165.1210512105121,61.23005743619643],[-165.1030510305103,61.22330312711688],[-165.08145081450814,61.21823739530723],[-165.1030510305103,61.20810593168795],[-165.1210512105121,61.20641735441805],[-165.13545135451355,61.2013516226084],[-165.14985149851498,61.1844658499096],[-165.14985149851498,61.177711540830046],[-165.14265142651428,61.16758007721077],[-165.14265142651428,61.159137190861344],[-165.1570515705157,61.15576003632157],[-165.2110521105211,61.14900572724204],[-165.34785347853477,61.19628589079878],[-165.36945369453696,61.2013516226084],[-165.36225362253623,61.213171663497604],[-165.32625326253262,61.23174601346631],[-165.2938529385294,61.25538609524466],[-165.2722527225272,61.25876324978444],[-165.22545225452254,61.25876324978444],[-165.2110521105211,61.26551755886396],[-165.20745207452075,61.27902617702301],[-165.20385203852038,61.29591194972184],[-165.20385203852038,61.311109145150795],[-165.20745207452075,61.32630634057972],[-165.21825218252184,61.33137207238937],[-165.26145261452615,61.32799491784962],[-165.26145261452615,61.33474922692915],[-165.22545225452254,61.3482578450882],[-165.18225182251823,61.351634999627976],[-165.17145171451713,61.35501215416775],[-165.1570515705157,61.36514361778703],[-165.16065160651607,61.373586504136455],[-165.17145171451713,61.382029390485854],[-165.17865178651786,61.395538008644934],[-165.1570515705157,61.41917809042329],[-165.07785077850778,61.41917809042329],[-165.0490504905049,61.43775244039199],[-165.059850598506,61.44619532674142],[-165.05625056250562,61.45126105855104],[-165.00585005850058,61.46476967671012],[-165.00585005850058,61.466458253979994],[-165.00585005850058,61.471523985789645],[-165.00225002250022,61.476589717599296],[-164.99864998649986,61.479966872139045],[-164.96624966249664,61.49009833575835],[-164.8690486904869,61.498541222107775],[-164.84744847448474,61.49685264483787],[-164.84024840248404,61.498541222107775],[-164.84024840248404,61.501918376647524],[-164.84384843848437,61.5154269948066],[-164.84024840248404,61.51880414934635],[-164.82944829448294,61.525558458425905],[-164.81864818648185,61.528935612965654],[-164.78624786247863,61.534001344775305],[-164.76464764647648,61.542444231124705],[-164.74664746647466,61.55426427201391],[-164.7430474304743,61.57115004471274],[-164.75384753847538,61.58972439468144],[-164.68904689046892,61.60154443557062],[-164.7070470704707,61.61674163099957],[-164.7250472504725,61.62518451734897],[-164.7430474304743,61.62856167188875],[-164.7682476824768,61.62856167188875],[-164.7610476104761,61.626873094618844],[-164.75384753847538,61.62180736280919],[-164.74664746647466,61.61505305372967],[-164.74664746647466,61.60829874465014],[-164.75384753847538,61.60154443557062],[-164.76464764647648,61.60154443557062],[-164.77544775447754,61.60323301284049],[-164.78624786247863,61.60154443557062],[-164.80064800648006,61.591412971951314],[-164.82224822248222,61.56777289017296],[-164.87624876248762,61.525558458425905],[-164.89784897848978,61.51880414934635],[-164.96624966249664,61.51711557207648],[-164.99144991449916,61.512049840266826],[-165.00945009450095,61.503606953917426],[-165.01665016650168,61.49685264483787],[-165.020250202502,61.48840975848847],[-165.0310503105031,61.47490114032942],[-165.03825038250383,61.471523985789645],[-165.0490504905049,61.47321256305952],[-165.059850598506,61.476589717599296],[-165.07065070650705,61.479966872139045],[-165.0850508505085,61.476589717599296],[-165.08865088650887,61.46983540851977],[-165.08145081450814,61.45970394490047],[-165.08145081450814,61.444506749471515],[-165.07785077850778,61.441129594931766],[-165.07785077850778,61.43775244039199],[-165.08865088650887,61.430998131312464],[-165.09945099450994,61.42930955404259],[-165.11025110251103,61.430998131312464],[-165.12465124651246,61.43437528585221],[-165.13185131851318,61.43775244039199],[-165.15345153451534,61.43268670858234],[-165.1858518585186,61.41580093588351],[-165.20385203852038,61.41073520407386],[-165.19665196651965,61.39047227683528],[-165.18945189451895,61.38371796775576],[-165.20745207452075,61.3769636586762],[-165.239852398524,61.368520772326804],[-165.25425254252542,61.36176646324728],[-165.26145261452615,61.35501215416775],[-165.2722527225272,61.34488069054845],[-165.27945279452794,61.338126381468925],[-165.2938529385294,61.33474922692915],[-165.27945279452794,61.31786345423032],[-165.26145261452615,61.31786345423032],[-165.24345243452436,61.3212406087701],[-165.2290522905229,61.31786345423032],[-165.22545225452254,61.30942056788092],[-165.23265232652327,61.29928910426162],[-165.23265232652327,61.28746906337244],[-165.22545225452254,61.27227186794349],[-165.26865268652688,61.27058329067361],[-165.3118531185312,61.26045182705431],[-165.3550535505355,61.24525463162536],[-165.3910539105391,61.22499170438678],[-165.3982539825398,61.19628589079878],[-165.36945369453696,61.17602296356017],[-165.34785347853477,61.15744861359147],[-165.37665376653766,61.128742800003465],[-165.36945369453696,61.12198849092394],[-165.3658536585366,61.10847987276486],[-165.36225362253623,61.07808548190698],[-165.3730537305373,61.071331172827456],[-165.3982539825398,61.07301975009733],[-165.4378543785438,61.08146263644673],[-165.51345513455135,61.08652836825638],[-165.5458554585546,61.09328267733591],[-165.58185581855818,61.10847987276486],[-165.60345603456034,61.123677068193814],[-165.62145621456216,61.14393999543239],[-165.63225632256322,61.16589149994087],[-165.6358563585636,61.191220158989125],[-165.6358563585636,61.18953158171922],[-165.62865628656286,61.191220158989125],[-165.6250562505625,61.194597313528874],[-165.62145621456216,61.2013516226084],[-165.6250562505625,61.204728777148176],[-165.63225632256322,61.20810593168795],[-165.63945639456395,61.21486024076748],[-165.64305643056431,61.221614549847004],[-165.64305643056431,61.23850032254583],[-165.64305643056431,61.248631786165134],[-165.63225632256322,61.253697517974786],[-165.61065610656107,61.25200894070488],[-165.6250562505625,61.262140404324185],[-165.62865628656286,61.27227186794349],[-165.6250562505625,61.28071475429289],[-165.61065610656107,61.28746906337244],[-165.63945639456395,61.289157640642316],[-165.70065700657005,61.302666258801366],[-165.83025830258302,61.31279772242067],[-165.85545855458554,61.3212406087701],[-165.8770587705877,61.33643780419902],[-165.92025920259204,61.39891516318468],[-165.91665916659167,61.414112358613636],[-165.89145891458915,61.42930955404259],[-165.83385833858338,61.444506749471515],[-165.80145801458013,61.449572481281166],[-165.79065790657907,61.45294963582094],[-165.77985779857798,61.458015367630594],[-165.77265772657728,61.466458253979994],[-165.76905769057691,61.47490114032942],[-165.76545765457655,61.485032603948696],[-165.76545765457655,61.495164067568],[-165.77625776257761,61.5154269948066],[-165.80145801458013,61.528935612965654],[-165.85545855458554,61.54075565385483],[-165.869858698587,61.54413280839461],[-165.89145891458915,61.555952849283784],[-165.90585905859058,61.561018581093435],[-165.9238592385924,61.56270715836331],[-166.04986049860497,61.54413280839461],[-166.08586085860858,61.53231276750543],[-166.09666096660968,61.51880414934635],[-166.08946089460895,61.5137384175367],[-166.06426064260643,61.51036126299695],[-166.05346053460534,61.5052955311873],[-166.10746107461074,61.498541222107775],[-166.139861398614,61.5154269948066],[-166.1938619386194,61.58634724014166],[-166.2010620106201,61.59479012649109],[-166.19746197461976,61.60154443557062],[-166.19026190261903,61.609987321920016],[-166.18666186661866,61.61505305372967],[-166.18666186661866,61.65726748547675],[-166.17946179461794,61.67415325817558],[-166.17226172261724,61.694416185414156],[-166.16146161461614,61.71467911265276],[-166.14346143461435,61.72481057627206],[-166.15426154261542,61.66571037182615],[-166.15426154261542,61.65726748547675],[-166.14706147061472,61.653890330936974],[-166.1290612906129,61.64038171277792],[-166.11466114661147,61.63531598096827],[-166.0570605706057,61.6420702900478],[-166.04266042660427,61.645447444587575],[-166.02106021060212,61.65726748547675],[-165.78345783457834,61.68428472179485],[-165.76545765457655,61.69103903087441],[-165.77985779857798,61.69610476268406],[-165.83025830258302,61.69103903087441],[-165.8410584105841,61.69272760814428],[-165.8590585905859,61.70117049449368],[-165.869858698587,61.70454764903346],[-165.88425884258842,61.70623622630333],[-165.90945909459094,61.70454764903346],[-165.9238592385924,61.70454764903346],[-165.93825938259383,61.70961338084311],[-165.95625956259562,61.72312199900216],[-165.9670596705967,61.72481057627206],[-166.0030600306003,61.73494203989134],[-166.04266042660427,61.75858212166969],[-166.07866078660786,61.7889765125276],[-166.10386103861038,61.82105948065535],[-165.97425974259744,61.83456809881443],[-165.90945909459094,61.827813789734904],[-165.8482584825848,61.836256676084304],[-165.83025830258302,61.83456809881443],[-165.79425794257943,61.826125212465],[-165.77985779857798,61.827813789734904],[-165.7438574385744,61.846388139703606],[-165.72585725857257,61.84807671697348],[-165.61065610656107,61.85145387151326],[-165.5890558905589,61.86158533513256],[-165.61065610656107,61.86496248967231],[-165.64305643056431,61.895356880530215],[-165.689856898569,61.91055407595914],[-165.71145711457115,61.92743984865797],[-165.74025740257403,61.9645885485954],[-165.7510575105751,61.98485147583398],[-165.75825758257582,62.00511440307258],[-165.75825758257582,62.02537733031116],[-165.72945729457294,62.07603464840764],[-165.7150571505715,62.08447753475707],[-165.71145711457115,62.09460899837637],[-165.70785707857078,62.10642903926555],[-165.70425704257042,62.11656050288482],[-165.69345693456935,62.1300691210439],[-165.66825668256683,62.148643471012605],[-165.64305643056431,62.16384066644156],[-165.5962559625596,62.17903786187048],[-165.44865448654485,62.30230400257193],[-165.34425344253444,62.366469938827464],[-165.33345333453335,62.37491282517689],[-165.31545315453155,62.4036186387649],[-165.29745297452973,62.420504411463725],[-165.2722527225272,62.43739018416255],[-165.1858518585186,62.477916038639734],[-165.13185131851318,62.515064738577166],[-165.09585095850957,62.53026193400609],[-165.05625056250562,62.53870482035552],[-165.020250202502,62.540393397625394],[-164.93024930249302,62.53363908854587],[-164.8870488704887,62.53870482035552],[-164.8690486904869,62.53870482035552],[-164.84744847448474,62.52688477946634],[-164.8618486184862,62.52013047038679],[-164.8690486904869,62.509999006767515],[-164.86544865448656,62.50155612041809],[-164.85464854648546,62.49311323406869],[-164.84744847448474,62.477916038639734],[-164.81144811448115,62.469473152290334],[-164.7358473584736,62.46440742048068],[-164.7250472504725,62.461030265940906],[-164.70344703447034,62.44414449324208],[-164.68904689046892,62.43739018416255],[-164.6710467104671,62.434013029622776],[-164.609846098461,62.43739018416255],[-164.64944649446494,62.425570143273376],[-164.6638466384664,62.41881583419385],[-164.69624696246962,62.39686432968537],[-164.71424714247144,62.38673286606607],[-164.73224732247323,62.37828997971664],[-164.7070470704707,62.37997855698654],[-164.68544685446855,62.38673286606607],[-164.64944649446494,62.41543867965407],[-164.6422464224642,62.420504411463725],[-164.63144631446315,62.42388156600347],[-164.5990459904599,62.42388156600347],[-164.5810458104581,62.425570143273376],[-164.57384573845738,62.43739018416255],[-164.58824588245884,62.45427595686138],[-164.6170461704617,62.45934168867103],[-164.6710467104671,62.46271884321078],[-164.67824678246782,62.47453888409996],[-164.6638466384664,62.48973607952891],[-164.63144631446315,62.513376161307264],[-164.64584645846458,62.51168758403739],[-164.65664656646567,62.509999006767515],[-164.67824678246782,62.49986754314821],[-164.69264692646925,62.48467034771926],[-164.70344703447034,62.47960461590961],[-164.71424714247144,62.48129319317951],[-164.7430474304743,62.496490388608436],[-164.81144811448115,62.48635892498913],[-164.84024840248404,62.49311323406869],[-164.80064800648006,62.523507624926566],[-164.79344793447933,62.53363908854587],[-164.80064800648006,62.54714770670492],[-164.81504815048152,62.55559059305435],[-164.83664836648367,62.558967747594096],[-164.8510485104851,62.560656324864],[-164.85824858248583,62.56403347940375],[-164.85464854648546,62.5690992112134],[-164.84384843848437,62.57754209756283],[-164.8330483304833,62.58429640664235],[-164.82224822248222,62.585984983912226],[-164.79344793447933,62.5876735611821],[-164.70344703447034,62.613002220230356],[-164.48024480244803,62.74639982455108],[-164.50544505445055,62.74977697909085],[-164.54144541445413,62.73964551547155],[-164.57384573845738,62.719382588232946],[-164.61344613446136,62.692365351914844],[-164.6638466384664,62.678856733755765],[-164.73944739447396,62.634953724738835],[-164.7790477904779,62.61975652930988],[-164.81144811448115,62.61975652930988],[-164.82944829448294,62.65352807470754],[-164.8330483304833,62.68223388829554],[-164.84384843848437,62.705873970073895],[-164.8618486184862,62.7244483200426],[-164.88344883448835,62.73964551547155],[-164.87264872648726,62.7447112472812],[-164.86544865448656,62.74977697909085],[-164.86544865448656,62.754842710900505],[-164.87624876248762,62.759908442710156],[-164.87264872648726,62.763285597249904],[-164.87264872648726,62.768351329059556],[-164.8690486904869,62.77172848359933],[-164.8618486184862,62.77341706086921],[-164.8690486904869,62.776794215408984],[-164.89064890648908,62.78692567902826],[-164.87264872648726,62.79199141083791],[-164.85824858248583,62.795368565377686],[-164.84384843848437,62.795368565377686],[-164.82944829448294,62.79367998810781],[-164.79344793447933,62.78692567902826],[-164.77544775447754,62.78861425629816],[-164.7682476824768,62.80043429718734],[-164.8330483304833,62.80887718353674],[-164.8618486184862,62.81900864715604],[-164.88344883448835,62.84096015166452],[-164.85824858248583,62.85446876982357],[-164.8510485104851,62.85615734709347],[-164.84744847448474,62.85953450163322],[-164.84744847448474,62.879797428871825],[-164.84384843848437,62.88655173795135],[-164.8330483304833,62.89837177884053],[-164.81504815048152,62.92707759242853],[-164.75384753847538,62.991243528684066],[-164.7250472504725,63.013195033192545],[-164.68904689046892,63.026703651351625],[-164.6638466384664,63.03176938316125],[-164.5270452704527,63.035146537701024],[-164.5162451624516,63.03008080589137],[-164.5090450904509,63.02501507408172],[-164.48744487444876,63.01657218773232],[-164.48024480244803,63.01488361046242],[-164.4730447304473,63.01657218773232],[-164.46944469444693,63.02332649681185],[-164.46224462244624,63.03008080589137],[-164.45144451444514,63.03345796043115],[-164.44064440644405,63.03176938316125],[-164.4118441184412,63.01994934227207],[-164.4010440104401,63.01994934227207],[-164.3830438304383,63.02501507408172],[-164.37584375843758,63.02332649681185],[-164.35424354243543,63.01488361046242],[-164.33264332643327,63.0098178786528],[-164.32544325443254,63.0098178786528],[-164.31464314643148,63.01488361046242],[-164.3290432904329,63.04190084678055],[-164.35064350643506,63.06047519674925],[-164.37584375843758,63.070606660368554],[-164.52344523445234,63.08749243306738],[-164.54144541445413,63.102689628496336],[-164.54864548645486,63.11619824665539],[-164.56304563045632,63.12295255573491],[-164.59544595445954,63.129706864814466],[-164.57744577445774,63.13983832843374],[-164.52344523445234,63.16178983294222],[-164.50184501845018,63.165166987481996],[-164.48744487444876,63.17023271929165],[-164.42264422644226,63.209069996498954],[-164.36504365043652,63.22933292373753],[-164.14544145441454,63.26141589186531],[-163.99423994239942,63.25635016005566],[-163.82863828638287,63.21920146011823],[-163.76743767437674,63.22426719192788],[-163.7530375303753,63.222578614658005],[-163.7278372783728,63.217512882848354],[-163.72423724237242,63.2124471510387],[-163.73143731437315,63.20569284195918],[-163.72423724237242,63.200627110149526],[-163.70263702637027,63.19387280107],[-163.69543695436954,63.18880706926035],[-163.68463684636845,63.173609873831396],[-163.67743677436775,63.16685556475187],[-163.6450364503645,63.15841267840247],[-163.63783637836377,63.14490406024339],[-163.6450364503645,63.13139544208434],[-163.6630366303663,63.12295255573491],[-163.6630366303663,63.11619824665539],[-163.6342363423634,63.11957540119516],[-163.58743587435873,63.13477259662412],[-163.56583565835658,63.13646117389399],[-163.54063540635406,63.12801828754456],[-163.56583565835658,63.11788682392529],[-163.6018360183602,63.106066783036084],[-163.62343623436234,63.09255816487703],[-163.6558365583656,63.06047519674925],[-163.79263792637926,63.02163791954197],[-163.8070380703807,62.986177796874415],[-163.76383763837637,63.01488361046242],[-163.65223652236523,63.04527800132033],[-163.6018360183602,63.067229505828806],[-163.55863558635588,63.10437820576621],[-163.529835298353,63.11619824665539],[-163.49023490234902,63.10100105122646],[-163.43983439834398,63.09593531941681],[-163.39663396633966,63.067229505828806],[-163.36783367833678,63.0385236922408],[-163.349833498335,63.03008080589137],[-163.28863288632886,63.048655155860075],[-163.09423094230942,63.0570980422095],[-163.07263072630727,63.06047519674925],[-163.0330303303033,63.07904954671798],[-163.01143011430113,63.084115278527634],[-162.98982989829898,63.09931247395656],[-162.98262982629825,63.106066783036084],[-162.96822968229682,63.11450966938551],[-162.92142921429215,63.12295255573491],[-162.88182881828817,63.14152690570364],[-162.860228602286,63.15165836932292],[-162.84942849428495,63.165166987481996],[-162.8458284582846,63.1752984511013],[-162.8458284582846,63.18880706926035],[-162.84222842228422,63.19893853287965],[-162.8350283502835,63.20569284195918],[-162.8062280622806,63.21920146011823],[-162.69822698226983,63.22933292373753],[-162.59742597425975,63.27661308729424],[-162.4282242822428,63.40325638253546],[-162.41022410224102,63.42520788704394],[-162.40302403024032,63.431962196123465],[-162.36342363423634,63.44715939155239],[-162.35262352623528,63.45560227790182],[-162.3310233102331,63.467422318790994],[-162.30222302223024,63.4775537824103],[-162.28062280622805,63.48937382329947],[-162.27342273422735,63.507948173268176],[-162.3130231302313,63.534965409586306],[-162.30942309423094,63.54678545047548],[-162.29142291422914,63.55016260501526],[-162.2518225182252,63.54847402774536],[-162.23742237422374,63.54678545047548],[-162.20862208622086,63.53665398685618],[-162.1762217622176,63.53327683231643],[-162.1330213302133,63.521456791427255],[-162.10062100621008,63.51976821415735],[-162.08262082620826,63.5147024823477],[-162.0610206102061,63.496128132379],[-162.04662046620467,63.49106240056935],[-162.03222032220322,63.4859966687597],[-162.0178201782018,63.4859966687597],[-162.03582035820358,63.48430809148982],[-162.05382053820537,63.47417662787052],[-162.0718207182072,63.46235658698134],[-162.08622086220862,63.45222512336204],[-162.10782107821078,63.44715939155239],[-162.14742147421475,63.44378223701264],[-162.1690216902169,63.43871650520299],[-162.1690216902169,63.431962196123465],[-161.91341913419134,63.45053654609217],[-161.66141661416614,63.46911089606087],[-161.62181621816217,63.46573374152112],[-161.58941589415895,63.45729085517169],[-161.5750157501575,63.45560227790182],[-161.5570155701557,63.45729085517169],[-161.51021510215102,63.472488050600646],[-161.4958149581496,63.47417662787052],[-161.4850148501485,63.47417662787052],[-161.47061470614705,63.46911089606087],[-161.45621456214562,63.46235658698134],[-161.4418144181442,63.46066800971147],[-161.42381423814237,63.46573374152112],[-161.40581405814058,63.47417662787052],[-161.3878138781388,63.47924235968017],[-161.18621186211863,63.5062595959983],[-161.05661056610566,63.57380268679361],[-161.04581045810457,63.58562272768279],[-161.0350103501035,63.60926280946114],[-161.00621006210062,63.62108285035032],[-160.97380973809737,63.627837159429845],[-160.94860948609485,63.63628004577927],[-160.8910089100891,63.685248786605854],[-160.85140851408514,63.69875740476493],[-160.82620826208262,63.71395460019386],[-160.79020790207903,63.74603756832164],[-160.76860768607685,63.823712122736254],[-160.80460804608046,63.904763831690616],[-160.9270092700927,64.04829289963064],[-160.9450094500945,64.09557306318735],[-160.95220952209522,64.20701916299961],[-160.97380973809737,64.25092217201657],[-160.99540995409953,64.2661193674455],[-161.0638106381064,64.2965137583034],[-161.0890108901089,64.30157949011306],[-161.11421114211143,64.31002237646246],[-161.17541175411753,64.35054823093964],[-161.20421204212042,64.36405684909872],[-161.20421204212042,64.37081115817824],[-161.19341193411935,64.37081115817824],[-161.189811898119,64.37418831271799],[-161.17541175411753,64.38431977633729],[-161.19341193411935,64.39276266268672],[-161.23661236612367,64.39782839449637],[-161.25821258212582,64.4045827035759],[-161.2438124381244,64.40964843538555],[-161.22581225812257,64.41133701265542],[-161.189811898119,64.41133701265542],[-161.189811898119,64.41809132173495],[-161.33021330213302,64.41809132173495],[-161.4310143101431,64.4332885171639],[-161.45621456214562,64.43159993989403],[-161.4850148501485,64.42484563081447],[-161.49941499414993,64.4147141671952],[-161.51021510215102,64.40289412630602],[-161.5210152101521,64.39276266268672],[-161.5390153901539,64.39107408541682],[-161.5390153901539,64.39782839449637],[-161.52461524615245,64.42991136262413],[-161.51741517415175,64.43835424897355],[-161.5030150301503,64.44848571259286],[-161.49221492214923,64.4518628671326],[-161.4850148501485,64.45692859894226],[-161.47781477814777,64.47212579437121],[-161.4742147421474,64.48901156707004],[-161.47061470614705,64.49914303068931],[-161.4670146701467,64.50927449430861],[-161.45621456214562,64.52109453519779],[-161.4418144181442,64.52953742154722],[-161.4130141301413,64.53798030789662],[-161.3878138781388,64.5413574624364],[-161.36981369813697,64.53798030789662],[-161.3410134101341,64.52447168973757],[-161.09261092610927,64.50252018522909],[-161.0350103501035,64.50758591703874],[-161.00621006210062,64.52784884427734],[-161.06741067410672,64.54473461697614],[-161.08541085410855,64.55317750332557],[-160.97380973809737,64.55655465786535],[-160.95940959409594,64.55824323513522],[-160.94860948609485,64.56668612148462],[-160.9378093780938,64.57512900783405],[-160.9270092700927,64.58188331691358],[-160.83340833408334,64.6173434395811],[-160.80460804608046,64.64267209862936],[-160.79020790207903,64.70852661215477],[-160.78660786607867,64.71190376669455],[-160.78660786607867,64.71865807577407],[-160.79020790207903,64.7254123848536],[-160.8010080100801,64.73723242574277],[-160.82620826208262,64.74905246663195],[-160.8370083700837,64.75749535298138],[-160.88380883808838,64.80984124834774],[-160.90180901809018,64.82334986650679],[-160.9162091620916,64.82841559831644],[-160.9630096300963,64.835169907396],[-161.00261002610026,64.85543283463457],[-161.04581045810457,64.8621871437141],[-161.14661146611465,64.91791019362023],[-161.15381153811538,64.92466450269976],[-161.13221132211322,64.92466450269976],[-161.08541085410855,64.91284446181058],[-161.06741067410672,64.91453303908048],[-161.03141031410314,64.93141881177928],[-161.00981009810098,64.93648454358893],[-160.9918099180992,64.93986169812871],[-161.00261002610026,64.94492742993836],[-161.02061020610205,64.94661600720823],[-161.03861038610387,64.94830458447811],[-161.0530105301053,64.94492742993836],[-161.05661056610566,64.94323885266849],[-161.06021060210603,64.93479596631906],[-161.0638106381064,64.93310738904918],[-161.18261182611826,64.93986169812871],[-161.21141211412115,64.93310738904918],[-161.20781207812078,64.90946730727083],[-161.22941229412294,64.89595868911175],[-161.30861308613086,64.8723186073334],[-161.3158131581316,64.86556429825387],[-161.3230132301323,64.84530137101527],[-161.33021330213302,64.83854706193574],[-161.3410134101341,64.83179275285622],[-161.36261362613627,64.82672702104657],[-161.36621366213663,64.81828413469717],[-161.36981369813697,64.80984124834774],[-161.37341373413733,64.80308693926821],[-161.39501395013951,64.78620116656938],[-161.40941409414094,64.77944685748986],[-161.42381423814237,64.77438112568021],[-161.44541445414455,64.77100397114043],[-161.48861488614887,64.77100397114043],[-161.51021510215102,64.76762681660068],[-161.52461524615245,64.76256108479103],[-161.53541535415354,64.7558067757115],[-161.54621546215463,64.75074104390185],[-161.56061560615606,64.7541181984416],[-161.56421564215643,64.77100397114043],[-161.64341643416435,64.78451258929951],[-161.6722167221672,64.79126689837904],[-161.7010170101701,64.81152982561761],[-161.73341733417334,64.81997271196704],[-161.80541805418054,64.82334986650679],[-161.78381783817838,64.81659555742726],[-161.74061740617407,64.79802120745856],[-161.71541715417155,64.79464405291878],[-161.89541895418955,64.7541181984416],[-161.94941949419496,64.7254123848536],[-161.93141931419314,64.71865807577407],[-161.91341913419134,64.72203523031385],[-161.8810188101881,64.74060958028255],[-161.8630186301863,64.74736388936208],[-161.79821798217984,64.76087250752113],[-161.81261812618126,64.75242962117173],[-161.84861848618488,64.73723242574277],[-161.8630186301863,64.73385527120303],[-161.86661866618667,64.73047811666325],[-161.88461884618846,64.7169694985042],[-161.89541895418955,64.71190376669455],[-161.9242192421924,64.71190376669455],[-161.98181981819818,64.70346088034512],[-162.08262082620826,64.72034665304395],[-162.12222122221223,64.71359234396442],[-162.10782107821078,64.71021518942467],[-162.0790207902079,64.70514945761502],[-162.06822068220683,64.70008372580537],[-162.1438214382144,64.6967065712656],[-162.1762217622176,64.6882636849162],[-162.20862208622086,64.67137791221737],[-162.21942219422195,64.66462360313784],[-162.24822248222483,64.63422921227993],[-162.2590225902259,64.62578632593053],[-162.269822698227,64.61903201685101],[-162.31662316623166,64.61227770777145],[-162.5110251102511,64.55824323513522],[-162.55782557825577,64.53291457608697],[-162.5830258302583,64.52109453519779],[-162.6082260822608,64.50758591703874],[-162.62262622626227,64.48732298980013],[-162.62262622626227,64.47550294891096],[-162.61542615426154,64.45692859894226],[-162.61542615426154,64.44679713532295],[-162.62262622626227,64.43666567170365],[-162.6370263702637,64.42991136262413],[-162.64422644226443,64.41977989900482],[-162.6370263702637,64.40795985811565],[-162.64422644226443,64.3944512399566],[-162.7342273422734,64.36743400363846],[-162.75582755827557,64.35223680820954],[-162.7810278102781,64.34379392186011],[-162.80262802628027,64.34717107639989],[-162.82062820628207,64.37081115817824],[-162.82062820628207,64.3860083536072],[-162.8170281702817,64.39782839449637],[-162.8170281702817,64.40964843538555],[-162.82422824228243,64.42146847627473],[-162.8458284582846,64.4434199807832],[-162.85662856628565,64.4518628671326],[-162.87462874628747,64.46030575348203],[-162.860228602286,64.48732298980013],[-162.84942849428495,64.49407729887969],[-162.8278282782828,64.49238872160979],[-162.8278282782828,64.50083160795921],[-162.8710287102871,64.51265164884839],[-162.89622896228963,64.51771738065804],[-162.92142921429215,64.53122599881709],[-162.9322293222932,64.53460315335687],[-162.93942939429394,64.53798030789662],[-162.9610296102961,64.5514889260557],[-162.9718297182972,64.55655465786535],[-162.98982989829898,64.55824323513522],[-163.05463054630548,64.55655465786535],[-163.05463054630548,64.56162038967497],[-163.04383043830438,64.56330896694487],[-163.0258302583026,64.5700632760244],[-163.0582305823058,64.59201478053288],[-163.10863108631085,64.6089005532317],[-163.14823148231483,64.62747490320041],[-163.14823148231483,64.65786929405829],[-163.2130321303213,64.65449213951854],[-163.24183241832418,64.64773783043901],[-163.35703357033572,64.60383482142205],[-163.38943389433894,64.59708051234253],[-163.38943389433894,64.59032620326298],[-163.36783367833678,64.5886376259931],[-163.31383313833138,64.56162038967497],[-163.29223292232922,64.55824323513522],[-163.20943209432093,64.55655465786535],[-163.1950319503195,64.54811177151592],[-163.16263162631626,64.52278311246769],[-163.1410314103141,64.51434022611826],[-163.11943119431194,64.51434022611826],[-163.04023040230402,64.52109453519779],[-163.04743047430475,64.51602880338814],[-163.05463054630548,64.50927449430861],[-163.0510305103051,64.50252018522909],[-163.04743047430475,64.49238872160979],[-163.0978309783098,64.47550294891096],[-163.11583115831158,64.46030575348203],[-163.1230312303123,64.43497709443378],[-163.13383133831337,64.4130255899253],[-163.16623166231662,64.41133701265542],[-163.19863198631987,64.41977989900482],[-163.2238322383224,64.43159993989403],[-163.2778327783278,64.48563441253026],[-163.29943299432995,64.49238872160979],[-163.33183331833317,64.49576587614956],[-163.35703357033572,64.50589733976886],[-163.40743407434076,64.52784884427734],[-163.5370353703537,64.56499754421475],[-163.67743677436775,64.58694904872323],[-163.81783817838178,64.59032620326298],[-163.97263972639726,64.5700632760244],[-164.390243902439,64.5700632760244],[-164.26784267842677,64.57512900783405],[-164.34344343443433,64.59032620326298],[-164.64944649446494,64.50252018522909],[-164.74664746647466,64.49238872160979],[-164.7250472504725,64.50252018522909],[-164.65664656646567,64.52109453519779],[-164.69264692646925,64.53122599881709],[-164.8078480784808,64.52109453519779],[-164.83664836648367,64.51434022611826],[-164.8870488704887,64.49070014433991],[-164.90864908649087,64.49238872160979],[-164.90144901449014,64.51096307157852],[-164.90864908649087,64.52447168973757],[-164.9230492304923,64.53291457608697],[-164.93744937449375,64.53460315335687],[-164.93744937449375,64.52784884427734],[-164.93024930249302,64.52447168973757],[-164.9230492304923,64.52109453519779],[-164.9338493384934,64.51265164884839],[-164.94104941049412,64.50758591703874],[-164.95184951849518,64.50589733976886],[-164.96624966249664,64.50758591703874],[-164.95544955449554,64.49407729887969],[-164.9338493384934,64.48563441253026],[-164.9158491584916,64.48056868072061],[-164.89784897848978,64.47212579437121],[-164.9230492304923,64.46030575348203],[-164.84384843848437,64.4619943307519],[-164.80064800648006,64.46706006256156],[-164.7682476824768,64.48056868072061],[-164.7970479704797,64.46368290802178],[-164.83664836648367,64.45524002167238],[-165.03465034650347,64.44848571259286],[-165.44505445054452,64.51265164884839],[-165.8770587705877,64.54811177151592],[-166.0030600306003,64.57175185329427],[-166.19026190261903,64.58526047145335],[-166.37026370263703,64.63760636681971],[-166.4458644586446,64.69164083945594],[-166.48186481864818,64.73047811666325],[-166.47466474664748,64.74736388936208],[-166.47466474664748,64.77100397114043],[-166.47826478264784,64.78957832110916],[-166.48186481864818,64.80139836199834],[-166.4710647106471,64.80815267107786],[-166.43866438664386,64.80984124834774],[-166.39546395463955,64.82334986650679],[-166.38466384663846,64.82672702104657],[-166.38466384663846,64.835169907396],[-166.3918639186392,64.84192421647552],[-166.40266402664025,64.835169907396],[-166.40986409864098,64.8537442573647],[-166.40986409864098,64.86894145279362],[-166.3918639186392,64.89933584365153],[-166.40626406264062,64.90440157546118],[-166.43146431464314,64.92128734816],[-166.4710647106471,64.9297302345094],[-166.50346503465033,64.95168173901789],[-166.52866528665285,64.95337031628776],[-166.51426514265142,64.93817312085883],[-166.4458644586446,64.89933584365153],[-166.46746467464675,64.90777873000093],[-166.52506525065252,64.93648454358893],[-166.5790657906579,64.95337031628776],[-166.68346683466834,64.98207612987576],[-166.70146701467016,64.99389617076494],[-166.69426694266943,65.00740478892402],[-166.6870668706687,65.02260198435297],[-166.71226712267122,65.04455348886142],[-166.74826748267483,65.06143926156025],[-166.82746827468276,65.08339076606873],[-166.8778687786878,65.10196511603743],[-166.96066960669606,65.15431101140382],[-166.9570695706957,65.17795109318217],[-166.9390693906939,65.22016552492923],[-166.92826928269284,65.24211702943771],[-166.91026910269102,65.26406853394619],[-166.8958689586896,65.27588857483536],[-166.88146881468813,65.28264288391489],[-166.85266852668528,65.27757715210524],[-166.86346863468634,65.26744568848596],[-166.88866888668886,65.23873987489796],[-166.90666906669065,65.22016552492923],[-166.91746917469175,65.20159117496053],[-166.93186931869317,65.16950820683275],[-166.91746917469175,65.15431101140382],[-166.90306903069032,65.15093385686404],[-166.88866888668886,65.15093385686404],[-166.8778687786878,65.14924527959417],[-166.84546845468455,65.13573666143509],[-166.75546755467553,65.11547373419651],[-166.71226712267122,65.11378515692664],[-166.65826658266582,65.12560519781582],[-166.61146611466114,65.12222804327604],[-166.5790657906579,65.13067092962547],[-166.5610656106561,65.13067092962547],[-166.54666546665467,65.13742523870499],[-166.5430654306543,65.13742523870499],[-166.53946539465394,65.13573666143509],[-166.53586535865358,65.13742523870499],[-166.53226532265322,65.14080239324474],[-166.53586535865358,65.14924527959417],[-166.53586535865358,65.15093385686404],[-166.48546485464854,65.17288536137252],[-166.46746467464675,65.18977113407135],[-166.47466474664748,65.21003406130993],[-166.4890648906489,65.23367414308831],[-166.46746467464675,65.24380560670758],[-166.40266402664025,65.25393707032688],[-166.3918639186392,65.26069137940641],[-166.3810638106381,65.26744568848596],[-166.37026370263703,65.27251142029559],[-166.35586355863558,65.27588857483536],[-166.34146341463415,65.26744568848596],[-166.32346323463236,65.25562564759676],[-166.25146251462513,65.25731422486666],[-166.12546125461256,65.23367414308831],[-166.08946089460895,65.23029698854853],[-166.0570605706057,65.23367414308831],[-166.03186031860318,65.24380560670758],[-166.07506075060752,65.26406853394619],[-166.139861398614,65.28602003845467],[-166.22626226262264,65.30121723388362],[-166.3090630906309,65.3113486975029],[-166.34866348663488,65.30966012023302],[-166.3738637386374,65.30459438842337],[-166.4350643506435,65.31810300658242],[-166.50346503465033,65.33667735655115],[-166.64746647466475,65.35187455198007],[-166.9390693906939,65.38564609737773],[-166.92466924669247,65.3788917882982],[-166.91386913869138,65.3704489019488],[-166.87066870668707,65.3603174383295],[-166.8130681306813,65.35356312924998],[-166.72666726667268,65.3417430883608],[-166.65106651066512,65.32654589293185],[-166.76626766267663,65.33498877928125],[-166.86346863468634,65.35187455198007],[-167.00027000270003,65.3788917882982],[-167.18387183871837,65.39240040645728],[-167.39987399874,65.40084329280668],[-167.60507605076052,65.45318918817304],[-167.64467644676446,65.47514069268152],[-167.7238772387724,65.50384650626953],[-167.82467824678247,65.52410943350813],[-167.8858788587886,65.54774951528648],[-168.03348033480336,65.57307817433471],[-168.05148051480515,65.57983248341426],[-168.05868058680588,65.58489821522389],[-168.08028080280803,65.59165252430344],[-168.0910809108091,65.59671825611306],[-168.09468094680946,65.60347256519262],[-168.1018810188102,65.61866976062154],[-168.10548105481055,65.6237354924312],[-168.1270812708127,65.6423098423999],[-168.13068130681307,65.64906415147945],[-168.13068130681307,65.6524413060192],[-168.1378813788138,65.66426134690838],[-168.13428134281344,65.66932707871803],[-168.1270812708127,65.6727042332578],[-168.12348123481235,65.67608138779755],[-168.11628116281162,65.68621285141685],[-168.0730807308073,65.70647577865546],[-167.97947979479795,65.73349301497359],[-167.92547925479255,65.74869021040251],[-167.88227882278824,65.75544451948204],[-167.86787867878678,65.74869021040251],[-167.87867878678787,65.73855874678321],[-167.8930789307893,65.73349301497359],[-167.9110791107911,65.73011586043381],[-167.93987939879398,65.71660724227476],[-167.99027990279902,65.70985293319521],[-168.02628026280263,65.69634431503616],[-168.0550805508055,65.67776996506745],[-168.0622806228062,65.65075272874932],[-168.04068040680406,65.63555553332037],[-168.0010800108001,65.6423098423999],[-167.92547925479255,65.66426134690838],[-167.89667896678966,65.67101565598793],[-167.85707857078572,65.6828356968771],[-167.82467824678247,65.70141004684581],[-167.8210782107821,65.71998439681451],[-167.579875798758,65.71998439681451],[-167.52947529475296,65.72673870589404],[-167.50067500675007,65.74024732405312],[-167.4970749707497,65.76557598310134],[-167.5258752587526,65.77401886945077],[-167.55827558275584,65.77908460126042],[-167.57627576275763,65.79259321941947],[-167.56187561875618,65.8094789921183],[-167.5258752587526,65.81285614665805],[-167.4538745387454,65.8094789921183],[-167.46827468274682,65.81623330119783],[-167.48627486274862,65.82129903300748],[-167.50427504275044,65.82298761027735],[-167.52227522275223,65.82298761027735],[-167.52227522275223,65.82974191935688],[-167.3458734587346,65.89897358742209],[-167.28827288272882,65.90572789650162],[-167.28107281072812,65.89390785561244],[-167.25947259472593,65.88377639199314],[-167.21267212672126,65.86351346475453],[-167.18387183871837,65.85844773294491],[-167.15147151471515,65.86013631021478],[-167.06147061470614,65.87702208291361],[-166.98586985869858,65.90910505104137],[-166.89226892268923,65.92936797827997],[-166.8778687786878,65.9462537509788],[-166.97146971469715,65.9749595645668],[-166.92826928269284,65.99184533726563],[-166.8958689586896,65.99522249180541],[-166.85266852668528,66.00873110996446],[-166.83466834668346,66.01548541904398],[-166.8490684906849,66.00873110996446],[-166.85986859868598,66.00535395542468],[-166.87066870668707,65.99859964634516],[-166.8778687786878,65.98846818272585],[-166.8562685626856,65.98677960545598],[-166.81666816668167,65.98171387364633],[-166.7950679506795,65.98846818272585],[-166.79866798667987,65.99184533726563],[-166.80946809468094,66.0036653781548],[-166.81666816668167,66.00704253269458],[-166.80226802268024,66.01210826450423],[-166.7590675906759,66.04250265536211],[-166.72666726667268,66.06107700533082],[-166.53586535865358,66.12017720977673],[-166.46026460264602,66.12862009612613],[-166.40986409864098,66.14719444609483],[-166.35586355863558,66.15732590971413],[-166.31266312663126,66.17590025968283],[-166.28746287462874,66.17927741422261],[-166.18666186661866,66.17421168241296],[-166.139861398614,66.16745737333343],[-166.08946089460895,66.15226017790448],[-166.10746107461074,66.15226017790448],[-166.14346143461435,66.15732590971413],[-166.1650616506165,66.15226017790448],[-166.0930609306093,66.12524294158635],[-165.75465754657546,66.10498001434777],[-165.4990549905499,66.15226017790448],[-165.5170551705517,66.16576879606356],[-165.54225542255423,66.17421168241296],[-165.61065610656107,66.18265456876239],[-165.71145711457115,66.21304895962027],[-165.76545765457655,66.21980326869979],[-165.8482584825848,66.21980326869979],[-165.87345873458736,66.22486900050944],[-165.89145891458915,66.24175477320827],[-165.87345873458736,66.26370627771675],[-165.83745837458375,66.28903493676498],[-165.76545765457655,66.32280648216263],[-165.48825488254883,66.40216961384712],[-165.36225362253623,66.41905538654595],[-165.3370533705337,66.42918685016525],[-165.30465304653046,66.43762973651465],[-165.10665106651066,66.44607262286408],[-165.07425074250742,66.44100689105443],[-165.07785077850778,66.43594115924478],[-165.07785077850778,66.432564004705],[-165.07785077850778,66.42918685016525],[-165.08145081450814,66.42580969562547],[-165.07425074250742,66.4156782320062],[-165.06345063450635,66.40723534565677],[-165.0490504905049,66.40216961384712],[-165.03465034650347,66.39879245930737],[-165.02745027450274,66.42243254108573],[-165.00585005850058,66.43087542743513],[-164.98064980649806,66.4342525819749],[-164.9590495904959,66.44100689105443],[-164.95544955449554,66.4443840455942],[-164.95184951849518,66.45958124102313],[-164.94464944649445,66.46633555010266],[-164.93024930249302,66.4714012819123],[-164.89784897848978,66.47815559099183],[-164.73224732247323,66.5321900636281],[-164.71784717847177,66.55583014540645],[-164.52344523445234,66.58284738172458],[-164.2750427504275,66.60311030896315],[-163.9870398703987,66.61155319531258],[-163.7350373503735,66.60311030896315],[-163.67743677436775,66.59297884534388],[-163.6270362703627,66.56933876356553],[-163.9078390783908,66.58453595899445],[-163.92943929439295,66.58622453626433],[-163.92223922239222,66.57271591810527],[-163.88263882638827,66.56933876356553],[-163.8070380703807,66.56933876356553],[-163.78543785437853,66.5608958772161],[-163.7710377103771,66.54569868178714],[-163.76383763837637,66.52543575454857],[-163.76023760237604,66.50517282730996],[-163.76743767437674,66.48490990007139],[-163.78543785437853,66.4714012819123],[-163.86463864638645,66.43594115924478],[-163.86823868238682,66.42918685016525],[-163.87183871838718,66.42074396381582],[-163.8790387903879,66.41061250019655],[-163.88983889838897,66.403858191117],[-163.8970389703897,66.39879245930737],[-163.8862388623886,66.38021810933864],[-163.88983889838897,66.36670949117959],[-163.89343893438934,66.35488945029041],[-163.8970389703897,66.33800367759159],[-163.86823868238682,66.30929786400358],[-163.87183871838718,66.30760928673368],[-163.86823868238682,66.30254355492406],[-163.86463864638645,66.2957892458445],[-163.8538385383854,66.28903493676498],[-163.87543875438755,66.26539485498662],[-163.91863918639186,66.24682050501792],[-163.96543965439653,66.23331188685884],[-163.99783997839978,66.22655757777932],[-164.05544055440555,66.22655757777932],[-164.0770407704077,66.22318042323957],[-164.09864098640986,66.20967180508049],[-164.12024120241202,66.20460607327084],[-164.17424174241742,66.20798322781062],[-164.1922419224192,66.19278603238166],[-164.0338403384034,66.19278603238166],[-163.9870398703987,66.20629465054074],[-163.99063990639905,66.18940887784191],[-163.97623976239763,66.18434314603226],[-163.95823958239583,66.18772030057201],[-163.9510395103951,66.19616318692144],[-163.94743947439474,66.20798322781062],[-163.9330393303933,66.21304895962027],[-163.91863918639186,66.21136038235039],[-163.90423904239043,66.20629465054074],[-163.88983889838897,66.16745737333343],[-163.8538385383854,66.13368582793578],[-163.8070380703807,66.10666859161765],[-163.76023760237604,66.08978281891882],[-163.6810368103681,66.07796277802964],[-163.35343353433535,66.09822570526825],[-163.3390333903339,66.0931599734586],[-163.3030330303303,66.07965135529952],[-163.2850328503285,66.07627420075977],[-163.1230312303123,66.07120846895012],[-163.04023040230402,66.07965135529952],[-163.00063000630007,66.08809424164895],[-162.96462964629646,66.101602859808],[-162.94662946629467,66.1032914370779],[-162.86382863828638,66.09822570526825],[-162.78462784627845,66.10498001434777],[-162.75942759427593,66.1117343234273],[-162.7630276302763,66.1032914370779],[-162.7090270902709,66.08471708710917],[-162.68382683826837,66.06951989168024],[-162.680226802268,66.05263411898142],[-162.68382683826837,66.04756838717176],[-162.6910269102691,66.04081407809224],[-162.6910269102691,66.03237119174281],[-162.6910269102691,66.02223972812351],[-162.68382683826837,66.00873110996446],[-162.67662676626767,66.00704253269458],[-162.66942669426695,66.01041968723433],[-162.66222662226622,66.01548541904398],[-162.66222662226622,66.02055115085363],[-162.66222662226622,66.03068261447294],[-162.65502655026552,66.03912550082234],[-162.6370263702637,66.04250265536211],[-162.55062550625507,66.05094554171151],[-162.50742507425073,66.06107700533082],[-162.48942489424894,66.06276558260069],[-162.4822248222482,66.06445415987059],[-162.4750247502475,66.06951989168024],[-162.46782467824679,66.07120846895012],[-162.46062460624606,66.06614273714047],[-162.449824498245,66.05601127352116],[-162.44622446224463,66.05094554171151],[-162.4390243902439,66.04925696444164],[-162.4282242822428,66.04756838717176],[-162.39942399423995,66.03912550082234],[-162.38862388623886,66.03574834628259],[-162.34542345423455,66.03574834628259],[-162.30582305823057,66.04250265536211],[-162.20862208622086,66.07120846895012],[-162.17982179821797,66.07627420075977],[-161.9170191701917,66.04250265536211],[-161.9350193501935,66.04081407809224],[-161.94941949419496,66.03405976901269],[-161.9782197821978,66.01548541904398],[-161.96021960219602,66.01379684177411],[-161.9242192421924,66.02561688266329],[-161.90981909819098,66.02223972812351],[-161.89901899018992,66.01210826450423],[-161.89901899018992,66.0036653781548],[-161.90981909819098,65.99522249180541],[-161.9242192421924,65.98846818272585],[-161.89541895418955,65.98002529637645],[-161.85941859418594,65.97664814183668],[-161.819818198182,65.98002529637645],[-161.7910179101791,65.98846818272585],[-161.7910179101791,65.9935339145355],[-161.84861848618488,66.00704253269458],[-161.83421834218342,66.02392830539341],[-161.81621816218163,66.03912550082234],[-161.79821798217984,66.05263411898142],[-161.78021780217802,66.06276558260069],[-161.7478174781748,66.07120846895012],[-161.72981729817297,66.07796277802964],[-161.7262172621726,66.08640566437907],[-161.7370173701737,66.08809424164895],[-161.78381783817838,66.07627420075977],[-161.78381783817838,66.0830285098393],[-161.76221762217622,66.0914713961887],[-161.68661686616866,66.13875155974543],[-161.6650166501665,66.15394875517435],[-161.65781657816578,66.16239164152378],[-161.64701647016471,66.18434314603226],[-161.639816398164,66.19447460965156],[-161.62541625416253,66.19954034146119],[-161.61821618216183,66.20460607327084],[-161.58941589415895,66.2383776186685],[-161.58581585815858,66.25019765955767],[-161.57861578615785,66.25526339136732],[-161.57141571415713,66.2586405459071],[-161.54981549815497,66.26201770044685],[-161.50661506615066,66.27890347314568],[-161.3590135901359,66.27552631860593],[-161.36261362613627,66.27214916406615],[-161.37341373413733,66.26201770044685],[-161.31941319413193,66.23331188685884],[-161.29781297812977,66.22655757777932],[-161.23661236612367,66.22318042323957],[-161.17541175411753,66.22655757777932],[-161.12861128611286,66.24513192774805],[-161.1070110701107,66.25019765955767],[-161.08541085410855,66.24175477320827],[-161.08541085410855,66.23162330958897],[-161.0890108901089,66.21811469142992],[-161.09981099810997,66.20798322781062],[-161.11421114211143,66.20629465054074],[-161.11061110611107,66.19785176419131],[-161.1070110701107,66.18940887784191],[-161.09981099810997,66.18096599149249],[-161.09261092610927,66.17252310514309],[-161.10341103411034,66.16576879606356],[-161.11061110611107,66.15732590971413],[-161.11421114211143,66.14888302336473],[-161.1070110701107,66.13875155974543],[-161.1250112501125,66.1319972506659],[-161.1430114301143,66.130308673396],[-161.18261182611826,66.1319972506659],[-161.18261182611826,66.12355436431648],[-161.1610116101161,66.11848863250682],[-161.13941139411395,66.11680005523695],[-161.11421114211143,66.12017720977673],[-161.09261092610927,66.12355436431648],[-161.07821078210782,66.130308673396],[-161.06741067410672,66.13875155974543],[-161.0530105301053,66.159014486984],[-161.0242102421024,66.18434314603226],[-161.01701017010168,66.19278603238166],[-161.00621006210062,66.23162330958897],[-160.99540995409953,66.24175477320827],[-161.01341013410135,66.26201770044685],[-161.05661056610566,66.28565778222523],[-161.07461074610745,66.29916640038428],[-161.09261092610927,66.31942932762288],[-161.11421114211143,66.33293794578194],[-161.13581135811359,66.34306940940124],[-161.26181261812619,66.36839806844947],[-161.30861308613086,66.37346380025912],[-161.34461344613447,66.38359526387842],[-161.3590135901359,66.3852838411483],[-161.42381423814237,66.38359526387842],[-161.51021510215102,66.40723534565677],[-161.74421744217443,66.4055467683869],[-161.75861758617586,66.40216961384712],[-161.7910179101791,66.3852838411483],[-161.81261812618126,66.38021810933864],[-161.87381873818737,66.3768409547989],[-161.90261902619025,66.36502091390972],[-161.92061920619207,66.34475798667111],[-161.91341913419134,66.32618363670241],[-161.8810188101881,66.32280648216263],[-161.8918189181892,66.31605217308311],[-161.88821888218882,66.30929786400358],[-161.87381873818737,66.30423213219393],[-161.86661866618667,66.2957892458445],[-161.87021870218703,66.28059205041558],[-161.8810188101881,66.27214916406615],[-161.89541895418955,66.27046058679628],[-161.91341913419134,66.27890347314568],[-161.92061920619207,66.2873463594951],[-161.9242192421924,66.2974778231144],[-161.92781927819277,66.30929786400358],[-161.93141931419314,66.31942932762288],[-161.9350193501935,66.32787221397228],[-161.9458194581946,66.33124936851206],[-161.9530195301953,66.33631510032171],[-161.95661956619566,66.34982371848076],[-161.94941949419496,66.36670949117959],[-161.89901899018992,66.40892392292665],[-161.88821888218882,66.42243254108573],[-161.87741877418773,66.43931831378455],[-161.87021870218703,66.45958124102313],[-161.86661866618667,66.48153274553161],[-161.88821888218882,66.5237471772787],[-161.93141931419314,66.55583014540645],[-162.0790207902079,66.62337323620176],[-162.16182161821618,66.68247344064764],[-162.20862208622086,66.7078020996959],[-162.26622266222662,66.72299929512485],[-162.4390243902439,66.73144218147425],[-162.47142471424715,66.73819649055378],[-162.48582485824858,66.74326222236343],[-162.49662496624967,66.7466393769032],[-162.5038250382504,66.75001653144295],[-162.51462514625146,66.75845941779238],[-162.5218252182522,66.76690230414178],[-162.5218252182522,66.78041092230086],[-162.52542525425255,66.79054238592013],[-162.53982539825398,66.80405100407921],[-162.5758257582576,66.83106824039734],[-162.58662586625866,66.8445768585564],[-162.60462604626048,66.84119970401662],[-162.62622626226263,66.86146263125522],[-162.64062640626406,66.88679129030345],[-162.6370263702637,66.90029990846253],[-162.59382593825939,66.91549710389145],[-162.5758257582576,66.91887425843123],[-162.51822518225183,66.9205628357011],[-162.51462514625146,66.92393999024088],[-162.51462514625146,66.92731714478063],[-162.50742507425073,66.93913718566984],[-162.5038250382504,66.94758007201924],[-162.49662496624967,66.95602295836866],[-162.48582485824858,66.96108869017829],[-162.47142471424715,66.95771153563854],[-162.46422464224642,66.94926864928911],[-162.44622446224463,66.93069429932041],[-162.41742417424175,66.92225141297101],[-162.3850238502385,66.93407145386018],[-162.35262352623528,66.95264580382889],[-162.32742327423273,66.96108869017829],[-162.30582305823057,66.95264580382889],[-162.28422284222842,66.93744860839993],[-162.21222212222122,66.86990551760462],[-162.12222122221223,66.80573958134909],[-162.09342093420935,66.79391954045991],[-162.03222032220322,66.78547665411051],[-162.0178201782018,66.78041092230086],[-162.01422014220142,66.77196803595143],[-162.05382053820537,66.73481933601403],[-162.07542075420753,66.70611352242602],[-162.08262082620826,66.68753917245729],[-162.0790207902079,66.66558766794881],[-162.06462064620646,66.65376762705964],[-162.01422014220142,66.63350469982106],[-161.99621996219963,66.62168465893188],[-161.9170191701917,66.55751872267632],[-161.87021870218703,66.5321900636281],[-161.63261632616326,66.45789266375326],[-161.60741607416074,66.45451550921348],[-161.43461434614346,66.46802412737256],[-161.3878138781388,66.48153274553161],[-161.35541355413554,66.48490990007139],[-161.33741337413375,66.48828705461113],[-161.3410134101341,66.49504136369066],[-161.31221312213123,66.50010709550031],[-161.26181261812619,66.52881290908832],[-161.23661236612367,66.53556721816787],[-161.20421204212042,66.53894437270762],[-161.19341193411935,66.53556721816787],[-161.15381153811538,66.50348425004009],[-161.1430114301143,66.49841851823044],[-161.06021060210603,66.48659847734126],[-161.0350103501035,66.47477843645208],[-160.98460984609846,66.44100689105443],[-160.7830078300783,66.37515237752899],[-160.7650076500765,66.37008664571934],[-160.70380703807038,66.3768409547989],[-160.61740617406173,66.37177522298924],[-160.45180451804518,66.39372672749772],[-160.25020250202502,66.40216961384712],[-160.22860228602286,66.41230107746642],[-160.21780217802177,66.432564004705],[-160.2142021420214,66.44944977740383],[-160.22140221402213,66.49335278642079],[-160.21780217802177,66.5321900636281],[-160.25020250202502,66.5608958772161],[-160.32580325803258,66.60479888623306],[-160.32220322203221,66.60648746350293],[-160.31140311403115,66.6098646180427],[-160.30420304203042,66.61155319531258],[-160.31860318603185,66.63350469982106],[-160.30060300603006,66.64025900890059],[-160.2682026820268,66.64025900890059],[-160.2430024300243,66.64532474071024],[-160.27540275402754,66.65376762705964],[-160.31860318603185,66.65545620432954],[-160.35460354603546,66.64532474071024],[-160.36540365403653,66.6183075043921],[-160.39780397803978,66.63012754528128],[-160.44100441004412,66.63519327709093],[-160.48420484204843,66.63519327709093],[-160.5130051300513,66.62168465893188],[-160.520205202052,66.6098646180427],[-160.52740527405274,66.5997331544234],[-160.53460534605347,66.59297884534388],[-160.55260552605526,66.59129026807398],[-160.63540635406355,66.59804457715353],[-160.69660696606965,66.61324177258246],[-160.8118081180812,66.66221051340906],[-160.88020880208802,66.67234197702837],[-161.06021060210603,66.65207904978976],[-161.13581135811359,66.65207904978976],[-161.17181171811717,66.64363616344036],[-161.20421204212042,66.62506181347163],[-161.20421204212042,66.62168465893188],[-161.20061200612005,66.6081760407728],[-161.20421204212042,66.60479888623306],[-161.21141211412115,66.60142173169328],[-161.2330123301233,66.5997331544234],[-161.23661236612367,66.59804457715353],[-161.24021240212403,66.58791311353423],[-161.23661236612367,66.5794702271848],[-161.23661236612367,66.5710273408354],[-161.24021240212403,66.55920729994622],[-161.27261272612725,66.5423215272474],[-161.31221312213123,66.53556721816787],[-161.39501395013951,66.53556721816787],[-161.4310143101431,66.5423215272474],[-161.44541445414455,66.54401010451727],[-161.48141481414814,66.53387864089797],[-161.4958149581496,66.53725579543774],[-161.51741517415175,66.5507644135968],[-161.56421564215643,66.56596160902575],[-161.56421564215643,66.57778164991493],[-161.54621546215463,66.59804457715353],[-161.59661596615967,66.60142173169328],[-161.65061650616505,66.61324177258246],[-161.86661866618667,66.70611352242602],[-161.90261902619025,66.73481933601403],[-161.87021870218703,66.75339368598273],[-161.86661866618667,66.75845941779238],[-161.87021870218703,66.76859088141168],[-161.8810188101881,66.79054238592013],[-161.88461884618846,66.80911673588886],[-161.8810188101881,66.81418246769852],[-161.8522185221852,66.81924819950814],[-161.819818198182,66.83782254947687],[-161.80181801818017,66.8530197449058],[-161.80181801818017,66.86652836306487],[-161.8090180901809,66.88003698122392],[-161.80541805418054,66.90029990846253],[-161.78741787417874,66.91380852662158],[-161.73341733417334,66.92225141297101],[-161.71541715417155,66.93913718566984],[-161.72261722617225,66.94251434020958],[-161.7262172621726,66.94589149474936],[-161.7262172621726,66.94926864928911],[-161.72981729817297,66.95433438109876],[-161.66141661416614,66.96277726744819],[-161.6290162901629,66.96446584471806],[-161.5570155701557,66.95771153563854],[-161.51741517415175,66.96108869017829],[-161.49941499414993,66.97122015379759],[-161.52461524615245,66.9914830810362],[-161.54621546215463,66.99486023557594],[-161.58941589415895,66.99317165830607],[-161.60381603816037,66.99823739011572],[-161.61461614616147,67.00836885373502],[-161.63261632616326,67.01512316281455],[-161.68661686616866,67.0286317809736],[-161.69741697416976,67.0286317809736],[-161.70461704617045,67.02694320370372],[-161.70821708217082,67.02187747189407],[-161.71181711817118,67.01681174008442],[-161.71181711817118,67.01512316281455],[-161.7262172621726,67.01512316281455],[-161.74061740617407,67.01681174008442],[-161.7550175501755,67.02356604916395],[-161.76941769417695,67.03369751278325],[-161.79461794617947,67.0488947082122],[-161.83421834218342,67.05564901729173],[-161.9890198901989,67.0488947082122],[-162.24822248222483,67.01512316281455],[-162.2590225902259,67.0201888946242],[-162.2590225902259,67.03369751278325],[-162.25542255422553,67.04551755367243],[-162.25542255422553,67.05227186275195],[-162.26622266222662,67.06240332637125],[-162.2770227702277,67.0674690581809],[-162.28782287822878,67.07084621272068],[-162.30582305823057,67.07084621272068],[-162.29862298622987,67.05058328548208],[-162.30582305823057,67.04045182186277],[-162.3130231302313,67.0303203582435],[-162.29142291422914,67.00836885373502],[-162.3130231302313,67.00330312192537],[-162.3670236702367,67.00836885373502],[-162.43542435424354,66.9914830810362],[-162.4570245702457,66.99486023557594],[-162.46782467824679,67.0016145446555],[-162.46782467824679,67.0100574310049],[-162.4282242822428,67.0573375945616],[-162.42462424624247,67.06409190364116],[-162.40662406624065,67.07084621272068],[-162.3850238502385,67.09110913995926],[-162.3562235622356,67.13163499443644],[-162.33822338223382,67.14514361259552],[-162.33462334623346,67.15020934440517],[-162.34182341823418,67.16034080802444],[-162.35982359823598,67.167095117104],[-162.38862388623886,67.16878369437387],[-162.41742417424175,67.1654065398341],[-162.43542435424354,67.16034080802444],[-162.39942399423995,67.16034080802444],[-162.3850238502385,67.15358649894492],[-162.37422374223743,67.13838930351599],[-162.39222392223922,67.13332357170634],[-162.48582485824858,67.06071474910138],[-162.55782557825577,67.0201888946242],[-162.57942579425793,67.01512316281455],[-162.66222662226622,67.01681174008442],[-162.67662676626767,67.01850031735432],[-162.6910269102691,67.02187747189407],[-162.68742687426874,67.02525462643385],[-162.68742687426874,67.0286317809736],[-162.68742687426874,67.03200893551337],[-162.68382683826837,67.03707466732303],[-162.7342273422734,67.0488947082122],[-162.8890288902889,67.04214039913268],[-162.93942939429394,67.0488947082122],[-162.95022950229503,67.04382897640255],[-162.93582935829357,67.0286317809736],[-162.91782917829178,67.0201888946242],[-162.8710287102871,67.01512316281455],[-162.84942849428495,67.00836885373502],[-162.87462874628747,67.00499169919524],[-163.07263072630727,67.03538609005312],[-163.1410314103141,67.0573375945616],[-163.4038340383404,67.07591194453033],[-163.43263432634325,67.08435483087973],[-163.6882368823688,67.10292918084843],[-163.72423724237242,67.11137206719786],[-163.76383763837637,67.14007788078587],[-163.77463774637746,67.18060373526305],[-163.77463774637746,67.22619532154988],[-163.78543785437853,67.27009833056684],[-163.79263792637926,67.28867268053554],[-163.81063810638108,67.33595284409225],[-163.8250382503825,67.35452719406098],[-163.9618396183962,67.498056262001],[-164.04824048240482,67.56391077552641],[-164.15264152641527,67.61963382543254],[-164.44424444244441,67.70912842073633],[-164.53064530645307,67.75134285248339],[-164.5990459904599,67.77498293426177],[-164.69264692646925,67.82395167508835],[-164.7250472504725,67.83408313870765],[-164.7682476824768,67.83746029324743],[-164.77184771847718,67.83746029324743],[-164.76464764647648,67.82395167508835],[-164.74664746647466,67.81719736600883],[-164.73224732247323,67.81213163419918],[-164.71784717847177,67.80368874784978],[-164.74664746647466,67.8104430569293],[-164.80064800648006,67.8391488705173],[-164.85464854648546,67.84928033413661],[-165.05265052650526,67.93370919763072],[-165.23265232652327,67.99787513388628],[-165.4378543785438,68.06035249287194],[-165.62145621456216,68.0924354609997],[-165.76905769057691,68.10763265642865],[-165.92745927459274,68.13633847001665],[-165.99225992259923,68.16673286087453],[-166.02826028260282,68.19375009719266],[-166.0678606786068,68.21739017897102],[-166.07866078660786,68.22583306532044],[-166.10386103861038,68.2393416834795],[-166.20466204662046,68.26298176525785],[-166.29826298262984,68.30013046519528],[-166.6438664386644,68.34403347421224],[-166.79146791467915,68.33896774240259],[-166.8238682386824,68.35078778329176],[-166.82746827468276,68.35078778329176],[-166.8130681306813,68.35923066964116],[-166.5970659706597,68.40819941046777],[-166.5070650706507,68.42339660589673],[-166.4458644586446,68.42001945135695],[-166.51426514265142,68.4149537195473],[-166.71946719467195,68.37273928780024],[-166.74826748267483,68.36260782418094],[-166.66546665466655,68.35078778329176],[-166.54666546665467,68.35923066964116],[-166.4530645306453,68.39806794684847],[-166.4278642786428,68.3963793695786],[-166.37746377463776,68.3862479059593],[-166.38466384663846,68.3963793695786],[-166.40986409864098,68.404822255928],[-166.42426424264244,68.41326514227742],[-166.33786337863378,68.39975652411835],[-166.31626316263163,68.4065108331979],[-166.33426334263342,68.41326514227742],[-166.3522635226352,68.43690522405578],[-166.37026370263703,68.44028237859555],[-166.33066330663306,68.46729961491366],[-166.31626316263163,68.48080823307274],[-166.30186301863017,68.50275973758121],[-166.30546305463054,68.52133408754992],[-166.28746287462874,68.53821986024874],[-166.25866258662586,68.5517284784078],[-166.24066240662407,68.56354851929697],[-166.22986229862298,68.5804342919958],[-166.23346233462334,68.58718860107533],[-166.2370623706237,68.59394291015488],[-166.24066240662407,68.60576295104406],[-166.2370623706237,68.61589441466333],[-166.2190621906219,68.64628880552124],[-166.22986229862298,68.65473169187064],[-166.22986229862298,68.66148600095016],[-166.2190621906219,68.66655173275981],[-166.21186211862118,68.67330604183937],[-166.20826208262082,68.68681465999842],[-166.20466204662046,68.69694612361772],[-166.20466204662046,68.7188976281262],[-166.2010620106201,68.74084913263465],[-166.19746197461976,68.75942348260338],[-166.1938619386194,68.77968640984196],[-166.19746197461976,68.80332649162031],[-166.22626226262264,68.84891807790714],[-166.2370623706237,68.8742467369554],[-166.22266222662228,68.88606677784458],[-166.08586085860858,68.89113250965423],[-166.01026010260102,68.87255815968552],[-165.81225812258123,68.87931246876505],[-165.66465664656647,68.86073811879635],[-165.32265322653225,68.87593531422527],[-165.04545045450453,68.88100104603492],[-164.789847898479,68.91477259143258],[-164.3470434704347,68.92996978686153],[-164.2570425704257,68.94685555956036],[-164.17064170641706,68.95360986863989],[-164.09144091440913,68.97893852768811],[-163.96543965439653,69.00257860946647],[-163.93663936639365,69.01271007308577],[-163.87543875438755,69.03803873213403],[-163.82143821438214,69.0481701957533],[-163.62343623436234,69.11909044108839],[-163.2850328503285,69.31158824985502],[-163.26343263432634,69.32678544528395],[-163.1950319503195,69.41459146331786],[-163.1770317703177,69.42641150420704],[-163.15543155431556,69.42134577239739],[-163.23823238232382,69.32847402255385],[-163.27423274232743,69.3048339407755],[-163.27423274232743,69.29807963169594],[-163.24183241832418,69.3048339407755],[-163.15543155431556,69.35886841341173],[-163.16263162631626,69.36562272249125],[-163.1410314103141,69.37575418611056],[-163.12663126631267,69.3892628042696],[-163.11943119431194,69.40614857696843],[-163.13383133831337,69.42134577239739],[-163.1230312303123,69.42978865874682],[-163.11943119431194,69.43823154509622],[-163.1230312303123,69.44498585417574],[-163.1230312303123,69.45511731779504],[-163.11583115831158,69.46693735868422],[-163.10503105031052,69.47538024503365],[-163.10503105031052,69.48382313138305],[-163.11583115831158,69.49564317227222],[-163.08343083430833,69.50070890408188],[-163.0690306903069,69.52097183132048],[-163.0690306903069,69.54123475855906],[-163.0690306903069,69.55136622217836],[-163.06543065430654,69.55643195398801],[-163.0690306903069,69.56656341760731],[-163.07623076230763,69.57838345849649],[-163.07983079830797,69.58513776757601],[-163.09423094230942,69.59020349938567],[-163.14823148231483,69.60033496300497],[-163.14823148231483,69.60540069481459],[-163.0870308703087,69.60877784935437],[-163.05463054630548,69.6155321584339],[-163.0258302583026,69.6256636220532],[-163.03663036630365,69.63241793113272],[-163.06543065430654,69.6459265492918],[-163.0330303303033,69.66112374472073],[-163.04023040230402,69.66281232199063],[-163.06543065430654,69.6746323628798],[-163.04743047430475,69.68645240376898],[-162.98262982629825,69.68138667195933],[-162.95742957429573,69.68814098103886],[-162.93942939429394,69.71178106281721],[-162.95742957429573,69.72360110370639],[-162.99342993429934,69.72866683551604],[-163.0258302583026,69.72866683551604],[-163.01863018630186,69.74555260821487],[-163.00423004230043,69.75230691729439],[-162.98982989829898,69.75737264910404],[-162.9718297182972,69.76412695818357],[-162.9790297902979,69.77088126726312],[-162.95022950229503,69.7911441945017],[-162.79182791827918,69.85362155348736],[-162.75582755827557,69.87219590345606],[-162.71262712627126,69.88063878980549],[-162.66942669426695,69.90596744885372],[-162.59382593825939,69.94142757152127],[-162.53622536225362,69.9566247669502],[-162.5110251102511,69.9768876941888],[-162.48942489424894,70.00221635323703],[-162.47862478624785,70.02416785774551],[-162.4822248222482,70.03092216682504],[-162.48942489424894,70.05118509406364],[-162.46062460624606,70.05962798041304],[-162.35982359823598,70.05793940314317],[-162.36342363423634,70.06300513495282],[-162.37062370623707,70.07989090765165],[-162.37422374223743,70.0849566394613],[-162.34182341823418,70.09171094854082],[-162.35262352623528,70.10859672123965],[-162.32022320223203,70.12717107120835],[-162.24462244622447,70.15418830752648],[-162.2050220502205,70.16094261660601],[-162.1978219782198,70.16431977114578],[-162.19422194221943,70.17107408022531],[-162.19062190621906,70.17782838930484],[-162.1870218702187,70.18120554384461],[-162.17262172621727,70.18458269838436],[-162.12582125821257,70.20315704835309],[-162.10062100621008,70.22004282105192],[-162.05382053820537,70.24368290283027],[-162.01422014220142,70.27745444822793],[-162.00342003420033,70.28083160276768],[-161.95661956619566,70.30447168454603],[-161.90621906219062,70.32135745724486],[-161.8810188101881,70.32304603451476],[-161.8522185221852,70.31798030270511],[-161.85581855818558,70.31460314816533],[-161.85941859418594,70.30447168454603],[-161.84141841418415,70.30447168454603],[-161.83421834218342,70.30447168454603],[-161.83421834218342,70.2977173754665],[-161.84141841418415,70.2977173754665],[-161.85941859418594,70.29096306638698],[-161.72261722617225,70.27407729368815],[-161.70461704617045,70.26394583006885],[-161.73341733417334,70.2504372119098],[-161.85941859418594,70.2588800982592],[-161.90261902619025,70.25719152098932],[-161.86661866618667,70.24199432556037],[-161.7910179101791,70.2403057482905],[-161.75861758617586,70.2301742846712],[-161.78741787417874,70.22848570740132],[-161.83421834218342,70.22341997559167],[-161.85941859418594,70.21159993470249],[-161.84141841418415,70.19471416200366],[-161.86661866618667,70.17951696657471],[-161.89901899018992,70.17782838930484],[-162.0070200702007,70.19640273927354],[-162.0250202502025,70.19471416200366],[-162.03942039420394,70.19133700746391],[-162.06462064620646,70.17951696657471],[-162.0790207902079,70.17445123476509],[-162.12222122221223,70.16094261660601],[-162.12222122221223,70.15418830752648],[-161.8630186301863,70.16938550295544],[-161.84861848618488,70.17445123476509],[-161.81261812618126,70.19133700746391],[-161.78741787417874,70.19977989381331],[-161.70461704617045,70.19471416200366],[-161.7190171901719,70.20146847108319],[-161.72981729817297,70.20146847108319],[-161.7370173701737,70.20146847108319],[-161.72981729817297,70.21497708924227],[-161.71181711817118,70.22341997559167],[-161.6938169381694,70.22848570740132],[-161.67581675816757,70.2301742846712],[-161.6650166501665,70.2318628619411],[-161.6650166501665,70.23861717102062],[-161.66141661416614,70.24537148010015],[-161.65421654216541,70.2504372119098],[-161.64341643416435,70.25381436644955],[-161.63261632616326,70.25550294371945],[-161.3410134101341,70.2588800982592],[-161.21141211412115,70.27745444822793],[-161.06741067410672,70.31460314816533],[-161.0242102421024,70.31798030270511],[-161.0242102421024,70.31291457089546],[-161.03141031410314,70.31291457089546],[-161.03141031410314,70.30447168454603],[-161.00981009810098,70.30447168454603],[-160.94860948609485,70.29096306638698],[-160.95580955809558,70.30109453000628],[-160.97740977409774,70.31291457089546],[-160.98460984609846,70.32473461178463],[-160.95940959409594,70.33317749813403],[-160.86220862208623,70.34668611629311],[-160.6210062100621,70.42942640251735],[-160.59940599405994,70.44124644340653],[-160.66420664206643,70.434492134327],[-160.70740707407074,70.41929493889808],[-160.8118081180812,70.3872119707703],[-160.7722077220772,70.405786320739],[-160.68940689406895,70.434492134327],[-160.44820448204482,70.49021518423314],[-160.21780217802177,70.57970977953693],[-160.18900189001891,70.59659555223575],[-160.1710017100171,70.60503843858515],[-160.15660156601567,70.60672701585506],[-160.16740167401673,70.59659555223575],[-160.16020160201603,70.58815266588633],[-160.1422014220142,70.5813983568068],[-160.12780127801278,70.57970977953693],[-160.10260102601026,70.57802120226705],[-160.0378003780038,70.59321839769598],[-159.94779947799478,70.59659555223575],[-159.929799297993,70.59321839769598],[-159.92259922599226,70.5813983568068],[-159.929799297993,70.56788973864775],[-159.9369993699937,70.55775827502845],[-159.94779947799478,70.55100396594892],[-159.94779947799478,70.5442496568694],[-159.94059940599405,70.54593823413927],[-159.92259922599226,70.5442496568694],[-159.9441994419944,70.52229815236092],[-160.01260012600125,70.52060957509102],[-160.04140041400413,70.50710095693196],[-160.07380073800738,70.48852660696326],[-160.11340113401133,70.48008372061383],[-160.20340203402034,70.47670656607409],[-160.16740167401673,70.46657510245478],[-160.12420124201242,70.46657510245478],[-159.94779947799478,70.49528091604279],[-159.92259922599226,70.49021518423314],[-159.9369993699937,70.47670656607409],[-159.9729997299973,70.45644363883548],[-159.9909999099991,70.44124644340653],[-160.01260012600125,70.41085205254865],[-160.03060030600307,70.39903201165947],[-160.05220052200522,70.39396627984982],[-160.0558005580056,70.37539192988112],[-160.11340113401133,70.34330896175334],[-160.1350013500135,70.32473461178463],[-160.09540095400953,70.32135745724486],[-160.0090000900009,70.36188331172204],[-159.96939969399693,70.37370335261124],[-159.94779947799478,70.37032619807147],[-159.93339933399335,70.36188331172204],[-159.92259922599226,70.35006327083286],[-159.91539915399153,70.33148892086416],[-159.91539915399153,70.32980034359429],[-159.92259922599226,70.32811176632441],[-159.92619926199262,70.32473461178463],[-159.929799297993,70.31798030270511],[-159.92619926199262,70.31460314816533],[-159.9189991899919,70.31291457089546],[-159.91539915399153,70.31291457089546],[-159.91179911799117,70.30447168454603],[-159.90459904599047,70.29940595273641],[-159.90459904599047,70.29434022092676],[-159.90819908199083,70.28420875730745],[-159.8649986499865,70.27745444822793],[-159.83259832598327,70.25212578917967],[-159.80379803798039,70.22004282105192],[-159.77139771397714,70.19471416200366],[-159.77139771397714,70.22510855286154],[-159.7857978579786,70.23861717102062],[-159.81099810998109,70.24706005737002],[-159.83259832598327,70.26394583006885],[-159.83619836198363,70.27407729368815],[-159.83979839798397,70.28589733457733],[-159.83979839798397,70.3078488390858],[-159.84339843398433,70.31291457089546],[-159.85059850598506,70.31798030270511],[-159.85419854198543,70.32473461178463],[-159.85059850598506,70.33148892086416],[-159.84339843398433,70.33486607540394],[-159.83979839798397,70.34162038448346],[-159.84339843398433,70.35006327083286],[-159.87939879398795,70.37539192988112],[-159.88659886598867,70.3872119707703],[-159.88659886598867,70.39903201165947],[-159.8829988299883,70.4074748980089],[-159.87579875798758,70.4159177843583],[-159.87579875798758,70.4243606707077],[-159.8649986499865,70.4446235979463],[-159.8469984699847,70.45644363883548],[-159.8289982899829,70.47164083426443],[-159.82539825398254,70.49696949331266],[-159.81099810998109,70.50034664785244],[-159.80019800198002,70.49865807058256],[-159.72819728197283,70.47332941153431],[-159.710197101971,70.46995225699456],[-159.67059670596706,70.47332941153431],[-159.5949959499595,70.49190376150301],[-159.5409954099541,70.49865807058256],[-159.49419494194942,70.51554384328139],[-159.479794797948,70.51554384328139],[-159.4509945099451,70.50034664785244],[-159.4329943299433,70.49696949331266],[-159.41859418594186,70.50034664785244],[-159.36819368193682,70.51723242055127],[-159.3249932499325,70.52060957509102],[-159.30699306993068,70.52567530690067],[-159.29259292592926,70.53749534778984],[-159.42219422194222,70.52398672963079],[-159.53019530195303,70.53242961598019],[-159.5661956619566,70.53074103871032],[-159.56979569795698,70.52905246144044],[-159.56979569795698,70.52398672963079],[-159.57339573395734,70.51892099782114],[-159.57339573395734,70.51723242055127],[-159.58059580595807,70.51723242055127],[-159.6309963099631,70.51723242055127],[-159.64179641796417,70.51385526601149],[-159.6489964899649,70.50710095693196],[-159.66339663396633,70.50034664785244],[-159.68139681396815,70.49696949331266],[-159.71739717397173,70.49696949331266],[-159.7317973179732,70.50034664785244],[-159.74259742597425,70.50372380239219],[-159.7641976419764,70.51723242055127],[-159.82539825398254,70.5442496568694],[-159.84339843398433,70.55438112048867],[-159.85059850598506,70.5628240068381],[-159.85419854198543,70.5712668931875],[-159.8577985779858,70.57970977953693],[-159.86139861398613,70.58984124315623],[-159.8649986499865,70.59828412950563],[-159.87579875798758,70.60334986131528],[-159.88659886598867,70.60503843858515],[-159.94779947799478,70.63712140671294],[-160.00540005400055,70.64049856125268],[-160.06660066600665,70.62698994309363],[-160.12060120601205,70.60672701585506],[-160.12060120601205,70.6101041703948],[-160.12420124201242,70.61516990220446],[-160.12780127801278,70.62698994309363],[-160.09540095400953,70.64387571579246],[-159.91179911799117,70.70128734296847],[-159.88659886598867,70.70635307477812],[-159.83619836198363,70.708041652048],[-159.81099810998109,70.71479596112755],[-159.8469984699847,70.71479596112755],[-159.81459814598145,70.7283045792866],[-159.710197101971,70.77896189738308],[-159.6849968499685,70.79753624735179],[-159.6669966699667,70.80429055643131],[-159.64539645396454,70.80935628824096],[-159.5949959499595,70.81442202005061],[-159.54819548195482,70.82961921547957],[-159.51939519395194,70.8363735245591],[-159.41139411394113,70.84143925636874],[-159.38259382593827,70.8465049881784],[-159.34659346593466,70.86339076087722],[-159.15939159391593,70.88703084265558],[-159.2061920619206,70.86676791541697],[-159.31779317793178,70.86170218360732],[-159.37179371793718,70.8465049881784],[-159.17379173791738,70.85325929725792],[-159.15579155791556,70.8465049881784],[-159.14139141391414,70.82624206093979],[-159.1809918099181,70.81611059732049],[-159.31059310593105,70.81273344278074],[-159.41139411394113,70.78740478373248],[-159.44739447394474,70.78402762919274],[-159.44739447394474,70.77727332011321],[-159.39339393393934,70.76714185649391],[-159.37539375393754,70.76038754741438],[-159.35739357393572,70.76038754741438],[-159.33939339393393,70.76714185649391],[-159.32139321393214,70.76883043376378],[-159.30339303393035,70.7570103928746],[-159.31059310593105,70.75363323833483],[-159.31779317793178,70.7468789292553],[-159.3249932499325,70.74350177471555],[-159.29979299792998,70.72661600201673],[-159.24579245792458,70.70635307477812],[-159.22419224192242,70.6894673020793],[-159.2169921699217,70.69453303388894],[-159.2709927099271,70.74519035198543],[-159.27819278192783,70.765453279224],[-159.2349923499235,70.77051901103366],[-159.11979119791198,70.76376470195413],[-158.99018990189902,70.77727332011321],[-159.00459004590044,70.79753624735179],[-159.029790297903,70.80429055643131],[-159.08379083790837,70.80429055643131],[-159.0621906219062,70.81611059732049],[-158.71658716587166,70.79078193827226],[-158.33858338583386,70.81779917459039],[-158.43938439384394,70.82286490640004],[-158.49338493384934,70.83299637001932],[-158.52218522185223,70.85325929725792],[-158.47898478984789,70.85325929725792],[-158.3889838898389,70.8363735245591],[-158.04338043380434,70.8363735245591],[-157.86337863378634,70.86676791541697],[-157.67257672576727,70.9224909653231],[-157.62577625776257,70.93093385167253],[-157.59337593375935,70.94613104710146],[-157.5789757897579,70.94950820164124],[-157.55737557375573,70.95119677891111],[-157.22977229772297,71.07108576507278],[-157.08937089370895,71.15551462856692],[-157.02457024570245,71.20279479212363],[-156.8157681576816,71.30579800558647],[-156.68256682566826,71.3530781691432],[-156.59256592565924,71.36489821003238],[-156.5241652416524,71.3902268690806],[-156.4989649896499,71.40373548723969],[-156.470164701647,71.41217837358909],[-156.43416434164342,71.40711264177943],[-156.3981639816398,71.39360402362038],[-156.3729637296373,71.38009540546133],[-156.40176401764018,71.37671825092156],[-156.45936459364594,71.39529260089026],[-156.48816488164883,71.39360402362038],[-156.5529655296553,71.36489821003238],[-156.58896588965888,71.35814390095285],[-156.60336603366034,71.3530781691432],[-156.5709657096571,71.33619239644437],[-156.55656556565566,71.3243723555552],[-156.54936549365493,71.30917516012624],[-156.5349653496535,71.30073227377684],[-156.43416434164342,71.29228938742742],[-156.44856448564485,71.27709219199846],[-156.4449644496445,71.26864930564906],[-156.4269642696427,71.26527215110929],[-156.23616236162363,71.26864930564906],[-156.14256142561425,71.25682926475989],[-156.09576095760957,71.24332064660084],[-156.10656106561066,71.22643487390201],[-156.11016110161103,71.22305771936223],[-156.059760597606,71.22136914209236],[-156.04176041760417,71.2163034102827],[-156.05616056160562,71.20448336939353],[-156.11016110161103,71.18253186488505],[-156.11016110161103,71.17408897853562],[-156.07056070560705,71.1774661330754],[-156.03456034560347,71.18253186488505],[-155.99855998559985,71.19435190577423],[-155.96975969759697,71.21292625574293],[-155.9589595895959,71.21799198755258],[-155.94455944559445,71.21968056482245],[-155.93015930159302,71.2163034102827],[-155.92655926559266,71.2061719466634],[-155.91575915759157,71.1960404830441],[-155.8941589415894,71.19772906031397],[-155.8509585095851,71.20954910120318],[-155.80055800558006,71.20954910120318],[-155.62415624156242,71.18422044215492],[-155.59535595355953,71.17071182399587],[-155.57375573755738,71.15044889675727],[-155.55575555755559,71.12680881497892],[-155.55215552155522,71.10148015593069],[-155.56655566555665,71.08121722869208],[-155.59535595355953,71.0693971878029],[-155.63855638556385,71.06264287872338],[-155.6529565295653,71.05757714691373],[-155.67815678156782,71.0406913742149],[-155.68895688956889,71.03900279694503],[-155.71055710557107,71.03900279694503],[-155.71775717757177,71.03393706513538],[-155.72135721357213,71.02887133332572],[-155.72855728557286,71.01029698335702],[-155.7429574295743,71.00523125154737],[-155.76455764557645,71.00016551973772],[-155.8077580775808,70.99678836519794],[-155.81135811358115,70.99509978792807],[-155.8221582215822,70.98496832430877],[-155.82935829358294,70.98327974703889],[-156.07056070560705,70.97314828341959],[-156.09576095760957,70.96808255160994],[-156.1029610296103,70.96808255160994],[-156.07776077760778,70.96301681980029],[-156.05256052560526,70.96301681980029],[-156.02736027360274,70.95963966526054],[-156.00936009360095,70.94275389256171],[-156.0489604896049,70.92924527440263],[-156.1461614616146,70.93262242894241],[-156.1857618576186,70.9224909653231],[-156.15336153361534,70.91911381078333],[-156.08856088560884,70.92755669713276],[-156.05616056160562,70.9224909653231],[-156.0669606696067,70.91742523351346],[-156.09576095760957,70.90729376989415],[-156.0669606696067,70.90222803808453],[-156.00576005760058,70.90898234716406],[-155.98055980559806,70.8937851517351],[-155.9949599495995,70.88703084265558],[-155.98055980559806,70.87689937903627],[-155.95175951759518,70.8650793381471],[-155.9409594095941,70.85325929725792],[-155.95535955359554,70.8465049881784],[-155.96975969759697,70.84312783363862],[-155.98055980559806,70.8363735245591],[-155.98775987759876,70.82624206093979],[-155.98415984159843,70.81442202005061],[-155.97335973359733,70.80091340189156],[-155.9661596615966,70.79078193827226],[-155.96975969759697,70.77896189738308],[-155.9769597695977,70.76714185649391],[-155.9769597695977,70.76038754741438],[-155.9229592295923,70.76714185649391],[-155.90855908559087,70.77051901103366],[-155.89775897758977,70.78402762919274],[-155.91215912159123,70.79078193827226],[-155.9229592295923,70.79922482462166],[-155.92655926559266,70.81104486551084],[-155.91935919359193,70.82624206093979],[-155.89055890558905,70.8363735245591],[-155.8077580775808,70.83130779274944],[-155.77535775357754,70.8363735245591],[-155.75015750157502,70.84481641090849],[-155.72135721357213,70.8465049881784],[-155.69255692556925,70.84143925636874],[-155.66015660156603,70.82455348366992],[-155.64935649356494,70.82793063820966],[-155.64575645756457,70.8363735245591],[-155.64935649356494,70.83975067909887],[-155.65655656556567,70.84312783363862],[-155.66015660156603,70.84988214271814],[-155.66375663756637,70.86001360633745],[-155.66735667356673,70.86676791541697],[-155.64575645756457,70.86845649268687],[-155.60255602556026,70.8465049881784],[-155.57735577355774,70.8465049881784],[-155.54135541355413,70.86676791541697],[-155.5341553415534,70.87689937903627],[-155.5341553415534,70.8853422653857],[-155.53775537755376,70.9039166153544],[-155.5341553415534,70.92586811986288],[-155.53055530555307,70.94106531529181],[-155.5161551615516,70.95288535618099],[-155.46935469354693,70.95963966526054],[-155.40455404554046,70.99678836519794],[-155.390153901539,71.00354267427747],[-155.34335343353433,71.01029698335702],[-155.33255332553324,71.01536271516665],[-155.30735307353075,71.02887133332572],[-155.29655296552966,71.03224848786547],[-155.2749527495275,71.02549417878595],[-155.24255242552425,70.99678836519794],[-155.21735217352173,70.99003405611842],[-155.1921519215192,70.99509978792807],[-155.18135181351812,71.00691982881725],[-155.18495184951848,71.02380560151607],[-155.19575195751958,71.0406913742149],[-155.21735217352173,71.05588856964386],[-155.26775267752677,71.07277434234268],[-155.28935289352893,71.08628296050173],[-155.26775267752677,71.09979157866078],[-155.210152101521,71.12343166043914],[-155.18495184951848,71.12680881497892],[-155.16335163351633,71.12005450589939],[-155.12375123751238,71.08966011504148],[-155.09855098550986,71.08628296050173],[-155.10215102151022,71.10485731047044],[-155.10215102151022,71.12005450589939],[-155.1057510575106,71.13187454678857],[-155.12375123751238,71.14031743313797],[-155.10935109351092,71.15044889675727],[-155.09135091350913,71.15551462856692],[-155.06975069750698,71.15382605129705],[-155.05175051750518,71.14369458767774],[-155.04455044550446,71.13018596951869],[-155.04455044550446,71.12174308316926],[-155.05175051750518,71.11330019681986],[-155.05535055350555,71.09979157866078],[-155.05175051750518,71.08797153777161],[-155.0409504095041,71.06264287872338],[-155.0409504095041,71.05588856964386],[-155.05535055350555,71.04575710602455],[-155.08775087750877,71.0305599105956],[-155.09855098550986,71.01705129243655],[-155.0661506615066,71.0119855606269],[-155.03735037350373,71.01705129243655],[-155.0229502295023,71.03224848786547],[-155.0121501215012,71.06433145599325],[-155.0049500495005,71.08290580596196],[-155.00135001350014,71.09303726958126],[-155.0049500495005,71.10654588774031],[-155.0121501215012,71.11330019681986],[-155.0121501215012,71.11667735135961],[-154.9869498694987,71.12005450589939],[-154.97254972549726,71.12005450589939],[-154.91854918549186,71.11330019681986],[-154.90774907749076,71.10654588774031],[-154.89334893348934,71.09472584685113],[-154.87894878948788,71.08797153777161],[-154.8609486094861,71.09641442412104],[-154.83934839348393,71.10148015593069],[-154.80694806948068,71.09641442412104],[-154.77454774547746,71.08459438323186],[-154.72414724147242,71.05588856964386],[-154.63054630546304,71.03224848786547],[-154.6089460894609,71.0204284469763],[-154.6017460174602,71.01367413789677],[-154.59814598145982,71.00016551973772],[-154.6017460174602,70.99172263338829],[-154.61254612546125,70.98159116976899],[-154.62694626946268,70.97314828341959],[-154.6449464494645,70.96639397434006],[-154.64854648546486,70.95795108799064],[-154.64854648546486,70.94950820164124],[-154.65214652146523,70.94275389256171],[-154.6629466294663,70.92586811986288],[-154.66654666546665,70.92080238805323],[-154.68094680946808,70.9140480789737],[-154.71334713347133,70.90560519262428],[-154.7889478894789,70.89547372900498],[-154.81054810548105,70.88027653357605],[-154.6989469894699,70.88703084265558],[-154.67734677346772,70.87689937903627],[-154.66654666546665,70.87183364722662],[-154.63054630546304,70.85325929725792],[-154.63054630546304,70.84819356544827],[-154.63054630546304,70.8363735245591],[-154.63054630546304,70.83299637001932],[-154.5909459094591,70.82624206093979],[-154.54054540545405,70.82624206093979],[-154.4361443614436,70.83975067909887],[-154.38574385743857,70.83975067909887],[-154.310143101431,70.83130779274944],[-154.27054270542706,70.81948775186027],[-154.2489424894249,70.79922482462166],[-154.2561425614256,70.78909336100239],[-154.2489424894249,70.78233905192283],[-154.23094230942309,70.77896189738308],[-154.2129421294213,70.77727332011321],[-154.17334173341735,70.78233905192283],[-154.130141301413,70.79078193827226],[-154.04374043740438,70.83299637001932],[-153.9861398613986,70.8465049881784],[-153.93933939339394,70.88196511084593],[-153.91773917739178,70.8937851517351],[-153.89253892538926,70.89885088354475],[-153.51453514535146,70.88703084265558],[-153.44973449734496,70.89885088354475],[-153.38133381333813,70.90053946081463],[-153.3561335613356,70.90222803808453],[-153.3021330213302,70.92924527440263],[-153.25533255332553,70.93262242894241],[-153.16533165331654,70.92755669713276],[-153.14733147331472,70.92417954259298],[-153.1329313293133,70.91067092443393],[-153.11853118531184,70.90729376989415],[-153.10773107731077,70.90729376989415],[-153.08613086130862,70.90222803808453],[-153.07533075330753,70.90053946081463],[-153.0681306813068,70.90222803808453],[-153.05373053730537,70.9123595017038],[-153.0429304293043,70.9140480789737],[-152.95652956529565,70.90729376989415],[-152.94212942129423,70.9039166153544],[-152.9349293492935,70.89209657446523],[-152.92772927729277,70.88027653357605],[-152.91692916929168,70.87014506995675],[-152.90252902529025,70.86339076087722],[-152.88452884528846,70.85832502906757],[-152.86652866528664,70.8566364517977],[-152.84852848528485,70.86001360633745],[-152.84132841328415,70.86845649268687],[-152.83772837728378,70.87689937903627],[-152.83412834128342,70.8853422653857],[-152.8161281612816,70.88703084265558],[-152.8089280892809,70.8836536881158],[-152.7981279812798,70.87689937903627],[-152.78372783727838,70.86339076087722],[-152.77292772927728,70.8549478745278],[-152.74772747727476,70.84312783363862],[-152.71532715327152,70.82117632913014],[-152.69732697326972,70.82117632913014],[-152.65772657726578,70.8465049881784],[-152.6721267212672,70.86676791541697],[-152.69372693726936,70.87689937903627],[-152.71892718927188,70.88027653357605],[-152.74772747727476,70.88027653357605],[-152.71172711727118,70.89040799719533],[-152.5461254612546,70.88703084265558],[-152.32652326523265,70.8566364517977],[-152.21852218522184,70.81779917459039],[-152.21852218522184,70.81273344278074],[-152.27252272522725,70.79922482462166],[-152.3769237692377,70.7485675065252],[-152.4309243092431,70.74350177471555],[-152.4309243092431,70.736747465636],[-152.41652416524164,70.73168173382638],[-152.41292412924128,70.72155027020708],[-152.420124201242,70.71310738385765],[-152.43452434524346,70.7097302293179],[-152.47772477724777,70.70635307477812],[-152.49932499324993,70.6995987656986],[-152.51372513725136,70.6894673020793],[-152.51012510125102,70.66413864303107],[-152.48132481324814,70.64218713852259],[-152.4489244892449,70.62530136582376],[-152.25452254522546,70.5999727067755],[-152.15372153721538,70.60334986131528],[-152.10332103321034,70.59828412950563],[-152.07452074520745,70.57970977953693],[-152.1069210692107,70.57464404772728],[-152.1681216812168,70.58308693407668],[-152.41652416524164,70.58646408861645],[-152.45612456124562,70.5813983568068],[-152.51732517325172,70.59321839769598],[-152.5461254612546,70.58984124315623],[-152.58212582125822,70.58308693407668],[-152.61452614526144,70.5729554704574],[-152.6289262892629,70.55775827502845],[-152.6181261812618,70.55606969775857],[-152.58572585725858,70.55775827502845],[-152.57132571325712,70.55606969775857],[-152.5461254612546,70.54762681140915],[-152.53532535325354,70.5442496568694],[-152.50652506525066,70.54593823413927],[-152.45612456124562,70.55606969775857],[-151.970119701197,70.5712668931875],[-151.84771847718477,70.55775827502845],[-151.76131761317612,70.56620116137785],[-151.73251732517326,70.55775827502845],[-151.75051750517505,70.55438112048867],[-151.76131761317612,70.54762681140915],[-151.7829178291783,70.52736388417057],[-151.80451804518046,70.51892099782114],[-151.84771847718477,70.52229815236092],[-151.86931869318693,70.51723242055127],[-151.84771847718477,70.51047811147174],[-151.790117901179,70.50203522512231],[-151.88731887318875,70.49359233877291],[-151.9449194491945,70.48008372061383],[-151.9809198091981,70.44800075248608],[-151.73611736117363,70.4361807115969],[-151.45531455314554,70.43955786613665],[-151.40851408514084,70.42773782524748],[-151.3509135091351,70.4260492479776],[-151.3329133291333,70.41760636162817],[-151.31491314913148,70.40916347527877],[-151.2789127891279,70.39903201165947],[-151.2429124291243,70.37876908442087],[-151.22131221312213,70.37539192988112],[-151.17811178111782,70.38045766169077],[-151.17811178111782,70.3872119707703],[-151.19971199711998,70.40240916619925],[-151.21051210512104,70.42267209343782],[-151.20331203312034,70.44124644340653],[-151.17811178111782,70.44800075248608],[-150.98010980109802,70.45644363883548],[-150.9729097290973,70.45813221610535],[-150.95850958509584,70.46657510245478],[-150.95130951309514,70.46995225699456],[-150.86130861308612,70.46995225699456],[-150.8541085410854,70.47164083426443],[-150.83970839708397,70.48008372061383],[-150.8361083610836,70.48346087515361],[-150.81090810908108,70.48177229788374],[-150.7641076410764,70.47164083426443],[-150.74610746107462,70.47670656607409],[-150.7749077490775,70.48514945242349],[-150.78570785707856,70.49190376150301],[-150.7929079290793,70.50372380239219],[-150.62010620106201,70.51047811147174],[-150.60930609306092,70.51047811147174],[-150.59130591305913,70.50541237966209],[-150.58050580505804,70.50372380239219],[-150.5661056610566,70.50541237966209],[-150.5409054090541,70.51216668874162],[-150.52650526505266,70.51047811147174],[-150.5121051210512,70.50372380239219],[-150.50850508505084,70.49359233877291],[-150.50130501305011,70.48514945242349],[-150.49410494104941,70.47670656607409],[-150.46530465304653,70.48008372061383],[-150.41850418504185,70.49190376150301],[-150.37890378903788,70.49696949331266],[-150.3609036090361,70.48008372061383],[-150.3681036810368,70.46657510245478],[-150.41850418504185,70.42098351616795],[-150.41850418504185,70.41422920708843],[-150.38250382503824,70.4159177843583],[-150.25290252902528,70.44124644340653],[-150.11970119701198,70.44293502067643],[-149.88929889298893,70.51216668874162],[-149.86769867698678,70.51216668874162],[-149.810098100981,70.49696949331266],[-149.7848978489785,70.49865807058256],[-149.72369723697238,70.51047811147174],[-149.56529565295654,70.51047811147174],[-149.5148951489515,70.52229815236092],[-149.48969489694898,70.52229815236092],[-149.46449464494646,70.51047811147174],[-149.46809468094682,70.50372380239219],[-149.47529475294752,70.50034664785244],[-149.48249482494825,70.49696949331266],[-149.48969489694898,70.49696949331266],[-149.38529385293853,70.48852660696326],[-149.35289352893528,70.49696949331266],[-149.36729367293674,70.50372380239219],[-149.34569345693455,70.51047811147174],[-149.0432904329043,70.46826367972466],[-149.01449014490146,70.45982079337526],[-148.99288992889927,70.44800075248608],[-148.97848978489785,70.43955786613665],[-148.97128971289712,70.43280355705713],[-148.96408964089642,70.42942640251735],[-148.94968949689496,70.42773782524748],[-148.91728917289174,70.44124644340653],[-148.90288902889029,70.44124644340653],[-148.82728827288273,70.41760636162817],[-148.79488794887948,70.41422920708843],[-148.71928719287192,70.42267209343782],[-148.68328683286833,70.41929493889808],[-148.65448654486545,70.40409774346912],[-148.640086400864,70.39903201165947],[-148.58608586085862,70.39396627984982],[-148.550085500855,70.38383481623052],[-148.51768517685176,70.3686376208016],[-148.50328503285033,70.35681757991242],[-148.49968499684996,70.33993180721359],[-148.51048510485106,70.31798030270511],[-148.3808838088381,70.31291457089546],[-148.34128341283412,70.31798030270511],[-148.25848258482586,70.35512900264251],[-148.22248222482224,70.35850615718229],[-148.15048150481505,70.35681757991242],[-148.1180811808118,70.34837469356299],[-148.0640806408064,70.31966887997498],[-148.05328053280533,70.31460314816533],[-148.03888038880388,70.31291457089546],[-148.02448024480245,70.31291457089546],[-148.01008010080102,70.3162917254352],[-147.9920799207992,70.31798030270511],[-147.97767977679777,70.31291457089546],[-147.98487984879847,70.30447168454603],[-147.96327963279634,70.30109453000628],[-147.88767887678875,70.31291457089546],[-147.8660786607866,70.31122599362558],[-147.84447844478444,70.3078488390858],[-147.81927819278192,70.30109453000628],[-147.79767797677977,70.29096306638698],[-147.80847808478086,70.28589733457733],[-147.81207812078122,70.28252018003758],[-147.81927819278192,70.27070013914837],[-147.81207812078122,70.26732298460863],[-147.80127801278013,70.26563440733875],[-147.7940779407794,70.26225725279897],[-147.78687786877867,70.25719152098932],[-147.7940779407794,70.24537148010015],[-147.79767797677977,70.2403057482905],[-147.8048780487805,70.23692859375075],[-147.7832778327783,70.22848570740132],[-147.6788767887679,70.21159993470249],[-147.4160741607416,70.20146847108319],[-147.2360723607236,70.18120554384461],[-147.23247232472323,70.18120554384461],[-147.22167221672217,70.18795985292414],[-147.2180721807218,70.18795985292414],[-147.21087210872108,70.18627127565426],[-147.20007200072,70.17782838930484],[-147.19647196471965,70.17445123476509],[-147.12447124471245,70.16769692568553],[-146.87966879668795,70.17445123476509],[-146.87606876068762,70.18964843019401],[-146.84726847268473,70.19302558473379],[-146.7428674286743,70.19302558473379],[-146.43326433264332,70.18289412111449],[-146.23166231662316,70.18627127565426],[-146.0840608406084,70.15587688479636],[-145.98325983259832,70.15418830752648],[-145.9688596885969,70.15756546206626],[-145.940059400594,70.16600834841566],[-145.92925929259292,70.16769692568553],[-145.88965889658897,70.15249973025661],[-145.87165871658715,70.15249973025661],[-145.87885878858788,70.17445123476509],[-145.83925839258393,70.16769692568553],[-145.77085770857707,70.13392538028788],[-145.71325713257133,70.1237939166686],[-145.65565655656556,70.09846525762035],[-145.61245612456125,70.08833379400104],[-145.59805598055982,70.08157948492152],[-145.61245612456125,70.07144802130222],[-145.59805598055982,70.07144802130222],[-145.58725587255873,70.074825175842],[-145.57285572855727,70.0849566394613],[-145.55845558455584,70.09002237127095],[-145.54765547655478,70.09171094854082],[-145.51885518855187,70.09171094854082],[-145.50085500855008,70.08664521673117],[-145.4720547205472,70.05793940314317],[-145.4540545405454,70.05118509406364],[-145.42525425254252,70.04780793952386],[-145.36765367653675,70.03429932136481],[-145.3388533885339,70.03092216682504],[-145.21645216452163,70.04443078498412],[-145.21645216452163,70.03767647590456],[-145.23445234452345,70.03092216682504],[-145.30285302853028,69.99883919869728],[-145.2740527405274,69.99377346688763],[-145.15525155251552,70.00390493050693],[-144.9428494284943,69.97857627145868],[-144.88524885248853,69.9954620441575],[-144.87084870848707,69.99715062142738],[-144.8240482404824,69.9870191578081],[-144.70524705247053,69.9751991169189],[-144.59004590045902,69.98364200326833],[-144.56484564845647,69.98870773507798],[-144.5108451084511,70.02079070320576],[-144.3848438484385,70.04443078498412],[-144.1868418684187,70.04443078498412],[-144.15444154441545,70.04780793952386],[-144.14004140041402,70.06131655768294],[-144.12924129241293,70.06807086676247],[-144.1040410404104,70.06469371222269],[-144.0788407884079,70.05456224860339],[-144.06444064440643,70.04443078498412],[-144.0680406804068,70.03598789863469],[-144.07164071640716,70.03092216682504],[-144.0680406804068,70.02416785774551],[-144.06444064440643,70.01741354866598],[-144.0680406804068,70.01065923958646],[-144.07164071640716,70.00390493050693],[-144.07164071640716,69.98870773507798],[-144.05724057240573,69.99883919869728],[-144.04284042840428,70.01572497139611],[-144.02484024840248,70.05118509406364],[-144.04644046440464,70.06469371222269],[-144.05724057240573,70.07313659857212],[-144.06444064440643,70.0849566394613],[-144.01764017640176,70.0933995258107],[-144.00324003240033,70.08833379400104],[-143.98163981639817,70.07820233038177],[-143.97443974439744,70.07820233038177],[-143.96363963639635,70.07989090765165],[-143.95643956439565,70.07820233038177],[-143.93123931239313,70.07144802130222],[-143.92043920439204,70.07144802130222],[-143.9132391323913,70.08157948492152],[-143.9060390603906,70.08833379400104],[-143.88803888038882,70.09002237127095],[-143.8520385203852,70.0849566394613],[-143.82323823238232,70.09002237127095],[-143.76923769237692,70.10521956669987],[-143.7440374403744,70.10521956669987],[-143.69363693636936,70.09171094854082],[-143.67563675636757,70.09002237127095],[-143.5748357483575,70.0933995258107],[-143.5640356403564,70.09846525762035],[-143.56043560435603,70.10690814396978],[-143.5640356403564,70.11535103031918],[-143.5640356403564,70.1237939166686],[-143.54963549635497,70.12717107120835],[-143.5460354603546,70.1237939166686],[-143.52443524435245,70.10184241216012],[-143.510035100351,70.09677668035047],[-143.35883358833587,70.10690814396978],[-143.3552335523355,70.10521956669987],[-143.35163351633517,70.10184241216012],[-143.31563315633156,70.05625082587329],[-143.29763297632977,70.04274220771421],[-143.2760327603276,70.05118509406364],[-143.29043290432904,70.06300513495282],[-143.30123301233013,70.07989090765165],[-143.30843308433083,70.09846525762035],[-143.30123301233013,70.11703960758905],[-143.2760327603276,70.12041676212883],[-143.23643236432363,70.11872818485895],[-143.1680316803168,70.10521956669987],[-143.15363153631534,70.10015383489022],[-143.14643146431465,70.0933995258107],[-143.13203132031322,70.08833379400104],[-143.11763117631176,70.0849566394613],[-143.03483034830347,70.09171094854082],[-143.0240302403024,70.09002237127095],[-143.01323013230132,70.08326806219142],[-142.9988299882999,70.06807086676247],[-142.98442984429843,70.06300513495282],[-142.96282962829628,70.06300513495282],[-142.94122941229412,70.0663822894926],[-142.9268292682927,70.07144802130222],[-142.9340293402934,70.07820233038177],[-142.88002880028802,70.074825175842],[-142.64962649626497,70.01910212593586],[-142.59922599225993,70.01234781685633],[-142.59562595625957,70.00390493050693],[-142.610026100261,69.9751991169189],[-142.59922599225993,69.97182196237915],[-142.5812258122581,69.97013338510928],[-142.56682566825668,69.97182196237915],[-142.55242552425523,69.98026484872855],[-142.5380253802538,69.9853305805382],[-142.51642516425164,69.98195342599846],[-142.48042480424803,69.97013338510928],[-142.49122491224912,69.97182196237915],[-142.5020250202502,69.97351053964903],[-142.51282512825128,69.97182196237915],[-142.52362523625237,69.97013338510928],[-142.49842498424985,69.95324761241045],[-142.43722437224372,69.9481818806008],[-142.4120241202412,69.93467326244172],[-142.41922419224193,69.93129610790197],[-142.4228242282423,69.9279189533622],[-142.4228242282423,69.92454179882245],[-142.42642426424266,69.92116464428267],[-142.39762397623977,69.92116464428267],[-142.38322383223831,69.9194760670128],[-142.37242372423725,69.91441033520314],[-142.37602376023762,69.90427887158384],[-142.37602376023762,69.89921313977419],[-142.3688236882369,69.89583598523444],[-142.34362343623437,69.88908167615489],[-142.33282332823327,69.88739309888501],[-142.32562325623257,69.88570452161514],[-142.29322293222933,69.86375301710666],[-142.27162271622717,69.85531013075723],[-142.1060210602106,69.8485558216777],[-142.04842048420483,69.83504720351866],[-142.04122041220413,69.80465281266078],[-142.0160201602016,69.79620992631135],[-141.98721987219872,69.79283277177157],[-141.9620196201962,69.79620992631135],[-141.9440194401944,69.80802996720053],[-141.9188191881919,69.81478427628005],[-141.890018900189,69.80802996720053],[-141.8360183601836,69.7911441945017],[-141.65241652416523,69.7624383809137],[-141.57321573215734,69.73035541278591],[-141.52641526415263,69.71853537189673],[-141.5012150121501,69.70840390827746],[-141.48321483214832,69.69827244465816],[-141.440014400144,69.66112374472073],[-141.41121411214112,69.65099228110142],[-141.29241292412922,69.63410650840262],[-141.26721267212673,69.6442379720219],[-141.24561245612455,69.66112374472073],[-141.22041220412206,69.6746323628798],[-141.2492124921249,69.68138667195933],[-141.26721267212673,69.68138667195933],[-141.29241292412922,69.68645240376898],[-141.31761317613177,69.68814098103886],[-141.31761317613177,69.69489529011838],[-141.01521015210153,69.6543694356412],[-141.0080100801008,69.65099228110142],[-141.00441004410044,69.65099228110142],[-140.99000990009898,69.6459265492918],[-140.90000900009,69.64086081748215],[-140.90000900009,69.63748366294237],[-140.90000900009,69.6357950856725],[-140.90720907209072,69.63241793113272],[-140.8892088920889,69.62735219932307],[-140.87480874808747,69.6256636220532],[-140.83880838808386,69.6256636220532],[-140.83880838808386,69.63072935386285],[-140.84240842408423,69.63241793113272],[-140.82080820808207,69.63748366294237],[-140.64440644406443,69.6155321584339],[-140.40680406804069,69.60202354027484],[-140.22320223202232,69.59864638573507],[-140.15120151201512,69.61890931297367],[-139.9171991719917,69.62059789024354],[-139.61119611196114,69.58344919030614],[-139.60039600396004,69.58007203576636],[-139.71199711997122,69.58851492211576],[-139.77319773197732,69.60033496300497],[-139.7479974799748,69.58513776757601],[-139.70119701197012,69.57500630395671],[-139.36279362793627,69.54461191309883],[-139.31239312393123,69.52097183132048],[-139.29439294392944,69.5175946767807],[-139.14319143191432,69.51421752224093],[-139.11079110791107,69.499020326812],[-139.0459904599046,69.45511731779504],[-139.03159031590314,69.44160869963599],[-138.99558995589956,69.42134577239739],[-138.9559895598956,69.40614857696843],[-138.76518765187652,69.35886841341173],[-138.72558725587254,69.33016259982372],[-138.66438664386644,69.30145678623572],[-138.63558635586355,69.28288243626702],[-138.60678606786067,69.24911089086936],[-138.60318603186033,69.24235658178983],[-138.58878588785888,69.24066800451993],[-138.57798577985778,69.24573373632958],[-138.57078570785708,69.25248804540911],[-138.559985599856,69.25586519994889],[-138.54918549185493,69.25755377721876],[-138.5059850598506,69.25586519994889],[-138.5059850598506,69.24911089086936],[-138.52758527585274,69.24911089086936],[-138.51678516785168,69.24404515905971],[-138.48438484384843,69.23729084998018],[-138.4519845198452,69.2339136954404],[-138.44478444784448,69.23560227271028],[-138.44478444784448,69.23729084998018],[-138.44478444784448,69.24235658178983],[-138.44478444784448,69.24742231359949],[-138.44118441184412,69.24911089086936],[-138.41958419584196,69.25417662267901],[-138.40878408784087,69.26768524083806],[-138.4051840518405,69.28288243626702],[-138.3979839798398,69.29807963169594],[-138.41238412384124,69.29807963169594],[-138.42678426784266,69.29470247715619],[-138.4519845198452,69.28288243626702],[-138.42678426784266,69.30145678623572],[-138.39078390783908,69.30821109531524],[-138.35838358383583,69.3048339407755],[-138.3439834398344,69.28625959080676],[-138.34038340383404,69.25924235448866],[-138.32958329583295,69.24235658178983],[-138.31158311583116,69.22884796363076],[-138.22878228782287,69.18325637734392],[-138.09558095580957,69.13935336832697],[-137.8687786877869,69.09207320477026],[-137.51957519575194,69.01608722762555],[-137.4259742597426,69.01439865035567],[-137.38277382773828,69.00257860946647],[-137.42957429574295,69.00257860946647],[-137.42957429574295,68.99582430038694],[-137.29997299973,68.97556137314837],[-137.22437224372243,68.95023271410011],[-137.1919719197192,68.94854413683024],[-137.06237062370624,68.95529844590976],[-136.9939699396994,68.94854413683024],[-136.98676986769868,68.94516698229046],[-136.97236972369723,68.92996978686153],[-136.96156961569616,68.92659263232176],[-136.9039690396904,68.9215269005121],[-136.79956799567995,68.88944393238435],[-136.74556745567455,68.87931246876505],[-136.66276662766626,68.87593531422527],[-136.64476644766447,68.87931246876505],[-136.6339663396634,68.8843782005747],[-136.62676626766267,68.89113250965423],[-136.61596615966158,68.89619824146388],[-136.60156601566015,68.89957539600363],[-136.5259652596526,68.8928210869241],[-136.5367653676537,68.89788681873375],[-136.54036540365405,68.89957539600363],[-136.54036540365405,68.90632970508318],[-136.50076500765007,68.91646116870245],[-136.45756457564576,68.9130840141627],[-136.4431644316443,68.90970685962293],[-136.41796417964179,68.90464112781328],[-136.2379623796238,68.88606677784458],[-136.06876068760687,68.88606677784458],[-135.88155881558816,68.85060665517705],[-135.85275852758528,68.83709803701797],[-135.78075780757808,68.82190084158904],[-135.77355773557736,68.81345795523961],[-135.7591575915759,68.79657218254079],[-135.7339573395734,68.78475214165161],[-135.70155701557016,68.7746206780323],[-135.6367563675637,68.76280063714313],[-135.5179551795518,68.75435775079373],[-135.4891548915489,68.73916055536478],[-135.47835478354784,68.73071766901538],[-135.46035460354602,68.7172090508563],[-135.44235442354423,68.7087661645069],[-135.4279542795428,68.70201185542737],[-135.42075420754207,68.70201185542737],[-135.41355413554135,68.6986347008876],[-135.40995409954098,68.69188039180807],[-135.40995409954098,68.68512608272854],[-135.40995409954098,68.68174892818877],[-135.37755377553776,68.67330604183937],[-135.2911529115291,68.68681465999842],[-135.2551525515255,68.68174892818877],[-135.18675186751867,68.66317457822007],[-135.15075150751508,68.65979742368029],[-135.16155161551615,68.67161746456947],[-135.20115201152012,68.67499461910924],[-135.2119521195212,68.68681465999842],[-135.20475204752046,68.68850323726829],[-135.19035190351903,68.69356896907794],[-135.2191521915219,68.69694612361772],[-135.27315273152732,68.7172090508563],[-135.319953199532,68.72565193720573],[-135.33435334353345,68.73578340082503],[-135.35955359553594,68.77124352349256],[-135.3631536315363,68.77799783257208],[-135.36675366753667,68.78137498711186],[-135.39555395553955,68.78644071892148],[-135.42435424354244,68.79488360527091],[-135.46035460354602,68.80163791435044],[-135.4819548195482,68.81176937796974],[-135.49635496354963,68.82696657339869],[-135.5071550715507,68.8455409233674],[-135.34155341553415,68.83878661428787],[-135.40995409954098,68.8539838097168],[-135.5719557195572,68.85904954152645],[-135.62955629556296,68.8928210869241],[-135.6151561515615,68.89957539600363],[-135.60435604356044,68.9113954368928],[-135.8239582395824,68.9029525505434],[-135.8671586715867,68.90632970508318],[-136.0039600396004,68.94854413683024],[-135.9931599315993,68.96542990952906],[-135.97155971559715,68.96880706406884],[-135.92475924759248,68.96205275498929],[-135.92475924759248,68.96880706406884],[-135.97515975159752,68.99582430038694],[-135.98955989559894,69.01608722762555],[-135.98235982359824,69.04141588667378],[-135.95355953559536,69.0481701957533],[-135.91755917559175,69.0397273094039],[-135.84915849158492,69.00933291854602],[-135.769957699577,68.99075856857729],[-135.679956799568,68.99075856857729],[-135.59355593555935,69.00595576400625],[-135.5179551795518,69.0295958457846],[-135.69435694356943,69.01608722762555],[-135.70875708757086,69.0194643821653],[-135.71235712357122,69.02790726851472],[-135.7159571595716,69.0397273094039],[-135.71955719557195,69.04648161848343],[-135.7411574115741,69.0599902366425],[-135.9211592115921,69.09376178204013],[-135.93555935559357,69.10558182292934],[-135.949959499595,69.15961629556557],[-135.96435964359642,69.18832210915357],[-135.9679596795968,69.20689645912228],[-135.9679596795968,69.22209365455123],[-135.93555935559357,69.25417662267901],[-135.8959589595896,69.25248804540911],[-135.8131581315813,69.2153393454717],[-135.78795787957878,69.20858503639218],[-135.77715777157772,69.2052078818524],[-135.7519575195752,69.18325637734392],[-135.58635586355865,69.12415617289804],[-135.47115471154711,69.11571328654861],[-135.4171541715417,69.09882751384978],[-135.43155431554317,69.11740186381851],[-135.47475474754748,69.13091048197757],[-135.59355593555935,69.14273052286674],[-135.6259562595626,69.15286198648604],[-135.8347583475835,69.26093093175854],[-135.85635856358564,69.28963674534654],[-135.83835838358382,69.30989967258512],[-135.8059580595806,69.32171971347432],[-135.76635766357663,69.32847402255385],[-135.70155701557016,69.3335397543635],[-135.68355683556837,69.33016259982372],[-135.66555665556655,69.32171971347432],[-135.66195661956618,69.31834255893455],[-135.65115651156512,69.31158824985502],[-135.6439564395644,69.30821109531524],[-135.6439564395644,69.30145678623572],[-135.6439564395644,69.28963674534654],[-135.6439564395644,69.28288243626702],[-135.62955629556296,69.26937381810794],[-135.5827558275583,69.23560227271028],[-135.56835568355683,69.22884796363076],[-135.55755557555574,69.23897942725006],[-135.56835568355683,69.26093093175854],[-135.60075600756008,69.29807963169594],[-135.60795607956078,69.31158824985502],[-135.61155611556114,69.32171971347432],[-135.61155611556114,69.32847402255385],[-135.60075600756008,69.33522833163337],[-135.58635586355865,69.3419826407129],[-135.56835568355683,69.34535979525268],[-135.51435514355143,69.33860548617315],[-135.47475474754748,69.33860548617315],[-135.43515435154353,69.3335397543635],[-135.3739537395374,69.29976820896584],[-135.3379533795338,69.28963674534654],[-135.1759517595176,69.26261950902841],[-135.1651516515165,69.26261950902841],[-135.16155161551615,69.26599666356819],[-135.16155161551615,69.27275097264771],[-135.1651516515165,69.27781670445736],[-135.1651516515165,69.28288243626702],[-135.17235172351724,69.28288243626702],[-135.18675186751867,69.28625959080676],[-135.20475204752046,69.28963674534654],[-135.2191521915219,69.29639105442607],[-135.229952299523,69.3048339407755],[-135.24075240752407,69.31496540439477],[-135.24075240752407,69.32171971347432],[-135.2371523715237,69.32847402255385],[-135.2371523715237,69.33860548617315],[-135.24435244352443,69.35717983614185],[-135.2479524795248,69.3622455679515],[-135.2551525515255,69.36899987703103],[-135.27675276752768,69.40108284515881],[-135.2839528395284,69.40445999969856],[-135.2839528395284,69.41459146331786],[-135.2839528395284,69.42641150420704],[-135.28035280352805,69.43485439055644],[-135.2659526595266,69.44160869963599],[-135.2119521195212,69.45511731779504],[-135.15435154351542,69.48044597684327],[-135.12555125551256,69.48213455411317],[-135.10755107551074,69.46187162687457],[-135.10035100351004,69.47200309049387],[-135.08955089550895,69.4787573995734],[-135.07515075150752,69.48044597684327],[-135.06075060750607,69.48213455411317],[-135.0679506795068,69.48213455411317],[-135.03555035550355,69.4888888631927],[-134.9779497794978,69.4787573995734],[-134.94914949149492,69.47538024503365],[-134.89514895148952,69.4888888631927],[-134.86274862748627,69.49395459500235],[-134.81954819548196,69.48213455411317],[-134.81234812348123,69.4888888631927],[-134.8051480514805,69.50239748135175],[-134.79434794347944,69.499020326812],[-134.7871478714787,69.49395459500235],[-134.78354783547834,69.48720028592282],[-134.779947799478,69.48213455411317],[-134.74754747547476,69.4787573995734],[-134.64314643146432,69.48213455411317],[-134.5351453514535,69.45005158598539],[-134.47754477544777,69.44329727690587],[-134.42714427144273,69.46524878141435],[-134.41634416344164,69.4973317495421],[-134.44874448744486,69.5175946767807],[-134.4991449914499,69.5175946767807],[-134.53874538745387,69.49564317227222],[-134.5279452794528,69.48551170865292],[-134.52434524345244,69.48213455411317],[-134.54234542345424,69.47538024503365],[-134.55674556745566,69.4787573995734],[-134.58554585545855,69.49564317227222],[-134.57834578345785,69.5074632131614],[-134.57474574745748,69.5091517904313],[-134.59274592745928,69.51252894497105],[-134.59634596345964,69.5277261404],[-134.58554585545855,69.54292333582893],[-134.57474574745748,69.55136622217836],[-134.56034560345603,69.54967764490848],[-134.53874538745387,69.53954618128918],[-134.52434524345244,69.5361690267494],[-134.509945099451,69.53785760401931],[-134.48474484744847,69.54292333582893],[-134.47034470344704,69.54461191309883],[-134.4919449194492,69.56487484033741],[-134.48834488344883,69.56825199487719],[-134.46674466744668,69.58176061303624],[-134.44154441544416,69.59189207665554],[-134.42714427144273,69.60540069481459],[-134.40554405544054,69.63748366294237],[-134.4091440914409,69.65774659018098],[-134.4379443794438,69.68138667195933],[-134.4991449914499,69.72191252643651],[-134.4811448114481,69.72697825824616],[-134.4631446314463,69.72360110370639],[-134.44874448744486,69.71853537189673],[-134.43074430744306,69.71515821735699],[-134.4091440914409,69.71853537189673],[-134.3767437674377,69.72697825824616],[-134.34434344343444,69.72360110370639],[-134.32994329943298,69.72528968097629],[-134.31914319143192,69.72360110370639],[-134.31914319143192,69.70840390827746],[-134.32274322743228,69.69658386738826],[-134.32994329943298,69.68982955830873],[-134.34074340743408,69.68476382649908],[-134.3551435514355,69.68138667195933],[-134.33354333543335,69.6729437856099],[-134.25434254342542,69.6830752492292],[-134.22554225542257,69.68138667195933],[-134.20754207542075,69.66956663107015],[-134.18954189541896,69.65605801291107],[-134.17514175141753,69.6442379720219],[-134.14994149941498,69.64086081748215],[-134.14994149941498,69.63241793113272],[-134.19674196741965,69.62059789024354],[-134.21834218342184,69.60877784935437],[-134.23634236342363,69.59189207665554],[-134.24354243542436,69.57669488122659],[-134.2291422914229,69.57838345849649],[-134.20754207542075,69.58682634484589],[-134.1859418594186,69.59189207665554],[-134.17874178741786,69.58851492211576],[-134.17514175141753,69.56825199487719],[-134.16434164341644,69.56487484033741],[-134.15354153541534,69.56149768579766],[-134.1319413194132,69.54798906763858],[-134.12114121141212,69.54461191309883],[-134.09234092340924,69.54798906763858],[-134.06354063540635,69.55643195398801],[-134.03474034740347,69.56149768579766],[-134.0059400594006,69.55812053125788],[-134.01314013140131,69.54630049036871],[-134.0239402394024,69.53954618128918],[-134.05274052740526,69.53110329493975],[-133.99873998739986,69.53110329493975],[-133.98433984339843,69.5277261404],[-133.9771397713977,69.52434898586023],[-133.969939699397,69.52097183132048],[-133.96273962739627,69.5175946767807],[-133.94113941139412,69.51252894497105],[-133.9159391593916,69.51084036770118],[-133.88713887138871,69.51421752224093],[-133.8619386193862,69.52266040859035],[-133.86553865538656,69.52603756313013],[-133.87633876338762,69.53448044947953],[-133.879938799388,69.5361690267494],[-133.8619386193862,69.54461191309883],[-133.81873818738188,69.54461191309883],[-133.80073800738006,69.55136622217836],[-133.80433804338043,69.55305479944823],[-133.81873818738188,69.55812053125788],[-133.82593825938258,69.55812053125788],[-133.81873818738188,69.56994057214706],[-133.8079380793808,69.57669488122659],[-133.79353793537936,69.57838345849649],[-133.7791377913779,69.57838345849649],[-133.78273782737827,69.57331772668684],[-133.78633786337863,69.57162914941696],[-133.7791377913779,69.56318626306754],[-133.7719377193772,69.55643195398801],[-133.7611376113761,69.55305479944823],[-133.75033750337502,69.55136622217836],[-133.7611376113761,69.53954618128918],[-133.78633786337863,69.5361690267494],[-133.79353793537936,69.5277261404],[-133.789937899379,69.52097183132048],[-133.7791377913779,69.5074632131614],[-133.7791377913779,69.50239748135175],[-133.78273782737827,69.49395459500235],[-133.78273782737827,69.49226601773248],[-133.789937899379,69.49057744046257],[-133.81873818738188,69.46693735868422],[-133.8439384393844,69.45174016325527],[-134.0311403114031,69.38250849519008],[-134.09234092340924,69.34535979525268],[-134.09954099540994,69.29807963169594],[-134.1679416794168,69.29807963169594],[-134.18234182341823,69.29470247715619],[-134.20394203942038,69.27950528172724],[-134.21474214742148,69.27612812718749],[-134.2219422194222,69.27275097264771],[-134.22554225542257,69.26261950902841],[-134.2291422914229,69.25417662267901],[-134.239942399424,69.24911089086936],[-134.25434254342542,69.24742231359949],[-134.26154261542615,69.24066800451993],[-134.27234272342724,69.23222511817053],[-134.27954279542794,69.22209365455123],[-134.2831428314283,69.21196219093193],[-134.27954279542794,69.20689645912228],[-134.2759427594276,69.20351930458253],[-134.27954279542794,69.1950764182331],[-134.2831428314283,69.18494495461383],[-134.28674286742867,69.18156780007405],[-134.30474304743046,69.17312491372462],[-134.3119431194312,69.15455056375592],[-134.3011430114301,69.1579277182957],[-134.2759427594276,69.1579277182957],[-134.26514265142652,69.15961629556557],[-134.2471424714247,69.16974775918487],[-134.23634236342363,69.17987922280417],[-134.22554225542257,69.20858503639218],[-134.19674196741965,69.23729084998018],[-134.16434164341644,69.25586519994889],[-134.12114121141212,69.26599666356819],[-133.99873998739986,69.27275097264771],[-133.95553955539555,69.28625959080676],[-133.9051390513905,69.29132532261642],[-133.88353883538835,69.30145678623572],[-133.8727387273873,69.31665398166467],[-133.8727387273873,69.32509686801407],[-133.86913869138692,69.3318511770936],[-133.85473854738547,69.3419826407129],[-133.84033840338404,69.34535979525268],[-133.80073800738006,69.34535979525268],[-133.78633786337863,69.34704837252255],[-133.75753757537575,69.35717983614185],[-133.74313743137432,69.35886841341173],[-133.74673746737466,69.35549125887198],[-133.75033750337502,69.34367121798277],[-133.75033750337502,69.33860548617315],[-133.70353703537035,69.33860548617315],[-133.6819368193682,69.34367121798277],[-133.66033660336603,69.3521141043322],[-133.67833678336783,69.3605569906816],[-133.69633696336962,69.36562272249125],[-133.67113671136713,69.38757422699973],[-133.63153631536315,69.39939426788891],[-133.46233462334624,69.41796861785761],[-133.2571325713257,69.41459146331786],[-133.24993249932498,69.41121430877809],[-133.23553235532356,69.40277142242869],[-133.22833228332283,69.40108284515881],[-133.2139321393214,69.40108284515881],[-133.21033210332104,69.40445999969856],[-133.2031320313203,69.40952573150821],[-133.19593195931958,69.41459146331786],[-133.0879308793088,69.44498585417574],[-133.08433084330844,69.44498585417574],[-133.07353073530734,69.43992012236609],[-133.06633066330664,69.43654296782634],[-133.05553055530555,69.43485439055644],[-133.04473044730446,69.43485439055644],[-133.0519305193052,69.44836300871552],[-133.05553055530555,69.46356020414447],[-133.04833048330482,69.47706882230352],[-133.03033030330303,69.48213455411317],[-133.00873008730088,69.48720028592282],[-132.99792997929978,69.4973317495421],[-132.98712987129872,69.5074632131614],[-132.96912969129693,69.5175946767807],[-132.98352983529836,69.52434898586023],[-132.979929799298,69.5361690267494],[-132.95832958329584,69.55474337671814],[-132.95472954729547,69.56825199487719],[-132.9619296192962,69.57838345849649],[-132.99072990729906,69.59189207665554],[-132.97632976329763,69.61384358116402],[-132.94752947529474,69.63410650840262],[-132.88632886328864,69.66112374472073],[-132.7711277112771,69.66112374472073],[-132.77832778327783,69.65774659018098],[-132.78552785527856,69.65268085837133],[-132.79272792727926,69.6459265492918],[-132.79992799928,69.64086081748215],[-132.72432724327243,69.63748366294237],[-132.70632706327063,69.6442379720219],[-132.68832688326881,69.6543694356412],[-132.67032670326702,69.65774659018098],[-132.60552605526055,69.65099228110142],[-132.55152551525515,69.63241793113272],[-132.529925299253,69.63241793113272],[-132.38592385923857,69.6459265492918],[-132.349923499235,69.65943516745085],[-132.3319233192332,69.68476382649908],[-132.349923499235,69.69151813557863],[-132.46152461524616,69.66112374472073],[-132.45072450724507,69.66956663107015],[-132.43992439924398,69.6746323628798],[-132.43272432724328,69.6830752492292],[-132.4291242912429,69.69489529011838],[-132.4363243632436,69.70502675373768],[-132.45072450724507,69.70840390827746],[-132.46872468724686,69.70502675373768],[-132.49392493924938,69.69151813557863],[-132.5119251192512,69.68645240376898],[-132.5479254792548,69.68138667195933],[-132.55512555125551,69.67969809468946],[-132.56952569525694,69.66956663107015],[-132.58032580325803,69.66787805380025],[-132.6019260192602,69.66956663107015],[-132.6271262712627,69.6746323628798],[-132.61992619926198,69.68138667195933],[-132.60912609126092,69.68814098103886],[-132.59832598325983,69.69320671284851],[-132.58752587525873,69.69489529011838],[-132.5659256592566,69.71515821735699],[-132.5479254792548,69.74217545367512],[-132.3931239312393,69.75230691729439],[-132.34272342723426,69.76750411272334],[-132.31032310323104,69.772569844533],[-132.2779227792278,69.77425842180287],[-132.25632256322564,69.77088126726312],[-132.2851228512285,69.76919268999322],[-132.36072360723608,69.75061834002452],[-132.45072450724507,69.74386403094499],[-132.48312483124832,69.74217545367512],[-132.48312483124832,69.73542114459556],[-132.29232292322922,69.73542114459556],[-132.29592295922959,69.72866683551604],[-132.3031230312303,69.72191252643651],[-132.31032310323104,69.71853537189673],[-132.31752317523174,69.71515821735699],[-132.26352263522637,69.70840390827746],[-132.25632256322564,69.71009248554734],[-132.24192241922418,69.71515821735699],[-132.23832238322382,69.71515821735699],[-132.23112231122312,69.71178106281721],[-132.2239222392224,69.70333817646781],[-132.16632166321662,69.68814098103886],[-132.13752137521374,69.68814098103886],[-132.11952119521195,69.70840390827746],[-132.1231212312123,69.71853537189673],[-132.10152101521015,69.72697825824616],[-132.00072000720007,69.74048687640521],[-131.9719197191972,69.74724118548474],[-131.92871928719288,69.77088126726312],[-131.83871838718386,69.77088126726312],[-131.82071820718207,69.77594699907274],[-131.7739177391774,69.79789850358122],[-131.7559175591756,69.8114071217403],[-131.7631176311763,69.82660431716923],[-131.74871748717487,69.83673578078853],[-131.7019170191702,69.84517866713796],[-131.6191161911619,69.87557305799584],[-131.449914499145,69.89583598523444],[-131.4211142111421,69.91441033520314],[-131.42831428314284,69.91441033520314],[-131.44271442714427,69.91441033520314],[-131.449914499145,69.91441033520314],[-131.4391143911439,69.93298468517185],[-131.42471424714248,69.94987045787067],[-131.40671406714068,69.96169049875985],[-131.38871388713886,69.9583133442201],[-131.35631356313564,69.94987045787067],[-131.28791287912878,69.94987045787067],[-131.25551255512556,69.94142757152127],[-131.2411124111241,69.93298468517185],[-131.22311223112231,69.91778748974289],[-131.2087120871209,69.90090171704406],[-131.20151201512016,69.88401594434524],[-131.20511205112052,69.87557305799584],[-131.21951219512195,69.86206443983679],[-131.22311223112231,69.85362155348736],[-131.21951219512195,69.84180151259818],[-131.2087120871209,69.83504720351866],[-131.1871118711187,69.82491573989935],[-131.15831158311585,69.85531013075723],[-131.15471154711548,69.86544159437653],[-131.17991179911797,69.86713017164641],[-131.1871118711187,69.86544159437653],[-131.1691116911169,69.88739309888501],[-131.14751147511475,69.89245883069466],[-131.10071100711008,69.88739309888501],[-131.08631086310862,69.89245883069466],[-131.07551075510756,69.90596744885372],[-131.05751057510577,69.93467326244172],[-131.02871028710285,69.96337907602972],[-131.01431014310143,69.98026484872855],[-131.01071010710106,69.99883919869728],[-130.9999099991,70.01234781685633],[-130.9459094590946,70.02079070320576],[-130.92790927909277,70.03092216682504],[-130.94950949509496,70.03767647590456],[-130.9999099991,70.02754501228529],[-131.02511025110252,70.03092216682504],[-131.00711007110073,70.03598789863469],[-130.94230942309423,70.07820233038177],[-130.90990909909098,70.0950881030806],[-130.8919089190892,70.10521956669987],[-130.89550895508955,70.0933995258107],[-130.90270902709028,70.08664521673117],[-130.9171091710917,70.08157948492152],[-130.9171091710917,70.074825175842],[-130.90270902709028,70.06807086676247],[-130.88830888308883,70.074825175842],[-130.8739087390874,70.08664521673117],[-130.85950859508594,70.09171094854082],[-130.84150841508415,70.0933995258107],[-130.80550805508057,70.10521956669987],[-130.77310773107732,70.10690814396978],[-130.75870758707586,70.11028529850952],[-130.76230762307623,70.12041676212883],[-130.75150751507516,70.13054822574813],[-130.7371073710737,70.13392538028788],[-130.72270722707228,70.132236803018],[-130.70830708307082,70.12717107120835],[-130.7371073710737,70.10353098943],[-130.7479074790748,70.09002237127095],[-130.74430744307443,70.07820233038177],[-130.72270722707228,70.07820233038177],[-130.69030690306903,70.08664521673117],[-130.6651066510665,70.09846525762035],[-130.65790657906578,70.11028529850952],[-130.6651066510665,70.12548249393848],[-130.66150661506614,70.13730253482765],[-130.64710647106472,70.1423682666373],[-130.62550625506253,70.13730253482765],[-130.6039060390604,70.13561395755778],[-130.5751057510575,70.14067968936743],[-130.5571055710557,70.1508111529867],[-130.5571055710557,70.16094261660601],[-130.54270542705427,70.17445123476509],[-130.5139051390514,70.17782838930484],[-130.45990459904598,70.17445123476509],[-130.48150481504814,70.16769692568553],[-130.51030510305102,70.16263119387588],[-130.5391053910539,70.15249973025661],[-130.549905499055,70.13392538028788],[-130.54270542705427,70.11535103031918],[-130.52110521105212,70.10521956669987],[-130.4959049590496,70.10521956669987],[-130.48150481504814,70.12041676212883],[-130.52470524705245,70.12717107120835],[-130.50310503105032,70.13899111209753],[-130.48150481504814,70.14067968936743],[-130.43470434704346,70.13392538028788],[-130.42030420304204,70.13561395755778],[-130.40590405904058,70.1423682666373],[-130.39870398703988,70.1508111529867],[-130.40590405904058,70.16094261660601],[-130.38430384303842,70.16600834841566],[-130.3519035190352,70.13561395755778],[-130.3231032310323,70.14067968936743],[-130.33030330303302,70.12041676212883],[-130.32670326703266,70.11028529850952],[-130.31230312303123,70.10690814396978],[-130.29070290702907,70.10521956669987],[-130.32670326703266,70.0933995258107],[-130.33750337503375,70.0849566394613],[-130.31950319503196,70.08157948492152],[-130.25110251102512,70.0849566394613],[-130.22590225902258,70.09002237127095],[-130.18270182701826,70.10521956669987],[-130.1611016110161,70.10521956669987],[-130.18270182701826,70.0849566394613],[-130.189901899019,70.07313659857212],[-130.19350193501936,70.06131655768294],[-130.18630186301863,70.05287367133351],[-130.16830168301684,70.05793940314317],[-130.15030150301504,70.07144802130222],[-130.1071010710107,70.10859672123965],[-130.09990099901,70.1136624530493],[-130.08190081900818,70.11028529850952],[-130.07830078300782,70.10184241216012],[-130.08550085500855,70.09002237127095],[-130.09990099901,70.07820233038177],[-130.05670056700566,70.08326806219142],[-129.97389973899737,70.10184241216012],[-129.95229952299522,70.10353098943],[-129.93429934299343,70.09846525762035],[-129.97749977499774,70.08326806219142],[-129.9918999189992,70.074825175842],[-129.9810998109981,70.07144802130222],[-129.93069930699306,70.07651375311187],[-129.88749887498875,70.0849566394613],[-129.89109891098911,70.09002237127095],[-129.89109891098911,70.09171094854082],[-129.89469894698948,70.09846525762035],[-129.8658986589866,70.10521956669987],[-129.85869858698587,70.10521956669987],[-129.8658986589866,70.13392538028788],[-129.84429844298444,70.15249973025661],[-129.79029790297903,70.18120554384461],[-129.79749797497976,70.18795985292414],[-129.80829808298083,70.19133700746391],[-129.81909819098192,70.19471416200366],[-129.82989829898298,70.19471416200366],[-129.82989829898298,70.20146847108319],[-129.81549815498155,70.20146847108319],[-129.80469804698046,70.20653420289284],[-129.79749797497976,70.21497708924227],[-129.78669786697867,70.22510855286154],[-129.77589775897758,70.2301742846712],[-129.739897398974,70.22510855286154],[-129.72189721897217,70.2301742846712],[-129.739897398974,70.24368290283027],[-129.7290972909729,70.25550294371945],[-129.70029700297002,70.26563440733875],[-129.6750967509675,70.27070013914837],[-129.6750967509675,70.26394583006885],[-129.67869678696786,70.26394583006885],[-129.67869678696786,70.25719152098932],[-129.66069660696607,70.25719152098932],[-129.64989649896498,70.25212578917967],[-129.64629646296464,70.23861717102062],[-129.65349653496534,70.2217313983218],[-129.6390963909639,70.22341997559167],[-129.62829628296282,70.2217313983218],[-129.6138961389614,70.21666566651214],[-129.60669606696067,70.20822278016271],[-129.5958959589596,70.19809131654344],[-129.59229592295924,70.19471416200366],[-129.61029610296103,70.17613981203496],[-129.6210962109621,70.16938550295544],[-129.6318963189632,70.16769692568553],[-129.6030960309603,70.16263119387588],[-129.54549545495456,70.16769692568553],[-129.51669516695168,70.16094261660601],[-129.52389523895238,70.15418830752648],[-129.50589505895059,70.14743399844696],[-129.46989469894697,70.15249973025661],[-129.45549455494555,70.14743399844696],[-129.47349473494734,70.13392538028788],[-129.49149491494916,70.12717107120835],[-129.49869498694986,70.11703960758905],[-129.49149491494916,70.10184241216012],[-129.46989469894697,70.09002237127095],[-129.45189451894518,70.10521956669987],[-129.43749437494375,70.12548249393848],[-129.41949419494193,70.13392538028788],[-129.4050940509405,70.12041676212883],[-129.41229412294123,70.10015383489022],[-129.42669426694266,70.07989090765165],[-129.44109441094412,70.06807086676247],[-129.46269462694627,70.05625082587329],[-129.47349473494734,70.05287367133351],[-129.4878948789488,70.05118509406364],[-129.52389523895238,70.05118509406364],[-129.5418954189542,70.04949651679377],[-129.55629556295563,70.04443078498412],[-129.50949509495095,70.03598789863469],[-129.49509495094952,70.03092216682504],[-129.51669516695168,70.02079070320576],[-129.56349563495635,70.00897066231656],[-129.59949599495994,69.99039631234785],[-129.7110971109711,69.97182196237915],[-129.75429754297542,69.9566247669502],[-130.11070110701107,69.86881874891631],[-130.19350193501936,69.86037586256688],[-130.26910269102692,69.8401129353283],[-130.2979029790298,69.8384243580584],[-130.30150301503016,69.85024439894761],[-130.31950319503196,69.8485558216777],[-130.3411034110341,69.84180151259818],[-130.3591035910359,69.83167004897888],[-130.39510395103952,69.80802996720053],[-130.4131041310413,69.79958708085113],[-130.45270452704528,69.79620992631135],[-130.46350463504635,69.79283277177157],[-130.47070470704708,69.78776703996195],[-130.47790477904778,69.7810127308824],[-130.52830528305282,69.78438988542217],[-130.53550535505354,69.7810127308824],[-130.55350553505536,69.76750411272334],[-130.57150571505716,69.75906122637392],[-130.57150571505716,69.75061834002452],[-130.5679056790568,69.74386403094499],[-130.56430564305643,69.74217545367512],[-130.57150571505716,69.72528968097629],[-130.57870578705786,69.71515821735699],[-130.58950589505895,69.70840390827746],[-130.67230672306724,69.69151813557863],[-130.76950769507695,69.68476382649908],[-130.7911079110791,69.67800951741955],[-130.80550805508057,69.65605801291107],[-130.83430834308342,69.63241793113272],[-130.8451084510845,69.61890931297367],[-130.83790837908379,69.61215500389415],[-130.8451084510845,69.60540069481459],[-130.8739087390874,69.60033496300497],[-130.89910899108992,69.58682634484589],[-130.9171091710917,69.58007203576636],[-130.92790927909277,69.56994057214706],[-130.94230942309423,69.56656341760731],[-130.97470974709748,69.58513776757601],[-131.01071010710106,69.59189207665554],[-131.02871028710285,69.60033496300497],[-131.03951039510395,69.61046642662424],[-131.03951039510395,69.6172207357038],[-131.03591035910358,69.62228646751342],[-131.03591035910358,69.63241793113272],[-131.04671046710467,69.6442379720219],[-131.05751057510577,69.64254939475202],[-131.06831068310683,69.63748366294237],[-131.08631086310862,69.63241793113272],[-131.16551165511655,69.6357950856725],[-131.18351183511834,69.62904077659297],[-131.21951219512195,69.61046642662424],[-131.25911259112593,69.60371211754472],[-131.34551345513455,69.60540069481459],[-131.3419134191342,69.60033496300497],[-131.33471334713346,69.58344919030614],[-131.3311133111331,69.57838345849649],[-131.39231392313923,69.57838345849649],[-131.40311403114032,69.58007203576636],[-131.41391413914138,69.58851492211576],[-131.4211142111421,69.59189207665554],[-131.44271442714427,69.59020349938567],[-131.48231482314822,69.57669488122659],[-131.5039150391504,69.57162914941696],[-131.51471514715146,69.57162914941696],[-131.53271532715326,69.57669488122659],[-131.54351543515435,69.57838345849649],[-131.55431554315544,69.57669488122659],[-131.57231572315723,69.57331772668684],[-131.5831158311583,69.57162914941696],[-131.66951669516695,69.57838345849649],[-131.66231662316622,69.57162914941696],[-131.65511655116552,69.56318626306754],[-131.65151651516516,69.55474337671814],[-131.65511655116552,69.54461191309883],[-131.66231662316622,69.5361690267494],[-131.6731167311673,69.53954618128918],[-131.69471694716947,69.55812053125788],[-131.72711727117272,69.56825199487719],[-131.75951759517596,69.56994057214706],[-131.82431824318243,69.55812053125788],[-131.89271892718926,69.5361690267494],[-131.91791917919178,69.53448044947953],[-131.96111961119612,69.53785760401931],[-131.98271982719828,69.5361690267494],[-132.01152011520117,69.5277261404],[-132.079920799208,69.48213455411317],[-132.05472054720548,69.47369166776375],[-132.04752047520475,69.46524878141435],[-132.05472054720548,69.45680589506492],[-132.0979209792098,69.45005158598539],[-132.10512105121052,69.44160869963599],[-132.10512105121052,69.43147723601669],[-132.09072090720906,69.42134577239739],[-132.11952119521195,69.42134577239739],[-132.13032130321304,69.41965719512751],[-132.1411214112141,69.41459146331786],[-132.09072090720906,69.39432853607926],[-132.079920799208,69.38588564972986],[-132.11592115921158,69.3622455679515],[-132.33552335523353,69.31496540439477],[-132.34632346323463,69.30821109531524],[-132.3391233912339,69.29639105442607],[-132.3139231392314,69.26768524083806],[-132.31032310323104,69.25586519994889],[-132.32472324723247,69.24911089086936],[-132.34272342723426,69.25755377721876],[-132.36072360723608,69.27275097264771],[-132.36792367923678,69.28625959080676],[-132.36792367923678,69.29470247715619],[-132.3751237512375,69.30145678623572],[-132.38232382323824,69.30821109531524],[-132.38592385923857,69.31158824985502],[-132.4363243632436,69.3048339407755],[-132.44352443524434,69.29301389988632],[-132.43992439924398,69.28288243626702],[-132.4363243632436,69.27106239537784],[-132.4363243632436,69.25248804540911],[-132.4471244712447,69.24742231359949],[-132.46872468724686,69.24235658178983],[-132.48672486724865,69.23560227271028],[-132.4759247592476,69.22209365455123],[-132.48312483124832,69.20689645912228],[-132.48672486724865,69.17481349099452],[-132.49752497524975,69.15961629556557],[-132.50472504725047,69.19169926369335],[-132.50832508325084,69.23053654090066],[-132.51552515525157,69.26768524083806],[-132.54432544325442,69.28963674534654],[-132.56232562325624,69.29301389988632],[-132.5839258392584,69.29301389988632],[-132.61992619926198,69.28963674534654],[-132.63072630726307,69.28457101353689],[-132.6559265592656,69.26768524083806],[-132.67032670326702,69.26261950902841],[-132.72072720727206,69.26261950902841],[-132.7711277112771,69.25586519994889],[-132.7711277112771,69.23560227271028],[-132.79632796327962,69.22884796363076],[-132.82872828728287,69.2237822318211],[-132.84672846728466,69.20858503639218],[-132.8251282512825,69.20351930458253],[-132.83232832328324,69.18832210915357],[-132.87192871928718,69.15117340921617],[-132.88272882728828,69.14441910013662],[-132.8971289712897,69.13766479105709],[-132.9079290792908,69.13091048197757],[-132.9079290792908,69.11909044108839],[-132.89352893528934,69.11233613200886],[-132.87192871928718,69.11064755473896],[-132.83232832328324,69.11233613200886],[-132.84672846728466,69.10558182292934],[-132.8791287912879,69.09376178204013],[-132.89352893528934,69.08531889569073],[-132.90072900729007,69.07687600934133],[-132.9079290792908,69.04479304121355],[-132.8971289712897,69.03466157759425],[-132.88992889928898,69.0211529594352],[-132.88272882728828,69.00595576400625],[-132.88272882728828,68.9924471458472],[-132.89352893528934,68.98231568222789],[-132.91512915129152,68.98569283676764],[-132.92952929529295,69.0008900321966],[-132.92232922329222,69.02284153670507],[-132.92952929529295,69.02790726851472],[-132.9511295112951,69.04479304121355],[-132.92952929529295,69.06336739118225],[-132.92232922329222,69.07349885480156],[-132.92952929529295,69.08194174115096],[-132.94392943929438,69.08194174115096],[-132.96912969129693,69.06336739118225],[-132.98352983529836,69.0583016593726],[-133.0231302313023,69.05492450483285],[-133.03753037530376,69.0583016593726],[-133.08433084330844,69.07181027753168],[-133.10233102331023,69.07181027753168],[-133.1059310593106,69.0684331229919],[-133.1059310593106,69.06336739118225],[-133.10953109531096,69.0583016593726],[-133.10953109531096,69.05323592756295],[-133.12033120331205,69.0498587730232],[-133.1311313113131,69.0481701957533],[-133.15633156331563,69.0498587730232],[-133.1707317073171,69.0498587730232],[-133.18873188731888,69.04479304121355],[-133.2031320313203,69.03803873213403],[-133.21033210332104,69.02621869124485],[-133.21033210332104,69.0211529594352],[-133.2139321393214,69.01271007308577],[-133.21753217532176,69.00933291854602],[-133.2139321393214,69.00426718673637],[-133.20673206732067,68.9924471458472],[-133.2031320313203,68.98906999130742],[-133.21033210332104,68.97893852768811],[-133.22113221132213,68.97387279587846],[-133.23553235532356,68.97218421860859],[-133.24993249932498,68.96880706406884],[-133.23913239132392,68.96205275498929],[-133.21033210332104,68.94854413683024],[-133.22833228332283,68.9215269005121],[-133.23553235532356,68.9130840141627],[-133.24993249932498,68.90632970508318],[-133.28233282332823,68.89957539600363],[-133.30033300333002,68.8928210869241],[-133.3219332193322,68.8742467369554],[-133.33633336333364,68.86749242787587],[-133.35433354333543,68.86580385060597],[-133.36873368733688,68.86918100514575],[-133.3831338313383,68.8742467369554],[-133.39393393933938,68.8826896233048],[-133.4011340113401,68.8928210869241],[-133.37593375933758,68.89450966419398],[-133.36153361533616,68.9029525505434],[-133.36153361533616,68.9113954368928],[-133.38673386733868,68.9130840141627],[-133.46953469534697,68.8928210869241],[-133.46233462334624,68.88100104603492],[-133.4551345513455,68.87255815968552],[-133.44433444334442,68.8641152733361],[-133.429934299343,68.85904954152645],[-133.4551345513455,68.85060665517705],[-133.48033480334803,68.84891807790714],[-133.49113491134912,68.84216376882762],[-133.4839348393484,68.81683510977939],[-133.46953469534697,68.80163791435044],[-133.45153451534514,68.79150645073113],[-133.40833408334083,68.77630925530221],[-133.339933399334,68.76280063714313],[-133.3291332913329,68.75773490533348],[-133.31473314733148,68.75098059625395],[-133.3039330393304,68.74422628717443],[-133.23553235532356,68.7374719780949],[-133.21033210332104,68.72902909174547],[-133.21033210332104,68.71552047358642],[-133.17433174331742,68.71552047358642],[-133.06633066330664,68.69356896907794],[-132.95832958329584,68.6986347008876],[-132.92232922329222,68.69356896907794],[-132.92232922329222,68.70201185542737],[-132.94752947529474,68.71383189631655],[-132.97272972729726,68.72058620539607],[-133.03753037530376,68.72227478266595],[-133.0051300513005,68.71552047358642],[-133.0051300513005,68.707077587237],[-133.1491314913149,68.72396335993582],[-133.15273152731527,68.72902909174547],[-133.15273152731527,68.73578340082503],[-133.16353163531636,68.74253770990455],[-133.1779317793178,68.7476034417142],[-133.19233192331922,68.75266917352383],[-133.20673206732067,68.7560463280636],[-133.22473224732246,68.7560463280636],[-133.2571325713257,68.76448921441303],[-133.26073260732608,68.77968640984196],[-133.24993249932498,68.79150645073113],[-133.2319323193232,68.78644071892148],[-133.2139321393214,68.7746206780323],[-133.19233192331922,68.7661777916829],[-133.16713167131672,68.76280063714313],[-133.14193141931418,68.76280063714313],[-133.15633156331563,68.77630925530221],[-133.24273242732426,68.79994933708056],[-133.27153271532717,68.80501506889021],[-133.3291332913329,68.79488360527091],[-133.36153361533616,68.80332649162031],[-133.36153361533616,68.81176937796974],[-133.35433354333543,68.81176937796974],[-133.339933399334,68.81683510977939],[-133.35073350733506,68.82696657339869],[-133.36153361533616,68.83372088247822],[-133.38673386733868,68.8455409233674],[-133.36873368733688,68.84891807790714],[-133.31473314733148,68.85229523244692],[-133.2571325713257,68.86580385060597],[-133.23553235532356,68.86580385060597],[-133.22113221132213,68.8641152733361],[-133.2031320313203,68.85904954152645],[-133.17433174331742,68.8455409233674],[-133.1707317073171,68.84047519155774],[-133.159931599316,68.83034372793844],[-133.15633156331563,68.82527799612879],[-133.14553145531454,68.82190084158904],[-133.12393123931238,68.82190084158904],[-133.11313113131132,68.81683510977939],[-133.12033120331205,68.81176937796974],[-133.1059310593106,68.80501506889021],[-133.0951309513095,68.80332649162031],[-133.06633066330664,68.80332649162031],[-133.069930699307,68.81345795523961],[-133.07353073530734,68.81683510977939],[-133.03753037530376,68.82527799612879],[-132.9619296192962,68.80332649162031],[-132.92952929529295,68.80332649162031],[-132.95472954729547,68.82865515066857],[-132.96552965529656,68.84385234609752],[-132.9619296192962,68.85904954152645],[-132.94032940329402,68.86242669606622],[-132.90072900729007,68.85736096425657],[-132.86472864728648,68.8455409233674],[-132.82152821528214,68.82358941885892],[-132.7711277112771,68.81345795523961],[-132.72432724327243,68.79150645073113],[-132.709927099271,68.79657218254079],[-132.709927099271,68.81008080069986],[-132.74232742327422,68.82527799612879],[-132.74232742327422,68.83203230520832],[-132.70632706327063,68.83709803701797],[-132.51552515525157,68.80501506889021],[-132.48312483124832,68.80501506889021],[-132.46872468724686,68.81514653250949],[-132.46872468724686,68.83034372793844],[-132.4579245792458,68.83709803701797],[-132.44352443524434,68.83878661428787],[-132.4219242192422,68.83878661428787],[-132.4147241472415,68.84216376882762],[-132.40752407524076,68.8455409233674],[-132.40032400324003,68.8556723869867],[-132.39672396723967,68.85904954152645],[-132.3931239312393,68.86580385060597],[-132.49392493924938,68.90632970508318],[-132.55152551525515,68.91983832324223],[-132.58032580325803,68.90632970508318],[-132.48312483124832,68.88606677784458],[-132.5119251192512,68.87762389149515],[-132.5371253712537,68.88100104603492],[-132.5839258392584,68.8928210869241],[-132.6019260192602,68.89450966419398],[-132.61992619926198,68.8928210869241],[-132.63792637926377,68.88775535511445],[-132.6559265592656,68.87931246876505],[-132.6451264512645,68.85904954152645],[-132.67752677526775,68.84891807790714],[-132.72072720727206,68.8455409233674],[-132.76752767527677,68.84722950063727],[-132.78552785527856,68.85060665517705],[-132.79272792727926,68.85904954152645],[-132.77832778327783,68.87255815968552],[-132.76032760327604,68.87762389149515],[-132.74232742327422,68.8742467369554],[-132.72432724327243,68.8742467369554],[-132.709927099271,68.88606677784458],[-132.73872738727385,68.88775535511445],[-132.77832778327783,68.89619824146388],[-132.8179281792818,68.90801828235305],[-132.83232832328324,68.9215269005121],[-132.81072810728108,68.93672409594106],[-132.7639276392764,68.93672409594106],[-132.6739267392674,68.92659263232176],[-132.6991269912699,68.94516698229046],[-132.73872738727385,68.96036417771941],[-132.78552785527856,68.97049564133872],[-132.8179281792818,68.97556137314837],[-132.85032850328503,68.98569283676764],[-132.86472864728648,69.00933291854602],[-132.85752857528576,69.03297300032438],[-132.8251282512825,69.04479304121355],[-132.83232832328324,69.05492450483285],[-132.84672846728466,69.0583016593726],[-132.87192871928718,69.0583016593726],[-132.86112861128612,69.07349885480156],[-132.83952839528393,69.08363031842086],[-132.79272792727926,69.09207320477026],[-132.66312663126632,69.09207320477026],[-132.6451264512645,69.09713893657991],[-132.58032580325803,69.12922190470769],[-132.55152551525515,69.13766479105709],[-132.50832508325084,69.13935336832697],[-132.48312483124832,69.1477962546764],[-132.46872468724686,69.1579277182957],[-132.45432454324543,69.17143633645475],[-132.45072450724507,69.17987922280417],[-132.45072450724507,69.1866335318837],[-132.45432454324543,69.19338784096323],[-132.4579245792458,69.1950764182331],[-132.4471244712447,69.21027361366205],[-132.43272432724328,69.22884796363076],[-132.4147241472415,69.23729084998018],[-132.40752407524076,69.22547080909101],[-132.41832418324182,69.17481349099452],[-132.42552425524255,69.16299345010535],[-132.4291242912429,69.16130487283544],[-132.4291242912429,69.1579277182957],[-132.4291242912429,69.15117340921617],[-132.43272432724328,69.14273052286674],[-132.4363243632436,69.14104194559687],[-132.44352443524434,69.14104194559687],[-132.45072450724507,69.13935336832697],[-132.4579245792458,69.13259905924744],[-132.46512465124653,69.12753332743779],[-132.46872468724686,69.12246759562817],[-132.46872468724686,69.11233613200886],[-132.4039240392404,69.13091048197757],[-132.37152371523715,69.14948483194627],[-132.36072360723608,69.17819064553427],[-132.35712357123572,69.18832210915357],[-132.349923499235,69.21702792274158],[-132.34272342723426,69.22547080909101],[-132.32832328323283,69.2339136954404],[-132.30672306723068,69.23560227271028],[-132.29592295922959,69.23053654090066],[-132.29952299522995,69.2153393454717],[-132.29592295922959,69.2052078818524],[-132.31032310323104,69.19845357277288],[-132.32832328323283,69.1950764182331],[-132.34632346323463,69.1950764182331],[-132.29952299522995,69.18156780007405],[-132.2851228512285,69.17987922280417],[-132.2779227792278,69.18325637734392],[-132.2491224912249,69.20858503639218],[-132.24192241922418,69.21365076820183],[-132.22752227522275,69.21702792274158],[-132.21312213122133,69.22040507728136],[-132.20232202322023,69.21871650001145],[-132.1951219512195,69.21196219093193],[-132.19872198721987,69.20351930458253],[-132.21672216722166,69.18832210915357],[-132.23472234722345,69.15961629556557],[-132.23472234722345,69.1477962546764],[-132.21672216722166,69.15455056375592],[-132.2059220592206,69.16468202737522],[-132.16632166321662,69.2153393454717],[-132.17352173521735,69.22547080909101],[-132.1771217712177,69.2339136954404],[-132.16992169921699,69.24066800451993],[-132.16272162721629,69.24573373632958],[-132.1519215192152,69.24911089086936],[-132.14472144721447,69.25079946813923],[-132.13392133921337,69.25079946813923],[-132.12672126721267,69.24911089086936],[-132.1231212312123,69.24742231359949],[-132.11952119521195,69.24235658178983],[-132.1231212312123,69.23729084998018],[-132.11952119521195,69.23560227271028],[-132.0871208712087,69.2339136954404],[-132.02952029520296,69.25417662267901],[-132.00072000720007,69.25586519994889],[-131.98631986319862,69.25586519994889],[-131.96471964719646,69.25924235448866],[-131.9539195391954,69.26768524083806],[-131.9539195391954,69.28288243626702],[-131.93591935919358,69.28794816807667],[-131.90351903519036,69.3132768271249],[-131.8819188191882,69.31834255893455],[-131.89271892718926,69.3048339407755],[-131.91071910719108,69.29470247715619],[-131.91431914319142,69.28794816807667],[-131.89271892718926,69.28288243626702],[-131.8819188191882,69.28457101353689],[-131.8711187111871,69.28794816807667],[-131.86751867518674,69.29301389988632],[-131.86031860318604,69.29807963169594],[-131.82431824318243,69.31158824985502],[-131.80631806318064,69.32003113620442],[-131.75951759517596,69.3706884543009],[-131.71631716317162,69.40108284515881],[-131.73071730717308,69.40445999969856],[-131.75231752317524,69.40277142242869],[-131.8459184591846,69.37744276338043],[-131.85671856718568,69.37575418611056],[-131.86031860318604,69.38419707245998],[-131.85311853118532,69.39432853607926],[-131.86031860318604,69.40108284515881],[-131.86751867518674,69.40277142242869],[-131.89271892718926,69.41121430877809],[-131.91431914319142,69.41290288604799],[-131.9539195391954,69.39939426788891],[-131.97551975519755,69.40783715423834],[-131.91071910719108,69.42810008147691],[-131.87471874718747,69.43316581328656],[-131.8459184591846,69.42810008147691],[-131.85311853118532,69.42134577239739],[-131.83151831518316,69.42134577239739],[-131.78831788317882,69.43147723601669],[-131.7631176311763,69.43485439055644],[-131.6479164791648,69.42810008147691],[-131.67671676716768,69.44836300871552],[-131.6731167311673,69.46356020414447],[-131.6479164791648,69.47369166776375],[-131.61191611916118,69.47538024503365],[-131.5939159391594,69.47369166776375],[-131.54351543515435,69.46187162687457],[-131.47511475114752,69.45680589506492],[-131.45711457114572,69.45174016325527],[-131.42831428314284,69.43485439055644],[-131.4391143911439,69.42810008147691],[-131.4679146791468,69.42134577239739],[-131.48951489514894,69.40108284515881],[-131.48951489514894,69.3892628042696],[-131.48231482314822,69.3706884543009],[-131.48231482314822,69.35886841341173],[-131.4931149311493,69.3521141043322],[-131.50751507515076,69.34535979525268],[-131.53631536315362,69.33860548617315],[-131.51471514715146,69.33522833163337],[-131.47511475114752,69.34367121798277],[-131.4391143911439,69.35886841341173],[-131.41391413914138,69.37237703157078],[-131.40311403114032,69.39770569061903],[-131.40311403114032,69.41459146331786],[-131.39231392313923,69.42303434966726],[-131.359913599136,69.42134577239739],[-131.38151381513813,69.45511731779504],[-131.3671136711367,69.45511731779504],[-131.35631356313564,69.45342874052517],[-131.3419134191342,69.45174016325527],[-131.3311133111331,69.44836300871552],[-131.3311133111331,69.45511731779504],[-131.33831338313382,69.46187162687457],[-131.33831338313382,69.470314513224],[-131.33471334713346,69.4787573995734],[-131.32751327513276,69.48551170865292],[-131.31671316713167,69.49395459500235],[-131.30951309513097,69.4888888631927],[-131.30231302313024,69.48044597684327],[-131.2951129511295,69.47538024503365],[-131.25911259112593,69.42134577239739],[-131.24471244712447,69.40783715423834],[-131.24831248312483,69.42978865874682],[-131.269912699127,69.48551170865292],[-131.27351273512735,69.499020326812],[-131.2519125191252,69.50408605862165],[-131.23391233912338,69.48382313138305],[-131.21951219512195,69.45342874052517],[-131.2087120871209,69.40952573150821],[-131.21231212312122,69.39770569061903],[-131.22311223112231,69.38588564972986],[-131.23751237512374,69.3808199179202],[-131.32031320313203,69.3622455679515],[-131.359913599136,69.33522833163337],[-131.39231392313923,69.3234082907442],[-131.40671406714068,69.31496540439477],[-131.41391413914138,69.29807963169594],[-131.39231392313923,69.30652251804537],[-131.34911349113491,69.31665398166467],[-131.3239132391324,69.32509686801407],[-131.28071280712805,69.35886841341173],[-131.26271262712626,69.36562272249125],[-131.23751237512374,69.3706884543009],[-131.21951219512195,69.3706884543009],[-131.20151201512016,69.37237703157078],[-131.17991179911797,69.38588564972986],[-131.17631176311764,69.38757422699973],[-131.17271172711727,69.38757422699973],[-131.16551165511655,69.38757422699973],[-131.16191161911618,69.39432853607926],[-131.16191161911618,69.39601711334916],[-131.16551165511655,69.39939426788891],[-131.1691116911169,69.40277142242869],[-131.1691116911169,69.40783715423834],[-131.16551165511655,69.41628004058774],[-131.16551165511655,69.42134577239739],[-131.1691116911169,69.42810008147691],[-131.16191161911618,69.43316581328656],[-131.15111151111512,69.44329727690587],[-131.14751147511475,69.44836300871552],[-131.16191161911618,69.45511731779504],[-131.1691116911169,69.46693735868422],[-131.16551165511655,69.48213455411317],[-131.16191161911618,69.49564317227222],[-131.23391233912338,69.54123475855906],[-131.24831248312483,69.56825199487719],[-131.25551255512556,69.57500630395671],[-131.25551255512556,69.58176061303624],[-131.24471244712447,69.58513776757601],[-131.23031230312301,69.58176061303624],[-131.22311223112231,69.57669488122659],[-131.2087120871209,69.55812053125788],[-131.1979119791198,69.55136622217836],[-131.1691116911169,69.5361690267494],[-131.16551165511655,69.53448044947953],[-131.16191161911618,69.53279187220966],[-131.16191161911618,69.52941471766988],[-131.16191161911618,69.5277261404],[-131.15831158311585,69.52266040859035],[-131.15471154711548,69.52266040859035],[-131.14751147511475,69.52434898586023],[-131.14031140311403,69.52266040859035],[-131.12951129511293,69.52097183132048],[-131.12231122311223,69.51928325405058],[-131.1151111511115,69.5175946767807],[-131.11151111511114,69.50577463589153],[-131.12231122311223,69.4601830496047],[-131.1259112591126,69.45005158598539],[-131.1259112591126,69.44498585417574],[-131.12231122311223,69.43823154509622],[-131.1151111511115,69.42810008147691],[-131.11151111511114,69.42134577239739],[-131.11871118711187,69.40952573150821],[-131.14031140311403,69.39601711334916],[-131.14751147511475,69.38588564972986],[-131.14751147511475,69.37237703157078],[-131.13671136711366,69.36899987703103],[-131.1259112591126,69.37575418611056],[-131.1151111511115,69.38250849519008],[-131.1079110791108,69.39095138153951],[-131.089910899109,69.41459146331786],[-131.08631086310862,69.42472292693716],[-131.08271082710826,69.43823154509622],[-131.0791107911079,69.44667443144564],[-131.07551075510756,69.45342874052517],[-131.06471064710647,69.48044597684327],[-131.0611106111061,69.4888888631927],[-131.06831068310683,69.51421752224093],[-131.07551075510756,69.52603756313013],[-131.08271082710826,69.53448044947953],[-131.09711097110971,69.5361690267494],[-131.1079110791108,69.54123475855906],[-131.12951129511293,69.55980910852776],[-131.14031140311403,69.56487484033741],[-131.15471154711548,69.56656341760731],[-131.17271172711727,69.57162914941696],[-131.1871118711187,69.58007203576636],[-131.19431194311943,69.59189207665554],[-131.18351183511834,69.6070892720845],[-131.15831158311585,69.6172207357038],[-131.12951129511293,69.62059789024354],[-131.1079110791108,69.61890931297367],[-131.09351093510935,69.61046642662424],[-131.08631086310862,69.59864638573507],[-131.089910899109,69.58513776757601],[-131.1079110791108,69.57838345849649],[-131.0791107911079,69.55643195398801],[-131.0539105391054,69.53110329493975],[-131.03591035910358,69.50070890408188],[-131.02871028710285,69.46187162687457],[-131.03591035910358,69.44329727690587],[-131.0431104311043,69.42303434966726],[-131.0539105391054,69.40614857696843],[-131.06831068310683,69.3892628042696],[-131.0719107191072,69.38250849519008],[-131.07551075510756,69.36562272249125],[-131.08271082710826,69.35549125887198],[-131.11151111511114,69.33522833163337],[-131.11871118711187,69.32509686801407],[-131.09711097110971,69.3318511770936],[-131.06831068310683,69.34873694979242],[-131.03951039510395,69.36731129976116],[-131.02871028710285,69.38250849519008],[-131.02511025110252,69.40277142242869],[-130.97470974709748,69.47200309049387],[-130.9711097110971,69.47538024503365],[-130.9711097110971,69.4787573995734],[-130.97470974709748,69.4888888631927],[-130.9891098910989,69.5074632131614],[-130.99630996309963,69.5175946767807],[-130.99270992709927,69.52266040859035],[-130.9891098910989,69.52941471766988],[-130.98550985509854,69.54123475855906],[-130.9783097830978,69.55136622217836],[-130.96030960309602,69.54798906763858],[-130.94950949509496,69.53954618128918],[-130.9459094590946,69.53110329493975],[-130.9459094590946,69.52266040859035],[-130.94950949509496,69.5091517904313],[-130.9459094590946,69.49395459500235],[-130.9351093510935,69.45849447233482],[-130.9351093510935,69.45005158598539],[-130.9351093510935,69.43823154509622],[-130.93870938709387,69.42472292693716],[-130.94950949509496,69.41628004058774],[-130.9567095670957,69.41121430877809],[-130.96030960309602,69.40445999969856],[-130.96750967509675,69.40108284515881],[-130.99630996309963,69.36562272249125],[-131.01071010710106,69.3622455679515],[-131.02511025110252,69.35886841341173],[-131.0431104311043,69.3521141043322],[-131.05031050310504,69.33860548617315],[-131.04671046710467,69.32847402255385],[-131.03591035910358,69.31665398166467],[-131.02151021510215,69.30989967258512],[-131.0179101791018,69.31496540439477],[-131.00711007110073,69.3335397543635],[-130.98550985509854,69.35886841341173],[-130.9567095670957,69.3808199179202],[-130.9351093510935,69.39432853607926],[-130.90990909909098,69.39601711334916],[-130.89910899108992,69.38588564972986],[-130.89910899108992,69.36731129976116],[-130.90630906309065,69.34535979525268],[-130.9171091710917,69.32678544528395],[-130.9351093510935,69.30989967258512],[-130.99270992709927,69.27106239537784],[-130.99270992709927,69.25924235448866],[-130.99270992709927,69.24742231359949],[-130.9999099991,69.23222511817053],[-131.0179101791018,69.21702792274158],[-131.02511025110252,69.2052078818524],[-131.02151021510215,69.20183072731263],[-131.00711007110073,69.196764995503],[-131.00711007110073,69.19001068642345],[-131.01431014310143,69.17987922280417],[-131.02511025110252,69.17481349099452],[-131.0179101791018,69.15117340921617],[-131.01071010710106,69.14441910013662],[-131.00351003510036,69.13935336832697],[-130.99270992709927,69.13766479105709],[-130.98550985509854,69.14104194559687],[-130.97470974709748,69.14441910013662],[-130.96750967509675,69.1477962546764],[-130.9567095670957,69.14610767740652],[-130.93870938709387,69.13935336832697],[-130.92790927909277,69.13935336832697],[-130.95310953109532,69.16468202737522],[-130.95310953109532,69.17819064553427],[-130.93870938709387,69.19845357277288],[-130.93150931509314,69.21365076820183],[-130.93870938709387,69.23053654090066],[-130.94950949509496,69.24742231359949],[-130.9567095670957,69.26261950902841],[-130.9459094590946,69.27612812718749],[-130.87030870308703,69.32678544528395],[-130.819908199082,69.33860548617315],[-130.79830798307984,69.3521141043322],[-130.8091080910809,69.3605569906816],[-130.82350823508236,69.3706884543009],[-130.8271082710827,69.3808199179202],[-130.81270812708127,69.38588564972986],[-130.7911079110791,69.3892628042696],[-130.7659076590766,69.40277142242869],[-130.75150751507516,69.40783715423834],[-130.68670686706866,69.41796861785761],[-130.66150661506614,69.43316581328656],[-130.64710647106472,69.46187162687457],[-130.67230672306724,69.46187162687457],[-130.75150751507516,69.45511731779504],[-130.53550535505354,69.54292333582893],[-130.50670506705066,69.56149768579766],[-130.49230492304923,69.56825199487719],[-130.45630456304562,69.57838345849649],[-130.44910449104492,69.58513776757601],[-130.44550445504456,69.59526923119532],[-130.45270452704528,69.60371211754472],[-130.45990459904598,69.61046642662424],[-130.45270452704528,69.62228646751342],[-130.43830438304383,69.63072935386285],[-130.40590405904058,69.64086081748215],[-130.39150391503915,69.6459265492918],[-130.38070380703806,69.65774659018098],[-130.369903699037,69.66956663107015],[-130.3591035910359,69.67800951741955],[-130.33750337503375,69.68138667195933],[-130.33750337503375,69.68814098103886],[-130.34830348303484,69.68645240376898],[-130.3591035910359,69.68814098103886],[-130.369903699037,69.68982955830873],[-130.38070380703806,69.69489529011838],[-130.33750337503375,69.7016495991979],[-130.16830168301684,69.71178106281721],[-129.95589955899558,69.7539954945643],[-129.89829898298984,69.75568407183417],[-129.70029700297002,69.78945561723182],[-129.60669606696067,69.82491573989935],[-129.58149581495815,69.82660431716923],[-129.50949509495095,69.82491573989935],[-129.45189451894518,69.83673578078853],[-129.12429124291242,69.85531013075723],[-129.08469084690847,69.86881874891631],[-129.04509045090452,69.88908167615489],[-129.03069030690307,69.90090171704406],[-129.01989019890198,69.91103318066337],[-128.99468994689948,69.94142757152127],[-128.96588965889657,69.96506765329963],[-128.92628926289262,69.9768876941888],[-128.88668886688868,69.9768876941888],[-128.8578885788858,69.95493618968032],[-128.89028890288904,69.97013338510928],[-128.89748897488974,69.9566247669502],[-128.9010890108901,69.93129610790197],[-128.9118891188912,69.91103318066337],[-128.94428944289444,69.90259029431397],[-128.95868958689587,69.89414740796454],[-128.95868958689587,69.88401594434524],[-128.94428944289444,69.86544159437653],[-128.93708937089372,69.85699870802713],[-128.93348933489335,69.84517866713796],[-129.11349113491136,69.8485558216777],[-129.17469174691746,69.83167004897888],[-129.13149131491315,69.77763557634265],[-129.1350913509135,69.76750411272334],[-129.1350913509135,69.75906122637392],[-129.13869138691388,69.74724118548474],[-129.16029160291603,69.71515821735699],[-129.1530915309153,69.70333817646781],[-129.13869138691388,69.69658386738826],[-129.12069120691206,69.69489529011838],[-129.04149041490416,69.69320671284851],[-128.99468994689948,69.67969809468946],[-128.96948969489694,69.67969809468946],[-128.94068940689408,69.6830752492292],[-128.9190891908919,69.68814098103886],[-128.95868958689587,69.70671533100756],[-128.9730897308973,69.71853537189673],[-128.96588965889657,69.73204399005581],[-128.94068940689408,69.74217545367512],[-128.9118891188912,69.74892976275464],[-128.8290882908829,69.75230691729439],[-128.8038880388804,69.75906122637392],[-128.77868778687787,69.76750411272334],[-128.73908739087392,69.79452134904147],[-128.69588695886958,69.8097185444704],[-128.6418864188642,69.8485558216777],[-128.59868598685986,69.86881874891631],[-128.4258842588426,69.93467326244172],[-128.3358833588336,69.94987045787067],[-128.31068310683105,69.96337907602972],[-128.32148321483214,69.96844480783938],[-128.3250832508325,69.97013338510928],[-128.32148321483214,69.97351053964903],[-128.31788317883178,69.97857627145868],[-128.3142831428314,69.9853305805382],[-128.31068310683105,69.98870773507798],[-128.3142831428314,69.99883919869728],[-128.3142831428314,70.01572497139611],[-128.31788317883178,70.02416785774551],[-128.3250832508325,70.02923358955516],[-128.3358833588336,70.03429932136481],[-128.34668346683466,70.03936505317446],[-128.35028350283503,70.04780793952386],[-128.35748357483575,70.06300513495282],[-128.36468364683645,70.07989090765165],[-128.37188371883718,70.09677668035047],[-128.3610836108361,70.11703960758905],[-128.3358833588336,70.13054822574813],[-128.2710827108271,70.14067968936743],[-128.24228242282422,70.1508111529867],[-128.2278822788228,70.15925403933613],[-128.20628206282063,70.16431977114578],[-128.17028170281702,70.16769692568553],[-128.1558815588156,70.17107408022531],[-128.1270812708127,70.18458269838436],[-128.11268112681125,70.18795985292414],[-127.99387993879938,70.18120554384461],[-127.92187921879218,70.20315704835309],[-127.88587885878859,70.20822278016271],[-127.81747817478174,70.20822278016271],[-127.5870758707587,70.23692859375075],[-127.5150751507515,70.2217313983218],[-127.54387543875438,70.2403057482905],[-127.58347583475835,70.2504372119098],[-127.74187741877418,70.26225725279897],[-127.87147871478714,70.27238871641828],[-128.03348033480336,70.29434022092676],[-128.0622806228062,70.30616026181593],[-128.0622806228062,70.32473461178463],[-128.08028080280803,70.33148892086416],[-128.0910809108091,70.34162038448346],[-128.1018810188102,70.35344042537264],[-128.11268112681125,70.36694904353169],[-128.0838808388084,70.36694904353169],[-128.0082800828008,70.35681757991242],[-127.97947979479795,70.35006327083286],[-127.95787957879578,70.34837469356299],[-127.92907929079291,70.38552339350042],[-127.90747907479074,70.39396627984982],[-127.94347943479434,70.40240916619925],[-128.0622806228062,70.38045766169077],[-128.14148141481414,70.37539192988112],[-128.17748177481775,70.38045766169077],[-128.1990819908199,70.40072058892935],[-128.19548195481954,70.44631217521618],[-128.1630816308163,70.49528091604279],[-128.11988119881198,70.53580677051997],[-128.07668076680767,70.55775827502845],[-128.0082800828008,70.57970977953693],[-128.0082800828008,70.5813983568068],[-128.0082800828008,70.58646408861645],[-128.0082800828008,70.58984124315623],[-128.0010800108001,70.59321839769598],[-127.99027990279902,70.59321839769598],[-127.97947979479795,70.5915298204261],[-127.9650796507965,70.58646408861645],[-127.92907929079291,70.56788973864775],[-127.69867698676987,70.50034664785244],[-127.44667446674467,70.405786320739],[-127.23067230672306,70.30953741635568],[-127.1910719107191,70.28252018003758],[-127.1370713707137,70.25212578917967],[-127.12627126271263,70.2403057482905],[-127.11547115471154,70.22510855286154],[-127.05427054270542,70.18120554384461],[-126.98946989469894,70.11028529850952],[-126.92826928269282,70.06469371222269],[-126.91386913869138,70.04443078498412],[-126.89946899468995,70.02416785774551],[-126.89226892268923,70.01741354866598],[-126.8850688506885,70.01065923958646],[-126.8670686706867,70.00221635323703],[-126.82746827468274,69.99377346688763],[-126.79866798667987,69.98364200326833],[-126.78426784267842,69.98026484872855],[-126.77346773467735,69.9751991169189],[-126.79506795067951,69.9751991169189],[-126.79146791467915,69.94987045787067],[-126.78426784267842,69.94142757152127],[-126.76986769867699,69.93467326244172],[-126.79866798667987,69.92285322155254],[-126.80946809468094,69.91103318066337],[-126.80586805868059,69.89921313977419],[-126.76986769867699,69.86037586256688],[-126.72666726667266,69.801275658121],[-126.71946719467195,69.78607846269205],[-126.71226712267122,69.77763557634265],[-126.70146701467014,69.76750411272334],[-126.67986679866799,69.7539954945643],[-126.64746647466475,69.73035541278591],[-126.27666276662767,69.54798906763858],[-126.25866258662586,69.53448044947953],[-126.24426244262443,69.52603756313013],[-126.22626226262263,69.5175946767807],[-126.20826208262082,69.51252894497105],[-126.17226172261722,69.5074632131614],[-126.15786157861578,69.50070890408188],[-126.13266132661326,69.48213455411317],[-125.93825938259383,69.41459146331786],[-125.80865808658086,69.38588564972986],[-125.77625776257761,69.38588564972986],[-125.71505715057151,69.39432853607926],[-125.68625686256863,69.39432853607926],[-125.67545675456753,69.39095138153951],[-125.67185671856718,69.38588564972986],[-125.66465664656647,69.38250849519008],[-125.65745657456574,69.37575418611056],[-125.64665646656466,69.37237703157078],[-125.61065610656107,69.37237703157078],[-125.60345603456034,69.36899987703103],[-125.59985599855997,69.3622455679515],[-125.59265592655926,69.35549125887198],[-125.59265592655926,69.3521141043322],[-125.44865448654485,69.31834255893455],[-125.42345423454233,69.31834255893455],[-125.41265412654127,69.3234082907442],[-125.38025380253802,69.34367121798277],[-125.36945369453694,69.3521141043322],[-125.38025380253802,69.35549125887198],[-125.39825398253981,69.36562272249125],[-125.39105391053911,69.37237703157078],[-125.41265412654127,69.3808199179202],[-125.45585455854558,69.38757422699973],[-125.47385473854737,69.40108284515881],[-125.46665466654667,69.40783715423834],[-125.45945459454595,69.41459146331786],[-125.43065430654306,69.39939426788891],[-125.16065160651607,69.38588564972986],[-125.14625146251461,69.3892628042696],[-125.13545135451355,69.39939426788891],[-125.12825128251282,69.41121430877809],[-125.11745117451174,69.42134577239739],[-125.12465124651246,69.42303434966726],[-125.13545135451355,69.43147723601669],[-125.14265142651426,69.43485439055644],[-125.13185131851318,69.44329727690587],[-125.08865088650887,69.45511731779504],[-125.14985149851498,69.45511731779504],[-125.14985149851498,69.46187162687457],[-125.14265142651426,69.46187162687457],[-125.13185131851318,69.46187162687457],[-125.12465124651246,69.46524878141435],[-125.11745117451174,69.4686259359541],[-125.22545225452254,69.4686259359541],[-125.25425254252542,69.46187162687457],[-125.2470524705247,69.44836300871552],[-125.26145261452615,69.44836300871552],[-125.27585275852758,69.44836300871552],[-125.3010530105301,69.45511731779504],[-125.29745297452973,69.45849447233482],[-125.29745297452973,69.46187162687457],[-125.29385293852938,69.46524878141435],[-125.28665286652867,69.4686259359541],[-125.30465304653046,69.47369166776375],[-125.46665466654667,69.45511731779504],[-125.54225542255423,69.43485439055644],[-125.57825578255782,69.43485439055644],[-125.58545585455855,69.43147723601669],[-125.59265592655926,69.42472292693716],[-125.60345603456034,69.42134577239739],[-125.61425614256143,69.41965719512751],[-125.6250562505625,69.42134577239739],[-125.61425614256143,69.43147723601669],[-125.58905589055891,69.45005158598539],[-125.57465574655745,69.46187162687457],[-125.57825578255782,69.46524878141435],[-125.58185581855818,69.4686259359541],[-125.58185581855818,69.47200309049387],[-125.58185581855818,69.47538024503365],[-125.54225542255423,69.48044597684327],[-125.4990549905499,69.47538024503365],[-125.4990549905499,69.48213455411317],[-125.50985509855099,69.48720028592282],[-125.51345513455135,69.49226601773248],[-125.50625506255062,69.4973317495421],[-125.48465484654847,69.51421752224093],[-125.47025470254702,69.51421752224093],[-125.43425434254343,69.5091517904313],[-125.30825308253083,69.50239748135175],[-125.30825308253083,69.5091517904313],[-125.31545315453155,69.51252894497105],[-125.32985329853298,69.52097183132048],[-125.33705337053371,69.52266040859035],[-125.31545315453155,69.5277261404],[-125.29385293852938,69.52097183132048],[-125.2470524705247,69.50239748135175],[-125.18225182251823,69.49226601773248],[-125.11745117451174,69.4888888631927],[-125.15345153451534,69.50408605862165],[-125.239852398524,69.5175946767807],[-125.27585275852758,69.5361690267494],[-125.26865268652686,69.54461191309883],[-125.28665286652867,69.55136622217836],[-125.29385293852938,69.55136622217836],[-125.29385293852938,69.55812053125788],[-125.2830528305283,69.55812053125788],[-125.27225272252721,69.56149768579766],[-125.26505265052651,69.56656341760731],[-125.26145261452615,69.57500630395671],[-125.21825218252182,69.58513776757601],[-125.2470524705247,69.59526923119532],[-125.41625416254163,69.60371211754472],[-125.43785437854379,69.61215500389415],[-125.40185401854018,69.61046642662424],[-125.38745387453875,69.6155321584339],[-125.37665376653766,69.6256636220532],[-125.39465394653946,69.62735219932307],[-125.39825398253981,69.62904077659297],[-125.39825398253981,69.63241793113272],[-125.40545405454054,69.63410650840262],[-125.4090540905409,69.6357950856725],[-125.41265412654127,69.63748366294237],[-125.41985419854198,69.64086081748215],[-125.38025380253802,69.68476382649908],[-125.36945369453694,69.69489529011838],[-125.33705337053371,69.70333817646781],[-125.26505265052651,69.69489529011838],[-125.23265232652327,69.69489529011838],[-125.14265142651426,69.72866683551604],[-125.12825128251282,69.73035541278591],[-125.1030510305103,69.72697825824616],[-125.08865088650887,69.72866683551604],[-125.08505085050851,69.73204399005581],[-125.08505085050851,69.73710972186547],[-125.08505085050851,69.74217545367512],[-125.08505085050851,69.74724118548474],[-125.07785077850778,69.75061834002452],[-125.0670506705067,69.75061834002452],[-125.0310503105031,69.74724118548474],[-124.96984969849699,69.73373256732569],[-124.96624966249662,69.72528968097629],[-124.96984969849699,69.71684679462686],[-124.96624966249662,69.70840390827746],[-124.95544955449554,69.69489529011838],[-124.94824948249482,69.68645240376898],[-124.94464944649447,69.67800951741955],[-124.94464944649447,69.6645008992605],[-124.93744937449375,69.64930370383155],[-124.91584915849158,69.65268085837133],[-124.89424894248943,69.66618947653038],[-124.87984879848798,69.67800951741955],[-124.86544865448654,69.69996102192803],[-124.86184861848619,69.71346964008708],[-124.8510485104851,69.71853537189673],[-124.82224822248222,69.71515821735699],[-124.87264872648726,69.74048687640521],[-124.92664926649266,69.75230691729439],[-125.07785077850778,69.75906122637392],[-125.13905139051391,69.77425842180287],[-125.17145171451713,69.77763557634265],[-125.22185221852217,69.76750411272334],[-125.239852398524,69.77088126726312],[-125.26145261452615,69.7911441945017],[-125.25425254252542,69.79789850358122],[-125.26505265052651,69.80802996720053],[-125.27225272252721,69.8097185444704],[-125.2830528305283,69.8114071217403],[-125.21825218252182,69.84517866713796],[-125.20385203852038,69.85193297621748],[-125.18225182251823,69.85699870802713],[-125.16425164251643,69.85531013075723],[-125.17145171451713,69.8384243580584],[-125.16425164251643,69.82660431716923],[-125.16785167851678,69.801275658121],[-125.1570515705157,69.79789850358122],[-125.07425074250742,69.79789850358122],[-125.06345063450635,69.79958708085113],[-125.05985059850599,69.801275658121],[-125.06345063450635,69.80296423539087],[-125.05985059850599,69.80465281266078],[-125.0310503105031,69.82153858535958],[-125.02385023850238,69.83167004897888],[-125.02025020250203,69.84349008986806],[-125.02025020250203,69.85699870802713],[-125.02745027450274,69.86544159437653],[-124.9770497704977,69.88739309888501],[-124.93024930249302,69.92454179882245],[-124.91584915849158,69.93467326244172],[-124.89784897848978,69.94142757152127],[-124.70704707047071,69.9751991169189],[-124.69624696246962,69.98026484872855],[-124.68184681846819,69.97351053964903],[-124.66024660246603,69.97013338510928],[-124.63864638646386,69.97351053964903],[-124.63144631446315,69.9870191578081],[-124.63504635046351,69.99883919869728],[-124.64944649446494,70.01065923958646],[-124.66744667446675,70.02079070320576],[-124.68544685446855,70.02416785774551],[-124.70344703447034,70.01741354866598],[-124.7250472504725,69.9870191578081],[-124.73944739447394,69.9751991169189],[-124.76464764647646,69.97182196237915],[-124.80064800648006,69.9751991169189],[-124.83304833048331,69.98026484872855],[-124.85464854648546,69.98870773507798],[-124.82584825848258,70.00221635323703],[-124.79344793447935,70.01065923958646],[-124.8150481504815,70.01572497139611],[-124.90144901449014,70.01572497139611],[-124.91224912249123,70.01403639412621],[-124.91584915849158,70.00897066231656],[-124.91944919449195,70.00390493050693],[-124.9230492304923,69.99883919869728],[-124.93024930249302,69.9954620441575],[-124.94824948249482,69.99883919869728],[-124.97344973449734,70.00897066231656],[-124.99144991449914,70.01065923958646],[-125.00945009450095,70.00897066231656],[-125.02385023850238,70.00390493050693],[-125.05625056250562,69.98870773507798],[-125.05265052650526,69.9853305805382],[-125.0490504905049,69.9751991169189],[-125.0670506705067,69.9768876941888],[-125.09225092250922,69.9768876941888],[-125.1138511385114,69.97182196237915],[-125.12825128251282,69.96337907602972],[-125.12105121051209,69.96169049875985],[-125.1138511385114,69.9583133442201],[-125.1030510305103,69.9481818806008],[-125.12105121051209,69.94311614879115],[-125.13545135451355,69.94311614879115],[-125.15345153451534,69.9481818806008],[-125.17145171451713,69.9481818806008],[-125.18585185851859,69.94311614879115],[-125.19665196651965,69.93636183971162],[-125.21105211052111,69.93467326244172],[-125.21825218252182,69.9481818806008],[-125.19665196651965,69.96169049875985],[-125.18585185851859,69.97351053964903],[-125.18945189451895,69.9870191578081],[-125.20745207452075,70.00390493050693],[-125.19665196651965,70.00897066231656],[-125.16425164251643,70.01741354866598],[-125.12825128251282,70.03767647590456],[-125.05625056250562,70.05287367133351],[-125.03465034650347,70.06131655768294],[-125.02745027450274,70.06807086676247],[-125.02025020250203,70.08326806219142],[-125.01305013050131,70.0849566394613],[-125.00225002250022,70.0849566394613],[-124.99144991449914,70.08326806219142],[-124.98424984249843,70.07820233038177],[-124.98064980649806,70.06807086676247],[-124.98784987849879,70.04611936225399],[-125.00585005850058,70.04105363044434],[-125.02745027450274,70.04105363044434],[-125.0490504905049,70.03092216682504],[-125.00585005850058,70.02079070320576],[-124.95184951849518,70.01741354866598],[-124.89784897848978,70.02416785774551],[-124.85464854648546,70.03767647590456],[-124.95904959049591,70.03092216682504],[-124.95904959049591,70.03767647590456],[-124.94824948249482,70.03936505317446],[-124.93024930249302,70.04780793952386],[-124.91944919449195,70.05118509406364],[-124.86184861848619,70.05793940314317],[-124.85464854648546,70.06131655768294],[-124.84384843848439,70.0663822894926],[-124.83664836648367,70.06975944403234],[-124.82224822248222,70.07144802130222],[-124.81864818648187,70.06975944403234],[-124.81144811448115,70.05962798041304],[-124.80784807848079,70.05793940314317],[-124.80064800648006,70.05793940314317],[-124.78264782647827,70.06300513495282],[-124.6710467104671,70.07820233038177],[-124.64944649446494,70.074825175842],[-124.63144631446315,70.06469371222269],[-124.59544595445954,70.03767647590456],[-124.5990459904599,70.02247928047564],[-124.57744577445774,70.01403639412621],[-124.5450454504545,70.01910212593586],[-124.5270452704527,70.03767647590456],[-124.5630456304563,70.03767647590456],[-124.5270452704527,70.06131655768294],[-124.4910449104491,70.05456224860339],[-124.45144451444514,70.04274220771421],[-124.4190441904419,70.05118509406364],[-124.44784447844478,70.07989090765165],[-124.46584465844658,70.08664521673117],[-124.48744487444874,70.08157948492152],[-124.50904509045091,70.07313659857212],[-124.53424534245343,70.07144802130222],[-124.55944559445595,70.07651375311187],[-124.58104581045811,70.0849566394613],[-124.5630456304563,70.09002237127095],[-124.53784537845378,70.09002237127095],[-124.51984519845197,70.0933995258107],[-124.50544505445055,70.10521956669987],[-124.59544595445954,70.11703960758905],[-124.62424624246242,70.1136624530493],[-124.71064710647107,70.09171094854082],[-124.73944739447394,70.09171094854082],[-124.73944739447394,70.09846525762035],[-124.7250472504725,70.10015383489022],[-124.71064710647107,70.10184241216012],[-124.68544685446855,70.1136624530493],[-124.69624696246962,70.11872818485895],[-124.71064710647107,70.1221053393987],[-124.7250472504725,70.12041676212883],[-124.74664746647466,70.11535103031918],[-124.75024750247502,70.11535103031918],[-124.75384753847538,70.12041676212883],[-124.75384753847538,70.12717107120835],[-124.75024750247502,70.132236803018],[-124.7430474304743,70.13392538028788],[-124.73584735847359,70.13561395755778],[-124.72864728647286,70.13730253482765],[-124.70344703447034,70.1508111529867],[-124.6710467104671,70.15249973025661],[-124.60264602646026,70.14743399844696],[-124.59184591845919,70.14912257571683],[-124.56664566645667,70.15925403933613],[-124.55584555845559,70.16094261660601],[-124.53784537845378,70.15925403933613],[-124.51984519845197,70.14912257571683],[-124.50544505445055,70.14743399844696],[-124.44064440644406,70.15587688479636],[-124.40824408244083,70.15587688479636],[-124.38304383043831,70.14067968936743],[-124.42984429844299,70.1221053393987],[-124.44424444244441,70.11197387577943],[-124.43344433444335,70.10521956669987],[-124.41184411844118,70.10353098943],[-124.39024390243902,70.0950881030806],[-124.37224372243722,70.08326806219142],[-124.36144361443614,70.07144802130222],[-124.36144361443614,70.05625082587329],[-124.36864368643685,70.04105363044434],[-124.37944379443795,70.02923358955516],[-124.39024390243902,70.02079070320576],[-124.41544415444154,70.01403639412621],[-124.47664476644766,70.02079070320576],[-124.50544505445055,70.01065923958646],[-124.48744487444874,70.00221635323703],[-124.4370443704437,70.00221635323703],[-124.4190441904419,69.9954620441575],[-124.43344433444335,69.99208488961773],[-124.4730447304473,69.99377346688763],[-124.48024480244803,69.9870191578081],[-124.48744487444874,69.9768876941888],[-124.50544505445055,69.97351053964903],[-124.52344523445234,69.97351053964903],[-124.54144541445415,69.97013338510928],[-124.48744487444874,69.9583133442201],[-124.4370443704437,69.95493618968032],[-124.42984429844299,69.95155903514055],[-124.43344433444335,69.94311614879115],[-124.4370443704437,69.93298468517185],[-124.44064440644406,69.9279189533622],[-124.45144451444514,69.9194760670128],[-124.46224462244622,69.91778748974289],[-124.48744487444874,69.92116464428267],[-124.50544505445055,69.91609891247302],[-124.49824498244982,69.90765602612362],[-124.47664476644766,69.89752456250432],[-124.4550445504455,69.89414740796454],[-124.44784447844478,69.89077025342479],[-124.44784447844478,69.88401594434524],[-124.45144451444514,69.87388448072596],[-124.44424444244441,69.86881874891631],[-124.43344433444335,69.86375301710666],[-124.4190441904419,69.86037586256688],[-124.40464404644047,69.86037586256688],[-124.42624426244262,69.85024439894761],[-124.45144451444514,69.83504720351866],[-124.4730447304473,69.81478427628005],[-124.4730447304473,69.79789850358122],[-124.4910449104491,69.79620992631135],[-124.49824498244982,69.78945561723182],[-124.4910449104491,69.77932415361252],[-124.48384483844839,69.76750411272334],[-124.48024480244803,69.75906122637392],[-124.48744487444874,69.75061834002452],[-124.50544505445055,69.73542114459556],[-124.48024480244803,69.72022394916664],[-124.41544415444154,69.72360110370639],[-124.39384393843937,69.71853537189673],[-124.3650436504365,69.70333817646781],[-124.32544325443254,69.69827244465816],[-124.28584285842858,69.7016495991979],[-124.25704257042571,69.71178106281721],[-124.22824228242283,69.72697825824616],[-124.2030420304203,69.73204399005581],[-124.07344073440734,69.72866683551604],[-124.06984069840698,69.72528968097629],[-124.06264062640626,69.71853537189673],[-124.05544055440555,69.71178106281721],[-124.0410404104041,69.70840390827746],[-124.04464044640446,69.70333817646781],[-124.05544055440555,69.68814098103886],[-124.04824048240482,69.68645240376898],[-124.0410404104041,69.6830752492292],[-124.03384033840338,69.68138667195933],[-124.07344073440734,69.66618947653038],[-124.1850418504185,69.63241793113272],[-124.21024210242102,69.6155321584339],[-124.21744217442173,69.59526923119532],[-124.2210422104221,69.57331772668684],[-124.2390423904239,69.55136622217836],[-124.26784267842677,69.5361690267494],[-124.34344343443433,69.51590609951083],[-124.39024390243902,69.49564317227222],[-124.42984429844299,69.47369166776375],[-124.44064440644406,69.46187162687457],[-124.44064440644406,69.44836300871552],[-124.43344433444335,69.43654296782634],[-124.4190441904419,69.41459146331786],[-124.49824498244982,69.41459146331786],[-124.51984519845197,69.40783715423834],[-124.50184501845018,69.39601711334916],[-124.4370443704437,69.36899987703103],[-124.42264422644226,69.36731129976116],[-124.38304383043831,69.36731129976116],[-124.3470434704347,69.35717983614185],[-124.32544325443254,69.35380268160208],[-124.15984159841598,69.34873694979242],[-124.0950409504095,69.35886841341173],[-124.05544055440555,69.39432853607926],[-124.06264062640626,69.37913134065033],[-124.03744037440374,69.35717983614185],[-124.0230402304023,69.34704837252255],[-124.00504005040051,69.34535979525268],[-123.99423994239942,69.35380268160208],[-123.99783997839978,69.36393414522138],[-124.01944019440194,69.37913134065033],[-124.00864008640086,69.39601711334916],[-123.99783997839978,69.40445999969856],[-123.98343983439834,69.40445999969856],[-123.96543965439653,69.40108284515881],[-123.96183961839618,69.39770569061903],[-123.96183961839618,69.39263995880938],[-123.95463954639547,69.38757422699973],[-123.88263882638826,69.37406560884068],[-123.86823868238682,69.37237703157078],[-123.8610386103861,69.37406560884068],[-123.85023850238503,69.38250849519008],[-123.8430384303843,69.38588564972986],[-123.82863828638287,69.38757422699973],[-123.8070380703807,69.38757422699973],[-123.79623796237962,69.3808199179202],[-123.79983799837999,69.36562272249125],[-123.75303753037531,69.37575418611056],[-123.72783727837279,69.37744276338043],[-123.6990369903699,69.37237703157078],[-123.69183691836918,69.3706884543009],[-123.68463684636846,69.36562272249125],[-123.67743677436775,69.3605569906816],[-123.66303663036629,69.35886841341173],[-123.64863648636486,69.3622455679515],[-123.61623616236162,69.3706884543009],[-123.54423544235442,69.37744276338043],[-123.38223382233822,69.41459146331786],[-123.42183421834218,69.41965719512751],[-123.43623436234361,69.42641150420704],[-123.44343443434434,69.43823154509622],[-123.4470344703447,69.46356020414447],[-123.44343443434434,69.47706882230352],[-123.42903429034291,69.48213455411317],[-123.41103411034109,69.48551170865292],[-123.3570335703357,69.50239748135175],[-123.2670326703267,69.5091517904313],[-123.27423274232743,69.50239748135175],[-123.17703177031771,69.49564317227222],[-123.16623166231662,69.50070890408188],[-123.16263162631626,69.51084036770118],[-123.16623166231662,69.52434898586023],[-123.16263162631626,69.5361690267494],[-123.15903159031589,69.54292333582893],[-123.15543155431554,69.54630049036871],[-123.15183151831519,69.54798906763858],[-123.14463144631446,69.55643195398801],[-123.13743137431373,69.56149768579766],[-123.13023130231302,69.56825199487719],[-123.13023130231302,69.57500630395671],[-123.13383133831337,69.58851492211576],[-123.15903159031589,69.6070892720845],[-123.16263162631626,69.6155321584339],[-123.15903159031589,69.63072935386285],[-123.14463144631446,69.63917224021225],[-123.13023130231302,69.6459265492918],[-123.11583115831158,69.6543694356412],[-123.1050310503105,69.66618947653038],[-123.10143101431015,69.6746323628798],[-123.1050310503105,69.72360110370639],[-123.11223112231121,69.74386403094499],[-123.13023130231302,69.75906122637392],[-123.15903159031589,69.77088126726312],[-123.07623076230763,69.78776703996195],[-123.05463054630546,69.79789850358122],[-123.00423004230042,69.82491573989935],[-122.9790297902979,69.83504720351866],[-122.95022950229503,69.8384243580584],[-122.8350283502835,69.80296423539087],[-122.77382773827739,69.79452134904147],[-122.7450274502745,69.82491573989935],[-122.7450274502745,69.83167004897888],[-122.73062730627306,69.829981471709],[-122.70182701827018,69.82153858535958],[-122.68382683826837,69.81816143081983],[-122.64782647826479,69.82153858535958],[-122.62982629826298,69.82153858535958],[-122.5830258302583,69.8097185444704],[-122.5290252902529,69.81309569901018],[-122.48222482224821,69.801275658121],[-122.35262352623526,69.81478427628005],[-122.17262172621726,69.80465281266078],[-122.03582035820358,69.81816143081983],[-121.64341643416434,69.78945561723182],[-121.56061560615606,69.76919268999322],[-121.42741427414273,69.76750411272334],[-121.11781117811178,69.69489529011838],[-120.80820808208082,69.62397504478332],[-120.68220682206822,69.55643195398801],[-120.6390063900639,69.53448044947953],[-120.2790027900279,69.40783715423834],[-120.15660156601567,69.3892628042696],[-120.08460084600846,69.36393414522138],[-119.99819998199982,69.34704837252255],[-119.78579785797858,69.34704837252255],[-119.72459724597246,69.33016259982372],[-119.47619476194762,69.3048339407755],[-119.25659256592566,69.29639105442607],[-118.86778867788678,69.25586519994889],[-118.66618666186662,69.22547080909101],[-118.65178651786518,69.21871650001145],[-118.630186301863,69.20183072731263],[-118.47538475384754,69.12922190470769],[-118.21978219782198,69.07856458661121],[-118.03978039780398,69.02453011397495],[-117.83457834578346,68.99413572311707],[-117.6869768697687,68.98569283676764],[-117.37017370173702,68.95023271410011],[-117.30177301773017,68.92490405505188],[-117.16497164971649,68.89450966419398],[-117.12537125371253,68.8928210869241],[-117.07137071370713,68.90464112781328],[-117.04977049770497,68.90632970508318],[-117.0029700297003,68.90464112781328],[-116.98136981369814,68.90632970508318],[-116.96336963369635,68.9130840141627],[-116.97416974169741,68.91983832324223],[-116.99936999369993,68.92996978686153],[-117.01017010170102,68.94010125048081],[-116.97416974169741,68.94685555956036],[-116.94176941769418,68.93841267321093],[-116.86256862568627,68.8928210869241],[-116.84816848168481,68.88775535511445],[-116.83016830168302,68.88606677784458],[-116.82296822968229,68.88606677784458],[-116.79776797767977,68.89619824146388],[-116.7869678696787,68.89788681873375],[-116.77616776167761,68.89450966419398],[-116.76536765367653,68.88944393238435],[-116.75816758167582,68.88606677784458],[-116.46656466564664,68.8641152733361],[-116.42336423364233,68.86749242787587],[-116.41256412564125,68.88606677784458],[-116.38736387363873,68.88606677784458],[-116.32976329763298,68.87762389149515],[-116.25056250562506,68.85229523244692],[-116.2181621816218,68.83372088247822],[-116.20736207362074,68.83203230520832],[-115.96975969759697,68.81008080069986],[-115.9409594095941,68.81683510977939],[-116.09936099360993,68.8556723869867],[-116.12456124561245,68.87931246876505],[-116.08496084960849,68.87931246876505],[-116.08496084960849,68.88606677784458],[-116.31176311763117,68.94685555956036],[-116.32256322563225,68.95529844590976],[-116.31896318963189,68.96880706406884],[-116.29736297362973,68.97893852768811],[-116.26856268562685,68.98569283676764],[-116.21456214562146,68.98906999130742],[-116.16056160561605,68.98400425949777],[-115.90855908559085,68.92996978686153],[-115.87975879758797,68.92659263232176],[-115.86535865358654,68.92996978686153],[-115.84735847358473,68.93841267321093],[-115.83655836558366,68.94010125048081],[-115.76815768157681,68.94010125048081],[-115.79335793357933,68.95023271410011],[-115.86535865358654,68.96880706406884],[-115.88335883358833,68.97556137314837],[-115.9229592295923,68.99582430038694],[-115.9409594095941,69.00257860946647],[-115.91575915759158,69.00933291854602],[-115.80055800558006,68.99075856857729],[-115.74295742957429,68.97218421860859],[-115.71415714157142,68.96880706406884],[-115.58815588155882,68.97556137314837],[-115.56655566555665,68.97218421860859],[-115.49815498154982,68.94516698229046],[-115.48015480154801,68.94347840502058],[-115.44415444154441,68.94178982775071],[-115.42975429754297,68.93672409594106],[-115.42255422554226,68.93334694140128],[-115.37935379353793,68.9215269005121],[-115.21015210152102,68.89619824146388],[-115.11295112951129,68.8556723869867],[-115.06255062550625,68.85229523244692],[-115.06255062550625,68.85904954152645],[-115.06615066150661,68.86073811879635],[-115.07695076950769,68.86580385060597],[-115.03375033750338,68.87593531422527],[-114.98694986949869,68.86749242787587],[-114.82854828548285,68.81345795523961],[-114.79974799747997,68.79657218254079],[-114.77454774547745,68.77630925530221],[-114.74214742147421,68.7560463280636],[-114.52254522545225,68.7172090508563],[-114.43974439744397,68.68681465999842],[-114.44694446944469,68.68343750545864],[-114.45414454144542,68.6800603509189],[-114.46854468544686,68.66655173275981],[-114.43254432544325,68.65135453733089],[-114.41814418144182,68.64122307371159],[-114.41094410944109,68.62940303282241],[-114.40014400144001,68.61758299193323],[-114.37494374943749,68.60745152831393],[-114.20214202142022,68.5719914056464],[-114.18414184141841,68.56354851929697],[-114.18774187741877,68.55003990113792],[-114.18054180541804,68.53821986024874],[-114.16974169741697,68.52977697389932],[-114.15534155341552,68.52471124208967],[-114.1409414094141,68.52302266481979],[-114.12654126541265,68.51964551028004],[-114.10494104941048,68.50613689212096],[-114.0941409414094,68.50275973758121],[-114.07974079740796,68.49431685123179],[-114.06894068940689,68.47574250126308],[-114.06174061740617,68.4537909967546],[-114.05814058140581,68.44028237859555],[-114.11214112141121,68.44028237859555],[-114.12294122941229,68.43183949224613],[-114.11214112141121,68.41326514227742],[-114.08694086940869,68.40144510138825],[-114.05814058140581,68.39806794684847],[-114.00414004140042,68.39975652411835],[-114.00414004140042,68.4065108331979],[-114.00054000540005,68.42001945135695],[-113.98973989739898,68.4352166467859],[-113.9681396813968,68.44028237859555],[-113.95373953739538,68.4352166467859],[-113.90693906939069,68.39975652411835],[-113.91773917739177,68.3963793695786],[-113.93573935739357,68.39469079230872],[-113.95013950139501,68.39300221503882],[-113.95373953739538,68.38287075141952],[-113.95733957339573,68.37273928780024],[-113.96453964539646,68.36767355599059],[-114.04014040140402,68.32208196970376],[-114.05814058140581,68.30350761973506],[-114.04734047340473,68.28999900157598],[-114.02214022140221,68.26635891979763],[-114.0149401494015,68.25285030163857],[-114.03654036540365,68.2410302607494],[-114.07974079740796,68.2410302607494],[-114.20574205742057,68.2579160334482],[-114.22014220142201,68.25622745617832],[-114.23094230942309,68.25116172436867],[-114.2561425614256,68.23765310620962],[-114.2669426694267,68.23596452893975],[-114.3389433894339,68.23596452893975],[-114.34974349743497,68.2393416834795],[-114.37854378543786,68.25285030163857],[-114.38934389343893,68.25622745617832],[-114.40374403744038,68.2579160334482],[-114.43614436144361,68.2680474970675],[-114.45054450544505,68.2697360743374],[-114.62334623346233,68.25285030163857],[-114.83574835748357,68.26298176525785],[-114.90414904149041,68.28493326976633],[-114.94014940149401,68.29168757884585],[-114.9689496894969,68.28324469249645],[-114.94374943749438,68.27480180614702],[-114.8861488614886,68.24778456982892],[-114.83934839348393,68.23596452893975],[-114.75654756547566,68.19375009719266],[-114.77814778147781,68.19037294265291],[-114.8069480694807,68.19375009719266],[-114.83214832148322,68.19037294265291],[-114.8429484294843,68.17011001541431],[-114.86094860948609,68.15660139725526],[-114.8969489694897,68.1515356654456],[-115.24255242552425,68.18699578811314],[-115.22455224552245,68.17011001541431],[-115.19935199351993,68.15660139725526],[-115.17775177751777,68.1414042018263],[-115.1849518495185,68.1228298518576],[-115.19575195751958,68.11438696550817],[-115.21735217352173,68.102566924619],[-115.22815228152281,68.09074688372982],[-115.23535235352354,68.08061542011052],[-115.24255242552425,68.05528676106229],[-115.24975249752497,68.04346672017311],[-115.2209522095221,68.02995810201404],[-115.20295202952029,68.02489237020441],[-115.18855188551885,68.02320379293451],[-115.12735127351273,68.02320379293451],[-115.11295112951129,68.01644948385498],[-115.1309513095131,68.00800659750558],[-115.16695166951669,68.00125228842603],[-115.20295202952029,67.98267793845733],[-115.22815228152281,67.97761220664768],[-115.30375303753037,67.97254647483803],[-115.46935469354693,67.94046350671027],[-115.51255512555126,67.93877492944037],[-115.53415534155342,67.93370919763072],[-115.5449554495545,67.92357773401145],[-115.53775537755378,67.90331480677284],[-115.51975519755197,67.89487192042344],[-115.4729547295473,67.89318334315354],[-115.39375393753937,67.87967472499449],[-115.2569525695257,67.88642903407401],[-115.26415264152641,67.88474045680414],[-115.27135271352714,67.88136330226436],[-115.27855278552785,67.87798614772461],[-115.28215282152821,67.87292041591496],[-115.26415264152641,67.86110037502579],[-115.22815228152281,67.84590317959683],[-115.21015210152102,67.83408313870765],[-115.18855188551885,67.82395167508835],[-115.12735127351273,67.81213163419918],[-115.11655116551165,67.80368874784978],[-114.99774997749978,67.7918687069606],[-114.78894788947889,67.81719736600883],[-114.7169471694717,67.81213163419918],[-114.68454684546845,67.80368874784978],[-114.6341463414634,67.7817372433413],[-114.61614616146161,67.77667151153165],[-114.59814598145981,67.77498293426177],[-114.57654576545765,67.77667151153165],[-114.54414544145442,67.78342582061117],[-114.54054540545405,67.78680297515095],[-114.54054540545405,67.79355728423047],[-114.53694536945369,67.79693443877022],[-114.39654396543965,67.74121138886412],[-114.32814328143282,67.72770277070504],[-114.26334263342633,67.72770277070504],[-114.19854198541985,67.74121138886412],[-114.17334173341733,67.74289996613399],[-113.98253982539825,67.72432561616529],[-113.94293942939429,67.71081699800621],[-113.86013860138601,67.69561980257728],[-113.68013680136801,67.69393122530738],[-113.31653316533165,67.71081699800621],[-113.19413194131941,67.7006855343869],[-113.08253082530825,67.67704545260855],[-113.04293042930429,67.6736682980688],[-112.83412834128342,67.68717691622786],[-112.74772747727476,67.67704545260855],[-112.420124201242,67.6821111844182],[-112.35532355323554,67.69393122530738],[-112.34452344523444,67.70237411165681],[-112.34812348123481,67.71588272981586],[-112.36972369723696,67.73445707978456],[-112.32652326523265,67.74627712067377],[-112.18612186121861,67.72770277070504],[-112.02772027720277,67.74796569794364],[-111.99891998919989,67.74121138886412],[-111.98811988119881,67.72601419343516],[-111.98811988119881,67.70912842073633],[-111.98091980919808,67.69393122530738],[-111.970119701197,67.6922426480375],[-111.9269192691927,67.69393122530738],[-111.89811898118981,67.68548833895798],[-111.88371883718837,67.68548833895798],[-111.86931869318693,67.69393122530738],[-111.88371883718837,67.70575126619656],[-111.89811898118981,67.71250557527611],[-111.9161191611916,67.71925988435564],[-111.93051930519304,67.72263703889539],[-111.9269192691927,67.72939134797494],[-111.92331923319233,67.73445707978456],[-111.9161191611916,67.73445707978456],[-111.90531905319052,67.73445707978456],[-111.90531905319052,67.74121138886412],[-111.91251912519125,67.74289996613399],[-111.93051930519304,67.74796569794364],[-111.880118801188,67.76485147064247],[-111.54531545315453,67.72094846162551],[-111.54531545315453,67.72770277070504],[-111.57771577715776,67.74796569794364],[-111.55971559715597,67.75134285248339],[-111.55251552515524,67.75640858429304],[-111.54531545315453,67.76485147064247],[-111.53451534515345,67.76991720245212],[-111.51651516515165,67.771605779722],[-111.45891458914589,67.76991720245212],[-111.46971469714697,67.74458854340386],[-111.45171451714516,67.73614565705446],[-111.42651426514264,67.73952281159421],[-111.40131401314012,67.75134285248339],[-111.36531365313652,67.78680297515095],[-111.35451354513545,67.79355728423047],[-111.32931329313293,67.80537732511965],[-111.31851318513185,67.81382021146905],[-111.29331293312933,67.82564025235823],[-111.21771217712177,67.83408313870765],[-111.16731167311673,67.84590317959683],[-111.15651156511565,67.84252602505705],[-111.15291152911529,67.83070598416788],[-111.16371163711636,67.81719736600883],[-111.1781117811178,67.8104430569293],[-111.19971199711996,67.79862301604012],[-111.21051210512105,67.7901801296907],[-111.19971199711996,67.79355728423047],[-111.18531185311853,67.79693443877022],[-111.17091170911709,67.79524586150035],[-111.17091170911709,67.78342582061117],[-111.1781117811178,67.77498293426177],[-111.20331203312033,67.771605779722],[-111.21051210512105,67.76316289337257],[-111.18531185311853,67.76316289337257],[-111.15651156511565,67.76822862518222],[-111.0881108811088,67.7901801296907],[-111.07371073710736,67.78849155242082],[-111.06291062910628,67.7817372433413],[-111.0521105211052,67.77329435699187],[-111.03771037710376,67.76654004791234],[-111.01971019710197,67.76822862518222],[-110.90450904509045,67.80031159331],[-110.84690846908468,67.80706590238952],[-110.82170821708218,67.81719736600883],[-110.78570785707856,67.84083744778718],[-110.78210782107821,67.84421460232696],[-110.77130771307714,67.8475917568667],[-110.74970749707497,67.86278895229566],[-110.73890738907389,67.86616610683544],[-110.72450724507245,67.86785468410531],[-110.67770677706777,67.87967472499449],[-110.57690576905769,67.88811761134389],[-110.53370533705336,67.91513484766202],[-110.4221042210422,67.94890639305967],[-110.32850328503285,67.9472178157898],[-110.3321033210332,67.95228354759945],[-110.3429034290343,67.96916932029828],[-110.31410314103141,67.96916932029828],[-110.27810278102781,67.96410358848863],[-110.22050220502204,67.9472178157898],[-110.18090180901808,67.92357773401145],[-110.15930159301593,67.9185120022018],[-110.13050130501304,67.9269548885512],[-110.18810188101881,67.95397212486932],[-110.20250202502025,67.97423505210793],[-110.17730177301773,67.99956371115616],[-110.15570155701556,68.00800659750558],[-110.13050130501304,68.00969517477546],[-110.080100801008,68.00969517477546],[-110.05850058500585,68.00462944296581],[-110.01890018900188,67.9860550929971],[-109.99729997299973,67.98098936118745],[-109.9720997209972,67.96748074302837],[-109.97569975699757,67.93539777490062],[-110.00090000900009,67.88642903407401],[-109.99369993699936,67.85265748867636],[-109.96849968499684,67.83408313870765],[-109.93249932499324,67.83408313870765],[-109.91089910899109,67.85772322048601],[-109.92169921699217,67.86278895229566],[-109.95049950499505,67.87967472499449],[-109.95049950499505,67.88642903407401],[-109.87129871298713,67.88305187953426],[-109.83169831698316,67.87292041591496],[-109.78489784897849,67.8391488705173],[-109.7560975609756,67.82732882962813],[-109.69849698496985,67.8104430569293],[-109.70929709297093,67.79862301604012],[-109.73809738097381,67.7901801296907],[-109.74529745297453,67.77667151153165],[-109.65169651696517,67.75472000702317],[-109.62289622896229,67.74121138886412],[-109.65169651696517,67.73952281159421],[-109.720097200972,67.74965427521352],[-109.74169741697416,67.74458854340386],[-109.74529745297453,67.72939134797494],[-109.71649716497164,67.71925988435564],[-109.540095400954,67.68886549349773],[-109.51849518495185,67.69055407076763],[-109.49689496894969,67.70406268892668],[-109.48969489694896,67.71757130708573],[-109.51129511295113,67.72770277070504],[-109.49689496894969,67.74121138886412],[-109.45009450094501,67.74458854340386],[-109.43569435694357,67.75134285248339],[-109.42129421294213,67.76316289337257],[-109.40689406894069,67.76991720245212],[-109.39249392493925,67.76822862518222],[-109.38169381693817,67.75472000702317],[-109.38889388893888,67.75303142975329],[-109.40329403294032,67.74121138886412],[-109.35289352893528,67.72939134797494],[-109.33489334893349,67.72770277070504],[-109.32409324093241,67.72601419343516],[-109.31329313293132,67.72263703889539],[-109.30249302493024,67.72094846162551],[-109.28449284492845,67.72770277070504],[-109.26649266492664,67.73445707978456],[-109.25929259292593,67.73445707978456],[-109.07569075690756,67.72263703889539],[-109.06849068490685,67.72094846162551],[-109.06489064890648,67.71588272981586],[-109.06489064890648,67.71081699800621],[-109.06129061290612,67.70743984346646],[-109.01449014490144,67.67873402987846],[-109.00729007290073,67.6736682980688],[-108.99648996489965,67.65678252536998],[-108.97848978489785,67.59092801184454],[-108.98568985689856,67.59092801184454],[-108.97488974889748,67.57573081641561],[-108.93528935289352,67.54702500282758],[-108.9280892808928,67.53182780739866],[-108.94608946089461,67.52000776650948],[-108.99288992889929,67.50481057108053],[-109.01089010890108,67.49636768473113],[-109.02169021690217,67.4879247983817],[-109.02169021690217,67.4777933347624],[-109.01449014490144,67.46090756206357],[-108.99648996489965,67.44908752117439],[-108.95328953289533,67.44233321209487],[-108.93168931689317,67.43389032574547],[-108.93168931689317,67.41700455304664],[-108.86688866888669,67.41531597577674],[-108.84888848888488,67.39505304853816],[-108.84168841688417,67.36803581222003],[-108.82368823688236,67.35790434860073],[-108.8020880208802,67.3612815031405],[-108.78048780487805,67.3798558531092],[-108.75528755287553,67.41531597577674],[-108.74448744487445,67.45415325298404],[-108.73728737287372,67.59261658911441],[-108.73008730087301,67.6162566708928],[-108.7120871208712,67.6246995572422],[-108.640086400864,67.62976528905185],[-108.60048600486004,67.6246995572422],[-108.58248582485825,67.60781378454337],[-108.58248582485825,67.59599374365419],[-108.5860858608586,67.58586228003489],[-108.5860858608586,67.57741939368549],[-108.52488524885248,67.50481057108053],[-108.52128521285212,67.49467910746122],[-108.51768517685177,67.48117048930217],[-108.52128521285212,67.47272760295274],[-108.52488524885248,67.46428471660334],[-108.52488524885248,67.4507760984443],[-108.52128521285212,67.42375886212616],[-108.51048510485104,67.39167589399838],[-108.49248492484925,67.36465865768025],[-108.47088470884708,67.3511500395212],[-108.44928449284492,67.34946146225133],[-108.43488434884348,67.35621577133085],[-108.43128431284313,67.3697243894899],[-108.43128431284313,67.38492158491886],[-108.43848438484385,67.39167589399838],[-108.44208442084421,67.40011878034781],[-108.44568445684456,67.40687308942734],[-108.44208442084421,67.41362739850686],[-108.44208442084421,67.41869313031651],[-108.43848438484385,67.42544743939604],[-108.44568445684456,67.43389032574547],[-108.43128431284313,67.43389032574547],[-108.42048420484204,67.43557890301534],[-108.40968409684096,67.43895605755509],[-108.39888398883988,67.44402178936474],[-108.3880838808388,67.44908752117439],[-108.370083700837,67.44739894390452],[-108.32328323283232,67.43557890301534],[-108.31248312483125,67.42207028485626],[-108.30168301683017,67.40518451215746],[-108.28728287282873,67.39167589399838],[-108.26568265682657,67.38154443037908],[-107.9920799207992,67.28191837145602],[-107.96327963279633,67.24983540332823],[-107.94887948879489,67.24139251697883],[-107.94887948879489,67.23463820789931],[-107.93807938079381,67.21775243520048],[-107.89127891278912,67.16878369437387],[-107.8840788407884,67.15527507621482],[-107.87687876878769,67.13838930351599],[-107.91647916479164,67.13838930351599],[-107.8840788407884,67.09279771722916],[-107.88047880478804,67.07422336726043],[-107.88047880478804,67.05396044002185],[-107.8840788407884,67.0488947082122],[-107.90207902079021,67.05227186275195],[-107.920079200792,67.0590261718315],[-107.9560795607956,67.06915763545078],[-107.98847988479885,67.07253478999056],[-108.02088020880208,67.08435483087973],[-108.03888038880389,67.08435483087973],[-108.05328053280533,67.07928909907008],[-108.06768067680676,67.07422336726043],[-108.07848078480785,67.07084621272068],[-108.09648096480964,67.07084621272068],[-108.13968139681397,67.07928909907008],[-108.15768157681576,67.0776005218002],[-108.15768157681576,67.07591194453033],[-108.15768157681576,67.07084621272068],[-108.16128161281613,67.06578048091103],[-108.16488164881649,67.06409190364116],[-108.1720817208172,67.06071474910138],[-108.19728197281972,67.05564901729173],[-108.19008190081901,67.03200893551337],[-108.21528215282153,67.02694320370372],[-108.30168301683017,67.04045182186277],[-108.370083700837,67.06071474910138],[-108.4240842408424,67.0860434081496],[-108.48528485284852,67.10124060357856],[-108.51048510485104,67.11137206719786],[-108.56088560885608,67.14514361259552],[-108.58968589685897,67.15865223075457],[-108.6220862208622,67.16034080802444],[-108.6220862208622,67.15358649894492],[-108.58968589685897,67.13501214897622],[-108.57528575285752,67.12319210808704],[-108.56808568085681,67.11137206719786],[-108.550085500855,67.06915763545078],[-108.53928539285393,67.05564901729173],[-108.52488524885248,67.04214039913268],[-108.51768517685177,67.03707466732303],[-108.50688506885069,67.03707466732303],[-108.48888488884889,67.04214039913268],[-108.48888488884889,67.0488947082122],[-108.49248492484925,67.0573375945616],[-108.49248492484925,67.06409190364116],[-108.48168481684817,67.07253478999056],[-108.47448474484744,67.07591194453033],[-108.46368463684637,67.07422336726043],[-108.44928449284492,67.07084621272068],[-108.43128431284313,67.06071474910138],[-108.42048420484204,67.05227186275195],[-108.41688416884169,67.04720613094233],[-108.40608406084061,67.03707466732303],[-108.36648366483665,67.01681174008442],[-108.35568355683557,67.00499169919524],[-108.34128341283413,66.98979450376629],[-108.30528305283053,66.98304019468677],[-108.22248222482224,66.97966304014702],[-108.19008190081901,66.96953157652771],[-108.1720817208172,66.96784299925784],[-108.16488164881649,66.96446584471806],[-108.13968139681397,66.94589149474936],[-108.1180811808118,66.93913718566984],[-108.11448114481145,66.92393999024088],[-108.11448114481145,66.90367706300228],[-108.12168121681216,66.88510271303358],[-108.11448114481145,66.87834840395405],[-108.1360813608136,66.85977405398535],[-108.16848168481684,66.85639689944557],[-108.20088200882009,66.85808547671544],[-108.23328233282332,66.85133116763592],[-108.18648186481865,66.83951112674674],[-108.05328053280533,66.85133116763592],[-107.99567995679956,66.83275681766722],[-107.98487984879849,66.82769108585757],[-107.98127981279812,66.81418246769852],[-107.96687966879668,66.80405100407921],[-107.94887948879489,66.79391954045991],[-107.93807938079381,66.78209949957073],[-107.94167941679416,66.7736566132213],[-107.94887948879489,66.7449507996333],[-107.94887948879489,66.73481933601403],[-107.94527945279452,66.72299929512485],[-107.920079200792,66.70442494515612],[-107.91287912879129,66.6892277497272],[-107.90207902079021,66.67909628610789],[-107.88767887678877,66.66896482248859],[-107.87687876878769,66.66558766794881],[-107.86967869678696,66.67234197702837],[-107.8660786607866,66.68585059518742],[-107.86967869678696,66.69935921334647],[-107.87687876878769,66.7078020996959],[-107.85887858878588,66.72299929512485],[-107.86247862478625,66.7365079132839],[-107.87687876878769,66.74832795417308],[-107.88767887678877,66.76183657233213],[-107.85887858878588,66.76014799506225],[-107.83367833678336,66.74832795417308],[-107.76527765277652,66.69091632699707],[-107.68967689676896,66.64532474071024],[-107.70047700477005,66.64701331798011],[-107.71127711277113,66.64532474071024],[-107.71847718477184,66.64025900890059],[-107.72567725677257,66.63181612255119],[-107.70047700477005,66.62168465893188],[-107.63567635676357,66.56933876356553],[-107.5960759607596,66.54738725905705],[-107.58527585275853,66.53894437270762],[-107.56727567275672,66.53050148635822],[-107.54927549275493,66.5321900636281],[-107.5420754207542,66.54063294997749],[-107.55287552875528,66.55583014540645],[-107.52047520475205,66.55414156813657],[-107.49887498874989,66.53556721816787],[-107.44487444874449,66.46633555010266],[-107.43407434074341,66.45451550921348],[-107.4160741607416,66.44607262286408],[-107.36567365673656,66.4342525819749],[-107.27567275672756,66.36164375936994],[-107.24327243272432,66.34813514121089],[-107.21087210872109,66.35995518210007],[-107.20007200072,66.37852953206877],[-107.23967239672396,66.39203815022782],[-107.25047250472504,66.4139896547363],[-107.29367293672937,66.44100689105443],[-107.4160741607416,66.49841851823044],[-107.43407434074341,66.51023855911961],[-107.44487444874449,66.52543575454857],[-107.4520745207452,66.54738725905705],[-107.470074700747,66.55751872267632],[-107.49527495274953,66.56258445448597],[-107.52767527675276,66.5794702271848],[-107.55287552875528,66.58622453626433],[-107.56367563675637,66.59466742261375],[-107.56727567275672,66.60142173169328],[-107.57087570875709,66.6183075043921],[-107.57447574475745,66.62506181347163],[-107.62847628476284,66.66221051340906],[-107.65727657276572,66.7078020996959],[-107.76887768877688,66.73988506782368],[-107.80127801278013,66.76859088141168],[-107.74367743677436,66.75339368598273],[-107.71487714877148,66.75339368598273],[-107.68967689676896,66.76859088141168],[-107.69687696876969,66.77872234503096],[-107.70047700477005,66.78885380865026],[-107.70047700477005,66.79560811772978],[-107.69687696876969,66.80236242680934],[-107.71127711277113,66.83106824039734],[-107.71847718477184,66.87834840395405],[-107.7580775807758,66.92900572205053],[-107.76527765277652,66.94589149474936],[-107.76887768877688,66.95940011290841],[-107.76887768877688,66.97797446287711],[-107.76527765277652,66.99654881284584],[-107.7580775807758,67.00836885373502],[-107.73647736477365,67.01174600827477],[-107.68607686076861,66.98135161741689],[-107.63567635676357,66.96784299925784],[-107.62127621276213,66.96615442198794],[-107.60687606876068,66.97459730833737],[-107.60687606876068,66.98304019468677],[-107.61047610476105,66.99317165830607],[-107.61767617676176,66.9999259673856],[-107.62127621276213,67.00499169919524],[-107.62847628476284,67.01681174008442],[-107.65727657276572,67.05564901729173],[-107.6680766807668,67.06409190364116],[-107.6680766807668,67.06578048091103],[-107.65727657276572,67.07253478999056],[-107.64287642876428,67.0776005218002],[-107.62847628476284,67.0776005218002],[-107.61767617676176,67.07422336726043],[-107.56367563675637,67.04045182186277],[-107.5420754207542,67.03200893551337],[-107.52407524075241,67.0201888946242],[-107.51327513275133,67.0016145446555],[-107.52047520475205,67.0016145446555],[-107.48447484474845,66.91887425843123],[-107.51687516875168,66.92731714478063],[-107.53127531275312,66.93069429932041],[-107.53847538475385,66.92393999024088],[-107.54927549275493,66.91718568116136],[-107.56727567275672,66.91887425843123],[-107.59247592475924,66.92393999024088],[-107.60327603276032,66.93069429932041],[-107.62487624876249,66.94420291747946],[-107.64647646476465,66.95602295836866],[-107.67167671676717,66.95940011290841],[-107.69687696876969,66.95433438109876],[-107.68607686076861,66.93913718566984],[-107.65007650076501,66.91887425843123],[-107.63567635676357,66.89523417665288],[-107.61767617676176,66.88510271303358],[-107.5960759607596,66.8817255584938],[-107.58167581675816,66.88510271303358],[-107.58887588875889,66.90029990846253],[-107.57447574475745,66.89692275392275],[-107.5420754207542,66.88510271303358],[-107.53127531275312,66.87834840395405],[-107.53487534875349,66.86821694033475],[-107.54567545675457,66.85977405398535],[-107.57447574475745,66.8445768585564],[-107.56367563675637,66.83951112674674],[-107.52407524075241,66.82600250858769],[-107.51327513275133,66.82262535404791],[-107.49887498874989,66.82769108585757],[-107.48807488074881,66.84288828128652],[-107.47727477274772,66.8445768585564],[-107.46287462874629,66.83613397220697],[-107.44847448474485,66.81924819950814],[-107.43047430474304,66.80742815861896],[-107.40887408874089,66.81755962223826],[-107.4520745207452,66.84795401309617],[-107.470074700747,66.86652836306487],[-107.48447484474845,66.88510271303358],[-107.46287462874629,66.8834141357637],[-107.43407434074341,66.87834840395405],[-107.41247412474125,66.87834840395405],[-107.39447394473945,66.8918570221131],[-107.39447394473945,66.90536564027218],[-107.40527405274052,66.91887425843123],[-107.44127441274412,66.96277726744819],[-107.43767437674377,66.96953157652771],[-107.42327423274233,66.97459730833737],[-107.40167401674016,66.97459730833737],[-107.37647376473764,66.96953157652771],[-107.35487354873548,66.96108869017829],[-107.33687336873369,66.94926864928911],[-107.30807308073081,66.93407145386018],[-107.22167221672217,66.9019884857324],[-107.20367203672036,66.88847986757335],[-107.19647196471965,66.88003698122392],[-107.16047160471605,66.8547083221757],[-107.14607146071461,66.83951112674674],[-107.13167131671317,66.83106824039734],[-107.11367113671136,66.82431393131779],[-107.08847088470884,66.82262535404791],[-107.08847088470884,66.83106824039734],[-107.16047160471605,66.87834840395405],[-107.13527135271353,66.8918570221131],[-107.26847268472685,66.98979450376629],[-107.31167311673117,67.01512316281455],[-107.36927369273693,67.03369751278325],[-107.40167401674016,67.04045182186277],[-107.39447394473945,67.05058328548208],[-107.36207362073621,67.0674690581809],[-107.24687246872469,67.08435483087973],[-107.25047250472504,67.09786344903878],[-107.23967239672396,67.10630633538821],[-107.20367203672036,67.12488068535691],[-107.22527225272252,67.13163499443644],[-107.24327243272432,67.12994641716656],[-107.26487264872648,67.12656926262682],[-107.28647286472865,67.12488068535691],[-107.30447304473044,67.12825783989669],[-107.33687336873369,67.14176645805574],[-107.39087390873908,67.14852076713527],[-107.42327423274233,67.15865223075457],[-107.52767527675276,67.21268670339083],[-107.54567545675457,67.22957247608966],[-107.56007560075601,67.26840975329694],[-107.58887588875889,67.31062418504402],[-107.65727657276572,67.37310154402968],[-107.69327693276932,67.38661016218873],[-107.71487714877148,67.40518451215746],[-107.7220772207722,67.42038170758639],[-107.69687696876969,67.42713601666591],[-107.68247682476824,67.42038170758639],[-107.66447664476644,67.40856166669721],[-107.65007650076501,67.40011878034781],[-107.63567635676357,67.40687308942734],[-107.62847628476284,67.4507760984443],[-107.58527585275853,67.4777933347624],[-107.5780757807578,67.48961337565157],[-107.58527585275853,67.50143341654075],[-107.59967599675997,67.50987630289018],[-107.6140761407614,67.5166306119697],[-107.65007650076501,67.52338492104923],[-107.6680766807668,67.52845065285888],[-107.67527675276753,67.54027069374806],[-107.68247682476824,67.54871358009748],[-107.70767707677076,67.57066508460596],[-107.74727747277473,67.59261658911441],[-107.81207812078121,67.61963382543254],[-107.8660786607866,67.63145386632172],[-107.93087930879308,67.66184825717963],[-107.96327963279633,67.6837997616881],[-107.98847988479885,67.69393122530738],[-107.99927999279993,67.7006855343869],[-108.00648006480064,67.70912842073633],[-108.01728017280172,67.73445707978456],[-108.01368013680137,67.75978573883282],[-107.99927999279993,67.7800486660714],[-107.95967959679597,67.8205745205486],[-107.9560795607956,67.83239456143778],[-107.94887948879489,67.84421460232696],[-107.94167941679416,67.85434606594626],[-107.93087930879308,67.85772322048601],[-107.8660786607866,67.86278895229566],[-107.74367743677436,67.89487192042344],[-107.71127711277113,67.89993765223309],[-107.70047700477005,67.90331480677284],[-107.68607686076861,67.91175769312227],[-107.6680766807668,67.93033204309097],[-107.66087660876609,67.9472178157898],[-107.67167671676717,67.95397212486932],[-107.75087750877509,67.9657921657585],[-107.76887768877688,67.96410358848863],[-107.78687786877869,67.9573492794091],[-107.80487804878048,67.9556607021392],[-107.81567815678156,67.96241501121875],[-107.82287822878229,67.97254647483803],[-107.83367833678336,67.98098936118745],[-107.85167851678517,67.9860550929971],[-107.89127891278912,67.98774367026698],[-107.90927909279092,67.9944979793465],[-107.920079200792,68.00631802023568],[-107.91287912879129,68.00969517477546],[-107.90207902079021,68.01307232931521],[-107.89487894878948,68.02658094747429],[-107.89487894878948,68.05022102925264],[-107.89127891278912,68.073861111031],[-107.88047880478804,68.0924354609997],[-107.86247862478625,68.10425550188887],[-107.8480784807848,68.10763265642865],[-107.83727837278373,68.10425550188887],[-107.82647826478265,68.09750119280935],[-107.81567815678156,68.09074688372982],[-107.7940779407794,68.08905830645995],[-107.75087750877509,68.0924354609997],[-107.73287732877328,68.08736972919004],[-107.69687696876969,68.07723826557077],[-107.71847718477184,68.06035249287194],[-107.75087750877509,68.05697533833217],[-107.81567815678156,68.05697533833217],[-107.80127801278013,68.04515529744299],[-107.78327783277832,68.04177814290321],[-107.73647736477365,68.04346672017311],[-107.76167761677617,68.03502383382369],[-107.79047790477904,68.03164667928394],[-107.81927819278192,68.02489237020441],[-107.83367833678336,68.00969517477546],[-107.7940779407794,67.99280940207663],[-107.77247772477725,67.98943224753685],[-107.75087750877509,67.9944979793465],[-107.74727747277473,68.00125228842603],[-107.74367743677436,68.00631802023568],[-107.740077400774,68.01138375204533],[-107.73647736477365,68.01644948385498],[-107.69327693276932,68.04515529744299],[-107.68247682476824,68.04853245198277],[-107.64647646476465,68.05190960652251],[-107.6140761407614,68.06372964741169],[-107.58167581675816,68.06710680195147],[-107.5060750607506,68.06204107014182],[-107.43047430474304,68.04346672017311],[-107.37287372873729,68.04684387471286],[-107.27207272072721,68.07723826557077],[-107.19287192871928,68.11776412004795],[-107.14607146071461,68.131272738207],[-107.10647106471065,68.12620700639735],[-107.12447124471244,68.10932123369852],[-107.13167131671317,68.10087834734912],[-107.13527135271353,68.09074688372982],[-107.02727027270272,68.10425550188887],[-106.96966969669697,68.09918977007925],[-106.95166951669516,68.10087834734912],[-106.96966969669697,68.11100981096843],[-106.92646926469264,68.12620700639735],[-106.86526865268652,68.1228298518576],[-106.75726757267573,68.10425550188887],[-106.75726757267573,68.11100981096843],[-106.74646746467464,68.13971562455643],[-106.76446764467644,68.16842143814443],[-106.78966789667896,68.19206151992279],[-106.81486814868148,68.20725871535174],[-106.78966789667896,68.22414448805057],[-106.75366753667537,68.22921021986019],[-106.68166681666817,68.22921021986019],[-106.6960669606696,68.20725871535174],[-106.69966699666996,68.19881582900231],[-106.6780667806678,68.19037294265291],[-106.660066600666,68.17686432449383],[-106.64566645666456,68.17348716995409],[-106.62766627666277,68.18530721084326],[-106.63126631266313,68.21063586989149],[-106.63846638466384,68.23765310620962],[-106.63126631266313,68.2494731470988],[-106.59886598865988,68.24609599255902],[-106.4980649806498,68.20219298354209],[-106.47646476464764,68.19037294265291],[-106.4620646206462,68.17517574722396],[-106.44406444064441,68.15322424271548],[-106.43326433264332,68.15828997452513],[-106.41166411664116,68.17517574722396],[-106.40086400864008,68.18024147903361],[-106.390063900639,68.18193005630349],[-106.36126361263612,68.18193005630349],[-106.34686346863468,68.18699578811314],[-106.48366483664836,68.22921021986019],[-106.49446494464945,68.24609599255902],[-106.48006480064801,68.25622745617832],[-106.44766447664476,68.27142465160728],[-106.43686436864368,68.28324469249645],[-106.4260642606426,68.30350761973506],[-106.43326433264332,68.31532766062423],[-106.46926469264693,68.33221343332306],[-106.44406444064441,68.35078778329176],[-106.41526415264153,68.35585351510142],[-106.35406354063541,68.35078778329176],[-106.32886328863289,68.35923066964116],[-106.27486274862748,68.3862479059593],[-106.24966249662496,68.39300221503882],[-106.18126181261812,68.39300221503882],[-106.17046170461704,68.38962506049907],[-106.16326163261633,68.37949359687977],[-106.1560615606156,68.37105071053034],[-106.14886148861488,68.36429640145082],[-106.12366123661236,68.36598497872069],[-106.07686076860769,68.39300221503882],[-106.05166051660517,68.39975652411835],[-106.03726037260373,68.39806794684847],[-106.02286022860228,68.39469079230872],[-106.00846008460084,68.39300221503882],[-105.99045990459905,68.3963793695786],[-105.98325983259832,68.40313367865812],[-105.97605976059761,68.4149537195473],[-105.97245972459724,68.42339660589673],[-105.96885968859688,68.42846233770635],[-105.94365943659436,68.42677376043648],[-105.90765907659076,68.41664229681717],[-105.87525875258753,68.40988798773765],[-105.84285842858428,68.42339660589673],[-105.83925839258393,68.43015091497625],[-105.83565835658356,68.4436595331353],[-105.82845828458284,68.45041384221483],[-105.81765817658176,68.45547957402448],[-105.81045810458104,68.44703668767508],[-105.79965799657997,68.42846233770635],[-105.7780577805778,68.42170802862682],[-105.74925749257493,68.42170802862682],[-105.72765727657276,68.42677376043648],[-105.73125731257312,68.44028237859555],[-105.72045720457204,68.45716815129438],[-105.7060570605706,68.47236534672331],[-105.69885698856989,68.48925111942214],[-105.7060570605706,68.50613689212096],[-105.71685716857168,68.51289120120049],[-105.74565745657456,68.51795693301014],[-105.75645756457564,68.52302266481979],[-105.76365763657637,68.52977697389932],[-105.7780577805778,68.55003990113792],[-105.76365763657637,68.56354851929697],[-105.7240572405724,68.5821228692657],[-105.7060570605706,68.59394291015488],[-105.70245702457024,68.6006972192344],[-105.69885698856989,68.61589441466333],[-105.69165691656916,68.62264872374288],[-105.68085680856808,68.62771445555254],[-105.670056700567,68.62771445555254],[-105.65925659256592,68.62940303282241],[-105.64845648456485,68.63953449644171],[-105.69885698856989,68.64122307371159],[-105.72765727657276,68.63784591917181],[-105.74565745657456,68.62940303282241],[-105.76725767257672,68.61758299193323],[-105.79245792457924,68.61251726012358],[-105.81765817658176,68.61251726012358],[-105.87885878858788,68.63953449644171],[-105.94005940059401,68.63953449644171],[-106.00486004860048,68.63109161009228],[-106.05166051660517,68.61927156920311],[-106.05886058860588,68.6006972192344],[-106.08766087660877,68.59225433288498],[-106.52326523265232,68.52639981935957],[-106.5520655206552,68.51626835574027],[-106.42246422464224,68.51626835574027],[-106.45486454864549,68.50951404666074],[-106.53766537665376,68.50782546939084],[-106.55926559265592,68.48925111942214],[-106.53046530465305,68.48418538761248],[-106.51246512465124,68.47236534672331],[-106.50886508865088,68.45885672856426],[-106.53046530465305,68.44703668767508],[-106.54846548465484,68.44872526494495],[-106.55926559265592,68.45547957402448],[-106.56646566465665,68.46392246037391],[-106.570065700657,68.46898819218356],[-106.61686616866169,68.47236534672331],[-106.63486634866348,68.46898819218356],[-106.62766627666277,68.45210241948473],[-106.61326613266132,68.43859380132565],[-106.59166591665917,68.42677376043648],[-106.57366573665736,68.42001945135695],[-106.5160651606516,68.41664229681717],[-106.48726487264872,68.40819941046777],[-106.48726487264872,68.38962506049907],[-106.50526505265053,68.3778050196099],[-106.5340653406534,68.36936213326047],[-106.55566555665557,68.35923066964116],[-106.56646566465665,68.34065631967246],[-106.55566555665557,68.32714770151341],[-106.5340653406534,68.31195050608446],[-106.52686526865268,68.30181904246516],[-106.5520655206552,68.2967533106555],[-106.58086580865809,68.2967533106555],[-106.59166591665917,68.30013046519528],[-106.60246602466025,68.3068847742748],[-106.62046620466204,68.32883627878329],[-106.6240662406624,68.33221343332306],[-106.63126631266313,68.33390201059294],[-106.64206642066421,68.34909920602189],[-106.65286652866529,68.35078778329176],[-106.71766717667177,68.35078778329176],[-106.72126721267212,68.35585351510142],[-106.72486724867248,68.36429640145082],[-106.72486724867248,68.38287075141952],[-106.7860678606786,68.4149537195473],[-106.80766807668077,68.41157656500755],[-106.81126811268112,68.39806794684847],[-106.79326793267933,68.3862479059593],[-106.81126811268112,68.37105071053034],[-106.840068400684,68.37105071053034],[-106.89766897668976,68.3862479059593],[-106.91566915669156,68.3862479059593],[-106.95526955269553,68.37273928780024],[-107.00927009270093,68.37105071053034],[-107.02727027270272,68.36429640145082],[-107.02367023670236,68.34909920602189],[-107.04527045270453,68.33727916513268],[-107.09567095670957,68.32039339243386],[-107.11007110071101,68.31363908335433],[-107.12087120871209,68.30857335154468],[-107.13167131671317,68.30013046519528],[-107.13527135271353,68.28662184703623],[-107.14247142471424,68.27142465160728],[-107.15687156871569,68.2697360743374],[-107.18927189271892,68.27649038341693],[-107.24687246872469,68.2680474970675],[-107.27567275672756,68.2680474970675],[-107.30087300873008,68.3068847742748],[-107.33687336873369,68.31870481516398],[-107.37287372873729,68.32377054697363],[-107.470074700747,68.31870481516398],[-107.50967509675097,68.32377054697363],[-107.52407524075241,68.34065631967246],[-107.54567545675457,68.35247636056164],[-107.69327693276932,68.34234489694234],[-107.72927729277292,68.33390201059294],[-107.74367743677436,68.33221343332306],[-107.76527765277652,68.33390201059294],[-107.80487804878048,68.34572205148211],[-107.82647826478265,68.34403347421224],[-107.8480784807848,68.33390201059294],[-107.86247862478625,68.31363908335433],[-107.87327873278733,68.29168757884585],[-107.88767887678877,68.2697360743374],[-107.87687876878769,68.26129318798797],[-107.86247862478625,68.25116172436867],[-107.84087840878408,68.24440741528915],[-107.82287822878229,68.24271883801927],[-107.7940779407794,68.24271883801927],[-107.77967779677796,68.2410302607494],[-107.76527765277652,68.23596452893975],[-107.7580775807758,68.2308987971301],[-107.74727747277473,68.21739017897102],[-107.74367743677436,68.21401302443127],[-107.72927729277292,68.20725871535174],[-107.62127621276213,68.18361863357336],[-107.60327603276032,68.17517574722396],[-107.6140761407614,68.16673286087453],[-107.64287642876428,68.16673286087453],[-107.73287732877328,68.18024147903361],[-107.84447844478444,68.18024147903361],[-107.8660786607866,68.17686432449383],[-107.87687876878769,68.16842143814443],[-107.8840788407884,68.159978551795],[-107.89487894878948,68.15322424271548],[-107.92367923679237,68.14815851090583],[-108.010080100801,68.15491281998536],[-107.98847988479885,68.17179859268418],[-108.15048150481505,68.17348716995409],[-108.18288182881828,68.17011001541431],[-108.2440824408244,68.14478135636608],[-108.3880838808388,68.11100981096843],[-108.42048420484204,68.1228298518576],[-108.43488434884348,68.13633847001665],[-108.43848438484385,68.14646993363596],[-108.43488434884348,68.15660139725526],[-108.41688416884169,68.16504428360466],[-108.39888398883988,68.16842143814443],[-108.37728377283773,68.16673286087453],[-108.36288362883629,68.159978551795],[-108.37728377283773,68.14815851090583],[-108.38088380883809,68.14646993363596],[-108.38088380883809,68.13971562455643],[-108.35568355683557,68.13971562455643],[-108.33768337683377,68.15491281998536],[-108.33048330483305,68.17855290176374],[-108.32688326883269,68.20388156081196],[-108.33048330483305,68.21401302443127],[-108.34128341283413,68.22414448805057],[-108.35208352083521,68.23258737439997],[-108.36288362883629,68.23596452893975],[-108.38088380883809,68.2308987971301],[-108.3880838808388,68.22076733351079],[-108.39168391683917,68.21063586989149],[-108.39528395283952,68.20050440627219],[-108.39888398883988,68.19543867446254],[-108.39888398883988,68.19037294265291],[-108.40248402484025,68.18699578811314],[-108.40968409684096,68.18024147903361],[-108.44928449284492,68.18699578811314],[-108.45648456484565,68.18699578811314],[-108.45648456484565,68.19712725173244],[-108.44928449284492,68.21063586989149],[-108.44208442084421,68.22414448805057],[-108.41688416884169,68.2494731470988],[-108.40248402484025,68.2697360743374],[-108.39888398883988,68.28662184703623],[-108.41688416884169,68.30350761973506],[-108.45288452884529,68.31195050608446],[-108.48528485284852,68.30350761973506],[-108.51768517685177,68.28999900157598],[-108.56088560885608,68.2781789606868],[-108.58248582485825,68.2596046107181],[-108.60048600486004,68.25622745617832],[-108.69768697686976,68.25622745617832],[-108.70848708487084,68.25116172436867],[-108.71928719287193,68.2410302607494],[-108.73368733687336,68.23427595166984],[-108.75168751687517,68.2393416834795],[-108.79488794887949,68.25453887890845],[-108.80568805688057,68.26298176525785],[-108.81648816488165,68.27480180614702],[-108.80928809288092,68.2781789606868],[-108.78048780487805,68.28324469249645],[-108.75528755287553,68.2967533106555],[-108.74448744487445,68.3068847742748],[-108.7480874808748,68.31026192881458],[-108.75168751687517,68.31532766062423],[-108.75528755287553,68.32714770151341],[-108.75528755287553,68.33896774240259],[-108.7480874808748,68.34403347421224],[-108.73368733687336,68.34741062875199],[-108.59328593285933,68.39975652411835],[-108.40608406084061,68.56017136475722],[-108.34848348483484,68.6006972192344],[-108.28008280082801,68.62096014647298],[-107.80487804878048,68.65304311460076],[-107.75447754477544,68.64628880552124],[-107.62847628476284,68.67330604183937],[-107.48447484474845,68.68512608272854],[-107.42687426874268,68.70032327815747],[-107.29367293672937,68.70201185542737],[-107.17847178471784,68.73916055536478],[-107.16767167671676,68.7459148644443],[-107.15327153271532,68.74929201898408],[-107.0740707407074,68.75773490533348],[-106.9120691206912,68.79994933708056],[-106.85806858068581,68.80670364616009],[-106.81846818468185,68.81514653250949],[-106.80046800468004,68.81683510977939],[-106.70326703267033,68.81176937796974],[-106.66726667266673,68.81683510977939],[-106.56646566465665,68.85229523244692],[-106.45126451264512,68.86580385060597],[-106.37926379263793,68.88606677784458],[-106.30726307263072,68.89619824146388],[-106.27126271262712,68.90632970508318],[-106.2640626406264,68.91477259143258],[-106.24246242462425,68.94010125048081],[-106.22086220862208,68.94516698229046],[-106.19926199261992,68.94516698229046],[-105.99765997659976,68.89957539600363],[-105.81045810458104,68.88606677784458],[-105.7960579605796,68.8826896233048],[-105.74925749257493,68.86580385060597],[-105.71325713257133,68.84216376882762],[-105.67725677256772,68.83203230520832],[-105.60525605256052,68.78981787346126],[-105.52245522455225,68.75435775079373],[-105.49365493654936,68.73409482355513],[-105.46845468454684,68.72227478266595],[-105.47925479254792,68.70201185542737],[-105.48645486454865,68.69188039180807],[-105.49365493654936,68.68681465999842],[-105.5080550805508,68.68512608272854],[-105.52245522455225,68.68174892818877],[-105.53685536855369,68.67499461910924],[-105.5440554405544,68.66655173275981],[-105.54045540455404,68.64966596006099],[-105.52245522455225,68.63446876463206],[-105.48285482854828,68.61251726012358],[-105.46485464854648,68.59732006469463],[-105.41085410854109,68.52977697389932],[-105.38565385653857,68.51964551028004],[-105.36045360453605,68.51626835574027],[-105.32445324453245,68.51626835574027],[-105.3280532805328,68.50782546939084],[-105.32445324453245,68.48249681034261],[-105.32445324453245,68.47574250126308],[-105.33885338853388,68.46898819218356],[-105.35325353253532,68.47405392399318],[-105.3820538205382,68.48925111942214],[-105.40365403654036,68.49431685123179],[-105.42165421654217,68.49431685123179],[-105.43605436054361,68.49093969669201],[-105.45765457654576,68.48249681034261],[-105.4720547205472,68.47236534672331],[-105.47565475654756,68.46898819218356],[-105.48645486454865,68.46561103764378],[-105.50085500855008,68.46392246037391],[-105.51165511655117,68.46054530583413],[-105.53685536855369,68.45041384221483],[-105.54765547655477,68.44028237859555],[-105.55125551255512,68.42846233770635],[-105.5440554405544,68.41326514227742],[-105.5260552605526,68.40988798773765],[-105.36765367653676,68.42001945135695],[-105.33165331653316,68.41326514227742],[-105.33525335253353,68.404822255928],[-105.33885338853388,68.39469079230872],[-105.3460534605346,68.38793648322917],[-105.35325353253532,68.37949359687977],[-105.32445324453245,68.35416493783151],[-105.0940509405094,68.2697360743374],[-105.040050400504,68.2596046107181],[-104.99684996849969,68.27649038341693],[-105.06525065250652,68.2984418879254],[-105.08685086850868,68.31026192881458],[-105.03285032850329,68.30857335154468],[-105.02205022050221,68.31363908335433],[-105.01125011250112,68.32208196970376],[-104.99684996849969,68.32545912424351],[-104.98244982449825,68.32208196970376],[-104.97164971649717,68.31363908335433],[-104.95364953649536,68.3068847742748],[-104.92484924849248,68.31532766062423],[-104.90324903249032,68.33221343332306],[-104.89244892448924,68.35078778329176],[-104.88164881648817,68.34065631967246],[-104.86364863648636,68.33390201059294],[-104.84924849248492,68.32714770151341],[-104.83844838448384,68.31026192881458],[-104.8420484204842,68.29168757884585],[-104.85644856448565,68.28155611522658],[-104.94644946449465,68.26129318798797],[-104.95364953649536,68.25116172436867],[-104.93564935649356,68.23596452893975],[-104.91044910449104,68.22752164259032],[-104.88524885248852,68.22921021986019],[-104.83844838448384,68.2494731470988],[-104.82764827648276,68.26129318798797],[-104.82044820448205,68.26467034252775],[-104.79884798847988,68.25285030163857],[-104.78444784447844,68.2494731470988],[-104.63324633246332,68.2494731470988],[-104.60084600846008,68.23596452893975],[-104.61884618846189,68.20219298354209],[-104.67644676446764,68.13971562455643],[-104.61884618846189,68.13971562455643],[-104.60444604446045,68.12789558366725],[-104.60084600846008,68.0941240382696],[-104.590045900459,68.0839925746503],[-104.5720457204572,68.07892684284064],[-104.52884528845289,68.07723826557077],[-104.50724507245071,68.07048395649124],[-104.50004500045,68.06710680195147],[-104.50004500045,68.06035249287194],[-104.51084510845108,68.04853245198277],[-104.51084510845108,68.04346672017311],[-104.48564485644856,68.03333525655381],[-104.36324363243632,68.03671241109359],[-104.34524345243452,68.04177814290321],[-104.33084330843309,68.05022102925264],[-104.31644316443165,68.05697533833217],[-104.29844298442984,68.05359818379242],[-104.23004230042301,68.02995810201404],[-104.14724147241472,68.02489237020441],[-103.98883988839889,68.04853245198277],[-103.87723877238773,68.02320379293451],[-103.8340383403834,68.02151521566464],[-103.79083790837907,68.02658094747429],[-103.75483754837548,68.03671241109359],[-103.7440374403744,68.04515529744299],[-103.72243722437224,68.06372964741169],[-103.7080370803708,68.07048395649124],[-103.68643686436864,68.07217253376112],[-103.61443614436143,68.05697533833217],[-103.58563585635856,68.05697533833217],[-103.57123571235712,68.05866391560204],[-103.55683556835568,68.06372964741169],[-103.54243542435424,68.07217253376112],[-103.54243542435424,68.07554968830087],[-103.5460354603546,68.08061542011052],[-103.5460354603546,68.10087834734912],[-103.54963549635497,68.10594407915877],[-103.5460354603546,68.1126983882383],[-103.53883538835387,68.12620700639735],[-103.5280352803528,68.1329613154769],[-103.44163441634416,68.16673286087453],[-103.41643416434164,68.17011001541431],[-103.38763387633875,68.159978551795],[-103.36963369633696,68.14815851090583],[-103.35883358833588,68.13633847001665],[-103.33723337233371,68.11100981096843],[-103.35163351633516,68.102566924619],[-103.36243362433623,68.09581261553947],[-103.37323373233733,68.08905830645995],[-103.38043380433804,68.07723826557077],[-103.37683376833768,68.07217253376112],[-103.36963369633696,68.04346672017311],[-103.3660336603366,68.03333525655381],[-103.3660336603366,68.01813806112486],[-103.36243362433623,68.01138375204533],[-103.35523355233552,68.00969517477546],[-103.31923319233192,68.00800659750558],[-103.30483304833048,68.00294086569593],[-103.26883268832688,67.97930078391755],[-103.25443254432544,67.97254647483803],[-103.24363243632436,67.96916932029828],[-103.2220322203222,67.96916932029828],[-103.17883178831788,67.97085789756815],[-103.15363153631536,67.96748074302837],[-103.13563135631357,67.9573492794091],[-103.11043110431105,67.93877492944037],[-103.08163081630816,67.9269548885512],[-103.04923049230491,67.92188915674154],[-103.01683016830168,67.92020057947167],[-102.96642966429664,67.9286434658211],[-102.94842948429483,67.9269548885512],[-102.92322923229231,67.90331480677284],[-102.91962919629196,67.89656049769332],[-102.90882908829089,67.88474045680414],[-102.83682836828368,67.84421460232696],[-102.76122761227612,67.81550878873895],[-102.5740257402574,67.79524586150035],[-102.45162451624516,67.7817372433413],[-102.340023400234,67.75134285248339],[-102.30762307623075,67.72263703889539],[-102.25362253622536,67.73107992524481],[-102.24282242822429,67.72432561616529],[-102.23922239222392,67.70743984346646],[-102.2320223202232,67.69561980257728],[-102.21762217622177,67.6922426480375],[-102.19962199621996,67.7006855343869],[-102.21042210422104,67.70575126619656],[-102.22122221222212,67.71419415254599],[-102.22842228422284,67.72432561616529],[-102.22842228422284,67.73445707978456],[-102.21762217622177,67.74121138886412],[-102.16722167221673,67.75472000702317],[-102.1420214202142,67.771605779722],[-102.13122131221311,67.77498293426177],[-102.10242102421024,67.75472000702317],[-102.08442084420844,67.74965427521352],[-102.06282062820628,67.74796569794364],[-102.02682026820268,67.74965427521352],[-102.01242012420124,67.75303142975329],[-102.00162001620016,67.75978573883282],[-101.98721987219872,67.76991720245212],[-101.99081990819909,67.771605779722],[-101.99441994419944,67.77667151153165],[-101.99441994419944,67.78342582061117],[-101.98721987219872,67.7901801296907],[-101.980019800198,67.7918687069606],[-101.94761947619476,67.7901801296907],[-101.94041940419405,67.78511439788105],[-101.92961929619295,67.77667151153165],[-101.91521915219153,67.75809716156294],[-101.90081900819008,67.74965427521352],[-101.85761857618576,67.74627712067377],[-101.83961839618397,67.74121138886412],[-101.83961839618397,67.73276850251469],[-101.83241832418324,67.72432561616529],[-101.82521825218252,67.71757130708573],[-101.8180181801818,67.71419415254599],[-101.81081810818108,67.71250557527611],[-101.79641796417964,67.70743984346646],[-101.78921789217893,67.70743984346646],[-101.78561785617856,67.71081699800621],[-101.77121771217712,67.72770277070504],[-101.74241742417423,67.72770277070504],[-101.72081720817208,67.71588272981586],[-101.69921699216992,67.70237411165681],[-101.6740167401674,67.69393122530738],[-101.6560165601656,67.69393122530738],[-101.62361623616236,67.7006855343869],[-101.60561605616056,67.69730837984716],[-101.58761587615876,67.69055407076763],[-101.5480154801548,67.6821111844182],[-101.530015300153,67.68042260714833],[-101.47961479614796,67.69561980257728],[-101.47241472414724,67.69730837984716],[-101.4580145801458,67.68886549349773],[-101.43641436414364,67.68886549349773],[-101.41481414814147,67.69055407076763],[-101.40041400414003,67.69393122530738],[-101.41121411214112,67.70575126619656],[-101.44721447214472,67.71250557527611],[-101.45441454414544,67.72263703889539],[-101.44721447214472,67.73445707978456],[-101.42921429214292,67.73614565705446],[-101.41121411214112,67.73107992524481],[-101.38241382413824,67.71925988435564],[-101.3680136801368,67.72094846162551],[-101.35721357213572,67.72601419343516],[-101.33921339213391,67.72770277070504],[-101.28161281612816,67.72094846162551],[-101.26361263612635,67.72263703889539],[-101.2420124201242,67.73614565705446],[-101.24561245612456,67.75472000702317],[-101.25281252812528,67.76991720245212],[-101.23481234812348,67.77667151153165],[-101.21681216812168,67.77329435699187],[-101.19161191611916,67.75809716156294],[-101.17361173611737,67.75472000702317],[-101.15561155611556,67.75809716156294],[-101.12681126811268,67.77667151153165],[-101.11241112411123,67.78342582061117],[-101.09441094410944,67.78680297515095],[-101.09441094410944,67.78511439788105],[-101.0980109801098,67.77836008880152],[-101.0980109801098,67.76991720245212],[-101.0980109801098,67.75472000702317],[-101.0980109801098,67.74965427521352],[-101.09441094410944,67.74796569794364],[-100.95760957609576,67.74965427521352],[-100.9180091800918,67.75472000702317],[-100.89280892808928,67.76991720245212],[-100.90360903609036,67.78680297515095],[-100.92160921609216,67.80368874784978],[-100.92160921609216,67.8205745205486],[-100.90720907209072,67.829017406898],[-100.89280892808928,67.82564025235823],[-100.87840878408784,67.81550878873895],[-100.86760867608676,67.80706590238952],[-100.84960849608495,67.79693443877022],[-100.83160831608316,67.79524586150035],[-100.81360813608136,67.80200017057987],[-100.77040770407704,67.82564025235823],[-100.75240752407524,67.82732882962813],[-100.73440734407343,67.81719736600883],[-100.72720727207272,67.82564025235823],[-100.71640716407164,67.8475917568667],[-100.70560705607056,67.85096891140648],[-100.68760687606876,67.8475917568667],[-100.66240662406624,67.83577171597753],[-100.64440644406444,67.83070598416788],[-100.6120061200612,67.84421460232696],[-100.5940059400594,67.8475917568667],[-100.58320583205831,67.83408313870765],[-100.58680586805868,67.82395167508835],[-100.5940059400594,67.81550878873895],[-100.5940059400594,67.8087544796594],[-100.59040590405904,67.79693443877022],[-100.54360543605436,67.80706590238952],[-100.45720457204571,67.84252602505705],[-100.4140041400414,67.85096891140648],[-100.16560165601656,67.84421460232696],[-100.14760147601476,67.84083744778718],[-100.10080100801008,67.8205745205486],[-100.07920079200792,67.81719736600883],[-100.02880028800288,67.82395167508835],[-100.01440014400144,67.82226309781848],[-99.9819998199982,67.81213163419918],[-99.96759967599675,67.8104430569293],[-99.95679956799567,67.81213163419918],[-99.93879938799388,67.82226309781848],[-99.9279992799928,67.82395167508835],[-99.91359913599136,67.82395167508835],[-99.87039870398704,67.8104430569293],[-99.81639816398163,67.80031159331],[-99.79119791197911,67.80537732511965],[-99.79479794797948,67.82395167508835],[-99.76959769597696,67.82564025235823],[-99.68679686796868,67.81719736600883],[-99.66159661596616,67.80706590238952],[-99.64719647196472,67.79693443877022],[-99.63279632796328,67.7918687069606],[-99.61839618396183,67.79355728423047],[-99.5859958599586,67.80537732511965],[-99.5679956799568,67.80706590238952],[-99.51039510395104,67.80200017057987],[-99.4959949599496,67.79693443877022],[-99.49239492394923,67.79355728423047],[-99.48879488794887,67.78849155242082],[-99.48879488794887,67.78511439788105],[-99.48879488794887,67.78342582061117],[-99.47079470794708,67.7817372433413],[-99.459994599946,67.78680297515095],[-99.45279452794527,67.79355728423047],[-99.43839438394383,67.79693443877022],[-99.4239942399424,67.79355728423047],[-99.40959409594096,67.78849155242082],[-99.39159391593915,67.77667151153165],[-99.37359373593736,67.76991720245212],[-99.35919359193592,67.76485147064247],[-99.3159931599316,67.76147431610269],[-99.29439294392944,67.75472000702317],[-99.25119251192511,67.72432561616529],[-99.22599225992259,67.71419415254599],[-99.21519215192151,67.71419415254599],[-99.20079200792007,67.72094846162551],[-99.19359193591936,67.72263703889539],[-99.18279182791828,67.72094846162551],[-99.16839168391684,67.71419415254599],[-99.15759157591576,67.71419415254599],[-99.12519125191251,67.72601419343516],[-99.11079110791107,67.72939134797494],[-99.05679056790568,67.71925988435564],[-99.01719017190172,67.72263703889539],[-98.98118981189812,67.72263703889539],[-98.93798937989379,67.69730837984716],[-98.92358923589235,67.7006855343869],[-98.91638916389164,67.71081699800621],[-98.90918909189092,67.73952281159421],[-98.9019890198902,67.74796569794364],[-98.89118891188912,67.75303142975329],[-98.87678876788767,67.75472000702317],[-98.77958779587796,67.74796569794364],[-98.73278732787328,67.75472000702317],[-98.70038700387003,67.7901801296907],[-98.70758707587076,67.80200017057987],[-98.69678696786967,67.8104430569293],[-98.68238682386824,67.81213163419918],[-98.66438664386644,67.8104430569293],[-98.64638646386463,67.80200017057987],[-98.6319863198632,67.7918687069606],[-98.6139861398614,67.78511439788105],[-98.58878588785888,67.78342582061117],[-98.40878408784087,67.7901801296907],[-98.3979839798398,67.78849155242082],[-98.379983799838,67.7901801296907],[-98.3619836198362,67.79524586150035],[-98.35478354783548,67.80368874784978],[-98.3619836198362,67.81213163419918],[-98.39438394383943,67.83408313870765],[-98.43038430384304,67.85434606594626],[-98.43758437584376,67.85772322048601],[-98.44118441184412,67.86110037502579],[-98.4519845198452,67.86954326137518],[-98.45918459184591,67.87292041591496],[-98.46998469984699,67.87123183864506],[-98.49158491584916,67.86616610683544],[-98.49878498784987,67.86616610683544],[-98.53478534785347,67.87292041591496],[-98.57078570785707,67.88642903407401],[-98.61038610386103,67.91006911585237],[-98.64278642786428,67.9185120022018],[-98.71118711187111,67.94552923851992],[-98.72558725587255,67.9573492794091],[-98.73278732787328,68.03671241109359],[-98.74358743587436,68.05022102925264],[-98.74358743587436,68.06035249287194],[-98.73278732787328,68.07048395649124],[-98.71838718387184,68.07554968830087],[-98.64278642786428,68.07048395649124],[-98.62838628386284,68.07554968830087],[-98.59598595985959,68.0941240382696],[-98.58518585185851,68.09581261553947],[-98.56718567185672,68.08905830645995],[-98.55998559985599,68.08061542011052],[-98.55278552785528,68.07048395649124],[-98.54558545585455,68.06035249287194],[-98.5239852398524,68.04515529744299],[-98.34758347583475,67.96410358848863],[-98.31518315183152,67.9556607021392],[-98.25758257582575,67.92526631128132],[-98.23958239582396,67.91344627039214],[-98.2359823598236,67.90500338404271],[-98.22518225182252,67.88811761134389],[-98.21798217982179,67.87967472499449],[-98.20718207182071,67.86954326137518],[-98.18558185581855,67.85603464321613],[-98.17478174781748,67.8475917568667],[-98.09198091980919,67.75978573883282],[-98.08118081180811,67.75472000702317],[-98.0739807398074,67.75640858429304],[-98.05598055980559,67.76654004791234],[-98.04878048780488,67.76991720245212],[-98.0379803798038,67.76822862518222],[-97.9839798397984,67.74965427521352],[-97.97677976779768,67.74458854340386],[-97.94077940779408,67.70406268892668],[-97.92637926379264,67.69730837984716],[-97.90837908379083,67.69393122530738],[-97.82917829178291,67.6922426480375],[-97.79677796777968,67.6837997616881],[-97.76077760777608,67.66691398898928],[-97.73917739177392,67.65171679356033],[-97.7319773197732,67.64833963902055],[-97.7139771397714,67.6449624844808],[-97.67437674376744,67.64665106175067],[-97.65637656376563,67.6449624844808],[-97.64197641976419,67.63651959813137],[-97.62037620376204,67.61794524816267],[-97.59157591575915,67.60274805273372],[-97.55917559175592,67.59599374365419],[-97.49437494374943,67.60781378454337],[-97.41517415174151,67.61119093908314],[-97.38637386373864,67.62132240270245],[-97.36477364773647,67.63820817540127],[-97.3359733597336,67.6534053708302],[-97.30357303573035,67.6635368344495],[-97.27477274772747,67.66691398898928],[-97.25677256772568,67.65509394810007],[-97.23517235172352,67.6348310208615],[-97.21357213572135,67.6246995572422],[-97.1919719197192,67.63989675267115],[-97.19557195571956,67.6635368344495],[-97.15237152371523,67.67535687533868],[-97.06237062370623,67.68042260714833],[-97.07677076770767,67.6922426480375],[-97.09477094770948,67.7006855343869],[-97.13077130771308,67.71419415254599],[-97.1559715597156,67.71757130708573],[-97.20277202772027,67.71081699800621],[-97.22797227972279,67.71419415254599],[-97.209972099721,67.73445707978456],[-97.119971199712,67.7800486660714],[-97.119971199712,67.79355728423047],[-97.13437134371344,67.81382021146905],[-97.16317163171631,67.84421460232696],[-97.17397173971739,67.85096891140648],[-97.19917199171991,67.85941179775588],[-97.20637206372064,67.86616610683544],[-97.21357213572135,67.87460899318484],[-97.21717217172171,67.89487192042344],[-97.22437224372243,67.90331480677284],[-97.24957249572495,67.92526631128132],[-97.26397263972639,67.92188915674154],[-97.27477274772747,67.90500338404271],[-97.29637296372964,67.88642903407401],[-97.32877328773287,67.87629757045471],[-97.36477364773647,67.87629757045471],[-97.39717397173972,67.88642903407401],[-97.4439744397444,67.92188915674154],[-97.47277472774728,67.93539777490062],[-97.57357573575736,67.97423505210793],[-97.64197641976419,68.00969517477546],[-97.65637656376563,68.01307232931521],[-97.67437674376744,68.01982663839476],[-97.69237692376923,68.02320379293451],[-97.71037710377104,68.01307232931521],[-97.7139771397714,68.00294086569593],[-97.7139771397714,67.98267793845733],[-97.72117721177212,67.9759236293778],[-97.72837728377283,67.97254647483803],[-97.73917739177392,67.9759236293778],[-97.749977499775,67.97930078391755],[-97.76797767977679,67.98267793845733],[-97.77157771577716,67.9860550929971],[-97.77517775177752,67.98774367026698],[-97.78237782377823,67.9843665157272],[-97.79317793177931,67.9759236293778],[-97.83277832778327,67.9759236293778],[-97.85077850778508,67.97423505210793],[-97.86877868778687,67.96916932029828],[-97.95877958779587,67.9286434658211],[-97.97677976779768,67.93033204309097],[-97.99117991179911,67.95397212486932],[-98.0019800198002,67.95903785667898],[-98.01638016380163,67.95059497032955],[-98.05958059580595,67.91682342493192],[-98.06678066780667,67.89993765223309],[-98.06318063180632,67.87460899318484],[-98.05598055980559,67.85096891140648],[-98.04878048780488,67.83746029324743],[-98.0739807398074,67.83070598416788],[-98.09558095580955,67.83577171597753],[-98.13158131581315,67.85772322048601],[-98.17118171181711,67.87629757045471],[-98.17838178381784,67.88136330226436],[-98.19638196381963,67.89656049769332],[-98.19638196381963,67.89993765223309],[-98.20358203582036,67.90669196131262],[-98.21078210782107,67.92020057947167],[-98.22158221582215,67.93370919763072],[-98.2359823598236,67.94046350671027],[-98.2539825398254,67.94552923851992],[-98.30798307983079,67.9759236293778],[-98.38358383583835,67.99956371115616],[-98.40518405184052,68.00969517477546],[-98.4159841598416,68.02320379293451],[-98.44838448384483,68.07048395649124],[-98.46278462784628,68.07554968830087],[-98.5059850598506,68.09918977007925],[-98.53478534785347,68.1211412745877],[-98.57078570785707,68.13802704728653],[-98.58878588785888,68.15322424271548],[-98.5779857798578,68.15660139725526],[-98.56358563585636,68.1515356654456],[-98.53478534785347,68.13971562455643],[-98.52758527585276,68.16166712906491],[-98.5059850598506,68.18193005630349],[-98.48078480784808,68.19037294265291],[-98.45558455584556,68.18361863357336],[-98.44838448384483,68.17855290176374],[-98.43758437584376,68.17348716995409],[-98.43038430384304,68.16842143814443],[-98.42678426784268,68.159978551795],[-98.42678426784268,68.14815851090583],[-98.43758437584376,68.12958416093713],[-98.43758437584376,68.11776412004795],[-98.41238412384124,68.08230399738042],[-98.3619836198362,68.0941240382696],[-98.3259832598326,68.12789558366725],[-98.32238322383223,68.159978551795],[-98.31518315183152,68.16673286087453],[-98.34038340383404,68.18024147903361],[-98.36918369183691,68.19037294265291],[-98.4879848798488,68.21570160170114],[-98.5419854198542,68.23596452893975],[-98.52758527585276,68.23765310620962],[-98.51318513185132,68.23596452893975],[-98.49878498784987,68.2393416834795],[-98.4879848798488,68.2494731470988],[-98.5419854198542,68.2680474970675],[-98.59238592385924,68.29168757884585],[-98.68598685986859,68.35078778329176],[-98.71118711187111,68.36091924691107],[-98.71838718387184,68.36767355599059],[-98.71478714787148,68.37949359687977],[-98.69678696786967,68.38455932868942],[-98.67158671586715,68.3862479059593],[-98.64638646386463,68.3862479059593],[-98.6319863198632,68.38287075141952],[-98.54558545585455,68.33896774240259],[-98.51318513185132,68.33221343332306],[-98.51678516785168,68.34065631967246],[-98.5239852398524,68.34909920602189],[-98.53118531185312,68.35416493783151],[-98.5419854198542,68.35923066964116],[-98.5419854198542,68.36429640145082],[-98.49878498784987,68.35416493783151],[-98.47718477184772,68.35247636056164],[-98.45918459184591,68.36429640145082],[-98.52038520385203,68.39975652411835],[-98.5419854198542,68.4149537195473],[-98.5419854198542,68.42339660589673],[-98.52758527585276,68.4250851831666],[-98.50238502385024,68.41664229681717],[-98.45558455584556,68.3862479059593],[-98.43758437584376,68.37949359687977],[-98.43038430384304,68.37611644233999],[-98.31878318783187,68.35754209237129],[-98.2539825398254,68.31701623789411],[-98.21438214382144,68.30350761973506],[-98.19278192781927,68.3068847742748],[-98.17478174781748,68.31870481516398],[-98.16038160381603,68.33052485605316],[-98.14958149581496,68.33390201059294],[-98.13158131581315,68.32714770151341],[-98.10638106381063,68.32208196970376],[-98.08118081180811,68.32377054697363],[-98.06678066780667,68.33727916513268],[-98.109981099811,68.34909920602189],[-98.11718117181171,68.35585351510142],[-98.109981099811,68.36429640145082],[-98.09558095580955,68.36767355599059],[-97.90477904779047,68.34403347421224],[-97.90837908379083,68.39131363776895],[-97.85077850778508,68.38962506049907],[-97.78237782377823,68.37105071053034],[-97.74637746377464,68.36936213326047],[-97.75357753577535,68.38962506049907],[-97.77157771577716,68.40144510138825],[-97.79317793177931,68.40988798773765],[-97.86877868778687,68.41664229681717],[-97.88317883178831,68.42001945135695],[-97.89397893978939,68.42339660589673],[-97.90837908379083,68.43015091497625],[-97.9119791197912,68.43859380132565],[-97.89757897578976,68.44703668767508],[-97.98757987579876,68.48249681034261],[-98.00918009180091,68.49938258304144],[-98.01278012780128,68.50782546939084],[-98.00918009180091,68.51964551028004],[-98.0019800198002,68.53146555116922],[-97.99837998379984,68.53990843751862],[-97.98037980379803,68.54666274659814],[-97.95877958779587,68.5432855920584],[-97.92637926379264,68.52977697389932],[-97.90837908379083,68.53146555116922],[-97.87237872378724,68.5415970147885],[-97.8579785797858,68.5432855920584],[-97.79677796777968,68.53146555116922],[-97.70677706777067,68.52808839662944],[-97.68877688776888,68.51964551028004],[-97.68157681576815,68.51457977847039],[-97.66717667176671,68.50951404666074],[-97.659976599766,68.50613689212096],[-97.65637656376563,68.49769400577156],[-97.65637656376563,68.49093969669201],[-97.65637656376563,68.48587396488239],[-97.65637656376563,68.48249681034261],[-97.63477634776348,68.45547957402448],[-97.61317613176132,68.4436595331353],[-97.58437584375844,68.43690522405578],[-97.54837548375484,68.42339660589673],[-97.53037530375303,68.42001945135695],[-97.51237512375124,68.42677376043648],[-97.50517505175051,68.43690522405578],[-97.50517505175051,68.44028237859555],[-97.50877508775088,68.4436595331353],[-97.51237512375124,68.44703668767508],[-97.51957519575195,68.45210241948473],[-97.52677526775267,68.4537909967546],[-97.57357573575736,68.44703668767508],[-97.60957609576096,68.45210241948473],[-97.61677616776167,68.4537909967546],[-97.62037620376204,68.462233883104],[-97.62037620376204,68.46392246037391],[-97.61317613176132,68.46561103764378],[-97.60957609576096,68.46898819218356],[-97.60237602376023,68.48080823307274],[-97.59157591575915,68.49262827396191],[-97.57717577175771,68.49938258304144],[-97.56277562775628,68.50275973758121],[-97.42957429574295,68.50613689212096],[-97.26037260372604,68.46898819218356],[-97.24957249572495,68.44534811040518],[-97.10917109171092,68.39300221503882],[-97.12357123571235,68.3963793695786],[-97.14517145171452,68.39806794684847],[-97.16317163171631,68.39469079230872],[-97.17037170371704,68.3862479059593],[-97.16317163171631,68.3778050196099],[-97.14157141571415,68.37105071053034],[-97.00837008370084,68.35078778329176],[-96.9939699396994,68.33727916513268],[-96.99756997569975,68.32714770151341],[-97.00117001170011,68.31701623789411],[-96.99756997569975,68.3068847742748],[-96.9939699396994,68.2967533106555],[-97.01197011970119,68.2984418879254],[-97.05517055170552,68.3068847742748],[-97.07317073170731,68.30013046519528],[-97.0839708397084,68.28662184703623],[-97.08757087570875,68.27480180614702],[-97.08037080370804,68.26635891979763],[-96.97236972369723,68.25453887890845],[-96.95076950769507,68.24440741528915],[-96.939969399694,68.24271883801927],[-96.92556925569255,68.24271883801927],[-96.69156691566916,68.28662184703623],[-96.669966699667,68.28324469249645],[-96.66276662766627,68.26467034252775],[-96.65916659166591,68.2596046107181],[-96.64836648366483,68.2579160334482],[-96.64116641166412,68.2596046107181],[-96.63396633966339,68.2596046107181],[-96.63036630366304,68.2494731470988],[-96.68076680766808,68.2393416834795],[-96.69156691566916,68.22752164259032],[-96.68076680766808,68.21063586989149],[-96.66276662766627,68.19881582900231],[-96.64116641166412,68.18868436538301],[-96.61956619566196,68.18530721084326],[-96.60876608766087,68.19375009719266],[-96.63396633966339,68.21401302443127],[-96.62316623166231,68.23427595166984],[-96.59076590765908,68.25453887890845],[-96.48636486364863,68.30350761973506],[-96.44676446764467,68.31363908335433],[-96.40356403564036,68.31701623789411],[-96.46836468364684,68.28662184703623],[-96.47916479164792,68.27311322887715],[-96.47916479164792,68.24271883801927],[-96.48276482764827,68.22921021986019],[-96.489964899649,68.21739017897102],[-96.5259652596526,68.19206151992279],[-96.64476644766448,68.13971562455643],[-96.62316623166231,68.12451842912748],[-96.63756637566375,68.1126983882383],[-96.66636666366664,68.10594407915877],[-96.69156691566916,68.10425550188887],[-96.68796687966879,68.09581261553947],[-96.68436684366843,68.09074688372982],[-96.71676716767168,68.0839925746503],[-96.75636756367564,68.08061542011052],[-96.7959679596796,68.07217253376112],[-96.81396813968139,68.05022102925264],[-96.80316803168031,68.02658094747429],[-96.76356763567635,68.01644948385498],[-96.69156691566916,68.01644948385498],[-96.67716677166771,68.02151521566464],[-96.669966699667,68.03333525655381],[-96.66276662766627,68.04684387471286],[-96.65916659166591,68.05697533833217],[-96.64116641166412,68.06372964741169],[-96.6159661596616,68.06879537922134],[-96.59436594365944,68.06879537922134],[-96.58356583565835,68.06035249287194],[-96.56196561965619,68.04008956563334],[-96.51876518765188,68.03671241109359],[-96.47196471964719,68.04177814290321],[-96.44316443164432,68.05022102925264],[-96.46476464764648,68.05866391560204],[-96.48636486364863,68.07048395649124],[-96.47916479164792,68.09074688372982],[-96.50076500765007,68.0941240382696],[-96.54756547565475,68.08568115192017],[-96.5259652596526,68.11607554277808],[-96.489964899649,68.13464989274678],[-96.39636396363963,68.17179859268418],[-96.34596345963459,68.18530721084326],[-96.32436324363243,68.18699578811314],[-96.31356313563136,68.18868436538301],[-96.2919629196292,68.19881582900231],[-96.21276212762127,68.21063586989149],[-96.15156151561516,68.22921021986019],[-96.01116011160111,68.25285030163857],[-95.98955989559896,68.2596046107181],[-95.97155971559715,68.2697360743374],[-95.949959499595,68.28662184703623],[-95.93915939159392,68.28999900157598],[-95.90675906759067,68.29506473338563],[-95.89595895958959,68.2967533106555],[-95.9139591395914,68.27480180614702],[-95.93915939159392,68.25285030163857],[-96.04356043560435,68.18868436538301],[-96.06516065160652,68.16842143814443],[-96.08316083160831,68.14646993363596],[-96.02556025560256,68.11607554277808],[-96.04716047160471,68.07723826557077],[-96.08676086760867,68.03840098836346],[-96.08316083160831,68.00969517477546],[-96.09036090360904,67.99618655661638],[-96.12276122761227,67.96916932029828],[-96.12996129961299,67.9573492794091],[-96.14076140761408,67.93370919763072],[-96.14796147961479,67.92357773401145],[-96.1551615516155,67.91682342493192],[-96.16236162361623,67.90500338404271],[-96.16956169561695,67.89318334315354],[-96.17676176761768,67.86616610683544],[-96.18756187561875,67.85434606594626],[-96.2019620196202,67.84421460232696],[-96.21276212762127,67.83070598416788],[-96.21636216362164,67.8104430569293],[-96.21636216362164,67.7800486660714],[-96.20916209162091,67.75303142975329],[-96.19476194761947,67.74121138886412],[-96.19116191161912,67.73614565705446],[-96.2019620196202,67.72432561616529],[-96.22356223562235,67.70406268892668],[-96.22356223562235,67.69899695711703],[-96.21636216362164,67.69055407076763],[-96.21276212762127,67.6837997616881],[-96.20556205562055,67.68042260714833],[-96.16956169561695,67.7006855343869],[-96.18036180361803,67.6432739072109],[-96.19836198361983,67.62638813451207],[-96.23076230762307,67.6246995572422],[-96.25236252362524,67.62976528905185],[-96.26676266762668,67.63651959813137],[-96.27756277562776,67.64833963902055],[-96.2919629196292,67.6635368344495],[-96.29556295562955,67.6736682980688],[-96.29916299162991,67.68717691622786],[-96.30636306363063,67.69561980257728],[-96.32076320763207,67.7006855343869],[-96.34236342363424,67.68886549349773],[-96.34596345963459,67.6635368344495],[-96.33516335163351,67.6348310208615],[-96.33516335163351,67.61287951635302],[-96.35676356763567,67.58248512549514],[-96.39276392763928,67.56728793006619],[-96.46476464764648,67.54871358009748],[-96.43956439564396,67.54364784828783],[-96.43236432364323,67.54364784828783],[-96.43596435964359,67.53351638466853],[-96.45036450364503,67.52338492104923],[-96.46476464764648,67.51156488016005],[-96.46476464764648,67.4777933347624],[-96.46116461164611,67.47441618022265],[-96.44676446764467,67.48117048930217],[-96.42516425164251,67.49467910746122],[-96.40716407164071,67.498056262001],[-96.39276392763928,67.49636768473113],[-96.37476374763747,67.49130195292148],[-96.3639636396364,67.48117048930217],[-96.37476374763747,67.46259613933347],[-96.3639636396364,67.45584183025392],[-96.34596345963459,67.4507760984443],[-96.33516335163351,67.44402178936474],[-96.32436324363243,67.44064463482499],[-96.2811628116281,67.44233321209487],[-96.25956259562595,67.44064463482499],[-96.23436234362343,67.42882459393581],[-96.22716227162272,67.42713601666591],[-96.20916209162091,67.42544743939604],[-96.18756187561875,67.43220174847556],[-96.17316173161731,67.43389032574547],[-96.15156151561516,67.44233321209487],[-96.13716137161371,67.4592189847937],[-96.11916119161191,67.47103902568287],[-96.09756097560975,67.46766187114312],[-96.10116101161012,67.45415325298404],[-96.09756097560975,67.44739894390452],[-96.08316083160831,67.44402178936474],[-96.06876068760687,67.44064463482499],[-96.08316083160831,67.42713601666591],[-96.10116101161012,67.42207028485626],[-96.1119611196112,67.41531597577674],[-96.11556115561156,67.39505304853816],[-96.12276122761227,67.38323300764898],[-96.13716137161371,67.36803581222003],[-96.16956169561695,67.34439573044168],[-96.20916209162091,67.3308871122826],[-96.22356223562235,67.3224442259332],[-96.23076230762307,67.30724703050424],[-96.23436234362343,67.29036125780542],[-96.24876248762487,67.26334402148731],[-96.25236252362524,67.24814682605836],[-96.16956169561695,67.25490113513789],[-96.16236162361623,67.25827828967766],[-96.15156151561516,67.26165544421741],[-96.14076140761408,67.26334402148731],[-96.13356133561335,67.25827828967766],[-96.12996129961299,67.25152398059811],[-96.12996129961299,67.24308109424871],[-96.13716137161371,67.23463820789931],[-96.1119611196112,67.22112958974023],[-96.0759607596076,67.22619532154988],[-96.03636036360363,67.23970393970893],[-96.00756007560075,67.25490113513789],[-95.96075960759607,67.29036125780542],[-95.94275942759427,67.29542698961507],[-95.93915939159392,67.29542698961507],[-95.93555935559355,67.28529552599576],[-95.92835928359283,67.28191837145602],[-95.91755917559175,67.28360694872589],[-95.90675906759067,67.28698410326567],[-95.79155791557915,67.34946146225133],[-95.78075780757807,67.36465865768025],[-95.76275762757628,67.3714129667598],[-95.7339573395734,67.37647869856943],[-95.71595715957159,67.37647869856943],[-95.71955719557195,67.36465865768025],[-95.6979569795698,67.35452719406098],[-95.68715687156872,67.3427071531718],[-95.67635676356764,67.33426426682237],[-95.65475654756547,67.33764142136215],[-95.63675636756368,67.34777288498142],[-95.63315633156331,67.35790434860073],[-95.62955629556295,67.3697243894899],[-95.62235622356224,67.3798558531092],[-95.60435604356043,67.38661016218873],[-95.58275582755827,67.38492158491886],[-95.56115561155612,67.37647869856943],[-95.5359553595536,67.35790434860073],[-95.53235532355323,67.35790434860073],[-95.5359553595536,67.35621577133085],[-95.53955539555395,67.34439573044168],[-95.55395553955539,67.32413280320307],[-95.58275582755827,67.30049272142472],[-95.81315813158132,67.19242377615222],[-95.83475834758347,67.1654065398341],[-95.80595805958059,67.16878369437387],[-95.75555755557555,67.18398088980283],[-95.73035730357303,67.18735804434257],[-95.70515705157051,67.1941123534221],[-95.66555665556655,67.22450674428],[-95.64395643956439,67.22788389881975],[-95.65115651156512,67.2228181670101],[-95.66555665556655,67.20762097158118],[-95.62235622356224,67.20255523977153],[-95.52155521555216,67.21944101247036],[-95.48555485554856,67.20086666250165],[-95.49275492754927,67.19748950796188],[-95.49995499955,67.1941123534221],[-95.49275492754927,67.19073519888235],[-95.48555485554856,67.18229231253292],[-95.47835478354783,67.18060373526305],[-95.4891548915489,67.167095117104],[-95.49275492754927,67.15865223075457],[-95.49275492754927,67.15358649894492],[-95.48555485554856,67.14345503532562],[-95.48195481954819,67.14176645805574],[-95.47475474754748,67.14345503532562],[-95.46035460354604,67.14514361259552],[-95.44235442354423,67.15189792167504],[-95.43875438754387,67.167095117104],[-95.44235442354423,67.1856694670727],[-95.43875438754387,67.20086666250165],[-95.42795427954279,67.18904662161248],[-95.42435424354244,67.18398088980283],[-95.38835388353883,67.16034080802444],[-95.38115381153811,67.16034080802444],[-95.38115381153811,67.15189792167504],[-95.38835388353883,67.14345503532562],[-95.39195391953919,67.13838930351599],[-95.39555395553955,67.13838930351599],[-95.38115381153811,67.11306064446774],[-95.38115381153811,67.10799491265809],[-95.41355413554135,67.08097767633998],[-95.41715417154171,67.06915763545078],[-95.40275402754027,67.05564901729173],[-95.38115381153811,67.0488947082122],[-95.35595355953559,67.04720613094233],[-95.33795337953379,67.04214039913268],[-95.32715327153271,67.02187747189407],[-95.33075330753307,67.0100574310049],[-95.34875348753488,66.97459730833737],[-95.35595355953559,66.96446584471806],[-95.36675366753667,66.96277726744819],[-95.39195391953919,66.97290873106749],[-95.40275402754027,66.97459730833737],[-95.41355413554135,66.96784299925784],[-95.41715417154171,66.95771153563854],[-95.42075420754207,66.94926864928911],[-95.47475474754748,66.95433438109876],[-95.60435604356043,66.94758007201924],[-95.63675636756368,66.96784299925784],[-95.6259562595626,66.96953157652771],[-95.61515615156151,66.97290873106749],[-95.6079560795608,66.97966304014702],[-95.60075600756008,66.98810592649642],[-95.65835658356583,66.98304019468677],[-95.76635766357663,66.95940011290841],[-95.88155881558815,66.94758007201924],[-95.9139591395914,66.94758007201924],[-95.93915939159392,66.96108869017829],[-95.94635946359463,66.97966304014702],[-95.949959499595,66.99823739011572],[-95.96075960759607,67.00836885373502],[-95.99315993159931,67.00836885373502],[-95.98235982359823,67.02694320370372],[-95.96795967959679,67.04720613094233],[-95.949959499595,67.06240332637125],[-95.93195931959319,67.07084621272068],[-95.95715957159571,67.07422336726043],[-95.97875978759787,67.06409190364116],[-96.04716047160471,67.01681174008442],[-96.05076050760508,67.00499169919524],[-96.039960399604,66.99317165830607],[-96.02556025560256,66.97459730833737],[-96.05796057960579,66.96446584471806],[-96.09396093960939,66.95602295836866],[-96.12636126361264,66.95771153563854],[-96.15876158761587,66.96784299925784],[-96.14436144361443,66.96953157652771],[-96.13356133561335,66.97459730833737],[-96.12636126361264,66.97966304014702],[-96.11556115561156,66.98810592649642],[-96.15156151561516,66.99317165830607],[-96.22356223562235,66.98304019468677],[-96.25956259562595,66.9914830810362],[-96.2811628116281,67.01174600827477],[-96.26316263162632,67.0488947082122],[-96.2811628116281,67.07084621272068],[-96.29916299162991,67.07591194453033],[-96.33156331563315,67.06915763545078],[-96.34956349563495,67.07084621272068],[-96.36036360363603,67.0776005218002],[-96.37836378363784,67.08773198541951],[-96.39276392763928,67.09279771722916],[-96.4539645396454,67.06915763545078],[-96.4539645396454,67.0590261718315],[-96.4179641796418,67.0286317809736],[-96.40356403564036,67.0016145446555],[-96.39636396363963,66.99486023557594],[-96.30276302763028,66.97459730833737],[-96.2811628116281,66.95940011290841],[-96.26316263162632,66.94082576293971],[-96.24516245162451,66.92731714478063],[-96.21636216362164,66.91549710389145],[-96.15156151561516,66.90029990846253],[-96.12636126361264,66.8817255584938],[-96.11916119161191,66.87159409487452],[-96.11556115561156,66.84964259036605],[-96.1119611196112,66.84119970401662],[-96.09756097560975,66.83106824039734],[-96.07956079560795,66.82600250858769],[-96.05796057960579,66.82262535404791],[-95.86355863558636,66.76690230414178],[-95.85275852758527,66.75845941779238],[-95.84555845558455,66.75001653144295],[-95.83835838358384,66.73313075874412],[-95.83115831158311,66.72468787239472],[-95.79875798757988,66.6976706360766],[-95.78435784357843,66.68078486337777],[-95.78075780757807,66.66221051340906],[-95.78435784357843,66.63857043163071],[-95.79155791557915,66.62337323620176],[-95.82035820358203,66.59129026807398],[-95.79155791557915,66.60142173169328],[-95.74115741157411,66.64870189524999],[-95.71235712357124,66.65883335886929],[-95.67635676356764,66.66052193613919],[-95.6619566195662,66.66389909067894],[-95.64395643956439,66.66896482248859],[-95.62955629556295,66.67909628610789],[-95.62955629556295,66.6892277497272],[-95.64395643956439,66.7078020996959],[-95.65475654756547,66.73144218147425],[-95.66555665556655,66.74157364509355],[-95.67635676356764,66.74157364509355],[-95.68355683556835,66.73144218147425],[-95.67275672756728,66.7078020996959],[-95.67275672756728,66.6976706360766],[-95.68715687156872,66.68753917245729],[-95.70155701557016,66.68247344064764],[-95.71595715957159,66.68078486337777],[-95.7339573395734,66.67909628610789],[-95.75555755557555,66.68247344064764],[-95.76635766357663,66.69091632699707],[-95.77355773557736,66.71455640877542],[-95.79155791557915,66.7365079132839],[-95.81315813158132,66.74832795417308],[-95.83835838358384,66.75677084052248],[-95.859958599586,66.77196803595143],[-95.89235892358923,66.80573958134909],[-95.91035910359103,66.81924819950814],[-95.93195931959319,66.83106824039734],[-95.98235982359823,66.84288828128652],[-96.00036000360004,66.85133116763592],[-96.0291602916029,66.8817255584938],[-96.03636036360363,66.88510271303358],[-96.04716047160471,66.88847986757335],[-96.0759607596076,66.90367706300228],[-96.08676086760867,66.90874279481193],[-96.09396093960939,66.9205628357011],[-96.09036090360904,66.92731714478063],[-96.06876068760687,66.93913718566984],[-96.0291602916029,66.95095722655901],[-95.97515975159752,66.95433438109876],[-95.92475924759248,66.94758007201924],[-95.88515885158851,66.93069429932041],[-95.87075870758707,66.92900572205053],[-95.82755827558275,66.94420291747946],[-95.80955809558095,66.94251434020958],[-95.79875798757988,66.94082576293971],[-95.77715777157772,66.93744860839993],[-95.76635766357663,66.93238287659028],[-95.76275762757628,66.92731714478063],[-95.75915759157591,66.9121199493517],[-95.7519575195752,66.90536564027218],[-95.7339573395734,66.90367706300228],[-95.66915669156691,66.9121199493517],[-95.57555575555756,66.9121199493517],[-95.50715507155071,66.9019884857324],[-95.4891548915489,66.90874279481193],[-95.47475474754748,66.9205628357011],[-95.45315453154531,66.92900572205053],[-95.43155431554315,66.93238287659028],[-95.409954099541,66.93238287659028],[-95.40635406354063,66.92225141297101],[-95.38835388353883,66.9121199493517],[-95.3631536315363,66.90367706300228],[-95.34155341553415,66.90029990846253],[-95.31635316353163,66.90029990846253],[-95.29475294752947,66.90367706300228],[-95.27675276752767,66.91380852662158],[-95.25155251552515,66.93238287659028],[-95.25155251552515,66.94589149474936],[-95.24435244352443,66.95602295836866],[-95.21915219152191,66.97459730833737],[-95.23355233552336,66.98979450376629],[-95.25515255152551,66.99654881284584],[-95.28035280352803,66.9999259673856],[-95.30195301953019,67.00836885373502],[-95.29115291152911,67.03200893551337],[-95.30555305553055,67.0488947082122],[-95.34515345153451,67.07422336726043],[-95.34875348753488,67.08266625360986],[-95.34155341553415,67.09279771722916],[-95.32355323553236,67.10799491265809],[-95.32355323553236,67.11643779900751],[-95.33075330753307,67.12656926262682],[-95.34155341553415,67.13670072624609],[-95.34875348753488,67.14514361259552],[-95.34875348753488,67.15189792167504],[-95.34515345153451,67.15865223075457],[-95.28035280352803,67.20255523977153],[-95.27675276752767,67.20762097158118],[-95.26955269552695,67.21099812612093],[-95.26235262352623,67.22112958974023],[-95.25875258752588,67.23463820789931],[-95.25875258752588,67.24476967151858],[-95.25515255152551,67.26165544421741],[-95.24435244352443,67.26840975329694],[-95.21195211952119,67.27009833056684],[-95.17235172351724,67.27854121691624],[-95.17595175951759,67.29036125780542],[-95.30195301953019,67.32919853501272],[-95.33075330753307,67.3427071531718],[-95.34155341553415,67.36803581222003],[-95.34515345153451,67.3798558531092],[-95.35955359553596,67.39505304853816],[-95.3631536315363,67.40180735761768],[-95.3631536315363,67.41193882123699],[-95.37035370353703,67.43895605755509],[-95.37755377553775,67.44739894390452],[-95.39195391953919,67.45415325298404],[-95.40635406354063,67.45415325298404],[-95.41355413554135,67.45584183025392],[-95.409954099541,67.46766187114312],[-95.39915399153992,67.4777933347624],[-95.38115381153811,67.48961337565157],[-95.35955359553596,67.498056262001],[-95.34515345153451,67.50143341654075],[-95.32355323553236,67.51156488016005],[-95.32355323553236,67.53013923012875],[-95.33795337953379,67.55209073463723],[-95.35595355953559,67.56728793006619],[-95.43875438754387,67.60443663000362],[-95.45315453154531,67.61456809362289],[-95.46395463954639,67.63989675267115],[-95.4891548915489,67.64665106175067],[-95.52515525155252,67.64665106175067],[-95.55035550355504,67.65678252536998],[-95.5719557195572,67.6719797207989],[-95.59355593555935,67.6837997616881],[-95.61875618756187,67.69055407076763],[-95.6619566195662,67.69561980257728],[-95.67995679956799,67.70237411165681],[-95.69435694356943,67.71081699800621],[-95.70515705157051,67.72263703889539],[-95.70875708757087,67.73276850251469],[-95.70515705157051,67.74121138886412],[-95.68715687156872,67.75809716156294],[-95.67635676356764,67.76485147064247],[-95.62955629556295,67.77667151153165],[-95.6259562595626,67.7800486660714],[-95.62955629556295,67.78342582061117],[-95.62955629556295,67.78849155242082],[-95.62235622356224,67.7901801296907],[-95.58635586355864,67.7901801296907],[-95.54675546755468,67.8087544796594],[-95.52515525155252,67.84928033413661],[-95.5359553595536,67.88642903407401],[-95.58275582755827,67.89993765223309],[-95.54675546755468,67.93202062036084],[-95.52515525155252,67.94384066125002],[-95.46395463954639,67.97423505210793],[-95.45315453154531,67.98943224753685],[-95.4459544595446,68.00969517477546],[-95.43875438754387,68.00969517477546],[-95.42075420754207,68.01982663839476],[-95.42435424354244,68.02995810201404],[-95.43155431554315,68.04346672017311],[-95.43155431554315,68.05697533833217],[-95.45675456754567,68.05697533833217],[-95.46755467554675,68.05866391560204],[-95.47835478354783,68.06372964741169],[-95.44955449554496,68.07217253376112],[-95.27315273152732,68.07723826557077],[-95.24435244352443,68.0839925746503],[-95.23355233552336,68.0839925746503],[-95.21915219152191,68.07723826557077],[-95.23355233552336,68.07048395649124],[-95.24435244352443,68.05697533833217],[-95.25515255152551,68.04684387471286],[-95.27315273152732,68.04346672017311],[-95.27315273152732,68.03671241109359],[-95.22635226352263,68.04515529744299],[-95.13995139951399,68.08568115192017],[-95.09315093150931,68.09074688372982],[-95.07875078750787,68.08061542011052],[-95.03915039150391,68.05528676106229],[-95.01395013950139,68.05022102925264],[-94.95634956349564,68.06035249287194],[-94.93114931149312,68.06035249287194],[-94.9059490594906,68.04684387471286],[-94.86274862748627,68.03164667928394],[-94.79794797947979,68.03840098836346],[-94.73674736747367,68.05866391560204],[-94.70074700747007,68.08061542011052],[-94.6971469714697,68.08905830645995],[-94.69354693546936,68.09581261553947],[-94.68994689946899,68.102566924619],[-94.68274682746828,68.10763265642865],[-94.64674646746467,68.1211412745877],[-94.56034560345603,68.16335570633478],[-94.47394473944739,68.18361863357336],[-94.46674466744668,68.18868436538301],[-94.45954459544595,68.19543867446254],[-94.45234452344523,68.20050440627219],[-94.4019440194402,68.21232444716136],[-94.38394383943839,68.21907875624092],[-94.36954369543695,68.23596452893975],[-94.36954369543695,68.22921021986019],[-94.34074340743408,68.24440741528915],[-94.24714247142471,68.2596046107181],[-94.21114211142111,68.2697360743374],[-94.1931419314193,68.2883104243061],[-94.20034200342003,68.3068847742748],[-94.21114211142111,68.32714770151341],[-94.2039420394204,68.35078778329176],[-94.21114211142111,68.36429640145082],[-94.2039420394204,68.37442786507012],[-94.17154171541715,68.38962506049907],[-94.1571415714157,68.39300221503882],[-94.14634146341463,68.39469079230872],[-94.13914139141392,68.39806794684847],[-94.13554135541355,68.40988798773765],[-94.13194131941319,68.41664229681717],[-94.12114121141211,68.42170802862682],[-93.94833948339483,68.47574250126308],[-93.75753757537575,68.50613689212096],[-93.72513725137252,68.51964551028004],[-93.68193681936819,68.52471124208967],[-93.66033660336603,68.53146555116922],[-93.62073620736207,68.55003990113792],[-93.60633606336063,68.55510563294757],[-93.55953559535595,68.55848278748732],[-93.54513545135451,68.56354851929697],[-93.54873548735488,68.56692567383675],[-93.55593555935559,68.57367998291627],[-93.55953559535595,68.57874571472593],[-93.54513545135451,68.57874571472593],[-93.54513545135451,68.59732006469463],[-93.52353523535236,68.60745152831393],[-93.4479344793448,68.61420583739346],[-93.37593375933758,68.63953449644171],[-93.39753397533975,68.63278018736216],[-93.58113581135811,68.61251726012358],[-93.64593645936459,68.62602587828263],[-93.67113671136711,68.62602587828263],[-93.72873728737287,68.61251726012358],[-93.75393753937539,68.61251726012358],[-93.75393753937539,68.61927156920311],[-93.7359373593736,68.63109161009228],[-93.72873728737287,68.63784591917181],[-93.72513725137252,68.64628880552124],[-93.72513725137252,68.63953449644171],[-93.71073710737107,68.65473169187064],[-93.70713707137071,68.66486315548994],[-93.70353703537035,68.68681465999842],[-93.69273692736927,68.71045474177677],[-93.67833678336783,68.73240624628525],[-93.68553685536855,68.7374719780949],[-93.69273692736927,68.74084913263465],[-93.69633696336963,68.74929201898408],[-93.6891368913689,68.76111205987326],[-93.6531365313653,68.76448921441303],[-93.64233642336423,68.77630925530221],[-93.65673656736567,68.77630925530221],[-93.63873638736388,68.78812929619139],[-93.63873638736388,68.80332649162031],[-93.62073620736207,68.81514653250949],[-93.58113581135811,68.83203230520832],[-93.57033570335703,68.84385234609752],[-93.57753577535775,68.86242669606622],[-93.59193591935919,68.87086958241562],[-93.63873638736388,68.88775535511445],[-93.64953649536496,68.89957539600363],[-93.64593645936459,68.91477259143258],[-93.63873638736388,68.92828120959163],[-93.63873638736388,68.93672409594106],[-93.65673656736567,68.94010125048081],[-93.64953649536496,68.95192129137001],[-93.64233642336423,68.95698702317964],[-93.63513635136351,68.96205275498929],[-93.66033660336603,68.97218421860859],[-93.68553685536855,68.97218421860859],[-93.71433714337142,68.96711848679894],[-93.73953739537394,68.96880706406884],[-93.72873728737287,68.97218421860859],[-93.72513725137252,68.97556137314837],[-93.7359373593736,68.97724995041824],[-93.7791377913779,68.97556137314837],[-93.77193771937719,68.97556137314837],[-93.79353793537935,68.96711848679894],[-93.8259382593826,68.96205275498929],[-93.85833858338583,68.96205275498929],[-93.87633876338764,68.97556137314837],[-93.86913869138691,68.98569283676764],[-93.85833858338583,68.99413572311707],[-93.84393843938439,68.99920145492672],[-93.83313833138331,69.00257860946647],[-93.83313833138331,69.00933291854602],[-93.85473854738547,69.00933291854602],[-93.87273872738727,69.00595576400625],[-93.90873908739087,68.99582430038694],[-93.89793897938979,69.01777580489542],[-93.86553865538654,69.03803873213403],[-93.80073800738008,69.06505596845213],[-93.8259382593826,69.0684331229919],[-93.86913869138691,69.06167881391238],[-93.90873908739087,69.04648161848343],[-93.93753937539375,69.0295958457846],[-93.92673926739268,69.03128442305447],[-93.90153901539016,69.0295958457846],[-93.90153901539016,69.02284153670507],[-93.93393933939339,69.00595576400625],[-93.94473944739447,69.00257860946647],[-93.93753937539375,69.00257860946647],[-93.94473944739447,69.0008900321966],[-93.94833948339483,68.99920145492672],[-93.9519395193952,68.99582430038694],[-93.94473944739447,68.9924471458472],[-93.93033930339303,68.98400425949777],[-93.92313923139231,68.98231568222789],[-93.93393933939339,68.97556137314837],[-93.95913959139591,68.96542990952906],[-93.96273962739627,68.95867560044954],[-93.96993969939699,68.94685555956036],[-93.98073980739807,68.94178982775071],[-94.00594005940059,68.93334694140128],[-94.04554045540455,68.91646116870245],[-94.05994059940599,68.9029525505434],[-94.07434074340743,68.88606677784458],[-94.0671406714067,68.88606677784458],[-94.07074070740707,68.8742467369554],[-94.06354063540635,68.86749242787587],[-94.05274052740528,68.8641152733361],[-94.04194041940418,68.86580385060597],[-94.04914049140491,68.86073811879635],[-94.08154081540815,68.85229523244692],[-94.07074070740707,68.84722950063727],[-94.04554045540455,68.84047519155774],[-94.03474034740347,68.83878661428787],[-94.02394023940239,68.84047519155774],[-94.00954009540095,68.85060665517705],[-93.97713977139772,68.85904954152645],[-93.94473944739447,68.8826896233048],[-93.92313923139231,68.88606677784458],[-93.92313923139231,68.87931246876505],[-93.92673926739268,68.8742467369554],[-93.93033930339303,68.87086958241562],[-93.93393933939339,68.86749242787587],[-93.94473944739447,68.86580385060597],[-93.94473944739447,68.85904954152645],[-93.81153811538115,68.89957539600363],[-93.8259382593826,68.87931246876505],[-93.85833858338583,68.86749242787587],[-93.89433894338943,68.86073811879635],[-93.91953919539195,68.84891807790714],[-93.94473944739447,68.83034372793844],[-93.97713977139772,68.81008080069986],[-94.01314013140131,68.79657218254079],[-94.05994059940599,68.78644071892148],[-94.08154081540815,68.76955494622266],[-94.09594095940959,68.76280063714313],[-94.11034110341103,68.75942348260338],[-94.28314283142831,68.75773490533348],[-94.41274412744127,68.72227478266595],[-94.4451444514445,68.7374719780949],[-94.46674466744668,68.74422628717443],[-94.48114481144812,68.73916055536478],[-94.4919449194492,68.73071766901538],[-94.49914499144991,68.72565193720573],[-94.50634506345064,68.72565193720573],[-94.52074520745207,68.72902909174547],[-94.53154531545316,68.7374719780949],[-94.54234542345424,68.74929201898408],[-94.55314553145531,68.75942348260338],[-94.5711457114571,68.76280063714313],[-94.63594635946359,68.7560463280636],[-94.62154621546215,68.77799783257208],[-94.60354603546035,68.82527799612879],[-94.59274592745928,68.84216376882762],[-94.56034560345603,68.86242669606622],[-94.55314553145531,68.87255815968552],[-94.54954549545495,68.89113250965423],[-94.55674556745568,68.89450966419398],[-94.5711457114571,68.89619824146388],[-94.58554585545855,68.9029525505434],[-94.5819458194582,68.9130840141627],[-94.56754567545676,68.93503551867119],[-94.5711457114571,68.94010125048081],[-94.58554585545855,68.94347840502058],[-94.59994599945999,68.94854413683024],[-94.60354603546035,68.95867560044954],[-94.60354603546035,68.96880706406884],[-94.5711457114571,68.98231568222789],[-94.53154531545316,68.97724995041824],[-94.46314463144631,68.95529844590976],[-94.46314463144631,68.94178982775071],[-94.44154441544416,68.94347840502058],[-94.41634416344164,68.95360986863989],[-94.4019440194402,68.96205275498929],[-94.39474394743947,68.97218421860859],[-94.36954369543695,69.00933291854602],[-94.34434344343443,69.02621869124485],[-94.3191431914319,69.03466157759425],[-94.29034290342904,69.03803873213403],[-94.23274232742327,69.03803873213403],[-94.2039420394204,69.04141588667378],[-94.17514175141751,69.0498587730232],[-94.149941499415,69.06505596845213],[-94.17874178741788,69.07856458661121],[-94.18594185941859,69.08531889569073],[-94.18234182341823,69.09882751384978],[-94.17154171541715,69.10727040019921],[-94.10674106741067,69.12753332743779],[-94.0779407794078,69.12922190470769],[-94.05274052740528,69.14273052286674],[-94.00594005940059,69.15961629556557],[-94.03834038340383,69.1579277182957],[-94.13554135541355,69.13259905924744],[-94.25434254342544,69.12753332743779],[-94.30114301143011,69.14273052286674],[-94.32274322743227,69.1562391410258],[-94.32274322743227,69.17143633645475],[-94.31194311943119,69.18494495461383],[-94.29394293942939,69.21365076820183],[-94.27954279542796,69.22884796363076],[-94.28674286742867,69.2339136954404],[-94.29394293942939,69.24573373632958],[-94.30114301143011,69.24911089086936],[-94.27954279542796,69.26093093175854],[-94.25794257942579,69.27612812718749],[-94.30114301143011,69.29132532261642],[-94.31554315543156,69.29807963169594],[-94.28314283142831,69.32171971347432],[-94.23634236342363,69.33691690890325],[-94.1139411394114,69.34704837252255],[-94.02754027540276,69.36562272249125],[-93.93033930339303,69.36562272249125],[-93.91593915939158,69.3622455679515],[-93.89433894338943,69.34873694979242],[-93.88713887138871,69.34535979525268],[-93.84753847538475,69.35042552706233],[-93.81153811538115,69.35886841341173],[-93.79353793537935,69.36899987703103],[-93.76113761137611,69.39770569061903],[-93.73953739537394,69.40952573150821],[-93.61353613536136,69.43992012236609],[-93.5271352713527,69.44160869963599],[-93.54153541535415,69.42978865874682],[-93.59553595535955,69.39939426788891],[-93.63153631536315,69.39095138153951],[-93.64233642336423,69.38250849519008],[-93.66753667536675,69.3622455679515],[-93.67833678336783,69.35549125887198],[-93.69273692736927,69.3521141043322],[-93.70353703537035,69.34873694979242],[-93.71793717937179,69.34535979525268],[-93.78633786337863,69.31496540439477],[-93.81153811538115,69.31158824985502],[-93.88353883538835,69.24911089086936],[-93.8619386193862,69.25079946813923],[-93.83313833138331,69.26599666356819],[-93.81153811538115,69.26937381810794],[-93.84393843938439,69.24235658178983],[-93.8619386193862,69.23222511817053],[-93.88353883538835,69.22884796363076],[-93.86913869138691,69.21871650001145],[-93.85113851138512,69.21702792274158],[-93.83313833138331,69.22040507728136],[-93.81153811538115,69.22209365455123],[-93.81153811538115,69.2153393454717],[-93.83673836738367,69.19845357277288],[-93.85113851138512,69.1866335318837],[-93.85473854738547,69.17481349099452],[-93.84033840338402,69.168059181915],[-93.81873818738187,69.17481349099452],[-93.79713797137971,69.1866335318837],[-93.78273782737827,69.19845357277288],[-93.76113761137611,69.21027361366205],[-93.70353703537035,69.22547080909101],[-93.6639366393664,69.24911089086936],[-93.60633606336063,69.26937381810794],[-93.61713617136171,69.27612812718749],[-93.62793627936279,69.27443954991759],[-93.63513635136351,69.26937381810794],[-93.64233642336423,69.26261950902841],[-93.64233642336423,69.26937381810794],[-93.62073620736207,69.27781670445736],[-93.58113581135811,69.29976820896584],[-93.48753487534876,69.31834255893455],[-93.45513455134551,69.3318511770936],[-93.45153451534514,69.34535979525268],[-93.43353433534335,69.35717983614185],[-93.36153361533616,69.37237703157078],[-93.38673386733868,69.37913134065033],[-93.47673476734766,69.35886841341173],[-93.50553505535055,69.3605569906816],[-93.55593555935559,69.3706884543009],[-93.58833588335884,69.36562272249125],[-93.58113581135811,69.37744276338043],[-93.5271352713527,69.42303434966726],[-93.4911349113491,69.43992012236609],[-93.47673476734766,69.45511731779504],[-93.48033480334803,69.45680589506492],[-93.4839348393484,69.46187162687457],[-93.46233462334624,69.4686259359541],[-93.45153451534514,69.47369166776375],[-93.44433444334443,69.48213455411317],[-93.45153451534514,69.4888888631927],[-93.45873458734587,69.48382313138305],[-93.46953469534695,69.48213455411317],[-93.47673476734766,69.48382313138305],[-93.4839348393484,69.4888888631927],[-93.4839348393484,69.50239748135175],[-93.50553505535055,69.51590609951083],[-93.53433534335343,69.52603756313013],[-93.55953559535595,69.53110329493975],[-93.6891368913689,69.52266040859035],[-93.68553685536855,69.52266040859035],[-93.76113761137611,69.499020326812],[-93.78633786337863,69.48551170865292],[-93.80433804338043,69.48213455411317],[-93.80793807938079,69.48382313138305],[-93.81153811538115,69.49395459500235],[-93.81153811538115,69.49564317227222],[-93.8259382593826,69.49564317227222],[-93.87273872738727,69.48720028592282],[-93.87993879938799,69.4787573995734],[-93.87993879938799,69.46693735868422],[-93.86913869138691,69.45511731779504],[-93.89793897938979,69.43992012236609],[-93.93033930339303,69.43485439055644],[-93.99873998739987,69.44160869963599],[-94.149941499415,69.43485439055644],[-94.32274322743227,69.45342874052517],[-94.34434344343443,69.46524878141435],[-94.38394383943839,69.49564317227222],[-94.39834398343983,69.50239748135175],[-94.43074430744308,69.51084036770118],[-94.44874448744487,69.52097183132048],[-94.52074520745207,69.57669488122659],[-94.5279452794528,69.59695780846519],[-94.53154531545316,69.60202354027484],[-94.54234542345424,69.61046642662424],[-94.54954549545495,69.62228646751342],[-94.55314553145531,69.63241793113272],[-94.56034560345603,69.64086081748215],[-94.5711457114571,69.6459265492918],[-94.58554585545855,69.64761512656167],[-94.59634596345963,69.6459265492918],[-94.60354603546035,69.63748366294237],[-94.60714607146072,69.63241793113272],[-94.6179461794618,69.63748366294237],[-94.62874628746287,69.64761512656167],[-94.63594635946359,69.6543694356412],[-94.63594635946359,69.66281232199063],[-94.63594635946359,69.67125520834003],[-94.62874628746287,69.68814098103886],[-94.7439474394744,69.66787805380025],[-94.76554765547655,69.66112374472073],[-94.76194761947619,69.64761512656167],[-94.7439474394744,69.63072935386285],[-94.72594725947259,69.61890931297367],[-94.74754747547475,69.59358065392541],[-94.78714787147871,69.57838345849649],[-94.83754837548375,69.56994057214706],[-94.87354873548735,69.57162914941696],[-94.95274952749527,69.58851492211576],[-94.96354963549635,69.59526923119532],[-94.97074970749708,69.60877784935437],[-94.9851498514985,69.61215500389415],[-94.99954999549995,69.60877784935437],[-95.01395013950139,69.60540069481459],[-94.99954999549995,69.61890931297367],[-95.02475024750247,69.62735219932307],[-95.11835118351183,69.61890931297367],[-95.13275132751328,69.62059789024354],[-95.16515165151651,69.63072935386285],[-95.18315183151832,69.6442379720219],[-95.19755197551976,69.64761512656167],[-95.22635226352263,69.6459265492918],[-95.409954099541,69.68645240376898],[-95.43875438754387,69.69996102192803],[-95.47835478354783,69.70671533100756],[-95.53955539555395,69.73035541278591],[-95.56835568355683,69.73542114459556],[-95.58635586355864,69.74217545367512],[-95.65115651156512,69.78438988542217],[-95.66915669156691,69.78776703996195],[-95.73755737557376,69.7911441945017],[-95.7519575195752,69.78607846269205],[-95.76275762757628,69.772569844533],[-95.77355773557736,69.75737264910404],[-95.7879578795788,69.74217545367512],[-95.80955809558095,69.7539954945643],[-95.82035820358203,69.76074980364382],[-95.82755827558275,69.77088126726312],[-95.81315813158132,69.78776703996195],[-95.80235802358024,69.7911441945017],[-95.7879578795788,69.7911441945017],[-95.80595805958059,69.80296423539087],[-95.83115831158311,69.80802996720053],[-95.84915849158492,69.801275658121],[-95.85635856358563,69.7810127308824],[-95.87075870758707,69.77763557634265],[-95.93195931959319,69.7911441945017],[-95.95355953559535,69.7911441945017],[-95.94275942759427,69.78438988542217],[-95.97515975159752,69.78607846269205],[-96.00396003960039,69.79789850358122],[-96.05436054360543,69.83167004897888],[-96.08676086760867,69.84686724440783],[-96.20556205562055,69.86544159437653],[-96.18756187561875,69.86713017164641],[-96.1551615516155,69.88401594434524],[-96.14436144361443,69.88401594434524],[-96.1119611196112,69.86713017164641],[-96.09756097560975,69.86713017164641],[-96.08316083160831,69.87895021253561],[-96.10476104761047,69.88908167615489],[-96.12276122761227,69.90090171704406],[-96.08676086760867,69.91441033520314],[-96.08676086760867,69.92116464428267],[-96.10836108361083,69.9194760670128],[-96.10836108361083,69.92623037609232],[-96.10476104761047,69.93467326244172],[-96.10116101161012,69.94480472606102],[-96.10836108361083,69.9566247669502],[-96.12996129961299,69.96000192148998],[-96.14796147961479,69.96169049875985],[-96.16236162361623,69.9667562305695],[-96.17316173161731,69.97182196237915],[-96.19116191161912,69.97013338510928],[-96.22356223562235,69.96337907602972],[-96.24156241562416,69.96506765329963],[-96.25596255962559,69.97013338510928],[-96.48636486364863,70.09677668035047],[-96.51516515165152,70.12041676212883],[-96.5259652596526,70.12717107120835],[-96.53316533165331,70.13561395755778],[-96.53316533165331,70.14912257571683],[-96.53316533165331,70.16431977114578],[-96.53676536765367,70.17445123476509],[-96.56556565565656,70.21159993470249],[-96.57276572765727,70.23524001648084],[-96.56196561965619,70.31460314816533],[-96.54756547565475,70.33993180721359],[-96.51156511565115,70.3686376208016],[-96.44316443164432,70.4074748980089],[-96.42156421564215,70.41422920708843],[-96.40356403564036,70.41254062981852],[-96.38556385563855,70.4074748980089],[-96.3639636396364,70.4074748980089],[-96.34596345963459,70.41422920708843],[-96.33876338763388,70.4243606707077],[-96.3279632796328,70.44800075248608],[-96.33516335163351,70.48683802969336],[-96.30276302763028,70.51892099782114],[-96.25956259562595,70.54762681140915],[-96.23436234362343,70.5712668931875],[-96.22716227162272,70.5712668931875],[-96.21996219962199,70.56113542956822],[-96.21276212762127,70.54931538867902],[-96.20556205562055,70.53749534778984],[-96.18756187561875,70.53242961598019],[-96.16956169561695,70.5341181932501],[-96.13716137161371,70.5442496568694],[-96.14436144361443,70.56451258410797],[-96.12636126361264,70.57970977953693],[-96.09756097560975,70.58984124315623],[-96.0759607596076,70.59321839769598],[-96.04716047160471,70.58815266588633],[-95.99675996759967,70.56451258410797],[-95.85275852758527,70.53918392505975],[-95.81315813158132,70.53749534778984],[-95.80955809558095,70.53580677051997],[-95.80595805958059,70.53242961598019],[-95.79875798757988,70.53074103871032],[-95.79515795157951,70.53749534778984],[-95.79515795157951,70.5442496568694],[-95.79875798757988,70.54762681140915],[-95.80235802358024,70.55100396594892],[-95.91755917559175,70.5628240068381],[-95.95715957159571,70.5712668931875],[-96.00396003960039,70.58984124315623],[-96.04356043560435,70.59659555223575],[-96.05436054360543,70.60672701585506],[-96.05436054360543,70.62361278855388],[-96.05436054360543,70.64387571579246],[-95.95715957159571,70.6810244157299],[-95.94275942759427,70.68271299299977],[-95.89955899558996,70.69284445661907],[-95.86715867158671,70.70466449750825],[-95.83115831158311,70.7097302293179],[-95.81315813158132,70.71479596112755],[-95.9031590315903,70.7097302293179],[-96.12276122761227,70.65569575668164],[-96.14076140761408,70.64725287033224],[-96.15876158761587,70.63374425217316],[-96.15156151561516,70.63374425217316],[-96.19116191161912,70.62530136582376],[-96.26676266762668,70.63880998398281],[-96.34596345963459,70.66582722030094],[-96.39636396363963,70.6894673020793],[-96.41436414364144,70.70635307477812],[-96.42516425164251,70.72323884747695],[-96.43956439564396,70.7384360429059],[-96.46476464764648,70.75025608379508],[-96.57276572765727,70.77389616557343],[-96.60156601566015,70.79078193827226],[-96.6159661596616,70.82624206093979],[-96.59796597965979,70.86001360633745],[-96.53676536765367,70.91742523351346],[-96.52956529565296,70.93262242894241],[-96.50796507965079,70.98327974703889],[-96.50436504365044,70.98665690157864],[-96.50796507965079,71.00016551973772],[-96.50436504365044,71.00354267427747],[-96.49716497164971,71.00691982881725],[-96.49356493564936,71.01029698335702],[-96.48636486364863,71.02887133332572],[-96.489964899649,71.03562564240525],[-96.50076500765007,71.04575710602455],[-96.46836468364684,71.04575710602455],[-96.43956439564396,71.05251141510408],[-96.41436414364144,71.06433145599325],[-96.38196381963819,71.09134869231139],[-96.37836378363784,71.09303726958126],[-96.37476374763747,71.09472584685113],[-96.37476374763747,71.10316873320056],[-96.40356403564036,71.11498877408974],[-96.41076410764107,71.12005450589939],[-96.4179641796418,71.11836592862952],[-96.42156421564215,71.11667735135961],[-96.42516425164251,71.11330019681986],[-96.41076410764107,71.09810300139091],[-96.4179641796418,71.08966011504148],[-96.43956439564396,71.08628296050173],[-96.45756457564575,71.08628296050173],[-96.48636486364863,71.09134869231139],[-96.53676536765367,71.11836592862952],[-96.56196561965619,71.12680881497892],[-96.55836558365583,71.14031743313797],[-96.54756547565475,71.14369458767774],[-96.5259652596526,71.14707174221752],[-96.45756457564575,71.17071182399587],[-96.43956439564396,71.16902324672597],[-96.41436414364144,71.15551462856692],[-96.38916389163892,71.14707174221752],[-96.37476374763747,71.16058036037657],[-96.44676446764467,71.1859090194248],[-96.45756457564575,71.1960404830441],[-96.45756457564575,71.20954910120318],[-96.45036450364503,71.22981202844176],[-96.43236432364323,71.26358357383941],[-96.44316443164432,71.26358357383941],[-96.47916479164792,71.25682926475989],[-96.47196471964719,71.26358357383941],[-96.47916479164792,71.27033788291894],[-96.489964899649,71.27371503745871],[-96.49716497164971,71.27709219199846],[-96.50796507965079,71.27709219199846],[-96.48276482764827,71.29228938742742],[-96.44676446764467,71.29904369650694],[-96.3279632796328,71.29904369650694],[-96.30636306363063,71.3041094283166],[-96.2811628116281,71.31255231466602],[-96.28836288362884,71.31930662374555],[-96.26676266762668,71.34125812825403],[-96.24156241562416,71.36489821003238],[-96.21276212762127,71.38684971454086],[-96.18396183961839,71.40204690996978],[-96.13356133561335,71.41386695085899],[-95.9859598595986,71.41555552812886],[-95.92475924759248,71.40373548723969],[-95.89595895958959,71.39360402362038],[-95.87795877958779,71.37334109638178],[-95.88155881558815,71.37334109638178],[-95.83835838358384,71.35138959187333],[-95.65835658356583,71.29228938742742],[-95.63315633156331,71.28891223288767],[-95.6079560795608,71.2956665419672],[-95.58635586355864,71.29735511923707],[-95.55755557555575,71.29397796469729],[-95.5359553595536,71.2956665419672],[-95.53955539555395,71.31255231466602],[-95.5359553595536,71.31592946920577],[-95.52515525155252,71.3226837782853],[-95.51795517955179,71.32606093282507],[-95.5359553595536,71.33619239644437],[-95.57555575555756,71.34632386006368],[-95.58995589955899,71.35983247822273],[-95.47115471154711,71.35983247822273],[-95.47475474754748,71.36996394184203],[-95.47835478354783,71.37334109638178],[-95.43875438754387,71.37334109638178],[-95.43875438754387,71.38009540546133],[-95.46035460354604,71.38347256000108],[-95.48195481954819,71.38853829181073],[-95.50715507155071,71.39698117816016],[-95.52515525155252,71.40711264177943],[-95.55035550355504,71.42230983720839],[-95.54675546755468,71.42737556901804],[-95.53235532355323,71.43244130082769],[-95.52155521555216,71.45439280533617],[-95.50715507155071,71.45776995987592],[-95.4891548915489,71.45945853714582],[-95.47835478354783,71.46283569168557],[-95.46395463954639,71.4695900007651],[-95.46395463954639,71.47296715530487],[-95.46395463954639,71.48141004165427],[-95.46395463954639,71.48478719619405],[-95.44235442354423,71.49323008254345],[-95.37755377553775,71.51011585524228],[-95.43875438754387,71.50673870070253],[-95.47475474754748,71.499984391623],[-95.49275492754927,71.48647577346392],[-95.62955629556295,71.49323008254345],[-95.6619566195662,71.499984391623],[-95.68715687156872,71.51011585524228],[-95.80595805958059,71.51011585524228],[-95.8239582395824,71.51687016432183],[-95.86355863558636,71.53882166883028],[-95.88155881558815,71.54388740063993],[-95.92475924759248,71.54726455517971],[-95.94275942759427,71.55233028698936],[-95.93195931959319,71.57090463695806],[-95.88875888758888,71.57934752330749],[-95.87795877958779,71.59285614146654],[-95.88875888758888,71.59285614146654],[-95.89595895958959,71.59454471873642],[-95.90675906759067,71.59792187327619],[-95.91035910359103,71.60636475962559],[-95.88155881558815,71.61818480051477],[-95.84555845558455,71.6266276868642],[-95.77715777157772,71.6350705732136],[-95.74115741157411,71.63169341867385],[-95.72675726757268,71.63338199594372],[-95.67995679956799,71.65195634591242],[-95.67275672756728,71.66039923226185],[-95.67635676356764,71.66884211861125],[-95.66555665556655,71.6739078504209],[-95.64755647556476,71.6755964276908],[-95.61875618756187,71.6755964276908],[-95.61155611556116,71.67897358223055],[-95.58995589955899,71.69248220038963],[-95.58275582755827,71.69585935492938],[-95.55755557555575,71.70092508673903],[-95.51435514355143,71.71781085943786],[-95.49275492754927,71.72287659124751],[-95.30195301953019,71.72118801397764],[-95.27675276752767,71.72456516851739],[-95.25875258752588,71.73807378667647],[-95.28035280352803,71.74145094121621],[-95.28755287552875,71.75158240483552],[-95.28755287552875,71.76509102299457],[-95.28035280352803,71.77859964115365],[-95.27675276752767,71.7836653729633],[-95.25875258752588,71.7921082593127],[-95.25155251552515,71.79886256839222],[-95.2371523715237,71.81912549563083],[-95.21555215552155,71.82925695925013],[-95.13635136351363,71.83263411378988],[-95.08235082350824,71.84614273194896],[-95.06435064350643,71.84783130921883],[-95.02475024750247,71.84107700013931],[-95.01395013950139,71.84107700013931],[-94.9851498514985,71.84783130921883],[-94.83394833948338,71.84276557740918],[-94.78714787147871,71.83263411378988],[-94.74034740347403,71.82925695925013],[-94.69354693546936,71.83601126832966],[-94.65034650346503,71.84951988648871],[-94.60714607146072,71.86809423645741],[-94.63954639546395,71.87315996826706],[-94.75834758347582,71.8393884228694],[-94.77634776347763,71.84107700013931],[-94.8159481594816,71.85120846375858],[-95.10035100351003,71.86133992737788],[-95.15075150751507,71.84951988648871],[-95.17955179551795,71.84783130921883],[-95.21555215552155,71.85289704102848],[-95.2479524795248,71.86302850464776],[-95.25515255152551,71.87991427734659],[-95.25155251552515,71.88329143188636],[-95.24075240752407,71.88498000915624],[-95.23355233552336,71.88835716369601],[-95.23355233552336,71.89342289550567],[-95.24075240752407,71.89511147277554],[-95.25875258752588,71.90186578185507],[-95.2479524795248,71.90693151366472],[-95.21195211952119,71.9288830181732],[-95.21555215552155,71.93394874998285],[-95.21555215552155,71.93732590452262],[-95.21915219152191,71.9390144817925],[-95.22635226352263,71.94239163633225],[-95.22635226352263,71.9491459454118],[-94.88794887948879,71.9761631817299],[-94.54954549545495,72.00149184077816],[-94.4919449194492,71.98967179988898],[-94.48834488344883,71.98460606807933],[-94.48474484744847,71.97278602719015],[-94.48114481144812,71.96096598630098],[-94.47394473944739,71.95590025449133],[-94.40554405544056,71.94576879087202],[-94.39474394743947,71.9390144817925],[-94.4019440194402,71.92212870909367],[-94.42354423544235,71.9103086682045],[-94.45234452344523,71.90693151366472],[-94.48114481144812,71.90524293639484],[-94.50634506345064,71.90186578185507],[-94.48834488344883,71.89680005004541],[-94.46674466744668,71.89342289550567],[-94.45234452344523,71.88666858642614],[-94.45234452344523,71.86809423645741],[-94.45954459544595,71.85796277283814],[-94.47754477544775,71.85289704102848],[-94.55314553145531,71.85120846375858],[-94.58554585545855,71.84276557740918],[-94.65034650346503,71.81912549563083],[-94.61434614346143,71.79548541385248],[-94.60714607146072,71.7836653729633],[-94.62154621546215,71.76509102299457],[-94.61434614346143,71.76509102299457],[-94.6179461794618,71.75664813664517],[-94.61434614346143,71.74989382756564],[-94.60714607146072,71.74651667302587],[-94.59634596345963,71.74313951848609],[-94.55314553145531,71.76171386845482],[-94.53874538745387,71.7718453320741],[-94.50994509945099,71.81405976382118],[-94.49914499144991,71.8208140729007],[-94.4919449194492,71.82587980471035],[-94.47754477544775,71.82587980471035],[-94.46674466744668,71.8208140729007],[-94.45954459544595,71.8106826092814],[-94.46314463144631,71.79886256839222],[-94.44874448744487,71.79041968204282],[-94.43794437944379,71.79717399112235],[-94.43074430744308,71.80730545474165],[-94.41994419944199,71.8123711865513],[-94.38754387543875,71.8123711865513],[-94.37314373143731,71.80730545474165],[-94.35514355143552,71.79886256839222],[-94.36234362343623,71.7921082593127],[-94.36954369543695,71.78873110477292],[-94.37674376743767,71.78535395023317],[-94.38394383943839,71.7836653729633],[-94.38754387543875,71.7819767956934],[-94.39114391143912,71.7718453320741],[-94.39114391143912,71.76846817753434],[-94.39834398343983,71.75664813664517],[-94.39834398343983,71.74651667302587],[-94.39474394743947,71.73469663213669],[-94.38754387543875,71.72287659124751],[-94.40914409144091,71.68235073677033],[-94.41634416344164,71.6654649640715],[-94.4019440194402,71.6654649640715],[-94.28314283142831,71.73638520940656],[-94.26514265142652,71.74989382756564],[-94.23634236342363,71.7819767956934],[-94.21114211142111,71.7921082593127],[-94.18234182341823,71.7921082593127],[-94.16074160741607,71.7836653729633],[-94.16434164341644,71.76509102299457],[-94.12114121141211,71.76002529118492],[-94.05274052740528,71.78873110477292],[-94.01314013140131,71.77859964115365],[-93.9879398793988,71.75833671391504],[-93.97353973539735,71.75327098210539],[-93.9519395193952,71.75158240483552],[-93.89793897938979,71.75327098210539],[-93.87273872738727,71.75833671391504],[-93.84753847538475,71.76846817753434],[-93.80793807938079,71.77859964115365],[-93.76113761137611,71.77859964115365],[-93.72153721537215,71.76509102299457],[-93.70353703537035,71.73300805486681],[-93.70713707137071,71.71612228216799],[-93.71433714337142,71.70430224127881],[-93.82233822338223,71.6553335004522],[-93.80433804338043,71.64689061410277],[-93.7359373593736,71.62831626413407],[-93.63513635136351,71.57934752330749],[-93.54513545135451,71.55401886425923],[-93.41913419134191,71.53544451429053],[-93.39393393933939,71.528690205211],[-93.37953379533795,71.5185587415917],[-93.36873368733687,71.51011585524228],[-93.35793357933579,71.50167296889288],[-93.25713257132571,71.48309861892417],[-93.21393213932139,71.4695900007651],[-93.21033210332104,71.44932707352652],[-93.19953199531994,71.44594991898674],[-93.1959319593196,71.442572764447],[-93.19233192331923,71.43581845536744],[-93.18873188731887,71.42906414628791],[-93.18873188731887,71.42568699174817],[-93.18873188731887,71.42062125993851],[-93.18873188731887,71.41555552812886],[-93.18153181531815,71.40711264177943],[-93.16713167131671,71.39360402362038],[-93.1491314913149,71.38347256000108],[-93.12753127531275,71.37671825092156],[-93.04833048330482,71.3716525191119],[-93.01953019530195,71.36658678730225],[-92.99072990729907,71.35645532368295],[-92.97992979929799,71.34801243733355],[-92.97992979929799,71.33619239644437],[-92.9871298712987,71.32774951009495],[-92.99792997929978,71.31930662374555],[-92.95832958329584,71.30579800558647],[-92.94752947529474,71.2956665419672],[-92.94032940329403,71.25851784202976],[-92.93312933129332,71.24669780114058],[-92.92952929529295,71.23656633752128],[-92.93672936729367,71.22305771936223],[-92.88272882728828,71.18928617396458],[-92.86832868328683,71.17408897853562],[-92.85752857528576,71.1588917831067],[-92.85752857528576,71.15044889675727],[-92.86472864728647,71.14200601040787],[-92.86832868328683,71.12680881497892],[-92.86832868328683,71.11836592862952],[-92.8611286112861,71.11161161954996],[-92.8611286112861,71.10654588774031],[-92.86472864728647,71.10148015593069],[-92.87552875528755,71.09303726958126],[-92.88272882728828,71.08628296050173],[-92.88632886328863,71.07108576507278],[-92.88272882728828,71.06264287872338],[-92.85392853928539,71.04575710602455],[-92.87912879128791,71.0204284469763],[-92.88992889928899,71.00691982881725],[-92.89352893528935,70.99003405611842],[-92.90072900729007,70.94275389256171],[-92.9079290792908,70.92755669713276],[-92.90072900729007,70.9224909653231],[-92.9079290792908,70.90222803808453],[-92.8971289712897,70.8836536881158],[-92.87552875528755,70.87014506995675],[-92.85392853928539,70.86001360633745],[-92.86832868328683,70.85325929725792],[-92.91152911529115,70.8465049881784],[-92.93672936729367,70.8465049881784],[-92.9439294392944,70.8465049881784],[-93.00153001530015,70.87183364722662],[-93.02673026730267,70.88027653357605],[-93.05193051930519,70.88027653357605],[-93.04113041130411,70.86170218360732],[-93.0231302313023,70.84988214271814],[-92.94752947529474,70.81779917459039],[-92.82152821528214,70.80935628824096],[-92.76752767527675,70.79753624735179],[-92.74592745927458,70.78740478373248],[-92.69192691926919,70.77389616557343],[-92.67392673926739,70.765453279224],[-92.69552695526954,70.7570103928746],[-92.69192691926919,70.7485675065252],[-92.68472684726846,70.74350177471555],[-92.67392673926739,70.74181319744565],[-92.66312663126631,70.74350177471555],[-92.66312663126631,70.736747465636],[-92.71712717127171,70.72999315655647],[-92.71712717127171,70.72323884747695],[-92.67392673926739,70.72492742474682],[-92.6559265592656,70.72155027020708],[-92.64152641526415,70.7097302293179],[-92.6559265592656,70.708041652048],[-92.66672666726667,70.70297592023834],[-92.69192691926919,70.6894673020793],[-92.6559265592656,70.6894673020793],[-92.67752677526775,70.6810244157299],[-92.66312663126631,70.67933583845999],[-92.61272612726127,70.6894673020793],[-92.41472414724147,70.66751579757081],[-92.41832418324184,70.66413864303107],[-92.41832418324184,70.66245006576116],[-92.42192421924219,70.66076148849129],[-92.40752407524074,70.65569575668164],[-92.35352353523535,70.64725287033224],[-92.31392313923139,70.63543282944306],[-92.30312303123031,70.63374425217316],[-92.29952299522995,70.62698994309363],[-92.30312303123031,70.61348132493458],[-92.31752317523176,70.6016612840454],[-92.33912339123391,70.5999727067755],[-92.32832328323283,70.5813983568068],[-92.30312303123031,70.5729554704574],[-92.2779227792278,70.5813983568068],[-92.26352263522635,70.6101041703948],[-92.24912249122491,70.62530136582376],[-92.21672216722168,70.61685847947433],[-92.17712177121771,70.59659555223575],[-92.15552155521554,70.57970977953693],[-92.17712177121771,70.5729554704574],[-92.20592205922058,70.5712668931875],[-92.23472234722347,70.57464404772728],[-92.24912249122491,70.57970977953693],[-92.24552245522455,70.5712668931875],[-92.25632256322562,70.56620116137785],[-92.26352263522635,70.55775827502845],[-92.25992259922599,70.54931538867902],[-92.24912249122491,70.53749534778984],[-92.23832238322383,70.5341181932501],[-92.22752227522275,70.53580677051997],[-92.21672216722168,70.5341181932501],[-92.20232202322023,70.52398672963079],[-92.19152191521916,70.51047811147174],[-92.19872198721987,70.50710095693196],[-92.21312213122131,70.51047811147174],[-92.2311223112231,70.51047811147174],[-92.2419224192242,70.50710095693196],[-92.28512285122851,70.49021518423314],[-92.24912249122491,70.48683802969336],[-92.17712177121771,70.47332941153431],[-92.14112141121412,70.46995225699456],[-92.11952119521195,70.47332941153431],[-92.11232112321123,70.47332941153431],[-92.10872108721087,70.463197947915],[-92.10872108721087,70.4547550615656],[-92.11232112321123,70.44968932975596],[-92.11952119521195,70.44800075248608],[-92.12312123121231,70.44800075248608],[-92.13032130321302,70.4446235979463],[-92.13392133921339,70.44124644340653],[-92.13392133921339,70.434492134327],[-92.04392043920438,70.42098351616795],[-92.04032040320403,70.41760636162817],[-92.04752047520475,70.40072058892935],[-92.04392043920438,70.39396627984982],[-92.03672036720367,70.39227770257995],[-92.01152011520115,70.3956548571197],[-91.99711997119971,70.39396627984982],[-91.99711997119971,70.3872119707703],[-92.00432004320042,70.38383481623052],[-92.01872018720186,70.37370335261124],[-92.00792007920079,70.37370335261124],[-91.99711997119971,70.37201477534134],[-91.98631986319863,70.37032619807147],[-91.97551975519755,70.36694904353169],[-91.99351993519934,70.35850615718229],[-92.00072000720007,70.34837469356299],[-92.00072000720007,70.33824322994369],[-91.989919899199,70.32473461178463],[-92.01152011520115,70.31798030270511],[-92.03672036720367,70.31291457089546],[-92.08712087120871,70.31291457089546],[-92.08712087120871,70.30447168454603],[-92.02952029520294,70.30616026181593],[-92.00072000720007,70.30278310727616],[-91.98271982719827,70.29096306638698],[-91.989919899199,70.2892744891171],[-92.00432004320042,70.28420875730745],[-91.96471964719647,70.27070013914837],[-91.96111961119611,70.26732298460863],[-91.96111961119611,70.26225725279897],[-91.95751957519575,70.25719152098932],[-91.95391953919538,70.2605686755291],[-91.95031950319503,70.26394583006885],[-91.9431194311943,70.27745444822793],[-91.93591935919359,70.28420875730745],[-91.92871928719286,70.29265164365685],[-91.92151921519215,70.29940595273641],[-91.9071190711907,70.30447168454603],[-91.89631896318963,70.30616026181593],[-91.8531185311853,70.30447168454603],[-91.89271892718926,70.32642318905451],[-91.9071190711907,70.33993180721359],[-91.89991899918999,70.35681757991242],[-91.87831878318782,70.36526046626182],[-91.8531185311853,70.36694904353169],[-91.82791827918278,70.36526046626182],[-91.80631806318063,70.35850615718229],[-91.79911799117991,70.35175184810277],[-91.79191791917918,70.34162038448346],[-91.78471784717847,70.33655465267381],[-91.77391773917739,70.34162038448346],[-91.76311763117631,70.35512900264251],[-91.75591755917559,70.35850615718229],[-91.74511745117451,70.35850615718229],[-91.72351723517235,70.35512900264251],[-91.70911709117091,70.34668611629311],[-91.69831698316983,70.33317749813403],[-91.68751687516875,70.31798030270511],[-91.69831698316983,70.31291457089546],[-91.71991719917199,70.30616026181593],[-91.73071730717307,70.30447168454603],[-91.69831698316983,70.25550294371945],[-91.68751687516875,70.22848570740132],[-91.69831698316983,70.20822278016271],[-91.69831698316983,70.20146847108319],[-91.68391683916839,70.20484562562297],[-91.67311673116731,70.21159993470249],[-91.65871658716587,70.21835424378202],[-91.6551165511655,70.22510855286154],[-91.65151651516514,70.23524001648084],[-91.64071640716406,70.23355143921097],[-91.61911619116191,70.2217313983218],[-91.55791557915579,70.19809131654344],[-91.5291152911529,70.18120554384461],[-91.51111511115111,70.16094261660601],[-91.51471514715146,70.15418830752648],[-91.52551525515256,70.14912257571683],[-91.54351543515435,70.14574542117705],[-91.69831698316983,70.13392538028788],[-91.81351813518135,70.14067968936743],[-91.83511835118351,70.13730253482765],[-91.88551885518855,70.12885964847825],[-91.99711997119971,70.1237939166686],[-92.02592025920259,70.12717107120835],[-92.04392043920438,70.13392538028788],[-92.07992079920798,70.15756546206626],[-92.10152101521015,70.16769692568553],[-92.12312123121231,70.17445123476509],[-92.20952209522095,70.18289412111449],[-92.22752227522275,70.18795985292414],[-92.23472234722347,70.19640273927354],[-92.2311223112231,70.20822278016271],[-92.26352263522635,70.2403057482905],[-92.28152281522814,70.2504372119098],[-92.29952299522995,70.25719152098932],[-92.29952299522995,70.2403057482905],[-92.3211232112321,70.23692859375075],[-92.3679236792368,70.23692859375075],[-92.29592295922959,70.21835424378202],[-92.27432274322743,70.21666566651214],[-92.26712267122672,70.21328851197237],[-92.26712267122672,70.20653420289284],[-92.26712267122672,70.19977989381331],[-92.27072270722707,70.19471416200366],[-92.28152281522814,70.18964843019401],[-92.28872288722887,70.18795985292414],[-92.31392313923139,70.18795985292414],[-92.30672306723066,70.19471416200366],[-92.32472324723247,70.19471416200366],[-92.3679236792368,70.18458269838436],[-92.39312393123932,70.18120554384461],[-92.4831248312483,70.18120554384461],[-92.4831248312483,70.17445123476509],[-92.45432454324543,70.17445123476509],[-92.42912429124291,70.17107408022531],[-92.41112411124111,70.16263119387588],[-92.38952389523895,70.14743399844696],[-92.4039240392404,70.14067968936743],[-92.43272432724326,70.13730253482765],[-92.4471244712447,70.13054822574813],[-92.47232472324723,70.09846525762035],[-92.53352533525334,70.0933995258107],[-92.58752587525875,70.07820233038177],[-92.56952569525696,70.074825175842],[-92.529925299253,70.07820233038177],[-92.51912519125192,70.07144802130222],[-92.4939249392494,70.05118509406364],[-92.47952479524795,70.04611936225399],[-92.46152461524615,70.05118509406364],[-92.45792457924578,70.06807086676247],[-92.31032310323103,70.0950881030806],[-92.11232112321123,70.08833379400104],[-92.05112051120511,70.07651375311187],[-91.99351993519934,70.05625082587329],[-91.9431194311943,70.02416785774551],[-91.95751957519575,70.01572497139611],[-92.02592025920259,69.9954620441575],[-92.0331203312033,69.9954620441575],[-92.06552065520656,69.9954620441575],[-92.07632076320763,69.99377346688763],[-92.07992079920798,69.9870191578081],[-92.08352083520835,69.98026484872855],[-92.08712087120871,69.9751991169189],[-92.22392223922239,69.91441033520314],[-92.24552245522455,69.90934460339349],[-92.27072270722707,69.90765602612362],[-92.27072270722707,69.90090171704406],[-92.26352263522635,69.89921313977419],[-92.24552245522455,69.89414740796454],[-92.26352263522635,69.87557305799584],[-92.34272342723428,69.86206443983679],[-92.37872378723787,69.84517866713796],[-92.38952389523895,69.84517866713796],[-92.40032400324003,69.84517866713796],[-92.40752407524074,69.84517866713796],[-92.41832418324184,69.84180151259818],[-92.43272432724326,69.83335862624878],[-92.43632436324363,69.83167004897888],[-92.45432454324543,69.829981471709],[-92.49032490324903,69.82153858535958],[-92.51192511925119,69.81816143081983],[-92.53712537125371,69.8198500080897],[-92.54792547925479,69.81647285354995],[-92.55152551525515,69.80802996720053],[-92.55152551525515,69.801275658121],[-92.54432544325444,69.78945561723182],[-92.54432544325444,69.78438988542217],[-92.55512555125551,69.772569844533],[-92.56952569525696,69.76412695818357],[-92.58392583925838,69.7624383809137],[-92.60192601926019,69.76750411272334],[-92.64152641526415,69.7911441945017],[-92.64872648726487,69.79452134904147],[-92.67392673926739,69.7810127308824],[-92.67392673926739,69.77425842180287],[-92.6559265592656,69.77088126726312],[-92.68472684726846,69.75737264910404],[-92.84312843128431,69.71009248554734],[-92.86832868328683,69.70840390827746],[-92.86832868328683,69.7016495991979],[-92.53712537125371,69.71515821735699],[-92.53712537125371,69.70840390827746],[-92.62352623526235,69.70502675373768],[-92.64872648726487,69.69996102192803],[-92.71352713527135,69.67632094014968],[-92.73872738727387,69.6746323628798],[-92.81432814328143,69.67969809468946],[-92.85392853928539,69.68982955830873],[-92.92232922329222,69.68138667195933],[-92.92232922329222,69.6746323628798],[-92.86472864728647,69.66281232199063],[-92.83232832328324,69.66112374472073],[-92.7711277112771,69.66956663107015],[-92.6991269912699,69.6543694356412],[-92.67032670326702,69.6543694356412],[-92.64872648726487,69.66112374472073],[-92.60192601926019,69.6830752492292],[-92.47232472324723,69.69827244465816],[-92.45072450724507,69.68814098103886],[-92.4039240392404,69.68476382649908],[-92.38952389523895,69.68814098103886],[-92.38592385923859,69.69151813557863],[-92.38592385923859,69.69827244465816],[-92.38232382323822,69.70502675373768],[-92.37512375123751,69.70840390827746],[-92.3679236792368,69.70840390827746],[-92.33912339123391,69.7016495991979],[-92.33912339123391,69.69489529011838],[-92.34992349923499,69.68982955830873],[-92.36072360723607,69.6830752492292],[-92.3679236792368,69.67632094014968],[-92.37512375123751,69.66787805380025],[-92.35352353523535,69.66112374472073],[-92.33912339123391,69.65943516745085],[-92.32832328323283,69.66112374472073],[-92.33192331923318,69.66112374472073],[-92.33552335523355,69.66281232199063],[-92.33552335523355,69.66787805380025],[-92.26352263522635,69.66618947653038],[-92.22752227522275,69.65943516745085],[-92.17712177121771,69.63410650840262],[-92.1159211592116,69.63241793113272],[-92.09072090720908,69.6256636220532],[-92.08712087120871,69.61890931297367],[-92.24552245522455,69.63410650840262],[-92.25992259922599,69.6357950856725],[-92.26352263522635,69.63410650840262],[-92.27072270722707,69.63917224021225],[-92.28872288722887,69.6459265492918],[-92.29952299522995,69.6459265492918],[-92.29952299522995,69.64086081748215],[-92.23832238322383,69.60540069481459],[-92.18072180721806,69.59358065392541],[-92.16992169921699,69.58513776757601],[-92.16992169921699,69.59020349938567],[-92.16632166321664,69.59189207665554],[-92.16632166321664,69.58851492211576],[-92.16272162721627,69.58513776757601],[-92.16992169921699,69.57838345849649],[-92.14472144721447,69.57838345849649],[-92.13392133921339,69.57500630395671],[-92.12312123121231,69.57162914941696],[-92.12312123121231,69.56825199487719],[-92.12672126721267,69.55812053125788],[-92.10152101521015,69.55812053125788],[-91.96831968319682,69.53448044947953],[-91.93591935919359,69.51928325405058],[-91.87471874718747,69.5091517904313],[-91.82071820718207,69.49057744046257],[-91.79911799117991,69.4888888631927],[-91.80271802718026,69.51252894497105],[-91.77391773917739,69.52603756313013],[-91.7379173791738,69.53448044947953],[-91.70911709117091,69.54461191309883],[-91.7379173791738,69.55136622217836],[-91.71271712717127,69.55812053125788],[-91.64791647916479,69.55812053125788],[-91.63351633516335,69.56318626306754],[-91.59751597515975,69.58176061303624],[-91.57951579515795,69.58513776757601],[-91.58671586715867,69.60033496300497],[-91.59391593915939,69.6070892720845],[-91.6011160111601,69.61215500389415],[-91.58671586715867,69.61890931297367],[-91.55431554315543,69.62735219932307],[-91.54351543515435,69.63748366294237],[-91.53271532715327,69.64086081748215],[-91.51111511115111,69.63917224021225],[-91.50031500315004,69.6442379720219],[-91.50031500315004,69.64761512656167],[-91.49671496714967,69.66112374472073],[-91.46431464314642,69.66787805380025],[-91.42471424714248,69.66787805380025],[-91.35271352713526,69.66112374472073],[-91.33471334713347,69.6543694356412],[-91.32031320313203,69.65268085837133],[-91.30591305913059,69.65774659018098],[-91.29151291512915,69.65943516745085],[-91.2771127711277,69.6543694356412],[-91.26631266312663,69.6459265492918],[-91.25191251912518,69.64086081748215],[-91.19431194311943,69.65605801291107],[-91.16911169111691,69.65605801291107],[-91.16911169111691,69.63241793113272],[-91.1511115111151,69.63241793113272],[-91.09351093510935,69.64086081748215],[-91.10791107911079,69.6256636220532],[-91.13311133111331,69.61890931297367],[-91.1871118711187,69.61890931297367],[-91.21951219512195,69.61384358116402],[-91.3239132391324,69.56318626306754],[-91.359913599136,69.55305479944823],[-91.53991539915398,69.53448044947953],[-91.57231572315723,69.52266040859035],[-91.55791557915579,69.51252894497105],[-91.53991539915398,69.51252894497105],[-91.52551525515256,69.51928325405058],[-91.50391503915039,69.52266040859035],[-91.34551345513455,69.52266040859035],[-91.33831338313382,69.52603756313013],[-91.31671316713167,69.53954618128918],[-91.30591305913059,69.54461191309883],[-91.19071190711907,69.56487484033741],[-91.17631176311762,69.56149768579766],[-91.16551165511655,69.55474337671814],[-91.14751147511475,69.5361690267494],[-91.11151111511114,69.51252894497105],[-91.08631086310862,69.51084036770118],[-91.00711007110071,69.5277261404],[-90.97830978309783,69.51590609951083],[-90.8991089910899,69.5361690267494],[-90.88470884708846,69.53110329493975],[-90.88110881108811,69.51928325405058],[-90.88110881108811,69.50408605862165],[-90.88830888308883,69.4888888631927],[-90.75150751507515,69.4888888631927],[-90.75150751507515,69.51928325405058],[-90.72270722707226,69.53448044947953],[-90.6831068310683,69.53954618128918],[-90.65430654306543,69.5361690267494],[-90.50310503105031,69.5091517904313],[-90.46710467104671,69.4973317495421],[-90.43830438304383,69.49395459500235],[-90.42750427504275,69.48551170865292],[-90.42030420304202,69.47706882230352],[-90.40950409504094,69.4686259359541],[-90.39870398703987,69.46524878141435],[-90.3951039510395,69.46187162687457],[-90.37710377103771,69.46187162687457],[-90.36990369903698,69.4601830496047],[-90.36990369903698,69.45511731779504],[-90.36990369903698,69.45005158598539],[-90.36990369903698,69.44498585417574],[-90.36270362703627,69.44498585417574],[-90.32670326703267,69.45342874052517],[-90.31230312303123,69.45511731779504],[-90.31230312303123,69.44836300871552],[-90.35190351903519,69.43654296782634],[-90.47790477904779,69.44836300871552],[-90.48870488704887,69.44667443144564],[-90.51750517505175,69.43485439055644],[-90.53550535505354,69.42978865874682],[-90.56070560705606,69.42810008147691],[-90.57870578705787,69.42978865874682],[-90.59670596705966,69.43316581328656],[-90.61470614706147,69.43823154509622],[-90.61470614706147,69.44160869963599],[-90.60750607506074,69.44160869963599],[-90.60030600306003,69.44836300871552],[-90.62190621906218,69.45342874052517],[-90.7011070110701,69.45511731779504],[-90.7011070110701,69.44836300871552],[-90.68670686706866,69.44836300871552],[-90.66510665106651,69.44329727690587],[-90.63270632706326,69.42810008147691],[-90.62550625506255,69.42472292693716],[-90.60030600306003,69.42472292693716],[-90.58590585905858,69.42134577239739],[-90.59670596705966,69.41628004058774],[-90.61830618306183,69.41290288604799],[-90.62550625506255,69.40783715423834],[-90.65070650706507,69.41290288604799],[-90.67230672306722,69.40783715423834],[-90.69750697506974,69.39770569061903],[-90.7371073710737,69.39095138153951],[-90.79830798307982,69.36562272249125],[-90.79470794707947,69.3622455679515],[-90.79110791107911,69.3521141043322],[-90.81270812708127,69.34704837252255],[-90.81630816308163,69.3335397543635],[-90.8091080910809,69.32003113620442],[-90.80550805508055,69.31158824985502],[-90.81270812708127,69.30652251804537],[-90.81630816308163,69.29976820896584],[-90.81270812708127,69.29301389988632],[-90.80550805508055,69.28288243626702],[-90.819908199082,69.27612812718749],[-90.81270812708127,69.27106239537784],[-90.80550805508055,69.25586519994889],[-90.9351093510935,69.24911089086936],[-90.9351093510935,69.25586519994889],[-90.90630906309063,69.26768524083806],[-90.89550895508955,69.26937381810794],[-90.90990909909098,69.27106239537784],[-90.94950949509494,69.26261950902841],[-90.94230942309423,69.26261950902841],[-90.94950949509494,69.26261950902841],[-90.95670956709567,69.26261950902841],[-90.96390963909639,69.26599666356819],[-90.97110971109711,69.26937381810794],[-90.94950949509494,69.27612812718749],[-90.94230942309423,69.27612812718749],[-90.94230942309423,69.28288243626702],[-90.95670956709567,69.28288243626702],[-90.95670956709567,69.28963674534654],[-90.94230942309423,69.28963674534654],[-90.93150931509315,69.28963674534654],[-90.92070920709207,69.29470247715619],[-90.91350913509135,69.3048339407755],[-90.93870938709387,69.30314536350559],[-91.06831068310683,69.26768524083806],[-91.08631086310862,69.26937381810794],[-91.09351093510935,69.28457101353689],[-91.06831068310683,69.29639105442607],[-91.01071010710106,69.31158824985502],[-91.00711007110071,69.31665398166467],[-91.00351003510035,69.3318511770936],[-90.99630996309963,69.33860548617315],[-90.9891098910989,69.34367121798277],[-90.95670956709567,69.3521141043322],[-90.95670956709567,69.35886841341173],[-90.98550985509854,69.35886841341173],[-91.01071010710106,69.35042552706233],[-91.08991089910899,69.31158824985502],[-91.15471154711547,69.29301389988632],[-91.19071190711907,69.28963674534654],[-91.25551255512555,69.29807963169594],[-91.449914499145,69.35886841341173],[-91.449914499145,69.3521141043322],[-91.39231392313923,69.32509686801407],[-91.25911259112591,69.28288243626702],[-91.17991179911799,69.27443954991759],[-91.16551165511655,69.26599666356819],[-91.1511115111151,69.25755377721876],[-91.13671136711366,69.24573373632958],[-91.12591125911258,69.23897942725006],[-91.03231032310323,69.21871650001145],[-90.85590855908559,69.14441910013662],[-90.82350823508234,69.13766479105709],[-90.80550805508055,69.13259905924744],[-90.76950769507695,69.10895897746909],[-90.75870758707586,69.10558182292934],[-90.7371073710737,69.10389324565944],[-90.67230672306722,69.08869605023051],[-90.65430654306543,69.07856458661121],[-90.66150661506614,69.06167881391238],[-90.7011070110701,69.0397273094039],[-90.6939069390694,69.0295958457846],[-90.70830708307082,69.00764434127612],[-90.68670686706866,68.99751287765685],[-90.62190621906218,68.99582430038694],[-90.62550625506255,68.99582430038694],[-90.6111061110611,68.98738141403754],[-90.57870578705787,68.94854413683024],[-90.60030600306003,68.94854413683024],[-90.60030600306003,68.94010125048081],[-90.59310593105931,68.93672409594106],[-90.58590585905858,68.92659263232176],[-90.60390603906039,68.92659263232176],[-90.61830618306183,68.9215269005121],[-90.62190621906218,68.91646116870245],[-90.53190531905318,68.9113954368928],[-90.44550445504454,68.88606677784458],[-90.43470434704346,68.87931246876505],[-90.44190441904419,68.87086958241562],[-90.47430474304743,68.86242669606622],[-90.48150481504814,68.85229523244692],[-90.43830438304383,68.8539838097168],[-90.42030420304202,68.85229523244692],[-90.42030420304202,68.8455409233674],[-90.44550445504454,68.84047519155774],[-90.49950499504995,68.84385234609752],[-90.52470524705247,68.83878661428787],[-90.53910539105391,68.83709803701797],[-90.56070560705606,68.82865515066857],[-90.60030600306003,68.80332649162031],[-90.56430564305643,68.79826075981069],[-90.48150481504814,68.82696657339869],[-90.44190441904419,68.83034372793844],[-90.4491044910449,68.82190084158904],[-90.45630456304562,68.81852368704926],[-90.46350463504635,68.81514653250949],[-90.47430474304743,68.80839222342996],[-90.47430474304743,68.79657218254079],[-90.46710467104671,68.79150645073113],[-90.45630456304562,68.78981787346126],[-90.4491044910449,68.78981787346126],[-90.45630456304562,68.77630925530221],[-90.47430474304743,68.76955494622266],[-90.49230492304923,68.77124352349256],[-90.50310503105031,68.78475214165161],[-90.51030510305102,68.78475214165161],[-90.51390513905139,68.76955494622266],[-90.52830528305283,68.75266917352383],[-90.53190531905318,68.74253770990455],[-90.52470524705247,68.73409482355513],[-90.51390513905139,68.72396335993582],[-90.50310503105031,68.7172090508563],[-90.48150481504814,68.71045474177677],[-90.4851048510485,68.70032327815747],[-90.49230492304923,68.68850323726829],[-90.49950499504995,68.66824031002972],[-90.51030510305102,68.66148600095016],[-90.53190531905318,68.65304311460076],[-90.52470524705247,68.64122307371159],[-90.53550535505354,68.63615734190194],[-90.56430564305643,68.62602587828263],[-90.54630546305462,68.62264872374288],[-90.52470524705247,68.61589441466333],[-90.50670506705066,68.60407437377415],[-90.48870488704887,68.59225433288498],[-90.50310503105031,68.58381144653558],[-90.53190531905318,68.5821228692657],[-90.53910539105391,68.57874571472593],[-90.53910539105391,68.5719914056464],[-90.53910539105391,68.56523709656688],[-90.53190531905318,68.56017136475722],[-90.52830528305283,68.55679421021745],[-90.50670506705066,68.55341705567767],[-90.4851048510485,68.5432855920584],[-90.47790477904779,68.53484270570897],[-90.49230492304923,68.52977697389932],[-90.49950499504995,68.52471124208967],[-90.51750517505175,68.49262827396191],[-90.52830528305283,68.48925111942214],[-90.60030600306003,68.46054530583413],[-90.60750607506074,68.45885672856426],[-90.60750607506074,68.45041384221483],[-90.60750607506074,68.4436595331353],[-90.60390603906039,68.44028237859555],[-90.56430564305643,68.433528069516],[-90.49590495904958,68.41326514227742],[-90.31950319503194,68.37949359687977],[-90.31950319503194,68.37273928780024],[-90.3591035910359,68.37273928780024],[-90.47430474304743,68.33727916513268],[-90.38790387903879,68.35078778329176],[-90.33750337503375,68.35247636056164],[-90.31230312303123,68.33727916513268],[-90.31590315903159,68.33390201059294],[-90.31590315903159,68.33052485605316],[-90.31590315903159,68.32883627878329],[-90.31230312303123,68.32377054697363],[-90.3231032310323,68.31026192881458],[-90.31950319503194,68.2984418879254],[-90.28710287102871,68.27986753795668],[-90.279902799028,68.2680474970675],[-90.279902799028,68.25116172436867],[-90.2691026910269,68.24271883801927],[-90.23670236702367,68.23258737439997],[-90.19350193501934,68.23596452893975],[-90.15030150301503,68.24778456982892],[-90.12150121501215,68.26298176525785],[-90.12870128701287,68.2680474970675],[-90.13590135901359,68.27649038341693],[-90.13950139501395,68.28493326976633],[-90.13950139501395,68.29337615611576],[-90.16470164701647,68.30350761973506],[-90.17190171901719,68.3068847742748],[-90.16470164701647,68.31532766062423],[-90.11070110701107,68.33390201059294],[-90.09990099900999,68.33727916513268],[-90.0711007110071,68.34403347421224],[-90.02430024300243,68.37273928780024],[-89.99909999099991,68.37949359687977],[-89.99549995499954,68.38287075141952],[-89.99189991899918,68.38962506049907],[-89.98829988299883,68.4065108331979],[-90.00270002700027,68.41326514227742],[-90.00270002700027,68.42001945135695],[-89.9810998109981,68.42846233770635],[-90.00270002700027,68.433528069516],[-89.97749977499775,68.44534811040518],[-89.92349923499235,68.45210241948473],[-89.90189901899019,68.46054530583413],[-89.91269912699127,68.47067676945343],[-89.9090990909909,68.47911965580283],[-89.90189901899019,68.48587396488239],[-89.88749887498875,68.48587396488239],[-89.86949869498694,68.48249681034261],[-89.86589865898658,68.48756254215226],[-89.86229862298623,68.49938258304144],[-89.85869858698587,68.50951404666074],[-89.85149851498515,68.52302266481979],[-89.83709837098371,68.53653128297884],[-89.82269822698227,68.54497416932827],[-89.86589865898658,68.54497416932827],[-89.89469894698946,68.55003990113792],[-89.91989919899198,68.56354851929697],[-89.93789937899379,68.58718860107533],[-89.9450994509945,68.60407437377415],[-89.9450994509945,68.61589441466333],[-89.93069930699306,68.62433730101276],[-89.9090990909909,68.63278018736216],[-89.89829898298983,68.64460022825133],[-89.90189901899019,68.65979742368029],[-89.84789847898479,68.67668319637912],[-89.83349833498335,68.68681465999842],[-89.8190981909819,68.707077587237],[-89.80829808298083,68.71214331904665],[-89.79389793897938,68.71552047358642],[-89.7650976509765,68.70370043269725],[-89.75429754297542,68.67668319637912],[-89.75429754297542,68.64797738279111],[-89.77229772297723,68.62602587828263],[-89.75429754297542,68.62602587828263],[-89.73989739897398,68.62940303282241],[-89.71469714697146,68.64628880552124],[-89.71469714697146,68.65135453733089],[-89.71829718297182,68.65810884641041],[-89.72189721897219,68.66824031002972],[-89.72189721897219,68.67330604183937],[-89.72549725497255,68.68850323726829],[-89.72549725497255,68.707077587237],[-89.71829718297182,68.72565193720573],[-89.71109711097111,68.73916055536478],[-89.70029700297003,68.75266917352383],[-89.69669696696967,68.76448921441303],[-89.70389703897038,68.77630925530221],[-89.71469714697146,68.78981787346126],[-89.70389703897038,68.79319502800104],[-89.69669696696967,68.79994933708056],[-89.68949689496894,68.80670364616009],[-89.68949689496894,68.81683510977939],[-89.6930969309693,68.82865515066857],[-89.70389703897038,68.83203230520832],[-89.73629736297363,68.83034372793844],[-89.72549725497255,68.8455409233674],[-89.72189721897219,68.85229523244692],[-89.72189721897219,68.86242669606622],[-89.73269732697327,68.89113250965423],[-89.74709747097471,68.91646116870245],[-89.75069750697507,68.94854413683024],[-89.75069750697507,68.95698702317964],[-89.74349743497434,68.96880706406884],[-89.72549725497255,68.99413572311707],[-89.70389703897038,69.0194643821653],[-89.67149671496715,69.04479304121355],[-89.54549545495455,69.09207320477026],[-89.4410944109441,69.15455056375592],[-89.4410944109441,69.16299345010535],[-89.40869408694087,69.17481349099452],[-89.40149401494014,69.18494495461383],[-89.39429394293943,69.21196219093193],[-89.39789397893979,69.2153393454717],[-89.38349383493835,69.22040507728136],[-89.33309333093331,69.24911089086936],[-89.31149311493115,69.25417662267901],[-89.26469264692646,69.26093093175854],[-89.19989199891998,69.27781670445736],[-89.03429034290343,69.26768524083806],[-88.94068940689407,69.2339136954404],[-88.9370893708937,69.22715938636088],[-88.94068940689407,69.2153393454717],[-88.93348933489335,69.20351930458253],[-88.92268922689226,69.1950764182331],[-88.90828908289083,69.19001068642345],[-88.9010890108901,69.18832210915357],[-88.88668886688866,69.17987922280417],[-88.86148861488614,69.15117340921617],[-88.8470884708847,69.13935336832697],[-88.79668796687966,69.11571328654861],[-88.72828728287283,69.08363031842086],[-88.5590855908559,69.0295958457846],[-88.5230852308523,69.01271007308577],[-88.44748447484474,68.99751287765685],[-88.24948249482495,68.93165836413141],[-88.02268022680227,68.80839222342996],[-87.97947979479794,68.77124352349256],[-87.9470794707947,68.72902909174547],[-87.92547925479255,68.68681465999842],[-87.91827918279182,68.66486315548994],[-87.91827918279182,68.65304311460076],[-87.92187921879218,68.64291165098146],[-87.9470794707947,68.6091401055838],[-87.93987939879399,68.58718860107533],[-87.92547925479255,68.56523709656688],[-87.90747907479074,68.54835132386805],[-87.8930789307893,68.53653128297884],[-87.88947889478895,68.51626835574027],[-87.87867878678786,68.49600542850166],[-87.8570785707857,68.47911965580283],[-87.83187831878318,68.46898819218356],[-87.84267842678426,68.4537909967546],[-87.84267842678426,68.44197095586543],[-87.83547835478355,68.43183949224613],[-87.79947799477995,68.404822255928],[-87.79587795877958,68.3862479059593],[-87.79947799477995,68.36767355599059],[-87.8030780307803,68.34403347421224],[-87.79947799477995,68.33727916513268],[-87.79227792277922,68.33559058786281],[-87.79227792277922,68.33052485605316],[-87.79947799477995,68.32039339243386],[-87.80667806678066,68.31195050608446],[-87.81027810278103,68.30181904246516],[-87.81387813878139,68.29337615611576],[-87.8210782107821,68.28999900157598],[-87.82827828278282,68.28662184703623],[-87.83907839078391,68.26467034252775],[-87.84627846278462,68.25622745617832],[-87.85347853478534,68.2494731470988],[-87.8930789307893,68.23596452893975],[-87.9110791107911,68.22245591078067],[-87.9290792907929,68.20725871535174],[-87.94347943479434,68.20050440627219],[-87.99387993879938,68.22921021986019],[-88.02628026280263,68.23765310620962],[-88.09468094680946,68.24271883801927],[-88.10188101881019,68.24271883801927],[-88.11628116281163,68.2494731470988],[-88.12708127081271,68.2494731470988],[-88.13068130681306,68.24778456982892],[-88.14148141481415,68.23765310620962],[-88.1450814508145,68.23596452893975],[-88.15948159481594,68.23596452893975],[-88.17028170281702,68.2393416834795],[-88.1810818108181,68.24609599255902],[-88.18828188281883,68.25622745617832],[-88.18828188281883,68.2697360743374],[-88.1810818108181,68.35923066964116],[-88.1810818108181,68.37105071053034],[-88.18828188281883,68.37949359687977],[-88.1990819908199,68.38287075141952],[-88.21348213482135,68.38118217414964],[-88.21708217082171,68.37273928780024],[-88.20988209882098,68.35923066964116],[-88.21708217082171,68.35416493783151],[-88.25668256682566,68.34403347421224],[-88.26748267482675,68.33896774240259],[-88.29628296282962,68.31701623789411],[-88.32148321483214,68.30857335154468],[-88.3970839708397,68.28999900157598],[-88.3970839708397,68.2883104243061],[-88.40068400684007,68.28155611522658],[-88.40788407884078,68.27649038341693],[-88.38628386283862,68.2579160334482],[-88.3430834308343,68.22752164259032],[-88.3250832508325,68.20725871535174],[-88.3250832508325,68.20219298354209],[-88.3250832508325,68.19543867446254],[-88.3250832508325,68.18868436538301],[-88.32148321483214,68.18361863357336],[-88.30348303483035,68.16673286087453],[-88.28188281882818,68.12620700639735],[-88.28188281882818,68.11438696550817],[-88.28548285482854,68.10594407915877],[-88.32868328683287,68.07892684284064],[-88.33588335883358,68.07723826557077],[-88.3430834308343,68.07554968830087],[-88.3430834308343,68.07048395649124],[-88.33948339483395,68.06372964741169],[-88.33948339483395,68.05697533833217],[-88.33588335883358,68.05697533833217],[-88.33228332283322,68.05190960652251],[-88.33588335883358,68.04515529744299],[-88.35028350283503,68.04177814290321],[-88.37548375483755,68.03333525655381],[-88.37908379083791,68.02995810201404],[-88.37908379083791,68.02151521566464],[-88.37188371883718,68.01476090658511],[-88.35748357483574,68.00294086569593],[-88.37188371883718,67.9759236293778],[-88.36468364683647,67.9556607021392],[-88.34668346683466,67.93877492944037],[-88.33228332283322,67.89824907496319],[-88.30348303483035,67.86278895229566],[-88.29628296282962,67.8475917568667],[-88.29268292682927,67.83070598416788],[-88.28188281882818,67.8104430569293],[-88.26388263882639,67.7918687069606],[-88.24948249482495,67.77667151153165],[-88.18468184681846,67.75303142975329],[-88.16308163081631,67.73614565705446],[-88.17388173881739,67.70743984346646],[-88.15228152281523,67.68042260714833],[-88.14148141481415,67.67029114352903],[-88.11268112681127,67.65678252536998],[-88.10188101881019,67.65002821629045],[-88.06948069480694,67.63145386632172],[-87.97947979479794,67.61794524816267],[-87.93987939879399,67.60443663000362],[-87.9110791107911,67.58417370276501],[-87.86787867878678,67.56391077552641],[-87.85347853478534,67.55377931190714],[-87.84267842678426,67.54027069374806],[-87.81387813878139,67.52000776650948],[-87.71307713077131,67.48117048930217],[-87.6590765907659,67.43389032574547],[-87.6410764107641,67.42713601666591],[-87.63027630276302,67.42375886212616],[-87.57267572675727,67.39336447126826],[-87.48267482674827,67.36297008041038],[-87.46827468274682,67.35283861679108],[-87.45747457474575,67.33426426682237],[-87.45387453874538,67.27347548510659],[-87.44667446674467,67.26334402148731],[-87.43227432274323,67.26503259875719],[-87.39987399873998,67.27516406237649],[-87.37827378273782,67.27347548510659],[-87.36387363873638,67.26672117602706],[-87.36027360273603,67.25658971240776],[-87.37107371073711,67.24139251697883],[-87.38187381873819,67.23801536243906],[-87.41427414274142,67.22788389881975],[-87.45387453874538,67.20762097158118],[-87.49347493474934,67.19917808523175],[-87.50067500675006,67.1941123534221],[-87.51147511475115,67.18398088980283],[-87.51147511475115,67.17891515799317],[-87.50787507875079,67.17384942618352],[-87.50787507875079,67.1654065398341],[-87.51147511475115,67.15358649894492],[-87.51147511475115,67.14514361259552],[-87.51147511475115,67.13501214897622],[-87.5150751507515,67.11812637627739],[-87.49707497074971,67.12150353081717],[-87.47547475474754,67.12656926262682],[-87.46107461074611,67.13501214897622],[-87.42867428674286,67.1654065398341],[-87.41427414274142,67.1755380034534],[-87.39627396273963,67.17891515799317],[-87.37107371073711,67.18060373526305],[-87.32787327873278,67.17384942618352],[-87.32427324273242,67.17047227164375],[-87.32427324273242,67.15527507621482],[-87.31347313473134,67.13501214897622],[-87.30987309873099,67.11812637627739],[-87.30267302673026,67.10292918084843],[-87.28827288272882,67.09786344903878],[-87.27747277472774,67.10799491265809],[-87.25587255872559,67.18060373526305],[-87.24867248672486,67.1856694670727],[-87.23427234272343,67.1941123534221],[-87.2270722707227,67.20086666250165],[-87.23067230672306,67.20593239431128],[-87.23787237872378,67.20930954885105],[-87.24147241472414,67.2143752806607],[-87.24147241472414,67.22112958974023],[-87.2270722707227,67.22788389881975],[-87.19467194671947,67.2228181670101],[-87.18027180271802,67.22788389881975],[-87.18027180271802,67.23632678516918],[-87.16227162271622,67.23632678516918],[-87.1370713707137,67.22957247608966],[-87.1190711907119,67.2143752806607],[-87.12627126271262,67.20255523977153],[-87.12267122671227,67.18735804434257],[-87.11547115471154,67.17891515799317],[-87.1010710107101,67.18398088980283],[-87.08307083070831,67.20593239431128],[-87.07587075870758,67.21775243520048],[-87.07227072270723,67.22788389881975],[-87.07587075870758,67.25321255786801],[-87.07227072270723,67.26334402148731],[-87.05067050670506,67.25827828967766],[-87.0290702907029,67.25152398059811],[-87.00387003870038,67.24645824878849],[-86.98226982269823,67.24645824878849],[-86.96066960669606,67.25490113513789],[-86.99666996669967,67.27347548510659],[-87.00747007470075,67.28698410326567],[-86.9930699306993,67.3038698759645],[-87.0110701107011,67.31062418504402],[-87.04707047070471,67.31737849412355],[-87.0650706507065,67.32413280320307],[-87.07587075870758,67.3308871122826],[-87.08667086670866,67.3427071531718],[-87.09387093870939,67.35283861679108],[-87.07947079470794,67.35790434860073],[-87.03987039870398,67.35452719406098],[-87.01827018270183,67.34946146225133],[-87.00387003870038,67.3410185759019],[-86.99666996669967,67.3308871122826],[-86.98946989469894,67.32413280320307],[-86.9750697506975,67.32413280320307],[-86.96066960669606,67.3308871122826],[-86.96786967869679,67.3427071531718],[-86.96786967869679,67.35621577133085],[-86.96066960669606,67.36803581222003],[-86.92826928269282,67.37647869856943],[-86.89586895868959,67.40011878034781],[-86.88146881468815,67.40687308942734],[-86.80946809468094,67.41700455304664],[-86.78066780667807,67.41869313031651],[-86.7410674106741,67.40687308942734],[-86.6870668706687,67.37310154402968],[-86.65466654666547,67.36297008041038],[-86.62586625866258,67.3714129667598],[-86.62226622266222,67.40180735761768],[-86.6150661506615,67.41362739850686],[-86.5970659706597,67.40687308942734],[-86.59346593465935,67.39674162580803],[-86.5970659706597,67.38323300764898],[-86.60066600666006,67.3714129667598],[-86.60426604266043,67.36465865768025],[-86.58266582665826,67.34946146225133],[-86.55386553865539,67.35283861679108],[-86.52146521465214,67.36465865768025],[-86.50346503465035,67.3798558531092],[-86.51066510665106,67.39167589399838],[-86.52866528665287,67.41700455304664],[-86.53586535865358,67.42713601666591],[-86.53586535865358,67.43051317120569],[-86.53586535865358,67.44064463482499],[-86.53586535865358,67.44739894390452],[-86.49626496264962,67.45246467571417],[-86.48186481864818,67.4592189847937],[-86.47466474664746,67.4777933347624],[-86.47826478264783,67.48961337565157],[-86.4890648906489,67.49974483927087],[-86.49266492664927,67.51156488016005],[-86.48186481864818,67.53013923012875],[-86.4890648906489,67.54195927101796],[-86.48546485464854,67.55209073463723],[-86.48186481864818,67.56222219825653],[-86.48186481864818,67.57404223914571],[-86.4710647106471,67.57910797095536],[-86.45666456664566,67.59261658911441],[-86.4530645306453,67.6061252072735],[-86.4890648906489,67.61794524816267],[-86.49266492664927,67.62807671178197],[-86.49266492664927,67.64158532994102],[-86.49626496264962,67.6534053708302],[-86.50346503465035,67.66184825717963],[-86.52146521465214,67.67704545260855],[-86.52866528665287,67.68717691622786],[-86.47826478264783,67.71757130708573],[-86.39186391863919,67.8104430569293],[-86.3450634506345,67.84421460232696],[-86.29106291062911,67.86785468410531],[-86.2730627306273,67.88305187953426],[-86.25146251462515,67.89487192042344],[-86.18666186661866,67.91344627039214],[-86.17946179461794,67.92020057947167],[-86.17226172261722,67.93202062036084],[-86.16506165061651,67.9370863521705],[-86.13626136261362,67.95059497032955],[-86.12906129061291,67.9573492794091],[-86.12186121861218,67.96916932029828],[-86.12546125461255,67.9843665157272],[-86.13266132661326,67.99956371115616],[-86.13986139861399,68.00969517477546],[-86.12906129061291,68.01644948385498],[-86.12186121861218,68.02151521566464],[-86.10746107461074,68.02151521566464],[-86.09666096660966,68.01644948385498],[-86.1110611106111,68.00294086569593],[-86.10746107461074,67.99112082480676],[-86.09666096660966,67.9843665157272],[-86.07866078660787,67.98098936118745],[-86.06786067860678,67.9843665157272],[-86.0570605706057,67.99956371115616],[-86.04986049860499,68.00294086569593],[-86.02466024660247,68.00631802023568],[-86.01026010260102,68.00969517477546],[-85.90225902259023,68.05359818379242],[-85.89865898658987,68.06035249287194],[-85.90225902259023,68.06879537922134],[-85.91305913059131,68.08568115192017],[-85.91665916659166,68.09750119280935],[-85.91305913059131,68.11100981096843],[-85.90585905859058,68.1211412745877],[-85.89145891458914,68.12620700639735],[-85.86625866258662,68.12958416093713],[-85.86625866258662,68.13802704728653],[-85.87705877058771,68.1515356654456],[-85.88425884258842,68.16335570633478],[-85.88785887858879,68.17517574722396],[-85.89145891458914,68.18530721084326],[-85.88785887858879,68.19206151992279],[-85.86985869858698,68.20050440627219],[-85.85185851858519,68.20219298354209],[-85.82665826658267,68.20050440627219],[-85.8050580505805,68.20388156081196],[-85.79065790657906,68.22245591078067],[-85.81585815858158,68.22414448805057],[-85.83385833858338,68.2308987971301],[-85.84465844658446,68.24440741528915],[-85.83745837458375,68.2697360743374],[-85.82665826658267,68.27649038341693],[-85.81945819458194,68.27986753795668],[-85.81225812258123,68.28324469249645],[-85.80865808658086,68.2967533106555],[-85.81225812258123,68.30519619700493],[-85.83385833858338,68.31701623789411],[-85.84465844658446,68.32377054697363],[-85.81945819458194,68.32883627878329],[-85.8050580505805,68.33559058786281],[-85.71865718657186,68.39806794684847],[-85.70785707857078,68.41326514227742],[-85.71865718657186,68.41833087408708],[-85.73665736657367,68.42846233770635],[-85.74745747457474,68.43690522405578],[-85.74025740257402,68.44028237859555],[-85.70425704257042,68.4436595331353],[-85.68265682656826,68.44703668767508],[-85.66465664656646,68.4537909967546],[-85.71145711457115,68.46054530583413],[-85.7330573305733,68.46561103764378],[-85.74025740257402,68.47911965580283],[-85.73665736657367,68.48418538761248],[-85.72945729457294,68.48925111942214],[-85.72225722257222,68.49600542850166],[-85.72225722257222,68.50613689212096],[-85.72225722257222,68.52977697389932],[-85.72225722257222,68.53653128297884],[-85.72225722257222,68.53990843751862],[-85.72585725857259,68.5415970147885],[-85.72585725857259,68.5432855920584],[-85.72225722257222,68.55003990113792],[-85.7330573305733,68.55679421021745],[-85.74025740257402,68.56523709656688],[-85.73665736657367,68.57536856018615],[-85.72585725857259,68.58550002380545],[-85.74385743857438,68.61251726012358],[-85.74385743857438,68.62433730101276],[-85.7330573305733,68.63953449644171],[-85.72585725857259,68.64628880552124],[-85.70425704257042,68.65810884641041],[-85.69345693456934,68.66655173275981],[-85.68985689856898,68.67499461910924],[-85.68265682656826,68.69525754634782],[-85.6790567905679,68.70370043269725],[-85.66825668256682,68.7273405144756],[-85.6430564305643,68.74253770990455],[-85.61065610656107,68.7476034417142],[-85.56025560255603,68.73071766901538],[-85.52425524255243,68.73409482355513],[-85.48465484654847,68.74253770990455],[-85.45945459454595,68.7560463280636],[-85.48465484654847,68.7661777916829],[-85.56385563855638,68.78475214165161],[-85.41265412654126,68.7746206780323],[-85.36225362253622,68.76280063714313],[-85.37665376653766,68.75098059625395],[-85.38385383853839,68.7459148644443],[-85.3910539105391,68.74253770990455],[-85.35865358653587,68.73409482355513],[-85.22545225452254,68.72058620539607],[-85.21825218252182,68.73240624628525],[-85.23265232652327,68.74422628717443],[-85.26145261452614,68.74929201898408],[-85.23985239852398,68.7661777916829],[-85.20025200252002,68.76448921441303],[-85.12465124651246,68.74929201898408],[-84.95904959049591,68.76280063714313],[-84.93744937449374,68.75942348260338],[-84.89784897848978,68.7459148644443],[-84.80784807848079,68.73409482355513],[-84.78984789847898,68.73578340082503],[-84.78264782647827,68.74084913263465],[-84.7610476104761,68.75773490533348],[-84.75384753847538,68.76280063714313],[-84.7610476104761,68.77799783257208],[-84.77544775447754,68.78475214165161],[-84.78984789847898,68.78812929619139],[-84.7970479704797,68.79319502800104],[-84.80784807848079,68.81345795523961],[-84.84024840248402,68.82358941885892],[-84.9050490504905,68.82527799612879],[-84.9230492304923,68.82358941885892],[-84.96624966249662,68.81345795523961],[-84.98784987849878,68.81176937796974],[-85.14625146251463,68.83540945974809],[-85.17865178651786,68.84722950063727],[-85.1930519305193,68.86918100514575],[-85.17145171451715,68.87762389149515],[-85.04185041850418,68.86580385060597],[-85.05265052650526,68.86918100514575],[-85.05625056250562,68.87255815968552],[-85.05625056250562,68.87931246876505],[-85.02745027450274,68.87931246876505],[-85.0130501305013,68.88100104603492],[-85.00225002250022,68.88606677784458],[-85.01665016650166,68.8928210869241],[-85.05625056250562,68.89957539600363],[-85.07065070650707,68.90632970508318],[-85.06345063450634,68.91814974597236],[-85.0130501305013,68.91646116870245],[-85.00225002250022,68.92490405505188],[-85.14625146251463,68.94854413683024],[-85.11745117451174,68.96374133225919],[-85.08145081450814,68.96374133225919],[-84.95544955449554,68.95023271410011],[-84.9410494104941,68.94347840502058],[-84.91944919449195,68.93841267321093],[-84.87984879848798,68.94178982775071],[-84.80424804248042,68.93334694140128],[-84.7970479704797,68.93672409594106],[-84.7970479704797,68.95023271410011],[-84.80424804248042,68.96036417771941],[-84.8150481504815,68.96542990952906],[-84.9050490504905,68.97387279587846],[-84.9410494104941,68.98400425949777],[-84.94464944649447,69.00257860946647],[-84.95544955449554,69.00257860946647],[-84.96624966249662,69.00257860946647],[-84.9770497704977,69.00595576400625],[-84.98784987849878,69.00933291854602],[-84.95184951849518,69.01777580489542],[-84.83664836648366,69.00933291854602],[-84.84024840248402,69.0194643821653],[-84.84384843848439,69.02284153670507],[-84.80784807848079,69.03466157759425],[-84.7250472504725,69.00933291854602],[-84.6710467104671,69.01439865035567],[-84.6170461704617,69.00426718673637],[-84.5990459904599,68.99920145492672],[-84.58104581045811,68.99751287765685],[-84.5630456304563,69.0008900321966],[-84.54144541445415,69.00933291854602],[-84.5270452704527,69.02284153670507],[-84.55944559445594,69.0295958457846],[-84.6530465304653,69.0295958457846],[-84.66384663846638,69.03466157759425],[-84.67464674646746,69.04310446394368],[-84.6890468904689,69.04648161848343],[-84.71424714247142,69.03466157759425],[-84.72864728647286,69.03635015486412],[-84.7430474304743,69.04141588667378],[-84.75384753847538,69.0498587730232],[-84.75384753847538,69.0583016593726],[-84.75024750247502,69.06505596845213],[-84.74664746647466,69.07518743207143],[-84.75384753847538,69.08531889569073],[-84.76824768247683,69.08869605023051],[-84.89064890648906,69.07856458661121],[-84.9230492304923,69.08025316388108],[-84.95184951849518,69.09207320477026],[-84.94824948249482,69.10727040019921],[-84.97344973449734,69.11402470927874],[-85.02745027450274,69.11909044108839],[-84.98064980649806,69.13259905924744],[-84.96624966249662,69.13935336832697],[-85.00945009450095,69.14610767740652],[-85.09585095850959,69.12077901835826],[-85.1390513905139,69.12584475016791],[-85.11385113851138,69.15455056375592],[-85.07065070650707,69.16299345010535],[-85.02385023850238,69.16299345010535],[-84.98784987849878,69.17481349099452],[-85.0130501305013,69.17987922280417],[-85.16785167851678,69.17312491372462],[-85.1930519305193,69.1663706046451],[-85.18225182251823,69.15286198648604],[-85.18585185851857,69.14273052286674],[-85.20025200252002,69.13597621378722],[-85.21825218252182,69.13259905924744],[-85.26865268652686,69.13766479105709],[-85.29385293852938,69.14441910013662],[-85.31545315453154,69.15455056375592],[-85.29025290252902,69.1663706046451],[-85.22545225452254,69.17481349099452],[-85.20745207452075,69.18832210915357],[-85.25425254252542,69.196764995503],[-85.34785347853479,69.20014215004275],[-85.3910539105391,69.2153393454717],[-85.37665376653766,69.22209365455123],[-85.43425434254343,69.26261950902841],[-85.44145441454414,69.26768524083806],[-85.4630546305463,69.27275097264771],[-85.47385473854739,69.27612812718749],[-85.47745477454774,69.28119385899711],[-85.48465484654847,69.29470247715619],[-85.49185491854918,69.30145678623572],[-85.49905499054991,69.31834255893455],[-85.48825488254882,69.32678544528395],[-85.46665466654666,69.32678544528395],[-85.42345423454235,69.3132768271249],[-85.3910539105391,69.30821109531524],[-85.36225362253622,69.30989967258512],[-85.3370533705337,69.31834255893455],[-85.3550535505355,69.32171971347432],[-85.41265412654126,69.33860548617315],[-85.4450544505445,69.34367121798277],[-85.45585455854558,69.34704837252255],[-85.46665466654666,69.35886841341173],[-85.45585455854558,69.36562272249125],[-85.44865448654487,69.36562272249125],[-85.44145441454414,69.36562272249125],[-85.45585455854558,69.37744276338043],[-85.47745477454774,69.38250849519008],[-85.49905499054991,69.3892628042696],[-85.50985509855099,69.40783715423834],[-85.48465484654847,69.41459146331786],[-85.41265412654126,69.41459146331786],[-85.38385383853839,69.41796861785761],[-85.38025380253802,69.42641150420704],[-85.3910539105391,69.43654296782634],[-85.41265412654126,69.44836300871552],[-85.34425344253442,69.44160869963599],[-85.35865358653587,69.45342874052517],[-85.37665376653766,69.46187162687457],[-85.39825398253983,69.46693735868422],[-85.41985419854198,69.4686259359541],[-85.43785437854378,69.46524878141435],[-85.4630546305463,69.44667443144564],[-85.4810548105481,69.44160869963599],[-85.50985509855099,69.44667443144564],[-85.5350553505535,69.46356020414447],[-85.53865538655386,69.48382313138305],[-85.51345513455134,69.50239748135175],[-85.53145531455314,69.52603756313013],[-85.50625506255062,69.53954618128918],[-85.47385473854739,69.54967764490848],[-85.4810548105481,69.56487484033741],[-85.45945459454595,69.56994057214706],[-85.38385383853839,69.56487484033741],[-85.49545495454954,69.6172207357038],[-85.54585545855458,69.65268085837133],[-85.51345513455134,69.68138667195933],[-85.47025470254702,69.68138667195933],[-85.44865448654487,69.68982955830873],[-85.44145441454414,69.71178106281721],[-85.44865448654487,69.74048687640521],[-85.47025470254702,69.74892976275464],[-85.49545495454954,69.75230691729439],[-85.51345513455134,69.77088126726312],[-85.43065430654306,69.78776703996195],[-85.39825398253983,69.78607846269205],[-85.41265412654126,69.75568407183417],[-85.3910539105391,69.75568407183417],[-85.36945369453694,69.76074980364382],[-85.34785347853479,69.76919268999322],[-85.33345333453335,69.7810127308824],[-85.33345333453335,69.7911441945017],[-85.34425344253442,69.80634138993065],[-85.35865358653587,69.8198500080897],[-85.36945369453694,69.82491573989935],[-85.5890558905589,69.83167004897888],[-85.57825578255782,69.85024439894761],[-85.56385563855638,69.85868728529701],[-85.35865358653587,69.85362155348736],[-85.3190531905319,69.84686724440783],[-85.1750517505175,69.79452134904147],[-85.09585095850959,69.77932415361252],[-85.05625056250562,69.77763557634265],[-85.05625056250562,69.79620992631135],[-85.0310503105031,69.80634138993065],[-84.90864908649087,69.81309569901018],[-84.87984879848798,69.81816143081983],[-84.85824858248583,69.83167004897888],[-84.86544865448654,69.8384243580584],[-84.89784897848978,69.85362155348736],[-84.86184861848618,69.86206443983679],[-84.77544775447754,69.8384243580584],[-84.73224732247323,69.84180151259818],[-84.69624696246962,69.85362155348736],[-84.33984339843398,69.86037586256688],[-84.33264332643326,69.85699870802713],[-84.31824318243181,69.84686724440783],[-84.30744307443074,69.84349008986806],[-84.29664296642966,69.83504720351866],[-84.28944289442894,69.83167004897888],[-84.24624246242462,69.8384243580584],[-84.17064170641706,69.82491573989935],[-84.03024030240302,69.76412695818357],[-83.81423814238143,69.73373256732569],[-83.7530375303753,69.71178106281721],[-83.73143731437314,69.70840390827746],[-83.68463684636846,69.70840390827746],[-83.49383493834938,69.68645240376898],[-83.45063450634505,69.69489529011838],[-83.3570335703357,69.68138667195933],[-83.32823328233282,69.68645240376898],[-83.28143281432814,69.70502675373768],[-83.25263252632526,69.70840390827746],[-83.02223022230221,69.68138667195933],[-82.90342903429034,69.69489529011838],[-82.68742687426874,69.68138667195933],[-82.66582665826658,69.68814098103886],[-82.6730267302673,69.68814098103886],[-82.68382683826837,69.68982955830873],[-82.6910269102691,69.69489529011838],[-82.69822698226982,69.7016495991979],[-82.62982629826298,69.70333817646781],[-82.59742597425974,69.69827244465816],[-82.56862568625687,69.68814098103886],[-82.57222572225722,69.6830752492292],[-82.57582575825758,69.6746323628798],[-82.41742417424175,69.6459265492918],[-82.25182251822518,69.64086081748215],[-82.40662406624065,69.61890931297367],[-82.43182431824317,69.62228646751342],[-82.4570245702457,69.63917224021225],[-82.61542615426154,69.6459265492918],[-82.61182611826118,69.64086081748215],[-82.60462604626046,69.6357950856725],[-82.6010260102601,69.63410650840262],[-82.59022590225902,69.63241793113272],[-82.60822608226081,69.62735219932307],[-82.64422644226443,69.62904077659297],[-82.65862658626585,69.61890931297367],[-82.55422554225542,69.60033496300497],[-82.5830258302583,69.59020349938567],[-82.75222752227522,69.57838345849649],[-82.6190261902619,69.56994057214706],[-82.59742597425974,69.56149768579766],[-82.57942579425794,69.54967764490848],[-82.47862478624786,69.50239748135175],[-82.51462514625146,69.49395459500235],[-82.88542885428853,69.52603756313013],[-83.25263252632526,69.55812053125788],[-83.27423274232741,69.55474337671814],[-83.28863288632886,69.54630049036871],[-83.29223292232922,69.53954618128918],[-83.27423274232741,69.5361690267494],[-83.19143191431914,69.5361690267494],[-82.73782737827378,69.4787573995734],[-82.28062280622805,69.41965719512751],[-82.24462244622445,69.40783715423834],[-82.22662226622266,69.39432853607926],[-82.26622266222662,69.38588564972986],[-82.38862388623886,69.40783715423834],[-82.38862388623886,69.40108284515881],[-82.35982359823598,69.39263995880938],[-82.30582305823057,69.3605569906816],[-82.2410224102241,69.34704837252255],[-82.20142201422014,69.3335397543635],[-82.16542165421654,69.31496540439477],[-82.14382143821437,69.29807963169594],[-82.1690216902169,69.29132532261642],[-82.22662226622266,69.29807963169594],[-82.25182251822518,69.28963674534654],[-82.23022230222301,69.27612812718749],[-82.2410224102241,69.26599666356819],[-82.2950229502295,69.25586519994889],[-82.26982269822697,69.23897942725006],[-82.23742237422374,69.23560227271028],[-82.02862028620285,69.24911089086936],[-82.03582035820358,69.25417662267901],[-82.03942039420394,69.25924235448866],[-82.04662046620466,69.26937381810794],[-81.99261992619925,69.27781670445736],[-81.75141751417515,69.26768524083806],[-81.63981639816397,69.24742231359949],[-81.49581495814958,69.20351930458253],[-81.4670146701467,69.20183072731263],[-81.42021420214202,69.20858503639218],[-81.40221402214021,69.20858503639218],[-81.3590135901359,69.196764995503],[-81.34461344613446,69.1950764182331],[-81.33741337413373,69.18832210915357],[-81.3230132301323,69.13935336832697],[-81.30141301413013,69.11740186381851],[-81.28701287012869,69.10558182292934],[-81.27261272612726,69.09882751384978],[-81.27261272612726,69.09207320477026],[-81.36261362613625,69.10051609111969],[-81.38781387813877,69.09545035931004],[-81.41301413014129,69.08531889569073],[-81.48141481414814,69.06505596845213],[-81.48861488614885,69.0583016593726],[-81.55341553415533,69.00257860946647],[-81.57861578615785,68.9924471458472],[-81.6110161101611,68.98906999130742],[-81.63621636216362,68.98906999130742],[-81.66861668616686,68.99413572311707],[-81.6830168301683,68.99413572311707],[-81.69021690216901,68.98569283676764],[-81.69381693816938,68.97724995041824],[-81.69381693816938,68.96880706406884],[-81.7010170101701,68.96036417771941],[-81.70461704617045,68.95529844590976],[-81.72981729817297,68.94516698229046],[-81.88461884618846,68.92996978686153],[-82.0070200702007,68.89957539600363],[-82.0610206102061,68.87931246876505],[-81.87381873818738,68.90126397327353],[-81.83421834218342,68.9113954368928],[-81.81621816218161,68.9130840141627],[-81.80541805418054,68.9113954368928],[-81.79461794617946,68.90126397327353],[-81.78741787417874,68.89957539600363],[-81.7730177301773,68.90126397327353],[-81.74061740617405,68.90632970508318],[-81.7010170101701,68.90801828235305],[-81.67221672216722,68.9029525505434],[-81.64341643416434,68.8928210869241],[-81.61461614616145,68.87931246876505],[-81.60741607416074,68.87593531422527],[-81.59661596615966,68.87593531422527],[-81.58941589415893,68.87255815968552],[-81.58221582215822,68.86580385060597],[-81.58221582215822,68.86073811879635],[-81.58221582215822,68.8539838097168],[-81.58581585815858,68.84722950063727],[-81.58941589415893,68.8455409233674],[-81.5750157501575,68.83709803701797],[-81.56061560615606,68.83203230520832],[-81.54621546215462,68.83203230520832],[-81.53181531815318,68.84216376882762],[-81.51741517415174,68.8556723869867],[-81.5030150301503,68.86242669606622],[-81.48861488614885,68.86580385060597],[-81.45261452614525,68.86749242787587],[-81.43821438214381,68.87255815968552],[-81.42021420214202,68.87593531422527],[-81.3950139501395,68.87255815968552],[-81.3770137701377,68.86749242787587],[-81.36621366213662,68.86242669606622],[-81.29421294212942,68.81345795523961],[-81.28701287012869,68.81514653250949],[-81.28341283412834,68.80332649162031],[-81.27621276212761,68.79657218254079],[-81.2510125101251,68.78644071892148],[-81.2330123301233,68.7746206780323],[-81.23661236612365,68.7661777916829],[-81.2510125101251,68.76111205987326],[-81.25821258212582,68.7560463280636],[-81.26181261812617,68.73916055536478],[-81.26541265412654,68.71045474177677],[-81.26181261812617,68.68512608272854],[-81.25461254612546,68.67330604183937],[-81.2510125101251,68.66824031002972],[-81.25461254612546,68.65642026914054],[-81.26541265412654,68.63953449644171],[-81.28341283412834,68.63278018736216],[-81.3410134101341,68.62264872374288],[-81.3590135901359,68.60238579650428],[-81.39861398613986,68.5905657556151],[-81.44541445414454,68.58381144653558],[-81.47781477814777,68.57536856018615],[-81.6290162901629,68.51289120120049],[-81.65061650616506,68.50782546939084],[-81.67581675816758,68.50782546939084],[-81.76581765817657,68.52639981935957],[-81.81621816218161,68.52977697389932],[-81.79821798217982,68.51289120120049],[-81.79821798217982,68.50444831485109],[-81.80541805418054,68.49262827396191],[-81.8270182701827,68.47067676945343],[-81.83781837818378,68.46561103764378],[-81.85581855818558,68.46054530583413],[-81.9170191701917,68.4537909967546],[-81.95301953019529,68.43015091497625],[-81.97461974619746,68.42846233770635],[-82.01782017820177,68.433528069516],[-82.03222032220322,68.44534811040518],[-82.06462064620646,68.49769400577156],[-82.08982089820898,68.50951404666074],[-82.13662136621366,68.51457977847039],[-82.22662226622266,68.5331541284391],[-82.27342273422734,68.53653128297884],[-82.27342273422734,68.52977697389932],[-82.24822248222482,68.51457977847039],[-82.21942219422193,68.50275973758121],[-82.18342183421834,68.49600542850166],[-82.17622176221762,68.48756254215226],[-82.1870218702187,68.47236534672331],[-82.2230222302223,68.45885672856426],[-82.26622266222662,68.45885672856426],[-82.42822428224282,68.47574250126308],[-82.47142471424714,68.48418538761248],[-82.57222572225722,68.52639981935957],[-82.61182611826118,68.52977697389932],[-82.6370263702637,68.50951404666074],[-82.6370263702637,68.49769400577156],[-82.62262622626226,68.49431685123179],[-82.59022590225902,68.49600542850166],[-82.57582575825758,68.48756254215226],[-82.56142561425614,68.47911965580283],[-82.5470254702547,68.47236534672331],[-82.49662496624966,68.46392246037391],[-82.51462514625146,68.4537909967546],[-82.55782557825577,68.4436595331353],[-82.59742597425974,68.44028237859555],[-82.62982629826298,68.44872526494495],[-82.64422644226443,68.44703668767508],[-82.65142651426514,68.433528069516],[-82.64782647826478,68.42001945135695],[-82.63342633426333,68.41157656500755],[-82.6190261902619,68.4065108331979],[-82.6010260102601,68.4065108331979],[-82.52182521825218,68.41326514227742],[-82.50382503825038,68.40988798773765],[-82.48942489424894,68.40144510138825],[-82.47862478624786,68.39300221503882],[-82.46422464224642,68.3862479059593],[-82.37062370623705,68.35585351510142],[-82.3490234902349,68.33727916513268],[-82.37782377823778,68.31870481516398],[-82.46782467824679,68.32377054697363],[-82.50742507425073,68.31701623789411],[-82.4750247502475,68.30013046519528],[-82.44262442624427,68.28324469249645],[-82.40662406624065,68.27311322887715],[-82.37062370623705,68.2697360743374],[-82.30222302223022,68.28999900157598],[-82.27342273422734,68.29168757884585],[-82.2590225902259,68.26298176525785],[-82.26622266222662,68.24271883801927],[-82.28422284222842,68.22414448805057],[-82.34542345423453,68.17517574722396],[-82.34542345423453,68.17011001541431],[-82.33102331023309,68.15660139725526],[-82.31662316623166,68.14646993363596],[-82.20502205022049,68.12451842912748],[-82.17622176221762,68.12451842912748],[-82.14382143821437,68.1329613154769],[-82.10782107821078,68.1498470881757],[-82.10422104221041,68.15322424271548],[-82.10062100621006,68.15828997452513],[-82.10062100621006,68.17011001541431],[-82.10062100621006,68.17517574722396],[-82.09342093420933,68.17855290176374],[-82.08622086220862,68.18024147903361],[-82.07902079020789,68.18361863357336],[-82.05742057420574,68.20725871535174],[-82.0430204302043,68.21739017897102],[-82.02862028620285,68.22245591078067],[-81.99261992619925,68.21570160170114],[-81.9890198901989,68.19881582900231],[-82.01782017820177,68.131272738207],[-82.04662046620466,68.1211412745877],[-82.10782107821078,68.11100981096843],[-82.12222122221222,68.11100981096843],[-82.08982089820898,68.0941240382696],[-82.08262082620826,68.08230399738042],[-82.11142111421114,68.073861111031],[-82.12582125821258,68.0654182246816],[-82.13662136621366,68.05359818379242],[-82.14382143821437,68.04346672017311],[-82.12942129421293,68.04346672017311],[-82.14382143821437,68.03333525655381],[-82.1510215102151,68.01982663839476],[-82.16182161821618,68.01138375204533],[-82.17622176221762,68.00969517477546],[-82.1690216902169,67.99618655661638],[-82.13662136621366,67.97423505210793],[-82.12222122221222,67.96072643394885],[-82.12942129421293,67.96072643394885],[-82.12582125821258,67.9556607021392],[-82.12582125821258,67.95397212486932],[-82.12942129421293,67.9472178157898],[-82.11142111421114,67.92357773401145],[-82.10062100621006,67.91006911585237],[-82.08982089820898,67.89993765223309],[-82.0610206102061,67.88642903407401],[-81.99981999819998,67.87292041591496],[-81.9710197101971,67.86110037502579],[-81.96381963819638,67.85603464321613],[-81.96381963819638,67.84928033413661],[-81.96381963819638,67.84421460232696],[-81.96021960219602,67.83746029324743],[-81.94941949419494,67.83239456143778],[-81.88821888218882,67.81213163419918],[-81.8270182701827,67.80706590238952],[-81.81261812618126,67.79693443877022],[-81.82341823418234,67.79693443877022],[-81.83061830618306,67.79355728423047],[-81.84141841418413,67.7901801296907],[-81.81981819818198,67.77329435699187],[-81.78381783817838,67.75809716156294],[-81.75141751417515,67.74627712067377],[-81.72261722617226,67.74121138886412],[-81.7010170101701,67.73614565705446],[-81.64341643416434,67.68717691622786],[-81.58581585815858,67.6635368344495],[-81.45621456214562,67.62807671178197],[-81.40221402214021,67.59768232092406],[-81.38421384213842,67.57741939368549],[-81.34461344613446,67.54702500282758],[-81.33021330213302,67.54027069374806],[-81.31221312213121,67.52000776650948],[-81.30141301413013,67.51156488016005],[-81.26541265412654,67.49467910746122],[-81.23661236612365,67.46090756206357],[-81.25461254612546,67.43051317120569],[-81.29061290612906,67.40180735761768],[-81.31581315813158,67.3714129667598],[-81.30861308613086,67.3714129667598],[-81.31941319413194,67.3410185759019],[-81.35181351813517,67.28360694872589],[-81.36261362613625,67.25490113513789],[-81.36981369813698,67.20255523977153],[-81.3770137701377,67.18735804434257],[-81.41661416614166,67.13163499443644],[-81.41301413014129,67.12319210808704],[-81.40941409414094,67.11812637627739],[-81.41661416614166,67.10461775811834],[-81.40941409414094,67.09786344903878],[-81.42021420214202,67.09448629449903],[-81.42381423814238,67.08942056268938],[-81.42741427414273,67.08435483087973],[-81.4310143101431,67.0776005218002],[-81.43821438214381,67.07084621272068],[-81.44541445414454,67.06578048091103],[-81.45621456214562,67.06409190364116],[-81.47061470614706,67.06409190364116],[-81.49221492214922,67.06071474910138],[-81.49581495814958,67.05227186275195],[-81.49221492214922,67.01850031735432],[-81.5030150301503,67.0016145446555],[-81.52821528215281,66.99654881284584],[-81.63261632616326,67.00836885373502],[-81.63981639816397,67.00499169919524],[-81.65781657816578,66.98810592649642],[-81.66501665016649,66.98135161741689],[-81.71541715417153,66.97290873106749],[-81.81981819818198,66.9999259673856],[-81.87741877418773,66.9914830810362],[-81.8990189901899,66.98472877195667],[-81.95661956619566,66.97628588560724],[-81.97821978219781,66.96784299925784],[-81.98541985419854,66.96108869017829],[-81.99621996219962,66.94251434020958],[-81.99981999819998,66.93913718566984],[-82.01062010620106,66.93913718566984],[-82.0250202502025,66.93407145386018],[-82.03582035820358,66.92731714478063],[-82.03942039420394,66.91887425843123],[-82.03222032220322,66.91718568116136],[-82.01422014220142,66.90536564027218],[-82.09342093420933,66.85808547671544],[-82.09342093420933,66.8547083221757],[-82.08622086220862,66.84119970401662],[-82.08262082620826,66.83444539493709],[-82.08982089820898,66.82937966312744],[-82.12942129421293,66.81418246769852],[-82.16182161821618,66.79391954045991],[-82.17622176221762,66.78041092230086],[-82.18342183421834,66.76859088141168],[-82.18342183421834,66.74832795417308],[-82.1690216902169,66.7365079132839],[-82.15822158221582,66.7263764496646],[-82.15822158221582,66.71455640877542],[-82.37422374223742,66.72806502693447],[-82.38142381423813,66.72468787239472],[-82.38142381423813,66.71962214058507],[-82.37782377823778,66.70442494515612],[-82.38142381423813,66.69598205880672],[-82.46422464224642,66.68078486337777],[-82.48222482224821,66.67065339975846],[-82.47862478624786,66.65207904978976],[-82.53622536225362,66.63519327709093],[-82.55422554225542,66.62506181347163],[-82.56142561425614,66.61661892712223],[-82.5830258302583,66.59129026807398],[-82.59022590225902,66.5710273408354],[-82.63342633426333,66.56258445448597],[-82.8530285302853,66.5710273408354],[-82.91062910629105,66.55414156813657],[-82.99702997029969,66.55583014540645],[-83.01143011430113,66.5507644135968],[-83.0150301503015,66.54063294997749],[-83.0150301503015,66.52543575454857],[-83.02583025830258,66.49504136369066],[-83.05823058230582,66.47984416826174],[-83.13023130231302,66.45958124102313],[-83.1230312303123,66.45958124102313],[-83.13743137431373,66.45113835467373],[-83.26343263432634,66.3954153047676],[-83.29943299432993,66.38697241841817],[-83.31383313833138,66.3852838411483],[-83.32823328233282,66.38021810933864],[-83.36783367833678,66.34982371848076],[-83.38583385833859,66.35657802756029],[-83.4470344703447,66.35488945029041],[-83.5010350103501,66.36502091390972],[-83.56223562235623,66.34982371848076],[-83.58743587435875,66.35657802756029],[-83.58383583835838,66.35995518210007],[-83.56943569435694,66.37177522298924],[-83.63783637836379,66.403858191117],[-83.65943659436594,66.41905538654595],[-83.65223652236521,66.41905538654595],[-83.63783637836379,66.41905538654595],[-83.63063630636306,66.41905538654595],[-83.63783637836379,66.43594115924478],[-83.63063630636306,66.44100689105443],[-83.61263612636127,66.43931831378455],[-83.59463594635946,66.432564004705],[-83.59463594635946,66.4156782320062],[-83.57663576635765,66.39879245930737],[-83.55143551435513,66.38697241841817],[-83.53343533435334,66.3852838411483],[-83.52983529835298,66.39710388203747],[-83.54063540635406,66.41230107746642],[-83.56223562235623,66.42749827289538],[-83.5910359103591,66.43762973651465],[-83.6450364503645,66.47477843645208],[-83.65223652236521,66.48659847734126],[-83.67023670236702,66.51699286819914],[-83.67743677436773,66.52543575454857],[-83.73143731437314,66.53725579543774],[-83.84663846638466,66.54569868178714],[-83.88983889838899,66.56933876356553],[-83.90423904239042,66.59466742261375],[-83.91503915039151,66.59635599988363],[-83.94023940239403,66.58791311353423],[-83.96183961839618,66.58284738172458],[-83.97983979839798,66.59297884534388],[-83.9870398703987,66.60648746350293],[-83.97263972639726,66.6183075043921],[-84.01224012240122,66.63181612255119],[-84.0050400504005,66.64532474071024],[-84.0050400504005,66.65545620432954],[-84.01224012240122,66.66558766794881],[-84.01224012240122,66.67909628610789],[-84.0050400504005,66.6976706360766],[-83.98343983439834,66.7078020996959],[-83.95823958239582,66.71286783150555],[-83.9330393303933,66.7078020996959],[-83.91503915039151,66.69429348153685],[-83.91503915039151,66.68078486337777],[-83.91863918639186,66.66727624521872],[-83.91143911439114,66.65207904978976],[-83.8970389703897,66.64701331798011],[-83.8790387903879,66.65714478159941],[-83.86463864638647,66.67403055429824],[-83.85743857438574,66.68753917245729],[-83.88263882638826,66.7078020996959],[-83.88983889838899,66.71455640877542],[-83.90783907839078,66.7179335633152],[-83.92583925839259,66.71962214058507],[-83.94383943839438,66.72299929512485],[-83.9510395103951,66.73481933601403],[-83.94743947439474,66.74157364509355],[-83.9510395103951,66.74326222236343],[-83.95823958239582,66.74832795417308],[-83.94383943839438,66.77027945868156],[-83.90063900639007,66.79054238592013],[-83.88623886238862,66.81755962223826],[-83.88263882638826,66.83951112674674],[-83.88983889838899,66.85808547671544],[-83.90423904239042,66.8732826721444],[-83.91863918639186,66.88510271303358],[-83.92583925839259,66.8732826721444],[-83.93663936639366,66.83951112674674],[-83.94383943839438,66.82769108585757],[-83.96543965439655,66.81080531315874],[-84.01944019440194,66.79898527226956],[-84.04824048240482,66.79054238592013],[-84.03024030240302,66.78378807684061],[-84.04824048240482,66.77196803595143],[-84.10224102241023,66.74832795417308],[-84.09864098640986,66.71962214058507],[-84.13824138241382,66.71286783150555],[-84.26784267842677,66.72806502693447],[-84.30384303843039,66.74157364509355],[-84.30744307443074,66.76014799506225],[-84.26784267842677,66.78209949957073],[-84.30384303843039,66.80067384953944],[-84.41184411844118,66.80742815861896],[-84.44064440644406,66.83106824039734],[-84.39024390243902,66.83444539493709],[-84.2390423904239,66.83106824039734],[-84.2390423904239,66.83782254947687],[-84.37224372243722,66.86821694033475],[-84.41184411844118,66.88510271303358],[-84.41544415444154,66.90705421754205],[-84.41184411844118,66.91549710389145],[-84.39024390243902,66.91887425843123],[-84.40824408244082,66.93576003113006],[-84.4370443704437,66.94082576293971],[-84.49464494644945,66.93913718566984],[-84.51264512645126,66.94420291747946],[-84.56664566645667,66.97122015379759],[-84.58104581045811,66.98135161741689],[-84.53064530645307,66.97966304014702],[-84.4190441904419,66.96108869017829],[-84.37224372243722,66.97459730833737],[-84.80784807848079,67.0286317809736],[-84.84024840248402,67.03707466732303],[-84.90864908649087,67.06240332637125],[-84.93744937449374,67.05564901729173],[-84.91944919449195,67.05058328548208],[-84.9050490504905,67.04214039913268],[-84.91944919449195,67.03707466732303],[-84.93024930249302,67.03538609005312],[-84.93744937449374,67.03707466732303],[-84.91944919449195,67.0286317809736],[-84.84384843848439,67.01512316281455],[-84.8510485104851,67.00499169919524],[-84.85824858248583,66.9999259673856],[-84.88344883448835,66.99486023557594],[-84.85464854648546,66.98810592649642],[-84.82584825848258,66.99317165830607],[-84.7970479704797,67.00330312192537],[-84.76824768247683,67.00836885373502],[-84.73584735847358,67.00836885373502],[-84.69984699846998,67.00330312192537],[-84.66744667446675,66.99317165830607],[-84.63864638646386,66.98135161741689],[-85.00585005850058,66.96784299925784],[-85.2110521105211,66.91887425843123],[-85.19665196651967,66.91380852662158],[-85.16065160651605,66.91043137208183],[-85.14625146251463,66.90536564027218],[-85.16425164251642,66.89692275392275],[-85.18585185851857,66.88510271303358],[-85.20385203852038,66.87834840395405],[-85.22545225452254,66.88510271303358],[-85.21465214652146,66.86821694033475],[-85.18585185851857,66.8530197449058],[-85.15345153451534,66.84119970401662],[-85.12825128251282,66.83782254947687],[-85.09945099450994,66.8445768585564],[-85.08145081450814,66.84964259036605],[-85.07425074250742,66.8547083221757],[-85.05985059850599,66.85808547671544],[-84.9770497704977,66.85977405398535],[-84.95904959049591,66.86483978579497],[-84.9410494104941,66.8732826721444],[-84.9230492304923,66.88847986757335],[-84.91224912249122,66.9019884857324],[-84.90864908649087,66.90874279481193],[-84.91944919449195,66.9121199493517],[-84.98424984249843,66.91549710389145],[-85.00225002250022,66.91887425843123],[-84.97344973449734,66.92900572205053],[-84.91944919449195,66.91549710389145],[-84.89064890648906,66.91887425843123],[-84.88344883448835,66.92731714478063],[-84.88344883448835,66.93576003113006],[-84.87984879848798,66.94251434020958],[-84.87264872648726,66.94589149474936],[-84.76824768247683,66.95602295836866],[-84.75384753847538,66.95433438109876],[-84.74664746647466,66.94926864928911],[-84.72864728647286,66.93576003113006],[-84.72144721447214,66.93238287659028],[-84.60264602646026,66.93913718566984],[-84.61344613446134,66.92225141297101],[-84.60984609846098,66.91043137208183],[-84.59184591845919,66.90536564027218],[-84.74664746647466,66.90029990846253],[-84.69624696246962,66.89523417665288],[-84.6170461704617,66.87665982668418],[-84.5450454504545,66.85133116763592],[-84.5090450904509,66.82262535404791],[-84.55224552245522,66.82769108585757],[-84.6530465304653,66.8530197449058],[-84.69264692646927,66.8445768585564],[-84.64944649446494,66.82431393131779],[-84.54864548645486,66.81755962223826],[-84.50184501845018,66.80911673588886],[-84.44064440644406,66.78547665411051],[-84.4190441904419,66.78209949957073],[-84.34344343443433,66.78378807684061],[-84.32184321843218,66.77534519049121],[-84.3470434704347,66.75845941779238],[-84.42264422644226,66.72806502693447],[-84.45144451444514,66.72131071785495],[-84.43344433444334,66.71455640877542],[-84.37224372243722,66.7078020996959],[-84.35064350643506,66.70104779061637],[-84.3290432904329,66.68416201791754],[-84.31464314643146,66.67909628610789],[-84.30744307443074,66.68247344064764],[-84.2750427504275,66.6976706360766],[-84.26424264242642,66.69935921334647],[-84.25344253442535,66.69935921334647],[-84.24264242642425,66.69598205880672],[-84.23184231842318,66.69429348153685],[-84.1670416704167,66.69260490426694],[-84.14544145441454,66.68753917245729],[-84.1490414904149,66.67740770883802],[-84.14544145441454,66.67065339975846],[-84.14544145441454,66.66558766794881],[-84.14544145441454,66.65883335886929],[-84.1490414904149,66.64870189524999],[-84.1670416704167,66.63012754528128],[-84.17784177841779,66.61155319531258],[-84.18864188641886,66.6081760407728],[-84.20664206642066,66.60648746350293],[-84.21744217442173,66.60142173169328],[-84.21024210242102,66.59466742261375],[-84.0770407704077,66.52205860000879],[-84.03744037440374,66.51023855911961],[-84.00864008640086,66.49166420915091],[-83.99783997839978,66.48828705461113],[-83.97983979839798,66.48490990007139],[-83.96183961839618,66.47815559099183],[-83.9330393303933,66.45958124102313],[-83.89343893438934,66.432564004705],[-83.8790387903879,66.4139896547363],[-83.87183871838718,66.3954153047676],[-83.87183871838718,66.35151229575064],[-83.86823868238682,66.32956079124216],[-83.8610386103861,66.31605217308311],[-83.83583835838358,66.30760928673368],[-83.8070380703807,66.30760928673368],[-83.78183781837818,66.30085497765415],[-83.77463774637746,66.27214916406615],[-83.76023760237602,66.25526339136732],[-83.70263702637025,66.22824615504922],[-83.68463684636846,66.21304895962027],[-83.69183691836918,66.19954034146119],[-83.70983709837098,66.19109745511179],[-83.76023760237602,66.17927741422261],[-83.8070380703807,66.16239164152378],[-83.83223832238322,66.159014486984],[-83.85743857438574,66.159014486984],[-83.84663846638466,66.17252310514309],[-83.83583835838358,66.17927741422261],[-83.82143821438214,66.18603172330214],[-83.80343803438033,66.19616318692144],[-83.79983799837999,66.19785176419131],[-83.79263792637926,66.20460607327084],[-83.78543785437854,66.21136038235039],[-83.79263792637926,66.21304895962027],[-83.82863828638285,66.21304895962027],[-83.92223922239222,66.20291749600096],[-83.97263972639726,66.20460607327084],[-83.97983979839798,66.22149184596967],[-84.00144001440015,66.23331188685884],[-84.08784087840878,66.2485090822878],[-84.11664116641165,66.25695196863722],[-84.1310413104131,66.26370627771675],[-84.14184141841417,66.27214916406615],[-84.14544145441454,66.28059205041558],[-84.1490414904149,66.29916640038428],[-84.15624156241562,66.3059207094638],[-84.17784177841779,66.31942932762288],[-84.2030420304203,66.32449505943251],[-84.23184231842318,66.32280648216263],[-84.25344253442535,66.31267501854333],[-84.30384303843039,66.30254355492406],[-84.32184321843218,66.29410066857463],[-84.30744307443074,66.28228062768545],[-84.32544325443254,66.2772148958758],[-84.3470434704347,66.2772148958758],[-84.37224372243722,66.28396920495533],[-84.38664386643866,66.29241209130475],[-84.39744397443974,66.30423213219393],[-84.4010440104401,66.31436359581323],[-84.4010440104401,66.32449505943251],[-84.40464404644047,66.33800367759159],[-84.42264422644226,66.36164375936994],[-84.44784447844478,66.37515237752899],[-84.48024480244803,66.38359526387842],[-84.51624516245163,66.3852838411483],[-84.50184501845018,66.39879245930737],[-84.53784537845378,66.4055467683869],[-84.56664566645667,66.38697241841817],[-84.59184591845919,66.36333233663981],[-84.6350463504635,66.34306940940124],[-84.62424624246242,66.32956079124216],[-84.60264602646026,66.31605217308311],[-84.58464584645846,66.30929786400358],[-84.56664566645667,66.30760928673368],[-84.55224552245522,66.30254355492406],[-84.54144541445415,66.2957892458445],[-84.5090450904509,66.2670834322565],[-84.42624426244262,66.22655757777932],[-84.4010440104401,66.20967180508049],[-84.3830438304383,66.18940887784191],[-84.37944379443795,66.17252310514309],[-84.40464404644047,66.16576879606356],[-84.48024480244803,66.16576879606356],[-84.4910449104491,66.16914595060331],[-84.53424534245342,66.19278603238166],[-84.60624606246063,66.21473753689014],[-84.75384753847538,66.22149184596967],[-84.78264782647827,66.22655757777932],[-84.8150481504815,66.24175477320827],[-84.85464854648546,66.26370627771675],[-84.8690486904869,66.2687720095264],[-84.89064890648906,66.2687720095264],[-84.92664926649266,66.25695196863722],[-84.9410494104941,66.25526339136732],[-84.98424984249843,66.25357481409745],[-85.00225002250022,66.2586405459071],[-85.01665016650166,66.27214916406615],[-85.03825038250382,66.28059205041558],[-85.06345063450634,66.28228062768545],[-85.08145081450814,66.2873463594951],[-85.08505085050851,66.30254355492406],[-85.08865088650886,66.30929786400358],[-85.09585095850959,66.31774075035298],[-85.10665106651066,66.32618363670241],[-85.11745117451174,66.32956079124216],[-85.13545135451353,66.32618363670241],[-85.13545135451353,66.31774075035298],[-85.13185131851318,66.3059207094638],[-85.13185131851318,66.2957892458445],[-85.1390513905139,66.28903493676498],[-85.17865178651786,66.2687720095264],[-85.19665196651967,66.26539485498662],[-85.21825218252182,66.26539485498662],[-85.23985239852398,66.27046058679628],[-85.25785257852579,66.27890347314568],[-85.26865268652686,66.2873463594951],[-85.28665286652866,66.33293794578194],[-85.27945279452794,66.35995518210007],[-85.31185311853118,66.37177522298924],[-85.31545315453154,66.38866099568807],[-85.3010530105301,66.40723534565677],[-85.31545315453154,66.4443840455942],[-85.32265322653227,66.47984416826174],[-85.34785347853479,66.50179567277021],[-85.37665376653766,66.51530429092927],[-85.38745387453874,66.53556721816787],[-85.41625416254162,66.56765018629562],[-85.46665466654666,66.57440449537515],[-85.52785527855278,66.56596160902575],[-85.68265682656826,66.53050148635822],[-85.75105751057511,66.51699286819914],[-85.78345783457834,66.50010709550031],[-85.8410584105841,66.50517282730996],[-85.85185851858519,66.50179567277021],[-85.90585905859058,66.51530429092927],[-86.13986139861399,66.50179567277021],[-86.15426154261543,66.50517282730996],[-86.19026190261903,66.51868144546904],[-86.20826208262082,66.52205860000879],[-86.26586265862659,66.51868144546904],[-86.28386283862838,66.52205860000879],[-86.29826298262982,66.53050148635822],[-86.3270632706327,66.5524529908667],[-86.3450634506345,66.55583014540645],[-86.3630636306363,66.5507644135968],[-86.37026370263702,66.53725579543774],[-86.3810638106381,66.5237471772787],[-86.39186391863919,66.51530429092927],[-86.41706417064171,66.51530429092927],[-86.5250652506525,66.54907583632692],[-86.57186571865718,66.55583014540645],[-86.5970659706597,66.55583014540645],[-86.58266582665826,66.53894437270762],[-86.57546575465754,66.53556721816787],[-86.62226622266222,66.50686140457987],[-86.67986679866799,66.51530429092927],[-86.7410674106741,66.5321900636281],[-86.78426784267842,66.52205860000879],[-86.74826748267482,66.49672994096056],[-86.6330663306633,66.44100689105443],[-86.66546665466655,66.43087542743513],[-86.78786787867878,66.45451550921348],[-86.80946809468094,66.44607262286408],[-86.79146791467915,66.42918685016525],[-86.69426694266943,66.36502091390972],[-86.64746647466474,66.32618363670241],[-86.62226622266222,66.31436359581323],[-86.54306543065431,66.31267501854333],[-86.4710647106471,66.2957892458445],[-86.3450634506345,66.28903493676498],[-86.3270632706327,66.28565778222523],[-86.27666276662767,66.2687720095264],[-85.95625956259562,66.19954034146119],[-85.89145891458914,66.19278603238166],[-85.85545855458554,66.16239164152378],[-85.89865898658987,66.14719444609483],[-85.9310593105931,66.12355436431648],[-85.97425974259743,66.09822570526825],[-85.97425974259743,66.07627420075977],[-85.9850598505985,66.06445415987059],[-85.9850598505985,66.05432269625129],[-85.98145981459814,66.04419123263199],[-85.97425974259743,66.03574834628259],[-86.06426064260643,65.99859964634516],[-86.0930609306093,65.9935339145355],[-86.16146161461614,65.99184533726563],[-86.19386193861938,65.9834024509162],[-86.2010620106201,65.96313952367763],[-86.19746197461974,65.94963090551857],[-86.20466204662046,65.93949944189927],[-86.22626226262263,65.93274513281975],[-86.25866258662586,65.92936797827997],[-86.29106291062911,65.92936797827997],[-86.3090630906309,65.9259908237402],[-86.31626316263163,65.92261366920044],[-86.31986319863198,65.91923651466067],[-86.32346323463234,65.91585936012092],[-86.33066330663306,65.91248220558114],[-86.3450634506345,65.90741647377149],[-86.3630636306363,65.90572789650162],[-86.39546395463954,65.90572789650162],[-86.41346413464134,65.90403931923174],[-86.42786427864279,65.89897358742209],[-86.42066420664206,65.88208781472326],[-86.43866438664386,65.86857919656418],[-86.46386463864638,65.85507057840513],[-86.47466474664746,65.83987338297618],[-86.4710647106471,65.8381848057063],[-86.46746467464675,65.83649622843643],[-86.46746467464675,65.83480765116653],[-86.46746467464675,65.82974191935688],[-86.4710647106471,65.82636476481713],[-86.4890648906489,65.8179218784677],[-86.49626496264962,65.81623330119783],[-86.4890648906489,65.80441326030865],[-86.47826478264783,65.79597037395925],[-86.46386463864638,65.7909046421496],[-86.4530645306453,65.78246175580017],[-86.46386463864638,65.77739602399052],[-86.46386463864638,65.77233029218087],[-86.46026460264602,65.76726456037122],[-86.46026460264602,65.76051025129169],[-86.46026460264602,65.75544451948204],[-86.46026460264602,65.75037878767242],[-86.46386463864638,65.74362447859286],[-86.47466474664746,65.73349301497359],[-86.52146521465214,65.70478720138556],[-86.53586535865358,65.69296716049638],[-86.53946539465394,65.68790142868676],[-86.53946539465394,65.6828356968771],[-86.54306543065431,65.67776996506745],[-86.55026550265502,65.6727042332578],[-86.55746557465574,65.66932707871803],[-86.58986589865899,65.6727042332578],[-86.6150661506615,65.66932707871803],[-86.66546665466655,65.65750703782885],[-86.6870668706687,65.64906415147945],[-86.70146701467014,65.63893268786015],[-86.72666726667266,65.61698118335167],[-86.7410674106741,65.60684971973237],[-86.79146791467915,65.58489821522389],[-86.80586805868059,65.57307817433471],[-86.82746827468274,65.56125813344553],[-86.8490684906849,65.55619240163588],[-86.89586895868959,65.55450382436601],[-86.97146971469715,65.54099520620696],[-86.98946989469894,65.5359294743973],[-86.98586985869858,65.53255231985753],[-86.9750697506975,65.52242085623823],[-86.98226982269823,65.5156665471587],[-87.00027000270002,65.51060081534905],[-87.00747007470075,65.5072236608093],[-87.0110701107011,65.50384650626953],[-87.01467014670146,65.49709219719],[-87.01467014670146,65.49033788811047],[-87.01467014670146,65.4869607335707],[-87.03267032670327,65.48358357903095],[-87.06867068670687,65.48864931084057],[-87.08307083070831,65.48358357903095],[-87.09387093870939,65.4785178472213],[-87.10467104671046,65.47007496087187],[-87.11547115471154,65.45994349725257],[-87.1190711907119,65.4498120336333],[-87.10827108271083,65.43461483820434],[-87.07227072270723,65.42786052912481],[-87.0650706507065,65.41941764277539],[-87.07947079470794,65.40253187007656],[-87.1550715507155,65.39240040645728],[-87.18387183871839,65.38058036556808],[-87.19467194671947,65.37213747921868],[-87.20907209072091,65.36707174740903],[-87.25947259472595,65.36200601559938],[-87.30987309873099,65.34343166563067],[-87.38187381873819,65.32992304747162],[-87.65547655476554,65.3316116247415],[-87.9290792907929,65.33330020201137],[-88.06228062280623,65.3603174383295],[-88.17028170281702,65.39915471553681],[-88.20628206282062,65.40590902461634],[-88.22068220682206,65.41097475642599],[-88.23148231482314,65.41941764277539],[-88.24588245882458,65.43799199274412],[-88.25668256682566,65.44643487909352],[-88.29268292682927,65.46500922906222],[-88.29988299882999,65.46669780633212],[-88.3070830708307,65.47176353814177],[-88.3250832508325,65.49033788811047],[-88.33588335883358,65.49540361992013],[-88.35748357483574,65.50046935172978],[-88.41868418684186,65.525798010778],[-88.46188461884618,65.55281524709613],[-88.55188551885519,65.58320963795401],[-88.58428584285842,65.58996394703354],[-88.66348663486635,65.59502967884319],[-88.69228692286923,65.60684971973237],[-88.7210872108721,65.6237354924312],[-88.75708757087571,65.6338669560505],[-88.83268832688327,65.64568699693967],[-88.58428584285842,65.64568699693967],[-88.47988479884799,65.62880122424085],[-88.42228422284222,65.6254240697011],[-88.41508415084151,65.63217837878062],[-88.44748447484474,65.6439984196698],[-88.74268742687427,65.67439281052768],[-88.78228782287823,65.68452427414698],[-88.80388803888039,65.68621285141685],[-88.81828818288183,65.68959000595663],[-88.8470884708847,65.70309862411568],[-88.85788857888579,65.70309862411568],[-88.87228872288722,65.69972146957593],[-88.96948969489695,65.69634431503616],[-88.98748987489874,65.69972146957593],[-89.05229052290522,65.71998439681451],[-89.10989109891099,65.72842728316394],[-89.12429124291242,65.73349301497359],[-89.13509135091351,65.74362447859286],[-89.14229142291423,65.75206736494229],[-89.14229142291423,65.76051025129169],[-89.14589145891459,65.76895313764112],[-89.16029160291603,65.77739602399052],[-89.22869228692286,65.799347528499],[-89.27189271892719,65.80779041484843],[-89.28989289892898,65.8094789921183],[-89.31149311493115,65.81285614665805],[-89.32229322293223,65.82129903300748],[-89.32949329493294,65.83143049662678],[-89.33669336693367,65.83987338297618],[-89.40869408694087,65.86689061929431],[-89.44829448294483,65.87533350564371],[-89.4770947709477,65.87026777383409],[-89.46989469894699,65.86013631021478],[-89.4770947709477,65.85675915567501],[-89.49509495094951,65.85675915567501],[-89.50949509495095,65.86013631021478],[-89.52029520295203,65.86857919656418],[-89.52749527495274,65.88715354653291],[-89.53829538295382,65.89897358742209],[-89.55269552695526,65.90572789650162],[-89.6390963909639,65.92261366920044],[-89.67149671496715,65.94118801916915],[-89.68949689496894,65.9462537509788],[-89.70389703897038,65.9462537509788],[-89.76149761497615,65.9361222873595],[-89.77589775897759,65.94287659643902],[-89.96669966699666,65.9563852145981],[-90.00270002700027,65.9462537509788],[-89.76869768697686,65.89221927834254],[-89.74349743497434,65.87871066018349],[-89.7290972909729,65.85844773294491],[-89.73269732697327,65.84156196024608],[-89.74709747097471,65.828053342087],[-89.77229772297723,65.82298761027735],[-89.80109801098011,65.82467618754725],[-89.83709837098371,65.83143049662678],[-89.87309873098731,65.84325053751596],[-89.89829898298983,65.86013631021478],[-89.9090990909909,65.86520204202444],[-89.97029970299702,65.87026777383409],[-90.0279002790028,65.88884212380279],[-90.04590045900459,65.89221927834254],[-90.1071010710107,65.89053070107266],[-90.13950139501395,65.88546496926301],[-90.16830168301682,65.87533350564371],[-90.22950229502295,65.86013631021478],[-90.30150301503015,65.86013631021478],[-90.43470434704346,65.88546496926301],[-90.40230402304023,65.89728501015219],[-90.36630366303663,65.90066216469197],[-90.29070290702907,65.89897358742209],[-90.22230222302223,65.90572789650162],[-90.21870218702186,65.90741647377149],[-90.21510215102151,65.91079362831127],[-90.21510215102151,65.9175479373908],[-90.21870218702186,65.92261366920044],[-90.22590225902259,65.9259908237402],[-90.23670236702367,65.9276794010101],[-90.40230402304023,65.90572789650162],[-90.72270722707226,65.92261366920044],[-91.04671046710467,65.94118801916915],[-91.08631086310862,65.95131948278845],[-91.10791107911079,65.95300806005832],[-91.18351183511835,65.9462537509788],[-91.30951309513095,65.97664814183668],[-91.34551345513455,65.96989383275715],[-91.38151381513815,65.96145094640775],[-91.46431464314642,65.95807379186797],[-91.49671496714967,65.9462537509788],[-91.12231122311223,65.84325053751596],[-91.0611106111061,65.81623330119783],[-91.03231032310323,65.80779041484843],[-91.00351003510035,65.81623330119783],[-91.06471064710647,65.85675915567501],[-91.09351093510935,65.88377639199314],[-91.10791107911079,65.89728501015219],[-91.12591125911258,65.90572789650162],[-91.10791107911079,65.92261366920044],[-91.0719107191072,65.9276794010101],[-90.95670956709567,65.92092509193054],[-90.89550895508955,65.90403931923174],[-90.7011070110701,65.89221927834254],[-90.52830528305283,65.88208781472326],[-90.30150301503015,65.83987338297618],[-90.09270092700926,65.82129903300748],[-89.95949959499595,65.79428179668935],[-89.85149851498515,65.75206736494229],[-89.77229772297723,65.73855874678321],[-89.73629736297363,65.72842728316394],[-89.64269642696426,65.6727042332578],[-89.63189631896319,65.66763850144815],[-89.61389613896138,65.64906415147945],[-89.6030960309603,65.64568699693967],[-89.58509585095851,65.6423098423999],[-89.49149491494914,65.6152926060818],[-89.46989469894699,65.60516114246249],[-89.45549455494555,65.58827536976366],[-89.44829448294483,65.55956955617566],[-89.4410944109441,65.5443723607467],[-89.42669426694266,65.52748658804788],[-89.40869408694087,65.51228939261895],[-89.39429394293943,65.50046935172978],[-89.25749257492575,65.45656634271282],[-89.21789217892179,65.45150061090317],[-89.19989199891998,65.44643487909352],[-89.18549185491855,65.43968057001399],[-89.16389163891638,65.42448337458504],[-89.15669156691567,65.41941764277539],[-89.14949149491494,65.41604048823564],[-89.14949149491494,65.40928617915611],[-89.14949149491494,65.3974661382669],[-89.14589145891459,65.39240040645728],[-89.12789127891278,65.37720321102833],[-89.08469084690847,65.35356312924998],[-89.06669066690667,65.3400545110909],[-89.04149041490415,65.32823447020172],[-88.96588965889659,65.34343166563067],[-88.93348933489335,65.34343166563067],[-88.89388893888939,65.32654589293185],[-88.87948879488795,65.32316873839207],[-88.61668616686167,65.31472585204267],[-88.54828548285482,65.29952865661372],[-88.11988119881198,65.28095430664501],[-88.07668076680767,65.26744568848596],[-88.04428044280442,65.26744568848596],[-87.97587975879759,65.28433146118479],[-87.93987939879399,65.28770861572454],[-87.83187831878318,65.28264288391489],[-87.77787777877778,65.26913426575584],[-87.75267752677526,65.26744568848596],[-87.73467734677347,65.28264288391489],[-87.74907749077491,65.28770861572454],[-87.70947709477095,65.30121723388362],[-87.6590765907659,65.30121723388362],[-87.60867608676087,65.29108577026432],[-87.52587525875258,65.26744568848596],[-87.37107371073711,65.27588857483536],[-87.04707047070471,65.23873987489796],[-87.03627036270362,65.23029698854853],[-87.03987039870398,65.21847694765935],[-87.05787057870579,65.20665690677018],[-87.03267032670327,65.194836865881],[-86.97866978669786,65.17963967045205],[-86.95346953469534,65.166131052293],[-86.9390693906939,65.14249097051464],[-86.94986949869498,65.13067092962547],[-86.9750697506975,65.12053946600616],[-86.9930699306993,65.10365369330734],[-86.9930699306993,65.08339076606873],[-86.97866978669786,65.06988214790968],[-86.9750697506975,65.0580621070205],[-87.00387003870038,65.04117633432168],[-87.08307083070831,65.01584767527342],[-87.11187111871118,65.0006504798445],[-87.1010710107101,64.99727332530472],[-87.09027090270902,64.99051901622519],[-87.08307083070831,64.98376470714567],[-87.07587075870758,64.97363324352636],[-87.10467104671046,64.95168173901789],[-87.1190711907119,64.94492742993836],[-87.1370713707137,64.94323885266849],[-87.15147151471514,64.94155027539858],[-87.16947169471695,64.93986169812871],[-87.18387183871839,64.9297302345094],[-87.20187201872018,64.9111558845407],[-87.2450724507245,64.88076149368283],[-87.27387273872738,64.85036710282492],[-87.30267302673026,64.81321840288751],[-87.30987309873099,64.79802120745856],[-87.30627306273063,64.78788974383926],[-87.2990729907299,64.77100397114043],[-87.2990729907299,64.7642496620609],[-87.3170731707317,64.75918393025125],[-87.35667356673567,64.75749535298138],[-87.37107371073711,64.7541181984416],[-87.41787417874178,64.72034665304395],[-87.4430744307443,64.7068380348849],[-87.47187471874719,64.7169694985042],[-87.47187471874719,64.7254123848536],[-87.46827468274682,64.7355438484729],[-87.46827468274682,64.74398673482233],[-87.48627486274863,64.74736388936208],[-87.49707497074971,64.74398673482233],[-87.51147511475115,64.73385527120303],[-87.52227522275223,64.72203523031385],[-87.52947529475294,64.71359234396442],[-87.52947529475294,64.70008372580537],[-87.51147511475115,64.66293502586794],[-87.50787507875079,64.64773783043901],[-87.5150751507515,64.63422921227993],[-87.52227522275223,64.62578632593053],[-87.54747547475475,64.61396628504136],[-87.55467554675546,64.60214624415218],[-87.5690756907569,64.5785061623738],[-87.57627576275762,64.5700632760244],[-87.60147601476014,64.55824323513522],[-87.76347763477635,64.52278311246769],[-87.80667806678066,64.51940595792792],[-87.81027810278103,64.51602880338814],[-87.81027810278103,64.50927449430861],[-87.81027810278103,64.49745445341944],[-87.81387813878139,64.48732298980013],[-87.8210782107821,64.48056868072061],[-87.83907839078391,64.46537148529168],[-87.84987849878499,64.4518628671326],[-87.8570785707857,64.43835424897355],[-87.86427864278643,64.42146847627473],[-87.86427864278643,64.40120554903612],[-87.87507875078751,64.36067969455894],[-87.90027900279003,64.33366245824081],[-88.0190801908019,64.27456225379493],[-88.04068040680407,64.2576764810961],[-88.05148051480515,64.2374135538575],[-87.99747997479975,64.20533058572974],[-87.9830798307983,64.19182196757066],[-88.04428044280442,64.18506765849114],[-88.06228062280623,64.17493619487183],[-88.0730807308073,64.16311615398266],[-88.09468094680946,64.15129611309348],[-88.11268112681127,64.1411646494742],[-88.13068130681306,64.13609891766455],[-88.22068220682206,64.14454180401395],[-88.23868238682387,64.1394760722043],[-88.2710827108271,64.11583599042595],[-88.28908289082891,64.10908168134642],[-88.3070830708307,64.10739310407655],[-88.48348483484834,64.04998147690051],[-88.50148501485015,64.04829289963064],[-88.5590855908559,64.04829289963064],[-88.56268562685626,64.04153859055111],[-88.55188551885519,64.02802997239206],[-88.59148591485915,64.01789850877276],[-88.66708667086671,64.01114419969323],[-88.67428674286742,64.00438989061368],[-88.67428674286742,63.992569849724504],[-88.68868688686887,63.97906123156545],[-88.70668706687067,63.97230692248593],[-88.73548735487354,63.97230692248593],[-88.78228782287823,63.97906123156545],[-88.82548825488254,63.99088127245463],[-88.83988839888399,63.99088127245463],[-88.8470884708847,63.98581554064498],[-88.85788857888579,63.98243838610523],[-88.8650886508865,63.98243838610523],[-88.87948879488795,63.98750411791485],[-88.87588875888758,63.997635581534155],[-88.87228872288722,64.00101273607393],[-88.90468904689047,64.00776704515346],[-88.96588965889659,63.989192695184755],[-89.00189001890018,63.994258426994406],[-89.00189001890018,63.99594700426428],[-88.99828998289982,64.00607846788358],[-88.99828998289982,64.01114419969323],[-89.00189001890018,64.01452135423298],[-89.01269012690126,64.01789850877276],[-89.05949059490595,64.02465281785229],[-89.10269102691026,64.04322716782099],[-89.14949149491494,64.05673578598007],[-89.17469174691746,64.07531013594877],[-89.19989199891998,64.09895021772712],[-89.20709207092071,64.1209017222356],[-89.21069210692107,64.1310331858549],[-89.22149221492215,64.1394760722043],[-89.2430924309243,64.15129611309348],[-89.25029250292502,64.15636184490313],[-89.25389253892538,64.15973899944291],[-89.26469264692646,64.158050422173],[-89.28989289892898,64.13609891766455],[-89.27549275492754,64.1310331858549],[-89.23229232292323,64.10570452680665],[-89.21789217892179,64.09388448591747],[-89.17829178291782,64.03816143601134],[-89.16029160291603,64.02296424058241],[-89.10629106291063,63.98750411791485],[-89.0990909909099,63.97737265429558],[-89.09549095490955,63.96892976794615],[-89.08829088290882,63.962175458866625],[-89.07389073890738,63.95879830432685],[-89.04869048690486,63.96048688159675],[-89.03789037890378,63.95879830432685],[-89.02349023490234,63.95204399524732],[-89.04869048690486,63.94697826343767],[-89.14589145891459,63.95204399524732],[-89.14229142291423,63.9554211497871],[-89.12429124291242,63.9655526134064],[-89.14229142291423,63.97061834521605],[-89.17829178291782,63.97061834521605],[-89.19269192691927,63.97230692248593],[-89.20709207092071,63.97906123156545],[-89.23949239492394,64.00438989061368],[-89.25029250292502,64.00945562242333],[-89.27189271892719,64.01452135423298],[-89.28629286292863,64.01620993150289],[-89.28629286292863,64.01114419969323],[-89.27549275492754,64.00438989061368],[-89.26109261092611,64.00101273607393],[-89.25029250292502,63.992569849724504],[-89.25749257492575,63.97906123156545],[-89.25389253892538,63.97230692248593],[-89.25029250292502,63.97061834521605],[-89.25029250292502,63.9655526134064],[-89.28989289892898,63.98581554064498],[-89.33309333093331,64.01958708604263],[-89.37989379893799,64.04153859055111],[-89.43749437494374,64.02465281785229],[-89.46269462694626,64.03478428147159],[-89.49509495094951,64.06180151778972],[-89.52749527495274,64.07699871321864],[-89.54549545495455,64.08037586775842],[-89.56349563495634,64.07531013594877],[-89.55989559895599,64.05673578598007],[-89.56349563495634,64.02634139512216],[-89.55629556295563,64.00776704515346],[-89.54189541895418,63.992569849724504],[-89.48429484294843,63.95204399524732],[-89.50949509495095,63.95204399524732],[-89.54189541895418,63.97230692248593],[-89.59229592295922,64.02127566331251],[-89.6570965709657,64.06180151778972],[-89.6930969309693,64.07868729048855],[-89.72189721897219,64.07531013594877],[-89.71469714697146,64.07193298140899],[-89.71109711097111,64.06349009505959],[-89.70389703897038,64.05504720871016],[-89.70389703897038,64.04491574509089],[-89.70749707497075,64.03140712693181],[-89.71829718297182,64.03816143601134],[-89.73269732697327,64.05842436324994],[-89.75069750697507,64.07193298140899],[-89.82629826298263,64.10908168134642],[-89.8190981909819,64.1209017222356],[-89.81189811898119,64.12765603131513],[-89.80109801098011,64.13272176312478],[-89.79029790297902,64.13609891766455],[-89.76149761497615,64.13609891766455],[-89.74349743497434,64.13778749493443],[-89.73629736297363,64.14791895855373],[-89.73989739897398,64.15636184490313],[-89.74709747097471,64.16987046306221],[-89.75069750697507,64.17831334941161],[-89.75069750697507,64.18844481303091],[-89.75069750697507,64.21715062661892],[-89.75069750697507,64.22559351296832],[-89.75789757897579,64.23234782204787],[-89.77229772297723,64.24416786293705],[-89.78669786697867,64.25092217201657],[-89.79389793897938,64.24585644020692],[-89.80469804698046,64.22728209023822],[-89.80829808298083,64.21715062661892],[-89.80469804698046,64.20701916299961],[-89.80469804698046,64.20195343118996],[-89.8190981909819,64.19857627665021],[-89.86949869498694,64.20533058572974],[-89.88749887498875,64.20533058572974],[-89.86949869498694,64.19013339030079],[-89.84429844298442,64.18506765849114],[-89.82629826298263,64.17662477214174],[-89.8190981909819,64.15467326763326],[-89.83349833498335,64.1411646494742],[-89.86229862298623,64.14623038128383],[-89.91269912699127,64.16480473125256],[-89.94149941499414,64.16818188579231],[-89.97029970299702,64.16818188579231],[-89.99909999099991,64.16311615398266],[-90.04950049500495,64.14454180401395],[-90.12870128701287,64.129344608585],[-90.0711007110071,64.11583599042595],[-90.05310053100531,64.10570452680665],[-90.04230042300422,64.100638794997],[-90.02430024300243,64.100638794997],[-90.0171001710017,64.10739310407655],[-90.02430024300243,64.12427887677538],[-89.96309963099631,64.12259029950548],[-89.93069930699306,64.11752456769582],[-89.91269912699127,64.10401594953677],[-89.93789937899379,64.09557306318735],[-89.94869948699487,64.08375302229817],[-89.9450994509945,64.06855582686924],[-89.92709927099271,64.05504720871016],[-89.92709927099271,64.05673578598007],[-89.90549905499054,64.05504720871016],[-89.89829898298983,64.05335863144029],[-89.89829898298983,64.04829289963064],[-89.89469894698946,64.04491574509089],[-89.89469894698946,64.04153859055111],[-89.87309873098731,64.03309570420168],[-89.85149851498515,64.02802997239206],[-89.85149851498515,64.02127566331251],[-89.88749887498875,64.02296424058241],[-89.90549905499054,64.01958708604263],[-89.91989919899198,64.01452135423298],[-89.91269912699127,64.00776704515346],[-89.91269912699127,64.00607846788358],[-89.91269912699127,64.00438989061368],[-89.91269912699127,64.00101273607393],[-89.8910989109891,63.992569849724504],[-89.84069840698406,63.98750411791485],[-89.8190981909819,63.97230692248593],[-89.81189811898119,63.96048688159675],[-89.81189811898119,63.9452896861678],[-89.8190981909819,63.93346964527862],[-89.83349833498335,63.92502675892919],[-89.85149851498515,63.921649604389444],[-89.89829898298983,63.92502675892919],[-89.91989919899198,63.92502675892919],[-89.9450994509945,63.91827244984967],[-89.95949959499595,63.91827244984967],[-89.96669966699666,63.91996102711957],[-89.99549995499954,63.931781068008746],[-89.97029970299702,63.93853537708827],[-89.95589955899558,63.948666840707574],[-89.95229952299523,63.9638640361365],[-89.97029970299702,63.97906123156545],[-89.99549995499954,63.989192695184755],[-90.0171001710017,63.992569849724504],[-90.0279002790028,63.98581554064498],[-90.0171001710017,63.9655526134064],[-90.03870038700387,63.9655526134064],[-90.06390063900639,63.97061834521605],[-90.08190081900818,63.97061834521605],[-90.09270092700926,63.95204399524732],[-90.11430114301143,63.9638640361365],[-90.14670146701467,63.994258426994406],[-90.16830168301682,64.00776704515346],[-90.19350193501934,64.01283277696311],[-90.22230222302223,64.01452135423298],[-90.25110251102511,64.01283277696311],[-90.27630276302763,64.00776704515346],[-90.27630276302763,64.00101273607393],[-90.22230222302223,63.992569849724504],[-90.13590135901359,63.9452896861678],[-90.08550085500855,63.92502675892919],[-90.09630096300963,63.91996102711957],[-90.10350103501035,63.91827244984967],[-90.11430114301143,63.91658387257979],[-90.12870128701287,63.91827244984967],[-90.09990099900999,63.904763831690616],[-90.09270092700926,63.886189481721914],[-89.99909999099991,63.84059789543508],[-89.97029970299702,63.82202354546635],[-89.96669966699666,63.81358065911695],[-89.96669966699666,63.806826350037426],[-89.96669966699666,63.8000720409579],[-89.97029970299702,63.79162915460847],[-89.97389973899739,63.77812053644942],[-89.98469984699847,63.77643195917952],[-90.00990009900099,63.78149769098917],[-90.12150121501215,63.78149769098917],[-90.1071010710107,63.774743381909644],[-90.06750067500674,63.76292334102047],[-90.06030060300603,63.75448045467104],[-90.06030060300603,63.74266041378186],[-90.07470074700747,63.73252895016259],[-90.08910089100891,63.72408606381316],[-90.09990099900999,63.71902033200351],[-90.09270092700926,63.70551171384446],[-90.10350103501035,63.70044598203481],[-90.13590135901359,63.69875740476493],[-90.13950139501395,63.69369167295528],[-90.16830168301682,63.65823155028775],[-90.15750157501574,63.64472293212867],[-90.14670146701467,63.63121431396962],[-90.17910179101791,63.62614858215997],[-90.22230222302223,63.61263996400092],[-90.25830258302582,63.60757423219127],[-90.28350283502834,63.622771427620194],[-90.2691026910269,63.627837159429845],[-90.23670236702367,63.63121431396962],[-90.22230222302223,63.63628004577927],[-90.24390243902438,63.64472293212867],[-90.2691026910269,63.6514772412082],[-90.29790297902979,63.6514772412082],[-90.31950319503194,63.64472293212867],[-90.31230312303123,63.6430343548588],[-90.29790297902979,63.63628004577927],[-90.34110341103411,63.62108285035032],[-90.3951039510395,63.61601711854067],[-90.44550445504454,63.62108285035032],[-90.48870488704887,63.63628004577927],[-90.45630456304562,63.6514772412082],[-90.52470524705247,63.65654297301785],[-90.54630546305462,63.66498585936728],[-90.51390513905139,63.663297282097375],[-90.49590495904958,63.66498585936728],[-90.48150481504814,63.6717401684468],[-90.5211052110521,63.685248786605854],[-90.60750607506074,63.703823136574584],[-90.6471064710647,63.70551171384446],[-90.64350643506435,63.68356020933598],[-90.65790657906578,63.67511732298658],[-90.67950679506795,63.6717401684468],[-90.7011070110701,63.66498585936728],[-90.68670686706866,63.65823155028775],[-90.66870668706687,63.654854395747975],[-90.65070650706507,63.654854395747975],[-90.63270632706326,63.65823155028775],[-90.61830618306183,63.66498585936728],[-90.6111061110611,63.6717401684468],[-90.60390603906039,63.676805900256454],[-90.58950589505895,63.676805900256454],[-90.57150571505714,63.67005159117693],[-90.55350553505535,63.6531658184781],[-90.54270542705427,63.63121431396962],[-90.54630546305462,63.60926280946114],[-90.5571055710557,63.597442768571966],[-90.57150571505714,63.59913134584184],[-90.59310593105931,63.60926280946114],[-90.66150661506614,63.60250850038162],[-90.71190711907118,63.58562272768279],[-90.72630726307263,63.57717984133336],[-90.74430744307443,63.57549126406349],[-90.90990909909098,63.56873695498396],[-90.97470974709746,63.578868418603264],[-91.03951039510395,63.60250850038162],[-91.05391053910539,63.61263996400092],[-91.0611106111061,63.614328541270794],[-91.10071100711006,63.62108285035032],[-91.13311133111331,63.632902891239496],[-91.1511115111151,63.63796862304915],[-91.19431194311943,63.63121431396962],[-91.23391233912339,63.63459146850937],[-91.26991269912699,63.64472293212867],[-91.31671316713167,63.6616087048275],[-91.33111331113311,63.66498585936728],[-91.37431374313744,63.66498585936728],[-91.39231392313923,63.66667443663715],[-91.41031410314103,63.676805900256454],[-91.39231392313923,63.69200309568541],[-91.37071370713707,63.68862594114563],[-91.35271352713526,63.6801830547962],[-91.33111331113311,63.676805900256454],[-91.34551345513455,63.69200309568541],[-91.37071370713707,63.70213455930468],[-91.50751507515075,63.730840372892686],[-91.53631536315363,63.73252895016259],[-91.54711547115471,63.730840372892686],[-91.57951579515795,63.71902033200351],[-91.59031590315902,63.71902033200351],[-91.67311673116731,63.72239748654329],[-91.68391683916839,63.725774641083035],[-91.68391683916839,63.73590610470234],[-91.67671676716766,63.74097183651199],[-91.66591665916658,63.744348991051766],[-91.6551165511655,63.74603756832164],[-91.66591665916658,63.76123476375059],[-91.68031680316803,63.774743381909644],[-91.70191701917018,63.779809113719296],[-91.71991719917199,63.77136622736987],[-91.7379173791738,63.75448045467104],[-91.74871748717487,63.747726145591514],[-91.89991899918999,63.74603756832164],[-91.94671946719467,63.75616903194094],[-91.989919899199,63.78149769098917],[-91.96831968319682,63.79162915460847],[-91.88911889118891,63.801760618227775],[-91.88911889118891,63.8085149273073],[-91.98271982719827,63.82202354546635],[-91.99711997119971,63.8186463909266],[-91.99711997119971,63.806826350037426],[-91.99351993519934,63.801760618227775],[-91.99711997119971,63.798383463688],[-92.00432004320042,63.788252000068695],[-92.01512015120151,63.779809113719296],[-92.02592025920259,63.77305480463977],[-92.04032040320403,63.76967765009999],[-92.05112051120511,63.76798907283012],[-92.05112051120511,63.76123476375059],[-92.04752047520475,63.75110330013129],[-92.06552065520656,63.74941472286142],[-92.10872108721087,63.75448045467104],[-92.14832148321483,63.75448045467104],[-92.16272162721627,63.75616903194094],[-92.18792187921879,63.766300495560245],[-92.29952299522995,63.78149769098917],[-92.37512375123751,63.779809113719296],[-92.39672396723967,63.78487484552895],[-92.46872468724688,63.8186463909266],[-92.50472504725047,63.83046643181578],[-92.74952749527495,63.86254939994356],[-92.74952749527495,63.88787805899179],[-92.78552785527854,63.90138667715084],[-92.82872828728287,63.90645240896049],[-92.85032850328503,63.90814098623039],[-92.86472864728647,63.90307525442074],[-92.91512915129151,63.904763831690616],[-92.93312933129332,63.90814098623039],[-92.94032940329403,63.91827244984967],[-92.94752947529474,63.92840391346897],[-92.95832958329584,63.93853537708827],[-92.9871298712987,63.94191253162802],[-93.069930699307,63.931781068008746],[-93.09873098730986,63.94191253162802],[-93.12753127531275,63.96048688159675],[-93.16713167131671,63.9739954997558],[-93.31473314733147,63.994258426994406],[-93.36873368733687,64.01114419969323],[-93.41553415534155,64.01620993150289],[-93.4479344793448,64.02296424058241],[-93.48033480334803,64.03309570420168],[-93.50553505535055,64.04829289963064],[-93.54153541535415,64.07531013594877],[-93.55953559535595,64.0820644450283],[-93.609936099361,64.09726164045725],[-93.62433624336244,64.10570452680665],[-93.63153631536315,64.12427887677538],[-93.61713617136171,64.15467326763326],[-93.63513635136351,64.16480473125256],[-93.6531365313653,64.16649330852243],[-93.69633696336963,64.16142757671278],[-93.71793717937179,64.16818188579231],[-93.74673746737467,64.19013339030079],[-93.76473764737646,64.19688769938031],[-93.7791377913779,64.19182196757066],[-93.69633696336963,64.15129611309348],[-93.6891368913689,64.14454180401395],[-93.68193681936819,64.13778749493443],[-93.67473674736748,64.1310331858549],[-93.67113671136711,64.12427887677538],[-93.66753667536675,64.11583599042595],[-93.67113671136711,64.09388448591747],[-93.66753667536675,64.09050733137772],[-93.64593645936459,64.0820644450283],[-93.60633606336063,64.04998147690051],[-93.58833588335884,64.04153859055111],[-93.5739357393574,64.04153859055111],[-93.56313563135632,64.03985001328124],[-93.55593555935559,64.03309570420168],[-93.55233552335523,64.02465281785229],[-93.59913599135992,64.01452135423298],[-93.58833588335884,64.00945562242333],[-93.5739357393574,64.00607846788358],[-93.54513545135451,64.00776704515346],[-93.54513545135451,64.00101273607393],[-93.59553595535955,63.992569849724504],[-93.76473764737646,63.994258426994406],[-93.76113761137611,63.984126963375104],[-93.76113761137611,63.975684077025676],[-93.76473764737646,63.967241190676276],[-93.77193771937719,63.95879830432685],[-93.75753757537575,63.95879830432685],[-93.72513725137252,63.9638640361365],[-93.71073710737107,63.95879830432685],[-93.69993699937,63.95035541797745],[-93.6891368913689,63.931781068008746],[-93.68193681936819,63.921649604389444],[-93.6639366393664,63.90814098623039],[-93.65673656736567,63.899698099880965],[-93.65673656736567,63.88787805899179],[-93.64593645936459,63.88112374991226],[-93.53433534335343,63.84904078178448],[-93.51273512735128,63.84735220451461],[-93.46593465934659,63.84904078178448],[-93.42993429934299,63.842286472704956],[-93.36873368733687,63.8169578136567],[-93.33273332733327,63.815269236386825],[-93.34353343533435,63.823712122736254],[-93.37233372333723,63.83046643181578],[-93.38313383133831,63.83553216362543],[-93.38313383133831,63.84566362724473],[-93.3651336513365,63.84735220451461],[-93.30753307533075,63.83215500908565],[-93.2751327513275,63.83215500908565],[-93.21753217532175,63.842286472704956],[-93.21753217532175,63.84904078178448],[-93.2859328593286,63.84904078178448],[-93.30393303933039,63.85241793632426],[-93.33273332733327,63.86592655448331],[-93.35073350733506,63.869303709023086],[-93.36153361533616,63.87436944083274],[-93.39393393933939,63.904763831690616],[-93.45153451534514,63.931781068008746],[-93.43713437134372,63.9368467998184],[-93.43353433534335,63.93853537708827],[-93.42273422734227,63.93853537708827],[-93.44073440734407,63.95035541797745],[-93.45873458734587,63.95879830432685],[-93.4011340113401,63.97737265429558],[-93.33633336333364,63.96048688159675],[-93.21753217532175,63.91151814077014],[-93.1491314913149,63.904763831690616],[-93.13113131131311,63.89800952261109],[-93.10233102331023,63.88112374991226],[-93.08793087930879,63.87605801810261],[-93.01233012330123,63.869303709023086],[-92.9079290792908,63.84059789543508],[-92.76752767527675,63.83215500908565],[-92.63432634326342,63.78318626825907],[-92.61272612726127,63.779809113719296],[-92.58752587525875,63.78656342279882],[-92.56232562325623,63.80513777276752],[-92.53352533525334,63.82033496819648],[-92.50112501125011,63.82033496819648],[-92.46512465124651,63.81189208184708],[-92.43632436324363,63.79500630914825],[-92.41832418324184,63.752791877401165],[-92.41112411124111,63.74603756832164],[-92.30312303123031,63.74097183651199],[-92.26352263522635,63.747726145591514],[-92.24912249122491,63.74603756832164],[-92.2419224192242,63.74266041378186],[-92.22032220322203,63.730840372892686],[-92.20952209522095,63.725774641083035],[-92.12672126721267,63.71057744565411],[-92.10152101521015,63.69875740476493],[-92.12312123121231,63.69369167295528],[-92.16992169921699,63.69200309568541],[-92.18792187921879,63.685248786605854],[-92.20952209522095,63.66667443663715],[-92.19872198721987,63.65823155028775],[-92.18072180721806,63.6531658184781],[-92.16992169921699,63.64472293212867],[-92.20232202322023,63.63965720031902],[-92.2779227792278,63.62108285035032],[-92.30672306723066,63.63121431396962],[-92.29232292322924,63.63628004577927],[-92.30672306723066,63.6531658184781],[-92.32472324723247,63.6514772412082],[-92.34272342723428,63.641345777588924],[-92.35352353523535,63.63121431396962],[-92.37152371523715,63.605885654921366],[-92.38232382323822,63.59575419130209],[-92.4039240392404,63.58899988222254],[-92.529925299253,63.56367122317431],[-92.54432544325444,63.55522833682488],[-92.46872468724688,63.52821110050678],[-92.45792457924578,63.52652252323688],[-92.45072450724507,63.52821110050678],[-92.44352443524436,63.54847402774536],[-92.42552425524255,63.551851182285134],[-92.36432364323643,63.54847402774536],[-92.3571235712357,63.55016260501526],[-92.34992349923499,63.551851182285134],[-92.33912339123391,63.55522833682488],[-92.33912339123391,63.55860549136466],[-92.33912339123391,63.56367122317431],[-92.33912339123391,63.570425532253836],[-92.33552335523355,63.57549126406349],[-92.30312303123031,63.57549126406349],[-92.25632256322562,63.54171971866583],[-92.2311223112231,63.54171971866583],[-92.21672216722168,63.551851182285134],[-92.20592205922058,63.57211410952371],[-92.20592205922058,63.592377036762315],[-92.20952209522095,63.60926280946114],[-92.18072180721806,63.62108285035032],[-92.12312123121231,63.62108285035032],[-92.09792097920979,63.632902891239496],[-92.07992079920798,63.64472293212867],[-92.0691206912069,63.64810008666845],[-92.03672036720367,63.64472293212867],[-92.02232022320223,63.64810008666845],[-91.98271982719827,63.67511732298658],[-91.95391953919538,63.68356020933598],[-91.89631896318963,63.69200309568541],[-91.83511835118351,63.71057744565411],[-91.80631806318063,63.71564317746376],[-91.77751777517774,63.71395460019386],[-91.66231662316623,63.676805900256454],[-91.62631626316262,63.654854395747975],[-91.61911619116191,63.6514772412082],[-91.61551615516154,63.64641150939855],[-91.6119161191612,63.632902891239496],[-91.61551615516154,63.622771427620194],[-91.61911619116191,63.61263996400092],[-91.61911619116191,63.60419707765149],[-91.60831608316083,63.592377036762315],[-91.59751597515975,63.58562272768279],[-91.58671586715867,63.58224557314301],[-91.53991539915398,63.58055699587314],[-91.5291152911529,63.57549126406349],[-91.50391503915039,63.561982645904436],[-91.39951399513996,63.53158825504653],[-91.38151381513815,63.51301390507783],[-91.38871388713886,63.51132532780795],[-91.41031410314103,63.499505286918776],[-91.39231392313923,63.4876852460296],[-91.37071370713707,63.48430809148982],[-91.35271352713526,63.48937382329947],[-91.33111331113311,63.496128132379],[-91.31671316713167,63.50119386418865],[-91.16911169111691,63.49275097783922],[-91.14751147511475,63.4876852460296],[-91.10071100711006,63.458979432441595],[-91.07911079110791,63.45222512336204],[-91.0611106111061,63.45222512336204],[-91.04671046710467,63.458979432441595],[-91.03591035910358,63.46911089606087],[-91.01791017910179,63.47079947333077],[-90.9891098910989,63.46573374152112],[-90.96030960309602,63.45729085517169],[-90.92790927909279,63.431962196123465],[-90.78390783907838,63.39819065072581],[-90.80550805508055,63.39143634164628],[-90.83430834308342,63.39312491891616],[-90.95310953109531,63.42183073250416],[-90.97470974709746,63.42520788704394],[-90.96390963909639,63.40832211434511],[-90.9459094590946,63.39819065072581],[-90.92430924309242,63.39143634164628],[-90.87390873908738,63.38637060983663],[-90.819908199082,63.3677962598679],[-90.79110791107911,63.36273052805828],[-90.70830708307082,63.36441910532815],[-90.69030690306903,63.355976218978725],[-90.6831068310683,63.33740186901002],[-90.7011070110701,63.32895898266062],[-90.72990729907299,63.325581828120846],[-90.75150751507515,63.320516096311195],[-90.7371073710737,63.30869605542202],[-90.74070740707407,63.29518743726297],[-90.72990729907299,63.28674455091354],[-90.71190711907118,63.28167881910389],[-90.6939069390694,63.27492451002436],[-90.71910719107191,63.26141589186531],[-90.71910719107191,63.252973005515884],[-90.70470704707047,63.24621869643636],[-90.69030690306903,63.23271007827731],[-90.68670686706866,63.22426719192788],[-90.69030690306903,63.21413572830858],[-90.69030690306903,63.20569284195918],[-90.6939069390694,63.19893853287965],[-90.69750697506974,63.192184223800126],[-90.6939069390694,63.18880706926035],[-90.6939069390694,63.18542991472057],[-90.7011070110701,63.18542991472057],[-90.71910719107191,63.18880706926035],[-90.72630726307263,63.19049564653022],[-90.72990729907299,63.18542991472057],[-90.72270722707226,63.1752984511013],[-90.68670686706866,63.17023271929165],[-90.67590675906759,63.165166987481996],[-90.67230672306722,63.15334694659282],[-90.67950679506795,63.14828121478317],[-90.69030690306903,63.14321548297352],[-90.6939069390694,63.13646117389399],[-90.69030690306903,63.124641133004815],[-90.65430654306543,63.089181010337256],[-90.66510665106651,63.08749243306738],[-90.69030690306903,63.08242670125773],[-90.67590675906759,63.070606660368554],[-90.64350643506435,63.06891808309868],[-90.62550625506255,63.06047519674925],[-90.64350643506435,63.0570980422095],[-90.65790657906578,63.03345796043115],[-90.69030690306903,63.04190084678055],[-90.7011070110701,63.035146537701024],[-90.71190711907118,63.02501507408172],[-90.72270722707226,63.01488361046242],[-90.69030690306903,63.01488361046242],[-90.7011070110701,63.00306356957324],[-90.71910719107191,62.999686415033494],[-90.75510755107551,62.999686415033494],[-90.75870758707586,62.99630926049372],[-90.74790747907478,62.98786637414432],[-90.73350733507334,62.977734910525015],[-90.72270722707226,62.972669178715364],[-90.7371073710737,62.96760344690571],[-90.75150751507515,62.964226292365964],[-90.78390783907838,62.96591486963584],[-90.7731077310773,62.95240625147676],[-90.78390783907838,62.945651942397234],[-90.82710827108271,62.93889763331771],[-91.03231032310323,62.950717674206885],[-91.05391053910539,62.945651942397234],[-91.09711097110971,62.92201186061888],[-91.1151111511115,62.91863470607913],[-91.14031140311403,62.915257551539355],[-91.16191161911618,62.91188039699958],[-91.1979119791198,62.89668320157065],[-91.20871208712087,62.87642027433205],[-91.21951219512195,62.862911656173],[-91.3131131311313,62.830828688045216],[-91.3239132391324,62.82914011077534],[-91.39951399513996,62.82745153350544],[-91.42111421114211,62.822385801695816],[-91.40671406714067,62.81563149261626],[-91.37071370713707,62.80887718353674],[-91.35271352713526,62.80043429718734],[-91.39591395913959,62.78692567902826],[-91.44271442714427,62.78692567902826],[-91.65871658716587,62.81056576080661],[-91.70911709117091,62.825762956235565],[-91.7379173791738,62.82914011077534],[-91.83151831518315,62.82914011077534],[-91.9791197911979,62.847714460744044],[-92.08352083520835,62.87304311979227],[-92.13392133921339,62.87642027433205],[-92.13392133921339,62.8713545425224],[-92.13032130321302,62.8713545425224],[-92.12672126721267,62.86966596525252],[-92.13392133921339,62.84940303801392],[-92.11952119521195,62.83758299712474],[-92.09792097920979,62.82914011077534],[-92.08712087120871,62.81900864715604],[-92.09792097920979,62.803811451727086],[-92.12672126721267,62.80043429718734],[-92.15912159121591,62.80550002899699],[-92.22752227522275,62.82914011077534],[-92.28152281522814,62.84096015166452],[-92.33192331923318,62.84433730620427],[-92.42912429124291,62.83420584258499],[-92.45432454324543,62.825762956235565],[-92.46152461524615,62.812254338076514],[-92.45432454324543,62.79367998810781],[-92.43272432724326,62.78354852448851],[-92.40752407524074,62.77341706086921],[-92.39312393123932,62.763285597249904],[-92.3571235712357,62.732891206392026],[-92.31752317523176,62.71262827915342],[-92.22392223922239,62.692365351914844],[-92.22392223922239,62.683922465565416],[-92.2419224192242,62.68561104283532],[-92.25992259922599,62.69067677464494],[-92.27432274322743,62.69067677464494],[-92.29232292322924,62.683922465565416],[-92.2779227792278,62.678856733755765],[-92.20232202322023,62.66703669286659],[-91.96831968319682,62.65521665197741],[-91.89631896318963,62.64001945654849],[-91.88911889118891,62.629887992929184],[-91.88911889118891,62.61975652930988],[-91.88911889118891,62.59949360207128],[-91.89631896318963,62.589362138452],[-91.90351903519034,62.5792306748327],[-91.91431914319143,62.57078778848327],[-91.94671946719467,62.558967747594096],[-91.95391953919538,62.550524861244696],[-91.9431194311943,62.540393397625394],[-91.96111961119611,62.53363908854587],[-91.98271982719827,62.531950511275966],[-92.02592025920259,62.53363908854587],[-92.09432094320942,62.54714770670492],[-92.15912159121591,62.54377055216517],[-92.17712177121771,62.54714770670492],[-92.18792187921879,62.56234490213387],[-92.17712177121771,62.57078778848327],[-92.14112141121412,62.58260782937245],[-92.1519215192152,62.594427870261626],[-92.16632166321664,62.60624791115083],[-92.18432184321843,62.613002220230356],[-92.21672216722168,62.59611644753153],[-92.25992259922599,62.60118217934118],[-92.2779227792278,62.59611644753153],[-92.24552245522455,62.57416494302305],[-92.25992259922599,62.56234490213387],[-92.28512285122851,62.56403347940375],[-92.31392313923139,62.5690992112134],[-92.33912339123391,62.5690992112134],[-92.33552335523355,62.56403347940375],[-92.32472324723247,62.55221343851457],[-92.3211232112321,62.54714770670492],[-92.40032400324003,62.53870482035552],[-92.42912429124291,62.540393397625394],[-92.45792457924578,62.54714770670492],[-92.47592475924759,62.55559059305435],[-92.47952479524795,62.567410633943524],[-92.45792457924578,62.5876735611821],[-92.47952479524795,62.59949360207128],[-92.49032490324903,62.59273929299175],[-92.49752497524975,62.580919252102575],[-92.50472504725047,62.57416494302305],[-92.51912519125192,62.575853520292924],[-92.52632526325263,62.5792306748327],[-92.529925299253,62.58429640664235],[-92.57672576725767,62.60624791115083],[-92.58752587525875,62.61469079750023],[-92.60552605526055,62.621445106579756],[-92.61992619926198,62.62313368384966],[-92.61992619926198,62.60962506569058],[-92.6091260912609,62.5978050248014],[-92.58752587525875,62.589362138452],[-92.5731257312573,62.5792306748327],[-92.58032580325803,62.560656324864],[-92.56592565925659,62.55727917032422],[-92.55512555125551,62.553902015784445],[-92.54432544325444,62.545459129435045],[-92.53712537125371,62.53363908854587],[-92.55152551525515,62.52688477946634],[-92.55872558725586,62.52181904765669],[-92.56592565925659,62.515064738577166],[-92.56592565925659,62.50324469768796],[-92.55872558725586,62.49311323406869],[-92.54432544325444,62.49817896587834],[-92.52632526325263,62.50831042949761],[-92.52272522725227,62.513376161307264],[-92.50472504725047,62.51675331584704],[-92.50112501125011,62.513376161307264],[-92.50472504725047,62.49986754314821],[-92.50832508325082,62.48973607952891],[-92.51912519125192,62.488047502259036],[-92.529925299253,62.48635892498913],[-92.54432544325444,62.477916038639734],[-92.53712537125371,62.47285030683008],[-92.53352533525334,62.46778457502043],[-92.53352533525334,62.46440742048068],[-92.53712537125371,62.45934168867103],[-92.53352533525334,62.452587379591506],[-92.53352533525334,62.44921022505173],[-92.53352533525334,62.44414449324208],[-92.54792547925479,62.447521647781855],[-92.59472594725948,62.46440742048068],[-92.61272612726127,62.46778457502043],[-92.67392673926739,62.46440742048068],[-92.70632706327063,62.469473152290334],[-92.71712717127171,62.46440742048068],[-92.72432724327243,62.447521647781855],[-92.72432724327243,62.43063587508303],[-92.72072720727206,62.42388156600347],[-92.70992709927098,62.41037294784442],[-92.71712717127171,62.39686432968537],[-92.71352713527135,62.38842144333594],[-92.6991269912699,62.38335571152629],[-92.68112681126811,62.38335571152629],[-92.68112681126811,62.37660140244677],[-92.6991269912699,62.37491282517689],[-92.73152731527315,62.36478136155759],[-92.75312753127531,62.363092784287716],[-92.78912789127891,62.363092784287716],[-92.81072810728107,62.36140420701784],[-92.82872828728287,62.35633847520819],[-92.80352803528035,62.349584166128636],[-92.73872738727387,62.349584166128636],[-92.65952659526594,62.331009816159934],[-92.63432634326342,62.327632661620186],[-92.61992619926198,62.322566929810534],[-92.60192601926019,62.31074688892136],[-92.59112591125911,62.29892684803218],[-92.59112591125911,62.29386111622253],[-92.59472594725948,62.29048396168275],[-92.59832598325983,62.28372965260323],[-92.59832598325983,62.2769753435237],[-92.60192601926019,62.27022103444415],[-92.63432634326342,62.260089570824874],[-92.62352623526235,62.251646684475446],[-92.60192601926019,62.24489237539592],[-92.59472594725948,62.23982664358627],[-92.58752587525875,62.22969517996697],[-92.58032580325803,62.20943225272839],[-92.57672576725767,62.20098936637896],[-92.55152551525515,62.18748074821991],[-92.49752497524975,62.170594975521084],[-92.47592475924759,62.15708635736203],[-92.47232472324723,62.15033204828248],[-92.49752497524975,62.153709202822256],[-92.55512555125551,62.17228355279096],[-92.59832598325983,62.16046351190178],[-92.61272612726127,62.17228355279096],[-92.62352623526235,62.19254648002956],[-92.61992619926198,62.211120829998265],[-92.69192691926919,62.23138375723687],[-92.68832688326883,62.23644948904652],[-92.68832688326883,62.238138066316395],[-92.68472684726846,62.241515220856144],[-92.68112681126811,62.24489237539592],[-92.68832688326883,62.25502383901522],[-92.6991269912699,62.2668438799044],[-92.70992709927098,62.2769753435237],[-92.72792727927279,62.28204107533335],[-92.73872738727387,62.29217253895263],[-92.74592745927458,62.29386111622253],[-92.75312753127531,62.29386111622253],[-92.76752767527675,62.287106807142976],[-92.77832778327783,62.287106807142976],[-92.79272792727927,62.28879538441288],[-92.81432814328143,62.295549693492404],[-92.83232832328324,62.30230400257193],[-92.84312843128431,62.31074688892136],[-92.8611286112861,62.31750119800088],[-92.9079290792908,62.31243546619123],[-92.9439294392944,62.32425550708041],[-93.13113131131311,62.34451843431901],[-93.25353253532535,62.36984709336724],[-93.18513185131852,62.34620701158889],[-93.1491314913149,62.33776412523946],[-93.07713077130771,62.331009816159934],[-92.98352983529836,62.29386111622253],[-92.95472954729547,62.28879538441288],[-92.91872918729187,62.287106807142976],[-92.91512915129151,62.28372965260323],[-92.91512915129151,62.2769753435237],[-92.91512915129151,62.27022103444415],[-92.91512915129151,62.2668438799044],[-92.9079290792908,62.265155302634525],[-92.87912879128791,62.2668438799044],[-92.84672846728466,62.26346672536462],[-92.81432814328143,62.25502383901522],[-92.7819278192782,62.23982664358627],[-92.76392763927639,62.21787513907779],[-92.78552785527854,62.21449798453804],[-92.78912789127891,62.202677943648865],[-92.79272792727927,62.18748074821991],[-92.80712807128072,62.17734928460061],[-92.83232832328324,62.17903786187048],[-92.84672846728466,62.180726439140386],[-92.8611286112861,62.184103593680135],[-92.86832868328683,62.189169325489786],[-92.87192871928718,62.19423505729944],[-92.87912879128791,62.20098936637896],[-92.88992889928899,62.20436652091874],[-92.90072900729007,62.20436652091874],[-92.9439294392944,62.197612211839214],[-92.97992979929799,62.20436652091874],[-92.99792997929978,62.20436652091874],[-93.01233012330123,62.197612211839214],[-92.96912969129691,62.184103593680135],[-92.99072990729907,62.17397213006086],[-93.01953019530195,62.17228355279096],[-93.07353073530734,62.17734928460061],[-93.08433084330844,62.175660707330735],[-93.09513095130951,62.16552924371143],[-93.10953109531096,62.16384066644156],[-93.11673116731167,62.16046351190178],[-93.12033120331203,62.15033204828248],[-93.12753127531275,62.1300691210439],[-93.08433084330844,62.118249080154726],[-93.06633066330663,62.11656050288482],[-93.01233012330123,62.126691966504126],[-92.98352983529836,62.12838054377403],[-92.95472954729547,62.12331481196438],[-92.92952929529295,62.11656050288482],[-92.94032940329403,62.1013633074559],[-92.96192961929619,62.086166112026945],[-92.98352983529836,62.072657493867894],[-93.00513005130051,62.06759176205824],[-93.04473044730447,62.07941180294742],[-93.06633066330663,62.08110038021729],[-93.08073080730807,62.06759176205824],[-93.069930699307,62.06590318478837],[-93.06273062730627,62.06252603024859],[-93.06273062730627,62.055771721169066],[-93.06633066330663,62.04732883481964],[-93.07713077130771,62.04057452574011],[-93.08793087930879,62.03888594847024],[-93.1131311313113,62.04057452574011],[-93.10593105931059,62.04057452574011],[-93.12753127531275,62.050705989359415],[-93.13833138331383,62.05408314389916],[-93.1491314913149,62.05408314389916],[-93.159931599316,62.04732883481964],[-93.159931599316,62.04226310300999],[-93.15273152731527,62.03550879393046],[-93.1491314913149,62.02706590758106],[-93.15273152731527,62.01018013488223],[-93.159931599316,61.99498293945328],[-93.17073170731707,61.98485147583398],[-93.18873188731887,61.98485147583398],[-93.20673206732067,61.993294362183406],[-93.24273242732427,62.03382021666059],[-93.26073260732608,62.04226310300999],[-93.2859328593286,62.04901741208954],[-93.31113311133112,62.05408314389916],[-93.33273332733327,62.05408314389916],[-93.3219332193322,62.04564025754976],[-93.31113311133112,62.03888594847024],[-93.30033300333002,62.03044306212081],[-93.29313293132931,62.020311598501536],[-93.41553415534155,62.03382021666059],[-93.41553415534155,62.02706590758106],[-93.21753217532175,61.957834239515876],[-93.21753217532175,61.95107993043632],[-93.36873368733687,61.9544570849761],[-93.39033390333903,61.95107993043632],[-93.33633336333364,61.93250558046762],[-93.3219332193322,61.930817003197745],[-93.31113311133112,61.925751271388094],[-93.30033300333002,61.91561980776879],[-93.28953289532895,61.90548834414949],[-93.27873278732787,61.89704545780009],[-93.31113311133112,61.89366830326031],[-93.33633336333364,61.89704545780009],[-93.49473494734947,61.939259889547145],[-93.59913599135992,61.9544570849761],[-93.61713617136171,61.952768507706224],[-93.59553595535955,61.934194157737494],[-93.51273512735128,61.90211118960974],[-93.4911349113491,61.88860257145066],[-93.58473584735847,61.88691399418079],[-93.60273602736027,61.88015968510126],[-93.61353613536136,61.86158533513256],[-93.59913599135992,61.854831026053006],[-93.50193501935019,61.85651960332291],[-93.4911349113491,61.846388139703606],[-93.48033480334803,61.83794525335418],[-93.46953469534695,61.83456809881443],[-93.34713347133471,61.82105948065535],[-93.36873368733687,61.814305171575825],[-93.39033390333903,61.81261659430595],[-93.43713437134372,61.814305171575825],[-93.43713437134372,61.8075508624963],[-93.42273422734227,61.80417370795655],[-93.39753397533975,61.79066508979747],[-93.38673386733868,61.78728793525772],[-93.32913329133291,61.78728793525772],[-93.2859328593286,61.79404224433725],[-93.27153271532715,61.792353667067346],[-93.24993249932498,61.78728793525772],[-93.24633246332463,61.783910780717946],[-93.25713257132571,61.76702500801912],[-93.26433264332643,61.74507350351064],[-93.27153271532715,61.73663061716124],[-93.28233282332823,61.74169634897089],[-93.29313293132931,61.748450658050416],[-93.30393303933039,61.751827812590165],[-93.3651336513365,61.75351638986007],[-93.4011340113401,61.76027069893959],[-93.43713437134372,61.77209073982877],[-93.45513455134551,61.773779317098644],[-93.47313473134732,61.76702500801912],[-93.45153451534514,61.756893544399816],[-93.43713437134372,61.743384926240765],[-93.42273422734227,61.73156488535159],[-93.39393393933939,61.72481057627206],[-93.33633336333364,61.73494203989134],[-93.31473314733147,61.73156488535159],[-93.44433444334443,61.69103903087441],[-93.46233462334624,61.68766187633463],[-93.49833498334984,61.685973299064756],[-93.51993519935199,61.68259614452498],[-93.6891368913689,61.61505305372967],[-93.71433714337142,61.60154443557062],[-93.76113761137611,61.56777289017296],[-93.78633786337863,61.55426427201391],[-93.79353793537935,61.55426427201391],[-93.80793807938079,61.561018581093435],[-93.81873818738187,61.56777289017296],[-93.83313833138331,61.574527199252486],[-93.83673836738367,61.561018581093435],[-93.87633876338764,61.520492726616254],[-93.89433894338943,61.5052955311873],[-93.9051390513905,61.50022979937765],[-93.92673926739268,61.495164067568],[-93.93753937539375,61.49178691302825],[-93.98433984339843,61.458015367630594],[-93.97353973539735,61.45463821309082],[-93.96633966339662,61.449572481281166],[-93.96633966339662,61.44281817220164],[-93.96993969939699,61.43775244039199],[-93.96633966339662,61.42762097677269],[-93.95913959139591,61.41917809042329],[-93.94833948339483,61.41242378134376],[-93.93753937539375,61.41073520407386],[-93.96273962739627,61.40398089499433],[-93.96993969939699,61.40229231772446],[-93.92673926739268,61.39047227683528],[-93.90873908739087,61.38878369956538],[-93.89433894338943,61.39047227683528],[-93.88353883538835,61.39216085410516],[-93.86913869138691,61.39216085410516],[-93.85833858338583,61.38540654502563],[-93.8259382593826,61.36345504051715],[-93.82233822338223,61.3499464223581],[-93.84033840338402,61.34150353600867],[-93.83673836738367,61.33137207238937],[-93.83313833138331,61.32799491784962],[-93.85833858338583,61.31786345423032],[-93.92313923139231,61.302666258801366],[-93.9519395193952,61.30097768153149],[-93.99153991539914,61.30604341334114],[-94.07434074340743,61.32630634057972],[-94.1139411394114,61.32799491784962],[-94.09594095940959,61.311109145150795],[-94.05274052740528,61.29253479518209],[-94.0311403114031,61.27902617702301],[-94.0311403114031,61.27227186794349],[-94.02394023940239,61.25032036343501],[-94.02394023940239,61.24525463162536],[-94.01314013140131,61.24356605435548],[-94.00594005940059,61.23850032254583],[-94.00234002340024,61.23174601346631],[-93.99873998739987,61.22499170438678],[-94.00594005940059,61.22499170438678],[-94.02754027540276,61.21823739530723],[-94.01674016740166,61.2013516226084],[-94.04554045540455,61.18953158171922],[-94.08154081540815,61.177711540830046],[-94.09954099540995,61.16251434540112],[-94.04194041940418,61.16251434540112],[-94.05994059940599,61.14393999543239],[-94.0671406714067,61.133808531813116],[-94.0671406714067,61.12198849092394],[-94.05634056340563,61.10847987276486],[-94.03834038340383,61.110168450034735],[-94.01674016740166,61.11692275911429],[-93.99873998739987,61.115234181844386],[-93.9879398793988,61.10003698641546],[-93.99513995139951,61.08990552279616],[-94.01674016740166,61.08315121371663],[-94.0311403114031,61.08146263644673],[-94.07074070740707,61.08146263644673],[-94.08874088740887,61.079774059176856],[-94.10674106741067,61.07301975009733],[-94.11754117541174,61.07301975009733],[-94.12834128341284,61.06795401828768],[-94.12834128341284,61.05951113193828],[-94.14634146341463,61.04937966831898],[-94.16074160741607,61.03418247289002],[-94.16794167941678,61.01560812292132],[-94.17154171541715,60.99534519568272],[-94.17874178741788,60.98352515479354],[-94.21834218342183,60.946376454856136],[-94.23274232742327,60.93117925942718],[-94.23634236342363,60.919359218538006],[-94.239942399424,60.91091633218858],[-94.24354243542435,60.90416202310905],[-94.25074250742507,60.89571913675965],[-94.26514265142652,60.89065340495],[-94.29754297542975,60.88558767314035],[-94.3191431914319,60.8720790549813],[-94.34074340743408,60.865324745901745],[-94.35154351543515,60.85857043682222],[-94.35514355143552,60.85350470501257],[-94.35514355143552,60.84843897320292],[-94.35514355143552,60.83830750958364],[-94.35874358743587,60.834930355043866],[-94.36954369543695,60.829864623234215],[-94.37674376743767,60.82817604596434],[-94.4019440194402,60.78596161421726],[-94.40914409144091,60.764010109708806],[-94.40554405544056,60.74881291427985],[-94.39834398343983,60.726861409771374],[-94.40914409144091,60.709975637072546],[-94.47034470344703,60.66776120532549],[-94.48474484744847,60.65762974170619],[-94.4919449194492,60.64918685535676],[-94.49554495544955,60.63736681446758],[-94.4919449194492,60.63061250538806],[-94.48834488344883,60.62385819630853],[-94.49554495544955,60.612038155419356],[-94.51354513545135,60.59515238272053],[-94.52074520745207,60.585020919101225],[-94.51714517145172,60.579955187291574],[-94.50634506345064,60.57488945548192],[-94.50634506345064,60.56475799186265],[-94.51354513545135,60.552937950973444],[-94.52074520745207,60.54618364189392],[-94.5711457114571,60.527609291925216],[-94.68994689946899,60.552937950973444],[-94.73674736747367,60.53942933281439],[-94.71514715147151,60.53098644646499],[-94.66474664746647,60.52085498284569],[-94.64314643146432,60.51241209649626],[-94.66834668346684,60.49383774652756],[-94.76194761947619,60.50565778741674],[-94.80154801548015,60.49890347833721],[-94.70434704347043,60.48539486017816],[-94.67914679146791,60.47526339655886],[-94.62874628746287,60.419540346652724],[-94.62874628746287,60.411097460303324],[-94.6179461794618,60.397588842144245],[-94.61434614346143,60.392523110334594],[-94.6179461794618,60.38070306944542],[-94.63234632346324,60.36044014220684],[-94.63594635946359,60.35199725585741],[-94.64314643146432,60.33680006042846],[-94.67554675546755,60.308094246840454],[-94.68634686346863,60.28783131960188],[-94.71154711547115,60.2658798150934],[-94.71154711547115,60.25405977420422],[-94.70434704347043,60.24899404239457],[-94.6971469714697,60.24392831058492],[-94.68994689946899,60.23886257877527],[-94.68274682746828,60.21691107426679],[-94.68274682746828,60.19664814702821],[-94.68634686346863,60.179762374329385],[-94.6971469714697,60.16287660163056],[-94.70434704347043,60.15949944709078],[-94.71514715147151,60.15443371528113],[-94.71874718747188,60.14936798347148],[-94.71874718747188,60.14092509712208],[-94.71874718747188,60.139236519852204],[-94.71514715147151,60.13585936531243],[-94.7079470794708,60.12235074715338],[-94.70434704347043,60.11390786080395],[-94.70434704347043,60.10546497445455],[-94.70434704347043,60.09364493356537],[-94.71874718747188,60.07844773813642],[-94.75834758347582,60.068316274517116],[-94.77274772747727,60.05311907908819],[-94.76914769147692,60.05143050181829],[-94.75834758347582,60.04636477000864],[-94.76554765547655,60.041299038198986],[-94.76914769147692,60.03623330638936],[-94.76914769147692,60.03116757457971],[-94.77274772747727,60.02610184277006],[-94.75834758347582,60.019347533690535],[-94.78354783547834,60.01765895642063],[-94.80154801548015,60.01090464734111],[-94.80514805148051,60.000773183721805],[-94.80154801548015,60.000773183721805],[-94.78714787147871,59.99064172010253],[-94.80154801548015,59.98051025648323],[-94.8159481594816,59.9636244837844],[-94.8231482314823,59.94842728835545],[-94.80154801548015,59.943361556545796],[-94.80874808748086,59.92816436111687],[-94.8159481594816,59.92309862930722],[-94.80874808748086,59.91972147476744],[-94.80514805148051,59.91296716568792],[-94.80154801548015,59.90959001114814],[-94.80514805148051,59.88426135209991],[-94.779947799478,59.83866976581308],[-94.79434794347944,59.82009541584438],[-94.77634776347763,59.7981439113359],[-94.77274772747727,59.78970102498647],[-94.77634776347763,59.777880984097294],[-94.78354783547834,59.75761805685872],[-94.78714787147871,59.74917517050929],[-94.79074790747907,59.742420861429764],[-94.80154801548015,59.725535088730936],[-94.80874808748086,59.71709220238151],[-94.79794797947979,59.66812346155493],[-94.79794797947979,59.6596805752055],[-94.81234812348123,59.65630342066575],[-94.8231482314823,59.649549111586225],[-94.81954819548196,59.63941764796692],[-94.80874808748086,59.617466143458444],[-94.80874808748086,59.61071183437892],[-94.80874808748086,59.60564610256927],[-94.80514805148051,59.59889179348974],[-94.79434794347944,59.587071752600565],[-94.78354783547834,59.582006020790914],[-94.77634776347763,59.58031744352101],[-94.76554765547655,59.57694028898126],[-94.75834758347582,59.56680882536196],[-94.779947799478,59.56174309355231],[-94.78714787147871,59.54992305266313],[-94.78714787147871,59.53641443450408],[-94.79434794347944,59.52628297088478],[-94.78714787147871,59.51615150726548],[-94.779947799478,59.5144629299956],[-94.77274772747727,59.51277435272573],[-94.76194761947619,59.50770862091608],[-94.75834758347582,59.50095431183652],[-94.75474754747547,59.497577157296774],[-94.75474754747547,59.49251142548712],[-94.75114751147511,59.484068539137695],[-94.75474754747547,59.484068539137695],[-94.75834758347582,59.475625652788295],[-94.75834758347582,59.467182766438896],[-94.74754747547475,59.46380561189912],[-94.74034740347403,59.46042845735934],[-94.73314733147332,59.45705130281959],[-94.72954729547295,59.45029699374007],[-94.72594725947259,59.443542684660514],[-94.73314733147332,59.43678837558099],[-94.73314733147332,59.43003406650146],[-94.72954729547295,59.40301683018333],[-94.72594725947259,59.399639675643584],[-94.72234722347223,59.39626252110381],[-94.71874718747188,59.38781963475441],[-94.71514715147151,59.3759995938652],[-94.71874718747188,59.36586813024593],[-94.72594725947259,59.3591138211664],[-94.73674736747367,59.3472937802772],[-94.72234722347223,59.342228048467575],[-94.70434704347043,59.3472937802772],[-94.68274682746828,59.3574252438965],[-94.66474664746647,59.36080239843628],[-94.66114661146611,59.3591138211664],[-94.67194671946719,59.35404808935675],[-94.68634686346863,59.3489823575471],[-94.68994689946899,59.3472937802772],[-94.7079470794708,59.33209658484827],[-94.71874718747188,59.32703085303862],[-94.73314733147332,59.32703085303862],[-94.72594725947259,59.31689938941932],[-94.72594725947259,59.31352223487954],[-94.76194761947619,59.30507934853014],[-94.77274772747727,59.29832503945062],[-94.76554765547655,59.28481642129154],[-94.77634776347763,59.27299638040236],[-94.779947799478,59.26793064859271],[-94.78714787147871,59.26455349405296],[-94.77634776347763,59.25948776224331],[-94.77274772747727,59.252733453163785],[-94.77634776347763,59.24597914408426],[-94.78714787147871,59.23753625773483],[-94.779947799478,59.230781948655306],[-94.77634776347763,59.22233906230588],[-94.779947799478,59.203764712337176],[-94.78714787147871,59.20038755779743],[-94.79074790747907,59.195321825987776],[-94.79434794347944,59.18856751690825],[-94.79074790747907,59.18519036236847],[-94.77634776347763,59.1733703214793],[-94.77274772747727,59.168304589669646],[-94.77634776347763,59.16155028059012],[-94.78354783547834,59.14466450789129],[-94.78714787147871,59.13453304427199],[-94.79074790747907,59.100761498874334],[-94.79434794347944,59.09400718979481],[-94.84114841148411,59.08049857163576],[-94.90954909549095,59.08725288071528],[-94.96714967149671,59.08556430344538],[-94.99954999549995,59.05348133531763],[-94.96714967149671,59.06192422166703],[-94.8159481594816,59.06867853074655],[-94.80514805148051,59.06361279893693],[-94.80514805148051,59.06023564439715],[-94.80874808748086,59.0450384489682],[-94.80874808748086,59.038284139888674],[-94.80514805148051,59.03321840807902],[-94.80154801548015,59.029841253539274],[-94.80154801548015,59.0264640989995],[-94.80874808748086,59.0180212126501],[-94.76554765547655,59.01464405811032],[-94.72234722347223,59.00451259449102],[-94.69354693546936,58.98424966725244],[-94.68274682746828,58.950478121854786],[-94.68634686346863,58.931903771886056],[-94.69354693546936,58.91670657645713],[-94.71874718747188,58.888000762869126],[-94.72954729547295,58.88124645378957],[-94.73674736747367,58.877869299249824],[-94.73674736747367,58.87280356744017],[-94.73314733147332,58.86604925836065],[-94.73314733147332,58.860983526550996],[-94.73674736747367,58.847474908391945],[-94.74754747547475,58.83227771296299],[-94.68274682746828,58.87280356744017],[-94.65034650346503,58.88462360832935],[-94.60714607146072,58.88124645378957],[-94.54594545945459,58.855917794741345],[-94.51354513545135,58.83903202204252],[-94.48474484744847,58.820457672073815],[-94.47034470344703,58.79681759029546],[-94.45234452344523,58.7427831176592],[-94.43794437944379,58.7242087676905],[-94.39834398343983,58.71238872680132],[-94.36234362343623,58.71914303588085],[-94.29394293942939,58.744471694929075],[-94.29754297542975,58.75122600400863],[-94.29754297542975,58.7529145812785],[-94.30114301143011,58.757980313088154],[-94.28674286742867,58.76473462216768],[-94.2759427594276,58.78330897213638],[-94.26514265142652,58.79175185848581],[-94.25074250742507,58.798506167565336],[-94.21834218342183,58.80526047664486],[-94.2039420394204,58.806949053914735],[-94.20754207542075,58.798506167565336],[-94.21474214742148,58.79175185848581],[-94.22194221942219,58.78837470394603],[-94.23274232742327,58.784997549406285],[-94.22554225542255,58.77486608578698],[-94.22554225542255,58.76473462216768],[-94.23274232742327,58.75122600400863],[-94.239942399424,58.7343402313098],[-94.23274232742327,58.71914303588085],[-94.22194221942219,58.71070014953142],[-94.21114211142111,58.7056344177218],[-94.2039420394204,58.69719153137237],[-94.20754207542075,58.68368291321332],[-94.21834218342183,58.67017429505424],[-94.23634236342363,58.660042831434964],[-94.26514265142652,58.64991136781566],[-94.2759427594276,58.63471417238671],[-94.29754297542975,58.60431978152883],[-94.30834308343083,58.575613967940825],[-94.28674286742867,58.521579495304564],[-94.30114301143011,58.48105364082738],[-94.28674286742867,58.4489706726996],[-94.28674286742867,58.437150631810425],[-94.29754297542975,58.4202648591116],[-94.32634326343263,58.40000193187302],[-94.33354333543335,58.38142758190432],[-94.33354333543335,58.37636185009467],[-94.329943299433,58.35947607739584],[-94.329943299433,58.35103319104641],[-94.329943299433,58.33752457288736],[-94.34074340743408,58.31388449110901],[-94.34434344343443,58.28686725479088],[-94.36234362343623,58.24296424577392],[-94.36954369543695,58.23114420488474],[-94.36234362343623,58.22270131853534],[-94.34074340743408,58.26660432755227],[-94.32274322743227,58.28855583206075],[-94.30474304743048,58.298687295680054],[-94.30474304743048,58.303753027489705],[-94.28674286742867,58.339213150157235],[-94.2759427594276,58.34596745923676],[-94.26514265142652,58.35103319104641],[-94.25794257942579,58.35609892285606],[-94.26514265142652,58.36791896374524],[-94.23634236342363,58.39155904552359],[-94.23274232742327,58.401690509142895],[-94.23274232742327,58.41013339549232],[-94.23274232742327,58.437150631810425],[-94.23634236342363,58.442216363620076],[-94.239942399424,58.450659249969505],[-94.239942399424,58.51482518622504],[-94.23634236342363,58.535088113463644],[-94.23634236342363,58.54521957708292],[-94.239942399424,58.55535104070222],[-94.24354243542435,58.56379392705165],[-94.24714247142471,58.5773025452107],[-94.24714247142471,58.59081116336975],[-94.24354243542435,58.60094262698905],[-94.22914229142292,58.62289413149753],[-94.17874178741788,58.66173140870484],[-94.16434164341644,58.68368291321332],[-94.16794167941678,58.69381437683262],[-94.17154171541715,58.709011572261545],[-94.16434164341644,58.7242087676905],[-94.15354153541536,58.730963076770024],[-94.14274142741426,58.736028808579675],[-94.15354153541536,58.75122600400863],[-94.16794167941678,58.766423199437554],[-94.17874178741788,58.77993181759663],[-94.14634146341463,58.76980035397733],[-94.11754117541174,58.76811177670746],[-94.05634056340563,58.771488931247205],[-93.88353883538835,58.757980313088154],[-93.86553865538654,58.757980313088154],[-93.85473854738547,58.7613574676279],[-93.83313833138331,58.77486608578698],[-93.81873818738187,58.77993181759663],[-93.80433804338043,58.77824324032673],[-93.78993789937898,58.77317750851708],[-93.77553775537756,58.771488931247205],[-93.76113761137611,58.77486608578698],[-93.73233732337323,58.78837470394603],[-93.71793717937179,58.79175185848581],[-93.6891368913689,58.79006328121591],[-93.5739357393574,58.76473462216768],[-93.55593555935559,58.763046044897806],[-93.53433534335343,58.771488931247205],[-93.49473494734947,58.77317750851708],[-93.4839348393484,58.771488931247205],[-93.47313473134732,58.75460315854838],[-93.47313473134732,58.7343402313098],[-93.46593465934659,58.71745445861097],[-93.43713437134372,58.71070014953142],[-93.42273422734227,58.709011572261545],[-93.40833408334083,58.7056344177218],[-93.39753397533975,58.7056344177218],[-93.38673386733868,58.714077304071196],[-93.35793357933579,58.7427831176592],[-93.34713347133471,58.75122600400863],[-93.32553325533254,58.75966889035803],[-93.23553235532356,58.76811177670746],[-93.21033210332104,58.766423199437554],[-93.18873188731887,58.75966889035803],[-93.17073170731707,58.744471694929075],[-93.15633156331563,58.744471694929075],[-93.15273152731527,58.72589734496037],[-93.13473134731348,58.68368291321332],[-93.13113131131311,58.67186287232414],[-93.13833138331383,58.65835425416506],[-93.14193141931419,58.63977990419636],[-93.13473134731348,58.60094262698905],[-93.13113131131311,58.59081116336975],[-93.12393123931238,58.57392539067092],[-93.12033120331203,58.562105349781746],[-93.12753127531275,58.53846526800339],[-93.12753127531275,58.52833380438409],[-93.12393123931238,58.513136608955165],[-93.09873098730986,58.47598790901773],[-93.05193051930519,58.4219534363815],[-93.04113041130411,58.38649331371394],[-93.0339303393034,58.366230386475365],[-93.0231302313023,58.35103319104641],[-92.98352983529836,58.31388449110901],[-92.97272972729726,58.29699871841018],[-92.96912969129691,58.2750472139017],[-92.96192961929619,58.25985001847275],[-92.93312933129332,58.23283278215462],[-92.93672936729367,58.22270131853534],[-92.92232922329222,58.20412696856661],[-92.91152911529115,58.19568408221721],[-92.90072900729007,58.18892977313769],[-92.87552875528755,58.178798309518385],[-92.8611286112861,58.17204400043886],[-92.85392853928539,58.16191253681956],[-92.86832868328683,58.15346965047013],[-92.86472864728647,58.1467153413906],[-92.85752857528576,58.138272455041204],[-92.84672846728466,58.1281409914219],[-92.83952839528395,58.10112375510377],[-92.83592835928359,58.09099229148447],[-92.82512825128251,58.085926559674846],[-92.80712807128072,58.07579509605554],[-92.80352803528035,58.05046643700729],[-92.80712807128072,57.99812054164093],[-92.76752767527675,57.91031452360704],[-92.75672756727568,57.866411514590084],[-92.78552785527854,57.83939427827195],[-92.7711277112771,57.8343285464623],[-92.74232742327423,57.83263996919243],[-92.73152731527315,57.8258856601129],[-92.72432724327243,57.8157541964936],[-92.71352713527135,57.79211411471525],[-92.69552695526954,57.76678545566699],[-92.67032670326702,57.716128137570536],[-92.6451264512645,57.69586521033193],[-92.61632616326163,57.6705365512837],[-92.6091260912609,57.6587165103945],[-92.60192601926019,57.6418307376957],[-92.55872558725586,57.586107687789564],[-92.55872558725586,57.57597622417026],[-92.56232562325623,57.55402471966178],[-92.55872558725586,57.54389325604248],[-92.55152551525515,57.53882752423283],[-92.51912519125192,57.52700748334365],[-92.50832508325082,57.52025317426413],[-92.50112501125011,57.5134988651846],[-92.49752497524975,57.5033674015653],[-92.4939249392494,57.493235937946],[-92.48672486724867,57.474661587977295],[-92.47952479524795,57.466218701627895],[-92.46872468724688,57.45946439254834],[-92.45792457924578,57.44933292892907],[-92.45072450724507,57.43244715623024],[-92.44352443524436,57.38685556994341],[-92.42192421924219,57.354772601815625],[-92.42192421924219,57.33450967457702],[-92.42912429124291,57.29060666556009],[-92.43992439924399,57.25345796562266],[-92.45792457924578,57.22306357476478],[-92.54432544325444,57.10655174314286],[-92.59832598325983,57.04914011596685],[-92.66672666726667,57.00017137514027],[-92.68832688326883,56.971465561552264],[-92.70632706327063,56.95457978885344],[-92.72072720727206,56.949514057043785],[-92.76032760327602,56.94275974796426],[-92.84312843128431,56.92080824345578],[-92.88272882728828,56.914053934376255],[-92.8611286112861,56.9072996252967],[-92.72432724327243,56.927562552535306],[-92.67752677526775,56.94107117069436],[-92.53712537125371,57.01874572510897],[-92.49032490324903,57.03732007507767],[-92.2779227792278,57.06602588866568],[-92.2419224192242,57.074468775015106],[-92.2311223112231,57.0727801977452],[-92.21672216722168,57.06264873412593],[-92.22392223922239,57.0542058477765],[-92.23832238322383,57.047451538696976],[-92.25272252722527,57.0440743841572],[-92.27432274322743,57.03732007507767],[-92.33912339123391,56.98328560244144],[-92.35352353523535,56.976531293361916],[-92.37152371523715,56.97315413882214],[-92.4039240392404,56.96977698428236],[-92.42552425524255,56.96471125247271],[-92.45432454324543,56.94782547977388],[-92.47232472324723,56.94107117069436],[-92.47232472324723,56.93431686161483],[-92.41832418324184,56.949514057043785],[-92.33912339123391,56.95964552066309],[-92.31392313923139,56.96977698428236],[-92.22392223922239,57.02212287964875],[-92.11232112321123,57.0440743841572],[-91.96111961119611,57.06096015685603],[-91.76671766717666,57.11499462949229],[-91.4859148591486,57.16902910212852],[-91.20871208712087,57.229817883844305],[-91.03231032310323,57.265278006511835],[-90.85230852308523,57.26190085197209],[-90.69030690306903,57.229817883844305],[-90.6111061110611,57.23319503838408],[-90.58590585905858,57.229817883844305],[-90.51390513905139,57.2011120702563],[-90.48870488704887,57.19604633844665],[-90.43470434704346,57.1926691839069],[-90.40950409504094,57.18760345209725],[-90.38790387903879,57.17409483393817],[-90.38070380703807,57.153831906699594],[-90.31590315903159,57.14370044308029],[-90.26190261902619,57.11499462949229],[-90.16830168301682,57.09304312498381],[-90.15750157501574,57.08122308409463],[-90.1539015390154,57.07953450682476],[-90.0711007110071,57.06096015685603],[-90.05670056700566,57.055894425046375],[-89.98829988299883,57.01367999329932],[-89.96309963099631,57.00354852968002],[-89.87309873098731,56.99679422060049],[-89.82629826298263,56.976531293361916],[-89.57429574295743,56.944448325234134],[-89.5130951309513,56.927562552535306],[-89.48429484294843,56.922496820725655],[-89.39429394293943,56.927562552535306],[-89.36549365493654,56.922496820725655],[-89.3150931509315,56.90392247075695],[-89.26469264692646,56.89716816167743],[-89.1890918909189,56.873528079899046],[-89.10629106291063,56.8701509253593],[-89.08829088290882,56.86339661627977],[-89.07389073890738,56.85326515266047],[-89.05589055890559,56.84482226631104],[-89.03789037890378,56.84313368904117],[-89.01989019890199,56.84988799812069],[-89.00189001890018,56.85326515266047],[-88.94788947889478,56.85326515266047],[-88.91908919089191,56.85326515266047],[-88.9010890108901,56.860019461739995],[-88.89028890288903,56.86170803900987],[-88.87948879488795,56.860019461739995],[-88.87228872288722,56.854953729930344],[-88.86868868688687,56.84144511177129],[-88.86148861488614,56.83975653450139],[-88.84348843488435,56.838067957231516],[-88.82188821888218,56.83469080269177],[-88.81828818288183,56.82624791634234],[-88.83988839888399,56.81273929818329],[-88.80388803888039,56.79078779367481],[-88.72468724687246,56.75532767100728],[-88.68868688686887,56.72999901195902],[-88.65988659886598,56.704670352910796],[-88.64548645486454,56.69285031202162],[-88.60588605886059,56.686096002942065],[-88.54468544685446,56.66076734389384],[-88.5230852308523,56.66245592116371],[-88.49428494284942,56.64894730300466],[-88.46548465484655,56.628684375766056],[-88.43668436684366,56.60335571671783],[-88.41148411484114,56.588158521288875],[-88.40428404284043,56.586469944019],[-88.38628386283862,56.583092789479224],[-88.37908379083791,56.57802705766957],[-88.37188371883718,56.57127274859005],[-88.36468364683647,56.56451843951052],[-88.31068310683106,56.53750120319239],[-88.10188101881019,56.476712421476634],[-88.04428044280442,56.468269535127206],[-87.99027990279903,56.449695185158504],[-87.97947979479794,56.44294087607898],[-87.97587975879759,56.4311208351898],[-87.97227972279723,56.427743680650025],[-87.95427954279542,56.39397213525237],[-87.93987939879399,56.38046351709332],[-87.84987849878499,56.32305188991731],[-87.71667716677166,56.19472001740621],[-87.71667716677166,56.187965708326686],[-87.71307713077131,56.17445709016761],[-87.70947709477095,56.15925989473868],[-87.69867698676987,56.15419416292903],[-87.67347673476735,56.1457512765796],[-87.65187651876518,56.1271769266109],[-87.62307623076231,56.09509395848312],[-87.60867608676087,56.08833964940359],[-87.59427594275942,56.084962494863845],[-87.59067590675906,56.079896763054194],[-87.59067590675906,56.06469956762524],[-87.59787597875979,56.057945258545715],[-87.62667626676266,56.030928022227585],[-87.62307623076231,56.017419404068534],[-87.61947619476194,56.00222220863958],[-87.6050760507605,56.017419404068534],[-87.59427594275942,56.03261659949749],[-87.57987579875798,56.04612521765654],[-87.5510755107551,56.05119094946619],[-87.52587525875258,56.04950237219629],[-87.50067500675006,56.044436640386664],[-87.48627486274863,56.03430517676736],[-87.48987489874898,56.017419404068534],[-87.46467464674646,56.01066509498901],[-87.38187381873819,56.01066509498901],[-87.35667356673567,56.003910785909454],[-87.34947349473494,55.987025013210626],[-87.36387363873638,55.94818773600335],[-87.3170731707317,55.9616963541624],[-87.05787057870579,55.92792480876474],[-86.97866978669786,55.932990540574394],[-86.95346953469534,55.92792480876474],[-86.95706957069571,55.924547654224966],[-86.95706957069571,55.92117049968522],[-86.96066960669606,55.91779334514544],[-86.96786967869679,55.91441619060569],[-86.95346953469534,55.90935045879604],[-86.89586895868959,55.91441619060569],[-86.87426874268742,55.911039036065915],[-86.81666816668167,55.88739895428756],[-86.7770677706777,55.87726749066826],[-86.73746737467374,55.87389033612851],[-86.71946719467195,55.86882460431886],[-86.68346683466834,55.85193883162003],[-86.58266582665826,55.816478708952474],[-86.37386373863738,55.76244423631624],[-86.29106291062911,55.72529553637881],[-86.04626046260462,55.68308110463175],[-85.97065970659706,55.674638218282354],[-85.90585905859058,55.66281817739315],[-85.87345873458735,55.64593240469435],[-85.83025830258302,55.63748951834492],[-85.79785797857978,55.625669477455745],[-85.7690576905769,55.617226591106316],[-85.7330573305733,55.60878370475692],[-85.6970569705697,55.603717972947265],[-85.68265682656826,55.58683220024844],[-85.65025650256503,55.568257850279736],[-85.61065610656107,55.55137207758091],[-85.58185581855818,55.53448630488208],[-85.55665556655566,55.50746906856395],[-85.52425524255243,55.48889471859525],[-85.50265502655026,55.473697523166294],[-85.43785437854378,55.42810593687946],[-85.32265322653227,55.389268659672155],[-85.2650526505265,55.37407146424323],[-85.15345153451534,55.36056284608415],[-85.12825128251282,55.350431382464876],[-85.11745117451174,55.3284798779564],[-85.12825128251282,55.30315121890814],[-85.14985149851498,55.29470833255874],[-85.1750517505175,55.291331178018964],[-85.20025200252002,55.28457686893944],[-85.20745207452075,55.27613398259001],[-85.21465214652146,55.25755963262131],[-85.22185221852219,55.24911674627191],[-85.23265232652327,55.242362437192384],[-85.25785257852579,55.233919550842955],[-85.27225272252723,55.225476664493556],[-85.28665286652866,55.206902314524825],[-85.30825308253083,55.16975361458742],[-85.32265322653227,55.15286784188859],[-85.38745387453874,55.11234198741141],[-85.39825398253983,55.095456214712584],[-85.39465394653946,55.09039048290293],[-85.38745387453874,55.076881864743854],[-85.38385383853839,55.068438978394454],[-85.38745387453874,55.06168466931493],[-85.40545405454054,55.03635601026667],[-85.41985419854198,55.00933877394857],[-85.41625416254162,54.99920731032927],[-85.40185401854018,55.00258446486902],[-85.38025380253802,55.019470237567845],[-85.36585365853658,55.038044587536575],[-85.3370533705337,55.10558767833186],[-85.32625326253262,55.122473451030686],[-85.20025200252002,55.242362437192384],[-85.15345153451534,55.26769109624061],[-85.10665106651066,55.28457686893944],[-85.05265052650526,55.29470833255874],[-84.94464944649447,55.29470833255874],[-84.61344613446134,55.24573959173213],[-84.55584555845559,55.24911674627191],[-84.48024480244803,55.26769109624061],[-84.44424444244441,55.27275682805026],[-84.42264422644226,55.28119971439966],[-84.22824228242283,55.296396909828616],[-84.19224192241921,55.29470833255874],[-84.1310413104131,55.27951113712979],[-84.09864098640986,55.27613398259001],[-84.08064080640806,55.277822559859914],[-83.95823958239582,55.32172556887684],[-83.92943929439294,55.326791300686494],[-83.90423904239042,55.32172556887684],[-83.8610386103861,55.304839796178044],[-83.76743767437674,55.28119971439966],[-83.73143731437314,55.25924820989118],[-83.72423724237242,55.24405101446226],[-83.73143731437314,55.23223097357308],[-83.7350373503735,55.22378808722365],[-83.7170371703717,55.22209950995378],[-83.70983709837098,55.225476664493556],[-83.70263702637025,55.24405101446226],[-83.6990369903699,55.24911674627191],[-83.68463684636846,55.24911674627191],[-83.67383673836738,55.242362437192384],[-83.6630366303663,55.23560812811283],[-83.65223652236521,55.228853819033304],[-83.63783637836379,55.228853819033304],[-83.62343623436234,55.23223097357308],[-83.61263612636127,55.23223097357308],[-83.59823598235982,55.225476664493556],[-83.59463594635946,55.21703377814413],[-83.5910359103591,55.206902314524825],[-83.58383583835838,55.198459428175426],[-83.5730357303573,55.19508227363565],[-83.56583565835658,55.190016541826],[-83.5730357303573,55.1815736554766],[-83.58743587435875,55.16806503731752],[-83.58743587435875,55.15624499642834],[-83.58383583835838,55.14780211007894],[-83.5730357303573,55.14104780099942],[-83.56223562235623,55.13260491464999],[-83.5550355503555,55.139359223729514],[-83.5730357303573,55.15455641915847],[-83.56943569435694,55.166376460047644],[-83.55863558635586,55.17650792366695],[-83.55863558635586,55.184950810016346],[-83.57663576635765,55.20521373725495],[-83.58023580235802,55.21534520087425],[-83.58383583835838,55.23223097357308],[-83.59463594635946,55.242362437192384],[-83.61623616236162,55.24573959173213],[-83.65943659436594,55.24911674627191],[-83.67383673836738,55.25418247808156],[-83.68823688236883,55.260936787161086],[-83.71343713437135,55.27613398259001],[-83.68823688236883,55.28457686893944],[-83.57663576635765,55.26769109624061],[-83.5010350103501,55.242362437192384],[-83.4830348303483,55.23898528265261],[-83.43983439834398,55.242362437192384],[-83.42543425434253,55.24067385992248],[-83.40023400234001,55.23223097357308],[-83.28143281432814,55.22209950995378],[-83.23823238232382,55.22378808722365],[-83.22743227432274,55.22209950995378],[-83.2130321303213,55.21703377814413],[-83.1950319503195,55.20352515998508],[-83.18423184231843,55.201836582715174],[-83.1590315903159,55.20352515998508],[-83.09063090630906,55.228853819033304],[-83.04023040230402,55.23898528265261],[-82.97542975429754,55.23898528265261],[-82.92142921429215,55.220410932683905],[-82.89622896228963,55.17481934639707],[-82.90342903429034,55.16806503731752],[-82.91062910629105,55.16468788277777],[-82.92142921429215,55.15624499642834],[-82.9250292502925,55.14273637826929],[-82.92862928629286,55.13767064645964],[-82.95022950229502,55.11234198741141],[-82.92862928629286,55.11740771922106],[-82.89622896228963,55.149490687348816],[-82.87822878228782,55.16131072823799],[-82.86382863828638,55.15962215096812],[-82.83142831428314,55.149490687348816],[-82.81342813428134,55.14611353280907],[-82.7630276302763,55.144424955539165],[-82.7450274502745,55.14611353280907],[-82.6730267302673,55.171442191857295],[-82.64422644226443,55.17481934639707],[-82.6190261902619,55.16806503731752],[-82.5650256502565,55.14780211007894],[-82.53982539825398,55.14611353280907],[-82.54342543425435,55.15117926461869],[-82.5470254702547,55.162999305507896],[-82.5470254702547,55.16806503731752],[-82.5290252902529,55.16806503731752],[-82.51462514625146,55.15962215096812],[-82.50382503825038,55.15117926461869],[-82.4930249302493,55.14611353280907],[-82.47142471424714,55.14611353280907],[-82.4570245702457,55.14104780099942],[-82.44622446224461,55.13429349191989],[-82.43542435424354,55.122473451030686],[-82.42822428224282,55.11909629649094],[-82.41742417424175,55.11571914195116],[-82.41022410224102,55.11234198741141],[-82.41022410224102,55.10727625560176],[-82.41382413824138,55.10221052379211],[-82.41382413824138,55.09883336925233],[-82.41022410224102,55.09207906017281],[-82.39582395823957,55.08363617382341],[-82.35262352623526,55.08025901928363],[-82.33462334623346,55.078570442013756],[-82.32022320223201,55.07181613293423],[-82.32382323823238,55.081947596553505],[-82.34182341823418,55.10558767833186],[-82.3130231302313,55.11909629649094],[-82.31662316623166,55.13260491464999],[-82.33822338223382,55.149490687348816],[-82.35622356223561,55.16806503731752],[-82.33102331023309,55.162999305507896],[-82.29862298622986,55.13260491464999],[-82.25182251822518,55.11740771922106],[-82.24822248222482,55.09883336925233],[-82.25542255422553,55.078570442013756],[-82.2770227702277,55.0447988966161],[-82.28422284222842,55.02791312391727],[-82.2770227702277,55.011027351218445],[-82.25542255422553,54.98232153763044],[-82.25542255422553,54.975567228550915],[-82.2590225902259,54.96881291947136],[-82.2590225902259,54.956992878582184],[-82.26262262622626,54.95530430131231],[-82.26622266222662,54.95192714677253],[-82.27342273422734,54.95023856950266],[-82.27342273422734,54.94517283769301],[-82.27342273422734,54.93841852861348],[-82.26982269822697,54.93335279680383],[-82.26622266222662,54.92828706499418],[-82.25542255422553,54.89282694232665],[-82.25182251822518,54.886072633247124],[-82.24462244622445,54.88269547870735],[-82.21942219422193,54.88100690143747],[-82.20862208622086,54.87594116962782],[-82.19782197821978,54.855678242389246],[-82.20142201422014,54.83372673788077],[-82.2590225902259,54.71552632898897],[-82.31662316623166,54.5770629928586],[-82.37782377823778,54.47912551120538],[-82.39582395823957,54.426779615839024],[-82.41382413824138,54.399762379520894],[-82.41742417424175,54.38963091590162],[-82.4210242102421,54.38456518409197],[-82.4390243902439,54.37105656593289],[-82.44622446224461,54.36599083412324],[-82.4390243902439,54.337285020535234],[-82.44262442624427,54.33221928872558],[-82.42822428224282,54.32715355691596],[-82.42822428224282,54.31702209329666],[-82.43182431824317,54.29675916605805],[-82.43182431824317,54.22752749799287],[-82.42822428224282,54.21233030256391],[-82.4210242102421,54.19882168440486],[-82.41022410224102,54.187001643515686],[-82.37062370623705,54.14985294357825],[-82.3670236702367,54.138032902689076],[-82.38142381423813,54.124524284530025],[-82.37062370623705,54.119458552720374],[-82.35982359823598,54.12114712999025],[-82.3490234902349,54.124524284530025],[-82.33462334623346,54.124524284530025],[-82.32382323823238,54.12283570726015],[-82.3130231302313,54.1177699754505],[-82.25542255422553,54.07893269824319],[-82.2410224102241,54.06542408008414],[-82.17622176221762,53.91851785760434],[-82.16182161821618,53.89994350763561],[-82.15462154621545,53.888123466746435],[-82.14382143821437,53.83577757138008],[-82.1330213302133,53.8239575304909],[-82.12582125821258,53.812137489601724],[-82.12942129421293,53.785120253283594],[-82.14382143821437,53.74459439880641],[-82.1510215102151,53.73108578064736],[-82.1870218702187,53.68042846255088],[-82.20142201422014,53.670296998931576],[-82.20862208622086,53.6483454944231],[-82.21222212222122,53.62301683537487],[-82.21942219422193,53.60444248540614],[-82.20502205022049,53.589245289977214],[-82.20502205022049,53.57404809454826],[-82.20862208622086,53.55885089911931],[-82.21222212222122,53.54365370369038],[-82.20862208622086,53.526767930991554],[-82.20142201422014,53.50819358102285],[-82.19062190621906,53.491307808324024],[-82.16182161821618,53.45415910838659],[-82.14742147421474,53.42714187206846],[-82.1150211502115,53.308941463176694],[-82.1150211502115,53.28867853593809],[-82.11862118621185,53.27685849504891],[-82.14022140221402,53.25828414508021],[-82.1870218702187,53.23126690876208],[-82.20142201422014,53.2278897542223],[-82.21942219422193,53.22620117695243],[-82.23742237422374,53.22113544514278],[-82.25182251822518,53.21269255879338],[-82.24462244622445,53.2008725179042],[-82.2770227702277,53.14177231345829],[-82.29142291422914,53.10968934533051],[-82.30222302223022,53.03201479091592],[-82.29862298622986,53.018506172756844],[-82.28782287822878,53.00668613186767],[-82.28422284222842,52.99148893643874],[-82.28782287822878,52.97798031827966],[-82.30222302223022,52.96784885466039],[-82.27342273422734,52.957717391041086],[-82.23742237422374,52.925634422913305],[-82.19782197821978,52.917191536563905],[-82.1870218702187,52.91043722748435],[-82.17622176221762,52.903682918404826],[-82.1690216902169,52.898617186595175],[-82.12582125821258,52.89186287751565],[-82.10782107821078,52.885108568436124],[-82.0430204302043,52.84289413668907],[-81.9890198901989,52.79899112767211],[-81.97821978219781,52.78210535497328],[-81.98541985419854,52.7685967368142],[-81.96021960219602,52.74833380957563],[-81.9170191701917,52.680790718780315],[-81.88461884618846,52.66559352335136],[-81.85221852218523,52.65715063700196],[-81.81621816218161,52.63351055522361],[-81.71181711817118,52.533884496300516],[-81.67941679416793,52.51024441452216],[-81.6470164701647,52.50180152817276],[-81.56421564215641,52.45620994188593],[-81.5570155701557,52.444389900996725],[-81.56061560615606,52.430881282837674],[-81.5750157501575,52.41230693286897],[-81.56781567815678,52.395421160170145],[-81.55341553415533,52.35320672842306],[-81.54261542615426,52.34476384207366],[-81.53181531815318,52.33969811026401],[-81.48861488614885,52.31436945121578],[-81.47781477814777,52.30423798759648],[-81.58221582215822,52.31605802848566],[-81.60741607416074,52.31436945121578],[-81.72261722617226,52.27722075127835],[-81.7370173701737,52.275532174008475],[-81.74421744217442,52.25864640130965],[-81.7550175501755,52.25189209223012],[-81.76941769417694,52.25864640130965],[-81.7910179101791,52.2637121331193],[-81.81981819818198,52.25864640130965],[-81.84861848618486,52.248514937690345],[-81.87021870218702,52.235006319531294],[-81.84861848618486,52.23838347407104],[-81.83781837818378,52.243449205880694],[-81.8270182701827,52.248514937690345],[-81.81981819818198,52.240072051340945],[-81.85221852218523,52.21980912410234],[-81.8810188101881,52.19279188778421],[-81.85941859418594,52.19448046505411],[-81.83421834218342,52.199546196863736],[-81.8090180901809,52.20967766048304],[-81.7730177301773,52.23669489680117],[-81.74781747817478,52.24176062861082],[-81.51381513815137,52.240072051340945],[-81.46341463414633,52.21980912410234],[-81.43821438214381,52.191103310514336],[-81.39141391413914,52.128625951528676],[-81.35541355413554,52.10498586975032],[-81.2690126901269,52.09147725159124],[-81.2330123301233,52.07121432435267],[-81.15741157411574,52.04250851076466],[-81.12861128611286,52.04419708803454],[-81.11421114211142,52.052639974383965],[-81.09981099810997,52.05432855165384],[-81.07821078210782,52.039131356224885],[-81.05661056610566,52.02731131533571],[-81.00261002610026,52.01549127444653],[-80.97740977409774,52.00198265628748],[-80.97380973809737,51.99353976993805],[-80.95940959409593,51.96652253361992],[-80.93420934209341,51.93950529730182],[-80.93060930609306,51.92937383368252],[-80.91980919809198,51.909110906443914],[-80.89820898208981,51.89729086555474],[-80.84780847808477,51.883782247395686],[-80.84060840608406,51.883782247395686],[-80.82620826208262,51.88547082466556],[-80.8190081900819,51.883782247395686],[-80.81540815408154,51.88040509285591],[-80.81540815408154,51.87702793831616],[-80.81540815408154,51.873650783776384],[-80.81540815408154,51.870273629236635],[-80.77940779407794,51.85338785653781],[-80.76860768607686,51.846633547458254],[-80.73980739807398,51.824682042949775],[-80.70380703807038,51.802730538441324],[-80.68940689406894,51.79091049755215],[-80.6570065700657,51.75545037488459],[-80.64620646206461,51.74700748853519],[-80.63540635406353,51.745318911265315],[-80.62460624606246,51.740253179455664],[-80.60660606606066,51.723367406756836],[-80.59580595805957,51.71154736586766],[-80.59220592205922,51.704793056788105],[-80.59580595805957,51.69803874770858],[-80.59580595805957,51.6862187068194],[-80.5850058500585,51.66595577958083],[-80.55980559805597,51.62374134783374],[-80.5490054900549,51.59165837970599],[-80.52020520205201,51.53424675252995],[-80.50940509405093,51.522426711640776],[-80.49140491404914,51.50554093894195],[-80.47340473404734,51.4920323207829],[-80.45540455404554,51.486966588973246],[-80.4410044100441,51.476835125353944],[-80.43740437404374,51.454883620845465],[-80.43740437404374,51.41266918909841],[-80.42660426604266,51.3738319118911],[-80.43020430204302,51.356946139192274],[-80.44820448204482,51.35019183011275],[-80.46980469804697,51.348503252842875],[-80.5850058500585,51.31473170744522],[-80.62820628206282,51.29615735747652],[-80.66780667806678,51.27082869842826],[-80.70380703807038,51.24043430757038],[-80.7110071100711,51.23367999849086],[-80.72180721807217,51.21172849398238],[-80.7290072900729,51.20328560763295],[-80.73980739807398,51.19315414401365],[-80.74700747007469,51.188088412204024],[-80.7650076500765,51.17795694858472],[-80.84060840608406,51.15600544407624],[-80.86220862208621,51.144185403187066],[-80.87300873008729,51.134053939567764],[-80.89820898208981,51.10028239417011],[-80.90900909009089,51.09352808509058],[-80.96660966609666,51.07495373512188],[-80.98460984609845,51.06482227150258],[-80.99900999009989,51.0513136533435],[-81.01341013410133,51.036116457914574],[-80.97740977409774,51.03949361245432],[-80.95940959409593,51.04455934426397],[-80.94140941409414,51.05637938515315],[-80.93420934209341,51.0513136533435],[-80.93060930609306,51.04455934426397],[-80.93060930609306,51.036116457914574],[-80.93420934209341,51.03105072610492],[-80.95940959409593,51.014164953406095],[-80.95220952209522,51.00741064432657],[-80.91620916209162,51.02936214883505],[-80.87660876608766,51.09521666236046],[-80.84780847808477,51.12392247594846],[-80.82260822608225,51.13067678502799],[-80.76860768607686,51.134053939567764],[-80.74340743407434,51.14080824864729],[-80.7110071100711,51.15600544407624],[-80.70020700207002,51.15769402134612],[-80.68940689406894,51.161071175885894],[-80.68220682206822,51.169514062235294],[-80.6750067500675,51.17795694858472],[-80.67140671406713,51.18639983493412],[-80.60660606606066,51.2184828030619],[-80.59580595805957,51.23030284395108],[-80.5850058500585,51.24887719391978],[-80.5670056700567,51.26576296661861],[-80.52740527405274,51.28940304839696],[-80.45180451804518,51.31473170744522],[-80.40860408604085,51.34006036649345],[-80.38340383403833,51.34174894376335],[-80.25020250202502,51.31473170744522],[-80.2250022500225,51.30628882109579],[-80.19620196201961,51.299534512016265],[-80.1350013500135,51.30122308928614],[-80.10980109801098,51.29615735747652],[-80.09540095400953,51.28940304839696],[-80.08100081000809,51.272517275698135],[-80.06660066600665,51.267451543888484],[-80.0090000900009,51.26069723480896],[-79.98739987399874,51.25563150299931],[-79.92259922599226,51.206662762172726],[-79.87939879398793,51.18302268039437],[-79.78579785797858,51.147562557726815],[-79.74619746197462,51.12392247594846],[-79.70659706597066,51.06482227150258],[-79.69219692196921,51.054690807883276],[-79.67419674196742,51.049625076073625],[-79.56979569795698,50.98545913981809],[-79.51939519395194,50.943244708071006],[-79.42219422194222,50.85712726730699],[-79.41499414994149,50.84361864914794],[-79.40059400594005,50.81660141282981],[-79.39339393393934,50.804781371940635],[-79.35739357393574,50.78114129016228],[-79.35379353793537,50.77100982654298],[-79.35379353793537,50.755812631114054],[-79.35379353793537,50.74399259022485],[-79.34659346593466,50.733861126605575],[-79.33579335793358,50.72710681752602],[-79.33579335793358,50.76763267200323],[-79.33939339393393,50.791272753781584],[-79.35739357393574,50.801404217400886],[-79.36819368193682,50.81153568102016],[-79.40779407794078,50.87063588546607],[-79.44379443794438,50.90440743086373],[-79.46539465394653,50.91960462629265],[-79.47979479794797,50.92635893537221],[-79.49779497794978,50.93480182172161],[-79.51939519395194,50.965196212579485],[-79.53019530195301,50.97701625346866],[-79.54459544595446,50.99390202616749],[-79.67059670596706,51.05806796242305],[-79.70299702997029,51.090150930550806],[-79.72459724597246,51.12223389867859],[-79.74259742597425,51.15769402134612],[-79.74619746197462,51.19484272128355],[-79.73179731797318,51.23367999849086],[-79.69219692196921,51.28096016204756],[-79.67779677796777,51.313043130175345],[-79.68859688596886,51.34006036649345],[-79.69579695796958,51.35188040738262],[-79.69939699396994,51.36876618008145],[-79.69939699396994,51.38565195278028],[-79.69579695796958,51.39916057093936],[-79.68859688596886,51.39916057093936],[-79.64539645396454,51.419423498177935],[-79.62739627396273,51.424489229987586],[-79.60579605796057,51.44812931176594],[-79.59139591395913,51.45319504357559],[-79.53019530195301,51.46163792992502],[-79.51939519395194,51.46670366173467],[-79.51939519395194,51.48358943443347],[-79.53019530195301,51.508918093481725],[-79.54459544595446,51.535935329799855],[-79.5589955899559,51.55619825703843],[-79.51579515795157,51.55957541157821],[-79.4689946899469,51.579838338816785],[-79.34659346593466,51.66257862504105],[-79.32499324993249,51.6676443568507],[-79.27819278192781,51.642315697802445],[-79.25659256592566,51.6389385432627],[-79.24579245792458,51.63049565691327],[-79.26019260192602,51.60347842059517],[-79.28179281792818,51.571395452467385],[-79.28539285392854,51.55282110249868],[-79.27459274592745,51.530869597990204],[-79.26739267392674,51.52749244345043],[-79.18459184591846,51.52580386618055],[-79.17019170191702,51.52749244345043],[-79.15939159391594,51.53255817526008],[-79.14859148591485,51.539312484339604],[-79.14139141391414,51.54268963887938],[-79.1269912699127,51.54268963887938],[-79.1089910899109,51.530869597990204],[-79.09459094590946,51.51904955710103],[-79.08379083790838,51.50722951621185],[-79.02979029790298,51.48021227989372],[-79.01179011790117,51.46670366173467],[-79.00819008190082,51.45657219811537],[-79.00819008190082,51.43124353906711],[-79.00459004590046,51.419423498177935],[-78.99738997389973,51.40760345728876],[-78.97938979389794,51.389029107320056],[-78.97218972189721,51.37720906643088],[-78.95418954189542,51.31135455290544],[-78.93978939789397,51.29278020293674],[-78.93618936189361,51.28096016204756],[-78.93978939789397,51.272517275698135],[-78.96138961389613,51.25732008026921],[-78.9649896498965,51.24718861664991],[-78.96138961389613,51.231991421220954],[-78.95418954189542,51.2184828030619],[-78.91098910989109,51.18302268039437],[-78.90018900189001,51.17626837131482],[-78.84618846188461,51.16444833042564],[-78.8569885698857,51.17626837131482],[-78.87138871388713,51.19315414401365],[-78.88218882188822,51.206662762172726],[-78.91458914589145,51.2184828030619],[-78.91818918189182,51.23367999849086],[-78.91818918189182,51.250565771189684],[-78.91098910989109,51.28940304839696],[-78.90738907389074,51.29615735747652],[-78.90378903789038,51.30460024382592],[-78.88578885788857,51.31979743925487],[-78.86058860588605,51.34343752103322],[-78.84978849788497,51.35019183011275],[-78.82818828188282,51.35019183011275],[-78.8389883898839,51.3637004482718],[-78.87858878588786,51.3738319118911],[-78.88938889388893,51.38734053005018],[-78.88218882188822,51.40253772547911],[-78.86778867788678,51.41435776636828],[-78.84978849788497,51.42280065271771],[-78.83178831788318,51.432932116337014],[-78.81018810188101,51.459949352655116],[-78.79218792187922,51.47514654808407],[-78.75258752587526,51.486966588973246],[-78.74538745387453,51.486966588973246],[-78.69138691386914,51.486966588973246],[-78.7129871298713,51.50722951621185],[-78.78138781387814,51.503852361672074],[-78.81378813788137,51.513983825291376],[-78.82098820988209,51.53762390706973],[-78.82098820988209,51.56801829792761],[-78.80658806588066,51.59503553424574],[-78.79218792187922,51.61023272967469],[-78.8029880298803,51.61360988421444],[-78.82818828188282,51.61360988421444],[-78.84258842588426,51.61698703875422],[-78.84978849788497,51.62374134783374],[-78.86778867788678,51.647381429612096],[-78.87858878588786,51.65244716142175],[-78.90378903789038,51.65413573869162],[-78.9289892898929,51.660890047771176],[-78.94338943389434,51.67439866593023],[-78.93618936189361,51.69972732497848],[-78.9649896498965,51.71154736586766],[-78.97938979389794,51.718301674947185],[-78.99018990189902,51.726744561296584],[-79.00819008190082,51.753761797614715],[-79.0189901899019,51.76389326123402],[-79.04059040590406,51.76895899304367],[-79.02979029790298,51.785844765742496],[-79.01539015390154,51.79597622936177],[-78.99738997389973,51.80104196117142],[-78.97578975789757,51.802730538441324],[-78.96858968589686,51.80104196117142],[-78.94698946989469,51.79597622936177],[-78.93618936189361,51.79597622936177],[-78.92538925389253,51.79766480663167],[-78.90018900189001,51.807796270250975],[-78.87498874988749,51.8145505793305],[-78.8569885698857,51.82637062021968],[-78.8389883898839,51.8415678156486],[-78.83178831788318,51.856765011077556],[-78.8389883898839,51.86858505196673],[-78.86778867788678,51.89053655647521],[-78.87498874988749,51.909110906443914],[-78.8929889298893,51.93275098822227],[-78.8929889298893,51.946259606381346],[-78.87138871388713,51.95301391546087],[-78.82818828188282,51.95807964727052],[-78.74538745387453,51.976653997239225],[-78.7309873098731,51.98678546085853],[-78.72018720187201,52.01380269717666],[-78.70938709387093,52.01549127444653],[-78.70218702187022,52.01380269717666],[-78.69498694986949,52.01886842898631],[-78.69498694986949,52.02899989260558],[-78.69858698586985,52.039131356224885],[-78.70218702187022,52.04757424257431],[-78.70938709387093,52.05601712892371],[-78.66978669786697,52.05432855165384],[-78.64818648186481,52.05939428346349],[-78.63378633786337,52.06952574708279],[-78.6409864098641,52.07290290162254],[-78.64818648186481,52.07965721070207],[-78.65538655386554,52.08303436524184],[-78.63378633786337,52.093165828861146],[-78.61218612186121,52.0982315606708],[-78.59058590585906,52.1066744470202],[-78.57258572585725,52.1252487969889],[-78.5689856898569,52.13369168333833],[-78.56178561785617,52.155643187846806],[-78.55818558185581,52.16577465146608],[-78.5509855098551,52.17421753781551],[-78.53658536585365,52.18941473324446],[-78.53298532985329,52.199546196863736],[-78.55458554585546,52.23669489680117],[-78.54738547385473,52.24682636042047],[-78.51858518585186,52.25526924676987],[-78.48978489784898,52.25695782403977],[-78.40698406984069,52.240072051340945],[-78.40698406984069,52.248514937690345],[-78.4249842498425,52.25526924676987],[-78.43578435784357,52.26540071038917],[-78.45018450184502,52.2721550194687],[-78.46818468184682,52.275532174008475],[-78.51138511385113,52.27722075127835],[-78.53658536585365,52.275532174008475],[-78.55458554585546,52.26877786492895],[-78.55818558185581,52.289040792167526],[-78.54738547385473,52.30423798759648],[-78.51138511385113,52.32956664664471],[-78.50058500585006,52.35658388296284],[-78.50778507785077,52.36671534658214],[-78.52218522185221,52.37684681020144],[-78.53298532985329,52.395421160170145],[-78.52578525785258,52.400486891979796],[-78.5149851498515,52.4106183555991],[-78.51138511385113,52.42074981921837],[-78.51858518585186,52.42581555102802],[-78.53658536585365,52.430881282837674],[-78.54378543785438,52.4393241691871],[-78.54018540185402,52.44945563280638],[-78.5149851498515,52.457898519155805],[-78.51138511385113,52.46802998277511],[-78.5149851498515,52.47647286912451],[-78.52218522185221,52.48153860093416],[-78.56538565385654,52.48829291001368],[-78.55818558185581,52.49673579636311],[-78.5509855098551,52.50180152817276],[-78.54378543785438,52.50517868271251],[-78.54378543785438,52.515310146331814],[-78.5509855098551,52.525441609951116],[-78.56178561785617,52.533884496300516],[-78.57618576185762,52.53895022811017],[-78.5869858698587,52.542327382649944],[-78.63378633786337,52.53219591903064],[-78.65178651786518,52.53219591903064],[-78.64818648186481,52.54908169172947],[-78.66618666186662,52.555836000808995],[-78.68418684186841,52.55245884626922],[-78.69858698586985,52.54570453718969],[-78.71658716587166,52.542327382649944],[-78.71658716587166,52.547393114459595],[-78.7129871298713,52.55752457807887],[-78.70938709387093,52.56259030988852],[-78.72378723787237,52.56259030988852],[-78.74898748987489,52.569344618968046],[-78.76338763387633,52.57103319623795],[-78.76338763387633,52.577787505317474],[-78.74538745387453,52.577787505317474],[-78.70938709387093,52.5946732780163],[-78.69138691386914,52.59805043255605],[-78.69858698586985,52.604804741635604],[-78.70938709387093,52.61155905071513],[-78.72018720187201,52.61493620525488],[-78.7309873098731,52.618313359794655],[-78.7309873098731,52.62506766887418],[-78.70938709387093,52.62506766887418],[-78.72018720187201,52.63857628703326],[-78.72378723787237,52.65208490519231],[-78.74178741787418,52.64701917338266],[-78.75618756187562,52.64701917338266],[-78.77058770587705,52.65039632792244],[-78.78498784987849,52.658839214271836],[-78.75978759787597,52.68416787332009],[-78.76338763387633,52.69598791420927],[-78.78498784987849,52.70105364601892],[-78.82098820988209,52.70105364601892],[-78.82098820988209,52.70611937782854],[-78.79578795787957,52.707807955098446],[-78.77778777787778,52.71456226417797],[-78.77058770587705,52.72469372779727],[-78.78498784987849,52.7415795004961],[-78.8029880298803,52.74495665503585],[-78.83178831788318,52.7500223868455],[-78.84978849788497,52.756776695925026],[-78.84618846188461,52.77535104589376],[-78.83178831788318,52.78210535497328],[-78.75618756187562,52.78210535497328],[-78.73458734587345,52.78885966405281],[-78.72738727387274,52.797302550402236],[-78.72738727387274,52.81081116856129],[-78.7309873098731,52.83107409579986],[-78.74898748987489,52.82094263218059],[-78.75978759787597,52.81756547764081],[-78.77058770587705,52.81756547764081],[-78.78138781387814,52.81925405491069],[-78.77418774187741,52.82600836399024],[-78.69138691386914,52.885108568436124],[-78.70578705787058,52.885108568436124],[-78.78138781387814,52.87159995027707],[-78.79578795787957,52.87159995027707],[-78.82818828188282,52.87497710481682],[-78.84258842588426,52.8783542593566],[-78.8569885698857,52.88341999116625],[-78.86778867788678,52.89186287751565],[-78.88218882188822,52.912125804754254],[-78.88938889388893,52.922257268373556],[-78.90018900189001,52.92732300018318],[-78.87498874988749,52.939143041072356],[-78.86778867788678,52.94927450469166],[-78.86778867788678,52.96784885466039],[-78.85338853388534,52.961094545580835],[-78.82098820988209,52.96784885466039],[-78.80658806588066,52.95940596831096],[-78.79938799387993,52.96447170012061],[-78.79218792187922,52.96953743193026],[-78.78858788587885,52.974603163739914],[-78.78498784987849,52.98135747281944],[-78.81378813788137,52.98135747281944],[-78.82458824588245,52.983046050089314],[-78.83538835388353,52.99148893643874],[-78.84258842588426,53.001620400058016],[-78.84978849788497,53.01175186367732],[-78.8569885698857,53.01681759548697],[-78.87498874988749,53.015129018217095],[-78.87138871388713,53.01175186367732],[-78.87138871388713,53.010063286407444],[-78.86778867788678,53.00837470913757],[-78.8929889298893,53.001620400058016],[-78.92538925389253,53.00499755459779],[-78.96138961389613,53.015129018217095],[-78.9829898298983,53.028637636376146],[-78.9649896498965,53.03201479091592],[-78.94698946989469,53.03876909999545],[-78.92538925389253,53.04890056361475],[-78.91458914589145,53.064097759043676],[-78.9289892898929,53.072540645393104],[-78.94338943389434,53.072540645393104],[-78.96138961389613,53.07085206812323],[-78.97578975789757,53.07085206812323],[-78.91458914589145,53.16541239523664],[-78.93978939789397,53.1806095906656],[-78.93618936189361,53.18736389974512],[-78.92178921789217,53.1907410542849],[-78.90018900189001,53.2008725179042],[-78.90738907389074,53.2093154042536],[-78.91098910989109,53.21438113606325],[-78.91818918189182,53.217758290603],[-78.9289892898929,53.22113544514278],[-78.91818918189182,53.224512599682555],[-78.8929889298893,53.229578331492206],[-78.88938889388893,53.23126690876208],[-78.88938889388893,53.24308694965126],[-78.90018900189001,53.24815268146091],[-78.91098910989109,53.24984125873078],[-78.92178921789217,53.24815268146091],[-78.90378903789038,53.259972722350085],[-78.89658896588965,53.26166129961996],[-78.89658896588965,53.268415608699485],[-78.90738907389074,53.27010418596939],[-78.92178921789217,53.273481340509136],[-78.93258932589326,53.27685849504891],[-78.94338943389434,53.28361280412844],[-78.95058950589505,53.292055690477866],[-78.95418954189542,53.295432845017615],[-78.93978939789397,53.30556430863692],[-78.93618936189361,53.317384349526094],[-78.94698946989469,53.327515813145396],[-78.95778957789578,53.335958699494796],[-78.9649896498965,53.344401585844224],[-78.96138961389613,53.357910204003275],[-78.94698946989469,53.36973024489245],[-78.94338943389434,53.38155028578163],[-78.94338943389434,53.39168174940093],[-78.95058950589505,53.40181321302023],[-78.95778957789578,53.41025609936963],[-78.96858968589686,53.411944676639536],[-78.97218972189721,53.41869898571906],[-78.98658986589865,53.44571622203719],[-78.99018990189902,53.45415910838659],[-79.00459004590046,53.455847685656465],[-79.0189901899019,53.45415910838659],[-79.03339033390334,53.44909337657694],[-79.04419044190442,53.44402764476729],[-79.0549905499055,53.43896191295764],[-79.06219062190621,53.442339067497414],[-79.06579065790658,53.447404799307066],[-79.05139051390513,53.45415910838659],[-79.05139051390513,53.46091341746612],[-79.07659076590765,53.469356303815545],[-79.08739087390873,53.48117634470472],[-79.09819098190981,53.4929963855939],[-79.11619116191162,53.50819358102285],[-79.09459094590946,53.5217021991819],[-79.06939069390694,53.5301450855313],[-79.04059040590406,53.53521081734095],[-79.02979029790298,53.53521081734095],[-79.03699036990369,53.53352224007108],[-79.04779047790477,53.5301450855313],[-79.04059040590406,53.5217021991819],[-79.04779047790477,53.51663646737225],[-79.02979029790298,53.49975069467342],[-79.00459004590046,53.49806211740355],[-78.97938979389794,53.504816426483075],[-78.95778957789578,53.51663646737225],[-78.96858968589686,53.5217021991819],[-78.99378993789938,53.526767930991554],[-79.0009900099001,53.53352224007108],[-79.01539015390154,53.54871943550003],[-79.02259022590225,53.553785167309684],[-79.03339033390334,53.55716232184943],[-79.0189901899019,53.57067094000851],[-79.0009900099001,53.567293785468735],[-78.97938979389794,53.55547374457956],[-78.96138961389613,53.55040801276991],[-78.93258932589326,53.55547374457956],[-78.92178921789217,53.567293785468735],[-78.93258932589326,53.57911382635791],[-78.95778957789578,53.58417955816756],[-78.95778957789578,53.59093386724709],[-78.95418954189542,53.599376753596516],[-78.9649896498965,53.60950821721579],[-78.9829898298983,53.616262526295344],[-78.99738997389973,53.61795110356522],[-79.02619026190261,53.60444248540614],[-79.03699036990369,53.602753908136265],[-79.0549905499055,53.60106533086639],[-79.06579065790658,53.59768817632661],[-79.06219062190621,53.60950821721579],[-79.0549905499055,53.61963968083509],[-79.04779047790477,53.629771144454395],[-79.04059040590406,53.6399026080737],[-79.02259022590225,53.63145972172427],[-79.01179011790117,53.638214030803795],[-79.00819008190082,53.6483454944231],[-79.00819008190082,53.65341122623275],[-79.02259022590225,53.65341122623275],[-79.03339033390334,53.65509980350262],[-79.04059040590406,53.660165535312274],[-79.04779047790477,53.67198557620145],[-79.03699036990369,53.67198557620145],[-79.02259022590225,53.67198557620145],[-79.01179011790117,53.6770513080111],[-79.01179011790117,53.687182771630404],[-79.0189901899019,53.69393708070993],[-79.03339033390334,53.69562565797983],[-79.05859058590586,53.69393708070993],[-79.08379083790838,53.697314235249706],[-79.13059130591306,53.705757121599106],[-79.15579155791558,53.70744569886901],[-79.1449914499145,53.719265739758185],[-79.1269912699127,53.722642894297934],[-79.05859058590586,53.719265739758185],[-79.04779047790477,53.72602004883771],[-79.04059040590406,53.741217244266664],[-79.06219062190621,53.74459439880641],[-79.06219062190621,53.75641443969559],[-79.04779047790477,53.790185985093245],[-79.0549905499055,53.79187456236312],[-79.06219062190621,53.79356313963302],[-79.07299072990729,53.803694603252325],[-79.0189901899019,53.8239575304909],[-79.03339033390334,53.83071183957043],[-79.04419044190442,53.83071183957043],[-79.05139051390513,53.83071183957043],[-79.05139051390513,53.83746614864995],[-79.01179011790117,53.84590903499938],[-78.97578975789757,53.83577757138008],[-78.93978939789397,53.82226895322103],[-78.90018900189001,53.817203221411376],[-78.9289892898929,53.844220457729506],[-78.97218972189721,53.85435192134878],[-79.06579065790658,53.85772907588856],[-79.05859058590586,53.879680580397036],[-79.06579065790658,53.89487777582599],[-79.08379083790838,53.901632084905515],[-79.1089910899109,53.906697816715166],[-79.08019080190802,53.91682928033444],[-79.05139051390513,53.91682928033444],[-79.02259022590225,53.91345212579469],[-78.99018990189902,53.91345212579469],[-79.02259022590225,53.93540363030317],[-79.09819098190981,53.94891224846222],[-79.13419134191342,53.9607322893514],[-79.07299072990729,53.94891224846222],[-79.04059040590406,53.94722367119235],[-79.02619026190261,53.9607322893514],[-79.04419044190442,53.9607322893514],[-79.07659076590765,53.96748659843092],[-79.04059040590406,53.96748659843092],[-79.04779047790477,53.9793066393201],[-79.06579065790658,53.98268379385988],[-79.10179101791017,53.98099521659],[-79.0909909099091,53.986060948399654],[-79.08019080190802,53.9894381029394],[-79.06939069390694,53.9894381029394],[-79.05859058590586,53.9894381029394],[-79.06219062190621,53.99281525747918],[-79.06579065790658,53.99619241201893],[-79.06939069390694,53.999569566558705],[-79.07299072990729,54.00294672109848],[-79.04779047790477,54.00970103017801],[-78.9649896498965,54.00294672109848],[-78.97938979389794,54.01983249379731],[-79.02259022590225,54.03334111195636],[-79.03339033390334,54.04684973011541],[-79.04419044190442,54.04347257557566],[-79.1089910899109,54.06373550281424],[-79.10179101791017,54.06542408008414],[-79.10179101791017,54.067112657354016],[-79.09459094590946,54.070489811893765],[-79.13779137791377,54.08230985278297],[-79.2709927099271,54.083998430052844],[-79.29259292592926,54.09075273913237],[-79.26739267392674,54.09919562548177],[-79.17019170191702,54.09075273913237],[-79.17379173791737,54.111015666370974],[-79.15579155791558,54.11270424364085],[-79.13059130591306,54.1076385118312],[-79.1089910899109,54.11270424364085],[-79.12339123391233,54.119458552720374],[-79.1269912699127,54.1279014390698],[-79.12339123391233,54.132967170879425],[-79.1089910899109,54.124524284530025],[-79.10539105391054,54.12959001633968],[-79.10179101791017,54.13127859360955],[-79.10179101791017,54.13465574814933],[-79.10179101791017,54.13972147995898],[-79.1089910899109,54.14309863449873],[-79.11979119791198,54.14478721176863],[-79.13059130591306,54.146475789038504],[-79.14139141391414,54.146475789038504],[-79.13059130591306,54.154918675387904],[-79.11619116191162,54.15829582992768],[-79.08379083790838,54.159984407197555],[-79.07299072990729,54.16167298446743],[-79.05859058590586,54.17518160262651],[-79.04779047790477,54.18024733443616],[-79.06939069390694,54.187001643515686],[-79.10179101791017,54.187001643515686],[-79.16299162991629,54.18024733443616],[-79.21339213392133,54.16336156173733],[-79.23859238592385,54.16167298446743],[-79.23859238592385,54.18024733443616],[-79.26019260192602,54.17518160262651],[-79.27459274592745,54.173493025356635],[-79.28539285392854,54.173493025356635],[-79.29259292592926,54.18869022078556],[-79.32139321393214,54.19713310713499],[-79.35739357393574,54.19882168440486],[-79.38259382593826,54.19375595259521],[-79.37179371793718,54.20557599348439],[-79.35739357393574,54.21570745710369],[-79.32859328593285,54.22752749799287],[-79.32859328593285,54.23428180707239],[-79.33939339393393,54.24272469342182],[-79.33579335793358,54.249479002501346],[-79.32139321393214,54.244413270691695],[-79.3069930699307,54.24103611615192],[-79.29259292592926,54.244413270691695],[-79.28539285392854,54.25623331158087],[-79.29259292592926,54.26129904339052],[-79.40779407794078,54.271430507009825],[-79.44379443794438,54.283250547899],[-79.42939429394293,54.293382011518304],[-79.42579425794257,54.29675916605805],[-79.41499414994149,54.29675916605805],[-79.42579425794257,54.306890629677355],[-79.43659436594366,54.31026778421713],[-79.46539465394653,54.31026778421713],[-79.45819458194582,54.33053071145571],[-79.46179461794618,54.35417079323406],[-79.47979479794797,54.369367988663015],[-79.5049950499505,54.37274514320279],[-79.50139501395013,54.37612229774254],[-79.50139501395013,54.37949945228232],[-79.49779497794978,54.382876606822066],[-79.49059490594905,54.38625376136184],[-79.49419494194942,54.38963091590162],[-79.49779497794978,54.4014509567908],[-79.49779497794978,54.40651668860045],[-79.4869948699487,54.40651668860045],[-79.47259472594726,54.40651668860045],[-79.45099450994509,54.41327099767997],[-79.45099450994509,54.4200253067595],[-79.49059490594905,54.426779615839024],[-79.5049950499505,54.426779615839024],[-79.49419494194942,54.4487311203475],[-79.49059490594905,54.462239738506554],[-79.49419494194942,54.46899404758611],[-79.5049950499505,54.472371202125856],[-79.51219512195122,54.48419124301503],[-79.51939519395194,54.494322706634335],[-79.51939519395194,54.502765592983735],[-79.53019530195301,54.50107701571386],[-79.53739537395374,54.502765592983735],[-79.54459544595446,54.50445417025364],[-79.55179551795517,54.50951990206329],[-79.53019530195301,54.516274211142814],[-79.54099540995409,54.53484856111152],[-79.56979569795698,54.551734333810344],[-79.60219602196021,54.556800065619996],[-79.60219602196021,54.565242951969395],[-79.55179551795517,54.57030868377905],[-79.53019530195301,54.5770629928586],[-79.52659526595265,54.59057161101765],[-79.53739537395374,54.6040802291767],[-79.5589955899559,54.60914596098635],[-79.58059580595805,54.605768806446605],[-79.60219602196021,54.59732592009718],[-79.5949959499595,54.5939487655574],[-79.59139591395913,54.592260188287526],[-79.58779587795878,54.59057161101765],[-79.58059580595805,54.59057161101765],[-79.60579605796057,54.58044014739835],[-79.62019620196202,54.5770629928586],[-79.63459634596346,54.5770629928586],[-79.62379623796238,54.5939487655574],[-79.60579605796057,54.60745738371648],[-79.59139591395913,54.62096600187553],[-79.5949959499595,54.63278604276471],[-79.69219692196921,54.63278604276471],[-79.65259652596525,54.64291750638401],[-79.6489964899649,54.649671815463535],[-79.65259652596525,54.66149185635271],[-79.65979659796598,54.66993474270214],[-79.67059670596706,54.67331189724189],[-79.68139681396814,54.67331189724189],[-79.67419674196742,54.65811470181296],[-79.69939699396994,54.65304897000331],[-79.76419764197641,54.65304897000331],[-79.76419764197641,54.65980327908284],[-79.74259742597425,54.66149185635271],[-79.67779677796777,54.69357482448049],[-79.66339663396634,54.69695197902027],[-79.65259652596525,54.698640556290144],[-79.64179641796417,54.70032913356002],[-79.64179641796417,54.71552632898897],[-79.64539645396454,54.725657792608274],[-79.64179641796417,54.73747783349745],[-79.62739627396273,54.7425435653071],[-79.63819638196382,54.73578925622755],[-79.64179641796417,54.72903494714802],[-79.63459634596346,54.72059206079862],[-79.62739627396273,54.71552632898897],[-79.61659616596165,54.7138377517191],[-79.5949959499595,54.725657792608274],[-79.57339573395734,54.730723524417925],[-79.54819548195482,54.739166410767325],[-79.51579515795157,54.744232142576976],[-79.5049950499505,54.74760929711675],[-79.49779497794978,54.752675028926376],[-79.48339483394834,54.75605218346615],[-79.41139411394114,54.76280649254568],[-79.39339393393934,54.77293795616498],[-79.38259382593826,54.774626533434855],[-79.33579335793358,54.77631511070476],[-79.32499324993249,54.779692265244506],[-79.29259292592926,54.79826661521321],[-78.96858968589686,54.85230108784947],[-78.95058950589505,54.85736681965912],[-78.89658896588965,54.899581251406175],[-78.87498874988749,54.9080241377556],[-78.77418774187741,54.926598487724306],[-78.72738727387274,54.94348426042313],[-78.6769867698677,54.95192714677253],[-78.63018630186302,54.96543576493161],[-78.6049860498605,54.96881291947136],[-78.57978579785798,54.975567228550915],[-78.52938529385294,55.00427304213892],[-78.50418504185042,55.00258446486902],[-78.45018450184502,55.02284739210762],[-78.39258392583926,55.02791312391727],[-78.37818378183782,55.032978855726924],[-78.36378363783638,55.041421742076324],[-78.31338313383134,55.05830751477515],[-78.27018270182701,55.081947596553505],[-78.25938259382593,55.08532475109328],[-78.23778237782378,55.09207906017281],[-78.15498154981549,55.139359223729514],[-78.0469804698047,55.1815736554766],[-78.05058050580506,55.1815736554766],[-78.00738007380073,55.18832796455612],[-77.87417874178742,55.24911674627191],[-77.80217802178021,55.264313941700834],[-77.78057780577805,55.27275682805026],[-77.6761767617676,55.367317155163704],[-77.65817658176582,55.37238288697333],[-77.63657636576366,55.37744861878298],[-77.23697236972369,55.59189793205809],[-77.16497164971649,55.64255525015457],[-77.13977139771397,55.657752445583526],[-77.11457114571145,55.674638218282354],[-77.0929709297093,55.701655454600456],[-77.08937089370893,55.71347549548963],[-77.09657096570966,55.71347549548963],[-77.10737107371074,55.70503260914023],[-77.13977139771397,55.69827830006071],[-77.16857168571686,55.68308110463175],[-77.19017190171901,55.68139252736188],[-77.16497164971649,55.70840976367998],[-77.04617046170462,55.782707163554846],[-76.90216902169021,55.90090757244661],[-76.8409684096841,55.932990540574394],[-76.82296822968229,55.9515648905431],[-76.81576815768157,55.960007776892525],[-76.81216812168121,55.97689354959135],[-76.80856808568085,55.98533643594075],[-76.79776797767977,55.99377932229018],[-76.78336783367833,55.99884505409983],[-76.75096750967509,56.00222220863958],[-76.71136711367113,56.01910798133841],[-76.68256682566825,56.04274806311676],[-76.65736657366573,56.07314245397467],[-76.62136621366213,56.13899696750008],[-76.61776617766178,56.16601420381821],[-76.61416614166141,56.17614566743751],[-76.5889658896589,56.23862302642317],[-76.57816578165782,56.255508799122],[-76.54576545765457,56.294346076329305],[-76.53496534965349,56.31798615810766],[-76.53136531365313,56.343314817155886],[-76.53136531365313,56.370332053474016],[-76.52776527765278,56.39059498071259],[-76.5169651696517,56.414235062490974],[-76.51336513365133,56.43787514426933],[-76.52416524165241,56.46151522604768],[-76.5169651696517,56.46995811239708],[-76.52416524165241,56.48177815328626],[-76.52776527765278,56.49359819417546],[-76.52776527765278,56.503729657794736],[-76.52416524165241,56.51048396687429],[-76.52776527765278,56.53243547138274],[-76.52776527765278,56.5949128303684],[-76.50616506165062,56.71142466199032],[-76.50976509765097,56.72999901195902],[-76.50256502565026,56.76377055735668],[-76.50256502565026,56.784033484595284],[-76.50976509765097,56.797542102754335],[-76.50976509765097,56.81442787545316],[-76.52056520565205,56.854953729930344],[-76.52776527765278,56.89716816167743],[-76.54216542165422,56.93938259342448],[-76.54576545765457,56.979908447901664],[-76.55656556565565,57.015368570569194],[-76.55656556565565,57.03056576599815],[-76.5529655296553,57.05251727050663],[-76.53136531365313,57.08797739317416],[-76.53136531365313,57.10317458860311],[-76.53136531365313,57.11499462949229],[-76.53856538565385,57.12512609311159],[-76.54936549365493,57.131880402191115],[-76.55656556565565,57.140323288540515],[-76.56376563765637,57.153831906699594],[-76.56736567365674,57.16396337031887],[-76.56376563765637,57.1926691839069],[-76.5889658896589,57.27203231559136],[-76.65736657366573,57.403741342642235],[-76.66456664566645,57.417249960801286],[-76.6789667896679,57.42231569261094],[-76.68616686166861,57.42738142442059],[-76.70056700567005,57.45439866073872],[-76.70776707767077,57.46284154708812],[-76.70056700567005,57.46284154708812],[-76.69696696966969,57.46284154708812],[-76.69696696966969,57.466218701627895],[-76.69696696966969,57.46959585616764],[-76.7149671496715,57.47297301070742],[-76.73656736567365,57.49999024702555],[-76.76536765367653,57.559090451471434],[-76.79776797767977,57.59792772867874],[-76.8049680496805,57.613124924107666],[-76.80856808568085,57.675602283093326],[-76.85896858968589,57.719505292110284],[-76.8949689496895,57.76340830112724],[-76.90576905769058,57.77016261020677],[-76.91296912969129,57.77691691928629],[-76.92736927369273,57.79042553744537],[-76.93816938169381,57.8056227328743],[-76.94176941769418,57.8157541964936],[-76.94896948969489,57.82757423738278],[-76.98136981369814,57.84614858735148],[-76.98136981369814,57.85290289643103],[-76.99576995769958,57.857968628240684],[-77.00657006570066,57.866411514590084],[-77.05337053370533,57.93057745084562],[-77.06777067770678,57.942397491734795],[-77.07137071370714,57.94915180081435],[-77.07497074970749,57.955906109893874],[-77.07857078570785,57.960971841703525],[-77.08937089370893,57.964348996243274],[-77.10017100171001,57.964348996243274],[-77.10737107371074,57.96603757351318],[-77.11097110971109,57.969414728052925],[-77.12177121771218,57.97616903713245],[-77.1289712897129,57.98461192348188],[-77.13977139771397,58.00656342799036],[-77.1469714697147,58.01669489160963],[-77.20097200972009,58.05553216881694],[-77.26577265772657,58.085926559674846],[-77.28377283772838,58.09099229148447],[-77.32337323373234,58.094369446024245],[-77.34137341373413,58.0994351778339],[-77.35577355773557,58.11125521872307],[-77.38817388173881,58.138272455041204],[-77.40257402574025,58.148403918660506],[-77.39537395373954,58.148403918660506],[-77.42057420574206,58.148403918660506],[-77.49257492574925,58.16866684589908],[-77.4709747097471,58.17542115497861],[-77.45297452974529,58.17710973224851],[-77.44577445774458,58.183864041328036],[-77.45657456574565,58.20243839129674],[-77.4709747097471,58.21256985491604],[-77.53217532175321,58.23114420488474],[-77.60057600576005,58.271670059361924],[-77.62217622176222,58.27842436844145],[-77.69777697776978,58.285178677521],[-77.71577715777157,58.29193298660053],[-77.76977769777697,58.31895022291866],[-77.95697956979569,58.35947607739584],[-78.0109801098011,58.38480473644407],[-78.03258032580325,58.388181890983844],[-78.01458014580146,58.4118219727622],[-78.01458014580146,58.423642013651374],[-78.02898028980289,58.428707745461026],[-78.04338043380433,58.432084900000774],[-78.06858068580685,58.450659249969505],[-78.07938079380793,58.455724981779156],[-78.11178111781118,58.45234782723938],[-78.12618126181262,58.45403640450925],[-78.13338133381333,58.46585644539843],[-78.14418144181441,58.47598790901773],[-78.20178201782018,58.50469372260574],[-78.26658266582666,58.51989091803469],[-78.27738277382774,58.52833380438409],[-78.28458284582845,58.53677669073352],[-78.31338313383134,58.57223681340105],[-78.37098370983709,58.61445124514813],[-78.41058410584105,58.62964844057706],[-78.42858428584286,58.62120555422766],[-78.41778417784178,58.60094262698905],[-78.38178381783817,58.5773025452107],[-78.32058320583205,58.54690815435282],[-78.34578345783457,58.53846526800339],[-78.37098370983709,58.54184242254317],[-78.39978399783998,58.553662463432346],[-78.41778417784178,58.5688596588613],[-78.42858428584286,58.57392539067092],[-78.43938439384394,58.575613967940825],[-78.44658446584465,58.57899112248057],[-78.45378453784538,58.59925404971918],[-78.45738457384573,58.606008358798704],[-78.46818468184682,58.61276266787823],[-78.4789847898479,58.61445124514813],[-78.52578525785258,58.60769693606858],[-78.54738547385473,58.60938551333848],[-78.56538565385654,58.62120555422766],[-78.57258572585725,58.638091326926485],[-78.56538565385654,58.65328852235541],[-78.55818558185581,58.66510856324459],[-78.57258572585725,58.67524002686389],[-78.55818558185581,58.68030575867354],[-78.53658536585365,58.681994335943415],[-78.51858518585186,58.68537149048319],[-78.51858518585186,58.69719153137237],[-78.49698496984969,58.70225726318202],[-78.48618486184861,58.69719153137237],[-78.47538475384754,58.69888010864224],[-78.46818468184682,58.7056344177218],[-78.47538475384754,58.72083161315072],[-78.48258482584825,58.730963076770024],[-78.49338493384934,58.73940596311945],[-78.53298532985329,58.75966889035803],[-78.54378543785438,58.76473462216768],[-78.54378543785438,58.77317750851708],[-78.54378543785438,58.78837470394603],[-78.53658536585365,58.79512901302556],[-78.52218522185221,58.79175185848581],[-78.51138511385113,58.78330897213638],[-78.50778507785077,58.77993181759663],[-78.49698496984969,58.78330897213638],[-78.48978489784898,58.793440435755684],[-78.48978489784898,58.806949053914735],[-78.48978489784898,58.820457672073815],[-78.49698496984969,58.83227771296299],[-78.50418504185042,58.84072059931239],[-78.52218522185221,58.85760637201122],[-78.53658536585365,58.88124645378957],[-78.54378543785438,58.90150938102818],[-78.54738547385473,58.91670657645713],[-78.54738547385473,58.923460885536656],[-78.54018540185402,58.93021519461618],[-78.53298532985329,58.94372381277523],[-78.55818558185581,58.945412390045135],[-78.56538565385654,58.95723243093431],[-78.5509855098551,58.96905247182349],[-78.51858518585186,58.96398674001384],[-78.50058500585006,58.950478121854786],[-78.48258482584825,58.931903771886056],[-78.46458464584646,58.918395153727005],[-78.4429844298443,58.91501799918723],[-78.45018450184502,58.940346658235484],[-78.43578435784357,58.953855276394535],[-78.40698406984069,58.96229816274396],[-78.3889838898389,58.96398674001384],[-78.35658356583565,58.958921008204186],[-78.3529835298353,58.95216669912466],[-78.36018360183601,58.93865808096561],[-78.36738367383674,58.918395153727005],[-78.36018360183601,58.913329421917354],[-78.34938349383494,58.91670657645713],[-78.3169831698317,58.92514946280653],[-78.31338313383134,58.931903771886056],[-78.31338313383134,58.940346658235484],[-78.31338313383134,58.94710096731501],[-78.30618306183061,58.96060958547406],[-78.28458284582845,58.97411820363314],[-78.24498244982449,58.99775828541149],[-78.27738277382774,58.994381130871716],[-78.29538295382953,58.99100397633197],[-78.31338313383134,58.98424966725244],[-78.31338313383134,58.98762682179219],[-78.3169831698317,58.98762682179219],[-78.32058320583205,58.99100397633197],[-78.30618306183061,59.00113543995127],[-78.29178291782918,59.007889749030795],[-78.28098280982809,59.016332635380195],[-78.27018270182701,59.03152983080915],[-78.27378273782737,59.03321840807902],[-78.28098280982809,59.038284139888674],[-78.28458284582845,59.0467270262381],[-78.28458284582845,59.05348133531763],[-78.28098280982809,59.05854706712728],[-78.27018270182701,59.06361279893693],[-78.25938259382593,59.06867853074655],[-78.25578255782557,59.070367108016455],[-78.24498244982449,59.06361279893693],[-78.2269822698227,59.0551699125875],[-78.20898208982089,59.05348133531763],[-78.20178201782018,59.06361279893693],[-78.20538205382053,59.073744262556204],[-78.22338223382233,59.10751580795386],[-78.20178201782018,59.11258153976351],[-78.18018180181801,59.092318612524934],[-78.15498154981549,59.09400718979481],[-78.12978129781297,59.10751580795386],[-78.12618126181262,59.12271300338281],[-78.1369813698137,59.13959877608164],[-78.15498154981549,59.154795971510595],[-78.1369813698137,59.16155028059012],[-78.10458104581045,59.154795971510595],[-78.08658086580866,59.16155028059012],[-78.09378093780937,59.1733703214793],[-78.09738097380973,59.198698980527524],[-78.10818108181081,59.2105190214167],[-78.07578075780758,59.22740479411553],[-78.00018000180002,59.24429056681436],[-77.96777967779677,59.261176339513185],[-77.94977949779498,59.26793064859271],[-77.90657906579065,59.26961922586261],[-77.87777877778777,59.279750689481915],[-77.82017820178201,59.293259307640966],[-77.83817838178382,59.30339077126027],[-77.87417874178742,59.30845650306992],[-77.89577895778957,59.31352223487954],[-77.87057870578705,59.320276543959096],[-77.80937809378094,59.320276543959096],[-77.78417784177842,59.32703085303862],[-77.76617766177661,59.34053947119767],[-77.76977769777697,59.350670934816975],[-77.80577805778057,59.3675567075158],[-77.77697776977769,59.381065325674854],[-77.6761767617676,59.40301683018333],[-77.6869768697687,59.40639398472311],[-77.71217712177122,59.40977113926286],[-77.7229772297723,59.41652544834241],[-77.72657726577265,59.408082561992984],[-77.73377733777338,59.40301683018333],[-77.74097740977409,59.40132825291346],[-77.75177751777517,59.408082561992984],[-77.76617766177661,59.408082561992984],[-77.76977769777697,59.408082561992984],[-77.76977769777697,59.41145971653276],[-77.77337773377734,59.42159118015206],[-77.77337773377734,59.426656911961686],[-77.79137791377913,59.43172264377134],[-77.81657816578165,59.426656911961686],[-77.85257852578525,59.408082561992984],[-77.87057870578705,59.404705407453235],[-77.89217892178921,59.40132825291346],[-77.90657906579065,59.404705407453235],[-77.91377913779138,59.418214025612286],[-77.90657906579065,59.435099798311114],[-77.88857888578886,59.44523126193042],[-77.86697866978669,59.45029699374007],[-77.84537845378453,59.45029699374007],[-77.84537845378453,59.45705130281959],[-77.88137881378813,59.4857571164076],[-77.84177841778417,59.50939719818595],[-77.73737737377374,59.53979158904383],[-77.73017730177301,59.54823447539326],[-77.73377733777338,59.565120248092086],[-77.72657726577265,59.57694028898126],[-77.71577715777157,59.62084329799822],[-77.72657726577265,59.630974761617495],[-77.75177751777517,59.630974761617495],[-77.76617766177661,59.63941764796692],[-77.78417784177842,59.6596805752055],[-77.7949779497795,59.671500616094676],[-77.79857798577986,59.68332065698388],[-77.78417784177842,59.68163207971398],[-77.76977769777697,59.68332065698388],[-77.75537755377553,59.688386388793504],[-77.74457744577445,59.69682927514293],[-77.76257762577626,59.70527216149233],[-77.77697776977769,59.71033789330198],[-77.70497704977049,59.70358358422246],[-77.69417694176941,59.70020642968268],[-77.67977679776797,59.68163207971398],[-77.6689766897669,59.67656634790433],[-77.62937629376293,59.67656634790433],[-77.60417604176041,59.679943502444104],[-77.58977589775897,59.68669781152363],[-77.57897578975789,59.69514069787306],[-77.57177571775718,59.693452120603155],[-77.56457564575645,59.685009234253755],[-77.55377553775537,59.67656634790433],[-77.48897488974889,59.64786053431632],[-77.46377463774637,59.62422045253797],[-77.4709747097471,59.595514638949965],[-77.44217442174421,59.57694028898126],[-77.3989739897399,59.57018597990174],[-77.31257312573125,59.56680882536196],[-77.31257312573125,59.573563134441486],[-77.38457384573846,59.58369459806079],[-77.42417424174242,59.595514638949965],[-77.44937449374494,59.61408898891867],[-77.44217442174421,59.62590902980784],[-77.44577445774458,59.644483379776574],[-77.45297452974529,59.663057729745276],[-77.46377463774637,59.67656634790433],[-77.48177481774817,59.68332065698388],[-77.54657546575466,59.690074966063406],[-77.54657546575466,59.69514069787306],[-77.54297542975429,59.69682927514293],[-77.53937539375393,59.69682927514293],[-77.54657546575466,59.69682927514293],[-77.53217532175321,59.70189500695258],[-77.51777517775177,59.70358358422246],[-77.50337503375033,59.706960738762234],[-77.49257492574925,59.71709220238151],[-77.5069750697507,59.71878077965141],[-77.52137521375214,59.72722366600081],[-77.53217532175321,59.73735512962011],[-77.54657546575466,59.74410943869964],[-77.53577535775358,59.75930663412859],[-77.52137521375214,59.75761805685872],[-77.5069750697507,59.74917517050929],[-77.49257492574925,59.74410943869964],[-77.46737467374673,59.747486593239415],[-77.46017460174602,59.755929479588815],[-77.45657456574565,59.76606094320812],[-77.44937449374494,59.77956956136717],[-77.43137431374313,59.78970102498647],[-77.40977409774098,59.79307817952625],[-77.32337323373234,59.78970102498647],[-77.30177301773017,59.79138960225637],[-77.29097290972909,59.79983248860577],[-77.35217352173521,59.867375579401084],[-77.35937359373594,59.88594992936979],[-77.37017370173702,59.90114712479874],[-77.39537395373954,59.907901433878266],[-77.41697416974169,59.91296716568792],[-77.42417424174242,59.91972147476744],[-77.40977409774098,59.92647578384697],[-77.36657366573665,59.92647578384697],[-77.35217352173521,59.929852938386745],[-77.35937359373594,59.93660724746627],[-77.36657366573665,59.94167297927592],[-77.37737377373773,59.9450501338157],[-77.38817388173881,59.943361556545796],[-77.36657366573665,59.956870174704875],[-77.34857348573486,59.965313061054275],[-77.32337323373234,59.96869021559405],[-77.29817298172982,59.970378792863926],[-77.31617316173161,59.978821679213326],[-77.33417334173342,59.98388741102298],[-77.31257312573125,59.992330297372405],[-77.25857258572586,59.99908460645193],[-77.23697236972369,59.997396029182056],[-77.23697236972369,60.00415033826158],[-77.2549725497255,60.00415033826158],[-77.28017280172801,60.00752749280136],[-77.30177301773017,60.014281801880884],[-77.31257312573125,60.02610184277006],[-77.28377283772838,60.02610184277006],[-77.24417244172442,60.032856151849586],[-77.20817208172082,60.04467619273876],[-77.19017190171901,60.059873388167716],[-77.21537215372153,60.058184810897814],[-77.30537305373053,60.03623330638936],[-77.33057330573305,60.03623330638936],[-77.34857348573486,60.04298761546889],[-77.3449734497345,60.059873388167716],[-77.35577355773557,60.06493911997737],[-77.37017370173702,60.06662769724724],[-77.3809738097381,60.068316274517116],[-77.39537395373954,60.06662769724724],[-77.40257402574025,60.06156196543759],[-77.41337413374133,60.049741924548414],[-77.41697416974169,60.04636477000864],[-77.47817478174781,60.05311907908819],[-77.55737557375573,60.05311907908819],[-77.56457564575645,60.054807656358065],[-77.57897578975789,60.06493911997737],[-77.58617586175862,60.06662769724724],[-77.6329763297633,60.06662769724724],[-77.62217622176222,60.07507058359664],[-77.58977589775897,60.08689062448585],[-77.57897578975789,60.09364493356537],[-77.58617586175862,60.09871066537502],[-77.59337593375933,60.103776397184646],[-77.60057600576005,60.11559643807385],[-77.55737557375573,60.130793633502776],[-77.53217532175321,60.13417078804255],[-77.51417514175141,60.125727901693125],[-77.5069750697507,60.12403932442325],[-77.49257492574925,60.125727901693125],[-77.48177481774817,60.1291050562329],[-77.47457474574746,60.13248221077268],[-77.46377463774637,60.13248221077268],[-77.40977409774098,60.1291050562329],[-77.40977409774098,60.13585936531243],[-77.48177481774817,60.15443371528113],[-77.50337503375033,60.16287660163056],[-77.53577535775358,60.183139528869134],[-77.55017550175502,60.19833672429809],[-77.5609756097561,60.21184534245714],[-77.51417514175141,60.20846818791739],[-77.48897488974889,60.210156765187264],[-77.4709747097471,60.21691107426679],[-77.53217532175321,60.2557483514741],[-77.55377553775537,60.264191237823525],[-77.56457564575645,60.26756839236327],[-77.5609756097561,60.272634124172924],[-77.53937539375393,60.286142742332004],[-77.5609756097561,60.2844541650621],[-77.5969759697597,60.269256969633176],[-77.61497614976149,60.2658798150934],[-77.62217622176222,60.272634124172924],[-77.61497614976149,60.28783131960188],[-77.59337593375933,60.321602864999534],[-77.60777607776078,60.33342290588871],[-77.61497614976149,60.33848863769836],[-77.6329763297633,60.34355436950801],[-77.6329763297633,60.348620101317664],[-77.6329763297633,60.35537441039719],[-77.6329763297633,60.36044014220684],[-77.65457654576545,60.36888302855624],[-77.69777697776978,60.375637337635766],[-77.71577715777157,60.38239164671529],[-77.74457744577445,60.40434315122377],[-77.74097740977409,60.42629465573225],[-77.7229772297723,60.446557582970854],[-77.69777697776978,60.465131932939556],[-77.59337593375933,60.50228063287699],[-77.56457564575645,60.51916640557582],[-77.56457564575645,60.52423213738544],[-77.5609756097561,60.536052178274616],[-77.55737557375573,60.54280648735417],[-77.54657546575466,60.54787221916382],[-77.41337413374133,60.54618364189392],[-77.4349743497435,60.558003682783095],[-77.46017460174602,60.56644656913252],[-77.54297542975429,60.57488945548192],[-77.57177571775718,60.57488945548192],[-77.58257582575825,60.571512300942175],[-77.60777607776078,60.56138083732287],[-77.61857618576185,60.559692260053],[-77.66537665376653,60.55631510551322],[-77.6869768697687,60.558003682783095],[-77.76977769777697,60.59177522818075],[-77.78777787777878,60.60528384633983],[-77.83097830978309,60.642432546277234],[-77.83097830978309,60.64918685535676],[-77.8129781297813,60.65425258716641],[-77.7589775897759,60.68464697802432],[-77.71937719377193,60.69984417345324],[-77.70137701377013,60.70828705980267],[-77.67257672576726,60.731927141581025],[-77.62577625776257,60.753878646089504],[-77.60777607776078,60.758944377899155],[-77.62937629376293,60.77414157332808],[-77.6689766897669,60.77583015059798],[-77.74457744577445,60.767387264248555],[-77.71937719377193,60.780895882407634],[-77.51057510575106,60.834930355043866],[-77.51057510575106,60.84168466412339],[-77.5609756097561,60.83830750958364],[-77.89577895778957,60.75219006881963],[-77.88857888578886,60.764010109708806],[-77.88137881378813,60.77414157332808],[-77.85977859778598,60.79271592329681],[-77.88137881378813,60.799470232376336],[-77.97137971379713,60.79271592329681],[-77.88137881378813,60.82817604596434],[-77.9209792097921,60.834930355043866],[-77.96417964179642,60.829864623234215],[-78.0469804698047,60.80622454145586],[-78.07938079380793,60.80622454145586],[-78.19818198181981,60.79271592329681],[-78.16938169381693,60.85857043682222],[-78.16578165781658,60.86870190044152],[-78.14058140581406,60.87376763225117],[-78.12258122581225,60.88558767314035],[-78.09378093780937,60.91598206399823],[-78.02178021780217,60.95144218666579],[-78.0109801098011,60.96157365028506],[-78.00378003780037,60.97170511390436],[-77.88857888578886,61.0375596274298],[-77.87057870578705,61.05106824558885],[-77.86337863378634,61.05444540012863],[-77.8489784897849,61.05444540012863],[-77.82377823778238,61.05444540012863],[-77.80937809378094,61.05782255466838],[-77.80937809378094,61.0645768637479],[-77.8129781297813,61.07639690463711],[-77.8129781297813,61.088216945526284],[-77.79137791377913,61.14562857270229],[-77.78777787777878,61.15576003632157],[-77.78057780577805,61.16082576813122],[-77.76617766177661,61.17940011809995],[-77.75537755377553,61.1844658499096],[-77.70137701377013,61.191220158989125],[-77.69417694176941,61.20810593168795],[-77.70857708577086,61.21823739530723],[-77.75177751777517,61.23174601346631],[-77.74457744577445,61.24187747708561],[-77.73377733777338,61.25032036343501],[-77.72657726577265,61.25876324978444],[-77.7229772297723,61.27227186794349],[-77.72657726577265,61.27902617702301],[-77.74097740977409,61.29084621791219],[-77.74457744577445,61.297600526991715],[-77.74457744577445,61.3499464223581],[-77.74817748177482,61.37527508140633],[-77.75537755377553,61.400603740454585],[-77.78417784177842,61.45463821309082],[-77.77337773377734,61.463081099440245],[-77.74817748177482,61.45970394490047],[-77.73737737377374,61.45463821309082],[-77.7229772297723,61.43775244039199],[-77.69777697776978,61.430998131312464],[-77.6761767617676,61.43944101766186],[-77.68337683376834,61.46476967671012],[-77.60777607776078,61.46476967671012],[-77.57177571775718,61.46983540851977],[-77.54657546575466,61.485032603948696],[-77.6329763297633,61.50867268572708],[-77.66537665376653,61.52724703569578],[-77.65457654576545,61.55426427201391],[-77.64017640176401,61.561018581093435],[-77.62217622176222,61.564395735633184],[-77.60417604176041,61.564395735633184],[-77.56817568175681,61.547509962934356],[-77.47817478174781,61.54075565385483],[-77.49977499774998,61.56270715836331],[-77.54657546575466,61.57621577652236],[-77.6329763297633,61.582970085601914],[-77.62217622176222,61.59310154922119],[-77.60777607776078,61.59479012649109],[-77.58977589775897,61.59310154922119],[-77.57177571775718,61.59479012649109],[-77.57177571775718,61.60154443557062],[-77.60057600576005,61.60829874465014],[-77.6869768697687,61.60829874465014],[-77.70857708577086,61.61674163099957],[-77.74097740977409,61.64882459912732],[-77.75537755377553,61.65726748547675],[-77.76257762577626,61.66571037182615],[-77.79137791377913,61.70117049449368],[-77.79857798577986,61.70117049449368],[-77.8129781297813,61.69103903087441],[-77.9389793897939,61.694416185414156],[-77.96777967779677,61.70117049449368],[-77.98937989379894,61.71467911265276],[-78.00378003780037,61.73156488535159],[-78.00738007380073,61.74169634897089],[-78.00738007380073,61.75351638986007],[-78.00378003780037,61.76702500801912],[-78.0109801098011,61.778845048908295],[-78.01458014580146,61.78222220344807],[-78.01818018180181,61.78559935798782],[-78.02538025380254,61.792353667067346],[-78.02898028980289,61.800796553416774],[-78.03618036180362,61.819370903385476],[-78.03978039780398,61.827813789734904],[-78.0469804698047,61.83794525335418],[-78.0649806498065,61.85651960332291],[-78.07938079380793,61.873405376021736],[-78.08658086580866,61.88860257145066],[-78.08298082980829,61.903799766879615],[-78.07218072180721,61.92406269411822],[-78.07938079380793,61.93757131227727],[-78.08658086580866,61.957834239515876],[-78.09378093780937,61.97640858948458],[-78.12618126181262,61.993294362183406],[-78.1369813698137,62.01355728942198],[-78.14058140581406,62.03888594847024],[-78.14418144181441,62.108117616535424],[-78.14778147781477,62.12838054377403],[-78.15858158581585,62.14695489374273],[-78.16578165781658,62.16721782098131],[-78.15858158581585,62.189169325489786],[-78.14778147781477,62.21280940726814],[-78.14058140581406,62.23138375723687],[-78.15498154981549,62.273598188983925],[-78.15498154981549,62.29723827076228],[-78.12978129781297,62.30736973438158],[-78.11898118981189,62.309058311651455],[-78.11178111781118,62.31581262073098],[-78.10818108181081,62.32594408435028],[-78.10818108181081,62.33776412523946],[-78.1009810098101,62.34789558885876],[-78.02538025380254,62.39179859787572],[-78.0109801098011,62.39686432968537],[-77.97857978579785,62.39686432968537],[-77.93537935379354,62.406995793304674],[-77.91737917379173,62.420504411463725],[-77.90657906579065,62.42388156600347],[-77.88857888578886,62.425570143273376],[-77.78417784177842,62.46778457502043],[-77.76617766177661,62.47285030683008],[-77.71577715777157,62.47285030683008],[-77.6869768697687,62.477916038639734],[-77.6761767617676,62.48973607952891],[-77.65817658176582,62.51675331584704],[-77.61497614976149,62.531950511275966],[-77.53937539375393,62.54714770670492],[-77.5249752497525,62.55727917032422],[-77.50337503375033,62.5792306748327],[-77.49257492574925,62.5876735611821],[-77.4709747097471,62.594427870261626],[-77.40617406174061,62.5876735611821],[-77.3989739897399,62.58429640664235],[-77.39177391773917,62.567410633943524],[-77.38817388173881,62.560656324864],[-77.37737377373773,62.55727917032422],[-77.37017370173702,62.55727917032422],[-77.36657366573665,62.560656324864],[-77.35577355773557,62.560656324864],[-77.27657276572765,62.553902015784445],[-77.25137251372513,62.553902015784445],[-77.24417244172442,62.548836283974794],[-77.16857168571686,62.54714770670492],[-77.16137161371613,62.545459129435045],[-77.15057150571505,62.54208197489527],[-77.14337143371434,62.53701624308562],[-77.13977139771397,62.53026193400609],[-77.13617136171361,62.52688477946634],[-77.1289712897129,62.52857335673622],[-77.11457114571145,62.53363908854587],[-77.07857078570785,62.53532766581574],[-77.06777067770678,62.53363908854587],[-77.0569705697057,62.52857335673622],[-77.04977049770497,62.523507624926566],[-77.04257042570426,62.518441893116915],[-77.01737017370174,62.53363908854587],[-76.99576995769958,62.540393397625394],[-76.97056970569706,62.54377055216517],[-76.94896948969489,62.540393397625394],[-76.93456934569345,62.53363908854587],[-76.92376923769237,62.52688477946634],[-76.91296912969129,62.52181904765669],[-76.7581675816758,62.509999006767515],[-76.73656736567365,62.50662185222774],[-76.71856718567186,62.496490388608436],[-76.70416704167042,62.48973607952891],[-76.66456664566645,62.48635892498913],[-76.64656646566465,62.477916038639734],[-76.65376653766538,62.47285030683008],[-76.62856628566286,62.461030265940906],[-76.59616596165961,62.45765311140113],[-76.53496534965349,62.45934168867103],[-76.4629646296463,62.43570160689268],[-76.40176401764018,62.43063587508303],[-76.30456304563046,62.406995793304674],[-76.2181621816218,62.398552906955246],[-76.18936189361894,62.38842144333594],[-76.14976149761497,62.38673286606607],[-76.13176131761317,62.38335571152629],[-76.12456124561245,62.37491282517689],[-76.11736117361173,62.35464989793829],[-76.11376113761138,62.349584166128636],[-76.09936099360993,62.34620701158889],[-76.08496084960849,62.34789558885876],[-76.07056070560705,62.35296132066841],[-76.05616056160561,62.35633847520819],[-76.04176041760417,62.35296132066841],[-76.02376023760237,62.34451843431901],[-76.0129601296013,62.34114127977924],[-75.99855998559985,62.34451843431901],[-75.9661596615966,62.35464989793829],[-75.94815948159481,62.35633847520819],[-75.93735937359374,62.35296132066841],[-75.91575915759157,62.33438697069971],[-75.85455854558545,62.32425550708041],[-75.82935829358293,62.314124043461106],[-75.66015660156602,62.29723827076228],[-75.59175591755917,62.273598188983925],[-75.59175591755917,62.2668438799044],[-75.71775717757177,62.238138066316395],[-75.75375753757537,62.21449798453804],[-75.77175771757717,62.206055098188614],[-75.81135811358114,62.202677943648865],[-75.82935829358293,62.19423505729944],[-75.840158401584,62.18579217095004],[-75.89415894158941,62.16384066644156],[-75.83295832958329,62.16384066644156],[-75.81495814958149,62.16890639825121],[-75.77535775357754,62.18748074821991],[-75.73575735757358,62.19592363456931],[-75.67815678156781,62.216186561807916],[-75.66735667356673,62.22294087088744],[-75.57375573755738,62.24489237539592],[-75.49455494554945,62.295549693492404],[-75.46935469354693,62.30230400257193],[-75.32895328953289,62.31750119800088],[-75.1741517415174,62.29386111622253],[-75.14895148951489,62.2854182298731],[-75.14175141751417,62.27190961171405],[-75.14535145351454,62.25502383901522],[-75.15255152551525,62.23138375723687],[-75.13455134551346,62.23476091177662],[-75.10215102151021,62.26177814809475],[-75.08415084150842,62.2668438799044],[-75.09135091350913,62.2668438799044],[-75.05175051750517,62.273598188983925],[-75.0049500495005,62.268532457174274],[-74.88974889748897,62.23476091177662],[-74.83934839348393,62.20436652091874],[-74.78894788947889,62.18241501641026],[-74.78174781747818,62.17734928460061],[-74.77814778147781,62.17397213006086],[-74.77094770947708,62.15708635736203],[-74.760147601476,62.15202062555238],[-74.67374673746737,62.12331481196438],[-74.59814598145981,62.1114947710752],[-74.55854558545585,62.1098061938053],[-74.55854558545585,62.11656050288482],[-74.58374583745837,62.121626234694475],[-74.63774637746377,62.14526631647283],[-74.68454684546845,62.15539778009213],[-74.74214742147421,62.18579217095004],[-74.75654756547566,62.197612211839214],[-74.75654756547566,62.21280940726814],[-74.74214742147421,62.23138375723687],[-74.72414724147241,62.246580952665795],[-74.70614706147062,62.25333526174535],[-74.4181441814418,62.25333526174535],[-74.39294392943928,62.25840099355497],[-74.37854378543786,62.265155302634525],[-74.37134371343713,62.27022103444415],[-74.36414364143641,62.278663920793576],[-74.34974349743497,62.28204107533335],[-74.31734317343174,62.287106807142976],[-74.29574295742957,62.29892684803218],[-74.27774277742778,62.32425550708041],[-74.24534245342453,62.331009816159934],[-74.23094230942309,62.33438697069971],[-74.21654216542166,62.33776412523946],[-74.19134191341914,62.32594408435028],[-74.17334173341733,62.32425550708041],[-74.15534155341552,62.32594408435028],[-74.13734137341373,62.327632661620186],[-74.08694086940869,62.35296132066841],[-74.01854018540185,62.36140420701784],[-73.99693996939969,62.36815851609737],[-73.98253982539825,62.37660140244677],[-73.95733957339573,62.40530721603477],[-73.94293942939429,62.41881583419385],[-73.90693906939069,62.428947297813124],[-73.8889388893889,62.442455915972204],[-73.8781387813878,62.45765311140113],[-73.87093870938709,62.46440742048068],[-73.74853748537485,62.47285030683008],[-73.69453694536945,62.48129319317951],[-73.66933669336693,62.48129319317951],[-73.64773647736477,62.47285030683008],[-73.63333633336333,62.45934168867103],[-73.59373593735937,62.4137501023842],[-73.57213572135721,62.39517575241547],[-73.55413554135541,62.390110020605846],[-73.53253532535325,62.39179859787572],[-73.50373503735037,62.390110020605846],[-73.48933489334892,62.385044288796195],[-73.48213482134821,62.37997855698654],[-73.47493474934748,62.37491282517689],[-73.46773467734677,62.36984709336724],[-73.44973449734496,62.366469938827464],[-73.43533435334353,62.36984709336724],[-73.42453424534244,62.37322424790702],[-73.40653406534065,62.37660140244677],[-73.37773377733777,62.36984709336724],[-73.35613356133561,62.35633847520819],[-73.3381333813338,62.33945270250936],[-73.31653316533165,62.327632661620186],[-73.24813248132482,62.32087835254063],[-73.20853208532085,62.31243546619123],[-73.20493204932049,62.29723827076228],[-73.2121321213212,62.2769753435237],[-73.19773197731978,62.260089570824874],[-73.08253082530825,62.21449798453804],[-73.07533075330753,62.206055098188614],[-73.06813068130681,62.19592363456931],[-73.06093060930608,62.18748074821991],[-73.04653046530466,62.184103593680135],[-73.01053010530104,62.180726439140386],[-72.96732967329673,62.17228355279096],[-72.93132931329313,62.16046351190178],[-72.89892898928989,62.143577739202954],[-72.90972909729096,62.13344627558365],[-72.92052920529206,62.1300691210439],[-72.93492934929348,62.126691966504126],[-72.94572945729458,62.12331481196438],[-72.82332823328233,62.11656050288482],[-72.78372783727836,62.1098061938053],[-72.78372783727836,62.11656050288482],[-72.82332823328233,62.135134852853554],[-72.80532805328053,62.14188916193308],[-72.7549275492755,62.15033204828248],[-72.73332733327332,62.15033204828248],[-72.7189271892719,62.14526631647283],[-72.68652686526865,62.126691966504126],[-72.62892628926289,62.11656050288482],[-72.62172621726216,62.1013633074559],[-72.6361263612636,62.082788957487196],[-72.66492664926649,62.06083745297872],[-72.62532625326253,62.06252603024859],[-72.60732607326072,62.059148875708814],[-72.59652596525964,62.04732883481964],[-72.61092610926109,62.04395168027989],[-72.61452614526145,62.037197371200335],[-72.61092610926109,62.028754484850936],[-72.59652596525964,62.020311598501536],[-72.60372603726037,62.00680298034246],[-72.60372603726037,61.988228630373754],[-72.60732607326072,61.97134285767493],[-72.62172621726216,61.9645885485954],[-72.6721267212672,61.957834239515876],[-72.68652686526865,61.95107993043632],[-72.69012690126901,61.94601419862667],[-72.68652686526865,61.92743984865797],[-72.68652686526865,61.91055407595914],[-72.69012690126901,61.90211118960974],[-72.79452794527946,61.83456809881443],[-72.7549275492755,61.83456809881443],[-72.72972729727297,61.846388139703606],[-72.69372693726937,61.87509395329161],[-72.66492664926649,61.88353683964101],[-72.66492664926649,61.84976529424338],[-72.63252632526324,61.82105948065535],[-72.60012600126001,61.81261659430595],[-72.60372603726037,61.841322407893955],[-72.61812618126181,61.86665106694218],[-72.63252632526324,61.895356880530215],[-72.62892628926289,61.92237411684832],[-72.60372603726037,61.944325621356796],[-72.59652596525964,61.94263704408692],[-72.57132571325712,61.93250558046762],[-72.48852488524885,61.92406269411822],[-72.35532355323552,61.88860257145066],[-72.23292232922329,61.881848262371136],[-72.20412204122042,61.86496248967231],[-72.19692196921969,61.854831026053006],[-72.19332193321932,61.846388139703606],[-72.18972189721897,61.83794525335418],[-72.1789217892179,61.827813789734904],[-72.14292142921428,61.80923943976617],[-72.1321213212132,61.800796553416774],[-72.15012150121501,61.800796553416774],[-72.20772207722077,61.792353667067346],[-72.19332193321932,61.7889765125276],[-72.18612186121861,61.78728793525772],[-72.18612186121861,61.78053362617817],[-72.21132211322113,61.778845048908295],[-72.22572225722257,61.76702500801912],[-72.22212222122221,61.75013923532029],[-72.20772207722077,61.738319194431114],[-72.19332193321932,61.73663061716124],[-72.18252182521825,61.738319194431114],[-72.17172171721717,61.743384926240765],[-72.15012150121501,61.756893544399816],[-72.13932139321393,61.756893544399816],[-72.07452074520745,61.74507350351064],[-72.05652056520564,61.73663061716124],[-72.0421204212042,61.72481057627206],[-72.03852038520385,61.716367689922635],[-72.03852038520385,61.707924803573235],[-72.03492034920349,61.70117049449368],[-72.01692016920168,61.69610476268406],[-72.0061200612006,61.69103903087441],[-71.99891998919989,61.68428472179485],[-71.99531995319953,61.67753041271533],[-72.0061200612006,61.6606446400165],[-72.02412024120241,61.6420702900478],[-72.06372063720637,61.61505305372967],[-72.08532085320853,61.60661016738027],[-72.10692106921069,61.60323301284049],[-72.12852128521286,61.604921590110365],[-72.20052200522005,61.61674163099957],[-72.24372243722436,61.618430208269444],[-72.27612276122761,61.60323301284049],[-72.30132301323013,61.56777289017296],[-72.24372243722436,61.59816728103084],[-72.22212222122221,61.60154443557062],[-72.11772117721176,61.58972439468144],[-72.08172081720816,61.58972439468144],[-72.07092070920709,61.591412971951314],[-72.03492034920349,61.60154443557062],[-72.02412024120241,61.60323301284049],[-71.99171991719916,61.60154443557062],[-71.98091980919808,61.60323301284049],[-71.97371973719737,61.609987321920016],[-71.970119701197,61.62011878553932],[-71.96651966519664,61.631938826428495],[-71.96291962919629,61.6420702900478],[-71.95571955719556,61.64713602185745],[-71.94491944919449,61.6505131763972],[-71.94131941319412,61.65726748547675],[-71.93411934119341,61.6707761036358],[-71.93771937719377,61.67753041271533],[-71.94491944919449,61.68259614452498],[-71.95211952119521,61.69103903087441],[-71.970119701197,61.70117049449368],[-71.97371973719737,61.707924803573235],[-71.95571955719556,61.71130195811298],[-71.86211862118621,61.69779333995393],[-71.80811808118081,61.68259614452498],[-71.76131761317613,61.67753041271533],[-71.75051750517505,61.67415325817558],[-71.73251732517325,61.66571037182615],[-71.6749167491675,61.65557890820685],[-71.65331653316532,61.6505131763972],[-71.58131581315813,61.61336447645979],[-71.57051570515705,61.60154443557062],[-71.5921159211592,61.60154443557062],[-71.57411574115741,61.596478703760965],[-71.55971559715597,61.58803581741154],[-71.5489154891549,61.574527199252486],[-71.55611556115561,61.561018581093435],[-71.56691566915669,61.55933000382353],[-71.60651606516065,61.56777289017296],[-71.62451624516245,61.56608431290309],[-71.6281162811628,61.55933000382353],[-71.6281162811628,61.55257569474401],[-71.63891638916388,61.547509962934356],[-71.69291692916929,61.539067076584956],[-71.80451804518044,61.542444231124705],[-71.85851858518585,61.534001344775305],[-71.84771847718477,61.523869881156],[-71.82971829718296,61.52218130388613],[-71.79371793717937,61.52724703569578],[-71.78651786517865,61.52218130388613],[-71.77931779317792,61.5137384175367],[-71.78291782917829,61.503606953917426],[-71.79731797317973,61.498541222107775],[-71.79731797317973,61.49178691302825],[-71.77211772117721,61.48334402667882],[-71.76131761317613,61.479966872139045],[-71.74691746917469,61.47827829486917],[-71.76851768517685,61.46139252217034],[-71.81171811718117,61.44788390401129],[-71.89091890918908,61.43775244039199],[-71.89091890918908,61.430998131312464],[-71.85491854918548,61.42424382223294],[-71.79731797317973,61.422555244963036],[-71.73611736117361,61.41073520407386],[-71.61731617316173,61.41748951315341],[-71.58491584915849,61.41073520407386],[-71.6281162811628,61.395538008644934],[-71.64611646116461,61.39384943137503],[-71.65691656916569,61.38878369956538],[-71.66051660516605,61.382029390485854],[-71.67131671316713,61.37527508140633],[-71.70731707317073,61.368520772326804],[-71.82251822518225,61.37527508140633],[-71.80451804518044,61.37020934959668],[-71.79731797317973,61.368520772326804],[-71.79731797317973,61.36176646324728],[-71.81531815318152,61.35670073143763],[-71.82251822518225,61.35501215416775],[-71.80451804518044,61.3482578450882],[-71.78291782917829,61.346569267818325],[-71.73971739717396,61.3482578450882],[-71.72171721717217,61.34488069054845],[-71.68571685716857,61.33474922692915],[-71.6641166411664,61.33474922692915],[-71.6749167491675,61.319552031500194],[-71.69291692916929,61.30773199061102],[-71.72891728917288,61.29422337245197],[-71.72891728917288,61.28746906337244],[-71.69651696516965,61.27733759975314],[-71.59571595715957,61.25876324978444],[-71.61731617316173,61.235123168006055],[-71.62451624516245,61.221614549847004],[-71.63171631716317,61.204728777148176],[-71.61731617316173,61.20810593168795],[-71.59571595715957,61.221614549847004],[-71.58491584915849,61.22499170438678],[-71.57411574115741,61.21992597257713],[-71.56691566915669,61.213171663497604],[-71.55971559715597,61.204728777148176],[-71.55611556115561,61.19797446806865],[-71.57411574115741,61.172645809020395],[-71.58131581315813,61.16082576813122],[-71.57411574115741,61.15576003632157],[-71.55251552515524,61.15744861359147],[-71.5381153811538,61.159137190861344],[-71.52011520115201,61.164202922670995],[-71.50931509315093,61.169268654480646],[-71.52371523715237,61.1827772726397],[-71.53451534515345,61.19628589079878],[-71.53451534515345,61.2114830862277],[-71.52011520115201,61.22499170438678],[-71.49851498514985,61.23174601346631],[-71.47691476914768,61.226680281656655],[-71.45891458914589,61.213171663497604],[-71.45171451714516,61.194597313528874],[-71.44451444514445,61.1844658499096],[-71.39411394113941,61.14900572724204],[-71.39051390513904,61.142251418162516],[-71.37251372513725,61.128742800003465],[-71.36171361713616,61.12705422273356],[-71.37251372513725,61.14900572724204],[-71.27531275312752,61.15576003632157],[-71.23211232112321,61.16758007721077],[-71.2141121411214,61.16758007721077],[-71.22131221312213,61.14900572724204],[-71.21051210512104,61.13887426362277],[-71.19611196111961,61.12536564546369],[-71.18531185311852,61.12198849092394],[-71.1781117811178,61.13887426362277],[-71.16731167311673,61.14056284089264],[-71.10971109711097,61.12536564546369],[-71.09531095310953,61.12536564546369],[-71.07011070110701,61.132119954543214],[-71.03771037710376,61.132119954543214],[-70.95490954909549,61.11692275911429],[-70.93690936909368,61.106791295494986],[-70.9261092610926,61.09328267733591],[-70.94050940509405,61.07301975009733],[-70.84690846908468,61.074708327367205],[-70.82170821708216,61.06795401828768],[-70.81450814508145,61.061199709208154],[-70.80370803708037,61.05782255466838],[-70.78930789307893,61.05444540012863],[-70.77490774907749,61.05444540012863],[-70.76050760507604,61.0561339773985],[-70.76050760507604,61.06288828647803],[-70.77130771307712,61.06964259555755],[-70.78210782107821,61.07301975009733],[-70.76050760507604,61.08652836825638],[-70.72450724507245,61.079774059176856],[-70.65970659706596,61.05444540012863],[-70.65970659706596,61.0460025137792],[-70.66690666906669,61.044313936509326],[-70.68490684906848,61.03249389562015],[-70.66690666906669,61.0274281638105],[-70.60210602106021,61.03249389562015],[-70.55530555305553,61.01391954565145],[-70.53370533705336,61.012230968381544],[-70.53370533705336,61.02067385473097],[-70.5481054810548,61.02236243200085],[-70.55530555305553,61.02911674108037],[-70.56250562505625,61.0358710501599],[-70.56970569705696,61.0460025137792],[-70.55890558905588,61.0460025137792],[-70.54450544505444,61.047691091049074],[-70.53370533705336,61.0460025137792],[-70.53730537305373,61.04937966831898],[-70.54090540905409,61.05106824558885],[-70.54090540905409,61.05444540012863],[-70.54090540905409,61.05951113193828],[-70.52650526505265,61.0645768637479],[-70.50850508505084,61.0645768637479],[-70.48690486904869,61.05951113193828],[-70.47250472504724,61.05444540012863],[-70.47250472504724,61.05106824558885],[-70.46890468904688,61.0375596274298],[-70.46530465304653,61.03249389562015],[-70.4581045810458,61.02911674108037],[-70.42570425704257,61.0274281638105],[-70.43290432904328,61.04093678196955],[-70.44010440104401,61.04937966831898],[-70.44370443704436,61.05782255466838],[-70.43290432904328,61.06795401828768],[-70.42570425704257,61.06288828647803],[-70.41850418504184,61.061199709208154],[-70.40410404104041,61.05951113193828],[-70.41490414904149,61.07301975009733],[-70.41850418504184,61.07639690463711],[-70.42570425704257,61.08146263644673],[-70.42570425704257,61.088216945526284],[-70.40050400504005,61.08652836825638],[-70.36450364503645,61.06795401828768],[-70.34290342903428,61.06795401828768],[-70.34650346503464,61.08315121371663],[-70.33930339303393,61.09497125460581],[-70.32490324903249,61.10003698641546],[-70.31050310503105,61.09834840914556],[-70.29970299702997,61.09497125460581],[-70.26730267302672,61.088216945526284],[-70.25290252902529,61.07639690463711],[-70.24570245702456,61.07301975009733],[-70.22770227702277,61.07301975009733],[-70.21690216902168,61.07808548190698],[-70.20250202502025,61.08483979098651],[-70.18810188101881,61.088216945526284],[-70.15570155701556,61.088216945526284],[-70.14490144901448,61.08315121371663],[-70.15210152101521,61.07301975009733],[-70.13770137701377,61.06964259555755],[-70.12330123301233,61.06964259555755],[-70.11250112501125,61.06795401828768],[-70.10890108901089,61.05951113193828],[-70.1161011610116,61.0561339773985],[-70.14130141301412,61.0460025137792],[-70.15210152101521,61.04093678196955],[-70.15930159301593,61.02236243200085],[-70.14850148501485,61.01054239111167],[-70.12690126901269,61.01054239111167],[-70.10170101701017,61.02067385473097],[-70.09450094500944,61.012230968381544],[-70.10890108901089,61.00547665930202],[-70.11250112501125,60.99534519568272],[-70.10170101701017,60.97845942298389],[-70.09810098100981,60.97170511390436],[-70.09450094500944,60.97001653663449],[-70.09090090900908,60.968327959364615],[-70.09090090900908,60.96157365028506],[-70.09090090900908,60.954819341205535],[-70.09450094500944,60.949753609395884],[-70.09450094500944,60.94468787758623],[-70.10170101701017,60.932867836697056],[-70.10530105301052,60.92611352761753],[-70.09810098100981,60.922736373077754],[-70.09810098100981,60.92104779580788],[-70.09090090900908,60.914293486728354],[-70.09090090900908,60.90753917764883],[-70.09090090900908,60.90247344583918],[-70.10170101701017,60.89571913675965],[-70.15210152101521,60.88896482768013],[-70.15210152101521,60.88221051860057],[-70.07650076500765,60.88221051860057],[-70.05490054900548,60.87545620952105],[-70.06570065700657,60.85857043682222],[-70.05850058500585,60.85012755047282],[-70.04050040500405,60.84843897320292],[-69.99369993699936,60.84843897320292],[-69.98649986499865,60.84843897320292],[-69.97929979299792,60.843373241393294],[-69.9648996489965,60.829864623234215],[-69.95769957699576,60.82817604596434],[-69.93249932499324,60.81466742780526],[-69.91449914499145,60.80960169599564],[-69.90009900099001,60.816356005075164],[-69.88929889298893,60.82648746869447],[-69.85689856898568,60.84168466412339],[-69.84969849698497,60.85519328228247],[-69.87129871298713,60.851816127742694],[-69.90729907299072,60.83830750958364],[-69.92889928899288,60.834930355043866],[-69.93969939699397,60.83999608685352],[-69.92169921699217,60.851816127742694],[-69.89649896498965,60.861947591362],[-69.88569885698857,60.865324745901745],[-69.86049860498605,60.883899095870476],[-69.82089820898209,60.90416202310905],[-69.77769777697776,60.919359218538006],[-69.74169741697416,60.922736373077754],[-69.73809738097381,60.88558767314035],[-69.7020970209702,60.87376763225117],[-69.66249662496625,60.88558767314035],[-69.65169651696516,60.91598206399823],[-69.66249662496625,60.927802104887405],[-69.68049680496804,60.94299930031636],[-69.69129691296912,60.95819649574531],[-69.68769687696877,60.97508226844414],[-69.68409684096841,60.981836577523666],[-69.68049680496804,61.003788082032145],[-69.68049680496804,61.012230968381544],[-69.67329673296733,61.02236243200085],[-69.65889658896589,61.03249389562015],[-69.65169651696516,61.04093678196955],[-69.65169651696516,61.047691091049074],[-69.65529655296552,61.0561339773985],[-69.65169651696516,61.0645768637479],[-69.63369633696337,61.06795401828768],[-69.62289622896229,61.071331172827456],[-69.60129601296012,61.08483979098651],[-69.58689586895869,61.088216945526284],[-69.55809558095581,61.08652836825638],[-69.53649536495365,61.079774059176856],[-69.52209522095221,61.06964259555755],[-69.50769507695077,61.05444540012863],[-69.47169471694717,61.00041092749237],[-69.46089460894609,60.99196804114297],[-69.450094500945,60.98352515479354],[-69.43209432094321,60.963262227554964],[-69.42489424894248,60.941310723046485],[-69.42489424894248,60.922736373077754],[-69.41049410494105,60.922736373077754],[-69.37089370893709,60.91598206399823],[-69.37449374493744,60.90416202310905],[-69.38889388893888,60.88221051860057],[-69.38889388893888,60.86870190044152],[-69.38529385293853,60.85519328228247],[-69.37449374493744,60.83155320050409],[-69.37089370893709,60.824798891424564],[-69.38169381693817,60.799470232376336],[-69.41049410494105,60.78427303694738],[-69.44289442894429,60.77583015059798],[-69.5040950409504,60.77076441878833],[-69.57249572495725,60.75219006881963],[-69.60129601296012,60.73868145066055],[-69.64449644496445,60.70828705980267],[-69.65529655296552,60.70322132799302],[-69.66969669696697,60.701532750723146],[-69.70569705697056,60.691401287103844],[-69.720097200972,60.68464697802432],[-69.70929709297093,60.67620409167489],[-69.69129691296912,60.66100689624594],[-69.68409684096841,60.642432546277234],[-69.68769687696877,60.62554677357841],[-69.69849698496985,60.60866100087958],[-69.68409684096841,60.60359526906993],[-69.6660966609666,60.60021811453018],[-69.65889658896589,60.58333234183135],[-69.6660966609666,60.56644656913252],[-69.68769687696877,60.55631510551322],[-69.80649806498064,60.536052178274616],[-69.8280982809828,60.52592071465534],[-69.82089820898209,60.51916640557582],[-69.79569795697957,60.49214916925769],[-69.75969759697597,60.473574819288984],[-69.74889748897489,60.46175477839978],[-69.7560975609756,60.446557582970854],[-69.77049770497705,60.43473754208168],[-69.77409774097741,60.424606078462375],[-69.77049770497705,60.41785176938285],[-69.74529745297453,60.41616319211295],[-69.73449734497345,60.411097460303324],[-69.73089730897308,60.38576880125507],[-69.720097200972,60.375637337635766],[-69.72729727297272,60.362128719476715],[-69.73809738097381,60.34693152404776],[-69.75249752497524,60.33342290588871],[-69.77049770497705,60.32329144226941],[-69.76689766897668,60.31653713318988],[-69.75249752497524,60.30640566957058],[-69.74529745297453,60.304717092300706],[-69.720097200972,60.30302851503083],[-69.71289712897129,60.299651360491055],[-69.67329673296733,60.26250266055362],[-69.6660966609666,60.2557483514741],[-69.65529655296552,60.242239733315046],[-69.61569615696156,60.23548542423552],[-69.60129601296012,60.22535396061622],[-69.61209612096121,60.21353391972704],[-69.64089640896408,60.19495956975834],[-69.65169651696516,60.183139528869134],[-69.59769597695977,60.183139528869134],[-69.5940959409594,60.17807379705951],[-69.60129601296012,60.16794233344021],[-69.60849608496085,60.14936798347148],[-69.60849608496085,60.130793633502776],[-69.60849608496085,60.11390786080395],[-69.61209612096121,60.1003992426449],[-69.630096300963,60.09364493356537],[-69.62649626496264,60.076759160866544],[-69.64809648096481,60.068316274517116],[-69.69489694896949,60.06662769724724],[-69.70569705697056,60.063250542707465],[-69.71289712897129,60.049741924548414],[-69.72369723697237,60.04636477000864],[-69.73449734497345,60.049741924548414],[-69.77409774097741,60.06662769724724],[-69.80649806498064,60.07338200632677],[-69.82449824498245,60.07169342905689],[-69.83889838898389,60.058184810897814],[-69.84249842498424,60.02947899730981],[-69.82449824498245,60.022724688230284],[-69.7920979209792,60.014281801880884],[-69.77409774097741,60.00415033826158],[-69.79569795697957,59.99064172010253],[-69.82089820898209,59.98895314283263],[-69.90009900099001,60.00415033826158],[-70.2961029610296,60.02610184277006],[-70.33570335703357,60.032856151849586],[-70.33570335703357,60.02610184277006],[-70.32850328503285,60.022724688230284],[-70.31050310503105,60.01259322461098],[-70.32850328503285,60.005838915531456],[-70.57330573305732,59.99570745191215],[-70.59850598505984,59.997396029182056],[-70.61650616506165,60.00415033826158],[-70.65250652506525,60.02103611096041],[-70.99450994509945,60.076759160866544],[-71.03411034110341,60.06662769724724],[-70.92250922509224,60.054807656358065],[-70.8829088290883,60.03454472911946],[-70.86130861308612,60.02947899730981],[-70.80730807308073,60.022724688230284],[-70.77130771307712,60.014281801880884],[-70.72090720907208,60.00921607007123],[-70.57690576905769,59.97713310194345],[-70.47970479704797,59.970378792863926],[-70.40770407704076,59.98895314283263],[-70.3861038610386,59.99064172010253],[-70.3681036810368,59.98895314283263],[-70.33930339303393,59.98051025648323],[-70.32130321303212,59.97713310194345],[-70.22770227702277,59.987264565562754],[-70.21330213302133,59.98388741102298],[-70.16650166501664,59.9636244837844],[-70.10530105301052,59.9534930201651],[-70.0441004410044,59.951804442895224],[-69.94329943299432,59.9636244837844],[-69.85689856898568,59.96024732924462],[-69.77049770497705,59.970378792863926],[-69.73449734497345,59.970378792863926],[-69.720097200972,59.96024732924462],[-69.720097200972,59.93660724746627],[-69.72729727297272,59.92141005203732],[-69.74169741697416,59.91465574295779],[-69.76689766897668,59.916344320227694],[-69.72369723697237,59.89776997025896],[-69.59049590495904,59.875818465750484],[-69.56169561695617,59.86399842486131],[-69.56529565295652,59.86062127032156],[-69.5940959409594,59.84373549762273],[-69.60129601296012,59.83360403400343],[-69.60129601296012,59.825161147654],[-69.59769597695977,59.8167182613046],[-69.59769597695977,59.809963952225075],[-69.60849608496085,59.79476675679612],[-69.61209612096121,59.78463529317682],[-69.60489604896048,59.77956956136717],[-69.59049590495904,59.777880984097294],[-69.5760957609576,59.774503829557545],[-69.56169561695617,59.77112667501777],[-69.54729547295473,59.76437236593824],[-69.56529565295652,59.75761805685872],[-69.58689586895869,59.73566655235024],[-69.62289622896229,59.72722366600081],[-69.64449644496445,59.70864931603211],[-69.65889658896589,59.70358358422246],[-69.64809648096481,59.698517852412806],[-69.63729637296373,59.69682927514293],[-69.61569615696156,59.69682927514293],[-69.60489604896048,59.69514069787306],[-69.60129601296012,59.69176354333328],[-69.59769597695977,59.68669781152363],[-69.59049590495904,59.68332065698388],[-69.53289532895329,59.679943502444104],[-69.52209522095221,59.67656634790433],[-69.51489514895148,59.649549111586225],[-69.53649536495365,59.622531875268095],[-69.56889568895689,59.60226894802949],[-69.5940959409594,59.595514638949965],[-69.62649626496264,59.59044890714031],[-69.65889658896589,59.57862886625114],[-69.69129691296912,59.56174309355231],[-69.74889748897489,59.51615150726548],[-69.75249752497524,59.50770862091608],[-69.7560975609756,59.4958885800269],[-69.75969759697597,59.49251142548712],[-69.75969759697597,59.49082284821725],[-69.74889748897489,59.484068539137695],[-69.73809738097381,59.48237996186782],[-69.69849698496985,59.484068539137695],[-69.70569705697056,59.47224849824852],[-69.69849698496985,59.467182766438896],[-69.68409684096841,59.462117034629244],[-69.66969669696697,59.45705130281959],[-69.6660966609666,59.45029699374007],[-69.65529655296552,59.440165530120765],[-69.64809648096481,59.42834548923159],[-69.64449644496445,59.41652544834241],[-69.65529655296552,59.413148293802635],[-69.66249662496625,59.408082561992984],[-69.66969669696697,59.399639675643584],[-69.66969669696697,59.38781963475441],[-69.64089640896408,59.38781963475441],[-69.63369633696337,59.38444248021463],[-69.63369633696337,59.377688171135105],[-69.64449644496445,59.364179552976026],[-69.74889748897489,59.342228048467575],[-69.7560975609756,59.33040800757837],[-69.7560975609756,59.31689938941932],[-69.74169741697416,59.30676792580002],[-69.72369723697237,59.30507934853014],[-69.62649626496264,59.30676792580002],[-69.61929619296193,59.30845650306992],[-69.61569615696156,59.31352223487954],[-69.61209612096121,59.31689938941932],[-69.60489604896048,59.320276543959096],[-69.59769597695977,59.32196512122897],[-69.5760957609576,59.33209658484827],[-69.56529565295652,59.33378516211815],[-69.52569525695256,59.33378516211815],[-69.44649446494465,59.36080239843628],[-69.42129421294213,59.36080239843628],[-69.39609396093961,59.3574252438965],[-69.37449374493744,59.3472937802772],[-69.35649356493565,59.33378516211815],[-69.37089370893709,59.320276543959096],[-69.36009360093601,59.31352223487954],[-69.33849338493384,59.315210812149445],[-69.29889298892988,59.33378516211815],[-69.27369273692736,59.33547373938802],[-69.25569255692557,59.32534227576875],[-69.24849248492484,59.30339077126027],[-69.2520925209252,59.30001361672049],[-69.26289262892628,59.288193575831315],[-69.26649266492664,59.27637353494214],[-69.24849248492484,59.27130780313249],[-69.24489244892449,59.266242071322836],[-69.23769237692376,59.25611060770353],[-69.23409234092341,59.24091341227461],[-69.24489244892449,59.22740479411553],[-69.26649266492664,59.21896190776613],[-69.29529295292953,59.21558475322635],[-69.31329313293132,59.220650485036],[-69.3420934209342,59.24091341227461],[-69.34929349293492,59.24429056681436],[-69.36369363693636,59.24429056681436],[-69.37089370893709,59.239224835004705],[-69.37089370893709,59.23247052592518],[-69.37089370893709,59.212207598686604],[-69.36729367293673,59.20714186687695],[-69.36729367293673,59.203764712337176],[-69.3780937809378,59.19701040325765],[-69.38889388893888,59.19363324871787],[-69.39969399693996,59.195321825987776],[-69.41049410494105,59.20038755779743],[-69.41769417694177,59.203764712337176],[-69.42129421294213,59.2105190214167],[-69.42129421294213,59.21896190776613],[-69.42489424894248,59.225716216845655],[-69.43929439294392,59.230781948655306],[-69.450094500945,59.22909337138543],[-69.52929529295292,59.18519036236847],[-69.54369543695437,59.16999316693952],[-69.53289532895329,59.154795971510595],[-69.540095400954,59.15141881697082],[-69.540095400954,59.14804166243104],[-69.540095400954,59.14297593062142],[-69.53289532895329,59.13453304427199],[-69.540095400954,59.127778735192464],[-69.53289532895329,59.11764727157316],[-69.51489514895148,59.10920438522376],[-69.50049500495004,59.10751580795386],[-69.49329493294933,59.11764727157316],[-69.48969489694896,59.12102442611294],[-69.48609486094861,59.12440158065269],[-69.48249482494825,59.127778735192464],[-69.47529475294752,59.13115588973221],[-69.46449464494644,59.13791019881177],[-69.45729457294573,59.132844467002116],[-69.44649446494465,59.12102442611294],[-69.43929439294392,59.11595869430329],[-69.43569435694357,59.114270117033385],[-69.43569435694357,59.11089296249364],[-69.42489424894248,59.10751580795386],[-69.42129421294213,59.11089296249364],[-69.40329403294032,59.119335848843036],[-69.39609396093961,59.12102442611294],[-69.3780937809378,59.119335848843036],[-69.36369363693636,59.11595869430329],[-69.35289352893528,59.10751580795386],[-69.3420934209342,59.09400718979481],[-69.39249392493925,59.07205568528633],[-69.4140941409414,59.0551699125875],[-69.42849428494284,59.02477552172962],[-69.44289442894429,59.029841253539274],[-69.45729457294573,59.038284139888674],[-69.46449464494644,59.0467270262381],[-69.47529475294752,59.05854706712728],[-69.47889478894788,59.06698995347668],[-69.48609486094861,59.07205568528633],[-69.5040950409504,59.073744262556204],[-69.46449464494644,58.93528092642583],[-69.450094500945,58.90150938102818],[-69.450094500945,58.89475507194865],[-69.4680946809468,58.8795578765197],[-69.47889478894788,58.87280356744017],[-69.48969489694896,58.877869299249824],[-69.49689496894969,58.88462360832935],[-69.51129511295113,58.889689340139],[-69.52209522095221,58.889689340139],[-69.52929529295292,58.877869299249824],[-69.52929529295292,58.85929494928112],[-69.53649536495365,58.83565486750274],[-69.55089550895508,58.81539194026416],[-69.56529565295652,58.806949053914735],[-69.64089640896408,58.79175185848581],[-69.6660966609666,58.79175185848581],[-69.68409684096841,58.80526047664486],[-69.720097200972,58.86773783563052],[-69.69129691296912,58.88462360832935],[-69.67689676896768,58.89475507194865],[-69.66969669696697,58.9082636901077],[-69.67329673296733,58.926838040076404],[-69.68049680496804,58.93528092642583],[-69.68769687696877,58.93021519461618],[-69.69129691296912,58.91501799918723],[-69.7020970209702,58.918395153727005],[-69.70929709297093,58.92177230826678],[-69.71649716497164,58.92852661734631],[-69.720097200972,58.93696950369571],[-69.70569705697056,58.96229816274396],[-69.73089730897308,58.98256108998254],[-69.75969759697597,58.98762682179219],[-69.76689766897668,58.97074104909336],[-69.79569795697957,58.980872512712665],[-69.83889838898389,59.0450384489682],[-69.86409864098641,59.06023564439715],[-69.87849878498784,59.051792758047725],[-69.87489874898749,59.0365955626188],[-69.86409864098641,59.00451259449102],[-69.86769867698676,58.98762682179219],[-69.87489874898749,58.975806780903014],[-69.88569885698857,58.96905247182349],[-69.89649896498965,58.96398674001384],[-69.86049860498605,58.96060958547406],[-69.82089820898209,58.945412390045135],[-69.80289802898028,58.918395153727005],[-69.81729817298172,58.88124645378957],[-69.81009810098101,58.8711149901703],[-69.80289802898028,58.85422921747147],[-69.79929799297993,58.83734344477264],[-69.80289802898028,58.825523403883466],[-69.81729817298172,58.825523403883466],[-69.83529835298353,58.833966290232866],[-69.85689856898568,58.85422921747147],[-69.86769867698676,58.86436068109077],[-69.87849878498784,58.8711149901703],[-69.89289892898928,58.87449214471005],[-69.91089910899109,58.87449214471005],[-69.89649896498965,58.84578633112204],[-69.88929889298893,58.84072059931239],[-69.88929889298893,58.83227771296299],[-69.95769957699576,58.81539194026416],[-69.97929979299792,58.81201478572439],[-70.01890018900188,58.81539194026416],[-70.03330033300333,58.81201478572439],[-70.0441004410044,58.80863763118464],[-70.06210062100621,58.79512901302556],[-70.07290072900729,58.79175185848581],[-70.13770137701377,58.78330897213638],[-70.21330213302133,58.79006328121591],[-70.23130231302312,58.784997549406285],[-70.25290252902529,58.771488931247205],[-70.19890198901989,58.77824324032673],[-70.170101701017,58.77655466305686],[-70.14850148501485,58.7613574676279],[-70.13770137701377,58.75629173581825],[-70.05850058500585,58.757980313088154],[-70.05490054900548,58.75460315854838],[-70.04770047700477,58.74109454038933],[-70.04050040500405,58.73771738584955],[-70.02250022500225,58.73940596311945],[-69.99369993699936,58.74784884946885],[-69.96849968499684,58.757980313088154],[-69.9540995409954,58.771488931247205],[-69.94329943299432,58.77486608578698],[-69.92169921699217,58.77993181759663],[-69.9180991809918,58.77486608578698],[-69.92169921699217,58.763046044897806],[-69.93249932499324,58.744471694929075],[-69.93249932499324,58.72758592223025],[-69.92889928899288,58.70225726318202],[-69.9180991809918,58.687060067753066],[-69.90009900099001,58.69381437683262],[-69.8820988209882,58.709011572261545],[-69.86049860498605,58.71576588134107],[-69.84249842498424,58.71576588134107],[-69.79929799297993,58.7056344177218],[-69.79569795697957,58.700568685912145],[-69.80289802898028,58.69043722229284],[-69.81009810098101,58.681994335943415],[-69.82089820898209,58.67524002686389],[-69.83529835298353,58.67017429505424],[-69.8460984609846,58.668485717784364],[-69.85329853298532,58.66510856324459],[-69.87129871298713,58.64991136781566],[-69.87849878498784,58.64484563600601],[-69.87489874898749,58.63640274965658],[-69.86409864098641,58.62795986330718],[-69.84969849698497,58.61445124514813],[-69.83529835298353,58.60431978152883],[-69.81369813698137,58.5958768951794],[-69.79569795697957,58.59925404971918],[-69.78849788497885,58.61782839968788],[-69.78129781297812,58.62964844057706],[-69.74169741697416,58.65328852235541],[-69.73089730897308,58.67017429505424],[-69.70929709297093,58.69043722229284],[-69.70569705697056,58.69212579956272],[-69.7020970209702,58.69888010864224],[-69.69849698496985,58.70225726318202],[-69.69129691296912,58.703945840451894],[-69.67689676896768,58.69719153137237],[-69.66969669696697,58.69719153137237],[-69.65169651696516,58.700568685912145],[-69.64089640896408,58.714077304071196],[-69.63729637296373,58.722520190420624],[-69.63729637296373,58.73940596311945],[-69.630096300963,58.73771738584955],[-69.60849608496085,58.75966889035803],[-69.56529565295652,58.77486608578698],[-69.48609486094861,58.79175185848581],[-69.41769417694177,58.828900558423214],[-69.41049410494105,58.84409775385217],[-69.39609396093961,58.85760637201122],[-69.3780937809378,58.869426412900395],[-69.36009360093601,58.87449214471005],[-69.34929349293492,58.87449214471005],[-69.33129331293313,58.8795578765197],[-69.3060930609306,58.882935031059475],[-69.28089280892809,58.89475507194865],[-69.25569255692557,58.8998208037583],[-69.18729187291872,58.89475507194865],[-69.1260912609126,58.90150938102818],[-68.97848978489785,58.90150938102818],[-68.98568985689856,58.896443649218526],[-68.98928989289892,58.88631218559922],[-68.99288992889929,58.88124645378957],[-68.89568895688957,58.877869299249824],[-68.78768787687876,58.92177230826678],[-68.77328773287732,58.92177230826678],[-68.76608766087661,58.918395153727005],[-68.76248762487624,58.913329421917354],[-68.75168751687517,58.9082636901077],[-68.73008730087301,58.90319795829805],[-68.64368643686437,58.8981322264884],[-68.61488614886149,58.891377917408875],[-68.53928539285393,58.860983526550996],[-68.50688506885068,58.83734344477264],[-68.49968499684996,58.83227771296299],[-68.40968409684096,58.82383482661356],[-68.40248402484025,58.81876909480391],[-68.39888398883988,58.80863763118464],[-68.39168391683917,58.80019474483521],[-68.370083700837,58.79006328121591],[-68.36288362883629,58.78330897213638],[-68.35568355683556,58.771488931247205],[-68.35928359283592,58.7613574676279],[-68.37728377283773,58.744471694929075],[-68.38448384483844,58.7343402313098],[-68.38448384483844,58.71238872680132],[-68.38088380883808,58.700568685912145],[-68.37368373683736,58.69719153137237],[-68.33768337683377,58.681994335943415],[-68.33048330483304,58.67524002686389],[-68.33048330483304,58.65835425416506],[-68.34848348483484,58.62120555422766],[-68.34848348483484,58.60094262698905],[-68.3340833408334,58.589122586099876],[-68.29088290882909,58.597565472449304],[-68.27288272882728,58.58743400883],[-68.27288272882728,58.5671710815914],[-68.28728287282873,58.548596731622695],[-68.29088290882909,58.535088113463644],[-68.27288272882728,58.52495664984434],[-68.25128251282513,58.52833380438409],[-68.21168211682117,58.548596731622695],[-68.19008190081901,58.54690815435282],[-68.21168211682117,58.508070877145514],[-68.21888218882188,58.48443079536716],[-68.21528215282153,58.46585644539843],[-68.2080820808208,58.45741355904903],[-68.20448204482044,58.44559351815985],[-68.20448204482044,58.43377347727068],[-68.22248222482224,58.42533059092125],[-68.22608226082261,58.41688770457185],[-68.22608226082261,58.39493620006337],[-68.2440824408244,58.352721768316314],[-68.31608316083161,58.25140713212335],[-68.33768337683377,58.18555261859791],[-68.34488344883448,58.17542115497861],[-68.34848348483484,58.17035542316896],[-68.34848348483484,58.15853538227978],[-68.34488344883448,58.148403918660506],[-68.34128341283413,58.14502676412073],[-68.34488344883448,58.13151814596168],[-68.35568355683556,58.12307525961225],[-68.37728377283773,58.11294379599295],[-68.47808478084781,58.04371212792776],[-68.52128521285212,58.031892087038585],[-68.71928719287193,58.01331773706988],[-68.84888848888488,57.97616903713245],[-68.97128971289713,57.960971841703525],[-68.98208982089821,57.9525289553541],[-68.98928989289892,57.9440860690047],[-69.0000900009,57.93564318265527],[-69.04329043290433,57.91875740995644],[-69.04689046890468,57.91538025541669],[-69.14049140491404,57.898494482717865],[-69.22329223292232,57.86134578278043],[-69.37089370893709,57.77016261020677],[-69.14409144091441,57.86978866912986],[-69.1260912609126,57.88329728728891],[-69.10809108091081,57.893428750908214],[-69.03969039690396,57.90862594633714],[-68.94968949689496,57.94070891446492],[-68.75528755287553,57.9727918825927],[-68.68688686886868,57.99305480983128],[-68.60768607686076,57.99812054164093],[-68.46728467284673,58.02007204614941],[-68.41688416884169,58.03864639611811],[-68.4060840608406,58.04708928246754],[-68.40248402484025,58.05553216881694],[-68.39528395283952,58.06397505516637],[-68.39168391683917,58.072417941515766],[-68.37728377283773,58.07748367332542],[-68.34848348483484,58.08423798240494],[-68.33768337683377,58.089303714214594],[-68.31968319683196,58.1095666414532],[-68.30888308883088,58.121386682342376],[-68.30528305283052,58.13320672323155],[-68.30528305283052,58.17710973224851],[-68.30168301683017,58.200749814026864],[-68.29088290882909,58.22101274126544],[-68.27648276482765,58.23114420488474],[-68.25128251282513,58.236209936694394],[-68.24048240482405,58.25140713212335],[-68.24048240482405,58.26998148209205],[-68.24048240482405,58.285178677521],[-68.23328233282332,58.30713018202948],[-68.21888218882188,58.32908168653793],[-68.18648186481865,58.36454180920549],[-68.18648186481865,58.369607541015114],[-68.19008190081901,58.38142758190432],[-68.19008190081901,58.38987046825372],[-68.18648186481865,58.39493620006337],[-68.18288182881828,58.39831335460315],[-68.17568175681757,58.40675624095255],[-68.1720817208172,58.415199127301975],[-68.1720817208172,58.4219534363815],[-68.17568175681757,58.48274221809726],[-68.17568175681757,58.491185104446686],[-68.16488164881649,58.49625083625634],[-68.1360813608136,58.52326807257447],[-68.12168121681216,58.53171095892387],[-68.11088110881109,58.52495664984434],[-68.08928089280893,58.51989091803469],[-68.06768067680676,58.518202340764816],[-68.0460804608046,58.518202340764816],[-68.0280802808028,58.521579495304564],[-68.02448024480245,58.52495664984434],[-68.0280802808028,58.535088113463644],[-68.0280802808028,58.55197388616247],[-68.00648006480064,58.57899112248057],[-67.97407974079741,58.570548236131174],[-67.95247952479524,58.54521957708292],[-67.96687966879668,58.52495664984434],[-67.96687966879668,58.518202340764816],[-67.95247952479524,58.513136608955165],[-67.93447934479344,58.51144803168526],[-67.90927909279092,58.51144803168526],[-67.89127891278912,58.49793941352621],[-67.89487894878948,58.48443079536716],[-67.90927909279092,58.46754502266833],[-67.91647916479164,58.45234782723938],[-67.92367923679237,58.4118219727622],[-67.92367923679237,58.40506766368267],[-67.920079200792,58.40000193187302],[-67.920079200792,58.396624777333244],[-67.91287912879129,58.39155904552359],[-67.90927909279092,58.38311615917419],[-67.90927909279092,58.37636185009467],[-67.90927909279092,58.37129611828502],[-67.90927909279092,58.36791896374524],[-67.90207902079021,58.35947607739584],[-67.8660786607866,58.330770263807835],[-67.86247862478625,58.325704531998184],[-67.86247862478625,58.308818759299356],[-67.86967869678696,58.290244409330654],[-67.8840788407884,58.271670059361924],[-67.89847898478985,58.256472863933],[-67.98487984879849,58.20750412310639],[-68.00288002880028,58.20243839129674],[-68.0820808208082,58.15515822774003],[-68.12528125281253,58.09774660056402],[-68.12888128881288,58.08254940513507],[-68.12168121681216,58.072417941515766],[-68.10008100081001,58.08254940513507],[-68.06768067680676,58.11294379599295],[-68.05328053280532,58.121386682342376],[-68.01728017280172,58.13320672323155],[-67.99927999279993,58.14164960958095],[-67.9920799207992,58.15009249593038],[-67.97407974079741,58.18892977313769],[-67.95247952479524,58.21256985491604],[-67.92727927279273,58.22607847307509],[-67.89487894878948,58.23452135942452],[-67.86247862478625,58.23789851396427],[-67.8660786607866,58.25985001847275],[-67.84447844478444,58.27842436844145],[-67.80127801278013,58.298687295680054],[-67.81927819278192,58.31895022291866],[-67.82287822878229,58.33583599561749],[-67.81927819278192,58.40000193187302],[-67.81927819278192,58.40844481822242],[-67.81207812078121,58.41688770457185],[-67.78687786877869,58.442216363620076],[-67.78687786877869,58.4489706726996],[-67.78687786877869,58.464167868128555],[-67.78687786877869,58.46923359993821],[-67.77247772477725,58.47598790901773],[-67.75447754477544,58.47429933174786],[-67.740077400774,58.46923359993821],[-67.71847718477184,58.459102136318904],[-67.71487714877148,58.45741355904903],[-67.71127711277113,58.45234782723938],[-67.71127711277113,58.44559351815985],[-67.70767707677076,58.44390494088998],[-67.68607686076861,58.43883920908033],[-67.67527675276753,58.423642013651374],[-67.69327693276932,58.40506766368267],[-67.70767707677076,58.38311615917419],[-67.68967689676896,58.35947607739584],[-67.72927729277292,58.334147418347584],[-67.73287732877328,58.32063880018853],[-67.71847718477184,58.298687295680054],[-67.7220772207722,58.29531014114028],[-67.73287732877328,58.285178677521],[-67.71487714877148,58.28855583206075],[-67.69327693276932,58.28686725479088],[-67.67527675276753,58.28011294571135],[-67.66087660876609,58.268292904822175],[-67.65007650076501,58.25140713212335],[-67.64647646476465,58.236209936694394],[-67.65367653676536,58.22101274126544],[-67.69327693276932,58.17204400043886],[-67.70047700477005,58.14164960958095],[-67.69327693276932,58.1095666414532],[-67.67167671676717,58.072417941515766],[-67.68967689676896,58.026826355228934],[-67.70047700477005,58.01500631433976],[-67.71487714877148,58.00149769618071],[-67.72927729277292,57.982923346211976],[-67.740077400774,57.964348996243274],[-67.740077400774,57.942397491734795],[-67.73287732877328,57.937331759925144],[-67.72567725677257,57.93057745084562],[-67.71487714877148,57.92720029630587],[-67.7040770407704,57.928888873575744],[-67.70047700477005,57.937331759925144],[-67.7040770407704,57.94915180081435],[-67.71127711277113,57.96603757351318],[-67.70767707677076,57.991366232561404],[-67.69327693276932,58.00656342799036],[-67.65727657276572,58.031892087038585],[-67.64287642876428,58.04877785973741],[-67.63927639276392,58.06566363243624],[-67.64647646476465,58.080860827865195],[-67.66087660876609,58.09605802329412],[-67.66087660876609,58.116320950532725],[-67.64647646476465,58.138272455041204],[-67.61047610476105,58.17542115497861],[-67.5960759607596,58.200749814026864],[-67.57447574475745,58.22607847307509],[-67.56727567275672,58.23114420488474],[-67.56007560075601,58.23114420488474],[-67.54567545675457,58.23114420488474],[-67.53847538475384,58.23452135942452],[-67.50247502475024,58.263227173012524],[-67.48447484474845,58.2750472139017],[-67.46647466474664,58.285178677521],[-67.43767437674376,58.28686725479088],[-67.39807398073981,58.2834901002511],[-67.3620736207362,58.28686725479088],[-67.33327333273333,58.32401595472828],[-67.29367293672937,58.334147418347584],[-67.23247232472325,58.339213150157235],[-67.2180721807218,58.344278881966886],[-67.20367203672036,58.35103319104641],[-67.1820718207182,58.37129611828502],[-67.16047160471604,58.379739004634416],[-67.14247142471424,58.374673272824765],[-67.12447124471244,58.366230386475365],[-67.11367113671136,58.35947607739584],[-67.09927099270992,58.361164654665714],[-67.08847088470884,58.36285323193559],[-67.07767077670776,58.369607541015114],[-67.06687066870668,58.38142758190432],[-67.06327063270632,58.393247622793496],[-67.06687066870668,58.40000193187302],[-67.0740707407074,58.40844481822242],[-67.08127081270813,58.4219534363815],[-67.04167041670416,58.4219534363815],[-67.02367023670236,58.42701916819115],[-67.00567005670057,58.437150631810425],[-66.96966969669697,58.477676486287635],[-66.9660696606966,58.48780794990691],[-66.9480694806948,58.49793941352621],[-66.90846908469084,58.499627990796085],[-66.88326883268832,58.486119372637035],[-66.89766897668976,58.4489706726996],[-66.87246872468724,58.44390494088998],[-66.86166861668616,58.4405277863502],[-66.85446854468545,58.432084900000774],[-66.85086850868508,58.42533059092125],[-66.84726847268472,58.43377347727068],[-66.840068400684,58.44559351815985],[-66.840068400684,58.4489706726996],[-66.81126811268112,58.464167868128555],[-66.80046800468004,58.477676486287635],[-66.80766807668077,58.49793941352621],[-66.71046710467104,58.49793941352621],[-66.660066600666,58.491185104446686],[-66.63486634866348,58.491185104446686],[-66.61686616866169,58.49793941352621],[-66.660066600666,58.52495664984434],[-66.67086670866708,58.54015384527327],[-66.63846638466384,58.54690815435282],[-66.6240662406624,58.55197388616247],[-66.6240662406624,58.56379392705165],[-66.62766627666277,58.57899112248057],[-66.62766627666277,58.59249974063965],[-66.61686616866169,58.606008358798704],[-66.60246602466025,58.61782839968788],[-66.5880658806588,58.63133701784696],[-66.59166591665917,58.64484563600601],[-66.59526595265952,58.65497709962531],[-66.59886598865988,58.668485717784364],[-66.59526595265952,58.67692860413379],[-66.58446584465844,58.67186287232414],[-66.570065700657,58.67017429505424],[-66.56286562865628,58.681994335943415],[-66.5520655206552,58.71070014953142],[-66.52686526865268,58.71914303588085],[-66.49446494464944,58.71914303588085],[-66.46926469264692,58.722520190420624],[-66.45126451264512,58.744471694929075],[-66.47646476464764,58.749537426738726],[-66.48366483664836,58.75460315854838],[-66.49086490864909,58.76473462216768],[-66.47646476464764,58.771488931247205],[-66.4620646206462,58.78668612667616],[-66.4620646206462,58.80357189937499],[-66.47286472864728,58.81201478572439],[-66.4620646206462,58.82383482661356],[-66.4440644406444,58.83227771296299],[-66.42246422464224,58.83734344477264],[-66.40446404464045,58.84072059931239],[-66.40446404464045,58.842409176582294],[-66.39726397263972,58.84578633112204],[-66.390063900639,58.85085206293169],[-66.38286382863828,58.85422921747147],[-66.37566375663756,58.85254064020157],[-66.36126361263612,58.84916348566182],[-66.34686346863468,58.84578633112204],[-66.34686346863468,58.842409176582294],[-66.35046350463504,58.83734344477264],[-66.34686346863468,58.83227771296299],[-66.29646296462964,58.80357189937499],[-66.25326253262533,58.79512901302556],[-66.23526235262352,58.78330897213638],[-66.210062100621,58.757980313088154],[-66.19566195661956,58.749537426738726],[-66.14526145261452,58.7343402313098],[-66.12726127261273,58.730963076770024],[-66.11646116461164,58.72589734496037],[-66.10926109261092,58.71576588134107],[-66.10566105661056,58.69888010864224],[-66.10206102061021,58.68368291321332],[-66.09126091260912,58.67186287232414],[-66.08046080460804,58.65835425416506],[-66.06246062460625,58.64991136781566],[-66.0480604806048,58.651599945085536],[-66.02646026460265,58.65835425416506],[-66.00846008460084,58.65666567689519],[-65.99765997659976,58.64991136781566],[-66.00486004860048,58.63471417238671],[-65.99045990459904,58.62964844057706],[-65.9580595805958,58.62627128603731],[-65.94365943659436,58.62120555422766],[-65.93645936459365,58.60938551333848],[-65.940059400594,58.5958768951794],[-65.95085950859509,58.58236827702035],[-65.96165961659617,58.5688596588613],[-65.96525965259652,58.56548250432152],[-65.97245972459724,58.56548250432152],[-65.97605976059761,58.56379392705165],[-65.97605976059761,58.55535104070222],[-65.97965979659796,58.55028530889257],[-65.98325983259832,58.54184242254317],[-65.99045990459904,58.535088113463644],[-66.00846008460084,58.526645227114216],[-66.01566015660156,58.51144803168526],[-66.01926019260192,58.49793941352621],[-66.01926019260192,58.491185104446686],[-66.01566015660156,58.47936506355751],[-66.00126001260013,58.45741355904903],[-65.9940599405994,58.4303963227309],[-65.99765997659976,58.40844481822242],[-66.01926019260192,58.39493620006337],[-66.07326073260732,58.379739004634416],[-66.09486094860948,58.35947607739584],[-66.07686076860769,58.33583599561749],[-66.0660606606066,58.32908168653793],[-66.05166051660517,58.33245884107771],[-66.04446044460444,58.344278881966886],[-66.04086040860408,58.361164654665714],[-66.03366033660336,58.37636185009467],[-66.01926019260192,58.388181890983844],[-65.99765997659976,58.393247622793496],[-65.98325983259832,58.393247622793496],[-65.96885968859688,58.396624777333244],[-65.9580595805958,58.40844481822242],[-65.95445954459544,58.415199127301975],[-65.9580595805958,58.42533059092125],[-65.9580595805958,58.432084900000774],[-65.95445954459544,58.437150631810425],[-65.92925929259292,58.442216363620076],[-65.9220592205922,58.442216363620076],[-65.92565925659257,58.459102136318904],[-65.94725947259472,58.46585644539843],[-65.97245972459724,58.46923359993821],[-65.98685986859869,58.477676486287635],[-65.97965979659796,58.48949652717681],[-65.96165961659617,58.50469372260574],[-65.9220592205922,58.53002238165399],[-65.91125911259113,58.53171095892387],[-65.9040590405904,58.53846526800339],[-65.9040590405904,58.548596731622695],[-65.90045900459005,58.558728195242],[-65.90045900459005,58.5671710815914],[-65.89685896858968,58.57392539067092],[-65.88965889658895,58.580679699750476],[-65.87525875258753,58.584056854290225],[-65.84285842858428,58.57392539067092],[-65.82845828458284,58.580679699750476],[-65.85725857258572,58.59249974063965],[-65.86085860858608,58.5958768951794],[-65.86445864458643,58.597565472449304],[-65.87525875258753,58.62289413149753],[-65.87525875258753,58.62795986330718],[-65.89685896858968,58.63977990419636],[-65.91845918459184,58.643157058736136],[-65.93645936459365,58.64822279054576],[-65.94365943659436,58.668485717784364],[-65.94365943659436,58.67524002686389],[-65.96165961659617,58.68874864502297],[-66.01566015660156,58.69043722229284],[-66.04086040860408,58.69719153137237],[-66.03726037260373,58.709011572261545],[-66.03726037260373,58.730963076770024],[-66.03726037260373,58.749537426738726],[-66.04446044460444,58.757980313088154],[-66.09486094860948,58.77317750851708],[-66.10926109261092,58.77993181759663],[-66.09126091260912,58.78837470394603],[-66.04086040860408,58.847474908391945],[-66.02646026460265,58.85929494928112],[-66.01926019260192,58.860983526550996],[-66.0120601206012,58.85760637201122],[-65.97245972459724,58.825523403883466],[-65.94365943659436,58.84072059931239],[-65.86085860858608,58.83227771296299],[-65.82845828458284,58.84072059931239],[-65.81045810458104,58.847474908391945],[-65.79965799657997,58.85422921747147],[-65.7960579605796,58.86267210382087],[-65.80325803258032,58.86773783563052],[-65.8860588605886,58.8711149901703],[-65.93645936459365,58.88124645378957],[-65.96525965259652,58.891377917408875],[-65.98325983259832,58.904886535567954],[-65.98325983259832,58.91670657645713],[-65.94365943659436,58.92514946280653],[-65.9220592205922,58.93359234915596],[-65.87165871658716,58.940346658235484],[-65.86085860858608,58.94372381277523],[-65.85365853658536,58.96060958547406],[-65.8680586805868,58.97749535817289],[-65.8860588605886,58.99269255360184],[-65.8860588605886,59.007889749030795],[-65.8680586805868,59.007889749030795],[-65.75645756457564,58.975806780903014],[-65.7060570605706,58.94878954458488],[-65.68805688056881,58.931903771886056],[-65.67725677256772,58.92852661734631],[-65.670056700567,58.93696950369571],[-65.670056700567,58.94878954458488],[-65.67365673656737,58.96060958547406],[-65.68085680856808,58.967363894553614],[-65.68805688056881,58.97411820363314],[-65.69885698856989,58.97918393544279],[-65.79245792457924,59.00451259449102],[-65.78525785257852,59.016332635380195],[-65.77085770857708,59.01970978991997],[-65.73845738457385,59.0180212126501],[-65.74925749257493,59.02308694445972],[-65.7780577805778,59.03152983080915],[-65.75285752857528,59.03321840807902],[-65.72765727657276,59.038284139888674],[-65.68445684456844,59.05348133531763],[-65.68445684456844,59.0467270262381],[-65.65565655656556,59.0467270262381],[-65.60525605256052,59.012955480840446],[-65.5080550805508,58.98762682179219],[-65.490054900549,58.99100397633197],[-65.50085500855008,59.00451259449102],[-65.51525515255152,59.012955480840446],[-65.53325533255332,59.016332635380195],[-65.54765547655477,59.0180212126501],[-65.56205562055621,59.021398367189846],[-65.59445594455944,59.0467270262381],[-65.580055800558,59.051792758047725],[-65.5440554405544,59.06361279893693],[-65.52965529655296,59.06698995347668],[-65.51165511655117,59.065301376206804],[-65.50085500855008,59.06361279893693],[-65.47565475654756,59.05348133531763],[-65.44325443254432,59.0450384489682],[-65.34965349653496,59.03997271715855],[-65.32085320853209,59.0467270262381],[-65.32085320853209,59.05348133531763],[-65.34965349653496,59.065301376206804],[-65.42525425254252,59.06361279893693],[-65.46845468454684,59.083875726175506],[-65.51165511655117,59.092318612524934],[-65.52965529655296,59.09400718979481],[-65.53325533255332,59.09738434433456],[-65.53685536855369,59.10413865341411],[-65.54045540455404,59.10920438522376],[-65.54765547655477,59.10413865341411],[-65.55485554855548,59.09738434433456],[-65.55485554855548,59.092318612524934],[-65.55845558455584,59.08725288071528],[-65.56565565655656,59.08049857163576],[-65.580055800558,59.07543283982611],[-65.60165601656016,59.070367108016455],[-65.62685626856268,59.070367108016455],[-65.64125641256412,59.073744262556204],[-65.6520565205652,59.083875726175506],[-65.66645666456664,59.114270117033385],[-65.70965709657096,59.15141881697082],[-65.71685716857168,59.15817312605034],[-65.71685716857168,59.17505889874917],[-65.70965709657096,59.18519036236847],[-65.69885698856989,59.191944671448],[-65.68445684456844,59.19701040325765],[-65.70245702457024,59.20714186687695],[-65.71685716857168,59.2105190214167],[-65.73125731257312,59.21558475322635],[-65.74565745657456,59.230781948655306],[-65.73485734857348,59.24091341227461],[-65.74565745657456,59.252733453163785],[-65.7420574205742,59.26286491678309],[-65.7420574205742,59.26793064859271],[-65.73845738457385,59.27130780313249],[-65.72765727657276,59.27130780313249],[-65.68085680856808,59.26455349405296],[-65.6520565205652,59.24429056681436],[-65.59445594455944,59.18856751690825],[-65.59445594455944,59.20714186687695],[-65.61245612456125,59.24935629862401],[-65.60165601656016,59.257799184973436],[-65.5980559805598,59.25611060770353],[-65.59085590855908,59.25104487589391],[-65.58365583655836,59.24597914408426],[-65.580055800558,59.24429056681436],[-65.56925569255692,59.24597914408426],[-65.56565565655656,59.24935629862401],[-65.56205562055621,59.25442203043366],[-65.55485554855548,59.261176339513185],[-65.5440554405544,59.26455349405296],[-65.51165511655117,59.25442203043366],[-65.490054900549,59.257799184973436],[-65.490054900549,59.26455349405296],[-65.51165511655117,59.27299638040236],[-65.54045540455404,59.29494788491084],[-65.55485554855548,59.30001361672049],[-65.56565565655656,59.30676792580002],[-65.57285572855729,59.32703085303862],[-65.580055800558,59.3489823575471],[-65.580055800558,59.364179552976026],[-65.55845558455584,59.3759995938652],[-65.51165511655117,59.3591138211664],[-65.37125371253713,59.279750689481915],[-65.35685356853568,59.28143926675179],[-65.40365403654036,59.34053947119767],[-65.42525425254252,59.342228048467575],[-65.43965439654396,59.35235951208685],[-65.44685446854469,59.3675567075158],[-65.44325443254432,59.38781963475441],[-65.43245432454324,59.40301683018333],[-65.4180541805418,59.40639398472311],[-65.3820538205382,59.40301683018333],[-65.40725407254072,59.418214025612286],[-65.49725497254973,59.43678837558099],[-65.49725497254973,59.443542684660514],[-65.4720547205472,59.443542684660514],[-65.4720547205472,59.45029699374007],[-65.49365493654936,59.45873988008947],[-65.51885518855188,59.46549418916899],[-65.5440554405544,59.47393707551842],[-65.55845558455584,59.49082284821725],[-65.5260552605526,59.489134270947346],[-65.45765457654576,59.47224849824852],[-65.42165421654217,59.470559920978644],[-65.3820538205382,59.48237996186782],[-65.3640536405364,59.484068539137695],[-65.24525245252453,59.47224849824852],[-65.2020520205202,59.46380561189912],[-65.19845198451983,59.462117034629244],[-65.19125191251912,59.46380561189912],[-65.1840518405184,59.46380561189912],[-65.1840518405184,59.46042845735934],[-65.18045180451804,59.45198557100994],[-65.17685176851768,59.44523126193042],[-65.17325173251731,59.43847695285086],[-65.06165061650616,59.38781963475441],[-65.05445054450544,59.381065325674854],[-65.040050400504,59.382753902944756],[-65.0040500405004,59.3759995938652],[-64.98244982449825,59.381065325674854],[-65.03285032850329,59.391196789294156],[-65.08325083250833,59.41145971653276],[-65.12645126451264,59.43678837558099],[-65.18045180451804,59.475625652788295],[-65.2020520205202,59.48237996186782],[-65.25245252452524,59.49082284821725],[-65.31365313653136,59.50939719818595],[-65.39285392853928,59.51277435272573],[-65.41085410854109,59.51784008453535],[-65.42885428854288,59.53134870269443],[-65.490054900549,59.62590902980784],[-65.51885518855188,59.70189500695258],[-65.52965529655296,59.71878077965141],[-65.54765547655477,59.73060082054059],[-65.52245522455225,59.750863747779164],[-65.48645486454865,59.760995211398466],[-65.46485464854648,59.77112667501777],[-65.49725497254973,59.79307817952625],[-65.490054900549,59.79983248860577],[-65.490054900549,59.7981439113359],[-65.48285482854828,59.79983248860577],[-65.46125461254613,59.79307817952625],[-65.4540545405454,59.78970102498647],[-65.44685446854469,59.78632387044672],[-65.43965439654396,59.79307817952625],[-65.43245432454324,59.809963952225075],[-65.4180541805418,59.81502968403473],[-65.40005400054,59.809963952225075],[-65.3820538205382,59.80320964314555],[-65.36765367653676,59.79983248860577],[-65.37485374853748,59.809963952225075],[-65.37845378453784,59.82009541584438],[-65.37845378453784,59.83022687946365],[-65.36765367653676,59.83360403400343],[-65.35325353253532,59.8352926112733],[-65.33525335253353,59.845424074892605],[-65.32445324453244,59.84880122943238],[-65.31005310053101,59.845424074892605],[-65.21285212852128,59.82009541584438],[-65.19485194851949,59.813341106764824],[-65.1660516605166,59.79307817952625],[-65.11565115651156,59.782946715906945],[-65.08325083250833,59.77112667501777],[-65.05085050850508,59.76606094320812],[-64.98244982449825,59.76437236593824],[-64.98244982449825,59.77281525228764],[-65.05445054450544,59.77956956136717],[-65.06525065250652,59.782946715906945],[-65.0940509405094,59.796455334065996],[-65.14085140851408,59.8065867976853],[-65.19485194851949,59.8352926112733],[-65.22365223652235,59.840358343082954],[-65.22365223652235,59.84880122943238],[-65.220052200522,59.84880122943238],[-65.2020520205202,59.85386696124203],[-65.20925209252093,59.86399842486131],[-65.22725227252272,59.875818465750484],[-65.23085230852308,59.88257277483004],[-65.23085230852308,59.89270423844931],[-65.22365223652235,59.89608139298909],[-65.21645216452164,59.894392815719215],[-65.20925209252093,59.88932708390956],[-65.19485194851949,59.88763850663966],[-65.1660516605166,59.87750704302039],[-65.14085140851408,59.87075273394083],[-65.130051300513,59.88594992936979],[-65.13725137251372,59.899458547528866],[-65.15885158851589,59.907901433878266],[-65.20925209252093,59.916344320227694],[-65.20925209252093,59.92309862930722],[-65.18045180451804,59.92141005203732],[-65.16965169651696,59.92309862930722],[-65.15165151651516,59.929852938386745],[-65.14445144451444,59.929852938386745],[-65.14085140851408,59.93154151565662],[-65.14085140851408,59.934918670196396],[-65.14445144451444,59.93998440200605],[-65.14085140851408,59.943361556545796],[-65.14085140851408,59.94673871108557],[-65.14085140851408,59.951804442895224],[-65.14085140851408,59.95518159743497],[-65.13365133651337,59.956870174704875],[-65.11925119251192,59.95518159743497],[-65.10845108451085,59.951804442895224],[-65.09765097650975,59.94673871108557],[-65.07965079650796,59.929852938386745],[-65.07245072450723,59.943361556545796],[-65.08325083250833,59.956870174704875],[-65.130051300513,59.97713310194345],[-65.1120511205112,59.9821988337531],[-65.09765097650975,59.9821988337531],[-65.08325083250833,59.978821679213326],[-65.06525065250652,59.97713310194345],[-65.0760507605076,59.98895314283263],[-65.09045090450904,59.99570745191215],[-65.10485104851048,60.000773183721805],[-65.11925119251192,60.00752749280136],[-65.12285122851227,60.019347533690535],[-65.12285122851227,60.032856151849586],[-65.130051300513,60.03961046092911],[-65.130051300513,60.04636477000864],[-65.06885068850688,60.04636477000864],[-65.04725047250471,60.054807656358065],[-65.02565025650256,60.08013631540629],[-65.05445054450544,60.08857920175572],[-65.06525065250652,60.095333510835246],[-65.06165061650616,60.103776397184646],[-65.05085050850508,60.1105307062642],[-65.03645036450364,60.11559643807385],[-65.01845018450184,60.120662169883474],[-65.01125011250112,60.1189735926136],[-65.00765007650077,60.1105307062642],[-65.00045000450004,60.11559643807385],[-64.99324993249932,60.125727901693125],[-64.98964989649896,60.1291050562329],[-64.99324993249932,60.130793633502776],[-64.99684996849967,60.1375479425823],[-64.99684996849967,60.14599082893173],[-64.99324993249932,60.152745138011255],[-64.98244982449825,60.15612229255103],[-64.97164971649715,60.152745138011255],[-64.96444964449644,60.15443371528113],[-64.96444964449644,60.17300806524986],[-64.950049500495,60.193270992488436],[-64.92484924849248,60.19664814702821],[-64.89244892448924,60.19495956975834],[-64.87444874448744,60.20340245610774],[-64.88164881648817,60.21859965153669],[-64.95724957249573,60.25912550601387],[-64.90684906849069,60.272634124172924],[-64.88524885248852,60.28276558779223],[-64.86364863648636,60.29627420595128],[-64.84564845648455,60.313159978650106],[-64.83844838448384,60.32835717407906],[-64.83844838448384,60.34355436950801],[-64.860048600486,60.35537441039719],[-64.860048600486,60.36044014220684],[-64.84924849248492,60.36550587401649],[-64.83844838448384,60.36550587401649],[-64.83124831248313,60.362128719476715],[-64.82044820448203,60.36044014220684],[-64.77724777247772,60.36044014220684],[-64.75924759247592,60.357062987667064],[-64.72324723247232,60.34355436950801],[-64.70884708847088,60.34186579223811],[-64.68724687246872,60.335111483158585],[-64.67644676446764,60.33342290588871],[-64.68364683646836,60.34355436950801],[-64.68724687246872,60.34524294677789],[-64.6980469804698,60.34693152404776],[-64.6980469804698,60.35537441039719],[-64.67644676446764,60.35030867858754],[-64.6260462604626,60.34693152404776],[-64.61164611646116,60.33680006042846],[-64.59724597245972,60.33004575134893],[-64.54684546845468,60.30640566957058],[-64.53244532445324,60.304717092300706],[-64.4640446404464,60.29120847414163],[-64.4460444604446,60.28276558779223],[-64.43164431644315,60.269256969633176],[-64.41724417244173,60.25912550601387],[-64.38124381243811,60.245616887854794],[-64.39924399243992,60.24055115604517],[-64.42444424444244,60.242239733315046],[-64.45324453244532,60.250682619664445],[-64.49644496444964,60.272634124172924],[-64.58644586445864,60.29289705141153],[-64.63684636846368,60.29289705141153],[-64.680046800468,60.277699855982576],[-64.75924759247592,60.23886257877527],[-64.73044730447305,60.23548542423552],[-64.65124651246512,60.264191237823525],[-64.61884618846189,60.272634124172924],[-64.55764557645576,60.269256969633176],[-64.53964539645396,60.2658798150934],[-64.48564485644856,60.24055115604517],[-64.4640446404464,60.23886257877527],[-64.4820448204482,60.22028822880657],[-64.54324543245433,60.193270992488436],[-64.56484564845648,60.17638521978961],[-64.51444514445144,60.17638521978961],[-64.50364503645037,60.17807379705951],[-64.48564485644856,60.188205260678785],[-64.46044460444604,60.19833672429809],[-64.43884438844388,60.21353391972704],[-64.41724417244173,60.223665383346344],[-64.39564395643956,60.21691107426679],[-64.40644406444063,60.21353391972704],[-64.41364413644136,60.20846818791739],[-64.42444424444244,60.201713878837865],[-64.4280442804428,60.19664814702821],[-64.410044100441,60.19664814702821],[-64.39924399243992,60.18989383794869],[-64.3920439204392,60.179762374329385],[-64.38124381243811,60.16963091071008],[-64.39924399243992,60.15105656074138],[-64.49644496444964,60.11559643807385],[-64.49644496444964,60.10715355172442],[-64.48564485644856,60.10546497445455],[-64.47844478444784,60.10208781991477],[-64.46764467644677,60.09702208810512],[-64.4640446404464,60.08689062448585],[-64.49284492844929,60.081824892676195],[-64.5720457204572,60.08013631540629],[-64.63324633246332,60.07169342905689],[-64.6620466204662,60.06156196543759],[-64.67644676446764,60.049741924548414],[-64.69084690846908,60.04298761546889],[-64.81324813248132,60.00752749280136],[-64.8240482404824,60.000773183721805],[-64.82764827648276,59.99064172010253],[-64.8240482404824,59.98557598829288],[-64.80964809648096,59.98388741102298],[-64.8060480604806,59.98388741102298],[-64.58644586445864,60.059873388167716],[-64.5540455404554,60.054807656358065],[-64.50364503645037,60.05649623362794],[-64.45324453244532,60.06662769724724],[-64.4280442804428,60.08351346994607],[-64.42084420844208,60.10208781991477],[-64.39924399243992,60.120662169883474],[-64.37764377643776,60.1291050562329],[-64.36684366843669,60.1189735926136],[-64.37044370443704,60.09702208810512],[-64.3740437404374,60.081824892676195],[-64.38484384843848,60.076759160866544],[-64.40284402844028,60.08689062448585],[-64.41364413644136,60.07169342905689],[-64.3740437404374,60.03961046092911],[-64.38844388443884,60.02610184277006],[-64.3920439204392,60.014281801880884],[-64.42084420844208,60.00752749280136],[-64.53964539645396,60.01090464734111],[-64.48924489244892,60.00415033826158],[-64.41724417244173,59.98557598829288],[-64.39924399243992,59.97544452467358],[-64.39564395643956,59.956870174704875],[-64.40284402844028,59.94167297927592],[-64.41724417244173,59.93323009292649],[-64.43884438844388,59.929852938386745],[-64.44964449644496,59.929852938386745],[-64.50364503645037,59.91127858841804],[-64.51804518045181,59.902835702068614],[-64.49644496444964,59.89776997025896],[-64.47484474844748,59.90114712479874],[-64.43524435244352,59.91972147476744],[-64.42444424444244,59.92309862930722],[-64.410044100441,59.92478720657709],[-64.38124381243811,59.92309862930722],[-64.37044370443704,59.92816436111687],[-64.35964359643596,59.93660724746627],[-64.35964359643596,59.94673871108557],[-64.36324363243632,59.951804442895224],[-64.36324363243632,59.95855875197475],[-64.34884348843488,59.9737559474037],[-64.32364323643236,59.98895314283263],[-64.30564305643055,59.997396029182056],[-64.24444244442444,59.99570745191215],[-64.22284222842228,59.997396029182056],[-64.22284222842228,60.00415033826158],[-64.26244262442624,60.00246176099171],[-64.3020430204302,60.00921607007123],[-64.32724327243272,60.027790420039935],[-64.32724327243272,60.059873388167716],[-64.3020430204302,60.05143050181829],[-64.27684276842768,60.04805334727854],[-64.21924219242192,60.04636477000864],[-64.21564215642157,60.04467619273876],[-64.21564215642157,60.03623330638936],[-64.2120421204212,60.032856151849586],[-64.18324183241832,60.03116757457971],[-64.18324183241832,60.032856151849586],[-64.17244172441724,60.022724688230284],[-64.1580415804158,59.99908460645193],[-64.14724147241472,59.99064172010253],[-64.14724147241472,59.98388741102298],[-64.17964179641795,59.97544452467358],[-64.27324273242732,59.9636244837844],[-64.29844298442984,59.943361556545796],[-64.230042300423,59.94167297927592],[-64.20484204842047,59.93323009292649],[-64.18324183241832,59.916344320227694],[-64.1940419404194,59.90114712479874],[-64.2120421204212,59.88932708390956],[-64.23364233642336,59.88257277483004],[-64.25884258842588,59.88257277483004],[-64.25884258842588,59.87412988848061],[-64.21924219242192,59.87412988848061],[-64.19764197641976,59.875818465750484],[-64.18324183241832,59.88257277483004],[-64.16884168841688,59.89270423844931],[-64.16164161641616,59.902835702068614],[-64.15444154441543,59.91127858841804],[-64.13644136441364,59.916344320227694],[-64.12564125641256,59.907901433878266],[-64.13644136441364,59.88932708390956],[-64.16164161641616,59.86062127032156],[-64.16884168841688,59.845424074892605],[-64.1760417604176,59.83022687946365],[-64.1760417604176,59.796455334065996],[-64.1940419404194,59.777880984097294],[-64.25884258842588,59.788012447716596],[-64.2660426604266,59.76437236593824],[-64.2480424804248,59.742420861429764],[-64.2120421204212,59.715403625111634],[-64.1760417604176,59.693452120603155],[-64.14724147241472,59.68332065698388],[-64.03924039240393,59.68332065698388],[-63.963639636396366,59.69514069787306],[-63.942039420394195,59.690074966063406],[-63.95643956439564,59.67487777063445],[-63.97083970839708,59.663057729745276],[-63.94563945639456,59.663057729745276],[-63.93123931239312,59.6613691524754],[-63.92043920439204,59.65630342066575],[-63.95643956439564,59.64617195704645],[-63.9960399603996,59.64786053431632],[-64.0320403204032,59.644483379776574],[-64.06084060840608,59.62084329799822],[-64.0680406804068,59.59213748441019],[-64.07164071640716,59.57525171171139],[-64.09324093240932,59.56174309355231],[-64.1040410404104,59.546545898123355],[-64.11484114841149,59.53134870269443],[-64.1220412204122,59.51784008453535],[-64.06444064440645,59.54485732085348],[-64.03924039240393,59.56174309355231],[-64.03924039240393,59.58031744352101],[-64.0320403204032,59.58031744352101],[-64.0320403204032,59.61071183437892],[-64.00684006840068,59.62422045253797],[-63.97443974439744,59.62422045253797],[-63.94563945639456,59.61071183437892],[-63.888038880388805,59.617466143458444],[-63.862838628386285,59.61071183437892],[-63.87723877238771,59.58369459806079],[-63.891638916389155,59.57694028898126],[-63.92763927639275,59.573563134441486],[-63.942039420394195,59.56680882536196],[-63.98163981639816,59.52628297088478],[-63.98163981639816,59.506020043646174],[-63.967239672396715,59.51277435272573],[-63.93483934839348,59.53979158904383],[-63.92043920439204,59.54992305266313],[-63.87363873638736,59.573563134441486],[-63.765637656376555,59.54823447539326],[-63.736837368373685,59.53134870269443],[-63.72603726037259,59.51952866180525],[-63.72963729637296,59.50939719818595],[-63.736837368373685,59.497577157296774],[-63.75843758437584,59.47731423005817],[-63.780037800378,59.45029699374007],[-63.780037800378,59.443542684660514],[-63.78363783637836,59.440165530120765],[-63.787237872378725,59.43341122104124],[-63.787237872378725,59.42496833469181],[-63.79443794437944,59.42159118015206],[-63.999639996399964,59.418214025612286],[-64.03564035640356,59.40977113926286],[-64.06444064440645,59.39626252110381],[-64.06084060840608,59.38781963475441],[-64.05364053640535,59.382753902944756],[-64.04284042840428,59.381065325674854],[-64.0320403204032,59.381065325674854],[-64.03924039240393,59.381065325674854],[-63.999639996399964,59.38950821202428],[-63.960039600396,59.391196789294156],[-63.80523805238052,59.37431101659533],[-63.790837908379075,59.37937674840498],[-63.780037800378,59.38444248021463],[-63.765637656376555,59.38950821202428],[-63.75123751237511,59.38781963475441],[-63.75483754837548,59.3759995938652],[-63.75843758437584,59.372622439325454],[-63.765637656376555,59.3675567075158],[-63.75123751237511,59.36249097570615],[-63.740437404374035,59.364179552976026],[-63.72603726037259,59.3675567075158],[-63.7080370803708,59.3675567075158],[-63.72603726037259,59.350670934816975],[-63.7440374403744,59.30845650306992],[-63.75483754837548,59.28988215310119],[-63.77643776437763,59.26286491678309],[-63.780037800378,59.261176339513185],[-63.78363783637836,59.257799184973436],[-63.82683826838267,59.252733453163785],[-63.82683826838267,59.24429056681436],[-63.77643776437763,59.247667721354134],[-63.75123751237511,59.25442203043366],[-63.72963729637296,59.26455349405296],[-63.71883718837188,59.28143926675179],[-63.69723697236972,59.32534227576875],[-63.686436864368645,59.33378516211815],[-63.67563675636755,59.3388508939278],[-63.661236612366125,59.36249097570615],[-63.65043650436503,59.3675567075158],[-63.64323643236432,59.36586813024593],[-63.628836288362876,59.355736666626626],[-63.62523625236253,59.35404808935675],[-63.553235532355316,59.35404808935675],[-63.53163531635316,59.3472937802772],[-63.53163531635316,59.3388508939278],[-63.53163531635316,59.33547373938802],[-63.524435244352446,59.33209658484827],[-63.524435244352446,59.323653698498845],[-63.524435244352446,59.31689938941932],[-63.528035280352796,59.31183365760967],[-63.53163531635316,59.30676792580002],[-63.53163531635316,59.279750689481915],[-63.535235352353524,59.26961922586261],[-63.5460354603546,59.257799184973436],[-63.553235532355316,59.252733453163785],[-63.610836108361084,59.22740479411553],[-63.62523625236253,59.22402763957578],[-63.639636396363954,59.22402763957578],[-63.636036360363605,59.21896190776613],[-63.628836288362876,59.217273330496255],[-63.614436144361434,59.217273330496255],[-63.62163621636216,59.217273330496255],[-63.603636036360356,59.21389617595648],[-63.57123571235712,59.21558475322635],[-63.54243542435424,59.21896190776613],[-63.53163531635316,59.22740479411553],[-63.48123481234812,59.27130780313249],[-63.46683466834668,59.27806211221201],[-63.41643416434164,59.29157073037109],[-63.39123391233912,59.293259307640966],[-63.38043380433804,59.27806211221201],[-63.387633876338754,59.26793064859271],[-63.40563405634056,59.25611060770353],[-63.43083430834308,59.247667721354134],[-63.448834488344886,59.24429056681436],[-63.438034380343794,59.22909337138543],[-63.44523445234452,59.217273330496255],[-63.4560345603456,59.20714186687695],[-63.463234632346314,59.19363324871787],[-63.4560345603456,59.19363324871787],[-63.423634236342366,59.20714186687695],[-63.409234092340924,59.2105190214167],[-63.409234092340924,59.21558475322635],[-63.398433984339846,59.21896190776613],[-63.384033840338404,59.21896190776613],[-63.373233732337326,59.217273330496255],[-63.3660336603366,59.20883044414683],[-63.362433624336234,59.198698980527524],[-63.362433624336234,59.18856751690825],[-63.376833768337676,59.1835017850986],[-63.39123391233912,59.17505889874917],[-63.427234272342716,59.13453304427199],[-63.44163441634416,59.12102442611294],[-63.46683466834668,59.114270117033385],[-63.52083520835208,59.10751580795386],[-63.54243542435424,59.09738434433456],[-63.560435604356044,59.08218714890563],[-63.5820358203582,59.07543283982611],[-63.661236612366125,59.070367108016455],[-63.71883718837188,59.056858489857376],[-63.74763747637476,59.05348133531763],[-63.77643776437763,59.0551699125875],[-63.82323823238232,59.06867853074655],[-63.963639636396366,59.08049857163576],[-63.97443974439744,59.078809994365855],[-63.98523985239852,59.073744262556204],[-63.992439924399235,59.065301376206804],[-63.9960399603996,59.056858489857376],[-64.00324003240031,59.048415603507976],[-64.02844028440283,59.038284139888674],[-64.03924039240393,59.03152983080915],[-64.03924039240393,59.0180212126501],[-64.02124021240212,59.01970978991997],[-63.97083970839708,59.0365955626188],[-63.95643956439564,59.0551699125875],[-63.94563945639456,59.06023564439715],[-63.89523895238952,59.06023564439715],[-63.89523895238952,59.05348133531763],[-63.916839168391675,59.0264640989995],[-63.9060390603906,58.989315399062065],[-63.88083880838808,58.96229816274396],[-63.85923859238592,58.96398674001384],[-63.85923859238592,58.97918393544279],[-63.866438664386635,58.99606970814162],[-63.88083880838808,59.0180212126501],[-63.870038700387,59.03321840807902],[-63.85203852038519,59.0365955626188],[-63.83043830438304,59.038284139888674],[-63.812438124381245,59.0467270262381],[-63.780037800378,59.02815267626937],[-63.762037620376205,59.021398367189846],[-63.7440374403744,59.0180212126501],[-63.72243722437224,59.01970978991997],[-63.661236612366125,59.038284139888674],[-63.6180361803618,59.04166129442845],[-63.535235352353524,59.0365955626188],[-63.524435244352446,59.038284139888674],[-63.51723517235172,59.043349871698325],[-63.513635136351354,59.05010418077785],[-63.50643506435064,59.0551699125875],[-63.49563495634956,59.06023564439715],[-63.459634596345964,59.070367108016455],[-63.452434524345236,59.070367108016455],[-63.438034380343794,59.06361279893693],[-63.420034200342,59.065301376206804],[-63.40563405634056,59.07205568528633],[-63.402034020340196,59.083875726175506],[-63.387633876338754,59.10245007614421],[-63.351633516335156,59.10413865341411],[-63.28683286832867,59.09400718979481],[-63.28683286832867,59.08894145798516],[-63.29043290432904,59.07712141709598],[-63.29043290432904,59.073744262556204],[-63.250832508325075,59.07712141709598],[-63.22923229232292,59.073744262556204],[-63.21123211232111,59.06361279893693],[-63.18963189631896,59.06023564439715],[-63.15723157231572,59.06361279893693],[-63.1320313203132,59.06192422166703],[-63.12843128431284,59.0467270262381],[-63.16083160831607,59.029841253539274],[-63.34083340833408,59.03152983080915],[-63.34083340833408,59.02477552172962],[-63.250832508325075,59.012955480840446],[-63.222032220322205,59.00451259449102],[-63.26883268832688,58.97918393544279],[-63.29043290432904,58.96398674001384],[-63.30483304833048,58.94372381277523],[-63.28323283232832,58.950478121854786],[-63.240032400324,58.975806780903014],[-63.21483214832148,58.98424966725244],[-63.200432004320035,58.985938244522316],[-63.18243182431824,58.98424966725244],[-63.1680316803168,58.97749535817289],[-63.1680316803168,58.96398674001384],[-63.175231752317515,58.95723243093431],[-63.19323193231932,58.953855276394535],[-63.22923229232292,58.950478121854786],[-63.22923229232292,58.94372381277523],[-63.21123211232111,58.94372381277523],[-63.18963189631896,58.940346658235484],[-63.171631716317165,58.93359234915596],[-63.16083160831607,58.92177230826678],[-63.18603186031859,58.91501799918723],[-63.23643236432363,58.88124645378957],[-63.2580325803258,58.87449214471005],[-63.326433264332636,58.860983526550996],[-63.31563315633156,58.855917794741345],[-63.31203312033119,58.855917794741345],[-63.297632976329766,58.85254064020157],[-63.276032760327595,58.85254064020157],[-63.22923229232292,58.860983526550996],[-63.196831968319685,58.85929494928112],[-63.18243182431824,58.86436068109077],[-63.1680316803168,58.88124645378957],[-63.15363153631536,58.87449214471005],[-63.17883178831788,58.84072059931239],[-63.17883178831788,58.828900558423214],[-63.15363153631536,58.825523403883466],[-63.13923139231392,58.833966290232866],[-63.124831248312475,58.847474908391945],[-63.11763117631176,58.86267210382087],[-63.121231212312125,58.87449214471005],[-63.09243092430924,58.89475507194865],[-63.05283052830528,58.90150938102818],[-63.01323013230132,58.8981322264884],[-62.9880298802988,58.88124645378957],[-63.02763027630276,58.87618072197995],[-63.049230492304915,58.8711149901703],[-63.05283052830528,58.860983526550996],[-63.0420304203042,58.85929494928112],[-62.92682926829268,58.82383482661356],[-62.9160291602916,58.81201478572439],[-62.90882908829087,58.79681759029546],[-62.912429124291236,58.784997549406285],[-62.9160291602916,58.77486608578698],[-62.9160291602916,58.76473462216768],[-62.9160291602916,58.75966889035803],[-62.9160291602916,58.757980313088154],[-62.919629196291964,58.75629173581825],[-62.9160291602916,58.75122600400863],[-63.03483034830347,58.71914303588085],[-63.045630456304565,58.71070014953142],[-63.03843038430384,58.709011572261545],[-63.024030240302395,58.70225726318202],[-63.020430204302045,58.70225726318202],[-62.944829448294485,58.70225726318202],[-62.919629196291964,58.70732299499167],[-62.894428944289444,58.714077304071196],[-62.872828728287274,58.71576588134107],[-62.85482854828548,58.70225726318202],[-62.844028440284404,58.68537149048319],[-62.847628476284754,58.668485717784364],[-62.85842858428583,58.65497709962531],[-62.872828728287274,58.64484563600601],[-62.887228872288716,58.63977990419636],[-62.90882908829087,58.638091326926485],[-62.9160291602916,58.63133701784696],[-62.919629196291964,58.62289413149753],[-62.919629196291964,58.616139822418006],[-62.923229232292314,58.606008358798704],[-62.93402934029339,58.5958768951794],[-63.0780307803078,58.558728195242],[-63.124831248312475,58.53171095892387],[-63.15363153631536,58.52495664984434],[-63.16083160831607,58.51989091803469],[-63.16443164431644,58.508070877145514],[-63.1680316803168,58.50469372260574],[-63.175231752317515,58.50300514533586],[-63.27963279632796,58.50638229987564],[-63.30483304833048,58.51144803168526],[-63.326433264332636,58.49625083625634],[-63.36963369633696,58.49793941352621],[-63.412834128341274,58.508070877145514],[-63.44163441634416,58.52495664984434],[-63.448834488344886,58.50469372260574],[-63.47043470434704,58.48949652717681],[-63.499234992349926,58.48105364082738],[-63.524435244352446,58.477676486287635],[-63.39123391233912,58.491185104446686],[-63.373233732337326,58.491185104446686],[-63.35523355233552,58.48780794990691],[-63.34083340833408,58.47936506355751],[-63.34083340833408,58.46247929085868],[-63.348033480334806,58.45741355904903],[-63.387633876338754,58.428707745461026],[-63.409234092340924,58.40675624095255],[-63.420034200342,58.40000193187302],[-63.434434344343444,58.39155904552359],[-63.488434884348834,58.37805042736454],[-63.535235352353524,58.352721768316314],[-63.5820358203582,58.317261645648756],[-63.59283592835928,58.30544160475958],[-63.56763567635676,58.30544160475958],[-63.5460354603546,58.312195913839105],[-63.488434884348834,58.344278881966886],[-63.420034200342,58.36791896374524],[-63.26523265232652,58.46923359993821],[-63.26523265232652,58.46247929085868],[-63.247232472324725,58.47092217720808],[-63.14283142831428,58.477676486287635],[-63.124831248312475,58.47598790901773],[-63.10683106831068,58.46923359993821],[-63.08523085230851,58.455724981779156],[-63.099630996309955,58.44559351815985],[-63.12843128431284,58.415199127301975],[-63.15723157231572,58.39493620006337],[-63.16443164431644,58.38311615917419],[-63.16083160831607,58.36791896374524],[-63.15363153631536,58.38142758190432],[-63.13923139231392,58.38311615917419],[-63.0780307803078,58.442216363620076],[-63.06363063630636,58.45234782723938],[-63.05283052830528,58.45234782723938],[-63.03123031230312,58.442216363620076],[-63.02763027630276,58.4405277863502],[-63.02763027630276,58.437150631810425],[-63.024030240302395,58.432084900000774],[-63.01683016830168,58.428707745461026],[-63.00963009630095,58.428707745461026],[-62.98442984429843,58.437150631810425],[-62.97722977229772,58.44728209542973],[-62.95922959229591,58.459102136318904],[-62.937629376293756,58.46754502266833],[-62.9160291602916,58.46923359993821],[-62.85482854828548,58.477676486287635],[-62.844028440284404,58.47598790901773],[-62.83322833228331,58.47092217720808],[-62.822428224282234,58.47092217720808],[-62.818828188281884,58.48443079536716],[-62.811628116281156,58.48949652717681],[-62.80442804428044,58.494562258986434],[-62.797227972279714,58.49793941352621],[-62.78282782827827,58.49793941352621],[-62.793627936279364,58.48105364082738],[-62.793627936279364,58.46585644539843],[-62.786427864278636,58.459102136318904],[-62.772027720277194,58.46247929085868],[-62.768427684276844,58.46923359993821],[-62.761227612276116,58.48443079536716],[-62.75762757627575,58.491185104446686],[-62.743227432274324,58.49625083625634],[-62.73242732427323,58.49625083625634],[-62.721627216272154,58.49287368171656],[-62.70722707227071,58.491185104446686],[-62.62082620826207,58.50638229987564],[-62.57762577625776,58.50469372260574],[-62.559625596255955,58.477676486287635],[-62.60642606426063,58.455724981779156],[-62.60282602826028,58.44728209542973],[-62.59922599225992,58.442216363620076],[-62.617226172261724,58.43883920908033],[-62.63162631626315,58.432084900000774],[-62.65322653226532,58.415199127301975],[-62.6280262802628,58.38649331371394],[-62.62082620826207,58.37129611828502],[-62.63162631626315,58.35947607739584],[-62.6280262802628,58.352721768316314],[-62.62082620826207,58.33752457288736],[-62.62082620826207,58.32063880018853],[-62.62442624426244,58.308818759299356],[-62.635226352263516,58.30206445021983],[-62.710827108271076,58.285178677521],[-62.710827108271076,58.281801522981226],[-62.71442714427144,58.276735791171575],[-62.721627216272154,58.273358636631826],[-62.73242732427323,58.271670059361924],[-62.85482854828548,58.268292904822175],[-62.872828728287274,58.26153859574262],[-62.887228872288716,58.23789851396427],[-62.898028980289794,58.22607847307509],[-62.90882908829087,58.214258432185915],[-62.90162901629016,58.20243839129674],[-62.887228872288716,58.20243839129674],[-62.87642876428764,58.21594700945579],[-62.869228692286924,58.22945562761487],[-62.862028620286196,58.23789851396427],[-62.85482854828548,58.23958709123417],[-62.83322833228331,58.25309570939322],[-62.822428224282234,58.256472863933],[-62.797227972279714,58.25309570939322],[-62.696426964269634,58.25309570939322],[-62.67482674826748,58.26153859574262],[-62.667626676266764,58.271670059361924],[-62.64962649626496,58.268292904822175],[-62.617226172261724,58.25816144120287],[-62.59922599225992,58.254784286663096],[-62.58842588425884,58.246341400313696],[-62.584825848258475,58.23452135942452],[-62.57762577625776,58.22270131853534],[-62.61362613626136,58.214258432185915],[-62.62082620826207,58.205815545836515],[-62.62442624426244,58.19568408221721],[-62.635226352263516,58.187241195867784],[-62.64962649626496,58.18048688678826],[-62.660426604266036,58.17542115497861],[-62.7540275402754,58.17204400043886],[-62.818828188281884,58.178798309518385],[-63.0780307803078,58.15515822774003],[-63.06363063630636,58.148403918660506],[-63.02763027630276,58.14502676412073],[-63.00963009630095,58.14164960958095],[-63.03483034830347,58.1180095278026],[-63.200432004320035,58.06904078697602],[-63.20763207632076,58.062286477896464],[-63.200432004320035,58.05722074608684],[-63.150031500314995,58.062286477896464],[-63.13563135631355,58.06566363243624],[-63.150031500314995,58.04371212792776],[-63.1680316803168,58.02851493249884],[-63.19323193231932,58.02007204614941],[-63.25443254432544,58.01500631433976],[-63.28683286832867,58.00825200526023],[-63.31563315633156,57.996431964371055],[-63.34083340833408,57.98461192348188],[-63.322833228332286,57.982923346211976],[-63.13923139231392,57.999809118910804],[-63.121231212312125,58.004874850720455],[-63.10323103231032,58.01500631433976],[-63.099630996309955,58.02176062341928],[-63.099630996309955,58.03695781884824],[-63.099630996309955,58.045400705197636],[-63.09243092430924,58.05722074608684],[-63.06723067230672,58.072417941515766],[-63.03483034830347,58.08254940513507],[-62.9880298802988,58.09268086875437],[-62.98082980829808,58.09268086875437],[-62.970029700297005,58.09605802329412],[-62.970029700297005,58.102812332373674],[-62.970029700297005,58.1095666414532],[-62.96282962829628,58.11463237326285],[-62.948429484294834,58.124763836882124],[-62.93402934029339,58.129829568691775],[-62.92682926829268,58.13320672323155],[-62.89082890828908,58.13658387777133],[-62.85122851228512,58.1467153413906],[-62.83322833228331,58.148403918660506],[-62.83322833228331,58.14164960958095],[-62.836828368283676,58.13996103231108],[-62.85482854828548,58.13489530050143],[-62.84042840428404,58.12307525961225],[-62.818828188281884,58.124763836882124],[-62.772027720277194,58.13489530050143],[-62.76482764827648,58.13320672323155],[-62.75762757627575,58.1281409914219],[-62.75042750427504,58.124763836882124],[-62.736027360273596,58.1281409914219],[-62.736027360273596,58.129829568691775],[-62.736027360273596,58.13320672323155],[-62.73242732427323,58.138272455041204],[-62.72882728827288,58.14164960958095],[-62.718027180271804,58.14502676412073],[-62.71442714427144,58.14502676412073],[-62.68202682026819,58.13489530050143],[-62.6640266402664,58.1281409914219],[-62.64962649626496,58.12307525961225],[-62.63162631626315,58.1281409914219],[-62.61362613626136,58.13996103231108],[-62.59922599225992,58.15515822774003],[-62.58122581225811,58.165289691359334],[-62.56682566825668,58.16191253681956],[-62.559625596255955,58.148403918660506],[-62.559625596255955,58.13320672323155],[-62.55242552425524,58.129829568691775],[-62.530825308253085,58.148403918660506],[-62.52722527225272,58.156846805009906],[-62.52362523625236,58.16191253681956],[-62.52002520025199,58.16866684589908],[-62.509225092250915,58.17542115497861],[-62.46962469624695,58.18217546405816],[-62.46242462424624,58.18217546405816],[-62.45162451624516,58.16697826862921],[-62.4660246602466,58.151781073200254],[-62.52362523625236,58.1095666414532],[-62.530825308253085,58.102812332373674],[-62.530825308253085,58.09268086875437],[-62.52362523625236,58.08761513694472],[-62.51642516425164,58.08254940513507],[-62.509225092250915,58.07410651878567],[-62.51642516425164,58.06566363243624],[-62.51642516425164,58.058909323356716],[-62.49482494824947,58.06059790062659],[-62.49122491224912,58.06904078697602],[-62.49122491224912,58.08254940513507],[-62.49122491224912,58.09268086875437],[-62.480424804248045,58.10112375510377],[-62.4660246602466,58.107878064183296],[-62.45162451624516,58.11125521872307],[-62.39762397623976,58.11463237326285],[-62.3760237602376,58.11294379599295],[-62.36522365223652,58.10618948691342],[-62.37242372423724,58.09605802329412],[-62.39042390423904,58.09099229148447],[-62.430024300243005,58.085926559674846],[-62.38682386823868,58.072417941515766],[-62.39402394023939,58.058909323356716],[-62.39042390423904,58.05215501427719],[-62.379623796237965,58.05215501427719],[-62.36162361623616,58.062286477896464],[-62.34362343623435,58.07072936424589],[-62.32562325623256,58.06397505516637],[-62.31122311223112,58.04877785973741],[-62.304023040230405,58.031892087038585],[-62.32562325623256,58.026826355228934],[-62.36522365223652,58.004874850720455],[-62.38682386823868,57.99812054164093],[-62.41922419224191,57.996431964371055],[-62.480424804248045,58.009940582530106],[-62.509225092250915,58.01162915980001],[-62.534425344253435,58.004874850720455],[-62.65682656826567,57.94915180081435],[-62.67482674826748,57.93564318265527],[-62.642426424264244,57.937331759925144],[-62.5920259202592,57.9626604189734],[-62.56322563225632,57.969414728052925],[-62.48762487624876,57.97616903713245],[-62.46962469624695,57.974480459862576],[-62.43722437224372,57.96603757351318],[-62.42282422824228,57.964348996243274],[-62.430024300243005,57.94915180081435],[-62.42642426424264,57.93057745084562],[-62.42282422824228,57.91538025541669],[-62.42642426424264,57.90862594633714],[-62.42642426424264,57.90018305998774],[-62.42642426424264,57.88329728728891],[-62.41922419224191,57.871477246399735],[-62.40122401224012,57.87485440093948],[-62.39402394023939,57.88329728728891],[-62.38682386823868,57.90018305998774],[-62.3760237602376,57.94915180081435],[-62.36882368823687,57.960971841703525],[-62.340023400234,57.98461192348188],[-62.329223292232925,57.96772615078305],[-62.32562325623256,57.94577464627457],[-62.329223292232925,57.92551171903597],[-62.34722347223472,57.91538025541669],[-62.32562325623256,57.90862594633714],[-62.304023040230405,57.920445987226344],[-62.278822788227885,57.955906109893874],[-62.26802268022679,57.95084037808422],[-62.24282242822427,57.9440860690047],[-62.232022320223194,57.939020337195046],[-62.228422284222844,57.93057745084562],[-62.221222212222116,57.92213456449622],[-62.21762217622175,57.91369167814679],[-62.21042210422104,57.90862594633714],[-62.19962199621996,57.93564318265527],[-62.196021960219596,57.942397491734795],[-62.156421564215634,57.9727918825927],[-62.14202142021419,57.97785761440235],[-62.120421204212036,57.969414728052925],[-62.102421024210244,57.955906109893874],[-62.0880208802088,57.94915180081435],[-62.080820808208074,57.947463223544446],[-62.077220772207724,57.94070891446492],[-62.07362073620736,57.933954605385395],[-62.070020700206996,57.912003100876916],[-62.06642066420663,57.90524879179739],[-62.06642066420663,57.898494482717865],[-62.07362073620736,57.88836301909856],[-62.0880208802088,57.87485440093948],[-62.127621276212764,57.85121431916113],[-62.14202142021419,57.83263996919243],[-62.13482134821348,57.830951391922554],[-62.131221312213114,57.82757423738278],[-62.1240212402124,57.822508505573126],[-62.120421204212036,57.81913135103338],[-62.120421204212036,57.7971798465249],[-62.080820808208074,57.79042553744537],[-62.0340203402034,57.787048382905596],[-62.00882008820088,57.781982651095944],[-61.9620196201962,57.73470248753924],[-61.951219512195124,57.70937382849098],[-61.969219692196916,57.69586521033193],[-61.969219692196916,57.689110901252405],[-61.90441904419043,57.67222512855358],[-61.893618936189355,57.67222512855358],[-61.893618936189355,57.662093664934275],[-61.88641886418864,57.648585046775224],[-61.88641886418864,57.63845358315592],[-61.89001890018899,57.62494496499687],[-61.89721897218972,57.621567810457094],[-61.9080190801908,57.621567810457094],[-61.92241922419224,57.621567810457094],[-61.97281972819728,57.60637061502814],[-62.03762037620376,57.59792772867874],[-62.05922059220592,57.58779626505944],[-62.070020700206996,57.586107687789564],[-62.077220772207724,57.58273053324979],[-62.07362073620736,57.572599069630485],[-62.070020700206996,57.56077902874131],[-62.07362073620736,57.55233614239191],[-62.0880208802088,57.54051610150273],[-62.11682116821167,57.53545036969308],[-62.16362163621636,57.532073215153304],[-62.24282242822427,57.54558183331238],[-62.27162271622716,57.53882752423283],[-62.28962289622896,57.523630328803904],[-62.329223292232925,57.466218701627895],[-62.34722347223472,57.45777581527847],[-62.37242372423724,57.46284154708812],[-62.42282422824228,57.48310447432672],[-62.51642516425164,57.50843313337495],[-62.54522545225451,57.51181028791473],[-62.534425344253435,57.496613092485774],[-62.51642516425164,57.48310447432672],[-62.46962469624695,57.46284154708812],[-62.41562415624156,57.44933292892907],[-62.404824048240485,57.44257861984951],[-62.38682386823868,57.43075857896034],[-62.3760237602376,57.42907000169046],[-62.31482314823148,57.42907000169046],[-62.30042300423004,57.43244715623024],[-62.27522275222752,57.44595577438929],[-62.26442264422644,57.44933292892907],[-62.21042210422104,57.44933292892907],[-62.203222032220324,57.452710083468816],[-62.196021960219596,57.45946439254834],[-62.181621816218154,57.46453012435799],[-62.16722167221671,57.46790727889777],[-62.160021600216,57.46959585616764],[-62.13482134821348,57.461152969818244],[-62.030420304203034,57.45608723800859],[-61.90081900819008,57.41556138353141],[-61.818018180181795,57.376724106324104],[-61.80361803618035,57.3665926427048],[-61.82521825218252,57.3581497563554],[-61.926019260192604,57.3665926427048],[-61.926019260192604,57.35983833362528],[-61.88641886418864,57.35139544727585],[-61.8720187201872,57.34295256092645],[-61.87561875618756,57.3294439427674],[-61.87921879218791,57.319312479148095],[-61.8720187201872,57.30749243825892],[-61.8720187201872,57.292295242829965],[-61.87921879218791,57.27709804740101],[-61.893618936189355,57.270343738321486],[-61.93321933219332,57.25852369743231],[-61.944019440194396,57.256835120162435],[-62.02322023220232,57.256835120162435],[-62.019620196201956,57.25008081108291],[-62.01242012420124,57.243326502003356],[-62.001620016200164,57.23826077019373],[-61.994419944199436,57.23657219292383],[-61.96561965619655,57.23657219292383],[-61.9620196201962,57.234883615653956],[-61.9620196201962,57.224752152034654],[-61.95841958419584,57.22306357476478],[-61.9080190801908,57.219686420225],[-61.88281882818828,57.2095549566057],[-61.8720187201872,57.1926691839069],[-61.86481864818647,57.17071767939842],[-61.84681846818468,57.17071767939842],[-61.81081810818108,57.18760345209725],[-61.78561785617856,57.19604633844665],[-61.77481774817748,57.190980606637],[-61.77841778417783,57.17578341120807],[-61.78561785617856,57.15552048396947],[-61.64881648816488,57.23319503838408],[-61.620016200162,57.229817883844305],[-61.63081630816308,57.22306357476478],[-61.67761677616775,57.18422629755747],[-61.692016920169195,57.17409483393817],[-61.69921699216992,57.172406256668296],[-61.69921699216992,57.16396337031887],[-61.69561695616956,57.15720906123934],[-61.68481684816848,57.15552048396947],[-61.52641526415263,57.16058621577912],[-61.47241472414724,57.15552048396947],[-61.4220142201422,57.140323288540515],[-61.38241382413824,57.12174893857181],[-61.364413644136434,57.10655174314286],[-61.360813608136084,57.08966597044403],[-61.360813608136084,57.07953450682476],[-61.37521375213751,57.06771446593558],[-61.378813788137876,57.055894425046375],[-61.37521375213751,57.0457629614271],[-61.360813608136084,57.03225434326802],[-61.353613536135356,57.02381145691862],[-61.353613536135356,57.01874572510897],[-61.353613536135356,57.0170571478391],[-61.3680136801368,57.011991416029446],[-61.37161371613716,57.00185995241014],[-61.360813608136084,56.993417066060715],[-61.34641346413464,56.99003991152097],[-61.35001350013499,56.98159702517154],[-61.35001350013499,56.97315413882214],[-61.34641346413464,56.96808840701249],[-61.339213392133914,56.963022675202836],[-61.34641346413464,56.95626836612331],[-61.35721357213572,56.96133409793296],[-61.378813788137876,56.98159702517154],[-61.39321393213932,56.99003991152097],[-61.411214112141124,56.98159702517154],[-61.429214292142916,56.979908447901664],[-61.465214652146514,56.98328560244144],[-61.48321483214832,56.98159702517154],[-61.50121501215011,56.97821987063179],[-61.51921519215192,56.97315413882214],[-61.53721537215371,56.963022675202836],[-61.566015660156594,56.92080824345578],[-61.57681576815767,56.914053934376255],[-61.591215912159115,56.91236535710635],[-61.61281612816127,56.90392247075695],[-61.63081630816308,56.89379100713765],[-61.64521645216452,56.88365954351835],[-61.65241652416523,56.868462348089395],[-61.64881648816488,56.854953729930344],[-61.64521645216452,56.84144511177129],[-61.64881648816488,56.82624791634234],[-61.66321663216631,56.80936214364351],[-61.68481684816848,56.80936214364351],[-61.710017100171,56.81273929818329],[-61.72801728017279,56.80936214364351],[-61.76041760417604,56.792476370944684],[-61.81081810818108,56.789099216404935],[-61.85761857618576,56.79416494821456],[-61.893618936189355,56.80598498910376],[-61.90441904419043,56.79416494821456],[-61.90441904419043,56.77727917551573],[-61.89721897218972,56.7603934028169],[-61.88641886418864,56.75026193919763],[-61.89721897218972,56.73844189830845],[-61.90081900819008,56.7232447028795],[-61.89721897218972,56.70973608472045],[-61.88641886418864,56.70298177564089],[-61.87561875618756,56.7232447028795],[-61.86481864818647,56.7418190528482],[-61.84681846818468,56.7519505164675],[-61.818018180181795,56.757016248277154],[-61.74961749617496,56.7519505164675],[-61.72081720817208,56.7435076301181],[-61.69561695616956,56.72999901195902],[-61.710017100171,56.71142466199032],[-61.73161731617316,56.70298177564089],[-61.75681756817568,56.704670352910796],[-61.81441814418143,56.713113239260196],[-61.82161821618216,56.70973608472045],[-61.78921789217891,56.68103027113244],[-61.77121771217712,56.68778458021197],[-61.7460174601746,56.67934169386254],[-61.72081720817208,56.66752165297336],[-61.67041670416704,56.65570161208419],[-61.65961659616596,56.642192993925136],[-61.66321663216631,56.628684375766056],[-61.68841688416883,56.62024148941666],[-61.70281702817027,56.62193006668653],[-61.742417424174235,56.63375010757571],[-61.868418684186835,56.637127262115484],[-61.90081900819008,56.64388157119501],[-61.926019260192604,56.65401303481431],[-61.89721897218972,56.66921023024324],[-61.90441904419043,56.677653116592666],[-61.92961929619295,56.68271884840232],[-61.94041940419403,56.677653116592666],[-61.95481954819547,56.66583307570349],[-61.98361983619836,56.664144498433615],[-62.03762037620376,56.67427596205289],[-62.1240212402124,56.704670352910796],[-62.23922239222392,56.71649039379997],[-62.26442264422644,56.721556125609624],[-62.34722347223472,56.75363909373738],[-62.484024840248395,56.775590598245856],[-62.5020250202502,56.784033484595284],[-62.480424804248045,56.797542102754335],[-62.304023040230405,56.81780502999294],[-62.27522275222752,56.827936493612214],[-62.26082260822608,56.827936493612214],[-62.228422284222844,56.81780502999294],[-62.044820448204476,56.82624791634234],[-62.0880208802088,56.84144511177129],[-62.340023400234,56.846510843580944],[-62.354423544235445,56.84482226631104],[-62.383223832238315,56.83469080269177],[-62.40122401224012,56.83131364815199],[-62.42282422824228,56.83469080269177],[-62.47682476824768,56.85326515266047],[-62.49482494824947,56.854953729930344],[-62.51282512825128,56.85326515266047],[-62.530825308253085,56.84819942085082],[-62.54522545225451,56.83975653450139],[-62.556025560255605,56.827936493612214],[-62.559625596255955,56.81442787545316],[-62.57042570425703,56.80429641183386],[-62.584825848258475,56.797542102754335],[-62.56682566825668,56.79585352548446],[-62.41562415624156,56.75026193919763],[-62.358023580235795,56.721556125609624],[-62.340023400234,56.71649039379997],[-62.2860228602286,56.71142466199032],[-62.26802268022679,56.704670352910796],[-62.246422464224636,56.69453888929149],[-62.16722167221671,56.677653116592666],[-62.09882098820988,56.650635880274535],[-62.00882008820088,56.63375010757571],[-61.95841958419584,56.63543868484561],[-61.93321933219332,56.63375010757571],[-61.91521915219151,56.62699579849618],[-61.94041940419403,56.61686433487688],[-62.24282242822427,56.62699579849618],[-62.23922239222392,56.62193006668653],[-62.23922239222392,56.62024148941666],[-62.24282242822427,56.62024148941666],[-62.02322023220232,56.593224253098526],[-62.001620016200164,56.588158521288875],[-61.918819188191875,56.586469944019],[-61.868418684186835,56.593224253098526],[-61.85401854018539,56.58984709855878],[-61.7820178201782,56.566207016780396],[-61.77121771217712,56.56451843951052],[-61.75681756817568,56.56451843951052],[-61.7460174601746,56.56958417132017],[-61.73521735217352,56.5763384803997],[-61.72441724417244,56.579715634939475],[-61.71361713617135,56.574649903129824],[-61.69921699216992,56.561141284970745],[-61.692016920169195,56.55607555316112],[-61.68121681216812,56.547632666811694],[-61.65961659616596,56.539189780462294],[-61.65241652416523,56.53243547138274],[-61.65241652416523,56.517238275953815],[-61.666816668166675,56.503729657794736],[-61.71361713617135,56.50204108052486],[-61.75681756817568,56.485155307826034],[-61.976419764197644,56.51048396687429],[-62.03762037620376,56.50879538960439],[-62.08442084420844,56.490221039635685],[-62.08442084420844,56.48346673055616],[-62.06282062820628,56.48346673055616],[-62.019620196201956,56.490221039635685],[-61.98361983619836,56.48853246236581],[-61.969219692196916,56.48684388509591],[-61.95481954819547,56.48346673055616],[-61.94761947619476,56.47502384420673],[-61.94761947619476,56.46489238058746],[-61.951219512195124,56.463203803317555],[-61.9620196201962,56.463203803317555],[-62.00882008820088,56.45307233969825],[-62.102421024210244,56.4581380715079],[-62.145621456214556,56.454760916968155],[-62.1240212402124,56.44294087607898],[-62.102421024210244,56.43449798972955],[-62.080820808208074,56.4294322579199],[-61.976419764197644,56.422677948840374],[-61.9620196201962,56.42436652611025],[-61.95481954819547,56.44294087607898],[-61.93321933219332,56.436186566999424],[-61.91161911619116,56.422677948840374],[-61.90441904419043,56.414235062490974],[-61.843218432184315,56.40916933068132],[-61.81441814418143,56.40410359887167],[-61.78921789217891,56.39397213525237],[-61.81441814418143,56.38890640344272],[-61.84681846818468,56.387217826172844],[-61.82881828818287,56.37708636255354],[-61.77841778417783,56.36020058985471],[-61.77121771217712,56.35513485804506],[-61.77121771217712,56.35006912623541],[-61.767617676176755,56.343314817155886],[-61.75681756817568,56.33993766261614],[-61.7460174601746,56.33993766261614],[-61.72801728017279,56.34500339442576],[-61.717217172171715,56.34500339442576],[-61.717217172171715,56.33993766261614],[-61.73521735217352,56.33318335353658],[-61.742417424174235,56.33318335353658],[-61.72081720817208,56.32474046718718],[-61.666816668166675,56.32811762172693],[-61.63801638016379,56.32474046718718],[-61.62361623616236,56.31798615810766],[-61.60561605616056,56.30616611721848],[-61.59841598415984,56.294346076329305],[-61.60561605616056,56.28421461271],[-61.62721627216271,56.28421461271],[-61.767617676176755,56.31292042629801],[-61.79641796417964,56.31292042629801],[-61.818018180181795,56.30447753994858],[-61.80001800018,56.29772323086905],[-61.65961659616596,56.27746030363048],[-61.65961659616596,56.27070599455092],[-61.74961749617496,56.255508799122],[-61.79641796417964,56.25719737639187],[-61.83241832418324,56.27070599455092],[-61.78921789217891,56.26901741728105],[-61.767617676176755,56.272394571820826],[-61.75681756817568,56.28421461271],[-61.77481774817748,56.29096892178953],[-61.82881828818287,56.29772323086905],[-61.9080190801908,56.29603465359918],[-61.94761947619476,56.28759176724975],[-61.96561965619655,56.28590318997988],[-61.98361983619836,56.29096892178953],[-62.001620016200164,56.30110038540883],[-62.019620196201956,56.30954327175823],[-62.03762037620376,56.307854694488356],[-62.077220772207724,56.29772323086905],[-62.06642066420663,56.28590318997988],[-62.044820448204476,56.2740831490907],[-62.005220052200514,56.25719737639187],[-62.01602016020159,56.24875449004247],[-62.00882008820088,56.240311603693044],[-61.93681936819368,56.21667152191469],[-61.91521915219151,56.21667152191469],[-61.88281882818828,56.23355729461352],[-61.868418684186835,56.231868717343644],[-61.85041850418504,56.22680298553399],[-61.8360183601836,56.22173725372434],[-61.79641796417964,56.223425830994216],[-61.76401764017639,56.22849156280387],[-61.77121771217712,56.213294367374914],[-61.77841778417783,56.20822863556526],[-61.72441724417244,56.20822863556526],[-61.710017100171,56.21160579010504],[-61.692016920169195,56.22004867645444],[-61.67761677616775,56.22173725372434],[-61.59841598415984,56.223425830994216],[-61.591215912159115,56.22173725372434],[-61.58761587615875,56.218360099184565],[-61.5840158401584,56.21498294464482],[-61.58041580415804,56.209917212835165],[-61.58041580415804,56.20822863556526],[-61.55881558815588,56.20147432648574],[-61.5480154801548,56.19978574921586],[-61.43281432814328,56.213294367374914],[-61.404014040140396,56.223425830994216],[-61.37161371613716,56.22849156280387],[-61.34641346413464,56.22173725372434],[-61.34641346413464,56.21667152191469],[-61.353613536135356,56.20654005829539],[-61.34281342813428,56.196408594676086],[-61.335613356133564,56.187965708326686],[-61.335613356133564,56.177834244707384],[-61.35001350013499,56.17445709016761],[-61.37161371613716,56.17276851289773],[-61.39321393213932,56.169391358357984],[-61.40041400414003,56.15757131746878],[-61.404014040140396,56.14068554476998],[-61.40761407614076,56.13224265842055],[-61.40761407614076,56.13055408115068],[-61.386013860138604,56.133931235690426],[-61.378813788137876,56.13561981296033],[-61.37161371613716,56.14068554476998],[-61.360813608136084,56.1457512765796],[-61.35001350013499,56.147439853849505],[-61.339213392133914,56.14406269930973],[-61.339213392133914,56.13899696750008],[-61.34641346413464,56.13055408115068],[-61.353613536135356,56.1271769266109],[-61.353613536135356,56.1187340402615],[-61.339213392133914,56.11029115391207],[-61.35001350013499,56.10353684483255],[-61.42561425614255,56.08158534032407],[-61.44361443614436,56.07314245397467],[-61.454414544145436,56.057945258545715],[-61.42561425614255,56.04950237219629],[-61.40041400414003,56.05119094946619],[-61.34641346413464,56.06469956762524],[-61.32121321213212,56.066388144895114],[-61.29241292412924,56.06469956762524],[-61.260012600126004,56.05625668127584],[-61.234812348123484,56.044436640386664],[-61.28161281612816,56.04612521765654],[-61.30681306813068,56.044436640386664],[-61.32481324813247,56.03768233130711],[-61.314013140131394,56.03261659949749],[-61.29961299612995,56.030928022227585],[-61.27081270812708,56.030928022227585],[-61.27081270812708,56.02417371314806],[-61.39681396813968,56.03261659949749],[-61.46881468814688,56.02923944495771],[-61.504815048150476,56.01066509498901],[-61.47601476014759,56.01066509498901],[-61.45081450814507,56.00728794044923],[-61.440014400143994,56.00559936317936],[-61.38241382413824,55.99715647682993],[-61.378813788137876,55.99377932229018],[-61.378813788137876,55.987025013210626],[-61.378813788137876,55.97858212686123],[-61.38241382413824,55.97689354959135],[-61.39321393213932,55.97689354959135],[-61.40041400414003,55.97858212686123],[-61.414814148141474,55.981959281401004],[-61.41841418414184,55.98871359048053],[-61.429214292142916,55.995467899560055],[-61.436414364143644,55.99884505409983],[-61.44721447214472,56.00222220863958],[-61.454414544145436,56.003910785909454],[-61.461614616146164,56.00222220863958],[-61.461614616146164,55.9904021677504],[-61.44721447214472,55.9802707041311],[-61.41841418414184,55.965073508702176],[-61.404014040140396,55.960007776892525],[-61.34641346413464,55.97013924051183],[-61.26361263612635,55.97013924051183],[-61.2420124201242,55.96676208597205],[-61.23121231212312,55.96338493143227],[-61.202412024120235,55.94818773600335],[-61.177211772117715,55.97689354959135],[-61.13761137611375,55.9718278177817],[-61.101611016110155,55.9515648905431],[-61.07281072810727,55.92792480876474],[-61.076410764107635,55.92117049968522],[-61.080010800108,55.91272761333579],[-61.080010800108,55.902596149716516],[-61.080010800108,55.89246468609721],[-61.101611016110155,55.89921899517674],[-61.13761137611375,55.90090757244661],[-61.17361173611735,55.89921899517674],[-61.19521195211952,55.89246468609721],[-61.19161191611916,55.878956067938134],[-61.16641166411664,55.86882460431886],[-61.11961119611196,55.85869314069956],[-61.09801098010979,55.848561677080255],[-61.06561065610656,55.85025025435013],[-60.94680946809467,55.870513181588734],[-60.93240932409324,55.870513181588734],[-60.9180091800918,55.86375887250921],[-60.89640896408963,55.86038171796943],[-60.78120781207812,55.86038171796943],[-60.74520745207451,55.85025025435013],[-60.72720727207272,55.8249215953019],[-60.73440734407343,55.799592936253674],[-60.75960759607595,55.781018586284944],[-60.81720817208172,55.755689927236716],[-60.87120871208711,55.75231277269694],[-60.89280892808928,55.74893561815719],[-60.950409504095035,55.755689927236716],[-60.96840968409684,55.74893561815719],[-60.95760957609576,55.745558463617414],[-60.950409504095035,55.74218130907764],[-60.94680946809467,55.73880415453789],[-60.94320943209432,55.73036126818846],[-60.93600936009359,55.73036126818846],[-60.92160921609215,55.737115577268014],[-60.90360903609036,55.737115577268014],[-60.864008640086396,55.74218130907764],[-60.77040770407703,55.73542699999811],[-60.748807488074874,55.737115577268014],[-60.72720727207272,55.74724704088729],[-60.69480694806947,55.76919854539577],[-60.66960669606695,55.79452720444402],[-60.65520655206552,55.8249215953019],[-60.64080640806408,55.82829874984168],[-60.61560615606156,55.8249215953019],[-60.60120601206012,55.81985586349225],[-60.60480604806048,55.8063472453332],[-60.62640626406264,55.782707163554846],[-60.61560615606156,55.77426427720542],[-60.60840608406083,55.75400134996684],[-60.60480604806048,55.73373842272824],[-60.612006120061196,55.715164072759535],[-60.60480604806048,55.715164072759535],[-60.597605976059754,55.710098340949884],[-60.59040590405904,55.70840976367998],[-60.60120601206012,55.69827830006071],[-60.61560615606156,55.68983541371128],[-60.630006300063,55.68476968190163],[-60.64080640806408,55.68139252736188],[-60.65520655206552,55.67632679555223],[-60.65880658806587,55.66450675466305],[-60.648006480064794,55.652686713773875],[-60.637206372063716,55.64593240469435],[-60.630006300063,55.6408666728847],[-60.637206372063716,55.62735805472562],[-60.65520655206552,55.60540655021714],[-60.67680676806768,55.58852077751831],[-60.68400684006839,55.57838931389904],[-60.68040680406804,55.56488069573996],[-60.63360633606335,55.612160859296694],[-60.61560615606156,55.61891516837622],[-60.60120601206012,55.62735805472562],[-60.59040590405904,55.647620981964224],[-60.572405724057234,55.688146836441405],[-60.54720547205471,55.72529553637881],[-60.536405364053635,55.73880415453789],[-60.52920529205292,55.745558463617414],[-60.52920529205292,55.75400134996684],[-60.52920529205292,55.76750996812589],[-60.52200522005219,55.786084318094595],[-60.50760507605075,55.8046586680633],[-60.48960489604896,55.80972439987295],[-60.47520475204752,55.79790435898377],[-60.46440464404644,55.80128151352355],[-60.45360453604536,55.79452720444402],[-60.43920439204392,55.782707163554846],[-60.42480424804248,55.777641431745195],[-60.41760417604176,55.77933000901507],[-60.40680406804067,55.78946147263437],[-60.39960399603996,55.791150049904246],[-60.39240392403924,55.786084318094595],[-60.38160381603815,55.77933000901507],[-60.37080370803707,55.76919854539577],[-60.35640356403563,55.77426427720542],[-60.34560345603455,55.782707163554846],[-60.334803348033475,55.782707163554846],[-60.33120331203311,55.76075565904637],[-60.385203852038515,55.723606959108935],[-60.37080370803707,55.715164072759535],[-60.3780037800378,55.710098340949884],[-60.38160381603815,55.70334403187036],[-60.385203852038515,55.701655454600456],[-60.37440374403744,55.69152399098118],[-60.37440374403744,55.68476968190163],[-60.385203852038515,55.68308110463175],[-60.41760417604176,55.67970395009198],[-60.45360453604536,55.6695724864727],[-60.47160471604715,55.6678839092028],[-60.49320493204931,55.6594410228534],[-60.511205112051115,55.6408666728847],[-60.52560525605256,55.617226591106316],[-60.52920529205292,55.59189793205809],[-60.5040050400504,55.612160859296694],[-60.47160471604715,55.630735209265396],[-60.435604356043555,55.634112363805144],[-60.39960399603996,55.612160859296694],[-60.39600396003959,55.58514362297856],[-60.410404104041035,55.554749232120656],[-60.45360453604536,55.5024033367543],[-60.42840428404284,55.51084622310373],[-60.39960399603996,55.5311091503423],[-60.35640356403563,55.57501215935926],[-60.3420034200342,55.58345504570869],[-60.32760327603276,55.58345504570869],[-60.32040320403203,55.576700736629135],[-60.33840338403384,55.54799492304113],[-60.334803348033475,55.53955203669173],[-60.32040320403203,55.53448630488208],[-60.30240302403024,55.5311091503423],[-60.30600306003059,55.519289109453126],[-60.309603096030955,55.514223377643475],[-60.309603096030955,55.509157645833824],[-60.33120331203311,55.519289109453126],[-60.3420034200342,55.51591195491338],[-60.35280352803528,55.505780491294075],[-60.36360363603636,55.48889471859525],[-60.385203852038515,55.4753861004362],[-60.45360453604536,55.448368864118066],[-60.45360453604536,55.44161455503854],[-60.44640446404463,55.43654882322889],[-60.44280442804427,55.429794514149336],[-60.44640446404463,55.421351627799936],[-60.45360453604536,55.41459731872041],[-60.44280442804427,55.402777277831234],[-60.450004500045,55.3842029278625],[-60.48240482404823,55.35211995973475],[-60.460804608046075,55.3571856915444],[-60.44280442804427,55.36900573243358],[-60.4140041400414,55.39940012329146],[-60.42840428404284,55.41459731872041],[-60.41760417604176,55.42810593687946],[-60.3780037800378,55.448368864118066],[-60.34920349203492,55.48214040951572],[-60.32760327603276,55.49564902767477],[-60.30240302403024,55.48889471859525],[-60.31320313203132,55.48720614132537],[-60.33120331203311,55.4753861004362],[-60.33120331203311,55.46694321408677],[-60.35640356403563,55.446680286848164],[-60.36360363603636,55.43486024595899],[-60.35280352803528,55.43486024595899],[-60.3420034200342,55.438237400498764],[-60.334803348033475,55.44499170957829],[-60.33120331203311,55.45512317319759],[-60.31680316803168,55.44161455503854],[-60.30600306003059,55.43654882322889],[-60.29520295202951,55.43486024595899],[-60.284402844028435,55.43992597776864],[-60.284402844028435,55.45343459592772],[-60.29160291602916,55.478763254975945],[-60.28080280802807,55.500714759484424],[-60.25560255602555,55.505780491294075],[-60.22320223202232,55.49902618221455],[-60.20160201602016,55.48889471859525],[-60.208802088020875,55.473697523166294],[-60.2160021600216,55.46863179135664],[-60.208802088020875,55.46356605954699],[-60.20520205202051,55.456811750467466],[-60.20520205202051,55.45005744138794],[-60.2160021600216,55.44161455503854],[-60.1980019800198,55.43654882322889],[-60.19440194401943,55.43486024595899],[-60.19440194401943,55.42810593687946],[-60.1980019800198,55.42472878233971],[-60.20160201602016,55.421351627799936],[-60.23040230402303,55.42810593687946],[-60.27000270002699,55.421351627799936],[-60.36360363603636,55.39095723694206],[-60.37440374403744,55.380825773322755],[-60.38160381603815,55.345365650655225],[-60.39240392403924,55.33354560976605],[-60.4140041400414,55.31159410525757],[-60.39240392403924,55.304839796178044],[-60.40320403204032,55.29301975528884],[-60.42840428404284,55.282888291669565],[-60.44280442804427,55.28626544620931],[-60.44280442804427,55.29301975528884],[-60.450004500045,55.296396909828616],[-60.45720457204571,55.29808548709849],[-60.46800468004679,55.296396909828616],[-60.46800468004679,55.29301975528884],[-60.49680496804967,55.27275682805026],[-60.5040050400504,55.27106825078039],[-60.50760507605075,55.264313941700834],[-60.50760507605075,55.247428169002006],[-60.511205112051115,55.23898528265261],[-60.52920529205292,55.225476664493556],[-60.53280532805327,55.21703377814413],[-60.536405364053635,55.20521373725495],[-60.54720547205471,55.198459428175426],[-60.612006120061196,55.16806503731752],[-60.56880568805687,55.1815736554766],[-60.49320493204931,55.225476664493556],[-60.45720457204571,55.23560812811283],[-60.450004500045,55.23223097357308],[-60.44280442804427,55.225476664493556],[-60.43200432004319,55.220410932683905],[-60.42480424804248,55.225476664493556],[-60.40680406804067,55.24911674627191],[-60.39600396003959,55.25924820989118],[-60.38160381603815,55.26262536443096],[-60.35640356403563,55.25924820989118],[-60.360003600035995,55.24911674627191],[-60.4140041400414,55.21365662360435],[-60.45360453604536,55.198459428175426],[-60.46800468004679,55.18832796455612],[-60.48240482404823,55.171442191857295],[-60.5040050400504,55.13429349191989],[-60.51480514805148,55.11909629649094],[-60.536405364053635,55.10727625560176],[-60.60480604806048,55.08532475109328],[-60.65520655206552,55.05661893750528],[-60.673206732067314,55.04986462842575],[-60.673206732067314,55.0431103193462],[-60.662406624066236,55.038044587536575],[-60.6660066600666,55.0262245466474],[-60.687606876068756,54.99583015578949],[-60.66960669606695,55.00933877394857],[-60.612006120061196,55.03635601026667],[-60.5760057600576,55.073504710204105],[-60.55800558005579,55.08532475109328],[-60.536405364053635,55.09207906017281],[-60.49320493204931,55.10221052379211],[-60.47520475204752,55.11234198741141],[-60.460804608046075,55.149490687348816],[-60.45720457204571,55.15455641915847],[-60.435604356043555,55.16468788277777],[-60.42840428404284,55.16806503731752],[-60.40680406804067,55.16806503731752],[-60.39600396003959,55.162999305507896],[-60.38880388803888,55.16131072823799],[-60.37080370803707,55.16806503731752],[-60.2880028800288,55.233919550842955],[-60.27000270002699,55.242362437192384],[-60.24840248402484,55.25080532354178],[-60.23040230402303,55.255871055351435],[-60.22320223202232,55.25418247808156],[-60.21960219602195,55.24911674627191],[-60.21240212402124,55.247428169002006],[-60.20520205202051,55.25249390081166],[-60.19440194401943,55.26262536443096],[-60.19080190801908,55.26769109624061],[-60.172801728017276,55.27444540532014],[-60.1620016200162,55.28457686893944],[-60.15480154801547,55.28964260074909],[-60.14040140401404,55.28457686893944],[-60.172801728017276,55.242362437192384],[-60.16920169201691,55.23223097357308],[-60.17640176401764,55.220410932683905],[-60.19440194401943,55.19508227363565],[-60.16920169201691,55.20352515998508],[-60.133201332013314,55.23560812811283],[-60.08640086400864,55.24911674627191],[-60.046800468004676,55.27275682805026],[-60.021600216002156,55.27613398259001],[-60.02880028800287,55.260936787161086],[-60.04320043200431,55.25418247808156],[-60.057600576005754,55.247428169002006],[-60.072000720007196,55.23560812811283],[-60.07560075600756,55.22378808722365],[-60.082800828008274,55.2001480054453],[-60.090000900009,55.18832796455612],[-60.17640176401764,55.12416202830059],[-60.18720187201872,55.09883336925233],[-60.19440194401943,55.09883336925233],[-60.2160021600216,55.10558767833186],[-60.2520025200252,55.087013328363156],[-60.284402844028435,55.0549303602354],[-60.29880298802988,55.02284739210762],[-60.2880028800288,55.02791312391727],[-60.20160201602016,55.087013328363156],[-60.108001080010794,55.13429349191989],[-60.097200972009716,55.139359223729514],[-60.090000900009,55.15117926461869],[-60.07560075600756,55.17313076912717],[-60.03960039600396,55.218722355414],[-60.032400324003234,55.22378808722365],[-60.021600216002156,55.22378808722365],[-60.01800018000179,55.22716524176343],[-60.021600216002156,55.23560812811283],[-59.996399963999636,55.24405101446226],[-59.93879938799388,55.23560812811283],[-59.91359913599136,55.242362437192384],[-59.920799207992076,55.25418247808156],[-59.91719917199171,55.26262536443096],[-59.909999099991,55.26769109624061],[-59.895598955989556,55.27106825078039],[-59.88479884798848,55.27275682805026],[-59.87759877598775,55.28119971439966],[-59.870398703987036,55.28964260074909],[-59.86679866798667,55.296396909828616],[-59.84879848798488,55.30990552798767],[-59.82359823598236,55.32172556887684],[-59.79839798397984,55.33016845522627],[-59.77679776797767,55.331857032496146],[-59.77319773197732,55.31665983706722],[-59.75879758797588,55.29977406436839],[-59.76239762397624,55.28964260074909],[-59.75519755197551,55.28457686893944],[-59.76239762397624,55.28457686893944],[-59.75879758797588,55.28119971439966],[-59.75519755197551,55.27951113712979],[-59.7479974799748,55.27613398259001],[-59.73359733597336,55.29301975528884],[-59.719197191971915,55.27444540532014],[-59.71559715597155,55.25249390081166],[-59.73719737197372,55.255871055351435],[-59.74079740797407,55.24573959173213],[-59.75519755197551,55.22209950995378],[-59.744397443974435,55.220410932683905],[-59.73719737197372,55.21703377814413],[-59.73359733597336,55.2102794690646],[-59.73719737197372,55.201836582715174],[-59.74079740797407,55.19508227363565],[-59.75159751597515,55.19508227363565],[-59.76239762397624,55.201836582715174],[-59.77679776797767,55.19677085090555],[-59.78039780397803,55.193393696365774],[-59.7839978399784,55.18832796455612],[-59.80199801998019,55.17819650093682],[-59.819998199981995,55.16975361458742],[-59.84879848798488,55.16468788277777],[-59.870398703987036,55.15624499642834],[-59.89199891998919,55.15286784188859],[-59.93519935199352,55.16131072823799],[-59.96039960399604,55.16131072823799],[-59.97479974799748,55.15624499642834],[-59.96759967599675,55.14611353280907],[-59.97479974799748,55.139359223729514],[-59.9639996399964,55.11740771922106],[-59.94959949599496,55.12078487376081],[-59.93519935199352,55.135982069189765],[-59.920799207992076,55.14611353280907],[-59.909999099991,55.14611353280907],[-59.89919899198992,55.14104780099942],[-59.88479884798848,55.139359223729514],[-59.86679866798667,55.14780211007894],[-59.86319863198632,55.14104780099942],[-59.86319863198632,55.12922776011024],[-59.86679866798667,55.11909629649094],[-59.79839798397984,55.11234198741141],[-59.78759787597876,55.11740771922106],[-59.76599765997659,55.139359223729514],[-59.75519755197551,55.14611353280907],[-59.73719737197372,55.15117926461869],[-59.67599675996759,55.14611353280907],[-59.67239672396724,55.144424955539165],[-59.66159661596616,55.135982069189765],[-59.65079650796507,55.13260491464999],[-59.643596435964355,55.13429349191989],[-59.62919629196291,55.139359223729514],[-59.60759607596076,55.14273637826929],[-59.56439564395643,55.16806503731752],[-59.53919539195391,55.17650792366695],[-59.53559535595356,55.18326223274647],[-59.53559535595356,55.198459428175426],[-59.5319953199532,55.21365662360435],[-59.517595175951755,55.21365662360435],[-59.50319503195031,55.20521373725495],[-59.4959949599496,55.19508227363565],[-59.492394923949234,55.17988507820672],[-59.49959499594995,55.166376460047644],[-59.49959499594995,55.15455641915847],[-59.4959949599496,55.139359223729514],[-59.467194671946714,55.15117926461869],[-59.43839438394383,55.15117926461869],[-59.431194311943116,55.14273637826929],[-59.45279452794527,55.11909629649094],[-59.48519485194852,55.100521946522235],[-59.4959949599496,55.09207906017281],[-59.51399513995139,55.06675040112458],[-59.52479524795247,55.05830751477515],[-59.542795427954275,55.04986462842575],[-59.542795427954275,55.051553205695626],[-59.54999549995499,55.0532417829655],[-59.55719557195572,55.051553205695626],[-59.56439564395643,55.04986462842575],[-59.62919629196291,55.00089588759914],[-59.63999639996399,54.99583015578949],[-59.64719647196472,54.99583015578949],[-59.65439654396543,54.997518733059366],[-59.66159661596616,55.00089588759914],[-59.6579965799658,55.00258446486902],[-59.67959679596795,54.989075846709966],[-59.72279722797228,54.97387865128101],[-59.73719737197372,54.96881291947136],[-59.719197191971915,54.95530430131231],[-59.73359733597336,54.93672995134361],[-59.75879758797588,54.91984417864478],[-59.80199801998019,54.9080241377556],[-59.82719827198271,54.89282694232665],[-59.84879848798488,54.87425259235795],[-59.85959859598596,54.859055396928994],[-59.85239852398523,54.84554677876994],[-59.845198451984515,54.84723535603982],[-59.83439834398344,54.85398966511934],[-59.82359823598236,54.85230108784947],[-59.819998199981995,54.84048104696029],[-59.82719827198271,54.83034958334099],[-59.8379983799838,54.82021811972169],[-59.845198451984515,54.806709501562636],[-59.85599855998559,54.78982372886381],[-59.945999459994596,54.75605218346615],[-59.920799207992076,54.7425435653071],[-59.89919899198992,54.74760929711675],[-59.87759877598775,54.75774076073603],[-59.845198451984515,54.766183647085455],[-59.819998199981995,54.779692265244506],[-59.79119791197911,54.78644657432403],[-59.79119791197911,54.79488946067346],[-59.79839798397984,54.80502092429276],[-59.80199801998019,54.815152387912036],[-59.80199801998019,54.85230108784947],[-59.794797947979475,54.87594116962782],[-59.76599765997659,54.88944978778687],[-59.7479974799748,54.90464698321583],[-59.73719737197372,54.9080241377556],[-59.69759697596976,54.91477844683513],[-59.69039690396903,54.916467024105],[-59.67599675996759,54.926598487724306],[-59.62559625596255,54.948549992232785],[-59.44919449194491,55.06168466931493],[-59.42759427594275,55.06675040112458],[-59.41319413194131,55.05830751477515],[-59.41319413194131,55.02960170118715],[-59.39879398793987,55.03973316480645],[-59.366393663936634,55.09883336925233],[-59.30879308793088,55.14611353280907],[-59.30879308793088,55.149490687348816],[-59.30879308793088,55.16468788277777],[-59.29439294392944,55.17819650093682],[-59.28719287192871,55.18663938728625],[-59.28359283592836,55.193393696365774],[-59.27639276392763,55.2001480054453],[-59.26919269192692,55.20859089179473],[-59.25119251192511,55.21534520087425],[-59.23319233192332,55.220410932683905],[-59.215192151921514,55.218722355414],[-59.2079920799208,55.20859089179473],[-59.21879218792188,55.201836582715174],[-59.22239222392224,55.193393696365774],[-59.22239222392224,55.1815736554766],[-59.22239222392224,55.16806503731752],[-59.2079920799208,55.17819650093682],[-59.189991899918994,55.19508227363565],[-59.1719917199172,55.21365662360435],[-59.16119161191611,55.23898528265261],[-59.14679146791468,55.23223097357308],[-59.13239132391324,55.21365662360435],[-59.12519125191251,55.19508227363565],[-59.14319143191432,55.15455641915847],[-59.18279182791828,55.130916337380114],[-59.229592295922956,55.114030564681286],[-59.26199261992619,55.09207906017281],[-59.26919269192692,55.08363617382341],[-59.27639276392763,55.06506182385468],[-59.28359283592836,55.05830751477515],[-59.29439294392944,55.0532417829655],[-59.31959319593196,55.046487473885975],[-59.38799387993879,55.00427304213892],[-59.391593915939154,54.989075846709966],[-59.380793807938076,54.97725580582079],[-59.366393663936634,54.989075846709966],[-59.34479344793448,55.00765019667867],[-59.32679326793267,55.016093083028096],[-59.305193051930516,55.01778166029797],[-59.28359283592836,55.02115881483775],[-59.26199261992619,55.02960170118715],[-59.2439924399244,55.046487473885975],[-59.240392403924034,55.04817605115585],[-59.240392403924034,55.04986462842575],[-59.23679236792367,55.04986462842575],[-59.240392403924034,55.07181613293423],[-59.22599225992259,55.08363617382341],[-59.179191791917916,55.09883336925233],[-59.16839168391684,55.08025901928363],[-59.153991539915395,55.073504710204105],[-59.14679146791468,55.08025901928363],[-59.153991539915395,55.09883336925233],[-59.14679146791468,55.108964832871635],[-59.13959139591395,55.11909629649094],[-59.128791287912875,55.12753918284034],[-59.11079110791107,55.12585060557046],[-59.09999099990999,55.11571914195116],[-59.09999099990999,55.103899101061984],[-59.10719107191072,55.09207906017281],[-59.103591035910355,55.078570442013756],[-59.0819908199082,55.09714479198246],[-59.07479074790747,55.108964832871635],[-59.07119071190712,55.12922776011024],[-59.06399063990639,55.14780211007894],[-59.04959049590495,55.15962215096812],[-59.027990279902795,55.16131072823799],[-59.00639006390064,55.15286784188859],[-59.00639006390064,55.14611353280907],[-59.00639006390064,55.135982069189765],[-59.002790027900275,55.12753918284034],[-58.99558995589956,55.11909629649094],[-58.98838988389883,55.122473451030686],[-58.97038970389704,55.135982069189765],[-58.96318963189631,55.139359223729514],[-58.9559895598956,55.130916337380114],[-58.95958959589595,55.11065341014151],[-58.97398973989739,55.078570442013756],[-59.02439024390243,55.019470237567845],[-59.04239042390424,55.005961619408794],[-59.0459904599046,54.99920731032927],[-59.03519035190351,54.99583015578949],[-59.027990279902795,54.997518733059366],[-59.01719017190172,55.011027351218445],[-59.00639006390064,55.016093083028096],[-58.99918999189991,55.019470237567845],[-58.9919899198992,55.02115881483775],[-58.98838988389883,55.019470237567845],[-58.98118981189812,55.016093083028096],[-58.98118981189812,55.01440450575819],[-58.97398973989739,54.99920731032927],[-58.97398973989739,54.99583015578949],[-58.96318963189631,54.99414157851962],[-58.9559895598956,54.99245300124974],[-58.94158941589416,54.98232153763044],[-58.90918909189091,54.96543576493161],[-58.89118891188912,54.953615724042436],[-58.90918909189091,54.94348426042313],[-58.94878948789487,54.93672995134361],[-58.96678966789668,54.92828706499418],[-58.95958959589595,54.92828706499418],[-58.97398973989739,54.918155601374906],[-59.01719017190172,54.899581251406175],[-59.01719017190172,54.89282694232665],[-58.97398973989739,54.891138365056776],[-58.95958959589595,54.89282694232665],[-58.94158941589416,54.899581251406175],[-58.93798937989379,54.90464698321583],[-58.93438934389343,54.91140129229535],[-58.93438934389343,54.916467024105],[-58.93438934389343,54.91984417864478],[-58.90558905589056,54.92322133318453],[-58.88758887588875,54.91140129229535],[-58.88398883988839,54.8978926741363],[-58.90558905589056,54.89282694232665],[-58.901989019890195,54.877629746897696],[-58.90558905589056,54.87087543781817],[-58.91638916389164,54.86580970600852],[-58.919989199892,54.855678242389246],[-58.91278912789127,54.84892393330969],[-58.89838898388983,54.84554677876994],[-58.83358833588335,54.842169624230166],[-58.82278822788227,54.84385820150004],[-58.81558815588156,54.850612510579595],[-58.80838808388083,54.855678242389246],[-58.79758797587975,54.85736681965912],[-58.77238772387723,54.84723535603982],[-58.765187651876516,54.842169624230166],[-58.76158761587615,54.83541531515064],[-58.76158761587615,54.82190669699159],[-58.75798757987579,54.80839807883251],[-58.750787507875074,54.80333234702286],[-58.74358743587436,54.80502092429276],[-58.73278732787327,54.842169624230166],[-58.714787147871476,54.850612510579595],[-58.69678696786967,54.84385820150004],[-58.700387003870034,54.832038160610864],[-58.68238682386823,54.81852954245181],[-58.65358653586536,54.81008665610241],[-58.59598595985959,54.80333234702286],[-58.51678516785168,54.80333234702286],[-58.5419854198542,54.79151230613368],[-58.55638556385563,54.78306941978428],[-58.563585635856356,54.769560801625204],[-58.549185491854914,54.77124937889511],[-58.523985239852394,54.78138084251438],[-58.50598505985059,54.78306941978428],[-58.437584375843755,54.77631511070476],[-58.44478444784447,54.761117915275804],[-58.437584375843755,54.74929787438663],[-58.42318423184231,54.744232142576976],[-58.40158401584016,54.7425435653071],[-58.387183871838715,54.74760929711675],[-58.39078390783908,54.75942933800593],[-58.39798397983979,54.77631511070476],[-58.39798397983979,54.78982372886381],[-58.387183871838715,54.79488946067346],[-58.20358203582036,54.79826661521321],[-58.19278192781927,54.79488946067346],[-58.18918189181892,54.78982372886381],[-58.185581855818555,54.78644657432403],[-58.18918189181892,54.78306941978428],[-58.19998199982,54.77800368797463],[-58.18918189181892,54.76449506981555],[-58.17478174781748,54.74929787438663],[-58.160381603816035,54.7425435653071],[-58.13878138781388,54.739166410767325],[-58.023580235802356,54.7425435653071],[-58.00558005580055,54.73747783349745],[-58.009180091800914,54.7222806380685],[-57.99117991179911,54.717214906258846],[-57.97677976779768,54.72396921533837],[-57.96237962379624,54.73578925622755],[-57.94437944379443,54.7425435653071],[-57.86517865178651,54.744232142576976],[-57.847178471784716,54.739166410767325],[-57.78957789577895,54.69357482448049],[-57.7859778597786,54.690197669940716],[-57.7859778597786,54.68682051540097],[-57.7859778597786,54.68344336086119],[-57.78237782377823,54.68006620632144],[-57.771577715777156,54.67837762905154],[-57.76797767977679,54.681754783591316],[-57.76077760777608,54.68513193813109],[-57.75357753577535,54.68682051540097],[-57.74277742777427,54.68850909267084],[-57.73557735577356,54.69188624721062],[-57.72837728377283,54.690197669940716],[-57.721177211772115,54.68006620632144],[-57.72837728377283,54.663180433622614],[-57.71037710377104,54.64798323819366],[-57.68517685176852,54.63785177457436],[-57.66717667176671,54.63278604276471],[-57.60957609576096,54.63954035184426],[-57.58077580775807,54.63954035184426],[-57.57717577175771,54.64291750638401],[-57.57357573575736,54.64798323819366],[-57.56637566375663,54.65304897000331],[-57.55917559175592,54.65811470181296],[-57.55557555575555,54.65980327908284],[-57.48717487174871,54.65811470181296],[-57.45117451174511,54.649671815463535],[-57.44757447574476,54.62603173368518],[-57.436774367743666,54.62603173368518],[-57.42957429574295,54.62434315641531],[-57.411574115741146,54.619277424605656],[-57.411574115741146,54.61252311552613],[-57.418774187741874,54.59732592009718],[-57.40077400774007,54.592260188287526],[-57.35397353973539,54.59057161101765],[-57.35037350373503,54.58888303374778],[-57.35037350373503,54.585505879208],[-57.35037350373503,54.57368583831882],[-57.35397353973539,54.5669315292393],[-57.361173611736106,54.565242951969395],[-57.368373683736834,54.565242951969395],[-57.37917379173791,54.565242951969395],[-57.38997389973899,54.56017722015977],[-57.418774187741874,54.556800065619996],[-57.43317433174332,54.556800065619996],[-57.43317433174332,54.55004575654047],[-57.40437404374043,54.54835717927057],[-57.382773827738276,54.54160287019104],[-57.37557375573755,54.52640567476212],[-57.38997389973899,54.502765592983735],[-57.411574115741146,54.49094555209456],[-57.44037440374403,54.48756839755481],[-57.659976599766,54.489256974824684],[-57.70677706777067,54.47574835666563],[-57.68517685176852,54.46561689304633],[-57.48357483574836,54.467305470316205],[-57.45117451174511,54.467305470316205],[-57.418774187741874,54.46055116123668],[-57.436774367743666,54.4487311203475],[-57.45117451174511,54.453796852157154],[-57.46197461974619,54.462239738506554],[-57.48357483574836,54.462239738506554],[-57.50157501575015,54.46392831577646],[-57.53037530375303,54.453796852157154],[-57.54117541175411,54.44704254307763],[-57.519575195751955,54.43522250218845],[-57.53037530375303,54.42509103856915],[-57.57357573575736,54.409893843140196],[-57.58797587975879,54.399762379520894],[-57.63477634776348,54.382876606822066],[-57.65277652776527,54.37949945228232],[-57.67797677976779,54.377810875012415],[-57.76437764377643,54.38794233863172],[-57.7859778597786,54.391319493171494],[-57.796777967779676,54.391319493171494],[-57.807578075780754,54.38963091590162],[-57.82557825578256,54.38118802955219],[-57.83637836378364,54.37949945228232],[-57.847178471784716,54.37949945228232],[-57.85437854378543,54.38118802955219],[-57.86157861578616,54.38456518409197],[-57.86877868778687,54.38963091590162],[-57.87957879578795,54.39300807044137],[-57.89037890378903,54.391319493171494],[-57.90477904779047,54.38794233863172],[-58.185581855818555,54.35923652504371],[-58.18918189181892,54.34403932961479],[-58.24318243182431,54.32546497964606],[-58.261182611826115,54.31026778421713],[-58.22158221582215,54.311956361487006],[-58.13878138781388,54.33221928872558],[-58.09918099180992,54.33221928872558],[-58.11718117181171,54.31871067056653],[-58.160381603816035,54.30520205240748],[-58.17838178381784,54.29675916605805],[-58.19638196381963,54.30351347513758],[-58.210782107821075,54.301824897867704],[-58.24678246782467,54.29000485697853],[-58.24318243182431,54.283250547899],[-58.22878228782288,54.26805335247005],[-58.22878228782288,54.2629876206604],[-58.235982359823595,54.25623331158087],[-58.25038250382504,54.254544734311],[-58.3259832598326,54.25285615704112],[-58.46638466384664,54.23428180707239],[-58.563585635856356,54.20726457075426],[-58.68238682386823,54.15660725265781],[-58.72918729187292,54.146475789038504],[-58.88038880388804,54.146475789038504],[-59.002790027900275,54.12114712999025],[-59.13239132391324,54.1076385118312],[-59.153991539915395,54.102572780021546],[-59.18639186391863,54.08737558459259],[-59.23319233192332,54.08230985278297],[-59.26919269192692,54.067112657354016],[-59.39879398793987,54.05022688465519],[-59.42039420394204,54.05022688465519],[-59.51399513995139,54.06373550281424],[-59.56079560795608,54.056981193734714],[-59.57879578795787,54.05022688465519],[-59.5859958599586,54.04347257557566],[-59.593195931959315,54.04347257557566],[-59.58239582395824,54.03840684376601],[-59.5319953199532,54.026586802876835],[-59.52479524795247,54.026586802876835],[-59.52119521195212,54.021521071067184],[-59.52119521195212,54.004635298368356],[-59.51039510395104,54.00125814382858],[-59.441994419944194,54.01645533925753],[-59.30159301593015,54.01814391652741],[-59.12159121591216,54.05529261646484],[-58.96318963189631,54.07386696643354],[-58.81918819188192,54.11439282091072],[-58.76878768787688,54.124524284530025],[-58.74718747187471,54.1262128617999],[-58.69678696786967,54.124524284530025],[-58.68238682386823,54.12959001633968],[-58.65358653586536,54.14816436630838],[-58.574385743857434,54.17518160262651],[-58.5419854198542,54.19375595259521],[-58.53478534785347,54.19206737532534],[-58.52758527585276,54.19037879805546],[-58.51678516785168,54.19206737532534],[-58.50958509585095,54.19375595259521],[-58.49518495184951,54.19375595259521],[-58.47718477184772,54.195444529865085],[-58.45558455584555,54.20051026167474],[-58.437584375843755,54.20726457075426],[-58.412384123841235,54.230904652532644],[-58.39438394383943,54.235970384342295],[-58.37278372783727,54.22752749799287],[-58.39078390783908,54.21908461164347],[-58.40878408784087,54.208953148024165],[-58.42678426784268,54.195444529865085],[-58.4519845198452,54.16336156173733],[-58.462784627846275,54.15323009811803],[-58.50238502385024,54.13972147995898],[-58.523985239852394,54.1279014390698],[-58.53478534785347,54.1160813981806],[-58.54558545585455,54.10088420275167],[-58.563585635856356,54.083998430052844],[-58.60318603186032,54.05529261646484],[-58.624786247862474,54.04347257557566],[-58.65358653586536,54.03671826649611],[-58.7039870398704,54.03334111195636],[-58.85878858788587,54.05022688465519],[-59.04239042390424,54.029963957416584],[-59.04239042390424,54.02320964833706],[-58.919989199892,54.01645533925753],[-58.96318963189631,53.977618062050226],[-58.97398973989739,53.9708637529707],[-59.002790027900275,53.964109443891175],[-59.00999009990099,53.95735513481165],[-59.03519035190351,53.952289403002],[-59.103591035910355,53.952289403002],[-59.11079110791107,53.94722367119235],[-59.13239132391324,53.94722367119235],[-59.215192151921514,53.93033789849352],[-59.26919269192692,53.91176354852482],[-59.30159301593015,53.89487777582599],[-59.34479344793448,53.88474631220669],[-59.366393663936634,53.879680580397036],[-59.42759427594275,53.844220457729506],[-59.441994419944194,53.844220457729506],[-59.47439474394743,53.82733468503068],[-59.5319953199532,53.82226895322103],[-59.63999639996399,53.8239575304909],[-59.79119791197911,53.847597612269254],[-59.845198451984515,53.844220457729506],[-59.86679866798667,53.839154725919855],[-59.87759877598775,53.83240041684033],[-59.87759877598775,53.8239575304909],[-59.86679866798667,53.817203221411376],[-59.82719827198271,53.817203221411376],[-59.81279812798128,53.8138260668716],[-59.80559805598055,53.79862887144267],[-59.82359823598236,53.79356313963302],[-59.89919899198992,53.7952517169029],[-60,53.78005452147394],[-60.04320043200431,53.76654590331489],[-60.06480064800648,53.76148017150524],[-60.082800828008274,53.76485732604502],[-60.133201332013314,53.78343167601372],[-60.12960129601295,53.77498878966429],[-60.1260012600126,53.77330021239442],[-60.1260012600126,53.77498878966429],[-60.1260012600126,53.776677366934194],[-60.108001080010794,53.75810301696549],[-60.07920079200791,53.73784008972689],[-60.04320043200431,53.72095431702806],[-60.01800018000179,53.714200007948534],[-60.01800018000179,53.70744569886901],[-60.06840068400683,53.70913427613888],[-60.09360093600935,53.700691389789455],[-60.10440104401043,53.6770513080111],[-60.108001080010794,53.651722648962874],[-60.11160111601116,53.634836876264046],[-60.11160111601116,53.61795110356522],[-60.097200972009716,53.59768817632661],[-60.082800828008274,53.58249098089769],[-60.072000720007196,53.567293785468735],[-60.07560075600756,53.553785167309684],[-60.10080100801008,53.55040801276991],[-60.11160111601116,53.54703085823013],[-60.12960129601295,53.531833662801205],[-60.13680136801368,53.5301450855313],[-60.14040140401404,53.531833662801205],[-60.14400144001439,53.53521081734095],[-60.14400144001439,53.540276549150605],[-60.147601476014756,53.553785167309684],[-60.147601476014756,53.55547374457956],[-60.15480154801547,53.55547374457956],[-60.158401584015834,53.55716232184943],[-60.183601836018354,53.56560520819886],[-60.23040230402303,53.575736671818134],[-60.27360273602736,53.599376753596516],[-60.33840338403384,53.62639398991462],[-60.35640356403563,53.6399026080737],[-60.37080370803707,53.656788380772525],[-60.38880388803888,53.6686084216617],[-60.43920439204392,53.6770513080111],[-60.5040050400504,53.70744569886901],[-60.69120691206912,53.73784008972689],[-60.738007380073796,53.75810301696549],[-60.80280802808028,53.77161163512454],[-60.82080820808207,53.78005452147394],[-60.84600846008459,53.820580375951124],[-60.86040860408603,53.83577757138008],[-60.87840878408784,53.83071183957043],[-60.864008640086396,53.8155146441415],[-60.86040860408603,53.7952517169029],[-60.86760867608676,53.77498878966429],[-60.8820088200882,53.75810301696549],[-60.92160921609215,53.73952866699676],[-60.93600936009359,53.727708626107585],[-60.92160921609215,53.714200007948534],[-60.900009000089995,53.71082285340876],[-60.83520835208351,53.727708626107585],[-60.80640806408064,53.72602004883771],[-60.723607236072354,53.70744569886901],[-60.637206372063716,53.70406854432923],[-60.44280442804427,53.64665691715322],[-60.410404104041035,53.62132825810497],[-60.40320403204032,53.61795110356522],[-60.3780037800378,53.61457394902544],[-60.35640356403563,53.607819639945916],[-60.27720277202772,53.562228053659084],[-60.2520025200252,53.553785167309684],[-60.18000180001799,53.540276549150605],[-60.10080100801008,53.5014392719433],[-60.072000720007196,53.50819358102285],[-60.06480064800648,53.50819358102285],[-60.05040050400504,53.49806211740355],[-60.04320043200431,53.47948776743485],[-60.03960039600396,53.45922484019624],[-60.0360003600036,53.44065049022754],[-60.057600576005754,53.450781953846814],[-60.082800828008274,53.45922484019624],[-60.10440104401043,53.46260199473602],[-60.133201332013314,53.46091341746612],[-60.20160201602016,53.44065049022754],[-60.234002340023395,53.420387562988935],[-60.284402844028435,53.39674748121058],[-60.30240302403024,53.393370326670805],[-60.32760327603276,53.38999317213106],[-60.34560345603455,53.38155028578163],[-60.35640356403563,53.36973024489245],[-60.36360363603636,53.35115589492375],[-60.38880388803888,53.3646645130828],[-60.39240392403924,53.36804166762258],[-60.39600396003959,53.36973024489245],[-60.40680406804067,53.3663530903527],[-60.4140041400414,53.357910204003275],[-60.410404104041035,53.34777874038397],[-60.39600396003959,53.33933585403457],[-60.38160381603815,53.3376472767647],[-60.259202592025915,53.344401585844224],[-60.20520205202051,53.35453304946353],[-60.18720187201872,53.35115589492375],[-60.18000180001799,53.335958699494796],[-60.208802088020875,53.31907292679597],[-60.27720277202772,53.29712142228749],[-60.34560345603455,53.281924226858564],[-60.42120421204211,53.27516991777904],[-60.42120421204211,53.268415608699485],[-60.30240302403024,53.27179276323926],[-60.24840248402484,53.28023564958866],[-60.19440194401943,53.29712142228749],[-60.17640176401764,53.30556430863692],[-60.16920169201691,53.30556430863692],[-60.158401584015834,53.30218715409714],[-60.15120151201512,53.29712142228749],[-60.133201332013314,53.27854707231879],[-60.12960129601295,53.27516991777904],[-60.11520115201152,53.27685849504891],[-60.10440104401043,53.28361280412844],[-60.09360093600935,53.292055690477866],[-60.090000900009,53.30556430863692],[-60.14040140401404,53.31569577225622],[-60.15480154801547,53.32413865860562],[-60.14400144001439,53.33427012222492],[-60.12960129601295,53.335958699494796],[-60.10440104401043,53.3376472767647],[-60.06120061200612,53.349467317653875],[-60.046800468004676,53.35115589492375],[-60.02880028800287,53.357910204003275],[-59.98559985599856,53.38999317213106],[-59.971199711997116,53.40350179029011],[-59.93879938799388,53.42376471752871],[-59.93879938799388,53.42714187206846],[-59.92799927999279,53.43220760387811],[-59.909999099991,53.45415910838659],[-59.89919899198992,53.46091341746612],[-59.89199891998919,53.45753626292637],[-59.881198811988114,53.44909337657694],[-59.8739987399874,53.447404799307066],[-59.870398703987036,53.45753626292637],[-59.87759877598775,53.46766772654564],[-59.881198811988114,53.47611061289507],[-59.88479884798848,53.482864921974596],[-59.8739987399874,53.48793065378425],[-59.85599855998559,53.48624207651437],[-59.83079830798307,53.477799190164944],[-59.80919809198092,53.474422035625196],[-59.7839978399784,53.48117634470472],[-59.7839978399784,53.48793065378425],[-59.80919809198092,53.49468496286377],[-59.85959859598596,53.49975069467342],[-59.881198811988114,53.513259312832474],[-59.89199891998919,53.5301450855313],[-59.881198811988114,53.53858797188073],[-59.85599855998559,53.53858797188073],[-59.75519755197551,53.52339077645178],[-59.60759607596076,53.53352224007108],[-59.55719557195572,53.54703085823013],[-59.5319953199532,53.55040801276991],[-59.51039510395104,53.55547374457956],[-59.48879488794887,53.56898236273861],[-59.45279452794527,53.59768817632661],[-59.38799387993879,53.62639398991462],[-59.37719377193771,53.634836876264046],[-59.37719377193771,53.6483454944231],[-59.366393663936634,53.651722648962874],[-59.34479344793448,53.65341122623275],[-59.330393303933036,53.656788380772525],[-59.32679326793267,53.6669198443918],[-59.32319323193232,53.678739885281004],[-59.315993159931594,53.687182771630404],[-59.29439294392944,53.687182771630404],[-59.26919269192692,53.665231267121925],[-59.25119251192511,53.6770513080111],[-59.2439924399244,53.68380561709063],[-59.23319233192332,53.68887134890028],[-59.21879218792188,53.69393708070993],[-59.2079920799208,53.69393708070993],[-59.20079200792007,53.69055992617018],[-59.19719197191972,53.68380561709063],[-59.18639186391863,53.67536273074123],[-59.17559175591755,53.67198557620145],[-59.15039150391503,53.67536273074123],[-59.13959139591395,53.678739885281004],[-59.128791287912875,53.68380561709063],[-59.1179911799118,53.687182771630404],[-59.08919089190891,53.68380561709063],[-59.078390783907835,53.687182771630404],[-59.07479074790747,53.69393708070993],[-59.06759067590676,53.71588858521841],[-59.06759067590676,53.72095431702806],[-59.05679056790568,53.719265739758185],[-59.03519035190351,53.71588858521841],[-59.02079020790208,53.714200007948534],[-59.02079020790208,53.72602004883771],[-59.02079020790208,53.73784008972689],[-59.01719017190172,53.74459439880641],[-59.01719017190172,53.749660130616064],[-59.00639006390064,53.749660130616064],[-59.027990279902795,53.75134870788594],[-59.04959049590495,53.754725862425715],[-59.0459904599046,53.76992305785467],[-59.04959049590495,53.781743098743846],[-59.06039060390603,53.790185985093245],[-59.07119071190712,53.79694029417277],[-59.04959049590495,53.8138260668716],[-59.002790027900275,53.82902326230055],[-58.98478984789847,53.84084330318973],[-58.96678966789668,53.85435192134878],[-58.88758887588875,53.89318919855609],[-58.88038880388804,53.896566353095864],[-58.87318873188731,53.906697816715166],[-58.8659886598866,53.91682928033444],[-58.86238862388623,53.93033789849352],[-58.851588515885155,53.942157939382696],[-58.84078840788408,53.94722367119235],[-58.74718747187471,53.95397798027187],[-58.65718657186571,53.972552330240575],[-58.52758527585276,54.01476676198766],[-58.32238322383223,54.05191546192506],[-58.30798307983079,54.06035834827449],[-58.289982899829,54.067112657354016],[-58.23958239582396,54.06373550281424],[-58.22158221582215,54.06373550281424],[-58.15678156781567,54.09412989367215],[-58.1279812798128,54.097507048211895],[-57.81837818378183,54.06542408008414],[-57.796777967779676,54.070489811893765],[-57.796777967779676,54.083998430052844],[-57.81837818378183,54.09412989367215],[-57.85077850778508,54.102572780021546],[-57.8759787597876,54.10426135729142],[-57.95157951579516,54.10088420275167],[-57.973179731797316,54.10426135729142],[-58.0379803798038,54.12959001633968],[-58.14958149581496,54.14141005722885],[-58.17838178381784,54.13972147995898],[-58.22518225182252,54.1279014390698],[-58.25038250382504,54.119458552720374],[-58.26478264782648,54.1076385118312],[-58.27198271982719,54.10088420275167],[-58.28278282782827,54.09581847094202],[-58.29358293582935,54.092441316402244],[-58.30798307983079,54.09075273913237],[-58.32238322383223,54.092441316402244],[-58.32958329583295,54.097507048211895],[-58.33318333183331,54.10426135729142],[-58.34398343983439,54.11270424364085],[-58.39798397983979,54.1279014390698],[-58.4159841598416,54.13972147995898],[-58.40878408784087,54.16336156173733],[-58.39078390783908,54.18362448897591],[-58.37638376383764,54.19882168440486],[-58.35478354783547,54.208953148024165],[-58.32958329583295,54.214018879833816],[-58.2539825398254,54.208953148024165],[-58.24318243182431,54.21908461164347],[-58.22878228782288,54.235970384342295],[-58.19998199982,54.23934753888204],[-58.109981099810994,54.23259322980252],[-58.09918099180992,54.22752749799287],[-58.073980739807396,54.235970384342295],[-58.04158041580415,54.24103611615192],[-58.01278012780128,54.23934753888204],[-57.99117991179911,54.230904652532644],[-57.96957969579695,54.22077318891334],[-57.933579335793354,54.21233030256391],[-57.90117901179012,54.208953148024165],[-57.8759787597876,54.214018879833816],[-57.86157861578616,54.20219883894464],[-57.82917829178291,54.20388741621451],[-57.76797767977679,54.214018879833816],[-57.78237782377823,54.20726457075426],[-57.771577715777156,54.19713310713499],[-57.746377463774635,54.195444529865085],[-57.69957699576996,54.20051026167474],[-57.60237602376023,54.187001643515686],[-57.60957609576096,54.181935911706034],[-57.61677616776167,54.16673871627708],[-57.59157591575915,54.17011587081686],[-57.569975699756995,54.181935911706034],[-57.54837548375484,54.187001643515686],[-57.53037530375303,54.173493025356635],[-57.46557465574655,54.20051026167474],[-57.45837458374584,54.19037879805546],[-57.42957429574295,54.17855875716626],[-57.38997389973899,54.15323009811803],[-57.386373863738626,54.146475789038504],[-57.39717397173972,54.132967170879425],[-57.37557375573755,54.13465574814933],[-57.357573575735756,54.13972147995898],[-57.357573575735756,54.132967170879425],[-57.36477364773647,54.10932708910107],[-57.343173431734314,54.067112657354016],[-57.28917289172891,54.00294672109848],[-57.260372603726026,53.977618062050226],[-57.2459724597246,53.96748659843092],[-57.235172351723506,53.9607322893514],[-57.181171811718116,53.95735513481165],[-57.15957159571596,53.950600825732096],[-57.14517145171452,53.93371505303327],[-57.16317163171631,53.93540363030317],[-57.181171811718116,53.93878078484292],[-57.19917199171991,53.94046936211282],[-57.217172171721714,53.93033789849352],[-57.22437224372243,53.915140703064566],[-57.22077220772208,53.896566353095864],[-57.21357213572135,53.879680580397036],[-57.19917199171991,53.87123769404761],[-57.18477184771848,53.86786053950786],[-57.14517145171452,53.844220457729506],[-57.12717127171271,53.84084330318973],[-57.10917109171092,53.839154725919855],[-57.09117091170911,53.83577757138008],[-57.07677076770767,53.8239575304909],[-57.105571055710556,53.8239575304909],[-57.119971199712,53.825646107760775],[-57.130771307713076,53.83071183957043],[-57.130771307713076,53.825646107760775],[-57.13437134371344,53.825646107760775],[-57.13797137971379,53.8239575304909],[-57.119971199712,53.8155146441415],[-57.10917109171092,53.803694603252325],[-57.105571055710556,53.79356313963302],[-57.14877148771487,53.785120253283594],[-57.155971559715596,53.77161163512454],[-57.14517145171452,53.75810301696549],[-57.12357123571235,53.749660130616064],[-57.12357123571235,53.741217244266664],[-57.15237152371523,53.73952866699676],[-57.20277202772027,53.719265739758185],[-57.256772567725676,53.70913427613888],[-57.335973359733586,53.67198557620145],[-57.45837458374584,53.6483454944231],[-57.51597515975159,53.62639398991462],[-57.54837548375484,53.59093386724709],[-57.4979749797498,53.602753908136265],[-57.44757447574476,53.62639398991462],[-57.44037440374403,53.61795110356522],[-57.44037440374403,53.61119679448569],[-57.44757447574476,53.60444248540614],[-57.45477454774547,53.59768817632661],[-57.418774187741874,53.599376753596516],[-57.40077400774007,53.602753908136265],[-57.386373863738626,53.607819639945916],[-57.37557375573755,53.607819639945916],[-57.33957339573395,53.59093386724709],[-57.32877328773287,53.58417955816756],[-57.317973179731794,53.58586813543744],[-57.32157321573216,53.572359517278386],[-57.343173431734314,53.54365370369038],[-57.32157321573216,53.54365370369038],[-57.307173071730716,53.53521081734095],[-57.30357303573035,53.518325044642125],[-57.310773107731066,53.49468496286377],[-57.32517325173251,53.474422035625196],[-57.361173611736106,53.44909337657694],[-57.37917379173791,53.433896181147986],[-57.36477364773647,53.43727333568776],[-57.343173431734314,53.44571622203719],[-57.332373323733236,53.447404799307066],[-57.317973179731794,53.44571622203719],[-57.29637296372964,53.43896191295764],[-57.281972819728196,53.44065049022754],[-57.281972819728196,53.447404799307066],[-57.292772927729274,53.469356303815545],[-57.267572675726754,53.48961923105412],[-57.15957159571596,53.540276549150605],[-57.14877148771487,53.54365370369038],[-57.13437134371344,53.55040801276991],[-57.13437134371344,53.56391663092896],[-57.14517145171452,53.57067094000851],[-57.166771667716674,53.562228053659084],[-57.13437134371344,53.58249098089769],[-57.130771307713076,53.58755671270734],[-57.13437134371344,53.60950821721579],[-57.13437134371344,53.62132825810497],[-57.119971199712,53.62639398991462],[-57.09837098370983,53.62808256718452],[-57.07317073170731,53.63652545353392],[-57.06237062370623,53.65003407169297],[-57.06957069570696,53.6669198443918],[-57.03717037170371,53.68549419436053],[-57.01197011970119,53.70913427613888],[-56.98316983169832,53.727708626107585],[-56.94716947169471,53.73615151245701],[-56.92196921969219,53.732774357917236],[-56.88596885968859,53.719265739758185],[-56.86436864368643,53.72095431702806],[-56.8319683196832,53.732774357917236],[-56.81396813968139,53.732774357917236],[-56.79596795967959,53.72095431702806],[-56.79236792367924,53.73108578064736],[-56.78516785167851,53.73446293518711],[-56.777967779677795,53.732774357917236],[-56.76716767167672,53.727708626107585],[-56.75636756367564,53.727708626107585],[-56.745567455674546,53.732774357917236],[-56.7419674196742,53.741217244266664],[-56.752767527675275,53.749660130616064],[-56.71676716767168,53.75303728515584],[-56.644766447664466,53.719265739758185],[-56.594365943659426,53.714200007948534],[-56.594365943659426,53.72095431702806],[-56.60516605166052,53.72602004883771],[-56.62316623166231,53.73784008972689],[-56.63036630366304,53.741217244266664],[-56.63036630366304,53.749660130616064],[-56.60876608766087,53.749660130616064],[-56.615966159661596,53.76485732604502],[-56.615966159661596,53.76992305785467],[-56.60876608766087,53.76992305785467],[-56.594365943659426,53.75641443969559],[-56.579965799658,53.75979159423537],[-56.56196561965619,53.76992305785467],[-56.543965439654386,53.776677366934194],[-56.525965259652594,53.776677366934194],[-56.51156511565115,53.78005452147394],[-56.47916479164792,53.790185985093245],[-56.43596435964359,53.768234480584766],[-56.425164251642514,53.75303728515584],[-56.439564395643956,53.741217244266664],[-56.43236432364323,53.73952866699676],[-56.41076410764107,53.727708626107585],[-56.42876428764288,53.72095431702806],[-56.493564935649346,53.72095431702806],[-56.543965439654386,53.71251143067863],[-56.579965799658,53.697314235249706],[-56.590765907659076,53.68380561709063],[-56.594365943659426,53.68042846255088],[-56.60516605166052,53.678739885281004],[-56.727567275672754,53.687182771630404],[-56.70956709567095,53.67536273074123],[-56.63396633966339,53.660165535312274],[-56.59796597965979,53.64496833988335],[-56.43236432364323,53.61795110356522],[-56.39996399963999,53.61795110356522],[-56.37476374763747,53.62808256718452],[-56.34956349563495,53.63652545353392],[-56.313563135631355,53.629771144454395],[-56.28116281162811,53.616262526295344],[-56.25956259562595,53.60444248540614],[-56.28116281162811,53.59768817632661],[-56.3279632796328,53.60444248540614],[-56.34956349563495,53.59768817632661],[-56.33156331563315,53.59093386724709],[-56.24876248762487,53.58417955816756],[-56.22356223562235,53.58755671270734],[-56.18396183961839,53.599376753596516],[-56.15876158761587,53.59768817632661],[-56.15156151561516,53.594311021786865],[-56.14436144361443,53.59093386724709],[-56.13356133561335,53.58586813543744],[-56.11916119161191,53.58417955816756],[-56.05796057960579,53.58417955816756],[-56.036360363603634,53.580802403627786],[-55.978759787597866,53.55040801276991],[-55.978759787597866,53.54365370369038],[-55.98235982359823,53.540276549150605],[-55.98955989559896,53.53352224007108],[-55.99315993159931,53.5301450855313],[-55.99315993159931,53.526767930991554],[-55.99315993159931,53.52507935372168],[-55.98955989559896,53.52507935372168],[-55.985959859598594,53.5217021991819],[-55.99675996759967,53.5115707355626],[-56.00756007560075,53.504816426483075],[-56.01476014760148,53.504816426483075],[-56.029160291602906,53.50819358102285],[-56.02556025560256,53.513259312832474],[-56.02196021960219,53.5217021991819],[-56.03276032760327,53.5217021991819],[-56.04356043560435,53.5217021991819],[-56.054360543605426,53.52507935372168],[-56.061560615606155,53.5301450855313],[-56.05796057960579,53.5301450855313],[-56.039960399604,53.536899394610856],[-56.06876068760687,53.545342280960256],[-56.19836198361983,53.56053947638921],[-56.237962379623795,53.56053947638921],[-56.263162631626315,53.553785167309684],[-56.241562415624145,53.536899394610856],[-56.054360543605426,53.477799190164944],[-56.029160291602906,53.46091341746612],[-56.036360363603634,53.433896181147986],[-56.01836018360183,53.43051902660824],[-55.96435964359644,53.411944676639536],[-55.96435964359644,53.406878944829884],[-56.003960039600386,53.39505890394071],[-56.02556025560256,53.384927440321405],[-56.039960399604,53.371418822162326],[-56.01476014760148,53.3663530903527],[-55.99315993159931,53.3747959767021],[-55.97155971559715,53.388304594861154],[-55.953559535595346,53.398436058480456],[-55.924759247592476,53.40181321302023],[-55.899558995589956,53.39505890394071],[-55.85635856358563,53.371418822162326],[-55.85635856358563,53.3646645130828],[-55.874358743587436,53.35959878127315],[-55.88875888758888,53.35115589492375],[-55.84195841958419,53.35115589492375],[-55.83115831158311,53.34777874038397],[-55.81675816758167,53.34102443130445],[-55.80595805958059,53.33258154495505],[-55.81315813158132,53.330892967685145],[-55.89595895958959,53.31569577225622],[-55.910359103591034,53.308941463176694],[-55.88875888758888,53.30387573136704],[-55.83835838358384,53.30725288590679],[-55.82035820358203,53.300498576827266],[-55.809558095580954,53.27854707231879],[-55.82035820358203,53.26672703142961],[-55.84555845558455,53.25828414508021],[-55.86355863558636,53.24815268146091],[-55.809558095580954,53.232955486031955],[-55.79515795157951,53.23464406330183],[-55.78075780757807,53.24477552692113],[-55.777157771577706,53.25321841327056],[-55.773557735577356,53.259972722350085],[-55.759157591575914,53.26166129961996],[-55.74475744757447,53.254906990540434],[-55.751957519575186,53.24139837238138],[-55.777157771577706,53.217758290603],[-55.79515795157951,53.205938249713824],[-55.809558095580954,53.205938249713824],[-55.823958239582396,53.21269255879338],[-55.84195841958419,53.21438113606325],[-55.834758347583474,53.20424967244395],[-55.823958239582396,53.19242963155477],[-55.809558095580954,53.183986745205374],[-55.798757987579876,53.1806095906656],[-55.76635766357663,53.17723243612582],[-55.759157591575914,53.17385528158607],[-55.773557735577356,53.16541239523664],[-55.748357483574836,53.14514946799807],[-55.809558095580954,53.104623613520886],[-55.827558275582746,53.09786930444133],[-55.85635856358563,53.09786930444133],[-55.9139591395914,53.11644365441006],[-55.94635946359463,53.11813223167994],[-55.94635946359463,53.11137792260041],[-55.924759247592476,53.10968934533051],[-55.903159031590306,53.10293503625098],[-55.885158851588514,53.09111499536181],[-55.877958779587786,53.077606377202756],[-55.885158851588514,53.0539662954244],[-55.90675906759067,53.037080522725574],[-55.93195931959319,53.0252604818364],[-55.95715957159571,53.02188332729662],[-55.98235982359823,53.0252604818364],[-56.03276032760327,53.03876909999545],[-56.05796057960579,53.042146254535226],[-56.165961659616585,53.03539194545567],[-56.165961659616585,53.028637636376146],[-56.14436144361443,53.028637636376146],[-56.08316083160831,53.02188332729662],[-56.09396093960939,53.00837470913757],[-56.10476104761047,52.99655466824839],[-56.11916119161191,52.988111781898965],[-56.137161371613715,52.988111781898965],[-56.12276122761227,52.97291458647001],[-56.10836108361083,52.97122600920014],[-56.09756097560975,52.97629174100979],[-56.06516065160652,52.99993182278814],[-56.05076050760508,53.00499755459779],[-55.93915939159392,52.99486609097849],[-55.903159031590306,52.983046050089314],[-55.885158851588514,52.95940596831096],[-55.89235892358923,52.95940596831096],[-55.899558995589956,52.957717391041086],[-55.903159031590306,52.956028813771184],[-55.910359103591034,52.95434023650131],[-55.88875888758888,52.94252019561213],[-55.85635856358563,52.93576588653261],[-55.834758347583474,52.92394584564343],[-55.84195841958419,52.898617186595175],[-55.81315813158132,52.876665682086696],[-55.80595805958059,52.863157063927645],[-55.802358023580226,52.841205559419166],[-55.81315813158132,52.83107409579986],[-55.834758347583474,52.82938551852999],[-55.87075870758707,52.83107409579986],[-55.877958779587786,52.82600836399024],[-55.89235892358923,52.81925405491069],[-55.89595895958959,52.81756547764081],[-55.90675906759067,52.81587690037094],[-55.960759607596074,52.81587690037094],[-55.978759787597866,52.81249974583116],[-55.99315993159931,52.80743401402151],[-56.000360003600036,52.79561397313233],[-55.924759247592476,52.79561397313233],[-55.94635946359463,52.78379393224316],[-55.975159751597516,52.778728200433505],[-56.003960039600386,52.77703962316363],[-56.029160291602906,52.78210535497328],[-56.061560615606155,52.79899112767211],[-56.137161371613715,52.81756547764081],[-56.162361623616235,52.81756547764081],[-56.15876158761587,52.80405685948176],[-56.137161371613715,52.787171086782934],[-56.10836108361083,52.77535104589376],[-56.05796057960579,52.765219582274455],[-56.036360363603634,52.75508811865515],[-56.02196021960219,52.734825191416576],[-56.029160291602906,52.734825191416576],[-56.02556025560256,52.729759459606925],[-56.02556025560256,52.72807088233702],[-56.02556025560256,52.72638230506715],[-56.029160291602906,52.721316573257496],[-56.003960039600386,52.71962799598762],[-55.98955989559896,52.711185109638194],[-55.978759787597866,52.69936506874902],[-55.96435964359644,52.68754502785984],[-55.94635946359463,52.680790718780315],[-55.928359283592826,52.680790718780315],[-55.88875888758888,52.68754502785984],[-55.798757987579876,52.68754502785984],[-55.777157771577706,52.680790718780315],[-55.759157591575914,52.65546205973209],[-55.74115741157411,52.65208490519231],[-55.74475744757447,52.64364201884291],[-55.75555755557555,52.63857628703326],[-55.76995769957699,52.63688770976336],[-55.78075780757807,52.631821977953706],[-55.773557735577356,52.63013340068383],[-55.759157591575914,52.62675624614408],[-55.751957519575186,52.62506766887418],[-55.76635766357663,52.61493620525488],[-55.79155791557915,52.604804741635604],[-55.802358023580226,52.59805043255605],[-55.81675816758167,52.613247627985004],[-55.83835838358384,52.61662478252478],[-55.885158851588514,52.61155905071513],[-55.89595895958959,52.613247627985004],[-55.903159031590306,52.61662478252478],[-55.9139591395914,52.62169051433443],[-55.93195931959319,52.63857628703326],[-55.93915939159392,52.640264864303134],[-55.94635946359463,52.63857628703326],[-55.960759607596074,52.63857628703326],[-56.04716047160471,52.658839214271836],[-56.09756097560975,52.66221636881161],[-56.12276122761227,52.645330596112785],[-56.054360543605426,52.64701917338266],[-56.01836018360183,52.64195344157301],[-55.98955989559896,52.62844482341396],[-55.978759787597866,52.618313359794655],[-55.975159751597516,52.613247627985004],[-56.029160291602906,52.5946732780163],[-56.039960399604,52.587918968936776],[-56.04716047160471,52.577787505317474],[-56.011160111601114,52.5760989280476],[-55.99675996759967,52.57103319623795],[-55.985959859598594,52.55752457807887],[-56.000360003600036,52.550770268999344],[-56.01836018360183,52.55245884626922],[-56.06876068760687,52.569344618968046],[-56.08316083160831,52.57103319623795],[-56.11556115561156,52.57103319623795],[-56.21996219962199,52.54063880538004],[-56.24516245162451,52.54570453718969],[-56.266762667626665,52.560901732618646],[-56.29916299162991,52.57272177350782],[-56.363963639636395,52.584541814397],[-56.42876428764288,52.58116465985725],[-56.443164431644306,52.587918968936776],[-56.4539645396454,52.5946732780163],[-56.468364683646826,52.59805043255605],[-56.500765007650074,52.59805043255605],[-56.48276482764827,52.59298470074643],[-56.450364503645034,52.5744103507777],[-56.42876428764288,52.57103319623795],[-56.35316353163532,52.569344618968046],[-56.3279632796328,52.56259030988852],[-56.288362883628835,52.54401595991982],[-56.266762667626665,52.53895022811017],[-56.162361623616235,52.53557307357042],[-56.15156151561516,52.53895022811017],[-56.140761407614065,52.54908169172947],[-56.11556115561156,52.54908169172947],[-56.0759607596076,52.542327382649944],[-56.054360543605426,52.54570453718969],[-56.039960399604,52.54570453718969],[-56.036360363603634,52.53895022811017],[-56.03276032760327,52.53219591903064],[-56.02196021960219,52.525441609951116],[-56.011160111601114,52.51868730087159],[-56.000360003600036,52.515310146331814],[-55.910359103591034,52.506867259982386],[-55.827558275582746,52.52206445541134],[-55.83115831158311,52.51699872360169],[-55.84195841958419,52.49504721909321],[-55.76995769957699,52.498424373632986],[-55.74115741157411,52.493358641823335],[-55.759157591575914,52.44945563280638],[-55.726757267572665,52.4477670555365],[-55.67995679956799,52.44945563280638],[-55.647556475564755,52.44270132372685],[-55.647556475564755,52.430881282837674],[-55.6619566195662,52.403864046519544],[-55.64395643956439,52.39373258290027],[-55.64395643956439,52.37853538747132],[-55.65475654756547,52.365026769312266],[-55.672756727567275,52.35827246023271],[-55.68715687156872,52.359961037502615],[-55.701557015570145,52.36671534658214],[-55.71955719557195,52.37515823293154],[-55.73035730357303,52.381912542011065],[-55.74475744757447,52.386978273820716],[-55.809558095580954,52.38528969655084],[-55.798757987579876,52.37515823293154],[-55.773557735577356,52.36164961477249],[-55.76635766357663,52.34982957388331],[-55.76995769957699,52.33969811026401],[-55.784357843578434,52.338009532994135],[-55.84555845558455,52.34982957388331],[-55.91755917559175,52.373469655661665],[-55.978759787597866,52.381912542011065],[-56.16956169561695,52.444389900996725],[-56.19836198361983,52.44607847826663],[-56.187561875618755,52.430881282837674],[-56.165961659616585,52.41737266467862],[-56.11556115561156,52.39879831470989],[-56.02556025560256,52.39204400563037],[-55.99315993159931,52.37684681020144],[-55.97155971559715,52.373469655661665],[-55.960759607596074,52.368403923852014],[-55.949959499594996,52.351518151153186],[-55.94275942759427,52.346452419343535],[-55.823958239582396,52.32956664664471],[-55.823958239582396,52.32281233756518],[-55.84195841958419,52.31605802848566],[-55.85635856358563,52.30930371940613],[-55.85635856358563,52.30423798759648],[-55.84195841958419,52.30423798759648],[-55.83115831158311,52.30761514213623],[-55.82035820358203,52.30761514213623],[-55.809558095580954,52.30423798759648],[-55.81315813158132,52.3008608330567],[-55.81675816758167,52.29579510124705],[-55.7879578795788,52.297483678516954],[-55.78075780757807,52.29579510124705],[-55.773557735577356,52.2924179467073],[-55.773557735577356,52.283975060357875],[-55.76635766357663,52.282286483088],[-55.751957519575186,52.282286483088],[-55.723157231572316,52.29410652397718],[-55.70875708757087,52.29579510124705],[-55.70515705157051,52.2924179467073],[-55.71595715957159,52.282286483088],[-55.73035730357303,52.2721550194687],[-55.74475744757447,52.26877786492895],[-55.759157591575914,52.26708928765905],[-55.773557735577356,52.262023555849396],[-55.7879578795788,52.253580669499996],[-55.79515795157951,52.240072051340945],[-55.76995769957699,52.243449205880694],[-55.726757267572665,52.253580669499996],[-55.70515705157051,52.25526924676987],[-55.68715687156872,52.25020351496022],[-55.61515615156151,52.21980912410234],[-55.63675636756368,52.213054815022815],[-55.6619566195662,52.213054815022815],[-55.70515705157051,52.21980912410234],[-55.73035730357303,52.21474339229269],[-55.74115741157411,52.213054815022815],[-55.748357483574836,52.216431969562564],[-55.751957519575186,52.22487485591199],[-55.76275762757628,52.221497701372215],[-55.773557735577356,52.21474339229269],[-55.78075780757807,52.20630050594329],[-55.759157591575914,52.20461192867339],[-55.71595715957159,52.18772615597456],[-55.69075690756907,52.186037578704685],[-55.701557015570145,52.16070891965646],[-55.70515705157051,52.145511724227504],[-55.701557015570145,52.13200310606845],[-55.68355683556835,52.11174017882985],[-55.71235712357124,52.09147725159124],[-55.74115741157411,52.08978867432137],[-55.773557735577356,52.09147725159124],[-55.802358023580226,52.08303436524184],[-55.79155791557915,52.074591478892415],[-55.76275762757628,52.05601712892371],[-55.784357843578434,52.03575420168514],[-55.809558095580954,52.02224558352606],[-55.86355863558636,52.00873696536701],[-55.88875888758888,52.00704838809713],[-55.935559355593554,52.02055700625618],[-55.96435964359644,52.02224558352606],[-55.949959499594996,52.00873696536701],[-55.90675906759067,51.98340830631875],[-55.89595895958959,51.9698996881597],[-55.903159031590306,51.949636760921095],[-55.91755917559175,51.93443956549217],[-55.935559355593554,51.92599667914274],[-56.01836018360183,51.900668020094514],[-56.036360363603634,51.89897944282464],[-56.04716047160471,51.89391371101499],[-56.07956079560795,51.870273629236635],[-56.11556115561156,51.86351932015708],[-56.12276122761227,51.86014216561733],[-56.14436144361443,51.843256392918505],[-56.16956169561695,51.83143635202933],[-56.17676176761768,51.82637062021968],[-56.191161911619105,51.811173424790724],[-56.20916209162091,51.79766480663167],[-56.23436234362343,51.78753334301237],[-56.25956259562595,51.78246761120272],[-56.338763387633875,51.78246761120272],[-56.34956349563495,51.77909045666294],[-56.35676356763567,51.762204683964114],[-56.37476374763747,51.74869606580506],[-56.39636396363963,51.73856460218576],[-56.41076410764107,51.73349887037611],[-56.43596435964359,51.74363033399541],[-56.4539645396454,51.74363033399541],[-56.46116461164611,51.723367406756836],[-56.464764647646476,51.71492452040741],[-56.475564755647554,51.70648163405801],[-56.579965799658,51.6575128932314],[-56.60516605166052,51.65244716142175],[-56.669966699666986,51.65244716142175],[-56.68076680766808,51.647381429612096],[-56.68796687966879,51.6389385432627],[-56.691566915669156,51.61023272967469],[-56.69876698766987,51.58659264789634],[-56.7059670596706,51.579838338816785],[-56.73836738367383,51.57477260700716],[-56.74916749167491,51.56970687519751],[-56.75996759967599,51.56126398884808],[-56.76716767167672,51.55619825703843],[-56.76716767167672,51.549443947958906],[-56.777967779677795,51.53762390706973],[-56.79596795967959,51.53255817526008],[-56.81036810368103,51.52749244345043],[-56.803168031680315,51.513983825291376],[-56.82476824768247,51.49034374351302],[-56.86076860768607,51.47514654808407],[-56.89676896768967,51.476835125353944],[-56.92556925569255,51.5004752071323],[-56.954369543695435,51.473457970814195],[-56.93996939969399,51.459949352655116],[-56.93996939969399,51.446440734496065],[-56.95076950769507,51.43462069360689],[-56.96516965169651,51.424489229987586],[-56.98676986769867,51.42280065271771],[-57.029970299702995,51.424489229987586],[-57.04797047970479,51.419423498177935],[-57.055170551705515,51.42786638452736],[-57.06957069570696,51.42617780725746],[-57.0839708397084,51.42111207544784],[-57.10197101971019,51.419423498177935],[-57.13797137971379,51.424489229987586],[-57.16317163171631,51.424489229987586],[-57.17037170371704,51.416046343638186],[-57.18837188371883,51.419423498177935],[-57.22437224372243,51.43968642541654],[-57.2459724597246,51.468392239004544],[-57.22797227972279,51.49372089805277],[-57.24957249572495,51.508918093481725],[-57.281972819728196,51.50722951621185],[-57.357573575735756,51.4920323207829],[-57.39717397173972,51.48021227989372],[-57.411574115741146,51.481900857163595],[-57.42597425974259,51.48527801170337],[-57.436774367743666,51.48527801170337],[-57.45477454774547,51.48021227989372],[-57.44037440374403,51.468392239004544],[-57.44037440374403,51.45657219811537],[-57.45117451174511,51.44812931176594],[-57.46557465574655,51.446440734496065],[-57.47277472774728,51.44981788903584],[-57.47637476374763,51.46332650719489],[-57.48357483574836,51.46670366173467],[-57.49077490774907,51.46501508446477],[-57.494374943749435,51.46163792992502],[-57.4979749797498,51.45657219811537],[-57.50157501575015,51.45319504357559],[-57.60237602376023,51.432932116337014],[-57.59877598775988,51.44306357995629],[-57.58077580775807,51.45826077538524],[-57.57717577175771,51.46670366173467],[-57.595175951759515,51.46501508446477],[-57.62757627576275,51.44475215722619],[-57.670776707767075,51.43462069360689],[-57.67797677976779,51.43462069360689],[-57.68517685176852,51.43968642541654],[-57.69237692376923,51.44981788903584],[-57.69237692376923,51.459949352655116],[-57.68877688776887,51.47176939354429],[-57.68517685176852,51.48021227989372],[-57.71397713977139,51.47176939354429],[-57.73197731977319,51.47008081627442],[-57.749977499775,51.46332650719489],[-57.76077760777608,51.43968642541654],[-57.76797767977679,51.41773492090806],[-57.771577715777156,51.40760345728876],[-57.77877778777787,51.40422630274901],[-57.79317793177931,51.40760345728876],[-57.80037800378004,51.416046343638186],[-57.80037800378004,51.42786638452736],[-57.796777967779676,51.43968642541654],[-57.81477814778147,51.432932116337014],[-57.84357843578435,51.40929203455863],[-57.8759787597876,51.40084914820923],[-57.92637926379264,51.370454757351354],[-57.96957969579695,51.334994634683795],[-57.97677976779768,51.329928902874144],[-58.04158041580415,51.313043130175345],[-58.048780487804876,51.31979743925487],[-58.059580595805954,51.313043130175345],[-58.12438124381244,51.29615735747652],[-58.135181351813515,51.29615735747652],[-58.14598145981459,51.30122308928614],[-58.15318153181532,51.30291166655604],[-58.1639816398164,51.29784593474639],[-58.18198181981819,51.28433731658731],[-58.23238232382323,51.277583007507786],[-58.25038250382504,51.28096016204756],[-58.261182611826115,51.29615735747652],[-58.261182611826115,51.31642028471509],[-58.2539825398254,51.329928902874144],[-58.261182611826115,51.334994634683795],[-58.289982899829,51.3366832119537],[-58.27198271982719,51.32824032560427],[-58.30078300783008,51.291091625666866],[-58.289982899829,51.27420585296804],[-58.33318333183331,51.277583007507786],[-58.412384123841235,51.30797739836569],[-58.4519845198452,51.31642028471509],[-58.57078570785707,51.25732008026921],[-58.588785887858876,51.250565771189684],[-58.59598595985959,51.26914012115839],[-58.61038610386103,51.277583007507786],[-58.62118621186211,51.277583007507786],[-58.63198631986319,51.26069723480896],[-58.62838628386284,51.259008657539084],[-58.62118621186211,51.250565771189684],[-58.61758617586176,51.242122884840256],[-58.61758617586176,51.23367999849086],[-58.62838628386284,51.23030284395108],[-58.64278642786428,51.231991421220954],[-58.65358653586536,51.237057153030605],[-58.66078660786607,51.24381146211013],[-58.664386643866436,51.25732008026921],[-58.67158671586715,51.25563150299931],[-58.67878678786788,51.24381146211013],[-58.67158671586715,51.2269256894113],[-58.65718657186571,51.21172849398238],[-58.63558635586355,51.1999084530932],[-58.588785887858876,51.18639983493412],[-58.60318603186032,51.18302268039437],[-58.61038610386103,51.174579794044945],[-58.61758617586176,51.161071175885894],[-58.624786247862474,51.15093971226659],[-58.639186391863916,51.14587398045694],[-58.67158671586715,51.14249682591719],[-58.68238682386823,51.134053939567764],[-58.7039870398704,51.11379101232916],[-58.714787147871476,51.10703670324963],[-58.77958779587796,51.09352808509058],[-58.79038790387904,51.09690523963033],[-58.79758797587975,51.085085198741154],[-58.80838808388083,51.07833088966163],[-58.82278822788227,51.07833088966163],[-58.829988299883,51.090150930550806],[-58.84078840788408,51.081708044201406],[-58.84798847988479,51.071576580582104],[-58.851588515885155,51.054690807883276],[-58.84438844388444,51.054690807883276],[-58.83718837188371,51.0530022306134],[-58.83358833588335,51.049625076073625],[-58.829988299883,51.041182189724225],[-58.84798847988479,51.0327393033748],[-58.8659886598866,51.02091926248562],[-58.88758887588875,50.99896775797714],[-58.89118891188912,50.99390202616749],[-58.91278912789127,50.99896775797714],[-58.90558905589056,51.01247637613622],[-58.88398883988839,51.041182189724225],[-58.89478894788948,51.054690807883276],[-58.91278912789127,51.054690807883276],[-58.93438934389343,51.049625076073625],[-58.94878948789487,51.041182189724225],[-58.9559895598956,51.036116457914574],[-58.96678966789668,51.02598499429527],[-58.97398973989739,51.02091926248562],[-58.98118981189812,51.02091926248562],[-58.98838988389883,51.022607839755494],[-58.99918999189991,51.022607839755494],[-59.00639006390064,51.014164953406095],[-58.99558995589956,51.00403348978679],[-58.98478984789847,51.00234491251692],[-58.977589775897755,51.005722067056666],[-58.96318963189631,51.00741064432657],[-58.9559895598956,51.00234491251692],[-58.9559895598956,50.992213448897616],[-58.96678966789668,50.97026194438914],[-58.96678966789668,50.965196212579485],[-58.97398973989739,50.95844190349996],[-58.97398973989739,50.95337617169031],[-58.97038970389704,50.94831043988066],[-58.9559895598956,50.943244708071006],[-58.952389523895235,50.93986755353126],[-58.952389523895235,50.92804751264208],[-58.9559895598956,50.91791604902278],[-58.95958959589595,50.907784585403476],[-58.96678966789668,50.897653121784174],[-58.9559895598956,50.897653121784174],[-58.952389523895235,50.894275967244425],[-58.94158941589416,50.88414450362512],[-58.96678966789668,50.8773901945456],[-58.97038970389704,50.86050442184677],[-58.95958959589595,50.84193007187807],[-58.952389523895235,50.83011003098889],[-58.95958959589595,50.81997856736959],[-58.97398973989739,50.81660141282981],[-58.98478984789847,50.809847103750286],[-58.98838988389883,50.79802706286111],[-58.9919899198992,50.791272753781584],[-59.00639006390064,50.78620702197193],[-59.027990279902795,50.78114129016228],[-59.02439024390243,50.774386981082756],[-59.02079020790208,50.76763267200323],[-59.01719017190172,50.764255517463454],[-59.00639006390064,50.76087836292368],[-59.03879038790387,50.75243547657428],[-59.06759067590676,50.76256694019358],[-59.08919089190891,50.78451844470206],[-59.09639096390964,50.81153568102016],[-59.09279092790928,50.82504429917924],[-59.07119071190712,50.85037295822747],[-59.06399063990639,50.86388157638655],[-59.06399063990639,50.87570161727572],[-59.06399063990639,50.8875216581649],[-59.07479074790747,50.894275967244425],[-59.08919089190891,50.8875216581649],[-59.09999099990999,50.872324462735946],[-59.11079110791107,50.826732876449114],[-59.12519125191251,50.801404217400886],[-59.18639186391863,50.75750120838393],[-59.18639186391863,50.747369744764626],[-59.204392043920436,50.73217254933567],[-59.21879218792188,50.7406154356851],[-59.23679236792367,50.755812631114054],[-59.254792547925476,50.76087836292368],[-59.26199261992619,50.75412405384415],[-59.26199261992619,50.74568116749475],[-59.25839258392584,50.73723828114532],[-59.26199261992619,50.72710681752602],[-59.26919269192692,50.71866393117662],[-59.27639276392763,50.71697535390675],[-59.28359283592836,50.71697535390675],[-59.29439294392944,50.71359819936697],[-59.315993159931594,50.701778158477794],[-59.34479344793448,50.67476092215966],[-59.366393663936634,50.66462945854036],[-59.37719377193771,50.66294088127049],[-59.40959409594096,50.666318035810264],[-59.42039420394204,50.66462945854036],[-59.42399423994239,50.657875149460835],[-59.42399423994239,50.652809417651184],[-59.416794167941674,50.64774368584156],[-59.405994059940596,50.644366531301785],[-59.416794167941674,50.63254649041261],[-59.42759427594275,50.630857913142734],[-59.43839438394383,50.630857913142734],[-59.44919449194491,50.62748075860296],[-59.456394563945636,50.617349294983654],[-59.467194671946714,50.59202063593543],[-59.45279452794527,50.583577749586],[-59.42399423994239,50.583577749586],[-59.40959409594096,50.57175770869682],[-59.41319413194131,50.554871935997994],[-59.42399423994239,50.53967474056904],[-59.45279452794527,50.532920431489515],[-59.4959949599496,50.537986163299166],[-59.51039510395104,50.546429049648594],[-59.52119521195212,50.54305189510882],[-59.52479524795247,50.537986163299166],[-59.5319953199532,50.53123185421964],[-59.542795427954275,50.527854699679864],[-59.55719557195572,50.519411813330464],[-59.56439564395643,50.50928034971116],[-59.57159571595716,50.49577173155211],[-59.58239582395824,50.483951690662934],[-59.593195931959315,50.47888595885328],[-59.65079650796507,50.47382022704363],[-59.693996939969395,50.46031160888458],[-59.72639726397263,50.456934454344804],[-59.73359733597336,50.45186872253515],[-59.744397443974435,50.44511441345563],[-59.75519755197551,50.4383601043761],[-59.769597695976955,50.44511441345563],[-59.79119791197911,50.440048681645976],[-59.80199801998019,50.44511441345563],[-59.82359823598236,50.429917218026674],[-59.86319863198632,50.39107994081937],[-59.88479884798848,50.377571322660316],[-59.88479884798848,50.37081701358079],[-59.87759877598775,50.369128436310916],[-59.85959859598596,50.364062704501265],[-59.86319863198632,50.35224266361209],[-59.86319863198632,50.34042262272288],[-59.85599855998559,50.33197973637348],[-59.84159841598415,50.32860258183371],[-59.84159841598415,50.33535689091326],[-59.83079830798307,50.34886550907231],[-59.82359823598236,50.35730839542171],[-59.81639816398163,50.34717693180244],[-59.82719827198271,50.32860258183371],[-59.85239852398523,50.31340538640478],[-59.89919899198992,50.29483103643605],[-59.92439924399244,50.288076727356525],[-59.93519935199352,50.28469957281678],[-59.93879938799388,50.27794526373722],[-59.945999459994596,50.261059491038395],[-59.95319953199531,50.26443664557817],[-59.96759967599675,50.2728795319276],[-59.97839978399783,50.2711909546577],[-59.996399963999636,50.25430518195887],[-60.01800018000179,50.244173718339596],[-60.03960039600396,50.24248514106969],[-60.06480064800648,50.25430518195887],[-60.072000720007196,50.24586229560947],[-60.07920079200791,50.244173718339596],[-60.090000900009,50.244173718339596],[-60.097200972009716,50.24079656379982],[-60.10080100801008,50.23741940926004],[-60.108001080010794,50.22897652291064],[-60.11160111601116,50.225599368370865],[-60.122401224012236,50.21884505929134],[-60.133201332013314,50.21377932748169],[-60.14040140401404,50.21546790475156],[-60.133201332013314,50.23235367745039],[-60.172801728017276,50.23235367745039],[-60.1620016200162,50.24079656379982],[-60.15480154801547,50.25092802741912],[-60.15120151201512,50.2627480683083],[-60.15120151201512,50.28469957281678],[-60.15480154801547,50.288076727356525],[-60.17640176401764,50.288076727356525],[-60.1980019800198,50.27625668646735],[-60.22320223202232,50.252616604688995],[-60.24480244802447,50.23404225472029],[-60.27000270002699,50.24079656379982],[-60.259202592025915,50.24586229560947],[-60.24840248402484,50.25430518195887],[-60.24120241202412,50.2627480683083],[-60.234002340023395,50.274568109197475],[-60.2520025200252,50.26950237738782],[-60.26280262802628,50.2711909546577],[-60.27360273602736,50.279633841007126],[-60.27720277202772,50.29483103643605],[-60.284402844028435,50.28469957281678],[-60.284402844028435,50.252616604688995],[-60.29520295202951,50.24586229560947],[-60.33120331203311,50.252616604688995],[-60.34920349203492,50.252616604688995],[-60.36360363603636,50.24586229560947],[-60.35640356403563,50.239107986529945],[-60.35280352803528,50.23404225472029],[-60.35640356403563,50.22897652291064],[-60.36360363603636,50.225599368370865],[-60.37440374403744,50.22897652291064],[-60.38160381603815,50.24248514106969],[-60.38880388803888,50.24586229560947],[-60.39600396003959,50.24923945014922],[-60.40320403204032,50.252616604688995],[-60.410404104041035,50.25430518195887],[-60.41760417604176,50.25092802741912],[-60.42480424804248,50.244173718339596],[-60.43200432004319,50.24079656379982],[-60.43920439204392,50.24248514106969],[-60.44640446404463,50.24586229560947],[-60.44280442804427,50.261059491038395],[-60.46800468004679,50.25599375922877],[-60.50040500405004,50.25430518195887],[-60.50760507605075,50.24923945014922],[-60.52920529205292,50.230665100180516],[-60.540005400054,50.225599368370865],[-60.60120601206012,50.217156482021466],[-60.622806228062274,50.22222221383112],[-60.61920619206191,50.25430518195887],[-60.64080640806408,50.23741940926004],[-60.65160651606516,50.230665100180516],[-60.6660066600666,50.225599368370865],[-60.723607236072354,50.225599368370865],[-60.72000720007199,50.230665100180516],[-60.71640716407164,50.23404225472029],[-60.71640716407164,50.23741940926004],[-60.71640716407164,50.24079656379982],[-60.738007380073796,50.24079656379982],[-60.75240752407524,50.23404225472029],[-60.76680766807668,50.22391079110099],[-60.78120781207812,50.20871359567204],[-60.79560795607955,50.20533644113229],[-60.82080820808207,50.22222221383112],[-60.838808388083876,50.220533636561214],[-60.83160831608316,50.23741940926004],[-60.81720817208172,50.24923945014922],[-60.79560795607955,50.25599375922877],[-60.77760777607776,50.261059491038395],[-60.80280802808028,50.26781380011795],[-60.83520835208351,50.25599375922877],[-60.93240932409324,50.203647863862386],[-60.93600936009359,50.19858213205276],[-60.94320943209432,50.20195928659251],[-60.94680946809467,50.20533644113229],[-60.94680946809467,50.212090750211814],[-60.94680946809467,50.21377932748169],[-60.950409504095035,50.21546790475156],[-60.950409504095035,50.21884505929134],[-60.9540095400954,50.220533636561214],[-60.96120961209611,50.220533636561214],[-60.975609756097555,50.21377932748169],[-60.98280982809828,50.212090750211814],[-60.99720997209971,50.217156482021466],[-61.01161011610115,50.22222221383112],[-61.026010260102595,50.22728794564077],[-61.0440104401044,50.225599368370865],[-61.04761047610475,50.22222221383112],[-61.051210512105115,50.21546790475156],[-61.051210512105115,50.20871359567204],[-61.051210512105115,50.20533644113229],[-61.05841058410584,50.20533644113229],[-61.080010800108,50.212090750211814],[-61.10521105211052,50.20533644113229],[-61.10521105211052,50.203647863862386],[-61.10881108811088,50.20027070932264],[-61.11241112411123,50.19520497751299],[-61.11961119611196,50.19182782297321],[-61.14841148411483,50.20195928659251],[-61.15921159211592,50.20195928659251],[-61.152011520115195,50.185073513893684],[-61.16641166411664,50.185073513893684],[-61.2060120601206,50.20195928659251],[-61.22401224012239,50.20533644113229],[-61.310413104131044,50.19858213205276],[-61.429214292142916,50.168187741194856],[-61.504815048150476,50.158056277575554],[-61.5840158401584,50.12935046398755],[-61.641616416164155,50.12090757763815],[-61.69561695616956,50.10233322766945],[-61.717217172171715,50.100644650399545],[-61.78561785617856,50.10233322766945],[-61.78561785617856,50.10908753674897],[-61.76401764017639,50.11077611401885],[-61.73521735217352,50.1259733094478],[-61.72081720817208,50.13103904125745],[-61.70641706417064,50.132727618527326],[-61.61281612816127,50.15636770030568],[-61.59481594815948,50.158056277575554],[-61.58041580415804,50.163122009385205],[-61.57321573215732,50.17494205027438],[-61.57681576815767,50.18676209116356],[-61.591215912159115,50.19182782297321],[-61.60921609216092,50.17494205027438],[-61.63801638016379,50.16649916392498],[-61.69561695616956,50.158056277575554],[-61.7460174601746,50.13779335033698],[-61.77841778417783,50.1344161957972],[-61.80361803618035,50.1445476594165],[-61.79641796417964,50.17156489573463],[-61.81441814418143,50.190139245703335],[-61.83961839618395,50.20533644113229],[-61.84681846818468,50.220533636561214],[-61.86481864818647,50.230665100180516],[-61.88641886418864,50.23404225472029],[-61.926019260192604,50.23235367745039],[-61.93681936819368,50.23573083199017],[-61.94761947619476,50.239107986529945],[-61.9620196201962,50.24079656379982],[-61.97281972819728,50.23573083199017],[-61.98361983619836,50.230665100180516],[-61.9980199801998,50.22728794564077],[-62.02322023220232,50.225599368370865],[-62.13482134821348,50.24079656379982],[-62.2140221402214,50.24248514106969],[-62.23562235622356,50.24586229560947],[-62.278822788227885,50.2627480683083],[-62.30042300423004,50.274568109197475],[-62.31482314823148,50.28469957281678],[-62.32562325623256,50.28976530462643],[-62.340023400234,50.288076727356525],[-62.35082350823508,50.283010995546874],[-62.36882368823687,50.279633841007126],[-62.379623796237965,50.27625668646735],[-62.383223832238315,50.27794526373722],[-62.38682386823868,50.28469957281678],[-62.38682386823868,50.2914538818963],[-62.39042390423904,50.29483103643605],[-62.40122401224012,50.29483103643605],[-62.4120241202412,50.28976530462643],[-62.41922419224191,50.283010995546874],[-62.42642426424264,50.2728795319276],[-62.433624336243355,50.26781380011795],[-62.45162451624516,50.266125222848046],[-62.458824588245875,50.2711909546577],[-62.4660246602466,50.27794526373722],[-62.480424804248045,50.281322418277],[-62.59562595625955,50.27794526373722],[-62.75042750427504,50.288076727356525],[-62.75042750427504,50.29483103643605],[-62.710827108271076,50.310028231865004],[-62.710827108271076,50.315093963674656],[-62.7540275402754,50.30496250005535],[-62.77922779227792,50.30327392278548],[-62.790027900279,50.310028231865004],[-62.797227972279714,50.29820819097583],[-62.80802808028079,50.29483103643605],[-62.83322833228331,50.288076727356525],[-62.85122851228512,50.29483103643605],[-62.93042930429304,50.288076727356525],[-62.95922959229591,50.288076727356525],[-62.970029700297005,50.2914538818963],[-62.98082980829808,50.29820819097583],[-62.99162991629916,50.31340538640478],[-63.00243002430024,50.31678254094453],[-63.01683016830168,50.315093963674656],[-63.02763027630276,50.310028231865004],[-63.045630456304565,50.29314245916618],[-63.05283052830528,50.288076727356525],[-63.06723067230672,50.28638815008665],[-63.11043110431103,50.29483103643605],[-63.15723157231572,50.29483103643605],[-63.175231752317515,50.28976530462643],[-63.175231752317515,50.279633841007126],[-63.16443164431644,50.26781380011795],[-63.16083160831607,50.261059491038395],[-63.17883178831788,50.25092802741912],[-63.2040320403204,50.24586229560947],[-63.250832508325075,50.24079656379982],[-63.333633336333364,50.25092802741912],[-63.358833588335884,50.24586229560947],[-63.36963369633696,50.24079656379982],[-63.387633876338754,50.22391079110099],[-63.39483394833948,50.220533636561214],[-63.420034200342,50.21884505929134],[-63.434434344343444,50.220533636561214],[-63.44163441634416,50.22222221383112],[-63.448834488344886,50.24248514106969],[-63.463234632346314,50.25599375922877],[-63.484834848348484,50.2627480683083],[-63.510035100351004,50.26781380011795],[-63.535235352353524,50.266125222848046],[-63.603636036360356,50.25430518195887],[-63.610836108361084,50.25768233649865],[-63.62523625236253,50.2711909546577],[-63.636036360363605,50.274568109197475],[-63.65043650436503,50.2728795319276],[-63.661236612366125,50.2711909546577],[-63.6720367203672,50.26950237738782],[-63.68283682836828,50.274568109197475],[-63.690036900368995,50.279633841007126],[-63.70083700837007,50.29483103643605],[-63.7080370803708,50.301585345515605],[-63.72243722437224,50.30496250005535],[-63.76923769237692,50.301585345515605],[-63.780037800378,50.30327392278548],[-63.7980379803798,50.31340538640478],[-63.80883808838088,50.315093963674656],[-63.988839888398886,50.306651077325256],[-64.03564035640356,50.296519613705954],[-64.09684096840968,50.2914538818963],[-64.10764107641076,50.288076727356525],[-64.13284132841328,50.26950237738782],[-64.14364143641436,50.26781380011795],[-64.2480424804248,50.2711909546577],[-64.34884348843488,50.288076727356525],[-64.37044370443704,50.29820819097583],[-64.38844388443884,50.310028231865004],[-64.41724417244173,50.31847111821443],[-64.4460444604446,50.323536850024055],[-64.47124471244712,50.32184827275418],[-64.49284492844929,50.315093963674656],[-64.53244532445324,50.29820819097583],[-64.62964629646297,50.28469957281678],[-64.86724867248672,50.274568109197475],[-64.8780487804878,50.2728795319276],[-64.88164881648817,50.2728795319276],[-64.88884888848888,50.274568109197475],[-64.90324903249032,50.283010995546874],[-64.90684906849069,50.28638815008665],[-64.90324903249032,50.288076727356525],[-64.91764917649176,50.288076727356525],[-64.93924939249392,50.283010995546874],[-65.03285032850329,50.28469957281678],[-65.11565115651156,50.29820819097583],[-65.15165151651516,50.29820819097583],[-65.17325173251731,50.2914538818963],[-65.19125191251912,50.288076727356525],[-65.21645216452164,50.29820819097583],[-65.25965259652597,50.32184827275418],[-65.26685266852668,50.32015969548431],[-65.28845288452884,50.31171680913488],[-65.29925299252992,50.310028231865004],[-65.45765457654576,50.301585345515605],[-65.53325533255332,50.28469957281678],[-65.62325623256233,50.27625668646735],[-65.73845738457385,50.25768233649865],[-65.83925839258391,50.261059491038395],[-65.86085860858608,50.26781380011795],[-65.89325893258932,50.283010995546874],[-65.92925929259292,50.29314245916618],[-65.96525965259652,50.29314245916618],[-65.9940599405994,50.27794526373722],[-66.03366033660336,50.23573083199017],[-66.0480604806048,50.225599368370865],[-66.06246062460625,50.220533636561214],[-66.08046080460804,50.22222221383112],[-66.08766087660877,50.230665100180516],[-66.08046080460804,50.24586229560947],[-66.10206102061021,50.244173718339596],[-66.10566105661056,50.22728794564077],[-66.09486094860948,50.20702501840216],[-66.08766087660877,50.19182782297321],[-66.10926109261092,50.19689355478286],[-66.16326163261633,50.19520497751299],[-66.18126181261812,50.20195928659251],[-66.19566195661956,50.212090750211814],[-66.21366213662137,50.217156482021466],[-66.25326253262533,50.220533636561214],[-66.28926289262893,50.21546790475156],[-66.32166321663216,50.20533644113229],[-66.35766357663576,50.20195928659251],[-66.40446404464045,50.21884505929134],[-66.4080640806408,50.22222221383112],[-66.40446404464045,50.22897652291064],[-66.40446404464045,50.23573083199017],[-66.40446404464045,50.24586229560947],[-66.4080640806408,50.25768233649865],[-66.41166411664116,50.26443664557817],[-66.42966429664297,50.2728795319276],[-66.44766447664476,50.2728795319276],[-66.46926469264692,50.26781380011795],[-66.4980649806498,50.252616604688995],[-66.53046530465305,50.230665100180516],[-66.54486544865448,50.21546790475156],[-66.54846548465484,50.19858213205276],[-66.54126541265413,50.185073513893684],[-66.51246512465124,50.16481058665511],[-66.4980649806498,50.16987631846473],[-66.47286472864728,50.17494205027438],[-66.4440644406444,50.176630627544284],[-66.42966429664297,50.17156489573463],[-66.42966429664297,50.163122009385205],[-66.43326433264332,50.158056277575554],[-66.45126451264512,50.15130196849603],[-66.4620646206462,50.1445476594165],[-66.46566465664657,50.14285908214663],[-66.4980649806498,50.14623623668638],[-66.5340653406534,50.158056277575554],[-66.54486544865448,50.158056277575554],[-66.56286562865628,50.15636770030568],[-66.57366573665736,50.158056277575554],[-66.59166591665917,50.16481058665511],[-66.61686616866169,50.18000778208403],[-66.63486634866348,50.185073513893684],[-66.63486634866348,50.17494205027438],[-66.63486634866348,50.16649916392498],[-66.63126631266313,50.158056277575554],[-66.6240662406624,50.15130196849603],[-66.64566645666456,50.14623623668638],[-66.66726667266673,50.1344161957972],[-66.69966699666996,50.105710382209196],[-66.74646746467464,50.05336448684284],[-66.76446764467644,50.04154444595366],[-66.81486814868148,50.02803582779461],[-66.9120691206912,50.01115005509578],[-66.95166951669516,49.98582139604753],[-66.9660696606966,49.967247046078825],[-66.97686976869768,49.95542700518965],[-66.98046980469805,49.945295541570346],[-66.97686976869768,49.93685265522092],[-66.96966969669697,49.92503261433174],[-66.9660696606966,49.91490115071247],[-66.99126991269912,49.90308110982329],[-67.00567005670057,49.88450675985456],[-67.01647016470164,49.860866678076206],[-67.02727027270272,49.842292328107504],[-67.04527045270453,49.828783709948425],[-67.0560705607056,49.8321608644882],[-67.06687066870668,49.842292328107504],[-67.0920709207092,49.84904663718703],[-67.11367113671136,49.84398090537738],[-67.13167131671317,49.83047228721833],[-67.14607146071461,49.815275091789374],[-67.16767167671676,49.788257855471244],[-67.17487174871748,49.771372082772416],[-67.1820718207182,49.75448631007359],[-67.18567185671856,49.73928911464466],[-67.1820718207182,49.722403341945835],[-67.17127171271713,49.708894723786756],[-67.16767167671676,49.695386105627705],[-67.17127171271713,49.67850033292888],[-67.17847178471784,49.664991714769826],[-67.21447214472144,49.637974478451696],[-67.22527225272252,49.62277728302274],[-67.23247232472325,49.610957242133566],[-67.24687246872469,49.56874281038651],[-67.23247232472325,49.54679130587803],[-67.23247232472325,49.51470833775025],[-67.2360723607236,49.480936792352594],[-67.24687246872469,49.458985287844115],[-67.26847268472685,49.43365662879589],[-67.37647376473764,49.339096301682446],[-67.40167401674016,49.32896483806317],[-67.54927549275493,49.330653415333046],[-67.58167581675816,49.32727626079327],[-67.6140761407614,49.31545621990409],[-67.62847628476284,49.320521951713744],[-67.64647646476465,49.320521951713744],[-67.67527675276753,49.31545621990409],[-67.73647736477365,49.31545621990409],[-67.74727747277473,49.31376764263422],[-67.77607776077761,49.303636179014916],[-67.78327783277832,49.298570447205265],[-67.7940779407794,49.28675040631609],[-67.80487804878048,49.28168467450644],[-67.81567815678156,49.27999609723656],[-67.86247862478625,49.28337325177634],[-67.91647916479164,49.29350471539561],[-67.94527945279452,49.295193292665516],[-67.99567995679956,49.28675040631609],[-68.0280802808028,49.28675040631609],[-68.05328053280532,49.295193292665516],[-68.05688056880568,49.28168467450644],[-68.06408064080641,49.27324178815704],[-68.0820808208082,49.25973316999796],[-68.12168121681216,49.271553210887134],[-68.1360813608136,49.25635601545821],[-68.14328143281432,49.22933877914008],[-68.16488164881649,49.205698697361726],[-68.1720817208172,49.20401012009185],[-68.19008190081901,49.205698697361726],[-68.19728197281972,49.205698697361726],[-68.20448204482044,49.20232154282195],[-68.21888218882188,49.19387865647255],[-68.22968229682296,49.192190079202675],[-68.28368283682836,49.19387865647255],[-68.30168301683017,49.1989443882822],[-68.30168301683017,49.192190079202675],[-68.25488254882548,49.16686142015442],[-68.23688236882369,49.16348426561464],[-68.20448204482044,49.170238574694196],[-68.19008190081901,49.16686142015442],[-68.18288182881828,49.151664224725465],[-68.18288182881828,49.143221338376065],[-68.17928179281792,49.12464698840736],[-68.21888218882188,49.11282694751819],[-68.32688326883269,49.09762975208923],[-68.34128341283413,49.09087544300971],[-68.37728377283773,49.06892393850123],[-68.39168391683917,49.06385820669158],[-68.40968409684096,49.0621696294217],[-68.44568445684456,49.0621696294217],[-68.38088380883808,49.09931832935911],[-68.370083700837,49.116204102057935],[-68.37368373683736,49.13984418383629],[-68.4060840608406,49.16348426561464],[-68.40248402484025,49.18374719285325],[-68.43488434884348,49.19556723374242],[-68.44568445684456,49.1989443882822],[-68.43128431284312,49.18374719285325],[-68.41688416884169,49.15841853380502],[-68.40968409684096,49.13477845202664],[-68.4060840608406,49.12295841113746],[-68.41688416884169,49.11958125659771],[-68.45288452884529,49.09594117481936],[-68.48888488884889,49.08412113393018],[-68.4960849608496,49.07905540212053],[-68.5140851408514,49.0706125157711],[-68.57528575285752,49.0604810521518],[-68.59328593285933,49.05541532034215],[-68.61488614886149,49.040218124913224],[-68.63288632886328,49.01657804313487],[-68.64368643686437,48.991249384086615],[-68.63648636486364,48.96592072503839],[-68.69768697686976,48.94565779779978],[-68.68688686886868,48.93214917964073],[-68.65448654486545,48.93046060237083],[-68.64368643686437,48.91695198421178],[-68.7840878408784,48.91019767513225],[-68.79488794887949,48.906820520592476],[-68.8020880208802,48.90006621151295],[-68.80928809288092,48.88993474789365],[-68.81648816488165,48.88318043881412],[-68.88488884888848,48.84772031614659],[-68.90648906489065,48.839277429797164],[-68.92448924489244,48.830834543447764],[-68.94968949689496,48.82576881163811],[-68.95328953289533,48.81901450255859],[-68.95688956889569,48.81057161620916],[-68.96048960489604,48.800440152589886],[-68.97488974889748,48.78862011170071],[-68.99288992889929,48.781865802621155],[-69.0360903609036,48.78017722535128],[-69.0540905409054,48.773422916271755],[-69.06849068490685,48.75653714357293],[-69.11889118891189,48.62989384833173],[-69.14409144091441,48.60118803474373],[-69.19089190891908,48.58936799385455],[-69.20169201692016,48.591056571124426],[-69.20889208892089,48.594433725664175],[-69.21969219692197,48.59612230293408],[-69.23049230492305,48.5927451483943],[-69.26649266492664,48.54377640756769],[-69.28089280892809,48.51169343943994],[-69.2880928809288,48.49987339855076],[-69.2880928809288,48.46441327588323],[-69.3240932409324,48.425575998675924],[-69.40329403294032,48.363098639690264],[-69.42849428494284,48.31750705340343],[-69.44649446494465,48.29555554889495],[-69.4680946809468,48.287112662545525],[-69.49329493294933,48.28204693073587],[-69.51129511295113,48.2702268898467],[-69.52929529295292,48.256718271687646],[-69.54729547295473,48.24489823079847],[-69.55449554495544,48.24489823079847],[-69.56889568895689,48.24658680806834],[-69.5760957609576,48.24489823079847],[-69.57969579695796,48.23983249898882],[-69.57969579695796,48.23476676717917],[-69.57969579695796,48.229701035369516],[-69.58329583295833,48.22632388082977],[-69.65529655296552,48.162157944574204],[-69.67689676896768,48.15033790368503],[-69.69849698496985,48.1435835946055],[-69.71289712897129,48.145272171875376],[-69.74889748897489,48.15709221276455],[-69.76329763297633,48.158780790034456],[-69.79929799297993,48.15709221276455],[-69.82089820898209,48.162157944574204],[-69.83529835298353,48.175666562733284],[-69.86409864098641,48.20437237632129],[-69.8820988209882,48.221258149020116],[-69.90369903699036,48.23307818990929],[-69.94689946899469,48.25840684895752],[-69.98649986499865,48.278669776196125],[-70.03690036900369,48.278669776196125],[-70.09450094500944,48.2719154671166],[-70.14490144901448,48.273604044386474],[-70.16650166501664,48.283735508005776],[-70.20970209702097,48.31581847613353],[-70.23490234902349,48.32088420794318],[-70.260102601026,48.32426136248296],[-70.28530285302853,48.33270424883236],[-70.3681036810368,48.37491868057944],[-70.39330393303932,48.376607257849315],[-70.41490414904149,48.36647579423001],[-70.43650436504365,48.363098639690264],[-70.63450634506344,48.39687018508792],[-70.67770677706777,48.39180445327827],[-70.69210692106921,48.39349303054814],[-70.71370713707137,48.403624494167445],[-70.7461074610746,48.4272645759458],[-70.76770767707677,48.4357074622952],[-70.79290792907929,48.4373960395651],[-70.80370803708037,48.4357074622952],[-70.81450814508145,48.43233030775545],[-70.82530825308253,48.43233030775545],[-70.8361083610836,48.434018885025324],[-70.87930879308793,48.44921608045428],[-70.98730987309872,48.46441327588323],[-71.01251012510124,48.46272469861333],[-71.04851048510484,48.44921608045428],[-71.07011070110701,48.44415034864463],[-70.9981099810998,48.452593234994026],[-70.97290972909728,48.45090465772415],[-70.88650886508864,48.42219884413615],[-70.83250832508325,48.41544453505662],[-70.80730807308073,48.407001648707194],[-70.78930789307893,48.39518160781802],[-70.79290792907929,48.37998441238909],[-70.81090810908108,48.36985294876979],[-70.83970839708397,48.36478721696014],[-70.89010890108901,48.363098639690264],[-70.87930879308793,48.34790144426131],[-70.8721087210872,48.33439282610226],[-70.86490864908649,48.32426136248296],[-70.84330843308433,48.32088420794318],[-70.82530825308253,48.32594993975283],[-70.78210782107821,48.34790144426131],[-70.7461074610746,48.354655753340836],[-70.60210602106021,48.35634433061074],[-70.54450544505444,48.363098639690264],[-70.47610476104761,48.35634433061074],[-70.46170461704617,48.35127859880109],[-70.44370443704436,48.34283571245166],[-70.39330393303932,48.33776998064201],[-70.36090360903609,48.327638517022706],[-70.34650346503464,48.32594993975283],[-70.33570335703357,48.32088420794318],[-70.32490324903249,48.300621280704604],[-70.31050310503105,48.2989327034347],[-70.2961029610296,48.30230985797448],[-70.28890288902889,48.30737558978413],[-70.23130231302312,48.273604044386474],[-70.16290162901629,48.24489823079847],[-70.09090090900908,48.23476676717917],[-70.02610026100261,48.25334111714787],[-70.00450004500044,48.24152107625869],[-69.95049950499505,48.23138961263942],[-69.92529925299253,48.221258149020116],[-69.90729907299072,48.20774953086104],[-69.87129871298713,48.15709221276455],[-69.8460984609846,48.1435835946055],[-69.81729817298172,48.1351407082561],[-69.75969759697597,48.13007497644645],[-69.73449734497345,48.123320667366926],[-69.74169741697416,48.104746317398195],[-69.77409774097741,48.07435192654032],[-69.78129781297812,48.05746615384149],[-69.7920979209792,48.006808835745005],[-69.79569795697957,47.9882344857763],[-69.80289802898028,47.98316875396665],[-69.81369813698137,47.978103022157],[-69.82449824498245,47.9696601358076],[-69.82449824498245,47.96121724945817],[-69.82449824498245,47.95277436310877],[-69.8280982809828,47.939265744949694],[-69.83529835298353,47.917314240441215],[-69.8460984609846,47.90042846774239],[-69.89289892898928,47.851459726915806],[-69.90729907299072,47.83457395421698],[-69.9180991809918,47.792359522469894],[-69.93249932499324,47.77378517250119],[-69.94329943299432,47.76534228615179],[-69.96849968499684,47.75521082253249],[-69.97929979299792,47.74676793618306],[-70.01530015300153,47.707930658975755],[-70.03330033300333,47.69779919535648],[-70.07650076500765,47.68091342265765],[-70.08730087300873,47.67415911357813],[-70.09810098100981,47.667404804498574],[-70.1161011610116,47.66909338176848],[-70.13050130501304,47.667404804498574],[-70.14490144901448,47.6555847636094],[-70.13770137701377,47.642076145450346],[-70.15570155701556,47.62687895002139],[-70.18090180901808,47.609993177322565],[-70.19890198901989,47.59479598189364],[-70.2061020610206,47.579598786464686],[-70.2061020610206,47.566090168305635],[-70.2061020610206,47.552581550146556],[-70.2061020610206,47.54076150925738],[-70.20970209702097,47.5289414683682],[-70.21690216902168,47.517121427479026],[-70.23850238502385,47.49516992297055],[-70.24930249302493,47.490104191160896],[-70.27810278102781,47.481661304811496],[-70.30330303303033,47.46984126392232],[-70.31770317703176,47.46646410938254],[-70.37530375303753,47.46139837757289],[-70.40770407704076,47.45295549122349],[-70.43650436504365,47.44282402760419],[-70.4581045810458,47.43100398671501],[-70.46530465304653,47.43438114125476],[-70.47970479704797,47.43944687306441],[-70.48690486904869,47.44451260487406],[-70.49770497704976,47.42931540944511],[-70.50850508505084,47.38034666861853],[-70.51570515705157,47.36852662772935],[-70.53370533705336,47.360083741379924],[-70.5481054810548,47.338132236871445],[-70.56970569705696,47.29254065058461],[-70.59850598505984,47.24863764156768],[-70.61650616506165,47.226686137059204],[-70.63450634506344,47.218243250709776],[-70.68490684906848,47.14901158264459],[-70.71370713707137,47.11692861451684],[-70.74970749707497,47.09159995546858],[-70.79290792907929,47.07302560549988],[-70.91890918909189,47.03756548283235],[-70.95850958509585,47.02067971013352],[-71.19251192511925,46.85857629222477],[-71.19971199711996,46.848444828605466],[-71.22131221312213,46.81467328320781],[-71.22851228512285,46.80960755139819],[-71.23211232112321,46.79778751050898],[-71.24651246512465,46.78934462415958],[-71.3041130411304,46.758950233301704],[-71.31851318513185,46.7572616560318],[-71.340113401134,46.742064460602876],[-71.35451354513545,46.7386873060631],[-71.46251462514624,46.73531015152332],[-71.51651516515165,46.72517868790405],[-71.5921159211592,46.701538606125695],[-71.64251642516425,46.69309571977627],[-71.69291692916929,46.674521369807564],[-71.72171721717217,46.66945563799791],[-71.77211772117721,46.66945563799791],[-71.78291782917829,46.67283279253766],[-71.80451804518044,46.68127567888709],[-71.81171811718117,46.682964256156964],[-71.84051840518404,46.68634141069674],[-71.86211862118621,46.69140714250639],[-71.880118801188,46.69140714250639],[-71.97371973719737,46.62892978352073],[-72.01332013320133,46.60697827901225],[-72.05652056520564,46.595158238123076],[-72.14292142921428,46.57996104269412],[-72.21132211322113,46.56138669272542],[-72.22932229322292,46.55294380637599],[-72.23652236522365,46.536058033677165],[-72.25092250922509,46.48202356104093],[-72.2581225812258,46.470203520151756],[-72.29772297722977,46.451629170183054],[-72.33732337323373,46.443186283833626],[-72.35892358923589,46.4364319747541],[-72.39132391323913,46.41954620205527],[-72.44172441724417,46.411103315705844],[-72.46332463324633,46.402660429356445],[-72.60372603726037,46.30134579316348],[-72.64332643326433,46.286148597734524],[-72.66852668526685,46.28446002046465],[-72.73692736927369,46.286148597734524],[-72.77292772927728,46.2810828659249],[-72.8449284492845,46.26419709322607],[-72.91332913329133,46.242245588717594],[-72.99612996129962,46.21016262058981],[-72.98532985329852,46.19496542516086],[-73.00333003330033,46.14093095252463],[-73.02133021330214,46.108847984396846],[-73.07173071730718,46.090273634428144],[-73.10773107731077,46.08689647988837],[-73.15813158131581,46.07507643899919],[-73.17973179731797,46.05312493449071],[-73.18333183331833,46.03455058452201],[-73.18693186931868,46.01766481182318],[-73.20493204932049,45.983893266425525],[-73.26253262532624,45.90284155747116],[-73.29133291332913,45.87582432115303],[-73.33453334533345,45.853872816644554],[-73.35613356133561,45.84205277575538],[-73.3741337413374,45.8116583848975],[-73.4209342093421,45.76437822134079],[-73.49653496534965,45.72722952140336],[-73.67653676536764,45.70865517143466],[-73.75573755737557,45.676572203306876],[-73.86373863738638,45.592143339812736],[-73.89253892538925,45.55837179441508],[-73.90333903339032,45.54148602171625],[-73.91053910539105,45.53473171263673],[-73.93573935739357,45.529665980827076],[-73.94653946539465,45.52460024901745],[-73.95733957339573,45.516157362668025],[-73.96453964539646,45.507714476318625],[-73.97893978939788,45.4992715899692],[-74.00054000540005,45.4908287036198],[-74.04374043740437,45.484074394540244],[-74.10494104941048,45.485762971810146],[-74.12654126541265,45.489140126349895],[-74.13734137341373,45.4908287036198],[-74.14814148141481,45.494205858159546],[-74.17334173341733,45.5178459399379],[-74.19134191341914,45.5279774035572],[-74.19854198541985,45.53135455809698],[-74.21654216542166,45.53304313536685],[-74.30654306543065,45.52628882628733],[-74.32094320943209,45.5279774035572],[-74.33534335343353,45.53642028990663],[-74.36054360543605,45.56006037168498],[-74.37854378543786,45.56174894895486],[-74.36414364143641,45.55330606260546],[-74.35334353343534,45.538108867176504],[-74.34254342543426,45.52291167174755],[-74.32814328143282,45.5094030535885],[-74.30654306543065,45.50433732177885],[-74.27774277742778,45.502648744508974],[-74.12654126541265,45.46550004457154],[-74.10134101341013,45.46381146730167],[-74.07614076140761,45.45705715822214],[-74.05814058140581,45.445237117332965],[-74.03654036540365,45.43848280825341],[-74.0149401494015,45.45030284914259],[-74.00774007740077,45.43679423098354],[-74.0149401494015,45.41990845828471],[-74.00054000540005,45.396268376506356],[-73.98253982539825,45.37093971745813],[-73.96093960939609,45.3540539447593],[-73.9681396813968,45.3523653674894],[-73.97173971739717,45.350676790219524],[-73.97533975339753,45.34729963567975],[-74.0149401494015,45.328725285711045],[-74.10854108541085,45.32703670844117],[-74.15174151741518,45.320282399361645],[-74.16974169741697,45.30846235847247],[-74.19854198541985,45.27300223580491],[-74.2129421294213,45.26455934945551],[-74.23454234542345,45.262870772185636],[-74.30654306543065,45.23247638132773],[-74.31374313743137,45.22741064951808],[-74.32094320943209,45.2257220722482],[-74.33534335343353,45.22403349497833],[-74.34614346143461,45.22065634043855],[-74.36414364143641,45.2054591450096],[-74.37494374943749,45.20208199046985],[-74.37854378543786,45.200393413199976],[-74.40374403744038,45.186884795040896],[-74.41454414544145,45.181819063231245],[-74.44334443344432,45.1784419086915],[-74.45414454144542,45.17506475415172],[-74.47214472144721,45.16493329053242],[-74.49374493744936,45.146358940563715],[-74.51174511745117,45.124407436055236],[-74.51534515345153,45.10414450881666],[-74.52614526145261,45.09063589065758],[-74.54774547745477,45.08050442703828],[-74.65214652146521,45.043355727100874],[-74.71334713347133,44.999452718083916],[-74.6341463414634,45.01464991351287],[-74.47214472144721,45.06699580887923],[-74.43614436144361,45.08557015884793],[-74.40734407344073,45.114275972435934],[-74.40374403744038,45.124407436055236],[-74.40374403744038,45.13453889967454],[-74.40014400144001,45.14467036329384],[-74.38934389343893,45.14804751783359],[-74.37854378543786,45.14973609510349],[-74.36774367743676,45.154801826913115],[-74.35694356943569,45.159867558722766],[-74.32814328143282,45.1784419086915],[-74.30654306543065,45.18350764050115],[-74.22014220142201,45.1970162586602],[-74.19854198541985,45.203770567739724],[-74.16614166141662,45.22909922678798],[-74.14454144541445,45.2341649585976],[-74.04734047340473,45.23247638132773],[-74.0041400414004,45.24598499948681],[-73.96453964539646,45.26793650399526],[-73.8889388893889,45.33716817206047],[-73.88173881738817,45.34054532660022],[-73.85653856538565,45.34054532660022],[-73.84933849338493,45.34392248114],[-73.83133831338313,45.355742522029175],[-73.77733777337772,45.3810711810774],[-73.76653766537665,45.38782549015693],[-73.74493744937449,45.41146557193531],[-73.73413734137341,45.418219881014835],[-73.71253712537126,45.42159703555458],[-73.70533705337053,45.426662767364235],[-73.68733687336874,45.431728499173886],[-73.60453604536045,45.423285612824486],[-73.58293582935829,45.42835134463414],[-73.56853568535685,45.42835134463414],[-73.56493564935649,45.41990845828471],[-73.55773557735577,45.41484272647506],[-73.54333543335433,45.41653130374496],[-73.52893528935289,45.42159703555458],[-73.51813518135181,45.426662767364235],[-73.50373503735037,45.448614271872714],[-73.50373503735037,45.46381146730167],[-73.52173521735217,45.50433732177885],[-73.52533525335252,45.51446878539815],[-73.52533525335252,45.5279774035572],[-73.52173521735217,45.53979744444638],[-73.48933489334892,45.58370045346334],[-73.46773467734677,45.59889764889229],[-73.46053460534606,45.60734053524169],[-73.45693456934569,45.61747199886099],[-73.45333453334533,45.636046348829694],[-73.44613446134461,45.64280065790922],[-73.45693456934569,45.67319504876713],[-73.44973449734496,45.70527801689488],[-73.43173431734317,45.73229525321301],[-73.41373413734136,45.75086960318171],[-73.2589325893259,45.853872816644554],[-73.21573215732157,45.899464402931386],[-73.20493204932049,45.916350175630214],[-73.20493204932049,45.93323594832904],[-73.20853208532085,45.95012172102787],[-73.20853208532085,45.970384648266474],[-73.20133201332013,45.98220468915565],[-73.17973179731797,46.00415619366413],[-73.17253172531726,46.01428765728343],[-73.17253172531726,46.02610769817261],[-73.16893168931689,46.03623916179191],[-73.16173161731616,46.04299347087144],[-73.15453154531545,46.04974777995096],[-73.14013140131401,46.05819066630036],[-73.03933039330393,46.073387861729316],[-73.03213032130321,46.081830748078744],[-73.01413014130141,46.09365078896792],[-72.99972999729997,46.103782252587195],[-72.97812978129781,46.11560229347637],[-72.95652956529565,46.130799488905325],[-72.93132931329313,46.144308107064404],[-72.90972909729096,46.135865220714976],[-72.87732877328773,46.135865220714976],[-72.8449284492845,46.1426195297945],[-72.75852758527584,46.17301392065241],[-72.72972729727297,46.17639107519216],[-72.66852668526685,46.215228352399464],[-72.66852668526685,46.23042554782842],[-72.6721267212672,46.247311320527245],[-72.65052650526505,46.25913136141642],[-72.61092610926109,46.27601713411525],[-72.55692556925568,46.30641152497313],[-72.49572495724956,46.36044599760939],[-72.47772477724777,46.36888888395879],[-72.4561245612456,46.372266038498566],[-72.39852398523985,46.39590612027692],[-72.27252272522725,46.42123477932515],[-72.24012240122401,46.443186283833626],[-72.2149221492215,46.48033498377106],[-72.20412204122042,46.500597911009635],[-72.20052200522005,46.51579510643859],[-72.18972189721897,46.52592657005789],[-72.10332103321034,46.55969811545555],[-72.05652056520564,46.56645242453507],[-72.03132031320312,46.56645242453507],[-72.0061200612006,46.57151815634472],[-71.99171991719916,46.5833381972339],[-71.97731977319773,46.60022396993273],[-71.95931959319593,46.61542116536165],[-71.90531905319052,46.64074982440991],[-71.86571865718656,46.666078483458136],[-71.8441184411844,46.66776706072804],[-71.82251822518225,46.661012751648485],[-71.80451804518044,46.64919271075931],[-71.76131761317613,46.63399551533038],[-71.71451714517144,46.63230693806048],[-71.3041130411304,46.745441615142624],[-71.28251282512825,46.75388450149205],[-71.24291242912429,46.77583600600053],[-71.22491224912248,46.77921316054028],[-71.20331203312033,46.78765604688971],[-71.17451174511744,46.82480474682711],[-71.15651156511565,46.840001942256066],[-71.11691116911169,46.85351056041512],[-71.01971019710197,46.85182198314524],[-70.97290972909728,46.861953446764545],[-70.91890918909189,46.897413569432075],[-70.90090900909009,46.902479301241726],[-70.89010890108901,46.902479301241726],[-70.86850868508685,46.897413569432075],[-70.85770857708577,46.8957249921622],[-70.84330843308433,46.89910214670195],[-70.82530825308253,46.910922187591126],[-70.81450814508145,46.91598791940078],[-70.80370803708037,46.91767649667068],[-70.78210782107821,46.9142993421309],[-70.77490774907749,46.91598791940078],[-70.76410764107641,46.9227422284803],[-70.74250742507425,46.946382310258684],[-70.72810728107281,46.95651377387796],[-70.59850598505984,46.99703962835514],[-70.55530555305553,47.00210536016479],[-70.53370533705336,47.01054824651422],[-70.38970389703897,47.115240037246934],[-70.28530285302853,47.209800364360376],[-70.22770227702277,47.28578634150509],[-70.19530195301952,47.31449215509309],[-70.07650076500765,47.36852662772935],[-70.05130051300513,47.400609595857105],[-70.02970029700296,47.46984126392232],[-70.00090000900009,47.498547077510324],[-69.99009990099901,47.503612809319975],[-69.96849968499684,47.5086785411296],[-69.95769957699576,47.512055695669375],[-69.95049950499505,47.5204985820188],[-69.94329943299432,47.5289414683682],[-69.93249932499324,47.53738435471763],[-69.90009900099001,47.54582724106703],[-69.80289802898028,47.62181321821174],[-69.69129691296912,47.72819358621436],[-69.59049590495904,47.81431102697837],[-69.56169561695617,47.82781964513745],[-69.55449554495544,47.83457395421698],[-69.55089550895508,47.84301684056638],[-69.55089550895508,47.8497711496459],[-69.55449554495544,47.85652545872546],[-69.55449554495544,47.87172265415438],[-69.54729547295473,47.89029700412311],[-69.44649446494465,47.99161164031605],[-69.42849428494284,47.998365949395605],[-69.40689406894069,48.001743103935354],[-69.36009360093601,48.01356314482453],[-69.3420934209342,48.020317453904056],[-69.3240932409324,48.03044891752336],[-69.2520925209252,48.09292627650902],[-69.15129151291512,48.14696074914528],[-69.0540905409054,48.23307818990929],[-68.9640896408964,48.287112662545525],[-68.84528845288453,48.34283571245166],[-68.82368823688236,48.36647579423001],[-68.80568805688057,48.37323010330954],[-68.7480874808748,48.37323010330954],[-68.72648726487265,48.376607257849315],[-68.66168661686616,48.412067380516845],[-68.65088650886509,48.42051026686627],[-68.640086400864,48.43233030775545],[-68.56088560885608,48.45090465772415],[-68.52488524885248,48.47116758496276],[-68.46368463684637,48.528579212138766],[-68.4240842408424,48.54715356210747],[-68.37728377283773,48.550530716647245],[-68.35208352083521,48.555596448456896],[-68.31248312483125,48.58767941658465],[-68.20448204482044,48.64171388922091],[-68.18288182881828,48.648468198300435],[-68.13248132481324,48.65184535284018],[-68.11448114481145,48.66028823918961],[-68.0820808208082,48.68561689823784],[-68.06048060480605,48.69405978458727],[-68.03528035280353,48.697436939127044],[-67.98127981279812,48.69912551639692],[-67.96327963279633,48.70081409366679],[-67.71847718477184,48.795374420780234],[-67.71127711277113,48.800440152589886],[-67.67167671676717,48.81732592528871],[-67.64647646476465,48.82576881163811],[-67.60327603276032,48.83252312071764],[-67.54567545675457,48.862917511575546],[-67.42687426874268,48.87304897519482],[-67.3620736207362,48.90344336605273],[-67.29367293672937,48.9237062932913],[-67.11727117271172,48.96254357049861],[-66.87966879668797,49.04697243399275],[-66.62046620466204,49.12295841113746],[-66.52686526865268,49.13308987475676],[-66.22086220862208,49.2073872746316],[-66.05526055260552,49.22427304733043],[-65.88245882458824,49.22427304733043],[-65.68445684456844,49.24284739729913],[-65.6160561605616,49.25973316999796],[-65.56565565655656,49.26648747907751],[-65.39645396453965,49.26142174726786],[-65.27765277652776,49.24453597456903],[-65.19125191251912,49.23778166548951],[-64.96444964449644,49.21920731552078],[-64.8780487804878,49.19556723374242],[-64.8240482404824,49.1888129246629],[-64.80244802448024,49.18205861558337],[-64.75924759247592,49.156729956535116],[-64.71244712447124,49.138155606566414],[-64.68724687246872,49.13308987475676],[-64.61164611646116,49.12295841113746],[-64.60444604446045,49.11958125659771],[-64.57924579245793,49.10607263843863],[-64.5540455404554,49.09762975208923],[-64.49644496444964,49.0621696294217],[-64.48564485644856,49.05710389761205],[-64.47844478444784,49.05541532034215],[-64.47124471244712,49.053726743072275],[-64.44964449644496,49.03515239310357],[-64.43884438844388,49.02839808402405],[-64.39564395643956,49.01151231132522],[-64.38124381243811,49.00138084770592],[-64.34884348843488,48.97605218865769],[-64.34164341643417,48.97098645684804],[-64.30924309243092,48.964232147768485],[-64.29844298442984,48.95916641595886],[-64.29484294842948,48.95410068414921],[-64.28764287642876,48.94059206599013],[-64.28044280442803,48.933837756910606],[-64.22284222842228,48.8950004797033],[-64.20484204842047,48.86967182065507],[-64.21564215642157,48.82745738890799],[-64.19044190441905,48.800440152589886],[-64.1760417604176,48.78524295716093],[-64.15444154441543,48.773422916271755],[-64.16884168841688,48.76160287538258],[-64.19044190441905,48.773422916271755],[-64.2120421204212,48.79199726624046],[-64.22644226442264,48.800440152589886],[-64.25164251642516,48.80550588439954],[-64.3020430204302,48.830834543447764],[-64.52884528845289,48.88318043881412],[-64.55764557645576,48.88318043881412],[-64.5360453604536,48.8764261297346],[-64.47844478444784,48.84265458433694],[-64.47844478444784,48.835900275257416],[-64.53964539645396,48.830834543447764],[-64.53964539645396,48.82070307982846],[-64.52164521645216,48.81732592528871],[-64.46044460444604,48.82745738890799],[-64.41724417244173,48.82576881163811],[-64.39564395643956,48.82070307982846],[-64.38844388443884,48.81057161620916],[-64.38484384843848,48.808883038939285],[-64.37764377643776,48.800440152589886],[-64.3740437404374,48.79199726624046],[-64.38484384843848,48.78862011170071],[-64.40644406444063,48.79199726624046],[-64.41724417244173,48.79199726624046],[-64.4280442804428,48.78017722535128],[-64.41724417244173,48.77511149354163],[-64.40644406444063,48.77511149354163],[-64.39924399243992,48.78017722535128],[-64.38844388443884,48.78017722535128],[-64.37764377643776,48.776800070811504],[-64.35244352443524,48.76329145265245],[-64.32724327243272,48.75653714357293],[-64.27684276842768,48.72614275271505],[-64.23364233642336,48.678862589158314],[-64.21924219242192,48.670419702808914],[-64.20484204842047,48.66704254826914],[-64.19044190441905,48.656911084649835],[-64.1760417604176,48.64509104376066],[-64.16164161641616,48.62989384833173],[-64.1940419404194,48.62313953925218],[-64.22644226442264,48.62482811652208],[-64.25884258842588,48.61976238471243],[-64.27684276842768,48.58936799385455],[-64.28044280442803,48.56910506661595],[-64.28044280442803,48.56066218026652],[-64.25164251642516,48.550530716647245],[-64.22284222842228,48.53364494394842],[-64.20484204842047,48.528579212138766],[-64.19044190441905,48.52689063486889],[-64.20124201242012,48.52013632578934],[-64.20484204842047,48.51338201670981],[-64.2120421204212,48.50493913036041],[-64.21924219242192,48.496496244010984],[-64.230042300423,48.49143051220133],[-64.2660426604266,48.48636478039168],[-64.28764287642876,48.47961047131216],[-64.30564305643055,48.469479007692854],[-64.320043200432,48.4559703895338],[-64.32724327243272,48.4373960395651],[-64.31284312843128,48.43233030775545],[-64.33084330843307,48.4188216895964],[-64.35964359643596,48.41375595778675],[-64.4460444604446,48.407001648707194],[-64.49644496444964,48.39349303054814],[-64.54684546845468,48.38673872146862],[-64.6620466204662,48.349590021531185],[-64.68364683646836,48.341147135181785],[-64.71244712447124,48.33945855791191],[-64.72324723247232,48.336081403372134],[-64.71244712447124,48.32932709429261],[-64.70524705247053,48.32426136248296],[-64.70164701647016,48.31750705340343],[-64.70524705247053,48.30737558978413],[-64.70884708847088,48.30230985797448],[-64.71244712447124,48.29555554889495],[-64.71964719647195,48.28880123981543],[-64.72684726847268,48.287112662545525],[-64.73044730447305,48.283735508005776],[-64.73764737647376,48.26853831257682],[-64.75564755647557,48.23983249898882],[-64.76644766447664,48.21956957175021],[-64.78084780847809,48.20437237632129],[-64.91044910449104,48.17735514000316],[-64.92484924849248,48.175666562733284],[-64.93924939249392,48.17735514000316],[-64.950049500495,48.180732294542935],[-64.96084960849608,48.18748660362246],[-64.96444964449644,48.185798026352586],[-64.96444964449644,48.175666562733284],[-64.96084960849608,48.16046936730433],[-64.950049500495,48.15033790368503],[-64.98964989649896,48.126697821906674],[-65.05085050850508,48.10136916285845],[-65.18045180451804,48.042268958412535],[-65.28485284852849,48.011874567554656],[-65.38565385653857,48.00849741301488],[-65.40365403654036,48.001743103935354],[-65.43245432454324,48.00343168120523],[-65.45765457654576,48.01018599028478],[-65.47565475654756,48.020317453904056],[-65.48285482854828,48.02538318571371],[-65.48645486454865,48.04058038114266],[-65.490054900549,48.047334690222186],[-65.50445504455044,48.05240042203184],[-65.53685536855369,48.05915473111136],[-65.57645576455764,48.064220462921014],[-65.66645666456664,48.096303431048796],[-65.78525785257852,48.1148777810175],[-65.82125821258212,48.13007497644645],[-65.85725857258572,48.158780790034456],[-65.88965889658895,48.17060083092363],[-65.89325893258932,48.18748660362246],[-65.88965889658895,48.20774953086104],[-65.89685896858968,48.22632388082977],[-65.9040590405904,48.20943810813094],[-65.91125911259113,48.20099522178151],[-65.92565925659257,48.19761806724176],[-65.940059400594,48.19761806724176],[-65.95445954459544,48.19592948997186],[-65.96525965259652,48.18748660362246],[-66.04446044460444,48.1148777810175],[-66.0660606606066,48.10136916285845],[-66.09486094860948,48.09799200831867],[-66.18486184861848,48.1148777810175],[-66.27126271262712,48.11656635828737],[-66.28566285662856,48.1148777810175],[-66.30006300063,48.10812347193797],[-66.29286292862928,48.104746317398195],[-66.28566285662856,48.10305774012832],[-66.2640626406264,48.10136916285845],[-66.27486274862748,48.07266334927044],[-66.27846278462785,48.06759761746079],[-66.28926289262893,48.06590904019089],[-66.29646296462964,48.069286194730665],[-66.30006300063,48.07604050381019],[-66.30726307263072,48.08110623561984],[-66.31086310863108,48.082794812889716],[-66.3180631806318,48.08110623561984],[-66.32526325263252,48.08110623561984],[-66.32886328863289,48.08448339015962],[-66.32886328863289,48.08954912196927],[-66.33246332463324,48.09461485377892],[-66.3360633606336,48.099680585588544],[-66.33966339663397,48.10136916285845],[-66.37566375663756,48.1148777810175],[-66.47286472864728,48.11994351282715],[-66.5160651606516,48.10812347193797],[-66.5340653406534,48.07097477200054],[-66.54126541265413,48.05915473111136],[-66.58446584465844,48.060843308381266],[-66.59886598865988,48.04395753568244],[-66.61326613266132,48.047334690222186],[-66.63126631266313,48.05408899930171],[-66.64566645666456,48.05240042203184],[-66.64926649266492,48.04564611295231],[-66.65646656466565,48.03889180387279],[-66.66366663666636,48.033826072063135],[-66.69966699666996,48.02369460844383],[-66.750067500675,48.01862887663418],[-66.77166771667716,48.00849741301488],[-66.7860678606786,48.00512025847513],[-66.81846818468185,48.006808835745005],[-66.83286832868329,48.00512025847513],[-66.84726847268472,47.998365949395605],[-66.84366843668437,47.9966773721257],[-66.83286832868329,47.993300217585954],[-66.81846818468185,47.99161164031605],[-66.7860678606786,47.99161164031605],[-66.750067500675,47.9865459085064],[-66.73206732067321,47.9865459085064],[-66.68526685266852,48.006808835745005],[-66.61326613266132,48.01018599028478],[-66.58446584465844,48.02369460844383],[-66.55926559265592,48.03889180387279],[-66.38646386463864,48.07435192654032],[-66.35406354063541,48.069286194730665],[-66.36126361263612,48.04058038114266],[-66.34686346863468,48.02200603117396],[-66.3180631806318,48.011874567554656],[-66.28926289262893,48.006808835745005],[-66.26046260462604,48.00512025847513],[-66.25326253262533,48.001743103935354],[-66.2460624606246,47.99161164031605],[-66.23886238862389,47.984857331236526],[-66.21726217262172,47.993300217585954],[-66.20286202862029,47.98992306304618],[-66.17766177661777,47.979791599426875],[-65.97245972459724,47.92406854952077],[-65.86445864458643,47.917314240441215],[-65.81765817658176,47.90718277682194],[-65.77085770857708,47.88354269504356],[-65.7420574205742,47.84808257237603],[-65.68805688056881,47.72481643167458],[-65.67725677256772,47.707930658975755],[-65.66285662856629,47.69611061808658],[-65.63045630456304,47.67078195903835],[-65.66285662856629,47.6572733408793],[-65.670056700567,47.6555847636094],[-65.66645666456664,47.64545329999012],[-65.65925659256592,47.637010413640695],[-65.64485644856448,47.63025610456117],[-65.6340563405634,47.62181321821174],[-65.60525605256052,47.6572733408793],[-65.59085590855908,47.66909338176848],[-65.56565565655656,47.677536268117876],[-65.49725497254973,47.67922484538775],[-65.47565475654756,47.6842905771974],[-65.43605436054361,47.70624208170588],[-65.3640536405364,47.761965131612016],[-65.28485284852849,47.78222805885062],[-65.20925209252093,47.819376758788025],[-65.02565025650256,47.8497711496459],[-64.97884978849788,47.841328263296504],[-65.05445054450544,47.8024909860892],[-65.07245072450723,47.78053948158072],[-65.06165061650616,47.78053948158072],[-65.040050400504,47.78560521339037],[-64.98964989649896,47.79067094520002],[-64.90684906849069,47.810933872438625],[-64.85644856448565,47.815999604248276],[-64.82764827648276,47.815999604248276],[-64.79884798847988,47.80924529516872],[-64.78444784447844,47.7940480997398],[-64.7880478804788,47.77209659523132],[-64.80964809648096,47.761965131612016],[-64.860048600486,47.75858797707224],[-64.860048600486,47.75183366799271],[-64.8420484204842,47.748456513452965],[-64.80244802448024,47.74676793618306],[-64.78444784447844,47.73832504983366],[-64.78444784447844,47.73325931802401],[-64.78084780847809,47.71637354532518],[-64.77724777247772,47.71130781351553],[-64.76284762847628,47.707930658975755],[-64.75924759247592,47.71468496805531],[-64.75564755647557,47.72312785440471],[-64.75924759247592,47.72481643167458],[-64.75564755647557,47.73157074075414],[-64.75924759247592,47.74507935891319],[-64.75924759247592,47.75183366799271],[-64.7520475204752,47.756899399802364],[-64.7340473404734,47.76365370888189],[-64.73044730447305,47.76534228615179],[-64.71964719647195,47.761965131612016],[-64.680046800468,47.74170220437341],[-64.66924669246693,47.73157074075414],[-64.68364683646836,47.72312785440471],[-64.73764737647376,47.70117634989623],[-64.7520475204752,47.70117634989623],[-64.75924759247592,47.685979154467304],[-64.77364773647736,47.68260199992753],[-64.79164791647916,47.68260199992753],[-64.81324813248132,47.677536268117876],[-64.80964809648096,47.67415911357813],[-64.79884798847988,47.664027649958825],[-64.80964809648096,47.658961918149174],[-64.81324813248132,47.65389618633952],[-64.80964809648096,47.64714187726],[-64.79884798847988,47.642076145450346],[-64.81324813248132,47.62181321821174],[-64.82764827648276,47.606616022782816],[-64.86724867248672,47.574533054655035],[-64.87444874448744,47.57115590011526],[-64.88524885248852,47.56777874557551],[-64.89244892448924,47.561024436495984],[-64.8960489604896,47.55089297287668],[-64.8960489604896,47.54245008652725],[-64.8960489604896,47.53738435471763],[-64.91044910449104,47.5204985820188],[-64.87444874448744,47.5204985820188],[-64.88884888848888,47.5002356547802],[-64.92484924849248,47.46815268665242],[-64.92844928449284,47.45126691395359],[-64.9140491404914,47.46477553211267],[-64.90324903249032,47.47152984119219],[-64.88884888848888,47.476595573001845],[-64.86724867248672,47.485038459351244],[-64.89244892448924,47.422561100365584],[-64.91044910449104,47.35501800957027],[-64.9140491404914,47.365149473189575],[-64.91044910449104,47.37528093680888],[-64.90684906849069,47.38541240042818],[-64.90684906849069,47.39385528677758],[-64.91044910449104,47.40229817312701],[-64.92844928449284,47.39385528677758],[-64.93924939249392,47.378658091348655],[-64.94644946449463,47.36177231864983],[-64.96084960849608,47.344886545951],[-64.96084960849608,47.33137792779192],[-64.95724957249573,47.31280357782322],[-64.96084960849608,47.294229227854515],[-64.97524975249752,47.28578634150509],[-65.01845018450184,47.28240918696534],[-65.04365043650436,47.275654877885785],[-65.06165061650616,47.25201479610743],[-65.09765097650975,47.236817600678506],[-65.10845108451085,47.22162040524955],[-65.12285122851227,47.20304605528085],[-65.33165331653316,47.10004284181801],[-65.36765367653676,47.09497711000836],[-65.36765367653676,47.08822280092883],[-65.28485284852849,47.08146849184928],[-65.24525245252453,47.08146849184928],[-65.2020520205202,47.09497711000836],[-65.20565205652056,47.079779914579404],[-65.20925209252093,47.06458271915045],[-65.21285212852128,47.052762678261274],[-65.20565205652056,47.04600836918175],[-65.1480514805148,47.05445125553118],[-65.06165061650616,47.08991137819871],[-65.03285032850329,47.09497711000836],[-65.01485014850148,47.08822280092883],[-64.99684996849967,47.06458271915045],[-64.9860498604986,47.0595169873408],[-64.96444964449644,47.06289414188058],[-64.95364953649536,47.071337028230005],[-64.94644946449463,47.079779914579404],[-64.93564935649356,47.08822280092883],[-64.90684906849069,47.093288532738455],[-64.8240482404824,47.08991137819871],[-64.79884798847988,47.08146849184928],[-64.8240482404824,47.06289414188058],[-64.82044820448203,47.0409426373721],[-64.8060480604806,47.01561397832387],[-64.8060480604806,46.98521958746596],[-64.81684816848168,46.97677670111656],[-64.85284852848528,46.96326808295751],[-64.8960489604896,46.91598791940078],[-64.90684906849069,46.88728210581277],[-64.90324903249032,46.85857629222477],[-64.8960489604896,46.83155905590664],[-64.88164881648817,46.80623039685841],[-64.86364863648636,46.78259031508006],[-64.84564845648455,46.76232738784145],[-64.79164791647916,46.72517868790405],[-64.82044820448203,46.72517868790405],[-64.83844838448384,46.71673580155462],[-64.85284852848528,46.701538606125695],[-64.85284852848528,46.67620994707744],[-64.84564845648455,46.67620994707744],[-64.83124831248313,46.69985002885579],[-64.80244802448024,46.69478429704614],[-64.7520475204752,46.66945563799791],[-64.75924759247592,46.68971856523649],[-64.74844748447484,46.69985002885579],[-64.73044730447305,46.69816145158592],[-64.71244712447124,46.68634141069674],[-64.70524705247053,46.67283279253766],[-64.70524705247053,46.652569865299085],[-64.70884708847088,46.61542116536165],[-64.71964719647195,46.576583888154374],[-64.7160471604716,46.55632096091577],[-64.70164701647016,46.54787807456634],[-64.69084690846908,46.53943518821694],[-64.680046800468,46.51917226097834],[-64.67644676446764,46.500597911009635],[-64.69444694446945,46.492155024660235],[-64.70164701647016,46.49046644739033],[-64.70884708847088,46.48540071558068],[-64.71244712447124,46.48033498377106],[-64.70884708847088,46.478646406501156],[-64.70164701647016,46.47695782923128],[-64.69444694446945,46.46682636561198],[-64.69084690846908,46.46344921107223],[-64.68364683646836,46.46344921107223],[-64.67644676446764,46.46682636561198],[-64.67284672846728,46.470203520151756],[-64.66924669246693,46.470203520151756],[-64.65484654846549,46.46344921107223],[-64.63684636846368,46.451629170183054],[-64.61884618846189,46.434743397484226],[-64.61164611646116,46.41954620205527],[-64.61524615246152,46.38239750211784],[-64.61884618846189,46.367200306688915],[-64.6260462604626,46.353691688529835],[-64.64404644046441,46.340183070370784],[-64.6620466204662,46.33680591583101],[-64.68364683646836,46.33511733856113],[-64.70524705247053,46.32667445221173],[-64.68364683646836,46.32836302948161],[-64.67284672846728,46.32667445221173],[-64.66564665646656,46.32329729767196],[-64.65844658446584,46.32160872040208],[-64.64764647646476,46.32498587494183],[-64.6260462604626,46.33342876129126],[-64.590045900459,46.33511733856113],[-64.57564575645756,46.33849449310091],[-64.57924579245793,46.348625956720184],[-64.55764557645576,46.36888888395879],[-64.5360453604536,46.35200311125996],[-64.52164521645216,46.32160872040208],[-64.52884528845289,46.30641152497313],[-64.5540455404554,46.29796863862373],[-64.56484564845648,46.279394288655],[-64.55764557645576,46.223671238748864],[-64.5360453604536,46.23549127963807],[-64.51444514445144,46.23886843417782],[-64.40644406444063,46.23886843417782],[-64.39924399243992,46.23549127963807],[-64.38844388443884,46.22704839328864],[-64.38124381243811,46.223671238748864],[-64.37044370443704,46.223671238748864],[-64.36324363243632,46.225359816018766],[-64.3560435604356,46.228736970558515],[-64.34884348843488,46.23042554782842],[-64.25164251642516,46.233802702368166],[-64.23724237242372,46.23042554782842],[-64.18684186841868,46.21016262058981],[-64.16164161641616,46.19496542516086],[-64.16884168841688,46.18314538427168],[-64.16164161641616,46.16963676611263],[-64.15084150841508,46.166259611572855],[-64.12564125641256,46.16963676611263],[-64.12564125641256,46.17470249792228],[-64.11844118441184,46.18145680700181],[-64.11124111241112,46.18652253881146],[-64.1040410404104,46.17470249792228],[-64.09684096840968,46.16794818884276],[-64.08244082440824,46.15950530249333],[-64.07884078840787,46.162882457033106],[-64.050040500405,46.179768229731934],[-64.03924039240393,46.18314538427168],[-64.02124021240212,46.184833961541585],[-63.97443974439744,46.18314538427168],[-63.94563945639456,46.17807965246203],[-63.89523895238952,46.15612814795358],[-63.812438124381245,46.14093095252463],[-63.790837908379075,46.130799488905325],[-63.77283772837728,46.11560229347637],[-63.790837908379075,46.09871652077754],[-63.812438124381245,46.09365078896792],[-63.85923859238592,46.08689647988837],[-63.866438664386635,46.08351932534862],[-63.88443884438844,46.064944975379916],[-63.89523895238952,46.059879243570265],[-63.9060390603906,46.05819066630036],[-64.06444064440645,46.06156782084014],[-64.07164071640716,46.059879243570265],[-64.07524075240752,46.05312493449071],[-64.07524075240752,46.04468204814131],[-64.07884078840787,46.03623916179191],[-64.09324093240932,46.032862007252135],[-64.08244082440824,46.02273054363283],[-64.05364053640535,46.00077903912435],[-64.04284042840428,45.99233615277495],[-64.04284042840428,45.99064757550505],[-64.0320403204032,45.9957133073147],[-64.02484024840248,46.002467616394256],[-64.01764017640176,46.005844770934004],[-64.00684006840068,46.005844770934004],[-63.9060390603906,45.98051611188578],[-63.870038700387,45.961941761917046],[-63.866438664386635,45.93661310286882],[-63.84483844838448,45.934924525598944],[-63.82323823238232,45.92479306197964],[-63.812438124381245,45.90959586655069],[-63.80523805238052,45.88933293931211],[-63.787237872378725,45.891021516581986],[-63.75843758437584,45.885955784772335],[-63.73323733237332,45.87582432115303],[-63.715237152371515,45.86738143480363],[-63.72603726037259,45.86231570299398],[-63.74763747637476,45.853872816644554],[-63.75843758437584,45.84711850756503],[-63.736837368373685,45.84205277575538],[-63.690036900368995,45.853872816644554],[-63.66843668436684,45.84711850756503],[-63.67563675636755,45.836987043945726],[-63.67563675636755,45.82685558032645],[-63.66843668436684,45.823478425786675],[-63.661236612366125,45.82685558032645],[-63.6540365403654,45.836987043945726],[-63.6540365403654,45.84205277575538],[-63.65763657636576,45.850495662104805],[-63.661236612366125,45.864004280263856],[-63.65763657636576,45.87413574388316],[-63.6540365403654,45.87413574388316],[-63.64323643236432,45.87075858934338],[-63.636036360363605,45.864004280263856],[-63.628836288362876,45.86231570299398],[-63.59283592835928,45.87582432115303],[-63.4920349203492,45.88257863023256],[-63.438034380343794,45.87582432115303],[-63.409234092340924,45.853872816644554],[-63.427234272342716,45.853872816644554],[-63.463234632346314,45.86062712572411],[-63.484834848348484,45.86062712572411],[-63.47043470434704,45.85218423937468],[-63.438034380343794,45.83867562121563],[-63.427234272342716,45.82685558032645],[-63.448834488344886,45.8217898485168],[-63.484834848348484,45.82685558032645],[-63.502835028350276,45.82685558032645],[-63.524435244352446,45.8201012712469],[-63.51723517235172,45.8116583848975],[-63.49563495634956,45.80659265308785],[-63.477634776347756,45.81334696216737],[-63.47043470434704,45.80828123035772],[-63.459634596345964,45.80659265308785],[-63.452434524345236,45.80490407581797],[-63.44163441634416,45.80659265308785],[-63.438034380343794,45.80490407581797],[-63.43083430834308,45.801526921278196],[-63.427234272342716,45.79983834400832],[-63.423634236342366,45.801526921278196],[-63.420034200342,45.8116583848975],[-63.41643416434164,45.81334696216737],[-63.398433984339846,45.8116583848975],[-63.36963369633696,45.8032154985481],[-63.35523355233552,45.79983834400832],[-63.322833228332286,45.8032154985481],[-63.29043290432904,45.8116583848975],[-63.2580325803258,45.81672411670715],[-63.22923229232292,45.80659265308785],[-63.2580325803258,45.79139545765889],[-63.301233012330115,45.77619826222997],[-63.348033480334806,45.766066798610666],[-63.38043380433804,45.77113253042032],[-63.373233732337326,45.757623912261266],[-63.35523355233552,45.747492448641964],[-63.31203312033119,45.73736098502266],[-63.30483304833048,45.73229525321301],[-63.2940329403294,45.725540944133485],[-63.28683286832867,45.72385236686361],[-63.28683286832867,45.733983830482885],[-63.28323283232832,45.74073813956244],[-63.272432724327246,45.747492448641964],[-63.2580325803258,45.75931248953114],[-63.2580325803258,45.75424675772149],[-63.2580325803258,45.74242671683231],[-63.2580325803258,45.73736098502266],[-63.21123211232111,45.75931248953114],[-63.196831968319685,45.76437822134079],[-63.196831968319685,45.76775537588054],[-63.19323193231932,45.77282110769019],[-63.19323193231932,45.77788683949984],[-63.18963189631896,45.77957541676972],[-63.18243182431824,45.77619826222997],[-63.18243182431824,45.77113253042032],[-63.18243182431824,45.766066798610666],[-63.18603186031859,45.76268964407089],[-63.200432004320035,45.752558180451615],[-63.2040320403204,45.74580387137206],[-63.2040320403204,45.73736098502266],[-63.18963189631896,45.73567240775279],[-63.13563135631355,45.75931248953114],[-63.11763117631176,45.76268964407089],[-63.099630996309955,45.76437822134079],[-63.08163081630816,45.76268964407089],[-63.06363063630636,45.75931248953114],[-63.070830708307085,45.77788683949984],[-63.08523085230851,45.78970688038902],[-63.121231212312125,45.80659265308785],[-63.099630996309955,45.8116583848975],[-62.98082980829808,45.796461189468545],[-62.923229232292314,45.782952571309494],[-62.77562775627756,45.76437822134079],[-62.75042750427504,45.766066798610666],[-62.70002700027,45.77282110769019],[-62.67482674826748,45.77113253042032],[-62.696426964269634,45.761001066801015],[-62.718027180271804,45.761001066801015],[-62.73962739627396,45.76268964407089],[-62.75762757627575,45.75931248953114],[-62.73962739627396,45.74918102591184],[-62.72882728827288,45.74411529410219],[-62.70002700027,45.74411529410219],[-62.68202682026819,45.74242671683231],[-62.6640266402664,45.73567240775279],[-62.64602646026459,45.72722952140336],[-62.63162631626315,45.71709805778406],[-62.70362703627036,45.68670366692618],[-62.75042750427504,45.68163793511653],[-62.772027720277194,45.674883626037],[-62.78282782827827,45.66137500787795],[-62.790027900279,45.64280065790922],[-62.77922779227792,45.65293212152852],[-62.76482764827648,45.66137500787795],[-62.75042750427504,45.6647521624177],[-62.736027360273596,45.6546206987984],[-62.746827468274674,45.627603462480295],[-62.75042750427504,45.61240626705134],[-62.73962739627396,45.61747199886099],[-62.721627216272154,45.646177812449],[-62.70722707227071,45.6563092760683],[-62.692826928269284,45.65293212152852],[-62.667626676266764,45.63098061702004],[-62.65682656826567,45.627603462480295],[-62.64602646026459,45.64280065790922],[-62.6640266402664,45.64786638971887],[-62.671226712267114,45.6563092760683],[-62.671226712267114,45.668129316957476],[-62.6640266402664,45.67994935784665],[-62.65682656826567,45.68163793511653],[-62.63882638826388,45.68163793511653],[-62.62442624426244,45.68163793511653],[-62.61362613626136,45.690080821465955],[-62.59922599225992,45.68670366692618],[-62.57762577625776,45.685015089656304],[-62.56682566825668,45.6833265123864],[-62.556025560255605,45.67826078057678],[-62.54882548825488,45.66644073968757],[-62.54522545225451,45.663063585147825],[-62.52722527225272,45.65799785333817],[-62.509225092250915,45.65968643060805],[-62.49482494824947,45.66137500787795],[-62.47682476824768,45.663063585147825],[-62.5020250202502,45.63098061702004],[-62.509225092250915,45.61578342159112],[-62.49482494824947,45.60734053524169],[-62.46962469624695,45.614094844321215],[-62.433624336243355,45.64280065790922],[-62.41922419224191,45.649554966988774],[-62.40122401224012,45.65293212152852],[-62.3760237602376,45.66137500787795],[-62.36162361623616,45.67319504876713],[-62.37242372423724,45.6833265123864],[-62.383223832238315,45.67994935784665],[-62.404824048240485,45.674883626037],[-62.44082440824408,45.6546206987984],[-62.41562415624156,45.67826078057678],[-62.27162271622716,45.703589439625006],[-62.05922059220592,45.80828123035772],[-61.98721987219872,45.86231570299398],[-61.94761947619476,45.88257863023256],[-61.926019260192604,45.88933293931211],[-61.91161911619116,45.88933293931211],[-61.90081900819008,45.88257863023256],[-61.89721897218972,45.872447166613284],[-61.90441904419043,45.86569285753376],[-61.91521915219151,45.86062712572411],[-61.92241922419224,45.850495662104805],[-61.918819188191875,45.8302327348662],[-61.9080190801908,45.78632972584927],[-61.88641886418864,45.73736098502266],[-61.88641886418864,45.720475212323834],[-61.893618936189355,45.703589439625006],[-61.87561875618756,45.6934579760057],[-61.8360183601836,45.68163793511653],[-61.82161821618216,45.67319504876713],[-61.80721807218072,45.65968643060805],[-61.79641796417964,45.65293212152852],[-61.72441724417244,45.627603462480295],[-61.70641706417064,45.62253773067064],[-61.68481684816848,45.62253773067064],[-61.666816668166675,45.62591488521039],[-61.6560165601656,45.636046348829694],[-61.641616416164155,45.641112080639346],[-61.62721627216271,45.636046348829694],[-61.63441634416344,45.636046348829694],[-61.64881648816488,45.63435777155982],[-61.64881648816488,45.627603462480295],[-61.641616416164155,45.62084915340074],[-61.620016200162,45.614094844321215],[-61.620016200162,45.62253773067064],[-61.616416164161635,45.63098061702004],[-61.60921609216092,45.63942350336947],[-61.60201602016019,45.64280065790922],[-61.58761587615875,45.646177812449],[-61.5840158401584,45.65293212152852],[-61.58041580415804,45.663063585147825],[-61.57681576815767,45.67319504876713],[-61.55881558815588,45.6833265123864],[-61.53721537215371,45.68839224419605],[-61.4940149401494,45.690080821465955],[-61.46881468814688,45.6833265123864],[-61.436414364143644,45.649554966988774],[-61.41841418414184,45.64280065790922],[-61.40041400414003,45.632669194289946],[-61.386013860138604,45.61071768978147],[-61.3680136801368,45.58032329892356],[-61.35721357213572,45.57694614438381],[-61.35001350013499,45.570191835304286],[-61.339213392133914,45.55330606260546],[-61.32481324813247,45.54148602171625],[-61.26361263612635,45.511091630858374],[-61.24561245612456,45.507714476318625],[-61.23841238412383,45.507714476318625],[-61.23841238412383,45.50602589904872],[-61.234812348123484,45.4908287036198],[-61.23841238412383,45.467188621841416],[-61.24921249212491,45.453680003682365],[-61.26721267212672,45.44354854006306],[-61.353613536135356,45.413154149205184],[-61.37161371613716,45.40808841739553],[-61.37521375213751,45.42159703555458],[-61.389613896138954,45.418219881014835],[-61.404014040140396,45.40808841739553],[-61.41841418414184,45.39795695377623],[-61.429214292142916,45.391202644696705],[-61.48321483214832,45.37431687199788],[-61.461614616146164,45.3540539447593],[-61.45081450814507,45.34898821294965],[-61.13761137611375,45.3540539447593],[-61.11961119611196,45.3523653674894],[-61.080010800108,45.342233903870095],[-60.99720997209971,45.333791017520696],[-60.98280982809828,45.32703670844117],[-60.97200972009719,45.31352809028209],[-60.97200972009719,45.301708049392914],[-60.97200972009719,45.28819943123386],[-60.96840968409684,45.271313658535036],[-60.98280982809828,45.271313658535036],[-60.98640986409863,45.27637939034469],[-60.990009900099,45.284822276694086],[-60.99720997209971,45.29157658577364],[-61.0080100801008,45.29495374031339],[-61.01881018810188,45.293265163043515],[-61.026010260102595,45.29495374031339],[-61.03681036810367,45.30001947212304],[-61.02961029610296,45.284822276694086],[-61.02241022410223,45.27806796761456],[-61.01521015210152,45.271313658535036],[-61.02241022410223,45.262870772185636],[-61.02961029610296,45.26118219491573],[-61.04041040410404,45.25949361764586],[-61.04761047610475,45.25442788583621],[-61.05481054810548,45.244296422216905],[-61.05841058410584,45.235853535867506],[-61.06201062010619,45.23247638132773],[-61.080010800108,45.23754211313738],[-61.07281072810727,45.22403349497833],[-61.11961119611196,45.21390203135903],[-61.13761137611375,45.217279185898775],[-61.152011520115195,45.23754211313738],[-61.14121141211412,45.244296422216905],[-61.1340113401134,45.25273930856633],[-61.126811268112675,45.26118219491573],[-61.11961119611196,45.271313658535036],[-61.16641166411664,45.262870772185636],[-61.17361173611735,45.257805040375985],[-61.18081180811808,45.24260784494703],[-61.170011700117,45.2155906086289],[-61.17361173611735,45.20208199046985],[-61.18441184411844,45.208836299549375],[-61.18801188011879,45.2155906086289],[-61.19161191611916,45.222344917708426],[-61.19521195211952,45.235853535867506],[-61.2060120601206,45.24598499948681],[-61.21321213212131,45.25273930856633],[-61.21681216812168,45.24767357675668],[-61.24561245612456,45.239230690407254],[-61.26361263612635,45.239230690407254],[-61.26361263612635,45.25105073129643],[-61.278012780127796,45.25442788583621],[-61.29961299612995,45.24767357675668],[-61.3320133201332,45.230787804057854],[-61.35001350013499,45.217279185898775],[-61.364413644136434,45.20208199046985],[-61.364413644136434,45.19026194958067],[-61.339213392133914,45.19026194958067],[-61.353613536135356,45.1784419086915],[-61.37161371613716,45.168310445072194],[-61.389613896138954,45.16324471326254],[-61.56961569615696,45.146358940563715],[-61.60921609216092,45.151424672373366],[-61.63801638016379,45.17506475415172],[-61.64881648816488,45.15649040418302],[-61.666816668166675,45.16324471326254],[-61.68841688416883,45.17506475415172],[-61.70281702817027,45.16999902234207],[-61.68481684816848,45.16155613599267],[-61.666816668166675,45.14973609510349],[-61.64881648816488,45.13453889967454],[-61.63801638016379,45.12103028151549],[-61.64881648816488,45.12103028151549],[-61.65961659616596,45.12103028151549],[-61.6740167401674,45.114275972435934],[-61.63801638016379,45.09401304519736],[-61.63801638016379,45.08725873611783],[-61.67761677616775,45.088947313387706],[-61.69561695616956,45.09063589065758],[-61.70281702817027,45.097390199737106],[-61.70281702817027,45.10752166335641],[-61.710017100171,45.10752166335641],[-61.717217172171715,45.10076735427688],[-61.75681756817568,45.10076735427688],[-61.75321753217531,45.09401304519736],[-61.75681756817568,45.088947313387706],[-61.75681756817568,45.083881581578055],[-61.75681756817568,45.08050442703828],[-61.7820178201782,45.09232446792748],[-61.81081810818108,45.10076735427688],[-61.82521825218252,45.09907877700701],[-61.81081810818108,45.08050442703828],[-61.82161821618216,45.07712727249853],[-61.84681846818468,45.08050442703828],[-61.85761857618576,45.08050442703828],[-61.85761857618576,45.07375011795875],[-61.85041850418504,45.070372963419004],[-61.843218432184315,45.06530723160935],[-61.8360183601836,45.056864345259925],[-61.83961839618395,45.04673288164062],[-61.84681846818468,45.04504430437075],[-61.87921879218791,45.053487190720176],[-61.88641886418864,45.04673288164062],[-61.88281882818828,45.034912840751446],[-61.89721897218972,45.02984710894182],[-61.918819188191875,45.03660141802135],[-61.93681936819368,45.053487190720176],[-61.94041940419403,45.03322426348157],[-61.94041940419403,45.02478137713217],[-61.95841958419584,45.03660141802135],[-61.976419764197644,45.03660141802135],[-61.99081990819907,45.026469954402046],[-62.005220052200514,45.01127275897309],[-62.005220052200514,45.01633849078274],[-62.00882008820088,45.021404222592395],[-62.00882008820088,45.02478137713217],[-62.00882008820088,45.0315356862117],[-62.019620196201956,45.026469954402046],[-62.030420304203034,45.01971564532252],[-62.03762037620376,45.012961336242995],[-62.052020520205204,45.01127275897309],[-62.0340203402034,45.00451844989357],[-61.976419764197644,44.991009831734516],[-61.98721987219872,44.98425552265499],[-62.005220052200514,44.98256694538509],[-62.019620196201956,44.98425552265499],[-62.030420304203034,44.991009831734516],[-62.04122041220411,44.98256694538509],[-62.05922059220592,44.97581263630556],[-62.07362073620736,44.972435481765785],[-62.08442084420844,44.97750121357544],[-62.09882098820988,44.97412405903569],[-62.120421204212036,44.96905832722604],[-62.13842138421384,44.96905832722604],[-62.145621456214556,44.97412405903569],[-62.152821528215284,44.97581263630556],[-62.17442174421744,44.96061544087661],[-62.18522185221852,44.95554970906696],[-62.232022320223194,44.958926863606735],[-62.253622536225365,44.95217255452721],[-62.27162271622716,44.928532472748856],[-62.278822788227885,44.936975359098255],[-62.28962289622896,44.92684389547895],[-62.307623076230755,44.92008958639943],[-62.3220232202322,44.91671243185968],[-62.332823328233275,44.92177816366933],[-62.340023400234,44.92177816366933],[-62.340023400234,44.91840100912955],[-62.34362343623435,44.915023854589776],[-62.34362343623435,44.91164670005003],[-62.34722347223472,44.90826954551025],[-62.34362343623435,44.9048923909705],[-62.34362343623435,44.9032038137006],[-62.340023400234,44.8947609273512],[-62.36162361623616,44.901515236430726],[-62.3760237602376,44.909958122780125],[-62.39402394023939,44.909958122780125],[-62.41562415624156,44.8947609273512],[-62.4120241202412,44.89138377281142],[-62.404824048240485,44.88631804100177],[-62.40122401224012,44.88125230919212],[-62.41922419224191,44.87787515465237],[-62.43722437224372,44.86774369103307],[-62.4480244802448,44.852546495604116],[-62.4480244802448,44.833972145635414],[-62.4660246602466,44.84072645471494],[-62.47322473224732,44.85930080468367],[-62.47322473224732,44.88125230919212],[-62.47682476824768,44.901515236430726],[-62.49122491224912,44.88125230919212],[-62.505625056250565,44.86267795922342],[-62.52722527225272,44.85592365014389],[-62.55242552425524,44.86774369103307],[-62.56682566825668,44.84072645471494],[-62.556025560255605,44.83228356836554],[-62.54522545225451,44.825529259286014],[-62.530825308253085,44.806954909317284],[-62.55242552425524,44.80020060023776],[-62.57762577625776,44.833972145635414],[-62.59922599225992,44.82721783655589],[-62.60642606426063,44.83734930017519],[-62.62442624426244,44.83059499109564],[-62.660426604266036,44.806954909317284],[-62.65322653226532,44.79175771388836],[-62.685626856268556,44.80188917750763],[-62.80442804428044,44.785003404808805],[-62.797227972279714,44.771494786649754],[-62.80082800828008,44.76136332303045],[-62.811628116281156,44.754609013950926],[-62.8260282602826,44.75123185941118],[-62.822428224282234,44.744477550331624],[-62.81522815228152,44.7377232412521],[-62.80802808028079,44.73265750944245],[-62.797227972279714,44.7292803549027],[-62.818828188281884,44.72083746855327],[-62.82962829628296,44.71746031401352],[-62.844028440284404,44.71746031401352],[-62.85122851228512,44.722526045823145],[-62.85842858428583,44.73434608671235],[-62.86562865628656,44.7377232412521],[-62.872828728287274,44.72421462309305],[-62.887228872288716,44.73096893217257],[-62.90882908829087,44.7377232412521],[-62.93042930429304,44.73941181852197],[-62.944829448294485,44.73434608671235],[-62.973629736297354,44.71746031401352],[-62.9880298802988,44.71070600493397],[-62.998829988299875,44.714083159473745],[-62.998829988299875,44.722526045823145],[-62.998829988299875,44.727591777632796],[-63.00243002430024,44.73096893217257],[-63.00243002430024,44.7377232412521],[-63.00243002430024,44.76474047757023],[-63.00243002430024,44.771494786649754],[-63.01683016830168,44.77824909572928],[-63.045630456304565,44.7664290548401],[-63.06003060030599,44.77824909572928],[-63.06003060030599,44.763051900300354],[-63.049230492304915,44.75123185941118],[-63.020430204302045,44.72590320036292],[-63.01323013230132,44.71070600493397],[-63.024030240302395,44.69719738677492],[-63.06003060030599,44.67524588226644],[-63.06363063630636,44.68875450042552],[-63.06003060030599,44.70395169585444],[-63.06363063630636,44.71746031401352],[-63.074430744307435,44.72421462309305],[-63.096030960309605,44.7292803549027],[-63.10323103231032,44.74278897306175],[-63.099630996309955,44.77487194118953],[-63.10323103231032,44.78331482753893],[-63.11043110431103,44.790069136618456],[-63.11763117631176,44.790069136618456],[-63.12843128431284,44.785003404808805],[-63.124831248312475,44.781626250269056],[-63.121231212312125,44.75123185941118],[-63.124831248312475,44.73434608671235],[-63.13563135631355,44.70732885039422],[-63.13923139231392,44.68875450042552],[-63.15363153631536,44.69550880950504],[-63.16083160831607,44.705640273124345],[-63.16083160831607,44.71746031401352],[-63.15363153631536,44.7292803549027],[-63.171631716317165,44.72083746855327],[-63.18243182431824,44.692131654965266],[-63.2040320403204,44.68200019134596],[-63.21483214832148,44.68200019134596],[-63.21483214832148,44.683688768615866],[-63.21123211232111,44.69044307769539],[-63.21483214832148,44.70395169585444],[-63.23283232832328,44.72590320036292],[-63.23643236432363,44.7377232412521],[-63.250832508325075,44.72590320036292],[-63.25443254432544,44.71070600493397],[-63.247232472324725,44.69719738677492],[-63.23643236432363,44.68875450042552],[-63.250832508325075,44.67186872772669],[-63.27963279632796,44.643162914138685],[-63.28683286832867,44.62796571870973],[-63.31563315633156,44.63640860505913],[-63.387633876338754,44.643162914138685],[-63.41643416434164,44.65498295502786],[-63.402034020340196,44.665114418647136],[-63.39483394833948,44.66680299591704],[-63.387633876338754,44.66849157318691],[-63.398433984339846,44.68200019134596],[-63.41643416434164,44.683688768615866],[-63.4560345603456,44.66849157318691],[-63.434434344343444,44.660048686837484],[-63.420034200342,44.64822864594831],[-63.41643416434164,44.63303145051938],[-63.420034200342,44.61445710055065],[-63.438034380343794,44.59588275058195],[-63.4560345603456,44.6009484823916],[-63.477634776347756,44.61276852328078],[-63.510035100351004,44.624588564169954],[-63.538835388353874,44.64822864594831],[-63.574835748357486,44.665114418647136],[-63.63243632436324,44.71239458220387],[-63.64323643236432,44.71746031401352],[-63.661236612366125,44.71746031401352],[-63.65043650436503,44.687065923155615],[-63.639636396363954,44.67693445953631],[-63.628836288362876,44.66849157318691],[-63.62163621636216,44.66680299591704],[-63.59643596435964,44.66849157318691],[-63.589235892358914,44.66342584137726],[-63.574835748357486,44.64654006867843],[-63.56763567635676,44.64147433686878],[-63.564035640356394,44.63472002778926],[-63.549635496354966,44.602637059661475],[-63.5460354603546,44.5925055960422],[-63.5460354603546,44.57393124607347],[-63.549635496354966,44.562111205184294],[-63.5460354603546,44.55029116429512],[-63.524435244352446,44.518208196167365],[-63.524435244352446,44.50301100073841],[-63.53163531635316,44.48950238257933],[-63.549635496354966,44.47261660988053],[-63.553235532355316,44.47092803261063],[-63.574835748357486,44.464173723531104],[-63.578435784357836,44.464173723531104],[-63.585635856358564,44.469239455340755],[-63.585635856358564,44.47430518715041],[-63.578435784357836,44.48105949622993],[-63.578435784357836,44.48443665076971],[-63.59643596435964,44.48781380530946],[-63.603636036360356,44.477682341690155],[-63.610836108361084,44.46248514626123],[-63.62163621636216,44.45235368264193],[-63.62523625236253,44.4455993735624],[-63.63243632436324,44.44053364175275],[-63.639636396363954,44.442222219022625],[-63.64323643236432,44.44897652810215],[-63.639636396363954,44.45910799172145],[-63.63243632436324,44.46586230080098],[-63.628836288362876,44.469239455340755],[-63.64323643236432,44.47599376442028],[-63.65763657636576,44.47599376442028],[-63.69363693636936,44.469239455340755],[-63.70083700837007,44.46755087807088],[-63.70443704437044,44.46248514626123],[-63.70443704437044,44.45741941445158],[-63.715237152371515,44.455730837181704],[-63.72243722437224,44.46079656899133],[-63.72243722437224,44.469239455340755],[-63.72963729637296,44.47430518715041],[-63.736837368373685,44.469239455340755],[-63.74763747637476,44.47430518715041],[-63.75843758437584,44.48105949622993],[-63.762037620376205,44.491190959849234],[-63.765637656376555,44.504699578008285],[-63.77283772837728,44.49287953711911],[-63.78363783637836,44.477682341690155],[-63.79443794437944,44.469239455340755],[-63.80523805238052,44.47599376442028],[-63.80883808838088,44.48950238257933],[-63.80523805238052,44.50301100073841],[-63.78363783637836,44.531716814326415],[-63.79443794437944,44.526651082516764],[-63.80523805238052,44.51483104162759],[-63.812438124381245,44.51145388708781],[-63.81963819638196,44.51314246435771],[-63.82683826838267,44.51989677343724],[-63.8340383403834,44.52496250524689],[-63.84843848438484,44.518208196167365],[-63.84483844838448,44.51483104162759],[-63.841238412384115,44.504699578008285],[-63.85203852038519,44.504699578008285],[-63.87363873638736,44.49794526892876],[-63.888038880388805,44.496256691658886],[-63.89883898838988,44.49794526892876],[-63.913239132391325,44.50132242346854],[-63.92043920439204,44.504699578008285],[-63.92763927639275,44.51145388708781],[-63.942039420394195,44.53340539159629],[-63.942039420394195,44.553668318834895],[-63.92043920439204,44.5925055960422],[-63.92763927639275,44.59925990512173],[-63.942039420394195,44.621211409630206],[-63.9240392403924,44.629654295979606],[-63.916839168391675,44.63472002778926],[-63.916839168391675,44.64147433686878],[-63.92043920439204,44.643162914138685],[-63.92763927639275,44.64822864594831],[-63.90243902439023,44.66680299591704],[-63.891638916389155,44.68031161407609],[-63.888038880388805,44.69719738677492],[-63.9060390603906,44.683688768615866],[-63.92763927639275,44.67524588226644],[-63.988839888398886,44.656671532297736],[-63.999639996399964,44.65498295502786],[-64.05724057240572,44.638097182329034],[-64.06444064440645,44.63472002778926],[-64.06084060840608,44.621211409630206],[-64.06084060840608,44.58743986423255],[-64.05364053640535,44.57899697788312],[-64.03564035640356,44.57055409153372],[-64.02484024840248,44.55029116429512],[-64.01044010440104,44.51145388708781],[-64.04284042840428,44.52327392797699],[-64.05724057240572,44.50807673254806],[-64.06444064440645,44.48781380530946],[-64.07524075240752,44.47599376442028],[-64.09684096840968,44.47430518715041],[-64.10764107641076,44.477682341690155],[-64.11844118441184,44.48781380530946],[-64.1220412204122,44.51483104162759],[-64.12564125641256,44.52158535070711],[-64.11844118441184,44.53678254613607],[-64.12924129241291,44.55535689610477],[-64.14364143641436,44.57055409153372],[-64.16164161641616,44.57899697788312],[-64.17964179641795,44.5823741324229],[-64.19764197641976,44.580685555153025],[-64.2120421204212,44.57055409153372],[-64.2120421204212,44.55197974156499],[-64.22644226442264,44.53678254613607],[-64.25164251642516,44.54353685521559],[-64.28044280442803,44.558734050644546],[-64.30564305643055,44.56548835972407],[-64.3020430204302,44.56042262791442],[-64.29124291242913,44.545225432485466],[-64.30564305643055,44.54184827794572],[-64.30564305643055,44.53678254613607],[-64.3020430204302,44.526651082516764],[-64.29844298442984,44.51483104162759],[-64.3020430204302,44.50301100073841],[-64.30924309243092,44.49287953711911],[-64.31644316443165,44.48443665076971],[-64.32724327243272,44.47599376442028],[-64.31644316443165,44.47599376442028],[-64.29844298442984,44.469239455340755],[-64.30924309243092,44.464173723531104],[-64.35244352443524,44.455730837181704],[-64.35244352443524,44.4455993735624],[-64.34524345243452,44.437156487212974],[-64.33444334443344,44.428713600863574],[-64.3380433804338,44.415204982704495],[-64.29844298442984,44.4168935599744],[-64.27684276842768,44.415204982704495],[-64.25884258842588,44.40845067362497],[-64.27324273242732,44.406762096355095],[-64.28764287642876,44.401696364545444],[-64.29844298442984,44.393253478196044],[-64.31284312843128,44.38649916911649],[-64.31284312843128,44.38143343730684],[-64.26244262442624,44.379744860036965],[-64.23724237242372,44.376367705497216],[-64.2120421204212,44.36792481914779],[-64.22644226442264,44.36117051006826],[-64.24444244442444,44.36117051006826],[-64.28044280442803,44.36792481914779],[-64.34884348843488,44.36792481914779],[-64.34884348843488,44.36117051006826],[-64.3380433804338,44.35610477825861],[-64.33444334443344,44.349350469179086],[-64.33444334443344,44.34259616009956],[-64.3380433804338,44.33246469648026],[-64.32724327243272,44.330776119210384],[-64.31644316443165,44.32402181013083],[-64.30564305643055,44.32064465559108],[-64.29124291242913,44.32571038740073],[-64.29844298442984,44.32908754194048],[-64.30564305643055,44.33753042828991],[-64.31284312843128,44.339219005559784],[-64.3020430204302,44.34259616009956],[-64.29124291242913,44.34090758282966],[-64.2660426604266,44.33246469648026],[-64.29124291242913,44.303758882892254],[-64.28764287642876,44.2986931510826],[-64.23724237242372,44.2986931510826],[-64.26964269642696,44.26661018295482],[-64.28764287642876,44.25816729660542],[-64.30564305643055,44.27167591476447],[-64.31284312843128,44.26492160568495],[-64.33084330843307,44.27674164657412],[-64.3380433804338,44.28349595565365],[-64.34884348843488,44.29193884200308],[-64.3380433804338,44.29700457381273],[-64.33444334443344,44.2986931510826],[-64.410044100441,44.32908754194048],[-64.4280442804428,44.339219005559784],[-64.41724417244173,44.32571038740073],[-64.40284402844028,44.31220176924165],[-64.38124381243811,44.303758882892254],[-64.36324363243632,44.2986931510826],[-64.35964359643596,44.295315996542826],[-64.3560435604356,44.286873110193426],[-64.35964359643596,44.278430223844],[-64.35964359643596,44.27167591476447],[-64.36684366843669,44.26492160568495],[-64.42444424444244,44.23452721482707],[-64.43164431644315,44.22608432847764],[-64.43524435244352,44.20750997850894],[-64.43884438844388,44.19906709215951],[-64.44964449644496,44.192312783079984],[-64.46764467644677,44.18724705127033],[-64.47844478444784,44.18218131946068],[-64.4820448204482,44.17373843311128],[-64.49644496444964,44.139966887713626],[-64.51444514445144,44.15009835133293],[-64.52164521645216,44.1517869286028],[-64.53244532445324,44.15516408314258],[-64.5360453604536,44.15516408314258],[-64.54324543245433,44.16022981495223],[-64.55044550445504,44.161918392222105],[-64.55044550445504,44.16022981495223],[-64.5540455404554,44.15009835133293],[-64.55764557645576,44.148409774063055],[-64.59364593645937,44.15854123768233],[-64.60444604446045,44.15854123768233],[-64.60084600846008,44.148409774063055],[-64.60444604446045,44.14503261952328],[-64.6080460804608,44.1433440422534],[-64.61524615246152,44.1416554649835],[-64.62244622446224,44.139966887713626],[-64.60084600846008,44.134901155903975],[-64.57564575645756,44.1332125786341],[-64.5540455404554,44.129835424094324],[-64.54684546845468,44.11801538320515],[-64.55044550445504,44.099441033236445],[-64.56124561245612,44.07917810599784],[-64.57564575645756,44.06904664237857],[-64.59364593645937,44.07917810599784],[-64.62244622446224,44.063980910568915],[-64.64764647646476,44.058915178759264],[-64.7160471604716,44.058915178759264],[-64.70524705247053,44.045406560600185],[-64.68724687246872,44.042029406060436],[-64.66924669246693,44.03527509698091],[-64.6620466204662,44.015012169742306],[-64.66564665646656,43.99812639704348],[-64.680046800468,43.99306066523383],[-64.6980469804698,43.98968351069408],[-64.71244712447124,43.979552047074776],[-64.73044730447305,43.96266627437595],[-64.74484744847447,43.9576005425663],[-64.8060480604806,43.9576005425663],[-64.81684816848168,43.95422338802652],[-64.82044820448203,43.94578050167712],[-64.82044820448203,43.93733761532769],[-64.82764827648276,43.93058330624817],[-64.83844838448384,43.92889472897829],[-64.84564845648455,43.92889472897829],[-64.83484834848348,43.91369753354934],[-64.79884798847988,43.89512318358064],[-64.78444784447844,43.87486025634203],[-64.80244802448024,43.876548833611935],[-64.81324813248132,43.87486025634203],[-64.82044820448203,43.86641736999263],[-64.81324813248132,43.85290875183358],[-64.83124831248313,43.84446586548415],[-64.83484834848348,43.83433440186485],[-64.83844838448384,43.8292686700552],[-64.85284852848528,43.8394001336745],[-64.860048600486,43.84615444275403],[-64.86724867248672,43.86135163818298],[-64.87444874448744,43.86641736999263],[-64.88164881648817,43.87317167907216],[-64.89244892448924,43.876548833611935],[-64.90324903249032,43.87992598815168],[-64.9140491404914,43.87992598815168],[-64.91044910449104,43.87148310180228],[-64.8960489604896,43.85628590637333],[-64.88884888848888,43.84615444275403],[-64.88524885248852,43.8394001336745],[-64.88524885248852,43.822514360975674],[-64.88164881648817,43.81238289735637],[-64.90684906849069,43.805628588276846],[-64.92484924849248,43.822514360975674],[-64.93924939249392,43.849531597293804],[-64.950049500495,43.86641736999263],[-64.9680496804968,43.87317167907216],[-64.96444964449644,43.85966306091311],[-64.93564935649356,43.81238289735637],[-64.9320493204932,43.805628588276846],[-64.93564935649356,43.79887427919732],[-64.950049500495,43.77523419741897],[-64.95724957249573,43.765102733799665],[-64.97164971649715,43.75834842472014],[-64.98244982449825,43.75834842472014],[-64.99684996849967,43.770168465609316],[-65.0220502205022,43.81744862916602],[-65.040050400504,43.83264582459498],[-65.03645036450364,43.81576005189615],[-65.01845018450184,43.770168465609316],[-65.01485014850148,43.75834842472014],[-65.01485014850148,43.743151229291186],[-65.01485014850148,43.72795403386226],[-65.02565025650256,43.716133992973056],[-65.03285032850329,43.71275683843331],[-65.03645036450364,43.716133992973056],[-65.03645036450364,43.72119972478271],[-65.04365043650436,43.72288830205261],[-65.05445054450544,43.72119972478271],[-65.0580505805058,43.71275683843331],[-65.06165061650616,43.70600252935378],[-65.0580505805058,43.702625374814005],[-65.0760507605076,43.71106826116343],[-65.07245072450723,43.74483980656109],[-65.08685086850868,43.75834842472014],[-65.09765097650975,43.73639692021166],[-65.12285122851227,43.697559643004354],[-65.130051300513,43.673919561226],[-65.15165151651516,43.689116756654954],[-65.1480514805148,43.70600252935378],[-65.13725137251372,43.72795403386226],[-65.14085140851408,43.751594115640614],[-65.16245162451624,43.716133992973056],[-65.16965169651696,43.70937968389353],[-65.17685176851768,43.70937968389353],[-65.18765187651876,43.716133992973056],[-65.19485194851949,43.724576879322484],[-65.2020520205202,43.751594115640614],[-65.21285212852128,43.77185704287919],[-65.22365223652235,43.792119970117795],[-65.2380523805238,43.805628588276846],[-65.24165241652416,43.79887427919732],[-65.24165241652416,43.795497124657544],[-65.24165241652416,43.792119970117795],[-65.2380523805238,43.78367708376837],[-65.2560525605256,43.77523419741897],[-65.24885248852488,43.75497127018036],[-65.22365223652235,43.71951114751283],[-65.24165241652416,43.694182488464605],[-65.24885248852488,43.673919561226],[-65.26325263252632,43.670542406686224],[-65.28845288452884,43.673919561226],[-65.3280532805328,43.69587106573448],[-65.3280532805328,43.70937968389353],[-65.31725317253172,43.733019765671884],[-65.31365313653136,43.743151229291186],[-65.31725317253172,43.760037001990014],[-65.32445324453244,43.765102733799665],[-65.33165331653316,43.76341415652979],[-65.34245342453424,43.75834842472014],[-65.3460534605346,43.751594115640614],[-65.3460534605346,43.74146265202131],[-65.35325353253532,43.73639692021166],[-65.36765367653676,43.743151229291186],[-65.35325353253532,43.716133992973056],[-65.34245342453424,43.694182488464605],[-65.33525335253353,43.670542406686224],[-65.34245342453424,43.64183659309822],[-65.34245342453424,43.635082284018694],[-65.33885338853388,43.62495082039939],[-65.33885338853388,43.61650793404999],[-65.34245342453424,43.613130779510215],[-65.35325353253532,43.61144220224034],[-65.35685356853568,43.60299931589094],[-65.35685356853568,43.59624500681139],[-65.34965349653496,43.59286785227164],[-65.3460534605346,43.58780212046199],[-65.34245342453424,43.5455876887149],[-65.3640536405364,43.574293502302936],[-65.37125371253713,43.57935923411256],[-65.3820538205382,43.57598207957281],[-65.39285392853928,43.56585061595351],[-65.40005400054,43.56585061595351],[-65.41445414454144,43.57091634776316],[-65.44325443254432,43.59286785227164],[-65.45765457654576,43.599622161351164],[-65.45765457654576,43.59286785227164],[-65.41445414454144,43.53883337963538],[-65.41085410854109,43.528701916016104],[-65.40725407254072,43.5185704523968],[-65.40005400054,43.50337325696785],[-65.41445414454144,43.49999610242807],[-65.42165421654217,43.511816143317276],[-65.42885428854288,43.5455876887149],[-65.43965439654396,43.55740772960411],[-65.45045450454504,43.56078488414386],[-65.4540545405454,43.555719152334206],[-65.45045450454504,43.5455876887149],[-65.4540545405454,43.53545622509563],[-65.46125461254613,43.5270133387462],[-65.4720547205472,43.52363618420645],[-65.48285482854828,43.52532476147633],[-65.47565475654756,43.50337325696785],[-65.4720547205472,43.493241793348545],[-65.4720547205472,43.479733175189494],[-65.47565475654756,43.471290288840066],[-65.48285482854828,43.471290288840066],[-65.49365493654936,43.479733175189494],[-65.49725497254973,43.493241793348545],[-65.50445504455044,43.50337325696785],[-65.5440554405544,43.528701916016104],[-65.54765547655477,43.53207907055585],[-65.55125551255512,43.5371448023655],[-65.55125551255512,43.542210534175155],[-65.5440554405544,43.555719152334206],[-65.55125551255512,43.56078488414386],[-65.55485554855548,43.56585061595351],[-65.55845558455584,43.569227770493285],[-65.56565565655656,43.574293502302936],[-65.580055800558,43.56585061595351],[-65.61245612456125,43.53545622509563],[-65.64845648456485,43.5168818751269],[-65.6520565205652,43.51350472058715],[-65.65565655656556,43.506750411507625],[-65.65925659256592,43.50168467969797],[-65.670056700567,43.49661894788832],[-65.66645666456664,43.49999610242807],[-65.67365673656737,43.50506183423772],[-65.68805688056881,43.51012756604737],[-65.72045720457204,43.5084389887775],[-65.73125731257312,43.51350472058715],[-65.73845738457385,43.53207907055585],[-65.73125731257312,43.547276265984806],[-65.73125731257312,43.56247346141373],[-65.73845738457385,43.57598207957281],[-65.75285752857528,43.58611354319211],[-65.75285752857528,43.57598207957281],[-65.75285752857528,43.569227770493285],[-65.74925749257493,43.564162038683634],[-65.74565745657456,43.55909630687398],[-65.74925749257493,43.55403057506433],[-65.74925749257493,43.55234199779446],[-65.75285752857528,43.55234199779446],[-65.760057600576,43.550653420524554],[-65.7780577805778,43.56753919322338],[-65.78165781657816,43.58780212046199],[-65.77085770857708,43.64183659309822],[-65.77085770857708,43.66885382941635],[-65.77445774457745,43.680673870305526],[-65.7780577805778,43.689116756654954],[-65.78885788857887,43.69080533392483],[-65.7960579605796,43.68236244757543],[-65.79965799657997,43.66885382941635],[-65.80685806858068,43.6553452112573],[-65.7960579605796,43.64690232490787],[-65.79245792457924,43.63339370674882],[-65.79245792457924,43.61988508858977],[-65.79965799657997,43.60637647043069],[-65.8140581405814,43.631705129478945],[-65.81765817658176,43.65703378852717],[-65.8140581405814,43.68236244757543],[-65.82125821258212,43.70937968389353],[-65.82485824858249,43.71782257024296],[-65.83925839258391,43.738085497481535],[-65.84645846458464,43.751594115640614],[-65.85365853658536,43.76341415652979],[-65.86085860858608,43.805628588276846],[-65.8680586805868,43.805628588276846],[-65.8680586805868,43.787054238308144],[-65.86445864458643,43.778611351958716],[-65.86085860858608,43.770168465609316],[-65.87885878858788,43.770168465609316],[-65.88965889658895,43.78367708376837],[-65.90045900459005,43.80394001100697],[-65.90765907659076,43.819137206435926],[-65.92565925659257,43.827580092785325],[-65.93645936459365,43.82589151551545],[-65.940059400594,43.819137206435926],[-65.92925929259292,43.81238289735637],[-65.92925929259292,43.805628588276846],[-65.9580595805958,43.78536566103827],[-65.97245972459724,43.78029992922862],[-65.97605976059761,43.795497124657544],[-65.97965979659796,43.8022514337371],[-65.98325983259832,43.819137206435926],[-65.98685986859869,43.8394001336745],[-65.99045990459904,43.849531597293804],[-65.99765997659976,43.854597329103456],[-65.99765997659976,43.849531597293804],[-66.00486004860048,43.8309572473251],[-66.00486004860048,43.82589151551545],[-66.00486004860048,43.81576005189615],[-66.00486004860048,43.80900574281662],[-66.00126001260013,43.80394001100697],[-65.97605976059761,43.74990553837071],[-65.96165961659617,43.738085497481535],[-65.97245972459724,43.71444541570318],[-65.97965979659796,43.70600252935378],[-65.99045990459904,43.702625374814005],[-65.98325983259832,43.71951114751283],[-65.98325983259832,43.729642611132135],[-65.99045990459904,43.73133118840201],[-66.00486004860048,43.72288830205261],[-66.00846008460084,43.716133992973056],[-66.00486004860048,43.707691106623656],[-66.00486004860048,43.69924822027426],[-66.01566015660156,43.69587106573448],[-66.02286022860228,43.697559643004354],[-66.02646026460265,43.702625374814005],[-66.030060300603,43.70937968389353],[-66.02646026460265,43.716133992973056],[-66.03366033660336,43.716133992973056],[-66.030060300603,43.73639692021166],[-66.04086040860408,43.74652838383096],[-66.05526055260552,43.74146265202131],[-66.05886058860588,43.716133992973056],[-66.07326073260732,43.729642611132135],[-66.07686076860769,43.73977407475144],[-66.07326073260732,43.76847988833944],[-66.08046080460804,43.77185704287919],[-66.09486094860948,43.76679131106954],[-66.10566105661056,43.75497127018036],[-66.11646116461164,43.743151229291186],[-66.120061200612,43.743151229291186],[-66.13446134461344,43.80900574281662],[-66.120061200612,43.82420293824555],[-66.11286112861129,43.83602297913475],[-66.11286112861129,43.84784302002393],[-66.120061200612,43.85290875183358],[-66.12726127261273,43.849531597293804],[-66.13446134461344,43.84277728821428],[-66.14166141661416,43.83264582459498],[-66.14886148861488,43.82589151551545],[-66.14886148861488,43.8394001336745],[-66.14886148861488,43.85290875183358],[-66.1560615606156,43.85966306091311],[-66.17046170461704,43.85966306091311],[-66.16686166861668,43.86979452453241],[-66.16686166861668,43.87992598815168],[-66.17046170461704,43.88668029723121],[-66.17046170461704,43.89512318358064],[-66.16686166861668,43.90356606993004],[-66.15246152461525,43.92382899716864],[-66.14886148861488,43.93227188351804],[-66.15246152461525,43.947469078946995],[-66.15966159661596,43.960977697106074],[-66.16326163261633,43.976174892535],[-66.14886148861488,44.00319212885313],[-66.14886148861488,44.009946437932655],[-66.1560615606156,44.02176647882183],[-66.1560615606156,44.023455056091734],[-66.18486184861848,44.08424383780749],[-66.19566195661956,44.09268672415692],[-66.210062100621,44.085932415077394],[-66.210062100621,44.10619534231597],[-66.19566195661956,44.1433440422534],[-66.1920619206192,44.165295546761854],[-66.18846188461885,44.17204985584141],[-66.15966159661596,44.20075566942941],[-66.15246152461525,44.20919855577881],[-66.14166141661416,44.23115006028729],[-66.11286112861129,44.34259616009956],[-66.09486094860948,44.374679128227314],[-66.06246062460625,44.393253478196044],[-66.0480604806048,44.406762096355095],[-66.04086040860408,44.4253364463238],[-66.03366033660336,44.437156487212974],[-65.96525965259652,44.48950238257933],[-65.92925929259292,44.50638815527816],[-65.88965889658895,44.531716814326415],[-65.8680586805868,44.54353685521559],[-65.84645846458464,44.55704547337464],[-65.83925839258391,44.57393124607347],[-65.850058500585,44.58743986423255],[-65.8680586805868,44.58743986423255],[-65.91485914859147,44.57899697788312],[-65.9220592205922,44.580685555153025],[-65.93285932859328,44.58406270969277],[-65.94365943659436,44.58406270969277],[-66.030060300603,44.51989677343724],[-66.18846188461885,44.39494205546592],[-66.19566195661956,44.39156490092614],[-66.1920619206192,44.4168935599744],[-66.18126181261812,44.433779332673225],[-65.99765997659976,44.57899697788312],[-65.88965889658895,44.63134287324948],[-65.87525875258753,44.643162914138685],[-65.78525785257852,44.69719738677492],[-65.77445774457745,44.68537734588574],[-65.76365763657637,44.67186872772669],[-65.75645756457564,44.656671532297736],[-65.75285752857528,44.64147433686878],[-65.75285752857528,44.63134287324948],[-65.75645756457564,44.621211409630206],[-65.75645756457564,44.6110799460109],[-65.74925749257493,44.60770279147113],[-65.73125731257312,44.60939136874103],[-65.70965709657096,44.61445710055065],[-65.69165691656916,44.621211409630206],[-65.68085680856808,44.62796571870973],[-65.65565655656556,44.64822864594831],[-65.62325623256233,44.66680299591704],[-65.61245612456125,44.678623036806215],[-65.60165601656016,44.69719738677492],[-65.59445594455944,44.68875450042552],[-65.53685536855369,44.736034663982224],[-65.52245522455225,44.744477550331624],[-65.49365493654936,44.7478547048714],[-65.45045450454504,44.76980620937988],[-65.42885428854288,44.77824909572928],[-65.44685446854469,44.781626250269056],[-65.49365493654936,44.7579861684907],[-65.53685536855369,44.746166127601526],[-65.6160561605616,44.709017427664094],[-65.65565655656556,44.69888596404479],[-65.67725677256772,44.69719738677492],[-65.71685716857168,44.67524588226644],[-65.7420574205742,44.66849157318691],[-65.760057600576,44.68200019134596],[-65.7240572405724,44.727591777632796],[-65.61965619656196,44.77824909572928],[-65.45765457654576,44.85423507287402],[-65.39645396453965,44.8947609273512],[-65.37845378453784,44.901515236430726],[-65.35685356853568,44.9048923909705],[-65.23085230852308,44.95554970906696],[-65.21285212852128,44.96736974995616],[-65.18045180451804,44.99269840900439],[-65.0220502205022,45.0602414997997],[-64.86364863648636,45.13960463148419],[-64.71244712447124,45.19195052685055],[-64.64404644046441,45.200393413199976],[-64.57564575645756,45.21896776316868],[-64.51084510845108,45.22909922678798],[-64.47484474844748,45.24091926767716],[-64.44244442444425,45.25611646310608],[-64.41364413644136,45.271313658535036],[-64.39564395643956,45.301708049392914],[-64.41724417244173,45.320282399361645],[-64.46044460444604,45.328725285711045],[-64.49644496444964,45.333791017520696],[-64.47844478444784,45.34054532660022],[-64.45684456844567,45.33885674933035],[-64.41364413644136,45.32703670844117],[-64.34884348843488,45.320282399361645],[-64.33084330843307,45.31015093574234],[-64.320043200432,45.29495374031339],[-64.320043200432,45.28313369942421],[-64.33084330843307,45.27300223580491],[-64.34164341643417,45.26118219491573],[-64.35244352443524,45.24767357675668],[-64.35964359643596,45.21390203135903],[-64.36684366843669,45.1970162586602],[-64.35244352443524,45.18519621777102],[-64.3560435604356,45.16999902234207],[-64.37044370443704,45.15649040418302],[-64.38844388443884,45.14804751783359],[-64.36684366843669,45.12609601332511],[-64.36324363243632,45.115964549705836],[-64.36684366843669,45.10752166335641],[-64.3560435604356,45.10414450881666],[-64.34524345243452,45.105833086086534],[-64.3380433804338,45.11258739516606],[-64.33444334443344,45.124407436055236],[-64.33084330843307,45.13622747694441],[-64.32724327243272,45.141293208754064],[-64.31644316443165,45.146358940563715],[-64.30564305643055,45.14804751783359],[-64.22284222842228,45.10921024062628],[-64.15084150841508,45.0501100361804],[-64.15084150841508,45.03828999529122],[-64.15444154441543,44.98425552265499],[-64.14724147241472,44.99776414081404],[-64.13644136441364,45.00282987262369],[-64.1220412204122,45.00282987262369],[-64.10764107641076,44.99776414081404],[-64.11484114841149,45.01127275897309],[-64.11844118441184,45.02984710894182],[-64.11484114841149,45.04673288164062],[-64.10044100441004,45.053487190720176],[-64.10044100441004,45.05855292252983],[-64.11844118441184,45.061930077069576],[-64.13644136441364,45.07206154068888],[-64.18324183241832,45.114275972435934],[-64.19764197641976,45.132850322404664],[-64.19764197641976,45.14804751783359],[-64.16524165241653,45.159867558722766],[-64.16524165241653,45.168310445072194],[-64.16524165241653,45.1784419086915],[-64.16524165241653,45.18519621777102],[-64.1580415804158,45.19195052685055],[-64.140041400414,45.200393413199976],[-64.12924129241291,45.2071477222795],[-64.11484114841149,45.2155906086289],[-64.02484024840248,45.24091926767716],[-63.963639636396366,45.25105073129643],[-63.9060390603906,45.27637939034469],[-63.88443884438844,45.279756544884435],[-63.84483844838448,45.27637939034469],[-63.82683826838267,45.279756544884435],[-63.80883808838088,45.28819943123386],[-63.80523805238052,45.298330894853166],[-63.80523805238052,45.306773781202565],[-63.80163801638015,45.31183951301222],[-63.787237872378725,45.31183951301222],[-63.762037620376205,45.31183951301222],[-63.74763747637476,45.306773781202565],[-63.736837368373685,45.30001947212304],[-63.72963729637296,45.30508520393269],[-63.71883718837188,45.32197097663152],[-63.715237152371515,45.32703670844117],[-63.7080370803708,45.32703670844117],[-63.67563675636755,45.320282399361645],[-63.578435784357836,45.32197097663152],[-63.54243542435424,45.33210244025082],[-63.524435244352446,45.333791017520696],[-63.502835028350276,45.328725285711045],[-63.4920349203492,45.31690524482187],[-63.48123481234812,45.30339662666282],[-63.47043470434704,45.29157658577364],[-63.459634596345964,45.32534813117127],[-63.434434344343444,45.34561105840987],[-63.39483394833948,45.355742522029175],[-63.358833588335884,45.360808253838826],[-63.39123391233912,45.37093971745813],[-63.50643506435064,45.37431687199788],[-63.528035280352796,45.377694026537654],[-63.57123571235712,45.391202644696705],[-63.59283592835928,45.39457979923648],[-63.816038160381595,45.39457979923648],[-63.8340383403834,45.39289122196658],[-63.84843848438484,45.38444833561718],[-63.87363873638736,45.36756256291835],[-63.88083880838808,45.3624968311087],[-63.88443884438844,45.355742522029175],[-63.891638916389155,45.3523653674894],[-63.90243902439023,45.3540539447593],[-63.90963909639096,45.35911967656892],[-63.913239132391325,45.36587398564848],[-63.913239132391325,45.372628294728],[-63.90963909639096,45.3810711810774],[-63.93483934839348,45.39795695377623],[-64.0140401404014,45.391202644696705],[-64.05364053640535,45.39457979923648],[-64.04284042840428,45.40133410831601],[-64.03924039240393,45.40133410831601],[-64.06444064440645,45.413154149205184],[-64.1040410404104,45.41484272647506],[-64.18324183241832,45.40808841739553],[-64.24444244442444,45.39457979923648],[-64.27684276842768,45.39289122196658],[-64.31284312843128,45.40133410831601],[-64.31284312843128,45.382759758347305],[-64.32364323643236,45.37938260380753],[-64.33444334443344,45.38613691288705],[-64.34884348843488,45.38951406742683],[-64.35964359643596,45.38613691288705],[-64.37044370443704,45.3810711810774],[-64.38124381243811,45.37431687199788],[-64.38844388443884,45.36756256291835],[-64.39924399243992,45.372628294728],[-64.43524435244352,45.3810711810774],[-64.4460444604446,45.38782549015693],[-64.44964449644496,45.39457979923648],[-64.46044460444604,45.39964553104613],[-64.57564575645756,45.41484272647506],[-64.61884618846189,45.40808841739553],[-64.67284672846728,45.38951406742683],[-64.70524705247053,45.360808253838826],[-64.6980469804698,45.32703670844117],[-64.7160471604716,45.32534813117127],[-64.7340473404734,45.31690524482187],[-64.74484744847447,45.306773781202565],[-64.75924759247592,45.30001947212304],[-64.76644766447664,45.29664231758326],[-64.770047700477,45.298330894853166],[-64.76644766447664,45.30339662666282],[-64.770047700477,45.31183951301222],[-64.77364773647736,45.31859382209174],[-64.76644766447664,45.32534813117127],[-64.76644766447664,45.33041386298092],[-64.77364773647736,45.333791017520696],[-64.7880478804788,45.33210244025082],[-64.79164791647916,45.333791017520696],[-64.8240482404824,45.34729963567975],[-64.860048600486,45.3523653674894],[-64.8960489604896,45.34729963567975],[-64.92844928449284,45.32703670844117],[-64.93564935649356,45.350676790219524],[-64.92844928449284,45.382759758347305],[-64.9140491404914,45.413154149205184],[-64.90324903249032,45.43003992190401],[-64.85284852848528,45.45705715822214],[-64.83844838448384,45.458745735492016],[-64.81324813248132,45.467188621841416],[-64.79884798847988,45.47056577638119],[-64.83484834848348,45.484074394540244],[-64.70524705247053,45.53642028990663],[-64.680046800468,45.543174598986155],[-64.6620466204662,45.556683217145206],[-64.64764647646476,45.55837179441508],[-64.64404644046441,45.58707760800311],[-64.61524615246152,45.60227480343204],[-64.5720457204572,45.61578342159112],[-64.54324543245433,45.63098061702004],[-64.51444514445144,45.6563092760683],[-64.48564485644856,45.676572203306876],[-64.47844478444784,45.67826078057678],[-64.4640446404464,45.68163793511653],[-64.45684456844567,45.6833265123864],[-64.44964449644496,45.690080821465955],[-64.43884438844388,45.703589439625006],[-64.4280442804428,45.71034374870453],[-64.43524435244352,45.725540944133485],[-64.43884438844388,45.739049562292536],[-64.43164431644315,45.747492448641964],[-64.41364413644136,45.75086960318171],[-64.39924399243992,45.755935334991364],[-64.38484384843848,45.76775537588054],[-64.37764377643776,45.78126399403962],[-64.38124381243811,45.793084034928796],[-64.30564305643055,45.82685558032645],[-64.29124291242913,45.815035539437275],[-64.29484294842948,45.80490407581797],[-64.31284312843128,45.78632972584927],[-64.320043200432,45.78126399403962],[-64.32724327243272,45.77957541676972],[-64.33084330843307,45.77788683949984],[-64.33444334443344,45.76775537588054],[-64.33084330843307,45.76268964407089],[-64.32724327243272,45.75931248953114],[-64.32724327243272,45.75424675772149],[-64.33444334443344,45.74411529410219],[-64.31644316443165,45.755935334991364],[-64.3020430204302,45.76268964407089],[-64.28764287642876,45.76437822134079],[-64.2660426604266,45.76437822134079],[-64.26964269642696,45.774509684960066],[-64.28044280442803,45.77788683949984],[-64.29124291242913,45.77957541676972],[-64.30564305643055,45.77957541676972],[-64.29484294842948,45.78464114857937],[-64.2840428404284,45.793084034928796],[-64.27324273242732,45.80490407581797],[-64.26964269642696,45.81334696216737],[-64.26964269642696,45.8302327348662],[-64.27684276842768,45.84205277575538],[-64.320043200432,45.877512898422935],[-64.33444334443344,45.885955784772335],[-64.34884348843488,45.88933293931211],[-64.36324363243632,45.88426720750246],[-64.36684366843669,45.87582432115303],[-64.35964359643596,45.86738143480363],[-64.3380433804338,45.86738143480363],[-64.3380433804338,45.86062712572411],[-64.37044370443704,45.84711850756503],[-64.42084420844208,45.79139545765889],[-64.4460444604446,45.77957541676972],[-64.4640446404464,45.77282110769019],[-64.47124471244712,45.757623912261266],[-64.47484474844748,45.74242671683231],[-64.4820448204482,45.72722952140336],[-64.49644496444964,45.720475212323834],[-64.51444514445144,45.720475212323834],[-64.53244532445324,45.725540944133485],[-64.54684546845468,45.73229525321301],[-64.52524525245252,45.74242671683231],[-64.50724507245071,45.766066798610666],[-64.49644496444964,45.793084034928796],[-64.48924489244892,45.81672411670715],[-64.49644496444964,45.82516700305655],[-64.52164521645216,45.8403641984855],[-64.53244532445324,45.84711850756503],[-64.5360453604536,45.86231570299398],[-64.5360453604536,45.87413574388316],[-64.53244532445324,45.90284155747116],[-64.54684546845468,45.88426720750246],[-64.56124561245612,45.87920147569281],[-64.5720457204572,45.885955784772335],[-64.62964629646297,45.95518745283752],[-64.64764647646476,45.970384648266474],[-64.66924669246693,45.983893266425525],[-64.680046800468,45.99064757550505],[-64.68364683646836,46.00077903912435],[-64.68364683646836,46.02610769817261],[-64.68364683646836,46.03623916179191],[-64.69084690846908,46.046370625411186],[-64.70524705247053,46.06156782084014],[-64.72684726847268,46.07845359353897],[-64.74844748447484,46.090273634428144],[-64.76644766447664,46.08689647988837],[-64.70884708847088,46.04974777995096],[-64.6980469804698,46.032862007252135],[-64.70524705247053,46.01766481182318],[-64.70884708847088,46.00753334820388],[-64.70524705247053,45.99909046185448],[-64.69444694446945,45.98895899823518],[-64.66924669246693,45.970384648266474],[-64.66564665646656,45.96531891645682],[-64.65484654846549,45.95349887556765],[-64.65124651246512,45.95012172102787],[-64.63684636846368,45.94505598921822],[-64.6260462604626,45.93154737105917],[-64.61164611646116,45.90284155747116],[-64.60084600846008,45.891021516581986],[-64.57924579245793,45.872447166613284],[-64.5720457204572,45.86062712572411],[-64.58644586445864,45.82516700305655],[-64.61164611646116,45.79983834400832],[-64.64764647646476,45.77788683949984],[-64.67644676446764,45.75086960318171],[-64.66564665646656,45.74580387137206],[-64.65124651246512,45.730606675943136],[-64.64044640446404,45.72385236686361],[-64.65484654846549,45.720475212323834],[-64.67644676446764,45.725540944133485],[-64.69084690846908,45.72385236686361],[-64.6980469804698,45.71540948051418],[-64.70884708847088,45.68839224419605],[-64.71244712447124,45.6833265123864],[-64.73044730447305,45.67319504876713],[-64.75564755647557,45.627603462480295],[-64.770047700477,45.614094844321215],[-64.78444784447844,45.61240626705134],[-64.79164791647916,45.61916057613087],[-64.79524795247951,45.627603462480295],[-64.8060480604806,45.636046348829694],[-64.81684816848168,45.63773492609957],[-64.88164881648817,45.63435777155982],[-64.90324903249032,45.627603462480295],[-64.92484924849248,45.61916057613087],[-64.94284942849428,45.60734053524169],[-64.99324993249932,45.55837179441508],[-65.01485014850148,45.55330606260546],[-65.03645036450364,45.54992890806568],[-65.1840518405184,45.511091630858374],[-65.31365313653136,45.458745735492016],[-65.490054900549,45.37093971745813],[-65.51885518855188,45.364185408378574],[-65.52965529655296,45.35743109929905],[-65.53685536855369,45.34729963567975],[-65.54045540455404,45.33716817206047],[-65.5440554405544,45.33041386298092],[-65.55845558455584,45.32534813117127],[-65.61965619656196,45.315216667551994],[-65.63045630456304,45.31183951301222],[-65.65925659256592,45.29495374031339],[-65.69885698856989,45.284822276694086],[-65.73125731257312,45.25273930856633],[-65.75285752857528,45.244296422216905],[-65.760057600576,45.24767357675668],[-65.78165781657816,45.26118219491573],[-65.79245792457924,45.26455934945551],[-65.80325803258032,45.25949361764586],[-65.82485824858249,45.24091926767716],[-65.85365853658536,45.23247638132773],[-65.88965889658895,45.21390203135903],[-65.90765907659076,45.21052487681925],[-65.92925929259292,45.21221345408915],[-65.96165961659617,45.222344917708426],[-65.97965979659796,45.22403349497833],[-65.9940599405994,45.230787804057854],[-66.00486004860048,45.244296422216905],[-66.01926019260192,45.271313658535036],[-66.04086040860408,45.284822276694086],[-66.13446134461344,45.31183951301222],[-66.03366033660336,45.37093971745813],[-66.00126001260013,45.39795695377623],[-65.99765997659976,45.40639984012566],[-65.99765997659976,45.418219881014835],[-65.99765997659976,45.440171385523314],[-66.00126001260013,45.45030284914259],[-66.00486004860048,45.458745735492016],[-66.00846008460084,45.46381146730167],[-66.0120601206012,45.46043431276189],[-66.01926019260192,45.448614271872714],[-66.05886058860588,45.423285612824486],[-66.06966069660696,45.39964553104613],[-66.08766087660877,45.37431687199788],[-66.08766087660877,45.369251140188226],[-66.08766087660877,45.364185408378574],[-66.09126091260912,45.35911967656892],[-66.09486094860948,45.3540539447593],[-66.10206102061021,45.3540539447593],[-66.11286112861129,45.360808253838826],[-66.120061200612,45.360808253838826],[-66.16326163261633,45.3523653674894],[-66.18486184861848,45.34392248114],[-66.19566195661956,45.333791017520696],[-66.1920619206192,45.33041386298092],[-66.17766177661777,45.306773781202565],[-66.16686166861668,45.29664231758326],[-66.1560615606156,45.28988800850374],[-66.14166141661416,45.28313369942421],[-66.12726127261273,45.279756544884435],[-66.10566105661056,45.27806796761456],[-66.08766087660877,45.27806796761456],[-66.06966069660696,45.27469081307481],[-66.05886058860588,45.257805040375985],[-66.0840608406084,45.25273930856633],[-66.11646116461164,45.23754211313738],[-66.14166141661416,45.217279185898775],[-66.14166141661416,45.20208199046985],[-66.18846188461885,45.1784419086915],[-66.19566195661956,45.17168759961194],[-66.20286202862029,45.159867558722766],[-66.21366213662137,45.16999902234207],[-66.23166231662316,45.1970162586602],[-66.24966249662496,45.2054591450096],[-66.27846278462785,45.208836299549375],[-66.31086310863108,45.2054591450096],[-66.32886328863289,45.19026194958067],[-66.30366303663037,45.186884795040896],[-66.27126271262712,45.19026194958067],[-66.24966249662496,45.18519621777102],[-66.26046260462604,45.16155613599267],[-66.2820628206282,45.14973609510349],[-66.34326343263432,45.14467036329384],[-66.35406354063541,45.13116174513476],[-66.35766357663576,45.115964549705836],[-66.36846368463684,45.114275972435934],[-66.37926379263793,45.115964549705836],[-66.39366393663936,45.110898817896185],[-66.41526415264153,45.09232446792748],[-66.42966429664297,45.083881581578055],[-66.44046440464405,45.08050442703828],[-66.45486454864549,45.07712727249853],[-66.4620646206462,45.07712727249853],[-66.46566465664657,45.083881581578055],[-66.46566465664657,45.097390199737106],[-66.46566465664657,45.10414450881666],[-66.4620646206462,45.10752166335641],[-66.4620646206462,45.114275972435934],[-66.49086490864909,45.154801826913115],[-66.50526505265053,45.14804751783359],[-66.51966519665196,45.14467036329384],[-66.54486544865448,45.141293208754064],[-66.54846548465484,45.13960463148419],[-66.660066600666,45.083881581578055],[-66.69246692466925,45.075438695228655],[-66.71766717667177,45.08050442703828],[-66.71046710467104,45.08725873611783],[-66.71766717667177,45.09063589065758],[-66.72486724867248,45.09401304519736],[-66.73206732067321,45.075438695228655],[-66.74646746467464,45.06530723160935],[-66.76806768067681,45.0602414997997],[-66.78966789667896,45.05855292252983],[-66.79686796867968,45.06530723160935],[-66.7860678606786,45.08050442703828],[-66.78246782467825,45.097390199737106],[-66.80046800468004,45.10752166335641],[-66.8040680406804,45.09401304519736],[-66.81486814868148,45.088947313387706],[-66.82566825668256,45.088947313387706],[-66.840068400684,45.08725873611783],[-66.87246872468724,45.06530723160935],[-66.89046890468904,45.0602414997997],[-66.90846908469084,45.09907877700701],[-66.9120691206912,45.114275972435934],[-66.89766897668976,45.12103028151549],[-66.88686886868868,45.12271885878536],[-66.86166861668616,45.12778459059501],[-66.84726847268472,45.12778459059501],[-66.85446854468545,45.137916054214315],[-66.86886868868689,45.14467036329384],[-66.88686886868868,45.14804751783359],[-66.89766897668976,45.14804751783359],[-66.91566915669156,45.154801826913115],[-66.92646926469264,45.168310445072194],[-66.93726937269372,45.181819063231245],[-66.94446944469445,45.19026194958067],[-66.95526955269553,45.18857337231077],[-66.96966969669697,45.181819063231245],[-66.98046980469805,45.17168759961194],[-66.9840698406984,45.15817898145289],[-66.99126991269912,45.16155613599267],[-67.00567005670057,45.16662186780232],[-67.02007020070201,45.168310445072194],[-67.04167041670416,45.14298178602394],[-67.0380703807038,45.13453889967454],[-67.04527045270453,45.11765312697571],[-67.04887048870488,45.09570162246723],[-67.04167041670416,45.075438695228655],[-67.06687066870668,45.08219300430818],[-67.08487084870848,45.097390199737106],[-67.12447124471244,45.14298178602394],[-67.13167131671317,45.15311324964324],[-67.13527135271352,45.16493329053242],[-67.13527135271352,45.1970162586602],[-67.13887138871388,45.2054591450096],[-67.14967149671496,45.2054591450096],[-67.1640716407164,45.19870483593007],[-67.1640716407164,45.21221345408915],[-67.16767167671676,45.222344917708426],[-67.17847178471784,45.22909922678798],[-67.18927189271892,45.23247638132773],[-67.18927189271892,45.217279185898775],[-67.18927189271892,45.20208199046985],[-67.1820718207182,45.18857337231077],[-67.17487174871748,45.1784419086915],[-67.19287192871928,45.18013048596137],[-67.20367203672036,45.1784419086915],[-67.21087210872108,45.17168759961194],[-67.20367203672036,45.15817898145289],[-67.20007200072,45.15649040418302],[-67.17847178471784,45.15817898145289],[-67.17127171271713,45.154801826913115],[-67.16767167671676,45.14973609510349],[-67.16767167671676,45.14298178602394],[-67.16047160471604,45.132850322404664],[-67.15327153271532,45.119341704245585],[-67.15327153271532,45.115964549705836],[-67.14607146071461,45.115964549705836],[-67.13887138871388,45.110898817896185],[-67.1280712807128,45.10245593154676],[-67.11367113671136,45.08725873611783],[-67.09927099270992,45.0686843861491],[-67.110071100711,45.053487190720176],[-67.10287102871028,45.03828999529122],[-67.08847088470884,45.026469954402046],[-67.07767077670776,45.021404222592395],[-67.07047070470705,45.01464991351287],[-67.05247052470524,44.98256694538509],[-67.04167041670416,44.972435481765785],[-67.05247052470524,44.96061544087661],[-67.0560705607056,44.945418245447684],[-67.06327063270632,44.931909627288604],[-67.08487084870848,44.92515531820908],[-67.09567095670957,44.93359820455851],[-67.10647106471065,44.945418245447684],[-67.11727117271172,44.94879539998743],[-67.1280712807128,44.92515531820908],[-67.11367113671136,44.915023854589776],[-67.11367113671136,44.9048923909705],[-67.12087120871209,44.8947609273512],[-67.13887138871388,44.89138377281142],[-67.14967149671496,44.896449504621074],[-67.18567185671856,44.91671243185968],[-67.19647196471965,44.91840100912955],[-67.20367203672036,44.9048923909705],[-67.18927189271892,44.89138377281142],[-67.17127171271713,44.87787515465237],[-67.1640716407164,44.866055113763196],[-67.14967149671496,44.81539779566671],[-67.14607146071461,44.825529259286014],[-67.14247142471424,44.85592365014389],[-67.14247142471424,44.86267795922342],[-67.13167131671317,44.86436653649329],[-67.11367113671136,44.847480763794465],[-67.09927099270992,44.84916934106437],[-67.10647106471065,44.85761222741377],[-67.09567095670957,44.86267795922342],[-67.09567095670957,44.86774369103307],[-67.10287102871028,44.87787515465237],[-67.10647106471065,44.88294088646202],[-67.08847088470884,44.888006618271675],[-67.0740707407074,44.87112084557285],[-67.06687066870668,44.84410360925472],[-67.06687066870668,44.82215210474624],[-67.04527045270453,44.833972145635414],[-67.04167041670416,44.85423507287402],[-67.05967059670596,44.89813808189095],[-67.04527045270453,44.8947609273512],[-67.03447034470344,44.8846294637319],[-67.01287012870128,44.85761222741377],[-67.00927009270092,44.85592365014389],[-66.99486994869949,44.85761222741377],[-66.99126991269912,44.85592365014389],[-66.99126991269912,44.852546495604116],[-66.99126991269912,44.847480763794465],[-66.99126991269912,44.84410360925472],[-66.98046980469805,44.81877495020646],[-66.97686976869768,44.81539779566671],[-66.9840698406984,44.80526633204741],[-67.02007020070201,44.77487194118953],[-67.03087030870309,44.7664290548401],[-67.04167041670416,44.7664290548401],[-67.06327063270632,44.76811763210998],[-67.0740707407074,44.7664290548401],[-67.0740707407074,44.763051900300354],[-67.08127081270813,44.746166127601526],[-67.08487084870848,44.73941181852197],[-67.09567095670957,44.7478547048714],[-67.10287102871028,44.7292803549027],[-67.11367113671136,44.71577173674362],[-67.16767167671676,44.67018015045679],[-67.17847178471784,44.66680299591704],[-67.19647196471965,44.66342584137726],[-67.20367203672036,44.656671532297736],[-67.20007200072,44.65329437775796],[-67.19647196471965,44.64485149140856],[-67.22527225272252,44.64485149140856],[-67.23247232472325,44.64654006867843],[-67.25047250472504,44.65498295502786],[-67.25047250472504,44.656671532297736],[-67.26127261272612,44.65836010956761],[-67.26847268472685,44.65498295502786],[-67.26847268472685,44.64654006867843],[-67.25767257672577,44.629654295979606],[-67.27927279272792,44.63134287324948],[-67.29367293672937,44.63978575959891],[-67.30807308073081,44.64991722321821],[-67.3260732607326,44.656671532297736],[-67.3260732607326,44.665114418647136],[-67.31167311673116,44.68200019134596],[-67.31527315273152,44.700574541314694],[-67.33327333273333,44.709017427664094],[-67.3620736207362,44.69888596404479],[-67.34767347673477,44.692131654965266],[-67.3620736207362,44.68537734588574],[-67.37287372873729,44.68537734588574],[-67.38367383673837,44.69044307769539],[-67.39447394473945,44.69888596404479],[-67.39087390873908,44.68200019134596],[-67.37647376473764,44.67018015045679],[-67.37287372873729,44.65836010956761],[-67.38367383673837,44.638097182329034],[-67.36567365673656,44.62796571870973],[-67.36927369273693,44.62289998690008],[-67.380073800738,44.621211409630206],[-67.38367383673837,44.624588564169954],[-67.39807398073981,44.6110799460109],[-67.40527405274052,44.60601421420125],[-67.40887408874089,44.59588275058195],[-67.42327423274233,44.61445710055065],[-67.42687426874268,44.63978575959891],[-67.43407434074341,44.660048686837484],[-67.45567455674556,44.665114418647136],[-67.4520745207452,44.64822864594831],[-67.4520745207452,44.63303145051938],[-67.4520745207452,44.6195228323603],[-67.43767437674376,44.60939136874103],[-67.45567455674556,44.60432563693138],[-67.47367473674737,44.602637059661475],[-67.49167491674916,44.60432563693138],[-67.5060750607506,44.60939136874103],[-67.49887498874989,44.624588564169954],[-67.5060750607506,44.63303145051938],[-67.51687516875168,44.63472002778926],[-67.52767527675276,44.624588564169954],[-67.53127531275312,44.624588564169954],[-67.53847538475384,44.64654006867843],[-67.55287552875528,44.64485149140856],[-67.59247592475924,44.616145677820555],[-67.57447574475745,44.61783425509043],[-67.56727567275672,44.60939136874103],[-67.56727567275672,44.57899697788312],[-67.57087570875709,44.57055409153372],[-67.57447574475745,44.562111205184294],[-67.57447574475745,44.553668318834895],[-67.57087570875709,44.545225432485466],[-67.56727567275672,44.53847112340594],[-67.5780757807578,44.53509396886619],[-67.58887588875888,44.53340539159629],[-67.5960759607596,44.531716814326415],[-67.60327603276032,44.52833965978664],[-67.61047610476105,44.526651082516764],[-67.62127621276213,44.526651082516764],[-67.62847628476284,44.52833965978664],[-67.63927639276392,44.531716814326415],[-67.63927639276392,44.53509396886619],[-67.63927639276392,44.540159700675815],[-67.63927639276392,44.54691400975537],[-67.63927639276392,44.55535689610477],[-67.64287642876428,44.5637997824542],[-67.65007650076501,44.56886551426382],[-67.66087660876609,44.567176936993945],[-67.6680766807668,44.562111205184294],[-67.68247682476824,44.54860258702524],[-67.71487714877148,44.50132242346854],[-67.72927729277292,44.50301100073841],[-67.740077400774,44.509765309817936],[-67.74727747277473,44.52158535070711],[-67.75087750877509,44.53847112340594],[-67.740077400774,44.58743986423255],[-67.74367743677436,44.59588275058195],[-67.75447754477544,44.589128441502424],[-67.78687786877869,44.54184827794572],[-67.78327783277832,44.53678254613607],[-67.78687786877869,44.52833965978664],[-67.79047790477904,44.531716814326415],[-67.80127801278013,44.54184827794572],[-67.79767797677977,44.553668318834895],[-67.78687786877869,44.57055409153372],[-67.77967779677796,44.58575128696265],[-67.78327783277832,44.6009484823916],[-67.79047790477904,44.59925990512173],[-67.80127801278013,44.589128441502424],[-67.80487804878048,44.575619823343374],[-67.81567815678156,44.58406270969277],[-67.830078300783,44.58406270969277],[-67.83727837278373,44.57730840061325],[-67.84447844478444,44.55197974156499],[-67.85887858878588,44.54691400975537],[-67.86967869678696,44.545225432485466],[-67.87327873278733,44.54184827794572],[-67.87327873278733,44.53002823705654],[-67.85167851678517,44.50807673254806],[-67.8480784807848,44.496256691658886],[-67.85167851678517,44.482748073499806],[-67.86247862478625,44.47937091896006],[-67.87687876878769,44.482748073499806],[-67.88767887678877,44.48612522803958],[-67.8840788407884,44.46755087807088],[-67.89847898478985,44.42195929178405],[-67.90207902079021,44.39663063273579],[-67.920079200792,44.411827828164746],[-67.92367923679237,44.437156487212974],[-67.91647916479164,44.46586230080098],[-67.90207902079021,44.48612522803958],[-67.91647916479164,44.48105949622993],[-67.92727927279273,44.46755087807088],[-67.93447934479344,44.45066510537205],[-67.93807938079381,44.4354679099431],[-67.93447934479344,44.4168935599744],[-67.93807938079381,44.40845067362497],[-67.94887948879489,44.41351640543462],[-67.95247952479524,44.41858213724427],[-67.95967959679597,44.42195929178405],[-67.96327963279633,44.4270250235937],[-67.96327963279633,44.4354679099431],[-67.96687966879668,44.50132242346854],[-67.97767977679776,44.499633846198634],[-67.98127981279812,44.49456811438898],[-67.98487984879849,44.48612522803958],[-67.98487984879849,44.47599376442028],[-67.98847988479885,44.46586230080098],[-67.99927999279993,44.46586230080098],[-68.01728017280172,44.47261660988053],[-68.0280802808028,44.469239455340755],[-68.01728017280172,44.45910799172145],[-67.98487984879849,44.4455993735624],[-67.98487984879849,44.44053364175275],[-67.97407974079741,44.41351640543462],[-67.97047970479704,44.41013925089487],[-67.97047970479704,44.40338494181532],[-67.97407974079741,44.39494205546592],[-67.97767977679776,44.38818774638639],[-67.98487984879849,44.38312201457674],[-67.99567995679956,44.38312201457674],[-67.99927999279993,44.38987632365627],[-67.99927999279993,44.39494205546592],[-68.00648006480064,44.39663063273579],[-68.01368013680137,44.393253478196044],[-68.01368013680137,44.38987632365627],[-68.01368013680137,44.384810591846616],[-68.02088020880208,44.376367705497216],[-68.04968049680497,44.34090758282966],[-68.06048060480605,44.32908754194048],[-68.07128071280712,44.33753042828991],[-68.07488074880749,44.349350469179086],[-68.07488074880749,44.36285908733814],[-68.06768067680676,44.376367705497216],[-68.0820808208082,44.37299055095744],[-68.08928089280893,44.36961339641766],[-68.09648096480964,44.38649916911649],[-68.10728107281072,44.415204982704495],[-68.11088110881109,44.44053364175275],[-68.10728107281072,44.464173723531104],[-68.11088110881109,44.47937091896006],[-68.13968139681397,44.48612522803958],[-68.14328143281432,44.48950238257933],[-68.14328143281432,44.49456811438898],[-68.14328143281432,44.499633846198634],[-68.15048150481505,44.50132242346854],[-68.15768157681576,44.496256691658886],[-68.16128161281613,44.491190959849234],[-68.16128161281613,44.48612522803958],[-68.16128161281613,44.47937091896006],[-68.16128161281613,44.47430518715041],[-68.15768157681576,44.46755087807088],[-68.15768157681576,44.46079656899133],[-68.16488164881649,44.45910799172145],[-68.18288182881828,44.45910799172145],[-68.18648186481865,44.46248514626123],[-68.19008190081901,44.469239455340755],[-68.19008190081901,44.49794526892876],[-68.19368193681936,44.51989677343724],[-68.20088200882009,44.52496250524689],[-68.21888218882188,44.50132242346854],[-68.21888218882188,44.48612522803958],[-68.21888218882188,44.47261660988053],[-68.22248222482224,44.46586230080098],[-68.25488254882548,44.49287953711911],[-68.25848258482584,44.504699578008285],[-68.25848258482584,44.51989677343724],[-68.27648276482765,44.51989677343724],[-68.29448294482944,44.52833965978664],[-68.30888308883088,44.52833965978664],[-68.31248312483125,44.509765309817936],[-68.280082800828,44.499633846198634],[-68.26928269282692,44.48612522803958],[-68.28728287282873,44.46586230080098],[-68.280082800828,44.46248514626123],[-68.280082800828,44.45910799172145],[-68.27648276482765,44.455730837181704],[-68.27288272882728,44.45235368264193],[-68.31608316083161,44.45066510537205],[-68.33768337683377,44.455730837181704],[-68.35568355683556,44.46586230080098],[-68.36288362883629,44.4455993735624],[-68.3880838808388,44.42364786905392],[-68.38088380883808,44.41013925089487],[-68.40968409684096,44.40507351908522],[-68.4240842408424,44.40507351908522],[-68.42768427684277,44.4168935599744],[-68.4240842408424,44.47092803261063],[-68.43128431284312,44.48612522803958],[-68.44928449284492,44.49287953711911],[-68.47808478084781,44.49287953711911],[-68.460084600846,44.46248514626123],[-68.45648456484564,44.44897652810215],[-68.460084600846,44.442222219022625],[-68.46368463684637,44.43884506448288],[-68.46368463684637,44.433779332673225],[-68.460084600846,44.428713600863574],[-68.45648456484564,44.42364786905392],[-68.45288452884529,44.42195929178405],[-68.44928449284492,44.41858213724427],[-68.44928449284492,44.41013925089487],[-68.45648456484564,44.401696364545444],[-68.46368463684637,44.38987632365627],[-68.47448474484744,44.38312201457674],[-68.47808478084781,44.38649916911649],[-68.47808478084781,44.41013925089487],[-68.48168481684816,44.42195929178405],[-68.48528485284852,44.43209075540332],[-68.50328503285033,44.41351640543462],[-68.52488524885248,44.40507351908522],[-68.550085500855,44.40507351908522],[-68.57528575285752,44.41013925089487],[-68.56448564485645,44.40000778727557],[-68.550085500855,44.37805628276709],[-68.54288542885429,44.366236241877914],[-68.54288542885429,44.35610477825861],[-68.55728557285572,44.330776119210384],[-68.56088560885608,44.31895607832121],[-68.55728557285572,44.30544746016213],[-68.54648546485464,44.30207030562238],[-68.53568535685356,44.30038172835248],[-68.52488524885248,44.295315996542826],[-68.52128521285212,44.2801188011139],[-68.52488524885248,44.2699873374946],[-68.5320853208532,44.26661018295482],[-68.54648546485464,44.27505306930425],[-68.53928539285393,44.26323302841507],[-68.5320853208532,44.25647871933555],[-68.52488524885248,44.251412987525896],[-68.5140851408514,44.246347255716245],[-68.54288542885429,44.23790436936682],[-68.63288632886328,44.29700457381273],[-68.66528665286653,44.2986931510826],[-68.68328683286832,44.29362741927295],[-68.70488704887049,44.30544746016213],[-68.73368733687336,44.32908754194048],[-68.75528755287553,44.33415327375013],[-68.79128791287913,44.31557892378143],[-68.82008820088201,44.313890346511556],[-68.81288812888128,44.35103904644896],[-68.80568805688057,44.36961339641766],[-68.79128791287913,44.376367705497216],[-68.78048780487805,44.374679128227314],[-68.76968769687697,44.36454766460804],[-68.76248762487624,44.36285908733814],[-68.75168751687517,44.36792481914779],[-68.75528755287553,44.37805628276709],[-68.75888758887588,44.38987632365627],[-68.76608766087661,44.39663063273579],[-68.75168751687517,44.40507351908522],[-68.74088740887409,44.41351640543462],[-68.73368733687336,44.415204982704495],[-68.71568715687157,44.40507351908522],[-68.70488704887049,44.40338494181532],[-68.69768697686976,44.41013925089487],[-68.71568715687157,44.43209075540332],[-68.71928719287193,44.4455993735624],[-68.75528755287553,44.43040217813345],[-68.76608766087661,44.4253364463238],[-68.7840878408784,44.40338494181532],[-68.79488794887949,44.393253478196044],[-68.80568805688057,44.39156490092614],[-68.81648816488165,44.401696364545444],[-68.81288812888128,44.41858213724427],[-68.80568805688057,44.433779332673225],[-68.8020880208802,44.4455993735624],[-68.79488794887949,44.44897652810215],[-68.7840878408784,44.4540422599118],[-68.78048780487805,44.45910799172145],[-68.77688776887769,44.464173723531104],[-68.77328773287732,44.47937091896006],[-68.77328773287732,44.48612522803958],[-68.74088740887409,44.53678254613607],[-68.74448744487445,44.55535689610477],[-68.78048780487805,44.562111205184294],[-68.79488794887949,44.562111205184294],[-68.8020880208802,44.56042262791442],[-68.80568805688057,44.53509396886619],[-68.82728827288273,44.47937091896006],[-68.82008820088201,44.477682341690155],[-68.80568805688057,44.47261660988053],[-68.82368823688236,44.46079656899133],[-68.84528845288453,44.4540422599118],[-68.85608856088561,44.455730837181704],[-68.84888848888488,44.47261660988053],[-68.86328863288632,44.47599376442028],[-68.88128881288813,44.469239455340755],[-68.90648906489065,44.44897652810215],[-68.92088920889209,44.442222219022625],[-68.9640896408964,44.43209075540332],[-68.98568985689856,44.42195929178405],[-68.98208982089821,44.41351640543462],[-68.97128971289713,44.40507351908522],[-68.97488974889748,44.393253478196044],[-68.97128971289713,44.38312201457674],[-68.94608946089461,44.349350469179086],[-68.93888938889388,44.33246469648026],[-68.94608946089461,44.317267501051305],[-68.9640896408964,44.307136037432],[-68.98568985689856,44.30038172835248],[-69.0000900009,44.295315996542826],[-69.02169021690216,44.24803583298612],[-69.0360903609036,44.232838637557165],[-69.0540905409054,44.18555847400046],[-69.06849068490685,44.15854123768233],[-69.07929079290793,44.14503261952328],[-69.090090900909,44.13658973317385],[-69.090090900909,44.129835424094324],[-69.08289082890829,44.1146382286654],[-69.090090900909,44.09775245596657],[-69.08649086490864,44.085932415077394],[-69.0540905409054,44.08930956961714],[-69.06489064890648,44.067358065108664],[-69.07569075690756,44.05216086967974],[-69.090090900909,44.04371798333031],[-69.11889118891189,44.04034082879056],[-69.1260912609126,44.03020936517126],[-69.12969129691297,44.01163501520253],[-69.14049140491404,43.99812639704348],[-69.16929169291693,44.00825786066278],[-69.17289172891728,43.996437819773604],[-69.17649176491764,43.99137208796395],[-69.18369183691837,43.98968351069408],[-69.19089190891908,43.99306066523383],[-69.1980919809198,43.98124062434465],[-69.20529205292053,43.97110916072535],[-69.20169201692016,43.95928911983617],[-69.19089190891908,43.952534810756646],[-69.22689226892268,43.93564903805782],[-69.23769237692376,43.93227188351804],[-69.25929259292593,43.92720615170842],[-69.26289262892628,43.93058330624817],[-69.25929259292593,43.95591196529642],[-69.23049230492305,43.99137208796395],[-69.21969219692197,44.00825786066278],[-69.23769237692376,44.00825786066278],[-69.29889298892988,43.95084623348677],[-69.30969309693097,43.94240334713734],[-69.31329313293132,43.95422338802652],[-69.30249302493024,43.98124062434465],[-69.31329313293132,43.9863063561543],[-69.32769327693276,43.982929201614525],[-69.35289352893528,43.97279773799525],[-69.37089370893709,43.97279773799525],[-69.35289352893528,43.9947492425037],[-69.34569345693457,44.00825786066278],[-69.35289352893528,44.01332359247243],[-69.37089370893709,44.015012169742306],[-69.37089370893709,44.02176647882183],[-69.35289352893528,44.036963674250785],[-69.34569345693457,44.050472292409836],[-69.35289352893528,44.06060375602914],[-69.36369363693636,44.06060375602914],[-69.37089370893709,44.045406560600185],[-69.3780937809378,44.036963674250785],[-69.39249392493925,44.031897942441134],[-69.40329403294032,44.02683221063148],[-69.39609396093961,44.00319212885313],[-69.40689406894069,43.9947492425037],[-69.42489424894248,43.99137208796395],[-69.43209432094321,43.99306066523383],[-69.43929439294392,43.98124062434465],[-69.44649446494465,43.9677320061856],[-69.47889478894788,43.87992598815168],[-69.49329493294933,43.85122017456368],[-69.51129511295113,43.83433440186485],[-69.51489514895148,43.85628590637333],[-69.52209522095221,43.86979452453241],[-69.52929529295292,43.88330314269146],[-69.53289532895329,43.89681176085051],[-69.540095400954,43.89681176085051],[-69.54369543695437,43.88330314269146],[-69.54729547295473,43.86810594726251],[-69.54729547295473,43.83433440186485],[-69.56169561695617,43.849531597293804],[-69.55449554495544,43.85628590637333],[-69.56889568895689,43.86810594726251],[-69.56889568895689,43.87823741088181],[-69.56529565295652,43.88668029723121],[-69.56169561695617,43.89681176085051],[-69.55809558095581,43.90356606993004],[-69.55449554495544,43.91538611081924],[-69.55449554495544,43.920451842628864],[-69.55449554495544,43.92720615170842],[-69.56529565295652,43.933960460787944],[-69.56889568895689,43.94240334713734],[-69.55809558095581,43.96435485164582],[-69.52929529295292,44.004880706123004],[-69.53289532895329,44.02176647882183],[-69.54369543695437,44.01163501520253],[-69.55449554495544,43.99812639704348],[-69.56889568895689,43.97279773799525],[-69.57969579695796,43.9576005425663],[-69.58689586895869,43.94915765621687],[-69.58329583295833,43.94240334713734],[-69.58329583295833,43.933960460787944],[-69.58329583295833,43.925517574438516],[-69.59049590495904,43.917074688089116],[-69.5940959409594,43.91032037900959],[-69.59049590495904,43.90525464719994],[-69.58689586895869,43.89681176085051],[-69.59049590495904,43.890057451770986],[-69.5940959409594,43.88330314269146],[-69.58329583295833,43.87148310180228],[-69.57969579695796,43.85628590637333],[-69.5760957609576,43.8394001336745],[-69.57969579695796,43.822514360975674],[-69.5940959409594,43.80731716554675],[-69.59769597695977,43.81576005189615],[-69.5940959409594,43.849531597293804],[-69.60849608496085,43.8394001336745],[-69.62289622896229,43.83771155640463],[-69.64089640896408,43.84446586548415],[-69.65529655296552,43.85628590637333],[-69.66969669696697,43.86641736999263],[-69.66969669696697,43.87317167907216],[-69.64809648096481,43.89681176085051],[-69.65529655296552,43.90525464719994],[-69.65529655296552,43.91032037900959],[-69.65169651696516,43.91538611081924],[-69.64809648096481,43.92382899716864],[-69.64089640896408,43.920451842628864],[-69.630096300963,43.91876326535899],[-69.62289622896229,43.917074688089116],[-69.630096300963,43.92889472897829],[-69.64089640896408,43.933960460787944],[-69.65169651696516,43.939026192597595],[-69.65529655296552,43.95591196529642],[-69.65529655296552,43.9677320061856],[-69.63729637296373,44.00319212885313],[-69.630096300963,44.00825786066278],[-69.61929619296193,44.01670074701218],[-69.61569615696156,44.02514363336161],[-69.630096300963,44.02683221063148],[-69.64449644496445,44.02176647882183],[-69.65529655296552,44.009946437932655],[-69.74889748897489,43.90018891539029],[-69.75969759697597,43.88668029723121],[-69.75249752497524,43.87992598815168],[-69.74169741697416,43.87486025634203],[-69.73089730897308,43.86979452453241],[-69.73089730897308,43.85628590637333],[-69.73089730897308,43.841088710944376],[-69.74529745297453,43.814071474626274],[-69.73449734497345,43.8208257837058],[-69.72369723697237,43.84446586548415],[-69.71289712897129,43.849531597293804],[-69.70569705697056,43.84277728821428],[-69.70569705697056,43.827580092785325],[-69.73089730897308,43.77523419741897],[-69.74529745297453,43.75834842472014],[-69.75969759697597,43.760037001990014],[-69.76689766897668,43.787054238308144],[-69.76689766897668,43.795497124657544],[-69.76329763297633,43.79887427919732],[-69.75969759697597,43.8022514337371],[-69.75969759697597,43.80394001100697],[-69.75969759697597,43.81238289735637],[-69.76689766897668,43.814071474626274],[-69.77049770497705,43.814071474626274],[-69.77409774097741,43.814071474626274],[-69.78129781297812,43.863040215452855],[-69.78489784897849,43.87317167907216],[-69.7920979209792,43.88668029723121],[-69.79569795697957,43.89681176085051],[-69.79569795697957,43.91032037900959],[-69.79569795697957,43.92214041989877],[-69.79569795697957,43.933960460787944],[-69.79929799297993,43.944091924407246],[-69.80289802898028,43.96435485164582],[-69.80649806498064,43.982929201614525],[-69.80289802898028,43.99812639704348],[-69.80289802898028,44.015012169742306],[-69.7920979209792,44.02852078790136],[-69.78129781297812,44.036963674250785],[-69.77049770497705,44.045406560600185],[-69.76689766897668,44.05384944694961],[-69.76689766897668,44.058915178759264],[-69.77409774097741,44.06060375602914],[-69.78129781297812,44.05722660148936],[-69.78849788497885,44.04878371513996],[-69.79929799297993,44.04371798333031],[-69.81729817298172,44.036963674250785],[-69.8460984609846,44.009946437932655],[-69.86409864098641,43.99812639704348],[-69.87489874898749,43.9863063561543],[-69.8820988209882,43.976174892535],[-69.8820988209882,43.96435485164582],[-69.87129871298713,43.9576005425663],[-69.85329853298532,43.9576005425663],[-69.84249842498424,43.9660434289157],[-69.83169831698316,43.974486315265125],[-69.82449824498245,43.969420583455474],[-69.82089820898209,43.960977697106074],[-69.81369813698137,43.933960460787944],[-69.80289802898028,43.86135163818298],[-69.79929799297993,43.82589151551545],[-69.7920979209792,43.79043139284792],[-69.78129781297812,43.77354562014909],[-69.78129781297812,43.76341415652979],[-69.78849788497885,43.738085497481535],[-69.7920979209792,43.733019765671884],[-69.80289802898028,43.729642611132135],[-69.81369813698137,43.72119972478271],[-69.82449824498245,43.70937968389353],[-69.8280982809828,43.697559643004354],[-69.83889838898389,43.70937968389353],[-69.84249842498424,43.73977407475144],[-69.85329853298532,43.74652838383096],[-69.85689856898568,43.75497127018036],[-69.85689856898568,43.770168465609316],[-69.85689856898568,43.79380854738767],[-69.85329853298532,43.800562856467195],[-69.8460984609846,43.80394001100697],[-69.84249842498424,43.80731716554675],[-69.84249842498424,43.81744862916602],[-69.8460984609846,43.827580092785325],[-69.86049860498605,43.83602297913475],[-69.86409864098641,43.84615444275403],[-69.86049860498605,43.85628590637333],[-69.85689856898568,43.86135163818298],[-69.85689856898568,43.86641736999263],[-69.86769867698676,43.86979452453241],[-69.87849878498784,43.86979452453241],[-69.88929889298893,43.86810594726251],[-69.89649896498965,43.863040215452855],[-69.90369903699036,43.85628590637333],[-69.89289892898928,43.85122017456368],[-69.8820988209882,43.84446586548415],[-69.87489874898749,43.83264582459498],[-69.87489874898749,43.814071474626274],[-69.8820988209882,43.800562856467195],[-69.89649896498965,43.78874281557802],[-69.90729907299072,43.787054238308144],[-69.91089910899109,43.800562856467195],[-69.95049950499505,43.760037001990014],[-69.95769957699576,43.756659847450265],[-69.9648996489965,43.75497127018036],[-69.9720997209972,43.751594115640614],[-69.97569975699757,43.734708342941786],[-69.97929979299792,43.729642611132135],[-69.98649986499865,43.72626545659236],[-69.99369993699936,43.72626545659236],[-69.92529925299253,43.8292686700552],[-69.92889928899288,43.849531597293804],[-69.94329943299432,43.841088710944376],[-69.95769957699576,43.822514360975674],[-69.9720997209972,43.79887427919732],[-69.97929979299792,43.78367708376837],[-69.98289982899828,43.76679131106954],[-69.99369993699936,43.751594115640614],[-70.0081000810008,43.74146265202131],[-70.02610026100261,43.73977407475144],[-70.0081000810008,43.76679131106954],[-69.96129961299613,43.8208257837058],[-69.95049950499505,43.849531597293804],[-69.9720997209972,43.84784302002393],[-70.0081000810008,43.827580092785325],[-70.01890018900188,43.8292686700552],[-70.01170011700117,43.83264582459498],[-70.00090000900009,43.841088710944376],[-69.99009990099901,43.85122017456368],[-69.98649986499865,43.863040215452855],[-70.00090000900009,43.86135163818298],[-70.01170011700117,43.85628590637333],[-70.02250022500225,43.84784302002393],[-70.04050040500405,43.8292686700552],[-70.05130051300513,43.82420293824555],[-70.07290072900729,43.814071474626274],[-70.08730087300873,43.8106943200865],[-70.09810098100981,43.8106943200865],[-70.10890108901089,43.80731716554675],[-70.15930159301593,43.76679131106954],[-70.18090180901808,43.756659847450265],[-70.20970209702097,43.71444541570318],[-70.23850238502385,43.69924822027426],[-70.23850238502385,43.68742817938505],[-70.23490234902349,43.672230983956126],[-70.23130231302312,43.6637880976067],[-70.2421024210242,43.653656633987396],[-70.25650256502564,43.65027947944765],[-70.28530285302853,43.65027947944765],[-70.28530285302853,43.64352517036812],[-70.25650256502564,43.640148015828345],[-70.23130231302312,43.64183659309822],[-70.20970209702097,43.635082284018694],[-70.19890198901989,43.609753624970466],[-70.19890198901989,43.59793358408129],[-70.20250202502025,43.56753919322338],[-70.2061020610206,43.56078488414386],[-70.22050220502204,43.55909630687398],[-70.24570245702456,43.54896484325468],[-70.260102601026,43.547276265984806],[-70.25650256502564,43.55403057506433],[-70.25290252902529,43.56078488414386],[-70.27090270902708,43.55740772960411],[-70.29250292502924,43.53376764782573],[-70.30690306903068,43.5270133387462],[-70.31050310503105,43.54896484325468],[-70.32490324903249,43.54896484325468],[-70.34290342903428,43.53883337963538],[-70.35730357303572,43.5270133387462],[-70.3681036810368,43.50506183423772],[-70.37170371703716,43.48648748426902],[-70.3681036810368,43.46791313430032],[-70.36090360903609,43.444273052521964],[-70.34290342903428,43.45440451614124],[-70.3321033210332,43.457781670681015],[-70.32130321303212,43.45947024795089],[-70.32130321303212,43.452715938871364],[-70.33570335703357,43.44765020706171],[-70.34650346503464,43.43920732071231],[-70.3681036810368,43.42063297074361],[-70.3681036810368,43.41556723893396],[-70.37530375303753,43.40205862077488],[-70.37530375303753,43.39699288896523],[-70.38250382503824,43.39361573442548],[-70.39330393303932,43.39192715715558],[-70.40410404104041,43.390238579885704],[-70.4221042210422,43.37672996172665],[-70.43650436504365,43.363221343567574],[-70.45450454504545,43.3514013026784],[-70.47970479704797,43.342958416329],[-70.50850508505084,43.34126983905912],[-70.51930519305192,43.33958126178922],[-70.53010530105301,43.33113837543982],[-70.53730537305373,43.32607264363017],[-70.56250562505625,43.30074398458191],[-70.56970569705696,43.29905540731204],[-70.58050580505805,43.275415325533686],[-70.5841058410584,43.25008666648546],[-70.56970569705696,43.229823739246854],[-70.5841058410584,43.2146265438179],[-70.59850598505984,43.1960521938492],[-70.5841058410584,43.18929788476967],[-70.59850598505984,43.18254357569015],[-70.61290612906129,43.172412112070845],[-70.63090630906309,43.14708345302259],[-70.65970659706596,43.09473755765623],[-70.67050670506704,43.08629467130683],[-70.68850688506885,43.09136040311648],[-70.69930699306992,43.10824617581531],[-70.71370713707137,43.12175479397436],[-70.73170731707317,43.12006621670449],[-70.73170731707317,43.115000484894836],[-70.74250742507425,43.087983248576705],[-70.74250742507425,43.08460609403693],[-70.75330753307533,43.0592774349887],[-70.73170731707317,43.06265458952848],[-70.710107101071,43.06434316679835],[-70.70290702907029,43.0592774349887],[-70.710107101071,43.04576881682965],[-70.71730717307173,43.03226019867057],[-70.72090720907208,43.02719446686092],[-70.72810728107281,43.011997271431994],[-70.78210782107821,42.949519912446334],[-70.80370803708037,42.914059789778776],[-70.81090810908108,42.8937968625402],[-70.81450814508145,42.87691108984137],[-70.81450814508145,42.870156780761846],[-70.80730807308073,42.83469665809429],[-70.81090810908108,42.82625377174489],[-70.81810818108181,42.824565194475014],[-70.86490864908649,42.82625377174489],[-70.85410854108541,42.816122308125586],[-70.84330843308433,42.81274515358584],[-70.82170821708216,42.80430226723641],[-70.81090810908108,42.80599084450628],[-70.81090810908108,42.80430226723641],[-70.80730807308073,42.80092511269666],[-70.80010800108,42.79248222634723],[-70.80370803708037,42.780662185458056],[-70.77490774907749,42.71649624920251],[-70.78210782107821,42.70974194012298],[-70.81090810908108,42.74182490825075],[-70.82530825308253,42.75026779460016],[-70.81810818108181,42.718184826472395],[-70.80010800108,42.70129905377357],[-70.74250742507425,42.68103612653498],[-70.7569075690757,42.675970394725326],[-70.76410764107641,42.67428181745545],[-70.77490774907749,42.67428181745545],[-70.7569075690757,42.657396044756624],[-70.70290702907029,42.65401889021685],[-70.69930699306992,42.640510272057796],[-70.68130681306813,42.63206738570838],[-70.67770677706777,42.640510272057796],[-70.68130681306813,42.66752750837591],[-70.67050670506704,42.677658971995214],[-70.65970659706596,42.68441328107474],[-70.63090630906309,42.69454474469404],[-70.63450634506344,42.67934754926509],[-70.63090630906309,42.67259324018556],[-70.620106201062,42.6692160856458],[-70.60930609306092,42.66752750837591],[-70.59850598505984,42.66415035383615],[-70.59850598505984,42.657396044756624],[-70.60210602106021,42.64895315840721],[-70.59850598505984,42.640510272057796],[-70.59850598505984,42.633755962978256],[-70.61290612906129,42.633755962978256],[-70.620106201062,42.628690231168605],[-70.62370623706236,42.620247344819205],[-70.63090630906309,42.613493035739666],[-70.64170641706417,42.60673872666014],[-70.64890648906488,42.60505014939025],[-70.66690666906669,42.60673872666014],[-70.66690666906669,42.608427303930014],[-70.67050670506704,42.61180445846979],[-70.6741067410674,42.61180445846979],[-70.68490684906848,42.60673872666014],[-70.69570695706956,42.59660726304084],[-70.70290702907029,42.588164376691424],[-70.710107101071,42.5814100676119],[-70.81090810908108,42.56283571764318],[-70.86130861308612,42.54763852221424],[-70.87930879308793,42.53750705859494],[-70.8721087210872,42.530752749515415],[-70.87930879308793,42.52568701770576],[-70.88650886508864,42.52062128589611],[-70.89010890108901,42.51217839954671],[-70.89010890108901,42.50204693592741],[-70.87930879308793,42.50711266773706],[-70.86490864908649,42.51893270862624],[-70.85410854108541,42.52399844043589],[-70.85050850508505,42.51386697681659],[-70.83970839708397,42.50542409046717],[-70.83970839708397,42.49866978138765],[-70.84690846908468,42.49698120411776],[-70.85410854108541,42.495292626847885],[-70.86130861308612,42.49191547230811],[-70.86490864908649,42.48684974049847],[-70.88650886508864,42.473341122339406],[-70.89010890108901,42.46996396779964],[-70.90090900909009,42.468275390529755],[-70.91530915309153,42.46996396779964],[-70.92250922509224,42.46489823598999],[-70.9261092610926,42.453078195100815],[-70.91890918909189,42.44294673148151],[-70.90450904509045,42.4345038451321],[-70.89010890108901,42.42774953605257],[-70.91530915309153,42.42268380424292],[-70.94410944109441,42.446323886021275],[-70.9621096210962,42.43788099967186],[-70.97290972909728,42.42437238151281],[-70.97290972909728,42.4159294951634],[-70.96570965709657,42.40073229973444],[-70.9621096210962,42.37878079522598],[-70.9621096210962,42.368649331606676],[-70.95130951309513,42.36020644525726],[-70.96570965709657,42.36020644525726],[-70.98370983709837,42.37709221795609],[-70.9981099810998,42.38046937249585],[-71.0089100891009,42.37709221795609],[-71.00531005310053,42.370337908876564],[-70.9981099810998,42.363583599797025],[-70.98730987309872,42.36020644525726],[-71.00531005310053,42.3568292907175],[-71.02331023310232,42.36696075433679],[-71.03771037710376,42.37202648614644],[-71.04851048510484,42.36020644525726],[-71.03771037710376,42.3568292907175],[-71.02691026910269,42.35345213617774],[-71.01971019710197,42.348386404368085],[-71.01611016110161,42.33825494074878],[-71.03051030510305,42.33825494074878],[-71.04131041310413,42.33150063166926],[-71.04851048510484,42.321369168049955],[-71.03771037710376,42.307860549890904],[-71.02691026910269,42.301106240811365],[-71.01611016110161,42.29941766354149],[-70.99450994509945,42.31123770443067],[-70.9981099810998,42.28422046811254],[-70.98370983709837,42.2791547363029],[-70.9621096210962,42.280843313572774],[-70.95130951309513,42.26733469541371],[-70.95490954909549,42.26226896360407],[-70.96570965709657,42.25382607725466],[-70.96570965709657,42.24876034544501],[-70.9621096210962,42.24707176817512],[-70.95490954909549,42.243694613635355],[-70.95130951309513,42.24200603636547],[-70.94770947709476,42.24707176817512],[-70.94050940509405,42.245383190905244],[-70.9261092610926,42.25044892271488],[-70.90810908109081,42.25720323179442],[-70.89730897308972,42.263957540873946],[-70.88650886508864,42.25044892271488],[-70.87570875708757,42.25382607725466],[-70.86850868508685,42.265646118143835],[-70.86850868508685,42.270711849953486],[-70.87930879308793,42.27746615903301],[-70.89370893708937,42.290974777192076],[-70.89730897308972,42.306171972621016],[-70.89730897308972,42.31799201351019],[-70.85410854108541,42.28422046811254],[-70.83250832508325,42.2690232726836],[-70.78210782107821,42.258891809064295],[-70.76050760507604,42.24876034544501],[-70.74250742507425,42.23525172728594],[-70.71730717307173,42.21161164550759],[-70.71370713707137,42.20485733642805],[-70.71370713707137,42.176151522840044],[-70.71370713707137,42.17277436830028],[-70.710107101071,42.17277436830028],[-70.69570695706956,42.16433148195087],[-70.67770677706777,42.14406855471228],[-70.65250652506525,42.10860843204475],[-70.63090630906309,42.09172265934592],[-70.63450634506344,42.07483688664709],[-70.62730627306273,42.05963969121814],[-70.59850598505984,42.02249099128072],[-70.59130591305913,42.020802414010845],[-70.59130591305913,42.01742525947107],[-70.59850598505984,42.01067095039154],[-70.60570605706057,42.00391664131202],[-70.61650616506165,42.00391664131202],[-70.62730627306273,42.00560521858189],[-70.6381063810638,42.01067095039154],[-70.63450634506344,42.01235952766143],[-70.62370623706236,42.015736682201194],[-70.61650616506165,42.01742525947107],[-70.63090630906309,42.0444424957892],[-70.6381063810638,42.05963969121814],[-70.64890648906488,42.06470542302779],[-70.65610656106561,42.05795111394826],[-70.66690666906669,42.01067095039154],[-70.6741067410674,42.014048104931305],[-70.68130681306813,42.015736682201194],[-70.69210692106921,42.014048104931305],[-70.71370713707137,42.00222806404213],[-70.65610656106561,41.956636477755296],[-70.62370623706236,41.95494790048542],[-70.60570605706057,41.95325932321553],[-70.56610566105661,41.95494790048542],[-70.54450544505444,41.94143928232636],[-70.53010530105301,41.90597915965881],[-70.52290522905228,41.868830459721394],[-70.53010530105301,41.84181322340328],[-70.53370533705336,41.81648456435504],[-70.50490504905049,41.789467328036906],[-70.44010440104401,41.75569578263925],[-70.40050400504005,41.74556431901996],[-70.27450274502745,41.73543285540066],[-70.28890288902889,41.7320557008609],[-70.32490324903249,41.7320557008609],[-70.33930339303393,41.72530139178137],[-70.33570335703357,41.71854708270183],[-70.31410314103141,41.71516992816207],[-70.27450274502745,41.71516992816207],[-70.2421024210242,41.72361281451148],[-70.19170191701916,41.74725289628984],[-70.10170101701017,41.76582724625855],[-70.06930069300692,41.77427013260797],[-70.03690036900369,41.78609017349714],[-70.02250022500225,41.791155905306795],[-70.00090000900009,41.81648456435504],[-70.00450004500044,41.84687895521293],[-70.00090000900009,41.88233907788046],[-70.02250022500225,41.9076677369287],[-70.01170011700117,41.9076677369287],[-70.00450004500044,41.909356314198575],[-69.98649986499865,41.91442204600823],[-69.98649986499865,41.921176355087766],[-70.00450004500044,41.92286493235764],[-70.01890018900188,41.92961924143718],[-70.02970029700296,41.938062127786594],[-70.03690036900369,41.94143928232636],[-70.05130051300513,41.93468497324682],[-70.05850058500585,41.90429058238894],[-70.06930069300692,41.89247054149976],[-70.07290072900729,41.92793066416729],[-70.07290072900729,41.94819359140588],[-70.080100801008,41.9954737549626],[-70.08370083700837,42.01235952766143],[-70.09810098100981,42.03768818670967],[-70.13770137701377,42.05795111394826],[-70.16650166501664,42.063016845757915],[-70.18810188101881,42.04950822759885],[-70.19170191701916,42.03768818670967],[-70.17730177301773,42.03768818670967],[-70.170101701017,42.03768818670967],[-70.170101701017,42.02755672309037],[-70.18810188101881,42.01742525947107],[-70.20250202502025,42.02586814582048],[-70.22410224102241,42.051196804868724],[-70.23130231302312,42.05795111394826],[-70.23850238502385,42.05963969121814],[-70.24570245702456,42.061328268488026],[-70.24570245702456,42.06808257756755],[-70.23490234902349,42.076525463916965],[-70.22770227702277,42.07990261845673],[-70.21690216902168,42.08496835026638],[-70.19170191701916,42.08665692753627],[-70.16650166501664,42.083279772996505],[-70.14490144901448,42.08159119572662],[-70.1161011610116,42.0731483093772],[-70.080100801008,42.05795111394826],[-70.05130051300513,42.03937676397955],[-70.01530015300153,41.998850909502366],[-69.98289982899828,41.95325932321553],[-69.94329943299432,41.85701041883222],[-69.92529925299253,41.838436068863516],[-69.92889928899288,41.83505891432374],[-69.93249932499324,41.833370337053864],[-69.93609936099361,41.831681759783976],[-69.93969939699397,41.831681759783976],[-69.9540995409954,41.84012464613339],[-69.9648996489965,41.84350180067315],[-69.9720997209972,41.838436068863516],[-69.97569975699757,41.8097302552755],[-69.97929979299792,41.796221637116446],[-69.95769957699576,41.80804167800562],[-69.94329943299432,41.806353100735734],[-69.93249932499324,41.79284448257668],[-69.93249932499324,41.74049858721031],[-69.93969939699397,41.67464407368489],[-69.97929979299792,41.681398382764414],[-70.13770137701377,41.66113545552582],[-70.18450184501845,41.66113545552582],[-70.21690216902168,41.64762683736676],[-70.23130231302312,41.645938260096884],[-70.23850238502385,41.64256110555712],[-70.24930249302493,41.63580679647758],[-70.26370263702637,41.61554386923899],[-70.27450274502745,41.61047813742934],[-70.27090270902708,41.62060960104864],[-70.260102601026,41.645938260096884],[-70.27450274502745,41.644249682826995],[-70.30330303303033,41.63411821920771],[-70.31770317703176,41.63242964193782],[-70.35370353703537,41.63580679647758],[-70.36450364503645,41.63242964193782],[-70.38250382503824,41.62229817831853],[-70.39330393303932,41.61892102377875],[-70.40410404104041,41.63749537374747],[-70.41850418504184,41.64087252828723],[-70.42930429304293,41.63242964193782],[-70.4581045810458,41.59190378746064],[-70.47970479704797,41.57332943749192],[-70.50490504905049,41.56319797387263],[-70.53370533705336,41.55982081933287],[-70.56610566105661,41.55813224206298],[-70.59490594905948,41.55306651025333],[-70.65970659706596,41.52098354212556],[-70.68490684906848,41.53111500574485],[-70.66330663306633,41.54968935571357],[-70.65250652506525,41.57839516930157],[-70.65250652506525,41.6543811464463],[-70.65610656106561,41.671266919145125],[-70.65970659706596,41.684775537304176],[-70.65250652506525,41.69321842365359],[-70.64170641706417,41.701661310003004],[-70.63090630906309,41.71179277362231],[-70.6381063810638,41.72192423724161],[-70.62730627306273,41.728678546321134],[-70.62370623706236,41.728678546321134],[-70.63090630906309,41.74049858721031],[-70.64170641706417,41.74049858721031],[-70.64890648906488,41.733744278130786],[-70.65250652506525,41.72192423724161],[-70.65970659706596,41.72192423724161],[-70.68850688506885,41.74049858721031],[-70.710107101071,41.74725289628984],[-70.72090720907208,41.74556431901996],[-70.72450724507245,41.713481350892195],[-70.72090720907208,41.701661310003004],[-70.71370713707137,41.68815269184395],[-70.73890738907389,41.68984126911383],[-70.74970749707497,41.67970980549454],[-70.7569075690757,41.66282403279571],[-70.77490774907749,41.645938260096884],[-70.78570785707856,41.66113545552582],[-70.79650796507964,41.65944687825595],[-70.80730807308073,41.651003991906535],[-70.80730807308073,41.645938260096884],[-70.80370803708037,41.64256110555712],[-70.82170821708216,41.63580679647758],[-70.83970839708397,41.629052487398056],[-70.85050850508505,41.629052487398056],[-70.84330843308433,41.603723828349814],[-70.84690846908468,41.59190378746064],[-70.85770857708577,41.59190378746064],[-70.86130861308612,41.59696951927029],[-70.86850868508685,41.61554386923899],[-70.87570875708757,41.62229817831853],[-70.87930879308793,41.62736391012817],[-70.90450904509045,41.64087252828723],[-70.90810908109081,41.61554386923899],[-70.92250922509224,41.59865809654016],[-70.93330933309333,41.58008374657146],[-70.9261092610926,41.551377932983456],[-70.94770947709476,41.5361807375545],[-70.95850958509585,41.53111500574485],[-70.97290972909728,41.53111500574485],[-70.97290972909728,41.53449216028463],[-70.96930969309693,41.53786931482439],[-71.01611016110161,41.51254065577615],[-71.04131041310413,41.5074749239665],[-71.07011070110701,41.5176063875858],[-71.04851048510484,41.524360696665326],[-71.04491044910449,41.5361807375545],[-71.04851048510484,41.551377932983456],[-71.06291062910628,41.56488655114251],[-71.06291062910628,41.54462362390392],[-71.07371073710736,41.539557892094265],[-71.10971109711097,41.54462362390392],[-71.10251102511025,41.52773785120509],[-71.09891098910988,41.52267211939544],[-71.12051120511205,41.51254065577615],[-71.18531185311852,41.46863764675919],[-71.19971199711996,41.49227772853756],[-71.20331203312033,41.50240919215685],[-71.19611196111961,41.51422923304604],[-71.19611196111961,41.52098354212556],[-71.20691206912069,41.55813224206298],[-71.21051210512104,41.602035251079926],[-71.21051210512104,41.62567533285829],[-71.20691206912069,41.645938260096884],[-71.19251192511925,41.67633265095478],[-71.18891188911888,41.684775537304176],[-71.1349113491135,41.75569578263925],[-71.10971109711097,41.796221637116446],[-71.12771127711277,41.79284448257668],[-71.13851138511384,41.77933586441762],[-71.17091170911709,41.733744278130786],[-71.17451174511744,41.726989969051246],[-71.18531185311852,41.72192423724161],[-71.20691206912069,41.728678546321134],[-71.22131221312213,41.7320557008609],[-71.22851228512285,41.72530139178137],[-71.22851228512285,41.72023565997172],[-71.23571235712356,41.71010419635242],[-71.23931239312392,41.706727041812655],[-71.23931239312392,41.69828415546324],[-71.23931239312392,41.684775537304176],[-71.23931239312392,41.681398382764414],[-71.24651246512465,41.67970980549454],[-71.26091260912608,41.651003991906535],[-71.2861128611286,41.65944687825595],[-71.30051300513004,41.65944687825595],[-71.30771307713077,41.671266919145125],[-71.30771307713077,41.684775537304176],[-71.30051300513004,41.70334988727289],[-71.29331293312933,41.72023565997172],[-71.28251282512825,41.7421871644802],[-71.28251282512825,41.748941473559725],[-71.28971289712896,41.754007205369376],[-71.30051300513004,41.75569578263925],[-71.30051300513004,41.75231862809949],[-71.3041130411304,41.73036712359102],[-71.30771307713077,41.72192423724161],[-71.31851318513185,41.72530139178137],[-71.33651336513364,41.733744278130786],[-71.35451354513545,41.74556431901996],[-71.36531365313652,41.75907293717903],[-71.36531365313652,41.77764728714773],[-71.36891368913689,41.79284448257668],[-71.37971379713797,41.80466452346586],[-71.39051390513904,41.81817314162491],[-71.39411394113941,41.806353100735734],[-71.39771397713977,41.78271301895738],[-71.39411394113941,41.75907293717903],[-71.39051390513904,41.7421871644802],[-71.38331383313833,41.73543285540066],[-71.3761137611376,41.73036712359102],[-71.36891368913689,41.72361281451148],[-71.36531365313652,41.71179277362231],[-71.36531365313652,41.70334988727289],[-71.37971379713797,41.6830869600343],[-71.38331383313833,41.67464407368489],[-71.39051390513904,41.6830869600343],[-71.39771397713977,41.68984126911383],[-71.40851408514085,41.69321842365359],[-71.41931419314193,41.69490700092348],[-71.430114301143,41.691529846383716],[-71.44091440914409,41.684775537304176],[-71.44811448114481,41.67802122822465],[-71.4229142291423,41.66788976460536],[-71.4121141211412,41.65269256917641],[-71.40851408514085,41.63242964193782],[-71.4121141211412,41.61216671469923],[-71.4229142291423,41.59359236473051],[-71.43731437314372,41.5851494783811],[-71.44451444514445,41.57501801476181],[-71.430114301143,41.55475508752322],[-71.4229142291423,41.539557892094265],[-71.4229142291423,41.48721199672791],[-71.42651426514264,41.46863764675919],[-71.45531455314553,41.40616028777353],[-71.46971469714697,41.39096309234459],[-71.48411484114841,41.379143051455415],[-71.48771487714876,41.370700165106],[-71.49851498514985,41.36563443329635],[-71.50931509315093,41.36732301056624],[-71.53091530915309,41.37576589691565],[-71.55611556115561,41.374077319645764],[-71.59931599315993,41.36732301056624],[-71.7541175411754,41.331862887898694],[-71.82971829718296,41.316665692469755],[-71.87291872918729,41.30315707431069],[-71.87651876518765,41.311599960660104],[-71.85491854918548,41.321731424279406],[-71.86211862118621,41.331862887898694],[-71.87291872918729,41.338617196978234],[-71.88371883718837,41.34537150605776],[-71.89811898118981,41.34706008332765],[-71.96291962919629,41.34537150605776],[-71.97371973719737,41.343682928787885],[-72.03492034920349,41.31835426973964],[-72.08172081720816,41.352125815137285],[-72.0961209612096,41.34537150605776],[-72.09972099720997,41.321731424279406],[-72.11052110521105,41.311599960660104],[-72.13572135721357,41.311599960660104],[-72.1681216812168,41.321731424279406],[-72.19332193321932,41.32342000154928],[-72.20052200522005,41.29809134250104],[-72.22572225722257,41.30991138339023],[-72.28692286922869,41.2828941470721],[-72.31932319323192,41.2930256106914],[-72.32652326523265,41.29809134250104],[-72.3409234092341,41.30315707431069],[-72.34812348123481,41.30653422885045],[-72.35172351723517,41.314977115199866],[-72.34812348123481,41.321731424279406],[-72.34452344523444,41.32848573335893],[-72.34452344523444,41.338617196978234],[-72.34812348123481,41.34874866059752],[-72.35892358923589,41.357191546946936],[-72.37332373323733,41.363945856026476],[-72.39132391323913,41.36563443329635],[-72.38052380523804,41.35043723786741],[-72.36252362523625,41.336928619708345],[-72.35532355323552,41.321731424279406],[-72.36612366123661,41.29809134250104],[-72.35532355323552,41.29133703342151],[-72.35172351723517,41.28964845615164],[-72.36972369723696,41.276139837992574],[-72.39132391323913,41.27782841526245],[-72.43452434524345,41.28964845615164],[-72.45252452524525,41.28795987888175],[-72.47412474124741,41.281205569802225],[-72.49572495724956,41.27107410618292],[-72.50652506525064,41.25587691075398],[-72.51372513725137,41.26094264256362],[-72.51732517325173,41.26263121983351],[-72.52092520925208,41.2643197971034],[-72.52092520925208,41.269385528913034],[-72.52812528125281,41.269385528913034],[-72.53892538925389,41.2643197971034],[-72.5821258212582,41.279516992532336],[-72.60372603726037,41.28458272434199],[-72.66132661326613,41.274451260722685],[-72.6721267212672,41.26769695164316],[-72.67932679326793,41.26094264256362],[-72.68652686526865,41.25587691075398],[-72.70092700927009,41.25587691075398],[-72.7081270812708,41.26094264256362],[-72.7189271892719,41.26600837437327],[-72.72612726127261,41.269385528913034],[-72.74052740527405,41.27276268345281],[-72.78012780127801,41.269385528913034],[-72.79092790927909,41.26769695164316],[-72.80532805328053,41.25756548802386],[-72.81252812528125,41.259254065293746],[-72.82692826928269,41.25587691075398],[-72.84132841328413,41.259254065293746],[-72.85572855728557,41.24574544713468],[-72.89172891728917,41.24574544713468],[-72.89532895328954,41.25587691075398],[-72.89532895328954,41.26600837437327],[-72.90252902529025,41.27782841526245],[-72.90612906129061,41.29977991977093],[-72.90972909729096,41.30484565158058],[-72.92052920529206,41.29809134250104],[-72.92772927729277,41.28964845615164],[-72.93132931329313,41.28458272434199],[-72.96732967329673,41.25587691075398],[-72.99252992529925,41.22885967443585],[-73.00333003330033,41.22210536535633],[-73.01413014130141,41.206908169927374],[-73.03933039330393,41.2052195926575],[-73.05373053730537,41.211973901737025],[-73.06453064530645,41.2052195926575],[-73.0861308613086,41.196776706308086],[-73.09333093330933,41.191710974498434],[-73.10413104131041,41.17989093360926],[-73.10773107731077,41.17482520179961],[-73.11133111331112,41.16131658364054],[-73.10773107731077,41.149496542751365],[-73.1329313293133,41.14780796548149],[-73.15453154531545,41.15962800637067],[-73.16533165331653,41.16469373818032],[-73.16893168931689,41.169759469989955],[-73.18333183331833,41.17482520179961],[-73.18333183331833,41.16131658364054],[-73.20853208532085,41.156250851830904],[-73.21573215732157,41.16300516091043],[-73.21933219332193,41.16638231545019],[-73.22653226532265,41.16300516091043],[-73.2229322293223,41.149496542751365],[-73.22653226532265,41.14274223367184],[-73.23373233732337,41.1359879245923],[-73.24453244532445,41.127545038242886],[-73.26253262532624,41.12079072916336],[-73.26973269732697,41.1174135746236],[-73.27693276932769,41.129233615512774],[-73.28773287732876,41.134299347322425],[-73.29493294932949,41.12247930643325],[-73.3021330213302,41.1174135746236],[-73.31653316533165,41.11572499735371],[-73.33093330933309,41.114036420083835],[-73.34893348933488,41.107282111004295],[-73.36333363333632,41.10559353373442],[-73.37053370533705,41.10221637919466],[-73.38133381333813,41.10052780192477],[-73.42453424534244,41.076887720146416],[-73.43893438934388,41.07351056560664],[-73.47493474934748,41.05493621563794],[-73.48573485734858,41.05324763836805],[-73.50373503735037,41.04311617474876],[-73.52173521735217,41.02116467024028],[-73.53613536135362,41.031296133859584],[-73.5469354693547,41.029607556589696],[-73.56493564935649,41.01947609297039],[-73.590135901359,41.014410361160756],[-73.59733597335973,41.02285324751017],[-73.60453604536045,41.02285324751017],[-73.61173611736118,41.01103320662099],[-73.61893618936189,41.009344629351105],[-73.63333633336333,41.00765605208122],[-73.64053640536405,41.00259032027158],[-73.65133651336512,40.99583601119204],[-73.64773647736477,40.99245885665228],[-73.65493654936549,40.982327393032975],[-73.6729367293673,40.95868731125462],[-73.67653676536764,40.95531015671486],[-73.69813698136981,40.95531015671486],[-73.71253712537126,40.95362157944497],[-73.71973719737197,40.946867270365445],[-73.7629376293763,40.909718570428026],[-73.77733777337772,40.89452137499909],[-73.78453784537845,40.87594702503037],[-73.78813788137882,40.87256987049061],[-73.7989379893799,40.87256987049061],[-73.81333813338134,40.87088129322072],[-73.81693816938169,40.862438406871306],[-73.82053820538205,40.83879832509295],[-73.80613806138061,40.826978284203776],[-73.7989379893799,40.81346966604471],[-73.83133831338313,40.81009251150495],[-73.86733867338673,40.81178108877482],[-73.89253892538925,40.80333820242541],[-73.92853928539284,40.8050267796953],[-73.93213932139321,40.81853539785436],[-73.93213932139321,40.82528970693389],[-73.9249392493925,40.83542117055319],[-73.91413914139142,40.857372675061654],[-73.91053910539105,40.869192715950845],[-73.91413914139142,40.88101275684002],[-73.92133921339213,40.88607848864967],[-73.89973899738997,40.92998149766662],[-73.8889388893889,40.97219592941369],[-73.87453874538745,41.01272178389087],[-73.87093870938709,41.03298471112946],[-73.87093870938709,41.11572499735371],[-73.87453874538745,41.15287369729113],[-73.88533885338853,41.18833381995867],[-73.89613896138961,41.20353101538761],[-73.90693906939069,41.21366247900691],[-73.93933939339394,41.23561398351539],[-73.95733957339573,41.25756548802386],[-73.95373953739536,41.274451260722685],[-73.94653946539465,41.29133703342151],[-73.94653946539465,41.311599960660104],[-73.96453964539646,41.29977991977093],[-73.97533975339753,41.2930256106914],[-73.98253982539825,41.28458272434199],[-73.98613986139861,41.269385528913034],[-73.98253982539825,41.26094264256362],[-73.97893978939788,41.252499756214206],[-73.97173971739717,41.218728210816565],[-73.96453964539646,41.2052195926575],[-73.95373953739536,41.190022397228546],[-73.93213932139321,41.17820235633937],[-73.91773917739177,41.16300516091043],[-73.91773917739177,41.1461193882116],[-73.92133921339213,41.10221637919466],[-73.90693906939069,41.01609893843063],[-73.90693906939069,40.99077027938239],[-73.90693906939069,40.97219592941369],[-73.91773917739177,40.931670074936505],[-73.95373953739536,40.85906125233154],[-73.99333993339933,40.79827247061577],[-74.00774007740077,40.78138669791694],[-74.0149401494015,40.76618950248799],[-74.01854018540185,40.75099230705905],[-74.02214022140221,40.742549420709636],[-74.02934029340292,40.7273522252807],[-74.03294032940329,40.71384360712163],[-74.04734047340473,40.70033498896257],[-74.07254072540725,40.6868263708035],[-74.09054090540906,40.66994059810469],[-74.09774097740977,40.654743402675734],[-74.11214112141121,40.64967767086608],[-74.130141301413,40.644611939056446],[-74.1409414094141,40.64630051632632],[-74.13734137341373,40.6581205572155],[-74.10494104941048,40.70540072077222],[-74.11214112141121,40.717220761661395],[-74.12654126541265,40.70371214350233],[-74.13374133741337,40.69189210261315],[-74.1409414094141,40.67669490718421],[-74.15174151741518,40.66487486629504],[-74.16254162541625,40.66318628902515],[-74.18054180541804,40.65305482540586],[-74.19134191341914,40.64967767086608],[-74.20934209342093,40.634480475437144],[-74.21654216542166,40.592266043690074],[-74.22014220142201,40.572003116451484],[-74.23454234542345,40.56693738464183],[-74.24894248942489,40.56356023010207],[-74.25974259742597,40.55174018921289],[-74.25974259742597,40.536542993783954],[-74.26334263342633,40.512902912005586],[-74.27054270542705,40.50446002565617],[-74.28134281342813,40.49770571657665],[-74.27054270542705,40.48250852114771],[-74.2561425614256,40.46055701663923],[-74.22014220142201,40.452114130289814],[-74.20574205742057,40.4436712439404],[-74.19854198541985,40.44029408940064],[-74.14454144541445,40.44704839848016],[-74.11934119341193,40.44535982121029],[-74.03294032940329,40.42171973943192],[-73.99333993339933,40.40314538946322],[-73.98973989739898,40.408211121272856],[-73.99693996939969,40.42171973943192],[-73.99693996939969,40.44029408940064],[-74.01854018540185,40.48081994387782],[-73.98973989739898,40.46899990298864],[-73.97893978939788,40.44873697575005],[-73.97533975339753,40.42847404851146],[-73.97173971739717,40.394702503113805],[-73.97173971739717,40.327159412318494],[-73.97893978939788,40.27987924876177],[-73.99333993339933,40.227533353395415],[-74.01134011340113,40.166744571679644],[-74.01854018540185,40.1414159126314],[-74.02574025740257,40.11102152177351],[-74.02934029340292,40.07893855364574],[-74.03654036540365,40.04854416278785],[-74.04014040140402,40.02828123554926],[-74.04734047340473,39.997886844691365],[-74.05814058140581,39.95398383567442],[-74.06174061740617,39.93372090843583],[-74.06894068940689,39.90332651757794],[-74.07254072540725,39.87462070398993],[-74.0941409414094,39.77668322233673],[-74.10134101341013,39.78343753141627],[-74.07974079740796,39.92358944481653],[-74.07254072540725,39.97255818564312],[-74.06534065340654,39.992821112881714],[-74.05814058140581,40.01139546285043],[-74.0509405094051,40.035035544628784],[-74.0509405094051,40.055298471867374],[-74.06174061740617,40.062052780946914],[-74.07974079740796,40.05192131732761],[-74.07974079740796,40.0434784309782],[-74.06534065340654,40.04178985370832],[-74.06174061740617,40.02996981281913],[-74.07614076140761,40.024904081009495],[-74.08334083340833,40.01139546285043],[-74.10494104941048,40.01477261739019],[-74.10854108541085,40.002952576501016],[-74.12294122941229,39.997886844691365],[-74.12654126541265,39.98100107199254],[-74.10494104941048,39.98606680380219],[-74.10134101341013,39.97086960837325],[-74.11214112141121,39.94891810386477],[-74.13374133741337,39.93372090843583],[-74.11214112141121,39.930343753896054],[-74.10854108541085,39.92190086754664],[-74.12654126541265,39.9067036721177],[-74.13734137341373,39.89150647668876],[-74.13374133741337,39.872932126720045],[-74.12654126541265,39.85604635402122],[-74.12654126541265,39.84929204494169],[-74.14454144541445,39.830717694972975],[-74.16614166141662,39.80707761319462],[-74.18774187741877,39.77161749052709],[-74.19134191341914,39.74460025420896],[-74.16254162541625,39.73446879058967],[-74.16254162541625,39.72096017243061],[-74.16614166141662,39.70407439973178],[-74.16614166141662,39.69900866792213],[-74.18054180541804,39.692254358842604],[-74.19854198541985,39.675368586143776],[-74.20934209342093,39.65172850436541],[-74.24534245342453,39.643285618015994],[-74.25254252542526,39.63146557712682],[-74.24894248942489,39.62133411350753],[-74.2561425614256,39.61120264988823],[-74.27774277742778,39.607825495348465],[-74.29214292142922,39.6044483408087],[-74.30654306543065,39.5943168771894],[-74.32814328143282,39.5757425272207],[-74.32814328143282,39.56223390906163],[-74.3029430294303,39.54197098182304],[-74.28854288542885,39.523396631854325],[-74.29574295742957,39.508199436425386],[-74.31014310143101,39.5065108591555],[-74.31734317343174,39.51495374550491],[-74.31734317343174,39.525085209124214],[-74.32094320943209,39.530150940933865],[-74.36054360543605,39.550413868172456],[-74.37494374943749,39.543659559092916],[-74.38574385743857,39.543659559092916],[-74.39654396543965,39.550413868172456],[-74.40734407344073,39.55716817725198],[-74.40734407344073,39.52001947731456],[-74.40014400144001,39.503133704615735],[-74.38934389343893,39.49469081826632],[-74.37854378543786,39.487936509186795],[-74.3821438214382,39.47105073648797],[-74.39654396543965,39.447410654709614],[-74.41094410944109,39.45078780924938],[-74.42174421744217,39.45585354105903],[-74.43254432544325,39.45585354105903],[-74.44694446944469,39.447410654709614],[-74.45414454144542,39.4389677683602],[-74.46134461344613,39.42714772747101],[-74.46854468544684,39.41195053204207],[-74.46854468544684,39.40013049115289],[-74.45054450544505,39.40688480023242],[-74.43614436144361,39.39506475934324],[-74.42174421744217,39.37480183210465],[-74.41454414544145,39.357916059405824],[-74.44334443344432,39.347784595786536],[-74.50454504545046,39.31739020492864],[-74.52974529745298,39.3106358958491],[-74.52974529745298,39.315701627658754],[-74.52254522545225,39.33089882308771],[-74.5081450814508,39.342718863976884],[-74.48294482944829,39.36467036848535],[-74.5081450814508,39.378178986644414],[-74.5441454414544,39.347784595786536],[-74.5549455494555,39.32921024581782],[-74.55134551345513,39.315701627658754],[-74.55134551345513,39.3106358958491],[-74.61614616146161,39.31232447311899],[-74.64134641346413,39.30725874130934],[-74.65934659346593,39.28868439134064],[-74.64134641346413,39.28868439134064],[-74.63054630546306,39.28361865953099],[-74.61974619746196,39.278552927721336],[-74.60534605346054,39.27517577318157],[-74.55134551345513,39.28868439134064],[-74.55134551345513,39.2819300822611],[-74.58014580145802,39.26842146410205],[-74.61974619746196,39.222829877815215],[-74.64134641346413,39.2143869914658],[-74.65574655746558,39.200878373306736],[-74.70254702547025,39.12489239616201],[-74.71334713347133,39.131646705241536],[-74.72414724147241,39.131646705241536],[-74.73494734947349,39.12826955070177],[-74.74214742147421,39.118138087082485],[-74.73854738547385,39.118138087082485],[-74.73494734947349,39.1164495098126],[-74.73854738547385,39.11476093254272],[-74.73494734947349,39.111383778002946],[-74.72414724147241,39.1164495098126],[-74.7169471694717,39.11476093254272],[-74.70974709747097,39.10800662346318],[-74.70974709747097,39.097875159843895],[-74.71334713347133,39.091120850764355],[-74.73854738547385,39.070857923525764],[-74.74574745747456,39.05397215082694],[-74.75294752947529,39.048906419017285],[-74.76374763747637,39.04384068720765],[-74.78894788947889,39.038774955398],[-74.78894788947889,39.03202064631846],[-74.78534785347853,39.02188918269917],[-74.78174781747818,39.015134873619644],[-74.80334803348033,38.988117637301514],[-74.83574835748357,38.96278897825327],[-74.87534875348753,38.94421462828457],[-74.9329493294933,38.92564027831585],[-74.94374943749438,38.923951701045965],[-74.95454954549545,38.92564027831585],[-74.9689496894969,38.935771741935156],[-74.9689496894969,38.945903205554444],[-74.96534965349653,38.95772324644362],[-74.96174961749617,38.9695432873328],[-74.95814958149582,38.988117637301514],[-74.95094950949509,39.008380564540104],[-74.94374943749438,39.02526633723893],[-74.89334893348934,39.10800662346318],[-74.8861488614886,39.14684390067049],[-74.90774907749078,39.17892686879826],[-74.9221492214922,39.18905833241756],[-74.94014940149401,39.19243548695732],[-74.97974979749797,39.194124064227196],[-74.98694986949869,39.19243548695732],[-75.0049500495005,39.18736975514767],[-75.01215012150121,39.18736975514767],[-75.02295022950229,39.18905833241756],[-75.02295022950229,39.194124064227196],[-75.02295022950229,39.20256695057661],[-75.02655026550265,39.211009836926024],[-75.04095040950409,39.2143869914658],[-75.06255062550625,39.21269841419591],[-75.09135091350913,39.20763268238626],[-75.10575105751057,39.200878373306736],[-75.11655116551165,39.19243548695732],[-75.12735127351273,39.18736975514767],[-75.14535145351454,39.18736975514767],[-75.14535145351454,39.190746909687434],[-75.15975159751598,39.19918979603685],[-75.16695166951669,39.20763268238626],[-75.17055170551706,39.216075568735675],[-75.16695166951669,39.22789560962485],[-75.16695166951669,39.23464991870439],[-75.1741517415174,39.24140422778392],[-75.21015210152102,39.26504430956227],[-75.22455224552245,39.26842146410205],[-75.23535235352354,39.273487195911684],[-75.24255242552425,39.2920615458804],[-75.24975249752497,39.29712727769005],[-75.28575285752858,39.29712727769005],[-75.30375303753037,39.30388158676958],[-75.31455314553145,39.31739020492864],[-75.32175321753218,39.33427597762747],[-75.33255332553325,39.34440744124676],[-75.33975339753397,39.34440744124676],[-75.3469534695347,39.342718863976884],[-75.35415354153541,39.33934170943712],[-75.35775357753577,39.33765313216723],[-75.36855368553685,39.342718863976884],[-75.37215372153722,39.347784595786536],[-75.37575375753757,39.35285032759617],[-75.47655476554765,39.440656345630074],[-75.5089550895509,39.4575421183289],[-75.53055530555305,39.47780504556749],[-75.54135541355413,39.508199436425386],[-75.53775537755376,39.503133704615735],[-75.53055530555305,39.49806797280608],[-75.52335523355234,39.49469081826632],[-75.51975519755197,39.51326516823504],[-75.5089550895509,39.55885675452187],[-75.51255512555124,39.57405394995081],[-75.54855548555486,39.60107118626894],[-75.55935559355594,39.612891227158116],[-75.55575555755557,39.62133411350753],[-75.53415534155342,39.63821988620636],[-75.51615516155161,39.648351349825646],[-75.5089550895509,39.6534170816353],[-75.50535505355053,39.66185996798471],[-75.50535505355053,39.675368586143776],[-75.50175501755017,39.68887720430283],[-75.48735487354872,39.69732009065224],[-75.48375483754837,39.70407439973178],[-75.47655476554765,39.710828708811306],[-75.46575465754657,39.71420586335107],[-75.4621546215462,39.71927159516072],[-75.4621546215462,39.747977408748724],[-75.44055440554405,39.77668322233673],[-75.40455404554045,39.80370045865486],[-75.36855368553685,39.82396338589345],[-75.3109531095311,39.842537735862166],[-75.26775267752677,39.850980622211566],[-75.24615246152462,39.852669199481454],[-75.22815228152281,39.85435777675134],[-75.19215192151921,39.86786639491039],[-75.17055170551706,39.872932126720045],[-75.16695166951669,39.872932126720045],[-75.15975159751598,39.877997858529696],[-75.14535145351454,39.87462070398993],[-75.1309513095131,39.88306359033935],[-75.11655116551165,39.89657220849841],[-75.09855098550985,39.9067036721177],[-75.11295112951129,39.92190086754664],[-75.12015120151202,39.940475217515356],[-75.11655116551165,39.95229525840453],[-75.09855098550985,39.94722952659488],[-75.08415084150842,39.96073814475395],[-75.08055080550805,39.95398383567442],[-75.04095040950409,40.002952576501016],[-75.02295022950229,40.01646119466008],[-75.0481504815048,40.00970688558054],[-75.08055080550805,39.98606680380219],[-75.10215102151021,39.98100107199254],[-75.12015120151202,39.97424676291301],[-75.13455134551346,39.955672412944296],[-75.13815138151381,39.93372090843583],[-75.13455134551346,39.913457981197226],[-75.14895148951489,39.90332651757794],[-75.20655206552065,39.88475216760922],[-75.24975249752497,39.86786639491039],[-75.27135271352714,39.86448924037063],[-75.29655296552966,39.87124354945017],[-75.35775357753577,39.8476034676718],[-75.37575375753757,39.84422631313204],[-75.39015390153901,39.83916058132239],[-75.4261542615426,39.80370045865486],[-75.4621546215462,39.78512610868614],[-75.47655476554765,39.77161749052709],[-75.48735487354872,39.7310916360499],[-75.50175501755017,39.71420586335107],[-75.5449554495545,39.670302854334125],[-75.5521555215552,39.66692569979436],[-75.5881558815588,39.65679423617506],[-75.59175591755917,39.650039927095534],[-75.59535595355953,39.63821988620636],[-75.60255602556025,39.628088422587055],[-75.60615606156061,39.61626838169788],[-75.60255602556025,39.607825495348465],[-75.57375573755738,39.585873990839985],[-75.56655566555665,39.57743110449057],[-75.55575555755557,39.55885675452187],[-75.55575555755557,39.54197098182304],[-75.56295562955628,39.523396631854325],[-75.57375573755738,39.50482228188562],[-75.58455584555846,39.482870777377144],[-75.5881558815588,39.46260785013855],[-75.57015570155701,39.440656345630074],[-75.5521555215552,39.425459150201135],[-75.52695526955269,39.403507645692656],[-75.49095490954909,39.35285032759617],[-75.48735487354872,39.347784595786536],[-75.48375483754837,39.34440744124676],[-75.45855458554585,39.32752166854793],[-75.43335433354333,39.315701627658754],[-75.42975429754297,39.2920615458804],[-75.40815408154081,39.27011004137192],[-75.39735397353974,39.24984711413333],[-75.39375393753937,39.22451845508509],[-75.40455404554045,39.17217255971873],[-75.40455404554045,39.15190963248014],[-75.40455404554045,39.12995812797166],[-75.40095400954009,39.1164495098126],[-75.39735397353974,39.10294089165353],[-75.40095400954009,39.07761223260529],[-75.39375393753937,39.055660728096825],[-75.36855368553685,39.04046353266787],[-75.34335343353433,39.02020060542928],[-75.31455314553145,38.98474048276175],[-75.3109531095311,38.96785471006292],[-75.3109531095311,38.94928036009421],[-75.3109531095311,38.92732885558574],[-75.29655296552966,38.91382023742668],[-75.24615246152462,38.85978576479043],[-75.19575195751958,38.81588275577347],[-75.16695166951669,38.79393125126501],[-75.1309513095131,38.78211121037583],[-75.09855098550985,38.788865519455356],[-75.0949509495095,38.79730840580477],[-75.09855098550985,38.805751292154184],[-75.09135091350913,38.80743986942406],[-75.08415084150842,38.79561982853488],[-75.06615066150661,38.6774194196431],[-75.06615066150661,38.63182783335627],[-75.07335073350733,38.638582142435794],[-75.07695076950769,38.685862305992515],[-75.08775087750877,38.69261661507204],[-75.12015120151202,38.68417372872263],[-75.13815138151381,38.68755088326239],[-75.12015120151202,38.658845069674385],[-75.13455134551346,38.66053364694427],[-75.13815138151381,38.66222222421415],[-75.14535145351454,38.66222222421415],[-75.14895148951489,38.66053364694427],[-75.15255152551525,38.658845069674385],[-75.14175141751417,38.65040218332497],[-75.1309513095131,38.643647874245445],[-75.11655116551165,38.638582142435794],[-75.09855098550985,38.638582142435794],[-75.12015120151202,38.621696369736966],[-75.18855188551885,38.60649917430803],[-75.20655206552065,38.5896134016092],[-75.18855188551885,38.5896134016092],[-75.19215192151921,38.58285909252966],[-75.19575195751958,38.576104783450134],[-75.20295202952029,38.57272762891037],[-75.20655206552065,38.56935047437061],[-75.19215192151921,38.56766189710072],[-75.15255152551525,38.58792482433931],[-75.12735127351273,38.5896134016092],[-75.12015120151202,38.58454766979955],[-75.11295112951129,38.574416206180246],[-75.10215102151021,38.565973319830846],[-75.0949509495095,38.565973319830846],[-75.07695076950769,38.586236247069436],[-75.06975069750698,38.59299055614896],[-75.06975069750698,38.6081877515779],[-75.06615066150661,38.61494206065744],[-75.0589505895059,38.61325348338755],[-75.0589505895059,38.60481059703814],[-75.05535055350553,38.586236247069436],[-75.0589505895059,38.55246470167178],[-75.05175051750517,38.52713604262354],[-75.05175051750517,38.498430229035534],[-75.0481504815048,38.476478724527055],[-75.04455044550446,38.454527220018576],[-75.04455044550446,38.4528386427487],[-75.04455044550446,38.42582140643057],[-75.05175051750517,38.38698412922328],[-75.06615066150661,38.35321258382562],[-75.08055080550805,38.336326811126796],[-75.07695076950769,38.366721201984674],[-75.0589505895059,38.42244425189081],[-75.0589505895059,38.4528386427487],[-75.0589505895059,38.454527220018576],[-75.06255062550625,38.45790437455835],[-75.06975069750698,38.45959295182823],[-75.07695076950769,38.461281529098116],[-75.08415084150842,38.461281529098116],[-75.08415084150842,38.4528386427487],[-75.08415084150842,38.44777291093905],[-75.09135091350913,38.43257571551011],[-75.10215102151021,38.43933002458964],[-75.11655116551165,38.43764144731975],[-75.09855098550985,38.40724705646187],[-75.10575105751057,38.39542701557269],[-75.11295112951129,38.398804170112456],[-75.12735127351273,38.40555847919198],[-75.14895148951489,38.414001365541395],[-75.16695166951669,38.41737852008116],[-75.17775177751777,38.408935633731744],[-75.13815138151381,38.398804170112456],[-75.1309513095131,38.393738438302805],[-75.13455134551346,38.38529555195339],[-75.13455134551346,38.37685266560398],[-75.12735127351273,38.37685266560398],[-75.12735127351273,38.371786933794326],[-75.1309513095131,38.37009835652445],[-75.13455134551346,38.366721201984674],[-75.13815138151381,38.36334404744491],[-75.12375123751237,38.35996689290515],[-75.11295112951129,38.36165547017504],[-75.10215102151021,38.36165547017504],[-75.09135091350913,38.351524006555735],[-75.0949509495095,38.33463823385691],[-75.10575105751057,38.316063883888205],[-75.11655116551165,38.29748953391949],[-75.1309513095131,38.28566949303031],[-75.15255152551525,38.24007790674348],[-75.16335163351633,38.233323597663954],[-75.19575195751958,38.233323597663954],[-75.19935199351993,38.24007790674348],[-75.18855188551885,38.26202941125196],[-75.2209522095221,38.246832215823005],[-75.23175231752317,38.23838932947359],[-75.24255242552425,38.226569288584415],[-75.2569525695257,38.16746908413852],[-75.26775267752677,38.1590261977891],[-75.27135271352714,38.15227188870958],[-75.28215282152821,38.12018892058181],[-75.28935289352893,38.11005745696251],[-75.29655296552966,38.11005745696251],[-75.31455314553145,38.11681176604205],[-75.32535325353253,38.11681176604205],[-75.33255332553325,38.1117460342324],[-75.35055350553505,38.09486026153357],[-75.35775357753577,38.08979452972392],[-75.35055350553505,38.081351643374504],[-75.37215372153722,38.03238290254791],[-75.37575375753757,38.023940016198495],[-75.37935379353793,38.01211997530932],[-75.39015390153901,38.001988511690016],[-75.40815408154081,37.996922779880364],[-75.42255422554226,37.98847989353095],[-75.4261542615426,37.976659852641774],[-75.43335433354333,37.961462657212834],[-75.43335433354333,37.95133119359353],[-75.41895418954189,37.94288830724412],[-75.4261542615426,37.93613399816459],[-75.4369543695437,37.934445420894704],[-75.43335433354333,37.92600253454529],[-75.41895418954189,37.919248225465765],[-75.42255422554226,37.914182493656114],[-75.44055440554405,37.9057396073067],[-75.44775447754478,37.89391956641752],[-75.44415444154441,37.88885383460787],[-75.4261542615426,37.89223098914765],[-75.41535415354153,37.88547668006811],[-75.4261542615426,37.87534521644882],[-75.44775447754478,37.86690233009941],[-75.46935469354693,37.85170513467045],[-75.49095490954909,37.83144220743186],[-75.51255512555124,37.80780212565351],[-75.53055530555305,37.78753919841492],[-75.55935559355594,37.74363618939796],[-75.5989559895599,37.69973318038102],[-75.62775627756277,37.674404521332775],[-75.65295652956529,37.64232155320501],[-75.70695706957069,37.57984419421935],[-75.71775717757177,37.55958126698076],[-75.73215732157321,37.53594118520239],[-75.74655746557465,37.52412114431321],[-75.7609576095761,37.507235371614385],[-75.77175771757717,37.49034959891556],[-75.78255782557825,37.48359528983603],[-75.78975789757897,37.47515240348662],[-75.81135811358114,37.46164378532755],[-75.81855818558185,37.45488947624803],[-75.81135811358114,37.44306943535885],[-75.81495814958149,37.43631512627931],[-75.82215822158221,37.4278722399299],[-75.82215822158221,37.41942935358048],[-75.80775807758077,37.41436362177083],[-75.7969579695797,37.40592073542143],[-75.80055800558006,37.40085500361178],[-75.81135811358114,37.39916642634189],[-75.81855818558185,37.39241211726237],[-75.82935829358293,37.39072353999248],[-75.83655836558366,37.39578927180213],[-75.85455854558545,37.39747784907202],[-75.87615876158762,37.368772035484],[-75.8869588695887,37.35695199459482],[-75.90135901359014,37.324869026467056],[-75.91215912159122,37.2910974810694],[-75.9229592295923,37.24381731751268],[-75.92655926559266,37.21173434938491],[-75.93375933759337,37.17289707217762],[-75.93375933759337,37.157699876748666],[-75.93735937359374,37.13574837224019],[-75.94815948159481,37.1256169086209],[-75.9661596615966,37.13405979497031],[-75.9769597695977,37.16107703128843],[-76.00216002160022,37.194848576686084],[-76.00216002160022,37.220177235734326],[-75.99495994959949,37.23368585389339],[-75.99495994959949,37.24044016297292],[-76.01656016560165,37.257325935671744],[-76.01656016560165,37.28096601745011],[-75.99855998559985,37.30291752195858],[-75.98415984159841,37.31642614011764],[-75.99495994959949,37.319803294657405],[-76.00216002160022,37.319803294657405],[-76.00936009360093,37.31642614011764],[-75.99135991359913,37.35357484005506],[-75.98415984159841,37.37214919002378],[-75.99135991359913,37.38396923091295],[-75.97335973359733,37.39072353999248],[-75.96255962559626,37.402543580881655],[-75.95535955359553,37.41605219904072],[-75.95535955359553,37.42618366266002],[-75.95535955359553,37.424495085390134],[-75.96255962559626,37.42618366266002],[-75.9661596615966,37.424495085390134],[-75.96975969759697,37.41774077631061],[-75.9769597695977,37.41774077631061],[-75.97335973359733,37.43462654900944],[-75.9661596615966,37.45320089897814],[-75.95535955359553,37.466709517137204],[-75.92655926559266,37.47852955802638],[-75.9229592295923,37.48866102164568],[-75.93375933759337,37.49541533072521],[-75.95535955359553,37.486972444375795],[-75.95175951759518,37.5156782579638],[-75.93735937359374,37.53762976247228],[-75.91575915759157,37.55282695790122],[-75.89415894158941,37.56295842152052],[-75.93375933759337,37.57646703967957],[-75.9229592295923,37.58659850329887],[-75.91215912159122,37.59504138964829],[-75.90855908559085,37.6034842759977],[-75.9229592295923,37.61023858507723],[-75.90495904959049,37.62037004869653],[-75.88335883358833,37.62374720323629],[-75.87255872558725,37.62881293504594],[-75.8869588695887,37.64401013047488],[-75.87615876158762,37.66089590317371],[-75.86175861758618,37.669338789523124],[-75.840158401584,37.67271594406289],[-75.81855818558185,37.67271594406289],[-75.82575825758258,37.68791313949184],[-75.82215822158221,37.696356025841254],[-75.78975789757897,37.72675041669913],[-75.78975789757897,37.73350472577867],[-75.81135811358114,37.73350472577867],[-75.81135811358114,37.7402590348582],[-75.78975789757897,37.75376765301726],[-75.77895778957789,37.76558769390644],[-75.77895778957789,37.78078488933538],[-75.7969579695797,37.79598208476433],[-75.78615786157862,37.809490702923384],[-75.77535775357754,37.80780212565351],[-75.76455764557645,37.80104781657397],[-75.75375753757537,37.79598208476433],[-75.69615696156961,37.80273639384386],[-75.70335703357033,37.81117928019327],[-75.70695706957069,37.821310743812575],[-75.70695706957069,37.83313078470175],[-75.70335703357033,37.84326224832104],[-75.69615696156961,37.84495082559093],[-75.6709567095671,37.841573671051165],[-75.66015660156602,37.84326224832104],[-75.6709567095671,37.85170513467045],[-75.67455674556746,37.861836598289756],[-75.67455674556746,37.87027948463917],[-75.66735667356673,37.878722370988584],[-75.6709567095671,37.89223098914765],[-75.68895688956889,37.904051030036825],[-75.71775717757177,37.90911676184646],[-75.74295742957429,37.9057396073067],[-75.74295742957429,37.91249391638624],[-75.71775717757177,37.92769111181518],[-75.69615696156961,37.939511152704355],[-75.66015660156602,37.94457688451401],[-75.64575645756457,37.94964261632366],[-75.63135631356313,37.959774079942946],[-75.65295652956529,37.96821696629236],[-75.6709567095671,37.97159412083212],[-75.76455764557645,37.97834842991166],[-75.78615786157862,37.976659852641774],[-75.80775807758077,37.96315123448271],[-75.83655836558366,37.941199729974244],[-75.85815858158581,37.93106826635494],[-75.86535865358653,37.93613399816459],[-75.86895868958689,37.94288830724412],[-75.87255872558725,37.946265461783895],[-75.87615876158762,37.95133119359353],[-75.87255872558725,37.959774079942946],[-75.86895868958689,37.966528389022486],[-75.85815858158581,37.97328269810201],[-75.8509585095851,37.981725584451425],[-75.84375843758437,37.9935456253406],[-75.85455854558545,37.9935456253406],[-75.86175861758618,37.99016847080084],[-75.86895868958689,37.986791316261076],[-75.87255872558725,37.98003700718154],[-75.87975879758797,37.98003700718154],[-75.87975879758797,37.98510273899119],[-75.87975879758797,37.986791316261076],[-75.88335883358833,37.986791316261076],[-75.8869588695887,37.98847989353095],[-75.87975879758797,37.99523420261049],[-75.85815858158581,38.02056286165873],[-75.85455854558545,38.03238290254791],[-75.84735847358473,38.039137211627434],[-75.81855818558185,38.0425143661672],[-75.81135811358114,38.045891520706974],[-75.80055800558006,38.05771156159615],[-75.75735757357573,38.09317168426368],[-75.74295742957429,38.11005745696251],[-75.75735757357573,38.11343461150227],[-75.76815768157681,38.10499172515286],[-75.77895778957789,38.09486026153357],[-75.79335793357933,38.08979452972392],[-75.81855818558185,38.091483106993806],[-75.83295832958329,38.08979452972392],[-75.84375843758437,38.08304022064439],[-75.84735847358473,38.086417375184155],[-75.84735847358473,38.08810595245403],[-75.85455854558545,38.08979452972392],[-75.85455854558545,38.09823741607333],[-75.84375843758437,38.101614570613094],[-75.83295832958329,38.108368879692634],[-75.82215822158221,38.11512318877216],[-75.81855818558185,38.12525465239146],[-75.82575825758258,38.13200896147099],[-75.81495814958149,38.13538611601075],[-75.78615786157862,38.13876327055051],[-75.77535775357754,38.14551757963005],[-75.77895778957789,38.15564904324934],[-75.79335793357933,38.1590261977891],[-75.81135811358114,38.15733762051923],[-75.82575825758258,38.1590261977891],[-75.84735847358473,38.15227188870958],[-75.89415894158941,38.15564904324934],[-75.91575915759157,38.15227188870958],[-75.91935919359193,38.14551757963005],[-75.91935919359193,38.13538611601075],[-75.9229592295923,38.128631806931224],[-75.93015930159301,38.12525465239146],[-75.93735937359374,38.126943229661336],[-75.94095940959409,38.13538611601075],[-75.94095940959409,38.15564904324934],[-75.93015930159301,38.19279774318676],[-75.89775897758977,38.211372093155475],[-75.85455854558545,38.21981497950489],[-75.81855818558185,38.233323597663954],[-75.83295832958329,38.24007790674348],[-75.87975879758797,38.24345506128324],[-75.89775897758977,38.251897947632656],[-75.90495904959049,38.27047229760137],[-75.90135901359014,38.294112379379726],[-75.89055890558905,38.31437530661832],[-75.85815858158581,38.35827831563526],[-75.84735847358473,38.373475511064214],[-75.84375843758437,38.39542701557269],[-75.840158401584,38.40049274738233],[-75.84375843758437,38.40386990192211],[-75.85455854558545,38.40555847919198],[-75.86175861758618,38.40218132465222],[-75.86535865358653,38.392049861032916],[-75.86895868958689,38.38191839741363],[-75.87255872558725,38.371786933794326],[-75.9229592295923,38.32450677023762],[-75.93015930159301,38.316063883888205],[-75.95535955359553,38.25696367944231],[-75.96255962559626,38.248520793092894],[-75.96975969759697,38.253586524902545],[-75.96975969759697,38.26202941125196],[-75.9661596615966,38.27216087487125],[-75.96975969759697,38.28229233849055],[-75.97335973359733,38.2873580703002],[-75.98415984159841,38.2958009566496],[-75.99135991359913,38.304243842999014],[-75.99495994959949,38.31268672934843],[-75.99135991359913,38.32619534750749],[-75.96255962559626,38.336326811126796],[-75.95535955359553,38.351524006555735],[-75.9661596615966,38.373475511064214],[-75.99135991359913,38.36165547017504],[-76.02016020160201,38.33463823385691],[-76.03816038160382,38.309309574808665],[-76.02736027360274,38.304243842999014],[-76.02016020160201,38.294112379379726],[-76.01656016560165,38.28229233849055],[-76.01656016560165,38.267095143061596],[-76.02736027360274,38.241766484013354],[-76.03816038160382,38.233323597663954],[-76.0489604896049,38.24007790674348],[-76.08136081360813,38.283980915760424],[-76.0921609216092,38.29242380210984],[-76.11736117361173,38.29748953391949],[-76.12456124561245,38.304243842999014],[-76.13176131761317,38.32281819296773],[-76.19296192961929,38.38191839741363],[-76.2109621096211,38.392049861032916],[-76.22176221762217,38.3836069746835],[-76.20736207362073,38.33801538839667],[-76.2109621096211,38.316063883888205],[-76.21456214562146,38.316063883888205],[-76.22176221762217,38.34308112020632],[-76.23976239762398,38.36840977925456],[-76.26856268562685,38.40555847919198],[-76.27576275762758,38.41231278827151],[-76.28296282962829,38.42244425189081],[-76.29016290162902,38.434264292779986],[-76.29376293762937,38.456215797288465],[-76.30456304563046,38.46297010636799],[-76.31176311763117,38.46803583817764],[-76.31896318963189,38.47310156998729],[-76.31896318963189,38.49505307449577],[-76.30456304563046,38.5018073835753],[-76.28656286562865,38.50011880630541],[-76.27576275762758,38.491675919955995],[-76.27216272162721,38.46803583817764],[-76.2649626496265,38.46634726090775],[-76.25416254162542,38.47985587906682],[-76.25056250562506,38.50518453811506],[-76.24336243362433,38.520381733544],[-76.22536225362254,38.52882461989341],[-76.20016200162001,38.53557892897295],[-76.18216182161821,38.54233323805248],[-76.18576185761857,38.55246470167178],[-76.17136171361713,38.565973319830846],[-76.1749617496175,38.57779336072002],[-76.17856178561786,38.581170515259785],[-76.18576185761857,38.58285909252966],[-76.18936189361894,38.58285909252966],[-76.20016200162001,38.58454766979955],[-76.2109621096211,38.58285909252966],[-76.21456214562146,38.5794819379899],[-76.21456214562146,38.574416206180246],[-76.2181621816218,38.565973319830846],[-76.2289622896229,38.559219010751306],[-76.24336243362433,38.55753043348143],[-76.27216272162721,38.55584185621154],[-76.28656286562865,38.56259616529107],[-76.27936279362794,38.576104783450134],[-76.25776257762577,38.59805628795861],[-76.25776257762577,38.60481059703814],[-76.26136261362613,38.6081877515779],[-76.26856268562685,38.61156490611768],[-76.27576275762758,38.62507352427673],[-76.23256232562325,38.618319215197204],[-76.21456214562146,38.618319215197204],[-76.20016200162001,38.62000779246709],[-76.1749617496175,38.62845067881649],[-76.16056160561605,38.63182783335627],[-76.1749617496175,38.62000779246709],[-76.18216182161821,38.618319215197204],[-76.17136171361713,38.60987632884779],[-76.16056160561605,38.60481059703814],[-76.14256142561425,38.6081877515779],[-76.11376113761138,38.58792482433931],[-76.0921609216092,38.59299055614896],[-76.05256052560526,38.56766189710072],[-76.0129601296013,38.565973319830846],[-75.99495994959949,38.58285909252966],[-75.98415984159841,38.5896134016092],[-75.96975969759697,38.60649917430803],[-75.9661596615966,38.636893565165906],[-75.95535955359553,38.65209076059486],[-75.95895958959589,38.65546791513462],[-75.96255962559626,38.658845069674385],[-75.96975969759697,38.658845069674385],[-75.99135991359913,38.623384947006855],[-75.99855998559985,38.603122019768264],[-76.02376023760237,38.59299055614896],[-76.05976059760597,38.60649917430803],[-76.07776077760778,38.61494206065744],[-76.10656106561065,38.62507352427673],[-76.0921609216092,38.658845069674385],[-76.10656106561065,38.653779337864734],[-76.12096120961209,38.6487136060551],[-76.13536135361353,38.64533645151532],[-76.15336153361534,38.65209076059486],[-76.15336153361534,38.658845069674385],[-76.14616146161461,38.665599378753924],[-76.12096120961209,38.67573084237321],[-76.10656106561065,38.679107996912975],[-76.10656106561065,38.685862305992515],[-76.12816128161282,38.68417372872263],[-76.14976149761497,38.680796574182864],[-76.16776167761677,38.680796574182864],[-76.1749617496175,38.69430519234193],[-76.16776167761677,38.699370924151566],[-76.16416164161642,38.70781381050098],[-76.16416164161642,38.71794527412028],[-76.16776167761677,38.728076737739585],[-76.17856178561786,38.716256696850394],[-76.18216182161821,38.70274807869134],[-76.18576185761857,38.69092803780215],[-76.20016200162001,38.67573084237321],[-76.20736207362073,38.68755088326239],[-76.22536225362254,38.701059501421454],[-76.23616236162361,38.71456811958052],[-76.2289622896229,38.736519624089],[-76.20016200162001,38.73314246954922],[-76.22176221762217,38.75171681951794],[-76.23256232562325,38.75678255132759],[-76.25416254162542,38.75002824224805],[-76.27216272162721,38.71456811958052],[-76.29016290162902,38.721322428660045],[-76.29736297362973,38.75171681951794],[-76.29016290162902,38.76691401494688],[-76.28656286562865,38.77535690129629],[-76.29376293762937,38.77366832402642],[-76.30816308163081,38.761848283137226],[-76.31176311763117,38.73483104681911],[-76.32616326163262,38.71794527412028],[-76.32616326163262,38.699370924151566],[-76.32256322563225,38.68923946053228],[-76.32616326163262,38.6774194196431],[-76.34056340563406,38.67235368783345],[-76.34776347763477,38.68923946053228],[-76.34416344163441,38.71456811958052],[-76.34056340563406,38.728076737739585],[-76.32976329763298,38.74665108770829],[-76.31176311763117,38.804062714884296],[-76.30816308163081,38.8141941785036],[-76.30456304563046,38.82263706485301],[-76.27576275762758,38.841211414821714],[-76.26136261362613,38.85809718752054],[-76.25416254162542,38.85472003298078],[-76.25776257762577,38.83952283755184],[-76.23976239762398,38.82263706485301],[-76.22176221762217,38.81588275577347],[-76.2109621096211,38.80743986942406],[-76.2109621096211,38.788865519455356],[-76.20016200162001,38.77704547856618],[-76.18216182161821,38.765225437677],[-76.17136171361713,38.75678255132759],[-76.14256142561425,38.768602592216766],[-76.13176131761317,38.77366832402642],[-76.11736117361173,38.785488364915594],[-76.11016110161101,38.80068556034453],[-76.11376113761138,38.81588275577347],[-76.12456124561245,38.80068556034453],[-76.14616146161461,38.790554096725245],[-76.17856178561786,38.785488364915594],[-76.19296192961929,38.8141941785036],[-76.18936189361894,38.846277146631365],[-76.15696156961569,38.85978576479043],[-76.12816128161282,38.866540073869956],[-76.10656106561065,38.87836011475913],[-76.14616146161461,38.8918687329182],[-76.15336153361534,38.89524588745796],[-76.14616146161461,38.91550881469655],[-76.14976149761497,38.92564027831585],[-76.16056160561605,38.92564027831585],[-76.16416164161642,38.9205745465062],[-76.17136171361713,38.89693446472785],[-76.17856178561786,38.8918687329182],[-76.19656196561965,38.87836011475913],[-76.19656196561965,38.91213166015679],[-76.19296192961929,38.929017432855616],[-76.19656196561965,38.935771741935156],[-76.20736207362073,38.94421462828457],[-76.2289622896229,38.952657514633984],[-76.24336243362433,38.950968937364095],[-76.24696246962469,38.950968937364095],[-76.25416254162542,38.94421462828457],[-76.26136261362613,38.935771741935156],[-76.2649626496265,38.93239458739538],[-76.27216272162721,38.92732885558574],[-76.27936279362794,38.92732885558574],[-76.31176311763117,38.923951701045965],[-76.31896318963189,38.92226312377609],[-76.32976329763298,38.91719739196644],[-76.33336333363333,38.90706592834714],[-76.33336333363333,38.89524588745796],[-76.32616326163262,38.88173726929891],[-76.32976329763298,38.86485149660008],[-76.34776347763477,38.85640861025067],[-76.35856358563585,38.846277146631365],[-76.37296372963729,38.841211414821714],[-76.36576365763658,38.89693446472785],[-76.3549635496355,38.94928036009421],[-76.34056340563406,38.97798617368221],[-76.3369633696337,38.98474048276175],[-76.32256322563225,39.00669198727023],[-76.31536315363154,39.028643491778695],[-76.30816308163081,39.03202064631846],[-76.29376293762937,39.02695491450882],[-76.29376293762937,39.008380564540104],[-76.28656286562865,38.9898062145714],[-76.24336243362433,38.9796747509521],[-76.21456214562146,38.97460901914245],[-76.19656196561965,38.9796747509521],[-76.16776167761677,38.99656052365093],[-76.14976149761497,39.008380564540104],[-76.14616146161461,39.028643491778695],[-76.15336153361534,39.033709223588346],[-76.16056160561605,39.04046353266787],[-76.16416164161642,39.04721784174741],[-76.16776167761677,39.0573493053667],[-76.14616146161461,39.060726459906476],[-76.13176131761317,39.06241503717635],[-76.14256142561425,39.06916934625589],[-76.12096120961209,39.09280942803424],[-76.07776077760778,39.12826955070177],[-76.06336063360634,39.14684390067049],[-76.08856088560886,39.138401014321076],[-76.11016110161101,39.1265809734319],[-76.13176131761317,39.118138087082485],[-76.15336153361534,39.12489239616201],[-76.14256142561425,39.131646705241536],[-76.14256142561425,39.138401014321076],[-76.1749617496175,39.12489239616201],[-76.18576185761857,39.09449800530412],[-76.20376203762038,39.08098938714507],[-76.2109621096211,39.05228357355706],[-76.20736207362073,39.03033206904858],[-76.20376203762038,39.015134873619644],[-76.2181621816218,39.013446296349755],[-76.23616236162361,39.02526633723893],[-76.24336243362433,39.033709223588346],[-76.23256232562325,39.05903788263659],[-76.23616236162361,39.097875159843895],[-76.24336243362433,39.1164495098126],[-76.24336243362433,39.1265809734319],[-76.25056250562506,39.133335282511425],[-76.27216272162721,39.15190963248014],[-76.27216272162721,39.16879540517897],[-76.25416254162542,39.18905833241756],[-76.23256232562325,39.23127276416463],[-76.21456214562146,39.26166715502251],[-76.18216182161821,39.28868439134064],[-76.17856178561786,39.30725874130934],[-76.1749617496175,39.315701627658754],[-76.16416164161642,39.32414451400817],[-76.14256142561425,39.32583309127806],[-76.13176131761317,39.33089882308771],[-76.12816128161282,39.33934170943712],[-76.12096120961209,39.35960463667571],[-76.11736117361173,39.36467036848535],[-76.10656106561065,39.37142467756489],[-76.05976059760597,39.369736100295],[-76.02736027360274,39.362981791215475],[-75.99855998559985,39.362981791215475],[-75.93015930159301,39.36467036848535],[-75.8869588695887,39.362981791215475],[-75.86175861758618,39.361293213945586],[-75.840158401584,39.37142467756489],[-75.86535865358653,39.3798675639143],[-75.90495904959049,39.37480183210465],[-76.00576005760057,39.3798675639143],[-76.03456034560345,39.39337618207337],[-76.0129601296013,39.41532768658183],[-75.97335973359733,39.45078780924938],[-75.95175951759518,39.465985004678316],[-75.93375933759337,39.47442789102773],[-75.91215912159122,39.47611646829762],[-75.86535865358653,39.46429642740843],[-75.840158401584,39.460919272868665],[-75.840158401584,39.467673581948205],[-75.86895868958689,39.481182200107256],[-75.88335883358833,39.49300224099645],[-75.89415894158941,39.508199436425386],[-75.86895868958689,39.52001947731456],[-75.8509585095851,39.53859382728328],[-75.840158401584,39.56223390906163],[-75.83295832958329,39.58418541357011],[-75.85455854558545,39.57743110449057],[-75.87255872558725,39.56223390906163],[-75.89055890558905,39.545348136362804],[-75.90495904959049,39.52170805458445],[-75.9661596615966,39.481182200107256],[-76.00216002160022,39.45247638651925],[-75.99855998559985,39.48624793191691],[-75.99135991359913,39.50482228188562],[-75.9661596615966,39.53352809547363],[-75.95535955359553,39.54872529090257],[-75.94815948159481,39.565611063601395],[-75.93375933759337,39.6044483408087],[-75.95175951759518,39.60107118626894],[-75.96255962559626,39.59093972264964],[-75.98055980559805,39.56729964087128],[-76.00936009360093,39.54872529090257],[-76.03816038160382,39.55716817725198],[-76.06336063360634,39.55547959998211],[-76.08136081360813,39.55716817725198],[-76.0921609216092,39.550413868172456],[-76.12096120961209,39.49469081826632],[-76.11016110161101,39.48455935464703],[-76.07416074160741,39.47442789102773],[-76.06336063360634,39.47105073648797],[-76.06696066960669,39.4575421183289],[-76.07416074160741,39.44909923197949],[-76.12096120961209,39.41026195477218],[-76.18216182161821,39.383244718454065],[-76.2109621096211,39.36467036848535],[-76.22536225362254,39.378178986644414],[-76.2289622896229,39.39675333661313],[-76.22176221762217,39.440656345630074],[-76.21456214562146,39.45923069559879],[-76.21456214562146,39.467673581948205],[-76.22176221762217,39.47442789102773],[-76.23256232562325,39.47442789102773],[-76.23976239762398,39.467673581948205],[-76.24696246962469,39.4575421183289],[-76.25416254162542,39.45416496378914],[-76.26856268562685,39.378178986644414],[-76.25416254162542,39.361293213945586],[-76.24696246962469,39.34947317305641],[-76.24696246962469,39.34440744124676],[-76.25416254162542,39.33934170943712],[-76.28296282962829,39.3106358958491],[-76.29016290162902,39.357916059405824],[-76.31176311763117,39.403507645692656],[-76.32616326163262,39.40688480023242],[-76.40176401764018,39.39168760480348],[-76.38736387363873,39.38155614118418],[-76.35856358563585,39.37649040937454],[-76.3369633696337,39.369736100295],[-76.34056340563406,39.3511617503263],[-76.33336333363333,39.3511617503263],[-76.34056340563406,39.341030286706996],[-76.35136351363514,39.33765313216723],[-76.36216362163621,39.33765313216723],[-76.37296372963729,39.33089882308771],[-76.36576365763658,39.31739020492864],[-76.36936369363693,39.31401305038888],[-76.42336423364233,39.32414451400817],[-76.43056430564306,39.31739020492864],[-76.42336423364233,39.305570164039466],[-76.3909639096391,39.27179861864181],[-76.3909639096391,39.26504430956227],[-76.40176401764018,39.25660142321286],[-76.41616416164162,39.263355732292396],[-76.4269642696427,39.273487195911684],[-76.44136441364414,39.29712727769005],[-76.45216452164522,39.30219300949969],[-76.48456484564845,39.3106358958491],[-76.46656466564666,39.28361865953099],[-76.44856448564485,39.25660142321286],[-76.41976419764197,39.238027073244155],[-76.39816398163981,39.238027073244155],[-76.40176401764018,39.22789560962485],[-76.43056430564306,39.20594410511639],[-76.44856448564485,39.194124064227196],[-76.44856448564485,39.20763268238626],[-76.44496444964449,39.217764146005564],[-76.45576455764558,39.21945272327544],[-76.4629646296463,39.2143869914658],[-76.47016470164701,39.20763268238626],[-76.4809648096481,39.20763268238626],[-76.49896498964989,39.20932125965615],[-76.49176491764918,39.22789560962485],[-76.50976509765097,39.236338495974266],[-76.53136531365313,39.24646995959357],[-76.56376563765637,39.26504430956227],[-76.57096570965709,39.273487195911684],[-76.58176581765817,39.26673288683216],[-76.59256592565926,39.263355732292396],[-76.61776617766178,39.26166715502251],[-76.62496624966249,39.259978577752634],[-76.61056610566105,39.25491284594298],[-76.60336603366034,39.24815853686344],[-76.58536585365853,39.24815853686344],[-76.57096570965709,39.24478138232368],[-76.56376563765637,39.23127276416463],[-76.56376563765637,39.216075568735675],[-76.53496534965349,39.211009836926024],[-76.53136531365313,39.2042555278465],[-76.52776527765278,39.190746909687434],[-76.52416524165241,39.18399260060791],[-76.5169651696517,39.17723829152838],[-76.49896498964989,39.16541825063919],[-76.49536495364953,39.16204109609943],[-76.4809648096481,39.16710682790908],[-76.47016470164701,39.155286787019904],[-76.44136441364414,39.13502385978131],[-76.43416434164341,39.131646705241536],[-76.43056430564306,39.10631804619331],[-76.41976419764197,39.08943227349448],[-76.4269642696427,39.07423507806553],[-76.43416434164341,39.067480768986],[-76.44496444964449,39.075923655335416],[-76.44496444964449,39.08943227349448],[-76.45576455764558,39.091120850764355],[-76.47016470164701,39.08267796441494],[-76.47736477364774,39.08098938714507],[-76.49896498964989,39.07930080987518],[-76.51336513365133,39.086055118954704],[-76.52056520565205,39.086055118954704],[-76.5169651696517,39.075923655335416],[-76.49896498964989,39.06916934625589],[-76.47736477364774,39.06410361444624],[-76.43056430564306,39.04552926447752],[-76.40896408964089,39.03708637812811],[-76.39456394563945,39.02526633723893],[-76.39816398163981,39.015134873619644],[-76.41616416164162,39.01006914180999],[-76.43776437764377,39.008380564540104],[-76.44496444964449,39.00500341000034],[-76.45576455764558,38.988117637301514],[-76.47376473764737,38.99487194638104],[-76.51336513365133,39.02188918269917],[-76.52416524165241,39.04552926447752],[-76.53856538565385,39.06410361444624],[-76.5529655296553,39.07761223260529],[-76.56376563765637,39.07423507806553],[-76.56736567365674,39.06579219171611],[-76.56736567365674,39.055660728096825],[-76.57096570965709,39.038774955398],[-76.56016560165601,39.035397800858235],[-76.54216542165422,39.03202064631846],[-76.53136531365313,39.02188918269917],[-76.51336513365133,39.00500341000034],[-76.48456484564845,38.986429060031625],[-76.47736477364774,38.97460901914245],[-76.47016470164701,38.95434609190386],[-76.45216452164522,38.94421462828457],[-76.46656466564666,38.93239458739538],[-76.45936459364593,38.91213166015679],[-76.50256502565026,38.92732885558574],[-76.52416524165241,38.950968937364095],[-76.55656556565565,38.95941182371351],[-76.56736567365674,38.952657514633984],[-76.53496534965349,38.93746031920503],[-76.52416524165241,38.92564027831585],[-76.51336513365133,38.91213166015679],[-76.49176491764918,38.89862304199774],[-76.49536495364953,38.88004869202902],[-76.50616506165062,38.88004869202902],[-76.52056520565205,38.88680300110855],[-76.53856538565385,38.8918687329182],[-76.53496534965349,38.88680300110855],[-76.53496534965349,38.88511442383867],[-76.53136531365313,38.87836011475913],[-76.52416524165241,38.86991722840972],[-76.52776527765278,38.861474342060305],[-76.53856538565385,38.85640861025067],[-76.53136531365313,38.83952283755184],[-76.52056520565205,38.8428999920916],[-76.50616506165062,38.84458856936149],[-76.49176491764918,38.84458856936149],[-76.49536495364953,38.826014219392775],[-76.50256502565026,38.80743986942406],[-76.53136531365313,38.783799787645705],[-76.5529655296553,38.77535690129629],[-76.54936549365493,38.7550939740577],[-76.53856538565385,38.73820820135887],[-76.52056520565205,38.72469958319981],[-76.52776527765278,38.70274807869134],[-76.52776527765278,38.67573084237321],[-76.52056520565205,38.65040218332497],[-76.50976509765097,38.62845067881649],[-76.51336513365133,38.57103905164048],[-76.51336513365133,38.52713604262354],[-76.49536495364953,38.496741651765646],[-76.43416434164341,38.43764144731975],[-76.41256412564125,38.41231278827151],[-76.39456394563945,38.392049861032916],[-76.38016380163802,38.38529555195339],[-76.39456394563945,38.35321258382562],[-76.41976419764197,38.32112961569784],[-76.45216452164522,38.32450677023762],[-76.47016470164701,38.336326811126796],[-76.47016470164701,38.36334404744491],[-76.47376473764737,38.373475511064214],[-76.47376473764737,38.38022982014374],[-76.47736477364774,38.38529555195339],[-76.48456484564845,38.392049861032916],[-76.49896498964989,38.40049274738233],[-76.50976509765097,38.40386990192211],[-76.54216542165422,38.408935633731744],[-76.56016560165601,38.4241328291607],[-76.60336603366034,38.44439575639929],[-76.63576635766357,38.47479014725717],[-76.64656646566465,38.50518453811506],[-76.67176671766717,38.653779337864734],[-76.68256682566825,38.679107996912975],[-76.68256682566825,38.67235368783345],[-76.68256682566825,38.663910801484036],[-76.68256682566825,38.653779337864734],[-76.6789667896679,38.581170515259785],[-76.67536675366753,38.559219010751306],[-76.67536675366753,38.53557892897295],[-76.67536675366753,38.51025026992471],[-76.67536675366753,38.48661018814636],[-76.65736657366573,38.451150065478814],[-76.62136621366213,38.4241328291607],[-76.58536585365853,38.398804170112456],[-76.52056520565205,38.373475511064214],[-76.50976509765097,38.36840977925456],[-76.50616506165062,38.34983542928586],[-76.49536495364953,38.329572502047256],[-76.47736477364774,38.31268672934843],[-76.45216452164522,38.29242380210984],[-76.43056430564306,38.294112379379726],[-76.42336423364233,38.30086668845925],[-76.40536405364054,38.30762099753879],[-76.38736387363873,38.3059324202689],[-76.37296372963729,38.29917811118938],[-76.38736387363873,38.28229233849055],[-76.39816398163981,38.267095143061596],[-76.39456394563945,38.246832215823005],[-76.38736387363873,38.226569288584415],[-76.38016380163802,38.21981497950489],[-76.35856358563585,38.19448632045665],[-76.33336333363333,38.164091929598754],[-76.31896318963189,38.13876327055051],[-76.32976329763298,38.128631806931224],[-76.34056340563406,38.12018892058181],[-76.33336333363333,38.08979452972392],[-76.32976329763298,38.07628591156485],[-76.32616326163262,38.064465870675676],[-76.32256322563225,38.044202943437085],[-76.3369633696337,38.0526458297865],[-76.35136351363514,38.05771156159615],[-76.39456394563945,38.10330314788298],[-76.41616416164162,38.108368879692634],[-76.43416434164341,38.13200896147099],[-76.4269642696427,38.1590261977891],[-76.43416434164341,38.191109165916885],[-76.45576455764558,38.206306361345824],[-76.45576455764558,38.19786347499641],[-76.44856448564485,38.18266627956747],[-76.44856448564485,38.17591197048793],[-76.45216452164522,38.16578050686864],[-76.45576455764558,38.1590261977891],[-76.45936459364593,38.15227188870958],[-76.47016470164701,38.13876327055051],[-76.4809648096481,38.14551757963005],[-76.50256502565026,38.16578050686864],[-76.50976509765097,38.1404518478204],[-76.5169651696517,38.13200896147099],[-76.53136531365313,38.13876327055051],[-76.53136531365313,38.14720615689993],[-76.53856538565385,38.1590261977891],[-76.54936549365493,38.184354856837345],[-76.56376563765637,38.19786347499641],[-76.5889658896589,38.211372093155475],[-76.61776617766178,38.22319213404465],[-76.6429664296643,38.22488071131454],[-76.6789667896679,38.23501217493383],[-76.69696696966969,38.23838932947359],[-76.75456754567546,38.2282578658543],[-76.77616776167761,38.23838932947359],[-76.8049680496805,38.253586524902545],[-76.80136801368013,38.27553802941101],[-76.80856808568085,38.289046647570075],[-76.81216812168121,38.29917811118938],[-76.81576815768157,38.336326811126796],[-76.82656826568265,38.36334404744491],[-76.84816848168481,38.38191839741363],[-76.88056880568806,38.398804170112456],[-76.85536855368554,38.3549011610955],[-76.84456844568446,38.331261079317144],[-76.83736837368373,38.30255526572914],[-76.8409684096841,38.25696367944231],[-76.86616866168661,38.27216087487125],[-76.8949689496895,38.28229233849055],[-76.92376923769237,38.29242380210984],[-76.92376923769237,38.31437530661832],[-76.94896948969489,38.331261079317144],[-76.97416974169741,38.34476969747621],[-76.98496984969849,38.37009835652445],[-77.01377013770137,38.441018601859525],[-77.0209702097021,38.461281529098116],[-77.03177031770318,38.48154445633671],[-77.03177031770318,38.471412992717404],[-77.03537035370353,38.46297010636799],[-77.03897038970389,38.454527220018576],[-77.04617046170462,38.44608433366916],[-77.06057060570605,38.429198560970335],[-77.07497074970749,38.42075567462092],[-77.0929709297093,38.408935633731744],[-77.10377103771037,38.41062421100163],[-77.10377103771037,38.434264292779986],[-77.10377103771037,38.44608433366916],[-77.10017100171001,38.4528386427487],[-77.10017100171001,38.461281529098116],[-77.10377103771037,38.46297010636799],[-77.10377103771037,38.46465868363788],[-77.10737107371074,38.46803583817764],[-77.12177121771218,38.461281529098116],[-77.13257132571326,38.4528386427487],[-77.1289712897129,38.44946148820894],[-77.12177121771218,38.44608433366916],[-77.11457114571145,38.43257571551011],[-77.13257132571326,38.398804170112456],[-77.1469714697147,38.38867270649315],[-77.16857168571686,38.38022982014374],[-77.17937179371793,38.37516408833409],[-77.20457204572045,38.3650326247148],[-77.23337233372334,38.373475511064214],[-77.2549725497255,38.393738438302805],[-77.26217262172621,38.4241328291607],[-77.25857258572586,38.451150065478814],[-77.26577265772657,38.47310156998729],[-77.26577265772657,38.49336449722588],[-77.25857258572586,38.5119388471946],[-77.24777247772478,38.523758888083776],[-77.24057240572405,38.53726750624283],[-77.22617226172261,38.55753043348143],[-77.20817208172082,38.55584185621154],[-77.18657186571865,38.55753043348143],[-77.16857168571686,38.57779336072002],[-77.17577175771757,38.57779336072002],[-77.19017190171901,38.56935047437061],[-77.20457204572045,38.565973319830846],[-77.20457204572045,38.574416206180246],[-77.19377193771938,38.59130197887907],[-77.1829718297183,38.60481059703814],[-77.17937179371793,38.6081877515779],[-77.17217172171722,38.60987632884779],[-77.16497164971649,38.61494206065744],[-77.15777157771578,38.616630637927315],[-77.13617136171361,38.61494206065744],[-77.12537125371253,38.618319215197204],[-77.12177121771218,38.623384947006855],[-77.11457114571145,38.64027071970568],[-77.10737107371074,38.65715649240451],[-77.10377103771037,38.67404226510334],[-77.09657096570966,38.68248515145275],[-77.08937089370893,38.68923946053228],[-77.08217082170822,38.69430519234193],[-77.06057060570605,38.69768234688169],[-77.04617046170462,38.701059501421454],[-77.03897038970389,38.6959937696118],[-77.0209702097021,38.6959937696118],[-77.01377013770137,38.69768234688169],[-77.01377013770137,38.701059501421454],[-77.02457024570245,38.699370924151566],[-77.03177031770318,38.70274807869134],[-77.03537035370353,38.70781381050098],[-77.03177031770318,38.716256696850394],[-77.02817028170281,38.73145389227935],[-77.02457024570245,38.741585355898636],[-77.01737017370174,38.743273933168524],[-77.01017010170101,38.743273933168524],[-77.01017010170101,38.74665108770829],[-77.0209702097021,38.75171681951794],[-77.02457024570245,38.7550939740577],[-77.02817028170281,38.765225437677],[-77.02457024570245,38.77704547856618],[-77.0209702097021,38.78211121037583],[-77.01737017370174,38.790554096725245],[-77.0209702097021,38.79561982853488],[-77.02817028170281,38.81925991031325],[-77.0209702097021,38.83614568301208],[-77.01737017370174,38.84458856936149],[-77.01737017370174,38.85472003298078],[-77.0209702097021,38.861474342060305],[-77.02457024570245,38.873294382949496],[-77.03537035370353,38.88004869202902],[-77.04977049770497,38.888491578378435],[-77.06057060570605,38.89862304199774],[-77.06777067770678,38.9020001965375],[-77.06417064170641,38.8918687329182],[-77.05337053370533,38.88173726929891],[-77.04617046170462,38.87667153748926],[-77.03897038970389,38.868228651139844],[-77.03537035370353,38.861474342060305],[-77.03177031770318,38.85472003298078],[-77.03177031770318,38.84458856936149],[-77.03537035370353,38.83952283755184],[-77.04257042570426,38.83952283755184],[-77.04257042570426,38.83614568301208],[-77.03897038970389,38.82770279666266],[-77.03897038970389,38.81588275577347],[-77.03897038970389,38.79561982853488],[-77.04257042570426,38.79224267399512],[-77.04977049770497,38.788865519455356],[-77.05337053370533,38.783799787645705],[-77.04617046170462,38.77704547856618],[-77.04617046170462,38.76691401494688],[-77.04617046170462,38.748339664978175],[-77.04257042570426,38.728076737739585],[-77.04617046170462,38.716256696850394],[-77.07137071370714,38.71119096504076],[-77.08937089370893,38.71119096504076],[-77.10017100171001,38.706125233231106],[-77.11097110971109,38.70781381050098],[-77.11817118171182,38.706125233231106],[-77.12537125371253,38.68755088326239],[-77.13257132571326,38.6774194196431],[-77.14337143371434,38.6774194196431],[-77.15057150571505,38.685862305992515],[-77.15777157771578,38.69092803780215],[-77.16857168571686,38.68923946053228],[-77.16857168571686,38.679107996912975],[-77.15417154171541,38.663910801484036],[-77.13977139771397,38.65040218332497],[-77.13617136171361,38.636893565165906],[-77.16137161371613,38.63182783335627],[-77.18657186571865,38.62000779246709],[-77.20097200972009,38.623384947006855],[-77.20817208172082,38.63182783335627],[-77.20457204572045,38.638582142435794],[-77.19377193771938,38.65546791513462],[-77.20097200972009,38.665599378753924],[-77.21537215372153,38.665599378753924],[-77.22977229772297,38.65715649240451],[-77.23697236972369,38.64195929697556],[-77.24057240572405,38.62676210154662],[-77.24777247772478,38.60987632884779],[-77.25857258572586,38.59467913341885],[-77.2729727297273,38.58454766979955],[-77.26577265772657,38.581170515259785],[-77.26217262172621,38.574416206180246],[-77.25857258572586,38.56935047437061],[-77.27657276572765,38.559219010751306],[-77.28377283772838,38.55584185621154],[-77.28377283772838,38.54908754713202],[-77.28737287372873,38.5305131971633],[-77.30537305373053,38.5018073835753],[-77.32697326973269,38.451150065478814],[-77.31257312573125,38.40555847919198],[-77.33417334173342,38.41737852008116],[-77.35217352173521,38.43257571551011],[-77.35937359373594,38.429198560970335],[-77.34857348573486,38.408935633731744],[-77.32337323373234,38.39036128376304],[-77.3089730897309,38.38022982014374],[-77.29817298172982,38.36840977925456],[-77.29097290972909,38.35321258382562],[-77.30177301773017,38.3549011610955],[-77.32337323373234,38.34983542928586],[-77.34137341373413,38.34814685201597],[-77.33777337773377,38.34308112020632],[-77.29097290972909,38.34139254293645],[-77.24777247772478,38.329572502047256],[-77.18657186571865,38.34308112020632],[-77.16497164971649,38.34814685201597],[-77.13257132571326,38.366721201984674],[-77.08577085770857,38.36840977925456],[-77.0569705697057,38.393738438302805],[-77.04257042570426,38.39542701557269],[-77.0209702097021,38.38529555195339],[-77.01377013770137,38.371786933794326],[-77.01737017370174,38.3549011610955],[-77.01377013770137,38.34308112020632],[-77.01377013770137,38.331261079317144],[-77.02457024570245,38.31944103842797],[-77.03897038970389,38.32281819296773],[-77.05337053370533,38.32281819296773],[-77.05337053370533,38.316063883888205],[-77.03897038970389,38.31268672934843],[-77.03177031770318,38.30762099753879],[-76.99936999369993,38.2772266066809],[-76.97416974169741,38.27047229760137],[-76.9669696696967,38.267095143061596],[-76.95976959769597,38.26034083398207],[-76.95616956169562,38.246832215823005],[-76.95616956169562,38.23501217493383],[-76.95976959769597,38.218126402235],[-76.95256952569525,38.20968351588559],[-76.91296912969129,38.1995520522663],[-76.88056880568806,38.17760054775782],[-76.83016830168302,38.16578050686864],[-76.79776797767977,38.169157661408406],[-76.77616776167761,38.16746908413852],[-76.7581675816758,38.16071477505899],[-76.75096750967509,38.148894734169815],[-76.74016740167401,38.13707469328064],[-76.7149671496715,38.142140425090275],[-76.68976689766897,38.153960465979466],[-76.68256682566825,38.1590261977891],[-76.67176671766717,38.15733762051923],[-76.66096660966609,38.15227188870958],[-76.65376653766538,38.14720615689993],[-76.64656646566465,38.14551757963005],[-76.63576635766357,38.14551757963005],[-76.61416614166141,38.15058331143969],[-76.60696606966069,38.143829002360164],[-76.59976599765997,38.13200896147099],[-76.60696606966069,38.11343461150227],[-76.59616596165961,38.10499172515286],[-76.58176581765817,38.09823741607333],[-76.56016560165601,38.08979452972392],[-76.53496534965349,38.07459733429498],[-76.52776527765278,38.064465870675676],[-76.52056520565205,38.0526458297865],[-76.53136531365313,38.0425143661672],[-76.53136531365313,38.039137211627434],[-76.53136531365313,38.02562859346837],[-76.52416524165241,38.022251438928606],[-76.50616506165062,38.023940016198495],[-76.48456484564845,38.022251438928606],[-76.47016470164701,38.01549712984908],[-76.4629646296463,38.01549712984908],[-76.45576455764558,38.00536566622978],[-76.4629646296463,38.001988511690016],[-76.47016470164701,38.00029993442014],[-76.45936459364593,37.99523420261049],[-76.40896408964089,37.96990554356225],[-76.37296372963729,37.959774079942946],[-76.29016290162902,37.924313957275416],[-76.26136261362613,37.914182493656114],[-76.24696246962469,37.904051030036825],[-76.24336243362433,37.882099525528346],[-76.23616236162361,37.86014802101987],[-76.23976239762398,37.836507939241514],[-76.25056250562506,37.82299932108245],[-76.26856268562685,37.82468789835234],[-76.3009630096301,37.85170513467045],[-76.31536315363154,37.856770866480105],[-76.32616326163262,37.84832798013069],[-76.31896318963189,37.8280650528921],[-76.29736297362973,37.79598208476433],[-76.29376293762937,37.78078488933538],[-76.29376293762937,37.77065342571609],[-76.29736297362973,37.76221053936668],[-76.30456304563046,37.747013343937724],[-76.30816308163081,37.747013343937724],[-76.31536315363154,37.747013343937724],[-76.32256322563225,37.74870192120761],[-76.32616326163262,37.74363618939796],[-76.31536315363154,37.731816148508784],[-76.28656286562865,37.711553221270194],[-76.28296282962829,37.69973318038102],[-76.29376293762937,37.694667448571366],[-76.30456304563046,37.694667448571366],[-76.31536315363154,37.696356025841254],[-76.32616326163262,37.69973318038102],[-76.31896318963189,37.68622456222195],[-76.32616326163262,37.679470253142426],[-76.33336333363333,37.676093098602664],[-76.34056340563406,37.669338789523124],[-76.3369633696337,37.659207325903836],[-76.32256322563225,37.64401013047488],[-76.31896318963189,37.63725582139536],[-76.30456304563046,37.63725582139536],[-76.32256322563225,37.62374720323629],[-76.34776347763477,37.62881293504594],[-76.40536405364054,37.64401013047488],[-76.40896408964089,37.65076443955442],[-76.41976419764197,37.66089590317371],[-76.43056430564306,37.66765021225325],[-76.43416434164341,37.6625844804436],[-76.43776437764377,37.6625844804436],[-76.44496444964449,37.67102736679301],[-76.45216452164522,37.68284740768219],[-76.45576455764558,37.69297887130148],[-76.47016470164701,37.70817606673043],[-76.47736477364774,37.694667448571366],[-76.48816488164881,37.65751874863395],[-76.50616506165062,37.65751874863395],[-76.5169651696517,37.669338789523124],[-76.52416524165241,37.68791313949184],[-76.52416524165241,37.69973318038102],[-76.53496534965349,37.714930375809956],[-76.57096570965709,37.752079075747375],[-76.57816578165782,37.77065342571609],[-76.58176581765817,37.77740773479562],[-76.61416614166141,37.79598208476433],[-76.61776617766178,37.80442497111375],[-76.62136621366213,37.814556434733035],[-76.62856628566286,37.8179335892728],[-76.63936639366393,37.809490702923384],[-76.65016650166501,37.81286785746316],[-76.65736657366573,37.819622166542686],[-76.66096660966609,37.8280650528921],[-76.66096660966609,37.84326224832104],[-76.67536675366753,37.83313078470175],[-76.68616686166861,37.83144220743186],[-76.70056700567005,37.836507939241514],[-76.71136711367113,37.846639402860816],[-76.75096750967509,37.89560814368741],[-76.7689676896769,37.914182493656114],[-76.83376833768337,37.94288830724412],[-76.85176851768517,37.981725584451425],[-76.88056880568806,37.99016847080084],[-76.8949689496895,38.00705424349967],[-76.91656916569166,38.06953160248533],[-76.93456934569345,38.09317168426368],[-76.94536945369454,38.10330314788298],[-76.96336963369633,38.11005745696251],[-77.00657006570066,38.11850034331192],[-77.01737017370174,38.11681176604205],[-77.02817028170281,38.128631806931224],[-77.03537035370353,38.14551757963005],[-77.04617046170462,38.1590261977891],[-77.06417064170641,38.16578050686864],[-77.10737107371074,38.17422339321806],[-77.12537125371253,38.17591197048793],[-77.13257132571326,38.16578050686864],[-77.12537125371253,38.15564904324934],[-77.11097110971109,38.148894734169815],[-77.07497074970749,38.14551757963005],[-77.06417064170641,38.15058331143969],[-77.0569705697057,38.148894734169815],[-77.05337053370533,38.142140425090275],[-77.04977049770497,38.128631806931224],[-77.04617046170462,38.11850034331192],[-77.04257042570426,38.1117460342324],[-77.03177031770318,38.10330314788298],[-76.95976959769597,38.08979452972392],[-76.94896948969489,38.079663066104615],[-76.94536945369454,38.07459733429498],[-76.92736927369273,38.059400138866025],[-76.92016920169202,38.0526458297865],[-76.92736927369273,37.996922779880364],[-76.92376923769237,37.98003700718154],[-76.90576905769058,37.9749712753719],[-76.89136891368913,37.9749712753719],[-76.88056880568806,37.96990554356225],[-76.87696876968769,37.95639692540318],[-76.86616866168661,37.941199729974244],[-76.84816848168481,37.92937968908507],[-76.83016830168302,37.917559648195876],[-76.81576815768157,37.904051030036825],[-76.79416794167942,37.89223098914765],[-76.78696786967869,37.883788102798235],[-76.77616776167761,37.861836598289756],[-76.76536765367653,37.841573671051165],[-76.75096750967509,37.82299932108245],[-76.74016740167401,37.809490702923384],[-76.72936729367294,37.799359239304096],[-76.7149671496715,37.78753919841492],[-76.70416704167042,37.78753919841492],[-76.68976689766897,37.78922777568479],[-76.68256682566825,37.78922777568479],[-76.6789667896679,37.78922777568479],[-76.67536675366753,37.78922777568479],[-76.67536675366753,37.78585062114503],[-76.67536675366753,37.772342002985965],[-76.67536675366753,37.7689648484462],[-76.66816668166682,37.75545623028714],[-76.6321663216632,37.7503904984775],[-76.61416614166141,37.7402590348582],[-76.60336603366034,37.71999610761961],[-76.58176581765817,37.69804460311113],[-76.57816578165782,37.696356025841254],[-76.57816578165782,37.68791313949184],[-76.57456574565745,37.67271594406289],[-76.57096570965709,37.652453016824296],[-76.5529655296553,37.627124357776054],[-76.52056520565205,37.61530431688688],[-76.4629646296463,37.61868147142664],[-76.44136441364414,37.61868147142664],[-76.4269642696427,37.62374720323629],[-76.40536405364054,37.5933528123784],[-76.36936369363693,37.584909926028985],[-76.32616326163262,37.57984419421935],[-76.28296282962829,37.569712730600045],[-76.3009630096301,37.55789268971087],[-76.31896318963189,37.55282695790122],[-76.36576365763658,37.549449803361455],[-76.39456394563945,37.54269549428193],[-76.39456394563945,37.53256403066263],[-76.37656376563766,37.5258097215831],[-76.3549635496355,37.522432567043325],[-76.32256322563225,37.50048106253486],[-76.3009630096301,37.49372675345532],[-76.29016290162902,37.50385821707462],[-76.29016290162902,37.51905541250356],[-76.26856268562685,37.51736683523369],[-76.26136261362613,37.502169639804734],[-76.2649626496265,37.486972444375795],[-76.26856268562685,37.48021813529627],[-76.27576275762758,37.47008667167697],[-76.27576275762758,37.45995520805768],[-76.26856268562685,37.45320089897814],[-76.25416254162542,37.45320089897814],[-76.24336243362433,37.449823744438376],[-76.24336243362433,37.43124939446966],[-76.24696246962469,37.39747784907202],[-76.25056250562506,37.36370630367436],[-76.25776257762577,37.33500049008636],[-76.27936279362794,37.32149187192729],[-76.29736297362973,37.33500049008636],[-76.31896318963189,37.37046061275389],[-76.32256322563225,37.38565780818283],[-76.33336333363333,37.38565780818283],[-76.34776347763477,37.38059207637319],[-76.36576365763658,37.38396923091295],[-76.39816398163981,37.429560817199786],[-76.41616416164162,37.44306943535885],[-76.4269642696427,37.41774077631061],[-76.41616416164162,37.41436362177083],[-76.40896408964089,37.40760931269131],[-76.40536405364054,37.39916642634189],[-76.40176401764018,37.39072353999248],[-76.41256412564125,37.39410069453224],[-76.42336423364233,37.39747784907202],[-76.43416434164341,37.39747784907202],[-76.44136441364414,37.39072353999248],[-76.44856448564485,37.38059207637319],[-76.44136441364414,37.37214919002378],[-76.41616416164162,37.35526341732495],[-76.40896408964089,37.35357484005506],[-76.40176401764018,37.3501976855153],[-76.40176401764018,37.340066221895995],[-76.40536405364054,37.33837764462612],[-76.43416434164341,37.32993475827671],[-76.43416434164341,37.32318044919717],[-76.40176401764018,37.324869026467056],[-76.39456394563945,37.32318044919717],[-76.38736387363873,37.31473756284775],[-76.37656376563766,37.3012289446887],[-76.37296372963729,37.28772032652964],[-76.38016380163802,37.2725231311007],[-76.45576455764558,37.26070309021151],[-76.49536495364953,37.24888304932233],[-76.50976509765097,37.26914597656092],[-76.53856538565385,37.29278605833929],[-76.5529655296553,37.30798325376823],[-76.56016560165601,37.32318044919717],[-76.57456574565745,37.324869026467056],[-76.58176581765817,37.32993475827671],[-76.6429664296643,37.409297889961195],[-76.65736657366573,37.41774077631061],[-76.68256682566825,37.4278722399299],[-76.70056700567005,37.449823744438376],[-76.72936729367294,37.49372675345532],[-76.77976779767798,37.53594118520239],[-76.79056790567905,37.53256403066263],[-76.79416794167942,37.5258097215831],[-76.79776797767977,37.5156782579638],[-76.79776797767977,37.50385821707462],[-76.79416794167942,37.49879248526497],[-76.78336783367833,37.49372675345532],[-76.77256772567725,37.492038176185446],[-76.76536765367653,37.486972444375795],[-76.72216722167221,37.4278722399299],[-76.68976689766897,37.41098646723107],[-76.67536675366753,37.39410069453224],[-76.65376653766538,37.36370630367436],[-76.60696606966069,37.29616321287905],[-76.53496534965349,37.25563735840187],[-76.50256502565026,37.2319972766235],[-76.46656466564666,37.2134229266548],[-76.43056430564306,37.221865813004214],[-76.40176401764018,37.23368585389339],[-76.38736387363873,37.2319972766235],[-76.37296372963729,37.220177235734326],[-76.37656376563766,37.21848865846445],[-76.38016380163802,37.20666861757526],[-76.38016380163802,37.194848576686084],[-76.38016380163802,37.184717113066796],[-76.37296372963729,37.17627422671738],[-76.36216362163621,37.16614276309808],[-76.35136351363514,37.164454185828205],[-76.34776347763477,37.17627422671738],[-76.31896318963189,37.159388454018554],[-76.29736297362973,37.1441912585896],[-76.29016290162902,37.13068264043055],[-76.30456304563046,37.1256169086209],[-76.32616326163262,37.11379686773172],[-76.3369633696337,37.101976826842545],[-76.32256322563225,37.095222517763005],[-76.28296282962829,37.10366540411242],[-76.27216272162721,37.096911095032894],[-76.26856268562685,37.069893858714764],[-76.27576275762758,37.0479423542063],[-76.28296282962829,37.027679426967694],[-76.29736297362973,37.01417080880864],[-76.31536315363154,37.0074164997291],[-76.34056340563406,37.0074164997291],[-76.35856358563585,37.00403934518934],[-76.37296372963729,36.99897361337969],[-76.39816398163981,36.9787106861411],[-76.41616416164162,36.971956377061574],[-76.43056430564306,36.977022108871225],[-76.44136441364414,37.01585938607852],[-76.45216452164522,37.02936800423758],[-76.52416524165241,37.05807381782559],[-76.54576545765457,37.090156785953354],[-76.56376563765637,37.08509105414372],[-76.61056610566105,37.11886259954137],[-76.61776617766178,37.13068264043055],[-76.62136621366213,37.1441912585896],[-76.61056610566105,37.17289707217762],[-76.61776617766178,37.199914308495735],[-76.63576635766357,37.220177235734326],[-76.65376653766538,37.23368585389339],[-76.66816668166682,37.226931544813866],[-76.71136711367113,37.22355439027409],[-76.72936729367294,37.220177235734326],[-76.73656736567365,37.2134229266548],[-76.74016740167401,37.2032914630355],[-76.74376743767438,37.19822573122585],[-76.75456754567546,37.2032914630355],[-76.7581675816758,37.21173434938491],[-76.76176761767617,37.221865813004214],[-76.76536765367653,37.23030869935363],[-76.77256772567725,37.23368585389339],[-76.79056790567905,37.237063008433154],[-76.83016830168302,37.25057162659222],[-76.84456844568446,37.25394878113198],[-76.85536855368554,37.262391667481396],[-76.85896858968589,37.282654594719986],[-76.85536855368554,37.304606099228465],[-76.85896858968589,37.32318044919717],[-76.86976869768698,37.31473756284775],[-76.87336873368733,37.304606099228465],[-76.87336873368733,37.27927744018022],[-76.87696876968769,37.26914597656092],[-76.88776887768877,37.25901451294163],[-76.90936909369093,37.247194472052456],[-76.9309693096931,37.24550589478257],[-76.94536945369454,37.25563735840187],[-76.95256952569525,37.27421170837057],[-76.98136981369814,37.31304898557788],[-76.99216992169922,37.319803294657405],[-77.0029700297003,37.32318044919717],[-77.01377013770137,37.31811471738753],[-77.04617046170462,37.297851790148925],[-77.05337053370533,37.2910974810694],[-77.0569705697057,37.28772032652964],[-77.06417064170641,37.297851790148925],[-77.07137071370714,37.309671831038116],[-77.07137071370714,37.31642614011764],[-77.08217082170822,37.324869026467056],[-77.08937089370893,37.32824618100682],[-77.10017100171001,37.326557603736944],[-77.11457114571145,37.32318044919717],[-77.13617136171361,37.31642614011764],[-77.14337143371434,37.31642614011764],[-77.15417154171541,37.31811471738753],[-77.17217172171722,37.326557603736944],[-77.17937179371793,37.32993475827671],[-77.2189721897219,37.32824618100682],[-77.23337233372334,37.33500049008636],[-77.25137251372513,37.3501976855153],[-77.27657276572765,37.32993475827671],[-77.2729727297273,37.31642614011764],[-77.26577265772657,37.31136040830799],[-77.2549725497255,37.309671831038116],[-77.25137251372513,37.30629467649834],[-77.24057240572405,37.30798325376823],[-77.17577175771757,37.28772032652964],[-77.08937089370893,37.28772032652964],[-77.08217082170822,37.282654594719986],[-77.07497074970749,37.2725231311007],[-77.06777067770678,37.26576882202116],[-77.0569705697057,37.27083455383081],[-77.02457024570245,37.29278605833929],[-77.01737017370174,37.29447463560916],[-76.99576995769958,37.28772032652964],[-76.98496984969849,37.26914597656092],[-76.98136981369814,37.24888304932233],[-76.97416974169741,37.24044016297292],[-76.94896948969489,37.23537443116328],[-76.91296912969129,37.2134229266548],[-76.8949689496895,37.20666861757526],[-76.80136801368013,37.20666861757526],[-76.78696786967869,37.199914308495735],[-76.76176761767617,37.164454185828205],[-76.74016740167401,37.15601129947879],[-76.71856718567186,37.14925699039925],[-76.68976689766897,37.18809426760656],[-76.67176671766717,37.184717113066796],[-76.66456664566645,37.14756841312938],[-76.65376653766538,37.10535398138231],[-76.67176671766717,37.066516704175],[-76.66096660966609,37.04287662239665],[-76.63936639366393,37.039499467856885],[-76.57096570965709,37.027679426967694],[-76.57096570965709,37.02092511788817],[-76.58176581765817,37.01585938607852],[-76.58536585365853,37.01417080880864],[-76.58536585365853,37.0074164997291],[-76.57816578165782,37.00403934518934],[-76.56736567365674,37.00235076791947],[-76.55656556565565,37.00066219064958],[-76.54936549365493,36.997285036109815],[-76.53856538565385,36.98715357249051],[-76.51336513365133,36.965202067982034],[-76.49536495364953,36.95338202709286],[-76.49176491764918,36.94325056347357],[-76.49176491764918,36.93311909985427],[-76.4809648096481,36.92129905896509],[-76.47736477364774,36.907790440806025],[-76.4809648096481,36.89934755445661],[-76.49536495364953,36.887527513567434],[-76.52416524165241,36.87064174086861],[-76.52416524165241,36.86388743178908],[-76.49896498964989,36.865576009058955],[-76.47736477364774,36.87570747267826],[-76.45576455764558,36.887527513567434],[-76.43416434164341,36.89765897718674],[-76.40896408964089,36.90272470899639],[-76.38016380163802,36.9010361317265],[-76.3549635496355,36.894281822646974],[-76.33336333363333,36.88415035902767],[-76.33336333363333,36.872330318138495],[-76.32616326163262,36.86051027724932],[-76.30816308163081,36.852067390899904],[-76.29016290162902,36.850378813630016],[-76.31176311763117,36.87064174086861],[-76.31896318963189,36.88415035902767],[-76.31536315363154,36.894281822646974],[-76.3009630096301,36.91116759534579],[-76.30456304563046,36.91792190442533],[-76.32976329763298,36.929741945314504],[-76.32976329763298,36.950004872553095],[-76.31176311763117,36.9601363361724],[-76.26856268562685,36.96182491344227],[-76.16776167761677,36.928053368044615],[-76.12456124561245,36.91623332715544],[-76.07776077760778,36.91116759534579],[-76.05616056160561,36.91792190442533],[-76.03456034560345,36.934807677124155],[-76.00576005760057,36.93311909985427],[-75.98775987759878,36.91116759534579],[-75.95895958959589,36.80647580461307],[-75.86175861758618,36.59033791406809],[-75.85455854558545,36.54981205959089],[-75.85455854558545,36.54812348232102],[-75.81135811358114,36.382642909872516],[-75.7969579695797,36.34211705539532],[-75.79335793357933,36.32185412815673],[-75.78975789757897,36.29821404637838],[-75.78615786157862,36.28132827367955],[-75.75735757357573,36.23235953285295],[-75.7141571415714,36.1293563193901],[-75.56295562955628,35.89464407887641],[-75.5521555215552,35.85411822439923],[-75.52335523355234,35.79501801995333],[-75.53055530555305,35.798395174493095],[-75.5521555215552,35.80514948357262],[-75.55935559355594,35.8085266381124],[-75.55935559355594,35.81528094719192],[-75.55935559355594,35.825412410811225],[-75.56295562955628,35.83216671989075],[-75.58455584555846,35.84398676077993],[-75.5881558815588,35.86256111074864],[-75.59175591755917,35.89802123341617],[-75.60615606156061,35.923349892464415],[-75.67455674556746,35.99933586960914],[-75.68175681756817,35.99933586960914],[-75.69615696156961,35.99427013779949],[-75.71055710557106,35.99764729233925],[-75.71775717757177,36.00946733322843],[-75.7141571415714,36.02635310592726],[-75.70695706957069,36.01622164230797],[-75.69975699756998,36.01453306503808],[-75.67455674556746,36.021287374117605],[-75.67815678156781,36.03648456954656],[-75.68895688956889,36.049993187705624],[-75.69615696156961,36.05505891951526],[-75.71055710557106,36.048304610435736],[-75.7249572495725,36.05843607405504],[-75.73215732157321,36.07532184675385],[-75.73575735757358,36.09220761945268],[-75.74295742957429,36.10909339215151],[-75.74295742957429,36.11584770123105],[-75.73935739357393,36.14117636027929],[-75.75015750157502,36.17157075113717],[-75.76455764557645,36.20196514199506],[-75.77535775357754,36.23404811012283],[-75.80055800558006,36.27963969640966],[-75.81495814958149,36.29145973729885],[-75.81855818558185,36.29652546910849],[-75.81855818558185,36.29990262364825],[-75.81495814958149,36.30159120091814],[-75.81135811358114,36.30159120091814],[-75.81855818558185,36.32860843723627],[-75.82575825758258,36.39446295076169],[-75.82935829358293,36.40797156892074],[-75.84375843758437,36.43161165069911],[-75.84375843758437,36.44849742339794],[-75.85815858158581,36.47382608244618],[-75.86535865358653,36.507597627843836],[-75.87975879758797,36.543057750511366],[-75.87975879758797,36.54812348232102],[-75.87975879758797,36.54981205959089],[-75.8869588695887,36.56163210048008],[-75.88335883358833,36.57345214136926],[-75.87975879758797,36.585272182258436],[-75.87975879758797,36.59709222314761],[-75.88335883358833,36.60384653222714],[-75.89415894158941,36.6173551503862],[-75.90135901359014,36.62410945946574],[-75.91935919359193,36.67983250937186],[-75.92655926559266,36.70684974568999],[-75.93375933759337,36.71191547749963],[-75.94815948159481,36.71866978657917],[-75.95895958959589,36.71866978657917],[-75.96255962559626,36.70853832295987],[-75.9769597695977,36.605535109497026],[-75.96975969759697,36.55150063686078],[-75.9661596615966,36.54981205959089],[-75.96255962559626,36.543057750511366],[-75.94815948159481,36.543057750511366],[-75.94455944559445,36.54981205959089],[-75.94095940959409,36.54981205959089],[-75.94815948159481,36.56163210048008],[-75.93375933759337,36.570074986829496],[-75.91575915759157,36.57514071863913],[-75.90855908559085,36.54981205959089],[-75.90855908559085,36.54812348232102],[-75.90855908559085,36.52110624600289],[-75.90495904959049,36.51266335965347],[-75.90135901359014,36.502531896034185],[-75.90135901359014,36.495777586954645],[-75.91215912159122,36.49408900968477],[-75.95175951759518,36.49408900968477],[-75.97335973359733,36.49915474149442],[-75.9769597695977,36.51435193692336],[-75.9769597695977,36.52786055508243],[-76.00576005760057,36.54136917324148],[-76.0129601296013,36.54981205959089],[-76.04536045360453,36.59033791406809],[-76.04536045360453,36.57514071863913],[-76.03816038160382,36.56669783228972],[-76.03456034560345,36.559943523210194],[-76.03096030960309,36.54981205959089],[-76.03096030960309,36.54812348232102],[-76.03096030960309,36.53630344143184],[-76.03816038160382,36.51604051419325],[-76.03816038160382,36.500843318764296],[-76.02736027360274,36.480580391525706],[-76.0129601296013,36.460317464287115],[-75.99135991359913,36.44343169158829],[-75.96975969759697,36.433300227968985],[-75.98415984159841,36.42485734161957],[-75.97335973359733,36.40121725984122],[-75.94815948159481,36.375888600792976],[-75.92655926559266,36.3640685599038],[-75.93735937359374,36.37251144625321],[-75.94455944559445,36.37926575533274],[-75.94815948159481,36.38770864168215],[-75.94815948159481,36.397840105301455],[-75.94455944559445,36.39615152803157],[-75.93735937359374,36.40797156892074],[-75.93015930159301,36.42823449615935],[-75.91935919359193,36.42992307342922],[-75.91575915759157,36.402905837111106],[-75.9229592295923,36.357314250824274],[-75.91215912159122,36.34211705539532],[-75.87975879758797,36.29990262364825],[-75.87255872558725,36.28470542821931],[-75.86895868958689,36.272885387330135],[-75.81495814958149,36.15637355570823],[-75.81135811358114,36.14117636027929],[-75.80415804158041,36.1209134330407],[-75.78975789757897,36.09896192853222],[-75.78615786157862,36.08207615583339],[-75.80415804158041,36.07532184675385],[-75.82215822158221,36.08207615583339],[-75.83655836558366,36.09727335126233],[-75.86175861758618,36.127667742120224],[-75.86895868958689,36.13611062846964],[-75.86535865358653,36.146242092088926],[-75.86175861758618,36.152996401168465],[-75.85815858158581,36.16143928751788],[-75.86175861758618,36.17157075113717],[-75.86895868958689,36.18339079202636],[-75.87975879758797,36.1985879874553],[-75.90135901359014,36.21378518288424],[-75.90855908559085,36.21885091469389],[-75.90855908559085,36.225605223773414],[-75.91215912159122,36.24080241920237],[-75.91575915759157,36.24755672828189],[-75.93015930159301,36.25599961463131],[-75.94455944559445,36.26106534644096],[-75.94815948159481,36.26950823279037],[-75.93375933759337,36.288082582759074],[-75.96255962559626,36.30665693272779],[-75.9769597695977,36.313411241807316],[-75.99495994959949,36.315099819077204],[-75.98775987759878,36.29990262364825],[-75.9769597695977,36.293148314568725],[-75.9661596615966,36.28470542821931],[-75.95895958959589,36.24755672828189],[-75.95175951759518,36.2272938010433],[-75.94815948159481,36.21209660561436],[-75.96255962559626,36.20534229653482],[-75.93735937359374,36.18507936929623],[-75.9229592295923,36.17663648294682],[-75.90855908559085,36.17157075113717],[-75.90855908559085,36.16481644205764],[-75.98055980559805,36.18339079202636],[-75.99855998559985,36.18507936929623],[-76.02016020160201,36.19183367837576],[-76.03816038160382,36.20534229653482],[-76.06336063360634,36.235736687392716],[-76.07056070560705,36.24080241920237],[-76.08856088560886,36.245868151012004],[-76.09576095760957,36.250933882821656],[-76.11376113761138,36.26781965552048],[-76.13176131761317,36.28132827367955],[-76.14976149761497,36.28977116002896],[-76.20376203762038,36.30159120091814],[-76.19296192961929,36.30665693272779],[-76.18576185761857,36.313411241807316],[-76.18576185761857,36.320165550886855],[-76.20016200162001,36.32185412815673],[-76.20736207362073,36.31678839634708],[-76.2181621816218,36.3049683554579],[-76.22176221762217,36.293148314568725],[-76.2181621816218,36.288082582759074],[-76.19656196561965,36.28301685094944],[-76.1749617496175,36.272885387330135],[-76.15336153361534,36.25937676917107],[-76.14256142561425,36.24755672828189],[-76.12456124561245,36.22391664650354],[-76.11376113761138,36.210408028344474],[-76.08856088560886,36.20027656472517],[-76.08136081360813,36.17663648294682],[-76.06696066960669,36.17157075113717],[-76.05616056160561,36.168193596597405],[-76.06336063360634,36.16143928751788],[-76.08496084960849,36.15130782389858],[-76.09576095760957,36.147930669358814],[-76.13176131761317,36.14455351481905],[-76.13176131761317,36.13779920573951],[-76.12816128161282,36.13779920573951],[-76.12816128161282,36.131044896659986],[-76.15696156961569,36.1293563193901],[-76.16776167761677,36.131044896659986],[-76.17856178561786,36.13442205119975],[-76.2109621096211,36.1496192466287],[-76.22536225362254,36.173259328407056],[-76.23256232562325,36.17832506021671],[-76.24336243362433,36.18170221475647],[-76.26856268562685,36.1985879874553],[-76.28656286562865,36.21209660561436],[-76.29376293762937,36.21209660561436],[-76.29016290162902,36.1985879874553],[-76.28656286562865,36.190145101105884],[-76.27936279362794,36.18170221475647],[-76.26856268562685,36.174947905676945],[-76.26136261362613,36.17157075113717],[-76.24696246962469,36.163127864787754],[-76.21456214562146,36.12260201031057],[-76.19656196561965,36.10909339215151],[-76.19656196561965,36.10402766034187],[-76.22176221762217,36.09896192853222],[-76.24336243362433,36.10402766034187],[-76.34776347763477,36.14117636027929],[-76.37656376563766,36.15637355570823],[-76.39456394563945,36.17832506021671],[-76.40896408964089,36.174947905676945],[-76.4269642696427,36.18339079202636],[-76.44496444964449,36.19689941018541],[-76.4629646296463,36.20534229653482],[-76.44856448564485,36.18339079202636],[-76.44136441364414,36.17157075113717],[-76.43416434164341,36.16481644205764],[-76.39816398163981,36.147930669358814],[-76.39456394563945,36.14117636027929],[-76.38376383763837,36.1293563193901],[-76.35856358563585,36.11753627850092],[-76.32976329763298,36.10740481488163],[-76.31176311763117,36.10402766034187],[-76.31176311763117,36.09558477399246],[-76.41256412564125,36.083764733103266],[-76.4269642696427,36.07532184675385],[-76.4269642696427,36.068567537674326],[-76.42336423364233,36.068567537674326],[-76.41616416164162,36.068567537674326],[-76.43416434164341,36.048304610435736],[-76.46656466564666,36.03141883773691],[-76.49896498964989,36.01791021957784],[-76.52416524165241,36.012844487768206],[-76.56016560165601,36.01115591049832],[-76.57816578165782,36.012844487768206],[-76.5889658896589,36.01791021957784],[-76.61776617766178,36.05337034224539],[-76.62856628566286,36.0618132285948],[-76.6429664296643,36.03817314681643],[-76.66816668166682,36.03817314681643],[-76.68616686166861,36.05674749678515],[-76.70056700567005,36.110781969421396],[-76.72576725767257,36.15468497843834],[-76.72936729367294,36.18170221475647],[-76.7149671496715,36.225605223773414],[-76.71136711367113,36.237425264662605],[-76.69696696966969,36.250933882821656],[-76.68976689766897,36.25937676917107],[-76.6789667896679,36.288082582759074],[-76.68976689766897,36.3049683554579],[-76.70776707767077,36.315099819077204],[-76.72936729367294,36.32185412815673],[-76.72216722167221,36.31172266453744],[-76.70416704167042,36.294836891838614],[-76.70056700567005,36.28470542821931],[-76.70416704167042,36.271196810060246],[-76.71136711367113,36.26275392371083],[-76.72576725767257,36.250933882821656],[-76.74376743767438,36.23235953285295],[-76.75096750967509,36.21378518288424],[-76.7581675816758,36.19352225564565],[-76.7581675816758,36.127667742120224],[-76.75456754567546,36.11584770123105],[-76.74016740167401,36.09389619672257],[-76.73296732967329,36.06519038313456],[-76.72576725767257,36.05674749678515],[-76.71856718567186,36.048304610435736],[-76.70776707767077,36.04155030135621],[-76.70776707767077,36.028041683197145],[-76.70776707767077,36.01791021957784],[-76.70416704167042,36.00946733322843],[-76.68976689766897,36.006090178688666],[-76.69336693366934,35.9925815605296],[-76.72936729367294,35.95205570605242],[-76.72936729367294,35.945301396972894],[-76.59256592565926,35.945301396972894],[-76.56376563765637,35.938547087893355],[-76.55656556565565,35.938547087893355],[-76.52416524165241,35.95543286059218],[-76.47376473764737,35.97231863329101],[-76.41976419764197,35.980761519640424],[-76.38736387363873,35.97231863329101],[-76.38376383763837,35.963875746941596],[-76.38376383763837,35.95374428332231],[-76.38736387363873,35.943612819703006],[-76.38736387363873,35.938547087893355],[-76.38016380163802,35.93179277881383],[-76.37296372963729,35.93516993335359],[-76.36576365763658,35.94192424243313],[-76.35136351363514,35.945301396972894],[-76.33336333363333,35.94192424243313],[-76.29016290162902,35.925038469734304],[-76.2649626496265,35.925038469734304],[-76.27576275762758,35.93685851062348],[-76.29736297362973,35.94698997424277],[-76.30816308163081,35.95712143786207],[-76.28296282962829,35.97231863329101],[-76.19656196561965,35.99427013779949],[-76.09936099360993,35.99933586960914],[-76.07416074160741,35.99427013779949],[-76.0489604896049,35.98413867418019],[-76.03096030960309,35.96894147875125],[-76.03096030960309,35.95205570605242],[-76.05256052560526,35.96218716967172],[-76.06336063360634,35.95374428332231],[-76.07056070560705,35.918284160654764],[-76.03816038160382,35.928415624274066],[-76.02376023760237,35.93179277881383],[-76.03096030960309,35.90984127430535],[-76.04536045360453,35.887889769796885],[-76.06336063360634,35.87438115163782],[-76.08496084960849,35.86931541982817],[-76.08496084960849,35.86256111074864],[-76.06336063360634,35.84736391531969],[-76.05256052560526,35.818658101731685],[-76.05616056160561,35.793329442683444],[-76.08496084960849,35.78657513360392],[-76.11376113761138,35.79501801995333],[-76.12456124561245,35.79501801995333],[-76.11736117361173,35.783197979064155],[-76.10656106561065,35.776443669984616],[-76.08856088560886,35.77137793817498],[-76.07416074160741,35.7680007836352],[-76.05976059760597,35.7680007836352],[-76.06336063360634,35.7680007836352],[-76.05616056160561,35.761246474555676],[-76.0489604896049,35.7494264336665],[-76.04176041760417,35.73760639277732],[-76.0489604896049,35.73254066096767],[-76.05976059760597,35.725786351888146],[-76.05256052560526,35.713966310998956],[-76.04176041760417,35.70214627010978],[-76.03816038160382,35.698769115570016],[-76.05256052560526,35.68357192014108],[-76.08496084960849,35.688637651950714],[-76.11736117361173,35.698769115570016],[-76.14256142561425,35.698769115570016],[-76.12456124561245,35.673440456521774],[-76.09936099360993,35.66499757017236],[-76.07416074160741,35.66668614744225],[-76.04536045360453,35.6717518792519],[-76.04536045360453,35.66837472471212],[-76.04536045360453,35.663308992902486],[-76.04176041760417,35.658243261092835],[-76.03816038160382,35.651488952013295],[-76.03096030960309,35.651488952013295],[-75.99495994959949,35.73085208369778],[-75.99135991359913,35.76462362909544],[-75.99135991359913,35.886201192527],[-75.98415984159841,35.8963326561463],[-75.94815948159481,35.914907006115],[-75.94095940959409,35.92166131519453],[-75.93375933759337,35.925038469734304],[-75.91935919359193,35.91321842884511],[-75.90135901359014,35.88957834706676],[-75.87615876158762,35.87944688344747],[-75.86895868958689,35.87775830617758],[-75.86175861758618,35.881135460717346],[-75.85815858158581,35.887889769796885],[-75.86175861758618,35.89464407887641],[-75.88335883358833,35.901398387955936],[-75.89415894158941,35.91321842884511],[-75.90135901359014,35.925038469734304],[-75.90855908559085,35.938547087893355],[-75.8869588695887,35.93348135608372],[-75.86535865358653,35.92672704700418],[-75.84375843758437,35.923349892464415],[-75.82575825758258,35.93179277881383],[-75.83295832958329,35.938547087893355],[-75.84375843758437,35.943612819703006],[-75.85455854558545,35.945301396972894],[-75.86535865358653,35.945301396972894],[-75.86175861758618,35.95205570605242],[-75.85455854558545,35.960498592401834],[-75.85455854558545,35.970630056021136],[-75.85455854558545,35.980761519640424],[-75.81855818558185,35.960498592401834],[-75.78975789757897,35.93179277881383],[-75.74295742957429,35.86931541982817],[-75.74295742957429,35.85749537893899],[-75.7249572495725,35.83554387443051],[-75.72135721357213,35.82878956535099],[-75.72135721357213,35.81021521538227],[-75.72855728557285,35.796706597223206],[-75.73935739357393,35.783197979064155],[-75.74295742957429,35.7680007836352],[-75.73935739357393,35.757869320015914],[-75.7249572495725,35.740983547317086],[-75.72135721357213,35.725786351888146],[-75.72135721357213,35.70552342464954],[-75.7249572495725,35.698769115570016],[-75.75015750157502,35.698769115570016],[-75.77175771757717,35.69708053830013],[-75.77535775357754,35.6903262292206],[-75.76455764557645,35.6717518792519],[-75.73935739357393,35.64304606566388],[-75.73935739357393,35.63291460204459],[-75.75375753757537,35.610963097536114],[-75.75735757357573,35.60758594299635],[-75.76455764557645,35.60420878845659],[-75.77175771757717,35.6025202111867],[-75.78255782557825,35.59914305664694],[-75.78255782557825,35.590700170297524],[-75.78255782557825,35.58225728394811],[-75.78255782557825,35.575502974868584],[-75.79335793357933,35.57043724305893],[-75.80775807758077,35.568748665789045],[-75.840158401584,35.568748665789045],[-75.840158401584,35.575502974868584],[-75.82575825758258,35.58056870667822],[-75.81855818558185,35.58225728394811],[-75.81855818558185,35.58563443848787],[-75.82215822158221,35.589011593027635],[-75.82215822158221,35.59238874756741],[-75.82575825758258,35.595765902107175],[-75.8509585095851,35.58732301575776],[-75.86535865358653,35.595765902107175],[-75.87975879758797,35.61434025207588],[-75.8869588695887,35.637980333854244],[-75.89415894158941,35.62278313842529],[-75.89415894158941,35.60420878845659],[-75.89415894158941,35.589011593027635],[-75.89775897758977,35.57888012940835],[-75.95535955359553,35.52991138858175],[-75.95895958959589,35.52822281131186],[-75.9769597695977,35.5248456567721],[-75.98055980559805,35.51977992496245],[-75.9769597695977,35.513025615882924],[-75.9769597695977,35.506271306803384],[-75.97335973359733,35.50289415226362],[-75.97335973359733,35.49782842045397],[-75.98055980559805,35.48938553410456],[-75.98415984159841,35.486008379564794],[-76.00936009360093,35.47925407048527],[-76.00216002160022,35.4657454523262],[-76.00936009360093,35.455613988706915],[-76.02016020160201,35.448859679627375],[-76.02376023760237,35.44041679327796],[-76.02376023760237,35.426908175118896],[-76.02736027360274,35.42015386603937],[-76.03456034560345,35.41846528876948],[-76.04536045360453,35.42521959784902],[-76.03816038160382,35.43197390692855],[-76.05616056160561,35.44210537054785],[-76.07056070560705,35.426908175118896],[-76.07776077760778,35.40495667061043],[-76.06336063360634,35.38975947518148],[-76.06336063360634,35.38469374337184],[-76.08136081360813,35.38300516610195],[-76.11736117361173,35.37287370248265],[-76.13176131761317,35.366119393403125],[-76.14256142561425,35.35261077524406],[-76.14976149761497,35.34754504343442],[-76.2181621816218,35.3492336207043],[-76.23616236162361,35.35261077524406],[-76.24696246962469,35.371185125212776],[-76.25416254162542,35.37456227975254],[-76.26136261362613,35.36949654794289],[-76.2649626496265,35.3593650843236],[-76.26856268562685,35.34754504343442],[-76.27936279362794,35.350922197974185],[-76.31176311763117,35.36780797067301],[-76.32256322563225,35.393136629721255],[-76.33336333363333,35.40326809334054],[-76.3549635496355,35.413399556959845],[-76.36216362163621,35.40495667061043],[-76.36216362163621,35.391448052451366],[-76.36216362163621,35.38469374337184],[-76.3549635496355,35.3779394342923],[-76.35136351363514,35.364430816133236],[-76.35856358563585,35.3492336207043],[-76.37296372963729,35.34247931162477],[-76.38016380163802,35.35261077524406],[-76.39456394563945,35.36274223886336],[-76.40176401764018,35.364430816133236],[-76.40896408964089,35.364430816133236],[-76.41616416164162,35.366119393403125],[-76.41976419764197,35.37625085702243],[-76.38016380163802,35.37625085702243],[-76.38016380163802,35.38469374337184],[-76.38736387363873,35.393136629721255],[-76.3909639096391,35.408333825150194],[-76.39456394563945,35.44041679327796],[-76.40176401764018,35.45899114324668],[-76.41976419764197,35.464056875056315],[-76.43056430564306,35.45730256597679],[-76.41976419764197,35.43872821600809],[-76.44136441364414,35.40326809334054],[-76.45576455764558,35.41002240242007],[-76.46656466564666,35.41171097968996],[-76.47736477364774,35.406645247880306],[-76.48456484564845,35.39820236153089],[-76.47736477364774,35.39482520699113],[-76.47016470164701,35.38975947518148],[-76.46656466564666,35.38469374337184],[-76.4629646296463,35.37625085702243],[-76.49896498964989,35.391448052451366],[-76.51336513365133,35.40157951607067],[-76.52416524165241,35.41846528876948],[-76.5169651696517,35.41846528876948],[-76.50976509765097,35.42184244330926],[-76.50616506165062,35.42521959784902],[-76.50256502565026,35.43197390692855],[-76.54576545765457,35.44548252508761],[-76.56016560165601,35.455613988706915],[-76.54576545765457,35.4657454523262],[-76.54576545765457,35.47249976140573],[-76.56376563765637,35.48431980229492],[-76.57456574565745,35.49782842045397],[-76.57096570965709,35.50795988407327],[-76.54576545765457,35.513025615882924],[-76.49536495364953,35.506271306803384],[-76.47736477364774,35.513025615882924],[-76.4629646296463,35.54173142947093],[-76.48816488164881,35.53666569766128],[-76.51336513365133,35.538354274931166],[-76.55656556565565,35.548485738550454],[-76.58536585365853,35.55017431582034],[-76.60696606966069,35.54173142947093],[-76.64656646566465,35.52146850223234],[-76.6321663216632,35.518091347692575],[-76.62136621366213,35.511337038613036],[-76.61416614166141,35.50289415226362],[-76.60696606966069,35.49276268864433],[-76.61776617766178,35.470811184135854],[-76.62136621366213,35.4657454523262],[-76.60696606966069,35.45223683416714],[-76.59976599765997,35.4471711023575],[-76.59256592565926,35.443793947817724],[-76.59256592565926,35.43872821600809],[-76.59976599765997,35.43535106146831],[-76.59976599765997,35.43197390692855],[-76.60336603366034,35.428596752388785],[-76.60696606966069,35.42521959784902],[-76.59616596165961,35.42184244330926],[-76.5889658896589,35.41677671149961],[-76.58176581765817,35.41171097968996],[-76.57816578165782,35.40326809334054],[-76.59976599765997,35.39482520699113],[-76.62856628566286,35.39989093880078],[-76.65016650166501,35.41508813422972],[-76.64656646566465,35.43872821600809],[-76.65736657366573,35.4370396387382],[-76.66456664566645,35.433662484198436],[-76.67176671766717,35.43028532965867],[-76.67536675366753,35.42521959784902],[-76.70416704167042,35.43028532965867],[-76.7581675816758,35.41846528876948],[-76.77976779767798,35.428596752388785],[-76.80136801368013,35.44548252508761],[-76.82296822968229,35.45223683416714],[-76.87336873368733,35.45899114324668],[-76.90216902169021,35.4657454523262],[-76.94896948969489,35.48769695683468],[-76.99576995769958,35.49782842045397],[-77.01377013770137,35.50795988407327],[-77.05337053370533,35.53497712039139],[-77.03537035370353,35.50458272953351],[-77.02457024570245,35.491074111374445],[-77.01377013770137,35.486008379564794],[-76.99576995769958,35.48094264775514],[-76.98496984969849,35.469122606865966],[-76.97776977769777,35.43872821600809],[-76.94536945369454,35.45223683416714],[-76.90216902169021,35.443793947817724],[-76.86256862568625,35.423531020579134],[-76.83376833768337,35.40326809334054],[-76.81576815768157,35.39651378426102],[-76.7581675816758,35.38469374337184],[-76.69336693366934,35.35429935251395],[-76.61056610566105,35.33741357981512],[-76.52056520565205,35.31377349803677],[-76.49536495364953,35.31208492076688],[-76.49536495364953,35.3002648798777],[-76.48816488164881,35.29182199352829],[-76.47376473764737,35.27662479809935],[-76.47016470164701,35.26987048901981],[-76.4809648096481,35.25298471632098],[-76.48456484564845,35.24285325270169],[-76.49176491764918,35.22934463454263],[-76.5169651696517,35.231033211812516],[-76.56376563765637,35.23947609816193],[-76.56376563765637,35.23272178908239],[-76.54216542165422,35.224278902732976],[-76.53136531365313,35.21752459365345],[-76.52416524165241,35.20908170730404],[-76.53136531365313,35.20063882095462],[-76.54576545765457,35.2023273982245],[-76.57096570965709,35.2124588618438],[-76.5889658896589,35.20908170730404],[-76.59976599765997,35.2023273982245],[-76.61056610566105,35.19388451187508],[-76.61776617766178,35.19050735733532],[-76.6321663216632,35.19050735733532],[-76.65016650166501,35.18713020279556],[-76.66456664566645,35.18037589371603],[-76.67536675366753,35.17024443009673],[-76.66096660966609,35.16686727555697],[-76.62136621366213,35.16517869828708],[-76.60696606966069,35.15842438920755],[-76.59976599765997,35.15167008012803],[-76.5889658896589,35.14998150285814],[-76.57096570965709,35.156735811937665],[-76.57816578165782,35.15842438920755],[-76.58176581765817,35.161801543747316],[-76.58536585365853,35.16517869828708],[-76.58536585365853,35.17024443009673],[-76.57096570965709,35.178687316446144],[-76.55656556565565,35.14998150285814],[-76.56016560165601,35.1246528438099],[-76.58176581765817,35.106078493841196],[-76.61416614166141,35.09594703022189],[-76.60696606966069,35.079061257523065],[-76.6429664296643,35.058798330284475],[-76.68616686166861,35.036846825775996],[-76.70776707767077,35.02333820761693],[-76.72576725767257,35.001386703108466],[-76.76536765367653,34.98956666221929],[-76.80856808568085,34.9878780849494],[-76.83736837368373,34.99294381675905],[-76.87336873368733,35.00814101218799],[-76.90216902169021,35.02671536215671],[-76.94536945369454,35.06892979390378],[-76.95976959769597,35.0756841029833],[-76.99576995769958,35.08750414387248],[-77.04257042570426,35.143227193778614],[-77.07857078570785,35.156735811937665],[-77.03537035370353,35.099324184761656],[-77.03537035370353,35.08919272114237],[-77.01377013770137,35.080749834792954],[-76.99936999369993,35.06217548482424],[-76.97776977769777,35.01996105307717],[-76.94176941769418,34.97943519859999],[-76.89856898568985,34.96423800317105],[-76.85536855368554,34.95748369409151],[-76.8049680496805,34.94397507593246],[-76.77256772567725,34.92371214869385],[-76.76536765367653,34.91695783961433],[-76.76176761767617,34.911892107804675],[-76.7581675816758,34.9102035305348],[-76.75096750967509,34.911892107804675],[-76.74016740167401,34.92202357142398],[-76.7149671496715,34.93046645777339],[-76.69696696966969,34.94397507593246],[-76.6789667896679,34.959172271361396],[-76.66096660966609,34.97268088952046],[-76.6429664296643,34.98450093040964],[-76.6321663216632,34.9878780849494],[-76.62136621366213,34.98618950767951],[-76.61056610566105,34.981123775869875],[-76.60336603366034,34.97099231225057],[-76.59616596165961,34.96254942590116],[-76.59616596165961,34.95748369409151],[-76.57816578165782,34.95072938501198],[-76.55656556565565,34.93722076685292],[-76.53856538565385,34.932155035043266],[-76.54576545765457,34.95072938501198],[-76.56736567365674,34.97943519859999],[-76.56736567365674,34.99294381675905],[-76.54936549365493,34.99969812583858],[-76.53496534965349,34.99969812583858],[-76.5169651696517,34.9980095485687],[-76.50256502565026,34.98956666221929],[-76.48816488164881,34.97268088952046],[-76.48456484564845,34.9878780849494],[-76.48456484564845,35.001386703108466],[-76.48456484564845,35.01489532126753],[-76.48456484564845,35.02671536215671],[-76.47736477364774,35.04191255758565],[-76.46656466564666,35.06048690755436],[-76.45216452164522,35.073995525713414],[-76.44856448564485,35.07230694844354],[-76.44496444964449,35.06724121663389],[-76.43776437764377,35.05542117574471],[-76.43416434164341,35.05035544393506],[-76.43776437764377,35.04191255758565],[-76.44136441364414,35.02502678488682],[-76.44136441364414,35.016583898537405],[-76.42336423364233,34.996320971298815],[-76.41976419764197,34.98618950767951],[-76.42336423364233,34.981123775869875],[-76.44856448564485,34.969303734980684],[-76.45936459364593,34.97099231225057],[-76.4629646296463,34.96761515771081],[-76.47016470164701,34.95748369409151],[-76.47016470164701,34.95072938501198],[-76.46656466564666,34.94397507593246],[-76.4629646296463,34.94059792139268],[-76.45576455764558,34.93722076685292],[-76.44136441364414,34.938909344122806],[-76.39456394563945,34.95072938501198],[-76.38736387363873,34.94735223047222],[-76.37656376563766,34.96592658044092],[-76.3549635496355,34.97268088952046],[-76.33336333363333,34.97268088952046],[-76.32616326163262,34.976058044060224],[-76.32976329763298,34.99125523948916],[-76.34416344163441,35.011518166727754],[-76.35136351363514,35.02671536215671],[-76.32256322563225,35.01996105307717],[-76.30816308163081,35.00307528037834],[-76.29376293762937,34.98450093040964],[-76.26856268562685,34.97268088952046],[-76.26856268562685,34.96592658044092],[-76.27936279362794,34.959172271361396],[-76.29376293762937,34.94397507593246],[-76.30456304563046,34.93722076685292],[-76.31896318963189,34.93722076685292],[-76.33336333363333,34.94059792139268],[-76.34056340563406,34.938909344122806],[-76.34776347763477,34.92371214869385],[-76.34416344163441,34.913580685074564],[-76.3369633696337,34.90851495326491],[-76.3369633696337,34.9000720669155],[-76.34776347763477,34.88318629421667],[-76.3549635496355,34.87812056240702],[-76.39456394563945,34.86292336697808],[-76.39456394563945,34.86798909878773],[-76.40176401764018,34.87812056240702],[-76.40176401764018,34.88318629421667],[-76.40896408964089,34.88318629421667],[-76.41256412564125,34.876431985137145],[-76.41256412564125,34.85954621243832],[-76.41616416164162,34.849414748819015],[-76.41976419764197,34.83928328519973],[-76.4269642696427,34.834217553390076],[-76.44136441364414,34.8223975125009],[-76.47736477364774,34.786937389833355],[-76.48456484564845,34.78187165802372],[-76.49176491764918,34.77849450348394],[-76.49896498964989,34.77511734894418],[-76.50256502565026,34.766674462594764],[-76.50256502565026,34.76160873078511],[-76.49896498964989,34.75485442170559],[-76.49896498964989,34.74810011262606],[-76.50256502565026,34.73965722627665],[-76.51336513365133,34.734591494467],[-76.52416524165241,34.731214339927234],[-76.54576545765457,34.73290291719711],[-76.56736567365674,34.73796864900676],[-76.58536585365853,34.751477267165825],[-76.5889658896589,34.766674462594764],[-76.57096570965709,34.78018308075383],[-76.59256592565926,34.79706885345266],[-76.60696606966069,34.813954626151485],[-76.61416614166141,34.81564320342136],[-76.62136621366213,34.731214339927234],[-76.6321663216632,34.709262835418755],[-76.65736657366573,34.72108287630793],[-76.66456664566645,34.74134580354652],[-76.66816668166682,34.76836303986465],[-76.67176671766717,34.79031454437313],[-76.68616686166861,34.80044600799242],[-76.71136711367113,34.79706885345266],[-76.73296732967329,34.78524881256348],[-76.75456754567546,34.77005161713453],[-76.77256772567725,34.7531658444357],[-76.75456754567546,34.75485442170559],[-76.74736747367473,34.756542998975476],[-76.73656736567365,34.75992015351524],[-76.72936729367294,34.766674462594764],[-76.70776707767077,34.73796864900676],[-76.70056700567005,34.72614860811758],[-76.8949689496895,34.73965722627665],[-76.92736927369273,34.72108287630793],[-77.07137071370714,34.6856227536404],[-77.08217082170822,34.68055702183075],[-77.0929709297093,34.67717986729099],[-77.10377103771037,34.683934176370514],[-77.10377103771037,34.694065639989816],[-77.08577085770857,34.70588568087899],[-77.10737107371074,34.73290291719711],[-77.11457114571145,34.756542998975476],[-77.11457114571145,34.75992015351524],[-77.13257132571326,34.76160873078511],[-77.13257132571326,34.74810011262606],[-77.12537125371253,34.731214339927234],[-77.12177121771218,34.72614860811758],[-77.12177121771218,34.70757425814887],[-77.1289712897129,34.694065639989816],[-77.13617136171361,34.68224559910064],[-77.1469714697147,34.67717986729099],[-77.15417154171541,34.68055702183075],[-77.16137161371613,34.687311330910276],[-77.16497164971649,34.69237706271993],[-77.17577175771757,34.69068848545004],[-77.17577175771757,34.6856227536404],[-77.16857168571686,34.667048403671686],[-77.17217172171722,34.66367124913192],[-77.20097200972009,34.65016263097286],[-77.2549725497255,34.59443958106674],[-77.28017280172801,34.58093096290767],[-77.29457294572946,34.579242385637784],[-77.31977319773198,34.564045190208844],[-77.33777337773377,34.56066803566908],[-77.35577355773557,34.57755380836791],[-77.35937359373594,34.57755380836791],[-77.36657366573665,34.58261954017755],[-77.40257402574025,34.589373849257086],[-77.38817388173881,34.60288246741615],[-77.34137341373413,34.631588281004156],[-77.33417334173342,34.65016263097286],[-77.34137341373413,34.66029409459216],[-77.37737377373773,34.70081994906934],[-77.39537395373954,34.71263998995852],[-77.39537395373954,34.71770572176817],[-77.37737377373773,34.71939429903806],[-77.37377373773738,34.724460030847695],[-77.3809738097381,34.73290291719711],[-77.39537395373954,34.73965722627665],[-77.40257402574025,34.73965722627665],[-77.41337413374133,34.73796864900676],[-77.42417424174242,34.73965722627665],[-77.4349743497435,34.7531658444357],[-77.42777427774277,34.70081994906934],[-77.42057420574206,34.683934176370514],[-77.40977409774098,34.69068848545004],[-77.39537395373954,34.683934176370514],[-77.38817388173881,34.67042555821145],[-77.3809738097381,34.6569169400524],[-77.3809738097381,34.631588281004156],[-77.39537395373954,34.61976824011498],[-77.41337413374133,34.6163910855752],[-77.42057420574206,34.61976824011498],[-77.42777427774277,34.62314539465474],[-77.4349743497435,34.62314539465474],[-77.44577445774458,34.61807966284509],[-77.44937449374494,34.60963677649568],[-77.44577445774458,34.60119389014626],[-77.43857438574385,34.589373849257086],[-77.42777427774277,34.579242385637784],[-77.41697416974169,34.57417665382815],[-77.3989739897399,34.57079949928837],[-77.38457384573846,34.562356612938956],[-77.37737377373773,34.55053657204978],[-77.38817388173881,34.54040510843049],[-77.38817388173881,34.53365079935095],[-77.3809738097381,34.53027364481119],[-77.37737377373773,34.526896490271426],[-77.38817388173881,34.521830758461775],[-77.40257402574025,34.51845360392201],[-77.45657456574565,34.50494498576295],[-77.53577535775358,34.46779628582553],[-77.6689766897669,34.376613113251864],[-77.73017730177301,34.31582433153609],[-77.78417784177842,34.24659266347089],[-77.81657816578165,34.22295258169254],[-77.83097830978309,34.2077553862636],[-77.84537845378453,34.17567241813582],[-77.86697866978669,34.1385237181984],[-77.87417874178742,34.12163794549957],[-77.89217892178921,34.011880422957205],[-77.91017910179102,33.95784595032096],[-77.94257942579425,33.93082871400283],[-77.93537935379354,33.949403063971545],[-77.93177931779317,33.95784595032096],[-77.93537935379354,33.964600259400484],[-77.93537935379354,33.97135456848001],[-77.9209792097921,34.0017489593379],[-77.92817928179281,34.0794235137525],[-77.9209792097921,34.10812932734052],[-77.9389793897939,34.14696660454781],[-77.95697956979569,34.19086961356477],[-77.96417964179642,34.19086961356477],[-77.96417964179642,34.16385237724664],[-77.95337953379533,34.09124355464169],[-77.94257942579425,34.067603472863325],[-77.94977949779498,34.054094854704275],[-77.94977949779498,34.03720908200545],[-77.94977949779498,34.00343753660779],[-77.95337953379533,33.989928918448726],[-77.97137971379713,33.95278021851131],[-78.00738007380073,33.90550005495459],[-78.01818018180181,33.89705716860517],[-78.03258032580325,33.891991436795536],[-78.05058050580506,33.89368001406541],[-78.14058140581406,33.91563151857389],[-78.15858158581585,33.91732009584376],[-78.21258212582126,33.91563151857389],[-78.2269822698227,33.92069725038354],[-78.25218252182522,33.92576298219318],[-78.3349833498335,33.91056578676424],[-78.36738367383674,33.91732009584376],[-78.36378363783638,33.9240744049233],[-78.36018360183601,33.93251729127272],[-78.36738367383674,33.95109164124142],[-78.37458374583746,33.95109164124142],[-78.38538385383853,33.922385827653414],[-78.40698406984069,33.91056578676424],[-78.47178471784717,33.89705716860517],[-78.55818558185581,33.86835135501717],[-78.5509855098551,33.880171395906345],[-78.54378543785438,33.88354855044612],[-78.54378543785438,33.89030285952565],[-78.60138601386014,33.87510566409671],[-78.60138601386014,33.86835135501717],[-78.59058590585906,33.86835135501717],[-78.58338583385833,33.86328562320752],[-78.57618576185762,33.85653131412799],[-78.57258572585725,33.84808842777858],[-78.61578615786158,33.8463998505087],[-78.65538655386554,33.83120265507975],[-78.76338763387633,33.77885675971339],[-78.86778867788678,33.704559359838555],[-78.93618936189361,33.642082000852895],[-79.02979029790298,33.5340130555804],[-79.13419134191342,33.417501223958496],[-79.15579155791558,33.375286792211426],[-79.14859148591485,33.36853248313189],[-79.15579155791558,33.3584010195126],[-79.1809918099181,33.24188918789069],[-79.18459184591846,33.21824910611234],[-79.18819188191881,33.21824910611234],[-79.19899198991989,33.23175772427139],[-79.19899198991989,33.26890642420881],[-79.20259202592025,33.287480774177524],[-79.21339213392133,33.30098939233659],[-79.22779227792277,33.306055124146226],[-79.26739267392674,33.306055124146226],[-79.2709927099271,33.31787516503542],[-79.26379263792637,33.33982666954388],[-79.23859238592385,33.3871068331006],[-79.20259202592025,33.42256695576813],[-79.18819188191881,33.43100984211755],[-79.18819188191881,33.43776415119709],[-79.21339213392133,33.427632687577784],[-79.23139231392314,33.412435492148845],[-79.27819278192781,33.3584010195126],[-79.28899288992889,33.33982666954388],[-79.29619296192962,33.31787516503542],[-79.29979299792997,33.29761223779681],[-79.29259292592926,33.27734931055822],[-79.2709927099271,33.26215211512928],[-79.24939249392493,33.250332074240106],[-79.21339213392133,33.24188918789069],[-79.20979209792098,33.23344630154128],[-79.21339213392133,33.223314837921976],[-79.20979209792098,33.2114947970328],[-79.20259202592025,33.1929204470641],[-79.19899198991989,33.187854715254446],[-79.18459184591846,33.18447756071468],[-79.19539195391954,33.17603467436527],[-79.20979209792098,33.167591788015855],[-79.22419224192241,33.15746032439655],[-79.23139231392314,33.14226312896761],[-79.23859238592385,33.14901743804714],[-79.24579245792458,33.167591788015855],[-79.25659256592566,33.17096894255562],[-79.26739267392674,33.16590321074597],[-79.2709927099271,33.15577174712668],[-79.26379263792637,33.145640283507376],[-79.2529925299253,33.135508819888074],[-79.25659256592566,33.13044308807844],[-79.26019260192602,33.127065933538674],[-79.26739267392674,33.1236887789989],[-79.2709927099271,33.12200020172902],[-79.27819278192781,33.13888597442785],[-79.29619296192962,33.14901743804714],[-79.32139321393214,33.15408316985679],[-79.33939339393393,33.15577174712668],[-79.32859328593285,33.14226312896761],[-79.3069930699307,33.13719739715796],[-79.28899288992889,33.13044308807844],[-79.29259292592926,33.10849158356996],[-79.3069930699307,33.09498296541089],[-79.35019350193501,33.078097192712065],[-79.37179371793718,33.064588574553014],[-79.3789937899379,33.0460142245843],[-79.3789937899379,33.02912845188547],[-79.38619386193862,33.01730841099629],[-79.41139411394114,33.01224267918664],[-79.43659436594366,33.01055410191677],[-79.45819458194582,33.00717694737699],[-79.47619476194761,33.000422638297465],[-79.49059490594905,32.99197975194805],[-79.49419494194942,33.00211121556735],[-79.50859508595086,33.022374142805944],[-79.51219512195122,33.02912845188547],[-79.51939519395194,33.040948492774646],[-79.53739537395374,33.035882760964995],[-79.56979569795698,33.01899698826618],[-79.58419584195842,33.01393125645653],[-79.59859598595986,33.000422638297465],[-79.62379623796238,32.95483105201063],[-79.62379623796238,32.943011011121456],[-79.62019620196202,32.932879547502154],[-79.60579605796057,32.915993774803326],[-79.60219602196021,32.92443666115274],[-79.5949959499595,32.92950239296239],[-79.58419584195842,32.93456812477204],[-79.57339573395734,32.936256702041916],[-79.58059580595805,32.92105950661298],[-79.58779587795878,32.91430519753345],[-79.63819638196382,32.890665115755084],[-79.64539645396454,32.88897653848521],[-79.65259652596525,32.88559938394545],[-79.65979659796598,32.87884507486591],[-79.65979659796598,32.87209076578638],[-79.6669966699667,32.86871361124662],[-79.69219692196921,32.860270724897205],[-79.71379713797138,32.840007797658615],[-79.72819728197281,32.818056293150136],[-79.74619746197462,32.79948194318142],[-79.80019800198002,32.7724647068633],[-79.82899828998289,32.762333243244],[-79.85059850598506,32.75895608870424],[-79.86139861398614,32.76402182051389],[-79.87219872198722,32.775841861403066],[-79.8829988299883,32.78766190229224],[-79.89739897398974,32.792727634101894],[-79.90459904599045,32.80117052045131],[-79.89739897398974,32.81636771588025],[-79.87579875798758,32.84169637492849],[-79.89379893798937,32.855204993087554],[-79.89739897398974,32.85182783854779],[-79.90459904599045,32.84507352946825],[-79.90459904599045,32.838319220388726],[-79.90459904599045,32.83494206584896],[-79.9369993699937,32.853516415817666],[-79.94419944199441,32.85182783854779],[-79.94059940599405,32.838319220388726],[-79.93339933399334,32.812990561340484],[-79.92979929799297,32.79610478864166],[-79.93339933399334,32.78259617048259],[-79.94419944199441,32.78259617048259],[-79.95859958599586,32.78935047956213],[-79.9729997299973,32.79948194318142],[-79.96939969399693,32.78597332502237],[-79.95859958599586,32.7724647068633],[-79.94419944199441,32.762333243244],[-79.90819908199082,32.755578934164475],[-79.89739897398974,32.748824625084936],[-79.89379893798937,32.73869316146565],[-79.87939879398793,32.73193885238612],[-79.87579875798758,32.73193885238612],[-79.87579875798758,32.73869316146565],[-79.86859868598685,32.73869316146565],[-79.87219872198722,32.708298770607755],[-79.88659886598866,32.688035843369164],[-79.94419944199441,32.652575720701634],[-79.95499954999549,32.64919856616186],[-79.98019980199801,32.64919856616186],[-80.00540005400053,32.652575720701634],[-80.01620016200161,32.65426429797151],[-80.0270002700027,32.64919856616186],[-80.0270002700027,32.64244425708233],[-80.00180001800018,32.62893563892327],[-79.99459994599945,32.61880417530398],[-80.00540005400053,32.61204986622444],[-80.05940059400594,32.603606979875025],[-80.10260102601026,32.590098361715974],[-80.12420124201242,32.588409784446085],[-80.14940149401494,32.58165547536656],[-80.16380163801638,32.56983543447738],[-80.17820178201782,32.566458279937606],[-80.19980199801998,32.58503262990632],[-80.23220232202321,32.61373844349433],[-80.25020250202502,32.62386990711363],[-80.26460264602646,32.62218132984374],[-80.25380253802538,32.608672711684676],[-80.20700207002069,32.573212589017146],[-80.20340203402034,32.57152401174726],[-80.19980199801998,32.56983543447738],[-80.20340203402034,32.56139254812797],[-80.21060210602106,32.55126108450867],[-80.22140221402213,32.546195352699016],[-80.23220232202321,32.54281819815925],[-80.30420304203042,32.49722661187242],[-80.3150031500315,32.49384945733266],[-80.32220322203221,32.48878372552301],[-80.33300333003329,32.48709514825312],[-80.34380343803437,32.49553803460253],[-80.3510035100351,32.505669498221835],[-80.3510035100351,32.51748953911101],[-80.35460354603546,32.527621002730314],[-80.36900369003689,32.53268673453995],[-80.36540365403654,32.51748953911101],[-80.36900369003689,32.49891518914231],[-80.37980379803798,32.483717993713356],[-80.39420394203941,32.478652261903704],[-80.40860408604085,32.48034083917359],[-80.41940419404193,32.48878372552301],[-80.42660426604266,32.49722661187242],[-80.44460444604445,32.505669498221835],[-80.46260462604626,32.5090466527616],[-80.4770047700477,32.5090466527616],[-80.48780487804878,32.51242380730136],[-80.52380523805238,32.53944104361949],[-80.5310053100531,32.547883929968904],[-80.53820538205382,32.56139254812797],[-80.54540545405453,32.56139254812797],[-80.5490054900549,32.54957250723878],[-80.54540545405453,32.5377524663496],[-80.53820538205382,32.527621002730314],[-80.53460534605345,32.5191781163809],[-80.55620556205562,32.51580096184114],[-80.62820628206282,32.525932425460425],[-80.66060660606605,32.525932425460425],[-80.67140671406713,32.520866693650774],[-80.67860678606786,32.510735230031486],[-80.67860678606786,32.49722661187242],[-80.66060660606605,32.505669498221835],[-80.57060570605705,32.49216088006277],[-80.55980559805597,32.49216088006277],[-80.54180541805418,32.49722661187242],[-80.5310053100531,32.49722661187242],[-80.51660516605166,32.49553803460253],[-80.49140491404914,32.483717993713356],[-80.4770047700477,32.478652261903704],[-80.4770047700477,32.47020937555429],[-80.50580505805058,32.47189795282418],[-80.53460534605345,32.47020937555429],[-80.56340563405634,32.46514364374465],[-80.58860588605886,32.45670075739524],[-80.49500495004949,32.4499464483157],[-80.46980469804697,32.441503561966286],[-80.4590045900459,32.422929211997584],[-80.46260462604626,32.40435486202887],[-80.50580505805058,32.38915766659993],[-80.5310053100531,32.37396047117099],[-80.5490054900549,32.35707469847216],[-80.54540545405453,32.34694323485286],[-80.52740527405274,32.34863181212275],[-80.50220502205022,32.358763275742035],[-80.4770047700477,32.3722718939011],[-80.46620466204662,32.3824033575204],[-80.44820448204482,32.39422339840958],[-80.4410044100441,32.400977707489105],[-80.43740437404374,32.40942059383852],[-80.43020430204302,32.40942059383852],[-80.43380433804337,32.39084624386982],[-80.4410044100441,32.365517584821575],[-80.45180451804518,32.35032038939262],[-80.46620466204662,32.35538612120227],[-80.46980469804697,32.35538612120227],[-80.46980469804697,32.34863181212275],[-80.47340473404734,32.34863181212275],[-80.4770047700477,32.34694323485286],[-80.4590045900459,32.33681177123357],[-80.46980469804697,32.323303153074505],[-80.55260552605526,32.27940014405755],[-80.56340563405634,32.27771156678767],[-80.58140581405814,32.27940014405755],[-80.58860588605886,32.27940014405755],[-80.62460624606246,32.26251437135872],[-80.63540635406353,32.26758010316837],[-80.64260642606426,32.29290876221661],[-80.64260642606426,32.31992599853474],[-80.62820628206282,32.3824033575204],[-80.66420664206642,32.36889473936134],[-80.67140671406713,32.37396047117099],[-80.64980649806498,32.44488071650606],[-80.6570065700657,32.463455066474765],[-80.68220682206822,32.46514364374465],[-80.68220682206822,32.45670075739524],[-80.67860678606786,32.45501218012535],[-80.6750067500675,32.45501218012535],[-80.67140671406713,32.45670075739524],[-80.66780667806678,32.45332360285548],[-80.66420664206642,32.4499464483157],[-80.67140671406713,32.43981498469641],[-80.67860678606786,32.42630636653735],[-80.67860678606786,32.35707469847216],[-80.6750067500675,32.35032038939262],[-80.66420664206642,32.33343461669379],[-80.66420664206642,32.323303153074505],[-80.66780667806678,32.30472880310579],[-80.67860678606786,32.303040225835915],[-80.6930069300693,32.30979453491544],[-80.75780757807578,32.360451853011924],[-80.7830078300783,32.416174902918044],[-80.79740797407973,32.45332360285548],[-80.79740797407973,32.47358653009407],[-80.7830078300783,32.49216088006277],[-80.78660786607865,32.49722661187242],[-80.79740797407973,32.49891518914231],[-80.81540815408154,32.505669498221835],[-80.82260822608225,32.51748953911101],[-80.82620826208262,32.530998157270076],[-80.8370083700837,32.53944104361949],[-80.8550085500855,32.53944104361949],[-80.8550085500855,32.53268673453995],[-80.84420844208442,32.52424384819054],[-80.82980829808298,32.49553803460253],[-80.8190081900819,32.485406570983244],[-80.8190081900819,32.478652261903704],[-80.82980829808298,32.45501218012535],[-80.81540815408154,32.41955205745782],[-80.79740797407973,32.3824033575204],[-80.78660786607865,32.35707469847216],[-80.79740797407973,32.33343461669379],[-80.79740797407973,32.31992599853474],[-80.7830078300783,32.3131716894552],[-80.77580775807758,32.30641738037568],[-80.74340743407434,32.25913721681896],[-80.72540725407254,32.265891525898496],[-80.7110071100711,32.26251437135872],[-80.70020700207002,32.254071485009305],[-80.68940689406894,32.24394002139002],[-80.67860678606786,32.2253656714213],[-80.67860678606786,32.21523420780201],[-80.70380703807038,32.18990554875377],[-80.73620736207361,32.15275684881635],[-80.8190081900819,32.108853839799394],[-80.81180811808117,32.14431396246694],[-80.77580775807758,32.2067913214526],[-80.77940779407794,32.24394002139002],[-80.78660786607865,32.2354971350406],[-80.79020790207902,32.22367709415143],[-80.79020790207902,32.21016847599236],[-80.79380793807938,32.196659857833296],[-80.8010080100801,32.18652839421401],[-80.82260822608225,32.16626546697542],[-80.82980829808298,32.15951115789588],[-80.83340833408333,32.134182498847636],[-80.84060840608406,32.115608148878934],[-80.88740887408873,32.0700165625921],[-80.89460894608946,32.058196521702925],[-80.89460894608946,32.046376480813734],[-80.8910089100891,32.03286786265468],[-80.8910089100891,32.031179285384795],[-80.88020880208802,32.026113553575144],[-80.86580865808658,32.026113553575144],[-80.84780847808477,32.02273639903538],[-80.8370083700837,32.00247347179679],[-80.8550085500855,31.9822105445582],[-80.90180901809018,31.950127576430432],[-80.91260912609125,31.95519330824007],[-80.91980919809198,31.965324771859372],[-80.92340923409233,31.973767658208786],[-80.92340923409233,31.97714481274855],[-80.93780937809377,31.97714481274855],[-80.9450094500945,31.968701926399135],[-80.94860948609485,31.96194761731961],[-80.95580955809558,31.956881885509958],[-80.9630096300963,31.948438999160544],[-80.9630096300963,31.929864649191828],[-80.94860948609485,31.912978876493],[-80.92340923409233,31.909601721953237],[-80.95940959409593,31.87920733109536],[-80.9810098100981,31.865698712936293],[-80.99540995409954,31.864010135666405],[-81.01341013410133,31.874141599285707],[-81.05661056610566,31.88258448563512],[-81.07461074610745,31.887650217444772],[-81.08181081810818,31.896093103794186],[-81.08541085410853,31.907913144683363],[-81.09621096210962,31.916356031032777],[-81.1070110701107,31.916356031032777],[-81.11781117811178,31.907913144683363],[-81.11061110611105,31.89778168106406],[-81.09261092610926,31.884273062904995],[-81.0890108901089,31.87583017655558],[-81.12861128611286,31.867387290206167],[-81.1430114301143,31.85556724931699],[-81.0890108901089,31.847124362967577],[-81.08181081810818,31.843747208427814],[-81.06021060210601,31.826861435728986],[-81.04581045810458,31.828550012998875],[-81.03861038610385,31.826861435728986],[-81.04941049410493,31.81335281756992],[-81.06021060210601,31.788024158521694],[-81.09261092610926,31.754252613124038],[-81.1070110701107,31.74243257223486],[-81.11781117811178,31.73736684042521],[-81.17181171811718,31.73736684042521],[-81.20421204212042,31.740743994964973],[-81.22941229412294,31.754252613124038],[-81.24021240212402,31.762695499473452],[-81.25461254612546,31.769449808552977],[-81.26541265412654,31.77282696309274],[-81.27261272612726,31.766072654013215],[-81.2690126901269,31.75087545858426],[-81.25461254612546,31.744121149504736],[-81.22581225812257,31.73736684042521],[-81.1970119701197,31.71710391318662],[-81.20061200612005,31.70021814048779],[-81.24021240212402,31.663069440550373],[-81.2510125101251,31.64787224512142],[-81.25821258212582,31.63267504969248],[-81.30141301413013,31.57019769070682],[-81.31941319413194,31.56513195889717],[-81.33021330213302,31.551623340738104],[-81.33381333813338,31.54486903165858],[-81.31941319413194,31.5229175271501],[-81.32661326613265,31.50265459991151],[-81.32661326613265,31.497588868101857],[-81.32661326613265,31.49252313629222],[-81.32661326613265,31.48576882721268],[-81.33021330213302,31.46719447724398],[-81.36621366213662,31.438488663655974],[-81.36261362613625,31.416537159147495],[-81.34821348213482,31.389519922829365],[-81.33381333813338,31.3675684183209],[-81.32661326613265,31.348994068352184],[-81.33741337413373,31.34223975927266],[-81.42741427414273,31.352371222891946],[-81.4490144901449,31.36081410924136],[-81.47061470614706,31.372634150130537],[-81.48141481414814,31.374322727400425],[-81.49221492214922,31.3675684183209],[-81.4670146701467,31.34730549108231],[-81.42741427414273,31.333796872923244],[-81.38061380613806,31.323665409303942],[-81.34461344613446,31.32028825476418],[-81.32661326613265,31.315222522954528],[-81.28341283412834,31.288205286636412],[-81.2690126901269,31.274696668477347],[-81.2690126901269,31.259499473048407],[-81.27621276212761,31.23585939127004],[-81.28701287012869,31.2206621958411],[-81.30861308613086,31.230793659460403],[-81.34461344613446,31.18013634136392],[-81.36621366213662,31.15311910504579],[-81.38421384213842,31.141299064156613],[-81.40941409414094,31.1429876414265],[-81.41661416614166,31.149741950506026],[-81.42021420214202,31.15987341412533],[-81.41661416614166,31.207153577682035],[-81.42381423814238,31.218973618571212],[-81.44541445414454,31.217285041301338],[-81.45621456214562,31.20546500041216],[-81.45621456214562,31.190267804983208],[-81.4490144901449,31.151430527775915],[-81.44541445414454,31.131167600537324],[-81.45261452614525,31.11765898237826],[-81.48861488614885,31.1328561778072],[-81.49581495814958,31.126101868727673],[-81.49221492214922,31.114281827838496],[-81.46341463414633,31.102461786949306],[-81.44181441814418,31.082198859710715],[-81.4310143101431,31.0737559733613],[-81.4310143101431,31.09401890059989],[-81.42381423814238,31.104150364219194],[-81.40221402214021,31.121036136918022],[-81.40581405814058,31.09401890059989],[-81.42381423814238,31.024787232534706],[-81.4310143101431,31.024787232534706],[-81.44181441814418,31.045050159773297],[-81.46341463414633,31.067001664281776],[-81.48861488614885,31.085576014250478],[-81.51381513815137,31.09401890059989],[-81.49941499414994,31.07544455063119],[-81.45981459814598,31.03829585069377],[-81.4490144901449,31.021410077994943],[-81.45621456214562,31.001147150756353],[-81.47421474214742,30.99270426440694],[-81.5210152101521,30.984261378057525],[-81.5210152101521,30.97581849170811],[-81.49941499414994,30.967375605358697],[-81.46341463414633,30.96906418262857],[-81.4490144901449,30.963998450818934],[-81.46341463414633,30.94880125538998],[-81.49221492214922,30.918406864532102],[-81.49941499414994,30.904898246373037],[-81.49941499414994,30.899832514563386],[-81.50661506615066,30.88632389640432],[-81.50661506615066,30.881258164594684],[-81.5030150301503,30.87281527824527],[-81.49581495814958,30.86606096916573],[-81.49221492214922,30.859306660086204],[-81.49221492214922,30.847486619197028],[-81.5030150301503,30.85086377373679],[-81.51021510215102,30.85255235100668],[-81.5210152101521,30.854240928276553],[-81.53181531815318,30.854240928276553],[-81.53181531815318,30.847486619197028],[-81.51741517415174,30.842420887387377],[-81.51381513815137,30.832289423768074],[-81.51381513815137,30.818780805609023],[-81.51381513815137,30.805272187449958],[-81.51021510215102,30.796829301100544],[-81.49581495814958,30.78332068294148],[-81.49221492214922,30.771500642052303],[-81.49581495814958,30.749549137543823],[-81.5030150301503,30.72422047849558],[-81.49941499414994,30.712400437606405],[-81.49941499414994,30.70395755125699],[-81.47421474214742,30.695514664907577],[-81.47061470614706,30.697203242177466],[-81.45621456214562,30.702268973987117],[-81.4490144901449,30.702268973987117],[-81.44181441814418,30.70058039671723],[-81.43821438214381,30.695514664907577],[-81.43821438214381,30.692137510367814],[-81.43461434614346,30.68876035582805],[-81.42741427414273,30.682006046748526],[-81.4310143101431,30.6651202740497],[-81.43821438214381,30.638103037731568],[-81.44181441814418,30.55367417423743],[-81.43821438214381,30.52327978337955],[-81.45261452614525,30.535099824268727],[-81.46341463414633,30.548608442427792],[-81.46341463414633,30.567182792396494],[-81.46341463414633,30.589134296904973],[-81.4670146701467,30.59926576052426],[-81.47061470614706,30.609397224143564],[-81.48141481414814,30.617840110492978],[-81.48861488614885,30.62121726503274],[-81.49941499414994,30.617840110492978],[-81.49941499414994,30.609397224143564],[-81.49941499414994,30.587445719635085],[-81.5030150301503,30.568871369666383],[-81.49941499414994,30.551985596967555],[-81.49221492214922,30.5367884015386],[-81.47421474214742,30.531722669728964],[-81.47421474214742,30.528345515189187],[-81.4490144901449,30.508082587950597],[-81.44181441814418,30.499639701601183],[-81.43461434614346,30.484442506172243],[-81.4310143101431,30.477688197092718],[-81.42381423814238,30.470933888013178],[-81.42021420214202,30.469245310743304],[-81.41661416614166,30.465868156203527],[-81.40941409414094,30.45573669258424],[-81.40581405814058,30.443916651695062],[-81.40941409414094,30.41183368356728],[-81.40581405814058,30.405079374487755],[-81.39861398613986,30.400013642678104],[-81.39141391413914,30.39325933359858],[-81.38781387813877,30.384816447249165],[-81.3950139501395,30.339224860962332],[-81.3950139501395,30.29869900648515],[-81.36261362613625,30.18894148394277],[-81.35541355413554,30.170367133974068],[-81.32661326613265,30.052166725082273],[-81.28701287012869,29.925523429841064],[-81.29421294212942,29.893440461713297],[-81.28701287012869,29.893440461713297],[-81.27981279812798,29.900194770792837],[-81.27261272612726,29.890063307173534],[-81.27261272612726,29.87655468901447],[-81.26541265412654,29.852914607236116],[-81.26181261812617,29.83940598907705],[-81.25461254612546,29.788748670980567],[-81.2510125101251,29.770174321011865],[-81.24021240212402,29.738091352884098],[-81.22581225812257,29.70938553929608],[-81.21141211412113,29.667171107549024],[-81.18981189811898,29.624956675801954],[-81.18621186211861,29.603005171293475],[-81.1790117901179,29.586119398594647],[-81.13941139411394,29.505067689640285],[-81.0710107101071,29.363227198970137],[-81.00621006210062,29.234895326459053],[-80.9630096300963,29.15215504023479],[-80.93060930609306,29.10149772213832],[-80.91620916209162,29.087989103979254],[-80.92340923409233,29.067726176740663],[-80.90900909009089,29.05759471312136],[-80.8910089100891,29.045774672232184],[-80.88380883808837,29.027200322263468],[-80.87660876608766,29.008625972294766],[-80.74340743407434,28.80768527717872],[-80.67860678606786,28.716502104605055],[-80.62820628206282,28.650647591079633],[-80.5670056700567,28.55777584123608],[-80.54180541805418,28.491921327710656],[-80.52740527405274,28.473346977741954],[-80.54180541805418,28.451395473233475],[-80.55980559805597,28.43282112326476],[-80.5670056700567,28.431132545994885],[-80.57060570605705,28.426066814185234],[-80.57420574205742,28.41762392783582],[-80.58140581405814,28.410869618756294],[-80.59220592205922,28.40749246421653],[-80.59580595805957,28.40242673240688],[-80.59580595805957,28.304489250753676],[-80.6030060300603,28.290980632594625],[-80.59580595805957,28.284226323515085],[-80.59580595805957,28.262274819006606],[-80.59220592205922,28.20824034637036],[-80.57060570605705,28.106925710177407],[-80.55620556205562,28.078219896589403],[-80.55260552605526,28.061334123890575],[-80.5310053100531,28.019119692143505],[-80.45180451804518,27.909362169601124],[-80.45180451804518,27.867147737854054],[-80.47340473404734,27.90767359233125],[-80.4770047700477,27.917805055950538],[-80.48060480604806,27.924559365030078],[-80.5130051300513,27.954953755887956],[-80.52020520205201,27.9904138785555],[-80.58140581405814,28.084974205668928],[-80.61020610206101,28.164337337353416],[-80.62100621006209,28.206551769100486],[-80.61740617406174,28.378786650628513],[-80.58860588605886,28.50542994586972],[-80.58860588605886,28.545955800346903],[-80.59580595805957,28.58479307755421],[-80.59940599405994,28.59999027298315],[-80.61020610206101,28.61012173660245],[-80.62460624606246,28.615187468412103],[-80.64260642606426,28.613498891142214],[-80.64620646206461,28.615187468412103],[-80.64980649806498,28.618564622951865],[-80.6570065700657,28.62025320022174],[-80.66420664206642,28.62025320022174],[-80.66420664206642,28.616876045681977],[-80.66420664206642,28.601678850253037],[-80.66420664206642,28.598301695713275],[-80.6750067500675,28.594924541173498],[-80.68220682206822,28.594924541173498],[-80.74700747007469,28.6050560047928],[-80.7650076500765,28.611810313872326],[-80.77940779407794,28.62700750930128],[-80.7830078300783,28.64220470473022],[-80.7830078300783,28.660779054698935],[-80.77940779407794,28.681041981937526],[-80.77220772207721,28.694550600096576],[-80.7650076500765,28.68948486828694],[-80.75780757807578,28.70299348644599],[-80.75060750607506,28.72494499095447],[-80.75060750607506,28.741830763653297],[-80.79380793807938,28.755339381812362],[-80.82980829808298,28.78235661813048],[-80.84780847808477,28.790799504479892],[-80.83340833408333,28.699616331906228],[-80.8190081900819,28.674287672857986],[-80.8190081900819,28.66753336377846],[-80.82980829808298,28.660779054698935],[-80.79740797407973,28.608433159332563],[-80.79380793807938,28.588170232093972],[-80.79020790207902,28.54764437761679],[-80.7650076500765,28.451395473233475],[-80.75780757807578,28.431132545994885],[-80.73980739807398,28.373720918818876],[-80.70740707407074,28.31968644618263],[-80.70020700207002,28.296046364404262],[-80.54180541805418,27.981970992206087],[-80.37980379803798,27.666207042738023],[-80.34380343803437,27.514235088448572],[-80.19620196201961,27.196782561710634],[-80.19620196201961,27.179896789011806],[-80.20700207002069,27.200159716250397],[-80.21780217802177,27.20860260259981],[-80.25740257402573,27.2187340662191],[-80.2790027900279,27.2288655298384],[-80.28620286202862,27.233931261648053],[-80.29340293402933,27.238996993457704],[-80.30060300603006,27.24406272526734],[-80.3150031500315,27.242374147997467],[-80.30780307803077,27.233931261648053],[-80.28260282602825,27.20860260259981],[-80.27540275402754,27.205225448060048],[-80.2610026100261,27.196782561710634],[-80.25020250202502,27.193405407170857],[-80.22860228602286,27.200159716250397],[-80.22140221402213,27.20184829352027],[-80.18180181801817,27.16301101631298],[-80.17820178201782,27.151190975423802],[-80.14940149401494,27.137682357264737],[-80.14220142201421,27.122485161835797],[-80.13860138601386,27.107287966406844],[-80.11340113401134,27.0633849573899],[-80.09540095400953,27.009350484753654],[-80.07380073800738,26.97389036208611],[-80.07380073800738,26.962070321196933],[-80.08100081000809,26.950250280307756],[-80.09180091800917,26.946873125767993],[-80.10260102601026,26.946873125767993],[-80.11340113401134,26.940118816688454],[-80.11340113401134,26.935053084878817],[-80.10260102601026,26.929987353069166],[-80.08100081000809,26.923233043989626],[-80.07020070200701,26.9164787349101],[-80.0630006300063,26.906347271290812],[-80.03780037800378,26.81178694417737],[-80.03780037800378,26.784769707859255],[-80.05220052200522,26.7695725124303],[-80.05220052200522,26.762818203350776],[-80.04140041400413,26.745932430651948],[-80.03420034200342,26.715538039794055],[-80.03060030600305,26.58720616728297],[-80.03780037800378,26.558500353694967],[-80.05220052200522,26.556811776425093],[-80.0630006300063,26.42172559483447],[-80.07020070200701,26.389642626706703],[-80.07380073800738,26.376134008547638],[-80.07380073800738,26.340673885880108],[-80.07380073800738,26.32378811318128],[-80.08100081000809,26.310279495022215],[-80.07740077400774,26.288327990513736],[-80.10260102601026,26.139733190764062],[-80.11340113401134,26.10933879990617],[-80.12780127801278,26.09920733628688],[-80.12780127801278,26.090764449937467],[-80.11340113401134,26.068812945428988],[-80.12780127801278,25.775000500469403],[-80.1350013500135,25.775000500469403],[-80.1350013500135,25.81721493221646],[-80.12780127801278,25.86280651850329],[-80.12780127801278,25.888135177551533],[-80.13140131401313,25.901643795710598],[-80.14220142201421,25.901643795710598],[-80.17820178201782,25.857740786693654],[-80.18180181801817,25.82228066402611],[-80.19620196201961,25.795263427707994],[-80.19620196201961,25.753048995960924],[-80.21060210602106,25.734474645992208],[-80.22140221402213,25.731097491452445],[-80.23220232202321,25.731097491452445],[-80.23940239402394,25.72940891418257],[-80.25020250202502,25.720966027833157],[-80.25380253802538,25.710834564213854],[-80.25740257402573,25.6871944824355],[-80.2790027900279,25.64498005068843],[-80.30780307803077,25.6179628143703],[-80.31140311403114,25.5993884644016],[-80.31140311403114,25.550419723575004],[-80.31860318603185,25.533533950876176],[-80.33300333003329,25.511582446367697],[-80.34380343803437,25.49300809639898],[-80.34380343803437,25.47443374643028],[-80.34020340203402,25.45417081919169],[-80.33660336603366,25.44741651011215],[-80.32940329403294,25.444039355572386],[-80.32580325803258,25.438973623762735],[-80.33300333003329,25.425465005603684],[-80.34020340203402,25.405202078365093],[-80.33300333003329,25.398447769285553],[-80.32220322203221,25.391693460206028],[-80.31140311403114,25.383250573856614],[-80.3150031500315,25.371430532967437],[-80.3510035100351,25.342724719379433],[-80.39420394203941,25.295444555822712],[-80.40140401404014,25.288690246743187],[-80.40140401404014,25.278558783123884],[-80.4050040500405,25.27011589677447],[-80.4230042300423,25.253230124075642],[-80.4230042300423,25.241410083186466],[-80.42660426604266,25.221147155947875],[-80.41580415804158,25.20763853778881],[-80.40140401404014,25.195818496899633],[-80.40140401404014,25.18568703328033],[-80.41580415804158,25.197507074169508],[-80.43740437404374,25.22283573321775],[-80.45180451804518,25.2279014650274],[-80.45180451804518,25.243098660456354],[-80.46620466204662,25.241410083186466],[-80.48780487804878,25.232967196837052],[-80.49860498604986,25.221147155947875],[-80.4770047700477,25.217770001408113],[-80.4590045900459,25.2093271150587],[-80.44820448204482,25.194129919629745],[-80.44460444604445,25.173866992391154],[-80.45180451804518,25.173866992391154],[-80.45540455404554,25.195818496899633],[-80.46980469804697,25.20763853778881],[-80.48780487804878,25.211015692328573],[-80.50580505805058,25.200884228709285],[-80.50940509405093,25.20763853778881],[-80.5130051300513,25.21270426959846],[-80.52020520205201,25.217770001408113],[-80.52740527405274,25.221147155947875],[-80.52380523805238,25.226212887757526],[-80.52020520205201,25.231278619567163],[-80.51660516605166,25.232967196837052],[-80.50580505805058,25.23465577410694],[-80.50580505805058,25.239721505916577],[-80.50940509405093,25.241410083186466],[-80.5130051300513,25.24816439226599],[-80.52380523805238,25.246475814996117],[-80.5670056700567,25.246475814996117],[-80.58140581405814,25.241410083186466],[-80.59220592205922,25.224524310487638],[-80.59580595805957,25.204261383249047],[-80.60660606606066,25.189064187820108],[-80.62100621006209,25.194129919629745],[-80.61740617406174,25.195818496899633],[-80.61380613806138,25.200884228709285],[-80.64980649806498,25.19244134235987],[-80.6570065700657,25.190752765089982],[-80.65340653406534,25.180621301470694],[-80.64980649806498,25.173866992391154],[-80.64980649806498,25.16711268331163],[-80.6570065700657,25.158669796962215],[-80.66420664206642,25.158669796962215],[-80.67860678606786,25.16711268331163],[-80.68940689406894,25.162046951501978],[-80.7110071100711,25.14516117880315],[-80.72180721807217,25.14347260153326],[-80.73980739807398,25.14347260153326],[-80.75420754207542,25.148538333342913],[-80.7650076500765,25.158669796962215],[-80.76860768607686,25.155292642422452],[-80.76860768607686,25.153604065152564],[-80.77220772207721,25.1502269106128],[-80.77220772207721,25.14516117880315],[-80.77940779407794,25.148538333342913],[-80.7830078300783,25.1502269106128],[-80.78660786607865,25.153604065152564],[-80.79380793807938,25.158669796962215],[-80.79740797407973,25.151915487882675],[-80.8010080100801,25.148538333342913],[-80.80460804608046,25.148538333342913],[-80.81540815408154,25.151915487882675],[-80.81540815408154,25.158669796962215],[-80.81180811808117,25.16711268331163],[-80.84060840608406,25.173866992391154],[-80.8550085500855,25.18568703328033],[-80.88380883808837,25.168801260581503],[-80.88740887408873,25.168801260581503],[-80.90900909009089,25.14516117880315],[-80.9270092700927,25.141784024263387],[-80.96660966609666,25.141784024263387],[-80.99900999009989,25.13502971518386],[-81.03861038610385,25.131652560644085],[-81.08541085410853,25.121521097024797],[-81.10341103411034,25.12489825156456],[-81.15021150211501,25.16542410604174],[-81.16461164611646,25.197507074169508],[-81.17541175411753,25.2279014650274],[-81.17541175411753,25.258295855885294],[-81.16461164611646,25.298821710362475],[-81.14661146611466,25.330904678490242],[-81.12861128611286,25.344413296649307],[-81.13581135811357,25.330904678490242],[-81.1250112501125,25.32752752395048],[-81.11061110611105,25.320773214870954],[-81.10341103411034,25.31233032852154],[-81.09621096210962,25.303887442172126],[-81.07821078210782,25.273493051314233],[-81.07461074610745,25.27180447404436],[-81.06021060210601,25.26505016496482],[-80.98460984609845,25.23465577410694],[-80.98460984609845,25.2279014650274],[-80.99180991809918,25.226212887757526],[-80.99900999009989,25.22283573321775],[-81.00621006210062,25.221147155947875],[-81.00621006210062,25.214392846868336],[-80.98820988209881,25.20763853778881],[-80.96660966609666,25.20763853778881],[-80.9450094500945,25.21270426959846],[-80.9270092700927,25.224524310487638],[-80.91620916209162,25.246475814996117],[-80.92340923409233,25.263361587694945],[-80.9810098100981,25.319084637601065],[-80.99900999009989,25.32752752395048],[-81.03501035010349,25.33259325576013],[-81.0530105301053,25.342724719379433],[-81.05661056610566,25.344413296649307],[-81.09621096210962,25.351167605728847],[-81.1430114301143,25.38493915112649],[-81.15021150211501,25.39507061474579],[-81.15021150211501,25.405202078365093],[-81.15381153811538,25.427153582873558],[-81.15741157411574,25.435596469222972],[-81.17181171811718,25.47443374643028],[-81.20421204212042,25.508205291827935],[-81.2150121501215,25.526779641796637],[-81.1970119701197,25.538599682685813],[-81.18981189811898,25.545353991765353],[-81.18621186211861,25.553796878114767],[-81.18621186211861,25.560551187194292],[-81.1970119701197,25.563928341734055],[-81.21861218612186,25.558862609924418],[-81.2330123301233,25.563928341734055],[-81.23661236612365,25.57237122808347],[-81.24741247412474,25.6179628143703],[-81.26541265412654,25.653422937037845],[-81.26541265412654,25.66693155519691],[-81.27621276212761,25.675374441546325],[-81.27981279812798,25.685505905165613],[-81.27981279812798,25.70408025513433],[-81.31221312213121,25.705768832404203],[-81.3230132301323,25.70745740967409],[-81.32661326613265,25.715900296023506],[-81.3410134101341,25.74291753234162],[-81.34461344613446,25.747983264151273],[-81.3590135901359,25.753048995960924],[-81.34821348213482,25.7648690368501],[-81.3230132301323,25.783443386818817],[-81.33021330213302,25.790197695898343],[-81.34821348213482,25.81721493221646],[-81.37341373413734,25.835789282185175],[-81.3950139501395,25.850986477614114],[-81.40941409414094,25.856052209423765],[-81.43821438214381,25.861117941233417],[-81.4490144901449,25.866183673043068],[-81.46341463414633,25.874626559392482],[-81.47421474214742,25.89151233209131],[-81.4850148501485,25.899955218440724],[-81.49941499414994,25.88644660028166],[-81.51021510215102,25.89151233209131],[-81.5210152101521,25.901643795710598],[-81.54261542615426,25.908398104790137],[-81.5570155701557,25.918529568409426],[-81.56421564215641,25.920218145679314],[-81.56781567815678,25.918529568409426],[-81.57861578615785,25.91008668206001],[-81.58941589415893,25.90670952752025],[-81.58221582215822,25.915152413869663],[-81.58221582215822,25.916840991139537],[-81.58581585815858,25.920218145679314],[-81.58941589415893,25.92528387748895],[-81.59661596615966,25.923595300219077],[-81.60741607416074,25.92697245475884],[-81.61821618216182,25.935415341108254],[-81.62181621816218,25.94723538199743],[-81.63261632616326,25.940481072917905],[-81.63981639816397,25.92697245475884],[-81.65061650616506,25.920218145679314],[-81.66141661416614,25.918529568409426],[-81.67581675816758,25.920218145679314],[-81.6830168301683,25.92528387748895],[-81.69021690216901,25.933726763838365],[-81.69381693816938,25.928661032028728],[-81.69741697416974,25.920218145679314],[-81.7010170101701,25.918529568409426],[-81.70461704617045,25.913463836599774],[-81.70461704617045,25.90670952752025],[-81.71181711817118,25.90670952752025],[-81.7190171901719,25.908398104790137],[-81.72261722617226,25.91008668206001],[-81.73341733417334,25.920218145679314],[-81.7370173701737,25.928661032028728],[-81.74421744217442,25.957366845616733],[-81.72981729817297,25.962432577426384],[-81.71541715417153,25.955678268346844],[-81.70461704617045,25.945546804727556],[-81.69381693816938,25.940481072917905],[-81.68661686616866,25.945546804727556],[-81.67581675816758,25.955678268346844],[-81.66861668616686,25.96918688650591],[-81.66501665016649,25.981006927395086],[-81.67941679416793,25.981006927395086],[-81.7010170101701,25.979318350125197],[-81.71181711817118,25.981006927395086],[-81.72261722617226,25.9894498137445],[-81.73341733417334,26.001269854633676],[-81.73341733417334,26.013089895522853],[-81.72621726217263,26.021532781872267],[-81.7550175501755,26.041795709110858],[-81.76941769417694,26.0671243681591],[-81.78741787417874,26.139733190764062],[-81.7910179101791,26.12960172714476],[-81.79461794617946,26.11947026352547],[-81.79461794617946,26.10933879990617],[-81.79461794617946,26.09920733628688],[-81.80181801818019,26.09920733628688],[-81.81981819818198,26.170127581621955],[-81.8270182701827,26.24949071330643],[-81.81981819818198,26.283262258704085],[-81.81981819818198,26.290016567783624],[-81.82341823418234,26.293393722323387],[-81.85221852218523,26.342362463149982],[-81.85581855818558,26.35924823584881],[-81.84861848618486,26.35924823584881],[-81.84861848618486,26.352493926769284],[-81.84141841418413,26.352493926769284],[-81.8450184501845,26.414971285754945],[-81.84861848618486,26.433545635723647],[-81.85581855818558,26.4487428311526],[-81.87741877418773,26.480825799280368],[-81.8810188101881,26.496022994709307],[-81.8810188101881,26.480825799280368],[-81.87741877418773,26.455497140232126],[-81.8810188101881,26.447054253882712],[-81.88821888218882,26.445365676612823],[-81.89541895418954,26.447054253882712],[-81.8990189901899,26.452119985692363],[-81.90261902619025,26.455497140232126],[-81.92421924219242,26.455497140232126],[-81.97821978219781,26.48251437655024],[-81.99261992619925,26.475760067470716],[-81.99621996219962,26.477448644740605],[-81.99981999819998,26.48251437655024],[-82.0070200702007,26.474071490200828],[-82.0070200702007,26.48420295382013],[-82.01062010620106,26.49940014924907],[-82.0070200702007,26.514597344678023],[-81.99981999819998,26.523040231027437],[-81.99621996219962,26.523040231027437],[-81.9890198901989,26.51122019013826],[-81.98181981819818,26.509531612868372],[-81.97461974619746,26.51122019013826],[-81.9710197101971,26.514597344678023],[-81.96741967419673,26.519663076487674],[-81.93861938619386,26.534860271916614],[-81.91341913419134,26.558500353694967],[-81.89181891818917,26.585517590013097],[-81.89541895418954,26.61084624906134],[-81.88461884618846,26.62435486722039],[-81.84141841418413,26.663192144427697],[-81.83781837818378,26.67163503077711],[-81.83061830618306,26.681766494396413],[-81.81621816218161,26.685143648936176],[-81.8090180901809,26.680077917126525],[-81.79821798217982,26.68683222620605],[-81.7910179101791,26.69358653528559],[-81.78381783817838,26.703717998904878],[-81.78021780217802,26.715538039794055],[-81.79461794617946,26.710472307984418],[-81.81981819818198,26.696963689825353],[-81.83781837818378,26.695275112555464],[-81.85581855818558,26.68852080347594],[-81.87381873818738,26.673323608047],[-81.90621906219062,26.642929217189106],[-81.9170191701917,26.62604344449028],[-81.94941949419494,26.54836889007568],[-81.95301953019529,26.543303158266028],[-81.96021960219602,26.539926003726265],[-81.98181981819818,26.533171694646725],[-81.99261992619925,26.529794540106963],[-81.99261992619925,26.543303158266028],[-82.01422014220142,26.536548849186488],[-82.0250202502025,26.528105962837074],[-82.03942039420394,26.528105962837074],[-82.05382053820537,26.543303158266028],[-82.06462064620646,26.560188930964856],[-82.0610206102061,26.57369754912392],[-82.05742057420574,26.58720616728297],[-82.05382053820537,26.61084624906134],[-82.0610206102061,26.62942059903004],[-82.07902079020789,26.664880721697585],[-82.08262082620826,26.680077917126525],[-82.08262082620826,26.702029421635004],[-82.05742057420574,26.81854125325691],[-82.05382053820537,26.840492757765375],[-82.05742057420574,26.865821416813617],[-82.06462064620646,26.87426430316303],[-82.07902079020789,26.88101861224257],[-82.0970209702097,26.89621580767151],[-82.0970209702097,26.909724425830575],[-82.07902079020789,26.923233043989626],[-82.02862028620285,26.950250280307756],[-82.0070200702007,26.95362743484752],[-81.99621996219962,26.95869316665717],[-81.99261992619925,26.965447475736696],[-81.97821978219781,26.99584186659459],[-81.99621996219962,26.990776134784937],[-82.01782017820177,26.972201784816235],[-82.05742057420574,26.965447475736696],[-82.07542075420754,26.95869316665717],[-82.09342093420933,26.955316012117407],[-82.1150211502115,26.962070321196933],[-82.11862118621185,26.945184548498105],[-82.1330213302133,26.941807393958342],[-82.14382143821437,26.940118816688454],[-82.1510215102151,26.93167593033904],[-82.15462154621545,26.928298775799277],[-82.16542165421654,26.93674166214869],[-82.18342183421834,26.955316012117407],[-82.17982179821797,26.972201784816235],[-82.19062190621906,26.96882463027646],[-82.20862208622086,26.962070321196933],[-82.2230222302223,26.965447475736696],[-82.2410224102241,26.99584186659459],[-82.25182251822518,27.007661907483765],[-82.27342273422734,27.01610479383318],[-82.26982269822697,27.007661907483765],[-82.2590225902259,26.989087557515063],[-82.23022230222301,26.95700458938728],[-82.21942219422193,26.948561703037868],[-82.21222212222122,26.955316012117407],[-82.20142201422014,26.94349597122823],[-82.1870218702187,26.913101580370338],[-82.17982179821797,26.906347271290812],[-82.17622176221762,26.899592962211273],[-82.15822158221582,26.862444262273854],[-82.1510215102151,26.81854125325691],[-82.1510215102151,26.803344057827957],[-82.15822158221582,26.789835439668906],[-82.16542165421654,26.78645828512913],[-82.1690216902169,26.81347552144726],[-82.17622176221762,26.825295562336436],[-82.17982179821797,26.821918407796673],[-82.18342183421834,26.81347552144726],[-82.19062190621906,26.80672121236772],[-82.19782197821978,26.803344057827957],[-82.20142201422014,26.805032635097845],[-82.21222212222122,26.815164098717133],[-82.21582215822158,26.816852675987022],[-82.21942219422193,26.816852675987022],[-82.21942219422193,26.81347552144726],[-82.2230222302223,26.81178694417737],[-82.23022230222301,26.810098366907496],[-82.23742237422374,26.81178694417737],[-82.24462244622445,26.820229830526785],[-82.25182251822518,26.825295562336436],[-82.26622266222662,26.830361294146087],[-82.27342273422734,26.830361294146087],[-82.28422284222842,26.830361294146087],[-82.3130231302313,26.84893564411479],[-82.34182341823418,26.935053084878817],[-82.37062370623705,26.962070321196933],[-82.3670236702367,26.945184548498105],[-82.35262352623526,26.92154446671975],[-82.3490234902349,26.906347271290812],[-82.35982359823598,26.913101580370338],[-82.3670236702367,26.9164787349101],[-82.37062370623705,26.919855889449863],[-82.37782377823778,26.940118816688454],[-82.46782467824679,27.102222234597193],[-82.47862478624786,27.137682357264737],[-82.50022500225002,27.178208211741918],[-82.50742507425073,27.20184829352027],[-82.50022500225002,27.190028252631095],[-82.49662496624966,27.184962520821458],[-82.4930249302493,27.179896789011806],[-82.4930249302493,27.196782561710634],[-82.49662496624966,27.211979757139574],[-82.50382503825038,27.222111220758876],[-82.51462514625146,27.2288655298384],[-82.51462514625146,27.215356911679336],[-82.52182521825218,27.215356911679336],[-82.53262532625325,27.237308416187815],[-82.55062550625506,27.255882766156518],[-82.56142561425614,27.276145693395122],[-82.56142561425614,27.298097197903587],[-82.55782557825577,27.294720043363824],[-82.55422554225542,27.29303146609395],[-82.55062550625506,27.289654311554173],[-82.5470254702547,27.282900002474648],[-82.53982539825398,27.282900002474648],[-82.54342543425435,27.30822866152289],[-82.56142561425614,27.347065938730196],[-82.57222572225722,27.394346102286903],[-82.58662586625866,27.407854720445968],[-82.60822608226081,27.416297606795382],[-82.64422644226443,27.443314843113498],[-82.68382683826837,27.44838057492315],[-82.69822698226982,27.45513488400269],[-82.7090270902709,27.46864350216174],[-82.73062730627306,27.514235088448572],[-82.73422734227341,27.5311208611474],[-82.7270272702727,27.5311208611474],[-82.7090270902709,27.497349315749744],[-82.70542705427054,27.48890642940033],[-82.69462694626947,27.482152120320805],[-82.66942669426695,27.472020656701503],[-82.65862658626585,27.461889193082214],[-82.65142651426514,27.46864350216174],[-82.64422644226443,27.477086388511154],[-82.64422644226443,27.485529274860568],[-82.64422644226443,27.49566073847987],[-82.65142651426514,27.49566073847987],[-82.65862658626585,27.492283583940107],[-82.66582665826658,27.492283583940107],[-82.6730267302673,27.497349315749744],[-82.67662676626766,27.502415047559396],[-82.66222662226622,27.520989397528112],[-82.6370263702637,27.514235088448572],[-82.61182611826118,27.502415047559396],[-82.59022590225902,27.502415047559396],[-82.6010260102601,27.51085793390881],[-82.61182611826118,27.51761224298835],[-82.62262622626226,27.520989397528112],[-82.6370263702637,27.524366552067875],[-82.62262622626226,27.5311208611474],[-82.59382593825939,27.53787517022694],[-82.57942579425794,27.548006633846228],[-82.57222572225722,27.559826674735405],[-82.58662586625866,27.556449520195642],[-82.6010260102601,27.55307236565588],[-82.60462604626046,27.55138378838599],[-82.62262622626226,27.544629479306465],[-82.6190261902619,27.55307236565588],[-82.61542615426154,27.556449520195642],[-82.61182611826118,27.554760942925768],[-82.60462604626046,27.55307236565588],[-82.6010260102601,27.55307236565588],[-82.59022590225902,27.564892406545056],[-82.59022590225902,27.56826956108482],[-82.59742597425974,27.57840102470412],[-82.57582575825758,27.590221065593298],[-82.5650256502565,27.608795415562014],[-82.55782557825577,27.629058342800604],[-82.54342543425435,27.649321270039195],[-82.51822518225183,27.669584197277786],[-82.51462514625146,27.6780270836272],[-82.5110251102511,27.689847124516376],[-82.50382503825038,27.694912856326027],[-82.4930249302493,27.6966014335959],[-82.48582485824858,27.701667165405553],[-82.47142471424714,27.728684401723683],[-82.46422464224642,27.73543871080321],[-82.4390243902439,27.754013060771925],[-82.43182431824317,27.764144524391213],[-82.39942399423994,27.796227492518994],[-82.38862388623886,27.811424687947934],[-82.39222392223922,27.833376192456413],[-82.41382413824138,27.87559062420347],[-82.4210242102421,27.917805055950538],[-82.43542435424354,27.929625096839715],[-82.44982449824498,27.931313674109603],[-82.47142471424714,27.9211822104903],[-82.48222482224821,27.90767359233125],[-82.48582485824858,27.892476396902296],[-82.48582485824858,27.855327696964878],[-82.47862478624786,27.841819078805827],[-82.47862478624786,27.831687615186524],[-82.48222482224821,27.821556151567222],[-82.51822518225183,27.82324472883711],[-82.52542525425254,27.824933306107],[-82.53982539825398,27.8435076560757],[-82.53982539825398,27.868836315123943],[-82.53622536225362,27.917805055950538],[-82.53982539825398,27.94313371499878],[-82.55782557825577,27.954953755887956],[-82.58662586625866,27.960019487697608],[-82.61542615426154,27.961708064967496],[-82.61542615426154,27.96846237404702],[-82.59742597425974,27.975216683126547],[-82.59742597425974,27.98365956947596],[-82.62262622626226,27.997168187635026],[-82.6370263702637,28.00561107398444],[-82.64422644226443,28.015742537603742],[-82.65142651426514,28.015742537603742],[-82.65142651426514,28.014053960333854],[-82.65142651426514,28.002233919444677],[-82.6910269102691,28.037694042112207],[-82.68742687426874,28.029251155762793],[-82.68022680226802,28.014053960333854],[-82.67662676626766,28.00561107398444],[-82.68022680226802,27.998856764904914],[-82.68382683826837,27.987036724015738],[-82.68382683826837,27.98365956947596],[-82.6910269102691,27.975216683126547],[-82.6910269102691,27.97015095131691],[-82.68022680226802,27.96846237404702],[-82.64422644226443,27.96846237404702],[-82.65862658626585,27.956642333157845],[-82.70182701827018,27.944822292268668],[-82.71982719827199,27.92793651956984],[-82.68022680226802,27.914427901410775],[-82.64422644226443,27.894164974172185],[-82.60462604626046,27.88065635601312],[-82.56142561425614,27.88572208782277],[-82.57222572225722,27.88065635601312],[-82.60462604626046,27.86377058331429],[-82.6010260102601,27.851950542425115],[-82.59742597425974,27.829999037916636],[-82.59742597425974,27.81817899702746],[-82.6010260102601,27.80804753340817],[-82.61542615426154,27.792850337979218],[-82.61542615426154,27.78778460616958],[-82.6190261902619,27.78103029709004],[-82.62982629826298,27.750635906232148],[-82.62262622626226,27.733750133533334],[-82.62622626226262,27.715175783564618],[-82.6370263702637,27.701667165405553],[-82.6550265502655,27.694912856326027],[-82.6730267302673,27.694912856326027],[-82.68022680226802,27.6966014335959],[-82.68382683826837,27.701667165405553],[-82.68742687426874,27.710110051754967],[-82.68742687426874,27.732061556263446],[-82.68742687426874,27.73543871080321],[-82.7090270902709,27.73881586534297],[-82.71982719827199,27.74557017442251],[-82.73782737827378,27.769210256200864],[-82.75582755827558,27.78778460616958],[-82.79542795427955,27.814801842487697],[-82.81342813428134,27.831687615186524],[-82.82062820628207,27.81817899702746],[-82.80982809828097,27.804670378868394],[-82.75222752227522,27.747258751692385],[-82.73782737827378,27.728684401723683],[-82.72342723427234,27.694912856326027],[-82.71622716227162,27.671272774547674],[-82.71982719827199,27.659452733658483],[-82.73062730627306,27.66282988819826],[-82.74142741427414,27.679715660897088],[-82.75222752227522,27.701667165405553],[-82.75222752227522,27.71855293810438],[-82.76662766627666,27.752324483502036],[-82.82782827828278,27.804670378868394],[-82.84222842228422,27.82831046064676],[-82.84582845828459,27.841819078805827],[-82.8530285302853,27.87052489239383],[-82.85662856628566,27.890787819632422],[-82.8530285302853,27.90767359233125],[-82.84222842228422,27.926247942299952],[-82.83142831428314,27.939756560459017],[-82.82062820628207,27.94819944680843],[-82.83142831428314,27.934690828649366],[-82.83862838628386,27.917805055950538],[-82.84222842228422,27.90091928325171],[-82.8350283502835,27.88572208782277],[-82.80262802628026,27.966773796777147],[-82.7810278102781,28.057956969350812],[-82.77742777427774,28.084974205668928],[-82.77742777427774,28.096794246558105],[-82.76662766627666,28.10523713290752],[-82.77742777427774,28.120434328336472],[-82.7810278102781,28.13563152376541],[-82.78822788227882,28.160960182813653],[-82.78822788227882,28.17446880097272],[-82.78822788227882,28.19304315094142],[-82.7810278102781,28.206551769100486],[-82.77382773827738,28.201486037290834],[-82.75942759427593,28.2149946554499],[-82.75222752227522,28.228503273608965],[-82.7450274502745,28.25552050992708],[-82.72342723427234,28.284226323515085],[-82.71622716227162,28.29773494167415],[-82.71982719827199,28.311243559833215],[-82.72342723427234,28.30786640529344],[-82.7270272702727,28.306177828023564],[-82.73422734227341,28.304489250753676],[-82.69822698226982,28.388918114247815],[-82.68382683826837,28.40073815513699],[-82.68382683826837,28.40749246421653],[-82.68742687426874,28.414246773296057],[-82.66582665826658,28.448018318693713],[-82.66222662226622,28.50205279132996],[-82.66222662226622,28.513872832219135],[-82.65142651426514,28.54426722307703],[-82.64782647826478,28.630384663841042],[-82.6370263702637,28.64727043653987],[-82.64062640626406,28.654024745619395],[-82.64422644226443,28.66246763196881],[-82.64422644226443,28.670910518318223],[-82.64062640626406,28.679353404667637],[-82.63342633426333,28.68779629101705],[-82.63342633426333,28.694550600096576],[-82.63342633426333,28.701304909176116],[-82.6370263702637,28.711436372795404],[-82.6370263702637,28.74689649546295],[-82.64062640626406,28.755339381812362],[-82.64782647826478,28.757027959082237],[-82.6550265502655,28.757027959082237],[-82.65862658626585,28.760405113622014],[-82.66222662226622,28.773913731781064],[-82.68382683826837,28.795865236289544],[-82.68382683826837,28.804308122638957],[-82.66942669426695,28.819505318067897],[-82.6550265502655,28.81275100898837],[-82.62982629826298,28.784045195400367],[-82.6370263702637,28.81443958625826],[-82.6370263702637,28.824571049877548],[-82.62982629826298,28.873539790704143],[-82.63342633426333,28.88704840886321],[-82.64422644226443,28.900557027022273],[-82.65142651426514,28.902245604292162],[-82.66942669426695,28.905622758831925],[-82.67662676626766,28.9073113361018],[-82.68382683826837,28.91237706791145],[-82.7270272702727,28.95965723146817],[-82.73062730627306,28.976543004167],[-82.7270272702727,28.99680593140559],[-82.73782737827378,28.99680593140559],[-82.74862748627486,29.00187166321524],[-82.75582755827558,29.010314549564654],[-82.74862748627486,29.020446013183943],[-82.74862748627486,29.030577476803245],[-82.74862748627486,29.060971867661124],[-82.7450274502745,29.0643490222009],[-82.78462784627845,29.091366258519017],[-82.79542795427955,29.108252031217845],[-82.77382773827738,29.12007207210702],[-82.79182791827918,29.12682638118656],[-82.7990279902799,29.138646422075738],[-82.80262802628026,29.155532194774565],[-82.80262802628026,29.174106544743267],[-82.82062820628207,29.165663658393854],[-82.82782827828278,29.160597926584202],[-82.8350283502835,29.167352235663742],[-82.84582845828459,29.175795122013156],[-82.84942849428494,29.18254943109268],[-82.86742867428674,29.169040812933616],[-82.89262892628926,29.170729390203505],[-82.91422914229142,29.17917227655292],[-82.93222932229322,29.187615162902333],[-82.9430294302943,29.185926585632444],[-82.97182971829717,29.18423800836257],[-82.98622986229861,29.18254943109268],[-83.00423004230042,29.175795122013156],[-83.01143011430113,29.175795122013156],[-83.02223022230221,29.174106544743267],[-83.04023040230402,29.180860853822807],[-83.04383043830438,29.192680894711984],[-83.04743047430473,29.202812358331272],[-83.0510305103051,29.20956666741081],[-83.06543065430654,29.211255244680686],[-83.07263072630725,29.218009553760226],[-83.07263072630725,29.228141017379514],[-83.06183061830617,29.236583903728928],[-83.0690306903069,29.24502679007834],[-83.07623076230762,29.26022398550728],[-83.08343083430834,29.272044026396472],[-83.09783097830977,29.27710975820611],[-83.11583115831158,29.280486912745886],[-83.13383133831339,29.28724122182541],[-83.14823148231481,29.295684108174825],[-83.1590315903159,29.305815571794113],[-83.16263162631626,29.310881303603765],[-83.16263162631626,29.321012767223067],[-83.16623166231662,29.342964271731546],[-83.16623166231662,29.34465284900142],[-83.18423184231843,29.373358662589425],[-83.21663216632166,29.410507362526843],[-83.2310323103231,29.42739313522567],[-83.25263252632526,29.442590330654625],[-83.27783277832778,29.439213176114848],[-83.30663306633066,29.457787526083564],[-83.3570335703357,29.510133421449922],[-83.36783367833678,29.508444844180048],[-83.37863378633786,29.515199153259573],[-83.40383403834038,29.5320849259584],[-83.40023400234001,29.540527812307815],[-83.40023400234001,29.555725007736754],[-83.40383403834038,29.56923362589582],[-83.4110341103411,29.57936508951512],[-83.40023400234001,29.5911851304043],[-83.3930339303393,29.609759480373],[-83.3930339303393,29.633399562151368],[-83.39663396633966,29.655351066659833],[-83.40743407434074,29.667171107549024],[-83.42543425434253,29.67223683935866],[-83.4470344703447,29.67392541662855],[-83.4650346503465,29.682368302977963],[-83.47583475834757,29.687434034787614],[-83.48663486634867,29.697565498406902],[-83.49383493834938,29.702631230216554],[-83.52623526235261,29.71613984837562],[-83.54423544235442,29.727959889264795],[-83.56223562235623,29.746534239233497],[-83.57663576635765,29.765108589202214],[-83.58383583835838,29.78199436190104],[-83.58383583835838,29.792125825520344],[-83.58743587435875,29.815765907298697],[-83.59463594635946,29.825897370917986],[-83.60183601836017,29.832651679997525],[-83.61263612636127,29.837717411807176],[-83.61623616236162,29.842783143616813],[-83.62343623436234,29.864734648125292],[-83.6630366303663,29.898506193522948],[-83.67023670236702,29.912014811682013],[-83.6810368103681,29.920457698031427],[-83.72423724237242,29.950852088889306],[-83.7350373503735,29.955917820698957],[-83.7530375303753,29.95929497523872],[-83.76743767437674,29.969426438858022],[-83.7890378903789,29.989689366096613],[-83.81063810638106,29.98462363428696],[-83.85743857438574,30.003197984255678],[-83.9510395103951,30.05385530235216],[-84.0230402304023,30.10620119771852],[-84.04464044640446,30.10451262044863],[-84.0770407704077,30.092692579559454],[-84.1490414904149,30.087626847749803],[-84.1670416704167,30.075806806860626],[-84.17784177841779,30.072429652320864],[-84.1850418504185,30.080872538670278],[-84.18864188641886,30.094381156829343],[-84.19584195841958,30.099446888638994],[-84.19944199441994,30.101135465908868],[-84.19944199441994,30.102824043178757],[-84.2030420304203,30.10620119771852],[-84.21024210242102,30.107889774988408],[-84.21384213842138,30.10451262044863],[-84.2210422104221,30.096069734099217],[-84.22824228242283,30.092692579559454],[-84.24624246242462,30.092692579559454],[-84.24624246242462,30.094381156829343],[-84.24984249842498,30.097758311369105],[-84.2570425704257,30.099446888638994],[-84.26064260642606,30.099446888638994],[-84.27144271442714,30.092692579559454],[-84.27864278642787,30.080872538670278],[-84.28224282242822,30.07074107505099],[-84.28584285842858,30.065675343241338],[-84.31824318243181,30.067363920511212],[-84.3290432904329,30.065675343241338],[-84.3650436504365,30.04878957054251],[-84.37224372243722,30.040346684193096],[-84.37224372243722,30.025149488764143],[-84.37584375843758,30.02683806603403],[-84.37944379443795,30.02852664330392],[-84.3830438304383,30.031903797843682],[-84.39024390243902,30.025149488764143],[-84.38664386643866,30.016706602414743],[-84.38664386643866,30.013329447874966],[-84.38664386643866,30.011640870605092],[-84.39024390243902,30.004886561525552],[-84.38664386643866,29.998132252446027],[-84.3830438304383,29.989689366096613],[-84.37944379443795,29.993066520636376],[-84.37224372243722,29.999820829715915],[-84.37224372243722,30.004886561525552],[-84.3650436504365,29.994755097906264],[-84.34344343443433,29.974492170667673],[-84.3470434704347,29.969426438858022],[-84.36144361443614,29.972803593397785],[-84.38664386643866,29.9812464797472],[-84.4190441904419,29.989689366096613],[-84.4370443704437,30.00150940698579],[-84.4550445504455,30.004886561525552],[-84.46584465844658,29.989689366096613],[-84.45144451444514,29.988000788826724],[-84.44784447844478,29.97955790247731],[-84.44424444244441,29.967737861588134],[-84.4370443704437,29.962672129778497],[-84.37224372243722,29.955917820698957],[-84.34344343443433,29.947474934349543],[-84.33624336243362,29.925523429841064],[-84.35064350643506,29.90188334806271],[-84.37584375843758,29.88668615263377],[-84.36864368643685,29.898506193522948],[-84.3650436504365,29.90188334806271],[-84.3650436504365,29.906949079872362],[-84.4010440104401,29.91876912076154],[-84.44424444244441,29.9221462753013],[-84.46224462244622,29.91876912076154],[-84.48024480244803,29.913703388951888],[-84.49824498244982,29.912014811682013],[-84.5090450904509,29.9221462753013],[-84.5630456304563,29.893440461713297],[-84.60264602646026,29.864734648125292],[-84.6530465304653,29.852914607236116],[-84.68184681846819,29.8343402572674],[-84.73224732247323,29.792125825520344],[-84.74664746647466,29.785371516440804],[-84.77184771847718,29.78199436190104],[-84.78984789847898,29.77861720736128],[-84.81144811448114,29.763420011932325],[-84.82944829448294,29.75497712558291],[-84.84744847448474,29.75159997104315],[-84.86184861848618,29.744845661963623],[-84.87624876248762,29.733025621074447],[-84.8870488704887,29.729648466534684],[-84.89064890648906,29.748222816503386],[-84.8870488704887,29.75497712558291],[-84.85824858248583,29.79719155732998],[-84.87264872648726,29.80394586640952],[-84.8870488704887,29.79888013459987],[-84.89784897848978,29.790437248250456],[-84.91584915849158,29.785371516440804],[-84.92664926649266,29.77861720736128],[-84.94464944649447,29.753288548313037],[-84.96984969849699,29.749911393773274],[-84.99144991449914,29.722894157455144],[-85.00585005850058,29.71613984837562],[-85.08505085050851,29.722894157455144],[-85.12465124651246,29.72120558018527],[-85.23985239852398,29.68912261205749],[-85.26145261452614,29.68912261205749],[-85.28665286652866,29.69249976659725],[-85.30825308253083,29.69418834386714],[-85.34785347853479,29.6789911484382],[-85.36585365853658,29.685745457517726],[-85.38385383853839,29.700942652946665],[-85.3910539105391,29.71613984837562],[-85.4090540905409,29.800568711869744],[-85.41265412654126,29.851226029966227],[-85.39825398253983,29.873177534474706],[-85.39465394653946,29.863046070855404],[-85.39825398253983,29.795502980060107],[-85.39465394653946,29.77186289828174],[-85.38745387453874,29.749911393773274],[-85.37665376653766,29.727959889264795],[-85.35145351453514,29.69418834386714],[-85.34425344253442,29.68912261205749],[-85.32985329853298,29.68912261205749],[-85.3190531905319,29.69249976659725],[-85.30825308253083,29.702631230216554],[-85.3010530105301,29.711074116565968],[-85.30465304653046,29.71613984837562],[-85.30825308253083,29.727959889264795],[-85.3010530105301,29.79719155732998],[-85.31185311853118,29.81914306183846],[-85.34425344253442,29.85629176177588],[-85.35145351453514,29.869800379934944],[-85.3550535505355,29.888374729903646],[-85.36945369453694,29.906949079872362],[-85.38745387453874,29.92383485257119],[-85.40545405454054,29.935654893460367],[-85.52065520655206,29.9812464797472],[-85.54945549455495,30.004886561525552],[-85.5530555305553,30.009952293335203],[-85.55665556655566,30.016706602414743],[-85.56025560255603,30.02346091149427],[-85.56385563855638,30.031903797843682],[-85.55665556655566,30.031903797843682],[-85.54225542255422,30.015018025144855],[-85.52425524255243,29.99644367517614],[-85.49905499054991,29.98462363428696],[-85.4810548105481,29.982935057017087],[-85.6070560705607,30.074118229590752],[-85.62145621456214,30.07918396140039],[-85.67185671856718,30.123086970417347],[-85.6790567905679,30.134907011306524],[-85.67185671856718,30.136595588576412],[-85.61065610656107,30.12646412495711],[-85.61065610656107,30.107889774988408],[-85.54585545855458,30.09100400228958],[-85.52785527855278,30.075806806860626],[-85.51345513455134,30.055543879622036],[-85.47745477454774,30.033592375113557],[-85.44145441454414,30.020083756954506],[-85.4270542705427,30.02852664330392],[-85.41985419854198,30.035280952383445],[-85.40185401854018,30.040346684193096],[-85.3910539105391,30.045412416002748],[-85.39465394653946,30.055543879622036],[-85.40185401854018,30.0589210341618],[-85.41985419854198,30.057232456891924],[-85.4270542705427,30.0589210341618],[-85.43065430654306,30.062298188701575],[-85.43065430654306,30.0690524977811],[-85.43065430654306,30.07074107505099],[-85.44145441454414,30.065675343241338],[-85.45225452254522,30.04372383873286],[-85.4630546305463,30.035280952383445],[-85.47745477454774,30.04203526146297],[-85.48465484654847,30.0589210341618],[-85.48465484654847,30.092692579559454],[-85.48825488254882,30.107889774988408],[-85.50625506255062,30.099446888638994],[-85.51345513455134,30.107889774988408],[-85.50985509855099,30.123086970417347],[-85.49545495454954,30.134907011306524],[-85.49545495454954,30.139972743116175],[-85.51345513455134,30.139972743116175],[-85.52785527855278,30.133218434036635],[-85.54585545855458,30.128152702227],[-85.56385563855638,30.134907011306524],[-85.56385563855638,30.128152702227],[-85.56385563855638,30.123086970417347],[-85.56745567455674,30.119709815877584],[-85.5710557105571,30.114644084067933],[-85.58185581855818,30.124775547687236],[-85.60345603456034,30.136595588576412],[-85.62865628656286,30.145038474925826],[-85.64665646656466,30.139972743116175],[-85.65385653856538,30.15179278400535],[-85.6610566105661,30.158547093084877],[-85.6970569705697,30.17374428851383],[-85.70425704257042,30.178810020323482],[-85.71145711457115,30.185564329403007],[-85.72225722257222,30.195695793022296],[-85.70065700657007,30.205827256641598],[-85.65745657456574,30.25141884292843],[-85.6430564305643,30.254795997468193],[-85.61785617856178,30.24635311111878],[-85.57825578255782,30.286878965595974],[-85.55665556655566,30.285190388326086],[-85.56745567455674,30.30883047010444],[-85.57825578255782,30.320650510993616],[-85.58545585455855,30.325716242803267],[-85.59625596255962,30.31896193372374],[-85.62145621456214,30.281813233786323],[-85.63945639456394,30.27168177016702],[-85.6430564305643,30.285190388326086],[-85.65385653856538,30.283501811056198],[-85.66825668256682,30.276747501976672],[-85.68265682656826,30.27168177016702],[-85.69345693456934,30.26661603835737],[-85.70065700657007,30.254795997468193],[-85.70785707857078,30.24635311111878],[-85.72225722257222,30.249730265658542],[-85.71865718657186,30.268304615627258],[-85.72945729457294,30.281813233786323],[-85.74385743857438,30.29869900648515],[-85.75465754657546,30.31896193372374],[-85.76545765457654,30.302076161024914],[-85.77625776257763,30.2936332746755],[-85.80865808658086,30.29194469740561],[-85.82665826658267,30.286878965595974],[-85.84465844658446,30.27843607924656],[-85.85545855458554,30.264927461087495],[-85.84825848258482,30.248041688388668],[-85.83025830258302,30.23622164749949],[-85.81945819458194,30.23622164749949],[-85.80865808658086,30.241287379309142],[-85.7870578705787,30.244664533848905],[-85.76545765457654,30.241287379309142],[-85.75465754657546,30.23115591568984],[-85.74745747457474,30.221024452070537],[-85.7330573305733,30.20920441118136],[-85.74745747457474,30.19063006121266],[-85.74025740257402,30.178810020323482],[-85.72225722257222,30.16867855670418],[-85.70785707857078,30.155169938545114],[-85.7150571505715,30.139972743116175],[-85.72585725857259,30.15179278400535],[-85.7330573305733,30.150104206735463],[-85.72945729457294,30.143349897655938],[-85.72225722257222,30.134907011306524],[-85.74385743857438,30.139972743116175],[-85.86625866258662,30.2159587202609],[-85.9490594905949,30.25310742019832],[-86.06426064260643,30.305453315564677],[-86.19386193861938,30.339224860962332],[-86.3630636306363,30.381439292709402],[-86.48546485464854,30.39325933359858],[-86.51066510665106,30.408456529027518],[-86.51066510665106,30.41183368356728],[-86.5070650706507,30.415210838107058],[-86.49266492664927,30.410145106297406],[-86.41346413464134,30.408456529027518],[-86.34866348663486,30.394947910868467],[-86.33426334263342,30.400013642678104],[-86.3270632706327,30.41183368356728],[-86.32346323463234,30.425342301726346],[-86.31626316263163,30.435473765345648],[-86.31266312663126,30.437162342615522],[-86.3090630906309,30.435473765345648],[-86.30546305463054,30.42365372445647],[-86.29826298262982,30.41352226083717],[-86.28746287462874,30.405079374487755],[-86.24066240662407,30.394947910868467],[-86.2370623706237,30.39832506540823],[-86.22986229862298,30.405079374487755],[-86.22626226262263,30.41183368356728],[-86.22986229862298,30.415210838107058],[-86.24786247862478,30.416899415376932],[-86.25866258662586,30.42365372445647],[-86.26226262262622,30.430408033535997],[-86.24786247862478,30.435473765345648],[-86.23346233462334,30.43378518807576],[-86.2190621906219,30.427030878996234],[-86.19386193861938,30.408456529027518],[-86.14346143461434,30.39663648813834],[-86.13626136261362,30.39157075632869],[-86.11826118261182,30.379750715439513],[-86.10746107461074,30.386505024519053],[-86.10746107461074,30.400013642678104],[-86.11466114661147,30.408456529027518],[-86.11466114661147,30.41352226083717],[-86.1470614706147,30.442228074425174],[-86.15066150661507,30.457425269854127],[-86.1470614706147,30.462491001663764],[-86.13986139861399,30.467556733473415],[-86.13986139861399,30.482753928902355],[-86.16506165061651,30.472622465283067],[-86.1830618306183,30.469245310743304],[-86.19386193861938,30.477688197092718],[-86.20826208262082,30.504705433410834],[-86.22266222662226,30.492885392521657],[-86.24426244262442,30.49119681525177],[-86.28746287462874,30.49795112433131],[-86.30546305463054,30.494573969791546],[-86.34866348663486,30.48613108344213],[-86.36666366663667,30.482753928902355],[-86.3810638106381,30.477688197092718],[-86.39546395463954,30.469245310743304],[-86.40986409864098,30.46080242439389],[-86.42786427864279,30.462491001663764],[-86.43866438664386,30.47599961982283],[-86.4350643506435,30.49119681525177],[-86.41346413464134,30.5182140515699],[-86.4350643506435,30.5182140515699],[-86.44586445864458,30.51652547430001],[-86.4530645306453,30.511459742490374],[-86.46026460264602,30.499639701601183],[-86.4710647106471,30.50132827887107],[-86.47826478264783,30.511459742490374],[-86.4890648906489,30.52327978337955],[-86.4890648906489,30.513148319760248],[-86.48186481864818,30.487819660712006],[-86.48546485464854,30.479376774362592],[-86.49626496264962,30.472622465283067],[-86.5070650706507,30.467556733473415],[-86.52146521465214,30.464179578933653],[-86.53226532265322,30.462491001663764],[-86.54306543065431,30.46080242439389],[-86.55386553865539,30.445605228964936],[-86.56826568265683,30.442228074425174],[-86.58986589865899,30.445605228964936],[-86.58986589865899,30.4405394971553],[-86.58986589865899,30.425342301726346],[-86.60066600666006,30.41858799264682],[-86.67986679866799,30.421965147186583],[-86.76266762667626,30.415210838107058],[-86.78426784267842,30.421965147186583],[-86.80586805868059,30.41183368356728],[-86.83466834668346,30.408456529027518],[-86.88866888668886,30.408456529027518],[-87.04347043470435,30.389882179058816],[-87.14427144271443,30.36624209728045],[-87.19467194671947,30.359487788200923],[-87.1910719107191,30.3713078290901],[-87.18387183871839,30.37637356089975],[-87.17667176671766,30.37806213816964],[-87.1370713707137,30.39325933359858],[-87.07947079470794,30.406767951757644],[-87.02187021870219,30.406767951757644],[-87.00387003870038,30.410145106297406],[-86.9390693906939,30.45573669258424],[-86.92826928269282,30.452359538044476],[-86.90666906669067,30.442228074425174],[-86.89226892268923,30.43885091988541],[-86.89226892268923,30.448982383504713],[-86.9030690306903,30.46080242439389],[-86.92466924669246,30.470933888013178],[-86.94626946269463,30.47599961982283],[-86.96426964269642,30.477688197092718],[-86.9750697506975,30.48106535163248],[-86.98586985869858,30.50132827887107],[-86.9930699306993,30.504705433410834],[-87.00027000270002,30.504705433410834],[-87.00747007470075,30.506394010680722],[-87.01467014670146,30.511459742490374],[-87.01467014670146,30.52159120610966],[-87.0110701107011,30.535099824268727],[-86.9930699306993,30.546919865157903],[-86.96066960669606,30.55873990604708],[-86.96066960669606,30.56380563785673],[-86.96426964269642,30.567182792396494],[-86.96786967869679,30.573937101476034],[-86.98586985869858,30.562117060586843],[-86.99666996669967,30.575625678745908],[-87.00747007470075,30.5958886059845],[-87.0290702907029,30.607708646873675],[-87.02187021870219,30.589134296904973],[-87.02187021870219,30.57900283328567],[-87.02547025470254,30.572248524206145],[-87.04707047070471,30.5182140515699],[-87.06147061470614,30.494573969791546],[-87.06867068670687,30.46080242439389],[-87.07587075870758,30.448982383504713],[-87.09387093870939,30.448982383504713],[-87.09747097470975,30.46080242439389],[-87.09747097470975,30.477688197092718],[-87.09027090270902,30.49119681525177],[-87.09747097470975,30.504705433410834],[-87.1010710107101,30.52159120610966],[-87.10827108271083,30.5367884015386],[-87.12987129871298,30.53847697880849],[-87.12987129871298,30.54354271061814],[-87.12627126271262,30.555362751507317],[-87.12627126271262,30.55873990604708],[-87.14067140671406,30.562117060586843],[-87.14787147871479,30.570559946936257],[-87.1550715507155,30.58069141055556],[-87.16587165871658,30.587445719635085],[-87.18027180271802,30.584068565095322],[-87.18387183871839,30.573937101476034],[-87.18027180271802,30.541854133348252],[-87.17667176671766,30.530034092459076],[-87.15867158671587,30.504705433410834],[-87.15147151471514,30.48613108344213],[-87.1550715507155,30.47431104255294],[-87.18027180271802,30.435473765345648],[-87.18747187471874,30.435473765345648],[-87.18747187471874,30.43885091988541],[-87.1910719107191,30.43885091988541],[-87.19467194671947,30.442228074425174],[-87.20187201872018,30.41858799264682],[-87.21987219872199,30.41352226083717],[-87.2450724507245,30.41183368356728],[-87.2630726307263,30.401702219947992],[-87.26667266672666,30.39157075632869],[-87.2630726307263,30.36624209728045],[-87.26667266672666,30.357799210931034],[-87.27387273872738,30.352733479121397],[-87.2990729907299,30.349356324581635],[-87.30987309873099,30.345979170041858],[-87.30627306273063,30.32909339734303],[-87.32787327873278,30.31896193372374],[-87.47187471874719,30.2936332746755],[-87.48987489874898,30.285190388326086],[-87.49707497074971,30.286878965595974],[-87.51867518675186,30.281813233786323],[-87.52947529475294,30.27843607924656],[-87.52947529475294,30.285190388326086],[-87.51867518675186,30.28856754286585],[-87.51147511475115,30.29532185194539],[-87.50427504275042,30.300387583755025],[-87.49707497074971,30.305453315564677],[-87.48267482674827,30.30883047010444],[-87.44667446674467,30.31389620191409],[-87.46467464674646,30.320650510993616],[-87.48267482674827,30.325716242803267],[-87.46827468274682,30.33078197461292],[-87.44667446674467,30.32909339734303],[-87.43227432274323,30.332470551882807],[-87.42147421474215,30.339224860962332],[-87.41427414274142,30.349356324581635],[-87.41427414274142,30.359487788200923],[-87.4250742507425,30.367930674550337],[-87.4250742507425,30.374684983629862],[-87.39627396273963,30.405079374487755],[-87.37827378273782,30.416899415376932],[-87.3530735307353,30.421965147186583],[-87.34587345873459,30.427030878996234],[-87.34587345873459,30.4405394971553],[-87.34947349473494,30.45404811531435],[-87.36027360273603,30.462491001663764],[-87.36747367473674,30.465868156203527],[-87.38547385473855,30.462491001663764],[-87.39627396273963,30.465868156203527],[-87.40347403474034,30.470933888013178],[-87.4250742507425,30.482753928902355],[-87.4250742507425,30.477688197092718],[-87.41787417874178,30.467556733473415],[-87.41067410674107,30.46080242439389],[-87.40347403474034,30.45573669258424],[-87.39267392673926,30.448982383504713],[-87.39987399873998,30.448982383504713],[-87.39987399873998,30.4405394971553],[-87.4430744307443,30.405079374487755],[-87.45387453874538,30.388193601788927],[-87.46107461074611,30.3713078290901],[-87.47547475474754,30.359487788200923],[-87.49707497074971,30.35442205639127],[-87.5150751507515,30.347667747311746],[-87.52227522275223,30.33584770642257],[-87.5330753307533,30.324027665533393],[-87.55827558275583,30.31896193372374],[-87.57267572675727,30.322339088263504],[-87.57627576275762,30.325716242803267],[-87.57987579875798,30.33078197461292],[-87.58347583475835,30.339224860962332],[-87.60147601476014,30.35442205639127],[-87.6050760507605,30.359487788200923],[-87.61227612276123,30.359487788200923],[-87.60867608676087,30.344290592771983],[-87.60147601476014,30.332470551882807],[-87.59787597875979,30.322339088263504],[-87.6050760507605,30.305453315564677],[-87.59427594275942,30.305453315564677],[-87.58347583475835,30.305453315564677],[-87.57267572675727,30.30883047010444],[-87.56547565475654,30.31389620191409],[-87.59067590675906,30.275058924706784],[-87.65547655476554,30.25141884292843],[-87.7850778507785,30.23622164749949],[-87.9110791107911,30.23622164749949],[-87.99747997479975,30.224401606610314],[-88.02988029880298,30.224401606610314],[-88.0190801908019,30.234533070229602],[-87.99747997479975,30.242975956579016],[-87.95787957879578,30.249730265658542],[-87.9470794707947,30.254795997468193],[-87.94347943479434,30.261550306547733],[-87.93627936279363,30.264927461087495],[-87.91467914679147,30.248041688388668],[-87.87507875078751,30.241287379309142],[-87.83907839078391,30.25141884292843],[-87.79227792277922,30.263238883817607],[-87.76347763477635,30.280124656516435],[-87.77787777877778,30.31389620191409],[-87.82467824678247,30.35104490185151],[-87.83187831878318,30.364553520010574],[-87.82827828278282,30.374684983629862],[-87.8210782107821,30.39663648813834],[-87.8210782107821,30.405079374487755],[-87.83187831878318,30.41183368356728],[-87.83547835478355,30.41183368356728],[-87.83907839078391,30.408456529027518],[-87.84987849878499,30.39325933359858],[-87.84987849878499,30.388193601788927],[-87.84987849878499,30.386505024519053],[-87.86427864278643,30.388193601788927],[-87.87867878678786,30.389882179058816],[-87.88587885878859,30.39325933359858],[-87.89667896678966,30.39832506540823],[-87.90387903879038,30.405079374487755],[-87.9110791107911,30.41352226083717],[-87.91827918279182,30.42365372445647],[-87.91827918279182,30.43378518807576],[-87.92187921879218,30.445605228964936],[-87.92187921879218,30.457425269854127],[-87.9290792907929,30.469245310743304],[-87.93627936279363,30.477688197092718],[-87.93987939879399,30.482753928902355],[-87.93987939879399,30.499639701601183],[-87.9290792907929,30.519902628839787],[-87.91827918279182,30.5367884015386],[-87.9110791107911,30.548608442427792],[-87.90747907479074,30.56380563785673],[-87.9110791107911,30.584068565095322],[-87.94347943479434,30.660054542240047],[-87.95427954279542,30.671874583129224],[-87.97587975879759,30.682006046748526],[-87.98667986679867,30.6836946240184],[-87.99747997479975,30.6836946240184],[-88.00468004680046,30.687071778558163],[-88.00828008280082,30.69889181944734],[-88.00828008280082,30.714089014876294],[-88.00828008280082,30.72590905576547],[-88.01548015480155,30.736040519384773],[-88.02988029880298,30.737729096654647],[-88.02268022680227,30.72422047849558],[-88.02268022680227,30.709023283066642],[-88.02988029880298,30.697203242177466],[-88.04428044280442,30.68876035582805],[-88.03708037080371,30.675251737668987],[-88.04428044280442,30.6651202740497],[-88.05148051480515,30.654988810430396],[-88.05868058680586,30.638103037731568],[-88.05868058680586,30.617840110492978],[-88.06228062280623,30.604331492333912],[-88.06948069480694,30.594200028714624],[-88.08028080280802,30.582379987825433],[-88.08388083880838,30.575625678745908],[-88.08388083880838,30.567182792396494],[-88.08388083880838,30.548608442427792],[-88.08748087480875,30.540165556078378],[-88.09468094680946,30.530034092459076],[-88.09828098280983,30.52159120610966],[-88.10188101881019,30.504705433410834],[-88.1090810908109,30.470933888013178],[-88.11268112681127,30.452359538044476],[-88.1090810908109,30.41183368356728],[-88.11988119881198,30.337536283692444],[-88.12708127081271,30.325716242803267],[-88.13788137881379,30.31896193372374],[-88.14148141481415,30.322339088263504],[-88.1450814508145,30.32909339734303],[-88.1450814508145,30.332470551882807],[-88.16668166681667,30.332470551882807],[-88.18468184681846,30.33415912915268],[-88.19548195481954,30.337536283692444],[-88.19548195481954,30.345979170041858],[-88.18828188281883,30.367930674550337],[-88.21708217082171,30.37806213816964],[-88.27828278282783,30.389882179058816],[-88.30348303483035,30.401702219947992],[-88.3070830708307,30.39325933359858],[-88.3070830708307,30.389882179058816],[-88.31068310683106,30.386505024519053],[-88.31068310683106,30.381439292709402],[-88.31788317883178,30.381439292709402],[-88.33588335883358,30.40339079721788],[-88.35388353883539,30.40339079721788],[-88.37908379083791,30.39325933359858],[-88.40428404284043,30.388193601788927],[-88.40788407884078,30.383127869979276],[-88.40788407884078,30.3713078290901],[-88.40788407884078,30.359487788200923],[-88.41868418684186,30.35442205639127],[-88.42948429484295,30.352733479121397],[-88.43668436684366,30.345979170041858],[-88.44028440284403,30.339224860962332],[-88.44748447484474,30.332470551882807],[-88.4690846908469,30.324027665533393],[-88.4870848708487,30.33078197461292],[-88.50508505085051,30.34091343823222],[-88.53388533885338,30.345979170041858],[-88.54468544685446,30.345979170041858],[-88.5590855908559,30.347667747311746],[-88.56628566285663,30.35442205639127],[-88.57348573485734,30.374684983629862],[-88.58788587885878,30.383127869979276],[-88.59148591485915,30.394947910868467],[-88.59868598685986,30.394947910868467],[-88.61668616686167,30.369619251820225],[-88.66348663486635,30.35442205639127],[-88.71028710287102,30.35104490185151],[-88.74268742687427,30.35442205639127],[-88.8470884708847,30.421965147186583],[-88.92628926289262,30.442228074425174],[-88.95148951489514,30.432096610805885],[-88.96588965889659,30.42871945626611],[-88.98388983889839,30.42871945626611],[-88.98388983889839,30.421965147186583],[-88.85788857888579,30.408456529027518],[-88.87588875888758,30.394947910868467],[-88.90828908289083,30.39325933359858],[-88.96948969489695,30.394947910868467],[-88.98388983889839,30.39157075632869],[-89.01269012690126,30.37806213816964],[-89.0270902709027,30.374684983629862],[-89.04509045090451,30.372996406359988],[-89.11349113491134,30.352733479121397],[-89.17829178291782,30.337536283692444],[-89.23949239492394,30.320650510993616],[-89.25389253892538,30.31896193372374],[-89.27189271892719,30.322339088263504],[-89.27189271892719,30.33078197461292],[-89.26469264692646,30.339224860962332],[-89.25029250292502,30.345979170041858],[-89.26829268292683,30.35442205639127],[-89.30069300693006,30.37637356089975],[-89.32229322293223,30.381439292709402],[-89.33309333093331,30.37637356089975],[-89.34389343893439,30.367930674550337],[-89.35469354693547,30.357799210931034],[-89.35469354693547,30.35104490185151],[-89.34749347493475,30.347667747311746],[-89.32229322293223,30.345979170041858],[-89.31869318693187,30.342602015502095],[-89.31869318693187,30.324027665533393],[-89.32229322293223,30.312207624644202],[-89.32949329493294,30.302076161024914],[-89.41949419494195,30.258173152007956],[-89.41229412294122,30.244664533848905],[-89.41949419494195,30.234533070229602],[-89.43389433894339,30.2159587202609],[-89.43749437494374,30.205827256641598],[-89.43749437494374,30.197384370292184],[-89.4410944109441,30.18894148394277],[-89.45549455494555,30.182187174863245],[-89.46269462694626,30.18894148394277],[-89.45549455494555,30.19400721575242],[-89.45909459094591,30.197384370292184],[-89.46989469894699,30.202450102101835],[-89.4770947709477,30.19400721575242],[-89.49149491494914,30.18894148394277],[-89.50589505895059,30.18894148394277],[-89.51669516695166,30.195695793022296],[-89.52389523895239,30.195695793022296],[-89.52749527495274,30.192318638482533],[-89.53469534695347,30.180498597593356],[-89.5670956709567,30.16361282489453],[-89.59589595895959,30.155169938545114],[-89.61389613896138,30.16867855670418],[-89.6030960309603,30.16867855670418],[-89.59589595895959,30.170367133974068],[-89.58509585095851,30.175432865783705],[-89.59589595895959,30.187252906672896],[-89.61029610296103,30.185564329403007],[-89.62469624696247,30.178810020323482],[-89.64269642696426,30.175432865783705],[-89.67509675096751,30.180498597593356],[-89.6930969309693,30.180498597593356],[-89.70749707497075,30.175432865783705],[-89.71469714697146,30.178810020323482],[-89.73629736297363,30.185564329403007],[-89.74349743497434,30.18894148394277],[-89.74709747097471,30.197384370292184],[-89.74709747097471,30.20413867937171],[-89.74349743497434,30.21089298845125],[-89.74349743497434,30.219335874800663],[-89.75069750697507,30.237910224769365],[-89.76869768697686,30.239598802039254],[-89.80469804698046,30.22946733841995],[-89.82629826298263,30.23115591568984],[-89.86229862298623,30.258173152007956],[-89.88389883898839,30.264927461087495],[-89.89469894698946,30.263238883817607],[-89.91269912699127,30.258173152007956],[-89.92349923499235,30.258173152007956],[-89.97029970299702,30.264927461087495],[-89.97749977499775,30.275058924706784],[-89.99909999099991,30.31389620191409],[-90.00270002700027,30.322339088263504],[-90.01350013500135,30.325716242803267],[-90.06030060300603,30.359487788200923],[-90.09630096300963,30.372996406359988],[-90.1431014310143,30.384816447249165],[-90.18990189901899,30.39157075632869],[-90.22230222302223,30.388193601788927],[-90.24390243902438,30.372996406359988],[-90.2691026910269,30.352733479121397],[-90.30510305103051,30.305453315564677],[-90.33030330303303,30.276747501976672],[-90.4059040590406,30.219335874800663],[-90.42750427504275,30.18894148394277],[-90.43470434704346,30.143349897655938],[-90.41310413104131,30.10620119771852],[-90.38070380703807,30.080872538670278],[-90.33750337503375,30.065675343241338],[-90.26550265502655,30.060609611431687],[-90.22950229502295,30.040346684193096],[-90.16830168301682,30.025149488764143],[-90.14670146701467,30.02346091149427],[-90.10350103501035,30.035280952383445],[-90.03870038700387,30.040346684193096],[-90.0171001710017,30.045412416002748],[-89.99549995499954,30.052166725082273],[-89.92709927099271,30.096069734099217],[-89.89829898298983,30.123086970417347],[-89.88029880298802,30.155169938545114],[-89.85869858698587,30.15179278400535],[-89.84789847898479,30.145038474925826],[-89.84789847898479,30.129841279496873],[-89.84069840698406,30.119709815877584],[-89.82629826298263,30.11126692952817],[-89.81189811898119,30.10451262044863],[-89.79749797497975,30.099446888638994],[-89.79029790297902,30.099446888638994],[-89.78669786697867,30.102824043178757],[-89.7830978309783,30.11126692952817],[-89.76149761497615,30.136595588576412],[-89.75429754297542,30.14841562946559],[-89.74709747097471,30.161924247624654],[-89.74349743497434,30.175432865783705],[-89.73629736297363,30.175432865783705],[-89.7290972909729,30.161924247624654],[-89.73989739897398,30.150104206735463],[-89.75069750697507,30.123086970417347],[-89.75789757897579,30.114644084067933],[-89.75429754297542,30.11126692952817],[-89.75069750697507,30.109578352258282],[-89.74709747097471,30.10451262044863],[-89.74349743497434,30.099446888638994],[-89.7290972909729,30.123086970417347],[-89.7290972909729,30.12646412495711],[-89.72189721897219,30.128152702227],[-89.70749707497075,30.124775547687236],[-89.70389703897038,30.12646412495711],[-89.68949689496894,30.134907011306524],[-89.68229682296823,30.139972743116175],[-89.68229682296823,30.14841562946559],[-89.68229682296823,30.15348136127524],[-89.68949689496894,30.155169938545114],[-89.6930969309693,30.15348136127524],[-89.6930969309693,30.14841562946559],[-89.70029700297003,30.14841562946559],[-89.70749707497075,30.150104206735463],[-89.71109711097111,30.155169938545114],[-89.70749707497075,30.161924247624654],[-89.68229682296823,30.16867855670418],[-89.66789667896678,30.16361282489453],[-89.64989649896499,30.1467270521957],[-89.6390963909639,30.139972743116175],[-89.65349653496534,30.123086970417347],[-89.66789667896678,30.112955506798045],[-89.67869678696786,30.101135465908868],[-89.68229682296823,30.075806806860626],[-89.71109711097111,30.067363920511212],[-89.71829718297182,30.062298188701575],[-89.72189721897219,30.052166725082273],[-89.71829718297182,30.04203526146297],[-89.71829718297182,30.033592375113557],[-89.7290972909729,30.025149488764143],[-89.74709747097471,30.040346684193096],[-89.77229772297723,30.050478147812385],[-89.80109801098011,30.050478147812385],[-89.82269822698227,30.04203526146297],[-89.83349833498335,30.02683806603403],[-89.84069840698406,30.011640870605092],[-89.84069840698406,29.994755097906264],[-89.83349833498335,29.976180747937548],[-89.82269822698227,29.957606397968846],[-89.81189811898119,29.947474934349543],[-89.79389793897938,29.94409777980978],[-89.7650976509765,29.942409202539892],[-89.75069750697507,29.947474934349543],[-89.71829718297182,29.96098355250861],[-89.70749707497075,29.955917820698957],[-89.71109711097111,29.94916351161943],[-89.72549725497255,29.933966316190478],[-89.7290972909729,29.9221462753013],[-89.70389703897038,29.898506193522948],[-89.68589685896859,29.88330899809401],[-89.66429664296642,29.874866111744595],[-89.64269642696426,29.874866111744595],[-89.62109621096211,29.879931843554232],[-89.6030960309603,29.890063307173534],[-89.58869588695886,29.90863765714225],[-89.57429574295743,29.930589161650715],[-89.57069570695707,29.952540666159194],[-89.57069570695707,29.988000788826724],[-89.5670956709567,30.00150940698579],[-89.55269552695526,30.011640870605092],[-89.54189541895418,30.015018025144855],[-89.52029520295203,30.020083756954506],[-89.50949509495095,30.025149488764143],[-89.50229502295022,30.030215220573794],[-89.49869498694987,30.036969529653334],[-89.49509495094951,30.04372383873286],[-89.49149491494914,30.052166725082273],[-89.48789487894878,30.057232456891924],[-89.48789487894878,30.07074107505099],[-89.48789487894878,30.075806806860626],[-89.48069480694807,30.07918396140039],[-89.47349473494735,30.077495384130515],[-89.46989469894699,30.072429652320864],[-89.45549455494555,30.07074107505099],[-89.43389433894339,30.062298188701575],[-89.42669426694266,30.0589210341618],[-89.42669426694266,30.052166725082273],[-89.43389433894339,30.052166725082273],[-89.43389433894339,30.045412416002748],[-89.43029430294303,30.04203526146297],[-89.42669426694266,30.038658106923208],[-89.41949419494195,30.038658106923208],[-89.41589415894158,30.04372383873286],[-89.39429394293943,30.057232456891924],[-89.3870938709387,30.0589210341618],[-89.37269372693727,30.05385530235216],[-89.36549365493654,30.04878957054251],[-89.36909369093691,30.040346684193096],[-89.37989379893799,30.031903797843682],[-89.39429394293943,30.02852664330392],[-89.42309423094231,30.031903797843682],[-89.43389433894339,30.025149488764143],[-89.4410944109441,30.015018025144855],[-89.43749437494374,30.00657513879544],[-89.43389433894339,29.998132252446027],[-89.43389433894339,29.989689366096613],[-89.4410944109441,29.982935057017087],[-89.45189451894518,29.97955790247731],[-89.45549455494555,29.976180747937548],[-89.4410944109441,29.969426438858022],[-89.43029430294303,29.969426438858022],[-89.40149401494014,29.972803593397785],[-89.3870938709387,29.969426438858022],[-89.36909369093691,29.950852088889306],[-89.38349383493835,29.935654893460367],[-89.40149401494014,29.932277738920604],[-89.40869408694087,29.94916351161943],[-89.43389433894339,29.935654893460367],[-89.43389433894339,29.92890058438084],[-89.41949419494195,29.912014811682013],[-89.41229412294122,29.906949079872362],[-89.41589415894158,29.906949079872362],[-89.41229412294122,29.906949079872362],[-89.41229412294122,29.90188334806271],[-89.40869408694087,29.90188334806271],[-89.40149401494014,29.90863765714225],[-89.39069390693906,29.91708054349165],[-89.37989379893799,29.920457698031427],[-89.36909369093691,29.91876912076154],[-89.36549365493654,29.90863765714225],[-89.37269372693727,29.898506193522948],[-89.39429394293943,29.88668615263377],[-89.39429394293943,29.879931843554232],[-89.37989379893799,29.88330899809401],[-89.37269372693727,29.88668615263377],[-89.36549365493654,29.893440461713297],[-89.35829358293583,29.890063307173534],[-89.33309333093331,29.879931843554232],[-89.3510935109351,29.869800379934944],[-89.35829358293583,29.86642322539518],[-89.35469354693547,29.863046070855404],[-89.3510935109351,29.86135749358553],[-89.34749347493475,29.857980339045767],[-89.34389343893439,29.852914607236116],[-89.35829358293583,29.851226029966227],[-89.36909369093691,29.84616029815659],[-89.37629376293762,29.83940598907705],[-89.37989379893799,29.832651679997525],[-89.37269372693727,29.822520216378223],[-89.36549365493654,29.809011598219158],[-89.35829358293583,29.79888013459987],[-89.34389343893439,29.792125825520344],[-89.35469354693547,29.792125825520344],[-89.37989379893799,29.79719155732998],[-89.3870938709387,29.79719155732998],[-89.39429394293943,29.790437248250456],[-89.4050940509405,29.77186289828174],[-89.41229412294122,29.765108589202214],[-89.41229412294122,29.77186289828174],[-89.40869408694087,29.785371516440804],[-89.40869408694087,29.792125825520344],[-89.41949419494195,29.792125825520344],[-89.42669426694266,29.79888013459987],[-89.43749437494374,29.815765907298697],[-89.44469444694447,29.822520216378223],[-89.45549455494555,29.829274525457762],[-89.46989469894699,29.832651679997525],[-89.48429484294843,29.832651679997525],[-89.4770947709477,29.815765907298697],[-89.48789487894878,29.802257289139632],[-89.50229502295022,29.792125825520344],[-89.51669516695166,29.77861720736128],[-89.52749527495274,29.760042857392563],[-89.5310953109531,29.7566657028528],[-89.54549545495455,29.75159997104315],[-89.55269552695526,29.749911393773274],[-89.57789577895778,29.753288548313037],[-89.58509585095851,29.75159997104315],[-89.6030960309603,29.73471419834432],[-89.6030960309603,29.71613984837562],[-89.59589595895959,29.69925407567679],[-89.58509585095851,29.68912261205749],[-89.5670956709567,29.685745457517726],[-89.54189541895418,29.687434034787614],[-89.52389523895239,29.687434034787614],[-89.50949509495095,29.675613993898438],[-89.51669516695166,29.675613993898438],[-89.52389523895239,29.675613993898438],[-89.52749527495274,29.675613993898438],[-89.5310953109531,29.675613993898438],[-89.51669516695166,29.667171107549024],[-89.48429484294843,29.640153871230893],[-89.48429484294843,29.633399562151368],[-89.49869498694987,29.635088139421242],[-89.5130951309513,29.643531025770656],[-89.52749527495274,29.65366248938996],[-89.53829538295382,29.662105375739372],[-89.5670956709567,29.667171107549024],[-89.59589595895959,29.668859684818898],[-89.62469624696247,29.67392541662855],[-89.67149671496715,29.700942652946665],[-89.70389703897038,29.70938553929608],[-89.6930969309693,29.69925407567679],[-89.66789667896678,29.685745457517726],[-89.65349653496534,29.675613993898438],[-89.6570965709657,29.67392541662855],[-89.66789667896678,29.668859684818898],[-89.64629646296463,29.662105375739372],[-89.64629646296463,29.65703964392972],[-89.64629646296463,29.655351066659833],[-89.64629646296463,29.650285334850196],[-89.62109621096211,29.62664525307183],[-89.6390963909639,29.619890943992303],[-89.72189721897219,29.640153871230893],[-89.75789757897579,29.633399562151368],[-89.73269732697327,29.628333830341717],[-89.72189721897219,29.623268098532066],[-89.71469714697146,29.613136634912777],[-89.72549725497255,29.613136634912777],[-89.7290972909729,29.613136634912777],[-89.72189721897219,29.601316594023587],[-89.6930969309693,29.572610780435582],[-89.68949689496894,29.560790739546405],[-89.68229682296823,29.537150657768052],[-89.67869678696786,29.528707771418638],[-89.66789667896678,29.5219534623391],[-89.64269642696426,29.5135105759897],[-89.61749617496174,29.500001957830634],[-89.59229592295922,29.503379112370396],[-89.57789577895778,29.498313380560745],[-89.58149581495815,29.494936226020982],[-89.58149581495815,29.493247648751094],[-89.58509585095851,29.48987049421133],[-89.57069570695707,29.48480476240168],[-89.54189541895418,29.47129614424263],[-89.52389523895239,29.46960756697274],[-89.52389523895239,29.462853257893215],[-89.53469534695347,29.44934463973415],[-89.53829538295382,29.435836021575085],[-89.5310953109531,29.42739313522567],[-89.51669516695166,29.43414744430521],[-89.52029520295203,29.418950248876257],[-89.52749527495274,29.41219593979673],[-89.53829538295382,29.410507362526843],[-89.54549545495455,29.40881878525697],[-89.53829538295382,29.396998744367792],[-89.52749527495274,29.393621589828015],[-89.51669516695166,29.39193301255814],[-89.45549455494555,29.403753053447318],[-89.43389433894339,29.403753053447318],[-89.41229412294122,29.393621589828015],[-89.41229412294122,29.390244435288253],[-89.40149401494014,29.39193301255814],[-89.39429394293943,29.39193301255814],[-89.3870938709387,29.38686728074849],[-89.37989379893799,29.38686728074849],[-89.37269372693727,29.39193301255814],[-89.3618936189362,29.393621589828015],[-89.3510935109351,29.39193301255814],[-89.33669336693367,29.390244435288253],[-89.33669336693367,29.3851787034786],[-89.34389343893439,29.38180154893884],[-89.3510935109351,29.380112971668964],[-89.3618936189362,29.380112971668964],[-89.37269372693727,29.376735817129187],[-89.37989379893799,29.369981508049662],[-89.37989379893799,29.363227198970137],[-89.37629376293762,29.35985004443036],[-89.36909369093691,29.358161467160485],[-89.35469354693547,29.348030003541183],[-89.34389343893439,29.34634142627131],[-89.33309333093331,29.34634142627131],[-89.31869318693187,29.35140715808096],[-89.29709297092971,29.354784312620723],[-89.28989289892898,29.356472889890597],[-89.28269282692827,29.358161467160485],[-89.27189271892719,29.353095735350834],[-89.26469264692646,29.34465284900142],[-89.26109261092611,29.326078499032718],[-89.25749257492575,29.31932418995318],[-89.2430924309243,29.315947035413416],[-89.22869228692286,29.32270134449294],[-89.21069210692107,29.334521385382132],[-89.20349203492034,29.353095735350834],[-89.19629196291963,29.353095735350834],[-89.19629196291963,29.35140715808096],[-89.19629196291963,29.34971858081107],[-89.19269192691927,29.34634142627131],[-89.1890918909189,29.34634142627131],[-89.1890918909189,29.33958711719177],[-89.1890918909189,29.331144230842355],[-89.1890918909189,29.31932418995318],[-89.17829178291782,29.32270134449294],[-89.17469174691746,29.326078499032718],[-89.16749167491675,29.315947035413416],[-89.16389163891638,29.310881303603765],[-89.15669156691567,29.30243841725435],[-89.1530915309153,29.290618376365174],[-89.14229142291423,29.295684108174825],[-89.13869138691386,29.299061262714588],[-89.13149131491315,29.28724122182541],[-89.12789127891278,29.27710975820611],[-89.12429124291242,29.268666871856695],[-89.11349113491134,29.263601140047058],[-89.1170911709117,29.255158253697644],[-89.12789127891278,29.250092521887993],[-89.13509135091351,29.24671536734823],[-89.14589145891459,29.243338212808467],[-89.14589145891459,29.236583903728928],[-89.10629106291063,29.22645244010964],[-89.0990909909099,29.21463239922045],[-89.08829088290882,29.206189512871035],[-89.07029070290703,29.202812358331272],[-89.05949059490595,29.202812358331272],[-89.05949059490595,29.206189512871035],[-89.0630906309063,29.216320976490337],[-89.04869048690486,29.218009553760226],[-89.03069030690307,29.216320976490337],[-89.01989019890199,29.20956666741081],[-89.00909009090091,29.196058049251747],[-89.03069030690307,29.196058049251747],[-89.03069030690307,29.187615162902333],[-89.01989019890199,29.187615162902333],[-89.01629016290163,29.18423800836257],[-89.00909009090091,29.174106544743267],[-89.03069030690307,29.180860853822807],[-89.03789037890378,29.17748369928303],[-89.04509045090451,29.167352235663742],[-89.05229052290522,29.167352235663742],[-89.05229052290522,29.174106544743267],[-89.05229052290522,29.18254943109268],[-89.05229052290522,29.187615162902333],[-89.06669066690667,29.18423800836257],[-89.08469084690847,29.174106544743267],[-89.09549095490955,29.158909349314328],[-89.0990909909099,29.14708930842515],[-89.08829088290882,29.148777885695026],[-89.02349023490234,29.14708930842515],[-89.05229052290522,29.098120567598542],[-89.0630906309063,29.086300526709365],[-89.06669066690667,29.10149772213832],[-89.07029070290703,29.113317763027496],[-89.08109081090811,29.118383494837147],[-89.0990909909099,29.12007207210702],[-89.09189091890919,29.111629185757607],[-89.08829088290882,29.10149772213832],[-89.08469084690847,29.08967768124913],[-89.08469084690847,29.07785764035995],[-89.09549095490955,29.086300526709365],[-89.10269102691026,29.091366258519017],[-89.10629106291063,29.09980914486843],[-89.10989109891099,29.086300526709365],[-89.12429124291242,29.072791908550315],[-89.14949149491494,29.047463249502073],[-89.1530915309153,29.030577476803245],[-89.13509135091351,28.99680593140559],[-89.14589145891459,28.99005162232605],[-89.15669156691567,28.99680593140559],[-89.1890918909189,29.030577476803245],[-89.19269192691927,29.040708940422533],[-89.19989199891998,29.05252898131171],[-89.2250922509225,29.091366258519017],[-89.23229232292323,29.09980914486843],[-89.2430924309243,29.106563453947956],[-89.24669246692467,29.106563453947956],[-89.25029250292502,29.096431990328668],[-89.24669246692467,29.086300526709365],[-89.24669246692467,29.07954621762984],[-89.2430924309243,29.072791908550315],[-89.25029250292502,29.0643490222009],[-89.26469264692646,29.05928329039125],[-89.28989289892898,29.055906135851487],[-89.30789307893079,29.050840404041836],[-89.31869318693187,29.033954631343008],[-89.32229322293223,29.02213459045383],[-89.32589325893258,29.008625972294766],[-89.37269372693727,28.947837190578994],[-89.39069390693906,28.93432857241993],[-89.41229412294122,28.92757426334039],[-89.40869408694087,28.95965723146817],[-89.40869408694087,28.96978869508746],[-89.40149401494014,28.97485442689711],[-89.38349383493835,28.988363045056175],[-89.37629376293762,28.99680593140559],[-89.35469354693547,29.020446013183943],[-89.3510935109351,29.030577476803245],[-89.3510935109351,29.04239751769242],[-89.3510935109351,29.05252898131171],[-89.3510935109351,29.05759471312136],[-89.34389343893439,29.0643490222009],[-89.32229322293223,29.067726176740663],[-89.31149311493115,29.072791908550315],[-89.29349293492935,29.106563453947956],[-89.28629286292863,29.118383494837147],[-89.2790927909279,29.140334999345612],[-89.27549275492754,29.160597926584202],[-89.28989289892898,29.160597926584202],[-89.29349293492935,29.153843617504677],[-89.29349293492935,29.1420235766155],[-89.29709297092971,29.130203535726324],[-89.30429304293042,29.12682638118656],[-89.31149311493115,29.133580690266086],[-89.31149311493115,29.14708930842515],[-89.31149311493115,29.170729390203505],[-89.3150931509315,29.180860853822807],[-89.32229322293223,29.18254943109268],[-89.32949329493294,29.175795122013156],[-89.33309333093331,29.16397508112398],[-89.32949329493294,29.15215504023479],[-89.32589325893258,29.131892112996198],[-89.32589325893258,29.12007207210702],[-89.33669336693367,29.103186299408193],[-89.3618936189362,29.091366258519017],[-89.38349383493835,29.087989103979254],[-89.39429394293943,29.096431990328668],[-89.4050940509405,29.123449226646784],[-89.4050940509405,29.130203535726324],[-89.39789397893979,29.1420235766155],[-89.4050940509405,29.148777885695026],[-89.42669426694266,29.155532194774565],[-89.48429484294843,29.243338212808467],[-89.47349473494735,29.243338212808467],[-89.45549455494555,29.250092521887993],[-89.47349473494735,29.258535408237407],[-89.49509495094951,29.26022398550728],[-89.50589505895059,29.250092521887993],[-89.49509495094951,29.229829594649402],[-89.55629556295563,29.248403944618104],[-89.58149581495815,29.250092521887993],[-89.60669606696067,29.25684683096752],[-89.61749617496174,29.268666871856695],[-89.62109621096211,29.285552644555523],[-89.63549635496355,29.293995530904937],[-89.66069660696607,29.300749839984476],[-89.66789667896678,29.293995530904937],[-89.68589685896859,29.295684108174825],[-89.73269732697327,29.305815571794113],[-89.79389793897938,29.312569880873653],[-89.8190981909819,29.315947035413416],[-89.79389793897938,29.327767076302592],[-89.77589775897759,29.332832808112244],[-89.75789757897579,29.342964271731546],[-89.75069750697507,29.356472889890597],[-89.74349743497434,29.369981508049662],[-89.74349743497434,29.3851787034786],[-89.75069750697507,29.39193301255814],[-89.76149761497615,29.393621589828015],[-89.76869768697686,29.38855585801838],[-89.77229772297723,29.38686728074849],[-89.77589775897759,29.3851787034786],[-89.77589775897759,29.380112971668964],[-89.7830978309783,29.39193301255814],[-89.77949779497794,29.398687321637667],[-89.77229772297723,29.405441630717206],[-89.77229772297723,29.41219593979673],[-89.77589775897759,29.420638826146146],[-89.78669786697867,29.418950248876257],[-89.80829808298083,29.40881878525697],[-89.81549815498154,29.410507362526843],[-89.8190981909819,29.417261671606383],[-89.82269822698227,29.42401598068591],[-89.82629826298263,29.42908171249556],[-89.82629826298263,29.430770289765434],[-89.82989829898298,29.432458867035322],[-89.83349833498335,29.435836021575085],[-89.83349833498335,29.442590330654625],[-89.82989829898298,29.44765606246426],[-89.82629826298263,29.452721794273913],[-89.8190981909819,29.456098948813676],[-89.81549815498154,29.467918989702852],[-89.81549815498154,29.474673298782392],[-89.84069840698406,29.479739030592043],[-89.84789847898479,29.483116185131806],[-89.85149851498515,29.479739030592043],[-89.85149851498515,29.466230412432978],[-89.85869858698587,29.4442789079245],[-89.87669876698767,29.44934463973415],[-89.9090990909909,29.476361876052266],[-89.94149941499414,29.46454183516309],[-89.97029970299702,29.472984721512503],[-90.08190081900818,29.537150657768052],[-90.09990099900999,29.543904966847577],[-90.11790117901178,29.54728212138734],[-90.12870128701287,29.543904966847577],[-90.13230132301322,29.538839235037926],[-90.12150121501215,29.5320849259584],[-90.12870128701287,29.523642039608987],[-90.1431014310143,29.537150657768052],[-90.16830168301682,29.567545048625945],[-90.18270182701826,29.57936508951512],[-90.18630186301863,29.56923362589582],[-90.20430204302043,29.55234785319699],[-90.20790207902078,29.538839235037926],[-90.18990189901899,29.537150657768052],[-90.18270182701826,29.538839235037926],[-90.18270182701826,29.5320849259584],[-90.1971019710197,29.525330616878875],[-90.20430204302043,29.523642039608987],[-90.21510215102151,29.523642039608987],[-90.21150211502115,29.515199153259573],[-90.20430204302043,29.51182199871981],[-90.20070200702007,29.51182199871981],[-90.1971019710197,29.518576307799336],[-90.18630186301863,29.51182199871981],[-90.1431014310143,29.476361876052266],[-90.13230132301322,29.47129614424263],[-90.12510125101251,29.46960756697274],[-90.09630096300963,29.467918989702852],[-90.0711007110071,29.459476103353452],[-90.04590045900459,29.44765606246426],[-90.02430024300243,29.42908171249556],[-90.03870038700387,29.42232740341602],[-90.04590045900459,29.417261671606383],[-90.04950049500495,29.40713020798708],[-90.04950049500495,29.390244435288253],[-90.04590045900459,29.3851787034786],[-90.04230042300422,29.380112971668964],[-90.03870038700387,29.373358662589425],[-90.0351003510035,29.3666043535099],[-90.03870038700387,29.33958711719177],[-90.04230042300422,29.34634142627131],[-90.04590045900459,29.353095735350834],[-90.04950049500495,29.358161467160485],[-90.06030060300603,29.35985004443036],[-90.05670056700566,29.341275694461658],[-90.04590045900459,29.32438992176283],[-90.0351003510035,29.312569880873653],[-90.0171001710017,29.305815571794113],[-90.0171001710017,29.299061262714588],[-90.03870038700387,29.290618376365174],[-90.04950049500495,29.307504149064002],[-90.06750067500674,29.310881303603765],[-90.07470074700747,29.300749839984476],[-90.06390063900639,29.28386406728565],[-90.09630096300963,29.28386406728565],[-90.09990099900999,29.253469676427756],[-90.08550085500855,29.22476386283975],[-90.04950049500495,29.229829594649402],[-90.05670056700566,29.212943821950574],[-90.08190081900818,29.174106544743267],[-90.08550085500855,29.167352235663742],[-90.09990099900999,29.15722077204444],[-90.11430114301143,29.143712153885375],[-90.13230132301322,29.131892112996198],[-90.14670146701467,29.12682638118656],[-90.1971019710197,29.098120567598542],[-90.22950229502295,29.086300526709365],[-90.24390243902438,29.091366258519017],[-90.23670236702367,29.096431990328668],[-90.23670236702367,29.106563453947956],[-90.23670236702367,29.12007207210702],[-90.24030240302403,29.131892112996198],[-90.24750247502475,29.140334999345612],[-90.2691026910269,29.15722077204444],[-90.27270272702727,29.167352235663742],[-90.26550265502655,29.17748369928303],[-90.26190261902619,29.187615162902333],[-90.25830258302582,29.19943520379151],[-90.25470254702547,29.211255244680686],[-90.25110251102511,29.22476386283975],[-90.25110251102511,29.236583903728928],[-90.25110251102511,29.24671536734823],[-90.25470254702547,29.26022398550728],[-90.26190261902619,29.268666871856695],[-90.2691026910269,29.270355449126583],[-90.27270272702727,29.263601140047058],[-90.279902799028,29.24671536734823],[-90.28710287102871,29.234895326459053],[-90.29070290702907,29.23996105826869],[-90.30150301503015,29.25684683096752],[-90.33750337503375,29.293995530904937],[-90.33750337503375,29.305815571794113],[-90.33750337503375,29.310881303603765],[-90.35190351903519,29.30919272633389],[-90.3591035910359,29.30412699452424],[-90.36630366303663,29.293995530904937],[-90.36630366303663,29.280486912745886],[-90.36990369903698,29.270355449126583],[-90.3951039510395,29.243338212808467],[-90.3951039510395,29.299061262714588],[-90.39870398703987,29.310881303603765],[-90.42030420304202,29.341275694461658],[-90.42390423904239,29.34634142627131],[-90.42750427504275,29.34971858081107],[-90.43470434704346,29.356472889890597],[-90.44550445504454,29.358161467160485],[-90.4491044910449,29.342964271731546],[-90.45270452704527,29.327767076302592],[-90.45990459904598,29.314258458143527],[-90.48150481504814,29.290618376365174],[-90.49590495904958,29.305815571794113],[-90.50670506705066,29.30412699452424],[-90.51390513905139,29.295684108174825],[-90.52830528305283,29.290618376365174],[-90.56070560705606,29.300749839984476],[-90.57150571505714,29.305815571794113],[-90.5571055710557,29.310881303603765],[-90.5571055710557,29.31932418995318],[-90.56790567905679,29.321012767223067],[-90.57870578705787,29.31932418995318],[-90.58230582305822,29.314258458143527],[-90.58590585905858,29.305815571794113],[-90.59670596705966,29.307504149064002],[-90.60390603906039,29.307504149064002],[-90.60750607506074,29.30243841725435],[-90.60750607506074,29.290618376365174],[-90.60390603906039,29.28724122182541],[-90.57870578705787,29.28386406728565],[-90.58230582305822,29.26697829458682],[-90.59310593105931,29.255158253697644],[-90.59670596705966,29.24502679007834],[-90.58590585905858,29.229829594649402],[-90.59670596705966,29.218009553760226],[-90.60390603906039,29.223075285569863],[-90.6111061110611,29.233206749189165],[-90.62190621906218,29.243338212808467],[-90.62550625506255,29.236583903728928],[-90.63270632706326,29.22476386283975],[-90.63990639906399,29.202812358331272],[-90.63630636306362,29.19774662652162],[-90.63270632706326,29.196058049251747],[-90.63990639906399,29.15722077204444],[-90.63990639906399,29.140334999345612],[-90.6471064710647,29.153843617504677],[-90.65070650706507,29.16228650385409],[-90.66510665106651,29.16397508112398],[-90.67590675906759,29.160597926584202],[-90.67590675906759,29.155532194774565],[-90.67590675906759,29.145400731155263],[-90.67590675906759,29.13695784480585],[-90.69030690306903,29.131892112996198],[-90.6939069390694,29.12682638118656],[-90.69750697506974,29.12176064937691],[-90.70470704707047,29.12007207210702],[-90.71190711907118,29.123449226646784],[-90.72630726307263,29.130203535726324],[-90.74430744307443,29.130203535726324],[-90.75150751507515,29.11669491756726],[-90.75870758707586,29.11669491756726],[-90.79470794707947,29.12682638118656],[-90.80550805508055,29.12682638118656],[-90.79830798307982,29.138646422075738],[-90.78030780307803,29.1420235766155],[-90.76950769507695,29.148777885695026],[-90.77670776707767,29.167352235663742],[-90.79470794707947,29.160597926584202],[-90.81270812708127,29.165663658393854],[-90.82710827108271,29.175795122013156],[-90.84510845108451,29.18254943109268],[-90.84150841508415,29.165663658393854],[-90.84510845108451,29.15722077204444],[-90.86670866708667,29.14708930842515],[-90.87030870308703,29.143712153885375],[-90.87030870308703,29.138646422075738],[-90.87390873908738,29.13526926753596],[-90.88470884708846,29.133580690266086],[-90.93150931509315,29.170729390203505],[-90.95670956709567,29.185926585632444],[-90.98190981909819,29.190992317442095],[-91.01071010710106,29.18254943109268],[-91.01071010710106,29.192680894711984],[-91.00711007110071,29.201123781061398],[-90.99990999909998,29.206189512871035],[-90.9891098910989,29.20956666741081],[-90.99990999909998,29.218009553760226],[-91.01431014310143,29.223075285569863],[-91.03231032310323,29.22476386283975],[-91.03951039510395,29.2196981310301],[-91.03951039510395,29.20450093560116],[-91.05031050310502,29.19774662652162],[-91.06471064710647,29.194369471981858],[-91.07911079110791,29.196058049251747],[-91.08991089910899,29.201123781061398],[-91.11151111511114,29.2196981310301],[-91.12231122311223,29.223075285569863],[-91.23031230312303,29.238272480998816],[-91.28431284312843,29.26022398550728],[-91.32751327513274,29.295684108174825],[-91.33831338313382,29.33958711719177],[-91.33111331113311,29.32438992176283],[-91.3131131311313,29.31932418995318],[-91.29151291512915,29.32270134449294],[-91.2771127711277,29.332832808112244],[-91.26631266312663,29.35140715808096],[-91.25911259112591,29.3666043535099],[-91.24831248312483,29.378424394399076],[-91.22311223112231,29.380112971668964],[-91.22671226712266,29.363227198970137],[-91.21591215912159,29.342964271731546],[-91.19071190711907,29.331144230842355],[-91.16191161911618,29.33958711719177],[-91.16191161911618,29.305815571794113],[-91.16551165511655,29.290618376365174],[-91.17631176311762,29.27710975820611],[-91.16551165511655,29.275421180936235],[-91.15831158311583,29.270355449126583],[-91.15471154711547,29.26191256277717],[-91.15471154711547,29.250092521887993],[-91.13311133111331,29.25684683096752],[-91.12231122311223,29.263601140047058],[-91.11151111511114,29.270355449126583],[-91.11871118711187,29.275421180936235],[-91.12231122311223,29.28217549001576],[-91.12591125911258,29.28386406728565],[-91.12591125911258,29.290618376365174],[-91.11151111511114,29.315947035413416],[-91.12231122311223,29.337898539921895],[-91.17631176311762,29.380112971668964],[-91.20871208712087,29.395310167097904],[-91.21951219512195,29.403753053447318],[-91.22311223112231,29.41219593979673],[-91.21951219512195,29.42908171249556],[-91.22311223112231,29.43414744430521],[-91.22671226712266,29.439213176114848],[-91.2411124111241,29.440901753384736],[-91.24831248312483,29.445967485194387],[-91.26271262712626,29.46960756697274],[-91.26631266312663,29.49662480329087],[-91.26271262712626,29.5219534623391],[-91.25191251912518,29.543904966847577],[-91.2411124111241,29.55234785319699],[-91.23031230312303,29.55910216227653],[-91.21951219512195,29.56923362589582],[-91.21591215912159,29.586119398594647],[-91.21951219512195,29.599628016753712],[-91.22671226712266,29.608070903103126],[-91.2411124111241,29.613136634912777],[-91.25911259112591,29.613136634912777],[-91.24831248312483,29.5911851304043],[-91.25191251912518,29.57598793497536],[-91.28071280712807,29.555725007736754],[-91.28791287912878,29.545593544117466],[-91.28431284312843,29.535462080498164],[-91.28071280712807,29.52701919414875],[-91.2771127711277,29.523642039608987],[-91.28071280712807,29.5135105759897],[-91.29511295112951,29.494936226020982],[-91.29871298712987,29.483116185131806],[-91.32031320313203,29.49662480329087],[-91.36351363513634,29.51182199871981],[-91.38871388713886,29.518576307799336],[-91.41031410314103,29.518576307799336],[-91.42471424714248,29.5219534623391],[-91.42831428314283,29.528707771418638],[-91.42471424714248,29.538839235037926],[-91.41751417514175,29.54728212138734],[-91.41391413914138,29.557413585006643],[-91.42831428314283,29.565856471356057],[-91.45351453514535,29.55234785319699],[-91.49311493114931,29.538839235037926],[-91.53271532715327,29.53377350322829],[-91.55791557915579,29.538839235037926],[-91.54711547115471,29.54897069865723],[-91.53991539915398,29.56923362589582],[-91.54351543515435,29.5911851304043],[-91.55431554315543,29.609759480373],[-91.55791557915579,29.619890943992303],[-91.55791557915579,29.63171098488148],[-91.56151561515615,29.641842448500782],[-91.56871568715687,29.64690818031042],[-91.57951579515795,29.645219603040545],[-91.6011160111601,29.63677671669113],[-91.6119161191612,29.633399562151368],[-91.64071640716406,29.635088139421242],[-91.64431644316443,29.645219603040545],[-91.63711637116371,29.662105375739372],[-91.63351633516335,29.685745457517726],[-91.62991629916299,29.729648466534684],[-91.63711637116371,29.74146850742386],[-91.66231662316623,29.75159997104315],[-91.68391683916839,29.753288548313037],[-91.77751777517774,29.748222816503386],[-91.79551795517955,29.743157084693735],[-91.83151831518315,29.722894157455144],[-91.85671856718567,29.71951700291538],[-91.86751867518674,29.729648466534684],[-91.86751867518674,29.743157084693735],[-91.87111871118711,29.75159997104315],[-91.87831878318782,29.760042857392563],[-91.87471874718747,29.77861720736128],[-91.8639186391864,29.79719155732998],[-91.8531185311853,29.805634443679395],[-91.84591845918459,29.79888013459987],[-91.83871838718387,29.787060093710693],[-91.82791827918278,29.78368293917093],[-91.82791827918278,29.802257289139632],[-91.82791827918278,29.815765907298697],[-91.83511835118351,29.825897370917986],[-91.84591845918459,29.830963102727637],[-91.89271892718926,29.837717411807176],[-91.9071190711907,29.837717411807176],[-91.93231932319323,29.81914306183846],[-91.94671946719467,29.822520216378223],[-91.95391953919538,29.829274525457762],[-91.96831968319682,29.832651679997525],[-91.98271982719827,29.832651679997525],[-91.98631986319863,29.827585948187874],[-91.98271982719827,29.81914306183846],[-91.989919899199,29.805634443679395],[-92.00072000720007,29.79888013459987],[-92.08712087120871,29.77186289828174],[-92.10152101521015,29.765108589202214],[-92.12312123121231,29.743157084693735],[-92.13392133921339,29.73640277561421],[-92.14832148321483,29.73640277561421],[-92.13752137521375,29.744845661963623],[-92.13392133921339,29.7566657028528],[-92.14112141121412,29.766797166472102],[-92.15912159121591,29.77186289828174],[-92.16272162721627,29.768485743741977],[-92.16992169921699,29.75497712558291],[-92.17712177121771,29.75159997104315],[-92.18072180721806,29.75159997104315],[-92.20232202322023,29.765108589202214],[-92.19872198721987,29.746534239233497],[-92.19152191521916,29.724582734725033],[-92.18072180721806,29.704319807486442],[-92.17352173521735,29.695876921137028],[-92.16632166321664,29.697565498406902],[-92.1519215192152,29.707696962026205],[-92.12672126721267,29.711074116565968],[-92.1159211592116,29.71445127110573],[-92.10872108721087,29.71445127110573],[-92.10152101521015,29.70938553929608],[-92.13032130321302,29.69249976659725],[-92.14112141121412,29.68912261205749],[-92.11232112321123,29.638465293961005],[-92.10872108721087,29.619890943992303],[-92.10152101521015,29.619890943992303],[-92.08352083520835,29.630022407611605],[-92.06192061920619,29.63677671669113],[-92.03672036720367,29.63677671669113],[-92.02592025920259,29.62664525307183],[-92.05472054720546,29.62157952126219],[-92.0691206912069,29.61651378945254],[-92.07272072720727,29.606382325833238],[-92.05112051120511,29.599628016753712],[-92.06552065520656,29.587807975864536],[-92.09432094320942,29.587807975864536],[-92.13752137521375,29.586119398594647],[-92.17352173521735,29.57598793497536],[-92.2419224192242,29.545593544117466],[-92.2779227792278,29.53377350322829],[-92.31392313923139,29.53377350322829],[-92.46512465124651,29.560790739546405],[-92.49032490324903,29.562479316816294],[-92.51552515525155,29.565856471356057],[-92.54792547925479,29.570922203165708],[-92.68472684726846,29.604693748563363],[-92.79632796327962,29.643531025770656],[-92.85392853928539,29.667171107549024],[-92.91512915129151,29.69249976659725],[-93.02673026730267,29.733025621074447],[-93.09513095130951,29.75159997104315],[-93.19953199531994,29.773551475551628],[-93.25353253532535,29.77692863009139],[-93.30753307533075,29.768485743741977],[-93.34713347133471,29.76173143466245],[-93.38673386733868,29.766797166472102],[-93.41913419134191,29.768485743741977],[-93.45513455134551,29.770174321011865],[-93.49833498334984,29.768485743741977],[-93.55953559535595,29.763420011932325],[-93.64233642336423,29.749911393773274],[-93.69993699937,29.743157084693735],[-93.73953739537394,29.738091352884098],[-93.76833768337683,29.726271311994907],[-93.79353793537935,29.717828425645493],[-93.82233822338223,29.70938553929608],[-93.82953829538295,29.700942652946665],[-93.85113851138512,29.722894157455144],[-93.87993879938799,29.749911393773274],[-93.89433894338943,29.790437248250456],[-93.88713887138871,29.807323020949283],[-93.85833858338583,29.81914306183846],[-93.82233822338223,29.82420879364811],[-93.78273782737827,29.85629176177588],[-93.77193771937719,29.905260502602474],[-93.76113761137611,29.96098355250861],[-93.76833768337683,29.977869325207436],[-93.78993789937898,29.98462363428696],[-93.81873818738187,29.98631221155685],[-93.83313833138331,29.982935057017087],[-93.85473854738547,29.98631221155685],[-93.85833858338583,29.967737861588134],[-93.86913869138691,29.950852088889306],[-93.92313923139231,29.86642322539518],[-93.93753937539375,29.805634443679395],[-93.93393933939339,29.77692863009139],[-93.87633876338764,29.722894157455144],[-93.85833858338583,29.69249976659725],[-93.87633876338764,29.675613993898438],[-93.88713887138871,29.67392541662855],[-93.91593915939158,29.682368302977963],[-94.03834038340383,29.68405688024785],[-94.05994059940599,29.682368302977963],[-94.10314103141032,29.670548262088786],[-94.13194131941319,29.65872822119961],[-94.21474214742148,29.618202366722414],[-94.33354333543335,29.577676512245233],[-94.6539465394654,29.452721794273913],[-94.68994689946899,29.42908171249556],[-94.7439474394744,29.375047239859313],[-94.76194761947619,29.3666043535099],[-94.78714787147871,29.369981508049662],[-94.79074790747907,29.380112971668964],[-94.78354783547834,29.393621589828015],[-94.70074700747007,29.462853257893215],[-94.67554675546755,29.474673298782392],[-94.65034650346503,29.478050453322155],[-94.63954639546395,29.481427607861917],[-94.62874628746287,29.48649333967157],[-94.62154621546215,29.48987049421133],[-94.59274592745928,29.51688773052946],[-94.5819458194582,29.523642039608987],[-94.5711457114571,29.52701919414875],[-94.52074520745207,29.523642039608987],[-94.50274502745027,29.525330616878875],[-94.4919449194492,29.53377350322829],[-94.48474484744847,29.55234785319699],[-94.48474484744847,29.565856471356057],[-94.49554495544955,29.55910216227653],[-94.50994509945099,29.54897069865723],[-94.5279452794528,29.555725007736754],[-94.54594545945459,29.56923362589582],[-94.56034560345603,29.57429935770547],[-94.60714607146072,29.55234785319699],[-94.69354693546936,29.538839235037926],[-94.73674736747367,29.528707771418638],[-94.75474754747547,29.523642039608987],[-94.779947799478,29.530396348688512],[-94.78714787147871,29.540527812307815],[-94.78354783547834,29.54728212138734],[-94.77274772747727,29.542216389577703],[-94.76194761947619,29.543904966847577],[-94.75114751147511,29.560790739546405],[-94.73674736747367,29.57936508951512],[-94.71514715147151,29.61144805764289],[-94.70434704347043,29.650285334850196],[-94.69354693546936,29.695876921137028],[-94.6971469714697,29.717828425645493],[-94.70074700747007,29.73471419834432],[-94.70434704347043,29.75159997104315],[-94.71154711547115,29.760042857392563],[-94.71874718747188,29.77692863009139],[-94.73314733147332,29.78199436190104],[-94.7439474394744,29.78199436190104],[-94.76194761947619,29.77692863009139],[-94.77274772747727,29.773551475551628],[-94.79434794347944,29.77186289828174],[-94.80514805148051,29.78199436190104],[-94.82674826748267,29.768485743741977],[-94.82674826748267,29.749911393773274],[-94.84834848348483,29.717828425645493],[-94.86274862748627,29.682368302977963],[-94.87714877148771,29.665482530279135],[-94.9059490594906,29.65703964392972],[-94.92034920349204,29.655351066659833],[-94.93114931149312,29.667171107549024],[-94.93834938349383,29.68912261205749],[-94.94914949149491,29.69418834386714],[-94.96714967149671,29.704319807486442],[-94.99954999549995,29.71613984837562],[-95.01395013950139,29.71951700291538],[-95.02835028350283,29.73640277561421],[-95.03555035550355,29.748222816503386],[-95.05355053550535,29.749911393773274],[-95.06435064350643,29.712762693835856],[-95.04995049950499,29.707696962026205],[-95.03555035550355,29.704319807486442],[-95.02835028350283,29.697565498406902],[-95.01755017550175,29.695876921137028],[-95.01035010350103,29.69418834386714],[-94.99954999549995,29.687434034787614],[-94.9851498514985,29.675613993898438],[-95.01035010350103,29.660416798469484],[-95.01395013950139,29.645219603040545],[-95.01035010350103,29.62664525307183],[-94.9851498514985,29.606382325833238],[-94.98874988749887,29.59456228494406],[-95.00675006750068,29.57936508951512],[-95.01755017550175,29.56923362589582],[-95.02475024750247,29.542216389577703],[-94.9851498514985,29.5135105759897],[-94.90954909549095,29.49662480329087],[-94.91314913149131,29.488181916941457],[-94.92394923949239,29.476361876052266],[-94.93474934749347,29.479739030592043],[-94.94914949149491,29.472984721512503],[-94.96354963549635,29.46960756697274],[-94.96354963549635,29.462853257893215],[-94.94914949149491,29.452721794273913],[-94.94554945549456,29.435836021575085],[-94.9419494194942,29.42232740341602],[-94.91674916749167,29.420638826146146],[-94.91674916749167,29.42908171249556],[-94.92034920349204,29.432458867035322],[-94.92034920349204,29.43414744430521],[-94.92034920349204,29.435836021575085],[-94.91674916749167,29.437524598844973],[-94.91674916749167,29.440901753384736],[-94.91674916749167,29.442590330654625],[-94.88794887948879,29.400375898907555],[-94.87714877148771,29.393621589828015],[-94.86634866348663,29.39193301255814],[-94.81954819548196,29.373358662589425],[-94.8231482314823,29.373358662589425],[-94.82674826748267,29.37167008531955],[-94.83034830348304,29.369981508049662],[-94.83394833948338,29.3666043535099],[-94.84834848348483,29.376735817129187],[-94.869948699487,29.380112971668964],[-94.88794887948879,29.376735817129187],[-94.89514895148952,29.356472889890597],[-94.90234902349023,29.334521385382132],[-94.91314913149131,29.315947035413416],[-94.92754927549275,29.307504149064002],[-94.94554945549456,29.31932418995318],[-94.94914949149491,29.31932418995318],[-94.95634956349564,29.305815571794113],[-94.96354963549635,29.297372685444714],[-94.9851498514985,29.28386406728565],[-94.98874988749887,29.28386406728565],[-94.9959499594996,29.285552644555523],[-94.99954999549995,29.28386406728565],[-94.99954999549995,29.28217549001576],[-94.99954999549995,29.273732603666346],[-94.99954999549995,29.270355449126583],[-95.06435064350643,29.20450093560116],[-95.08955089550895,29.189303740172207],[-95.11475114751147,29.174106544743267],[-95.12555125551255,29.194369471981858],[-95.13635136351363,29.19943520379151],[-95.15435154351543,29.201123781061398],[-95.16875168751687,29.20956666741081],[-95.16155161551615,29.201123781061398],[-95.15075150751507,29.174106544743267],[-95.1579515795158,29.15215504023479],[-95.1579515795158,29.130203535726324],[-95.15075150751507,29.08967768124913],[-95.15075150751507,29.072791908550315],[-95.15075150751507,29.05928329039125],[-95.1579515795158,29.045774672232184],[-95.22995229952299,28.9951173541357],[-95.25875258752588,28.981608735976636],[-95.31275312753127,28.92757426334039],[-95.36675366753667,28.88704840886321],[-95.38115381153811,28.880294099783683],[-95.40275402754027,28.878605522513794],[-95.42075420754207,28.87185121343427],[-95.48555485554856,28.8296367816872],[-95.60075600756008,28.763782268161776],[-95.64395643956439,28.74520791819306],[-95.68715687156872,28.736765031843646],[-95.7339573395734,28.733387877303883],[-95.78075780757807,28.735076454573772],[-95.81675816758167,28.73169930003401],[-95.95355953559535,28.68948486828694],[-95.94635946359463,28.675976250127874],[-95.94635946359463,28.665844786508572],[-95.949959499595,28.657401900159158],[-95.95355953559535,28.64051612746033],[-95.95355953559535,28.637138972920567],[-95.95715957159571,28.63207324111093],[-95.95355953559535,28.62700750930128],[-95.94635946359463,28.62531893203139],[-95.93915939159392,28.62531893203139],[-95.93195931959319,28.62700750930128],[-95.93195931959319,28.630384663841042],[-95.79515795157951,28.699616331906228],[-95.75555755557555,28.713124950065293],[-95.71955719557195,28.71481352733518],[-95.83835838358384,28.64727043653987],[-95.9031590315903,28.618564622951865],[-96.00396003960039,28.596613118443386],[-96.06516065160652,28.554398686696317],[-96.12276122761227,28.53751291399749],[-96.18756187561875,28.50205279132996],[-96.21996219962199,28.490232750440782],[-96.19476194761947,28.515561409489024],[-96.16236162361623,28.53751291399749],[-96.01836018360183,28.601678850253037],[-95.99675996759967,28.60674458206269],[-95.9859598595986,28.613498891142214],[-95.98235982359823,28.628696086571154],[-95.98955989559896,28.64558185926998],[-96.00756007560075,28.654024745619395],[-96.02556025560256,28.650647591079633],[-96.06516065160652,28.63207324111093],[-96.07956079560795,28.62700750930128],[-96.09756097560975,28.623630354761517],[-96.15876158761587,28.598301695713275],[-96.20556205562055,28.586481654824084],[-96.22716227162272,28.586481654824084],[-96.22356223562235,28.601678850253037],[-96.20556205562055,28.61012173660245],[-96.15876158761587,28.615187468412103],[-96.14436144361443,28.62700750930128],[-96.13716137161371,28.62700750930128],[-96.13716137161371,28.633761818380805],[-96.1551615516155,28.635450395650693],[-96.16956169561695,28.63207324111093],[-96.18036180361803,28.628696086571154],[-96.19476194761947,28.62700750930128],[-96.21636216362164,28.628696086571154],[-96.21996219962199,28.637138972920567],[-96.21636216362164,28.64727043653987],[-96.19116191161912,28.681041981937526],[-96.18756187561875,28.691173445556814],[-96.19476194761947,28.694550600096576],[-96.21636216362164,28.694550600096576],[-96.23076230762307,28.692862022826702],[-96.24516245162451,28.68779629101705],[-96.26676266762668,28.674287672857986],[-96.25956259562595,28.68948486828694],[-96.2811628116281,28.679353404667637],[-96.30636306363063,28.650647591079633],[-96.3279632796328,28.64051612746033],[-96.34596345963459,28.635450395650693],[-96.34956349563495,28.637138972920567],[-96.34956349563495,28.643893282000107],[-96.35676356763567,28.654024745619395],[-96.38556385563855,28.679353404667637],[-96.38916389163892,28.68948486828694],[-96.37836378363784,28.699616331906228],[-96.37836378363784,28.71481352733518],[-96.38196381963819,28.73001072276412],[-96.39636396363963,28.743519340923186],[-96.40356403564036,28.738453609113535],[-96.41436414364144,28.733387877303883],[-96.4179641796418,28.73001072276412],[-96.43596435964359,28.755339381812362],[-96.43956439564396,28.763782268161776],[-96.44316443164432,28.763782268161776],[-96.44316443164432,28.748585072732823],[-96.43956439564396,28.73169930003401],[-96.43236432364323,28.716502104605055],[-96.42516425164251,28.70805921825564],[-96.4179641796418,28.711436372795404],[-96.40716407164071,28.716502104605055],[-96.39996399964,28.719879259144818],[-96.39636396363963,28.711436372795404],[-96.39996399964,28.70299348644599],[-96.40716407164071,28.696239177366465],[-96.41436414364144,28.692862022826702],[-96.4179641796418,28.68948486828694],[-96.4179641796418,28.681041981937526],[-96.41436414364144,28.674287672857986],[-96.41076410764107,28.665844786508572],[-96.41436414364144,28.657401900159158],[-96.4179641796418,28.643893282000107],[-96.40356403564036,28.635450395650693],[-96.37116371163711,28.62700750930128],[-96.42876428764288,28.594924541173498],[-96.46116461164611,28.58310450028432],[-96.49356493564936,28.57972734574456],[-96.47916479164792,28.591547386633735],[-96.46116461164611,28.593235963903624],[-96.44316443164432,28.596613118443386],[-96.43956439564396,28.616876045681977],[-96.44676446764467,28.635450395650693],[-96.48636486364863,28.611810313872326],[-96.49356493564936,28.637138972920567],[-96.49716497164971,28.64558185926998],[-96.50796507965079,28.643893282000107],[-96.51876518765188,28.64051612746033],[-96.52956529565296,28.643893282000107],[-96.53676536765367,28.64558185926998],[-96.55116551165511,28.64558185926998],[-96.55476554765548,28.64727043653987],[-96.55836558365583,28.654024745619395],[-96.56196561965619,28.660779054698935],[-96.55836558365583,28.66753336377846],[-96.56196561965619,28.674287672857986],[-96.56556565565656,28.68948486828694],[-96.56556565565656,28.696239177366465],[-96.56916569165692,28.70299348644599],[-96.579965799658,28.711436372795404],[-96.59076590765908,28.719879259144818],[-96.60516605166052,28.723256413684595],[-96.6159661596616,28.721567836414707],[-96.63036630366304,28.71481352733518],[-96.63396633966339,28.721567836414707],[-96.63756637566375,28.72494499095447],[-96.6519665196652,28.73001072276412],[-96.64836648366483,28.70468206371588],[-96.64476644766448,28.68779629101705],[-96.63756637566375,28.670910518318223],[-96.60876608766087,28.637138972920567],[-96.60516605166052,28.630384663841042],[-96.60156601566015,28.62025320022174],[-96.60156601566015,28.61012173660245],[-96.60876608766087,28.586481654824084],[-96.60876608766087,28.57972734574456],[-96.60156601566015,28.56790730485538],[-96.59076590765908,28.56959588212527],[-96.58356583565835,28.57972734574456],[-96.56916569165692,28.574661613934907],[-96.54036540365404,28.55777584123608],[-96.51876518765188,28.549332954886665],[-96.51516515165152,28.54426722307703],[-96.50796507965079,28.53751291399749],[-96.50076500765007,28.529070027648075],[-96.49356493564936,28.510495677679373],[-96.5439654396544,28.488544173170894],[-96.55476554765548,28.486855595901005],[-96.54756547565475,28.469969823202177],[-96.53316533165331,28.469969823202177],[-96.51516515165152,28.47841270955159],[-96.50436504365044,28.486855595901005],[-96.47196471964719,28.493609904980545],[-96.43596435964359,28.48178986409137],[-96.40716407164071,28.458149782313],[-96.40356403564036,28.434509700534647],[-96.47556475564755,28.40073815513699],[-96.49356493564936,28.39567242332734],[-96.52956529565296,28.37709807335864],[-96.5439654396544,28.373720918818876],[-96.6519665196652,28.31968644618263],[-96.669966699667,28.331506487071806],[-96.68796687966879,28.328129332532043],[-96.69876698766987,28.336572218881457],[-96.70236702367023,28.351769414310397],[-96.7059670596706,28.388918114247815],[-96.70956709567095,28.399049577867117],[-96.71676716767168,28.405803886946643],[-96.73476734767347,28.40749246421653],[-96.7419674196742,28.410869618756294],[-96.7419674196742,28.419312505105708],[-96.74556745567456,28.427755391455122],[-96.74556745567456,28.434509700534647],[-96.75276752767527,28.43788685507441],[-96.76356763567635,28.44464116415395],[-96.76716767167672,28.448018318693713],[-96.78516785167851,28.473346977741954],[-96.79236792367924,28.48010128682148],[-96.80316803168031,28.47503555501183],[-96.81036810368103,28.468281245932303],[-96.81396813968139,28.458149782313],[-96.81036810368103,28.451395473233475],[-96.80316803168031,28.454772627773238],[-96.7779677796778,28.43788685507441],[-96.77076770767708,28.426066814185234],[-96.76716767167672,28.410869618756294],[-96.77436774367743,28.40073815513699],[-96.79236792367924,28.40749246421653],[-96.81396813968139,28.421001082375582],[-96.82836828368283,28.429443968724996],[-96.84276842768428,28.41593535056593],[-96.82476824768247,28.387229536977927],[-96.7959679596796,28.356835146120048],[-96.78156781567816,28.331506487071806],[-96.78876788767887,28.31462071437298],[-96.7959679596796,28.29773494167415],[-96.79956799567995,28.279160591705434],[-96.78156781567816,28.242011891768016],[-96.79236792367924,28.228503273608965],[-96.82836828368283,28.20824034637036],[-96.84636846368464,28.19304315094142],[-96.87876878768787,28.15082871919435],[-96.89676896768967,28.140697255575063],[-96.92916929169292,28.133942946495523],[-96.94356943569436,28.127188637415998],[-96.93276932769328,28.162648760083528],[-96.92556925569255,28.179534532782355],[-96.91116911169111,28.19473172821131],[-96.92556925569255,28.21330607818001],[-96.91836918369184,28.231880428148727],[-96.90756907569076,28.248766200847555],[-96.91116911169111,28.263963396276495],[-96.92196921969219,28.263963396276495],[-96.93636936369363,28.248766200847555],[-96.9579695796958,28.2149946554499],[-96.9471694716947,28.204863191830597],[-96.94356943569436,28.191354573671532],[-96.9471694716947,28.17446880097272],[-96.9579695796958,28.154205873734114],[-96.97236972369723,28.133942946495523],[-96.98316983169832,28.128877214685886],[-97.01917019170192,28.140697255575063],[-97.01557015570155,28.142385832844937],[-97.01197011970119,28.1457629873847],[-97.00837008370084,28.149140141924477],[-97.00477004770048,28.154205873734114],[-97.01197011970119,28.164337337353416],[-97.00837008370084,28.19473172821131],[-97.01557015570155,28.20824034637036],[-97.01917019170192,28.20824034637036],[-97.03717037170371,28.18797741913177],[-97.06957069570696,28.16771449189318],[-97.10917109171092,28.154205873734114],[-97.13797137971379,28.147451564654588],[-97.13077130771308,28.15758302827389],[-97.13797137971379,28.166025914623305],[-97.15237152371523,28.169403069163067],[-97.16317163171631,28.16771449189318],[-97.17397173971739,28.159271605543765],[-97.17757177571775,28.147451564654588],[-97.17397173971739,28.139008678305174],[-97.1559715597156,28.133942946495523],[-97.19917199171991,28.096794246558105],[-97.21717217172171,28.07484274204964],[-97.209972099721,28.064711278430337],[-97.18837188371883,28.06302270116045],[-97.16677166771667,28.056268392080923],[-97.1559715597156,28.044448351191747],[-97.14517145171452,28.03093973303268],[-97.14517145171452,28.019119692143505],[-97.14877148771487,28.01067680579409],[-97.14877148771487,28.00561107398444],[-97.13797137971379,28.008988228524203],[-97.13077130771308,28.017431114873617],[-97.12357123571235,28.02756257849292],[-97.119971199712,28.041071196651984],[-97.11637116371163,28.054579814811035],[-97.10557105571056,28.071465587509863],[-97.05877058770588,28.08835136020869],[-97.04077040770407,28.10523713290752],[-97.04437044370444,28.11030286471717],[-97.04797047970479,28.113680019256932],[-97.04437044370444,28.11536859652682],[-97.04077040770407,28.117057173796695],[-97.03357033570336,28.118745751066584],[-97.02277022770227,28.11199144198706],[-97.02277022770227,28.100171401097867],[-97.02637026370263,28.061334123890575],[-97.02637026370263,28.04782550573151],[-97.02637026370263,28.041071196651984],[-97.02637026370263,28.036005464842333],[-97.03717037170371,28.02756257849292],[-97.04437044370444,28.019119692143505],[-97.06237062370623,27.988725301285612],[-97.0659706597066,27.988725301285612],[-97.0659706597066,27.9904138785555],[-97.0659706597066,27.992102455825375],[-97.06957069570696,27.99547961036515],[-97.10557105571056,27.936379405919254],[-97.18477184771848,27.836753346996176],[-97.20637206372064,27.821556151567222],[-97.23157231572316,27.824933306107],[-97.23157231572316,27.831687615186524],[-97.21357213572135,27.831687615186524],[-97.22437224372243,27.848573387885352],[-97.23517235172352,27.86377058331429],[-97.24957249572495,27.873902046933594],[-97.26757267572675,27.878967778743245],[-97.28917289172891,27.877279201473357],[-97.33237332373324,27.86039342877453],[-97.35757357573576,27.86039342877453],[-97.35037350373503,27.86545916058418],[-97.34677346773468,27.868836315123943],[-97.34677346773468,27.872213469663706],[-97.34317343173431,27.878967778743245],[-97.36837368373683,27.873902046933594],[-97.42597425974259,27.87559062420347],[-97.45117451174511,27.873902046933594],[-97.45837458374584,27.87052489239383],[-97.4619746197462,27.86039342877453],[-97.46557465574655,27.86039342877453],[-97.47277472774728,27.86039342877453],[-97.47997479974799,27.86377058331429],[-97.48717487174872,27.867147737854054],[-97.48717487174872,27.868836315123943],[-97.49077490774907,27.872213469663706],[-97.49077490774907,27.877279201473357],[-97.50157501575015,27.878967778743245],[-97.50517505175051,27.878967778743245],[-97.51957519575195,27.873902046933594],[-97.50517505175051,27.848573387885352],[-97.48717487174872,27.835064769726287],[-97.46557465574655,27.831687615186524],[-97.43317433174332,27.83844192426605],[-97.42237422374224,27.833376192456413],[-97.41157411574116,27.831687615186524],[-97.39717397173972,27.836753346996176],[-97.38997389973899,27.84519623334559],[-97.38637386373864,27.829999037916636],[-97.39357393573935,27.80129322432863],[-97.38997389973899,27.791161760709343],[-97.3719737197372,27.7557016380418],[-97.35757357573576,27.742193019882748],[-97.26757267572675,27.708421474485093],[-97.26037260372604,27.694912856326027],[-97.26397263972639,27.679715660897088],[-97.27117271172712,27.66282988819826],[-97.28557285572856,27.649321270039195],[-97.28917289172891,27.642566960959655],[-97.29277292772927,27.63074692007048],[-97.29637296372964,27.608795415562014],[-97.29997299972999,27.6003525292126],[-97.32877328773287,27.549695211116116],[-97.34677346773468,27.50579220209916],[-97.35037350373503,27.485529274860568],[-97.35397353973539,27.47539781124128],[-97.36837368373683,27.460200615812326],[-97.4079740797408,27.357197402349485],[-97.41157411574116,27.335245897841006],[-97.42237422374224,27.32849158876148],[-97.48717487174872,27.304851506983127],[-97.50877508775088,27.282900002474648],[-97.52317523175232,27.277834270664997],[-97.54117541175411,27.289654311554173],[-97.50517505175051,27.30822866152289],[-97.49437494374943,27.318360125142178],[-97.4979749797498,27.320048702412066],[-97.50157501575015,27.32342585695183],[-97.50157501575015,27.32680301149159],[-97.50517505175051,27.331868743301243],[-97.48717487174872,27.33018016603137],[-97.47637476374763,27.331868743301243],[-97.46917469174691,27.335245897841006],[-97.4619746197462,27.34368878419042],[-97.4619746197462,27.345377361460308],[-97.46557465574655,27.347065938730196],[-97.47277472774728,27.352131670539833],[-97.47277472774728,27.34875451600007],[-97.47997479974799,27.347065938730196],[-97.49077490774907,27.35044309326996],[-97.49437494374943,27.362263134159136],[-97.49077490774907,27.380837484127838],[-97.48717487174872,27.399411834096554],[-97.50517505175051,27.39265752501703],[-97.53037530375303,27.372394597778424],[-97.54117541175411,27.3656402886989],[-97.5339753397534,27.352131670539833],[-97.54477544775447,27.34875451600007],[-97.55197551975519,27.34368878419042],[-97.569975699757,27.331868743301243],[-97.57357573575736,27.345377361460308],[-97.58437584375844,27.342000206920545],[-97.60237602376023,27.318360125142178],[-97.59877598775988,27.311605816062652],[-97.60237602376023,27.304851506983127],[-97.6059760597606,27.299785775173476],[-97.61677616776167,27.298097197903587],[-97.63117631176311,27.299785775173476],[-97.63477634776348,27.306540084253],[-97.63477634776348,27.314982970602415],[-97.63837638376384,27.325114434221717],[-97.71757717577175,27.42811764768456],[-97.74277742777427,27.450069152193038],[-97.77517775177752,27.46864350216174],[-97.77157771577716,27.445003420383387],[-97.73557735577356,27.414609029525494],[-97.72477724777248,27.39265752501703],[-97.73917739177392,27.39265752501703],[-97.70317703177031,27.360574556889247],[-97.69237692376923,27.340311629650657],[-97.7139771397714,27.331868743301243],[-97.71037710377104,27.32342585695183],[-97.71037710377104,27.321737279681955],[-97.70677706777067,27.318360125142178],[-97.68877688776888,27.325114434221717],[-97.67077670776708,27.321737279681955],[-97.66717667176671,27.311605816062652],[-97.67797677976779,27.298097197903587],[-97.69957699576996,27.28627715701441],[-97.72477724777248,27.2879657342843],[-97.749977499775,27.298097197903587],[-97.77517775177752,27.298097197903587],[-97.76077760777608,27.279522847934885],[-97.7139771397714,27.26770280704571],[-97.67797677976779,27.274457116125234],[-97.659976599766,27.274457116125234],[-97.64197641976419,27.26601422977582],[-97.63117631176311,27.24406272526734],[-97.59877598775988,27.242374147997467],[-97.55917559175592,27.235619838917927],[-97.51957519575195,27.232242684378164],[-97.50157501575015,27.24406272526734],[-97.47637476374763,27.255882766156518],[-97.44037440374403,27.272768538855345],[-97.42597425974259,27.26432565250593],[-97.42597425974259,27.25081703434688],[-97.43317433174332,27.238996993457704],[-97.44757447574476,27.235619838917927],[-97.4439744397444,27.22379979802875],[-97.4439744397444,27.205225448060048],[-97.4439744397444,27.18833967536122],[-97.44757447574476,27.179896789011806],[-97.45837458374584,27.174831057202155],[-97.45477454774547,27.16132243904309],[-97.44757447574476,27.14612524361415],[-97.44757447574476,27.132616625455086],[-97.45477454774547,27.12079658456591],[-97.46557465574655,27.112353698216495],[-97.47997479974799,27.107287966406844],[-97.4979749797498,27.10559938913697],[-97.4979749797498,27.10053365732732],[-97.48717487174872,27.08871361643814],[-97.47997479974799,27.073516421009188],[-97.49437494374943,27.0633849573899],[-97.47997479974799,27.038056298341658],[-97.47997479974799,27.02117052564283],[-97.49437494374943,27.012727639293416],[-97.55197551975519,27.009350484753654],[-97.55917559175592,27.004284752944002],[-97.56277562775628,26.9941532893247],[-97.55917559175592,26.950250280307756],[-97.55557555575555,26.93336450760893],[-97.54477544775447,26.91816731217999],[-97.5339753397534,26.906347271290812],[-97.49437494374943,26.89115007586186],[-97.47997479974799,26.877641457702794],[-97.49437494374943,26.85906710773409],[-97.53757537575376,26.89621580767151],[-97.54837548375484,26.899592962211273],[-97.55557555575555,26.889461498591984],[-97.55917559175592,26.870887148623268],[-97.56277562775628,26.850624221384678],[-97.56277562775628,26.837115603225612],[-97.55557555575555,26.825295562336436],[-97.54477544775447,26.821918407796673],[-97.53037530375303,26.821918407796673],[-97.51237512375124,26.816852675987022],[-97.50157501575015,26.80672121236772],[-97.49437494374943,26.79152401693878],[-97.48717487174872,26.774638244239952],[-97.47997479974799,26.73073523522301],[-97.45837458374584,26.66656929896746],[-97.44757447574476,26.600714785442037],[-97.42597425974259,26.534860271916614],[-97.41877418774187,26.502777303788847],[-97.42237422374224,26.509531612868372],[-97.42957429574295,26.517974499217786],[-97.43317433174332,26.523040231027437],[-97.43677436774368,26.509531612868372],[-97.44757447574476,26.502777303788847],[-97.47277472774728,26.496022994709307],[-97.43677436774368,26.48589153109002],[-97.44037440374403,26.475760067470716],[-97.4439744397444,26.460562872041777],[-97.44757447574476,26.433545635723647],[-97.45117451174511,26.42341417210436],[-97.44757447574476,26.42003701756458],[-97.43677436774368,26.42003701756458],[-97.41877418774187,26.414971285754945],[-97.41157411574116,26.404839822135642],[-97.41157411574116,26.391331203976577],[-97.40437404374043,26.377822585817526],[-97.39717397173972,26.376134008547638],[-97.37557375573755,26.37444543127775],[-97.3719737197372,26.372756854007875],[-97.36837368373683,26.36431396765846],[-97.37917379173791,26.34405104041987],[-97.37557375573755,26.33729673134033],[-97.36837368373683,26.33729673134033],[-97.36477364773647,26.340673885880108],[-97.35757357573576,26.345739617689745],[-97.35757357573576,26.34911677222952],[-97.35037350373503,26.35418250403916],[-97.34317343173431,26.34911677222952],[-97.33957339573395,26.342362463149982],[-97.34677346773468,26.33729673134033],[-97.35397353973539,26.327165267721043],[-97.36117361173612,26.306902340482452],[-97.36117361173612,26.284950835973973],[-97.35397353973539,26.27650794962456],[-97.34317343173431,26.278196526894448],[-97.3359733597336,26.28157368143421],[-97.32877328773287,26.28157368143421],[-97.32157321573216,26.27650794962456],[-97.31437314373143,26.264687908735382],[-97.3179731797318,26.257933599655843],[-97.32517325173251,26.251179290576317],[-97.32877328773287,26.242736404226903],[-97.32877328773287,26.230916363337727],[-97.32157321573216,26.220784899718424],[-97.30717307173072,26.200521972479834],[-97.31437314373143,26.180259045241243],[-97.31437314373143,26.14986465438335],[-97.31077310773108,26.122847418065234],[-97.29997299972999,26.111027377176057],[-97.29277292772927,26.10933879990617],[-97.28557285572856,26.105961645366406],[-97.27477274772747,26.100895913556755],[-97.26397263972639,26.09920733628688],[-97.23517235172352,26.097518759016992],[-97.22437224372243,26.095830181747104],[-97.21357213572135,26.090764449937467],[-97.21717217172171,26.075567254508513],[-97.22077220772208,26.0671243681591],[-97.23157231572316,26.065435790889225],[-97.2459724597246,26.070501522698876],[-97.24957249572495,26.05361575000005],[-97.26037260372604,26.028287090951807],[-97.26037260372604,26.01477847279274],[-97.25677256772568,25.999581277363802],[-97.25317253172531,25.992826968284263],[-97.2459724597246,25.9894498137445],[-97.23517235172352,25.98438408193485],[-97.23157231572316,25.986072659204737],[-97.23157231572316,25.9894498137445],[-97.22797227972279,25.99451554555415],[-97.20277202772027,26.00464700917344],[-97.1919719197192,26.01140131825298],[-97.18477184771848,26.021532781872267],[-97.18117181171812,26.038418554571095],[-97.18117181171812,26.055304327269923],[-97.17397173971739,26.070501522698876],[-97.16317163171631,26.077255831778402],[-97.15237152371523,26.075567254508513],[-97.14157141571415,26.048550018190397],[-97.14157141571415,26.019844204602393],[-97.13797137971379,25.97425261831556],[-97.13797137971379,25.965809731966147],[-97.16677166771667,25.82903497310565],[-97.1559715597156,25.790197695898343],[-97.16317163171631,25.769934768659752],[-97.16677166771667,25.72265460510303],[-97.17397173971739,25.70408025513433],[-97.18477184771848,25.6871944824355],[-97.19917199171991,25.646668627958306],[-97.22437224372243,25.584191268972646],[-97.26037260372604,25.49976240547852],[-97.3179731797318,25.39000488293614],[-97.45837458374584,25.178932724200806],[-97.55557555575555,24.847971579303803],[-97.65277652776527,24.51532185713691],[-97.70677706777067,24.083046076046926],[-97.71037710377104,24.049274530649285],[-97.71757717577175,24.00874867617209],[-97.72477724777248,23.80611940378617],[-97.7319773197732,23.789233631087342],[-97.749977499775,23.782479322007816],[-97.8219782197822,23.789233631087342],[-97.8219782197822,23.782479322007816],[-97.79317793177931,23.782479322007816],[-97.77157771577716,23.780790744737928],[-97.75717757177571,23.76897070384875],[-97.75357753577535,23.74364204480051],[-97.76077760777608,23.652458872226845],[-97.75357753577535,23.652458872226845],[-97.74637746377464,23.679476108544975],[-97.74277742777427,23.745330622070398],[-97.7319773197732,23.774036435658402],[-97.72117721177212,23.73857631299086],[-97.74277742777427,23.53594704060494],[-97.75717757177571,23.439698136221622],[-97.76797767977679,23.260708945614056],[-97.74277742777427,22.971962232464122],[-97.75357753577535,22.848696091762676],[-97.75357753577535,22.907796296208573],[-97.75357753577535,22.922993491637513],[-97.76437764377644,22.911173450748336],[-97.79317793177931,22.808170237285495],[-97.80397803978039,22.792973041856555],[-97.83637836378364,22.760890073728774],[-97.839978399784,22.75413576464925],[-97.839978399784,22.73893856922031],[-97.84357843578435,22.733872837410658],[-97.85077850778508,22.73218426014077],[-97.8759787597876,22.73893856922031],[-97.8579785797858,22.71867564198172],[-97.85437854378543,22.698412714743114],[-97.89037890378904,22.625803892138165],[-97.89397893978939,22.610606696709226],[-97.89037890378904,22.595409501280272],[-97.88317883178831,22.588655192200747],[-97.86877868778687,22.58696661493086],[-97.8579785797858,22.593720924010398],[-97.85077850778508,22.602163810359812],[-97.85077850778508,22.61398385124899],[-97.85437854378543,22.644378242106868],[-97.85077850778508,22.657886860265933],[-97.839978399784,22.66970690115511],[-97.83277832778327,22.66970690115511],[-97.83277832778327,22.65957543753582],[-97.82917829178291,22.644378242106868],[-97.82917829178291,22.615672428518863],[-97.85077850778508,22.5346207195645],[-97.81837818378183,22.433306083371534],[-97.8219782197822,22.40460026978353],[-97.81837818378183,22.391091651624464],[-97.80757807578075,22.340434333527995],[-97.80397803978039,22.328614292638804],[-97.80037800378004,22.318482829019516],[-97.77517775177752,22.254316892763967],[-97.77157771577716,22.131050752062535],[-97.76077760777608,22.09559062939499],[-97.60957609576096,21.835549729833062],[-97.50877508775088,21.722415052750918],[-97.49077490774907,21.71228358913163],[-97.43677436774368,21.66500342557491],[-97.42597425974259,21.661626271035146],[-97.41517415174151,21.646429075606193],[-97.34317343173431,21.60252606658925],[-97.3179731797318,21.56031163484218],[-97.3179731797318,21.519785780364998],[-97.33237332373324,21.47757134861793],[-97.34317343173431,21.43535691687086],[-97.34677346773468,21.41847114417203],[-97.37557375573755,21.3728795578852],[-97.38637386373864,21.359370939726148],[-97.39717397173972,21.34079658975743],[-97.40437404374043,21.318845085248952],[-97.41157411574116,21.27325349896212],[-97.41877418774187,21.27325349896212],[-97.43317433174332,21.34248516702732],[-97.45477454774547,21.391453907853915],[-97.46557465574655,21.423536875981682],[-97.47277472774728,21.430291185061208],[-97.47277472774728,21.437045494140747],[-97.45477454774547,21.45561984410945],[-97.44037440374403,21.46743988499864],[-97.41877418774187,21.47757134861793],[-97.40077400774007,21.48094850315769],[-97.38997389973899,21.472505616808277],[-97.37917379173791,21.489391389507105],[-97.37557375573755,21.50458858493606],[-97.3719737197372,21.519785780364998],[-97.3719737197372,21.536671553063826],[-97.37917379173791,21.553557325762654],[-97.40077400774007,21.57044309846148],[-97.43677436774368,21.595771757509723],[-97.48717487174872,21.636297611986905],[-97.50157501575015,21.659937693765258],[-97.55557555575555,21.71228358913163],[-97.60237602376023,21.776449525387164],[-97.6239762397624,21.79502387535588],[-97.63117631176311,21.80515533897517],[-97.63117631176311,21.816975379864346],[-97.64917649176492,21.884518470659657],[-97.659976599766,21.908158552438024],[-97.68517685176852,21.925044325136838],[-97.76797767977679,22.063507661267224],[-97.78237782377823,22.09559062939499],[-97.77877778777787,22.073639124886526],[-97.76077760777608,22.036490424949108],[-97.749977499775,22.026358961329805],[-97.74277742777427,22.006096034091215],[-97.72117721177212,21.95206156145497],[-97.7139771397714,21.911535706977787],[-97.70677706777067,21.827106843483648],[-97.68877688776888,21.761252329958225],[-97.67437674376744,21.67513488919421],[-97.65637656376563,21.636297611986905],[-97.57717577175771,21.501211430396282],[-97.56277562775628,21.486014234967342],[-97.54477544775447,21.47757134861793],[-97.53037530375303,21.47588277134804],[-97.51597515975159,21.48263708042758],[-97.50157501575015,21.492768544046868],[-97.49077490774907,21.48094850315769],[-97.49077490774907,21.46237415318899],[-97.50157501575015,21.421848298711794],[-97.4979749797498,21.39989679420333],[-97.42957429574295,21.271564921692246],[-97.42957429574295,21.259744880803055],[-97.41157411574116,21.254679148993418],[-97.40437404374043,21.241170530834353],[-97.39717397173972,21.20571040816681],[-97.33957339573395,21.05542703114726],[-97.26757267572675,20.927095158636163],[-97.19557195571956,20.810583327014257],[-97.18837188371883,20.776811781616615],[-97.17757177571775,20.759926008917787],[-97.18477184771848,20.75654885437801],[-97.18837188371883,20.751483122568374],[-97.19917199171991,20.739663081679197],[-97.14877148771487,20.646791331835644],[-97.03357033570336,20.515082304784798],[-97.00117001170011,20.48637649119678],[-96.96156961569615,20.464424986688314],[-96.939969399694,20.44922779125936],[-96.92556925569255,20.410390514052068],[-96.91116911169111,20.39350474135324],[-96.88236882368824,20.368176082305],[-96.81396813968139,20.2905015278904],[-96.75276752767527,20.24153278706379],[-96.73476734767347,20.2212698598252],[-96.72036720367204,20.192564046237194],[-96.71316713167131,20.182432582617906],[-96.70236702367023,20.173989696268492],[-96.69516695166952,20.170612541728715],[-96.68436684366843,20.167235387188953],[-96.67716677166771,20.157103923569665],[-96.64116641166412,20.09969229639364],[-96.57636576365763,20.027083473788693],[-96.51156511565115,19.92914599213549],[-96.45756457564575,19.868357210419717],[-96.43956439564396,19.837962819561824],[-96.40356403564036,19.741713915178522],[-96.39276392763928,19.65390789714462],[-96.36036360363603,19.537396065522714],[-96.34956349563495,19.518821715553997],[-96.31716317163172,19.48167301561658],[-96.30996309963099,19.463098665647877],[-96.32076320763207,19.43945858386951],[-96.32076320763207,19.42426138844057],[-96.30636306363063,19.392178420312803],[-96.29916299162991,19.353341143105496],[-96.2919629196292,19.333078215866905],[-96.27756277562776,19.31450386589819],[-96.25596255962559,19.300995247739138],[-96.17316173161731,19.233452156943827],[-96.15876158761587,19.225009270594413],[-96.13356133561335,19.2351407342137],[-96.12276122761227,19.22163211605465],[-96.11916119161191,19.197992034276282],[-96.1119611196112,19.17941768430758],[-96.10116101161012,19.165909066148515],[-96.08676086760867,19.11525174805203],[-96.0759607596076,19.09667739808333],[-96.06156061560615,19.078103048114613],[-96.039960399604,19.066283007225437],[-96.01836018360183,19.061217275415785],[-95.98955989559896,19.061217275415785],[-95.97875978759787,19.057840120876023],[-95.97155971559715,19.046020079986846],[-95.95715957159571,18.975099834651772],[-95.94275942759427,18.939639711984228],[-95.92475924759248,18.90755674385646],[-95.9031590315903,18.88222808480822],[-95.86715867158671,18.848456539410563],[-95.84555845558455,18.833259343981624],[-95.8239582395824,18.826505034902098],[-95.80955809558095,18.82481645763221],[-95.78435784357843,18.818062148552684],[-95.76635766357663,18.80961926220327],[-95.7519575195752,18.799487798583968],[-95.7519575195752,18.792733489504442],[-95.7519575195752,18.765716253186312],[-95.77715777157772,18.779224871345377],[-95.8239582395824,18.812996416743033],[-95.87795877958779,18.828193612171972],[-95.9139591395914,18.861965157569628],[-95.93915939159392,18.868719466649154],[-95.95715957159571,18.856899425759977],[-95.93555935559355,18.838325075791275],[-95.89955899558996,18.82312788036232],[-95.88155881558815,18.816373571282796],[-95.87435874358744,18.799487798583968],[-95.84915849158492,18.779224871345377],[-95.80595805958059,18.752207635027247],[-95.80595805958059,18.74545332594772],[-95.8239582395824,18.74545332594772],[-95.85275852758527,18.755584789567024],[-95.86715867158671,18.758961944106787],[-95.87795877958779,18.752207635027247],[-95.87435874358744,18.738699016868196],[-95.86355863558636,18.723501821439243],[-95.85275852758527,18.716747512359717],[-95.83475834758347,18.718436089629606],[-95.8239582395824,18.72012466689948],[-95.80235802358024,18.730256130518782],[-95.79875798757988,18.735321862328433],[-95.79875798757988,18.738699016868196],[-95.79515795157951,18.743764748677847],[-95.78435784357843,18.74545332594772],[-95.77355773557736,18.743764748677847],[-95.66915669156691,18.71505893508983],[-95.64755647556476,18.70999320328019],[-95.62955629556295,18.69986173966089],[-95.6079560795608,18.681287389692187],[-95.58635586355864,18.669467348802996],[-95.56835568355683,18.68297596696206],[-95.6079560795608,18.708304626010303],[-95.67275672756728,18.728567553248894],[-95.72675726757268,18.7572733668369],[-95.7339573395734,18.799487798583968],[-95.66555665556655,18.750519057757373],[-95.58275582755827,18.72181324416937],[-95.49635496354963,18.706616048740415],[-95.3631536315363,18.703238894200652],[-95.27675276752767,18.70999320328019],[-95.20835208352084,18.708304626010303],[-95.19035190351903,18.70492747147054],[-95.17235172351724,18.696484585121127],[-95.13635136351363,18.667778771533122],[-95.04995049950499,18.612055721626987],[-95.03915039150391,18.598547103467922],[-95.0319503195032,18.576595598959457],[-95.02475024750247,18.56477555807028],[-95.00315003150031,18.55464409445098],[-94.87354873548735,18.536069744482262],[-94.85554855548556,18.527626858132862],[-94.80874808748086,18.524249703593085],[-94.78714787147871,18.51242966270391],[-94.76914769147692,18.483723849115904],[-94.74034740347403,18.406049294701305],[-94.71874718747188,18.37565490384341],[-94.6539465394654,18.31317754485775],[-94.62874628746287,18.286160308539635],[-94.5819458194582,18.18991140415632],[-94.57474574745747,18.18822282688643],[-94.54234542345424,18.166271322377952],[-94.53154531545316,18.161205590568315],[-94.49914499144991,18.157828436028538],[-94.46674466744668,18.144319817869487],[-94.43794437944379,18.14769697240925],[-94.40914409144091,18.1527627042189],[-94.38754387543875,18.156139858758664],[-94.35514355143552,18.16795989964784],[-94.20754207542075,18.18991140415632],[-94.13554135541355,18.20848575412502],[-94.11034110341103,18.2203057950142],[-94.08514085140851,18.23212583590339],[-94.00954009540095,18.249011608602217],[-93.99153991539914,18.262520226761268],[-93.97353973539735,18.27265169038057],[-93.8619386193862,18.306423235778226],[-93.86913869138691,18.296291772158924],[-93.87633876338764,18.286160308539635],[-93.88713887138871,18.276028844920333],[-93.88713887138871,18.262520226761268],[-93.87993879938799,18.257454494951617],[-93.79713797137971,18.26758595857092],[-93.78273782737827,18.27265169038057],[-93.76833768337683,18.281094576729984],[-93.75753757537575,18.29291461761916],[-93.75753757537575,18.301357503968575],[-93.76473764737646,18.3081118130481],[-93.76833768337683,18.31486612212764],[-93.76113761137611,18.323309008477054],[-93.75753757537575,18.33006331755658],[-93.74313743137431,18.336817626636105],[-93.73953739537394,18.34019478117588],[-93.72513725137252,18.336817626636105],[-93.71073710737107,18.34019478117588],[-93.69633696336963,18.346949090255407],[-93.68553685536855,18.35539197660482],[-93.67833678336783,18.336817626636105],[-93.65673656736567,18.333440472096342],[-93.59193591935919,18.34526051298552],[-93.58113581135811,18.35708055387471],[-93.56673566735667,18.389163522002477],[-93.57753577535775,18.411115026510956],[-93.58113581135811,18.416180758320593],[-93.58833588335884,18.416180758320593],[-93.60273602736027,18.411115026510956],[-93.61713617136171,18.404360717431416],[-93.62073620736207,18.399294985621765],[-93.63153631536315,18.39085209927235],[-93.70353703537035,18.368900594763886],[-93.71073710737107,18.363834862954235],[-93.71793717937179,18.35201482206506],[-93.72513725137252,18.346949090255407],[-93.76833768337683,18.34019478117588],[-93.80433804338043,18.316554699397514],[-93.8151381513815,18.311488967587863],[-93.8259382593826,18.311488967587863],[-93.83673836738367,18.30980039031799],[-93.84753847538475,18.299668926698686],[-93.84033840338402,18.318243276667403],[-93.82233822338223,18.32837474028669],[-93.80073800738008,18.333440472096342],[-93.79353793537935,18.343571935715644],[-93.78273782737827,18.353703399334933],[-93.59553595535955,18.419557912860355],[-93.55233552335523,18.429689376479658],[-93.44433444334443,18.441509417368835],[-93.30393303933039,18.438132262829072],[-93.15633156331563,18.443197994638723],[-93.15633156331563,18.436443685559183],[-93.16713167131671,18.421246490130244],[-93.17433174331742,18.41280360378083],[-93.18153181531815,18.409426449241067],[-93.17793177931779,18.400983562891653],[-93.17793177931779,18.3773434811133],[-93.17073170731707,18.368900594763886],[-93.159931599316,18.368900594763886],[-93.14553145531455,18.373966326573523],[-93.13113131131311,18.382409212922937],[-93.12033120331203,18.389163522002477],[-93.12393123931238,18.373966326573523],[-93.13473134731348,18.35539197660482],[-93.13473134731348,18.34019478117588],[-93.12753127531275,18.34019478117588],[-93.1131311313113,18.362146285684346],[-93.10593105931059,18.368900594763886],[-93.1131311313113,18.37565490384341],[-93.09513095130951,18.3773434811133],[-93.08793087930879,18.39254067654224],[-93.09513095130951,18.409426449241067],[-93.11673116731167,18.416180758320593],[-93.13833138331383,18.419557912860355],[-93.13833138331383,18.429689376479658],[-93.12033120331203,18.438132262829072],[-93.10233102331023,18.443197994638723],[-92.94032940329403,18.446575149178486],[-92.85752857528576,18.466838076417076],[-92.80712807128072,18.493855312735207],[-92.76032760327602,18.536069744482262],[-92.73872738727387,18.56477555807028],[-92.73152731527315,18.576595598959457],[-92.72792727927279,18.588415639848634],[-92.71712717127171,18.591792794388397],[-92.70632706327063,18.59010421711851],[-92.70272702727027,18.58503848530887],[-92.69192691926919,18.55295551718109],[-92.68112681126811,18.456706612797788],[-92.67032670326702,18.429689376479658],[-92.66312663126631,18.456706612797788],[-92.67032670326702,18.4735923854966],[-92.67032670326702,18.493855312735207],[-92.66312663126631,18.536069744482262],[-92.66672666726667,18.556332671720867],[-92.69192691926919,18.6019242580077],[-92.69552695526954,18.61543287616675],[-92.68112681126811,18.62218718524629],[-92.6559265592656,18.623875762516164],[-92.6091260912609,18.62218718524629],[-92.58752587525875,18.625564339786052],[-92.48672486724867,18.649204421564406],[-92.4039240392404,18.671155926072885],[-92.29232292322924,18.676221657882536],[-92.18792187921879,18.686353121501824],[-92.06192061920619,18.701550316930778],[-91.9791197911979,18.698173162391],[-91.94671946719467,18.691418853311475],[-91.92151921519215,18.66271303972347],[-91.86751867518674,18.628941494325815],[-91.86031860318603,18.62218718524629],[-91.86031860318603,18.610367144357113],[-91.86751867518674,18.598547103467922],[-91.87831878318782,18.59010421711851],[-91.88911889118891,18.588415639848634],[-91.88191881918819,18.593481371658285],[-91.88191881918819,18.6019242580077],[-91.89271892718926,18.596858526198048],[-91.90351903519034,18.59516994892816],[-91.93231932319323,18.593481371658285],[-91.9431194311943,18.598547103467922],[-91.93951939519395,18.608678567087225],[-91.93591935919359,18.6204986079764],[-91.9431194311943,18.628941494325815],[-91.95031950319503,18.628941494325815],[-91.95751957519575,18.62725291705594],[-91.97551975519755,18.612055721626987],[-91.9791197911979,18.612055721626987],[-91.98631986319863,18.613744298896876],[-91.99351993519934,18.61543287616675],[-92.00792007920079,18.613744298896876],[-92.01152011520115,18.606989989817336],[-92.00432004320042,18.6019242580077],[-91.989919899199,18.6019242580077],[-91.989919899199,18.593481371658285],[-92.00432004320042,18.59010421711851],[-92.01512015120151,18.59010421711851],[-92.02952029520294,18.593481371658285],[-92.04032040320403,18.6019242580077],[-92.03672036720367,18.59516994892816],[-92.03672036720367,18.591792794388397],[-92.03672036720367,18.586727062578746],[-92.0331203312033,18.57997275349922],[-92.04032040320403,18.57490702168957],[-92.04752047520475,18.566464135340155],[-92.05112051120511,18.55802124899074],[-92.05112051120511,18.546201208101564],[-92.04752047520475,18.551266939911216],[-92.0331203312033,18.55970982626063],[-92.01512015120151,18.546201208101564],[-92.00432004320042,18.541135476291913],[-91.989919899199,18.53944689902204],[-91.96831968319682,18.546201208101564],[-91.95391953919538,18.547889785371453],[-91.95031950319503,18.5428240535618],[-91.9431194311943,18.529315435402737],[-91.92511925119251,18.51749539451356],[-91.9071190711907,18.509052508164146],[-91.88911889118891,18.505675353624383],[-91.91431914319143,18.525938280862974],[-91.9431194311943,18.541135476291913],[-91.96471964719647,18.563086980800392],[-91.97191971919719,18.593481371658285],[-91.95031950319503,18.58503848530887],[-91.93951939519395,18.57490702168957],[-91.92511925119251,18.571529867149806],[-91.90351903519034,18.57997275349922],[-91.91431914319143,18.55970982626063],[-91.89991899918999,18.556332671720867],[-91.88911889118891,18.547889785371453],[-91.87831878318782,18.53775832175215],[-91.87471874718747,18.525938280862974],[-91.88911889118891,18.5326925899425],[-91.88911889118891,18.529315435402737],[-91.88911889118891,18.527626858132862],[-91.88911889118891,18.525938280862974],[-91.89631896318963,18.525938280862974],[-91.87831878318782,18.514118239973797],[-91.83871838718387,18.503986776354495],[-91.82791827918278,18.492166735465318],[-91.82791827918278,18.47696954003638],[-91.8531185311853,18.448263726448374],[-91.86031860318603,18.43306653101942],[-91.8531185311853,18.419557912860355],[-91.83511835118351,18.402672140161542],[-91.81351813518135,18.389163522002477],[-91.80271802718026,18.385786367462714],[-91.79191791917918,18.400983562891653],[-91.79551795517955,18.416180758320593],[-91.80631806318063,18.431377953749546],[-91.81351813518135,18.44995230371825],[-91.80271802718026,18.441509417368835],[-91.79551795517955,18.438132262829072],[-91.78471784717847,18.436443685559183],[-91.77031770317703,18.436443685559183],[-91.7811178111781,18.44995230371825],[-91.79551795517955,18.463460921877314],[-91.80631806318063,18.47528096276649],[-91.79911799117991,18.492166735465318],[-91.77391773917739,18.478658117306253],[-91.71271712717127,18.463460921877314],[-91.68391683916839,18.44995230371825],[-91.66231662316623,18.456706612797788],[-91.61911619116191,18.444886571908597],[-91.59391593915939,18.443197994638723],[-91.54351543515435,18.44995230371825],[-91.52191521915219,18.4550180355279],[-91.50391503915039,18.463460921877314],[-91.50391503915039,18.44995230371825],[-91.49671496714967,18.43982084009896],[-91.4859148591486,18.436443685559183],[-91.47871478714787,18.443197994638723],[-91.47511475114752,18.4550180355279],[-91.48231482314823,18.485412426385793],[-91.48231482314823,18.498921044544844],[-91.48951489514894,18.498921044544844],[-91.49311493114931,18.492166735465318],[-91.49671496714967,18.485412426385793],[-91.49671496714967,18.47696954003638],[-91.50751507515075,18.47696954003638],[-91.53271532715327,18.465149499147202],[-91.53991539915398,18.47021523095684],[-91.53271532715327,18.48034669457614],[-91.51111511115111,18.505675353624383],[-91.50391503915039,18.51242966270391],[-91.47871478714787,18.524249703593085],[-91.42471424714248,18.544512630831676],[-91.39591395913959,18.55970982626063],[-91.37791377913778,18.55464409445098],[-91.359913599136,18.55802124899074],[-91.34551345513455,18.56477555807028],[-91.33111331113311,18.573218444419695],[-91.3239132391324,18.58503848530887],[-91.30591305913059,18.61543287616675],[-91.30231302313022,18.62218718524629],[-91.26991269912699,18.618810030706527],[-91.25191251912518,18.6204986079764],[-91.24471244712447,18.625564339786052],[-91.23751237512374,18.635695803405355],[-91.1979119791198,18.645827267024643],[-91.18351183511835,18.655958730643945],[-91.1979119791198,18.66271303972347],[-91.21231212312122,18.661024462453582],[-91.23751237512374,18.649204421564406],[-91.28431284312843,18.63738438067523],[-91.29871298712987,18.628941494325815],[-91.26631266312663,18.70492747147054],[-91.26631266312663,18.735321862328433],[-91.28431284312843,18.765716253186312],[-91.30231302313022,18.780913448615266],[-91.30951309513095,18.78429060315503],[-91.3239132391324,18.785979180424903],[-91.33111331113311,18.78260202588514],[-91.33831338313382,18.775847716805615],[-91.33831338313382,18.769093407726075],[-91.34551345513455,18.765716253186312],[-91.3671136711367,18.770781984995963],[-91.39591395913959,18.806242107663493],[-91.41391413914138,18.812996416743033],[-91.39951399513996,18.836636498521386],[-91.38151381513815,18.860276580299754],[-91.35631356313563,18.875473775728693],[-91.30951309513095,18.890670971157633],[-91.28071280712807,18.91262247566611],[-91.25191251912518,18.936262557444465],[-91.23751237512374,18.958214061952944],[-91.25911259112591,18.953148330143293],[-91.32751327513274,18.90249101204681],[-91.39231392313923,18.87209662118893],[-91.41751417514175,18.85014511668045],[-91.41391413914138,18.826505034902098],[-91.42471424714248,18.821439303092447],[-91.42831428314283,18.826505034902098],[-91.45351453514535,18.811307839473145],[-91.46431464314642,18.807930684933382],[-91.48231482314823,18.807930684933382],[-91.50391503915039,18.80961926220327],[-91.50391503915039,18.816373571282796],[-91.48231482314823,18.843390807600926],[-91.43191431914319,18.880539507538344],[-91.3671136711367,18.914311052936],[-91.28071280712807,18.96496837103247],[-91.16191161911618,19.015625689128953],[-91.07911079110791,19.086545934464027],[-91.05751057510575,19.09667739808333],[-91.01431014310143,19.113563170782157],[-90.9351093510935,19.162531911608752],[-90.85590855908559,19.25878081599207],[-90.83430834308342,19.27228943415112],[-90.80190801908019,19.28242089777042],[-90.76950769507695,19.309438134088538],[-90.74070740707407,19.343209679486193],[-90.72990729907299,19.375292647613975],[-90.71550715507155,19.56947903365048],[-90.70470704707047,19.61169346539755],[-90.7011070110701,19.63195639263614],[-90.70470704707047,19.655596474414494],[-90.70830708307082,19.670793669843448],[-90.70830708307082,19.687679442542276],[-90.7011070110701,19.71131952432063],[-90.6831068310683,19.7535339560677],[-90.66510665106651,19.782239769655703],[-90.60750607506074,19.821077046862996],[-90.51750517505175,19.881865828578782],[-90.47790477904779,19.922391683055963],[-90.46710467104671,19.964606114803033],[-90.46350463504635,19.978114732962098],[-90.46350463504635,19.995000505660926],[-90.46710467104671,20.013574855629628],[-90.49590495904958,20.067609328265874],[-90.49950499504995,20.07942936915505],[-90.49950499504995,20.087872255504465],[-90.49590495904958,20.108135182743055],[-90.49590495904958,20.18412115988778],[-90.48870488704887,20.234778477984264],[-90.48870488704887,20.2905015278904],[-90.48870488704887,20.312453032398864],[-90.47430474304743,20.368176082305],[-90.47430474304743,20.40870193678218],[-90.48870488704887,20.489753645736556],[-90.48870488704887,20.5336566547535],[-90.46710467104671,20.61808551824764],[-90.45990459904598,20.71602299990083],[-90.4491044910449,20.74135165894907],[-90.39150391503915,20.80382901793473],[-90.38070380703807,20.827469099713085],[-90.36630366303663,20.88150357234933],[-90.34110341103411,20.938915199525354],[-90.33750337503375,20.972686744922996],[-90.34830348303483,20.972686744922996],[-90.3591035910359,20.916963695016875],[-90.37710377103771,20.88150357234933],[-90.38070380703807,20.873060685999917],[-90.38430384303842,20.849420604221564],[-90.39870398703987,20.82071479063356],[-90.41670416704167,20.797074708855206],[-90.44190441904419,20.786943245235904],[-90.44190441904419,20.793697554315443],[-90.42390423904239,20.81902621336367],[-90.3591035910359,20.999703981241126],[-90.34830348303483,21.016589753939954],[-90.33390333903338,21.031786949368893],[-90.21870218702186,21.097641462894316],[-90.20070200702007,21.114527235593144],[-90.13230132301322,21.136478740101623],[-90.09990099900999,21.163495976419753],[-90.07830078300783,21.17362744003904],[-90.06750067500674,21.177004594578804],[-90.0351003510035,21.18038174911858],[-89.9810998109981,21.198956099087283],[-89.91989919899198,21.241170530834353],[-89.90549905499054,21.246236262644004],[-89.88749887498875,21.249613417183767],[-89.78669786697867,21.285073539851297],[-89.67869678696786,21.301959312550125],[-89.59949599495995,21.301959312550125],[-89.45909459094591,21.325599394328492],[-89.26829268292683,21.34248516702732],[-89.18549185491855,21.366125248805673],[-89.14589145891459,21.369502403345436],[-89.12429124291242,21.36274809426591],[-89.11349113491134,21.36274809426591],[-89.10269102691026,21.366125248805673],[-89.08109081090811,21.374568135155087],[-89.07389073890738,21.37625671242496],[-88.98748987489874,21.389765330584027],[-88.92268922689226,21.408339680552743],[-88.87948879488795,21.413405412362394],[-88.85788857888579,21.41847114417203],[-88.82548825488254,21.431979762331096],[-88.70308703087031,21.458996998649226],[-88.66708667086671,21.48094850315769],[-88.60588605886059,21.533294398524063],[-88.58428584285842,21.541737284873477],[-88.5230852308523,21.548491593953003],[-88.50508505085051,21.553557325762654],[-88.4690846908469,21.57044309846148],[-88.44748447484474,21.575508830271133],[-88.36828368283682,21.575508830271133],[-88.35388353883539,21.572131675731356],[-88.31788317883178,21.556934480302417],[-88.29988299882999,21.555245903032528],[-88.28188281882818,21.556934480302417],[-88.24948249482495,21.56537736665183],[-88.19548195481954,21.572131675731356],[-88.17748177481775,21.577197407541007],[-88.16308163081631,21.58564029389042],[-88.14868148681487,21.590706025700072],[-88.08388083880838,21.589017448430184],[-88.10548105481054,21.595771757509723],[-88.12708127081271,21.60083748931936],[-88.15228152281523,21.60083748931936],[-88.18828188281883,21.583951716620533],[-88.22788227882279,21.575508830271133],[-88.2350823508235,21.573820253001244],[-88.23148231482314,21.58226313935066],[-88.20988209882098,21.594083180239835],[-88.18828188281883,21.60083748931936],[-88.15948159481594,21.604214643859137],[-88.13788137881379,21.614346107478426],[-88.13068130681306,21.616034684748314],[-88.11628116281163,21.614346107478426],[-88.06948069480694,21.60252606658925],[-87.98667986679867,21.60252606658925],[-87.96147961479615,21.60083748931936],[-87.90027900279003,21.575508830271133],[-87.8570785707857,21.563688789381942],[-87.77067770677706,21.551868748492765],[-87.70947709477095,21.536671553063826],[-87.70587705877058,21.533294398524063],[-87.71307713077131,21.526540089444524],[-87.72387723877239,21.52316293490476],[-87.73827738277383,21.52316293490476],[-87.74907749077491,21.52485151217465],[-87.75987759877599,21.529917243984286],[-87.77427774277743,21.536671553063826],[-87.84627846278462,21.548491593953003],[-87.86427864278643,21.555245903032528],[-87.84267842678426,21.536671553063826],[-87.81027810278103,21.521474357634887],[-87.77787777877778,21.511342894015584],[-87.74547745477454,21.506277162205933],[-87.6770767707677,21.506277162205933],[-87.64467644676446,21.499522853126408],[-87.62667626676266,21.499522853126408],[-87.61227612276123,21.506277162205933],[-87.65547655476554,21.50796573947582],[-87.67347673476735,21.513031471285473],[-87.69147691476914,21.52316293490476],[-87.68427684276843,21.528228666714412],[-87.61947619476194,21.519785780364998],[-87.56187561875619,21.501211430396282],[-87.54027540275402,21.499522853126408],[-87.51147511475115,21.501211430396282],[-87.50067500675006,21.499522853126408],[-87.49707497074971,21.494457121316756],[-87.49347493474934,21.48770281223723],[-87.48627486274863,21.48094850315769],[-87.47547475474754,21.48094850315769],[-87.48267482674827,21.47588277134804],[-87.48627486274863,21.474194194078166],[-87.49347493474934,21.474194194078166],[-87.49707497074971,21.48094850315769],[-87.50067500675006,21.48094850315769],[-87.49347493474934,21.469128462268515],[-87.47547475474754,21.46743988499864],[-87.42867428674286,21.472505616808277],[-87.4070740707407,21.470817039538403],[-87.34947349473494,21.452242689569687],[-87.28827288272882,21.453931266839575],[-87.27387273872738,21.448865535029924],[-87.25587255872559,21.44042264868051],[-87.23787237872378,21.443799803220273],[-87.16587165871658,21.472505616808277],[-87.1550715507155,21.48094850315769],[-87.14067140671406,21.501211430396282],[-87.13347133471335,21.509654316745696],[-87.12987129871298,21.519785780364998],[-87.13347133471335,21.528228666714412],[-87.1370713707137,21.536671553063826],[-87.1370713707137,21.54511443941324],[-87.1370713707137,21.551868748492765],[-87.13347133471335,21.558623057572305],[-87.1370713707137,21.563688789381942],[-87.15147151471514,21.568754521191593],[-87.17667176671766,21.568754521191593],[-87.19827198271983,21.562000212112068],[-87.22347223472235,21.55018017122289],[-87.23787237872378,21.536671553063826],[-87.25587255872559,21.528228666714412],[-87.2810728107281,21.528228666714412],[-87.30627306273063,21.533294398524063],[-87.32427324273242,21.541737284873477],[-87.33147331473315,21.533294398524063],[-87.33507335073351,21.548491593953003],[-87.33867338673386,21.555245903032528],[-87.3530735307353,21.546803016683114],[-87.37827378273782,21.526540089444524],[-87.39987399873998,21.519785780364998],[-87.39627396273963,21.516408625825235],[-87.39627396273963,21.514720048555347],[-87.39267392673926,21.513031471285473],[-87.40347403474034,21.509654316745696],[-87.41067410674107,21.513031471285473],[-87.41427414274142,21.521474357634887],[-87.41427414274142,21.533294398524063],[-87.38187381873819,21.558623057572305],[-87.37107371073711,21.568754521191593],[-87.36387363873638,21.573820253001244],[-87.35667356673567,21.575508830271133],[-87.33507335073351,21.573820253001244],[-87.30267302673026,21.568754521191593],[-87.29187291872918,21.56537736665183],[-87.27387273872738,21.56031163484218],[-87.2450724507245,21.568754521191593],[-87.13347133471335,21.619411839288077],[-87.11187111871118,21.62278899382784],[-87.04347043470435,21.60252606658925],[-87.02547025470254,21.592394602969947],[-86.99666996669967,21.56537736665183],[-86.94626946269463,21.492768544046868],[-86.9390693906939,21.48263708042758],[-86.93186931869319,21.474194194078166],[-86.92826928269282,21.465751307728752],[-86.92466924669246,21.44548838049016],[-86.91746917469175,21.44042264868051],[-86.91026910269102,21.43535691687086],[-86.89946899468994,21.431979762331096],[-86.89586895868959,21.443799803220273],[-86.8850688506885,21.44548838049016],[-86.86346863468634,21.43873407141062],[-86.83826838268382,21.43873407141062],[-86.82746827468274,21.433668339600985],[-86.8130681306813,21.3830110215045],[-86.80946809468094,21.369502403345436],[-86.8130681306813,21.354305207916497],[-86.82026820268203,21.33066512613813],[-86.82386823868238,21.318845085248952],[-86.82386823868238,21.269876344422357],[-86.81666816668167,21.204021830896934],[-86.79146791467915,21.158430244610102],[-86.7410674106741,21.163495976419753],[-86.74466744667447,21.15505309007034],[-86.74826748267482,21.1482987809908],[-86.75186751867518,21.14323304918115],[-86.77346773467734,21.099330040164205],[-86.7770677706777,21.09257573108468],[-86.79146791467915,21.06555849476655],[-86.78786787867878,21.058804185687023],[-86.78426784267842,21.04867272206772],[-86.78426784267842,21.04360699025807],[-86.78426784267842,21.035164103908656],[-86.78786787867878,21.035164103908656],[-86.79146791467915,21.036852681178544],[-86.79506795067951,21.03347552663878],[-86.80226802268022,21.03009837209902],[-86.81666816668167,21.025032640289368],[-86.82386823868238,21.019966908479716],[-86.82746827468274,21.01321259940019],[-86.83106831068311,21.004769713050777],[-86.83106831068311,20.982818208542298],[-86.83466834668346,20.97099816765312],[-86.8490684906849,20.916963695016875],[-86.87426874268742,20.864617799650503],[-86.87426874268742,20.854486336031215],[-86.94266942669427,20.76161458618766],[-87.03627036270362,20.66367710453447],[-87.05787057870579,20.629905559136816],[-87.06867068670687,20.619774095517514],[-87.12267122671227,20.586002550119858],[-87.1370713707137,20.572493931960807],[-87.18027180271802,20.547165272912565],[-87.23427234272343,20.49313080027632],[-87.3530735307353,20.327650227827817],[-87.36387363873638,20.29387868243016],[-87.37827378273782,20.2905015278904],[-87.38547385473855,20.28374721881086],[-87.38547385473855,20.275304332461445],[-87.37827378273782,20.26686144611203],[-87.41067410674107,20.24659851887344],[-87.43227432274323,20.2212698598252],[-87.4430744307443,20.19087546896732],[-87.46467464674646,20.111512337282832],[-87.47187471874719,20.069297905535763],[-87.46827468274682,19.984869042041623],[-87.46107461074611,19.962917537533144],[-87.43947439474394,19.920703105786075],[-87.43227432274323,19.900440178547484],[-87.43587435874359,19.888620137658307],[-87.4430744307443,19.853160014990777],[-87.44667446674467,19.849782860451015],[-87.45387453874538,19.846405705911238],[-87.46107461074611,19.8413399741016],[-87.47547475474754,19.797436965084643],[-87.4790747907479,19.783928346925578],[-87.48267482674827,19.826142778672647],[-87.48267482674827,19.83627424229195],[-87.4790747907479,19.8413399741016],[-87.46827468274682,19.843028551371475],[-87.46107461074611,19.849782860451015],[-87.45387453874538,19.85147143772089],[-87.44667446674467,19.86160290134019],[-87.44667446674467,19.875111519499242],[-87.4430744307443,19.91394879670655],[-87.46107461074611,19.92914599213549],[-87.46467464674646,19.937588878484902],[-87.46827468274682,19.95447465118373],[-87.47187471874719,19.962917537533144],[-87.4790747907479,19.964606114803033],[-87.48627486274863,19.962917537533144],[-87.48987489874898,19.95447465118373],[-87.48627486274863,19.946031764834316],[-87.4790747907479,19.937588878484902],[-87.47547475474754,19.930834569405377],[-87.47187471874719,19.89875160127761],[-87.47187471874719,19.885242983118545],[-87.47547475474754,19.875111519499242],[-87.46827468274682,19.880177251308893],[-87.46467464674646,19.883554405848656],[-87.45387453874538,19.888620137658307],[-87.49707497074971,19.82951993321241],[-87.50427504275042,19.821077046862996],[-87.51147511475115,19.817699892323233],[-87.51867518675186,19.80925700597382],[-87.52587525875258,19.802502696894294],[-87.5330753307533,19.804191274164182],[-87.54027540275402,19.812634160513582],[-87.5510755107551,19.817699892323233],[-87.55827558275583,19.81432273778347],[-87.56547565475654,19.800814119624405],[-87.57987579875798,19.79912554235453],[-87.60147601476014,19.7721083060364],[-87.61947619476194,19.73664818336887],[-87.63027630276302,19.707942369780866],[-87.64827648276483,19.677547978922973],[-87.6590765907659,19.645465010795206],[-87.66627666276662,19.63364496990603],[-87.68067680676806,19.635333547175904],[-87.66987669876698,19.64208785625543],[-87.6590765907659,19.655596474414494],[-87.65547655476554,19.670793669843448],[-87.6590765907659,19.6843022880025],[-87.66987669876698,19.682613710732625],[-87.72387723877239,19.682613710732625],[-87.73467734677347,19.6843022880025],[-87.74187741877418,19.672482247113322],[-87.74547745477454,19.65221931987473],[-87.74547745477454,19.630267815366253],[-87.74187741877418,19.615070619937313],[-87.7310773107731,19.599873424508374],[-87.70227702277022,19.582987651809546],[-87.70227702277022,19.574544765460132],[-87.69147691476914,19.56947903365048],[-87.68427684276843,19.567790456380592],[-87.67347673476735,19.566101879110718],[-87.6590765907659,19.567790456380592],[-87.66627666276662,19.552593260951653],[-87.66987669876698,19.52388744736365],[-87.67347673476735,19.505313097394932],[-87.65547655476554,19.50700167466482],[-87.6410764107641,19.518821715553997],[-87.63027630276302,19.532330333713062],[-87.61947619476194,19.545838951872128],[-87.60867608676087,19.552593260951653],[-87.57987579875798,19.561036147301067],[-87.56547565475654,19.567790456380592],[-87.53667536675367,19.561036147301067],[-87.5150751507515,19.547527529142002],[-87.50787507875079,19.545838951872128],[-87.50427504275042,19.54921610641189],[-87.50067500675006,19.555970415491416],[-87.50067500675006,19.562724724570955],[-87.49707497074971,19.567790456380592],[-87.48627486274863,19.567790456380592],[-87.4790747907479,19.562724724570955],[-87.47547475474754,19.561036147301067],[-87.46827468274682,19.567790456380592],[-87.46467464674646,19.56441330184083],[-87.46107461074611,19.562724724570955],[-87.45747457474575,19.561036147301067],[-87.45387453874538,19.561036147301067],[-87.46827468274682,19.55428183822154],[-87.46827468274682,19.545838951872128],[-87.4430744307443,19.55428183822154],[-87.4250742507425,19.572856188190244],[-87.4250742507425,19.59143053815896],[-87.43947439474394,19.594807692698723],[-87.43587435874359,19.58467622907942],[-87.43227432274323,19.577921919999895],[-87.4430744307443,19.574544765460132],[-87.47547475474754,19.574544765460132],[-87.50067500675006,19.577921919999895],[-87.5150751507515,19.581299074539658],[-87.52947529475294,19.588053383619183],[-87.50787507875079,19.588053383619183],[-87.44667446674467,19.581299074539658],[-87.44667446674467,19.588053383619183],[-87.45027450274502,19.593119115428834],[-87.4430744307443,19.618447774477076],[-87.43947439474394,19.635333547175904],[-87.42147421474215,19.599873424508374],[-87.41427414274142,19.577921919999895],[-87.41787417874178,19.567790456380592],[-87.42147421474215,19.557658992761304],[-87.43227432274323,19.49180447923588],[-87.4430744307443,19.473230129267165],[-87.45747457474575,19.454655779298463],[-87.47547475474754,19.442835738409272],[-87.49347493474934,19.437770006599635],[-87.49707497074971,19.434392852059858],[-87.52587525875258,19.405687038471854],[-87.5330753307533,19.40230988393209],[-87.5690756907569,19.39724415212244],[-87.5510755107551,19.40230988393209],[-87.54387543875438,19.410752770281505],[-87.54387543875438,19.42426138844057],[-87.53667536675367,19.437770006599635],[-87.57267572675727,19.427638542980333],[-87.61587615876158,19.405687038471854],[-87.65547655476554,19.373604070344086],[-87.66627666276662,19.33476679313678],[-87.6590765907659,19.33476679313678],[-87.65187651876518,19.355029720375384],[-87.64827648276483,19.355029720375384],[-87.65547655476554,19.33983252494643],[-87.66987669876698,19.322946752247603],[-87.6770767707677,19.311126711358426],[-87.6590765907659,19.307749556818663],[-87.68067680676806,19.265535125071594],[-87.68787687876879,19.24189504329324],[-87.6770767707677,19.231763579673938],[-87.6590765907659,19.226697847864287],[-87.64827648276483,19.21994353878476],[-87.63747637476375,19.22163211605465],[-87.61947619476194,19.238517888753478],[-87.59427594275942,19.268912279611357],[-87.58347583475835,19.285798052310184],[-87.57627576275762,19.302683825009012],[-87.56547565475654,19.31788102043795],[-87.54387543875438,19.32463532951749],[-87.49707497074971,19.328012484057254],[-87.5150751507515,19.285798052310184],[-87.50427504275042,19.295929515929487],[-87.49347493474934,19.309438134088538],[-87.48267482674827,19.31956959770784],[-87.46107461074611,19.32125817497773],[-87.46107461074611,19.31450386589819],[-87.4790747907479,19.3043724022789],[-87.49707497074971,19.289175206849947],[-87.52227522275223,19.25202650691253],[-87.5330753307533,19.228386425134175],[-87.54387543875438,19.17435195249793],[-87.55827558275583,19.155777602529213],[-87.54747547475475,19.133826098020748],[-87.56187561875619,19.101743129892967],[-87.58347583475835,19.05277438906637],[-87.6050760507605,19.020691420938604],[-87.62667626676266,18.88898239388776],[-87.66267662676627,18.7674048304562],[-87.68067680676806,18.738699016868196],[-87.70227702277022,18.711681780550066],[-87.72387723877239,18.681287389692187],[-87.73827738277383,18.644138689754755],[-87.74187741877418,18.6019242580077],[-87.73827738277383,18.556332671720867],[-87.73827738277383,18.536069744482262],[-87.75267752677526,18.51580681724367],[-87.75627756277562,18.498921044544844],[-87.76347763477635,18.429689376479658],[-87.77067770677706,18.406049294701305],[-87.8210782107821,18.338506203905993],[-87.82467824678247,18.323309008477054],[-87.82827828278282,18.30980039031799],[-87.84267842678426,18.27771742219022],[-87.84627846278462,18.262520226761268],[-87.84627846278462,18.196665713235845],[-87.85347853478534,18.196665713235845],[-87.85347853478534,18.223682949553975],[-87.8570785707857,18.24563445406244],[-87.87507875078751,18.22537152682385],[-87.88587885878859,18.2304372586335],[-87.88947889478895,18.243945876792566],[-87.88227882278822,18.25070018587209],[-87.87507875078751,18.262520226761268],[-87.86787867878678,18.28784888580951],[-87.86427864278643,18.31486612212764],[-87.86427864278643,18.32837474028669],[-87.86787867878678,18.316554699397514],[-87.87507875078751,18.3081118130481],[-87.87867878678786,18.297980349428812],[-87.88587885878859,18.29291461761916],[-87.8930789307893,18.304734658508337],[-87.88947889478895,18.31317754485775],[-87.88227882278822,18.324997585746928],[-87.87867878678786,18.34019478117588],[-87.88227882278822,18.341883358445756],[-87.89667896678966,18.358769131144584],[-87.89667896678966,18.362146285684346],[-87.89667896678966,18.37058917203376],[-87.89667896678966,18.380720635653063],[-87.90027900279003,18.389163522002477],[-87.9290792907929,18.394229253812128],[-87.9290792907929,18.395917831082002],[-87.93627936279363,18.399294985621765],[-87.93267932679326,18.40773787197118],[-87.9290792907929,18.416180758320593],[-87.92547925479255,18.416180758320593],[-87.9290792907929,18.43306653101942],[-87.93627936279363,18.443197994638723],[-87.94347943479434,18.448263726448374],[-87.96507965079651,18.44995230371825],[-87.99027990279903,18.456706612797788],[-88.04428044280442,18.485412426385793],[-88.06588065880659,18.492166735465318],[-88.07668076680767,18.498921044544844],[-88.08028080280802,18.514118239973797],[-88.08028080280802,18.529315435402737],[-88.07668076680767,18.536069744482262],[-88.04428044280442,18.573218444419695],[-88.05148051480515,18.59516994892816],[-88.04068040680407,18.61712145343664],[-88.02268022680227,18.635695803405355],[-88.01548015480155,18.65258157610417],[-88.01548015480155,18.661024462453582],[-88.00468004680046,18.67791023515241],[-88.00108001080011,18.6897302760416],[-88.00468004680046,18.691418853311475],[-88.00828008280082,18.696484585121127],[-88.01548015480155,18.701550316930778],[-88.01548015480155,18.706616048740415],[-88.01548015480155,18.713370357819954],[-88.01188011880119,18.72012466689948],[-88.01188011880119,18.723501821439243],[-88.00828008280082,18.723501821439243],[-88.00468004680046,18.765716253186312],[-88.00468004680046,18.78766775769479],[-88.01188011880119,18.80286495312373],[-88.02268022680227,18.818062148552684],[-88.02988029880298,18.834947921251512],[-88.03708037080371,18.875473775728693],[-88.05868058680586,18.856899425759977],[-88.08388083880838,18.831570766711735],[-88.10548105481054,18.80286495312373],[-88.11268112681127,18.775847716805615],[-88.11268112681127,18.76233909864655],[-88.11988119881198,18.743764748677847],[-88.12708127081271,18.730256130518782],[-88.13788137881379,18.723501821439243],[-88.14148141481415,18.731944707788657],[-88.14148141481415,18.748830480487484],[-88.13428134281342,18.769093407726075],[-88.13788137881379,18.76233909864655],[-88.14868148681487,18.750519057757373],[-88.16668166681667,18.74545332594772],[-88.19188191881919,18.74545332594772],[-88.1990819908199,18.74038759413807],[-88.24228242282423,18.703238894200652],[-88.24948249482495,18.696484585121127],[-88.25308253082531,18.688041698771713],[-88.25668256682566,18.676221657882536],[-88.2350823508235,18.68466454423195],[-88.21708217082171,18.69986173966089],[-88.1990819908199,18.718436089629606],[-88.18828188281883,18.738699016868196],[-88.1810818108181,18.72181324416937],[-88.18468184681846,18.708304626010303],[-88.19188191881919,18.694796007851238],[-88.19548195481954,18.676221657882536],[-88.18828188281883,18.68466454423195],[-88.1810818108181,18.693107430581364],[-88.17028170281702,18.701550316930778],[-88.15948159481594,18.703238894200652],[-88.15228152281523,18.698173162391],[-88.15588155881558,18.691418853311475],[-88.16668166681667,18.68466454423195],[-88.17388173881739,18.68297596696206],[-88.1990819908199,18.635695803405355],[-88.22068220682206,18.605301412547462],[-88.24948249482495,18.556332671720867],[-88.25308253082531,18.541135476291913],[-88.27468274682747,18.509052508164146],[-88.28188281882818,18.492166735465318],[-88.29628296282962,18.488789580925555],[-88.29988299882999,18.487101003655667],[-88.30348303483035,18.483723849115904],[-88.30348303483035,18.482035271846016],[-88.30348303483035,18.47696954003638],[-88.28548285482854,18.463460921877314],[-88.3070830708307,18.438132262829072],[-88.38268382683826,18.385786367462714],[-88.38988389883899,18.37058917203376],[-88.37908379083791,18.35539197660482],[-88.36468364683647,18.353703399334933],[-88.31788317883178,18.37565490384341],[-88.32148321483214,18.360457708414472],[-88.33228332283322,18.34526051298552],[-88.35388353883539,18.316554699397514],[-88.3610836108361,18.3081118130481],[-88.35748357483574,18.303046081238463],[-88.35028350283503,18.304734658508337],[-88.3430834308343,18.30980039031799],[-88.3250832508325,18.32837474028669],[-88.29268292682927,18.35032624479517],[-88.27468274682747,18.358769131144584],[-88.26028260282602,18.360457708414472],[-88.2350823508235,18.358769131144584],[-88.20628206282062,18.34526051298552],[-88.19548195481954,18.34019478117588],[-88.17388173881739,18.343571935715644],[-88.14148141481415,18.363834862954235],[-88.1090810908109,18.373966326573523],[-88.09828098280983,18.37565490384341],[-88.09108091080911,18.37227774930365],[-88.09468094680946,18.35708055387471],[-88.09828098280983,18.348637667525296],[-88.11988119881198,18.333440472096342],[-88.14148141481415,18.324997585746928],[-88.1450814508145,18.319931853937277],[-88.1450814508145,18.30980039031799],[-88.13788137881379,18.306423235778226],[-88.13068130681306,18.30980039031799],[-88.12348123481235,18.321620431207165],[-88.11628116281163,18.32837474028669],[-88.10548105481054,18.331751894826468],[-88.09468094680946,18.333440472096342],[-88.09108091080911,18.32837474028669],[-88.08388083880838,18.21017433139491],[-88.09108091080911,18.118991158821245],[-88.09468094680946,18.102105386122417],[-88.1090810908109,18.078465304344064],[-88.11268112681127,18.06326810891511],[-88.14868148681487,17.972084936341446],[-88.16668166681667,17.96026489545227],[-88.20988209882098,17.88259034103767],[-88.20268202682027,17.85557310471954],[-88.21348213482135,17.77283281849529],[-88.23868238682387,17.690092532271038],[-88.24588245882458,17.67320675957221],[-88.2710827108271,17.644500945984205],[-88.28188281882818,17.62592659601549],[-88.28908289082891,17.603975091507024],[-88.28188281882818,17.580335009728657],[-88.2710827108271,17.56851496883948],[-88.2350823508235,17.549940618870778],[-88.22788227882279,17.536432000711713],[-88.21708217082171,17.5279891143623],[-88.17748177481775,17.519546228012885],[-88.16668166681667,17.51279191893336],[-88.1810818108181,17.492528991694755],[-88.20628206282062,17.492528991694755],[-88.23148231482314,17.49590614623453],[-88.24228242282423,17.487463259885118],[-88.24588245882458,17.472266064456164],[-88.28548285482854,17.33886846013543],[-88.29628296282962,17.237553823942477],[-88.29628296282962,17.217290896703886],[-88.29988299882999,17.17845361949658],[-88.29268292682927,17.1565021149881],[-88.28908289082891,17.1379277650194],[-88.28908289082891,17.13623918774951],[-88.28908289082891,17.12610772413022],[-88.28188281882818,17.104156219621743],[-88.27828278282783,17.090647601462678],[-88.2710827108271,17.085581869653026],[-88.24948249482495,17.0788275605735],[-88.2350823508235,17.06363036514456],[-88.22788227882279,17.045056015175845],[-88.22428224282243,17.023104510667366],[-88.22068220682206,16.9910215425396],[-88.21348213482135,16.967381460761246],[-88.21708217082171,16.95556141987207],[-88.22428224282243,16.952184265332292],[-88.23148231482314,16.95387284260218],[-88.24228242282423,16.950495688062418],[-88.25308253082531,16.940364224443115],[-88.26748267482675,16.925167029014176],[-88.27828278282783,16.90659267904546],[-88.28188281882818,16.89139548361652],[-88.27828278282783,16.872821133647804],[-88.26028260282602,16.8441153200598],[-88.25668256682566,16.825540970091097],[-88.25308253082531,16.825540970091097],[-88.24948249482495,16.82385239282121],[-88.24588245882458,16.818786661011558],[-88.24948249482495,16.81372092920192],[-88.25308253082531,16.812032351932032],[-88.26388263882639,16.81372092920192],[-88.2710827108271,16.81372092920192],[-88.28188281882818,16.80358946558262],[-88.28908289082891,16.796835156503093],[-88.28908289082891,16.78839227015368],[-88.29268292682927,16.783326538344028],[-88.29628296282962,16.778260806534377],[-88.29988299882999,16.77150649745485],[-88.30348303483035,16.76137503383555],[-88.30348303483035,16.749554992946372],[-88.29988299882999,16.734357797517433],[-88.29628296282962,16.72422633389813],[-88.3070830708307,16.653306088563056],[-88.31068310683106,16.64148604767388],[-88.32148321483214,16.633043161324466],[-88.33228332283322,16.62122312043529],[-88.3430834308343,16.57900868868822],[-88.34668346683466,16.567188647799043],[-88.35028350283503,16.550302875100215],[-88.3430834308343,16.524974216051973],[-88.35028350283503,16.514842752432685],[-88.35748357483574,16.50639986608327],[-88.3610836108361,16.50639986608327],[-88.36468364683647,16.52159706151221],[-88.33588335883358,16.634731738594354],[-88.31788317883178,16.651617511293182],[-88.31068310683106,16.66174897491247],[-88.33588335883358,16.649928934023293],[-88.36468364683647,16.58407442049787],[-88.38628386283862,16.55874576144963],[-88.37908379083791,16.55874576144963],[-88.36468364683647,16.551991452370103],[-88.37188371883718,16.548614297830326],[-88.37908379083791,16.546925720560452],[-88.38268382683826,16.548614297830326],[-88.39348393483934,16.551991452370103],[-88.38988389883899,16.54354856602069],[-88.38988389883899,16.538482834211038],[-88.38268382683826,16.538482834211038],[-88.37188371883718,16.538482834211038],[-88.37188371883718,16.5317285251315],[-88.38268382683826,16.524974216051973],[-88.38988389883899,16.514842752432685],[-88.39348393483934,16.503022711543494],[-88.38988389883899,16.497956979733857],[-88.38628386283862,16.491202670654317],[-88.40428404284043,16.476005475225378],[-88.42588425884259,16.43716819801807],[-88.44388443884438,16.428725311668657],[-88.44748447484474,16.423659579859006],[-88.44748447484474,16.400019498080653],[-88.44748447484474,16.394953766271],[-88.45468454684547,16.39157661173124],[-88.45828458284582,16.39157661173124],[-88.46188461884618,16.393265189001127],[-88.46188461884618,16.394953766271],[-88.4690846908469,16.389888034461364],[-88.4690846908469,16.388199457191476],[-88.47268472684726,16.386510879921588],[-88.47628476284763,16.38144514811195],[-88.4870848708487,16.351050757254058],[-88.49428494284942,16.345985025444406],[-88.50148501485015,16.342607870904644],[-88.52668526685267,16.308836325506988],[-88.53028530285303,16.303770593697337],[-88.53388533885338,16.290261975538286],[-88.53748537485374,16.285196243728635],[-88.53748537485374,16.281819089188872],[-88.53748537485374,16.273376202839458],[-88.53748537485374,16.27168762556957],[-88.54108541085411,16.26999904829968],[-88.54828548285482,16.27168762556957],[-88.55188551885519,16.27168762556957],[-88.55548555485555,16.268310471029807],[-88.56628566285663,16.26662189375992],[-88.56988569885698,16.263244739220156],[-88.57348573485734,16.259867584680393],[-88.5770857708577,16.244670389251453],[-88.5770857708577,16.285196243728635],[-88.58428584285842,16.285196243728635],[-88.59148591485915,16.263244739220156],[-88.60588605886059,16.259867584680393],[-88.62028620286202,16.268310471029807],[-88.62748627486275,16.281819089188872],[-88.63108631086311,16.28688482099851],[-88.63828638286382,16.288573398268397],[-88.64548645486454,16.28688482099851],[-88.6490864908649,16.285196243728635],[-88.65268652686527,16.281819089188872],[-88.65268652686527,16.264933316490044],[-88.65268652686527,16.258179007410504],[-88.65988659886598,16.25480185287074],[-88.69588695886958,16.25142469833098],[-88.69948699486994,16.246358966521328],[-88.70668706687067,16.242981811981565],[-88.71388713887139,16.237916080171914],[-88.72468724687246,16.23622750290204],[-88.7390873908739,16.2294731938225],[-88.74268742687427,16.21427599839356],[-88.74268742687427,16.175438721186254],[-88.74628746287462,16.155175793947663],[-88.75348753487535,16.139978598518724],[-88.76788767887679,16.12984713489942],[-88.78588785887858,16.12646998035966],[-88.79308793087931,16.12478140308977],[-88.79668796687966,16.118027094010245],[-88.80388803888039,16.11127278493072],[-88.80748807488075,16.092698434962003],[-88.81468814688147,16.08763270315235],[-88.82188821888218,16.08425554861259],[-88.83268832688327,16.079189816802938],[-88.84348843488435,16.070746930453524],[-88.8470884708847,16.065681198643887],[-88.85068850688506,16.058926889564347],[-88.85428854288543,16.04710684867517],[-88.85428854288543,16.036975385055868],[-88.85788857888579,16.02853249870647],[-88.88308883088831,16.020089612357054],[-88.9010890108901,16.01164672600764],[-88.91548915489155,15.998138107848575],[-88.92628926289262,15.98462948968951],[-88.92988929889299,15.959300830641268],[-88.91188911889118,15.917086398894199],[-88.91548915489155,15.893446317115846],[-88.9010890108901,15.888380585306194],[-88.8650886508865,15.85967477171819],[-88.83268832688327,15.868117658067604],[-88.78588785887858,15.85967477171819],[-88.75348753487535,15.8394118444796],[-88.74988749887498,15.819148917241009],[-88.72828728287283,15.815771762701246],[-88.62748627486275,15.753294403715586],[-88.63828638286382,15.709391394698628],[-88.63468634686346,15.702637085619102],[-88.60948609486094,15.702637085619102],[-88.59868598685986,15.706014240158865],[-88.5950859508595,15.714457126508279],[-88.5950859508595,15.722900012857693],[-88.59868598685986,15.722900012857693],[-88.59868598685986,15.727965744667344],[-88.60228602286023,15.731342899207107],[-88.60588605886059,15.73472005374687],[-88.60588605886059,15.743162940096283],[-88.59868598685986,15.744851517366172],[-88.59148591485915,15.743162940096283],[-88.58068580685807,15.744851517366172],[-88.5770857708577,15.753294403715586],[-88.57348573485734,15.770180176414414],[-88.56628566285663,15.780311640033702],[-88.55548555485555,15.788754526383116],[-88.55188551885519,15.798885990002418],[-88.54828548285482,15.814083185431357],[-88.55548555485555,15.83772326720971],[-88.5590855908559,15.852920462638664],[-88.55188551885519,15.852920462638664],[-88.55188551885519,15.842788999019362],[-88.55188551885519,15.8394118444796],[-88.54468544685446,15.8394118444796],[-88.53388533885338,15.846166153559125],[-88.50148501485015,15.841100421749488],[-88.4870848708487,15.846166153559125],[-88.51228512285122,15.868117658067604],[-88.5230852308523,15.876560544417018],[-88.54468544685446,15.885003430766432],[-88.55188551885519,15.895134894385734],[-88.5590855908559,15.90695493527491],[-88.56628566285663,15.915397821624325],[-88.60588605886059,15.939037903402678],[-88.62028620286202,15.952546521561743],[-88.60588605886059,15.96943229426057],[-88.59148591485915,15.960989407911157],[-88.56268562685626,15.94916936702198],[-88.55188551885519,15.94241505794244],[-88.51948519485194,15.912020667084562],[-88.50148501485015,15.90188920346526],[-88.44748447484474,15.857986194448316],[-88.3430834308343,15.812394608161469],[-88.31068310683106,15.78200021730359],[-88.29988299882999,15.778623062763828],[-88.25668256682566,15.73978578555652],[-88.22068220682206,15.726277167397456],[-88.21348213482135,15.722900012857693],[-88.17028170281702,15.6925056219998],[-88.1450814508145,15.684062735650386],[-88.11988119881198,15.695882776539577],[-88.06228062280623,15.75498298098546],[-88.03708037080371,15.770180176414414],[-88.04068040680407,15.787065949113241],[-88.02988029880298,15.790443103653004],[-87.99387993879938,15.785377371843353],[-87.93267932679326,15.819148917241009],[-87.92547925479255,15.832657535400074],[-87.92547925479255,15.842788999019362],[-87.9290792907929,15.846166153559125],[-87.93987939879399,15.849543308098902],[-87.95067950679507,15.856297617178427],[-87.95427954279542,15.864740503527841],[-87.95067950679507,15.866429080797715],[-87.90747907479074,15.868117658067604],[-87.8930789307893,15.873183389877255],[-87.87507875078751,15.885003430766432],[-87.84627846278462,15.893446317115846],[-87.75987759877599,15.900200626195371],[-87.74187741877418,15.905266358005022],[-87.73467734677347,15.918774976164087],[-87.72747727477274,15.920463553433962],[-87.72387723877239,15.92215213070385],[-87.70587705877058,15.920463553433962],[-87.68787687876879,15.915397821624325],[-87.64467644676446,15.890069162576083],[-87.62667626676266,15.888380585306194],[-87.62667626676266,15.893446317115846],[-87.63747637476375,15.903577780735148],[-87.62667626676266,15.915397821624325],[-87.59067590675906,15.935660748862915],[-87.60867608676087,15.910332089814673],[-87.61587615876158,15.895134894385734],[-87.60867608676087,15.888380585306194],[-87.60147601476014,15.87993769895678],[-87.50787507875079,15.798885990002418],[-87.4790747907479,15.785377371843353],[-87.44667446674467,15.792131680922878],[-87.4430744307443,15.79719741273253],[-87.43227432274323,15.814083185431357],[-87.4250742507425,15.819148917241009],[-87.41787417874178,15.819148917241009],[-87.39267392673926,15.819148917241009],[-87.38547385473855,15.822526071780771],[-87.37827378273782,15.8394118444796],[-87.36387363873638,15.847854730829013],[-87.34587345873459,15.849543308098902],[-87.24147241472414,15.827591803590423],[-87.15147151471514,15.79719741273253],[-87.05787057870579,15.787065949113241],[-86.95346953469534,15.763425867334874],[-86.91746917469175,15.760048712795111],[-86.87786877868778,15.763425867334874],[-86.81666816668167,15.78200021730359],[-86.79866798667986,15.785377371843353],[-86.79506795067951,15.787065949113241],[-86.78066780667807,15.800574567272292],[-86.7770677706777,15.80226314454218],[-86.76986769867699,15.807328876351832],[-86.7590675906759,15.80226314454218],[-86.74466744667447,15.795508835462655],[-86.7410674106741,15.792131680922878],[-86.69786697866978,15.788754526383116],[-86.50346503465035,15.805640299081944],[-86.4710647106471,15.80395172181207],[-86.43866438664386,15.792131680922878],[-86.43866438664386,15.790443103653004],[-86.41346413464134,15.776934485493939],[-86.3990639906399,15.771868753684288],[-86.37386373863738,15.770180176414414],[-86.35586355863558,15.773557330954176],[-86.33786337863378,15.78200021730359],[-86.24426244262442,15.8394118444796],[-86.2190621906219,15.864740503527841],[-86.20826208262082,15.873183389877255],[-86.17226172261722,15.88669200803632],[-86.13626136261362,15.895134894385734],[-85.99585995859958,15.900200626195371],[-85.98145981459814,15.903577780735148],[-85.97065970659706,15.908643512544785],[-85.93465934659346,15.93734932613279],[-85.91305913059131,15.959300830641268],[-85.90225902259023,15.982940912419622],[-85.92025920259202,16.003203839658227],[-85.98145981459814,16.013335303277515],[-86.01386013860139,16.020089612357054],[-86.00666006660066,16.03190965324623],[-85.98145981459814,16.033598230516105],[-85.90585905859058,16.018401035087166],[-85.85185851858519,16.008269571467864],[-85.81225812258123,16.0048924169281],[-85.76545765457654,15.991383798769036],[-85.71865718657186,15.979563757879859],[-85.70425704257042,15.976186603340096],[-85.69345693456934,15.971120871530445],[-85.68985689856898,15.959300830641268],[-85.68985689856898,15.945792212482203],[-85.68625686256863,15.935660748862915],[-85.6790567905679,15.935660748862915],[-85.6790567905679,15.94241505794244],[-85.6790567905679,15.945792212482203],[-85.67545675456755,15.947480789752092],[-85.67185671856718,15.94916936702198],[-85.65745657456574,15.94916936702198],[-85.64665646656466,15.935660748862915],[-85.62865628656286,15.92215213070385],[-85.6070560705607,15.90695493527491],[-85.56385563855638,15.888380585306194],[-85.48825488254882,15.869806235337492],[-85.43785437854378,15.873183389877255],[-85.36225362253622,15.881626276226669],[-85.25425254252542,15.883314853496543],[-85.19665196651967,15.90695493527491],[-85.12465124651246,15.959300830641268],[-85.07425074250742,15.986318066959399],[-84.99864998649986,15.988006644229273],[-84.95184951849518,15.972809448800334],[-84.85464854648546,15.928906439783376],[-84.73224732247323,15.895134894385734],[-84.67824678246782,15.876560544417018],[-84.66384663846638,15.866429080797715],[-84.66744667446675,15.852920462638664],[-84.68184681846819,15.834346112669948],[-84.68184681846819,15.819148917241009],[-84.68184681846819,15.793820258192767],[-84.66024660246602,15.77524590822405],[-84.63864638646386,15.771868753684288],[-84.6170461704617,15.780311640033702],[-84.61344613446134,15.800574567272292],[-84.60984609846098,15.809017453621706],[-84.5990459904599,15.809017453621706],[-84.59184591845919,15.795508835462655],[-84.57384573845738,15.783688794573465],[-84.54864548645486,15.787065949113241],[-84.5270452704527,15.785377371843353],[-84.47664476644766,15.778623062763828],[-84.46944469444693,15.788754526383116],[-84.45144451444514,15.795508835462655],[-84.4730447304473,15.80395172181207],[-84.49824498244982,15.809017453621706],[-84.57744577445774,15.822526071780771],[-84.60624606246063,15.836034689939837],[-84.63144631446315,15.847854730829013],[-84.64224642246423,15.863051926257953],[-84.60264602646026,15.854609039908539],[-84.46584465844658,15.829280380860297],[-84.37584375843758,15.820837494510883],[-84.31464314643146,15.81746033997112],[-84.2930429304293,15.810706030891595],[-84.2390423904239,15.766803021874637],[-84.1670416704167,15.709391394698628],[-84.0590405904059,15.619896799394851],[-83.95463954639546,15.53209078136095],[-83.89343893438934,15.484810617804229],[-83.81783817838178,15.439219031517396],[-83.79983799837999,15.429087567898108],[-83.78183781837818,15.422333258818568],[-83.74583745837458,15.415578949739043],[-83.7350373503735,15.410513217929392],[-83.73143731437314,15.402070331579978],[-83.72783727837277,15.393627445230564],[-83.7350373503735,15.388561713420913],[-83.74943749437494,15.386873136151038],[-83.76743767437674,15.393627445230564],[-83.8070380703807,15.422333258818568],[-83.83583835838358,15.43246472243787],[-83.85383853838538,15.444284763327047],[-83.8610386103861,15.449350495136699],[-83.89343893438934,15.449350495136699],[-83.90783907839078,15.452727649676461],[-83.91863918639186,15.462859113295764],[-83.91503915039151,15.464547690565638],[-83.90783907839078,15.4679248451054],[-83.90423904239042,15.46961342237529],[-83.91143911439114,15.481433463264466],[-83.94743947439474,15.518582163201884],[-83.9510395103951,15.518582163201884],[-83.96543965439655,15.511827854122359],[-83.97623976239763,15.520270740471773],[-83.99063990639907,15.53209078136095],[-84.0050400504005,15.5371565131706],[-84.0230402304023,15.535467935900712],[-84.03384033840338,15.528713626821187],[-84.0410404104041,15.520270740471773],[-84.05544055440554,15.51013927685247],[-84.06264062640626,15.515205008662122],[-84.08784087840878,15.525336472281424],[-84.0770407704077,15.535467935900712],[-84.06984069840698,15.542222244980238],[-84.06984069840698,15.548976554059777],[-84.07344073440734,15.550665131329652],[-84.08424084240842,15.55235370859954],[-84.0950409504095,15.55235370859954],[-84.10224102241023,15.550665131329652],[-84.10584105841058,15.540533667710363],[-84.09864098640986,15.523647895011536],[-84.08784087840878,15.50507354504282],[-84.0770407704077,15.48987634961388],[-84.0770407704077,15.488187772343991],[-84.08064080640806,15.488187772343991],[-84.08064080640806,15.486499195074117],[-84.08424084240842,15.483122040534354],[-84.08784087840878,15.483122040534354],[-84.12024120241202,15.538845090440475],[-84.1310413104131,15.550665131329652],[-84.14184141841417,15.55235370859954],[-84.15624156241562,15.550665131329652],[-84.17064170641706,15.545599399520015],[-84.1850418504185,15.545599399520015],[-84.19944199441994,15.550665131329652],[-84.21384213842138,15.550665131329652],[-84.20664206642066,15.528713626821187],[-84.19944199441994,15.520270740471773],[-84.18144181441814,15.515205008662122],[-84.18144181441814,15.506762122312708],[-84.1850418504185,15.494942081423531],[-84.1850418504185,15.483122040534354],[-84.17784177841779,15.483122040534354],[-84.17424174241742,15.498319235963294],[-84.15624156241562,15.506762122312708],[-84.14544145441454,15.535467935900712],[-84.13824138241382,15.538845090440475],[-84.12744127441275,15.53209078136095],[-84.1130411304113,15.500007813233182],[-84.09864098640986,15.472990576915052],[-84.09144091440913,15.451039072406573],[-84.1130411304113,15.440907608787285],[-84.12384123841238,15.430776145167982],[-84.11664116641165,15.40544748611974],[-84.09864098640986,15.378430249801625],[-84.08424084240842,15.359855899832908],[-84.05544055440554,15.346347281673857],[-84.03384033840338,15.341281549864206],[-84.02664026640267,15.351413013483494],[-84.03384033840338,15.380118827071499],[-84.0230402304023,15.36998736345221],[-84.00864008640086,15.356478745293145],[-84.0050400504005,15.341281549864206],[-84.01224012240122,15.326084354435253],[-84.00144001440015,15.309198581736425],[-83.97983979839798,15.305821427196662],[-83.9330393303933,15.310887159006313],[-83.9330393303933,15.304132849926788],[-83.94023940239403,15.305821427196662],[-83.94743947439474,15.304132849926788],[-83.95823958239582,15.297378540847248],[-83.95823958239582,15.292312809037611],[-83.9510395103951,15.275427036338783],[-83.93663936639366,15.258541263639955],[-83.92223922239222,15.248409800020653],[-83.90063900639007,15.243344068211002],[-83.88263882638826,15.24503264548089],[-83.8610386103861,15.251786954560416],[-83.83583835838358,15.26022984090983],[-83.82143821438214,15.270361304529132],[-83.83583835838358,15.282181345418309],[-83.87543875438755,15.304132849926788],[-83.88263882638826,15.310887159006313],[-83.88623886238862,15.317641468085839],[-83.89343893438934,15.32270719989549],[-83.90063900639007,15.326084354435253],[-83.91143911439114,15.326084354435253],[-83.9870398703987,15.353101590753383],[-84.00144001440015,15.359855899832908],[-84.0230402304023,15.39193886796069],[-84.03384033840338,15.400381754310104],[-84.02664026640267,15.408824640659518],[-84.01584015840159,15.413890372469154],[-83.99423994239942,15.422333258818568],[-83.90423904239042,15.383495981611276],[-83.88983889838899,15.363233054372671],[-83.88623886238862,15.353101590753383],[-83.87183871838718,15.34297012713408],[-83.85383853838538,15.336215818054555],[-83.8250382503825,15.32946150897503],[-83.81423814238143,15.321018622625616],[-83.80343803438033,15.310887159006313],[-83.79623796237962,15.297378540847248],[-83.80343803438033,15.294001386307485],[-83.81063810638106,15.28724707722796],[-83.81423814238143,15.283869922688197],[-83.81423814238143,15.278804190878546],[-83.79983799837999,15.275427036338783],[-83.78543785437854,15.283869922688197],[-83.77463774637746,15.285558499958071],[-83.76743767437674,15.256852686370067],[-83.7710377103771,15.219703986432648],[-83.76743767437674,15.209572522813346],[-83.76023760237602,15.20281821373382],[-83.7530375303753,15.20281821373382],[-83.74583745837458,15.209572522813346],[-83.74583745837458,15.223081140972411],[-83.73863738637387,15.223081140972411],[-83.73143731437314,15.20281821373382],[-83.72423724237242,15.207883945543472],[-83.70623706237062,15.236589759131476],[-83.69183691836918,15.246721222750779],[-83.67023670236702,15.251786954560416],[-83.63423634236342,15.256852686370067],[-83.63063630636306,15.261918418179718],[-83.63063630636306,15.283869922688197],[-83.63063630636306,15.292312809037611],[-83.62343623436234,15.295689963577374],[-83.61623616236162,15.295689963577374],[-83.6090360903609,15.294001386307485],[-83.54423544235442,15.28049276814842],[-83.52623526235261,15.283869922688197],[-83.52623526235261,15.278804190878546],[-83.53343533435334,15.272049881799006],[-83.53343533435334,15.268672727259244],[-83.52983529835298,15.263606995449592],[-83.52623526235261,15.256852686370067],[-83.52623526235261,15.226458295512174],[-83.53343533435334,15.211261100083235],[-83.54423544235442,15.204506791003709],[-83.5550355503555,15.209572522813346],[-83.56223562235623,15.226458295512174],[-83.56583565835658,15.231524027321825],[-83.5730357303573,15.234901181861588],[-83.58383583835838,15.236589759131476],[-83.5910359103591,15.236589759131476],[-83.59823598235982,15.233212604591714],[-83.60543605436054,15.2247697182423],[-83.6090360903609,15.209572522813346],[-83.61623616236162,15.204506791003709],[-83.61983619836198,15.201129636463932],[-83.62343623436234,15.196063904654295],[-83.62343623436234,15.185932441034993],[-83.61983619836198,15.175800977415705],[-83.61623616236162,15.174112400145816],[-83.6090360903609,15.177489554685579],[-83.60183601836017,15.18255528649523],[-83.6090360903609,15.190998172844644],[-83.6090360903609,15.19775248192417],[-83.6090360903609,15.20281821373382],[-83.60183601836017,15.209572522813346],[-83.59463594635946,15.209572522813346],[-83.59463594635946,15.184243863765118],[-83.58743587435875,15.16735809106629],[-83.5730357303573,15.160603781986751],[-83.5550355503555,15.169046668336165],[-83.54783547835478,15.174112400145816],[-83.54063540635406,15.189309595574755],[-83.53343533435334,15.194375327384407],[-83.52623526235261,15.199441059194058],[-83.4830348303483,15.216326831892886],[-83.4830348303483,15.219703986432648],[-83.48663486634867,15.22983545005195],[-83.49023490234902,15.236589759131476],[-83.49743497434974,15.239966913671239],[-83.5010350103501,15.246721222750779],[-83.50823508235082,15.256852686370067],[-83.50823508235082,15.270361304529132],[-83.51543515435154,15.288935654497834],[-83.52983529835298,15.300755695387025],[-83.54783547835478,15.292312809037611],[-83.57663576635765,15.309198581736425],[-83.5910359103591,15.312575736276202],[-83.6090360903609,15.304132849926788],[-83.61623616236162,15.310887159006313],[-83.61263612636127,15.315952890815964],[-83.6090360903609,15.326084354435253],[-83.6270362703627,15.327772931705141],[-83.67023670236702,15.34297012713408],[-83.67743677436773,15.34972443621362],[-83.68823688236883,15.359855899832908],[-83.70983709837098,15.366610208912448],[-83.72423724237242,15.375053095261862],[-83.72063720637206,15.393627445230564],[-83.70263702637025,15.402070331579978],[-83.68823688236883,15.393627445230564],[-83.67383673836738,15.380118827071499],[-83.6630366303663,15.373364517991973],[-83.65223652236521,15.36998736345221],[-83.54423544235442,15.315952890815964],[-83.40743407434074,15.26698414998937],[-83.3570335703357,15.22983545005195],[-83.34623346233462,15.211261100083235],[-83.32823328233282,15.147095163827686],[-83.31023310233103,15.106569309350505],[-83.2850328503285,15.067732032143212],[-83.25263252632526,15.044091950364844],[-83.13023130231302,14.996811786808138],[-83.13743137431373,14.986680323188835],[-83.15543155431554,14.978237436839422],[-83.16623166231662,14.969794550490008],[-83.18063180631806,14.986680323188835],[-83.19143191431914,14.974860282299659],[-83.20223202232022,14.95290877779118],[-83.20943209432095,14.941088736902003],[-83.22023220232202,14.936023005092352],[-83.23463234632347,14.920825809663413],[-83.24183241832418,14.903940036964585],[-83.24543245432454,14.89043141880552],[-83.2490324903249,14.885365686995868],[-83.26343263432634,14.873545646106692],[-83.2670326703267,14.866791337027166],[-83.27063270632706,14.856659873407864],[-83.27063270632706,14.834708368899399],[-83.27423274232741,14.826265482549985],[-83.28143281432814,14.81275686439092],[-83.29223292232922,14.804313978041506],[-83.32823328233282,14.790805359882441],[-83.32463324633245,14.79755966896198],[-83.32463324633245,14.800936823501743],[-83.31383313833138,14.811068287121032],[-83.31383313833138,14.804313978041506],[-83.31023310233103,14.809379709851157],[-83.31023310233103,14.814445441660794],[-83.31023310233103,14.819511173470445],[-83.31023310233103,14.826265482549985],[-83.31743317433174,14.821199750740334],[-83.3210332103321,14.819511173470445],[-83.32823328233282,14.826265482549985],[-83.32823328233282,14.831331214359622],[-83.31743317433174,14.838085523439162],[-83.30663306633066,14.838085523439162],[-83.29583295832958,14.834708368899399],[-83.28863288632886,14.826265482549985],[-83.28863288632886,14.844839832518687],[-83.29943299432993,14.870168491566929],[-83.3030330303303,14.89043141880552],[-83.30663306633066,14.91069434604411],[-83.3210332103321,14.914071500583887],[-83.3390333903339,14.907317191504347],[-83.34983349833497,14.900562882424822],[-83.37143371433714,14.883677109725994],[-83.41463414634146,14.82795405981986],[-83.42543425434253,14.804313978041506],[-83.41463414634146,14.814445441660794],[-83.4110341103411,14.817822596200571],[-83.39663396633966,14.807691132581269],[-83.38583385833859,14.767165278104088],[-83.37863378633786,14.757033814484785],[-83.36783367833678,14.75027950540526],[-83.35343353433534,14.736770887246195],[-83.3390333903339,14.731705155436543],[-83.3210332103321,14.75027950540526],[-83.32823328233282,14.755345237214911],[-83.34623346233462,14.767165278104088],[-83.3570335703357,14.77054243264385],[-83.34623346233462,14.777296741723376],[-83.33183331833318,14.773919587183613],[-83.32463324633245,14.763788123564325],[-83.31383313833138,14.75027950540526],[-83.31383313833138,14.772231009913739],[-83.30663306633066,14.780673896263153],[-83.29943299432993,14.77054243264385],[-83.25983259832599,14.596618973845935],[-83.25623256232562,14.589864664766395],[-83.2490324903249,14.571290314797693],[-83.24183241832418,14.524010151240972],[-83.19143191431914,14.387235392380475],[-83.18783187831878,14.348398115173183],[-83.19143191431914,14.312937992505638],[-83.22023220232202,14.250460633519978],[-83.3030330303303,14.120440183739007],[-83.3390333903339,14.078225751991951],[-83.34263342633426,14.061339979293123],[-83.34983349833497,14.049519938403932],[-83.39663396633966,14.015748393006291],[-83.41823418234182,13.98873115668816],[-83.43263432634326,13.956648188560393],[-83.45423454234542,13.86377643871684],[-83.49383493834938,13.737133143475646],[-83.5190351903519,13.623998466393502],[-83.51543515435154,13.575029725566907],[-83.5190351903519,13.55138964378854],[-83.5190351903519,13.531126716549949],[-83.54063540635406,13.482157975723354],[-83.55863558635586,13.41630346219793],[-83.56943569435694,13.286283012416959],[-83.56943569435694,13.262642930638606],[-83.56223562235623,13.24913431247954],[-83.56943569435694,13.242380003400015],[-83.56223562235623,13.230559962510824],[-83.52983529835298,13.032996421934556],[-83.50823508235082,12.902975972153584],[-83.54063540635406,12.639557918051892],[-83.54063540635406,12.580457713605995],[-83.5370353703537,12.570326249986692],[-83.52263522635226,12.541620436398688],[-83.51543515435154,12.511226045540795],[-83.48663486634867,12.472388768333502],[-83.47943479434794,12.44706010928526],[-83.4830348303483,12.416665718427367],[-83.49383493834938,12.39977994572854],[-83.51183511835119,12.393025636649014],[-83.54423544235442,12.393025636649014],[-83.56943569435694,12.387959904839363],[-83.59463594635946,12.379517018489949],[-83.61623616236162,12.374451286680298],[-83.63783637836379,12.386271327569474],[-83.63063630636306,12.393025636649014],[-83.6090360903609,12.40653425480808],[-83.60183601836017,12.413288563887605],[-83.60183601836017,12.425108604776781],[-83.60543605436054,12.44030580020572],[-83.61263612636127,12.455502995634674],[-83.63423634236342,12.474077345603376],[-83.63423634236342,12.5399318591288],[-83.63783637836379,12.565260518177041],[-83.63423634236342,12.56694909544693],[-83.63063630636306,12.56694909544693],[-83.63063630636306,12.570326249986692],[-83.62343623436234,12.570326249986692],[-83.58743587435875,12.560194786367404],[-83.56223562235623,12.590589177225283],[-83.5550355503555,12.636180763512115],[-83.56943569435694,12.666575154370008],[-83.56943569435694,12.673329463449534],[-83.55863558635586,12.683460927068836],[-83.5550355503555,12.696969545227901],[-83.5550355503555,12.752692595134022],[-83.55143551435513,12.75438117240391],[-83.54783547835478,12.757758326943673],[-83.54423544235442,12.762824058753324],[-83.54063540635406,12.76957836783285],[-83.54423544235442,12.79659560415098],[-83.56223562235623,12.813481376849808],[-83.5910359103591,12.818547108659445],[-83.61623616236162,12.81685853138957],[-83.63783637836379,12.805038490500394],[-83.6450364503645,12.786464140531677],[-83.6450364503645,12.766201213293087],[-83.63783637836379,12.749315440594259],[-83.61623616236162,12.737495399705082],[-83.61263612636127,12.735806822435194],[-83.61263612636127,12.732429667895431],[-83.61263612636127,12.715543895196603],[-83.6090360903609,12.70710100884719],[-83.60543605436054,12.700346699767664],[-83.60183601836017,12.698658122497775],[-83.59823598235982,12.693592390688138],[-83.59463594635946,12.683460927068836],[-83.59463594635946,12.666575154370008],[-83.59823598235982,12.659820845290483],[-83.60183601836017,12.653066536210943],[-83.59823598235982,12.648000804401292],[-83.58743587435875,12.632803608972353],[-83.61983619836198,12.61422925900365],[-83.67383673836738,12.570326249986692],[-83.70623706237062,12.556817631827627],[-83.74943749437494,12.55175190001799],[-83.76743767437674,12.546686168208339],[-83.77463774637746,12.533177550049274],[-83.77463774637746,12.480831654682916],[-83.7710377103771,12.48252023195279],[-83.76023760237602,12.48252023195279],[-83.74943749437494,12.479143077413028],[-83.74223742237422,12.479143077413028],[-83.7350373503735,12.47745450014314],[-83.72783727837277,12.46901161379374],[-83.72063720637206,12.423420027506893],[-83.72423724237242,12.401468522998428],[-83.73143731437314,12.382894173029712],[-83.7350373503735,12.362631245791121],[-83.72783727837277,12.344056895822419],[-83.70623706237062,12.335614009473005],[-83.67743677436773,12.34236831855253],[-83.67023670236702,12.327171123123591],[-83.67383673836738,12.317039659504289],[-83.67743677436773,12.296776732265698],[-83.67743677436773,12.286645268646396],[-83.67743677436773,12.27989095956687],[-83.67023670236702,12.288333845916284],[-83.65583655836558,12.340679741282642],[-83.64863648636486,12.352499782171833],[-83.64143641436414,12.359254091251358],[-83.61983619836198,12.355876936711596],[-83.61623616236162,12.347434050362182],[-83.6630366303663,12.256250877788517],[-83.68463684636846,12.138050468896722],[-83.67743677436773,12.009718596385639],[-83.67023670236702,11.98776709187716],[-83.67743677436773,11.984389937337397],[-83.68463684636846,11.981012782797634],[-83.6810368103681,12.001275710036225],[-83.68823688236883,12.018161482735053],[-83.71343713437135,12.048555873592946],[-83.72423724237242,12.073884532641188],[-83.7170371703717,12.085704573530364],[-83.6990369903699,12.095836037149652],[-83.69183691836918,12.117787541658132],[-83.6990369903699,12.13467331435696],[-83.70983709837098,12.15493624159555],[-83.72783727837277,12.171822014294378],[-83.74583745837458,12.180264900643792],[-83.77823778237781,12.176887746104029],[-83.77463774637746,12.161690550675075],[-83.76023760237602,12.153247664325662],[-83.74583745837458,12.166756282484727],[-83.73863738637387,12.166756282484727],[-83.72423724237242,12.149870509785899],[-83.7170371703717,12.13973904616661],[-83.71343713437135,12.126230428007545],[-83.7170371703717,12.109344655308718],[-83.73143731437314,12.087393150800239],[-83.7350373503735,12.07050737810141],[-83.73863738637387,12.051933028132709],[-83.75663756637566,12.051933028132709],[-83.79983799837999,12.063753069021885],[-83.80343803438033,12.060375914482123],[-83.79263792637926,12.053621605402583],[-83.76743767437674,12.043490141783295],[-83.76023760237602,12.03504725543388],[-83.75663756637566,12.024915791814578],[-83.75663756637566,12.013095750925402],[-83.7530375303753,11.999587132766337],[-83.75663756637566,11.989455669147048],[-83.76383763837639,11.970881319178332],[-83.76743767437674,11.964127010098807],[-83.76383763837639,11.959061278289155],[-83.76383763837639,11.95230696920963],[-83.76023760237602,11.947241237399979],[-83.76023760237602,11.940486928320453],[-83.76743767437674,11.933732619240914],[-83.7710377103771,11.930355464701151],[-83.77823778237781,11.928666887431262],[-83.78183781837818,11.926978310161388],[-83.79983799837999,11.903338228383035],[-83.80343803438033,11.898272496573384],[-83.81423814238143,11.896583919303495],[-83.8250382503825,11.888141032954081],[-83.83223832238322,11.879698146604667],[-83.83583835838358,11.871255260255253],[-83.82143821438214,11.86281237390584],[-83.8070380703807,11.8476151784769],[-83.79263792637926,11.83241798304796],[-83.78543785437854,11.813843633079244],[-83.77823778237781,11.808777901269593],[-83.76743767437674,11.80540074672983],[-83.75663756637566,11.803712169459956],[-83.74223742237422,11.80540074672983],[-83.74223742237422,11.810466478539482],[-83.74583745837458,11.815532210349133],[-83.74583745837458,11.823975096698547],[-83.74223742237422,11.844238023937137],[-83.7350373503735,11.854369487556426],[-83.72783727837277,11.857746642096203],[-83.70983709837098,11.857746642096203],[-83.6990369903699,11.849303755746789],[-83.65223652236521,11.666937410599445],[-83.65223652236521,11.631477287931915],[-83.65223652236521,11.619657247042738],[-83.65223652236521,11.611214360693324],[-83.65583655836558,11.606148628883673],[-83.6630366303663,11.59770574253426],[-83.66663666636666,11.601082897074022],[-83.6810368103681,11.59770574253426],[-83.69543695436954,11.594328587994497],[-83.69543695436954,11.590951433454734],[-83.70263702637025,11.587574278914957],[-83.71343713437135,11.574065660755906],[-83.72423724237242,11.570688506216143],[-83.7350373503735,11.570688506216143],[-83.74583745837458,11.568999928946255],[-83.7530375303753,11.563934197136604],[-83.76023760237602,11.557179888057078],[-83.7710377103771,11.526785497199185],[-83.78183781837818,11.479505333642464],[-83.79263792637926,11.444045210974934],[-83.81423814238143,11.447422365514697],[-83.82143821438214,11.447422365514697],[-83.85383853838538,11.406896511037516],[-83.8610386103861,11.391699315608577],[-83.86823868238682,11.374813542909749],[-83.86823868238682,11.273498906716782],[-83.83583835838358,11.141789879665936],[-83.81423814238143,11.091132561569452],[-83.78543785437854,11.04554097528262],[-83.77463774637746,11.020212316234378],[-83.7530375303753,10.98306361629696],[-83.74223742237422,10.974620729947546],[-83.72423724237242,10.96280068905837],[-83.7170371703717,10.944226339089653],[-83.70983709837098,10.922274834581174],[-83.69183691836918,10.92565198912095],[-83.69543695436954,10.935783452740239],[-83.6810368103681,10.939160607280002],[-83.65943659436594,10.934094875470365],[-83.6450364503645,10.92565198912095],[-83.62343623436234,10.903700484612472],[-83.59823598235982,10.85642032105575],[-83.58023580235802,10.807451580229156],[-83.58383583835838,10.775368612101389],[-83.59823598235982,10.79394296207009],[-83.62343623436234,10.85810889832564],[-83.60543605436054,10.777057189371263],[-83.6090360903609,10.744974221243496],[-83.63783637836379,10.721334139465142],[-83.62343623436234,10.723022716735017],[-83.61263612636127,10.73146560308443],[-83.60183601836017,10.739908489433844],[-83.58743587435875,10.748351375783258],[-83.59463594635946,10.743285643973621],[-83.59463594635946,10.736531334894082],[-83.59463594635946,10.729777025814556],[-83.58743587435875,10.721334139465142],[-83.58383583835838,10.733154180354319],[-83.58023580235802,10.755105684862798],[-83.57663576635765,10.768614303021849],[-83.52623526235261,10.635216698701129],[-83.4650346503465,10.495064785300855],[-83.3930339303393,10.376864376409074],[-83.20223202232022,10.128643517736307],[-83.18783187831878,10.11851205411702],[-83.1230312303123,10.040837499702405],[-83.0870308703087,10.002000222495113],[-83.06183061830617,10.015508840654178],[-83.0510305103051,10.008754531574638],[-83.02583025830258,10.005377377034876],[-83.02223022230221,9.996934490685462],[-83.01863018630186,9.978360140716745],[-83.0150301503015,9.963162945287806],[-83.00783007830078,9.94965432712874],[-82.99702997029969,9.93614570896969],[-82.95022950229502,9.86691404090449],[-82.93582935829357,9.856782577285202],[-82.87822878228782,9.780796600140476],[-82.8350283502835,9.740270745663295],[-82.80982809828097,9.74702505474282],[-82.80262802628026,9.731827859313881],[-82.79542795427955,9.6913020048367],[-82.78822788227882,9.672727654867984],[-82.77382773827738,9.660907613978807],[-82.70542705427054,9.637267532200454],[-82.68022680226802,9.635578954930565],[-82.65862658626585,9.635578954930565],[-82.6370263702637,9.633890377660677],[-82.61542615426154,9.623758914041389],[-82.59022590225902,9.58661021410397],[-82.57582575825758,9.576478750484668],[-82.57222572225722,9.576478750484668],[-82.56142561425614,9.569724441405143],[-82.46422464224642,9.493738464260417],[-82.40662406624065,9.43463825981452],[-82.37062370623705,9.41437533257593],[-82.34182341823418,9.432949682544645],[-82.34542345423453,9.416063909845818],[-82.3490234902349,9.402555291686753],[-82.37782377823778,9.355275128130032],[-82.37782377823778,9.343455087240855],[-82.37782377823778,9.32994646908179],[-82.3670236702367,9.321503582732376],[-82.35622356223561,9.313060696382962],[-82.3490234902349,9.306306387303437],[-82.3490234902349,9.29448634641426],[-82.36342363423634,9.284354882794958],[-82.38862388623886,9.286043460064846],[-82.38862388623886,9.27422341917567],[-82.39582395823957,9.26746911009613],[-82.39222392223922,9.262403378286493],[-82.38862388623886,9.260714801016604],[-82.38142381423813,9.260714801016604],[-82.37422374223742,9.253960491937079],[-82.36342363423634,9.242140451047902],[-82.35982359823598,9.228631832888837],[-82.35622356223561,9.21681179199966],[-82.3490234902349,9.206680328380358],[-82.3130231302313,9.184728823871879],[-82.30942309423094,9.184728823871879],[-82.30222302223022,9.19654886476107],[-82.28782287822878,9.198237442030944],[-82.28422284222842,9.201614596570707],[-82.2950229502295,9.220188946539423],[-82.28062280622805,9.21681179199966],[-82.2770227702277,9.206680328380358],[-82.27342273422734,9.194860287491181],[-82.26622266222662,9.184728823871879],[-82.25542255422553,9.183040246602005],[-82.24822248222482,9.186417401141767],[-82.24462244622445,9.198237442030944],[-82.24462244622445,9.213434637459883],[-82.23742237422374,9.213434637459883],[-82.23742237422374,9.199926019300833],[-82.23022230222301,9.193171710221293],[-82.2230222302223,9.193171710221293],[-82.21942219422193,9.19654886476107],[-82.21942219422193,9.208368905650246],[-82.21582215822158,9.21681179199966],[-82.21222212222122,9.220188946539423],[-82.20502205022049,9.213434637459883],[-82.20502205022049,9.21681179199966],[-82.20502205022049,9.218500369269535],[-82.20142201422014,9.220188946539423],[-82.19782197821978,9.220188946539423],[-82.19782197821978,9.21174606019001],[-82.19422194221941,9.203303173840595],[-82.19062190621906,9.198237442030944],[-82.18342183421834,9.193171710221293],[-82.17622176221762,9.193171710221293],[-82.17622176221762,9.199926019300833],[-82.1690216902169,9.199926019300833],[-82.17262172621726,9.184728823871879],[-82.17262172621726,9.157711587553763],[-82.17622176221762,9.145891546664586],[-82.20862208622086,9.164465896633288],[-82.2230222302223,9.16953162844294],[-82.24822248222482,9.171220205712828],[-82.2590225902259,9.164465896633288],[-82.26262262622626,9.145891546664586],[-82.2590225902259,9.12731719669587],[-82.25182251822518,9.117185733076582],[-82.25182251822518,9.110431423997042],[-82.2590225902259,9.11212000126693],[-82.27342273422734,9.117185733076582],[-82.26982269822697,9.101988537647628],[-82.24462244622445,9.090168496758452],[-82.23742237422374,9.080037033139163],[-82.24462244622445,9.014182519613726],[-82.25182251822518,9.015871096883615],[-82.25542255422553,9.017559674153503],[-82.2590225902259,9.020936828693266],[-82.24462244622445,9.004051055994438],[-82.21942219422193,8.993919592375136],[-82.19422194221941,8.990542437835373],[-82.17622176221762,9.000673901454675],[-82.14022140221402,8.988853860565484],[-82.12942129421293,8.982099551485959],[-82.12942129421293,8.973656665136545],[-82.1150211502115,8.950016583358192],[-82.10782107821078,8.94495085154854],[-82.10782107821078,8.941573697008778],[-82.10422104221041,8.934819387929238],[-82.10062100621006,8.931442233389475],[-82.0970209702097,8.931442233389475],[-82.08622086220862,8.931442233389475],[-82.06822068220681,8.931442233389475],[-82.02142021420214,8.94495085154854],[-81.99621996219962,8.946639428818429],[-81.98541985419854,8.941573697008778],[-81.97461974619746,8.934819387929238],[-81.96021960219602,8.931442233389475],[-81.94221942219421,8.934819387929238],[-81.92781927819277,8.943262274278652],[-81.92061920619206,8.955082315167843],[-81.92421924219242,8.96690235605702],[-81.91341913419134,8.970279510596782],[-81.90261902619025,8.97196808786667],[-81.88821888218882,8.96690235605702],[-81.88821888218882,8.961836624247368],[-81.87741877418773,8.955082315167843],[-81.86661866618665,8.950016583358192],[-81.8630186301863,8.955082315167843],[-81.85221852218523,8.958459469707606],[-81.79461794617946,8.931442233389475],[-81.77661776617767,8.93988511973889],[-81.76941769417694,8.956770892437717],[-81.7730177301773,8.997296746914898],[-81.84141841418413,9.036134024122205],[-81.87741877418773,9.086791342218689],[-81.88461884618846,9.096922805837977],[-81.8990189901899,9.101988537647628],[-81.9170191701917,9.115497155806693],[-81.9350193501935,9.129005773965758],[-81.93861938619386,9.139137237585047],[-81.92061920619206,9.137448660315172],[-81.89541895418954,9.132382928505521],[-81.87381873818738,9.129005773965758],[-81.8630186301863,9.142514392124824],[-81.89541895418954,9.157711587553763],[-81.90981909819098,9.167843051173051],[-81.90261902619025,9.179663092062242],[-81.8810188101881,9.179663092062242],[-81.86661866618665,9.166154473903177],[-81.84141841418413,9.139137237585047],[-81.81981819818198,9.120562887616344],[-81.81621816218161,9.117185733076582],[-81.81621816218161,9.108742846727168],[-81.82341823418234,9.105365692187391],[-81.83421834218342,9.10705426945728],[-81.84141841418413,9.110431423997042],[-81.84141841418413,9.103677114917517],[-81.83421834218342,9.093545651298214],[-81.8270182701827,9.0851027649488],[-81.81981819818198,9.069905569519861],[-81.81261812618126,9.068216992249972],[-81.80181801818019,9.068216992249972],[-81.77661776617767,9.06483983771021],[-81.76221762217622,9.063151260440335],[-81.7370173701737,9.036134024122205],[-81.72261722617226,9.032756869582443],[-81.70821708217082,8.998985324184787],[-81.7010170101701,8.993919592375136],[-81.68661686616866,8.983788128755847],[-81.6290162901629,8.899359265261708],[-81.58581585815858,8.857144833514639],[-81.56781567815678,8.843636215355573],[-81.56061560615606,8.83519332900616],[-81.54981549815498,8.823373288116983],[-81.53901539015389,8.813241824497695],[-81.53181531815318,8.808176092688043],[-81.5210152101521,8.806487515418155],[-81.5030150301503,8.801421783608518],[-81.49221492214922,8.801421783608518],[-81.47421474214742,8.806487515418155],[-81.42021420214202,8.796356051798867],[-81.40941409414094,8.79973320633863],[-81.38061380613806,8.79973320633863],[-81.3590135901359,8.78453601090969],[-81.3050130501305,8.781158856369913],[-81.26541265412654,8.789601742719327],[-81.21141211412113,8.791290319989216],[-81.17541175411753,8.796356051798867],[-81.12861128611286,8.801421783608518],[-81.0890108901089,8.808176092688043],[-81.07821078210782,8.80479893814828],[-81.0710107101071,8.806487515418155],[-81.06021060210601,8.813241824497695],[-81.0530105301053,8.821684710847109],[-80.97380973809737,8.848701947165225],[-80.89820898208981,8.879096338023118],[-80.88020880208802,8.885850647102643],[-80.84420844208442,8.884162069832769],[-80.82260822608225,8.890916378912294],[-80.81180811808117,8.902736419801471],[-80.80460804608046,8.912867883420773],[-80.7830078300783,8.93988511973889],[-80.77220772207721,8.953393737897954],[-80.76140761407613,8.96014804697748],[-80.75780757807578,8.963525201517257],[-80.75420754207542,8.970279510596782],[-80.75060750607506,8.977033819676308],[-80.74340743407434,8.98041097421607],[-80.72540725407254,8.997296746914898],[-80.70380703807038,9.0074282105342],[-80.66780667806678,9.02937971504268],[-80.65340653406534,9.036134024122205],[-80.63540635406353,9.051331219551145],[-80.57780577805778,9.080037033139163],[-80.55260552605526,9.09185707402834],[-80.50580505805058,9.110431423997042],[-80.40860408604085,9.142514392124824],[-80.29340293402933,9.150957278474223],[-80.2790027900279,9.156023010283874],[-80.24300243002429,9.17459736025259],[-80.23580235802358,9.179663092062242],[-80.19980199801998,9.183040246602005],[-80.16380163801638,9.193171710221293],[-80.13140131401313,9.206680328380358],[-80.10260102601026,9.221877523809297],[-80.06660066600665,9.262403378286493],[-80.0270002700027,9.296174923684148],[-80.00180001800018,9.319815005462502],[-79.99819998199982,9.331635046351678],[-79.98019980199801,9.363718014479446],[-79.95499954999549,9.373849478098748],[-79.94779947799478,9.37216090082886],[-79.94419944199441,9.363718014479446],[-79.94419944199441,9.326569314542027],[-79.94419944199441,9.316437850922739],[-79.9369993699937,9.3096835418432],[-79.92979929799297,9.304617810033562],[-79.9189991899919,9.302929232763674],[-79.90819908199082,9.307994964573325],[-79.9009990099901,9.326569314542027],[-79.9009990099901,9.346832241780618],[-79.89379893798937,9.35696370539992],[-79.87579875798758,9.343455087240855],[-79.87579875798758,9.351897973590269],[-79.87939879398793,9.368783746289097],[-79.8829988299883,9.37722663263851],[-79.87939879398793,9.375538055368622],[-79.87579875798758,9.370472323558985],[-79.86859868598685,9.37722663263851],[-79.87939879398793,9.394112405337339],[-79.87219872198722,9.404243868956641],[-79.86139861398614,9.39917813714699],[-79.83979839798397,9.400866714416864],[-79.81819818198181,9.390735250797576],[-79.80019800198002,9.360340859939683],[-79.7929979299793,9.348520819050506],[-79.79659796597966,9.370472323558985],[-79.80379803798037,9.387358096257813],[-79.80379803798037,9.400866714416864],[-79.7929979299793,9.417752487115692],[-79.77859778597785,9.431261105274757],[-79.74979749797498,9.443081146163934],[-79.73179731797318,9.453212609783236],[-79.72819728197281,9.456589764322999],[-79.72819728197281,9.463344073402524],[-79.72459724597246,9.466721227942301],[-79.7209972099721,9.468409805212175],[-79.71379713797138,9.480229846101352],[-79.70659706597066,9.485295577911003],[-79.69219692196921,9.495427041530306],[-79.6849968499685,9.520755700578547],[-79.67779677796777,9.546084359626775],[-79.65979659796598,9.552838668706315],[-79.65259652596525,9.55959297778584],[-79.65619656196561,9.564658709595491],[-79.6669966699667,9.561281555055729],[-79.67779677796777,9.557904400515966],[-79.68139681396814,9.564658709595491],[-79.67419674196742,9.568035864135254],[-79.67059670596706,9.573101595944905],[-79.66339663396634,9.583233059564208],[-79.6489964899649,9.589987368643733],[-79.63819638196382,9.598430254993147],[-79.6309963099631,9.608561718612435],[-79.6129961299613,9.613627450422086],[-79.5949959499595,9.611938873152212],[-79.57699576995769,9.61700460496185],[-79.55179551795517,9.62882464585104],[-79.53379533795338,9.623758914041389],[-79.52659526595265,9.611938873152212],[-79.5229952299523,9.603495986802798],[-79.5229952299523,9.595053100453384],[-79.53379533795338,9.589987368643733],[-79.53379533795338,9.583233059564208],[-79.5229952299523,9.57985590502443],[-79.5229952299523,9.576478750484668],[-79.51939519395194,9.569724441405143],[-79.51579515795157,9.573101595944905],[-79.51219512195122,9.574790173214794],[-79.50859508595086,9.578167327754556],[-79.5049950499505,9.583233059564208],[-79.49779497794978,9.583233059564208],[-79.49059490594905,9.578167327754556],[-79.48339483394834,9.574790173214794],[-79.46539465394653,9.569724441405143],[-79.46179461794618,9.578167327754556],[-79.45819458194582,9.596741677723259],[-79.45099450994509,9.58661021410397],[-79.44379443794438,9.583233059564208],[-79.43659436594366,9.584921636834082],[-79.42939429394293,9.589987368643733],[-79.39339393393934,9.57985590502443],[-79.33579335793358,9.574790173214794],[-79.2709927099271,9.556215823246077],[-79.23859238592385,9.546084359626775],[-79.19539195391954,9.53933005054725],[-79.17379173791737,9.549461514166552],[-79.15579155791558,9.554527245976189],[-79.13419134191342,9.552838668706315],[-79.11619116191162,9.551150091436426],[-79.09819098190981,9.556215823246077],[-79.08019080190802,9.561281555055729],[-79.04779047790477,9.564658709595491],[-79.01179011790117,9.569724441405143],[-78.97218972189721,9.573101595944905],[-78.95778957789578,9.564658709595491],[-78.95778957789578,9.554527245976189],[-78.97578975789757,9.5443957823569],[-78.98658986589865,9.547772936896664],[-78.99738997389973,9.53933005054725],[-79.00819008190082,9.53933005054725],[-79.03699036990369,9.535952896007487],[-79.0549905499055,9.532575741467724],[-79.06579065790658,9.514001391499008],[-79.06219062190621,9.490361309720655],[-79.05859058590586,9.458278341592887],[-79.04059040590406,9.451524032513348],[-79.02259022590225,9.456589764322999],[-79.01539015390154,9.451524032513348],[-79.0009900099001,9.453212609783236],[-78.98658986589865,9.45490118705311],[-78.97578975789757,9.456589764322999],[-78.9649896498965,9.45490118705311],[-78.95418954189542,9.45490118705311],[-78.93618936189361,9.448146877973585],[-78.92538925389253,9.444769723433822],[-78.91458914589145,9.436326837084408],[-78.90738907389074,9.431261105274757],[-78.90378903789038,9.422818218925343],[-78.89658896588965,9.424506796195232],[-78.88218882188822,9.424506796195232],[-78.87498874988749,9.424506796195232],[-78.86418864188641,9.422818218925343],[-78.85338853388534,9.424506796195232],[-78.84618846188461,9.432949682544645],[-78.83538835388353,9.43463825981452],[-78.81738817388174,9.431261105274757],[-78.78858788587885,9.436326837084408],[-78.78138781387814,9.446458300703696],[-78.76338763387633,9.443081146163934],[-78.75258752587526,9.444769723433822],[-78.74178741787418,9.448146877973585],[-78.72738727387274,9.45490118705311],[-78.71658716587166,9.44139256889406],[-78.70218702187022,9.43463825981452],[-78.68778687786877,9.436326837084408],[-78.65538655386554,9.426195373465106],[-78.63378633786337,9.429572528004869],[-78.61938619386194,9.41944106438558],[-78.6049860498605,9.416063909845818],[-78.59058590585906,9.422818218925343],[-78.57978579785798,9.431261105274757],[-78.56178561785617,9.438015414354282],[-78.54738547385473,9.43463825981452],[-78.52578525785258,9.421129641655469],[-78.51138511385113,9.416063909845818],[-78.4789847898479,9.416063909845818],[-78.46458464584646,9.404243868956641],[-78.45378453784538,9.409309600766278],[-78.43938439384394,9.404243868956641],[-78.42858428584286,9.394112405337339],[-78.41418414184142,9.383980941718036],[-78.3889838898389,9.37216090082886],[-78.37818378183782,9.365406591749334],[-78.36378363783638,9.362029437209571],[-78.33858338583386,9.355275128130032],[-78.3169831698317,9.345143664510744],[-78.30258302583026,9.333323623621567],[-78.28818288182882,9.326569314542027],[-78.27738277382774,9.321503582732376],[-78.26658266582666,9.321503582732376],[-78.25578255782557,9.318126428192613],[-78.24138241382414,9.3096835418432],[-78.2269822698227,9.301240655493785],[-78.20898208982089,9.291109191874497],[-78.1909819098191,9.287732037334735],[-78.17658176581766,9.289420614604609],[-78.16578165781658,9.286043460064846],[-78.15498154981549,9.27928915098532],[-78.14058140581406,9.277600573715432],[-78.12258122581225,9.265780532826255],[-78.11538115381154,9.253960491937079],[-78.08658086580866,9.24720618285754],[-78.05778057780577,9.243829028317776],[-78.03618036180362,9.237074719238251],[-78.02538025380254,9.226943255618949],[-78.02178021780217,9.213434637459883],[-78.00018000180002,9.191483132951419],[-77.98577985779858,9.188105978411656],[-77.96777967779677,9.181351669332116],[-77.93537935379354,9.142514392124824],[-77.91737917379173,9.117185733076582],[-77.90657906579065,9.098611383107865],[-77.88857888578886,9.076659878599386],[-77.85617856178561,9.054708374090922],[-77.85977859778598,9.068216992249972],[-77.86697866978669,9.080037033139163],[-77.87777877778777,9.103677114917517],[-77.87777877778777,9.118874310346456],[-77.85977859778598,9.110431423997042],[-77.8489784897849,9.086791342218689],[-77.83817838178382,9.076659878599386],[-77.8129781297813,9.058085528630684],[-77.80937809378094,9.036134024122205],[-77.79857798577986,9.024313983233029],[-77.78417784177842,9.017559674153503],[-77.76977769777697,9.004051055994438],[-77.76617766177661,8.992231015105261],[-77.7589775897759,8.982099551485959],[-77.74817748177482,8.97196808786667],[-77.74457744577445,8.963525201517257],[-77.75537755377553,8.94495085154854],[-77.73377733777338,8.922999347040061],[-77.71937719377193,8.892604956182183],[-77.70857708577086,8.880784915292992],[-77.70137701377013,8.889227801642406],[-77.69777697776978,8.887539224372532],[-77.69417694176941,8.874030606213466],[-77.6761767617676,8.86221056532429],[-77.65457654576545,8.843636215355573],[-77.6329763297633,8.816618979037457],[-77.61497614976149,8.808176092688043],[-77.61857618576185,8.816618979037457],[-77.62577625776257,8.823373288116983],[-77.6329763297633,8.830127597196523],[-77.6329763297633,8.84025906081581],[-77.62937629376293,8.843636215355573],[-77.61857618576185,8.83519332900616],[-77.60777607776078,8.821684710847109],[-77.60417604176041,8.814930401767569],[-77.57537575375754,8.792978897259104],[-77.57897578975789,8.774404547290388],[-77.5609756097561,8.759207351861448],[-77.55377553775537,8.776093124560276],[-77.54297542975429,8.774404547290388],[-77.53577535775358,8.75751877459156],[-77.53937539375393,8.740633001892732],[-77.53937539375393,8.725435806463793],[-77.54297542975429,8.71530434284449],[-77.53217532175321,8.703484301955314],[-77.49977499774998,8.681532797446835],[-77.47817478174781,8.669712756557658],[-77.44577445774458,8.664647024748007],[-77.41337413374133,8.666335602017895],[-77.39537395373954,8.678155642907072],[-77.39177391773917,8.67308991109742],[-77.38457384573846,8.669712756557658],[-77.3809738097381,8.666335602017895],[-77.37377373773738,8.664647024748007],[-77.37377373773738,8.669712756557658],[-77.37017370173702,8.671401333827546],[-77.37017370173702,8.67477848836731],[-77.36657366573665,8.678155642907072],[-77.35217352173521,8.669712756557658],[-77.34137341373413,8.63256405662024],[-77.33057330573305,8.613989706651537],[-77.31617316173161,8.602169665762347],[-77.30537305373053,8.588661047603296],[-77.29817298172982,8.573463852174342],[-77.29097290972909,8.55488950220564],[-77.28377283772838,8.516052224998333],[-77.2729727297273,8.495789297759742],[-77.20817208172082,8.451886288742799],[-77.15777157771578,8.431623361504194],[-77.14337143371434,8.421491897884906],[-77.13257132571326,8.40798327972584],[-77.05337053370533,8.276274252674995],[-77.03177031770318,8.259388479976167],[-77.01737017370174,8.257699902706278],[-76.98856988569885,8.257699902706278],[-76.98496984969849,8.256011325436404],[-76.97776977769777,8.254322748166516],[-76.97056970569706,8.266142789055692],[-76.96336963369633,8.266142789055692],[-76.95616956169562,8.256011325436404],[-76.95616956169562,8.24081413000745],[-76.96336963369633,8.24081413000745],[-76.9669696696967,8.244191284547227],[-76.97056970569706,8.245879861817102],[-76.97056970569706,8.22055120276886],[-76.96336963369633,8.203665430070032],[-76.95256952569525,8.196911120990507],[-76.93456934569345,8.20535400733992],[-76.93456934569345,8.18509108010133],[-76.92016920169202,8.198599698260395],[-76.91656916569166,8.188468234641093],[-76.92736927369273,8.173271039212153],[-76.92736927369273,8.1580738437832],[-76.93456934569345,8.159762421053088],[-76.94536945369454,8.16313957559285],[-76.94896948969489,8.16482815286274],[-76.94176941769418,8.129368030195195],[-76.91656916569166,8.114170834766256],[-76.8949689496895,8.117547989306019],[-76.8949689496895,8.136122339274735],[-76.83376833768337,8.136122339274735],[-76.83736837368373,8.127679452925321],[-76.84456844568446,8.117547989306019],[-76.84816848168481,8.107416525686716],[-76.84816848168481,8.09559648479754],[-76.83736837368373,8.09559648479754],[-76.83736837368373,8.098973639337302],[-76.82656826568265,8.10235079387708],[-76.82656826568265,8.09559648479754],[-76.85896858968589,8.082087866638489],[-76.85896858968589,8.075333557558949],[-76.85176851768517,8.073644980289075],[-76.84456844568446,8.071956403019186],[-76.83736837368373,8.061824939399884],[-76.83736837368373,8.06013636213001],[-76.83736837368373,8.058447784860121],[-76.83736837368373,8.055070630320358],[-76.84456844568446,8.06013636213001],[-76.84816848168481,8.061824939399884],[-76.85536855368554,8.063513516669772],[-76.86616866168661,8.061824939399884],[-76.85896858968589,8.05338205305047],[-76.84816848168481,8.046627743970944],[-76.83736837368373,8.039873434891419],[-76.83376833768337,8.028053394002242],[-76.85896858968589,8.03818485762153],[-76.8841688416884,8.046627743970944],[-76.90936909369093,8.043250589431182],[-76.92016920169202,8.028053394002242],[-76.92376923769237,8.022987662192591],[-76.92016920169202,8.021299084922703],[-76.91656916569166,8.021299084922703],[-76.93456934569345,7.963887457746694],[-76.90576905769058,7.930115912349038],[-76.85536855368554,7.91323013965021],[-76.79056790567905,7.911541562380336],[-76.77976779767798,7.91323013965021],[-76.7689676896769,7.916607294189973],[-76.7581675816758,7.923361603269512],[-76.75096750967509,7.931804489618926],[-76.74736747367473,7.94024737596834],[-76.74736747367473,7.947001685047866],[-76.75096750967509,7.952067416857517],[-76.75096750967509,7.962198880476805],[-76.74736747367473,7.970641766826219],[-76.74016740167401,7.9807732304455214],[-76.73656736567365,7.989216116794935],[-76.72936729367294,8.051693475780596],[-76.73296732967329,8.078710712098712],[-76.74376743767438,8.10235079387708],[-76.74736747367473,8.09559648479754],[-76.74736747367473,8.090530752987888],[-76.74736747367473,8.083776443908363],[-76.74376743767438,8.075333557558949],[-76.75096750967509,8.075333557558949],[-76.75456754567546,8.092219330257777],[-76.7581675816758,8.114170834766256],[-76.7581675816758,8.137810916544609],[-76.74736747367473,8.171582461942265],[-76.75096750967509,8.193533966450744],[-76.76536765367653,8.225616934578511],[-76.7689676896769,8.257699902706278],[-76.7689676896769,8.397851816106552],[-76.77616776167761,8.416426166075254],[-76.78696786967869,8.424869052424668],[-76.80136801368013,8.42993478423432],[-76.80856808568085,8.443443402393385],[-76.81216812168121,8.462017752362087],[-76.81936819368194,8.478903525060915],[-76.83736837368373,8.500855029569394],[-76.86976869768698,8.521117956807984],[-76.90576905769058,8.538003729506812],[-76.93456934569345,8.541380884046575],[-76.93456934569345,8.53462657496705],[-76.94896948969489,8.544758038586338],[-76.9309693096931,8.57008669763458],[-76.90576905769058,8.598792511222584],[-76.8949689496895,8.620744015731063],[-76.79416794167942,8.651138406588956],[-76.7689676896769,8.65282698385883],[-76.67176671766717,8.67984422017696],[-76.66096660966609,8.688287106526374],[-76.65376653766538,8.6950414156059],[-76.65376653766538,8.706861456495076],[-76.65376653766538,8.718681497384253],[-76.65016650166501,8.728812961003555],[-76.63936639366393,8.733878692813207],[-76.63936639366393,8.740633001892732],[-76.64656646566465,8.740633001892732],[-76.64656646566465,8.747387310972272],[-76.62856628566286,8.750764465512034],[-76.56016560165601,8.776093124560276],[-76.54576545765457,8.78453601090969],[-76.50256502565026,8.828439019926634],[-76.45216452164522,8.863899142594178],[-76.4269642696427,8.884162069832769],[-76.4269642696427,8.890916378912294],[-76.43416434164341,8.902736419801471],[-76.4269642696427,8.911179306150885],[-76.36576365763658,8.92468792430995],[-76.34416344163441,8.93988511973889],[-76.32256322563225,8.941573697008778],[-76.31536315363154,8.948328006088303],[-76.31176311763117,8.956770892437717],[-76.3009630096301,8.970279510596782],[-76.2649626496265,8.995608169645024],[-76.25776257762577,9.0074282105342],[-76.2649626496265,9.04288833320173],[-76.25416254162542,9.07159414678975],[-76.23616236162361,9.093545651298214],[-76.20016200162001,9.123940042156107],[-76.19296192961929,9.13407150577541],[-76.18576185761857,9.149268701204349],[-76.1749617496175,9.233697564698488],[-76.16776167761677,9.24720618285754],[-76.16416164161642,9.248894760127428],[-76.13536135361353,9.259026223746716],[-76.13176131761317,9.260714801016604],[-76.11736117361173,9.265780532826255],[-76.11376113761138,9.275911996445544],[-76.11376113761138,9.29448634641426],[-76.11016110161101,9.311372119113088],[-76.10656106561065,9.321503582732376],[-76.09576095760957,9.333323623621567],[-76.08496084960849,9.340077932701092],[-76.07776077760778,9.343455087240855],[-76.03816038160382,9.35696370539992],[-76.00576005760057,9.365406591749334],[-75.9769597695977,9.382292364448162],[-75.95175951759518,9.402555291686753],[-75.95175951759518,9.426195373465106],[-75.94455944559445,9.44139256889406],[-75.9229592295923,9.438015414354282],[-75.90855908559085,9.427883950734994],[-75.87615876158762,9.429572528004869],[-75.84375843758437,9.436326837084408],[-75.81855818558185,9.446458300703696],[-75.81135811358114,9.443081146163934],[-75.80415804158041,9.438015414354282],[-75.7969579695797,9.429572528004869],[-75.7969579695797,9.417752487115692],[-75.81135811358114,9.424506796195232],[-75.82575825758258,9.426195373465106],[-75.840158401584,9.422818218925343],[-75.85455854558545,9.412686755306055],[-75.84375843758437,9.405932446226515],[-75.840158401584,9.404243868956641],[-75.83295832958329,9.405932446226515],[-75.82575825758258,9.412686755306055],[-75.81855818558185,9.405932446226515],[-75.81495814958149,9.402555291686753],[-75.81135811358114,9.39917813714699],[-75.81135811358114,9.390735250797576],[-75.78255782557825,9.412686755306055],[-75.7609576095761,9.421129641655469],[-75.73935739357393,9.426195373465106],[-75.71775717757177,9.422818218925343],[-75.69975699756998,9.416063909845818],[-75.69615696156961,9.416063909845818],[-75.6709567095671,9.409309600766278],[-75.66015660156602,9.41944106438558],[-75.62055620556205,9.453212609783236],[-75.59535595355953,9.498804196070068],[-75.57735577355773,9.562970132325603],[-75.57735577355773,9.620381759501626],[-75.5881558815588,9.64908757308963],[-75.5989559895599,9.662596191248682],[-75.60615606156061,9.669350500328221],[-75.61695616956169,9.689613427566812],[-75.6349563495635,9.689613427566812],[-75.64575645756457,9.6997448911861],[-75.65655656556565,9.704810622995751],[-75.67815678156781,9.704810622995751],[-75.69255692556925,9.6997448911861],[-75.70335703357033,9.6913020048367],[-75.70335703357033,9.701433468455988],[-75.64935649356494,9.757156518362123],[-75.63855638556385,9.782485177410365],[-75.62415624156242,9.838208227316485],[-75.62415624156242,9.861848309094853],[-75.61695616956169,9.882111236333444],[-75.60615606156061,9.910817049921448],[-75.59535595355953,9.944588595319104],[-75.5881558815588,9.964851522557694],[-75.5881558815588,9.985114449796285],[-75.57735577355773,10.042526076972294],[-75.57375573755738,10.074609045100061],[-75.5881558815588,10.108380590497717],[-75.5881558815588,10.128643517736307],[-75.58455584555846,10.135397826815847],[-75.58095580955809,10.13877498135561],[-75.57375573755738,10.140463558625498],[-75.56655566555665,10.143840713165261],[-75.56295562955628,10.150595022244786],[-75.5521555215552,10.172546526753266],[-75.5449554495545,10.182677990372554],[-75.54135541355413,10.187743722182205],[-75.53775537755376,10.199563763071382],[-75.53775537755376,10.211383803960558],[-75.53775537755376,10.22151526757986],[-75.53415534155342,10.229958153929275],[-75.53055530555305,10.240089617548577],[-75.56295562955628,10.223203844849749],[-75.60255602556025,10.196186608531619],[-75.64215642156421,10.15397217678455],[-75.68535685356854,10.132020672276084],[-75.70335703357033,10.133709249545959],[-75.68895688956889,10.167480794943614],[-75.66015660156602,10.184366567642442],[-75.64575645756457,10.192809453991856],[-75.63855638556385,10.202940917611144],[-75.63135631356313,10.213072381230447],[-75.62415624156242,10.226580999389512],[-75.61695616956169,10.2367124630088],[-75.61335613356133,10.24853250389799],[-75.61695616956169,10.260352544787168],[-75.61335613356133,10.268795431136581],[-75.59175591755917,10.268795431136581],[-75.5989559895599,10.277238317485995],[-75.5989559895599,10.28568120383541],[-75.5989559895599,10.294124090184823],[-75.59175591755917,10.302566976534237],[-75.58455584555846,10.282304049295632],[-75.56295562955628,10.287369781105284],[-75.52695526955269,10.309321285613763],[-75.51615516155161,10.31945274923305],[-75.51615516155161,10.34140425374153],[-75.52335523355234,10.36842149005966],[-75.52335523355234,10.392061571838013],[-75.53055530555305,10.392061571838013],[-75.53775537755376,10.386995840028362],[-75.5449554495545,10.393750149107902],[-75.5521555215552,10.419078808156144],[-75.55935559355594,10.419078808156144],[-75.55935559355594,10.41063592180673],[-75.56295562955628,10.40388161272719],[-75.57015570155701,10.400504458187427],[-75.57735577355773,10.398815880917539],[-75.57375573755738,10.407258767266953],[-75.57015570155701,10.425833117235669],[-75.56655566555665,10.432587426315195],[-75.55935559355594,10.439341735394734],[-75.54855548555486,10.444407467204371],[-75.54135541355413,10.449473199014022],[-75.51255512555124,10.48155616714179],[-75.50175501755017,10.48831047622133],[-75.5089550895509,10.471424703522501],[-75.51975519755197,10.449473199014022],[-75.52335523355234,10.432587426315195],[-75.50535505355053,10.425833117235669],[-75.49455494554945,10.434276003585083],[-75.48735487354872,10.456227508093562],[-75.48735487354872,10.48155616714179],[-75.48735487354872,10.501819094380394],[-75.49455494554945,10.505196248920157],[-75.50175501755017,10.506884826190031],[-75.5089550895509,10.50857340345992],[-75.5089550895509,10.513639135269571],[-75.50535505355053,10.527147753428636],[-75.50175501755017,10.52883633069851],[-75.50535505355053,10.540656371587687],[-75.50535505355053,10.55078783520699],[-75.5089550895509,10.559230721556403],[-75.51975519755197,10.562607876096166],[-75.52335523355234,10.567673607905817],[-75.51975519755197,10.576116494255231],[-75.5089550895509,10.58624795787452],[-75.49815498154982,10.589625112414282],[-75.48735487354872,10.59131368968417],[-75.47655476554765,10.596379421493822],[-75.4621546215462,10.603133730573347],[-75.45495454954549,10.611576616922761],[-75.45495454954549,10.616642348732412],[-75.4621546215462,10.626773812351715],[-75.4621546215462,10.631839544161352],[-75.45855458554585,10.63352812143124],[-75.45135451354513,10.635216698701129],[-75.44775447754478,10.638593853240891],[-75.44055440554405,10.641971007780654],[-75.42975429754297,10.641971007780654],[-75.42255422554226,10.643659585050528],[-75.42255422554226,10.65547962593972],[-75.41895418954189,10.65547962593972],[-75.41175411754118,10.663922512289133],[-75.40455404554045,10.67574255317831],[-75.40455404554045,10.680808284987961],[-75.39735397353974,10.682496862257835],[-75.37215372153722,10.692628325877138],[-75.30735307353073,10.709514098575966],[-75.29655296552966,10.71795698492538],[-75.28575285752858,10.733154180354319],[-75.27855278552785,10.743285643973621],[-75.27495274952749,10.744974221243496],[-75.26775267752677,10.741597066703733],[-75.26415264152641,10.739908489433844],[-75.2569525695257,10.736531334894082],[-75.2569525695257,10.73146560308443],[-75.2569525695257,10.726399871274793],[-75.26055260552606,10.724711294004905],[-75.26415264152641,10.719645562195254],[-75.2569525695257,10.712891253115728],[-75.2569525695257,10.709514098575966],[-75.2569525695257,10.706136944036189],[-75.24975249752497,10.706136944036189],[-75.24255242552425,10.714579830385603],[-75.2209522095221,10.734842757624207],[-75.22815228152281,10.743285643973621],[-75.22815228152281,10.750039953053147],[-75.22815228152281,10.75848283940256],[-75.22815228152281,10.768614303021849],[-75.24615246152462,10.755105684862798],[-75.24975249752497,10.748351375783258],[-75.27135271352714,10.75848283940256],[-75.27495274952749,10.777057189371263],[-75.26775267752677,10.795631539339979],[-75.23175231752317,10.807451580229156],[-75.21735217352173,10.826025930197872],[-75.20655206552065,10.831091662007509],[-75.19215192151921,10.831091662007509],[-75.18135181351813,10.834468816547286],[-75.17055170551706,10.839534548356923],[-75.10935109351094,10.880060402834118],[-75.06975069750698,10.890191866453407],[-75.0481504815048,10.902011907342583],[-75.03735037350373,10.917209102771537],[-75.03735037350373,10.932406298200476],[-75.03375033750338,10.942537761819779],[-75.02655026550265,10.966177843598132],[-75.02295022950229,10.974620729947546],[-75.01575015750157,10.979686461757197],[-75.00135001350013,10.986440770836722],[-74.98334983349834,10.988129348106611],[-74.96174961749617,10.994883657186136],[-74.95094950949509,11.010080852615076],[-74.92574925749257,11.028655202583792],[-74.9221492214922,11.04554097528262],[-74.89694896948969,11.04554097528262],[-74.86094860948609,11.048918129822383],[-74.84654846548464,11.062426747981448],[-74.84654846548464,11.08100109795015],[-74.84654846548464,11.097886870648978],[-74.85014850148501,11.102952602458629],[-74.8429484294843,11.109706911538154],[-74.81774817748177,11.097886870648978],[-74.7961479614796,11.091132561569452],[-74.74214742147421,11.072558211600736],[-74.64494644946448,11.033720934393443],[-74.57294572945729,11.008392275345201],[-74.52254522545225,10.996572234456025],[-74.47214472144721,10.989817925376485],[-74.40374403744038,10.98306361629696],[-74.3389433894339,10.986440770836722],[-74.29934299342993,10.991506502646374],[-74.31374313743137,10.981375039027071],[-74.36054360543605,10.971243575407783],[-74.45774457744577,10.974620729947546],[-74.46854468544684,10.97630930721742],[-74.47934479344794,10.979686461757197],[-74.49014490144901,10.979686461757197],[-74.50454504545046,10.974620729947546],[-74.50454504545046,10.966177843598132],[-74.50454504545046,10.954357802708955],[-74.50454504545046,10.944226339089653],[-74.51174511745117,10.939160607280002],[-74.51894518945188,10.927340566390825],[-74.50454504545046,10.896946175532946],[-74.48294482944829,10.851354589246114],[-74.49734497344973,10.859797475595528],[-74.51174511745117,10.874994671024467],[-74.52614526145261,10.883437557373881],[-74.53694536945369,10.871617516484704],[-74.5441454414544,10.881748980103993],[-74.56574565745657,10.881748980103993],[-74.58014580145802,10.888503289183532],[-74.5909459094591,10.885126134643755],[-74.59814598145981,10.868240361944927],[-74.60174601746017,10.847977434706337],[-74.60534605346054,10.834468816547286],[-74.60534605346054,10.804074425689393],[-74.60534605346054,10.788877230260454],[-74.59814598145981,10.782122921180914],[-74.58374583745837,10.787188652990565],[-74.58014580145802,10.802385848419505],[-74.57294572945729,10.82096019838822],[-74.56574565745657,10.831091662007509],[-74.56574565745657,10.82096019838822],[-74.56214562145621,10.814205889308681],[-74.5549455494555,10.809140157499044],[-74.5441454414544,10.809140157499044],[-74.5441454414544,10.799008693879742],[-74.5441454414544,10.761859993942323],[-74.52974529745298,10.755105684862798],[-74.51174511745117,10.756794262132672],[-74.50094500945009,10.765237148482086],[-74.49374493744936,10.782122921180914],[-74.5081450814508,10.775368612101389],[-74.51534515345153,10.778745766641151],[-74.52254522545225,10.787188652990565],[-74.52254522545225,10.802385848419505],[-74.51894518945188,10.81589446657857],[-74.51174511745117,10.824337352927984],[-74.50454504545046,10.832780239277398],[-74.5081450814508,10.844600280166574],[-74.49014490144901,10.841223125626811],[-74.47574475744757,10.827714507467746],[-74.47214472144721,10.807451580229156],[-74.4649446494465,10.760171416672435],[-74.45774457744577,10.748351375783258],[-74.43974439744397,10.746662798513384],[-74.40374403744038,10.748351375783258],[-74.39654396543965,10.750039953053147],[-74.38574385743857,10.755105684862798],[-74.36774367743676,10.771991457561626],[-74.36054360543605,10.775368612101389],[-74.36054360543605,10.785500075720677],[-74.33174331743317,10.837845971087049],[-74.33174331743317,10.844600280166574],[-74.33174331743317,10.871617516484704],[-74.32094320943209,10.89356902099317],[-74.31734317343174,10.902011907342583],[-74.31374313743137,10.907077639152234],[-74.29934299342993,10.923963411851062],[-74.29574295742957,10.929029143660713],[-74.28854288542885,10.96786642086802],[-74.28134281342813,10.989817925376485],[-74.21654216542166,11.079312520680276],[-74.21654216542166,11.08775540702969],[-74.21654216542166,11.099575447918866],[-74.23094230942309,11.116461220617694],[-74.23454234542345,11.124904106967108],[-74.23454234542345,11.136724147856285],[-74.23094230942309,11.153609920555112],[-74.22734227342274,11.162052806904526],[-74.23094230942309,11.172184270523815],[-74.23814238142381,11.190758620492531],[-74.24174241742418,11.200890084111819],[-74.24174241742418,11.204267238651596],[-74.23094230942309,11.21271012500101],[-74.22734227342274,11.217775856810647],[-74.23094230942309,11.222841588620298],[-74.23094230942309,11.22621874316006],[-74.23454234542345,11.22790732042995],[-74.23454234542345,11.231284474969712],[-74.23454234542345,11.241415938589014],[-74.22734227342274,11.251547402208303],[-74.21654216542166,11.26843317490713],[-74.20934209342093,11.27518748398667],[-74.20574205742057,11.276876061256544],[-74.20214202142022,11.281941793066196],[-74.20214202142022,11.292073256685498],[-74.18774187741877,11.317401915733726],[-74.17334173341733,11.317401915733726],[-74.15894158941589,11.315713338463851],[-74.15174151741518,11.319090493003614],[-74.15174151741518,11.344419152051856],[-74.14454144541445,11.344419152051856],[-74.14454144541445,11.33766484297233],[-74.14454144541445,11.33259911116268],[-74.13734137341373,11.324156224813265],[-74.130141301413,11.33766484297233],[-74.12654126541265,11.344419152051856],[-74.12294122941229,11.341041997512093],[-74.11934119341193,11.341041997512093],[-74.11934119341193,11.33766484297233],[-74.11214112141121,11.33766484297233],[-74.11214112141121,11.357927770210921],[-74.10134101341013,11.349484883861507],[-74.0941409414094,11.334287688432553],[-74.08334083340833,11.33091053389279],[-74.07254072540725,11.335976265702442],[-74.06894068940689,11.346107729321744],[-74.06534065340654,11.351173461131381],[-74.05814058140581,11.344419152051856],[-74.0509405094051,11.344419152051856],[-74.04734047340473,11.351173461131381],[-74.04374043740437,11.354550615671158],[-74.03654036540365,11.356239192941032],[-74.02934029340292,11.357927770210921],[-74.0041400414004,11.354550615671158],[-73.98613986139861,11.347796306591619],[-73.9681396813968,11.335976265702442],[-73.95013950139501,11.320779070273502],[-73.94293942939429,11.317401915733726],[-73.89613896138961,11.307270452114437],[-73.86373863738638,11.288696102145721],[-73.82773827738276,11.276876061256544],[-73.70533705337053,11.26843317490713],[-73.59373593735937,11.276876061256544],[-73.56493564935649,11.276876061256544],[-73.40293402934029,11.276876061256544],[-73.29133291332913,11.293761833955372],[-73.28413284132841,11.298827565765023],[-73.27693276932769,11.307270452114437],[-73.24453244532445,11.33091053389279],[-73.21933219332193,11.344419152051856],[-73.21573215732157,11.349484883861507],[-73.20853208532085,11.357927770210921],[-73.19413194131941,11.381567851989274],[-73.19053190531905,11.384945006529037],[-73.17973179731797,11.3883221610688],[-73.16893168931689,11.396765047418214],[-73.15453154531545,11.417027974656818],[-73.14373143731437,11.425470861006218],[-73.11133111331112,11.440668056435172],[-73.05373053730537,11.494702529071418],[-72.93492934929348,11.557179888057078],[-72.75852758527584,11.697331801457338],[-72.74052740527405,11.70746326507664],[-72.70452704527045,11.720971883235691],[-72.64332643326433,11.732791924124882],[-72.62892628926289,11.741234810474296],[-72.59652596525964,11.761497737712887],[-72.57852578525785,11.756432005903235],[-72.55692556925568,11.766563469522524],[-72.53532535325353,11.781760664951477],[-72.510125101251,11.788514974031003],[-72.45252452524525,11.791892128570765],[-72.43452434524345,11.795269283110542],[-72.41652416524165,11.80540074672983],[-72.39132391323913,11.825663673968421],[-72.35892358923589,11.834106560317835],[-72.31572315723157,11.864500951175728],[-72.26172261722617,11.886452455684207],[-72.25092250922509,11.901649651113146],[-72.23292232922329,11.920224001081849],[-72.22932229322292,11.930355464701151],[-72.22572225722257,11.938798351050565],[-72.2149221492215,11.974258473718109],[-72.1789217892179,12.02998152362423],[-72.1681216812168,12.063753069021885],[-72.14652146521465,12.09245888260989],[-72.13932139321393,12.104278923499066],[-72.13572135721357,12.124541850737657],[-72.14292142921428,12.180264900643792],[-72.14652146521465,12.200527827882382],[-72.15012150121501,12.208970714231796],[-72.16092160921609,12.215725023311322],[-72.1681216812168,12.222479332390861],[-72.17172171721717,12.220790755120973],[-72.17172171721717,12.234299373280038],[-72.16092160921609,12.242742259629452],[-72.13932139321393,12.256250877788517],[-72.10692106921069,12.24443083689934],[-72.0061200612006,12.263005186868043],[-71.970119701197,12.254562300518629],[-71.97371973719737,12.235987950549926],[-72.01692016920168,12.193773518802857],[-71.99891998919989,12.187019209723317],[-71.98451984519845,12.161690550675075],[-71.96651966519664,12.153247664325662],[-71.93771937719377,12.166756282484727],[-71.93411934119341,12.17013343702449],[-71.93051930519304,12.18195347791368],[-71.92331923319233,12.193773518802857],[-71.9161191611916,12.20221640515227],[-71.90531905319052,12.207282136961908],[-71.89091890918908,12.208970714231796],[-71.880118801188,12.207282136961908],[-71.86931869318693,12.208970714231796],[-71.86211862118621,12.21741360058121],[-71.86931869318693,12.227545064200513],[-71.87651876518765,12.2376765278198],[-71.880118801188,12.246119414169215],[-71.86931869318693,12.256250877788517],[-71.880118801188,12.264693764137931],[-71.88731887318873,12.271448073217456],[-71.89451894518945,12.278202382296982],[-71.90531905319052,12.283268114106633],[-71.91971919719197,12.283268114106633],[-71.93051930519304,12.281579536836759],[-71.94131941319412,12.276513805027108],[-71.94851948519485,12.269759495947568],[-71.95211952119521,12.269759495947568],[-71.95931959319593,12.283268114106633],[-71.9161191611916,12.313662504964526],[-71.87651876518765,12.344056895822419],[-71.87651876518765,12.349122627632056],[-71.87291872918729,12.362631245791121],[-71.86571865718656,12.366008400330884],[-71.84771847718477,12.36431982306101],[-71.8441184411844,12.366008400330884],[-71.82971829718296,12.376139863950186],[-71.82251822518225,12.37782844122006],[-71.80811808118081,12.372762709410424],[-71.82611826118261,12.362631245791121],[-71.84051840518404,12.352499782171833],[-71.8441184411844,12.33730258674288],[-71.82971829718296,12.323793968583814],[-71.82251822518225,12.320416814044052],[-71.81891818918189,12.318728236774177],[-71.80451804518044,12.323793968583814],[-71.8009180091801,12.327171123123591],[-71.80451804518044,12.330548277663354],[-71.80451804518044,12.335614009473005],[-71.8009180091801,12.33730258674288],[-71.78651786517865,12.33730258674288],[-71.78291782917829,12.33730258674288],[-71.76491764917648,12.347434050362182],[-71.75051750517505,12.355876936711596],[-71.74331743317433,12.367696977600772],[-71.73971739717396,12.386271327569474],[-71.74331743317433,12.387959904839363],[-71.74691746917469,12.387959904839363],[-71.75051750517505,12.391337059379126],[-71.74691746917469,12.39977994572854],[-71.74331743317433,12.40653425480808],[-71.73251732517325,12.409911409347842],[-71.72171721717217,12.413288563887605],[-71.71451714517144,12.413288563887605],[-71.7181171811718,12.396402791188777],[-71.71451714517144,12.386271327569474],[-71.70371703717036,12.379517018489949],[-71.70011700117001,12.366008400330884],[-71.69291692916929,12.366008400330884],[-71.68931689316892,12.369385554870647],[-71.68571685716857,12.376139863950186],[-71.68571685716857,12.382894173029712],[-71.68931689316892,12.386271327569474],[-71.69651696516965,12.387959904839363],[-71.69291692916929,12.393025636649014],[-71.68211682116821,12.398091368458665],[-71.67851678516784,12.39977994572854],[-71.66771667716677,12.40653425480808],[-71.65331653316532,12.409911409347842],[-71.64251642516425,12.416665718427367],[-71.63171631716317,12.42679718204667],[-71.64251642516425,12.42679718204667],[-71.65331653316532,12.421731450237019],[-71.6641166411664,12.416665718427367],[-71.66771667716677,12.413288563887605],[-71.67851678516784,12.416665718427367],[-71.67851678516784,12.425108604776781],[-71.66771667716677,12.433551491126195],[-71.66051660516605,12.44030580020572],[-71.67131671316713,12.44030580020572],[-71.67851678516784,12.438617222935846],[-71.68931689316892,12.433551491126195],[-71.69291692916929,12.42679718204667],[-71.69291692916929,12.443682954745498],[-71.68931689316892,12.448748686555135],[-71.68571685716857,12.453814418364786],[-71.70011700117001,12.44706010928526],[-71.72531725317253,12.423420027506893],[-71.73611736117361,12.413288563887605],[-71.73971739717396,12.42004287296713],[-71.72891728917288,12.438617222935846],[-71.71451714517144,12.453814418364786],[-71.69651696516965,12.463945881984088],[-71.6749167491675,12.46901161379374],[-71.65691656916569,12.465634459253963],[-71.62451624516245,12.452125841094912],[-71.60291602916028,12.44706010928526],[-71.53091530915309,12.44706010928526],[-71.51291512915128,12.443682954745498],[-71.49131491314913,12.433551491126195],[-71.45891458914589,12.413288563887605],[-71.44451444514445,12.39977994572854],[-71.43731437314372,12.396402791188777],[-71.42651426514264,12.393025636649014],[-71.39051390513904,12.393025636649014],[-71.37971379713797,12.389648482109251],[-71.36171361713616,12.374451286680298],[-71.340113401134,12.367696977600772],[-71.29691296912969,12.359254091251358],[-71.26091260912608,12.34236831855253],[-71.24291242912429,12.327171123123591],[-71.23211232112321,12.310285350424763],[-71.22851228512285,12.305219618615112],[-71.22131221312213,12.296776732265698],[-71.21771217712177,12.278202382296982],[-71.160111601116,12.176887746104029],[-71.15291152911529,12.149870509785899],[-71.11331113311132,12.094147459879778],[-71.10611106111061,12.075573109911062],[-71.11331113311132,12.051933028132709],[-71.12771127711277,12.031670100894118],[-71.13851138511384,12.016472905465164],[-71.16371163711636,11.996209978226574],[-71.23571235712356,11.959061278289155],[-71.25371253712537,11.937109773780676],[-71.26811268112681,11.928666887431262],[-71.2861128611286,11.923601155621625],[-71.30051300513004,11.920224001081849],[-71.3041130411304,11.911781114732449],[-71.32211322113221,11.857746642096203],[-71.32571325713256,11.849303755746789],[-71.340113401134,11.825663673968421],[-71.34371343713437,11.807089323999719],[-71.33651336513364,11.788514974031003],[-71.36531365313652,11.786826396761128],[-71.37251372513725,11.783449242221351],[-71.3761137611376,11.775006355871938],[-71.3761137611376,11.766563469522524],[-71.37971379713797,11.75812058317311],[-71.38691386913868,11.754743428633347],[-71.40851408514085,11.751366274093584],[-71.4661146611466,11.720971883235691],[-71.50571505715057,11.709151842346515],[-71.6749167491675,11.685511760568161],[-71.86211862118621,11.628100133392152],[-71.90171901719017,11.621345824312613],[-71.9269192691927,11.612902937963199],[-71.94851948519485,11.601082897074022],[-71.95931959319593,11.590951433454734],[-71.970119701197,11.55549131078719],[-71.970119701197,11.511588301770246],[-71.93771937719377,11.381567851989274],[-71.85851858518585,11.217775856810647],[-71.79731797317973,11.131658416046633],[-71.76851768517685,11.106329756998392],[-71.65331653316532,11.040475243472969],[-71.63891638916388,11.028655202583792],[-71.6281162811628,11.015146584424727],[-71.62451624516245,11.001637966265662],[-71.63171631716317,10.998260811725899],[-71.67851678516784,10.988129348106611],[-71.6749167491675,11.00332654353555],[-71.68211682116821,11.016835161694615],[-71.69651696516965,11.02527804804403],[-71.72531725317253,11.03034377985368],[-71.73611736117361,11.033720934393443],[-71.74331743317433,11.035409511663318],[-71.74691746917469,11.032032357123555],[-71.75051750517505,11.026966625313904],[-71.75771757717577,11.021900893504267],[-71.76851768517685,11.015146584424727],[-71.76131761317613,11.00332654353555],[-71.72531725317253,10.971243575407783],[-71.71451714517144,10.957734957248718],[-71.71451714517144,10.945914916359541],[-71.7181171811718,10.932406298200476],[-71.72171721717217,10.918897680041411],[-71.71091710917109,10.87837182556423],[-71.69291692916929,10.837845971087049],[-71.6749167491675,10.802385848419505],[-71.64971649716497,10.770302880291737],[-71.61731617316173,10.743285643973621],[-71.57771577715776,10.721334139465142],[-71.58491584915849,10.699382634956663],[-71.59571595715957,10.658856780479482],[-71.61011610116101,10.638593853240891],[-71.60651606516065,10.630150966891478],[-71.60291602916028,10.620019503272175],[-71.60651606516065,10.608199462382998],[-71.61011610116101,10.598067998763696],[-71.60651606516065,10.581182226064882],[-71.61371613716136,10.560919298826278],[-71.62451624516245,10.538967794317813],[-71.63171631716317,10.518704867079222],[-71.6281162811628,10.462981817173088],[-71.6281162811628,10.457916085363436],[-71.6281162811628,10.454538930823674],[-71.63891638916388,10.44609604447426],[-71.64611646116461,10.442718889934497],[-71.67131671316713,10.432587426315195],[-71.69291692916929,10.408947344536841],[-71.69651696516965,10.405570189997079],[-71.71451714517144,10.400504458187427],[-71.72891728917288,10.392061571838013],[-71.7541175411754,10.371798644599423],[-71.77931779317792,10.34140425374153],[-71.83691836918369,10.235023885738926],[-71.89091890918908,10.162415063133963],[-71.89811898118981,10.13877498135561],[-71.91251912519125,10.128643517736307],[-71.95211952119521,10.11851205411702],[-71.970119701197,10.105003435957954],[-71.98091980919808,10.088117663259126],[-71.99171991719916,10.067854736020536],[-71.99891998919989,10.025640304273466],[-72.02412024120241,9.985114449796285],[-72.0421204212042,9.92939139989015],[-72.11052110521105,9.856782577285202],[-72.12492124921249,9.826388186427309],[-72.12132121321213,9.812879568268244],[-72.10332103321034,9.772353713791063],[-72.0889208892089,9.755467941092235],[-72.02052020520205,9.686236273027049],[-71.99891998919989,9.654153304899268],[-71.94851948519485,9.541018627817138],[-71.96651966519664,9.551150091436426],[-71.97371973719737,9.569724441405143],[-71.97731977319773,9.591675945913607],[-71.98811988119881,9.610250295882324],[-71.99531995319953,9.603495986802798],[-71.99171991719916,9.600118832263021],[-71.99171991719916,9.596741677723259],[-71.98811988119881,9.589987368643733],[-71.99531995319953,9.588298791373845],[-72.00252002520025,9.584921636834082],[-72.00252002520025,9.58154448229432],[-72.00972009720097,9.576478750484668],[-71.99171991719916,9.569724441405143],[-71.97731977319773,9.556215823246077],[-71.96651966519664,9.537641473277361],[-71.95931959319593,9.51737854603877],[-71.96651966519664,9.498804196070068],[-71.98451984519845,9.49711561880018],[-72.00252002520025,9.507247082419482],[-72.01692016920168,9.520755700578547],[-72.02052020520205,9.502181350609831],[-72.00972009720097,9.483607000641115],[-71.99531995319953,9.459966918862762],[-71.98091980919808,9.470098382482064],[-71.95571955719556,9.490361309720655],[-71.93771937719377,9.500492773339943],[-71.9269192691927,9.480229846101352],[-71.91971919719197,9.480229846101352],[-71.91971919719197,9.500492773339943],[-71.90891908919089,9.493738464260417],[-71.880118801188,9.463344073402524],[-71.87291872918729,9.456589764322999],[-71.86211862118621,9.453212609783236],[-71.85131851318513,9.449835455243473],[-71.8441184411844,9.439703991624171],[-71.87651876518765,9.444769723433822],[-71.90171901719017,9.43463825981452],[-71.91251912519125,9.412686755306055],[-71.90531905319052,9.383980941718036],[-71.89451894518945,9.41944106438558],[-71.89091890918908,9.426195373465106],[-71.83331833318333,9.426195373465106],[-71.80811808118081,9.410998178036166],[-71.78651786517865,9.382292364448162],[-71.76131761317613,9.365406591749334],[-71.73611736117361,9.383980941718036],[-71.73971739717396,9.368783746289097],[-71.73971739717396,9.363718014479446],[-71.72891728917288,9.355275128130032],[-71.72891728917288,9.348520819050506],[-71.73251732517325,9.343455087240855],[-71.74691746917469,9.343455087240855],[-71.74691746917469,9.33670077816133],[-71.73611736117361,9.324880737272153],[-71.73611736117361,9.307994964573325],[-71.73971739717396,9.289420614604609],[-71.74691746917469,9.27422341917567],[-71.75771757717577,9.282666305525083],[-71.77931779317792,9.269157687366018],[-71.81531815318152,9.233697564698488],[-71.80811808118081,9.225254678349074],[-71.79731797317973,9.233697564698488],[-71.78651786517865,9.240451873778014],[-71.77571775717757,9.226943255618949],[-71.76851768517685,9.230320410158711],[-71.76131761317613,9.233697564698488],[-71.75771757717577,9.238763296508125],[-71.7541175411754,9.24720618285754],[-71.74331743317433,9.237074719238251],[-71.74691746917469,9.226943255618949],[-71.75051750517505,9.21681179199966],[-71.73611736117361,9.206680328380358],[-71.7541175411754,9.20499175111047],[-71.75051750517505,9.191483132951419],[-71.73611736117361,9.164465896633288],[-71.75771757717577,9.139137237585047],[-71.76131761317613,9.130694351235633],[-71.75771757717577,9.120562887616344],[-71.75051750517505,9.115497155806693],[-71.74331743317433,9.113808578536805],[-71.73971739717396,9.10705426945728],[-71.73611736117361,9.10705426945728],[-71.72171721717217,9.100299960377754],[-71.71451714517144,9.093545651298214],[-71.7181171811718,9.090168496758452],[-71.7181171811718,9.0851027649488],[-71.70731707317073,9.076659878599386],[-71.68571685716857,9.061462683170447],[-71.64611646116461,9.04964264228127],[-71.60291602916028,9.04288833320173],[-71.55611556115561,9.041199755931856],[-71.51651516515165,9.04964264228127],[-71.37251372513725,9.093545651298214],[-71.27531275312752,9.135760083045284],[-71.23931239312392,9.156023010283874],[-71.22131221312213,9.179663092062242],[-71.20691206912069,9.2320089874286],[-71.18891188911888,9.24720618285754],[-71.160111601116,9.27928915098532],[-71.15291152911529,9.287732037334735],[-71.14211142111421,9.291109191874497],[-71.11691116911169,9.29448634641426],[-71.10971109711097,9.297863500954023],[-71.10251102511025,9.302929232763674],[-71.09531095310953,9.306306387303437],[-71.0881108811088,9.307994964573325],[-71.07371073710736,9.313060696382962],[-71.06291062910628,9.326569314542027],[-71.05571055710557,9.345143664510744],[-71.05571055710557,9.363718014479446],[-71.07371073710736,9.41944106438558],[-71.08091080910809,9.502181350609831],[-71.08451084510845,9.520755700578547],[-71.0881108811088,9.534264318737598],[-71.09171091710917,9.5443957823569],[-71.09171091710917,9.556215823246077],[-71.08451084510845,9.562970132325603],[-71.06651066510665,9.589987368643733],[-71.06651066510665,9.60180740953291],[-71.04851048510484,9.672727654867984],[-71.04851048510484,9.720007818424705],[-71.04131041310413,9.72676212750423],[-71.03771037710376,9.733516436583756],[-71.03411034110341,9.740270745663295],[-71.03411034110341,9.743647900203058],[-71.04131041310413,9.760533672901886],[-71.05571055710557,9.775730868330825],[-71.07011070110701,9.792616641029653],[-71.08451084510845,9.81119099099837],[-71.09171091710917,9.836519650046611],[-71.08091080910809,9.838208227316485],[-71.07371073710736,9.841585381856248],[-71.07011070110701,9.850028268205662],[-71.07371073710736,9.858471154555076],[-71.09171091710917,9.877045504523792],[-71.10971109711097,9.905751318111797],[-71.16371163711636,9.97160583163722],[-71.18531185311852,9.985114449796285],[-71.20691206912069,9.980048717986634],[-71.22851228512285,10.069543313290424],[-71.24651246512465,10.115134899577257],[-71.26811268112681,10.152283599514675],[-71.30771307713077,10.191120876721968],[-71.32931329313293,10.206318072150921],[-71.36531365313652,10.219826690309972],[-71.37251372513725,10.2367124630088],[-71.38331383313833,10.275549740216107],[-71.39411394113941,10.289058358375172],[-71.41571415714157,10.312698440153525],[-71.4229142291423,10.343092831011418],[-71.43371433714337,10.359978603710246],[-71.45171451714516,10.385307262758488],[-71.4661146611466,10.395438726377776],[-71.46971469714697,10.402193035457316],[-71.47331473314733,10.412324499076604],[-71.47331473314733,10.420767385426018],[-71.46971469714697,10.437653158124846],[-71.46251462514624,10.48831047622133],[-71.4661146611466,10.501819094380394],[-71.48051480514805,10.515327712539445],[-71.52731527315272,10.54403352612745],[-71.54171541715417,10.564296453366055],[-71.54171541715417,10.589625112414282],[-71.5381153811538,10.598067998763696],[-71.5021150211502,10.626773812351715],[-71.49851498514985,10.628462389621589],[-71.50571505715057,10.630150966891478],[-71.53451534515345,10.67574255317831],[-71.53451534515345,10.685874016797598],[-71.53451534515345,10.699382634956663],[-71.52731527315272,10.726399871274793],[-71.52731527315272,10.741597066703733],[-71.53091530915309,10.75341710759291],[-71.5381153811538,10.760171416672435],[-71.55611556115561,10.775368612101389],[-71.56691566915669,10.792254384800216],[-71.57411574115741,10.799008693879742],[-71.58491584915849,10.802385848419505],[-71.58491584915849,10.809140157499044],[-71.50931509315093,10.812517312038807],[-71.47691476914768,10.809140157499044],[-71.44451444514445,10.795631539339979],[-71.43371433714337,10.819271621118332],[-71.44091440914409,10.839534548356923],[-71.44811448114481,10.85642032105575],[-71.45171451714516,10.871617516484704],[-71.44811448114481,10.886814711913644],[-71.4229142291423,10.902011907342583],[-71.4121141211412,10.918897680041411],[-71.43731437314372,10.918897680041411],[-71.44811448114481,10.9205862573113],[-71.45891458914589,10.92565198912095],[-71.46971469714697,10.934094875470365],[-71.48771487714876,10.954357802708955],[-71.5021150211502,10.959423534518606],[-71.45891458914589,10.974620729947546],[-71.41931419314193,10.979686461757197],[-71.33651336513364,10.981375039027071],[-71.29331293312933,10.986440770836722],[-71.28251282512825,10.991506502646374],[-71.17451174511744,11.033720934393443],[-71.13131131311313,11.06073817071156],[-71.12051120511205,11.069181057060973],[-71.06291062910628,11.091132561569452],[-70.86850868508685,11.195824352302182],[-70.71370713707137,11.236350206779363],[-70.68490684906848,11.24817024766854],[-70.66330663306633,11.238038784049252],[-70.63090630906309,11.239727361319126],[-70.51570515705157,11.253235979478191],[-70.49770497704976,11.26336744309748],[-70.47970479704797,11.288696102145721],[-70.49050490504905,11.285318947605958],[-70.49770497704976,11.278564638526433],[-70.50490504905049,11.271810329446893],[-70.50850508505084,11.261678865827605],[-70.5121051210512,11.287007524875847],[-70.48690486904869,11.29545041122526],[-70.43290432904328,11.287007524875847],[-70.40050400504005,11.297138988495135],[-70.32490324903249,11.33259911116268],[-70.28890288902889,11.356239192941032],[-70.26730267302672,11.356239192941032],[-70.23130231302312,11.351173461131381],[-70.18090180901808,11.376502120179623],[-70.15930159301593,11.401830779227865],[-70.14490144901448,11.428848015545995],[-70.14490144901448,11.447422365514697],[-70.14490144901448,11.454176674594237],[-70.15210152101521,11.460930983673762],[-70.16290162901629,11.46261956094365],[-70.15570155701556,11.469373870023176],[-70.14130141301412,11.469373870023176],[-70.12690126901269,11.46261956094365],[-70.11970119701196,11.449110942784586],[-70.10890108901089,11.438979479165283],[-70.09810098100981,11.428848015545995],[-70.08730087300873,11.433913747355632],[-70.08370083700837,11.444045210974934],[-70.080100801008,11.457553829134],[-70.06930069300692,11.457553829134],[-70.05850058500585,11.45079952005446],[-70.04770047700477,11.447422365514697],[-70.04050040500405,11.440668056435172],[-70.03690036900369,11.440668056435172],[-70.03330033300333,11.45079952005446],[-70.03330033300333,11.459242406403874],[-70.03690036900369,11.465996715483413],[-70.04050040500405,11.471062447293065],[-70.04770047700477,11.474439601832827],[-70.04770047700477,11.47781675637259],[-70.04770047700477,11.481193910912353],[-70.04050040500405,11.487948219991878],[-70.05490054900548,11.49301395180153],[-70.05490054900548,11.506522569960595],[-70.09810098100981,11.52003118811966],[-70.11970119701196,11.521719765389534],[-70.12330123301233,11.525096919929311],[-70.11970119701196,11.530162651738948],[-70.11250112501125,11.530162651738948],[-70.09810098100981,11.531851229008836],[-70.10530105301052,11.538605538088362],[-70.1161011610116,11.543671269898013],[-70.13050130501304,11.547048424437776],[-70.14130141301412,11.553802733517315],[-70.16290162901629,11.568999928946255],[-70.12330123301233,11.558868465326952],[-70.09450094500944,11.543671269898013],[-70.06930069300692,11.530162651738948],[-70.05130051300513,11.521719765389534],[-70.04050040500405,11.518342610849771],[-70.02610026100261,11.51327687904012],[-70.0081000810008,11.514965456310009],[-69.99009990099901,11.511588301770246],[-69.97569975699757,11.503145415420832],[-69.95769957699576,11.509899724500357],[-69.94689946899469,11.52003118811966],[-69.92529925299253,11.51327687904012],[-69.92169921699217,11.49807968361118],[-69.91089910899109,11.49301395180153],[-69.90009900099001,11.496391106341292],[-69.89289892898928,11.47781675637259],[-69.87489874898749,11.469373870023176],[-69.85689856898568,11.459242406403874],[-69.8460984609846,11.43560232462552],[-69.81369813698137,11.425470861006218],[-69.79569795697957,11.437290901895409],[-69.78849788497885,11.45079952005446],[-69.75969759697597,11.467685292753288],[-69.74889748897489,11.481193910912353],[-69.74529745297453,11.503145415420832],[-69.76329763297633,11.536916960818488],[-69.75969759697597,11.557179888057078],[-69.77049770497705,11.568999928946255],[-69.78489784897849,11.616280092502976],[-69.7920979209792,11.64498590609098],[-69.81729817298172,11.693954646917575],[-69.82089820898209,11.693954646917575],[-69.82449824498245,11.675380296948859],[-69.83169831698316,11.677068874218747],[-69.84249842498424,11.68720033783805],[-69.84969849698497,11.693954646917575],[-69.86409864098641,11.690577492377813],[-69.87129871298713,11.683823183298273],[-69.87489874898749,11.677068874218747],[-69.87849878498784,11.673691719678985],[-69.92889928899288,11.658494524250031],[-69.95049950499505,11.656805946980157],[-69.94689946899469,11.673691719678985],[-69.98649986499865,11.655117369710268],[-69.99729997299973,11.653428792440394],[-70.02610026100261,11.651740215170506],[-70.04050040500405,11.648363060630743],[-70.05130051300513,11.641608751551217],[-70.07290072900729,11.631477287931915],[-70.13770137701377,11.626411556122264],[-70.18810188101881,11.60277147434391],[-70.21330213302133,11.609525783423436],[-70.23130231302312,11.628100133392152],[-70.23490234902349,11.653428792440394],[-70.22770227702277,11.66018310151992],[-70.21690216902168,11.672003142409096],[-70.21330213302133,11.68044602875851],[-70.21330213302133,11.68720033783805],[-70.21330213302133,11.692266069647687],[-70.21690216902168,11.695643224187464],[-70.22050220502204,11.7007089559971],[-70.22050220502204,11.727726192315231],[-70.22050220502204,11.729414769585105],[-70.23130231302312,11.741234810474296],[-70.23490234902349,11.747989119553822],[-70.22770227702277,11.744611965014059],[-70.21330213302133,11.73785765593452],[-70.2061020610206,11.734480501394756],[-70.2061020610206,11.763186314982761],[-70.20970209702097,11.775006355871938],[-70.21330213302133,11.783449242221351],[-70.22410224102241,11.788514974031003],[-70.22770227702277,11.781760664951477],[-70.23130231302312,11.7699406240623],[-70.2421024210242,11.761497737712887],[-70.24570245702456,11.780072087681589],[-70.26730267302672,11.817220787619007],[-70.27090270902708,11.822286519428658],[-70.27810278102781,11.825663673968421],[-70.27810278102781,11.830729405778072],[-70.28170281702816,11.850992333016663],[-70.28530285302853,11.857746642096203],[-70.29250292502924,11.859435219366077],[-70.30330303303033,11.857746642096203],[-70.2961029610296,11.871255260255253],[-70.28890288902889,11.908403960192672],[-70.28890288902889,11.923601155621625],[-70.28530285302853,11.940486928320453],[-70.26370263702637,11.970881319178332],[-70.260102601026,11.991144246416923],[-70.25290252902529,12.006341441845876],[-70.22410224102241,12.041801564513406],[-70.21330213302133,12.05699875994236],[-70.20970209702097,12.073884532641188],[-70.20970209702097,12.102590346229192],[-70.2061020610206,12.11272180984848],[-70.16290162901629,12.11272180984848],[-70.14490144901448,12.117787541658132],[-70.12690126901269,12.129607582547308],[-70.06570065700657,12.18195347791368],[-70.04050040500405,12.193773518802857],[-70.01890018900188,12.198839250612494],[-70.00450004500044,12.193773518802857],[-69.99009990099901,12.185330632453443],[-69.94329943299432,12.17519916883414],[-69.92529925299253,12.160001973405201],[-69.83529835298353,12.01478432819529],[-69.82089820898209,11.974258473718109],[-69.81729817298172,11.93204404197104],[-69.81729817298172,11.845926601207012],[-69.81009810098101,11.803712169459956],[-69.74889748897489,11.631477287931915],[-69.7020970209702,11.54029411535825],[-69.6660966609666,11.49807968361118],[-69.62289622896229,11.467685292753288],[-69.58689586895869,11.46261956094365],[-69.56169561695617,11.47781675637259],[-69.53649536495365,11.49807968361118],[-69.50049500495004,11.508211147230483],[-69.4140941409414,11.496391106341292],[-69.3780937809378,11.494702529071418],[-69.33489334893349,11.508211147230483],[-69.3060930609306,11.526785497199185],[-69.29169291692916,11.53353980627871],[-69.27009270092701,11.5352283835486],[-69.25929259292593,11.53353980627871],[-69.24129241292412,11.518342610849771],[-69.23049230492305,11.514965456310009],[-69.19449194491945,11.516654033579897],[-69.18369183691837,11.514965456310009],[-69.12249122491224,11.489636797261767],[-69.10809108091081,11.491325374531655],[-69.10449104491045,11.481193910912353],[-69.090090900909,11.469373870023176],[-69.07569075690756,11.459242406403874],[-69.06129061290612,11.454176674594237],[-69.02169021690216,11.445733788244823],[-68.86328863288632,11.452488097324348],[-68.84528845288453,11.447422365514697],[-68.82728827288273,11.43560232462552],[-68.79488794887949,11.40014220195799],[-68.77688776887769,11.386633583798925],[-68.75528755287553,11.374813542909749],[-68.71928719287193,11.361304924750684],[-68.70488704887049,11.357927770210921],[-68.69048690486905,11.356239192941032],[-68.68328683286832,11.361304924750684],[-68.67968679686797,11.357927770210921],[-68.65448654486545,11.347796306591619],[-68.65088650886509,11.341041997512093],[-68.640086400864,11.322467647543377],[-68.61488614886149,11.303893297574675],[-68.53928539285393,11.265056020367368],[-68.51768517685177,11.249858824938428],[-68.49968499684996,11.2329730522396],[-68.49248492484925,11.217775856810647],[-68.48528485284852,11.207644393191359],[-68.41688416884169,11.178938579603354],[-68.41328413284133,11.189070043222642],[-68.40968409684096,11.194135775032294],[-68.40968409684096,11.200890084111819],[-68.40248402484025,11.200890084111819],[-68.39888398883988,11.194135775032294],[-68.39168391683917,11.178938579603354],[-68.39168391683917,11.172184270523815],[-68.39888398883988,11.153609920555112],[-68.3880838808388,11.12828126150687],[-68.34848348483484,11.072558211600736],[-68.28728287282873,10.952669225439067],[-68.280082800828,10.92565198912095],[-68.28728287282873,10.912143370961886],[-68.29448294482944,10.917209102771537],[-68.30528305283052,10.927340566390825],[-68.31968319683196,10.935783452740239],[-68.3340833408334,10.939160607280002],[-68.34848348483484,10.937472030010127],[-68.35928359283592,10.932406298200476],[-68.370083700837,10.92565198912095],[-68.37728377283773,10.918897680041411],[-68.34488344883448,10.910454793691997],[-68.2620826208262,10.903700484612472],[-68.24048240482405,10.885126134643755],[-68.25128251282513,10.866551784675053],[-68.26568265682657,10.85810889832564],[-68.31248312483125,10.85810889832564],[-68.32688326883269,10.849666011976225],[-68.33048330483304,10.829403084737635],[-68.33048330483304,10.807451580229156],[-68.31968319683196,10.744974221243496],[-68.28728287282873,10.657168203209594],[-68.27288272882728,10.63352812143124],[-68.25128251282513,10.594690844223933],[-68.2440824408244,10.577805071525106],[-68.2080820808208,10.537279217047924],[-68.1720817208172,10.503507671650269],[-68.12888128881288,10.48831047622133],[-68.00648006480064,10.48831047622133],[-67.98847988479885,10.484933321681567],[-67.96687966879668,10.474801858062264],[-67.94167941679416,10.46635897171285],[-67.92367923679237,10.469736126252613],[-67.90927909279092,10.476490435332153],[-67.89127891278912,10.48155616714179],[-67.88047880478804,10.479867589871915],[-67.87327873278733,10.476490435332153],[-67.86967869678696,10.469736126252613],[-67.86967869678696,10.461293239903199],[-67.86967869678696,10.456227508093562],[-67.8660786607866,10.452850353553785],[-67.85887858878588,10.459604662633325],[-67.85167851678517,10.469736126252613],[-67.8480784807848,10.474801858062264],[-67.81927819278192,10.48831047622133],[-67.77607776077761,10.496753362570743],[-67.64647646476465,10.505196248920157],[-67.56007560075601,10.52883633069851],[-67.47727477274772,10.533902062508162],[-67.39087390873908,10.542344948857576],[-67.3260732607326,10.55078783520699],[-67.24327243272432,10.547410680667227],[-67.17127171271713,10.55585356701664],[-67.11367113671136,10.58624795787452],[-67.0740707407074,10.593002266954059],[-67.03447034470344,10.608199462382998],[-67.01287012870128,10.611576616922761],[-66.88686886868868,10.609888039652887],[-66.77526775267752,10.6183309260023],[-66.54126541265413,10.63352812143124],[-66.4260642606426,10.630150966891478],[-66.41526415264153,10.628462389621589],[-66.40446404464045,10.620019503272175],[-66.35046350463504,10.611576616922761],[-66.33246332463324,10.611576616922761],[-66.32166321663216,10.620019503272175],[-66.31086310863108,10.63352812143124],[-66.29646296462964,10.647036739590305],[-66.27486274862748,10.652102471399942],[-66.25326253262533,10.64872531686018],[-66.1920619206192,10.616642348732412],[-66.12366123661236,10.601445153303473],[-66.10566105661056,10.584559380604645],[-66.05886058860588,10.579493648794994],[-66.0480604806048,10.576116494255231],[-66.05526055260552,10.562607876096166],[-66.07686076860769,10.549099257937101],[-66.10206102061021,10.540656371587687],[-66.120061200612,10.542344948857576],[-66.120061200612,10.530524907968399],[-66.12366123661236,10.506884826190031],[-66.120061200612,10.498441939840617],[-66.08766087660877,10.46635897171285],[-66.0120601206012,10.408947344536841],[-66.00486004860048,10.398815880917539],[-65.97245972459724,10.378552953678948],[-65.95445954459544,10.351535717360832],[-65.88245882458824,10.309321285613763],[-65.89685896858968,10.309321285613763],[-65.91125911259113,10.311009862883637],[-65.9220592205922,10.316075594693288],[-65.92925929259292,10.322829903772828],[-65.93645936459365,10.317764171963177],[-65.94365943659436,10.309321285613763],[-65.9220592205922,10.282304049295632],[-65.89685896858968,10.287369781105284],[-65.87165871658716,10.272172585676344],[-65.82845828458284,10.235023885738926],[-65.80325803258032,10.224892422119623],[-65.77445774457745,10.22151526757986],[-65.71685716857168,10.219826690309972],[-65.74565745657456,10.238401040278688],[-65.84645846458464,10.280615472025758],[-65.8680586805868,10.309321285613763],[-65.580055800558,10.18605514491233],[-65.45765457654576,10.148906444974898],[-65.42525425254252,10.143840713165261],[-65.31005310053101,10.12357778592667],[-65.16965169651696,10.09656054960854],[-65.130051300513,10.07629762236995],[-65.09045090450904,10.066166158750647],[-65.07965079650796,10.062789004210885],[-65.07965079650796,10.056034695131359],[-65.15525155251552,10.079674776909712],[-65.17685176851768,10.083051931449475],[-65.1660516605166,10.069543313290424],[-65.1480514805148,10.057723272401233],[-65.12645126451264,10.050968963321708],[-65.08325083250833,10.047591808781945],[-65.07245072450723,10.04928038605182],[-65.06525065250652,10.052657540591596],[-65.04725047250471,10.06110042694101],[-65.01845018450184,10.067854736020536],[-64.98244982449825,10.089806240529015],[-64.96444964449644,10.09656054960854],[-64.94284942849428,10.099937704148303],[-64.88884888848888,10.089806240529015],[-64.81324813248132,10.084740508719364],[-64.77724777247772,10.089806240529015],[-64.74844748447484,10.106692013227843],[-64.73764737647376,10.120200631386894],[-64.72684726847268,10.135397826815847],[-64.7160471604716,10.172546526753266],[-64.7160471604716,10.187743722182205],[-64.72324723247232,10.214760958500335],[-64.7160471604716,10.228269576659386],[-64.70884708847088,10.218138113040098],[-64.6980469804698,10.213072381230447],[-64.68724687246872,10.211383803960558],[-64.67644676446764,10.213072381230447],[-64.68364683646836,10.202940917611144],[-64.68724687246872,10.20125234034127],[-64.6980469804698,10.199563763071382],[-64.68364683646836,10.18605514491233],[-64.66924669246693,10.187743722182205],[-64.65844658446584,10.196186608531619],[-64.66924669246693,10.206318072150921],[-64.65844658446584,10.214760958500335],[-64.62964629646297,10.24853250389799],[-64.61524615246152,10.250221081167865],[-64.590045900459,10.260352544787168],[-64.5720457204572,10.262041122057042],[-64.57564575645756,10.255286812977516],[-64.57564575645756,10.251909658437754],[-64.57924579245793,10.24853250389799],[-64.57564575645756,10.250221081167865],[-64.56484564845648,10.251909658437754],[-64.55764557645576,10.253598235707628],[-64.55044550445504,10.241778194818451],[-64.54684546845468,10.24346677208834],[-64.53964539645396,10.250221081167865],[-64.5360453604536,10.251909658437754],[-64.53244532445324,10.253598235707628],[-64.52164521645216,10.251909658437754],[-64.50004500045,10.241778194818451],[-64.48924489244892,10.240089617548577],[-64.46764467644677,10.24853250389799],[-64.43884438844388,10.275549740216107],[-64.410044100441,10.28399262656552],[-64.3920439204392,10.294124090184823],[-64.38484384843848,10.295812667454697],[-64.37764377643776,10.300878399264349],[-64.37764377643776,10.311009862883637],[-64.38124381243811,10.317764171963177],[-64.410044100441,10.304255553804111],[-64.43164431644315,10.305944131074],[-64.45324453244532,10.312698440153525],[-64.47124471244712,10.322829903772828],[-64.4640446404464,10.332961367392116],[-64.45324453244532,10.331272790122242],[-64.44244442444425,10.32620705831259],[-64.4280442804428,10.322829903772828],[-64.41724417244173,10.32620705831259],[-64.39564395643956,10.339715676471656],[-64.38124381243811,10.343092831011418],[-64.38484384843848,10.356601449170483],[-64.38484384843848,10.36166718098012],[-64.38124381243811,10.371798644599423],[-64.40284402844028,10.371798644599423],[-64.40284402844028,10.378552953678948],[-64.38124381243811,10.386995840028362],[-64.37044370443704,10.381930108218711],[-64.36684366843669,10.370110067329534],[-64.36684366843669,10.353224294630706],[-64.36324363243632,10.338027099201767],[-64.3560435604356,10.338027099201767],[-64.34884348843488,10.349847140090944],[-64.3380433804338,10.365044335519897],[-64.3380433804338,10.390372994568125],[-64.29844298442984,10.407258767266953],[-64.2480424804248,10.419078808156144],[-64.2120421204212,10.439341735394734],[-64.20124201242012,10.456227508093562],[-64.19764197641976,10.468047548982739],[-64.18684186841868,10.478179012602027],[-64.16524165241653,10.48155616714179],[-64.14364143641436,10.479867589871915],[-64.12924129241291,10.478179012602027],[-64.11484114841149,10.47311328079239],[-64.07164071640716,10.452850353553785],[-64.050040500405,10.447784621744148],[-64.02844028440283,10.44609604447426],[-64.00324003240031,10.447784621744148],[-63.942039420394195,10.459604662633325],[-63.9240392403924,10.459604662633325],[-63.88443884438844,10.449473199014022],[-63.862838628386285,10.44609604447426],[-63.81963819638196,10.447784621744148],[-63.68283682836828,10.479867589871915],[-63.6540365403654,10.495064785300855],[-63.67923679236792,10.496753362570743],[-63.70443704437044,10.495064785300855],[-63.72963729637296,10.496753362570743],[-63.75483754837548,10.511950557999683],[-63.77283772837728,10.525459176158748],[-63.82323823238232,10.549099257937101],[-63.84843848438484,10.55585356701664],[-63.89883898838988,10.557542144286515],[-63.9240392403924,10.560919298826278],[-63.94563945639456,10.572739339715469],[-63.967239672396715,10.581182226064882],[-63.992439924399235,10.581182226064882],[-64.04644046440464,10.57105076244558],[-64.03924039240393,10.574427916985343],[-64.0320403204032,10.589625112414282],[-64.04644046440464,10.589625112414282],[-64.05724057240572,10.582870803334757],[-64.06444064440645,10.576116494255231],[-64.07164071640716,10.57105076244558],[-64.0860408604086,10.567673607905817],[-64.15444154441543,10.572739339715469],[-64.16884168841688,10.57105076244558],[-64.20124201242012,10.552476412476864],[-64.20844208442084,10.549099257937101],[-64.21564215642157,10.54403352612745],[-64.22284222842228,10.520393444349097],[-64.23364233642336,10.515327712539445],[-64.2480424804248,10.520393444349097],[-64.25524255242551,10.533902062508162],[-64.25884258842588,10.547410680667227],[-64.25884258842588,10.559230721556403],[-64.2660426604266,10.579493648794994],[-64.2840428404284,10.599756576033585],[-64.29844298442984,10.620019503272175],[-64.29124291242913,10.638593853240891],[-64.28044280442803,10.643659585050528],[-64.27324273242732,10.650413894130068],[-64.26964269642696,10.660545357749356],[-64.26964269642696,10.672365398638547],[-64.2660426604266,10.672365398638547],[-64.25524255242551,10.65547962593972],[-64.24084240842409,10.645348162320417],[-64.19764197641976,10.638593853240891],[-64.18324183241832,10.63352812143124],[-64.1580415804158,10.620019503272175],[-64.14364143641436,10.616642348732412],[-64.13284132841328,10.620019503272175],[-64.07164071640716,10.64872531686018],[-64.06084060840608,10.650413894130068],[-64.050040500405,10.652102471399942],[-64.04284042840428,10.650413894130068],[-64.03924039240393,10.645348162320417],[-64.03564035640356,10.640282430510766],[-64.0320403204032,10.638593853240891],[-63.938439384393845,10.638593853240891],[-63.916839168391675,10.631839544161352],[-63.89883898838988,10.638593853240891],[-63.862838628386285,10.647036739590305],[-63.84843848438484,10.652102471399942],[-63.837638376383765,10.662233935019245],[-63.82683826838267,10.677431130448184],[-63.82323823238232,10.694316903147012],[-63.81963819638196,10.712891253115728],[-63.812438124381245,10.712891253115728],[-63.7980379803798,10.69093974860725],[-63.780037800378,10.67574255317831],[-63.75843758437584,10.665611089559007],[-63.6540365403654,10.641971007780654],[-63.553235532355316,10.628462389621589],[-63.53163531635316,10.631839544161352],[-63.488434884348834,10.657168203209594],[-63.46683466834668,10.667299666828896],[-63.448834488344886,10.658856780479482],[-63.44163441634416,10.658856780479482],[-63.438034380343794,10.670676821368659],[-63.43083430834308,10.672365398638547],[-63.41643416434164,10.66898824409877],[-63.40563405634056,10.665611089559007],[-63.398433984339846,10.670676821368659],[-63.39483394833948,10.69093974860725],[-63.387633876338754,10.699382634956663],[-63.38043380433804,10.692628325877138],[-63.373233732337326,10.689251171337375],[-63.3660336603366,10.689251171337375],[-63.358833588335884,10.692628325877138],[-63.35523355233552,10.685874016797598],[-63.358833588335884,10.680808284987961],[-63.34083340833408,10.672365398638547],[-63.330033300333,10.685874016797598],[-63.31923319233192,10.684185439527724],[-63.301233012330115,10.677431130448184],[-63.28683286832867,10.672365398638547],[-63.28323283232832,10.67574255317831],[-63.27963279632796,10.684185439527724],[-63.272432724327246,10.687562594067487],[-63.26163261632615,10.682496862257835],[-63.250832508325075,10.680808284987961],[-63.240032400324,10.685874016797598],[-63.171631716317165,10.73146560308443],[-63.16083160831607,10.734842757624207],[-63.15723157231572,10.729777025814556],[-63.15723157231572,10.719645562195254],[-63.150031500314995,10.71120267584584],[-63.13923139231392,10.706136944036189],[-63.124831248312475,10.706136944036189],[-63.11763117631176,10.707825521306077],[-63.10683106831068,10.712891253115728],[-63.099630996309955,10.721334139465142],[-63.08163081630816,10.716268407655491],[-63.01323013230132,10.721334139465142],[-62.99162991629916,10.71795698492538],[-62.9520295202952,10.702759789496426],[-62.92682926829268,10.699382634956663],[-62.90522905229052,10.702759789496426],[-62.862028620286196,10.71795698492538],[-62.8260282602826,10.723022716735017],[-62.718027180271804,10.760171416672435],[-62.70722707227071,10.761859993942323],[-62.68202682026819,10.750039953053147],[-62.671226712267114,10.748351375783258],[-62.660426604266036,10.746662798513384],[-62.63882638826388,10.743285643973621],[-62.54162541625416,10.741597066703733],[-62.39762397623976,10.716268407655491],[-62.31842318423183,10.704448366766314],[-62.27522275222752,10.699382634956663],[-62.203222032220324,10.6960054804169],[-62.170821708217076,10.685874016797598],[-62.152821528215284,10.685874016797598],[-62.14202142021419,10.692628325877138],[-62.11682116821167,10.709514098575966],[-62.102421024210244,10.712891253115728],[-62.03762037620376,10.714579830385603],[-62.00882008820088,10.719645562195254],[-61.98361983619836,10.734842757624207],[-61.97281972819728,10.723022716735017],[-61.944019440194396,10.73146560308443],[-61.93681936819368,10.721334139465142],[-61.918819188191875,10.73146560308443],[-61.893618936189355,10.739908489433844],[-61.86481864818647,10.744974221243496],[-61.84681846818468,10.741597066703733],[-61.86121861218612,10.733154180354319],[-61.87561875618756,10.723022716735017],[-61.88641886418864,10.707825521306077],[-61.87921879218791,10.685874016797598],[-61.88641886418864,10.680808284987961],[-61.89721897218972,10.69093974860725],[-61.9080190801908,10.684185439527724],[-61.918819188191875,10.672365398638547],[-61.93681936819368,10.665611089559007],[-61.94041940419403,10.663922512289133],[-61.95481954819547,10.65547962593972],[-61.9620196201962,10.652102471399942],[-61.97281972819728,10.652102471399942],[-61.98361983619836,10.65379104866983],[-61.994419944199436,10.652102471399942],[-62.005220052200514,10.645348162320417],[-62.06642066420663,10.638593853240891],[-62.0880208802088,10.631839544161352],[-62.17442174421744,10.641971007780654],[-62.23922239222392,10.638593853240891],[-62.253622536225365,10.631839544161352],[-62.26442264422644,10.620019503272175],[-62.31482314823148,10.547410680667227],[-62.33642336423364,10.530524907968399],[-62.354423544235445,10.532213485238273],[-62.379623796237965,10.545722103397338],[-62.39762397623976,10.54403352612745],[-62.41922419224191,10.538967794317813],[-62.44082440824408,10.535590639778036],[-62.45162451624516,10.537279217047924],[-62.47322473224732,10.545722103397338],[-62.484024840248395,10.549099257937101],[-62.49122491224912,10.549099257937101],[-62.509225092250915,10.54403352612745],[-62.52002520025199,10.542344948857576],[-62.54162541625416,10.545722103397338],[-62.60642606426063,10.562607876096166],[-62.6640266402664,10.567673607905817],[-62.894428944289444,10.537279217047924],[-62.923229232292314,10.530524907968399],[-62.93402934029339,10.518704867079222],[-62.944829448294485,10.501819094380394],[-62.970029700297005,10.483244744411678],[-62.995229952299525,10.468047548982739],[-63.00963009630095,10.459604662633325],[-63.00963009630095,10.452850353553785],[-62.98082980829808,10.46635897171285],[-62.92682926829268,10.511950557999683],[-62.894428944289444,10.52883633069851],[-62.85842858428583,10.532213485238273],[-62.84042840428404,10.511950557999683],[-62.836828368283676,10.483244744411678],[-62.84042840428404,10.456227508093562],[-62.83322833228331,10.425833117235669],[-62.82962829628296,10.407258767266953],[-62.836828368283676,10.398815880917539],[-62.844028440284404,10.397127303647665],[-62.85842858428583,10.392061571838013],[-62.86562865628656,10.392061571838013],[-62.87642876428764,10.395438726377776],[-62.89082890828908,10.408947344536841],[-62.898028980289794,10.412324499076604],[-62.96282962829628,10.415701653616367],[-62.995229952299525,10.407258767266953],[-63.00243002430024,10.385307262758488],[-62.998829988299875,10.390372994568125],[-62.97722977229772,10.398815880917539],[-62.970029700297005,10.373487221869297],[-62.96642966429664,10.363355758250009],[-62.95562955629556,10.356601449170483],[-62.96642966429664,10.349847140090944],[-62.98442984429843,10.331272790122242],[-62.998829988299875,10.322829903772828],[-62.97722977229772,10.311009862883637],[-62.98082980829808,10.300878399264349],[-62.99162991629916,10.289058358375172],[-63.00243002430024,10.275549740216107],[-62.944829448294485,10.27892689475587],[-62.93042930429304,10.28568120383541],[-62.92682926829268,10.302566976534237],[-62.948429484294834,10.343092831011418],[-62.94122941229412,10.365044335519897],[-62.9520295202952,10.371798644599423],[-62.95562955629556,10.3836186854886],[-62.9520295202952,10.397127303647665],[-62.94122941229412,10.405570189997079],[-62.923229232292314,10.405570189997079],[-62.90882908829087,10.397127303647665],[-62.880028800288,10.371798644599423],[-62.869228692286924,10.378552953678948],[-62.862028620286196,10.380241530948837],[-62.85122851228512,10.381930108218711],[-62.84042840428404,10.385307262758488],[-62.80802808028079,10.402193035457316],[-62.80082800828008,10.405570189997079],[-62.78282782827827,10.402193035457316],[-62.76482764827648,10.395438726377776],[-62.746827468274674,10.386995840028362],[-62.736027360273596,10.378552953678948],[-62.73242732427323,10.370110067329534],[-62.73242732427323,10.353224294630706],[-62.72882728827288,10.343092831011418],[-62.721627216272154,10.336338521931879],[-62.70002700027,10.31945274923305],[-62.685626856268556,10.305944131074],[-62.67482674826748,10.294124090184823],[-62.667626676266764,10.277238317485995],[-62.667626676266764,10.253598235707628],[-62.67482674826748,10.224892422119623],[-62.67482674826748,10.213072381230447],[-62.6640266402664,10.191120876721968],[-62.660426604266036,10.182677990372554],[-62.65682656826567,10.179300835832791],[-62.64962649626496,10.175923681293028],[-62.642426424264244,10.170857949483377],[-62.63882638826388,10.15397217678455],[-62.6280262802628,10.137086404085721],[-62.6280262802628,10.130332095006196],[-62.63162631626315,10.115134899577257],[-62.642426424264244,10.09656054960854],[-62.65682656826567,10.0813633541796],[-62.671226712267114,10.07629762236995],[-62.68202682026819,10.074609045100061],[-62.70362703627036,10.071231890560298],[-62.710827108271076,10.069543313290424],[-62.72522725227252,10.071231890560298],[-62.73242732427323,10.07629762236995],[-62.736027360273596,10.079674776909712],[-62.743227432274324,10.083051931449475],[-62.761227612276116,10.086429085989252],[-62.77922779227792,10.086429085989252],[-62.793627936279364,10.079674776909712],[-62.797227972279714,10.066166158750647],[-62.80082800828008,10.057723272401233],[-62.80442804428044,10.04928038605182],[-62.81522815228152,10.044214654242182],[-62.822428224282234,10.042526076972294],[-62.8260282602826,10.045903231512057],[-62.83322833228331,10.066166158750647],[-62.836828368283676,10.072920467830187],[-62.85122851228512,10.079674776909712],[-62.880028800288,10.066166158750647],[-62.894428944289444,10.069543313290424],[-62.898028980289794,10.07629762236995],[-62.894428944289444,10.086429085989252],[-62.894428944289444,10.09656054960854],[-62.90162901629016,10.103314858688066],[-62.912429124291236,10.103314858688066],[-62.919629196291964,10.098249126878429],[-62.93042930429304,10.091494817798889],[-62.93402934029339,10.083051931449475],[-62.937629376293756,10.094871972338652],[-62.944829448294485,10.101626281418191],[-62.9520295202952,10.106692013227843],[-62.96282962829628,10.110069167767605],[-62.97722977229772,10.098249126878429],[-62.9880298802988,10.09656054960854],[-63.01683016830168,10.103314858688066],[-63.01323013230132,10.09656054960854],[-63.00963009630095,10.093183395068777],[-62.995229952299525,10.077986199639838],[-62.98082980829808,10.069543313290424],[-62.97722977229772,10.072920467830187],[-62.970029700297005,10.083051931449475],[-62.96282962829628,10.088117663259126],[-62.9520295202952,10.088117663259126],[-62.948429484294834,10.079674776909712],[-62.944829448294485,10.029017458813229],[-62.937629376293756,10.008754531574638],[-62.919629196291964,10.008754531574638],[-62.93402934029339,10.022263149733703],[-62.93042930429304,10.03408319062288],[-62.92682926829268,10.045903231512057],[-62.93042930429304,10.059411849671122],[-62.93042930429304,10.064477581480773],[-62.92682926829268,10.074609045100061],[-62.923229232292314,10.083051931449475],[-62.9160291602916,10.083051931449475],[-62.90882908829087,10.077986199639838],[-62.9160291602916,10.06110042694101],[-62.912429124291236,10.052657540591596],[-62.894428944289444,10.044214654242182],[-62.880028800288,10.047591808781945],[-62.869228692286924,10.05434611786147],[-62.85482854828548,10.056034695131359],[-62.84042840428404,10.04928038605182],[-62.82962829628296,10.039148922432531],[-62.818828188281884,10.030706036083117],[-62.797227972279714,10.029017458813229],[-62.80802808028079,10.003688799764987],[-62.80082800828008,9.995245913415573],[-62.786427864278636,10.002000222495113],[-62.77562775627756,10.01888599519394],[-62.786427864278636,10.050968963321708],[-62.786427864278636,10.069543313290424],[-62.76482764827648,10.07629762236995],[-62.75762757627575,10.071231890560298],[-62.73962739627396,10.05434611786147],[-62.72882728827288,10.04928038605182],[-62.718027180271804,10.047591808781945],[-62.6640266402664,10.06110042694101],[-62.63882638826388,10.074609045100061],[-62.617226172261724,10.091494817798889],[-62.60642606426063,10.110069167767605],[-62.60642606426063,10.133709249545959],[-62.62082620826207,10.175923681293028],[-62.6280262802628,10.196186608531619],[-62.62082620826207,10.224892422119623],[-62.60282602826028,10.231646731199163],[-62.58122581225811,10.224892422119623],[-62.559625596255955,10.213072381230447],[-62.51642516425164,10.184366567642442],[-62.49482494824947,10.152283599514675],[-62.46962469624695,10.069543313290424],[-62.46242462424624,10.052657540591596],[-62.45162451624516,10.037460345162643],[-62.44082440824408,10.020574572463815],[-62.44082440824408,10.000311645225224],[-62.430024300243005,9.980048717986634],[-62.42642426424264,9.968228677097457],[-62.430024300243005,9.954720058938392],[-62.44082440824408,9.932768554429913],[-62.42282422824228,9.932768554429913],[-62.408424084240835,9.924325668080499],[-62.39762397623976,9.910817049921448],[-62.3760237602376,9.885488390873206],[-62.32562325623256,9.785862331950128],[-62.31842318423183,9.7689765592513],[-62.31842318423183,9.752090786552472],[-62.32562325623256,9.736893591123533],[-62.32562325623256,9.721696395694579],[-62.32562325623256,9.718319241154816],[-62.31842318423183,9.70649920026564],[-62.28962289622896,9.733516436583756],[-62.27162271622716,9.767287981981411],[-62.24282242822427,9.843273959126137],[-62.23922239222392,9.875356927253904],[-62.257222572225714,9.937834286239564],[-62.257222572225714,9.974982986176983],[-62.23922239222392,9.961474368017932],[-62.221222212222116,9.937834286239564],[-62.18522185221852,9.86691404090449],[-62.178021780217804,9.8466511136659],[-62.17442174421744,9.704810622995751],[-62.18882188821888,9.662596191248682],[-62.2140221402214,9.637267532200454],[-62.181621816218154,9.64908757308963],[-62.16362163621636,9.682859118487286],[-62.152821528215284,9.72676212750423],[-62.160021600216,9.850028268205662],[-62.16722167221671,9.87366834998403],[-62.18882188821888,9.912505627191322],[-62.196021960219596,9.932768554429913],[-62.13842138421384,9.926014245350387],[-62.120421204212036,9.920948513540736],[-62.11322113221132,9.910817049921448],[-62.10962109621096,9.897308431762383],[-62.09882098820988,9.883799813603318],[-62.0880208802088,9.878734081793667],[-62.055620556205554,9.871979772714141],[-62.03762037620376,9.870291195444253],[-62.030420304203034,9.870291195444253],[-62.026820268202684,9.87366834998403],[-62.03762037620376,9.883799813603318],[-62.044820448204476,9.88717696814308],[-62.077220772207724,9.895619854492494],[-62.0880208802088,9.897308431762383],[-62.09162091620915,9.904062740841908],[-62.120421204212036,9.932768554429913],[-62.13482134821348,9.941211440779327],[-62.14922149221492,9.944588595319104],[-62.206822068220674,9.946277172588978],[-62.221222212222116,9.95134290439863],[-62.23562235622356,9.966540099827569],[-62.22482224822248,9.98680302706616],[-62.21762217622175,10.003688799764987],[-62.206822068220674,10.01382026338429],[-62.196021960219596,10.01888599519394],[-62.10962109621096,9.996934490685462],[-62.06282062820628,9.978360140716745],[-62.026820268202684,9.958097213478155],[-61.926019260192604,9.880422659063555],[-61.9080190801908,9.863536886364727],[-61.87561875618756,9.823011031887546],[-61.84681846818468,9.80443668191883],[-61.83241832418324,9.792616641029653],[-61.83241832418324,9.779108022870588],[-61.82881828818287,9.770665136521174],[-61.81441814418143,9.757156518362123],[-61.81081810818108,9.74871363201271],[-61.81081810818108,9.738582168393407],[-61.82161821618216,9.708187777535514],[-61.843218432184315,9.672727654867984],[-61.84681846818468,9.650776150359505],[-61.83961839618395,9.650776150359505],[-61.81081810818108,9.70649920026564],[-61.79641796417964,9.760533672901886],[-61.77841778417783,9.758845095631997],[-61.76401764017639,9.738582168393407],[-61.75321753217531,9.713253509345165],[-61.742417424174235,9.6997448911861],[-61.74961749617496,9.67948196394751],[-61.742417424174235,9.596741677723259],[-61.73521735217352,9.61700460496185],[-61.73161731617316,9.638956109470328],[-61.72801728017279,9.682859118487286],[-61.73161731617316,9.694679159376463],[-61.73521735217352,9.703122045725877],[-61.73881738817387,9.709876354805402],[-61.7460174601746,9.716630663884928],[-61.75321753217531,9.72676212750423],[-61.75681756817568,9.750402209282583],[-61.76401764017639,9.760533672901886],[-61.77121771217712,9.765599404711537],[-61.78921789217891,9.7689765592513],[-61.79641796417964,9.774042291060951],[-61.80001800018,9.780796600140476],[-61.81441814418143,9.802748104648956],[-61.82161821618216,9.812879568268244],[-61.82521825218252,9.821322454617658],[-61.82881828818287,9.826388186427309],[-61.818018180181795,9.829765340967072],[-61.78921789217891,9.83145391823696],[-61.75321753217531,9.823011031887546],[-61.6740167401674,9.799370950109193],[-61.66321663216631,9.797682372839304],[-61.591215912159115,9.782485177410365],[-61.57321573215732,9.794305218299542],[-61.57681576815767,9.809502413728481],[-61.591215912159115,9.823011031887546],[-61.60201602016019,9.836519650046611],[-61.60921609216092,9.839896804586374],[-61.616416164161635,9.844962536396025],[-61.63441634416344,9.855094000015313],[-61.63441634416344,9.861848309094853],[-61.63801638016379,9.870291195444253],[-61.65241652416523,9.87366834998403],[-61.66321663216631,9.885488390873206],[-61.67041670416704,9.897308431762383],[-61.666816668166675,9.900685586302146],[-61.63801638016379,9.898997009032271],[-61.62721627216271,9.89393127722262],[-61.61281612816127,9.88717696814308],[-61.5840158401584,9.871979772714141],[-61.54441544415444,9.8466511136659],[-61.50841508415084,9.826388186427309],[-61.47601476014759,9.801059527379067],[-61.461614616146164,9.78417375468024],[-61.4220142201422,9.736893591123533],[-61.42561425614255,9.763910827441649],[-61.45081450814507,9.794305218299542],[-61.4580145801458,9.812879568268244],[-61.486814868148684,9.823011031887546],[-61.504815048150476,9.839896804586374],[-61.50121501215011,9.841585381856248],[-61.48321483214832,9.829765340967072],[-61.47241472414724,9.826388186427309],[-61.45081450814507,9.82469960915742],[-61.440014400143994,9.817945300077895],[-61.429214292142916,9.807813836458607],[-61.40041400414003,9.777419445600714],[-61.386013860138604,9.760533672901886],[-61.37161371613716,9.74702505474282],[-61.353613536135356,9.731827859313881],[-61.339213392133914,9.71156493207529],[-61.32481324813247,9.701433468455988],[-61.30681306813068,9.686236273027049],[-61.260012600126004,9.64908757308963],[-61.234812348123484,9.632201800390803],[-61.227612276122755,9.60180740953291],[-61.2060120601206,9.578167327754556],[-61.19161191611916,9.583233059564208],[-61.20961209612096,9.603495986802798],[-61.18441184411844,9.603495986802798],[-61.13041130411304,9.573101595944905],[-61.11241112411123,9.583233059564208],[-61.10521105211052,9.57985590502443],[-61.06921069210692,9.583233059564208],[-61.05481054810548,9.58154448229432],[-61.01521015210152,9.562970132325603],[-60.975609756097555,9.549461514166552],[-60.96120961209611,9.53933005054725],[-60.9540095400954,9.520755700578547],[-60.96120961209611,9.522444277848422],[-60.96480964809648,9.525821432388184],[-60.96840968409684,9.534264318737598],[-60.97200972009719,9.502181350609831],[-60.96840968409684,9.493738464260417],[-60.96120961209611,9.486984155180892],[-60.9540095400954,9.488672732450766],[-60.94680946809467,9.492049886990529],[-60.93600936009359,9.493738464260417],[-60.92160921609215,9.490361309720655],[-60.900009000089995,9.48191842337124],[-60.87840878408784,9.468409805212175],[-60.864008640086396,9.456589764322999],[-60.85320853208532,9.446458300703696],[-60.838808388083876,9.424506796195232],[-60.824408244082434,9.410998178036166],[-60.82080820808207,9.405932446226515],[-60.81720817208172,9.400866714416864],[-60.81720817208172,9.394112405337339],[-60.813608136081356,9.39242382806745],[-60.80280802808028,9.389046673527687],[-60.799207992079914,9.383980941718036],[-60.788407884078836,9.363718014479446],[-60.78480784807847,9.338389355431204],[-60.78480784807847,9.313060696382962],[-60.799207992079914,9.29448634641426],[-60.799207992079914,9.302929232763674],[-60.80280802808028,9.307994964573325],[-60.81000810008099,9.316437850922739],[-60.81720817208172,9.301240655493785],[-60.81720817208172,9.286043460064846],[-60.82080820808207,9.272534841905781],[-60.83520835208351,9.26746911009613],[-60.849608496084954,9.264091955556367],[-60.874808748087474,9.250583337397316],[-60.8820088200882,9.24720618285754],[-60.89640896408963,9.245517605587665],[-60.90720907209072,9.242140451047902],[-60.9180091800918,9.238763296508125],[-60.92880928809288,9.233697564698488],[-60.93240932409324,9.221877523809297],[-60.93960939609396,9.21681179199966],[-60.94320943209432,9.213434637459883],[-60.94680946809467,9.21174606019001],[-60.96840968409684,9.206680328380358],[-61.02241022410223,9.152645855744112],[-61.04761047610475,9.145891546664586],[-61.06561065610656,9.132382928505521],[-61.08721087210871,9.101988537647628],[-61.11241112411123,9.041199755931856],[-61.09801098010979,9.047954065011382],[-61.08361083610836,9.059774105900559],[-61.076410764107635,9.073282724059624],[-61.07281072810727,9.086791342218689],[-61.06561065610656,9.095234228568103],[-60.98280982809828,9.167843051173051],[-60.95760957609576,9.183040246602005],[-60.9540095400954,9.164465896633288],[-60.96120961209611,9.154334433014],[-60.975609756097555,9.139137237585047],[-60.98280982809828,9.130694351235633],[-60.98640986409863,9.122251464886219],[-60.990009900099,9.100299960377754],[-60.99360993609936,9.093545651298214],[-61.000810008100075,9.0851027649488],[-61.000810008100075,9.076659878599386],[-61.000810008100075,9.058085528630684],[-61.0080100801008,9.047954065011382],[-61.01521015210152,9.04288833320173],[-61.02961029610296,9.039511178661968],[-61.03681036810367,9.036134024122205],[-61.07281072810727,8.997296746914898],[-61.080010800108,8.997296746914898],[-61.08361083610836,8.988853860565484],[-61.09801098010979,8.96014804697748],[-61.10521105211052,8.94495085154854],[-61.1160111601116,8.90442499707136],[-61.11961119611196,8.887539224372532],[-61.11241112411123,8.867276297133941],[-61.11241112411123,8.857144833514639],[-61.126811268112675,8.814930401767569],[-61.18081180811808,8.73556727008308],[-61.19521195211952,8.693352838336025],[-61.19881198811987,8.644384097509416],[-61.20961209612096,8.608923974841886],[-61.234812348123484,8.588661047603296],[-61.278012780127796,8.588661047603296],[-61.335613356133564,8.607235397571998],[-61.35001350013499,8.61061255211176],[-61.52281522815228,8.59710393395271],[-61.566015660156594,8.607235397571998],[-61.60561605616056,8.630875479350365],[-61.62361623616236,8.630875479350365],[-61.64521645216452,8.627498324810588],[-61.65961659616596,8.615678283921412],[-61.65961659616596,8.59710393395271],[-61.65241652416523,8.585283893063533],[-61.59841598415984,8.55488950220564],[-61.56241562415623,8.5481351931261],[-61.55161551615515,8.544758038586338],[-61.54441544415444,8.538003729506812],[-61.540815408154074,8.531249420427287],[-61.53721537215371,8.52787226588751],[-61.52641526415263,8.52787226588751],[-61.50841508415084,8.53293799769716],[-61.50121501215011,8.53462657496705],[-61.49761497614976,8.531249420427287],[-61.486814868148684,8.517740802268222],[-61.47241472414724,8.504232184109156],[-61.465214652146514,8.500855029569394],[-61.45081450814507,8.500855029569394],[-61.44721447214472,8.497477875029631],[-61.436414364143644,8.483969256870566],[-61.43281432814328,8.478903525060915],[-61.414814148141474,8.47721494779104],[-61.37521375213751,8.48565783414044],[-61.360813608136084,8.487346411410329],[-61.35001350013499,8.478903525060915],[-61.34281342813428,8.46539490690185],[-61.339213392133914,8.45019771147291],[-61.3320133201332,8.438377670583733],[-61.32121321213212,8.428246206964431],[-61.2960129601296,8.413049011535492],[-61.285212852128524,8.397851816106552],[-61.252812528125276,8.418114743345143],[-61.23841238412383,8.431623361504194],[-61.234812348123484,8.448509134203022],[-61.227612276122755,8.460329175092212],[-61.21321213212131,8.473837793251263],[-61.19521195211952,8.48565783414044],[-61.18081180811808,8.494100720489854],[-61.15921159211592,8.497477875029631],[-61.09441094410944,8.494100720489854],[-61.04761047610475,8.502543606839268],[-61.026010260102595,8.500855029569394],[-61.02241022410223,8.487346411410329],[-61.04041040410404,8.47214921598139],[-61.076410764107635,8.467083484171738],[-61.08721087210871,8.448509134203022],[-61.08721087210871,8.426557629694557],[-61.08721087210871,8.416426166075254],[-61.08361083610836,8.40798327972584],[-61.07281072810727,8.40291754791619],[-61.06921069210692,8.413049011535492],[-61.07281072810727,8.438377670583733],[-61.06561065610656,8.456952020552436],[-61.06201062010619,8.460329175092212],[-61.051210512105115,8.46539490690185],[-61.04041040410404,8.468772061441626],[-61.02961029610296,8.467083484171738],[-61.01881018810188,8.468772061441626],[-61.01521015210152,8.475526370521152],[-61.01521015210152,8.48565783414044],[-61.0080100801008,8.495789297759742],[-61.00441004410044,8.504232184109156],[-60.99360993609936,8.51267507045857],[-60.990009900099,8.524495111347747],[-60.990009900099,8.5481351931261],[-60.98640986409863,8.558266656745403],[-60.98640986409863,8.565020965824928],[-60.98640986409863,8.57008669763458],[-60.975609756097555,8.57515242944423],[-60.95760957609576,8.568398120364705],[-60.93600936009359,8.571775274904468],[-60.9180091800918,8.578529583983993],[-60.81720817208172,8.59034962487317],[-60.69120691206912,8.603858243032235],[-60.673206732067314,8.592038202143058],[-60.66960669606695,8.581906738523756],[-60.65520655206552,8.571775274904468],[-60.637206372063716,8.561643811285165],[-60.62640626406264,8.55488950220564],[-60.60480604806048,8.551512347665877],[-60.54360543605435,8.5481351931261],[-60.47880478804788,8.53293799769716],[-60.460804608046075,8.53462657496705],[-60.45720457204571,8.539692306776686],[-60.44640446404463,8.561643811285165],[-60.42840428404284,8.583595315793644],[-60.40320403204032,8.622432593000951],[-60.37080370803707,8.635941211160002],[-60.1980019800198,8.624121170270826],[-60.158401584015834,8.613989706651537],[-60.11880118801187,8.59710393395271],[-60.082800828008274,8.573463852174342],[-60.06480064800648,8.565020965824928],[-60.021600216002156,8.558266656745403],[-60,8.5481351931261],[-59.96759967599675,8.52787226588751],[-59.931599315993154,8.49241214321998],[-59.8739987399874,8.404606125186078],[-59.8379983799838,8.369146002518534],[-59.80919809198092,8.353948807089594],[-59.75879758797588,8.342128766200418],[-59.73719737197372,8.328620148041352],[-59.67959679596795,8.28978287083406],[-59.65079650796507,8.272897098135232],[-59.6219962199622,8.26783136632558],[-59.61479614796147,8.252634170896641],[-59.61119611196112,8.250945593626753],[-59.61119611196112,8.242502707277339],[-59.60759607596076,8.24081413000745],[-59.60039600396003,8.24081413000745],[-59.542795427954275,8.228994089118274],[-59.53559535595356,8.222239780038748],[-59.52479524795247,8.207042584609795],[-59.43479434794348,8.131056607465084],[-59.456394563945636,8.166516730132614],[-59.492394923949234,8.201976852800158],[-59.5319953199532,8.228994089118274],[-59.60759607596076,8.259388479976167],[-59.70119701197011,8.323554416231701],[-59.76239762397624,8.355637384359483],[-59.769597695976955,8.36576884797877],[-59.78039780397803,8.394474661566775],[-59.78039780397803,8.406294702455966],[-59.75519755197551,8.411360434265603],[-59.74079740797407,8.40291754791619],[-59.70479704797047,8.375900311598073],[-59.66159661596616,8.364080270708897],[-59.643596435964355,8.350571652549831],[-59.61119611196112,8.323554416231701],[-59.54639546395464,8.28302856175452],[-59.45279452794527,8.242502707277339],[-59.34839348393484,8.166516730132614],[-59.16479164791647,8.058447784860121],[-59.103591035910355,8.012856198573289],[-59.08919089190891,7.999347580414224],[-59.07479074790747,7.9807732304455214],[-59.02079020790208,7.931804489618926],[-58.88398883988839,7.7781439580596015],[-58.83358833588335,7.737618103582406],[-58.80478804788048,7.695403671835351],[-58.77958779587796,7.661632126437695],[-58.75438754387544,7.612663385611086],[-58.73638736387363,7.589023303832732],[-58.73278732787327,7.594089035642384],[-58.74358743587436,7.619417694690625],[-58.74358743587436,7.6295491583099135],[-58.72918729187292,7.6295491583099135],[-58.7039870398704,7.6211062719605],[-58.68238682386823,7.604220499261672],[-58.664386643866436,7.58564614929297],[-58.64638646386463,7.565383222054379],[-58.63198631986319,7.540054563006137],[-58.61038610386103,7.506283017608482],[-58.58518585185851,7.475888626750589],[-58.56718567185672,7.453937122242124],[-58.487984879848796,7.37626256782751],[-58.46998469984699,7.345868176969631],[-58.462784627846275,7.3120966315719755],[-58.47358473584735,7.280013663444194],[-58.46638466384664,7.286767972523734],[-58.47358473584735,7.244553540776664],[-58.46638466384664,7.116221668265581],[-58.48438484384843,7.011529877532851],[-58.498784987849874,6.994644104834023],[-58.52038520385203,6.9777583321351955],[-58.53478534785347,6.965938291246019],[-58.549185491854914,6.9473639412773025],[-58.55998559985599,6.927101014038712],[-58.56718567185672,6.906838086800121],[-58.574385743857434,6.8680008095928144],[-58.59598595985959,6.808900605146931],[-58.599585995859954,6.786949100638452],[-58.59598595985959,6.721094587113029],[-58.599585995859954,6.710963123493727],[-58.61038610386103,6.69914308260455],[-58.61038610386103,6.6873230417153735],[-58.61038610386103,6.510022428377695],[-58.61758617586176,6.488070923869216],[-58.62118621186211,6.47625088298004],[-58.68598685986859,6.381690555866598],[-58.68238682386823,6.380001978596724],[-58.67878678786788,6.376624824056961],[-58.649986499864994,6.403642060375077],[-58.639186391863916,6.410396369454617],[-58.63558635586355,6.413773523994379],[-58.63198631986319,6.420527833073905],[-58.62838628386284,6.423904987613668],[-58.613986139861396,6.417150678534142],[-58.60678606786067,6.417150678534142],[-58.60318603186032,6.417150678534142],[-58.588785887858876,6.417150678534142],[-58.59598595985959,6.423904987613668],[-58.58158581585815,6.4627422648209745],[-58.5779857798578,6.59445129187182],[-58.56718567185672,6.63666572361889],[-58.462784627846275,6.822409223305982],[-58.43398433984339,6.857869345973526],[-58.39798397983979,6.883198005021768],[-58.35478354783547,6.895018045910945],[-58.311583115831155,6.891640891371182],[-58.27558275582756,6.879820850482005],[-58.21438214382144,6.849426459624112],[-58.19278192781927,6.830852109655396],[-58.18918189181892,6.827474955115633],[-58.185581855818555,6.824097800575871],[-58.17838178381784,6.817343491496345],[-58.17478174781748,6.815654914226457],[-58.17118171181711,6.813966336956568],[-58.1639816398164,6.817343491496345],[-58.1639816398164,6.829163532385522],[-58.15318153181532,6.8325406869252845],[-58.06678066780667,6.822409223305982],[-58.00558005580055,6.792014832448103],[-57.98757987579876,6.7751290597492755],[-57.95517955179551,6.753177555240796],[-57.91917919179191,6.716028855303378],[-57.89037890378903,6.695765928064787],[-57.83637836378364,6.645108609968304],[-57.807578075780754,6.613025641840537],[-57.796777967779676,6.597828446411583],[-57.77877778777787,6.591074137332058],[-57.75717757177571,6.567434055553704],[-57.69957699576996,6.521842469266872],[-57.66717667176671,6.49651381021863],[-57.645576455764555,6.477939460249914],[-57.63477634776348,6.4627422648209745],[-57.61677616776167,6.447545069392035],[-57.59877598775988,6.42728214215343],[-57.57717577175771,6.378313401326835],[-57.54837548375484,6.307393155991761],[-57.53757537575375,6.29388453783271],[-57.5339753397534,6.273621610594105],[-57.53037530375303,6.2651787242446915],[-57.519575195751955,6.278687342403757],[-57.519575195751955,6.2871302287531705],[-57.51597515975159,6.298950269642347],[-57.51597515975159,6.315836042341175],[-57.50517505175051,6.32934466050024],[-57.494374943749435,6.334410392309891],[-57.49077490774907,6.3394761241195425],[-57.48717487174871,6.3394761241195425],[-57.46557465574655,6.337787546849654],[-57.443974439744395,6.331033237770129],[-57.42957429574295,6.322590351420715],[-57.4079740797408,6.312458887801412],[-57.37917379173791,6.29388453783271],[-57.36477364773647,6.2871302287531705],[-57.32877328773287,6.2651787242446915],[-57.28917289172891,6.234784333386813],[-57.206372063720636,6.152044047162562],[-57.18837188371883,6.121649656304669],[-57.166771667716674,6.0845009563672505],[-57.15957159571596,6.043975101890069],[-57.155971559715596,6.020335020111702],[-57.15237152371523,6.008514979222525],[-57.14517145171452,5.998383515603237],[-57.14517145171452,5.988252051983935],[-57.14517145171452,5.978120588364646],[-57.15957159571596,5.998383515603237],[-57.166771667716674,6.0051378246827625],[-57.14877148771487,5.9696777020152325],[-57.141571415714154,5.956169083856167],[-57.141571415714154,5.934217579347688],[-57.141571415714154,5.9173318066488605],[-57.13797137971379,5.8818716839813305],[-57.15237152371523,5.846411561313786],[-57.15957159571596,5.827837211345084],[-57.166771667716674,5.810951438646256],[-57.17037170371704,5.79913139775708],[-57.17037170371704,5.778868470518475],[-57.181171811718116,5.755228388740122],[-57.18477184771848,5.731588306961768],[-57.15957159571596,5.6927510297544615],[-57.16317163171631,5.638716557118215],[-57.17397173971739,5.606633588990448],[-57.18477184771848,5.588059239021732],[-57.19557195571956,5.564419157243378],[-57.2459724597246,5.491810334638416],[-57.2459724597246,5.48505602555889],[-57.235172351723506,5.498564643717955],[-57.22437224372243,5.507007530067369],[-57.191971919719194,5.520516148226434],[-57.181171811718116,5.530647611845723],[-57.17037170371704,5.542467652734899],[-57.16317163171631,5.557664848163853],[-57.13797137971379,5.665733793436345],[-57.13437134371344,5.760294120549773],[-57.12717127171271,5.79237708867754],[-57.12717127171271,5.817705747725782],[-57.11277112771127,5.858231602202963],[-57.10197101971019,5.8869374157909675],[-57.07677076770767,5.930840424807926],[-57.07317073170731,5.940971888427214],[-57.06597065970659,5.949414774776628],[-57.05877058770588,5.956169083856167],[-57.03357033570336,5.95954623839593],[-57.02637026370263,5.964611970205581],[-57.02277022770227,5.9696777020152325],[-57.01917019170192,5.971366279285107],[-57.01197011970119,5.973054856554995],[-57.00117001170011,5.988252051983935],[-56.9939699396994,5.993317783793586],[-56.98316983169832,5.9966949383333485],[-56.97596975969759,5.998383515603237],[-56.96516965169651,6.008514979222525],[-56.9579695796958,6.011892133762288],[-56.929169291692915,6.003449247412874],[-56.8679686796868,5.989940629253823],[-56.8319683196832,5.984874897444172],[-56.78156781567816,5.984874897444172],[-56.702367023670234,5.981497742904409],[-56.65916659166591,5.979809165634521],[-56.641166411664116,5.973054856554995],[-56.61236612366123,5.954480506586279],[-56.594365943659426,5.946037620236865],[-56.57276572765727,5.940971888427214],[-56.525965259652594,5.935906156617577],[-56.417964179641785,5.910577497569335],[-56.35676356763567,5.8953803021403814],[-56.30276302763028,5.892003147600619],[-56.25596255962559,5.880183106711442],[-56.22356223562235,5.87005164309214],[-56.191161911619105,5.863297334012614],[-56.12276122761227,5.848100138583675],[-56.08316083160831,5.83459152042461],[-56.05796057960579,5.827837211345084],[-56.036360363603634,5.824460056805307],[-56.000360003600036,5.810951438646256],[-55.935559355593554,5.804197129566717],[-55.91755917559175,5.783934202328126],[-55.903159031590306,5.777179893248601],[-55.89595895958959,5.763671275089536],[-55.89595895958959,5.675865257055634],[-55.88875888758888,5.675865257055634],[-55.885158851588514,5.6927510297544615],[-55.88155881558815,5.707948225183401],[-55.885158851588514,5.7417197705810565],[-55.88875888758888,5.760294120549773],[-55.903159031590306,5.797442820487191],[-55.9139591395914,5.821082902265545],[-55.899558995589956,5.841345829504135],[-55.910359103591034,5.851477293123438],[-55.92115921159211,5.849788715853549],[-55.935559355593554,5.849788715853549],[-55.94635946359463,5.86160875674274],[-55.949959499594996,5.8818716839813305],[-55.94635946359463,5.89706887941027],[-55.93195931959319,5.9173318066488605],[-55.924759247592476,5.927463270268163],[-55.910359103591034,5.940971888427214],[-55.899558995589956,5.951103352046516],[-55.885158851588514,5.962923392935693],[-55.86715867158671,5.9696777020152325],[-55.84555845558455,5.976432011094758],[-55.82035820358203,5.976432011094758],[-55.73035730357303,5.981497742904409],[-55.67995679956799,5.984874897444172],[-55.63675636756368,5.986563474714046],[-55.395553955539555,5.973054856554995],[-55.33435334353344,5.962923392935693],[-55.309153091530916,5.942660465697102],[-55.29115291152911,5.935906156617577],[-55.269552695526954,5.930840424807926],[-55.262352623526226,5.925774692998274],[-55.25155251552515,5.9173318066488605],[-55.244352443524434,5.908888920299447],[-55.233552335523356,5.903823188489795],[-55.22995229952299,5.902134611219921],[-55.222752227522264,5.900446033950033],[-55.211952119521186,5.900446033950033],[-55.20115201152011,5.898757456680158],[-55.186751867518666,5.89706887941027],[-55.17595175951759,5.900446033950033],[-55.16515165151651,5.907200343029572],[-55.147151471514704,5.908888920299447],[-55.12915129151291,5.8953803021403814],[-55.111151111511106,5.8818716839813305],[-55.10395103951039,5.866674488552377],[-55.11475114751147,5.837968674964372],[-55.12915129151291,5.821082902265545],[-55.10035100351003,5.831214365884847],[-55.093150931509314,5.853165870393326],[-55.08955089550895,5.875117374901791],[-55.085950859508586,5.883560261251205],[-55.06435064350643,5.883560261251205],[-55.031950319503196,5.8599201794728515],[-55.010350103501025,5.8548544476632],[-54.9959499594996,5.858231602202963],[-54.98874988749887,5.863297334012614],[-54.981549815498155,5.864985911282503],[-54.959949599495985,5.851477293123438],[-54.94914949149491,5.849788715853549],[-54.94194941949419,5.851477293123438],[-54.931149311493115,5.8548544476632],[-54.92394923949239,5.8599201794728515],[-54.92034920349204,5.866674488552377],[-54.91314913149131,5.873428797631917],[-54.89874898748987,5.875117374901791],[-54.89154891548915,5.873428797631917],[-54.880748807488075,5.868363065822265],[-54.86274862748627,5.8548544476632],[-54.86634866348663,5.863297334012614],[-54.87354873548735,5.871740220362028],[-54.880748807488075,5.878494529441554],[-54.89154891548915,5.883560261251205],[-54.90234902349023,5.885248838521093],[-54.91314913149131,5.883560261251205],[-54.92034920349204,5.876805952171679],[-54.934749347493465,5.87005164309214],[-54.956349563495635,5.868363065822265],[-54.97074970749708,5.876805952171679],[-54.985149851498505,5.880183106711442],[-55.00315003150031,5.871740220362028],[-55.01755017550175,5.871740220362028],[-55.031950319503196,5.885248838521093],[-55.04635046350464,5.892003147600619],[-55.10395103951039,5.908888920299447],[-55.12555125551255,5.919020383918749],[-55.143551435514354,5.930840424807926],[-55.15075150751507,5.940971888427214],[-55.15435154351543,5.951103352046516],[-55.161551615516146,5.957857661126042],[-55.15435154351543,5.967989124745344],[-55.143551435514354,5.9747434338248695],[-55.118351183511834,5.984874897444172],[-55.085950859508586,5.989940629253823],[-55.04635046350464,5.993317783793586],[-55.01395013950139,5.993317783793586],[-54.77274772747727,5.984874897444172],[-54.754747547475475,5.981497742904409],[-54.71154711547115,5.976432011094758],[-54.671946719467186,5.9696777020152325],[-54.470344703447026,5.940971888427214],[-54.34794347943479,5.913954652109098],[-54.25434254342542,5.8953803021403814],[-54.167941679416785,5.868363065822265],[-54.09594095940959,5.848100138583675],[-54.07434074340743,5.844722984043912],[-54.063540635406355,5.841345829504135],[-54.038340383403835,5.843034406774024],[-54.03114031140311,5.83459152042461],[-54.02034020340203,5.8295257886149585],[-54.013140131401315,5.81939432499567],[-54.016740167401665,5.809262861376368],[-53.991539915399144,5.763671275089536],[-53.987939879398795,5.7450969251208335],[-53.99513995139951,5.734965461501531],[-54.02034020340203,5.689373875214699],[-54.03114031140311,5.669110947976108],[-54.03474034740347,5.630273670768801],[-54.04914049140491,5.552599116354202],[-54.05994059940599,5.5120732618770205],[-54.07434074340743,5.4901217573685415],[-54.092340923409225,5.468170252860062],[-54.11034110341103,5.452973057431123],[-54.117541175411745,5.442841593811821],[-54.12114121141211,5.4327101301925325],[-54.12834128341282,5.414135780223816],[-54.17154171541715,5.348281266698393],[-54.139141391413915,5.36010130758757],[-54.10674106741067,5.38036423482616],[-54.08154081540815,5.407381471144291],[-54.05994059940599,5.436087284732295],[-54.03474034740347,5.505318952797481],[-54.013140131401315,5.540779075465025],[-54.00594005940059,5.557664848163853],[-53.991539915399144,5.660668061626694],[-53.97353973539735,5.6927510297544615],[-53.955539555395546,5.726522575152117],[-53.94473944739447,5.7450969251208335],[-53.93393933939339,5.7450969251208335],[-53.890738907389064,5.738342616041294],[-53.85833858338583,5.733276884231643],[-53.836738367383674,5.723145420612354],[-53.815138151381504,5.716391111532815],[-53.80793807938079,5.7147025342629405],[-53.811538115381154,5.719768266072592],[-53.83313833138331,5.731588306961768],[-53.825938259382596,5.733276884231643],[-53.811538115381154,5.731588306961768],[-53.775537755377556,5.7147025342629405],[-53.750337503375036,5.696128184294224],[-53.73233732337323,5.6843081434050475],[-53.714337143371424,5.674176679785759],[-53.69633696336963,5.664045216166457],[-53.58113581135811,5.618453629879625],[-53.548735487354875,5.599879279910908],[-53.51633516335163,5.581304929942206],[-53.49473494734947,5.572862043592792],[-53.48033480334803,5.5694848890530295],[-53.447934479344795,5.561042002703616],[-53.40833408334083,5.561042002703616],[-53.33633336333362,5.544156230004788],[-53.30393303933039,5.535713343655374],[-53.27873278732787,5.537401920925248],[-53.264332643326426,5.530647611845723],[-53.246332463324634,5.510384684607132],[-53.22833228332283,5.495187489178193],[-53.20673206732067,5.501941798257718],[-53.20673206732067,5.513761839146895],[-53.224732247322464,5.5171389936866575],[-53.24273242732427,5.528959034575848],[-53.264332643326426,5.545844807274662],[-53.28233282332823,5.550910539084313],[-53.289532895328946,5.549221961814439],[-53.29313293132931,5.554287693624076],[-53.28233282332823,5.561042002703616],[-53.271532715327155,5.561042002703616],[-53.249932499324984,5.549221961814439],[-53.221132211322114,5.535713343655374],[-53.17793177931779,5.523893302766197],[-53.15633156331563,5.513761839146895],[-53.13113131131311,5.505318952797481],[-53.08073080730807,5.471547407399825],[-53.044730447304474,5.4597273665106485],[-53.00513005130051,5.451284480161235],[-53.00153001530015,5.458038789240774],[-52.994329943299434,5.458038789240774],[-52.96552965529655,5.444530171081709],[-52.8971289712897,5.405692893874402],[-52.82872828728287,5.341526957618868],[-52.781927819278195,5.316198298570626],[-52.75312753127531,5.267229557744017],[-52.681126811268115,5.209817930568008],[-52.54072540725407,5.07979748078705],[-52.529925299252994,5.073043171707511],[-52.52632526325263,5.071354594437636],[-52.52632526325263,5.064600285358097],[-52.52632526325263,5.057845976278571],[-52.52632526325263,5.05278024446892],[-52.522725227252266,5.05278024446892],[-52.508325083250824,5.0544688217388085],[-52.504725047250474,5.05278024446892],[-52.479524795247954,5.039271626309855],[-52.403924039240394,4.973417112784432],[-52.378723787237874,4.936268412847014],[-52.38952389523895,4.895742558369832],[-52.371523715237146,4.907562599259009],[-52.346323463234626,4.943022721926539],[-52.32472324723247,4.949777031006079],[-52.29952299522995,4.9447112991964275],[-52.277922779227794,4.931202681037362],[-52.26352263522635,4.91262833106866],[-52.25992259922599,4.89236540383007],[-52.277922779227794,4.858593858432414],[-52.31392313923139,4.811313694875693],[-52.34272342723426,4.76065637677921],[-52.33912339123391,4.72519625411168],[-52.33552335523355,4.72519625411168],[-52.331923319233184,4.738704872270745],[-52.32472324723247,4.748836335890033],[-52.31752317523174,4.755590644969573],[-52.31392313923139,4.762344954049098],[-52.31032310323103,4.78767361309734],[-52.29952299522995,4.813002272145582],[-52.28512285122851,4.8298880448444095],[-52.24192241922418,4.8569052811625255],[-52.2311223112231,4.875479631131242],[-52.21312213122131,4.867036744781828],[-52.19152191521914,4.850150972083],[-52.17712177121771,4.8298880448444095],[-52.169921699216985,4.809625117605819],[-52.15912159121591,4.796116499446754],[-52.094320943209425,4.758967799509335],[-52.06192061920619,4.730261985921331],[-52.02592025920259,4.693113285983912],[-51.99711997119971,4.652587431506717],[-51.98631986319862,4.612061577029536],[-51.97911979119792,4.571535722552355],[-51.95751957519576,4.493861168137741],[-51.95031950319503,4.45333531366056],[-51.9611196111961,4.407743727373727],[-51.98991989919898,4.385792222865248],[-52.018720187201865,4.367217872896546],[-52.04752047520475,4.333446327498891],[-51.98631986319862,4.352020677467607],[-51.95031950319503,4.370595027436309],[-51.935919359193576,4.392546531944788],[-51.935919359193576,4.402677995564076],[-51.92511925119251,4.4296952318822065],[-51.92151921519215,4.446581004581034],[-51.93231932319324,4.590110072521057],[-51.92511925119251,4.625570195188601],[-51.910719107191056,4.65596458604648],[-51.89631896318963,4.664407472395894],[-51.8819188191882,4.667784626935671],[-51.86391863918638,4.664407472395894],[-51.84951849518495,4.65596458604648],[-51.802718027180276,4.612061577029536],[-51.791917919179184,4.6019301134102335],[-51.79911799117991,4.590110072521057],[-51.77391773917739,4.551272795313764],[-51.766717667176664,4.529321290805285],[-51.7631176311763,4.505681209026932],[-51.759517595175936,4.476975395438927],[-51.74871748717487,4.4567124682003225],[-51.73071730717308,4.4567124682003225],[-51.734317343173416,4.448269581850909],[-51.73791737917378,4.439826695501495],[-51.741517415174144,4.436449540961732],[-51.74511745117451,4.436449540961732],[-51.74511745117451,4.4296952318822065],[-51.73791737917378,4.412809459183379],[-51.73071730717308,4.3993008410243135],[-51.71271712717126,4.395923686484551],[-51.69831698316983,4.392546531944788],[-51.691116911169104,4.385792222865248],[-51.69471694716947,4.370595027436309],[-51.701917019170196,4.3638407183567836],[-51.71271712717126,4.353709254737481],[-51.716317163171624,4.333446327498891],[-51.716317163171624,4.316560554800063],[-51.709117091170896,4.299674782101235],[-51.66951669516695,4.242263154925226],[-51.65511655116552,4.216934495876984],[-51.651516515165156,4.189917259558868],[-51.64791647916479,4.152768559621435],[-51.651516515165156,4.122374168763557],[-51.67311673116731,4.061585387047771],[-51.683916839168376,4.039633882539306],[-51.651516515165156,4.04807676888872],[-51.633516335163335,4.06833969612731],[-51.59751597515975,4.157834291431087],[-51.59751597515975,4.215245918607096],[-51.58671586715866,4.233820268575812],[-51.57231572315723,4.2355088458457],[-51.557915579155775,4.22368880495651],[-51.550715507155076,4.206803032257682],[-51.53991539915398,4.149391405081673],[-51.5111151111511,4.080159737016487],[-51.449914499144995,3.970402214474106],[-51.43551435514354,3.929876359996925],[-51.42831428314284,3.9585821735849294],[-51.43551435514354,3.9855994099030596],[-51.46431464314642,4.031190996189892],[-51.49671496714967,4.105488396064729],[-51.54711547115471,4.255771773084291],[-51.56151561515614,4.357086409277244],[-51.56151561515614,4.3689064501664205],[-51.54711547115471,4.421252345532793],[-51.53631536315362,4.431383809152081],[-51.51471514715146,4.441515272771383],[-51.48951489514894,4.428006654612318],[-51.45351453514536,4.402677995564076],[-51.38871388713886,4.358774986547132],[-51.298712987129875,4.259148927624054],[-51.223112231122315,4.164588600510626],[-51.1871118711187,4.078471159746599],[-51.179911799117974,4.024436687110352],[-51.179911799117974,3.9248106281872737],[-51.179911799117974,3.8049216420256045],[-51.197911979119795,3.7002298512928746],[-51.17631176311764,3.647883955926517],[-51.172711727117274,3.67152403770487],[-51.154711547115454,3.737378551230293],[-51.147511475114754,3.8268731465340835],[-51.13671136711366,3.8673990010112647],[-51.115111151111506,3.9062362782185716],[-51.09351093510935,3.907924855488446],[-51.079110791107894,3.882596196440204],[-51.089910899108986,3.7255585103411164],[-51.08271082710826,3.592160906020382],[-51.079110791107894,3.4925348470973034],[-51.079110791107894,3.4891576925575407],[-51.097110971109714,3.4486318380803596],[-51.09351093510935,3.376023015475397],[-51.03591035910358,3.2291167929956117],[-51.028710287102854,3.181836629438891],[-51.039510395103946,3.151442238580998],[-51.03231032310322,3.1278021568026446],[-51.01791017910179,3.0923420341351004],[-51.014310143101426,3.07207910689651],[-51.01791017910179,3.0568819114675705],[-51.01791017910179,3.0349304069590914],[-51.003510035100334,3.023110366069915],[-50.996309963099634,3.006224593371087],[-50.989109891098906,2.980895934322845],[-50.98550985509854,2.9589444298143803],[-50.978309783097814,2.9386815025757755],[-50.963909639096386,2.9167299980673107],[-50.95310953109529,2.8897127617491805],[-50.945909459094594,2.874515566320241],[-50.945909459094594,2.8626955254310644],[-50.94950949509496,2.847498330002111],[-50.94950949509496,2.8373668663828226],[-50.945909459094594,2.822169670953869],[-50.9351093510935,2.8137267846044693],[-50.92430924309244,2.808661052794818],[-50.91710917109171,2.800218166445404],[-50.90270902709025,2.7934638573658646],[-50.89910899108992,2.7799552392068136],[-50.89190891908919,2.763069466507986],[-50.8811088110881,2.747872271079032],[-50.8739087390874,2.72929792111033],[-50.8739087390874,2.7039692620620883],[-50.86670866708667,2.6837063348234977],[-50.85230852308521,2.66682056212467],[-50.84510845108451,2.6465576348860793],[-50.84510845108451,2.6262947076474887],[-50.83430834308342,2.592523162249833],[-50.81990819908199,2.5519973077726377],[-50.82350823508236,2.5283572259942844],[-50.83070830708306,2.518225762374996],[-50.837908379083785,2.5148486078352192],[-50.84150841508415,2.5064057214858053],[-50.837908379083785,2.4979628351363914],[-50.83430834308342,2.491208526056866],[-50.82350823508236,2.4895199487869775],[-50.81630816308163,2.4945856805966287],[-50.812708127081265,2.5013399896761683],[-50.80550805508054,2.504717144215931],[-50.79110791107911,2.4945856805966287],[-50.77310773107732,2.465879867008624],[-50.762307623076225,2.443928362500145],[-50.762307623076225,2.4185997034519175],[-50.75150751507513,2.3966481989434385],[-50.74070740707407,2.378073848974722],[-50.74430744307443,2.367942385355434],[-50.74070740707407,2.351056612656606],[-50.73350733507334,2.3139079127191877],[-50.71910719107191,2.2919564082107087],[-50.71910719107191,2.258184862813053],[-50.711907119071185,2.236233358304574],[-50.69750697506976,2.2159704310659833],[-50.686706867068665,2.1990846583671555],[-50.67950679506794,2.1720674220490395],[-50.69390693906939,2.1467387630007977],[-50.70470704707046,2.1416730311911465],[-50.711907119071185,2.1382958766513838],[-50.72990729907298,2.1399844539212722],[-50.737107371073705,2.134918722111621],[-50.76590765907659,2.143361608461035],[-50.77670776707765,2.1501159175405604],[-50.787507875078745,2.161935958429737],[-50.79110791107911,2.161935958429737],[-50.79110791107911,2.1551816493502116],[-50.79110791107911,2.1501159175405604],[-50.787507875078745,2.1416730311911465],[-50.78030780307802,2.1366072993814953],[-50.77310773107732,2.1332301448417326],[-50.76590765907659,2.12985299030197],[-50.76590765907659,2.1247872584923186],[-50.76590765907659,2.118032949412793],[-50.76950769507695,2.107901485793491],[-50.77670776707765,2.082572826745249],[-50.78030780307802,2.0707527858560724],[-50.77310773107732,2.060621322236784],[-50.76950769507695,2.0521784358873703],[-50.762307623076225,2.0437355495379563],[-50.75150751507513,2.0454241268078306],[-50.74430744307443,2.0538670131572445],[-50.74430744307443,2.063998476776547],[-50.74430744307443,2.0758185176657236],[-50.74430744307443,2.085949981285026],[-50.73350733507334,2.104524331253728],[-50.71910719107191,2.1197215266826674],[-50.70110701107009,2.12985299030197],[-50.67950679506794,2.134918722111621],[-50.661506615066145,2.12985299030197],[-50.61830618306183,2.104524331253728],[-50.60030600306001,2.0758185176657236],[-50.59310593105931,2.0285383541090027],[-50.58950589505895,2.016718313219826],[-50.560705607056065,1.9626838405835798],[-50.53190531905318,1.9306008724558126],[-50.52110521105212,1.9120265224870963],[-50.51390513905139,1.8731892452798036],[-50.510305103051024,1.85799204985085],[-50.49950499504993,1.844483431691799],[-50.49230492304923,1.8326633908026082],[-50.46710467104671,1.8157776181037804],[-50.4311043110431,1.8022689999447294],[-50.395103951039516,1.7972032681350782],[-50.351903519035176,1.8056461544844922],[-50.33030330303302,1.8174661953736688],[-50.3051030510305,1.814089040833906],[-50.29070290702907,1.8124004635640176],[-50.269102691026916,1.8124004635640176],[-50.258302583025824,1.8073347317543806],[-50.22230222302224,1.814089040833906],[-50.20790207902078,1.814089040833906],[-50.18270182701826,1.8191547726435573],[-50.16470164701647,1.8157776181037804],[-50.13950139501395,1.7988918454049667],[-50.092700927009275,1.7820060727061389],[-50.00270002700026,1.751611681848246],[-49.95229952299522,1.721217290990353],[-49.923499234992335,1.6908229001324742],[-49.90909909099091,1.663805663814344],[-49.90909909099091,1.6587399320046927],[-49.90189901899018,1.611459768447986],[-49.898298982989814,1.5776882230503304],[-49.898298982989814,1.5574252958117398],[-49.89469894698948,1.5304080594936096],[-49.88749887498875,1.4696192777778379],[-49.87669876698766,1.4341591551102937],[-49.873098730987294,1.391944723363224],[-49.873098730987294,1.3598617552354568],[-49.88389883898839,1.307515859869099],[-49.89469894698948,1.2889415099003827],[-49.91269912699127,1.2720557372015548],[-49.941499414994155,1.258547119042504],[-49.973899738997375,1.2450385008834388],[-50.024300243002415,1.2298413054544852],[-50.067500675006755,1.2247755736448482],[-50.10350103501034,1.2146441100255458],[-50.117901179011795,1.2163326872954343],[-50.13230132301322,1.219709841835197],[-50.13950139501395,1.2247755736448482],[-50.150301503015015,1.2213984191050713],[-50.14670146701468,1.206201223676132],[-50.13950139501395,1.1943811827869553],[-50.12150121501216,1.1859382964375413],[-50.09630096300964,1.1943811827869553],[-50.067500675006755,1.1876268737074298],[-50.02790027900278,1.197758337326718],[-49.999099990999895,1.1994469145966065],[-49.973899738997375,1.197758337326718],[-49.94509945099452,1.2180212645653086],[-49.919899198992,1.2180212645653086],[-49.90549905499054,1.206201223676132],[-49.891098910989115,1.1859382964375413],[-49.88749887498875,1.1741182555483647],[-49.891098910989115,1.1656753691989508],[-49.90909909099091,1.1335924010711835],[-49.93789937899379,1.096443701133751],[-49.97749977499774,1.0728036193553976],[-50.01350013500135,1.0711150420855233],[-50.03150031500314,1.1065751647530533],[-50.042300423004235,1.0880008147843512],[-50.0459004590046,1.052540692116807],[-50.06030060300603,1.0187691467191513],[-50.09630096300964,1.003571951290212],[-50.1071010710107,0.995129064940798],[-50.143101431014315,0.9410945923045517],[-50.15750157501574,0.9275859741454866],[-50.1719017190172,0.91576593325631],[-50.24750247502473,0.8803058105887658],[-50.26190261902619,0.8701743469694776],[-50.301503015030136,0.8245827606826452],[-50.31230312303123,0.8178284516031056],[-50.344703447034476,0.7367767426487433],[-50.351903519035176,0.7266452790294409],[-50.36630366303663,0.7148252381402642],[-50.434704347043464,0.6793651154727343],[-50.452704527045256,0.6641679200437807],[-50.46710467104671,0.6455935700750786],[-50.49950499504993,0.5560989747712881],[-50.560705607056065,0.44803002949879556],[-50.60750607506074,0.3737326296239587],[-50.69390693906939,0.2859266115900567],[-50.79110791107911,0.16941477996815024],[-50.80190801908017,0.16941477996815024],[-50.81990819908199,0.17448051177780144],[-50.85230852308521,0.17448051177780144],[-50.92790927909277,0.15590616180909933],[-50.978309783097814,0.12044603914155516],[-51.01791017910179,0.07147729831496008],[-51.06831068310683,-0.019705874258704625],[-51.08271082710826,-0.03321449241776975],[-51.097110971109714,-0.038280224227420945],[-51.16191161911618,-0.0399688014972952],[-51.20151201512016,-0.04841168784670913],[-51.20871208712086,-0.053477419656360325],[-51.20871208712086,-0.06192030600577425],[-51.21591215912159,-0.0686746150852997],[-51.24111241112411,-0.07205176962507664],[-51.26631266312663,-0.0838718105142533],[-51.30951309513094,-0.07711750143471363],[-51.32751327513276,-0.0788060787046021],[-51.32751327513276,-0.08556038778412756],[-51.31671316713167,-0.09062611959377875],[-51.29511295112951,-0.09569185140342995],[-51.280712807128054,-0.1024461604829554],[-51.27711277112772,-0.1125776241022578],[-51.273512735127355,-0.12102051045167173],[-51.26631266312663,-0.12777481953119718],[-51.2519125191252,-0.12777481953119718],[-51.323913239132395,-0.21558083756509916],[-51.33831338313382,-0.2611724238519315],[-51.356313563135615,-0.289878237439936],[-51.36351363513634,-0.3253383601074802],[-51.37071370713707,-0.34222413280630803],[-51.38871388713886,-0.37430710093407527],[-51.399513995139955,-0.38950429636301465],[-51.431914319143175,-0.4148329554112564],[-51.44271442714427,-0.42834157357032154],[-51.44631446314463,-0.4401616144594982],[-51.44271442714427,-0.4553588098884376],[-51.44631446314463,-0.4722445825872654],[-51.45351453514536,-0.487441778016219],[-51.48591485914858,-0.5178361688740978],[-51.507515075150735,-0.5313447870331629],[-51.52191521915219,-0.5380990961126884],[-51.53631536315362,-0.5364105188428141],[-51.56151561515614,-0.5262790552235117],[-51.57951579515796,-0.5245904779536374],[-51.57951579515796,-0.5313447870331629],[-51.57231572315723,-0.5313447870331629],[-51.5651156511565,-0.5330333643030514],[-51.55431554315544,-0.5380990961126884],[-51.55431554315544,-0.544853405192228],[-51.56871568715687,-0.5499191370018792],[-51.58671586715866,-0.5516077142717535],[-51.58671586715866,-0.5583620233512931],[-51.57231572315723,-0.5600506006211674],[-51.56151561515614,-0.5583620233512931],[-51.550715507155076,-0.5549848688115162],[-51.54711547115471,-0.544853405192228],[-51.532715327153255,-0.5516077142717535],[-51.57951579515796,-0.6039536096381255],[-51.629916299163,-0.6765624322430739],[-51.6371163711637,-0.6816281640527251],[-51.651516515165156,-0.690071050402139],[-51.65511655116552,-0.6951367822117902],[-51.69831698316983,-0.747482677578148],[-51.701917019170196,-0.7593027184673247],[-51.71271712717126,-0.7930742638649804],[-51.72351723517235,-0.8775031273591196],[-51.709117091170896,-0.9788177635520725],[-51.71271712717126,-1.010900731679854],[-51.71271712717126,-1.0210321952991421],[-51.716317163171624,-1.0277865043786818],[-51.71991719917199,-1.0328522361883188],[-51.72351723517235,-1.0396065452678585],[-51.734317343173416,-1.046360854347384],[-51.752317523175236,-1.0548037406967978],[-51.784717847178456,-1.0835095542848023],[-51.79911799117991,-1.0919524406342163],[-51.82071820718207,-1.1240354087619977],[-51.835118351183496,-1.1341668723812859],[-51.90711907119072,-1.1578069541596392],[-51.92871928719288,-1.178069881398244],[-51.92871928719288,-1.2236614676850763],[-51.91431914319142,-1.3097789084490898],[-51.92151921519215,-1.3249761038780292],[-51.935919359193576,-1.3401732993069828],[-51.96471964719646,-1.3604362265455734],[-51.99711997119971,-1.3958963492131033],[-52.00792007920079,-1.4009620810227545],[-52.06552065520654,-1.4043392355625173],[-52.08712087120871,-1.4009620810227545],[-52.15192151921519,-1.380699153784164],[-52.16632166321662,-1.3705676901648616],[-52.18072180721806,-1.3570590720057965],[-52.195121951219505,-1.3452390311166198],[-52.21312213122131,-1.3401732993069828],[-52.23832238322383,-1.3469276083865083],[-52.24912249122491,-1.3536819174660337],[-52.27432274322743,-1.3840763083239267],[-52.28512285122851,-1.3908306174034522],[-52.306723067230664,-1.394207771943229],[-52.331923319233184,-1.40771639010228],[-52.40032400324003,-1.4212250082613451],[-52.421924219242186,-1.429667894610759],[-52.44352443524434,-1.4431765127698242],[-52.457924579245784,-1.4583737081987636],[-52.46512465124651,-1.473570903627703],[-52.47592475924759,-1.4837023672470053],[-52.558725587255864,-1.5191624899145353],[-52.57672576725767,-1.5225396444543122],[-52.61992619926198,-1.525916798994075],[-52.681126811268115,-1.544491148962777],[-52.69912699126991,-1.552934035312191],[-52.706327063270635,-1.561376921661605],[-52.709927099270985,-1.5681312307411446],[-52.709927099270985,-1.5765741170905585],[-52.709927099270985,-1.5900827352496094],[-52.706327063270635,-1.6002141988689118],[-52.69912699126991,-1.6002141988689118],[-52.69192691926919,-1.596837044329149],[-52.681126811268115,-1.5934598897893864],[-52.659526595265945,-1.5917713125194979],[-52.59472594725946,-1.5731969625507816],[-52.421924219242186,-1.566442653471256],[-52.34272342723426,-1.552934035312191],[-52.328323283232834,-1.547868303502554],[-52.29232292322922,-1.5242282217241865],[-52.277922779227794,-1.517473912644661],[-52.26352263522635,-1.525916798994075],[-52.24912249122491,-1.5428025716929028],[-52.24192241922418,-1.561376921661605],[-52.23832238322383,-1.5850170034399724],[-52.23472234722347,-1.5934598897893864],[-52.2311223112231,-1.6019027761388003],[-52.2311223112231,-1.613722817027977],[-52.23832238322383,-1.6255428579171536],[-52.25272252722527,-1.6441172078858557],[-52.25992259922599,-1.6559372487750466],[-52.26352263522635,-1.6762001760136371],[-52.25992259922599,-1.6947745259823392],[-52.24912249122491,-1.7032174123317532],[-52.22392223922239,-1.6913973714425765],[-52.20952209522095,-1.6913973714425765],[-52.20232202322023,-1.689708794172688],[-52.19872198721987,-1.684643062363051],[-52.19872198721987,-1.6745115987437487],[-52.19872198721987,-1.6694458669340975],[-52.16272162721627,-1.6356743215364418],[-52.1411214112141,-1.6221657033773909],[-52.12312123121231,-1.6187885488376281],[-52.07632076320763,-1.6204771261075024],[-52.07272072720727,-1.6187885488376281],[-52.05832058320583,-1.6103456624882142],[-52.04752047520475,-1.6069685079484373],[-52.03672036720367,-1.6069685079484373],[-52.0151201512015,-1.6086570852183257],[-52.00432004320042,-1.6069685079484373],[-51.95751957519576,-1.5934598897893864],[-51.91431914319142,-1.5715083852809073],[-51.66951669516695,-1.4009620810227545],[-51.59391593915939,-1.3874534628636894],[-51.575915759157596,-1.3773219992444012],[-51.557915579155775,-1.3655019583552104],[-51.482314823148215,-1.3401732993069828],[-51.46071460714606,-1.3300418356876804],[-51.4391143911439,-1.3131560629888526],[-51.41751417514175,-1.2912045584803735],[-51.41031410314102,-1.2675644767020202],[-51.399513995139955,-1.2506787040031924],[-51.3779137791378,-1.24054724038389],[-51.32751327513276,-1.2304157767646018],[-51.32751327513276,-1.2371700858441272],[-51.33471334713346,-1.24054724038389],[-51.33831338313382,-1.2456129721935412],[-51.34191341913419,-1.2506787040031924],[-51.349113491134915,-1.2574330130827178],[-51.32751327513276,-1.254055858542955],[-51.305913059130575,-1.243924394923667],[-51.28431284312842,-1.2321043540344903],[-51.26991269912699,-1.2202843131452994],[-51.2519125191252,-1.2017099631765973],[-51.22671226712268,-1.1628726859692904],[-51.21231212312122,-1.1442983360005883],[-51.1871118711187,-1.1223468314921092],[-51.16191161911618,-1.103772481523393],[-51.03231032310322,-1.03791796799797],[-51.003510035100334,-1.0142778862196167],[-50.99270992709927,-0.9872606499014864],[-50.996309963099634,-0.9703748772026586],[-51.0071100711007,-0.9534891045038449],[-51.01071010710106,-0.9366033318050171],[-50.996309963099634,-0.923094713645952],[-50.978309783097814,-0.9197175591061892],[-50.95670956709566,-0.950111949964068],[-50.9351093510935,-0.9568662590436077],[-50.9351093510935,-0.9484233726941937],[-50.945909459094594,-0.9416690636146541],[-50.95310953109529,-0.9315375999953659],[-50.95310953109529,-0.9197175591061892],[-50.94230942309423,-0.9095860954868868],[-50.92790927909277,-0.9062089409471241],[-50.8811088110881,-0.914651827296538],[-50.85590855908558,-0.9112746727567753],[-50.837908379083785,-0.9129632500266496],[-50.82710827108269,-0.923094713645952],[-50.81990819908199,-0.9349147545351286],[-50.82350823508236,-0.950111949964068],[-50.82710827108269,-0.9838834953617237],[-50.82350823508236,-1.0311636589184445],[-50.82710827108269,-1.0446722770775096],[-50.83430834308342,-1.0581808952365606],[-50.84510845108451,-1.0666237815859745],[-50.85590855908558,-1.0716895133956257],[-50.86670866708667,-1.0801323997450396],[-50.89190891908919,-1.1122153678728068],[-50.90270902709025,-1.1206582542222208],[-50.913509135091346,-1.125723986031872],[-50.92430924309244,-1.1274125633017604],[-50.95670956709566,-1.1291011405716347],[-50.84870848708488,-1.1983328086368346],[-50.83070830708306,-1.213530004065774],[-50.81990819908199,-1.2321043540344903],[-50.81990819908199,-1.2523672812730808],[-50.83070830708306,-1.311467485718964],[-50.82710827108269,-1.3705676901648616],[-50.82350823508236,-1.3756334219745128],[-50.81630816308163,-1.3823877310540382],[-50.8091080910809,-1.3908306174034522],[-50.80550805508054,-1.4009620810227545],[-50.812708127081265,-1.4144706991818197],[-50.81630816308163,-1.4246021628011079],[-50.81990819908199,-1.4364222036902845],[-50.8091080910809,-1.4583737081987636],[-50.78030780307802,-1.4988995626759447],[-50.76590765907659,-1.5411139944230143],[-50.7551075510755,-1.556311189851968],[-50.69030690306903,-1.6120342397580885],[-50.67950679506794,-1.6289200124569163],[-50.66870668706687,-1.6964631032522277],[-50.66510665106651,-1.720103185030581],[-50.65430654306542,-1.7386775349992973],[-50.67230672306724,-1.7640061940475391],[-50.69030690306903,-1.7656947713174134],[-50.737107371073705,-1.7386775349992973],[-50.72630726307261,-1.7606290395077622],[-50.71910719107191,-1.769071925857176],[-50.70830708307082,-1.7910234303656551],[-50.71550715507155,-1.8231063984934224],[-50.74070740707407,-1.8332378621127248],[-50.75870758707586,-1.8450579030019014],[-50.76590765907659,-1.8636322529706177],[-50.76590765907659,-1.8822066029393199],[-50.787507875078745,-1.8974037983682734],[-50.81630816308163,-1.895715221098385],[-50.837908379083785,-1.8822066029393199],[-50.85950859508594,-1.865320830240492],[-50.8811088110881,-1.8518122120814269],[-50.888308883088825,-1.8686979847802547],[-50.89190891908919,-1.8788294483995571],[-50.8811088110881,-1.8822066029393199],[-50.870308703087034,-1.9007809529080362],[-50.85230852308521,-1.9075352619875616],[-50.85590855908558,-1.9328639210358034],[-50.84510845108451,-1.9548154255442824],[-50.83070830708306,-1.9632583118936964],[-50.81990819908199,-1.9683240437033334],[-50.82350823508236,-1.9463725391948685],[-50.82710827108269,-1.931175343765915],[-50.81990819908199,-1.9244210346863895],[-50.79110791107911,-1.9277981892261522],[-50.737107371073705,-1.9210438801466267],[-50.711907119071185,-1.914289571067087],[-50.70110701107009,-1.90922383925745],[-50.69750697506976,-1.8889609120188595],[-50.70110701107009,-1.8720751393200317],[-50.69750697506976,-1.8535007893513153],[-50.69030690306903,-1.8433693257320272],[-50.67590675906757,-1.829860707572962],[-50.66870668706687,-1.807909203064483],[-50.661506615066145,-1.8028434712548318],[-50.63270632706326,-1.8112863576042457],[-50.611106111061105,-1.8146635121440085],[-50.59310593105931,-1.8433693257320272],[-50.56430564305643,-1.8906494892887338],[-50.54630546305464,-1.9075352619875616],[-50.52470524705245,-1.9210438801466267],[-50.503105031050296,-1.9294867664960407],[-50.48870488704887,-1.9277981892261522],[-50.477904779047776,-1.926109611956278],[-50.46710467104671,-1.9277981892261522],[-50.46350463504635,-1.9396182301153289],[-50.46710467104671,-1.9463725391948685],[-50.48150481504814,-1.966635466433459],[-50.485104851048504,-1.9784555073226358],[-50.47070470704708,-1.9700126209732218],[-50.45630456304562,-1.94468396192498],[-50.44190441904419,-1.9362410755755661],[-50.44190441904419,-1.9463725391948685],[-50.44190441904419,-1.9565040028141567],[-50.445504455044556,-1.9649468891635706],[-50.452704527045256,-1.9733897755129846],[-50.45630456304562,-1.983521239132287],[-50.452704527045256,-1.9936527027515751],[-50.44190441904419,-2.0122270527202915],[-50.434704347043464,-2.0443100208480587],[-50.427504275042736,-2.062884370816775],[-50.41670416704167,-2.073015834436063],[-50.409504095040944,-2.0476871753878214],[-50.402304023040216,-2.0358671344986448],[-50.395103951039516,-2.0257356708793566],[-50.38070380703806,-2.0172927845299427],[-50.377103771037696,-2.005472743640766],[-50.377103771037696,-1.9987184345612263],[-50.37350373503733,-1.9868983936720497],[-50.37350373503733,-1.9733897755129846],[-50.36270362703627,-1.961569734623808],[-50.34110341103411,-1.9362410755755661],[-50.31230312303123,-1.90922383925745],[-50.27990279902798,-1.8940266438284965],[-50.251102511025096,-1.9024695301779104],[-50.233102331023304,-1.895715221098385],[-50.20790207902078,-1.8974037983682734],[-50.18270182701826,-1.904158107447799],[-50.16110161101611,-1.9159781483369756],[-50.15390153901538,-1.8822066029393199],[-50.13590135901359,-1.8619436757007293],[-50.11070110701107,-1.8484350575416642],[-50.024300243002415,-1.8264835530331993],[-49.999099990999895,-1.8231063984934224],[-49.97749977499774,-1.8264835530331993],[-49.95229952299522,-1.8332378621127248],[-49.93069930699306,-1.8433693257320272],[-49.87669876698766,-1.8788294483995571],[-49.86949869498696,-1.8889609120188595],[-49.865898658986595,-1.9058466847176732],[-49.86949869498696,-1.9193553028767383],[-49.89469894698948,-1.9632583118936964],[-49.873098730987294,-1.9429953846551058],[-49.85869858698587,-1.922732457416501],[-49.8550985509855,-1.9429953846551058],[-49.85149851498514,-1.9632583118936964],[-49.85149851498514,-1.983521239132287],[-49.8550985509855,-2.005472743640766],[-49.86229862298623,-2.0257356708793566],[-49.88029880298802,-2.0662615253565377],[-49.88749887498875,-2.088213029865017],[-49.88029880298802,-2.088213029865017],[-49.85869858698587,-2.045998598117947],[-49.8550985509855,-2.045998598117947],[-49.847898478984774,-2.062884370816775],[-49.83709837098371,-2.081458720785477],[-49.82629826298262,-2.098344493484305],[-49.81189811898119,-2.1084759571036074],[-49.82989829898298,-2.057818639007124],[-49.840698406984075,-2.005472743640766],[-49.83709837098371,-1.926109611956278],[-49.847898478984774,-1.90922383925745],[-49.847898478984774,-1.9024695301779104],[-49.83349833498335,-1.9058466847176732],[-49.82989829898298,-1.917666725606864],[-49.83349833498335,-1.9497496937346313],[-49.822698226982254,-1.9277981892261522],[-49.81909819098192,-1.9126009937972128],[-49.81189811898119,-1.9007809529080362],[-49.783097830978306,-1.895715221098385],[-49.76149761497615,-1.8974037983682734],[-49.747097470974694,-1.904158107447799],[-49.73629736297363,-1.9159781483369756],[-49.72549725497254,-1.9294867664960407],[-49.7290972909729,-1.9109124165273244],[-49.721897218972174,-1.904158107447799],[-49.71109711097111,-1.9075352619875616],[-49.70389703897038,-1.922732457416501],[-49.69309693096932,-1.9075352619875616],[-49.6750967509675,-1.90922383925745],[-49.65349653496534,-1.9193553028767383],[-49.621096210962094,-1.9497496937346313],[-49.6030960309603,-1.9683240437033334],[-49.595895958959574,-1.9885869709419381],[-49.59229592295924,-2.0122270527202915],[-49.57789577895778,-1.9936527027515751],[-49.59229592295924,-1.9632583118936964],[-49.63549635496355,-1.90922383925745],[-49.646296462964614,-1.9159781483369756],[-49.64989649896498,-1.9075352619875616],[-49.65349653496534,-1.895715221098385],[-49.631896318963186,-1.8670094075103805],[-49.59949599495994,-1.8433693257320272],[-49.563495634956354,-1.8349264393826132],[-49.538295382953834,-1.8602550984308408],[-49.52389523895238,-1.7960891621753063],[-49.50949509495095,-1.7792033894764785],[-49.48429484294843,-1.7640061940475391],[-49.46629466294664,-1.7640061940475391],[-49.45909459094591,-1.7792033894764785],[-49.46269462694627,-1.8062206257945945],[-49.45189451894518,-1.799466316715069],[-49.43749437494375,-1.7842691212861297],[-49.4230942309423,-1.7792033894764785],[-49.42669426694266,-1.799466316715069],[-49.45189451894518,-1.8247949757633108],[-49.455494554945545,-1.8366150166524875],[-49.455494554945545,-1.856877943891078],[-49.44829448294482,-1.8703865620501432],[-49.43389433894339,-1.8805180256694456],[-49.4158941589416,-1.8889609120188595],[-49.379893798937985,-1.895715221098385],[-49.36909369093689,-1.9058466847176732],[-49.36909369093689,-1.926109611956278],[-49.36909369093689,-1.9396182301153289],[-49.37629376293762,-1.9565040028141567],[-49.38349383493835,-1.9733897755129846],[-49.39429394293941,-1.983521239132287],[-49.39429394293941,-1.9919641254817009],[-49.379893798937985,-1.9919641254817009],[-49.39069390693908,-2.005472743640766],[-49.41229412294123,-2.027424248149231],[-49.4230942309423,-2.0392442890384075],[-49.42669426694266,-2.0510643299275984],[-49.42669426694266,-2.1321160388819607],[-49.430294302943025,-2.1405589252313746],[-49.44109441094412,-2.160821852469965],[-49.44469444694445,-2.1844619342483185],[-49.45189451894518,-2.191216243327858],[-49.46269462694627,-2.1962819751375093],[-49.46989469894697,-2.203036284217035],[-49.49509495094949,-2.2469392932339787],[-49.49869498694986,-2.25200502504363],[-49.50229502295022,-2.2587593341231695],[-49.50229502295022,-2.309416652219639],[-49.505895058950586,-2.3195481158389413],[-49.513095130951314,-2.3263024249184667],[-49.52029520295201,-2.3330567339980064],[-49.52389523895238,-2.3414996203474203],[-49.52749527495274,-2.3516310839667085],[-49.52749527495274,-2.370205433935425],[-49.531095310953106,-2.380336897554713],[-49.5490954909549,-2.402288402063192],[-49.55269552695526,-2.4124198656824944],[-49.5490954909549,-2.424239906571671],[-49.54549545495453,-2.442814256540373],[-49.5418954189542,-2.4968487291766195],[-49.54549545495453,-2.51711165641521],[-49.606696066960666,-2.604917674449112],[-49.61749617496176,-2.6150491380684144],[-49.639096390963914,-2.6201148698780656],[-49.66069660696607,-2.6319349107672423],[-49.67869678696786,-2.64882068346607],[-49.689496894968954,-2.6690836107046607],[-49.664296642966434,-2.6775264970540746],[-49.621096210962094,-2.670772187974549],[-49.54549545495453,-2.6420663743865305],[-49.52749527495274,-2.6285577562274796],[-49.52389523895238,-2.6150491380684144],[-49.52389523895238,-2.6015405199093493],[-49.51669516695168,-2.5795890154008703],[-49.513095130951314,-2.572834706321345],[-49.49149491494916,-2.5627032427020566],[-49.487894878948794,-2.561014665432168],[-49.48429484294843,-2.5576375108924054],[-49.480694806948065,-2.539063160923689],[-49.4770947709477,-2.5323088518441637],[-49.45189451894518,-2.506980192795922],[-49.44109441094412,-2.4917829973669825],[-49.43749437494375,-2.4698314928585035],[-49.43389433894339,-2.451257142889787],[-49.43749437494375,-2.4141084429523687],[-49.43749437494375,-2.3955340929836666],[-49.42669426694266,-2.366828279395662],[-49.33309333093331,-2.2047248614869233],[-49.31509315093152,-2.160821852469965],[-49.304293042930425,-2.1236731525325467],[-49.304293042930425,-2.1050988025638446],[-49.30069300693006,-2.0915901844047795],[-49.23229232292323,-1.9480611164647428],[-49.203492034920345,-1.9075352619875616],[-49.17469174691746,-1.8822066029393199],[-49.16749167491673,-1.8788294483995571],[-49.16029160291603,-1.8754522938597944],[-49.145891458914576,-1.856877943891078],[-49.14229142291421,-1.8399921711922502],[-49.127891278912784,-1.8011548939849575],[-49.12429124291242,-1.7673833485873018],[-49.08829088290884,-1.7488089986185855],[-49.04869048690486,-1.7217917623004695],[-49.00909009090091,-1.6812659078232883],[-48.99108991089909,-1.6356743215364418],[-48.96588965889657,-1.6002141988689118],[-48.926289262892624,-1.5934598897893864],[-48.90468904689047,-1.5850170034399724],[-48.87948879488795,-1.5715083852809073],[-48.86508865088649,-1.5596883443917307],[-48.85788857888579,-1.5596883443917307],[-48.85788857888579,-1.566442653471256],[-48.875888758887584,-1.5867055807098467],[-48.893888938889376,-1.5985256215990233],[-48.893888938889376,-1.6221657033773909],[-48.90468904689047,-1.6390514760762187],[-48.911889118891196,-1.6728230214738744],[-48.92988929889299,-1.6863316396329253],[-48.937089370893716,-1.693085948712465],[-48.944289442894416,-1.6998402577919904],[-48.94788947889478,-1.7049059896016416],[-48.94068940689405,-1.720103185030581],[-48.944289442894416,-1.7437432668089343],[-48.95508955089551,-1.7656947713174134],[-48.969489694896936,-1.785957698556004],[-48.994689946899456,-1.7927120076355436],[-49.012690126901276,-1.807909203064483],[-49.019890198901976,-1.8281721303030736],[-49.03069030690307,-1.838303593922376],[-49.03429034290343,-1.84674648027179],[-49.01629016290161,-1.84674648027179],[-49.001890018900184,-1.8433693257320272],[-48.99108991089909,-1.8332378621127248],[-48.98388983889839,-1.8146635121440085],[-48.95508955089551,-1.8028434712548318],[-48.92988929889299,-1.7876462758258924],[-48.919089190891896,-1.7623176167776506],[-48.911889118891196,-1.74205468953906],[-48.901089010890104,-1.7353003804595346],[-48.893888938889376,-1.7234803395703437],[-48.88308883088831,-1.7167260304908183],[-48.88308883088831,-1.7133488759510556],[-48.89028890288901,-1.693085948712465],[-48.89028890288901,-1.6863316396329253],[-48.88308883088831,-1.6795773305533999],[-48.86508865088649,-1.671134444203986],[-48.85788857888579,-1.6660687123943347],[-48.85428854288543,-1.662691557854572],[-48.8470884708847,-1.6491829396955069],[-48.8470884708847,-1.6458057851557442],[-48.843488434884335,-1.640740053346093],[-48.83988839888397,-1.6424286306159814],[-48.836288362883636,-1.6424286306159814],[-48.82908829088291,-1.640740053346093],[-48.818288182881815,-1.640740053346093],[-48.81468814688145,-1.6390514760762187],[-48.811088110881116,-1.6339857442665675],[-48.81468814688145,-1.6255428579171536],[-48.811088110881116,-1.6204771261075024],[-48.735487354873555,-1.5107196035651356],[-48.735487354873555,-1.5073424490253586],[-48.735487354873555,-1.5022767172157216],[-48.735487354873555,-1.4988995626759447],[-48.73188731887319,-1.4938338308663077],[-48.72828728287283,-1.4921452535964193],[-48.717487174871735,-1.4921452535964193],[-48.717487174871735,-1.4904566763265308],[-48.70308703087031,-1.4786366354373541],[-48.69948699486994,-1.473570903627703],[-48.69588695886958,-1.4634394400084147],[-48.67788677886779,-1.4178478537215824],[-48.65628656286563,-1.3840763083239267],[-48.641886418864175,-1.3857648855938152],[-48.63108631086311,-1.4060278128324057],[-48.616686166861655,-1.4279793173408706],[-48.60588605886059,-1.4566851309288893],[-48.57708577085771,-1.5124081808350098],[-48.56268562685625,-1.5292939535338377],[-48.55188551885519,-1.544491148962777],[-48.54468544685446,-1.566442653471256],[-48.533885338853395,-1.5816398489001955],[-48.5230852308523,-1.5799512716303212],[-48.50148501485015,-1.6120342397580885],[-48.490684906849054,-1.6187885488376281],[-48.465484654846534,-1.6204771261075024],[-48.45108451084511,-1.6255428579171536],[-48.440284402844014,-1.6356743215364418],[-48.433084330843315,-1.6491829396955069],[-48.42948429484295,-1.662691557854572],[-48.42228422284222,-1.6458057851557442],[-48.425884258842586,-1.6255428579171536],[-48.42948429484295,-1.6069685079484373],[-48.433084330843315,-1.5900827352496094],[-48.44388443884438,-1.5698198080110188],[-48.47988479884799,-1.5343596853434889],[-48.483484834848355,-1.5107196035651356],[-48.465484654846534,-1.5225396444543122],[-48.44748447484474,-1.525916798994075],[-48.42948429484295,-1.5242282217241865],[-48.375483754837546,-1.5107196035651356],[-48.357483574835754,-1.5005881399458332],[-48.339483394833934,-1.487079521786768],[-48.325083250832506,-1.4701937490879402],[-48.33588335883357,-1.468505171818066],[-48.364683646836454,-1.4701937490879402],[-48.37908379083791,-1.468505171818066],[-48.389883898838974,-1.4668165945481775],[-48.3970839708397,-1.4617508627385263],[-48.407884078840794,-1.4566851309288893],[-48.41868418684186,-1.465128017278289],[-48.43668436684365,-1.4701937490879402],[-48.45468454684547,-1.473570903627703],[-48.47628476284763,-1.4701937490879402],[-48.49788497884978,-1.4617508627385263],[-48.50508505085051,-1.4482422445794754],[-48.50148501485015,-1.4313564718806475],[-48.49788497884978,-1.40771639010228],[-48.490684906849054,-1.3266646811479177],[-48.483484834848355,-1.2810730948610853],[-48.45468454684547,-1.243924394923667],[-48.43668436684365,-1.2185957358754251],[-48.42228422284222,-1.2321043540344903],[-48.42948429484295,-1.2658758994321317],[-48.425884258842586,-1.2979588675599132],[-48.41148411484113,-1.3030245993695502],[-48.339483394833934,-1.3165332175286153],[-48.33588335883357,-1.3131560629888526],[-48.332283322833234,-1.2945817130201505],[-48.325083250832506,-1.2793845175911969],[-48.32148321483214,-1.2304157767646018],[-48.30348303483035,-1.1882013450175322],[-48.281882818828194,-1.1662498405090531],[-48.249482494824946,-1.1898899222874206],[-48.256682566825674,-1.1730041495885928],[-48.2710827108271,-1.1611841086994161],[-48.27828278282783,-1.1493640678102253],[-48.2710827108271,-1.1341668723812859],[-48.27828278282783,-1.1291011405716347],[-48.2710827108271,-1.1206582542222208],[-48.26028260282601,-1.125723986031872],[-48.249482494824946,-1.1223468314921092],[-48.23508235082349,-1.117281099682458],[-48.224282242822426,-1.1139039451426953],[-48.23508235082349,-1.108838213333044],[-48.24588245882458,-1.108838213333044],[-48.274682746827466,-1.1139039451426953],[-48.27828278282783,-1.108838213333044],[-48.29268292682926,-1.0801323997450396],[-48.29628296282962,-1.0548037406967978],[-48.29268292682926,-1.0429836998076212],[-48.27828278282783,-1.0396065452678585],[-48.231482314823154,-1.03791796799797],[-48.213482134821334,-1.0362293907280957],[-48.199081990819906,-1.0311636589184445],[-48.18828188281881,-1.0193436180292679],[-48.18468184681845,-1.0092121544099655],[-48.18468184681845,-0.9973921135207888],[-48.18468184681845,-0.9889492271713749],[-48.17748177481775,-0.9838834953617237],[-48.17748177481775,-0.980506340821961],[-48.16308163081629,-0.9636205681231331],[-48.15948159481593,-0.9602434135833704],[-48.15948159481593,-0.9366033318050171],[-48.15228152281523,-0.914651827296538],[-48.148681486814866,-0.9112746727567753],[-48.14148141481414,-0.9062089409471241],[-48.14148141481414,-0.9011432091374729],[-48.1450814508145,-0.8859460137085335],[-48.1450814508145,-0.8808802818988823],[-48.14148141481414,-0.8555516228506406],[-48.14148141481414,-0.8437315819614639],[-48.1450814508145,-0.8336001183421615],[-48.15228152281523,-0.8268458092626361],[-48.155881558815594,-0.8217800774529849],[-48.15948159481593,-0.8167143456433337],[-48.15948159481593,-0.7964514184047431],[-48.15228152281523,-0.7812542229758037],[-48.11268112681125,-0.7238425957997947],[-48.03708037080369,-0.6613652368141345],[-48.02628026280263,-0.6748738549731996],[-48.022680226802265,-0.6833167413226136],[-48.0190801908019,-0.6951367822117902],[-48.0190801908019,-0.7018910912913157],[-48.022680226802265,-0.7153997094503808],[-48.022680226802265,-0.7238425957997947],[-48.022680226802265,-0.725531173069669],[-48.01188011880117,-0.7305969048793202],[-48.00828008280084,-0.7339740594190829],[-48.00108001080011,-0.7457941003082595],[-47.96867968679686,-0.7795656457059152],[-47.96147961479613,-0.7812542229758037],[-47.947079470794705,-0.7407283684986226],[-47.87867878678787,-0.6968253594816645],[-47.86787867878678,-0.6731852777033112],[-47.84987849878499,-0.6714967004334227],[-47.821078210782105,-0.6799395867828366],[-47.80307803078031,-0.690071050402139],[-47.80667806678068,-0.6765624322430739],[-47.821078210782105,-0.6647423913538972],[-47.82467824678247,-0.6394137323056555],[-47.82467824678247,-0.6073307641778882],[-47.81747817478174,-0.5887564142091719],[-47.81387813878138,-0.5735592187802325],[-47.81027810278101,-0.5651163324308186],[-47.788677886778856,-0.5820021051296465],[-47.77427774277743,-0.5988878778284743],[-47.770677706777064,-0.6191508050670649],[-47.770677706777064,-0.637725155035767],[-47.745477454774544,-0.6343480004960043],[-47.72387723877239,-0.6444794641153067],[-47.71667716677166,-0.66811954589366],[-47.71667716677166,-0.7137111321804923],[-47.72387723877239,-0.7238425957997947],[-47.73467734677345,-0.7356626366889714],[-47.74187741877418,-0.7457941003082595],[-47.73467734677345,-0.7576141411974504],[-47.72747727477275,-0.7559255639275619],[-47.65187651876519,-0.7238425957997947],[-47.62667626676267,-0.7069568231009669],[-47.612276122761216,-0.6934482049419017],[-47.59787597875979,-0.6765624322430739],[-47.587075870758696,-0.6411023095755439],[-47.579875798757996,-0.6360365777658927],[-47.587075870758696,-0.6140850732574137],[-47.58347583475833,-0.5786249505898837],[-47.57267572675727,-0.5820021051296465],[-47.55827558275581,-0.5904449914790604],[-47.536675366753656,-0.610707918717651],[-47.543875438754384,-0.6275936914164788],[-47.53307533075329,-0.637725155035767],[-47.529475294752956,-0.6461680413851809],[-47.52587525875259,-0.6579880822743718],[-47.52227522275223,-0.6698081231635484],[-47.518675186751864,-0.6765624322430739],[-47.50787507875077,-0.6866938958623763],[-47.493474934749344,-0.712022554910618],[-47.486274862748616,-0.7289083276094459],[-47.486274862748616,-0.7457941003082595],[-47.49707497074971,-0.7643684502769759],[-47.42507425074251,-0.7643684502769759],[-47.40707407074069,-0.7711227593565013],[-47.40707407074069,-0.8015171502143943],[-47.39267392673926,-0.813337191103571],[-47.39267392673926,-0.8015171502143943],[-47.3890738907389,-0.7896971093252176],[-47.385473854738535,-0.7795656457059152],[-47.378273782737836,-0.7711227593565013],[-47.385473854738535,-0.7677456048167386],[-47.3890738907389,-0.7626798730070874],[-47.39267392673926,-0.7559255639275619],[-47.39267392673926,-0.747482677578148],[-47.41427414274142,-0.7373512139588598],[-47.43947439474394,-0.7035796685612041],[-47.44667446674467,-0.6951367822117902],[-47.45027450274503,-0.7069568231009669],[-47.453874538745396,-0.717088286720255],[-47.461074610746095,-0.7238425957997947],[-47.468274682746824,-0.7305969048793202],[-47.468274682746824,-0.6225279596068276],[-47.46467464674646,-0.6090193414477625],[-47.44667446674467,-0.6073307641778882],[-47.461074610746095,-0.5921335687489346],[-47.44667446674467,-0.5853792596694092],[-47.428674286742876,-0.580313527859758],[-47.41427414274142,-0.5820021051296465],[-47.39987399873999,-0.5921335687489346],[-47.403474034740356,-0.6005764550983486],[-47.410674106741055,-0.6090193414477625],[-47.41427414274142,-0.6140850732574137],[-47.410674106741055,-0.6275936914164788],[-47.41427414274142,-0.6613652368141345],[-47.40707407074069,-0.6816281640527251],[-47.40707407074069,-0.6698081231635484],[-47.40707407074069,-0.659676659544246],[-47.403474034740356,-0.6529223504647206],[-47.39267392673926,-0.6478566186550694],[-47.3890738907389,-0.6613652368141345],[-47.385473854738535,-0.6731852777033112],[-47.378273782737836,-0.6799395867828366],[-47.36747367473674,-0.6816281640527251],[-47.36747367473674,-0.6765624322430739],[-47.37467374673747,-0.6698081231635484],[-47.38187381873817,-0.659676659544246],[-47.38187381873817,-0.6461680413851809],[-47.37467374673747,-0.6343480004960043],[-47.360273602736015,-0.6309708459562415],[-47.34587345873459,-0.637725155035767],[-47.32427324273243,-0.6546109277345948],[-47.327873278732795,-0.6394137323056555],[-47.33147331473313,-0.6292822686863531],[-47.33867338673386,-0.6208393823369533],[-47.34587345873459,-0.6073307641778882],[-47.327873278732795,-0.6140850732574137],[-47.3170731707317,-0.6073307641778882],[-47.30627306273061,-0.5971993005585858],[-47.29547295472955,-0.5921335687489346],[-47.277472774727755,-0.5988878778284743],[-47.277472774727755,-0.6140850732574137],[-47.277472774727755,-0.63265942322613],[-47.277472774727755,-0.6478566186550694],[-47.27027270272703,-0.6478566186550694],[-47.259472594725935,-0.6411023095755439],[-47.252272522725235,-0.6478566186550694],[-47.24867248672487,-0.6613652368141345],[-47.25587255872557,-0.6765624322430739],[-47.23787237872378,-0.6647423913538972],[-47.234272342723415,-0.6512337731948321],[-47.23787237872378,-0.6360365777658927],[-47.24147241472414,-0.6208393823369533],[-47.19827198271983,-0.6512337731948321],[-47.19467194671947,-0.6630538140840088],[-47.19827198271983,-0.6765624322430739],[-47.209072090720895,-0.6816281640527251],[-47.21627216272162,-0.6698081231635484],[-47.22347223472235,-0.6698081231635484],[-47.227072270722715,-0.6799395867828366],[-47.23067230672305,-0.6866938958623763],[-47.23787237872378,-0.6934482049419017],[-47.24867248672487,-0.6951367822117902],[-47.24867248672487,-0.7018910912913157],[-47.234272342723415,-0.717088286720255],[-47.23067230672305,-0.717088286720255],[-47.22347223472235,-0.7018910912913157],[-47.209072090720895,-0.6985139367515529],[-47.1910719107191,-0.7035796685612041],[-47.17307173071731,-0.7103339776407296],[-47.17307173071731,-0.6985139367515529],[-47.17307173071731,-0.6917596276720133],[-47.16587165871658,-0.6866938958623763],[-47.16227162271622,-0.6816281640527251],[-47.15507155071549,-0.6968253594816645],[-47.15507155071549,-0.7137111321804923],[-47.158671586715855,-0.7289083276094459],[-47.16587165871658,-0.7441055230383853],[-47.17307173071731,-0.7491712548480365],[-47.1910719107191,-0.7559255639275619],[-47.19467194671947,-0.7609912957372131],[-47.1910719107191,-0.7694341820866271],[-47.183871838718375,-0.7694341820866271],[-47.17307173071731,-0.7643684502769759],[-47.16587165871658,-0.7576141411974504],[-47.15507155071549,-0.7643684502769759],[-47.14787147871479,-0.7744999138962783],[-47.14427144271443,-0.7863199547854549],[-47.14067140671406,-0.7981399956746316],[-47.133471334713334,-0.7812542229758037],[-47.1370713707137,-0.7593027184673247],[-47.14067140671406,-0.7407283684986226],[-47.126271262712635,-0.7305969048793202],[-47.126271262712635,-0.7373512139588598],[-47.11907119071191,-0.7457941003082595],[-47.11907119071191,-0.7508598321179107],[-47.11547115471154,-0.7424169457684968],[-47.11547115471154,-0.7356626366889714],[-47.11907119071191,-0.7305969048793202],[-47.11907119071191,-0.720465441260032],[-47.11907119071191,-0.7137111321804923],[-47.108271082710814,-0.7035796685612041],[-47.10467104671045,-0.6951367822117902],[-47.10467104671045,-0.6748738549731996],[-47.09747097470975,-0.6664309686237857],[-47.08667086670866,-0.6613652368141345],[-47.075870758707595,-0.6664309686237857],[-47.07227072270723,-0.6748738549731996],[-47.07227072270723,-0.6866938958623763],[-47.07947079470793,-0.6951367822117902],[-47.075870758707595,-0.6985139367515529],[-47.07227072270723,-0.6968253594816645],[-47.07227072270723,-0.6985139367515529],[-47.07227072270723,-0.7018910912913157],[-47.07947079470793,-0.7103339776407296],[-47.07947079470793,-0.7356626366889714],[-47.083070830708294,-0.7508598321179107],[-47.07947079470793,-0.7576141411974504],[-47.07227072270723,-0.7441055230383853],[-47.0650706507065,-0.7593027184673247],[-47.0650706507065,-0.7761884911661525],[-47.06147061470614,-0.7896971093252176],[-47.043470434704346,-0.7913856865951061],[-47.05427054270541,-0.8032057274842828],[-47.07227072270723,-0.8150257683734594],[-47.07947079470793,-0.8268458092626361],[-47.075870758707595,-0.8369772728819385],[-47.06147061470614,-0.8555516228506406],[-47.057870578705774,-0.8673716637398172],[-47.05427054270541,-0.857240200120529],[-47.050670506705075,-0.8200915001831106],[-47.04707047070471,-0.8099600365638082],[-47.043470434704346,-0.8015171502143943],[-47.03627036270362,-0.7913856865951061],[-47.02907029070289,-0.7846313775155664],[-47.025470254702554,-0.7880085320553292],[-47.01467014670146,-0.7913856865951061],[-47.018270182701826,-0.7694341820866271],[-47.01467014670146,-0.7593027184673247],[-47.007470074700734,-0.7576141411974504],[-46.993069930699306,-0.7576141411974504],[-46.98586985869858,-0.7491712548480365],[-46.97866978669785,-0.7305969048793202],[-46.967869678696786,-0.6951367822117902],[-46.957069570695694,-0.7103339776407296],[-46.957069570695694,-0.7356626366889714],[-46.967869678696786,-0.7846313775155664],[-46.96066960669606,-0.7846313775155664],[-46.95346953469533,-0.7711227593565013],[-46.94626946269463,-0.7761884911661525],[-46.942669426694266,-0.7829428002456922],[-46.942669426694266,-0.7896971093252176],[-46.94626946269463,-0.7981399956746316],[-46.92826928269281,-0.7981399956746316],[-46.931869318693174,-0.804894304754157],[-46.9390693906939,-0.8200915001831106],[-46.942669426694266,-0.8268458092626361],[-46.931869318693174,-0.8234686547228733],[-46.931869318693174,-0.8217800774529849],[-46.92826928269281,-0.8200915001831106],[-46.92106921069211,-0.83528869561205],[-46.931869318693174,-0.8420430046915754],[-46.942669426694266,-0.8471087365012266],[-46.95346953469533,-0.8538630455807521],[-46.96426964269642,-0.865683086469943],[-46.967869678696786,-0.8791917046289939],[-46.96426964269642,-0.892700322788059],[-46.94626946269463,-0.9011432091374729],[-46.949869498694994,-0.8842574364386451],[-46.949869498694994,-0.8724373955494684],[-46.949869498694994,-0.862305931930166],[-46.93546935469354,-0.8538630455807521],[-46.91026910269102,-0.8606173546602918],[-46.899468994689954,-0.857240200120529],[-46.899468994689954,-0.8386658501518127],[-46.892268922689226,-0.8471087365012266],[-46.892268922689226,-0.8336001183421615],[-46.892268922689226,-0.7846313775155664],[-46.8850688506885,-0.7896971093252176],[-46.87786877868777,-0.7964514184047431],[-46.874268742687434,-0.8032057274842828],[-46.874268742687434,-0.813337191103571],[-46.867068670686706,-0.813337191103571],[-46.86346863468634,-0.8065828820240455],[-46.85986859868598,-0.8032057274842828],[-46.856268562685614,-0.7998285729445058],[-46.84546845468455,-0.7981399956746316],[-46.849068490684914,-0.7913856865951061],[-46.856268562685614,-0.7863199547854549],[-46.86346863468634,-0.7812542229758037],[-46.874268742687434,-0.777877068436041],[-46.85986859868598,-0.7660570275468643],[-46.83466834668346,-0.7305969048793202],[-46.816668166681666,-0.7238425957997947],[-46.816668166681666,-0.717088286720255],[-46.831068310683094,-0.7103339776407296],[-46.82026820268203,-0.712022554910618],[-46.80946809468094,-0.717088286720255],[-46.80226802268021,-0.725531173069669],[-46.79506795067951,-0.7373512139588598],[-46.80946809468094,-0.7407283684986226],[-46.80946809468094,-0.747482677578148],[-46.80586805868057,-0.7559255639275619],[-46.79506795067951,-0.7643684502769759],[-46.8130681306813,-0.7711227593565013],[-46.816668166681666,-0.7711227593565013],[-46.816668166681666,-0.777877068436041],[-46.8130681306813,-0.7846313775155664],[-46.8130681306813,-0.7913856865951061],[-46.82026820268203,-0.7964514184047431],[-46.831068310683094,-0.7981399956746316],[-46.831068310683094,-0.804894304754157],[-46.82026820268203,-0.8082714592939197],[-46.816668166681666,-0.813337191103571],[-46.82026820268203,-0.8234686547228733],[-46.823868238682394,-0.8336001183421615],[-46.8130681306813,-0.8302229638023988],[-46.80586805868057,-0.8251572319927476],[-46.798667986679874,-0.8167143456433337],[-46.79506795067951,-0.804894304754157],[-46.791467914679146,-0.804894304754157],[-46.798667986679874,-0.8606173546602918],[-46.798667986679874,-0.862305931930166],[-46.798667986679874,-0.865683086469943],[-46.79506795067951,-0.8741259728193569],[-46.78426784267842,-0.8943889000579475],[-46.78426784267842,-0.9011432091374729],[-46.77706777067769,-0.8859460137085335],[-46.78426784267842,-0.8741259728193569],[-46.78786787867878,-0.862305931930166],[-46.77706777067769,-0.8471087365012266],[-46.76986769867699,-0.8471087365012266],[-46.76986769867699,-0.8673716637398172],[-46.7590675906759,-0.862305931930166],[-46.75546755467553,-0.8504858910409894],[-46.75546755467553,-0.8200915001831106],[-46.74466744667447,-0.8285343865325245],[-46.71946719467195,-0.865683086469943],[-46.715867158671585,-0.8775031273591196],[-46.71946719467195,-0.8943889000579475],[-46.748267482674834,-0.9433576408845425],[-46.73386733867338,-0.9315375999953659],[-46.70866708667086,-0.8893231682482963],[-46.69786697866979,-0.8808802818988823],[-46.69786697866979,-0.8690602410097057],[-46.69786697866979,-0.8437315819614639],[-46.6870668706687,-0.8251572319927476],[-46.66906669066691,-0.8336001183421615],[-46.66186661866618,-0.8454201592313524],[-46.65826658266582,-0.8555516228506406],[-46.65826658266582,-0.8639945092000545],[-46.64386643866439,-0.8673716637398172],[-46.6330663306633,-0.8639945092000545],[-46.63666636666366,-0.8538630455807521],[-46.65826658266582,-0.813337191103571],[-46.65466654666545,-0.8015171502143943],[-46.63666636666366,-0.8015171502143943],[-46.615066150661505,-0.813337191103571],[-46.59706597065971,-0.8673716637398172],[-46.62226622266223,-0.8977660545977102],[-46.62586625866257,-0.9095860954868868],[-46.61866618666187,-0.9095860954868868],[-46.61146611466114,-0.9045203636772357],[-46.60786607866078,-0.9112746727567753],[-46.61146611466114,-0.9247832909158262],[-46.61866618666187,-0.9349147545351286],[-46.6330663306633,-0.9433576408845425],[-46.64746647466475,-0.945046218154431],[-46.65826658266582,-0.9399804863447798],[-46.65826658266582,-0.923094713645952],[-46.66906669066691,-0.923094713645952],[-46.67266672666727,-0.9366033318050171],[-46.68346683466834,-0.9467347954243053],[-46.723067230672314,-0.972063454472547],[-46.73746737467374,-0.9838834953617237],[-46.748267482674834,-0.9990806907906773],[-46.748267482674834,-1.0193436180292679],[-46.73746737467374,-1.0007692680605516],[-46.71946719467195,-0.9838834953617237],[-46.70146701467013,-0.9703748772026586],[-46.67986679866797,-0.9636205681231331],[-46.67626676266761,-0.9653091453930216],[-46.65466654666545,-0.9669977226628959],[-46.62586625866257,-0.9619319908532447],[-46.60426604266041,-0.9568662590436077],[-46.58266582665826,-0.9703748772026586],[-46.564665646656465,-0.950111949964068],[-46.5610656106561,-0.9281604454556032],[-46.54666546665467,-0.9129632500266496],[-46.51786517865179,-0.9011432091374729],[-46.50346503465033,-0.8842574364386451],[-46.489064890648905,-0.8791917046289939],[-46.47466474664745,-0.8842574364386451],[-46.46746467464675,-0.8758145500892311],[-46.44586445864459,-0.8724373955494684],[-46.42786427864277,-0.8690602410097057],[-46.41706417064171,-0.8808802818988823],[-46.42066420664207,-0.8943889000579475],[-46.438664386643865,-0.9028317864073614],[-46.46026460264602,-0.9062089409471241],[-46.48186481864818,-0.9197175591061892],[-46.47466474664745,-0.9366033318050171],[-46.47826478264781,-0.9534891045038449],[-46.489064890648905,-0.9653091453930216],[-46.489064890648905,-0.9754406090123098],[-46.47106471064711,-0.9855720726316122],[-46.47466474664745,-1.0075235771400912],[-46.48186481864818,-1.0227207725690306],[-46.46746467464675,-1.0227207725690306],[-46.463864638646385,-1.0311636589184445],[-46.47466474664745,-1.0446722770775096],[-46.463864638646385,-1.046360854347384],[-46.45306453064529,-1.0429836998076212],[-46.44586445864459,-1.03791796799797],[-46.438664386643865,-1.0277865043786818],[-46.4350643506435,-1.0244093498389049],[-46.42426424264241,-1.029475081648556],[-46.413464134641345,-1.0362293907280957],[-46.406264062640616,-1.0396065452678585],[-46.39186391863919,-1.0277865043786818],[-46.38466384663846,-1.0092121544099655],[-46.36666366663667,-1.0092121544099655],[-46.36666366663667,-1.0260979271087933],[-46.36666366663667,-1.0446722770775096],[-46.35946359463594,-1.0666237815859745],[-46.355863558635576,-1.0750666679353884],[-46.35226352263521,-1.068312358855863],[-46.35226352263521,-1.0497380088871466],[-46.34506345063451,-1.0345408134582073],[-46.33426334263342,-1.0227207725690306],[-46.32346323463233,-1.0210321952991421],[-46.31626316263163,-1.0345408134582073],[-46.31626316263163,-1.0733780906655142],[-46.31986319863199,-1.081820977014928],[-46.32346323463233,-1.0970181724438675],[-46.32346323463233,-1.1071496360631699],[-46.3090630906309,-1.095329595173979],[-46.30186301863017,-1.0784438224751511],[-46.29826298262981,-1.0581808952365606],[-46.29826298262981,-1.0311636589184445],[-46.29106291062911,-1.0311636589184445],[-46.280262802628016,-1.0497380088871466],[-46.255062550625496,-1.0767552452052769],[-46.24786247862477,-1.0936410179041047],[-46.255062550625496,-1.0767552452052769],[-46.26946269462695,-1.0531151634269236],[-46.27666276662765,-1.0396065452678585],[-46.280262802628016,-1.0362293907280957],[-46.28386283862838,-1.029475081648556],[-46.28386283862838,-1.0227207725690306],[-46.26586265862659,-1.0159664634895051],[-46.27306273062729,-1.0058349998702028],[-46.280262802628016,-0.9973921135207888],[-46.280262802628016,-0.9855720726316122],[-46.26946269462695,-0.972063454472547],[-46.262262622626224,-0.950111949964068],[-46.25146251462513,-0.9315375999953659],[-46.23346233462334,-0.9163404045664123],[-46.20106201062009,-0.9078975182169984],[-46.17226172261721,-0.9214061363760635],[-46.17226172261721,-0.9568662590436077],[-46.179461794617936,-0.9568662590436077],[-46.19026190261903,-0.9585548363134819],[-46.204662046620456,-0.9771291862821982],[-46.21546215462155,-0.9973921135207888],[-46.22266222662225,-1.010900731679854],[-46.204662046620456,-1.0058349998702028],[-46.19746197461973,-1.010900731679854],[-46.20106201062009,-1.0176550407593794],[-46.21546215462155,-1.0244093498389049],[-46.211862118621184,-1.0277865043786818],[-46.211862118621184,-1.0311636589184445],[-46.211862118621184,-1.0345408134582073],[-46.20826208262082,-1.0396065452678585],[-46.211862118621184,-1.0446722770775096],[-46.21546215462155,-1.0531151634269236],[-46.22266222662225,-1.0581808952365606],[-46.211862118621184,-1.0750666679353884],[-46.262262622626224,-1.183135613207881],[-46.229862298622976,-1.147675490540351],[-46.22266222662225,-1.1409211814608113],[-46.20826208262082,-1.1426097587306998],[-46.19746197461973,-1.1493640678102253],[-46.1830618306183,-1.1527412223500022],[-46.16506165061651,-1.147675490540351],[-46.154261542615416,-1.125723986031872],[-46.14706147061469,-1.1139039451426953],[-46.13986139861399,-1.1139039451426953],[-46.136261362613624,-1.125723986031872],[-46.14346143461435,-1.1611841086994161],[-46.14706147061469,-1.1763813041283555],[-46.13266132661326,-1.1645612632391789],[-46.12546125461253,-1.1459869132704625],[-46.12546125461253,-1.103772481523393],[-46.12186121861217,-1.095329595173979],[-46.11466114661147,-1.0851981315546908],[-46.10746107461074,-1.0767552452052769],[-46.10026100261001,-1.0733780906655142],[-46.09306093060931,-1.0750666679353884],[-46.08946089460895,-1.081820977014928],[-46.08946089460895,-1.0919524406342163],[-46.085860858608584,-1.1003953269836302],[-46.06786067860679,-1.1307897178415232],[-46.06426064260643,-1.147675490540351],[-46.07506075060749,-1.1544297996198765],[-46.085860858608584,-1.1628726859692904],[-46.09306093060931,-1.178069881398244],[-46.09666096660965,-1.196644231366946],[-46.085860858608584,-1.2101528495260112],[-46.07146071460713,-1.2017099631765973],[-46.06426064260643,-1.1898899222874206],[-46.04986049860497,-1.1628726859692904],[-46.03906039060391,-1.174692726858467],[-46.03906039060391,-1.1865127677476437],[-46.04266042660427,-1.1983328086368346],[-46.04986049860497,-1.2101528495260112],[-46.03186031860318,-1.2000213859067088],[-46.03186031860318,-1.1848241904777694],[-46.03546035460354,-1.1662498405090531],[-46.03546035460354,-1.147675490540351],[-46.03186031860318,-1.139232604190937],[-46.02466024660245,-1.1274125633017604],[-46.01746017460175,-1.1139039451426953],[-46.01746017460175,-1.0936410179041047],[-46.01026010260102,-1.0936410179041047],[-46.01026010260102,-1.098706749713756],[-46.00666006660066,-1.1003953269836302],[-46.00666006660066,-1.103772481523393],[-46.003060030600295,-1.1071496360631699],[-45.99225992259923,-1.103772481523393],[-45.99225992259923,-1.0784438224751511],[-45.99225992259923,-1.068312358855863],[-45.977859778597775,-1.0548037406967978],[-45.96345963459635,-1.0632466270462118],[-45.96345963459635,-1.0733780906655142],[-45.95985959859598,-1.086886708824565],[-45.97065970659705,-1.086886708824565],[-45.97425974259741,-1.0919524406342163],[-45.95985959859598,-1.1071496360631699],[-45.97065970659705,-1.1105267906029326],[-45.977859778597775,-1.1189696769523465],[-45.98145981459814,-1.1409211814608113],[-45.97065970659705,-1.1375440269210486],[-45.96345963459635,-1.1358554496511744],[-45.95625956259562,-1.1375440269210486],[-45.94905949059489,-1.1409211814608113],[-45.95985959859598,-1.1459869132704625],[-45.99945999459993,-1.1510526450801137],[-46.003060030600295,-1.1932670768271834],[-45.99945999459993,-1.2017099631765973],[-45.9850598505985,-1.2033985404464715],[-45.97425974259741,-1.20508711771636],[-45.95985959859598,-1.2101528495260112],[-45.95625956259562,-1.2202843131452994],[-45.95625956259562,-1.24054724038389],[-45.94905949059489,-1.2506787040031924],[-45.93825938259383,-1.2456129721935412],[-45.93465934659346,-1.24054724038389],[-45.93465934659346,-1.2321043540344903],[-45.94185941859419,-1.2236614676850763],[-45.93465934659346,-1.2219728904151879],[-45.93465934659346,-1.2202843131452994],[-45.9310593105931,-1.2185957358754251],[-45.927459274592735,-1.2169071586055367],[-45.9310593105931,-1.2017099631765973],[-45.92385923859237,-1.1730041495885928],[-45.90945909459094,-1.1409211814608113],[-45.89145891458915,-1.090263863364342],[-45.86625866258663,-1.0632466270462118],[-45.85545855458554,-1.068312358855863],[-45.85545855458554,-1.1003953269836302],[-45.88425884258842,-1.1409211814608113],[-45.89145891458915,-1.1544297996198765],[-45.89865898658985,-1.1679384177789416],[-45.90585905859058,-1.1730041495885928],[-45.90585905859058,-1.1983328086368346],[-45.90585905859058,-1.2101528495260112],[-45.89865898658985,-1.183135613207881],[-45.89145891458915,-1.1713155723187043],[-45.88065880658806,-1.1628726859692904],[-45.88425884258842,-1.178069881398244],[-45.88425884258842,-1.183135613207881],[-45.87345873458733,-1.2017099631765973],[-45.88065880658806,-1.2185957358754251],[-45.895058950589515,-1.2371700858441272],[-45.89865898658985,-1.2574330130827178],[-45.87345873458733,-1.235481508574253],[-45.86625866258663,-1.2304157767646018],[-45.86625866258663,-1.2371700858441272],[-45.869858698586995,-1.243924394923667],[-45.86625866258663,-1.2506787040031924],[-45.86625866258663,-1.2574330130827178],[-45.869858698586995,-1.2641873221622575],[-45.88065880658806,-1.2776959403213226],[-45.88425884258842,-1.284450249400848],[-45.86265862658627,-1.2726302085116714],[-45.84825848258481,-1.2574330130827178],[-45.83745837458375,-1.2337929313043645],[-45.83745837458375,-1.2033985404464715],[-45.826658266582655,-1.2185957358754251],[-45.819458194581955,-1.2422358176537784],[-45.819458194581955,-1.262498744892369],[-45.826658266582655,-1.2726302085116714],[-45.84105841058411,-1.2793845175911969],[-45.83385833858338,-1.2979588675599132],[-45.819458194581955,-1.314844640258741],[-45.81225812258123,-1.3266646811479177],[-45.819458194581955,-1.2962702902900247],[-45.80865808658086,-1.2743187857815457],[-45.794257942579435,-1.2675644767020202],[-45.78345783457834,-1.2776959403213226],[-45.77265772657725,-1.2641873221622575],[-45.769057690576915,-1.2287271994947133],[-45.76185761857619,-1.2101528495260112],[-45.74745747457473,-1.2033985404464715],[-45.72225722257221,-1.1341668723812859],[-45.700657006570054,-1.1341668723812859],[-45.69705697056969,-1.1611841086994161],[-45.725857258572574,-1.2253500449549506],[-45.7330573305733,-1.2506787040031924],[-45.72945729457294,-1.2506787040031924],[-45.725857258572574,-1.2473015494634296],[-45.72225722257221,-1.2371700858441272],[-45.70425704257042,-1.2219728904151879],[-45.68985689856899,-1.2017099631765973],[-45.6790567905679,-1.2101528495260112],[-45.675456754567534,-1.2287271994947133],[-45.67185671856717,-1.243924394923667],[-45.675456754567534,-1.2591215903526063],[-45.66465664656647,-1.2692530539719087],[-45.65385653856538,-1.2743187857815457],[-45.661056610566106,-1.292893135750262],[-45.650256502565014,-1.2996474448297874],[-45.650256502565014,-1.3182217947985038],[-45.65745657456574,-1.3334189902274431],[-45.66465664656647,-1.3469276083865083],[-45.67185671856717,-1.3536819174660337],[-45.675456754567534,-1.3655019583552104],[-45.63945639456395,-1.3705676901648616],[-45.63225632256322,-1.3671905356250988],[-45.62145621456213,-1.3570590720057965],[-45.617856178561794,-1.3486161856563967],[-45.610656106561066,-1.3351075674973316],[-45.610656106561066,-1.319910372068378],[-45.61425614256143,-1.3097789084490898],[-45.62145621456213,-1.2962702902900247],[-45.62145621456213,-1.284450249400848],[-45.610656106561066,-1.2760073630514341],[-45.59625596255961,-1.2726302085116714],[-45.58185581855818,-1.2743187857815457],[-45.57825578255782,-1.2810730948610853],[-45.585455854558546,-1.2895159812104993],[-45.59625596255961,-1.292893135750262],[-45.592655926559274,-1.2945817130201505],[-45.592655926559274,-1.2962702902900247],[-45.58905589055891,-1.2979588675599132],[-45.585455854558546,-1.2979588675599132],[-45.58905589055891,-1.3064017539093271],[-45.58905589055891,-1.314844640258741],[-45.58905589055891,-1.319910372068378],[-45.585455854558546,-1.3266646811479177],[-45.560255602556026,-1.2827616721309596],[-45.542255422554234,-1.270941631241783],[-45.53145531455314,-1.284450249400848],[-45.542255422554234,-1.284450249400848],[-45.549455494554934,-1.2895159812104993],[-45.5530555305553,-1.2996474448297874],[-45.549455494554934,-1.311467485718964],[-45.54585545855457,-1.3097789084490898],[-45.535055350553506,-1.3080903311792014],[-45.53145531455314,-1.3064017539093271],[-45.535055350553506,-1.3182217947985038],[-45.54585545855457,-1.3266646811479177],[-45.549455494554934,-1.3367961447672059],[-45.549455494554934,-1.3536819174660337],[-45.54585545855457,-1.3519933401961595],[-45.535055350553506,-1.3469276083865083],[-45.535055350553506,-1.3367961447672059],[-45.524255242552414,-1.3249761038780292],[-45.524255242552414,-1.311467485718964],[-45.517055170551714,-1.311467485718964],[-45.51345513455135,-1.3536819174660337],[-45.51345513455135,-1.3604362265455734],[-45.524255242552414,-1.3857648855938152],[-45.52785527855278,-1.4043392355625173],[-45.53145531455314,-1.416159276451694],[-45.51345513455135,-1.4043392355625173],[-45.47025470254701,-1.350304762926271],[-45.47025470254701,-1.3435504538467455],[-45.47025470254701,-1.3334189902274431],[-45.466654666546674,-1.323287526608155],[-45.459454594545946,-1.311467485718964],[-45.45225452254522,-1.3064017539093271],[-45.41985419854197,-1.292893135750262],[-45.448654486544854,-1.292893135750262],[-45.4270542705427,-1.2861388266707365],[-45.416254162541634,-1.2878274039406108],[-45.409054090540906,-1.2962702902900247],[-45.40545405454054,-1.3165332175286153],[-45.40545405454054,-1.3249761038780292],[-45.41265412654127,-1.341861876576857],[-45.41265412654127,-1.350304762926271],[-45.416254162541634,-1.3536819174660337],[-45.434254342543426,-1.3536819174660337],[-45.441454414544154,-1.3570590720057965],[-45.46305463054631,-1.3655019583552104],[-45.466654666546674,-1.3671905356250988],[-45.473854738547374,-1.3756334219745128],[-45.473854738547374,-1.3840763083239267],[-45.473854738547374,-1.3925191946733406],[-45.473854738547374,-1.4009620810227545],[-45.484654846548466,-1.429667894610759],[-45.48825488254883,-1.446553667309587],[-45.4810548105481,-1.4634394400084147],[-45.50265502655026,-1.4583737081987636],[-45.517055170551714,-1.465128017278289],[-45.542255422554234,-1.4904566763265308],[-45.53145531455314,-1.4904566763265308],[-45.52065520655205,-1.4837023672470053],[-45.517055170551714,-1.4752594808975914],[-45.517055170551714,-1.4634394400084147],[-45.50265502655026,-1.4701937490879402],[-45.49545495454953,-1.4803252127072426],[-45.499054990549894,-1.4938338308663077],[-45.509855098550986,-1.503965294485596],[-45.499054990549894,-1.5056538717554844],[-45.491854918549194,-1.503965294485596],[-45.484654846548466,-1.4988995626759447],[-45.4810548105481,-1.4904566763265308],[-45.46305463054631,-1.5005881399458332],[-45.46305463054631,-1.5157853353747726],[-45.46305463054631,-1.5326711080736004],[-45.459454594545946,-1.5461797262326655],[-45.448654486544854,-1.5276053762639492],[-45.448654486544854,-1.5056538717554844],[-45.45585455854558,-1.460062285468652],[-45.45225452254522,-1.4533079763891124],[-45.441454414544154,-1.4431765127698242],[-45.43065430654306,-1.4330450491505218],[-45.42345423454233,-1.429667894610759],[-45.41985419854197,-1.4330450491505218],[-45.41985419854197,-1.4448650900396984],[-45.4270542705427,-1.4566851309288893],[-45.434254342543426,-1.4634394400084147],[-45.42345423454233,-1.4583737081987636],[-45.409054090540906,-1.4448650900396984],[-45.40185401854018,-1.4431765127698242],[-45.40185401854018,-1.438110780960173],[-45.38745387453875,-1.4127821219119312],[-45.38025380253802,-1.394207771943229],[-45.3550535505355,-1.350304762926271],[-45.3550535505355,-1.3367961447672059],[-45.358653586535866,-1.319910372068378],[-45.34785347853477,-1.311467485718964],[-45.32625326253262,-1.3131560629888526],[-45.308253082530825,-1.3266646811479177],[-45.308253082530825,-1.3367961447672059],[-45.29745297452973,-1.416159276451694],[-45.30465304653046,-1.4110935446420427],[-45.308253082530825,-1.40771639010228],[-45.32265322653225,-1.4364222036902845],[-45.340653406534074,-1.4533079763891124],[-45.365853658536594,-1.465128017278289],[-45.391053910539114,-1.4837023672470053],[-45.38745387453875,-1.4904566763265308],[-45.37665376653766,-1.4786366354373541],[-45.36945369453693,-1.473570903627703],[-45.358653586535866,-1.4718823263578287],[-45.35145351453514,-1.4769480581674799],[-45.358653586535866,-1.4887680990566565],[-45.365853658536594,-1.503965294485596],[-45.36945369453693,-1.5191624899145353],[-45.37305373053729,-1.5360482626133631],[-45.38025380253802,-1.5411139944230143],[-45.391053910539114,-1.547868303502554],[-45.40185401854018,-1.5596883443917307],[-45.391053910539114,-1.5799512716303212],[-45.38745387453875,-1.5647540762013818],[-45.383853838538386,-1.556311189851968],[-45.38745387453875,-1.5461797262326655],[-45.35145351453514,-1.5596883443917307],[-45.340653406534074,-1.583328426170084],[-45.34425344253441,-1.6120342397580885],[-45.3550535505355,-1.654248671505158],[-45.36225362253623,-1.6677572896642232],[-45.365853658536594,-1.684643062363051],[-45.365853658536594,-1.7032174123317532],[-45.358653586535866,-1.720103185030581],[-45.35145351453514,-1.7302346486498834],[-45.33705337053371,-1.7386775349992973],[-45.32265322653225,-1.7454318440788228],[-45.283052830528305,-1.7319232259197577],[-45.27225272252721,-1.7217917623004695],[-45.27585275852758,-1.7032174123317532],[-45.26145261452615,-1.6964631032522277],[-45.2290522905229,-1.6829544850931626],[-45.22185221852217,-1.6728230214738744],[-45.22545225452254,-1.6559372487750466],[-45.25065250652506,-1.6238542806472651],[-45.25425254252542,-1.6069685079484373],[-45.24705247052469,-1.5799512716303212],[-45.2290522905229,-1.547868303502554],[-45.20385203852038,-1.525916798994075],[-45.17865178651786,-1.525916798994075],[-45.1750517505175,-1.5005881399458332],[-45.16425164251643,-1.4820137899771169],[-45.14985149851498,-1.4820137899771169],[-45.13905139051391,-1.503965294485596],[-45.131851318513185,-1.503965294485596],[-45.12825128251282,-1.487079521786768],[-45.11745117451173,-1.4786366354373541],[-45.1030510305103,-1.4718823263578287],[-45.09945099450994,-1.4668165945481775],[-45.09225092250921,-1.4634394400084147],[-45.081450814508145,-1.4718823263578287],[-45.081450814508145,-1.4803252127072426],[-45.1030510305103,-1.4837023672470053],[-45.07785077850778,-1.4837023672470053],[-45.07065070650705,-1.4701937490879402],[-45.07065070650705,-1.4499308218493496],[-45.06345063450635,-1.429667894610759],[-45.05985059850599,-1.4668165945481775],[-45.056250562505625,-1.4769480581674799],[-45.0490504905049,-1.4820137899771169],[-45.03825038250383,-1.487079521786768],[-45.02745027450274,-1.4904566763265308],[-45.02025020250201,-1.487079521786768],[-45.005850058500585,-1.4904566763265308],[-44.99504995049949,-1.509031026295247],[-44.998649986499856,-1.5242282217241865],[-45.02025020250201,-1.517473912644661],[-45.00945009450095,-1.5326711080736004],[-44.99504995049949,-1.5360482626133631],[-44.980649806498064,-1.5360482626133631],[-44.96624966249661,-1.5461797262326655],[-44.96624966249661,-1.552934035312191],[-44.98424984249843,-1.561376921661605],[-45.005850058500585,-1.5681312307411446],[-45.02025020250201,-1.5782626943604328],[-45.02025020250201,-1.6002141988689118],[-45.01665016650165,-1.6002141988689118],[-45.00945009450095,-1.583328426170084],[-44.99504995049949,-1.5816398489001955],[-44.96624966249661,-1.5934598897893864],[-44.973449734497336,-1.5799512716303212],[-44.96624966249661,-1.5647540762013818],[-44.95904959049591,-1.5495568807724283],[-44.955449554495544,-1.5326711080736004],[-44.955449554495544,-1.5022767172157216],[-44.948249482494816,-1.4921452535964193],[-44.92664926649266,-1.4904566763265308],[-44.92664926649266,-1.4837023672470053],[-44.93384933849339,-1.4837023672470053],[-44.93384933849339,-1.4769480581674799],[-44.91584915849157,-1.468505171818066],[-44.89424894248941,-1.4566851309288893],[-44.879848798487984,-1.4414879354999357],[-44.872648726487256,-1.4262907400709963],[-44.86904869048689,-1.4212250082613451],[-44.86184861848619,-1.4262907400709963],[-44.854648546485464,-1.4364222036902845],[-44.8510485104851,-1.446553667309587],[-44.8510485104851,-1.4769480581674799],[-44.8510485104851,-1.4837023672470053],[-44.85824858248583,-1.4887680990566565],[-44.87624876248762,-1.4988995626759447],[-44.88704887048871,-1.503965294485596],[-44.89064890648905,-1.5124081808350098],[-44.897848978489776,-1.5276053762639492],[-44.91224912249123,-1.547868303502554],[-44.91944919449193,-1.5630654989314934],[-44.91944919449193,-1.5799512716303212],[-44.91224912249123,-1.6002141988689118],[-44.92664926649266,-1.6019027761388003],[-44.94464944649445,-1.596837044329149],[-44.955449554495544,-1.6002141988689118],[-44.94104941049409,-1.6103456624882142],[-44.923049230492296,-1.6289200124569163],[-44.91584915849157,-1.6474943624256326],[-44.93384933849339,-1.6559372487750466],[-44.91944919449193,-1.6576258260449208],[-44.91224912249123,-1.654248671505158],[-44.90144901449014,-1.6238542806472651],[-44.905049050490504,-1.6170999715677397],[-44.90144901449014,-1.6103456624882142],[-44.88704887048871,-1.6002141988689118],[-44.872648726487256,-1.613722817027977],[-44.86184861848619,-1.6306085897268048],[-44.847448474484736,-1.640740053346093],[-44.829448294482944,-1.6356743215364418],[-44.847448474484736,-1.6289200124569163],[-44.8510485104851,-1.6154113942978512],[-44.84384843848437,-1.6002141988689118],[-44.83664836648367,-1.5867055807098467],[-44.84384843848437,-1.5867055807098467],[-44.84384843848437,-1.5816398489001955],[-44.84024840248401,-1.5765741170905585],[-44.83664836648367,-1.5731969625507816],[-44.83664836648367,-1.566442653471256],[-44.822248222482216,-1.5765741170905585],[-44.81504815048149,-1.5917713125194979],[-44.81144811448115,-1.6086570852183257],[-44.81144811448115,-1.6289200124569163],[-44.804248042480424,-1.6086570852183257],[-44.804248042480424,-1.6002141988689118],[-44.79344793447933,-1.6187885488376281],[-44.797047970479696,-1.6306085897268048],[-44.804248042480424,-1.6390514760762187],[-44.81144811448115,-1.6525600942352696],[-44.80784807848079,-1.6593144033148093],[-44.78624786247863,-1.6728230214738744],[-44.78264782647827,-1.6829544850931626],[-44.78624786247863,-1.684643062363051],[-44.804248042480424,-1.7032174123317532],[-44.797047970479696,-1.7099717214112928],[-44.779047790477904,-1.720103185030581],[-44.771847718477176,-1.7234803395703437],[-44.78624786247863,-1.7369889577294089],[-44.79344793447933,-1.74205468953906],[-44.804248042480424,-1.7521861531583482],[-44.80784807848079,-1.7488089986185855],[-44.81144811448115,-1.7471204213487113],[-44.822248222482216,-1.7521861531583482],[-44.822248222482216,-1.7555633076981252],[-44.822248222482216,-1.758940462237888],[-44.81504815048149,-1.7656947713174134],[-44.77544775447754,-1.7403661122691716],[-44.76824768247681,-1.7268574941101207],[-44.77544775447754,-1.7032174123317532],[-44.74304743047429,-1.720103185030581],[-44.7250472504725,-1.7234803395703437],[-44.70704707047071,-1.7167260304908183],[-44.721447214472136,-1.7488089986185855],[-44.75024750247502,-1.772449080396953],[-44.81144811448115,-1.8062206257945945],[-44.81144811448115,-1.8129749348741342],[-44.79344793447933,-1.807909203064483],[-44.75744757447575,-1.8011548939849575],[-44.74304743047429,-1.7960891621753063],[-44.73224732247323,-1.785957698556004],[-44.721447214472136,-1.7910234303656551],[-44.71784717847177,-1.8028434712548318],[-44.70704707047071,-1.8129749348741342],[-44.67824678246782,-1.8112863576042457],[-44.66384663846637,-1.785957698556004],[-44.6530465304653,-1.750497575888474],[-44.6530465304653,-1.7167260304908183],[-44.5990459904599,-1.7454318440788228],[-44.61344613446133,-1.7538747304282367],[-44.62424624246242,-1.7640061940475391],[-44.63144631446315,-1.7758262349367158],[-44.63864638646385,-1.7927120076355436],[-44.64224642246421,-1.807909203064483],[-44.64224642246421,-1.8214178212235481],[-44.645846458464575,-1.8315492848428363],[-44.66024660246603,-1.8332378621127248],[-44.66024660246603,-1.8399921711922502],[-44.64944649446494,-1.8366150166524875],[-44.63144631446315,-1.8281721303030736],[-44.620646206462055,-1.8264835530331993],[-44.61344613446133,-1.829860707572962],[-44.60624606246063,-1.838303593922376],[-44.60264602646026,-1.8450579030019014],[-44.5990459904599,-1.84674648027179],[-44.59184591845917,-1.8399921711922502],[-44.58824588245881,-1.8281721303030736],[-44.58464584645847,-1.8180406666837854],[-44.57384573845738,-1.8129749348741342],[-44.56664566645665,-1.8180406666837854],[-44.56304563045629,-1.8315492848428363],[-44.570245702457015,-1.8450579030019014],[-44.57744577445774,-1.8535007893513153],[-44.570245702457015,-1.8602550984308408],[-44.56304563045629,-1.8501236348115526],[-44.55224552245522,-1.8450579030019014],[-44.545045450454495,-1.838303593922376],[-44.54144541445413,-1.8264835530331993],[-44.53424534245343,-1.829860707572962],[-44.53064530645307,-1.8332378621127248],[-44.5270452704527,-1.8399921711922502],[-44.52344523445234,-1.84674648027179],[-44.53784537845377,-1.865320830240492],[-44.57744577445774,-1.887272334748971],[-44.59184591845917,-1.9024695301779104],[-44.570245702457015,-1.9007809529080362],[-44.53784537845377,-1.8923380665586222],[-44.52344523445234,-1.895715221098385],[-44.51264512645125,-1.904158107447799],[-44.50544505445055,-1.9193553028767383],[-44.50184501845018,-1.9379296528454546],[-44.50184501845018,-1.953126848274394],[-44.49824498244982,-1.961569734623808],[-44.49104491044909,-1.9784555073226358],[-44.48744487444873,-1.9868983936720497],[-44.49104491044909,-1.9953412800214636],[-44.494644946449455,-2.000407011831115],[-44.49824498244982,-2.0037841663708775],[-44.50184501845018,-2.0088498981805287],[-44.50904509045091,-2.015604207260054],[-44.5270452704527,-2.0172927845299427],[-44.54864548645486,-2.015604207260054],[-44.56304563045629,-2.0122270527202915],[-44.57384573845738,-2.024047093609468],[-44.58824588245881,-2.0308014026889936],[-44.61704617046169,-2.0392442890384075],[-44.60984609846099,-2.0392442890384075],[-44.60624606246063,-2.0392442890384075],[-44.60264602646026,-2.040932866308296],[-44.5990459904599,-2.045998598117947],[-44.58104581045811,-2.0341785572287705],[-44.56304563045629,-2.0291128254191193],[-44.54144541445413,-2.0291128254191193],[-44.52344523445234,-2.032489979958882],[-44.50544505445055,-2.032489979958882],[-44.494644946449455,-2.0358671344986448],[-44.494644946449455,-2.045998598117947],[-44.50184501845018,-2.054441484467361],[-44.53424534245343,-2.079770143515603],[-44.55584555845559,-2.0865244525951283],[-44.57744577445774,-2.1219845752626725],[-44.60624606246063,-2.1540675433904397],[-44.63864638646385,-2.1490018115807885],[-44.645846458464575,-2.155756120660314],[-44.63144631446315,-2.159133275200091],[-44.61704617046169,-2.159133275200091],[-44.60264602646026,-2.1574446979302024],[-44.5990459904599,-2.155756120660314],[-44.58824588245881,-2.1658875842796164],[-44.595445954459535,-2.1743304706290303],[-44.61704617046169,-2.1895276660579697],[-44.65664656646567,-2.2317420978050393],[-44.67464674646746,-2.240184984154453],[-44.70704707047071,-2.2368078296146905],[-44.69984699846998,-2.243562138694216],[-44.696246962469615,-2.2503164477737556],[-44.69264692646925,-2.265513643202695],[-44.73224732247323,-2.2536936023135183],[-44.75024750247502,-2.25200502504363],[-44.76824768247681,-2.260447911393044],[-44.78624786247863,-2.2756451068219974],[-44.80064800648006,-2.2857765704412856],[-44.822248222482216,-2.27902226136176],[-44.804248042480424,-2.2908423022509368],[-44.76104761047611,-2.2756451068219974],[-44.71784717847177,-2.265513643202695],[-44.70704707047071,-2.2992851886003507],[-44.69984699846998,-2.2992851886003507],[-44.69264692646925,-2.2857765704412856],[-44.67824678246782,-2.273956529552109],[-44.66384663846637,-2.270579375012346],[-44.66024660246603,-2.282399415901523],[-44.66024660246603,-2.295908034060588],[-44.66744667446673,-2.306039497679876],[-44.67464674646746,-2.312793806759416],[-44.67824678246782,-2.3212366931088297],[-44.68904689046889,-2.3431881976172946],[-44.69264692646925,-2.3482539294269458],[-44.703447034470344,-2.358385393046248],[-44.71064710647107,-2.3685168566655364],[-44.71424714247141,-2.392156938443904],[-44.721447214472136,-2.402288402063192],[-44.71424714247141,-2.4090427111427175],[-44.71064710647107,-2.397222670253541],[-44.70704707047071,-2.388779783904127],[-44.69984699846998,-2.3820254748246015],[-44.67464674646746,-2.3600739703161224],[-44.66384663846637,-2.3566968157763597],[-44.66024660246603,-2.3651397021257736],[-44.66384663846637,-2.4039769793330805],[-44.66384663846637,-2.4208627520319084],[-44.6530465304653,-2.4293056383813223],[-44.65664656646567,-2.4208627520319084],[-44.65664656646567,-2.4073541338728432],[-44.6530465304653,-2.393845515713778],[-44.64224642246421,-2.375271165745076],[-44.645846458464575,-2.366828279395662],[-44.64944649446494,-2.358385393046248],[-44.6530465304653,-2.3516310839667085],[-44.6530465304653,-2.327991002188355],[-44.64944649446494,-2.309416652219639],[-44.64224642246421,-2.2908423022509368],[-44.63144631446315,-2.2722679522822204],[-44.58464584645847,-2.230053520535165],[-44.57384573845738,-2.2232992114556254],[-44.56304563045629,-2.221610634185751],[-44.55224552245522,-2.2165449023761],[-44.54144541445413,-2.203036284217035],[-44.545045450454495,-2.2047248614869233],[-44.54144541445413,-2.1895276660579697],[-44.54144541445413,-2.186150511518207],[-44.53424534245343,-2.1810847797085557],[-44.53064530645307,-2.1760190478989188],[-44.49824498244982,-2.1473132343109],[-44.46224462244621,-2.1439360797711373],[-44.42624426244262,-2.1625104297398536],[-44.39744397443974,-2.1979705524073836],[-44.39024390243901,-2.218233479645974],[-44.38664386643865,-2.238496406884579],[-44.38304383043831,-2.2756451068219974],[-44.38304383043831,-2.2773336840918716],[-44.368643686436855,-2.2925308795208252],[-44.36504365043649,-2.2992851886003507],[-44.361443614436126,-2.3111052294895273],[-44.36504365043649,-2.3347453112678807],[-44.37224372243722,-2.3769597430149503],[-44.38304383043831,-2.3955340929836666],[-44.393843938439375,-2.402288402063192],[-44.42984429844299,-2.4073541338728432],[-44.45504455044551,-2.4073541338728432],[-44.4730447304473,-2.402288402063192],[-44.48024480244803,-2.397222670253541],[-44.49104491044909,-2.38371405209449],[-44.49824498244982,-2.380336897554713],[-44.50184501845018,-2.3786483202848387],[-44.50544505445055,-2.3769597430149503],[-44.50544505445055,-2.3735825884751875],[-44.50904509045091,-2.371894011205299],[-44.50904509045091,-2.366828279395662],[-44.51624516245161,-2.3685168566655364],[-44.519845198451975,-2.371894011205299],[-44.53784537845377,-2.380336897554713],[-44.55224552245522,-2.3904683611740154],[-44.56304563045629,-2.4039769793330805],[-44.570245702457015,-2.415797020222257],[-44.52344523445234,-2.3870912066342527],[-44.50904509045091,-2.3904683611740154],[-44.50184501845018,-2.41917417476202],[-44.51264512645125,-2.4698314928585035],[-44.519845198451975,-2.5002258837163964],[-44.53424534245343,-2.5188002336850985],[-44.54864548645486,-2.5221773882248613],[-44.55584555845559,-2.520488810954987],[-44.56664566645665,-2.520488810954987],[-44.57744577445774,-2.5323088518441637],[-44.58824588245881,-2.5627032427020566],[-44.595445954459535,-2.5660803972418194],[-44.61344613446133,-2.569457551781582],[-44.63864638646385,-2.5795890154008703],[-44.65664656646567,-2.5930976335599354],[-44.66024660246603,-2.608294828988889],[-44.645846458464575,-2.5930976335599354],[-44.5990459904599,-2.5745232835912333],[-44.58104581045811,-2.564391819971931],[-44.570245702457015,-2.5525717790827542],[-44.56664566645665,-2.542440315463452],[-44.56304563045629,-2.5356860063839264],[-44.545045450454495,-2.5323088518441637],[-44.54144541445413,-2.539063160923689],[-44.545045450454495,-2.5508832018128658],[-44.55224552245522,-2.5627032427020566],[-44.55584555845559,-2.5660803972418194],[-44.60624606246063,-2.6690836107046607],[-44.63144631446315,-2.697789424292665],[-44.62424624246242,-2.706232310642079],[-44.62784627846278,-2.718052351531256],[-44.63864638646385,-2.745069587849386],[-44.645846458464575,-2.7687096696277393],[-44.64944649446494,-2.7872840195964557],[-44.645846458464575,-2.8311870286133995],[-44.64944649446494,-2.854827110391753],[-44.68544685446855,-2.917304469377413],[-44.68904689046889,-2.9240587784569527],[-44.68544685446855,-2.9544531693148315],[-44.68904689046889,-2.964584632934134],[-44.69264692646925,-2.9848475601727245],[-44.69264692646925,-2.994979023792027],[-44.68544685446855,-3.0118647964908547],[-44.66384663846637,-3.0169305283004917],[-44.63864638646385,-3.01861910557038],[-44.62424624246242,-3.0253734146499056],[-44.620646206462055,-3.0507020736981474],[-44.63864638646385,-3.0692764236668637],[-44.66024660246603,-3.0827850418259146],[-44.671046710467095,-3.097982237254868],[-44.67824678246782,-3.1114908554139333],[-44.68544685446855,-3.1216223190332215],[-44.69984699846998,-3.128376628112747],[-44.70704707047071,-3.1351309371922866],[-44.71064710647107,-3.145262400811575],[-44.71784717847177,-3.1689024825899423],[-44.721447214472136,-3.1773453689393563],[-44.73944739447393,-3.1874768325586444],[-44.76464764647645,-3.190853987098407],[-44.78264782647827,-3.197608296177947],[-44.78984789847897,-3.2144940688767747],[-44.78624786247863,-3.233068418845477],[-44.78264782647827,-3.251642768814193],[-44.771847718477176,-3.2702171187828952],[-44.76104761047611,-3.285414314211849],[-44.797047970479696,-3.300611509640788],[-44.76104761047611,-3.3056772414504394],[-44.753847538475384,-3.2904800460215],[-44.76104761047611,-3.238134150655128],[-44.753847538475384,-3.219559800686426],[-44.74304743047429,-3.207739759797235],[-44.7250472504725,-3.199296873447821],[-44.67824678246782,-3.194231141638184],[-44.66024660246603,-3.1840996780188817],[-44.645846458464575,-3.1689024825899423],[-44.63144631446315,-3.150328132621226],[-44.61344613446133,-3.1114908554139333],[-44.5990459904599,-3.1047365463343937],[-44.57384573845738,-3.101359391794631],[-44.53064530645307,-3.0321277237294453],[-44.48024480244803,-3.0067990646812035],[-44.4730447304473,-3.0017333328715523],[-44.469444694446935,-2.986536137442613],[-44.43344433444335,-2.9510760147750688],[-44.42264422644226,-2.934190242076241],[-44.41544415444153,-2.9139273148376503],[-44.40824408244083,-2.8919758103291713],[-44.40464404644047,-2.8717128830905807],[-44.40824408244083,-2.8261212968037484],[-44.40464404644047,-2.8041697922952693],[-44.39024390243901,-2.7923497514060927],[-44.393843938439375,-2.78897259686633],[-44.39744397443974,-2.785595442326567],[-44.4010440104401,-2.7822182877868045],[-44.40464404644047,-2.7788411332470417],[-44.37224372243722,-2.6673950334347722],[-44.36504365043649,-2.6285577562274796],[-44.361443614436126,-2.6370006425768935],[-44.35784357843579,-2.6454435289263074],[-44.35784357843579,-2.652197838005833],[-44.35784357843579,-2.6623293016251353],[-44.35064350643506,-2.6623293016251353],[-44.368643686436855,-2.5491946245429915],[-44.35784357843579,-2.537374583653815],[-44.35424354243543,-2.528931697304401],[-44.343443434434334,-2.525554542764624],[-44.32544325443254,-2.525554542764624],[-44.311043110431086,-2.5323088518441637],[-44.30024300243002,-2.547506047273103],[-44.28944289442893,-2.5795890154008703],[-44.28944289442893,-2.5508832018128658],[-44.293042930429294,-2.539063160923689],[-44.30384303843039,-2.5323088518441637],[-44.30024300243002,-2.520488810954987],[-44.30024300243002,-2.5086687700658103],[-44.30024300243002,-2.4951601519067452],[-44.293042930429294,-2.48165153374768],[-44.278642786427866,-2.4748972246681546],[-44.2210422104221,-2.4698314928585035],[-44.11304113041129,-2.415797020222257],[-44.084240842408406,-2.415797020222257],[-44.07344073440734,-2.3989112475234293],[-44.051840518405186,-2.400599824793318],[-44.033840338403365,-2.415797020222257],[-44.03024030240303,-2.442814256540373],[-44.04464044640446,-2.4394371020006105],[-44.06984069840698,-2.437748524730736],[-44.091440914409134,-2.442814256540373],[-44.09864098640986,-2.4563228746994383],[-44.06984069840698,-2.4613886065090895],[-44.06264062640625,-2.463077183778964],[-44.059040590405885,-2.4715200701283777],[-44.059040590405885,-2.4951601519067452],[-44.05544055440555,-2.5052916155260334],[-44.05544055440555,-2.4951601519067452],[-44.05544055440555,-2.4867172655573313],[-44.04824048240482,-2.4698314928585035],[-44.041040410404094,-2.4698314928585035],[-44.033840338403365,-2.4934715746368568],[-44.033840338403365,-2.5137345018754473],[-44.03744037440373,-2.5323088518441637],[-44.04824048240482,-2.5525717790827542],[-44.066240662406614,-2.5508832018128658],[-44.084240842408406,-2.561014665432168],[-44.09864098640986,-2.5795890154008703],[-44.102241022410226,-2.582966169940647],[-44.109441094410926,-2.5846547472105215],[-44.116641166411654,-2.588031901750284],[-44.12384123841238,-2.594786210829824],[-44.10584105841059,-2.6015405199093493],[-44.109441094410926,-2.62180344714794],[-44.13824138241381,-2.670772187974549],[-44.152641526415266,-2.6809036515938374],[-44.167041670416694,-2.687657960673363],[-44.18144181441815,-2.6893465379432513],[-44.192241922419214,-2.6893465379432513],[-44.19944199441994,-2.6859693834034886],[-44.21384213842137,-2.6690836107046607],[-44.210242102421006,-2.6859693834034886],[-44.20664206642067,-2.692723692483014],[-44.19944199441994,-2.697789424292665],[-44.21384213842137,-2.7079208879119676],[-44.23904239042389,-2.714675196991493],[-44.253442534425346,-2.7214295060710185],[-44.278642786427866,-2.7484467423891488],[-44.285842858428566,-2.7518238969289115],[-44.31464314643145,-2.761955360548214],[-44.33984339843397,-2.785595442326567],[-44.3470434704347,-2.810924101374809],[-44.32904329043291,-2.827809874073637],[-44.32904329043291,-2.8041697922952693],[-44.32184321843218,-2.785595442326567],[-44.311043110431086,-2.7788411332470417],[-44.29664296642966,-2.7923497514060927],[-44.30384303843039,-2.810924101374809],[-44.311043110431086,-2.8143012559145717],[-44.311043110431086,-2.821055564994097],[-44.29664296642966,-2.8345641831531623],[-44.28944289442893,-2.8075469468350462],[-44.285842858428566,-2.8058583695651578],[-44.278642786427866,-2.8075469468350462],[-44.27144271442714,-2.8075469468350462],[-44.267842678426774,-2.8041697922952693],[-44.267842678426774,-2.7906611741362184],[-44.26424264242641,-2.780529710516916],[-44.260642606426046,-2.772086824167502],[-44.25704257042571,-2.7653325150879766],[-44.24624246242462,-2.7737754014373905],[-44.2210422104221,-2.7923497514060927],[-44.22464224642246,-2.7771525559771533],[-44.217442174421734,-2.767021092357851],[-44.185041850418486,-2.758578206008437],[-44.18864188641885,-2.7788411332470417],[-44.17424174241742,-2.8075469468350462],[-44.18144181441815,-2.824432719533874],[-44.192241922419214,-2.829498451343511],[-44.20664206642067,-2.8362527604230507],[-44.21384213842137,-2.841318492232702],[-44.217442174421734,-2.8480728013122274],[-44.217442174421734,-2.85144995585199],[-44.21384213842137,-2.85144995585199],[-44.20664206642067,-2.8480728013122274],[-44.20664206642067,-2.8531385331218786],[-44.203042030420306,-2.8582042649315156],[-44.19944199441994,-2.8615814194712925],[-44.19944199441994,-2.868335728550818],[-44.167041670416694,-2.837941337692925],[-44.159841598415966,-2.827809874073637],[-44.15624156241563,-2.829498451343511],[-44.152641526415266,-2.8311870286133995],[-44.152641526415266,-2.8345641831531623],[-44.141841418414174,-2.821055564994097],[-44.13104131041311,-2.8041697922952693],[-44.127441274412746,-2.785595442326567],[-44.12384123841238,-2.7687096696277393],[-44.116641166411654,-2.758578206008437],[-44.10584105841059,-2.750135319659023],[-44.09864098640986,-2.7484467423891488],[-44.10584105841059,-2.758578206008437],[-44.10584105841059,-2.7653325150879766],[-44.091440914409134,-2.761955360548214],[-44.08784087840877,-2.758578206008437],[-44.084240842408406,-2.7518238969289115],[-44.077040770407706,-2.758578206008437],[-44.08064080640807,-2.767021092357851],[-44.08064080640807,-2.7687096696277393],[-44.077040770407706,-2.772086824167502],[-44.077040770407706,-2.7788411332470417],[-44.07344073440734,-2.772086824167502],[-44.07344073440734,-2.7687096696277393],[-44.06984069840698,-2.7653325150879766],[-44.06984069840698,-2.7788411332470417],[-44.07344073440734,-2.78897259686633],[-44.084240842408406,-2.8075469468350462],[-44.06984069840698,-2.7957269059458554],[-44.06264062640625,-2.7771525559771533],[-44.06264062640625,-2.7349381242300836],[-44.059040590405885,-2.718052351531256],[-44.051840518405186,-2.701166578832428],[-44.03744037440373,-2.675837919784186],[-44.0230402304023,-2.64882068346607],[-44.01584015840157,-2.635312065307005],[-43.983439834398325,-2.6150491380684144],[-43.97983979839799,-2.6116719835286517],[-43.976239762397626,-2.6099834062587632],[-43.94743947439474,-2.6285577562274796],[-43.94743947439474,-2.62180344714794],[-43.958239582395805,-2.6116719835286517],[-43.958239582395805,-2.599851942639475],[-43.94743947439474,-2.5745232835912333],[-43.933039330393285,-2.555948933622517],[-43.92223922239222,-2.547506047273103],[-43.91863918639186,-2.5491946245429915],[-43.89343893438934,-2.599851942639475],[-43.87903879038791,-2.635312065307005],[-43.875438754387545,-2.6234920244178284],[-43.87903879038791,-2.6116719835286517],[-43.882638826388245,-2.5981633653695866],[-43.88623886238861,-2.582966169940647],[-43.87903879038791,-2.5711461290514706],[-43.85383853838539,-2.5593260881622797],[-43.84663846638466,-2.555948933622517],[-43.83943839438393,-2.555948933622517],[-43.83583835838357,-2.5542603563526427],[-43.82863828638287,-2.5508832018128658],[-43.82143821438214,-2.5508832018128658],[-43.81423814238141,-2.5508832018128658],[-43.80343803438035,-2.5491946245429915],[-43.78183781837819,-2.5323088518441637],[-43.76743767437674,-2.525554542764624],[-43.75303753037531,-2.5238659654947497],[-43.74583745837458,-2.528931697304401],[-43.73863738637385,-2.51711165641521],[-43.73863738637385,-2.4867172655573313],[-43.724237242372425,-2.476585801938029],[-43.71343713437133,-2.4884058428272056],[-43.70623706237063,-2.5137345018754473],[-43.70983709837097,-2.539063160923689],[-43.72063720637206,-2.5525717790827542],[-43.72063720637206,-2.561014665432168],[-43.71343713437133,-2.561014665432168],[-43.71343713437133,-2.5525717790827542],[-43.70623706237063,-2.5525717790827542],[-43.70623706237063,-2.561014665432168],[-43.699036990369905,-2.561014665432168],[-43.699036990369905,-2.5542603563526427],[-43.699036990369905,-2.5491946245429915],[-43.69183691836918,-2.539063160923689],[-43.68463684636845,-2.5441288927333403],[-43.67743677436775,-2.5458174700032288],[-43.65943659436593,-2.5458174700032288],[-43.68103681036811,-2.528931697304401],[-43.68103681036811,-2.5052916155260334],[-43.67023670236702,-2.4833401110175686],[-43.6450364503645,-2.476585801938029],[-43.65223652236523,-2.485028688287443],[-43.65583655836559,-2.4934715746368568],[-43.66663666636666,-2.512045924605573],[-43.65223652236523,-2.5019144609862707],[-43.63423634236341,-2.498537306446508],[-43.623436234362345,-2.5052916155260334],[-43.616236162361616,-2.525554542764624],[-43.598235982359824,-2.515423079145336],[-43.55863558635585,-2.530620274574275],[-43.540635406354056,-2.525554542764624],[-43.547835478354784,-2.5188002336850985],[-43.56223562235621,-2.5188002336850985],[-43.56223562235621,-2.5103573473356846],[-43.55863558635585,-2.4951601519067452],[-43.547835478354784,-2.485028688287443],[-43.547835478354784,-2.5052916155260334],[-43.540635406354056,-2.4917829973669825],[-43.53703537035369,-2.4782743792079174],[-43.540635406354056,-2.4664543383187407],[-43.55503555035551,-2.4563228746994383],[-43.53703537035369,-2.4360599474608478],[-43.522635226352264,-2.442814256540373],[-43.5190351903519,-2.4647657610488523],[-43.522635226352264,-2.4917829973669825],[-43.50823508235081,-2.4917829973669825],[-43.50103501035011,-2.525554542764624],[-43.48663486634865,-2.5323088518441637],[-43.49383493834938,-2.5458174700032288],[-43.48303483034829,-2.5441288927333403],[-43.47583475834759,-2.537374583653815],[-43.472234722347224,-2.528931697304401],[-43.465034650346496,-2.5188002336850985],[-43.45783457834577,-2.5356860063839264],[-43.45423454234543,-2.5525717790827542],[-43.447034470344704,-2.5441288927333403],[-43.44343443434434,-2.530620274574275],[-43.447034470344704,-2.515423079145336],[-43.465034650346496,-2.4867172655573313],[-43.45423454234543,-2.4833401110175686],[-43.41823418234182,-2.4917829973669825],[-43.41823418234182,-2.485028688287443],[-43.43623436234361,-2.4833401110175686],[-43.447034470344704,-2.4715200701283777],[-43.45423454234543,-2.4563228746994383],[-43.46143461434613,-2.442814256540373],[-43.45423454234543,-2.442814256540373],[-43.447034470344704,-2.451257142889787],[-43.439834398343976,-2.4563228746994383],[-43.42543425434255,-2.458011451969327],[-43.41103411034109,-2.4563228746994383],[-43.42903429034291,-2.441125679270499],[-43.472234722347224,-2.4174855974921314],[-43.48663486634865,-2.3955340929836666],[-43.48303483034829,-2.3786483202848387],[-43.47583475834759,-2.3651397021257736],[-43.46863468634686,-2.353319661236597],[-43.46863468634686,-2.3465653521570715],[-43.45423454234543,-2.3414996203474203],[-43.439834398343976,-2.339811043077532],[-43.42543425434255,-2.3381224658076576],[-43.40743407434073,-2.336433888537769],[-43.38583385833857,-2.339811043077532],[-43.364233642336416,-2.3431881976172946],[-43.339033390333896,-2.344876774887183],[-43.31023310233101,-2.3465653521570715],[-43.25263252632527,-2.366828279395662],[-43.19863198631987,-2.380336897554713],[-43.11943119431194,-2.4174855974921314],[-43.0150301503015,-2.458011451969327],[-42.9430294302943,-2.48165153374768],[-42.91782917829178,-2.4917829973669825],[-42.88182881828817,-2.5103573473356846],[-42.85662856628565,-2.5221773882248613],[-42.82422824228243,-2.542440315463452],[-42.820628206282066,-2.5458174700032288],[-42.809828098280974,-2.547506047273103],[-42.77382773827739,-2.561014665432168],[-42.76662766627666,-2.561014665432168],[-42.709027090270894,-2.561014665432168],[-42.69822698226983,-2.564391819971931],[-42.694626946269466,-2.5711461290514706],[-42.68742687426874,-2.577900438130996],[-42.683826838268374,-2.5795890154008703],[-42.67302673026731,-2.5897204790201727],[-42.62982629826297,-2.6420663743865305],[-42.57942579425793,-2.6724607652444234],[-42.5650256502565,-2.675837919784186],[-42.55422554225541,-2.6775264970540746],[-42.53982539825398,-2.682592228863726],[-42.52902529025289,-2.682592228863726],[-42.51462514625146,-2.6809036515938374],[-42.48582485824858,-2.6690836107046607],[-42.48582485824858,-2.6859693834034886],[-42.48942489424894,-2.6994780015625537],[-42.49662496624967,-2.7045437333721907],[-42.51462514625146,-2.697789424292665],[-42.50742507425073,-2.7214295060710185],[-42.493024930249305,-2.731560969690321],[-42.475024750247485,-2.736626701499972],[-42.45342453424533,-2.7518238969289115],[-42.44622446224463,-2.7467581651192603],[-42.42822428224281,-2.7383152787698464],[-42.417424174241745,-2.731560969690321],[-42.41022410224102,-2.7383152787698464],[-42.40662406624065,-2.750135319659023],[-42.37782377823777,-2.7568896287385627],[-42.26262262622626,-2.758578206008437],[-42.25542255422553,-2.767021092357851],[-42.25542255422553,-2.7839068650566787],[-42.2590225902259,-2.802481215025395],[-42.266222662226625,-2.8143012559145717],[-42.23742237422374,-2.8041697922952693],[-42.233822338223376,-2.810924101374809],[-42.241022410224105,-2.8345641831531623],[-42.233822338223376,-2.8345641831531623],[-42.23022230222301,-2.8227441422639856],[-42.223022230222284,-2.8126126786446832],[-42.21222212222122,-2.8041697922952693],[-42.20502205022049,-2.8007926377555066],[-42.19422194221943,-2.8092355241049205],[-42.17622176221761,-2.8126126786446832],[-42.158221582215816,-2.8092355241049205],[-42.147421474214724,-2.8041697922952693],[-42.082620826208256,-2.8007926377555066],[-42.08622086220862,-2.8041697922952693],[-42.089820898208984,-2.8075469468350462],[-42.082620826208256,-2.821055564994097],[-42.082620826208256,-2.827809874073637],[-42.06822068220683,-2.819366987724223],[-42.046620466204644,-2.821055564994097],[-42.02862028620285,-2.824432719533874],[-42.021420214202124,-2.824432719533874],[-42.014220142201424,-2.810924101374809],[-42.00342003420033,-2.8126126786446832],[-41.96741967419675,-2.832875605883288],[-41.956619566195656,-2.8396299149628135],[-41.94221942219423,-2.837941337692925],[-41.938619386193864,-2.824432719533874],[-41.9350193501935,-2.7872840195964557],[-41.938619386193864,-2.7737754014373905],[-41.95301953019529,-2.7788411332470417],[-41.96021960219602,-2.7788411332470417],[-41.97101971019708,-2.7687096696277393],[-41.99981999819997,-2.750135319659023],[-42.014220142201424,-2.741692433309609],[-42.01062010620106,-2.7264952378806697],[-41.9962199621996,-2.7214295060710185],[-41.89901899018989,-2.7248066606107955],[-41.83781837818378,-2.7298723924204324],[-41.81981819818196,-2.7332495469602094],[-41.84141841418415,-2.7653325150879766],[-41.830618306183055,-2.761955360548214],[-41.82341823418233,-2.7568896287385627],[-41.8090180901809,-2.745069587849386],[-41.780217802178015,-2.7822182877868045],[-41.69381693816936,-2.832875605883288],[-41.66501665016651,-2.8565156876616413],[-41.65781657816578,-2.868335728550818],[-41.66501665016651,-2.8649585740110552],[-41.679416794167935,-2.8582042649315156],[-41.68661686616866,-2.854827110391753],[-41.6830168301683,-2.8582042649315156],[-41.679416794167935,-2.868335728550818],[-41.68661686616866,-2.8649585740110552],[-41.69741697416973,-2.8615814194712925],[-41.69741697416973,-2.868335728550818],[-41.68661686616866,-2.8750900376303434],[-41.67581675816757,-2.8801557694399946],[-41.66501665016651,-2.8784671921701204],[-41.65061650616505,-2.868335728550818],[-41.63981639816399,-2.885221501249646],[-41.62181621816217,-2.895352964868948],[-41.60021600216001,-2.9021072739484737],[-41.51741517415175,-2.907173005758125],[-41.488614886148866,-2.903795851218362],[-41.46701467014671,-2.8885986557894086],[-41.45621456214562,-2.8970415421388225],[-41.44901449014489,-2.9054844284882364],[-41.44901449014489,-2.915615892107539],[-41.45981459814598,-2.9291245102665897],[-41.45621456214562,-2.930813087536478],[-41.445414454144526,-2.9291245102665897],[-41.44901449014489,-2.934190242076241],[-41.44901449014489,-2.9358788193461294],[-41.452614526145254,-2.939255973885892],[-41.452614526145254,-2.942633128425655],[-41.445414454144526,-2.942633128425655],[-41.44181441814419,-2.9409445511557806],[-41.4310143101431,-2.9358788193461294],[-41.44181441814419,-2.9139273148376503],[-41.42381423814237,-2.908861583027999],[-41.344613446134446,-2.920681623917176],[-41.337413374133746,-2.9223702011870643],[-41.33021330213302,-2.9325016648063666],[-41.326613266132654,-2.9409445511557806],[-41.33381333813338,-2.947698860235306],[-41.34101341013411,-2.9510760147750688],[-41.337413374133746,-2.9544531693148315],[-41.326613266132654,-2.961207478394371],[-41.32301323013229,-2.964584632934134],[-41.31581315813159,-2.961207478394371],[-41.312213122131226,-2.9628960556642454],[-41.3050130501305,-2.969650364743785],[-41.301413014130134,-2.978093251093199],[-41.294212942129406,-2.978093251093199],[-41.294212942129406,-2.964584632934134],[-41.27261272612725,-2.9797818283630733],[-41.25821258212582,-3.005110487411315],[-41.24741247412473,-3.0118647964908547],[-41.243812438124365,-3.0152419510306174],[-41.24021240212403,-2.988224714712487],[-41.243812438124365,-2.973027519283548],[-41.25821258212582,-2.9493874375051945],[-41.26541265412655,-2.9291245102665897],[-41.28341283412834,-2.915615892107539],[-41.287012870128706,-2.903795851218362],[-41.29781297812977,-2.907173005758125],[-41.301413014130134,-2.907173005758125],[-41.30861308613086,-2.907173005758125],[-41.31581315813159,-2.903795851218362],[-41.301413014130134,-2.8970415421388225],[-41.27261272612725,-2.8784671921701204],[-41.25821258212582,-2.8750900376303434],[-41.19701197011969,-2.8750900376303434],[-41.168211682116805,-2.8784671921701204],[-41.13941139411395,-2.885221501249646],[-41.110611106111065,-2.8970415421388225],[-41.08901089010891,-2.917304469377413],[-41.08181081810818,-2.917304469377413],[-41.085410854108545,-2.9054844284882364],[-41.08901089010891,-2.8936643875990598],[-41.10341103411034,-2.8750900376303434],[-41.08901089010891,-2.881844346709883],[-41.08181081810818,-2.881844346709883],[-40.93780937809379,-2.868335728550818],[-40.9270092700927,-2.8700243058207064],[-40.909009090090905,-2.873401460360469],[-40.90180901809018,-2.8750900376303434],[-40.891008910089084,-2.873401460360469],[-40.88740887408875,-2.863269996741167],[-40.88020880208802,-2.8615814194712925],[-40.84780847808477,-2.859892842201404],[-40.840608406084044,-2.8649585740110552],[-40.83700837008371,-2.881844346709883],[-40.82980829808298,-2.881844346709883],[-40.81900819008189,-2.8717128830905807],[-40.76860768607685,-2.846384224042339],[-40.75420754207542,-2.841318492232702],[-40.581405814058144,-2.827809874073637],[-40.52740527405274,-2.8041697922952693],[-40.50940509405095,-2.8007926377555066],[-40.50580505805058,-2.797415483215744],[-40.498604986049855,-2.785595442326567],[-40.49140491404913,-2.7872840195964557],[-40.48780487804876,-2.78897259686633],[-40.48420484204843,-2.7923497514060927],[-40.48060480604806,-2.7923497514060927],[-40.40140401404014,-2.8058583695651578],[-40.27540275402754,-2.8075469468350462],[-40.189001890018886,-2.821055564994097],[-40.17460174601746,-2.824432719533874],[-40.1530015300153,-2.843007069502576],[-40.14220142201421,-2.8480728013122274],[-40.13140131401315,-2.8446956467724647],[-40.12780127801278,-2.8345641831531623],[-40.120601206012054,-2.827809874073637],[-40.10980109801096,-2.8345641831531623],[-40.095400954009534,-2.8311870286133995],[-40.081000810008106,-2.8362527604230507],[-40.06660066600665,-2.8446956467724647],[-40.05220052200522,-2.8480728013122274],[-40.00180001800018,-2.846384224042339],[-39.987399873998726,-2.8480728013122274],[-39.904599045990466,-2.9021072739484737],[-39.87219872198722,-2.9105501602978876],[-39.861398613986125,-2.915615892107539],[-39.80739807398072,-2.9679617874738966],[-39.79659796597966,-2.974716096553422],[-39.7821978219782,-2.978093251093199],[-39.76779767797677,-2.9848475601727245],[-39.74259742597425,-3.0034219101414408],[-39.72459724597246,-3.021996260110143],[-39.73179731797316,-3.0321277237294453],[-39.72459724597246,-3.035504878269208],[-39.71739717397173,-3.0371934555390823],[-39.71379713797137,-3.0388820328089707],[-39.702997029970305,-3.0388820328089707],[-39.71379713797137,-3.0253734146499056],[-39.69939699396994,-3.0169305283004917],[-39.68139681396812,-3.0203076828402544],[-39.64179641796417,-3.0388820328089707],[-39.63819638196381,-3.040570610078859],[-39.62019620196202,-3.0388820328089707],[-39.61659616596165,-3.0422591873487335],[-39.609396093960925,-3.0557678055077986],[-39.609396093960925,-3.06083353731745],[-39.56979569795698,-3.0912279281753285],[-39.49779497794978,-3.131753782652524],[-39.48699486994869,-3.145262400811575],[-39.3969939699397,-3.1840996780188817],[-39.382593825938244,-3.18578825528877],[-39.375393753937544,-3.18578825528877],[-39.368193681936816,-3.1840996780188817],[-39.357393573935724,-3.1840996780188817],[-39.35379353793539,-3.1874768325586444],[-39.34659346593466,-3.194231141638184],[-39.33939339393393,-3.2009854507177096],[-39.32139321393214,-3.207739759797235],[-39.28539285392853,-3.2313798415756025],[-39.27819278192783,-3.229691264305714],[-39.2709927099271,-3.2313798415756025],[-39.267392673926736,-3.2364455733852537],[-39.26379263792637,-3.2415113051948907],[-39.26019260192601,-3.2482656142744304],[-39.26019260192601,-3.251642768814193],[-39.19539195391954,-3.2972343551010255],[-39.166591665916656,-3.3225630141492672],[-39.15579155791556,-3.3276287459589184],[-39.1449914499145,-3.3293173232287927],[-39.12699126991271,-3.331005900498681],[-39.116191161911615,-3.334383055038444],[-39.10179101791019,-3.347891673197509],[-39.090990909909095,-3.364777445896337],[-39.080190801908,-3.3765974867855135],[-39.05859058590585,-3.3816632185951647],[-39.015390153901535,-3.383351795865039],[-39.00099000990011,-3.38841752767469],[-38.98658986589865,-3.3951718367542156],[-38.96138961389613,-3.418811918532583],[-38.94338943389434,-3.444140577580825],[-38.914589145891455,-3.5049293592965967],[-38.89658896588966,-3.4998636274869455],[-38.88218882188821,-3.5083065138363594],[-38.87138871388714,-3.520126554725536],[-38.85698856988569,-3.533635172884601],[-38.806588065880646,-3.5471437910436663],[-38.788587885878854,-3.5741610273617823],[-38.763387633876334,-3.59780110914015],[-38.730987309873086,-3.6197526136486147],[-38.705787057870566,-3.629884077267917],[-38.6949869498695,-3.6366383863474425],[-38.66978669786698,-3.668721354475224],[-38.65898658986589,-3.677164240824638],[-38.59418594185942,-3.690672858983689],[-38.52578525785256,-3.717690095301819],[-38.49338493384934,-3.7210672498415818],[-38.478984789847885,-3.6974271680632285],[-38.46818468184682,-3.7058700544126424],[-38.45738457384573,-3.717690095301819],[-38.43578435784357,-3.758215949779],[-38.41058410584105,-3.79367607244653],[-38.403384033840325,-3.8088732678754837],[-38.396183961839625,-3.840956236003251],[-38.3889838898389,-3.854464854162316],[-38.378183781837805,-3.8696620495912555],[-38.320583205832065,-3.9220079449576275],[-38.30978309783097,-3.9304508313070414],[-38.2629826298263,-3.9524023358155063],[-38.252182521825205,-3.9625337994348087],[-38.18738187381874,-4.052028394738585],[-38.10818108181081,-4.158408762741203],[-38.02898028980289,-4.237771894425691],[-37.935379353793536,-4.307003562490877],[-37.92097920979208,-4.313757871570402],[-37.85257852578525,-4.376235230556063],[-37.834578345783456,-4.3846781169054765],[-37.8129781297813,-4.391432425985016],[-37.791377913779144,-4.394809580524779],[-37.76977769777696,-4.396498157794667],[-37.71217712177122,-4.514698566686448],[-37.683376833768335,-4.548470112084104],[-37.65097650976509,-4.578864502941997],[-37.607776077760775,-4.607570316530001],[-37.56457564575646,-4.629521821038466],[-37.53577535775358,-4.63796470738788],[-37.52497524975249,-4.632898975578243],[-37.51417514175142,-4.624456089228829],[-37.4889748897489,-4.629521821038466],[-37.42777427774277,-4.6616047891662475],[-37.323373233732326,-4.6970649118337775],[-37.290972909729106,-4.717327839072368],[-37.272972729727286,-4.74265649812061],[-37.229772297722974,-4.8422825570436885],[-37.1829718297183,-4.911514225108888],[-37.13617136171362,-4.931777152347479],[-37.114571145711466,-4.9216456887281765],[-37.096570965709645,-4.919957111458302],[-37.08217082170822,-4.925022843267939],[-37.04977049770497,-4.938531461427004],[-37.038970389703906,-4.938531461427004],[-37.01017010170102,-4.931777152347479],[-36.98136981369814,-4.9300885750775905],[-36.89856898568985,-4.938531461427004],[-36.88056880568806,-4.948662925046307],[-36.84816848168481,-4.985811624983725],[-36.844568445684445,-4.992565934063251],[-36.83376833768338,-4.997631665872902],[-36.819368193681925,-5.007763129492204],[-36.80856808568086,-5.019583170381381],[-36.8049680496805,-5.029714634000669],[-36.79056790567904,-5.051666138509148],[-36.75816758167582,-5.0668633339380875],[-36.718567185671844,-5.0753062202875014],[-36.69696696966969,-5.0753062202875014],[-36.69696696966969,-5.088814838446567],[-36.68256682566826,-5.092191992986329],[-36.642966429664284,-5.088814838446567],[-36.6069660696607,-5.095569147526092],[-36.58896588965888,-5.102323456605632],[-36.560165601656024,-5.122586383844222],[-36.54576545765457,-5.1276521156538735],[-36.53136531365314,-5.122586383844222],[-36.52416524165241,-5.105700611145394],[-36.534965349653504,-5.100634879335743],[-36.57096570965709,-5.092191992986329],[-36.58176581765818,-5.080371952097153],[-36.54576545765457,-5.088814838446567],[-36.42336423364233,-5.080371952097153],[-36.34056340563404,-5.088814838446567],[-36.300963009630095,-5.100634879335743],[-36.2829628296283,-5.104012033875506],[-36.25776257762578,-5.102323456605632],[-36.25776257762578,-5.095569147526092],[-36.29376293762937,-5.095569147526092],[-36.29376293762937,-5.088814838446567],[-36.13176131761318,-5.095569147526092],[-36.11376113761136,-5.092191992986329],[-36.07776077760778,-5.071929065747739],[-36.041760417604166,-5.065174756668213],[-36.016560165601646,-5.051666138509148],[-35.998559985599854,-5.048288983969385],[-35.91935919359193,-5.058420447588674],[-35.76815768157681,-5.087126261176678],[-35.660156601566,-5.110766342955046],[-35.58095580955808,-5.1192092293044595],[-35.54855548555486,-5.1276521156538735],[-35.50895508955088,-5.144537888352701],[-35.49455494554945,-5.158046506511752],[-35.45495454954548,-5.196883783719059],[-35.436954369543685,-5.205326670068473],[-35.41895418954189,-5.2120809791479985],[-35.404554045540436,-5.227278174576952],[-35.39015390153901,-5.24416394727578],[-35.37215372153722,-5.27962406994331],[-35.361353613536124,-5.301575574451789],[-35.35775357753576,-5.323527078960268],[-35.354153541535396,-5.345478583468733],[-35.3469534695347,-5.355610047088035],[-35.31815318153181,-5.382627283406151],[-35.260552605526044,-5.483941919599118],[-35.253352533525316,-5.5244677740762995],[-35.246152461524616,-5.546419278584779],[-35.235352353523524,-5.566682205823369],[-35.22455224552246,-5.5818794012523085],[-35.23175231752316,-5.588633710331848],[-35.22455224552246,-5.598765173951136],[-35.20655206552064,-5.667996842016336],[-35.20655206552064,-5.678128305635624],[-35.195751957519576,-5.689948346524801],[-35.195751957519576,-5.759180014590001],[-35.18855188551885,-5.772688632749066],[-35.177751777517784,-5.782820096368354],[-35.170551705517056,-5.796328714527419],[-35.16695166951669,-5.818280219035898],[-35.170551705517056,-5.833477414464838],[-35.170551705517056,-5.84360887808414],[-35.16695166951669,-5.855428918973317],[-35.1489514895149,-5.874003268942019],[-35.1489514895149,-5.877380423481782],[-35.145351453514536,-5.887511887101084],[-35.1489514895149,-5.92128343249874],[-35.145351453514536,-5.931414896118028],[-35.134551345513444,-5.944923514277093],[-35.134551345513444,-5.9550549778963955],[-35.13095130951308,-5.9601207097060325],[-35.11295112951129,-5.97700648240486],[-35.10575105751056,-5.985449368754274],[-35.10575105751056,-5.995580832373577],[-35.10575105751056,-6.027663800501344],[-35.11295112951129,-6.0479267277399344],[-35.11295112951129,-6.058058191359237],[-35.102151021510224,-6.061435345899],[-35.09855098550986,-6.066501077708651],[-35.09135091350913,-6.18639006387032],[-35.120151201512016,-6.164438559361841],[-35.12375123751238,-6.183012909330557],[-35.1489514895149,-6.2066529911089106],[-35.152551525515264,-6.216784454728213],[-35.134551345513444,-6.223538763807738],[-35.120151201512016,-6.2150958774583245],[-35.109351093510924,-6.199898682029385],[-35.094950949509496,-6.191455795679971],[-35.08775087750877,-6.198210104759497],[-35.076950769507704,-6.220161609267976],[-35.069750697506976,-6.226915918347501],[-35.04815048150482,-6.226915918347501],[-35.04095040950409,-6.230293072887278],[-35.03735037350373,-6.2370473819668035],[-35.03735037350373,-6.258998886475283],[-35.026550265502664,-6.299524740952464],[-35.0229502295023,-6.318099090921166],[-35.026550265502664,-6.333296286350119],[-35.0229502295023,-6.343427749969408],[-35.01575015750157,-6.355247790858584],[-35.01215012150121,-6.363690677207998],[-34.99774997749978,-6.370444986287538],[-34.99054990549905,-6.377199295367063],[-34.98334983349832,-6.390707913526128],[-34.97254972549726,-6.432922345273198],[-34.9581495814958,-6.537614136005928],[-34.9581495814958,-6.58320572229276],[-34.968949689496895,-6.616977267690416],[-34.96174961749617,-6.638928772198881],[-34.9581495814958,-6.650748813088057],[-34.95454954549544,-6.674388894866425],[-34.94734947349474,-6.684520358485713],[-34.94014940149401,-6.6946518221050155],[-34.93654936549365,-6.706471862994192],[-34.93654936549365,-6.7250462129629085],[-34.94014940149401,-6.745309140201499],[-34.943749437494375,-6.76557206744009],[-34.93654936549365,-6.787523571948569],[-34.93654936549365,-6.7824578401389175],[-34.91494914949149,-6.86350954909328],[-34.9041490414904,-6.887149630871647],[-34.893348933489335,-6.893903939951173],[-34.86454864548645,-6.907412558110238],[-34.86094860948609,-6.914166867189763],[-34.86094860948609,-6.9631356080163584],[-34.86454864548645,-6.976644226175424],[-34.868148681486815,-6.983398535254949],[-34.87534875348754,-6.986775689794726],[-34.87894878948788,-6.993529998874251],[-34.88254882548824,-7.005350039763428],[-34.87894878948788,-7.027301544271907],[-34.87894878948788,-7.040810162430972],[-34.8969489694897,-7.081336016908153],[-34.893348933489335,-7.083024594178028],[-34.90054900549006,-7.089778903257567],[-34.90774907749076,-7.09315605779733],[-34.91494914949149,-7.089778903257567],[-34.92214922149222,-7.083024594178028],[-34.91134911349113,-7.09315605779733],[-34.90774907749076,-7.104976098686507],[-34.90774907749076,-7.116796139575683],[-34.91494914949149,-7.1303047577347485],[-34.8969489694897,-7.116796139575683],[-34.87534875348754,-7.0948446350672185],[-34.86094860948609,-7.071204553288851],[-34.85374853748536,-7.05094162605026],[-34.85014850148502,-7.03067869881167],[-34.83574835748357,-6.991841421604363],[-34.83934839348393,-6.973267071635661],[-34.8249482494825,-6.9850871125248375],[-34.8249482494825,-7.003661462493554],[-34.8321483214832,-7.040810162430972],[-34.8321483214832,-7.0999103668768555],[-34.82854828548284,-7.1303047577347485],[-34.8249482494825,-7.137059066814274],[-34.817748177481775,-7.143813375893814],[-34.80334803348032,-7.153944839513102],[-34.79614796147962,-7.159010571322753],[-34.792547925479255,-7.175896344021581],[-34.79614796147962,-7.192782116720409],[-34.80334803348032,-7.207979312149348],[-34.80334803348032,-7.223176507578302],[-34.80334803348032,-7.370082730058087],[-34.81414814148141,-7.444380129932938],[-34.81414814148141,-7.483217407140231],[-34.80334803348032,-7.513611797998124],[-34.81414814148141,-7.542317611586128],[-34.817748177481775,-7.549071920665654],[-34.8249482494825,-7.549071920665654],[-34.83574835748357,-7.542317611586128],[-34.842948429484295,-7.542317611586128],[-34.87894878948788,-7.542317611586128],[-34.893348933489335,-7.542317611586128],[-34.8969489694897,-7.544006188856017],[-34.91134911349113,-7.547383343395779],[-34.92934929349292,-7.555826229745193],[-34.86454864548645,-7.554137652475305],[-34.83574835748357,-7.562580538824719],[-34.8321483214832,-7.582843466063309],[-34.82134821348214,-7.599729238762137],[-34.81054810548105,-7.613237856921202],[-34.80694806948068,-7.623369320540505],[-34.81414814148141,-7.638566515969444],[-34.82134821348214,-7.653763711398383],[-34.82854828548284,-7.680780947716514],[-34.83574835748357,-7.679092370446625],[-34.83574835748357,-7.6672723295574485],[-34.83934839348393,-7.655452288668272],[-34.83934839348393,-7.643632247779095],[-34.842948429484295,-7.650386556858621],[-34.84654846548466,-7.657140865938146],[-34.84654846548466,-7.6723380613671],[-34.868148681486815,-7.631812206889904],[-34.87534875348754,-7.6183035887308534],[-34.87534875348754,-7.636877938699556],[-34.86094860948609,-7.685846679526151],[-34.86454864548645,-7.704421029494867],[-34.87534875348754,-7.7027324522249785],[-34.88614886148861,-7.70779818403463],[-34.90054900549006,-7.717929647653932],[-34.90774907749076,-7.7331268430828715],[-34.88614886148861,-7.722995379463583],[-34.87894878948788,-7.714552493114169],[-34.868148681486815,-7.714552493114169],[-34.86454864548645,-7.717929647653932],[-34.868148681486815,-7.72806111127322],[-34.87534875348754,-7.736503997622634],[-34.88614886148861,-7.744946883972048],[-34.893348933489335,-7.761832656670876],[-34.893348933489335,-7.805735665687834],[-34.88614886148861,-7.815867129307122],[-34.84654846548466,-7.822621438386662],[-34.84654846548466,-7.834441479275839],[-34.842948429484295,-7.8479500974348895],[-34.84654846548466,-7.885098797372322],[-34.8321483214832,-7.858081561054192],[-34.8249482494825,-7.8699016019433685],[-34.817748177481775,-7.893541683721736],[-34.81054810548105,-7.905361724610913],[-34.817748177481775,-7.913804610960327],[-34.817748177481775,-7.918870342769964],[-34.817748177481775,-7.923936074579615],[-34.81054810548105,-7.932378960929029],[-34.82134821348214,-7.952641888167619],[-34.84654846548466,-8.04213648347141],[-34.84654846548466,-8.059022256170238],[-34.85014850148502,-8.069153719789526],[-34.86454864548645,-8.070842297059414],[-34.87894878948788,-8.06239941071],[-34.90054900549006,-8.04213648347141],[-34.91134911349113,-8.03538217439187],[-34.92934929349292,-8.03538217439187],[-34.91494914949149,-8.045513638011172],[-34.90774907749076,-8.052267947090698],[-34.90054900549006,-8.06239941071],[-34.8969489694897,-8.074219451599177],[-34.8969489694897,-8.08435091521848],[-34.8969489694897,-8.094482378837768],[-34.88614886148861,-8.10461384245707],[-34.88254882548824,-8.096170956107656],[-34.87894878948788,-8.089416647028116],[-34.88254882548824,-8.10461384245707],[-34.893348933489335,-8.141762542394488],[-34.90054900549006,-8.178911242331907],[-34.9041490414904,-8.189042705951195],[-34.92214922149222,-8.214371364999437],[-34.93294932949328,-8.241388601317567],[-34.94014940149401,-8.27178299217546],[-34.943749437494375,-8.310620269382753],[-34.943749437494375,-8.337637505700883],[-34.94014940149401,-8.347768969320171],[-34.94014940149401,-8.351146123859934],[-34.94734947349474,-8.356211855669585],[-34.9509495094951,-8.364654742018999],[-34.95454954549544,-8.374786205638301],[-34.9581495814958,-8.383229091987715],[-35.026550265502664,-8.575726900754333],[-35.069750697506976,-8.66184434151836],[-35.069750697506976,-8.671975805137649],[-35.08055080550804,-8.680418691487063],[-35.084150841508404,-8.700681618725653],[-35.08775087750877,-8.741207473202849],[-35.094950949509496,-8.76147040044144],[-35.127351273512744,-8.807061986728272],[-35.134551345513444,-8.827324913966862],[-35.13815138151381,-8.871227922983806],[-35.1489514895149,-8.911753777461001],[-35.18855188551885,-8.99111690914549],[-35.23175231752316,-9.048528536321498],[-35.260552605526044,-9.114383049846921],[-35.28935289352893,-9.153220327054228],[-35.303753037530356,-9.19374618153141],[-35.39375393753937,-9.305192281343665],[-35.41535415354153,-9.323766631312381],[-35.41535415354153,-9.317012322232841],[-35.436954369543685,-9.328832363122018],[-35.462154621546205,-9.347406713090734],[-35.48375483754836,-9.367669640329325],[-35.49095490954909,-9.389621144837804],[-35.49455494554945,-9.404818340266743],[-35.57375573755738,-9.523018749158538],[-35.58095580955808,-9.533150212777826],[-35.63135631356312,-9.56354460363572],[-35.65655656556564,-9.577053221794785],[-35.67455674556746,-9.609136189922552],[-35.69615696156961,-9.6733021261781],[-35.71055710557104,-9.674990703447975],[-35.71775717757177,-9.678367857987737],[-35.74295742957429,-9.680056435257626],[-35.75375753757538,-9.683433589797389],[-35.76095760957608,-9.686810744337151],[-35.7789577895779,-9.700319362496217],[-35.764557645576446,-9.674990703447975],[-35.75015750157502,-9.659793508019035],[-35.746557465574654,-9.641219158050319],[-35.764557645576446,-9.61082476719244],[-35.771757717577174,-9.600693303573138],[-35.7861578615786,-9.588873262683961],[-35.80055800558006,-9.585496108144199],[-35.81135811358112,-9.597316149033375],[-35.81135811358112,-9.6040704581129],[-35.796957969579694,-9.629399117161142],[-35.79335793357933,-9.642907735320208],[-35.79335793357933,-9.669924971638324],[-35.79335793357933,-9.678367857987737],[-35.80055800558006,-9.683433589797389],[-35.80775807758076,-9.686810744337151],[-35.85455854558546,-9.73071375335411],[-35.8581585815858,-9.734090907893872],[-35.86895868958689,-9.717205135195044],[-35.87615876158762,-9.696942207956454],[-35.87615876158762,-9.686810744337151],[-35.90855908559084,-9.639530580780445],[-35.9049590495905,-9.624333385351491],[-35.91935919359193,-9.607447612652663],[-35.940959409594086,-9.59900472630325],[-35.96255962559624,-9.61082476719244],[-35.95175951759518,-9.627710539891254],[-35.922959229592294,-9.64628488985997],[-35.90855908559084,-9.659793508019035],[-35.90135901359014,-9.671613548908212],[-35.87975879758798,-9.749288103322812],[-35.872558725587254,-9.756042412402351],[-35.86175861758616,-9.759419566942114],[-35.8581585815858,-9.756042412402351],[-35.8581585815858,-9.747599526052937],[-35.85455854558546,-9.740845216973398],[-35.81855818558185,-9.735779485163746],[-35.80415804158042,-9.73071375335411],[-35.796957969579694,-9.720582289734807],[-35.81135811358112,-9.74422237151316],[-35.86175861758616,-9.794879689609644],[-35.88335883358832,-9.85566847132543],[-35.9049590495905,-9.877619975833895],[-35.948159481594814,-9.913080098501439],[-35.973359733597334,-9.965425993867797],[-35.98055980559806,-9.97386888021721],[-35.991359913599126,-9.98062318929675],[-36.00216002160022,-9.99582038472569],[-36.03456034560344,-10.063363475521001],[-36.048960489604895,-10.07856067094994],[-36.08856088560884,-10.09375786637888],[-36.14256142561425,-10.159612379904317],[-36.250562505625055,-10.247418397938205],[-36.27936279362794,-10.279501366065986],[-36.290162901629,-10.296387138764814],[-36.29376293762937,-10.320027220543167],[-36.290162901629,-10.331847261432344],[-36.290162901629,-10.338601570511884],[-36.290162901629,-10.34366730232152],[-36.29376293762937,-10.352110188670935],[-36.408964089640904,-10.502393565690497],[-36.41976419764197,-10.509147874770036],[-36.459364593645944,-10.520967915659213],[-36.484564845648464,-10.522656492929087],[-36.50616506165062,-10.527722224738739],[-36.52056520565205,-10.534476533818264],[-36.53856538565384,-10.542919420167678],[-36.578165781657816,-10.549673729247218],[-36.58176581765818,-10.55305088378698],[-36.592565925659244,-10.56824807921592],[-36.59616596165961,-10.571625233755682],[-36.610566105661064,-10.57500238829546],[-36.768967689676884,-10.67293986994865],[-36.90216902169021,-10.772565928871728],[-36.95256952569525,-10.836731865127277],[-36.963369633696345,-10.865437678715281],[-36.97776977769777,-10.885700605953872],[-37.02817028170281,-10.936357924050355],[-37.038970389703906,-10.94986654220942],[-37.046170461704605,-10.96506373763836],[-37.046170461704605,-10.98532666487695],[-37.04977049770497,-10.998835283036016],[-37.12537125371253,-11.115347114657922],[-37.139771397713986,-11.12547857827721],[-37.146971469714686,-11.122101423737448],[-37.146971469714686,-11.11196996011816],[-37.14337143371432,-11.100149919228969],[-37.14337143371432,-11.091707032879555],[-37.146971469714686,-11.08495272380003],[-37.15057150571505,-11.08326414653014],[-37.15777157771578,-11.081575569260266],[-37.16137161371614,-11.071444105640964],[-37.16857168571684,-11.071444105640964],[-37.17577175771757,-11.08495272380003],[-37.18657186571866,-11.074821260180727],[-37.20097200972009,-11.04273829205296],[-37.20817208172082,-11.039361137513197],[-37.247772477724766,-11.022475364814369],[-37.25857258572586,-11.019098210274606],[-37.26217262172622,-11.015721055734844],[-37.26937269372692,-11.015721055734844],[-37.27657276572765,-11.022475364814369],[-37.27657276572765,-11.032606828433671],[-37.27657276572765,-11.041049714783085],[-37.26937269372692,-11.052869755672262],[-37.265772657726586,-11.064689796561439],[-37.25857258572586,-11.071444105640964],[-37.25137251372513,-11.073132682910853],[-37.2441724417244,-11.071444105640964],[-37.2369723697237,-11.06975552837109],[-37.22617226172261,-11.074821260180727],[-37.21897218972188,-11.081575569260266],[-37.21177211772118,-11.086641301069918],[-37.197371973719726,-11.091707032879555],[-37.197371973719726,-11.098461341959094],[-37.215372153721546,-11.091707032879555],[-37.21897218972188,-11.096772764689206],[-37.215372153721546,-11.106904228308508],[-37.204572045720454,-11.11196996011816],[-37.19377193771936,-11.110281382848271],[-37.190171901719026,-11.10521565103862],[-37.18657186571866,-11.100149919228969],[-37.1829718297183,-11.098461341959094],[-37.172171721717206,-11.103527073768745],[-37.164971649716506,-11.108592805578382],[-37.164971649716506,-11.117035691927796],[-37.16857168571684,-11.12547857827721],[-37.164971649716506,-11.135610041896513],[-37.164971649716506,-11.171070164564043],[-37.154171541715414,-11.18795593726287],[-37.154171541715414,-11.181201628183345],[-37.15057150571505,-11.18795593726287],[-37.172171721717206,-11.203153132691824],[-37.20097200972009,-11.214973173581],[-37.222572225722246,-11.23017036900994],[-37.229772297722974,-11.25212187351842],[-37.2369723697237,-11.260564759867833],[-37.2441724417244,-11.267319068947359],[-37.254972549725494,-11.27238480075701],[-37.265772657726586,-11.277450532566661],[-37.26937269372692,-11.284204841646186],[-37.28737287372874,-11.316287809773954],[-37.316173161731626,-11.405782405077744],[-37.330573305733054,-11.420979600506683],[-37.373773737737366,-11.429422486856097],[-37.38817388173882,-11.427733909586223],[-37.38817388173882,-11.41929102323681],[-37.38457384573846,-11.409159559617507],[-37.38457384573846,-11.402405250537981],[-37.40257402574025,-11.399028095998219],[-37.373773737737366,-11.361879396060786],[-37.36657366573667,-11.351747932441498],[-37.3629736297363,-11.324730696123368],[-37.35937359373594,-11.316287809773954],[-37.348573485734846,-11.302779191614903],[-37.305373053730534,-11.270696223487121],[-37.29457294572944,-11.258876182597945],[-37.290972909729106,-11.253810450788293],[-37.272972729727286,-11.248744718978656],[-37.28737287372874,-11.236924678089466],[-37.28737287372874,-11.208218864501461],[-37.298172981729806,-11.19471024634241],[-37.30177301773017,-11.220038905390652],[-37.30177301773017,-11.231858946279829],[-37.298172981729806,-11.241990409899117],[-37.305373053730534,-11.241990409899117],[-37.323373233732326,-11.208218864501461],[-37.33777337773378,-11.191333091802633],[-37.34497344973448,-11.184578782723108],[-37.348573485734846,-11.204841709961698],[-37.31977319773196,-11.25043329624853],[-37.31977319773196,-11.270696223487121],[-37.32697326973269,-11.263941914407596],[-37.348573485734846,-11.248744718978656],[-37.34497344973448,-11.260564759867833],[-37.341373413734146,-11.267319068947359],[-37.33777337773378,-11.27238480075701],[-37.33417334173342,-11.280827687106424],[-37.33777337773378,-11.290959150725712],[-37.341373413734146,-11.2926477279956],[-37.35217352173521,-11.2926477279956],[-37.35937359373594,-11.296024882535363],[-37.370173701737,-11.306156346154665],[-37.380973809738094,-11.317976387043842],[-37.39537395373952,-11.344993623361972],[-37.40977409774098,-11.395650941458442],[-37.41697416974168,-11.405782405077744],[-37.42777427774277,-11.405782405077744],[-37.4349743497435,-11.388896632378916],[-37.4421744217442,-11.351747932441498],[-37.44577445774456,-11.365256550600563],[-37.45297452974529,-11.3703222824102],[-37.46017460174602,-11.368633705140326],[-37.47097470974708,-11.358502241521023],[-37.46017460174602,-11.392273786918679],[-37.45297452974529,-11.404093827807856],[-37.4421744217442,-11.41253671415727],[-37.40257402574025,-11.429422486856097],[-37.39537395373952,-11.437865373205511],[-37.406174061740614,-11.469948341333279],[-37.431374313743135,-11.493588423111646],[-37.46377463774638,-11.507097041270711],[-37.49257492574924,-11.515539927620111],[-37.47457474574745,-11.520605659429762],[-37.45297452974529,-11.51722850489],[-37.431374313743135,-11.510474195810474],[-37.41697416974168,-11.503719886730934],[-37.40257402574025,-11.490211268571883],[-37.38817388173882,-11.47501407314293],[-37.37737377373773,-11.45981687771399],[-37.35937359373594,-11.45475114590434],[-37.36657366573667,-11.473325495873056],[-37.4349743497435,-11.569574400256357],[-37.51057510575106,-11.723234931815696],[-37.51417514175142,-11.760383631753115],[-37.52137521375212,-11.775580827182054],[-37.54657546575464,-11.804286640770059],[-37.60417604176041,-11.94950428597997],[-37.632976329763295,-11.995095872266802],[-37.65457654576545,-12.049130344903048],[-37.71937719377192,-12.13693636293695],[-37.78777787777878,-12.265268235448033],[-37.87057870578704,-12.38178006706994],[-37.93177931779317,-12.474651816913493],[-38.000180001800004,-12.562457834947395],[-38.050580505805044,-12.641820966631883],[-38.0649806498065,-12.64688669844152],[-38.0721807218072,-12.65364100752106],[-38.144181441814425,-12.734692716475422],[-38.21258212582126,-12.82081015723945],[-38.29178291782918,-12.895107557114287],[-38.320583205832065,-12.935633411591468],[-38.33858338583386,-12.950830607020407],[-38.36018360183601,-12.962650647909584],[-38.370983709837105,-12.96602780244936],[-38.39258392583926,-12.967716379719235],[-38.40698406984069,-12.969404956989123],[-38.41778417784178,-12.972782111528886],[-38.43578435784357,-12.993045038767477],[-38.46458464584646,-13.00317650238678],[-38.48618486184861,-13.013307966006067],[-38.511385113851134,-13.021750852355481],[-38.53298532985329,-13.01668512054583],[-38.536585365853654,-13.00317650238678],[-38.51858518585186,-12.967716379719235],[-38.50778507785077,-12.932256257051705],[-38.496984969849706,-12.91874763889264],[-38.48618486184861,-12.915370484352877],[-38.478984789847885,-12.935633411591468],[-38.478984789847885,-12.915370484352877],[-38.48618486184861,-12.89848471165405],[-38.48978489784898,-12.881598938955221],[-38.47538475384752,-12.851204548097328],[-38.478984789847885,-12.842761661747915],[-38.48618486184861,-12.8343187753985],[-38.49338493384934,-12.829253043588864],[-38.49338493384934,-12.822498734509324],[-38.49338493384934,-12.817433002699673],[-38.50058500585004,-12.808990116350259],[-38.504185041850405,-12.803924384540622],[-38.50058500585004,-12.800547230000845],[-38.50058500585004,-12.797170075461082],[-38.50058500585004,-12.790415766381557],[-38.50778507785077,-12.722872675586245],[-38.52578525785256,-12.722872675586245],[-38.54378543785438,-12.721184098316371],[-38.55818558185581,-12.71611836650672],[-38.572585725857266,-12.702609748347655],[-38.604986049860486,-12.714429789236831],[-38.62658626586264,-12.702609748347655],[-38.637386373863734,-12.680658243839176],[-38.648186481864826,-12.638443812092106],[-38.655386553865526,-12.63337808028247],[-38.66618666186662,-12.63337808028247],[-38.68418684186841,-12.62662377120293],[-38.6949869498695,-12.614803730313753],[-38.6949869498695,-12.602983689424576],[-38.69138691386914,-12.589475071265511],[-38.69138691386914,-12.570900721296809],[-38.698586985869866,-12.570900721296809],[-38.71658716587166,-12.604672266694465],[-38.723787237872386,-12.623246616663167],[-38.723787237872386,-12.643509543901757],[-38.723787237872386,-12.670526780219888],[-38.72738727387272,-12.678969666569301],[-38.730987309873086,-12.682346821109064],[-38.73458734587345,-12.684035398378938],[-38.738187381873814,-12.687412552918715],[-38.75258752587524,-12.712741211966957],[-38.74898748987491,-12.724561252856134],[-38.738187381873814,-12.73638129374531],[-38.77778777787776,-12.807301539080385],[-38.788587885878854,-12.819121579969561],[-38.79578795787958,-12.82081015723945],[-38.806588065880646,-12.8343187753985],[-38.813788137881374,-12.839384507208152],[-38.82458824588247,-12.837695929938278],[-38.83538835388353,-12.827564466318975],[-38.84618846188462,-12.825875889049087],[-38.85698856988569,-12.817433002699673],[-38.864188641886415,-12.795481498191208],[-38.88218882188821,-12.722872675586245],[-38.88218882188821,-12.705986902887418],[-38.87138871388714,-12.692478284728352],[-38.84978849788499,-12.67390393475965],[-38.86058860588605,-12.65364100752106],[-38.86778867788678,-12.65364100752106],[-38.864188641886415,-12.670526780219888],[-38.87138871388714,-12.677281089299413],[-38.88218882188821,-12.684035398378938],[-38.89658896588966,-12.69416686199824],[-38.90378903789036,-12.70936405742718],[-38.90738907389073,-12.721184098316371],[-38.91098910989109,-12.73131556193566],[-38.92538925389255,-12.73638129374531],[-38.914589145891455,-12.748201334634487],[-38.90378903789036,-12.77184141641284],[-38.89658896588966,-12.783661457302031],[-38.889388893888935,-12.790415766381557],[-38.88218882188821,-12.792104343651431],[-38.87498874988751,-12.79379292092132],[-38.86778867788678,-12.805612961810496],[-38.86778867788678,-12.808990116350259],[-38.86778867788678,-12.82081015723945],[-38.86778867788678,-12.8343187753985],[-38.86058860588605,-12.846138816287677],[-38.85338853388532,-12.851204548097328],[-38.83538835388353,-12.86133601171663],[-38.8281882818828,-12.866401743526282],[-38.813788137881374,-12.852893125367217],[-38.80298802988028,-12.849515970827454],[-38.79578795787958,-12.849515970827454],[-38.79218792187922,-12.85627027990698],[-38.788587885878854,-12.866401743526282],[-38.78498784987849,-12.873156052605808],[-38.77778777787776,-12.869778898066045],[-38.7669876698767,-12.864713166256394],[-38.75258752587524,-12.864713166256394],[-38.738187381873814,-12.868090320796156],[-38.723787237872386,-12.873156052605808],[-38.73458734587345,-12.879910361685333],[-38.73458734587345,-12.88328751622511],[-38.74178741787418,-12.89679613438416],[-38.74538745387454,-12.905239020733575],[-38.75258752587524,-12.911993329813114],[-38.75258752587524,-12.925501947972165],[-38.75258752587524,-12.94576487521077],[-38.75258752587524,-12.957584916099947],[-38.756187561875606,-12.96602780244936],[-38.7669876698767,-12.979536420608412],[-38.788587885878854,-13.00824223419643],[-38.79938799387995,-13.02343942962537],[-38.813788137881374,-13.036948047784435],[-38.83538835388353,-13.050456665943486],[-38.85698856988569,-13.060588129562788],[-38.87858878588784,-13.06565386137244],[-38.889388893888935,-13.069031015912202],[-38.89658896588966,-13.080851056801379],[-38.89658896588966,-13.094359674960444],[-38.89658896588966,-13.10617971584962],[-38.8929889298893,-13.112934024929146],[-38.889388893888935,-13.117999756738797],[-38.88578885788857,-13.123065488548448],[-38.87498874988751,-13.126442643088211],[-38.806588065880646,-13.143328415787039],[-38.81018810188101,-13.153459879406341],[-38.8209882098821,-13.156837033946104],[-38.831788317883166,-13.158525611215978],[-38.84258842588426,-13.161902765755755],[-38.85338853388532,-13.16865707483528],[-38.87498874988751,-13.195674311153397],[-38.93258932589325,-13.23282301109083],[-38.9469894698947,-13.24633162924988],[-38.95778957789577,-13.264905979218597],[-38.964989649896495,-13.305431833695778],[-38.97218972189722,-13.325694760934368],[-38.95778957789577,-13.356089151792261],[-38.9541895418954,-13.37297492449109],[-38.964989649896495,-13.379729233570615],[-38.990189901899015,-13.364532038141675],[-38.99738997389974,-13.361154883601913],[-39.00819008190081,-13.359466306332024],[-39.040590405904055,-13.36622061541155],[-39.03699036990369,-13.357777729062136],[-39.03699036990369,-13.35102341998261],[-39.03699036990369,-13.342580533633196],[-39.040590405904055,-13.332449070013908],[-39.06219062190621,-13.399992160809205],[-39.06939069390694,-13.4405180152864],[-39.05859058590585,-13.47091240614428],[-39.06939069390694,-13.479355292493693],[-39.080190801908,-13.494552487922647],[-39.08739087390873,-13.514815415161237],[-39.08739087390873,-13.535078342399828],[-39.08379083790837,-13.578981351416772],[-39.090990909909095,-13.594178546845725],[-39.116191161911615,-13.599244278655362],[-39.116191161911615,-13.605998587734902],[-39.08739087390873,-13.604310010465014],[-39.07659076590767,-13.590801392305949],[-39.080190801908,-13.541832651479353],[-39.07659076590767,-13.516503992431112],[-39.05859058590585,-13.494552487922647],[-39.03699036990369,-13.484421024303344],[-39.01179011790117,-13.496241065192521],[-39.00819008190081,-13.504683951541935],[-39.00459004590044,-13.523258301510651],[-38.99378993789938,-13.535078342399828],[-38.99378993789938,-13.541832651479353],[-38.99738997389974,-13.546898383289005],[-39.00099000990011,-13.55365269236853],[-39.00459004590044,-13.562095578717944],[-39.00099000990011,-13.587424237766186],[-38.99378993789938,-13.607687165004776],[-38.98298982989829,-13.626261514973493],[-38.97218972189722,-13.648213019481972],[-38.96858968589686,-13.673541678530214],[-38.97578975789759,-13.692116028498916],[-38.98658986589865,-13.710690378467632],[-38.99378993789938,-13.732641882976097],[-38.99378993789938,-13.795119241961757],[-38.99378993789938,-13.812005014660585],[-38.98298982989829,-13.827202210089538],[-38.97938979389792,-13.835645096438952],[-38.990189901899015,-13.839022250978715],[-39.00099000990011,-13.837333673708827],[-39.01179011790117,-13.832267941899175],[-39.02979029790296,-13.815382169200348],[-39.03699036990369,-13.80525070558106],[-39.040590405904055,-13.793430664691883],[-39.04419044190442,-13.781610623802706],[-39.04779047790478,-13.771479160183404],[-39.05499054990548,-13.761347696564101],[-39.05859058590585,-13.754593387484576],[-39.065790657906575,-13.751216232944813],[-39.0729907299073,-13.7427733465954],[-39.080190801908,-13.74108476932551],[-39.08379083790837,-13.7427733465954],[-39.08739087390873,-13.74108476932551],[-39.090990909909095,-13.712378955737506],[-39.09819098190982,-13.709001801197743],[-39.11259112591125,-13.709001801197743],[-39.13419134191341,-13.709001801197743],[-39.141391413914135,-13.719133264817046],[-39.148591485914864,-13.737707614785748],[-39.1449914499145,-13.744461923865273],[-39.116191161911615,-13.724198996626683],[-39.10899108991089,-13.730953305706223],[-39.10899108991089,-13.74108476932551],[-39.10899108991089,-13.749527655674925],[-39.116191161911615,-13.757970542024339],[-39.0729907299073,-13.779922046532818],[-39.05859058590585,-13.791742087421994],[-39.04419044190442,-13.82551363281965],[-39.03339033390333,-13.84071082824859],[-38.99738997389974,-13.852530869137766],[-38.99378993789938,-13.862662332757068],[-39.00099000990011,-13.874482373646245],[-39.00819008190081,-13.881236682725785],[-39.03339033390333,-13.879548105455896],[-39.04779047790478,-13.876170950916134],[-39.065790657906575,-13.86772806456672],[-39.0729907299073,-13.894745300884836],[-39.06939069390694,-13.90318818723425],[-39.06219062190621,-13.935271155362031],[-39.05859058590585,-13.938648309901794],[-39.040590405904055,-13.947091196251208],[-39.02259022590226,-13.955534082600622],[-39.00819008190081,-13.969042700759672],[-38.99738997389974,-13.9859284734585],[-38.99378993789938,-13.997748514347691],[-38.99378993789938,-14.009568555236868],[-38.99738997389974,-14.019700018856156],[-38.99738997389974,-14.029831482475458],[-38.98298982989829,-14.050094409714049],[-38.97938979389792,-14.061914450603226],[-38.97938979389792,-14.068668759682751],[-38.990189901899015,-14.073734491492402],[-39.02619026190263,-14.078800223302053],[-39.040590405904055,-14.07542306876229],[-39.05499054990548,-14.058537296063463],[-39.06939069390694,-14.077111646032165],[-39.0729907299073,-14.085554532381579],[-39.05859058590585,-14.099063150540644],[-39.065790657906575,-14.105817459620184],[-39.0729907299073,-14.115948923239472],[-39.07659076590767,-14.127768964128649],[-39.0729907299073,-14.141277582287714],[-39.065790657906575,-14.149720468637128],[-39.05499054990548,-14.154786200446779],[-39.04419044190442,-14.161540509526304],[-39.040590405904055,-14.17504912768537],[-39.03339033390333,-14.17504912768537],[-39.05859058590585,-14.1328346959383],[-39.06219062190621,-14.109194614159946],[-39.04419044190442,-14.099063150540644],[-39.02259022590226,-14.09737457327077],[-39.00459004590044,-14.088931686921356],[-38.95778957789577,-14.065291605142988],[-38.95778957789577,-14.056848718793574],[-38.95778957789577,-14.046717255174286],[-38.96138961389613,-14.036585791554984],[-38.96858968589686,-14.031520059745333],[-38.97218972189722,-14.026454327935696],[-38.97218972189722,-14.014634287046505],[-38.964989649896495,-13.997748514347691],[-38.964989649896495,-13.99268278253804],[-38.96858968589686,-13.989305627998277],[-38.97218972189722,-13.9859284734585],[-38.96858968589686,-13.980862741648863],[-38.96138961389613,-13.977485587109086],[-38.9541895418954,-13.977485587109086],[-38.95058950589507,-13.974108432569324],[-38.9541895418954,-13.962288391680147],[-38.95778957789577,-13.955534082600622],[-38.964989649896495,-13.952156928060859],[-38.97938979389792,-13.948779773521082],[-38.97578975789759,-13.94540261898132],[-38.97218972189722,-13.935271155362031],[-38.98658986589865,-13.940336887171668],[-38.990189901899015,-13.93020542355238],[-38.98298982989829,-13.916696805393315],[-38.97578975789759,-13.904876764504138],[-38.964989649896495,-13.896433878154724],[-38.95058950589507,-13.889679569075199],[-38.93618936189361,-13.889679569075199],[-38.92898928989288,-13.898122455424613],[-38.92898928989288,-13.982551318918738],[-38.92538925389255,-14.004502823427217],[-38.9469894698947,-14.102440305080407],[-38.95778957789577,-14.122703232318997],[-38.964989649896495,-14.134523273208188],[-38.96858968589686,-14.146343314097365],[-38.96858968589686,-14.169983395875718],[-38.97218972189722,-14.181803436764895],[-38.990189901899015,-14.212197827622788],[-38.99378993789938,-14.227395023051727],[-38.99378993789938,-14.267920877528923],[-38.98298982989829,-14.30000384565669],[-38.98658986589865,-14.311823886545866],[-38.99378993789938,-14.325332504704932],[-39.00099000990011,-14.33546396832422],[-39.00459004590044,-14.347284009213396],[-38.99738997389974,-14.360792627372462],[-39.00819008190081,-14.370924090991764],[-39.00819008190081,-14.38274413188094],[-39.00459004590044,-14.39794132730988],[-39.00459004590044,-14.414827100008708],[-39.02619026190263,-14.463795840835303],[-39.03339033390333,-14.539781817980028],[-39.05139051390515,-14.5921277133464],[-39.05499054990548,-14.622522104204279],[-39.065790657906575,-14.65460507233206],[-39.065790657906575,-14.674867999570651],[-39.05499054990548,-14.754231131255139],[-39.05139051390515,-14.766051172144316],[-39.03699036990369,-14.77955979030338],[-39.03339033390333,-14.793068408462432],[-39.04419044190442,-14.796445563002194],[-39.05139051390515,-14.801511294811846],[-39.05499054990548,-14.811642758431148],[-39.04779047790478,-14.818397067510674],[-39.040590405904055,-14.818397067510674],[-39.02979029790296,-14.81501991297091],[-39.02259022590226,-14.81501991297091],[-39.02619026190263,-14.85723434471798],[-39.02259022590226,-14.901137353734924],[-39.00819008190081,-14.970369021800124],[-39.00099000990011,-15.232098498631942],[-38.97938979389792,-15.323281671205606],[-38.97218972189722,-15.40939911196962],[-38.94338943389434,-15.564748220798833],[-38.92538925389255,-15.715031597818395],[-38.90378903789036,-15.75724602956545],[-38.8929889298893,-15.775820379534167],[-38.889388893888935,-15.782574688613693],[-38.88218882188821,-15.812969079471586],[-38.87858878588784,-15.823100543090888],[-38.864188641886415,-15.843363470329479],[-38.86058860588605,-15.853494933948767],[-38.86778867788678,-15.870380706647595],[-38.889388893888935,-15.90415225204525],[-38.89658896588966,-15.91934944747419],[-38.90018900189003,-15.939612374712794],[-38.92538925389255,-16.005466888238217],[-38.92538925389255,-16.02404123820692],[-38.92898928989288,-16.037549856365985],[-38.94338943389434,-16.06625566995399],[-38.9469894698947,-16.08145286538293],[-38.9541895418954,-16.167570306146956],[-38.95778957789577,-16.182767501575896],[-38.99738997389974,-16.25368774691097],[-39.00459004590044,-16.27563925141945],[-39.00819008190081,-16.299279333197802],[-39.00459004590044,-16.326296569515932],[-39.00819008190081,-16.360068114913574],[-39.0189901899019,-16.38370819669194],[-39.05499054990548,-16.4360540920583],[-39.05139051390515,-16.447874132947476],[-39.05139051390515,-16.45631701929689],[-39.05859058590585,-16.47826852380537],[-39.090990909909095,-16.657257714412935],[-39.13419134191341,-16.800786782352958],[-39.13419134191341,-16.844689791369916],[-39.13419134191341,-16.856509832259093],[-39.12339123391234,-16.87846133676757],[-39.11979119791198,-16.891969954926637],[-39.12339123391234,-16.898724264006162],[-39.148591485914864,-16.95107015937252],[-39.17019170191702,-17.07602487734384],[-39.18459184591845,-17.114862154551147],[-39.20259202592027,-17.143567968139152],[-39.20979209792097,-17.16214231810787],[-39.216992169921696,-17.29553992242859],[-39.20979209792097,-17.381657363192616],[-39.191791917919176,-17.43062610401921],[-39.18459184591845,-17.45257760852769],[-39.18819188191881,-17.579220903768885],[-39.18459184591845,-17.601172408277364],[-39.166591665916656,-17.63325537640513],[-39.148591485914864,-17.6568954581835],[-39.13779137791377,-17.678846962691964],[-39.148591485914864,-17.710929930819745],[-39.26019260192601,-17.820687453362112],[-39.267392673926736,-17.835884648791065],[-39.2709927099271,-17.846016112410354],[-39.2709927099271,-17.85783615329953],[-39.274592745927464,-17.866279039648944],[-39.281792817928164,-17.871344771458595],[-39.28899288992889,-17.874721925998358],[-39.31419314193141,-17.88991912142731],[-39.382593825938244,-17.903427739586363],[-39.418594185941856,-17.92031351228519],[-39.450994509945104,-17.94733074860332],[-39.49779497794978,-18.006430953049218],[-39.62379623796238,-18.19217445273631],[-39.659796597965965,-18.273226161690673],[-39.67419674196742,-18.323883479787156],[-39.72459724597246,-18.518069865823662],[-39.74619746197462,-18.68186186100229],[-39.74259742597425,-18.901376906087037],[-39.7209972099721,-19.090497560313906],[-39.69939699396994,-19.23909236006358],[-39.702997029970305,-19.375867118924077],[-39.710197101971005,-19.41639297340126],[-39.785797857978565,-19.602136473088365],[-39.80739807398072,-19.63590801848602],[-39.836198361983605,-19.657859522994485],[-39.95139951399514,-19.705139686551206],[-40.00900009000088,-19.747354118298276],[-40.0270002700027,-19.764239890997104],[-40.08460084600844,-19.89594891804795],[-40.088200882008806,-19.914523268016666],[-40.0990009900099,-19.931409040715494],[-40.14220142201421,-19.944917658874544],[-40.15660156601567,-19.95842627703361],[-40.13500135001348,-19.95842627703361],[-40.13140131401315,-19.971934895192675],[-40.145801458014574,-20.02259221328916],[-40.1530015300153,-20.027657945098795],[-40.163801638016366,-20.029346522368684],[-40.171001710017094,-20.034412254178335],[-40.17820178201782,-20.04285514052775],[-40.17820178201782,-20.05805233595669],[-40.17460174601746,-20.066495222306102],[-40.16740167401673,-20.086758149544693],[-40.163801638016366,-20.096889613163995],[-40.16740167401673,-20.10533249951341],[-40.17460174601746,-20.125595426752],[-40.19260192601925,-20.189761363007534],[-40.196201962019614,-20.198204249356948],[-40.20340203402034,-20.20833571297625],[-40.221402214022135,-20.252238721993194],[-40.23220232202323,-20.267435917422148],[-40.24300243002429,-20.275878803771562],[-40.24300243002429,-20.277567381041436],[-40.246602466024655,-20.274190226501673],[-40.25740257402575,-20.264058762882385],[-40.26460264602645,-20.26068160834261],[-40.271802718027175,-20.267435917422148],[-40.2790027900279,-20.277567381041436],[-40.2862028620286,-20.280944535581213],[-40.297002970029695,-20.274190226501673],[-40.29340293402933,-20.24548441291367],[-40.30060300603006,-20.231975794754604],[-40.31500315003149,-20.22859864021484],[-40.33660336603364,-20.226910062944967],[-40.36900369003689,-20.231975794754604],[-40.35460354603546,-20.24379583564378],[-40.3510035100351,-20.257304453802846],[-40.35820358203583,-20.26574734015226],[-40.37620376203762,-20.267435917422148],[-40.37620376203762,-20.274190226501673],[-40.372603726037255,-20.275878803771562],[-40.36900369003689,-20.277567381041436],[-40.36180361803616,-20.280944535581213],[-40.36900369003689,-20.301207462819804],[-40.36540365403653,-20.32315896732827],[-40.347403474034735,-20.326536121868045],[-40.322203222032215,-20.324847544598157],[-40.32580325803258,-20.338356162757222],[-40.31500315003149,-20.33497900821746],[-40.30060300603006,-20.319781812788506],[-40.28260282602827,-20.314716080978855],[-40.26100261002608,-20.321470390058394],[-40.27540275402754,-20.33329043094757],[-40.28980289802897,-20.3501762036464],[-40.30420304203042,-20.37043913088499],[-40.31140311403112,-20.41771929444171],[-40.33660336603364,-20.45486799437913],[-40.347403474034735,-20.50045958066596],[-40.397803978039775,-20.569691248731147],[-40.41940419404193,-20.61528283501798],[-40.43380433804339,-20.628791453177044],[-40.45180451804518,-20.616971412287867],[-40.4770047700477,-20.637234339526458],[-40.48420484204843,-20.647365803145746],[-40.523805238052375,-20.714908893941057],[-40.53460534605347,-20.726728934830234],[-40.556205562055624,-20.743614707529062],[-40.56340563405632,-20.753746171148364],[-40.58500585005851,-20.80271491197496],[-40.61020610206103,-20.80778064378461],[-40.62100621006209,-20.833109302832852],[-40.62820628206282,-20.839863611912378],[-40.63540635406355,-20.82973214829309],[-40.63540635406355,-20.819600684673787],[-40.64260642606425,-20.80778064378461],[-40.65340653406534,-20.80778064378461],[-40.664206642066404,-20.812846375594262],[-40.66780667806677,-20.816223530134025],[-40.700207002070016,-20.836486457372615],[-40.732607326073264,-20.84324076645214],[-40.74700747007469,-20.853372230071443],[-40.757807578075784,-20.86350369369073],[-40.76140761407615,-20.882078043659448],[-40.77220772207721,-20.888832352738973],[-40.77940779407794,-20.902340970898038],[-40.790207902079004,-20.915849589057103],[-40.801008010080096,-20.931046784486043],[-40.808208082080824,-20.96312975261381],[-40.808208082080824,-20.998589875281354],[-40.81180811808119,-21.018852802519945],[-40.815408154081524,-21.03742715248866],[-40.82980829808298,-21.049247193377838],[-40.840608406084044,-21.06782154334654],[-40.840608406084044,-21.079641584235716],[-40.84780847808477,-21.09483877966467],[-40.92340923409233,-21.191087684047986],[-40.95220952209522,-21.2383678476047],[-40.966609666096645,-21.27382797027223],[-40.966609666096645,-21.275516547542118],[-40.959409594095945,-21.287336588431295],[-40.959409594095945,-21.304222361130122],[-40.96300963009631,-21.31941955655907],[-40.966609666096645,-21.33630532925789],[-40.96300963009631,-21.3650111428459],[-40.984609846098465,-21.392028379164024],[-41.017010170101685,-21.44099711999062],[-41.04941049410493,-21.469702933578624],[-41.05661056610566,-21.48321155173769],[-41.07101071010709,-21.52373740621487],[-41.060210602106025,-21.56088610615229],[-41.017010170101685,-21.60816626970901],[-41.01341013410135,-21.65206927872596],[-41.02421024210241,-21.719612369521265],[-41.00621006210062,-21.822615582984113],[-40.966609666096645,-21.947570300955427],[-40.97380973809737,-21.986407578162734],[-40.99540995409953,-22.013424814480857],[-41.143011430114285,-22.096165100705107],[-41.243812438124365,-22.145133841531703],[-41.344613446134446,-22.172151077849826],[-41.46701467014671,-22.20254546870772],[-41.553415534155334,-22.232939859565604],[-41.66501665016651,-22.281908600392207],[-41.74061740617407,-22.32918876394892],[-41.76941769417692,-22.354517422997162],[-41.77661776617765,-22.362960309346576],[-41.780217802178015,-22.379846082045404],[-41.78381783817838,-22.38828896839481],[-41.80181801818017,-22.401797586553876],[-41.83421834218342,-22.420371936522585],[-41.84861848618485,-22.43388055468165],[-41.870218702187,-22.46934067734918],[-41.87381873818737,-22.47440640915883],[-41.881018810188095,-22.476094986428713],[-41.89181891818919,-22.479472140968483],[-41.90261902619025,-22.486226450048008],[-41.90261902619025,-22.49129218185766],[-41.913419134191344,-22.508177954556487],[-41.931419314193136,-22.519997995445664],[-41.96741967419675,-22.53519519087461],[-41.98541985419854,-22.565589581732496],[-41.9962199621996,-22.609492590749447],[-41.99981999819997,-22.658461331576042],[-41.99261992619927,-22.70067576332311],[-41.981819818198176,-22.71587295875206],[-41.94581945819456,-22.753021658689477],[-41.938619386193864,-22.764841699578653],[-41.9350193501935,-22.768218854118423],[-41.92421924219241,-22.76146454503889],[-41.90981909819098,-22.747955926879825],[-41.90261902619025,-22.74289019507018],[-41.881018810188095,-22.73951304053042],[-41.870218702187,-22.734447308720767],[-41.870218702187,-22.751333081419595],[-41.87741877418773,-22.763153122308772],[-41.88461884618846,-22.769907431388305],[-41.89181891818919,-22.78172747227748],[-41.90981909819098,-22.776661740467837],[-41.92061920619204,-22.783416049547363],[-41.94581945819456,-22.810433285865486],[-41.97461974619745,-22.82225332675467],[-41.981819818198176,-22.82394190402455],[-41.989019890198904,-22.825630481294432],[-41.99261992619927,-22.834073367643846],[-41.99261992619927,-22.84251625399326],[-41.9962199621996,-22.859402026692088],[-41.9962199621996,-22.867844913041502],[-41.9962199621996,-22.874599222121034],[-42.00342003420033,-22.877976376660797],[-42.014220142201424,-22.87966495393068],[-42.021420214202124,-22.88135353120056],[-42.02502025020249,-22.88641926301021],[-42.02862028620285,-22.891484994819855],[-42.032220322203216,-22.911747922058453],[-42.02862028620285,-22.933699426566925],[-42.021420214202124,-22.94383089018622],[-42.014220142201424,-22.933699426566925],[-42.007020070200696,-22.933699426566925],[-42.00342003420033,-22.94720804472599],[-42.00342003420033,-22.959028085615167],[-42.014220142201424,-22.98097959012364],[-42.02862028620285,-22.975913858313994],[-42.046620466204644,-22.957339508345285],[-42.057420574205736,-22.953962353805515],[-42.172621726217244,-22.950585199265753],[-42.37782377823777,-22.937076581106687],[-42.53262532625325,-22.933699426566925],[-42.62262622626227,-22.938765158376576],[-42.65502655026549,-22.9455194674561],[-42.669426694266946,-22.94720804472599],[-42.67302673026731,-22.950585199265753],[-42.68742687426874,-22.96409381742481],[-42.694626946269466,-22.96747097196458],[-42.770227702277026,-22.969159549234462],[-42.86382863828638,-22.977602435583876],[-42.93222932229321,-22.972536703774225],[-43.03303033030329,-22.974225281044113],[-43.05823058230581,-22.953962353805515],[-43.07263072630727,-22.9455194674561],[-43.09063090630906,-22.953962353805515],[-43.10143101431015,-22.94214231291634],[-43.12303123031231,-22.930322272027162],[-43.13023130231301,-22.920190808407867],[-43.11583115831158,-22.921879385677748],[-43.112231122311215,-22.92356796294763],[-43.10503105031049,-22.926945117487392],[-43.09063090630906,-22.916813653868097],[-43.09063090630906,-22.908370767518683],[-43.09783097830979,-22.901616458439157],[-43.112231122311215,-22.89992788116927],[-43.13023130231301,-22.894862149359625],[-43.12663126631267,-22.88304210847044],[-43.10863108631085,-22.86109060396197],[-43.10143101431015,-22.835761944913727],[-43.07983079830797,-22.813810440405256],[-43.03303033030329,-22.77497316319795],[-43.05463054630545,-22.77835031773772],[-43.061830618306175,-22.773284585928067],[-43.061830618306175,-22.766530276848542],[-43.05463054630545,-22.754710235959358],[-43.036630366303655,-22.746267349609944],[-43.02943029430293,-22.7412016178003],[-43.02583025830259,-22.73613588599065],[-43.02223022230223,-22.714184381482177],[-43.02223022230223,-22.70405291786288],[-43.02583025830259,-22.67872425881464],[-43.02943029430293,-22.671969949735107],[-43.04023040230402,-22.668592795195345],[-43.06543065430654,-22.671969949735107],[-43.07623076230763,-22.665215640655575],[-43.08343083430833,-22.671969949735107],[-43.09423094230942,-22.687167145164054],[-43.10503105031049,-22.69392145424358],[-43.11583115831158,-22.69729860878335],[-43.12303123031231,-22.69729860878335],[-43.13023130231301,-22.695610031513468],[-43.1410314103141,-22.69392145424358],[-43.15183151831519,-22.695610031513468],[-43.17703177031771,-22.707430072402644],[-43.21663216632166,-22.734447308720767],[-43.23463234632345,-22.734447308720767],[-43.25623256232561,-22.73782446326053],[-43.27063270632706,-22.746267349609944],[-43.27423274232743,-22.768218854118423],[-43.27063270632706,-22.788481781357014],[-43.24183241832418,-22.84420483126314],[-43.23463234632345,-22.84420483126314],[-43.23103231032309,-22.839139099453497],[-43.22743227432275,-22.835761944913727],[-43.22383223832239,-22.832384790373965],[-43.22023220232202,-22.829007635834195],[-43.22023220232202,-22.839139099453497],[-43.21663216632166,-22.84758198580291],[-43.20943209432093,-22.852647717612555],[-43.19863198631987,-22.857713449422207],[-43.20583205832057,-22.857713449422207],[-43.20583205832057,-22.859402026692088],[-43.20943209432093,-22.86109060396197],[-43.213032130321295,-22.864467758501732],[-43.17343173431735,-22.88641926301021],[-43.162631626316255,-22.894862149359625],[-43.15903159031589,-22.908370767518683],[-43.162631626316255,-22.926945117487392],[-43.162631626316255,-22.940453735646457],[-43.15183151831519,-22.933699426566925],[-43.15183151831519,-22.950585199265753],[-43.16983169831698,-22.969159549234462],[-43.1950319503195,-22.98604532193329],[-43.22023220232202,-22.994488208282704],[-43.447034470344704,-23.018128290061064],[-43.497434974349744,-23.031636908220122],[-43.540635406354056,-23.05021125818883],[-43.547835478354784,-23.055276989998482],[-43.55503555035551,-23.062031299078008],[-43.55863558635585,-23.06709703088766],[-43.565835658356576,-23.06709703088766],[-43.57663576635767,-23.051899835458713],[-43.58023580235803,-23.05021125818883],[-43.61983619836198,-23.041768371839417],[-43.87183871838718,-23.070474185427422],[-43.91503915039149,-23.070474185427422],[-43.933039330393285,-23.07216276269731],[-43.951039510395105,-23.080605649046717],[-43.9690396903969,-23.0924256899359],[-43.98703987039869,-23.097491421745545],[-44.00504005040051,-23.09073711266602],[-44.008640086400845,-23.070474185427422],[-44.001440014400146,-23.04852268091895],[-43.98703987039869,-23.041768371839417],[-43.951039510395105,-23.041768371839417],[-43.94023940239401,-23.045145526379187],[-43.91503915039149,-23.056965567268364],[-43.90423904239043,-23.055276989998482],[-43.900639006390065,-23.05021125818883],[-43.89343893438934,-23.021505444600827],[-43.86823868238682,-23.040079794569536],[-43.832238322383205,-23.04683410364907],[-43.749437494374945,-23.05021125818883],[-43.67023670236702,-23.036702640029773],[-43.62703627036271,-23.023194021870708],[-43.60543605436055,-23.00799682644176],[-43.623436234362345,-23.00630824917188],[-43.6450364503645,-22.997865362822466],[-43.66303663036629,-22.98773389920317],[-43.67023670236702,-22.977602435583876],[-43.67743677436775,-22.979291012853757],[-43.68823688236881,-22.979291012853757],[-43.699036990369905,-22.975913858313994],[-43.70623706237063,-22.974225281044113],[-43.7170371703717,-22.9657823946947],[-43.72783727837279,-22.9455194674561],[-43.73503735037349,-22.938765158376576],[-43.749437494374945,-22.933699426566925],[-43.79263792637926,-22.92863369475728],[-43.80343803438035,-22.930322272027162],[-43.81063810638105,-22.910059344788564],[-43.825038250382505,-22.908370767518683],[-43.8430384303843,-22.910059344788564],[-43.86463864638645,-22.9066821902488],[-43.850238502385025,-22.89992788116927],[-43.850238502385025,-22.891484994819855],[-43.86463864638645,-22.896550726629506],[-43.89343893438934,-22.910059344788564],[-43.900639006390065,-22.911747922058453],[-43.95463954639547,-22.920190808407867],[-43.96543965439653,-22.92356796294763],[-43.99423994239942,-22.937076581106687],[-44.00504005040051,-22.938765158376576],[-44.01224012240121,-22.9455194674561],[-44.01944019440194,-22.959028085615167],[-44.03024030240303,-22.970848126504343],[-44.04824048240482,-22.974225281044113],[-44.04464044640446,-22.959028085615167],[-44.03744037440373,-22.94383089018622],[-44.041040410404094,-22.935388003836806],[-44.05544055440555,-22.938765158376576],[-44.06264062640625,-22.94889662199587],[-44.08064080640807,-22.98773389920317],[-44.08784087840877,-22.994488208282704],[-44.116641166411654,-23.023194021870708],[-44.127441274412746,-23.02825975368036],[-44.152641526415266,-23.02825975368036],[-44.15624156241563,-23.031636908220122],[-44.17424174241742,-23.041768371839417],[-44.18144181441815,-23.045145526379187],[-44.185041850418486,-23.04852268091895],[-44.192241922419214,-23.04852268091895],[-44.192241922419214,-23.038391217299655],[-44.19584195841958,-23.033325485490003],[-44.20664206642067,-23.038391217299655],[-44.2210422104221,-23.05021125818883],[-44.23904239042389,-23.04683410364907],[-44.242642426424254,-23.041768371839417],[-44.23904239042389,-23.00968540371165],[-44.242642426424254,-22.999553940092348],[-44.24984249842498,-22.996176785552585],[-44.27144271442714,-22.994488208282704],[-44.28944289442893,-23.01137398098153],[-44.30024300243002,-23.013062558251413],[-44.30384303843039,-22.994488208282704],[-44.318243182431814,-23.002931094632117],[-44.32544325443254,-23.00799682644176],[-44.32904329043291,-23.014751135521294],[-44.35424354243543,-22.999553940092348],[-44.35424354243543,-22.98604532193329],[-44.33984339843397,-22.977602435583876],[-44.318243182431814,-22.974225281044113],[-44.311043110431086,-22.970848126504343],[-44.311043110431086,-22.960716662885048],[-44.318243182431814,-22.94720804472599],[-44.32184321843218,-22.94383089018622],[-44.32904329043291,-22.940453735646457],[-44.32904329043291,-22.935388003836806],[-44.318243182431814,-22.926945117487392],[-44.32544325443254,-22.921879385677748],[-44.336243362433606,-22.920190808407867],[-44.3470434704347,-22.91850223113798],[-44.35784357843579,-22.920190808407867],[-44.35064350643506,-22.935388003836806],[-44.35424354243543,-22.94383089018622],[-44.36504365043649,-22.952273776535634],[-44.37224372243722,-22.960716662885048],[-44.37584375843758,-22.955650931075404],[-44.38304383043831,-22.9455194674561],[-44.38304383043831,-22.938765158376576],[-44.39024390243901,-22.94214231291634],[-44.393843938439375,-22.94383089018622],[-44.39744397443974,-22.94720804472599],[-44.41184411844117,-22.937076581106687],[-44.42264422644226,-22.94720804472599],[-44.44064440644405,-22.98097959012364],[-44.43704437044369,-22.996176785552585],[-44.45864458644587,-23.00968540371165],[-44.48744487444873,-23.018128290061064],[-44.53424534245343,-23.02488259914059],[-44.60264602646026,-23.055276989998482],[-44.60264602646026,-23.05021125818883],[-44.5990459904599,-23.041768371839417],[-44.5990459904599,-23.035014062759885],[-44.63144631446315,-23.035014062759885],[-44.65664656646567,-23.0434569491093],[-44.67464674646746,-23.058654144538245],[-44.69984699846998,-23.10762288536484],[-44.69984699846998,-23.114377194444373],[-44.696246962469615,-23.121131503523905],[-44.69264692646925,-23.127885812603438],[-44.703447034470344,-23.144771585302266],[-44.71064710647107,-23.17516597616015],[-44.71424714247141,-23.18698601704933],[-44.70704707047071,-23.21400325336745],[-44.68904689046889,-23.21062609882769],[-44.66744667446673,-23.195428903398742],[-44.645846458464575,-23.18698601704933],[-44.62784627846278,-23.195428903398742],[-44.67464674646746,-23.229200448796398],[-44.67824678246782,-23.24946337603499],[-44.671046710467095,-23.239331912415693],[-44.65664656646567,-23.23088902606628],[-44.63864638646385,-23.227511871526517],[-44.62424624246242,-23.23426618060605],[-44.63864638646385,-23.25115195330487],[-44.64944649446494,-23.262971994194054],[-44.6530465304653,-23.271414880543468],[-44.6530465304653,-23.284923498702526],[-44.645846458464575,-23.283234921432644],[-44.62784627846278,-23.257906262384402],[-44.61344613446133,-23.244397644225344],[-44.5990459904599,-23.23426618060605],[-44.58464584645847,-23.229200448796398],[-44.55584555845559,-23.227511871526517],[-44.56304563045629,-23.239331912415693],[-44.570245702457015,-23.244397644225344],[-44.57744577445774,-23.24946337603499],[-44.55944559445595,-23.262971994194054],[-44.53424534245343,-23.266349148733816],[-44.50904509045091,-23.27310345781335],[-44.50184501845018,-23.29674353959171],[-44.52344523445234,-23.289989230512177],[-44.54144541445413,-23.303497848671235],[-44.56304563045629,-23.33726939406889],[-44.58464584645847,-23.352466589497837],[-44.60264602646026,-23.350778012227956],[-44.61704617046169,-23.34233512587854],[-44.63144631446315,-23.344023703148423],[-44.645846458464575,-23.338957971338772],[-44.67464674646746,-23.33726939406889],[-44.703447034470344,-23.34233512587854],[-44.728647286472864,-23.350778012227956],[-44.728647286472864,-23.352466589497837],[-44.73224732247323,-23.365975207656895],[-44.746647466474656,-23.371040939466546],[-44.76464764647645,-23.372729516736428],[-44.78264782647827,-23.37948382581596],[-44.80064800648006,-23.371040939466546],[-44.81504815048149,-23.37779524854608],[-44.82584825848258,-23.386238134895486],[-44.84384843848437,-23.384549557625604],[-44.8510485104851,-23.37948382581596],[-44.854648546485464,-23.369352362196665],[-44.85824858248583,-23.36090947584725],[-44.86904869048689,-23.35753232130748],[-44.87624876248762,-23.35753232130748],[-44.88344883448835,-23.359220898577362],[-44.897848978489776,-23.364286630387014],[-44.89064890648905,-23.340646548608653],[-44.91944919449193,-23.349089434958067],[-44.95184951849518,-23.367663784926776],[-44.96264962649627,-23.37948382581596],[-44.96984969849697,-23.38117240308584],[-44.9770497704977,-23.3946810212449],[-44.980649806498064,-23.39974675305455],[-44.98784987849879,-23.401435330324432],[-45.00225002250022,-23.403123907594313],[-45.00945009450095,-23.404812484864202],[-45.02745027450274,-23.41663252575338],[-45.03465034650347,-23.414943948483497],[-45.04185041850417,-23.404812484864202],[-45.0490504905049,-23.428452566642555],[-45.03825038250383,-23.43858403026185],[-45.02025020250201,-23.447026916611264],[-45.00945009450095,-23.46053553477033],[-45.03465034650347,-23.46222411204021],[-45.0490504905049,-23.474044152929388],[-45.07065070650705,-23.514570007406576],[-45.081450814508145,-23.497684234707748],[-45.09225092250921,-23.492618502898097],[-45.09585095850957,-23.497684234707748],[-45.08865088650887,-23.514570007406576],[-45.1030510305103,-23.512881430136694],[-45.11385113851139,-23.507815698327043],[-45.12465124651246,-23.50106138924751],[-45.13545135451355,-23.492618502898097],[-45.14625146251461,-23.487552771088453],[-45.15345153451534,-23.49937281197763],[-45.14985149851498,-23.516258584676457],[-45.14625146251461,-23.529767202835515],[-45.16425164251643,-23.533144357375285],[-45.182251822518225,-23.526390048295752],[-45.20025200252002,-23.52301289375599],[-45.21465214652147,-23.54327582099458],[-45.20385203852038,-23.56185017096329],[-45.20025200252002,-23.571981634582585],[-45.21105211052111,-23.577047366392236],[-45.22185221852217,-23.578735943662117],[-45.25065250652506,-23.590555984551294],[-45.26505265052651,-23.58717883001153],[-45.27945279452794,-23.573670211852466],[-45.29025290252903,-23.570293057312703],[-45.3010530105301,-23.573670211852466],[-45.31185311853119,-23.58380167547176],[-45.32265322653225,-23.593933139091064],[-45.32625326253262,-23.597310293630827],[-45.34785347853477,-23.60406460271036],[-45.36945369453693,-23.615884643599536],[-45.38745387453875,-23.62432752994895],[-45.41265412654127,-23.617573220869417],[-45.416254162541634,-23.6293932617586],[-45.4270542705427,-23.641213302647778],[-45.434254342543426,-23.653033343536954],[-45.434254342543426,-23.66485338442613],[-45.4270542705427,-23.68680488893461],[-45.4270542705427,-23.696936352553905],[-45.42345423454233,-23.71044497071297],[-45.416254162541634,-23.715510702522614],[-45.40545405454054,-23.715510702522614],[-45.39825398253981,-23.720576434332266],[-45.39825398253981,-23.734085052491324],[-45.40545405454054,-23.756036556999803],[-45.40185401854018,-23.764479443349217],[-45.39465394653945,-23.783053793317926],[-45.39465394653945,-23.803316720556516],[-45.40545405454054,-23.820202493255344],[-45.4270542705427,-23.83033395687464],[-45.43785437854379,-23.83202253414452],[-45.448654486544854,-23.828645379604758],[-45.45585455854558,-23.82526822506499],[-45.46305463054631,-23.823579647795107],[-45.47745477454774,-23.82695680233487],[-45.499054990549894,-23.837088265954172],[-45.509855098550986,-23.837088265954172],[-45.52785527855278,-23.83033395687464],[-45.5530555305553,-23.801628143286635],[-45.574655746557454,-23.796562411476984],[-45.6070560705607,-23.803316720556516],[-45.617856178561794,-23.803316720556516],[-45.62145621456213,-23.799939566016747],[-45.62865628656286,-23.79318525693722],[-45.63225632256322,-23.78980810239745],[-45.650256502565014,-23.78980810239745],[-45.65385653856538,-23.78980810239745],[-45.718657186571875,-23.771233752428742],[-45.78345783457834,-23.76954517515886],[-45.794257942579435,-23.766168020619098],[-45.81585815858159,-23.757725134269684],[-45.82305823058229,-23.754347979729914],[-45.86265862658627,-23.756036556999803],[-45.95625956259562,-23.776299484238393],[-45.98865988659887,-23.78980810239745],[-46.00666006660066,-23.801628143286635],[-46.01746017460175,-23.81007102963605],[-46.028260282602815,-23.828645379604758],[-46.03906039060391,-23.828645379604758],[-46.06066060660606,-23.823579647795107],[-46.078660786607855,-23.828645379604758],[-46.10026100261001,-23.837088265954172],[-46.136261362613624,-23.85228546138311],[-46.136261362613624,-23.84890830684335],[-46.13986139861399,-23.843842575033698],[-46.14706147061469,-23.843842575033698],[-46.15786157861578,-23.87085981135182],[-46.179461794617936,-23.89112273859042],[-46.204662046620456,-23.904631356749476],[-46.237062370623704,-23.91307424309889],[-46.237062370623704,-23.919828552178423],[-46.211862118621184,-23.919828552178423],[-46.19746197461973,-23.916451397638653],[-46.1830618306183,-23.906319934019358],[-46.14706147061469,-23.87085981135182],[-46.13266132661326,-23.864105502272295],[-46.111061110611104,-23.864105502272295],[-46.15066150661505,-23.906319934019358],[-46.161461614616144,-23.919828552178423],[-46.16506165061651,-23.93502574760737],[-46.16866168661687,-23.95528867484596],[-46.16866168661687,-23.972174447544788],[-46.16506165061651,-23.982305911164083],[-46.17586175861757,-23.990748797513497],[-46.186661866618664,-23.99581452932314],[-46.19746197461973,-23.99412595205326],[-46.20106201062009,-23.985683065703846],[-46.20826208262082,-23.9806173338942],[-46.22266222662225,-23.982305911164083],[-46.23346233462334,-23.985683065703846],[-46.25146251462513,-23.99581452932314],[-46.26946269462695,-24.011011724752088],[-46.287462874628744,-24.021143188371383],[-46.31626316263163,-24.01607745656174],[-46.3090630906309,-24.000880261132792],[-46.28386283862838,-23.99243737478338],[-46.27666276662765,-23.982305911164083],[-46.27666276662765,-23.967108715735137],[-46.28386283862838,-23.95528867484596],[-46.29466294662947,-23.946845788496546],[-46.29826298262981,-23.93671432487725],[-46.29826298262981,-23.924894283988067],[-46.305463054630536,-23.91476282036877],[-46.31986319863199,-23.909697088559128],[-46.34506345063451,-23.904631356749476],[-46.35946359463594,-23.901254202209714],[-46.363063630636304,-23.89449989313018],[-46.35946359463594,-23.886057006780767],[-46.35946359463594,-23.879302697701235],[-46.38466384663846,-23.87423696589159],[-46.388263882638824,-23.886057006780767],[-46.388263882638824,-23.904631356749476],[-46.39546395463955,-23.91307424309889],[-46.40986409864098,-23.916451397638653],[-46.40986409864098,-23.923205706718186],[-46.406264062640616,-23.929960015797718],[-46.40986409864098,-23.93333717033748],[-46.43146431464314,-23.9316485930676],[-46.45306453064529,-23.926582861257955],[-46.44946449464493,-23.938402902147132],[-46.438664386643865,-23.945157211226665],[-46.43146431464314,-23.948534365766427],[-46.42786427864277,-23.95022294303631],[-46.42426424264241,-23.95697725211584],[-46.41706417064171,-23.97555160208455],[-46.413464134641345,-23.982305911164083],[-46.40266402664025,-23.983994488433964],[-46.388263882638824,-23.983994488433964],[-46.37746377463773,-23.985683065703846],[-46.37026370263703,-23.99243737478338],[-46.37026370263703,-24.01607745656174],[-46.37746377463773,-24.024520342911146],[-46.38466384663846,-24.029586074720797],[-46.388263882638824,-24.021143188371383],[-46.39186391863919,-24.01607745656174],[-46.39906399063989,-24.01270030202197],[-46.406264062640616,-24.009323147482206],[-46.46746467464675,-24.039717538340092],[-46.59346593465935,-24.090374856436576],[-46.74466744667447,-24.17649229720059],[-46.856268562685614,-24.228838192566954],[-46.93546935469354,-24.272741201583905],[-46.967869678696786,-24.299758437902028],[-46.98946989469894,-24.331841406029802],[-47.000270002700034,-24.36730152869734],[-47.007470074700734,-24.372367260506984],[-47.0110701107011,-24.377432992316635],[-47.000270002700034,-24.401073074094988],[-47.000270002700034,-24.409515960444402],[-47.01467014670146,-24.423024578603467],[-47.03627036270362,-24.43146746495288],[-47.050670506705075,-24.42809031041311],[-47.050670506705075,-24.40613880590464],[-47.07227072270723,-24.44835323765171],[-47.083070830708294,-24.453418969461353],[-47.09747097470975,-24.460173278540886],[-47.12267122671227,-24.483813360319246],[-47.1370713707137,-24.48887909212889],[-47.18027180271801,-24.53278210114584],[-47.4430744307443,-24.679688323625633],[-47.453874538745396,-24.67631116908587],[-47.468274682746824,-24.681376900895522],[-47.49707497074971,-24.6931969417847],[-47.518675186751864,-24.688131209975047],[-47.53307533075329,-24.688131209975047],[-47.54027540275402,-24.703328405403994],[-47.55827558275581,-24.71345986902329],[-47.58347583475833,-24.732034218992],[-47.63387633876337,-24.75567430077036],[-47.82467824678247,-24.894137636900737],[-47.84267842678426,-24.909334832329684],[-47.86787867878678,-24.94141780045745],[-47.87507875078751,-24.94479495499722],[-47.87867878678787,-24.948172109536983],[-47.88587885878857,-24.953237841346635],[-47.8930789307893,-24.96168072769605],[-47.93267932679328,-25.034289550301004],[-47.96147961479613,-25.049486745729943],[-48.00828008280084,-25.0444210139203],[-48.00108001080011,-25.02753524122147],[-47.98667986679865,-25.02584666395159],[-47.972279722797225,-25.02753524122147],[-47.96147961479613,-25.02246950941182],[-47.96147961479613,-25.012338045792525],[-47.972279722797225,-25.008960891252762],[-48.01548015480154,-25.010649468522644],[-48.022680226802265,-25.015715200332295],[-48.022680226802265,-25.02246950941182],[-48.022680226802265,-25.034289550301004],[-48.02628026280263,-25.0444210139203],[-48.03348033480336,-25.049486745729943],[-48.04428044280442,-25.04610959119018],[-48.05148051480515,-25.035978127570885],[-48.05148051480515,-25.052863900269713],[-48.03348033480336,-25.06299536388901],[-48.00468004680047,-25.06974967296854],[-47.98667986679865,-25.071438250238423],[-47.96147961479613,-25.078192559317955],[-47.95067950679507,-25.079881136587836],[-47.93987939879398,-25.074815404778185],[-47.92907929079291,-25.06637251842877],[-47.91467914679146,-25.059618209349246],[-47.90027900279003,-25.056241054809476],[-47.88587885878857,-25.057929632079357],[-47.921879218792185,-25.159244268272325],[-47.95067950679507,-25.201458700019387],[-48.00468004680047,-25.214967318178452],[-48.0190801908019,-25.22678735906763],[-48.06948069480694,-25.280821831703875],[-48.07668076680767,-25.29264187259306],[-48.0838808388084,-25.307839068022],[-48.0838808388084,-25.30952764529188],[-48.0910809108091,-25.324724840720826],[-48.16668166681666,-25.368627849737777],[-48.173881738817386,-25.380447890626954],[-48.19548195481954,-25.417596590564372],[-48.20988209882097,-25.45812244504156],[-48.224282242822426,-25.45981102231144],[-48.24228242282422,-25.447990981422265],[-48.249482494824946,-25.427728054183675],[-48.24588245882458,-25.410842281484847],[-48.224282242822426,-25.35174207703895],[-48.22068220682206,-25.343299190689535],[-48.22068220682206,-25.339922036149773],[-48.22068220682206,-25.33485630434012],[-48.20988209882097,-25.324724840720826],[-48.20268202682027,-25.317970531641294],[-48.181081810818114,-25.306150490752117],[-48.13788137881377,-25.28926471805329],[-48.12708127081271,-25.279133254433994],[-48.14148141481414,-25.2690017908147],[-48.15228152281523,-25.282510408973756],[-48.173881738817386,-25.29095329532317],[-48.199081990819906,-25.29601902713282],[-48.22068220682206,-25.29601902713282],[-48.22788227882279,-25.301084758942466],[-48.24228242282422,-25.31459337710153],[-48.249482494824946,-25.317970531641294],[-48.26028260282601,-25.31290479983165],[-48.274682746827466,-25.29601902713282],[-48.28548285482853,-25.28926471805329],[-48.281882818828194,-25.306150490752117],[-48.281882818828194,-25.316281954371412],[-48.28548285482853,-25.323036263450945],[-48.29628296282962,-25.341610613419654],[-48.307083070830714,-25.35174207703895],[-48.31788317883178,-25.358496386118482],[-48.332283322833234,-25.358496386118482],[-48.31788317883178,-25.324724840720826],[-48.325083250832506,-25.324724840720826],[-48.332283322833234,-25.329790572530477],[-48.33588335883357,-25.317970531641294],[-48.332283322833234,-25.27069036808458],[-48.325083250832506,-25.243673131766457],[-48.325083250832506,-25.22847593633751],[-48.339483394833934,-25.236918822686924],[-48.350283502835026,-25.25042744084599],[-48.36108361083609,-25.263936059005047],[-48.364683646836454,-25.2690017908147],[-48.37188371883718,-25.27237894535446],[-48.37188371883718,-25.27575609989423],[-48.364683646836454,-25.284198986243645],[-48.36108361083609,-25.285887563513526],[-48.35388353883539,-25.28926471805329],[-48.35388353883539,-25.29264187259306],[-48.35388353883539,-25.297707604402703],[-48.357483574835754,-25.29601902713282],[-48.36108361083609,-25.299396181672584],[-48.36828368283682,-25.304461913482236],[-48.382683826838274,-25.297707604402703],[-48.407884078840794,-25.284198986243645],[-48.415084150841494,-25.274067522624343],[-48.42228422284222,-25.25211601811587],[-48.433084330843315,-25.241984554496575],[-48.433084330843315,-25.262247481735166],[-48.440284402844014,-25.262247481735166],[-48.44388443884438,-25.257181749925522],[-48.44748447484474,-25.253804595385752],[-48.45108451084511,-25.25211601811587],[-48.45468454684547,-25.248738863576108],[-48.45108451084511,-25.263936059005047],[-48.42948429484295,-25.324724840720826],[-48.44748447484474,-25.324724840720826],[-48.47988479884799,-25.33147914980036],[-48.49788497884978,-25.33147914980036],[-48.49788497884978,-25.33823345887989],[-48.46188461884617,-25.343299190689535],[-48.44388443884438,-25.346676345229305],[-48.433084330843315,-25.358496386118482],[-48.45108451084511,-25.368627849737777],[-48.458284582845835,-25.380447890626954],[-48.45108451084511,-25.385513622436605],[-48.433084330843315,-25.378759313357072],[-48.42948429484295,-25.388890776976368],[-48.415084150841494,-25.404087972405314],[-48.415084150841494,-25.410842281484847],[-48.41868418684186,-25.427728054183675],[-48.425884258842586,-25.43279378599332],[-48.43668436684365,-25.431105208723437],[-48.44748447484474,-25.4344823632632],[-48.45468454684547,-25.446302404152384],[-48.45468454684547,-25.45981102231144],[-48.46188461884617,-25.47163106320062],[-48.47268472684726,-25.47500821774039],[-48.48708487084869,-25.473319640470507],[-48.49788497884978,-25.468253908660856],[-48.515885158851574,-25.446302404152384],[-48.52668526685267,-25.45305671323191],[-48.53748537485373,-25.454745290501798],[-48.54828548285482,-25.45305671323191],[-48.559085590855915,-25.446302404152384],[-48.56268562685625,-25.45981102231144],[-48.57348573485734,-25.461499599581323],[-48.62388623886238,-25.449679558692146],[-48.634686346863475,-25.444613826882495],[-48.685086850868515,-25.412530858754728],[-48.692286922869215,-25.405776549675195],[-48.73188731887319,-25.360184963388363],[-48.742687426874255,-25.35174207703895],[-48.73908739087389,-25.366939272467896],[-48.72468724687246,-25.407465126945077],[-48.717487174871735,-25.422662322374023],[-48.717487174871735,-25.427728054183675],[-48.710287102871035,-25.43279378599332],[-48.69948699486994,-25.43785951780297],[-48.69588695886958,-25.441236672342733],[-48.685086850868515,-25.463188176851205],[-48.68868688686885,-25.473319640470507],[-48.70668706687067,-25.47500821774039],[-48.72828728287283,-25.468253908660856],[-48.710287102871035,-25.49695972224886],[-48.685086850868515,-25.49864829951874],[-48.65268652686527,-25.493582567709097],[-48.62028620286202,-25.49695972224886],[-48.62388623886238,-25.503714031328393],[-48.62388623886238,-25.505402608598274],[-48.62748627486275,-25.510468340407925],[-48.634686346863475,-25.503714031328393],[-48.641886418864175,-25.50202545405851],[-48.6490864908649,-25.507091185868155],[-48.65268652686527,-25.517222649487458],[-48.641886418864175,-25.522288381297102],[-48.62748627486275,-25.523976958566983],[-48.616686166861655,-25.530731267646516],[-48.60588605886059,-25.54423988580558],[-48.5950859508595,-25.527354113106753],[-48.57708577085771,-25.525665535836865],[-48.559085590855915,-25.527354113106753],[-48.5230852308523,-25.51553407221757],[-48.50508505085051,-25.523976958566983],[-48.48708487084869,-25.535796999456167],[-48.4690846908469,-25.54423988580558],[-48.47988479884799,-25.554371349424876],[-48.483484834848355,-25.55774850396464],[-48.47628476284763,-25.550994194885106],[-48.490684906849054,-25.56450281304417],[-48.49788497884978,-25.567879967583934],[-48.50508505085051,-25.571257122123704],[-48.483484834848355,-25.57970000847311],[-48.47268472684726,-25.572945699393586],[-48.465484654846534,-25.55943708123452],[-48.45468454684547,-25.550994194885106],[-48.440284402844014,-25.549305617615225],[-48.42228422284222,-25.554371349424876],[-48.407884078840794,-25.554371349424876],[-48.38628386283861,-25.54423988580558],[-48.36108361083609,-25.571257122123704],[-48.389883898838974,-25.594897203902057],[-48.433084330843315,-25.62191444022018],[-48.515885158851574,-25.77050923996986],[-48.515885158851574,-25.797526476287985],[-48.533885338853395,-25.839740908035047],[-48.541085410854095,-25.8448066398447],[-48.559085590855915,-25.841429485304936],[-48.57348573485734,-25.821166558066338],[-48.584285842858435,-25.817789403526575],[-48.58068580685807,-25.80259220809763],[-48.57708577085771,-25.797526476287985],[-48.591485914859135,-25.799215053557866],[-48.60228602286023,-25.80259220809763],[-48.61308613086129,-25.80765793990728],[-48.62028620286202,-25.817789403526575],[-48.609486094860955,-25.817789403526575],[-48.59868598685986,-25.822855135336226],[-48.591485914859135,-25.829609444415752],[-48.584285842858435,-25.838052330765166],[-48.58068580685807,-25.85156094892423],[-48.584285842858435,-25.854938103463994],[-48.65268652686527,-25.8448066398447],[-48.742687426874255,-25.85156094892423],[-48.75348753487535,-25.854938103463994],[-48.76428764287641,-25.860003835273645],[-48.767887678876775,-25.86675814435317],[-48.77148771487714,-25.880266762512235],[-48.76428764287641,-25.887021071591768],[-48.75708757087571,-25.883643917051998],[-48.74988749887498,-25.876889607972473],[-48.742687426874255,-25.873512453432703],[-48.57708577085771,-25.873512453432703],[-48.56988569885698,-25.86844672162306],[-48.566285662856615,-25.86506956708329],[-48.56268562685625,-25.86506956708329],[-48.559085590855915,-25.880266762512235],[-48.55548555485555,-25.89039822613153],[-48.559085590855915,-25.902218267020707],[-48.57708577085771,-25.961318471466605],[-48.584285842858435,-25.99509001686426],[-48.60588605886059,-26.023795830452265],[-48.61308613086129,-26.040681603151093],[-48.609486094860955,-26.05419022131015],[-48.59868598685986,-26.07107599400898],[-48.584285842858435,-26.157193434773],[-48.584285842858435,-26.17239063020194],[-48.591485914859135,-26.184210671091122],[-48.616686166861655,-26.187587825630885],[-48.634686346863475,-26.194342134710418],[-48.64548645486454,-26.209539330139364],[-48.65628656286563,-26.224736525568304],[-48.667086670866695,-26.236556566457487],[-48.68868688686885,-26.23824514372737],[-48.71388713887137,-26.233179411917718],[-48.735487354873555,-26.224736525568304],[-48.742687426874255,-26.212916484679127],[-48.74628746287462,-26.189276402900767],[-48.74988749887498,-26.174079207471827],[-48.76428764287641,-26.147061971153704],[-48.767887678876775,-26.130176198454876],[-48.77148771487714,-26.10991327121628],[-48.77148771487714,-26.101470384866865],[-48.78228782287823,-26.09133892124757],[-48.78948789487893,-26.062633107659565],[-48.79668796687966,-26.067698839469216],[-48.79668796687966,-26.087961766707807],[-48.78228782287823,-26.11329042575605],[-48.78948789487893,-26.125110466645225],[-48.78948789487893,-26.13524193026452],[-48.78948789487893,-26.145373393883816],[-48.78228782287823,-26.15381628023323],[-48.77868778687787,-26.157193434773],[-48.7750877508775,-26.160570589312762],[-48.767887678876775,-26.163947743852525],[-48.76428764287641,-26.170702052932057],[-48.76428764287641,-26.18252209382124],[-48.76428764287641,-26.187587825630885],[-48.760687606876076,-26.190964980170648],[-48.75708757087571,-26.20278502105983],[-48.76428764287641,-26.228113680108073],[-48.760687606876076,-26.23993372099725],[-48.75708757087571,-26.250065184616545],[-48.760687606876076,-26.256819493696078],[-48.767887678876775,-26.261885225505722],[-48.77868778687787,-26.26357380277561],[-48.75708757087571,-26.290591039093734],[-48.77148771487714,-26.288902461823845],[-48.78228782287823,-26.290591039093734],[-48.793087930879295,-26.295656770903378],[-48.79668796687966,-26.30409965725279],[-48.75708757087571,-26.310853966332324],[-48.73908739087389,-26.319296852681738],[-48.72828728287283,-26.334494048110678],[-48.7210872108721,-26.34462551172998],[-48.659886598865995,-26.369954170778215],[-48.6490864908649,-26.376708479857747],[-48.641886418864175,-26.38515136620716],[-48.641886418864175,-26.396971407096338],[-48.63828638286381,-26.40879144798552],[-48.634686346863475,-26.418922911604817],[-48.62748627486275,-26.42567722068435],[-48.616686166861655,-26.42736579795423],[-48.609486094860955,-26.437497261573526],[-48.61308613086129,-26.456071611542235],[-48.66348663486633,-26.555697670465314],[-48.67428674286742,-26.594534947672614],[-48.685086850868515,-26.662078038467925],[-48.68148681486815,-26.719489665643934],[-48.67788677886779,-26.731309706533118],[-48.67068670686706,-26.739752592882525],[-48.62748627486275,-26.770146983740418],[-48.616686166861655,-26.770146983740418],[-48.591485914859135,-26.763392674660885],[-48.58068580685807,-26.766769829200655],[-48.57708577085771,-26.77690129281995],[-48.58068580685807,-26.787032756439245],[-48.584285842858435,-26.79547564278866],[-48.59868598685986,-26.803918529138073],[-48.609486094860955,-26.819115724567013],[-48.62028620286202,-26.837690074535722],[-48.62748627486275,-26.85288726996467],[-48.62748627486275,-26.864707310853845],[-48.62748627486275,-26.89679027898162],[-48.62388623886238,-26.903544588061152],[-48.616686166861655,-26.911987474410566],[-48.61308613086129,-26.91705320622021],[-48.61308613086129,-26.923807515299742],[-48.62028620286202,-26.932250401649156],[-48.62028620286202,-26.9373161334588],[-48.62028620286202,-26.974464833396226],[-48.62028620286202,-26.98290771974564],[-48.609486094860955,-26.994727760634817],[-48.60228602286023,-26.99810491517458],[-48.5950859508595,-26.99810491517458],[-48.591485914859135,-26.996416337904698],[-48.57348573485734,-27.01667926514329],[-48.57708577085771,-27.033565037842116],[-48.58788587885877,-27.048762233271063],[-48.5950859508595,-27.08591093320848],[-48.60228602286023,-27.094353819557895],[-48.60588605886059,-27.10448528317719],[-48.58788587885877,-27.150076869464023],[-48.58068580685807,-27.158519755813437],[-48.566285662856615,-27.1618969103532],[-48.55188551885519,-27.158519755813437],[-48.54468544685446,-27.150076869464023],[-48.541085410854095,-27.139945405844728],[-48.533885338853395,-27.129813942225432],[-48.515885158851574,-27.12137105587602],[-48.508685086850875,-27.133191096765195],[-48.49788497884978,-27.14838829219414],[-48.47628476284763,-27.153454024003793],[-48.483484834848355,-27.16527406489297],[-48.48708487084869,-27.170339796702613],[-48.49788497884978,-27.175405528512265],[-48.48708487084869,-27.199045610290625],[-48.48708487084869,-27.2108656511798],[-48.49428494284942,-27.215931382989446],[-48.50508505085051,-27.219308537529216],[-48.515885158851574,-27.22268569206898],[-48.5230852308523,-27.220997114799097],[-48.53028530285303,-27.20917707390992],[-48.515885158851574,-27.20579991937015],[-48.51228512285121,-27.197357033020737],[-48.51948519485194,-27.188914146671323],[-48.53028530285303,-27.182159837591797],[-48.541085410854095,-27.182159837591797],[-48.559085590855915,-27.192291301211093],[-48.56988569885698,-27.195668455750855],[-48.57348573485734,-27.199045610290625],[-48.60588605886059,-27.22268569206898],[-48.61308613086129,-27.232817155688274],[-48.616686166861655,-27.237882887497925],[-48.62028620286202,-27.24632577384734],[-48.62028620286202,-27.259834392006397],[-48.61308613086129,-27.298671669213704],[-48.609486094860955,-27.30542597829323],[-48.60588605886059,-27.307114555563118],[-48.57348573485734,-27.31218028737276],[-48.56268562685625,-27.325688905531827],[-48.55548555485555,-27.342574678230655],[-48.55188551885519,-27.3864776872476],[-48.56268562685625,-27.37296906908854],[-48.566285662856615,-27.36790333727889],[-48.56988569885698,-27.376346223628303],[-48.57708577085771,-27.384789109977717],[-48.57708577085771,-27.39323199632713],[-48.57708577085771,-27.405052037216315],[-48.58068580685807,-27.41687207810549],[-48.591485914859135,-27.421937809915136],[-48.60228602286023,-27.423626387185024],[-48.61308613086129,-27.428692118994668],[-48.62748627486275,-27.437135005344082],[-48.63828638286381,-27.447266468963377],[-48.64548645486454,-27.460775087122443],[-48.6490864908649,-27.47934943709115],[-48.609486094860955,-27.55871256877564],[-48.591485914859135,-27.563778300585284],[-48.58068580685807,-27.57559834147446],[-48.57708577085771,-27.594172691443177],[-48.584285842858435,-27.612747041411886],[-48.5950859508595,-27.600927000522702],[-48.61308613086129,-27.612747041411886],[-48.634686346863475,-27.633009968650477],[-48.6490864908649,-27.648207164079423],[-48.63828638286381,-27.66171578223848],[-48.63108631086311,-27.68029013220719],[-48.62748627486275,-27.70055305944578],[-48.62748627486275,-27.71912740941449],[-48.62388623886238,-27.725881718494023],[-48.609486094860955,-27.74107891392297],[-48.60588605886059,-27.751210377542264],[-48.61308613086129,-27.752898954812146],[-48.62388623886238,-27.75965326389168],[-48.62748627486275,-27.768096150241092],[-48.62388623886238,-27.771473304780855],[-48.616686166861655,-27.778227613860388],[-48.58068580685807,-27.811999159258043],[-48.57348573485734,-27.8255077774171],[-48.57348573485734,-27.833950663766515],[-48.58068580685807,-27.837327818306285],[-48.58788587885877,-27.839016395576166],[-48.591485914859135,-27.84239355011593],[-48.58788587885877,-27.854213591005106],[-48.58068580685807,-27.855902168274994],[-48.56988569885698,-27.857590745544876],[-48.566285662856615,-27.86096790008464],[-48.56988569885698,-27.877853672783466],[-48.59868598685986,-27.916690949990766],[-48.60588605886059,-27.931888145419713],[-48.616686166861655,-27.99098834986561],[-48.61308613086129,-28.0112512771042],[-48.609486094860955,-28.016317008913852],[-48.60588605886059,-28.021382740723496],[-48.60228602286023,-28.02813704980303],[-48.59868598685986,-28.041645667962086],[-48.60228602286023,-28.05177713158138],[-48.609486094860955,-28.058531440660914],[-48.616686166861655,-28.063597172470566],[-48.62028620286202,-28.06866290428021],[-48.62028620286202,-28.077105790629624],[-48.634686346863475,-28.107500181487516],[-48.641886418864175,-28.148026035964698],[-48.65268652686527,-28.190240467711767],[-48.65628656286563,-28.21219197222024],[-48.634686346863475,-28.23076632218895],[-48.65268652686527,-28.247652094887776],[-48.68868688686885,-28.27804648574567],[-48.692286922869215,-28.288177949364965],[-48.69588695886958,-28.311818031143318],[-48.69588695886958,-28.33545811292168],[-48.69588695886958,-28.34221242200121],[-48.72468724687246,-28.370918235589215],[-48.73188731887319,-28.384426853748273],[-48.742687426874255,-28.4215755536857],[-48.75708757087571,-28.445215635464052],[-48.76428764287641,-28.457035676353236],[-48.760687606876076,-28.46716713997253],[-48.75708757087571,-28.477298603591827],[-48.760687606876076,-28.487430067211122],[-48.77148771487714,-28.492495799020766],[-48.78228782287823,-28.487430067211122],[-48.793087930879295,-28.470544294512294],[-48.80388803888039,-28.451969944543585],[-48.80748807488075,-28.431707017304994],[-48.80388803888039,-28.408066935526634],[-48.793087930879295,-28.392869740097687],[-48.78948789487893,-28.38104969920851],[-48.793087930879295,-28.370918235589215],[-48.82188821888218,-28.345589576540974],[-48.836288362883636,-28.33714669019156],[-48.850688506885064,-28.3236380720325],[-48.86508865088649,-28.320260917492732],[-48.87228872288722,-28.345589576540974],[-48.87228872288722,-28.35909819470004],[-48.861488614886156,-28.38104969920851],[-48.861488614886156,-28.391181162827806],[-48.861488614886156,-28.4013126264471],[-48.87228872288722,-28.409755512796515],[-48.87228872288722,-28.41819839914593],[-48.868688686886856,-28.426641285495343],[-48.85788857888579,-28.426641285495343],[-48.8470884708847,-28.426641285495343],[-48.83988839888397,-28.428329862765224],[-48.83988839888397,-28.43677274911464],[-48.843488434884335,-28.445215635464052],[-48.850688506885064,-28.455347099083347],[-48.85428854288543,-28.46378998543276],[-48.85428854288543,-28.470544294512294],[-48.85428854288543,-28.475610026321945],[-48.850688506885064,-28.478987180861708],[-48.843488434884335,-28.487430067211122],[-48.80748807488075,-28.50431583990995],[-48.80028800288002,-28.514447303529245],[-48.78948789487893,-28.521201612608778],[-48.77868778687787,-28.52457876714854],[-48.767887678876775,-28.517824458069008],[-48.760687606876076,-28.512758726259364],[-48.74988749887498,-28.511070148989482],[-48.75708757087571,-28.527955921688303],[-48.76428764287641,-28.54315311711725],[-48.79668796687966,-28.580301817054668],[-48.80748807488075,-28.60056474429326],[-48.81468814688145,-28.61069620791256],[-48.82548825488254,-28.615761939722205],[-48.87228872288722,-28.620827671531856],[-48.88308883088831,-28.622516248801738],[-48.911889118891196,-28.637713444230684],[-48.94068940689405,-28.646156330580098],[-48.95508955089551,-28.656287794199393],[-48.976689766897664,-28.674862144168102],[-49.05589055890559,-28.718765153185053],[-49.34389343893437,-28.923083002840855],[-49.55269552695526,-29.127400852496663],[-49.714697146971474,-29.32496439307294],[-49.81189811898119,-29.443164801964727],[-49.85869858698587,-29.529282242728748],[-49.93429934299343,-29.63397403346147],[-49.999099990999895,-29.763994483242442],[-50.0459004590046,-29.814651801338925],[-50.20790207902078,-30.201335996142063],[-50.251102511025096,-30.322913559573614],[-50.31590315903159,-30.461376895703992],[-50.585905859058585,-30.8514382450469],[-50.59310593105931,-30.87170117228549],[-50.60030600306001,-30.881832635904786],[-50.72270722707228,-31.043936053813525],[-50.82710827108269,-31.141873535466722],[-50.88470884708846,-31.21954808988133],[-51.03591035910358,-31.378274353250298],[-51.15111151111512,-31.481277566713146],[-51.323913239132395,-31.604543707414585],[-51.5651156511565,-31.77677858894262],[-51.86391863918638,-31.932127697771826],[-51.8891188911889,-31.954079202280305],[-52.03312033120331,-32.10942831110951],[-52.069120691206905,-32.161774206475876],[-52.07632076320763,-32.16683993828552],[-52.08352083520835,-32.14657701104693],[-52.07632076320763,-32.12462550653846],[-52.05472054720546,-32.08747680660103],[-52.04752047520475,-32.073968188441974],[-52.04032040320402,-32.052016683933495],[-52.03672036720367,-32.02837660215514],[-52.043920439204385,-32.00980225218643],[-52.05832058320583,-31.987850747677953],[-52.043920439204385,-31.976030706788777],[-52.02592025920259,-31.967587820439363],[-52.01152011520115,-31.950702047740535],[-52.02592025920259,-31.92030765688265],[-52.08712087120871,-31.85783029789699],[-52.08712087120871,-31.827435907039096],[-52.04752047520475,-31.808861557070387],[-52.00072000720007,-31.82237017522945],[-51.92151921519215,-31.867961761516284],[-51.87831878318784,-31.871338916056047],[-51.835118351183496,-31.85445314335722],[-51.81351813518134,-31.829124484308984],[-51.835118351183496,-31.800418670720973],[-51.784717847178456,-31.791975784371566],[-51.74511745117451,-31.79535293891133],[-51.70551705517056,-31.791975784371566],[-51.665916659166584,-31.770024279863087],[-51.56151561515614,-31.667021066400245],[-51.54711547115471,-31.640003830082122],[-51.5111151111511,-31.616363748303762],[-51.5039150391504,-31.597789398335053],[-51.500315003150035,-31.574149316556692],[-51.48591485914858,-31.582592202906106],[-51.457114571145695,-31.61467517103388],[-51.44631446314463,-31.612986593764],[-51.449914499144995,-31.59610082106517],[-51.46431464314642,-31.557263543857864],[-51.46071460714606,-31.538689193889155],[-51.449914499144995,-31.516737689380683],[-51.43551435514354,-31.496474762142093],[-51.42111421114211,-31.48465472125291],[-51.41391413914138,-31.518426266650565],[-51.3779137791378,-31.52686915299998],[-51.33471334713346,-31.518426266650565],[-51.30231302313024,-31.501540493951737],[-51.28791287912878,-31.48972045306256],[-51.255512555125534,-31.472834680363732],[-51.24471244712447,-31.46439179401432],[-51.20871208712086,-31.415423053187723],[-51.179911799117974,-31.35970000328159],[-51.15831158311582,-31.287091180676633],[-51.154711547115454,-31.212793780801796],[-51.17631176311764,-31.148627844546255],[-51.16911169111691,-31.13511922638719],[-51.16191161911618,-31.092904794640127],[-51.16191161911618,-31.07770759921118],[-51.154711547115454,-31.067576135591885],[-51.1331113311133,-31.069264712861766],[-51.097110971109714,-31.081084753750943],[-51.079110791107894,-31.07770759921118],[-51.046710467104674,-31.064198981052122],[-51.03231032310322,-31.060821826512353],[-51.014310143101426,-31.062510403782234],[-51.0071100711007,-31.070953290131648],[-51.0071100711007,-31.124987762767894],[-51.003510035100334,-31.133430649117308],[-50.99270992709927,-31.136807803657078],[-50.98190981909818,-31.13511922638719],[-50.97470974709748,-31.131742071847427],[-50.971109711097114,-31.123299185498013],[-50.971109711097114,-31.111479144608836],[-50.963909639096386,-31.10134768098954],[-50.95310953109529,-31.09628194917989],[-50.94230942309423,-31.091216217370246],[-50.9351093510935,-31.087839062830476],[-50.938709387093866,-31.0760190219413],[-50.94950949509496,-31.074330444671418],[-50.96030960309602,-31.0760190219413],[-50.971109711097114,-31.074330444671418],[-50.989109891098906,-31.045624631083406],[-50.978309783097814,-31.008475931145988],[-50.96030960309602,-30.966261499398925],[-50.95670956709566,-30.922358490381974],[-50.971109711097114,-30.903784140413265],[-50.978309783097814,-30.89365267679397],[-50.97470974709748,-30.88858694498432],[-50.963909639096386,-30.8902755222542],[-50.94950949509496,-30.89534125406385],[-50.938709387093866,-30.89534125406385],[-50.913509135091346,-30.89365267679397],[-50.895508955089554,-30.885209790444556],[-50.81990819908199,-30.83117531780831],[-50.78030780307802,-30.824421008728777],[-50.75870758707586,-30.81428954510948],[-50.74430744307443,-30.804158081490186],[-50.72990729907298,-30.792338040601003],[-50.69390693906939,-30.72648352707558],[-50.67950679506794,-30.642054663581447],[-50.69030690306903,-30.464754050243762],[-50.69390693906939,-30.446179700275053],[-50.711907119071185,-30.409031000337635],[-50.72270722707228,-30.37863660947974],[-50.72630726307261,-30.370193723130328],[-50.72630726307261,-30.363439414050802],[-50.70830708307082,-30.35499652770139],[-50.69750697506976,-30.349930795891737],[-50.69030690306903,-30.3533079504315],[-50.67590675906757,-30.368505145860446],[-50.64350643506435,-30.392145227638807],[-50.64350643506435,-30.39889953671834],[-50.64710647106472,-30.403965268527983],[-50.65070650706505,-30.410719577607516],[-50.65430654306542,-30.41916246395693],[-50.65070650706505,-30.43773681392564],[-50.636306363063625,-30.45799974116423],[-50.6219062190622,-30.473196936593176],[-50.60750607506074,-30.485016977482353],[-50.57150571505716,-30.461376895703992],[-50.56430564305643,-30.449556854814816],[-50.56790567905679,-30.43435965938587],[-50.57150571505716,-30.409031000337635],[-50.56790567905679,-30.39721095944845],[-50.553505535055336,-30.37863660947974],[-50.535505355053544,-30.321224982303733],[-50.535505355053544,-30.29420774598561],[-50.53910539105391,-30.267190509667486],[-50.54630546305464,-30.25199331423854],[-50.58230582305822,-30.23173038699995],[-50.58950589505895,-30.226664655190298],[-50.59670596705968,-30.203024573411945],[-50.60390603906038,-30.19458168706253],[-50.61470614706147,-30.186138800713117],[-50.62550625506253,-30.182761646173347],[-50.636306363063625,-30.184450223443235],[-50.64710647106472,-30.19120453252276],[-50.67230672306724,-30.216533191571003],[-50.67590675906757,-30.218221768840884],[-50.67950679506794,-30.228353232460186],[-50.67590675906757,-30.23173038699995],[-50.66870668706687,-30.23341896426983],[-50.65790657906578,-30.241861850619244],[-50.65430654306542,-30.25199331423854],[-50.65430654306542,-30.262124777857835],[-50.661506615066145,-30.2756333960169],[-50.67230672306724,-30.289142014175958],[-50.69390693906939,-30.29420774598561],[-50.762307623076225,-30.290830591445847],[-50.78030780307802,-30.292519168715728],[-50.79470794707947,-30.302650632335023],[-50.79830798307984,-30.322913559573614],[-50.85590855908558,-30.31784782776397],[-50.8739087390874,-30.31953640503385],[-50.89910899108992,-30.311093518684437],[-50.913509135091346,-30.31615925049408],[-50.92430924309244,-30.33304502319291],[-50.92790927909277,-30.35499652770139],[-50.93150931509314,-30.380325186749623],[-50.93150931509314,-30.39889953671834],[-50.91710917109171,-30.436048236655758],[-50.9351093510935,-30.430982504846106],[-50.98550985509854,-30.39552238217857],[-51.003510035100334,-30.388768073099037],[-51.021510215102154,-30.383702341289393],[-51.03231032310322,-30.37525945493998],[-51.039510395103946,-30.35837368224115],[-51.039510395103946,-30.343176486812204],[-51.039510395103946,-30.33979933227244],[-51.03231032310322,-30.326290714113377],[-51.02511025110252,-30.31784782776397],[-51.01791017910179,-30.311093518684437],[-51.014310143101426,-30.304339209604905],[-51.01071010710106,-30.29589632325549],[-51.014310143101426,-30.279010550556663],[-51.021510215102154,-30.263813355127724],[-51.03591035910358,-30.25705904604819],[-51.046710467104674,-30.265501932397605],[-51.053910539105374,-30.265501932397605],[-51.05751057510574,-30.241861850619244],[-51.079110791107894,-30.23848469607948],[-51.104311043110414,-30.243550427889126],[-51.115111151111506,-30.248616159698777],[-51.122311223112234,-30.25537046877831],[-51.140311403114026,-30.246927582428896],[-51.17631176311764,-30.224976077920417],[-51.172711727117274,-30.209778882491477],[-51.179911799117974,-30.199647418872175],[-51.20871208712086,-30.19120453252276],[-51.21951219512195,-30.18951595525288],[-51.22671226712268,-30.18951595525288],[-51.23391233912338,-30.18951595525288],[-51.23751237512374,-30.182761646173347],[-51.23391233912338,-30.177695914363703],[-51.21951219512195,-30.164187296204638],[-51.21591215912159,-30.155744409855224],[-51.21951219512195,-30.137170059886515],[-51.230312303123014,-30.125350018997338],[-51.24471244712447,-30.116907132647924],[-51.2519125191252,-30.10846424629851],[-51.2519125191252,-30.091578473599682],[-51.23751237512374,-30.057806928202034],[-51.23751237512374,-30.039232578233324],[-51.2591125911259,-30.04598688731285],[-51.26271262712626,-30.032478269153792],[-51.26271262712626,-30.013903919185083],[-51.273512735127355,-30.00546103283567],[-51.28431284312842,-30.00714961010555],[-51.28431284312842,-30.0122153419152],[-51.28431284312842,-30.020658228264608],[-51.28431284312842,-30.032478269153792],[-51.30231302313024,-30.062872660011678],[-51.305913059130575,-30.06962696909121],[-51.305913059130575,-30.076381278170743],[-51.298712987129875,-30.078069855440624],[-51.29511295112951,-30.081447009980387],[-51.29151291512915,-30.08313558725027],[-51.29511295112951,-30.0898898963298],[-51.298712987129875,-30.100021359949096],[-51.298712987129875,-30.105087091758747],[-51.298712987129875,-30.12703859626722],[-51.30231302313024,-30.137170059886515],[-51.30951309513094,-30.14561294623593],[-51.3131131311313,-30.154055832585343],[-51.3131131311313,-30.165875873474526],[-51.30951309513094,-30.17600733709382],[-51.305913059130575,-30.186138800713117],[-51.30951309513094,-30.197958841602293],[-51.32751327513276,-30.224976077920417],[-51.31671316713167,-30.223287500650535],[-51.298712987129875,-30.218221768840884],[-51.28791287912878,-30.218221768840884],[-51.280712807128054,-30.221598923380654],[-51.26631266312663,-30.245239005159007],[-51.29151291512915,-30.27225624147713],[-51.280712807128054,-30.287453436906077],[-51.248312483124835,-30.297584900525372],[-51.23751237512374,-30.31278209595432],[-51.22671226712268,-30.307716364144667],[-51.20871208712086,-30.289142014175958],[-51.205112051120494,-30.285764859636195],[-51.197911979119795,-30.29420774598561],[-51.19431194311943,-30.309404941414556],[-51.197911979119795,-30.33642217773268],[-51.1871118711187,-30.360062259511032],[-51.165511655116546,-30.363439414050802],[-51.115111151111506,-30.346553641351974],[-51.09351093510935,-30.344865064082093],[-51.089910899108986,-30.35161937316162],[-51.097110971109714,-30.366816568590565],[-51.10071100711008,-30.385390918559274],[-51.104311043110414,-30.393833804908688],[-51.115111151111506,-30.40058811398822],[-51.1259112591126,-30.407342423067746],[-51.13671136711366,-30.409031000337635],[-51.140311403114026,-30.407342423067746],[-51.154711547115454,-30.39889953671834],[-51.16191161911618,-30.39552238217857],[-51.20151201512016,-30.40058811398822],[-51.230312303123014,-30.425916773036462],[-51.2519125191252,-30.46306547297388],[-51.27711277112772,-30.54074002738848],[-51.28791287912878,-30.58126588186567],[-51.29151291512915,-30.62516889088262],[-51.28431284312842,-30.66907189989957],[-51.26631266312663,-30.734926413424994],[-51.26631266312663,-30.755189340663584],[-51.26991269912699,-30.782206576981707],[-51.280712807128054,-30.797403772410654],[-51.298712987129875,-30.795715195140772],[-51.3131131311313,-30.773763690632293],[-51.28791287912878,-30.76700938155276],[-51.29151291512915,-30.739992145234638],[-51.3131131311313,-30.68426909532851],[-51.323913239132395,-30.642054663581447],[-51.331113311133095,-30.636988931771796],[-51.356313563135615,-30.635300354501915],[-51.3779137791378,-30.642054663581447],[-51.381513815138135,-30.658940436280268],[-51.381513815138135,-30.777140845172063],[-51.3779137791378,-30.794026617870884],[-51.36711367113671,-30.83286389507819],[-51.35991359913598,-30.854815399586663],[-51.36351363513634,-30.878455481365023],[-51.37071370713707,-30.886898367714437],[-51.41391413914138,-30.881832635904786],[-51.43551435514354,-30.883521213174667],[-51.457114571145695,-30.88858694498432],[-51.46791467914679,-30.902095563143384],[-51.47871478714788,-30.922358490381974],[-51.48591485914858,-30.966261499398925],[-51.48591485914858,-31.01354166295564],[-51.47151471514715,-31.05406751743282],[-51.44271442714427,-31.081084753750943],[-51.56871568715687,-31.11992203095825],[-51.59031590315902,-31.12161060822813],[-51.62271622716227,-31.13511922638719],[-51.64431644316443,-31.167202194514964],[-51.651516515165156,-31.206039471722264],[-51.64791647916479,-31.238122439850038],[-51.6371163711637,-31.249942480739215],[-51.6371163711637,-31.256696789818747],[-51.651516515165156,-31.25838536708863],[-51.66231662316622,-31.256696789818747],[-51.67311673116731,-31.253319635278984],[-51.683916839168376,-31.251631058009096],[-51.69471694716947,-31.255008212548866],[-51.71271712717126,-31.26513967616816],[-51.734317343173416,-31.268516830707924],[-51.78111781117812,-31.266828253438042],[-51.79551795517955,-31.266828253438042],[-51.82071820718207,-31.271893985247694],[-51.83871838718386,-31.28202544886699],[-51.85671856718568,-31.310731262454993],[-51.87831878318784,-31.310731262454993],[-51.90351903519036,-31.30735410791523],[-51.92151921519215,-31.30735410791523],[-51.92871928719288,-31.310731262454993],[-51.93231932319324,-31.319174148804407],[-51.93951939519394,-31.32592845788394],[-51.9539195391954,-31.32761703515382],[-51.96471964719646,-31.332682766963465],[-51.96471964719646,-31.34112565331288],[-51.95751957519576,-31.351257116932175],[-51.94671946719467,-31.354634271471944],[-51.943119431194305,-31.35970000328159],[-51.95031950319503,-31.368142889631002],[-51.98631986319862,-31.391782971409363],[-51.993519935199345,-31.398537280488895],[-51.99711997119971,-31.40866874410819],[-52.00072000720007,-31.42893167134678],[-51.99711997119971,-31.494786184872204],[-52.00072000720007,-31.506606225761388],[-52.00432004320042,-31.52855773026986],[-52.00432004320042,-31.540377771159044],[-52.00072000720007,-31.55050923477834],[-51.98991989919898,-31.56570643020728],[-51.98631986319862,-31.574149316556692],[-52.00072000720007,-31.624806634653176],[-52.00432004320042,-31.640003830082122],[-52.00792007920079,-31.646758139161648],[-52.0151201512015,-31.636626675542352],[-52.02592025920259,-31.61467517103388],[-52.02952029520294,-31.58934651198564],[-52.03312033120331,-31.580903625636225],[-52.04032040320402,-31.57077216201693],[-52.04752047520475,-31.56570643020728],[-52.05112051120511,-31.564017852937397],[-52.06192061920619,-31.557263543857864],[-52.07272072720727,-31.5538863893181],[-52.08352083520835,-31.558952121127753],[-52.09072090720906,-31.567395007477167],[-52.094320943209425,-31.577526471096462],[-52.09072090720906,-31.606232284684467],[-52.07992079920798,-31.60960943922423],[-52.06552065520654,-31.604543707414585],[-52.04752047520475,-31.607920861954348],[-52.04032040320402,-31.623118057383294],[-52.04752047520475,-31.643380984621885],[-52.06192061920619,-31.665332489130357],[-52.07632076320763,-31.680529684559303],[-52.094320943209425,-31.6906611481786],[-52.20232202322023,-31.727809848116017],[-52.220322203222025,-31.741318466275082],[-52.22392223922239,-31.763269970783554],[-52.22392223922239,-31.775090011672738],[-52.21312213122131,-31.793664361641447],[-52.20952209522095,-31.800418670720973],[-52.21312213122131,-31.808861557070387],[-52.220322203222025,-31.8173044434198],[-52.22392223922239,-31.827435907039096],[-52.22392223922239,-31.84094452519816],[-52.245522455224545,-31.84094452519816],[-52.24912249122491,-31.86120745243675],[-52.23472234722347,-31.87978180240546],[-52.20952209522095,-31.867961761516284],[-52.18792187921879,-31.894978997834407],[-52.18432184321843,-31.90004472964406],[-52.17712177121771,-31.90342188418382],[-52.15552155521554,-31.906799038723584],[-52.14832148321483,-31.910176193263354],[-52.1411214112141,-31.915241925072998],[-52.13752137521375,-31.92199623415253],[-52.13392133921339,-31.930439120501944],[-52.13752137521375,-31.94057058412124],[-52.14832148321483,-31.94225916139112],[-52.169921699216985,-31.937193429581477],[-52.18072180721806,-31.94057058412124],[-52.19872198721987,-31.950702047740535],[-52.220322203222025,-31.957456356820067],[-52.23832238322383,-31.96589924316948],[-52.245522455224545,-31.98278501586831],[-52.24912249122491,-32.01993371580573],[-52.25272252722527,-32.03850806577444],[-52.25992259922599,-32.05370526120338],[-52.22752227522275,-32.05032810666361],[-52.20952209522095,-32.057082415743146],[-52.21312213122131,-32.06721387936244],[-52.23832238322383,-32.080722497521506],[-52.21312213122131,-32.08578822933115],[-52.18072180721806,-32.07903392025162],[-52.15552155521554,-32.06552530209256],[-52.1411214112141,-32.05032810666361],[-52.13752137521375,-32.03850806577444],[-52.12312123121231,-32.03006517942502],[-52.10872108721087,-32.02499944761537],[-52.094320943209425,-32.02668802488526],[-52.07992079920798,-32.031753756694904],[-52.07992079920798,-32.03850806577444],[-52.09792097920979,-32.05032810666361],[-52.14832148321483,-32.07734534298174],[-52.169921699216985,-32.1009854247601],[-52.15552155521554,-32.12293692926857],[-52.1411214112141,-32.119559774728806],[-52.10152101521015,-32.07903392025162],[-52.08712087120871,-32.06721387936244],[-52.10152101521015,-32.10605115656974],[-52.10152101521015,-32.12293692926857],[-52.09072090720906,-32.15333132012646],[-52.09072090720906,-32.16683993828552],[-52.12672126721267,-32.176971401904815],[-52.22752227522275,-32.25126880177966],[-52.25272252722527,-32.281663192637545],[-52.37512375123751,-32.49948966045241],[-52.44352443524434,-32.68523316013951],[-52.472324723247226,-32.80174499176142],[-52.61992619926198,-33.102311745800534],[-52.6451264512645,-33.13777186846807],[-52.74232742327423,-33.249217968280334],[-52.81792817928179,-33.32182679088529],[-52.92232922329222,-33.40287849983966],[-53.09153091530915,-33.52783321781098],[-53.195931959319594,-33.619016390384644],[-53.26793267932679,-33.67642801756065],[-53.37953379533795,-33.740593953816195],[-53.397533975339755,-33.75072541743549],[-53.41553415534155,-33.764234035594555],[-53.451534515345145,-33.80138273553197],[-53.473134731347315,-33.83515428092963],[-53.48393483934839,-33.868925826327285],[-53.50553505535055,-33.951666112551536],[-53.523535235352355,-34.00232343064801],[-53.53073530735307,-34.047915016934844],[-53.53793537935378,-34.06311221236379],[-53.573935739357395,-34.08337513960238],[-53.59193591935919,-34.095195180491565],[-53.63873638736386,-34.14754107585793],[-53.69273692736927,-34.18131262125558],[-53.710737107371074,-34.19819839395441],[-53.74673746737467,-34.257298598400304],[-53.75753757537575,-34.2674300620196],[-53.75753757537575,-34.279250102908776],[-53.779137791377906,-34.33666173008479],[-53.764737647376464,-34.37212185275233],[-53.764737647376464,-34.39069620272104],[-53.804338043380426,-34.400827666340334],[-53.89793897938979,-34.444730675357285],[-53.97353973539735,-34.48694510710435],[-54.12474124741247,-34.610211247805786],[-54.13554135541355,-34.62371986596485],[-54.139141391413915,-34.64060563866367],[-54.139141391413915,-34.65580283409262],[-54.14634146341463,-34.667622874981795],[-54.23634236342363,-34.68450864768062],[-54.25794257942579,-34.686197224950504],[-54.25434254342542,-34.6777543386011],[-54.25074250742507,-34.671000029521565],[-54.23274232742327,-34.6574914113625],[-54.239942399423995,-34.652425679552856],[-54.24714247142471,-34.647359947743205],[-54.25074250742507,-34.63891706139379],[-54.25434254342542,-34.63047417504438],[-54.25074250742507,-34.6186541341552],[-54.239942399423995,-34.59332547510696],[-54.239942399423995,-34.589948320567196],[-54.25434254342542,-34.57812827967801],[-54.27954279542794,-34.56799681605872],[-54.30834308343083,-34.56293108424907],[-54.32994329943298,-34.56124250697919],[-54.319143191431905,-34.56799681605872],[-54.27954279542794,-34.58150543421778],[-54.28674286742867,-34.59501405237684],[-54.30474304743046,-34.608522670535905],[-54.32274322743227,-34.6186541341552],[-54.33714337143371,-34.62371986596485],[-54.344343443434425,-34.63047417504438],[-54.344343443434425,-34.64398279320344],[-54.33714337143371,-34.65411425682274],[-54.32274322743227,-34.652425679552856],[-54.32274322743227,-34.64398279320344],[-54.30834308343083,-34.647359947743205],[-54.290342903429035,-34.66086856590227],[-54.27954279542794,-34.68282007041074],[-54.28674286742867,-34.69464011129992],[-54.30474304743046,-34.70814872945898],[-54.531545315453144,-34.80608621111218],[-54.542345423454236,-34.811151942921825],[-54.603546035460354,-34.82634913835077],[-54.63594635946359,-34.84830064285924],[-54.657546575465744,-34.85674352920866],[-54.70074700747007,-34.86687499282796],[-54.87354873548735,-34.936106660893145],[-54.89514895148952,-34.939483815432915],[-54.91314913149131,-34.94454954724256],[-54.93834938349383,-34.9698782062908],[-54.959949599495985,-34.973255360830564],[-54.95274952749527,-34.96312389721127],[-54.95274952749527,-34.95636958813174],[-54.95274952749527,-34.95299243359197],[-54.96354963549635,-34.939483815432915],[-54.97434974349743,-34.92766377454373],[-54.99234992349923,-34.920909465464206],[-55.031950319503196,-34.917532310924436],[-55.035550355503545,-34.91246657911479],[-55.035550355503545,-34.90571227003526],[-55.042750427504274,-34.897269383685845],[-55.04995049950499,-34.892203651876194],[-55.060750607506066,-34.88713792006655],[-55.082350823508236,-34.88376076552678],[-55.12915129151291,-34.88544934279667],[-55.222752227522264,-34.90402369276538],[-55.258752587525876,-34.897269383685845],[-55.287552875528746,-34.877006456447255],[-55.337953379533786,-34.81959482927124],[-55.37755377553775,-34.80102047930253],[-55.40275402754027,-34.79933190203265],[-55.46755467554675,-34.795954747492885],[-55.51075510755108,-34.79933190203265],[-55.56115561155612,-34.78751186114347],[-55.600756007560065,-34.772314665714525],[-55.647556475564755,-34.78075755206394],[-55.69435694356943,-34.76556035663499],[-55.75555755557555,-34.78244612933382],[-55.79155791557915,-34.774003242984406],[-55.859958599585994,-34.792577592953116],[-55.88875888758888,-34.80270905657241],[-55.953559535595346,-34.839857756509836],[-56.003960039600386,-34.86856357009784],[-56.06876068760687,-34.90064653822561],[-56.10476104761047,-34.89895796095573],[-56.137161371613715,-34.91246657911479],[-56.15156151561516,-34.920909465464206],[-56.15516155161551,-34.941172392702796],[-56.17676176761768,-34.915843733654555],[-56.19476194761947,-34.91415515638467],[-56.212762127621275,-34.90740084730514],[-56.20556205562055,-34.89895796095573],[-56.2019620196202,-34.88713792006655],[-56.216362163621625,-34.88038361098702],[-56.23076230762307,-34.877006456447255],[-56.237962379623795,-34.892203651876194],[-56.25596255962559,-34.90571227003526],[-56.266762667626665,-34.90571227003526],[-56.288362883628835,-34.90402369276538],[-56.30996309963099,-34.90571227003526],[-56.342363423634225,-34.88376076552678],[-56.40356403564036,-34.855054951938776],[-56.417964179641785,-34.8432349110496],[-56.42156421564215,-34.82803771562065],[-56.40356403564036,-34.816217674731476],[-56.38556385563855,-34.80270905657241],[-56.36036360363603,-34.795954747492885],[-56.37476374763747,-34.78244612933382],[-56.39636396363963,-34.77569182025429],[-56.44676446764467,-34.75880604755547],[-56.48636486364863,-34.753740315745816],[-56.518765187651866,-34.7554288930157],[-56.540365403654036,-34.767248933904874],[-56.55836558365583,-34.76556035663499],[-56.57276572765727,-34.75880604755547],[-56.61236612366123,-34.74023169758675],[-56.626766267662674,-34.731788811237344],[-56.644766447664466,-34.72334592488793],[-56.71316713167131,-34.7064601521891],[-56.79596795967959,-34.69801726583969],[-56.87516875168751,-34.671000029521565],[-56.88956889568895,-34.66086856590227],[-56.903969039690395,-34.63553990685403],[-56.91836918369184,-34.62371986596485],[-56.954369543695435,-34.603456938726254],[-56.97596975969759,-34.58150543421778],[-56.99756997569975,-34.564619661518954],[-57.01557015570155,-34.55279962062978],[-57.04437044370444,-34.53760242520083],[-57.05877058770588,-34.527470961581535],[-57.055170551705515,-34.51396234342247],[-57.06237062370623,-34.507208034342945],[-57.07677076770767,-34.49876514799353],[-57.0839708397084,-34.49369941618388],[-57.10197101971019,-34.47512506621517],[-57.119971199712,-34.463305025325994],[-57.15237152371523,-34.45148498443681],[-57.20277202772027,-34.441353520817515],[-57.292772927729274,-34.43966494354763],[-57.34677346773468,-34.443042098087396],[-57.36477364773647,-34.43122205719822],[-57.411574115741146,-34.43122205719822],[-57.436774367743666,-34.444730675357285],[-57.44757447574476,-34.43122205719822],[-57.47637476374763,-34.42953347992834],[-57.50157501575015,-34.441353520817515],[-57.53757537575375,-34.4531735617067],[-57.569975699756995,-34.426156325388575],[-57.595175951759515,-34.426156325388575],[-57.6239762397624,-34.43122205719822],[-57.66357663576635,-34.444730675357285],[-57.721177211772115,-34.463305025325994],[-57.73917739177391,-34.461616448056105],[-57.76437764377643,-34.47512506621517],[-57.79317793177931,-34.47174791167541],[-57.821978219782196,-34.47512506621517],[-57.85437854378543,-34.47174791167541],[-57.847178471784716,-34.463305025325994],[-57.85437854378543,-34.44810782989705],[-57.883178831788314,-34.441353520817515],[-57.90117901179012,-34.41602486176927],[-57.897578975789756,-34.37549900729209],[-57.922779227792276,-34.35354750278361],[-57.94437944379443,-34.32653026646549],[-58.01638016380163,-34.253921443860534],[-58.048780487804876,-34.240412825701476],[-58.06318063180632,-34.22521563027253],[-58.07758077580776,-34.191444084874874],[-58.09558095580955,-34.177935466715816],[-58.12078120781207,-34.1694925803664],[-58.14598145981459,-34.16442684855675],[-58.16758167581675,-34.16442684855675],[-58.19638196381963,-34.15936111674711],[-58.20718207182071,-34.14754107585793],[-58.22158221582215,-34.110392375920505],[-58.23238232382323,-34.08844087141203],[-58.31518315183152,-33.98712623521907],[-58.33318333183331,-33.97361761706001],[-58.37278372783727,-33.9550432670913],[-58.387183871838715,-33.94153464893224],[-58.40158401584016,-33.92296029896353],[-58.40878408784087,-33.90269737172493],[-58.43398433984339,-33.784496962833146],[-58.437584375843755,-33.69837952206913],[-58.42678426784268,-33.61226208130511],[-58.43038430384303,-33.59199915406652],[-58.43398433984339,-33.57173622682792],[-58.437584375843755,-33.55147329958933],[-58.43398433984339,-33.52783321781098],[-58.41958419584195,-33.50757029057238],[-58.38358383583835,-33.47042159063496],[-58.37998379983799,-33.44847008612649],[-58.38358383583835,-33.42989573615778],[-58.412384123841235,-33.409632808919184],[-58.41958419584195,-33.389369881680594],[-58.412384123841235,-33.372484108981766],[-58.39798397983979,-33.35559833628294],[-58.361983619836195,-33.32520394542505],[-58.35118351183512,-33.30494101818646],[-58.34758347583475,-33.28298951367798],[-58.36558365583656,-33.19687207291397],[-58.36558365583656,-33.15296906389702],[-58.35118351183512,-33.120886095769244],[-58.311583115831155,-33.10906605488007],[-58.21798217982179,-33.11413178668972],[-58.17478174781748,-33.11075463214995],[-58.13878138781388,-33.09555743672101],[-58.09918099180992,-33.065163045863116],[-58.084780847808474,-33.04827727316429],[-58.07758077580776,-33.03139150046546],[-58.073980739807396,-33.00775141868711],[-58.07038070380703,-32.9891770687184],[-58.05598055980559,-32.95202836878098],[-58.048780487804876,-32.91150251430379],[-58.05598055980559,-32.881108123445905],[-58.07758077580776,-32.857468041667545],[-58.12078120781207,-32.818630764460245],[-58.13158131581315,-32.8034335690313],[-58.135181351813515,-32.78485921906259],[-58.13878138781388,-32.76290771455412],[-58.135181351813515,-32.719004705537166],[-58.13878138781388,-32.695364623758806],[-58.14598145981459,-32.67847885105998],[-58.13878138781388,-32.670035964710564],[-58.14598145981459,-32.64470730566232],[-58.15678156781567,-32.57547563759714],[-58.16758167581675,-32.56027844216819],[-58.17838178381784,-32.545081246739244],[-58.19638196381963,-32.469095269594526],[-58.19998199982,-32.44714376508605],[-58.19998199982,-32.443766610546284],[-58.22158221582215,-32.489358196833116],[-58.22158221582215,-32.53494978311995],[-58.210782107821075,-32.656527346551506],[-58.19278192781927,-32.72575901461669],[-58.17838178381784,-32.82876222807954],[-58.17118171181711,-32.84902515531813],[-58.14238142381423,-32.88448527798567],[-58.13878138781388,-32.899682473414614],[-58.14238142381423,-32.919945400653205],[-58.15678156781567,-32.95709410059062],[-58.160381603816035,-32.9790456050991],[-58.14958149581496,-33.024637191385935],[-58.14598145981459,-33.04996585043417],[-58.15678156781567,-33.06178589132335],[-58.19278192781927,-33.08880312764148],[-58.20358203582036,-33.09218028218124],[-58.22878228782288,-33.09555743672101],[-58.24318243182431,-33.09555743672101],[-58.38358383583835,-33.07529450948241],[-58.41958419584195,-33.08880312764148],[-58.42318423184231,-33.09386885945112],[-58.43038430384303,-33.102311745800534],[-58.43038430384303,-33.11075463214995],[-58.412384123841235,-33.11919751849936],[-58.412384123841235,-33.125951827578895],[-58.4159841598416,-33.13608329119819],[-58.41958419584195,-33.146214754817485],[-58.42318423184231,-33.168166259325965],[-58.43038430384303,-33.2137578456128],[-58.43398433984339,-33.232332195581506],[-58.4159841598416,-33.27623520459846],[-58.412384123841235,-33.29818670910693],[-58.42318423184231,-33.308318172726224],[-58.44118441184412,-33.31676105907564],[-58.45918459184591,-33.33533540904435],[-58.487984879848796,-33.369106954442],[-58.50598505985059,-33.40625565437942],[-58.52038520385203,-33.44847008612649],[-58.53118531185311,-33.49406167241332],[-58.53478534785347,-33.534587526890505],[-58.52758527585276,-33.578490535907456],[-58.53118531185311,-33.58862199952675],[-58.5419854198542,-33.60888492676535],[-58.549185491854914,-33.683182326640186],[-58.549185491854914,-33.70513383114866],[-58.5419854198542,-33.745659685625846],[-58.523985239852394,-33.77774265375361],[-58.46998469984699,-33.84190859000916],[-58.462784627846275,-33.85879436270798],[-58.45558455584555,-33.87905728994658],[-58.4519845198452,-33.92464887623341],[-58.437584375843755,-33.98037192613954],[-58.44118441184412,-33.990503389758835],[-58.44838448384483,-34.00063485337813],[-58.44838448384483,-34.00738916245766],[-58.44838448384483,-34.010766316997426],[-58.437584375843755,-34.014143471537196],[-58.42678426784268,-34.01583204880708],[-58.40158401584016,-34.02596351242637],[-58.39438394383943,-34.031029244236024],[-58.387183871838715,-34.04622643966496],[-58.38358383583835,-34.06648936690356],[-58.38358383583835,-34.110392375920505],[-58.39078390783908,-34.14247534404828],[-58.39078390783908,-34.154295384937456],[-58.39078390783908,-34.15936111674711],[-58.37998379983799,-34.177935466715816],[-58.37998379983799,-34.18806693033511],[-58.412384123841235,-34.218461321193],[-58.4159841598416,-34.22521563027253],[-58.42318423184231,-34.240412825701476],[-58.42678426784268,-34.24716713478101],[-58.44118441184412,-34.26067575294007],[-58.45918459184591,-34.27249579382924],[-58.48078480784807,-34.277561525638895],[-58.498784987849874,-34.27080721655936],[-58.50598505985059,-34.26911863928948],[-58.5419854198542,-34.2674300620196],[-58.549185491854914,-34.27249579382924],[-58.55278552785528,-34.279250102908776],[-58.55998559985599,-34.28600441198831],[-58.57078570785707,-34.28769298925819],[-58.513185131851316,-34.316398802846194],[-58.49518495184951,-34.32821884373538],[-58.46638466384664,-34.34848177097397],[-58.45558455584555,-34.3653675436728],[-58.47358473584735,-34.397450511800564],[-58.48438484384843,-34.40758197541986],[-58.49518495184951,-34.41771343903916],[-58.513185131851316,-34.43628778900787],[-58.50958509585095,-34.44979640716693],[-58.50238502385024,-34.463305025325994],[-58.47718477184772,-34.483567952564584],[-58.47358473584735,-34.492010838914],[-58.47358473584735,-34.51227376615259],[-58.47358473584735,-34.522405229771884],[-58.4519845198452,-34.53422527066107],[-58.43398433984339,-34.542668157010475],[-58.412384123841235,-34.55448819789966],[-58.37998379983799,-34.57306254786837],[-58.361983619836195,-34.586571166027426],[-58.34398343983439,-34.608522670535905],[-58.33318333183331,-34.63216275231426],[-58.31518315183152,-34.6574914113625],[-58.235982359823595,-34.70139442037945],[-58.18918189181892,-34.73516596577711],[-58.15318153181532,-34.75036316120605],[-58.11718117181171,-34.753740315745816],[-58.09558095580955,-34.75711747028558],[-58.06318063180632,-34.772314665714525],[-58.03078030780307,-34.77906897479406],[-58.0019800198002,-34.78751186114347],[-57.96597965979659,-34.82466056108089],[-57.93717937179372,-34.833103447430304],[-57.883178831788314,-34.82803771562065],[-57.872378723787236,-34.829726292890534],[-57.85077850778508,-34.84830064285924],[-57.807578075780754,-34.871940724637604],[-57.75717757177571,-34.90908942457502],[-57.68517685176852,-34.934418083623264],[-57.60237602376023,-34.98845255625951],[-57.52317523175232,-35.01378121530775],[-57.48717487174871,-35.04417560616564],[-57.44757447574476,-35.07119284248376],[-57.35037350373503,-35.15055597416825],[-57.31437314373143,-35.18939325137555],[-57.27117271172712,-35.22991910585274],[-57.24957249572495,-35.248493455821446],[-57.20277202772027,-35.310970814807106],[-57.16317163171631,-35.371759596522885],[-57.13437134371344,-35.41735118280972],[-57.12717127171271,-35.44099126458807],[-57.14517145171452,-35.48489427360502],[-57.181171811718116,-35.52204297354244],[-57.22437224372243,-35.56932313709916],[-57.32517325173251,-35.69596643234036],[-57.35397353973539,-35.72804940046813],[-57.36477364773647,-35.76350952313567],[-57.3719737197372,-35.79052675945379],[-57.382773827738276,-35.83105261393098],[-57.393573935739354,-35.863135582058746],[-57.382773827738276,-35.90028428199617],[-57.3719737197372,-35.93912155920347],[-57.3719737197372,-35.967827372791476],[-57.3719737197372,-35.97627025914089],[-57.36477364773647,-35.988090300030066],[-57.34677346773468,-36.00159891818913],[-57.343173431734314,-36.01173038180843],[-57.343173431734314,-36.01341895907831],[-57.31437314373143,-36.069142008984436],[-57.31437314373143,-36.091093513492915],[-57.307173071730716,-36.09953639984233],[-57.292772927729274,-36.10797928619174],[-57.27117271172712,-36.12317648162068],[-57.267572675726754,-36.12824221343033],[-57.26397263972639,-36.150193717938805],[-57.24957249572495,-36.1704566451774],[-57.10917109171092,-36.28190274498966],[-57.004770047700475,-36.33424864035602],[-56.96156961569615,-36.341002949435556],[-56.93636936369363,-36.35113441305485],[-56.929169291692915,-36.36295445394403],[-56.94716947169471,-36.378151649372974],[-56.93996939969399,-36.3849059584525],[-56.92196921969219,-36.36970876302356],[-56.90036900369003,-36.359577299404265],[-56.85716857168572,-36.34438010397532],[-56.83556835568355,-36.341002949435556],[-56.76716767167672,-36.34438010397532],[-56.777967779677795,-36.32074002219696],[-56.77436774367743,-36.3072314040379],[-56.76356763567635,-36.30385424949813],[-56.7419674196742,-36.317362867657195],[-56.73476734767347,-36.32918290854637],[-56.72396723967239,-36.36970876302356],[-56.71676716767168,-36.378151649372974],[-56.69876698766987,-36.39672599934168],[-56.69876698766987,-36.521680717313004],[-56.677166771667714,-36.57571518994925],[-56.67356673566735,-36.601043848997485],[-56.669966699666986,-36.7361300305881]]],[[[44.253442534425346,-20.37550486269464],[44.24984249842498,-20.34342189456686],[44.260642606426075,-20.30796177189933],[44.33264332643327,-20.169498435768944],[44.35424354243543,-20.137415467641176],[44.41544415444156,-20.08338099500493],[44.44064440644408,-20.054675181416926],[44.45864458644587,-20.024280790559033],[44.4730447304473,-19.98544351335174],[44.48024480244803,-19.955049122493847],[44.48024480244803,-19.912834690746777],[44.4730447304473,-19.87906314534912],[44.45504455044551,-19.877374568079247],[44.44424444244444,-19.84866875449123],[44.44064440644408,-19.841914445411703],[44.43344433444335,-19.83853729087194],[44.41904419044192,-19.836848713602052],[44.411844118441195,-19.835160136332178],[44.39744397443974,-19.823340095443],[44.386643866438675,-19.808142900014047],[44.37584375843758,-19.79125712731522],[44.37224372243722,-19.77437135461639],[44.37584375843758,-19.76086273645734],[44.3938439384394,-19.725402613789797],[44.4010440104401,-19.71527115017051],[44.40824408244083,-19.701762532011443],[44.411844118441195,-19.684876759312615],[44.411844118441195,-19.65110521391496],[44.40824408244083,-19.640973750295657],[44.40464404644047,-19.63084228667637],[44.40464404644047,-19.622399400326955],[44.40464404644047,-19.61057935943778],[44.40824408244083,-19.605513627628127],[44.42624426244262,-19.595382164008825],[44.43344433444335,-19.5886278549293],[44.437044370443715,-19.570053504960583],[44.44064440644408,-19.554856309531644],[44.44784447844478,-19.544724845912356],[44.46944469444696,-19.54134769137258],[44.48384483844839,-19.522773341403877],[44.48024480244803,-19.48393606419657],[44.45864458644587,-19.418081550671147],[44.44424444244444,-19.38599858254338],[44.42624426244262,-19.355604191685487],[44.37944379443795,-19.313389759938417],[44.37224372243722,-19.30156971904924],[44.361443614436155,-19.267798173651585],[44.34344343443436,-19.235715205523817],[44.253442534425346,-19.120891951171785],[44.235442354423554,-19.088808983044018],[44.228242282422826,-19.055037437646362],[44.235442354423554,-18.99593723320048],[44.24624246242462,-18.965542842342586],[44.24624246242462,-18.903065483356926],[44.24624246242462,-18.901376906087037],[44.24264242642428,-18.894622597007512],[44.24264242642428,-18.88955686519786],[44.24264242642428,-18.882802556118335],[44.253442534425346,-18.87435966976892],[44.253442534425346,-18.86929393795927],[44.260642606426075,-18.845653856180917],[44.260642606426075,-18.835522392561614],[44.25704257042571,-18.803439424433847],[44.23184231842319,-18.734207756368647],[44.185041850418514,-18.610941615667215],[44.11304113041132,-18.516381288553788],[44.04824048240482,-18.426886693249998],[44.04104041040412,-18.39649230239212],[44.04104041040412,-18.19724018454596],[44.001440014400146,-18.00305379850944],[44.001440014400146,-17.93719928498402],[44.03024030240303,-17.813933144282586],[44.03744037440376,-17.77003013526563],[44.03024030240303,-17.75483293983669],[44.00504005040051,-17.73288143532821],[43.994239942399446,-17.687289849041377],[43.92943929439295,-17.601172408277364],[43.92223922239222,-17.57753232649901],[43.92223922239222,-17.547137935641118],[43.93303933039331,-17.484660576655457],[43.943839438394406,-17.455954763067453],[43.994239942399446,-17.374903054113076],[44.01224012240124,-17.334377199635895],[44.019440194401966,-17.331000045096133],[44.03024030240303,-17.337754354175658],[44.03744037440376,-17.329311467826244],[44.044640446404486,-17.30060565423824],[44.120241202412046,-17.18578239988622],[44.13824138241384,-17.170585204457282],[44.14544145441454,-17.15538800902833],[44.1490414904149,-17.141879390869263],[44.152641526415266,-17.094599227312557],[44.18144181441815,-17.094599227312557],[44.203042030420306,-17.05745052737514],[44.23904239042392,-16.97133308661111],[44.24624246242462,-16.961201622991823],[44.27144271442714,-16.934184386673692],[44.278642786427866,-16.92574150032428],[44.285842858428595,-16.902101418545925],[44.29304293042932,-16.891969954926637],[44.311043110431115,-16.87508418222781],[44.32184321843218,-16.854821254989204],[44.339843398434,-16.814295400512023],[44.36504365043652,-16.777146700574605],[44.4010440104401,-16.739998000637186],[44.42984429844299,-16.70116072342988],[44.44064440644408,-16.655569137143047],[44.43344433444335,-16.636994787174345],[44.41544415444156,-16.593091778157387],[44.411844118441195,-16.572828850918796],[44.41544415444156,-16.549188769140443],[44.42984429844299,-16.537368728251266],[44.437044370443715,-16.542434460060917],[44.44064440644408,-16.567763119109145],[44.45504455044551,-16.54074588279103],[44.462244622446235,-16.5137286464729],[44.462244622446235,-16.485022832884894],[44.45504455044551,-16.458005596566778],[44.41544415444156,-16.402282546660643],[44.4010440104401,-16.37357673307264],[44.39744397443974,-16.339805187674983],[44.4010440104401,-16.327985146785807],[44.411844118441195,-16.312787951356867],[44.41904419044192,-16.299279333197802],[44.42984429844299,-16.2891478695785],[44.437044370443715,-16.27901640595921],[44.437044370443715,-16.265507787800146],[44.44064440644408,-16.209784737894026],[44.44424444244444,-16.19627611973496],[44.45144451444514,-16.18614465611566],[44.46944469444696,-16.182767501575896],[44.50184501845018,-16.182767501575896],[44.537845378453795,-16.17601319249637],[44.753847538475384,-16.19627611973496],[44.78264782647827,-16.19121038792531],[44.79344793447936,-16.19121038792531],[44.81864818648188,-16.2114733151639],[44.83664836648367,-16.219916201513314],[44.854648546485464,-16.224981933322965],[44.86904869048692,-16.221604778783203],[44.87624876248762,-16.209784737894026],[44.88344883448835,-16.199653274274723],[44.890648906489076,-16.19121038792531],[44.905049050490504,-16.182767501575896],[44.91944919449196,-16.179390347036133],[44.948249482494845,-16.17601319249637],[44.96264962649627,-16.16925888341683],[44.95184951849518,-16.162504574337305],[45.00945009450095,-16.135487338019175],[45.0418504185042,-16.11860156532036],[45.05985059850599,-16.09327290627212],[45.09225092250924,-16.039238433635873],[45.11745117451176,-16.012221197317743],[45.13905139051391,-15.990269692809264],[45.16425164251643,-15.975072497380324],[45.2290522905229,-15.949743838332083],[45.26505265052651,-15.92441517928384],[45.27225272252724,-15.929480911093492],[45.275852758527606,-15.944678106522431],[45.275852758527606,-15.976761074650213],[45.2938529385294,-16.032484124556333],[45.29745297452976,-16.037549856365985],[45.29745297452976,-16.0459927427154],[45.29745297452976,-16.052747051794924],[45.29025290252903,-16.073009979033515],[45.29025290252903,-16.089895751732342],[45.29025290252903,-16.103404369891408],[45.29745297452976,-16.11184725624082],[45.31185311853119,-16.115224410780584],[45.32985329853298,-16.110158678970947],[45.340653406534074,-16.100027215351645],[45.3478534785348,-16.08651859719258],[45.358653586535866,-16.07638713357329],[45.391053910539114,-16.064567092684115],[45.40545405454054,-16.054435629064812],[45.41265412654127,-16.039238433635873],[45.409054090540906,-16.03079554728646],[45.391053910539114,-16.02404123820692],[45.38025380253802,-16.012221197317743],[45.36945369453696,-15.995335424618915],[45.36945369453696,-15.98182680645985],[45.38025380253802,-15.973383920110436],[45.542255422554234,-15.956498147411608],[45.54945549455496,-15.954809570141734],[45.55665556655566,-15.951432415601971],[45.57105571055712,-15.942989529252557],[45.57825578255785,-15.971695342840562],[45.585455854558546,-15.98182680645985],[45.58905589055891,-15.983515383729738],[45.58905589055891,-15.986892538269501],[45.58905589055891,-16.002089733698455],[45.57825578255785,-16.03079554728646],[45.58185581855818,-16.040927010905747],[45.59625596255964,-16.032484124556333],[45.60345603456037,-16.05105847452505],[45.610656106561066,-16.04936989725516],[45.62145621456216,-16.032484124556333],[45.610656106561066,-15.980138229189976],[45.61425614256143,-15.970006765570673],[45.63225632256322,-15.954809570141734],[45.63945639456395,-15.942989529252557],[45.635856358563586,-15.941300951982669],[45.63945639456395,-15.915972292934427],[45.63945639456395,-15.905840829315139],[45.643056430564314,-15.899086520235599],[45.64665646656468,-15.890643633886185],[45.64665646656468,-15.880512170266897],[45.63945639456395,-15.86869212937772],[45.62865628656289,-15.860249243028306],[45.62145621456216,-15.850117779409004],[45.62865628656289,-15.836609161249939],[45.661056610566106,-15.804526193122172],[45.693456934569355,-15.782574688613693],[45.70425704257045,-15.782574688613693],[45.72225722257224,-15.789328997693232],[45.73665736657367,-15.792706152232995],[45.75105751057512,-15.792706152232995],[45.76545765457655,-15.79439472950287],[45.80145801458016,-15.816346234011348],[45.82305823058232,-15.812969079471586],[45.88425884258842,-15.77919753407393],[45.89865898658988,-15.774131802264279],[45.91305913059131,-15.772443224994404],[45.92745927459276,-15.770754647724516],[45.94905949059492,-15.774131802264279],[45.95625956259565,-15.782574688613693],[45.95265952659528,-15.816346234011348],[45.95625956259565,-15.831543429440302],[45.95985959859598,-15.839986315789716],[45.96705967059671,-15.843363470329479],[45.98145981459817,-15.846740624869241],[45.98865988659887,-15.848429202139116],[46.00666006660069,-15.846740624869241],[46.01746017460175,-15.846740624869241],[46.04266042660427,-15.86193782029818],[46.06786067860679,-15.86193782029818],[46.06786067860679,-15.855183511218655],[46.05706057060573,-15.843363470329479],[46.049860498605,-15.82647769763065],[46.053460534605364,-15.816346234011348],[46.06426064260643,-15.80621477039206],[46.071460714607156,-15.796083306772758],[46.071460714607156,-15.77919753407393],[46.046260462604636,-15.791017574963107],[46.02466024660248,-15.807903347661934],[46.01026010260102,-15.814657656741474],[46.01746017460175,-15.792706152232995],[46.03186031860321,-15.769066070454642],[46.049860498605,-15.748803143216037],[46.07506075060752,-15.730228793247335],[46.096660966609676,-15.71672017508827],[46.121861218612196,-15.708277288738856],[46.14346143461435,-15.703211556929205],[46.19386193861939,-15.703211556929205],[46.21906219062191,-15.706588711468982],[46.229862298623004,-15.709965866008744],[46.237062370623704,-15.71672017508827],[46.237062370623704,-15.728540215977446],[46.237062370623704,-15.740360256866623],[46.24066240662407,-15.748803143216037],[46.247862478624796,-15.75724602956545],[46.237062370623704,-15.775820379534167],[46.23346233462337,-15.792706152232995],[46.22626226262264,-15.80621477039206],[46.20826208262085,-15.819723388551111],[46.229862298623004,-15.836609161249939],[46.24426244262443,-15.851806356678892],[46.25866258662589,-15.870380706647595],[46.29466294662947,-15.941300951982669],[46.3090630906309,-15.959875301951385],[46.330663306633085,-15.976761074650213],[46.330663306633085,-15.96662961103091],[46.330663306633085,-15.954809570141734],[46.330663306633085,-15.942989529252557],[46.337863378633784,-15.936235220173018],[46.34506345063451,-15.937923797442906],[46.355863558635605,-15.958186724681497],[46.36666366663667,-15.963252456491148],[46.38466384663846,-15.959875301951385],[46.39186391863919,-15.941300951982669],[46.39186391863919,-15.91934944747419],[46.38466384663846,-15.902463674775362],[46.413464134641345,-15.899086520235599],[46.431464314643165,-15.917660870204315],[46.44946449464496,-15.941300951982669],[46.46746467464675,-15.956498147411608],[46.47826478264784,-15.949743838332083],[46.46746467464675,-15.922726602013967],[46.44586445864459,-15.880512170266897],[46.42426424264244,-15.872069283917483],[46.38466384663846,-15.834920583980065],[46.35946359463594,-15.82647769763065],[46.32706327063272,-15.828166274900525],[46.31626316263163,-15.82647769763065],[46.298262982629836,-15.816346234011348],[46.3018630186302,-15.809591924931823],[46.312663126631264,-15.802837615852283],[46.32346323463236,-15.792706152232995],[46.35226352263524,-15.752180297755814],[46.355863558635605,-15.731917370517209],[46.34506345063451,-15.71672017508827],[46.33426334263342,-15.71672017508827],[46.31986319863199,-15.718408752358158],[46.3090630906309,-15.718408752358158],[46.305463054630565,-15.709965866008744],[46.305463054630565,-15.69476867057979],[46.31986319863199,-15.666062856991786],[46.33426334263342,-15.630602734324256],[46.35226352263524,-15.610339807085666],[46.39546395463955,-15.57656826168801],[46.46026460264602,-15.507336593622824],[46.481864818648205,-15.490450820923996],[46.48546485464854,-15.495516552733633],[46.48546485464854,-15.500582284543285],[46.489064890648905,-15.505648016352936],[46.489064890648905,-15.512402325432461],[46.49986499865,-15.505648016352936],[46.52866528665288,-15.480319357304694],[46.56826568265683,-15.449924966446801],[46.582665826658285,-15.439793502827513],[46.60426604266044,-15.42459630739856],[46.633066330663326,-15.421219152858797],[46.658266582665846,-15.421219152858797],[46.679866798668,-15.416153421049145],[46.665466654666545,-15.406021957429857],[46.63666636666366,-15.399267648350317],[46.633066330663326,-15.38913618473103],[46.64386643866439,-15.377316143841853],[46.70146701467016,-15.363807525682788],[46.80226802268024,-15.291198703077825],[46.8778687786878,-15.225344189552402],[46.92106921069211,-15.213524148663225],[46.949869498694994,-15.198326953234286],[46.96426964269642,-15.194949798694523],[46.97146971469715,-15.198326953234286],[46.975069750697514,-15.2067698395837],[46.975069750697514,-15.215212725933114],[46.975069750697514,-15.24222996225123],[46.97866978669788,-15.247295694060881],[46.98946989469894,-15.272624353109123],[46.99666996669967,-15.282755816728425],[47.00747007470076,-15.291198703077825],[47.025470254702554,-15.299641589427239],[47.0578705787058,-15.313150207586304],[47.075870758707595,-15.323281671205606],[47.075870758707595,-15.336790289364671],[47.0650706507065,-15.348610330253848],[47.050670506705075,-15.37393898930209],[47.03627036270365,-15.385759030191267],[47.02187021870219,-15.39420191654068],[47.01107011070113,-15.406021957429857],[46.967869678696786,-15.49213939819387],[46.95346953469536,-15.525910943591526],[46.95706957069572,-15.54955102536988],[46.967869678696786,-15.551239602639768],[46.975069750697514,-15.537730984480703],[46.98586985869861,-15.505648016352936],[46.99666996669967,-15.495516552733633],[47.01467014670146,-15.488762243654108],[47.050670506705075,-15.483696511844457],[47.08667086670869,-15.47187647095528],[47.11547115471154,-15.454990698256452],[47.14787147871479,-15.446547811907038],[47.18027180271804,-15.45667927552634],[47.21627216272162,-15.443170657367276],[47.23067230672308,-15.433039193747973],[47.23427234272344,-15.416153421049145],[47.23067230672308,-15.40939911196962],[47.22347223472235,-15.407710534699731],[47.21627216272162,-15.407710534699731],[47.20907209072092,-15.406021957429857],[47.19827198271983,-15.400956225620206],[47.19467194671947,-15.395890493810555],[47.18027180271804,-15.365496102952676],[47.16587165871658,-15.301330166697127],[47.16587165871658,-15.296264434887476],[47.16227162271625,-15.292887280347713],[47.14787147871479,-15.291198703077825],[47.14067140671406,-15.292887280347713],[47.11187111871121,-15.306395898506779],[47.10827108271084,-15.292887280347713],[47.11187111871121,-15.282755816728425],[47.11907119071191,-15.257427157680183],[47.10467104671048,-15.259115734950058],[47.09387093870939,-15.259115734950058],[47.08667086670869,-15.254050003140406],[47.08307083070832,-15.233787075901816],[47.0650706507065,-15.225344189552402],[47.0578705787058,-15.216901303202988],[47.05427054270544,-15.193261221424635],[47.0650706507065,-15.171309716916156],[47.09027090270902,-15.134161016978737],[47.126271262712635,-15.105455203390733],[47.16947169471695,-15.078437967072617],[47.20547205472056,-15.046354998944835],[47.227072270722715,-14.987254794498952],[47.24147241472414,-14.970369021800124],[47.29187291872918,-14.923088858243403],[47.31347313473137,-14.911268817354227],[47.33507335073352,-14.904514508274687],[47.360273602736044,-14.901137353734924],[47.37107371073711,-14.891005890115636],[47.37467374673747,-14.867365808337269],[47.36747367473674,-14.847102881098678],[47.353073530735315,-14.843725726558915],[47.34227342273422,-14.85216861290833],[47.33507335073352,-14.869054385607157],[47.32427324273243,-14.874120117416808],[47.309873098731,-14.875808694686683],[47.29907299072991,-14.869054385607157],[47.28467284672848,-14.847102881098678],[47.28827288272885,-14.847102881098678],[47.32067320673207,-14.799822717541971],[47.4430744307443,-14.671490845030888],[47.45747457474576,-14.661359381411586],[47.46467464674649,-14.664736535951349],[47.468274682746824,-14.676556576840525],[47.47547475474755,-14.688376617729702],[47.49707497074971,-14.71201669950807],[47.49707497074971,-14.722148163127358],[47.493474934749344,-14.782936944843144],[47.49707497074971,-14.798134140272083],[47.50067500675007,-14.803199872081734],[47.5078750787508,-14.804888449351608],[47.51507515075153,-14.80995418116126],[47.518675186751864,-14.820085644780562],[47.51507515075153,-14.821774222050436],[47.504275042750436,-14.847102881098678],[47.44667446674467,-14.912957394624101],[47.43227432274324,-14.93490889913258],[47.42147421474215,-14.965303289990473],[47.410674106741084,-15.088569430691905],[47.41427414274145,-15.100389471581082],[47.428674286742876,-15.107143780660621],[47.43947439474397,-15.105455203390733],[47.47187471874719,-15.08688085342203],[47.48267482674828,-15.080126544342491],[47.50067500675007,-15.053109308024375],[47.511475114751164,-15.02440349443637],[47.52227522275223,-14.999074835388129],[47.55107551075511,-14.97712333087965],[47.561875618756204,-14.985566217229064],[47.56547565475657,-14.975434753609761],[47.56547565475657,-14.950106094561534],[47.569075690756904,-14.933220321862706],[47.64107641076413,-14.799822717541971],[47.64827648276483,-14.771116903953967],[47.65187651876519,-14.759296863064776],[47.68427684276844,-14.727213894937009],[47.687876878768805,-14.718771008587595],[47.687876878768805,-14.700196658618893],[47.69147691476917,-14.691753772269479],[47.69867698676987,-14.686688040459828],[47.71667716677169,-14.678245154110414],[47.720277202772024,-14.674867999570651],[47.745477454774544,-14.64953934052241],[47.75267752677527,-14.634342145093456],[47.75627756277564,-14.620833526934405],[47.763477634776365,-14.605636331505451],[47.77787777877779,-14.597193445156037],[47.79227792277925,-14.587061981536749],[47.795877958779585,-14.566799054298158],[47.839078390783925,-14.624210681474167],[47.86067860678608,-14.641096454172995],[47.871478714787145,-14.646162185982647],[47.90387903879039,-14.65460507233206],[47.914679146791485,-14.661359381411586],[47.91827918279185,-14.673179422300763],[47.91827918279185,-14.696819504079116],[47.921879218792185,-14.710328122238181],[47.93627936279364,-14.693442349539353],[47.93627936279364,-14.671490845030888],[47.92907929079291,-14.651227917792284],[47.914679146791485,-14.641096454172995],[47.94347943479437,-14.619144949664516],[47.96867968679689,-14.622522104204279],[47.990279902799045,-14.64278503144287],[47.997479974799745,-14.674867999570651],[47.99387993879941,-14.744099667635837],[48.00108001080011,-14.762674017604553],[48.015480154801566,-14.737345358556311],[48.022680226802265,-14.706950967698418],[48.022680226802265,-14.666425113221237],[48.0118801188012,-14.629276413283819],[47.99387993879941,-14.614079217854865],[47.97947979479795,-14.609013486045228],[47.96867968679689,-14.598882022425926],[47.94347943479437,-14.576930517917447],[47.92547925479255,-14.566799054298158],[47.91107911079112,-14.568487631568033],[47.87867878678787,-14.587061981536749],[47.86787867878681,-14.5921277133464],[47.85347853478535,-14.593816290616275],[47.839078390783925,-14.5921277133464],[47.82467824678247,-14.578619095187335],[47.81747817478177,-14.56511047702827],[47.81027810278104,-14.551601858869205],[47.80307803078031,-14.54484754978968],[47.77427774277743,-14.583684826996986],[47.763477634776365,-14.595504867886163],[47.75267752677527,-14.600570599695814],[47.745477454774544,-14.5921277133464],[47.72747727477275,-14.556667590678856],[47.720277202772024,-14.54484754978968],[47.72387723877239,-14.541470395249917],[47.73467734677348,-14.531338931630614],[47.73467734677348,-14.524584622551089],[47.73467734677348,-14.514453158931786],[47.73107731077312,-14.50938742712215],[47.72387723877239,-14.504321695312498],[47.70947709477096,-14.470550149914843],[47.70947709477096,-14.463795840835303],[47.713077130771325,-14.46041868629554],[47.713077130771325,-14.458730109025666],[47.70227702277023,-14.448598645406364],[47.70227702277023,-14.44691006813649],[47.70227702277023,-14.403007059119531],[47.70947709477096,-14.369235513721875],[47.720277202772024,-14.338841122863997],[47.74187741877421,-14.311823886545866],[47.76707767077673,-14.298315268386801],[47.77427774277743,-14.289872382037387],[47.77787777877779,-14.274675186608448],[47.77787777877779,-14.244280795750555],[47.78147781477816,-14.234149332131267],[47.79227792277925,-14.224017868511964],[47.813878138781405,-14.21557498216255],[47.86067860678608,-14.249346527560206],[47.89307893078933,-14.247657950290318],[47.90747907479076,-14.244280795750555],[47.92547925479255,-14.245969373020444],[47.93627936279364,-14.244280795750555],[47.94347943479437,-14.232460754861378],[47.95067950679507,-14.21557498216255],[47.95427954279543,-14.198689209463723],[47.95427954279543,-14.185180591304658],[47.95067950679507,-14.161540509526304],[47.94347943479437,-14.134523273208188],[47.92547925479255,-14.11088319142982],[47.90747907479076,-14.099063150540644],[47.921879218792185,-14.085554532381579],[47.939879398794005,-14.092308841461119],[47.98307983079832,-14.121014655049123],[47.990279902799045,-14.124391809588886],[48.00108001080011,-14.127768964128649],[48.00828008280084,-14.1328346959383],[48.015480154801566,-14.141277582287714],[48.015480154801566,-14.15309762317689],[48.00828008280084,-14.163229086796193],[48.00108001080011,-14.173360550415481],[47.997479974799745,-14.185180591304658],[47.99387993879941,-14.2105092503529],[47.97947979479795,-14.262855145719271],[47.97587975879759,-14.288183804767513],[47.97587975879759,-14.296626691116927],[47.97587975879759,-14.313512463815755],[47.98307983079832,-14.325332504704932],[47.997479974799745,-14.325332504704932],[48.00468004680047,-14.316889618355518],[48.00468004680047,-14.306758154736215],[48.00108001080011,-14.294938113847039],[48.00468004680047,-14.28480665022775],[48.0118801188012,-14.2797409184181],[48.022680226802265,-14.271298032068685],[48.03348033480336,-14.262855145719271],[48.03348033480336,-14.254412259369857],[48.02628026280263,-14.244280795750555],[48.01908019080193,-14.234149332131267],[48.0118801188012,-14.220640713972202],[48.0118801188012,-14.208820673083025],[48.01908019080193,-14.186869168574546],[48.04428044280445,-14.151409045907016],[48.05148051480515,-14.131146118668411],[48.05148051480515,-14.107506036890058],[48.047880478804785,-14.083865955111705],[48.040680406804086,-14.066980182412877],[48.00108001080011,-14.053471564253812],[47.97587975879759,-14.038274368824872],[47.939879398794005,-14.004502823427217],[48.015480154801566,-13.96566554621991],[48.015480154801566,-13.952156928060859],[47.96867968679689,-13.921762537202966],[47.92907929079291,-13.906565341774012],[47.91827918279185,-13.898122455424613],[47.89307893078933,-13.849153714598003],[47.87507875078751,-13.784987778342469],[47.88227882278824,-13.729264728436334],[47.92907929079291,-13.709001801197743],[47.91827918279185,-13.693804605768804],[47.90387903879039,-13.688738873959153],[47.896678966789665,-13.67860741033985],[47.89307893078933,-13.653278751291609],[47.896678966789665,-13.633015824053018],[47.90387903879039,-13.60262143319514],[47.91827918279185,-13.582358505956535],[47.93627936279364,-13.589112815036074],[47.95427954279543,-13.590801392305949],[47.96147961479616,-13.565472733257721],[47.965079650796525,-13.521569724240763],[47.97587975879759,-13.513126837891349],[47.98307983079832,-13.506372528811823],[47.99387993879941,-13.506372528811823],[48.00468004680047,-13.516503992431112],[47.997479974799745,-13.523258301510651],[47.990279902799045,-13.531701187860065],[47.98307983079832,-13.543521228749242],[47.990279902799045,-13.558718424178181],[47.99387993879941,-13.555341269638419],[48.00468004680047,-13.55365269236853],[48.0118801188012,-13.551964115098656],[48.00468004680047,-13.563784155987832],[48.00828008280084,-13.57560419687701],[48.015480154801566,-13.58066992868666],[48.02628026280263,-13.57560419687701],[48.02988029880299,-13.567161310527595],[48.02988029880299,-13.558718424178181],[48.03708037080372,-13.550275537828767],[48.05148051480515,-13.543521228749242],[48.03348033480336,-13.524946878780526],[48.02988029880299,-13.516503992431112],[48.06948069480697,-13.516503992431112],[48.0838808388084,-13.528324033320288],[48.091080910809126,-13.55365269236853],[48.09468094680949,-13.582358505956535],[48.098280982809825,-13.599244278655362],[48.12708127081271,-13.587424237766186],[48.141481414814166,-13.5958671241156],[48.148681486814866,-13.61613005135419],[48.155881558815594,-13.639770133132558],[48.17028170281705,-13.68536171941939],[48.173881738817386,-13.702247492118218],[48.173881738817386,-13.709001801197743],[48.173881738817386,-13.715756110277269],[48.17748177481775,-13.72082184208692],[48.19548195481957,-13.72757615116646],[48.191881918819206,-13.734330460245985],[48.181081810818114,-13.746150501135162],[48.191881918819206,-13.766413428373752],[48.217082170821726,-13.784987778342469],[48.249482494824946,-13.800184973771408],[48.27108271082713,-13.80525070558106],[48.299882998829986,-13.79849639650152],[48.32868328683287,-13.779922046532818],[48.33948339483396,-13.756281964754464],[48.325083250832506,-13.729264728436334],[48.332283322833234,-13.714067533007395],[48.332283322833234,-13.661721637641023],[48.3358833588336,-13.644835864942195],[48.357483574835754,-13.612752896814428],[48.36108361083612,-13.599244278655362],[48.33948339483396,-13.563784155987832],[48.332283322833234,-13.546898383289005],[48.35388353883539,-13.53845549693959],[48.36468364683648,-13.543521228749242],[48.39348393483937,-13.585735660496312],[48.39708397083973,-13.567161310527595],[48.407884078840794,-13.548586960558893],[48.41868418684189,-13.535078342399828],[48.425884258842586,-13.524946878780526],[48.44028440284404,-13.519881146970874],[48.458284582845835,-13.516503992431112],[48.47628476284763,-13.516503992431112],[48.49068490684908,-13.516503992431112],[48.49068490684908,-13.513126837891349],[48.49068490684908,-13.501306797002172],[48.49068490684908,-13.496241065192521],[48.51228512285124,-13.516503992431112],[48.5230852308523,-13.523258301510651],[48.533885338853395,-13.521569724240763],[48.53028530285303,-13.51143826062146],[48.5158851588516,-13.477666715223819],[48.50508505085051,-13.448960901635814],[48.49068490684908,-13.427009397127335],[48.483484834848355,-13.415189356238159],[48.47988479884799,-13.401680738079094],[48.47988479884799,-13.388172119920029],[48.483484834848355,-13.361154883601913],[48.49788497884978,-13.364532038141675],[48.508685086850875,-13.37297492449109],[48.51228512285124,-13.384794965380266],[48.5230852308523,-13.394926428999568],[48.5230852308523,-13.410123624428508],[48.54108541085412,-13.423632242587573],[48.59508595085953,-13.443895169826163],[48.60588605886059,-13.445583747096038],[48.61668616686168,-13.443895169826163],[48.62748627486275,-13.438829438016512],[48.63828638286384,-13.43545228347675],[48.65268652686527,-13.437140860746624],[48.66348663486636,-13.4405180152864],[48.67428674286742,-13.442206592556275],[48.710287102871035,-13.432075128936987],[48.74628746287465,-13.411812201698382],[48.77868778687787,-13.383106388110377],[48.80388803888039,-13.352711997252499],[48.785887858878596,-13.332449070013908],[48.80028800288002,-13.305431833695778],[48.839888398884,-13.259840247408945],[48.836288362883636,-13.248020206519769],[48.82188821888221,-13.224380124741415],[48.818288182881844,-13.209182929312462],[48.818288182881844,-13.177099961184695],[48.82188821888221,-13.160214188485867],[48.843488434884364,-13.080851056801379],[48.85788857888579,-13.053833820483263],[48.88308883088831,-13.01668512054583],[48.893888938889404,-13.00148792511689],[48.89748897488977,-12.984602152418063],[48.901089010890104,-12.972782111528886],[48.90468904689047,-12.96096207063971],[48.91548915489156,-12.94576487521077],[48.92988929889299,-12.93394483432158],[48.94068940689408,-12.928879102511942],[48.937089370893716,-12.9035504434637],[48.951489514895144,-12.837695929938278],[48.95508955089551,-12.812367270890036],[48.94788947889481,-12.79885865273097],[48.92988929889299,-12.775218570952617],[48.92268922689229,-12.763398530063427],[48.91548915489156,-12.749889911904376],[48.911889118891196,-12.738069871015185],[48.90468904689047,-12.69416686199824],[48.901089010890104,-12.682346821109064],[48.886688866888676,-12.660395316600585],[48.87948879488795,-12.657018162060822],[48.875888758887584,-12.658706739330711],[48.868688686886884,-12.657018162060822],[48.86508865088652,-12.64688669844152],[48.86508865088652,-12.636755234822232],[48.87228872288725,-12.63168950301258],[48.875888758887584,-12.62662377120293],[48.87948879488795,-12.619869462123404],[48.87948879488795,-12.61142657577399],[48.87228872288725,-12.599606534884813],[48.87228872288725,-12.5911636485354],[48.88308883088831,-12.567523566757032],[48.886688866888676,-12.56414641221727],[48.87948879488795,-12.552326371328093],[48.868688686886884,-12.550637794058218],[48.85428854288543,-12.557392103137744],[48.839888398884,-12.56414641221727],[48.839888398884,-12.535440598629265],[48.82908829088291,-12.518554825930437],[48.79668796687969,-12.489849012342432],[48.78228782287823,-12.449323157865251],[48.7750877508775,-12.435814539706186],[48.77148771487717,-12.454388889674902],[48.72828728287283,-12.435814539706186],[48.742687426874284,-12.425683076086898],[48.760687606876076,-12.398665839768768],[48.77148771487717,-12.396977262498893],[48.78228782287823,-12.40204299430853],[48.793087930879324,-12.405420148848293],[48.818288182881844,-12.407108726118182],[48.85428854288543,-12.413863035197707],[48.87228872288725,-12.432437385166423],[48.90468904689047,-12.488160435072558],[48.91548915489156,-12.494914744152084],[48.92988929889299,-12.489849012342432],[48.944289442894444,-12.479717548723144],[48.95508955089551,-12.469586085103842],[48.95868958689587,-12.454388889674902],[48.962289622896236,-12.400354417038656],[48.9658896588966,-12.395288685229005],[48.976689766897664,-12.373337180720526],[48.976689766897664,-12.368271448910875],[48.97308973089733,-12.354762830751824],[48.976689766897664,-12.34631994440241],[48.98388983889839,-12.332811326243345],[48.99828998289985,-12.32436843989393],[49.012690126901276,-12.31930270808428],[49.02349023490237,-12.32605701716382],[49.03069030690307,-12.307482667195103],[49.04149041490416,-12.299039780845689],[49.052290522905224,-12.292285471766164],[49.06669066690668,-12.27708827633721],[49.08109081090811,-12.295662626305926],[49.0918909189092,-12.282154008146861],[49.10629106291063,-12.25682534909862],[49.120691206912085,-12.243316730939554],[49.13509135091351,-12.25682534909862],[49.14949149491497,-12.250071040019094],[49.1638916389164,-12.23487384459014],[49.16749167491676,-12.216299494621438],[49.16749167491676,-12.207856608272024],[49.1638916389164,-12.201102299192499],[49.16029160291603,-12.192659412843085],[49.16029160291603,-12.182527949223783],[49.16749167491676,-12.170707908334606],[49.17469174691749,-12.16395359925508],[49.18189181891819,-12.160576444715304],[49.18909189091892,-12.153822135635778],[49.19989199892001,-12.15213355836589],[49.19989199892001,-12.147067826556253],[49.196291962919645,-12.133559208397187],[49.18549185491855,-12.123427744777885],[49.18189181891819,-12.12173916750801],[49.171091710917125,-12.123427744777885],[49.16029160291603,-12.120050590238122],[49.15669156691567,-12.114984858428471],[49.153091530915304,-12.109919126618834],[49.14949149491497,-12.103164817539295],[49.14229142291424,-12.098099085729643],[49.13149131491315,-12.096410508459769],[49.0918909189092,-12.098099085729643],[49.10629106291063,-12.079524735760941],[49.145891458914605,-12.067704694871765],[49.16029160291603,-12.050818922172937],[49.178291782917825,-12.060950385792225],[49.21069210692107,-12.106541972079057],[49.21429214292144,-12.098099085729643],[49.22509225092253,-12.106541972079057],[49.22509225092253,-12.086279044840467],[49.2178921789218,-12.064327540332002],[49.203492034920345,-12.047441767633174],[49.18189181891819,-12.044064613093397],[49.18549185491855,-12.033933149474109],[49.19269192691928,-12.02717884039457],[49.19989199892001,-12.022113108584932],[49.203492034920345,-12.017047376775281],[49.21429214292144,-12.01198164496563],[49.21429214292144,-12.010293067695756],[49.21429214292144,-12.006915913155979],[49.21069210692107,-12.000161604076453],[49.21069210692107,-11.993407294996928],[49.21429214292144,-11.986652985917388],[49.24309243092432,-11.952881440519732],[49.26109261092611,-11.944438554170318],[49.279092790927905,-11.947815708710095],[49.289892898929,-11.95457001778962],[49.31509315093152,-11.986652985917388],[49.322293222932245,-12.000161604076453],[49.322293222932245,-12.028867417664458],[49.329493294932945,-12.040687458553634],[49.347493474934765,-12.066016117601876],[49.35109351093513,-12.091344776650118],[49.347493474934765,-12.11667343569836],[49.354693546935465,-12.147067826556253],[49.36909369093692,-12.182527949223783],[49.372693726937285,-12.197725144652722],[49.36549365493656,-12.19941372192261],[49.329493294932945,-12.15719929017554],[49.31869318693188,-12.155510712905667],[49.31149311493115,-12.16395359925508],[49.304293042930425,-12.175773640144257],[49.297092970929725,-12.182527949223783],[49.28629286292863,-12.17915079468402],[49.271892718927205,-12.167330753794843],[49.26469264692648,-12.153822135635778],[49.26469264692648,-12.140313517476713],[49.253892538925385,-12.145379249286364],[49.246692466924685,-12.153822135635778],[49.23949239492396,-12.162265021985192],[49.23589235892359,-12.174085062874369],[49.25029250292505,-12.180839371953894],[49.246692466924685,-12.192659412843085],[49.228692286922865,-12.22136522643109],[49.24309243092432,-12.22136522643109],[49.26469264692648,-12.224742380970852],[49.28269282692827,-12.231496690050378],[49.29349293492936,-12.239939576399792],[49.289892898929,-12.246693885479331],[49.27549275492757,-12.258513926368508],[49.271892718927205,-12.263579658178159],[49.271892718927205,-12.272022544527573],[49.27549275492757,-12.282154008146861],[49.28269282692827,-12.285531162686624],[49.289892898929,-12.27708827633721],[49.30069300693009,-12.260202503638382],[49.30789307893079,-12.255136771828745],[49.31509315093152,-12.26189108090827],[49.32589325893261,-12.27708827633721],[49.32589325893261,-12.282154008146861],[49.31869318693188,-12.2889083172264],[49.31869318693188,-12.295662626305926],[49.329493294932945,-12.2973512035758],[49.35109351093513,-12.299039780845689],[49.35829358293583,-12.2973512035758],[49.36549365493656,-12.292285471766164],[49.372693726937285,-12.273711121797447],[49.35829358293583,-12.246693885479331],[49.36189361893619,-12.233185267320266],[49.379893798937985,-12.223053803700964],[49.39429394293944,-12.229808112780503],[49.423094230942326,-12.273711121797447],[49.423094230942326,-12.285531162686624],[49.42669426694269,-12.2973512035758],[49.42669426694269,-12.310859821734866],[49.43749437494375,-12.327745594433694],[49.448294482944846,-12.337877058052996],[49.455494554945545,-12.351385676212047],[49.455494554945545,-12.373337180720526],[49.46269462694627,-12.35982856256146],[49.469894698947,-12.351385676212047],[49.480694806948065,-12.348008521672284],[49.49509495094952,-12.34631994440241],[49.513095130951314,-12.348008521672284],[49.51669516695168,-12.354762830751824],[49.523895238952406,-12.36151713983135],[49.538295382953834,-12.378402912530177],[49.54549545495456,-12.390222953419354],[49.54549545495456,-12.40204299430853],[49.538295382953834,-12.407108726118182],[49.523895238952406,-12.403731571578419],[49.513095130951314,-12.398665839768768],[49.50229502295025,-12.396977262498893],[49.49149491494916,-12.407108726118182],[49.513095130951314,-12.427371653356772],[49.52749527495277,-12.442568848785726],[49.538295382953834,-12.4442574260556],[49.55989559895599,-12.420617344277247],[49.58509585095851,-12.481406125993018],[49.59229592295924,-12.503357630501498],[49.5958959589596,-12.530374866819614],[49.59229592295924,-12.542194907708804],[49.581495814958146,-12.540506330438916],[49.574295742957446,-12.530374866819614],[49.57069570695708,-12.516866248660563],[49.57069570695708,-12.489849012342432],[49.56709567095672,-12.516866248660563],[49.581495814958146,-12.574277875836572],[49.574295742957446,-12.59622938034505],[49.56709567095672,-12.606360843964339],[49.563495634956354,-12.616492307583641],[49.563495634956354,-12.628312348472818],[49.56709567095672,-12.640132389361995],[49.574295742957446,-12.657018162060822],[49.581495814958146,-12.655329584790934],[49.588695886958874,-12.648575275711408],[49.599495994959966,-12.64688669844152],[49.613896138961394,-12.657018162060822],[49.63549635496355,-12.67390393475965],[49.65349653496537,-12.69416686199824],[49.66069660696607,-12.712741211966957],[49.664296642966434,-12.724561252856134],[49.67149671496716,-12.746512757364599],[49.675096750967526,-12.756644220983901],[49.67149671496716,-12.770152839142966],[49.66069660696607,-12.792104343651431],[49.65349653496537,-12.805612961810496],[49.664296642966434,-12.800547230000845],[49.67149671496716,-12.79885865273097],[49.682296822968226,-12.800547230000845],[49.689496894968954,-12.805612961810496],[49.69309693096932,-12.79379292092132],[49.700297002970046,-12.785350034571906],[49.707497074970746,-12.776907148222492],[49.71109711097111,-12.748201334634487],[49.71829718297184,-12.739758448285073],[49.72909729097293,-12.738069871015185],[49.74349743497436,-12.743135602824836],[49.739897398973994,-12.753267066444138],[49.73629736297363,-12.756644220983901],[49.75069750697509,-12.760021375523664],[49.765097650976514,-12.766775684603203],[49.77589775897761,-12.775218570952617],[49.80109801098013,-12.79885865273097],[49.80469804698049,-12.805612961810496],[49.80109801098013,-12.830941620858738],[49.80109801098013,-12.839384507208152],[49.815498154981555,-12.866401743526282],[49.82269822698228,-12.87653320714557],[49.83709837098371,-12.879910361685333],[49.85149851498517,-12.879910361685333],[49.865898658986595,-12.879910361685333],[49.87309873098732,-12.888353248034747],[49.87309873098732,-12.908616175273337],[49.865898658986595,-12.913681907082989],[49.85509855098553,-12.917059061622751],[49.85149851498517,-12.923813370702291],[49.865898658986595,-12.942387720670993],[49.88029880298805,-12.949142029750533],[49.89469894698948,-12.954207761560184],[49.90549905499057,-12.962650647909584],[49.90909909099091,-12.982913575148189],[49.91269912699127,-12.99642219330724],[49.93789937899379,-13.02343942962537],[49.941499414994155,-13.033570893244658],[49.94509945099452,-13.087605365880904],[49.93429934299343,-13.16865707483528],[49.93789937899379,-13.18385427026422],[49.941499414994155,-13.20411719750281],[49.941499414994155,-13.219314392931764],[49.94509945099452,-13.23282301109083],[49.9738997389974,-13.271660288298122],[49.97749977499777,-13.28854606099695],[49.9738997389974,-13.33076049274402],[49.97749977499777,-13.345957688172959],[49.991899918999195,-13.354400574522373],[50.00270002700029,-13.35102341998261],[50.01350013500135,-13.344269110903085],[50.02430024300244,-13.345957688172959],[50.03150031500317,-13.361154883601913],[50.03150031500317,-13.37804065630074],[50.02430024300244,-13.411812201698382],[50.02790027900281,-13.438829438016512],[50.042300423004235,-13.496241065192521],[50.05310053100533,-13.524946878780526],[50.05670056700569,-13.530012610590177],[50.067500675006755,-13.53845549693959],[50.07110071100712,-13.543521228749242],[50.07470074700748,-13.551964115098656],[50.07110071100712,-13.570538465067358],[50.07110071100712,-13.578981351416772],[50.07470074700748,-13.599244278655362],[50.07830078300785,-13.605998587734902],[50.08190081900821,-13.609375742274665],[50.08550085500855,-13.612752896814428],[50.08910089100891,-13.612752896814428],[50.092700927009275,-13.614441474084316],[50.09990099901,-13.614441474084316],[50.09990099901,-13.619507205893967],[50.09990099901,-13.624572937703604],[50.10350103501037,-13.629638669513255],[50.10710107101073,-13.641458710402432],[50.09630096300964,-13.675230255800088],[50.10350103501037,-13.692116028498916],[50.11070110701107,-13.702247492118218],[50.13230132301325,-13.749527655674925],[50.143101431014315,-13.78329920107258],[50.15390153901541,-13.982551318918738],[50.1719017190172,-14.056848718793574],[50.175501755017564,-14.085554532381579],[50.175501755017564,-14.121014655049123],[50.16470164701647,-14.149720468637128],[50.16470164701647,-14.166606241335955],[50.16110161101611,-14.202066364003485],[50.16470164701647,-14.22232929124209],[50.1719017190172,-14.234149332131267],[50.19710197101972,-14.25778941390962],[50.21150211502115,-14.286495227497625],[50.21510215102151,-14.31520104108563],[50.200702007020084,-14.392875595500243],[50.18990189901899,-14.423269986358122],[50.18990189901899,-14.438467181787075],[50.18990189901899,-14.457041531755777],[50.20430204302045,-14.504321695312498],[50.21150211502115,-14.615767795124754],[50.23670236702367,-14.669802267761],[50.24030240302403,-14.70526239042853],[50.23310233102333,-14.739033935826185],[50.21150211502115,-14.750853976715362],[50.218702187021876,-14.762674017604553],[50.243902439024396,-14.776182635763604],[50.25830258302585,-14.784625522113018],[50.26550265502655,-14.798134140272083],[50.27270272702728,-14.81501991297091],[50.28350283502837,-14.87918584922646],[50.35550355503557,-15.032846380785784],[50.37350373503736,-15.0598636171039],[50.420304203042036,-15.11727524427991],[50.43110431104313,-15.134161016978737],[50.44190441904419,-15.167932562376393],[50.452704527045285,-15.178064025995695],[50.46350463504635,-15.18650691234511],[50.477904779047805,-15.194949798694523],[50.48870488704887,-15.220278457742765],[50.49950499504996,-15.252361425870532],[50.503105031050325,-15.316527362126067],[50.503105031050325,-15.321593093935718],[50.4959049590496,-15.338478866634546],[50.48870488704887,-15.353676062063485],[50.48870488704887,-15.360430371143025],[50.48870488704887,-15.36718468022255],[50.49230492304923,-15.377316143841853],[50.48870488704887,-15.384070452921378],[50.48150481504817,-15.40939911196962],[50.477904779047805,-15.417841998319034],[50.48150481504817,-15.427973461938336],[50.48150481504817,-15.43641634828775],[50.48510485104853,-15.443170657367276],[50.477904779047805,-15.45161354371669],[50.46710467104671,-15.463433584605866],[50.46350463504635,-15.470187893685392],[50.45630456304565,-15.505648016352936],[50.43830438304383,-15.55461675717953],[50.43470434704349,-15.573191107148247],[50.43110431104313,-15.600208343466363],[50.34110341103411,-15.76400033864499],[50.33390333903341,-15.792706152232995],[50.344703447034476,-15.797771884042646],[50.33750337503375,-15.811280502201697],[50.26550265502655,-15.902463674775362],[50.24030240302403,-15.958186724681497],[50.22950229502297,-15.971695342840562],[50.21510215102151,-15.975072497380324],[50.19710197101972,-15.973383920110436],[50.18270182701829,-15.973383920110436],[50.168301683016836,-15.985203960999627],[50.14670146701468,-15.934546642903143],[50.13230132301325,-15.91934944747419],[50.10710107101073,-15.922726602013967],[50.05670056700569,-15.880512170266897],[50.03870038700387,-15.860249243028306],[50.03150031500317,-15.829854852170413],[50.02790027900281,-15.77919753407393],[50.02430024300244,-15.770754647724516],[50.01350013500135,-15.767377493184753],[49.99909999099992,-15.755557452295577],[49.98469984699847,-15.742048834136511],[49.97749977499777,-15.731917370517209],[49.97029970299704,-15.718408752358158],[49.966699666996675,-15.70152297965933],[49.96309963099631,-15.684637206960502],[49.96309963099631,-15.669440011531563],[49.966699666996675,-15.652554238832735],[49.9738997389974,-15.63904562067367],[49.97749977499777,-15.627225579784493],[49.966699666996675,-15.61202838435554],[49.95949959499595,-15.605274075276014],[49.95229952299525,-15.601896920736252],[49.94869948699488,-15.601896920736252],[49.93789937899379,-15.600208343466363],[49.93429934299343,-15.598519766196489],[49.90549905499057,-15.56137106625907],[49.90189901899021,-15.54955102536988],[49.90909909099091,-15.517468057242112],[49.90909909099091,-15.500582284543285],[49.90189901899021,-15.449924966446801],[49.90189901899021,-15.443170657367276],[49.90549905499057,-15.438104925557624],[49.90909909099091,-15.431350616478099],[49.90189901899021,-15.422907730128685],[49.89469894698948,-15.421219152858797],[49.87669876698769,-15.419530575588922],[49.85149851498517,-15.431350616478099],[49.815498154981555,-15.43641634828775],[49.75069750697509,-15.43641634828775],[49.71829718297184,-15.446547811907038],[49.69669696696968,-15.466810739145629],[49.639096390963914,-15.544485293560243],[49.639096390963914,-15.56981395260847],[49.66069660696607,-15.627225579784493],[49.66069660696607,-15.642422775213433],[49.66069660696607,-15.655931393372498],[49.649896498965006,-15.682948629690614],[49.64629646296464,-15.682948629690614],[49.65349653496537,-15.69476867057979],[49.6678966789668,-15.706588711468982],[49.67869678696789,-15.720097329628032],[49.68589685896859,-15.752180297755814],[49.700297002970046,-15.78595184315347],[49.707497074970746,-15.836609161249939],[49.714697146971474,-15.867003552107832],[49.732697326973266,-15.894020788425962],[49.732697326973266,-15.905840829315139],[49.72909729097293,-15.922726602013967],[49.7218972189722,-15.939612374712794],[49.69309693096932,-15.991958270079152],[49.682296822968226,-16.020664083667157],[49.682296822968226,-16.054435629064812],[49.689496894968954,-16.08651859719258],[49.70389703897041,-16.115224410780584],[49.72909729097293,-16.13886449255895],[49.7938979389794,-16.162504574337305],[49.82269822698228,-16.179390347036133],[49.84429844298444,-16.2114733151639],[49.85149851498517,-16.240179128751905],[49.82989829898301,-16.334739455865346],[49.82629826298265,-16.37357673307264],[49.83349833498335,-16.407348278470295],[49.85149851498517,-16.422545473899234],[49.86229862298623,-16.429299782978774],[49.86229862298623,-16.444496978407713],[49.85869858698587,-16.48333425561502],[49.85509855098553,-16.496842873774085],[49.85509855098553,-16.5052857601235],[49.85509855098553,-16.53905730552114],[49.8478984789848,-16.552565923680206],[49.79749797497976,-16.640371941714108],[49.76869768697688,-16.674143487111763],[49.7218972189722,-16.70791503250942],[49.72549725497257,-16.75350661879625],[49.732697326973266,-16.77545812330473],[49.74709747097472,-16.797409627813195],[49.76869768697688,-16.81598397778191],[49.790297902979034,-16.8261154414012],[49.81189811898119,-16.829492595940977],[49.840698406984075,-16.827804018671088],[49.808298082980826,-16.844689791369916],[49.77949779497797,-16.854821254989204],[49.71829718297184,-16.863264141338618],[49.69309693096932,-16.876772759497683],[49.64629646296464,-16.881838491307334],[49.624696246962486,-16.885215645847097],[49.606696066960666,-16.897035686736274],[49.5958959589596,-16.912232882165227],[49.52749527495277,-17.042253331946185],[49.480694806948065,-17.167208049917505],[49.430294302943025,-17.28371988153941],[49.423094230942326,-17.354640126874486],[49.42669426694269,-17.36983732230344],[49.455494554945545,-17.417117485860146],[49.50229502295025,-17.663649767263024],[49.50949509495095,-17.727815703518573],[49.498694986949886,-17.79704737158376],[49.46269462694627,-17.91524778047554],[49.41229412294123,-18.06721973476499],[49.41229412294123,-18.084105507463818],[49.41229412294123,-18.100991280162646],[49.41949419494196,-18.116188475591585],[49.423094230942326,-18.12294278467111],[49.43389433894339,-18.1347628255603],[49.43749437494375,-18.143205711909715],[49.44109441094412,-18.155025752798892],[49.43389433894339,-18.160091484608543],[49.423094230942326,-18.163468639148306],[49.4158941589416,-18.17022294822783],[49.38349383493835,-18.225945998133966],[49.35829358293583,-18.423509538710235],[49.35109351093513,-18.4370181568693],[49.33309333093331,-18.45896966137778],[49.32589325893261,-18.47247827953683],[49.30069300693009,-18.54002137033214],[49.24309243092432,-18.656533201954048],[49.19269192691928,-18.84227670164114],[49.11349113491136,-19.012823005899293],[49.077490774907744,-19.065168901265665],[48.987489874898756,-19.37924427346384],[48.85788857888579,-19.684876759312615],[48.82548825488254,-19.841914445411703],[48.82188821888221,-19.865554527190056],[48.82548825488254,-19.902703227127475],[48.793087930879324,-19.993886399701154],[48.785887858878596,-19.98037778154209],[48.77148771487717,-19.965180586113135],[48.760687606876076,-19.955049122493847],[48.74988749887498,-19.965180586113135],[48.75348753487535,-19.977000627002326],[48.77868778687787,-20.009083595130093],[48.785887858878596,-20.024280790559033],[48.78228782287823,-20.037789408718098],[48.69948699486994,-20.199892826626836],[48.6418864188642,-20.345110471836747],[48.61668616686168,-20.419407871711584],[48.56268562685628,-20.576445557810672],[48.4618846188462,-20.93273536175593],[48.45108451084511,-20.94793255718487],[48.44028440284404,-20.9648183298837],[48.42948429484295,-20.980015525312638],[48.433084330843315,-20.993524143471703],[48.44748447484474,-20.981704102582526],[48.45468454684547,-20.98508125712229],[48.458284582845835,-20.998589875281354],[48.45468454684547,-21.013787070710293],[48.44748447484474,-21.028984266139247],[48.433084330843315,-21.05769007972725],[48.425884258842586,-21.076264429695954],[48.425884258842586,-21.11003597509361],[48.41508415084152,-21.143807520491265],[48.37908379083791,-21.223170652175753],[48.375483754837546,-21.2383678476047],[48.37188371883721,-21.268762238462585],[48.357483574835754,-21.353191101956718],[48.34308343083433,-21.390339801894136],[48.32868328683287,-21.413979883672496],[48.20268202682027,-21.79559834666599],[48.073080730807305,-22.072525018926747],[47.947079470794705,-22.34776311391763],[47.93267932679328,-22.413617627443053],[47.90027900279003,-22.481160718238364],[47.85707857078572,-22.746267349609944],[47.839078390783925,-22.807056131325723],[47.83547835478356,-22.901616458439157],[47.79947799477995,-23.01137398098153],[47.763477634776365,-23.10931146263473],[47.738277382773845,-23.25621768511452],[47.619476194761944,-23.590555984551294],[47.60867608676088,-23.577047366392236],[47.60147601476015,-23.565227325503052],[47.59787597875979,-23.56353874823317],[47.587075870758724,-23.577047366392236],[47.57627576275763,-23.598998870900708],[47.58347583475836,-23.60406460271036],[47.59787597875979,-23.60575317998024],[47.61587615876161,-23.614196066329654],[47.619476194761944,-23.641213302647778],[47.569075690756904,-23.85228546138311],[47.51507515075153,-23.987371642973727],[47.49707497074971,-24.01607745656174],[47.48987489874901,-24.022831765641264],[47.47547475474755,-24.03296322926056],[47.468274682746824,-24.03634038380033],[47.45747457474576,-24.039717538340092],[47.453874538745396,-24.039717538340092],[47.45027450274503,-24.044783270149743],[47.45027450274503,-24.048160424689506],[47.453874538745396,-24.05153757922927],[47.453874538745396,-24.05660331103892],[47.453874538745396,-24.059980465578683],[47.44667446674467,-24.085309124626924],[47.43227432274324,-24.1173920927547],[47.428674286742876,-24.12414640183423],[47.37107371073711,-24.269364047044142],[47.36387363873641,-24.276118356123668],[47.34947349473495,-24.272741201583905],[47.327873278732795,-24.26429831523449],[47.32427324273243,-24.269364047044142],[47.33867338673389,-24.32508709695027],[47.31347313473137,-24.485501937589127],[47.227072270722715,-24.679688323625633],[47.201872018720195,-24.716837023563052],[47.201872018720195,-24.732034218992],[47.201872018720195,-24.76242860984989],[47.19467194671947,-24.77762580527883],[47.14427144271443,-24.81477450521625],[47.129871298713,-24.845168896074142],[47.13707137071373,-24.909334832329684],[47.126271262712635,-24.934663491377925],[47.11547115471154,-24.92284345048874],[47.10827108271084,-24.909334832329684],[47.10467104671048,-24.894137636900737],[47.10467104671048,-24.878940441471798],[47.09747097470975,-24.894137636900737],[47.09747097470975,-24.907646255059802],[47.09747097470975,-24.92284345048874],[47.09747097470975,-24.94141780045745],[47.09387093870939,-24.959992150426167],[47.08667086670869,-24.968435036775574],[47.0578705787058,-24.978566500394876],[47.03987039870398,-24.98869796401417],[47.01107011070113,-25.012338045792525],[46.96426964269642,-25.06637251842877],[46.95346953469536,-25.071438250238423],[46.949869498694994,-25.06637251842877],[46.942669426694266,-25.0444210139203],[46.92826928269284,-25.042732436650418],[46.92826928269284,-25.0444210139203],[46.924669246692474,-25.04610959119018],[46.867068670686706,-25.08494686839748],[46.84546845468455,-25.10352121836619],[46.834668346683486,-25.110275527445722],[46.8058680586806,-25.120406991065018],[46.79506795067951,-25.12716130014455],[46.78066780667808,-25.14573565011326],[46.76986769867699,-25.154178536462673],[46.76266762667626,-25.152489959192792],[46.7518675186752,-25.14911280465303],[46.741067410674106,-25.14911280465303],[46.73026730267304,-25.160932845542206],[46.723067230672314,-25.16599857735185],[46.65466654666548,-25.184572927320566],[46.63666636666366,-25.182884350050678],[46.60426604266044,-25.174441463701264],[46.50346503465036,-25.162621422812087],[46.388263882638824,-25.16431000008197],[46.237062370623704,-25.198081545479624],[46.03906039060391,-25.277444677164112],[45.91305913059131,-25.336544881610003],[45.77265772657728,-25.407465126945077],[45.67545675456756,-25.493582567709097],[45.65385653856541,-25.507091185868155],[45.63225632256322,-25.51553407221757],[45.610656106561066,-25.517222649487458],[45.560255602556026,-25.55943708123452],[45.491854918549194,-25.572945699393586],[45.207452074520745,-25.584765740282762],[45.19305193051932,-25.588142894822525],[45.17865178651786,-25.594897203902057],[45.16425164251643,-25.598274358441827],[45.14625146251464,-25.594897203902057],[45.13545135451355,-25.584765740282762],[45.12825128251282,-25.545928463075462],[45.11745117451176,-25.529042690376635],[45.08865088650887,-25.508779763138044],[44.980649806498064,-25.47163106320062],[44.95184951849518,-25.451368135962028],[44.93744937449375,-25.43785951780297],[44.92664926649266,-25.407465126945077],[44.90864908649087,-25.39395650878602],[44.83304833048331,-25.343299190689535],[44.76824768247684,-25.31459337710153],[44.728647286472864,-25.304461913482236],[44.620646206462084,-25.28926471805329],[44.51624516245164,-25.284198986243645],[44.36864368643688,-25.257181749925522],[44.35064350643506,-25.24705028630622],[44.336243362433635,-25.20821300909892],[44.30384303843039,-25.176130040971152],[44.29664296642966,-25.154178536462673],[44.31464314643148,-25.160932845542206],[44.33264332643327,-25.174441463701264],[44.36504365043652,-25.20821300909892],[44.38304383043831,-25.221721627257985],[44.4010440104401,-25.221721627257985],[44.40824408244083,-25.2099015863688],[44.40464404644047,-25.18795008186033],[44.39024390243904,-25.19132723640009],[44.37584375843758,-25.184572927320566],[44.35064350643506,-25.160932845542206],[44.33264332643327,-25.15080138192291],[44.31824318243184,-25.144047072843378],[44.30024300243002,-25.140669918303615],[44.28224282242823,-25.140669918303615],[44.24624246242462,-25.12716130014455],[44.18864188641888,-25.06637251842877],[44.152641526415266,-25.051175322999832],[44.120241202412046,-25.051175322999832],[44.109441094410954,-25.047798168460062],[44.03024030240303,-24.998829427633467],[44.0158401584016,-24.976877923124988],[44.01224012240124,-24.89920336871039],[44.001440014400146,-24.865431823312733],[43.92943929439295,-24.774248650739068],[43.918639186391886,-24.742165682611294],[43.92943929439295,-24.65267108730751],[43.918639186391886,-24.61889954190986],[43.90783907839079,-24.602013769211034],[43.86463864638648,-24.559799337463964],[43.86103861038612,-24.5564221829242],[43.85383853838539,-24.55135645111455],[43.850238502385025,-24.542913564765136],[43.84663846638466,-24.534470678415722],[43.843038430384325,-24.514207751177132],[43.83943839438396,-24.505764864827718],[43.80703807038071,-24.478747628509595],[43.73863738637388,-24.436533196762525],[43.70623706237063,-24.40613880590464],[43.673836738367385,-24.335218560569565],[43.65583655836559,-24.184935183550003],[43.67023670236702,-24.01270030202197],[43.65223652236523,-23.916451397638653],[43.65583655836559,-23.906319934019358],[43.66303663036632,-23.88774558405065],[43.666636666366685,-23.879302697701235],[43.66303663036632,-23.867482656812058],[43.65223652236523,-23.837088265954172],[43.6450364503645,-23.798250988746865],[43.6378363783638,-23.779676638778156],[43.623436234362345,-23.761102288809447],[43.6378363783638,-23.740839361570856],[43.6378363783638,-23.669919116235782],[43.641436414364165,-23.639524725377896],[43.66303663036632,-23.6192617981393],[43.73143731437315,-23.592244561821175],[43.749437494374945,-23.570293057312703],[43.74583745837458,-23.553407284613876],[43.73143731437315,-23.528078625565634],[43.73503735037352,-23.509504275596925],[43.749437494374945,-23.495995657437867],[43.75303753037531,-23.489241348358334],[43.76023760237604,-23.472355575659506],[43.76023760237604,-23.463912689310092],[43.75663756637567,-23.453781225690797],[43.74583745837458,-23.440272607531732],[43.72063720637206,-23.42000968029314],[43.70263702637027,-23.3946810212449],[43.65943659436596,-23.35753232130748],[43.65223652236523,-23.35415516676772],[43.6450364503645,-23.352466589497837],[43.6378363783638,-23.350778012227956],[43.63063630636307,-23.344023703148423],[43.62703627036271,-23.338957971338772],[43.623436234362345,-23.3170064668303],[43.61263612636128,-23.281546344162763],[43.60903609036092,-23.19205174885898],[43.598235982359824,-23.117754348984143],[43.5838358383584,-23.075539917237073],[43.55503555035551,-23.04852268091895],[43.48663486634868,-23.001242517362236],[43.47583475834759,-22.98773389920317],[43.46143461434616,-22.955650931075404],[43.447034470344704,-22.94383089018622],[43.42903429034291,-22.930322272027162],[43.3930339303393,-22.894862149359625],[43.371433714337144,-22.864467758501732],[43.36063360633608,-22.84251625399326],[43.357033570335716,-22.829007635834195],[43.34983349833499,-22.788481781357014],[43.339033390333924,-22.76146454503889],[43.331833318333196,-22.709118649672526],[43.321033210332104,-22.68041283608452],[43.31743317433174,-22.644952713416984],[43.31023310233104,-22.63650982706757],[43.295832958329584,-22.619624054368742],[43.29223292232922,-22.61118116801933],[43.28503285032852,-22.587541086240975],[43.28503285032852,-22.563901004462615],[43.288632886328884,-22.518309418175782],[43.27783277832779,-22.425437668332236],[43.263432634326364,-22.378157504775515],[43.24183241832418,-22.332565918488683],[43.238232382323844,-22.322434454869388],[43.24183241832418,-22.312302991250093],[43.24183241832418,-22.302171527630797],[43.23463234632348,-22.278531445852437],[43.22383223832239,-22.254891364074084],[43.22383223832239,-22.234628436835486],[43.24543245432454,-22.217742664136658],[43.27423274232743,-22.216054086866777],[43.295832958329584,-22.234628436835486],[43.30303303033031,-22.219431241406546],[43.29943299432995,-22.20254546870772],[43.295832958329584,-22.18397111873901],[43.295832958329584,-22.1653967687703],[43.259832598326,-22.1653967687703],[43.24903249032491,-22.124870914293112],[43.24543245432454,-22.03537631898933],[43.24903249032491,-22.023556278100152],[43.259832598326,-22.00329335086156],[43.259832598326,-21.99316188724226],[43.259832598326,-21.969521805463906],[43.263432634326364,-21.95939034184461],[43.2670326703267,-21.95601318730484],[43.27063270632706,-21.952636032765078],[43.27423274232743,-21.945881723685545],[43.27783277832779,-21.945881723685545],[43.281432814328156,-21.944193146415664],[43.28503285032852,-21.942504569145783],[43.288632886328884,-21.939127414606013],[43.281432814328156,-21.91211017828789],[43.281432814328156,-21.89860156012883],[43.288632886328884,-21.886781519239655],[43.29223292232922,-21.87496147835047],[43.30303303033031,-21.864830014731176],[43.313833138331404,-21.87833863289024],[43.313833138331404,-21.89522440558907],[43.31023310233104,-21.932373105526487],[43.32823328233283,-21.905355869208364],[43.331833318333196,-21.858075705651643],[43.331833318333196,-21.807418387555167],[43.33543335433356,-21.768581110347867],[43.346233462334624,-21.75000676037915],[43.414634146341484,-21.675709360504314],[43.432634326343276,-21.662200742345256],[43.45063450634507,-21.660512165075367],[43.472234722347224,-21.67233220596455],[43.472234722347224,-21.405536997323082],[43.47943479434795,-21.38020833827484],[43.50103501035011,-21.33461675198801],[43.508235082350836,-21.309288092939767],[43.515435154351565,-21.326173865638594],[43.522635226352264,-21.326173865638594],[43.540635406354085,-21.309288092939767],[43.56943569435694,-21.29577947478071],[43.5838358383584,-21.277205124812],[43.58743587435876,-21.275516547542118],[43.641436414364165,-21.275516547542118],[43.68103681036811,-21.265385083922823],[43.699036990369905,-21.270450815732467],[43.717037170371725,-21.277205124812],[43.73503735037352,-21.282270856621643],[43.76023760237604,-21.272139393002348],[43.78903789037892,-21.251876465763758],[43.81423814238144,-21.224859229445634],[43.82143821438214,-21.1995305703974],[43.82863828638287,-21.170824756809395],[43.86463864638648,-21.076264429695954],[43.900639006390065,-20.882078043659448],[43.96543965439656,-20.76725478930743],[43.98703987039872,-20.748680439338713],[44.019440194401966,-20.7402375529893],[44.03744037440376,-20.72504035756036],[44.09144091440916,-20.63048003044692],[44.102241022410226,-20.589954175969737],[44.11304113041132,-20.54267401241303],[44.127441274412746,-20.498771003396072],[44.152641526415266,-20.466688035268305],[44.152641526415266,-20.47513092161772],[44.152641526415266,-20.481885230697245],[44.159841598415994,-20.49370527158642],[44.18144181441815,-20.439670798950175],[44.19584195841958,-20.421096448981473],[44.23904239042392,-20.389013480853706],[44.253442534425346,-20.37550486269464]]],[[[134.1967419674197,-32.49611250591265],[134.14994149941498,-32.45727522870535],[134.13194131941322,-32.4522094968957],[134.11754117541176,-32.4522094968957],[134.11034110341103,-32.45389807416558],[134.09954099540994,-32.45896380597523],[134.0887408874089,-32.469095269594526],[134.08154081540818,-32.47078384686441],[134.06354063540635,-32.46234096051499],[134.05274052740526,-32.45896380597523],[134.03114031140314,-32.465718115054756],[134.01674016740168,-32.482603887753584],[134.0059400594006,-32.49948966045241],[133.99513995139955,-32.506243969531944],[133.969939699397,-32.50286681499218],[133.95193951939518,-32.49780108318253],[133.93753937539378,-32.50117823772229],[133.9159391593916,-32.519752587691],[133.90873908739087,-32.529884051310304],[133.9051390513905,-32.53663836038983],[133.90153901539014,-32.54339266946936],[133.88713887138874,-32.546769824009125],[133.87633876338765,-32.548458401279014],[133.86553865538656,-32.546769824009125],[133.85833858338583,-32.54170409219948],[133.85473854738547,-32.529884051310304],[133.85473854738547,-32.52481831950065],[133.8619386193862,-32.51299827861148],[133.86553865538656,-32.50962112407171],[133.86553865538656,-32.506243969531944],[133.8619386193862,-32.49442392864277],[133.8619386193862,-32.489358196833116],[133.85833858338583,-32.45896380597523],[133.8619386193862,-32.4522094968957],[133.86913869138692,-32.43194656965711],[133.88353883538838,-32.40999506514863],[133.89793897938978,-32.39986360152933],[133.90153901539014,-32.4133722196884],[133.91233912339123,-32.42181510603781],[133.93033930339305,-32.42012652876792],[133.94833948339482,-32.40830648787875],[133.94833948339482,-32.38973213791004],[133.94113941139415,-32.37622351975097],[133.90873908739087,-32.342451974353324],[133.90153901539014,-32.325566201654496],[133.89433894338947,-32.31374616076532],[133.84753847538474,-32.27322030628813],[133.83313833138334,-32.24958022450977],[133.8259382593826,-32.24620306997001],[133.81153811538115,-32.24789164723989],[133.80073800738006,-32.25464595631942],[133.7935379353794,-32.263088842668836],[133.78993789937903,-32.2664659972086],[133.77553775537757,-32.26477741993872],[133.76833768337684,-32.258023110859185],[133.76473764737648,-32.24789164723989],[133.76473764737648,-32.220874410921766],[133.7611376113761,-32.21580867911212],[133.75393753937539,-32.21580867911212],[133.73593735937362,-32.20736579276271],[133.71433714337144,-32.20230006095306],[133.70353703537035,-32.19723432914341],[133.6927369273693,-32.19048002006388],[133.6927369273693,-32.188791442794],[133.6927369273693,-32.18541428825423],[133.69633696336962,-32.17359424736505],[133.6927369273693,-32.16346278374576],[133.68553685536858,-32.16008562920599],[133.6747367473675,-32.158397051936106],[133.6639366393664,-32.15333132012646],[133.66033660336603,-32.14319985650717],[133.67113671136713,-32.136445547427634],[133.67833678336785,-32.1296912383481],[133.68193681936822,-32.12293692926857],[133.67113671136713,-32.10942831110951],[133.64953649536494,-32.1009854247601],[133.62433624336245,-32.097608270220334],[133.60273602736027,-32.095919692950446],[133.5847358473585,-32.10267400202998],[133.58113581135814,-32.12124835199869],[133.58113581135814,-32.14488843377705],[133.5739357393574,-32.16346278374576],[133.56313563135632,-32.17190567009517],[133.55233552335523,-32.17190567009517],[133.5091350913509,-32.15333132012646],[133.49473494734946,-32.14488843377705],[133.49113491134915,-32.1398227019674],[133.48753487534879,-32.114494042919155],[133.4767347673477,-32.11111688837939],[133.45153451534514,-32.1296912383481],[133.4407344073441,-32.13137981561798],[133.42633426334265,-32.1296912383481],[133.41913419134193,-32.133068392887864],[133.41553415534156,-32.14657701104693],[133.41913419134193,-32.156708474666225],[133.42633426334265,-32.16008562920599],[133.45153451534514,-32.16346278374576],[133.47313473134733,-32.17359424736505],[133.49113491134915,-32.18710286552411],[133.49473494734946,-32.198922906413294],[133.47313473134733,-32.20567721549283],[133.4659346593466,-32.20230006095306],[133.44793447934478,-32.19216859733376],[133.43713437134375,-32.19048002006388],[133.42993429934302,-32.19385717460364],[133.42633426334265,-32.200611483683176],[133.4227342273423,-32.20736579276271],[133.4119341193412,-32.21074294730247],[133.3579335793358,-32.20567721549283],[133.32553325533257,-32.198922906413294],[133.3039330393304,-32.19048002006388],[133.2787327873279,-32.214120101842234],[133.27153271532717,-32.219185833651885],[133.26073260732608,-32.21580867911212],[133.24633246332462,-32.200611483683176],[133.2247322473225,-32.195545751873524],[133.2031320313203,-32.18710286552411],[133.19233192331922,-32.18541428825423],[133.18153181531818,-32.18710286552411],[133.16353163531636,-32.195545751873524],[133.15633156331563,-32.19723432914341],[133.1491314913149,-32.19723432914341],[133.14553145531454,-32.19385717460364],[133.14193141931423,-32.18710286552411],[133.1347313473135,-32.176971401904815],[133.05553055530555,-32.10773973383963],[133.03393033930342,-32.097608270220334],[133.01233012330124,-32.095919692950446],[133.0051300513005,-32.099296847490216],[132.99792997929978,-32.10605115656974],[132.98712987129875,-32.11111688837939],[132.97632976329766,-32.10942831110951],[132.9727297272973,-32.1009854247601],[132.9727297272973,-32.08578822933115],[132.96552965529656,-32.073968188441974],[132.95472954729547,-32.06721387936244],[132.93312933129334,-32.0621481475528],[132.86832868328685,-32.014867983996076],[132.8431284312843,-31.991227902217723],[132.79632796327962,-31.955767779550186],[132.7747277472775,-31.950702047740535],[132.7531275312753,-31.949013470470653],[132.70632706327063,-31.952390625010416],[132.65952659526596,-31.949013470470653],[132.5875258752588,-31.93550485231159],[132.56232562325624,-31.933816275041707],[132.51552515525157,-31.94057058412124],[132.49392493924938,-31.947324893200772],[132.47592475924762,-31.955767779550186],[132.46152461524616,-31.9642106658996],[132.45432454324543,-31.98447359313819],[132.4579245792458,-31.99798221129725],[132.4687246872469,-32.00980225218643],[132.48312483124835,-32.02668802488526],[132.47232472324725,-32.03006517942502],[132.46152461524616,-32.02837660215514],[132.43992439924398,-32.01993371580573],[132.41832418324185,-32.013179406726195],[132.39672396723967,-32.013179406726195],[132.37512375123754,-32.014867983996076],[132.3247232472325,-32.033442333964786],[132.27792277922782,-32.03850806577444],[132.2347223472235,-32.033442333964786],[132.1951219512195,-32.018245138535846],[132.16272162721629,-31.991227902217723],[132.10872108721088,-31.932127697771826],[132.07632076320766,-31.908487615993465],[131.92151921519218,-31.824058752499333],[131.78471784717846,-31.727809848116017],[131.53631536315362,-31.606232284684467],[131.34551345513455,-31.53024630753974],[131.17631176311767,-31.477900412173383],[131.13671136711366,-31.474523257633614],[131.09351093510935,-31.49140903033244],[130.99270992709927,-31.5538863893181],[130.83430834308342,-31.601166552874815],[130.7911079110791,-31.607920861954348],[130.69750697506976,-31.606232284684467],[130.54630546305464,-31.585969357445876],[130.31230312303126,-31.585969357445876],[130.26910269102694,-31.574149316556692],[130.15750157501577,-31.574149316556692],[130.1359013590136,-31.577526471096462],[130.07830078300782,-31.59441224379529],[129.94509945099452,-31.58934651198564],[129.75429754297545,-31.61467517103388],[129.53829538295383,-31.621429480113413],[129.46989469894697,-31.640003830082122],[129.4518945189452,-31.643380984621885],[129.36549365493659,-31.643380984621885],[129.30789307893082,-31.65520102551106],[129.28629286292863,-31.656889602780943],[129.22149221492214,-31.65520102551106],[129.19989199892,-31.656889602780943],[129.13869138691388,-31.67715253001954],[129.12429124291242,-31.678841107289422],[129.0918909189092,-31.67715253001954],[129.0018900189002,-31.688972570908717],[128.99108991089912,-31.6906611481786],[128.929889298893,-31.707546920877427],[128.77148771487714,-31.7784671662125],[128.75708757087574,-31.793664361641447],[128.72468724687246,-31.803795825260742],[128.65628656286566,-31.846010257007812],[128.22068220682206,-32.018245138535846],[128.0190801908019,-32.08409965206127],[127.7670776707767,-32.12293692926857],[127.58707587075872,-32.182037133714466],[127.56547565475654,-32.18541428825423],[127.5546755467555,-32.188791442794],[127.53667536675368,-32.20736579276271],[127.53307533075332,-32.21074294730247],[127.28827288272885,-32.27322030628813],[127.11187111871118,-32.29348323352672],[127.09027090270905,-32.300237542606254],[127.08307083070832,-32.29348323352672],[127.05427054270541,-32.30361469714602],[126.93546935469357,-32.300237542606254],[126.82026820268203,-32.31036900622555],[126.78786787867881,-32.300237542606254],[126.7590675906759,-32.31036900622555],[126.67626676266764,-32.31712331530508],[126.3738637386374,-32.283351769907426],[126.27666276662768,-32.2563345335893],[126.24786247862482,-32.24113733816036],[126.20466204662046,-32.237760183620594],[126.18666186661869,-32.23269445181095],[126.1758617586176,-32.23607160635071],[126.13626136261365,-32.24620306997001],[126.12546125461256,-32.25295737904954],[126.1110611106111,-32.26815457447848],[126.10386103861038,-32.27322030628813],[126.07866078660788,-32.279974615367664],[126.00666006660066,-32.27322030628813],[125.9778597785978,-32.28504034717731],[125.92745927459276,-32.30699185168579],[125.869858698587,-32.33232051073403],[125.80145801458013,-32.37453494248109],[125.6718567185672,-32.45896380597523],[125.5386553865539,-32.548458401279014],[125.4738547385474,-32.56365559670795],[125.33705337053374,-32.60080429664537],[125.25785257852579,-32.63964157385268],[125.09585095850957,-32.712250396457634],[125.0346503465035,-32.72913616915646],[125.01665016650168,-32.732513323696224],[124.99864998649986,-32.737579055505876],[124.90144901449014,-32.833827959889184],[124.83304833048334,-32.86759950528684],[124.74664746647466,-32.89292816433508],[124.70704707047071,-32.90305962795438],[124.519845198452,-32.92838828700262],[124.35784357843579,-32.95202836878098],[124.31464314643148,-32.96553698694004],[124.29664296642966,-32.977357027829214],[124.25344253442535,-33.01281715049675],[124.24264242642425,-33.021260036846165],[124.22104221042213,-33.026325768655816],[124.19944199441994,-33.03814580954499],[124.16344163441636,-33.068540200402886],[124.11664116641168,-33.120886095769244],[124.0950409504095,-33.15634621843678],[124.0806408064081,-33.19011776383444],[124.07704077040773,-33.232332195581506],[124.069840698407,-33.25428370008998],[124.05904059040591,-33.269480895518925],[124.04464044640446,-33.28467809094787],[124.00864008640087,-33.35390975901306],[124.00864008640087,-33.36235264536247],[124.00864008640087,-33.369106954442],[124.00864008640087,-33.37754984079142],[124.00504005040051,-33.38768130441071],[123.99423994239942,-33.41132138618907],[123.98703987039869,-33.434961467967426],[123.96903969039693,-33.48055305425426],[123.96543965439656,-33.49912740422297],[123.9618396183962,-33.54640756777969],[123.9510395103951,-33.56667049501828],[123.93303933039334,-33.57511338136769],[123.91143911439116,-33.578490535907456],[123.88983889838897,-33.58862199952675],[123.87543875438757,-33.600442040415935],[123.86463864638648,-33.615639235844874],[123.86463864638648,-33.619016390384644],[123.86463864638648,-33.620704967654525],[123.86463864638648,-33.62577069946417],[123.86463864638648,-33.62914785400394],[123.85743857438575,-33.63421358581358],[123.81423814238144,-33.657853667591944],[123.75663756637567,-33.71357671749807],[123.74223742237422,-33.73721679927643],[123.73503735037349,-33.75747972651502],[123.73143731437318,-33.76761119013432],[123.73503735037349,-33.78111980829338],[123.73863738637385,-33.787874117372915],[123.73863738637385,-33.79462842645244],[123.72783727837282,-33.804759890071736],[123.709837098371,-33.81657993096092],[123.66663666636668,-33.83346570365975],[123.64863648636486,-33.84190859000916],[123.64143641436414,-33.85204005362846],[123.62703627036274,-33.87230298086705],[123.62343623436237,-33.87736871267669],[123.61263612636128,-33.87736871267669],[123.58023580235806,-33.87568013540681],[123.5658356583566,-33.884123021756224],[123.52623526235266,-33.93815749439247],[123.5118351183512,-33.93984607166235],[123.49383493834938,-33.93140318531294],[123.47943479434798,-33.91958314442376],[123.47223472234725,-33.907763103534585],[123.46143461434616,-33.89932021718517],[123.38223382233821,-33.89087733083576],[123.34263342633426,-33.90269737172493],[123.3138331383314,-33.93140318531294],[123.26703267032673,-33.98712623521907],[123.23103231032309,-34.00063485337813],[123.22743227432278,-33.99894627610825],[123.22383223832242,-33.99556912156849],[123.21663216632169,-33.9938805442986],[123.21303213032132,-33.9938805442986],[123.2058320583206,-33.99725769883837],[123.1950319503195,-34.00570058518778],[123.18783187831878,-34.00738916245766],[123.15543155431556,-34.009077739727545],[123.14823148231483,-34.00232343064801],[123.13383133831337,-33.93984607166235],[123.11223112231124,-33.904385948994815],[123.08343083430833,-33.87905728994658],[123.04743047430475,-33.86217151724775],[123.02223022230226,-33.86048293997787],[123.0078300783008,-33.863860094517634],[122.99342993429934,-33.868925826327285],[122.9538295382954,-33.87230298086705],[122.8782287822878,-33.89763163991529],[122.84222842228422,-33.904385948994815],[122.81702817028173,-33.904385948994815],[122.80622806228064,-33.89932021718517],[122.78822788227882,-33.88074586721646],[122.77742777427773,-33.87736871267669],[122.76302763027633,-33.87905728994658],[122.73422734227341,-33.89087733083576],[122.64782647826479,-33.889188753565875],[122.60822608226084,-33.89425448537552],[122.57582575825757,-33.91114025807435],[122.5830258302583,-33.92464887623341],[122.5830258302583,-33.93646891712259],[122.57222572225726,-33.948288958011766],[122.56142561425617,-33.95842042163106],[122.53982539825398,-33.94153464893224],[122.53622536225362,-33.93815749439247],[122.52902529025289,-33.93646891712259],[122.52542525425253,-33.933091762582826],[122.52182521825222,-33.93140318531294],[122.50022500225003,-33.944911803472],[122.48942489424894,-33.94322322620212],[122.38862388623886,-33.916205989884],[122.34902349023491,-33.91451741261412],[122.31302313023133,-33.92464887623341],[122.28062280622805,-33.944911803472],[122.26622266222665,-33.95842042163106],[122.26262262622629,-33.970240462520245],[122.26622266222665,-34.0040120079179],[122.25902259022592,-34.02258635788661],[122.2410224102241,-34.01583204880708],[122.22302223022234,-34.00232343064801],[122.21582215822161,-33.9938805442986],[122.20862208622088,-33.99725769883837],[122.19782197821979,-34.00738916245766],[122.19422194221943,-34.01583204880708],[122.1870218702187,-34.02089778061672],[122.09342093420935,-34.01920920334684],[122.07182071820722,-34.014143471537196],[122.07182071820722,-34.00738916245766],[122.10422104221044,-33.98037192613954],[122.10422104221044,-33.96348615344071],[122.08262082620826,-33.926337453503294],[122.07542075420753,-33.89087733083576],[122.06822068220686,-33.87736871267669],[122.06102061020613,-33.870614403597166],[122.03942039420394,-33.85541720816822],[122.01422014220145,-33.825022817310334],[122.00702007020072,-33.81995708550068],[121.99621996219963,-33.821645662770564],[121.98181981819818,-33.8283999718501],[121.93861938619386,-33.8283999718501],[121.91341913419137,-33.83853143546939],[121.8810188101881,-33.870614403597166],[121.86301863018633,-33.87736871267669],[121.84861848618488,-33.88074586721646],[121.81261812618129,-33.89594306264541],[121.79461794617947,-33.89763163991529],[121.77661776617765,-33.89087733083576],[121.74421744217443,-33.867237249057396],[121.72981729817297,-33.86217151724775],[121.71541715417158,-33.86217151724775],[121.69741697416976,-33.8571057854381],[121.68661686616866,-33.85541720816822],[121.67581675816757,-33.85879436270798],[121.66501665016654,-33.865548671787515],[121.65781657816581,-33.87230298086705],[121.65061650616508,-33.87736871267669],[121.6290162901629,-33.87568013540681],[121.6146161461615,-33.863860094517634],[121.6038160381604,-33.85035147635857],[121.58581585815858,-33.84190859000916],[121.57501575015749,-33.84022001273927],[121.549815498155,-33.83008854911998],[121.53181531815318,-33.81995708550068],[121.52101521015209,-33.8182685082308],[121.49941499414996,-33.821645662770564],[121.33381333813338,-33.81489135369104],[121.31581315813162,-33.81995708550068],[121.27981279812798,-33.83346570365975],[121.22941229412294,-33.83684285819951],[121.21141211412117,-33.84359716727904],[121.1646116461165,-33.867237249057396],[121.16101161011613,-33.868925826327285],[121.15741157411577,-33.863860094517634],[121.13221132211322,-33.85204005362846],[121.10701107011073,-33.84359716727904],[121.09621096210964,-33.84190859000916],[121.07821078210782,-33.845285744548924],[121.03861038610387,-33.85879436270798],[121.02061020610205,-33.86217151724775],[120.9918099180992,-33.86217151724775],[120.9810098100981,-33.863860094517634],[120.97020970209701,-33.870614403597166],[120.94860948609488,-33.86217151724775],[120.91980919809197,-33.8571057854381],[120.86940869408693,-33.85541720816822],[120.84060840608407,-33.863860094517634],[120.81540815408152,-33.87736871267669],[120.79020790207903,-33.885811599026106],[120.76500765007648,-33.884123021756224],[120.74700747007472,-33.89087733083576],[120.57060570605705,-33.89087733083576],[120.56340563405632,-33.89256590810564],[120.55260552605529,-33.89763163991529],[120.54540545405456,-33.9060745262647],[120.54540545405456,-33.91451741261412],[120.54540545405456,-33.92127172169364],[120.5418054180542,-33.928026030773175],[120.52740527405274,-33.93646891712259],[120.4230042300423,-33.970240462520245],[120.39420394203944,-33.97361761706001],[120.37980379803798,-33.96179757617083],[120.2790027900279,-33.93815749439247],[120.17820178201782,-33.93140318531294],[120.16020160201606,-33.93478033985271],[120.12420124201242,-33.949977535281654],[120.09900099000993,-33.951666112551536],[120.08460084600847,-33.948288958011766],[120.05580055800561,-33.93140318531294],[120.0378003780038,-33.92464887623341],[120.01980019800197,-33.92296029896353],[120.00180001800021,-33.926337453503294],[119.98379983799839,-33.93140318531294],[119.96939969399693,-33.93815749439247],[119.94419944199444,-33.95673184436118],[119.92979929799299,-33.96348615344071],[119.90819908199086,-33.965174730710594],[119.85779857798582,-33.96855188525036],[119.80739807398078,-33.98543765794919],[119.79299792997932,-33.9938805442986],[119.73179731797319,-34.047915016934844],[119.70299702997033,-34.06311221236379],[119.6417964179642,-34.08506371687227],[119.61299612996129,-34.10363806684098],[119.62379623796238,-34.110392375920505],[119.61659616596165,-34.12052383953981],[119.60579605796062,-34.12727814861933],[119.58059580595807,-34.134032457698865],[119.57339573395734,-34.14247534404828],[119.53739537395376,-34.2083298575737],[119.53379533795339,-34.216772743923116],[119.49779497794981,-34.238724248431595],[119.48339483394835,-34.258987175670185],[119.47619476194762,-34.28600441198831],[119.4689946899469,-34.31302164830643],[119.4689946899469,-34.33666173008479],[119.48339483394835,-34.358613234593264],[119.50859508595084,-34.36705612094268],[119.53379533795339,-34.37212185275233],[119.55899558995588,-34.383941893641506],[119.54819548195485,-34.38900762545115],[119.53379533795339,-34.39069620272104],[119.51219512195121,-34.397450511800564],[119.47979479794799,-34.404204820880096],[119.4437944379444,-34.37381043002221],[119.40779407794076,-34.37043327548244],[119.38619386193864,-34.38563047091139],[119.37539375393754,-34.41095912995963],[119.38259382593827,-34.43966494354763],[119.40059400594009,-34.45823929351634],[119.389793897939,-34.463305025325994],[119.36819368193682,-34.48019079802482],[119.36459364593645,-34.485256529834466],[119.36459364593645,-34.49032226164412],[119.36459364593645,-34.49538799345376],[119.35379353793542,-34.49369941618388],[119.35019350193505,-34.49032226164412],[119.33939339393396,-34.47343648894529],[119.33219332193323,-34.45148498443681],[119.31779317793178,-34.444730675357285],[119.29979299793001,-34.446419252627166],[119.28539285392856,-34.4531735617067],[119.27459274592746,-34.459927870786224],[119.2709927099271,-34.46668217986576],[119.26379263792637,-34.48694510710435],[119.26379263792637,-34.508896611612826],[119.26019260192601,-34.522405229771884],[119.24579245792461,-34.527470961581535],[119.23139231392315,-34.53253669339118],[119.22059220592206,-34.53253669339118],[119.2169921699217,-34.524093807041766],[119.21339213392133,-34.51227376615259],[119.20979209792097,-34.503830879803175],[119.2025920259203,-34.49876514799353],[119.18819188191884,-34.49369941618388],[119.17739177391775,-34.492010838914],[119.15939159391593,-34.49538799345376],[119.14859148591489,-34.49369941618388],[119.1377913779138,-34.48863368437423],[119.12339123391234,-34.47512506621517],[119.11619116191162,-34.47174791167541],[118.93258932589328,-34.446419252627166],[118.92178921789218,-34.44810782989705],[118.90378903789036,-34.45655071624646],[118.89658896588969,-34.45823929351634],[118.84618846188465,-34.4531735617067],[118.83898838988392,-34.4531735617067],[118.88218882188823,-34.49032226164412],[118.88938889388896,-34.50045372526341],[118.8749887498875,-34.507208034342945],[118.81018810188101,-34.51396234342247],[118.78858788587888,-34.51902807523212],[118.75258752587524,-34.542668157010475],[118.7417874178742,-34.547733888820126],[118.72738727387275,-34.55786535243942],[118.72378723787239,-34.57812827967801],[118.73098730987311,-34.59839120691661],[118.7561875618756,-34.603456938726254],[118.72378723787239,-34.63553990685403],[118.70578705787057,-34.647359947743205],[118.66618666186662,-34.6574914113625],[118.6337863378634,-34.6777543386011],[118.61218612186121,-34.686197224950504],[118.52218522185223,-34.70308299764933],[118.47898478984791,-34.7165916158084],[118.44298442984433,-34.74023169758675],[118.42858428584287,-34.753740315745816],[118.41058410584105,-34.78920043841335],[118.39618396183965,-34.80608621111218],[118.38898388983893,-34.82634913835077],[118.38898388983893,-34.84661206558936],[118.39978399783996,-34.877006456447255],[118.39978399783996,-34.90064653822561],[118.38538385383856,-34.90908942457502],[118.34218342183425,-34.90571227003526],[118.2629826298263,-34.9107780018449],[118.24498244982453,-34.917532310924436],[118.20178201782016,-34.939483815432915],[118.16938169381694,-34.94286096997268],[118.16218162181622,-34.94623812451244],[118.15858158581585,-34.95636958813174],[118.16578165781658,-34.96143531994139],[118.17658176581767,-34.96312389721127],[118.18018180181804,-34.96650105175104],[118.1945819458195,-34.983386824449866],[118.20178201782016,-35.001961174418575],[118.1981819818198,-35.017158369847515],[118.18018180181804,-35.020535524387284],[118.16938169381694,-35.017158369847515],[118.1189811898119,-34.98676397898963],[118.11178111781118,-34.99351828806916],[118.10458104581045,-34.98676397898963],[118.09378093780941,-34.99351828806916],[118.04338043380437,-35.00702690622822],[118.03258032580328,-35.01209263803787],[118.02538025380255,-35.01378121530775],[118.01818018180182,-35.01546979257763],[118.00738007380073,-35.01378121530775],[117.98937989379897,-35.0087154834981],[117.97857978579788,-35.00702690622822],[117.97137971379715,-35.0087154834981],[117.95337953379533,-35.01378121530775],[117.94617946179466,-35.01546979257763],[117.93897938979393,-35.01378121530775],[117.93537935379356,-35.01040406076799],[117.92817928179284,-35.00702690622822],[117.92097920979211,-35.00702690622822],[117.91737917379174,-35.01040406076799],[117.91017910179102,-35.018846947117396],[117.90657906579065,-35.020535524387284],[117.84897848978488,-35.02560125619693],[117.83457834578348,-35.03066698800658],[117.83097830978312,-35.04586418343552],[117.84537845378458,-35.061061378864466],[117.85977859778598,-35.07119284248376],[117.88857888578889,-35.081324306103056],[117.89937899378992,-35.081324306103056],[117.90297902979029,-35.07288141975364],[117.89937899378992,-35.064438533404235],[117.89577895778962,-35.05430706978493],[117.89217892178925,-35.04586418343552],[117.90297902979029,-35.042487028895756],[117.91737917379174,-35.04755276070541],[117.93537935379356,-35.081324306103056],[117.95337953379533,-35.08976719245247],[117.98937989379897,-35.084701460642826],[118.0001800018,-35.08807861518259],[117.9965799657997,-35.103275810611535],[117.98217982179824,-35.099898656071765],[117.97137971379715,-35.103275810611535],[117.94977949779496,-35.11678442877059],[117.9317793177932,-35.12016158331036],[117.89217892178925,-35.11678442877059],[117.85977859778598,-35.10834154242118],[117.80937809378094,-35.07119284248376],[117.7481774817748,-35.05092991524517],[117.68337683376836,-35.04586418343552],[117.66897668976691,-35.04924133797529],[117.64017640176405,-35.061061378864466],[117.6257762577626,-35.079635728833175],[117.62217622176223,-35.1066529651513],[117.61857618576187,-35.13704735600919],[117.58977589775901,-35.12522731512001],[117.53937539375397,-35.09145576972236],[117.50337503375033,-35.083012883372945],[117.47097470974711,-35.079635728833175],[117.46017460174602,-35.07625857429341],[117.40257402574025,-35.04586418343552],[117.38817388173885,-35.03742129708611],[117.35937359373594,-35.02391267892705],[117.34137341373417,-35.017158369847515],[117.33057330573308,-35.018846947117396],[117.32337323373235,-35.03235556527646],[117.30537305373053,-35.03066698800658],[117.26577265772659,-35.01546979257763],[117.24777247772477,-35.01378121530775],[117.2405724057241,-35.01546979257763],[117.23337233372337,-35.018846947117396],[117.22257222572227,-35.020535524387284],[117.21177211772118,-35.017158369847515],[117.20097200972009,-35.01040406076799],[117.19017190171905,-35.00702690622822],[117.17217172171723,-35.01378121530775],[117.15777157771578,-35.02728983346681],[117.13977139771401,-35.06274995613435],[117.12897128971292,-35.05599564705482],[117.10737107371074,-35.039109874355994],[117.09657096570965,-35.03404414254634],[117.07857078570788,-35.03235556527646],[117.05337053370533,-35.02391267892705],[117.03897038970393,-35.020535524387284],[117.02817028170284,-35.02391267892705],[117.01377013770139,-35.02728983346681],[117.0029700297003,-35.0289784107367],[116.9921699216992,-35.02391267892705],[116.98136981369817,-35.018846947117396],[116.96696966969671,-35.01378121530775],[116.94896948969489,-35.01378121530775],[116.93816938169385,-35.018846947117396],[116.91656916569167,-35.03742129708611],[116.89856898568985,-35.05092991524517],[116.87696876968772,-35.05430706978493],[116.84456844568444,-35.04924133797529],[116.83016830168305,-35.04417560616564],[116.79056790567904,-35.020535524387284],[116.75096750967509,-35.01209263803787],[116.7365673656737,-35.00702690622822],[116.72936729367296,-35.01378121530775],[116.72936729367296,-35.017158369847515],[116.7257672576726,-35.020535524387284],[116.72936729367296,-35.02728983346681],[116.65736657366574,-35.02728983346681],[116.64656646566465,-35.03742129708611],[116.63936639366392,-35.05092991524517],[116.61776617766179,-35.042487028895756],[116.58536585365857,-35.020535524387284],[116.53136531365317,-35.01546979257763],[116.51336513365135,-35.00364975168846],[116.50256502565026,-35.00027259714869],[116.49176491764916,-34.998584019878805],[116.46656466564667,-35.00027259714869],[116.45936459364594,-34.996895442608924],[116.43416434164345,-34.973255360830564],[116.39456394563945,-34.94961527905221],[116.37656376563768,-34.93272950635338],[116.38376383763841,-34.92428662000397],[116.47016470164704,-34.939483815432915],[116.4881648816488,-34.94623812451244],[116.49896498964989,-34.94623812451244],[116.50256502565026,-34.939483815432915],[116.49896498964989,-34.92935235181362],[116.4881648816488,-34.91922088819432],[116.47736477364776,-34.91415515638467],[116.44136441364412,-34.90571227003526],[116.42696426964272,-34.892203651876194],[116.41256412564127,-34.875317879177366],[116.39816398163981,-34.86349783828819],[116.39456394563945,-34.86012068374843],[116.38736387363872,-34.85674352920866],[116.38016380163805,-34.858432106478546],[116.37296372963732,-34.86349783828819],[116.39816398163981,-34.90402369276538],[116.37656376563768,-34.917532310924436],[116.32976329763301,-34.91246657911479],[116.290162901629,-34.897269383685845],[116.24696246962469,-34.877006456447255],[116.09576095760957,-34.83816917923995],[116.02016020160204,-34.829726292890534],[116.00936009360095,-34.829726292890534],[115.99135991359913,-34.834792024700185],[115.97695976959773,-34.834792024700185],[115.97335973359736,-34.829726292890534],[115.97695976959773,-34.81790625200136],[115.98055980559809,-34.80102047930253],[115.97335973359736,-34.78244612933382],[115.94815948159481,-34.75711747028558],[115.93375933759341,-34.72334592488793],[115.9157591575916,-34.70139442037945],[115.88695886958868,-34.6777543386011],[115.74655746557465,-34.54097957974059],[115.61335613356135,-34.446419252627166],[115.57015570155704,-34.42446774811869],[115.5341553415534,-34.41771343903916],[115.52695526955273,-34.41433628449939],[115.519755197552,-34.40589339814998],[115.51255512555127,-34.39576193453068],[115.50895508955091,-34.38731904818127],[115.49815498154982,-34.383941893641506],[115.49095490954909,-34.382253316371624],[115.3361533615336,-34.31471022557631],[115.28935289352893,-34.301201607417255],[115.26415264152644,-34.297824452877485],[115.18495184951848,-34.301201607417255],[115.16335163351636,-34.30964449376667],[115.13815138151381,-34.35017034824385],[115.12015120151204,-34.363678966402915],[115.10935109351095,-34.345104616434206],[115.01935019350196,-34.26236433020995],[115.01215012150124,-34.24547855751112],[115.00855008550087,-34.218461321193],[115.01215012150124,-34.1796240439857],[115.00855008550087,-34.16273827128687],[115.00135001350014,-34.14416392131816],[114.97614976149765,-34.091818025951795],[114.97254972549729,-34.08337513960238],[114.97614976149765,-34.06142363509391],[114.97254972549729,-33.92296029896353],[114.9617496174962,-33.88243444448634],[114.9617496174962,-33.85879436270798],[114.96534965349656,-33.84359716727904],[114.97974979749796,-33.79800558099221],[114.98694986949869,-33.78111980829338],[114.97254972549729,-33.75579114924514],[114.95814958149583,-33.720331026577604],[114.95814958149583,-33.681493749370304],[114.97254972549729,-33.65447651305218],[114.99774997749978,-33.63083643127382],[115.00495004950051,-33.61732781311476],[115.00135001350014,-33.59537630860628],[114.99054990549905,-33.54134183597004],[114.98694986949869,-33.52107890873145],[115.00135001350014,-33.52107890873145],[115.04455044550446,-33.537964681430275],[115.069750697507,-33.563293340478516],[115.09135091350913,-33.5936877313364],[115.12015120151204,-33.615639235844874],[115.15615156151563,-33.6325250085437],[115.19575195751958,-33.644345049432886],[115.23535235352352,-33.65109935851241],[115.2821528215282,-33.65109935851241],[115.32535325353257,-33.644345049432886],[115.36855368553688,-33.63083643127382],[115.40455404554046,-33.61395065857499],[115.43335433354332,-33.59537630860628],[115.51615516155164,-33.51263602238203],[115.5737557375574,-33.42651858161801],[115.60615606156063,-33.369106954442],[115.62055620556208,-33.3201382136154],[115.62775627756281,-33.308318172726224],[115.63855638556385,-33.29987528637681],[115.64575645756457,-33.29987528637681],[115.65655656556567,-33.30494101818646],[115.67815678156785,-33.308318172726224],[115.70335703357034,-33.29649813183705],[115.71055710557107,-33.271169472788806],[115.7069570695707,-33.208692113803146],[115.70335703357034,-33.19180634110432],[115.69615696156961,-33.1934949183742],[115.69255692556925,-33.20531495926338],[115.68535685356852,-33.24077508193092],[115.67455674556749,-33.288055245487634],[115.66735667356676,-33.288055245487634],[115.67095670956712,-33.120886095769244],[115.67455674556749,-33.024637191385935],[115.66015660156603,-32.938519750621914],[115.62415624156245,-32.81187645538071],[115.61335613356135,-32.72913616915646],[115.60255602556026,-32.695364623758806],[115.60255602556026,-32.66159307836115],[115.61335613356135,-32.62275580115385],[115.63135631356317,-32.592361410295965],[115.67455674556749,-32.53494978311995],[115.69975699756998,-32.51299827861148],[115.69255692556925,-32.551835555818776],[115.63855638556385,-32.609247182994785],[115.63855638556385,-32.656527346551506],[115.66735667356676,-32.73082474642634],[115.69255692556925,-32.771350600903524],[115.71415714157143,-32.77979348725294],[115.72135721357216,-32.764596291824],[115.7177571775718,-32.74095621004564],[115.69615696156961,-32.70380751010822],[115.68535685356852,-32.690298891949155],[115.68175681756821,-32.68185600559974],[115.68175681756821,-32.66497023290092],[115.67815678156785,-32.656527346551506],[115.67455674556749,-32.64301872839244],[115.66015660156603,-32.63457584204303],[115.66015660156603,-32.627821532963495],[115.66735667356676,-32.62275580115385],[115.67815678156785,-32.62275580115385],[115.69255692556925,-32.632887264773146],[115.70335703357034,-32.63626441931291],[115.75015750157502,-32.6379529965828],[115.76455764557647,-32.627821532963495],[115.76815768157684,-32.60249287391526],[115.76455764557647,-32.5788527921369],[115.74655746557465,-32.570409905787486],[115.72855728557289,-32.56534417397784],[115.72135721357216,-32.55690128762843],[115.71415714157143,-32.53663836038983],[115.71415714157143,-32.526506896770535],[115.7177571775718,-32.519752587691],[115.72855728557289,-32.50117823772229],[115.73575735757356,-32.49273535137288],[115.74655746557465,-32.45558665143546],[115.74655746557465,-32.41843795149804],[115.73215732157325,-32.388043560640156],[115.7069570695707,-32.36946921067145],[115.73215732157325,-32.34582912889309],[115.73575735757356,-32.33400908800391],[115.72855728557289,-32.3154347380352],[115.71415714157143,-32.30361469714602],[115.68535685356852,-32.29010607898696],[115.67455674556749,-32.27322030628813],[115.72135721357216,-32.27322030628813],[115.73575735757356,-32.26477741993872],[115.74295742957429,-32.242825915430245],[115.74655746557465,-32.22256298819165],[115.75735757357575,-32.18541428825423],[115.75735757357575,-32.16346278374576],[115.75015750157502,-32.15333132012646],[115.73935739357393,-32.1398227019674],[115.73575735757356,-32.1296912383481],[115.73935739357393,-32.114494042919155],[115.74295742957429,-32.10267400202998],[115.73935739357393,-32.0908539611408],[115.72855728557289,-32.073968188441974],[115.72855728557289,-32.055393838473265],[115.74295742957429,-31.92706196596218],[115.72135721357216,-31.77340143440285],[115.69975699756998,-31.6906611481786],[115.68175681756821,-31.648446716431536],[115.60615606156063,-31.54713208023857],[115.55215552155522,-31.433997403156432],[115.4549545495455,-31.30397695337546],[115.38295382953828,-31.133430649117308],[115.31455314553148,-30.99159015844716],[115.23895238952389,-30.878455481365023],[115.18135181351812,-30.82779816326854],[115.16695166951672,-30.76532080428288],[115.16695166951672,-30.755189340663584],[115.16335163351636,-30.741680722504526],[115.10215102151022,-30.633611777232034],[115.09855098550986,-30.62516889088262],[115.0949509495095,-30.604905963644022],[115.06255062550628,-30.52216567741977],[115.05535055350555,-30.505279904720943],[115.05895058950591,-30.468131204783525],[115.05535055350555,-30.447868277544934],[115.03375033750336,-30.370193723130328],[115.02295022950233,-30.33979933227244],[115.01935019350196,-30.33642217773268],[115.01215012150124,-30.324602136843495],[115.00855008550087,-30.31953640503385],[115.01215012150124,-30.31278209595432],[115.01935019350196,-30.302650632335023],[115.02295022950233,-30.29589632325549],[115.02295022950233,-30.27394481874702],[115.02295022950233,-30.262124777857835],[115.01935019350196,-30.25537046877831],[115.01215012150124,-30.248616159698777],[114.99054990549905,-30.2367961188096],[114.98334983349832,-30.23173038699995],[114.97614976149765,-30.21484461430112],[114.97974979749796,-30.19120453252276],[114.98334983349832,-30.167564450744408],[114.98694986949869,-30.14561294623593],[114.98694986949869,-30.135481482616633],[114.97614976149765,-30.115218555378043],[114.97254972549729,-30.091578473599682],[114.9617496174962,-30.08313558725027],[114.95454954549547,-30.074692700900854],[114.94734947349474,-30.066249814551448],[114.94374943749438,-30.03078969188391],[114.96894968949692,-29.90245781937282],[114.96534965349656,-29.88050631486435],[114.9509495094951,-29.84504619219681],[114.94734947349474,-29.829848996767865],[114.94014940149401,-29.74373155600385],[114.94734947349474,-29.65761411523983],[114.9617496174962,-29.579939560825224],[114.97974979749796,-29.522527933649215],[114.98334983349832,-29.502265006410624],[114.97974979749796,-29.480313501902145],[114.95454954549547,-29.42965618380567],[114.94014940149401,-29.3874417520586],[114.93654936549365,-29.36380167028024],[114.93294932949328,-29.34353874304165],[114.92934929349292,-29.328341547612702],[114.91134911349116,-29.292881424945172],[114.8969489694897,-29.233781220499274],[114.8429484294843,-29.108826502527954],[114.8321483214832,-29.091940729829126],[114.65214652146523,-28.91295153922156],[114.64854648546486,-28.902820075602264],[114.61614616146164,-28.857228489315432],[114.60534605346055,-28.838654139346723],[114.59454594545946,-28.798128284869534],[114.57654576545764,-28.784619666710476],[114.59454594545946,-28.747470966773058],[114.59814598145982,-28.701879380486226],[114.5909459094591,-28.656287794199393],[114.52974529745296,-28.52289018987866],[114.50814508145083,-28.490807221750885],[114.42174421744221,-28.4013126264471],[114.3677436774368,-28.3236380720325],[114.36414364143644,-28.308440876603555],[114.35694356943571,-28.29324368117461],[114.31014310143104,-28.23076632218895],[114.29574295742958,-28.220634858569653],[114.259742597426,-28.205437663140714],[114.24534245342454,-28.19192904498165],[114.16614166141665,-28.107500181487516],[114.15534155341555,-28.078794367899505],[114.14814148141483,-28.06866290428021],[114.14814148141483,-28.061908595200684],[114.14454144541446,-28.02813704980303],[114.14454144541446,-28.018005586183733],[114.10494104941051,-27.90487090910159],[114.09774097740979,-27.86265647735452],[114.09774097740979,-27.818753468337576],[114.10134101341015,-27.798490541098978],[114.11934119341197,-27.75965326389168],[114.12294122941228,-27.739390336653088],[114.12654126541264,-27.730947450303674],[114.1409414094141,-27.708995945795195],[114.14454144541446,-27.6988644821759],[114.14454144541446,-27.687044441286723],[114.0761407614076,-27.447266468963377],[114.01134011340116,-27.31555744191253],[113.92493924939248,-27.172028373972502],[113.76293762937632,-26.91874178349009],[113.65493654936552,-26.77521271555006],[113.59013590135902,-26.675586656626983],[113.53253532535325,-26.623240761260625],[113.46413464134645,-26.557386247735195],[113.35613356133564,-26.454383034272354],[113.34173341733418,-26.44256299338317],[113.31293312933133,-26.415545757065047],[113.29853298532987,-26.396971407096338],[113.29853298532987,-26.375019902587866],[113.29133291332914,-26.353068398079387],[113.29853298532987,-26.33955977992033],[113.28413284132841,-26.319296852681738],[113.26973269732696,-26.288902461823845],[113.24453244532447,-26.23993372099725],[113.21213212132125,-26.21460506194901],[113.1761317613176,-26.17745636201159],[113.15813158131584,-26.152127702963348],[113.1617316173162,-26.14030766207417],[113.1869318693187,-26.155504857503118],[113.20853208532088,-26.174079207471827],[113.23013230132301,-26.180833516551353],[113.25893258932592,-26.185899248361004],[113.26253262532629,-26.211227907409246],[113.27693276932769,-26.2348679891876],[113.28053280532805,-26.19771928925018],[113.28413284132841,-26.165636321122413],[113.29133291332914,-26.131864775724758],[113.28773287732878,-26.093027498517458],[113.28413284132841,-26.055878798580032],[113.29133291332914,-26.023795830452265],[113.3057330573306,-25.996778594134142],[113.320133201332,-26.121733312105462],[113.33093330933309,-26.2348679891876],[113.32733327333273,-26.275393843664787],[113.33453334533345,-26.310853966332324],[113.34893348933491,-26.331116893570915],[113.36333363333637,-26.358134129889038],[113.36693366933673,-26.37839705712763],[113.3849338493385,-26.38346278893728],[113.3741337413374,-26.351379820809505],[113.35613356133564,-26.307476811792554],[113.35253352533528,-26.275393843664787],[113.36333363333637,-26.228113680108073],[113.37773377733777,-26.209539330139364],[113.38133381333813,-26.099781807596983],[113.35613356133564,-26.042370180420974],[113.36333363333637,-26.01197578956309],[113.38853388533886,-26.060944530389683],[113.39573395733959,-26.17576778474171],[113.41373413734141,-26.155504857503118],[113.42453424534244,-26.157193434773],[113.45333453334536,-26.15888201204288],[113.44973449734499,-26.20109644378995],[113.46053460534608,-26.22135937102854],[113.46053460534608,-26.250065184616545],[113.47493474934748,-26.26357380277561],[113.47853478534785,-26.2838367300142],[113.48573485734858,-26.30072250271303],[113.49653496534967,-26.327739739031152],[113.5037350373504,-26.376708479857747],[113.48933489334894,-26.400348561636108],[113.4929349293493,-26.434120107033763],[113.47853478534785,-26.472957384241063],[113.48573485734858,-26.479711693320596],[113.50733507335076,-26.469580229701293],[113.50733507335076,-26.434120107033763],[113.50733507335076,-26.410480025255403],[113.51453514535149,-26.393594252556575],[113.52533525335252,-26.354756975349275],[113.51093510935112,-26.312542543602206],[113.51453514535149,-26.295656770903378],[113.51453514535149,-26.273705266394906],[113.52893528935289,-26.266950957315373],[113.54333543335434,-26.287213884553964],[113.55053550535507,-26.30409965725279],[113.55413554135544,-26.324362584491382],[113.56133561335616,-26.353068398079387],[113.55413554135544,-26.38346278893728],[113.56133561335616,-26.412168602525284],[113.56853568535689,-26.44594014792294],[113.5577355773558,-26.47126880697118],[113.56853568535689,-26.48984315693989],[113.56853568535689,-26.52868043414719],[113.56493564935653,-26.56582913408461],[113.58293582935829,-26.56582913408461],[113.59373593735938,-26.55232051592555],[113.59733597335975,-26.538811897766486],[113.59733597335975,-26.518548970527895],[113.60453604536048,-26.5084175069086],[113.62253622536224,-26.48815457967001],[113.61893618936193,-26.469580229701293],[113.61893618936193,-26.44594014792294],[113.6261362613626,-26.439185838843407],[113.64413644136442,-26.481400270590477],[113.64413644136442,-26.499974620559186],[113.64413644136442,-26.52699185687731],[113.64413644136442,-26.54894336138578],[113.63333633336333,-26.57258344316414],[113.6369363693637,-26.587780638593088],[113.62973629736297,-26.597912102212383],[113.64413644136442,-26.602977834022028],[113.66213662136624,-26.601289256752146],[113.66573665736661,-26.61479787491121],[113.66933669336697,-26.635060802149802],[113.66933669336697,-26.65363515211851],[113.68733687336874,-26.65363515211851],[113.68733687336874,-26.631683647610032],[113.69453694536946,-26.61479787491121],[113.71253712537128,-26.60973214310156],[113.73413734137341,-26.601289256752146],[113.75933759337596,-26.596223524942502],[113.77373773737736,-26.587780638593088],[113.78093780937809,-26.601289256752146],[113.81333813338136,-26.599600679482265],[113.81333813338136,-26.564140556814728],[113.83493834938349,-26.554009093195432],[113.85293852938531,-26.54556620684602],[113.87093870938708,-26.521926125067658],[113.88533885338853,-26.493220311479654],[113.8889388893889,-26.46451449789165],[113.88173881738817,-26.42230006614458],[113.87453874538744,-26.398659984366226],[113.88173881738817,-26.37839705712763],[113.88533885338853,-26.34293693446009],[113.86733867338677,-26.319296852681738],[113.84213842138422,-26.295656770903378],[113.81333813338136,-26.266950957315373],[113.78093780937809,-26.24162229826713],[113.74853748537487,-26.23824514372737],[113.68373683736837,-26.22135937102854],[113.68013680136801,-26.20109644378995],[113.68013680136801,-26.184210671091122],[113.66933669336697,-26.165636321122413],[113.64773647736479,-26.13861908480429],[113.6117361173612,-26.09640465305722],[113.57573575735756,-26.089650343977688],[113.5721357213572,-26.05756737584992],[113.56853568535689,-26.037304448611323],[113.57573575735756,-26.00859863502332],[113.56133561335616,-26.000155748673905],[113.55413554135544,-25.9714499350859],[113.5577355773558,-25.941055544228014],[113.51813518135185,-25.919104039719535],[113.52533525335252,-25.892086803401412],[113.51813518135185,-25.87013529889294],[113.51093510935112,-25.853249526194112],[113.50013500135003,-25.843118062574817],[113.48933489334894,-25.82792086714587],[113.47493474934748,-25.817789403526575],[113.46773467734681,-25.80428078536751],[113.46773467734681,-25.792460744478333],[113.46053460534608,-25.777263549049387],[113.44613446134463,-25.76544350816021],[113.42093420934208,-25.728294808222792],[113.41373413734141,-25.70127757190467],[113.41733417334177,-25.681014644666078],[113.42093420934208,-25.653997408347955],[113.43533435334353,-25.633734481109357],[113.45333453334536,-25.60334009025147],[113.46413464134645,-25.572945699393586],[113.48933489334894,-25.545928463075462],[113.5037350373504,-25.513845494947688],[113.51453514535149,-25.508779763138044],[113.51813518135185,-25.54086273126581],[113.52533525335252,-25.57801143120323],[113.52173521735216,-25.60165151298159],[113.53253532535325,-25.618537285680418],[113.54693546935471,-25.616848708410537],[113.55413554135544,-25.6202258629503],[113.56133561335616,-25.632045903839476],[113.58293582935829,-25.632045903839476],[113.59373593735938,-25.66581744923713],[113.60813608136084,-25.70465472644443],[113.62973629736297,-25.736737694572206],[113.66213662136624,-25.750246312731264],[113.67653676536764,-25.780640703589157],[113.70173701737019,-25.792460744478333],[113.72693726937268,-25.795837899018096],[113.72333723337232,-25.82792086714587],[113.71613716137165,-25.84649521711458],[113.72333723337232,-25.86675814435317],[113.72693726937268,-25.873512453432703],[113.7449374493745,-25.880266762512235],[113.7557375573756,-25.88533249432188],[113.75933759337596,-25.905595421560477],[113.75213752137523,-25.920792616989417],[113.73413734137341,-25.935989812418363],[113.73773737737378,-25.954564162387072],[113.73773737737378,-25.984958553244965],[113.73053730537305,-26.006910057753437],[113.71973719737201,-26.03223871680168],[113.72333723337232,-26.049124489500507],[113.71613716137165,-26.07783030308851],[113.71253712537128,-26.121733312105462],[113.70533705337056,-26.148750548423585],[113.72693726937268,-26.180833516551353],[113.72693726937268,-26.19771928925018],[113.76293762937632,-26.19771928925018],[113.76653766537669,-26.209539330139364],[113.79533795337954,-26.206162175599594],[113.84933849338495,-26.121733312105462],[113.86733867338677,-26.079518880358393],[113.8781387813878,-26.044058757690856],[113.8637386373864,-26.000155748673905],[113.8637386373864,-25.988335707784728],[113.85293852938531,-25.9714499350859],[113.84933849338495,-25.961318471466605],[113.85293852938531,-25.94780985330754],[113.85293852938531,-25.944432698767777],[113.86013860138604,-25.94612127603766],[113.8637386373864,-25.94780985330754],[113.88533885338853,-25.95118700784731],[113.91053910539108,-25.97651566689555],[113.90693906939072,-25.998467171404023],[113.90333903339035,-26.03223871680168],[113.91053910539108,-26.089650343977688],[113.90693906939072,-26.12004473483558],[113.92853928539284,-26.13861908480429],[113.94653946539466,-26.14030766207417],[113.93573935739357,-26.190964980170648],[113.9429394293943,-26.228113680108073],[113.95733957339576,-26.26019664823584],[113.95733957339576,-26.2838367300142],[113.96453964539648,-26.309165389062443],[113.97173971739716,-26.331116893570915],[114.0221402214022,-26.390217098016812],[114.06894068940693,-26.435808684303645],[114.08694086940869,-26.44762872519282],[114.10494104941051,-26.44762872519282],[114.12294122941228,-26.429054375224112],[114.14454144541446,-26.413857179795166],[114.15534155341555,-26.393594252556575],[114.18414184141841,-26.3817742116674],[114.2057420574206,-26.375019902587866],[114.21654216542169,-26.34462551172998],[114.23454234542345,-26.31591969814197],[114.22014220142205,-26.273705266394906],[114.2057420574206,-26.246688030076783],[114.19854198541987,-26.21798221648877],[114.19134191341914,-26.1960307119803],[114.19854198541987,-26.167324898392295],[114.2057420574206,-26.147061971153704],[114.21654216542169,-26.104847539406634],[114.22374223742236,-26.101470384866865],[114.22734227342272,-26.087961766707807],[114.22734227342272,-26.07445314854874],[114.22734227342272,-26.064321684929446],[114.21654216542169,-26.042370180420974],[114.19134191341914,-26.003532903213674],[114.18774187741877,-25.978204244165433],[114.19134191341914,-25.9714499350859],[114.19854198541987,-25.97651566689555],[114.21294212942132,-25.993401439594372],[114.22014220142205,-25.996778594134142],[114.23094230942309,-25.996778594134142],[114.24534245342454,-25.993401439594372],[114.25614256142563,-25.99002428505461],[114.259742597426,-25.988335707784728],[114.26694266942673,-25.99002428505461],[114.259742597426,-25.9714499350859],[114.2489424894249,-25.961318471466605],[114.23814238142381,-25.949498430577428],[114.23454234542345,-25.92754692606895],[114.24174241742418,-25.90897257610024],[114.25614256142563,-25.88533249432188],[114.26334263342636,-25.861692412543526],[114.259742597426,-25.841429485304936],[114.24174241742418,-25.829609444415752],[114.19134191341914,-25.80259220809763],[114.15534155341555,-25.78908358993857],[114.14814148141483,-25.773886394509624],[114.14454144541446,-25.757000621810796],[114.13374133741337,-25.750246312731264],[114.13734137341373,-25.733360540032443],[114.130141301413,-25.714786190063727],[114.1157411574116,-25.70127757190467],[114.10134101341015,-25.694523262825136],[114.09774097740979,-25.691146108285373],[114.09414094140942,-25.670883181046783],[114.08694086940869,-25.667506026507013],[114.05094050940511,-25.647243099268422],[114.04014040140402,-25.633734481109357],[114.01494014940153,-25.569568544853816],[113.95013950139503,-25.488516835899446],[113.92853928539284,-25.449679558692146],[113.8637386373864,-25.302773336212354],[113.85653856538568,-25.280821831703875],[113.85293852938531,-25.263936059005047],[113.81693816938173,-25.20821300909892],[113.809738097381,-25.182884350050678],[113.80253802538027,-25.1710643091615],[113.78813788137882,-25.160932845542206],[113.74853748537487,-25.137292763763845],[113.71253712537128,-25.12547272287467],[113.6909369093691,-25.10520979563608],[113.67653676536764,-25.081569713857718],[113.66933669336697,-25.047798168460062],[113.65493654936552,-25.02584666395159],[113.65133651336515,-25.005583736713],[113.64413644136442,-24.993763695823816],[113.64413644136442,-24.985320809474402],[113.64773647736479,-24.976877923124988],[113.66213662136624,-24.96336930496593],[113.66573665736661,-24.954926418616516],[113.66573665736661,-24.932974914108044],[113.65853658536588,-24.912711986869446],[113.64053640536406,-24.89582621417062],[113.6117361173612,-24.892449059630856],[113.60813608136084,-24.872186132392265],[113.60453604536048,-24.850234627883786],[113.60453604536048,-24.829971700645196],[113.61533615336157,-24.81477450521625],[113.62253622536224,-24.79620015524754],[113.61893618936193,-24.770871496199298],[113.6117361173612,-24.745542837151064],[113.60453604536048,-24.728657064452236],[113.54333543335434,-24.644228200958096],[113.4389343893439,-24.53278210114584],[113.41733417334177,-24.497321978478304],[113.39933399333995,-24.458484701271004],[113.39213392133922,-24.412893114984172],[113.3849338493385,-24.249101119805545],[113.38853388533886,-24.227149615297073],[113.39573395733959,-24.213640997138008],[113.42093420934208,-24.190000915359654],[113.43173431734317,-24.169737988121064],[113.43173431734317,-24.147786483612585],[113.42093420934208,-24.103883474595634],[113.41373413734141,-24.070111929197985],[113.41373413734141,-24.049849001959387],[113.42093420934208,-24.03296322926056],[113.43533435334353,-24.021143188371383],[113.44613446134463,-24.007634570212325],[113.45693456934572,-23.990748797513497],[113.46053460534608,-23.967108715735137],[113.46053460534608,-23.945157211226665],[113.45693456934572,-23.926582861257955],[113.46053460534608,-23.909697088559128],[113.4929349293493,-23.87254838862171],[113.5037350373504,-23.85228546138311],[113.52533525335252,-23.764479443349217],[113.53973539735398,-23.74928224792027],[113.5577355773558,-23.742527938840738],[113.60093600936011,-23.634458993568245],[113.60453604536048,-23.62432752994895],[113.6117361173612,-23.620950375409187],[113.61893618936193,-23.617573220869417],[113.6261362613626,-23.612507489059773],[113.62973629736297,-23.60068744817059],[113.6369363693637,-23.597310293630827],[113.66213662136624,-23.58549025274165],[113.68373683736837,-23.580424520932],[113.68733687336874,-23.570293057312703],[113.69453694536946,-23.558473016423527],[113.70173701737019,-23.550030130074113],[113.73773737737378,-23.526390048295752],[113.74853748537487,-23.511192852866806],[113.7557375573756,-23.48586419381857],[113.7557375573756,-23.47910988473904],[113.76653766537669,-23.465601266579974],[113.77013770137705,-23.45715838023056],[113.77013770137705,-23.389615289435255],[113.78093780937809,-23.349089434958067],[113.78093780937809,-23.327137930449595],[113.77013770137705,-23.241020489685575],[113.75213752137523,-23.180231707969803],[113.74853748537487,-23.161657358001086],[113.75213752137523,-23.138017276222733],[113.7557375573756,-23.127885812603438],[113.75933759337596,-23.119442926254024],[113.76653766537669,-23.11100003990461],[113.77733777337772,-23.104245730825077],[113.78813788137882,-23.097491421745545],[113.80613806138064,-23.075539917237073],[113.809738097381,-23.051899835458713],[113.80613806138064,-22.930322272027162],[113.80253802538027,-22.89992788116927],[113.78453784537845,-22.874599222121034],[113.77373773737736,-22.852647717612555],[113.75933759337596,-22.788481781357014],[113.71253712537128,-22.7412016178003],[113.70173701737019,-22.73613588599065],[113.6909369093691,-22.731070154181005],[113.67653676536764,-22.727692999641235],[113.65853658536588,-22.727692999641235],[113.67293672936728,-22.690544299703816],[113.67293672936728,-22.668592795195345],[113.66213662136624,-22.648329867956747],[113.65853658536588,-22.64157555887722],[113.65853658536588,-22.607804013479566],[113.65493654936552,-22.5942953953205],[113.65133651336515,-22.585852508971087],[113.64773647736479,-22.577409622621673],[113.65133651336515,-22.562212427192733],[113.66213662136624,-22.55376954084332],[113.68373683736837,-22.543638077224024],[113.69453694536946,-22.53519519087461],[113.71613716137165,-22.49129218185766],[113.73053730537305,-22.479472140968483],[113.73413734137341,-22.47102925461907],[113.74133741337414,-22.425437668332236],[113.74853748537487,-22.401797586553876],[113.75933759337596,-22.383223236585167],[113.79173791737918,-22.34776311391763],[113.80253802538027,-22.3308773412188],[113.88533885338853,-22.111362296134054],[113.89253892538926,-22.089410791625575],[113.89253892538926,-22.069147864386984],[113.89973899738999,-22.048884937148394],[113.92133921339212,-22.013424814480857],[113.94653946539466,-21.952636032765078],[114.01134011340116,-21.85976428292153],[114.03654036540365,-21.837812778413053],[114.06894068940693,-21.819238428444343],[114.08694086940869,-21.81248411936481],[114.10854108541088,-21.809106964825048],[114.12654126541264,-21.804041233015397],[114.14454144541446,-21.79559834666599],[114.15894158941592,-21.79222119212622],[114.17334173341732,-21.802352655745516],[114.17694176941768,-21.822615582984113],[114.16614166141665,-21.83443562387329],[114.15174151741519,-21.846255664762467],[114.14454144541446,-21.861452860191413],[114.1409414094141,-21.880027210160122],[114.12654126541264,-21.922241641907192],[114.09774097740979,-22.106296564324403],[114.08334083340833,-22.14006810972206],[114.0761407614076,-22.175528232389595],[114.09414094140942,-22.20929977778725],[114.10134101341015,-22.22280839594631],[114.11934119341197,-22.259957095883728],[114.12294122941228,-22.275154291312674],[114.11214112141124,-22.312302991250093],[114.10854108541088,-22.3308773412188],[114.12294122941228,-22.335943073028453],[114.130141301413,-22.32581160940915],[114.13734137341373,-22.30723725944044],[114.14814148141483,-22.293728641281383],[114.16614166141665,-22.302171527630797],[114.16974169741701,-22.317368723059744],[114.16974169741701,-22.337631650298334],[114.16254162541628,-22.356206000267044],[114.15174151741519,-22.357894577536925],[114.12294122941228,-22.38828896839481],[114.11934119341197,-22.398420432014113],[114.11934119341197,-22.413617627443053],[114.12654126541264,-22.438946286491294],[114.11214112141124,-22.477783563698594],[114.12294122941228,-22.504800800016717],[114.14814148141483,-22.521686572715545],[114.18054180541804,-22.521686572715545],[114.1949419494195,-22.508177954556487],[114.2057420574206,-22.486226450048008],[114.22014220142205,-22.4676521000793],[114.25254252542527,-22.459209213729885],[114.26334263342636,-22.455832059190122],[114.2741427414274,-22.44738917284071],[114.28494284942849,-22.444012018300945],[114.29934299342995,-22.44907775011059],[114.30654306543067,-22.462586368269655],[114.31014310143104,-22.476094986428713],[114.32094320943213,-22.487915027317896],[114.3389433894339,-22.494669336397422],[114.35694356943571,-22.486226450048008],[114.3677436774368,-22.477783563698594],[114.37134371343717,-22.465963522809417],[114.37134371343717,-22.442323441031057],[114.37494374943748,-22.43388055468165],[114.3821438214382,-22.413617627443053],[114.38574385743857,-22.401797586553876],[114.38574385743857,-22.379846082045404],[114.3929439294393,-22.357894577536925],[114.42174421744221,-22.298794373091027],[114.42894428944288,-22.271777136772904],[114.43974439744397,-22.24475990045478],[114.44334443344434,-22.238005591375256],[114.46854468544689,-22.20592262324748],[114.46854468544689,-22.194102582358305],[114.46494464944652,-22.18059396419924],[114.46854468544689,-22.172151077849826],[114.47574475744756,-22.168773923310063],[114.48654486544865,-22.16708534604018],[114.49734497344974,-22.16370819150041],[114.50454504545047,-22.126559491562993],[114.52254522545229,-22.089410791625575],[114.52254522545229,-22.069147864386984],[114.51894518945193,-22.06070497803757],[114.50814508145083,-22.048884937148394],[114.5009450094501,-22.04213062806886],[114.5009450094501,-22.03537631898933],[114.49734497344974,-22.01680196902062],[114.49734497344974,-22.004981928131443],[114.50454504545047,-21.99653904178203],[114.51894518945193,-22.011736237210975],[114.54054540545405,-22.031999164449566],[114.55134551345515,-22.04213062806886],[114.59814598145982,-21.95601318730484],[114.61254612546128,-21.925618796446955],[114.61254612546128,-21.923930219177073],[114.61614616146164,-21.923930219177073],[114.619746197462,-21.922241641907192],[114.62334623346237,-21.918864487367422],[114.62694626946268,-21.913798755557778],[114.63054630546304,-21.89860156012883],[114.63774637746377,-21.858075705651643],[114.6449464494645,-21.842878510222704],[114.67014670146705,-21.837812778413053],[114.67734677346772,-21.83443562387329],[114.69174691746917,-21.817549851174462],[114.6989469894699,-21.809106964825048],[114.7781477814778,-21.782089728506925],[114.92934929349292,-21.694283710473023],[114.96894968949692,-21.682463669583846],[115.00855008550087,-21.69259513320314],[115.05535055350555,-21.675709360504314],[115.06615066150664,-21.66895505142478],[115.07695076950773,-21.660512165075367],[115.08775087750877,-21.65206927872596],[115.09855098550986,-21.65206927872596],[115.10575105751059,-21.66557789688502],[115.22455224552249,-21.598034806089714],[115.4549545495455,-21.513605942595575],[115.48015480154805,-21.5017859017064],[115.48735487354872,-21.48321155173769],[115.49455494554945,-21.46632577903886],[115.50895508955091,-21.449440006340033],[115.53775537755376,-21.42411134729179],[115.60255602556026,-21.343059638337422],[115.62775627756281,-21.32279671109883],[115.6637566375664,-21.29746805205059],[115.80775807758079,-21.23499069306493],[115.81855818558188,-21.226547806715516],[115.82935829358297,-21.191087684047986],[115.85815858158583,-21.15562756138044],[115.87615876158765,-21.11510170690326],[115.9049590495905,-21.084707316045368],[115.93735937359372,-21.059378656997126],[115.9589595895959,-21.04755861610795],[115.97335973359736,-21.044181461568186],[116.0237602376024,-21.022229957059707],[116.05616056160562,-21.01040991617053],[116.07056070560708,-21.003655607091005],[116.08496084960848,-20.993524143471703],[116.12096120961212,-20.986769834392177],[116.14976149761497,-20.96988406169335],[116.17496174961752,-20.94286682537522],[116.18936189361892,-20.904029548167927],[116.18936189361892,-20.858437961881094],[116.19656196561965,-20.846617920991903],[116.21816218162184,-20.84324076645214],[116.22896228962293,-20.846617920991903],[116.24696246962469,-20.855060807341317],[116.26496264962651,-20.861815116420857],[116.290162901629,-20.86350369369073],[116.30816308163082,-20.855060807341317],[116.33336333363337,-20.833109302832852],[116.34776347763477,-20.8280435710232],[116.39096390963908,-20.8280435710232],[116.43416434164345,-20.82297783921355],[116.45216452164522,-20.814534952864136],[116.48096480964813,-20.792583448355657],[116.49176491764916,-20.78751771654602],[116.49896498964989,-20.78582913927613],[116.50616506165062,-20.78076340746648],[116.51336513365135,-20.774009098386955],[116.52056520565208,-20.7503690166086],[116.53136531365317,-20.746991862068825],[116.54936549365493,-20.746991862068825],[116.58536585365857,-20.735171821179648],[116.70056700567005,-20.659185844034937],[116.74376743767436,-20.616971412287867],[116.779767797678,-20.55955978511186],[116.79776797767977,-20.549428321492556],[116.79056790567904,-20.534231126063617],[116.8049680496805,-20.529165394253965],[116.81576815768159,-20.527476816984077],[116.82296822968232,-20.527476816984077],[116.83376833768341,-20.53085397152384],[116.84456844568444,-20.53591970333349],[116.84456844568444,-20.539296857873254],[116.83376833768341,-20.540985435143142],[116.81936819368195,-20.549428321492556],[116.81576815768159,-20.569691248731147],[116.81216812168122,-20.610217103208328],[116.8049680496805,-20.61865998955774],[116.78696786967873,-20.633857184986695],[116.78336783367837,-20.643988648605983],[116.78336783367837,-20.65749726676505],[116.78696786967873,-20.664251575844574],[116.83736837368377,-20.70477743032177],[116.85536855368554,-20.711531739401295],[116.88056880568809,-20.713220316671183],[116.89856898568985,-20.708154584861532],[116.92016920169203,-20.69802312124223],[116.94176941769416,-20.686203080353053],[116.94896948969489,-20.67607161673375],[116.95616956169562,-20.66762873038435],[117.06417064170643,-20.622037144097504],[117.07137071370715,-20.62034856682763],[117.08937089370897,-20.633857184986695],[117.09657096570965,-20.637234339526458],[117.10737107371074,-20.63554576225657],[117.11817118171183,-20.63048003044692],[117.14337143371432,-20.606839948668565],[117.15417154171541,-20.596708485049277],[117.16137161371614,-20.596708485049277],[117.16857168571687,-20.603462794128802],[117.16857168571687,-20.610217103208328],[117.16857168571687,-20.61528283501798],[117.16857168571687,-20.623725721367393],[117.16137161371614,-20.638922916796332],[117.16137161371614,-20.643988648605983],[117.16137161371614,-20.649054380415635],[117.17217172171723,-20.659185844034937],[117.1757717577176,-20.66087442130481],[117.18297182971833,-20.672694462193988],[117.19737197371973,-20.684514503083165],[117.27297272972731,-20.713220316671183],[117.31257312573126,-20.72335178029047],[117.35217352173521,-20.728417512100123],[117.43857438574389,-20.72335178029047],[117.51417514175142,-20.706466007591644],[117.54297542975434,-20.69295738943258],[117.57897578975792,-20.66762873038435],[117.60417604176041,-20.65749726676505],[117.62217622176223,-20.66087442130481],[117.63657636576369,-20.672694462193988],[117.65097650976509,-20.672694462193988],[117.66177661776618,-20.66087442130481],[117.66537665376654,-20.65749726676505],[117.66897668976691,-20.66087442130481],[117.67617676176764,-20.66762873038435],[117.67617676176764,-20.672694462193988],[117.69057690576909,-20.66762873038435],[117.73017730177304,-20.650742957685523],[117.73737737377377,-20.659185844034937],[117.7481774817748,-20.649054380415635],[117.78777787777881,-20.63554576225657],[117.80937809378094,-20.623725721367393],[117.83097830978312,-20.62034856682763],[117.83817838178385,-20.616971412287867],[117.84897848978488,-20.606839948668565],[117.85977859778598,-20.584888444160086],[117.8669786697867,-20.576445557810672],[117.8777787777878,-20.564625516921495],[117.88497884978852,-20.56293693965162],[117.91017910179102,-20.55955978511186],[117.91737917379174,-20.554494053302207],[117.9317793177932,-20.53760828060338],[117.93537935379356,-20.529165394253965],[117.9317793177932,-20.51059104428525],[117.93537935379356,-20.50045958066596],[117.93897938979393,-20.492016694316547],[118.13698136981372,-20.361996244535575],[118.15138151381512,-20.356930512725924],[118.16218162181622,-20.35355335818616],[118.16938169381694,-20.3501762036464],[118.17658176581767,-20.34848762637651],[118.18738187381877,-20.34848762637651],[118.19098190981913,-20.35524193545605],[118.19098190981913,-20.365373399075338],[118.1945819458195,-20.372127708154878],[118.20898208982089,-20.363684821805464],[118.23058230582308,-20.372127708154878],[118.24858248582484,-20.365373399075338],[118.2629826298263,-20.35524193545605],[118.28098280982812,-20.34848762637651],[118.29178291782921,-20.346799049106636],[118.31338313383134,-20.338356162757222],[118.32058320583207,-20.33497900821746],[118.33498334983352,-20.338356162757222],[118.33858338583389,-20.346799049106636],[118.34218342183425,-20.35524193545605],[118.35298352983529,-20.363684821805464],[118.36738367383674,-20.361996244535575],[118.41058410584105,-20.346799049106636],[118.55098550985508,-20.321470390058394],[118.55458554585545,-20.32315896732827],[118.56538565385654,-20.321470390058394],[118.5689856898569,-20.319781812788506],[118.57258572585727,-20.31809323551863],[118.57618576185763,-20.316404658248743],[118.60498604986049,-20.309650349169218],[118.61578615786158,-20.30796177189933],[118.62658626586267,-20.309650349169218],[118.6337863378634,-20.31302750370898],[118.64098640986413,-20.31809323551863],[118.64818648186485,-20.321470390058394],[118.66258662586625,-20.32315896732827],[118.68058680586807,-20.32315896732827],[118.7021870218702,-20.31809323551863],[118.73818738187384,-20.29276457647039],[118.75978759787597,-20.28769884466074],[118.78498784987852,-20.28601026739085],[118.80658806588065,-20.280944535581213],[118.8317883178832,-20.262370185612497],[118.85338853388532,-20.237041526564255],[118.88218882188823,-20.184695631197897],[118.95778957789577,-20.10364392224352],[118.96858968589686,-20.071560954115753],[118.97578975789759,-20.049609449607274],[118.98658986589868,-20.04116656325786],[119.00099000990014,-20.034412254178335],[119.01539015390154,-20.024280790559033],[119.04779047790481,-20.014149326939744],[119.05499054990548,-20.009083595130093],[119.06219062190621,-20.00064070878068],[119.06579065790658,-19.990509245161377],[119.06939069390694,-19.982066358811963],[119.09459094590949,-19.966869163383024],[119.11979119791198,-19.971934895192675],[119.16299162991629,-20.007395017860205],[119.15939159391593,-19.98037778154209],[119.16299162991629,-19.966869163383024],[119.17379173791738,-19.960114854303498],[119.1917919179192,-19.95842627703361],[119.21339213392133,-19.961803431573372],[119.29259292592928,-19.98544351335174],[119.33219332193323,-19.992197822431265],[119.35739357393572,-19.993886399701154],[119.37539375393754,-19.995574976971028],[119.41859418594186,-20.010772172399967],[119.43659436594368,-20.014149326939744],[119.4437944379444,-20.010772172399967],[119.4581945819458,-20.00064070878068],[119.46179461794617,-20.00064070878068],[119.47259472594726,-20.00570644059033],[119.47979479794799,-20.014149326939744],[119.47979479794799,-20.02259221328916],[119.48699486994872,-20.031035099638572],[119.5229952299523,-20.052986604147037],[119.54819548195485,-20.06311806776634],[119.56619566195661,-20.06818379957599],[119.59139591395916,-20.066495222306102],[119.62379623796238,-20.04623229506751],[119.63819638196384,-20.04116656325786],[119.6417964179642,-20.037789408718098],[119.66339663396633,-20.010772172399967],[119.67059670596706,-20.009083595130093],[119.69219692196924,-20.014149326939744],[119.70299702997033,-20.014149326939744],[119.71739717397173,-20.004017863320442],[119.71739717397173,-19.993886399701154],[119.71739717397173,-19.98375493608185],[119.71739717397173,-19.97362347246255],[119.73539735397355,-19.96349200884326],[119.75699756997574,-19.961803431573372],[119.80379803798041,-19.965180586113135],[119.90819908199086,-19.946606236144433],[120.07020070200701,-19.92127757709619],[120.23940239402395,-19.906080381667252],[120.36900369003689,-19.867243104459945],[120.649806498065,-19.762551313727215],[120.80460804608049,-19.69838537747168],[120.95580955809561,-19.634219441216132],[121.12861128611286,-19.521084764133988],[121.1646116461165,-19.48393606419657],[121.1790117901179,-19.480558909656807],[121.19341193411935,-19.472116023307393],[121.31221312213125,-19.353915614415598],[121.4166141661417,-19.222206587364752],[121.52101521015209,-19.070234633075316],[121.5390153901539,-19.012823005899293],[121.55701557015573,-18.98918292412094],[121.56421564215646,-18.975674305961874],[121.56781567815682,-18.955411378723284],[121.56781567815682,-18.945279915103995],[121.57501575015749,-18.935148451484693],[121.58941589415895,-18.921639833325628],[121.59661596615967,-18.91150836970634],[121.61101611016113,-18.86422820614962],[121.63261632616326,-18.823702351672438],[121.64341643416435,-18.810193733513373],[121.64701647016471,-18.78655365173502],[121.65061650616508,-18.776422188115717],[121.64701647016471,-18.762913569956666],[121.63981639816399,-18.754470683607252],[121.6290162901629,-18.747716374527712],[121.62181621816217,-18.7392734881783],[121.6146161461615,-18.712256251860182],[121.62541625416253,-18.710567674590294],[121.64341643416435,-18.717321983669834],[121.66141661416617,-18.715633406399945],[121.6686166861669,-18.70887909732042],[121.67941679416793,-18.705501942780643],[121.71541715417158,-18.70381336551077],[121.72261722617225,-18.698747633701117],[121.76941769417698,-18.658221779223936],[121.77661776617765,-18.64133600652511],[121.78021780217802,-18.61938450201663],[121.77301773017729,-18.605875883857564],[121.76221762217625,-18.59743299750815],[121.73341733417334,-18.580547224809322],[121.75861758617589,-18.560284297570732],[121.77301773017729,-18.545087102141792],[121.79821798217984,-18.487675474965783],[121.81261812618129,-18.46234681591754],[121.82341823418233,-18.45221535229824],[121.83781837818378,-18.455592506838002],[121.85221852218524,-18.464035393187416],[121.8666186661867,-18.470789702266956],[121.88821888218882,-18.47247827953683],[121.90981909819101,-18.464035393187416],[122.02142021420218,-18.384672261502942],[122.04302043020431,-18.361032179724575],[122.0538205382054,-18.330637788866696],[122.06102061020613,-18.320506325247393],[122.12222122221226,-18.293489088929263],[122.14382143821439,-18.279980470770212],[122.15822158221584,-18.263094698071384],[122.18342183421834,-18.225945998133966],[122.1870218702187,-18.22932315267373],[122.19062190621906,-18.23438888448338],[122.19782197821979,-18.239454616293017],[122.21222212222125,-18.210748802705012],[122.21942219422198,-18.19724018454596],[122.2518225182252,-18.18710872092666],[122.32382323823242,-18.14996002098924],[122.34542345423455,-18.121254207401236],[122.36342363423637,-18.08748266200358],[122.3706237062371,-18.063842580225227],[122.36702367023673,-18.02669388028781],[122.359823598236,-17.99967664396968],[122.34542345423455,-17.98279087127085],[122.31302313023133,-17.970970830381674],[122.28422284222842,-17.96421652130215],[122.24822248222483,-17.96083936676237],[122.21582215822161,-17.969282253111786],[122.19782197821979,-17.997988066699804],[122.19062190621906,-17.997988066699804],[122.1870218702187,-17.991233757620265],[122.18342183421834,-17.986168025810613],[122.17622176221761,-17.98279087127085],[122.16902169021694,-17.9777251394612],[122.19782197821979,-17.945642171333432],[122.20862208622088,-17.911870625935777],[122.20862208622088,-17.873033348728484],[122.19422194221943,-17.805490257933172],[122.19782197821979,-17.743012898947512],[122.19782197821979,-17.73288143532821],[122.20502205022052,-17.72274997170892],[122.20502205022052,-17.710929930819745],[122.20142201422016,-17.700798467200443],[122.1870218702187,-17.683912694501615],[122.17622176221761,-17.663649767263024],[122.1726217262173,-17.65351830364372],[122.16902169021694,-17.62818964459548],[122.15462154621548,-17.5977952537376],[122.15462154621548,-17.5876637901183],[122.14382143821439,-17.57246659468936],[122.14382143821439,-17.564023708339946],[122.14022140221402,-17.459331917607216],[122.15102151021512,-17.341131508715435],[122.16542165421657,-17.29553992242859],[122.1726217262173,-17.261768377030947],[122.17982179821797,-17.24488260433212],[122.19062190621906,-17.231373986173054],[122.20862208622088,-17.22461967709353],[122.21582215822161,-17.211111058934463],[122.26622266222665,-17.150322277218677],[122.28062280622805,-17.1385022363295],[122.27342273422738,-17.128370772710213],[122.26262262622629,-17.126682195440324],[122.25542255422556,-17.121616463630673],[122.26622266222665,-17.101353536392082],[122.27702277022769,-17.089533495502906],[122.41382413824141,-16.973021663881],[122.449824498245,-16.95107015937252],[122.44622446224463,-16.969644509341236],[122.449824498245,-16.981464550230413],[122.46422464224645,-16.9831531275003],[122.47862478624785,-16.97133308661111],[122.48222482224821,-16.949381582102646],[122.47502475024748,-16.932495809403818],[122.47142471424718,-16.92067576851464],[122.48942489424894,-16.91561003670499],[122.50742507425076,-16.918987191244753],[122.51462514625149,-16.929118654864055],[122.52182521825222,-16.940938695753232],[122.52902529025289,-16.954447313912283],[122.54342543425435,-16.961201622991823],[122.59382593825939,-16.97133308661111],[122.5830258302583,-16.95613589118217],[122.56142561425617,-16.90885572762545],[122.52902529025289,-16.87339560495792],[122.52542525425253,-16.861575564068744],[122.52902529025289,-16.849755523179567],[122.53262532625325,-16.844689791369916],[122.53622536225362,-16.839624059560265],[122.53982539825398,-16.834558327750614],[122.54342543425435,-16.83793548229039],[122.54702547025471,-16.839624059560265],[122.55062550625507,-16.83793548229039],[122.55422554225544,-16.83118117321085],[122.55422554225544,-16.817672555051786],[122.55422554225544,-16.814295400512023],[122.56142561425617,-16.799098205083084],[122.57222572225726,-16.78896674146378],[122.5830258302583,-16.778835277844493],[122.60102601026011,-16.772080968764953],[122.60822608226084,-16.787278164193907],[122.61542615426157,-16.79572105054332],[122.6262262622626,-16.800786782352958],[122.64422644226443,-16.800786782352958],[122.65142651426515,-16.797409627813195],[122.66582665826661,-16.78896674146378],[122.67302673026734,-16.787278164193907],[122.69822698226983,-16.787278164193907],[122.70542705427056,-16.787278164193907],[122.71982719827201,-16.778835277844493],[122.73062730627305,-16.76870381422519],[122.74142741427414,-16.761949505145665],[122.75942759427596,-16.758572350605903],[122.77382773827742,-16.761949505145665],[122.8206282062821,-16.780523855114367],[122.76302763027633,-16.729866537017898],[122.7450274502745,-16.702849300699768],[122.7450274502745,-16.669077755302112],[122.74862748627487,-16.662323446222587],[122.7558275582756,-16.647126250793633],[122.75942759427596,-16.63868336444422],[122.75942759427596,-16.604911819046578],[122.76302763027633,-16.594780355427275],[122.77022770227705,-16.579583159998336],[122.78462784627845,-16.56607454183927],[122.79542795427955,-16.559320232759745],[122.82422824228246,-16.562697387299508],[122.83862838628386,-16.56100881002962],[122.84942849428495,-16.552565923680206],[122.85662856628568,-16.54074588279103],[122.86022860228604,-16.527237264631964],[122.87102871028713,-16.517105801012676],[122.88542885428853,-16.512040069203024],[122.89622896228963,-16.491777141964434],[122.90342903429035,-16.451251287487253],[122.91782917829181,-16.41579116481971],[122.93942939429394,-16.41579116481971],[123.0078300783008,-16.375265310342527],[123.01863018630189,-16.382019619422053],[123.01863018630189,-16.395528237581118],[122.9970299702997,-16.422545473899234],[123.04023040230402,-16.44111982386795],[123.05823058230584,-16.452939864757127],[123.05463054630548,-16.469825637455955],[123.04023040230402,-16.47826852380537],[123.02943029430293,-16.47657994653548],[123.01503015030153,-16.473202791995718],[123.00423004230043,-16.469825637455955],[122.98982989829898,-16.473202791995718],[122.98622986229861,-16.48164567834513],[122.97902979029789,-16.5052857601235],[122.98982989829898,-16.528925841901852],[122.96102961029612,-16.579583159998336],[122.97182971829722,-16.594780355427275],[122.97542975429758,-16.616731859935754],[122.97902979029789,-16.62517474628517],[122.98982989829898,-16.62855190082493],[123.0078300783008,-16.616731859935754],[123.02223022230226,-16.615043282665866],[123.02583025830262,-16.62517474628517],[123.02583025830262,-16.64881482806352],[123.02943029430293,-16.675832064381638],[123.04383043830438,-16.692717837080465],[123.06903069030693,-16.68427495073105],[123.08343083430833,-16.702849300699768],[123.09063090630906,-16.709603609779293],[123.10143101431015,-16.71129218704918],[123.11223112231124,-16.709603609779293],[123.11583115831161,-16.702849300699768],[123.11943119431197,-16.696094991620242],[123.1266312663127,-16.68765210527083],[123.13383133831337,-16.68596352800094],[123.13383133831337,-16.696094991620242],[123.130231302313,-16.71129218704918],[123.1266312663127,-16.721423650668484],[123.11583115831161,-16.72817795974801],[123.10863108631088,-16.72817795974801],[123.10143101431015,-16.731555114287772],[123.09423094230942,-16.745063732446837],[123.09423094230942,-16.76870381422519],[123.10503105031052,-16.78558958692402],[123.12303123031234,-16.797409627813195],[123.1410314103141,-16.800786782352958],[123.15183151831519,-16.807541091432498],[123.15543155431556,-16.824426864131325],[123.15903159031592,-16.843001214100028],[123.15543155431556,-16.854821254989204],[123.14463144631446,-16.891969954926637],[123.14463144631446,-16.9139214594351],[123.15903159031592,-16.922364345784516],[123.18423184231841,-16.929118654864055],[123.19863198631987,-16.942627273023106],[123.21663216632169,-16.97808739569065],[123.259832598326,-17.01523609562807],[123.26703267032673,-17.028744713787134],[123.26703267032673,-17.069270568264315],[123.27063270632709,-17.086156340963143],[123.28143281432813,-17.101353536392082],[123.3138331383314,-17.1385022363295],[123.33543335433353,-17.16214231810787],[123.34263342633426,-17.187470977156096],[123.34983349833499,-17.204356749854924],[123.36783367833681,-17.22799683163329],[123.3786337863379,-17.255014067951407],[123.37143371433717,-17.278654149729775],[123.38943389433894,-17.315802849667193],[123.40023400234003,-17.329311467826244],[123.43263432634325,-17.344508663255198],[123.4470344703447,-17.36477159049379],[123.4578345783458,-17.38503451773238],[123.46503465034652,-17.39010024954203],[123.47583475834762,-17.40529744497097],[123.49023490234902,-17.417117485860146],[123.50103501035011,-17.43062610401921],[123.5118351183512,-17.471151958496392],[123.54063540635406,-17.501546349354285],[123.55503555035551,-17.518432122053113],[123.55863558635588,-17.537006472021815],[123.5658356583566,-17.575843749229122],[123.56943569435697,-17.59104094465806],[123.56943569435697,-17.59441809919784],[123.5766357663577,-17.59104094465806],[123.58383583835837,-17.580909481038773],[123.58743587435873,-17.57077801741947],[123.58743587435873,-17.51505496751335],[123.58743587435873,-17.50830065843381],[123.58023580235806,-17.49310346300487],[123.56223562235624,-17.457643340337327],[123.56223562235624,-17.44751187671804],[123.56223562235624,-17.40529744497097],[123.56943569435697,-17.361394435954026],[123.57303573035733,-17.349574395064835],[123.5910359103591,-17.32593431328648],[123.59463594635946,-17.314114272397305],[123.59463594635946,-17.302294231508128],[123.59463594635946,-17.29047419061895],[123.59463594635946,-17.278654149729775],[123.59823598235982,-17.27021126338036],[123.60543605436055,-17.26007979976106],[123.60903609036092,-17.249948336141756],[123.60903609036092,-17.22799683163329],[123.61263612636128,-17.216176790744115],[123.61983619836201,-17.2077339043947],[123.6306363063631,-17.20266817258505],[123.63423634236341,-17.20097959531516],[123.63783637836377,-17.20266817258505],[123.6450364503645,-17.204356749854924],[123.6450364503645,-17.184093822616333],[123.64143641436414,-17.172273781727156],[123.62343623436237,-17.15538800902833],[123.58023580235806,-17.094599227312557],[123.57303573035733,-17.042253331946185],[123.5766357663577,-17.025367559247357],[123.5910359103591,-17.00003890019913],[123.59463594635946,-16.984841704770176],[123.60543605436055,-16.996661745659353],[123.61623616236164,-16.996661745659353],[123.62343623436237,-16.99328459111959],[123.63423634236341,-16.991596013849716],[123.64863648636486,-16.99328459111959],[123.65583655836559,-16.99497316838948],[123.66663666636668,-17.008481786548543],[123.67023670236705,-17.01523609562807],[123.68103681036814,-17.0608276819149],[123.68463684636845,-17.05745052737514],[123.69183691836918,-17.0506962182956],[123.6990369903699,-17.047319063755836],[123.71343713437136,-17.052384795565487],[123.73503735037349,-17.065893413724552],[123.75303753037531,-17.08277918642338],[123.76023760237604,-17.09797638185232],[123.76023760237604,-17.108107845471622],[123.7638376383764,-17.11823930909091],[123.77103771037713,-17.126682195440324],[123.77823778237786,-17.131747927249975],[123.78903789037889,-17.14019081359939],[123.81063810638108,-17.150322277218677],[123.82143821438217,-17.15538800902833],[123.83583835838357,-17.172273781727156],[123.84663846638466,-17.192536708965747],[123.86103861038612,-17.211111058934463],[123.87903879038794,-17.21786536801399],[123.90423904239043,-17.21786536801399],[123.91503915039152,-17.216176790744115],[123.91863918639189,-17.2077339043947],[123.91503915039152,-17.199291018045287],[123.90423904239043,-17.19591386350551],[123.89343893438934,-17.194225286235636],[123.8826388263883,-17.190848131695873],[123.85383853838539,-17.163830895377743],[123.83583835838357,-17.131747927249975],[123.81423814238144,-17.054073372835376],[123.79983799837999,-17.02030182743772],[123.79623796237962,-17.00003890019913],[123.80343803438035,-16.991596013849716],[123.8178381783818,-16.996661745659353],[123.85383853838539,-17.01861325016783],[123.86463864638648,-17.025367559247357],[123.86823868238685,-17.005104632008766],[123.85743857438575,-16.991596013849716],[123.8430384303843,-16.979775972960525],[123.83583835838357,-16.961201622991823],[123.8430384303843,-16.946004427562883],[123.87183871838721,-16.924052923054404],[123.87543875438757,-16.912232882165227],[123.8826388263883,-16.897035686736274],[123.90063900639007,-16.886904223116986],[123.92223922239225,-16.87846133676757],[123.93663936639365,-16.86832987314827],[123.94743947439474,-16.849755523179567],[123.95463954639547,-16.827804018671088],[123.94743947439474,-16.809229668702372],[123.93303933039334,-16.800786782352958],[123.92223922239225,-16.839624059560265],[123.90423904239043,-16.85819840952898],[123.83583835838357,-16.881838491307334],[123.79263792637926,-16.89028137765675],[123.76743767437677,-16.87846133676757],[123.73143731437318,-16.814295400512023],[123.72783727837282,-16.79572105054332],[123.71703717037173,-16.756883773336014],[123.709837098371,-16.741686577907075],[123.69183691836918,-16.729866537017898],[123.65943659436596,-16.714669341588944],[123.6450364503645,-16.704537877969656],[123.61263612636128,-16.674143487111763],[123.59463594635946,-16.66570060076235],[123.50823508235084,-16.653880559873173],[123.50823508235084,-16.65050340533341],[123.5118351183512,-16.642060518983996],[123.52983529835302,-16.631929055364694],[123.55143551435515,-16.626863323555042],[123.5658356583566,-16.616731859935754],[123.55503555035551,-16.594780355427275],[123.59463594635946,-16.574517428188685],[123.60903609036092,-16.564385964569382],[123.60903609036092,-16.54581161460068],[123.59823598235982,-16.535680150981378],[123.55503555035551,-16.53905730552114],[123.53343533435333,-16.532302996441615],[123.54423544235442,-16.562697387299508],[123.54423544235442,-16.567763119109145],[123.5118351183512,-16.56607454183927],[123.49743497434974,-16.562697387299508],[123.49383493834938,-16.549188769140443],[123.48663486634865,-16.54412303733079],[123.4578345783458,-16.52554868736209],[123.4578345783458,-16.5238601100922],[123.4470344703447,-16.512040069203024],[123.44343443434434,-16.512040069203024],[123.43983439834398,-16.50866291466326],[123.43263432634325,-16.5052857601235],[123.42903429034294,-16.500220028313848],[123.42543425434258,-16.491777141964434],[123.46863468634689,-16.50359718285361],[123.48303483034829,-16.5052857601235],[123.49383493834938,-16.500220028313848],[123.48663486634865,-16.48839998742467],[123.46503465034652,-16.46307132837643],[123.49023490234902,-16.468137060186066],[123.52263522635229,-16.49853145104396],[123.54423544235442,-16.5052857601235],[123.56943569435697,-16.510351491933136],[123.59463594635946,-16.522171532822313],[123.61983619836201,-16.530614419171727],[123.6450364503645,-16.52554868736209],[123.63423634236341,-16.515417223742787],[123.61983619836201,-16.510351491933136],[123.58743587435873,-16.5052857601235],[123.60903609036092,-16.493465719234308],[123.63783637836377,-16.490088564694545],[123.65583655836559,-16.485022832884894],[123.53703537035369,-16.42592262843901],[123.50463504635047,-16.41579116481971],[123.50463504635047,-16.407348278470295],[123.53703537035369,-16.41410258754982],[123.54783547835478,-16.412414010279946],[123.55503555035551,-16.395528237581118],[123.64863648636486,-16.427611205708885],[123.71343713437136,-16.429299782978774],[123.68823688236881,-16.407348278470295],[123.67383673836741,-16.39890539212088],[123.65943659436596,-16.395528237581118],[123.65223652236523,-16.392151083041355],[123.6450364503645,-16.385396773961816],[123.63423634236341,-16.371888155802765],[123.6306363063631,-16.365133846723225],[123.64143641436414,-16.360068114913574],[123.65223652236523,-16.360068114913574],[123.66303663036632,-16.370199578532876],[123.68103681036814,-16.3769538876124],[123.6990369903699,-16.38033104215218],[123.71343713437136,-16.382019619422053],[123.71343713437136,-16.37357673307264],[123.71703717037173,-16.3583795376437],[123.71703717037173,-16.343182342214746],[123.71343713437136,-16.333050878595458],[123.6990369903699,-16.329673724055695],[123.65943659436596,-16.327985146785807],[123.64863648636486,-16.322919414976155],[123.6450364503645,-16.31616510589663],[123.63783637836377,-16.306033642277328],[123.62703627036274,-16.297590755927914],[123.61983619836201,-16.292525024118277],[123.60903609036092,-16.29590217865804],[123.60183601836019,-16.299279333197802],[123.60183601836019,-16.304345065007453],[123.61263612636128,-16.306033642277328],[123.61623616236164,-16.307722219547216],[123.61623616236164,-16.312787951356867],[123.60903609036092,-16.31785368316652],[123.60183601836019,-16.319542260436393],[123.59463594635946,-16.31616510589663],[123.58743587435873,-16.31109937408698],[123.58383583835837,-16.304345065007453],[123.58023580235806,-16.299279333197802],[123.55863558635588,-16.287459292308625],[123.54783547835478,-16.277327828689323],[123.54063540635406,-16.265507787800146],[123.5658356583566,-16.260442055990495],[123.5766357663577,-16.241867706021793],[123.56943569435697,-16.221604778783203],[123.55503555035551,-16.209784737894026],[123.56223562235624,-16.18614465611566],[123.56943569435697,-16.177701769766244],[123.58023580235806,-16.16925888341683],[123.58383583835837,-16.17432461522648],[123.59823598235982,-16.179390347036133],[123.60183601836019,-16.17601319249637],[123.59463594635946,-16.15575026525778],[123.69183691836918,-16.14899595617824],[123.72063720637209,-16.15575026525778],[123.72423724237245,-16.135487338019175],[123.73143731437318,-16.140553069828826],[123.74223742237422,-16.15406168798789],[123.74943749437494,-16.162504574337305],[123.77103771037713,-16.162504574337305],[123.7746377463775,-16.162504574337305],[123.77823778237786,-16.167570306146956],[123.78543785437853,-16.181078924306007],[123.78903789037889,-16.182767501575896],[123.79983799837999,-16.18614465611566],[123.80703807038071,-16.19121038792531],[123.81063810638108,-16.199653274274723],[123.80343803438035,-16.208096160624137],[123.79623796237962,-16.208096160624137],[123.7746377463775,-16.201341851544612],[123.76743767437677,-16.204719006084375],[123.77103771037713,-16.21653904697355],[123.78903789037889,-16.224981933322965],[123.81063810638108,-16.230047665132616],[123.8286382863829,-16.23173624240249],[123.81423814238144,-16.245244860561556],[123.78543785437853,-16.25199916964108],[123.75663756637567,-16.25368774691097],[123.73143731437318,-16.25875347872062],[123.80343803438035,-16.307722219547216],[123.8286382863829,-16.319542260436393],[123.8430384303843,-16.322919414976155],[123.85383853838539,-16.322919414976155],[123.86103861038612,-16.327985146785807],[123.86823868238685,-16.339805187674983],[123.87183871838721,-16.35669096037381],[123.86463864638648,-16.368511001262988],[123.85743857438575,-16.370199578532876],[123.85023850238503,-16.360068114913574],[123.83583835838357,-16.368511001262988],[123.85383853838539,-16.41579116481971],[123.86463864638648,-16.429299782978774],[123.86823868238685,-16.41579116481971],[123.87543875438757,-16.41579116481971],[123.87903879038794,-16.42085689662936],[123.88623886238861,-16.424234051169122],[123.88983889838897,-16.429299782978774],[123.89343893438934,-16.409036855740183],[123.88983889838897,-16.370199578532876],[123.8970389703897,-16.35331380583405],[123.89343893438934,-16.33811661040511],[123.9078390783908,-16.33811661040511],[123.92943929439298,-16.346559496754523],[123.94383943839438,-16.35331380583405],[123.9510395103951,-16.360068114913574],[123.96543965439656,-16.375265310342527],[123.98343983439838,-16.385396773961816],[123.99423994239942,-16.37864246488229],[123.95823958239583,-16.32123083770628],[123.9510395103951,-16.29421360138815],[123.98703987039869,-16.285770715038737],[123.98703987039869,-16.27901640595921],[123.96543965439656,-16.26888494233991],[123.94383943839438,-16.25368774691097],[123.92223922239225,-16.235113396942253],[123.91143911439116,-16.21822762424344],[123.93303933039334,-16.221604778783203],[123.97263972639729,-16.240179128751905],[123.99783997839978,-16.245244860561556],[124.01944019440197,-16.245244860561556],[124.03024030240306,-16.24862201510132],[124.03384033840342,-16.255376324180858],[124.03744037440373,-16.263819210530272],[124.04824048240482,-16.263819210530272],[124.069840698407,-16.25875347872062],[124.10944109441095,-16.265507787800146],[124.12744127441277,-16.272262096879686],[124.1490414904149,-16.287459292308625],[124.16704167041672,-16.297590755927914],[124.17064170641709,-16.302656487737565],[124.19944199441994,-16.375265310342527],[124.21024210242103,-16.388773928501593],[124.22104221042213,-16.395528237581118],[124.30024300243002,-16.402282546660643],[124.3326433264333,-16.410725433010057],[124.34344343443433,-16.407348278470295],[124.36504365043652,-16.365133846723225],[124.3866438664387,-16.35162522856416],[124.4010440104401,-16.35331380583405],[124.42624426244265,-16.375265310342527],[124.44784447844478,-16.387085351231704],[124.47304473044733,-16.39383966031123],[124.59184591845917,-16.40059396939077],[124.62424624246245,-16.40059396939077],[124.64944649446494,-16.388773928501593],[124.65664656646567,-16.395528237581118],[124.68184681846822,-16.387085351231704],[124.72504725047253,-16.382019619422053],[124.76824768247684,-16.385396773961816],[124.78624786247866,-16.39890539212088],[124.80424804248042,-16.417479742089597],[124.84024840248401,-16.42592262843901],[124.87984879848801,-16.42085689662936],[124.9050490504905,-16.402282546660643],[124.88344883448838,-16.39890539212088],[124.84024840248401,-16.405659701200406],[124.82584825848261,-16.39890539212088],[124.80784807848079,-16.387085351231704],[124.78984789847897,-16.382019619422053],[124.75384753847538,-16.375265310342527],[124.69624696246962,-16.344870919484634],[124.59544595445954,-16.326296569515932],[124.57384573845741,-16.326296569515932],[124.49824498244982,-16.33642803313522],[124.48384483844842,-16.344870919484634],[124.47664476644769,-16.348248074024397],[124.4550445504455,-16.333050878595458],[124.4550445504455,-16.334739455865346],[124.45144451444514,-16.33811661040511],[124.44424444244441,-16.339805187674983],[124.42984429844302,-16.339805187674983],[124.4118441184412,-16.33811661040511],[124.4010440104401,-16.329673724055695],[124.39384393843937,-16.299279333197802],[124.39024390243901,-16.292525024118277],[124.3866438664387,-16.287459292308625],[124.38304383043834,-16.282393560498974],[124.3866438664387,-16.270573519609798],[124.39384393843937,-16.250310592371207],[124.39744397443974,-16.23849055148203],[124.39384393843937,-16.228359087862728],[124.38304383043834,-16.223293356053077],[124.37944379443798,-16.214850469703663],[124.3866438664387,-16.201341851544612],[124.39024390243901,-16.187833233385547],[124.39024390243901,-16.17601319249637],[124.39384393843937,-16.165881728877068],[124.41904419044192,-16.160815997067417],[124.42624426244265,-16.15406168798789],[124.42984429844302,-16.142241647098714],[124.42984429844302,-16.069632824493752],[124.43344433444338,-16.057812783604575],[124.44424444244441,-16.05105847452505],[124.4550445504455,-16.052747051794924],[124.4658446584466,-16.061189938144338],[124.47304473044733,-16.073009979033515],[124.47304473044733,-16.088207174462468],[124.46944469444696,-16.101715792621533],[124.47304473044733,-16.115224410780584],[124.47664476644769,-16.120290142590235],[124.49824498244982,-16.142241647098714],[124.51264512645128,-16.159127419797542],[124.519845198452,-16.17601319249637],[124.5306453064531,-16.15575026525778],[124.5450454504545,-16.12873302893965],[124.57024570245704,-16.110158678970947],[124.59544595445954,-16.115224410780584],[124.5882458824588,-16.094961483541994],[124.5882458824588,-16.025729815476808],[124.5846458464585,-15.98858111553939],[124.59184591845917,-15.976761074650213],[124.61704617046172,-15.976761074650213],[124.60624606246063,-15.958186724681497],[124.60624606246063,-15.936235220173018],[124.60984609846099,-15.899086520235599],[124.62064620646208,-15.882200747536771],[124.64224642246421,-15.865314974837943],[124.66744667446676,-15.86193782029818],[124.67824678246785,-15.880512170266897],[124.68544685446858,-15.880512170266897],[124.69624696246962,-15.85687208848853],[124.69984699846998,-15.836609161249939],[124.70704707047071,-15.821411965821],[124.73224732247326,-15.80621477039206],[124.69624696246962,-15.79439472950287],[124.67824678246785,-15.791017574963107],[124.63144631446318,-15.79439472950287],[124.62064620646208,-15.797771884042646],[124.60984609846099,-15.80621477039206],[124.5882458824588,-15.848429202139116],[124.55944559445595,-15.875446438457246],[124.51624516245164,-15.970006765570673],[124.48744487444878,-15.998712579158678],[124.48384483844842,-15.985203960999627],[124.48744487444878,-15.975072497380324],[124.49104491044909,-15.964941033761022],[124.49464494644945,-15.949743838332083],[124.49104491044909,-15.941300951982669],[124.48384483844842,-15.934546642903143],[124.47664476644769,-15.927792333823604],[124.46944469444696,-15.895709365695836],[124.45144451444514,-15.843363470329479],[124.43704437044374,-15.82647769763065],[124.44064440644405,-15.838297738519827],[124.43704437044374,-15.850117779409004],[124.43344433444338,-15.855183511218655],[124.42624426244265,-15.853494933948767],[124.42264422644229,-15.860249243028306],[124.41544415444156,-15.865314974837943],[124.40464404644047,-15.875446438457246],[124.39744397443974,-15.804526193122172],[124.39384393843937,-15.789328997693232],[124.38304383043834,-15.770754647724516],[124.38304383043834,-15.748803143216037],[124.38304383043834,-15.726851638707572],[124.39024390243901,-15.71672017508827],[124.37944379443798,-15.688014361500265],[124.37584375843761,-15.676194320611089],[124.37584375843761,-15.667751434261675],[124.37944379443798,-15.664374279721912],[124.3866438664387,-15.667751434261675],[124.39024390243901,-15.676194320611089],[124.39744397443974,-15.676194320611089],[124.39744397443974,-15.664374279721912],[124.39744397443974,-15.652554238832735],[124.4010440104401,-15.642422775213433],[124.40464404644047,-15.635668466133907],[124.41904419044192,-15.669440011531563],[124.42624426244265,-15.647488507023084],[124.42624426244265,-15.622159847974842],[124.41904419044192,-15.603585498006126],[124.39744397443974,-15.608651229815777],[124.40464404644047,-15.559682488989182],[124.39744397443974,-15.539419561750591],[124.37584375843761,-15.525910943591526],[124.39024390243901,-15.522533789051764],[124.40464404644047,-15.527599520861415],[124.41904419044192,-15.53435382994094],[124.42624426244265,-15.536042407210829],[124.42984429844302,-15.530976675401178],[124.44784447844478,-15.525910943591526],[124.45144451444514,-15.520845211781875],[124.45144451444514,-15.490450820923996],[124.47304473044733,-15.468499316415517],[124.50544505445055,-15.466810739145629],[124.53784537845382,-15.480319357304694],[124.56664566645668,-15.502270861813173],[124.57744577445777,-15.507336593622824],[124.5990459904599,-15.510713748162587],[124.61704617046172,-15.509025170892698],[124.63144631446318,-15.505648016352936],[124.63144631446318,-15.433039193747973],[124.63144631446318,-15.426284884668448],[124.63504635046354,-15.419530575588922],[124.63864638646385,-15.416153421049145],[124.64584645846458,-15.419530575588922],[124.64944649446494,-15.426284884668448],[124.64224642246421,-15.446547811907038],[124.64224642246421,-15.45667927552634],[124.6530465304653,-15.47187647095528],[124.66744667446676,-15.478630780034806],[124.68184681846822,-15.473565048225169],[124.69264692646925,-15.45667927552634],[124.67464674646749,-15.443170657367276],[124.67104671046712,-15.417841998319034],[124.68184681846822,-15.392513339270792],[124.69624696246962,-15.37393898930209],[124.72864728647289,-15.360430371143025],[124.73224732247326,-15.357053216603262],[124.72864728647289,-15.34692175298396],[124.70704707047071,-15.345233175714071],[124.70704707047071,-15.333413134824895],[124.68184681846822,-15.350298907523722],[124.67104671046712,-15.35198748479361],[124.6638466384664,-15.340167443904434],[124.66744667446676,-15.32497024847548],[124.67824678246785,-15.321593093935718],[124.68904689046889,-15.319904516665844],[124.69624696246962,-15.313150207586304],[124.69624696246962,-15.297953012157365],[124.68544685446858,-15.294575857617602],[124.67464674646749,-15.294575857617602],[124.6638466384664,-15.291198703077825],[124.66024660246603,-15.2844443939983],[124.66024660246603,-15.274312930379011],[124.6638466384664,-15.250672848600644],[124.68184681846822,-15.260804312219946],[124.68904689046889,-15.26249288948982],[124.69624696246962,-15.264181466759709],[124.69624696246962,-15.26249288948982],[124.69624696246962,-15.257427157680183],[124.70344703447034,-15.252361425870532],[124.70704707047071,-15.250672848600644],[124.71064710647107,-15.254050003140406],[124.71424714247144,-15.26924719856936],[124.71424714247144,-15.274312930379011],[124.72144721447216,-15.276001507648886],[124.75744757447575,-15.2844443939983],[124.76104761047611,-15.292887280347713],[124.75384753847538,-15.308084475776653],[124.73944739447393,-15.333413134824895],[124.74664746647466,-15.335101712094783],[124.7826478264783,-15.301330166697127],[124.7970479704797,-15.291198703077825],[124.80424804248042,-15.294575857617602],[124.81504815048152,-15.309773053046541],[124.82584825848261,-15.313150207586304],[124.8366483664837,-15.318215939395955],[124.83304833048334,-15.330035980285132],[124.82944829448297,-15.343544598444197],[124.82224822248224,-15.353676062063485],[124.84384843848437,-15.35198748479361],[124.86904869048692,-15.34692175298396],[124.88344883448838,-15.34692175298396],[124.9050490504905,-15.35198748479361],[124.91944919449196,-15.360430371143025],[124.94464944649445,-15.38913618473103],[124.94824948249482,-15.395890493810555],[124.95184951849518,-15.402644802890094],[124.95904959049591,-15.406021957429857],[124.97704977049773,-15.411087689239508],[124.98424984249846,-15.414464843779271],[124.98784987849882,-15.417841998319034],[124.99504995049949,-15.422907730128685],[124.99144991449913,-15.438104925557624],[124.97704977049773,-15.468499316415517],[124.98064980649809,-15.476942202764931],[124.99144991449913,-15.478630780034806],[125.00225002250022,-15.473565048225169],[125.00945009450095,-15.466810739145629],[125.01665016650168,-15.463433584605866],[125.02745027450277,-15.466810739145629],[125.02745027450277,-15.475253625495043],[125.0238502385024,-15.483696511844457],[125.02745027450277,-15.490450820923996],[125.0490504905049,-15.49889370727341],[125.05265052650526,-15.485385089114345],[125.05265052650526,-15.465122161875755],[125.06345063450635,-15.449924966446801],[125.08505085050854,-15.454990698256452],[125.1570515705157,-15.505648016352936],[125.18585185851862,-15.517468057242112],[125.17145171451716,-15.502270861813173],[125.13185131851321,-15.47187647095528],[125.12465124651249,-15.460056430066103],[125.07425074250745,-15.419530575588922],[125.07425074250745,-15.407710534699731],[125.0886508865089,-15.34692175298396],[125.09945099450994,-15.338478866634546],[125.1138511385114,-15.330035980285132],[125.12825128251285,-15.321593093935718],[125.14265142651425,-15.319904516665844],[125.14265142651425,-15.313150207586304],[125.12825128251285,-15.313150207586304],[125.1138511385114,-15.308084475776653],[125.1030510305103,-15.297953012157365],[125.09585095850957,-15.2844443939983],[125.09225092250921,-15.30470732123689],[125.07425074250745,-15.30470732123689],[125.05265052650526,-15.292887280347713],[125.03825038250386,-15.281067239458537],[125.02745027450277,-15.2844443939983],[124.98424984249846,-15.31146163031643],[124.95184951849518,-15.323281671205606],[124.93024930249305,-15.338478866634546],[124.91944919449196,-15.340167443904434],[124.9050490504905,-15.333413134824895],[124.90144901449014,-15.321593093935718],[124.89784897848978,-15.299641589427239],[124.89424894248941,-15.297953012157365],[124.89064890648905,-15.297953012157365],[124.88704887048874,-15.296264434887476],[124.88344883448838,-15.28951012580795],[124.88344883448838,-15.281067239458537],[124.88704887048874,-15.276001507648886],[124.89784897848978,-15.264181466759709],[124.90864908649087,-15.257427157680183],[124.91944919449196,-15.252361425870532],[124.92304923049232,-15.247295694060881],[124.91944919449196,-15.237164230441579],[124.92304923049232,-15.228721344092179],[124.93744937449378,-15.22196703501264],[124.94824948249482,-15.218589880472877],[124.96624966249664,-15.213524148663225],[124.969849698497,-15.208458416853574],[124.97704977049773,-15.208458416853574],[124.99144991449913,-15.220278457742765],[125.00585005850058,-15.22196703501264],[125.02745027450277,-15.203392685043937],[125.05625056250562,-15.162866830566742],[125.04545045450453,-15.157801098757105],[125.0238502385024,-15.152735366947454],[125.01305013050131,-15.14935821240769],[125.00585005850058,-15.178064025995695],[125.00225002250022,-15.181441180535458],[124.99504995049949,-15.181441180535458],[124.98784987849882,-15.178064025995695],[124.98064980649809,-15.172998294186044],[124.98064980649809,-15.162866830566742],[124.97344973449736,-15.167932562376393],[124.96264962649627,-15.18650691234511],[124.96264962649627,-15.189884066884872],[124.95544955449554,-15.191572644154746],[124.93024930249305,-15.203392685043937],[124.88704887048874,-15.238852807711467],[124.86904869048692,-15.250672848600644],[124.86904869048692,-15.233787075901816],[124.87264872648728,-15.228721344092179],[124.87624876248765,-15.223655612282528],[124.86904869048692,-15.216901303202988],[124.86184861848619,-15.230409921362053],[124.85464854648546,-15.230409921362053],[124.85824858248583,-15.220278457742765],[124.85824858248583,-15.198326953234286],[124.85464854648546,-15.194949798694523],[124.85824858248583,-15.18650691234511],[124.86904869048692,-15.174686871455933],[124.86904869048692,-15.166243985106519],[124.86184861848619,-15.162866830566742],[124.84384843848437,-15.167932562376393],[124.83304833048334,-15.16455540783663],[124.84024840248401,-15.140915326058277],[124.84384843848437,-15.140915326058277],[124.85464854648546,-15.134161016978737],[124.85824858248583,-15.130783862438975],[124.86184861848619,-15.118963821549798],[124.86184861848619,-15.113898089740147],[124.87264872648728,-15.108832357930496],[124.88344883448838,-15.105455203390733],[124.89784897848978,-15.10207804885097],[124.90864908649087,-15.100389471581082],[124.9158491584916,-15.10207804885097],[124.93024930249305,-15.112209512470272],[124.95184951849518,-15.115586667010035],[124.95904959049591,-15.120652398819686],[124.97344973449736,-15.134161016978737],[124.99864998649986,-15.098700894311207],[125.01305013050131,-15.085192276152142],[125.02025020250204,-15.100389471581082],[125.02745027450277,-15.085192276152142],[125.03105031050313,-15.061552194373789],[125.02745027450277,-15.041289267135198],[125.00945009450095,-15.031157803515896],[125.01305013050131,-15.02440349443637],[125.01305013050131,-15.005829144467654],[125.00945009450095,-14.983877639959175],[124.99864998649986,-14.970369021800124],[125.01305013050131,-14.972057599069998],[125.0238502385024,-14.97712333087965],[125.04185041850417,-14.990631949038715],[125.0490504905049,-14.9821890626893],[125.05985059850599,-14.972057599069998],[125.07065070650708,-14.968680444530236],[125.08145081450817,-14.97712333087965],[125.08145081450817,-14.994009103578477],[125.06345063450635,-15.014272030817068],[125.06345063450635,-15.031157803515896],[125.07065070650708,-15.02440349443637],[125.07425074250745,-15.0598636171039],[125.0886508865089,-15.051420730754486],[125.09945099450994,-15.029469226246007],[125.11025110251103,-15.02440349443637],[125.11025110251103,-15.027780648976133],[125.1138511385114,-15.032846380785784],[125.12105121051212,-15.037912112595421],[125.12465124651249,-15.037912112595421],[125.12465124651249,-15.049732153484612],[125.12465124651249,-15.05479788529425],[125.11745117451176,-15.0598636171039],[125.11745117451176,-15.069995080723203],[125.13185131851321,-15.107143780660621],[125.13545135451358,-15.113898089740147],[125.13905139051394,-15.120652398819686],[125.15345153451534,-15.151046789677565],[125.16425164251643,-15.162866830566742],[125.17145171451716,-15.156112521487216],[125.1678516785168,-15.14935821240769],[125.1678516785168,-15.142603903328151],[125.1678516785168,-15.132472439708863],[125.17505175051753,-15.124029553359449],[125.17505175051753,-15.115586667010035],[125.16065160651607,-15.063240771643663],[125.14625146251461,-15.044666421674961],[125.14625146251461,-15.027780648976133],[125.16425164251643,-15.010894876277305],[125.16425164251643,-15.031157803515896],[125.17145171451716,-15.044666421674961],[125.18585185851862,-15.051420730754486],[125.20025200252002,-15.053109308024375],[125.21465214652147,-15.058175039834026],[125.2218522185222,-15.066617926183426],[125.22905229052293,-15.073372235262966],[125.2470524705247,-15.066617926183426],[125.25065250652506,-15.078437967072617],[125.25425254252542,-15.085192276152142],[125.26145261452615,-15.088569430691905],[125.27945279452797,-15.107143780660621],[125.28305283052833,-15.113898089740147],[125.27945279452797,-15.120652398819686],[125.27225272252724,-15.127406707899212],[125.2866528665287,-15.140915326058277],[125.31185311853119,-15.151046789677565],[125.32985329853301,-15.152735366947454],[125.32985329853301,-15.140915326058277],[125.35865358653587,-15.135849594248626],[125.419854198542,-15.14935821240769],[125.43065430654309,-15.1375381715185],[125.43065430654309,-15.120652398819686],[125.42345423454236,-15.115586667010035],[125.39465394653945,-15.120652398819686],[125.38385383853841,-15.11727524427991],[125.37305373053732,-15.107143780660621],[125.36945369453696,-15.097012317041319],[125.36945369453696,-15.08688085342203],[125.37305373053732,-15.085192276152142],[125.38025380253805,-15.083503698882254],[125.38745387453878,-15.08181512161238],[125.39105391053914,-15.076749389802728],[125.38745387453878,-15.068306503453314],[125.38025380253805,-15.066617926183426],[125.37305373053732,-15.064929348913552],[125.36945369453696,-15.0598636171039],[125.3658536585366,-15.051420730754486],[125.36945369453696,-15.048043576214724],[125.38025380253805,-15.046354998944835],[125.38745387453878,-15.042977844405073],[125.40545405454054,-15.027780648976133],[125.43065430654309,-15.01933776262672],[125.43065430654309,-15.009206299007417],[125.41625416254163,-15.002451989927891],[125.38385383853841,-15.014272030817068],[125.3658536585366,-15.009206299007417],[125.3550535505355,-14.994009103578477],[125.34785347853477,-14.995697680848366],[125.33705337053374,-14.99738625811824],[125.32985329853301,-14.995697680848366],[125.32625326253265,-14.987254794498952],[125.32265322653228,-14.983877639959175],[125.31545315453155,-14.985566217229064],[125.31185311853119,-14.987254794498952],[125.30825308253083,-14.988943371768826],[125.30825308253083,-14.990631949038715],[125.29745297452973,-14.992320526308589],[125.29025290252906,-14.994009103578477],[125.27945279452797,-14.994009103578477],[125.27225272252724,-14.983877639959175],[125.27225272252724,-14.975434753609761],[125.27945279452797,-14.968680444530236],[125.2866528665287,-14.956860403641059],[125.2758527585276,-14.956860403641059],[125.26505265052651,-14.96192613545071],[125.25425254252542,-14.966991867260347],[125.25425254252542,-14.970369021800124],[125.24345243452433,-14.965303289990473],[125.23985239852402,-14.953483249101296],[125.22905229052293,-14.950106094561534],[125.2218522185222,-14.951794671831408],[125.21825218252184,-14.95517182637117],[125.21465214652147,-14.958548980910933],[125.20385203852038,-14.956860403641059],[125.19665196651965,-14.951794671831408],[125.18585185851862,-14.945040362751882],[125.18225182251825,-14.939974630942231],[125.19665196651965,-14.936597476402468],[125.20385203852038,-14.931531744592817],[125.20745207452075,-14.923088858243403],[125.21105211052111,-14.912957394624101],[125.21465214652147,-14.907891662814464],[125.22545225452257,-14.906203085544576],[125.24345243452433,-14.901137353734924],[125.25425254252542,-14.901137353734924],[125.25785257852579,-14.906203085544576],[125.25785257852579,-14.912957394624101],[125.26145261452615,-14.91971170370364],[125.2758527585276,-14.921400280973515],[125.29025290252906,-14.91971170370364],[125.29385293852937,-14.91464597189399],[125.29385293852937,-14.906203085544576],[125.2866528665287,-14.894383044655399],[125.30825308253083,-14.884251581036096],[125.29745297452973,-14.869054385607157],[125.26865268652688,-14.855545767448092],[125.2326523265233,-14.860611499257743],[125.22905229052293,-14.85048003563844],[125.20385203852038,-14.845414303828804],[125.19305193051929,-14.831905685669739],[125.18945189451898,-14.77955979030338],[125.18225182251825,-14.771116903953967],[125.1678516785168,-14.776182635763604],[125.16065160651607,-14.777871213033492],[125.1570515705157,-14.77449405849373],[125.15345153451534,-14.762674017604553],[125.14985149851498,-14.759296863064776],[125.14265142651425,-14.759296863064776],[125.13905139051394,-14.757608285794902],[125.13545135451358,-14.735656781286423],[125.14265142651425,-14.728902472206897],[125.1570515705157,-14.728902472206897],[125.1678516785168,-14.730591049476772],[125.17865178651789,-14.727213894937009],[125.17865178651789,-14.720459585857483],[125.17505175051753,-14.713705276777944],[125.17505175051753,-14.70526239042853],[125.18225182251825,-14.698508081349004],[125.18585185851862,-14.698508081349004],[125.18945189451898,-14.700196658618893],[125.19665196651965,-14.701885235888767],[125.21105211052111,-14.700196658618893],[125.20025200252002,-14.68499946318994],[125.20385203852038,-14.668113690491111],[125.21825218252184,-14.663047958681474],[125.25425254252542,-14.673179422300763],[125.26145261452615,-14.671490845030888],[125.26145261452615,-14.652916495062172],[125.27225272252724,-14.651227917792284],[125.28305283052833,-14.64953934052241],[125.3010530105301,-14.634342145093456],[125.28305283052833,-14.629276413283819],[125.25785257852579,-14.632653567823581],[125.23985239852402,-14.630964990553693],[125.2326523265233,-14.614079217854865],[125.24345243452433,-14.593816290616275],[125.26505265052651,-14.575241940647572],[125.29025290252906,-14.566799054298158],[125.30825308253083,-14.573553363377684],[125.31545315453155,-14.573553363377684],[125.32265322653228,-14.558356167948745],[125.32985329853301,-14.54991328159933],[125.33345333453337,-14.543158972519791],[125.33705337053374,-14.514453158931786],[125.3406534065341,-14.50263311804261],[125.34785347853477,-14.499255963502847],[125.3550535505355,-14.504321695312498],[125.3550535505355,-14.570176208837921],[125.35145351453514,-14.581996249727098],[125.34425344253441,-14.60732490877534],[125.3550535505355,-14.587061981536749],[125.37305373053732,-14.573553363377684],[125.38745387453878,-14.560044745218619],[125.39105391053914,-14.539781817980028],[125.40545405454054,-14.553290436139093],[125.43785437854382,-14.632653567823581],[125.43785437854382,-14.639407876903107],[125.44145441454418,-14.636030722363344],[125.44505445054449,-14.620833526934405],[125.43785437854382,-14.598882022425926],[125.44145441454418,-14.588750558806623],[125.45945459454595,-14.593816290616275],[125.45945459454595,-14.581996249727098],[125.45945459454595,-14.570176208837921],[125.46305463054631,-14.560044745218619],[125.4738547385474,-14.553290436139093],[125.46665466654667,-14.548224704329442],[125.46305463054631,-14.541470395249917],[125.46305463054631,-14.534716086170377],[125.46665466654667,-14.524584622551089],[125.49545495454953,-14.54484754978968],[125.48825488254886,-14.51783031347155],[125.48825488254886,-14.50263311804261],[125.49545495454953,-14.490813077153433],[125.50265502655026,-14.485747345343782],[125.50985509855099,-14.485747345343782],[125.51705517055171,-14.489124499883545],[125.52425524255244,-14.494190231693196],[125.53145531455317,-14.497567386232959],[125.54945549455493,-14.495878808963084],[125.55665556655566,-14.497567386232959],[125.55665556655566,-14.514453158931786],[125.54585545855457,-14.527961777090852],[125.53145531455317,-14.538093240710154],[125.5278552785528,-14.54484754978968],[125.5386553865539,-14.553290436139093],[125.55665556655566,-14.553290436139093],[125.57465574655748,-14.54991328159933],[125.58905589055894,-14.54484754978968],[125.58545585455857,-14.534716086170377],[125.58545585455857,-14.526273199820963],[125.58905589055894,-14.511076004392024],[125.5926559265593,-14.511076004392024],[125.59625596255961,-14.511076004392024],[125.59985599855997,-14.50938742712215],[125.60345603456034,-14.504321695312498],[125.60345603456034,-14.499255963502847],[125.59625596255961,-14.494190231693196],[125.59625596255961,-14.48743592261367],[125.6070560705607,-14.433401449977424],[125.61425614256143,-14.409761368199057],[125.6178561785618,-14.401318481849643],[125.61065610656107,-14.384432709150829],[125.59625596255961,-14.367546936452001],[125.58905589055894,-14.350661163753173],[125.5926559265593,-14.337152545594108],[125.5926559265593,-14.327021081974806],[125.58545585455857,-14.308446732006104],[125.58545585455857,-14.288183804767513],[125.59625596255961,-14.271298032068685],[125.59625596255961,-14.264543722989146],[125.58545585455857,-14.256100836639732],[125.58545585455857,-14.245969373020444],[125.59625596255961,-14.239215063940904],[125.61065610656107,-14.244280795750555],[125.6070560705607,-14.229083600321616],[125.6178561785618,-14.224017868511964],[125.63585635856361,-14.230772177591504],[125.64305643056434,-14.25778941390962],[125.65025650256501,-14.25778941390962],[125.65025650256501,-14.251035104830095],[125.65745657456574,-14.251035104830095],[125.66465664656647,-14.264543722989146],[125.69345693456938,-14.2797409184181],[125.70785707857078,-14.291560959307276],[125.70785707857078,-14.283118072957862],[125.71145711457115,-14.276363763878336],[125.71865718657187,-14.271298032068685],[125.7258572585726,-14.264543722989146],[125.73305733057333,-14.271298032068685],[125.7258572585726,-14.2797409184181],[125.71145711457115,-14.305069577466341],[125.71865718657187,-14.313512463815755],[125.71865718657187,-14.323643927435043],[125.71145711457115,-14.333775391054346],[125.70065700657005,-14.340529700133871],[125.68985689856902,-14.337152545594108],[125.68265682656829,-14.330398236514583],[125.6718567185672,-14.325332504704932],[125.65745657456574,-14.333775391054346],[125.66465664656647,-14.340529700133871],[125.6610566105661,-14.348972586483285],[125.6610566105661,-14.35572689556281],[125.65745657456574,-14.360792627372462],[125.6718567185672,-14.458730109025666],[125.68265682656829,-14.473927304454605],[125.68265682656829,-14.506010272582373],[125.63585635856361,-14.598882022425926],[125.63945639456398,-14.634342145093456],[125.65385653856538,-14.622522104204279],[125.69705697056969,-14.504321695312498],[125.70425704257042,-14.494190231693196],[125.71145711457115,-14.470550149914843],[125.71145711457115,-14.426647140897884],[125.71865718657187,-14.401318481849643],[125.73305733057333,-14.39794132730988],[125.74025740257406,-14.409761368199057],[125.73305733057333,-14.430024295437661],[125.74385743857442,-14.435090027247298],[125.74385743857442,-14.4452214908666],[125.73305733057333,-14.470550149914843],[125.76905769057691,-14.463795840835303],[125.78345783457837,-14.457041531755777],[125.78705787057874,-14.4452214908666],[125.7906579065791,-14.436778604517187],[125.79785797857977,-14.435090027247298],[125.8050580505805,-14.438467181787075],[125.80865808658086,-14.4452214908666],[125.8050580505805,-14.453664377216015],[125.8050580505805,-14.457041531755777],[125.8050580505805,-14.458730109025666],[125.81585815858159,-14.463795840835303],[125.82305823058232,-14.46041868629554],[125.82665826658268,-14.453664377216015],[125.83385833858341,-14.448598645406364],[125.84105841058414,-14.448598645406364],[125.84825848258481,-14.457041531755777],[125.84825848258481,-14.46717299537508],[125.84105841058414,-14.473927304454605],[125.83385833858341,-14.477304458994368],[125.81585815858159,-14.484058768073908],[125.83385833858341,-14.519518890741438],[125.82305823058232,-14.531338931630614],[125.82305823058232,-14.539781817980028],[125.83745837458378,-14.54484754978968],[125.83745837458378,-14.553290436139093],[125.83025830258305,-14.561733322488507],[125.83025830258305,-14.573553363377684],[125.83385833858341,-14.58537340426686],[125.84105841058414,-14.595504867886163],[125.84825848258481,-14.600570599695814],[125.85545855458554,-14.600570599695814],[125.89145891458918,-14.62758783601393],[125.90945909459094,-14.639407876903107],[125.91665916659167,-14.637719299633233],[125.9238592385924,-14.597193445156037],[125.9238592385924,-14.5921277133464],[125.92025920259204,-14.58537340426686],[125.90945909459094,-14.576930517917447],[125.90225902259021,-14.570176208837921],[125.90585905859058,-14.563421899758396],[125.90945909459094,-14.560044745218619],[125.91305913059131,-14.558356167948745],[125.91665916659167,-14.538093240710154],[125.92025920259204,-14.526273199820963],[125.9238592385924,-14.51783031347155],[125.95985959859598,-14.519518890741438],[125.96705967059671,-14.521207468011326],[125.96705967059671,-14.526273199820963],[125.9778597785978,-14.541470395249917],[125.98505985059853,-14.54484754978968],[125.99945999459993,-14.541470395249917],[125.99945999459993,-14.531338931630614],[125.99585995859962,-14.519518890741438],[125.99945999459993,-14.511076004392024],[126.01026010260102,-14.50938742712215],[126.02826028260284,-14.519518890741438],[126.03546035460357,-14.51783031347155],[126.0426604266043,-14.50938742712215],[126.03906039060394,-14.497567386232959],[126.03546035460357,-14.485747345343782],[126.03546035460357,-14.473927304454605],[126.03186031860321,-14.462107263565429],[126.01746017460175,-14.44691006813649],[126.01386013860139,-14.438467181787075],[126.01386013860139,-14.42495856362801],[126.01026010260102,-14.419892831818359],[126.0030600306003,-14.416515677278596],[125.99225992259926,-14.408072790929182],[125.9886598865989,-14.40469563638942],[125.98145981459817,-14.401318481849643],[125.9778597785978,-14.394564172770117],[125.98145981459817,-14.381055554611052],[125.98505985059853,-14.38274413188094],[125.99945999459993,-14.37767840007129],[126.01026010260102,-14.370924090991764],[126.01026010260102,-14.367546936452001],[126.01746017460175,-14.364169781912224],[126.03546035460357,-14.35572689556281],[126.06066060660606,-14.350661163753173],[126.06426064260643,-14.34221827740376],[126.06426064260643,-14.330398236514583],[126.06066060660606,-14.32026677289528],[126.06426064260643,-14.311823886545866],[126.07506075060752,-14.303381000196453],[126.07506075060752,-14.294938113847039],[126.07506075060752,-14.286495227497625],[126.06426064260643,-14.269609454798797],[126.06066060660606,-14.261166568449383],[126.06066060660606,-14.247657950290318],[126.06426064260643,-14.235837909401141],[126.07146071460716,-14.227395023051727],[126.10386103861038,-14.22232929124209],[126.10746107461074,-14.220640713972202],[126.11826118261183,-14.21557498216255],[126.13986139861402,-14.19531205492396],[126.14346143461438,-14.19531205492396],[126.14706147061474,-14.176737704955258],[126.14346143461438,-14.158163354986542],[126.13986139861402,-14.142966159557602],[126.15066150661505,-14.134523273208188],[126.13266132661329,-14.095685996000881],[126.10746107461074,-14.078800223302053],[126.00666006660066,-14.078800223302053],[125.99225992259926,-14.072045914222528],[125.98505985059853,-14.0551601415237],[125.98505985059853,-14.045028677904398],[125.97425974259744,-14.031520059745333],[125.97425974259744,-14.021388596126044],[125.97425974259744,-14.01294570977663],[125.9778597785978,-14.001125668887454],[125.98145981459817,-13.990994205268152],[125.99225992259926,-13.999437091617565],[126.01026010260102,-14.026454327935696],[126.02106021060212,-14.031520059745333],[126.03546035460357,-14.02814290520557],[126.03546035460357,-14.018011441586282],[126.03186031860321,-14.004502823427217],[126.03546035460357,-13.990994205268152],[126.04626046260466,-13.984239896188626],[126.07506075060752,-14.026454327935696],[126.0966609666097,-14.024765750665807],[126.09306093060934,-14.016322864316393],[126.08946089460898,-14.00787997796698],[126.09306093060934,-13.996059937077803],[126.08946089460898,-13.984239896188626],[126.08586085860861,-13.969042700759672],[126.08226082260825,-13.963976968950035],[126.07506075060752,-13.962288391680147],[126.03546035460357,-13.942025464441556],[126.02826028260284,-13.935271155362031],[126.01746017460175,-13.921762537202966],[126.02106021060212,-13.920073959933077],[126.03186031860321,-13.925139691742729],[126.06066060660606,-13.931894000822254],[126.06786067860679,-13.926828269012617],[126.06786067860679,-13.911631073583663],[126.07506075060752,-13.899811032694487],[126.08586085860861,-13.889679569075199],[126.0966609666097,-13.88799099180531],[126.10386103861038,-13.898122455424613],[126.10026100261001,-13.90994249631379],[126.09306093060934,-13.918385382663203],[126.09306093060934,-13.925139691742729],[126.1218612186122,-13.93020542355238],[126.12906129061292,-13.931894000822254],[126.13986139861402,-13.93020542355238],[126.15066150661505,-13.921762537202966],[126.15066150661505,-13.933582578092143],[126.14346143461438,-13.942025464441556],[126.12906129061292,-13.955534082600622],[126.13626136261365,-13.957222659870496],[126.14706147061474,-13.962288391680147],[126.15066150661505,-13.962288391680147],[126.15066150661505,-13.970731278029561],[126.13626136261365,-13.975797009839212],[126.12546125461256,-13.987617050728389],[126.11466114661147,-14.001125668887454],[126.1110611106111,-14.018011441586282],[126.12906129061292,-14.01294570977663],[126.14346143461438,-14.002814246157328],[126.17226172261724,-13.977485587109086],[126.18306183061833,-13.970731278029561],[126.19386193861942,-13.96566554621991],[126.21906219062191,-13.955534082600622],[126.20826208262082,-13.977485587109086],[126.17946179461796,-13.996059937077803],[126.16506165061651,-14.011257132506742],[126.19386193861942,-14.014634287046505],[126.21186211862118,-14.026454327935696],[126.21546215462155,-14.039962946094747],[126.19746197461978,-14.045028677904398],[126.16866168661687,-14.04840583244416],[126.16506165061651,-14.058537296063463],[126.16866168661687,-14.07035733695264],[126.16506165061651,-14.085554532381579],[126.19746197461978,-14.077111646032165],[126.21186211862118,-14.082177377841816],[126.21186211862118,-14.099063150540644],[126.18666186661869,-14.122703232318997],[126.17946179461796,-14.1328346959383],[126.20106201062009,-14.126080386858774],[126.19026190261906,-14.15985193225643],[126.21546215462155,-14.17504912768537],[126.2406624066241,-14.185180591304658],[126.24426244262446,-14.198689209463723],[126.23706237062373,-14.202066364003485],[126.23346233462337,-14.203754941273374],[126.22626226262264,-14.205443518543262],[126.22626226262264,-14.212197827622788],[126.229862298623,-14.21557498216255],[126.24426244262446,-14.22232929124209],[126.24786247862482,-14.224017868511964],[126.25866258662586,-14.217263559432439],[126.27306273062732,-14.208820673083025],[126.28386283862841,-14.208820673083025],[126.28746287462877,-14.230772177591504],[126.2946629466295,-14.230772177591504],[126.29826298262986,-14.213886404892676],[126.30186301863017,-14.202066364003485],[126.3090630906309,-14.191934900384197],[126.34506345063454,-14.185180591304658],[126.34506345063454,-14.17504912768537],[126.33426334263345,-14.161540509526304],[126.31986319863199,-14.144654736827476],[126.31266312663126,-14.141277582287714],[126.3090630906309,-14.141277582287714],[126.29826298262986,-14.141277582287714],[126.2946629466295,-14.136211850478063],[126.29826298262986,-14.127768964128649],[126.3090630906309,-14.11257176869971],[126.31266312663126,-14.09737457327077],[126.31626316263163,-14.087243109651467],[126.32346323463236,-14.080488800571942],[126.34506345063454,-14.073734491492402],[126.33786337863381,-14.07035733695264],[126.33426334263345,-14.063603027873114],[126.33066330663308,-14.058537296063463],[126.34506345063454,-14.045028677904398],[126.3630636306363,-14.045028677904398],[126.37746377463776,-14.043340100634524],[126.39186391863922,-14.004502823427217],[126.42066420664207,-13.982551318918738],[126.43146431464316,-13.970731278029561],[126.44946449464499,-13.990994205268152],[126.47106471064711,-13.99268278253804],[126.48906489064893,-13.979174164378975],[126.49986499865003,-13.962288391680147],[126.51786517865179,-13.936959732631905],[126.52866528665288,-13.928516846282491],[126.54306543065434,-13.931894000822254],[126.56826568265683,-13.942025464441556],[126.55746557465574,-13.94540261898132],[126.53946539465397,-13.953845505330733],[126.52866528665288,-13.963976968950035],[126.52146521465215,-13.974108432569324],[126.51786517865179,-13.984239896188626],[126.51426514265142,-13.989305627998277],[126.5070650706507,-13.990994205268152],[126.49986499865003,-13.997748514347691],[126.49626496264966,-14.023077173395919],[126.4926649266493,-14.031520059745333],[126.46386463864638,-14.060225873333351],[126.45306453064529,-14.077111646032165],[126.46386463864638,-14.085554532381579],[126.4818648186482,-14.082177377841816],[126.51426514265142,-14.068668759682751],[126.52866528665288,-14.073734491492402],[126.4926649266493,-14.11257176869971],[126.50346503465033,-14.121014655049123],[126.51426514265142,-14.141277582287714],[126.52146521465215,-14.14803189136724],[126.53586535865361,-14.146343314097365],[126.5466654666547,-14.139589005017825],[126.55746557465574,-14.134523273208188],[126.56826568265683,-14.141277582287714],[126.5718657186572,-14.151409045907016],[126.56826568265683,-14.183492014034783],[126.56826568265683,-14.19531205492396],[126.57546575465756,-14.2105092503529],[126.58266582665829,-14.213886404892676],[126.58986589865901,-14.217263559432439],[126.60426604266041,-14.230772177591504],[126.60426604266041,-14.200377786733611],[126.60426604266041,-14.186869168574546],[126.61146611466114,-14.17504912768537],[126.62226622266223,-14.169983395875718],[126.63306633066333,-14.164917664066067],[126.64746647466478,-14.158163354986542],[126.65106651066515,-14.144654736827476],[126.65106651066515,-14.1328346959383],[126.64746647466478,-14.122703232318997],[126.64746647466478,-14.114260345969598],[126.65466654666545,-14.102440305080407],[126.65826658266582,-14.095685996000881],[126.65106651066515,-14.087243109651467],[126.64746647466478,-14.077111646032165],[126.65106651066515,-14.065291605142988],[126.65826658266582,-14.072045914222528],[126.67266672666727,-14.080488800571942],[126.679866798668,-14.085554532381579],[126.68346683466837,-14.093997418730993],[126.68706687066873,-14.115948923239472],[126.69426694266946,-14.121014655049123],[126.7050670506705,-14.11763750050936],[126.71946719467195,-14.085554532381579],[126.7338673386734,-14.073734491492402],[126.72666726667268,-14.058537296063463],[126.7338673386734,-14.045028677904398],[126.7446674466745,-14.029831482475458],[126.74826748267486,-14.011257132506742],[126.74106741067413,-14.011257132506742],[126.73746737467377,-14.018011441586282],[126.73026730267304,-14.023077173395919],[126.71946719467195,-14.031520059745333],[126.70866708667086,-14.021388596126044],[126.70146701467019,-14.00787997796698],[126.70146701467019,-13.994371359807914],[126.70866708667086,-13.984239896188626],[126.71226712267122,-13.982551318918738],[126.7338673386734,-13.989305627998277],[126.74826748267486,-13.990994205268152],[126.75186751867517,-13.980862741648863],[126.76266762667626,-13.970731278029561],[126.77346773467735,-13.974108432569324],[126.78786787867881,-13.97241985529945],[126.78786787867881,-13.970731278029561],[126.81666816668167,-13.982551318918738],[126.83106831068312,-13.982551318918738],[126.84186841868421,-13.970731278029561],[126.8238682386824,-13.963976968950035],[126.8130681306813,-13.957222659870496],[126.80946809468094,-13.948779773521082],[126.81666816668167,-13.942025464441556],[126.83106831068312,-13.943714041711445],[126.85626856268561,-13.948779773521082],[126.85266852668525,-13.938648309901794],[126.84546845468458,-13.931894000822254],[126.83466834668349,-13.928516846282491],[126.82026820268203,-13.926828269012617],[126.80946809468094,-13.92345111447284],[126.80226802268021,-13.913319650853552],[126.7986679866799,-13.898122455424613],[126.79506795067954,-13.884613837265547],[126.79146791467917,-13.877859528186008],[126.77346773467735,-13.855908023677543],[126.76626766267663,-13.84577656005824],[126.75546755467553,-13.80525070558106],[126.74826748267486,-13.791742087421994],[126.76626766267663,-13.790053510152106],[126.78426784267845,-13.786676355612343],[126.80226802268021,-13.779922046532818],[126.80946809468094,-13.768102005643641],[126.8130681306813,-13.768102005643641],[126.8238682386824,-13.776544891993055],[126.82746827468276,-13.791742087421994],[126.8238682386824,-13.812005014660585],[126.83106831068312,-13.815382169200348],[126.84186841868421,-13.818759323740125],[126.84546845468458,-13.806939282850934],[126.85266852668525,-13.800184973771408],[126.86346863468634,-13.79849639650152],[126.8778687786878,-13.79849639650152],[126.8778687786878,-13.791742087421994],[126.85986859868598,-13.78329920107258],[126.84546845468458,-13.769790582913515],[126.84546845468458,-13.754593387484576],[126.86346863468634,-13.7427733465954],[126.88146881468816,-13.746150501135162],[126.89946899468998,-13.756281964754464],[126.91386913869138,-13.764724851103878],[126.9318693186932,-13.757970542024339],[126.91386913869138,-13.746150501135162],[126.90666906669065,-13.7427733465954],[126.91386913869138,-13.73601903751586],[126.92826928269284,-13.730953305706223],[126.95346953469533,-13.724198996626683],[126.97866978669788,-13.754593387484576],[126.99306993069933,-13.766413428373752],[127.0110701107011,-13.771479160183404],[127.01827018270183,-13.77823346926293],[127.02187021870219,-13.793430664691883],[127.02187021870219,-13.82551363281965],[127.03627036270365,-13.815382169200348],[127.0506705067051,-13.813693591930473],[127.05427054270541,-13.820447901009999],[127.0506705067051,-13.839022250978715],[127.06867068670687,-13.828890787359413],[127.07227072270723,-13.842399405518478],[127.0650706507065,-13.86772806456672],[127.05427054270541,-13.88799099180531],[127.08667086670869,-13.884613837265547],[127.09387093870941,-13.899811032694487],[127.09747097470978,-13.926828269012617],[127.10827108271081,-13.952156928060859],[127.129871298713,-13.967354123489798],[127.14427144271446,-13.955534082600622],[127.15507155071549,-13.933582578092143],[127.17307173071731,-13.915008228123426],[127.16227162271622,-13.911631073583663],[127.15867158671585,-13.90318818723425],[127.15867158671585,-13.891368146345073],[127.16587165871658,-13.881236682725785],[127.18027180271804,-13.889679569075199],[127.18747187471877,-13.901499609964375],[127.18747187471877,-13.931894000822254],[127.19107191071913,-13.947091196251208],[127.19827198271986,-13.948779773521082],[127.20547205472053,-13.943714041711445],[127.21267212672126,-13.935271155362031],[127.22707227072272,-13.904876764504138],[127.23787237872381,-13.891368146345073],[127.25227252272526,-13.898122455424613],[127.28827288272885,-13.938648309901794],[127.3026730267303,-13.948779773521082],[127.33147331473316,-13.960599814410259],[127.33147331473316,-13.943714041711445],[127.32067320673207,-13.916696805393315],[127.33147331473316,-13.901499609964375],[127.34587345873462,-13.904876764504138],[127.35307353073534,-13.916696805393315],[127.36027360273602,-13.93020542355238],[127.36747367473674,-13.935271155362031],[127.3818738187382,-13.936959732631905],[127.38907389073893,-13.943714041711445],[127.39267392673929,-13.952156928060859],[127.39987399874002,-13.962288391680147],[127.40347403474038,-13.962288391680147],[127.40707407074069,-13.957222659870496],[127.41787417874178,-13.942025464441556],[127.42867428674288,-13.953845505330733],[127.43947439474397,-13.969042700759672],[127.45027450274506,-13.987617050728389],[127.45387453874542,-14.004502823427217],[127.45387453874542,-14.014634287046505],[127.4466744667447,-14.04840583244416],[127.45027450274506,-14.056848718793574],[127.47187471874719,-14.07035733695264],[127.47907479074792,-14.078800223302053],[127.48987489874901,-14.058537296063463],[127.50427504275046,-14.065291605142988],[127.51867518675186,-14.083865955111705],[127.53307533075332,-14.092308841461119],[127.54747547475478,-14.09737457327077],[127.57627576275763,-14.122703232318997],[127.59067590675909,-14.134523273208188],[127.59427594275945,-14.134523273208188],[127.60507605076054,-14.1328346959383],[127.61227612276122,-14.134523273208188],[127.61587615876158,-14.137900427747951],[127.62307623076231,-14.14803189136724],[127.66627666276662,-14.178426282225132],[127.66987669876698,-14.197000632193848],[127.68427684276844,-14.217263559432439],[127.6986769867699,-14.235837909401141],[127.75627756277567,-14.28480665022775],[127.75987759877597,-14.294938113847039],[127.78867788677888,-14.367546936452001],[127.79587795877961,-14.370924090991764],[127.81747817478174,-14.374301245531527],[127.82467824678247,-14.381055554611052],[127.82467824678247,-14.389498440960466],[127.82467824678247,-14.426647140897884],[127.82827828278283,-14.436778604517187],[127.83547835478356,-14.441844336326838],[127.84267842678429,-14.443532913596712],[127.84267842678429,-14.438467181787075],[127.84627846278465,-14.426647140897884],[127.84987849878502,-14.416515677278596],[127.86067860678605,-14.414827100008708],[127.87147871478714,-14.423269986358122],[127.87867878678787,-14.44015575905695],[127.85347853478538,-14.465484418105191],[127.85707857078575,-14.484058768073908],[127.87507875078751,-14.470550149914843],[127.8858788587886,-14.473927304454605],[127.90387903879042,-14.497567386232959],[127.939879398794,-14.519518890741438],[127.95427954279546,-14.533027508900503],[127.94347943479437,-14.539781817980028],[127.939879398794,-14.543158972519791],[127.939879398794,-14.554979013408982],[127.94347943479437,-14.566799054298158],[127.94707947079473,-14.573553363377684],[127.95787957879583,-14.578619095187335],[127.96867968679686,-14.578619095187335],[127.99387993879941,-14.568487631568033],[127.99747997479977,-14.561733322488507],[128.0046800468005,-14.560044745218619],[128.0190801908019,-14.570176208837921],[128.04068040680409,-14.590439136076512],[128.0478804788048,-14.593816290616275],[128.05508055080554,-14.600570599695814],[128.0586805868059,-14.617456372394642],[128.06588065880658,-14.632653567823581],[128.08028080280803,-14.641096454172995],[128.0946809468095,-14.641096454172995],[128.10548105481058,-14.644473608712758],[128.11628116281162,-14.64953934052241],[128.159481594816,-14.688376617729702],[128.17388173881739,-14.698508081349004],[128.19548195481957,-14.701885235888767],[128.20988209882103,-14.700196658618893],[128.21348213482133,-14.698508081349004],[128.22068220682206,-14.700196658618893],[128.2278822788228,-14.710328122238181],[128.23148231482315,-14.718771008587595],[128.23148231482315,-14.727213894937009],[128.23148231482315,-14.737345358556311],[128.2278822788228,-14.744099667635837],[128.21348213482133,-14.735656781286423],[128.19908199081993,-14.73227962674666],[128.18468184681848,-14.737345358556311],[128.1810818108181,-14.754231131255139],[128.1810818108181,-14.769428326684078],[128.1918819188192,-14.806577026621497],[128.19548195481957,-14.821774222050436],[128.1918819188192,-14.83021710839985],[128.1810818108181,-14.831905685669739],[128.1630816308163,-14.831905685669739],[128.1486814868149,-14.833594262939627],[128.1378813788138,-14.838659994749264],[128.11628116281162,-14.853857190178218],[128.1378813788138,-14.862300076527632],[128.13428134281344,-14.894383044655399],[128.11268112681125,-14.960237558180822],[128.10908109081095,-14.972057599069998],[128.0946809468095,-14.99738625811824],[128.09108091080913,-15.010894876277305],[128.09108091080913,-15.031157803515896],[128.09108091080913,-15.046354998944835],[128.09108091080913,-15.061552194373789],[128.0730807308073,-15.088569430691905],[128.06948069480694,-15.107143780660621],[128.06588065880658,-15.125718130629323],[128.06948069480694,-15.140915326058277],[128.08028080280803,-15.162866830566742],[128.0838808388084,-15.174686871455933],[128.07668076680767,-15.277690084918774],[128.06948069480694,-15.287821548538062],[128.0586805868059,-15.292887280347713],[128.04428044280445,-15.291198703077825],[128.0730807308073,-15.36718468022255],[128.0730807308073,-15.404333380159969],[128.05508055080554,-15.443170657367276],[128.0190801908019,-15.478630780034806],[128.01548015480154,-15.48707366638422],[128.02268022680227,-15.497205130003522],[128.04428044280445,-15.48707366638422],[128.06948069480694,-15.470187893685392],[128.0838808388084,-15.45667927552634],[128.10188101881022,-15.42459630739856],[128.11268112681125,-15.382381875651504],[128.11988119881198,-15.335101712094783],[128.11628116281162,-15.291198703077825],[128.10188101881022,-15.230409921362053],[128.10908109081095,-15.225344189552402],[128.11268112681125,-15.213524148663225],[128.10908109081095,-15.20001553050416],[128.11268112681125,-15.189884066884872],[128.12348123481235,-15.181441180535458],[128.13428134281344,-15.188195489614984],[128.14508145081453,-15.198326953234286],[128.17388173881739,-15.213524148663225],[128.22428224282243,-15.260804312219946],[128.23508235082352,-15.274312930379011],[128.23868238682388,-15.282755816728425],[128.2566825668257,-15.309773053046541],[128.2818828188282,-15.384070452921378],[128.2818828188282,-15.400956225620206],[128.28908289082892,-15.400956225620206],[128.29628296282965,-15.316527362126067],[128.2926829268293,-15.291198703077825],[128.27828278282783,-15.270935775839234],[128.24228242282425,-15.237164230441579],[128.23148231482315,-15.223655612282528],[128.22068220682206,-15.205081262313811],[128.2170821708217,-15.18481833507522],[128.22428224282243,-15.166243985106519],[128.22428224282243,-15.159489676026979],[128.2170821708217,-15.11727524427991],[128.21348213482133,-15.110520935200384],[128.20628206282066,-15.107143780660621],[128.19908199081993,-15.100389471581082],[128.19548195481957,-15.056486462564138],[128.2170821708217,-15.022714917166482],[128.26748267482674,-14.970369021800124],[128.2710827108271,-14.968680444530236],[128.27828278282783,-14.966991867260347],[128.2818828188282,-14.963614712720585],[128.28548285482856,-14.958548980910933],[128.2818828188282,-14.946728940021757],[128.2818828188282,-14.943351785481994],[128.29628296282965,-14.924777435513292],[128.3142831428314,-14.904514508274687],[128.32148321483214,-14.911268817354227],[128.32868328683287,-14.936597476402468],[128.34308343083433,-15.021026339896594],[128.35028350283505,-15.037912112595421],[128.36468364683645,-15.046354998944835],[128.35748357483578,-15.014272030817068],[128.35748357483578,-14.999074835388129],[128.36468364683645,-14.983877639959175],[128.4006840068401,-15.02440349443637],[128.41868418684186,-15.03960068986531],[128.4438844388444,-15.046354998944835],[128.45108451084513,-15.042977844405073],[128.4546845468455,-15.034534958055659],[128.45828458284586,-15.02440349443637],[128.46188461884623,-15.014272030817068],[128.45828458284586,-15.002451989927891],[128.45828458284586,-14.995697680848366],[128.45108451084513,-14.990631949038715],[128.44748447484477,-14.983877639959175],[128.42228422284222,-14.939974630942231],[128.41868418684186,-14.916334549163878],[128.40788407884082,-14.896071621925287],[128.40428404284046,-14.884251581036096],[128.40788407884082,-14.869054385607157],[128.4114841148412,-14.865677231067394],[128.41868418684186,-14.865677231067394],[128.4258842588426,-14.860611499257743],[128.43308433084331,-14.855545767448092],[128.43668436684368,-14.853857190178218],[128.44028440284404,-14.85048003563844],[128.43308433084331,-14.840348572019153],[128.4258842588426,-14.835282840209501],[128.4114841148412,-14.828528531129976],[128.40428404284046,-14.823462799320325],[128.389883898839,-14.803199872081734],[128.39708397083973,-14.796445563002194],[128.44028440284404,-14.793068408462432],[128.479884798848,-14.77955979030338],[128.4978849788498,-14.769428326684078],[128.51228512285127,-14.760985440334665],[128.5338853388534,-14.75254255398525],[128.55548555485558,-14.759296863064776],[128.59148591485916,-14.777871213033492],[128.67428674286742,-14.78800267665278],[128.71388713887143,-14.798134140272083],[128.749887498875,-14.826839953860087],[128.76788767887678,-14.821774222050436],[128.78948789487896,-14.826839953860087],[128.8146881468815,-14.835282840209501],[128.83268832688327,-14.840348572019153],[128.9190891908919,-14.840348572019153],[128.94068940689408,-14.845414303828804],[128.9730897308973,-14.863988653797506],[128.99108991089912,-14.867365808337269],[129.00909009090094,-14.869054385607157],[129.05229052290525,-14.880874426496334],[129.0918909189092,-14.897760199195162],[129.1026910269103,-14.906203085544576],[129.10989109891102,-14.916334549163878],[129.1170911709117,-14.926466012783166],[129.1170911709117,-14.936597476402468],[129.12069120691206,-14.946728940021757],[129.12789127891278,-14.950106094561534],[129.1566915669157,-14.953483249101296],[129.17469174691746,-14.965303289990473],[129.18549185491855,-14.9821890626893],[129.18909189091892,-15.00414056719778],[129.18549185491855,-15.021026339896594],[129.17829178291782,-15.03960068986531],[129.17469174691746,-15.058175039834026],[129.18549185491855,-15.076749389802728],[129.19629196291964,-15.098700894311207],[129.19989199892,-15.11727524427991],[129.19269192691928,-15.135849594248626],[129.1710917109171,-15.172998294186044],[129.15309153091533,-15.223655612282528],[129.1710917109171,-15.22196703501264],[129.19989199892,-15.167932562376393],[129.22149221492214,-15.169621139646281],[129.21429214292147,-15.18650691234511],[129.20709207092074,-15.205081262313811],[129.20709207092074,-15.22196703501264],[129.21429214292147,-15.237164230441579],[129.24309243092432,-15.113898089740147],[129.2646926469265,-15.107143780660621],[129.2646926469265,-15.090258007961793],[129.2538925389254,-15.031157803515896],[129.25029250292505,-15.01764918535683],[129.24309243092432,-15.007517721737543],[129.23949239492396,-14.983877639959175],[129.2358923589236,-14.936597476402468],[129.22149221492214,-14.867365808337269],[129.22149221492214,-14.843725726558915],[129.22869228692286,-14.83697141747939],[129.24309243092432,-14.843725726558915],[129.25749257492578,-14.862300076527632],[129.2646926469265,-14.887628735575873],[129.2682926829268,-14.887628735575873],[129.289892898929,-14.862300076527632],[129.32589325893258,-14.862300076527632],[129.35829358293586,-14.87918584922646],[129.37269372693726,-14.904514508274687],[129.4770947709477,-14.933220321862706],[129.49509495094952,-14.953483249101296],[129.49869498694989,-14.958548980910933],[129.51309513095134,-15.007517721737543],[129.52389523895238,-15.015960608086957],[129.5526955269553,-15.031157803515896],[129.56349563495638,-15.037912112595421],[129.57069570695705,-15.053109308024375],[129.5850958509585,-15.088569430691905],[129.5958959589596,-15.103766626120859],[129.59949599495997,-15.11727524427991],[129.58869588695887,-15.152735366947454],[129.5850958509585,-15.169621139646281],[129.62829628296282,-15.139226748788388],[129.64629646296464,-15.134161016978737],[129.6606966069661,-15.1375381715185],[129.66789667896683,-15.147669635137802],[129.66789667896683,-15.176375448725807],[129.67149671496713,-15.194949798694523],[129.67869678696786,-15.198326953234286],[129.69669696696968,-15.194949798694523],[129.7146971469715,-15.194949798694523],[129.72549725497254,-15.193261221424635],[129.73269732697327,-15.18650691234511],[129.7290972909729,-15.169621139646281],[129.72189721897217,-15.159489676026979],[129.6606966069661,-15.090258007961793],[129.65349653496537,-15.076749389802728],[129.62829628296282,-15.01933776262672],[129.6210962109621,-14.956860403641059],[129.61029610296106,-14.943351785481994],[129.6210962109621,-14.933220321862706],[129.63549635496355,-14.907891662814464],[129.6390963909639,-14.894383044655399],[129.64629646296464,-14.840348572019153],[129.649896498965,-14.831905685669739],[129.66429664296646,-14.835282840209501],[129.68949689496895,-14.85048003563844],[129.7038970389704,-14.853857190178218],[129.73629736297363,-14.853857190178218],[129.7686976869769,-14.860611499257743],[129.78669786697867,-14.862300076527632],[129.80109801098013,-14.860611499257743],[129.82629826298262,-14.853857190178218],[129.8478984789848,-14.842037149289041],[129.85509855098553,-14.840348572019153],[129.86589865898662,-14.838659994749264],[129.869498694987,-14.835282840209501],[129.869498694987,-14.83021710839985],[129.87669876698766,-14.823462799320325],[129.91989919899203,-14.789691253922669],[129.9270992709927,-14.78800267665278],[129.93429934299343,-14.782936944843144],[129.95229952299525,-14.789691253922669],[129.9810998109981,-14.806577026621497],[129.9810998109981,-14.77955979030338],[129.9918999189992,-14.725525317667135],[129.9810998109981,-14.710328122238181],[129.97389973899737,-14.740722513096074],[129.9558995589956,-14.755919708525013],[129.89469894698948,-14.771116903953967],[129.79749797497976,-14.8167084902408],[129.76149761497618,-14.820085644780562],[129.7938979389794,-14.776182635763604],[129.79749797497976,-14.764362594874427],[129.79029790297903,-14.764362594874427],[129.75429754297545,-14.784625522113018],[129.73629736297363,-14.789691253922669],[129.72549725497254,-14.791379831192558],[129.71109711097114,-14.784625522113018],[129.67149671496713,-14.75254255398525],[129.66429664296646,-14.740722513096074],[129.6750967509675,-14.722148163127358],[129.65349653496537,-14.710328122238181],[129.62829628296282,-14.691753772269479],[129.6066960669607,-14.671490845030888],[129.58869588695887,-14.62758783601393],[129.58869588695887,-14.614079217854865],[129.5958959589596,-14.60732490877534],[129.61029610296106,-14.60732490877534],[129.64629646296464,-14.600570599695814],[129.69309693096932,-14.602259176965688],[129.71829718297187,-14.595504867886163],[129.7290972909729,-14.576930517917447],[129.73629736297363,-14.568487631568033],[129.77589775897758,-14.543158972519791],[129.79029790297903,-14.531338931630614],[129.7686976869769,-14.533027508900503],[129.74349743497436,-14.539781817980028],[129.71829718297187,-14.54991328159933],[129.6858968589686,-14.573553363377684],[129.66789667896683,-14.575241940647572],[129.62469624696246,-14.566799054298158],[129.6174961749618,-14.56511047702827],[129.5958959589596,-14.566799054298158],[129.5850958509585,-14.566799054298158],[129.58149581495815,-14.563421899758396],[129.57429574295742,-14.558356167948745],[129.56709567095675,-14.554979013408982],[129.5526955269553,-14.553290436139093],[129.53469534695347,-14.54484754978968],[129.4770947709477,-14.497567386232959],[129.46989469894697,-14.495878808963084],[129.45909459094594,-14.497567386232959],[129.45549455494557,-14.497567386232959],[129.4518945189452,-14.494190231693196],[129.44829448294485,-14.48068161353413],[129.44829448294485,-14.477304458994368],[129.44469444694448,-14.475615881724494],[129.43029430294303,-14.472238727184717],[129.42669426694266,-14.470550149914843],[129.4230942309423,-14.463795840835303],[129.41949419494193,-14.450287222676252],[129.41589415894163,-14.4452214908666],[129.3690936909369,-14.41820425454847],[129.35829358293586,-14.408072790929182],[129.37269372693726,-14.328709659244694],[129.37629376293762,-14.323643927435043],[129.40149401494017,-14.294938113847039],[129.4086940869409,-14.28480665022775],[129.41229412294126,-14.27298660933856],[129.41229412294126,-14.262855145719271],[129.41229412294126,-14.251035104830095],[129.41949419494193,-14.232460754861378],[129.43029430294303,-14.218952136702313],[129.47349473494734,-14.176737704955258],[129.48429484294843,-14.161540509526304],[129.49149491494916,-14.144654736827476],[129.49509495094952,-14.124391809588886],[129.49509495094952,-14.088931686921356],[129.49509495094952,-14.078800223302053],[129.48429484294843,-14.060225873333351],[129.48069480694807,-14.051782986983937],[129.4878948789488,-14.04840583244416],[129.49869498694989,-14.0551601415237],[129.51309513095134,-14.061914450603226],[129.5310953109531,-14.051782986983937],[129.53469534695347,-14.060225873333351],[129.53469534695347,-14.072045914222528],[129.53829538295383,-14.080488800571942],[129.54549545495456,-14.085554532381579],[129.55989559895602,-14.082177377841816],[129.57069570695705,-14.07542306876229],[129.58149581495815,-14.07542306876229],[129.5850958509585,-14.092308841461119],[129.60309603096033,-14.066980182412877],[129.59949599495997,-14.036585791554984],[129.5958959589596,-14.009568555236868],[129.6066960669607,-13.997748514347691],[129.61029610296106,-14.02814290520557],[129.6318963189632,-14.03489721428511],[129.68949689496895,-14.024765750665807],[129.71829718297187,-14.016322864316393],[129.73629736297363,-13.990994205268152],[129.74709747097472,-13.960599814410259],[129.7506975069751,-13.931894000822254],[129.74349743497436,-13.913319650853552],[129.73629736297363,-13.90318818723425],[129.72189721897217,-13.894745300884836],[129.7146971469715,-13.881236682725785],[129.7146971469715,-13.86772806456672],[129.72189721897217,-13.852530869137766],[129.74349743497436,-13.82551363281965],[129.79749797497976,-13.784987778342469],[129.81549815498158,-13.761347696564101],[129.8046980469805,-13.7427733465954],[129.80109801098013,-13.749527655674925],[129.7938979389794,-13.757970542024339],[129.79029790297903,-13.76303627383399],[129.7830978309783,-13.757970542024339],[129.79029790297903,-13.7427733465954],[129.78669786697867,-13.725887573896571],[129.7830978309783,-13.692116028498916],[129.78669786697867,-13.675230255800088],[129.80829808298085,-13.614441474084316],[129.82629826298262,-13.582358505956535],[129.82989829898298,-13.568849887797484],[129.82989829898298,-13.536766919669702],[129.83349833498335,-13.521569724240763],[129.8370983709837,-13.509749683351586],[129.8478984789848,-13.50299537427206],[129.8586985869859,-13.499618219732284],[129.869498694987,-13.492863910652758],[129.87669876698766,-13.467535251604517],[129.8838988389884,-13.450649478905689],[129.89109891098911,-13.437140860746624],[129.89829898298984,-13.43545228347675],[129.90549905499057,-13.447272324365926],[129.90909909099094,-13.465846674334628],[129.90549905499057,-13.501306797002172],[129.91629916299166,-13.51143826062146],[129.93429934299343,-13.519881146970874],[129.97029970299707,-13.530012610590177],[129.9810998109981,-13.523258301510651],[130.04230042300424,-13.504683951541935],[130.06390063900642,-13.492863910652758],[130.11430114301146,-13.448960901635814],[130.13230132301322,-13.460780942524991],[130.1647016470165,-13.432075128936987],[130.21510215102154,-13.361154883601913],[130.23670236702367,-13.33582622455367],[130.2547025470255,-13.324006183664494],[130.2727027270273,-13.318940451854843],[130.29070290702907,-13.327383338204257],[130.31590315903162,-13.342580533633196],[130.33390333903338,-13.345957688172959],[130.32310323103235,-13.318940451854843],[130.31230312303126,-13.30880898823554],[130.29430294302944,-13.296988947346364],[130.2727027270273,-13.28854606099695],[130.25110251102512,-13.285168906457187],[130.2439024390244,-13.278414597377662],[130.22950229502294,-13.263217401948708],[130.21510215102154,-13.236200165630592],[130.16110161101614,-13.172034229375043],[130.1539015390154,-13.16865707483528],[130.13230132301322,-13.166968497565392],[130.1215012150122,-13.165279920295518],[130.11790117901182,-13.156837033946104],[130.11790117901182,-13.047079511403723],[130.1215012150122,-13.031882315974784],[130.12870128701286,-13.020062275085607],[130.1359013590136,-12.998110770577128],[130.12870128701286,-12.969404956989123],[130.12870128701286,-12.940699143401119],[130.14670146701468,-12.922124793432403],[130.15750157501577,-12.922124793432403],[130.16830168301686,-12.91874763889264],[130.17550175501754,-12.911993329813114],[130.18270182701826,-12.901861866193812],[130.19350193501936,-12.911993329813114],[130.19710197101972,-12.927190525242054],[130.20430204302045,-12.937321988861356],[130.22590225902258,-12.942387720670993],[130.24750247502476,-12.937321988861356],[130.28350283502834,-12.91874763889264],[130.30150301503016,-12.915370484352877],[130.31950319503198,-12.905239020733575],[130.33390333903338,-12.884976093494984],[130.34830348303484,-12.86133601171663],[130.3519035190352,-12.842761661747915],[130.3519035190352,-12.780284302762254],[130.35910359103593,-12.75157848917425],[130.35550355503557,-12.73131556193566],[130.34830348303484,-12.712741211966957],[130.34470344703448,-12.69416686199824],[130.35550355503557,-12.672215357489762],[130.36630366303666,-12.672215357489762],[130.38430384303842,-12.680658243839176],[130.39870398703988,-12.680658243839176],[130.40230402304024,-12.675592512029539],[130.40230402304024,-12.663772471140348],[130.40230402304024,-12.651952430251171],[130.40950409504097,-12.64688669844152],[130.42030420304206,-12.643509543901757],[130.43830438304383,-12.630000925742692],[130.44910449104492,-12.62662377120293],[130.459904599046,-12.630000925742692],[130.49950499504996,-12.648575275711408],[130.51750517505178,-12.65364100752106],[130.50310503105032,-12.63337808028247],[130.4959049590496,-12.619869462123404],[130.4959049590496,-12.604672266694465],[130.5067050670507,-12.59622938034505],[130.51750517505178,-12.602983689424576],[130.55710557105573,-12.680658243839176],[130.56790567905682,-12.685723975648827],[130.57870578705786,-12.68910113018859],[130.58590585905858,-12.69416686199824],[130.58590585905858,-12.70936405742718],[130.59670596705968,-12.704298325617543],[130.60750607506077,-12.705986902887418],[130.6147061470615,-12.711052634697069],[130.6255062550626,-12.714429789236831],[130.6255062550626,-12.712741211966957],[130.6291062910629,-12.707675480157306],[130.63630636306362,-12.704298325617543],[130.639906399064,-12.702609748347655],[130.64710647106472,-12.702609748347655],[130.6579065790658,-12.707675480157306],[130.66510665106654,-12.70936405742718],[130.67590675906763,-12.70936405742718],[130.68670686706866,-12.705986902887418],[130.6939069390694,-12.700921171077766],[130.6939069390694,-12.690789707458478],[130.6147061470615,-12.667149625680125],[130.6147061470615,-12.670526780219888],[130.61110611106113,-12.672215357489762],[130.6039060390604,-12.675592512029539],[130.60030600306004,-12.67390393475965],[130.59670596705968,-12.672215357489762],[130.5931059310593,-12.662083893870474],[130.58950589505895,-12.660395316600585],[130.58590585905858,-12.657018162060822],[130.57510575105755,-12.640132389361995],[130.57150571505719,-12.636755234822232],[130.56790567905682,-12.63168950301258],[130.5607056070561,-12.628312348472818],[130.5607056070561,-12.624935193933055],[130.57150571505719,-12.619869462123404],[130.57870578705786,-12.619869462123404],[130.58950589505895,-12.621558039393292],[130.59670596705968,-12.623246616663167],[130.6039060390604,-12.619869462123404],[130.6147061470615,-12.609737998504102],[130.61830618306186,-12.604672266694465],[130.6147061470615,-12.597917957614925],[130.6147061470615,-12.587786493995637],[130.60750607506077,-12.58440933945586],[130.58230582305822,-12.586097916725748],[130.57870578705786,-12.581032184916097],[130.57870578705786,-12.56921214402692],[130.6039060390604,-12.505046207771386],[130.6039060390604,-12.488160435072558],[130.58950589505895,-12.462831776024316],[130.5931059310593,-12.452700312405014],[130.60030600306004,-12.4442574260556],[130.62190621906223,-12.437503116976075],[130.6147061470615,-12.427371653356772],[130.60030600306004,-12.413863035197707],[130.5931059310593,-12.412174457927833],[130.57870578705786,-12.407108726118182],[130.57870578705786,-12.400354417038656],[130.60750607506077,-12.385157221609703],[130.639906399064,-12.383468644339828],[130.67590675906763,-12.391911530689242],[130.6939069390694,-12.413863035197707],[130.7119071190712,-12.410485880657944],[130.74070740707407,-12.415551612467596],[130.76590765907662,-12.42399449881701],[130.78390783907838,-12.435814539706186],[130.77310773107735,-12.454388889674902],[130.77310773107735,-12.469586085103842],[130.78390783907838,-12.503357630501498],[130.78390783907838,-12.56414641221727],[130.7911079110791,-12.58440933945586],[130.79470794707947,-12.570900721296809],[130.79830798307984,-12.557392103137744],[130.8019080190802,-12.545572062248567],[130.8127081270813,-12.537129175899153],[130.84150841508415,-12.559080680407632],[130.8775087750878,-12.616492307583641],[130.89910899108992,-12.640132389361995],[130.89910899108992,-12.623246616663167],[130.89550895508955,-12.618180884853516],[130.89550895508955,-12.613115153043879],[130.909909099091,-12.597917957614925],[130.93150931509314,-12.602983689424576],[130.96750967509678,-12.62662377120293],[130.9567095670957,-12.599606534884813],[130.9351093510935,-12.581032184916097],[130.90630906309065,-12.56414641221727],[130.88470884708846,-12.543883484978679],[130.8775087750878,-12.525309135009977],[130.87390873908743,-12.513489094120786],[130.8811088110881,-12.508423362311149],[130.89910899108992,-12.510111939581023],[130.9207092070921,-12.513489094120786],[130.94950949509496,-12.530374866819614],[130.96750967509678,-12.537129175899153],[130.9639096390964,-12.520243403200325],[130.95310953109532,-12.50673478504126],[130.93150931509314,-12.48647185780267],[130.92430924309247,-12.483094703262907],[130.90270902709028,-12.483094703262907],[130.89910899108992,-12.479717548723144],[130.89910899108992,-12.47127466237373],[130.8919089190892,-12.462831776024316],[130.8811088110881,-12.45101173513514],[130.8667086670867,-12.4442574260556],[130.8559085590856,-12.452700312405014],[130.8451084510845,-12.45945462148454],[130.8235082350824,-12.447634580595363],[130.8235082350824,-12.439191694245949],[130.82710827108275,-12.430748807896535],[130.83070830708306,-12.418928767007358],[130.8235082350824,-12.400354417038656],[130.85950859508597,-12.393600107959116],[130.84870848708488,-12.380091489800066],[130.8559085590856,-12.368271448910875],[130.88470884708846,-12.353074253481935],[130.8919089190892,-12.344631367132521],[130.89550895508955,-12.337877058052996],[130.89910899108992,-12.334499903513233],[130.90630906309065,-12.331122748973456],[130.91710917109174,-12.332811326243345],[130.9207092070921,-12.336188480783107],[130.92430924309247,-12.341254212592759],[130.9351093510935,-12.34631994440241],[131.02511025110255,-12.35982856256146],[131.05031050310504,-12.373337180720526],[131.05031050310504,-12.353074253481935],[131.04671046710467,-12.341254212592759],[131.02871028710285,-12.317614130814405],[131.02511025110255,-12.30410551265534],[131.02871028710285,-12.253448194558857],[131.02511025110255,-12.23487384459014],[130.9999099991,-12.206168031002136],[130.99630996309963,-12.190970835573196],[130.9999099991,-12.170707908334606],[131.0107101071011,-12.155510712905667],[131.02511025110255,-12.147067826556253],[131.0431104311043,-12.147067826556253],[131.0539105391054,-12.150444981096015],[131.07191071910722,-12.16395359925508],[131.0791107911079,-12.167330753794843],[131.08631086310862,-12.16395359925508],[131.09711097110971,-12.148756403826127],[131.10431104311044,-12.147067826556253],[131.11511115111153,-12.155510712905667],[131.12591125911263,-12.170707908334606],[131.13671136711366,-12.182527949223783],[131.1619116191162,-12.174085062874369],[131.1871118711187,-12.201102299192499],[131.20511205112052,-12.207856608272024],[131.21591215912161,-12.21461091735155],[131.22311223112234,-12.228119535510615],[131.23391233912338,-12.238250999129917],[131.25911259112593,-12.236562421860029],[131.23751237512374,-12.212922340081676],[131.23751237512374,-12.201102299192499],[131.23751237512374,-12.192659412843085],[131.25551255512556,-12.177462217414131],[131.25911259112593,-12.170707908334606],[131.25911259112593,-12.148756403826127],[131.25911259112593,-12.135247785667062],[131.26991269912702,-12.098099085729643],[131.27351273512738,-12.067704694871765],[131.27711277112775,-12.057573231252462],[131.28791287912878,-12.047441767633174],[131.2951129511295,-12.044064613093397],[131.30231302313024,-12.047441767633174],[131.3059130591306,-12.071081849411527],[131.3167131671317,-12.084590467570592],[131.3167131671317,-12.09472193118988],[131.3167131671317,-12.140313517476713],[131.3275132751328,-12.185905103763545],[131.34551345513455,-12.219676649161201],[131.37431374313746,-12.246693885479331],[131.40671406714068,-12.270333967257685],[131.4247142471425,-12.280465430876987],[131.44631446314463,-12.290596894496275],[131.47151471514718,-12.295662626305926],[131.4931149311493,-12.2973512035758],[131.5147151471515,-12.295662626305926],[131.5579155791558,-12.285531162686624],[131.579515795158,-12.28384258541675],[131.59031590315902,-12.287219739956512],[131.6119161191612,-12.2973512035758],[131.6227162271623,-12.293974049036038],[131.70551705517056,-12.282154008146861],[131.78471784717846,-12.270333967257685],[131.8207182071821,-12.25682534909862],[131.83871838718386,-12.246693885479331],[131.8639186391864,-12.22643095824074],[131.8747187471875,-12.22136522643109],[131.88551885518854,-12.216299494621438],[131.89631896318963,-12.216299494621438],[131.90351903519036,-12.219676649161201],[131.90711907119072,-12.229808112780503],[131.91071910719108,-12.239939576399792],[131.91431914319145,-12.250071040019094],[131.93231932319327,-12.263579658178159],[131.97551975519758,-12.27708827633721],[132.00072000720007,-12.292285471766164],[132.02592025920262,-12.2973512035758],[132.04392043920438,-12.307482667195103],[132.05832058320584,-12.307482667195103],[132.07992079920803,-12.2973512035758],[132.1159211592116,-12.275399699067336],[132.1519215192152,-12.246693885479331],[132.16632166321665,-12.224742380970852],[132.169921699217,-12.22136522643109],[132.2167221672217,-12.207856608272024],[132.22392223922242,-12.19941372192261],[132.23112231122315,-12.170707908334606],[132.2347223472235,-12.160576444715304],[132.25272252722527,-12.155510712905667],[132.26352263522637,-12.165642176524955],[132.26712267122673,-12.180839371953894],[132.2707227072271,-12.197725144652722],[132.27792277922782,-12.228119535510615],[132.29592295922959,-12.22643095824074],[132.32112321123213,-12.211233762811787],[132.34632346323463,-12.201102299192499],[132.36072360723608,-12.202790876462373],[132.37152371523717,-12.206168031002136],[132.3787237872379,-12.216299494621438],[132.41112411124112,-12.273711121797447],[132.41832418324185,-12.293974049036038],[132.41832418324185,-12.299039780845689],[132.42192421924221,-12.30410551265534],[132.42192421924221,-12.310859821734866],[132.41832418324185,-12.317614130814405],[132.4039240392404,-12.32436843989393],[132.40032400324003,-12.332811326243345],[132.38952389523894,-12.341254212592759],[132.38592385923863,-12.34631994440241],[132.38592385923863,-12.354762830751824],[132.38592385923863,-12.380091489800066],[132.4039240392404,-12.358139985291587],[132.4327243272433,-12.331122748973456],[132.45072450724507,-12.300728358115578],[132.42192421924221,-12.231496690050378],[132.42552425524258,-12.189282258303308],[132.43992439924398,-12.155510712905667],[132.46512465124653,-12.140313517476713],[132.49032490324902,-12.135247785667062],[132.54432544325442,-12.098099085729643],[132.56232562325624,-12.091344776650118],[132.5767257672577,-12.09472193118988],[132.60552605526055,-12.111607703888708],[132.64152641526414,-12.126804899317648],[132.67752677526778,-12.13693636293695],[132.71712717127173,-12.140313517476713],[132.75672756727568,-12.133559208397187],[132.74592745927458,-12.128493476587536],[132.72792727927282,-12.128493476587536],[132.71712717127173,-12.126804899317648],[132.70632706327063,-12.12173916750801],[132.69552695526954,-12.111607703888708],[132.68832688326887,-12.106541972079057],[132.64872648726487,-12.082901890300704],[132.63432634326347,-12.067704694871765],[132.62712627126274,-12.044064613093397],[132.62712627126274,-12.003538758616216],[132.65232652326523,-11.86507542248583],[132.65232652326523,-11.848189649787003],[132.64872648726487,-11.832992454358063],[132.64152641526414,-11.817795258929124],[132.59832598325983,-11.792466599880882],[132.59472594725946,-11.784023713531468],[132.6019260192602,-11.76713794083264],[132.64152641526414,-11.726612086355459],[132.6559265592656,-11.708037736386743],[132.6667266672667,-11.674266190989087],[132.67752677526778,-11.664134727369799],[132.69552695526954,-11.660757572830036],[132.69552695526954,-11.654003263750496],[132.64872648726487,-11.635428913781794],[132.61272612726128,-11.630363181972143],[132.59472594725946,-11.62192029562273],[132.58032580325806,-11.611788832003427],[132.5659256592566,-11.598280213844376],[132.55152551525515,-11.583083018415422],[132.55152551525515,-11.576328709335897],[132.55512555125551,-11.567885822986483],[132.55872558725588,-11.554377204827418],[132.55152551525515,-11.54424574120813],[132.53712537125375,-11.53749143212859],[132.52632526325266,-11.529048545779176],[132.52992529925302,-11.508785618540585],[132.5119251192512,-11.507097041270711],[132.49392493924938,-11.476702650412818],[132.43632436324367,-11.446308259554925],[132.4147241472415,-11.441242527745274],[132.37152371523717,-11.434488218665749],[132.34632346323463,-11.437865373205511],[132.31032310323104,-11.461505454983865],[132.28872288722886,-11.461505454983865],[132.26352263522637,-11.456439723174228],[132.24192241922418,-11.45475114590434],[132.23112231122315,-11.458128300444102],[132.22752227522278,-11.461505454983865],[132.22032220322205,-11.468259764063404],[132.20952209522096,-11.47501407314293],[132.20232202322023,-11.485145536762232],[132.1951219512195,-11.488522691301995],[132.18792187921878,-11.488522691301995],[132.18432184321847,-11.485145536762232],[132.17712177121774,-11.48176838222247],[132.169921699217,-11.485145536762232],[132.1411214112141,-11.508785618540585],[132.12312123121234,-11.518917082159888],[132.10512105121052,-11.52229423669965],[132.0835208352084,-11.51722850489],[132.06912069120693,-11.507097041270711],[132.05832058320584,-11.493588423111646],[132.04752047520475,-11.488522691301995],[132.04392043920438,-11.483456959492344],[132.03672036720366,-11.473325495873056],[132.03312033120335,-11.45981687771399],[132.02952029520299,-11.451373991364576],[132.03672036720366,-11.446308259554925],[132.04752047520475,-11.446308259554925],[132.05472054720548,-11.442931105015163],[132.05832058320584,-11.434488218665749],[132.04032040320402,-11.41929102323681],[132.01512015120153,-11.422668177776572],[131.98991989919898,-11.424356755046446],[131.9827198271983,-11.399028095998219],[131.97551975519758,-11.399028095998219],[131.9647196471965,-11.405782405077744],[131.9539195391954,-11.404093827807856],[131.94671946719467,-11.393962364188567],[131.94671946719467,-11.378765168759614],[131.96831968319685,-11.373699436949977],[131.97911979119795,-11.366945127870437],[131.97551975519758,-11.351747932441498],[131.9647196471965,-11.344993623361972],[131.93951939519394,-11.353436509711372],[131.9287192871929,-11.351747932441498],[131.92151921519218,-11.341616468822195],[131.92511925119254,-11.329796427933019],[131.92511925119254,-11.321353541583605],[131.91071910719108,-11.316287809773954],[131.89631896318963,-11.31459923250408],[131.87111871118714,-11.306156346154665],[131.85671856718568,-11.302779191614903],[131.8459184591846,-11.306156346154665],[131.82431824318246,-11.31459923250408],[131.81711817118173,-11.316287809773954],[131.7667176671767,-11.311222077964317],[131.7667176671767,-11.30784492342454],[131.77391773917742,-11.299402037075126],[131.78831788317882,-11.2926477279956],[131.80631806318064,-11.290959150725712],[131.78831788317882,-11.263941914407596],[131.7991179911799,-11.263941914407596],[131.8207182071821,-11.274073378026898],[131.83871838718386,-11.277450532566661],[131.8459184591846,-11.263941914407596],[131.83871838718386,-11.243678987169005],[131.82431824318246,-11.223416059930415],[131.8207182071821,-11.201464555421936],[131.82791827918282,-11.204841709961698],[131.84951849518495,-11.206530287231587],[131.85671856718568,-11.211596019041238],[131.86751867518677,-11.220038905390652],[131.8747187471875,-11.216661750850875],[131.87831878318786,-11.206530287231587],[131.8747187471875,-11.201464555421936],[131.87111871118714,-11.19471024634241],[131.8747187471875,-11.181201628183345],[131.88191881918823,-11.172758741833931],[131.88551885518854,-11.177824473643582],[131.8891188911889,-11.184578782723108],[131.90351903519036,-11.199775978152047],[131.93591935919358,-11.247056141708768],[131.93951939519394,-11.25212187351842],[131.94671946719467,-11.25043329624853],[131.96111961119612,-11.241990409899117],[131.9827198271983,-11.226793214470177],[131.9827198271983,-11.20990744177135],[131.97191971919722,-11.189644514532759],[131.96831968319685,-11.16769301002428],[131.98631986319862,-11.176135896373694],[131.98991989919898,-11.169381587294168],[131.9827198271983,-11.14743008278569],[131.9827198271983,-11.130544310086862],[131.98631986319862,-11.128855732816973],[131.9971199711997,-11.135610041896513],[132.01512015120153,-11.138987196436275],[132.02232022320226,-11.14743008278569],[132.03312033120335,-11.164315855484517],[132.04392043920438,-11.179513050913457],[132.07632076320766,-11.193021669072522],[132.0727207272073,-11.218350328120763],[132.0871208712087,-11.228481791740066],[132.0979209792098,-11.225104637200289],[132.10512105121052,-11.213284596311112],[132.1159211592116,-11.208218864501461],[132.11952119521197,-11.221727482660526],[132.11952119521197,-11.228481791740066],[132.10872108721088,-11.24536756443888],[132.10512105121052,-11.25212187351842],[132.10872108721088,-11.262253337137707],[132.11232112321125,-11.277450532566661],[132.11232112321125,-11.28758199618595],[132.10872108721088,-11.316287809773954],[132.10872108721088,-11.331485005202907],[132.1159211592116,-11.338239314282433],[132.12312123121234,-11.339927891552321],[132.12312123121234,-11.343305046092084],[132.1267212672127,-11.343305046092084],[132.13392133921343,-11.338239314282433],[132.13392133921343,-11.331485005202907],[132.13032130321307,-11.323042118853493],[132.13032130321307,-11.312910655234191],[132.1411214112141,-11.302779191614903],[132.1519215192152,-11.326419273393256],[132.1519215192152,-11.35512508698126],[132.1519215192152,-11.385519477839154],[132.17352173521738,-11.405782405077744],[132.20232202322023,-11.410848136887395],[132.20232202322023,-11.392273786918679],[132.19152191521914,-11.366945127870437],[132.18792187921878,-11.351747932441498],[132.20232202322023,-11.35005935517161],[132.2167221672217,-11.358502241521023],[132.22752227522278,-11.363567973330674],[132.2347223472235,-11.351747932441498],[132.2347223472235,-11.339927891552321],[132.22752227522278,-11.328107850663145],[132.20952209522096,-11.311222077964317],[132.20232202322023,-11.30784492342454],[132.19872198721987,-11.309533500694428],[132.19152191521914,-11.309533500694428],[132.18792187921878,-11.302779191614903],[132.18792187921878,-11.299402037075126],[132.1951219512195,-11.290959150725712],[132.1951219512195,-11.284204841646186],[132.1951219512195,-11.269007646217247],[132.1951219512195,-11.255499028058182],[132.19152191521914,-11.243678987169005],[132.1807218072181,-11.228481791740066],[132.19152191521914,-11.216661750850875],[132.18432184321847,-11.196398823612284],[132.169921699217,-11.176135896373694],[132.15912159121592,-11.16769301002428],[132.14832148321483,-11.157561546404992],[132.14832148321483,-11.137298619166387],[132.16272162721629,-11.123790001007336],[132.18792187921878,-11.13223288735675],[132.19872198721987,-11.14743008278569],[132.2059220592206,-11.164315855484517],[132.2167221672217,-11.181201628183345],[132.2347223472235,-11.18795593726287],[132.24192241922418,-11.196398823612284],[132.25632256322564,-11.240301832629243],[132.26352263522637,-11.255499028058182],[132.28512285122855,-11.269007646217247],[132.28872288722886,-11.255499028058182],[132.27792277922782,-11.218350328120763],[132.2707227072271,-11.177824473643582],[132.27792277922782,-11.162627278214629],[132.29952299522995,-11.15249581459534],[132.31032310323104,-11.154184391865215],[132.3139231392314,-11.159250123674866],[132.32112321123213,-11.162627278214629],[132.33192331923323,-11.15249581459534],[132.33192331923323,-11.14743008278569],[132.3355233552336,-11.13223288735675],[132.34272342723426,-11.122101423737448],[132.34632346323463,-11.128855732816973],[132.349923499235,-11.145741505515801],[132.38232382323827,-11.214973173581],[132.38592385923863,-11.218350328120763],[132.38232382323827,-11.223416059930415],[132.38232382323827,-11.228481791740066],[132.38592385923863,-11.24536756443888],[132.3787237872379,-11.282516264376312],[132.38952389523894,-11.290959150725712],[132.4039240392404,-11.282516264376312],[132.41112411124112,-11.265630491677484],[132.42192421924221,-11.228481791740066],[132.44352443524434,-11.213284596311112],[132.47592475924762,-11.233547523549703],[132.5011250112501,-11.274073378026898],[132.51912519125193,-11.311222077964317],[132.5119251192512,-11.321353541583605],[132.5119251192512,-11.329796427933019],[132.51912519125193,-11.338239314282433],[132.5227252272523,-11.338239314282433],[132.52992529925302,-11.336550737012558],[132.53712537125375,-11.333173582472782],[132.53712537125375,-11.331485005202907],[132.54432544325442,-11.33486215974267],[132.55512555125551,-11.348370777901735],[132.56232562325624,-11.356813664251149],[132.56952569525697,-11.375388014219851],[132.61272612726128,-11.405782405077744],[132.63432634326347,-11.437865373205511],[132.64872648726487,-11.476702650412818],[132.67392673926742,-11.508785618540585],[132.71712717127173,-11.515539927620111],[132.7387273872739,-11.508785618540585],[132.76032760327604,-11.491899845841758],[132.77832778327786,-11.471636918603167],[132.78912789127895,-11.442931105015163],[132.79632796327962,-11.4395539504754],[132.80352803528035,-11.437865373205511],[132.81432814328144,-11.434488218665749],[132.82512825128254,-11.422668177776572],[132.8287282872829,-11.420979600506683],[132.83232832328326,-11.41760244596692],[132.83232832328326,-11.410848136887395],[132.83232832328326,-11.404093827807856],[132.83232832328326,-11.399028095998219],[132.85752857528576,-11.400716673268093],[132.87912879128794,-11.414225291427158],[132.89352893528934,-11.41929102323681],[132.90072900729007,-11.395650941458442],[132.90072900729007,-11.372010859680088],[132.89352893528934,-11.358502241521023],[132.86832868328685,-11.338239314282433],[132.8719287192872,-11.328107850663145],[132.87912879128794,-11.326419273393256],[132.88632886328867,-11.328107850663145],[132.91152911529116,-11.331485005202907],[132.91512915129152,-11.33486215974267],[132.9187291872919,-11.339927891552321],[132.92232922329225,-11.344993623361972],[132.92952929529298,-11.348370777901735],[132.9367293672937,-11.35005935517161],[132.94032940329407,-11.353436509711372],[132.94392943929438,-11.361879396060786],[132.95472954729547,-11.387208055109028],[132.95832958329584,-11.392273786918679],[132.98712987129875,-11.404093827807856],[133.01233012330124,-11.43279964139586],[133.03393033930342,-11.466571186793516],[133.04473044730446,-11.49527700038152],[133.0519305193052,-11.49527700038152],[133.05913059130592,-11.500342732191172],[133.069930699307,-11.503719886730934],[133.07713077130774,-11.510474195810474],[133.0807308073081,-11.518917082159888],[133.07353073530737,-11.547622895747892],[133.07353073530737,-11.561131513906957],[133.09873098730986,-11.596591636574487],[133.14193141931423,-11.674266190989087],[133.15273152731527,-11.68946338641804],[133.16713167131672,-11.70466058184698],[133.18513185131854,-11.716480622736157],[133.20673206732067,-11.721546354545808],[133.26073260732608,-11.729989240895222],[133.28233282332826,-11.721546354545808],[133.2931329313293,-11.687774809148152],[133.30753307533075,-11.691151963687915],[133.33633336333367,-11.687774809148152],[133.3471334713347,-11.687774809148152],[133.36513365133652,-11.697906272767455],[133.3579335793358,-11.70466058184698],[133.34353343533434,-11.711414890926505],[133.32913329133294,-11.718169200006045],[133.31833318333184,-11.735054972704873],[133.31473314733148,-11.748563590863924],[133.32553325533257,-11.758695054483226],[133.34353343533434,-11.763760786292877],[133.36513365133652,-11.763760786292877],[133.37233372333725,-11.760383631753115],[133.3759337593376,-11.753629322673575],[133.3867338673387,-11.736743549974747],[133.39753397533974,-11.728300663625333],[133.40833408334083,-11.723234931815696],[133.41553415534156,-11.728300663625333],[133.4227342273423,-11.743497859054287],[133.41913419134193,-11.748563590863924],[133.4119341193412,-11.753629322673575],[133.40473404734047,-11.760383631753115],[133.40473404734047,-11.76713794083264],[133.4119341193412,-11.770515095372403],[133.4227342273423,-11.770515095372403],[133.4407344073441,-11.770515095372403],[133.4659346593466,-11.785712290801357],[133.4767347673477,-11.790778022610994],[133.48393483934842,-11.780646558991705],[133.49113491134915,-11.777269404451943],[133.50553505535055,-11.770515095372403],[133.52353523535237,-11.762072209022989],[133.5307353073531,-11.748563590863924],[133.5415354153542,-11.76713794083264],[133.5415354153542,-11.799220908960407],[133.53433534335346,-11.834681031627952],[133.52353523535237,-11.858321113406305],[133.5307353073531,-11.86507542248583],[133.53793537935383,-11.853255381596654],[133.54873548735486,-11.822860990738775],[133.55953559535595,-11.811040949849584],[133.5847358473585,-11.799220908960407],[133.58833588335887,-11.797532331690533],[133.5991359913599,-11.800909486230296],[133.60273602736027,-11.807663795309821],[133.60273602736027,-11.814418104389361],[133.60633606336063,-11.817795258929124],[133.61713617136172,-11.8296152998183],[133.62073620736209,-11.832992454358063],[133.6387363873639,-11.82454956800865],[133.65673656736567,-11.821172413468886],[133.66033660336603,-11.817795258929124],[133.67113671136713,-11.80935237257971],[133.68193681936822,-11.770515095372403],[133.69993699936998,-11.775580827182054],[133.7179371793718,-11.777269404451943],[133.73593735937362,-11.775580827182054],[133.75033750337502,-11.770515095372403],[133.76473764737648,-11.758695054483226],[133.80073800738006,-11.714792045466282],[133.82953829538297,-11.714792045466282],[133.8367383673837,-11.716480622736157],[133.84393843938443,-11.721546354545808],[133.84753847538474,-11.726612086355459],[133.8511385113851,-11.729989240895222],[133.86913869138692,-11.733366395434984],[133.88353883538838,-11.74012070451451],[133.90153901539014,-11.738432127244636],[133.9159391593916,-11.721546354545808],[133.93393933939342,-11.745186436324161],[133.93753937539378,-11.758695054483226],[133.93393933939342,-11.763760786292877],[133.91953919539196,-11.765449363562752],[133.90873908739087,-11.773892249912166],[133.90153901539014,-11.785712290801357],[133.89433894338947,-11.797532331690533],[133.86913869138692,-11.792466599880882],[133.84753847538474,-11.805975218039947],[133.83313833138334,-11.831303877088189],[133.84393843938443,-11.854943958866542],[133.8907389073891,-11.88702692699431],[133.9447394473945,-11.91404416331244],[133.98433984339846,-11.888715504264198],[134.0059400594006,-11.881961195184658],[134.01314013140131,-11.870141154295482],[134.01674016740168,-11.856632536136416],[134.0239402394024,-11.846501072517128],[134.04194041940423,-11.841435340707477],[134.05634056340563,-11.84481249524724],[134.06714067140672,-11.854943958866542],[134.07434074340745,-11.868452577025607],[134.07434074340745,-11.873518308835244],[134.08154081540818,-11.876895463375021],[134.08514085140854,-11.881961195184658],[134.0887408874089,-11.890404081534072],[134.08514085140854,-11.902224122423249],[134.08514085140854,-11.910667008772663],[134.08154081540818,-11.917421317852202],[134.0887408874089,-11.92755278147149],[134.13194131941322,-11.88702692699431],[134.13914139141394,-11.880272617914784],[134.1427414274143,-11.88702692699431],[134.1571415714157,-11.920798472391965],[134.16074160741607,-11.930929936011268],[134.1679416794168,-11.937684245090793],[134.18234182341826,-11.941061399630556],[134.1967419674197,-11.947815708710095],[134.1967419674197,-11.961324326869146],[134.19314193141935,-11.963012904139035],[134.17514175141753,-11.964701481408909],[134.1679416794168,-11.968078635948686],[134.1679416794168,-11.9765215222981],[134.17154171541716,-11.983275831377625],[134.1787417874179,-11.99003014045715],[134.18234182341826,-11.99678444953669],[134.18954189541898,-12.008604490425867],[134.18954189541898,-12.018735954045155],[134.18954189541898,-12.040687458553634],[134.18954189541898,-12.047441767633174],[134.18234182341826,-12.05926180852235],[134.18234182341826,-12.067704694871765],[134.18594185941862,-12.076147581221178],[134.19314193141935,-12.079524735760941],[134.20034200342002,-12.076147581221178],[134.2111421114211,-12.052507499442811],[134.24714247142475,-12.02717884039457],[134.2579425794258,-12.017047376775281],[134.26154261542615,-11.998473026806565],[134.26154261542615,-11.984964408647514],[134.26514265142652,-11.9765215222981],[134.2867428674287,-11.968078635948686],[134.34794347943483,-12.020424531315044],[134.38394383943842,-12.042376035823523],[134.4307443074431,-12.057573231252462],[134.52074520745208,-12.064327540332002],[134.56034560345603,-12.052507499442811],[134.5819458194582,-12.050818922172937],[134.5927459274593,-12.064327540332002],[134.60354603546034,-12.049130344903048],[134.63234632346325,-12.030555994934346],[134.69714697146975,-11.968078635948686],[134.70434704347042,-11.961324326869146],[134.72234722347224,-11.952881440519732],[134.7475474754748,-11.947815708710095],[134.76914769147692,-11.947815708710095],[134.77274772747728,-11.952881440519732],[134.77274772747728,-11.964701481408909],[134.77274772747728,-11.986652985917388],[134.77634776347765,-11.995095872266802],[134.779947799478,-12.003538758616216],[134.7907479074791,-12.017047376775281],[134.79434794347947,-12.023801685854806],[134.8015480154802,-12.03899888128376],[134.8051480514805,-12.044064613093397],[134.8159481594816,-12.042376035823523],[134.82674826748269,-12.03899888128376],[134.83754837548378,-12.037310304013872],[134.84114841148414,-12.047441767633174],[134.84834848348487,-12.091344776650118],[134.85194851948523,-12.113296281158597],[134.86274862748627,-12.126804899317648],[134.8807488074881,-12.133559208397187],[134.92754927549277,-12.135247785667062],[134.93834938349386,-12.13693636293695],[134.9455494554946,-12.140313517476713],[134.9671496714967,-12.145379249286364],[134.97074970749708,-12.150444981096015],[134.97434974349744,-12.155510712905667],[134.99234992349926,-12.182527949223783],[134.9995499955,-12.202790876462373],[135.00675006750066,-12.207856608272024],[135.03915039150394,-12.22643095824074],[135.04635046350467,-12.233185267320266],[135.04995049950503,-12.236562421860029],[135.07155071550716,-12.260202503638382],[135.0787507875079,-12.263579658178159],[135.09315093150934,-12.260202503638382],[135.11475114751147,-12.250071040019094],[135.1327513275133,-12.243316730939554],[135.14715147151475,-12.243316730939554],[135.15795157951578,-12.253448194558857],[135.17235172351724,-12.270333967257685],[135.1867518675187,-12.280465430876987],[135.20115201152015,-12.293974049036038],[135.2191521915219,-12.300728358115578],[135.23715237152373,-12.292285471766164],[135.229952299523,-12.275399699067336],[135.19035190351906,-12.251759617288968],[135.16875168751687,-12.228119535510615],[135.20835208352082,-12.229808112780503],[135.23355233552337,-12.22643095824074],[135.25875258752586,-12.22136522643109],[135.26955269552695,-12.23487384459014],[135.2839528395284,-12.250071040019094],[135.30195301953023,-12.258513926368508],[135.32355323553236,-12.250071040019094],[135.33795337953381,-12.245005308209443],[135.3487534875349,-12.236562421860029],[135.3487534875349,-12.22643095824074],[135.32715327153272,-12.23487384459014],[135.30555305553054,-12.231496690050378],[135.29115291152914,-12.224742380970852],[135.2659526595266,-12.207856608272024],[135.2407524075241,-12.206168031002136],[135.22275222752228,-12.190970835573196],[135.23715237152373,-12.17915079468402],[135.2659526595266,-12.17915079468402],[135.30555305553054,-12.15719929017554],[135.31275312753127,-12.153822135635778],[135.32355323553236,-12.143690672016476],[135.32355323553236,-12.140313517476713],[135.3091530915309,-12.135247785667062],[135.30195301953023,-12.128493476587536],[135.32355323553236,-12.111607703888708],[135.35235352353527,-12.104853394809183],[135.36675366753667,-12.087967622110355],[135.38835388353885,-12.091344776650118],[135.41355413554135,-12.084590467570592],[135.4171541715417,-12.087967622110355],[135.40995409954098,-12.106541972079057],[135.4279542795428,-12.114984858428471],[135.46035460354602,-12.113296281158597],[135.48555485554857,-12.106541972079057],[135.5035550355504,-12.098099085729643],[135.51435514355143,-12.079524735760941],[135.51435514355143,-12.066016117601876],[135.5359553595536,-12.062638963062113],[135.5359553595536,-12.081213313030815],[135.5719557195572,-12.098099085729643],[135.58635586355865,-12.098099085729643],[135.62235622356224,-12.067704694871765],[135.6259562595626,-12.064327540332002],[135.64755647556478,-12.0541960767127],[135.6547565475655,-12.050818922172937],[135.71235712357122,-12.018735954045155],[135.7015570155702,-12.008604490425867],[135.65115651156515,-12.020424531315044],[135.6367563675637,-12.023801685854806],[135.59355593555938,-12.055884653982588],[135.5827558275583,-12.057573231252462],[135.5719557195572,-12.044064613093397],[135.56475564755647,-12.025490263124695],[135.5719557195572,-11.995095872266802],[135.59355593555938,-11.964701481408909],[135.6007560075601,-11.956258595059495],[135.62235622356224,-11.95457001778962],[135.62955629556296,-11.956258595059495],[135.62955629556296,-11.961324326869146],[135.6367563675637,-11.966390058678797],[135.64395643956442,-11.968078635948686],[135.6547565475655,-11.966390058678797],[135.65835658356582,-11.961324326869146],[135.66195661956618,-11.95457001778962],[135.6691566915669,-11.947815708710095],[135.68355683556837,-11.939372822360681],[135.7015570155702,-11.932618513281142],[135.71955719557195,-11.932618513281142],[135.73755737557377,-11.941061399630556],[135.77355773557736,-11.919109895122077],[135.80955809558094,-11.890404081534072],[135.83835838358385,-11.873518308835244],[135.84195841958422,-11.868452577025607],[135.84555845558458,-11.854943958866542],[135.85635856358567,-11.85156680432678],[135.8671586715867,-11.849878227056891],[135.87435874358744,-11.846501072517128],[135.8887588875889,-11.82454956800865],[135.88155881558816,-11.805975218039947],[135.87435874358744,-11.78908944534112],[135.8671586715867,-11.76713794083264],[135.8779587795878,-11.757006477213338],[135.89955899558998,-11.758695054483226],[135.92475924759248,-11.768826518102529],[135.93555935559357,-11.777269404451943],[135.9211592115921,-11.816106681659235],[135.90315903159035,-11.849878227056891],[135.84195841958422,-11.91404416331244],[135.80955809558094,-11.951192863249858],[135.79515795157954,-11.964701481408909],[135.7591575915759,-11.96976721321856],[135.75195751957523,-11.974832945028211],[135.74835748357486,-11.983275831377625],[135.7159571595716,-12.003538758616216],[135.72315723157232,-12.010293067695756],[135.76635766357663,-11.99678444953669],[135.7879578795788,-11.99003014045715],[135.8527585275853,-11.983275831377625],[135.8671586715867,-11.978210099567974],[135.89595895958962,-11.963012904139035],[135.91755917559175,-11.961324326869146],[135.91755917559175,-11.968078635948686],[135.90315903159035,-11.9765215222981],[135.85635856358567,-11.99003014045715],[135.82755827558276,-12.005227335886104],[135.79155791557918,-12.037310304013872],[135.76635766357663,-12.071081849411527],[135.73035730357304,-12.10147624026942],[135.71955719557195,-12.108230549348946],[135.6907569075691,-12.130182053857425],[135.6691566915669,-12.147067826556253],[135.65115651156515,-12.16395359925508],[135.65115651156515,-12.202790876462373],[135.6691566915669,-12.236562421860029],[135.68715687156873,-12.250071040019094],[135.70515705157055,-12.265268235448033],[135.71235712357122,-12.27708827633721],[135.73035730357304,-12.310859821734866],[135.75195751957523,-12.270333967257685],[135.76635766357663,-12.25682534909862],[135.78075780757808,-12.263579658178159],[135.7879578795788,-12.263579658178159],[135.79515795157954,-12.23487384459014],[135.80595805958063,-12.216299494621438],[135.84915849158494,-12.187593681033434],[135.88155881558816,-12.15213355836589],[135.8887588875889,-12.147067826556253],[135.89595895958962,-12.150444981096015],[135.90315903159035,-12.160576444715304],[135.9067590675907,-12.170707908334606],[135.91035910359102,-12.177462217414131],[135.91395913959138,-12.182527949223783],[135.9211592115921,-12.174085062874369],[135.9319593195932,-12.15719929017554],[135.93555935559357,-12.147067826556253],[135.9427594275943,-12.145379249286364],[135.95715957159575,-12.147067826556253],[135.9679596795968,-12.143690672016476],[136.02916029160292,-12.082901890300704],[136.05436054360547,-12.064327540332002],[136.0507605076051,-12.082901890300704],[136.03636036360365,-12.103164817539295],[136.01836018360183,-12.120050590238122],[136.0075600756008,-12.126804899317648],[136.00396003960043,-12.130182053857425],[135.99315993159934,-12.145379249286364],[135.99315993159934,-12.150444981096015],[135.98955989559897,-12.160576444715304],[135.9859598595986,-12.165642176524955],[135.9535595355954,-12.184216526493671],[135.9427594275943,-12.192659412843085],[135.93555935559357,-12.201102299192499],[135.93555935559357,-12.212922340081676],[135.93915939159393,-12.22136522643109],[135.94635946359466,-12.22643095824074],[135.94995949959502,-12.233185267320266],[135.95715957159575,-12.25682534909862],[135.97515975159752,-12.265268235448033],[135.99315993159934,-12.260202503638382],[136.0111601116011,-12.250071040019094],[136.02556025560256,-12.239939576399792],[136.04356043560438,-12.231496690050378],[136.06156061560614,-12.231496690050378],[136.06876068760687,-12.253448194558857],[136.06156061560614,-12.265268235448033],[136.05436054360547,-12.268645389987796],[136.04356043560438,-12.270333967257685],[136.039960399604,-12.273711121797447],[136.039960399604,-12.282154008146861],[136.02556025560256,-12.310859821734866],[135.98955989559897,-12.353074253481935],[135.9859598595986,-12.363205717101238],[135.9859598595986,-12.373337180720526],[135.98955989559897,-12.385157221609703],[135.99315993159934,-12.393600107959116],[136.00036000360006,-12.390222953419354],[136.01476014760146,-12.383468644339828],[136.01476014760146,-12.391911530689242],[136.0111601116011,-12.413863035197707],[136.01836018360183,-12.435814539706186],[136.0219602196022,-12.456077466944777],[136.03276032760328,-12.466208930564079],[136.0507605076051,-12.457766044214665],[136.05436054360547,-12.447634580595363],[136.05436054360547,-12.439191694245949],[136.05796057960583,-12.430748807896535],[136.07236072360723,-12.427371653356772],[136.0759607596076,-12.42906023062666],[136.07956079560796,-12.434125962436312],[136.08316083160832,-12.439191694245949],[136.08316083160832,-12.4442574260556],[136.09036090360905,-12.447634580595363],[136.09756097560978,-12.445946003325489],[136.10116101161015,-12.442568848785726],[136.1407614076141,-12.435814539706186],[136.14796147961482,-12.435814539706186],[136.1587615876159,-12.440880271515837],[136.16956169561695,-12.457766044214665],[136.1731617316173,-12.461143198754428],[136.1947619476195,-12.45945462148454],[136.21636216362162,-12.456077466944777],[136.25236252362527,-12.440880271515837],[136.28476284762849,-12.415551612467596],[136.3027630276303,-12.383468644339828],[136.33516335163353,-12.30410551265534],[136.36396363963638,-12.25682534909862],[136.36756367563675,-12.239939576399792],[136.36396363963638,-12.223053803700964],[136.34956349563498,-12.211233762811787],[136.33156331563316,-12.202790876462373],[136.31356313563134,-12.201102299192499],[136.29916299162994,-12.204479453732262],[136.27756277562776,-12.207856608272024],[136.259562595626,-12.209545185541913],[136.23436234362345,-12.211233762811787],[136.22356223562235,-12.192659412843085],[136.21636216362162,-12.187593681033434],[136.18756187561877,-12.192659412843085],[136.18036180361804,-12.187593681033434],[136.17676176761768,-12.170707908334606],[136.1839618396184,-12.162265021985192],[136.1947619476195,-12.15888786744543],[136.22356223562235,-12.153822135635778],[136.23076230762308,-12.131870631127299],[136.28476284762849,-12.066016117601876],[136.29916299162994,-12.050818922172937],[136.32076320763207,-12.049130344903048],[136.3279632796328,-12.050818922172937],[136.33516335163353,-12.050818922172937],[136.36036360363607,-12.023801685854806],[136.38556385563857,-12.005227335886104],[136.41796417964179,-11.973144367758323],[136.42876428764288,-11.964701481408909],[136.43956439564397,-11.961324326869146],[136.45036450364506,-11.942749976900444],[136.46476464764646,-11.946127131440207],[136.47916479164792,-11.951192863249858],[136.5115651156512,-11.941061399630556],[136.5259652596526,-11.922487049661854],[136.5547655476555,-11.915732740582314],[136.56556565565654,-11.908978431502788],[136.56556565565654,-11.89209265880396],[136.57276572765727,-11.897158390613612],[136.579965799658,-11.9072898542329],[136.57636576365763,-11.917421317852202],[136.56196561965623,-11.92755278147149],[136.54756547565478,-11.939372822360681],[136.52956529565296,-11.94950428597997],[136.5151651516515,-11.951192863249858],[136.49716497164974,-11.957947172329384],[136.47916479164792,-11.957947172329384],[136.46836468364683,-11.966390058678797],[136.4719647196472,-11.986652985917388],[136.47916479164792,-12.001850181346342],[136.489964899649,-12.006915913155979],[136.50436504365047,-11.993407294996928],[136.51876518765187,-11.988341563187277],[136.53316533165332,-11.993407294996928],[136.54756547565478,-12.03899888128376],[136.55836558365587,-12.079524735760941],[136.58716587165873,-12.082901890300704],[136.579965799658,-12.111607703888708],[136.58356583565836,-12.148756403826127],[136.5907659076591,-12.174085062874369],[136.61236612366127,-12.192659412843085],[136.6231662316623,-12.207856608272024],[136.64836648366486,-12.236562421860029],[136.65916659166595,-12.25682534909862],[136.66276662766631,-12.263579658178159],[136.69156691566917,-12.282154008146861],[136.72036720367203,-12.282154008146861],[136.74556745567457,-12.265268235448033],[136.7671676716767,-12.243316730939554],[136.75996759967603,-12.233185267320266],[136.7527675276753,-12.22643095824074],[136.72756727567275,-12.219676649161201],[136.71316713167136,-12.206168031002136],[136.70236702367026,-12.190970835573196],[136.68076680766808,-12.204479453732262],[136.68436684366844,-12.184216526493671],[136.71316713167136,-12.185905103763545],[136.73116731167312,-12.172396485604494],[136.75996759967603,-12.16395359925508],[136.78156781567816,-12.172396485604494],[136.8067680676807,-12.19434799011296],[136.82476824768247,-12.21461091735155],[136.84996849968502,-12.21461091735155],[136.8751687516875,-12.223053803700964],[136.9075690756908,-12.26189108090827],[136.92556925569255,-12.2889083172264],[136.93276932769328,-12.322679862624042],[136.92916929169292,-12.349697098942173],[136.9507695076951,-12.356451408021698],[136.96876968769686,-12.34631994440241],[136.98316983169832,-12.344631367132521],[136.97236972369723,-12.366582871641],[136.96516965169656,-12.371648603450652],[136.95796957969583,-12.375025757990414],[136.94716947169474,-12.376714335260289],[136.92916929169292,-12.376714335260289],[136.9075690756908,-12.38853437614948],[136.8607686076861,-12.434125962436312],[136.79236792367925,-12.516866248660563],[136.78156781567816,-12.53375202135939],[136.77076770767707,-12.542194907708804],[136.7671676716767,-12.525309135009977],[136.78156781567816,-12.508423362311149],[136.79956799567998,-12.483094703262907],[136.80316803168034,-12.478028971453256],[136.8067680676807,-12.467897507833953],[136.8067680676807,-12.456077466944777],[136.79956799567998,-12.447634580595363],[136.7887678876789,-12.445946003325489],[136.78156781567816,-12.45101173513514],[136.77436774367743,-12.457766044214665],[136.77076770767707,-12.461143198754428],[136.7419674196742,-12.476340394183367],[136.73836738367385,-12.508423362311149],[136.74556745567457,-12.547260639518441],[136.75996759967603,-12.574277875836572],[136.7419674196742,-12.574277875836572],[136.73116731167312,-12.577655030376334],[136.70236702367026,-12.616492307583641],[136.68076680766808,-12.670526780219888],[136.6987669876699,-12.699232593807892],[136.69156691566917,-12.712741211966957],[136.669966699667,-12.705986902887418],[136.62676626766267,-12.702609748347655],[136.6087660876609,-12.714429789236831],[136.60156601566018,-12.733004139205548],[136.6087660876609,-12.75157848917425],[136.6231662316623,-12.763398530063427],[136.6231662316623,-12.787038611841794],[136.61956619566195,-12.797170075461082],[136.6231662316623,-12.807301539080385],[136.6231662316623,-12.819121579969561],[136.61236612366127,-12.830941620858738],[136.59796597965982,-12.830941620858738],[136.58716587165873,-12.822498734509324],[136.579965799658,-12.808990116350259],[136.579965799658,-12.792104343651431],[136.5691656916569,-12.765087107333315],[136.56556565565654,-12.753267066444138],[136.56556565565654,-12.748201334634487],[136.55836558365587,-12.744824180094724],[136.55116551165514,-12.743135602824836],[136.54396543965441,-12.743135602824836],[136.53316533165332,-12.748201334634487],[136.5259652596526,-12.754955643714013],[136.5259652596526,-12.768464261873078],[136.53316533165332,-12.780284302762254],[136.53316533165332,-12.79379292092132],[136.53316533165332,-12.803924384540622],[136.5115651156512,-12.805612961810496],[136.49716497164974,-12.780284302762254],[136.47916479164792,-12.766775684603203],[136.4719647196472,-12.773529993682729],[136.47556475564755,-12.792104343651431],[136.48276482764828,-12.825875889049087],[136.48636486364865,-12.842761661747915],[136.489964899649,-12.851204548097328],[136.5259652596526,-12.879910361685333],[136.54396543965441,-12.871467475335919],[136.54756547565478,-12.891730402574524],[136.54396543965441,-12.913681907082989],[136.55836558365587,-12.911993329813114],[136.5691656916569,-12.911993329813114],[136.61236612366127,-12.93901056613123],[136.63756637566377,-12.954207761560184],[136.64116641166413,-12.976159266068649],[136.65916659166595,-12.99642219330724],[136.6555665556656,-13.006553656926542],[136.65196651966522,-13.013307966006067],[136.64116641166413,-13.00824223419643],[136.6339663396634,-12.999799347847016],[136.63036630366304,-12.99642219330724],[136.61956619566195,-12.989667884227714],[136.61956619566195,-12.982913575148189],[136.61596615966158,-12.979536420608412],[136.60156601566018,-12.982913575148189],[136.579965799658,-13.013307966006067],[136.56556565565654,-13.011619388736193],[136.56556565565654,-12.979536420608412],[136.5547655476555,-12.964339225179472],[136.54036540365405,-12.962650647909584],[136.54036540365405,-12.964339225179472],[136.53316533165332,-12.974470688798775],[136.53316533165332,-12.976159266068649],[136.5259652596526,-12.976159266068649],[136.51876518765187,-12.967716379719235],[136.5115651156512,-12.969404956989123],[136.49716497164974,-12.974470688798775],[136.49356493564937,-12.979536420608412],[136.49356493564937,-12.993045038767477],[136.49356493564937,-12.999799347847016],[136.49716497164974,-13.00824223419643],[136.50436504365047,-13.013307966006067],[136.50796507965083,-13.01668512054583],[136.52236522365223,-13.018373697815719],[136.52236522365223,-13.02343942962537],[136.52236522365223,-13.030193738704895],[136.53316533165332,-13.050456665943486],[136.56556565565654,-13.0588995522929],[136.54036540365405,-13.102802561309858],[136.52956529565296,-13.155148456676216],[136.5115651156512,-13.143328415787039],[136.49356493564937,-13.14839414759669],[136.48276482764828,-13.166968497565392],[136.47916479164792,-13.192297156613634],[136.47916479164792,-13.227757279281178],[136.4719647196472,-13.242954474710118],[136.4575645756458,-13.251397361059531],[136.4575645756458,-13.241265897440229],[136.4575645756458,-13.23282301109083],[136.45036450364506,-13.215937238392002],[136.44316443164433,-13.215937238392002],[136.4359643596436,-13.227757279281178],[136.39996399964002,-13.241265897440229],[136.38916389163893,-13.264905979218597],[136.36756367563675,-13.296988947346364],[136.35316353163535,-13.310497565505429],[136.34236342363425,-13.322317606394606],[136.33156331563316,-13.320629029124717],[136.33156331563316,-13.310497565505429],[136.32076320763207,-13.30880898823554],[136.32076320763207,-13.295300370076475],[136.34596345963462,-13.281791751917424],[136.34236342363425,-13.269971711028248],[136.33516335163353,-13.259840247408945],[136.3387633876339,-13.248020206519769],[136.35316353163535,-13.248020206519769],[136.36396363963638,-13.254774515599294],[136.3819638196382,-13.244643051980006],[136.38916389163893,-13.22606870201129],[136.3819638196382,-13.212560083852225],[136.36756367563675,-13.195674311153397],[136.3711637116371,-13.165279920295518],[136.36396363963638,-13.150082724866564],[136.36756367563675,-13.096048252230318],[136.3711637116371,-13.06565386137244],[136.36396363963638,-13.055522397753137],[136.34236342363425,-13.047079511403723],[136.33156331563316,-13.047079511403723],[136.3171631716317,-13.062276706832677],[136.30996309963103,-13.075785324991728],[136.3027630276303,-13.090982520420681],[136.30636306363067,-13.10617971584962],[136.32076320763207,-13.12137691127856],[136.30996309963103,-13.138262683977388],[136.31356313563134,-13.153459879406341],[136.30996309963103,-13.16359134302563],[136.28836288362885,-13.165279920295518],[136.2739627396274,-13.160214188485867],[136.259562595626,-13.129819797627974],[136.2487624876249,-13.129819797627974],[136.2379623796238,-13.138262683977388],[136.23076230762308,-13.150082724866564],[136.2379623796238,-13.166968497565392],[136.24516245162454,-13.182165692994346],[136.24516245162454,-13.197362888423285],[136.23076230762308,-13.209182929312462],[136.22356223562235,-13.20411719750281],[136.21636216362162,-13.20411719750281],[136.21276212762126,-13.21087150658235],[136.21276212762126,-13.222691547471527],[136.21276212762126,-13.215937238392002],[136.2055620556206,-13.23282301109083],[136.1947619476195,-13.234511588360704],[136.17676176761768,-13.236200165630592],[136.1587615876159,-13.263217401948708],[136.14796147961482,-13.239577320170355],[136.13716137161373,-13.207494352042588],[136.1587615876159,-13.172034229375043],[136.15516155161555,-13.146705570326802],[136.14796147961482,-13.123065488548448],[136.13716137161373,-13.124754065818323],[136.1047610476105,-13.158525611215978],[136.0867608676087,-13.199051465693174],[136.0867608676087,-13.229445856551052],[136.0759607596076,-13.231134433820941],[136.0651606516065,-13.222691547471527],[136.05796057960583,-13.224380124741415],[136.05436054360547,-13.229445856551052],[136.0507605076051,-13.244643051980006],[136.05796057960583,-13.291923215536713],[136.05436054360547,-13.312186142775303],[136.04716047160474,-13.312186142775303],[136.039960399604,-13.286857483727076],[136.03636036360365,-13.259840247408945],[136.02916029160292,-13.236200165630592],[136.0075600756008,-13.215937238392002],[135.99315993159934,-13.219314392931764],[135.97875978759788,-13.231134433820941],[135.9679596795968,-13.275037442837885],[135.95715957159575,-13.28854606099695],[135.9535595355954,-13.263217401948708],[135.9427594275943,-13.256463092869183],[135.92475924759248,-13.26659455648847],[135.91035910359102,-13.283480329187299],[135.9067590675907,-13.302054679156015],[135.88515885158853,-13.325694760934368],[135.88515885158853,-13.367909192681438],[135.91395913959138,-13.374663501760963],[135.9211592115921,-13.37804065630074],[135.92475924759248,-13.386483542650154],[135.92475924759248,-13.398303583539331],[135.91755917559175,-13.403369315348968],[135.9211592115921,-13.415189356238159],[135.93555935559357,-13.416877933508033],[135.96075960759606,-13.415189356238159],[135.96435964359642,-13.415189356238159],[135.9679596795968,-13.425320819857447],[135.9679596795968,-13.43545228347675],[135.96435964359642,-13.448960901635814],[135.94635946359466,-13.447272324365926],[135.93555935559357,-13.450649478905689],[135.9211592115921,-13.464158097064754],[135.89955899558998,-13.437140860746624],[135.88155881558816,-13.430386551667098],[135.85995859958598,-13.437140860746624],[135.85635856358567,-13.45571521071534],[135.85995859958598,-13.479355292493693],[135.85995859958598,-13.504683951541935],[135.87075870758707,-13.54014407420948],[135.8671586715867,-13.551964115098656],[135.86355863558634,-13.557029846908307],[135.85635856358567,-13.562095578717944],[135.84915849158494,-13.567161310527595],[135.84915849158494,-13.578981351416772],[135.84555845558458,-13.600932855925251],[135.8527585275853,-13.61613005135419],[135.87075870758707,-13.653278751291609],[135.88515885158853,-13.666787369450674],[135.91755917559175,-13.653278751291609],[135.91755917559175,-13.65834448310126],[135.9211592115921,-13.670164523990437],[135.92475924759248,-13.675230255800088],[135.89235892358926,-13.688738873959153],[135.88515885158853,-13.714067533007395],[135.90315903159035,-13.739396192055636],[135.93555935559357,-13.749527655674925],[135.97155971559715,-13.7427733465954],[135.9967599675997,-13.722510419356809],[136.03276032760328,-13.675230255800088],[136.03636036360365,-13.666787369450674],[136.03636036360365,-13.660033060371148],[136.03636036360365,-13.654967328561497],[136.04716047160474,-13.648213019481972],[136.05436054360547,-13.646524442212083],[136.0651606516065,-13.648213019481972],[136.06876068760687,-13.651590174021734],[136.0759607596076,-13.653278751291609],[136.07956079560796,-13.663410214910911],[136.07236072360723,-13.671853101260325],[136.05436054360547,-13.688738873959153],[136.04716047160474,-13.70055891484833],[136.03276032760328,-13.749527655674925],[136.00396003960043,-13.79849639650152],[136.0111601116011,-13.808627860120822],[136.0111601116011,-13.822136478279887],[136.00396003960043,-13.84577656005824],[136.00036000360006,-13.850842291867892],[135.9967599675997,-13.854219446407654],[135.99315993159934,-13.86097375548718],[135.99315993159934,-13.871105219106482],[135.99315993159934,-13.894745300884836],[135.99315993159934,-13.901499609964375],[135.96435964359642,-13.935271155362031],[135.92475924759248,-13.958911237140384],[135.90315903159035,-14.136211850478063],[135.91035910359102,-14.19531205492396],[135.8887588875889,-14.190246323114309],[135.87075870758707,-14.191934900384197],[135.8527585275853,-14.200377786733611],[135.84915849158494,-14.212197827622788],[135.84195841958422,-14.218952136702313],[135.81675816758167,-14.224017868511964],[135.8131581315813,-14.227395023051727],[135.80955809558094,-14.227395023051727],[135.7879578795788,-14.240903641210792],[135.7879578795788,-14.244280795750555],[135.7591575915759,-14.266232300259034],[135.7339573395734,-14.298315268386801],[135.67635676356764,-14.406384213659294],[135.6691566915669,-14.426647140897884],[135.65115651156515,-14.436778604517187],[135.6259562595626,-14.431712872707536],[135.60795607956078,-14.451975799946126],[135.55395553955543,-14.546536127059568],[135.53235532355325,-14.58030767245721],[135.5179551795518,-14.615767795124754],[135.52155521555216,-14.651227917792284],[135.5035550355504,-14.663047958681474],[135.47835478354784,-14.671490845030888],[135.45315453154535,-14.68499946318994],[135.44235442354426,-14.700196658618893],[135.4387543875439,-14.71201669950807],[135.43515435154353,-14.720459585857483],[135.4171541715417,-14.722148163127358],[135.4027540275403,-14.718771008587595],[135.39195391953922,-14.713705276777944],[135.37755377553776,-14.71201669950807],[135.36675366753667,-14.722148163127358],[135.3847538475385,-14.725525317667135],[135.39195391953922,-14.740722513096074],[135.39555395553958,-14.777871213033492],[135.4027540275403,-14.813331335701022],[135.449554495545,-14.916334549163878],[135.47115471154711,-14.948417517291645],[135.55035550355507,-15.01933776262672],[135.5827558275583,-15.036223535325547],[135.6151561515615,-15.046354998944835],[135.6259562595626,-15.044666421674961],[135.64395643956442,-15.03960068986531],[135.65115651156515,-15.042977844405073],[135.6691566915669,-15.066617926183426],[135.69795697956982,-15.08688085342203],[135.70875708757086,-15.097012317041319],[135.7159571595716,-15.113898089740147],[135.73755737557377,-15.108832357930496],[135.7591575915759,-15.115586667010035],[135.77715777157772,-15.127406707899212],[135.7879578795788,-15.1375381715185],[135.79515795157954,-15.145981057867914],[135.85995859958598,-15.176375448725807],[135.8887588875889,-15.20001553050416],[135.91755917559175,-15.233787075901816],[135.94995949959502,-15.264181466759709],[135.98955989559897,-15.277690084918774],[136.00396003960043,-15.281067239458537],[136.04356043560438,-15.301330166697127],[136.06156061560614,-15.313150207586304],[136.09036090360905,-15.340167443904434],[136.10116101161015,-15.34692175298396],[136.11196111961118,-15.35198748479361],[136.13716137161373,-15.357053216603262],[136.16596165961658,-15.380693298381615],[136.2055620556206,-15.397579071080443],[136.22356223562235,-15.40939911196962],[136.2379623796238,-15.419530575588922],[136.24156241562417,-15.42459630739856],[136.25596255962563,-15.470187893685392],[136.26676266762667,-15.544485293560243],[136.2739627396274,-15.559682488989182],[136.28476284762849,-15.571502529878359],[136.33156331563316,-15.603585498006126],[136.34956349563498,-15.613716961625428],[136.39636396363966,-15.617094116165191],[136.41796417964179,-15.622159847974842],[136.46836468364683,-15.6745057433412],[136.49356493564937,-15.689702938770154],[136.50796507965083,-15.704900134199093],[136.52956529565296,-15.718408752358158],[136.5547655476555,-15.72347448416781],[136.56196561965623,-15.720097329628032],[136.57276572765727,-15.713343020548507],[136.58356583565836,-15.708277288738856],[136.59436594365945,-15.711654443278618],[136.59796597965982,-15.718408752358158],[136.60516605166055,-15.745425988676274],[136.61236612366127,-15.753868875025688],[136.65916659166595,-15.787640420423344],[136.669966699667,-15.79946046131252],[136.70596705967063,-15.846740624869241],[136.71676716767166,-15.853494933948767],[136.7239672396724,-15.86193782029818],[136.71676716767166,-15.880512170266897],[136.709567095671,-15.900775097505488],[136.70596705967063,-15.915972292934427],[136.71676716767166,-15.936235220173018],[136.73476734767348,-15.937923797442906],[136.7527675276753,-15.927792333823604],[136.75996759967603,-15.912595138394664],[136.7671676716767,-15.900775097505488],[136.78516785167852,-15.900775097505488],[136.82836828368283,-15.909217983854901],[136.8607686076861,-15.907529406585013],[136.86796867968678,-15.909217983854901],[136.87876878768787,-15.914283715664553],[136.90036900369006,-15.932858065633255],[136.9075690756908,-15.936235220173018],[136.92556925569255,-15.934546642903143],[136.92556925569255,-15.929480911093492],[136.9219692196922,-15.915972292934427],[136.92916929169292,-15.895709365695836],[136.94356943569437,-15.885577902076548],[136.98316983169832,-15.865314974837943],[136.99036990369905,-15.86362639756807],[137.00837008370087,-15.892332211156074],[137.04437044370445,-15.922726602013967],[137.09117091170913,-15.94636668379232],[137.13437134371344,-15.959875301951385],[137.15237152371526,-15.973383920110436],[137.159571595716,-15.976761074650213],[137.18117181171812,-15.978449651920087],[137.18837188371884,-15.98182680645985],[137.19917199171994,-15.985203960999627],[137.24957249572498,-16.020664083667157],[137.26037260372607,-16.02910697001657],[137.26397263972643,-16.040927010905747],[137.2927729277293,-16.07132140176364],[137.36117361173615,-16.121978719860124],[137.3791737917379,-16.12873302893965],[137.40437404374046,-16.12873302893965],[137.4115741157412,-16.130421606209538],[137.41877418774192,-16.13886449255895],[137.42237422374222,-16.14899595617824],[137.43317433174332,-16.15068453344813],[137.4439744397444,-16.14899595617824],[137.45117451174514,-16.14899595617824],[137.47637476374763,-16.17094746068672],[137.48357483574836,-16.17601319249637],[137.4979749797498,-16.177701769766244],[137.51957519575194,-16.17094746068672],[137.53037530375303,-16.16925888341683],[137.55197551975522,-16.172636037956607],[137.65997659976603,-16.2114733151639],[137.68877688776888,-16.23173624240249],[137.7319773197732,-16.243556283291667],[137.74637746377465,-16.25199916964108],[137.77877778777787,-16.302656487737565],[137.7859778597786,-16.31785368316652],[137.84357843578437,-16.40059396939077],[137.8507785077851,-16.412414010279946],[137.86517865178655,-16.437742669328188],[137.91197911979123,-16.47826852380537],[137.95157951579517,-16.510351491933136],[137.99837998379985,-16.542434460060917],[138.00198001980021,-16.542434460060917],[138.06318063180635,-16.61335470539599],[138.1027810278103,-16.633617632634582],[138.15318153181533,-16.677520641651526],[138.18558185581855,-16.697783568890117],[138.2215822158222,-16.709603609779293],[138.2359823598236,-16.718046496128707],[138.26118261182614,-16.72311222793836],[138.27198271982724,-16.724800805208247],[138.2791827918279,-16.72817795974801],[138.289982899829,-16.741686577907075],[138.29358293582936,-16.745063732446837],[138.31158311583118,-16.75012946425649],[138.37278372783732,-16.745063732446837],[138.40158401584017,-16.756883773336014],[138.44478444784448,-16.778835277844493],[138.49158491584916,-16.794032473273433],[138.54558545585456,-16.778835277844493],[138.64638646386464,-16.778835277844493],[138.65718657186574,-16.780523855114367],[138.6859868598686,-16.809229668702372],[138.69678696786968,-16.814295400512023],[138.71118711187114,-16.817672555051786],[138.739987399874,-16.834558327750614],[138.75438754387545,-16.841312636830153],[138.8047880478805,-16.85144410044944],[138.84078840788408,-16.871707027688032],[138.869588695887,-16.87846133676757],[138.97038970389707,-16.885215645847097],[139.00999009990102,-16.8953471094664],[139.03879038790387,-16.91561003670499],[139.06039060390606,-16.97808739569065],[139.09279092790928,-17.001727477469004],[139.15759157591577,-17.03381044559677],[139.13959139591395,-17.065893413724552],[139.14319143191432,-17.116550731821036],[139.1539915399154,-17.168896627187394],[139.1647916479165,-17.204356749854924],[139.2079920799208,-17.2854084588093],[139.24039240392403,-17.324245736016607],[139.2727927279273,-17.34788581779496],[139.31599315993162,-17.359705858684137],[139.40239402394025,-17.366460167763663],[139.43839438394383,-17.374903054113076],[139.44919449194492,-17.381657363192616],[139.47439474394747,-17.40360886770108],[139.51039510395105,-17.42049464039991],[139.51759517595178,-17.42724894947945],[139.53199531995324,-17.440757567638514],[139.57519575195755,-17.471151958496392],[139.61839618396186,-17.513366390243462],[139.639996399964,-17.53194074021218],[139.6687966879669,-17.540383626561592],[139.69759697596976,-17.543760781101355],[139.78039780397808,-17.56740086287971],[139.80559805598057,-17.569089440149597],[139.81999819998202,-17.579220903768885],[139.83079830798312,-17.589352367388187],[139.92439924399247,-17.621435335515955],[139.9315993159932,-17.631566799135257],[139.95319953199532,-17.668715499072675],[139.9891998919989,-17.700798467200443],[140,-17.705864199010094],[140.1188011880119,-17.715995662629382],[140.2412024120241,-17.70248704447033],[140.40320403204032,-17.668715499072675],[140.4248042480425,-17.66027261272326],[140.43200432004323,-17.65351830364372],[140.44280442804427,-17.641698262754545],[140.46440464404645,-17.638321108214782],[140.50760507605077,-17.636632530944894],[140.52200522005222,-17.62987822186537],[140.54000540005399,-17.621435335515955],[140.56520565205653,-17.5977952537376],[140.57600576005763,-17.59272952192795],[140.59760597605975,-17.59104094465806],[140.60840608406085,-17.584286635578536],[140.61560615606157,-17.57753232649901],[140.64440644406443,-17.560646553800183],[140.67320673206734,-17.533629317482053],[140.6876068760688,-17.523497853862764],[140.73440734407347,-17.516743544783225],[140.74160741607415,-17.50830065843381],[140.74880748807487,-17.49479204027476],[140.7560075600756,-17.477906267575932],[140.7668076680767,-17.46777480395663],[140.78840788407888,-17.459331917607216],[140.81360813608137,-17.45257760852769],[140.8316083160832,-17.4508890312578],[140.8460084600846,-17.440757567638514],[140.85680856808568,-17.42049464039991],[140.88200882008823,-17.346197240525072],[140.89280892808927,-17.261768377030947],[140.90360903609036,-17.22461967709353],[140.9108091080911,-17.214488213474226],[140.93240932409327,-17.190848131695873],[140.939609396094,-17.16045374083798],[140.9432094320943,-17.152010854488566],[140.95040950409503,-17.1385022363295],[140.96120961209613,-17.074336300073966],[140.95760957609576,-17.05576195010525],[140.95040950409503,-17.037187600136548],[140.94680946809467,-17.01861325016783],[140.95760957609576,-17.001727477469004],[141.05121051210511,-16.886904223116986],[141.0836108361084,-16.800786782352958],[141.09081090810912,-16.797409627813195],[141.10881108811088,-16.79572105054332],[141.1160111601116,-16.794032473273433],[141.12321123211234,-16.787278164193907],[141.14481144811447,-16.758572350605903],[141.19881198811987,-16.702849300699768],[141.2060120601206,-16.68765210527083],[141.20961209612096,-16.672454909841875],[141.22401224012242,-16.63868336444422],[141.2348123481235,-16.572828850918796],[141.24561245612455,-16.55594307821997],[141.260012600126,-16.559320232759745],[141.28521285212855,-16.51879437828255],[141.29241292412928,-16.495154296504197],[141.2960129601296,-16.474891369265606],[141.30321303213032,-16.454628442027015],[141.30321303213032,-16.44280840113784],[141.29961299612995,-16.4360540920583],[141.29241292412928,-16.430988360248648],[141.28881288812892,-16.42085689662936],[141.28881288812892,-16.402282546660643],[141.2960129601296,-16.388773928501593],[141.31761317613177,-16.360068114913574],[141.3248132481325,-16.343182342214746],[141.32841328413286,-16.322919414976155],[141.34281342813432,-16.284082137768863],[141.350013500135,-16.265507787800146],[141.350013500135,-16.224981933322965],[141.35361353613536,-16.214850469703663],[141.36081360813608,-16.199653274274723],[141.3680136801368,-16.179390347036133],[141.42561425614258,-16.08145286538293],[141.4328143281433,-16.061189938144338],[141.41121411214112,-16.040927010905747],[141.3788137881379,-15.937923797442906],[141.3788137881379,-15.929480911093492],[141.38241382413827,-15.917660870204315],[141.40041400414003,-15.90415225204525],[141.4040140401404,-15.892332211156074],[141.40761407614076,-15.851806356678892],[141.44001440014404,-15.649177084292958],[141.4868148681487,-15.478630780034806],[141.56961569615697,-15.287821548538062],[141.5768157681577,-15.270935775839234],[141.5768157681577,-15.237164230441579],[141.58041580415806,-15.218589880472877],[141.5876158761588,-15.205081262313811],[141.60561605616056,-15.203392685043937],[141.59841598415983,-15.183129757805332],[141.60921609216092,-15.167932562376393],[141.62721627216274,-15.157801098757105],[141.63801638016383,-15.140915326058277],[141.63801638016383,-15.124029553359449],[141.6308163081631,-15.107143780660621],[141.63441634416347,-15.093635162501556],[141.65961659616596,-15.093635162501556],[141.65241652416523,-15.07506081253284],[141.6560165601656,-15.05479788529425],[141.66321663216632,-15.034534958055659],[141.6668166681667,-15.010894876277305],[141.66321663216632,-14.990631949038715],[141.65241652416523,-14.970369021800124],[141.64521645216456,-14.95517182637117],[141.6308163081631,-14.943351785481994],[141.6308163081631,-14.936597476402468],[141.63801638016383,-14.926466012783166],[141.61281612816128,-14.896071621925287],[141.60561605616056,-14.877497271956571],[141.54441544415448,-14.620833526934405],[141.54441544415448,-14.556667590678856],[141.54081540815412,-14.539781817980028],[141.52641526415266,-14.504321695312498],[141.5228152281523,-14.484058768073908],[141.5228152281523,-14.44015575905695],[141.5336153361534,-14.399629904579768],[141.59121591215916,-14.245969373020444],[141.6020160201602,-14.203754941273374],[141.60561605616056,-14.161540509526304],[141.59841598415983,-14.114260345969598],[141.58401584015843,-14.07542306876229],[141.56241562415624,-14.045028677904398],[141.5336153361534,-14.018011441586282],[141.4868148681487,-13.948779773521082],[141.4688146881469,-13.866039487296831],[141.47241472414726,-13.776544891993055],[141.52641526415266,-13.572227042337246],[141.55161551615515,-13.523258301510651],[141.55521555215552,-13.501306797002172],[141.55881558815588,-13.49117533338287],[141.59121591215916,-13.454026633445451],[141.59841598415983,-13.438829438016512],[141.62721627216274,-13.369597769951326],[141.6308163081631,-13.345957688172959],[141.6416164161642,-13.35102341998261],[141.65241652416523,-13.352711997252499],[141.66321663216632,-13.35102341998261],[141.67401674016742,-13.345957688172959],[141.65961659616596,-13.329071915474131],[141.66321663216632,-13.313874720045192],[141.67401674016742,-13.302054679156015],[141.67761677616778,-13.28854606099695],[141.68121681216815,-13.278414597377662],[141.69201692016924,-13.259840247408945],[141.69201692016924,-13.251397361059531],[141.69201692016924,-13.241265897440229],[141.68841688416887,-13.229445856551052],[141.68841688416887,-13.219314392931764],[141.6848168481685,-13.215937238392002],[141.68121681216815,-13.209182929312462],[141.67401674016742,-13.20411719750281],[141.66321663216632,-13.199051465693174],[141.65961659616596,-13.193985733883522],[141.6560165601656,-13.187231424803983],[141.65241652416523,-13.182165692994346],[141.6416164161642,-13.172034229375043],[141.63441634416347,-13.160214188485867],[141.62361623616238,-13.133196952167737],[141.620016200162,-13.117999756738797],[141.61641616416165,-13.048768088673611],[141.60561605616056,-13.006553656926542],[141.6020160201602,-13.00317650238678],[141.59481594815952,-12.999799347847016],[141.5876158761588,-12.994733616037365],[141.58401584015843,-12.986290729687951],[141.58401584015843,-12.977847843338537],[141.60561605616056,-12.944076297940882],[141.61641616416165,-12.928879102511942],[141.62721627216274,-12.910304752543226],[141.6308163081631,-12.893418979844398],[141.64521645216456,-12.908616175273337],[141.65961659616596,-12.89848471165405],[141.68121681216815,-12.881598938955221],[141.71721717217173,-12.864713166256394],[141.7388173881739,-12.842761661747915],[141.7532175321753,-12.819121579969561],[141.76041760417604,-12.800547230000845],[141.7640176401764,-12.785350034571906],[141.78921789217895,-12.722872675586245],[141.79641796417962,-12.69416686199824],[141.80001800018,-12.677281089299413],[141.81081810818108,-12.667149625680125],[141.82161821618217,-12.667149625680125],[141.82161821618217,-12.677281089299413],[141.8180181801818,-12.702609748347655],[141.82161821618217,-12.702609748347655],[141.83601836018363,-12.678969666569301],[141.8540185401854,-12.684035398378938],[141.86841868418685,-12.700921171077766],[141.8828188281883,-12.717806943776594],[141.8936189361894,-12.776907148222492],[141.8936189361894,-12.82081015723945],[141.8936189361894,-12.842761661747915],[141.90081900819007,-12.852893125367217],[141.91161911619116,-12.859647434446742],[141.94041940419407,-12.908616175273337],[141.9368193681937,-12.890041825304635],[141.94041940419407,-12.869778898066045],[141.9368193681937,-12.847827393557566],[141.92241922419225,-12.812367270890036],[141.91521915219153,-12.770152839142966],[141.90441904419043,-12.756644220983901],[141.99081990819911,-12.729626984665785],[142.00882008820088,-12.714429789236831],[141.9836198361984,-12.71611836650672],[141.9512195121951,-12.714429789236831],[141.92601926019262,-12.70936405742718],[141.90441904419043,-12.702609748347655],[141.89001890018903,-12.682346821109064],[141.8828188281883,-12.672215357489762],[141.83241832418327,-12.657018162060822],[141.82161821618217,-12.65364100752106],[141.83601836018363,-12.640132389361995],[141.87561875618758,-12.619869462123404],[141.8972189721897,-12.602983689424576],[141.9188191881919,-12.59622938034505],[141.92961929619298,-12.587786493995637],[141.9368193681937,-12.58440933945586],[141.9512195121951,-12.58440933945586],[141.9728197281973,-12.58440933945586],[141.94761947619475,-12.575966453106446],[141.92961929619298,-12.565834989487158],[141.9188191881919,-12.565834989487158],[141.90081900819007,-12.58440933945586],[141.88641886418867,-12.579343607646223],[141.8720187201872,-12.579343607646223],[141.83601836018363,-12.58440933945586],[141.81081810818108,-12.58440933945586],[141.79641796417962,-12.579343607646223],[141.78201782017823,-12.570900721296809],[141.77121771217713,-12.560769257677507],[141.75681756817568,-12.535440598629265],[141.74961749617495,-12.523620557740088],[141.73521735217355,-12.516866248660563],[141.69201692016924,-12.503357630501498],[141.73521735217355,-12.476340394183367],[141.74961749617495,-12.461143198754428],[141.74601746017458,-12.454388889674902],[141.6992169921699,-12.457766044214665],[141.6848168481685,-12.454388889674902],[141.6668166681667,-12.440880271515837],[141.66321663216632,-12.445946003325489],[141.65961659616596,-12.447634580595363],[141.65961659616596,-12.466208930564079],[141.65961659616596,-12.52699771227985],[141.66321663216632,-12.52868628954974],[141.68841688416887,-12.52868628954974],[141.6956169561696,-12.53375202135939],[141.6992169921699,-12.543883484978679],[141.68841688416887,-12.547260639518441],[141.6668166681667,-12.543883484978679],[141.62361623616238,-12.562457834947395],[141.59841598415983,-12.562457834947395],[141.59121591215916,-12.540506330438916],[141.59481594815952,-12.525309135009977],[141.69201692016924,-12.310859821734866],[141.710017100171,-12.248382462749206],[141.71721717217173,-12.233185267320266],[141.73161731617319,-12.229808112780503],[141.77121771217713,-12.243316730939554],[141.78921789217895,-12.243316730939554],[141.80001800018,-12.238250999129917],[141.81081810818108,-12.236562421860029],[141.80001800018,-12.231496690050378],[141.79281792817932,-12.223053803700964],[141.78921789217895,-12.21461091735155],[141.78921789217895,-12.201102299192499],[141.78201782017823,-12.201102299192499],[141.77841778417786,-12.207856608272024],[141.7748177481775,-12.216299494621438],[141.76761767617677,-12.22136522643109],[141.75681756817568,-12.219676649161201],[141.7532175321753,-12.207856608272024],[141.75681756817568,-12.19434799011296],[141.76761767617677,-12.153822135635778],[141.7856178561786,-12.114984858428471],[141.80001800018,-12.055884653982588],[141.83241832418327,-12.005227335886104],[141.8720187201872,-11.966390058678797],[141.91161911619116,-11.95457001778962],[141.90441904419043,-11.974832945028211],[141.8972189721897,-11.99171871772704],[141.8972189721897,-12.006915913155979],[141.91521915219153,-12.066016117601876],[141.9188191881919,-12.086279044840467],[141.9188191881919,-12.106541972079057],[141.9512195121951,-12.045753190363286],[141.96561965619657,-12.037310304013872],[141.97641976419766,-12.040687458553634],[142.02322023220233,-12.071081849411527],[142.03402034020343,-12.040687458553634],[142.03042030420306,-12.028867417664458],[142.01242012420124,-12.023801685854806],[141.99801998019979,-11.995095872266802],[141.99081990819911,-11.986652985917388],[141.98001980019802,-11.978210099567974],[141.96921969219693,-11.978210099567974],[141.9620196201962,-11.979898676837863],[141.9512195121951,-11.9765215222981],[141.94401944019444,-11.944438554170318],[141.94761947619475,-11.895469813343723],[141.96561965619657,-11.811040949849584],[142.00882008820088,-11.758695054483226],[142.01242012420124,-11.745186436324161],[142.0052200522005,-11.729989240895222],[142.00882008820088,-11.70466058184698],[142.13122131221314,-11.338239314282433],[142.1348213482135,-11.316287809773954],[142.13122131221314,-11.258876182597945],[142.1348213482135,-11.236924678089466],[142.13842138421387,-11.221727482660526],[142.15282152821527,-11.18795593726287],[142.160021600216,-11.150807237325452],[142.15642156421563,-11.066378373831327],[142.1456214562146,-10.983638087607062],[142.15282152821527,-10.94986654220942],[142.17442174421745,-10.929603614970816],[142.22122221222213,-10.919472151351528],[142.22842228422286,-10.927915037700942],[142.23922239222395,-10.91778357408164],[142.25722257222571,-10.911029265002114],[142.2788227882279,-10.907652110462351],[142.30042300423003,-10.905963533192462],[142.3220232202322,-10.900897801382811],[142.34002340023403,-10.890766337763523],[142.36522365223652,-10.858683369635742],[142.4012240122401,-10.819846092428449],[142.40482404824047,-10.806337474269384],[142.40842408424083,-10.791140278840444],[142.42642426424266,-10.745548692553612],[142.43362433624338,-10.728662919854784],[142.44802448024484,-10.71515430169572],[142.46242462424624,-10.711777147155956],[142.50562505625055,-10.71515430169572],[142.50922509225092,-10.711777147155956],[142.52722527225274,-10.698268528996891],[142.5308253082531,-10.694891374457129],[142.53442534425346,-10.69320279718724],[142.53802538025383,-10.691514219917366],[142.5416254162542,-10.688137065377589],[142.54522545225456,-10.688137065377589],[142.54882548825492,-10.689825642647477],[142.54882548825492,-10.696579951727003],[142.54882548825492,-10.703334260806542],[142.54882548825492,-10.708399992616194],[142.56322563225632,-10.716842878965608],[142.59922599225996,-10.73541722893431],[142.61362613626136,-10.745548692553612],[142.61722617226172,-10.752303001633138],[142.61362613626136,-10.76243446525244],[142.60642606426063,-10.772565928871728],[142.60282602826027,-10.779320237951268],[142.59202592025923,-10.786074547030793],[142.57762577625778,-10.792828856110319],[142.57042570425705,-10.796206010650081],[142.56322563225632,-10.806337474269384],[142.5560255602556,-10.828288978777863],[142.54882548825492,-10.838420442397151],[142.5416254162542,-10.841797596936928],[142.520025200252,-10.846863328746565],[142.51642516425164,-10.851929060556216],[142.50922509225092,-10.877257719604458],[142.51282512825128,-10.900897801382811],[142.51642516425164,-10.92284930589129],[142.5020250202502,-10.948177964939532],[142.52362523625237,-10.941423655860007],[142.5416254162542,-10.926226460431053],[142.55242552425523,-10.904274955922574],[142.5560255602556,-10.88232345141411],[142.56682566825668,-10.870503410524933],[142.59202592025923,-10.865437678715281],[142.61362613626136,-10.868814833255044],[142.62442624426245,-10.88232345141411],[142.63522635226354,-10.931292192240704],[142.6388263882639,-10.931292192240704],[142.649626496265,-10.929603614970816],[142.66042660426604,-10.932980769510593],[142.66762667626676,-10.951555119479295],[142.66042660426604,-10.983638087607062],[142.66762667626676,-11.003901014845667],[142.67842678426786,-10.981949510337188],[142.70002700027004,-10.970129469448011],[142.72522725227253,-10.968440892178123],[142.74322743227435,-10.975195201257648],[142.74682746827472,-10.98532666487695],[142.7540275402754,-11.015721055734844],[142.75762757627575,-11.025852519354132],[142.76842768427684,-11.039361137513197],[142.77922779227794,-11.052869755672262],[142.79002790027903,-11.08495272380003],[142.7936279362794,-11.113658537388034],[142.79722797227976,-11.144052928245927],[142.8080280802808,-11.16769301002428],[142.81162811628116,-11.171070164564043],[142.80442804428043,-11.179513050913457],[142.79722797227976,-11.19471024634241],[142.7936279362794,-11.218350328120763],[142.7936279362794,-11.248744718978656],[142.80082800828012,-11.277450532566661],[142.81882818828188,-11.296024882535363],[142.82962829628298,-11.294336305265489],[142.84042840428407,-11.30784492342454],[142.8476284762848,-11.326419273393256],[142.85122851228516,-11.341616468822195],[142.85482854828547,-11.351747932441498],[142.86922869228692,-11.372010859680088],[142.8728287282873,-11.38214232329939],[142.86922869228692,-11.390585209648805],[142.8620286202862,-11.400716673268093],[142.85122851228516,-11.41253671415727],[142.82962829628298,-11.453062568634465],[142.82242822428225,-11.478391227682692],[142.8260282602826,-11.488522691301995],[142.84042840428407,-11.498654154921297],[142.84042840428407,-11.520605659429762],[142.8368283682837,-11.56450866844672],[142.84042840428407,-11.574640132066008],[142.85482854828547,-11.593214482034725],[142.85842858428583,-11.605034522923901],[142.86562865628656,-11.736743549974747],[142.85842858428583,-11.821172413468886],[142.8620286202862,-11.836369608897826],[142.8728287282873,-11.849878227056891],[142.9268292682927,-11.893781236073849],[142.94122941229415,-11.89209265880396],[142.97362973629737,-11.925864204201616],[142.9916299162992,-11.93430709055103],[143.02043020430204,-11.930929936011268],[143.03843038430387,-11.925864204201616],[143.0780307803078,-11.9072898542329],[143.10323103231036,-11.902224122423249],[143.1248312483125,-11.910667008772663],[143.17523175231753,-11.963012904139035],[143.18243182431826,-11.963012904139035],[143.20043200432008,-11.961324326869146],[143.22923229232293,-11.95457001778962],[143.24003240032403,-11.956258595059495],[143.25083250832512,-11.968078635948686],[143.24003240032403,-11.978210099567974],[143.22563225632257,-11.981587254107737],[143.20403204032044,-11.983275831377625],[143.10683106831067,-12.135247785667062],[143.09963099631,-12.140313517476713],[143.09243092430927,-12.142002094746601],[143.08523085230854,-12.148756403826127],[143.08523085230854,-12.167330753794843],[143.08523085230854,-12.170707908334606],[143.09243092430927,-12.197725144652722],[143.0888308883089,-12.209545185541913],[143.0888308883089,-12.219676649161201],[143.08523085230854,-12.228119535510615],[143.0780307803078,-12.236562421860029],[143.08163081630818,-12.239939576399792],[143.08523085230854,-12.246693885479331],[143.09243092430927,-12.250071040019094],[143.08163081630818,-12.268645389987796],[143.0780307803078,-12.287219739956512],[143.0780307803078,-12.329434171703582],[143.08523085230854,-12.336188480783107],[143.10323103231036,-12.342942789862647],[143.13923139231395,-12.34631994440241],[143.17523175231753,-12.33956563532287],[143.18603186031862,-12.342942789862647],[143.20403204032044,-12.356451408021698],[143.2112321123211,-12.35982856256146],[143.25443254432548,-12.38853437614948],[143.2580325803258,-12.391911530689242],[143.26163261632615,-12.400354417038656],[143.27243272432725,-12.417240189737484],[143.2760327603276,-12.432437385166423],[143.27963279632797,-12.494914744152084],[143.28323283232834,-12.516866248660563],[143.29403294032943,-12.535440598629265],[143.3120331203312,-12.550637794058218],[143.32283322833229,-12.557392103137744],[143.36243362433623,-12.56921214402692],[143.3768337683377,-12.570900721296809],[143.39123391233915,-12.575966453106446],[143.4056340563406,-12.587786493995637],[143.43443434434346,-12.613115153043879],[143.43443434434346,-12.619869462123404],[143.41283412834127,-12.64688669844152],[143.40203402034024,-12.665461048410236],[143.4092340923409,-12.67390393475965],[143.41283412834127,-12.682346821109064],[143.38043380433805,-12.733004139205548],[143.3768337683377,-12.749889911904376],[143.3660336603366,-12.805612961810496],[143.3660336603366,-12.86133601171663],[143.35883358833587,-12.879910361685333],[143.38043380433805,-12.852893125367217],[143.38763387633878,-12.859647434446742],[143.40203402034024,-12.866401743526282],[143.41283412834127,-12.868090320796156],[143.42363423634237,-12.863024588986505],[143.43803438034382,-12.851204548097328],[143.44883448834491,-12.851204548097328],[143.45963459634595,-12.85627027990698],[143.47043470434704,-12.859647434446742],[143.4956349563496,-12.85627027990698],[143.510035100351,-12.849515970827454],[143.52443524435245,-12.84107308447804],[143.54243542435427,-12.832630198128626],[143.4956349563496,-12.922124793432403],[143.510035100351,-12.954207761560184],[143.51363513635135,-12.99642219330724],[143.50283502835032,-13.075785324991728],[143.5280352803528,-13.199051465693174],[143.5280352803528,-13.329071915474131],[143.53163531635317,-13.342580533633196],[143.53523535235354,-13.349334842712722],[143.57123571235712,-13.376352079030852],[143.57123571235712,-13.388172119920029],[143.58563585635858,-13.405057892618856],[143.5928359283593,-13.415189356238159],[143.5928359283593,-13.427009397127335],[143.5928359283593,-13.43545228347675],[143.58203582035821,-13.49792964246241],[143.58203582035821,-13.516503992431112],[143.59643596435967,-13.524946878780526],[143.5928359283593,-13.543521228749242],[143.5640356403564,-13.599244278655362],[143.55683556835572,-13.633015824053018],[143.54603546035463,-13.692116028498916],[143.53523535235354,-13.730953305706223],[143.53163531635317,-13.749527655674925],[143.53523535235354,-13.766413428373752],[143.55323553235536,-13.803562128311171],[143.55683556835572,-13.822136478279887],[143.5640356403564,-13.832267941899175],[143.5928359283593,-13.877859528186008],[143.60003600036003,-13.884613837265547],[143.59643596435967,-13.915008228123426],[143.60003600036003,-13.926828269012617],[143.60723607236076,-13.936959732631905],[143.61083610836107,-13.947091196251208],[143.6180361803618,-13.955534082600622],[143.67923679236793,-14.002814246157328],[143.68643686436866,-14.014634287046505],[143.69723697236975,-14.07542306876229],[143.6936369363694,-14.092308841461119],[143.70443704437048,-14.114260345969598],[143.70803708037084,-14.208820673083025],[143.7476374763748,-14.340529700133871],[143.78363783637838,-14.403007059119531],[143.80523805238056,-14.431712872707536],[143.83043830438305,-14.457041531755777],[143.8448384483845,-14.46717299537508],[143.85923859238596,-14.475615881724494],[143.87363873638736,-14.48068161353413],[143.89163891638918,-14.484058768073908],[143.92763927639277,-14.485747345343782],[143.9348393483935,-14.492501654423322],[143.94203942039422,-14.511076004392024],[143.95283952839532,-14.499255963502847],[143.96363963639635,-14.494190231693196],[143.9888398883989,-14.490813077153433],[144.0320403204032,-14.46717299537508],[144.0680406804068,-14.451975799946126],[144.11484114841147,-14.40469563638942],[144.12924129241293,-14.394564172770117],[144.14724147241475,-14.387809863690592],[144.16164161641615,-14.372612668261638],[144.17244172441724,-14.35572689556281],[144.17964179641797,-14.340529700133871],[144.18324183241833,-14.313512463815755],[144.18324183241833,-14.286495227497625],[144.1868418684187,-14.262855145719271],[144.20124201242015,-14.251035104830095],[144.20484204842052,-14.256100836639732],[144.2120421204212,-14.264543722989146],[144.21564215642155,-14.271298032068685],[144.21924219242192,-14.266232300259034],[144.22284222842228,-14.264543722989146],[144.22644226442264,-14.262855145719271],[144.230042300423,-14.25778941390962],[144.23364233642337,-14.25778941390962],[144.2516425164252,-14.291560959307276],[144.25524255242556,-14.298315268386801],[144.26964269642696,-14.303381000196453],[144.28044280442805,-14.303381000196453],[144.29124291242914,-14.303381000196453],[144.30204302043023,-14.311823886545866],[144.4388443884439,-14.251035104830095],[144.449644496445,-14.244280795750555],[144.46764467644675,-14.197000632193848],[144.47124471244712,-14.188557745844435],[144.47484474844748,-14.186869168574546],[144.47484474844748,-14.178426282225132],[144.47484474844748,-14.164917664066067],[144.47844478444784,-14.15985193225643],[144.48564485644857,-14.161540509526304],[144.50004500045003,-14.168294818605844],[144.51444514445143,-14.173360550415481],[144.52164521645216,-14.181803436764895],[144.52884528845289,-14.190246323114309],[144.53244532445325,-14.19531205492396],[144.54324543245434,-14.203754941273374],[144.58644586445865,-14.264543722989146],[144.57564575645756,-14.281429495687973],[144.5720457204572,-14.303381000196453],[144.5720457204572,-14.343906854673634],[144.57924579245793,-14.364169781912224],[144.6008460084601,-14.365858359182113],[144.62244622446224,-14.354038318292936],[144.63324633246333,-14.340529700133871],[144.6368463684637,-14.35572689556281],[144.63324633246333,-14.375989822801415],[144.6260462604626,-14.394564172770117],[144.6152461524615,-14.401318481849643],[144.6116461164612,-14.413138522738834],[144.6152461524615,-14.46717299537508],[144.61884618846187,-14.484058768073908],[144.6260462604626,-14.490813077153433],[144.6548465484655,-14.511076004392024],[144.65844658446588,-14.521207468011326],[144.6692466924669,-14.546536127059568],[144.67644676446764,-14.556667590678856],[144.69804698046983,-14.561733322488507],[144.74124741247414,-14.551601858869205],[144.7556475564756,-14.553290436139093],[144.770047700477,-14.566799054298158],[144.7808478084781,-14.583684826996986],[144.79524795247954,-14.600570599695814],[144.82044820448203,-14.60732490877534],[144.88524885248853,-14.609013486045228],[144.89964899649,-14.614079217854865],[144.90684906849071,-14.622522104204279],[144.91044910449108,-14.629276413283819],[144.91044910449108,-14.637719299633233],[144.91404914049144,-14.64785076325252],[144.9212492124921,-14.656293649601935],[144.93924939249393,-14.671490845030888],[144.93564935649357,-14.676556576840525],[144.9428494284943,-14.725525317667135],[144.9428494284943,-14.733968204016534],[144.9536495364954,-14.744099667635837],[145.01485014850152,-14.784625522113018],[145.02925029250292,-14.806577026621497],[145.05445054450547,-14.793068408462432],[145.0760507605076,-14.801511294811846],[145.09765097650978,-14.818397067510674],[145.12285122851227,-14.826839953860087],[145.13725137251373,-14.828528531129976],[145.15525155251555,-14.83697141747939],[145.16965169651695,-14.840348572019153],[145.1840518405184,-14.838659994749264],[145.20925209252096,-14.831905685669739],[145.22365223652235,-14.831905685669739],[145.21285212852132,-14.858922921987855],[145.220052200522,-14.880874426496334],[145.27765277652776,-14.946728940021757],[145.29205292052922,-14.950106094561534],[145.3136531365314,-14.943351785481994],[145.34605346053462,-14.943351785481994],[145.33165331653316,-14.970369021800124],[145.25605256052563,-15.07506081253284],[145.2488524885249,-15.095323739771445],[145.23445234452345,-15.166243985106519],[145.2380523805238,-15.183129757805332],[145.25245252452527,-15.211835571393351],[145.259652596526,-15.238852807711467],[145.27045270452703,-15.24898427133077],[145.28125281252812,-15.255738580410295],[145.29565295652958,-15.257427157680183],[145.31005310053104,-15.254050003140406],[145.31725317253176,-15.245607116790993],[145.32445324453244,-15.216901303202988],[145.34245342453426,-15.230409921362053],[145.34965349653498,-15.250672848600644],[145.34245342453426,-15.26924719856936],[145.3028530285303,-15.2844443939983],[145.2848528485285,-15.299641589427239],[145.28125281252812,-15.318215939395955],[145.29925299252994,-15.333413134824895],[145.28845288452885,-15.343544598444197],[145.2848528485285,-15.353676062063485],[145.28845288452885,-15.363807525682788],[145.2848528485285,-15.37393898930209],[145.27765277652776,-15.377316143841853],[145.26325263252636,-15.385759030191267],[145.25605256052563,-15.38913618473103],[145.2488524885249,-15.406021957429857],[145.24525245252454,-15.427973461938336],[145.24525245252454,-15.443170657367276],[145.25605256052563,-15.43641634828775],[145.26325263252636,-15.43641634828775],[145.27765277652776,-15.475253625495043],[145.28125281252812,-15.495516552733633],[145.26685266852672,-15.505648016352936],[145.26325263252636,-15.509025170892698],[145.26325263252636,-15.519156634512001],[145.26685266852672,-15.527599520861415],[145.2740527405274,-15.532665252671052],[145.2740527405274,-15.536042407210829],[145.31005310053104,-15.563059643528945],[145.3136531365314,-15.568125375338596],[145.32085320853207,-15.590076879847075],[145.32445324453244,-15.600208343466363],[145.32085320853207,-15.608651229815777],[145.30645306453067,-15.628914157054368],[145.31005310053104,-15.633979888864019],[145.3136531365314,-15.637357043403782],[145.35325353253535,-15.72178590689792],[145.36405364053644,-15.735294525056986],[145.3676536765368,-15.748803143216037],[145.36045360453608,-15.796083306772758],[145.36045360453608,-15.812969079471586],[145.36405364053644,-15.823100543090888],[145.3712537125371,-15.828166274900525],[145.37485374853748,-15.831543429440302],[145.37485374853748,-15.839986315789716],[145.3676536765368,-15.851806356678892],[145.3568535685357,-15.872069283917483],[145.35325353253535,-15.885577902076548],[145.3568535685357,-15.90415225204525],[145.36405364053644,-15.915972292934427],[145.38565385653857,-15.936235220173018],[145.42885428854288,-15.991958270079152],[145.45045450454506,-16.027418392746682],[145.46125461254616,-16.061189938144338],[145.46125461254616,-16.098338638081756],[145.43965439654397,-16.165881728877068],[145.4360543605436,-16.201341851544612],[145.4576545765458,-16.214850469703663],[145.46125461254616,-16.219916201513314],[145.46845468454688,-16.245244860561556],[145.46845468454688,-16.260442055990495],[145.46125461254616,-16.27395067414956],[145.43245432454324,-16.302656487737565],[145.41445414454148,-16.334739455865346],[145.41445414454148,-16.409036855740183],[145.40005400054002,-16.44280840113784],[145.4036540365404,-16.454628442027015],[145.40725407254075,-16.464759905646304],[145.41805418054184,-16.473202791995718],[145.42885428854288,-16.47826852380537],[145.4468544685447,-16.469825637455955],[145.46485464854652,-16.48164567834513],[145.4720547205472,-16.501908605583722],[145.47565475654756,-16.522171532822313],[145.48285482854828,-16.532302996441615],[145.51885518855192,-16.567763119109145],[145.52965529655296,-16.6015346645068],[145.54765547655478,-16.620109014475517],[145.55125551255514,-16.62517474628517],[145.5548555485555,-16.640371941714108],[145.5656556565566,-16.657257714412935],[145.580055800558,-16.672454909841875],[145.62685626856268,-16.71129218704918],[145.63765637656377,-16.718046496128707],[145.66285662856632,-16.72817795974801],[145.67005670056705,-16.734932268827535],[145.67725677256772,-16.74337515517695],[145.68085680856808,-16.765326659685428],[145.68445684456844,-16.77545812330473],[145.69525695256954,-16.783901009654144],[145.71325713257136,-16.794032473273433],[145.7240572405724,-16.800786782352958],[145.7420574205742,-16.84806694590968],[145.76005760057603,-16.85819840952898],[145.77445774457743,-16.876772759497683],[145.7780577805778,-16.885215645847097],[145.77445774457743,-16.898724264006162],[145.7636576365764,-16.902101418545925],[145.7528575285753,-16.903789995815814],[145.7420574205742,-16.90885572762545],[145.7420574205742,-16.922364345784516],[145.74925749257494,-16.932495809403818],[145.76005760057603,-16.942627273023106],[145.77085770857713,-16.95782446845206],[145.77085770857713,-16.964578777531585],[145.77085770857713,-16.981464550230413],[145.77445774457743,-16.98821885930994],[145.78525785257852,-16.991596013849716],[145.79245792457925,-16.989907436579827],[145.79965799657998,-16.9831531275003],[145.7888578885789,-16.962890200261697],[145.78525785257852,-16.944315850292995],[145.7888578885789,-16.929118654864055],[145.79605796057962,-16.922364345784516],[145.80325803258035,-16.917298613974864],[145.8320583205832,-16.891969954926637],[145.83925839258393,-16.881838491307334],[145.85725857258575,-16.89365853219651],[145.86805868058684,-16.903789995815814],[145.87885878858788,-16.905478573085688],[145.90405904059043,-16.885215645847097],[145.91125911259115,-16.876772759497683],[145.91845918459188,-16.871707027688032],[145.92565925659255,-16.86832987314827],[145.93645936459365,-16.86832987314827],[145.95445954459547,-16.87339560495792],[145.95805958059583,-16.885215645847097],[145.9508595085951,-16.897035686736274],[145.94725947259474,-16.902101418545925],[145.93645936459365,-16.912232882165227],[145.93645936459365,-16.91561003670499],[145.93285932859328,-16.92067576851464],[145.940059400594,-16.92574150032428],[145.940059400594,-16.929118654864055],[145.93285932859328,-16.95107015937252],[145.92565925659255,-16.959513045721934],[145.91845918459188,-16.964578777531585],[145.91125911259115,-16.97133308661111],[145.89325893258933,-17.006793209278655],[145.8860588605886,-17.01861325016783],[145.88245882458824,-17.04056475467631],[145.88245882458824,-17.059139104645013],[145.88965889658897,-17.074336300073966],[145.90405904059043,-17.08109060915349],[145.91125911259115,-17.089533495502906],[145.9508595085951,-17.16214231810787],[145.95805958059583,-17.18240524534646],[145.9616596165962,-17.204356749854924],[145.9616596165962,-17.22799683163329],[145.96885968859692,-17.24319402706223],[146.0048600486005,-17.293851345158714],[146.030060300603,-17.356328704144374],[146.0408604086041,-17.371525899573314],[146.0588605886059,-17.386723095002267],[146.069660696607,-17.391788826811904],[146.07686076860767,-17.401920290431207],[146.0732607326073,-17.44582329944815],[146.07686076860767,-17.504923503894048],[146.069660696607,-17.51505496751335],[146.08046080460804,-17.538695049291704],[146.1056610566106,-17.574155171959234],[146.13446134461344,-17.599483831007475],[146.14526145261453,-17.61468102643643],[146.1488614886149,-17.63325537640513],[146.14166141661417,-17.646763994564196],[146.11646116461168,-17.668715499072675],[146.1056610566106,-17.683912694501615],[146.10206102061022,-17.705864199010094],[146.1056610566106,-17.77003013526563],[146.10206102061022,-17.773407289805405],[146.09126091260913,-17.783538753424693],[146.0840608406084,-17.79535879431387],[146.08766087660877,-17.80042452612352],[146.0948609486095,-17.805490257933172],[146.0948609486095,-17.81562172155246],[146.0948609486095,-17.82744176244165],[146.09126091260913,-17.834196071521177],[146.1056610566106,-17.854458998759767],[146.1128611286113,-17.86459046237907],[146.1056610566106,-17.876410503268247],[146.09846098460986,-17.910182048665902],[146.0948609486095,-17.916936357745428],[146.09846098460986,-17.932133553174367],[146.069660696607,-17.997988066699804],[146.02286022860227,-18.085794084733692],[146.0156601566016,-18.116188475591585],[146.0048600486005,-18.141517134639827],[146.0048600486005,-18.156714330068766],[146.0048600486005,-18.17191152549772],[146.0048600486005,-18.18542014365677],[146.01206012060123,-18.198928761815836],[146.0156601566016,-18.2124373799749],[146.00846008460087,-18.236077461753254],[146.02286022860227,-18.263094698071384],[146.10206102061022,-18.349212138835398],[146.12006120061204,-18.362720756994463],[146.13086130861308,-18.364409334264337],[146.16326163261635,-18.366097911534226],[146.1740617406174,-18.36947506607399],[146.18486184861848,-18.37960652969329],[146.18846188461885,-18.39480372512223],[146.18846188461885,-18.423509538710235],[146.2136621366214,-18.492741206775435],[146.21006210062103,-18.513004134014025],[146.2280622806228,-18.506249824934486],[146.24966249662498,-18.511315556744137],[146.2676626766268,-18.518069865823662],[146.27486274862747,-18.523135597633313],[146.28926289262893,-18.516381288553788],[146.30366303663038,-18.516381288553788],[146.33966339663397,-18.526512752173076],[146.3360633606336,-18.57210433845991],[146.33246332463324,-18.612630192937104],[146.3216632166322,-18.64640173833476],[146.2928629286293,-18.710567674590294],[146.27846278462783,-18.82876808348209],[146.27486274862747,-18.835522392561614],[146.27486274862747,-18.84227670164114],[146.27126271262716,-18.852408165260442],[146.27126271262716,-18.862539628879745],[146.27486274862747,-18.87435966976892],[146.2928629286293,-18.8963111742774],[146.30006300063002,-18.90644263789669],[146.30006300063002,-18.913196946976214],[146.31446314463147,-18.923328410595516],[146.3216632166322,-18.93177129694493],[146.33246332463324,-18.958788533263046],[146.4116641166412,-19.00944585135953],[146.4260642606426,-19.028020201328246],[146.44766447664477,-19.060103169456013],[146.46206462064623,-19.075300364884953],[146.480064800648,-19.083743251234367],[146.519665196652,-19.095563292123558],[146.5340653406534,-19.105694755742846],[146.55566555665558,-19.127646260251325],[146.5628656286563,-19.1394663011405],[146.57006570065704,-19.14115487841039],[146.5772657726577,-19.14115487841039],[146.5880658806588,-19.142843455680264],[146.65646656466566,-19.183369310157445],[146.69246692466925,-19.193500773776748],[146.74646746467465,-19.173237846538157],[146.7608676086761,-19.183369310157445],[146.77886778867787,-19.212075123745464],[146.80406804068042,-19.23740378279369],[146.81846818468188,-19.247535246412994],[146.8292682926829,-19.252600978222645],[146.8508685086851,-19.264421019111822],[146.87606876068764,-19.288061100890175],[146.9048690486905,-19.304946873589003],[146.94086940869408,-19.294815409969715],[146.9588695886959,-19.29650398723959],[146.97686976869772,-19.284683946350412],[147.00927009270094,-19.252600978222645],[147.02007020070204,-19.23740378279369],[147.0236702367024,-19.2171408555551],[147.0236702367024,-19.19687792831651],[147.01647016470167,-19.17661500107792],[147.0236702367024,-19.17661500107792],[147.02727027270276,-19.19181219650686],[147.0488704887049,-19.210386546475576],[147.05247052470526,-19.228960896444292],[147.05247052470526,-19.23402662825393],[147.06327063270635,-19.242469514603343],[147.0668706687067,-19.245846669143106],[147.06327063270635,-19.250912400952757],[147.05967059670598,-19.25935528730217],[147.05247052470526,-19.289749678160064],[147.05247052470526,-19.30156971904924],[147.05967059670598,-19.31676691447818],[147.0812708127081,-19.34209557352642],[147.08487084870848,-19.352227037145724],[147.13527135271352,-19.41132724159162],[147.1460714607146,-19.397818623432556],[147.1676716767168,-19.39950720070243],[147.2216722167222,-19.413015818861496],[147.24327243272432,-19.423147282480798],[147.25407254072542,-19.424835859750672],[147.26127261272615,-19.423147282480798],[147.28647286472864,-19.41132724159162],[147.419674196742,-19.413015818861496],[147.44847448474485,-19.396130046162668],[147.4520745207452,-19.37924427346384],[147.44127441274412,-19.35898134622525],[147.4304743047431,-19.34209557352642],[147.40527405274054,-19.32858695536737],[147.3980739807398,-19.313389759938417],[147.40167401674017,-19.30325829631913],[147.42327423274236,-19.315078337208305],[147.44487444874449,-19.34209557352642],[147.49167491674916,-19.451853096068803],[147.54927549275493,-19.521084764133988],[147.56007560075602,-19.537970536832816],[147.56007560075602,-19.561610618611184],[147.56727567275675,-19.5886278549293],[147.57807578075784,-19.61395651397754],[147.59247592475924,-19.63590801848602],[147.58887588875888,-19.662925254804136],[147.59967599675997,-19.68656533658249],[147.59967599675997,-19.703451109281318],[147.5636756367564,-19.705139686551206],[147.5816758167582,-19.71189399563073],[147.59247592475924,-19.722025459250034],[147.61407614076143,-19.7541084273778],[147.6824768247683,-19.828405827252638],[147.71847718477187,-19.83347155906229],[147.78327783277837,-19.835160136332178],[147.76167761677618,-19.77605993188628],[147.75447754477545,-19.767617045536866],[147.75447754477545,-19.757485581917564],[147.7508775087751,-19.69163106839214],[147.82287822878232,-19.71358257290062],[147.84447844478444,-19.7355340774091],[147.8588785887859,-19.825028672712875],[147.87327873278736,-19.85373448630088],[147.89847898478985,-19.87568599080936],[147.92727927279276,-19.897637495317838],[147.9488794887949,-19.907768958937126],[147.97047970479707,-19.91114611347689],[148.01368013680138,-19.91114611347689],[148.01728017280175,-19.906080381667252],[148.0208802088021,-19.897637495317838],[148.0208802088021,-19.887506031698535],[148.02808028080284,-19.884128877158773],[148.03528035280357,-19.884128877158773],[148.04248042480424,-19.889194608968424],[148.04968049680497,-19.890883186238298],[148.0568805688057,-19.887506031698535],[148.07128071280715,-19.877374568079247],[148.08208082080824,-19.884128877158773],[148.11448114481146,-19.91621184528654],[148.1216812168122,-19.928031886175717],[148.12888128881292,-19.93647477252513],[148.19728197281972,-19.944917658874544],[148.2548825488255,-19.96349200884326],[148.28008280082804,-19.965180586113135],[148.2728827288273,-19.98544351335174],[148.28008280082804,-20.002329286050568],[148.30528305283053,-20.034412254178335],[148.2836828368284,-20.039477985987986],[148.26568265682658,-20.0479208723374],[148.27648276482768,-20.056363758686814],[148.28008280082804,-20.064806645036214],[148.27648276482768,-20.074938108655516],[148.26568265682658,-20.08338099500493],[148.29088290882908,-20.093512458624232],[148.30168301683017,-20.09857819043387],[148.32688326883272,-20.132349735831525],[148.33048330483308,-20.137415467641176],[148.33768337683375,-20.14079262218094],[148.3736837368374,-20.164432703959307],[148.40248402484025,-20.174564167578595],[148.40968409684098,-20.18300705392801],[148.40248402484025,-20.198204249356948],[148.4168841688417,-20.201581403896725],[148.43488434884353,-20.199892826626836],[148.4528845288453,-20.19313851754731],[148.46368463684638,-20.184695631197897],[148.46728467284674,-20.174564167578595],[148.45648456484565,-20.171187013038832],[148.43848438484383,-20.171187013038832],[148.42408424084243,-20.164432703959307],[148.43488434884353,-20.152612663070116],[148.44568445684456,-20.15092408580024],[148.46008460084602,-20.149235508530353],[148.4708847088471,-20.1441697767207],[148.47808478084784,-20.132349735831525],[148.47448474484747,-20.12052969494235],[148.46368463684638,-20.113775385862823],[148.4528845288453,-20.11039823132306],[148.4420844208442,-20.10364392224352],[148.43848438484383,-20.090135304084455],[148.43848438484383,-20.074938108655516],[148.44568445684456,-20.06142949049645],[148.46008460084602,-20.056363758686814],[148.4708847088471,-20.064806645036214],[148.4816848168482,-20.076626685925405],[148.4960849608496,-20.08338099500493],[148.52128521285215,-20.08338099500493],[148.52848528485288,-20.07831526319528],[148.54288542885428,-20.064806645036214],[148.5608856088561,-20.052986604147037],[148.56808568085683,-20.059740913226577],[148.56808568085683,-20.115463963132697],[148.57528575285755,-20.14754693126048],[148.58968589685895,-20.17287559030872],[148.6148861488615,-20.177941322118357],[148.60768607686077,-20.191449940277423],[148.6040860408604,-20.204958558436488],[148.61128611286114,-20.2134014447859],[148.62928629286296,-20.211712867516013],[148.640086400864,-20.2032699811666],[148.640086400864,-20.191449940277423],[148.64368643686436,-20.179629899388246],[148.64728647286472,-20.164432703959307],[148.6580865808658,-20.17287559030872],[148.66168661686618,-20.18131847665812],[148.66168661686618,-20.189761363007534],[148.65448654486545,-20.198204249356948],[148.67608676086763,-20.189761363007534],[148.68328683286836,-20.184695631197897],[148.68328683286836,-20.198204249356948],[148.679686796868,-20.20833571297625],[148.67248672486727,-20.218467176595553],[148.66168661686618,-20.226910062944967],[148.68328683286836,-20.237041526564255],[148.69048690486903,-20.238730103834143],[148.68688686886873,-20.24548441291367],[148.68328683286836,-20.253927299263083],[148.68328683286836,-20.264058762882385],[148.68328683286836,-20.274190226501673],[148.7228872288723,-20.257304453802846],[148.74088740887407,-20.25055014472332],[148.7588875888759,-20.253927299263083],[148.75528755287553,-20.23028721748473],[148.78048780487808,-20.240418681104018],[148.8020880208802,-20.267435917422148],[148.7912879128791,-20.28769884466074],[148.79848798487984,-20.294453153740264],[148.80928809288093,-20.30796177189933],[148.8128881288813,-20.311338926439092],[148.81648816488166,-20.321470390058394],[148.8236882368824,-20.324847544598157],[148.83448834488348,-20.324847544598157],[148.84168841688415,-20.32822469913792],[148.84888848888488,-20.34848762637651],[148.84888848888488,-20.361996244535575],[148.84168841688415,-20.37550486269464],[148.84168841688415,-20.39070205812358],[148.85248852488525,-20.421096448981473],[148.87048870488707,-20.439670798950175],[148.92448924489247,-20.47344234434783],[148.89928899288992,-20.476819498887593],[148.90648906489065,-20.49370527158642],[148.92448924489247,-20.5156567760949],[148.93528935289356,-20.534231126063617],[148.92808928089283,-20.53085397152384],[148.9208892088921,-20.529165394253965],[148.910089100891,-20.53085397152384],[148.90288902889029,-20.534231126063617],[148.89568895688956,-20.524099662444314],[148.88488884888852,-20.52072250790455],[148.87408874088743,-20.52072250790455],[148.8668886688867,-20.527476816984077],[148.85968859688597,-20.51396819882501],[148.85248852488525,-20.503836735205724],[148.84168841688415,-20.497082426126198],[148.82728827288275,-20.49370527158642],[148.83088830888312,-20.481885230697245],[148.83448834488348,-20.470065189808068],[148.83448834488348,-20.456556571649003],[148.82728827288275,-20.444736530759826],[148.8236882368824,-20.441359376220063],[148.80928809288093,-20.43291648987065],[148.8020880208802,-20.43122791260076],[148.7912879128791,-20.434605067140538],[148.7912879128791,-20.4379822216803],[148.7912879128791,-20.444736530759826],[148.78408784087844,-20.45486799437913],[148.78048780487808,-20.464999457998417],[148.77328773287735,-20.471753767077956],[148.7588875888759,-20.47344234434783],[148.74448744487444,-20.470065189808068],[148.73728737287377,-20.463310880728542],[148.7336873368734,-20.45486799437913],[148.7228872288723,-20.444736530759826],[148.70128701287013,-20.439670798950175],[148.7048870488705,-20.45486799437913],[148.71568715687158,-20.48019665342737],[148.7228872288723,-20.50045958066596],[148.71568715687158,-20.522411085174426],[148.69768697686976,-20.54267401241303],[148.67608676086763,-20.55618263057208],[148.65448654486545,-20.55618263057208],[148.66168661686618,-20.571379826001035],[148.6688866888669,-20.586577021429974],[148.69048690486903,-20.610217103208328],[148.69048690486903,-20.613594257748105],[148.6940869408694,-20.627102875907156],[148.69768697686976,-20.63048003044692],[148.70128701287013,-20.633857184986695],[148.71568715687158,-20.632168607716807],[148.71928719287195,-20.633857184986695],[148.72648726487267,-20.645677225875872],[148.72648726487267,-20.65749726676505],[148.70848708487085,-20.679448771273528],[148.72648726487267,-20.686203080353053],[148.74088740887407,-20.71828604848082],[148.76248762487626,-20.726728934830234],[148.76608766087662,-20.731794666639885],[148.78408784087844,-20.75543474841824],[148.78408784087844,-20.763877634767653],[148.7912879128791,-20.768943366577304],[148.8020880208802,-20.76725478930743],[148.8128881288813,-20.76218905749778],[148.82008820088203,-20.76050048022789],[148.83088830888312,-20.763877634767653],[148.83808838088385,-20.768943366577304],[148.84528845288452,-20.777386252926718],[148.84888848888488,-20.78751771654602],[148.85248852488525,-20.831420725562964],[148.85248852488525,-20.838175034642504],[148.84528845288452,-20.84324076645214],[148.84168841688415,-20.84999507553168],[148.84168841688415,-20.86012653915097],[148.83808838088385,-20.87025800277027],[148.83808838088385,-20.878700889119685],[148.83088830888312,-20.88545519819921],[148.82728827288275,-20.89052093000886],[148.84528845288452,-20.8871437754691],[148.85968859688597,-20.873635157310034],[148.87408874088743,-20.84324076645214],[148.8884888848889,-20.853372230071443],[148.89928899288992,-20.86519227096062],[148.910089100891,-20.873635157310034],[148.92808928089283,-20.877012311849796],[148.9568895688957,-20.87025800277027],[148.97128971289715,-20.87025800277027],[148.97848978489787,-20.88038946638956],[149.0000900009,-20.90065239362815],[149.01449014490146,-20.909095279977564],[149.01809018090182,-20.9057181254378],[149.0216902169022,-20.90065239362815],[149.02529025290255,-20.897275239088387],[149.039690396904,-20.897275239088387],[149.05769057690577,-20.898963816358275],[149.06849068490686,-20.9057181254378],[149.07209072090723,-20.924292475406517],[149.05769057690577,-20.919226743596866],[149.03609036090364,-20.915849589057103],[149.02529025290255,-20.919226743596866],[149.03609036090364,-20.934423939025805],[149.039690396904,-20.951309711724633],[149.02889028890291,-20.966506907153587],[149.02529025290255,-20.976638370772875],[149.04689046890468,-20.980015525312638],[149.07929079290795,-20.96988406169335],[149.09369093690935,-20.96988406169335],[149.10089100891008,-20.983392679852415],[149.11169111691117,-20.993524143471703],[149.15129151291512,-20.996901298011466],[149.16209162091621,-21.008721338900642],[149.16569165691658,-21.023918534329596],[149.17649176491767,-21.03742715248866],[149.18729187291876,-21.045870038838075],[149.20169201692016,-21.04755861610795],[149.20169201692016,-21.05431292518749],[149.23049230492308,-21.08977304785502],[149.23049230492308,-21.12523317052255],[149.19449194491943,-21.180956220428683],[149.1980919809198,-21.21979349763599],[149.2268922689227,-21.27382797027223],[149.23409234092344,-21.282270856621643],[149.24129241292417,-21.277205124812],[149.24849248492484,-21.25863077484329],[149.25569255692557,-21.25356504303364],[149.2628926289263,-21.25356504303364],[149.2628926289263,-21.25525362030352],[149.26649266492666,-21.26031935211317],[149.2736927369274,-21.268762238462585],[149.2736927369274,-21.272139393002348],[149.2736927369274,-21.275516547542118],[149.27009270092702,-21.280582279351762],[149.27729277292775,-21.282270856621643],[149.28809288092884,-21.280582279351762],[149.2916929169292,-21.282270856621643],[149.29889298892988,-21.29577947478071],[149.29889298892988,-21.305910938400004],[149.29529295292951,-21.309288092939767],[149.2916929169292,-21.31941955655907],[149.30249302493024,-21.34137106106754],[149.32049320493206,-21.376831183735078],[149.31329313293134,-21.385274070084492],[149.3060930609306,-21.392028379164024],[149.29889298892988,-21.395405533703787],[149.28809288092884,-21.39709411097367],[149.29529295292951,-21.408914151862852],[149.3276932769328,-21.413979883672496],[149.34209342093425,-21.42411134729179],[149.32409324093243,-21.437619965450857],[149.3060930609306,-21.447751429070152],[149.2916929169292,-21.46126004722921],[149.28809288092884,-21.48321155173769],[149.2916929169292,-21.510228788055812],[149.3060930609306,-21.50854021078593],[149.34569345693455,-21.47983439719792],[149.35649356493565,-21.495031592626866],[149.3708937089371,-21.500097324436517],[149.38889388893892,-21.5017859017064],[149.3960939609396,-21.50347447897628],[149.3924939249393,-21.533868869834166],[149.3960939609396,-21.549066065263112],[149.41409414094142,-21.555820374342645],[149.41409414094142,-21.562574683422177],[149.41769417694178,-21.576083301581235],[149.42849428494287,-21.58452618793065],[149.450094500945,-21.576083301581235],[149.45729457294573,-21.56595183796194],[149.46809468094682,-21.537246024373935],[149.4788947889479,-21.52880313802452],[149.48609486094864,-21.535557447104054],[149.49329493294937,-21.54568891072335],[149.50049500495004,-21.569328992501703],[149.44649446494464,-21.619986310598186],[149.44289442894433,-21.636872083297014],[149.44649446494464,-21.660512165075367],[149.46449464494646,-21.699349442282674],[149.47529475294755,-21.71116948317185],[149.4788947889479,-21.717923792251383],[149.4788947889479,-21.726366678600797],[149.47169471694718,-21.738186719489974],[149.46449464494646,-21.739875296759855],[149.45369453694536,-21.741563874029744],[149.43929439294396,-21.75169533764904],[149.43209432094324,-21.768581110347867],[149.4356943569436,-21.79053261485634],[149.44649446494464,-21.81079554209493],[149.45729457294573,-21.82936989206364],[149.46449464494646,-21.839501355682934],[149.47169471694718,-21.844567087492585],[149.47529475294755,-21.851321396572118],[149.4788947889479,-21.864830014731176],[149.4788947889479,-21.87327290108059],[149.47169471694718,-21.89691298285895],[149.47169471694718,-21.908733023748127],[149.47529475294755,-21.928995950986717],[149.48249482494828,-21.950947455495196],[149.52209522095222,-22.013424814480857],[149.5256952569526,-22.028622009909796],[149.52929529295295,-22.075902173466517],[149.53649536495368,-22.096165100705107],[149.57609576095763,-22.158642459690768],[149.5580955809558,-22.170462500579944],[149.55449554495544,-22.177216809659477],[149.55449554495544,-22.187348273278772],[149.57609576095763,-22.192414005088423],[149.579695796958,-22.212676932327014],[149.58329583295836,-22.217742664136658],[149.60849608496085,-22.24475990045478],[149.60489604896048,-22.254891364074084],[149.59049590495908,-22.273465714042793],[149.58689586895872,-22.281908600392207],[149.59049590495908,-22.28528575493197],[149.64089640896412,-22.302171527630797],[149.6444964449645,-22.30554868217056],[149.65169651696516,-22.313991568519974],[149.66249662496625,-22.32750018667904],[149.66969669696698,-22.34269738210798],[149.68049680496807,-22.35282884572728],[149.69849698496984,-22.344385959377867],[149.7020970209702,-22.362960309346576],[149.70569705697056,-22.383223236585167],[149.70569705697056,-22.422060513792466],[149.69849698496984,-22.44738917284071],[149.6876968769688,-22.460897790999773],[149.67329673296734,-22.47440640915883],[149.66249662496625,-22.494669336397422],[149.69489694896953,-22.487915027317896],[149.7308973089731,-22.46934067734918],[149.7668976689767,-22.445700595570827],[149.78489784897852,-22.425437668332236],[149.80289802898028,-22.38828896839481],[149.81369813698137,-22.378157504775515],[149.8316983169832,-22.38828896839481],[149.85689856898568,-22.420371936522585],[149.87129871298714,-22.440634863761176],[149.8748987489875,-22.455832059190122],[149.88209882098823,-22.4676521000793],[149.9648996489965,-22.53350661360473],[149.97209972099722,-22.545326654493905],[149.97929979299795,-22.577409622621673],[150.00090000900008,-22.609492590749447],[150.02610026100263,-22.633132672527807],[150.0477004770048,-22.644952713416984],[150.02250022500226,-22.55376954084332],[149.9540995409954,-22.401797586553876],[149.93609936099364,-22.379846082045404],[149.9288992889929,-22.356206000267044],[149.9288992889929,-22.337631650298334],[149.95049950499504,-22.344385959377867],[149.94329943299437,-22.32750018667904],[149.9288992889929,-22.313991568519974],[149.92529925299255,-22.298794373091027],[149.93249932499327,-22.278531445852437],[149.94329943299437,-22.26502282769338],[149.96129961299613,-22.221119818676428],[149.96849968499686,-22.187348273278772],[149.97929979299795,-22.173839655119714],[149.99009990099904,-22.16201961423053],[150.00090000900008,-22.158642459690768],[150.0189001890019,-22.155265305151005],[150.05490054900548,-22.14175668699194],[150.05850058500585,-22.148510996071472],[150.07650076500767,-22.156953882420886],[150.08010080100803,-22.16201961423053],[150.0837008370084,-22.170462500579944],[150.10170101701016,-22.217742664136658],[150.10890108901089,-22.232939859565604],[150.11970119701198,-22.24475990045478],[150.13050130501307,-22.254891364074084],[150.1377013770138,-22.258268518613846],[150.1485014850149,-22.26164567315361],[150.1521015210152,-22.26671140496326],[150.15570155701556,-22.278531445852437],[150.15570155701556,-22.288662909471732],[150.15930159301593,-22.297105795821146],[150.15930159301593,-22.30386010490068],[150.1629016290163,-22.31061441398021],[150.18810188101884,-22.32750018667904],[150.1917019170192,-22.339320227568216],[150.17730177301775,-22.351140268457392],[150.19530195301957,-22.378157504775515],[150.2169021690217,-22.395043277474343],[150.29970299703,-22.418683359252704],[150.3141031410314,-22.425437668332236],[150.33930339303396,-22.445700595570827],[150.35730357303572,-22.45414348192024],[150.38610386103863,-22.465963522809417],[150.4041040410404,-22.47440640915883],[150.41130411304113,-22.482849295508245],[150.42930429304295,-22.503112222746836],[150.4437044370444,-22.51493226363602],[150.46170461704617,-22.521686572715545],[150.5121051210512,-22.53519519087461],[150.5337053370534,-22.548703809033668],[150.60930609306092,-22.61118116801933],[150.61650616506165,-22.604426858939796],[150.5985059850599,-22.587541086240975],[150.58410584105843,-22.558835272652964],[150.57330573305734,-22.53012945906496],[150.58050580505807,-22.51493226363602],[150.58050580505807,-22.508177954556487],[150.54450544505448,-22.481160718238364],[150.5337053370534,-22.427126245602118],[150.54450544505448,-22.36633746388634],[150.5661056610566,-22.322434454869388],[150.5769057690577,-22.3308773412188],[150.6021060210602,-22.344385959377867],[150.62010620106201,-22.334254495758564],[150.63450634506347,-22.34269738210798],[150.64530645306456,-22.356206000267044],[150.62730627306274,-22.364648886616457],[150.63450634506347,-22.37309177296587],[150.63450634506347,-22.381534659315285],[150.6309063090631,-22.38828896839481],[150.62370623706238,-22.39166612293458],[150.63450634506347,-22.395043277474343],[150.64530645306456,-22.401797586553876],[150.6561065610656,-22.41024047290329],[150.66330663306633,-22.418683359252704],[150.67050670506706,-22.41192905017317],[150.66330663306633,-22.400109009283995],[150.65970659706596,-22.384911813855048],[150.66330663306633,-22.36802604115622],[150.67770677706778,-22.357894577536925],[150.68130681306815,-22.379846082045404],[150.6849068490685,-22.403486163823757],[150.6957069570696,-22.425437668332236],[150.70650706507064,-22.440634863761176],[150.71370713707137,-22.444012018300945],[150.73890738907392,-22.45245490465036],[150.749707497075,-22.45414348192024],[150.75690756907568,-22.459209213729885],[150.76050760507604,-22.47102925461907],[150.75690756907568,-22.482849295508245],[150.749707497075,-22.487915027317896],[150.72450724507246,-22.519997995445664],[150.70650706507064,-22.528440881795078],[150.69930699306997,-22.504800800016717],[150.68850688506888,-22.499735068207073],[150.67770677706778,-22.506489377286606],[150.67050670506706,-22.519997995445664],[150.69210692106924,-22.53519519087461],[150.67770677706778,-22.562212427192733],[150.70290702907027,-22.557146695383082],[150.71730717307173,-22.562212427192733],[150.7209072090721,-22.580786777161443],[150.71730717307173,-22.607804013479566],[150.7209072090721,-22.623001208908512],[150.7317073170732,-22.628066940718156],[150.74250742507428,-22.623001208908512],[150.75330753307531,-22.61118116801933],[150.75690756907568,-22.59936112713015],[150.76050760507604,-22.585852508971087],[150.76050760507604,-22.558835272652964],[150.7641076410764,-22.53519519087461],[150.7749077490775,-22.53012945906496],[150.78210782107823,-22.541949499954143],[150.7857078570786,-22.568966736272266],[150.77850778507786,-22.626378363448275],[150.7857078570786,-22.653395599766398],[150.80730807308072,-22.651707022496517],[150.81450814508145,-22.671969949735107],[150.82530825308254,-22.69729860878335],[150.8289082890829,-22.714184381482177],[150.82170821708218,-22.732758731450886],[150.81090810908108,-22.771596008658186],[150.80370803708036,-22.812121863135374],[150.79650796507968,-22.84758198580291],[150.78930789307896,-22.898239303899388],[150.7857078570786,-22.9066821902488],[150.7857078570786,-22.910059344788564],[150.78930789307896,-22.921879385677748],[150.7857078570786,-22.926945117487392],[150.78210782107823,-22.92863369475728],[150.7641076410764,-22.92525654021751],[150.74250742507428,-22.92863369475728],[150.73530735307355,-22.933699426566925],[150.74250742507428,-22.94383089018622],[150.749707497075,-22.950585199265753],[150.76770767707677,-22.96240524015493],[150.7749077490775,-22.96747097196458],[150.7749077490775,-22.977602435583876],[150.76770767707677,-22.98604532193329],[150.76770767707677,-22.996176785552585],[150.77130771307714,-23.004619671902],[150.7749077490775,-23.01137398098153],[150.77850778507786,-23.019816867330945],[150.77850778507786,-23.038391217299655],[150.76050760507604,-23.121131503523905],[150.7641076410764,-23.158280203461324],[150.80010800108005,-23.180231707969803],[150.79290792907932,-23.197117480668624],[150.79290792907932,-23.21231467609757],[150.80010800108005,-23.227511871526517],[150.81450814508145,-23.241020489685575],[150.81450814508145,-23.23595475787593],[150.8181081810818,-23.23257760333616],[150.82170821708218,-23.227511871526517],[150.839708397084,-23.24946337603499],[150.83250832508327,-23.27648061235311],[150.81090810908108,-23.29843211686159],[150.7857078570786,-23.308563580480886],[150.81450814508145,-23.411566793943727],[150.84330843308436,-23.435206875722088],[150.87570875708758,-23.47573273019927],[150.8829088290883,-23.489241348358334],[150.87210872108722,-23.49937281197763],[150.8541085410854,-23.50443854378728],[150.81450814508145,-23.502749966517392],[150.81450814508145,-23.509504275596925],[150.83610836108363,-23.512881430136694],[150.85770857708576,-23.51963573921622],[150.87210872108722,-23.533144357375285],[150.87570875708758,-23.553407284613876],[150.88650886508867,-23.571981634582585],[150.9081090810908,-23.565227325503052],[150.92970929709298,-23.550030130074113],[150.9369093690937,-23.54327582099458],[150.95850958509584,-23.54496439826446],[150.98730987309875,-23.56353874823317],[151.01251012510124,-23.56691590277294],[151.0269102691027,-23.580424520932],[151.04131041310416,-23.612507489059773],[151.070110701107,-23.62432752994895],[151.1025110251103,-23.653033343536954],[151.11331113311132,-23.66485338442613],[151.12771127711278,-23.674984848045433],[151.14211142111424,-23.708756393443082],[151.14931149311496,-23.72733074341179],[151.15291152911533,-23.752659402460033],[151.15651156511564,-23.761102288809447],[151.160111601116,-23.771233752428742],[151.17451174511746,-23.79149667966734],[151.17811178111782,-23.79318525693722],[151.1889118891189,-23.803316720556516],[151.21051210512104,-23.81344818417581],[151.2537125371254,-23.823579647795107],[151.26091260912608,-23.823579647795107],[151.2681126811268,-23.823579647795107],[151.2789127891279,-23.823579647795107],[151.28251282512826,-23.82695680233487],[151.28251282512826,-23.835399688684284],[151.28611286112863,-23.843842575033698],[151.289712897129,-23.85228546138311],[151.29331293312936,-23.857351193192763],[151.29691296912972,-23.857351193192763],[151.30411304113045,-23.85566261592288],[151.31491314913148,-23.857351193192763],[151.32571325713258,-23.860728347732525],[151.32931329313294,-23.86917123408194],[151.34011340113403,-23.88774558405065],[151.34731347313476,-23.896188470400062],[151.40491404914053,-23.95022294303631],[151.4229142291423,-23.97555160208455],[151.43731437314375,-23.99919168386291],[151.4409144091441,-24.005945992942436],[151.44811448114484,-24.009323147482206],[151.4517145171452,-24.002568838402674],[151.45891458914588,-23.99412595205326],[151.4661146611466,-23.989060220243616],[151.48051480514806,-23.989060220243616],[151.49851498514988,-23.99412595205326],[151.51291512915128,-24.002568838402674],[151.5309153091531,-24.01776603383162],[151.53811538115383,-24.021143188371383],[151.5417154171542,-24.026208920181034],[151.54891548915492,-24.03634038380033],[151.54531545315456,-24.043094692879862],[151.5417154171542,-24.046471847419625],[151.53811538115383,-24.049849001959387],[151.53451534515347,-24.053226156499157],[151.53451534515347,-24.073489083737748],[151.5417154171542,-24.083620547357043],[151.54891548915492,-24.092063433706457],[151.56691566915669,-24.09881774278599],[151.57051570515705,-24.09375201097634],[151.57051570515705,-24.090374856436576],[151.5741157411574,-24.088686279166694],[151.5741157411574,-24.085309124626924],[151.57051570515705,-24.07686623827751],[151.58131581315814,-24.0582918883088],[151.58131581315814,-24.043094692879862],[151.5849158491585,-24.048160424689506],[151.59211592115923,-24.053226156499157],[151.5957159571596,-24.05660331103892],[151.6209162091621,-24.05153757922927],[151.64611646116464,-24.065046197388334],[151.66771667716677,-24.085309124626924],[151.69291692916931,-24.09881774278599],[151.68211682116822,-24.06166904284857],[151.6749167491675,-24.046471847419625],[151.6641166411664,-24.029586074720797],[151.649716497165,-24.021143188371383],[151.6209162091621,-24.005945992942436],[151.61731617316173,-23.99581452932314],[151.62451624516245,-23.983994488433964],[151.64251642516427,-23.978928756624313],[151.66051660516604,-23.977240179354432],[151.67851678516786,-23.982305911164083],[151.68931689316895,-23.990748797513497],[151.70011700117004,-24.002568838402674],[151.71451714517144,-24.01270030202197],[151.73251732517326,-24.01607745656174],[151.73251732517326,-24.022831765641264],[151.71091710917108,-24.043094692879862],[151.72171721717217,-24.0582918883088],[151.739717397174,-24.063357620118452],[151.739717397174,-24.049849001959387],[151.75051750517508,-24.046471847419625],[151.77931779317794,-24.022831765641264],[151.77931779317794,-24.053226156499157],[151.78651786517867,-24.088686279166694],[151.79731797317976,-24.12076924729446],[151.81171811718116,-24.14272075180294],[151.8369183691837,-24.16298367904153],[151.85131851318516,-24.171426565390945],[151.86931869318693,-24.173115142660826],[151.87651876518765,-24.173115142660826],[151.87651876518765,-24.171426565390945],[151.88371883718838,-24.166360833581294],[151.88731887318875,-24.15960652450176],[151.88731887318875,-24.154540792692117],[151.8909189091891,-24.147786483612585],[151.89811898118984,-24.146097906342703],[151.9017190171902,-24.154540792692117],[151.9017190171902,-24.178180874470478],[151.90531905319057,-24.186623760819884],[151.91251912519124,-24.196755224439187],[151.93411934119342,-24.210263842598245],[151.9377193771938,-24.21870672894766],[151.94131941319415,-24.235592501646487],[152.00252002520028,-24.411204537714283],[152.06012060120605,-24.514207751177132],[152.08532085320854,-24.53109352387596],[152.12132121321213,-24.59188230559174],[152.15012150121504,-24.61889954190986],[152.30492304923052,-24.723591332642584],[152.32652326523265,-24.728657064452236],[152.34452344523447,-24.730345641722117],[152.4057240572406,-24.748919991690826],[152.43812438124382,-24.770871496199298],[152.47052470524704,-24.806331618866835],[152.49212492124923,-24.846857473344024],[152.49932499324996,-24.892449059630856],[152.49932499324996,-24.978566500394876],[152.50652506525068,-24.998829427633467],[152.57852578525785,-25.100144063826427],[152.58212582125822,-25.10858695017584],[152.5929259292593,-25.120406991065018],[152.63252632526326,-25.142358495573497],[152.63612636126362,-25.160932845542206],[152.63252632526326,-25.16937573189162],[152.62532625326253,-25.172752886431383],[152.6037260372604,-25.174441463701264],[152.60012600126004,-25.172752886431383],[152.58572585725858,-25.16768715462174],[152.57852578525785,-25.16768715462174],[152.57132571325712,-25.16937573189162],[152.56772567725676,-25.174441463701264],[152.56772567725676,-25.177818618241034],[152.57132571325712,-25.181195772780796],[152.59652596525967,-25.182884350050678],[152.6181261812618,-25.19132723640009],[152.63612636126362,-25.201458700019387],[152.65052650526508,-25.214967318178452],[152.66132661326617,-25.22847593633751],[152.67572675726757,-25.241984554496575],[152.69732697326975,-25.25211601811587],[152.7477274772748,-25.258870327195403],[152.77292772927728,-25.263936059005047],[152.79812798127983,-25.274067522624343],[152.8161281612816,-25.284198986243645],[152.8161281612816,-25.27237894535446],[152.8161281612816,-25.258870327195403],[152.8161281612816,-25.24705028630622],[152.83052830528305,-25.241984554496575],[152.83412834128342,-25.24705028630622],[152.84132841328415,-25.27069036808458],[152.85212852128524,-25.27575609989423],[152.90252902529028,-25.284198986243645],[152.91332913329137,-25.287576140783408],[152.91692916929168,-25.297707604402703],[152.91692916929168,-25.324724840720826],[152.93132931329313,-25.41590801329449],[152.92772927729277,-25.422662322374023],[152.88812888128882,-25.444613826882495],[152.8809288092881,-25.45305671323191],[152.87372873728737,-25.464876754121093],[152.870128701287,-25.47500821774039],[152.89172891728919,-25.468253908660856],[152.9457294572946,-25.43785951780297],[152.9637296372964,-25.43785951780297],[152.96732967329672,-25.45305671323191],[152.96012960129605,-25.463188176851205],[152.9457294572946,-25.469942485930737],[152.93852938529386,-25.47500821774039],[152.9457294572946,-25.486828258629565],[152.96012960129605,-25.490205413169335],[152.96732967329672,-25.49695972224886],[152.95652956529568,-25.513845494947688],[152.92052920529204,-25.54423988580558],[152.90612906129064,-25.5611256585044],[152.8989289892899,-25.584765740282762],[152.909729097291,-25.64386594472866],[152.909729097291,-25.669194603776894],[152.88452884528846,-25.674260335586546],[152.89532895328955,-25.687768953745604],[152.909729097291,-25.699588994634787],[152.93852938529386,-25.716474767333615],[152.9241292412924,-25.72154049914326],[152.91692916929168,-25.72154049914326],[152.92772927729277,-25.74011484911197],[152.94212942129423,-25.753623467271034],[152.9637296372964,-25.760377776350566],[152.98172981729817,-25.76375493089033],[153.02133021330212,-25.824543712606108],[153.02853028530285,-25.8448066398447],[153.03573035730358,-25.88533249432188],[153.03573035730358,-25.903906844290596],[153.0321303213032,-25.90728399883036],[153.02493024930249,-25.919104039719535],[153.02133021330212,-25.92754692606895],[153.02133021330212,-25.937678389688244],[153.02133021330212,-25.96976135781602],[153.02853028530285,-25.96976135781602],[153.05733057330576,-25.915726885179772],[153.06093060930613,-25.903906844290596],[153.06093060930613,-25.87182387616282],[153.0645306453065,-25.853249526194112],[153.07533075330753,-25.838052330765166],[153.0645306453065,-25.822855135336226],[153.06093060930613,-25.817789403526575],[153.0789307893079,-25.824543712606108],[153.08253082530825,-25.836363753495284],[153.08973089730898,-25.86506956708329],[153.11133111331117,-25.917415462449654],[153.1221312213122,-25.93430123514848],[153.14733147331475,-25.942744121497896],[153.17973179731797,-25.944432698767777],[153.20493204932052,-25.93430123514848],[153.20133201332015,-25.949498430577428],[153.18333183331833,-25.974827089625663],[153.1761317613176,-25.998467171404023],[153.15813158131584,-26.03561587134144],[153.14733147331475,-26.04743591223062],[153.14013140131402,-26.060944530389683],[153.1329313293133,-26.103158962136753],[153.12573125731257,-26.11329042575605],[153.11133111331117,-26.163947743852525],[153.1077310773108,-26.17914493928147],[153.0789307893079,-26.28045957547443],[153.07533075330753,-26.31591969814197],[153.07533075330753,-26.334494048110678],[153.0789307893079,-26.351379820809505],[153.08973089730898,-26.366577016238452],[153.10413104131044,-26.373331325317984],[153.11853118531184,-26.375019902587866],[153.12933129331293,-26.37839705712763],[153.13653136531366,-26.393594252556575],[153.1221312213122,-26.42398864341446],[153.11493114931153,-26.457760188812117],[153.11133111331117,-26.64688084303898],[153.11493114931153,-26.662078038467925],[153.11853118531184,-26.67052092481734],[153.11853118531184,-26.675586656626983],[153.15093150931511,-26.684029542976397],[153.1437314373144,-26.732998283803],[153.1437314373144,-26.749884056501827],[153.15093150931511,-26.781967024629594],[153.15453154531548,-26.793787065518778],[153.1617316173162,-26.798852797328422],[153.15093150931511,-26.805607106407955],[153.14733147331475,-26.824181456376664],[153.1437314373144,-26.844444383615254],[153.1437314373144,-26.8596415790442],[153.1437314373144,-26.85288726996467],[153.14733147331475,-26.891724547171968],[153.15093150931511,-26.925496092569624],[153.20493204932052,-27.045385078731293],[153.20853208532088,-27.077468046859067],[153.19053190531906,-27.099419551367546],[153.15453154531548,-27.0842223559386],[153.11493114931153,-27.089288087748244],[153.08253082530825,-27.111239592256723],[153.0537305373054,-27.139945405844728],[153.04653046530467,-27.151765446733904],[153.03933039330394,-27.173716951242383],[153.03933039330394,-27.193979878480974],[153.05733057330576,-27.202422764830388],[153.0789307893079,-27.20411134210027],[153.08973089730898,-27.202422764830388],[153.10053100531007,-27.199045610290625],[153.11133111331117,-27.19060272394121],[153.11853118531184,-27.197357033020737],[153.11493114931153,-27.24294861930757],[153.10413104131044,-27.254768660196753],[153.08973089730898,-27.261522969276285],[153.07173071730716,-27.275031587435343],[153.06093060930613,-27.295294514673934],[153.0645306453065,-27.31049171010288],[153.07533075330753,-27.322311750992057],[153.08973089730898,-27.332443214611352],[153.1077310773108,-27.340886100960766],[153.15093150931511,-27.35270614184995],[153.16893168931688,-27.364526182739127],[153.1761317613176,-27.383100532707836],[153.18333183331833,-27.428692118994668],[153.19053190531906,-27.44895504623326],[153.20853208532088,-27.465840818932087],[153.22293222932228,-27.467529396201968],[153.23733237332374,-27.467529396201968],[153.2517325173252,-27.47259512801162],[153.25893258932592,-27.484415168900796],[153.26973269732696,-27.49623520978998],[153.28053280532805,-27.523252446108103],[153.28413284132841,-27.533383909727398],[153.28413284132841,-27.54013821880693],[153.28413284132841,-27.546892527886456],[153.3057330573306,-27.570532609664816],[153.30933309333096,-27.57728691874435],[153.30933309333096,-27.63976427773001],[153.3165331653317,-27.65496147315895],[153.32373323733236,-27.666781514048132],[153.34533345333455,-27.687044441286723],[153.3489334893349,-27.6988644821759],[153.3489334893349,-27.70055305944578],[153.35613356133564,-27.72250456395426],[153.36333363333637,-27.732636027573555],[153.36693366933673,-27.736013182113318],[153.37053370533704,-27.739390336653088],[153.39933399333995,-27.76640757297121],[153.41013410134104,-27.78160476840015],[153.40653406534068,-27.795113386559215],[153.40293402934032,-27.808622004718274],[153.41013410134104,-27.815376313797806],[153.4281342813428,-27.810310581988162],[153.4389343893439,-27.791736232019453],[153.44613446134463,-27.791736232019453],[153.44613446134463,-27.810310581988162],[153.43173431734317,-27.86096790008464],[153.43173431734317,-27.877853672783466],[153.43173431734317,-27.935265299959475],[153.41733417334177,-27.908248063641352],[153.41013410134104,-27.918379527260655],[153.40293402934032,-27.935265299959475],[153.39933399333995,-27.95383964992819],[153.40293402934032,-27.970725422627012],[153.4137341373414,-27.975791154436664],[153.42093420934208,-27.96903684535713],[153.43173431734317,-27.957216804467954],[153.4389343893439,-27.94877391811854],[153.44613446134463,-27.980856886246315],[153.449734497345,-28.07372863608986],[153.46413464134645,-28.09230298605857],[153.4821348213482,-28.11087733602728],[153.5037350373504,-28.148026035964698],[153.50733507335076,-28.14971461323458],[153.53253532535325,-28.17842042682259],[153.56133561335616,-28.17504327228282],[153.5721357213572,-28.19361762225153],[153.5829358293583,-28.245963517617895],[153.59013590135902,-28.267915022126367],[153.59013590135902,-28.31857234022285],[153.56493564935653,-28.460412830893],[153.56133561335616,-28.50431583990995],[153.57573575735756,-28.590433280673963],[153.5829358293583,-28.60731905337279],[153.62253622536224,-28.64446775331021],[153.62973629736297,-28.661353526009037],[153.62973629736297,-28.66641925781869],[153.61893618936193,-28.68668218505728],[153.61533615336157,-28.695125071406693],[153.61893618936193,-28.70525653502599],[153.61893618936193,-28.717076575915165],[153.61893618936193,-28.72889661680435],[153.6009360093601,-28.760979584932116],[153.6009360093601,-28.782931089440595],[153.6117361173612,-28.826834098457546],[153.60453604536048,-28.867359952934727],[153.5829358293583,-28.89606576652273],[153.52173521735216,-28.943345930079452],[153.47493474934748,-29.00075755725546],[153.45333453334536,-29.036217679923],[153.4389343893439,-29.073366379860417],[153.43533435334353,-29.085186420749594],[153.43533435334353,-29.093629307099008],[153.44613446134463,-29.14090947065573],[153.44613446134463,-29.151040934275024],[153.44253442534426,-29.156106666084668],[153.42093420934208,-29.16117239789432],[153.41733417334177,-29.16454955243408],[153.4137341373414,-29.176369593323265],[153.37053370533704,-29.24222410684869],[153.3489334893349,-29.281061384055988],[153.34173341733418,-29.323275815803058],[153.3489334893349,-29.360424515740476],[153.36693366933673,-29.382376020248948],[153.37053370533704,-29.395884638408013],[153.359733597336,-29.41277041110684],[153.35613356133564,-29.424590451996018],[153.35613356133564,-29.443164801964727],[153.359733597336,-29.461739151933436],[153.36333363333637,-29.47018203828285],[153.35253352533528,-29.49044496552144],[153.34533345333455,-29.53603655180828],[153.32733327333273,-29.564742365396285],[153.32373323733236,-29.57656240628546],[153.32373323733236,-29.596825333524052],[153.32373323733236,-29.601891065333703],[153.32733327333273,-29.612022528953],[153.32733327333273,-29.61877683803253],[153.32733327333273,-29.623842569842175],[153.3165331653317,-29.63566261073136],[153.3165331653317,-29.642416919810884],[153.3165331653317,-29.666057001589245],[153.32373323733236,-29.682942774288072],[153.320133201332,-29.69813996971702],[153.2949329493295,-29.735288669654437],[153.29133291332914,-29.753863019623147],[153.28773287732878,-29.770748792321974],[153.28773287732878,-29.785945987750914],[153.2949329493295,-29.826471842228102],[153.29133291332914,-29.834914728577516],[153.2769327693277,-29.850111924006455],[153.27333273332732,-29.856866233085988],[153.26973269732696,-29.90245781937282],[153.26613266132665,-29.9244093238813],[153.25893258932592,-29.94298367385001],[153.22293222932228,-29.98688668286696],[153.21933219332192,-30.0020838782959],[153.2157321573216,-30.00714961010555],[153.20133201332015,-30.024035382804378],[153.1977319773198,-30.035855423693555],[153.20133201332015,-30.04598688731285],[153.20493204932052,-30.073004123630973],[153.20493204932052,-30.1287271735371],[153.19053190531906,-30.17431875982394],[153.13653136531366,-30.258747623318072],[153.14733147331475,-30.285764859636195],[153.1329313293133,-30.324602136843495],[153.08973089730898,-30.388768073099037],[153.08253082530825,-30.405653845797865],[153.07533075330753,-30.43773681392564],[153.05013050130503,-30.473196936593176],[153.0429304293043,-30.493459863831767],[153.02133021330212,-30.576200150056017],[153.01773017730176,-30.633611777232034],[153.00693006930072,-30.652186127200743],[153.0105301053011,-30.655563281740505],[152.9889298892989,-30.734926413424994],[152.9997299973,-30.75181218612382],[153.00333003330036,-30.836241049617954],[153.02853028530285,-30.87507832682526],[153.03573035730358,-30.881832635904786],[153.0429304293043,-30.88858694498432],[153.0537305373054,-30.89365267679397],[153.0645306453065,-30.89365267679397],[153.0681306813068,-30.885209790444556],[153.07173071730716,-30.881832635904786],[153.0789307893079,-30.885209790444556],[153.08613086130862,-30.89534125406385],[153.08973089730898,-30.905472717683146],[153.08613086130862,-30.92742422219162],[153.08613086130862,-30.935867108541032],[153.08253082530825,-30.944309994890446],[153.0645306453065,-30.959507190319393],[153.04653046530467,-30.99327873571705],[153.03933039330394,-31.030427435654467],[153.04653046530467,-31.047313208353295],[153.05733057330576,-31.05237894016294],[153.06093060930613,-31.060821826512353],[153.06093060930613,-31.07770759921118],[153.0429304293043,-31.089527640100357],[153.0105301053011,-31.12161060822813],[152.98172981729817,-31.165513617245082],[152.9781297812978,-31.199285162642738],[152.96012960129605,-31.23981101711992],[152.97092970929708,-31.255008212548866],[152.9781297812978,-31.319174148804407],[152.93132931329313,-31.36645431236112],[152.91692916929168,-31.395160125949126],[152.91692916929168,-31.420488784997367],[152.9349293492935,-31.439063134966077],[152.93852938529386,-31.454260330395023],[152.94212942129423,-31.462703216744437],[152.9349293492935,-31.482966143983028],[152.90612906129064,-31.504917648491507],[152.87732877328773,-31.53193488480963],[152.8449284492845,-31.569083584747048],[152.84852848528487,-31.599477975604934],[152.83772837728378,-31.624806634653176],[152.84852848528487,-31.643380984621885],[152.83052830528305,-31.65520102551106],[152.8125281252813,-31.67546395274966],[152.78732787327874,-31.704169766337664],[152.80532805328056,-31.719366961766603],[152.8017280172802,-31.73287557992567],[152.77652776527765,-31.75482708443414],[152.74412744127443,-31.793664361641447],[152.7369273692737,-31.827435907039096],[152.7477274772748,-31.842633102468042],[152.71532715327152,-31.85951887516687],[152.6937269372694,-31.884847534215112],[152.66492664926648,-31.90342188418382],[152.61092610926113,-31.94563631593089],[152.54612546125463,-32.04357379758408],[152.55692556925572,-32.07227961117209],[152.5281252812528,-32.097608270220334],[152.52092520925208,-32.11618262018904],[152.51372513725136,-32.136445547427634],[152.51012510125105,-32.161774206475876],[152.51732517325172,-32.176971401904815],[152.53532535325354,-32.18372571098435],[152.54612546125463,-32.19723432914341],[152.5641256412564,-32.20567721549283],[152.56772567725676,-32.219185833651885],[152.55692556925572,-32.23269445181095],[152.54612546125463,-32.24620306997001],[152.5389253892539,-32.25971168812907],[152.53172531725318,-32.26815457447848],[152.52452524525245,-32.281663192637545],[152.52452524525245,-32.2951718107966],[152.5281252812528,-32.31205758349543],[152.5389253892539,-32.31374616076532],[152.55332553325536,-32.320500469844845],[152.55332553325536,-32.32725477892438],[152.549725497255,-32.33232051073403],[152.54252542525427,-32.33569766527379],[152.54252542525427,-32.342451974353324],[152.53532535325354,-32.3542720152425],[152.53532535325354,-32.36946921067145],[152.52452524525245,-32.388043560640156],[152.52092520925208,-32.40999506514863],[152.52092520925208,-32.426880837847456],[152.5389253892539,-32.4420780332764],[152.40212402124024,-32.489358196833116],[152.35532355323556,-32.51468685588136],[152.29412294122943,-32.56027844216819],[152.2869228692287,-32.588984255756195],[152.26532265322652,-32.594049987565846],[152.23652236522366,-32.607558605724904],[152.21132211322117,-32.631198687503264],[152.19332193321935,-32.653150192011736],[152.18612186121862,-32.66834738744068],[152.20412204122044,-32.68692173740939],[152.21852218522184,-32.69705320102869],[152.20412204122044,-32.69874177829857],[152.20052200522008,-32.695364623758806],[152.19332193321935,-32.68692173740939],[152.189721897219,-32.68354458286963],[152.18612186121862,-32.68354458286963],[152.17532175321753,-32.68523316013951],[152.17172171721717,-32.68354458286963],[152.14652146521468,-32.6666588101708],[152.13572135721358,-32.66328165563103],[152.13572135721358,-32.6666588101708],[152.11772117721176,-32.68016742832986],[152.1105211052111,-32.68354458286963],[152.06012060120605,-32.69874177829857],[152.08532085320854,-32.7156275509974],[152.09252092520927,-32.719004705537166],[152.1681216812168,-32.719004705537166],[152.1789217892179,-32.72069328280705],[152.189721897219,-32.72575901461669],[152.19692196921972,-32.72913616915646],[152.19332193321935,-32.732513323696224],[152.189721897219,-32.735890478235994],[152.189721897219,-32.757841982744466],[152.18612186121862,-32.76628486909388],[152.17532175321753,-32.76966202363364],[152.15012150121504,-32.76628486909388],[152.13932139321395,-32.76966202363364],[152.13212132121322,-32.78148206452283],[152.12852128521286,-32.78654779633247],[152.12132121321213,-32.78992495087224],[152.1105211052111,-32.793302105412],[152.06012060120605,-32.78485921906259],[151.98451984519846,-32.79836783722165],[151.93411934119342,-32.815253609920475],[151.87651876518765,-32.8422708462386],[151.85491854918553,-32.85577946439766],[151.83331833318334,-32.86422235074708],[151.80091800918012,-32.89292816433508],[151.8045180451805,-32.919945400653205],[151.78651786517867,-32.93176544154238],[151.7721177211772,-32.94527405970145],[151.75051750517508,-32.95709410059062],[151.73611736117363,-32.97229129601957],[151.73611736117363,-32.99424280052804],[151.73611736117363,-33.01450572776663],[151.72171721717217,-33.019571459576284],[151.7037170371704,-33.0280143459257],[151.68211682116822,-33.04996585043417],[151.67131671316713,-33.06178589132335],[151.66771667716677,-33.07360593221253],[151.6641166411664,-33.087114550371595],[151.65331653316537,-33.11075463214995],[151.64611646116464,-33.144526177547604],[151.63531635316355,-33.15803479570666],[151.62811628116282,-33.17492056840549],[151.62451624516245,-33.19180634110432],[151.61371613716136,-33.207003536533264],[151.58851588515887,-33.21882357742244],[151.57051570515705,-33.24415223647068],[151.56331563315632,-33.26441516370927],[151.57771577715778,-33.28298951367798],[151.57051570515705,-33.2914324000274],[151.5309153091531,-33.31844963634552],[151.51651516515165,-33.32689252269493],[151.51651516515165,-33.31676105907564],[151.5309153091531,-33.30325244091658],[151.5417154171542,-33.27792378186834],[151.51651516515165,-33.26103800916951],[151.49131491314915,-33.27285805005869],[151.45531455314557,-33.30494101818646],[151.4517145171452,-33.311695327265994],[151.46971469714697,-33.328581099964815],[151.45531455314557,-33.3302696772347],[151.4409144091441,-33.333646831774466],[151.44451444514448,-33.34546687266364],[151.4517145171452,-33.35559833628294],[151.45891458914588,-33.35897549082271],[151.47331473314733,-33.36235264536247],[151.4877148771488,-33.34884402720341],[151.49491494914952,-33.340401140854],[151.5057150571506,-33.34377829539376],[151.50211502115025,-33.36066406809259],[151.49131491314915,-33.374172686251654],[151.48411484114843,-33.394435613490245],[151.45891458914588,-33.41976427253849],[151.44451444514448,-33.43665004523731],[151.4517145171452,-33.44509293158672],[151.4517145171452,-33.453535817936135],[151.43731437314375,-33.46366728155543],[151.44451444514448,-33.47886447698438],[151.44811448114484,-33.48561878606391],[151.4409144091441,-33.490684517873554],[151.42651426514266,-33.49406167241332],[151.43371433714339,-33.50925886784227],[151.43011430114302,-33.514324599651914],[151.43011430114302,-33.52107890873145],[151.4229142291423,-33.52783321781098],[151.41571415714157,-33.53289894962062],[151.40851408514084,-33.534587526890505],[151.3869138691387,-33.534587526890505],[151.37971379713798,-33.53627610416039],[151.36171361713616,-33.53289894962062],[151.3545135451355,-33.54134183597004],[151.3437134371344,-33.54809614504957],[151.3221132211322,-33.55147329958933],[151.30771307713076,-33.54809614504957],[151.28251282512826,-33.56160476320863],[151.2681126811268,-33.56160476320863],[151.25731257312572,-33.54640756777969],[151.24651246512468,-33.52107890873145],[151.23211232112322,-33.534587526890505],[151.22851228512286,-33.5548504541291],[151.2357123571236,-33.57342480409781],[151.2537125371254,-33.581867690447226],[151.24651246512468,-33.59031057679664],[151.24291242912432,-33.59537630860628],[151.2357123571236,-33.600442040415935],[151.2249122491225,-33.602130617685816],[151.2249122491225,-33.60888492676535],[151.25011250112505,-33.60719634949546],[151.28251282512826,-33.57342480409781],[151.30051300513009,-33.57004764955804],[151.31131311313112,-33.578490535907456],[151.30051300513009,-33.60719634949546],[151.289712897129,-33.63590216308347],[151.29691296912972,-33.64941078124253],[151.30771307713076,-33.63759074035335],[151.31851318513185,-33.62239354492441],[151.32571325713258,-33.59199915406652],[151.34011340113403,-33.61732781311476],[151.3221132211322,-33.66798513121124],[151.30771307713076,-33.69331379025948],[151.30411304113045,-33.720331026577604],[151.30411304113045,-33.725396758387255],[151.31131311313112,-33.73552822200655],[151.31851318513185,-33.74734826289573],[151.31851318513185,-33.75747972651502],[151.30771307713076,-33.78111980829338],[151.30411304113045,-33.825022817310334],[151.29331293312936,-33.83008854911998],[151.2789127891279,-33.8283999718501],[151.2681126811268,-33.8283999718501],[151.2537125371254,-33.84190859000916],[151.24651246512468,-33.8571057854381],[151.24651246512468,-33.867237249057396],[151.2537125371254,-33.87399155813693],[151.2681126811268,-33.87736871267669],[151.2789127891279,-33.870614403597166],[151.28611286112863,-33.86048293997787],[151.28611286112863,-33.8571057854381],[151.29331293312936,-33.870614403597166],[151.29331293312936,-33.89256590810564],[151.27531275312754,-33.93815749439247],[151.28251282512826,-33.951666112551536],[151.2681126811268,-33.98206050340942],[151.26091260912608,-33.99219196702872],[151.25011250112505,-34.0040120079179],[151.24291242912432,-33.99894627610825],[151.2141121411214,-33.966863307980475],[151.20331203312037,-33.95842042163106],[151.18171181711818,-33.96348615344071],[151.17811178111782,-33.97361761706001],[151.17451174511746,-33.98712623521907],[151.16371163711636,-34.00063485337813],[151.1457114571146,-34.0040120079179],[151.12411124111242,-34.00063485337813],[151.1061110611106,-34.00063485337813],[151.09531095310956,-34.014143471537196],[151.12411124111242,-34.02089778061672],[151.13131131311314,-34.02427493515649],[151.14211142111424,-34.032717821505905],[151.14931149311496,-34.032717821505905],[151.160111601116,-34.01752062607696],[151.22131221312213,-34.02427493515649],[151.23211232112322,-34.02427493515649],[151.23211232112322,-34.04116070785532],[151.2249122491225,-34.04622643966496],[151.17811178111782,-34.047915016934844],[151.17451174511746,-34.04622643966496],[151.1709117091171,-34.047915016934844],[151.16371163711636,-34.05466932601438],[151.160111601116,-34.06311221236379],[151.15651156511564,-34.071555098713205],[151.14931149311496,-34.07830940779274],[151.1349113491135,-34.08337513960238],[151.1457114571146,-34.08675229414215],[151.1709117091171,-34.08675229414215],[151.17811178111782,-34.090129448681914],[151.17811178111782,-34.10026091230121],[151.16731167311673,-34.110392375920505],[151.14931149311496,-34.12390099407957],[151.11331113311132,-34.14922965312781],[151.09531095310956,-34.16273827128687],[151.070110701107,-34.17455831217605],[151.0269102691027,-34.201575548494176],[151.00891008910088,-34.220149898462886],[150.96930969309693,-34.26236433020995],[150.94050940509408,-34.302890184687136],[150.92610926109262,-34.32990742100526],[150.92970929709298,-34.363678966402915],[150.9081090810908,-34.40758197541986],[150.90450904509044,-34.45148498443681],[150.9189091890919,-34.48694510710435],[150.89730897308976,-34.502142302533294],[150.88650886508867,-34.5308481161213],[150.87210872108722,-34.546045311550245],[150.8541085410854,-34.54097957974059],[150.86850868508685,-34.522405229771884],[150.86130861308612,-34.51396234342247],[150.84690846908472,-34.51058518888271],[150.839708397084,-34.51058518888271],[150.83610836108363,-34.51396234342247],[150.80010800108005,-34.547733888820126],[150.80730807308072,-34.55786535243942],[150.81090810908108,-34.56124250697919],[150.82170821708218,-34.56293108424907],[150.84330843308436,-34.56124250697919],[150.8541085410854,-34.5696853933286],[150.8829088290883,-34.59163689783708],[150.89730897308976,-34.60176836145637],[150.91530915309153,-34.603456938726254],[150.8829088290883,-34.60683409326602],[150.87210872108722,-34.627097020504614],[150.84690846908472,-34.752051738475934],[150.83250832508327,-34.78244612933382],[150.81090810908108,-34.795954747492885],[150.77850778507786,-34.80608621111218],[150.75330753307531,-34.858432106478546],[150.72810728107282,-34.87025214736772],[150.72810728107282,-34.873629301907485],[150.73890738907392,-34.88376076552678],[150.75330753307531,-34.89389222914608],[150.7641076410764,-34.897269383685845],[150.77850778507786,-34.90233511549549],[150.77850778507786,-34.9107780018449],[150.7641076410764,-34.917532310924436],[150.74610746107464,-34.917532310924436],[150.75330753307531,-34.92766377454373],[150.7749077490775,-34.936106660893145],[150.7857078570786,-34.94623812451244],[150.77850778507786,-34.95299243359197],[150.7857078570786,-34.959746742671506],[150.7749077490775,-34.98676397898963],[150.79650796507968,-35.00364975168846],[150.8289082890829,-35.01209263803787],[150.8505085050851,-35.01546979257763],[150.8541085410854,-35.022224101657166],[150.84330843308436,-35.05430706978493],[150.84330843308436,-35.07794715156329],[150.83250832508327,-35.09145576972236],[150.80730807308072,-35.11003011969107],[150.80010800108005,-35.099898656071765],[150.7857078570786,-35.08976719245247],[150.77850778507786,-35.07794715156329],[150.78210782107823,-35.06612711067412],[150.79290792907932,-35.05092991524517],[150.78210782107823,-35.0289784107367],[150.7857078570786,-35.01546979257763],[150.76770767707677,-35.00702690622822],[150.749707497075,-35.01040406076799],[150.7317073170732,-35.017158369847515],[150.6957069570696,-35.02560125619693],[150.68850688506888,-35.039109874355994],[150.67770677706778,-35.07625857429341],[150.6957069570696,-35.079635728833175],[150.70290702907027,-35.09314434699224],[150.69930699306997,-35.11003011969107],[150.70290702907027,-35.12016158331036],[150.70650706507064,-35.123538737850126],[150.7209072090721,-35.1353587787393],[150.73890738907392,-35.13198162419954],[150.75330753307531,-35.12522731512001],[150.76770767707677,-35.123538737850126],[150.77130771307714,-35.13367020146942],[150.77130771307714,-35.14886739689837],[150.7641076410764,-35.165753169597195],[150.76050760507604,-35.17926178775625],[150.749707497075,-35.18263894229602],[150.74250742507428,-35.18263894229602],[150.73530735307355,-35.180950365026135],[150.7317073170732,-35.18263894229602],[150.72810728107282,-35.186016096835786],[150.7209072090721,-35.19108182864544],[150.71370713707137,-35.19614756045508],[150.70650706507064,-35.19952471499485],[150.6849068490685,-35.17588463321649],[150.63810638106384,-35.17926178775625],[150.6129061290613,-35.18770467410567],[150.5877058770588,-35.19614756045508],[150.55530555305552,-35.21303333315391],[150.54810548105485,-35.22147621950332],[150.54450544505448,-35.23836199220215],[150.54090540905412,-35.248493455821446],[150.5337053370534,-35.25524776490098],[150.5229052290523,-35.26369065125039],[150.50130501305011,-35.289019310298634],[150.49050490504908,-35.305905082997455],[150.48330483304835,-35.324479432966164],[150.48330483304835,-35.349808092014406],[150.48690486904871,-35.36500528744335],[150.49050490504908,-35.370071019253004],[150.49050490504908,-35.37344817379277],[150.48330483304835,-35.38357963741206],[150.45450454504544,-35.40384256465065],[150.45090450904507,-35.408908296460304],[150.4437044370444,-35.42579406915913],[150.4329043290433,-35.44099126458807],[150.41850418504185,-35.454499882747136],[150.41130411304113,-35.46631992363631],[150.40770407704076,-35.4865828508749],[150.40770407704076,-35.53892874624127],[150.40770407704076,-35.54906020986056],[150.389703897039,-35.55750309620998],[150.37170371703718,-35.57945460071846],[150.33210332103323,-35.640243382434235],[150.30690306903068,-35.70103216415001],[150.29250292502928,-35.722983668658486],[150.27450274502746,-35.7314265550079],[150.25290252902528,-35.72636082319825],[150.23130231302315,-35.71285220503919],[150.22050220502206,-35.717917936848835],[150.1917019170192,-35.72636082319825],[150.2169021690217,-35.75168948224649],[150.22410224102242,-35.778706718564614],[150.2277022770228,-35.785461027644146],[150.23850238502388,-35.798969645803204],[150.24210242102424,-35.8091011094225],[150.23850238502388,-35.83274119120086],[150.23130231302315,-35.84456123209004],[150.2169021690217,-35.84962696389969],[150.1917019170192,-35.85638127297922],[150.18810188101884,-35.85975842751898],[150.1521015210152,-35.89352997291664],[150.1485014850149,-35.89859570472628],[150.1485014850149,-35.91210432288535],[150.15930159301593,-35.93912155920347],[150.1629016290163,-35.9560073319023],[150.15570155701556,-36.025238999967485],[150.1485014850149,-36.06238769990491],[150.13050130501307,-36.05901054536514],[150.10530105301052,-36.048879081745845],[150.08730087300876,-36.06238769990491],[150.09090090900912,-36.07083058625432],[150.09090090900912,-36.07589631806397],[150.08010080100803,-36.08433920441338],[150.08730087300876,-36.0826506271435],[150.09090090900912,-36.0826506271435],[150.09810098100985,-36.08096204987362],[150.10170101701016,-36.07589631806397],[150.11970119701198,-36.08433920441338],[150.13410134101343,-36.09784782257244],[150.14490144901453,-36.11473359527127],[150.12330123301234,-36.15188229520869],[150.11970119701198,-36.173833799717166],[150.12330123301234,-36.19578530422564],[150.14490144901453,-36.253196931401654],[150.14490144901453,-36.273459858640244],[150.13410134101343,-36.28190274498966],[150.13410134101343,-36.28696847679931],[150.14130141301416,-36.30891998130778],[150.14130141301416,-36.32074002219696],[150.1377013770138,-36.32918290854637],[150.1269012690127,-36.337625794895786],[150.10890108901089,-36.35113441305485],[150.09090090900912,-36.36802018575368],[150.08010080100803,-36.38659453572239],[150.06930069300694,-36.40685746296098],[150.06570065700657,-36.42880896746945],[150.0729007290073,-36.45244904924781],[150.0729007290073,-36.462580512867106],[150.06930069300694,-36.46933482194664],[150.05850058500585,-36.48959774918523],[150.05490054900548,-36.501417790074406],[150.0621006210062,-36.543632221821476],[150.06570065700657,-36.567272303599836],[150.05850058500585,-36.58753523083843],[150.029700297003,-36.624683930775845],[149.9936999369994,-36.687161289761505],[149.99009990099904,-36.70404706246033],[149.98649986499868,-36.72262141242904],[149.98649986499868,-36.744572916937514],[149.97929979299795,-36.769901575985756],[149.9648996489965,-36.795230235034],[149.94689946899473,-36.81549316227259],[149.9288992889929,-36.830690357701535],[149.939699396994,-36.85264186221001],[149.93609936099364,-36.87121621217872],[149.9108991089911,-36.90498775757637],[149.90369903699036,-36.92862783935473],[149.9108991089911,-36.93875930297403],[149.92529925299255,-36.94382503478368],[149.94329943299437,-36.953956498402974],[149.93249932499327,-36.96577653929215],[149.92169921699218,-36.98266231199098],[149.92169921699218,-37.00292523922957],[149.92529925299255,-37.018122434658515],[149.93609936099364,-37.02656532100793],[149.939699396994,-37.03331963008746],[149.94329943299437,-37.04176251643687],[149.94329943299437,-37.05358255732605],[149.94329943299437,-37.062025443675466],[149.93609936099364,-37.06877975275499],[149.93249932499327,-37.07046833002488],[149.9288992889929,-37.06709117548511],[149.92169921699218,-37.062025443675466],[149.90729907299072,-37.07046833002488],[149.88929889298896,-37.08397694818394],[149.8856988569886,-37.09073125726347],[149.8748987489875,-37.095796989073115],[149.88209882098823,-37.1076170299623],[149.8964989649897,-37.119437070851475],[149.91449914499145,-37.12450280266113],[149.9288992889929,-37.122814225391245],[149.939699396994,-37.119437070851475],[149.94689946899473,-37.119437070851475],[149.95769957699576,-37.12450280266113],[149.99729997299977,-37.14983146170937],[150.00450004500044,-37.158274348058775],[150.01170011700117,-37.17347154348772],[150.01530015300153,-37.205554511615496],[150.0189001890019,-37.220751707044435],[150.05490054900548,-37.268031870601156],[150.05490054900548,-37.27647475695057],[150.029700297003,-37.26634329333127],[150.0081000810008,-37.25958898425174],[149.98649986499868,-37.25958898425174],[149.9648996489965,-37.268031870601156],[149.95049950499504,-37.284917643299984],[149.95049950499504,-37.30011483872892],[149.97209972099722,-37.33726353866634],[149.95769957699576,-37.37778939314353],[149.95769957699576,-37.41493809308095],[149.96849968499686,-37.45377537028825],[149.98649986499868,-37.49598980203532],[149.97209972099722,-37.50949842019438],[149.9540995409954,-37.531449924702855],[149.8964989649897,-37.54833569740168],[149.7776977769778,-37.5567785837511],[149.78849788497888,-37.55340142921133],[149.79209792097924,-37.54833569740168],[149.79209792097924,-37.54158138832215],[149.78489784897852,-37.53482707924262],[149.79929799297992,-37.51962988381368],[149.7956979569796,-37.511186997464264],[149.78129781297815,-37.512875574734146],[149.77409774097742,-37.529761347432974],[149.75969759697597,-37.52469561562332],[149.72009720097202,-37.51625272927391],[149.75969759697597,-37.56691004737039],[149.7668976689767,-37.58379582006922],[149.7560975609756,-37.59730443822828],[149.72369723697238,-37.62094452000664],[149.7128971289713,-37.64796175632476],[149.6768967689677,-37.69017618807183],[149.66609666096662,-37.700307651691126],[149.61569615696158,-37.71043911531042],[149.60849608496085,-37.717193424389954],[149.60489604896048,-37.72563631073937],[149.59409594095945,-37.734079197088775],[149.57609576095763,-37.74083350616831],[149.53289532895332,-37.74589923797796],[149.51129511295113,-37.756030701597254],[149.50769507695077,-37.761096433406905],[149.49689496894968,-37.777982206105726],[149.489694896949,-37.78304793791538],[149.4788947889479,-37.78642509245514],[149.34209342093425,-37.78642509245514],[149.29889298892988,-37.798245133344324],[149.2736927369274,-37.82357379239256],[149.26649266492666,-37.81681948331303],[149.25929259292593,-37.8100651742335],[149.25929259292593,-37.80331086515397],[149.25929259292593,-37.79317940153467],[149.2520925209252,-37.78980224699491],[149.1728917289173,-37.78980224699491],[149.15129151291512,-37.78642509245514],[149.13689136891372,-37.776293628835845],[149.09369093690935,-37.78980224699491],[148.94248942489423,-37.78980224699491],[148.90288902889029,-37.796556556074435],[148.7876878768788,-37.798245133344324],[148.76608766087662,-37.80331086515397],[148.73728737287377,-37.820196637852796],[148.7228872288723,-37.82357379239256],[148.6040860408604,-37.81175375150338],[148.30528305283053,-37.82357379239256],[148.12888128881292,-37.857345337790214],[147.91647916479167,-37.91813411950599],[147.75807758077582,-37.9856772103013],[147.58887588875888,-38.08023753741473],[147.39447394473945,-38.220389450815],[147.1820718207182,-38.39769006415268],[147.0812708127081,-38.4736760412974],[146.9840698406984,-38.5716135229506],[146.8940689406894,-38.63409088193626],[146.88326883268832,-38.639156613745904],[146.87966879668795,-38.644222345555555],[146.84726847268473,-38.684748200032736],[146.83646836468364,-38.683059622762855],[146.83286832868328,-38.67292815914356],[146.84726847268473,-38.659419540984494],[146.8292682926829,-38.65435380917485],[146.68886688866888,-38.67968246822309],[146.6420664206642,-38.67630531368332],[146.61686616866172,-38.67968246822309],[146.5736657366574,-38.703322550001445],[146.55206552065522,-38.705011127271334],[146.53046530465303,-38.701633972731564],[146.50526505265054,-38.69994539546168],[146.45846458464587,-38.71007685908098],[146.43326433264332,-38.72020832270027],[146.42246422464228,-38.73202836358946],[146.4116641166412,-38.740471249938864],[146.390063900639,-38.725274054509924],[146.37206372063724,-38.706699704541215],[146.36846368463688,-38.69994539546168],[146.35046350463506,-38.69487966365203],[146.2568625686257,-38.701633972731564],[146.2388623886239,-38.705011127271334],[146.22446224462243,-38.71514259089063],[146.18126181261812,-38.75566844536781],[146.21726217262176,-38.784374258955815],[146.22086220862212,-38.79112856803535],[146.2280622806228,-38.808014340734175],[146.2388623886239,-38.81814580435347],[146.24246242462425,-38.81983438162335],[146.26046260462607,-38.81814580435347],[146.26406264062643,-38.81983438162335],[146.26406264062643,-38.826588690702884],[146.26406264062643,-38.83334299978242],[146.26406264062643,-38.83840873159206],[146.2676626766268,-38.851917349751126],[146.2676626766268,-38.8637373906403],[146.27126271262716,-38.8738688542596],[146.28566285662856,-38.87893458606925],[146.27846278462783,-38.89919751330784],[146.28566285662856,-38.909328976927135],[146.30366303663038,-38.912706131466905],[146.31806318063184,-38.90595182238737],[146.33246332463324,-38.894131781498196],[146.35406354063542,-38.868803122449954],[146.37206372063724,-38.85867165883066],[146.38286382863828,-38.85698308156077],[146.4008640086401,-38.85867165883066],[146.4116641166412,-38.85529450429089],[146.41526415264156,-38.846851617941475],[146.41886418864192,-38.83672015432218],[146.41886418864192,-38.828277267972766],[146.42246422464228,-38.81814580435347],[146.43326433264332,-38.80126003165464],[146.44766447664477,-38.79112856803535],[146.46206462064623,-38.79112856803535],[146.47646476464763,-38.80970291800406],[146.46926469264696,-38.82321153616312],[146.46926469264696,-38.84009730886195],[146.46926469264696,-38.868803122449954],[146.46926469264696,-38.87893458606925],[146.47646476464763,-38.88568889514878],[146.480064800648,-38.89244320422831],[146.48366483664836,-38.89919751330784],[146.48366483664836,-38.907640399657254],[146.48366483664836,-38.91101755419702],[146.48366483664836,-38.914394708736786],[146.48366483664836,-38.92452617235608],[146.47646476464763,-38.929591904165726],[146.4656646566466,-38.93803479051514],[146.4548645486455,-38.94985483140432],[146.44766447664477,-38.96505202683326],[146.44766447664477,-38.975183490452565],[146.43686436864368,-39.00557788131045],[146.43686436864368,-39.0207750767394],[146.43686436864368,-39.02752938581892],[146.4440644406444,-39.03090654035869],[146.45126451264514,-39.03090654035869],[146.4656646566466,-39.02415223127916],[146.46926469264696,-39.02752938581892],[146.48366483664836,-39.06467808575635],[146.47646476464763,-39.071432394835874],[146.4656646566466,-39.073120972105755],[146.44766447664477,-39.07818670391541],[146.43326433264332,-39.0883181675347],[146.43326433264332,-39.096761053884116],[146.44046440464405,-39.10858109477329],[146.43686436864368,-39.127155444742],[146.4260642606426,-39.135598331091416],[146.4116641166412,-39.14235264017095],[146.39366393663937,-39.14572979471072],[146.37926379263791,-39.14066406290107],[146.35046350463506,-39.12884402201189],[146.3360633606336,-39.118712558392595],[146.3252632526325,-39.10520394023353],[146.3216632166322,-39.0883181675347],[146.32886328863287,-39.08325243572506],[146.34326343263433,-39.07818670391541],[146.3468634686347,-39.06467808575635],[146.33966339663397,-39.054546622137046],[146.30006300063002,-39.037660849438225],[146.28926289262893,-39.02752938581892],[146.26406264062643,-38.995446417691156],[146.24966249662498,-38.93972336778503],[146.18126181261812,-38.868803122449954],[146.09126091260913,-38.81983438162335],[146.0156601566016,-38.831654422512536],[146.00846008460087,-38.846851617941475],[146.0048600486005,-38.865425967910184],[146.0048600486005,-38.89582035876808],[145.9940599405994,-38.90088609057772],[145.940059400594,-38.909328976927135],[145.92205922059225,-38.90595182238737],[145.91485914859152,-38.89582035876808],[145.8968589685897,-38.82996584524265],[145.85365853658539,-38.75904559990758],[145.82125821258217,-38.71851974543039],[145.76725767257676,-38.67461673641344],[145.75645756457567,-38.659419540984494],[145.78525785257852,-38.66786242733391],[145.82485824858247,-38.69656824092192],[145.85365853658539,-38.69994539546168],[145.8320583205832,-38.6695510046038],[145.81045810458107,-38.65097665463508],[145.7780577805778,-38.640845191015785],[145.73485734857348,-38.639156613745904],[145.6988569885699,-38.645910922825436],[145.64125641256413,-38.6779938909532],[145.59805598055982,-38.67968246822309],[145.56925569255696,-38.66110811825438],[145.52965529655296,-38.59356502745907],[145.51525515255156,-38.578367832030125],[145.5008550085501,-38.57499067749036],[145.4468544685447,-38.54966201844212],[145.3928539285393,-38.54290770936259],[145.37485374853748,-38.53615340028306],[145.37485374853748,-38.53108766847341],[145.39645396453966,-38.52602193666377],[145.42165421654215,-38.515890473044465],[145.43245432454324,-38.50238185488541],[145.42165421654215,-38.48887323672634],[145.43245432454324,-38.47536461856728],[145.4360543605436,-38.46016742313834],[145.43245432454324,-38.44328165043951],[145.42165421654215,-38.42639587774069],[145.45045450454506,-38.41288725958162],[145.46125461254616,-38.414575836851505],[145.4720547205472,-38.419641568661156],[145.47925479254792,-38.4247073004708],[145.48285482854828,-38.42639587774069],[145.50445504455047,-38.4247073004708],[145.52245522455223,-38.41119868231174],[145.53325533255332,-38.399378641422565],[145.54045540455405,-38.39262433234303],[145.55845558455587,-38.3858700232635],[145.5548555485555,-38.36898425056467],[145.54045540455405,-38.352098477865844],[145.51885518855192,-38.34365559151643],[145.51525515255156,-38.33858985970679],[145.51885518855192,-38.3267698188176],[145.52245522455223,-38.31157262338866],[145.51885518855192,-38.30144115976937],[145.50445504455047,-38.28455538707054],[145.47565475654756,-38.24571810986323],[145.46485464854652,-38.23389806897406],[145.4468544685447,-38.22883233716441],[145.42885428854288,-38.227143759894524],[145.3820538205382,-38.23389806897406],[145.34605346053462,-38.23389806897406],[145.3388533885339,-38.23896380078371],[145.33525335253353,-38.24571810986323],[145.3280532805328,-38.24740668713312],[145.3136531365314,-38.23727522351382],[145.29565295652958,-38.232209491704175],[145.27045270452703,-38.23389806897406],[145.25605256052563,-38.24065237805359],[145.26325263252636,-38.255849573482536],[145.25605256052563,-38.26429245983194],[145.24525245252454,-38.272735346181356],[145.2380523805238,-38.28117823253077],[145.23085230852308,-38.30650689157901],[145.220052200522,-38.31157262338866],[145.20925209252096,-38.314949777928426],[145.20205202052023,-38.32508124154772],[145.20205202052023,-38.33521270516702],[145.220052200522,-38.35040990059596],[145.22365223652235,-38.36222994148514],[145.22365223652235,-38.3858700232635],[145.22725227252272,-38.41288725958162],[145.13725137251373,-38.40106721869245],[145.11205112051124,-38.40613295050209],[145.1048510485105,-38.414575836851505],[145.10125101251015,-38.42639587774069],[145.09405094050942,-38.436527341359984],[145.0616506165062,-38.4449702277094],[145.0508505085051,-38.456790268598574],[145.03645036450365,-38.482118927646816],[145.04365043650438,-38.48887323672634],[145.02565025650256,-38.49393896853599],[144.9536495364954,-38.499004700345644],[144.9428494284943,-38.51082474123482],[144.9212492124921,-38.50238185488541],[144.88524885248853,-38.482118927646816],[144.73044730447305,-38.352098477865844],[144.71244712447128,-38.34196701424655],[144.6908469084691,-38.33858985970679],[144.67644676446764,-38.333524127897135],[144.67284672846728,-38.32339266427784],[144.67644676446764,-38.31663835519831],[144.68364683646837,-38.32001550973808],[144.69444694446946,-38.3267698188176],[144.73044730447305,-38.331835550627254],[144.74844748447487,-38.34196701424655],[144.78444784447845,-38.372361405104435],[144.80244802448027,-38.37911571418397],[144.84924849248495,-38.37911571418397],[144.89244892448926,-38.372361405104435],[144.9536495364954,-38.34872132332608],[144.98244982449825,-38.34196701424655],[144.99324993249934,-38.333524127897135],[144.9968499684997,-38.32339266427784],[144.99324993249934,-38.313261200658545],[144.99324993249934,-38.30481831430913],[145.00045000450007,-38.29637542795972],[145.0220502205022,-38.28286680980066],[145.02565025650256,-38.276112500721126],[145.0328503285033,-38.2592267280223],[145.03645036450365,-38.249095264403],[145.04365043650438,-38.24065237805359],[145.0616506165062,-38.22376660535476],[145.07245072450723,-38.20688083265593],[145.1192511925119,-38.15960066909922],[145.130051300513,-38.125829123701564],[145.12645126451264,-38.088680423764146],[145.10845108451088,-38.05153172382673],[145.08325083250833,-38.02282591023872],[145.0760507605076,-38.01776017842907],[145.04365043650438,-38.00931729207966],[145.0328503285033,-38.002562983000125],[145.02565025650256,-37.9958086739206],[145.00405004050043,-37.96034855125306],[144.99324993249934,-37.919822696775874],[144.98244982449825,-37.899559769537284],[144.96444964449648,-37.882673996838456],[144.93564935649357,-37.86747680140951],[144.91044910449108,-37.8691653786794],[144.90684906849071,-37.899559769537284],[144.84204842048422,-37.89280546045775],[144.8240482404824,-37.8978711922674],[144.81684816848167,-37.91137981042646],[144.81324813248136,-37.92657700585541],[144.80604806048063,-37.940085624014465],[144.79524795247954,-37.94852851036388],[144.77724777247772,-37.95359424217353],[144.75924759247596,-37.958659973983174],[144.7448474484745,-37.962037128522944],[144.7340473404734,-37.968791437602476],[144.69444694446946,-37.99749725119048],[144.68724687246873,-38.005940137539895],[144.67284672846728,-38.01776017842907],[144.5576455764558,-38.04815456928696],[144.54324543245434,-38.05828603290626],[144.53244532445325,-38.07179465106532],[144.52164521645216,-38.083614691954494],[144.52524525245252,-38.09205757830391],[144.52884528845289,-38.09881188738344],[144.52884528845289,-38.10556619646297],[144.5180451804518,-38.112320505542506],[144.50724507245076,-38.112320505542506],[144.49644496444967,-38.108943351002736],[144.48924489244894,-38.10387761919309],[144.4820448204482,-38.09712331011356],[144.45324453244535,-38.10556619646297],[144.39564395643959,-38.107254773732855],[144.3740437404374,-38.11907481462203],[144.3632436324363,-38.146092050940155],[144.38124381243813,-38.15791209182934],[144.43524435244353,-38.15960066909922],[144.52524525245252,-38.17817501906793],[144.5576455764558,-38.17310928725828],[144.5828458284583,-38.16297782363898],[144.6548465484655,-38.12414054643168],[144.70524705247055,-38.146092050940155],[144.72684726847268,-38.164666400908864],[144.71964719647195,-38.189995059957106],[144.7160471604716,-38.19674936903664],[144.7160471604716,-38.210257987195696],[144.7160471604716,-38.21532371900535],[144.70884708847092,-38.21870087354511],[144.69444694446946,-38.21870087354511],[144.68724687246873,-38.22207802808488],[144.6692466924669,-38.23727522351382],[144.66204662046624,-38.249095264403],[144.6548465484655,-38.26260388256206],[144.65124651246515,-38.28624396434042],[144.6116461164612,-38.292998273419954],[144.52884528845289,-38.289621118880184],[144.5180451804518,-38.294686850689835],[144.51084510845112,-38.29975258249948],[144.5036450364504,-38.30312973703925],[144.48924489244894,-38.30312973703925],[144.47844478444784,-38.30144115976937],[144.45684456844572,-38.292998273419954],[144.44604446044463,-38.289621118880184],[144.42084420844208,-38.292998273419954],[144.4028440284403,-38.30144115976937],[144.30924309243096,-38.357164209675496],[144.25884258842592,-38.396001486882795],[144.24804248042483,-38.40106721869245],[144.22644226442264,-38.40275579596233],[144.21564215642155,-38.40613295050209],[144.20844208442088,-38.41119868231174],[144.19404194041942,-38.42808445501057],[144.1868418684187,-38.434838764090095],[144.13644136441366,-38.44665880497928],[144.1328413284133,-38.45003595951904],[144.1220412204122,-38.46523315494799],[144.11484114841147,-38.46861030948775],[144.07164071640716,-38.47536461856728],[144.0536405364054,-38.48549608218658],[143.9996399964,-38.53446482301318],[143.99603996039963,-38.539530554822825],[143.9996399964,-38.54797344117224],[143.9996399964,-38.55641632752165],[143.99243992439926,-38.56823636841083],[143.9780397803978,-38.57499067749036],[143.95283952839532,-38.58005640930001],[143.94203942039422,-38.58512214110966],[143.92763927639277,-38.600319336538604],[143.90603906039064,-38.644222345555555],[143.88803888038882,-38.65266523190497],[143.8808388083881,-38.65773096371461],[143.870038700387,-38.66617385006403],[143.8556385563856,-38.683059622762855],[143.8448384483845,-38.69150250911227],[143.74403744037443,-38.71851974543039],[143.7260372603726,-38.721896899970154],[143.70443704437048,-38.72865120904969],[143.6936369363694,-38.74384840447863],[143.6828368283683,-38.76073417717746],[143.6720367203672,-38.78099710441605],[143.6720367203672,-38.78268568168593],[143.6720367203672,-38.7860628362257],[143.66843668436684,-38.789439990765466],[143.6612366123661,-38.79112856803535],[143.65043650436508,-38.789439990765466],[143.6468364683647,-38.789439990765466],[143.61083610836107,-38.806325763464294],[143.60003600036003,-38.81476864981371],[143.5748357483575,-38.84347446340171],[143.55683556835572,-38.85360592702101],[143.53523535235354,-38.85867165883066],[143.51723517235172,-38.850228772481245],[143.4848348483485,-38.82321153616312],[143.47043470434704,-38.81814580435347],[143.46683466834668,-38.81476864981371],[143.45603456034564,-38.79957145438476],[143.45243452434528,-38.796194299845],[143.41283412834127,-38.784374258955815],[143.3768337683377,-38.764111331717224],[143.35883358833587,-38.75904559990758],[143.33363333633338,-38.75566844536781],[143.24003240032403,-38.76242275444734],[143.2220322203222,-38.75566844536781],[143.20403204032044,-38.74215982720875],[143.18603186031862,-38.726962631779806],[143.1788317883179,-38.71176543635086],[143.11763117631176,-38.66617385006403],[143.08163081630818,-38.644222345555555],[143.060030600306,-38.63577945920614],[142.94842948429488,-38.61889368650731],[142.9016290162902,-38.602007913808485],[142.8728287282873,-38.596942181998834],[142.85482854828547,-38.58681071837954],[142.8476284762848,-38.58512214110966],[142.81162811628116,-38.578367832030125],[142.76122761227612,-38.537841977552944],[142.73602736027362,-38.52602193666377],[142.6532265322653,-38.47198746402752],[142.58842588425887,-38.44328165043951],[142.55242552425523,-38.419641568661156],[142.53802538025383,-38.414575836851505],[142.5308253082531,-38.40951010504186],[142.52722527225274,-38.40782152777197],[142.520025200252,-38.40782152777197],[142.51642516425164,-38.40613295050209],[142.5020250202502,-38.38418144599362],[142.50562505625055,-38.37911571418397],[142.5020250202502,-38.37404998237432],[142.4876248762488,-38.372361405104435],[142.4768247682477,-38.375738559644205],[142.47322473224733,-38.3858700232635],[142.46962469624697,-38.396001486882795],[142.4660246602466,-38.40613295050209],[142.44442444424448,-38.39769006415268],[142.43362433624338,-38.39093575507315],[142.4120241202412,-38.372361405104435],[142.3976239762398,-38.36729567329479],[142.31122311223112,-38.36729567329479],[142.28242282422826,-38.37404998237432],[142.2680226802268,-38.39262433234303],[142.2248222482225,-38.40613295050209],[142.17442174421745,-38.399378641422565],[142.0916209162092,-38.36560709602491],[141.9836198361984,-38.29975258249948],[141.94761947619475,-38.28286680980066],[141.9368193681937,-38.28117823253077],[141.90081900819007,-38.28286680980066],[141.88641886418867,-38.27948965526089],[141.86481864818649,-38.271046768911475],[141.76041760417604,-38.26260388256206],[141.7208172081721,-38.26766961437171],[141.67401674016742,-38.28455538707054],[141.6308163081631,-38.30819546884889],[141.61641616416165,-38.33858985970679],[141.62361623616238,-38.353787055135726],[141.64521645216456,-38.372361405104435],[141.65241652416523,-38.3858700232635],[141.65241652416523,-38.399378641422565],[141.64881648816487,-38.40275579596233],[141.620016200162,-38.399378641422565],[141.61281612816128,-38.39769006415268],[141.60921609216092,-38.394312909612914],[141.6020160201602,-38.39262433234303],[141.59481594815952,-38.396001486882795],[141.57321573215734,-38.41288725958162],[141.56961569615697,-38.419641568661156],[141.5660156601566,-38.43146160955033],[141.55881558815588,-38.43990449589975],[141.54441544415448,-38.434838764090095],[141.5336153361534,-38.42301872320092],[141.51921519215193,-38.39769006415268],[141.50841508415084,-38.3858700232635],[141.49761497614975,-38.38080429145385],[141.48321483214835,-38.375738559644205],[141.4688146881469,-38.37404998237432],[141.45081450814507,-38.372361405104435],[141.4328143281433,-38.375738559644205],[141.42921429214294,-38.38080429145385],[141.42921429214294,-38.39093575507315],[141.42201422014222,-38.40275579596233],[141.41121411214112,-38.40613295050209],[141.39321393213936,-38.40106721869245],[141.3788137881379,-38.39262433234303],[141.37161371613718,-38.3858700232635],[141.37521375213754,-38.377427136914086],[141.389613896139,-38.35885278694538],[141.39681396813967,-38.34365559151643],[141.40041400414003,-38.336901282436905],[141.39681396813967,-38.32001550973808],[141.389613896139,-38.30650689157901],[141.37521375213754,-38.291309696150066],[141.21321213212133,-38.17310928725828],[141.13401134011343,-38.127517700971445],[140.98640986409868,-38.070106073795436],[140.97200972009722,-38.05997461017614],[140.95040950409503,-38.05490887836649],[140.7128071280713,-38.070106073795436],[140.6912069120691,-38.068417496525555],[140.66960669606698,-38.06166318744602],[140.65160651606516,-38.05153172382673],[140.6336063360634,-38.03971168293754],[140.62640626406267,-38.03633452839778],[140.60120601206012,-38.03802310566766],[140.5940059400594,-38.03295737385802],[140.58320583205835,-38.02282591023872],[140.57600576005763,-38.01776017842907],[140.55440554405544,-38.00931729207966],[140.4788047880479,-37.95021708763377],[140.45720457204573,-37.93839704674458],[140.41760417604178,-37.92826558312529],[140.39960399603996,-37.919822696775874],[140.3960039600396,-37.91644554223611],[140.39240392403923,-37.902936924077046],[140.39240392403923,-37.899559769537284],[140.38520385203856,-37.8978711922674],[140.37440374403747,-37.89449403772763],[140.3708037080371,-37.89280546045775],[140.360003600036,-37.882673996838456],[140.35640356403565,-37.87591968775892],[140.35640356403565,-37.862411069599865],[140.35280352803528,-37.84721387417092],[140.33840338403382,-37.81681948331303],[140.28800288002878,-37.74927639251772],[140.2808028080281,-37.73070204254901],[140.2412024120241,-37.66653610629347],[140.21240212402125,-37.64289602451511],[140.13680136801366,-37.5956158609584],[140.11160111601117,-37.570287201910155],[140.11160111601117,-37.56353289283063],[140.13320133201336,-37.5567785837511],[140.13320133201336,-37.53820423378239],[140.11520115201154,-37.51794130654379],[140.09360093600935,-37.507809842924495],[140.08280082800832,-37.50443268838473],[140.0648006480065,-37.49092407022567],[140.05040050400504,-37.487546915685904],[140.04680046800468,-37.487546915685904],[140.03600036000358,-37.48248118387626],[140.03240032400328,-37.48079260660637],[140.02520025200255,-37.48416976114614],[140.02160021600218,-37.49092407022567],[140.02160021600218,-37.4976783793052],[140.02160021600218,-37.50105553384497],[139.9891998919989,-37.487546915685904],[139.79479794797948,-37.268031870601156],[139.76959769597698,-37.220751707044435],[139.74079740797407,-37.180225852567254],[139.7479974799748,-37.17009438894796],[139.76239762397626,-37.16502865713831],[139.78039780397808,-37.15320861624913],[139.78759787597875,-37.12619137993101],[139.77319773197735,-37.10423987542253],[139.75519755197553,-37.08228837091406],[139.74079740797407,-37.056959711865815],[139.7371973719737,-37.018122434658515],[139.72999729997304,-37.00461381649945],[139.71199711997122,-36.98772804380062],[139.68679686796867,-36.975908002911446],[139.67599675996763,-36.96746511656203],[139.67239672396727,-36.953956498402974],[139.78399783997838,-36.90161060303661],[139.81639816398166,-36.87965909852813],[139.84159841598415,-36.84588755313048],[139.8559985599856,-36.80873885319306],[139.86319863198634,-36.76652442144599],[139.8559985599856,-36.63481539439514],[139.85239852398524,-36.62130677623608],[139.72999729997304,-36.37308591756332],[139.63639636396363,-36.20422819057505],[139.56799567995682,-36.07589631806397],[139.54639546395464,-36.05901054536514],[139.51399513995142,-36.03537046358679],[139.47439474394747,-35.9847131454903],[139.46719467194674,-35.96951595006136],[139.45639456394565,-35.95769590917218],[139.2727927279273,-35.80572395488274],[139.19719197191972,-35.74662375043684],[139.16119161191614,-35.72804940046813],[139.12879128791292,-35.699343586880126],[139.09999099991,-35.68583496872107],[139.06399063990642,-35.658817732402945],[139.03159031590314,-35.64530911424388],[138.99918999189993,-35.616603300655875],[138.9667896678967,-35.60647183703658],[138.91638916389167,-35.57607744617869],[138.95958959589598,-35.56594598255939],[138.99918999189993,-35.58620890979799],[139.34839348393484,-35.84793838662981],[139.44919449194492,-35.927301518314295],[139.49959499594996,-35.97795883641077],[139.56439564395646,-36.05056765901573],[139.60039600396004,-36.111356440731505],[139.66519665196654,-36.22786827235341],[139.67239672396727,-36.22786827235341],[139.66519665196654,-36.18396526333646],[139.61119611196114,-36.07589631806397],[139.60039600396004,-36.03705904085667],[139.59319593195931,-36.02186184542772],[139.47439474394747,-35.8969071274564],[139.45639456394565,-35.88339850929734],[139.4167941679417,-35.87157846840816],[139.40239402394025,-35.8580698502491],[139.37719377193775,-35.8293640366611],[139.18639186391863,-35.69090070053071],[139.16839168391687,-35.68583496872107],[139.10359103591037,-35.64193195970412],[139.09279092790928,-35.63180049608482],[139.05319053190533,-35.611537568846224],[139.04239042390424,-35.6047832597667],[139.0351903519035,-35.58620890979799],[139.04239042390424,-35.574388868908805],[139.0567905679057,-35.56932313709916],[139.0747907479075,-35.57607744617869],[139.07839078390788,-35.55074878713045],[139.08559085590855,-35.535551591701505],[139.11439114391146,-35.511911509923145],[139.1359913599136,-35.49840289176409],[139.1539915399154,-35.50346862357373],[139.18639186391863,-35.52879728262197],[139.20079200792009,-35.535551591701505],[139.2187921879219,-35.53892874624127],[139.2331923319233,-35.54737163259068],[139.24039240392403,-35.56594598255939],[139.23679236792367,-35.58958606433775],[139.229592295923,-35.6047832597667],[139.22599225992263,-35.61491472338599],[139.2331923319233,-35.63180049608482],[139.24039240392403,-35.635177650624584],[139.25119251192513,-35.635177650624584],[139.2547925479255,-35.636866227894465],[139.2547925479255,-35.65206342332341],[139.24759247592476,-35.658817732402945],[139.2331923319233,-35.66557204148247],[139.22599225992263,-35.67570350510177],[139.229592295923,-35.68921212326083],[139.2439924399244,-35.69427785507048],[139.2979929799298,-35.70103216415001],[139.31599315993162,-35.70103216415001],[139.33759337593375,-35.68752354599095],[139.3411934119341,-35.66894919602224],[139.33759337593375,-35.64699769151376],[139.34479344793448,-35.62842334154505],[139.35919359193593,-35.60816041430646],[139.35559355593557,-35.592963218877514],[139.28359283592835,-35.53892874624127],[139.26919269192695,-35.53217443716174],[139.23679236792367,-35.52542012808221],[139.22239222392227,-35.51866581900268],[139.2187921879219,-35.5068457781135],[139.229592295923,-35.50009146903397],[139.26199261992622,-35.49502573722432],[139.26559265592658,-35.48996000541467],[139.26919269192695,-35.4865828508749],[139.2727927279273,-35.48151711906526],[139.28359283592835,-35.47982854179538],[139.29439294392944,-35.48151711906526],[139.3519935199352,-35.493337159954436],[139.3627936279363,-35.48996000541467],[139.3735937359374,-35.47645138725561],[139.37719377193775,-35.46463134636643],[139.36639366393666,-35.452811305477255],[139.35559355593557,-35.44099126458807],[139.34839348393484,-35.429171223698894],[139.3627936279363,-35.38864536922171],[139.3627936279363,-35.37682532833253],[139.3519935199352,-35.370071019253004],[139.33759337593375,-35.37682532833253],[139.31599315993162,-35.39708825557113],[139.30159301593017,-35.35656240109394],[139.26919269192695,-35.3312337420457],[139.22239222392227,-35.31941370115652],[139.17919179191796,-35.31603654661676],[139.18279182791827,-35.3211022784264],[139.18639186391863,-35.324479432966164],[139.189991899919,-35.327856587505934],[139.19719197191972,-35.329545164775816],[139.18279182791827,-35.34474236020476],[139.1359913599136,-35.366693864713234],[139.11799117991183,-35.3802024828723],[139.10359103591037,-35.38864536922171],[139.0747907479075,-35.392022523761476],[139.0459904599046,-35.390333946491594],[139.02799027990284,-35.38357963741206],[138.9811898118981,-35.40046541011089],[138.95958959589598,-35.41397402826995],[138.95238952389525,-35.43592553277843],[138.9559895598956,-35.46463134636643],[138.97038970389707,-35.47476280998573],[139.01359013590138,-35.4865828508749],[139.03159031590314,-35.496714314494206],[139.03879038790387,-35.50853435538338],[139.03159031590314,-35.516977241732796],[139.00639006390065,-35.52204297354244],[138.99558995589956,-35.51866581900268],[138.97398973989743,-35.510222932653264],[138.91638916389167,-35.50178004630385],[138.90918909189094,-35.49502573722432],[138.89838898388984,-35.47982854179538],[138.89118891188912,-35.473074232715845],[138.88038880388802,-35.471385655445964],[138.8047880478805,-35.47645138725561],[138.7939879398794,-35.48320569633514],[138.80838808388086,-35.50178004630385],[138.82638826388268,-35.5068457781135],[138.89838898388984,-35.50853435538338],[138.90918909189094,-35.510222932653264],[138.91998919989203,-35.515288664462915],[138.93438934389343,-35.53217443716174],[138.94518945189452,-35.535551591701505],[138.95958959589598,-35.533863014431624],[138.97038970389707,-35.52879728262197],[138.9775897758978,-35.52879728262197],[138.99918999189993,-35.53892874624127],[138.9919899198992,-35.54737163259068],[138.97398973989743,-35.554125941670215],[138.94878948789489,-35.555814518940096],[138.9379893798938,-35.554125941670215],[138.91998919989203,-35.55074878713045],[138.90918909189094,-35.54906020986056],[138.89838898388984,-35.55074878713045],[138.88038880388802,-35.56088025074975],[138.869588695887,-35.56256882801963],[138.85158851588517,-35.55750309620998],[138.81558815588158,-35.53892874624127],[138.79038790387904,-35.535551591701505],[138.74718747187472,-35.53892874624127],[138.6607866078661,-35.559191673479866],[138.63918639186392,-35.56763455982928],[138.62838628386282,-35.57945460071846],[138.62118621186215,-35.596340373417284],[138.6067860678607,-35.60984899157634],[138.5707857078571,-35.63180049608482],[138.5311853118531,-35.64530911424388],[138.43758437584376,-35.657129155133056],[138.2791827918279,-35.65206342332341],[138.2791827918279,-35.643620536974],[138.2647826478265,-35.65375200059329],[138.24318243182432,-35.66219488694271],[138.2215822158222,-35.66894919602224],[138.19998199982,-35.672326350562],[138.17838178381783,-35.66894919602224],[138.1567815678157,-35.660506309672826],[138.10638106381066,-35.61998045519564],[138.10638106381066,-35.60984899157634],[138.10998109981102,-35.598028950687166],[138.11718117181175,-35.572700291638924],[138.12438124381242,-35.555814518940096],[138.13878138781388,-35.54061732351115],[138.16038160381606,-35.52879728262197],[138.25758257582578,-35.48996000541467],[138.28638286382863,-35.46969707817608],[138.31518315183155,-35.43930268731819],[138.34038340383404,-35.40215398738077],[138.3547835478355,-35.38526821468194],[138.37278372783732,-35.37682532833253],[138.38718387183872,-35.37344817379277],[138.4087840878409,-35.36331671017347],[138.42678426784266,-35.353185246554176],[138.43758437584376,-35.34305378293488],[138.44478444784448,-35.32279085569628],[138.44118441184412,-35.2822650012191],[138.44478444784448,-35.26031349671062],[138.4519845198452,-35.25187061036121],[138.45918459184594,-35.246804878551565],[138.46638466384667,-35.24005056947203],[138.4735847358474,-35.226541951312974],[138.4735847358474,-35.21472191042379],[138.46638466384667,-35.204590446804495],[138.4627846278463,-35.19614756045508],[138.45918459184594,-35.186016096835786],[138.45918459184594,-35.16744174686708],[138.46638466384667,-35.11003011969107],[138.4771847718477,-35.09145576972236],[138.50598505985062,-35.05599564705482],[138.51318513185134,-35.03742129708611],[138.50958509585098,-34.99520686533904],[138.49158491584916,-34.91415515638467],[138.4879848798488,-34.873629301907485],[138.49518495184952,-34.790889015683234],[138.50238502385025,-34.770626088444644],[138.5167851678517,-34.76893751117476],[138.53478534785347,-34.78075755206394],[138.54918549185493,-34.80102047930253],[138.54918549185493,-34.78244612933382],[138.54558545585456,-34.75880604755547],[138.53478534785347,-34.74023169758675],[138.5167851678517,-34.733477388507225],[138.50598505985062,-34.730100233967455],[138.49518495184952,-34.72334592488793],[138.4879848798488,-34.71321446126863],[138.4879848798488,-34.70308299764933],[138.48078480784807,-34.69801726583969],[138.45558455584558,-34.691262956760156],[138.44478444784448,-34.686197224950504],[138.44118441184412,-34.67606576133121],[138.44118441184412,-34.665934297711914],[138.44118441184412,-34.65580283409262],[138.43758437584376,-34.64398279320344],[138.4339843398434,-34.63722848412391],[138.3979839798398,-34.608522670535905],[138.36918369183695,-34.589948320567196],[138.35838358383586,-34.57643970240813],[138.34038340383404,-34.53760242520083],[138.32958329583295,-34.520716652502],[138.29358293582936,-34.503830879803175],[138.2791827918279,-34.483567952564584],[138.26118261182614,-34.43797636627775],[138.2251822518225,-34.319775957385964],[138.20358203582038,-34.28769298925819],[138.17118171181716,-34.27080721655936],[138.1567815678157,-34.26067575294007],[138.15318153181533,-34.25054428932077],[138.16398163981643,-34.23028136208218],[138.16038160381606,-34.21170701211347],[138.09918099180993,-34.14416392131816],[138.07758077580775,-34.128966725889214],[138.0667806678067,-34.1407867667784],[138.06318063180635,-34.16273827128687],[138.05238052380525,-34.18131262125558],[138.01638016380167,-34.22690420754241],[138.00918009180094,-34.24378998024124],[138.00918009180094,-34.26405290747983],[138.02358023580234,-34.28431583471843],[138.03078030780307,-34.29107014379795],[138.03438034380343,-34.29951303014737],[138.0379803798038,-34.30795591649678],[137.99837998379985,-34.35692465732338],[137.929979299793,-34.41433628449939],[137.92637926379263,-34.42953347992834],[137.8939789397894,-34.525782384311654],[137.89037890378904,-34.54097957974059],[137.89037890378904,-34.5696853933286],[137.89037890378904,-34.58150543421778],[137.8831788317883,-34.589948320567196],[137.91197911979123,-34.62371986596485],[137.89757897578977,-34.64398279320344],[137.88677886778868,-34.665934297711914],[137.87957879578795,-34.691262956760156],[137.87237872378722,-34.76049462482535],[137.86877868778691,-34.774003242984406],[137.86517865178655,-34.78751186114347],[137.84717847178473,-34.811151942921825],[137.84357843578437,-34.81959482927124],[137.83637836378364,-34.83141487016042],[137.81837818378187,-34.85167779739901],[137.8147781477815,-34.86012068374843],[137.8147781477815,-34.873629301907485],[137.80037800378005,-34.917532310924436],[137.7751777517775,-34.97663251537033],[137.76437764377647,-35.0087154834981],[137.7751777517775,-35.03404414254634],[137.75357753577538,-35.04755276070541],[137.74637746377465,-35.059372801594584],[137.75357753577538,-35.09314434699224],[137.749977499775,-35.12691589238989],[137.749977499775,-35.13029304692966],[137.74637746377465,-35.13367020146942],[137.7175771757718,-35.145490242358605],[137.69237692376925,-35.17250747867673],[137.68517685176852,-35.17926178775625],[137.67077670776706,-35.180950365026135],[137.62037620376202,-35.16744174686708],[137.58077580775807,-35.140424510548954],[137.5627756277563,-35.13029304692966],[137.54837548375485,-35.13029304692966],[137.51957519575194,-35.13029304692966],[137.5087750877509,-35.12860446965978],[137.49077490774908,-35.11847300604048],[137.48357483574836,-35.11678442877059],[137.4439744397444,-35.11678442877059],[137.4259742597426,-35.11847300604048],[137.40437404374046,-35.123538737850126],[137.38277382773828,-35.1353587787393],[137.35037350373506,-35.165753169597195],[137.33237332373324,-35.17250747867673],[137.26037260372607,-35.165753169597195],[137.23877238772388,-35.17250747867673],[137.20997209972103,-35.19783613772496],[137.1919719197192,-35.224853374043086],[137.17037170371702,-35.241739146741914],[137.12357123571235,-35.241739146741914],[137.06237062370627,-35.226541951312974],[137.0407704077041,-35.226541951312974],[136.97956979569796,-35.25524776490098],[136.95436954369546,-35.28395357848898],[136.91476914769152,-35.29577361937816],[136.8751687516875,-35.29408504210828],[136.85716857168575,-35.27044496032992],[136.85356853568538,-35.265379228520274],[136.83916839168393,-35.25693634217086],[136.83556835568356,-35.248493455821446],[136.83556835568356,-35.241739146741914],[136.84636846368466,-35.226541951312974],[136.84996849968502,-35.21641048769367],[136.85716857168575,-35.204590446804495],[136.88956889568897,-35.18939325137555],[136.90396903969042,-35.17926178775625],[136.8967689676897,-35.17250747867673],[136.90396903969042,-35.165753169597195],[136.9219692196922,-35.15731028324778],[136.92916929169292,-35.15224455143813],[136.93276932769328,-35.145490242358605],[136.939969399694,-35.13198162419954],[136.9615696156962,-35.096521501532],[136.9615696156962,-35.081324306103056],[136.95796957969583,-35.06274995613435],[136.94716947169474,-35.04755276070541],[136.94356943569437,-35.039109874355994],[136.939969399694,-35.03066698800658],[136.9507695076951,-35.01546979257763],[136.9759697596976,-34.996895442608924],[136.97956979569796,-34.98507540171975],[136.97236972369723,-34.96650105175104],[137.0155701557016,-34.917532310924436],[137.0191701917019,-34.90064653822561],[137.029970299703,-34.90064653822561],[137.0947709477095,-34.92428662000397],[137.1379713797138,-34.92597519727385],[137.22437224372243,-34.90740084730514],[137.2675726757268,-34.90571227003526],[137.28917289172892,-34.9107780018449],[137.29637296372965,-34.920909465464206],[137.30717307173074,-34.92766377454373],[137.35757357573578,-34.93779523816303],[137.37557375573755,-34.94792670178233],[137.389973899739,-34.954681010861854],[137.41877418774192,-34.94623812451244],[137.44757447574477,-34.917532310924436],[137.45117451174514,-34.88376076552678],[137.45117451174514,-34.84492348831948],[137.45837458374587,-34.80102047930253],[137.47277472774726,-34.772314665714525],[137.479974799748,-34.76049462482535],[137.479974799748,-34.748674583936165],[137.47637476374763,-34.72503450215781],[137.479974799748,-34.71321446126863],[137.51237512375127,-34.61696555688532],[137.4979749797498,-34.589948320567196],[137.49437494374945,-34.55448819789966],[137.479974799748,-34.525782384311654],[137.48357483574836,-34.483567952564584],[137.479974799748,-34.46668217986576],[137.45837458374587,-34.44810782989705],[137.4439744397444,-34.45148498443681],[137.42957429574295,-34.464993602595875],[137.41517415174155,-34.47174791167541],[137.41517415174155,-34.463305025325994],[137.43677436774368,-34.41940201630904],[137.4439744397444,-34.404204820880096],[137.44757447574477,-34.402516243610215],[137.46197461974623,-34.404204820880096],[137.4655746557466,-34.404204820880096],[137.4655746557466,-34.39913908907045],[137.4691746917469,-34.38900762545115],[137.47637476374763,-34.37718758456197],[137.48357483574836,-34.3552360800535],[137.49077490774908,-34.282627257448546],[137.49077490774908,-34.26067575294007],[137.49077490774908,-34.237035671161706],[137.48357483574836,-34.215084166653234],[137.47277472774726,-34.19313266214476],[137.4547745477455,-34.16442684855675],[137.45117451174514,-34.15598396220734],[137.4547745477455,-34.14754107585793],[137.46197461974623,-34.1407867667784],[137.4691746917469,-34.13740961223863],[137.49437494374945,-34.14922965312781],[137.50517505175054,-34.15091823039769],[137.51957519575194,-34.13740961223863],[137.54837548375485,-34.08675229414215],[137.55557555575558,-34.071555098713205],[137.55197551975522,-34.05804648055415],[137.55197551975522,-34.04960359420473],[137.54117541175412,-34.027652089696254],[137.5339753397534,-34.01752062607696],[137.53037530375303,-34.01583204880708],[137.54117541175412,-34.00063485337813],[137.55197551975522,-33.9837490806793],[137.56997569975698,-33.966863307980475],[137.59157591575917,-33.951666112551536],[137.6167761677617,-33.94153464893224],[137.62397623976238,-33.93140318531294],[137.62757627576275,-33.91958314442376],[137.6311763117631,-33.91114025807435],[137.62397623976238,-33.89932021718517],[137.6167761677617,-33.89087733083576],[137.60957609576099,-33.884123021756224],[137.60237602376026,-33.87736871267669],[137.6167761677617,-33.868925826327285],[137.6311763117631,-33.8571057854381],[137.6527765277653,-33.83177712638986],[137.70317703177034,-33.79293984918256],[137.71397713977143,-33.787874117372915],[137.75357753577538,-33.725396758387255],[137.7751777517775,-33.69331379025948],[137.79317793177933,-33.69837952206913],[137.80037800378005,-33.69837952206913],[137.8615786157862,-33.62577069946417],[137.87957879578795,-33.597064885876165],[137.9047790477905,-33.58693342225687],[137.90837908379086,-33.597064885876165],[137.89757897578977,-33.61395065857499],[137.9047790477905,-33.62745927673406],[137.929979299793,-33.615639235844874],[137.93357933579335,-33.6038191949557],[137.929979299793,-33.578490535907456],[137.93717937179372,-33.553161876859214],[137.93717937179372,-33.52783321781098],[137.929979299793,-33.51094744511215],[137.91917919179195,-33.48730736333379],[137.9047790477905,-33.455224395206024],[137.8939789397894,-33.438338622507196],[137.8831788317883,-33.42483000434813],[137.87237872378722,-33.413009963458954],[137.8615786157862,-33.396124190760126],[137.86517865178655,-33.374172686251654],[137.86877868778691,-33.35897549082271],[137.8615786157862,-33.34377829539376],[137.84357843578437,-33.32351536815517],[137.81837818378187,-33.29312097729728],[137.81117811178115,-33.25934943189963],[137.82197821978218,-33.245840813740564],[137.8291782917829,-33.22557788650197],[137.839978399784,-33.20531495926338],[137.85437854378546,-33.19011776383444],[137.8939789397894,-33.17998630021514],[137.95157951579517,-33.14283760027772],[137.9587795877959,-33.14283760027772],[137.96597965979663,-33.149591909357255],[137.9731797317973,-33.149591909357255],[137.97677976779767,-33.14790333208737],[137.98757987579876,-33.13777186846807],[137.99117991179912,-33.13608329119819],[138.00558005580058,-33.13946044573795],[138.01638016380167,-33.146214754817485],[138.02358023580234,-33.14790333208737],[138.0379803798038,-33.13946044573795],[138.04158041580416,-33.12932898211866],[138.04518045180453,-33.12426325030901],[138.04158041580416,-33.120886095769244],[138.04158041580416,-33.11244320941983],[138.04158041580416,-33.08880312764148],[138.04158041580416,-33.082048818561944],[138.03438034380343,-33.066851623133],[138.03078030780307,-33.04996585043417],[138.01998019980203,-33.03645723227511],[138.00918009180094,-33.024637191385935],[138.00198001980021,-33.019571459576284],[137.97677976779767,-33.021260036846165],[137.969579695797,-33.0178828823064],[137.96237962379627,-33.00943999595699],[137.9587795877959,-33.00437426414734],[137.90117901179013,-32.78823637360235],[137.90117901179013,-32.774727755443294],[137.91197911979123,-32.764596291824],[137.93717937179372,-32.752776250934815],[137.89757897578977,-32.72238186007693],[137.89037890378904,-32.7156275509974],[137.88677886778868,-32.71056181918775],[137.87957879578795,-32.70718466464798],[137.87237872378722,-32.7054960873781],[137.8615786157862,-32.70043035556846],[137.8507785077851,-32.69874177829857],[137.84717847178473,-32.693676046488925],[137.84717847178473,-32.690298891949155],[137.84717847178473,-32.68523316013951],[137.84717847178473,-32.68185600559974],[137.84357843578437,-32.6767902737901],[137.8507785077851,-32.65821592382139],[137.8507785077851,-32.649773037471974],[137.84357843578437,-32.64133015112256],[137.82197821978218,-32.62275580115385],[137.81117811178115,-32.609247182994785],[137.80397803978042,-32.594049987565846],[137.80757807578078,-32.58054136940678],[137.82197821978218,-32.568721328517604],[137.81117811178115,-32.56027844216819],[137.80397803978042,-32.55858986489831],[137.79317793177933,-32.55690128762843],[137.7859778597786,-32.55352413308866],[137.78237782377823,-32.545081246739244],[137.77877778777787,-32.52481831950065],[137.7751777517775,-32.519752587691],[137.76437764377647,-32.52481831950065],[137.7607776077761,-32.5400155149296],[137.75717757177574,-32.56027844216819],[137.75357753577538,-32.57378706032725],[137.7607776077761,-32.594049987565846],[137.7607776077761,-32.6176900693442],[137.7607776077761,-32.65990450109127],[137.75357753577538,-32.68354458286963],[137.75357753577538,-32.693676046488925],[137.77877778777787,-32.70211893283834],[137.78957789577896,-32.712250396457634],[137.7967779677797,-32.72575901461669],[137.80037800378005,-32.73926763277576],[137.80757807578078,-32.77979348725294],[137.80757807578078,-32.84733657804825],[137.80757807578078,-32.857468041667545],[137.80397803978042,-32.86591092801696],[137.7967779677797,-32.877730968906135],[137.7859778597786,-32.901371050684496],[137.77877778777787,-32.91150251430379],[137.77157771577714,-32.91319109157367],[137.76437764377647,-32.90812535976403],[137.7607776077761,-32.90643678249414],[137.75357753577538,-32.918256823383324],[137.75357753577538,-32.92669970973274],[137.75357753577538,-32.938519750621914],[137.75717757177574,-32.94865121424121],[137.7751777517775,-32.97060271874969],[137.77877778777787,-32.982422759638865],[137.77157771577714,-32.99086564598828],[137.74637746377465,-32.99255422325816],[137.7319773197732,-32.99255422325816],[137.72477724777247,-32.9891770687184],[137.70317703177034,-32.9790456050991],[137.67437674376743,-32.95540552332074],[137.65637656376566,-32.95202836878098],[137.6311763117631,-32.962159832400275],[137.60957609576099,-32.977357027829214],[137.59517595175953,-32.99255422325816],[137.59517595175953,-32.99930853233769],[137.59517595175953,-33.019571459576284],[137.59517595175953,-33.0280143459257],[137.59157591575917,-33.03476865500523],[137.51237512375127,-33.10906605488007],[137.49077490774908,-33.11919751849936],[137.4691746917469,-33.127640404848776],[137.45117451174514,-33.13946044573795],[137.4439744397444,-33.16141195024643],[137.4439744397444,-33.185052032024785],[137.44037440374404,-33.20531495926338],[137.43317433174332,-33.22220073196221],[137.38637386373864,-33.29312097729728],[137.38277382773828,-33.311695327265994],[137.37557375573755,-33.389369881680594],[137.36837368373688,-33.413009963458954],[137.35757357573578,-33.43158431342766],[137.31797317973184,-33.48055305425426],[137.30717307173074,-33.49912740422297],[137.25317253172534,-33.61226208130511],[137.22437224372243,-33.65278793578229],[137.2027720277203,-33.67136228575101],[137.18477184771848,-33.678116594830534],[137.15597155971562,-33.70513383114866],[137.13077130771308,-33.71188814022819],[137.0839708397084,-33.71695387203784],[137.0191701917019,-33.7304624901969],[137.01197011970123,-33.72877391292702],[137.0047700477005,-33.72708533565714],[136.9939699396994,-33.71864244930772],[136.99036990369905,-33.71357671749807],[136.99036990369905,-33.706822408418546],[136.98676986769868,-33.69837952206913],[136.96516965169656,-33.68487090391007],[136.94716947169474,-33.681493749370304],[136.92916929169292,-33.69331379025948],[136.92556925569255,-33.71526529476795],[136.9219692196922,-33.72370818111737],[136.91116911169115,-33.73215106746678],[136.90036900369006,-33.73721679927643],[136.89316893168933,-33.73890537654631],[136.88236882368824,-33.743971108355964],[136.88236882368824,-33.75410257197526],[136.8859688596886,-33.765922612864436],[136.88956889568897,-33.77098834467409],[136.94716947169474,-33.75072541743549],[136.96516965169656,-33.75241399470538],[136.91116911169115,-33.78111980829338],[136.90036900369006,-33.79125127191268],[136.87876878768787,-33.803071312801855],[136.85716857168575,-33.804759890071736],[136.8319683196832,-33.804759890071736],[136.8067680676807,-33.808137044611506],[136.7887678876789,-33.8182685082308],[136.7779677796778,-33.83008854911998],[136.75996759967603,-33.83853143546939],[136.73476734767348,-33.84190859000916],[136.7239672396724,-33.846974321818806],[136.709567095671,-33.865548671787515],[136.70236702367026,-33.870614403597166],[136.69516695166953,-33.87230298086705],[136.669966699667,-33.884123021756224],[136.6087660876609,-33.90269737172493],[136.5907659076591,-33.91451741261412],[136.58356583565836,-33.92127172169364],[136.58356583565836,-33.928026030773175],[136.579965799658,-33.948288958011766],[136.54036540365405,-33.97361761706001],[136.5115651156512,-33.99894627610825],[136.49356493564937,-34.009077739727545],[136.45036450364506,-34.01752062607696],[136.43236432364324,-34.027652089696254],[136.3711637116371,-34.073243675983086],[136.36036360363607,-34.08337513960238],[136.3567635676357,-34.093506603221684],[136.3567635676357,-34.113769530460274],[136.35316353163535,-34.12390099407957],[136.34956349563498,-34.134032457698865],[136.33516335163353,-34.14754107585793],[136.3279632796328,-34.157672539477225],[136.3171631716317,-34.18468977579535],[136.2919629196292,-34.2083298575737],[136.23076230762308,-34.30795591649678],[136.19836198361986,-34.33159599827514],[136.13716137161373,-34.3552360800535],[136.11556115561154,-34.383941893641506],[136.12636126361264,-34.39913908907045],[136.1191611916119,-34.40927055268975],[136.11196111961118,-34.41771343903916],[136.11196111961118,-34.42784490265846],[136.12276122761227,-34.441353520817515],[136.12636126361264,-34.4531735617067],[136.12276122761227,-34.483567952564584],[136.11556115561154,-34.51733949796224],[136.10116101161015,-34.53422527066107],[136.0867608676087,-34.53253669339118],[136.07956079560796,-34.503830879803175],[136.06876068760687,-34.4818793752947],[136.04356043560438,-34.48694510710435],[135.99315993159934,-34.51396234342247],[135.96435964359642,-34.51565092069235],[135.94995949959502,-34.520716652502],[135.93555935559357,-34.53422527066107],[135.9319593195932,-34.54942246609001],[135.92475924759248,-34.57812827967801],[135.91755917559175,-34.589948320567196],[135.93915939159393,-34.62034271142508],[135.9427594275943,-34.63722848412391],[135.9319593195932,-34.652425679552856],[135.91035910359102,-34.63385132958415],[135.89235892358926,-34.63047417504438],[135.87435874358744,-34.64398279320344],[135.8671586715867,-34.669311452251684],[135.8671586715867,-34.67944291587098],[135.86355863558634,-34.69801726583969],[135.85995859958598,-34.709837306728865],[135.86355863558634,-34.71828019307828],[135.88155881558816,-34.73516596577711],[135.8887588875889,-34.74698600666628],[135.88155881558816,-34.76893751117476],[135.85995859958598,-34.76893751117476],[135.83835838358385,-34.767248933904874],[135.82755827558276,-34.777380397524176],[135.8239582395824,-34.78751186114347],[135.80235802358027,-34.79933190203265],[135.7987579875799,-34.80608621111218],[135.80595805958063,-34.816217674731476],[135.81675816758167,-34.82128340654112],[135.84915849158494,-34.82128340654112],[135.8671586715867,-34.81959482927124],[135.8887588875889,-34.81284052019171],[135.90315903159035,-34.8043976338423],[135.9427594275943,-34.770626088444644],[135.94635946359466,-34.767248933904874],[135.96075960759606,-34.772314665714525],[135.9679596795968,-34.78075755206394],[135.97515975159752,-34.78582328387359],[135.9859598595986,-34.78075755206394],[135.98955989559897,-34.770626088444644],[135.98955989559897,-34.748674583936165],[135.99315993159934,-34.74023169758675],[136.00036000360006,-34.73516596577711],[136.0075600756008,-34.73685454304699],[136.01476014760146,-34.74360885212652],[136.01836018360183,-34.75711747028558],[136.01836018360183,-34.80102047930253],[136.0111601116011,-34.81790625200136],[136.00036000360006,-34.834792024700185],[135.98235982359824,-34.84998922012913],[135.97155971559715,-34.86180926101831],[135.9679596795968,-34.877006456447255],[136.00036000360006,-34.94623812451244],[135.9967599675997,-34.94623812451244],[135.9967599675997,-34.96143531994139],[136.00036000360006,-34.96650105175104],[136.0111601116011,-34.980009669910096],[136.00396003960043,-34.99014113352939],[135.97875978759788,-34.996895442608924],[135.96435964359642,-35.00702690622822],[135.94635946359466,-34.996895442608924],[135.92835928359284,-34.954681010861854],[135.91395913959138,-34.94623812451244],[135.90315903159035,-34.94286096997268],[135.8779587795878,-34.9310409290835],[135.86355863558634,-34.92935235181362],[135.85995859958598,-34.92259804273409],[135.85995859958598,-34.91415515638467],[135.85635856358567,-34.90571227003526],[135.8239582395824,-34.873629301907485],[135.78435784357845,-34.858432106478546],[135.74115741157414,-34.86180926101831],[135.70515705157055,-34.89051507460631],[135.69795697956982,-34.9107780018449],[135.69435694356946,-34.91415515638467],[135.6907569075691,-34.917532310924436],[135.68355683556837,-34.917532310924436],[135.68715687156873,-34.92597519727385],[135.6907569075691,-34.93779523816303],[135.6907569075691,-34.94792670178233],[135.679956799568,-34.95299243359197],[135.63315633156333,-34.95299243359197],[135.62235622356224,-34.94792670178233],[135.62235622356224,-34.936106660893145],[135.62235622356224,-34.92259804273409],[135.62235622356224,-34.9107780018449],[135.60435604356047,-34.88038361098702],[135.51075510755106,-34.795954747492885],[135.47475474754748,-34.75036316120605],[135.45675456754566,-34.731788811237344],[135.4279542795428,-34.71321446126863],[135.3847538475385,-34.69632868856981],[135.37035370353703,-34.689574379490274],[135.35955359553594,-34.68450864768062],[135.3307533075331,-34.689574379490274],[135.319953199532,-34.686197224950504],[135.34155341553418,-34.650737102282974],[135.34155341553418,-34.63891706139379],[135.32355323553236,-34.62034271142508],[135.28755287552877,-34.59163689783708],[135.2515525155252,-34.5696853933286],[135.229952299523,-34.564619661518954],[135.2119521195212,-34.56799681605872],[135.19395193951942,-34.57306254786837],[135.17235172351724,-34.57643970240813],[135.15795157951578,-34.58319401148766],[135.13995139951402,-34.59670262964672],[135.1219512195122,-34.605145515996135],[135.10755107551074,-34.59670262964672],[135.1111511115111,-34.57812827967801],[135.13995139951402,-34.54097957974059],[135.1507515075151,-34.524093807041766],[135.15435154351547,-34.502142302533294],[135.1651516515165,-34.48863368437423],[135.1759517595176,-34.48019079802482],[135.19035190351906,-34.46668217986576],[135.19395193951942,-34.45655071624646],[135.1975519755198,-34.444730675357285],[135.20115201152015,-34.43628778900787],[135.20835208352082,-34.43122205719822],[135.2191521915219,-34.43628778900787],[135.2191521915219,-34.446419252627166],[135.20835208352082,-34.47005933440552],[135.2119521195212,-34.492010838914],[135.22635226352264,-34.503830879803175],[135.2407524075241,-34.51058518888271],[135.31275312753127,-34.524093807041766],[135.32715327153272,-34.527470961581535],[135.3091530915309,-34.53929100247071],[135.30195301953023,-34.55111104335989],[135.30555305553054,-34.56293108424907],[135.319953199532,-34.57643970240813],[135.3487534875349,-34.584882588757544],[135.35595355953558,-34.59163689783708],[135.34155341553418,-34.603456938726254],[135.35235352353527,-34.61527697961544],[135.37035370353703,-34.628785597774495],[135.39195391953922,-34.63891706139379],[135.40635406354062,-34.64398279320344],[135.4171541715417,-34.64229421593356],[135.43515435154353,-34.63216275231426],[135.49635496354966,-34.62371986596485],[135.5035550355504,-34.61189982507567],[135.4819548195482,-34.605145515996135],[135.4387543875439,-34.60007978418649],[135.4387543875439,-34.588259743297314],[135.44235442354426,-34.5696853933286],[135.44235442354426,-34.5595539297093],[135.4387543875439,-34.546045311550245],[135.4279542795428,-34.54942246609001],[135.4171541715417,-34.55786535243942],[135.4171541715417,-34.56124250697919],[135.40635406354062,-34.5696853933286],[135.40635406354062,-34.57812827967801],[135.40635406354062,-34.5798168569479],[135.39555395553958,-34.57643970240813],[135.38835388353885,-34.5696853933286],[135.3847538475385,-34.5595539297093],[135.38115381153813,-34.547733888820126],[135.38115381153813,-34.53760242520083],[135.38115381153813,-34.53422527066107],[135.37755377553776,-34.522405229771884],[135.37755377553776,-34.51227376615259],[135.39195391953922,-34.503830879803175],[135.39555395553958,-34.49538799345376],[135.39555395553958,-34.483567952564584],[135.39555395553958,-34.47174791167541],[135.38835388353885,-34.45148498443681],[135.36675366753667,-34.422779170848806],[135.35955359553594,-34.40758197541986],[135.34515345153454,-34.27587294836901],[135.32715327153272,-34.22183847573277],[135.30195301953023,-34.1796240439857],[135.2659526595266,-34.177935466715816],[135.24435244352446,-34.15936111674711],[135.23715237152373,-34.14922965312781],[135.229952299523,-34.13740961223863],[135.24795247952483,-34.134032457698865],[135.2659526595266,-34.12727814861933],[135.27315273152732,-34.115458107730156],[135.2659526595266,-34.10363806684098],[135.26955269552695,-34.091818025951795],[135.26955269552695,-34.0816865623325],[135.2659526595266,-34.073243675983086],[135.2659526595266,-34.06142363509391],[135.2659526595266,-34.01752062607696],[135.25875258752586,-33.99725769883837],[135.24435244352446,-33.98037192613954],[135.2191521915219,-33.951666112551536],[135.19035190351906,-33.89256590810564],[135.1759517595176,-33.884123021756224],[135.15435154351547,-33.87905728994658],[135.13995139951402,-33.868925826327285],[135.06435064350643,-33.79462842645244],[135.00675006750066,-33.745659685625846],[134.9455494554946,-33.71188814022819],[134.9347493474935,-33.701756676608895],[134.9131491314913,-33.68655948117995],[134.90594905949058,-33.681493749370304],[134.88794887948882,-33.65616509032206],[134.8807488074881,-33.65109935851241],[134.84834848348487,-33.63759074035335],[134.84114841148414,-33.63083643127382],[134.85554855548554,-33.62239354492441],[134.84834848348487,-33.602130617685816],[134.85194851948523,-33.58355626771711],[134.86274862748627,-33.5649819177484],[134.86634866348663,-33.5447189905098],[134.86634866348663,-33.49912740422297],[134.86274862748627,-33.47886447698438],[134.85554855548554,-33.45860154974579],[134.82314823148232,-33.392747036220364],[134.81234812348123,-33.352221181743175],[134.79794797947983,-33.33533540904435],[134.76554765547655,-33.308318172726224],[134.72954729547297,-33.27285805005869],[134.71874718747188,-33.266103740979155],[134.69714697146975,-33.25597227735986],[134.68634686346866,-33.250906545550215],[134.67554675546756,-33.23402077285139],[134.69354693546939,-33.228955041041736],[134.7151471514715,-33.228955041041736],[134.72954729547297,-33.22557788650197],[134.72954729547297,-33.2137578456128],[134.71874718747188,-33.19180634110432],[134.70794707947078,-33.17323199113561],[134.69354693546939,-33.164789104786195],[134.6719467194672,-33.16141195024643],[134.6071460714607,-33.14283760027772],[134.5819458194582,-33.146214754817485],[134.57114571145712,-33.15972337297655],[134.57474574745748,-33.17660914567538],[134.58914589145894,-33.185052032024785],[134.6179461794618,-33.183363454754904],[134.6287462874629,-33.185052032024785],[134.63594635946362,-33.19518349564409],[134.63954639546398,-33.20531495926338],[134.6467464674647,-33.21206926834291],[134.65394653946538,-33.21713500015256],[134.6611466114661,-33.22557788650197],[134.65394653946538,-33.227266463771855],[134.64314643146434,-33.230643618311625],[134.63594635946362,-33.23739792739115],[134.6287462874629,-33.245840813740564],[134.60354603546034,-33.21206926834291],[134.58914589145894,-33.20193780472361],[134.54234542345426,-33.1934949183742],[134.47754477544777,-33.15803479570666],[134.44514445144455,-33.1546576411669],[134.42354423544236,-33.16141195024643],[134.40194401944018,-33.17323199113561],[134.3767437674377,-33.17829772294526],[134.3767437674377,-33.17154341386573],[134.36954369543696,-33.16141195024643],[134.35874358743587,-33.1546576411669],[134.3551435514355,-33.16141195024643],[134.3551435514355,-33.17492056840549],[134.35154351543514,-33.188429186564555],[134.34794347943483,-33.19856065018385],[134.33354333543338,-33.20531495926338],[134.27954279542797,-33.16310052751631],[134.27234272342724,-33.146214754817485],[134.26874268742688,-33.125951827578895],[134.26514265142652,-33.107377477610186],[134.2435424354244,-33.05840873678358],[134.2327423274233,-33.04658869589441],[134.2219422194222,-33.04152296408476],[134.20034200342002,-33.039834386814874],[134.17154171541716,-33.043211541354644],[134.16074160741607,-33.039834386814874],[134.14994149941498,-33.0280143459257],[134.16434164341644,-33.0178828823064],[134.1967419674197,-33.01112857322687],[134.2111421114211,-33.000997109607574],[134.2111421114211,-32.980734182368984],[134.20394203942038,-32.962159832400275],[134.18954189541898,-32.94696263697133],[134.17514175141753,-32.938519750621914],[134.16434164341644,-32.938519750621914],[134.1571415714157,-32.943585482431565],[134.15354153541534,-32.94865121424121],[134.14994149941498,-32.95202836878098],[134.13914139141394,-32.94865121424121],[134.12114121141212,-32.938519750621914],[134.08154081540818,-32.93514259608215],[134.06714067140672,-32.9300768642725],[134.059940599406,-32.91150251430379],[134.06714067140672,-32.90643678249414],[134.0779407794078,-32.8912395870652],[134.0887408874089,-32.88279670071579],[134.1139411394114,-32.86591092801696],[134.1247412474125,-32.859156618937426],[134.13194131941322,-32.83551653715907],[134.1247412474125,-32.80681072357106],[134.10674106741067,-32.77979348725294],[134.07074070740708,-32.732513323696224],[134.06714067140672,-32.72575901461669],[134.07434074340745,-32.713938973727515],[134.0887408874089,-32.712250396457634],[134.11754117541176,-32.719004705537166],[134.19314193141935,-32.72069328280705],[134.21834218342184,-32.72575901461669],[134.20394203942038,-32.74095621004564],[134.20034200342002,-32.74939909639505],[134.1967419674197,-32.75953056001435],[134.1967419674197,-32.76966202363364],[134.1967419674197,-32.78317064179271],[134.1967419674197,-32.794990682681885],[134.20034200342002,-32.80174499176142],[134.21474214742148,-32.80681072357106],[134.2219422194222,-32.8034335690313],[134.22554225542257,-32.77979348725294],[134.2327423274233,-32.76797344636376],[134.2435424354244,-32.752776250934815],[134.26514265142652,-32.73926763277576],[134.27234272342724,-32.732513323696224],[134.2759427594276,-32.72238186007693],[134.28314283142834,-32.70211893283834],[134.2975429754298,-32.67847885105998],[134.2975429754298,-32.65990450109127],[134.27234272342724,-32.58729567848631],[134.25434254342542,-32.55352413308866],[134.22914229142293,-32.52312974223077],[134.1967419674197,-32.49611250591265]]],[[[-180,65.0665049933699],[179.89559895598956,65.05468495248073],[179.82719827198275,65.03104487070237],[179.80559805598057,65.0276677161626],[179.78039780397808,65.01753625254332],[179.71199711997122,64.95337031628776],[179.47799477994784,64.82334986650679],[179.45639456394565,64.81828413469717],[179.39159391593915,64.82334986650679],[179.29439294392944,64.80984124834774],[179.25119251192513,64.81152982561761],[179.20079200792009,64.79633263018869],[179.17199171991723,64.79295547564891],[179.03879038790387,64.74905246663195],[178.9127891278913,64.7152809212343],[178.75798757987582,64.64098352135946],[178.55998559985602,64.59201478053288],[178.51318513185134,64.59032620326298],[178.48438484384843,64.61058913050158],[178.53838538385384,64.62409774866063],[178.70038700387005,64.64436067589924],[178.71838718387187,64.64773783043901],[178.73278732787327,64.65786929405829],[178.75438754387545,64.68150937583667],[178.7507875078751,64.69164083945594],[178.72198721987223,64.6967065712656],[178.66798667986683,64.70008372580537],[178.64278642786428,64.6967065712656],[178.56718567185675,64.67813222129689],[178.21798217982183,64.65786929405829],[178.23958239582396,64.66293502586794],[178.26118261182614,64.66462360313784],[178.27198271982724,64.66968933494746],[178.26118261182614,64.68488653037642],[178.23958239582396,64.6882636849162],[178.08478084780847,64.6882636849162],[177.97677976779767,64.67137791221737],[177.969579695797,64.67475506675711],[177.96237962379627,64.68319795310654],[177.9587795877959,64.69164083945594],[177.95157951579517,64.70008372580537],[177.93717937179372,64.70514945761502],[177.92637926379263,64.7068380348849],[177.74277742777429,64.7068380348849],[177.72117721177216,64.70852661215477],[177.67437674376743,64.72203523031385],[177.62397623976238,64.72034665304395],[177.60237602376026,64.7254123848536],[177.60957609576099,64.73385527120303],[177.6419764197642,64.74736388936208],[177.62397623976238,64.75242962117173],[177.55557555575558,64.78113543475973],[177.5339753397534,64.78620116656938],[177.49077490774908,64.78788974383926],[177.50517505175054,64.80308693926821],[177.50157501575018,64.81321840288751],[177.48717487174872,64.81997271196704],[177.46917469174696,64.82334986650679],[177.4259742597426,64.82166128923691],[177.4115741157412,64.82503844377669],[177.389973899739,64.835169907396],[177.4115741157412,64.84530137101527],[177.43677436774368,64.84867852555504],[177.49077490774908,64.85036710282492],[177.48357483574836,64.8621871437141],[177.46197461974623,64.87907291641292],[177.45117451174514,64.8908929573021],[177.45117451174514,64.89595868911175],[177.4547745477455,64.90440157546118],[177.45117451174514,64.91284446181058],[177.4439744397444,64.9195987708901],[177.44037440374404,64.92466450269976],[177.43317433174332,64.9297302345094],[177.42237422374222,64.93310738904918],[177.4007740077401,64.93648454358893],[177.32157321573214,64.93310738904918],[177.29637296372965,64.93479596631906],[177.2567725677257,64.94323885266849],[177.23877238772388,64.94492742993836],[177.22077220772206,64.95674747082754],[177.18837188371884,65.0090933661939],[177.17037170371702,65.0276677161626],[177.15237152371526,65.03442202524215],[176.9939699396994,65.05975068429038],[176.95796957969583,65.07832503425908],[176.93636936369364,65.08339076606873],[176.85356853568538,65.08339076606873],[176.81396813968144,65.0766364569892],[176.73116731167312,65.0479306434012],[176.6087660876609,65.03104487070237],[176.5691656916569,65.03273344797225],[176.52236522365223,65.05975068429038],[176.49716497164974,65.06481641610003],[176.4575645756458,65.06988214790968],[176.45036450364506,65.07157072517955],[176.44316443164433,65.0766364569892],[176.4359643596436,65.08170218879886],[176.42876428764288,65.08676792060851],[176.41796417964179,65.09014507514826],[176.40716407164075,65.09183365241816],[176.3819638196382,65.09014507514826],[176.39636396363966,65.06481641610003],[176.3711637116371,65.05468495248073],[176.30636306363067,65.05468495248073],[176.33516335163353,65.0377991797819],[176.3711637116371,65.03442202524215],[176.44316443164433,65.04117633432168],[176.45396453964543,65.03948775705177],[176.48276482764828,65.01415909800355],[176.49716497164974,65.00740478892402],[176.5151651516515,65.00402763438424],[176.54756547565478,65.0006504798445],[176.91476914769152,65.04961922067108],[176.95796957969583,65.04624206613133],[176.97956979569796,65.03104487070237],[176.99036990369905,65.01078194346377],[177.02277022770227,65.00233905711437],[177.05157051570518,64.99727332530472],[177.06597065970664,64.99051901622519],[177.08037080370804,64.97363324352636],[177.17037170371702,64.94492742993836],[177.17757177571775,64.93817312085883],[177.18477184771848,64.92804165723953],[177.19557195571957,64.92128734816],[177.20997209972103,64.91791019362023],[177.22077220772206,64.91453303908048],[177.23157231572316,64.90609015273105],[177.2459724597246,64.88413864822257],[177.23877238772388,64.87907291641292],[177.23517235172352,64.87569576187317],[177.22437224372243,64.863875720984],[177.27477274772747,64.85036710282492],[177.29637296372965,64.83854706193574],[177.29997299973002,64.82334986650679],[177.28557285572856,64.81490698015739],[177.2027720277203,64.79464405291878],[177.08037080370804,64.78113543475973],[177.05517055170554,64.77438112568021],[177.0407704077041,64.77269254841033],[177.02637026370263,64.77438112568021],[177.0155701557016,64.77944685748986],[177.00117001170014,64.79295547564891],[176.9507695076951,64.80308693926821],[176.8859688596886,64.84192421647552],[176.84636846368466,64.85036710282492],[176.62676626766267,64.86725287552375],[176.61236612366127,64.86556429825387],[176.59796597965982,64.8537442573647],[176.5691656916569,64.83685848466587],[176.5367653676537,64.82334986650679],[176.5151651516515,64.81997271196704],[176.47556475564755,64.81152982561761],[176.4575645756458,64.80984124834774],[176.4359643596436,64.81152982561761],[176.43236432364324,64.81659555742726],[176.43236432364324,64.82672702104657],[176.4251642516425,64.84023563920562],[176.39636396363966,64.86049856644422],[176.24156241562417,64.9010244209214],[176.22356223562235,64.90946730727083],[176.2055620556206,64.92128734816],[176.18756187561877,64.92804165723953],[176.11196111961118,64.92466450269976],[176.09036090360905,64.93141881177928],[176.0651606516065,64.95843604809741],[176.04716047160474,64.96350177990706],[176.02916029160292,64.95843604809741],[175.98235982359824,64.93479596631906],[175.9535595355954,64.92466450269976],[175.94635946359466,64.91791019362023],[175.9427594275943,64.91284446181058],[175.9427594275943,64.90271299819128],[175.93915939159393,64.89764726638165],[175.89955899558998,64.863875720984],[175.8671586715867,64.84530137101527],[175.7879578795788,64.82672702104657],[175.7555575555756,64.80815267107786],[175.7159571595716,64.79295547564891],[175.5611556115561,64.81152982561761],[175.51075510755106,64.80646409380799],[175.41355413554135,64.78282401202961],[175.28755287552877,64.77606970295008],[175.2407524075241,64.78620116656938],[175.22275222752228,64.78282401202961],[175.20835208352082,64.77438112568021],[175.1867518675187,64.77100397114043],[175.03915039150394,64.77775828021996],[174.9887498874989,64.77100397114043],[174.86274862748627,64.7152809212343],[174.79434794347947,64.70346088034512],[174.75114751147515,64.6882636849162],[174.7259472594726,64.68488653037642],[174.44154441544418,64.69164083945594],[174.47754477544777,64.67644364402702],[174.52074520745208,64.66968933494746],[174.77274772747728,64.67982079856677],[175.02115021150212,64.7541181984416],[175.10755107551074,64.7642496620609],[175.27675276752768,64.75074104390185],[175.58995589955902,64.78957832110916],[175.6259562595626,64.77438112568021],[175.65835658356588,64.76762681660068],[175.71235712357122,64.77438112568021],[175.84195841958422,64.80984124834774],[175.85635856358567,64.81828413469717],[175.87075870758707,64.83010417558634],[175.8887588875889,64.83854706193574],[175.92475924759248,64.84867852555504],[175.93915939159393,64.85712141190444],[175.98235982359824,64.9010244209214],[176.00396003960043,64.91453303908048],[176.039960399604,64.92128734816],[176.08316083160832,64.9195987708901],[176.12636126361264,64.90777873000093],[176.20916209162095,64.87400718460327],[176.2739627396274,64.82503844377669],[176.28116281162812,64.81659555742726],[176.2919629196292,64.79464405291878],[176.3027630276303,64.78113543475973],[176.3171631716317,64.76762681660068],[176.33156331563316,64.75749535298138],[176.36396363963638,64.75074104390185],[176.37476374763747,64.74060958028255],[176.38556385563857,64.73047811666325],[176.39636396363966,64.72203523031385],[176.41436414364142,64.7152809212343],[176.4251642516425,64.71021518942467],[176.42156421564215,64.70346088034512],[176.4035640356404,64.69164083945594],[176.38556385563857,64.68319795310654],[176.3279632796328,64.66631218040772],[176.1839618396184,64.64773783043901],[176.14436144361446,64.62747490320041],[176.1191611916119,64.59708051234253],[176.11556115561154,64.59032620326298],[176.1047610476105,64.55655465786535],[176.10116101161015,64.54811177151592],[176.11556115561154,64.5413574624364],[176.1191611916119,64.54811177151592],[176.1191611916119,64.5599318124051],[176.12276122761227,64.5700632760244],[176.13356133561336,64.5785061623738],[176.20916209162095,64.62072059412088],[176.24516245162454,64.62409774866063],[176.28476284762849,64.62072059412088],[176.3279632796328,64.62409774866063],[176.36756367563675,64.63422921227993],[176.38916389163893,64.64267209862936],[176.40716407164075,64.65449213951854],[176.42876428764288,64.67813222129689],[176.44316443164433,64.6882636849162],[176.4575645756458,64.69164083945594],[176.54036540365405,64.68488653037642],[176.58356583565836,64.67306648948724],[176.69156691566917,64.62747490320041],[176.70236702367026,64.6173434395811],[176.72756727567275,64.5785061623738],[176.7419674196742,64.57175185329427],[176.75996759967603,64.57344043056418],[176.79236792367925,64.59032620326298],[176.81756817568174,64.59708051234253],[176.82836828368283,64.60383482142205],[176.8319683196832,64.6089005532317],[176.82836828368283,64.61396628504136],[176.82836828368283,64.61903201685101],[176.82836828368283,64.62409774866063],[176.85356853568538,64.64267209862936],[176.91836918369182,64.66968933494746],[176.98676986769868,64.71190376669455],[177.03357033570336,64.71865807577407],[177.1271712717127,64.72034665304395],[177.17037170371702,64.7271009621235],[177.2135721357214,64.73892100301268],[177.2927729277293,64.77100397114043],[177.33957339573396,64.78113543475973],[177.49077490774908,64.76762681660068],[177.479974799748,64.73723242574277],[177.45117451174514,64.68488653037642],[177.45117451174514,64.67306648948724],[177.4547745477455,64.66124644859806],[177.4547745477455,64.65280356224864],[177.4439744397444,64.64267209862936],[177.41877418774192,64.62747490320041],[177.4115741157412,64.6173434395811],[177.39717397173973,64.59370335780275],[177.389973899739,64.58188331691358],[177.37197371973718,64.57175185329427],[177.3647736477365,64.56330896694487],[177.36117361173615,64.54811177151592],[177.36837368373688,64.52109453519779],[177.38637386373864,64.49238872160979],[177.4259742597426,64.4417314035133],[177.4547745477455,64.42146847627473],[177.55557555575558,64.37756546725777],[177.59517595175953,64.34210534459024],[177.62397623976238,64.33366245824081],[177.67077670776712,64.3049566446528],[177.68877688776888,64.2965137583034],[177.7319773197732,64.28807087195398],[177.8147781477815,64.25429932655632],[177.99837998379985,64.21039631753939],[178.18558185581855,64.20533058572974],[178.18558185581855,64.21377347207914],[178.09918099180993,64.2374135538575],[178.07398073980744,64.25429932655632],[178.1027810278103,64.27118509925515],[178.19638196381965,64.29482518103353],[178.21798217982183,64.30326806738293],[178.2359823598236,64.31339953100223],[178.25038250382505,64.32690814916128],[178.2647826478265,64.34379392186011],[178.28278282782827,64.35392538547941],[178.2791827918279,64.36574542636859],[178.2647826478265,64.37418831271799],[178.24318243182432,64.39951697176625],[178.22878228782287,64.41809132173495],[178.21798217982183,64.42653420808438],[178.20358203582038,64.4231570535446],[178.18558185581855,64.41133701265542],[178.19278192781928,64.42146847627473],[178.19998199982,64.43159993989403],[178.19998199982,64.44004282624343],[178.2215822158222,64.42991136262413],[178.40158401584017,64.24416786293705],[178.4087840878409,64.23065924477797],[178.43038430384303,64.17831334941161],[178.44118441184412,64.16480473125256],[178.56358563585638,64.06011294051982],[178.58878588785888,64.03478428147159],[178.55638556385566,64.04491574509089],[178.52038520385207,64.06180151778972],[178.48438484384843,64.07024440413912],[178.45558455584558,64.05842436324994],[178.44478444784448,64.05167005417042],[178.43038430384303,64.04322716782099],[178.41238412384126,64.03816143601134],[178.40158401584017,64.03478428147159],[178.38358383583835,64.00101273607393],[178.46998469984703,63.992569849724504],[178.49158491584916,63.98750411791485],[178.46638466384667,63.98074980883533],[178.38358383583835,63.97906123156545],[178.38358383583835,63.97230692248593],[178.4087840878409,63.967241190676276],[178.4879848798488,63.97230692248593],[178.53478534785347,63.97061834521605],[178.6175861758618,63.948666840707574],[178.63918639186392,63.94697826343767],[178.65718657186574,63.948666840707574],[178.6607866078661,63.9638640361365],[178.65358653586537,63.975684077025676],[178.64638646386464,63.98581554064498],[178.63558635586355,63.994258426994406],[178.64278642786428,64.00101273607393],[178.69318693186932,63.90982956350027],[178.69678696786968,63.89800952261109],[178.69678696786968,63.886189481721914],[178.69318693186932,63.86761513175318],[178.68958689586896,63.85579509086401],[178.69318693186932,63.84566362724473],[178.70758707587078,63.823712122736254],[178.71838718387187,63.78656342279882],[178.739987399874,63.73759468197224],[178.76158761587618,63.6430343548588],[178.75798757987582,63.622771427620194],[178.74358743587436,63.63965720031902],[178.72198721987223,63.6514772412082],[178.70038700387005,63.65654297301785],[178.67878678786786,63.65823155028775],[178.65358653586537,63.6616087048275],[178.6319863198632,63.6717401684468],[178.6067860678607,63.676805900256454],[178.58878588785888,63.6717401684468],[178.60318603186033,63.65823155028775],[178.62478624786252,63.641345777588924],[178.649986499865,63.627837159429845],[178.66798667986683,63.622771427620194],[178.69678696786968,63.62108285035032],[178.7255872558726,63.61601711854067],[178.73278732787327,63.60757423219127],[178.7039870398704,63.59575419130209],[178.66438664386646,63.58899988222254],[178.64278642786428,63.587311304952664],[178.62478624786252,63.592377036762315],[178.62118621186215,63.59913134584184],[178.6175861758618,63.614328541270794],[178.61038610386106,63.619394273080445],[178.58878588785888,63.632902891239496],[178.55998559985602,63.641345777588924],[178.5311853118531,63.6430343548588],[178.50598505985062,63.63628004577927],[178.5311853118531,63.63121431396962],[178.52758527585274,63.614328541270794],[178.50238502385025,63.597442768571966],[178.4735847358474,63.59575419130209],[178.46638466384667,63.59913134584184],[178.46638466384667,63.605885654921366],[178.46638466384667,63.614328541270794],[178.4627846278463,63.619394273080445],[178.45918459184594,63.622771427620194],[178.43038430384303,63.622771427620194],[178.37278372783732,63.63121431396962],[178.3547835478355,63.63121431396962],[178.34038340383404,63.62614858215997],[178.3331833318333,63.61770569581054],[178.32238322383228,63.60926280946114],[178.31518315183155,63.60250850038162],[178.26838268382687,63.58899988222254],[178.26118261182614,63.58224557314301],[178.26838268382687,63.565359800444185],[178.29358293582936,63.54847402774536],[178.34038340383404,63.52821110050678],[178.37278372783732,63.52314536869713],[178.40158401584017,63.52652252323688],[178.42678426784266,63.538342564126054],[178.48078480784807,63.57211410952371],[178.50958509585098,63.578868418603264],[178.67518675186756,63.56367122317431],[178.68238682386823,63.565359800444185],[178.68958689586896,63.57211410952371],[178.69318693186932,63.57549126406349],[178.69678696786968,63.57549126406349],[178.71118711187114,63.570425532253836],[178.7147871478715,63.565359800444185],[178.71118711187114,63.56029406863453],[178.71118711187114,63.54847402774536],[178.71838718387187,63.54003114139596],[178.7255872558726,63.53665398685618],[178.7291872918729,63.53158825504653],[178.71838718387187,63.521456791427255],[178.73638736387363,63.51301390507783],[178.73638736387363,63.50457101872843],[178.7291872918729,63.49781670964887],[178.7255872558726,63.48937382329947],[178.72198721987223,63.475865205140394],[178.70758707587078,63.47079947333077],[178.67878678786786,63.46573374152112],[178.66438664386646,63.458979432441595],[178.65718657186574,63.453913700631944],[178.649986499865,63.445470814282515],[178.64278642786428,63.43871650520299],[178.60318603186033,63.418453577964385],[178.5959859598596,63.41169926888486],[178.66438664386646,63.38974776437638],[178.70038700387005,63.38637060983663],[178.81558815588158,63.42014215523429],[178.8371883718837,63.43533935066321],[178.8227882278823,63.45560227790182],[178.78678786787867,63.49275097783922],[178.75438754387545,63.538342564126054],[178.75798757987582,63.58224557314301],[178.77238772387727,63.59406561403219],[178.77598775987764,63.59575419130209],[178.77958779587794,63.587311304952664],[178.77958779587794,63.57211410952371],[178.7831878318783,63.561982645904436],[178.79038790387904,63.543408295935706],[178.80118801188013,63.51301390507783],[178.81558815588158,63.49106240056935],[179.00639006390065,63.320516096311195],[178.95958959589598,63.33740186901002],[178.9019890198902,63.37623914621733],[178.8479884798848,63.404944959805334],[178.80838808388086,63.38974776437638],[178.80838808388086,63.3509104871691],[178.91998919989203,63.325581828120846],[178.93078930789306,63.293498859993065],[179.02799027990284,63.28674455091354],[179.05319053190533,63.28167881910389],[179.13239132391323,63.23777581008696],[179.16119161191614,63.23271007827731],[179.17919179191796,63.23439865554718],[179.19359193591936,63.23946438735683],[179.21159211592118,63.24284154189661],[179.2331923319233,63.23946438735683],[179.2979929799298,63.21413572830858],[179.3339933399334,63.19724995560978],[179.3411934119341,63.18880706926035],[179.34839348393484,63.1752984511013],[179.3627936279363,63.17023271929165],[179.37719377193775,63.16685556475187],[179.3879938799388,63.16178983294222],[179.4059940599406,63.14152690570364],[179.41319413194134,63.133084019354214],[179.4167941679417,63.11619824665539],[179.42039420394207,63.07736096944808],[179.4167941679417,63.067229505828806],[179.40239402394025,63.05540946493963],[179.3879938799388,63.0570980422095],[179.36999369993703,63.06385235128903],[179.3519935199352,63.067229505828806],[179.33039330393308,63.0655409285589],[179.31239312393126,63.06047519674925],[179.2727927279273,63.043589424050424],[179.24759247592476,63.02501507408172],[179.24039240392403,63.00644072411302],[179.25119251192513,62.98448921960454],[179.29079290792907,62.92707759242853],[179.31599315993162,62.90681466518993],[179.34479344793448,62.893306047030876],[179.4707947079471,62.884863160681476],[179.51039510395105,62.87304311979227],[179.5391953919539,62.84940303801392],[179.54639546395464,62.83589441985487],[179.54639546395464,62.80887718353674],[179.549995499955,62.79705714264756],[179.56439564395646,62.78523710175838],[179.5715957159572,62.78185994721861],[179.57879578795792,62.78017136994873],[179.5859958599586,62.776794215408984],[179.5859958599586,62.77003990632943],[179.58959589595895,62.76159701998003],[179.59679596795968,62.74808840182098],[179.60759607596077,62.7160054336932],[179.60759607596077,62.705873970073895],[179.60039600396004,62.69405392918472],[179.58959589595895,62.68561104283532],[179.57879578795792,62.678856733755765],[179.56799567995682,62.670413847406365],[179.55719557195573,62.65859380651719],[179.5607956079561,62.65352807470754],[179.56439564395646,62.643396611088235],[179.56799567995682,62.63664230200871],[179.56799567995682,62.629887992929184],[179.56439564395646,62.62482226111953],[179.55359553595537,62.62313368384966],[179.46359463594638,62.62313368384966],[179.43479434794347,62.616379374770105],[179.42399423994243,62.5978050248014],[179.42039420394207,62.57416494302305],[179.40959409594097,62.54714770670492],[179.38439384393843,62.52013047038679],[179.34839348393484,62.50662185222774],[179.31239312393126,62.49986754314821],[179.189991899919,62.50324469768796],[179.15039150391505,62.496490388608436],[179.11439114391146,62.47285030683008],[179.11439114391146,62.447521647781855],[179.15039150391505,62.41712725692395],[179.1359913599136,62.37997855698654],[179.13959139591395,62.366469938827464],[179.14679146791468,62.35296132066841],[179.15039150391505,62.34114127977924],[179.14679146791468,62.33269839342981],[179.1359913599136,62.32425550708041],[179.10359103591037,62.29723827076228],[179.0891908919089,62.29048396168275],[179.0747907479075,62.287106807142976],[179.05319053190533,62.29386111622253],[179.0459904599046,62.31581262073098],[179.04239042390424,62.32087835254063],[179.0351903519035,62.32594408435028],[178.9775897758978,62.35296132066841],[178.9379893798938,62.366469938827464],[178.81558815588158,62.38166713425642],[178.73638736387363,62.4036186387649],[178.4879848798488,62.43739018416255],[178.37638376383762,62.47285030683008],[178.3007830078301,62.47453888409996],[178.2647826478265,62.488047502259036],[178.18918189181892,62.50324469768796],[178.1279812798128,62.52688477946634],[178.05958059580598,62.540393397625394],[177.8939789397894,62.560656324864],[177.68157681576815,62.575853520292924],[177.30717307173074,62.58260782937245],[177.31797317973184,62.585984983912226],[177.3251732517325,62.585984983912226],[177.33957339573396,62.5876735611821],[177.30717307173074,62.60624791115083],[177.2675726757268,62.616379374770105],[177.30717307173074,62.65521665197741],[177.31797317973184,62.67547957921602],[177.3251732517325,62.68054531102567],[177.33237332373324,62.683922465565416],[177.33237332373324,62.68898819737507],[177.33237332373324,62.697431083724496],[177.3251732517325,62.727825474582374],[177.32157321573214,62.73120262912215],[177.31797317973184,62.736268360931774],[177.32157321573214,62.74639982455108],[177.3251732517325,62.75146555636073],[177.33957339573396,62.76497417451978],[177.34317343173433,62.76666275178968],[177.41877418774192,62.77341706086921],[177.42957429574295,62.77003990632943],[177.42957429574295,62.77848279267886],[177.4259742597426,62.78523710175838],[177.4259742597426,62.79199141083791],[177.42957429574295,62.79705714264756],[177.44757447574477,62.803811451727086],[177.4547745477455,62.80887718353674],[177.45837458374587,62.81563149261626],[177.4439744397444,62.822385801695816],[177.3647736477365,62.81563149261626],[177.33237332373324,62.80718860626686],[177.29997299973002,62.78692567902826],[177.2711727117271,62.759908442710156],[177.25317253172534,62.732891206392026],[177.2567725677257,62.727825474582374],[177.2675726757268,62.71262827915342],[177.18837188371884,62.70925112461367],[177.15597155971562,62.719382588232946],[177.1271712717127,62.74639982455108],[177.15237152371526,62.776794215408984],[177.15597155971562,62.78692567902826],[177.1487714877149,62.795368565377686],[177.10197101971022,62.822385801695816],[177.04797047970482,62.83420584258499],[177.03357033570336,62.84096015166452],[177.029970299703,62.84602588347417],[177.02637026370263,62.85109161528382],[177.02637026370263,62.857845924363346],[177.0191701917019,62.862911656173],[177.00837008370087,62.86797738798265],[176.99756997569978,62.86966596525252],[176.9939699396994,62.86966596525252],[176.9759697596976,62.861223078903095],[176.97956979569796,62.84096015166452],[176.9939699396994,62.817320069886165],[177.0047700477005,62.80043429718734],[176.99756997569978,62.79367998810781],[177.01197011970123,62.78523710175838],[177.029970299703,62.77848279267886],[177.0407704077041,62.768351329059556],[177.03717037170372,62.75653128817038],[177.02277022770227,62.74808840182098],[176.95436954369546,62.71093970188355],[176.93276932769328,62.69405392918472],[176.92916929169292,62.67210242467624],[176.95796957969583,62.643396611088235],[177.01197011970123,62.62313368384966],[177.0191701917019,62.616379374770105],[177.02277022770227,62.59949360207128],[177.03357033570336,62.589362138452],[177.05157051570518,62.58429640664235],[177.06597065970664,62.58260782937245],[177.0947709477095,62.58260782937245],[177.17757177571775,62.59611644753153],[177.2675726757268,62.5876735611821],[177.23877238772388,62.5690992112134],[177.0155701557016,62.550524861244696],[176.8607686076861,62.52013047038679],[176.709567095671,62.49986754314821],[176.6879668796688,62.49986754314821],[176.68436684366844,62.513376161307264],[176.69156691566917,62.52013047038679],[176.70236702367026,62.523507624926566],[176.71676716767166,62.52857335673622],[176.7239672396724,62.540393397625394],[176.69516695166953,62.540393397625394],[176.66276662766631,62.53532766581574],[176.63756637566377,62.52181904765669],[176.6339663396634,62.49986754314821],[176.61236612366127,62.496490388608436],[176.59796597965982,62.49311323406869],[176.59436594365945,62.48635892498913],[176.59796597965982,62.47453888409996],[176.6087660876609,62.47285030683008],[176.64116641166413,62.477916038639734],[176.64116641166413,62.47285030683008],[176.59436594365945,62.45427595686138],[176.55836558365587,62.44921022505173],[176.43236432364324,62.406995793304674],[176.41796417964179,62.4036186387649],[176.3927639276393,62.39517575241547],[176.32076320763207,62.33438697069971],[176.27756277562776,62.31750119800088],[175.95715957159575,62.25502383901522],[175.63315633156333,62.19085790275969],[175.55395553955543,62.15877493463191],[175.47475474754748,62.14188916193308],[175.33795337953381,62.082788957487196],[175.3055530555306,62.07434607113777],[175.32715327153272,62.08447753475707],[175.35595355953564,62.09460899837637],[175.38115381153813,62.10642903926555],[175.39555395553958,62.12331481196438],[175.34515345153454,62.1114947710752],[175.319953199532,62.1098061938053],[175.29835298352987,62.11656050288482],[175.27315273152732,62.15202062555238],[175.25875258752586,62.16890639825121],[175.2515525155252,62.16046351190178],[175.25515255152555,62.09460899837637],[175.2515525155252,62.06590318478837],[175.229952299523,62.04395168027989],[175.1759517595176,62.02200017577141],[174.8159481594816,61.94770277589657],[174.76554765547655,61.917308385038666],[174.77274772747728,61.92743984865797],[174.779947799478,61.93250558046762],[174.8051480514805,61.944325621356796],[174.78714787147874,61.957834239515876],[174.75474754747546,61.961211394055624],[174.7007470074701,61.957834239515876],[174.67554675546756,61.9628999713255],[174.62514625146252,61.9831628985641],[174.59994599946003,61.98485147583398],[174.6179461794618,61.95952281678575],[174.64314643146434,61.94601419862667],[174.6719467194672,61.9358827350074],[174.70434704347042,61.91224265322904],[174.71874718747188,61.903799766879615],[174.72954729547297,61.895356880530215],[174.7259472594726,61.88691399418079],[174.70434704347042,61.868339644212085],[174.68994689946902,61.86158533513256],[174.48834488344886,61.814305171575825],[174.45234452344522,61.814305171575825],[174.42714427144273,61.814305171575825],[174.41274412744127,61.8176823261156],[174.3947439474395,61.82443663519513],[174.38394383943842,61.826125212465],[174.35874358743587,61.82105948065535],[174.3767437674377,61.82950236700478],[174.38034380343805,61.83963383062408],[174.37314373143732,61.84807671697348],[174.35154351543514,61.84807671697348],[174.3407434074341,61.84469956243373],[174.30474304743046,61.82105948065535],[174.2867428674287,61.814305171575825],[174.26514265142652,61.810928017036076],[174.20394203942038,61.814305171575825],[174.18954189541898,61.81261659430595],[174.15354153541534,61.800796553416774],[174.1679416794168,61.8075508624963],[174.19314193141935,61.81599374884573],[174.17154171541716,61.832879521544555],[174.13914139141394,61.84469956243373],[174.1031410314103,61.84807671697348],[174.07434074340745,61.841322407893955],[174.08514085140854,61.827813789734904],[174.03114031140314,61.826125212465],[174.01314013140131,61.8176823261156],[174.02034020340204,61.797419398877],[174.03834038340386,61.783910780717946],[174.059940599406,61.77546789436852],[174.08154081540818,61.778845048908295],[174.10674106741067,61.78053362617817],[174.059940599406,61.770402162558895],[174.03834038340386,61.76195927620947],[174.02034020340204,61.748450658050416],[174.00954009540095,61.73494203989134],[174.00234002340022,61.72312199900216],[173.9915399153992,61.71467911265276],[173.94113941139415,61.70961338084311],[173.92313923139233,61.70454764903346],[173.88713887138874,61.68259614452498],[173.8259382593826,61.6606446400165],[173.80433804338043,61.6505131763972],[173.81153811538115,61.67584183544545],[173.80073800738006,61.69103903087441],[173.77913779137793,61.69948191722381],[173.67113671136713,61.721433421732286],[173.5991359913599,61.75351638986007],[173.5739357393574,61.756893544399816],[173.54513545135455,61.748450658050416],[173.53433534335346,61.738319194431114],[173.52353523535237,61.721433421732286],[173.51273512735128,61.702859071763584],[173.5091350913509,61.68766187633463],[173.50193501935019,61.6707761036358],[173.47313473134733,61.6420702900478],[173.47313473134733,61.631938826428495],[173.48393483934842,61.618430208269444],[173.49113491134915,61.604921590110365],[173.4947349473495,61.58972439468144],[173.49833498334982,61.57115004471274],[173.48033480334806,61.555952849283784],[173.44433444334447,61.55257569474401],[173.37953379533798,61.561018581093435],[173.35433354333543,61.55764142655366],[173.3327333273333,61.547509962934356],[173.30753307533075,61.534001344775305],[173.289532895329,61.51880414934635],[173.30753307533075,61.49178691302825],[173.28593285932862,61.46476967671012],[173.12753127531278,61.39722658591481],[173.08433084330846,61.39216085410516],[173.00153001530015,61.41580093588351],[172.99432994329942,61.42086666769316],[172.97632976329766,61.43944101766186],[172.96912969129693,61.444506749471515],[172.95472954729547,61.44788390401129],[172.92952929529298,61.44788390401129],[172.91512915129152,61.45126105855104],[172.9079290792908,61.45463821309082],[172.90432904329043,61.45970394490047],[172.90072900729007,61.466458253979994],[172.90072900729007,61.46983540851977],[172.90072900729007,61.471523985789645],[172.8971289712897,61.471523985789645],[172.82512825128254,61.46814683124987],[172.71712717127173,61.430998131312464],[172.74952749527495,61.41580093588351],[172.82512825128254,61.387095122295506],[172.87912879128794,61.38034081321598],[172.90072900729007,61.37189792686655],[172.9187291872919,61.36176646324728],[172.92952929529298,61.351634999627976],[172.9367293672937,61.338126381468925],[172.9367293672937,61.32630634057972],[172.94032940329407,61.31786345423032],[172.95472954729547,61.31448629969054],[172.89352893528934,61.27733759975314],[172.8179281792818,61.29253479518209],[172.7387273872739,61.32292918603997],[172.6667266672667,61.33474922692915],[172.7387273872739,61.30604341334114],[172.76752767527677,61.28578048610254],[172.76752767527677,61.262140404324185],[172.7531275312753,61.25538609524466],[172.7387273872739,61.253697517974786],[172.72432724327246,61.253697517974786],[172.709927099271,61.25200894070488],[172.6991269912699,61.248631786165134],[172.6847268472685,61.235123168006055],[172.67392673926742,61.23174601346631],[172.67032670326705,61.226680281656655],[172.6559265592656,61.2013516226084],[172.6451264512645,61.191220158989125],[172.57312573125733,61.18784300444935],[172.38592385923863,61.226680281656655],[172.3391233912339,61.2114830862277],[172.36432364323645,61.192908736259],[172.38232382323827,61.1743343862903],[172.4039240392404,61.159137190861344],[172.4327243272433,61.14900572724204],[172.4327243272433,61.142251418162516],[172.3355233552336,61.12198849092394],[172.28512285122855,61.123677068193814],[172.24192241922418,61.142251418162516],[172.26352263522637,61.115234181844386],[172.29952299522995,61.10341414095521],[172.4039240392404,61.09834840914556],[172.4147241472415,61.09497125460581],[172.41832418324185,61.08990552279616],[172.41832418324185,61.08315121371663],[172.41832418324185,61.07639690463711],[172.42192421924221,61.07301975009733],[172.43632436324367,61.071331172827456],[172.49032490324902,61.08146263644673],[172.47592475924762,61.0561339773985],[172.4471244712447,61.044313936509326],[172.4147241472415,61.0375596274298],[172.37152371523717,61.012230968381544],[172.35352353523535,61.012230968381544],[172.31752317523177,61.02067385473097],[172.26352263522637,61.01560812292132],[172.24192241922418,61.02067385473097],[172.13392133921343,61.06795401828768],[172.0079200792008,61.101725563685335],[172.02952029520299,61.08652836825638],[172.15912159121592,61.0274281638105],[172.1807218072181,61.012230968381544],[172.1951219512195,60.99534519568272],[172.20232202322023,60.97508226844414],[172.19872198721987,60.95819649574531],[172.1807218072181,60.94468787758623],[172.16632166321665,60.94299930031636],[172.1267212672127,60.946376454856136],[172.1159211592116,60.941310723046485],[172.10512105121052,60.927802104887405],[172.10152101521015,60.92104779580788],[172.09072090720906,60.91598206399823],[172.0835208352084,60.887276250410224],[172.04752047520475,60.86025901409212],[172.0079200792008,60.85519328228247],[171.98991989919898,60.88896482768013],[171.9971199711997,60.90416202310905],[172.00432004320044,60.92104779580788],[172.00432004320044,60.93624499123683],[171.9827198271983,60.95144218666579],[171.95751957519576,60.95313076393566],[171.95751957519576,60.93793356850671],[171.95751957519576,60.919359218538006],[171.93951939519394,60.9092277549187],[171.9431194311943,60.90247344583918],[171.9431194311943,60.8990962912994],[171.94671946719467,60.89571913675965],[171.93951939519394,60.88221051860057],[171.94671946719467,60.8720790549813],[171.95751957519576,60.865324745901745],[171.96111961119612,60.85519328228247],[171.95031950319503,60.84843897320292],[171.89991899919,60.83661893231374],[171.82431824318246,60.83155320050409],[171.80271802718028,60.834930355043866],[171.7451174511745,60.85350470501257],[171.72351723517238,60.84675039593304],[171.66231662316625,60.816356005075164],[171.62991629916303,60.816356005075164],[171.59751597515975,60.802847386916085],[171.58311583115835,60.799470232376336],[171.57231572315726,60.802847386916085],[171.56151561515617,60.80622454145586],[171.5471154711547,60.80960169599564],[171.53631536315362,60.80622454145586],[171.56511565115653,60.79271592329681],[171.5939159391594,60.78596161421726],[171.61911619116194,60.77414157332808],[171.6335163351634,60.745435759740076],[171.60111601116012,60.736992873390676],[171.5039150391504,60.731927141581025],[171.4787147871479,60.7234842552316],[171.43551435514354,60.69984417345324],[171.4139141391414,60.68971270983397],[171.4391143911439,60.704909905262895],[171.45711457114572,60.718418523421974],[171.46791467914682,60.731927141581025],[171.4607146071461,60.74712433700998],[171.44631446314463,60.75725580062925],[171.42831428314287,60.76569868697868],[171.42111421114214,60.77583015059798],[171.4139141391414,60.78427303694738],[171.40671406714068,60.78596161421726],[171.3959139591396,60.78258445967751],[171.3959139591396,60.77583015059798],[171.39951399513996,60.76907584151843],[171.40311403114032,60.76063295516903],[171.40671406714068,60.75050149154973],[171.40671406714068,60.7150413688822],[171.40311403114032,60.704909905262895],[171.3959139591396,60.701532750723146],[171.3851138511385,60.69984417345324],[171.37791377913783,60.69815559618337],[171.37431374313746,60.682958400754416],[171.37431374313746,60.65425258716641],[171.3707137071371,60.642432546277234],[171.35631356313564,60.62723535084831],[171.31311313113133,60.615415309959104],[171.26991269912702,60.593463805450654],[171.21951219512198,60.58333234183135],[171.17991179911803,60.559692260053],[171.1619116191162,60.55631510551322],[171.1187111871119,60.559692260053],[171.07911079110795,60.559692260053],[171.0539105391054,60.55631510551322],[170.98190981909818,60.527609291925216],[170.96030960309605,60.52085498284569],[170.80910809108093,60.51241209649626],[170.7911079110791,60.517477828305914],[170.76950769507698,60.52592071465534],[170.75150751507516,60.52929786919509],[170.73350733507334,60.51916640557582],[170.75150751507516,60.500592055607086],[170.76590765907662,60.49383774652756],[170.78750787507875,60.495526323797435],[170.80910809108093,60.49890347833721],[170.78750787507875,60.47695197382873],[170.78390783907838,60.46344335566968],[170.7911079110791,60.4499347375106],[170.75510755107553,60.43642611935155],[170.71550715507158,60.427983233002124],[170.639906399064,60.4229175011925],[170.62190621906223,60.427983233002124],[170.60750607506077,60.446557582970854],[170.58590585905858,60.4499347375106],[170.51750517505178,60.4499347375106],[170.5247052470525,60.43473754208168],[170.54270542705427,60.43473754208168],[170.56430564305646,60.438114696621426],[170.58230582305822,60.43473754208168],[170.61110611106113,60.40096599668402],[170.61830618306186,60.389145955794845],[170.61110611106113,60.38745737852494],[170.6039060390604,60.38576880125507],[170.60030600306004,60.37732591490567],[170.6147061470615,60.370571605826115],[170.65430654306545,60.36044014220684],[170.66150661506617,60.35030867858754],[170.66510665106654,60.34186579223811],[170.66150661506617,60.331734328618836],[170.65430654306545,60.321602864999534],[170.61830618306186,60.30302851503083],[170.53550535505354,60.29120847414163],[170.50310503105032,60.272634124172924],[170.47430474304747,60.23210826969574],[170.45630456304565,60.183139528869134],[170.4419044190442,60.08013631540629],[170.4167041670417,60.014281801880884],[170.41310413104134,59.99401887464228],[170.40230402304024,59.965313061054275],[170.36990369903702,59.94842728835545],[170.26550265502658,59.91972147476744],[170.2331023310233,59.92141005203732],[170.2079020790208,59.93323009292649],[170.17550175501754,59.9534930201651],[170.16110161101614,59.96024732924462],[170.11790117901182,59.96869021559405],[170.10350103501037,59.97713310194345],[170.09990099901,59.98895314283263],[170.10350103501037,59.99908460645193],[170.1107011070111,60.00752749280136],[170.11790117901182,60.019347533690535],[170.10350103501037,60.024413265500186],[170.0567005670057,60.04636477000864],[170.03870038700387,60.049741924548414],[169.98829988299883,60.05311907908819],[169.9558995589956,60.059873388167716],[169.93429934299343,60.07507058359664],[169.90549905499057,60.12235074715338],[169.86229862298626,60.16287660163056],[169.8478984789848,60.18145095159926],[169.84429844298444,60.210156765187264],[169.86229862298626,60.21859965153669],[169.97389973899737,60.23210826969574],[169.94509945099452,60.24392831058492],[169.91989919899203,60.250682619664445],[169.89469894698948,60.250682619664445],[169.86589865898662,60.245616887854794],[169.8370983709837,60.24392831058492],[169.81189811898122,60.250682619664445],[169.75429754297545,60.2760112787127],[169.74709747097472,60.28276558779223],[169.74349743497436,60.29289705141153],[169.74349743497436,60.30302851503083],[169.74349743497436,60.313159978650106],[169.73269732697327,60.321602864999534],[169.7146971469715,60.33848863769836],[169.70749707497077,60.34693152404776],[169.70749707497077,60.36550587401649],[169.70749707497077,60.38239164671529],[169.70749707497077,60.39927741941412],[169.69309693096932,60.41616319211295],[169.66429664296646,60.429671810272026],[169.6066960669607,60.44318042843108],[169.56709567095675,60.46850908747933],[169.5526955269553,60.47188624201908],[169.52029520295207,60.47188624201908],[169.35109351093513,60.53267502373487],[169.29349293492936,60.54280648735417],[169.2646926469265,60.55124937370357],[169.24669246692469,60.5681351464024],[169.34029340293404,60.56138083732287],[169.37269372693726,60.5681351464024],[169.30789307893082,60.612038155419356],[169.28629286292863,60.620481041768755],[169.2358923589236,60.620481041768755],[169.21429214292147,60.62892392811818],[169.20709207092074,60.620481041768755],[169.20709207092074,60.615415309959104],[169.20709207092074,60.60866100087958],[169.21429214292147,60.60190669180005],[169.19989199892,60.588398073641],[169.18909189091892,60.58333234183135],[169.1818918189182,60.579955187291574],[169.1710917109171,60.58164376456148],[169.15309153091533,60.59177522818075],[169.1458914589146,60.593463805450654],[169.13149131491315,60.5867094963711],[169.13869138691388,60.5782666100217],[169.15309153091533,60.571512300942175],[169.1674916749168,60.5681351464024],[168.97668976689766,60.57488945548192],[168.749887498875,60.56982372367227],[168.7318873188732,60.5681351464024],[168.70308703087034,60.55462652824335],[168.6958869588696,60.552937950973444],[168.64908649086493,60.552937950973444],[168.62388623886238,60.55631510551322],[168.5770857708577,60.58164376456148],[168.53028530285303,60.593463805450654],[168.48348483484835,60.598529537260276],[168.2818828188282,60.5968409599904],[168.23868238682388,60.585020919101225],[168.0946809468095,60.571512300942175],[167.83907839078392,60.51072351922639],[167.81747817478174,60.51241209649626],[167.79947799477998,60.522543560115565],[167.78147781477816,60.54787221916382],[167.7670776707767,60.552937950973444],[167.74907749077494,60.54787221916382],[167.74907749077494,60.53436360100474],[167.75987759877597,60.52085498284569],[167.77067770677706,60.509034941956514],[167.77067770677706,60.49721490106734],[167.7526775267753,60.490460591987784],[167.7130771307713,60.48877201471791],[167.6338763387634,60.455000469320254],[167.5906759067591,60.44486900570095],[167.54747547475478,60.44318042843108],[167.53307533075332,60.44824616024073],[167.489874898749,60.465131932939556],[167.47907479074792,60.46850908747933],[167.4718747187472,60.460066201129905],[167.46827468274682,60.44824616024073],[167.46827468274682,60.43642611935155],[167.46467464674646,60.42629465573225],[167.43227432274324,60.4212289239226],[167.36747367473674,60.465131932939556],[167.33507335073352,60.47188624201908],[167.36387363873638,60.43980327389133],[167.37467374673747,60.4212289239226],[167.37467374673747,60.40603172849367],[167.3566735667357,60.39927741941412],[167.33147331473316,60.40434315122377],[167.3026730267303,60.4127860375732],[167.28107281072812,60.41616319211295],[167.30627306273067,60.392523110334594],[167.27747277472776,60.37394876036589],[167.23067230672308,60.36044014220684],[167.19107191071913,60.35537441039719],[167.16227162271622,60.362128719476715],[167.11547115471154,60.37732591490567],[167.07947079470796,60.39927741941412],[167.0758707587076,60.4229175011925],[167.04347043470437,60.427983233002124],[167.02547025470255,60.427983233002124],[167.02547025470255,60.419540346652724],[167.03267032670328,60.40940888303342],[167.039870398704,60.39927741941412],[167.039870398704,60.39083453306472],[167.03267032670328,60.38239164671529],[167.05427054270547,60.340177214968236],[167.04707047070474,60.32835717407906],[167.0218702187022,60.321602864999534],[166.9858698586986,60.31653713318988],[166.92466924669247,60.29796278322118],[166.91386913869138,60.29627420595128],[166.89946899468998,60.299651360491055],[166.90666906669065,60.29289705141153],[166.9318693186932,60.27938843325245],[166.93906939069393,60.269256969633176],[166.9318693186932,60.25912550601387],[166.91386913869138,60.250682619664445],[166.8562685626856,60.23041969242587],[166.83826838268385,60.22028822880657],[166.72666726667268,60.13248221077268],[166.53226532265325,60.00246176099171],[166.35946359463594,59.88426135209991],[166.28746287462877,59.84373549762273],[166.24426244262446,59.83022687946365],[166.19746197461978,59.8268497249239],[166.1110611106111,59.8268497249239],[166.10386103861038,59.83866976581308],[166.10026100261,59.86399842486131],[166.10386103861038,59.90959001114814],[166.11466114661147,59.93154151565662],[166.14346143461438,59.96700163832415],[166.15066150661505,59.987264565562754],[166.15066150661505,60.000773183721805],[166.14346143461438,60.02103611096041],[166.14346143461438,60.032856151849586],[166.14706147061474,60.041299038198986],[166.1758617586176,60.120662169883474],[166.19026190261906,60.1375479425823],[166.21186211862118,60.152745138011255],[166.2658626586266,60.17807379705951],[166.2838628386284,60.19664814702821],[166.28746287462877,60.22535396061622],[166.26226262262622,60.264191237823525],[166.25866258662586,60.286142742332004],[166.26946269462695,60.30978282411036],[166.27666276662768,60.331734328618836],[166.2658626586266,60.35875156493694],[166.25146251462513,60.384080223985194],[166.23346233462337,60.39590026487437],[166.27306273062732,60.384080223985194],[166.31266312663126,60.392523110334594],[166.34506345063454,60.41616319211295],[166.3630636306363,60.4499347375106],[166.35946359463594,60.451623314780505],[166.3486634866349,60.45668904659016],[166.38106381063812,60.47019766474921],[166.39186391863922,60.48032912836851],[166.39186391863922,60.49214916925769],[166.3738637386374,60.49890347833721],[166.35586355863558,60.490460591987784],[166.3378633786338,60.47864055109861],[166.32346323463236,60.47188624201908],[166.30546305463054,60.473574819288984],[166.27306273062732,60.48370628290826],[166.2550625506255,60.48539486017816],[166.05346053460534,60.45331189205038],[166.0138601386014,60.43980327389133],[165.94545945459458,60.389145955794845],[165.9238592385924,60.38239164671529],[165.94185941859422,60.36550587401649],[165.98145981459817,60.375637337635766],[166.03906039060394,60.4229175011925],[166.08226082260825,60.438114696621426],[166.16866168661687,60.451623314780505],[166.21186211862118,60.45668904659016],[166.15786157861578,60.44318042843108],[166.10746107461074,60.438114696621426],[166.05346053460534,60.424606078462375],[165.9670596705967,60.36550587401649],[165.85545855458554,60.34186579223811],[165.80865808658086,60.321602864999534],[165.76905769057691,60.2945856286814],[165.72225722257224,60.269256969633176],[165.6718567185672,60.25237119693435],[165.5170551705517,60.21859965153669],[165.4630546305463,60.22028822880657],[165.4450544505445,60.25912550601387],[165.43425434254345,60.24392831058492],[165.4306543065431,60.22704253788609],[165.43425434254345,60.21184534245714],[165.4450544505445,60.19664814702821],[165.40185401854018,60.16963091071008],[165.29745297452973,60.14092509712208],[165.2470524705247,60.103776397184646],[165.22905229052293,60.09702208810512],[165.2110521105211,60.09364493356537],[165.19665196651965,60.09364493356537],[165.18585185851862,60.09871066537502],[165.18225182251825,60.103776397184646],[165.1786517865179,60.1105307062642],[165.17505175051753,60.1189735926136],[165.16065160651607,60.1291050562329],[165.16065160651607,60.13248221077268],[165.16425164251643,60.14261367439195],[165.17145171451716,60.14936798347148],[165.18585185851862,60.15949944709078],[165.19305193051935,60.16963091071008],[165.16065160651607,60.16794233344021],[165.1426514265143,60.15612229255103],[165.12825128251285,60.139236519852204],[165.11025110251103,60.12235074715338],[165.08145081450817,60.11390786080395],[165.05265052650526,60.11559643807385],[164.99864998649986,60.13585936531243],[165.00225002250022,60.12403932442325],[165.00225002250022,60.11390786080395],[165.0130501305013,60.09364493356537],[165.00945009450095,60.08351346994607],[165.0238502385024,60.07169342905689],[165.04545045450453,60.068316274517116],[165.05265052650526,60.076759160866544],[165.06345063450635,60.090267779025595],[165.0886508865089,60.09364493356537],[165.1138511385114,60.090267779025595],[165.12825128251285,60.08351346994607],[165.13545135451358,60.07507058359664],[165.1426514265143,60.04467619273876],[165.14985149851498,60.032856151849586],[165.16425164251643,60.022724688230284],[165.20025200252002,60.005838915531456],[165.2110521105211,59.99064172010253],[165.18225182251825,59.987264565562754],[165.16065160651607,59.9737559474037],[165.12825128251285,59.93660724746627],[165.0130501305013,59.84880122943238],[164.99144991449919,59.840358343082954],[164.93024930249305,59.83360403400343],[164.90144901449014,59.82009541584438],[164.86904869048692,59.80152106587565],[164.84024840248406,59.788012447716596],[164.8078480784808,59.78970102498647],[164.7970479704797,59.7981439113359],[164.78624786247866,59.813341106764824],[164.77904779047793,59.82853830219378],[164.7718477184772,59.840358343082954],[164.77544775447757,59.84373549762273],[164.77904779047793,59.84880122943238],[164.78624786247866,59.85386696124203],[164.78624786247866,59.86062127032156],[164.7826478264783,59.867375579401084],[164.7718477184772,59.875818465750484],[164.76824768247684,59.88257277483004],[164.75384753847538,59.90959001114814],[164.72504725047253,59.956870174704875],[164.70344703447034,59.98051025648323],[164.68544685446858,59.99401887464228],[164.62424624246245,60.027790420039935],[164.55224552245522,60.08351346994607],[164.519845198452,60.1003992426449],[164.48744487444878,60.1105307062642],[164.45144451444514,60.11559643807385],[164.4118441184412,60.1105307062642],[164.390243902439,60.103776397184646],[164.38304383043834,60.090267779025595],[164.3758437584376,60.07507058359664],[164.36504365043652,60.076759160866544],[164.33984339843397,60.090267779025595],[164.3218432184322,60.08857920175572],[164.31824318243184,60.063250542707465],[164.33624336243366,60.03623330638936],[164.36864368643688,60.02610184277006],[164.33984339843397,59.992330297372405],[164.2786427864279,59.978821679213326],[164.20664206642067,59.9737559474037],[164.16344163441636,59.9636244837844],[164.14184141841417,59.951804442895224],[164.11664116641168,59.94167297927592],[164.1058410584106,59.92478720657709],[164.10944109441095,59.902835702068614],[164.12744127441277,59.88426135209991],[164.1706417064171,59.867375579401084],[164.18864188641885,59.85386696124203],[164.16344163441636,59.85555553851191],[164.08784087840877,59.87412988848061],[164.06264062640628,59.875818465750484],[164.05184051840519,59.87919562029026],[164.0410404104041,59.907901433878266],[164.0410404104041,59.91296716568792],[164.05544055440555,59.916344320227694],[164.0806408064081,59.91465574295779],[164.08784087840877,59.916344320227694],[164.09864098640986,59.92309862930722],[164.1058410584106,59.934918670196396],[164.11304113041132,59.943361556545796],[164.1382413824138,59.95518159743497],[164.15624156241563,59.970378792863926],[164.20664206642067,59.997396029182056],[164.18144181441818,59.997396029182056],[164.13104131041314,59.98895314283263],[164.10944109441095,59.99064172010253],[164.09144091440913,60.000773183721805],[164.0590405904059,60.024413265500186],[164.0410404104041,60.032856151849586],[164.0158401584016,60.03623330638936],[163.91863918639189,60.03961046092911],[163.8538385383854,60.02610184277006],[163.86103861038612,60.027790420039935],[163.86823868238685,60.032856151849586],[163.8718387183872,60.03792188365924],[163.87543875438757,60.04636477000864],[163.83223832238326,60.059873388167716],[163.82503825038253,60.05649623362794],[163.81423814238144,60.04805334727854],[163.79623796237962,60.04467619273876],[163.77823778237786,60.04467619273876],[163.7638376383764,60.049741924548414],[163.73863738637385,60.05311907908819],[163.65223652236523,60.05143050181829],[163.62703627036274,60.04636477000864],[163.62343623436237,60.02610184277006],[163.63783637836377,60.00415033826158],[163.66303663036632,59.98557598829288],[163.68463684636845,59.9737559474037],[163.70263702637027,59.96869021559405],[163.7206372063721,59.9720673701338],[163.76023760237604,59.98388741102298],[163.76023760237604,59.987264565562754],[163.76023760237604,59.992330297372405],[163.76023760237604,59.99570745191215],[163.7638376383764,59.997396029182056],[163.77103771037713,59.997396029182056],[163.79263792637926,59.99064172010253],[163.77103771037713,59.978821679213326],[163.7530375303753,59.961935906514526],[163.71343713437136,59.92647578384697],[163.6990369903699,59.90452427933849],[163.6882368823688,59.89776997025896],[163.67023670236705,59.89608139298909],[163.56943569435697,59.90621285660839],[163.53343533435333,59.90621285660839],[163.50463504635047,59.89776997025896],[163.45063450634507,59.86230984759143],[163.42543425434258,59.84880122943238],[163.36063360633608,59.8268497249239],[163.3786337863379,59.81502968403473],[163.37503375033754,59.79138960225637],[163.3678336783368,59.76606094320812],[163.36063360633608,59.74073228415989],[163.36423364233644,59.73060082054059],[163.37503375033754,59.69682927514293],[163.37503375033754,59.67656634790433],[163.3822338223382,59.66474630701515],[163.3930339303393,59.652926266125974],[163.38943389433894,59.630974761617495],[163.36063360633608,59.60564610256927],[163.32103321033213,59.587071752600565],[163.29223292232922,59.58369459806079],[163.2706327063271,59.58876032987044],[163.2490324903249,59.587071752600565],[163.20223202232023,59.57525171171139],[163.1842318423184,59.565120248092086],[163.18063180631805,59.55836593901256],[163.19143191431914,59.55498878447278],[163.20943209432096,59.560054516282435],[163.20223202232023,59.54823447539326],[163.1842318423184,59.533037279964304],[163.17703177031774,59.52628297088478],[163.169831698317,59.511085775455825],[163.169831698317,59.506020043646174],[163.18063180631805,59.502642889106426],[163.2166321663217,59.47731423005817],[163.27783277832782,59.45029699374007],[163.3030330303303,59.43341122104124],[163.32103321033213,59.41145971653276],[163.32823328233286,59.39288536656403],[163.32823328233286,59.372622439325454],[163.31743317433177,59.33040800757837],[163.3138331383314,59.288193575831315],[163.30663306633068,59.27130780313249],[163.29583295832958,59.25948776224331],[163.27783277832782,59.247667721354134],[163.259832598326,59.239224835004705],[163.24543245432454,59.23753625773483],[163.22743227432278,59.24260198954448],[163.2310323103231,59.24935629862401],[163.25623256232564,59.26793064859271],[163.27783277832782,59.27806211221201],[163.28863288632886,59.28650499856144],[163.2850328503285,59.30001361672049],[163.2706327063271,59.30339077126027],[163.2166321663217,59.28481642129154],[163.20943209432096,59.288193575831315],[163.19143191431914,59.29663646218074],[163.1842318423184,59.30001361672049],[163.17343173431738,59.29832503945062],[163.15903159031592,59.293259307640966],[163.13383133831337,59.29157073037109],[163.09423094230942,59.279750689481915],[163.07983079830802,59.27130780313249],[163.0726307263073,59.26286491678309],[163.06903069030693,59.252733453163785],[163.06543065430657,59.24260198954448],[163.06543065430657,59.23415910319508],[163.0726307263073,59.22233906230588],[163.07623076230766,59.212207598686604],[163.07623076230766,59.20545328960705],[163.07623076230766,59.19363324871787],[163.1266312663127,59.1835017850986],[163.1410314103141,59.176747476019045],[163.17343173431738,59.15817312605034],[163.22023220232205,59.15141881697082],[163.23463234632345,59.132844467002116],[163.25263252632527,59.10751580795386],[163.26343263432636,59.08049857163576],[163.24543245432454,59.06361279893693],[163.22743227432278,59.0551699125875],[163.17703177031774,59.03997271715855],[163.16263162631628,59.03321840807902],[163.14823148231483,59.038284139888674],[163.14463144631446,59.0467270262381],[163.15543155431556,59.0551699125875],[163.169831698317,59.06192422166703],[163.17703177031774,59.073744262556204],[163.16623166231665,59.09738434433456],[163.13383133831337,59.10920438522376],[163.06543065430657,59.12102442611294],[163.06903069030693,59.12440158065269],[163.0726307263073,59.13791019881177],[163.07623076230766,59.14297593062142],[163.01143011430116,59.16155028059012],[163.00423004230043,59.16155028059012],[162.97902979029794,59.154795971510595],[162.97182971829722,59.15648454878047],[162.95742957429576,59.16155028059012],[162.95022950229503,59.16155028059012],[162.94662946629467,59.15817312605034],[162.94662946629467,59.154795971510595],[162.9430294302943,59.14635308516117],[162.9430294302943,59.13791019881177],[162.9430294302943,59.13453304427199],[162.93582935829357,59.13453304427199],[162.92142921429217,59.136221621541864],[162.90342903429035,59.13453304427199],[162.89262892628926,59.13453304427199],[162.88182881828817,59.132844467002116],[162.88182881828817,59.12102442611294],[162.88542885428853,59.114270117033385],[162.96822968229685,59.051792758047725],[162.98622986229861,59.04166129442845],[163.02583025830262,59.02477552172962],[163.03663036630365,59.0264640989995],[163.04383043830438,59.029841253539274],[163.04743047430475,59.029841253539274],[163.07623076230766,59.007889749030795],[163.07983079830802,58.98424966725244],[163.06903069030693,58.967363894553614],[163.0330303303033,58.94878954458488],[162.98982989829898,58.93359234915596],[162.92142921429217,58.923460885536656],[162.87822878228786,58.90657511283783],[162.91422914229145,58.94710096731501],[162.9178291782918,58.972429626363265],[162.90342903429035,58.98424966725244],[162.8890288902889,58.97918393544279],[162.87102871028713,58.96567531728371],[162.84222842228422,58.90657511283783],[162.81702817028173,58.888000762869126],[162.7342273422734,58.891377917408875],[162.7018270182702,58.87618072197995],[162.6766267662677,58.87449214471005],[162.68382683826837,58.855917794741345],[162.69462694626947,58.847474908391945],[162.7126271262713,58.847474908391945],[162.73062730627305,58.85422921747147],[162.72342723427238,58.860983526550996],[162.74142741427414,58.86436068109077],[162.7558275582756,58.85929494928112],[162.77022770227705,58.85760637201122],[162.78462784627845,58.87449214471005],[162.79182791827918,58.86436068109077],[162.78822788227882,58.855917794741345],[162.7810278102781,58.847474908391945],[162.78822788227882,58.83227771296299],[162.73782737827378,58.820457672073815],[162.5146251462515,58.72083161315072],[162.40662406624068,58.65497709962531],[162.33822338223382,58.5773025452107],[162.23742237422374,58.47936506355751],[162.16902169021694,58.40675624095255],[162.04662046620467,58.205815545836515],[162.0250202502025,58.15515822774003],[161.99261992619927,58.08761513694472],[161.99621996219963,58.062286477896464],[162.01422014220145,58.00656342799036],[162.0250202502025,57.928888873575744],[162.08262082620826,57.88329728728891],[162.14742147421475,57.84783716462138],[162.2158221582216,57.822508505573126],[162.28422284222842,57.8056227328743],[162.3706237062371,57.78535980563572],[162.45702457024572,57.78367122836582],[162.4678246782468,57.76509687839712],[162.4390243902439,57.74145679661876],[162.3958239582396,57.72794817845971],[162.34542345423455,57.69079947852228],[162.35622356223564,57.689110901252405],[162.36702367023673,57.689110901252405],[162.38142381423813,57.692488055792154],[162.3958239582396,57.69924236487171],[162.52182521825222,57.754965414777814],[162.5146251462515,57.80055700106465],[162.4930249302493,57.84783716462138],[162.48942489424894,57.88667444182869],[162.51102511025113,57.906937369067265],[162.5290252902529,57.937331759925144],[162.5578255782558,57.94915180081435],[162.5830258302583,57.95421753262397],[162.65502655026552,57.955906109893874],[162.6658266582666,57.95928326443362],[162.6766267662677,57.96772615078305],[162.6910269102691,57.969414728052925],[162.7018270182702,57.969414728052925],[162.7126271262713,57.96603757351318],[162.71982719827201,57.9626604189734],[162.73062730627305,57.955906109893874],[162.7558275582756,57.93564318265527],[162.7666276662767,57.928888873575744],[162.77382773827742,57.92720029630587],[162.79542795427955,57.928888873575744],[162.81342813428137,57.920445987226344],[162.83862838628386,57.92213456449622],[162.84942849428495,57.91875740995644],[162.85662856628568,57.91369167814679],[163.00423004230043,57.83770570100208],[163.09423094230942,57.82081992830325],[163.22023220232205,57.814065619223726],[163.22023220232205,57.7971798465249],[163.26703267032673,57.77691691928629],[163.27783277832782,57.75834256931759],[163.32823328233286,57.70937382849098],[163.25263252632527,57.6789794376331],[163.24183241832418,57.6705365512837],[163.23823238232382,57.640142160425796],[163.24543245432454,57.61819065591732],[163.24183241832418,57.594550574138964],[163.2166321663217,57.58104195597991],[163.19143191431914,57.569221915090736],[163.16263162631628,57.56246760601121],[163.13743137431373,57.53545036969308],[163.1266312663127,57.51181028791473],[163.10863108631088,57.4949245152159],[163.07623076230766,57.461152969818244],[162.96102961029612,57.43582431076999],[162.90702907029072,57.417249960801286],[162.83142831428313,57.38347841540363],[162.7990279902799,57.346329715466226],[162.78822788227882,57.32606678822762],[162.77742777427778,57.25514654289256],[162.79542795427955,57.18422629755747],[162.78462784627845,57.145389020350166],[162.81702817028173,57.09304312498381],[162.86022860228604,57.05082869323675],[162.84222842228422,57.0170571478391],[162.8206282062821,56.96977698428236],[162.7990279902799,56.94275974796426],[162.78822788227882,56.922496820725655],[162.78462784627845,56.860019461739995],[162.79182791827918,56.82118218453269],[162.78462784627845,56.76377055735668],[162.8350283502835,56.721556125609624],[162.89262892628926,56.71649039379997],[162.91422914229145,56.70973608472045],[162.93582935829357,56.708047507450544],[162.96822968229685,56.70298177564089],[163.01503015030153,56.726621857419275],[163.05823058230584,56.7316875892289],[163.06903069030693,56.7418190528482],[163.1266312663127,56.726621857419275],[163.18783187831878,56.7333761664988],[163.22743227432278,56.7418190528482],[163.23823238232382,56.7333761664988],[163.22743227432278,56.721556125609624],[163.24183241832418,56.713113239260196],[163.25263252632527,56.699604621101145],[163.28143281432813,56.68778458021197],[163.26343263432636,56.66921023024324],[163.24543245432454,56.64725872573479],[163.23823238232382,56.623618643956405],[163.24183241832418,56.593224253098526],[163.27783277832782,56.56282986224065],[163.259832598326,56.54932124408157],[163.24543245432454,56.530746894112866],[163.25263252632527,56.51554969868391],[163.26343263432636,56.48853246236581],[163.27423274232746,56.48008957601638],[163.28143281432813,56.47164668966698],[163.27783277832782,56.46151522604768],[163.259832598326,56.4581380715079],[163.2490324903249,56.45138376242838],[163.25623256232564,56.4395637215392],[163.26703267032673,56.4294322579199],[163.28143281432813,56.42436652611025],[163.29943299432995,56.39903786706202],[163.3390333903339,56.35513485804506],[163.3390333903339,56.34500339442576],[163.34623346233462,56.33318335353658],[163.35343353433535,56.32136331264741],[163.349833498335,56.29772323086905],[163.33543335433353,56.27746030363048],[163.34263342633426,56.23355729461352],[163.349833498335,56.22173725372434],[163.35343353433535,56.19978574921586],[163.3678336783368,56.18121139924716],[163.30663306633068,56.16770278108808],[163.29223292232922,56.14912843111938],[163.2310323103231,56.142374122039854],[163.17703177031774,56.133931235690426],[163.13023130231306,56.11029115391207],[163.11943119431197,56.106913999372324],[163.11223112231124,56.10184826756267],[163.10503105031052,56.090028226673496],[163.0978309783098,56.07651960851442],[163.09423094230942,56.06807672216502],[163.09063090630906,56.063010990355366],[163.06903069030693,56.044436640386664],[163.05463054630548,56.027550867687836],[163.0510305103051,56.00559936317936],[162.99342993429934,56.01066509498901],[162.9322293222932,56.017419404068534],[162.88542885428853,56.04105948584689],[162.85662856628568,56.04950237219629],[162.8206282062821,56.05625668127584],[162.77382773827742,56.093405381213245],[162.7558275582756,56.1086025766422],[162.73782737827378,56.14912843111938],[162.6910269102691,56.17107993562786],[162.6370263702637,56.22004867645444],[162.5830258302583,56.22511440826409],[162.5578255782558,56.22849156280387],[162.5830258302583,56.23355729461352],[162.60822608226084,56.23862302642317],[162.64422644226443,56.24368875823282],[162.680226802268,56.25719737639187],[162.70542705427056,56.27070599455092],[162.72342723427238,56.29096892178953],[162.74142741427414,56.31292042629801],[162.7450274502745,56.33318335353658],[162.75222752227523,56.34669197169566],[162.79542795427955,56.35513485804506],[162.87102871028713,56.35851201258484],[162.93942939429394,56.38215209436319],[162.9430294302943,56.405792176141546],[163.00063000630007,56.43787514426933],[163.05823058230584,56.44631803061873],[163.08343083430833,56.46151522604768],[163.1158311583116,56.50035250325499],[163.10143101431015,56.517238275953815],[163.04383043830438,56.520615430493564],[163.0186301863019,56.53750120319239],[162.98982989829898,56.53412404865264],[162.95742957429576,56.498663925985085],[162.9430294302943,56.449695185158504],[162.91062910629108,56.42605510338015],[162.83862838628386,56.449695185158504],[162.74142741427414,56.48008957601638],[162.68382683826837,56.48346673055616],[162.65142651426515,56.46995811239708],[162.62982629826297,56.4395637215392],[162.57222572225726,56.42605510338015],[162.5578255782558,56.4294322579199],[162.53982539825398,56.43787514426933],[162.52542525425258,56.44294087607898],[162.51102511025113,56.441252298809076],[162.50022500225003,56.436186566999424],[162.47862478624785,56.4209893715705],[162.47142471424718,56.414235062490974],[162.46422464224645,56.405792176141546],[162.45342453424536,56.39903786706202],[162.44262442624427,56.39397213525237],[162.4282242822428,56.39397213525237],[162.4138241382414,56.38384067163307],[162.39942399423995,56.370332053474016],[162.4822248222482,56.334871930806486],[162.52542525425258,56.32642904445706],[162.53622536225362,56.30616611721848],[162.5578255782558,56.28928034451965],[162.59382593825939,56.26901741728105],[162.57582575825762,56.258885953661746],[162.56142561425617,56.25213164458222],[162.5290252902529,56.24706591277257],[162.51822518225185,56.24368875823282],[162.49662496624967,56.24200018096292],[162.48942489424894,56.23355729461352],[162.48942489424894,56.21667152191469],[162.44262442624427,56.21160579010504],[162.42102421024214,56.204851481025514],[162.36702367023673,56.18627713105681],[162.27342273422738,56.16432562654833],[162.1762217622176,56.1373083902302],[162.16542165421657,56.133931235690426],[162.1438214382144,56.128865503880775],[162.12222122221226,56.1086025766422],[162.0970209702097,56.08833964940359],[162.05742057420576,56.06976529943489],[162.04662046620467,56.057945258545715],[162.03942039420394,56.04612521765654],[162.05022050220504,56.03768233130711],[162.07542075420753,56.022485135878185],[162.0538205382054,56.003910785909454],[162.01782017820182,55.97689354959135],[162.01782017820182,55.93130196330452],[161.96741967419678,55.89584184063696],[161.94941949419496,55.853627408889906],[161.9206192061921,55.8249215953019],[161.9242192421924,55.79452720444402],[161.8918189181892,55.750624195427065],[161.84141841418415,55.70334403187036],[161.80901809018093,55.65437529104375],[161.79461794617947,55.62735805472562],[161.77661776617765,55.60878370475692],[161.76581765817662,55.554749232120656],[161.76221762217625,55.5125348003736],[161.75141751417516,55.465254636816894],[161.7478174781748,55.375760041513104],[161.75501755017552,55.35211995973475],[161.7730177301773,55.32510272341662],[161.77661776617765,55.28964260074909],[161.7910179101791,55.23560812811283],[161.8126181261813,55.17988507820672],[161.84141841418415,55.130916337380114],[161.87381873818737,55.078570442013756],[161.90261902619028,55.06168466931493],[161.96021960219605,55.0346674329968],[161.98541985419854,55.01271592848832],[162.04662046620467,54.956992878582184],[162.05022050220504,54.92490991045443],[162.07542075420753,54.90464698321583],[162.12582125821257,54.88100690143747],[162.15102151021512,54.86243255146877],[162.15462154621548,54.850612510579595],[162.13662136621366,54.84048104696029],[162.1186211862119,54.832038160610864],[162.1078210782108,54.82528385153134],[162.1078210782108,54.81346381064216],[162.1186211862119,54.79151230613368],[162.12942129421293,54.77293795616498],[162.12582125821257,54.761117915275804],[162.1078210782108,54.7425435653071],[162.08262082620826,54.734100678957674],[162.0646206462065,54.72903494714802],[162.04662046620467,54.725657792608274],[162.03582035820358,54.71890348352872],[162.0106201062011,54.70201771082992],[162.00342003420036,54.69526340175037],[161.9998199982,54.68682051540097],[161.9890198901989,54.67331189724189],[161.9782197821978,54.663180433622614],[161.96021960219605,54.65642612454306],[161.94941949419496,54.64798323819366],[161.9206192061921,54.636163197304484],[161.87741877418773,54.619277424605656],[161.86301863018633,54.60914596098635],[161.85221852218524,54.600703074636954],[161.81621816218166,54.59057161101765],[161.8018180181802,54.58212872466822],[161.76941769417698,54.53653713838139],[161.75141751417516,54.51965136568256],[161.72261722617225,54.50951990206329],[161.70461704617048,54.507831324793386],[161.68661686616866,54.50951990206329],[161.66501665016654,54.51289705660304],[161.65061650616508,54.51965136568256],[161.63621636216362,54.52640567476212],[161.57861578615785,54.516274211142814],[161.47061470614705,54.516274211142814],[161.35901359013593,54.49263412936446],[161.31221312213125,54.49094555209456],[161.28341283412834,54.49938843844399],[161.26901269012689,54.507831324793386],[161.23661236612367,54.51796278841269],[161.2222122221222,54.529782829301865],[161.21861218612185,54.53991429292117],[161.21501215012154,54.56186579742965],[161.21141211412117,54.57030868377905],[161.15021150211504,54.59732592009718],[161.06741067410672,54.59732592009718],[160.8910089100891,54.57030868377905],[160.739807398074,54.53484856111152],[160.73260732607326,54.53147140657177],[160.72180721807217,54.52302852022234],[160.52740527405274,54.436911079458326],[160.4878048780488,54.40651668860045],[160.41940419404193,54.377810875012415],[160.33660336603367,54.31702209329666],[160.27180271802717,54.27818481608935],[160.25020250202505,54.257921888850746],[160.2358023580236,54.249479002501346],[160.21780217802177,54.24272469342182],[160.16020160201606,54.23428180707239],[160.1170011700117,54.21570745710369],[160.05220052200525,54.17518160262651],[160.0018000180002,54.13127859360955],[159.99099990999912,54.097507048211895],[159.9585995859959,54.048538307385314],[159.9189991899919,54.004635298368356],[159.90099900999013,53.98268379385988],[159.84339843398436,53.79694029417277],[159.84339843398436,53.73952866699676],[159.8649986499865,53.69393708070993],[159.85419854198545,53.687182771630404],[159.839798397984,53.678739885281004],[159.8181981819818,53.660165535312274],[159.84339843398436,53.651722648962874],[159.87219872198722,53.634836876264046],[159.89739897398977,53.61288537175557],[159.91539915399153,53.59093386724709],[159.9189991899919,53.61119679448569],[159.9045990459905,53.629771144454395],[159.88659886598867,53.6483454944231],[159.87219872198722,53.6669198443918],[159.9045990459905,53.67367415347135],[159.929799297993,53.64496833988335],[159.96939969399693,53.57067094000851],[159.9585995859959,53.553785167309684],[159.9621996219962,53.496373540133646],[159.9477994779948,53.474422035625196],[159.9189991899919,53.47611061289507],[159.87939879398795,53.4929963855939],[159.84339843398436,53.518325044642125],[159.82539825398254,53.536899394610856],[159.81459814598145,53.53352224007108],[159.80739807398078,53.52845650826143],[159.80019800198005,53.52339077645178],[159.78939789397896,53.51663646737225],[159.80739807398078,53.509882158292726],[159.81459814598145,53.5014392719433],[159.81099810998109,53.491307808324024],[159.7965979659797,53.48117634470472],[159.81459814598145,53.482864921974596],[159.83259832598327,53.48455349924447],[159.84699846998473,53.48455349924447],[159.85779857798582,53.474422035625196],[159.86139861398613,53.46766772654564],[159.85779857798582,53.44402764476729],[159.85779857798582,53.433896181147986],[159.86139861398613,53.42207614025881],[159.86859868598685,53.41025609936963],[159.87579875798758,53.40012463575036],[159.88659886598867,53.393370326670805],[159.90099900999013,53.38999317213106],[159.9189991899919,53.39674748121058],[159.9369993699937,53.393370326670805],[159.92259922599226,53.3646645130828],[159.92259922599226,53.35115589492375],[159.929799297993,53.3376472767647],[159.94419944199444,53.33427012222492],[159.9621996219962,53.335958699494796],[159.97659976599766,53.330892967685145],[159.96939969399693,53.308941463176694],[159.9585995859959,53.300498576827266],[159.94059940599408,53.29374426774774],[159.92259922599226,53.28361280412844],[159.91539915399153,53.268415608699485],[159.92259922599226,53.25321841327056],[159.96939969399693,53.21438113606325],[159.9621996219962,53.24477552692113],[159.98019980199803,53.265038454159736],[160.00540005400057,53.273481340509136],[160.0162001620016,53.265038454159736],[160.01980019800197,53.24139837238138],[160.02340023400234,53.22113544514278],[160.03060030600307,53.2093154042536],[160.0378003780038,53.2008725179042],[160.0378003780038,53.19242963155477],[160.03060030600307,53.1806095906656],[160.0486004860049,53.15865808615712],[160.05220052200525,53.140083736188416],[160.05220052200525,53.11982080894981],[160.05940059400598,53.09786930444133],[160.0162001620016,53.11475507714016],[160.00540005400057,53.11475507714016],[159.99459994599948,53.11137792260041],[159.98739987399875,53.11137792260041],[159.96939969399693,53.11137792260041],[159.9621996219962,53.113066499870285],[159.9621996219962,53.11813223167994],[159.9621996219962,53.12488654075946],[159.95499954999553,53.13164084983899],[159.929799297993,53.14514946799807],[159.80019800198005,53.1907410542849],[159.77139771397714,53.20424967244395],[159.75699756997574,53.22113544514278],[159.7641976419764,53.24308694965126],[159.7857978579786,53.25828414508021],[159.81099810998109,53.27010418596939],[159.82539825398254,53.28361280412844],[159.78219782197823,53.273481340509136],[159.7641976419764,53.265038454159736],[159.7317973179732,53.23970979511148],[159.71379713797137,53.23633264057173],[159.6957969579696,53.24139837238138],[159.67419674196742,53.24815268146091],[159.6309963099631,53.25659556781031],[159.59139591395916,53.254906990540434],[159.47619476194762,53.229578331492206],[159.46179461794617,53.22282402241265],[159.4437944379444,53.211003981523476],[159.41139411394113,53.17723243612582],[159.38259382593827,53.162035240696895],[159.35379353793542,53.16541239523664],[159.3249932499325,53.17216670431617],[159.28899288992892,53.17385528158607],[159.27459274592746,53.167100972506546],[159.24219242192424,53.15021519980772],[159.22419224192242,53.14514946799807],[159.2061920619206,53.143460890728164],[159.1629916299163,53.135018004378765],[159.00459004590044,53.077606377202756],[158.87138871388714,52.99655466824839],[158.73818738187384,52.903682918404826],[158.70938709387093,52.89186287751565],[158.69498694986953,52.90874865021448],[158.68418684186844,52.93407730926273],[158.66978669786698,52.95434023650131],[158.6589865898659,52.97291458647001],[158.67338673386735,52.99486609097849],[158.6589865898659,53.001620400058016],[158.61938619386194,53.042146254535226],[158.5905859058591,53.0624091817738],[158.57618576185763,53.06747491358345],[158.5581855818558,53.07085206812323],[158.54018540185405,53.06916349085333],[158.52938529385295,53.06578633631358],[158.52218522185223,53.05903202723405],[158.51138511385113,53.050589140884625],[158.49338493384937,53.0438348318051],[158.45378453784537,53.03539194545567],[158.43938439384397,53.0252604818364],[158.42858428584287,53.01681759548697],[158.41778417784178,53.00499755459779],[158.41418414184142,52.993177513708616],[158.43218432184324,52.988111781898965],[158.45378453784537,52.983046050089314],[158.45018450184506,52.97291458647001],[158.4357843578436,52.95940596831096],[158.42858428584287,52.94589735015191],[158.4357843578436,52.920568691103654],[158.46458464584646,52.9070600729446],[158.5005850058501,52.903682918404826],[158.52938529385295,52.90537149567473],[158.52218522185223,52.917191536563905],[158.51138511385113,52.925634422913305],[158.48258482584828,52.94083161834226],[158.50778507785077,52.947585927421784],[158.53298532985332,52.94420877288201],[158.5581855818558,52.93745446380248],[158.58338583385836,52.93407730926273],[158.60858608586085,52.93238873199283],[158.6229862298623,52.92732300018318],[158.6337863378634,52.917191536563905],[158.64818648186485,52.898617186595175],[158.63738637386376,52.89186287751565],[158.62658626586267,52.885108568436124],[158.61578615786158,52.88173141389635],[158.60498604986049,52.8783542593566],[158.6229862298623,52.86484564119752],[158.63018630186303,52.85640275484812],[158.6229862298623,52.849648445768594],[158.6121861218612,52.83782840487942],[158.5905859058591,52.82263120945046],[158.57618576185763,52.82431978672034],[158.56538565385654,52.832762673069766],[158.5437854378544,52.83782840487942],[158.56538565385654,52.80405685948176],[158.56538565385654,52.79561397313233],[158.55458554585545,52.787171086782934],[158.5149851498515,52.78379393224316],[158.5005850058501,52.778728200433505],[158.49338493384937,52.75846527319493],[158.5149851498515,52.74664523230575],[158.54738547385477,52.7415795004961],[158.57258572585727,52.7415795004961],[158.57258572585727,52.73313661414667],[158.5905859058591,52.72300515052737],[158.59778597785981,52.71456226417797],[158.60138601386018,52.70105364601892],[158.59778597785981,52.69261075966949],[158.58698586985872,52.68754502785984],[158.57258572585727,52.68754502785984],[158.57618576185763,52.667282100621264],[158.56538565385654,52.64701917338266],[158.5437854378544,52.631821977953706],[158.52218522185223,52.62506766887418],[158.5005850058501,52.62169051433443],[158.46458464584646,52.63519913249348],[158.42858428584287,52.65208490519231],[158.42138421384215,52.658839214271836],[158.4249842498425,52.64701917338266],[158.43218432184324,52.63688770976336],[158.43938439384397,52.62675624614408],[158.45018450184506,52.618313359794655],[158.42858428584287,52.60142758709583],[158.42858428584287,52.59298470074643],[158.4609846098461,52.5744103507777],[158.49338493384937,52.57272177350782],[158.52218522185223,52.57103319623795],[158.5257852578526,52.56259030988852],[158.52218522185223,52.55245884626922],[158.5149851498515,52.53557307357042],[158.51858518585186,52.525441609951116],[158.51858518585186,52.51699872360169],[158.5149851498515,52.51024441452216],[158.5041850418504,52.50180152817276],[158.52218522185223,52.48998148728356],[158.52938529385295,52.48829291001368],[158.51858518585186,52.47647286912451],[158.4789847898479,52.46802998277511],[158.4609846098461,52.46127567369555],[158.4609846098461,52.45452136461603],[158.46458464584646,52.4376355919172],[158.4609846098461,52.43256986010755],[158.45378453784537,52.42581555102802],[158.43218432184324,52.4190612419485],[158.42138421384215,52.41230693286897],[158.43938439384397,52.40724120105932],[158.4609846098461,52.41399551013885],[158.48258482584828,52.42581555102802],[158.5041850418504,52.43256986010755],[158.5257852578526,52.430881282837674],[158.5437854378544,52.42074981921837],[158.57258572585727,52.39204400563037],[158.55098550985514,52.38528969655084],[158.52218522185223,52.36164961477249],[158.5041850418504,52.35827246023271],[158.51138511385113,52.346452419343535],[158.52218522185223,52.338009532994135],[158.53658536585368,52.332943801184484],[158.55098550985514,52.32956664664471],[158.5581855818558,52.324500914835056],[158.5581855818558,52.31268087394588],[158.55458554585545,52.3008608330567],[158.54738547385477,52.29579510124705],[158.53658536585368,52.2924179467073],[158.5041850418504,52.27384359673857],[158.489784897849,52.26877786492895],[158.42858428584287,52.26877786492895],[158.43938439384397,52.243449205880694],[158.41778417784178,52.23331774226139],[158.38898388983893,52.226563433181866],[158.38538385383856,52.20630050594329],[158.39978399784002,52.19785761959386],[158.41778417784178,52.19279188778421],[158.42858428584287,52.18434900143481],[158.41778417784178,52.16915180600586],[158.39618396183965,52.155643187846806],[158.38538385383856,52.145511724227504],[158.37818378183783,52.1353802606082],[158.3709837098371,52.13031452879855],[158.33498334983352,52.137068837878076],[158.32418324183243,52.13875741514798],[158.32058320583207,52.13031452879855],[158.3169831698317,52.12018306517925],[158.3169831698317,52.0982315606708],[158.32058320583207,52.08978867432137],[158.3277832778328,52.07965721070207],[158.33138331383316,52.07290290162254],[158.3277832778328,52.06783716981289],[158.30258302583024,52.052639974383965],[158.2917829178292,52.04250851076466],[158.28818288182885,52.034065624415234],[158.28458284582848,52.02393416079596],[158.28458284582848,52.012114119906755],[158.28818288182885,51.968211110889825],[158.26658266582666,51.949636760921095],[158.2485824858249,51.94288245184157],[158.21618216182162,51.92430810187287],[158.20538205382053,51.90235659736439],[158.19098190981913,51.89897944282464],[158.129781297813,51.851699279267905],[158.12258122581227,51.83143635202933],[158.1189811898119,51.816239156600375],[158.1081810818108,51.80948484752085],[158.02538025380255,51.775713302123194],[158.01458014580146,51.76558183850389],[158.00738007380073,51.740253179455664],[158.0001800018,51.72843313856649],[157.98937989379897,51.718301674947185],[157.96777967779678,51.70985878859776],[157.9569795697957,51.69803874770858],[157.9425794257943,51.67271008866035],[157.91737917379174,51.660890047771176],[157.91377913779138,51.65244716142175],[157.9209792097921,51.63724996599282],[157.91377913779138,51.63049565691327],[157.88497884978852,51.63556138872292],[157.85257852578525,51.62205277056387],[157.8237782377824,51.59672411151561],[157.8021780217802,51.58828122516621],[157.7589775897759,51.544378216149255],[157.71217712177122,51.549443947958906],[157.679776797768,51.53762390706973],[157.60777607776078,51.52580386618055],[157.5357753577536,51.48527801170337],[157.4925749257493,51.43968642541654],[157.47457474574747,51.410980611828535],[157.48897488974893,51.39071768458993],[157.47457474574747,51.362011871001926],[157.44577445774456,51.348503252842875],[157.38817388173885,51.35188040738262],[157.3521735217352,51.329928902874144],[157.30537305373053,51.294468780206614],[157.28737287372877,51.272517275698135],[157.27657276572768,51.250565771189684],[157.26217262172622,51.237057153030605],[157.2009720097201,51.206662762172726],[157.14337143371432,51.16782548496542],[157.09657096570965,51.152628289536466],[157.0461704617046,51.12392247594846],[156.9669696696967,51.06988800331223],[156.92016920169203,51.0327393033748],[156.87696876968772,51.019230685215746],[156.85176851768517,50.99727918070727],[156.83736837368377,50.97701625346866],[156.81936819368195,50.97026194438914],[156.8049680496805,50.95337617169031],[156.779767797678,50.93649039899148],[156.74736747367473,50.91116173994325],[156.71856718567187,50.885833080895],[156.6717667176672,50.86388157638655],[156.65736657366574,50.88245592635525],[156.69336693366932,50.90947316267338],[156.76176761767618,50.983770562548216],[156.7689676896769,51.01754210794587],[156.75816758167582,51.036116457914574],[156.76176761767618,51.063133694232704],[156.76176761767618,51.07833088966163],[156.74376743767436,51.090150930550806],[156.70776707767078,51.08846235328093],[156.70416704167042,51.103659548709885],[156.70056700567005,51.11885674413881],[156.71856718567187,51.15769402134612],[156.72216722167224,51.19484272128355],[156.69336693366932,51.210039916712475],[156.65736657366574,51.250565771189684],[156.64296642966428,51.259008657539084],[156.59256592565924,51.26069723480896],[156.57816578165784,51.26576296661861],[156.56016560165602,51.27082869842826],[156.54576545765457,51.27927158477769],[156.53496534965353,51.28940304839696],[156.52416524165244,51.31135455290544],[156.52056520565208,51.334994634683795],[156.52056520565208,51.410980611828535],[156.52056520565208,51.42280065271771],[156.5169651696517,51.432932116337014],[156.50976509765098,51.43799784814664],[156.4989649896499,51.44812931176594],[156.49536495364953,51.45319504357559],[156.49176491764916,51.45657219811537],[156.48816488164886,51.45657219811537],[156.4845648456485,51.45826077538524],[156.48096480964813,51.46332650719489],[156.48096480964813,51.46670366173467],[156.48816488164886,51.473457970814195],[156.48096480964813,51.49709805259255],[156.48096480964813,51.517360979831125],[156.48096480964813,51.55957541157821],[156.4845648456485,51.57308402973726],[156.49176491764916,51.593346956975864],[156.49536495364953,51.60347842059517],[156.49536495364953,51.61529846148434],[156.48816488164886,51.63556138872292],[156.48816488164886,51.64569285234222],[156.50256502565026,51.775713302123194],[156.4845648456485,51.95807964727052],[156.43776437764382,52.216431969562564],[156.37296372963732,52.403864046519544],[156.35136351363514,52.4275041282979],[156.33336333363337,52.44945563280638],[156.30456304563046,52.48153860093416],[156.29736297362973,52.49167006455346],[156.28296282962833,52.528818764490865],[156.29376293762937,52.528818764490865],[156.3009630096301,52.525441609951116],[156.30816308163082,52.520375878141465],[156.31896318963192,52.515310146331814],[156.33696336963374,52.50180152817276],[156.3441634416344,52.50180152817276],[156.34776347763477,52.50349010544264],[156.35136351363514,52.50349010544264],[156.35856358563586,52.50180152817276],[156.36936369363696,52.48998148728356],[156.37656376563768,52.47816144639438],[156.37656376563768,52.46465282823533],[156.37296372963732,52.44607847826663],[156.39456394563945,52.45620994188593],[156.419764197642,52.471407137314856],[156.43776437764382,52.49167006455346],[156.4449644496445,52.51193299179204],[156.4305643056431,52.525441609951116],[156.35856358563586,52.53050734176077],[156.329763297633,52.53557307357042],[156.30456304563046,52.555836000808995],[156.29376293762937,52.57272177350782],[156.2649626496265,52.59805043255605],[156.25416254162542,52.62844482341396],[156.2325623256233,52.66390494608149],[156.16416164161643,52.79899112767211],[156.11016110161103,52.93576588653261],[156.09936099360993,53.042146254535226],[156.05616056160562,53.21438113606325],[156.05256052560526,53.28530138139831],[156.0381603816038,53.371418822162326],[155.98775987759876,53.57742524908804],[155.97335973359736,53.643279762613446],[155.969759697597,53.660165535312274],[155.96615966159663,53.73108578064736],[155.96255962559627,53.75134870788594],[155.95535955359554,53.7868088305535],[155.93735937359372,53.844220457729506],[155.93735937359372,53.86448338496808],[155.91215912159123,53.906697816715166],[155.88335883358837,53.98099521659],[155.88695886958868,53.999569566558705],[155.88335883358837,54.02489822560693],[155.87255872558728,54.070489811893765],[155.8077580775808,54.20388741621451],[155.7285572855729,54.426779615839024],[155.63855638556385,54.769560801625204],[155.6421564215642,54.79151230613368],[155.64575645756457,54.81177523337229],[155.64575645756457,54.832038160610864],[155.61695616956172,54.87425259235795],[155.609756097561,54.894515519596524],[155.55215552155522,55.28457686893944],[155.55215552155522,55.36394000062393],[155.56655566555668,55.43317166868911],[155.58455584555844,55.52097768672303],[155.60615606156063,55.581766468438786],[155.62415624156245,55.639178095614795],[155.6529565295653,55.92117049968522],[155.66735667356676,55.9616963541624],[155.68535685356852,55.99377932229018],[155.68535685356852,56.00728794044923],[155.68535685356852,56.027550867687836],[155.68535685356852,56.03937090857701],[155.68895688956889,56.04781379492641],[155.71055710557107,56.08158534032407],[155.72135721357216,56.09171680394337],[155.73215732157325,56.098471113022896],[155.74655746557465,56.10184826756267],[155.75735757357575,56.106913999372324],[155.7609576095761,56.1187340402615],[155.7429574295743,56.1271769266109],[155.7429574295743,56.1457512765796],[155.75375753757538,56.16601420381821],[155.76455764557647,56.17445709016761],[155.77895778957793,56.24706591277257],[155.81135811358115,56.29096892178953],[155.92295922959232,56.58478136674913],[155.93735937359372,56.601667139447954],[155.94815948159481,56.62193006668653],[155.9805598055981,56.67089880751314],[156.00936009360095,56.708047507450544],[156.0489604896049,56.76545913462655],[156.12456124561248,56.83131364815199],[156.16056160561607,56.84482226631104],[156.17496174961752,56.846510843580944],[156.17136171361716,56.83637937996164],[156.08136081360817,56.767147711896456],[156.06696066960671,56.74688478465785],[156.06336063360635,56.71649039379997],[156.08136081360817,56.73844189830845],[156.12096120961212,56.775590598245856],[156.1461614616146,56.79078779367481],[156.19656196561965,56.81442787545316],[156.20736207362074,56.82624791634234],[156.2109621096211,56.838067957231516],[156.20736207362074,56.846510843580944],[156.20736207362074,56.854953729930344],[156.23616236162366,56.86677377081952],[156.27936279362797,56.87521665716895],[156.31536315363155,56.88534812078822],[156.38736387363878,56.91236535710635],[156.42696426964272,56.930939707075055],[156.4629646296463,56.94782547977388],[156.47016470164704,56.963022675202836],[156.50976509765098,56.99510564333062],[156.53136531365317,57.020434302378845],[156.53136531365317,57.0542058477765],[156.53496534965353,57.08797739317416],[156.5529655296553,57.10824032041276],[156.57456574565748,57.11330605222241],[156.59256592565924,57.09304312498381],[156.60336603366034,57.08628881590428],[156.63936639366398,57.082911661364506],[156.65736657366574,57.07615735228498],[156.66816668166683,57.0542058477765],[156.67536675366756,57.0457629614271],[156.6825668256683,57.04914011596685],[156.71856718567187,57.082911661364506],[156.71856718567187,57.091354547713934],[156.7257672576726,57.10655174314286],[156.72936729367296,57.11499462949229],[156.74736747367473,57.13019182492124],[156.7689676896769,57.14876617488994],[156.83016830168305,57.21293211114548],[156.88056880568809,57.270343738321486],[156.92736927369276,57.33113252003727],[156.9777697776978,57.390232724483155],[157.0029700297003,57.425692847150685],[156.9921699216992,57.45608723800859],[156.9777697776978,57.54558183331238],[156.94536945369452,57.60805919229804],[156.93816938169385,57.64689646950532],[156.93096930969313,57.6587165103945],[156.85536855368554,57.72119386938016],[156.81936819368195,57.73639106480911],[156.78336783367837,57.73976821934889],[156.74736747367473,57.72963675572959],[156.80136801368013,57.773539764746545],[156.98136981369817,57.85628005097078],[156.99576995769957,57.85628005097078],[157.01377013770139,57.84277143281173],[157.03537035370357,57.81237704195382],[157.04977049770497,57.8056227328743],[157.2405724057241,57.77016261020677],[157.3089730897309,57.77185118747664],[157.39177391773921,57.781982651095944],[157.4709747097471,57.80393415560442],[157.52497524975252,57.84277143281173],[157.55737557375573,57.876542978209386],[157.56457564575646,57.88836301909856],[157.56817568175683,57.898494482717865],[157.56817568175683,57.91875740995644],[157.5717757177572,57.928888873575744],[157.58617586175865,57.95084037808422],[157.63297632976332,57.98461192348188],[157.65457654576545,58.00318627345058],[157.6509765097651,58.009940582530106],[157.64377643776442,58.02007204614941],[157.64017640176405,58.02513777795906],[157.69417694176946,58.026826355228934],[157.7229772297723,58.02513777795906],[157.76617766177662,58.00318627345058],[157.7877778777788,57.996431964371055],[157.94617946179466,57.982923346211976],[158.05778057780577,57.98967765529153],[158.16938169381694,58.02007204614941],[158.22338223382235,58.02513777795906],[158.27738277382775,58.00318627345058],[158.30258302583024,57.969414728052925],[158.32058320583207,57.95421753262397],[158.33858338583389,57.9525289553541],[158.3457834578346,57.96772615078305],[158.33138331383316,57.982923346211976],[158.2917829178292,58.00318627345058],[158.29538295382957,58.02513777795906],[158.27738277382775,58.03526924157836],[158.2521825218252,58.03864639611811],[158.2269822698227,58.03864639611811],[158.24498244982453,58.05215501427719],[158.3169831698317,58.07917225059529],[158.33498334983352,58.089303714214594],[158.41778417784178,58.148403918660506],[158.5437854378544,58.19906123675699],[158.65538655386553,58.26998148209205],[158.78498784987852,58.312195913839105],[158.85338853388538,58.34934461377654],[158.89298892988933,58.35778750012594],[158.94698946989473,58.388181890983844],[159.02259022590226,58.415199127301975],[159.1089910899109,58.47429933174786],[159.1377913779138,58.48443079536716],[159.14499144991453,58.48780794990691],[159.1485914859149,58.49793941352621],[159.15219152191526,58.508070877145514],[159.16659166591666,58.51144803168526],[159.18459184591848,58.50638229987564],[159.1917919179192,58.49793941352621],[159.19899198991993,58.486119372637035],[159.20979209792097,58.477676486287635],[159.22419224192242,58.47092217720808],[159.23859238592388,58.46754502266833],[159.24219242192424,58.472610754477984],[159.23139231392315,58.48780794990691],[159.22059220592206,58.494562258986434],[159.2025920259203,58.499627990796085],[159.18819188191884,58.508070877145514],[159.1809918099181,58.521579495304564],[159.19539195391957,58.54184242254317],[159.3609936099361,58.64484563600601],[159.38259382593827,58.66510856324459],[159.4005940059401,58.678617181403666],[159.42219422194222,58.68368291321332],[159.49419494194944,58.69212579956272],[159.50499504995054,58.69719153137237],[159.50499504995054,58.70225726318202],[159.50139501395017,58.709011572261545],[159.4977949779498,58.714077304071196],[159.4977949779498,58.71576588134107],[159.50859508595084,58.72927449950015],[159.54099540995412,58.744471694929075],[159.55539555395558,58.75460315854838],[159.58419584195843,58.78162039486651],[159.60939609396092,58.798506167565336],[159.6129961299613,58.80526047664486],[159.6129961299613,58.81201478572439],[159.62019620196202,58.825523403883466],[159.63459634596347,58.83734344477264],[159.6525965259653,58.84409775385217],[159.67059670596706,58.847474908391945],[159.68859688596888,58.85422921747147],[159.7065970659707,58.86604925836065],[159.72819728197283,58.882935031059475],[159.74259742597428,58.90319795829805],[159.749797497975,58.92514946280653],[159.75339753397537,58.958921008204186],[159.749797497975,58.97074104909336],[159.74619746197465,58.980872512712665],[159.7317973179732,59.00113543995127],[159.72819728197283,59.011266903570544],[159.74259742597428,59.03152983080915],[159.79299792997932,59.06698995347668],[159.79299792997932,59.083875726175506],[159.8037980379804,59.09569576706468],[159.8649986499865,59.141287353351515],[160.16380163801637,59.293259307640966],[160.18900189001891,59.31183365760967],[160.19980199802,59.323653698498845],[160.2142021420214,59.33209658484827],[160.2358023580236,59.337162316657924],[160.2790027900279,59.34053947119767],[160.31140311403118,59.345605203007324],[160.33660336603367,59.36080239843628],[160.44820448204484,59.45536272554969],[160.45540455404557,59.47393707551842],[160.45900459004594,59.49926573456665],[160.4662046620466,59.52121723907513],[160.48060480604806,59.53979158904383],[160.49860498604988,59.55330020720291],[160.520205202052,59.560054516282435],[160.54540545405456,59.565120248092086],[160.59220592205924,59.56680882536196],[160.61380613806142,59.57018597990174],[160.66780667806677,59.595514638949965],[160.8046080460805,59.60564610256927],[160.8478084780848,59.617466143458444],[160.8730087300873,59.6326633388874],[160.9270092700927,59.66643488428505],[160.9666096660967,59.706960738762234],[160.97380973809737,59.715403625111634],[160.9918099180992,59.72384651146106],[161.01701017010174,59.73060082054059],[161.0242102421024,59.73566655235024],[161.03141031410314,59.747486593239415],[161.03861038610387,59.752552325049066],[161.0566105661057,59.75761805685872],[161.07821078210782,59.75930663412859],[161.09981099811,59.76268378866834],[161.19341193411935,59.83022687946365],[161.28341283412834,59.87075273394083],[161.33741337413375,59.9450501338157],[161.4166141661417,59.9821988337531],[161.46701467014674,60.032856151849586],[161.53181531815318,60.068316274517116],[161.5606156061561,60.07169342905689],[161.57861578615785,60.07338200632677],[161.5930159301593,60.081824892676195],[161.65421654216544,60.090267779025595],[161.7118171181712,60.12403932442325],[161.74421744217443,60.130793633502776],[161.78021780217802,60.144302251661856],[161.89541895418955,60.20340245610774],[161.9350193501935,60.237174001505394],[161.94941949419496,60.269256969633176],[161.9458194581946,60.2945856286814],[161.93861938619386,60.30302851503083],[161.9206192061921,60.313159978650106],[161.89541895418955,60.29796278322118],[161.8918189181892,60.30302851503083],[161.90621906219064,60.326668596809185],[161.909819098191,60.348620101317664],[161.92781927819277,60.37226018309602],[161.9242192421924,60.397588842144245],[161.93861938619386,60.41616319211295],[161.99261992619927,60.4313603875419],[162.12582125821257,60.48539486017816],[162.16542165421657,60.50228063287699],[162.18342183421834,60.522543560115565],[162.20502205022052,60.53774075554452],[162.34542345423455,60.549560796433695],[162.36702367023673,60.55462652824335],[162.40302403024032,60.56138083732287],[162.43182431824317,60.579955187291574],[162.46062460624609,60.59515238272053],[162.47502475024754,60.60528384633983],[162.50022500225003,60.620481041768755],[162.53622536225362,60.62723535084831],[162.57582575825762,60.62385819630853],[162.60822608226084,60.612038155419356],[162.62622626226266,60.61034957814948],[162.65142651426515,60.615415309959104],[162.6766267662677,60.62385819630853],[162.7126271262713,60.642432546277234],[162.75222752227523,60.64580970081701],[162.77022770227705,60.65256400989654],[162.81342813428137,60.68633555529419],[162.86742867428677,60.709975637072546],[162.89262892628926,60.731927141581025],[162.88182881828817,60.740370027930425],[162.8890288902889,60.75219006881963],[162.9178291782918,60.76063295516903],[162.96822968229685,60.767387264248555],[163.02223022230226,60.77920730513773],[163.0510305103051,60.76063295516903],[163.0978309783098,60.753878646089504],[163.12303123031234,60.76569868697868],[163.10143101431015,60.77751872786786],[163.12303123031234,60.77751872786786],[163.169831698317,60.78258445967751],[163.1842318423184,60.79271592329681],[163.1950319503195,60.80453596418599],[163.21303213032132,60.80622454145586],[163.24543245432454,60.79609307783656],[163.2706327063271,60.802847386916085],[163.3246332463325,60.80453596418599],[163.34623346233462,60.799470232376336],[163.33183331833317,60.77920730513773],[163.3138331383314,60.75050149154973],[163.29583295832958,60.72854998704125],[163.3138331383314,60.72179567796172],[163.33543335433353,60.7251728325015],[163.34263342633426,60.75050149154973],[163.35703357033572,60.77076441878833],[163.38583385833857,60.794404500566685],[163.3930339303393,60.81466742780526],[163.41463414634148,60.821421736884815],[163.4362343623436,60.83155320050409],[163.46143461434616,60.834930355043866],[163.49023490234902,60.843373241393294],[163.54063540635406,60.85857043682222],[163.58743587435873,60.865324745901745],[163.61623616236164,60.86870190044152],[163.65943659436596,60.86701332317165],[163.6990369903699,60.85519328228247],[163.72783727837282,60.86870190044152],[163.74943749437494,60.883899095870476],[163.76023760237604,60.90247344583918],[163.7746377463775,60.919359218538006],[163.7530375303753,60.93117925942718],[163.7350373503735,60.93793356850671],[163.68463684636845,60.954819341205535],[163.60903609036092,60.96495080482484],[163.5370353703537,60.990279463873065],[163.51543515435156,60.99534519568272],[163.48663486634865,61.00209950476224],[163.52983529835302,61.03249389562015],[163.55863558635588,61.047691091049074],[163.619836198362,61.05951113193828],[163.6306363063631,61.08146263644673],[163.61623616236164,61.10510271822511],[163.62343623436237,61.12029991365404],[163.64863648636486,61.13043137727334],[163.66663666636668,61.14562857270229],[163.7638376383764,61.186154427179474],[163.90063900639007,61.226680281656655],[163.91863918639189,61.22836885892653],[163.93303933039334,61.235123168006055],[163.94383943839438,61.25200894070488],[163.94743947439474,61.26551755886396],[163.94743947439474,61.289157640642316],[163.9510395103951,61.30097768153149],[164.0050400504005,61.32630634057972],[164.03024030240306,61.346569267818325],[164.02304023040233,61.37189792686655],[163.97623976239765,61.41917809042329],[163.9510395103951,61.43437528585221],[163.8718387183872,61.45126105855104],[163.84663846638466,61.45294963582094],[163.8286382863829,61.44788390401129],[163.81063810638108,61.43944101766186],[163.79623796237962,61.422555244963036],[163.7746377463775,61.41242378134376],[163.76023760237604,61.42930955404259],[163.7530375303753,61.44281817220164],[163.76023760237604,61.47827829486917],[163.79983799837999,61.520492726616254],[163.8286382863829,61.555952849283784],[163.84663846638466,61.57959293106214],[163.8430384303843,61.59816728103084],[163.8538385383854,61.62518451734897],[163.86463864638648,61.64713602185745],[163.90423904239043,61.6606446400165],[163.92943929439298,61.667398949096025],[163.9870398703987,61.658956062746626],[164.0158401584016,61.667398949096025],[164.04464044640446,61.68259614452498],[164.05544055440555,61.72312199900216],[164.06264062640628,61.74507350351064],[164.06624066240664,61.78559935798782],[164.06624066240664,61.8075508624963],[164.0590405904059,61.819370903385476],[164.04824048240482,61.83119094427465],[164.0410404104041,61.84301098516383],[164.05184051840519,61.84976529424338],[164.06264062640628,61.85651960332291],[164.0806408064081,61.871716798751834],[164.09144091440913,61.895356880530215],[164.0950409504095,61.92406269411822],[164.08424084240846,61.94263704408692],[164.08784087840877,61.966277125865275],[164.07344073440737,61.98147432129423],[164.07344073440737,61.99498293945328],[164.08424084240846,61.99836009399306],[164.10224102241023,62.00849155761233],[164.1058410584106,62.023688753041284],[164.10224102241023,62.03888594847024],[164.09864098640986,62.050705989359415],[164.0950409504095,62.06252603024859],[164.09144091440913,62.07603464840764],[164.0806408064081,62.091231843836596],[164.08424084240846,62.10305188472577],[164.09864098640986,62.108117616535424],[164.12744127441277,62.12838054377403],[164.11664116641168,62.143577739202954],[164.1058410584106,62.15539778009213],[164.1058410584106,62.16721782098131],[164.12744127441277,62.19423505729944],[164.11664116641168,62.206055098188614],[164.12024120241205,62.22800660269709],[164.12024120241205,62.23982664358627],[164.1238412384124,62.24995810720557],[164.12744127441277,62.26177814809475],[164.1490414904149,62.2668438799044],[164.159841598416,62.28204107533335],[164.1922419224192,62.295549693492404],[164.21024210242103,62.31243546619123],[164.24264242642425,62.327632661620186],[164.28584285842862,62.33269839342981],[164.33624336243366,62.34282985704911],[164.41904419044192,62.35296132066841],[164.44424444244441,62.38335571152629],[164.4550445504455,62.40530721603477],[164.50184501845018,62.4120615251143],[164.51264512645128,62.4323244523529],[164.53784537845382,62.4508988023216],[164.59184591845917,62.44921022505173],[164.6386463864639,62.46271884321078],[164.73944739447398,62.461030265940906],[164.8618486184862,62.434013029622776],[164.90144901449014,62.41712725692395],[164.94824948249482,62.40868437057455],[164.98784987849882,62.4036186387649],[165.05625056250562,62.40193006149502],[165.1030510305103,62.4036186387649],[165.1786517865179,62.37828997971664],[165.22545225452257,62.38335571152629],[165.23625236252366,62.37660140244677],[165.2650526505265,62.33438697069971],[165.28305283052833,62.32594408435028],[165.29745297452973,62.322566929810534],[165.31545315453155,62.32425550708041],[165.30825308253083,62.336075547969585],[165.3010530105301,62.35296132066841],[165.2866528665287,62.366469938827464],[165.22905229052293,62.39517575241547],[165.18225182251825,62.40530721603477],[165.11025110251103,62.428947297813124],[165.12465124651249,62.4508988023216],[165.17145171451716,62.45934168867103],[165.2650526505265,62.46271884321078],[165.38745387453878,62.46609599775056],[165.44865448654485,62.452587379591506],[165.5962559625596,62.44414449324208],[165.6286562865629,62.44414449324208],[165.65025650256501,62.45934168867103],[165.64305643056434,62.45934168867103],[165.47025470254704,62.47116172956021],[165.3550535505355,62.48635892498913],[165.11025110251103,62.48467034771926],[164.9806498064981,62.518441893116915],[164.9266492664927,62.53701624308562],[164.82944829448297,62.550524861244696],[164.76464764647648,62.558967747594096],[164.7070470704707,62.589362138452],[164.66744667446676,62.63157657019906],[164.6530465304653,62.64001945654849],[164.63504635046354,62.64677376562801],[164.61704617046172,62.656905229247286],[164.5990459904599,62.673791001946114],[164.52704527045273,62.67547957921602],[164.44784447844478,62.68898819737507],[164.3758437584376,62.69067677464494],[164.30744307443075,62.66028238378706],[164.22824228242285,62.66028238378706],[164.1058410584106,62.65183949743766],[164.05544055440555,62.656905229247286],[164.0050400504005,62.63326514746893],[163.9618396183962,62.61975652930988],[163.94743947439474,62.59611644753153],[163.9078390783908,62.58429640664235],[163.86103861038612,62.60455933388093],[163.7638376383764,62.602870756611054],[163.7206372063721,62.59273929299175],[163.67023670236705,62.5876735611821],[163.62703627036274,62.589362138452],[163.58383583835837,62.57416494302305],[163.5226352263523,62.55727917032422],[163.47583475834762,62.545459129435045],[163.42903429034294,62.567410633943524],[163.40023400234003,62.575853520292924],[163.38583385833857,62.548836283974794],[163.34263342633426,62.540393397625394],[163.26703267032673,62.52181904765669],[163.2490324903249,62.50831042949761],[163.26343263432636,62.48467034771926],[163.26703267032673,62.46609599775056],[163.24543245432454,62.447521647781855],[163.21303213032132,62.4407673387023],[163.1842318423184,62.442455915972204],[163.16623166231665,62.4323244523529],[163.17703177031774,62.41881583419385],[163.21303213032132,62.420504411463725],[163.23463234632345,62.41712725692395],[163.2310323103231,62.4036186387649],[163.22743227432278,62.385044288796195],[163.27783277832782,62.37322424790702],[163.3030330303303,62.37491282517689],[163.32103321033213,62.363092784287716],[163.35343353433535,62.349584166128636],[163.37143371433717,62.33945270250936],[163.3678336783368,62.327632661620186],[163.3390333903339,62.32425550708041],[163.2850328503285,62.32594408435028],[163.259832598326,62.31918977527076],[163.2310323103231,62.31074688892136],[163.22383223832242,62.303992579841804],[163.22383223832242,62.29386111622253],[163.24183241832418,62.2854182298731],[163.22023220232205,62.273598188983925],[163.20223202232023,62.2769753435237],[163.18063180631805,62.273598188983925],[163.13383133831337,62.251646684475446],[163.09063090630906,62.22631802542722],[163.0870308703087,62.21449798453804],[163.09063090630906,62.202677943648865],[163.10503105031052,62.16890639825121],[163.10863108631088,62.153709202822256],[163.11223112231124,62.14526631647283],[163.13743137431373,62.13175769831378],[163.1410314103141,62.12331481196438],[163.1518315183152,62.113183348345075],[163.14823148231483,62.10474046199565],[163.11943119431197,62.09798615291612],[163.10143101431015,62.09292042110647],[163.10503105031052,62.07941180294742],[163.12303123031234,62.06759176205824],[163.17703177031774,62.06759176205824],[163.19143191431914,62.06590318478837],[163.18783187831878,62.05239456662929],[163.16623166231665,62.04564025754976],[163.14823148231483,62.037197371200335],[163.1410314103141,62.020311598501536],[163.13743137431373,62.00849155761233],[163.1266312663127,61.99836009399306],[163.11943119431197,61.988228630373754],[163.09423094230942,61.9730314349448],[163.06903069030693,61.966277125865275],[163.07983079830802,61.9544570849761],[163.06543065430657,61.9358827350074],[163.04383043830438,61.930817003197745],[163.02583025830262,61.92068553957844],[163.04383043830438,61.92237411684832],[163.06543065430657,61.917308385038666],[163.05823058230584,61.898734035069964],[163.02943029430298,61.873405376021736],[163.02583025830262,61.85651960332291],[163.01503015030153,61.84301098516383],[163.00063000630007,61.82950236700478],[162.97902979029794,61.80923943976617],[162.97542975429758,61.7991079761469],[162.98982989829898,61.78728793525772],[163.02583025830262,61.77546789436852],[163.10503105031052,61.756893544399816],[163.13023130231306,61.756893544399816],[163.14463144631446,61.74507350351064],[163.23823238232382,61.73494203989134],[163.29943299432995,61.721433421732286],[163.3246332463325,61.70961338084311],[163.34263342633426,61.70623622630333],[163.32103321033213,61.69272760814428],[163.32103321033213,61.67584183544545],[163.32823328233286,61.65726748547675],[163.29223292232922,61.64882459912732],[163.24183241832418,61.64375886731767],[163.22023220232205,61.6420702900478],[163.20943209432096,61.63700455823815],[163.20943209432096,61.62856167188875],[163.22383223832242,61.623495940079096],[163.2310323103231,61.61167589918992],[163.2058320583206,61.61505305372967],[163.1950319503195,61.62518451734897],[163.16623166231665,61.63025024915862],[163.13743137431373,61.62518451734897],[163.11223112231124,61.61674163099957],[163.0870308703087,61.59816728103084],[163.07623076230766,61.58465866287179],[163.08343083430833,61.57959293106214],[163.10863108631088,61.57115004471274],[163.10143101431015,61.555952849283784],[163.11223112231124,61.547509962934356],[163.04383043830438,61.51711557207648],[163.0186301863019,61.51711557207648],[162.98262982629825,61.53737849931508],[162.96822968229685,61.57115004471274],[162.95742957429576,61.57790435379226],[162.9286292862929,61.57790435379226],[162.90702907029072,61.57959293106214],[162.90342903429035,61.58972439468144],[162.91422914229145,61.596478703760965],[162.90702907029072,61.60829874465014],[162.89622896228963,61.61167589918992],[162.8746287462875,61.609987321920016],[162.86022860228604,61.60323301284049],[162.86022860228604,61.61674163099957],[162.8746287462875,61.62518451734897],[162.89622896228963,61.6336274036984],[162.93942939429394,61.63869313550802],[162.9430294302943,61.6505131763972],[162.9322293222932,61.66908752636593],[162.9322293222932,61.67584183544545],[162.87822878228786,61.694416185414156],[162.83862838628386,61.707924803573235],[162.80262802628027,61.71130195811298],[162.7666276662767,61.70454764903346],[162.69822698226983,61.685973299064756],[162.6226262262623,61.658956062746626],[162.62982629826297,61.63700455823815],[162.680226802268,61.62180736280919],[162.7450274502745,61.623495940079096],[162.76302763027633,61.61336447645979],[162.77382773827742,61.59310154922119],[162.67302673026734,61.604921590110365],[162.6010260102601,61.623495940079096],[162.53982539825398,61.6522017536671],[162.5038250382504,61.6606446400165],[162.449824498245,61.66908752636593],[162.41742417424177,61.67584183544545],[162.40662406624068,61.67246468090568],[162.3850238502385,61.658956062746626],[162.37422374223746,61.62856167188875],[162.3490234902349,61.61505305372967],[162.31302313023133,61.618430208269444],[162.29142291422914,61.618430208269444],[162.3058230582306,61.60154443557062],[162.32742327423273,61.58972439468144],[162.2950229502295,61.57790435379226],[162.27342273422738,61.56270715836331],[162.2518225182252,61.55257569474401],[162.22662226622265,61.55933000382353],[162.2158221582216,61.55764142655366],[162.21222212222125,61.54582138566448],[162.22662226622265,61.523869881156],[162.2158221582216,61.5137384175367],[162.17982179821797,61.5052955311873],[162.16902169021694,61.493475490298124],[162.15102151021512,61.495164067568],[162.14022140221402,61.49685264483787],[162.13662136621366,61.48334402667882],[162.11502115021153,61.471523985789645],[162.10062100621008,61.45632679036069],[162.10422104221044,61.44788390401129],[162.0970209702097,61.436063863122115],[162.06102061020613,61.43944101766186],[162.03942039420394,61.436063863122115],[162.06102061020613,61.41748951315341],[162.02862028620285,61.400603740454585],[161.98541985419854,61.37189792686655],[161.93861938619386,61.3769636586762],[161.9242192421924,61.39047227683528],[161.89901899018992,61.42762097677269],[161.88821888218882,61.430998131312464],[161.8810188101881,61.41748951315341],[161.88461884618846,61.40229231772446],[161.88821888218882,61.38540654502563],[161.91341913419137,61.35670073143763],[161.8918189181892,61.33474922692915],[161.86301863018633,61.338126381468925],[161.84861848618488,61.360077885977375],[161.8270182701827,61.373586504136455],[161.80901809018093,61.37189792686655],[161.8018180181802,61.36176646324728],[161.80901809018093,61.34488069054845],[161.79461794617947,61.33474922692915],[161.8018180181802,61.31786345423032],[161.7730177301773,61.297600526991715],[161.6938169381694,61.28578048610254],[161.6578165781658,61.26889471340371],[161.64701647016471,61.26382898159406],[161.63621636216362,61.262140404324185],[161.6146161461615,61.257074672514534],[161.59661596615967,61.25538609524466],[161.59661596615967,61.23681174527596],[161.6038160381604,61.226680281656655],[161.5930159301593,61.20810593168795],[161.58221582215822,61.2013516226084],[161.57861578615785,61.191220158989125],[161.56781567815682,61.1844658499096],[161.54621546215463,61.192908736259],[161.52461524615245,61.19628589079878],[161.5066150661507,61.19797446806865],[161.48861488614887,61.2030401998783],[161.47061470614705,61.19628589079878],[161.46701467014674,61.1844658499096],[161.459814598146,61.17095723175052],[161.4418144181442,61.16251434540112],[161.4166141661417,61.15576003632157],[161.41301413014133,61.15238288178182],[161.43461434614346,61.142251418162516],[161.45261452614528,61.137185686352865],[161.44541445414455,61.12029991365404],[161.4166141661417,61.11861133638416],[161.39501395013951,61.10847987276486],[161.2978129781298,61.0561339773985],[161.2618126181262,61.05106824558885],[161.2330123301233,61.052756822858726],[161.21141211412117,61.05444540012863],[161.2078120781208,61.047691091049074],[161.21501215012154,61.0358710501599],[161.20421204212045,61.02236243200085],[161.18261182611826,61.01391954565145],[161.18261182611826,60.99196804114297],[161.13581135811359,60.97170511390436],[161.04221042210423,60.941310723046485],[161.01341013410138,60.92949068215731],[160.97740977409774,60.9092277549187],[160.95220952209525,60.9007848685693],[160.91620916209166,60.8990962912994],[160.9126091260913,60.8805219413307],[160.9018090180902,60.86025901409212],[160.8730087300873,60.84843897320292],[160.8478084780848,60.81297885053539],[160.83340833408334,60.77920730513773],[160.82980829808298,60.753878646089504],[160.79740797407976,60.74712433700998],[160.79020790207903,60.7336157188509],[160.79020790207903,60.718418523421974],[160.76500765007654,60.72854998704125],[160.73620736207363,60.731927141581025],[160.72180721807217,60.75219006881963],[160.6858068580686,60.76063295516903],[160.6606066060661,60.75219006881963],[160.64260642606428,60.7336157188509],[160.63540635406355,60.7150413688822],[160.61380613806142,60.7150413688822],[160.59940599405996,60.72010710069185],[160.58140581405814,60.7234842552316],[160.58140581405814,60.736992873390676],[160.55980559805602,60.740370027930425],[160.5418054180542,60.73868145066055],[160.52740527405274,60.7234842552316],[160.50220502205025,60.72010710069185],[160.49500495004952,60.70659848253277],[160.46980469804697,60.69984417345324],[160.43740437404375,60.70322132799302],[160.4086040860409,60.70659848253277],[160.42660426604266,60.73023856431115],[160.44460444604448,60.74205860520033],[160.43020430204302,60.74881291427985],[160.41580415804157,60.7437471824702],[160.3978039780398,60.7336157188509],[160.37260372603726,60.7234842552316],[160.38340383403835,60.701532750723146],[160.35820358203586,60.65931831897606],[160.31860318603185,60.64918685535676],[160.289802898029,60.639055391737486],[160.28620286202863,60.62723535084831],[160.28260282602827,60.60866100087958],[160.25020250202505,60.60190669180005],[160.23940239402395,60.59008665091088],[160.18540185401855,60.5782666100217],[160.15300153001533,60.576578032751826],[160.1350013500135,60.60190669180005],[160.16020160201606,60.64074396900736],[160.14940149401497,60.65087543262666],[160.1458014580146,60.66269547351584],[160.16380163801637,60.66438405078571],[160.19620196201964,60.66100689624594],[160.22140221402213,60.66438405078571],[160.2142021420214,60.67620409167489],[160.20700207002074,60.68464697802432],[160.20340203402037,60.696467018913495],[160.22140221402213,60.709975637072546],[160.24660246602468,60.71335279161232],[160.23220232202323,60.7251728325015],[160.25020250202505,60.7353042961208],[160.25020250202505,60.74712433700998],[160.24300243002432,60.75725580062925],[160.25020250202505,60.772452996058206],[160.23220232202323,60.79271592329681],[160.1710017100171,60.824798891424564],[160.19620196201964,60.82817604596434],[160.20700207002074,60.83830750958364],[160.21780217802177,60.84506181866317],[160.23220232202323,60.83324177777399],[160.2538025380254,60.824798891424564],[160.24660246602468,60.85350470501257],[160.24300243002432,60.87376763225117],[160.2682026820268,60.892341982219875],[160.27180271802717,60.9007848685693],[160.28260282602827,60.905850600378955],[160.30420304203045,60.90416202310905],[160.32580325803258,60.90753917764883],[160.3438034380344,60.90753917764883],[160.35820358203586,60.91091633218858],[160.35100351003513,60.922736373077754],[160.3546035460355,60.94468787758623],[160.37260372603726,60.96663938209471],[160.42660426604266,60.98352515479354],[160.4086040860409,61.00547665930202],[160.4230042300423,61.01898527746107],[160.44460444604448,61.0358710501599],[160.41220412204126,61.0358710501599],[160.3870038700387,61.0375596274298],[160.37260372603726,61.04262535923945],[160.34740347403476,61.03249389562015],[160.31860318603185,61.0358710501599],[160.2790027900279,61.01898527746107],[160.20340203402037,61.0375596274298],[160.1710017100171,61.030805318350275],[160.13140131401315,61.02067385473097],[160.070200702007,61.00547665930202],[160.0630006300063,60.99534519568272],[160.0486004860049,60.985213732063414],[160.0270002700027,60.98352515479354],[160.00900009000094,60.97001653663449],[159.99819998199985,60.963262227554964],[159.98019980199803,60.96495080482484],[159.96579965799657,60.96663938209471],[159.95139951399517,60.95988507301519],[159.9585995859959,60.95144218666579],[159.95139951399517,60.941310723046485],[159.91539915399153,60.94468787758623],[159.88659886598867,60.941310723046485],[159.88659886598867,60.93117925942718],[159.9045990459905,60.92442495034766],[159.89739897398977,60.91598206399823],[159.8829988299883,60.914293486728354],[159.8649986499865,60.922736373077754],[159.84339843398436,60.92949068215731],[159.8289982899829,60.932867836697056],[159.7965979659797,60.93117925942718],[159.80739807398078,60.93624499123683],[159.8289982899829,60.941310723046485],[159.83619836198363,60.954819341205535],[159.839798397984,60.97001653663449],[159.8289982899829,60.97845942298389],[159.85419854198545,60.98352515479354],[159.87939879398795,61.00041092749237],[159.91539915399153,61.02236243200085],[159.94419944199444,61.0460025137792],[159.96939969399693,61.05951113193828],[159.95139951399517,61.071331172827456],[159.96939969399693,61.079774059176856],[159.97659976599766,61.096659831875684],[160.0018000180002,61.106791295494986],[159.99099990999912,61.123677068193814],[159.97659976599766,61.13887426362277],[159.9837998379984,61.15238288178182],[159.9729997299973,61.16758007721077],[159.9621996219962,61.18108869536982],[159.95139951399517,61.192908736259],[159.92619926199262,61.2030401998783],[159.9189991899919,61.213171663497604],[159.9369993699937,61.221614549847004],[159.95499954999553,61.226680281656655],[159.94419944199444,61.24356605435548],[159.90819908199086,61.25876324978444],[159.8829988299883,61.257074672514534],[159.85419854198545,61.257074672514534],[159.82179821798218,61.23174601346631],[159.8037980379804,61.240188899815706],[159.7749977499775,61.24187747708561],[159.78939789397896,61.253697517974786],[159.78939789397896,61.26551755886396],[159.8289982899829,61.27902617702301],[159.8181981819818,61.289157640642316],[159.84339843398436,61.29253479518209],[159.87219872198722,61.29253479518209],[159.90819908199086,61.29422337245197],[159.91179911799117,61.28578048610254],[159.92259922599226,61.28071475429289],[159.9621996219962,61.27227186794349],[159.99459994599948,61.284091908832664],[160.00540005400057,61.29253479518209],[159.94419944199444,61.297600526991715],[159.91179911799117,61.31448629969054],[159.93339933399335,61.32799491784962],[159.9729997299973,61.338126381468925],[159.9729997299973,61.35670073143763],[159.96579965799657,61.378652235946106],[159.99819998199985,61.382029390485854],[160.03420034200343,61.38034081321598],[160.05220052200525,61.378652235946106],[160.0486004860049,61.387095122295506],[160.05220052200525,61.395538008644934],[160.070200702007,61.40398089499433],[160.08460084600847,61.409046626803985],[160.10620106201065,61.42930955404259],[160.10620106201065,61.444506749471515],[160.08820088200883,61.45294963582094],[160.070200702007,61.449572481281166],[160.05220052200525,61.449572481281166],[160.03420034200343,61.45126105855104],[160.03420034200343,61.45970394490047],[160.05580055800561,61.463081099440245],[160.06660066600665,61.46983540851977],[160.08460084600847,61.47490114032942],[160.1026010260103,61.48334402667882],[160.11340113401133,61.49009833575835],[160.11340113401133,61.50022979937765],[160.12780127801278,61.501918376647524],[160.1710017100171,61.5052955311873],[160.21780217802177,61.512049840266826],[160.22860228602286,61.52724703569578],[160.24660246602468,61.53737849931508],[160.28620286202863,61.55426427201391],[160.2682026820268,61.56608431290309],[160.25020250202505,61.574527199252486],[160.25020250202505,61.58634724014166],[160.26460264602645,61.59310154922119],[160.28620286202863,61.60661016738027],[160.2682026820268,61.62011878553932],[160.26100261002614,61.62518451734897],[160.289802898029,61.63025024915862],[160.31140311403118,61.645447444587575],[160.31860318603185,61.667398949096025],[160.30780307803082,61.68259614452498],[160.27180271802717,61.685973299064756],[160.25740257402578,61.69103903087441],[160.32580325803258,61.71467911265276],[160.37980379803798,61.74676208078051],[160.41220412204126,61.765336430749244],[160.3978039780398,61.77715647163842],[160.3978039780398,61.79404224433725],[160.3870038700387,61.800796553416774],[160.3690036900369,61.800796553416774],[160.36180361803622,61.814305171575825],[160.39060390603908,61.82274805792525],[160.40140401404017,61.83119094427465],[160.39420394203944,61.841322407893955],[160.39420394203944,61.85314244878313],[160.37620376203762,61.85651960332291],[160.37260372603726,61.86496248967231],[160.37260372603726,61.871716798751834],[160.38340383403835,61.87509395329161],[160.39060390603908,61.881848262371136],[160.38340383403835,61.88691399418079],[160.37260372603726,61.898734035069964],[160.36540365403653,61.90717692141939],[160.36180361803622,61.91224265322904],[160.3546035460355,61.91393123049892],[160.34740347403476,61.917308385038666],[160.34020340203404,61.93757131227727],[160.34740347403476,61.944325621356796],[160.32940329403294,61.94094846681705],[160.29340293402936,61.939259889547145],[160.2682026820268,61.92406269411822],[160.23940239402395,61.91899696230857],[160.2250022500225,61.91055407595914],[160.2250022500225,61.90211118960974],[160.21780217802177,61.89704545780009],[160.1818018180182,61.88015968510126],[160.13140131401315,61.876782530561485],[160.10980109801102,61.86665106694218],[160.07380073800738,61.85651960332291],[160.0378003780038,61.846388139703606],[160.00900009000094,61.81261659430595],[159.9837998379984,61.78728793525772],[159.98019980199803,61.77546789436852],[159.96579965799657,61.75858212166969],[159.95139951399517,61.756893544399816],[159.9477994779948,61.74676208078051],[159.92619926199262,61.73156488535159],[159.9045990459905,61.72818773081181],[159.89739897398977,61.71805626719251],[159.87939879398795,61.70454764903346],[159.84339843398436,61.70961338084311],[159.81099810998109,61.71467911265276],[159.8037980379804,61.721433421732286],[159.79299792997932,61.71130195811298],[159.78939789397896,61.69948191722381],[159.73899738997392,61.70454764903346],[159.72459724597246,61.70117049449368],[159.72459724597246,61.71130195811298],[159.7065970659707,61.721433421732286],[159.70299702997033,61.702859071763584],[159.7065970659707,61.685973299064756],[159.6849968499685,61.68766187633463],[159.6525965259653,61.68259614452498],[159.62379623796238,61.67415325817558],[159.59499594995953,61.66402179455628],[159.5769957699577,61.6522017536671],[159.54099540995412,61.66402179455628],[159.51939519395194,61.67415325817558],[159.51939519395194,61.68428472179485],[159.5121951219512,61.70117049449368],[159.5121951219512,61.71299053538286],[159.53019530195303,61.71974484446241],[159.54099540995412,61.73494203989134],[159.5337953379534,61.75520496712994],[159.53019530195303,61.76871358528899],[159.53739537395376,61.78559935798782],[159.54819548195485,61.805862285226425],[159.5661956619566,61.81599374884573],[159.54819548195485,61.819370903385476],[159.53019530195303,61.819370903385476],[159.5229952299523,61.810928017036076],[159.52659526595266,61.79573082160712],[159.48699486994872,61.792353667067346],[159.48699486994872,61.78222220344807],[159.47619476194762,61.76364785347934],[159.45099450994513,61.77715647163842],[159.42579425794258,61.783910780717946],[159.4005940059401,61.79573082160712],[159.3789937899379,61.814305171575825],[159.35739357393572,61.81599374884573],[159.35019350193505,61.826125212465],[159.36459364593645,61.827813789734904],[159.39339393393936,61.83456809881443],[159.40419404194046,61.85314244878313],[159.39339393393936,61.87509395329161],[159.3609936099361,61.89366830326031],[159.28899288992892,61.90042261233984],[159.21339213392133,61.91224265322904],[159.11619116191162,61.917308385038666],[159.06579065790658,61.91561980776879],[159.0189901899019,61.91561980776879],[159.00099000990014,61.90717692141939],[158.98658986589868,61.90211118960974],[158.92178921789218,61.903799766879615],[158.8965889658897,61.89366830326031],[158.86418864188641,61.87847110783139],[158.84618846188465,61.85820818059278],[158.85338853388538,61.826125212465],[158.83538835388356,61.82105948065535],[158.79938799387998,61.82105948065535],[158.7525875258753,61.82105948065535],[158.73458734587348,61.832879521544555],[158.67338673386735,61.83456809881443],[158.60498604986049,61.83119094427465],[158.54738547385477,61.83119094427465],[158.5437854378544,61.82274805792525],[158.52218522185223,61.7991079761469],[158.48618486184864,61.7889765125276],[158.46458464584646,61.80417370795655],[158.4357843578436,61.814305171575825],[158.40338403384033,61.82274805792525],[158.32418324183243,61.827813789734904],[158.25938259382593,61.826125212465],[158.23058230582308,61.81261659430595],[158.23058230582308,61.7991079761469],[158.16938169381694,61.76702500801912],[158.1405814058141,61.770402162558895],[158.1189811898119,61.75520496712994],[158.07938079380796,61.73325346262146],[158.0649806498065,61.74169634897089],[158.04698046980474,61.74507350351064],[158.039780397804,61.73663061716124],[158.01818018180182,61.73494203989134],[157.98937989379897,61.74000777170099],[157.94977949779496,61.74507350351064],[157.9425794257943,61.76027069893959],[157.88137881378816,61.765336430749244],[157.79497794977954,61.78053362617817],[157.68697686976873,61.78053362617817],[157.5357753577536,61.792353667067346],[157.46377463774638,61.78222220344807],[157.39177391773921,61.74507350351064],[157.35577355773557,61.71467911265276],[157.36657366573667,61.69779333995393],[157.3629736297363,61.685973299064756],[157.34497344973448,61.680907567255105],[157.30537305373053,61.69610476268406],[157.2549725497255,61.69272760814428],[157.18297182971833,61.67415325817558],[157.10017100171,61.66402179455628],[157.06417064170643,61.65726748547675],[157.02817028170284,61.6505131763972],[157.01017010170102,61.63700455823815],[156.99936999369993,61.61336447645979],[156.96336963369635,61.58465866287179],[156.9237692376924,61.55257569474401],[156.8481684816848,61.52724703569578],[156.79776797767977,61.5154269948066],[156.74736747367473,61.52724703569578],[156.72216722167224,61.52724703569578],[156.67896678966792,61.523869881156],[156.6717667176672,61.5154269948066],[156.69336693366932,61.512049840266826],[156.6717667176672,61.498541222107775],[156.6609666096661,61.48334402667882],[156.6609666096661,61.46476967671012],[156.650166501665,61.44281817220164],[156.64296642966428,61.43268670858234],[156.63216632166325,61.42424382223294],[156.62496624966252,61.37020934959668],[156.64656646566465,61.3482578450882],[156.650166501665,61.32799491784962],[156.6357663576636,61.30942056788092],[156.63216632166325,61.29422337245197],[156.62136621366216,61.275649022483265],[156.62856628566288,61.26889471340371],[156.63216632166325,61.257074672514534],[156.650166501665,61.25032036343501],[156.650166501665,61.22330312711688],[156.66456664566647,61.2114830862277],[156.65376653766538,61.19628589079878],[156.6357663576636,61.191220158989125],[156.62496624966252,61.19628589079878],[156.62496624966252,61.20641735441805],[156.59976599765997,61.2114830862277],[156.57816578165784,61.213171663497604],[156.54576545765457,61.20979450895783],[156.52056520565208,61.19797446806865],[156.45576455764558,61.177711540830046],[156.37296372963732,61.14900572724204],[156.2649626496265,61.08146263644673],[156.0921609216092,61.00209950476224],[156.04536045360453,60.97339369117424],[156.03096030960313,60.94468787758623],[156.00936009360095,60.949753609395884],[155.9805598055981,60.92442495034766],[155.96255962559627,60.932867836697056],[155.94455944559445,60.922736373077754],[155.97335973359736,60.90416202310905],[155.9409594095941,60.8805219413307],[155.93015930159305,60.87545620952105],[155.9157591575916,60.85857043682222],[155.91935919359196,60.84675039593304],[155.92295922959232,60.83324177777399],[155.9157591575916,60.816356005075164],[155.9049590495905,60.80622454145586],[155.9049590495905,60.79609307783656],[155.91215912159123,60.78596161421726],[155.90855908559087,60.772452996058206],[155.91935919359196,60.75556722335938],[155.9157591575916,60.740370027930425],[155.91215912159123,60.70322132799302],[155.87615876158765,60.71672994615207],[155.86895868958692,60.726861409771374],[155.82935829358297,60.72854998704125],[155.81855818558188,60.7234842552316],[155.7969579695797,60.70322132799302],[155.77895778957793,60.69477844164359],[155.72495724957253,60.655941164436314],[155.6817568175682,60.65762974170619],[155.6637566375664,60.64918685535676],[155.63135631356317,60.642432546277234],[155.609756097561,60.63061250538806],[155.57015570155704,60.62554677357841],[155.55575555755559,60.61372673268923],[155.54135541355413,60.59177522818075],[155.52695526955273,60.593463805450654],[155.5089550895509,60.59008665091088],[155.4909549095491,60.58164376456148],[155.48735487354872,60.576578032751826],[155.48015480154805,60.563069414592746],[155.47295472954733,60.55462652824335],[155.48015480154805,60.549560796433695],[155.48015480154805,60.54111791008427],[155.48015480154805,60.53436360100474],[155.47295472954733,60.53436360100474],[155.4549545495455,60.53267502373487],[155.44775447754478,60.522543560115565],[155.44055440554405,60.51916640557582],[155.429754297543,60.51578925103604],[155.4117541175412,60.527609291925216],[155.39735397353974,60.52929786919509],[155.3757537575376,60.52929786919509],[155.33975339753397,60.52423213738544],[155.30015300153002,60.51072351922639],[155.27495274952753,60.490460591987784],[155.2389523895239,60.48370628290826],[155.18495184951848,60.438114696621426],[155.1381513815138,60.411097460303324],[155.030150301503,60.38239164671529],[154.9509495094951,60.367194451286366],[154.88254882548824,60.31991428772963],[154.86094860948612,60.30640566957058],[154.8321483214832,60.28951989687175],[154.81414814148144,60.27094554690305],[154.8177481774818,60.2844541650621],[154.82494824948253,60.29289705141153],[154.8321483214832,60.30302851503083],[154.82134821348217,60.299651360491055],[154.80334803348035,60.28951989687175],[154.79974799747998,60.2743227014428],[154.79254792547925,60.2557483514741],[154.78174781747816,60.24899404239457],[154.7745477454775,60.23886257877527],[154.76014760147604,60.228731115155966],[154.69174691746917,60.201713878837865],[154.619746197462,60.13585936531243],[154.5369453694537,60.05311907908819],[154.50814508145083,60.024413265500186],[154.490144901449,59.9720673701338],[154.490144901449,59.96024732924462],[154.48654486544865,59.94673871108557],[154.47934479344792,59.95518159743497],[154.47934479344792,59.9737559474037],[154.49734497344974,60.02947899730981],[154.52614526145265,60.059873388167716],[154.56214562145624,60.09364493356537],[154.54774547745478,60.09702208810512],[154.5117451174512,60.09364493356537],[154.47214472144725,60.085202047215944],[154.43254432544325,60.076759160866544],[154.40734407344075,60.063250542707465],[154.40734407344075,60.03623330638936],[154.4361443614436,60.00752749280136],[154.4577445774458,59.98388741102298],[154.46494464944652,59.96700163832415],[154.46134461344616,59.9450501338157],[154.47934479344792,59.92309862930722],[154.47934479344792,59.90621285660839],[154.48654486544865,59.89608139298909],[154.47214472144725,59.87919562029026],[154.45054450544507,59.87750704302039],[154.39654396543966,59.84880122943238],[154.4037440374404,59.86230984759143],[154.41094410944112,59.87412988848061],[154.43254432544325,59.89608139298909],[154.39654396543966,59.902835702068614],[154.28134281342813,59.89101566117944],[154.2489424894249,59.88594992936979],[154.22014220142205,59.86906415667096],[154.22734227342272,59.85048980670226],[154.2237422374224,59.83022687946365],[154.22014220142205,59.81165252949495],[154.21654216542169,59.78463529317682],[154.2237422374224,59.75761805685872],[154.22734227342272,59.73060082054059],[154.25254252542527,59.698517852412806],[154.28854288542885,59.663057729745276],[154.36054360543608,59.58538317533066],[154.3677436774368,59.57525171171139],[154.34614346143462,59.58369459806079],[154.3245432454325,59.600580370759616],[154.2849428494285,59.62422045253797],[154.27774277742776,59.649549111586225],[154.24174241742418,59.66643488428505],[154.22014220142205,59.66474630701515],[154.19854198541987,59.636040493427146],[154.1949419494195,59.627597607077746],[154.1949419494195,59.60395752529939],[154.19134191341914,59.595514638949965],[154.1949419494195,59.58369459806079],[154.17694176941768,59.57018597990174],[154.15894158941592,59.56174309355231],[154.16254162541628,59.55330020720291],[154.14814148141483,59.53641443450408],[154.10854108541088,59.53979158904383],[154.09054090540906,59.53134870269443],[154.0761407614076,59.50939719818595],[154.10134101341015,59.48744569367747],[154.12294122941233,59.47393707551842],[154.13734137341373,59.45705130281959],[154.26334263342636,59.43678837558099],[154.29934299342995,59.44185410739064],[154.32094320943213,59.45705130281959],[154.34254342543426,59.47393707551842],[154.35334353343535,59.489134270947346],[154.34614346143462,59.49926573456665],[154.34614346143462,59.50770862091608],[154.34974349743499,59.51615150726548],[154.3569435694357,59.52628297088478],[154.37494374943753,59.533037279964304],[154.4037440374404,59.53472585723418],[154.41094410944112,59.52121723907513],[154.41094410944112,59.506020043646174],[154.39654396543966,59.489134270947346],[154.38574385743857,59.47900280732807],[154.37854378543784,59.470559920978644],[154.38934389343893,59.46042845735934],[154.4037440374404,59.45029699374007],[154.41814418144185,59.440165530120765],[154.41814418144185,59.43341122104124],[154.42534425344257,59.42159118015206],[154.46494464944652,59.41483687107251],[154.51534515345156,59.40977113926286],[154.5369453694537,59.42327975742194],[154.53334533345333,59.43678837558099],[154.49374493744938,59.448608416470165],[154.45414454144543,59.467182766438896],[154.4361443614436,59.484068539137695],[154.4361443614436,59.50770862091608],[154.42534425344257,59.53472585723418],[154.41814418144185,59.546545898123355],[154.42894428944288,59.546545898123355],[154.4577445774458,59.53979158904383],[154.49734497344974,59.524594393614905],[154.5549455494555,59.51277435272573],[154.5909459094591,59.522905816345],[154.63054630546304,59.538103011773956],[154.6449464494645,59.54316874358361],[154.73854738547385,59.49082284821725],[154.78174781747816,59.470559920978644],[154.81054810548108,59.470559920978644],[154.8429484294843,59.475625652788295],[154.86094860948612,59.46887134370877],[154.87894878948788,59.46042845735934],[154.90414904149043,59.467182766438896],[154.91854918549188,59.47393707551842],[154.92214922149225,59.48744569367747],[154.93654936549365,59.494200002757],[154.95454954549547,59.4958885800269],[154.9617496174962,59.4958885800269],[154.97974979749796,59.49082284821725],[155.00135001350014,59.48069138459795],[155.0157501575016,59.475625652788295],[155.01215012150124,59.45198557100994],[155.02295022950233,59.43678837558099],[155.04815048150482,59.42496833469181],[155.07335073350737,59.408082561992984],[155.09855098550986,59.39626252110381],[155.16695166951672,59.37937674840498],[155.18855188551885,59.364179552976026],[155.21015210152103,59.34391662573745],[155.19575195751958,59.33547373938802],[155.1921519215192,59.33040800757837],[155.21735217352176,59.31352223487954],[155.21735217352176,59.30507934853014],[155.19935199351994,59.310145080339794],[155.1777517775178,59.30845650306992],[155.15615156151563,59.29663646218074],[155.159751597516,59.279750689481915],[155.17055170551708,59.26286491678309],[155.19575195751958,59.23753625773483],[155.1777517775178,59.225716216845655],[155.1489514895149,59.22233906230588],[155.15615156151563,59.21389617595648],[155.16695166951672,59.2020761350673],[155.19575195751958,59.17505889874917],[155.159751597516,59.17843605328895],[155.09135091350913,59.190256094178125],[155.05535055350555,59.191944671448],[155.03375033750336,59.1818132078287],[155.030150301503,59.1733703214793],[154.98334983349832,59.18687893963835],[154.93654936549365,59.191944671448],[154.90414904149043,59.18856751690825],[154.85734857348575,59.18856751690825],[154.81414814148144,59.19363324871787],[154.79974799747998,59.18519036236847],[154.79254792547925,59.17505889874917],[154.78534785347853,59.15648454878047],[154.80334803348035,59.132844467002116],[154.7889478894789,59.13115588973221],[154.74934749347494,59.13959877608164],[154.67734677346772,59.14635308516117],[154.66294662946632,59.15648454878047],[154.64134641346413,59.16155028059012],[154.619746197462,59.17168174420942],[154.6017460174602,59.1818132078287],[154.58374583745837,59.18687893963835],[154.57294572945733,59.20038755779743],[154.5009450094501,59.217273330496255],[154.43974439744397,59.21558475322635],[154.39654396543966,59.195321825987776],[154.36414364143644,59.195321825987776],[154.33174331743317,59.191944671448],[154.34254342543426,59.18012463055882],[154.34614346143462,59.15648454878047],[154.34974349743499,59.14297593062142],[154.3569435694357,59.11089296249364],[154.34254342543426,59.11764727157316],[154.3281432814328,59.11258153976351],[154.30654306543067,59.09400718979481],[154.27774277742776,59.08556430344538],[154.2489424894249,59.09063003525503],[154.19134191341914,59.100761498874334],[154.16254162541628,59.09063003525503],[154.0869408694087,59.06192422166703],[154.04734047340474,59.05348133531763],[154.02574025740256,59.0551699125875],[154.0077400774008,59.05854706712728],[153.9717397173972,59.073744262556204],[153.95733957339576,59.07712141709598],[153.92133921339217,59.08218714890563],[153.90333903339035,59.08725288071528],[153.8781387813878,59.10413865341411],[153.83133831338313,59.15310739424069],[153.80253802538027,59.17168174420942],[153.7665376653767,59.18012463055882],[153.6909369093691,59.18519036236847],[153.69453694536946,59.19701040325765],[153.70533705337056,59.203764712337176],[153.72333723337232,59.217273330496255],[153.75213752137523,59.21896190776613],[153.7665376653767,59.230781948655306],[153.77013770137705,59.24597914408426],[153.719737197372,59.22740479411553],[153.69813698136983,59.225716216845655],[153.66933669336697,59.195321825987776],[153.6477364773648,59.190256094178125],[153.60453604536048,59.20038755779743],[153.5829358293583,59.21558475322635],[153.5469354693547,59.22233906230588],[153.49653496534967,59.23415910319508],[153.44253442534426,59.230781948655306],[153.40653406534068,59.23584768046496],[153.37053370533704,59.24091341227461],[153.36333363333637,59.22909337138543],[153.37053370533704,59.20883044414683],[153.35613356133564,59.1733703214793],[153.3489334893349,59.15310739424069],[153.3165331653317,59.15310739424069],[153.29853298532987,59.15310739424069],[153.28413284132841,59.14973023970094],[153.28413284132841,59.13115588973221],[153.29853298532987,59.12946731246234],[153.32733327333273,59.141287353351515],[153.3489334893349,59.13453304427199],[153.35613356133564,59.11595869430329],[153.3489334893349,59.10413865341411],[153.33813338133382,59.09063003525503],[153.26973269732696,59.08556430344538],[153.21933219332192,59.09063003525503],[153.1977319773198,59.08725288071528],[153.16533165331657,59.083875726175506],[153.08973089730898,59.083875726175506],[153.03573035730358,59.06867853074655],[153.00693006930072,59.06023564439715],[152.99612996129963,59.0467270262381],[152.9889298892989,59.029841253539274],[152.97092970929708,59.01970978991997],[152.94212942129423,59.00620117176089],[152.93852938529386,58.98256108998254],[152.9349293492935,58.96567531728371],[152.91692916929168,58.953855276394535],[152.90612906129064,58.945412390045135],[152.909729097291,58.93528092642583],[152.909729097291,58.923460885536656],[152.91692916929168,58.91670657645713],[152.8989289892899,58.90319795829805],[152.88452884528846,58.91501799918723],[152.85212852128524,58.923460885536656],[152.8161281612816,58.926838040076404],[152.780127801278,58.92177230826678],[152.74052740527407,58.918395153727005],[152.72972729727297,58.909952267377605],[152.7117271172712,58.91670657645713],[152.70092700927012,58.92177230826678],[152.66492664926648,58.940346658235484],[152.6181261812618,58.94372381277523],[152.55692556925572,58.950478121854786],[152.52092520925208,58.98256108998254],[152.47052470524704,59.002824017221144],[152.4309243092431,59.00957832630067],[152.4057240572406,59.02308694445972],[152.4057240572406,59.0467270262381],[152.39132391323915,59.0467270262381],[152.3661236612366,59.056858489857376],[152.3625236252363,59.06023564439715],[152.3409234092341,59.0551699125875],[152.3409234092341,59.048415603507976],[152.3517235172352,59.04166129442845],[152.35532355323556,59.03321840807902],[152.3409234092341,59.01970978991997],[152.31572315723156,59.016332635380195],[152.25092250922512,58.99775828541149],[152.16452164521644,58.98424966725244],[152.1537215372154,58.958921008204186],[152.15732157321577,58.926838040076404],[152.1105211052111,58.89475507194865],[152.02052020520205,58.87449214471005],[151.9161191611916,58.87449214471005],[151.81171811718116,58.8711149901703],[151.76131761317612,58.85760637201122],[151.7181171811718,58.84916348566182],[151.63531635316355,58.84916348566182],[151.54891548915492,58.86436068109077],[151.50211502115025,58.860983526550996],[151.4517145171452,58.86436068109077],[151.40131401314017,58.84072059931239],[151.3545135451355,58.83227771296299],[151.33651336513367,58.83903202204252],[151.35091350913513,58.84578633112204],[151.3581135811358,58.855917794741345],[151.34731347313476,58.869426412900395],[151.31131311313112,58.8981322264884],[151.29691296912972,58.9082636901077],[151.28251282512826,58.92177230826678],[151.25731257312572,58.940346658235484],[151.23931239312395,58.96229816274396],[151.22851228512286,58.980872512712665],[151.2357123571236,58.99775828541149],[151.18531185311855,59.016332635380195],[151.1709117091171,59.02477552172962],[151.15291152911533,59.04166129442845],[151.1457114571146,59.0551699125875],[151.13131131311314,59.07205568528633],[151.1025110251103,59.09063003525503],[151.08811088110883,59.10245007614421],[151.1025110251103,59.114270117033385],[151.12051120511205,59.11089296249364],[151.15291152911533,59.09569576706468],[151.18171181711818,59.09400718979481],[151.21771217712177,59.092318612524934],[151.25011250112505,59.10413865341411],[151.30051300513009,59.11595869430329],[151.3437134371344,59.119335848843036],[151.36171361713616,59.132844467002116],[151.40131401314017,59.15310739424069],[151.43731437314375,59.16999316693952],[151.49131491314915,59.163238857859994],[151.57051570515705,59.15648454878047],[151.61731617316173,59.16155028059012],[151.65691656916573,59.16155028059012],[151.70731707317077,59.14297593062142],[151.76491764917648,59.132844467002116],[151.80811808118085,59.14973023970094],[151.8369183691837,59.15310739424069],[151.87651876518765,59.14804166243104],[151.92331923319233,59.13791019881177],[151.95211952119524,59.14635308516117],[151.9917199171992,59.154795971510595],[152.04932049320496,59.14804166243104],[152.1105211052111,59.15648454878047],[152.1789217892179,59.18856751690825],[152.22572225722257,59.2020761350673],[152.28332283322834,59.20545328960705],[152.3229232292323,59.20714186687695],[152.31212312123125,59.22740479411553],[152.28332283322834,59.23415910319508],[152.25092250922512,59.24597914408426],[152.2077220772208,59.27130780313249],[152.14652146521468,59.293259307640966],[152.13572135721358,59.29663646218074],[152.12132121321213,59.29157073037109],[152.10692106921073,59.283127844021664],[152.0709207092071,59.27806211221201],[152.02772027720277,59.26961922586261],[151.97731977319773,59.26455349405296],[151.96291962919628,59.266242071322836],[151.94131941319415,59.28481642129154],[151.91971919719197,59.29663646218074],[151.9017190171902,59.30339077126027],[151.82611826118261,59.29832503945062],[151.77931779317794,59.301702193990366],[151.76131761317612,59.30001361672049],[151.73251732517326,59.30676792580002],[151.7289172891729,59.32196512122897],[151.73251732517326,59.328719430308496],[151.739717397174,59.33547373938802],[151.76851768517685,59.3489823575471],[151.74331743317435,59.3675567075158],[151.72531725317253,59.382753902944756],[151.7037170371704,59.38950821202428],[151.7037170371704,59.399639675643584],[151.7037170371704,59.413148293802635],[151.69651696516968,59.43172264377134],[151.6641166411664,59.45873988008947],[151.6389163891639,59.48237996186782],[151.58131581315814,59.502642889106426],[151.53451534515347,59.506020043646174],[151.51651516515165,59.50939719818595],[151.50931509315092,59.51277435272573],[151.49851498514988,59.52121723907513],[151.49131491314915,59.53134870269443],[151.49131491314915,59.54148016631373],[151.47331473314733,59.55161162993301],[151.4409144091441,59.560054516282435],[151.43011430114302,59.565120248092086],[151.43011430114302,59.57018597990174],[151.45891458914588,59.57018597990174],[151.4517145171452,59.57694028898126],[151.4229142291423,59.59720321621984],[151.3977139771398,59.60395752529939],[151.37251372513725,59.600580370759616],[151.3545135451355,59.587071752600565],[151.34731347313476,59.568497402631834],[151.3221132211322,59.55667736174266],[151.27531275312754,59.560054516282435],[151.2249122491225,59.573563134441486],[151.1889118891189,59.57694028898126],[151.13131131311314,59.57862886625114],[151.06291062910628,59.57862886625114],[151.00531005310052,59.568497402631834],[150.9369093690937,59.55667736174266],[150.9081090810908,59.560054516282435],[150.8937089370894,59.546545898123355],[150.90450904509044,59.53134870269443],[150.9369093690937,59.51952866180525],[150.91530915309153,59.494200002757],[150.91170911709116,59.49082284821725],[150.9189091890919,59.49082284821725],[150.92970929709298,59.489134270947346],[150.9369093690937,59.484068539137695],[150.94410944109444,59.47731423005817],[150.94050940509408,59.46042845735934],[150.92610926109262,59.44691983920029],[150.87570875708758,59.448608416470165],[150.84330843308436,59.448608416470165],[150.77850778507786,59.43172264377134],[150.73890738907392,59.440165530120765],[150.75330753307531,59.45029699374007],[150.7749077490775,59.46549418916899],[150.7641076410764,59.484068539137695],[150.73890738907392,59.48237996186782],[150.70650706507064,59.49082284821725],[150.67410674106742,59.494200002757],[150.62010620106201,59.489134270947346],[150.53730537305375,59.47900280732807],[150.50490504905048,59.489134270947346],[150.58050580505807,59.50770862091608],[150.64890648906493,59.51784008453535],[150.710107101071,59.52121723907513],[150.77130771307714,59.53641443450408],[150.7749077490775,59.56174309355231],[150.71730717307173,59.55667736174266],[150.65970659706596,59.54823447539326],[150.6021060210602,59.54148016631373],[150.56970569705697,59.546545898123355],[150.51570515705157,59.55667736174266],[150.51930519305193,59.57187455717161],[150.49050490504908,59.57187455717161],[150.4689046890469,59.58031744352101],[150.46530465304653,59.59044890714031],[150.4581045810458,59.61240041164879],[150.41130411304113,59.622531875268095],[150.33930339303396,59.6326633388874],[150.30690306903068,59.64617195704645],[150.27450274502746,59.649549111586225],[150.16650166501665,59.652926266125974],[150.0945009450095,59.671500616094676],[150.00450004500044,59.70020642968268],[149.75969759697597,59.74073228415989],[149.59769597695976,59.75761805685872],[149.43929439294396,59.73566655235024],[149.3924939249393,59.755929479588815],[149.3816938169382,59.75424090231894],[149.3708937089371,59.75761805685872],[149.37449374493747,59.77281525228764],[149.34929349293492,59.76774952047799],[149.3276932769328,59.75930663412859],[149.37809378093783,59.72384651146106],[149.34569345693455,59.715403625111634],[149.19089190891913,59.66474630701515],[149.13329133291336,59.6411062252368],[149.08289082890832,59.652926266125974],[149.05769057690577,59.6512376888561],[149.039690396904,59.64279480250667],[149.03249032490328,59.62422045253797],[149.0432904329043,59.61408898891867],[149.09009090090905,59.609023257109016],[149.10449104491045,59.59213748441019],[149.09369093690935,59.568497402631834],[149.08649086490868,59.565120248092086],[149.07929079290795,59.560054516282435],[149.1188911889119,59.54316874358361],[149.16209162091621,59.538103011773956],[149.20169201692016,59.524594393614905],[149.21609216092162,59.48744569367747],[149.21249212492125,59.46887134370877],[149.1980919809198,59.467182766438896],[149.16209162091621,59.484068539137695],[149.13689136891372,59.49251142548712],[149.11529115291154,59.49251142548712],[149.07929079290795,59.484068539137695],[149.0540905409054,59.47731423005817],[149.01809018090182,59.46042845735934],[148.97848978489787,59.453674148279816],[148.96768967689678,59.45198557100994],[148.96408964089642,59.45873988008947],[148.96048960489605,59.467182766438896],[148.95328953289533,59.470559920978644],[148.91728917289174,59.46380561189912],[148.910089100891,59.46380561189912],[148.8920889208892,59.467182766438896],[148.87048870488707,59.475625652788295],[148.84888848888488,59.48744569367747],[148.84168841688415,59.50095431183652],[148.84528845288452,59.51952866180525],[148.8560885608856,59.53134870269443],[148.8884888848889,59.546545898123355],[148.84528845288452,59.55330020720291],[148.81648816488166,59.53472585723418],[148.78408784087844,59.50939719818595],[148.77328773287735,59.494200002757],[148.74448744487444,59.47224849824852],[148.72648726487267,59.45029699374007],[148.7228872288723,59.43341122104124],[148.71928719287195,59.42159118015206],[148.7228872288723,59.38781963475441],[148.73728737287377,59.3675567075158],[148.7876878768788,59.3591138211664],[148.8128881288813,59.364179552976026],[148.83808838088385,59.38444248021463],[148.8668886688867,59.404705407453235],[148.87408874088743,59.399639675643584],[148.87408874088743,59.38781963475441],[148.85968859688597,59.35404808935675],[148.88128881288816,59.355736666626626],[148.89568895688956,59.36924528478568],[148.90288902889029,59.38444248021463],[148.91728917289174,59.39626252110381],[148.9316893168932,59.39626252110381],[148.95328953289533,59.391196789294156],[148.98928989289897,59.3759995938652],[148.99288992889927,59.355736666626626],[148.93528935289356,59.31689938941932],[148.9316893168932,59.29663646218074],[148.96408964089642,59.27299638040236],[148.95328953289533,59.24935629862401],[148.93528935289356,59.23247052592518],[148.88488884888852,59.252733453163785],[148.84168841688415,59.27637353494214],[148.79848798487984,59.27130780313249],[148.7876878768788,59.23584768046496],[148.73728737287377,59.23753625773483],[148.72648726487267,59.25948776224331],[148.68688686886873,59.266242071322836],[148.58968589685895,59.24091341227461],[148.4708847088471,59.25611060770353],[148.43848438484383,59.26286491678309],[148.4420844208442,59.283127844021664],[148.41328413284134,59.30507934853014],[148.40968409684098,59.31858796668919],[148.42048420484207,59.33378516211815],[148.40248402484025,59.35404808935675],[148.39528395283952,59.37937674840498],[148.37008370083703,59.382753902944756],[148.33768337683375,59.39626252110381],[148.2188821888219,59.408082561992984],[148.01008010080102,59.386131057484505],[147.9128791287913,59.391196789294156],[147.84447844478444,59.3759995938652],[147.79047790477904,59.34391662573745],[147.8336783367834,59.31689938941932],[147.8480784807848,59.29663646218074],[147.82647826478268,59.26961922586261],[147.77607776077764,59.26455349405296],[147.740077400774,59.26286491678309],[147.70407704077041,59.26961922586261],[147.67527675276756,59.28481642129154],[147.6824768247683,59.293259307640966],[147.65727657276574,59.301702193990366],[147.62487624876252,59.30676792580002],[147.59247592475924,59.30339077126027],[147.5636756367564,59.293259307640966],[147.5528755287553,59.274684957672264],[147.5528755287553,59.257799184973436],[147.54567545675457,59.23753625773483],[147.5168751687517,59.24429056681436],[147.49167491674916,59.24597914408426],[147.43767437674376,59.261176339513185],[147.41607416074163,59.27130780313249],[147.38727387273872,59.29494788491084],[147.37287372873732,59.30339077126027],[147.36207362073623,59.30676792580002],[147.3332733327333,59.310145080339794],[147.3188731887319,59.31352223487954],[147.28647286472864,59.32703085303862],[147.27207272072724,59.33209658484827],[147.25047250472505,59.33378516211815],[147.22887228872293,59.33209658484827],[147.20007200072,59.31352223487954],[147.1676716767168,59.320276543959096],[147.13167131671315,59.32703085303862],[147.05607056070562,59.36249097570615],[147.03087030870307,59.36249097570615],[146.98046980469803,59.37093386205558],[146.88686886868868,59.364179552976026],[146.8616686166862,59.36080239843628],[146.72126721267216,59.381065325674854],[146.70326703267034,59.38781963475441],[146.6960669606696,59.39457394383393],[146.6960669606696,59.40639398472311],[146.68886688866888,59.41145971653276],[146.69246692466925,59.42327975742194],[146.63846638466384,59.440165530120765],[146.62046620466208,59.44523126193042],[146.5628656286563,59.45198557100994],[146.52686526865267,59.462117034629244],[146.50526505265054,59.46380561189912],[146.44046440464405,59.46042845735934],[146.3576635766358,59.43003406650146],[146.31806318063184,59.40132825291346],[146.31806318063184,59.364179552976026],[146.3252632526325,59.31858796668919],[146.3252632526325,59.29832503945062],[146.3108631086311,59.27806211221201],[146.3252632526325,59.27130780313249],[146.33246332463324,59.25948776224331],[146.33246332463324,59.247667721354134],[146.31806318063184,59.23753625773483],[146.34326343263433,59.230781948655306],[146.36486364863651,59.212207598686604],[146.33966339663397,59.20545328960705],[146.3216632166322,59.18012463055882],[146.2820628206282,59.19363324871787],[146.24246242462425,59.19701040325765],[146.2028620286203,59.20545328960705],[146.15606156061563,59.191944671448],[146.13446134461344,59.16999316693952],[146.09846098460986,59.17505889874917],[146.05166051660518,59.13959877608164],[145.9760597605976,59.14297593062142],[145.9760597605976,59.163238857859994],[145.99045990459905,59.17168174420942],[145.9616596165962,59.18856751690825],[145.93285932859328,59.21389617595648],[145.91485914859152,59.220650485036],[145.85725857258575,59.22740479411553],[145.8428584285843,59.23247052592518],[145.82485824858247,59.24091341227461],[145.82485824858247,59.25948776224331],[145.83565835658356,59.274684957672264],[145.8428584285843,59.293259307640966],[145.86445864458648,59.30845650306992],[145.8860588605886,59.32534227576875],[145.91125911259115,59.342228048467575],[145.94725947259474,59.355736666626626],[145.95445954459547,59.37937674840498],[145.9760597605976,59.39795109837368],[145.95805958059583,59.41652544834241],[145.88965889658897,59.40132825291346],[145.84645846458466,59.408082561992984],[145.8176581765818,59.41652544834241],[145.81405814058144,59.39795109837368],[145.81045810458107,59.3675567075158],[145.77085770857713,59.37431101659533],[145.73485734857348,59.39626252110381],[145.69165691656917,59.41145971653276],[145.67365673656735,59.42327975742194],[145.67365673656735,59.43678837558099],[145.65205652056522,59.42159118015206],[145.6232562325623,59.42159118015206],[145.5908559085591,59.42327975742194],[145.54045540455405,59.413148293802635],[145.45045450454506,59.408082561992984],[145.35325353253535,59.39288536656403],[145.32445324453244,59.39626252110381],[145.3136531365314,59.40132825291346],[145.3028530285303,59.408082561992984],[145.22725227252272,59.408082561992984],[145.13365133651337,59.38950821202428],[145.00045000450007,59.36924528478568],[144.76284762847632,59.381065325674854],[144.77724777247772,59.38444248021463],[144.7880478804788,59.38444248021463],[144.7988479884799,59.386131057484505],[144.80604806048063,59.39626252110381],[144.6116461164612,59.39626252110381],[144.62964629646297,59.38444248021463],[144.65124651246515,59.37937674840498],[144.69444694446946,59.37431101659533],[144.45324453244535,59.37431101659533],[144.36684366843667,59.381065325674854],[144.4028440284403,59.382753902944756],[144.42444424444244,59.382753902944756],[144.449644496445,59.381065325674854],[144.44244442444426,59.391196789294156],[144.42084420844208,59.39795109837368],[144.38124381243813,59.40301683018333],[144.35604356043564,59.40132825291346],[144.29844298442987,59.38781963475441],[144.28044280442805,59.38781963475441],[144.12924129241293,59.399639675643584],[143.93843938439386,59.404705407453235],[143.90243902439028,59.42327975742194],[143.84123841238414,59.40301683018333],[143.58203582035821,59.3388508939278],[143.49203492034923,59.31858796668919],[143.4092340923409,59.323653698498845],[143.35883358833587,59.34053947119767],[143.3120331203312,59.36080239843628],[143.22923229232293,59.36249097570615],[143.20403204032044,59.38444248021463],[143.16443164431644,59.381065325674854],[143.13923139231395,59.36080239843628],[143.14643146431467,59.36080239843628],[143.16083160831607,59.35404808935675],[142.8908289082891,59.301702193990366],[142.58122581225814,59.225716216845655],[142.26082260822608,59.12440158065269],[142.1456214562146,59.056858489857376],[142.08442084420847,59.03321840807902],[142.05562055620555,59.021398367189846],[142.0160201602016,58.99775828541149],[141.94761947619475,58.94372381277523],[141.78201782017823,58.76473462216768],[141.67401674016742,58.68368291321332],[141.58401584015843,58.61782839968788],[141.39321393213936,58.54353099981304],[141.2492124921249,58.477676486287635],[141.18441184411847,58.455724981779156],[141.1376113761138,58.464167868128555],[141.10521105211052,58.459102136318904],[140.98640986409868,58.41857628184172],[140.9540095400954,58.39831335460315],[140.93600936009364,58.39155904552359],[140.91800918009181,58.388181890983844],[140.90360903609036,58.38311615917419],[140.74160741607415,58.271670059361924],[140.69840698406983,58.23452135942452],[140.6660066600666,58.19061835040756],[140.6228062280623,58.11125521872307],[140.51840518405186,57.93226602811552],[140.51120511205113,57.90862594633714],[140.50040500405004,57.86810009185996],[140.49680496804967,57.844460010081605],[140.45720457204573,57.830951391922554],[140.42840428404287,57.82081992830325],[140.39960399603996,57.80055700106465],[140.34560345603455,57.787048382905596],[140.31320313203133,57.751588260238066],[140.30240302403024,57.74821110569829],[140.2808028080281,57.76340830112724],[140.25920259202593,57.76509687839712],[140.22320223202235,57.760031146587465],[140.2088020880209,57.74821110569829],[140.16560165601658,57.74821110569829],[140.11520115201154,57.73976821934889],[140.07200072000722,57.72625960118981],[140.0540005400054,57.72119386938016],[140.03600036000358,57.71275098303076],[140.00360003600036,57.69586521033193],[139.98199981999824,57.68742232398253],[139.9351993519935,57.653650778584876],[139.8775987759878,57.594550574138964],[139.8127981279813,57.506744556105076],[139.7911979119791,57.48310447432672],[139.71199711997122,57.49154736067612],[139.67239672396727,57.48141589705682],[139.62199621996223,57.46790727889777],[139.56439564395646,57.43075857896034],[139.54279542795427,57.381789838133756],[139.52119521195215,57.35983833362528],[139.49959499594996,57.33957540638667],[139.47439474394747,57.33450967457702],[139.44559445594456,57.32100105641797],[139.4167941679417,57.297360974639616],[139.4059940599406,57.305803860989016],[139.38079380793812,57.30749243825892],[139.3411934119341,57.29060666556009],[139.31599315993162,57.27709804740101],[139.30159301593017,57.278786624670914],[139.26919269192695,57.27709804740101],[139.19719197191972,57.27203231559136],[139.16119161191614,57.256835120162435],[139.11439114391146,57.234883615653956],[139.06759067590679,57.20617780206595],[139.03879038790387,57.167340524858645],[139.02799027990284,57.145389020350166],[139.02439024390247,57.140323288540515],[139.00639006390065,57.14876617488994],[138.98838988389883,57.153831906699594],[138.95958959589598,57.145389020350166],[138.93438934389343,57.13525755673086],[138.93078930789306,57.118371784032036],[138.91998919989203,57.10824032041276],[138.93078930789306,57.096420279523585],[138.9235892358924,57.05758300231628],[138.9019890198902,57.03056576599815],[138.8839888398884,57.01874572510897],[138.8587885878859,57.01367999329932],[138.8227882278823,57.02212287964875],[138.8047880478805,57.03225434326802],[138.79038790387904,57.02381145691862],[138.79758797587976,57.01367999329932],[138.78678786787867,57.006925684219794],[138.76158761587618,57.00523710694992],[138.71838718387187,56.979908447901664],[138.69678696786968,56.98328560244144],[138.6607866078661,56.97821987063179],[138.62478624786252,56.95964552066309],[138.6067860678607,56.944448325234134],[138.5851858518585,56.922496820725655],[138.57798577985778,56.881970966248474],[138.55998559985602,56.82624791634234],[138.5707857078571,56.811050720913386],[138.58158581585815,56.784033484595284],[138.56358563585638,56.77727917551573],[138.5419854198542,56.79416494821456],[138.54558545585456,56.819493607262814],[138.54918549185493,56.860019461739995],[138.5167851678517,56.84988799812069],[138.48438484384843,56.84988799812069],[138.45558455584558,56.83975653450139],[138.46638466384667,56.81611645272304],[138.44478444784448,56.792476370944684],[138.43758437584376,56.78234490732538],[138.4339843398434,56.77390202097598],[138.419584195842,56.767147711896456],[138.41238412384126,56.7603934028169],[138.40518405184054,56.75026193919763],[138.40518405184054,56.740130475578326],[138.39438394383944,56.7316875892289],[138.37638376383762,56.71986754833972],[138.35118351183513,56.71649039379997],[138.32958329583295,56.71142466199032],[138.289982899829,56.69285031202162],[138.28638286382863,56.67427596205289],[138.2791827918279,56.66583307570349],[138.26118261182614,56.65401303481431],[138.25758257582578,56.642192993925136],[138.26838268382687,56.62699579849618],[138.26118261182614,56.615175757607005],[138.25398253982542,56.623618643956405],[138.23238232382323,56.62530722122631],[138.21798217982183,56.610110025797354],[138.18558185581855,56.60842144852748],[138.14958149581497,56.60335571671783],[138.1279812798128,56.586469944019],[138.12078120781212,56.56958417132017],[138.11718117181175,56.55607555316112],[138.12078120781212,56.54087835773217],[138.1135811358114,56.52736973957312],[138.12438124381242,56.50710681233451],[138.1459814598146,56.49359819417546],[138.16038160381606,56.47840099874651],[138.17478174781746,56.47164668966698],[138.20718207182074,56.468269535127206],[138.23238232382323,56.46995811239708],[138.2467824678247,56.46995811239708],[138.25758257582578,56.46658095785733],[138.25038250382505,56.454760916968155],[138.22878228782287,56.44294087607898],[138.2251822518225,56.42436652611025],[138.19278192781928,56.4294322579199],[138.16398163981643,56.45138376242838],[138.14958149581497,56.441252298809076],[138.10638106381066,56.441252298809076],[138.07038070380707,56.43787514426933],[138.05958059580598,56.42605510338015],[138.05958059580598,56.414235062490974],[138.05598055980562,56.40410359887167],[138.05238052380525,56.387217826172844],[138.02358023580234,56.38215209436319],[137.97677976779767,56.37202063074389],[137.93717937179372,56.36695489893424],[137.9155791557916,56.36020058985471],[137.90117901179013,56.343314817155886],[137.89037890378904,56.32474046718718],[137.87237872378722,56.2926574990594],[137.85437854378546,56.26901741728105],[137.83277832778327,56.22511440826409],[137.79317793177933,56.22173725372434],[137.7751777517775,56.21160579010504],[137.7607776077761,56.19472001740621],[137.75357753577538,56.17614566743751],[137.73557735577356,56.16770278108808],[137.72477724777247,56.15925989473868],[137.7211772117721,56.147439853849505],[137.72477724777247,56.13561981296033],[137.69957699576997,56.125488349341026],[137.6167761677617,56.1187340402615],[137.57357573575734,56.1170454629916],[137.50157501575018,56.063010990355366],[137.48717487174872,56.057945258545715],[137.47277472774726,56.05456810400594],[137.45837458374587,56.04950237219629],[137.4439744397444,56.04781379492641],[137.4259742597426,56.030928022227585],[137.41517415174155,56.003910785909454],[137.41517415174155,55.987025013210626],[137.41517415174155,55.973516395051576],[137.40797407974082,55.968450663241924],[137.4007740077401,55.965073508702176],[137.39717397173973,55.95494204508287],[137.389973899739,55.94481058146357],[137.36837368373688,55.9515648905431],[137.35397353973542,55.960007776892525],[137.33237332373324,55.968450663241924],[137.29637296372965,55.9616963541624],[137.25317253172534,55.932990540574394],[137.23877238772388,55.91610476787557],[137.2027720277203,55.89921899517674],[137.18117181171812,55.89415326336709],[137.15597155971562,55.88739895428756],[137.11637116371168,55.86375887250921],[137.04797047970482,55.81985586349225],[137.05517055170554,55.799592936253674],[137.05157051570518,55.79283862717412],[137.029970299703,55.78777289536447],[137.0047700477005,55.79452720444402],[136.97956979569796,55.79283862717412],[136.95796957969583,55.78777289536447],[136.91116911169115,55.77088712266564],[136.88956889568897,55.745558463617414],[136.84996849968502,55.73036126818846],[136.83556835568356,55.723606959108935],[136.82476824768247,55.71347549548963],[136.79956799567998,55.68139252736188],[136.77436774367743,55.661129600123274],[136.74916749167494,55.657752445583526],[136.71316713167136,55.6594410228534],[136.669966699667,55.64593240469435],[136.6231662316623,55.61553801383644],[136.60156601566018,55.617226591106316],[136.579965799658,55.62398090018587],[136.56556565565654,55.62398090018587],[136.5547655476555,55.61553801383644],[136.55116551165514,55.603717972947265],[136.54756547565478,55.59358650932796],[136.52956529565296,55.58007789116891],[136.48636486364865,55.58345504570869],[136.46116461164615,55.58007789116891],[136.42876428764288,55.56488069573996],[136.41796417964179,55.55643780939056],[136.37836378363784,55.532797727612206],[136.34956349563498,55.509157645833824],[136.32076320763207,55.48720614132537],[136.31356313563134,55.46018890500724],[136.30636306363067,55.42472878233971],[136.27036270362703,55.41459731872041],[136.2379623796238,55.37407146424323],[136.219962199622,55.353808537004625],[136.19116191161913,55.34367707338532],[136.17676176761768,55.34367707338532],[136.17676176761768,55.33016845522627],[136.16236162361622,55.318348414337095],[136.14436144361446,55.31497125979732],[136.12636126361264,55.30821695071779],[136.1191611916119,55.29977406436839],[136.0867608676087,55.28626544620931],[136.05436054360547,55.269379673510485],[136.01836018360183,55.255871055351435],[135.98235982359824,55.24405101446226],[135.9535595355954,55.23054239630318],[135.9319593195932,55.21365662360435],[135.91755917559175,55.20521373725495],[135.91395913959138,55.19677085090555],[135.8671586715867,55.17313076912717],[135.84195841958422,55.17313076912717],[135.80955809558094,55.171442191857295],[135.7555575555756,55.139359223729514],[135.70515705157055,55.11571914195116],[135.6691566915669,55.12078487376081],[135.59355593555938,55.10221052379211],[135.5359553595536,55.087013328363156],[135.46755467554675,55.05661893750528],[135.45675456754566,55.02960170118715],[135.39195391953922,55.00427304213892],[135.33795337953381,54.98063296036054],[135.2659526595266,54.92828706499418],[135.2191521915219,54.894515519596524],[135.20475204752051,54.8691868605483],[135.18315183151833,54.859055396928994],[135.17235172351724,54.82190669699159],[135.2659526595266,54.7222806380685],[135.25515255152555,54.72059206079862],[135.2515525155252,54.717214906258846],[135.23715237152373,54.708772019909446],[135.24435244352446,54.70201771082992],[135.26955269552695,54.71046059717932],[135.29115291152914,54.71552632898897],[135.34155341553418,54.71552632898897],[135.6547565475655,54.66655758816236],[135.6691566915669,54.66149185635271],[135.679956799568,54.649671815463535],[135.68715687156873,54.614211692796005],[135.69795697956982,54.59901449736705],[135.71235712357122,54.585505879208],[135.72675726757268,54.5770629928586],[135.75195751957523,54.57030868377905],[135.88155881558816,54.585505879208],[135.97875978759788,54.58044014739835],[136.129961299613,54.61252311552613],[136.2055620556206,54.62096600187553],[136.2487624876249,54.62096600187553],[136.2631626316263,54.61590027006588],[136.27756277562776,54.60745738371648],[136.2919629196292,54.60745738371648],[136.32076320763207,54.61252311552613],[136.53316533165332,54.5956373428273],[136.56556565565654,54.60239165190683],[136.59796597965982,54.62265457914543],[136.63756637566377,54.668246165432265],[136.66276662766631,54.68513193813109],[136.67716677166771,54.67331189724189],[136.67356673566735,54.65811470181296],[136.66636666366662,54.64798323819366],[136.65916659166595,54.63785177457436],[136.66636666366662,54.62265457914543],[136.68076680766808,54.614211692796005],[136.70236702367026,54.61252311552613],[136.72036720367203,54.614211692796005],[136.73476734767348,54.62265457914543],[136.74916749167494,54.636163197304484],[136.75996759967603,54.64460608365388],[136.77436774367743,54.65136039273344],[136.79236792367925,54.65304897000331],[136.81036810368107,54.65136039273344],[136.82476824768247,54.64798323819366],[136.82836828368283,54.63954035184426],[136.81396813968144,54.62603173368518],[136.82836828368283,54.614211692796005],[136.8427684276843,54.6040802291767],[136.8607686076861,54.5956373428273],[136.88236882368824,54.59057161101765],[136.87156871568715,54.578751570128475],[136.83916839168393,54.551734333810344],[136.83916839168393,54.53315998384164],[136.81396813968144,54.524717097492214],[136.8067680676807,54.516274211142814],[136.81036810368107,54.507831324793386],[136.8427684276843,54.48756839755481],[136.8211682116821,54.48587982028491],[136.81756817568174,54.47405977939573],[136.82476824768247,54.458862583966805],[136.83916839168393,54.44366538853785],[136.83916839168393,54.431845347648675],[136.82836828368283,54.42509103856915],[136.8067680676807,54.423402461299276],[136.77436774367743,54.436911079458326],[136.75996759967603,54.436911079458326],[136.74556745567457,54.4284681931089],[136.73836738367385,54.41327099767997],[136.7419674196742,54.4014509567908],[136.7527675276753,54.391319493171494],[136.75996759967603,54.38118802955219],[136.7527675276753,54.36599083412324],[136.77076770767707,54.34910506142441],[136.80316803168034,54.33221928872558],[136.8211682116821,54.315333516026755],[136.79956799567998,54.29675916605805],[136.7887678876789,54.29675916605805],[136.77076770767707,54.30013632059783],[136.75636756367567,54.29675916605805],[136.7527675276753,54.283250547899],[136.7635676356764,54.2731190842797],[136.79956799567998,54.25623331158087],[136.81396813968144,54.249479002501346],[136.79956799567998,54.23934753888204],[136.7779677796778,54.22752749799287],[136.7635676356764,54.21570745710369],[136.7635676356764,54.20388741621451],[136.7779677796778,54.19206737532534],[136.79236792367925,54.18362448897591],[136.8067680676807,54.173493025356635],[136.81396813968144,54.159984407197555],[136.8067680676807,54.13465574814933],[136.78516785167852,54.10594993456132],[136.7671676716767,54.08062127551307],[136.78156781567816,54.06373550281424],[136.72036720367203,54.03334111195636],[136.6879668796688,54.013078184717756],[136.6879668796688,53.99281525747918],[136.69156691566917,53.98099521659],[136.68436684366844,53.96748659843092],[136.66276662766631,53.94722367119235],[136.65916659166595,53.93540363030317],[136.65916659166595,53.92696074395374],[136.67716677166771,53.844220457729506],[136.67716677166771,53.820580375951124],[136.68436684366844,53.80876033506195],[136.70236702367026,53.80031744871255],[136.73836738367385,53.790185985093245],[136.7635676356764,53.77498878966429],[136.77436774367743,53.77330021239442],[136.79236792367925,53.776677366934194],[136.8067680676807,53.781743098743846],[136.8211682116821,53.78849740782337],[136.8319683196832,53.79862887144267],[136.83556835568356,53.8138260668716],[136.8427684276843,53.82902326230055],[136.85716857168575,53.8340889941102],[136.8751687516875,53.83577757138008],[136.90036900369006,53.847597612269254],[136.95796957969583,53.85772907588856],[136.96516965169656,53.85604049861868],[136.99036990369905,53.85097476680903],[137.01197011970123,53.852663344078906],[137.0191701917019,53.85097476680903],[137.04797047970482,53.839154725919855],[137.07677076770767,53.820580375951124],[137.10917109171095,53.80876033506195],[137.14157141571417,53.8138260668716],[137.16677166771672,53.83071183957043],[137.18477184771848,53.85097476680903],[137.23517235172352,53.942157939382696],[137.2459724597246,53.96242086662127],[137.26397263972643,53.977618062050226],[137.27837278372783,54.02320964833706],[137.2819728197282,54.029963957416584],[137.28917289172892,54.03334111195636],[137.28917289172892,54.035029689226235],[137.28557285572856,54.04347257557566],[137.2819728197282,54.048538307385314],[137.2711727117271,54.05022688465519],[137.25317253172534,54.05022688465519],[137.18837188371884,54.03840684376601],[137.15597155971562,54.04347257557566],[137.14517145171453,54.07386696643354],[137.1379713797138,54.083998430052844],[137.06237062370627,54.146475789038504],[137.09117091170913,54.154918675387904],[137.17757177571775,54.20726457075426],[137.20637206372066,54.217396034373564],[137.23517235172352,54.22077318891334],[137.26037260372607,54.22752749799287],[137.28557285572856,54.249479002501346],[137.27837278372783,54.25623331158087],[137.29997299973002,54.271430507009825],[137.3251732517325,54.279873393359225],[137.35037350373506,54.283250547899],[137.37557375573755,54.29000485697853],[137.38637386373864,54.29675916605805],[137.389973899739,54.30351347513758],[137.39357393573937,54.30857920694723],[137.41877418774192,54.311956361487006],[137.44037440374404,54.31702209329666],[137.45117451174514,54.31702209329666],[137.47637476374763,54.315333516026755],[137.54837548375485,54.29675916605805],[137.6419764197642,54.29675916605805],[137.6635766357664,54.30520205240748],[137.68517685176852,54.320399247836406],[137.71037710377107,54.33053071145571],[137.73557735577356,54.320399247836406],[137.73917739177392,54.306890629677355],[137.72477724777247,54.29507058878818],[137.68517685176852,54.276496238819476],[137.5879758797588,54.20557599348439],[137.58077580775807,54.187001643515686],[137.55197551975522,54.173493025356635],[137.52677526775267,54.15660725265781],[137.50517505175054,54.1363443254192],[137.48357483574836,54.11270424364085],[137.48357483574836,54.102572780021546],[137.48717487174872,54.092441316402244],[137.48357483574836,54.083998430052844],[137.4655746557466,54.08568700732272],[137.45117451174514,54.089064161862495],[137.44757447574477,54.09581847094202],[137.45117451174514,54.10426135729142],[137.45117451174514,54.1177699754505],[137.4547745477455,54.12114712999025],[137.45837458374587,54.12114712999025],[137.46197461974623,54.124524284530025],[137.45837458374587,54.132967170879425],[137.4547745477455,54.138032902689076],[137.44757447574477,54.14141005722885],[137.43677436774368,54.146475789038504],[137.42237422374222,54.14816436630838],[137.40437404374046,54.146475789038504],[137.3359733597336,54.132967170879425],[137.32157321573214,54.1262128617999],[137.30717307173074,54.1177699754505],[137.30357303573038,54.10932708910107],[137.30357303573038,54.09919562548177],[137.30357303573038,54.08737558459259],[137.2927729277293,54.07724412097332],[137.30357303573038,54.067112657354016],[137.3107731077311,54.056981193734714],[137.32157321573214,54.05022688465519],[137.34317343173433,54.04347257557566],[137.4007740077401,54.04516115284554],[137.41877418774192,54.04347257557566],[137.43677436774368,54.03671826649611],[137.5447754477545,53.972552330240575],[137.56997569975698,53.96579802116105],[137.59157591575917,53.95566655754175],[137.60237602376026,53.95397798027187],[137.60957609576099,53.95566655754175],[137.62757627576275,53.96579802116105],[137.63477634776348,53.96748659843092],[137.65637656376566,53.96579802116105],[137.6959769597696,53.95566655754175],[137.73557735577356,53.950600825732096],[137.75357753577538,53.945535093922445],[137.77157771577714,53.94384651665257],[137.81117811178115,53.95735513481165],[137.8615786157862,53.96748659843092],[137.839978399784,53.950600825732096],[137.80037800378005,53.91345212579469],[137.7751777517775,53.89994350763561],[137.6779767797678,53.87799200312716],[137.64917649176493,53.86448338496808],[137.64557645576457,53.85941765315843],[137.6419764197642,53.852663344078906],[137.6419764197642,53.847597612269254],[137.63837638376384,53.84084330318973],[137.63477634776348,53.83746614864995],[137.6167761677617,53.83577757138008],[137.60957609576099,53.8340889941102],[137.59517595175953,53.8239575304909],[137.59517595175953,53.8138260668716],[137.59517595175953,53.80200602598242],[137.59157591575917,53.79356313963302],[137.56997569975698,53.776677366934194],[137.56637566375667,53.77161163512454],[137.5627756277563,53.754725862425715],[137.5627756277563,53.74459439880641],[137.5627756277563,53.73615151245701],[137.5627756277563,53.727708626107585],[137.55557555575558,53.714200007948534],[137.54117541175412,53.70913427613888],[137.51957519575194,53.705757121599106],[137.50157501575018,53.69900281251958],[137.49077490774908,53.68380561709063],[137.48717487174872,53.670296998931576],[137.47637476374763,53.665231267121925],[137.3791737917379,53.6686084216617],[137.3467734677347,53.665231267121925],[137.31437314373147,53.65341122623275],[137.30357303573038,53.64159118534357],[137.28917289172892,53.62808256718452],[137.27837278372783,53.616262526295344],[137.26397263972643,53.61119679448569],[137.24957249572498,53.61119679448569],[137.23157231572316,53.607819639945916],[137.21717217172176,53.60106533086639],[137.20997209972103,53.58755671270734],[137.2279722797228,53.567293785468735],[137.2675726757268,53.54871943550003],[137.3359733597336,53.5301450855313],[137.37197371973718,53.526767930991554],[137.43677436774368,53.540276549150605],[137.6779767797678,53.55040801276991],[137.91917919179195,53.58586813543744],[138.0487804878049,53.65003407169297],[138.14958149581497,53.67198557620145],[138.1675816758168,53.68042846255088],[138.21798217982183,53.71082285340876],[138.27198271982724,53.73108578064736],[138.28278282782827,53.73784008972689],[138.29718297182973,53.75641443969559],[138.34038340383404,53.86954911677773],[138.34758347583477,53.88981204401634],[138.3655836558366,53.910074971254915],[138.39438394383944,53.92864932122362],[138.46638466384667,53.950600825732096],[138.55998559985602,53.9894381029394],[138.5707857078571,53.999569566558705],[138.57798577985778,53.999569566558705],[138.5851858518585,53.99112668020928],[138.5851858518585,53.977618062050226],[138.56358563585638,53.942157939382696],[138.56718567185675,53.92189501214409],[138.58878588785888,53.879680580397036],[138.58158581585815,53.82902326230055],[138.53838538385384,53.7868088305535],[138.379983799838,53.68380561709063],[138.3547835478355,53.660165535312274],[138.3439834398344,53.634836876264046],[138.34758347583477,53.61795110356522],[138.35118351183513,53.61119679448569],[138.3439834398344,53.607819639945916],[138.27558275582754,53.58417955816756],[138.26118261182614,53.57742524908804],[138.2467824678247,53.56560520819886],[138.24318243182432,53.55885089911931],[138.2467824678247,53.53352224007108],[138.23958239582396,53.52339077645178],[138.21798217982183,53.49975069467342],[138.21438214382147,53.491307808324024],[138.2251822518225,53.4929963855939],[138.26838268382687,53.5217021991819],[138.28278282782827,53.52507935372168],[138.40518405184054,53.509882158292726],[138.43758437584376,53.513259312832474],[138.4735847358474,53.526767930991554],[138.50238502385025,53.54365370369038],[138.52758527585274,53.56391663092896],[138.54918549185493,53.58755671270734],[138.65718657186574,53.73108578064736],[138.69678696786968,53.81889179868125],[138.69678696786968,53.83746614864995],[138.68958689586896,53.85435192134878],[138.68238682386823,53.874614848587385],[138.69678696786968,53.89825493036574],[138.73278732787327,53.93371505303327],[138.76158761587618,53.97592948478035],[138.77238772387727,54.01476676198766],[138.77238772387727,54.056981193734714],[138.7687876878769,54.10426135729142],[138.67518675186756,54.07217838916367],[138.66438664386646,54.07724412097332],[138.67518675186756,54.097507048211895],[138.7147871478715,54.138032902689076],[138.7255872558726,54.159984407197555],[138.7291872918729,54.16673871627708],[138.73278732787327,54.17518160262651],[138.73278732787327,54.18024733443616],[138.73278732787327,54.187001643515686],[138.7255872558726,54.195444529865085],[138.7255872558726,54.20051026167474],[138.7291872918729,54.208953148024165],[138.74358743587436,54.230904652532644],[138.74718747187472,54.24272469342182],[138.73278732787327,54.266364775200174],[138.7039870398704,54.28156197062913],[138.64278642786428,54.29675916605805],[138.70038700387005,54.315333516026755],[138.71838718387187,54.31702209329666],[138.739987399874,54.315333516026755],[138.93438934389343,54.25285615704112],[139.0891908919089,54.22415034345309],[139.16119161191614,54.20557599348439],[139.30159301593017,54.19037879805546],[139.3735937359374,54.195444529865085],[139.64359643596435,54.266364775200174],[139.7047970479705,54.29675916605805],[139.72999729997304,54.30351347513758],[139.76599765997662,54.30351347513758],[139.79839798397984,54.29675916605805],[139.8019980199802,54.28662770243875],[139.79839798397984,54.26805335247005],[139.79479794797948,54.23934753888204],[139.8019980199802,54.22583892072299],[139.81639816398166,54.21570745710369],[139.87399873998743,54.18869022078556],[139.88479884798846,54.187001643515686],[139.8919989199892,54.18869022078556],[139.909999099991,54.19882168440486],[139.91719917199174,54.20051026167474],[139.909999099991,54.18869022078556],[139.9207992079921,54.17518160262651],[140,54.12283570726015],[140.01800018000182,54.1177699754505],[140.0540005400054,54.11439282091072],[140.2412024120241,54.056981193734714],[140.24480244802447,54.04516115284554],[140.23760237602374,54.035029689226235],[140.23040230402307,54.02489822560693],[140.2268022680227,54.013078184717756],[140.23400234002344,54.00125814382858],[140.25560255602556,53.9894381029394],[140.2808028080281,53.9793066393201],[140.29880298802988,53.97424090751048],[140.32040320403206,53.97424090751048],[140.33120331203315,53.9708637529707],[140.33120331203315,53.96242086662127],[140.32400324003243,53.94722367119235],[140.30240302403024,53.93033789849352],[140.27360273602739,53.91176354852482],[140.2520025200252,53.88981204401634],[140.25560255602556,53.86786053950786],[140.35640356403565,53.790185985093245],[140.37440374403747,53.78343167601372],[140.41760417604178,53.77161163512454],[140.51120511205113,53.73446293518711],[140.52200522005222,53.727708626107585],[140.52920529205295,53.72095431702806],[140.5328053280533,53.71251143067863],[140.53640536405368,53.70913427613888],[140.5328053280533,53.705757121599106],[140.53640536405368,53.69055992617018],[140.53640536405368,53.68211703982075],[140.54000540005399,53.67198557620145],[140.55080550805508,53.660165535312274],[140.579605796058,53.6399026080737],[140.65160651606516,53.61963968083509],[140.7128071280713,53.580802403627786],[141.02601026010262,53.491307808324024],[141.0836108361084,53.482864921974596],[141.0980109801098,53.474422035625196],[141.04761047610475,53.477799190164944],[140.99360993609935,53.49468496286377],[140.97560975609758,53.49468496286377],[140.95040950409503,53.48961923105412],[140.93240932409327,53.47611061289507],[140.939609396094,53.45415910838659],[140.9288092880929,53.44402764476729],[140.93240932409327,53.43558475841789],[140.9432094320943,53.43220760387811],[140.95760957609576,53.43727333568776],[140.97200972009722,53.44909337657694],[140.9828098280983,53.45247053111672],[140.99360993609935,53.44909337657694],[141.0080100801008,53.44065049022754],[141.0188101881019,53.42883044933836],[141.02601026010262,53.41869898571906],[141.03681036810372,53.41025609936963],[141.09081090810912,53.40350179029011],[141.12321123211234,53.393370326670805],[141.1160111601116,53.3747959767021],[141.1376113761138,53.36128735854305],[141.17001170011702,53.35115589492375],[141.1916119161192,53.34102443130445],[141.20961209612096,53.325827235875494],[141.22761227612278,53.31569577225622],[141.25281252812528,53.31063004044657],[141.3788137881379,53.308941463176694],[141.40761407614076,53.30387573136704],[141.41121411214112,53.29374426774774],[141.4040140401404,53.27854707231879],[141.39681396813967,53.254906990540434],[141.37521375213754,53.23970979511148],[141.36081360813608,53.229578331492206],[141.35721357213572,53.22113544514278],[141.3680136801368,53.21269255879338],[141.38601386013863,53.21606971333313],[141.40041400414003,53.22282402241265],[141.41121411214112,53.2278897542223],[141.42561425614258,53.217758290603],[141.41841418414185,53.205938249713824],[141.41121411214112,53.19580678609455],[141.4148141481415,53.183986745205374],[141.42561425614258,53.175543858855946],[141.42921429214294,53.167100972506546],[141.4328143281433,53.15865808615712],[141.4328143281433,53.148526622537815],[141.42561425614258,53.14514946799807],[141.38601386013863,53.13164084983899],[141.37521375213754,53.12319796348959],[141.350013500135,53.09111499536181],[141.36441364413645,53.086049263552155],[141.3680136801368,53.07929495447263],[141.36441364413645,53.07422922266298],[141.350013500135,53.07085206812323],[141.33201332013323,53.072540645393104],[141.29961299612995,53.08773784082206],[141.2816128161282,53.09111499536181],[141.25281252812528,53.08773784082206],[141.23121231212315,53.07591779993288],[141.20961209612096,53.0624091817738],[141.18801188011884,53.050589140884625],[141.18801188011884,53.042146254535226],[141.20241202412024,53.037080522725574],[141.22401224012242,53.03539194545567],[141.260012600126,53.03539194545567],[141.25281252812528,53.023571904566495],[141.22041220412206,53.001620400058016],[141.18801188011884,52.988111781898965],[141.17001170011702,52.983046050089314],[141.1520115201152,52.983046050089314],[141.13041130411307,52.988111781898965],[140.9972099720997,53.0438348318051],[140.9828098280983,53.0539662954244],[140.9648096480965,53.0624091817738],[140.939609396094,53.06916349085333],[140.89640896408963,53.077606377202756],[140.8856088560886,53.08267210901241],[140.87120871208714,53.11137792260041],[140.86040860408605,53.11813223167994],[140.7776077760778,53.12826369529924],[140.7308073080731,53.126575118029336],[140.70560705607056,53.11137792260041],[140.77400774007742,53.08942641809193],[140.82800828008283,53.064097759043676],[140.86040860408605,53.045523409074974],[140.8748087480875,53.03876909999545],[140.93240932409327,53.03201479091592],[140.94680946809467,53.023571904566495],[140.94680946809467,53.001620400058016],[140.939609396094,52.99486609097849],[140.94680946809467,52.98473462735919],[140.9540095400954,52.96278312285074],[140.9648096480965,52.94420877288201],[140.96840968409686,52.94083161834226],[140.97560975609758,52.93745446380248],[140.9828098280983,52.930700154722956],[140.99360993609935,52.925634422913305],[141.0080100801008,52.925634422913305],[141.03321033210335,52.92732300018318],[141.0440104401044,52.92394584564343],[141.05121051210511,52.91888011383378],[141.05841058410584,52.912125804754254],[141.06921069210694,52.8969286093253],[141.07641076410766,52.890174300245775],[141.0836108361084,52.88341999116625],[141.0980109801098,52.8783542593566],[141.14841148411483,52.87159995027707],[141.15921159211592,52.86991137300717],[141.17721177211774,52.85640275484812],[141.18801188011884,52.85133702303847],[141.19881198811987,52.849648445768594],[141.260012600126,52.85302560030834],[141.260012600126,52.84627129122882],[141.21321213212133,52.797302550402236],[141.20241202412024,52.77703962316363],[141.20961209612096,52.7685967368142],[141.22761227612278,52.76353100500458],[141.2492124921249,52.7500223868455],[141.2708127081271,52.734825191416576],[141.2816128161282,52.721316573257496],[141.28881288812892,52.70105364601892],[141.29241292412928,52.68416787332009],[141.29961299612995,52.67065925516101],[141.31761317613177,52.658839214271836],[141.30681306813068,52.648707750652534],[141.29961299612995,52.64195344157301],[141.28881288812892,52.618313359794655],[141.28521285212855,52.6031161643657],[141.28521285212855,52.591296123476525],[141.2816128161282,52.57947608258735],[141.2708127081271,52.5659674644283],[141.2348123481235,52.52713018722099],[141.21321213212133,52.50855583725229],[141.13401134011343,52.46971856004498],[141.1160111601116,52.44945563280638],[141.1268112681127,52.422438396488275],[141.16641166411665,52.365026769312266],[141.18801188011884,52.34982957388331],[141.2348123481235,52.33632095572423],[141.260012600126,52.324500914835056],[141.26721267212673,52.305926564866354],[141.27801278012782,52.29410652397718],[141.350013500135,52.26877786492895],[141.36081360813608,52.25189209223012],[141.3680136801368,52.24682636042047],[141.389613896139,52.23162916499152],[141.40041400414003,52.22487485591199],[141.4148141481415,52.221497701372215],[141.46521465214653,52.213054815022815],[141.47961479614798,52.213054815022815],[141.51921519215193,52.21980912410234],[141.53001530015302,52.21980912410234],[141.5336153361534,52.221497701372215],[141.54081540815412,52.221497701372215],[141.54441544415448,52.218120546832466],[141.53721537215375,52.20461192867339],[141.53721537215375,52.199546196863736],[141.54081540815412,52.19448046505411],[141.54441544415448,52.19279188778421],[141.54441544415448,52.18772615597456],[141.5480154801548,52.177594692355285],[141.55161551615515,52.16577465146608],[141.55521555215552,52.16239749692633],[141.55161551615515,52.150577456037155],[141.53721537215375,52.1539546105769],[141.51561515615157,52.172528960545634],[141.5012150121501,52.17421753781551],[141.49401494014944,52.172528960545634],[141.47241472414726,52.159020342386555],[141.4040140401404,52.14044599241785],[141.389613896139,52.128625951528676],[141.3788137881379,52.11849448790937],[141.35361353613536,52.1066744470202],[141.34281342813432,52.093165828861146],[141.36441364413645,52.08303436524184],[141.3248132481325,52.05432855165384],[141.31041310413104,52.03744277895501],[141.30321303213032,52.02224558352606],[141.3140131401314,52.003671233557355],[141.3356133561336,51.99353976993805],[141.36081360813608,51.98678546085853],[141.38241382413827,51.976653997239225],[141.41841418414185,51.954702492730746],[141.42921429214294,51.941193874571695],[141.42561425614258,51.92599667914274],[141.40761407614076,51.91755379279334],[141.35361353613536,51.909110906443914],[141.34281342813432,51.90235659736439],[141.33201332013323,51.89053655647521],[141.2816128161282,51.88040509285591],[141.260012600126,51.856765011077556],[141.19881198811987,51.8229934656799],[141.1916119161192,51.80610769298107],[141.17721177211774,51.76895899304367],[141.17001170011702,51.75038464307494],[141.13401134011343,51.72167882948693],[141.12321123211234,51.704793056788105],[141.13041130411307,51.69297301589893],[141.10881108811088,51.67946439773988],[140.98640986409868,51.65920147050127],[140.93240932409327,51.628807079643394],[140.91440914409145,51.62374134783374],[140.90720907209072,51.61529846148434],[140.90720907209072,51.59672411151561],[140.9108091080911,51.56295256611796],[140.90000900009,51.49372089805277],[140.89640896408963,51.4920323207829],[140.89280892808927,51.486966588973246],[140.89280892808927,51.481900857163595],[140.88920889208896,51.48021227989372],[140.85320853208532,51.48021227989372],[140.8460084600846,51.48358943443347],[140.83520835208355,51.48358943443347],[140.82440824408246,51.48021227989372],[140.80280802808028,51.46670366173467],[140.79920799207991,51.454883620845465],[140.80640806408064,51.43968642541654],[140.810008100081,51.42280065271771],[140.81720817208173,51.416046343638186],[140.84240842408423,51.41773492090806],[140.87840878408787,51.432932116337014],[140.89640896408963,51.42955496179724],[140.89280892808927,51.416046343638186],[140.8856088560886,51.40084914820923],[140.87840878408787,51.38734053005018],[140.8748087480875,51.37214333462123],[140.8640086400864,51.35863471646218],[140.8460084600846,51.35019183011275],[140.82800828008283,51.34343752103322],[140.74880748807487,51.34174894376335],[140.70560705607056,51.334994634683795],[140.6876068760688,51.313043130175345],[140.69480694806947,51.28264873931744],[140.7020070200702,51.267451543888484],[140.70920709207093,51.259008657539084],[140.7128071280713,51.26069723480896],[140.70560705607056,51.24550003938003],[140.6660066600666,51.23536857576073],[140.6588065880659,51.223548534871554],[140.66240662406625,51.2184828030619],[140.67320673206734,51.2083513394426],[140.68040680406807,51.1999084530932],[140.68040680406807,51.1897769894739],[140.6660066600666,51.14080824864729],[140.6660066600666,51.13067678502799],[140.69480694806947,51.11041385778941],[140.70560705607056,51.09183950782071],[140.70920709207093,51.07326515785198],[140.70560705607056,51.03105072610492],[140.7020070200702,51.022607839755494],[140.67320673206734,51.014164953406095],[140.6660066600666,51.00741064432657],[140.6660066600666,50.99727918070727],[140.6768067680677,50.97701625346866],[140.68040680406807,50.96688478984939],[140.67320673206734,50.94831043988066],[140.65520655206552,50.93817897626138],[140.6336063360634,50.93311324445173],[140.60840608406085,50.93142466718183],[140.60120601206012,50.92804751264208],[140.54360543605435,50.8773901945456],[140.52920529205295,50.862192999116644],[140.52920529205295,50.85543869003712],[140.5472054720547,50.835175762798514],[140.5472054720547,50.826732876449114],[140.54360543605435,50.81660141282981],[140.54360543605435,50.804781371940635],[140.5328053280533,50.78958417651168],[140.49680496804967,50.76087836292368],[140.48240482404827,50.747369744764626],[140.47520475204755,50.73723828114532],[140.47520475204755,50.73217254933567],[140.4788047880479,50.72710681752602],[140.47160471604718,50.71697535390675],[140.46440464404645,50.71022104482719],[140.46440464404645,50.69840100393802],[140.46440464404645,50.68995811758862],[140.4788047880479,50.684892385778966],[140.48600486004864,50.676449499429566],[140.5148051480515,50.617349294983654],[140.49680496804967,50.617349294983654],[140.48240482404827,50.60721783136435],[140.46800468004682,50.5751348632366],[140.44280442804427,50.54474047237869],[140.44280442804427,50.52954327694977],[140.45720457204573,50.510968926981036],[140.50760507605077,50.46031160888458],[140.5148051480515,50.44511441345563],[140.5148051480515,50.434982949836325],[140.51120511205113,50.426540063486925],[140.51120511205113,50.41978575440737],[140.52200522005222,50.399522827168795],[140.5256052560526,50.37588274539044],[140.5472054720547,50.34379977726266],[140.54000540005399,50.33029115910361],[140.5256052560526,50.31678254094453],[140.5148051480515,50.29483103643605],[140.51840518405186,50.279633841007126],[140.52920529205295,50.25768233649865],[140.53640536405368,50.23573083199017],[140.5328053280533,50.21546790475156],[140.52200522005222,50.19520497751299],[140.51840518405186,50.17325347300451],[140.52200522005222,50.15130196849603],[140.53640536405368,50.13103904125745],[140.55080550805508,50.114153268558624],[140.58680586805872,50.08207030043084],[140.60120601206012,50.07531599135132],[140.6120061200612,50.078693145891066],[140.63000630006303,50.092201764050145],[140.63720637206376,50.095578918589894],[140.67320673206734,50.09895607312967],[140.6876068760688,50.10233322766945],[140.6912069120691,50.08038172316097],[140.66240662406625,50.05843021865249],[140.59040590405903,50.02803582779461],[140.5472054720547,50.00101859147648],[140.52920529205295,49.99257570512705],[140.4932049320493,49.98413281877765],[140.48240482404827,49.975689932428224],[140.47160471604718,49.9588041597294],[140.48240482404827,49.95204985064987],[140.45360453604536,49.92503261433174],[140.44280442804427,49.90814684163291],[140.44640446404463,49.891261068934085],[140.4248042480425,49.882818182584685],[140.4140041400414,49.87437529623526],[140.4140041400414,49.86255525534608],[140.45720457204573,49.80514362817007],[140.47160471604718,49.7950121645508],[140.4932049320493,49.788257855471244],[140.51840518405186,49.784880700931495],[140.53640536405368,49.77812639185197],[140.54360543605435,49.75617488734349],[140.53640536405368,49.744354846454314],[140.50760507605077,49.69200895108793],[140.51120511205113,49.686943219278305],[140.51840518405186,49.676811755659],[140.52200522005222,49.67174602384935],[140.5328053280533,49.63459732391192],[140.54000540005399,49.61771155121309],[140.55080550805508,49.59913720124439],[140.56160561605617,49.575497119466036],[140.55080550805508,49.55523419222743],[140.52200522005222,49.526528378639426],[140.51840518405186,49.51639691502015],[140.51840518405186,49.50288829686107],[140.51840518405186,49.491068255971896],[140.51120511205113,49.486002524162245],[140.50040500405004,49.4826253696225],[140.4932049320493,49.472493906003194],[140.4608046080461,49.43872236060554],[140.45360453604536,49.42014801063684],[140.44280442804427,49.3644249607307],[140.43200432004323,49.30532475628479],[140.4356043560436,49.295193292665516],[140.35280352803528,49.295193292665516],[140.33480334803352,49.28675040631609],[140.33840338403382,49.27830751996669],[140.34920349203492,49.27324178815704],[140.36360363603637,49.27324178815704],[140.38520385203856,49.28168467450644],[140.38880388803886,49.27493036542691],[140.38880388803886,49.26479890180761],[140.3816038160382,49.25973316999796],[140.37800378003783,49.25635601545821],[140.34920349203492,49.23947024275938],[140.34560345603455,49.22933877914008],[140.3420034200342,49.21920731552078],[140.34560345603455,49.2073872746316],[140.34920349203492,49.1989443882822],[140.35640356403565,49.20232154282195],[140.36360363603637,49.2073872746316],[140.3708037080371,49.21245300644125],[140.3708037080371,49.209075851901474],[140.37440374403747,49.2073872746316],[140.37800378003783,49.205698697361726],[140.36360363603637,49.19050150193277],[140.360003600036,49.173615729233944],[140.36360363603637,49.15841853380502],[140.37800378003783,49.143221338376065],[140.36360363603637,49.13308987475676],[140.360003600036,49.116204102057935],[140.35640356403565,49.09594117481936],[140.34560345603455,49.09087544300971],[140.33120331203315,49.08749828846993],[140.2952029520295,49.08749828846993],[140.2952029520295,49.08243255666028],[140.33480334803352,49.067235361231354],[140.3420034200342,49.0621696294217],[140.3420034200342,49.04697243399275],[140.33840338403382,49.040218124913224],[140.29160291602915,49.02839808402405],[140.2412024120241,49.02164377494452],[140.21960219602198,49.013200888595094],[140.23400234002344,49.00813515678544],[140.2520025200252,49.01151231132522],[140.2628026280263,49.01151231132522],[140.27360273602739,48.99969227043604],[140.26640266402666,48.99462653862639],[140.25560255602556,48.986183652276964],[140.24840248402484,48.97605218865769],[140.25560255602556,48.97267503411791],[140.27000270002702,48.97436361138779],[140.27720277202775,48.977740765927564],[140.28440284402848,48.97605218865769],[140.2808028080281,48.96592072503839],[140.29160291602915,48.964232147768485],[140.30240302403024,48.96592072503839],[140.2952029520295,48.98111792046731],[140.3060030600306,48.996315115896266],[140.32040320403206,49.00813515678544],[140.34560345603455,49.01657804313487],[140.35280352803528,49.01995519767462],[140.360003600036,49.02164377494452],[140.36720367203674,49.01657804313487],[140.36720367203674,49.013200888595094],[140.3708037080371,49.00306942497579],[140.3708037080371,48.99969227043604],[140.3816038160382,48.99293796135649],[140.38880388803886,48.991249384086615],[140.39960399603996,48.99293796135649],[140.37800378003783,48.95916641595886],[140.35640356403565,48.93046060237083],[140.35280352803528,48.91019767513225],[140.32400324003243,48.89162332516355],[140.26640266402666,48.862917511575546],[140.25560255602556,48.84772031614659],[140.24840248402484,48.83758885252729],[140.24840248402484,48.82745738890799],[140.24480244802447,48.81394877074894],[140.2412024120241,48.80212872985976],[140.22320223202235,48.78017722535128],[140.21240212402125,48.76666860719223],[140.20160201602016,48.7396513708741],[140.19440194401943,48.70925698001622],[140.1872018720187,48.65015677557031],[140.19440194401943,48.60456518928348],[140.19440194401943,48.580925107505124],[140.1728017280173,48.56741648934607],[140.17640176401767,48.55728502572677],[140.19080190801907,48.53871067575807],[140.19440194401943,48.53026778940864],[140.19080190801907,48.50662770763029],[140.1872018720187,48.48636478039168],[140.17640176401767,48.461036121343454],[140.16560165601658,48.44921608045428],[140.12240122401226,48.43233030775545],[140.090000900009,48.407001648707194],[140.07920079200795,48.403624494167445],[140.07200072000722,48.398558762357794],[140.06120061200613,48.37491868057944],[140.05760057600577,48.36647579423001],[140.0540005400054,48.35634433061074],[140.0432004320043,48.336081403372134],[140.03600036000358,48.327638517022706],[140.02520025200255,48.32594993975283],[139.99279992799927,48.32088420794318],[139.94959949599496,48.305687012514255],[139.7767977679777,48.19086375816221],[139.76599765997662,48.18748660362246],[139.73359733597334,48.16384652184411],[139.72639726397267,48.15540363549468],[139.71199711997122,48.13007497644645],[139.6831968319683,48.096303431048796],[139.65079650796508,48.069286194730665],[139.5607956079561,48.00849741301488],[139.51759517595178,47.971348713077475],[139.5067950679507,47.96121724945817],[139.4959949599496,47.95446294037865],[139.42399423994243,47.92406854952077],[139.39159391593915,47.903805622282164],[139.26199261992622,47.78729379066024],[139.24759247592476,47.76703086342167],[139.23679236792367,47.73832504983366],[139.2187921879219,47.71468496805531],[139.21159211592118,47.70455350443601],[139.21159211592118,47.69273346354683],[139.2079920799208,47.67415911357813],[139.20439204392045,47.664027649958825],[139.189991899919,47.64883045452987],[139.16839168391687,47.63532183637082],[139.15039150391505,47.62181321821174],[139.14319143191432,47.59817313643339],[139.13959139591395,47.59310740462374],[139.11799117991183,47.56777874557551],[139.09639096390964,47.534007200177854],[139.08199081990819,47.512055695669375],[139.06399063990642,47.49685850024042],[139.05319053190533,47.47828415027172],[139.04959049590497,47.454644068493366],[139.04959049590497,47.43438114125476],[139.0459904599046,47.41749536855593],[139.03879038790387,47.400609595857105],[139.02799027990284,47.38878955496793],[139.0207902079021,47.38372382315828],[138.99918999189993,47.3719037822691],[138.9919899198992,47.3634608959197],[138.98478984789847,47.351640855030524],[138.98478984789847,47.34150939141122],[138.9811898118981,47.33306650506182],[138.97398973989743,47.32293504144252],[138.97038970389707,47.31786930963287],[138.95958959589598,47.31280357782322],[138.91638916389167,47.31449215509309],[138.90558905589057,47.31280357782322],[138.89838898388984,47.30942642328344],[138.89118891188912,47.30436069147382],[138.6607866078661,47.10510857362763],[138.6175861758618,47.08315706911918],[138.5959859598596,47.06795987369023],[138.56358563585638,47.02912259648292],[138.53478534785347,46.986908164735866],[138.51318513185134,46.94131657844903],[138.4987849878499,46.8957249921622],[138.50238502385025,46.875462064923596],[138.50238502385025,46.865330601304294],[138.49158491584916,46.861953446764545],[138.48438484384843,46.85857629222477],[138.4087840878409,46.780901737810154],[138.3979839798398,46.758950233301704],[138.3655836558366,46.688029987966615],[138.35838358383586,46.67620994707744],[138.34758347583477,46.66438990618826],[138.34758347583477,46.63737266987013],[138.3547835478355,46.595158238123076],[138.3439834398344,46.549566651836244],[138.31158311583118,46.522549415518114],[138.23238232382323,46.48540071558068],[138.20358203582038,46.4550063247228],[138.1135811358114,46.2895257522743],[138.10638106381066,46.24562274325734],[138.09918099180993,46.228736970558515],[138.03438034380343,46.15612814795358],[138.00918009180094,46.135865220714976],[137.98757987579876,46.127422334365576],[137.98037980379803,46.125733757095674],[137.96597965979663,46.12066802528602],[137.95157951579517,46.1139137162065],[137.94437944379445,46.10715940712697],[137.94077940779408,46.100405098047446],[137.94077940779408,46.081830748078744],[137.93717937179372,46.073387861729316],[137.92277922779226,46.06156782084014],[137.8831788317883,46.03455058452201],[137.86877868778691,46.00922192547378],[137.78237782377823,45.94674456648812],[137.76797767977683,45.92985879378929],[137.75357753577538,45.89608724839164],[137.70317703177034,45.853872816644554],[137.68517685176852,45.815035539437275],[137.67077670776706,45.79477261219867],[137.63837638376384,45.77957541676972],[137.5231752317523,45.690080821465955],[137.49437494374945,45.67826078057678],[137.39717397173973,45.62422630794052],[137.3359733597336,45.570191835304286],[137.2675726757268,45.485762971810146],[137.2567725677257,45.47732008546072],[137.23517235172352,45.47225435365107],[137.22077220772206,45.46043431276189],[137.14517145171453,45.37431687199788],[137.1271712717127,45.36756256291835],[137.10197101971022,45.364185408378574],[137.0839708397084,45.355742522029175],[136.92556925569255,45.25442788583621],[136.82476824768247,45.203770567739724],[136.81036810368107,45.19363910412042],[136.79956799567998,45.17506475415172],[136.7887678876789,45.12778459059501],[136.78156781567816,45.10752166335641],[136.75996759967603,45.08725873611783],[136.71676716767166,45.06699580887923],[136.70236702367026,45.056864345259925],[136.6987669876699,45.05179861345027],[136.69156691566917,45.041667149831],[136.69156691566917,45.03828999529122],[136.68436684366844,45.03828999529122],[136.669966699667,45.0399785725611],[136.66276662766631,45.03828999529122],[136.6555665556656,45.03322426348157],[136.57636576365763,44.95217255452721],[136.57276572765727,44.950483977257335],[136.56556565565654,44.950483977257335],[136.55836558365587,44.94879539998743],[136.5547655476555,44.94372966817778],[136.5547655476555,44.93866393636813],[136.5547655476555,44.931909627288604],[136.55836558365587,44.928532472748856],[136.56196561965623,44.928532472748856],[136.55836558365587,44.91840100912955],[136.55836558365587,44.901515236430726],[136.5547655476555,44.8947609273512],[136.5151651516515,44.874498000112595],[136.5115651156512,44.869432268302944],[136.49716497164974,44.84579218652459],[136.489964899649,44.84072645471494],[136.47916479164792,44.839037877445065],[136.46836468364683,44.83734930017519],[136.4575645756458,44.83228356836554],[136.45036450364506,44.82721783655589],[136.4467644676447,44.81877495020646],[136.44316443164433,44.785003404808805],[136.4251642516425,44.77318336391963],[136.40716407164075,44.776560518459405],[136.38916389163893,44.78669198207871],[136.36396363963638,44.79175771388836],[136.35316353163535,44.78838055934858],[136.34956349563498,44.77993767299918],[136.34596345963462,44.76811763210998],[136.34236342363425,44.7579861684907],[136.33516335163353,44.75292043668105],[136.3279632796328,44.749543282141275],[136.3171631716317,44.746166127601526],[136.30636306363067,44.744477550331624],[136.31356313563134,44.73265750944245],[136.32076320763207,44.72421462309305],[136.33156331563316,44.719148891283396],[136.33516335163353,44.714083159473745],[136.3279632796328,44.70732885039422],[136.3171631716317,44.70226311858457],[136.30636306363067,44.69719738677492],[136.2739627396274,44.692131654965266],[136.259562595626,44.683688768615866],[136.23436234362345,44.651605800488085],[136.22716227162272,44.63134287324948],[136.23436234362345,44.58575128696265],[136.22716227162272,44.57055409153372],[136.219962199622,44.56548835972407],[136.20916209162095,44.5637997824542],[136.20196201962023,44.56042262791442],[136.1947619476195,44.53847112340594],[136.18756187561877,44.52158535070711],[136.1839618396184,44.51483104162759],[136.16596165961658,44.496256691658886],[136.13356133561336,44.48105949622993],[136.12276122761227,44.47599376442028],[136.04716047160474,44.45066510537205],[136.03276032760328,44.45066510537205],[136.0075600756008,44.45741941445158],[135.9967599675997,44.455730837181704],[135.99315993159934,44.45235368264193],[135.98955989559897,44.44053364175275],[135.9859598595986,44.4354679099431],[135.94995949959502,44.420270714514146],[135.9067590675907,44.41013925089487],[135.8887588875889,44.401696364545444],[135.88155881558816,44.393253478196044],[135.87075870758707,44.38143343730684],[135.86355863558634,44.371301973687565],[135.83835838358385,44.36285908733814],[135.8347583475835,44.35103904644896],[135.84195841958422,44.32908754194048],[135.8347583475835,44.31051319197178],[135.82035820358203,44.290250264733174],[135.7879578795788,44.25816729660542],[135.76635766357663,44.24972441025599],[135.74115741157414,44.24465867844634],[135.71955719557195,44.23621579209694],[135.71235712357122,44.22101859666799],[135.70515705157055,44.19906709215951],[135.68715687156873,44.18724705127033],[135.6691566915669,44.17880416492093],[135.6547565475655,44.16867270130163],[135.65115651156515,44.156852660412454],[135.65115651156515,44.14503261952328],[135.65115651156515,44.134901155903975],[135.65835658356582,44.12476969228467],[135.65835658356582,44.11632680593527],[135.6547565475655,44.10619534231597],[135.6367563675637,44.08930956961714],[135.62955629556296,44.06904664237857],[135.62955629556296,44.05216086967974],[135.62235622356224,44.03865225152066],[135.6007560075601,44.02514363336161],[135.5611556115561,44.015012169742306],[135.53955539555398,44.00319212885313],[135.53235532355325,43.987994933424176],[135.5359553595536,43.9677320061856],[135.53235532355325,43.96266627437595],[135.52875528755288,43.95928911983617],[135.52515525155252,43.9576005425663],[135.5179551795518,43.95591196529642],[135.51075510755106,43.92214041989877],[135.5071550715507,43.93227188351804],[135.4927549275493,43.944091924407246],[135.47835478354784,43.952534810756646],[135.4639546395464,43.94915765621687],[135.46035460354602,43.93733761532769],[135.46755467554675,43.925517574438516],[135.47115471154711,43.91032037900959],[135.4639546395464,43.89512318358064],[135.47835478354784,43.89343460631076],[135.48555485554857,43.89512318358064],[135.48555485554857,43.88668029723121],[135.4819548195482,43.87823741088181],[135.48915489154894,43.87823741088181],[135.5179551795518,43.88668029723121],[135.5179551795518,43.87992598815168],[135.48915489154894,43.83264582459498],[135.47475474754748,43.82589151551545],[135.47115471154711,43.81744862916602],[135.4279542795428,43.778611351958716],[135.4279542795428,43.77185704287919],[135.42435424354244,43.76341415652979],[135.4171541715417,43.75834842472014],[135.38835388353885,43.75497127018036],[135.38115381153813,43.74821696110084],[135.3739537395374,43.738085497481535],[135.36675366753667,43.729642611132135],[135.35955359553594,43.72288830205261],[135.35595355953558,43.71951114751283],[135.33795337953381,43.716133992973056],[135.3307533075331,43.716133992973056],[135.32355323553236,43.716133992973056],[135.31635316353163,43.71275683843331],[135.3091530915309,43.70600252935378],[135.2839528395284,43.6924939111947],[135.27675276752768,43.689116756654954],[135.25875258752586,43.694182488464605],[135.25515255152555,43.70431395208388],[135.25875258752586,43.716133992973056],[135.25875258752586,43.72288830205261],[135.24795247952483,43.729642611132135],[135.23715237152373,43.734708342941786],[135.22275222752228,43.733019765671884],[135.2191521915219,43.71951114751283],[135.2119521195212,43.71444541570318],[135.18315183151833,43.71106826116343],[135.18315183151833,43.702625374814005],[135.1975519755198,43.69587106573448],[135.20835208352082,43.69587106573448],[135.22275222752228,43.6924939111947],[135.229952299523,43.68236244757543],[135.22635226352264,43.68236244757543],[135.22635226352264,43.66885382941635],[135.22275222752228,43.645213747637996],[135.2191521915219,43.635082284018694],[135.2119521195212,43.63001655220904],[135.20115201152015,43.62832797493917],[135.1975519755198,43.62326224312952],[135.1759517595176,43.59286785227164],[135.17235172351724,43.582736388652336],[135.16875168751687,43.56585061595351],[135.16155161551615,43.55909630687398],[135.15435154351547,43.550653420524554],[135.14355143551438,43.5455876887149],[135.13635136351365,43.53883337963538],[135.13635136351365,43.528701916016104],[135.13635136351365,43.52532476147633],[135.13995139951402,43.52363618420645],[135.13995139951402,43.520259029666676],[135.14355143551438,43.51350472058715],[135.13995139951402,43.5084389887775],[135.13635136351365,43.50506183423772],[135.12915129151293,43.50337325696785],[135.12915129151293,43.49999610242807],[135.11475114751147,43.49999610242807],[135.0571505715057,43.488176061538894],[134.97434974349744,43.45947024795089],[134.96354963549635,43.452715938871364],[134.95634956349562,43.435830166172536],[134.93834938349386,43.42738727982314],[134.89514895148955,43.41556723893396],[134.87354873548736,43.40543577531466],[134.8339483394834,43.3801071162664],[134.76914769147692,43.31594118001087],[134.75114751147515,43.305809716391565],[134.72954729547297,43.31256402547112],[134.70434704347042,43.30412113912169],[134.67914679146793,43.28892394369274],[134.66474664746647,43.27372674826381],[134.65754657546574,43.26697243918426],[134.63234632346325,43.261906707374635],[134.62154621546216,43.256840975564984],[134.61434614346143,43.25177524375533],[134.59634596345967,43.23657804832638],[134.58554585545858,43.229823739246854],[134.56034560345603,43.234889471056505],[134.53154531545317,43.21969227562755],[134.47754477544777,43.18254357569015],[134.4307443074431,43.15721491664189],[134.4091440914409,43.15214918483224],[134.3767437674377,43.13864056667319],[134.35874358743587,43.12513194851414],[134.34794347943483,43.12175479397436],[134.33714337143374,43.12006621670449],[134.32274322743228,43.12682052578401],[134.31554315543156,43.123443371244235],[134.30474304743046,43.11331190762493],[134.25434254342542,43.09473755765623],[134.23994239942402,43.09304898038636],[134.22554225542257,43.09136040311648],[134.20754207542075,43.08629467130683],[134.19314193141935,43.079540362227306],[134.18234182341826,43.07278605314775],[134.1787417874179,43.066031744068226],[134.17514175141753,43.05421170317905],[134.17154171541716,43.047457394099524],[134.16434164341644,43.04408023955975],[134.14634146341467,43.04070308502],[134.13914139141394,43.03732593048022],[134.12834128341285,43.02381731232117],[134.12114121141212,43.00862011689222],[134.10674106741067,42.995111498733166],[134.07074070740708,42.984980035113864],[134.0491404914049,42.97315999422469],[133.9267392673927,42.88197682165102],[133.91233912339123,42.88028824438112],[133.89793897938978,42.88535397619077],[133.8727387273873,42.89886259434985],[133.86553865538656,42.900551171619725],[133.8511385113851,42.900551171619725],[133.84033840338407,42.89717401707995],[133.81873818738188,42.8836653989209],[133.7935379353794,42.87691108984137],[133.7287372873729,42.84482812171359],[133.72513725137253,42.824565194475014],[133.7179371793718,42.816122308125586],[133.7071370713707,42.82287661720511],[133.67833678336785,42.84820527625337],[133.67113671136713,42.85327100806302],[133.64233642336427,42.85327100806302],[133.63513635136354,42.85327100806302],[133.61353613536136,42.84651669898349],[133.60633606336063,42.84651669898349],[133.59193591935923,42.85327100806302],[133.58833588335887,42.843139544443716],[133.5847358473585,42.83638523536419],[133.57753577535777,42.83131950355454],[133.5739357393574,42.82625377174489],[133.55233552335523,42.81949946266536],[133.5451354513545,42.81949946266536],[133.52353523535237,42.82625377174489],[133.51273512735128,42.82118803993524],[133.5091350913509,42.816122308125586],[133.50553505535055,42.811056576315934],[133.49833498334982,42.80430226723641],[133.48753487534879,42.79923653542676],[133.46953469534697,42.79248222634723],[133.44433444334442,42.77897360818818],[133.41913419134193,42.77221929910864],[133.3759337593376,42.76377641275923],[133.31833318333184,42.765464990029116],[133.30033300333002,42.76377641275923],[133.23913239132395,42.74351348552064],[133.22113221132213,42.73675917644111],[133.19233192331922,42.70636478558322],[133.17793177931782,42.69454474469404],[133.15633156331563,42.6877904356145],[133.06273062730628,42.6877904356145],[133.0375303753038,42.691167590154265],[133.02313023130233,42.69961047650368],[133.01233012330124,42.70974194012298],[132.99792997929978,42.72325055828205],[133.00873008730088,42.7283162900917],[133.0267302673027,42.740136330980874],[133.0375303753038,42.74351348552064],[133.0519305193052,42.74182490825075],[133.06633066330664,42.73675917644111],[133.07713077130774,42.738447753710986],[133.07713077130774,42.75026779460016],[133.06633066330664,42.76208783548934],[133.04473044730446,42.77897360818818],[132.99792997929978,42.80430226723641],[133.0051300513005,42.816122308125586],[133.00873008730088,42.81949946266536],[132.9907299072991,42.82625377174489],[132.9619296192962,42.82625377174489],[132.91152911529116,42.81949946266536],[132.90072900729007,42.816122308125586],[132.88992889928903,42.807679421776186],[132.88632886328867,42.80092511269666],[132.8971289712897,42.79754795815688],[132.90072900729007,42.79417080361711],[132.88632886328867,42.76377641275923],[132.87552875528758,42.755333526409814],[132.86472864728648,42.74857921733029],[132.8539285392854,42.7468906400604],[132.83232832328326,42.75026779460016],[132.81432814328144,42.7570221036797],[132.80352803528035,42.765464990029116],[132.79272792727926,42.79079364907736],[132.79992799928,42.807679421776186],[132.79272792727926,42.82118803993524],[132.7747277472775,42.82794234901476],[132.75672756727568,42.83300808082441],[132.76752767527677,42.851582430793115],[132.7747277472775,42.8752225125715],[132.7747277472775,42.895485439810074],[132.7639276392764,42.90730548069925],[132.7387273872739,42.90730548069925],[132.70272702727027,42.878599667111246],[132.68112681126814,42.873533935301595],[132.6847268472685,42.86846820349194],[132.69192691926918,42.86340247168232],[132.69552695526954,42.860025317142544],[132.6847268472685,42.85495958533289],[132.63792637926383,42.860025317142544],[132.619926199262,42.860025317142544],[132.60912609126092,42.85664816260277],[132.59832598325983,42.851582430793115],[132.5875258752588,42.843139544443716],[132.5767257672577,42.83976238990394],[132.5659256592566,42.84651669898349],[132.54432544325442,42.860025317142544],[132.51912519125193,42.86677962622207],[132.5119251192512,42.87184535803172],[132.50472504725047,42.887042553460674],[132.50472504725047,42.900551171619725],[132.50472504725047,42.914059789778776],[132.5011250112501,42.92419125339808],[132.4867248672487,42.92925698520773],[132.42912429124294,42.936011294287255],[132.4147241472415,42.941077026096906],[132.4039240392404,42.94276560336678],[132.39672396723967,42.93938844882703],[132.39672396723967,42.932634139747506],[132.39672396723967,42.92587983066798],[132.3931239312393,42.922502676128204],[132.3679236792368,42.91574836704868],[132.35352353523535,42.91068263523903],[132.34632346323463,42.900551171619725],[132.349923499235,42.89717401707995],[132.35352353523535,42.887042553460674],[132.36072360723608,42.88028824438112],[132.35352353523535,42.8752225125715],[132.35352353523535,42.870156780761846],[132.35352353523535,42.865091048952195],[132.36072360723608,42.860025317142544],[132.349923499235,42.85495958533289],[132.3247232472325,42.851582430793115],[132.31752317523177,42.84482812171359],[132.31032310323104,42.84482812171359],[132.28872288722886,42.88197682165102],[132.28872288722886,42.89041970800042],[132.29592295922959,42.9022397488896],[132.29592295922959,42.91743694431855],[132.29232292322922,42.949519912446334],[132.29952299522995,42.99680007600304],[132.29952299522995,43.02381731232117],[132.29232292322922,43.04408023955975],[132.3031230312303,43.052523125909175],[132.30672306723068,43.06434316679835],[132.29952299522995,43.07616320768753],[132.29232292322922,43.08629467130683],[132.30672306723068,43.08629467130683],[132.32112321123213,43.09473755765623],[132.3247232472325,43.10655759854541],[132.31752317523177,43.12006621670449],[132.3247232472325,43.123443371244235],[132.3355233552336,43.13019768032376],[132.3391233912339,43.13357483486354],[132.33192331923323,43.13864056667319],[132.3247232472325,43.14032914394306],[132.32832328323286,43.14877203029249],[132.32832328323286,43.17072353480097],[132.32832328323286,43.17578926661059],[132.3391233912339,43.17410068934072],[132.349923499235,43.17072353480097],[132.35712357123572,43.17072353480097],[132.3679236792368,43.17578926661059],[132.38232382323827,43.19098646203955],[132.37512375123754,43.204495080198626],[132.36072360723608,43.2163151210878],[132.31752317523177,43.23151231651673],[132.30672306723068,43.23826662559625],[132.30672306723068,43.24670951194568],[132.31752317523177,43.25177524375533],[132.3391233912339,43.261906707374635],[132.34632346323463,43.26697243918426],[132.349923499235,43.27879248007346],[132.35352353523535,43.28216963461321],[132.35712357123572,43.28554678915299],[132.34632346323463,43.297366830042165],[132.3139231392314,43.31594118001087],[132.30672306723068,43.319318334550644],[132.28872288722886,43.31256402547112],[132.2815228152282,43.27879248007346],[132.259922599226,43.270349593724035],[132.25272252722527,43.26697243918426],[132.24192241922418,43.24502093467581],[132.2347223472235,43.23657804832638],[132.22752227522278,43.229823739246854],[132.13752137521374,43.19098646203955],[132.1159211592116,43.18929788476967],[132.09432094320942,43.180854998420244],[132.07632076320766,43.16228064845154],[132.04392043920438,43.12682052578401],[132.02952029520299,43.11668906216471],[131.98991989919898,43.09642613492613],[131.97191971919722,43.082917516767054],[131.9539195391954,43.07278605314775],[131.9287192871929,43.069408898608],[131.90711907119072,43.074474630417654],[131.88551885518854,43.08629467130683],[131.89631896318963,43.09473755765623],[131.90711907119072,43.101491866735756],[131.9179191791918,43.10824617581531],[131.92151921519218,43.12006621670449],[131.87111871118714,43.08967182584658],[131.86031860318604,43.08629467130683],[131.8459184591846,43.08967182584658],[131.84951849518495,43.09980328946588],[131.87831878318786,43.136951989403315],[131.89991899919,43.18254357569015],[131.91071910719108,43.19774077111907],[131.92511925119254,43.207872234738375],[131.95751957519576,43.229823739246854],[131.97911979119795,43.234889471056505],[131.9971199711997,43.23826662559625],[132.00072000720007,43.24502093467581],[132.00072000720007,43.25177524375533],[132.0079200792008,43.26021813010473],[132.04392043920438,43.28723536642286],[132.0511205112051,43.297366830042165],[132.0511205112051,43.31425260274099],[132.04392043920438,43.324384066360295],[132.02952029520299,43.324384066360295],[132.01512015120153,43.31594118001087],[132.00432004320044,43.29905540731204],[132.00072000720007,43.283858211883086],[131.99351993519934,43.27372674826381],[131.96831968319685,43.270349593724035],[131.97911979119795,43.292301098232514],[131.95751957519576,43.305809716391565],[131.89631896318963,43.319318334550644],[131.88551885518854,43.31762975728074],[131.85671856718568,43.30749829366147],[131.8459184591846,43.305809716391565],[131.8315183151832,43.30918687093134],[131.82431824318246,43.31762975728074],[131.82791827918282,43.32607264363017],[131.83871838718386,43.332826952709695],[131.82791827918282,43.337892684519346],[131.81711817118173,43.33620410724947],[131.80631806318064,43.33113837543982],[131.80631806318064,43.32269548909039],[131.7991179911799,43.31594118001087],[131.77391773917742,43.302432561851816],[131.76311763117633,43.292301098232514],[131.7559175591756,43.26359528464451],[131.7559175591756,43.243332357405905],[131.74871748717487,43.2247580074372],[131.72351723517238,43.20956081200825],[131.72351723517238,43.20280650292872],[131.74151741517414,43.20111792565885],[131.75951759517596,43.1960521938492],[131.76311763117633,43.185920730229896],[131.74871748717487,43.17578926661059],[131.7307173071731,43.17410068934072],[131.71631716317165,43.18423215296002],[131.70551705517056,43.1960521938492],[131.69471694716947,43.20280650292872],[131.68391683916838,43.199429348388975],[131.68031680316807,43.194363616579324],[131.6767167671677,43.1876093074998],[131.67311673116734,43.18254357569015],[131.65151651516516,43.16903495753107],[131.6479164791648,43.16903495753107],[131.65151651516516,43.15552633937202],[131.6659166591666,43.15721491664189],[131.68391683916838,43.16565780299132],[131.69471694716947,43.17578926661059],[131.68391683916838,43.14877203029249],[131.6659166591666,43.12513194851414],[131.58671586715866,43.0491459713694],[131.56151561515617,43.039014507750096],[131.56511565115653,43.02381731232117],[131.5687156871569,43.00693153962234],[131.56511565115653,42.99680007600304],[131.5471154711547,42.993422921463264],[131.53271532715326,43.00186580781269],[131.51831518315186,43.00862011689222],[131.50031500315004,43.00017723054282],[131.4931149311493,42.984980035113864],[131.4931149311493,42.96978283968491],[131.50031500315004,42.95627422152586],[131.49671496714967,42.94276560336678],[131.4931149311493,42.94445418063668],[131.4787147871479,42.94276560336678],[131.45351453514536,42.93432271701738],[131.4391143911439,42.93432271701738],[131.42831428314287,42.93432271701738],[131.40671406714068,42.95120848971621],[131.39231392313923,42.94445418063668],[131.38871388713886,42.9309455624776],[131.3851138511385,42.914059789778776],[131.40671406714068,42.91068263523903],[131.41031410314105,42.900551171619725],[131.39951399513996,42.873533935301595],[131.4607146071461,42.8836653989209],[131.47151471514718,42.8836653989209],[131.47151471514718,42.873533935301595],[131.45711457114572,42.86340247168232],[131.43551435514354,42.85495958533289],[131.41031410314105,42.83976238990394],[131.37791377913783,42.83131950355454],[131.36711367113674,42.81949946266536],[131.359913599136,42.80599084450628],[131.359913599136,42.79417080361711],[131.36351363513637,42.78235076272793],[131.35271352713528,42.77390787637853],[131.29871298712987,42.79248222634723],[131.27351273512738,42.77728503091829],[131.25551255512556,42.75195637187005],[131.24831248312483,42.73169344463146],[131.23751237512374,42.70636478558322],[131.24831248312483,42.69454474469404],[131.2519125191252,42.691167590154265],[131.2627126271263,42.6877904356145],[131.2627126271263,42.68441328107474],[131.2627126271263,42.68103612653498],[131.25911259112593,42.675970394725326],[131.25551255512556,42.670904662915675],[131.25551255512556,42.66752750837591],[131.24831248312483,42.66752750837591],[131.23391233912338,42.66752750837591],[131.22311223112234,42.660773199296386],[131.21591215912161,42.64388742659756],[131.2087120871209,42.63713311751802],[131.2087120871209,42.62193592208908],[131.20511205112052,42.61855876754932],[131.20151201512016,42.613493035739666],[131.2087120871209,42.608427303930014],[131.22311223112234,42.60505014939025],[131.23031230312301,42.59660726304084],[131.2267122671227,42.59154153123119],[131.23391233912338,42.588164376691424],[131.23391233912338,42.58647579942155],[131.21951219512198,42.58647579942155],[131.21231212312125,42.58309864488177],[131.22311223112234,42.571278603992596],[131.22311223112234,42.56621287218296],[131.21951219512198,42.55439283129377],[131.21231212312125,42.551015676754005],[131.20511205112052,42.557769985833545],[131.19431194311943,42.55945856310342],[131.1871118711187,42.55945856310342],[131.17991179911797,42.56452429491307],[131.1727117271173,42.572967181262484],[131.16551165511657,42.57634433580225],[131.16551165511657,42.58478722215166],[131.1727117271173,42.58478722215166],[131.17991179911797,42.59491868577096],[131.17991179911797,42.60505014939025],[131.15831158311585,42.60167299485049],[131.1439114391144,42.613493035739666],[131.12591125911263,42.61687019027943],[131.12591125911263,42.64726458113732],[131.1187111871119,42.66752750837591],[131.10431104311044,42.66752750837591],[131.09351093510935,42.655707467486735],[131.08631086310862,42.640510272057796],[131.07191071910722,42.63882169478791],[131.03591035910358,42.64557600386743],[130.99630996309963,42.640510272057796],[130.95310953109532,42.62700165389873],[130.93150931509314,42.60673872666014],[130.91350913509137,42.60167299485049],[130.88830888308883,42.5999844175806],[130.87390873908743,42.60336157212038],[130.83070830708306,42.62531307662884],[130.81630816308166,42.633755962978256],[130.83790837908379,42.64219884932767],[130.86310863108633,42.640510272057796],[130.88830888308883,42.63882169478791],[130.909909099091,42.61687019027943],[130.93150931509314,42.61855876754932],[130.9459094590946,42.63037880843849],[130.94950949509496,42.65233031294697],[130.93150931509314,42.657396044756624],[130.89910899108992,42.65401889021685],[130.8811088110881,42.6590846220265],[130.84870848708488,42.660773199296386],[130.8019080190802,42.650641735677084],[130.78750787507875,42.65401889021685],[130.79470794707947,42.66246177656626],[130.83070830708306,42.67428181745545],[130.83790837908379,42.691167590154265],[130.82710827108275,42.69961047650368],[130.8019080190802,42.696233321963916],[130.78030780307802,42.68947901288439],[130.76950769507698,42.68103612653498],[130.74430744307443,42.68103612653498],[130.73350733507334,42.691167590154265],[130.71910719107194,42.69961047650368],[130.6939069390694,42.68610185834463],[130.6579065790658,42.66415035383615],[130.66150661506617,42.64388742659756],[130.6831068310683,42.64388742659756],[130.73350733507334,42.615181613009554],[130.7371073710737,42.60673872666014],[130.72990729907298,42.57972149034201],[130.75510755107553,42.59660726304084],[130.76230762307625,42.5999844175806],[130.77310773107735,42.59660726304084],[130.7767077670777,42.59154153123119],[130.78030780307802,42.58478722215166],[130.78390783907838,42.57972149034201],[130.84150841508415,42.557769985833545],[130.85230852308524,42.54763852221424],[130.8559085590856,42.53919563586483],[130.87030870308706,42.535818481325066],[130.87390873908743,42.52737559497565],[130.87030870308706,42.51724413135635],[130.86310863108633,42.51724413135635],[130.85950859508597,42.52062128589611],[130.85950859508597,42.52399844043589],[130.85230852308524,42.52062128589611],[130.8451084510845,42.52062128589611],[130.84150841508415,42.51893270862624],[130.83790837908379,42.510489822276824],[130.83790837908379,42.50711266773706],[130.8451084510845,42.493604049577996],[130.8451084510845,42.48684974049847],[130.83790837908379,42.47165254506952],[130.8235082350824,42.46489823598999],[130.80550805508057,42.46152108145023],[130.78750787507875,42.46152108145023],[130.78030780307802,42.453078195100815],[130.76230762307625,42.40073229973444],[130.75150751507516,42.38046937249585],[130.74430744307443,42.35345213617774],[130.73350733507334,42.33825494074878],[130.70470704707049,42.29604050900171],[130.70110701107012,42.29435193173184],[130.6939069390694,42.28928619992219],[130.6687066870669,42.28253189084266],[130.63270632706326,42.27408900449325],[130.61830618306186,42.27240042722336],[130.6039060390604,42.263957540873946],[130.59670596705968,42.26226896360407],[130.59670596705968,42.280843313572774],[130.59670596705968,42.29266335446195],[130.59670596705968,42.2977290862716],[130.58230582305822,42.307860549890904],[130.56790567905682,42.31461485897043],[130.5391053910539,42.31799201351019],[130.51750517505178,42.328123477129495],[130.51030510305105,42.33656636347891],[130.48150481504814,42.33994351801867],[130.46710467104674,42.33487778620902],[130.4707047070471,42.321369168049955],[130.45630456304565,42.31123770443067],[130.43830438304383,42.30954912716078],[130.4311043110431,42.31799201351019],[130.42030420304206,42.32474632258973],[130.4059040590406,42.32474632258973],[130.4059040590406,42.31630343624032],[130.4059040590406,42.307860549890904],[130.39510395103952,42.29941766354149],[130.38430384303842,42.290974777192076],[130.3879038790388,42.27746615903301],[130.3879038790388,42.270711849953486],[130.39150391503915,42.263957540873946],[130.39870398703988,42.263957540873946],[130.4059040590406,42.26058038633418],[130.4059040590406,42.24876034544501],[130.40230402304024,42.24200603636547],[130.39510395103952,42.243694613635355],[130.3771037710377,42.25720323179442],[130.36630366303666,42.25551465452453],[130.35910359103593,42.243694613635355],[130.36990369903702,42.23187457274618],[130.35910359103593,42.228497418206416],[130.3519035190352,42.21667737731724],[130.33390333903338,42.21330022277746],[130.33030330303302,42.191348718269],[130.31950319503198,42.18459440918946],[130.3087030870309,42.182905831919584],[130.3087030870309,42.19810302734852],[130.31590315903162,42.218365954587114],[130.3087030870309,42.23694030455583],[130.29430294302944,42.23694030455583],[130.25110251102512,42.20485733642805],[130.22950229502294,42.182905831919584],[130.21510215102154,42.17446294557017],[130.20070200702008,42.17277436830028],[130.20430204302045,42.159265750141216],[130.20070200702008,42.10185412296521],[130.19350193501936,42.10016554569533],[130.18630186301863,42.103542700235096],[130.17550175501754,42.098476968425445],[130.16110161101614,42.08496835026638],[130.1647016470165,42.083279772996505],[130.16830168301686,42.076525463916965],[130.16110161101614,42.0731483093772],[130.15030150301504,42.07483688664709],[130.13230132301322,42.08496835026638],[130.1215012150122,42.09003408207603],[130.09270092700928,42.09003408207603],[130.07470074700745,42.078214041186854],[130.06750067500678,42.05963969121814],[130.06750067500678,42.051196804868724],[130.05310053100533,42.051196804868724],[130.04950049500496,42.04275391851931],[130.0459004590046,42.035999609439784],[130.0351003510035,42.01235952766143],[130.0351003510035,41.9954737549626],[130.02790027900278,41.99209660042284],[130.01350013500138,42.014048104931305],[130.0027000270003,42.01067095039154],[130.0027000270003,41.99040802315295],[129.9810998109981,41.98196513680354],[129.98829988299883,41.978587982263775],[129.99549995499956,41.973522250454124],[130.0027000270003,41.96170220956495],[129.9918999189992,41.96001363229506],[129.98469984699847,41.95494790048542],[129.97389973899737,41.94143928232636],[129.97749977499774,41.94312785959623],[129.97389973899737,41.93468497324682],[129.97029970299707,41.92286493235764],[129.97029970299707,41.91779920054799],[129.96309963099634,41.89922485057929],[129.9558995589956,41.89247054149976],[129.94509945099452,41.894159118769636],[129.9378993789938,41.90429058238894],[129.9126991269913,41.911044891468464],[129.89829898298984,41.90429058238894],[129.89109891098911,41.88233907788046],[129.8838988389884,41.85701041883222],[129.8838988389884,41.82492745070445],[129.869498694987,41.791155905306795],[129.85509855098553,41.78102444168749],[129.85149851498517,41.764138668988664],[129.84429844298444,41.75907293717903],[129.82629826298262,41.77764728714773],[129.81189811898122,41.77764728714773],[129.77589775897758,41.75907293717903],[129.76149761497618,41.73036712359102],[129.7506975069751,41.69659557819337],[129.739897398974,41.684775537304176],[129.7146971469715,41.67464407368489],[129.68949689496895,41.649315414636646],[129.68229682296823,41.61723244650888],[129.66789667896683,41.576706592031684],[129.649896498965,41.54968935571357],[129.6606966069661,41.526049273935215],[129.65709657096573,41.50916350123639],[129.65349653496537,41.49396630580743],[129.6606966069661,41.46526049221943],[129.68229682296823,41.443308987710964],[129.70029700297005,41.42811179228201],[129.7146971469715,41.419668905932596],[129.73629736297363,41.421357483202485],[129.74349743497436,41.40616028777353],[129.75789757897581,41.39265166961448],[129.7686976869769,41.38589736053494],[129.77589775897758,41.38589736053494],[129.79029790297903,41.38758593780483],[129.79749797497976,41.38589736053494],[129.8046980469805,41.37576589691565],[129.8046980469805,41.37238874237589],[129.80109801098013,41.36901158783611],[129.79749797497976,41.35550296967706],[129.7938979389794,41.352125815137285],[129.78669786697867,41.33017431062882],[129.78669786697867,41.32510857881917],[129.7686976869769,41.314977115199866],[129.75789757897581,41.2930256106914],[129.71829718297187,41.16638231545019],[129.71109711097114,41.12247930643325],[129.7290972909729,41.08533060649583],[129.72189721897217,41.071821988336765],[129.71829718297187,41.056624792907826],[129.72189721897217,41.02285324751017],[129.7290972909729,40.97895023849321],[129.73269732697327,40.968818774873924],[129.7506975069751,40.951933002175096],[129.76509765097654,40.945178693095556],[129.75429754297545,40.93842438401603],[129.7506975069751,40.91647287950755],[129.75429754297545,40.909718570428026],[129.73269732697327,40.89114422045931],[129.73629736297363,40.87088129322072],[129.72549725497254,40.847241211442366],[129.71829718297187,40.83542117055319],[129.70749707497077,40.83542117055319],[129.69669696696968,40.84555263417248],[129.6858968589686,40.842175479632715],[129.66429664296646,40.83879832509295],[129.64269642696428,40.842175479632715],[129.62469624696246,40.83879832509295],[129.61029610296106,40.84048690236284],[129.59949599495997,40.83879832509295],[129.57069570695705,40.84048690236284],[129.5526955269553,40.82866686147365],[129.5526955269553,40.81009251150495],[129.5310953109531,40.806715356965185],[129.5166951669517,40.794895316075994],[129.5058950589506,40.79151816153623],[129.4770947709477,40.79320673880612],[129.42669426694266,40.78138669791694],[129.39069390693908,40.76112377067835],[129.35109351093513,40.7459265752494],[129.34029340293404,40.73410653436022],[129.32949329493294,40.71890933893128],[129.31149311493118,40.6868263708035],[129.30429304293045,40.67331775264445],[129.29709297092973,40.67669490718421],[129.28629286292863,40.68344921626374],[129.2790927909279,40.69864641169269],[129.27189271892718,40.70877787531198],[129.2538925389254,40.70877787531198],[129.23229232292323,40.70540072077222],[129.21789217892177,40.696957834422804],[129.2106921069211,40.68513779353363],[129.20709207092074,40.675006329914325],[129.20709207092074,40.66994059810469],[129.20709207092074,40.66318628902515],[129.20349203492037,40.65643197994562],[129.19989199892,40.65136624813597],[129.19629196291964,40.63785762997691],[129.19269192691928,40.632791898167255],[129.18909189091892,40.62266043454797],[129.18549185491855,40.61590612546844],[129.17829178291782,40.6091518163889],[129.17469174691746,40.60408608457925],[129.17469174691746,40.59395462095996],[129.1710917109171,40.56862596191172],[129.16029160291606,40.56524880737196],[129.1566915669157,40.556805921022544],[129.14949149491497,40.54667445740324],[129.11349113491138,40.51121433473571],[129.07749077490774,40.472377057528405],[129.03069030690307,40.47406563479829],[128.97668976689766,40.46055701663923],[128.90108901089013,40.39807965765357],[128.86148861488618,40.37106242133544],[128.8290882908829,40.367685266795675],[128.8146881468815,40.35417664863661],[128.78228782287823,40.347422339557085],[128.76428764287647,40.34573376228721],[128.75348753487538,40.33560229866791],[128.7210872108721,40.33897945320767],[128.68868688686888,40.33053656685826],[128.67068670686706,40.310273639619666],[128.65628656286566,40.310273639619666],[128.65628656286566,40.32040510323897],[128.63828638286384,40.31365079415943],[128.62028620286202,40.2967650214606],[128.61668616686165,40.27143636241236],[128.62748627486275,40.26637063060272],[128.65628656286566,40.25792774425331],[128.65988659886602,40.247796280634006],[128.6670866708667,40.24104197155448],[128.6634866348664,40.22584477612553],[128.6634866348664,40.200516117077285],[128.6526865268653,40.19713896253752],[128.6418864188642,40.190384653458],[128.63468634686348,40.18363034437846],[128.62748627486275,40.180253189838695],[128.62028620286202,40.180253189838695],[128.60948609486098,40.185318921648346],[128.5878858788588,40.187007498918234],[128.5770857708577,40.180253189838695],[128.5446854468545,40.166744571679644],[128.53748537485376,40.15154737625069],[128.52668526685267,40.143104489901276],[128.5086850868509,40.13466160355186],[128.479884798848,40.13466160355186],[128.46548465484653,40.124530139932574],[128.44748447484477,40.10933294450362],[128.43668436684368,40.10426721269398],[128.4114841148412,40.09582432634457],[128.39348393483937,40.09920148088433],[128.36468364683645,40.097512903614444],[128.33948339483396,40.067118512756565],[128.32868328683287,40.02828123554926],[128.30348303483038,40.03334696735891],[128.2818828188282,40.06542993548668],[128.26388263882637,40.07724997637585],[128.23508235082352,40.067118512756565],[128.2278822788228,40.05698704913726],[128.23508235082352,40.02996981281913],[128.22428224282243,40.02828123554926],[128.2026820268203,40.02996981281913],[128.1918819188192,40.02996981281913],[128.1810818108181,40.02659265827937],[128.1630816308163,40.018149771929956],[128.15588155881562,40.01646119466008],[128.14508145081453,40.018149771929956],[128.14508145081453,40.02321550373961],[128.1378813788138,40.02659265827937],[128.00828008280087,40.045167008248086],[128.00108001080014,40.040101276438435],[128.00108001080014,40.02659265827937],[127.99747997479977,40.019838349199844],[127.99027990279905,40.01477261739019],[127.97947979479795,40.01139546285043],[127.97227972279723,40.00801830831067],[127.9650796507965,40.004641153770905],[127.94707947079473,39.98100107199254],[127.939879398794,39.97424676291301],[127.92907929079291,39.97255818564312],[127.90747907479079,39.9843782265323],[127.88947889478897,39.96073814475395],[127.88947889478897,39.94385237205512],[127.88227882278824,39.90163794030805],[127.87507875078751,39.893195053958635],[127.78147781477816,39.88475216760922],[127.79587795877961,39.87630928125981],[127.79227792277925,39.86617781764052],[127.76347763477634,39.85435777675134],[127.72747727477275,39.857734931291105],[127.69507695076953,39.8476034676718],[127.68067680676808,39.817209076813924],[127.66267662676626,39.80707761319462],[127.64827648276486,39.82058623135369],[127.62307623076231,39.830717694972975],[127.60867608676085,39.810454767734385],[127.59427594275945,39.80538903592473],[127.57627576275763,39.79694614957532],[127.56187561875618,39.78343753141627],[127.55107551075514,39.76148602690779],[127.52227522275223,39.74628883147885],[127.5150751507515,39.737845945129436],[127.51147511475114,39.7310916360499],[127.50427504275046,39.71589444062096],[127.5006750067501,39.70745155427154],[127.5006750067501,39.69900866792213],[127.50787507875077,39.68381147249319],[127.50787507875077,39.66017139071482],[127.51147511475114,39.650039927095534],[127.51867518675186,39.64497419528588],[127.52947529475296,39.64666277255577],[127.55107551075514,39.63653130893647],[127.5690756907569,39.61795695896777],[127.57627576275763,39.5943168771894],[127.53667536675368,39.55210244544233],[127.51867518675186,39.509888013695274],[127.53667536675368,39.44403350016984],[127.56187561875618,39.34440744124676],[127.56187561875618,39.315701627658754],[127.5546755467555,39.305570164039466],[127.54387543875441,39.30219300949969],[127.53307533075332,39.305570164039466],[127.52227522275223,39.315701627658754],[127.52227522275223,39.32921024581782],[127.52587525875259,39.34440744124676],[127.54387543875441,39.37142467756489],[127.50787507875077,39.40857337750231],[127.50427504275046,39.42208199566137],[127.49347493474937,39.43390203655055],[127.48267482674828,39.43727919109031],[127.46827468274682,39.430524882010786],[127.43947439474397,39.40857337750231],[127.43947439474397,39.405196222962545],[127.43227432274324,39.39675333661313],[127.42507425074251,39.39168760480348],[127.37827378273784,39.378178986644414],[127.37827378273784,39.37142467756489],[127.38907389073893,39.36635894575524],[127.41427414274142,39.361293213945586],[127.42507425074251,39.357916059405824],[127.43947439474397,39.36467036848535],[127.45387453874542,39.368047523025126],[127.46827468274682,39.36467036848535],[127.47187471874719,39.347784595786536],[127.46827468274682,39.33934170943712],[127.4358743587436,39.33427597762747],[127.42507425074251,39.33089882308771],[127.42147421474215,39.335964554897345],[127.41427414274142,39.341030286706996],[127.40707407074069,39.342718863976884],[127.39987399874002,39.34440744124676],[127.39267392673929,39.341030286706996],[127.39267392673929,39.335964554897345],[127.39627396273966,39.32921024581782],[127.39987399874002,39.32414451400817],[127.38547385473856,39.29712727769005],[127.37827378273784,39.26842146410205],[127.37107371073711,39.23971565051403],[127.3818738187382,39.222829877815215],[127.39267392673929,39.20256695057661],[127.40707407074069,39.194124064227196],[127.42147421474215,39.18905833241756],[127.43947439474397,39.17048398244884],[127.45387453874542,39.16541825063919],[127.47187471874719,39.16879540517897],[127.47547475474755,39.17723829152838],[127.47187471874719,39.18736975514767],[127.47187471874719,39.194124064227196],[127.48987489874901,39.194124064227196],[127.51147511475114,39.15697536428978],[127.53307533075332,39.14684390067049],[127.60867608676085,39.15190963248014],[127.63027630276304,39.14684390067049],[127.64467644676449,39.138401014321076],[127.65187651876522,39.12995812797166],[127.66267662676626,39.12151524162225],[127.67707677076771,39.118138087082485],[127.74547745477457,39.118138087082485],[127.75987759877597,39.1164495098126],[127.77067770677706,39.10969520073307],[127.79227792277925,39.07761223260529],[127.82467824678247,39.04384068720765],[127.8318783187832,39.03202064631846],[127.83547835478356,39.01851202815941],[127.84987849878502,39.00162625546058],[127.8858788587886,38.97460901914245],[127.88947889478897,38.9611004009834],[127.89307893078933,38.95772324644362],[127.90387903879042,38.96447755552316],[127.90747907479079,38.96785471006292],[127.91467914679146,38.96447755552316],[127.91827918279182,38.95772324644362],[127.92187921879218,38.94252605101468],[127.92547925479255,38.93408316466527],[127.93267932679328,38.929017432855616],[127.94347943479437,38.92564027831585],[127.96147961479613,38.91719739196644],[127.99387993879941,38.87498296021937],[128.01548015480154,38.85809718752054],[128.09108091080913,38.8428999920916],[128.20988209882103,38.728076737739585],[128.22428224282243,38.73314246954922],[128.2710827108271,38.75171681951794],[128.2818828188282,38.7550939740577],[128.3142831428314,38.71794527412028],[128.32148321483214,38.71119096504076],[128.33948339483396,38.70274807869134],[128.3466834668347,38.6959937696118],[128.36108361083615,38.679107996912975],[128.36108361083615,38.67573084237321],[128.36108361083615,38.66053364694427],[128.36108361083615,38.64195929697556],[128.36468364683645,38.62507352427673],[128.39348393483937,38.57779336072002],[128.44028440284404,38.50518453811506],[128.45108451084513,38.47479014725717],[128.47268472684726,38.42582140643057],[128.5626856268563,38.289046647570075],[128.6310863108631,38.14551757963005],[128.6418864188642,38.128631806931224],[128.6778867788678,38.09486026153357],[128.69228692286924,38.064465870675676],[128.85788857888582,37.877033793718695],[128.92268922689226,37.80273639384386],[129.0018900189002,37.73519330304855],[129.0126901269013,37.72675041669913],[129.06309063090634,37.679470253142426],[129.06669066690665,37.659207325903836],[129.06669066690665,37.633878666855594],[129.07389073890738,37.613615739617],[129.10989109891102,37.596729966918176],[129.12069120691206,37.57984419421935],[129.14949149491497,37.50554679434451],[129.16029160291606,37.486972444375795],[129.17829178291782,37.48021813529627],[129.18909189091892,37.47008667167697],[129.2358923589236,37.39747784907202],[129.26109261092614,37.37046061275389],[129.27189271892718,37.35526341732495],[129.27549275492754,37.340066221895995],[129.28269282692827,37.324869026467056],[129.32949329493294,37.282654594719986],[129.34749347493477,37.247194472052456],[129.36189361893622,37.17120849490773],[129.37989379893799,37.13068264043055],[129.43029430294303,37.07327101325454],[129.4338943389434,37.06145097236535],[129.42669426694266,37.04963093147617],[129.41949419494193,37.037810890587],[129.41229412294126,37.027679426967694],[129.41229412294126,37.017547963348406],[129.41949419494193,36.98715357249051],[129.43029430294303,36.89765897718674],[129.43749437494375,36.85544454543967],[129.46989469894697,36.772704259215416],[129.47349473494734,36.73048982746835],[129.4626946269463,36.69165255026104],[129.44109441094412,36.657881004863384],[129.4230942309423,36.6173551503862],[129.4230942309423,36.61566657311633],[129.42669426694266,36.57514071863913],[129.44109441094412,36.53461486416195],[129.44829448294485,36.49408900968477],[129.44109441094412,36.40797156892074],[129.4338943389434,36.38939721895204],[129.40509405094053,36.35900282809415],[129.39069390693908,36.34211705539532],[129.3870938709387,36.32354270542662],[129.38349383493835,36.20196514199506],[129.3870938709387,36.18507936929623],[129.39069390693908,36.17663648294682],[129.3978939789398,36.173259328407056],[129.40509405094053,36.168193596597405],[129.4086940869409,36.13442205119975],[129.41589415894163,36.10740481488163],[129.42669426694266,36.10233908307198],[129.43029430294303,36.09727335126233],[129.42669426694266,36.08207615583339],[129.41949419494193,36.07363326948398],[129.4086940869409,36.068567537674326],[129.3978939789398,36.06687896040445],[129.38349383493835,36.05505891951526],[129.37989379893799,36.04155030135621],[129.40149401494017,36.02635310592726],[129.41589415894163,36.01115591049832],[129.4338943389434,35.99595871506938],[129.4518945189452,35.9925815605296],[129.48069480694807,36.00946733322843],[129.5418954189542,36.06519038313456],[129.55629556295565,36.08207615583339],[129.57069570695705,36.07194469221409],[129.57429574295742,36.05505891951526],[129.58149581495815,36.03648456954656],[129.58869588695887,36.01622164230797],[129.57069570695705,35.99764729233925],[129.53469534695347,35.938547087893355],[129.5310953109531,35.91321842884511],[129.52389523895238,35.84398676077993],[129.49509495094952,35.78488655633403],[129.49869498694989,35.74773785639661],[129.46989469894697,35.68357192014108],[129.4518945189452,35.651488952013295],[129.44469444694448,35.636291756584356],[129.4518945189452,35.617717406615654],[129.45909459094594,35.60927452026624],[129.46629466294667,35.59914305664694],[129.4626946269463,35.57719155213846],[129.4626946269463,35.55186289309022],[129.45549455494557,35.513025615882924],[129.44469444694448,35.496139843184096],[129.42669426694266,35.47925407048527],[129.41229412294126,35.47249976140573],[129.40509405094053,35.48938553410456],[129.40149401494017,35.513025615882924],[129.3870938709387,35.52991138858175],[129.37269372693726,35.533288543121515],[129.36549365493659,35.513025615882924],[129.37989379893799,35.511337038613036],[129.3870938709387,35.50289415226362],[129.39069390693908,35.48938553410456],[129.39069390693908,35.475876915945506],[129.3870938709387,35.46236829778644],[129.37629376293762,35.45899114324668],[129.36549365493659,35.45899114324668],[129.35829358293586,35.45223683416714],[129.35829358293586,35.44548252508761],[129.36189361893622,35.42521959784902],[129.36549365493659,35.406645247880306],[129.3546935469355,35.39482520699113],[129.34749347493477,35.38300516610195],[129.3546935469355,35.37287370248265],[129.36189361893622,35.36780797067301],[129.36189361893622,35.35429935251395],[129.34029340293404,35.34754504343442],[129.32229322293222,35.33910215708501],[129.29349293492936,35.31546207530664],[129.2682926829268,35.31715065257653],[129.2646926469265,35.301953457147576],[129.26109261092614,35.283379107178874],[129.25749257492578,35.27493622082946],[129.25029250292505,35.266493334480046],[129.2538925389254,35.25298471632098],[129.25749257492578,35.246230407241455],[129.24309243092432,35.22765605727274],[129.22869228692286,35.20063882095462],[129.2106921069211,35.183753048255795],[129.19989199892,35.16686727555697],[129.19269192691928,35.15504723466779],[129.17829178291782,35.15504723466779],[129.16749167491673,35.156735811937665],[129.15309153091533,35.15504723466779],[129.14229142291424,35.15504723466779],[129.13149131491315,35.14998150285814],[129.12069120691206,35.14998150285814],[129.12069120691206,35.1347843074292],[129.12789127891278,35.126341421079786],[129.12789127891278,35.11452138019061],[129.12429124291242,35.101012762031544],[129.1026910269103,35.09256987568213],[129.08469084690847,35.10438991657131],[129.07029070290702,35.11283280292072],[129.06309063090634,35.121275689270135],[129.0378903789038,35.09763560749178],[129.0270902709027,35.079061257523065],[129.02349023490234,35.06048690755436],[129.0126901269013,35.05542117574471],[129.00909009090094,35.065552639364],[128.99828998289985,35.0756841029833],[128.99828998289985,35.065552639364],[129.0018900189002,35.04528971212541],[128.99108991089912,35.04528971212541],[128.99108991089912,35.05204402120495],[128.9838898388984,35.053732598474824],[128.9730897308973,35.04866686666517],[128.96588965889657,35.043601134855535],[128.9586895868959,35.05035544393506],[128.95148951489517,35.07230694844354],[128.95508955089554,35.09256987568213],[128.96228962289626,35.11958711200025],[128.96228962289626,35.13309573015931],[128.9586895868959,35.136472884699074],[128.9478894788948,35.126341421079786],[128.9190891908919,35.08243841206283],[128.9046890468905,35.080749834792954],[128.9046890468905,35.101012762031544],[128.9046890468905,35.121275689270135],[128.89748897488977,35.121275689270135],[128.89028890288904,35.106078493841196],[128.8830888308883,35.080749834792954],[128.85788857888582,35.08412698933272],[128.79308793087932,35.08243841206283],[128.78948789487896,35.101012762031544],[128.78228782287823,35.11114422565083],[128.77148771487714,35.08412698933272],[128.7606876068761,35.079061257523065],[128.73908739087392,35.08750414387248],[128.72828728287283,35.10438991657131],[128.71748717487174,35.106078493841196],[128.69948699486997,35.09594703022189],[128.69948699486997,35.13985003923884],[128.6958869588696,35.143227193778614],[128.68868688686888,35.13985003923884],[128.68148681486815,35.13140715288942],[128.68148681486815,35.116209957460484],[128.6634866348664,35.126341421079786],[128.6526865268653,35.141538616508726],[128.63828638286384,35.14998150285814],[128.61668616686165,35.143227193778614],[128.62388623886238,35.156735811937665],[128.61308613086135,35.17699873917627],[128.61668616686165,35.18544162552567],[128.60948609486098,35.21077028457391],[128.60228602286026,35.21414743911369],[128.59148591485916,35.205704552764274],[128.5770857708577,35.188818780065446],[128.5770857708577,35.178687316446144],[128.59148591485916,35.156735811937665],[128.5986859868599,35.12971857561955],[128.60228602286026,35.121275689270135],[128.60948609486098,35.10945564838096],[128.62748627486275,35.09088129841224],[128.6310863108631,35.080749834792954],[128.62388623886238,35.06892979390378],[128.6310863108631,35.06724121663389],[128.64548645486457,35.06217548482424],[128.6526865268653,35.06217548482424],[128.6418864188642,35.057109753014586],[128.63468634686348,35.05542117574471],[128.61308613086135,35.05542117574471],[128.60228602286026,35.057109753014586],[128.60228602286026,35.06217548482424],[128.5986859868599,35.06892979390378],[128.59508595085953,35.0756841029833],[128.5878858788588,35.08412698933272],[128.58068580685807,35.08750414387248],[128.52668526685267,35.10270133930142],[128.51228512285127,35.10438991657131],[128.479884798848,35.099324184761656],[128.4690846908469,35.09594703022189],[128.4690846908469,35.08919272114237],[128.479884798848,35.0756841029833],[128.46188461884623,35.07230694844354],[128.42948429484295,35.057109753014586],[128.389883898839,35.04866686666517],[128.38268382683827,35.036846825775996],[128.38268382683827,35.02333820761693],[128.37188371883718,35.01320674399764],[128.37188371883718,35.00645243491812],[128.47268472684726,35.05035544393506],[128.48708487084872,35.05035544393506],[128.49068490684908,35.03346967123623],[128.4978849788498,35.01996105307717],[128.4978849788498,35.00982958945788],[128.49068490684908,34.996320971298815],[128.479884798848,34.98956666221929],[128.45828458284586,34.9878780849494],[128.44028440284404,34.9878780849494],[128.4258842588426,34.99294381675905],[128.41868418684186,34.98281235313975],[128.4258842588426,34.9777466213301],[128.43308433084331,34.974369466790336],[128.44028440284404,34.96592658044092],[128.44028440284404,34.959172271361396],[128.44028440284404,34.95241796228187],[128.44028440284404,34.932155035043266],[128.43308433084331,34.88994060329621],[128.4438844388444,34.88318629421667],[128.45108451084513,34.886563448756434],[128.45828458284586,34.89331775783597],[128.46188461884623,34.90344922145526],[128.47268472684726,34.88994060329621],[128.46188461884623,34.869677676057606],[128.43668436684368,34.84266043973949],[128.4114841148412,34.83759470792984],[128.38268382683827,34.83928328519973],[128.38268382683827,34.854480480628666],[128.40428404284046,34.854480480628666],[128.4114841148412,34.856169057898555],[128.4150841508415,34.86292336697808],[128.35388353883542,34.86798909878773],[128.33948339483396,34.87305483059738],[128.3250832508325,34.88825202602632],[128.3250832508325,34.896694912375736],[128.3358833588336,34.90176064418539],[128.35748357483578,34.9102035305348],[128.3358833588336,34.94735223047222],[128.31788317883178,34.933843612313154],[128.30348303483038,34.90851495326491],[128.27828278282783,34.90682637599504],[128.2566825668257,34.93046645777339],[128.2458824588246,34.93553218958304],[128.22428224282243,34.93722076685292],[128.21348213482133,34.932155035043266],[128.20988209882103,34.92033499415409],[128.20628206282066,34.90513779872515],[128.20628206282066,34.88994060329621],[128.18468184681848,34.89331775783597],[128.1378813788138,34.891629180566085],[128.11988119881198,34.9000720669155],[128.11988119881198,34.90513779872515],[128.11988119881198,34.92033499415409],[128.11628116281162,34.92371214869385],[128.11268112681125,34.92540072596374],[128.10188101881022,34.92371214869385],[128.08748087480876,34.92708930323363],[128.0622806228062,34.92708930323363],[128.05508055080554,34.932155035043266],[128.05148051480518,34.938909344122806],[128.05148051480518,34.94735223047222],[128.05508055080554,34.95579511682163],[128.05508055080554,34.96254942590116],[128.05508055080554,35.03515824850612],[128.05508055080554,35.0469782893953],[128.0586805868059,35.053732598474824],[128.0622806228062,35.06048690755436],[128.06948069480694,35.07061837117365],[128.06948069480694,35.08243841206283],[128.05508055080554,35.06724121663389],[128.04068040680409,35.04866686666517],[128.02628026280263,35.03515824850612],[128.00108001080014,35.03346967123623],[128.0190801908019,34.9980095485687],[128.00828008280087,34.99125523948916],[127.97947979479795,34.99294381675905],[127.95427954279546,34.97943519859999],[127.94347943479437,35.00307528037834],[127.93627936279364,35.01320674399764],[127.92547925479255,35.01996105307717],[127.92187921879218,34.9878780849494],[127.91107911079109,34.96254942590116],[127.88947889478897,34.94735223047222],[127.86427864278642,34.94397507593246],[127.85347853478538,34.94735223047222],[127.84267842678429,34.95072938501198],[127.83547835478356,34.949040807742094],[127.8318783187832,34.94397507593246],[127.81387813878138,34.954106539551745],[127.8066780667807,34.95748369409151],[127.79947799477998,34.959172271361396],[127.75627756277567,34.95748369409151],[127.74547745477457,34.960860848631285],[127.73827738277384,34.96592658044092],[127.73827738277384,34.97268088952046],[127.73107731077312,34.98281235313975],[127.72027720277202,34.98956666221929],[127.71667716677166,34.98281235313975],[127.71667716677166,34.97099231225057],[127.72027720277202,34.96592658044092],[127.7130771307713,34.94735223047222],[127.70947709477093,34.94059792139268],[127.6986769867699,34.932155035043266],[127.66267662676626,34.90682637599504],[127.64107641076413,34.898383489645624],[127.62667626676267,34.9102035305348],[127.60867608676085,34.94059792139268],[127.59067590675909,34.94566365320233],[127.579875798758,34.933843612313154],[127.57627576275763,34.913580685074564],[127.57627576275763,34.896694912375736],[127.58707587075872,34.87980913967691],[127.60147601476018,34.856169057898555],[127.61947619476194,34.835906130659964],[127.6338763387634,34.82746324431055],[127.64467644676449,34.81564320342136],[127.65547655476558,34.8122660488816],[127.66987669876698,34.819020357961136],[127.6986769867699,34.84266043973949],[127.72027720277202,34.84434901700938],[127.73827738277384,34.8409718624696],[127.75627756277567,34.8409718624696],[127.77427774277743,34.849414748819015],[127.77427774277743,34.829151821580425],[127.77067770677706,34.81564320342136],[127.75987759877597,34.786937389833355],[127.74907749077494,34.73796864900676],[127.74187741877421,34.72614860811758],[127.70587705877062,34.71601714449828],[127.67707677076771,34.72783718538747],[127.65547655476558,34.731214339927234],[127.63747637476376,34.69744279452958],[127.6338763387634,34.70081994906934],[127.63027630276304,34.70081994906934],[127.63027630276304,34.69913137179945],[127.62307623076231,34.69744279452958],[127.6338763387634,34.6856227536404],[127.63747637476376,34.67042555821145],[127.64467644676449,34.626522549194505],[127.64107641076413,34.61807966284509],[127.63027630276304,34.62314539465474],[127.61227612276122,34.63665401281379],[127.59067590675909,34.64003116735357],[127.57267572675727,34.646785476433095],[127.56187561875618,34.661982671862035],[127.5546755467555,34.683934176370514],[127.56187561875618,34.70588568087899],[127.57627576275763,34.72614860811758],[127.58347583475836,34.746411535356174],[127.579875798758,34.763297308055],[127.57267572675727,34.771740194404416],[127.5546755467555,34.80044600799242],[127.55107551075514,34.80213458526231],[127.54747547475478,34.80382316253218],[127.54027540275405,34.80382316253218],[127.53667536675368,34.808888894341834],[127.53667536675368,34.813954626151485],[127.53667536675368,34.819020357961136],[127.54027540275405,34.8223975125009],[127.52587525875259,34.849414748819015],[127.52227522275223,34.85954621243832],[127.52227522275223,34.86461194424797],[127.52587525875259,34.87474340786726],[127.52947529475296,34.87980913967691],[127.52587525875259,34.88487487148656],[127.52227522275223,34.88994060329621],[127.5150751507515,34.891629180566085],[127.5150751507515,34.886563448756434],[127.51147511475114,34.88487487148656],[127.49347493474937,34.849414748819015],[127.48627486274864,34.8409718624696],[127.48267482674828,34.83928328519973],[127.47907479074792,34.83928328519973],[127.44307443074433,34.829151821580425],[127.42507425074251,34.82746324431055],[127.3818738187382,34.82746324431055],[127.36387363873638,34.82408608977077],[127.37827378273784,34.81564320342136],[127.40347403474038,34.80551173980207],[127.42507425074251,34.80044600799242],[127.42507425074251,34.793691698912895],[127.3818738187382,34.78356023529359],[127.36027360273602,34.773428771674304],[127.35667356673565,34.75992015351524],[127.36747367473674,34.7531658444357],[127.38547385473856,34.75992015351524],[127.39627396273966,34.756542998975476],[127.40347403474038,34.746411535356174],[127.39987399874002,34.74303438081641],[127.39627396273966,34.74303438081641],[127.39267392673929,34.73965722627665],[127.40707407074069,34.70081994906934],[127.4358743587436,34.67886844456086],[127.46467464674646,34.661982671862035],[127.48627486274864,34.63665401281379],[127.47907479074792,34.63834259008368],[127.4610746107461,34.63834259008368],[127.45387453874542,34.63665401281379],[127.49347493474937,34.62314539465474],[127.5006750067501,34.611325353765565],[127.50427504275046,34.59106242652696],[127.49347493474937,34.584308117447435],[127.48267482674828,34.57586523109802],[127.46467464674646,34.57755380836791],[127.45387453874542,34.57417665382815],[127.40707407074069,34.5978167356065],[127.39267392673929,34.60119389014626],[127.37827378273784,34.599505312876374],[127.36387363873638,34.59443958106674],[127.34947349473498,34.58599669471732],[127.34227342273425,34.57755380836791],[127.34587345873462,34.57417665382815],[127.35667356673565,34.55391372658954],[127.37107371073711,34.55222514931967],[127.3818738187382,34.54715941751002],[127.41787417874178,34.55560230385943],[127.43947439474397,34.54040510843049],[127.39267392673929,34.50494498576295],[127.37467374673747,34.484682058524356],[127.35667356673565,34.49143636760388],[127.3278732787328,34.474550594905054],[127.33147331473316,34.45597624493635],[127.34227342273425,34.44584478131705],[127.3170731707317,34.444156204047175],[127.27387273872739,34.48974779033401],[127.25947259472593,34.51338787211236],[127.22347223472235,34.54715941751002],[127.21267212672126,34.54547084024013],[127.17307173071731,34.526896490271426],[127.17667176671767,34.51676502665212],[127.18027180271804,34.51338787211236],[127.16227162271622,34.51845360392201],[127.14787147871482,34.520142181191886],[127.13347133471336,34.526896490271426],[127.12627126271263,34.54040510843049],[127.12267122671227,34.55560230385943],[127.129871298713,34.564045190208844],[127.15147151471518,34.57417665382815],[127.15867158671585,34.579242385637784],[127.18027180271804,34.60119389014626],[127.19107191071913,34.62314539465474],[127.19827198271986,34.631588281004156],[127.21267212672126,34.63665401281379],[127.21267212672126,34.61976824011498],[127.2090720907209,34.604571044686026],[127.1946719467195,34.57417665382815],[127.22347223472235,34.57586523109802],[127.24507245072454,34.584308117447435],[127.2630726307263,34.60119389014626],[127.25947259472593,34.62989970373427],[127.25587255872557,34.641719744623444],[127.2486724867249,34.648474053702984],[127.24147241472417,34.65522836278251],[127.24147241472417,34.67042555821145],[127.24507245072454,34.67886844456086],[127.27387273872739,34.70588568087899],[127.28467284672848,34.70081994906934],[127.29187291872921,34.694065639989816],[127.29547295472958,34.687311330910276],[127.28827288272885,34.67717986729099],[127.29547295472958,34.66367124913192],[127.3026730267303,34.65522836278251],[127.31347313473134,34.651851208242746],[127.33147331473316,34.6569169400524],[127.33507335073352,34.66367124913192],[127.34947349473498,34.687311330910276],[127.35667356673565,34.69744279452958],[127.34227342273425,34.71601714449828],[127.33867338673389,34.73290291719711],[127.33147331473316,34.74134580354652],[127.31347313473134,34.729525762657346],[127.29187291872921,34.72108287630793],[127.27387273872739,34.734591494467],[127.2486724867249,34.766674462594764],[127.23427234272344,34.74810011262606],[127.21267212672126,34.70588568087899],[127.19827198271986,34.69068848545004],[127.1838718387184,34.687311330910276],[127.17307173071731,34.687311330910276],[127.14787147871482,34.69068848545004],[127.13707137071373,34.687311330910276],[127.12627126271263,34.68055702183075],[127.10827108271081,34.66029409459216],[127.09747097470978,34.65522836278251],[127.06147061470614,34.63665401281379],[127.04347043470437,34.624833971924616],[127.02907029070292,34.61807966284509],[127.01827018270183,34.6163910855752],[127.0110701107011,34.61301393103544],[127.00747007470073,34.604571044686026],[127.00747007470073,34.59275100379685],[127.00747007470073,34.58093096290767],[127.00027000270006,34.57248807655826],[126.99306993069933,34.564045190208844],[126.9858698586986,34.55391372658954],[126.99306993069933,34.54040510843049],[126.93906939069393,34.49650209941353],[126.93906939069393,34.45428766766646],[126.9318693186932,34.44753335858694],[126.90306903069029,34.459353399476115],[126.89586895868962,34.449221935856826],[126.89226892268925,34.44077904950741],[126.89226892268925,34.42895900861822],[126.89946899468998,34.417138967729045],[126.88506885068853,34.42051612226881],[126.85626856268561,34.437401894967635],[126.82026820268203,34.44753335858694],[126.80946809468094,34.4509105131267],[126.80226802268021,34.47117344036529],[126.80586805868057,34.521830758461775],[126.80226802268021,34.54040510843049],[126.80946809468094,34.55391372658954],[126.80586805868057,34.569110922018496],[126.7986679866799,34.58261954017755],[126.78786787867881,34.589373849257086],[126.77706777067772,34.58599669471732],[126.76626766267663,34.57755380836791],[126.7590675906759,34.56742234474861],[126.75546755467553,34.55729088112932],[126.7590675906759,34.543782262970254],[126.76626766267663,34.53196222208108],[126.76626766267663,34.52351933573166],[126.7338673386734,34.51507644938225],[126.73746737467377,34.50325640849307],[126.76266762667626,34.479616326714705],[126.72306723067231,34.461041976746],[126.70866708667086,34.449221935856826],[126.72306723067231,34.44584478131705],[126.72666726667268,34.44246762677729],[126.72666726667268,34.437401894967635],[126.72666726667268,34.432336163158],[126.72306723067231,34.43064758588811],[126.71586715867159,34.432336163158],[126.70866708667086,34.43571331769776],[126.7050670506705,34.437401894967635],[126.6906669066691,34.43571331769776],[126.68706687066873,34.43064758588811],[126.68706687066873,34.423893276808585],[126.68346683466837,34.41376181318928],[126.67266672666727,34.41038465864952],[126.64386643866442,34.403630349569994],[126.63306633066333,34.39518746322058],[126.62946629466296,34.38843315414104],[126.60426604266041,34.32089006334573],[126.60426604266041,34.312447176996315],[126.60426604266041,34.30062713610714],[126.57906579065792,34.3040042906469],[126.53226532265325,34.292184249757725],[126.52146521465215,34.29387282702761],[126.52146521465215,34.30569286791679],[126.52866528665288,34.32933294969514],[126.52866528665288,34.341152990584334],[126.51786517865179,34.34790729966386],[126.5070650706507,34.34959587693375],[126.47826478264784,34.34959587693375],[126.47826478264784,34.354661608743385],[126.48546485464857,34.361415917822924],[126.48546485464857,34.36479307236269],[126.48906489064893,34.37999026779163],[126.4926649266493,34.381678845061515],[126.49626496264966,34.37999026779163],[126.49986499865003,34.381678845061515],[126.51426514265142,34.403630349569994],[126.51786517865179,34.41376181318928],[126.51426514265142,34.423893276808585],[126.5070650706507,34.42727043134835],[126.49986499865003,34.42895900861822],[126.48546485464857,34.43064758588811],[126.47466474664748,34.43402474042787],[126.47466474664748,34.439090472237524],[126.47826478264784,34.444156204047175],[126.47826478264784,34.44584478131705],[126.47826478264784,34.45766482220624],[126.48546485464857,34.46948486309542],[126.4818648186482,34.47623917217494],[126.46746467464675,34.47286201763518],[126.47106471064711,34.49650209941353],[126.48906489064893,34.50832214030271],[126.51786517865179,34.51338787211236],[126.54306543065434,34.51338787211236],[126.53586535865361,34.521830758461775],[126.53226532265325,34.526896490271426],[126.52146521465215,34.53196222208108],[126.51426514265142,34.53365079935095],[126.52866528665288,34.543782262970254],[126.53946539465397,34.55391372658954],[126.53946539465397,34.562356612938956],[126.52866528665288,34.569110922018496],[126.52146521465215,34.56742234474861],[126.51426514265142,34.55729088112932],[126.5070650706507,34.55391372658954],[126.49986499865003,34.55391372658954],[126.48546485464857,34.56066803566908],[126.47826478264784,34.56066803566908],[126.47466474664748,34.55729088112932],[126.47106471064711,34.55053657204978],[126.46746467464675,34.54040510843049],[126.45666456664566,34.5387165311606],[126.44946449464499,34.5387165311606],[126.4386643866439,34.54040510843049],[126.41706417064171,34.54040510843049],[126.40626406264062,34.5387165311606],[126.39186391863922,34.53365079935095],[126.38826388263885,34.55053657204978],[126.38106381063812,34.55897945839919],[126.35586355863558,34.569110922018496],[126.35586355863558,34.57248807655826],[126.35226352263521,34.579242385637784],[126.34506345063454,34.584308117447435],[126.34146341463418,34.57755380836791],[126.34146341463418,34.57417665382815],[126.33426334263345,34.57079949928837],[126.32346323463236,34.569110922018496],[126.31986319863199,34.57248807655826],[126.29826298262986,34.5876852719872],[126.2946629466295,34.589373849257086],[126.29106291062914,34.599505312876374],[126.2946629466295,34.60119389014626],[126.29826298262986,34.60288246741615],[126.30186301863017,34.60963677649568],[126.30546305463054,34.604571044686026],[126.31626316263163,34.604571044686026],[126.32346323463236,34.60963677649568],[126.31986319863199,34.61976824011498],[126.29106291062914,34.62989970373427],[126.26946269462695,34.641719744623444],[126.26946269462695,34.67211413548134],[126.27666276662768,34.70250852633923],[126.28746287462877,34.72614860811758],[126.29106291062914,34.73290291719711],[126.28746287462877,34.74303438081641],[126.29106291062914,34.74978868989594],[126.29826298262986,34.7531658444357],[126.30546305463054,34.7531658444357],[126.31266312663126,34.751477267165825],[126.31986319863199,34.74810011262606],[126.32706327063272,34.736280071736886],[126.35586355863558,34.69744279452958],[126.3486634866349,34.687311330910276],[126.34506345063454,34.67717986729099],[126.34506345063454,34.667048403671686],[126.3486634866349,34.6569169400524],[126.37026370263703,34.60963677649568],[126.38106381063812,34.60288246741615],[126.43146431464316,34.59612815833661],[126.45306453064529,34.584308117447435],[126.46386463864638,34.584308117447435],[126.47106471064711,34.60119389014626],[126.46026460264602,34.60119389014626],[126.45666456664566,34.60288246741615],[126.43506435064353,34.606259621955914],[126.42426424264244,34.61976824011498],[126.41346413464134,34.62989970373427],[126.41706417064171,34.65353978551262],[126.40266402664025,34.65016263097286],[126.39546395463958,34.63665401281379],[126.38466384663849,34.63665401281379],[126.38106381063812,34.65522836278251],[126.37746377463776,34.67886844456086],[126.38466384663849,34.694065639989816],[126.37746377463776,34.710951412688644],[126.40626406264062,34.71263998995852],[126.44946449464499,34.70588568087899],[126.45306453064529,34.69744279452958],[126.44946449464499,34.6856227536404],[126.44946449464499,34.68055702183075],[126.44946449464499,34.67717986729099],[126.45306453064529,34.67042555821145],[126.46386463864638,34.66535982640181],[126.47106471064711,34.65860551732227],[126.4818648186482,34.651851208242746],[126.49986499865003,34.64509689916321],[126.51066510665106,34.63665401281379],[126.52506525065252,34.62821112646439],[126.53586535865361,34.62314539465474],[126.53946539465397,34.62821112646439],[126.51786517865179,34.65016263097286],[126.53226532265325,34.651851208242746],[126.55026550265507,34.64340832189333],[126.57546575465756,34.63327685827403],[126.60426604266041,34.624833971924616],[126.62226622266223,34.62989970373427],[126.60426604266041,34.63327685827403],[126.58626586265865,34.641719744623444],[126.55386553865537,34.66367124913192],[126.5610656106561,34.67042555821145],[126.53946539465397,34.683934176370514],[126.5070650706507,34.71770572176817],[126.48906489064893,34.72614860811758],[126.46386463864638,34.729525762657346],[126.43506435064353,34.72783718538747],[126.41706417064171,34.73965722627665],[126.39186391863922,34.73290291719711],[126.36666366663667,34.73965722627665],[126.3630636306363,34.74978868989594],[126.37746377463776,34.763297308055],[126.39186391863922,34.76836303986465],[126.42066420664207,34.76498588532489],[126.46026460264602,34.77849450348394],[126.5070650706507,34.751477267165825],[126.52146521465215,34.7531658444357],[126.52506525065252,34.751477267165825],[126.52866528665288,34.74978868989594],[126.52866528665288,34.74810011262606],[126.53586535865361,34.746411535356174],[126.53226532265325,34.76498588532489],[126.53226532265325,34.78356023529359],[126.54306543065434,34.79538027618277],[126.56826568265683,34.80044600799242],[126.6150661506615,34.78862596710324],[126.63666636666369,34.78862596710324],[126.62946629466296,34.80044600799242],[126.64746647466478,34.807200317071946],[126.65466654666545,34.808888894341834],[126.66546665466655,34.808888894341834],[126.65106651066515,34.8223975125009],[126.62946629466296,34.82577466704066],[126.57546575465756,34.8223975125009],[126.57906579065792,34.83084039885031],[126.57906579065792,34.83759470792984],[126.57546575465756,34.84434901700938],[126.57546575465756,34.854480480628666],[126.57906579065792,34.86123478970819],[126.58626586265865,34.86630052151784],[126.58986589865901,34.87305483059738],[126.58986589865901,34.88318629421667],[126.58266582665829,34.898383489645624],[126.56826568265683,34.90176064418539],[126.55386553865537,34.89500633510585],[126.54306543065434,34.88318629421667],[126.53946539465397,34.87474340786726],[126.5466654666547,34.85785763516843],[126.55026550265507,34.849414748819015],[126.5466654666547,34.84772617154914],[126.53586535865361,34.82746324431055],[126.52506525065252,34.793691698912895],[126.51426514265142,34.78187165802372],[126.4926649266493,34.78018308075383],[126.4926649266493,34.78356023529359],[126.48546485464857,34.786937389833355],[126.4926649266493,34.792003121643006],[126.49626496264966,34.80213458526231],[126.49986499865003,34.808888894341834],[126.48546485464857,34.813954626151485],[126.47826478264784,34.81057747161172],[126.46746467464675,34.80382316253218],[126.45666456664566,34.80044600799242],[126.4278642786428,34.80551173980207],[126.42066420664207,34.80213458526231],[126.42066420664207,34.792003121643006],[126.40626406264062,34.792003121643006],[126.38466384663849,34.786937389833355],[126.3738637386374,34.79031454437313],[126.37026370263703,34.80213458526231],[126.37746377463776,34.81057747161172],[126.39906399063995,34.82746324431055],[126.40626406264062,34.83759470792984],[126.40986409864098,34.84434901700938],[126.40986409864098,34.851103326088904],[126.40986409864098,34.85954621243832],[126.40986409864098,34.87474340786726],[126.41346413464134,34.8814977169468],[126.42426424264244,34.88994060329621],[126.41346413464134,34.898383489645624],[126.40266402664025,34.91526926234444],[126.39546395463958,34.93553218958304],[126.39906399063995,34.95072938501198],[126.40986409864098,34.96254942590116],[126.43146431464316,34.97268088952046],[126.43506435064353,34.981123775869875],[126.40986409864098,34.98618950767951],[126.39906399063995,34.98450093040964],[126.39186391863922,34.97943519859999],[126.38826388263885,34.974369466790336],[126.38106381063812,34.97268088952046],[126.37026370263703,34.969303734980684],[126.3738637386374,34.959172271361396],[126.37746377463776,34.94735223047222],[126.37746377463776,34.93722076685292],[126.3630636306363,34.92708930323363],[126.34506345063454,34.92708930323363],[126.32706327063272,34.93046645777339],[126.31626316263163,34.93722076685292],[126.32346323463236,34.94397507593246],[126.33066330663308,34.94397507593246],[126.31986319863199,34.95072938501198],[126.31266312663126,34.95579511682163],[126.30546305463054,34.96423800317105],[126.30186301863017,34.97268088952046],[126.31266312663126,34.9777466213301],[126.32346323463236,34.9777466213301],[126.3486634866349,34.97268088952046],[126.34506345063454,34.994632394028926],[126.3738637386374,35.016583898537405],[126.36666366663667,35.038535403045884],[126.33786337863381,35.07061837117365],[126.31986319863199,35.08412698933272],[126.30186301863017,35.08919272114237],[126.3090630906309,35.065552639364],[126.30186301863017,35.053732598474824],[126.28746287462877,35.053732598474824],[126.27306273062732,35.06892979390378],[126.28386283862841,35.079061257523065],[126.25866258662586,35.106078493841196],[126.2550625506255,35.12296426654002],[126.26946269462695,35.136472884699074],[126.28746287462877,35.13985003923884],[126.30546305463054,35.13140715288942],[126.31626316263163,35.116209957460484],[126.32706327063272,35.12296426654002],[126.33426334263345,35.1347843074292],[126.34146341463418,35.156735811937665],[126.3486634866349,35.14491577104849],[126.35226352263521,35.136472884699074],[126.3486634866349,35.11789853473037],[126.34506345063454,35.10776707111107],[126.34146341463418,35.10270133930142],[126.34506345063454,35.09594703022189],[126.3486634866349,35.09594703022189],[126.35226352263521,35.09763560749178],[126.35586355863558,35.09594703022189],[126.35946359463594,35.08243841206283],[126.3630636306363,35.07737268025318],[126.36666366663667,35.073995525713414],[126.37746377463776,35.06892979390378],[126.38826388263885,35.065552639364],[126.40266402664025,35.065552639364],[126.40986409864098,35.06217548482424],[126.40626406264062,35.05035544393506],[126.40626406264062,35.038535403045884],[126.41346413464134,35.02840393942658],[126.42426424264244,35.01996105307717],[126.44946449464499,35.06724121663389],[126.45306453064529,35.08243841206283],[126.45306453064529,35.101012762031544],[126.44586445864462,35.106078493841196],[126.4278642786428,35.11114422565083],[126.42066420664207,35.11452138019061],[126.41346413464134,35.11958711200025],[126.40266402664025,35.141538616508726],[126.37026370263703,35.17362158463649],[126.3630636306363,35.18713020279556],[126.36666366663667,35.19219593460521],[126.37026370263703,35.19726166641486],[126.3738637386374,35.2023273982245],[126.37746377463776,35.2124588618438],[126.36666366663667,35.21752459365345],[126.3630636306363,35.225967480002865],[126.3630636306363,35.23947609816193],[126.35226352263521,35.23609894362215],[126.33786337863381,35.23441036635228],[126.3090630906309,35.23272178908239],[126.31986319863199,35.24454182997157],[126.33786337863381,35.24791898451133],[126.35946359463594,35.24960756178122],[126.37746377463776,35.25298471632098],[126.37026370263703,35.25467329359087],[126.36666366663667,35.256361870860744],[126.3630636306363,35.25805044813063],[126.35586355863558,35.25973902540052],[126.3630636306363,35.26987048901981],[126.36666366663667,35.27493622082946],[126.3738637386374,35.27831337536922],[126.38106381063812,35.283379107178874],[126.38466384663849,35.29182199352829],[126.38106381063812,35.29857630260781],[126.37746377463776,35.30533061168735],[126.37746377463776,35.31208492076688],[126.38106381063812,35.32728211619582],[126.38826388263885,35.34247931162477],[126.40986409864098,35.36949654794289],[126.41706417064171,35.364430816133236],[126.43146431464316,35.3492336207043],[126.44946449464499,35.344167888894646],[126.46026460264602,35.345856466164534],[126.45666456664566,35.35261077524406],[126.42426424264244,35.38300516610195],[126.41706417064171,35.39482520699113],[126.42426424264244,35.41846528876948],[126.44226442264426,35.4471711023575],[126.47106471064711,35.49782842045397],[126.4926649266493,35.5248456567721],[126.52506525065252,35.53497712039139],[126.5610656106561,35.54173142947093],[126.59346593465938,35.54173142947093],[126.60786607866078,35.55186289309022],[126.62226622266223,35.568748665789045],[126.64386643866442,35.57212582032882],[126.66186661866618,35.55692862489987],[126.679866798668,35.538354274931166],[126.69426694266946,35.53497712039139],[126.679866798668,35.57212582032882],[126.66906669066691,35.589011593027635],[126.65466654666545,35.595765902107175],[126.51426514265142,35.57719155213846],[126.46386463864638,35.6025202111867],[126.46746467464675,35.62953744750483],[126.46746467464675,35.63966891112412],[126.4926649266493,35.64980037474342],[126.51066510665106,35.66499757017236],[126.52866528665288,35.68357192014108],[126.5610656106561,35.69708053830013],[126.59706597065974,35.713966310998956],[126.6258662586626,35.74604927912674],[126.62946629466296,35.77475509271474],[126.64386643866442,35.783197979064155],[126.65466654666545,35.78826371087381],[126.66186661866618,35.793329442683444],[126.69786697866982,35.796706597223206],[126.7338673386734,35.79164086541357],[126.75546755467553,35.778132247254504],[126.76986769867699,35.77475509271474],[126.78066780667808,35.75955789728579],[126.78786787867881,35.7680007836352],[126.78786787867881,35.77982082452439],[126.79146791467917,35.79164086541357],[126.77706777067772,35.80008375176298],[126.76986769867699,35.80514948357262],[126.74826748267486,35.813592369922034],[126.72666726667268,35.825412410811225],[126.70866708667086,35.83554387443051],[126.70146701467019,35.840609606240164],[126.7050670506705,35.84905249258958],[126.71226712267122,35.85749537893899],[126.71946719467195,35.86256111074864],[126.73026730267304,35.86424968801852],[126.78426784267845,35.86256111074864],[126.7986679866799,35.86256111074864],[126.80586805868057,35.865938265288406],[126.8130681306813,35.876069728907694],[126.8130681306813,35.882824037987234],[126.82026820268203,35.887889769796885],[126.83466834668349,35.88957834706676],[126.83826838268385,35.89295550160652],[126.83106831068312,35.901398387955936],[126.82026820268203,35.908152697035476],[126.80946809468094,35.91152985157524],[126.80586805868057,35.90984127430535],[126.7338673386734,35.886201192527],[126.70866708667086,35.88451261525711],[126.66186661866618,35.887889769796885],[126.61146611466114,35.88957834706676],[126.61146611466114,35.908152697035476],[126.60786607866078,35.93179277881383],[126.6006660066601,35.93685851062348],[126.56826568265683,35.945301396972894],[126.52506525065252,35.94023566516324],[126.52146521465215,35.970630056021136],[126.61146611466114,35.97907294237055],[126.66186661866618,35.98413867418019],[126.71226712267122,35.985827251450075],[126.72666726667268,35.99427013779949],[126.7446674466745,35.98920440598984],[126.76626766267663,35.99764729233925],[126.80226802268021,36.021287374117605],[126.84906849068494,36.03648456954656],[126.87066870668707,36.048304610435736],[126.87066870668707,36.0618132285948],[126.8130681306813,36.04661603316585],[126.79146791467917,36.04155030135621],[126.76986769867699,36.03141883773691],[126.75546755467553,36.01791021957784],[126.73746737467377,36.01115591049832],[126.71226712267122,36.007778755958554],[126.69426694266946,35.99933586960914],[126.67626676266764,36.006090178688666],[126.67266672666727,36.012844487768206],[126.66906669066691,36.021287374117605],[126.66546665466655,36.03479599227667],[126.65826658266582,36.04492745589597],[126.64026640266405,36.063501805864675],[126.62946629466296,36.07532184675385],[126.64386643866442,36.085453310373154],[126.64026640266405,36.090519042182805],[126.6258662586626,36.09558477399246],[126.61146611466114,36.09896192853222],[126.58986589865901,36.131044896659986],[126.5718657186572,36.13779920573951],[126.55746557465574,36.131044896659986],[126.55386553865537,36.131044896659986],[126.55026550265507,36.14117636027929],[126.52866528665288,36.152996401168465],[126.51066510665106,36.15130782389858],[126.50346503465033,36.132733473929875],[126.49986499865003,36.125979164850335],[126.4926649266493,36.131044896659986],[126.49626496264966,36.15975071024799],[126.53226532265325,36.173259328407056],[126.5610656106561,36.18170221475647],[126.60426604266041,36.17157075113717],[126.58986589865901,36.19183367837576],[126.57906579065792,36.1985879874553],[126.56826568265683,36.20534229653482],[126.5610656106561,36.20703087380471],[126.55386553865537,36.20365371926495],[126.55026550265507,36.20534229653482],[126.53946539465397,36.21209660561436],[126.53586535865361,36.21885091469389],[126.55746557465574,36.26613107825061],[126.56826568265683,36.2863940054892],[126.58266582665829,36.294836891838614],[126.5718657186572,36.3049683554579],[126.52866528665288,36.31678839634708],[126.51426514265142,36.32185412815673],[126.52866528665288,36.333674169045906],[126.5718657186572,36.34211705539532],[126.58266582665829,36.35224851901462],[126.57546575465756,36.36575713717369],[126.5610656106561,36.36913429171345],[126.52866528665288,36.36913429171345],[126.52146521465215,36.3742000235231],[126.5070650706507,36.38602006441228],[126.49986499865003,36.39108579622193],[126.49986499865003,36.397840105301455],[126.51426514265142,36.397840105301455],[126.49986499865003,36.419791609809934],[126.51786517865179,36.42823449615935],[126.53586535865361,36.433300227968985],[126.55746557465574,36.455251732477464],[126.59706597065974,36.46538319609677],[126.61866618666187,36.47382608244618],[126.55746557465574,36.47382608244618],[126.5466654666547,36.46707177336664],[126.52506525065252,36.4417431143184],[126.5070650706507,36.438365959778636],[126.49626496264966,36.44849742339794],[126.48906489064893,36.46707177336664],[126.4818648186482,36.48564612333536],[126.4818648186482,36.497466164224534],[126.50346503465033,36.51604051419325],[126.51426514265142,36.5295491323523],[126.51066510665106,36.53461486416195],[126.4926649266493,36.52786055508243],[126.4818648186482,36.53461486416195],[126.47466474664748,36.5396805959716],[126.47106471064711,36.5396805959716],[126.46746467464675,36.54981205959089],[126.47106471064711,36.558254945940305],[126.46746467464675,36.56669783228972],[126.46386463864638,36.58358360498855],[126.45666456664566,36.59202649133796],[126.45666456664566,36.595403645877724],[126.47106471064711,36.59709222314761],[126.4926649266493,36.60384653222714],[126.51066510665106,36.60384653222714],[126.51426514265142,36.61566657311633],[126.52146521465215,36.62579803673562],[126.51066510665106,36.63424092308503],[126.49986499865003,36.63761807762479],[126.48546485464857,36.64943811851397],[126.4926649266493,36.66125815940316],[126.5070650706507,36.669701045752575],[126.49986499865003,36.684898241181514],[126.47466474664748,36.68827539572128],[126.47106471064711,36.705161168420105],[126.47826478264784,36.71698120930928],[126.49986499865003,36.720358363849044],[126.48906489064893,36.732178404738235],[126.4818648186482,36.73893271381776],[126.47826478264784,36.747375600167175],[126.47106471064711,36.740621291087635],[126.45666456664566,36.72880125019846],[126.44226442264426,36.72373551838882],[126.4386643866439,36.71698120930928],[126.4386643866439,36.710226900229756],[126.44586445864462,36.700095436610454],[126.44586445864462,36.683209663911626],[126.4386643866439,36.664635313942924],[126.44226442264426,36.63761807762479],[126.43506435064353,36.61566657311633],[126.42426424264244,36.607223686766915],[126.40626406264062,36.6173551503862],[126.38466384663849,36.61904372765609],[126.36666366663667,36.62917519127538],[126.37026370263703,36.683209663911626],[126.37746377463776,36.70178401388034],[126.36666366663667,36.70684974568999],[126.37026370263703,36.732178404738235],[126.35946359463594,36.74230986835752],[126.34146341463418,36.740621291087635],[126.33426334263345,36.727112672928584],[126.33066330663308,36.71191547749963],[126.32346323463236,36.700095436610454],[126.30186301863017,36.700095436610454],[126.31266312663126,36.683209663911626],[126.33066330663308,36.66125815940316],[126.33426334263345,36.64437238670433],[126.32346323463236,36.63592950035492],[126.32706327063272,36.62917519127538],[126.34146341463418,36.61060084130668],[126.32706327063272,36.607223686766915],[126.31626316263163,36.60215795495726],[126.30546305463054,36.59371506860785],[126.2946629466295,36.58189502771867],[126.2946629466295,36.59033791406809],[126.2946629466295,36.59709222314761],[126.29106291062914,36.60384653222714],[126.28746287462877,36.61060084130668],[126.30186301863017,36.63424092308503],[126.27306273062732,36.67307820029234],[126.28026280262804,36.69334112753093],[126.27306273062732,36.720358363849044],[126.2550625506255,36.71191547749963],[126.229862298623,36.684898241181514],[126.20826208262082,36.67814393210199],[126.19746197461978,36.6764553548321],[126.18666186661869,36.67307820029234],[126.17946179461796,36.67307820029234],[126.16506165061651,36.67814393210199],[126.16146161461614,36.683209663911626],[126.15786157861578,36.69334112753093],[126.15786157861578,36.70178401388034],[126.16146161461614,36.70684974568999],[126.20466204662046,36.705161168420105],[126.21186211862118,36.71191547749963],[126.21186211862118,36.727112672928584],[126.20106201062009,36.74230986835752],[126.18666186661869,36.74906417743705],[126.17226172261724,36.752441331976826],[126.15786157861578,36.76088421832624],[126.15426154261542,36.74906417743705],[126.15066150661505,36.72373551838882],[126.14346143461438,36.71191547749963],[126.13266132661329,36.703472591150216],[126.12906129061292,36.71191547749963],[126.12906129061292,36.73724413654787],[126.12906129061292,36.76088421832624],[126.13266132661329,36.767638527405765],[126.15786157861578,36.794655763723895],[126.16146161461614,36.803098650073295],[126.16506165061651,36.81660726823236],[126.16866168661687,36.80647580461307],[126.17226172261724,36.79803291826366],[126.17946179461796,36.789590031914244],[126.18666186661869,36.78114714556483],[126.19026190261906,36.78452430010459],[126.19746197461978,36.78452430010459],[126.20466204662046,36.782835722834704],[126.21186211862118,36.78114714556483],[126.20466204662046,36.79296718645401],[126.19386193861942,36.808164381882946],[126.21906219062191,36.80141007280342],[126.23346233462337,36.80478722734318],[126.2406624066241,36.81660726823236],[126.21546215462155,36.81829584550225],[126.19746197461978,36.8233615773119],[126.19746197461978,36.83518161820108],[126.21186211862118,36.85713312270954],[126.19026190261906,36.872330318138495],[126.19386193861942,36.88583893629756],[126.20826208262082,36.89765897718674],[126.23346233462337,36.90441328626626],[126.22626226262264,36.87908462721802],[126.229862298623,36.872330318138495],[126.24426244262446,36.87064174086861],[126.26946269462695,36.87064174086861],[126.27666276662768,36.87401889540837],[126.28026280262804,36.88415035902767],[126.28386283862841,36.90610186353615],[126.28026280262804,36.93649625439403],[126.28386283862841,36.96182491344227],[126.3090630906309,36.96689064525192],[126.30546305463054,36.95338202709286],[126.30546305463054,36.93143052258439],[126.31266312663126,36.90947901807591],[126.32346323463236,36.88246178175778],[126.31626316263163,36.87401889540837],[126.3090630906309,36.865576009058955],[126.30186301863017,36.85713312270954],[126.30186301863017,36.84700165909025],[126.3090630906309,36.83349304093119],[126.3090630906309,36.82842730912154],[126.30186301863017,36.825050154581774],[126.28386283862841,36.814918690962486],[126.28026280262804,36.81154153642271],[126.28386283862841,36.803098650073295],[126.28746287462877,36.794655763723895],[126.29106291062914,36.789590031914244],[126.29826298262986,36.79127860918412],[126.31626316263163,36.80478722734318],[126.32706327063272,36.80478722734318],[126.35586355863558,36.789590031914244],[126.33426334263345,36.825050154581774],[126.32706327063272,36.84700165909025],[126.33786337863381,36.85713312270954],[126.35586355863558,36.84024735001073],[126.36666366663667,36.83518161820108],[126.37026370263703,36.84700165909025],[126.3738637386374,36.850378813630016],[126.38466384663849,36.85375596816978],[126.40626406264062,36.85713312270954],[126.40626406264062,36.86388743178908],[126.39546395463958,36.86388743178908],[126.37746377463776,36.87064174086861],[126.37746377463776,36.877396049948146],[126.40266402664025,36.88077320448791],[126.41706417064171,36.89934755445661],[126.42066420664207,36.92298763623498],[126.40986409864098,36.93818483166392],[126.40266402664025,36.94156198620368],[126.37746377463776,36.94156198620368],[126.3630636306363,36.94662771801333],[126.35226352263521,36.955070604362746],[126.35226352263521,36.965202067982034],[126.35586355863558,36.96857922252181],[126.37026370263703,36.9601363361724],[126.37746377463776,36.975333531601336],[126.37026370263703,36.98377641795075],[126.35226352263521,36.98715357249051],[126.33426334263345,36.98715357249051],[126.34146341463418,36.99390788157005],[126.35226352263521,37.00066219064958],[126.3630636306363,37.00066219064958],[126.3738637386374,36.997285036109815],[126.38466384663849,36.990530727030276],[126.39186391863922,36.990530727030276],[126.39546395463958,36.992219304300164],[126.39186391863922,37.00066219064958],[126.39186391863922,37.0074164997291],[126.4278642786428,37.00910507699899],[126.44586445864462,37.00403934518934],[126.45306453064529,36.990530727030276],[126.44946449464499,36.98208784068086],[126.4386643866439,36.97364495433145],[126.43146431464316,36.96182491344227],[126.4386643866439,36.94662771801333],[126.44586445864462,36.95338202709286],[126.46026460264602,36.95844775890251],[126.46746467464675,36.956759181632634],[126.47106471064711,36.950004872553095],[126.47466474664748,36.94156198620368],[126.47826478264784,36.93649625439403],[126.47826478264784,36.929741945314504],[126.47826478264784,36.92636479077474],[126.46746467464675,36.91792190442533],[126.46746467464675,36.91116759534579],[126.46746467464675,36.867264586328844],[126.46746467464675,36.85375596816978],[126.47826478264784,36.845313081820365],[126.48546485464857,36.8419359272806],[126.48546485464857,36.84700165909025],[126.4926649266493,36.87064174086861],[126.51066510665106,36.9196104816952],[126.51426514265142,36.94156198620368],[126.51786517865179,36.94831629528322],[126.53226532265325,36.94156198620368],[126.55026550265507,36.92636479077474],[126.55746557465574,36.914544749885565],[126.5610656106561,36.90441328626626],[126.56826568265683,36.89934755445661],[126.58266582665829,36.89765897718674],[126.58266582665829,36.90441328626626],[126.57546575465756,36.91116759534579],[126.56826568265683,36.93143052258439],[126.55746557465574,36.94156198620368],[126.49626496264966,36.99390788157005],[126.4926649266493,36.997285036109815],[126.49626496264966,37.0074164997291],[126.5070650706507,37.0074164997291],[126.51426514265142,36.99897361337969],[126.53226532265325,36.98208784068086],[126.53946539465397,36.977022108871225],[126.55026550265507,36.97364495433145],[126.5610656106561,36.97364495433145],[126.5718657186572,36.977022108871225],[126.5718657186572,36.98377641795075],[126.56466564665647,36.990530727030276],[126.55026550265507,36.99390788157005],[126.53226532265325,37.00066219064958],[126.51066510665106,37.01585938607852],[126.50346503465033,37.039499467856885],[126.49986499865003,37.054696663285824],[126.51786517865179,37.054696663285824],[126.53586535865361,37.04963093147617],[126.55026550265507,37.039499467856885],[126.56826568265683,37.027679426967694],[126.58986589865901,37.017547963348406],[126.59706597065974,37.01079365426888],[126.61146611466114,37.00235076791947],[126.6258662586626,36.99559645883993],[126.63666636666369,36.98208784068086],[126.63306633066333,36.96857922252181],[126.62226622266223,36.9601363361724],[126.62226622266223,36.95338202709286],[126.63306633066333,36.93818483166392],[126.63306633066333,36.928053368044615],[126.62946629466296,36.91116759534579],[126.64386643866442,36.91792190442533],[126.64746647466478,36.92467621350485],[126.64746647466478,36.93311909985427],[126.64386643866442,36.95844775890251],[126.65106651066515,36.96689064525192],[126.65466654666545,36.975333531601336],[126.66546665466655,36.9888421497604],[126.679866798668,36.99390788157005],[126.69786697866982,36.99559645883993],[126.71586715867159,36.992219304300164],[126.7338673386734,36.98715357249051],[126.7590675906759,36.98208784068086],[126.77346773467735,36.97364495433145],[126.79506795067954,36.955070604362746],[126.7986679866799,36.934807677124155],[126.78066780667808,36.8909046681072],[126.79506795067954,36.89765897718674],[126.8130681306813,36.91623332715544],[126.8238682386824,36.91792190442533],[126.83106831068312,36.90947901807591],[126.83466834668349,36.89597039991685],[126.83826838268385,36.867264586328844],[126.83466834668349,36.86051027724932],[126.83106831068312,36.84700165909025],[126.83106831068312,36.83855877274084],[126.83106831068312,36.831804463661314],[126.84186841868421,36.81998442277212],[126.84906849068494,36.787901454644356],[126.84546845468458,36.77945856829494],[126.83106831068312,36.77439283648529],[126.83106831068312,36.76594995013588],[126.83826838268385,36.76088421832624],[126.84186841868421,36.75750706378646],[126.84906849068494,36.7541299092467],[126.85626856268561,36.77608141375518],[126.8670686706867,36.789590031914244],[126.87066870668707,36.80478722734318],[126.86346863468634,36.82842730912154],[126.88506885068853,36.825050154581774],[126.90306903069029,36.82167300004201],[126.87066870668707,36.852067390899904],[126.85986859868598,36.86895316359873],[126.88146881468816,36.877396049948146],[126.89946899468998,36.87908462721802],[126.9426694266943,36.892593245377086],[126.97506975069751,36.912856172615676],[126.98946989469897,36.91792190442533],[127.00027000270006,36.928053368044615],[127.00747007470073,36.95338202709286],[127.00387003870037,36.956759181632634],[126.9966699666997,36.965202067982034],[126.99306993069933,36.96689064525192],[127.00027000270006,36.970267799791685],[127.00387003870037,36.971956377061574],[127.0110701107011,36.971956377061574],[127.02547025470255,36.977022108871225],[127.03267032670328,36.9787106861411],[127.03987039870401,36.98208784068086],[127.04347043470437,36.99390788157005],[126.98226982269824,36.98039926341099],[126.97146971469715,36.970267799791685],[126.97506975069751,36.939873408933806],[126.96786967869679,36.93143052258439],[126.94626946269466,36.92636479077474],[126.91386913869138,36.929741945314504],[126.87426874268743,36.94831629528322],[126.83826838268385,36.975333531601336],[126.8238682386824,37.00235076791947],[126.88506885068853,37.0074164997291],[126.88506885068853,37.01417080880864],[126.88146881468816,37.01585938607852],[126.87066870668707,37.02092511788817],[126.88146881468816,37.02261369515806],[126.89226892268925,37.02261369515806],[126.90306903069029,37.01923654061828],[126.91026910269102,37.01417080880864],[126.90666906669065,37.032745158777345],[126.89226892268925,37.04963093147617],[126.88146881468816,37.069893858714764],[126.89226892268925,37.095222517763005],[126.8778687786878,37.10028824957266],[126.87066870668707,37.090156785953354],[126.86346863468634,37.074959590524415],[126.86346863468634,37.05807381782559],[126.85986859868598,37.04118804512676],[126.84906849068494,37.037810890587],[126.83826838268385,37.04456519966652],[126.82026820268203,37.04118804512676],[126.80226802268021,37.037810890587],[126.75546755467553,37.04963093147617],[126.75546755467553,37.059762395095476],[126.75186751867517,37.069893858714764],[126.75546755467553,37.08340247687383],[126.75186751867517,37.10028824957266],[126.76266762667626,37.117174022271485],[126.77706777067772,37.132371217700424],[126.79506795067954,37.139125526779964],[126.80946809468094,37.1441912585896],[126.83826838268385,37.1441912585896],[126.86346863468634,37.15094556766914],[126.87066870668707,37.157699876748666],[126.87066870668707,37.17627422671738],[126.86346863468634,37.179651381257145],[126.84906849068494,37.17289707217762],[126.83106831068312,37.159388454018554],[126.81666816668167,37.16107703128843],[126.80586805868057,37.164454185828205],[126.80226802268021,37.17289707217762],[126.80226802268021,37.184717113066796],[126.77706777067772,37.17627422671738],[126.7590675906759,37.164454185828205],[126.72306723067231,37.13405979497031],[126.71586715867159,37.12730548589079],[126.70146701467019,37.12392833135101],[126.6906669066691,37.1256169086209],[126.68706687066873,37.13068264043055],[126.68706687066873,37.139125526779964],[126.6906669066691,37.14756841312938],[126.70866708667086,37.164454185828205],[126.67626676266764,37.159388454018554],[126.66906669066691,37.16107703128843],[126.66546665466655,37.17627422671738],[126.66906669066691,37.18640569033667],[126.68346683466837,37.19147142214632],[126.69786697866982,37.194848576686084],[126.70866708667086,37.199914308495735],[126.71946719467195,37.2134229266548],[126.71586715867159,37.21680008119456],[126.6906669066691,37.2134229266548],[126.679866798668,37.21848865846445],[126.67266672666727,37.22862012208374],[126.66546665466655,37.242128740242805],[126.65826658266582,37.25394878113198],[126.66186661866618,37.25563735840187],[126.66546665466655,37.257325935671744],[126.67266672666727,37.262391667481396],[126.679866798668,37.257325935671744],[126.6906669066691,37.257325935671744],[126.70866708667086,37.262391667481396],[126.72666726667268,37.25901451294163],[126.73746737467377,37.25226020386209],[126.75186751867517,37.24888304932233],[126.76626766267663,37.25394878113198],[126.76626766267663,37.24381731751268],[126.76626766267663,37.2319972766235],[126.77346773467735,37.22355439027409],[126.78066780667808,37.220177235734326],[126.79146791467917,37.22355439027409],[126.7986679866799,37.23368585389339],[126.80226802268021,37.25394878113198],[126.82026820268203,37.27421170837057],[126.83466834668349,37.2725231311007],[126.84906849068494,37.26576882202116],[126.87066870668707,37.26745739929105],[126.8670686706867,37.27590028564046],[126.85986859868598,37.282654594719986],[126.85266852668525,37.28603174925975],[126.84186841868421,37.28772032652964],[126.82746827468276,37.28772032652964],[126.8238682386824,37.29616321287905],[126.80586805868057,37.297851790148925],[126.79506795067954,37.29447463560916],[126.78426784267845,37.29447463560916],[126.76626766267663,37.297851790148925],[126.7338673386734,37.30629467649834],[126.6906669066691,37.33331191281647],[126.68706687066873,37.34344337643577],[126.7050670506705,37.367083458214125],[126.71946719467195,37.37721492183341],[126.71586715867159,37.38396923091295],[126.66546665466655,37.389034962722604],[126.64026640266405,37.36370630367436],[126.6150661506615,37.3789034991033],[126.6258662586626,37.39747784907202],[126.64026640266405,37.41436362177083],[126.62946629466296,37.424495085390134],[126.61146611466114,37.43293797173955],[126.59706597065974,37.439692280819074],[126.59706597065974,37.45826663078779],[126.59346593465938,37.471775248946855],[126.60426604266041,37.485283867105906],[126.63306633066333,37.492038176185446],[126.64026640266405,37.49541533072521],[126.64386643866442,37.50385821707462],[126.62946629466296,37.507235371614385],[126.6258662586626,37.49879248526497],[126.60786607866078,37.4971039079951],[126.6006660066601,37.507235371614385],[126.6006660066601,37.5258097215831],[126.60426604266041,37.549449803361455],[126.6006660066601,37.55789268971087],[126.58986589865901,37.57308988513981],[126.58266582665829,37.584909926028985],[126.5718657186572,37.59841854418805],[126.5610656106561,37.606861430537464],[126.5610656106561,37.62037004869653],[126.55746557465574,37.64063297593512],[126.5466654666547,37.67271594406289],[126.53226532265325,37.75545623028714],[126.53586535865361,37.7689648484462],[126.5466654666547,37.77065342571609],[126.60426604266041,37.75376765301726],[126.62226622266223,37.757144807557026],[126.63666636666369,37.76221053936668],[126.64746647466478,37.76558769390644],[126.66186661866618,37.757144807557026],[126.66546665466655,37.74532476666785],[126.66906669066691,37.72843899396902],[126.66906669066691,37.70817606673043],[126.66186661866618,37.696356025841254],[126.66186661866618,37.67271594406289],[126.6906669066691,37.652453016824296],[126.73026730267304,37.63894439866523],[126.75546755467553,37.63725582139536],[126.73746737467377,37.654141594094185],[126.679866798668,37.68622456222195],[126.69426694266946,37.721684684889496],[126.70146701467019,37.74363618939796],[126.69786697866982,37.757144807557026],[126.68706687066873,37.774030580255854],[126.68706687066873,37.78247346660527],[126.68346683466837,37.794293507494444],[126.6906669066691,37.81286785746316],[126.70146701467019,37.82975363016199],[126.69426694266946,37.836507939241514],[126.68346683466837,37.836507939241514],[126.66906669066691,37.8280650528921],[126.66546665466655,37.8280650528921],[126.65466654666545,37.814556434733035],[126.65106651066515,37.799359239304096],[126.64386643866442,37.79767066203421],[126.62226622266223,37.78753919841492],[126.59346593465938,37.774030580255854],[126.57546575465756,37.77740773479562],[126.43506435064353,37.84832798013069],[126.4278642786428,37.85339371194034],[126.40266402664025,37.887165257338],[126.39906399063995,37.89223098914765],[126.37746377463776,37.88885383460787],[126.35946359463594,37.883788102798235],[126.28026280262804,37.85170513467045],[126.25866258662586,37.84495082559093],[126.23706237062373,37.84326224832104],[126.20106201062009,37.84495082559093],[126.17946179461796,37.83988509378128],[126.15786157861578,37.82975363016199],[126.15066150661505,37.82299932108245],[126.14706147061474,37.819622166542686],[126.15066150661505,37.814556434733035],[126.15426154261542,37.799359239304096],[126.16146161461614,37.779096312065505],[126.16506165061651,37.7689648484462],[126.16506165061651,37.75545623028714],[126.16146161461614,37.7402590348582],[126.15786157861578,37.73350472577867],[126.1110611106111,37.7402590348582],[126.0966609666097,37.78078488933538],[126.08586085860861,37.80104781657397],[126.07146071460716,37.799359239304096],[126.06426064260643,37.80273639384386],[126.0570605706057,37.82468789835234],[126.0570605706057,37.87027948463917],[126.02466024660248,37.85339371194034],[126.01386013860139,37.855082289210216],[126.00666006660066,37.87365663917893],[125.99945999459993,37.88547668006811],[125.98505985059853,37.898985298227174],[125.97065970659708,37.90911676184646],[125.95985959859598,37.91249391638624],[125.94545945459458,37.90236245276694],[125.94905949059489,37.88885383460787],[125.96345963459635,37.878722370988584],[125.97425974259744,37.87365663917893],[125.97425974259744,37.86352517555963],[125.98505985059853,37.836507939241514],[125.98505985059853,37.82299932108245],[125.9778597785978,37.82975363016199],[125.96705967059671,37.834819361971626],[125.95625956259562,37.83988509378128],[125.94545945459458,37.84326224832104],[125.93465934659349,37.84495082559093],[125.92745927459276,37.84326224832104],[125.92025920259204,37.84495082559093],[125.91305913059131,37.85001655740058],[125.89505895058954,37.86521375282952],[125.8446584465845,37.92600253454529],[125.84105841058414,37.93613399816459],[125.83385833858341,37.94288830724412],[125.81225812258123,37.94795403905377],[125.8050580505805,37.95133119359353],[125.80145801458013,37.95808550267307],[125.80145801458013,37.96990554356225],[125.8050580505805,37.98847989353095],[125.79785797857977,37.9935456253406],[125.78345783457837,37.9935456253406],[125.77265772657728,37.996922779880364],[125.75465754657546,38.00536566622978],[125.74745747457473,38.00705424349967],[125.70425704257042,38.008742820769555],[125.68625686256865,38.01211997530932],[125.64665646656465,38.02731717073826],[125.62145621456216,38.03238290254791],[125.59625596255961,38.03238290254791],[125.57825578255785,38.02562859346837],[125.57825578255785,38.008742820769555],[125.59625596255961,37.99185704807073],[125.62145621456216,37.97834842991166],[125.63945639456398,37.97328269810201],[125.67545675456756,37.97834842991166],[125.68625686256865,37.97159412083212],[125.67905679056793,37.95301977086342],[125.68985689856902,37.95639692540318],[125.70065700657005,37.95808550267307],[125.70785707857078,37.95808550267307],[125.71865718657187,37.95301977086342],[125.70785707857078,37.939511152704355],[125.69705697056969,37.92600253454529],[125.71865718657187,37.92600253454529],[125.7258572585726,37.92769111181518],[125.73305733057333,37.93275684362483],[125.74025740257406,37.92600253454529],[125.72945729457297,37.915871070926],[125.71505715057151,37.90742818457659],[125.70065700657005,37.90236245276694],[125.68625686256865,37.898985298227174],[125.66825668256683,37.898985298227174],[125.65745657456574,37.9057396073067],[125.64665646656465,37.915871070926],[125.63225632256325,37.92600253454529],[125.62865628656289,37.90236245276694],[125.63585635856361,37.878722370988584],[125.63945639456398,37.856770866480105],[125.62145621456216,37.836507939241514],[125.63945639456398,37.82468789835234],[125.64305643056434,37.82299932108245],[125.63945639456398,37.81286785746316],[125.63225632256325,37.809490702923384],[125.61425614256143,37.809490702923384],[125.61065610656107,37.80611354838362],[125.61065610656107,37.799359239304096],[125.6178561785618,37.78922777568479],[125.62145621456216,37.774030580255854],[125.62145621456216,37.76558769390644],[125.61425614256143,37.76221053936668],[125.60345603456034,37.76221053936668],[125.5926559265593,37.76389911663655],[125.58545585455857,37.76727627117633],[125.57465574655748,37.774030580255854],[125.57825578255785,37.77740773479562],[125.58185581855821,37.77740773479562],[125.58185581855821,37.779096312065505],[125.58185581855821,37.78247346660527],[125.57105571055712,37.78753919841492],[125.56025560255603,37.78753919841492],[125.5530555305553,37.78247346660527],[125.54945549455493,37.77065342571609],[125.54225542255426,37.77065342571609],[125.5278552785528,37.772342002985965],[125.52065520655208,37.78078488933538],[125.5278552785528,37.79598208476433],[125.50265502655026,37.779096312065505],[125.49185491854922,37.75376765301726],[125.4738547385474,37.731816148508784],[125.43785437854382,37.71999610761961],[125.40545405454054,37.71830753034972],[125.38385383853841,37.716618953079845],[125.37665376653769,37.709864644000305],[125.37305373053732,37.69297887130148],[125.36225362253623,37.679470253142426],[125.34785347853477,37.676093098602664],[125.33345333453337,37.68622456222195],[125.34785347853477,37.738570457588324],[125.36225362253623,37.76052196209679],[125.39105391053914,37.75376765301726],[125.44505445054449,37.774030580255854],[125.43065430654309,37.78078488933538],[125.39465394653945,37.77571915752574],[125.37665376653769,37.78247346660527],[125.39105391053914,37.79598208476433],[125.41265412654127,37.809490702923384],[125.43425434254345,37.819622166542686],[125.45585455854558,37.82299932108245],[125.50625506255062,37.81286785746316],[125.52425524255244,37.8179335892728],[125.5278552785528,37.84326224832104],[125.50985509855099,37.8381965165114],[125.4990549905499,37.83988509378128],[125.48825488254886,37.846639402860816],[125.47745477454777,37.856770866480105],[125.50985509855099,37.883788102798235],[125.50985509855099,37.89391956641752],[125.4846548465485,37.898985298227174],[125.46305463054631,37.904051030036825],[125.45585455854558,37.914182493656114],[125.44505445054449,37.92093680273565],[125.42345423454236,37.91249391638624],[125.42705427054273,37.90911676184646],[125.43065430654309,37.90236245276694],[125.43065430654309,37.898985298227174],[125.40545405454054,37.898985298227174],[125.39465394653945,37.897296720957286],[125.38385383853841,37.89223098914765],[125.40185401854018,37.88547668006811],[125.42705427054273,37.87365663917893],[125.44505445054449,37.86014802101987],[125.44505445054449,37.84326224832104],[125.42705427054273,37.856770866480105],[125.39825398253981,37.86521375282952],[125.37305373053732,37.86859090736928],[125.34785347853477,37.86521375282952],[125.3550535505355,37.856770866480105],[125.35865358653587,37.85170513467045],[125.36945369453696,37.846639402860816],[125.37665376653769,37.84326224832104],[125.34425344253441,37.82299932108245],[125.32625326253265,37.81286785746316],[125.30825308253083,37.809490702923384],[125.30825308253083,37.81117928019327],[125.30825308253083,37.81624501200292],[125.30465304653046,37.819622166542686],[125.3010530105301,37.82299932108245],[125.23985239852402,37.82299932108245],[125.25065250652506,37.8381965165114],[125.29385293852937,37.86014802101987],[125.30825308253083,37.878722370988584],[125.3010530105301,37.89560814368741],[125.25785257852579,37.914182493656114],[125.26145261452615,37.93275684362483],[125.23985239852402,37.92937968908507],[125.22905229052293,37.915871070926],[125.21825218252184,37.897296720957286],[125.20745207452075,37.88041094825846],[125.19305193051929,37.871968061909044],[125.17505175051753,37.86690233009941],[125.1570515705157,37.86690233009941],[125.09945099450994,37.87534521644882],[125.0886508865089,37.878722370988584],[125.06345063450635,37.89560814368741],[125.05265052650526,37.898985298227174],[125.03105031050313,37.90067387549706],[125.01305013050131,37.9057396073067],[125.00585005850058,37.919248225465765],[125.01305013050131,37.939511152704355],[124.98784987849882,37.92769111181518],[124.98064980649809,37.92600253454529],[124.98424984249846,37.94288830724412],[124.99144991449913,37.95301977086342],[125.00585005850058,37.95808550267307],[125.0238502385024,37.959774079942946],[125.03825038250386,37.96315123448271],[125.06345063450635,37.97834842991166],[125.07425074250745,37.98003700718154],[125.0886508865089,37.976659852641774],[125.11745117451176,37.96315123448271],[125.13545135451358,37.959774079942946],[125.14985149851498,37.961462657212834],[125.16425164251643,37.96315123448271],[125.17505175051753,37.96990554356225],[125.18585185851862,37.98003700718154],[125.17865178651789,37.98847989353095],[125.1678516785168,37.981725584451425],[125.1570515705157,37.98003700718154],[125.14265142651425,37.98341416172131],[125.12465124651249,37.99861135715025],[125.11745117451176,38.00029993442014],[125.1138511385114,38.001988511690016],[125.11025110251103,38.01549712984908],[125.10665106651066,38.03407147981778],[125.11745117451176,38.0425143661672],[125.1570515705157,38.0425143661672],[125.20025200252002,38.049268675246736],[125.21465214652147,38.045891520706974],[125.21825218252184,38.03744863435756],[125.21825218252184,38.02731717073826],[125.22545225452257,38.022251438928606],[125.2470524705247,38.02056286165873],[125.25425254252542,38.05433440705639],[125.27225272252724,38.0627772934058],[125.26505265052651,38.07797448883474],[125.2470524705247,38.08304022064439],[125.20745207452075,38.08304022064439],[125.18945189451898,38.086417375184155],[125.1570515705157,38.09486026153357],[125.13905139051394,38.09823741607333],[125.12465124651249,38.09486026153357],[125.07425074250745,38.07628591156485],[125.02745027450277,38.06953160248533],[125.01305013050131,38.0627772934058],[124.93744937449378,38.09823741607333],[124.9050490504905,38.12525465239146],[124.88704887048874,38.13200896147099],[124.87624876248765,38.11343461150227],[124.86544865448656,38.106680302422745],[124.84024840248401,38.101614570613094],[124.79344793447933,38.09823741607333],[124.67824678246785,38.11512318877216],[124.66744667446676,38.12525465239146],[124.67464674646749,38.13707469328064],[124.69624696246962,38.14551757963005],[124.74664746647466,38.14720615689993],[124.76464764647648,38.15564904324934],[124.7718477184772,38.17591197048793],[124.77904779047793,38.17928912502771],[124.82224822248224,38.18604343410723],[124.82944829448297,38.19448632045665],[124.84384843848437,38.218126402235],[124.85464854648546,38.226569288584415],[124.87984879848801,38.22994644312418],[124.89424894248941,38.22150355677476],[124.91944919449196,38.189420588646996],[124.93024930249305,38.19279774318676],[124.99144991449913,38.226569288584415],[124.96624966249664,38.23501217493383],[124.9158491584916,38.2282578658543],[124.88704887048874,38.24514363855313],[124.87264872648728,38.25696367944231],[124.86904869048692,38.26540656579172],[124.86904869048692,38.28229233849055],[124.87984879848801,38.34476969747621],[124.88344883448838,38.3549011610955],[124.92664926649269,38.408935633731744],[124.93384933849342,38.42075567462092],[124.94824948249482,38.451150065478814],[124.95904959049591,38.461281529098116],[124.96624966249664,38.46297010636799],[124.97344973449736,38.46297010636799],[124.97344973449736,38.454527220018576],[124.97344973449736,38.441018601859525],[124.98424984249846,38.451150065478814],[125.00225002250022,38.47310156998729],[125.01665016650168,38.498430229035534],[125.02025020250204,38.51531600173436],[125.01305013050131,38.52544746535365],[124.99504995049949,38.53557892897295],[124.99144991449913,38.54571039259224],[124.99504995049949,38.55753043348143],[124.99864998649986,38.565973319830846],[124.99504995049949,38.574416206180246],[124.98064980649809,38.58454766979955],[124.98424984249846,38.59130197887907],[124.99864998649986,38.59299055614896],[125.01665016650168,38.58285909252966],[125.02745027450277,38.5896134016092],[125.03825038250386,38.59130197887907],[125.04185041850417,38.581170515259785],[125.05985059850599,38.56766189710072],[125.08145081450817,38.58454766979955],[125.1030510305103,38.59299055614896],[125.12825128251285,38.5794819379899],[125.13545135451358,38.59130197887907],[125.13545135451358,38.60987632884779],[125.13545135451358,38.62507352427673],[125.12465124651249,38.63351641062614],[125.11745117451176,38.64533645151532],[125.11745117451176,38.65715649240451],[125.12465124651249,38.665599378753924],[125.13905139051394,38.66222222421415],[125.14985149851498,38.64533645151532],[125.1570515705157,38.63182783335627],[125.17865178651789,38.63520498789603],[125.18225182251825,38.64195929697556],[125.17865178651789,38.65715649240451],[125.17865178651789,38.67066511056356],[125.18945189451898,38.6672879560238],[125.19305193051929,38.65715649240451],[125.20385203852038,38.65209076059486],[125.2218522185222,38.65546791513462],[125.23625236252366,38.65715649240451],[125.25785257852579,38.66897653329369],[125.26865268652688,38.67066511056356],[125.27945279452797,38.663910801484036],[125.3010530105301,38.65715649240451],[125.31185311853119,38.665599378753924],[125.31905319053192,38.66897653329369],[125.32985329853301,38.679107996912975],[125.34425344253441,38.68755088326239],[125.36945369453696,38.69430519234193],[125.39825398253981,38.69430519234193],[125.40545405454054,38.69261661507204],[125.43065430654309,38.68755088326239],[125.44145441454418,38.685862305992515],[125.44505445054449,38.68923946053228],[125.44505445054449,38.6959937696118],[125.45225452254522,38.70443665596122],[125.46305463054631,38.70781381050098],[125.50625506255062,38.685862305992515],[125.51345513455135,38.6774194196431],[125.51345513455135,38.65715649240451],[125.52065520655208,38.65209076059486],[125.53145531455317,38.653779337864734],[125.5386553865539,38.663910801484036],[125.54225542255426,38.67404226510334],[125.54585545855457,38.679107996912975],[125.55665556655566,38.6774194196431],[125.56385563855639,38.67066511056356],[125.57105571055712,38.66222222421415],[125.57465574655748,38.65546791513462],[125.58545585455857,38.64195929697556],[125.61065610656107,38.63182783335627],[125.63945639456398,38.62676210154662],[125.65745657456574,38.63182783335627],[125.65025650256501,38.638582142435794],[125.63585635856361,38.653779337864734],[125.63225632256325,38.658845069674385],[125.62145621456216,38.66222222421415],[125.59985599855997,38.66222222421415],[125.58905589055894,38.665599378753924],[125.54225542255426,38.71119096504076],[125.5278552785528,38.721322428660045],[125.51345513455135,38.72301100592993],[125.49185491854922,38.72301100592993],[125.47745477454777,38.728076737739585],[125.4738547385474,38.73483104681911],[125.44865448654485,38.77197974675653],[125.44865448654485,38.77535690129629],[125.44865448654485,38.77704547856618],[125.43785437854382,38.77535690129629],[125.43425434254345,38.77197974675653],[125.43065430654309,38.763536860407115],[125.42345423454236,38.7550939740577],[125.41265412654127,38.7550939740577],[125.419854198542,38.75002824224805],[125.42705427054273,38.7449625104384],[125.43425434254345,38.736519624089],[125.419854198542,38.72976531500946],[125.38745387453878,38.71794527412028],[125.37305373053732,38.721322428660045],[125.36225362253623,38.73483104681911],[125.3550535505355,38.73483104681911],[125.35145351453514,38.721322428660045],[125.3406534065341,38.71794527412028],[125.31545315453155,38.721322428660045],[125.31185311853119,38.72469958319981],[125.31185311853119,38.72976531500946],[125.30465304653046,38.73483104681911],[125.3010530105301,38.73483104681911],[125.29745297452973,38.728076737739585],[125.29745297452973,38.721322428660045],[125.30465304653046,38.716256696850394],[125.30825308253083,38.71287954231063],[125.30825308253083,38.70781381050098],[125.29385293852937,38.70274807869134],[125.27945279452797,38.70274807869134],[125.26145261452615,38.70781381050098],[125.25065250652506,38.71794527412028],[125.24345243452433,38.728076737739585],[125.2470524705247,38.736519624089],[125.26865268652688,38.7550939740577],[125.26145261452615,38.75847112859746],[125.25425254252542,38.761848283137226],[125.25785257852579,38.77197974675653],[125.25425254252542,38.783799787645705],[125.23985239852402,38.79393125126501],[125.22545225452257,38.79561982853488],[125.22905229052293,38.77197974675653],[125.21825218252184,38.73989677862876],[125.18945189451898,38.73820820135887],[125.17505175051753,38.75171681951794],[125.17145171451716,38.763536860407115],[125.1570515705157,38.768602592216766],[125.14625146251461,38.77704547856618],[125.13545135451358,38.804062714884296],[125.14265142651425,38.820948487583124],[125.14625146251461,38.83783426028195],[125.14985149851498,38.87498296021937],[125.15345153451534,38.8918687329182],[125.16425164251643,38.91550881469655],[125.17145171451716,38.93914889647492],[125.18945189451898,38.95772324644362],[125.20025200252002,38.97460901914245],[125.20025200252002,38.986429060031625],[125.21105211052111,39.00162625546058],[125.2326523265233,39.03033206904858],[125.25065250652506,39.048906419017285],[125.26145261452615,39.06579219171611],[125.27225272252724,39.08098938714507],[125.29025290252906,39.08098938714507],[125.31545315453155,39.07930080987518],[125.33345333453337,39.08267796441494],[125.28305283052833,39.08943227349448],[125.2866528665287,39.097875159843895],[125.29025290252906,39.10462946892342],[125.29025290252906,39.111383778002946],[125.2866528665287,39.1164495098126],[125.2866528665287,39.12320381889214],[125.2866528665287,39.131646705241536],[125.29025290252906,39.138401014321076],[125.29385293852937,39.14346674613073],[125.29385293852937,39.14684390067049],[125.2866528665287,39.15190963248014],[125.29745297452973,39.16204109609943],[125.30825308253083,39.16541825063919],[125.33345333453337,39.16541825063919],[125.34425344253441,39.16879540517897],[125.3406534065341,39.175549714258494],[125.33345333453337,39.18568117787778],[125.32985329853301,39.194124064227196],[125.34425344253441,39.21269841419591],[125.3658536585366,39.22114130054533],[125.38745387453878,39.21945272327544],[125.41265412654127,39.2143869914658],[125.40545405454054,39.22958418689474],[125.39465394653945,39.236338495974266],[125.39465394653945,39.24646995959357],[125.43065430654309,39.300504432229815],[125.44505445054449,39.3106358958491],[125.43065430654309,39.31232447311899],[125.41625416254163,39.320767359468405],[125.41265412654127,39.33427597762747],[125.419854198542,39.3511617503263],[125.41265412654127,39.35453890486606],[125.40545405454054,39.36467036848535],[125.41625416254163,39.361293213945586],[125.419854198542,39.361293213945586],[125.42345423454236,39.357916059405824],[125.44505445054449,39.36635894575524],[125.45585455854558,39.37480183210465],[125.45945459454595,39.384933295723954],[125.43785437854382,39.384933295723954],[125.37665376653769,39.39168760480348],[125.35865358653587,39.398441913883005],[125.35865358653587,39.41363910931196],[125.38385383853841,39.440656345630074],[125.37305373053732,39.440656345630074],[125.36225362253623,39.440656345630074],[125.35145351453514,39.43727919109031],[125.34425344253441,39.43390203655055],[125.34425344253441,39.45923069559879],[125.35865358653587,39.47442789102773],[125.38025380253805,39.48624793191691],[125.39825398253981,39.50144512734586],[125.40185401854018,39.51326516823504],[125.40545405454054,39.52677378639409],[125.41265412654127,39.53859382728328],[125.44145441454418,39.54703671363269],[125.44865448654485,39.55716817725198],[125.45225452254522,39.570676795411046],[125.44505445054449,39.58418541357011],[125.43065430654309,39.5757425272207],[125.32625326253265,39.53352809547363],[125.30465304653046,39.52677378639409],[125.29385293852937,39.523396631854325],[125.2866528665287,39.52170805458445],[125.2758527585276,39.52677378639409],[125.25065250652506,39.550413868172456],[125.2470524705247,39.55379102271222],[125.23625236252366,39.56223390906163],[125.21825218252184,39.56729964087128],[125.21105211052111,39.57236537268092],[125.22545225452257,39.59093972264964],[125.1570515705157,39.59093972264964],[125.16065160651607,39.585873990839985],[125.1678516785168,39.56898821814116],[125.17145171451716,39.56392248633152],[125.12825128251285,39.56392248633152],[125.11745117451176,39.565611063601395],[125.1138511385114,39.570676795411046],[125.1138511385114,39.57743110449057],[125.11025110251103,39.58418541357011],[125.1030510305103,39.592628299919525],[125.1030510305103,39.59938260899905],[125.09585095850957,39.60275976353881],[125.08505085050854,39.6044483408087],[125.07065070650708,39.60107118626894],[125.05985059850599,39.60107118626894],[125.0490504905049,39.6044483408087],[125.03825038250386,39.607825495348465],[125.01665016650168,39.62471126804729],[125.01305013050131,39.628088422587055],[125.00945009450095,39.63484273166658],[125.00225002250022,39.63653130893647],[124.99504995049949,39.63653130893647],[124.98784987849882,39.63821988620636],[124.95904959049591,39.66185996798471],[124.94824948249482,39.6635485452546],[124.93744937449378,39.64666277255577],[124.92664926649269,39.6534170816353],[124.91224912249123,39.65679423617506],[124.90144901449014,39.66185996798471],[124.89424894248941,39.692254358842604],[124.87984879848801,39.70407439973178],[124.86544865448656,39.71420586335107],[124.84744847448474,39.72096017243061],[124.83304833048334,39.72602590424026],[124.81144811448115,39.727714481510134],[124.80424804248042,39.7310916360499],[124.80064800648006,39.73953452239931],[124.7718477184772,39.7412230996692],[124.76104761047611,39.747977408748724],[124.75744757447575,39.7699289132572],[124.74664746647466,39.78343753141627],[124.73944739447393,39.77161749052709],[124.73944739447393,39.76148602690779],[124.74304743047429,39.753043140558376],[124.75024750247502,39.74460025420896],[124.75384753847538,39.73446879058967],[124.75024750247502,39.72264874970048],[124.75024750247502,39.70914013154143],[124.74304743047429,39.70069724519202],[124.74304743047429,39.690565781572715],[124.75744757447575,39.68718862703295],[124.75384753847538,39.67199143160401],[124.73944739447393,39.67199143160401],[124.72864728647289,39.66523712252447],[124.73584735847362,39.655105658905185],[124.74304743047429,39.64497419528588],[124.73584735847362,39.64159704074612],[124.7178471784718,39.64666277255577],[124.69624696246962,39.63821988620636],[124.67464674646749,39.62133411350753],[124.64944649446494,39.612891227158116],[124.64224642246421,39.5943168771894],[124.63864638646385,39.59093972264964],[124.62424624246245,39.59769403172916],[124.62424624246245,39.60275976353881],[124.62424624246245,39.6044483408087],[124.62784627846281,39.61120264988823],[124.62064620646208,39.612891227158116],[124.61704617046172,39.61457980442799],[124.61704617046172,39.61795695896777],[124.60984609846099,39.628088422587055],[124.62784627846281,39.64497419528588],[124.63144631446318,39.6635485452546],[124.64584645846458,39.670302854334125],[124.64944649446494,39.68381147249319],[124.64584645846458,39.69732009065224],[124.63864638646385,39.69732009065224],[124.63144631446318,39.69394293611248],[124.62424624246245,39.69394293611248],[124.62064620646208,39.69732009065224],[124.61344613446136,39.70914013154143],[124.60984609846099,39.71420586335107],[124.5990459904599,39.71927159516072],[124.59184591845917,39.72096017243061],[124.5846458464585,39.72433732697037],[124.58104581045814,39.7310916360499],[124.5846458464585,39.7412230996692],[124.5882458824588,39.75642029509814],[124.5882458824588,39.76655175871744],[124.5846458464585,39.77161749052709],[124.56664566645668,39.77837179960662],[124.56304563045632,39.78681468595603],[124.56664566645668,39.80707761319462],[124.56304563045632,39.81383192227415],[124.55584555845559,39.817209076813924],[124.519845198452,39.8188976540838],[124.43344433444338,39.830717694972975],[124.42984429844302,39.8290291177031],[124.42624426244265,39.82565196316334],[124.42264422644229,39.82396338589345],[124.41904419044192,39.82396338589345],[124.41544415444156,39.82734054043321],[124.40824408244083,39.835783426782626],[124.40824408244083,39.837472004052515],[124.40464404644047,39.84084915859228],[124.39744397443974,39.85942350856098],[124.39744397443974,39.86617781764052],[124.39024390243901,39.86786639491039],[124.36144361443615,39.87124354945017],[124.35064350643506,39.893195053958635],[124.34344343443433,39.899949363038175],[124.33624336243366,39.905015094847826],[124.32904329043294,39.91008082665746],[124.3218432184322,39.913457981197226],[124.3326433264333,39.92527802208642],[124.3470434704347,39.930343753896054],[124.35784357843579,39.93372090843583],[124.36864368643688,39.940475217515356],[124.37584375843761,39.95398383567442],[124.38304383043834,40.002952576501016],[124.40464404644047,40.02828123554926],[124.43344433444338,40.024904081009495],[124.4658446584466,40.01477261739019],[124.49824498244982,40.02321550373961],[124.48024480244806,40.02996981281913],[124.43344433444338,40.03334696735891],[124.4118441184412,40.03672412189867],[124.39024390243901,40.04854416278785],[124.38304383043834,40.06542993548668],[124.37944379443798,40.082315708185504],[124.36864368643688,40.097512903614444],[124.35784357843579,40.08907001726503],[124.35784357843579,40.075561399105965],[124.36144361443615,40.04685558551796],[124.36504365043652,40.02152692646972],[124.36144361443615,40.01139546285043],[124.35064350643506,39.999575421961254],[124.30744307443075,39.96073814475395],[124.30384303843039,39.95398383567442],[124.30024300243002,39.940475217515356],[124.2930429304293,39.93372090843583],[124.28584285842862,39.92865517662618],[124.2786427864279,39.92865517662618],[124.27504275042753,39.92865517662618],[124.2678426784268,39.92696659935629],[124.2030420304203,39.877997858529696],[124.15624156241563,39.86111208583087],[124.13824138241381,39.842537735862166],[124.11664116641168,39.832406272242864],[124.08784087840877,39.852669199481454],[124.06624066240664,39.835783426782626],[124.05544055440555,39.830717694972975],[124.0410404104041,39.82396338589345],[123.99783997839978,39.815520499544036],[123.98703987039869,39.810454767734385],[123.97623976239765,39.815520499544036],[123.96903969039693,39.82058623135369],[123.95463954639547,39.83409484951275],[123.94383943839438,39.84084915859228],[123.92943929439298,39.837472004052515],[123.91863918639189,39.8290291177031],[123.91143911439116,39.82396338589345],[123.88623886238861,39.82227480862356],[123.86103861038612,39.82396338589345],[123.83583835838357,39.8290291177031],[123.81423814238144,39.837472004052515],[123.80703807038071,39.837472004052515],[123.7746377463775,39.8188976540838],[123.72063720637209,39.830717694972975],[123.67023670236705,39.85604635402122],[123.64143641436414,39.877997858529696],[123.65583655836559,39.920212290276766],[123.64143641436414,39.915146558467114],[123.6306363063631,39.90332651757794],[123.62703627036274,39.88981789941887],[123.62343623436237,39.87124354945017],[123.60183601836019,39.817209076813924],[123.59823598235982,39.79188041776568],[123.5910359103591,39.78512610868614],[123.56223562235624,39.77161749052709],[123.56223562235624,39.768240335987315],[123.56223562235624,39.7699289132572],[123.55503555035551,39.77668322233673],[123.55143551435515,39.780060376876506],[123.54783547835478,39.78512610868614],[123.54063540635406,39.79188041776568],[123.53343533435333,39.79694614957532],[123.5118351183512,39.79863472684521],[123.49383493834938,39.790191840495794],[123.48303483034829,39.780060376876506],[123.4470344703447,39.737845945129436],[123.42903429034294,39.72602590424026],[123.41103411034112,39.73446879058967],[123.40743407434076,39.74628883147885],[123.41103411034112,39.79694614957532],[123.41463414634148,39.80201188138497],[123.41823418234185,39.80707761319462],[123.42183421834221,39.81383192227415],[123.41823418234185,39.82396338589345],[123.41103411034112,39.82565196316334],[123.40383403834039,39.82396338589345],[123.39663396633966,39.8188976540838],[123.40383403834039,39.810454767734385],[123.38583385833857,39.790191840495794],[123.36423364233644,39.78512610868614],[123.3390333903339,39.78512610868614],[123.3138331383314,39.77668322233673],[123.30303303033031,39.78512610868614],[123.28503285032849,39.80370045865486],[123.27423274232746,39.810454767734385],[123.26343263432636,39.79694614957532],[123.25623256232564,39.800323304115096],[123.25263252632527,39.810454767734385],[123.25263252632527,39.817209076813924],[123.24543245432454,39.81383192227415],[123.23823238232382,39.80876619046451],[123.23463234632345,39.80201188138497],[123.24183241832418,39.79356899503556],[123.25263252632527,39.78343753141627],[123.26343263432636,39.768240335987315],[123.26703267032673,39.754731717828264],[123.24903249032491,39.747977408748724],[123.22383223832242,39.754731717828264],[123.20943209432096,39.754731717828264],[123.2058320583206,39.74460025420896],[123.2058320583206,39.73446879058967],[123.21303213032132,39.7310916360499],[123.22023220232205,39.7310916360499],[123.24183241832418,39.72602590424026],[123.24903249032491,39.72602590424026],[123.25623256232564,39.72433732697037],[123.26343263432636,39.717583017890846],[123.27063270632709,39.70745155427154],[123.26703267032673,39.70069724519202],[123.22383223832242,39.68043431795343],[123.17343173431738,39.66523712252447],[123.1266312663127,39.66523712252447],[123.10863108631088,39.690565781572715],[123.10143101431015,39.685500049763064],[123.05823058230584,39.675368586143776],[123.04023040230402,39.67368000887389],[123.02943029430293,39.675368586143776],[123.01503015030153,39.67874574068354],[123.0078300783008,39.68043431795343],[123.00423004230043,39.67705716341365],[123.00063000630007,39.670302854334125],[122.99342993429934,39.66523712252447],[122.97902979029789,39.66692569979436],[122.97902979029789,39.65848281344495],[122.9970299702997,39.650039927095534],[122.99342993429934,39.63653130893647],[122.96462964629649,39.61120264988823],[122.94662946629467,39.61964553623764],[122.87102871028713,39.606136918078576],[122.84942849428495,39.61795695896777],[122.78822788227882,39.57236537268092],[122.78102781027809,39.560545331791744],[122.77022770227705,39.55885675452187],[122.70902709027092,39.5352166727435],[122.69822698226983,39.523396631854325],[122.68742687426874,39.518330900044674],[122.67662676626765,39.51495374550491],[122.67302673026734,39.52001947731456],[122.66222662226625,39.52846236366398],[122.64782647826479,39.53183951820374],[122.64422644226443,39.52677378639409],[122.6370263702637,39.508199436425386],[122.58662586625866,39.467673581948205],[122.57582575825757,39.47611646829762],[122.5686256862569,39.482870777377144],[122.56142561425617,39.48624793191691],[122.55422554225544,39.481182200107256],[122.55422554225544,39.47780504556749],[122.5578255782558,39.47273931375784],[122.56142561425617,39.467673581948205],[122.56142561425617,39.460919272868665],[122.55422554225544,39.45585354105903],[122.55062550625507,39.45585354105903],[122.54702547025471,39.45585354105903],[122.53982539825398,39.45416496378914],[122.49662496624967,39.42714772747101],[122.47142471424718,39.41701626385172],[122.44622446224463,39.41195053204207],[122.41382413824141,39.41363910931196],[122.39582395823959,39.41026195477218],[122.3850238502385,39.39506475934324],[122.35622356223564,39.38831045026372],[122.34542345423455,39.38155614118418],[122.33462334623346,39.37142467756489],[122.32022320223206,39.361293213945586],[122.30222302223024,39.35453890486606],[122.29142291422914,39.3511617503263],[122.28422284222842,39.342718863976884],[122.27702277022769,39.32921024581782],[122.26622266222665,39.31739020492864],[122.2518225182252,39.32414451400817],[122.2518225182252,39.31907878219852],[122.24822248222483,39.31739020492864],[122.24462244622447,39.3106358958491],[122.2410224102241,39.285307236800875],[122.19782197821979,39.25153569140322],[122.11502115021153,39.200878373306736],[122.11502115021153,39.18905833241756],[122.11142111421117,39.175549714258494],[122.10422104221044,39.16372967336932],[122.10422104221044,39.15866394155967],[122.13662136621366,39.15866394155967],[122.15102151021512,39.155286787019904],[122.16182161821621,39.14684390067049],[122.14382143821439,39.14684390067049],[122.12582125821257,39.14177816886084],[122.07182071820722,39.10462946892342],[122.06462064620649,39.10125231438366],[122.05742057420576,39.10125231438366],[122.04662046620467,39.09956373711377],[122.03942039420394,39.091120850764355],[122.05022050220504,39.067480768986],[122.04302043020431,39.05903788263659],[121.9890198901989,39.06241503717635],[121.98181981819818,39.05903788263659],[121.97101971019714,39.048906419017285],[121.96021960219605,39.04046353266787],[121.94221942219423,39.03708637812811],[121.92781927819277,39.04046353266787],[121.91701917019174,39.04552926447752],[121.90261902619028,39.048906419017285],[121.88821888218882,39.04215210993776],[121.90261902619028,39.038774955398],[121.91341913419137,39.03033206904858],[121.9206192061921,39.02020060542928],[121.92421924219241,39.008380564540104],[121.8810188101881,39.02695491450882],[121.8558185581856,39.033709223588346],[121.82701827018269,39.03708637812811],[121.83781837818378,39.015134873619644],[121.8810188101881,38.99656052365093],[121.89541895418955,38.98136332822199],[121.89541895418955,38.971231864602686],[121.88821888218882,38.96278897825327],[121.87021870218706,38.950968937364095],[121.85941859418597,38.94421462828457],[121.84861848618488,38.94759178282433],[121.81261812618129,38.972920441872574],[121.78741787417874,39.00669198727023],[121.77301773017729,39.02188918269917],[121.74421744217443,39.033709223588346],[121.72621726217261,39.03033206904858],[121.71901719017194,39.02020060542928],[121.7370173701737,39.008380564540104],[121.7370173701737,39.00162625546058],[121.71181711817121,39.00669198727023],[121.67941679416793,39.008380564540104],[121.6722167221672,39.008380564540104],[121.63621636216362,38.99487194638104],[121.65061650616508,38.99487194638104],[121.65421654216544,38.9898062145714],[121.65781657816581,38.98305190549186],[121.65781657816581,38.97460901914245],[121.65421654216544,38.96278897825327],[121.64701647016471,38.95941182371351],[121.6290162901629,38.95434609190386],[121.6038160381604,38.952657514633984],[121.59301593015931,38.94928036009421],[121.58581585815858,38.94083747374479],[121.59301593015931,38.935771741935156],[121.61821618216186,38.92564027831585],[121.65781657816581,38.92564027831585],[121.67581675816757,38.92226312377609],[121.69381693816939,38.910443082886914],[121.70461704617048,38.8918687329182],[121.70461704617048,38.873294382949496],[121.69741697416976,38.86316291933019],[121.67581675816757,38.87160580567961],[121.65421654216544,38.85809718752054],[121.58221582215822,38.86316291933019],[121.55341553415536,38.85809718752054],[121.51381513815141,38.82770279666266],[121.50661506615069,38.826014219392775],[121.49941499414996,38.8141941785036],[121.4850148501485,38.80912844669395],[121.38061380613806,38.81588275577347],[121.34461344613447,38.8141941785036],[121.2870128701287,38.788865519455356],[121.26181261812621,38.79561982853488],[121.23661236612367,38.798996983074645],[121.21861218612185,38.77535690129629],[121.22581225812257,38.77704547856618],[121.2438124381244,38.77535690129629],[121.19701197011972,38.728076737739585],[121.1790117901179,38.721322428660045],[121.1538115381154,38.728076737739585],[121.14301143011431,38.743273933168524],[121.13221132211322,38.75847112859746],[121.11421114211146,38.768602592216766],[121.1250112501125,38.778734055836054],[121.13581135811359,38.78211121037583],[121.13941139411395,38.788865519455356],[121.13581135811359,38.80912844669395],[121.12861128611286,38.81925991031325],[121.11781117811177,38.82770279666266],[121.1106111061111,38.83952283755184],[121.11421114211146,38.85809718752054],[121.13941139411395,38.87498296021937],[121.1538115381154,38.88680300110855],[121.15021150211504,38.89862304199774],[121.08901089010891,38.89862304199774],[121.08541085410855,38.90537735107726],[121.09621096210964,38.9205745465062],[121.11781117811177,38.94421462828457],[121.12861128611286,38.94759178282433],[121.1790117901179,38.95434609190386],[121.18981189811899,38.952657514633984],[121.20061200612008,38.94252605101468],[121.21141211412117,38.94083747374479],[121.21861218612185,38.94083747374479],[121.2330123301233,38.945903205554444],[121.25821258212585,38.94928036009421],[121.29061290612907,38.96785471006292],[121.31941319413193,38.966166132793035],[121.33381333813338,38.96785471006292],[121.34101341013411,38.97798617368221],[121.33741337413375,38.98474048276175],[121.33021330213302,39.00162625546058],[121.32661326613265,39.01175771907987],[121.33381333813338,39.02695491450882],[121.3518135181352,39.038774955398],[121.37341373413733,39.04384068720765],[121.39501395013951,39.04215210993776],[121.40221402214024,39.038774955398],[121.40941409414097,39.03202064631846],[121.420214202142,39.01851202815941],[121.42741427414273,39.015134873619644],[121.44181441814419,39.013446296349755],[121.46701467014674,39.015134873619644],[121.4850148501485,39.02020060542928],[121.54621546215463,39.048906419017285],[121.63261632616326,39.06916934625589],[121.67581675816757,39.08774369622459],[121.69021690216903,39.118138087082485],[121.67941679416793,39.13671243705119],[121.65061650616508,39.15866394155967],[121.64341643416435,39.175549714258494],[121.6290162901629,39.173861136988606],[121.60741607416077,39.180615446068146],[121.59301593015931,39.19243548695732],[121.60741607416077,39.200878373306736],[121.60741607416077,39.20594410511639],[121.6038160381604,39.216075568735675],[121.60021600216004,39.22114130054533],[121.62541625416253,39.22451845508509],[121.63261632616326,39.236338495974266],[121.6038160381604,39.253224268673094],[121.58941589415895,39.263355732292396],[121.61101611016113,39.27517577318157],[121.63621636216362,39.273487195911684],[121.64341643416435,39.27179861864181],[121.64701647016471,39.26504430956227],[121.65781657816581,39.26673288683216],[121.67941679416793,39.27517577318157],[121.71901719017194,39.29712727769005],[121.7370173701737,39.31232447311899],[121.7370173701737,39.31907878219852],[121.72981729817297,39.33089882308771],[121.75501755017552,39.35453890486606],[121.76581765817662,39.36467036848535],[121.78021780217802,39.37142467756489],[121.79101791017911,39.37142467756489],[121.83781837818378,39.36467036848535],[121.8666186661867,39.369736100295],[121.91341913419137,39.39506475934324],[121.94221942219423,39.40013049115289],[121.93141931419314,39.41701626385172],[121.9206192061921,39.41532768658183],[121.91341913419137,39.405196222962545],[121.89901899018992,39.40013049115289],[121.8810188101881,39.39675333661313],[121.84861848618488,39.38662187299383],[121.83061830618306,39.384933295723954],[121.74421744217443,39.398441913883005],[121.70821708217085,39.39506475934324],[121.71901719017194,39.37142467756489],[121.549815498155,39.361293213945586],[121.52461524615245,39.36467036848535],[121.49221492214923,39.38831045026372],[121.45981459814601,39.47442789102773],[121.43461434614346,39.508199436425386],[121.420214202142,39.5166423227748],[121.39861398613988,39.52001947731456],[121.35541355413557,39.52170805458445],[121.34101341013411,39.52001947731456],[121.31941319413193,39.5065108591555],[121.30501305013053,39.50144512734586],[121.30141301413016,39.503133704615735],[121.28341283412834,39.51157659096515],[121.27261272612725,39.51495374550491],[121.23661236612367,39.51495374550491],[121.22941229412294,39.518330900044674],[121.22221222212221,39.52846236366398],[121.22941229412294,39.53690525001339],[121.23661236612367,39.54197098182304],[121.24741247412476,39.543659559092916],[121.25821258212585,39.56392248633152],[121.29061290612907,39.585873990839985],[121.30501305013053,39.59769403172916],[121.32661326613265,39.60275976353881],[121.38061380613806,39.60107118626894],[121.44901449014492,39.61457980442799],[121.47061470614705,39.63146557712682],[121.46341463414637,39.64666277255577],[121.49941499414996,39.6534170816353],[121.52461524615245,39.61795695896777],[121.53181531815318,39.623022690777404],[121.53541535415354,39.62639984531718],[121.53541535415354,39.63146557712682],[121.5390153901539,39.63821988620636],[121.5390153901539,39.64159704074612],[121.52821528215281,39.650039927095534],[121.52461524615245,39.6534170816353],[121.52821528215281,39.65679423617506],[121.5390153901539,39.6635485452546],[121.5390153901539,39.66692569979436],[121.54261542615427,39.668614277064236],[121.54621546215463,39.67368000887389],[121.549815498155,39.67874574068354],[121.54621546215463,39.68718862703295],[121.5390153901539,39.692254358842604],[121.53181531815318,39.690565781572715],[121.52461524615245,39.68718862703295],[121.51741517415178,39.68718862703295],[121.50661506615069,39.69394293611248],[121.49221492214923,39.72096017243061],[121.46341463414637,39.737845945129436],[121.46341463414637,39.7412230996692],[121.45981459814601,39.74460025420896],[121.45621456214565,39.747977408748724],[121.47421474214741,39.75642029509814],[121.4850148501485,39.76317460417768],[121.48861488614887,39.77837179960662],[121.47781477814777,39.78681468595603],[121.47061470614705,39.80538903592473],[121.47061470614705,39.810454767734385],[121.51021510215105,39.82396338589345],[121.53541535415354,39.86111208583087],[121.56781567815682,39.85942350856098],[121.6146161461615,39.87124354945017],[121.63621636216362,39.89657220849841],[121.68661686616866,39.92190086754664],[121.70821708217085,39.92696659935629],[121.73341733417334,39.92358944481653],[121.75501755017552,39.91852371300688],[121.77301773017729,39.920212290276766],[121.79821798217984,39.940475217515356],[121.80541805418056,39.94891810386477],[121.80541805418056,39.957360990214184],[121.80901809018093,39.9658038765636],[121.83781837818378,39.97086960837325],[121.8558185581856,39.9843782265323],[121.87381873818737,39.99113253561184],[121.8810188101881,39.997886844691365],[121.8810188101881,40.00801830831067],[121.87381873818737,40.01646119466008],[121.86301863018633,40.019838349199844],[121.83781837818378,40.019838349199844],[121.82701827018269,40.02321550373961],[121.8810188101881,40.04178985370832],[121.92781927819277,40.07724997637585],[121.93141931419314,40.10089005815421],[121.99621996219963,40.124530139932574],[122.00702007020072,40.15661310806034],[121.99261992619927,40.187007498918234],[122.01422014220145,40.18869607618811],[122.03942039420394,40.19713896253752],[122.05742057420576,40.2089590034267],[122.09342093420935,40.227533353395415],[122.10062100621008,40.249484857903894],[122.1078210782108,40.262993476062945],[122.1078210782108,40.274813516952136],[122.1078210782108,40.28325640330155],[122.1078210782108,40.291699289650964],[122.1078210782108,40.310273639619666],[122.12942129421293,40.325470835048606],[122.17982179821797,40.352488071366736],[122.21222212222125,40.38119388495474],[122.20502205022052,40.42678547124157],[122.2410224102241,40.42678547124157],[122.2518225182252,40.430162625781335],[122.2518225182252,40.43860551213075],[122.24822248222483,40.44704839848016],[122.2518225182252,40.4538027075597],[122.26622266222665,40.46055701663923],[122.28062280622805,40.46562274844888],[122.28782287822878,40.472377057528405],[122.28782287822878,40.48926283022723],[122.30222302223024,40.5027714483863],[122.29502295022951,40.52303437562489],[122.27702277022769,40.54329730286348],[122.22662226622265,40.57875742553101],[122.17622176221761,40.58720031188042],[122.15102151021512,40.60408608457925],[122.13662136621366,40.624349011817856],[122.16902169021694,40.65305482540586],[122.16902169021694,40.6868263708035],[122.15822158221584,40.702023566232455],[122.13662136621366,40.68513779353363],[122.12222122221226,40.680072061723976],[122.1078210782108,40.70033498896257],[122.06822068220686,40.73579511163011],[122.05022050220504,40.7459265752494],[121.89541895418955,40.80840393423506],[121.87021870218706,40.8151582433146],[121.85221852218524,40.83204401601343],[121.84501845018451,40.85906125233154],[121.84141841418415,40.91309572496779],[121.83781837818378,40.919850034047315],[121.82701827018269,40.93335865220638],[121.82701827018269,40.94855584763533],[121.83781837818378,40.95531015671486],[121.84861848618488,40.95868731125462],[121.85941859418597,40.967130197604035],[121.87381873818737,40.989081702112514],[121.8666186661867,40.99583601119204],[121.82701827018269,40.97388450668356],[121.80901809018093,40.96037588852451],[121.77661776617765,40.93504722947627],[121.78021780217802,40.90802999315814],[121.76941769417698,40.889455643189436],[121.75861758617589,40.87256987049061],[121.74061740617407,40.848929788712255],[121.69381693816939,40.848929788712255],[121.59661596615967,40.84555263417248],[121.57501575015749,40.842175479632715],[121.56781567815682,40.84555263417248],[121.52821528215281,40.86750413868096],[121.51021510215105,40.87932417957013],[121.48141481414814,40.884389911379785],[121.44901449014492,40.88607848864967],[121.44181441814419,40.89114422045931],[121.43821438214383,40.899587106808724],[121.43461434614346,40.90802999315814],[121.4310143101431,40.91309572496779],[121.420214202142,40.91816145677744],[121.39501395013951,40.924915765856966],[121.38421384213842,40.92998149766662],[121.3626136261363,40.94011296128592],[121.33741337413375,40.92829292039673],[121.31581315813162,40.909718570428026],[121.2978129781298,40.899587106808724],[121.2870128701287,40.899587106808724],[121.27261272612725,40.9029642613485],[121.26541265412658,40.909718570428026],[121.25821258212585,40.919850034047315],[121.2438124381244,40.906341415888264],[121.22581225812257,40.926604343126854],[121.20061200612008,40.92998149766662],[121.17541175411753,40.9215386113172],[121.1538115381154,40.906341415888264],[121.14301143011431,40.90127568407861],[121.13221132211322,40.8928327977292],[121.12141121411213,40.884389911379785],[121.1106111061111,40.87594702503037],[121.10701107011073,40.87256987049061],[121.08181081810818,40.86581556141107],[121.07821078210782,40.862438406871306],[121.08181081810818,40.857372675061654],[121.08181081810818,40.85061836598213],[121.08181081810818,40.84555263417248],[121.08181081810818,40.82866686147365],[121.06741067410672,40.81853539785436],[121.06741067410672,40.80333820242541],[121.04941049410496,40.79658389334588],[121.04221042210423,40.8151582433146],[121.03141031410314,40.826978284203776],[121.00621006210065,40.8337325932833],[120.9918099180992,40.83204401601343],[120.9810098100981,40.826978284203776],[120.97020970209701,40.81853539785436],[120.96300963009634,40.806715356965185],[120.96660966609664,40.79320673880612],[120.97020970209701,40.78307527518682],[120.95940959409597,40.774632388837404],[120.94500945009452,40.76618950248799],[120.93780937809379,40.7560580388687],[120.93780937809379,40.74086084343975],[120.95580955809561,40.737483688899985],[120.97740977409774,40.739172266169874],[120.99540995409956,40.73579511163011],[121.00981009810101,40.73072937982046],[121.02061020610205,40.71890933893128],[120.99540995409956,40.71553218439152],[120.96300963009634,40.70877787531198],[120.94140941409415,40.69189210261315],[120.92340923409233,40.68851494807339],[120.89460894608948,40.68513779353363],[120.88380883808838,40.680072061723976],[120.86940869408693,40.6783834844541],[120.8478084780848,40.68344921626374],[120.82620826208262,40.67331775264445],[120.81900819008189,40.65643197994562],[120.81540815408152,40.639546207246795],[120.80820808208085,40.617594702738316],[120.79740797407976,40.599020352769614],[120.79020790207903,40.592266043690074],[120.76860768607685,40.58551173461055],[120.70020700207004,40.536542993783954],[120.67860678606786,40.521345798355],[120.67140671406713,40.5027714483863],[120.6642066420664,40.49095140749712],[120.6606066060661,40.48419709841758],[120.63180631806318,40.47575421206817],[120.62100621006209,40.47406563479829],[120.60300603006033,40.46562274844888],[120.5958059580596,40.450425553019926],[120.59940599405996,40.431851203051224],[120.5958059580596,40.42171973943192],[120.58500585005851,40.41327685308251],[120.56340563405632,40.41158827581263],[120.54540545405456,40.40314538946322],[120.53820538205383,40.38288246222463],[120.54900549005492,40.37612815314509],[120.56700567005669,40.37950530768485],[120.58860588605887,40.3845710394945],[120.59220592205924,40.367685266795675],[120.56340563405632,40.35417664863661],[120.53460534605347,40.34404518501732],[120.50220502205025,40.327159412318494],[120.50220502205025,40.30858506234978],[120.50220502205025,40.291699289650964],[120.50580505805061,40.27312493968225],[120.50580505805061,40.249484857903894],[120.49140491404916,40.23091050793518],[120.47340473404734,40.21402473523635],[120.45180451804521,40.200516117077285],[120.43740437404375,40.19376180799776],[120.39420394203944,40.19376180799776],[120.35820358203586,40.19207323072787],[120.3330033300333,40.187007498918234],[120.30780307803082,40.180253189838695],[120.289802898029,40.16336741713987],[120.26100261002614,40.14648164444104],[120.24660246602468,40.144793067171165],[120.2250022500225,40.13466160355186],[120.19260192601928,40.12621871720245],[120.18900189001891,40.12621871720245],[120.18180181801819,40.122841562662686],[120.1566015660157,40.11102152177351],[120.11700117001169,40.09920148088433],[119.95139951399517,40.05698704913726],[119.91539915399153,40.03672412189867],[119.91179911799117,40.01139546285043],[119.91179911799117,39.997886844691365],[119.87579875798758,39.9945096901516],[119.85059850598509,39.98606680380219],[119.81099810998109,39.97255818564312],[119.79299792997932,39.96411529929371],[119.7749977499775,39.95060668113466],[119.74979749797501,39.95229525840453],[119.7065970659707,39.935409485705705],[119.65979659796596,39.93203233116594],[119.62019620196202,39.91176940392735],[119.60219602196025,39.9067036721177],[119.57339573395734,39.905015094847826],[119.55539555395558,39.89826078576829],[119.53379533795339,39.89150647668876],[119.52659526595266,39.87124354945017],[119.51939519395194,39.857734931291105],[119.52659526595266,39.84084915859228],[119.53019530195303,39.815520499544036],[119.49419494194944,39.81383192227415],[119.46539465394653,39.815520499544036],[119.42939429394295,39.795257572305445],[119.41139411394113,39.77837179960662],[119.38619386193864,39.7597974496379],[119.36819368193682,39.747977408748724],[119.35739357393572,39.73615736785955],[119.35019350193505,39.7310916360499],[119.33939339393396,39.71589444062096],[119.31419314193141,39.64159704074612],[119.30339303393038,39.61795695896777],[119.28539285392856,39.59600545445929],[119.28179281792819,39.59600545445929],[119.26739267392674,39.59769403172916],[119.24579245792461,39.5943168771894],[119.22419224192242,39.58418541357011],[119.20979209792097,39.56898821814116],[119.20979209792097,39.550413868172456],[119.23139231392315,39.565611063601395],[119.24219242192424,39.570676795411046],[119.23859238592388,39.56223390906163],[119.23499234992352,39.55379102271222],[119.23139231392315,39.545348136362804],[119.22779227792279,39.5352166727435],[119.24219242192424,39.545348136362804],[119.26379263792637,39.57743110449057],[119.2709927099271,39.580808259030334],[119.28179281792819,39.5757425272207],[119.26019260192601,39.5352166727435],[119.25659256592564,39.49300224099645],[119.2709927099271,39.48962508645667],[119.29619296192965,39.45585354105903],[119.30339303393038,39.43221345928066],[119.29619296192965,39.41195053204207],[119.27819278192783,39.383244718454065],[119.25659256592564,39.36635894575524],[119.22419224192242,39.357916059405824],[119.2025920259203,39.362981791215475],[119.18459184591848,39.35453890486606],[119.13059130591307,39.29375012315029],[119.09459094590949,39.259978577752634],[119.06219062190621,39.23127276416463],[119.04059040590408,39.21269841419591],[119.01539015390154,39.18905833241756],[118.99378993789941,39.17892686879826],[118.939789397894,39.138401014321076],[118.92538925389255,39.12995812797166],[118.91098910989109,39.12489239616201],[118.89298892988933,39.12489239616201],[118.89298892988933,39.131646705241536],[118.93258932589328,39.15190963248014],[118.94338943389437,39.15866394155967],[118.94698946989473,39.16879540517897],[118.9505895058951,39.17892686879826],[118.95778957789577,39.18736975514767],[118.96858968589686,39.194124064227196],[118.94698946989473,39.19243548695732],[118.90378903789036,39.17723829152838],[118.88218882188823,39.17217255971873],[118.8857888578886,39.18568117787778],[118.87138871388714,39.200878373306736],[118.8749887498875,39.2143869914658],[118.86058860588605,39.20763268238626],[118.83898838988392,39.175549714258494],[118.81738817388174,39.16372967336932],[118.79578795787961,39.15190963248014],[118.77418774187743,39.148532477940364],[118.72738727387275,39.14684390067049],[118.6877868778688,39.153598209750015],[118.64818648186485,39.160352518829555],[118.61938619386194,39.160352518829555],[118.59058590585909,39.148532477940364],[118.56178561785617,39.14684390067049],[118.52578525785259,39.148532477940364],[118.51858518585186,39.14008959159095],[118.52938529385295,39.12489239616201],[118.51138511385113,39.1164495098126],[118.48618486184864,39.10125231438366],[118.46818468184682,39.097875159843895],[118.41058410584105,39.06241503717635],[118.3817838178382,39.050594996287174],[118.36018360183601,39.04215210993776],[118.34578345783461,39.03033206904858],[118.3277832778328,39.03033206904858],[118.29898298982988,39.04046353266787],[118.26658266582666,39.04384068720765],[118.23418234182344,39.05228357355706],[118.20538205382053,39.075923655335416],[118.18738187381877,39.10969520073307],[118.16938169381694,39.13502385978131],[118.14058140581409,39.17217255971873],[118.09738097380978,39.20256695057661],[118.04698046980474,39.21945272327544],[118.02898028980292,39.21945272327544],[117.97497974979751,39.216075568735675],[117.9317793177932,39.21269841419591],[117.88497884978852,39.200878373306736],[117.8129781297813,39.15190963248014],[117.7589775897759,39.11476093254272],[117.73737737377377,39.10631804619331],[117.71577715777158,39.111383778002946],[117.71937719377195,39.09280942803424],[117.72657726577268,39.08774369622459],[117.73737737377377,39.07761223260529],[117.75177751777517,39.067480768986],[117.7589775897759,39.04552926447752],[117.76617766177662,39.02695491450882],[117.77337773377735,38.998249100920816],[117.77697776977772,38.98136332822199],[117.7445774457745,38.98305190549186],[117.73017730177304,38.98474048276175],[117.70137701377013,38.99487194638104],[117.70497704977049,38.986429060031625],[117.70497704977049,38.98474048276175],[117.70857708577086,38.98136332822199],[117.58257582575828,38.810817023963835],[117.57897578975792,38.79224267399512],[117.57537575375756,38.77366832402642],[117.57177571775719,38.71456811958052],[117.55737557375573,38.69092803780215],[117.55737557375573,38.67235368783345],[117.5609756097561,38.65715649240451],[117.55377553775537,38.643647874245445],[117.54297542975434,38.621696369736966],[117.56457564575646,38.61325348338755],[117.57897578975792,38.58454766979955],[117.66897668976691,38.44608433366916],[117.71577715777158,38.378541242873865],[117.80217802178021,38.294112379379726],[117.83817838178385,38.27047229760137],[117.89937899378992,38.246832215823005],[117.94257942579429,38.233323597663954],[117.96417964179642,38.211372093155475],[117.97857978579788,38.19448632045665],[117.98937989379897,38.19786347499641],[118.00738007380073,38.19617489772652],[118.03978039780401,38.18097770229758],[118.05418054180541,38.17253481594817],[118.05778057780577,38.16071477505899],[118.05418054180541,38.153960465979466],[118.0649806498065,38.143829002360164],[118.08298082980832,38.1404518478204],[118.08658086580868,38.13876327055051],[118.09738097380978,38.142140425090275],[118.10818108181081,38.148894734169815],[118.1189811898119,38.15227188870958],[118.14778147781476,38.142140425090275],[118.21618216182162,38.14551757963005],[118.31338313383134,38.128631806931224],[118.42498424984251,38.1117460342324],[118.450184501845,38.108368879692634],[118.47178471784719,38.101614570613094],[118.49338493384937,38.09317168426368],[118.51138511385113,38.08810595245403],[118.53298532985332,38.07290875702509],[118.54378543785441,38.06784302521544],[118.55098550985508,38.06953160248533],[118.55818558185581,38.07459733429498],[118.56178561785617,38.07628591156485],[118.57258572585727,38.079663066104615],[118.58338583385836,38.08979452972392],[118.59778597785981,38.11005745696251],[118.61578615786158,38.12525465239146],[118.65538655386553,38.14551757963005],[118.75978759787597,38.15564904324934],[118.80658806588065,38.15227188870958],[118.82458824588247,38.15227188870958],[118.83898838988392,38.15227188870958],[118.89658896588969,38.12356607512157],[118.9505895058951,38.09654883880344],[118.92538925389255,38.05771156159615],[118.94338943389437,38.049268675246736],[118.95778957789577,38.03407147981778],[118.97218972189722,37.996922779880364],[118.99738997389977,37.96315123448271],[119.04779047790481,37.94795403905377],[119.09099090990912,37.91249391638624],[119.11619116191162,37.85339371194034],[119.15579155791556,37.82468789835234],[119.2061920619206,37.80273639384386],[119.24219242192424,37.7689648484462],[119.26019260192601,37.716618953079845],[119.25659256592564,37.67102736679301],[119.2169921699217,37.674404521332775],[119.18819188191884,37.70142175765089],[119.11979119791198,37.736881880318435],[119.06939069390694,37.7402590348582],[119.03699036990372,37.721684684889496],[119.02619026190263,37.70311033492078],[119.02619026190263,37.689601716761715],[119.01179011790117,37.654141594094185],[118.99378993789941,37.633878666855594],[118.97578975789759,37.61023858507723],[118.96858968589686,37.5933528123784],[118.96858968589686,37.57308988513981],[118.95778957789577,37.53087545339274],[118.94338943389437,37.3789034991033],[118.9505895058951,37.33668906735623],[118.96138961389613,37.29616321287905],[118.97218972189722,37.28096601745011],[118.99018990189904,37.27421170837057],[119.01539015390154,37.26914597656092],[119.02979029790299,37.257325935671744],[119.04419044190445,37.242128740242805],[119.05859058590585,37.226931544813866],[119.11619116191162,37.201602885765624],[119.14499144991453,37.179651381257145],[119.28539285392856,37.137436949510075],[119.44019440194404,37.12055117681125],[119.47619476194762,37.13405979497031],[119.5229952299523,37.139125526779964],[119.53739537395376,37.137436949510075],[119.56259562595625,37.142502681319726],[119.65979659796596,37.137436949510075],[119.71739717397173,37.14081410404984],[119.77139771397714,37.152634144939015],[119.77859778597787,37.16783134036797],[119.79299792997932,37.18133995852703],[119.87579875798758,37.23368585389339],[119.89739897398977,37.24888304932233],[119.88659886598867,37.284343171989875],[119.86499864998649,37.32149187192729],[119.84699846998473,37.34344337643577],[119.85779857798582,37.360329149134586],[119.88299882998831,37.37046061275389],[119.92979929799299,37.38396923091295],[119.98739987399875,37.41267504450096],[119.99819998199985,37.42111793085037],[120.00900009000094,37.422806508120246],[120.05940059400598,37.439692280819074],[120.18900189001891,37.512301103424036],[120.29700297002972,37.59841854418805],[120.32220322203221,37.632190089585706],[120.30780307803082,37.66596163498336],[120.29340293402936,37.67102736679301],[120.2790027900279,37.67271594406289],[120.24660246602468,37.67271594406289],[120.23580235802359,37.674404521332775],[120.22140221402213,37.679470253142426],[120.2142021420214,37.68453598495206],[120.22140221402213,37.68622456222195],[120.31140311403112,37.68622456222195],[120.36900369003689,37.694667448571366],[120.38700387003871,37.70479891219067],[120.39060390603908,37.70648748946054],[120.4122041220412,37.711553221270194],[120.44460444604448,37.738570457588324],[120.46260462604624,37.747013343937724],[120.55620556205565,37.76221053936668],[120.56340563405632,37.76389911663655],[120.59220592205924,37.78247346660527],[120.63540635406355,37.78922777568479],[120.6750067500675,37.80273639384386],[120.70380703807041,37.821310743812575],[120.73980739807399,37.83313078470175],[120.78660786607867,37.82975363016199],[120.82260822608225,37.8179335892728],[120.83700837008371,37.81624501200292],[120.8478084780848,37.8179335892728],[120.86580865808656,37.8280650528921],[120.87660876608766,37.82975363016199],[120.89820898208984,37.82637647562221],[120.9270092700927,37.819622166542686],[120.94140941409415,37.80611354838362],[120.9270092700927,37.78922777568479],[120.94140941409415,37.774030580255854],[120.95580955809561,37.76052196209679],[120.97380973809737,37.752079075747375],[120.99540995409956,37.747013343937724],[121.00621006210065,37.74363618939796],[121.00981009810101,37.73519330304855],[121.01701017010168,37.72506183942926],[121.02061020610205,37.716618953079845],[121.03141031410314,37.709864644000305],[121.04221042210423,37.709864644000305],[121.05301053010533,37.71324179854008],[121.06741067410672,37.71324179854008],[121.11421114211146,37.70817606673043],[121.13941139411395,37.70142175765089],[121.15021150211504,37.689601716761715],[121.14301143011431,37.676093098602664],[121.13221132211322,37.66427305771347],[121.12861128611286,37.652453016824296],[121.15021150211504,37.63725582139536],[121.13581135811359,37.627124357776054],[121.13581135811359,37.61023858507723],[121.14301143011431,37.59504138964829],[121.1538115381154,37.58322134875911],[121.17181171811717,37.57646703967957],[121.18981189811899,37.5747784624097],[121.30861308613089,37.58153277148922],[121.34461344613447,37.589975657838636],[121.37341373413733,37.61023858507723],[121.35901359013593,37.63050151231582],[121.35541355413557,37.63725582139536],[121.37341373413733,37.632190089585706],[121.39501395013951,37.62205862596642],[121.41301413014133,37.61023858507723],[121.4310143101431,37.596729966918176],[121.39861398613988,37.59504138964829],[121.38061380613806,37.58322134875911],[121.38061380613806,37.56633557606028],[121.40221402214024,37.549449803361455],[121.42381423814237,37.53594118520239],[121.44541445414455,37.51905541250356],[121.46341463414637,37.49879248526497],[121.47061470614705,37.47684098075649],[121.47781477814777,37.46839809440708],[121.49221492214923,37.46333236259744],[121.52101521015209,37.45995520805768],[121.53541535415354,37.4565780535179],[121.549815498155,37.44813516716849],[121.57141571415713,37.4278722399299],[121.59301593015931,37.424495085390134],[121.65061650616508,37.43631512627931],[121.67581675816757,37.439692280819074],[121.65421654216544,37.45826663078779],[121.63261632616326,37.46164378532755],[121.58581585815858,37.45320089897814],[121.59301593015931,37.46333236259744],[121.6038160381604,37.471775248946855],[121.6146161461615,37.47684098075649],[121.62181621816217,37.48021813529627],[121.63621636216362,37.48190671256614],[121.64341643416435,37.47852955802638],[121.65061650616508,37.47515240348662],[121.65781657816581,37.47346382621673],[121.73341733417334,37.46164378532755],[121.93861938619386,37.465020939867316],[121.95661956619568,37.45995520805768],[121.95661956619568,37.45320089897814],[121.94941949419496,37.44813516716849],[121.94581945819459,37.44138085808896],[121.94581945819459,37.43293797173955],[121.94941949419496,37.42618366266002],[121.95661956619568,37.424495085390134],[121.9890198901989,37.42618366266002],[121.99621996219963,37.43462654900944],[121.97821978219781,37.471775248946855],[121.98181981819818,37.48021813529627],[121.99621996219963,37.486972444375795],[122.01782017820182,37.51736683523369],[122.02502025020249,37.527498298852976],[122.04302043020431,37.534252607932515],[122.06102061020613,37.53762976247228],[122.07182071820722,37.544384071551804],[122.06822068220686,37.56295842152052],[122.07182071820722,37.56295842152052],[122.08262082620826,37.55282695790122],[122.09342093420935,37.549449803361455],[122.1078210782108,37.55282695790122],[122.12222122221226,37.56295842152052],[122.14022140221402,37.55113838063134],[122.15102151021512,37.53256403066263],[122.15102151021512,37.513989680693925],[122.13662136621366,37.50048106253486],[122.12942129421293,37.48359528983603],[122.14022140221402,37.4565780535179],[122.16182161821621,37.43293797173955],[122.18342183421834,37.41774077631061],[122.19782197821979,37.43293797173955],[122.20862208622088,37.44813516716849],[122.22302223022234,37.45826663078779],[122.24462244622447,37.45995520805768],[122.26262262622629,37.451512321708265],[122.27702277022769,37.424495085390134],[122.29502295022951,37.41774077631061],[122.45702457024572,37.41774077631061],[122.46062460624609,37.41942935358048],[122.46782467824681,37.422806508120246],[122.47142471424718,37.42618366266002],[122.47862478624785,37.42618366266002],[122.48222482224821,37.422806508120246],[122.48582485824858,37.41436362177083],[122.48942489424894,37.41267504450096],[122.57222572225726,37.40085500361178],[122.59022590225902,37.404232158151544],[122.60102601026011,37.41436362177083],[122.6118261182612,37.41942935358048],[122.66582665826661,37.41436362177083],[122.68022680226801,37.41436362177083],[122.68742687426874,37.409297889961195],[122.68742687426874,37.389034962722604],[122.68022680226801,37.37383776729365],[122.65502655026552,37.38396923091295],[122.61542615426157,37.37046061275389],[122.58662586625866,37.35188626278517],[122.57582575825757,37.3501976855153],[122.57222572225726,37.345131953705646],[122.59022590225902,37.31473756284775],[122.59382593825939,37.29447463560916],[122.5578255782558,37.319803294657405],[122.55062550625507,37.319803294657405],[122.55062550625507,37.31136040830799],[122.56142561425617,37.27421170837057],[122.56502565025653,37.26576882202116],[122.59022590225902,37.24381731751268],[122.59382593825939,37.237063008433154],[122.59742597425975,37.220177235734326],[122.60462604626048,37.21004577211504],[122.6118261182612,37.2032914630355],[122.62982629826297,37.199914308495735],[122.62982629826297,37.19315999941621],[122.58662586625866,37.18809426760656],[122.57582575825757,37.184717113066796],[122.56502565025653,37.17289707217762],[122.5686256862569,37.16614276309808],[122.57582575825757,37.157699876748666],[122.57582575825757,37.1441912585896],[122.54342543425435,37.15601129947879],[122.51102511025113,37.15601129947879],[122.48222482224821,37.139125526779964],[122.47142471424718,37.11041971319196],[122.46422464224645,37.11041971319196],[122.46422464224645,37.14587983585949],[122.46422464224645,37.152634144939015],[122.45342453424536,37.1543227222089],[122.44622446224463,37.14756841312938],[122.44262442624427,37.13574837224019],[122.44262442624427,37.117174022271485],[122.43542435424354,37.09859967230277],[122.43542435424354,37.090156785953354],[122.4390243902439,37.08509105414372],[122.44622446224463,37.08171389960394],[122.45342453424536,37.0766481677943],[122.45702457024572,37.066516704175],[122.449824498245,37.05638524055571],[122.41022410224105,37.03612231331711],[122.40302403024032,37.02092511788817],[122.41022410224105,37.00572792245923],[122.42462424624244,37.00403934518934],[122.43542435424354,37.01079365426888],[122.43542435424354,37.027679426967694],[122.46062460624609,37.03105658150747],[122.51462514625149,37.02092511788817],[122.53982539825398,37.027679426967694],[122.52542525425253,36.94493914074344],[122.53262532625325,36.92636479077474],[122.52542525425253,36.914544749885565],[122.51822518225185,36.90272470899639],[122.50742507425076,36.89765897718674],[122.50022500225003,36.90441328626626],[122.50022500225003,36.91623332715544],[122.50742507425076,36.92636479077474],[122.51102511025113,36.934807677124155],[122.50022500225003,36.93818483166392],[122.4930249302493,36.93311909985427],[122.47862478624785,36.92636479077474],[122.45702457024572,36.92129905896509],[122.4390243902439,36.91792190442533],[122.43182431824317,36.9196104816952],[122.42102421024214,36.92298763623498],[122.41382413824141,36.92467621350485],[122.40662406624068,36.92298763623498],[122.40302403024032,36.914544749885565],[122.40302403024032,36.90610186353615],[122.40662406624068,36.9010361317265],[122.41382413824141,36.89765897718674],[122.42102421024214,36.89597039991685],[122.42822428224281,36.887527513567434],[122.43542435424354,36.87908462721802],[122.43542435424354,36.87064174086861],[122.43182431824317,36.86388743178908],[122.42102421024214,36.86051027724932],[122.40302403024032,36.85713312270954],[122.39582395823959,36.85713312270954],[122.39222392223922,36.85882169997943],[122.38862388623886,36.86219885451919],[122.3850238502385,36.86388743178908],[122.38142381423813,36.86219885451919],[122.37782377823777,36.85713312270954],[122.37782377823777,36.852067390899904],[122.37422374223746,36.850378813630016],[122.3706237062371,36.845313081820365],[122.359823598236,36.83349304093119],[122.35622356223564,36.82842730912154],[122.32022320223206,36.8233615773119],[122.20142201422016,36.8419359272806],[122.1870218702187,36.850378813630016],[122.17982179821797,36.865576009058955],[122.18342183421834,36.88415035902767],[122.19782197821979,36.89765897718674],[122.26622266222665,36.89765897718674],[122.2518225182252,36.90610186353615],[122.21222212222125,36.91792190442533],[122.17622176221761,36.94156198620368],[122.16182161821621,36.94662771801333],[122.17982179821797,36.98546499522064],[122.17982179821797,37.00572792245923],[122.16542165421657,37.01417080880864],[122.15102151021512,37.00572792245923],[122.14742147421475,36.98546499522064],[122.14742147421475,36.96182491344227],[122.14382143821439,36.94662771801333],[122.12942129421293,36.94493914074344],[122.11142111421117,36.95169344982298],[122.09342093420935,36.95169344982298],[122.08622086220862,36.929741945314504],[122.08262082620826,36.91623332715544],[122.06462064620649,36.90610186353615],[122.04662046620467,36.9010361317265],[122.03222032220322,36.89765897718674],[122.03582035820358,36.91623332715544],[122.03582035820358,36.94156198620368],[122.03582035820358,36.96351349071216],[122.05022050220504,36.97364495433145],[122.0538205382054,36.975333531601336],[122.05022050220504,36.98039926341099],[122.03942039420394,36.98377641795075],[122.02862028620285,36.98715357249051],[122.00342003420036,36.98546499522064],[121.96021960219605,36.992219304300164],[121.92781927819277,36.99390788157005],[121.91341913419137,36.98546499522064],[121.92421924219241,36.96857922252181],[121.94941949419496,36.93818483166392],[121.91341913419137,36.9196104816952],[121.78741787417874,36.8909046681072],[121.77661776617765,36.88583893629756],[121.75501755017552,36.872330318138495],[121.75141751417516,36.867264586328844],[121.75141751417516,36.85713312270954],[121.74421744217443,36.84700165909025],[121.7370173701737,36.83855877274084],[121.72981729817297,36.83518161820108],[121.70821708217085,36.83349304093119],[121.6722167221672,36.81998442277212],[121.65061650616508,36.81660726823236],[121.65061650616508,36.82167300004201],[121.67581675816757,36.83349304093119],[121.6830168301683,36.83518161820108],[121.6830168301683,36.8419359272806],[121.65781657816581,36.84024735001073],[121.63621636216362,36.831804463661314],[121.62541625416253,36.814918690962486],[121.62181621816217,36.789590031914244],[121.63261632616326,36.76088421832624],[121.63261632616326,36.747375600167175],[121.62541625416253,36.740621291087635],[121.61101611016113,36.74230986835752],[121.6038160381604,36.74906417743705],[121.59661596615967,36.75919564105635],[121.59301593015931,36.767638527405765],[121.58221582215822,36.762572795596114],[121.57141571415713,36.764261372866],[121.56061560615609,36.767638527405765],[121.549815498155,36.764261372866],[121.53541535415354,36.75581848651659],[121.52461524615245,36.7541299092467],[121.50301503015032,36.76088421832624],[121.4958149581496,36.77439283648529],[121.50301503015032,36.787901454644356],[121.52101521015209,36.794655763723895],[121.53541535415354,36.79634434099377],[121.54621546215463,36.79803291826366],[121.55341553415536,36.803098650073295],[121.56421564215646,36.81154153642271],[121.57141571415713,36.81998442277212],[121.59661596615967,36.82673873185166],[121.6038160381604,36.831804463661314],[121.60741607416077,36.845313081820365],[121.58941589415895,36.84700165909025],[121.56421564215646,36.8419359272806],[121.54621546215463,36.83518161820108],[121.5390153901539,36.82842730912154],[121.53181531815318,36.81998442277212],[121.52101521015209,36.81154153642271],[121.51021510215105,36.808164381882946],[121.49941499414996,36.81154153642271],[121.4958149581496,36.81660726823236],[121.49221492214923,36.8233615773119],[121.4850148501485,36.82842730912154],[121.45981459814601,36.82842730912154],[121.45261452614528,36.81660726823236],[121.45981459814601,36.80141007280342],[121.46701467014674,36.794655763723895],[121.47061470614705,36.789590031914244],[121.46701467014674,36.77776999102507],[121.45261452614528,36.75750706378646],[121.44541445414455,36.7541299092467],[121.4310143101431,36.752441331976826],[121.40941409414097,36.7541299092467],[121.39141391413915,36.747375600167175],[121.3770137701377,36.732178404738235],[121.38061380613806,36.71698120930928],[121.40221402214024,36.71191547749963],[121.38421384213842,36.70684974568999],[121.36981369813697,36.70684974568999],[121.33381333813338,36.71191547749963],[121.31581315813162,36.71191547749963],[121.15741157411577,36.66801246848269],[121.12861128611286,36.65112669578386],[121.08901089010891,36.61566657311633],[121.08181081810818,36.61060084130668],[121.06381063810642,36.61060084130668],[121.04221042210423,36.627486614005505],[121.03141031410314,36.62410945946574],[121.03141031410314,36.6173551503862],[121.0350103501035,36.59709222314761],[121.03141031410314,36.59033791406809],[121.02421024210241,36.58358360498855],[121.01341013410138,36.585272182258436],[121.00621006210065,36.58696075952831],[120.99900999009992,36.59033791406809],[120.94500945009452,36.59202649133796],[120.9270092700927,36.59709222314761],[120.93780937809379,36.61228941857655],[120.93420934209342,36.620732304925966],[120.92340923409233,36.62410945946574],[120.90540905409057,36.62410945946574],[120.89100891008911,36.62917519127538],[120.86580865808656,36.64606096397421],[120.85140851408516,36.65112669578386],[120.82260822608225,36.64437238670433],[120.77220772207721,36.6173551503862],[120.75060750607508,36.6173551503862],[120.74700747007472,36.60891226403679],[120.74700747007472,36.60384653222714],[120.75060750607508,36.600469377687375],[120.75780757807581,36.59709222314761],[120.74700747007472,36.57682929590902],[120.74340743407436,36.55656636867043],[120.75060750607508,36.54136917324148],[120.77940779407794,36.54136917324148],[120.7938079380794,36.55150063686078],[120.81180811808122,36.58358360498855],[120.82620826208262,36.59709222314761],[120.85140851408516,36.60384653222714],[120.86580865808656,36.59709222314761],[120.89460894608948,36.56163210048008],[120.90540905409057,36.55656636867043],[120.9126091260913,36.55656636867043],[120.91980919809197,36.55318921413067],[120.92340923409233,36.537992018701715],[120.9270092700927,36.532926286892064],[120.93780937809379,36.53461486416195],[120.94860948609488,36.5396805959716],[120.95580955809561,36.54812348232102],[120.96300963009634,36.54812348232102],[120.96300963009634,36.53123770962219],[120.95220952209525,36.51941766873301],[120.94140941409415,36.50928620511371],[120.93780937809379,36.497466164224534],[120.93780937809379,36.48733470060523],[120.94860948609488,36.45862888701723],[120.93420934209342,36.45694030974735],[120.91980919809197,36.45694030974735],[120.90540905409057,36.4518745779377],[120.89460894608948,36.438365959778636],[120.9018090180902,36.42823449615935],[120.9018090180902,36.419791609809934],[120.89820898208984,36.41134872346052],[120.89100891008911,36.397840105301455],[120.88380883808838,36.38939721895204],[120.87300873008729,36.38095433260263],[120.86580865808656,36.377577178062865],[120.85140851408516,36.38602006441228],[120.84420844208444,36.4231687643497],[120.82620826208262,36.433300227968985],[120.83340833408334,36.455251732477464],[120.80820808208085,36.46369461882688],[120.77220772207721,36.46369461882688],[120.75060750607508,36.45862888701723],[120.74700747007472,36.455251732477464],[120.73980739807399,36.44343169158829],[120.73620736207363,36.438365959778636],[120.73260732607326,36.43667738250876],[120.71820718207181,36.43161165069911],[120.71460714607144,36.42823449615935],[120.68580685806859,36.38770864168215],[120.68940689406895,36.370822868983325],[120.71100711007114,36.34887136447486],[120.72180721807217,36.330297014506144],[120.70740707407077,36.32185412815673],[120.69300693006932,36.32523128269649],[120.66780667806677,36.335362746315795],[120.6606066060661,36.33705132358568],[120.64620646206464,36.330297014506144],[120.64260642606428,36.32185412815673],[120.649806498065,36.31172266453744],[120.6606066060661,36.30159120091814],[120.65340653406537,36.288082582759074],[120.6606066060661,36.277951119139786],[120.67140671406713,36.26613107825061],[120.6750067500675,36.250933882821656],[120.68580685806859,36.188456523835995],[120.69300693006932,36.174947905676945],[120.70380703807041,36.15637355570823],[120.69660696606968,36.14455351481905],[120.62820628206282,36.11584770123105],[120.62460624606246,36.11753627850092],[120.62100621006209,36.1209134330407],[120.61740617406173,36.12260201031057],[120.59220592205924,36.10909339215151],[120.56340563405632,36.11584770123105],[120.55260552605529,36.11415912396116],[120.54540545405456,36.09896192853222],[120.53460534605347,36.09220761945268],[120.51300513005128,36.08883046491292],[120.47340473404734,36.08883046491292],[120.46260462604624,36.085453310373154],[120.43740437404375,36.068567537674326],[120.4230042300423,36.0618132285948],[120.36900369003689,36.048304610435736],[120.35460354603549,36.04155030135621],[120.34020340203404,36.049993187705624],[120.32580325803258,36.05674749678515],[120.30780307803082,36.0618132285948],[120.29340293402936,36.0618132285948],[120.29340293402936,36.068567537674326],[120.30780307803082,36.07869900129363],[120.31140311403112,36.090519042182805],[120.31500315003149,36.10402766034187],[120.32220322203221,36.11922485577081],[120.33660336603367,36.13611062846964],[120.36180361803616,36.19183367837576],[120.34740347403476,36.21378518288424],[120.34020340203404,36.22222806923365],[120.32220322203221,36.225605223773414],[120.31140311403112,36.26613107825061],[120.30780307803082,36.27457396460002],[120.28620286202863,36.26444250098072],[120.27180271802717,36.23404811012283],[120.27540275402754,36.20365371926495],[120.30060300603009,36.19183367837576],[120.28620286202863,36.17663648294682],[120.26460264602645,36.18001363748658],[120.24300243002432,36.19183367837576],[120.22860228602286,36.19183367837576],[120.2250022500225,36.19352225564565],[120.2250022500225,36.19689941018541],[120.22140221402213,36.1985879874553],[120.21780217802177,36.1985879874553],[120.21780217802177,36.22222806923365],[120.18540185401855,36.21885091469389],[120.1458014580146,36.208719451074586],[120.11700117001169,36.210408028344474],[120.11340113401133,36.217162337424],[120.10980109801102,36.22222806923365],[120.10980109801102,36.225605223773414],[120.09540095400956,36.225605223773414],[120.0918009180092,36.22391664650354],[120.08820088200883,36.215473760154126],[120.08460084600847,36.208719451074586],[120.0918009180092,36.20534229653482],[120.10620106201065,36.20027656472517],[120.10980109801102,36.188456523835995],[120.10620106201065,36.174947905676945],[120.08820088200883,36.147930669358814],[120.08820088200883,36.1293563193901],[120.08820088200883,36.112470546691284],[120.09900099000993,36.09558477399246],[120.11700117001169,36.08714188764304],[120.13500135001351,36.083764733103266],[120.15300153001533,36.07701042402374],[120.16740167401673,36.0618132285948],[120.1710017100171,36.04661603316585],[120.1710017100171,36.00946733322843],[120.17460174601746,35.99427013779949],[120.18540185401855,35.98413867418019],[120.19620196201964,35.985827251450075],[120.22860228602286,35.99933586960914],[120.22860228602286,35.97231863329101],[120.24300243002432,35.9740072105609],[120.27540275402754,35.99427013779949],[120.2790027900279,35.99764729233925],[120.28260282602827,36.006090178688666],[120.28620286202863,36.01115591049832],[120.29700297002972,36.0027130241489],[120.30420304203045,35.99427013779949],[120.30420304203045,35.987515828719964],[120.30420304203045,35.980761519640424],[120.30060300603009,35.97231863329101],[120.28620286202863,35.96218716967172],[120.24300243002432,35.95374428332231],[120.22860228602286,35.94192424243313],[120.18540185401855,35.903086965225825],[120.17460174601746,35.88957834706676],[120.1710017100171,35.908152697035476],[120.17820178201782,35.91997273792465],[120.18900189001891,35.93179277881383],[120.18900189001891,35.945301396972894],[120.16740167401673,35.938547087893355],[120.16380163801637,35.93348135608372],[120.1458014580146,35.91321842884511],[120.14220142201424,35.908152697035476],[120.13500135001351,35.90477554249571],[120.10620106201065,35.90477554249571],[120.09540095400956,35.901398387955936],[120.05220052200525,35.86256111074864],[120.0378003780038,35.84229818351005],[120.01980019800197,35.75955789728579],[120.00180001800021,35.72747492915802],[119.96939969399693,35.73254066096767],[119.95139951399517,35.75449216547615],[119.93699936999371,35.761246474555676],[119.92619926199262,35.756180742746025],[119.90819908199086,35.74436070185685],[119.90099900999013,35.735917815507435],[119.92979929799299,35.71058915645919],[119.93699936999371,35.70552342464954],[119.92979929799299,35.698769115570016],[119.90819908199086,35.680194765601314],[119.90099900999013,35.6717518792519],[119.90099900999013,35.65993183836271],[119.9045990459905,35.653177529283184],[119.90819908199086,35.64473464293377],[119.90819908199086,35.63460317931447],[119.9045990459905,35.62447171569518],[119.89739897398977,35.62109456115542],[119.88659886598867,35.617717406615654],[119.87579875798758,35.612651674806],[119.86139861398613,35.60589736572646],[119.84339843398436,35.616028829345765],[119.83259832598327,35.63460317931447],[119.839798397984,35.658243261092835],[119.81099810998109,35.64811179747353],[119.77139771397714,35.594077324837286],[119.74259742597428,35.575502974868584],[119.74979749797501,35.59914305664694],[119.74979749797501,35.60927452026624],[119.74259742597428,35.617717406615654],[119.73179731797319,35.62109456115542],[119.71739717397173,35.61940598388553],[119.7065970659707,35.61434025207588],[119.70299702997033,35.60589736572646],[119.6957969579696,35.59914305664694],[119.68499684996851,35.594077324837286],[119.67059670596706,35.590700170297524],[119.65619656196566,35.589011593027635],[119.64899648996493,35.583945861218],[119.6417964179642,35.57212582032882],[119.63459634596347,35.548485738550454],[119.60579605796062,35.48769695683468],[119.59859598595989,35.469122606865966],[119.59499594995953,35.46236829778644],[119.56979569795698,35.43535106146831],[119.56619566195661,35.42521959784902],[119.56259562595625,35.39989093880078],[119.55899558995588,35.38975947518148],[119.55179551795521,35.37962801156219],[119.5229952299523,35.35261077524406],[119.51219512195121,35.33910215708501],[119.50859508595084,35.33234784800547],[119.4689946899469,35.32221638438618],[119.43659436594368,35.32221638438618],[119.42939429394295,35.32221638438618],[119.42219422194222,35.31377349803677],[119.42219422194222,35.3002648798777],[119.42219422194222,35.27662479809935],[119.41859418594186,35.2715590662897],[119.40419404194046,35.25298471632098],[119.38619386193864,35.205704552764274],[119.37179371793718,35.11789853473037],[119.35739357393572,35.09763560749178],[119.3357933579336,35.08919272114237],[119.31419314193141,35.08581556660259],[119.28179281792819,35.07737268025318],[119.24939249392497,35.06892979390378],[119.22779227792279,35.065552639364],[119.22059220592206,35.063864062094126],[119.21339213392133,35.058798330284475],[119.2061920619206,35.04866686666517],[119.2025920259203,35.02502678488682],[119.19899198991993,35.016583898537405],[119.1917919179192,34.99969812583858],[119.1917919179192,34.974369466790336],[119.19539195391957,34.94735223047222],[119.2025920259203,34.932155035043266],[119.18819188191884,34.856169057898555],[119.1917919179192,34.81057747161172],[119.2025920259203,34.78524881256348],[119.18819188191884,34.766674462594764],[119.19539195391957,34.75992015351524],[119.1917919179192,34.74978868989594],[119.18819188191884,34.73290291719711],[119.1917919179192,34.71770572176817],[119.2025920259203,34.71263998995852],[119.20979209792097,34.71939429903806],[119.22059220592206,34.74978868989594],[119.22779227792279,34.75992015351524],[119.24219242192424,34.76160873078511],[119.29259292592928,34.7531658444357],[119.31059310593105,34.75485442170559],[119.3249932499325,34.75992015351524],[119.3357933579336,34.76836303986465],[119.34659346593469,34.78018308075383],[119.35739357393572,34.77511734894418],[119.37539375393754,34.75992015351524],[119.38619386193864,34.7531658444357],[119.40059400594009,34.751477267165825],[119.42939429394295,34.74978868989594],[119.4437944379444,34.746411535356174],[119.46179461794617,34.73290291719711],[119.47259472594726,34.71601714449828],[119.47259472594726,34.69744279452958],[119.4581945819458,34.683934176370514],[119.53019530195303,34.6163910855752],[119.5877958779588,34.58261954017755],[119.59859598595989,34.569110922018496],[119.60939609396092,34.562356612938956],[119.6417964179642,34.55053657204978],[119.6417964179642,34.54547084024013],[119.6417964179642,34.54040510843049],[119.6417964179642,34.537027953890714],[119.64899648996493,34.53365079935095],[119.65979659796596,34.53196222208108],[119.68499684996851,34.53365079935095],[119.7065970659707,34.53196222208108],[119.72819728197283,34.52351933573166],[119.74979749797501,34.51338787211236],[119.79659796597969,34.481304903984594],[119.82539825398254,34.47117344036529],[119.86139861398613,34.46610770855564],[119.9045990459905,34.464419131285766],[119.94059940599408,34.45766482220624],[119.98379983799839,34.44077904950741],[120.02340023400234,34.41882754499893],[120.07740077400774,34.37830169052175],[120.11700117001169,34.359727340553036],[120.23940239402395,34.324267217885506],[120.25740257402578,34.312447176996315],[120.26460264602645,34.29049567248785],[120.26820268202681,34.26685559070948],[120.27540275402754,34.24490408620102],[120.30060300603009,34.20437823172382],[120.30780307803082,34.173983840865944],[120.31860318603185,34.152032336357465],[120.32580325803258,34.136835140928525],[120.32580325803258,34.111506481880284],[120.34740347403476,34.07604635921274],[120.35460354603549,34.0608491637838],[120.35820358203586,34.054094854704275],[120.36540365403653,34.04565196835486],[120.37260372603726,34.03552050473556],[120.38340383403835,33.969665991210135],[120.4086040860409,33.91732009584376],[120.4122041220412,33.89705716860517],[120.4122041220412,33.886925704985885],[120.3978039780398,33.87848281863647],[120.40140401404017,33.87003993228706],[120.4086040860409,33.859908468667754],[120.41940419404193,33.8548427368581],[120.43020430204302,33.8463998505087],[120.44460444604448,33.824448346000224],[120.45180451804521,33.80080826422186],[120.44820448204484,33.78561106879292],[120.46260462604624,33.77547960517363],[120.48420484204843,33.76534814155433],[120.49860498604988,33.75352810066515],[120.50580505805061,33.734953750696434],[120.50580505805061,33.697805050759015],[120.51300513005128,33.657279196281834],[120.50220502205025,33.662344928091485],[120.49500495004952,33.662344928091485],[120.48780487804879,33.65896777355172],[120.48420484204843,33.65052488720231],[120.52740527405274,33.60999903272511],[120.53820538205383,33.594801837296174],[120.56340563405632,33.54752167373945],[120.57420574205742,33.5340130555804],[120.62820628206282,33.47829000567427],[120.63540635406355,33.46646996478509],[120.65340653406537,33.427632687577784],[120.65700657006573,33.412435492148845],[120.6606066060661,33.33813809227401],[120.66780667806677,33.32462947411494],[120.67860678606786,33.307743701416115],[120.69660696606968,33.292546505987175],[120.70740707407077,33.287480774177524],[120.72180721807217,33.285792196907636],[120.73620736207363,33.27903788782811],[120.75060750607508,33.26890642420881],[120.74700747007472,33.25539780604976],[120.74340743407436,33.25202065150998],[120.73620736207363,33.250332074240106],[120.73260732607326,33.24864349697022],[120.7290072900729,33.24188918789069],[120.73260732607326,33.23682345608104],[120.74340743407436,33.22838056973163],[120.74340743407436,33.223314837921976],[120.74340743407436,33.208117642493036],[120.73980739807399,33.20474048795327],[120.7290072900729,33.20474048795327],[120.78660786607867,33.16421463347609],[120.80820808208085,33.13719739715796],[120.7938079380794,33.10849158356996],[120.81180811808122,33.105114429030195],[120.81900819008189,33.09160581087113],[120.81900819008189,33.05445711093371],[120.82620826208262,33.03081702915536],[120.83340833408334,33.02575129734571],[120.8478084780848,33.02912845188547],[120.86580865808656,33.03250560642523],[120.89100891008911,33.02575129734571],[120.89460894608948,33.01393125645653],[120.88740887408875,32.978471133788986],[120.88740887408875,32.96327393836005],[120.90900909009093,32.84338495219838],[120.90540905409057,32.812990561340484],[120.88020880208802,32.7724647068633],[120.85140851408516,32.755578934164475],[120.86220862208626,32.72011881149693],[120.86220862208626,32.68972442063905],[120.85140851408516,32.69647872971858],[120.84420844208444,32.7032330387981],[120.84060840608407,32.71167592514752],[120.8478084780848,32.71843023422706],[120.84060840608407,32.72518454330658],[120.82980829808298,32.70998734787764],[120.82980829808298,32.698167306988466],[120.86220862208626,32.671150070670336],[120.90540905409057,32.65933002978116],[120.9126091260913,32.630624216193155],[120.94500945009452,32.60529555714491],[120.97380973809737,32.59516409352561],[121.02061020610205,32.568146857207495],[121.04221042210423,32.55801539358819],[121.06741067410672,32.54450677542914],[121.08541085410855,32.53606388907973],[121.09981099811,32.520866693650774],[121.09981099811,32.49722661187242],[121.10701107011073,32.49722661187242],[121.12141121411213,32.50735807549172],[121.15741157411577,32.49553803460253],[121.17541175411753,32.48709514825312],[121.18981189811899,32.478652261903704],[121.21501215012154,32.47189795282418],[121.27261272612725,32.448257871045826],[121.35541355413557,32.41448632564817],[121.38781387813879,32.385780512060165],[121.40221402214024,32.35200896666251],[121.4166141661417,32.26926868043826],[121.4166141661417,32.255760062279194],[121.420214202142,32.25069433046954],[121.4166141661417,32.24900575319967],[121.40221402214024,32.24394002139002],[121.3770137701377,32.24225144412013],[121.36621366213666,32.238874289580366],[121.3626136261363,32.23211998050084],[121.36621366213666,32.22705424869119],[121.39861398613988,32.16964262151518],[121.42381423814237,32.16457688970553],[121.4310143101431,32.151068271546464],[121.4310143101431,32.134182498847636],[121.44181441814419,32.113919571609046],[121.44901449014492,32.11223099433917],[121.45621456214565,32.115608148878934],[121.46341463414637,32.1189853034187],[121.46701467014674,32.12236245795846],[121.47421474214741,32.1189853034187],[121.48141481414814,32.11054241706928],[121.48861488614887,32.108853839799394],[121.4958149581496,32.11054241706928],[121.53181531815318,32.108853839799394],[121.55341553415536,32.10209953071987],[121.59301593015931,32.08690233529093],[121.65421654216544,32.06326225351256],[121.6830168301683,32.04299932627397],[121.71901719017194,32.026113553575144],[121.72621726217261,32.015982089955855],[121.76581765817662,31.995719162717265],[121.79821798217984,31.970390503669023],[121.82341823418233,31.951816153700307],[121.82341823418233,31.928176071921953],[121.84861848618488,31.9045359901436],[121.87381873818737,31.864010135666405],[121.87381873818737,31.825172858459112],[121.90261902619028,31.786335581251805],[121.9206192061921,31.754252613124038],[121.93141931419314,31.727235376805908],[121.91341913419137,31.706972449567317],[121.87021870218706,31.69008667686849],[121.81621816218166,31.691775254138378],[121.7478174781748,31.71203818137697],[121.70461704617048,31.720481067726382],[121.67581675816757,31.723858222266145],[121.65421654216544,31.73230110861556],[121.60741607416077,31.749186881314387],[121.57501575015749,31.766072654013215],[121.549815498155,31.77451554036263],[121.52821528215281,31.77958127217228],[121.51741517415178,31.782958426712042],[121.50661506615069,31.79308989033133],[121.49941499414996,31.801532776680745],[121.4958149581496,31.806598508490396],[121.48141481414814,31.811664240300047],[121.4166141661417,31.84037005388805],[121.31581315813162,31.88258448563512],[121.2870128701287,31.891027371984535],[121.22941229412294,31.865698712936293],[121.18621186211863,31.83699289934829],[121.11421114211146,31.796467044871108],[121.08541085410855,31.801532776680745],[121.06381063810642,31.81335281756992],[121.03861038610387,31.82010712664946],[121.00621006210065,31.82010712664946],[120.97740977409774,31.81504139483981],[120.95220952209525,31.825172858459112],[120.94140941409415,31.845435785697703],[120.94140941409415,31.867387290206167],[120.94140941409415,31.87583017655558],[120.94500945009452,31.884273062904995],[120.94140941409415,31.89271594925441],[120.9270092700927,31.896093103794186],[120.91980919809197,31.89947025833395],[120.9126091260913,31.91804460830265],[120.90540905409057,31.926487494652065],[120.8478084780848,31.990653430907614],[120.81180811808122,32.02273639903538],[120.74340743407436,32.036245017194446],[120.63540635406355,32.07677087167163],[120.56700567005669,32.07677087167163],[120.52380523805238,32.08183660348128],[120.49140491404916,32.08183660348128],[120.42660426604266,32.053130789893274],[120.36180361803616,32.026113553575144],[120.30060300603009,31.972079080938897],[120.26820268202681,31.948438999160544],[120.2250022500225,31.936618958271367],[120.17460174601746,31.936618958271367],[120.13140131401315,31.943373267350893],[120.0918009180092,31.95519330824007],[120.05220052200525,31.970390503669023],[120.01980019800197,31.990653430907614],[119.99099990999912,32.015982089955855],[119.92259922599226,32.108853839799394],[119.91179911799117,32.12405103522835],[119.90819908199086,32.13924823065729],[119.91179911799117,32.157822580626004],[119.92259922599226,32.196659857833296],[119.92259922599226,32.21692278507189],[119.90099900999013,32.198348435103185],[119.88659886598867,32.213545630532124],[119.87579875798758,32.265891525898496],[119.86139861398613,32.281088721327436],[119.84339843398436,32.29966307129614],[119.81819818198181,32.3131716894552],[119.79659796597969,32.31992599853474],[119.78219782197823,32.32161457580462],[119.75699756997574,32.32668030761427],[119.74259742597428,32.32668030761427],[119.69219692196924,32.31992599853474],[119.67779677796779,32.328368884884156],[119.65979659796596,32.345254657582984],[119.6417964179642,32.358763275742035],[119.61299612996129,32.35538612120227],[119.64899648996493,32.33681177123357],[119.65979659796596,32.32668030761427],[119.67779677796779,32.30641738037568],[119.68499684996851,32.29290876221661],[119.67779677796779,32.28615445313709],[119.67779677796779,32.27771156678767],[119.65619656196566,32.2354971350406],[119.64899648996493,32.220299939611664],[119.63459634596347,32.21016847599236],[119.62019620196202,32.20510274418271],[119.60579605796062,32.196659857833296],[119.62739627396274,32.18990554875377],[119.64539645396457,32.19497128056342],[119.65979659796596,32.20847989872247],[119.67059670596706,32.220299939611664],[119.69219692196924,32.2354971350406],[119.70299702997033,32.233808557770715],[119.71379713797137,32.22198851688154],[119.73179731797319,32.21016847599236],[119.75339753397537,32.20510274418271],[119.77859778597787,32.20510274418271],[119.78939789397896,32.198348435103185],[119.76419764197641,32.16288831243564],[119.76419764197641,32.14431396246694],[119.77139771397714,32.12742818976811],[119.7857978579786,32.113919571609046],[119.85419854198545,32.08690233529093],[119.86859868598685,32.07677087167163],[119.90819908199086,32.04468790354386],[119.93699936999371,32.01767066722573],[119.9621996219962,31.990653430907614],[119.98019980199803,31.968701926399135],[120.00540005400057,31.950127576430432],[120.0378003780038,31.943373267350893],[120.13140131401315,31.912978876493],[120.17820178201782,31.9045359901436],[120.22860228602286,31.909601721953237],[120.34020340203404,31.956881885509958],[120.41940419404193,31.970390503669023],[120.43380433804339,31.97545623547866],[120.45540455404557,31.9822105445582],[120.45540455404557,32.00247347179679],[120.45540455404557,32.02104782176549],[120.46980469804697,32.02442497630527],[120.51660516605165,32.01935924449562],[120.60300603006033,31.990653430907614],[120.67140671406713,31.999096317257028],[120.68940689406895,31.99740773998714],[120.75060750607508,31.978833390018437],[120.77940779407794,31.916356031032777],[120.80820808208085,31.874141599285707],[120.82620826208262,31.828550012998875],[120.80820808208085,31.80997566303016],[120.75060750607508,31.825172858459112],[120.73980739807399,31.83699289934829],[120.7290072900729,31.850501517507354],[120.71820718207181,31.860632981126642],[120.72180721807217,31.831927167538637],[120.73260732607326,31.81335281756992],[120.74700747007472,31.801532776680745],[120.83340833408334,31.77789269490239],[120.89460894608948,31.762695499473452],[120.94860948609488,31.7576297676638],[120.9810098100981,31.75087545858426],[121.01341013410138,31.74243257223486],[121.06741067410672,31.723858222266145],[121.14301143011431,31.685020945058838],[121.21141211412117,31.62760931788283],[121.2438124381244,31.600592081564713],[121.31941319413193,31.504343177181397],[121.34101341013411,31.490834559022332],[121.3626136261363,31.477325940863267],[121.4166141661417,31.451997281815025],[121.44901449014492,31.426668622766783],[121.54621546215463,31.36587984105101],[121.63261632616326,31.33548545019312],[121.6686166861669,31.313533945684654],[121.72621726217261,31.281450977556872],[121.77661776617765,31.213907886761575],[121.87741877418773,31.099084632409543],[121.94941949419496,30.982572800787636],[121.97821978219781,30.915029709992325],[121.96021960219605,30.874503855515144],[121.90621906219064,30.857618082816316],[121.80901809018093,30.85255235100668],[121.73341733417334,30.84579804192714],[121.63261632616326,30.837355155577725],[121.54261542615427,30.817092228339135],[121.49221492214923,30.798517878370433],[121.45621456214565,30.78332068294148],[121.40941409414097,30.76812348751254],[121.3518135181352,30.714089014876294],[121.33381333813338,30.702268973987117],[121.26541265412658,30.68876035582805],[121.22221222212221,30.675251737668987],[121.20421204212045,30.6651202740497],[121.1790117901179,30.644857346811094],[121.15741157411577,30.63641446046168],[121.15021150211504,30.62797157411228],[121.14301143011431,30.617840110492978],[121.13581135811359,30.607708646873675],[121.13221132211322,30.59926576052426],[121.12141121411213,30.592511451444736],[121.10341103411037,30.589134296904973],[121.0458104581046,30.582379987825433],[121.02061020610205,30.570559946936257],[120.99900999009992,30.55873990604708],[120.97740977409774,30.54354271061814],[120.94860948609488,30.506394010680722],[120.93060930609306,30.472622465283067],[120.9270092700927,30.452359538044476],[120.93060930609306,30.43885091988541],[120.93780937809379,30.430408033535997],[120.93780937809379,30.421965147186583],[120.9270092700927,30.408456529027518],[120.92340923409233,30.405079374487755],[120.9018090180902,30.40339079721788],[120.89460894608948,30.401702219947992],[120.90540905409057,30.388193601788927],[120.90900909009093,30.384816447249165],[120.9162091620916,30.381439292709402],[120.9162091620916,30.374684983629862],[120.9018090180902,30.372996406359988],[120.88740887408875,30.367930674550337],[120.85140851408516,30.33078197461292],[120.83340833408334,30.305453315564677],[120.81180811808122,30.297010429215263],[120.78660786607867,30.2936332746755],[120.76860768607685,30.305453315564677],[120.75420754207545,30.327404820073156],[120.74340743407436,30.359487788200923],[120.72540725407254,30.37637356089975],[120.69660696606968,30.39325933359858],[120.66780667806677,30.401702219947992],[120.61740617406173,30.406767951757644],[120.48060480604806,30.40339079721788],[120.43020430204302,30.389882179058816],[120.41580415804157,30.367930674550337],[120.4086040860409,30.35442205639127],[120.3978039780398,30.322339088263504],[120.39060390603908,30.290256120135737],[120.37980379803798,30.27337034743691],[120.36540365403653,30.268304615627258],[120.3438034380344,30.275058924706784],[120.31500315003149,30.290256120135737],[120.28620286202863,30.29869900648515],[120.25740257402578,30.29869900648515],[120.23940239402395,30.28856754286585],[120.19620196201964,30.232844492959728],[120.1458014580146,30.199072947562072],[120.17820178201782,30.200761524831947],[120.19980199802,30.217647297530775],[120.22860228602286,30.23622164749949],[120.25020250202505,30.269993192897147],[120.27540275402754,30.27843607924656],[120.29700297002972,30.27843607924656],[120.31500315003149,30.263238883817607],[120.3330033300333,30.249730265658542],[120.35100351003513,30.241287379309142],[120.36900369003689,30.241287379309142],[120.38340383403835,30.249730265658542],[120.39420394203944,30.264927461087495],[120.40500405004053,30.280124656516435],[120.41940419404193,30.305453315564677],[120.45180451804521,30.369619251820225],[120.4770047700477,30.374684983629862],[120.52380523805238,30.37806213816964],[120.62100621006209,30.372996406359988],[120.65340653406537,30.359487788200923],[120.65700657006573,30.33584770642257],[120.68580685806859,30.27168177016702],[120.70020700207004,30.25141884292843],[120.72540725407254,30.242975956579016],[120.73260732607326,30.232844492959728],[120.69300693006932,30.197384370292184],[120.6642066420664,30.16698997943429],[120.64260642606428,30.145038474925826],[120.63180631806318,30.134907011306524],[120.63180631806318,30.123086970417347],[120.65340653406537,30.102824043178757],[120.68220682206822,30.08424969321004],[120.70020700207004,30.080872538670278],[120.72180721807217,30.07918396140039],[120.75420754207545,30.087626847749803],[120.76500765007648,30.08593827047993],[120.77220772207721,30.082561115940166],[120.7830078300783,30.072429652320864],[120.7938079380794,30.065675343241338],[120.7830078300783,30.08931542501969],[120.76500765007648,30.096069734099217],[120.71460714607144,30.092692579559454],[120.68940689406895,30.097758311369105],[120.6642066420664,30.109578352258282],[120.64620646206464,30.12646412495711],[120.6642066420664,30.14166132038605],[120.70020700207004,30.18387575213312],[120.75060750607508,30.22609018388019],[120.81180811808122,30.212581565721123],[120.82980829808298,30.185564329403007],[120.85500855008553,30.17374428851383],[120.89460894608948,30.170367133974068],[120.92340923409233,30.185564329403007],[120.95580955809561,30.192318638482533],[120.95940959409597,30.195695793022296],[120.99540995409956,30.21089298845125],[121.1106111061111,30.283501811056198],[121.12861128611286,30.302076161024914],[121.15021150211504,30.325716242803267],[121.18621186211863,30.337536283692444],[121.25461254612549,30.347667747311746],[121.31221312213125,30.337536283692444],[121.3770137701377,30.325716242803267],[121.4310143101431,30.2936332746755],[121.50661506615069,30.219335874800663],[121.55341553415536,30.160235670354766],[121.58581585815858,30.11126692952817],[121.62181621816217,30.060609611431687],[121.64341643416435,30.036969529653334],[121.65781657816581,30.018395179684617],[121.67941679416793,29.999820829715915],[121.70821708217085,29.98462363428696],[121.73341733417334,29.977869325207436],[121.72261722617225,29.96098355250861],[121.73341733417334,29.962672129778497],[121.75141751417516,29.972803593397785],[121.76581765817662,29.972803593397785],[121.79821798217984,29.962672129778497],[121.81621816218166,29.950852088889306],[121.84861848618488,29.940720625270018],[121.87381873818737,29.932277738920604],[121.89901899018992,29.92383485257119],[121.91341913419137,29.91876912076154],[121.9350193501935,29.88668615263377],[121.94941949419496,29.88668615263377],[121.96381963819641,29.888374729903646],[121.98181981819818,29.890063307173534],[122.05742057420576,29.88668615263377],[122.06822068220686,29.890063307173534],[122.08622086220862,29.900194770792837],[122.10422104221044,29.906949079872362],[122.12942129421293,29.9035719253326],[122.13662136621366,29.884997575363883],[122.11502115021153,29.871488957204818],[122.06822068220686,29.851226029966227],[122.02862028620285,29.836028834537288],[121.98181981819818,29.822520216378223],[121.96741967419678,29.810700175489046],[121.9350193501935,29.792125825520344],[121.92421924219241,29.773551475551628],[121.90261902619028,29.753288548313037],[121.88461884618846,29.76173143466245],[121.87381873818737,29.753288548313037],[121.8666186661867,29.73640277561421],[121.86301863018633,29.707696962026205],[121.83421834218342,29.687434034787614],[121.77661776617765,29.65197391212007],[121.71901719017194,29.58949655313441],[121.70461704617048,29.572610780435582],[121.68661686616866,29.562479316816294],[121.6686166861669,29.557413585006643],[121.64701647016471,29.557413585006643],[121.63621636216362,29.55403643046688],[121.62541625416253,29.55403643046688],[121.60741607416077,29.545593544117466],[121.59301593015931,29.543904966847577],[121.57501575015749,29.55234785319699],[121.53181531815318,29.510133421449922],[121.52101521015209,29.5135105759897],[121.52101521015209,29.528707771418638],[121.51741517415178,29.545593544117466],[121.51021510215105,29.54897069865723],[121.49941499414996,29.54897069865723],[121.4850148501485,29.543904966847577],[121.47421474214741,29.538839235037926],[121.46701467014674,29.530396348688512],[121.45981459814601,29.525330616878875],[121.44181441814419,29.523642039608987],[121.44181441814419,29.518576307799336],[121.44901449014492,29.5135105759897],[121.45621456214565,29.501690535100508],[121.45621456214565,29.48987049421133],[121.44181441814419,29.481427607861917],[121.42741427414273,29.467918989702852],[121.44181441814419,29.439213176114848],[121.44181441814419,29.415573094336494],[121.46341463414637,29.420638826146146],[121.47421474214741,29.44934463973415],[121.48141481414814,29.474673298782392],[121.50661506615069,29.483116185131806],[121.49941499414996,29.476361876052266],[121.49221492214923,29.456098948813676],[121.51381513815141,29.452721794273913],[121.51021510215105,29.437524598844973],[121.4958149581496,29.42232740341602],[121.48141481414814,29.415573094336494],[121.47781477814777,29.41219593979673],[121.47781477814777,29.40713020798708],[121.47781477814777,29.40206447617743],[121.4850148501485,29.390244435288253],[121.4958149581496,29.393621589828015],[121.51021510215105,29.398687321637667],[121.52101521015209,29.40713020798708],[121.53181531815318,29.417261671606383],[121.5390153901539,29.42401598068591],[121.549815498155,29.439213176114848],[121.55341553415536,29.44934463973415],[121.56061560615609,29.462853257893215],[121.57141571415713,29.474673298782392],[121.58221582215822,29.478050453322155],[121.60021600216004,29.483116185131806],[121.64341643416435,29.494936226020982],[121.67581675816757,29.510133421449922],[121.67581675816757,29.520264885069224],[121.6830168301683,29.523642039608987],[121.70101701017012,29.53377350322829],[121.71181711817121,29.538839235037926],[121.72621726217261,29.538839235037926],[121.72621726217261,29.535462080498164],[121.72621726217261,29.528707771418638],[121.72621726217261,29.5219534623391],[121.72981729817297,29.518576307799336],[121.7370173701737,29.518576307799336],[121.74421744217443,29.523642039608987],[121.76221762217625,29.530396348688512],[121.76581765817662,29.520264885069224],[121.75861758617589,29.498313380560745],[121.76221762217625,29.48649333967157],[121.76581765817662,29.476361876052266],[121.77661776617765,29.46960756697274],[121.79101791017911,29.476361876052266],[121.81261812618129,29.48987049421133],[121.81981819818202,29.515199153259573],[121.83061830618306,29.528707771418638],[121.84861848618488,29.523642039608987],[121.84501845018451,29.535462080498164],[121.83781837818378,29.542216389577703],[121.82701827018269,29.545593544117466],[121.81261812618129,29.55234785319699],[121.79821798217984,29.545593544117466],[121.78381783817838,29.543904966847577],[121.76581765817662,29.545593544117466],[121.75861758617589,29.54728212138734],[121.74421744217443,29.543904966847577],[121.7478174781748,29.562479316816294],[121.77301773017729,29.57598793497536],[121.79461794617947,29.601316594023587],[121.81981819818202,29.606382325833238],[121.83421834218342,29.61482521218265],[121.85221852218524,29.61651378945254],[121.8666186661867,29.62664525307183],[121.8810188101881,29.623268098532066],[121.89901899018992,29.628333830341717],[121.91701917019174,29.640153871230893],[121.92781927819277,29.635088139421242],[121.94221942219423,29.61144805764289],[121.95301953019532,29.606382325833238],[121.96741967419678,29.603005171293475],[121.97101971019714,29.592873707674173],[121.97101971019714,29.56923362589582],[121.96381963819641,29.560790739546405],[121.94941949419496,29.555725007736754],[121.94221942219423,29.550659275927117],[121.94941949419496,29.538839235037926],[121.9206192061921,29.530396348688512],[121.90981909819101,29.525330616878875],[121.91341913419137,29.5135105759897],[121.9206192061921,29.508444844180048],[121.9350193501935,29.505067689640285],[121.94581945819459,29.498313380560745],[121.93861938619386,29.48649333967157],[121.94221942219423,29.479739030592043],[121.97101971019714,29.44934463973415],[121.97101971019714,29.439213176114848],[121.96381963819641,29.432458867035322],[121.95661956619568,29.42232740341602],[121.95661956619568,29.40881878525697],[121.94581945819459,29.420638826146146],[121.9350193501935,29.42739313522567],[121.93141931419314,29.425704557955797],[121.92421924219241,29.418950248876257],[121.92781927819277,29.40881878525697],[121.9206192061921,29.398687321637667],[121.91701917019174,29.390244435288253],[121.9206192061921,29.38180154893884],[121.91701917019174,29.363227198970137],[121.91701917019174,29.34971858081107],[121.92781927819277,29.337898539921895],[121.92781927819277,29.33958711719177],[121.93141931419314,29.331144230842355],[121.93141931419314,29.32438992176283],[121.92421924219241,29.31932418995318],[121.90981909819101,29.31932418995318],[121.91341913419137,29.314258458143527],[121.91701917019174,29.305815571794113],[121.89901899018992,29.299061262714588],[121.90621906219064,29.28386406728565],[121.9206192061921,29.270355449126583],[121.93861938619386,29.263601140047058],[121.94941949419496,29.26697829458682],[121.96381963819641,29.28217549001576],[121.97461974619745,29.28386406728565],[121.97461974619745,29.280486912745886],[121.98541985419854,29.263601140047058],[121.99261992619927,29.25684683096752],[121.96741967419678,29.255158253697644],[121.95301953019532,29.250092521887993],[121.94941949419496,29.236583903728928],[121.95661956619568,29.216320976490337],[121.94221942219423,29.223075285569863],[121.93861938619386,29.20956666741081],[121.93861938619386,29.20450093560116],[121.94221942219423,29.196058049251747],[121.9206192061921,29.196058049251747],[121.89541895418955,29.187615162902333],[121.84141841418415,29.160597926584202],[121.81261812618129,29.16228650385409],[121.78381783817838,29.167352235663742],[121.78741787417874,29.201123781061398],[121.79101791017911,29.216320976490337],[121.79461794617947,29.243338212808467],[121.79461794617947,29.265289717316932],[121.8018180181802,29.292306953635062],[121.79821798217984,29.305815571794113],[121.80901809018093,29.312569880873653],[121.81981819818202,29.315947035413416],[121.83061830618306,29.31932418995318],[121.84141841418415,29.31932418995318],[121.83061830618306,29.334521385382132],[121.81621816218166,29.332832808112244],[121.80541805418056,29.32438992176283],[121.79821798217984,29.31932418995318],[121.78741787417874,29.327767076302592],[121.78741787417874,29.342964271731546],[121.79821798217984,29.373358662589425],[121.78741787417874,29.375047239859313],[121.77661776617765,29.373358662589425],[121.76581765817662,29.368292930779774],[121.75861758617589,29.35985004443036],[121.76941769417698,29.337898539921895],[121.77661776617765,29.295684108174825],[121.77301773017729,29.253469676427756],[121.75861758617589,29.229829594649402],[121.74421744217443,29.201123781061398],[121.7370173701737,29.196058049251747],[121.72261722617225,29.18254943109268],[121.70461704617048,29.174106544743267],[121.6722167221672,29.175795122013156],[121.65421654216544,29.18254943109268],[121.64341643416435,29.202812358331272],[121.63981639816399,29.218009553760226],[121.63981639816399,29.26697829458682],[121.64701647016471,29.280486912745886],[121.65421654216544,29.300749839984476],[121.63981639816399,29.305815571794113],[121.62541625416253,29.300749839984476],[121.6290162901629,29.28386406728565],[121.62181621816217,29.263601140047058],[121.63261632616326,29.211255244680686],[121.6290162901629,29.187615162902333],[121.6146161461615,29.206189512871035],[121.60741607416077,29.228141017379514],[121.58941589415895,29.292306953635062],[121.58221582215822,29.299061262714588],[121.57501575015749,29.305815571794113],[121.56421564215646,29.30412699452424],[121.56061560615609,29.295684108174825],[121.56781567815682,29.285552644555523],[121.57501575015749,29.27710975820611],[121.56421564215646,29.272044026396472],[121.549815498155,29.272044026396472],[121.52461524615245,29.27710975820611],[121.52461524615245,29.270355449126583],[121.53541535415354,29.258535408237407],[121.53181531815318,29.238272480998816],[121.51741517415178,29.2196981310301],[121.50661506615069,29.20956666741081],[121.50661506615069,29.202812358331272],[121.51021510215105,29.189303740172207],[121.50301503015032,29.17917227655292],[121.49221492214923,29.175795122013156],[121.4850148501485,29.185926585632444],[121.48141481414814,29.19774662652162],[121.47061470614705,29.190992317442095],[121.45981459814601,29.175795122013156],[121.45621456214565,29.160597926584202],[121.4310143101431,29.172417967473393],[121.420214202142,29.170729390203505],[121.40941409414097,29.160597926584202],[121.44181441814419,29.14708930842515],[121.43821438214383,29.145400731155263],[121.43821438214383,29.143712153885375],[121.43461434614346,29.140334999345612],[121.45621456214565,29.140334999345612],[121.45621456214565,29.133580690266086],[121.44181441814419,29.131892112996198],[121.42741427414273,29.12682638118656],[121.4166141661417,29.12007207210702],[121.40221402214024,29.106563453947956],[121.4958149581496,29.104874876678082],[121.52821528215281,29.11500634029737],[121.62181621816217,29.113317763027496],[121.62541625416253,29.104874876678082],[121.62541625416253,29.087989103979254],[121.62181621816217,29.071103331280426],[121.6146161461615,29.05759471312136],[121.60021600216004,29.050840404041836],[121.58581585815858,29.0542175585816],[121.57141571415713,29.060971867661124],[121.55701557015573,29.0643490222009],[121.53541535415354,29.060971867661124],[121.53181531815318,29.050840404041836],[121.53181531815318,29.020446013183943],[121.5390153901539,29.01875743591407],[121.549815498155,29.02213459045383],[121.55341553415536,29.028888899533356],[121.5390153901539,29.03733178588277],[121.55701557015573,29.049151826771947],[121.61821618216186,29.040708940422533],[121.64341643416435,29.050840404041836],[121.6830168301683,29.027200322263468],[121.69021690216903,29.01706885864418],[121.67581675816757,29.013691704104417],[121.66141661416617,29.003560240485115],[121.65421654216544,28.988363045056175],[121.65781657816581,28.97316584962722],[121.66501665016654,28.96978869508746],[121.6686166861669,28.96978869508746],[121.67941679416793,28.96978869508746],[121.6830168301683,28.968100117817585],[121.6830168301683,28.963034386007934],[121.6830168301683,28.95965723146817],[121.6830168301683,28.956280076928408],[121.69381693816939,28.95290292238863],[121.70821708217085,28.951214345118757],[121.71901719017194,28.94952576784887],[121.69741697416976,28.936017149689803],[121.69021690216903,28.92757426334039],[121.6830168301683,28.91406564518134],[121.6290162901629,28.93263999515004],[121.6038160381604,28.942771458769343],[121.58581585815858,28.963034386007934],[121.58581585815858,28.937705726959692],[121.57141571415713,28.929262840610278],[121.55341553415536,28.936017149689803],[121.54621546215463,28.95290292238863],[121.53541535415354,28.95459149965852],[121.51741517415178,28.956280076928408],[121.49941499414996,28.94952576784887],[121.49221492214923,28.92757426334039],[121.50661506615069,28.936017149689803],[121.50661506615069,28.924197108800627],[121.51021510215105,28.9174427997211],[121.51741517415178,28.91237706791145],[121.52461524615245,28.91406564518134],[121.53541535415354,28.903934181562036],[121.549815498155,28.89717987248251],[121.56781567815682,28.893802717942748],[121.58221582215822,28.88704840886321],[121.58941589415895,28.89211414067286],[121.60021600216004,28.893802717942748],[121.61101611016113,28.89042556340297],[121.61821618216186,28.880294099783683],[121.62541625416253,28.880294099783683],[121.6290162901629,28.87691694524392],[121.6290162901629,28.87016263616438],[121.62181621816217,28.861719749814966],[121.62181621816217,28.856654018005315],[121.62181621816217,28.841456822576376],[121.6290162901629,28.841456822576376],[121.63621636216362,28.84483397711614],[121.64341643416435,28.846522554386027],[121.65781657816581,28.838079668036613],[121.66141661416617,28.833013936226962],[121.6686166861669,28.824571049877548],[121.65421654216544,28.81275100898837],[121.64701647016471,28.80768527717872],[121.63621636216362,28.804308122638957],[121.63621636216362,28.797553813559432],[121.66141661416617,28.797553813559432],[121.66141661416617,28.790799504479892],[121.65061650616508,28.78742234994013],[121.64341643416435,28.784045195400367],[121.63621636216362,28.778979463590716],[121.6290162901629,28.7705365772413],[121.62541625416253,28.768847999971427],[121.62181621816217,28.76547084543165],[121.61821618216186,28.762093690891888],[121.6146161461615,28.757027959082237],[121.61821618216186,28.748585072732823],[121.62181621816217,28.741830763653297],[121.62181621816217,28.735076454573772],[121.6038160381604,28.72494499095447],[121.50301503015032,28.699616331906228],[121.3518135181352,28.711436372795404],[121.33381333813338,28.716502104605055],[121.31941319413193,28.72494499095447],[121.30501305013053,28.735076454573772],[121.2978129781298,28.743519340923186],[121.29421294212943,28.748585072732823],[121.29061290612907,28.7519622272726],[121.27981279812798,28.757027959082237],[121.26901269012689,28.758716536352125],[121.24741247412476,28.760405113622014],[121.23661236612367,28.763782268161776],[121.2330123301233,28.7705365772413],[121.22581225812257,28.790799504479892],[121.22581225812257,28.797553813559432],[121.21501215012154,28.80768527717872],[121.20781207812081,28.80937385444861],[121.20061200612008,28.80937385444861],[121.18981189811899,28.811062431718483],[121.17181171811717,28.817816740798023],[121.1646116461165,28.824571049877548],[121.15741157411577,28.831325358957088],[121.15741157411577,28.838079668036613],[121.1538115381154,28.843145399846264],[121.14301143011431,28.846522554386027],[121.14301143011431,28.8397682453065],[121.16101161011613,28.81275100898837],[121.17181171811717,28.80768527717872],[121.19341193411935,28.804308122638957],[121.20781207812081,28.799242390829306],[121.21861218612185,28.785733772670255],[121.22581225812257,28.7705365772413],[121.22941229412294,28.760405113622014],[121.24021240212403,28.7519622272726],[121.2870128701287,28.738453609113535],[121.2978129781298,28.723256413684595],[121.2978129781298,28.701304909176116],[121.2870128701287,28.692862022826702],[121.26901269012689,28.68779629101705],[121.25821258212585,28.674287672857986],[121.32661326613265,28.692862022826702],[121.36621366213666,28.696239177366465],[121.38061380613806,28.6827305592074],[121.41301413014133,28.696239177366465],[121.45621456214565,28.68948486828694],[121.48861488614887,28.665844786508572],[121.51021510215105,28.657401900159158],[121.52461524615245,28.62531893203139],[121.53181531815318,28.59999027298315],[121.5390153901539,28.571284459395144],[121.549815498155,28.551021532156554],[121.57141571415713,28.525692873108312],[121.58221582215822,28.50542994586972],[121.549815498155,28.50205279132996],[121.53541535415354,28.503741368599833],[121.52101521015209,28.50036421406007],[121.51021510215105,28.490232750440782],[121.52101521015209,28.490232750440782],[121.54621546215463,28.491921327710656],[121.58581585815858,28.488544173170894],[121.60741607416077,28.476724132281717],[121.60021600216004,28.46490409139254],[121.58581585815858,28.454772627773238],[121.58221582215822,28.44295258688406],[121.59301593015931,28.431132545994885],[121.60741607416077,28.421001082375582],[121.6146161461615,28.39736100059723],[121.63261632616326,28.378786650628513],[121.6290162901629,28.363589455199573],[121.63261632616326,28.35514656885016],[121.63261632616326,28.346703682500745],[121.63981639816399,28.350080837040508],[121.64701647016471,28.348392259770634],[121.65781657816581,28.33994937342122],[121.64341643416435,28.321375023452504],[121.62181621816217,28.285914900784974],[121.60741607416077,28.27071770535602],[121.58581585815858,28.25720908719697],[121.57861578615785,28.260586241736732],[121.58221582215822,28.301112096213913],[121.56781567815682,28.304489250753676],[121.54261542615427,28.321375023452504],[121.52101521015209,28.326440755262155],[121.49941499414996,28.33319506434168],[121.47421474214741,28.329817909801918],[121.45621456214565,28.31799786891274],[121.44901449014492,28.316309291642852],[121.44181441814419,28.311243559833215],[121.43821438214383,28.306177828023564],[121.43461434614346,28.29773494167415],[121.4310143101431,28.29773494167415],[121.420214202142,28.304489250753676],[121.40941409414097,28.304489250753676],[121.39861398613988,28.29773494167415],[121.39501395013951,28.284226323515085],[121.40221402214024,28.27578343716567],[121.41301413014133,28.274094859895797],[121.420214202142,28.269029128086146],[121.4166141661417,28.25552050992708],[121.40941409414097,28.247077623577667],[121.39861398613988,28.243700469037904],[121.38781387813879,28.242011891768016],[121.37341373413733,28.23694615995838],[121.36621366213666,28.225126119069188],[121.3626136261363,28.2149946554499],[121.35901359013593,28.201486037290834],[121.35541355413557,28.18797741913177],[121.36981369813697,28.191354573671532],[121.37341373413733,28.19473172821131],[121.3770137701377,28.184600264592007],[121.37341373413733,28.17278022370283],[121.36981369813697,28.162648760083528],[121.3626136261363,28.154205873734114],[121.3518135181352,28.1457629873847],[121.34461344613447,28.1457629873847],[121.34101341013411,28.1457629873847],[121.33021330213302,28.147451564654588],[121.32661326613265,28.15251729646424],[121.30861308613089,28.17446880097272],[121.2978129781298,28.176157378242593],[121.2870128701287,28.181223110052244],[121.27621276212761,28.20824034637036],[121.26181261812621,28.225126119069188],[121.22581225812257,28.238634737228253],[121.24741247412476,28.27071770535602],[121.23661236612367,28.306177828023564],[121.20421204212045,28.331506487071806],[121.21141211412117,28.343326527960983],[121.21861218612185,28.351769414310397],[121.22941229412294,28.348392259770634],[121.2438124381244,28.348392259770634],[121.25461254612549,28.35514656885016],[121.26541265412658,28.365278032469462],[121.22941229412294,28.358523723389922],[121.21501215012154,28.36021230065981],[121.18261182611826,28.38216380516829],[121.1682116821168,28.385540959708052],[121.16101161011613,28.37709807335864],[121.1682116821168,28.36021230065981],[121.14301143011431,28.343326527960983],[121.12861128611286,28.306177828023564],[121.08901089010891,28.2926692098645],[121.07101071010709,28.290980632594625],[121.06741067410672,28.311243559833215],[121.06021060210605,28.311243559833215],[121.0350103501035,28.30786640529344],[121.02421024210241,28.304489250753676],[121.03861038610387,28.285914900784974],[121.05661056610569,28.279160591705434],[121.07821078210782,28.27747201443556],[121.12141121411213,28.284226323515085],[121.12861128611286,28.265651973546383],[121.1250112501125,28.23525758268849],[121.11781117811177,28.218371809989662],[121.1106111061111,28.199797460020946],[121.09981099811,28.184600264592007],[121.08541085410855,28.166025914623305],[121.05301053010533,28.147451564654588],[121.03141031410314,28.12550006014611],[121.00981009810101,28.103548555637644],[121.00261002610029,28.084974205668928],[121.00261002610029,28.051202660271272],[120.9918099180992,28.02587400122303],[120.9810098100981,28.00561107398444],[120.96660966609664,27.987036724015738],[120.91980919809197,27.981970992206087],[120.89820898208984,27.992102455825375],[120.88020880208802,27.998856764904914],[120.85500855008553,27.997168187635026],[120.81900819008189,27.988725301285612],[120.80100801008012,27.993791033095263],[120.77940779407794,28.002233919444677],[120.76140761407618,28.014053960333854],[120.74700747007472,28.02756257849292],[120.73260732607326,28.036005464842333],[120.70740707407077,28.041071196651984],[120.6606066060661,28.044448351191747],[120.62100621006209,28.039382619382096],[120.60660606606069,28.04275977392186],[120.58860588605887,28.054579814811035],[120.58500585005851,28.09510566928823],[120.57780577805778,28.11536859652682],[120.55980559805602,28.11199144198706],[120.57420574205742,28.100171401097867],[120.58140581405814,28.09003993747858],[120.58140581405814,28.04613692846162],[120.58140581405814,28.034316887572444],[120.58860588605887,28.02587400122303],[120.60300603006033,28.024185423953156],[120.6606066060661,28.024185423953156],[120.6750067500675,28.022496846683268],[120.70740707407077,28.008988228524203],[120.73980739807399,27.98365956947596],[120.75060750607508,27.975216683126547],[120.83700837008371,27.956642333157845],[120.8478084780848,27.94819944680843],[120.85500855008553,27.934690828649366],[120.86220862208626,27.917805055950538],[120.86220862208626,27.9026078605216],[120.86940869408693,27.882344933283008],[120.85140851408516,27.85870485150464],[120.82620826208262,27.848573387885352],[120.80820808208085,27.835064769726287],[120.79740797407976,27.804670378868394],[120.76860768607685,27.772587410740627],[120.73980739807399,27.733750133533334],[120.72180721807217,27.715175783564618],[120.70380703807041,27.71348720629473],[120.68580685806859,27.726995824453795],[120.65340653406537,27.754013060771925],[120.63540635406355,27.764144524391213],[120.63540635406355,27.74557017442251],[120.64620646206464,27.733750133533334],[120.67140671406713,27.711798629024855],[120.6750067500675,27.705044319945316],[120.67860678606786,27.686469969976613],[120.67140671406713,27.6780270836272],[120.66780667806677,27.667895620007897],[120.67140671406713,27.659452733658483],[120.6750067500675,27.659452733658483],[120.66780667806677,27.62568118826084],[120.63540635406355,27.608795415562014],[120.61740617406173,27.59359822013306],[120.60660606606069,27.581778179243884],[120.5958059580596,27.569958138354707],[120.60660606606069,27.549695211116116],[120.61380613806136,27.529432283877526],[120.61740617406173,27.51592366571846],[120.63180631806318,27.507480779369047],[120.65340653406537,27.504103624829284],[120.6606066060661,27.502415047559396],[120.67860678606786,27.49397216120998],[120.68220682206822,27.482152120320805],[120.67860678606786,27.466954924891866],[120.6642066420664,27.451757729462912],[120.65700657006573,27.446691997653275],[120.649806498065,27.446691997653275],[120.64620646206464,27.445003420383387],[120.63900639006391,27.424740493144796],[120.63540635406355,27.416297606795382],[120.63900639006391,27.407854720445968],[120.649806498065,27.399411834096554],[120.63900639006391,27.384214638667615],[120.63540635406355,27.379148906857964],[120.62100621006209,27.380837484127838],[120.55980559805602,27.402788988636317],[120.54540545405456,27.402788988636317],[120.54540545405456,27.38590321593749],[120.53820538205383,27.3656402886989],[120.52740527405274,27.35044309326996],[120.50580505805061,27.345377361460308],[120.50580505805061,27.338623052380782],[120.51660516605165,27.336934475110894],[120.53460534605347,27.33355732057113],[120.54900549005492,27.32680301149159],[120.54900549005492,27.321737279681955],[120.54540545405456,27.314982970602415],[120.54540545405456,27.30822866152289],[120.54540545405456,27.294720043363824],[120.54540545405456,27.28627715701441],[120.53820538205383,27.28121142520476],[120.53460534605347,27.279522847934885],[120.5310053100531,27.276145693395122],[120.52740527405274,27.272768538855345],[120.52020520205201,27.26770280704571],[120.51660516605165,27.262637075236057],[120.52020520205201,27.26094849796617],[120.52380523805238,27.254194188886643],[120.52740527405274,27.238996993457704],[120.52020520205201,27.2288655298384],[120.51300513005128,27.22379979802875],[120.50940509405098,27.215356911679336],[120.51660516605165,27.20184829352027],[120.49860498604988,27.196782561710634],[120.48060480604806,27.186651098091332],[120.46980469804697,27.18158536628168],[120.46260462604624,27.19847113898051],[120.45900459004594,27.220422643488988],[120.45180451804521,27.22379979802875],[120.43740437404375,27.2187340662191],[120.4230042300423,27.222111220758876],[120.41940419404193,27.210291179869685],[120.41940419404193,27.206914025329922],[120.41940419404193,27.19847113898051],[120.43020430204302,27.173142479932267],[120.40500405004053,27.184962520821458],[120.37620376203762,27.235619838917927],[120.34740347403476,27.249128457076992],[120.3330033300333,27.247439879807104],[120.31860318603185,27.24406272526734],[120.30420304203045,27.242374147997467],[120.29340293402936,27.249128457076992],[120.289802898029,27.26432565250593],[120.29700297002972,27.276145693395122],[120.30780307803082,27.284588579744536],[120.31860318603185,27.289654311554173],[120.31140311403112,27.294720043363824],[120.30780307803082,27.289654311554173],[120.30060300603009,27.298097197903587],[120.30420304203045,27.299785775173476],[120.30780307803082,27.30316292971324],[120.31140311403112,27.318360125142178],[120.289802898029,27.30822866152289],[120.28620286202863,27.304851506983127],[120.2790027900279,27.311605816062652],[120.27540275402754,27.316671547872303],[120.26460264602645,27.325114434221717],[120.26460264602645,27.316671547872303],[120.26460264602645,27.311605816062652],[120.26820268202681,27.30822866152289],[120.27180271802717,27.304851506983127],[120.25740257402578,27.299785775173476],[120.24660246602468,27.30316292971324],[120.23940239402395,27.309917238792764],[120.2250022500225,27.311605816062652],[120.22860228602286,27.30316292971324],[120.23220232202323,27.298097197903587],[120.23580235802359,27.294720043363824],[120.24300243002432,27.289654311554173],[120.24300243002432,27.282900002474648],[120.2250022500225,27.269391384315583],[120.21780217802177,27.27107996158547],[120.2142021420214,27.282900002474648],[120.19620196201964,27.298097197903587],[120.19260192601928,27.2879657342843],[120.19260192601928,27.277834270664997],[120.19620196201964,27.269391384315583],[120.19620196201964,27.262637075236057],[120.19260192601928,27.255882766156518],[120.17460174601746,27.238996993457704],[120.17460174601746,27.2288655298384],[120.17820178201782,27.222111220758876],[120.18180181801819,27.217045488949225],[120.19260192601928,27.215356911679336],[120.20340203402037,27.217045488949225],[120.20700207002074,27.22379979802875],[120.20700207002074,27.23055410710829],[120.2106021060211,27.235619838917927],[120.23940239402395,27.25081703434688],[120.25740257402578,27.257571343426406],[120.26460264602645,27.252505611616755],[120.27180271802717,27.238996993457704],[120.29700297002972,27.227176952568513],[120.30780307803082,27.215356911679336],[120.31860318603185,27.22548837529864],[120.3330033300333,27.235619838917927],[120.3330033300333,27.2288655298384],[120.34020340203404,27.2288655298384],[120.34020340203404,27.232242684378164],[120.3438034380344,27.235619838917927],[120.34740347403476,27.242374147997467],[120.36540365403653,27.22548837529864],[120.36540365403653,27.210291179869685],[120.34740347403476,27.179896789011806],[120.36900369003689,27.186651098091332],[120.38700387003871,27.179896789011806],[120.40140401404017,27.164699593582853],[120.4230042300423,27.152879552693676],[120.4230042300423,27.14612524361415],[120.40500405004053,27.14612524361415],[120.38340383403835,27.149502398153913],[120.37260372603726,27.14612524361415],[120.4086040860409,27.13937093453461],[120.4086040860409,27.132616625455086],[120.37980379803798,27.12586231637556],[120.37260372603726,27.132616625455086],[120.36540365403653,27.12586231637556],[120.37980379803798,27.11910800729602],[120.37980379803798,27.112353698216495],[120.37260372603726,27.112353698216495],[120.37260372603726,27.10559938913697],[120.39420394203944,27.10559938913697],[120.37620376203762,27.09884508005743],[120.35820358203586,27.09884508005743],[120.28260282602827,27.112353698216495],[120.27540275402754,27.115730852756258],[120.26100261002614,27.129239470915323],[120.25380253802541,27.132616625455086],[120.24300243002432,27.132616625455086],[120.24660246602468,27.122485161835797],[120.25380253802541,27.114042275486383],[120.25740257402578,27.107287966406844],[120.26460264602645,27.09884508005743],[120.2790027900279,27.0633849573899],[120.27180271802717,27.05831922558025],[120.25740257402578,27.071827843739314],[120.24660246602468,27.065073534659774],[120.23220232202323,27.049876339230835],[120.21780217802177,27.04312203015131],[120.21780217802177,27.03636772107177],[120.24300243002432,27.034679143801895],[120.25740257402578,27.017793371103068],[120.25380253802541,26.997530443864477],[120.23580235802359,26.982333248435523],[120.22860228602286,26.989087557515063],[120.21780217802177,26.984021825705412],[120.19260192601928,26.98064467116565],[120.14940149401497,26.982333248435523],[120.18540185401855,26.96375889846682],[120.19980199802,26.962070321196933],[120.2142021420214,26.96375889846682],[120.2250022500225,26.967136053006584],[120.23580235802359,26.967136053006584],[120.24300243002432,26.955316012117407],[120.23940239402395,26.951938857577645],[120.23580235802359,26.945184548498105],[120.22860228602286,26.940118816688454],[120.23580235802359,26.926610198529403],[120.22860228602286,26.923233043989626],[120.2250022500225,26.91816731217999],[120.21780217802177,26.914790157640212],[120.2106021060211,26.913101580370338],[120.19980199802,26.914790157640212],[120.16740167401673,26.926610198529403],[120.1458014580146,26.928298775799277],[120.12420124201242,26.926610198529403],[120.11340113401133,26.91816731217999],[120.12060120601205,26.899592962211273],[120.10980109801102,26.89452723040162],[120.10260102601029,26.889461498591984],[120.09540095400956,26.887772921322096],[120.08460084600847,26.886084344052207],[120.07740077400774,26.887772921322096],[120.07380073800738,26.892838653131747],[120.06660066600665,26.8979043849414],[120.05580055800561,26.899592962211273],[120.03060030600307,26.899592962211273],[120.05580055800561,26.889461498591984],[120.04500045000452,26.87595288043292],[120.02340023400234,26.860755685003966],[120.02340023400234,26.837115603225612],[120.03420034200343,26.830361294146087],[120.04860048600489,26.823606985066547],[120.06300063000629,26.81854125325691],[120.07740077400774,26.816852675987022],[120.08460084600847,26.81347552144726],[120.09540095400956,26.80672121236772],[120.10980109801102,26.79827832601832],[120.12780127801278,26.79658974874843],[120.12060120601205,26.784769707859255],[120.10620106201065,26.77126108970019],[120.09900099000993,26.757752471541124],[120.09900099000993,26.742555276112185],[120.11340113401133,26.73580096703266],[120.12780127801278,26.73580096703266],[120.14220142201424,26.732423812492883],[120.14940149401497,26.720603771603706],[120.14220142201424,26.710472307984418],[120.13140131401315,26.70709515344464],[120.11700117001169,26.70709515344464],[120.10620106201065,26.702029421635004],[120.10260102601029,26.68852080347594],[120.10260102601029,26.675012185316874],[120.10980109801102,26.659814989887934],[120.12060120601205,26.64630637172887],[120.13500135001351,26.653060680808395],[120.13500135001351,26.64630637172887],[120.09900099000993,26.627732021760167],[120.0918009180092,26.622666289950516],[120.0810008100081,26.617600558140865],[120.07380073800738,26.620977712680627],[120.07740077400774,26.62942059903004],[120.08820088200883,26.639552062649344],[120.0810008100081,26.64630637172887],[120.0270002700027,26.615911980870976],[120.01620016200161,26.61084624906134],[119.9585995859959,26.61084624906134],[119.9477994779948,26.605780517251688],[119.94059940599408,26.59396047636251],[119.93699936999371,26.577074703663683],[119.93699936999371,26.560188930964856],[119.88299882998831,26.523040231027437],[119.84699846998473,26.523040231027437],[119.83619836198363,26.53148311737685],[119.83259832598327,26.550057467345553],[119.83619836198363,26.56187750823473],[119.84339843398436,26.56187750823473],[119.84699846998473,26.560188930964856],[119.85419854198545,26.56356608550462],[119.85419854198545,26.572008971854032],[119.85059850598509,26.590583321822734],[119.85419854198545,26.59902620817215],[119.86859868598685,26.61084624906134],[119.89019890198904,26.617600558140865],[119.92979929799299,26.62604344449028],[119.94419944199444,26.632797753569804],[119.96939969399693,26.647994948998758],[119.98379983799839,26.653060680808395],[119.98379983799839,26.658126412618046],[119.98019980199803,26.669946453507222],[119.97659976599766,26.673323608047],[119.98739987399875,26.680077917126525],[120.00180001800021,26.70709515344464],[120.01260012600125,26.720603771603706],[120.01260012600125,26.71891519433383],[120.01620016200161,26.717226617063943],[120.0270002700027,26.715538039794055],[120.03060030600307,26.717226617063943],[120.03060030600307,26.720603771603706],[120.03060030600307,26.725669503413357],[120.03060030600307,26.72904665795312],[120.07740077400774,26.784769707859255],[120.0810008100081,26.79658974874843],[120.06660066600665,26.799966903288194],[120.01620016200161,26.789835439668906],[119.9477994779948,26.79658974874843],[119.92619926199262,26.79152401693878],[119.92259922599226,26.781392553319492],[119.93699936999371,26.759441048811013],[119.92259922599226,26.732423812492883],[119.90099900999013,26.710472307984418],[119.88659886598867,26.68683222620605],[119.90099900999013,26.659814989887934],[119.87939879398795,26.654749258078283],[119.85779857798582,26.653060680808395],[119.85419854198545,26.68852080347594],[119.85059850598509,26.690209380745813],[119.8289982899829,26.715538039794055],[119.81819818198181,26.712160885254292],[119.80379803798041,26.69358653528559],[119.79299792997932,26.68852080347594],[119.79299792997932,26.705406576174767],[119.80379803798041,26.76619535789054],[119.81099810998109,26.77632682150984],[119.839798397984,26.789835439668906],[119.8289982899829,26.794901171478543],[119.81459814598145,26.79827832601832],[119.80379803798041,26.794901171478543],[119.79299792997932,26.789835439668906],[119.79659796597969,26.816852675987022],[119.81459814598145,26.825295562336436],[119.83619836198363,26.83204987141596],[119.84699846998473,26.852312798654566],[119.81819818198181,26.84893564411479],[119.79659796597969,26.842181335035264],[119.78219782197823,26.8286727168762],[119.77139771397714,26.810098366907496],[119.76419764197641,26.794901171478543],[119.76419764197641,26.784769707859255],[119.76779767797677,26.774638244239952],[119.77139771397714,26.759441048811013],[119.76779767797677,26.744243853382073],[119.75699756997574,26.737489544302534],[119.74259742597428,26.737489544302534],[119.73179731797319,26.742555276112185],[119.73179731797319,26.74930958519171],[119.73179731797319,26.762818203350776],[119.72459724597246,26.78645828512913],[119.71379713797137,26.808409789637608],[119.69219692196924,26.816852675987022],[119.68499684996851,26.81178694417737],[119.68139681396815,26.799966903288194],[119.67779677796779,26.78645828512913],[119.67419674196742,26.77632682150984],[119.67779677796779,26.762818203350776],[119.68499684996851,26.75437531700136],[119.710197101971,26.72904665795312],[119.7209972099721,26.72398092614347],[119.72819728197283,26.717226617063943],[119.73179731797319,26.705406576174767],[119.72459724597246,26.698652267095227],[119.71379713797137,26.700340844365115],[119.6957969579696,26.70878373071453],[119.68139681396815,26.722292348873594],[119.66339663396633,26.740866698842297],[119.64539645396457,26.752686739731473],[119.62739627396274,26.74930958519171],[119.62019620196202,26.76619535789054],[119.62379623796238,26.77632682150984],[119.62019620196202,26.78645828512913],[119.60579605796062,26.79658974874843],[119.59859598595989,26.79658974874843],[119.58419584195843,26.794901171478543],[119.5769957699577,26.788146862399017],[119.58059580595807,26.77632682150984],[119.56979569795698,26.76619535789054],[119.55899558995588,26.759441048811013],[119.55179551795521,26.74930958519171],[119.55179551795521,26.737489544302534],[119.55179551795521,26.725669503413357],[119.55539555395558,26.715538039794055],[119.55899558995588,26.70878373071453],[119.56979569795698,26.703717998904878],[119.58419584195843,26.703717998904878],[119.59499594995953,26.703717998904878],[119.60579605796062,26.695275112555464],[119.60939609396092,26.683455071666287],[119.60579605796062,26.669946453507222],[119.59859598595989,26.64630637172887],[119.56979569795698,26.664880721697585],[119.55899558995588,26.66656929896746],[119.54459544595449,26.663192144427697],[119.54099540995412,26.65643783534817],[119.54459544595449,26.636174908109567],[119.55539555395558,26.615911980870976],[119.59139591395916,26.590583321822734],[119.59859598595989,26.570320394584144],[119.60579605796062,26.570320394584144],[119.62019620196202,26.58720616728297],[119.63819638196384,26.59902620817215],[119.65619656196566,26.607469094521562],[119.67419674196742,26.619289135410753],[119.68859688596888,26.61084624906134],[119.69939699396997,26.60915767179145],[119.73179731797319,26.61084624906134],[119.7209972099721,26.61084624906134],[119.73539735397355,26.612534826331213],[119.74259742597428,26.60915767179145],[119.74259742597428,26.602403362711925],[119.73539735397355,26.592271899092623],[119.74979749797501,26.58720616728297],[119.77139771397714,26.58382901274321],[119.7857978579786,26.577074703663683],[119.78219782197823,26.565254662774507],[119.78219782197823,26.560188930964856],[119.7857978579786,26.550057467345553],[119.7749977499775,26.560188930964856],[119.77139771397714,26.56356608550462],[119.76059760597605,26.550057467345553],[119.76419764197641,26.534860271916614],[119.77859778597787,26.52135165375755],[119.80019800198005,26.516285921947897],[119.79659796597969,26.51122019013826],[119.79299792997932,26.507843035598484],[119.78939789397896,26.50446588105872],[119.7857978579786,26.502777303788847],[119.79299792997932,26.497711571979195],[119.80379803798041,26.48926868562978],[119.81099810998109,26.474071490200828],[119.81819818198181,26.46225144931165],[119.81819818198181,26.453808562962237],[119.81819818198181,26.445365676612823],[119.81099810998109,26.433545635723647],[119.80739807398078,26.433545635723647],[119.79659796597969,26.433545635723647],[119.79299792997932,26.433545635723647],[119.78939789397896,26.430168481183884],[119.79299792997932,26.41665986302482],[119.79299792997932,26.413282708485056],[119.77139771397714,26.40652839940553],[119.76059760597605,26.408216976675405],[119.75339753397537,26.431857058453772],[119.73899738997392,26.44367709934295],[119.71739717397173,26.452119985692363],[119.69939699396997,26.455497140232126],[119.68859688596888,26.45887429477189],[119.66339663396633,26.492645840169544],[119.6525965259653,26.497711571979195],[119.64539645396457,26.494334417439433],[119.6417964179642,26.48251437655024],[119.63459634596347,26.47913722201048],[119.62379623796238,26.470694335661065],[119.62019620196202,26.467317181121302],[119.60579605796062,26.474071490200828],[119.59859598595989,26.474071490200828],[119.58059580595807,26.470694335661065],[119.56979569795698,26.465628603851428],[119.56619566195661,26.455497140232126],[119.57339573395734,26.438611367533298],[119.59499594995953,26.433545635723647],[119.61659616596165,26.43692279026341],[119.62739627396274,26.44367709934295],[119.63099630996311,26.4487428311526],[119.63819638196384,26.44367709934295],[119.64899648996493,26.43692279026341],[119.6525965259653,26.428479903913995],[119.65619656196566,26.355871081309047],[119.6669966699667,26.340673885880108],[119.68859688596888,26.33729673134033],[119.68499684996851,26.332230999530694],[119.68499684996851,26.32209953591139],[119.68139681396815,26.31703380410174],[119.6957969579696,26.31703380410174],[119.73539735397355,26.32209953591139],[119.74619746197465,26.327165267721043],[119.74979749797501,26.35924823584881],[119.75339753397537,26.372756854007875],[119.77139771397714,26.36431396765846],[119.77859778597787,26.37444543127775],[119.7857978579786,26.38626547216694],[119.7857978579786,26.398085513056117],[119.79299792997932,26.40652839940553],[119.79659796597969,26.411594131215182],[119.82539825398254,26.42679132664412],[119.83619836198363,26.411594131215182],[119.84699846998473,26.403151244865768],[119.85059850598509,26.393019781246466],[119.839798397984,26.377822585817526],[119.85419854198545,26.377822585817526],[119.87939879398795,26.362625390388573],[119.8937989379894,26.35924823584881],[119.90819908199086,26.3609368131187],[119.93339933399335,26.371068276737986],[119.95139951399517,26.372756854007875],[119.95139951399517,26.36431396765846],[119.88659886598867,26.31872238137163],[119.87579875798758,26.313656649561977],[119.85419854198545,26.327165267721043],[119.82539825398254,26.328853844990917],[119.80019800198005,26.31703380410174],[119.7857978579786,26.29677087686315],[119.78939789397896,26.295082299593275],[119.80379803798041,26.290016567783624],[119.79299792997932,26.283262258704085],[119.7857978579786,26.28663941324386],[119.7749977499775,26.293393722323387],[119.76419764197641,26.29677087686315],[119.75339753397537,26.295082299593275],[119.73179731797319,26.284950835973973],[119.7209972099721,26.283262258704085],[119.6957969579696,26.283262258704085],[119.67419674196742,26.27988510416432],[119.6525965259653,26.273130795084796],[119.63459634596347,26.25455644511608],[119.6525965259653,26.24949071330643],[119.6669966699667,26.242736404226903],[119.66339663396633,26.230916363337727],[119.6669966699667,26.220784899718424],[119.6525965259653,26.21740774517866],[119.63819638196384,26.21234201336901],[119.62379623796238,26.202210549749722],[119.62019620196202,26.190390508860546],[119.61299612996129,26.18194762251113],[119.59859598595989,26.17688189070148],[119.59139591395916,26.166750427082178],[119.59859598595989,26.146487499843587],[119.56259562595625,26.124535995335123],[119.53739537395376,26.097518759016992],[119.51939519395194,26.065435790889225],[119.49419494194944,26.033352822761444],[119.47259472594726,25.997892700093914],[119.4581945819458,25.982695504664974],[119.43659436594368,25.981006927395086],[119.43299432994331,25.986072659204737],[119.42219422194222,26.002958431903565],[119.41499414994149,26.00971274098309],[119.40419404194046,26.013089895522853],[119.38259382593827,26.018155627332504],[119.37179371793718,26.021532781872267],[119.34299342993432,26.041795709110858],[119.32859328593287,26.048550018190397],[119.27819278192783,26.05361575000005],[119.26019260192601,26.060370059079574],[119.23139231392315,26.08738729539769],[119.2169921699217,26.100895913556755],[119.2025920259203,26.104273068096518],[119.15939159391593,26.111027377176057],[119.15219152191526,26.11609310898571],[119.11979119791198,26.1363560362243],[119.10539105391052,26.143110345303825],[119.09459094590949,26.146487499843587],[119.09459094590949,26.139733190764062],[119.11619116191162,26.122847418065234],[119.1377913779138,26.102584490826644],[119.15579155791556,26.090764449937467],[119.18099180991811,26.09920733628688],[119.19539195391957,26.08738729539769],[119.19899198991993,26.075567254508513],[119.20979209792097,26.043484286380746],[119.2169921699217,26.028287090951807],[119.23859238592388,26.006335586443328],[119.24219242192424,25.99451554555415],[119.24579245792461,25.96749830923602],[119.25659256592564,25.964121154696258],[119.29619296192965,25.957366845616733],[119.32859328593287,25.943858227457667],[119.34659346593469,25.940481072917905],[119.37899378993791,25.94216965018778],[119.41139411394113,25.950612536537193],[119.44019440194404,25.964121154696258],[119.49059490594908,25.99451554555415],[119.49779497794981,26.001269854633676],[119.50139501395017,26.00971274098309],[119.50139501395017,26.02997566822168],[119.50499504995054,26.03672997730122],[119.51939519395194,26.045172863650635],[119.55539555395558,26.045172863650635],[119.56619566195661,26.05023859546027],[119.62019620196202,26.023221359142156],[119.64899648996493,26.01477847279274],[119.67419674196742,26.021532781872267],[119.6957969579696,26.002958431903565],[119.69939699396997,25.99451554555415],[119.70299702997033,25.98438408193485],[119.69939699396997,25.972564041045672],[119.67419674196742,25.92528387748895],[119.6669966699667,25.915152413869663],[119.6525965259653,25.90670952752025],[119.6417964179642,25.901643795710598],[119.62379623796238,25.899955218440724],[119.61659616596165,25.893200909361184],[119.59859598595989,25.84423216853459],[119.58419584195843,25.876315136662356],[119.57339573395734,25.88475802301177],[119.56619566195661,25.871249404852705],[119.5769957699577,25.86280651850329],[119.58059580595807,25.840855013994826],[119.58419584195843,25.820592086756236],[119.60219602196025,25.810460623136933],[119.60939609396092,25.805394891327282],[119.60939609396092,25.79188627316823],[119.60579605796062,25.768246191389863],[119.60939609396092,25.76655761411999],[119.61659616596165,25.7648690368501],[119.62019620196202,25.75980330504045],[119.61659616596165,25.753048995960924],[119.59499594995953,25.731097491452445],[119.59499594995953,25.72265460510303],[119.59139591395916,25.693948791515027],[119.59139591395916,25.6871944824355],[119.5877958779588,25.685505905165613],[119.58419584195843,25.68212875062585],[119.58059580595807,25.68044017335596],[119.57339573395734,25.68044017335596],[119.56619566195661,25.68212875062585],[119.56259562595625,25.688883059705375],[119.53379533795339,25.705768832404203],[119.5229952299523,25.705768832404203],[119.51579515795157,25.690571636975264],[119.50139501395017,25.688883059705375],[119.48699486994872,25.6871944824355],[119.47619476194762,25.68044017335596],[119.4689946899469,25.68381732789574],[119.46539465394653,25.685505905165613],[119.44739447394477,25.6871944824355],[119.4545945459455,25.663554400657134],[119.4581945819458,25.633160009799255],[119.46539465394653,25.61458565983054],[119.48339483394835,25.626405700719715],[119.47979479794799,25.601077041671473],[119.47979479794799,25.580814114432883],[119.49419494194944,25.563928341734055],[119.51579515795157,25.55717403265453],[119.5229952299523,25.56223976446418],[119.52659526595266,25.570682650813595],[119.53379533795339,25.575748382623246],[119.54819548195485,25.567305496273832],[119.55899558995588,25.563928341734055],[119.56979569795698,25.568994073543706],[119.5769957699577,25.57743695989312],[119.58059580595807,25.584191268972646],[119.56979569795698,25.547042569035227],[119.57339573395734,25.533533950876176],[119.59139591395916,25.5301567963364],[119.5877958779588,25.521713909987],[119.58419584195843,25.51664817817735],[119.5769957699577,25.51495960090746],[119.56619566195661,25.51664817817735],[119.58059580595807,25.50989386909781],[119.59139591395916,25.508205291827935],[119.59859598595989,25.508205291827935],[119.5877958779588,25.498073828208632],[119.58059580595807,25.496385250938758],[119.57339573395734,25.49469667366887],[119.57339573395734,25.487942364589344],[119.59859598595989,25.49300809639898],[119.60219602196025,25.491319519129107],[119.59859598595989,25.481188055509804],[119.59859598595989,25.47443374643028],[119.61299612996129,25.47443374643028],[119.62379623796238,25.469368014620628],[119.62739627396274,25.460925128271214],[119.62379623796238,25.450793664651925],[119.61299612996129,25.438973623762735],[119.61659616596165,25.43728504649286],[119.62379623796238,25.43728504649286],[119.63459634596347,25.433907891953098],[119.64539645396457,25.41026781017473],[119.64539645396457,25.393382037475902],[119.63819638196384,25.378184842046963],[119.62019620196202,25.364676223887898],[119.63819638196384,25.362987646618024],[119.64539645396457,25.361299069348135],[119.65619656196566,25.357921914808372],[119.60219602196025,25.346101873919196],[119.58059580595807,25.344413296649307],[119.58419584195843,25.35285618299872],[119.5877958779588,25.361299069348135],[119.59499594995953,25.366364801157786],[119.59859598595989,25.371430532967437],[119.5877958779588,25.401824923825316],[119.5769957699577,25.418710696524144],[119.58419584195843,25.425465005603684],[119.59139591395916,25.43221931468321],[119.59139591395916,25.438973623762735],[119.59139591395916,25.444039355572386],[119.5769957699577,25.462613705541102],[119.5769957699577,25.467679437350753],[119.56979569795698,25.465990860080865],[119.56259562595625,25.462613705541102],[119.55539555395558,25.45923655100134],[119.55179551795521,25.45417081919169],[119.54819548195485,25.45754797373145],[119.54459544595449,25.45923655100134],[119.53739537395376,25.460925128271214],[119.53739537395376,25.449105087382037],[119.53379533795339,25.433907891953098],[119.53739537395376,25.418710696524144],[119.54099540995412,25.41195638744462],[119.55539555395558,25.41026781017473],[119.55899558995588,25.405202078365093],[119.55179551795521,25.388316305666265],[119.54459544595449,25.376496264777074],[119.52659526595266,25.3748076875072],[119.50499504995054,25.37311911023731],[119.48339483394835,25.371430532967437],[119.49059490594908,25.383250573856614],[119.49779497794981,25.400136346555442],[119.50139501395017,25.41702211925427],[119.50499504995054,25.43053073741332],[119.50139501395017,25.433907891953098],[119.49779497794981,25.43728504649286],[119.49059490594908,25.440662201032623],[119.49059490594908,25.44741651011215],[119.49419494194944,25.45417081919169],[119.50139501395017,25.462613705541102],[119.50499504995054,25.47274516916039],[119.50859508595084,25.47443374643028],[119.50499504995054,25.47443374643028],[119.46539465394653,25.47443374643028],[119.4581945819458,25.465990860080865],[119.4545945459455,25.449105087382037],[119.44739447394477,25.438973623762735],[119.43659436594368,25.44741651011215],[119.43299432994331,25.45923655100134],[119.4437944379444,25.489630941859218],[119.44739447394477,25.50482813728817],[119.44019440194404,25.50989386909781],[119.36459364593645,25.52002533271711],[119.35739357393572,25.526779641796637],[119.35379353793542,25.5402882599557],[119.35739357393572,25.550419723575004],[119.38259382593827,25.590945578052185],[119.36819368193682,25.584191268972646],[119.36459364593645,25.58250269170277],[119.36099360993609,25.57743695989312],[119.35379353793542,25.584191268972646],[119.35739357393572,25.5993884644016],[119.34299342993432,25.609519928020887],[119.32139321393214,25.611208505290776],[119.30339303393038,25.60445419621125],[119.32139321393214,25.587568423512423],[119.31059310593105,25.57743695989312],[119.27819278192783,25.570682650813595],[119.2709927099271,25.55717403265453],[119.26739267392674,25.526779641796637],[119.26019260192601,25.511582446367697],[119.23859238592388,25.481188055509804],[119.22779227792279,25.47443374643028],[119.21339213392133,25.471056591890516],[119.18459184591848,25.464302282810976],[119.17019170191702,25.45754797373145],[119.16299162991629,25.449105087382037],[119.12699126991271,25.43053073741332],[119.11619116191162,25.427153582873558],[119.10179101791022,25.420399273794033],[119.10899108991089,25.406890655634967],[119.15579155791556,25.362987646618024],[119.16659166591666,25.34947902845896],[119.17019170191702,25.33428183303002],[119.17379173791738,25.325838946680605],[119.18459184591848,25.329216101220368],[119.1917919179192,25.342724719379433],[119.19539195391957,25.357921914808372],[119.2025920259203,25.357921914808372],[119.22419224192242,25.31739606033119],[119.2025920259203,25.305576019442],[119.1917919179192,25.298821710362475],[119.18099180991811,25.288690246743187],[119.1917919179192,25.27518162858412],[119.19539195391957,25.263361587694945],[119.2025920259203,25.259984433155168],[119.2169921699217,25.27011589677447],[119.22419224192242,25.280247360393773],[119.23499234992352,25.295444555822712],[119.24219242192424,25.31233032852154],[119.24219242192424,25.330904678490242],[119.25299252992534,25.322461792140828],[119.26379263792637,25.31739606033119],[119.27459274592746,25.319084637601065],[119.27819278192783,25.330904678490242],[119.28899288992892,25.325838946680605],[119.29259292592928,25.322461792140828],[119.29979299793001,25.31739606033119],[119.29259292592928,25.31739606033119],[119.29619296192965,25.30726459671189],[119.31779317793178,25.278558783123884],[119.3249932499325,25.27518162858412],[119.3357933579336,25.27180447404436],[119.34659346593469,25.268427319504582],[119.35379353793542,25.258295855885294],[119.34299342993432,25.243098660456354],[119.3249932499325,25.238032928646703],[119.28179281792819,25.241410083186466],[119.2709927099271,25.231278619567163],[119.28899288992892,25.189064187820108],[119.28179281792819,25.178932724200806],[119.25659256592564,25.175555569661043],[119.24219242192424,25.190752765089982],[119.22779227792279,25.19244134235987],[119.21339213392133,25.18568703328033],[119.1917919179192,25.18230987874057],[119.17739177391775,25.177244146930917],[119.16299162991629,25.190752765089982],[119.15219152191526,25.20763853778881],[119.14139141391416,25.221147155947875],[119.11619116191162,25.214392846868336],[119.10179101791022,25.195818496899633],[119.10539105391052,25.18230987874057],[119.11259112591125,25.173866992391154],[119.11979119791198,25.16035837423209],[119.12339123391234,25.155292642422452],[119.13059130591307,25.148538333342913],[119.13419134191344,25.138406869723624],[119.14499144991453,25.14347260153326],[119.15219152191526,25.1400954469935],[119.14859148591489,25.131652560644085],[119.13419134191344,25.12489825156456],[119.11619116191162,25.126586828834448],[119.10179101791022,25.133341137913973],[119.09459094590949,25.13502971518386],[119.0837908379084,25.12489825156456],[119.09099090990912,25.121521097024797],[119.09459094590949,25.118143942485034],[119.09459094590949,25.114766787945257],[119.09819098190985,25.111389633405494],[119.09099090990912,25.113078210675383],[119.06579065790658,25.12489825156456],[119.0729907299073,25.14516117880315],[119.08019080190803,25.151915487882675],[119.06579065790658,25.162046951501978],[119.05499054990548,25.156981219692327],[119.04419044190445,25.14347260153326],[119.04419044190445,25.12489825156456],[119.02979029790299,25.1400954469935],[119.03339033390336,25.158669796962215],[119.05859058590585,25.18568703328033],[119.06939069390694,25.204261383249047],[119.06939069390694,25.216081424138224],[119.05859058590585,25.224524310487638],[119.03339033390336,25.2279014650274],[118.98658986589868,25.22283573321775],[118.96858968589686,25.226212887757526],[118.97938979389795,25.24478723772623],[119.00099000990014,25.253230124075642],[119.02619026190263,25.259984433155168],[119.02619026190263,25.278558783123884],[118.98298982989832,25.283624514933535],[118.91818918189182,25.26505016496482],[118.90738907389073,25.258295855885294],[118.89658896588969,25.258295855885294],[118.8749887498875,25.243098660456354],[118.86418864188641,25.2279014650274],[118.8857888578886,25.221147155947875],[118.91098910989109,25.217770001408113],[118.91458914589145,25.2093271150587],[118.91098910989109,25.195818496899633],[118.91458914589145,25.178932724200806],[118.92178921789218,25.18737561055022],[118.93258932589328,25.194129919629745],[118.94698946989473,25.197507074169508],[118.96138961389613,25.194129919629745],[118.97578975789759,25.18230987874057],[118.97218972189722,25.17217841512128],[118.9541895418954,25.151915487882675],[118.9505895058951,25.136718292453736],[118.9505895058951,25.118143942485034],[118.94698946989473,25.113078210675383],[118.94338943389437,25.10801247886573],[118.93618936189364,25.10463532432597],[118.92178921789218,25.101258169786206],[118.90378903789036,25.10294674705608],[118.8857888578886,25.106323901595843],[118.86778867788678,25.099569592516318],[118.85698856988569,25.09788101524643],[118.84978849788502,25.086060974357252],[118.84978849788502,25.074240933468076],[118.86058860588605,25.057355160769248],[118.87858878588787,25.04046938807042],[118.89658896588969,25.033715078990895],[118.93618936189364,25.021895038101718],[118.92898928989291,25.01514072902218],[118.939789397894,25.006697842672764],[118.9541895418954,25.003320688133],[118.96858968589686,25.00500926540289],[118.97938979389795,25.011763574482416],[118.99018990189904,25.04046938807042],[118.99738997389977,25.053978006229485],[119.00459004590044,25.050600851689723],[119.00459004590044,25.04046938807042],[119.00099000990014,25.023583615371592],[118.99378993789941,25.008386419942653],[118.98658986589868,25.001632110863127],[118.98298982989832,24.994877801783588],[118.98658986589868,24.97968060635465],[118.99738997389977,24.952663370036518],[119.01179011790117,24.95772910184617],[119.0189901899019,24.961106256385932],[119.0081900819008,24.94759763822688],[118.99378993789941,24.93746617460758],[118.97578975789759,24.934089020067816],[118.96858968589686,24.944220483687104],[118.9649896498965,24.954351947306407],[118.94698946989473,24.956040524576295],[118.91098910989109,24.952663370036518],[118.90018900189006,24.93746617460758],[118.91098910989109,24.907071783749686],[118.93258932589328,24.886808856511095],[118.96858968589686,24.898628897400272],[118.97218972189722,24.893563165590635],[118.97218972189722,24.891874588320746],[118.97218972189722,24.890186011050858],[118.96858968589686,24.88512027924122],[118.97218972189722,24.883431701971332],[118.97578975789759,24.883431701971332],[118.97578975789759,24.87836597016168],[118.9505895058951,24.869923083812267],[118.92538925389255,24.869923083812267],[118.89658896588969,24.87498881562192],[118.87858878588787,24.888497433780984],[118.86778867788678,24.890186011050858],[118.83898838988392,24.88005454743157],[118.82458824588247,24.87836597016168],[118.81378813788137,24.881743124701444],[118.80298802988028,24.888497433780984],[118.79218792187925,24.891874588320746],[118.77778777787779,24.88512027924122],[118.78138781387815,24.868234506542393],[118.76338763387633,24.85810304292309],[118.73458734587348,24.851348733843565],[118.71658716587166,24.84290584749415],[118.70578705787057,24.846283002033914],[118.6985869858699,24.851348733843565],[118.6985869858699,24.85979162019298],[118.7021870218702,24.871611661082156],[118.70938709387093,24.876677392891807],[118.72378723787239,24.883431701971332],[118.73098730987311,24.88512027924122],[118.73098730987311,24.90031747467016],[118.72018720187202,24.917203247368988],[118.70578705787057,24.930711865528053],[118.69498694986953,24.94084332914734],[118.6985869858699,24.907071783749686],[118.69498694986953,24.898628897400272],[118.6877868778688,24.89525174286051],[118.68418684186844,24.903694629209923],[118.68418684186844,24.9155146700991],[118.6877868778688,24.925646133718402],[118.68418684186844,24.930711865528053],[118.67698676986771,24.93746617460758],[118.66618666186662,24.952663370036518],[118.66258662586625,24.94084332914734],[118.64458644586449,24.923957556448514],[118.64098640986413,24.9155146700991],[118.64818648186485,24.908760361019574],[118.66258662586625,24.898628897400272],[118.67338673386735,24.886808856511095],[118.66978669786698,24.87498881562192],[118.65178651786516,24.866545929272505],[118.6229862298623,24.868234506542393],[118.59418594185945,24.87498881562192],[118.57258572585727,24.88512027924122],[118.61218612186121,24.856414465653216],[118.61938619386194,24.84290584749415],[118.61938619386194,24.829397229335086],[118.61938619386194,24.81757718844591],[118.61938619386194,24.805757147556733],[118.6337863378634,24.77705133396873],[118.63738637386376,24.771985602159077],[118.64098640986413,24.778739911238603],[118.64458644586449,24.782117065778365],[118.65178651786516,24.782117065778365],[118.65898658986589,24.782117065778365],[118.66618666186662,24.782117065778365],[118.6877868778688,24.792248529397668],[118.6985869858699,24.802379993016956],[118.7021870218702,24.81082287936637],[118.70938709387093,24.804068570286844],[118.71658716587166,24.799002838477193],[118.71658716587166,24.79055995212778],[118.71658716587166,24.778739911238603],[118.72018720187202,24.768608447619314],[118.72738727387275,24.77029702488919],[118.7417874178742,24.77536275669884],[118.75978759787597,24.768608447619314],[118.76338763387633,24.761854138539775],[118.76338763387633,24.751722674920487],[118.74898748987493,24.724705438602356],[118.74538745387457,24.721328284062594],[118.73098730987311,24.716262552252942],[118.72018720187202,24.706131088633654],[118.6985869858699,24.67573669777576],[118.68418684186844,24.667293811426347],[118.67698676986771,24.67067096596611],[118.66618666186662,24.682491006855287],[118.65538655386553,24.69262247047459],[118.64098640986413,24.679113852315524],[118.63738637386376,24.663916656886585],[118.6337863378634,24.647030884187757],[118.6337863378634,24.62845653421904],[118.64098640986413,24.616636493329864],[118.65538655386553,24.616636493329864],[118.66258662586625,24.611570761520213],[118.66258662586625,24.589619257011748],[118.64818648186485,24.56766775250327],[118.61938619386194,24.54571624799479],[118.59058590585909,24.528830475295962],[118.56538565385654,24.522076166216436],[118.56178561785617,24.520387588946548],[118.55818558185581,24.517010434406785],[118.55458554585545,24.518699011676674],[118.55098550985508,24.528830475295962],[118.55098550985508,24.537273361645376],[118.55098550985508,24.54571624799479],[118.55458554585545,24.55247055707433],[118.56178561785617,24.555847711614092],[118.579785797858,24.560913443423743],[118.57258572585727,24.569356329773157],[118.50058500585004,24.60819360698045],[118.48618486184864,24.611570761520213],[118.47538475384755,24.61494791605999],[118.4465844658447,24.62845653421904],[118.42858428584287,24.631833688758817],[118.43218432184324,24.64534230691787],[118.4357843578436,24.658850925076933],[118.4357843578436,24.689245315934826],[118.43218432184324,24.699376779554115],[118.42138421384215,24.69262247047459],[118.41058410584105,24.680802429585412],[118.39978399783996,24.672359543236],[118.42138421384215,24.625079379679278],[118.40338403384033,24.606505029710576],[118.37818378183783,24.589619257011748],[118.35298352983529,24.582864947932208],[118.32418324183243,24.589619257011748],[118.3169831698317,24.58624210247197],[118.30618306183061,24.58793067974186],[118.28458284582848,24.59806214336116],[118.28098280982812,24.584553525202097],[118.27378273782739,24.574422061582794],[118.2629826298263,24.57104490704303],[118.24858248582484,24.576110638852683],[118.24138241382417,24.544027670724915],[118.21978219782198,24.54065051618514],[118.1945819458195,24.555847711614092],[118.18018180181804,24.576110638852683],[118.18018180181804,24.59806214336116],[118.19098190981913,24.601439297900924],[118.20538205382053,24.59806214336116],[118.21618216182162,24.604816452440687],[118.21618216182162,24.61494791605999],[118.20538205382053,24.621702225139515],[118.18738187381877,24.625079379679278],[118.17298172981731,24.625079379679278],[118.1837818378184,24.641965152378106],[118.18738187381877,24.657162347807045],[118.18018180181804,24.672359543236],[118.16218162181622,24.69262247047459],[118.15858158581585,24.662228079616696],[118.15138151381512,24.658850925076933],[118.14418144181445,24.658850925076933],[118.14058140581409,24.657162347807045],[118.13698136981372,24.63352226602869],[118.129781297813,24.620013647869627],[118.12258122581227,24.60819360698045],[118.11178111781118,24.59806214336116],[118.11178111781118,24.584553525202097],[118.10458104581045,24.584553525202097],[118.09378093780941,24.59806214336116],[118.04338043380437,24.618325070599752],[118.03618036180364,24.59806214336116],[118.04338043380437,24.576110638852683],[118.03618036180364,24.560913443423743],[118.02178021780219,24.554159134344204],[118.00378003780037,24.562602020693618],[118.0109801098011,24.581176370662334],[117.99297992979933,24.57104490704303],[117.97497974979751,24.55247055707433],[117.97857978579788,24.542339093455027],[118.02178021780219,24.537273361645376],[118.04338043380437,24.528830475295962],[118.05778057780577,24.51532185713691],[118.04338043380437,24.498436084438083],[118.03618036180364,24.491681775358543],[118.02538025380255,24.48830462081878],[118.01458014580146,24.48830462081878],[118.0109801098011,24.484927466279018],[118.00738007380073,24.479861734469367],[118.0001800018,24.471418848119953],[118.00738007380073,24.4663531163103],[118.02178021780219,24.454533075421125],[118.02178021780219,24.44609018907171],[117.9965799657997,24.4477787663416],[117.91017910179102,24.47817315719948],[117.8669786697867,24.48999319808867],[117.82737827378276,24.479861734469367],[117.84537845378458,24.474796002659716],[117.8669786697867,24.47310742538984],[117.88497884978852,24.46804169358019],[117.89937899378992,24.45284449815125],[117.81657816578166,24.471418848119953],[117.79137791377917,24.46804169358019],[117.79137791377917,24.461287384500665],[117.87417874178743,24.397121448245116],[117.90657906579065,24.38530140735594],[117.98937989379897,24.395432870975228],[118.01818018180182,24.40556433459453],[118.02898028980292,24.412318643674055],[118.04338043380437,24.40725291186442],[118.04698046980474,24.398810025515004],[118.04698046980474,24.39036713916559],[118.03978039780401,24.36503848011735],[118.03618036180364,24.361661325577572],[118.02898028980292,24.35828417103781],[118.02538025380255,24.351529861958284],[118.01458014580146,24.326201202910042],[118.02538025380255,24.32282404837028],[118.03618036180364,24.331266934719693],[118.04338043380437,24.339709821069107],[118.05418054180541,24.346464130148632],[118.07218072180723,24.34815270741852],[118.09018090180905,24.34139839833898],[118.09738097380978,24.319446893830516],[118.10098100981008,24.314381162020865],[118.11538115381154,24.304249698401563],[118.1189811898119,24.299183966591926],[118.1189811898119,24.27892103935332],[118.12258122581227,24.270478153003907],[118.12618126181263,24.262035266654493],[118.10818108181081,24.26034668938462],[118.08298082980832,24.248526648495442],[118.07218072180723,24.255280957574968],[118.05778057780577,24.24514949395568],[118.03978039780401,24.219820834907438],[118.02538025380255,24.206312216748373],[118.01458014580146,24.20293506220861],[117.9965799657997,24.19786933039896],[117.98937989379897,24.192803598589308],[117.9857798577986,24.187737866779656],[117.98217982179824,24.169163516810954],[117.97857978579788,24.162409207731415],[117.96777967779678,24.159032053191652],[117.96417964179642,24.174229248620605],[117.95697956979569,24.20293506220861],[117.94257942579429,24.213066525827898],[117.9317793177932,24.208000794018247],[117.92097920979211,24.19618075312907],[117.90657906579065,24.186049289509782],[117.9317793177932,24.177606403160368],[117.93897938979393,24.162409207731415],[117.9317793177932,24.14045770322295],[117.90297902979029,24.09824327147588],[117.89577895778962,24.086423230586703],[117.89217892178925,24.07291461242764],[117.89577895778962,24.06109457153846],[117.89937899378992,24.05096310791916],[117.89937899378992,24.04083164429987],[117.89217892178925,24.027323026140806],[117.86337863378634,24.03576591249022],[117.83817838178385,24.023945871601043],[117.79857798577984,23.980042862584085],[117.77337773377735,23.95809135807562],[117.76617766177662,23.947959894456318],[117.76257762577626,23.9293855444876],[117.7589775897759,23.91587692632855],[117.7481774817748,23.907434039979137],[117.73737737377377,23.907434039979137],[117.73017730177304,23.919254080868313],[117.73737737377377,23.95133704899608],[117.79137791377917,24.001994367092564],[117.79857798577984,24.022257294331155],[117.78777787777881,24.027323026140806],[117.76257762577626,24.01550298525163],[117.75537755377553,24.025634448870917],[117.76977769777699,24.03070018068057],[117.77697776977772,24.037454489760094],[117.77337773377735,24.045897376109508],[117.76977769777699,24.05096310791916],[117.76257762577626,24.069537457887876],[117.75537755377553,24.069537457887876],[117.75177751777517,24.037454489760094],[117.72297722977231,24.03407733522033],[117.69057690576909,24.045897376109508],[117.66537665376654,24.062783148808336],[117.67257672576727,24.047585953379397],[117.679776797768,24.039143067029983],[117.69057690576909,24.03576591249022],[117.70857708577086,24.03576591249022],[117.68697686976873,23.996928635282913],[117.68697686976873,23.97835428531421],[117.69417694176946,23.95302562626597],[117.67257672576727,23.93107412175749],[117.64737647376472,23.90912261724901],[117.63297632976332,23.87366249458148],[117.6257762577626,23.839890949183825],[117.6257762577626,23.812873712865695],[117.64017640176405,23.794299362896993],[117.61857618576187,23.774036435658402],[117.61137611376114,23.762216394769226],[117.59337593375938,23.736887735720984],[117.58977589775901,23.755462085689686],[117.58617586175865,23.777413590198165],[117.60057600576005,23.799365094706644],[117.60057600576005,23.8331366401043],[117.59697596975968,23.851710990073002],[117.59337593375938,23.87028534004172],[117.58257582575828,23.88885969001042],[117.57177571775719,23.904056885439374],[117.55737557375573,23.912499771788788],[117.53577535775361,23.919254080868313],[117.47457474574747,23.920942658138188],[117.45657456574565,23.92600838994784],[117.43137431374316,23.944582739916555],[117.4169741697417,23.94627131718643],[117.40617406174061,23.93276269902738],[117.40977409774098,23.914188349058662],[117.4277742777428,23.9108111945189],[117.44937449374493,23.914188349058662],[117.46737467374675,23.912499771788788],[117.49977499774997,23.87366249458148],[117.48897488974893,23.8331366401043],[117.46377463774638,23.787545053817468],[117.43497434974353,23.775725012928277],[117.38097380973812,23.79598794016688],[117.37017370173703,23.792610785627105],[117.35937359373594,23.78585647654758],[117.35577355773557,23.777413590198165],[117.34497344973448,23.76897070384875],[117.31977319773199,23.762216394769226],[117.30537305373053,23.775725012928277],[117.29097290972913,23.789233631087342],[117.27657276572768,23.782479322007816],[117.29097290972913,23.762216394769226],[117.28737287372877,23.747019199340272],[117.27297272972731,23.72169054029203],[117.27657276572768,23.68791899489439],[117.26937269372695,23.679476108544975],[117.26217262172622,23.655836026766607],[117.28017280172804,23.635573099528017],[117.25857258572586,23.615310172289426],[117.2405724057241,23.605178708670124],[117.23697236972373,23.62375305863884],[117.23697236972373,23.640638831337668],[117.2441724417244,23.657524604036496],[117.23697236972373,23.67103322219556],[117.229772297723,23.692984726704026],[117.22617226172264,23.684541840354612],[117.20817208172082,23.66427891311602],[117.21897218972191,23.652458872226845],[117.21897218972191,23.640638831337668],[117.21897218972191,23.62881879044849],[117.18657186571869,23.620375904099078],[117.1757717577176,23.616998749559315],[117.15057150571505,23.606867285940012],[117.12897128971292,23.573095740542357],[117.10017100171001,23.554521390573655],[117.08577085770861,23.551144236033878],[117.07857078570788,23.564652854192943],[117.08217082170825,23.574784317812245],[117.08217082170825,23.588292935971296],[117.07497074970752,23.605178708670124],[117.07857078570788,23.62206448136895],[117.07857078570788,23.63895025406778],[117.06777067770679,23.650770294956956],[117.0569705697057,23.654147449496733],[117.0461704617046,23.655836026766607],[117.03537035370357,23.66090175857626],[117.02457024570248,23.65921318130637],[117.01737017370175,23.647393140417194],[117.01017010170102,23.64401598587743],[116.98496984969853,23.640638831337668],[116.96336963369635,23.615310172289426],[116.94896948969489,23.610244440479775],[116.92736927369276,23.62544163590873],[116.91656916569167,23.637261676797905],[116.94176941769416,23.65921318130637],[116.92736927369276,23.66427891311602],[116.91656916569167,23.662590335846147],[116.90936909369094,23.654147449496733],[116.90576905769058,23.640638831337668],[116.90216902169021,23.633884522258143],[116.87696876968772,23.61868732682919],[116.87336873368736,23.606867285940012],[116.87336873368736,23.5984243995906],[116.88056880568809,23.593358667780947],[116.88416884168845,23.586604358701422],[116.88776887768881,23.573095740542357],[116.88416884168845,23.55958712238329],[116.87696876968772,23.547767081494115],[116.85536855368554,23.52412699971576],[116.84816848168481,23.510618381556696],[116.85536855368554,23.49710976339763],[116.87336873368736,23.473469681619278],[116.86616866168663,23.449829599840925],[116.77256772567728,23.350203540917846],[116.75456754567546,23.350203540917846],[116.74736747367473,23.348514963647958],[116.73296732967333,23.35189211818772],[116.71136711367114,23.355269272727497],[116.69336693366932,23.360335004537134],[116.67896678966792,23.35695784999737],[116.65736657366574,23.355269272727497],[116.62136621366216,23.368777890886548],[116.56736567365675,23.390729395395027],[116.55656556565566,23.402549436284204],[116.5529655296553,23.41436947717338],[116.5421654216542,23.42112378625292],[116.53136531365317,23.422812363522794],[116.52416524165244,23.417746631713143],[116.52056520565208,23.410992322633618],[116.52416524165244,23.377220777235962],[116.53496534965353,23.362023581807023],[116.5529655296553,23.341760654568432],[116.57456574565748,23.323186304599716],[116.58896588965888,23.31643199552019],[116.6069660696607,23.319809150059953],[116.64296642966428,23.318120572790065],[116.6609666096661,23.33669492275878],[116.68976689766896,23.33838350002867],[116.70776707767078,23.319809150059953],[116.7257672576726,23.31643199552019],[116.72936729367296,23.329940613679256],[116.74736747367473,23.32656345913948],[116.76536765367655,23.297857645551474],[116.76896768967691,23.272528986503232],[116.77616776167764,23.240446018375465],[116.78696786967873,23.235380286565814],[116.7941679416794,23.240446018375465],[116.8049680496805,23.235380286565814],[116.78336783367837,23.21174020478746],[116.75456754567546,23.23369170929594],[116.73296732967333,23.257331791074293],[116.70416704167042,23.27590614104301],[116.66816668166683,23.280971872852646],[116.67896678966792,23.270840409233358],[116.69336693366932,23.265774677423707],[116.70776707767078,23.25902036834418],[116.71496714967151,23.243823172915228],[116.70416704167042,23.23875744110559],[116.68976689766896,23.230314554756177],[116.6717667176672,23.215117359327223],[116.6609666096661,23.193165854818744],[116.64656646566465,23.162771463960866],[116.63576635766361,23.16446004123074],[116.62856628566288,23.174591504850042],[116.61416614166143,23.177968659389805],[116.61416614166143,23.18978870027898],[116.61776617766179,23.203297318438047],[116.61776617766179,23.221871668406763],[116.61056610566106,23.23875744110559],[116.58896588965888,23.245511750185116],[116.57096570965712,23.247200327455005],[116.51696516965171,23.235380286565814],[116.50976509765098,23.23369170929594],[116.50976509765098,23.216805936597112],[116.5277652776528,23.199920163898284],[116.5421654216542,23.210051627517572],[116.5529655296553,23.216805936597112],[116.56376563765639,23.223560245676637],[116.57456574565748,23.223560245676637],[116.60336603366034,23.218494513866986],[116.60336603366034,23.210051627517572],[116.59976599765997,23.19654300935852],[116.57096570965712,23.177968659389805],[116.54576545765457,23.14419711399215],[116.53496534965353,23.10873699132462],[116.5529655296553,23.08678548681614],[116.54936549365493,23.06652255957755],[116.55656556565566,23.036128168719657],[116.56376563765639,23.01924239602083],[116.54936549365493,23.005733777861778],[116.52056520565208,22.998979468782238],[116.51696516965171,22.96689650065447],[116.49536495364953,22.93987926433634],[116.45936459364594,22.94663357341588],[116.42696426964272,22.938190687066466],[116.38016380163805,22.929747800717053],[116.35136351363514,22.938190687066466],[116.33696336963368,22.95169930522553],[116.29736297362973,22.96351934611471],[116.290162901629,22.978716541543648],[116.26136261362615,22.973650809733996],[116.2361623616236,22.980405118813536],[116.21456214562147,22.98209369608341],[116.20016200162001,22.973650809733996],[116.2361623616236,22.960142191574946],[116.25056250562506,22.958453614305057],[116.26856268562688,22.96689650065447],[116.28296282962833,22.958453614305057],[116.24696246962469,22.931436377986927],[116.2217622176222,22.91961633709775],[116.21456214562147,22.907796296208573],[116.20016200162001,22.895976255319397],[116.17136171361716,22.86389328719163],[116.14616146161461,22.8470075144928],[116.12816128161285,22.838564628143388],[116.11376113761139,22.833498896333737],[116.09576095760957,22.82674458725421],[116.08496084960848,22.850384669032564],[116.0921609216092,22.868959019001267],[116.12456124561248,22.89428767804951],[116.08856088560884,22.9061077189387],[116.04176041760417,22.933124955256815],[116.04176041760417,22.922993491637513],[116.07056070560708,22.897664832589285],[116.08856088560884,22.88922194623987],[116.0777607776078,22.867270441731392],[116.05256052560526,22.855450400842216],[116.0489604896049,22.852073246302453],[116.0381603816038,22.850384669032564],[116.02736027360277,22.845318937222913],[116.01296012960131,22.838564628143388],[115.99495994959949,22.8368760508735],[115.96615966159663,22.81661312363491],[115.9589595895959,22.804793082745732],[115.94095940959409,22.808170237285495],[115.93375933759341,22.806481660015606],[115.9049590495905,22.789595887316793],[115.88335883358837,22.79466161912643],[115.85455854558546,22.77946442369749],[115.84375843758437,22.769332960078188],[115.8257582575826,22.747381455569723],[115.81135811358115,22.745692878299835],[115.7969579695797,22.75413576464925],[115.7969579695797,22.769332960078188],[115.78975789757897,22.787907310046904],[115.78975789757897,22.798038773666207],[115.79335793357933,22.79972735093608],[115.80055800558006,22.79466161912643],[115.80055800558006,22.786218732777016],[115.80775807758079,22.777775846427602],[115.81495814958151,22.776087269157728],[115.81495814958151,22.786218732777016],[115.81135811358115,22.79972735093608],[115.81135811358115,22.808170237285495],[115.80415804158042,22.81492454636502],[115.7969579695797,22.81999027817467],[115.78975789757897,22.82167885544456],[115.7861578615786,22.825056009984323],[115.77535775357757,22.831810319063848],[115.76455764557647,22.84194178268315],[115.73575735757356,22.852073246302453],[115.69615696156961,22.850384669032564],[115.70335703357034,22.868959019001267],[115.68535685356852,22.87740190535068],[115.68175681756821,22.887533368969983],[115.69255692556925,22.89935340985916],[115.7069570695707,22.907796296208573],[115.71415714157143,22.90441914166881],[115.72135721357216,22.90441914166881],[115.72855728557289,22.922993491637513],[115.73215732157325,22.931436377986927],[115.72855728557289,22.934813532526704],[115.69255692556925,22.929747800717053],[115.68175681756821,22.9246820689074],[115.66735667356676,22.90441914166881],[115.6529565295653,22.89428767804951],[115.63855638556385,22.88922194623987],[115.58455584555844,22.880779059890457],[115.57735577355777,22.87740190535068],[115.5737557375574,22.872336173541044],[115.56655566555668,22.853761823572327],[115.55935559355595,22.848696091762676],[115.54135541355413,22.853761823572327],[115.5341553415534,22.86220470992174],[115.53775537755376,22.874024750810918],[115.54855548555486,22.887533368969983],[115.54855548555486,22.895976255319397],[115.5341553415534,22.897664832589285],[115.50535505355055,22.897664832589285],[115.49455494554945,22.902730564398922],[115.46935469354696,22.92637064617729],[115.45135451354514,22.931436377986927],[115.44415444154441,22.929747800717053],[115.43695436954368,22.91961633709775],[115.42975429754301,22.917927759827876],[115.42255422554229,22.917927759827876],[115.40455404554046,22.9246820689074],[115.41895418954192,22.907796296208573],[115.42615426154265,22.901041987129048],[115.43695436954368,22.897664832589285],[115.44775447754478,22.89935340985916],[115.4549545495455,22.909484873478462],[115.4657546575466,22.911173450748336],[115.48375483754836,22.901041987129048],[115.49455494554945,22.880779059890457],[115.49455494554945,22.860516132651853],[115.46935469354696,22.85713897811209],[115.46935469354696,22.848696091762676],[115.48015480154805,22.8470075144928],[115.50535505355055,22.848696091762676],[115.51615516155164,22.8470075144928],[115.5305553055531,22.838564628143388],[115.54135541355413,22.8368760508735],[115.55935559355595,22.8368760508735],[115.56655566555668,22.838564628143388],[115.57735577355777,22.84363035995304],[115.5881558815588,22.848696091762676],[115.59175591755917,22.85713897811209],[115.5989559895599,22.86220470992174],[115.61335613356135,22.86389328719163],[115.59175591755917,22.8470075144928],[115.55575555755559,22.808170237285495],[115.53775537755376,22.789595887316793],[115.52695526955273,22.767644382808314],[115.52335523355237,22.742315723760072],[115.55575555755559,22.713609910172067],[115.56655566555668,22.73724999195042],[115.56655566555668,22.747381455569723],[115.58455584555844,22.745692878299835],[115.59175591755917,22.73724999195042],[115.58095580955813,22.723741373791356],[115.56295562955631,22.705167023822654],[115.56295562955631,22.684904096584063],[115.5737557375574,22.668018323885235],[115.53775537755376,22.668018323885235],[115.52335523355237,22.67646121023465],[115.49095490954909,22.688281251123826],[115.4657546575466,22.70178986928289],[115.43695436954368,22.700101292013002],[115.42255422554229,22.689969828393714],[115.39375393753937,22.689969828393714],[115.37215372153725,22.693346982933477],[115.36135361353615,22.703478446552765],[115.3469534695347,22.71698706471183],[115.33975339753397,22.733872837410658],[115.35055350553506,22.747381455569723],[115.35775357753579,22.749070032839597],[115.39015390153901,22.747381455569723],[115.39735397353974,22.749070032839597],[115.40815408154083,22.75751291918901],[115.42255422554229,22.762578650998663],[115.42255422554229,22.771021537348076],[115.4117541175412,22.787907310046904],[115.38655386553864,22.782841578237253],[115.37575375753761,22.772710114617965],[115.36495364953652,22.76426722826855],[115.32895328953293,22.787907310046904],[115.28935289352893,22.791284464586667],[115.24975249752498,22.787907310046904],[115.23175231752316,22.787907310046904],[115.23175231752316,22.804793082745732],[115.25695256952571,22.81999027817467],[115.30375303753038,22.838564628143388],[115.3217532175322,22.850384669032564],[115.32535325353257,22.85882755538198],[115.31455314553148,22.86389328719163],[115.31095310953111,22.868959019001267],[115.31095310953111,22.88246763716033],[115.31815318153184,22.90441914166881],[115.30375303753038,22.902730564398922],[115.29295292952929,22.895976255319397],[115.27135271352716,22.874024750810918],[115.25695256952571,22.8470075144928],[115.24615246152462,22.835187473603625],[115.23175231752316,22.830121741793974],[115.21735217352176,22.835187473603625],[115.19575195751958,22.831810319063848],[115.17415174151745,22.82167885544456],[115.17415174151745,22.806481660015606],[115.18135181351812,22.78453015550714],[115.15975159751599,22.792973041856555],[115.1489514895149,22.809858814555383],[115.13455134551344,22.811547391825258],[115.11295112951132,22.80141592820597],[115.10215102151022,22.79972735093608],[115.06615066150664,22.796350196396318],[115.05175051750518,22.78115300096738],[115.04455044550446,22.776087269157728],[115.04095040950409,22.760890073728774],[115.03735037350373,22.75413576464925],[115.02295022950233,22.74400430102996],[115.01935019350196,22.73724999195042],[115.02295022950233,22.727118528331133],[115.030150301503,22.71698706471183],[115.030150301503,22.708544178362416],[115.01935019350196,22.706855601092528],[115.00855008550087,22.703478446552765],[114.99774997749978,22.70178986928289],[114.99414994149942,22.69672413747324],[114.98694986949869,22.689969828393714],[114.97974979749796,22.688281251123826],[114.97254972549729,22.693346982933477],[114.95814958149583,22.69672413747324],[114.95454954549547,22.703478446552765],[114.95814958149583,22.71529848744194],[114.9509495094951,22.728807105601007],[114.94734947349474,22.742315723760072],[114.94014940149401,22.75413576464925],[114.92574925749261,22.760890073728774],[114.91854918549188,22.74400430102996],[114.90414904149043,22.749070032839597],[114.88974889748897,22.76426722826855],[114.87534875348757,22.767644382808314],[114.86094860948612,22.762578650998663],[114.87174871748721,22.75413576464925],[114.88254882548824,22.747381455569723],[114.8861488614886,22.735561414680546],[114.87894878948788,22.728807105601007],[114.87894878948788,22.72205279652148],[114.88974889748897,22.713609910172067],[114.90414904149043,22.713609910172067],[114.91134911349116,22.723741373791356],[114.92574925749261,22.71698706471183],[114.93654936549365,22.710232755632305],[114.94734947349474,22.69672413747324],[114.95454954549547,22.684904096584063],[114.96534965349656,22.67646121023465],[114.9509495094951,22.664641169345472],[114.94014940149401,22.657886860265933],[114.92574925749261,22.63931251029723],[114.90054900549006,22.598786655820035],[114.90414904149043,22.578523728581445],[114.91854918549188,22.561637955882617],[114.8969489694897,22.548129337723566],[114.88254882548824,22.55150649226333],[114.87894878948788,22.559949378612743],[114.88974889748897,22.573457996771808],[114.8861488614886,22.59034376947062],[114.86454864548648,22.602163810359812],[114.8321483214832,22.602163810359812],[114.80694806948071,22.59203234674051],[114.77454774547749,22.59709807855016],[114.7529475294753,22.59034376947062],[114.74214742147421,22.608918119439338],[114.74214742147421,22.627492469408054],[114.74214742147421,22.647755396646644],[114.73854738547385,22.66970690115511],[114.74934749347494,22.678149787504523],[114.7529475294753,22.693346982933477],[114.73854738547385,22.710232755632305],[114.74214742147421,22.73218426014077],[114.7529475294753,22.749070032839597],[114.7781477814778,22.762578650998663],[114.79614796147962,22.769332960078188],[114.80334803348035,22.772710114617965],[114.81414814148144,22.77439869188784],[114.8177481774818,22.77946442369749],[114.82134821348217,22.791284464586667],[114.8177481774818,22.79972735093608],[114.80694806948071,22.804793082745732],[114.79974799747998,22.808170237285495],[114.79254792547925,22.811547391825258],[114.78534785347853,22.81661312363491],[114.77454774547749,22.81661312363491],[114.77094770947713,22.809858814555383],[114.7637476374764,22.791284464586667],[114.75654756547567,22.78115300096738],[114.73494734947349,22.776087269157728],[114.71694716947172,22.791284464586667],[114.69534695346954,22.792973041856555],[114.68454684546845,22.78115300096738],[114.66294662946632,22.77439869188784],[114.6449464494645,22.767644382808314],[114.63774637746377,22.755824341919137],[114.61614616146164,22.750758610109486],[114.60174601746019,22.740627146490183],[114.580145801458,22.733872837410658],[114.56214562145624,22.73218426014077],[114.5657456574566,22.71867564198172],[114.56934569345697,22.70178986928289],[114.55134551345515,22.69503556020335],[114.54054540545405,22.69503556020335],[114.53334533345333,22.700101292013002],[114.52254522545229,22.705167023822654],[114.52254522545229,22.686592673853937],[114.51534515345156,22.67646121023465],[114.50454504545047,22.662952592075584],[114.5009450094501,22.65282112845628],[114.50814508145083,22.646066819376756],[114.53334533345333,22.644378242106868],[114.52254522545229,22.646066819376756],[114.54774547745478,22.644378242106868],[114.56214562145624,22.647755396646644],[114.57294572945733,22.65450970572617],[114.58374583745837,22.65450970572617],[114.5909459094591,22.644378242106868],[114.57654576545764,22.635935355757468],[114.56214562145624,22.608918119439338],[114.54774547745478,22.602163810359812],[114.52974529745296,22.598786655820035],[114.51534515345156,22.58696661493086],[114.5009450094501,22.573457996771808],[114.49374493744938,22.561637955882617],[114.5009450094501,22.55150649226333],[114.50814508145083,22.54981791499344],[114.51894518945193,22.553195069533203],[114.52974529745296,22.55488364680309],[114.52974529745296,22.55657222407298],[114.53334533345333,22.561637955882617],[114.53694536945369,22.566703687692268],[114.54414544145442,22.57008084223203],[114.54774547745478,22.566703687692268],[114.55494554945551,22.55657222407298],[114.55854558545587,22.55488364680309],[114.57294572945733,22.55150649226333],[114.59454594545946,22.541375028644026],[114.61254612546128,22.52955498775485],[114.61614616146164,22.51435779232591],[114.60894608946091,22.504226328706608],[114.58734587345873,22.495783442357194],[114.56934569345697,22.483963401468017],[114.54054540545405,22.47720909238849],[114.52974529745296,22.468766206039078],[114.51534515345156,22.45188043334025],[114.5009450094501,22.45188043334025],[114.49374493744938,22.463700474229427],[114.49014490144901,22.465389051499315],[114.48654486544865,22.468766206039078],[114.48294482944829,22.473831937848715],[114.48294482944829,22.483963401468017],[114.47574475744756,22.48902913327767],[114.47574475744756,22.490717710547543],[114.47934479344792,22.500849174166845],[114.47574475744756,22.50929206051626],[114.48294482944829,22.517734946865673],[114.48654486544865,22.521112101405436],[114.48654486544865,22.5346207195645],[114.47934479344792,22.539686451374152],[114.47934479344792,22.546440760453677],[114.47214472144725,22.55150649226333],[114.46134461344616,22.561637955882617],[114.45414454144543,22.57008084223203],[114.4469444694447,22.57176941950192],[114.43974439744397,22.568392264962156],[114.43614436144361,22.57683515131157],[114.43614436144361,22.580212305851333],[114.43974439744397,22.583589460391096],[114.43254432544325,22.59034376947062],[114.42534425344252,22.602163810359812],[114.41454414544148,22.605540964899575],[114.40734407344075,22.6122952739791],[114.39654396543966,22.61398385124899],[114.37854378543784,22.610606696709226],[114.36054360543608,22.605540964899575],[114.3389433894339,22.59709807855016],[114.3281432814328,22.605540964899575],[114.32454324543244,22.598786655820035],[114.31734317343177,22.602163810359812],[114.30654306543067,22.593720924010398],[114.30654306543067,22.585278037660984],[114.30294302943031,22.583589460391096],[114.27774277742776,22.588655192200747],[114.27054270542709,22.583589460391096],[114.2489424894249,22.57008084223203],[114.23814238142381,22.559949378612743],[114.23094230942309,22.55657222407298],[114.23454234542345,22.55657222407298],[114.22734227342272,22.546440760453677],[114.22374223742236,22.541375028644026],[114.21654216542169,22.5346207195645],[114.20934209342096,22.5346207195645],[114.20934209342096,22.5244892559452],[114.21654216542169,22.526177833215087],[114.22014220142205,22.52955498775485],[114.23094230942309,22.532932142294612],[114.23454234542345,22.536309296834375],[114.24174241742418,22.54981791499344],[114.24534245342454,22.55150649226333],[114.2489424894249,22.548129337723566],[114.25614256142563,22.55150649226333],[114.25614256142563,22.548129337723566],[114.25254252542527,22.539686451374152],[114.259742597426,22.541375028644026],[114.26694266942673,22.5346207195645],[114.26694266942673,22.52786641048496],[114.27054270542709,22.526177833215087],[114.27774277742776,22.52955498775485],[114.28134281342813,22.526177833215087],[114.28134281342813,22.51942352413556],[114.27774277742776,22.510980637786147],[114.28494284942849,22.510980637786147],[114.28854288542885,22.505914905976496],[114.29934299342995,22.500849174166845],[114.3281432814328,22.50929206051626],[114.33174331743317,22.51266921505602],[114.33534335343353,22.505914905976496],[114.31734317343177,22.49240628781743],[114.30654306543067,22.48227482419813],[114.29214292142922,22.478897669658366],[114.28134281342813,22.47214336057884],[114.26694266942673,22.465389051499315],[114.26334263342636,22.458634742419775],[114.25254252542527,22.45188043334025],[114.24534245342454,22.45188043334025],[114.23094230942309,22.470454783308952],[114.21654216542169,22.46707762876919],[114.21294212942132,22.470454783308952],[114.20934209342096,22.465389051499315],[114.20934209342096,22.4569461651499],[114.21654216542169,22.455257587880013],[114.21654216542169,22.448503278800487],[114.20934209342096,22.45019185607036],[114.20934209342096,22.453569010610124],[114.20214202142023,22.458634742419775],[114.19134191341914,22.4569461651499],[114.18774187741877,22.45188043334025],[114.16614166141665,22.448503278800487],[114.17694176941768,22.443437546990836],[114.18774187741877,22.436683237911296],[114.19854198541987,22.428240351561882],[114.21294212942132,22.41979746521247],[114.20934209342096,22.413043156132943],[114.21654216542169,22.40966600159318],[114.20934209342096,22.397845960704004],[114.21654216542169,22.399534537973878],[114.22374223742236,22.41473173340283],[114.23454234542345,22.42486319702212],[114.23814238142381,22.434994660641422],[114.24534245342454,22.434994660641422],[114.25254252542527,22.42992892883177],[114.26694266942673,22.42992892883177],[114.27054270542709,22.42486319702212],[114.26694266942673,22.416420310672706],[114.2741427414274,22.40966600159318],[114.27774277742776,22.41979746521247],[114.28854288542885,22.426551774292008],[114.27774277742776,22.443437546990836],[114.28854288542885,22.453569010610124],[114.30294302943031,22.4569461651499],[114.29934299342995,22.465389051499315],[114.32454324543244,22.480586246928254],[114.32454324543244,22.475520515118603],[114.33174331743317,22.473831937848715],[114.32454324543244,22.463700474229427],[114.33534335343353,22.462011896959538],[114.3389433894339,22.4468147015306],[114.33174331743317,22.440060392451073],[114.3389433894339,22.43161750610166],[114.34254342543426,22.438371815181185],[114.34614346143462,22.423174619752245],[114.35334353343535,22.423174619752245],[114.35334353343535,22.441748969720948],[114.36054360543608,22.462011896959538],[114.3677436774368,22.455257587880013],[114.3677436774368,22.4468147015306],[114.37134371343717,22.440060392451073],[114.38574385743857,22.440060392451073],[114.40014400144003,22.436683237911296],[114.39654396543966,22.428240351561882],[114.40014400144003,22.413043156132943],[114.38934389343893,22.418108887942594],[114.3821438214382,22.41979746521247],[114.37134371343717,22.397845960704004],[114.37494374943748,22.401223115243766],[114.38574385743857,22.3877144970847],[114.38934389343893,22.365762992576222],[114.38574385743857,22.365762992576222],[114.38574385743857,22.370828724385873],[114.37494374943748,22.370828724385873],[114.37854378543784,22.36238583803646],[114.37494374943748,22.353942951687046],[114.37134371343717,22.34887721987741],[114.36054360543608,22.34550006533763],[114.35694356943571,22.33199144717858],[114.35334353343535,22.338745756258106],[114.35334353343535,22.35225437441717],[114.34254342543426,22.34550006533763],[114.3389433894339,22.35225437441717],[114.33174331743317,22.359008683496697],[114.33534335343353,22.375894456195525],[114.32094320943213,22.380960188005176],[114.31734317343177,22.38940307435459],[114.31014310143104,22.38433734254494],[114.29934299342995,22.380960188005176],[114.28494284942849,22.391091651624464],[114.27774277742776,22.391091651624464],[114.26694266942673,22.379271610735287],[114.2741427414274,22.364074415306348],[114.28134281342813,22.355631528956934],[114.27774277742776,22.34887721987741],[114.26694266942673,22.355631528956934],[114.26694266942673,22.365762992576222],[114.259742597426,22.36238583803646],[114.25614256142563,22.355631528956934],[114.26694266942673,22.34550006533763],[114.2741427414274,22.32017140628939],[114.27774277742776,22.318482829019516],[114.29214292142922,22.316794251749627],[114.29214292142922,22.30497421086045],[114.29574295742958,22.30497421086045],[114.30294302943031,22.30666278813034],[114.31014310143104,22.296531324511037],[114.30654306543067,22.291465592701385],[114.29934299342995,22.28639986089175],[114.29214292142922,22.288088438161623],[114.28854288542885,22.28639986089175],[114.28854288542885,22.281334129082097],[114.28854288542885,22.274579820002558],[114.29934299342995,22.276268397272446],[114.30294302943031,22.26951408819292],[114.30294302943031,22.26275977911338],[114.29574295742958,22.25769404730373],[114.28854288542885,22.26444835638327],[114.27774277742776,22.271202665462795],[114.28134281342813,22.27964555181221],[114.2741427414274,22.296531324511037],[114.26334263342636,22.301597056320688],[114.26694266942673,22.3100399426701],[114.26694266942673,22.316794251749627],[114.25614256142563,22.32185998355928],[114.25254252542527,22.30497421086045],[114.25254252542527,22.296531324511037],[114.23814238142381,22.281334129082097],[114.22734227342272,22.291465592701385],[114.21294212942132,22.3100399426701],[114.21654216542169,22.301597056320688],[114.21294212942132,22.301597056320688],[114.1949419494195,22.318482829019516],[114.18774187741877,22.308351365400213],[114.19134191341914,22.301597056320688],[114.19134191341914,22.298219901780925],[114.18414184141841,22.301597056320688],[114.18054180541804,22.294842747241162],[114.17694176941768,22.291465592701385],[114.17334173341732,22.288088438161623],[114.16614166141665,22.294842747241162],[114.16974169741701,22.30497421086045],[114.16614166141665,22.3100399426701],[114.16614166141665,22.315105674479753],[114.15894158941592,22.315105674479753],[114.15894158941592,22.32185998355928],[114.15174151741519,22.328614292638804],[114.13734137341373,22.335368601718343],[114.12294122941228,22.34212291079787],[114.12294122941228,22.337057178988218],[114.11214112141124,22.35225437441717],[114.11214112141124,22.365762992576222],[114.10494104941051,22.369140147116],[114.09774097740979,22.36238583803646],[114.07974079740796,22.365762992576222],[114.07974079740796,22.36238583803646],[114.06894068940693,22.36238583803646],[114.06894068940693,22.359008683496697],[114.05814058140584,22.360697260766585],[114.05094050940511,22.359008683496697],[114.04014040140402,22.355631528956934],[114.0221402214022,22.350565797147283],[114.01494014940153,22.353942951687046],[114.01494014940153,22.359008683496697],[113.9969399693997,22.359008683496697],[113.99333993339934,22.364074415306348],[113.98253982539825,22.36745156984611],[113.97533975339752,22.379271610735287],[113.97173971739716,22.379271610735287],[113.97173971739716,22.3877144970847],[113.96453964539648,22.380960188005176],[113.97533975339752,22.372517301655762],[113.95373953739539,22.369140147116],[113.94653946539466,22.36238583803646],[113.93213932139321,22.369140147116],[113.92493924939248,22.369140147116],[113.91413914139144,22.375894456195525],[113.91773917739181,22.3877144970847],[113.91053910539108,22.397845960704004],[113.89613896138962,22.407977424323292],[113.91053910539108,22.418108887942594],[113.93213932139321,22.41979746521247],[113.93933939339394,22.426551774292008],[113.95373953739539,22.45019185607036],[113.97893978939788,22.458634742419775],[113.9969399693997,22.48902913327767],[114.00414004140043,22.48902913327767],[114.01134011340116,22.485651978737906],[114.01134011340116,22.480586246928254],[114.01134011340116,22.47214336057884],[114.01494014940153,22.475520515118603],[114.02574025740256,22.478897669658366],[114.02934029340292,22.478897669658366],[114.03294032940329,22.48227482419813],[114.02934029340292,22.48734055600778],[114.02934029340292,22.495783442357194],[114.04374043740438,22.500849174166845],[114.05814058140584,22.504226328706608],[114.0617406174062,22.50929206051626],[114.06534065340657,22.516046369595784],[114.07254072540724,22.517734946865673],[114.07974079740796,22.51942352413556],[114.08694086940869,22.522800678675324],[114.08334083340833,22.52955498775485],[114.07974079740796,22.52786641048496],[114.07974079740796,22.5244892559452],[114.06894068940693,22.521112101405436],[114.05814058140584,22.517734946865673],[114.05454054540547,22.50760348324637],[114.04374043740438,22.50760348324637],[114.04014040140402,22.510980637786147],[114.03654036540365,22.510980637786147],[114.03654036540365,22.51435779232591],[114.01854018540189,22.522800678675324],[114.00054000540007,22.531243565024738],[113.98613986139861,22.531243565024738],[113.98613986139861,22.532932142294612],[113.97173971739716,22.532932142294612],[113.96453964539648,22.537997874104263],[113.96093960939612,22.52786641048496],[113.95013950139503,22.5244892559452],[113.95013950139503,22.510980637786147],[113.95013950139503,22.500849174166845],[113.94653946539466,22.490717710547543],[113.93573935739357,22.48902913327767],[113.92493924939248,22.48734055600778],[113.91413914139144,22.48902913327767],[113.91413914139144,22.48734055600778],[113.91053910539108,22.485651978737906],[113.91053910539108,22.47720909238849],[113.8889388893889,22.45188043334025],[113.88173881738817,22.473831937848715],[113.87453874538744,22.478897669658366],[113.86733867338677,22.49409486508732],[113.86733867338677,22.510980637786147],[113.88173881738817,22.51435779232591],[113.89253892538926,22.521112101405436],[113.8781387813878,22.536309296834375],[113.84213842138422,22.561637955882617],[113.83493834938349,22.57176941950192],[113.8241382413824,22.58696661493086],[113.81333813338136,22.603852387629686],[113.79893798937991,22.630869623947817],[113.79533795337954,22.661264014805695],[113.77373773737736,22.673084055694886],[113.76293762937632,22.735561414680546],[113.75933759337596,22.75413576464925],[113.7449374493745,22.760890073728774],[113.71253712537128,22.762578650998663],[113.69813698136983,22.760890073728774],[113.69453694536946,22.75751291918901],[113.6909369093691,22.75244718737936],[113.68373683736837,22.747381455569723],[113.67293672936728,22.747381455569723],[113.65493654936552,22.7592014964589],[113.65493654936552,22.776087269157728],[113.66213662136624,22.798038773666207],[113.65493654936552,22.81999027817467],[113.64413644136442,22.833498896333737],[113.63333633336333,22.853761823572327],[113.61893618936193,22.890910523509746],[113.6117361173612,22.875713328080806],[113.6117361173612,22.86220470992174],[113.6117361173612,22.848696091762676],[113.61893618936193,22.8368760508735],[113.60453604536048,22.8470075144928],[113.60093600936011,22.865581864461504],[113.60453604536048,22.887533368969983],[113.6117361173612,22.90441914166881],[113.60453604536048,22.897664832589285],[113.59733597335975,22.88922194623987],[113.59733597335975,22.880779059890457],[113.59373593735938,22.88922194623987],[113.6117361173612,22.933124955256815],[113.61893618936193,22.95676503703517],[113.61893618936193,22.978716541543648],[113.6261362613626,22.998979468782238],[113.6369363693637,23.034439591449782],[113.62973629736297,23.034439591449782],[113.61533615336157,23.007422355131652],[113.6117361173612,22.993913736972587],[113.60813608136084,22.96351934611471],[113.60093600936011,22.931436377986927],[113.59733597335975,22.917927759827876],[113.59373593735938,22.929747800717053],[113.59373593735938,22.944944996145992],[113.59733597335975,22.960142191574946],[113.60453604536048,22.973650809733996],[113.60093600936011,22.98715942789306],[113.60453604536048,23.000668046052127],[113.61893618936193,23.034439591449782],[113.60093600936011,23.00911093240154],[113.58653586535866,22.953387882495406],[113.57573575735756,22.938190687066466],[113.58293582935829,22.95676503703517],[113.58293582935829,22.978716541543648],[113.58293582935829,23.020930973290717],[113.56493564935653,22.997290891512364],[113.55413554135544,22.98715942789306],[113.54333543335434,22.98715942789306],[113.53253532535325,22.995602314242475],[113.52893528935289,23.010799509671415],[113.52893528935289,23.037816745989545],[113.53613536135362,23.063145405037787],[113.5577355773558,23.083408332276377],[113.58293582935829,23.098605527705317],[113.6369363693637,23.10873699132462],[113.6909369093691,23.132377073102973],[113.71973719737201,23.137442804912624],[113.73053730537305,23.13406565037286],[113.7449374493745,23.125622764023447],[113.75933759337596,23.122245609483684],[113.78453784537845,23.132377073102973],[113.80253802538027,23.12899991856321],[113.83133831338313,23.117179877674033],[113.81333813338136,23.12899991856321],[113.79893798937991,23.13406565037286],[113.75933759337596,23.137442804912624],[113.7449374493745,23.142508536722275],[113.71973719737201,23.156017154881326],[113.70173701737019,23.157705732151214],[113.67293672936728,23.15095142307169],[113.6261362613626,23.117179877674033],[113.59373593735938,23.110425568594493],[113.58653586535866,23.105359836784856],[113.55053550535507,23.08847406408603],[113.54333543335434,23.08678548681614],[113.53613536135362,23.074965445926964],[113.52533525335252,23.06652255957755],[113.50733507335076,23.0614568277679],[113.4929349293493,23.063145405037787],[113.44613446134463,23.090162641355903],[113.41733417334177,23.096916950435443],[113.39933399333995,23.083408332276377],[113.42093420934208,23.06483398230766],[113.44973449734499,23.063145405037787],[113.48213482134821,23.05132536414861],[113.5037350373504,23.020930973290717],[113.5037350373504,22.990536582432824],[113.4929349293493,22.953387882495406],[113.48213482134821,22.936502109796578],[113.48573485734858,22.929747800717053],[113.48573485734858,22.9246820689074],[113.47493474934748,22.917927759827876],[113.46773467734681,22.91961633709775],[113.44613446134463,22.928059223447164],[113.43173431734317,22.931436377986927],[113.33813338133382,22.897664832589285],[113.30933309333096,22.89428767804951],[113.21213212132125,22.911173450748336],[113.21213212132125,22.90441914166881],[113.23373233732337,22.89935340985916],[113.25893258932592,22.897664832589285],[113.26253262532629,22.89428767804951],[113.28413284132841,22.880779059890457],[113.29133291332914,22.87740190535068],[113.31293312933133,22.880779059890457],[113.33093330933309,22.887533368969983],[113.34893348933491,22.88922194623987],[113.36693366933673,22.880779059890457],[113.42453424534244,22.81661312363491],[113.4389343893439,22.804793082745732],[113.4929349293493,22.77439869188784],[113.46413464134645,22.762578650998663],[113.45333453334536,22.755824341919137],[113.4389343893439,22.73893856922031],[113.42453424534244,22.749070032839597],[113.37773377733777,22.767644382808314],[113.39573395733959,22.747381455569723],[113.45333453334536,22.725429951061244],[113.46773467734681,22.71698706471183],[113.47493474934748,22.700101292013002],[113.51453514535149,22.671395478424998],[113.55413554135544,22.63931251029723],[113.56493564935653,22.61398385124899],[113.60093600936011,22.575146574041682],[113.59373593735938,22.522800678675324],[113.56133561335616,22.480586246928254],[113.54693546935471,22.438371815181185],[113.55053550535507,22.396157383434115],[113.5577355773558,22.380960188005176],[113.58293582935829,22.370828724385873],[113.6117361173612,22.370828724385873],[113.60093600936011,22.350565797147283],[113.59733597335975,22.34212291079787],[113.59733597335975,22.32523713809904],[113.59373593735938,22.316794251749627],[113.58293582935829,22.3100399426701],[113.5721357213572,22.2999084790508],[113.57573575735756,22.28471128362186],[113.57573575735756,22.266136933653144],[113.58293582935829,22.26275977911338],[113.59013590135902,22.252628315494093],[113.58653586535866,22.23743112006514],[113.56133561335616,22.234053965525376],[113.55413554135544,22.218856770096437],[113.53973539735398,22.2222339246362],[113.52173521735216,22.213791038286786],[113.52893528935289,22.203659574667483],[113.52893528935289,22.20197099739761],[113.52893528935289,22.20028242012772],[113.52173521735216,22.191839533778307],[113.49653496534967,22.171576606539716],[113.48213482134821,22.15469083384089],[113.46053460534608,22.15806798838065],[113.42453424534244,22.18677380196867],[113.41733417334177,22.208725306477135],[113.41013410134104,22.225611079175962],[113.36333363333637,22.267825510923032],[113.36333363333637,22.274579820002558],[113.359733597336,22.293154169971274],[113.35613356133564,22.301597056320688],[113.35253352533528,22.308351365400213],[113.30213302133023,22.343811488067757],[113.27693276932769,22.372517301655762],[113.25533255332556,22.40460026978353],[113.2409324093241,22.4569461651499],[113.23373233732337,22.478897669658366],[113.1761317613176,22.563326533152505],[113.16533165331657,22.575146574041682],[113.15813158131584,22.505914905976496],[113.1617316173162,22.48734055600778],[113.16533165331657,22.478897669658366],[113.19053190531906,22.462011896959538],[113.22653226532265,22.42486319702212],[113.30213302133023,22.3100399426701],[113.31653316533169,22.28977701543151],[113.32733327333273,22.267825510923032],[113.35253352533528,22.24418542914468],[113.36333363333637,22.230676810985614],[113.40293402934032,22.18001949288913],[113.36333363333637,22.171576606539716],[113.35253352533528,22.171576606539716],[113.32373323733236,22.183396647428893],[113.31293312933133,22.18508522469878],[113.30213302133023,22.183396647428893],[113.29853298532987,22.176642338349367],[113.2949329493295,22.168199451999953],[113.28413284132841,22.153002256571014],[113.28053280532805,22.146247947491474],[113.27693276932769,22.141182215681823],[113.27333273332732,22.13780506114206],[113.26253262532629,22.13780506114206],[113.2517325173252,22.115853556633596],[113.24813248132483,22.104033515744405],[113.25533255332556,22.08208201123594],[113.25533255332556,22.071950547616638],[113.2517325173252,22.06013050672746],[113.24813248132483,22.05506477491781],[113.23013230132301,22.043244734028633],[113.21573215732161,22.04493331129852],[113.19413194131943,22.046621888568396],[113.17973179731797,22.041556156758745],[113.15813158131584,22.02467038405993],[113.14013140131402,22.036490424949108],[113.11853118531184,22.065196238537112],[113.11133111331117,22.098967783934768],[113.11493114931153,22.114164979363707],[113.12573125731257,22.131050752062535],[113.11853118531184,22.1445593702216],[113.12573125731257,22.161445142920428],[113.11853118531184,22.171576606539716],[113.11493114931153,22.18677380196867],[113.11133111331117,22.203659574667483],[113.11133111331117,22.218856770096437],[113.08613086130862,22.20703672920726],[113.07893078930789,22.147936524761363],[113.05733057330576,22.120919288443233],[113.02493024930249,22.14287079295171],[113.02133021330212,22.125985020252884],[113.02133021330212,22.100656361204642],[113.01773017730176,22.08208201123594],[113.01773017730176,22.058441929457572],[113.01773017730176,22.03480184767922],[113.01773017730176,22.021293229520154],[113.02133021330212,22.002718879551452],[113.02133021330212,21.984144529582736],[113.01773017730176,21.97739022050321],[113.02133021330212,21.97232448869356],[113.02853028530285,21.960504447804382],[113.02493024930249,21.948684406915206],[113.01773017730176,21.941930097835666],[112.9997299973,21.938552943295903],[112.99612996129963,21.938552943295903],[112.9889298892989,21.93686436602603],[112.98532985329854,21.928421479676615],[112.98532985329854,21.9199785933272],[112.98172981729817,21.906469975168136],[112.97812978129781,21.901404243358485],[112.97092970929708,21.891272779739197],[112.95652956529568,21.876075584310243],[112.92772927729277,21.865944120690955],[112.91332913329137,21.855812657071652],[112.8809288092881,21.87438700704037],[112.870128701287,21.89296135700907],[112.85932859328597,21.931798634216378],[112.85212852128524,21.948684406915206],[112.84132841328415,21.960504447804382],[112.82692826928269,21.965570179614033],[112.8161281612816,21.96219302507427],[112.80892808928093,21.95206156145497],[112.8017280172802,21.946995829645317],[112.78732787327874,21.95206156145497],[112.74412744127443,21.931798634216378],[112.74052740527407,21.925044325136838],[112.7369273692737,21.896338511548834],[112.72972729727297,21.889584202469308],[112.70452704527048,21.891272779739197],[112.70092700927012,21.889584202469308],[112.69732697326975,21.886207047929545],[112.69012690126902,21.87438700704037],[112.68652686526866,21.869321275230718],[112.64332643326435,21.849058347992127],[112.64692646926471,21.822041111673997],[112.63252632526326,21.79502387535588],[112.60732607326077,21.77476094811729],[112.57852578525785,21.766318061767876],[112.549725497255,21.7730723708474],[112.44172441724419,21.828795420753536],[112.42732427324273,21.845681193452364],[112.41652416524164,21.86763269796083],[112.41292412924128,21.901404243358485],[112.42372423724237,21.918290016057313],[112.48132481324814,21.945307252375443],[112.49212492124923,21.965570179614033],[112.4849248492485,21.965570179614033],[112.47052470524704,21.95543871599473],[112.43452434524346,21.945307252375443],[112.4057240572406,21.943618675105554],[112.39132391323915,21.95543871599473],[112.38772387723878,21.963881602344145],[112.37692376923769,21.97739022050321],[112.37692376923769,21.985833106852624],[112.37692376923769,21.994275993202038],[112.38052380523806,22.006096034091215],[112.39132391323915,22.056753352187698],[112.39852398523988,22.068573393076875],[112.37692376923769,22.058441929457572],[112.3661236612366,22.03480184767922],[112.35892358923593,22.006096034091215],[112.35532355323556,21.979078797773084],[112.36972369723696,21.938552943295903],[112.38772387723878,21.908158552438024],[112.39132391323915,21.901404243358485],[112.38772387723878,21.876075584310243],[112.38772387723878,21.862566966151178],[112.39492394923951,21.855812657071652],[112.39852398523988,21.850746925262],[112.40212402124024,21.83723830710295],[112.4057240572406,21.81190964805471],[112.40212402124024,21.801778184435406],[112.39132391323915,21.78489241173658],[112.38772387723878,21.756186598148574],[112.38052380523806,21.74774371179916],[112.37332373323733,21.74267797998951],[112.36252362523624,21.73254651637022],[112.33372333723338,21.724103630020807],[112.2869228692287,21.708906434591853],[112.24372243722439,21.70721785732198],[112.22572225722257,21.729169361830458],[112.21492214922148,21.735923670909983],[112.19692196921972,21.74267797998951],[112.18252182521826,21.75280944360881],[112.18972189721899,21.771383793577513],[112.20052200522008,21.786580989006467],[112.20412204122044,21.806843916245057],[112.20052200522008,21.827106843483648],[112.19332193321935,21.843992616182476],[112.18252182521826,21.823729688943885],[112.17172171721717,21.813598225324583],[112.08532085320854,21.796712452625755],[112.0457204572046,21.79502387535588],[112.02772027720277,21.796712452625755],[112.01332013320132,21.80515533897517],[112.00612006120065,21.818663957134234],[112.01332013320132,21.833861152563173],[112.03852038520387,21.862566966151178],[112.04212042120423,21.884518470659657],[112.0349203492035,21.884518470659657],[112.02052020520205,21.859189811611415],[111.99171991719919,21.833861152563173],[111.970119701197,21.823729688943885],[111.95211952119524,21.864255543421066],[111.93411934119342,21.891272779739197],[111.91251912519124,21.91322428424766],[111.89091890918911,21.925044325136838],[111.88731887318875,21.89971566608861],[111.89091890918911,21.86763269796083],[111.89451894518947,21.83723830710295],[111.90531905319057,21.81528680259447],[111.91971919719197,21.800089607165532],[111.94491944919451,21.786580989006467],[111.97371973719737,21.776449525387164],[111.99891998919992,21.77476094811729],[111.99171991719919,21.764629484497988],[111.9161191611916,21.719037898211155],[111.90531905319057,21.715660743671393],[111.90531905319057,21.708906434591853],[111.90531905319057,21.702152125512328],[111.9017190171902,21.698774970972565],[111.89451894518947,21.695397816432802],[111.88371883718838,21.683577775543625],[111.87651876518765,21.678512043733974],[111.86931869318693,21.676823466464086],[111.84051840518407,21.678512043733974],[111.8369183691837,21.6852663528135],[111.84051840518407,21.698774970972565],[111.85491854918553,21.70721785732198],[111.86931869318693,21.698774970972565],[111.87651876518765,21.698774970972565],[111.87651876518765,21.708906434591853],[111.86931869318693,21.717349320941267],[111.8621186211862,21.720726475481044],[111.8477184771848,21.72579220729068],[111.8369183691837,21.717349320941267],[111.82971829718298,21.729169361830458],[111.82971829718298,21.74943228906905],[111.83331833318334,21.766318061767876],[111.82251822518225,21.75280944360881],[111.8081180811808,21.74267797998951],[111.7937179371794,21.744366557259397],[111.78651786517867,21.759563752688337],[111.76851768517685,21.75280944360881],[111.75771757717575,21.75280944360881],[111.72531725317253,21.766318061767876],[111.72171721717217,21.7629409072281],[111.70011700117004,21.76800663903775],[111.67851678516786,21.781515257196816],[111.69651696516968,21.761252329958225],[111.76131761317612,21.72579220729068],[111.77211772117721,21.70552928005209],[111.77931779317794,21.67513488919421],[111.77211772117721,21.64980623014597],[111.74691746917472,21.64474049833632],[111.76131761317612,21.639674766526667],[111.77211772117721,21.634609034717016],[111.7829178291783,21.62785472563749],[111.78651786517867,21.616034684748314],[111.74691746917472,21.614346107478426],[111.7289172891729,21.616034684748314],[111.71451714517144,21.62278899382784],[111.68931689316895,21.604214643859137],[111.6641166411664,21.558623057572305],[111.649716497165,21.541737284873477],[111.63891638916391,21.533294398524063],[111.63171631716318,21.529917243984286],[111.62091620916209,21.533294398524063],[111.60651606516069,21.54511443941324],[111.59931599315996,21.553557325762654],[111.5957159571596,21.56537736665183],[111.59211592115923,21.575508830271133],[111.58131581315814,21.58226313935066],[111.58131581315814,21.568754521191593],[111.58131581315814,21.555245903032528],[111.5849158491585,21.54342586214335],[111.5957159571596,21.533294398524063],[111.57771577715778,21.529917243984286],[111.55611556115565,21.52316293490476],[111.53811538115383,21.519785780364998],[111.52731527315274,21.533294398524063],[111.52011520115201,21.533294398524063],[111.51651516515165,21.52485151217465],[111.50571505715061,21.51809720309511],[111.48771487714879,21.514720048555347],[111.4769147691477,21.513031471285473],[111.46971469714697,21.51809720309511],[111.4661146611466,21.529917243984286],[111.47331473314733,21.555245903032528],[111.45531455314557,21.551868748492765],[111.44451444514448,21.563688789381942],[111.43371433714339,21.60252606658925],[111.4229142291423,21.590706025700072],[111.4121141211412,21.575508830271133],[111.4121141211412,21.568754521191593],[111.41571415714157,21.556934480302417],[111.43011430114302,21.54342586214335],[111.43731437314375,21.533294398524063],[111.38691386913871,21.541737284873477],[111.36171361713616,21.541737284873477],[111.35091350913513,21.526540089444524],[111.36171361713616,21.531605821254175],[111.37611376113762,21.533294398524063],[111.40491404914053,21.526540089444524],[111.39411394113944,21.519785780364998],[111.36171361713616,21.506277162205933],[111.3581135811358,21.501211430396282],[111.3437134371344,21.48770281223723],[111.29331293312936,21.450554112299812],[111.26811268112681,21.43873407141062],[111.25371253712541,21.44548838049016],[111.26811268112681,21.452242689569687],[111.2789127891279,21.465751307728752],[111.30051300513009,21.499522853126408],[111.2789127891279,21.506277162205933],[111.25731257312572,21.51809720309511],[111.23211232112322,21.52485151217465],[111.2141121411214,21.519785780364998],[111.20691206912068,21.531605821254175],[111.19251192511928,21.531605821254175],[111.15651156511564,21.519785780364998],[111.15651156511564,21.513031471285473],[111.17091170911709,21.513031471285473],[111.16731167311673,21.50796573947582],[111.16371163711636,21.506277162205933],[111.17091170911709,21.499522853126408],[111.18531185311855,21.506277162205933],[111.19971199712,21.50796573947582],[111.2141121411214,21.506277162205933],[111.2249122491225,21.499522853126408],[111.18531185311855,21.486014234967342],[111.160111601116,21.47588277134804],[111.14211142111424,21.465751307728752],[111.13491134911351,21.470817039538403],[111.12051120511205,21.474194194078166],[111.08811088110883,21.472505616808277],[111.08811088110883,21.48094850315769],[111.13131131311314,21.492768544046868],[111.13131131311314,21.499522853126408],[111.12771127711278,21.50290000766617],[111.12411124111242,21.506277162205933],[111.11691116911169,21.501211430396282],[111.1061110611106,21.496145698586645],[111.09891098910992,21.492768544046868],[111.08811088110883,21.492768544046868],[111.0809108091081,21.49783427585652],[111.07731077310774,21.50290000766617],[111.0809108091081,21.50796573947582],[111.07371073710738,21.513031471285473],[111.03411034110343,21.531605821254175],[111.0269102691027,21.541737284873477],[111.02331023310234,21.528228666714412],[111.01251012510124,21.521474357634887],[110.98730987309875,21.513031471285473],[110.99450994509948,21.50796573947582],[111.00171001710021,21.489391389507105],[111.01251012510124,21.486014234967342],[111.00171001710021,21.46237415318899],[110.99090990909912,21.45561984410945],[110.98010980109802,21.452242689569687],[110.98010980109802,21.44548838049016],[110.99450994509948,21.44548838049016],[111.00891008910088,21.450554112299812],[111.01611016110161,21.457308421379338],[111.01971019710197,21.469128462268515],[111.0269102691027,21.479259925887817],[111.04131041310416,21.484325657697454],[111.05931059310592,21.48263708042758],[111.07011070110701,21.472505616808277],[111.04491044910452,21.469128462268515],[111.02331023310234,21.457308421379338],[110.99450994509948,21.42522545325157],[110.96570965709657,21.433668339600985],[110.94050940509408,21.421848298711794],[110.91890918909189,21.406651103282854],[110.8937089370894,21.39820821693344],[110.89010890108904,21.394831062393678],[110.87570875708758,21.386388176044264],[110.86850868508685,21.3830110215045],[110.86850868508685,21.384699598774375],[110.85050850508509,21.389765330584027],[110.8289082890829,21.391453907853915],[110.80730807308072,21.401585371473203],[110.78930789307896,21.40327394874309],[110.76770767707677,21.39820821693344],[110.74250742507428,21.3830110215045],[110.70650706507064,21.349239476106845],[110.68850688506888,21.33066512613813],[110.67770677706778,21.31040219889954],[110.66330663306633,21.285073539851297],[110.6561065610656,21.259744880803055],[110.65250652506523,21.259744880803055],[110.6561065610656,21.3137793534393],[110.66330663306633,21.33741943521767],[110.67770677706778,21.349239476106845],[110.66330663306633,21.347550898836957],[110.6561065610656,21.34248516702732],[110.64890648906493,21.334042280677906],[110.6417064170642,21.322222239788715],[110.6417064170642,21.33741943521767],[110.63450634506347,21.345862321567083],[110.6309063090631,21.35599378518637],[110.63810638106384,21.369502403345436],[110.64530645306456,21.374568135155087],[110.67050670506706,21.381322444234613],[110.69210692106924,21.39989679420333],[110.72450724507246,21.40327394874309],[110.75690756907568,21.413405412362394],[110.76770767707677,21.44548838049016],[110.76050760507604,21.44548838049016],[110.72810728107282,21.41847114417203],[110.63450634506347,21.381322444234613],[110.61650616506165,21.345862321567083],[110.61650616506165,21.301959312550125],[110.62010620106201,21.290139271660948],[110.6417064170642,21.25299057172353],[110.63810638106384,21.229350489945176],[110.61650616506165,21.229350489945176],[110.5769057690577,21.246236262644004],[110.5769057690577,21.241170530834353],[110.58050580505807,21.234416221754827],[110.58410584105843,21.229350489945176],[110.5877058770588,21.225973335405413],[110.47970479704799,21.217530449056],[110.46170461704617,21.21246471724635],[110.44730447304477,21.204021830896934],[110.43290432904331,21.192201790007758],[110.42570425704258,21.192201790007758],[110.42570425704258,21.20571040816681],[110.43650436504367,21.225973335405413],[110.43650436504367,21.239481953564464],[110.43290432904331,21.25130199445364],[110.42570425704258,21.261433458072943],[110.42570425704258,21.269876344422357],[110.43650436504367,21.27325349896212],[110.43650436504367,21.28000780804166],[110.43290432904331,21.283384962581422],[110.42930429304295,21.285073539851297],[110.42570425704258,21.288450694391074],[110.42930429304295,21.288450694391074],[110.43290432904331,21.290139271660948],[110.43290432904331,21.29351642620071],[110.43650436504367,21.29351642620071],[110.44730447304477,21.290139271660948],[110.4581045810458,21.288450694391074],[110.46530465304653,21.283384962581422],[110.47250472504726,21.27325349896212],[110.47970479704799,21.27325349896212],[110.47970479704799,21.281696385311534],[110.48330483304835,21.286762117121185],[110.48690486904871,21.29351642620071],[110.48690486904871,21.301959312550125],[110.47970479704799,21.301959312550125],[110.47250472504726,21.2952050034706],[110.46530465304653,21.296893580740488],[110.4581045810458,21.298582158010362],[110.4437044370444,21.301959312550125],[110.4437044370444,21.307025044359776],[110.48690486904871,21.328976548868255],[110.48690486904871,21.33573085794778],[110.47970479704799,21.33573085794778],[110.47250472504726,21.33573085794778],[110.4689046890469,21.332353703408018],[110.46530465304653,21.328976548868255],[110.46530465304653,21.349239476106845],[110.45090450904507,21.332353703408018],[110.4437044370444,21.3137793534393],[110.43290432904331,21.308713621629664],[110.42570425704258,21.328976548868255],[110.42570425704258,21.34079658975743],[110.43650436504367,21.39820821693344],[110.43290432904331,21.39820821693344],[110.41850418504185,21.37794528969485],[110.40050400504003,21.386388176044264],[110.36810368103681,21.42522545325157],[110.3789037890379,21.437045494140747],[110.38250382503827,21.4421112259504],[110.389703897039,21.44548838049016],[110.389703897039,21.452242689569687],[110.35730357303572,21.43535691687086],[110.37170371703718,21.40327394874309],[110.39330393303936,21.364436671535785],[110.389703897039,21.328976548868255],[110.38610386103863,21.33066512613813],[110.37530375303754,21.33573085794778],[110.38250382503827,21.322222239788715],[110.36810368103681,21.325599394328492],[110.34650346503469,21.339108012487543],[110.32850328503287,21.34248516702732],[110.32850328503287,21.33573085794778],[110.34290342903432,21.33066512613813],[110.35730357303572,21.318845085248952],[110.36450364503645,21.305336467089887],[110.36450364503645,21.29351642620071],[110.36450364503645,21.288450694391074],[110.37530375303754,21.28000780804166],[110.38610386103863,21.271564921692246],[110.39330393303936,21.259744880803055],[110.39690396903973,21.249613417183767],[110.40050400504003,21.246236262644004],[110.40770407704076,21.23779337629459],[110.41130411304113,21.23272764448494],[110.41130411304113,21.224284758135525],[110.40770407704076,21.217530449056],[110.4041040410404,21.21246471724635],[110.4041040410404,21.209087562706586],[110.4041040410404,21.193890367277632],[110.40050400504003,21.177004594578804],[110.39330393303936,21.161807399149865],[110.38610386103863,21.156741667340214],[110.37530375303754,21.15336451280045],[110.34650346503469,21.13310158556186],[110.33210332103323,21.116215812863032],[110.31410314103141,21.10777292651362],[110.28170281702819,21.095952885624442],[110.2709027090271,21.089198576544902],[110.22050220502206,21.03347552663878],[110.22050220502206,21.02840979482913],[110.20970209702097,21.035164103908656],[110.2061020610206,21.04867272206772],[110.20250202502024,21.067247072036437],[110.2061020610206,21.082444267465377],[110.19530195301957,21.0706242265762],[110.1917019170192,21.058804185687023],[110.18450184501847,21.03347552663878],[110.17730177301775,21.019966908479716],[110.15570155701556,20.98619536308206],[110.14130141301416,20.9929496721616],[110.14130141301416,20.98619536308206],[110.15570155701556,20.977752476732647],[110.15570155701556,20.962555281303707],[110.1521015210152,20.94398093133499],[110.14850148501483,20.9237180040964],[110.15570155701556,20.906832231397573],[110.17010170101702,20.876437840539694],[110.17730177301775,20.86292922238063],[110.16650166501665,20.873060685999917],[110.16290162901629,20.876437840539694],[110.15570155701556,20.876437840539694],[110.15930159301593,20.86799495419028],[110.16290162901629,20.86292922238063],[110.15930159301593,20.856174913301103],[110.15570155701556,20.849420604221564],[110.15930159301593,20.84773202695169],[110.16290162901629,20.84773202695169],[110.16290162901629,20.8460434496818],[110.16290162901629,20.84266629514204],[110.17010170101702,20.84266629514204],[110.17010170101702,20.844354872411913],[110.17010170101702,20.8460434496818],[110.17010170101702,20.849420604221564],[110.17730177301775,20.84773202695169],[110.18090180901811,20.8460434496818],[110.18450184501847,20.8460434496818],[110.1917019170192,20.849420604221564],[110.1917019170192,20.8359119860625],[110.21330213302133,20.84097771787215],[110.28890288902892,20.84266629514204],[110.29970299702995,20.852797758761326],[110.32130321303214,20.859552067840866],[110.3357033570336,20.859552067840866],[110.34290342903432,20.84266629514204],[110.350103501035,20.849420604221564],[110.35370353703536,20.839289140602276],[110.36090360903609,20.8359119860625],[110.36450364503645,20.839289140602276],[110.36810368103681,20.849420604221564],[110.38610386103863,20.82578052244321],[110.4041040410404,20.790320399775666],[110.40770407704076,20.751483122568374],[110.39690396903973,20.717711577170718],[110.38250382503827,20.712645845361067],[110.36810368103681,20.719400154440592],[110.35730357303572,20.732908772599657],[110.350103501035,20.746417390758722],[110.34650346503469,20.76161458618766],[110.34650346503469,20.80382901793473],[110.34290342903432,20.82071479063356],[110.33210332103323,20.80551759520462],[110.32850328503287,20.80045186339497],[110.32130321303214,20.793697554315443],[110.33210332103323,20.77850035888649],[110.33210332103323,20.7683688952672],[110.32130321303214,20.759926008917787],[110.30690306903068,20.753171699838248],[110.31410314103141,20.746417390758722],[110.31050310503105,20.744728813488834],[110.30690306903068,20.744728813488834],[110.30690306903068,20.739663081679197],[110.3357033570336,20.726154463520132],[110.32850328503287,20.707580113551415],[110.31050310503105,20.683940031773062],[110.29970299702995,20.656922795454932],[110.30690306903068,20.66029994999471],[110.31410314103141,20.665365681804346],[110.31770317703177,20.670431413613997],[110.32130321303214,20.677185722693537],[110.32850328503287,20.677185722693537],[110.32850328503287,20.66367710453447],[110.32850328503287,20.651857063645295],[110.3249032490325,20.64341417729588],[110.31410314103141,20.63665986821634],[110.3249032490325,20.631594136406704],[110.33930339303396,20.631594136406704],[110.35370353703536,20.63665986821634],[110.36450364503645,20.64341417729588],[110.36450364503645,20.621462672787402],[110.37170371703718,20.634971290946467],[110.3789037890379,20.63328271367658],[110.389703897039,20.626528404597053],[110.39690396903973,20.61639694097775],[110.39330393303936,20.606265477358463],[110.39690396903973,20.59613401373916],[110.40770407704076,20.586002550119858],[110.42570425704258,20.579248241040332],[110.4437044370444,20.57080535469092],[110.45090450904507,20.567428200151156],[110.4581045810458,20.567428200151156],[110.47250472504726,20.569116777421044],[110.47970479704799,20.567428200151156],[110.49410494104944,20.55391958199209],[110.5121051210512,20.52859092294385],[110.53370533705339,20.477933604847365],[110.51570515705157,20.43403059583042],[110.50130501305011,20.412079091321942],[110.48330483304835,20.40363620497253],[110.47610476104762,20.396881895893003],[110.4581045810458,20.36142177322546],[110.40770407704076,20.30569872331934],[110.40050400504003,20.300632991509687],[110.37530375303754,20.30569872331934],[110.36090360903609,20.30569872331934],[110.35370353703536,20.297255836969924],[110.34290342903432,20.278681487001208],[110.32130321303214,20.270238600651794],[110.29250292502928,20.26348429157227],[110.28170281702819,20.253352827952966],[110.26730267302673,20.26348429157227],[110.25650256502564,20.26855002338192],[110.2457024570246,20.27361575519157],[110.23850238502388,20.275304332461445],[110.20970209702097,20.27361575519157],[110.19530195301957,20.270238600651794],[110.1917019170192,20.26348429157227],[110.1917019170192,20.256729982492743],[110.18810188101884,20.253352827952966],[110.1269012690127,20.24828709614333],[110.10890108901089,20.253352827952966],[110.09450094500949,20.270238600651794],[110.08730087300876,20.27361575519157],[110.07650076500767,20.275304332461445],[110.06930069300694,20.276992909731334],[110.06210062100621,20.28374721881086],[110.06210062100621,20.2905015278904],[110.05850058500585,20.295567259700036],[110.04770047700475,20.300632991509687],[110.03690036900372,20.302321568779576],[110.02610026100263,20.300632991509687],[110.02250022500226,20.297255836969924],[110.01170011700117,20.28374721881086],[110.00450004500044,20.280370064271096],[110.00090000900008,20.280370064271096],[109.9936999369994,20.282058641540985],[109.99009990099904,20.285435796080748],[109.9936999369994,20.287124373350622],[109.9648996489965,20.280370064271096],[109.95049950499504,20.271927177921683],[109.94329943299437,20.256729982492743],[109.939699396994,20.251664250683092],[109.93249932499327,20.244909941603566],[109.92529925299255,20.238155632524027],[109.91809918099182,20.239844209793915],[109.91449914499145,20.24828709614333],[109.91809918099182,20.260107137032506],[109.92169921699218,20.270238600651794],[109.92529925299255,20.27361575519157],[109.92889928899291,20.29387868243016],[109.93249932499327,20.317518764208515],[109.92889928899291,20.32596165055793],[109.91809918099182,20.342847423256757],[109.91809918099182,20.35297888687606],[109.8856988569886,20.36648750503511],[109.8748987489875,20.376618968654412],[109.88929889298896,20.383373277733938],[109.86409864098641,20.407013359512305],[109.86409864098641,20.410390514052068],[109.87849878498787,20.410390514052068],[109.88929889298896,20.41376766859183],[109.89289892898933,20.420521977671356],[109.89649896498963,20.43065344129066],[109.90369903699036,20.43065344129066],[109.91449914499145,20.418833400401482],[109.94689946899467,20.395193318623114],[109.95769957699576,20.383373277733938],[109.97569975699759,20.354667464145933],[109.98289982899831,20.35129030960617],[109.98649986499868,20.37155323684476],[109.9936999369994,20.385061855003826],[110.00450004500044,20.401947627702654],[110.01530015300153,20.418833400401482],[110.0081000810008,20.43403059583042],[109.98289982899831,20.452604945799138],[109.97209972099722,20.464424986688314],[109.9648996489965,20.477933604847365],[109.96129961299613,20.47117929576784],[109.96129961299613,20.46611356395819],[109.95769957699576,20.459359254878663],[109.95769957699576,20.45091636852925],[109.94329943299437,20.46104783214855],[109.939699396994,20.474556450307603],[109.93609936099364,20.489753645736556],[109.93249932499327,20.506639418435384],[109.92889928899291,20.47117929576784],[109.92529925299255,20.454293523069012],[109.91809918099182,20.444162059449724],[109.91449914499145,20.457670677608775],[109.91089910899109,20.47117929576784],[109.90369903699036,20.484687913926905],[109.89649896498963,20.49313080027632],[109.88209882098823,20.49819653208597],[109.84969849698496,20.501573686625733],[109.83529835298356,20.506639418435384],[109.82809828098283,20.51170515024502],[109.8208982089821,20.516770882054672],[109.8208982089821,20.523525191134212],[109.8208982089821,20.5336566547535],[109.82449824498246,20.542099541102914],[109.83169831698319,20.543788118372802],[109.83889838898392,20.543788118372802],[109.84249842498429,20.547165272912565],[109.84249842498429,20.557296736531853],[109.84609846098459,20.58093681831022],[109.84969849698496,20.59613401373916],[109.84249842498429,20.59613401373916],[109.82809828098283,20.55391958199209],[109.8208982089821,20.55391958199209],[109.81729817298174,20.589379704659635],[109.80289802898028,20.61639694097775],[109.77409774097742,20.631594136406704],[109.74529745297451,20.629905559136816],[109.75249752497524,20.645102754565755],[109.74889748897488,20.66029994999471],[109.75249752497524,20.67380856815376],[109.7668976689767,20.683940031773062],[109.77409774097742,20.68562860904295],[109.78129781297815,20.683940031773062],[109.78489784897852,20.67887429996341],[109.79569795697955,20.677185722693537],[109.80649806498064,20.67887429996341],[109.81369813698137,20.683940031773062],[109.82809828098283,20.697448649932127],[109.83169831698319,20.69407149539235],[109.83529835298356,20.689005763582713],[109.84249842498429,20.683940031773062],[109.84249842498429,20.689005763582713],[109.84969849698496,20.69576007266224],[109.85329853298532,20.702514381741764],[109.86049860498605,20.704202959011653],[109.86049860498605,20.707580113551415],[109.86049860498605,20.71602299990083],[109.85329853298532,20.719400154440592],[109.82809828098283,20.707580113551415],[109.81369813698137,20.709268690821304],[109.79929799297992,20.70589153628154],[109.79209792097924,20.690694340852588],[109.78849788497888,20.690694340852588],[109.75969759697597,20.729531618059895],[109.7560975609756,20.749794545298485],[109.77409774097742,20.766680317997313],[109.76329763297633,20.776811781616615],[109.75969759697597,20.792008977045555],[109.75969759697597,20.807206172474494],[109.77409774097742,20.813960481554034],[109.77409774097742,20.82071479063356],[109.75249752497524,20.84266629514204],[109.75249752497524,20.849420604221564],[109.75969759697597,20.849420604221564],[109.75969759697597,20.854486336031215],[109.75249752497524,20.86292922238063],[109.74529745297451,20.86799495419028],[109.73809738097384,20.864617799650503],[109.73089730897311,20.854486336031215],[109.73809738097384,20.807206172474494],[109.72729727297275,20.815649058823908],[109.71289712897129,20.834223408792624],[109.70569705697056,20.84266629514204],[109.70569705697056,20.832534831522736],[109.71649716497166,20.807206172474494],[109.6876968769688,20.8359119860625],[109.66609666096662,20.88150357234933],[109.66249662496625,20.927095158636163],[109.69129691296916,20.959178126763945],[109.68049680496807,20.974375322192884],[109.68049680496807,20.994638249431475],[109.69849698496984,21.040229835718307],[109.7020970209702,21.038541258448433],[109.70929709297093,21.035164103908656],[109.71289712897129,21.03347552663878],[109.70929709297093,21.057115608417135],[109.69849698496984,21.082444267465377],[109.68409684096844,21.10608434924373],[109.66969669696698,21.122970121942558],[109.67689676896771,21.13816731737151],[109.69489694896947,21.17025028549928],[109.70569705697056,21.178693171848693],[109.72009720097202,21.183758903658344],[109.72729727297275,21.178693171848693],[109.73809738097384,21.16856170822939],[109.75249752497524,21.163495976419753],[109.74529745297451,21.18038174911858],[109.7560975609756,21.192201790007758],[109.7668976689767,21.204021830896934],[109.77409774097742,21.21584187178611],[109.77049770497706,21.271564921692246],[109.7668976689767,21.28000780804166],[109.7668976689767,21.288450694391074],[109.77409774097742,21.30027073528025],[109.77409774097742,21.318845085248952],[109.7668976689767,21.35599378518637],[109.77769777697779,21.354305207916497],[109.78489784897852,21.347550898836957],[109.78849788497888,21.339108012487543],[109.78849788497888,21.328976548868255],[109.79929799297992,21.332353703408018],[109.80289802898028,21.34079658975743],[109.80289802898028,21.349239476106845],[109.80649806498064,21.35599378518637],[109.81729817298174,21.35768236245626],[109.84249842498429,21.35599378518637],[109.92529925299255,21.36274809426591],[109.92529925299255,21.369502403345436],[109.90369903699036,21.391453907853915],[109.91809918099182,21.413405412362394],[109.939699396994,21.437045494140747],[109.95049950499504,21.458996998649226],[109.93249932499327,21.453931266839575],[109.92529925299255,21.465751307728752],[109.92889928899291,21.479259925887817],[109.94329943299437,21.486014234967342],[109.94329943299437,21.492768544046868],[109.91809918099182,21.489391389507105],[109.8856988569886,21.48094850315769],[109.86049860498605,21.48263708042758],[109.84249842498429,21.506277162205933],[109.82809828098283,21.492768544046868],[109.82809828098283,21.486014234967342],[109.83529835298356,21.486014234967342],[109.83529835298356,21.48094850315769],[109.82809828098283,21.470817039538403],[109.82449824498246,21.465751307728752],[109.8208982089821,21.458996998649226],[109.81369813698137,21.458996998649226],[109.80289802898028,21.472505616808277],[109.79929799297992,21.49783427585652],[109.79929799297992,21.555245903032528],[109.78489784897852,21.546803016683114],[109.77049770497706,21.551868748492765],[109.7668976689767,21.563688789381942],[109.77409774097742,21.575508830271133],[109.77409774097742,21.58226313935066],[109.74889748897488,21.575508830271133],[109.74889748897488,21.573820253001244],[109.74889748897488,21.54511443941324],[109.75969759697597,21.511342894015584],[109.77409774097742,21.492768544046868],[109.77409774097742,21.486014234967342],[109.7668976689767,21.486014234967342],[109.7668976689767,21.492768544046868],[109.75969759697597,21.492768544046868],[109.7416974169742,21.474194194078166],[109.70929709297093,21.48263708042758],[109.6480964809648,21.519785780364998],[109.65889658896589,21.528228666714412],[109.66969669696698,21.56031163484218],[109.67689676896771,21.575508830271133],[109.67329673296734,21.58226313935066],[109.67329673296734,21.597460334779598],[109.66969669696698,21.60252606658925],[109.67329673296734,21.60590322112901],[109.67689676896771,21.609280375668774],[109.67689676896771,21.616034684748314],[109.67689676896771,21.62278899382784],[109.65889658896589,21.614346107478426],[109.63729637296376,21.60083748931936],[109.62649626496267,21.58564029389042],[109.63729637296376,21.568754521191593],[109.63009630096303,21.56706594392172],[109.6228962289623,21.56706594392172],[109.61569615696158,21.57044309846148],[109.60849608496085,21.575508830271133],[109.60849608496085,21.58226313935066],[109.61209612096121,21.589017448430184],[109.61209612096121,21.60083748931936],[109.61209612096121,21.610968952938663],[109.60489604896048,21.616034684748314],[109.60129601296012,21.621100416557965],[109.61569615696158,21.64980623014597],[109.59409594095939,21.634609034717016],[109.58689586895872,21.631231880177253],[109.57969579695799,21.639674766526667],[109.57969579695799,21.64980623014597],[109.57609576095763,21.659937693765258],[109.5688956889569,21.666692002844798],[109.56169561695617,21.671757734654435],[109.56529565295654,21.69202066189304],[109.5688956889569,21.698774970972565],[109.56169561695617,21.70721785732198],[109.5688956889569,21.720726475481044],[109.58329583295836,21.73254651637022],[109.59409594095939,21.740989402719634],[109.59409594095939,21.746055134529286],[109.58329583295836,21.744366557259397],[109.57609576095763,21.746055134529286],[109.5688956889569,21.751120866338923],[109.5688956889569,21.759563752688337],[109.49329493294937,21.698774970972565],[109.49689496894968,21.695397816432802],[109.50049500495004,21.69202066189304],[109.5040950409504,21.688643507353262],[109.50769507695077,21.6852663528135],[109.5040950409504,21.6852663528135],[109.49689496894968,21.6852663528135],[109.49329493294937,21.6852663528135],[109.49329493294937,21.678512043733974],[109.50049500495004,21.68020062100385],[109.5148951489515,21.681889198273737],[109.51849518495186,21.6852663528135],[109.52209522095222,21.66500342557491],[109.50769507695077,21.658249116495384],[109.48609486094864,21.658249116495384],[109.46449464494646,21.66500342557491],[109.46449464494646,21.658249116495384],[109.52929529295295,21.636297611986905],[109.54009540095404,21.626166148367602],[109.54369543695441,21.619411839288077],[109.57249572495726,21.58226313935066],[109.57249572495726,21.575508830271133],[109.56529565295654,21.572131675731356],[109.56169561695617,21.568754521191593],[109.56169561695617,21.536671553063826],[109.56169561695617,21.526540089444524],[109.55809558095581,21.521474357634887],[109.54369543695441,21.50796573947582],[109.54009540095404,21.50290000766617],[109.52929529295295,21.491079966776994],[109.48609486094864,21.474194194078166],[109.47169471694718,21.465751307728752],[109.46809468094682,21.474194194078166],[109.46449464494646,21.48263708042758],[109.46809468094682,21.491079966776994],[109.47169471694718,21.499522853126408],[109.46449464494646,21.492768544046868],[109.45369453694536,21.48263708042758],[109.44649446494464,21.470817039538403],[109.44289442894433,21.46237415318899],[109.43929439294396,21.45561984410945],[109.42489424894251,21.452242689569687],[109.34209342093425,21.453931266839575],[109.33489334893352,21.458996998649226],[109.32049320493206,21.48094850315769],[109.3168931689317,21.458996998649226],[109.29889298892988,21.443799803220273],[109.27729277292775,21.437045494140747],[109.25929259292593,21.44548838049016],[109.2520925209252,21.44042264868051],[109.24849248492484,21.43873407141062],[109.24849248492484,21.437045494140747],[109.24489244892447,21.431979762331096],[109.2376923769238,21.431979762331096],[109.2376923769238,21.458996998649226],[109.2376923769238,21.486014234967342],[109.22689226892271,21.472505616808277],[109.21969219692198,21.448865535029924],[109.21609216092162,21.416782566902157],[109.1728917289173,21.416782566902157],[109.15849158491585,21.423536875981682],[109.14769147691476,21.43873407141062],[109.1440914409144,21.426914030521445],[109.1440914409144,21.41847114417203],[109.14769147691476,21.410028257822617],[109.15489154891549,21.40327394874309],[109.13689136891372,21.401585371473203],[109.09729097290972,21.42522545325157],[109.07569075690759,21.431979762331096],[109.05049050490504,21.437045494140747],[109.039690396904,21.450554112299812],[109.04329043290431,21.465751307728752],[109.06129061290613,21.48094850315769],[109.08289082890832,21.486014234967342],[109.10809108091081,21.489391389507105],[109.13329133291336,21.496145698586645],[109.1440914409144,21.509654316745696],[109.14049140491409,21.553557325762654],[109.13689136891372,21.60252606658925],[109.129691296913,21.60252606658925],[109.12609126091263,21.590706025700072],[109.11529115291154,21.590706025700072],[109.10809108091081,21.597460334779598],[109.10089100891008,21.609280375668774],[109.09369093690935,21.609280375668774],[109.08649086490868,21.599148912049486],[109.07929079290795,21.597460334779598],[109.06849068490686,21.60252606658925],[109.06849068490686,21.616034684748314],[109.06129061290613,21.616034684748314],[109.05769057690577,21.610968952938663],[109.04689046890468,21.60252606658925],[109.05049050490504,21.614346107478426],[109.0540905409054,21.62278899382784],[109.06849068490686,21.636297611986905],[109.06849068490686,21.64474049833632],[109.04689046890468,21.636297611986905],[109.01449014490146,21.616034684748314],[108.99288992889927,21.609280375668774],[108.97128971289715,21.60590322112901],[108.96048960489605,21.60590322112901],[108.9460894608946,21.609280375668774],[108.92808928089283,21.614346107478426],[108.9208892088921,21.62278899382784],[108.90648906489065,21.651494807415844],[108.90288902889029,21.66500342557491],[108.89568895688956,21.671757734654435],[108.8920889208892,21.673446311924323],[108.87408874088743,21.67006915738456],[108.87048870488707,21.671757734654435],[108.85608856088561,21.683577775543625],[108.85608856088561,21.6852663528135],[108.85608856088561,21.693709239162914],[108.85968859688597,21.697086393702676],[108.8668886688867,21.70046354824244],[108.87048870488707,21.70552928005209],[108.86328863288634,21.73254651637022],[108.85968859688597,21.73254651637022],[108.8668886688867,21.739300825449746],[108.8668886688867,21.740989402719634],[108.87048870488707,21.74267797998951],[108.87408874088743,21.746055134529286],[108.88488884888852,21.751120866338923],[108.91728917289174,21.754498020878685],[108.9208892088921,21.7629409072281],[108.92448924489247,21.766318061767876],[108.91728917289174,21.764629484497988],[108.90288902889029,21.7629409072281],[108.89568895688956,21.759563752688337],[108.90288902889029,21.77476094811729],[108.8920889208892,21.771383793577513],[108.88488884888852,21.766318061767876],[108.88128881288816,21.761252329958225],[108.87408874088743,21.754498020878685],[108.87048870488707,21.754498020878685],[108.85968859688597,21.759563752688337],[108.85968859688597,21.766318061767876],[108.8668886688867,21.77476094811729],[108.87408874088743,21.801778184435406],[108.87048870488707,21.801778184435406],[108.85968859688597,21.786580989006467],[108.85608856088561,21.781515257196816],[108.84888848888488,21.791646720816118],[108.84888848888488,21.800089607165532],[108.85608856088561,21.80853249351493],[108.85968859688597,21.81528680259447],[108.84168841688415,21.81190964805471],[108.8020880208802,21.818663957134234],[108.78048780487808,21.81528680259447],[108.7876878768788,21.81022107078482],[108.82008820088203,21.801778184435406],[108.81648816488166,21.796712452625755],[108.81648816488166,21.793335298085992],[108.81648816488166,21.78826956627634],[108.8128881288813,21.781515257196816],[108.83088830888312,21.783203834466704],[108.84168841688415,21.76800663903775],[108.84528845288452,21.744366557259397],[108.83448834488348,21.72579220729068],[108.82728827288275,21.720726475481044],[108.82368823688239,21.715660743671393],[108.81648816488166,21.715660743671393],[108.8128881288813,21.729169361830458],[108.8128881288813,21.740989402719634],[108.8128881288813,21.75280944360881],[108.80568805688057,21.757875175418462],[108.79128791287911,21.754498020878685],[108.79848798487984,21.74774371179916],[108.8020880208802,21.744366557259397],[108.79848798487984,21.73254651637022],[108.79488794887948,21.73761224817987],[108.79128791287911,21.73761224817987],[108.7876878768788,21.740989402719634],[108.79128791287911,21.73254651637022],[108.79128791287911,21.729169361830458],[108.7876878768788,21.72748078456057],[108.78408784087844,21.72748078456057],[108.78048780487808,21.72579220729068],[108.79848798487984,21.72579220729068],[108.79848798487984,21.719037898211155],[108.79128791287911,21.719037898211155],[108.79128791287911,21.71228358913163],[108.81648816488166,21.70046354824244],[108.83448834488348,21.6852663528135],[108.83808838088385,21.668380580114672],[108.82008820088203,21.64474049833632],[108.84168841688415,21.646429075606193],[108.85248852488525,21.646429075606193],[108.85968859688597,21.64474049833632],[108.84888848888488,21.626166148367602],[108.83448834488348,21.62785472563749],[108.81648816488166,21.63798618925678],[108.79488794887948,21.64474049833632],[108.7876878768788,21.641363343796556],[108.78048780487808,21.636297611986905],[108.77688776887771,21.62954330290738],[108.77328773287735,21.62278899382784],[108.76248762487626,21.621100416557965],[108.74448744487444,21.621100416557965],[108.73728737287377,21.616034684748314],[108.74448744487444,21.60252606658925],[108.7336873368734,21.61265753020855],[108.73008730087304,21.62954330290738],[108.72648726487267,21.64474049833632],[108.71208712087122,21.64980623014597],[108.71208712087122,21.658249116495384],[108.7336873368734,21.661626271035146],[108.74088740887407,21.659937693765258],[108.74448744487444,21.64980623014597],[108.75168751687517,21.64980623014597],[108.75168751687517,21.69202066189304],[108.74088740887407,21.683577775543625],[108.74088740887407,21.68020062100385],[108.73728737287377,21.671757734654435],[108.73008730087304,21.671757734654435],[108.71208712087122,21.688643507353262],[108.71568715687158,21.708906434591853],[108.72648726487267,21.729169361830458],[108.72648726487267,21.746055134529286],[108.71928719287195,21.74267797998951],[108.71208712087122,21.746055134529286],[108.70128701287013,21.722415052750918],[108.6940869408694,21.71228358913163],[108.68328683286836,21.70552928005209],[108.67608676086763,21.715660743671393],[108.65448654486545,21.724103630020807],[108.65088650886509,21.73254651637022],[108.65808658086581,21.73254651637022],[108.66528665286654,21.734235093640095],[108.68328683286836,21.740989402719634],[108.68328683286836,21.746055134529286],[108.66528665286654,21.751120866338923],[108.65088650886509,21.74943228906905],[108.64728647286472,21.751120866338923],[108.65088650886509,21.766318061767876],[108.65448654486545,21.778138102657053],[108.66528665286654,21.786580989006467],[108.67248672486727,21.798401029895643],[108.67608676086763,21.81528680259447],[108.6688866888669,21.81528680259447],[108.66528665286654,21.81022107078482],[108.66168661686618,21.801778184435406],[108.65448654486545,21.79502387535588],[108.65088650886509,21.813598225324583],[108.65088650886509,21.822041111673997],[108.64368643686436,21.822041111673997],[108.64368643686436,21.81022107078482],[108.64368643686436,21.796712452625755],[108.64008640086399,21.78489241173658],[108.63648636486369,21.77476094811729],[108.62928629286296,21.77476094811729],[108.62208622086223,21.783203834466704],[108.62208622086223,21.78826956627634],[108.6148861488615,21.78826956627634],[108.6256862568626,21.76800663903775],[108.62928629286296,21.756186598148574],[108.62928629286296,21.746055134529286],[108.59328593285932,21.740989402719634],[108.59328593285932,21.754498020878685],[108.59688596885968,21.766318061767876],[108.60768607686077,21.78826956627634],[108.57888578885792,21.781515257196816],[108.56808568085683,21.79502387535588],[108.57168571685719,21.813598225324583],[108.58248582485828,21.822041111673997],[108.60048600486004,21.83048399802341],[108.62208622086223,21.871009852500592],[108.63648636486369,21.884518470659657],[108.63648636486369,21.889584202469308],[108.62208622086223,21.896338511548834],[108.59328593285932,21.918290016057313],[108.59328593285932,21.911535706977787],[108.59328593285932,21.906469975168136],[108.58968589685895,21.903092820628373],[108.58608586085865,21.898027088818722],[108.58248582485828,21.89971566608861],[108.57888578885792,21.901404243358485],[108.56808568085683,21.904781397898248],[108.57168571685719,21.901404243358485],[108.57528575285755,21.89971566608861],[108.58248582485828,21.898027088818722],[108.57168571685719,21.89296135700907],[108.5608856088561,21.89464993427896],[108.55368553685537,21.903092820628373],[108.55368553685537,21.918290016057313],[108.55728557285573,21.923355747866964],[108.56808568085683,21.928421479676615],[108.57528575285755,21.93517578875614],[108.57168571685719,21.95206156145497],[108.56808568085683,21.95206156145497],[108.56808568085683,21.948684406915206],[108.56808568085683,21.941930097835666],[108.56808568085683,21.938552943295903],[108.5608856088561,21.938552943295903],[108.55728557285573,21.941930097835666],[108.55368553685537,21.95206156145497],[108.550085500855,21.93517578875614],[108.54648546485464,21.923355747866964],[108.53928539285391,21.91491286151755],[108.52488524885251,21.904781397898248],[108.52128521285215,21.906469975168136],[108.50688506885069,21.911535706977787],[108.50688506885069,21.904781397898248],[108.51048510485106,21.901404243358485],[108.51408514085142,21.898027088818722],[108.51408514085142,21.89464993427896],[108.51768517685178,21.889584202469308],[108.50328503285033,21.886207047929545],[108.48528485284857,21.87776416158013],[108.47808478084784,21.865944120690955],[108.49248492484924,21.855812657071652],[108.46368463684638,21.862566966151178],[108.46008460084602,21.88789562519942],[108.47808478084784,21.945307252375443],[108.47088470884711,21.94024152056579],[108.46368463684638,21.933487211486252],[108.46008460084602,21.926732902406727],[108.45648456484565,21.918290016057313],[108.45648456484565,21.88789562519942],[108.44928449284492,21.865944120690955],[108.45648456484565,21.849058347992127],[108.47088470884711,21.8321725752933],[108.48528485284857,21.822041111673997],[108.4816848168482,21.822041111673997],[108.47088470884711,21.822041111673997],[108.47088470884711,21.816975379864346],[108.47448474484747,21.813598225324583],[108.47448474484747,21.81190964805471],[108.47808478084784,21.80853249351493],[108.48888488884887,21.81528680259447],[108.4960849608496,21.80853249351493],[108.50328503285033,21.798401029895643],[108.50688506885069,21.78826956627634],[108.50328503285033,21.776449525387164],[108.4960849608496,21.76800663903775],[108.49248492484924,21.757875175418462],[108.49248492484924,21.740989402719634],[108.4816848168482,21.744366557259397],[108.47448474484747,21.744366557259397],[108.47088470884711,21.74267797998951],[108.46368463684638,21.740989402719634],[108.47448474484747,21.735923670909983],[108.48528485284857,21.73254651637022],[108.4960849608496,21.72579220729068],[108.50688506885069,21.719037898211155],[108.50688506885069,21.71228358913163],[108.49248492484924,21.71228358913163],[108.49248492484924,21.708906434591853],[108.49248492484924,21.70552928005209],[108.4960849608496,21.70552928005209],[108.49248492484924,21.70552928005209],[108.47808478084784,21.70552928005209],[108.47808478084784,21.698774970972565],[108.48528485284857,21.697086393702676],[108.4960849608496,21.693709239162914],[108.50688506885069,21.69202066189304],[108.50688506885069,21.6852663528135],[108.49968499684996,21.68020062100385],[108.50328503285033,21.678512043733974],[108.50688506885069,21.671757734654435],[108.51408514085142,21.70046354824244],[108.52128521285215,21.71228358913163],[108.53208532085324,21.719037898211155],[108.53208532085324,21.71059501186174],[108.52488524885251,21.70552928005209],[108.52128521285215,21.702152125512328],[108.51768517685178,21.698774970972565],[108.51768517685178,21.688643507353262],[108.52128521285215,21.68020062100385],[108.51768517685178,21.671757734654435],[108.52488524885251,21.67513488919421],[108.52848528485288,21.678512043733974],[108.53208532085324,21.68020062100385],[108.53208532085324,21.6852663528135],[108.5356853568536,21.6852663528135],[108.53928539285391,21.683577775543625],[108.53928539285391,21.678512043733974],[108.54288542885428,21.683577775543625],[108.55368553685537,21.698774970972565],[108.5608856088561,21.698774970972565],[108.56448564485646,21.678512043733974],[108.55728557285573,21.671757734654435],[108.54648546485464,21.666692002844798],[108.53928539285391,21.64980623014597],[108.550085500855,21.656560539225495],[108.55368553685537,21.658249116495384],[108.54648546485464,21.64305192106643],[108.5356853568536,21.63798618925678],[108.52488524885251,21.639674766526667],[108.51048510485106,21.64474049833632],[108.51048510485106,21.636297611986905],[108.51768517685178,21.634609034717016],[108.52128521285215,21.632920457447142],[108.52488524885251,21.631231880177253],[108.53208532085324,21.62954330290738],[108.53208532085324,21.621100416557965],[108.52848528485288,21.614346107478426],[108.52128521285215,21.610968952938663],[108.51048510485106,21.609280375668774],[108.51768517685178,21.599148912049486],[108.51768517685178,21.595771757509723],[108.48888488884887,21.583951716620533],[108.4816848168482,21.58226313935066],[108.4816848168482,21.58732887116031],[108.4816848168482,21.599148912049486],[108.48888488884887,21.6075917983989],[108.50688506885069,21.60252606658925],[108.50688506885069,21.609280375668774],[108.49248492484924,21.62278899382784],[108.47808478084784,21.60590322112901],[108.47088470884711,21.60083748931936],[108.46368463684638,21.595771757509723],[108.47088470884711,21.58732887116031],[108.47088470884711,21.58057456208077],[108.46728467284674,21.577197407541007],[108.45648456484565,21.575508830271133],[108.45648456484565,21.568754521191593],[108.46008460084602,21.56706594392172],[108.47088470884711,21.568754521191593],[108.47088470884711,21.562000212112068],[108.42048420484207,21.556934480302417],[108.40248402484025,21.56031163484218],[108.38808388083879,21.575508830271133],[108.39168391683916,21.595771757509723],[108.40608406084061,21.60083748931936],[108.42048420484207,21.594083180239835],[108.4168841688417,21.58226313935066],[108.43128431284316,21.583951716620533],[108.43848438484383,21.594083180239835],[108.4420844208442,21.62278899382784],[108.43848438484383,21.62278899382784],[108.43128431284316,21.61772326201819],[108.4276842768428,21.616034684748314],[108.42408424084243,21.619411839288077],[108.4168841688417,21.62278899382784],[108.4168841688417,21.62954330290738],[108.42048420484207,21.634609034717016],[108.4276842768428,21.639674766526667],[108.43488434884353,21.641363343796556],[108.4420844208442,21.64474049833632],[108.4420844208442,21.651494807415844],[108.44928449284492,21.658249116495384],[108.46008460084602,21.661626271035146],[108.47088470884711,21.66500342557491],[108.47088470884711,21.671757734654435],[108.42408424084243,21.66331484830502],[108.40968409684098,21.66500342557491],[108.42408424084243,21.68020062100385],[108.4276842768428,21.686954930083388],[108.42408424084243,21.698774970972565],[108.42048420484207,21.693709239162914],[108.41328413284134,21.6852663528135],[108.40968409684098,21.678512043733974],[108.40968409684098,21.683577775543625],[108.40608406084061,21.683577775543625],[108.40248402484025,21.6852663528135],[108.39888398883988,21.673446311924323],[108.38448384483848,21.673446311924323],[108.33768337683375,21.697086393702676],[108.33768337683375,21.70721785732198],[108.34128341283412,21.72579220729068],[108.32328323283235,21.708906434591853],[108.31248312483126,21.681889198273737],[108.31248312483126,21.651494807415844],[108.32688326883272,21.62954330290738],[108.30528305283053,21.62954330290738],[108.31248312483126,21.619411839288077],[108.31248312483126,21.616034684748314],[108.30528305283053,21.61265753020855],[108.30168301683017,21.6075917983989],[108.2980829808298,21.599148912049486],[108.29448294482944,21.589017448430184],[108.3088830888309,21.589017448430184],[108.31248312483126,21.589017448430184],[108.31248312483126,21.58226313935066],[108.3088830888309,21.578885984810896],[108.29088290882908,21.563688789381942],[108.28728287282871,21.558623057572305],[108.2836828368284,21.54511443941324],[108.27648276482768,21.54004870760359],[108.26928269282695,21.5383601303337],[108.25848258482586,21.533294398524063],[108.22608226082264,21.50796573947582],[108.21168211682118,21.501211430396282],[108.21168211682118,21.513031471285473],[108.21888218882191,21.529917243984286],[108.2440824408244,21.563688789381942],[108.25128251282513,21.58226313935066],[108.25128251282513,21.589017448430184],[108.25128251282513,21.595771757509723],[108.24768247682476,21.60252606658925],[108.24048240482404,21.61265753020855],[108.22608226082264,21.626166148367602],[108.22608226082264,21.631231880177253],[108.23688236882367,21.64474049833632],[108.21528215282154,21.634609034717016],[108.21168211682118,21.62954330290738],[108.20808208082082,21.632920457447142],[108.21168211682118,21.64474049833632],[108.20448204482045,21.64305192106643],[108.20088200882009,21.63798618925678],[108.19728197281972,21.636297611986905],[108.20448204482045,21.631231880177253],[108.20808208082082,21.624477571097728],[108.20808208082082,21.616034684748314],[108.20448204482045,21.609280375668774],[108.20448204482045,21.60252606658925],[108.21168211682118,21.60252606658925],[108.1756817568176,21.575508830271133],[108.15768157681578,21.572131675731356],[108.13608136081359,21.58226313935066],[108.12888128881292,21.575508830271133],[108.13248132481328,21.56537736665183],[108.12888128881292,21.562000212112068],[108.12168121681219,21.56706594392172],[108.11448114481146,21.575508830271133],[108.10728107281074,21.558623057572305],[108.09288092880928,21.558623057572305],[108.07848078480788,21.563688789381942],[108.06768067680679,21.562000212112068],[108.07848078480788,21.54511443941324],[108.07128071280715,21.536671553063826],[108.0568805688057,21.536671553063826],[108.0316803168032,21.551868748492765],[108.01728017280175,21.555245903032528],[108.00288002880029,21.553557325762654],[107.9920799207992,21.548491593953003],[108.02808028080284,21.52316293490476],[108.03888038880388,21.519785780364998],[108.01728017280175,21.519785780364998],[108.01008010080102,21.506277162205933],[108.01368013680138,21.492768544046868],[108.02088020880211,21.486014234967342],[108.03528035280351,21.48770281223723],[108.0460804608046,21.492768544046868],[108.06048060480606,21.496145698586645],[108.08208082080824,21.492768544046868],[108.08208082080824,21.486014234967342],[108.04248042480424,21.48094850315769],[108.01728017280175,21.470817039538403],[107.97047970479707,21.431979762331096],[107.96327963279634,21.431979762331096],[107.96687966879671,21.447176957760036],[107.97407974079744,21.4606855759191],[107.9920799207992,21.48094850315769],[107.9920799207992,21.486014234967342],[107.97047970479707,21.47588277134804],[107.94887948879489,21.45561984410945],[107.93087930879312,21.4421112259504],[107.91647916479167,21.458996998649226],[107.91647916479167,21.46743988499864],[107.92007920079203,21.474194194078166],[107.92727927279276,21.479259925887817],[107.93087930879312,21.48263708042758],[107.92727927279276,21.491079966776994],[107.92727927279276,21.496145698586645],[107.9236792367924,21.499522853126408],[107.9236792367924,21.50290000766617],[107.92007920079203,21.51809720309511],[107.90927909279094,21.526540089444524],[107.89847898478985,21.531605821254175],[107.88047880478808,21.533294398524063],[107.88407884078839,21.526540089444524],[107.88407884078839,21.52316293490476],[107.87687876878772,21.513031471285473],[107.86967869678699,21.513031471285473],[107.86247862478626,21.529917243984286],[107.85527855278553,21.521474357634887],[107.8480784807848,21.492768544046868],[107.83727837278371,21.48770281223723],[107.83007830078304,21.494457121316756],[107.82647826478268,21.509654316745696],[107.82647826478268,21.526540089444524],[107.81927819278195,21.526540089444524],[107.81207812078122,21.519785780364998],[107.81207812078122,21.513031471285473],[107.81567815678159,21.509654316745696],[107.81927819278195,21.506277162205933],[107.81927819278195,21.492768544046868],[107.81207812078122,21.492768544046868],[107.80847808478086,21.506277162205933],[107.80127801278013,21.499522853126408],[107.79767797677977,21.519785780364998],[107.78327783277831,21.52485151217465],[107.76527765277655,21.519785780364998],[107.75087750877509,21.513031471285473],[107.75087750877509,21.506277162205933],[107.76887768877691,21.506277162205933],[107.779677796778,21.50290000766617],[107.78687786877867,21.494457121316756],[107.7940779407794,21.48094850315769],[107.779677796778,21.486014234967342],[107.779677796778,21.479259925887817],[107.78327783277831,21.465751307728752],[107.78687786877867,21.458996998649226],[107.77607776077764,21.458996998649226],[107.76887768877691,21.45561984410945],[107.76167761677618,21.450554112299812],[107.75807758077582,21.44548838049016],[107.76527765277655,21.43873407141062],[107.74727747277473,21.411716835092506],[107.72927729277296,21.411716835092506],[107.72207722077223,21.411716835092506],[107.71847718477187,21.406651103282854],[107.71127711277114,21.39820821693344],[107.69687696876969,21.39820821693344],[107.68247682476823,21.40327394874309],[107.67527675276756,21.411716835092506],[107.66807668076683,21.411716835092506],[107.66447664476647,21.406651103282854],[107.66447664476647,21.40327394874309],[107.66447664476647,21.39820821693344],[107.66807668076683,21.384699598774375],[107.66447664476647,21.37794528969485],[107.65007650076501,21.37625671242496],[107.63567635676355,21.3830110215045],[107.63567635676355,21.37794528969485],[107.63567635676355,21.37625671242496],[107.63927639276392,21.374568135155087],[107.64287642876428,21.369502403345436],[107.64287642876428,21.36274809426591],[107.63567635676355,21.359370939726148],[107.63207632076319,21.354305207916497],[107.63567635676355,21.349239476106845],[107.64287642876428,21.34248516702732],[107.63567635676355,21.34079658975743],[107.62127621276215,21.33573085794778],[107.62487624876252,21.334042280677906],[107.62847628476288,21.334042280677906],[107.62847628476288,21.332353703408018],[107.62847628476288,21.328976548868255],[107.62487624876252,21.33066512613813],[107.6068760687607,21.33573085794778],[107.60327603276033,21.31040219889954],[107.59967599675997,21.298582158010362],[107.58887588875888,21.29351642620071],[107.57447574475748,21.2952050034706],[107.56367563675639,21.298582158010362],[107.5528755287553,21.305336467089887],[107.54567545675457,21.31546793070919],[107.5420754207542,21.327287971598366],[107.5420754207542,21.33741943521767],[107.53487534875347,21.345862321567083],[107.52407524075244,21.349239476106845],[107.52047520475207,21.344173744297194],[107.5276752767528,21.334042280677906],[107.5276752767528,21.323910817058604],[107.52407524075244,21.31546793070919],[107.52407524075244,21.307025044359776],[107.53847538475384,21.301959312550125],[107.5276752767528,21.298582158010362],[107.50607506075062,21.298582158010362],[107.48447484474843,21.301959312550125],[107.48087480874807,21.301959312550125],[107.4736747367474,21.303647889820013],[107.4628746287463,21.308713621629664],[107.45567455674558,21.318845085248952],[107.45207452074521,21.32053366251884],[107.41607416074163,21.328976548868255],[107.4088740887409,21.31546793070919],[107.41607416074163,21.308713621629664],[107.44487444874449,21.29351642620071],[107.44487444874449,21.288450694391074],[107.42327423274236,21.28000780804166],[107.39087390873908,21.28000780804166],[107.36567365673659,21.27325349896212],[107.36567365673659,21.266499189882595],[107.37287372873732,21.259744880803055],[107.36927369273695,21.25299057172353],[107.36567365673659,21.24792483991388],[107.36207362073623,21.239481953564464],[107.35847358473586,21.202333253627046],[107.3548735487355,21.192201790007758],[107.36207362073623,21.185447480928218],[107.36927369273695,21.182070326388455],[107.38007380073805,21.18038174911858],[107.38727387273872,21.185447480928218],[107.38367383673835,21.139855894641386],[107.37647376473768,21.116215812863032],[107.36207362073623,21.102707194703967],[107.36567365673659,21.094264308354553],[107.36567365673659,21.087509999275028],[107.36207362073623,21.084132844735265],[107.3548735487355,21.082444267465377],[107.35847358473586,21.067247072036437],[107.36207362073623,21.052049876607484],[107.36567365673659,21.040229835718307],[107.37287372873732,21.03347552663878],[107.37287372873732,21.02840979482913],[107.35847358473586,21.014901176670065],[107.34767347673477,21.00983544486043],[107.33327333273331,21.00645829032065],[107.31167311673119,21.004769713050777],[107.29367293672937,21.004769713050777],[107.27927279272797,20.999703981241126],[107.26487264872651,21.004769713050777],[107.24687246872469,21.00308113578089],[107.22527225272256,20.998015403971237],[107.2108721087211,20.9929496721616],[107.21807218072183,20.989572517621824],[107.21807218072183,20.98788394035195],[107.22527225272256,20.98619536308206],[107.23247232472323,20.98619536308206],[107.23247232472323,20.979441054002535],[107.21447214472147,20.976063899462773],[107.19287192871928,20.952423817684405],[107.19647196471965,20.937226622255466],[107.18207182071819,20.937226622255466],[107.17127171271716,20.933849467715703],[107.16047160471607,20.932160890445815],[107.14967149671497,20.937226622255466],[107.14967149671497,20.93047231317594],[107.13527135271352,20.94398093133499],[107.08487084870848,20.95073524041453],[107.06687066870671,20.959178126763945],[107.06687066870671,20.964243858573596],[107.09567095670957,20.999703981241126],[107.14967149671497,21.03347552663878],[107.14967149671497,21.040229835718307],[107.13527135271352,21.040229835718307],[107.12447124471248,21.036852681178544],[107.11007110071102,21.03347552663878],[107.1028710287103,21.02840979482913],[107.09567095670957,21.021655485749605],[107.09567095670957,21.014901176670065],[107.0920709207092,21.00814686759054],[107.08487084870848,21.00645829032065],[107.08127081270811,21.00983544486043],[107.08127081270811,21.016589753939954],[107.08487084870848,21.02334406301948],[107.08847088470884,21.02840979482913],[107.08127081270811,21.03009837209902],[107.08127081270811,21.031786949368893],[107.08127081270811,21.03347552663878],[107.07407074070744,21.016589753939954],[107.06327063270635,21.00983544486043],[107.05607056070562,21.01321259940019],[107.05967059670598,21.03347552663878],[107.05247052470526,21.03347552663878],[107.05247052470526,21.02334406301948],[107.05247052470526,21.01321259940019],[107.04887048870489,21.00645829032065],[107.04527045270453,20.999703981241126],[107.04527045270453,21.01321259940019],[107.04527045270453,21.025032640289368],[107.0380703807038,21.031786949368893],[107.02727027270276,21.03347552663878],[107.02727027270276,21.02840979482913],[107.03087030870307,21.025032640289368],[107.03447034470344,21.018278331209842],[107.0380703807038,21.01321259940019],[107.03447034470344,21.01321259940019],[107.02727027270276,21.01321259940019],[107.0380703807038,20.999703981241126],[107.0236702367024,20.999703981241126],[107.01647016470167,21.004769713050777],[106.99846998469985,21.019966908479716],[106.99486994869949,21.00645829032065],[107.02007020070204,20.98619536308206],[107.02727027270276,20.972686744922996],[107.01647016470167,20.957489549494056],[107.00207002070022,20.95073524041453],[106.98046980469803,20.95073524041453],[106.96246962469627,20.95073524041453],[106.94806948069481,20.954112394954294],[106.93366933669336,20.959178126763945],[106.91926919269196,20.96593243584347],[106.90846908469086,20.972686744922996],[106.88326883268832,20.9929496721616],[106.87246872468728,20.996326826701363],[106.86886868868692,20.98619536308206],[106.86526865268655,20.991261094891712],[106.86166861668619,20.9929496721616],[106.85446854468546,20.9929496721616],[106.88326883268832,20.96086670403382],[106.89406894068941,20.95073524041453],[106.91566915669159,20.94060377679523],[106.92286922869232,20.937226622255466],[106.92646926469268,20.93047231317594],[106.92646926469268,20.922029426826526],[106.93366933669336,20.915275117746987],[106.94446944469445,20.91020938593735],[106.94446944469445,20.90345507685781],[106.91566915669159,20.90345507685781],[106.90126901269014,20.90852080866746],[106.89046890468904,20.91865227228675],[106.88326883268832,20.937226622255466],[106.87606876068764,20.937226622255466],[106.87606876068764,20.928783735906052],[106.87966879668795,20.922029426826526],[106.88326883268832,20.915275117746987],[106.88686886868868,20.91020938593735],[106.86886868868692,20.88319214961922],[106.86166861668619,20.889946458698745],[106.8508685086851,20.91020938593735],[106.83286832868328,20.9237180040964],[106.83646836468364,20.928783735906052],[106.83646836468364,20.93047231317594],[106.83286832868328,20.937226622255466],[106.8256682566826,20.937226622255466],[106.80766807668078,20.932160890445815],[106.78246782467824,20.942292354065117],[106.7716677166772,20.957489549494056],[106.78966789667896,20.964243858573596],[106.80766807668078,20.96593243584347],[106.81846818468188,20.969309590383233],[106.82206822068224,20.976063899462773],[106.81846818468188,20.98619536308206],[106.81126811268115,20.991261094891712],[106.80406804068042,20.994638249431475],[106.80046800468006,21.001392558511014],[106.81126811268115,21.01321259940019],[106.80406804068042,21.019966908479716],[106.79686796867969,21.025032640289368],[106.78966789667896,21.026721217559242],[106.77886778867787,21.02840979482913],[106.78246782467824,21.02334406301948],[106.78246782467824,21.016589753939954],[106.7860678606786,21.01321259940019],[106.76086760867611,21.014901176670065],[106.74646746467465,21.025032640289368],[106.7320673206732,21.03009837209902],[106.71046710467107,21.019966908479716],[106.71046710467107,21.01321259940019],[106.7176671766718,21.01321259940019],[106.7176671766718,21.00645829032065],[106.68166681666816,21.019966908479716],[106.66006660066603,21.025032640289368],[106.64206642066421,21.019966908479716],[106.64926649266494,21.018278331209842],[106.6528665286653,21.018278331209842],[106.68166681666816,21.00645829032065],[106.68166681666816,20.999703981241126],[106.67806678066779,21.001392558511014],[106.65646656466566,21.00645829032065],[106.65646656466566,20.999703981241126],[106.66726667266676,20.991261094891712],[106.67086670866712,20.979441054002535],[106.67086670866712,20.969309590383233],[106.67806678066779,20.959178126763945],[106.68526685266852,20.952423817684405],[106.71046710467107,20.95073524041453],[106.7320673206732,20.942292354065117],[106.74646746467465,20.942292354065117],[106.75366753667538,20.938915199525354],[106.75726757267574,20.920340849556638],[106.75726757267574,20.90852080866746],[106.74646746467465,20.895012190508396],[106.74286742867429,20.88319214961922],[106.73926739267392,20.88319214961922],[106.7176671766718,20.90345507685781],[106.69966699666998,20.88319214961922],[106.7068670686707,20.871372108730043],[106.72846728467283,20.86124064511074],[106.74286742867429,20.849420604221564],[106.75366753667538,20.82578052244321],[106.75006750067502,20.80382901793473],[106.73566735667356,20.795386131585317],[106.7176671766718,20.807206172474494],[106.72486724867252,20.790320399775666],[106.73926739267392,20.770057472537076],[106.75726757267574,20.751483122568374],[106.7716677166772,20.739663081679197],[106.77886778867787,20.746417390758722],[106.78966789667896,20.731220195329783],[106.80766807668078,20.677185722693537],[106.7860678606786,20.692382918122476],[106.77526775267756,20.70082580447189],[106.7716677166772,20.707580113551415],[106.76806768067684,20.712645845361067],[106.75726757267574,20.709268690821304],[106.74646746467465,20.702514381741764],[106.74286742867429,20.697448649932127],[106.7320673206732,20.69576007266224],[106.72486724867252,20.69407149539235],[106.7176671766718,20.690694340852588],[106.70326703267034,20.690694340852588],[106.67446674466748,20.699137227202],[106.66366663666639,20.697448649932127],[106.66366663666639,20.690694340852588],[106.68886688866888,20.6805628772333],[106.70326703267034,20.672119990883886],[106.70326703267034,20.66029994999471],[106.68166681666816,20.64341417729588],[106.67086670866712,20.63665986821634],[106.6528665286653,20.631594136406704],[106.63846638466384,20.628216981866927],[106.62046620466208,20.629905559136816],[106.61326613266135,20.634971290946467],[106.5988659886599,20.655234218185058],[106.5880658806588,20.66367710453447],[106.59166591665917,20.648479909105518],[106.59526595265953,20.646791331835644],[106.5988659886599,20.63834844548623],[106.61326613266135,20.621462672787402],[106.62046620466208,20.61808551824764],[106.62406624066244,20.61808551824764],[106.62766627666275,20.61639694097775],[106.62766627666275,20.606265477358463],[106.62766627666275,20.599511168278923],[106.62406624066244,20.59444543646927],[106.62046620466208,20.59106828192951],[106.60606606066062,20.584313972849984],[106.58086580865807,20.565739622881267],[106.519665196652,20.540410963833025],[106.53766537665376,20.53196807748361],[106.55206552065522,20.53196807748361],[106.58086580865807,20.547165272912565],[106.58086580865807,20.540410963833025],[106.56646566465668,20.525213768404086],[106.5736657366574,20.510016572975147],[106.58446584465844,20.49650795481608],[106.58086580865807,20.477933604847365],[106.5736657366574,20.477933604847365],[106.54486544865449,20.467802141228077],[106.54126541265413,20.46611356395819],[106.53766537665376,20.462736409418426],[106.53046530465303,20.454293523069012],[106.52326523265236,20.445850636719598],[106.519665196652,20.437407750370184],[106.52326523265236,20.437407750370184],[106.53766537665376,20.445850636719598],[106.56286562865631,20.454293523069012],[106.58446584465844,20.457670677608775],[106.59526595265953,20.447539213989486],[106.59166591665917,20.405324782242417],[106.58446584465844,20.381684700464064],[106.5736657366574,20.368176082305],[106.56646566465668,20.378307545924287],[106.56646566465668,20.383373277733938],[106.56646566465668,20.378307545924287],[106.56646566465668,20.376618968654412],[106.56286562865631,20.374930391384524],[106.55926559265595,20.376618968654412],[106.57726577265771,20.359733195955585],[106.58086580865807,20.349601732336282],[106.58446584465844,20.337781691447105],[106.58446584465844,20.322584496018166],[106.5880658806588,20.30401014604945],[106.59166591665917,20.275304332461445],[106.58086580865807,20.26348429157227],[106.55926559265595,20.287124373350622],[106.54846548465486,20.298944414239813],[106.53766537665376,20.3090758778591],[106.52326523265236,20.314141609668752],[106.50526505265054,20.3090758778591],[106.49806498064981,20.3090758778591],[106.50166501665018,20.300632991509687],[106.50526505265054,20.297255836969924],[106.51246512465127,20.29387868243016],[106.519665196652,20.298944414239813],[106.52326523265236,20.3090758778591],[106.54846548465486,20.292190105160273],[106.55206552065522,20.287124373350622],[106.55566555665558,20.276992909731334],[106.56646566465668,20.26179571430238],[106.5736657366574,20.24659851887344],[106.57006570065704,20.2314013234445],[106.55566555665558,20.22464701436496],[106.54126541265413,20.22633559163485],[106.53046530465303,20.222958437095087],[106.50526505265054,20.216204128015548],[106.47286472864732,20.214515550745674],[106.45846458464587,20.21113839620591],[106.39366393663937,20.20438408712637],[106.39366393663937,20.21113839620591],[106.4008640086401,20.21113839620591],[106.4008640086401,20.217892705285436],[106.39366393663937,20.217892705285436],[106.390063900639,20.216204128015548],[106.37926379263791,20.21113839620591],[106.37926379263791,20.20438408712637],[106.38646386463864,20.197629778046846],[106.38286382863828,20.192564046237194],[106.36126361263615,20.18412115988778],[106.35406354063542,20.177366850808255],[106.33966339663397,20.150349614490125],[106.30726307263075,20.108135182743055],[106.2820628206282,20.094626564584004],[106.26046260462607,20.06085501918635],[106.23526235262352,20.047346401027283],[106.2136621366214,20.02201774197904],[106.19566195661957,20.013574855629628],[106.20646206462067,20.035526360138107],[106.21006210062103,20.040592091947758],[106.2028620286203,20.047346401027283],[106.19566195661957,20.03383778286822],[106.18486184861848,20.00344339201034],[106.17766177661775,19.99162335112115],[106.15966159661599,19.984869042041623],[106.12366123661235,19.97473757842232],[106.10566105661059,19.964606114803033],[106.10206102061022,19.979803310231972],[106.10566105661059,19.9966890829308],[106.10926109261095,20.013574855629628],[106.11286112861131,20.03383778286822],[106.10566105661059,20.03383778286822],[106.10566105661059,20.01695201016939],[106.08766087660877,19.973049001152447],[106.0840608406084,19.964606114803033],[106.069660696607,19.967983269342795],[106.05166051660518,19.978114732962098],[106.04086040860409,19.988246196581386],[106.03366033660336,19.99837766020069],[106.02646026460263,19.99837766020069],[106.01926019260196,19.98655761931151],[106.00846008460087,19.973049001152447],[105.96525965259656,19.935900301215028],[105.95445954459547,19.925768837595726],[105.9508595085951,19.910571642166786],[105.9508595085951,19.900440178547484],[105.95805958059583,19.885242983118545],[105.95805958059583,19.875111519499242],[105.93645936459365,19.848094283181126],[105.93285932859328,19.832897087752187],[105.93285932859328,19.805879851434057],[105.92925929259292,19.79405981054488],[105.92565925659255,19.797436965084643],[105.91485914859152,19.807568428703945],[105.90765907659079,19.797436965084643],[105.89325893258933,19.787305501465354],[105.86805868058684,19.77379688330629],[105.87525875258751,19.765353996956875],[105.8860588605886,19.7721083060364],[105.91485914859152,19.77379688330629],[105.92925929259292,19.780551192385815],[105.92205922059219,19.76704257422675],[105.90405904059043,19.743402492448396],[105.90045900459006,19.728205297019457],[105.8968589685897,19.721450987939917],[105.88245882458824,19.721450987939917],[105.86805868058684,19.721450987939917],[105.86085860858611,19.707942369780866],[105.85725857258575,19.69105659708204],[105.8320583205832,19.658973628954257],[105.82485824858247,19.64208785625543],[105.82485824858247,19.62689066082649],[105.82485824858247,19.598184847238485],[105.8176581765818,19.588053383619183],[105.8176581765818,19.610004888127662],[105.80325803258035,19.613382042667425],[105.79245792457925,19.603250579048137],[105.79245792457925,19.588053383619183],[105.79605796057962,19.594807692698723],[105.80325803258035,19.603250579048137],[105.80685806858071,19.608316310857788],[105.81045810458107,19.599873424508374],[105.81405814058144,19.58974196088907],[105.81405814058144,19.579610497269783],[105.81405814058144,19.574544765460132],[105.8176581765818,19.574544765460132],[105.8176581765818,19.537396065522714],[105.80685806858071,19.46141008837799],[105.81405814058144,19.42257281117068],[105.79965799657998,19.431015697520095],[105.78525785257852,19.40399846120198],[105.77085770857707,19.40906419301163],[105.77085770857707,19.40399846120198],[105.78165781657816,19.393866997582677],[105.78525785257852,19.38373553396339],[105.79245792457925,19.355029720375384],[105.81045810458107,19.32125817497773],[105.81405814058144,19.307749556818663],[105.79245792457925,19.32125817497773],[105.79245792457925,19.311126711358426],[105.79965799657998,19.29930667046925],[105.80685806858071,19.302683825009012],[105.81045810458107,19.29930667046925],[105.81045810458107,19.280732320500533],[105.80685806858071,19.273978011421008],[105.80685806858071,19.27228943415112],[105.79605796057962,19.267223702341482],[105.78885788857889,19.267223702341482],[105.78165781657816,19.265535125071594],[105.77085770857707,19.23682931148359],[105.76005760057603,19.2351407342137],[105.74565745657458,19.23682931148359],[105.74205742057421,19.231763579673938],[105.73125731257312,19.170974797958166],[105.73125731257312,19.133826098020748],[105.73845738457385,19.108497438972506],[105.71325713257136,19.09667739808333],[105.70245702457026,19.08992308900379],[105.69525695256954,19.081480202654376],[105.67005670056699,19.08992308900379],[105.6448564485645,19.064594429955548],[105.62325623256231,19.029134307288018],[105.61605616056164,18.998739916430125],[105.61245612456128,18.98523129827106],[105.61965619656195,18.976788411921646],[105.61965619656195,18.968345525572246],[105.62325623256231,18.95483690741318],[105.63045630456304,18.9227539392854],[105.6340563405634,18.90924532112635],[105.64845648456486,18.89235954842752],[105.67005670056699,18.875473775728693],[105.69525695256954,18.860276580299754],[105.71685716857172,18.855210848490103],[105.71685716857172,18.848456539410563],[105.70245702457026,18.834947921251512],[105.6988569885699,18.843390807600926],[105.69165691656917,18.85014511668045],[105.68445684456844,18.853522271220214],[105.67365673656735,18.855210848490103],[105.68445684456844,18.831570766711735],[105.68805688056881,18.826505034902098],[105.69525695256954,18.82481645763221],[105.71325713257136,18.826505034902098],[105.72045720457203,18.82312788036232],[105.74205742057421,18.801176375853856],[105.7528575285753,18.785979180424903],[105.75645756457567,18.772470562265852],[105.74205742057421,18.730256130518782],[105.74565745657458,18.723501821439243],[105.75645756457567,18.716747512359717],[105.75645756457567,18.696484585121127],[105.75645756457567,18.676221657882536],[105.74925749257494,18.66271303972347],[105.77085770857707,18.671155926072885],[105.77085770857707,18.694796007851238],[105.76725767257676,18.755584789567024],[105.7636576365764,18.758961944106787],[105.78525785257852,18.74714190321761],[105.78885788857889,18.718436089629606],[105.79245792457925,18.6897302760416],[105.79605796057962,18.676221657882536],[105.80325803258035,18.666090194263234],[105.82485824858247,18.593481371658285],[105.87885878858788,18.510741085434034],[105.91485914859152,18.4735923854966],[105.9508595085951,18.47021523095684],[105.9508595085951,18.451640880988137],[105.95805958059583,18.43306653101942],[105.96885968859692,18.41449218105072],[105.9760597605976,18.402672140161542],[106.00126001260014,18.385786367462714],[106.00846008460087,18.379032058383174],[106.04446044460445,18.331751894826468],[106.09846098460986,18.289537463079398],[106.10926109261095,18.276028844920333],[106.11286112861131,18.262520226761268],[106.0948609486095,18.259143072221505],[106.10206102061022,18.25070018587209],[106.12006120061204,18.254077340411854],[106.14166141661417,18.262520226761268],[106.16686166861672,18.26589738130103],[106.18126181261812,18.259143072221505],[106.23526235262352,18.2203057950142],[106.23886238862389,18.216928640474435],[106.26046260462607,18.21017433139491],[106.27126271262716,18.20342002231537],[106.30006300063002,18.16964847691773],[106.33246332463324,18.14600839513936],[106.3468634686347,18.13249977698031],[106.35406354063542,18.113925427011594],[106.3468634686347,18.113925427011594],[106.3360633606336,18.12067973609112],[106.32526325263251,18.117302581551357],[106.31086310863111,18.11054827247183],[106.30726307263075,18.10041680885253],[106.31806318063184,18.093662499773004],[106.32526325263251,18.097039654312766],[106.32886328863287,18.098728231582655],[106.33966339663397,18.10041680885253],[106.3360633606336,18.088596767963352],[106.3360633606336,18.078465304344064],[106.3468634686347,18.059890954375348],[106.3468634686347,18.071710995264525],[106.35046350463506,18.0835310361537],[106.35406354063542,18.093662499773004],[106.36126361263615,18.10041680885253],[106.37206372063724,18.10548254066218],[106.37566375663755,18.10379396339229],[106.38286382863828,18.10041680885253],[106.39366393663937,18.10041680885253],[106.40446404464046,18.10548254066218],[106.42246422464228,18.129122622440534],[106.43326433264332,18.124056890630897],[106.43326433264332,18.113925427011594],[106.42246422464228,18.093662499773004],[106.42606426064259,18.073399572534413],[106.44046440464405,18.051448068025934],[106.519665196652,17.956887740912507],[106.52326523265236,17.950133431832967],[106.52326523265236,17.94337912275344],[106.50526505265054,17.929870504594376],[106.48366483664836,17.914673309165437],[106.47286472864732,17.90285326827626],[106.4656646566466,17.891033227387084],[106.4548645486455,17.88259034103767],[106.43686436864368,17.88259034103767],[106.43686436864368,17.874147454688256],[106.44766447664477,17.872458877418367],[106.45126451264514,17.865704568338842],[106.45126451264514,17.857261681989428],[106.44406444064441,17.847130218370125],[106.45126451264514,17.828555868401423],[106.46206462064623,17.79985005481342],[106.46926469264696,17.747504159447047],[106.47646476464763,17.73737269582776],[106.49446494464945,17.718798345859042],[106.49806498064981,17.71035545950963],[106.49086490864909,17.701912573160214],[106.480064800648,17.703601150430103],[106.44766447664477,17.71542119131928],[106.43686436864368,17.739061273097633],[106.42606426064259,17.744127004907284],[106.41166411664119,17.747504159447047],[106.37566375663755,17.766078509415763],[106.30726307263075,17.7711442412254],[106.29286292862929,17.77789855030494],[106.28566285662856,17.77283281849529],[106.30006300063002,17.762701354875986],[106.3216632166322,17.754258468526572],[106.3468634686347,17.747504159447047],[106.37926379263791,17.744127004907284],[106.42966429664295,17.73061838674822],[106.42966429664295,17.723864077668694],[106.42246422464228,17.723864077668694],[106.4008640086401,17.732306964018107],[106.38286382863828,17.718798345859042],[106.37926379263791,17.69853541862045],[106.40806408064083,17.683338223191512],[106.40446404464046,17.69515826408069],[106.4008640086401,17.69853541862045],[106.39366393663937,17.703601150430103],[106.41886418864192,17.71373261404939],[106.45126451264514,17.70866688223974],[106.48366483664836,17.696846841350563],[106.50526505265054,17.683338223191512],[106.51606516065164,17.669829605032447],[106.53766537665376,17.627615173285378],[106.56646566465668,17.597220782427485],[106.61326613266135,17.519546228012885],[106.62766627666275,17.487463259885118],[106.63486634866348,17.47057748718629],[106.63846638466384,17.4688889099164],[106.65646656466566,17.453691714487462],[106.66006660066603,17.4503145599477],[106.66366663666639,17.446937405407922],[106.67806678066779,17.430051632709095],[106.76446764467647,17.335491305595667],[106.94806948069481,17.205470855814696],[107.00927009270094,17.16156784679775],[107.11007110071102,17.08895902419279],[107.12807128071285,17.060253210604785],[107.12087120871212,17.01803877885773],[107.13167131671315,17.009595892508315],[107.18567185671856,16.93360991536359],[107.20007200072001,16.92685560628405],[107.20367203672038,16.918412719934636],[107.20007200072001,16.915035565394874],[107.19287192871928,16.91165841085511],[107.18567185671856,16.90659267904546],[107.18207182071819,16.898149792696046],[107.17847178471789,16.894772638156283],[107.14247142471424,16.874509710917692],[107.14247142471424,16.867755401838167],[107.1676716767168,16.867755401838167],[107.17847178471789,16.86944397910804],[107.18927189271892,16.874509710917692],[107.19287192871928,16.879575442727344],[107.18927189271892,16.88632975180687],[107.18927189271892,16.89308406088641],[107.20727207272074,16.904904101775585],[107.21807218072183,16.908281256315348],[107.2216722167222,16.901526947235823],[107.22887228872293,16.89139548361652],[107.2360723607236,16.888018329076758],[107.25047250472505,16.879575442727344],[107.38007380073805,16.773195074724725],[107.41247412474127,16.749554992946372],[107.49887498874989,16.6887662112306],[107.60327603276033,16.595894461387047],[107.63567635676355,16.587451575037633],[107.63567635676355,16.57900868868822],[107.5960759607596,16.590828729577396],[107.4736747367474,16.653306088563056],[107.44487444874449,16.648240356753405],[107.52047520475207,16.60602592500635],[107.54567545675457,16.6009601931967],[107.55647556475566,16.595894461387047],[107.56367563675639,16.582385843227982],[107.57447574475748,16.580697265958108],[107.58527585275851,16.582385843227982],[107.59247592475924,16.587451575037633],[107.60327603276033,16.577320111418345],[107.61047610476106,16.56887722506893],[107.63567635676355,16.55874576144963],[107.63567635676355,16.551991452370103],[107.62487624876252,16.55705718417974],[107.62127621276215,16.55874576144963],[107.61407614076143,16.55874576144963],[107.61407614076143,16.555368606909866],[107.61047610476106,16.551991452370103],[107.6068760687607,16.545237143290564],[107.62127621276215,16.545237143290564],[107.63567635676355,16.545237143290564],[107.66447664476647,16.551991452370103],[107.65727657276574,16.545237143290564],[107.65367653676537,16.538482834211038],[107.65007650076501,16.5317285251315],[107.65007650076501,16.52159706151221],[107.65367653676537,16.5232856387821],[107.6608766087661,16.513154175162796],[107.66447664476647,16.50133413427362],[107.66447664476647,16.497956979733857],[107.6716767167672,16.497956979733857],[107.67887678876792,16.50133413427362],[107.68247682476823,16.508088443353145],[107.6860768607686,16.514842752432685],[107.69687696876969,16.519908484242322],[107.70407704077041,16.514842752432685],[107.70767707677078,16.504711288813382],[107.71127711277114,16.497956979733857],[107.75087750877509,16.472628320685615],[107.75807758077582,16.462496857066313],[107.78327783277831,16.427036734398783],[107.80127801278013,16.415216693509606],[107.82287822878232,16.388199457191476],[107.84087840878408,16.379756570842062],[107.83727837278371,16.3763794163023],[107.83367833678335,16.37469083903241],[107.82647826478268,16.373002261762537],[107.81927819278195,16.3763794163023],[107.81567815678159,16.38144514811195],[107.80847808478086,16.384822302651713],[107.79767797677977,16.388199457191476],[107.7940779407794,16.379756570842062],[107.80847808478086,16.322344943666053],[107.81207812078122,16.31390205731664],[107.82287822878232,16.305459170967225],[107.8480784807848,16.29195055280816],[107.85527855278553,16.29195055280816],[107.86247862478626,16.29701628461781],[107.87327873278736,16.295327707347923],[107.88047880478808,16.288573398268397],[107.88047880478808,16.278441934649095],[107.89127891278912,16.283507666458746],[107.89487894878948,16.278441934649095],[107.93447934479343,16.305459170967225],[107.9380793807938,16.31221348004675],[107.93087930879312,16.342607870904644],[107.93087930879312,16.352739334523946],[107.94527945279452,16.35611648906371],[107.9920799207992,16.324033520935927],[108.01368013680138,16.31896778912629],[108.02088020880211,16.325722098205816],[108.02448024480248,16.33416498455523],[108.0316803168032,16.342607870904644],[108.04248042480424,16.345985025444406],[108.04248042480424,16.33923071636488],[108.05328053280533,16.305459170967225],[108.06048060480606,16.288573398268397],[108.09288092880928,16.23622750290204],[108.06768067680679,16.25649043014063],[108.05328053280533,16.261556161950267],[108.0460804608046,16.248047543791216],[108.05328053280533,16.23622750290204],[108.07128071280715,16.2294731938225],[108.08928089280892,16.226096039282737],[108.10008100081001,16.2294731938225],[108.10728107281074,16.2294731938225],[108.12528125281256,16.222718884742974],[108.15048150481505,16.217653152933323],[108.17928179281796,16.21427599839356],[108.20448204482045,16.215964575663435],[108.20088200882009,16.210898843853798],[108.190081900819,16.199078802964607],[108.15408154081541,16.170372989376602],[108.14328143281432,16.148421484868138],[108.14328143281432,16.119715671280133],[108.16128161281614,16.10451847585118],[108.18288182881832,16.091009857692114],[108.19728197281972,16.072435507723412],[108.21168211682118,16.08763270315235],[108.22248222482227,16.091009857692114],[108.229682296823,16.08932128042224],[108.23688236882367,16.055549735024584],[108.23688236882367,16.05217258048482],[108.23328233282336,16.036975385055868],[108.22248222482227,16.023466766896817],[108.21168211682118,16.01164672600764],[108.19728197281972,16.003203839658227],[108.21528215282154,16.009958148737752],[108.23328233282336,16.020089612357054],[108.25128251282513,16.023466766896817],[108.25848258482586,16.009958148737752],[108.24768247682476,16.06230404410411],[108.24048240482404,16.075812662263175],[108.24048240482404,16.091009857692114],[108.24768247682476,16.107895630390942],[108.24768247682476,16.123092825819896],[108.22608226082264,16.12646998035966],[108.22608226082264,16.134912866709072],[108.23328233282336,16.139978598518724],[108.23688236882367,16.14673290759825],[108.2440824408244,16.153487216677775],[108.2440824408244,16.16193010302719],[108.25128251282513,16.158552948487426],[108.25488254882549,16.15686437121755],[108.25848258482586,16.16193010302719],[108.26568265682658,16.16193010302719],[108.27288272882731,16.153487216677775],[108.28728287282871,16.14504433032836],[108.30168301683017,16.138290021248835],[108.31608316083162,16.134912866709072],[108.31968319683199,16.139978598518724],[108.32328323283235,16.148421484868138],[108.33048330483308,16.155175793947663],[108.33408334083344,16.1517986394079],[108.33768337683375,16.148421484868138],[108.34848348483484,16.134912866709072],[108.33768337683375,16.12478140308977],[108.32688326883272,16.119715671280133],[108.31608316083162,16.11127278493072],[108.31248312483126,16.09945274404153],[108.30528305283053,16.107895630390942],[108.28008280082804,16.102829898581305],[108.26568265682658,16.107895630390942],[108.25848258482586,16.070746930453524],[108.26568265682658,16.03190965324623],[108.28008280082804,15.996449530578687],[108.2836828368284,15.989695221499161],[108.29448294482944,15.96943229426057],[108.30528305283053,15.955923676101506],[108.35928359283594,15.915397821624325],[108.37368373683739,15.908643512544785],[108.38808388083879,15.898512048925497],[108.39528395283952,15.881626276226669],[108.38448384483848,15.878249121686906],[108.37728377283776,15.87487196714713],[108.37368373683739,15.869806235337492],[108.38088380883812,15.866429080797715],[108.38808388083879,15.869806235337492],[108.39528395283952,15.876560544417018],[108.40248402484025,15.881626276226669],[108.40968409684098,15.881626276226669],[108.41328413284134,15.868117658067604],[108.42408424084243,15.805640299081944],[108.45648456484565,15.746540094636046],[108.61848618486187,15.528713626821187],[108.64728647286472,15.513516431392233],[108.68328683286836,15.518582163201884],[108.67608676086763,15.48987634961388],[108.6688866888669,15.483122040534354],[108.65448654486545,15.496630658693405],[108.64368643686436,15.493253504153643],[108.62928629286296,15.486499195074117],[108.62208622086223,15.47467915418494],[108.62928629286296,15.456104804216224],[108.65088650886509,15.439219031517396],[108.6688866888669,15.44766191786681],[108.69048690486903,15.48987634961388],[108.69768697686976,15.48987634961388],[108.70128701287013,15.46961342237529],[108.70488704887049,15.445973340596936],[108.70848708487085,15.437530454247522],[108.7336873368734,15.417267527008931],[108.73728737287377,15.410513217929392],[108.74448744487444,15.407136063389629],[108.76248762487626,15.397004599770327],[108.76608766087662,15.393627445230564],[108.77328773287735,15.386873136151038],[108.77328773287735,15.375053095261862],[108.77328773287735,15.363233054372671],[108.77328773287735,15.351413013483494],[108.78048780487808,15.339592972594318],[108.77688776887771,15.334527240784666],[108.77328773287735,15.331150086244904],[108.77328773287735,15.326084354435253],[108.78048780487808,15.326084354435253],[108.78048780487808,15.331150086244904],[108.7876878768788,15.346347281673857],[108.79488794887948,15.344658704403969],[108.8020880208802,15.344658704403969],[108.82008820088203,15.346347281673857],[108.82008820088203,15.353101590753383],[108.79488794887948,15.356478745293145],[108.7876878768788,15.373364517991973],[108.79488794887948,15.395316022500452],[108.8128881288813,15.407136063389629],[108.8128881288813,15.415578949739043],[108.80928809288093,15.417267527008931],[108.80568805688057,15.420644681548694],[108.79848798487984,15.429087567898108],[108.80928809288093,15.425710413358331],[108.81648816488166,15.424021836088457],[108.82008820088203,15.424021836088457],[108.82728827288275,15.429087567898108],[108.83448834488348,15.413890372469154],[108.83808838088385,15.375053095261862],[108.84528845288452,15.366610208912448],[108.85248852488525,15.363233054372671],[108.8776887768878,15.344658704403969],[108.88128881288816,15.336215818054555],[108.88128881288816,15.299067118117136],[108.88488884888852,15.285558499958071],[108.91368913689138,15.263606995449592],[108.92448924489247,15.256852686370067],[108.9316893168932,15.253475531830304],[108.9460894608946,15.253475531830304],[108.95328953289533,15.250098377290541],[108.94248942489423,15.236589759131476],[108.9316893168932,15.226458295512174],[108.9208892088921,15.221392563702537],[108.90288902889029,15.223081140972411],[108.90288902889029,15.214638254622997],[108.91368913689138,15.216326831892886],[108.9208892088921,15.214638254622997],[108.92448924489247,15.211261100083235],[108.92448924489247,15.201129636463932],[108.91008910089101,15.209572522813346],[108.90648906489065,15.19775248192417],[108.90288902889029,15.169046668336165],[108.89928899288992,15.153849472907226],[108.88128881288816,15.160603781986751],[108.8668886688867,15.158915204716877],[108.86328863288634,15.152160895637337],[108.87048870488707,15.14034085474816],[108.8776887768878,15.14034085474816],[108.88488884888852,15.143718009287923],[108.8920889208892,15.142029432018049],[108.89568895688956,15.133586545668635],[108.89928899288992,15.12007792750957],[108.90288902889029,15.12007792750957],[108.90288902889029,15.128520813858984],[108.90648906489065,15.133586545668635],[108.91008910089101,15.147095163827686],[108.9208892088921,15.05760056852391],[108.94248942489423,14.97992601410931],[109.00729007290073,14.838085523439162],[108.9856898568986,14.836396946169273],[108.98928989289897,14.831331214359622],[109.0108901089011,14.821199750740334],[109.01809018090182,14.81275686439092],[109.03609036090364,14.784051050802915],[109.04329043290431,14.777296741723376],[109.07929079290795,14.73001657816667],[109.08649086490868,14.714819382737716],[109.09369093690935,14.667539219181009],[109.08649086490868,14.670916373720772],[109.07929079290795,14.677670682800297],[109.07569075690759,14.686113569149711],[109.07569075690759,14.67260495099066],[109.08289082890832,14.606750437465223],[109.08649086490868,14.596618973845935],[109.08649086490868,14.589864664766395],[109.08649086490868,14.584798932956758],[109.07569075690759,14.586487510226632],[109.07209072090723,14.574667469337456],[109.0648906489065,14.569601737527805],[109.06129061290613,14.564536005718168],[109.06849068490686,14.551027387559103],[109.07209072090723,14.571290314797693],[109.07569075690759,14.578044623877219],[109.10809108091081,14.488550028573442],[109.12609126091263,14.464909946795089],[109.129691296913,14.451401328636024],[109.129691296913,14.397366855999778],[109.129691296913,14.383858237840712],[109.13689136891372,14.366972465141885],[109.15129151291512,14.33826665155388],[109.18009180091804,14.304495106156224],[109.19089190891913,14.29098648799716],[109.19449194491943,14.277477869838108],[109.20169201692016,14.235263438091039],[109.19089190891913,14.220066242662085],[109.20529205292053,14.186294697264444],[109.2376923769238,14.132260224628197],[109.21969219692198,14.13563737916796],[109.21249212492125,14.144080265517374],[109.20889208892089,14.157588883676425],[109.1980919809198,14.167720347295727],[109.1728917289173,14.172786079105379],[109.1728917289173,14.15590030640655],[109.1836918369184,14.13563737916796],[109.21609216092162,14.118751606469132],[109.22689226892271,14.103554411040179],[109.2520925209252,14.032634165705105],[109.26649266492666,13.92118806589285],[109.27369273692739,13.90599087046391],[109.30249302493024,13.88572794322532],[109.3060930609306,13.875596479606017],[109.29889298892988,13.797921925191417],[109.30249302493024,13.75908464798411],[109.29529295292951,13.755707493444348],[109.27009270092702,13.755707493444348],[109.26649266492666,13.76583895706365],[109.27369273692739,13.824939161509533],[109.25929259292593,13.873907902336143],[109.2520925209252,13.89079367503497],[109.2376923769238,13.87897363414578],[109.2376923769238,13.868842170526491],[109.23049230492308,13.831693470589073],[109.22329223292235,13.813119120620357],[109.21969219692198,13.806364811540831],[109.23049230492308,13.811430543350482],[109.24129241292417,13.787790461572115],[109.24489244892447,13.779347575222701],[109.25929259292593,13.777658997952827],[109.24849248492484,13.76583895706365],[109.23409234092344,13.755707493444348],[109.22689226892271,13.743887452555171],[109.22329223292235,13.721935948046692],[109.2376923769238,13.699984443538213],[109.2376923769238,13.698295866268339],[109.2376923769238,13.691541557188813],[109.2376923769238,13.664524320870683],[109.24129241292417,13.644261393632092],[109.24849248492484,13.622309889123613],[109.25569255692557,13.605424116424786],[109.27009270092702,13.59866980734526],[109.27009270092702,13.593604075535609],[109.28089280892812,13.585161189186195],[109.29529295292951,13.57840688010667],[109.29889298892988,13.57840688010667],[109.30249302493024,13.568275416487367],[109.30249302493024,13.561521107407842],[109.29889298892988,13.558143952868079],[109.28809288092884,13.558143952868079],[109.28809288092884,13.55138964378854],[109.29169291692921,13.546323911978888],[109.29169291692921,13.542946757439125],[109.29529295292951,13.531126716549949],[109.28449284492848,13.539569602899363],[109.2628926289263,13.576718302836781],[109.2520925209252,13.602046961885023],[109.22689226892271,13.632441352742916],[109.21969219692198,13.647638548171855],[109.21249212492125,13.647638548171855],[109.20889208892089,13.630752775473027],[109.21609216092162,13.623998466393502],[109.22329223292235,13.61893273458385],[109.23049230492308,13.612178425504325],[109.2376923769238,13.602046961885023],[109.24129241292417,13.581784034646432],[109.24489244892447,13.57165257102713],[109.25929259292593,13.559832530137953],[109.26649266492666,13.554766798328302],[109.26649266492666,13.548012489248777],[109.2628926289263,13.544635334709014],[109.25929259292593,13.544635334709014],[109.26649266492666,13.534503871089711],[109.28809288092884,13.50917521204147],[109.29529295292951,13.50917521204147],[109.29889298892988,13.51424094385112],[109.30249302493024,13.517618098390884],[109.31329313293134,13.522683830200535],[109.30969309693097,13.512552366581247],[109.30249302493024,13.500732325692056],[109.29889298892988,13.492289439342642],[109.30249302493024,13.480469398453465],[109.31329313293134,13.472026512104051],[109.32409324093243,13.470337934834177],[109.33489334893352,13.475403666643814],[109.33849338493388,13.465272203024526],[109.33129331293316,13.45176358486546],[109.33489334893352,13.441632121246172],[109.32409324093243,13.423057771277456],[109.3168931689317,13.412926307658168],[109.3060930609306,13.406171998578628],[109.29889298892988,13.417992039467805],[109.27729277292775,13.421369194007568],[109.27369273692739,13.43150065762687],[109.27729277292775,13.438254966706396],[109.28809288092884,13.441632121246172],[109.29889298892988,13.448386430325698],[109.29889298892988,13.461895048484763],[109.29529295292951,13.468649357564288],[109.2628926289263,13.488912284802879],[109.2520925209252,13.488912284802879],[109.24489244892447,13.485535130263116],[109.2376923769238,13.477092243913702],[109.23049230492308,13.461895048484763],[109.2376923769238,13.45345216213535],[109.23409234092344,13.445009275785935],[109.23409234092344,13.436566389436521],[109.24489244892447,13.426434925817219],[109.2376923769238,13.419680616737693],[109.23409234092344,13.409549153118391],[109.23049230492308,13.392663380419563],[109.24849248492484,13.38422049407015],[109.26649266492666,13.362268989561684],[109.28089280892812,13.352137525942382],[109.29169291692921,13.362268989561684],[109.29889298892988,13.363957566831559],[109.3060930609306,13.352137525942382],[109.30969309693097,13.342006062323094],[109.3060930609306,13.33356317597368],[109.29889298892988,13.330186021433903],[109.28809288092884,13.331874598703791],[109.28809288092884,13.325120289624266],[109.29169291692921,13.320054557814615],[109.29529295292951,13.314988826004964],[109.29529295292951,13.30654593965555],[109.29529295292951,13.298103053306136],[109.28809288092884,13.301480207845898],[109.27729277292775,13.30654593965555],[109.27369273692739,13.309923094195312],[109.27009270092702,13.301480207845898],[109.26649266492666,13.301480207845898],[109.25929259292593,13.298103053306136],[109.27369273692739,13.262642930638606],[109.28089280892812,13.24913431247954],[109.29529295292951,13.235625694320476],[109.29169291692921,13.266020085178369],[109.29529295292951,13.279528703337434],[109.3060930609306,13.28459443514707],[109.3060930609306,13.289660166956722],[109.30249302493024,13.298103053306136],[109.30249302493024,13.303168785115787],[109.30969309693097,13.303168785115787],[109.31329313293134,13.298103053306136],[109.3168931689317,13.289660166956722],[109.32049320493206,13.279528703337434],[109.32049320493206,13.259265776098829],[109.32049320493206,13.25082288974943],[109.3060930609306,13.22887138524095],[109.3060930609306,13.218739921621648],[109.31329313293134,13.198476994383057],[109.31329313293134,13.18159122168423],[109.3060930609306,13.16639402625529],[109.30249302493024,13.151196830826336],[109.3060930609306,13.132622480857634],[109.3168931689317,13.119113862698569],[109.32409324093243,13.107293821809392],[109.33129331293316,13.093785203650327],[109.32769327693279,13.085342317300913],[109.34209342093425,13.0768994309515],[109.34929349293492,13.068456544602086],[109.3708937089371,13.031307844664667],[109.3960939609396,13.002602031076663],[109.41769417694178,12.972207640218784],[109.45729457294573,12.923238899392175],[109.46449464494646,12.913107435772886],[109.46809468094682,12.897910240343933],[109.46809468094682,12.87933589037523],[109.46449464494646,12.862450117676403],[109.45729457294573,12.8523186540571],[109.45369453694536,12.850630076787226],[109.4356943569436,12.845564344977575],[109.43209432094324,12.845564344977575],[109.42849428494287,12.8523186540571],[109.43209432094324,12.857384385866752],[109.43929439294396,12.860761540406514],[109.44289442894433,12.864138694946277],[109.44649446494464,12.869204426755928],[109.450094500945,12.872581581295691],[109.450094500945,12.875958735835468],[109.43929439294396,12.87933589037523],[109.41769417694178,12.864138694946277],[109.41409414094142,12.85907296313664],[109.40689406894069,12.843875767707686],[109.40329403294032,12.83881003589805],[109.3960939609396,12.835432881358273],[109.38529385293856,12.833744304088398],[109.37809378093783,12.83205572681851],[109.36729367293674,12.825301417738984],[109.37449374493747,12.81685853138957],[109.37809378093783,12.805038490500394],[109.37449374493747,12.78984129507144],[109.37449374493747,12.77633267691239],[109.42129421294214,12.69190381341825],[109.4356943569436,12.675018040719422],[109.450094500945,12.673329463449534],[109.46809468094682,12.659820845290483],[109.47169471694718,12.656443690750706],[109.47169471694718,12.648000804401292],[109.46449464494646,12.646312227131418],[109.45729457294573,12.64462364986153],[109.450094500945,12.639557918051892],[109.450094500945,12.624360722622939],[109.45369453694536,12.583834868145757],[109.450094500945,12.570326249986692],[109.43929439294396,12.565260518177041],[109.42849428494287,12.575391981796344],[109.41769417694178,12.605786372654237],[109.41409414094142,12.610852104463874],[109.41049410494105,12.612540681733762],[109.40689406894069,12.617606413543413],[109.40329403294032,12.62942645443259],[109.40689406894069,12.631115031702478],[109.42489424894251,12.646312227131418],[109.42489424894251,12.653066536210943],[109.40329403294032,12.686838081608599],[109.40329403294032,12.678395195259185],[109.3960939609396,12.673329463449534],[109.38889388893892,12.67164088617966],[109.37449374493747,12.673329463449534],[109.3816938169382,12.66488657710012],[109.3816938169382,12.656443690750706],[109.3816938169382,12.648000804401292],[109.37449374493747,12.639557918051892],[109.3708937089371,12.64968938167118],[109.36369363693638,12.656443690750706],[109.35289352893528,12.659820845290483],[109.34209342093425,12.659820845290483],[109.36009360093601,12.685149504338725],[109.36369363693638,12.690215236148362],[109.36729367293674,12.693592390688138],[109.37449374493747,12.696969545227901],[109.38529385293856,12.702035277037538],[109.38889388893892,12.71216674065684],[109.38529385293856,12.72736393608578],[109.36729367293674,12.751004017864147],[109.36369363693638,12.762824058753324],[109.36369363693638,12.793218449611217],[109.36009360093601,12.79659560415098],[109.34929349293492,12.794907026881091],[109.34569345693455,12.788152717801566],[109.34209342093425,12.781398408722026],[109.33849338493388,12.772955522372612],[109.30249302493024,12.751004017864147],[109.29529295292951,12.742561131514734],[109.27009270092702,12.71216674065684],[109.25569255692557,12.698658122497775],[109.24129241292417,12.693592390688138],[109.23409234092344,12.686838081608599],[109.20529205292053,12.646312227131418],[109.20529205292053,12.636180763512115],[109.20889208892089,12.597343486304823],[109.20169201692016,12.590589177225283],[109.20169201692016,12.575391981796344],[109.20529205292053,12.560194786367404],[109.20529205292053,12.550063322748102],[109.20889208892089,12.550063322748102],[109.21249212492125,12.548374745478213],[109.21249212492125,12.543309013668576],[109.21969219692198,12.543309013668576],[109.22329223292235,12.553440477287864],[109.22329223292235,12.565260518177041],[109.22689226892271,12.573703404526455],[109.2376923769238,12.577080559066232],[109.2376923769238,12.583834868145757],[109.23049230492308,12.583834868145757],[109.23049230492308,12.590589177225283],[109.24849248492484,12.585523445415646],[109.24849248492484,12.57201482725658],[109.2376923769238,12.555129054557753],[109.23049230492308,12.5399318591288],[109.2376923769238,12.523046086429986],[109.24849248492484,12.50953746827092],[109.29889298892988,12.47745450014314],[109.30249302493024,12.46901161379374],[109.29169291692921,12.448748686555135],[109.29529295292951,12.438617222935846],[109.29889298892988,12.430174336586433],[109.30249302493024,12.42679718204667],[109.32049320493206,12.421731450237019],[109.33489334893352,12.409911409347842],[109.34569345693455,12.396402791188777],[109.33489334893352,12.386271327569474],[109.34209342093425,12.379517018489949],[109.33489334893352,12.372762709410424],[109.32409324093243,12.386271327569474],[109.3168931689317,12.376139863950186],[109.30969309693097,12.359254091251358],[109.29889298892988,12.350811204901945],[109.28089280892812,12.355876936711596],[109.27369273692739,12.367696977600772],[109.25929259292593,12.393025636649014],[109.21609216092162,12.44030580020572],[109.1836918369184,12.458880150174437],[109.15489154891549,12.453814418364786],[109.16209162091621,12.448748686555135],[109.16569165691658,12.438617222935846],[109.16929169291694,12.433551491126195],[109.15849158491585,12.438617222935846],[109.15489154891549,12.44030580020572],[109.15129151291512,12.44030580020572],[109.15489154891549,12.42679718204667],[109.16929169291694,12.409911409347842],[109.17649176491767,12.39977994572854],[109.1980919809198,12.403157100268302],[109.20529205292053,12.387959904839363],[109.20889208892089,12.362631245791121],[109.21249212492125,12.340679741282642],[109.21249212492125,12.332236854933228],[109.21969219692198,12.32210539131394],[109.23049230492308,12.313662504964526],[109.24129241292417,12.305219618615112],[109.24129241292417,12.296776732265698],[109.2376923769238,12.291711000456047],[109.22329223292235,12.296776732265698],[109.21969219692198,12.296776732265698],[109.21609216092162,12.290022423186173],[109.20529205292053,12.263005186868043],[109.1836918369184,12.273136650487345],[109.17649176491767,12.276513805027108],[109.1836918369184,12.268070918677694],[109.19089190891913,12.25962803232828],[109.21249212492125,12.247807991439103],[109.20529205292053,12.23261079601015],[109.20889208892089,12.222479332390861],[109.21609216092162,12.210659291501685],[109.22329223292235,12.200527827882382],[109.1980919809198,12.207282136961908],[109.18729187291876,12.205593559692034],[109.1836918369184,12.193773518802857],[109.19089190891913,12.200527827882382],[109.20529205292053,12.193773518802857],[109.20889208892089,12.185330632453443],[109.21249212492125,12.173510591564266],[109.21249212492125,12.166756282484727],[109.21249212492125,12.163379127944964],[109.21249212492125,12.158313396135313],[109.22329223292235,12.149870509785899],[109.22689226892271,12.138050468896722],[109.22329223292235,12.129607582547308],[109.21249212492125,12.117787541658132],[109.20889208892089,12.109344655308718],[109.21249212492125,12.068818800831536],[109.21969219692198,12.05024445086282],[109.24849248492484,11.997898555496462],[109.25929259292593,11.986078514607286],[109.28809288092884,11.96750416463857],[109.28809288092884,11.960749855559044],[109.28449284492848,11.943864082860216],[109.28449284492848,11.940486928320453],[109.26649266492666,11.926978310161388],[109.26649266492666,11.91009253746256],[109.27009270092702,11.894895342033621],[109.28089280892812,11.884763878414319],[109.29529295292951,11.878009569334793],[109.29529295292951,11.871255260255253],[109.27729277292775,11.864500951175728],[109.2628926289263,11.866189528445602],[109.24849248492484,11.872943837525142],[109.2376923769238,11.884763878414319],[109.23409234092344,11.88307530114443],[109.22689226892271,11.881386723874556],[109.22329223292235,11.878009569334793],[109.21609216092162,11.908403960192672],[109.22329223292235,11.981012782797634],[109.21249212492125,12.016472905465164],[109.21969219692198,12.016472905465164],[109.19449194491943,12.075573109911062],[109.18729187291876,12.117787541658132],[109.17649176491767,12.129607582547308],[109.16209162091621,12.11272180984848],[109.17649176491767,12.089081728070127],[109.18009180091804,12.084015996260476],[109.1836918369184,12.080638841720713],[109.17649176491767,12.053621605402583],[109.1836918369184,12.043490141783295],[109.20529205292053,12.021538637274816],[109.21249212492125,12.006341441845876],[109.20889208892089,11.975947050987983],[109.1980919809198,11.948929814669867],[109.18009180091804,11.921912578351737],[109.15489154891549,11.898272496573384],[109.13689136891372,11.896583919303495],[109.12609126091263,11.86281237390584],[109.13329133291336,11.830729405778072],[109.16209162091621,11.823975096698547],[109.16929169291694,11.83241798304796],[109.1836918369184,11.852680910286551],[109.1980919809198,11.86956668298538],[109.20529205292053,11.86787810571549],[109.20169201692016,11.854369487556426],[109.19449194491943,11.840860869397375],[109.19449194491943,11.82735225123831],[109.20529205292053,11.810466478539482],[109.20529205292053,11.788514974031003],[109.20529205292053,11.78513781949124],[109.24129241292417,11.736169078664645],[109.23049230492308,11.714217574156166],[109.22329223292235,11.720971883235691],[109.21609216092162,11.714217574156166],[109.20889208892089,11.693954646917575],[109.19089190891913,11.672003142409096],[109.18729187291876,11.663560256059682],[109.18729187291876,11.653428792440394],[109.1836918369184,11.63823159701144],[109.18009180091804,11.631477287931915],[109.16209162091621,11.616280092502976],[109.15489154891549,11.607837206153562],[109.15489154891549,11.59770574253426],[109.14769147691476,11.585885701645083],[109.13689136891372,11.570688506216143],[109.129691296913,11.570688506216143],[109.1188911889119,11.580819969835431],[109.10089100891008,11.580819969835431],[109.08649086490868,11.579131392565557],[109.06849068490686,11.584197124375194],[109.0540905409054,11.59601716526437],[109.04689046890468,11.631477287931915],[109.04329043290431,11.63823159701144],[109.02169021690219,11.633165865201804],[109.02169021690219,11.619657247042738],[109.03249032490328,11.607837206153562],[109.039690396904,11.601082897074022],[109.039690396904,11.587574278914957],[109.03609036090364,11.574065660755906],[109.03249032490328,11.558868465326952],[109.039690396904,11.543671269898013],[109.01809018090182,11.541982692628125],[109.0108901089011,11.543671269898013],[109.02889028890291,11.516654033579897],[109.02889028890291,11.474439601832827],[109.01809018090182,11.406896511037516],[109.02169021690219,11.368059233830209],[109.01809018090182,11.356239192941032],[109.00729007290073,11.344419152051856],[108.98208982089824,11.324156224813265],[108.96768967689678,11.314024761193963],[108.95328953289533,11.3106476066542],[108.9316893168932,11.3106476066542],[108.88848888488889,11.33091053389279],[108.87408874088743,11.334287688432553],[108.85608856088561,11.334287688432553],[108.83808838088385,11.33091053389279],[108.82008820088203,11.324156224813265],[108.7876878768788,11.300516143034912],[108.77688776887771,11.288696102145721],[108.76608766087662,11.27518748398667],[108.7588875888759,11.258301711287842],[108.74448744487444,11.207644393191359],[108.73728737287377,11.189070043222642],[108.73008730087304,11.182315734143117],[108.71568715687158,11.178938579603354],[108.70128701287013,11.178938579603354],[108.69048690486903,11.180627156873229],[108.6688866888669,11.190758620492531],[108.65448654486545,11.19244719776242],[108.64728647286472,11.190758620492531],[108.6256862568626,11.182315734143117],[108.6148861488615,11.178938579603354],[108.57888578885792,11.178938579603354],[108.57168571685719,11.175561425063592],[108.5608856088561,11.162052806904526],[108.53208532085324,11.153609920555112],[108.51408514085142,11.138412725126173],[108.49968499684996,11.121526952427345],[108.49248492484924,11.104641179728517],[108.4816848168482,11.064115325251322],[108.47088470884711,11.053983861632034],[108.44568445684456,11.048918129822383],[108.43848438484383,11.047229552552494],[108.40248402484025,11.028655202583792],[108.39168391683916,11.026966625313904],[108.37728377283776,11.026966625313904],[108.37008370083703,11.02358947077414],[108.3628836288363,11.010080852615076],[108.34848348483484,10.964489266328243],[108.34488344883448,10.954357802708955],[108.32688326883272,10.950980648169192],[108.31608316083162,10.944226339089653],[108.30168301683017,10.912143370961886],[108.29448294482944,10.912143370961886],[108.2836828368284,10.942537761819779],[108.25848258482586,10.950980648169192],[108.13608136081359,10.927340566390825],[108.10728107281074,10.918897680041411],[108.09288092880928,10.902011907342583],[108.08928089280892,10.891880443723295],[108.06408064080642,10.868240361944927],[108.06048060480606,10.854731743785877],[108.0568805688057,10.8429117028967],[108.04248042480424,10.814205889308681],[108.03528035280351,10.771991457561626],[107.99927999279993,10.699382634956663],[107.9920799207992,10.699382634956663],[107.98127981279816,10.706136944036189],[107.9380793807938,10.71795698492538],[107.92007920079203,10.721334139465142],[107.89847898478985,10.719645562195254],[107.88407884078839,10.716268407655491],[107.82287822878232,10.692628325877138],[107.78327783277831,10.657168203209594],[107.76887768877691,10.650413894130068],[107.73287732877327,10.638593853240891],[107.66447664476647,10.603133730573347],[107.64287642876428,10.601445153303473],[107.62127621276215,10.593002266954059],[107.58527585275851,10.572739339715469],[107.58167581675815,10.57105076244558],[107.57087570875711,10.562607876096166],[107.54567545675457,10.535590639778036],[107.53847538475384,10.525459176158748],[107.53127531275311,10.513639135269571],[107.50967509675098,10.501819094380394],[107.44847448474485,10.47311328079239],[107.43047430474303,10.468047548982739],[107.38367383673835,10.462981817173088],[107.3440734407344,10.45116177628391],[107.33327333273331,10.452850353553785],[107.32607326073264,10.442718889934497],[107.29727297272973,10.415701653616367],[107.27207272072724,10.378552953678948],[107.25407254072542,10.378552953678948],[107.21807218072183,10.402193035457316],[107.18927189271892,10.405570189997079],[107.19647196471965,10.414013076346492],[107.20367203672038,10.417390230886255],[107.2108721087211,10.419078808156144],[107.21807218072183,10.425833117235669],[107.21807218072183,10.434276003585083],[107.2108721087211,10.442718889934497],[107.20367203672038,10.45116177628391],[107.20007200072001,10.452850353553785],[107.19647196471965,10.456227508093562],[107.17487174871752,10.478179012602027],[107.17127171271716,10.476490435332153],[107.16047160471607,10.476490435332153],[107.14967149671497,10.478179012602027],[107.14247142471424,10.48155616714179],[107.14247142471424,10.46635897171285],[107.13527135271352,10.46635897171285],[107.12447124471248,10.479867589871915],[107.1028710287103,10.489999053491204],[107.08127081270811,10.491687630761092],[107.06687066870671,10.48155616714179],[107.05967059670598,10.48155616714179],[107.06327063270635,10.489999053491204],[107.06327063270635,10.495064785300855],[107.05967059670598,10.50857340345992],[107.04887048870489,10.48831047622133],[107.04167041670416,10.479867589871915],[107.03087030870307,10.474801858062264],[107.02727027270276,10.49337620803098],[107.02727027270276,10.501819094380394],[107.00927009270094,10.49337620803098],[107.00207002070022,10.48831047622133],[106.99846998469985,10.48155616714179],[106.99126991269912,10.48155616714179],[106.99486994869949,10.496753362570743],[107.00567005670058,10.505196248920157],[107.01287012870131,10.50857340345992],[107.01647016470167,10.510261980729808],[107.02727027270276,10.515327712539445],[107.03447034470344,10.525459176158748],[107.03447034470344,10.535590639778036],[107.03087030870307,10.608199462382998],[107.02727027270276,10.61326519419265],[107.01647016470167,10.628462389621589],[107.01287012870131,10.638593853240891],[107.01287012870131,10.635216698701129],[107.02727027270276,10.631839544161352],[107.0236702367024,10.635216698701129],[107.0236702367024,10.65547962593972],[107.01287012870131,10.672365398638547],[106.9840698406984,10.699382634956663],[106.98046980469803,10.684185439527724],[106.99126991269912,10.674053975908421],[107.00567005670058,10.663922512289133],[107.01287012870131,10.65547962593972],[107.00207002070022,10.630150966891478],[107.00207002070022,10.616642348732412],[107.01647016470167,10.611576616922761],[107.0236702367024,10.603133730573347],[107.0236702367024,10.587936535144408],[107.01287012870131,10.562607876096166],[107.01287012870131,10.55585356701664],[107.02007020070204,10.55078783520699],[107.02727027270276,10.54403352612745],[107.02727027270276,10.535590639778036],[107.02007020070204,10.533902062508162],[107.00927009270094,10.538967794317813],[106.99846998469985,10.549099257937101],[107.00567005670058,10.55585356701664],[106.99126991269912,10.57105076244558],[106.99126991269912,10.576116494255231],[106.99486994869949,10.584559380604645],[106.99846998469985,10.598067998763696],[106.99846998469985,10.625085235081826],[106.99126991269912,10.625085235081826],[106.9840698406984,10.596379421493822],[106.9840698406984,10.567673607905817],[106.99126991269912,10.540656371587687],[107.01287012870131,10.522082021618985],[107.00207002070022,10.517016289809334],[106.99486994869949,10.513639135269571],[106.97326973269736,10.474801858062264],[106.96246962469627,10.46635897171285],[106.9588695886959,10.471424703522501],[106.9588695886959,10.479867589871915],[106.96246962469627,10.491687630761092],[106.96246962469627,10.501819094380394],[106.9588695886959,10.511950557999683],[106.95526955269554,10.517016289809334],[106.94806948069481,10.520393444349097],[106.94446944469445,10.52883633069851],[106.93726937269372,10.549099257937101],[106.93726937269372,10.565985030635929],[106.94446944469445,10.601445153303473],[106.89046890468904,10.645348162320417],[106.88326883268832,10.652102471399942],[106.86886868868692,10.645348162320417],[106.84726847268473,10.635216698701129],[106.82926829268291,10.630150966891478],[106.81846818468188,10.641971007780654],[106.81486814868151,10.652102471399942],[106.80046800468006,10.667299666828896],[106.79326793267933,10.674053975908421],[106.7860678606786,10.680808284987961],[106.7716677166772,10.685874016797598],[106.76806768067684,10.684185439527724],[106.74646746467465,10.674053975908421],[106.74286742867429,10.66898824409877],[106.73566735667356,10.658856780479482],[106.74286742867429,10.652102471399942],[106.75366753667538,10.647036739590305],[106.75726757267574,10.641971007780654],[106.76086760867611,10.631839544161352],[106.7716677166772,10.603133730573347],[106.76806768067684,10.593002266954059],[106.76446764467647,10.58624795787452],[106.75726757267574,10.582870803334757],[106.75366753667538,10.576116494255231],[106.74646746467465,10.560919298826278],[106.74286742867429,10.552476412476864],[106.73926739267392,10.540656371587687],[106.7320673206732,10.522082021618985],[106.72126721267216,10.515327712539445],[106.68886688866888,10.503507671650269],[106.67086670866712,10.503507671650269],[106.66366663666639,10.522082021618985],[106.65646656466566,10.522082021618985],[106.66006660066603,10.506884826190031],[106.66366663666639,10.501819094380394],[106.66726667266676,10.495064785300855],[106.65646656466566,10.491687630761092],[106.64566645666457,10.48662189895144],[106.63846638466384,10.478179012602027],[106.63126631266312,10.457916085363436],[106.62046620466208,10.452850353553785],[106.60606606066062,10.447784621744148],[106.59526595265953,10.439341735394734],[106.59526595265953,10.456227508093562],[106.59166591665917,10.468047548982739],[106.5880658806588,10.478179012602027],[106.58086580865807,10.48831047622133],[106.58086580865807,10.452850353553785],[106.5880658806588,10.439341735394734],[106.5988659886599,10.432587426315195],[106.61686616866172,10.435964580854957],[106.63126631266312,10.44609604447426],[106.64206642066421,10.459604662633325],[106.64926649266494,10.474801858062264],[106.65646656466566,10.474801858062264],[106.66006660066603,10.459604662633325],[106.66366663666639,10.444407467204371],[106.67086670866712,10.432587426315195],[106.68886688866888,10.432587426315195],[106.69966699666998,10.441030312664608],[106.71406714067143,10.468047548982739],[106.72486724867252,10.474801858062264],[106.73926739267392,10.468047548982739],[106.75006750067502,10.452850353553785],[106.76086760867611,10.435964580854957],[106.76806768067684,10.422455962695906],[106.78246782467824,10.407258767266953],[106.78966789667896,10.393750149107902],[106.79686796867969,10.307632708343874],[106.78966789667896,10.28568120383541],[106.77526775267756,10.275549740216107],[106.75726757267574,10.277238317485995],[106.70326703267034,10.289058358375172],[106.5988659886599,10.289058358375172],[106.52686526865267,10.302566976534237],[106.48726487264872,10.302566976534237],[106.46926469264696,10.307632708343874],[106.45126451264514,10.316075594693288],[106.43686436864368,10.32114132650294],[106.42246422464228,10.317764171963177],[106.480064800648,10.280615472025758],[106.72126721267216,10.199563763071382],[106.72486724867252,10.196186608531619],[106.74286742867429,10.182677990372554],[106.75006750067502,10.179300835832791],[106.75366753667538,10.177612258562917],[106.75726757267574,10.172546526753266],[106.76446764467647,10.167480794943614],[106.77526775267756,10.165792217673726],[106.7860678606786,10.164103640403852],[106.79326793267933,10.162415063133963],[106.79686796867969,10.157349331324312],[106.80046800468006,10.148906444974898],[106.79686796867969,10.125266363196545],[106.78966789667896,10.110069167767605],[106.73566735667356,10.05434611786147],[106.72126721267216,10.044214654242182],[106.70326703267034,10.04928038605182],[106.71046710467107,10.056034695131359],[106.71046710467107,10.066166158750647],[106.7068670686707,10.074609045100061],[106.70326703267034,10.083051931449475],[106.69606696066961,10.083051931449475],[106.69246692466925,10.066166158750647],[106.68886688866888,10.062789004210885],[106.67806678066779,10.04928038605182],[106.67086670866712,10.040837499702405],[106.66726667266676,10.032394613352992],[106.67086670866712,10.029017458813229],[106.67806678066779,10.020574572463815],[106.68526685266852,10.012131686114401],[106.67806678066779,10.008754531574638],[106.66366663666639,10.005377377034876],[106.66006660066603,10.002000222495113],[106.66006660066603,9.995245913415573],[106.6528665286653,9.985114449796285],[106.6528665286653,9.978360140716745],[106.64926649266494,9.974982986176983],[106.64566645666457,9.973294408907108],[106.60606606066062,9.974982986176983],[106.59166591665917,9.980048717986634],[106.57726577265771,9.99186875887581],[106.56286562865631,10.003688799764987],[106.54846548465486,10.015508840654178],[106.49806498064981,10.035771767892768],[106.46926469264696,10.059411849671122],[106.44406444064441,10.089806240529015],[106.36126361263615,10.22151526757986],[106.33246332463324,10.250221081167865],[106.29286292862929,10.262041122057042],[106.29646296462965,10.255286812977516],[106.30366303663038,10.253598235707628],[106.30726307263075,10.251909658437754],[106.33966339663397,10.228269576659386],[106.35046350463506,10.214760958500335],[106.35766357663579,10.175923681293028],[106.36846368463688,10.155660754054438],[106.46206462064623,10.035771767892768],[106.48366483664836,10.015508840654178],[106.56286562865631,9.978360140716745],[106.61326613266135,9.939522863509453],[106.67086670866712,9.90912847265156],[106.68526685266852,9.905751318111797],[106.69606696066961,9.897308431762383],[106.69246692466925,9.877045504523792],[106.68166681666816,9.855094000015313],[106.66726667266676,9.843273959126137],[106.66726667266676,9.850028268205662],[106.67446674466748,9.856782577285202],[106.67806678066779,9.86691404090449],[106.67446674466748,9.875356927253904],[106.66726667266676,9.883799813603318],[106.66366663666639,9.883799813603318],[106.65646656466566,9.848339690935788],[106.63846638466384,9.826388186427309],[106.60966609666099,9.816256722808006],[106.5880658806588,9.823011031887546],[106.56286562865631,9.841585381856248],[106.50526505265054,9.905751318111797],[106.480064800648,9.924325668080499],[106.39366393663937,9.974982986176983],[106.14526145261453,10.228269576659386],[106.1380613806138,10.235023885738926],[106.12726127261271,10.240089617548577],[106.12006120061204,10.240089617548577],[106.11646116461168,10.238401040278688],[106.11286112861131,10.235023885738926],[106.11646116461168,10.229958153929275],[106.12726127261271,10.224892422119623],[106.13446134461344,10.219826690309972],[106.15966159661599,10.196186608531619],[106.16686166861672,10.18098941310268],[106.17406174061739,10.147217867705024],[106.18126181261812,10.133709249545959],[106.19206192061921,10.120200631386894],[106.2136621366214,10.099937704148303],[106.24606246062461,10.077986199639838],[106.2820628206282,10.050968963321708],[106.29286292862929,10.042526076972294],[106.29646296462965,10.03408319062288],[106.30726307263075,10.017197417924052],[106.31086310863111,10.008754531574638],[106.36486364863651,9.959785790748043],[106.36846368463688,9.95640863620828],[106.390063900639,9.932768554429913],[106.47646476464763,9.861848309094853],[106.50166501665018,9.834831072776723],[106.519665196652,9.801059527379067],[106.52686526865267,9.76222225017176],[106.53766537665376,9.750402209282583],[106.56286562865631,9.74702505474282],[106.5736657366574,9.738582168393407],[106.58086580865807,9.720007818424705],[106.58086580865807,9.6997448911861],[106.57726577265771,9.64908757308963],[106.56286562865631,9.613627450422086],[106.54486544865449,9.584921636834082],[106.519665196652,9.562970132325603],[106.49806498064981,9.549461514166552],[106.48366483664836,9.547772936896664],[106.47286472864732,9.551150091436426],[106.4656646566466,9.554527245976189],[106.4548645486455,9.551150091436426],[106.44046440464405,9.541018627817138],[106.39726397263973,9.542707205087012],[106.38646386463864,9.547772936896664],[106.3360633606336,9.584921636834082],[106.24966249662498,9.630513223120914],[106.06606066060664,9.80443668191883],[105.96885968859692,9.920948513540736],[105.93285932859328,9.954720058938392],[105.90405904059043,9.976671563446871],[105.86805868058684,9.985114449796285],[105.83925839258393,10.005377377034876],[105.8176581765818,10.008754531574638],[105.83925839258393,9.980048717986634],[105.90045900459006,9.9158827817311],[106.07326073260731,9.74871363201271],[106.08046080460804,9.730139282043993],[106.0840608406084,9.713253509345165],[106.09126091260913,9.692990582106574],[106.19566195661957,9.541018627817138],[106.2028620286203,9.527510009658073],[106.20646206462067,9.510624236959245],[106.21006210062103,9.470098382482064],[106.20646206462067,9.456589764322999],[106.17046170461708,9.417752487115692],[106.17766177661775,9.407621023496404],[106.18846188461885,9.404243868956641],[106.19566195661957,9.39917813714699],[106.19566195661957,9.383980941718036],[106.19206192061921,9.368783746289097],[106.18486184861848,9.362029437209571],[106.15606156061563,9.35696370539992],[106.01926019260196,9.31474927365285],[105.86805868058684,9.253960491937079],[105.76005760057603,9.21174606019001],[105.54045540455405,9.129005773965758],[105.51525515255156,9.108742846727168],[105.46845468454683,9.061462683170447],[105.44325443254434,9.041199755931856],[105.43245432454324,9.027691137772791],[105.42885428854288,9.010805365073963],[105.42525425254252,9.0074282105342],[105.41445414454148,9.004051055994438],[105.40725407254075,9.000673901454675],[105.40725407254075,8.995608169645024],[105.40725407254075,8.985476706025722],[105.40725407254075,8.98041097421607],[105.33525335253353,8.84025906081581],[105.3136531365314,8.811553247227806],[105.29205292052922,8.787913165449453],[105.259652596526,8.760895929131323],[105.21645216452168,8.754141620051797],[105.1840518405184,8.740633001892732],[105.15525155251555,8.705172879225202],[105.12645126451264,8.65958129293837],[105.10125101251015,8.634252633890128],[105.03645036450365,8.615678283921412],[104.85644856448567,8.565020965824928],[104.83124831248313,8.568398120364705],[104.82764827648276,8.573463852174342],[104.82044820448203,8.576841006714119],[104.81324813248136,8.581906738523756],[104.75204752047523,8.59034962487317],[104.72684726847268,8.598792511222584],[104.72324723247232,8.602169665762347],[104.71964719647195,8.613989706651537],[104.72684726847268,8.615678283921412],[104.74124741247414,8.612301129381649],[104.75924759247596,8.615678283921412],[104.809648096481,8.647761252049179],[104.82044820448203,8.654515561128719],[104.82764827648276,8.656204138398593],[104.83484834848349,8.661269870208244],[104.83844838448385,8.671401333827546],[104.83484834848349,8.681532797446835],[104.8240482404824,8.686598529256486],[104.82044820448203,8.691664261066137],[104.83124831248313,8.698418570145662],[104.84564845648458,8.698418570145662],[104.91044910449108,8.684909951986612],[104.92484924849248,8.688287106526374],[104.9428494284943,8.696729992875788],[104.95724957249575,8.706861456495076],[104.96444964449648,8.718681497384253],[104.93924939249393,8.708550033764965],[104.90684906849071,8.700107147415551],[104.87444874448744,8.698418570145662],[104.85284852848531,8.711927188304728],[104.84924849248495,8.723747229193904],[104.85284852848531,8.728812961003555],[104.8636486364864,8.732190115543318],[104.88164881648817,8.733878692813207],[104.90324903249035,8.733878692813207],[104.91044910449108,8.73556727008308],[104.92844928449284,8.747387310972272],[104.92844928449284,8.754141620051797],[104.91764917649175,8.771027392750625],[104.91764917649175,8.791290319989216],[104.92124921249211,8.809864669957932],[104.85644856448567,8.781158856369913],[104.81684816848167,8.771027392750625],[104.79164791647918,8.78453601090969],[104.77364773647736,8.818307556307332],[104.78444784447845,8.855456256244764],[104.79524795247954,8.890916378912294],[104.81324813248136,8.936507965199127],[104.809648096481,8.975345242406433],[104.80604806048063,9.046265487741508],[104.809648096481,9.132382928505521],[104.82044820448203,9.193171710221293],[104.8240482404824,9.340077932701092],[104.82764827648276,9.400866714416864],[104.83124831248313,9.514001391499008],[104.83484834848349,9.556215823246077],[104.85644856448567,9.738582168393407],[104.87084870848707,9.792616641029653],[104.89244892448926,9.85171684547555],[104.93924939249393,9.850028268205662],[104.97164971649715,9.853405422745439],[104.97524975249752,9.871979772714141],[104.99324993249934,9.888865545412969],[105.05445054450547,9.932768554429913],[105.0760507605076,9.942900018049215],[105.08685086850869,9.93614570896969],[105.09045090450905,9.919259936270862],[105.11205112051124,9.856782577285202],[105.11205112051124,9.870291195444253],[105.10845108451088,9.90912847265156],[105.10845108451088,9.953031481668518],[105.10125101251015,9.973294408907108],[105.08685086850869,9.996934490685462],[105.04365043650438,10.05434611786147],[105.00405004050043,10.091494817798889],[104.98244982449825,10.103314858688066],[104.96444964449648,10.106692013227843],[104.92484924849248,10.09656054960854],[104.89964899648999,10.09656054960854],[104.86724867248671,10.11682347684713],[104.84564845648458,10.147217867705024],[104.8240482404824,10.18098941310268],[104.80604806048063,10.206318072150921],[104.77364773647736,10.226580999389512],[104.73764737647377,10.231646731199163],[104.70884708847092,10.22151526757986],[104.680046800468,10.199563763071382],[104.67644676446764,10.189432299452093],[104.67644676446764,10.18098941310268],[104.67644676446764,10.17423510402314],[104.66564665646655,10.172546526753266],[104.65844658446588,10.167480794943614],[104.65484654846551,10.148906444974898],[104.65124651246515,10.143840713165261],[104.61524615246151,10.147217867705024],[104.6116461164612,10.143840713165261],[104.60804608046084,10.15397217678455],[104.60804608046084,10.160726485864089],[104.61524615246151,10.167480794943614],[104.6116461164612,10.179300835832791],[104.60804608046084,10.18605514491233],[104.59724597245975,10.20125234034127],[104.59364593645938,10.209695226690684],[104.59364593645938,10.2367124630088],[104.59004590045902,10.260352544787168],[104.57924579245793,10.275549740216107],[104.55044550445507,10.295812667454697],[104.5468454684547,10.289058358375172],[104.5468454684547,10.287369781105284],[104.5468454684547,10.282304049295632],[104.53604536045361,10.282304049295632],[104.53604536045361,10.309321285613763],[104.52524525245252,10.329584212852353],[104.5036450364504,10.356601449170483],[104.50004500045003,10.370110067329534],[104.5036450364504,10.373487221869297],[104.51084510845112,10.373487221869297],[104.5180451804518,10.378552953678948],[104.52524525245252,10.390372994568125],[104.52884528845289,10.398815880917539],[104.52884528845289,10.408947344536841],[104.52524525245252,10.419078808156144],[104.5180451804518,10.419078808156144],[104.51084510845112,10.40388161272719],[104.50004500045003,10.392061571838013],[104.48564485644857,10.3836186854886],[104.47124471244712,10.378552953678948],[104.45324453244535,10.380241530948837],[104.45324453244535,10.390372994568125],[104.45684456844572,10.407258767266953],[104.44964449644499,10.419078808156144],[104.44964449644499,10.425833117235669],[104.43164431644317,10.44609604447426],[104.42084420844208,10.452850353553785],[104.40644406444068,10.44609604447426],[104.3740437404374,10.48155616714179],[104.36324363243631,10.48831047622133],[104.33084330843309,10.48831047622133],[104.31644316443163,10.48155616714179],[104.3056430564306,10.478179012602027],[104.29844298442987,10.48155616714179],[104.29124291242914,10.496753362570743],[104.28764287642878,10.540656371587687],[104.27324273242732,10.549099257937101],[104.26964269642696,10.552476412476864],[104.25524255242556,10.565985030635929],[104.25164251642519,10.57105076244558],[104.24444244442446,10.569362185175692],[104.23724237242374,10.564296453366055],[104.23004230042301,10.562607876096166],[104.22284222842228,10.57105076244558],[104.20844208442088,10.55078783520699],[104.17964179641797,10.549099257937101],[104.12924129241293,10.562607876096166],[104.11484114841147,10.560919298826278],[104.08964089640898,10.554164989746752],[104.07164071640716,10.55585356701664],[103.97443974439744,10.582870803334757],[103.96003960039599,10.584559380604645],[103.94563945639459,10.587936535144408],[103.91683916839168,10.611576616922761],[103.91683916839168,10.6183309260023],[103.89523895238955,10.658856780479482],[103.89163891638918,10.658856780479482],[103.87723877238773,10.658856780479482],[103.87363873638736,10.660545357749356],[103.87363873638736,10.663922512289133],[103.87363873638736,10.66898824409877],[103.87363873638736,10.672365398638547],[103.870038700387,10.679119707718073],[103.870038700387,10.694316903147012],[103.86643866438664,10.699382634956663],[103.8592385923859,10.679119707718073],[103.8592385923859,10.658856780479482],[103.86643866438664,10.621708080542064],[103.86283862838627,10.603133730573347],[103.8556385563856,10.58624795787452],[103.83403834038342,10.55585356701664],[103.81963819638196,10.54403352612745],[103.80883808838087,10.537279217047924],[103.7908379083791,10.535590639778036],[103.76563765637655,10.535590639778036],[103.75483754837552,10.537279217047924],[103.74763747637479,10.542344948857576],[103.74403744037443,10.549099257937101],[103.7368373683737,10.55585356701664],[103.7260372603726,10.559230721556403],[103.70803708037079,10.559230721556403],[103.70083700837012,10.562607876096166],[103.70083700837012,10.55585356701664],[103.72243722437224,10.54403352612745],[103.74043740437406,10.525459176158748],[103.74763747637479,10.50857340345992],[103.7260372603726,10.501819094380394],[103.69363693636939,10.503507671650269],[103.65403654036544,10.495064785300855],[103.63603636036362,10.495064785300855],[103.62523625236253,10.500130517110506],[103.6180361803618,10.515327712539445],[103.61443614436143,10.52883633069851],[103.61443614436143,10.535590639778036],[103.61443614436143,10.538967794317813],[103.61083610836107,10.55078783520699],[103.6072360723607,10.55585356701664],[103.60003600036003,10.55585356701664],[103.5928359283593,10.554164989746752],[103.58923589235894,10.55078783520699],[103.58563585635858,10.549099257937101],[103.57843578435785,10.55078783520699],[103.57123571235712,10.55585356701664],[103.56043560435603,10.562607876096166],[103.55323553235536,10.58624795787452],[103.54243542435427,10.596379421493822],[103.52443524435245,10.611576616922761],[103.50643506435063,10.604822307843236],[103.50283502835032,10.616642348732412],[103.50643506435063,10.635216698701129],[103.52083520835208,10.645348162320417],[103.52803528035281,10.652102471399942],[103.5388353883539,10.66898824409877],[103.54603546035463,10.689251171337375],[103.549635496355,10.702759789496426],[103.56763567635676,10.726399871274793],[103.6072360723607,10.73821991216397],[103.6828368283683,10.741597066703733],[103.68643686436866,10.741597066703733],[103.69003690036902,10.741597066703733],[103.69003690036902,10.743285643973621],[103.69003690036902,10.748351375783258],[103.67563675636757,10.751728530323035],[103.6720367203672,10.75848283940256],[103.67923679236793,10.80069727114963],[103.6828368283683,10.809140157499044],[103.69003690036902,10.81589446657857],[103.70083700837012,10.822648775658095],[103.71163711637115,10.831091662007509],[103.72243722437224,10.844600280166574],[103.7260372603726,10.85642032105575],[103.72243722437224,10.895257598263058],[103.70803708037079,10.930717720930588],[103.67923679236793,10.979686461757197],[103.66123661236611,11.03034377985368],[103.67563675636757,11.064115325251322],[103.65403654036544,11.077623943410387],[103.64683646836471,11.082689675220038],[103.61443614436143,11.086066829759801],[103.6036360363604,11.091132561569452],[103.59643596435967,11.097886870648978],[103.58203582035821,11.133346993316522],[103.56043560435603,11.151921343285224],[103.53163531635317,11.162052806904526],[103.50283502835032,11.16542996144429],[103.50643506435063,11.162052806904526],[103.51003510035099,11.158675652364764],[103.49563495634959,11.138412725126173],[103.48843488434886,11.138412725126173],[103.4848348483485,11.145167034205699],[103.48123481234813,11.148544188745461],[103.46683466834668,11.151921343285224],[103.46683466834668,11.145167034205699],[103.4740347403474,11.133346993316522],[103.46683466834668,11.118149797887568],[103.44883448834491,11.091132561569452],[103.46683466834668,11.099575447918866],[103.47043470434704,11.089443984299564],[103.46323463234631,11.070869634330862],[103.43803438034382,11.02527804804403],[103.4308343083431,11.006703698075313],[103.42723427234273,10.984752193566834],[103.41643416434164,10.957734957248718],[103.41283412834127,10.945914916359541],[103.41643416434164,10.937472030010127],[103.420034200342,10.9205862573113],[103.420034200342,10.908766216422123],[103.41643416434164,10.89356902099317],[103.40203402034024,10.885126134643755],[103.38763387633878,10.881748980103993],[103.37323373233733,10.885126134643755],[103.36963369633696,10.880060402834118],[103.36243362433623,10.876683248294341],[103.3516335163352,10.871617516484704],[103.34443344433447,10.895257598263058],[103.32283322833229,10.908766216422123],[103.2976329763298,10.9205862573113],[103.27603276032761,10.932406298200476],[103.23643236432366,10.908766216422123],[103.21843218432184,10.891880443723295],[103.2220322203222,10.87837182556423],[103.20763207632075,10.87837182556423],[103.19683196831971,10.876683248294341],[103.18603186031862,10.871617516484704],[103.18243182431826,10.864863207405165],[103.16083160831607,10.873306093754579],[103.13923139231395,10.876683248294341],[103.12843128431285,10.881748980103993],[103.13923139231395,10.89863475280282],[103.11043110431103,10.922274834581174],[103.10323103231036,10.92565198912095],[103.09603096030963,10.934094875470365],[103.09963099631,10.950980648169192],[103.10683106831067,10.96786642086802],[103.1140311403114,10.971243575407783],[103.11043110431103,11.001637966265662],[103.09963099631,11.052295284362145],[103.09963099631,11.08100109795015],[103.10323103231036,11.089443984299564],[103.11043110431103,11.099575447918866],[103.11763117631176,11.113084066077931],[103.11763117631176,11.131658416046633],[103.11763117631176,11.148544188745461],[103.1140311403114,11.160364229634638],[103.09963099631,11.187381465952768],[103.09603096030963,11.194135775032294],[103.09603096030963,11.202578661381708],[103.09243092430927,11.211021547731121],[103.0888308883089,11.217775856810647],[103.08163081630818,11.219464434080535],[103.06363063630636,11.219464434080535],[103.05643056430563,11.221153011350424],[103.06003060030599,11.231284474969712],[103.07083070830708,11.238038784049252],[103.07803078030781,11.244793093128777],[103.07083070830708,11.254924556748065],[103.07083070830708,11.261678865827605],[103.07803078030781,11.273498906716782],[103.10683106831067,11.298827565765023],[103.13563135631358,11.315713338463851],[103.14643146431467,11.302204720304786],[103.15363153631534,11.302204720304786],[103.15363153631534,11.317401915733726],[103.14283142831431,11.342730574781967],[103.13923139231395,11.357927770210921],[103.12483124831249,11.35286203840127],[103.11763117631176,11.349484883861507],[103.1140311403114,11.344419152051856],[103.09963099631,11.356239192941032],[103.09603096030963,11.366370656560335],[103.09603096030963,11.379879274719386],[103.09243092430927,11.398453624688102],[103.08523085230854,11.413650820117041],[103.07083070830708,11.433913747355632],[103.06363063630636,11.447422365514697],[103.07443074430745,11.444045210974934],[103.07803078030781,11.442356633705046],[103.07803078030781,11.432225170085758],[103.08523085230854,11.432225170085758],[103.09243092430927,11.444045210974934],[103.10323103231036,11.452488097324348],[103.1140311403114,11.457553829134],[103.12843128431285,11.460930983673762],[103.14283142831431,11.454176674594237],[103.16083160831607,11.43053659281587],[103.17523175231753,11.425470861006218],[103.14283142831431,11.484571065452116],[103.13203132031322,11.494702529071418],[103.13923139231395,11.504833992690706],[103.13923139231395,11.508211147230483],[103.13203132031322,11.508211147230483],[103.13203132031322,11.504833992690706],[103.12483124831249,11.494702529071418],[103.13203132031322,11.486259642722004],[103.12843128431285,11.47781675637259],[103.12123121231213,11.469373870023176],[103.1140311403114,11.467685292753288],[103.10323103231036,11.472751024562939],[103.09243092430927,11.491325374531655],[103.06363063630636,11.503145415420832],[103.05643056430563,11.525096919929311],[103.05643056430563,11.550425578977539],[103.05643056430563,11.570688506216143],[103.04923049230496,11.563934197136604],[103.05283052830532,11.584197124375194],[103.05643056430563,11.590951433454734],[103.04923049230496,11.590951433454734],[103.04203042030423,11.594328587994497],[103.03843038430387,11.604460051613785],[103.03843038430387,11.570688506216143],[103.0348303483035,11.553802733517315],[103.03123031230314,11.543671269898013],[103.02403024030241,11.543671269898013],[103.01323013230132,11.547048424437776],[102.99882998829992,11.543671269898013],[102.98442984429846,11.536916960818488],[102.97362973629737,11.528474074469074],[102.95562955629555,11.557179888057078],[102.97362973629737,11.570688506216143],[102.9808298082981,11.563934197136604],[102.99522995229955,11.550425578977539],[103.00243002430028,11.550425578977539],[102.99882998829992,11.558868465326952],[102.98802988029882,11.572377083486018],[102.9808298082981,11.584197124375194],[102.9808298082981,11.62472297885239],[102.99522995229955,11.636543019741566],[103.00603006030059,11.631477287931915],[103.02403024030241,11.623034401582501],[103.04203042030423,11.62472297885239],[103.04203042030423,11.631477287931915],[103.03123031230314,11.631477287931915],[103.02043020430204,11.633165865201804],[103.01323013230132,11.639920174281329],[103.00963009630095,11.646674483360854],[103.00963009630095,11.653428792440394],[103.01683016830168,11.653428792440394],[103.01683016830168,11.66018310151992],[103.00603006030059,11.655117369710268],[103.00243002430028,11.653428792440394],[102.99522995229955,11.653428792440394],[102.99522995229955,11.66018310151992],[102.98802988029882,11.673691719678985],[102.9808298082981,11.673691719678985],[102.9808298082981,11.653428792440394],[102.97362973629737,11.66018310151992],[102.97362973629737,11.63823159701144],[102.970029700297,11.63823159701144],[102.970029700297,11.666937410599445],[102.97722977229773,11.68720033783805],[102.98802988029882,11.70239753326699],[103.00243002430028,11.714217574156166],[103.01323013230132,11.719283305965817],[103.02043020430204,11.720971883235691],[103.03123031230314,11.719283305965817],[103.04203042030423,11.710840419616403],[103.05283052830532,11.705774687806752],[103.06723067230672,11.70746326507664],[103.07803078030781,11.715906151426054],[103.08523085230854,11.727726192315231],[103.07803078030781,11.727726192315231],[103.07083070830708,11.715906151426054],[103.05643056430563,11.715906151426054],[103.04203042030423,11.724349037775468],[103.03123031230314,11.734480501394756],[103.02403024030241,11.734480501394756],[102.9808298082981,11.714217574156166],[102.97722977229773,11.720971883235691],[102.970029700297,11.732791924124882],[102.96282962829628,11.746300542283933],[102.96282962829628,11.75812058317311],[102.95562955629555,11.766563469522524],[102.93402934029342,11.778383510411714],[102.89802898028984,11.830729405778072],[102.89442894428947,11.830729405778072],[102.90882908829087,11.796957860380417],[102.95562955629555,11.746300542283933],[102.970029700297,11.714217574156166],[102.96642966429664,11.697331801457338],[102.95562955629555,11.668625987869333],[102.95562955629555,11.653428792440394],[102.96642966429664,11.609525783423436],[102.96282962829628,11.592640010724608],[102.95562955629555,11.570688506216143],[102.95202952029524,11.58250854710532],[102.94482944829451,11.601082897074022],[102.94122941229415,11.614591515233087],[102.93762937629378,11.621345824312613],[102.91962919629196,11.63823159701144],[102.91242912429124,11.646674483360854],[102.90522905229051,11.666937410599445],[102.90882908829087,11.717594728695929],[102.90522905229051,11.741234810474296],[102.89442894428947,11.7699406240623],[102.82602826028261,11.857746642096203],[102.7828278282783,11.891518187493844],[102.77562775627757,11.903338228383035],[102.77562775627757,11.96750416463857],[102.76842768427684,12.011407173655527],[102.75042750427508,12.040112987243532],[102.63162631626318,12.151559087055787],[102.63162631626318,12.161690550675075],[102.65322653226531,12.160001973405201],[102.64242642426427,12.17519916883414],[102.60282602826027,12.203904982422145],[102.60642606426063,12.214036446041447],[102.60642606426063,12.220790755120973],[102.58842588425887,12.212347868771559],[102.57402574025741,12.208970714231796],[102.56322563225632,12.20221640515227],[102.55602556025559,12.183642055183554],[102.57042570425705,12.090770305340001],[102.5848258482585,12.067130223561648],[102.5848258482585,12.060375914482123],[102.58122581225814,12.048555873592946],[102.57402574025741,12.048555873592946],[102.56322563225632,12.053621605402583],[102.55242552425523,12.05699875994236],[102.54882548825492,12.060375914482123],[102.55242552425523,12.082327418990602],[102.54882548825492,12.090770305340001],[102.5308253082531,12.114410387118369],[102.50562505625055,12.132984737087071],[102.47322473224733,12.148181932516025],[102.36522365223652,12.185330632453443],[102.35082350823507,12.195462096072731],[102.33642336423367,12.19715067334262],[102.32562325623257,12.180264900643792],[102.31842318423185,12.180264900643792],[102.29682296822972,12.190396364263094],[102.28962289622899,12.193773518802857],[102.28602286022863,12.20221640515227],[102.28602286022863,12.210659291501685],[102.28962289622899,12.21741360058121],[102.28962289622899,12.220790755120973],[102.28242282422826,12.241053682359563],[102.26442264422644,12.271448073217456],[102.26442264422644,12.290022423186173],[102.28962289622899,12.283268114106633],[102.31482314823148,12.291711000456047],[102.33642336423367,12.306908195885],[102.35082350823507,12.323793968583814],[102.36162361623616,12.347434050362182],[102.35082350823507,12.367696977600772],[102.33642336423367,12.376139863950186],[102.32562325623257,12.366008400330884],[102.3328233282333,12.362631245791121],[102.34002340023403,12.35756551398147],[102.3436234362344,12.350811204901945],[102.3436234362344,12.344056895822419],[102.32922329223294,12.327171123123591],[102.31122311223112,12.317039659504289],[102.29322293222936,12.318728236774177],[102.28242282422826,12.340679741282642],[102.28602286022863,12.386271327569474],[102.29322293222936,12.40653425480808],[102.30402304023039,12.42679718204667],[102.29682296822972,12.42679718204667],[102.29322293222936,12.42004287296713],[102.27522275222753,12.393025636649014],[102.27162271622717,12.393025636649014],[102.26442264422644,12.40484567753819],[102.26442264422644,12.416665718427367],[102.26442264422644,12.430174336586433],[102.27162271622717,12.44030580020572],[102.25722257222571,12.431862913856307],[102.24282242822431,12.42679718204667],[102.22842228422286,12.428485759316544],[102.22122221222213,12.44030580020572],[102.20682206822067,12.435240068396084],[102.19962199621995,12.433551491126195],[102.21042210422104,12.428485759316544],[102.2140221402214,12.42004287296713],[102.2140221402214,12.409911409347842],[102.20682206822067,12.39977994572854],[102.2140221402214,12.39977994572854],[102.23562235622359,12.413288563887605],[102.24282242822431,12.403157100268302],[102.24642246422468,12.393025636649014],[102.24642246422468,12.382894173029712],[102.24282242822431,12.372762709410424],[102.26442264422644,12.35756551398147],[102.27522275222753,12.325482545853703],[102.26442264422644,12.306908195885],[102.22842228422286,12.323793968583814],[102.16722167221673,12.386271327569474],[102.13842138421387,12.401468522998428],[102.12402124021241,12.409911409347842],[102.12762127621278,12.42004287296713],[102.10962109621096,12.44030580020572],[102.08802088020883,12.463945881984088],[102.07362073620737,12.48927454103233],[102.07722077220774,12.50953746827092],[102.0808208082081,12.501094581921507],[102.08442084420847,12.497717427381744],[102.0916209162092,12.497717427381744],[102.09882098820987,12.496028850111855],[102.08442084420847,12.50447173646127],[102.0916209162092,12.512914622810683],[102.1060210602106,12.523046086429986],[102.11322113221132,12.536554704589037],[102.1060210602106,12.536554704589037],[102.09882098820987,12.528111818239623],[102.0916209162092,12.523046086429986],[102.08442084420847,12.52473466369986],[102.07722077220774,12.529800395509511],[102.08802088020883,12.538243281858925],[102.0916209162092,12.541620436398688],[102.09882098820987,12.543309013668576],[102.04842048420483,12.541620436398688],[102.04482044820452,12.550063322748102],[102.06282062820628,12.570326249986692],[102.02322023220233,12.568637672716818],[102.00882008820088,12.565260518177041],[102.00882008820088,12.556817631827627],[102.02322023220233,12.548374745478213],[102.03042030420306,12.534866127319162],[102.04482044820452,12.523046086429986],[102.06282062820628,12.523046086429986],[102.05922059220592,12.511226045540795],[102.05922059220592,12.497717427381744],[102.05562055620555,12.46901161379374],[102.02322023220233,12.519668931890209],[102.00882008820088,12.534866127319162],[101.99081990819911,12.5399318591288],[101.9728197281973,12.541620436398688],[101.9620196201962,12.536554704589037],[101.9620196201962,12.580457713605995],[101.95841958419584,12.590589177225283],[101.95481954819547,12.600720640844585],[101.95121951219511,12.605786372654237],[101.94761947619475,12.60240921811446],[101.94761947619475,12.595654909034934],[101.93681936819371,12.588900599955409],[101.93321933219335,12.583834868145757],[101.94761947619475,12.5399318591288],[101.94761947619475,12.529800395509511],[101.91521915219153,12.555129054557753],[101.90081900819007,12.570326249986692],[101.8936189361894,12.583834868145757],[101.91161911619116,12.577080559066232],[101.9080190801908,12.593966331765046],[101.90081900819007,12.597343486304823],[101.8936189361894,12.597343486304823],[101.88641886418867,12.597343486304823],[101.87921879218794,12.605786372654237],[101.87201872018721,12.612540681733762],[101.87201872018721,12.620983568083176],[101.86481864818649,12.632803608972353],[101.85041850418503,12.654755113480832],[101.8288182881829,12.673329463449534],[101.80721807218072,12.688526658878487],[101.78201782017823,12.700346699767664],[101.76761767617677,12.705412431577315],[101.70281702817027,12.70710100884719],[101.68481684816851,12.702035277037538],[101.67761677616778,12.688526658878487],[101.66681666816669,12.673329463449534],[101.65961659616596,12.659820845290483],[101.6416164161642,12.651377958941069],[101.62361623616238,12.64968938167118],[101.58041580415806,12.653066536210943],[101.57321573215734,12.64968938167118],[101.57321573215734,12.642935072591655],[101.57321573215734,12.636180763512115],[101.56961569615697,12.632803608972353],[101.56601566015661,12.631115031702478],[101.55521555215552,12.632803608972353],[101.54081540815412,12.631115031702478],[101.50841508415084,12.639557918051892],[101.46521465214653,12.632803608972353],[101.44361443614434,12.624360722622939],[101.43281432814331,12.615917836273525],[101.42921429214294,12.597343486304823],[101.41841418414185,12.595654909034934],[101.3932139321393,12.612540681733762],[101.3248132481325,12.642935072591655],[101.24921249212491,12.659820845290483],[101.08721087210876,12.680083772529073],[101.06561065610657,12.67670661798931],[101.03321033210335,12.656443690750706],[100.99000990009898,12.64968938167118],[100.97920979209795,12.639557918051892],[100.97560975609758,12.622672145353064],[100.97560975609758,12.597343486304823],[100.92520925209254,12.619294990813287],[100.92520925209254,12.626049299892827],[100.939609396094,12.636180763512115],[100.93600936009364,12.653066536210943],[100.91800918009181,12.663197999830246],[100.90000900009,12.653066536210943],[100.88920889208896,12.658132268020594],[100.87840878408787,12.658132268020594],[100.87120871208714,12.654755113480832],[100.85680856808568,12.653066536210943],[100.86400864008641,12.656443690750706],[100.86760867608677,12.659820845290483],[100.87120871208714,12.666575154370008],[100.87120871208714,12.673329463449534],[100.84960849608495,12.673329463449534],[100.85320853208532,12.680083772529073],[100.86040860408605,12.695280967958013],[100.86400864008641,12.700346699767664],[100.85680856808568,12.702035277037538],[100.83880838808392,12.70710100884719],[100.85320853208532,12.752692595134022],[100.86760867608677,12.771266945102738],[100.8856088560886,12.762824058753324],[100.89280892808927,12.762824058753324],[100.90000900009,12.772955522372612],[100.90720907209072,12.783086985991915],[100.91440914409145,12.793218449611217],[100.92160921609218,12.81010422231003],[100.91800918009181,12.826989995008859],[100.91440914409145,12.840498613167924],[100.90720907209072,12.854007231326989],[100.86760867608677,12.906353126693347],[100.86400864008641,12.919861744852412],[100.86760867608677,12.928304631201826],[100.8748087480875,12.935058940281351],[100.8856088560886,12.940124672091002],[100.89280892808927,12.948567558440416],[100.89280892808927,12.955321867519956],[100.89640896408963,12.973896217488658],[100.90000900009,12.982339103838072],[100.90720907209072,12.97727337202842],[100.91800918009181,12.982339103838072],[100.9288092880929,12.992470567457374],[100.93240932409327,13.002602031076663],[100.93240932409327,13.02624211285503],[100.92160921609218,13.043127885553844],[100.91080910809109,13.056636503712909],[100.90720907209072,13.075210853681625],[100.90000900009,13.080276585491276],[100.89280892808927,13.083653740031039],[100.88200882008823,13.087030894570802],[100.87840878408787,13.098850935459978],[100.90000900009,13.125868171778109],[100.91440914409145,13.154573985366113],[100.93600936009364,13.183279798954118],[100.94680946809467,13.200165571652946],[100.9432094320943,13.220428498891536],[100.93240932409327,13.255888621559066],[100.9288092880929,13.266020085178369],[100.91440914409145,13.286283012416959],[100.91080910809109,13.293037321496485],[100.91440914409145,13.304857362385675],[100.91800918009181,13.3116116714652],[100.92520925209254,13.314988826004964],[100.93240932409327,13.338628907783317],[100.94680946809467,13.343694639592968],[100.96480964809649,13.34876037140262],[100.98280982809831,13.358891835021922],[100.98640986409868,13.372400453180973],[100.98640986409868,13.39604053495934],[100.98640986409868,13.417992039467805],[100.97200972009722,13.436566389436521],[100.97920979209795,13.458517893945],[100.99720997209971,13.488912284802879],[100.99720997209971,13.495666593882419],[100.98280982809831,13.487223707533005],[100.97560975609758,13.47878082118359],[100.96480964809649,13.472026512104051],[100.95040950409503,13.468649357564288],[100.88920889208896,13.468649357564288],[100.86400864008641,13.472026512104051],[100.81360813608137,13.485535130263116],[100.77040770407706,13.490600862072768],[100.74880748807487,13.500732325692056],[100.68040680406807,13.50917521204147],[100.6480064800648,13.52099525293066],[100.60840608406085,13.548012489248777],[100.59040590405903,13.554766798328302],[100.59040590405903,13.561521107407842],[100.59040590405903,13.57165257102713],[100.59760597605975,13.58347261191632],[100.59760597605975,13.596981230075372],[100.59760597605975,13.612178425504325],[100.58680586805872,13.59191549826572],[100.58320583205835,13.576718302836781],[100.58320583205835,13.534503871089711],[100.57600576005763,13.519306675660772],[100.55440554405544,13.510863789311358],[100.42840428404287,13.488912284802879],[100.3816038160382,13.492289439342642],[100.35640356403565,13.488912284802879],[100.33840338403382,13.482157975723354],[100.29160291602915,13.505798057501707],[100.27360273602739,13.51592952112101],[100.26640266402666,13.497355171152293],[100.2520025200252,13.485535130263116],[100.23760237602374,13.477092243913702],[100.15120151201512,13.443320698516047],[100.11160111601117,13.436566389436521],[100.09000090000899,13.426434925817219],[100.06840068400686,13.417992039467805],[100.0540005400054,13.412926307658168],[100.03960039600395,13.402794844038866],[100.03240032400328,13.382531916800275],[100.02160021600218,13.367334721371321],[100,13.372400453180973],[100.01440014400146,13.365646144101447],[100.01440014400146,13.34876037140262],[100.00720007200073,13.33356317597368],[99.99279992799927,13.321743135084489],[99.97839978399787,13.316677403274852],[99.96399963999642,13.309923094195312],[99.96039960399605,13.293037321496485],[99.96039960399605,13.29134874422661],[99.96759967599678,13.259265776098829],[100,13.218739921621648],[100.05760057600577,13.169771180795053],[100.06120061200613,13.16639402625529],[100.06840068400686,13.15963971717575],[100.07560075600759,13.152885408096225],[100.07560075600759,13.142753944476922],[100.07920079200795,13.134311058127523],[100.08640086400862,13.095473780920216],[100.10440104401044,13.056636503712909],[100.10080100801008,13.039750731014081],[100.09360093600935,13.024553535585142],[100.06120061200613,12.980650526568184],[100.0540005400054,12.965453331139244],[100.04320043200431,12.933370363011477],[100.02880028800291,12.862450117676403],[100.02520025200255,12.847252922247463],[99.98919989199891,12.78984129507144],[99.97479974799751,12.751004017864147],[99.96399963999642,12.710478163386952],[99.96039960399605,12.668263731639897],[99.96039960399605,12.636180763512115],[99.96039960399605,12.626049299892827],[99.97839978399787,12.560194786367404],[99.98199981999824,12.5399318591288],[99.97839978399787,12.47745450014314],[99.98199981999824,12.453814418364786],[100.01080010800109,12.382894173029712],[100.01080010800109,12.369385554870647],[100.00360003600036,12.354188359441707],[99.98199981999824,12.27989095956687],[99.98199981999824,12.269759495947568],[99.99279992799927,12.25962803232828],[100,12.249496568708977],[100.01080010800109,12.241053682359563],[100.01440014400146,12.230922218740275],[100.01800018000182,12.210659291501685],[100.01800018000182,12.20221640515227],[100.02160021600218,12.192084941532968],[100.01440014400146,12.180264900643792],[100.01080010800109,12.17519916883414],[99.99279992799927,12.163379127944964],[99.98919989199891,12.153247664325662],[99.98199981999824,12.117787541658132],[99.97839978399787,12.10765607803883],[99.95679956799569,12.0721959553713],[99.85599855998561,11.969192741908458],[99.83079830798312,11.9252897328915],[99.82359823598239,11.878009569334793],[99.83799837998379,11.844238023937137],[99.83439834398342,11.837483714857598],[99.81999819998202,11.835795137587724],[99.8127981279813,11.83241798304796],[99.80919809198093,11.823975096698547],[99.80919809198093,11.813843633079244],[99.81639816398166,11.775006355871938],[99.81639816398166,11.7699406240623],[99.8127981279813,11.761497737712887],[99.8127981279813,11.753054851363473],[99.81639816398166,11.741234810474296],[99.78039780397808,11.73785765593452],[99.75159751597516,11.709151842346515],[99.6687966879669,11.577442815295669],[99.66519665196654,11.567311351676366],[99.66159661596618,11.550425578977539],[99.64359643596435,11.523408342659422],[99.63639636396363,11.504833992690706],[99.63639636396363,11.481193910912353],[99.63279632796326,11.460930983673762],[99.62559625596259,11.440668056435172],[99.60039600396004,11.384945006529037],[99.59679596795968,11.374813542909749],[99.59319593195931,11.364682079290446],[99.57519575195755,11.344419152051856],[99.56799567995682,11.334287688432553],[99.56799567995682,11.276876061256544],[99.56799567995682,11.254924556748065],[99.58599585995859,11.214398702270884],[99.58599585995859,11.195824352302182],[99.56799567995682,11.178938579603354],[99.5607956079561,11.199201506841945],[99.54639546395464,11.199201506841945],[99.52839528395288,11.187381465952768],[99.51399513995142,11.172184270523815],[99.50679506795069,11.162052806904526],[99.49959499594996,11.148544188745461],[99.4959949599496,11.133346993316522],[99.49239492394923,11.114772643347806],[99.4959949599496,11.092821138839327],[99.51039510395105,11.057361016171797],[99.51399513995142,11.03878666620308],[99.51399513995142,11.01852373896449],[99.50319503195033,10.996572234456025],[99.49959499594996,10.984752193566834],[99.49239492394923,10.96786642086802],[99.4959949599496,10.944226339089653],[99.51039510395105,10.902011907342583],[99.51399513995142,10.881748980103993],[99.51039510395105,10.866551784675053],[99.50319503195033,10.866551784675053],[99.4959949599496,10.873306093754579],[99.49239492394923,10.87837182556423],[99.47439474394747,10.87837182556423],[99.45999459994601,10.876683248294341],[99.45279452794529,10.874994671024467],[99.4419944199442,10.869928939214816],[99.43839438394383,10.861486052865402],[99.43839438394383,10.819271621118332],[99.43479434794347,10.802385848419505],[99.37359373593739,10.71120267584584],[99.36999369993703,10.702759789496426],[99.37359373593739,10.692628325877138],[99.37719377193775,10.685874016797598],[99.37359373593739,10.680808284987961],[99.3627936279363,10.680808284987961],[99.34479344793448,10.67574255317831],[99.32679326793271,10.663922512289133],[99.31239312393126,10.647036739590305],[99.30159301593017,10.631839544161352],[99.29439294392944,10.611576616922761],[99.28719287192871,10.562607876096166],[99.27639276392767,10.545722103397338],[99.26559265592658,10.542344948857576],[99.25479254792549,10.540656371587687],[99.2439924399244,10.535590639778036],[99.24039240392403,10.522082021618985],[99.2439924399244,10.513639135269571],[99.24759247592476,10.510261980729808],[99.25839258392585,10.50857340345992],[99.26919269192695,10.50857340345992],[99.26199261992622,10.495064785300855],[99.25119251192513,10.483244744411678],[99.2439924399244,10.47311328079239],[99.24039240392403,10.456227508093562],[99.24759247592476,10.444407467204371],[99.27639276392767,10.42414453996578],[99.28719287192871,10.412324499076604],[99.29079290792907,10.398815880917539],[99.29079290792907,10.380241530948837],[99.28359283592835,10.365044335519897],[99.27639276392767,10.356601449170483],[99.26559265592658,10.356601449170483],[99.25479254792549,10.356601449170483],[99.2331923319233,10.343092831011418],[99.22959229592294,10.356601449170483],[99.22239222392227,10.365044335519897],[99.21159211592118,10.371798644599423],[99.20079200792009,10.378552953678948],[99.18639186391863,10.371798644599423],[99.17199171991723,10.370110067329534],[99.16119161191614,10.36842149005966],[99.15039150391505,10.356601449170483],[99.15039150391505,10.346469985551181],[99.15759157591577,10.302566976534237],[99.16839168391687,10.287369781105284],[99.20799207992081,10.253598235707628],[99.22599225992263,10.231646731199163],[99.23679236792367,10.229958153929275],[99.25479254792549,10.235023885738926],[99.24039240392403,10.214760958500335],[99.20079200792009,10.211383803960558],[99.19359193591936,10.196186608531619],[99.18639186391863,10.172546526753266],[99.16119161191614,10.128643517736307],[99.15039150391505,10.103314858688066],[99.15399153991541,10.07629762236995],[99.1647916479165,10.057723272401233],[99.1755917559176,10.042526076972294],[99.1791917919179,10.025640304273466],[99.1755917559176,10.01382026338429],[99.16119161191614,10.003688799764987],[99.15759157591577,9.990180181605936],[99.1647916479165,9.946277172588978],[99.1647916479165,9.86691404090449],[99.16839168391687,9.865225463634616],[99.16839168391687,9.861848309094853],[99.17199171991723,9.856782577285202],[99.17199171991723,9.850028268205662],[99.16839168391687,9.844962536396025],[99.15399153991541,9.834831072776723],[99.15039150391505,9.829765340967072],[99.14679146791468,9.819633877347783],[99.14679146791468,9.809502413728481],[99.14319143191432,9.790928063759779],[99.14319143191432,9.787550909220002],[99.14679146791468,9.767287981981411],[99.16119161191614,9.72676212750423],[99.16839168391687,9.687924850296923],[99.17199171991723,9.665973345788458],[99.18279182791827,9.64402184127998],[99.21159211592118,9.598430254993147],[99.2187921879219,9.58154448229432],[99.2187921879219,9.55959297778584],[99.22239222392227,9.542707205087012],[99.26559265592658,9.466721227942301],[99.32319323193235,9.390735250797576],[99.31599315993162,9.389046673527687],[99.31239312393126,9.389046673527687],[99.30519305193053,9.390735250797576],[99.2979929799298,9.390735250797576],[99.29079290792907,9.390735250797576],[99.29079290792907,9.385669518987925],[99.29079290792907,9.382292364448162],[99.28719287192871,9.37722663263851],[99.26559265592658,9.363718014479446],[99.25479254792549,9.35696370539992],[99.23679236792367,9.33670077816133],[99.22959229592294,9.319815005462502],[99.2331923319233,9.277600573715432],[99.25479254792549,9.2320089874286],[99.30159301593017,9.221877523809297],[99.3519935199352,9.218500369269535],[99.37719377193775,9.193171710221293],[99.40959409594097,9.19654886476107],[99.44559445594456,9.19654886476107],[99.47439474394747,9.201614596570707],[99.50319503195033,9.220188946539423],[99.51039510395105,9.235386141968362],[99.51399513995142,9.253960491937079],[99.52119521195215,9.269157687366018],[99.53559535595355,9.280977728255195],[99.54639546395464,9.282666305525083],[99.59319593195931,9.27422341917567],[99.61119611196114,9.277600573715432],[99.62199621996223,9.284354882794958],[99.63279632796326,9.291109191874497],[99.63999639996399,9.29448634641426],[99.67239672396727,9.302929232763674],[99.69039690396903,9.31474927365285],[99.69039690396903,9.316437850922739],[99.72639726397267,9.313060696382962],[99.73359733597334,9.311372119113088],[99.74079740797407,9.319815005462502],[99.75159751597516,9.319815005462502],[99.77319773197735,9.313060696382962],[99.78039780397808,9.307994964573325],[99.78759787597875,9.313060696382962],[99.79839798397984,9.318126428192613],[99.8019980199802,9.323192160002264],[99.81639816398166,9.311372119113088],[99.85239852398524,9.29448634641426],[99.85599855998561,9.284354882794958],[99.85239852398524,9.27422341917567],[99.85959859598597,9.257337646476842],[99.87759877598779,9.226943255618949],[99.88479884798846,9.233697564698488],[99.88479884798846,9.157711587553763],[99.89199891998919,9.139137237585047],[99.89919899198992,9.125628619425996],[99.90999909999101,9.113808578536805],[99.91719917199174,9.101988537647628],[99.9207992079921,9.086791342218689],[99.9207992079921,9.037822601392094],[99.9207992079921,9.027691137772791],[99.9315993159932,9.012493942343852],[99.9315993159932,9.000673901454675],[99.9315993159932,8.998985324184787],[99.92799927999283,8.993919592375136],[99.9207992079921,8.98716528329561],[99.9207992079921,8.98041097421607],[99.9207992079921,8.955082315167843],[99.9315993159932,8.879096338023118],[99.92799927999283,8.863899142594178],[99.93879938799387,8.831816174466397],[99.96039960399605,8.63762978842989],[99.96759967599678,8.605546820302123],[99.98559985599854,8.580218161253882],[100.03960039600395,8.544758038586338],[100.05040050400504,8.531249420427287],[100.0540005400054,8.514363647728459],[100.07560075600759,8.4704606387115],[100.09360093600935,8.446820556933147],[100.09720097200972,8.426557629694557],[100.10440104401044,8.418114743345143],[100.11160111601117,8.413049011535492],[100.13320133201336,8.40291754791619],[100.13680136801366,8.401228970646315],[100.14400144001439,8.389408929757138],[100.15840158401585,8.386031775217361],[100.1728017280173,8.389408929757138],[100.1872018720187,8.397851816106552],[100.17640176401767,8.426557629694557],[100.17640176401767,8.467083484171738],[100.16560165601658,8.500855029569394],[100.12960129601299,8.514363647728459],[100.15120151201512,8.522806534077873],[100.18000180001803,8.500855029569394],[100.20880208802089,8.4704606387115],[100.21960219602198,8.448509134203022],[100.27000270002702,8.316800107152176],[100.30240302403024,8.119236566575907],[100.34200342003419,7.938558798698452],[100.36720367203674,7.825424121616308],[100.4392043920439,7.477577204020477],[100.50040500405004,7.33404813608044],[100.55440554405544,7.249619272586315],[100.5688056880569,7.229356345347725],[100.57600576005763,7.20909341810912],[100.57240572405726,7.195584799950069],[100.54720547205471,7.197273377219943],[100.53640536405368,7.210781995379008],[100.50040500405004,7.242864963506776],[100.47880478804791,7.2546850043959665],[100.47160471604718,7.258062158935729],[100.44280442804427,7.258062158935729],[100.4248042480425,7.268193622555017],[100.4392043920439,7.293522281603259],[100.42840428404287,7.3256052497310264],[100.42120421204214,7.3695082587479845],[100.40680406804069,7.3779511450973985],[100.41040410404105,7.459002854051761],[100.40680406804069,7.528234522116961],[100.38880388803886,7.565383222054379],[100.36000360003601,7.578891840213444],[100.32400324003243,7.573826108403793],[100.30240302403024,7.540054563006137],[100.29520295202951,7.5231687903073095],[100.28800288002878,7.518103058497658],[100.27720277202775,7.5231687903073095],[100.27360273602739,7.531611676656723],[100.27000270002702,7.536677408466375],[100.27000270002702,7.5451202948157885],[100.27000270002702,7.556940335704965],[100.27720277202775,7.577203262943556],[100.30960309603097,7.597466190182146],[100.32400324003243,7.616040540150863],[100.32760327603279,7.654877817358155],[100.32040320403206,7.707223712724527],[100.3060030600306,7.757881030820997],[100.28800288002878,7.78827542167889],[100.27000270002702,7.795029730758429],[100.2520025200252,7.791652576218652],[100.23040230402307,7.784898267139127],[100.21240212402125,7.781521112599364],[100.20160201602016,7.77307822624995],[100.15480154801548,7.732552371772769],[100.14400144001439,7.719043753613704],[100.14400144001439,7.700469403644988],[100.15480154801548,7.616040540150863],[100.1728017280173,7.568760376594142],[100.18000180001803,7.531611676656723],[100.1836018360184,7.5147259039578955],[100.1980019800198,7.50797159487837],[100.1980019800198,7.504594440338593],[100.21960219602198,7.486020090369891],[100.22680226802271,7.479265781290351],[100.22680226802271,7.474200049480714],[100.25920259202593,7.393148340526338],[100.27720277202775,7.362753949668459],[100.30240302403024,7.342491022429854],[100.32400324003243,7.339113867890092],[100.34920349203492,7.339113867890092],[100.3708037080371,7.332359558810566],[100.37800378003783,7.3120966315719755],[100.37800378003783,7.310408054302087],[100.37800378003783,7.288456549793608],[100.3816038160382,7.274947931634557],[100.38520385203856,7.266505045285143],[100.39240392403923,7.258062158935729],[100.40680406804069,7.258062158935729],[100.41760417604178,7.252996427126078],[100.42840428404287,7.244553540776664],[100.41040410404105,7.237799231697139],[100.40320403204032,7.2327334998874875],[100.3960039600396,7.229356345347725],[100.39240392403923,7.222602036268185],[100.3960039600396,7.210781995379008],[100.40320403204032,7.204027686299483],[100.41040410404105,7.198961954489832],[100.4248042480425,7.1719447181717015],[100.4356043560436,7.160124677282525],[100.450004500045,7.155058945472874],[100.46440464404645,7.156747522742762],[100.47880478804791,7.14661605912346],[100.48600486004864,7.139861750043934],[100.49320493204931,7.136484595504172],[100.51840518405186,7.134796018234283],[100.53280532805331,7.13817317277406],[100.55440554405544,7.1449274818535855],[100.57960579605799,7.1668789863620646],[100.59040590405903,7.1803876045211155],[100.58680586805872,7.207404840839246],[100.58680586805872,7.224290613538074],[100.61200612006121,7.192207645410306],[100.7668076680767,6.982824063944847],[100.78480784807851,6.967626868515907],[100.810008100081,6.957495404896605],[100.82800828008283,6.952429673086954],[100.84960849608495,6.962561136706256],[100.86760867608677,6.9473639412773025],[100.89640896408963,6.9203467049591865],[100.94680946809467,6.88150942775188],[100.99720997209971,6.856180768703638],[101.02601026010262,6.856180768703638],[101.06921069210694,6.857869345973526],[101.19161191611914,6.861246500513289],[101.23121231212315,6.879820850482005],[101.24561245612455,6.90177235499047],[101.27801278012782,6.896706623180833],[101.29241292412922,6.884886582291642],[101.31041310413104,6.879820850482005],[101.31761317613177,6.876443695942228],[101.31761317613177,6.878132273212117],[101.35001350013499,6.876443695942228],[101.34281342813426,6.896706623180833],[101.32841328413286,6.918658127689298],[101.26361263612637,6.94398678673754],[101.29241292412922,6.954118250356842],[101.32121321213214,6.949052518547191],[101.34641346413463,6.9287895913086],[101.38601386013863,6.905149509530247],[101.41841418414185,6.895018045910945],[101.43641436414367,6.8899523141012935],[101.45081450814507,6.888263736831419],[101.47241472414726,6.883198005021768],[101.48681486814871,6.878132273212117],[101.49401494014938,6.873066541402466],[101.5228152281523,6.861246500513289],[101.55881558815588,6.840983573274698],[101.56601566015661,6.8325406869252845],[101.66681666816669,6.658617228127369],[101.72441724417246,6.57418836463323],[101.77121771217713,6.499890964758393],[101.80721807218072,6.464430842090863],[101.9080190801908,6.401953483105203],[102.01962019620197,6.295573115102584],[102.07362073620737,6.258424415165166],[102.07362073620737,6.2567358378952775],[102.09882098820987,6.239850065196464],[102.15282152821527,6.202701365259031],[102.16362163621636,6.197635633449394],[102.18882188821891,6.202701365259031],[102.19242192421927,6.214521406148222],[102.18162181621818,6.222964292497636],[102.16722167221673,6.217898560687985],[102.17802178021782,6.233095756116924],[102.19962199621995,6.233095756116924],[102.31482314823148,6.190881324369855],[102.33642336423367,6.177372706210804],[102.37962379623798,6.133469697193846],[102.49842498424988,5.89706887941027],[102.52002520025201,5.871740220362028],[102.54162541625419,5.8548544476632],[102.54882548825492,5.848100138583675],[102.60282602826027,5.816017170455893],[102.62802628026282,5.797442820487191],[102.64602646026464,5.7721141614389495],[102.66042660426604,5.740031193311182],[102.66762667626676,5.724833997882229],[102.69642696426968,5.713013956993052],[102.87642876428765,5.571173466322904],[102.91962919629196,5.550910539084313],[102.95922959229591,5.542467652734899],[102.97722977229773,5.530647611845723],[103.02763027630277,5.48505602555889],[103.12123121231213,5.382052812096049],[103.2220322203222,5.221637971457184],[103.25803258032579,5.135520530693171],[103.3552335523355,4.970039958244669],[103.41643416434164,4.863659590242065],[103.420034200342,4.84339666300346],[103.42363423634237,4.836642353923935],[103.44163441634419,4.816379426685344],[103.44883448834491,4.806247963066042],[103.44883448834491,4.794427922176865],[103.44163441634419,4.765722108588861],[103.44163441634419,4.7420820268105075],[103.45243452434528,4.701556172333326],[103.47043470434704,4.549584218043876],[103.46683466834668,4.527632713535397],[103.45963459634595,4.5090583635666945],[103.45243452434528,4.488795436328104],[103.46323463234631,4.443203850041272],[103.46323463234631,4.4296952318822065],[103.49563495634959,4.336823482038653],[103.49563495634959,4.3064290911807745],[103.49563495634959,4.294609050291584],[103.48123481234813,4.260837504893928],[103.4740347403474,4.249017464004751],[103.46683466834668,4.242263154925226],[103.45243452434528,4.225377382226398],[103.44883448834491,4.216934495876984],[103.44883448834491,4.20849160952757],[103.45603456034559,4.183162950479328],[103.44883448834491,4.17303148686004],[103.44163441634419,4.169654332320263],[103.44163441634419,4.167965755050389],[103.43443434434346,4.164588600510626],[103.42363423634237,4.159522868700975],[103.40563405634055,4.132505632382845],[103.39483394833951,4.115619859684017],[103.39483394833951,4.098734086985189],[103.40203402034024,4.066651118857422],[103.43803438034382,3.975467946283757],[103.43443434434346,3.9501392872355154],[103.41283412834127,3.9636479053945806],[103.39483394833951,3.934942091806576],[103.38403384033842,3.891039082789618],[103.38043380433805,3.8572675373919765],[103.38043380433805,3.820118837454544],[103.37683376833769,3.80323306475573],[103.36243362433623,3.8015444874858417],[103.3516335163352,3.789724446596665],[103.34443344433447,3.7711500966279488],[103.33723337233374,3.757641478468898],[103.3408334083341,3.7390671285001815],[103.34443344433447,3.7221813558013537],[103.38403384033842,3.6377524923072144],[103.38763387633878,3.6242438741481635],[103.40563405634055,3.600603792369796],[103.43803438034382,3.5685208242420288],[103.46323463234631,3.534749278844373],[103.44883448834491,3.50435488798648],[103.48123481234813,3.5111091970660198],[103.43443434434346,3.4081059836031784],[103.42723427234273,3.367580129125983],[103.44523445234455,3.244313988424551],[103.45243452434528,3.2240510611859605],[103.45603456034559,3.20378813394737],[103.43443434434346,2.962321584354143],[103.44163441634419,2.921795729876962],[103.4740347403474,2.8508754845418878],[103.52083520835208,2.7883981255562276],[103.63963639636398,2.671886293934321],[103.65043650436508,2.66682056212467],[103.66843668436684,2.663443407584907],[103.68643686436866,2.6617548303150187],[103.69003690036902,2.658377675775256],[103.70443704437048,2.644869057616191],[103.71523715237151,2.641491903076428],[103.7260372603726,2.6431804803463166],[103.75123751237516,2.6550005212354932],[103.76563765637655,2.6482462121559536],[103.76563765637655,2.641491903076428],[103.76563765637655,2.633049016727014],[103.76563765637655,2.6246061303776003],[103.8016380163802,2.59758889405947],[103.81243812438123,2.5807031213606564],[103.84123841238414,2.5249800714545216],[103.83043830438305,2.5013399896761683],[103.83043830438305,2.482765639707452],[103.83763837638378,2.46419128973875],[103.90963909639095,2.3713195398951967],[103.92043920439204,2.362876653545783],[103.94203942039422,2.345990880846955],[103.94923949239495,2.3392365717674295],[103.95283952839532,2.329105108148127],[103.95283952839532,2.3088421809095365],[103.95643956439568,2.298710717290234],[103.96363963639635,2.2868906764010575],[103.98163981639817,2.2649391718925784],[103.98523985239854,2.2531191310034018],[103.98163981639817,2.244676244653988],[103.97083970839708,2.2244133174153973],[103.97083970839708,2.2125932765262206],[103.97803978039781,2.19233034928763],[104.02484024840248,2.134918722111621],[104.05004050040503,2.072441363125961],[104.0680406804068,2.047112704077719],[104.07884078840789,2.0217840450294773],[104.08604086040862,2.011652581410175],[104.1076410764108,1.9863239223619331],[104.11124111241111,1.976192458742645],[104.1220412204122,1.9542409542341659],[104.1220412204122,1.9339780269955753],[104.11844118441184,1.8917635952485057],[104.12564125641256,1.8698120907400408],[104.13644136441366,1.849549163501436],[104.15084150841511,1.8377291226122594],[104.16164161641615,1.8478605862315618],[104.16884168841688,1.8478605862315618],[104.19404194041942,1.7988918454049667],[104.20484204842052,1.7533002591181344],[104.22284222842228,1.7262830228000041],[104.22644226442264,1.712774404640939],[104.23004230042301,1.6790028592432833],[104.23364233642337,1.663805663814344],[104.24804248042483,1.6502970456552788],[104.25524255242556,1.6384770047661021],[104.25164251642519,1.6266569638769255],[104.25524255242556,1.6131483457178604],[104.26244262442623,1.5726224912406792],[104.28404284042841,1.5168994413345445],[104.2948429484295,1.471307855047712],[104.2948429484295,1.4459791959994703],[104.28764287642878,1.4358477323801822],[104.28044280442805,1.4257162687608798],[104.28404284042841,1.3818132597439359],[104.27684276842768,1.3666160643149965],[104.2408424084241,1.3666160643149965],[104.23364233642337,1.3632389097752196],[104.22284222842228,1.3497302916161686],[104.21924219242192,1.3463531370763917],[104.17244172441724,1.3480417143462802],[104.15444154441548,1.3531074461559314],[104.11484114841147,1.3683046415848708],[104.1076410764108,1.3750589506643962],[104.10404104041044,1.3851904142836986],[104.1076410764108,1.403764764252415],[104.10044100441007,1.4189619596813543],[104.08964089640898,1.4290934233006425],[104.07524075240752,1.4392248869199449],[104.06444064440643,1.4493563505392473],[104.06084060840607,1.4848164732067772],[104.08604086040862,1.5033908231754936],[104.1220412204122,1.5168994413345445],[104.14724147241475,1.545605254922549],[104.12924129241293,1.548982409462326],[104.11124111241111,1.545605254922549],[104.09324093240934,1.5354737913032608],[104.06084060840607,1.510145132255019],[104.0536405364054,1.5067679777152563],[104.05004050040503,1.5135222867947817],[104.0428404284043,1.5304080594936096],[104.01044010440103,1.5962625730190325],[103.9888398883989,1.6317226956865767],[103.96723967239672,1.6486084683854045],[103.96003960039599,1.6350998502263394],[103.97083970839708,1.6080826139082092],[104.00684006840072,1.548982409462326],[104.00684006840072,1.5354737913032608],[104.00324003240036,1.5067679777152563],[104.00684006840072,1.4932593595561912],[104.01044010440103,1.479750741397126],[104.01404014040139,1.4645535459681867],[104.01044010440103,1.4493563505392473],[103.97443974439744,1.4206505369512428],[103.92763927639277,1.4324705778404194],[103.84123841238414,1.4763735868573633],[103.8160381603816,1.474685009587489],[103.77283772837728,1.4544220823488843],[103.75483754837552,1.4493563505392473],[103.71163711637115,1.45273350507901],[103.69723697236975,1.4510449278091215],[103.6828368283683,1.4426020414597076],[103.62883628836289,1.3767475279342847],[103.60003600036003,1.3531074461559314],[103.5640356403564,1.3598617552354568],[103.5640356403564,1.364927487045108],[103.55683556835567,1.3750589506643962],[103.549635496355,1.3818132597439359],[103.54243542435427,1.3767475279342847],[103.54603546035463,1.3666160643149965],[103.549635496355,1.351418868886043],[103.549635496355,1.342975982536629],[103.549635496355,1.3311559416474523],[103.53163531635317,1.3058272825992105],[103.51723517235172,1.2703671599316806],[103.50283502835032,1.2906300871702712],[103.47043470434704,1.3193359007582757],[103.45603456034559,1.3395988279968662],[103.44523445234455,1.3598617552354568],[103.41283412834127,1.4679307005079494],[103.39483394833951,1.5067679777152563],[103.3660336603366,1.5388509458430235],[103.32643326433265,1.5658681821611538],[103.20763207632075,1.6097711911780976],[103.03843038430387,1.7161515591807017],[102.99522995229955,1.734725909149418],[102.97362973629737,1.7414802182289435],[102.95202952029524,1.743168795498832],[102.93402934029342,1.7482345273084832],[102.92322923229233,1.7583659909277713],[102.90522905229051,1.7836946499760131],[102.88722887228874,1.8073347317543806],[102.8620286202862,1.8275976589929712],[102.8368283682837,1.8461720089616733],[102.80442804428043,1.8596806271207384],[102.79002790027903,1.8546148953110873],[102.73962739627399,1.8461720089616733],[102.72162721627217,1.8478605862315618],[102.70002700027004,1.8596806271207384],[102.68562685626858,1.8782549770894406],[102.66762667626676,1.9221579861063987],[102.649626496265,1.9407323360751008],[102.57042570425705,2.006586849600538],[102.55602556025559,2.0184068904897146],[102.54882548825492,2.0319155086487797],[102.55962559625596,2.033604085918654],[102.55962559625596,2.0369812404584167],[102.55962559625596,2.0403583949981794],[102.55602556025559,2.0454241268078306],[102.54522545225456,2.0572441676970072],[102.52722527225274,2.0707527858560724],[102.48762487624879,2.0927042903645514],[102.34722347223476,2.1501159175405604],[102.18882188821891,2.2159704310659833],[102.15282152821527,2.236233358304574],[102.12762127621278,2.2564962855431787],[102.05202052020519,2.3409251490373038],[102.04122041220415,2.345990880846955],[102.01962019620197,2.351056612656606],[101.99801998019979,2.3611880762758943],[101.98721987219875,2.376385271704848],[101.98721987219875,2.39495962167355],[101.9728197281973,2.3983367762133128],[101.95481954819547,2.4050910852928524],[101.92601926019262,2.4219768579916803],[101.9080190801908,2.4101568171025036],[101.87921879218794,2.408468239832615],[101.86481864818649,2.39495962167355],[101.85761857618576,2.4185997034519175],[101.85761857618576,2.450682671579685],[101.85041850418503,2.4793884851676893],[101.83601836018363,2.491208526056866],[101.8288182881829,2.4945856805966287],[101.81801818018181,2.5013399896761683],[101.80361803618035,2.518225762374996],[101.78201782017823,2.575637389551005],[101.7748177481775,2.5857688531702934],[101.76041760417604,2.592523162249833],[101.71361713617137,2.5959003167895958],[101.69921699216991,2.6043432031390097],[101.69201692016924,2.614474666758298],[101.67401674016742,2.627983284917363],[101.62001620016201,2.636426171266777],[101.59841598415983,2.6465576348860793],[101.56601566015661,2.6516233666957163],[101.54081540815412,2.6617548303150187],[101.50121501215011,2.688772066633149],[101.47961479614798,2.7174778802211534],[101.42921429214294,2.7917752800959903],[101.40041400414003,2.8187925164141063],[101.35361353613536,2.8289239800334087],[101.31041310413104,2.83398971184306],[101.28521285212855,2.8491869072719993],[101.30321303213032,2.8947784935588317],[101.28161281612819,2.8981556480985944],[101.28161281612819,2.9116642662576595],[101.33201332013323,2.9724530479734312],[101.34641346413463,2.9859616661324964],[101.36081360813608,2.9910273979421476],[101.37161371613718,3.002847438831324],[101.37161371613718,3.028176097879566],[101.36441364413645,3.077144838706161],[101.35721357213572,3.0889648795953377],[101.32841328413286,3.1126049613737052],[101.3248132481325,3.124425002262882],[101.30321303213032,3.2544454520438535],[101.29601296012959,3.274708379282444],[101.28161281612819,3.291594151981272],[101.24921249212491,3.3202999655692764],[101.24561245612455,3.327054274648802],[101.24201242012418,3.3371857382681043],[101.23481234812351,3.3439400473476297],[101.21681216812169,3.349005779157281],[101.2060120601206,3.354071510966932],[101.19881198811987,3.359137242776569],[101.19521195211951,3.3642029745862203],[101.18801188011884,3.3794001700151597],[101.1412114121141,3.4435661062707084],[101.10881108811088,3.4739604971286013],[101.10161101611016,3.4824033834780153],[101.09441094410943,3.5060434652563686],[101.0728107281073,3.534749278844373],[101.06561065610657,3.578652287861331],[101.05841058410584,3.600603792369796],[101.04041040410402,3.622555296878275],[100.96840968409686,3.67152403770487],[100.9432094320943,3.6833440785940468],[100.93240932409327,3.6900983876735864],[100.9288092880929,3.696852696753112],[100.91080910809109,3.723869933071242],[100.8856088560886,3.7559529011990094],[100.87120871208714,3.767772942088186],[100.82440824408246,3.7762158284376],[100.81360813608137,3.7863472920569023],[100.81360813608137,3.80323306475573],[100.82440824408246,3.8268731465340835],[100.84240842408423,3.8437589192329114],[100.84600846008459,3.850513228312437],[100.83520835208355,3.8538903828521995],[100.810008100081,3.850513228312437],[100.79920799207991,3.847136073772674],[100.79560795607955,3.8437589192329114],[100.78480784807851,3.83869318742326],[100.75960759607597,3.847136073772674],[100.73440734407347,3.8589561146618507],[100.72000720007202,3.8673990010112647],[100.70920709207093,3.882596196440204],[100.7020070200702,3.899481969139032],[100.7020070200702,3.918056319107748],[100.7020070200702,3.9670250599343433],[100.70560705607056,3.983910832633171],[100.72000720007202,3.9906651417126966],[100.78120781207815,3.987287987172934],[100.80280802808028,3.9906651417126966],[100.81720817208173,4.010928068951301],[100.83520835208355,4.019370955300715],[100.85320853208532,4.022748109840478],[100.87120871208714,4.019370955300715],[100.86040860408605,4.039633882539306],[100.83880838808392,4.037945305269417],[100.81360813608137,4.026125264380241],[100.80280802808028,4.019370955300715],[100.77760777607779,4.02105953257059],[100.77400774007742,4.036256727999529],[100.77760777607779,4.0598968097778965],[100.77760777607779,4.0869140460960125],[100.7668076680767,4.100422664255078],[100.71280712807129,4.134194209652733],[100.69840698406983,4.151079982351561],[100.6768067680677,4.164588600510626],[100.65520655206552,4.169654332320263],[100.6336063360634,4.156145714161212],[100.6228062280623,4.176408641399803],[100.61200612006121,4.20849160952757],[100.60840608406085,4.238886000385463],[100.61560615606157,4.252394618544528],[100.60120601206012,4.255771773084291],[100.59400594005939,4.269280391243342],[100.59400594005939,4.2844775866722955],[100.59040590405903,4.299674782101235],[100.57960579605799,4.3114948229904115],[100.5688056880569,4.3131834002603],[100.56520565205653,4.3199377093398255],[100.5688056880569,4.340200636578416],[100.57960579605799,4.367217872896546],[100.58320583205835,4.380726491055611],[100.58320583205835,4.3993008410243135],[100.58680586805872,4.412809459183379],[100.60840608406085,4.426318077342444],[100.61200612006121,4.439826695501495],[100.61560615606157,4.468532509089513],[100.6336063360634,4.532698445345048],[100.64440644406443,4.559715681663178],[100.63000630006303,4.554649949853527],[100.61200612006121,4.55802710439329],[100.59760597605975,4.571535722552355],[100.59040590405903,4.590110072521057],[100.59400594005939,4.610372999759647],[100.60480604806048,4.628947349728364],[100.61560615606157,4.639078813347666],[100.6336063360634,4.628947349728364],[100.64080640806407,4.642455967887429],[100.6480064800648,4.6542760087766055],[100.65520655206552,4.664407472395894],[100.66600666006661,4.669473204205545],[100.64080640806407,4.674538936015196],[100.61920619206194,4.666096049665782],[100.60480604806048,4.666096049665782],[100.59760597605975,4.693113285983912],[100.59400594005939,4.743770604080382],[100.60480604806048,4.755590644969573],[100.6336063360634,4.758967799509335],[100.6336063360634,4.765722108588861],[100.62640626406267,4.767410685858749],[100.61200612006121,4.772476417668386],[100.61920619206194,4.785985035827451],[100.61560615606157,4.792739344906991],[100.59760597605975,4.7994936539865165],[100.58680586805872,4.801182231256405],[100.57960579605799,4.797805076716628],[100.57600576005763,4.7994936539865165],[100.5688056880569,4.813002272145582],[100.5688056880569,4.8265108903046325],[100.57600576005763,4.84339666300346],[100.57600576005763,4.853528126622763],[100.57240572405726,4.8569052811625255],[100.56160561605617,4.858593858432414],[100.55440554405544,4.861971012972177],[100.55080550805508,4.875479631131242],[100.54000540005399,4.870413899321591],[100.52920529205295,4.867036744781828],[100.5040050400504,4.868725322051702],[100.49320493204931,4.872102476591465],[100.50040500405004,4.880545362940879],[100.51120511205113,4.888988249290293],[100.5148051480515,4.888988249290293],[100.5148051480515,4.902496867449358],[100.51120511205113,4.907562599259009],[100.5040050400504,4.910939753798772],[100.49320493204931,4.919382640148186],[100.48240482404827,4.924448371957837],[100.47160471604718,4.922759794687948],[100.46080460804609,4.916005485608423],[100.45360453604536,4.9092511765288975],[100.44280442804427,4.922759794687948],[100.4356043560436,4.936268412847014],[100.43200432004323,4.949777031006079],[100.4248042480425,4.964974226435018],[100.40320403204032,4.991991462753148],[100.3960039600396,5.013942967261613],[100.3816038160382,5.047714512659269],[100.3708037080371,5.061223130818334],[100.36360363603637,5.084863212596687],[100.36720367203674,5.093306098946101],[100.3708037080371,5.093306098946101],[100.37440374403747,5.091617521676227],[100.37800378003783,5.09499467621599],[100.38880388803886,5.105126139835278],[100.39960399603996,5.11525760345458],[100.41040410404105,5.127077644343757],[100.41760417604178,5.159160612471524],[100.43200432004323,5.191243580599306],[100.43200432004323,5.211506507837896],[100.43200432004323,5.221637971457184],[100.42120421204214,5.241900898695789],[100.41760417604178,5.248655207775315],[100.42120421204214,5.260475248664491],[100.43200432004323,5.2790495986332076],[100.43200432004323,5.289181062252496],[100.42840428404287,5.302689680411561],[100.40680406804069,5.348281266698393],[100.38520385203856,5.376987080286398],[100.3816038160382,5.390495698445463],[100.37800378003783,5.412447202953942],[100.38520385203856,5.498564643717955],[100.37800378003783,5.522204725496309],[100.35640356403565,5.56273057997349],[100.34920349203492,5.584682084481969],[100.34560345603455,5.669110947976108],[100.35280352803528,5.665733793436345],[100.36360363603637,5.6623566388965685],[100.37800378003783,5.664045216166457],[100.38520385203856,5.669110947976108],[100.38520385203856,5.679242411595396],[100.37800378003783,5.685996720674936],[100.3708037080371,5.689373875214699],[100.36360363603637,5.69443960702435],[100.37440374403747,5.810951438646256],[100.34920349203492,6.011892133762288],[100.34200342003419,6.030466483731004],[100.32760327603279,6.049040833699706],[100.31320313203133,6.070992338208185],[100.29520295202951,6.1148953472251435],[100.25920259202593,6.180749860750566],[100.24840248402484,6.221275715227748],[100.23400234002344,6.236472910656687],[100.20160201602016,6.258424415165166],[100.1728017280173,6.290507383292933],[100.15120151201512,6.334410392309891],[100.13680136801366,6.380001978596724],[100.12960129601299,6.423904987613668],[100.12600126001263,6.442479337582384],[100.1188011880119,6.4627422648209745],[100.10800108001081,6.479628037519802],[100.09000090000899,6.4846937693294535],[100.10080100801008,6.516776737457221],[100.10440104401044,6.533662510156049],[100.09360093600935,6.540416819235574],[100.07920079200795,6.537039664695811],[100.07200072000722,6.528596778346397],[100.0648006480065,6.506645273837918],[100.02880028800291,6.535351087425923],[100,6.567434055553704],[99.99639996399964,6.575876941903118],[99.99639996399964,6.587696982792295],[99.99279992799927,6.597828446411583],[99.98559985599854,6.602894178221234],[99.97119971199714,6.596139869141709],[99.96399963999642,6.59445129187182],[99.96039960399605,6.597828446411583],[99.96399963999642,6.606271332760997],[99.97119971199714,6.618091373650188],[99.97479974799751,6.623157105459825],[99.97119971199714,6.633288569079127],[99.96399963999642,6.650174341777955],[99.96039960399605,6.660305805397243],[99.95679956799569,6.66368295993702],[99.9459994599946,6.66368295993702],[99.93879938799387,6.6653715372068945],[99.9315993159932,6.673814423556308],[99.92799927999283,6.692388773525025],[99.91719917199174,6.705897391684076],[99.89199891998919,6.724471741652792],[99.8667986679867,6.763309018860099],[99.85239852398524,6.77681763701915],[99.83439834398342,6.770063327939624],[99.82359823598239,6.770063327939624],[99.81639816398166,6.781883368828801],[99.80919809198093,6.808900605146931],[99.8019980199802,6.817343491496345],[99.79839798397984,6.822409223305982],[99.71199711997122,6.8544921914337635],[99.68679686796867,6.878132273212117],[99.68679686796867,6.916969550419424],[99.69039690396903,6.935543900388126],[99.69759697596976,6.937232477658014],[99.71199711997122,6.937232477658014],[99.71559715597158,6.9422982094676655],[99.71199711997122,6.952429673086954],[99.70839708397085,6.960872559436368],[99.69759697596976,6.965938291246019],[99.679596795968,6.974381177595433],[99.6831968319683,6.992955527564135],[99.68679686796867,7.01321845480274],[99.679596795968,7.0267270729617906],[99.6939969399694,7.060498618359446],[99.70479704797049,7.0756958137884],[99.71559715597158,7.082450122867925],[99.71919719197194,7.089204431947451],[99.7479974799748,7.126353131884869],[99.74079740797407,7.136484595504172],[99.72279722797231,7.13141886369452],[99.70479704797049,7.121287400075232],[99.6939969399694,7.116221668265581],[99.67599675996763,7.1229759773451065],[99.67239672396727,7.134796018234283],[99.67239672396727,7.170256140901827],[99.63639636396363,7.151681790933111],[99.62199621996223,7.136484595504172],[99.6147961479615,7.136484595504172],[99.61119611196114,7.151681790933111],[99.6039960399604,7.151681790933111],[99.58239582395822,7.156747522742762],[99.55719557195573,7.197273377219943],[99.53919539195391,7.244553540776664],[99.54639546395464,7.266505045285143],[99.56799567995682,7.27832508617432],[99.58599585995859,7.307030899762324],[99.59679596795968,7.342491022429854],[99.6039960399604,7.37626256782751],[99.59679596795968,7.37626256782751],[99.56799567995682,7.322228095191264],[99.549995499955,7.301965167952673],[99.52479524795251,7.3120966315719755],[99.52119521195215,7.327293827000915],[99.52479524795251,7.3695082587479845],[99.52119521195215,7.38301687690705],[99.50679506795069,7.384705454176924],[99.49959499594996,7.371196836017859],[99.49239492394923,7.350933908779268],[99.48879488794887,7.335736713350329],[99.49239492394923,7.300276590682799],[99.48879488794887,7.285079395253845],[99.4707947079471,7.280013663444194],[99.45999459994601,7.283390817983971],[99.44559445594456,7.2901451270634965],[99.4311943119431,7.29858801341291],[99.4275942759428,7.305342322492436],[99.42039420394207,7.307030899762324],[99.39159391593915,7.3120966315719755],[99.37719377193775,7.3205395179213895],[99.36639366393666,7.335736713350329],[99.33759337593375,7.38301687690705],[99.34479344793448,7.3999026496058775],[99.34839348393484,7.423542731384231],[99.34479344793448,7.469134317671063],[99.34119341193411,7.475888626750589],[99.33039330393302,7.491085822179542],[99.33039330393302,7.502905863068719],[99.32679326793271,7.504594440338593],[99.30519305193053,7.504594440338593],[99.29439294392944,7.50797159487837],[99.3087930879309,7.528234522116961],[99.3087930879309,7.5501860266254255],[99.30159301593017,7.575514685673667],[99.29439294392944,7.6211062719605],[99.28719287192871,7.6211062719605],[99.27639276392767,7.617729117420737],[99.26919269192695,7.616040540150863],[99.25839258392585,7.6211062719605],[99.25119251192513,7.627860581040039],[99.24759247592476,7.634614890119565],[99.25839258392585,7.636303467389453],[99.26199261992622,7.643057776468979],[99.25479254792549,7.656566394628044],[99.2439924399244,7.671763590056983],[99.22959229592294,7.678517899136523],[99.21519215192154,7.680206476406397],[99.20799207992081,7.685272208216048],[99.19359193591936,7.705535135454639],[99.17199171991723,7.719043753613704],[99.15399153991541,7.730863794502881],[99.13599135991359,7.744372412661946],[99.12879128791286,7.768012494440299],[99.12519125191255,7.768012494440299],[99.12159121591219,7.732552371772769],[99.1107911079111,7.705535135454639],[99.09279092790928,7.692026517295574],[99.0567905679057,7.698780826375113],[99.03159031590314,7.722420908153467],[99.02799027990278,7.78827542167889],[99.01359013590138,7.81529265799702],[99.0567905679057,7.847375626124787],[99.06399063990642,7.859195667013964],[99.06399063990642,7.87777001698268],[99.07119071190715,7.908164407840559],[99.07119071190715,7.925050180539387],[99.04959049590497,7.904787253300796],[99.04239042390424,7.901410098761033],[99.02799027990278,7.903098676030922],[99.02439024390247,7.909852985110447],[99.00639006390065,7.935181644158689],[98.99918999189993,7.9419359532382146],[98.98478984789847,7.947001685047866],[98.9667896678967,7.95544457139728],[98.95958959589598,7.97570749863587],[98.96318963189634,7.985838962255173],[98.96318963189634,7.992593271334698],[98.96318963189634,7.997659003144349],[98.95958959589598,8.006101889493763],[98.95238952389525,8.016233353113051],[98.93798937989379,8.024676239462465],[98.93078930789306,8.031430548542005],[98.9235892358924,8.041562012161293],[98.9235892358924,8.048316321240833],[98.91638916389167,8.051693475780596],[98.90558905589057,8.048316321240833],[98.89838898388984,8.043250589431182],[98.89118891188912,8.024676239462465],[98.88758887588875,8.021299084922703],[98.87318873188735,8.016233353113051],[98.8587885878859,8.007790466763637],[98.84438844388444,8.002724734954],[98.82998829988298,8.006101889493763],[98.82278822788231,8.014544775843177],[98.81918819188195,8.036496280351642],[98.81198811988122,8.044939166701056],[98.80118801188013,8.051693475780596],[98.7939879398794,8.048316321240833],[98.79038790387904,8.039873434891419],[98.78678786787867,8.034807703081768],[98.77598775987764,8.022987662192591],[98.76878768787691,8.022987662192591],[98.76878768787691,8.03818485762153],[98.76518765187654,8.046627743970944],[98.75078750787509,8.06013636213001],[98.74718747187472,8.068579248479423],[98.74358743587436,8.087153598448126],[98.74718747187472,8.136122339274735],[98.74358743587436,8.149630957433786],[98.74718747187472,8.181713925561567],[98.74718747187472,8.198599698260395],[98.74358743587436,8.215485470959209],[98.7255872558726,8.254322748166516],[98.71118711187114,8.225616934578511],[98.70758707587078,8.225616934578511],[98.70398703987041,8.298225757183474],[98.69678696786968,8.308357220802762],[98.67878678786786,8.30329148899311],[98.64998649986501,8.284717139024409],[98.63918639186392,8.288094293564171],[98.63198631986319,8.288094293564171],[98.63198631986319,8.281339984484646],[98.62478624786252,8.281339984484646],[98.62118621186215,8.293160025373822],[98.62478624786252,8.34550592074018],[98.63198631986319,8.353948807089594],[98.64638646386464,8.36576884797877],[98.65718657186574,8.379277466137836],[98.64278642786428,8.386031775217361],[98.62118621186215,8.389408929757138],[98.60318603186033,8.397851816106552],[98.59958599585997,8.374211734328185],[98.58518585185851,8.369146002518534],[98.56718567185675,8.36745742524866],[98.55278552785529,8.360703116169134],[98.5419854198542,8.348883075279943],[98.52758527585274,8.337063034390766],[98.50958509585098,8.330308725311241],[98.49878498784989,8.343817343470306],[98.49518495184952,8.343817343470306],[98.49158491584916,8.331997302581115],[98.4879848798488,8.32524299350159],[98.48078480784807,8.32524299350159],[98.4735847358474,8.335374457120892],[98.46638466384667,8.335374457120892],[98.46638466384667,8.323554416231701],[98.44478444784448,8.32524299350159],[98.42678426784266,8.316800107152176],[98.42318423184236,8.306668643532888],[98.45198451984521,8.294848602643697],[98.45558455584558,8.277962829944869],[98.45558455584558,8.257699902706278],[98.4627846278463,8.242502707277339],[98.4627846278463,8.215485470959209],[98.44478444784448,8.174959616482028],[98.42318423184236,8.147942380163911],[98.41238412384126,8.16482815286274],[98.40518405184054,8.16482815286274],[98.40518405184054,8.154696689243437],[98.40158401584017,8.149630957433786],[98.39078390783908,8.136122339274735],[98.37638376383762,8.151319534703674],[98.35838358383586,8.18509108010133],[98.32958329583295,8.195222543720618],[98.32958329583295,8.201976852800158],[98.32238322383228,8.210419739149572],[98.31158311583118,8.212108316419446],[98.30078300783009,8.213796893689334],[98.29358293582936,8.215485470959209],[98.28638286382863,8.22055120276886],[98.28278282782827,8.225616934578511],[98.2791827918279,8.24081413000745],[98.2791827918279,8.28302856175452],[98.27198271982724,8.298225757183474],[98.26118261182614,8.313422952612413],[98.24318243182432,8.406294702455966],[98.19998199982001,8.53462657496705],[98.19638196381965,8.556578079475514],[98.20358203582038,8.573463852174342],[98.2107821078211,8.581906738523756],[98.21438214382147,8.571775274904468],[98.21438214382147,8.553200924935751],[98.2215822158222,8.539692306776686],[98.24678246782469,8.514363647728459],[98.25398253982542,8.53462657496705],[98.24318243182432,8.546446615856226],[98.22878228782287,8.556578079475514],[98.2215822158222,8.568398120364705],[98.21798217982183,8.57515242944423],[98.2215822158222,8.580218161253882],[98.2251822518225,8.585283893063533],[98.2251822518225,8.588661047603296],[98.2251822518225,8.605546820302123],[98.2251822518225,8.61061255211176],[98.23958239582396,8.641006942969653],[98.23958239582396,8.651138406588956],[98.23958239582396,8.67308991109742],[98.2215822158222,8.711927188304728],[98.2215822158222,8.725435806463793],[98.2251822518225,8.73556727008308],[98.23238232382323,8.740633001892732],[98.23958239582396,8.745698733702383],[98.24678246782469,8.754141620051797],[98.25038250382505,8.759207351861448],[98.25398253982542,8.765961660940974],[98.25758257582578,8.828439019926634],[98.26118261182614,8.850390524435113],[98.28278282782827,8.884162069832769],[98.29358293582936,8.92468792430995],[98.31158311583118,8.951705160628066],[98.32598325983258,8.975345242406433],[98.33318333183331,8.98041097421607],[98.33678336783368,8.977033819676308],[98.35118351183513,8.973656665136545],[98.36558365583659,8.973656665136545],[98.36198361983622,8.983788128755847],[98.35838358383586,8.995608169645024],[98.36918369183695,9.010805365073963],[98.39078390783908,9.036134024122205],[98.36198361983622,9.02262540596314],[98.3439834398344,9.017559674153503],[98.33318333183331,9.026002560502917],[98.32958329583295,9.051331219551145],[98.34038340383404,9.063151260440335],[98.36558365583659,9.063151260440335],[98.38358383583835,9.07159414678975],[98.36918369183695,9.103677114917517],[98.34038340383404,9.142514392124824],[98.32958329583295,9.164465896633288],[98.32238322383228,9.18979455568153],[98.32238322383228,9.21005748292012],[98.32598325983258,9.203303173840595],[98.34038340383404,9.199926019300833],[98.34758347583477,9.203303173840595],[98.3547835478355,9.21005748292012],[98.36918369183695,9.226943255618949],[98.35118351183513,9.235386141968362],[98.35118351183513,9.250583337397316],[98.36198361983622,9.26746911009613],[98.36558365583659,9.280977728255195],[98.37638376383762,9.297863500954023],[98.38358383583835,9.316437850922739],[98.39798397983981,9.3789152099084],[98.40518405184054,9.397489559877101],[98.42678426784266,9.432949682544645],[98.44478444784448,9.520755700578547],[98.45558455584558,9.547772936896664],[98.4879848798488,9.527510009658073],[98.52038520385207,9.554527245976189],[98.53118531185311,9.56634728686538],[98.52758527585274,9.576478750484668],[98.52038520385207,9.578167327754556],[98.50238502385025,9.574790173214794],[98.49518495184952,9.576478750484668],[98.4879848798488,9.57985590502443],[98.48438484384843,9.593364523183496],[98.48438484384843,9.596741677723259],[98.4627846278463,9.605184564072673],[98.46998469984703,9.620381759501626],[98.49158491584916,9.635578954930565],[98.49878498784989,9.633890377660677],[98.50238502385025,9.638956109470328],[98.51318513185134,9.650776150359505],[98.51318513185134,9.654153304899268],[98.51318513185134,9.662596191248682],[98.49518495184952,9.686236273027049],[98.50958509585098,9.686236273027049],[98.51318513185134,9.694679159376463],[98.50598505985062,9.704810622995751],[98.49518495184952,9.713253509345165],[98.49878498784989,9.720007818424705],[98.51678516785171,9.709876354805402],[98.53118531185311,9.703122045725877],[98.54558545585456,9.70649920026564],[98.54918549185493,9.723384972964467],[98.55278552785529,9.725073550234342],[98.55998559985602,9.733516436583756],[98.56718567185675,9.74195932293317],[98.55998559985602,9.74702505474282],[98.53838538385384,9.74702505474282],[98.53118531185311,9.750402209282583],[98.52038520385207,9.755467941092235],[98.51678516785171,9.74702505474282],[98.51678516785171,9.745336477472947],[98.51318513185134,9.740270745663295],[98.50958509585098,9.740270745663295],[98.50958509585098,9.74871363201271],[98.50958509585098,9.770665136521174],[98.50958509585098,9.774042291060951],[98.51678516785171,9.782485177410365],[98.52398523985244,9.78417375468024],[98.53118531185311,9.785862331950128],[98.5419854198542,9.787550909220002],[98.55638556385566,9.797682372839304],[98.56718567185675,9.809502413728481],[98.57438574385748,9.82469960915742],[98.58158581585815,9.843273959126137],[98.57438574385748,9.834831072776723],[98.55998559985602,9.814568145538132],[98.54918549185493,9.809502413728481],[98.53838538385384,9.81119099099837],[98.53478534785347,9.817945300077895],[98.53118531185311,9.826388186427309],[98.51318513185134,9.836519650046611],[98.52038520385207,9.855094000015313],[98.53838538385384,9.87366834998403],[98.54918549185493,9.883799813603318],[98.55278552785529,9.877045504523792],[98.55998559985602,9.87366834998403],[98.56718567185675,9.87366834998403],[98.57438574385748,9.877045504523792],[98.57078570785711,9.883799813603318],[98.58518585185851,9.895619854492494],[98.58878588785888,9.905751318111797],[98.58518585185851,9.90912847265156],[98.57798577985778,9.910817049921448],[98.57078570785711,9.9158827817311],[98.57438574385748,9.920948513540736],[98.58518585185851,9.931079977160039],[98.59238592385924,9.942900018049215],[98.59958599585997,9.947965749858867],[98.62118621186215,9.947965749858867],[98.63198631986319,9.953031481668518],[98.63198631986319,9.963162945287806],[98.62478624786252,9.966540099827569],[98.61398613986142,9.966540099827569],[98.61038610386106,9.959785790748043],[98.59958599585997,9.973294408907108],[98.59958599585997,9.980048717986634],[98.60318603186033,9.993557336145699],[98.64638646386464,10.069543313290424],[98.6607866078661,10.084740508719364],[98.68958689586896,10.162415063133963],[98.71118711187114,10.206318072150921],[98.72198721987223,10.228269576659386],[98.7255872558726,10.251909658437754],[98.7255872558726,10.272172585676344],[98.7291872918729,10.292435512914935],[98.74718747187472,10.329584212852353],[98.74718747187472,10.349847140090944],[98.739987399874,10.34815856282107],[98.73638736387363,10.343092831011418],[98.73278732787327,10.338027099201767],[98.71838718387187,10.312698440153525],[98.70398703987041,10.262041122057042],[98.69678696786968,10.223203844849749],[98.68598685986859,10.208006649420795],[98.66438664386646,10.18605514491233],[98.64278642786428,10.155660754054438],[98.58878588785888,10.042526076972294],[98.55998559985602,10.002000222495113],[98.5419854198542,9.98680302706616],[98.53478534785347,9.996934490685462],[98.53478534785347,10.007065954304764],[98.52398523985244,10.020574572463815],[98.52038520385207,10.029017458813229],[98.52038520385207,10.039148922432531],[98.52038520385207,10.059411849671122],[98.52038520385207,10.069543313290424],[98.51318513185134,10.101626281418191],[98.51318513185134,10.147217867705024],[98.49518495184952,10.179300835832791],[98.49158491584916,10.191120876721968],[98.4879848798488,10.197875185801507],[98.49158491584916,10.204629494881033],[98.50598505985062,10.245155349358214],[98.51318513185134,10.262041122057042],[98.51678516785171,10.307632708343874],[98.52758527585274,10.343092831011418],[98.52758527585274,10.365044335519897],[98.51318513185134,10.422455962695906],[98.49518495184952,10.452850353553785],[98.49518495184952,10.47311328079239],[98.49878498784989,10.515327712539445],[98.49518495184952,10.557542144286515],[98.4627846278463,10.630150966891478],[98.45918459184594,10.672365398638547],[98.45918459184594,10.714579830385603],[98.4627846278463,10.729777025814556],[98.4771847718477,10.734842757624207],[98.49878498784989,10.73146560308443],[98.50958509585098,10.723022716735017],[98.52758527585274,10.692628325877138],[98.53838538385384,10.704448366766314],[98.53838538385384,10.71795698492538],[98.53118531185311,10.73146560308443],[98.52038520385207,10.741597066703733],[98.53118531185311,10.746662798513384],[98.5419854198542,10.744974221243496],[98.55278552785529,10.73821991216397],[98.56358563585638,10.728088448544668],[98.57078570785711,10.743285643973621],[98.57798577985778,10.770302880291737],[98.58158581585815,10.782122921180914],[98.59958599585997,10.805763002959281],[98.60318603186033,10.819271621118332],[98.5959859598596,10.837845971087049],[98.6067860678607,10.83615739381716],[98.61758617586179,10.837845971087049],[98.62478624786252,10.8429117028967],[98.63198631986319,10.851354589246114],[98.62118621186215,10.854731743785877],[98.5959859598596,10.85642032105575],[98.58518585185851,10.861486052865402],[98.58158581585815,10.866551784675053],[98.57798577985778,10.874994671024467],[98.58158581585815,10.881748980103993],[98.61398613986142,10.890191866453407],[98.62478624786252,10.902011907342583],[98.63558635586355,10.913831948231774],[98.64638646386464,10.918897680041411],[98.65358653586537,10.917209102771537],[98.66438664386646,10.908766216422123],[98.67158671586719,10.90538906188236],[98.67518675186756,10.908766216422123],[98.68958689586896,10.913831948231774],[98.70398703987041,10.915520525501648],[98.70758707587078,10.912143370961886],[98.71118711187114,10.923963411851062],[98.71838718387187,10.942537761819779],[98.71838718387187,10.96111211178848],[98.71118711187114,10.974620729947546],[98.72198721987223,10.981375039027071],[98.7147871478715,10.989817925376485],[98.69678696786968,11.00332654353555],[98.69318693186932,11.008392275345201],[98.69678696786968,11.020212316234378],[98.70038700387005,11.02527804804403],[98.70758707587078,11.026966625313904],[98.7147871478715,11.032032357123555],[98.72198721987223,11.04554097528262],[98.71838718387187,11.059049593441685],[98.71118711187114,11.075935366140513],[98.70758707587078,11.097886870648978],[98.68958689586896,11.092821138839327],[98.67518675186756,11.10126402518874],[98.65718657186574,11.131658416046633],[98.70398703987041,11.14347845693581],[98.7255872558726,11.156987075094875],[98.73278732787327,11.175561425063592],[98.73278732787327,11.207644393191359],[98.74718747187472,11.236350206779363],[98.75078750787509,11.256613134017954],[98.75798757987582,11.26336744309748],[98.75798757987582,11.26843317490713],[98.74718747187472,11.285318947605958],[98.7255872558726,11.33259911116268],[98.72198721987223,11.349484883861507],[98.72198721987223,11.368059233830209],[98.7255872558726,11.384945006529037],[98.70398703987041,11.379879274719386],[98.69678696786968,11.3883221610688],[98.70758707587078,11.423782283736344],[98.7147871478715,11.442356633705046],[98.73638736387363,11.45079952005446],[98.77598775987764,11.454176674594237],[98.76518765187654,11.467685292753288],[98.76518765187654,11.506522569960595],[98.75438754387545,11.521719765389534],[98.74358743587436,11.525096919929311],[98.7291872918729,11.518342610849771],[98.72198721987223,11.521719765389534],[98.71838718387187,11.531851229008836],[98.7255872558726,11.548737001707664],[98.72198721987223,11.557179888057078],[98.73278732787327,11.574065660755906],[98.73638736387363,11.589262856184845],[98.73278732787327,11.62472297885239],[98.73638736387363,11.641608751551217],[98.739987399874,11.66524883332957],[98.75078750787509,11.682134606028399],[98.76878768787691,11.68044602875851],[98.77958779587794,11.68720033783805],[98.78678786787867,11.683823183298273],[98.7939879398794,11.677068874218747],[98.80478804788049,11.673691719678985],[98.81558815588158,11.677068874218747],[98.81918819188195,11.68720033783805],[98.81918819188195,11.699020378727226],[98.82278822788231,11.70746326507664],[98.83718837188371,11.710840419616403],[98.85518855188553,11.70746326507664],[98.87318873188735,11.7007089559971],[98.88398883988839,11.693954646917575],[98.89118891188912,11.693954646917575],[98.87678876788766,11.72266046050558],[98.80478804788049,11.736169078664645],[98.78318783187831,11.754743428633347],[98.79038790387904,11.780072087681589],[98.81198811988122,11.802023592190068],[98.82638826388268,11.825663673968421],[98.80838808388086,11.850992333016663],[98.81558815588158,11.834106560317835],[98.81198811988122,11.822286519428658],[98.80118801188013,11.813843633079244],[98.79038790387904,11.802023592190068],[98.76878768787691,11.761497737712887],[98.76158761587618,11.761497737712887],[98.74358743587436,11.763186314982761],[98.739987399874,11.75812058317311],[98.73638736387363,11.756432005903235],[98.7255872558726,11.744611965014059],[98.72198721987223,11.741234810474296],[98.71118711187114,11.736169078664645],[98.70758707587078,11.724349037775468],[98.70758707587078,11.709151842346515],[98.70398703987041,11.697331801457338],[98.69318693186932,11.68720033783805],[98.68598685986859,11.682134606028399],[98.67518675186756,11.685511760568161],[98.64638646386464,11.7007089559971],[98.61758617586179,11.724349037775468],[98.61038610386106,11.731103346854994],[98.61038610386106,11.741234810474296],[98.60318603186033,11.753054851363473],[98.60318603186033,11.761497737712887],[98.6067860678607,11.7699406240623],[98.61758617586179,11.788514974031003],[98.62478624786252,11.793580705840654],[98.62838628386282,11.791892128570765],[98.63198631986319,11.793580705840654],[98.63198631986319,11.803712169459956],[98.60318603186033,11.803712169459956],[98.61758617586179,11.825663673968421],[98.62478624786252,11.830729405778072],[98.63198631986319,11.83241798304796],[98.63918639186392,11.83241798304796],[98.64998649986501,11.830729405778072],[98.6607866078661,11.845926601207012],[98.66798667986683,11.86281237390584],[98.68238682386823,11.878009569334793],[98.70758707587078,11.878009569334793],[98.69318693186932,11.893206764763733],[98.67158671586719,11.891518187493844],[98.63198631986319,11.878009569334793],[98.54918549185493,11.878009569334793],[98.55638556385566,11.898272496573384],[98.57798577985778,11.906715382922798],[98.62838628386282,11.906715382922798],[98.64638646386464,11.91009253746256],[98.66438664386646,11.920224001081849],[98.67878678786786,11.93204404197104],[98.68958689586896,11.953995546479504],[98.70398703987041,11.959061278289155],[98.7147871478715,11.960749855559044],[98.72198721987223,11.964127010098807],[98.72198721987223,11.997898555496462],[98.72198721987223,12.00803001911575],[98.7147871478715,12.024915791814578],[98.70398703987041,12.036735832703755],[98.70398703987041,12.048555873592946],[98.71118711187114,12.063753069021885],[98.66438664386646,12.060375914482123],[98.65718657186574,12.067130223561648],[98.64638646386464,12.07726168718095],[98.63558635586355,12.090770305340001],[98.63558635586355,12.100901768959304],[98.63918639186392,12.114410387118369],[98.63558635586355,12.122853273467783],[98.62838628386282,12.131296159817197],[98.63198631986319,12.146493355246136],[98.63918639186392,12.151559087055787],[98.64998649986501,12.15493624159555],[98.67158671586719,12.160001973405201],[98.67158671586719,12.166756282484727],[98.65718657186574,12.166756282484727],[98.66798667986683,12.176887746104029],[98.69678696786968,12.193773518802857],[98.71118711187114,12.203904982422145],[98.7147871478715,12.215725023311322],[98.71118711187114,12.227545064200513],[98.70398703987041,12.2376765278198],[98.69678696786968,12.241053682359563],[98.66438664386646,12.235987950549926],[98.63918639186392,12.224167909660736],[98.62118621186215,12.208970714231796],[98.5959859598596,12.193773518802857],[98.58878588785888,12.19715067334262],[98.57078570785711,12.203904982422145],[98.56358563585638,12.207282136961908],[98.54558545585456,12.224167909660736],[98.53838538385384,12.241053682359563],[98.5419854198542,12.261316609598154],[98.55278552785529,12.27989095956687],[98.56718567185675,12.291711000456047],[98.58878588785888,12.296776732265698],[98.67518675186756,12.3153510822344],[98.69678696786968,12.327171123123591],[98.70758707587078,12.347434050362182],[98.70038700387005,12.36431982306101],[98.68598685986859,12.372762709410424],[98.64998649986501,12.386271327569474],[98.62838628386282,12.409911409347842],[98.62118621186215,12.413288563887605],[98.6067860678607,12.418354295697256],[98.6067860678607,12.428485759316544],[98.61038610386106,12.450437263825023],[98.61038610386106,12.472388768333502],[98.61758617586179,12.485897386492553],[98.62838628386282,12.492651695572093],[98.64998649986501,12.496028850111855],[98.68958689586896,12.496028850111855],[98.70038700387005,12.499406004651618],[98.70758707587078,12.506160313731158],[98.71118711187114,12.512914622810683],[98.70398703987041,12.516291777350446],[98.69318693186932,12.516291777350446],[98.68238682386823,12.526423240969748],[98.67158671586719,12.529800395509511],[98.6607866078661,12.531488972779385],[98.64998649986501,12.531488972779385],[98.63918639186392,12.531488972779385],[98.63198631986319,12.536554704589037],[98.62478624786252,12.558506209097516],[98.63198631986319,12.578769136336106],[98.64278642786428,12.600720640844585],[98.64998649986501,12.622672145353064],[98.65358653586537,12.626049299892827],[98.6607866078661,12.626049299892827],[98.66798667986683,12.624360722622939],[98.67158671586719,12.626049299892827],[98.67158671586719,12.631115031702478],[98.66438664386646,12.646312227131418],[98.66798667986683,12.675018040719422],[98.67158671586719,12.686838081608599],[98.67878678786786,12.696969545227901],[98.68598685986859,12.702035277037538],[98.68958689586896,12.710478163386952],[98.69318693186932,12.725675358815906],[98.68958689586896,12.72736393608578],[98.6607866078661,12.722298204276143],[98.64998649986501,12.723986781546017],[98.64278642786428,12.72736393608578],[98.63918639186392,12.73411824516532],[98.64278642786428,12.742561131514734],[98.65358653586537,12.745938286054496],[98.66438664386646,12.745938286054496],[98.67158671586719,12.747626863324385],[98.67878678786786,12.756069749673784],[98.67158671586719,12.761135481483436],[98.62838628386282,12.756069749673784],[98.61758617586179,12.766201213293087],[98.61758617586179,12.778021254182264],[98.61758617586179,12.7746440996425],[98.62478624786252,12.77633267691239],[98.63558635586355,12.781398408722026],[98.64278642786428,12.783086985991915],[98.64638646386464,12.786464140531677],[98.64998649986501,12.79659560415098],[98.63558635586355,12.87933589037523],[98.62478624786252,12.884401622184882],[98.59958599585997,12.911418858502998],[98.58878588785888,12.919861744852412],[98.59958599585997,12.94181324936089],[98.6067860678607,12.950256135710305],[98.61398613986142,12.953633290250067],[98.61038610386106,12.960387599329593],[98.5959859598596,12.995847721997137],[98.58518585185851,13.016110649235728],[98.58518585185851,13.02624211285503],[98.58158581585815,13.065079390062323],[98.58158581585815,13.0768994309515],[98.58878588785888,13.085342317300913],[98.58158581585815,13.114048130888918],[98.57798577985778,13.18665695349388],[98.56718567185675,13.20185414892282],[98.55278552785529,13.20860845800236],[98.49878498784989,13.24913431247954],[98.49518495184952,13.286283012416959],[98.49158491584916,13.298103053306136],[98.48078480784807,13.28459443514707],[98.4735847358474,13.293037321496485],[98.4735847358474,13.303168785115787],[98.4735847358474,13.313300248735075],[98.4735847358474,13.325120289624266],[98.45918459184594,13.355514680482145],[98.45918459184594,13.36902329864121],[98.4735847358474,13.379154762260512],[98.46998469984703,13.385909071340038],[98.46998469984703,13.394351957689452],[98.4735847358474,13.412926307658168],[98.4627846278463,13.407860575848517],[98.45918459184594,13.399417689499103],[98.45198451984521,13.379154762260512],[98.45558455584558,13.39604053495934],[98.45198451984521,13.41123773038828],[98.44478444784448,13.424746348547345],[98.43758437584376,13.434877812166633],[98.43398433984339,13.438254966706396],[98.42678426784266,13.441632121246172],[98.42318423184236,13.44669785305581],[98.41958419584199,13.455140739405223],[98.41958419584199,13.461895048484763],[98.43038430384303,13.470337934834177],[98.43038430384303,13.47878082118359],[98.42678426784266,13.490600862072768],[98.40158401584017,13.522683830200535],[98.39438394383944,13.542946757439125],[98.38358383583835,13.55138964378854],[98.36918369183695,13.559832530137953],[98.35838358383586,13.563209684677716],[98.36198361983622,13.576718302836781],[98.35838358383586,13.585161189186195],[98.33678336783368,13.59866980734526],[98.33678336783368,13.62062131185374],[98.29718297182973,13.671278629950208],[98.289982899829,13.694918711728576],[98.29718297182973,13.688164402649036],[98.30078300783009,13.701673020808101],[98.27558275582754,13.706738752617753],[98.25758257582578,13.706738752617753],[98.24318243182432,13.713493061697278],[98.23958239582396,13.74557602982506],[98.25038250382505,13.782724729762478],[98.25398253982542,13.797921925191417],[98.25038250382505,13.811430543350482],[98.24678246782469,13.824939161509533],[98.24678246782469,13.836759202398724],[98.25398253982542,13.851956397827664],[98.24678246782469,13.862087861446966],[98.23238232382323,13.917810911353087],[98.23238232382323,13.961713920370045],[98.23238232382323,13.971845383989333],[98.22878228782287,13.981976847608635],[98.22878228782287,13.98873115668816],[98.23238232382323,13.997174043037575],[98.23238232382323,14.002239774847226],[98.2215822158222,14.012371238466514],[98.20718207182074,14.029257011165342],[98.19638196381965,14.047831361134058],[98.19278192781928,14.064717133832886],[98.18558185581855,14.064717133832886],[98.18558185581855,14.05289709294371],[98.17838178381783,14.03094558843523],[98.17838178381783,14.019125547546054],[98.18198181981819,14.014059815736402],[98.19638196381965,13.997174043037575],[98.19998199982001,13.992108311227923],[98.19998199982001,13.965091074909807],[98.19278192781928,13.951582456750742],[98.18198181981819,13.938073838591677],[98.18198181981819,13.924565220432612],[98.19638196381965,13.887416520495194],[98.19998199982001,13.868842170526491],[98.19638196381965,13.850267820557775],[98.18918189181892,13.814807697890245],[98.17838178381783,13.732067411665994],[98.19278192781928,13.686475825379162],[98.19638196381965,13.667901475410446],[98.19278192781928,13.651015702711618],[98.18558185581855,13.632441352742916],[98.18198181981819,13.627375620933265],[98.17838178381783,13.622309889123613],[98.17478174781746,13.617244157313962],[98.17118171181716,13.605424116424786],[98.16758167581679,13.593604075535609],[98.16758167581679,13.58347261191632],[98.17118171181716,13.563209684677716],[98.18198181981819,13.55138964378854],[98.18558185581855,13.544635334709014],[98.17838178381783,13.537881025629474],[98.17118171181716,13.537881025629474],[98.16398163981643,13.542946757439125],[98.14958149581497,13.558143952868079],[98.14958149581497,13.549701066518665],[98.1459814598146,13.542946757439125],[98.1459814598146,13.537881025629474],[98.14238142381424,13.548012489248777],[98.14238142381424,13.561521107407842],[98.14238142381424,13.573341148297018],[98.13518135181351,13.57840688010667],[98.12798127981279,13.581784034646432],[98.13518135181351,13.59191549826572],[98.14238142381424,13.602046961885023],[98.14958149581497,13.605424116424786],[98.1459814598146,13.610489848234437],[98.14238142381424,13.62062131185374],[98.13878138781388,13.627375620933265],[98.15318153181533,13.630752775473027],[98.1567815678157,13.642572816362204],[98.1567815678157,13.657770011791158],[98.14958149581497,13.672967207220097],[98.16758167581679,13.672967207220097],[98.16758167581679,13.68141009356951],[98.16038160381606,13.689852979918925],[98.1459814598146,13.694918711728576],[98.12438124381242,13.693230134458688],[98.11718117181175,13.694918711728576],[98.1027810278103,13.701673020808101],[98.10638106381066,13.706738752617753],[98.11358113581139,13.72362452531658],[98.11718117181175,13.728690257126232],[98.0919809198092,13.740510298015408],[98.08118081180811,13.769216111603413],[98.08838088380884,13.794544770651655],[98.10998109981102,13.791167616111892],[98.1027810278103,13.835070625128836],[98.1027810278103,13.875596479606017],[98.10998109981102,13.892482252304845],[98.10998109981102,13.902613715924147],[98.10638106381066,13.90599087046391],[98.1027810278103,13.907679447733798],[98.0919809198092,13.912745179543435],[98.08478084780847,13.917810911353087],[98.08118081180811,13.924565220432612],[98.07758077580775,13.94820530221098],[98.06678066780671,13.98873115668816],[98.06318063180635,14.01068266119664],[98.06678066780671,14.032634165705105],[98.08838088380884,14.063028556562998],[98.09558095580957,14.078225751991951],[98.09918099180993,14.091734370151002],[98.10638106381066,14.110308720119718],[98.10998109981102,14.123817338278783],[98.10998109981102,14.132260224628197],[98.09558095580957,14.167720347295727],[98.10998109981102,14.167720347295727],[98.10638106381066,14.181228965454793],[98.1027810278103,14.19136042907408],[98.09558095580957,14.19304900634397],[98.08838088380884,14.181228965454793],[98.04158041580416,14.243706324440453],[98.01638016380167,14.299429374346573],[97.99477994779949,14.329823765204466],[97.98757987579876,14.351775269712945],[97.98037980379803,14.377103928761187],[97.98037980379803,14.397366855999778],[97.9839798397984,14.419318360508242],[97.99477994779949,14.449712751366135],[98.00198001980021,14.468287101334852],[97.99117991179912,14.459844214985438],[97.9839798397984,14.449712751366135],[97.97677976779767,14.44295844228661],[97.96597965979663,14.448024174096261],[97.96237962379627,14.45815563771555],[97.95157951579517,14.503747224002382],[97.92277922779226,14.557781696638628],[97.91197911979123,14.586487510226632],[97.92637926379263,14.613504746544763],[97.90117901179013,14.63039051924359],[97.88677886778868,14.655719178291832],[97.88677886778868,14.684424991879837],[97.9047790477905,14.709753650928079],[97.94437944379445,14.719885114547367],[97.969579695797,14.696245032769014],[97.99117991179912,14.664162064641246],[98.0271802718027,14.647276291942418],[97.99117991179912,14.69286787822925],[97.9839798397984,14.714819382737716],[98.00198001980021,14.721573691817255],[97.9839798397984,14.72832800089678],[97.969579695797,14.73508230997632],[97.96597965979663,14.746902350865497],[97.9731797317973,14.763788123564325],[97.96597965979663,14.768853855373962],[97.9587795877959,14.778985318993264],[97.95517955179554,14.787428205342678],[97.95157951579517,14.794182514422204],[97.95157951579517,14.799248246231855],[97.94437944379445,14.795871091692092],[97.93717937179372,14.784051050802915],[97.94077940779408,14.782362473533027],[97.94437944379445,14.777296741723376],[97.94437944379445,14.768853855373962],[97.94437944379445,14.763788123564325],[97.92997929979299,14.751968082675148],[97.91557915579159,14.758722391754674],[97.90837908379086,14.775608164453502],[97.9047790477905,14.79755966896198],[97.89757897578977,14.79755966896198],[97.8939789397894,14.778985318993264],[97.90117901179013,14.738459464516083],[97.8939789397894,14.73001657816667],[97.88677886778868,14.726639423626906],[97.88317883178831,14.721573691817255],[97.87597875978759,14.716507960007604],[97.86157861578619,14.716507960007604],[97.85797857978582,14.718196537277493],[97.8507785077851,14.72326226908713],[97.84717847178473,14.73001657816667],[97.84357843578437,14.736770887246195],[97.81477814778151,14.851594141598227],[97.79317793177933,14.880299955186231],[97.80037800378005,14.89043141880552],[97.80397803978042,14.900562882424822],[97.80397803978042,14.924202964203175],[97.80397803978042,14.936023005092352],[97.81477814778151,14.949531623251417],[97.81477814778151,14.957974509600831],[97.81117811178115,14.983303168649073],[97.80397803978042,14.998500364078012],[97.78957789577896,15.008631827697315],[97.7751777517775,15.017074714046728],[97.77877778777787,15.025517600396142],[97.7859778597786,15.03058333220578],[97.79677796777969,15.032271909475668],[97.80757807578078,15.03058333220578],[97.80397803978042,15.039026218555193],[97.80037800378005,15.050846259444384],[97.79317793177933,15.059289145793798],[97.80757807578078,15.074486341222737],[97.81117811178115,15.094749268461328],[97.80757807578078,15.174112400145816],[97.81117811178115,15.190998172844644],[97.82197821978218,15.209572522813346],[97.79317793177933,15.209572522813346],[97.77877778777787,15.211261100083235],[97.76797767977683,15.223081140972411],[97.74277742777429,15.26698414998937],[97.73917739177392,15.275427036338783],[97.73917739177392,15.292312809037611],[97.74277742777429,15.317641468085839],[97.73917739177392,15.32946150897503],[97.72477724777247,15.339592972594318],[97.72837728377283,15.34972443621362],[97.73557735577356,15.354790168023271],[97.73917739177392,15.358167322563034],[97.74997749977501,15.359855899832908],[97.7607776077761,15.393627445230564],[97.76797767977683,15.388561713420913],[97.7751777517775,15.393627445230564],[97.79317793177933,15.407136063389629],[97.7859778597786,15.418956104278806],[97.7607776077761,15.48987634961388],[97.7607776077761,15.503384967772945],[97.7751777517775,15.53209078136095],[97.76797767977683,15.543910822250126],[97.74277742777429,15.604699603965898],[97.74277742777429,15.609765335775549],[97.74637746377465,15.618208222124963],[97.74637746377465,15.626651108474377],[97.74637746377465,15.63509399482379],[97.73917739177392,15.641848303903316],[97.74277742777429,15.65029119025273],[97.74277742777429,15.665488385681684],[97.73917739177392,15.680685581110623],[97.7319773197732,15.6925056219998],[97.72477724777247,15.700948508349214],[97.72837728377283,15.709391394698628],[97.7319773197732,15.717834281048042],[97.73557735577356,15.726277167397456],[97.7319773197732,15.73472005374687],[97.7175771757718,15.749917249175823],[97.71397713977143,15.756671558255348],[97.71397713977143,15.763425867334874],[97.72477724777247,15.771868753684288],[97.72477724777247,15.778623062763828],[97.72837728377283,15.842788999019362],[97.7211772117721,15.856297617178427],[97.7067770677707,15.85967477171819],[97.71397713977143,15.888380585306194],[97.69237692376925,15.912020667084562],[97.63837638376384,15.94916936702198],[97.60957609576099,15.98462948968951],[97.58077580775807,16.008269571467864],[97.57717577175771,16.016712457817277],[97.57717577175771,16.02177818962693],[97.56997569975698,16.06230404410411],[97.56997569975698,16.072435507723412],[97.57357573575734,16.079189816802938],[97.57717577175771,16.08425554861259],[97.58437584375844,16.085944125882477],[97.60237602376026,16.092698434962003],[97.61317613176135,16.107895630390942],[97.62037620376202,16.12478140308977],[97.63837638376384,16.237916080171914],[97.64917649176493,16.259867584680393],[97.64917649176493,16.27168762556957],[97.64917649176493,16.283507666458746],[97.64557645576457,16.29363913007805],[97.63837638376384,16.31221348004675],[97.62757627576275,16.351050757254058],[97.62397623976238,16.394953766271],[97.62757627576275,16.43716819801807],[97.63837638376384,16.477694052495252],[97.6527765277653,16.50639986608327],[97.67437674376743,16.533417102401387],[97.70317703177034,16.551991452370103],[97.73917739177392,16.55874576144963],[97.73557735577356,16.567188647799043],[97.72837728377283,16.572254379608694],[97.7211772117721,16.577320111418345],[97.71397713977143,16.57900868868822],[97.70317703177034,16.573942956878568],[97.6527765277653,16.540171411480912],[97.63117631176311,16.5317285251315],[97.61317613176135,16.530039947861624],[97.54837548375485,16.538482834211038],[97.5231752317523,16.53679425694115],[97.50157501575018,16.5317285251315],[97.49437494374945,16.528351370591736],[97.49077490774908,16.524974216051973],[97.48357483574836,16.519908484242322],[97.47637476374763,16.518219906972448],[97.4691746917469,16.519908484242322],[97.45837458374587,16.5232856387821],[97.45117451174514,16.524974216051973],[97.42237422374222,16.5232856387821],[97.40437404374046,16.51653132970256],[97.38637386373864,16.504711288813382],[97.37197371973718,16.482759784304903],[97.3359733597336,16.63135458405459],[97.3359733597336,16.654994665832945],[97.32877328773287,16.680323324881186],[97.31077310773111,16.651617511293182],[97.28557285572856,16.658371820372707],[97.2567725677257,16.697209097580014],[97.23877238772388,16.732669220247544],[97.23157231572316,16.769817920184963],[97.23157231572316,16.796835156503093],[97.24597245972461,16.817098083741683],[97.23517235172352,16.82891812463086],[97.23157231572316,16.839049588250163],[97.23517235172352,16.84918105186945],[97.23877238772388,16.874509710917692],[97.23157231572316,16.874509710917692],[97.22437224372243,16.852558206409213],[97.22077220772206,16.840738165520037],[97.22077220772206,16.825540970091097],[97.20997209972103,16.83398385644051],[97.20637206372066,16.845803897329688],[97.20637206372066,16.859312515488753],[97.20637206372066,16.874509710917692],[97.22077220772206,16.901526947235823],[97.20997209972103,16.908281256315348],[97.2027720277203,16.90659267904546],[97.19197191971921,16.901526947235823],[97.18477184771848,16.921789874474413],[97.18837188371884,16.947118533522655],[97.19917199171994,16.997775851619124],[97.19917199171994,17.012973047048078],[97.19557195571957,17.021415933397492],[97.17757177571775,17.03830170609632],[97.17037170371702,17.046744592445734],[97.16317163171635,17.05856463333491],[97.15957159571599,17.07376182876385],[97.15597155971562,17.087270446922915],[97.17397173971739,17.112599105971157],[97.2027720277203,17.105844796891617],[97.23517235172352,17.09571333327233],[97.26037260372607,17.107533374161505],[97.22077220772206,17.12610772413022],[97.2027720277203,17.13117345593986],[97.18117181171812,17.134550610479636],[97.15957159571599,17.129484878669984],[97.1487714877149,17.117664837780808],[97.14157141571417,17.09909048781209],[97.13077130771308,17.0788275605735],[97.11277112771131,17.10077906508198],[97.10197101971022,17.134550610479636],[97.09477094770949,17.164945001337514],[97.10917109171095,17.181830774036342],[97.10917109171095,17.188585083115882],[97.08757087570876,17.19365081492552],[97.08037080370804,17.210536587624347],[97.08037080370804,17.230799514862937],[97.06957069570694,17.251062442101528],[97.04797047970482,17.26119390572083],[97.02277022770227,17.267948214800356],[97.00837008370087,17.278079678419658],[97.01197011970123,17.29834260565825],[96.90396903969042,17.37601716007285],[96.8967689676897,17.384460046422262],[96.88956889568897,17.394591510041565],[96.8859688596886,17.411477282740393],[96.88956889568897,17.44356025086816],[96.88236882368824,17.457068869027225],[96.87156871568715,17.441871673598285],[96.86436864368642,17.40303439639098],[96.85716857168575,17.38783720096204],[96.85356853568538,17.394591510041565],[96.84276842768429,17.40303439639098],[96.84276842768429,17.409788705470504],[96.83556835568356,17.40641155093074],[96.82836828368283,17.40303439639098],[96.82476824768247,17.397968664581327],[96.8211682116821,17.394591510041565],[96.82836828368283,17.38783720096204],[96.84996849968502,17.359131387374035],[96.8859688596886,17.33886846013543],[96.91116911169115,17.316916955626965],[96.91116911169115,17.284833987499184],[96.88956889568897,17.26119390572083],[96.86436864368642,17.24093097848224],[96.84996849968502,17.212225164894235],[96.85716857168575,17.168322155877277],[96.8967689676897,17.10077906508198],[96.91116911169115,17.067007519684324],[96.91116911169115,17.024793087937255],[96.90396903969042,17.009595892508315],[96.8859688596886,16.979201501650422],[96.87876878768787,16.935298492633464],[96.86796867968678,16.92854418355394],[96.83556835568356,16.935298492633464],[96.83916839168393,16.92685560628405],[96.84276842768429,16.918412719934636],[96.84996849968502,16.909969833585237],[96.85716857168575,16.901526947235823],[96.84276842768429,16.903215524505697],[96.8211682116821,16.908281256315348],[96.80676806768071,16.908281256315348],[96.80676806768071,16.901526947235823],[96.8211682116821,16.894772638156283],[96.83556835568356,16.884641174536995],[96.84276842768429,16.874509710917692],[96.84996849968502,16.861001092758627],[96.84636846368466,16.8441153200598],[96.8319683196832,16.822163815551335],[96.82476824768247,16.800212311042856],[96.81036810368107,16.76475218837531],[96.79596795967961,16.763063611105437],[96.78876788767889,16.756309302025898],[96.79236792367925,16.747866415676498],[96.79956799567998,16.737734952057195],[96.78156781567816,16.712406293008954],[96.7671676716767,16.697209097580014],[96.72756727567275,16.66850328399201],[96.71676716767166,16.658371820372707],[96.6987669876699,16.629666006784703],[96.68076680766808,16.575631534148457],[96.64116641166413,16.545237143290564],[96.61596615966158,16.518219906972448],[96.55836558365587,16.49626840246397],[96.49716497164974,16.484448361574792],[96.4359643596436,16.477694052495252],[96.39996399964002,16.504711288813382],[96.37836378363784,16.508088443353145],[96.35676356763571,16.518219906972448],[96.28836288362885,16.567188647799043],[96.2739627396274,16.582385843227982],[96.26676266762667,16.597583038656936],[96.26676266762667,16.62122312043529],[96.2631626316263,16.64148604767388],[96.25596255962563,16.65668324310282],[96.23436234362345,16.697209097580014],[96.23076230762308,16.71916060208848],[96.22716227162272,16.739423529327084],[96.22716227162272,16.76137503383555],[96.23436234362345,16.776572229264502],[96.2739627396274,16.801900888312744],[96.28836288362885,16.81372092920192],[96.25596255962563,16.815409506471795],[96.20556205562059,16.778260806534377],[96.16956169561695,16.77150649745485],[96.17676176761768,16.763063611105437],[96.1947619476195,16.742800683866847],[96.19836198361986,16.734357797517433],[96.20556205562059,16.697209097580014],[96.21636216362162,16.680323324881186],[96.24156241562417,16.649928934023293],[96.24516245162454,16.63135458405459],[96.24516245162454,16.6195345431654],[96.23436234362345,16.597583038656936],[96.23076230762308,16.587451575037633],[96.23436234362345,16.575631534148457],[96.24516245162454,16.555368606909866],[96.29556295562958,16.491202670654317],[96.30996309963103,16.4641854343362],[96.3279632796328,16.4540539707169],[96.33516335163353,16.43885677528796],[96.32076320763207,16.415216693509606],[96.30636306363067,16.406773807160192],[96.28476284762849,16.366247952682997],[96.22356223562235,16.344296448174532],[96.16596165961658,16.33247640728534],[96.14436144361446,16.325722098205816],[96.11916119161191,16.322344943666053],[96.09756097560978,16.32909925274558],[96.08676086760869,16.34936217998417],[96.0759607596076,16.36118222087336],[96.0075600756008,16.388199457191476],[96.0651606516065,16.335853561825118],[96.06876068760687,16.310524902776876],[96.01836018360183,16.25649043014063],[95.97875978759788,16.222718884742974],[95.96075960759606,16.215964575663435],[95.9427594275943,16.21934173020321],[95.9427594275943,16.226096039282737],[95.94995949959502,16.239604657441802],[95.94995949959502,16.258179007410504],[95.93555935559357,16.242981811981565],[95.92115921159211,16.226096039282737],[95.90675906759071,16.210898843853798],[95.88155881558816,16.20921026658391],[95.88515885158853,16.217653152933323],[95.88875888758889,16.244670389251453],[95.81675816758167,16.175438721186254],[95.7987579875799,16.14504433032836],[95.77715777157772,16.139978598518724],[95.75555755557559,16.14504433032836],[95.7447574475745,16.158552948487426],[95.7447574475745,16.175438721186254],[95.74115741157414,16.19401307115497],[95.73395733957341,16.212587421123672],[95.72315723157232,16.222718884742974],[95.73395733957341,16.12646998035966],[95.72675726757268,16.106207053121068],[95.69795697956982,16.065681198643887],[95.6907569075691,16.04879542594506],[95.6907569075691,16.001515262388338],[95.68715687156873,15.988006644229273],[95.66555665556655,15.94916936702198],[95.52515525155252,15.80395172181207],[95.46035460354602,15.760048712795111],[95.43155431554317,15.733031476476995],[95.41715417154171,15.722900012857693],[95.39555395553958,15.716145703778167],[95.3739537395374,15.714457126508279],[95.3091530915309,15.722900012857693],[95.2947529475295,15.727965744667344],[95.28755287552877,15.73978578555652],[95.28395283952841,15.83772326720971],[95.29115291152914,15.846166153559125],[95.30195301953023,15.852920462638664],[95.31275312753127,15.866429080797715],[95.31635316353163,15.885003430766432],[95.31275312753127,15.900200626195371],[95.33795337953381,15.92215213070385],[95.35595355953558,15.950857944291855],[95.3631536315363,15.98462948968951],[95.37035370353703,16.016712457817277],[95.36675366753667,16.038663962325757],[95.3631536315363,16.053861157754696],[95.3487534875349,16.085944125882477],[95.34515345153454,16.10451847585118],[95.3487534875349,16.116338516740356],[95.35595355953558,16.12984713489942],[95.3631536315363,16.148421484868138],[95.35595355953558,16.148421484868138],[95.3487534875349,16.138290021248835],[95.33795337953381,16.12984713489942],[95.33075330753309,16.119715671280133],[95.32715327153272,16.107895630390942],[95.33075330753309,16.091009857692114],[95.34515345153454,16.060615466834236],[95.3487534875349,16.04204111686552],[95.34515345153454,15.996449530578687],[95.34155341553418,15.98462948968951],[95.31275312753127,15.947480789752092],[95.29835298352987,15.903577780735148],[95.27315273152732,15.876560544417018],[95.25155251552519,15.868117658067604],[95.23715237152373,15.893446317115846],[95.24435244352446,15.915397821624325],[95.26235262352623,15.940726480672566],[95.27675276752768,15.971120871530445],[95.27315273152732,16.003203839658227],[95.2407524075241,15.950857944291855],[95.22275222752228,15.918774976164087],[95.21915219152191,15.885003430766432],[95.22275222752228,15.810706030891595],[95.21195211952119,15.787065949113241],[95.17235172351724,15.778623062763828],[95.14355143551438,15.788754526383116],[95.12555125551256,15.81746033997112],[95.11475114751147,15.854609039908539],[95.11475114751147,15.893446317115846],[95.13635136351365,16.00658099419799],[95.12915129151293,16.038663962325757],[95.10755107551074,15.98462948968951],[95.0967509675097,16.02515534416669],[95.1111511115111,16.06736977591376],[95.13635136351365,16.101141321311417],[95.17235172351724,16.112961362200593],[95.20835208352082,16.11127278493072],[95.21915219152191,16.112961362200593],[95.22635226352264,16.119715671280133],[95.22275222752228,16.12478140308977],[95.21195211952119,16.12646998035966],[95.20115201152015,16.12646998035966],[95.19395193951942,16.12984713489942],[95.19035190351906,16.138290021248835],[95.18315183151833,16.141667175788598],[95.17955179551797,16.139978598518724],[95.16155161551615,16.134912866709072],[95.15435154351542,16.133224289439184],[95.14715147151475,16.13153571216931],[95.14355143551438,16.134912866709072],[95.13635136351365,16.148421484868138],[95.12915129151293,16.148421484868138],[95.1219512195122,16.13153571216931],[95.09315093150934,16.09438701223189],[95.07155071550716,16.0741240849933],[95.0679506795068,16.04879542594506],[95.07515075150752,15.998138107848575],[95.07155071550716,15.971120871530445],[95.05355053550534,15.846166153559125],[95.04635046350467,15.822526071780771],[95.03555035550357,15.805640299081944],[95.02475024750248,15.80226314454218],[95.01035010350103,15.798885990002418],[94.99594995949963,15.795508835462655],[94.99234992349926,15.788754526383116],[94.9887498874989,15.78200021730359],[94.98514985149853,15.773557330954176],[94.98154981549817,15.766803021874637],[94.97434974349744,15.763425867334874],[94.94914949149495,15.763425867334874],[94.93834938349386,15.763425867334874],[94.90234902349022,15.778623062763828],[94.8591485914859,15.78200021730359],[94.84834848348487,15.790443103653004],[94.8591485914859,15.809017453621706],[94.869948699487,15.815771762701246],[94.88074880748809,15.820837494510883],[94.89154891548918,15.827591803590423],[94.89514895148955,15.8394118444796],[94.89514895148955,15.847854730829013],[94.89154891548918,15.856297617178427],[94.88794887948882,15.864740503527841],[94.88434884348845,15.866429080797715],[94.86274862748627,15.84447757628925],[94.85194851948518,15.841100421749488],[94.84834848348487,15.863051926257953],[94.84834848348487,15.895134894385734],[94.84834848348487,15.908643512544785],[94.83754837548378,15.93734932613279],[94.83394833948341,15.94916936702198],[94.84114841148414,15.962677985181031],[94.85194851948518,15.977875180609985],[94.86274862748627,15.991383798769036],[94.87354873548736,15.998138107848575],[94.88794887948882,15.99982668511845],[94.90594905949058,16.00658099419799],[94.92034920349204,16.018401035087166],[94.9239492394924,16.038663962325757],[94.88794887948882,16.016712457817277],[94.88434884348845,16.035286807785994],[94.88074880748809,16.079189816802938],[94.86274862748627,16.112961362200593],[94.86274862748627,16.128158557629547],[94.869948699487,16.141667175788598],[94.88794887948882,16.170372989376602],[94.89874898748991,16.183881607535668],[94.91674916749167,16.19232449388508],[94.94194941949422,16.195701648424844],[94.95994959949599,16.200767380234495],[94.97434974349744,16.21427599839356],[94.98514985149853,16.232850348362263],[94.99234992349926,16.25142469833098],[94.9887498874989,16.244670389251453],[94.97434974349744,16.23116177109239],[94.97074970749708,16.226096039282737],[94.96714967149671,16.221030307473086],[94.94194941949422,16.215964575663435],[94.9239492394924,16.20921026658391],[94.90234902349022,16.20921026658391],[94.89154891548918,16.205833112044147],[94.869948699487,16.17375014391638],[94.86634866348663,16.168684412106728],[94.85554855548554,16.160241525757314],[94.84834848348487,16.139978598518724],[94.84834848348487,16.096075589501766],[94.85194851948518,16.085944125882477],[94.8591485914859,16.065681198643887],[94.86274862748627,16.055549735024584],[94.86274862748627,16.04879542594506],[94.86634866348663,16.045418271405282],[94.869948699487,16.040352539595645],[94.85554855548554,16.018401035087166],[94.85554855548554,16.013335303277515],[94.8447484474845,15.99982668511845],[94.78714787147874,15.962677985181031],[94.77274772747728,15.944103635212329],[94.74394743947443,15.881626276226669],[94.7367473674737,15.868117658067604],[94.72234722347224,15.856297617178427],[94.70434704347042,15.847854730829013],[94.68274682746829,15.846166153559125],[94.65754657546574,15.854609039908539],[94.65034650346502,15.868117658067604],[94.64314643146434,15.88669200803632],[94.63594635946362,15.908643512544785],[94.63234632346325,15.890069162576083],[94.62154621546216,15.891757739845957],[94.61074610746107,15.905266358005022],[94.59994599945998,15.920463553433962],[94.62874628746289,15.939037903402678],[94.66474664746647,15.957612253371394],[94.70434704347042,15.982940912419622],[94.73314733147333,16.016712457817277],[94.74034740347406,16.06736977591376],[94.74754747547479,16.075812662263175],[94.75834758347582,16.08425554861259],[94.76554765547655,16.092698434962003],[94.76914769147692,16.102829898581305],[94.77274772747728,16.11127278493072],[94.77274772747728,16.13153571216931],[94.77634776347765,16.134912866709072],[94.78354783547837,16.139978598518724],[94.79434794347947,16.148421484868138],[94.79434794347947,16.16193010302719],[94.77634776347765,16.1517986394079],[94.76554765547655,16.139978598518724],[94.7511475114751,16.107895630390942],[94.7259472594726,16.063992621374],[94.71874718747188,16.045418271405282],[94.70434704347042,16.020089612357054],[94.68994689946902,16.00658099419799],[94.6719467194672,15.996449530578687],[94.61434614346143,15.944103635212329],[94.58914589145894,15.932283594323152],[94.56754567545676,15.935660748862915],[94.56394563945639,15.962677985181031],[94.58914589145894,15.996449530578687],[94.64314643146434,16.045418271405282],[94.66474664746647,16.079189816802938],[94.67914679146793,16.121404248550007],[94.68634686346866,16.165307257566965],[94.68274682746829,16.20921026658391],[94.66834668346684,16.241293234711677],[94.66474664746647,16.258179007410504],[94.6719467194672,16.275064780109332],[94.68634686346866,16.29195055280816],[94.70434704347042,16.352739334523946],[94.71154711547115,16.35949364360347],[94.72234722347224,16.362870798143234],[94.73314733147333,16.36118222087336],[94.73314733147333,16.367936529952885],[94.72234722347224,16.378067993572174],[94.70434704347042,16.472628320685615],[94.70794707947078,16.484448361574792],[94.71154711547115,16.497956979733857],[94.71874718747188,16.503022711543494],[94.7259472594726,16.504711288813382],[94.73314733147333,16.509777020623034],[94.73314733147333,16.524974216051973],[94.69714697146975,16.508088443353145],[94.68274682746829,16.511465597892908],[94.67554675546756,16.5317285251315],[94.6719467194672,16.509777020623034],[94.68274682746829,16.42197100258913],[94.68274682746829,16.364559375413123],[94.67914679146793,16.34936217998417],[94.65394653946538,16.322344943666053],[94.65034650346502,16.308836325506988],[94.64314643146434,16.283507666458746],[94.62874628746289,16.259867584680393],[94.6071460714607,16.242981811981565],[94.58554585545858,16.23622750290204],[94.58194581945821,16.242981811981565],[94.5927459274593,16.259867584680393],[94.61434614346143,16.285196243728635],[94.63594635946362,16.325722098205816],[94.62874628746289,16.344296448174532],[94.6179461794618,16.342607870904644],[94.6071460714607,16.325722098205816],[94.59994599945998,16.29363913007805],[94.5927459274593,16.283507666458746],[94.58194581945821,16.275064780109332],[94.57474574745748,16.27168762556957],[94.56034560345603,16.273376202839458],[94.5531455314553,16.280130511918983],[94.54594545945463,16.28688482099851],[94.5387453874539,16.29195055280816],[94.52074520745208,16.295327707347923],[94.51714517145172,16.28688482099851],[94.51714517145172,16.248047543791216],[94.51714517145172,16.22440746201285],[94.51354513545135,16.205833112044147],[94.50634506345062,16.18894733934532],[94.45594455944558,16.106207053121068],[94.42714427144273,16.0741240849933],[94.39474394743951,16.058926889564347],[94.37674376743769,16.055549735024584],[94.36234362343623,16.04879542594506],[94.35154351543514,16.033598230516105],[94.34794347943483,16.00658099419799],[94.3407434074341,15.996449530578687],[94.32274322743228,15.989695221499161],[94.3011430114301,15.989695221499161],[94.2867428674287,15.998138107848575],[94.26514265142652,15.974498026070208],[94.25074250742506,15.967743716990682],[94.23994239942402,15.976186603340096],[94.21474214742148,16.015023880547403],[94.21114211142111,16.02853249870647],[94.20754207542075,16.043729694135408],[94.21474214742148,16.15686437121755],[94.23634236342366,16.273376202839458],[94.23634236342366,16.347673602714295],[94.23634236342366,16.36118222087336],[94.23994239942402,16.366247952682997],[94.25434254342542,16.379756570842062],[94.25794257942579,16.388199457191476],[94.27234272342724,16.465874011606076],[94.26874268742688,16.52666279332186],[94.27234272342724,16.538482834211038],[94.30834308343083,16.528351370591736],[94.32994329943301,16.528351370591736],[94.3407434074341,16.548614297830326],[94.34794347943483,16.577320111418345],[94.34794347943483,16.592517306847284],[94.32634326343265,16.6009601931967],[94.32634326343265,16.60602592500635],[94.35154351543514,16.617845965895526],[94.36234362343623,16.634731738594354],[94.36234362343623,16.685389056690838],[94.3659436594366,16.700586252119777],[94.37314373143732,16.72929206570778],[94.37674376743769,16.741112106596958],[94.38034380343805,16.754620724756023],[94.39834398343987,16.776572229264502],[94.40194401944018,16.78839227015368],[94.40194401944018,16.83060670190075],[94.39474394743951,16.845803897329688],[94.38394383943842,16.872821133647804],[94.38034380343805,16.88632975180687],[94.38394383943842,16.901526947235823],[94.39114391143914,16.90659267904546],[94.40194401944018,16.904904101775585],[94.41274412744127,16.901526947235823],[94.42354423544236,16.901526947235823],[94.43434434344346,16.909969833585237],[94.46314463144631,16.950495688062418],[94.44514445144455,16.950495688062418],[94.45234452344522,16.965692883491357],[94.45954459544595,16.982578656190185],[94.45594455944558,17.050121746985496],[94.45954459544595,17.060253210604785],[94.46314463144631,17.070384674224087],[94.47754477544777,17.092336178732566],[94.4847448474485,17.105844796891617],[94.48834488344886,17.124419146860333],[94.4847448474485,17.14130491955916],[94.45954459544595,17.153124960448338],[94.45234452344522,17.166633578607403],[94.45594455944558,17.180142196766468],[94.46314463144631,17.188585083115882],[94.50994509945099,17.168322155877277],[94.51714517145172,17.171699310417054],[94.52074520745208,17.17845361949658],[94.53154531545317,17.181830774036342],[94.5387453874539,17.186896505845993],[94.5387453874539,17.19702796946528],[94.53514535145354,17.205470855814696],[94.52794527945281,17.208848010354473],[94.51714517145172,17.212225164894235],[94.51354513545135,17.217290896703886],[94.50994509945099,17.230799514862937],[94.51354513545135,17.274702523879895],[94.51714517145172,17.28821114203896],[94.53154531545317,17.289899719308835],[94.54594545945463,17.296654028388375],[94.54594545945463,17.320294110166728],[94.56034560345603,17.316916955626965],[94.57114571145712,17.311851223817314],[94.58554585545858,17.3034083374679],[94.5927459274593,17.291588296578723],[94.57834578345785,17.359131387374035],[94.56754567545676,17.462134600836876],[94.56754567545676,17.477331796265815],[94.57114571145712,17.494217568964643],[94.57114571145712,17.50603760985382],[94.56754567545676,17.519546228012885],[94.56034560345603,17.53305484617195],[94.55674556745566,17.538120577981587],[94.5531455314553,17.54318630979124],[94.5531455314553,17.556694927950304],[94.56034560345603,17.582023586998545],[94.57834578345785,17.576957855188894],[94.59634596345967,17.558383505220192],[94.61434614346143,17.544874887061127],[94.61074610746107,17.560072082490066],[94.58914589145894,17.593843627887722],[94.5927459274593,17.603975091507024],[94.59634596345967,17.6157951323962],[94.58914589145894,17.62592659601549],[94.57474574745748,17.641123791444443],[94.56394563945639,17.661386718683033],[94.55674556745566,17.681649645921624],[94.5531455314553,17.727241232208456],[94.54234542345426,17.747504159447047],[94.50274502745026,17.786341436654354],[94.49194491944922,17.816735827512233],[94.48834488344886,17.87583603195813],[94.4847448474485,17.90285326827626],[94.44874448744491,17.973773513611334],[94.44514445144455,17.987282131770385],[94.45234452344522,18.00247932719934],[94.48114481144813,18.015987945358404],[94.49194491944922,18.026119408977692],[94.49554495544959,18.04807091348617],[94.49194491944922,18.071710995264525],[94.48114481144813,18.093662499773004],[94.46314463144631,18.122368313361008],[94.45954459544595,18.13249977698031],[94.45954459544595,18.144319817869487],[94.45954459544595,18.156139858758664],[94.45234452344522,18.164582745108078],[94.44154441544418,18.176402785997254],[94.43794437944382,18.18315709507678],[94.43074430744309,18.221994372284087],[94.42354423544236,18.242257299522677],[94.40554405544054,18.25070018587209],[94.36234362343623,18.24563445406244],[94.3407434074341,18.24732303133233],[94.32634326343265,18.259143072221505],[94.32634326343265,18.26758595857092],[94.32634326343265,18.281094576729984],[94.32634326343265,18.29460319488905],[94.32994329943301,18.303046081238463],[94.3407434074341,18.306423235778226],[94.35154351543514,18.29291461761916],[94.3659436594366,18.297980349428812],[94.38034380343805,18.28784888580951],[94.38754387543878,18.286160308539635],[94.39834398343987,18.291226040349272],[94.40914409144091,18.3081118130481],[94.41634416344164,18.31317754485775],[94.40554405544054,18.33006331755658],[94.39834398343987,18.348637667525296],[94.39114391143914,18.362146285684346],[94.3659436594366,18.368900594763886],[94.35154351543514,18.37565490384341],[94.34434344343447,18.39085209927235],[94.3407434074341,18.409426449241067],[94.32994329943301,18.426312221939895],[94.27954279542797,18.48034669457614],[94.25794257942579,18.509052508164146],[94.24354243542439,18.53944689902204],[94.25794257942579,18.536069744482262],[94.26154261542615,18.544512630831676],[94.25434254342542,18.62725291705594],[94.24714247142475,18.639072957945118],[94.14994149941498,18.730256130518782],[94.14994149941498,18.738699016868196],[94.1571415714157,18.738699016868196],[94.17514175141753,18.72519039870913],[94.21114211142111,18.72519039870913],[94.27954279542797,18.738699016868196],[94.26514265142652,18.74545332594772],[94.25074250742506,18.752207635027247],[94.22914229142293,18.735321862328433],[94.21114211142111,18.74207617140796],[94.18234182341826,18.785979180424903],[94.15354153541534,18.821439303092447],[94.14634146341467,18.84001365306115],[94.14994149941498,18.868719466649154],[94.13914139141394,18.860276580299754],[94.13194131941322,18.84676796214069],[94.13194131941322,18.831570766711735],[94.13554135541358,18.81975072582256],[94.12114121141212,18.816373571282796],[94.09954099540994,18.821439303092447],[94.07794077940781,18.833259343981624],[94.06714067140672,18.848456539410563],[94.05634056340563,18.843390807600926],[94.05274052740526,18.841702230331038],[94.03834038340386,18.858588003029865],[94.03114031140314,18.88898239388776],[94.03834038340386,18.917688207475763],[94.05274052740526,18.936262557444465],[94.04194041940423,18.97172268011201],[94.03834038340386,18.98523129827106],[94.04194041940423,18.99705133916025],[94.05274052740526,19.01393711185908],[94.05274052740526,19.022379998208493],[94.06354063540635,19.040954348177195],[94.06714067140672,19.042642925447083],[94.06354063540635,19.04939723452661],[94.05994059940599,19.057840120876023],[94.05994059940599,19.062905852685674],[94.08514085140854,19.0797916253845],[94.09594095940963,19.086545934464027],[94.08154081540818,19.086545934464027],[94.05634056340563,19.081480202654376],[94.04554045540459,19.081480202654376],[94.03114031140314,19.088234511733916],[94.02754027540277,19.09498882081344],[94.0347403474035,19.105120284432743],[94.03834038340386,19.12200605713157],[94.03834038340386,19.13213752075086],[94.03114031140314,19.15408902525934],[94.03114031140314,19.169286220688278],[94.03834038340386,19.181106261577455],[94.0491404914049,19.208123497895585],[94.05274052740526,19.22163211605465],[94.04554045540459,19.3043724022789],[94.0491404914049,19.32125817497773],[94.05994059940599,19.329701061327142],[94.07074070740708,19.351652565835607],[94.07434074340745,19.373604070344086],[94.06714067140672,19.388801265773026],[94.05634056340563,19.363472606724784],[94.03114031140314,19.316192443168077],[94.0239402394024,19.285798052310184],[94.0347403474035,19.2351407342137],[94.0347403474035,19.204746343355822],[94.0239402394024,19.191237725196757],[94.00954009540095,19.17941768430758],[93.99513995139955,19.15915475706899],[93.97353973539737,19.145646138909925],[93.94833948339482,19.15915475706899],[93.94113941139415,19.169286220688278],[93.94113941139415,19.19461487973652],[93.93753937539378,19.204746343355822],[93.92673926739269,19.20981207516546],[93.9159391593916,19.204746343355822],[93.90873908739087,19.191237725196757],[93.90873908739087,19.176040529767818],[93.9159391593916,19.169286220688278],[93.94833948339482,19.138891829830385],[93.95553955539555,19.12707178894121],[93.95553955539555,19.118628902591794],[93.95193951939518,19.11018601624238],[93.95193951939518,19.098365975353204],[93.95193951939518,19.03251146182778],[93.95913959139591,19.01224853458919],[93.96273962739627,19.000428493700014],[93.9807398073981,18.980165566461423],[93.98433984339846,18.968345525572246],[93.98433984339846,18.956525484683056],[93.97713977139773,18.941328289254116],[93.97713977139773,18.932885402904702],[93.97353973539737,18.9227539392854],[93.95193951939518,18.895736702967284],[93.94833948339482,18.894048125697395],[93.93753937539378,18.890670971157633],[93.93753937539378,18.88898239388776],[93.93753937539378,18.883916662078107],[93.93753937539378,18.875473775728693],[93.94113941139415,18.870408043919042],[93.94473944739451,18.868719466649154],[93.93033930339305,18.858588003029865],[93.91953919539196,18.86703088937928],[93.90873908739087,18.88222808480822],[93.86553865538656,18.895736702967284],[93.81513815138152,18.94470544379388],[93.79353793537939,18.953148330143293],[93.75033750337502,18.97003410284212],[93.73593735937362,18.981854143731297],[93.72513725137253,18.9919856073506],[93.72153721537217,19.002117070969888],[93.71433714337144,19.010559957319302],[93.70353703537035,19.019002843668716],[93.69273692736931,19.020691420938604],[93.68553685536858,19.019002843668716],[93.67833678336785,19.019002843668716],[93.67113671136713,19.03251146182778],[93.66753667536676,19.044331502716958],[93.67113671136713,19.066283007225437],[93.66753667536676,19.078103048114613],[93.66033660336603,19.086545934464027],[93.65673656736567,19.09667739808333],[93.64953649536494,19.108497438972506],[93.64953649536494,19.118628902591794],[93.64233642336427,19.133826098020748],[93.60633606336063,19.162531911608752],[93.59553595535954,19.176040529767818],[93.56673566735668,19.231763579673938],[93.55593555935559,19.238517888753478],[93.49833498334982,19.31450386589819],[93.48753487534879,19.333078215866905],[93.48393483934842,19.349963988565733],[93.48393483934842,19.392178420312803],[93.49113491134915,19.407375615741742],[93.50913509135091,19.42257281117068],[93.5307353073531,19.432704274789984],[93.55233552335523,19.431015697520095],[93.55953559535595,19.42426138844057],[93.56313563135632,19.414129924821268],[93.56673566735668,19.407375615741742],[93.57753577535777,19.40399846120198],[93.609936099361,19.40399846120198],[93.63153631536318,19.371915493074198],[93.6387363873639,19.348275411295845],[93.62073620736209,19.33476679313678],[93.6639366393664,19.306060979548775],[93.68913689136895,19.295929515929487],[93.7179371793718,19.2942409386596],[93.72153721537217,19.268912279611357],[93.75393753937539,19.24696077510289],[93.7971379713797,19.2351407342137],[93.83313833138334,19.238517888753478],[93.86553865538656,19.253715084182417],[93.93033930339305,19.29930667046925],[93.95193951939518,19.32125817497773],[93.95193951939518,19.32463532951749],[93.94833948339482,19.338143947676556],[93.95193951939518,19.34152110221632],[93.95193951939518,19.343209679486193],[93.96273962739627,19.34658683402597],[93.96273962739627,19.348275411295845],[93.9807398073981,19.371915493074198],[93.98793987939882,19.38711268850315],[93.98793987939882,19.405687038471854],[93.98433984339846,19.437770006599635],[93.99153991539919,19.44959004748881],[93.99153991539919,19.456344356568337],[93.98433984339846,19.46478724291775],[93.97713977139773,19.463098665647877],[93.94833948339482,19.458032933838226],[93.92313923139233,19.463098665647877],[93.9159391593916,19.473230129267165],[93.91953919539196,19.48505017015634],[93.93753937539378,19.49180447923588],[93.92673926739269,19.49687021104552],[93.9159391593916,19.498558788315407],[93.8907389073891,19.498558788315407],[93.88353883538838,19.50193594285517],[93.85473854738547,19.52726460190341],[93.81513815138152,19.552593260951653],[93.79353793537939,19.57116761092037],[93.78633786337866,19.59143053815896],[93.77553775537757,19.603250579048137],[93.73953739537399,19.6167591972072],[93.73233732337326,19.63195639263614],[93.73953739537399,19.650530742604843],[93.75753757537575,19.660662206224146],[93.77913779137793,19.662350783494034],[93.80073800738006,19.657285051684383],[93.79353793537939,19.67417082438321],[93.80073800738006,19.68936801981215],[93.81513815138152,19.702876637971215],[93.82593825938261,19.718073833400155],[93.81153811538115,19.740025337908634],[93.80793807938079,19.745091069718285],[93.80073800738006,19.718073833400155],[93.7827378273783,19.69105659708204],[93.76113761137611,19.67417082438321],[93.73233732337326,19.677547978922973],[93.72153721537217,19.685990865272387],[93.71433714337144,19.697810906161564],[93.71073710737107,19.713008101590503],[93.71073710737107,19.73158245155922],[93.7179371793718,19.743402492448396],[93.74313743137435,19.7535339560677],[93.75033750337502,19.765353996956875],[93.72153721537217,19.768731151496638],[93.70713707137071,19.7535339560677],[93.70353703537035,19.734959606098982],[93.69273692736931,19.724828142479694],[93.64953649536494,19.724828142479694],[93.63513635136354,19.734959606098982],[93.63513635136354,19.760288265147224],[93.62433624336245,19.733271028829108],[93.61713617136172,19.723139565209806],[93.60273602736027,19.718073833400155],[93.60273602736027,19.783928346925578],[93.60633606336063,19.79574838781477],[93.66033660336603,19.870045787689605],[93.67833678336785,19.883554405848656],[93.70353703537035,19.885242983118545],[93.73953739537399,19.881865828578782],[93.7287372873729,19.89368586946796],[93.72513725137253,19.905505910357135],[93.7287372873729,19.91394879670655],[93.74673746737466,19.917325951246312],[93.73953739537399,19.925768837595726],[93.73233732337326,19.932523146675265],[93.72513725137253,19.935900301215028],[93.7179371793718,19.937588878484902],[93.71073710737107,19.93421172394514],[93.71073710737107,19.9190145285162],[93.70713707137071,19.917325951246312],[93.65673656736567,19.915637373976438],[93.64593645936458,19.91394879670655],[93.6387363873639,19.910571642166786],[93.62793627936281,19.908883064896898],[93.609936099361,19.910571642166786],[93.609936099361,19.907194487627024],[93.5991359913599,19.888620137658307],[93.59553595535954,19.881865828578782],[93.58113581135814,19.881865828578782],[93.56673566735668,19.885242983118545],[93.55593555935559,19.89368586946796],[93.5451354513545,19.902128755817373],[93.55233552335523,19.905505910357135],[93.55953559535595,19.912260219436675],[93.56673566735668,19.917325951246312],[93.5307353073531,19.930834569405377],[93.519935199352,19.93927745575479],[93.5307353073531,19.951097496643968],[93.51633516335164,19.957851805723507],[93.51273512735128,19.969671846612684],[93.51633516335164,19.98149188750186],[93.5307353073531,19.984869042041623],[93.5307353073531,19.99162335112115],[93.52713527135273,19.99837766020069],[93.51273512735128,19.993311928391037],[93.50193501935019,19.98655761931151],[93.49473494734946,19.978114732962098],[93.49113491134915,19.964606114803033],[93.48753487534879,19.969671846612684],[93.4767347673477,19.979803310231972],[93.46953469534697,19.984869042041623],[93.46233462334624,19.96122896026327],[93.45873458734587,19.95447465118373],[93.44793447934478,19.951097496643968],[93.43353433534338,19.95616322845362],[93.42273422734229,19.964606114803033],[93.4119341193412,19.978114732962098],[93.40833408334083,19.988246196581386],[93.40473404734047,20.013574855629628],[93.38313383133834,20.06423217372611],[93.38313383133834,20.087872255504465],[93.37593375933761,20.087872255504465],[93.37593375933761,20.050723555567046],[93.37233372333725,20.030460628328456],[93.36153361533616,20.027083473788693],[93.35433354333543,20.03890351467787],[93.33993339933403,20.10138087366353],[93.3327333273333,20.10138087366353],[93.32553325533257,20.08111794642494],[93.31113311133112,20.065920750996],[93.2931329313293,20.05410071010681],[93.27153271532717,20.047346401027283],[93.24633246332462,20.049034978297172],[93.2139321393214,20.05916644191646],[93.18873188731891,20.06423217372611],[93.17793177931782,20.05410071010681],[93.159931599316,20.06085501918635],[93.1491314913149,20.069297905535763],[93.1347313473135,20.08111794642494],[93.12753127531278,20.094626564584004],[93.13113131131314,20.074363637345414],[93.13833138331387,20.05916644191646],[93.15633156331563,20.027083473788693],[93.17793177931782,19.957851805723507],[93.23553235532358,19.846405705911238],[93.23913239132395,19.821077046862996],[93.21753217532176,19.83627424229195],[93.20313203132031,19.863291478610066],[93.17793177931782,19.917325951246312],[93.159931599316,19.96629469207292],[93.1491314913149,19.995000505660926],[93.13113131131314,20.006820546550102],[93.10953109531096,19.993311928391037],[93.10233102331023,19.964606114803033],[93.10593105931059,19.930834569405377],[93.12393123931241,19.89368586946796],[93.13113131131314,19.86160290134019],[93.1347313473135,19.848094283181126],[93.14553145531454,19.832897087752187],[93.15273152731527,19.82951993321241],[93.15633156331563,19.827831355942536],[93.159931599316,19.824454201402773],[93.17073170731709,19.80925700597382],[93.16713167131672,19.807568428703945],[93.1491314913149,19.82951993321241],[93.13833138331387,19.8312085104823],[93.1347313473135,19.83458566502206],[93.12393123931241,19.846405705911238],[93.11313113131132,19.875111519499242],[93.05913059130592,19.951097496643968],[93.05193051930519,19.967983269342795],[93.04833048330482,19.995000505660926],[93.03753037530379,20.013574855629628],[93.01233012330124,20.040592091947758],[92.99072990729906,20.067609328265874],[92.97992979929802,20.077740791885176],[92.97632976329766,20.087872255504465],[92.97272972729729,20.11657806909247],[92.96912969129693,20.130086687251534],[92.98712987129875,20.125020955441883],[93.0411304113041,20.130086687251534],[93.05553055530555,20.135152419061185],[93.06633066330664,20.146972459950362],[93.0807308073081,20.170612541728715],[93.08433084330846,20.16554680991908],[93.08433084330846,20.160481078109427],[93.08793087930883,20.157103923569665],[93.08793087930883,20.150349614490125],[93.0951309513095,20.150349614490125],[93.11673116731168,20.202695509856497],[93.12033120331205,20.21113839620591],[93.12033120331205,20.217892705285436],[93.08793087930883,20.21113839620591],[93.04833048330482,20.167235387188953],[93.01953019530197,20.150349614490125],[92.99072990729906,20.155415346299776],[92.98712987129875,20.187498314427543],[93.00153001530015,20.239844209793915],[93.01953019530197,20.256729982492743],[93.0411304113041,20.332715959637454],[93.05553055530555,20.349601732336282],[93.0807308073081,20.358044618685696],[93.09153091530914,20.381684700464064],[93.09873098730986,20.43065344129066],[93.0807308073081,20.417144823131594],[93.07353073530737,20.376618968654412],[93.05913059130592,20.36142177322546],[93.04473044730446,20.364798927765236],[93.03393033930342,20.385061855003826],[93.03033030330306,20.410390514052068],[93.03393033930342,20.43065344129066],[93.06993069930701,20.49650795481608],[93.08433084330846,20.5336566547535],[93.07353073530737,20.55391958199209],[93.06993069930701,20.53534523202339],[93.05913059130592,20.51339372751491],[93.04833048330482,20.49144222300643],[93.03393033930342,20.474556450307603],[93.02313023130233,20.452604945799138],[93.01953019530197,20.42389913221112],[93.02313023130233,20.368176082305],[93.0159301593016,20.32427307328804],[92.99432994329942,20.287124373350622],[92.93672936729371,20.21113839620591],[92.8971289712897,20.135152419061185],[92.89352893528934,20.133463841791297],[92.88992889928898,20.12839810998166],[92.87912879128794,20.12333237817201],[92.86832868328685,20.12164380090212],[92.86112861128612,20.125020955441883],[92.85392853928539,20.130086687251534],[92.84672846728466,20.1435953054106],[92.78192781927822,20.18918689169743],[92.77112771127713,20.20100693258661],[92.7747277472775,20.216204128015548],[92.77832778327786,20.2314013234445],[92.78552785527859,20.24659851887344],[92.79992799927999,20.258418559762617],[92.86472864728648,20.300632991509687],[92.90072900729007,20.307387300589212],[92.94392943929438,20.320895918748278],[92.93312933129334,20.32596165055793],[92.92592925929262,20.327650227827817],[92.90432904329043,20.327650227827817],[92.89352893528934,20.32933880509769],[92.88992889928898,20.334404536907343],[92.88632886328867,20.339470268716994],[92.87912879128794,20.349601732336282],[92.85752857528576,20.368176082305],[92.84672846728466,20.376618968654412],[92.83952839528393,20.390127586813477],[92.83232832328326,20.479622182117254],[92.82512825128254,20.494819377546193],[92.81432814328144,20.504950841165495],[92.79272792727926,20.506639418435384],[92.79632796327962,20.482999336657016],[92.78552785527859,20.462736409418426],[92.76752767527677,20.454293523069012],[92.76032760327604,20.47286787303773],[92.7747277472775,20.477933604847365],[92.77832778327786,20.477933604847365],[92.74952749527495,20.49819653208597],[92.74232742327422,20.52859092294385],[92.73512735127355,20.562362468341504],[92.72072720727209,20.592756859199397],[92.6991269912699,20.619774095517514],[92.66312663126632,20.67887429996341],[92.63432634326347,20.697448649932127],[92.65952659526596,20.65354564091517],[92.70272702727027,20.589379704659635],[92.709927099271,20.579248241040332],[92.71712717127173,20.499885109355844],[92.73872738727385,20.444162059449724],[92.73872738727385,20.42896486402077],[92.73152731527318,20.383373277733938],[92.73872738727385,20.280370064271096],[92.73152731527318,20.258418559762617],[92.72432724327246,20.271927177921683],[92.70632706327063,20.292190105160273],[92.69552695526954,20.3090758778591],[92.65232652326523,20.418833400401482],[92.63432634326347,20.445850636719598],[92.54072540725406,20.526902345673975],[92.52992529925302,20.543788118372802],[92.51912519125193,20.589379704659635],[92.50832508325084,20.609642631898225],[92.47232472324725,20.64341417729588],[92.46152461524616,20.65354564091517],[92.4579245792458,20.661988527264583],[92.45432454324543,20.668742836344123],[92.43992439924398,20.670431413613997],[92.42912429124294,20.67380856815376],[92.40752407524076,20.687317186312825],[92.39672396723967,20.690694340852588],[92.38232382323827,20.70082580447189],[92.37152371523717,20.72108873171048],[92.36072360723608,20.766680317997313],[92.30672306723068,20.916963695016875],[92.28872288722886,20.94398093133499],[92.28152281522819,20.959178126763945],[92.2707227072271,21.04867272206772],[92.26352263522637,21.060492762956898],[92.259922599226,21.02334406301948],[92.25632256322564,20.98112963127241],[92.259922599226,20.94060377679523],[92.2707227072271,20.90345507685781],[92.29952299522995,20.86292922238063],[92.30672306723068,20.852797758761326],[92.30672306723068,20.832534831522736],[92.3247232472325,20.780188936156378],[92.33192331923323,20.7683688952672],[92.33552335523359,20.75654885437801],[92.33552335523359,20.746417390758722],[92.3247232472325,20.73797450440931],[92.32112321123213,20.74135165894907],[92.3139231392314,20.749794545298485],[92.31032310323104,20.753171699838248],[92.29952299522995,20.76161458618766],[92.27792277922782,20.813960481554034],[92.20952209522096,20.93047231317594],[92.19152191521914,20.996326826701363],[92.18792187921878,21.00645829032065],[92.13392133921343,21.046984144797847],[92.12312123121234,21.060492762956898],[92.10872108721088,21.089198576544902],[92.09792097920979,21.10608434924373],[92.05112051120511,21.15505309007034],[92.04392043920438,21.17025028549928],[92.04392043920438,21.192201790007758],[92.05112051120511,21.256367726263292],[92.05112051120511,21.28000780804166],[92.04392043920438,21.30027073528025],[91.98991989919898,21.394831062393678],[91.97911979119795,21.40327394874309],[91.96831968319685,21.410028257822617],[91.96111961119612,21.423536875981682],[91.9539195391954,21.4421112259504],[91.95031950319503,21.458996998649226],[91.95751957519576,21.458996998649226],[91.95751957519576,21.45561984410945],[91.95751957519576,21.453931266839575],[91.96111961119612,21.453931266839575],[91.96471964719649,21.452242689569687],[91.97191971919722,21.470817039538403],[91.98271982719831,21.489391389507105],[92.00072000720007,21.499522853126408],[92.0187201872019,21.492768544046868],[92.00432004320044,21.50458858493606],[91.99711997119971,21.52316293490476],[91.98991989919898,21.54342586214335],[91.98991989919898,21.562000212112068],[91.99711997119971,21.573820253001244],[92.01152011520117,21.58564029389042],[92.02232022320226,21.599148912049486],[92.0187201872019,21.616034684748314],[92.03312033120335,21.632920457447142],[92.03672036720366,21.639674766526667],[92.03312033120335,21.64980623014597],[92.03672036720366,21.659937693765258],[92.03672036720366,21.668380580114672],[92.02952029520299,21.67513488919421],[92.02232022320226,21.676823466464086],[92.02592025920262,21.686954930083388],[92.02952029520299,21.695397816432802],[92.02952029520299,21.70552928005209],[92.02592025920262,21.71228358913163],[92.02232022320226,21.703840702782216],[92.02232022320226,21.702152125512328],[92.0187201872019,21.698774970972565],[92.02592025920262,21.698774970972565],[92.01152011520117,21.66500342557491],[92.00072000720007,21.64980623014597],[91.98271982719831,21.64980623014597],[91.97551975519758,21.661626271035146],[91.97911979119795,21.678512043733974],[91.98271982719831,21.693709239162914],[91.98271982719831,21.70552928005209],[91.97551975519758,21.70552928005209],[91.97191971919722,21.688643507353262],[91.96111961119612,21.69033208462315],[91.9539195391954,21.702152125512328],[91.95031950319503,21.715660743671393],[91.9539195391954,21.73761224817987],[91.96111961119612,21.744366557259397],[91.97551975519758,21.746055134529286],[91.98991989919898,21.759563752688337],[91.98271982719831,21.766318061767876],[91.96831968319685,21.756186598148574],[91.96111961119612,21.764629484497988],[91.96831968319685,21.778138102657053],[91.98991989919898,21.78826956627634],[91.98991989919898,21.79502387535588],[91.9431194311943,21.791646720816118],[91.92511925119254,21.78489241173658],[91.90711907119072,21.781515257196816],[91.89991899918999,21.78995814354623],[91.89991899918999,21.813598225324583],[91.91071910719108,21.833861152563173],[91.9287192871929,21.843992616182476],[91.92151921519218,21.854124079801778],[91.92511925119254,21.862566966151178],[91.93591935919358,21.871009852500592],[91.95031950319503,21.876075584310243],[91.95031950319503,21.884518470659657],[91.93951939519394,21.882829893389783],[91.9287192871929,21.879452738850006],[91.92151921519218,21.871009852500592],[91.91431914319145,21.862566966151178],[91.91071910719108,21.87438700704037],[91.90711907119072,21.896338511548834],[91.89991899918999,21.93517578875614],[91.89991899918999,21.945307252375443],[91.88551885518854,21.960504447804382],[91.88191881918823,21.968947334153796],[91.88191881918823,22.007784611361103],[91.85671856718568,22.109099247554056],[91.85311853118532,22.14287079295171],[91.86391863918641,22.13949363841195],[91.86751867518677,22.13780506114206],[91.86031860318604,22.151313679301126],[91.85311853118532,22.147936524761363],[91.84591845918459,22.136116483872186],[91.84591845918459,22.11754213390347],[91.83871838718386,22.11754213390347],[91.82791827918282,22.134427906602298],[91.8207182071821,22.156379411110777],[91.81351813518137,22.18001949288913],[91.81351813518137,22.205348151937372],[91.81711817118173,22.22054534736631],[91.82431824318246,22.230676810985614],[91.8351183511835,22.23743112006514],[91.83871838718386,22.245874006414553],[91.83871838718386,22.26275977911338],[91.83151831518319,22.271202665462795],[91.8207182071821,22.276268397272446],[91.81351813518137,22.281334129082097],[91.809918099181,22.30666278813034],[91.82791827918282,22.318482829019516],[91.85311853118532,22.32523713809904],[91.8747187471875,22.335368601718343],[91.88551885518854,22.353942951687046],[91.90711907119072,22.42486319702212],[91.90351903519036,22.42486319702212],[91.8891188911889,22.42486319702212],[91.88551885518854,22.40966600159318],[91.8747187471875,22.370828724385873],[91.87831878318786,22.364074415306348],[91.87111871118714,22.357320106226823],[91.86031860318604,22.34718864260752],[91.84231842318422,22.335368601718343],[91.82791827918282,22.328614292638804],[91.82431824318246,22.323548560829167],[91.79911799117991,22.311728519939976],[91.79191791917918,22.301597056320688],[91.79551795517955,22.28639986089175],[91.80631806318064,22.277956974542334],[91.81711817118173,22.274579820002558],[91.82791827918282,22.267825510923032],[91.82431824318246,22.249251160954316],[91.809918099181,22.235742542795265],[91.78831788317882,22.23743112006514],[91.77031770317706,22.261071201843507],[91.7559175591756,22.374205878925636],[91.74511745117451,22.41135457886307],[91.6767167671677,22.5346207195645],[91.54711547115471,22.700101292013002],[91.51471514715149,22.71192133290218],[91.50031500315004,22.727118528331133],[91.48591485914858,22.745692878299835],[91.47511475114754,22.760890073728774],[91.46791467914682,22.75751291918901],[91.46071460714609,22.762578650998663],[91.45711457114572,22.772710114617965],[91.45711457114572,22.78453015550714],[91.45711457114572,22.796350196396318],[91.46791467914682,22.809858814555383],[91.47511475114754,22.838564628143388],[91.48951489514894,22.880779059890457],[91.48951489514894,22.90441914166881],[91.48231482314822,22.90441914166881],[91.47871478714791,22.885844791700094],[91.46071460714609,22.833498896333737],[91.45351453514536,22.823367432714434],[91.43191431914317,22.81661312363491],[91.41751417514178,22.79972735093608],[91.41031410314105,22.777775846427602],[91.41391413914141,22.75413576464925],[91.39951399513996,22.76426722826855],[91.3851138511385,22.771021537348076],[91.36711367113674,22.77439869188784],[91.34551345513455,22.77439869188784],[91.34551345513455,22.767644382808314],[91.36711367113674,22.760890073728774],[91.3707137071371,22.75244718737936],[91.35991359913601,22.74400430102996],[91.34191341913419,22.73893856922031],[91.29151291512915,22.73893856922031],[91.30951309513097,22.733872837410658],[91.32391323913242,22.725429951061244],[91.3311133111331,22.720364219251593],[91.3311133111331,22.705167023822654],[91.3167131671317,22.69672413747324],[91.30231302313024,22.693346982933477],[91.28431284312842,22.69165840566359],[91.28431284312842,22.693346982933477],[91.2519125191252,22.700101292013002],[91.24831248312483,22.698412714743114],[91.24471244712447,22.698412714743114],[91.24471244712447,22.70178986928289],[91.24471244712447,22.71698706471183],[91.24471244712447,22.720364219251593],[91.23031230312301,22.723741373791356],[91.21591215912161,22.725429951061244],[91.18351183511834,22.727118528331133],[91.18351183511834,22.720364219251593],[91.19431194311943,22.710232755632305],[91.1979119791198,22.698412714743114],[91.19071190711907,22.69165840566359],[91.16911169111694,22.69165840566359],[91.16911169111694,22.684904096584063],[91.2267122671227,22.671395478424998],[91.2519125191252,22.661264014805695],[91.26271262712629,22.641001087567105],[91.26271262712629,22.627492469408054],[91.2519125191252,22.61398385124899],[91.2411124111241,22.575146574041682],[91.22311223112234,22.55657222407298],[91.20151201512016,22.543063605913915],[91.17631176311767,22.536309296834375],[91.12591125911263,22.52786641048496],[91.08991089910899,22.54475218318379],[91.06831068310686,22.57176941950192],[91.05751057510577,22.61398385124899],[91.05031050310504,22.625803892138165],[91.03951039510395,22.644378242106868],[91.02511025110255,22.67477263296476],[91.01791017910182,22.683215519314174],[91.00351003510036,22.678149787504523],[91.01791017910182,22.664641169345472],[91.03231032310322,22.637623933027342],[91.03951039510395,22.60722954216945],[91.03951039510395,22.588655192200747],[91.01791017910182,22.578523728581445],[90.98550985509854,22.575146574041682],[90.95670956709569,22.575146574041682],[90.94230942309423,22.585278037660984],[90.9351093510935,22.600475233089924],[90.90990909909101,22.61736100578875],[90.90270902709028,22.627492469408054],[90.89910899108992,22.635935355757468],[90.88470884708846,22.65450970572617],[90.87750877508773,22.683215519314174],[90.8667086670867,22.686592673853937],[90.83430834308342,22.684904096584063],[90.83070830708306,22.689969828393714],[90.81990819908202,22.727118528331133],[90.8127081270813,22.73218426014077],[90.8019080190802,22.735561414680546],[90.79470794707947,22.740627146490183],[90.78750787507875,22.7592014964589],[90.77310773107735,22.777775846427602],[90.76950769507698,22.78453015550714],[90.76950769507698,22.79466161912643],[90.75870758707589,22.823367432714434],[90.75150751507516,22.85713897811209],[90.74070740707407,22.874024750810918],[90.73350733507334,22.88922194623987],[90.72630726307261,22.9061077189387],[90.7227072270723,22.928059223447164],[90.71910719107194,22.93987926433634],[90.63990639906399,23.037816745989545],[90.6291062910629,23.06483398230766],[90.62550625506253,23.076654023196852],[90.62550625506253,23.08678548681614],[90.63990639906399,23.147574268531912],[90.63990639906399,23.188100123009107],[90.64710647106472,23.21174020478746],[90.65790657906581,23.230314554756177],[90.66510665106654,23.24888890472488],[90.66150661506617,23.267463254693595],[90.6687066870669,23.267463254693595],[90.65070650706508,23.299546222821363],[90.65070650706508,23.313054840980428],[90.66150661506617,23.32149772732984],[90.65790657906581,23.323186304599716],[90.65430654306545,23.323186304599716],[90.65430654306545,23.324874881869604],[90.65430654306545,23.329940613679256],[90.6291062910629,23.32149772732984],[90.61110611106113,23.341760654568432],[90.60030600306004,23.37215504542631],[90.60030600306004,23.390729395395027],[90.60030600306004,23.449829599840925],[90.60750607506077,23.473469681619278],[90.63270632706326,23.486978299778343],[90.69030690306903,23.486978299778343],[90.71550715507158,23.49879834066752],[90.71550715507158,23.53594704060494],[90.71190711907121,23.549455658764003],[90.70470704707049,23.554521390573655],[90.69750697506976,23.55620996784353],[90.67950679506794,23.554521390573655],[90.67590675906757,23.551144236033878],[90.6831068310683,23.54101277241459],[90.70110701107012,23.529192731525413],[90.6939069390694,23.507241227016934],[90.67950679506794,23.517372690636236],[90.66510665106654,23.517372690636236],[90.64710647106472,23.507241227016934],[90.62190621906223,23.50048691793741],[90.60750607506077,23.490355454318106],[90.6039060390604,23.495421186127757],[90.58950589505895,23.53425846333505],[90.59310593105931,23.56296427692307],[90.60750607506077,23.586604358701422],[90.63270632706326,23.59673582232071],[90.62550625506253,23.60349013140025],[90.62550625506253,23.600112976860487],[90.62550625506253,23.5984243995906],[90.61830618306186,23.59673582232071],[90.61110611106113,23.606867285940012],[90.59670596705968,23.605178708670124],[90.55710557105573,23.589981513241185],[90.56430564305646,23.57647289508212],[90.5607056070561,23.568030008732705],[90.54630546305464,23.56296427692307],[90.53190531905318,23.56296427692307],[90.51390513905142,23.56296427692307],[90.50310503105032,23.568030008732705],[90.47790477904778,23.58322720416166],[90.4851048510485,23.568030008732705],[90.49950499504996,23.557898545113417],[90.51390513905142,23.551144236033878],[90.53190531905318,23.549455658764003],[90.56790567905682,23.547767081494115],[90.57510575105749,23.5393241951447],[90.57870578705786,23.449829599840925],[90.57510575105749,23.439698136221622],[90.56790567905682,23.432943827142097],[90.5607056070561,23.417746631713143],[90.55350553505536,23.40086085901433],[90.55350553505536,23.385663663585376],[90.51750517505178,23.397483704474553],[90.32310323103229,23.432943827142097],[90.28350283502834,23.446452445301162],[90.25110251102512,23.466715372539753],[90.25110251102512,23.454895331650576],[90.25830258302585,23.444763868031274],[90.38790387903879,23.37215504542631],[90.40590405904061,23.360335004537134],[90.41310413104134,23.348514963647958],[90.42030420304206,23.335006345488893],[90.42750427504274,23.32656345913948],[90.45990459904601,23.319809150059953],[90.48870488704887,23.306300531900888],[90.50310503105032,23.30123480009125],[90.56790567905682,23.29448049101171],[90.57870578705786,23.287726181932186],[90.60750607506077,23.247200327455005],[90.61110611106113,23.230314554756177],[90.6147061470615,23.194854432088633],[90.61110611106113,23.201608741168158],[90.6039060390604,23.21174020478746],[90.59310593105931,23.220183091136875],[90.59670596705968,23.199920163898284],[90.6039060390604,23.140819959452386],[90.60030600306004,23.117179877674033],[90.57150571505719,23.08171975500649],[90.56430564305646,23.076654023196852],[90.55350553505536,23.078342600466726],[90.549905499055,23.08678548681614],[90.55710557105573,23.096916950435443],[90.56430564305646,23.103671259514968],[90.56430564305646,23.110425568594493],[90.55710557105573,23.110425568594493],[90.54630546305464,23.096916950435443],[90.53550535505354,23.08678548681614],[90.52110521105215,23.080031177736615],[90.50310503105032,23.076654023196852],[90.46710467104674,23.076654023196852],[90.45270452704528,23.0715882913872],[90.44910449104492,23.056391095958247],[90.44910449104492,23.04963678687872],[90.45270452704528,23.027685282370243],[90.46710467104674,22.995602314242475],[90.48870488704887,22.96689650065447],[90.50670506705069,22.94156784160623],[90.51030510305105,22.936502109796578],[90.50670506705069,22.9246820689074],[90.51030510305105,22.917927759827876],[90.51390513905142,22.916239182557987],[90.51750517505178,22.916239182557987],[90.52110521105215,22.916239182557987],[90.52470524705245,22.911173450748336],[90.53550535505354,22.902730564398922],[90.53910539105391,22.895976255319397],[90.53550535505354,22.887533368969983],[90.52110521105215,22.880779059890457],[90.50670506705069,22.88246763716033],[90.48870488704887,22.885844791700094],[90.47790477904778,22.88415621443022],[90.45630456304565,22.86220470992174],[90.44910449104492,22.828433164524085],[90.43470434704346,22.80141592820597],[90.40950409504097,22.79466161912643],[90.42390423904237,22.78115300096738],[90.42030420304206,22.767644382808314],[90.40590405904061,22.762578650998663],[90.39510395103952,22.77439869188784],[90.37350373503733,22.760890073728774],[90.38790387903879,22.750758610109486],[90.4167041670417,22.742315723760072],[90.43470434704346,22.733872837410658],[90.44550445504456,22.75244718737936],[90.45990459904601,22.749070032839597],[90.47790477904778,22.735561414680546],[90.48870488704887,22.720364219251593],[90.49230492304923,22.710232755632305],[90.4959049590496,22.678149787504523],[90.51030510305105,22.646066819376756],[90.51390513905142,22.6122952739791],[90.51030510305105,22.603852387629686],[90.49950499504996,22.59203234674051],[90.49230492304923,22.588655192200747],[90.46710467104674,22.585278037660984],[90.45990459904601,22.578523728581445],[90.45270452704528,22.565015110422394],[90.44190441904419,22.50929206051626],[90.44190441904419,22.49409486508732],[90.44550445504456,22.504226328706608],[90.45270452704528,22.510980637786147],[90.45630456304565,22.51435779232591],[90.46350463504638,22.521112101405436],[90.46350463504638,22.531243565024738],[90.45990459904601,22.55150649226333],[90.46350463504638,22.561637955882617],[90.4707047070471,22.575146574041682],[90.48870488704887,22.583589460391096],[90.50670506705069,22.58696661493086],[90.52470524705245,22.583589460391096],[90.5607056070561,22.561637955882617],[90.57870578705786,22.532932142294612],[90.58950589505895,22.500849174166845],[90.60750607506077,22.465389051499315],[90.59310593105931,22.470454783308952],[90.58590585905858,22.473831937848715],[90.58590585905858,22.45019185607036],[90.59310593105931,22.43161750610166],[90.6147061470615,22.396157383434115],[90.61830618306186,22.375894456195525],[90.61830618306186,22.355631528956934],[90.6147061470615,22.315105674479753],[90.58230582305822,22.23743112006514],[90.55710557105573,22.203659574667483],[90.53910539105391,22.198593842857846],[90.51030510305105,22.18508522469878],[90.49950499504996,22.176642338349367],[90.4959049590496,22.168199451999953],[90.4959049590496,22.15469083384089],[90.48870488704887,22.13780506114206],[90.45990459904601,22.092213474855228],[90.44910449104492,22.08039343396605],[90.43830438304383,22.0753277021564],[90.42390423904237,22.078704856696177],[90.40950409504097,22.085459165775703],[90.39510395103952,22.093902052125117],[90.38790387903879,22.10234493847453],[90.39150391503915,22.127673597522772],[90.4167041670417,22.17495376107948],[90.42030420304206,22.198593842857846],[90.40950409504097,22.22729965644585],[90.40950409504097,22.240808274604916],[90.41310413104134,22.271202665462795],[90.40950409504097,22.28471128362186],[90.39510395103952,22.288088438161623],[90.39870398703988,22.267825510923032],[90.38790387903879,22.223922501906088],[90.39150391503915,22.208725306477135],[90.39870398703988,22.20197099739761],[90.40590405904061,22.20028242012772],[90.40950409504097,22.19521668831807],[90.41310413104134,22.18508522469878],[90.41310413104134,22.178330915619256],[90.40950409504097,22.171576606539716],[90.40230402304024,22.16482229746019],[90.39870398703988,22.163133720190302],[90.39870398703988,22.161445142920428],[90.39510395103952,22.156379411110777],[90.39150391503915,22.14287079295171],[90.38790387903879,22.14287079295171],[90.38430384303842,22.146247947491474],[90.38070380703806,22.14287079295171],[90.3771037710377,22.134427906602298],[90.37350373503733,22.10234493847453],[90.36990369903702,22.090524897585354],[90.36630366303666,22.08039343396605],[90.34830348303484,22.05506477491781],[90.33390333903338,22.041556156758745],[90.33390333903338,22.038179002218982],[90.32670326703266,22.021293229520154],[90.30870308703089,21.984144529582736],[90.30510305103053,21.965570179614033],[90.30150301503016,21.928421479676615],[90.29070290702907,21.889584202469308],[90.28350283502834,21.871009852500592],[90.27270272702725,21.85750123434154],[90.2187021870219,21.813598225324583],[90.20430204302045,21.80515533897517],[90.18630186301863,21.801778184435406],[90.1647016470165,21.803466761705295],[90.1251012510125,21.818663957134234],[90.1107011070111,21.822041111673997],[90.09270092700928,21.83048399802341],[90.08910089100891,21.84736977072224],[90.09630096300964,21.859189811611415],[90.1107011070111,21.855812657071652],[90.10350103501037,21.871009852500592],[90.1107011070111,21.879452738850006],[90.12150121501219,21.889584202469308],[90.1251012510125,21.901404243358485],[90.1251012510125,21.9098471297079],[90.12150121501219,21.91491286151755],[90.12150121501219,21.921667170597075],[90.1251012510125,21.931798634216378],[90.11790117901182,21.9199785933272],[90.09990099901,21.87776416158013],[90.08910089100891,21.869321275230718],[90.07830078300782,21.86763269796083],[90.06750067500678,21.854124079801778],[90.05670056700569,21.849058347992127],[90.04950049500496,21.850746925262],[90.0351003510035,21.860878388881304],[90.02430024300241,21.862566966151178],[90.03150031500314,21.889584202469308],[90.0351003510035,21.943618675105554],[90.0459004590046,21.965570179614033],[90.05310053100533,21.974013065963447],[90.06750067500678,21.979078797773084],[90.07830078300782,21.9875216841225],[90.08550085500855,22.001030302281563],[90.08910089100891,22.016227497710517],[90.09270092700928,22.028047538599694],[90.09630096300964,22.03986757948887],[90.10710107101073,22.05506477491781],[90.14670146701468,22.088836320315465],[90.15030150301504,22.09559062939499],[90.15750157501577,22.10741067028418],[90.1647016470165,22.11247640209382],[90.17190171901723,22.11754213390347],[90.18270182701826,22.114164979363707],[90.18990189901899,22.110787824823944],[90.19350193501936,22.109099247554056],[90.21510215102154,22.12260786571312],[90.2331023310233,22.146247947491474],[90.24030240302403,22.171576606539716],[90.23670236702367,22.198593842857846],[90.2187021870219,22.156379411110777],[90.20430204302045,22.132739329332423],[90.18990189901899,22.12260786571312],[90.1647016470165,22.11923071117336],[90.14670146701468,22.110787824823944],[90.08910089100891,22.051687620378047],[90.08190081900818,22.041556156758745],[90.07470074700745,22.01960465225028],[90.06030060300606,22.001030302281563],[90.05670056700569,21.994275993202038],[90.05310053100533,21.989210261392387],[90.03870038700387,21.985833106852624],[90.02790027900278,21.9875216841225],[89.99549995499956,22.001030302281563],[90.00270002700029,22.01453892044063],[90.00270002700029,22.029736115869568],[90.00990009900102,22.041556156758745],[90.02070020700211,22.048310465838284],[90.02790027900278,22.053376197647935],[90.0351003510035,22.06013050672746],[90.03870038700387,22.0753277021564],[90.0351003510035,22.105722093014293],[90.03870038700387,22.115853556633596],[90.04230042300424,22.131050752062535],[90.05310053100533,22.141182215681823],[90.06390063900642,22.146247947491474],[90.07110071100715,22.151313679301126],[90.07830078300782,22.16482229746019],[90.05310053100533,22.15469083384089],[90.03870038700387,22.13780506114206],[90.02430024300241,22.088836320315465],[90.01710017100174,22.078704856696177],[89.98829988299883,22.053376197647935],[89.9810998109981,22.04493331129852],[89.98469984699847,21.99934172501169],[89.9810998109981,21.985833106852624],[89.9666996669967,21.974013065963447],[89.94869948699488,21.980767375042973],[89.93429934299343,21.9976531477418],[89.9270992709927,22.01791607498039],[89.9270992709927,22.026358961329805],[89.91629916299166,22.04999904310816],[89.91629916299166,22.06181908399735],[89.9126991269913,22.136116483872186],[89.9018990189902,22.176642338349367],[89.9018990189902,22.20197099739761],[89.89829898298984,22.212102461016897],[89.88389883898839,22.230676810985614],[89.88029880298802,22.240808274604916],[89.87669876698766,22.254316892763967],[89.87669876698766,22.26444835638327],[89.87669876698766,22.274579820002558],[89.88029880298802,22.288088438161623],[89.9018990189902,22.333680024448455],[89.9810998109981,22.44512612426071],[89.98829988299883,22.4569461651499],[89.9918999189992,22.470454783308952],[89.99909999099992,22.480586246928254],[90.00990009900102,22.490717710547543],[89.9810998109981,22.473831937848715],[89.9810998109981,22.470454783308952],[89.94869948699488,22.440060392451073],[89.93429934299343,22.423174619752245],[89.9270992709927,22.407977424323292],[89.91989919899203,22.391091651624464],[89.9018990189902,22.396157383434115],[89.8730987309873,22.418108887942594],[89.8730987309873,22.397845960704004],[89.88029880298802,22.380960188005176],[89.88389883898839,22.364074415306348],[89.88029880298802,22.34212291079787],[89.83709837098371,22.267825510923032],[89.85149851498517,22.245874006414553],[89.86229862298626,22.210413883747023],[89.8730987309873,22.14287079295171],[89.8730987309873,22.109099247554056],[89.8730987309873,22.092213474855228],[89.86229862298626,22.078704856696177],[89.8478984789848,22.070261970346763],[89.82989829898298,22.071950547616638],[89.81549815498158,22.0753277021564],[89.79749797497976,22.0753277021564],[89.79749797497976,22.068573393076875],[89.81909819098195,22.06013050672746],[89.83709837098371,22.04999904310816],[89.8478984789848,22.03311327040933],[89.85149851498517,22.011161765900866],[89.85149851498517,22.001030302281563],[89.84429844298444,21.98245595231286],[89.8478984789848,21.97232448869356],[89.85149851498517,21.963881602344145],[89.86229862298626,21.943618675105554],[89.8730987309873,21.925044325136838],[89.88029880298802,21.91322428424766],[89.88749887498875,21.89971566608861],[89.88029880298802,21.884518470659657],[89.8730987309873,21.881141316119894],[89.85149851498517,21.87776416158013],[89.82629826298262,21.855812657071652],[89.81909819098195,21.849058347992127],[89.81909819098195,21.845681193452364],[89.81549815498158,21.840615461642713],[89.80469804698049,21.835549729833062],[89.78669786697867,21.828795420753536],[89.77589775897758,21.827106843483648],[89.77229772297721,21.8321725752933],[89.76509765097654,21.84736977072224],[89.75429754297545,21.843992616182476],[89.739897398974,21.833861152563173],[89.72549725497254,21.828795420753536],[89.70749707497077,21.83048399802341],[89.68949689496895,21.833861152563173],[89.6750967509675,21.840615461642713],[89.6606966069661,21.849058347992127],[89.65709657096573,21.85750123434154],[89.65349653496537,21.86763269796083],[89.65349653496537,21.879452738850006],[89.66429664296646,21.896338511548834],[89.6606966069661,21.906469975168136],[89.64629646296464,21.925044325136838],[89.61749617496179,21.869321275230718],[89.63189631896319,21.850746925262],[89.649896498965,21.827106843483648],[89.67149671496713,21.803466761705295],[89.69309693096932,21.79502387535588],[89.70029700297005,21.78489241173658],[89.68949689496895,21.764629484497988],[89.66789667896683,21.751120866338923],[89.64269642696428,21.756186598148574],[89.63189631896319,21.764629484497988],[89.6210962109621,21.764629484497988],[89.5958959589596,21.759563752688337],[89.59229592295924,21.754498020878685],[89.60309603096033,21.72748078456057],[89.6066960669607,21.719037898211155],[89.58869588695887,21.70046354824244],[89.56709567095675,21.713972166401504],[89.53829538295383,21.754498020878685],[89.53829538295383,21.771383793577513],[89.52749527495274,21.813598225324583],[89.5310953109531,21.835549729833062],[89.53829538295383,21.849058347992127],[89.55629556295565,21.869321275230718],[89.56349563495638,21.884518470659657],[89.56709567095675,21.901404243358485],[89.56349563495638,21.97232448869356],[89.57069570695705,22.031424693139456],[89.57789577895778,22.051687620378047],[89.59949599495997,22.090524897585354],[89.6066960669607,22.11247640209382],[89.60309603096033,22.134427906602298],[89.59229592295924,22.15469083384089],[89.58149581495815,22.173265183809605],[89.56709567095675,22.188462379238544],[89.56709567095675,22.203659574667483],[89.59949599495997,22.240808274604916],[89.6066960669607,22.25769404730373],[89.6066960669607,22.277956974542334],[89.61029610296106,22.298219901780925],[89.61749617496179,22.318482829019516],[89.62469624696246,22.335368601718343],[89.61389613896142,22.328614292638804],[89.6066960669607,22.315105674479753],[89.59229592295924,22.288088438161623],[89.58149581495815,22.277956974542334],[89.57789577895778,22.267825510923032],[89.58509585095851,22.245874006414553],[89.58149581495815,22.23743112006514],[89.55989559895602,22.223922501906088],[89.54909549095493,22.205348151937372],[89.54909549095493,22.191839533778307],[89.57069570695705,22.15806798838065],[89.57789577895778,22.146247947491474],[89.57789577895778,22.136116483872186],[89.57789577895778,22.11247640209382],[89.57789577895778,22.100656361204642],[89.56709567095675,22.08208201123594],[89.56349563495638,22.071950547616638],[89.55629556295565,22.007784611361103],[89.55269552695529,21.994275993202038],[89.5310953109531,21.984144529582736],[89.52389523895238,21.99934172501169],[89.52389523895238,22.04493331129852],[89.52749527495274,22.05506477491781],[89.53469534695347,22.0753277021564],[89.53829538295383,22.088836320315465],[89.49149491494916,22.188462379238544],[89.4878948789488,22.208725306477135],[89.49509495094952,22.254316892763967],[89.49149491494916,22.272891242732683],[89.48429484294843,22.294842747241162],[89.4770947709477,22.294842747241162],[89.46629466294667,22.228988233715725],[89.4770947709477,22.10234493847453],[89.48429484294843,22.10234493847453],[89.48429484294843,22.115853556633596],[89.4878948789488,22.129362174792647],[89.49509495094952,22.136116483872186],[89.49509495094952,22.134427906602298],[89.49869498694989,22.125985020252884],[89.50229502295025,22.11247640209382],[89.50589505895061,22.100656361204642],[89.51309513095134,22.092213474855228],[89.5166951669517,22.08039343396605],[89.5166951669517,22.066884815806986],[89.50949509495098,22.041556156758745],[89.50589505895061,22.036490424949108],[89.49149491494916,22.03480184767922],[89.4878948789488,22.031424693139456],[89.49149491494916,22.02467038405993],[89.49149491494916,22.01960465225028],[89.49509495094952,22.01453892044063],[89.50229502295025,22.002718879551452],[89.51309513095134,21.97739022050321],[89.52029520295201,21.968947334153796],[89.52029520295201,21.96219302507427],[89.51309513095134,21.9098471297079],[89.50229502295025,21.898027088818722],[89.4878948789488,21.88789562519942],[89.4770947709477,21.876075584310243],[89.46629466294667,21.859189811611415],[89.4626946269463,21.845681193452364],[89.46629466294667,21.828795420753536],[89.46989469894697,21.80515533897517],[89.46629466294667,21.781515257196816],[89.45549455494557,21.7629409072281],[89.44109441094412,21.746055134529286],[89.40509405094053,21.717349320941267],[89.39429394293944,21.715660743671393],[89.3690936909369,21.74267797998951],[89.36549365493659,21.757875175418462],[89.36189361893622,21.783203834466704],[89.36549365493659,21.828795420753536],[89.37269372693726,21.84736977072224],[89.38349383493835,21.87776416158013],[89.38709387093871,21.901404243358485],[89.38349383493835,21.921667170597075],[89.36549365493659,21.95543871599473],[89.35829358293586,21.97232448869356],[89.35109351093513,21.97232448869356],[89.34749347493477,21.95712729326462],[89.34749347493477,21.943618675105554],[89.3546935469355,21.931798634216378],[89.35829358293586,21.918290016057313],[89.35829358293586,21.901404243358485],[89.3546935469355,21.89296135700907],[89.34029340293404,21.876075584310243],[89.32949329493294,21.864255543421066],[89.32229322293222,21.854124079801778],[89.30789307893082,21.816975379864346],[89.30069300693009,21.81022107078482],[89.29709297092973,21.80853249351493],[89.289892898929,21.822041111673997],[89.28269282692827,21.822041111673997],[89.28269282692827,21.796712452625755],[89.29349293492936,21.757875175418462],[89.289892898929,21.73254651637022],[89.27189271892718,21.698774970972565],[89.27549275492754,21.686954930083388],[89.29709297092973,21.678512043733974],[89.28629286292863,21.66500342557491],[89.26829268292681,21.653183384685732],[89.25029250292505,21.646429075606193],[89.22869228692286,21.64474049833632],[89.2106921069211,21.654871961955607],[89.20349203492037,21.673446311924323],[89.20709207092074,21.69033208462315],[89.21789217892177,21.698774970972565],[89.22149221492214,21.708906434591853],[89.18909189091892,21.791646720816118],[89.18909189091892,21.800089607165532],[89.18909189091892,21.81190964805471],[89.18189181891819,21.81528680259447],[89.17469174691746,21.81022107078482],[89.16389163891643,21.800089607165532],[89.16029160291606,21.791646720816118],[89.15309153091533,21.786580989006467],[89.14229142291424,21.78995814354623],[89.12069120691206,21.801778184435406],[89.10989109891102,21.81022107078482],[89.10629106291066,21.81528680259447],[89.08109081090811,21.898027088818722],[89.07749077490774,21.91491286151755],[89.08109081090811,21.93517578875614],[89.0918909189092,21.97739022050321],[89.0918909189092,22.001030302281563],[89.08469084690847,22.021293229520154],[89.06309063090634,22.04999904310816],[89.05589055890562,22.065196238537112],[89.06309063090634,22.110787824823944],[89.05949059490598,22.129362174792647],[89.05949059490598,22.131050752062535],[89.04509045090452,22.13780506114206],[89.04869048690489,22.12260786571312],[89.04509045090452,22.11247640209382],[89.04149041490416,22.100656361204642],[89.0378903789038,22.085459165775703],[89.04149041490416,22.070261970346763],[89.05229052290525,22.043244734028633],[89.05589055890562,22.031424693139456],[89.06669066690665,21.967258756883908],[89.05949059490598,21.938552943295903],[89.0378903789038,21.925044325136838],[89.02349023490234,21.931798634216378],[89.0126901269013,21.93011005694649],[89.00909009090094,21.9199785933272],[89.00909009090094,21.904781397898248],[88.99468994689948,21.91322428424766],[88.9586895868959,21.933487211486252],[88.94428944289444,21.938552943295903],[88.93708937089372,21.948684406915206],[88.93348933489335,21.968947334153796],[88.92988929889299,21.985833106852624],[88.91548915489153,21.985833106852624],[88.9046890468905,21.968947334153796],[88.91188911889122,21.946995829645317],[88.92268922689226,21.926732902406727],[88.93708937089372,21.918290016057313],[88.95148951489517,21.91322428424766],[88.96948969489694,21.904781397898248],[88.99468994689948,21.884518470659657],[89.01629016290161,21.854124079801778],[89.03069030690307,21.76969521630764],[89.04509045090452,21.73254651637022],[89.04869048690489,21.72748078456057],[89.06669066690665,21.708906434591853],[89.08109081090811,21.678512043733974],[89.08469084690847,21.67513488919421],[89.08829088290884,21.632920457447142],[89.08109081090811,21.61772326201819],[89.06309063090634,21.609280375668774],[89.05229052290525,21.609280375668774],[89.04509045090452,21.614346107478426],[89.0378903789038,21.619411839288077],[89.0378903789038,21.626166148367602],[89.03429034290343,21.632920457447142],[89.0270902709027,21.624477571097728],[89.01989019890198,21.610968952938663],[89.01989019890198,21.60590322112901],[89.00189001890021,21.604214643859137],[88.97668976689766,21.616034684748314],[88.93348933489335,21.64474049833632],[88.89748897488977,21.64980623014597],[88.89028890288904,21.653183384685732],[88.88668886688868,21.661626271035146],[88.88308883088831,21.671757734654435],[88.87228872288722,21.74943228906905],[88.86508865088649,21.766318061767876],[88.85788857888582,21.766318061767876],[88.85428854288546,21.74943228906905],[88.839888398884,21.715660743671393],[88.839888398884,21.702152125512328],[88.84348843488436,21.683577775543625],[88.86148861488618,21.653183384685732],[88.85788857888582,21.636297611986905],[88.84348843488436,21.62278899382784],[88.82548825488254,21.61772326201819],[88.80748807488078,21.62278899382784],[88.79668796687969,21.639674766526667],[88.81468814688145,21.653183384685732],[88.81828818288182,21.658249116495384],[88.81828818288182,21.66500342557491],[88.81828818288182,21.67513488919421],[88.81108811088114,21.69202066189304],[88.80388803888042,21.671757734654435],[88.80028800288005,21.661626271035146],[88.79308793087932,21.658249116495384],[88.78228782287823,21.656560539225495],[88.77868778687787,21.651494807415844],[88.77868778687787,21.64305192106643],[88.7750877508775,21.632920457447142],[88.78228782287823,21.614346107478426],[88.78948789487896,21.599148912049486],[88.79668796687969,21.583951716620533],[88.78948789487896,21.568754521191593],[88.7606876068761,21.555245903032528],[88.72828728287283,21.56031163484218],[88.7066870668707,21.578885984810896],[88.7210872108721,21.609280375668774],[88.68868688686888,21.678512043733974],[88.68508685086852,21.697086393702676],[88.70308703087034,21.81022107078482],[88.69948699486997,21.82541826621376],[88.69588695886961,21.840615461642713],[88.71388713887137,21.898027088818722],[88.71748717487174,21.95206156145497],[88.7210872108721,21.965570179614033],[88.73188731887319,21.97739022050321],[88.74628746287465,21.9875216841225],[88.75708757087574,21.99934172501169],[88.76428764287641,22.01791607498039],[88.75348753487538,22.038179002218982],[88.71748717487174,22.058441929457572],[88.71028710287106,22.071950547616638],[88.71388713887137,22.087147743045577],[88.73188731887319,22.104033515744405],[88.76428764287641,22.131050752062535],[88.74268742687428,22.129362174792647],[88.72828728287283,22.120919288443233],[88.71388713887137,22.109099247554056],[88.70308703087034,22.09559062939499],[88.69588695886961,22.08208201123594],[88.69228692286924,22.065196238537112],[88.69948699486997,22.053376197647935],[88.71748717487174,22.048310465838284],[88.73188731887319,22.036490424949108],[88.72468724687246,22.01285034317074],[88.70308703087034,21.97570164323332],[88.69948699486997,21.96219302507427],[88.68868688686888,21.945307252375443],[88.67788677886779,21.93686436602603],[88.6670866708667,21.945307252375443],[88.65628656286566,21.94024152056579],[88.6418864188642,21.94024152056579],[88.63108631086311,21.945307252375443],[88.62748627486275,21.95543871599473],[88.62748627486275,21.97063591142367],[88.63108631086311,21.979078797773084],[88.64548645486457,22.001030302281563],[88.6526865268653,22.01791607498039],[88.6526865268653,22.031424693139456],[88.64908649086493,22.046621888568396],[88.64548645486457,22.0753277021564],[88.63828638286384,22.09727920666488],[88.63828638286384,22.109099247554056],[88.65628656286566,22.151313679301126],[88.67428674286742,22.161445142920428],[88.68148681486815,22.18508522469878],[88.68148681486815,22.203659574667483],[88.65988659886602,22.205348151937372],[88.65988659886602,22.198593842857846],[88.65628656286566,22.183396647428893],[88.64908649086493,22.169888029269842],[88.64548645486457,22.168199451999953],[88.64548645486457,22.163133720190302],[88.63468634686348,22.1445593702216],[88.63108631086311,22.125985020252884],[88.62028620286202,22.115853556633596],[88.62028620286202,22.109099247554056],[88.61668616686165,22.10234493847453],[88.62028620286202,22.078704856696177],[88.62388623886238,22.058441929457572],[88.62748627486275,22.048310465838284],[88.62028620286202,22.029736115869568],[88.60228602286026,22.006096034091215],[88.59868598685989,21.990898838662275],[88.59868598685989,21.946995829645317],[88.59868598685989,21.93011005694649],[88.56628566285661,21.850746925262],[88.56628566285661,21.8321725752933],[88.56628566285661,21.771383793577513],[88.56628566285661,21.766318061767876],[88.58068580685807,21.76969521630764],[88.60588605886062,21.778138102657053],[88.62388623886238,21.778138102657053],[88.63108631086311,21.74943228906905],[88.63108631086311,21.73254651637022],[88.62388623886238,21.71059501186174],[88.61308613086129,21.697086393702676],[88.59868598685989,21.70552928005209],[88.59148591485916,21.70552928005209],[88.59868598685989,21.63798618925678],[88.59508595085953,21.61265753020855],[88.5770857708577,21.62278899382784],[88.5770857708577,21.572131675731356],[88.57348573485734,21.558623057572305],[88.55908559085594,21.555245903032528],[88.54468544685449,21.562000212112068],[88.53748537485376,21.575508830271133],[88.53028530285303,21.563688789381942],[88.53028530285303,21.553557325762654],[88.5338853388534,21.54342586214335],[88.54468544685449,21.533294398524063],[88.51228512285121,21.52485151217465],[88.49428494284945,21.534982975793937],[88.48708487084872,21.556934480302417],[88.49428494284945,21.58226313935066],[88.50148501485018,21.589017448430184],[88.5086850868509,21.594083180239835],[88.51228512285121,21.60083748931936],[88.51588515885157,21.61265753020855],[88.51588515885157,21.626166148367602],[88.51948519485194,21.639674766526667],[88.5230852308523,21.64980623014597],[88.53028530285303,21.658249116495384],[88.5086850868509,21.71228358913163],[88.50508505085054,21.740989402719634],[88.51228512285121,21.7629409072281],[88.5338853388534,21.79502387535588],[88.53028530285303,21.823729688943885],[88.51588515885157,21.850746925262],[88.49428494284945,21.876075584310243],[88.51588515885157,21.916601438787424],[88.51588515885157,21.93686436602603],[88.49428494284945,21.95206156145497],[88.50148501485018,21.933487211486252],[88.49068490684908,21.921667170597075],[88.47988479884799,21.9098471297079],[88.47268472684726,21.889584202469308],[88.47628476284763,21.871009852500592],[88.49068490684908,21.83723830710295],[88.49428494284945,21.818663957134234],[88.49428494284945,21.80515533897517],[88.48708487084872,21.803466761705295],[88.47988479884799,21.80515533897517],[88.47268472684726,21.801778184435406],[88.4690846908469,21.776449525387164],[88.45828458284586,21.759563752688337],[88.4546845468455,21.740989402719634],[88.45108451084513,21.722415052750918],[88.4546845468455,21.70552928005209],[88.4690846908469,21.676823466464086],[88.47268472684726,21.66331484830502],[88.4690846908469,21.64474049833632],[88.4546845468455,21.624477571097728],[88.44028440284404,21.616034684748314],[88.42588425884259,21.610968952938663],[88.40788407884082,21.599148912049486],[88.39348393483937,21.60083748931936],[88.38268382683827,21.631231880177253],[88.38268382683827,21.671757734654435],[88.39348393483937,21.698774970972565],[88.37908379083791,21.695397816432802],[88.36468364683645,21.686954930083388],[88.35748357483578,21.6852663528135],[88.34668346683469,21.688643507353262],[88.33948339483396,21.697086393702676],[88.3358833588336,21.708906434591853],[88.33228332283323,21.719037898211155],[88.3250832508325,21.71059501186174],[88.3250832508325,21.702152125512328],[88.32868328683287,21.69033208462315],[88.34668346683469,21.67006915738456],[88.35028350283505,21.661626271035146],[88.35028350283505,21.64980623014597],[88.34668346683469,21.636297611986905],[88.3358833588336,21.616034684748314],[88.32148321483214,21.60590322112901],[88.31068310683105,21.610968952938663],[88.30348303483038,21.632920457447142],[88.30348303483038,21.744366557259397],[88.29988299883001,21.764629484497988],[88.28908289082892,21.779826679926927],[88.27468274682747,21.798401029895643],[88.26028260282601,21.798401029895643],[88.26388263882637,21.77476094811729],[88.29628296282965,21.676823466464086],[88.29628296282965,21.653183384685732],[88.29268292682929,21.64305192106643],[88.28548285482856,21.621100416557965],[88.2818828188282,21.609280375668774],[88.28908289082892,21.60083748931936],[88.29988299883001,21.589017448430184],[88.30348303483038,21.58226313935066],[88.30708307083074,21.572131675731356],[88.30348303483038,21.568754521191593],[88.29628296282965,21.56706594392172],[88.28548285482856,21.558623057572305],[88.27828278282783,21.555245903032528],[88.26748267482674,21.553557325762654],[88.25308253082534,21.555245903032528],[88.24948249482497,21.558623057572305],[88.24588245882461,21.58057456208077],[88.23868238682388,21.60252606658925],[88.22428224282243,21.61265753020855],[88.20988209882097,21.60252606658925],[88.18828188281884,21.641363343796556],[88.18108181081811,21.66500342557491],[88.18108181081811,21.6852663528135],[88.1918819188192,21.703840702782216],[88.2026820268203,21.724103630020807],[88.20988209882097,21.74774371179916],[88.2026820268203,21.77476094811729],[88.20988209882097,21.78826956627634],[88.2026820268203,21.80515533897517],[88.15228152281526,21.88789562519942],[88.15588155881562,21.898027088818722],[88.15948159481593,21.906469975168136],[88.14508145081453,21.958815870534494],[88.1486814868149,21.97570164323332],[88.15588155881562,21.990898838662275],[88.1630816308163,22.002718879551452],[88.20628206282066,22.053376197647935],[88.22068220682206,22.078704856696177],[88.21348213482133,22.100656361204642],[88.2026820268203,22.151313679301126],[88.19908199081993,22.168199451999953],[88.16668166681666,22.18508522469878],[88.11988119881198,22.20028242012772],[88.08028080280803,22.21716819282655],[88.07668076680767,22.240808274604916],[88.0586805868059,22.228988233715725],[88.04428044280445,22.223922501906088],[88.02628026280263,22.22729965644585],[88.00828008280087,22.240808274604916],[87.98667986679868,22.266136933653144],[87.97227972279723,22.28302270635197],[87.96867968679686,22.298219901780925],[87.9650796507965,22.318482829019516],[87.9506795067951,22.355631528956934],[87.94707947079473,22.374205878925636],[87.94707947079473,22.39446880616424],[87.939879398794,22.413043156132943],[87.92907929079291,22.42486319702212],[87.90747907479079,22.42486319702212],[87.90747907479079,22.418108887942594],[87.92187921879218,22.397845960704004],[87.93627936279364,22.355631528956934],[87.94707947079473,22.277956974542334],[87.95427954279546,22.26275977911338],[87.9650796507965,22.24418542914468],[87.99027990279905,22.215479615556674],[88.00828008280087,22.205348151937372],[88.02628026280263,22.20028242012772],[88.0586805868059,22.198593842857846],[88.09468094680949,22.191839533778307],[88.13428134281344,22.178330915619256],[88.15948159481593,22.156379411110777],[88.17388173881739,22.11754213390347],[88.1630816308163,22.090524897585354],[88.14148141481417,22.06013050672746],[88.11268112681125,22.03480184767922],[88.0838808388084,22.021293229520154],[88.04788047880481,22.021293229520154],[88.04428044280445,22.01791607498039],[88.04428044280445,22.006096034091215],[88.04788047880481,21.995964570471912],[88.05148051480518,21.985833106852624],[88.04788047880481,21.97570164323332],[88.03348033480336,21.95712729326462],[87.98307983079832,21.854124079801778],[87.96867968679686,21.83723830710295],[87.95787957879583,21.828795420753536],[87.94707947079473,21.82541826621376],[87.90747907479079,21.798401029895643],[87.90387903879042,21.796712452625755],[87.90027900279006,21.79502387535588],[87.8966789667897,21.78995814354623],[87.89307893078933,21.778138102657053],[87.89307893078933,21.77476094811729],[87.86787867878678,21.751120866338923],[87.83547835478356,21.729169361830458],[87.75627756277567,21.69202066189304],[87.70227702277026,21.654871961955607],[87.68427684276844,21.64980623014597],[87.64107641076413,21.651494807415844],[87.62307623076231,21.64980623014597],[87.47907479074792,21.614346107478426],[87.46827468274682,21.610968952938663],[87.40347403474038,21.58732887116031],[87.34227342273425,21.562000212112068],[87.29187291872921,21.553557325762654],[87.25587255872557,21.562000212112068],[87.2486724867249,21.556934480302417],[87.24507245072454,21.556934480302417],[87.23427234272344,21.555245903032528],[87.21267212672126,21.555245903032528],[87.20187201872022,21.551868748492765],[87.11187111871118,21.50796573947582],[87.0650706507065,21.474194194078166],[86.91746917469175,21.327287971598366],[86.8670686706867,21.256367726263292],[86.83826838268385,21.17531601730893],[86.84546845468458,21.082444267465377],[86.95346953469533,20.849420604221564],[86.96426964269642,20.80551759520462],[86.95346953469533,20.780188936156378],[86.93546935469357,20.786943245235904],[86.91746917469175,20.788631822505792],[86.8778687786878,20.780188936156378],[86.88866888668889,20.764991740727424],[86.91026910269102,20.75654885437801],[86.9570695706957,20.753171699838248],[86.97866978669788,20.754860277108136],[86.9858698586986,20.751483122568374],[86.9966699666997,20.739663081679197],[87.00027000270006,20.727843040790006],[87.00027000270006,20.719400154440592],[87.00027000270006,20.710957268091178],[86.98946989469897,20.704202959011653],[86.97506975069751,20.710957268091178],[86.96066960669606,20.712645845361067],[86.94986949869502,20.709268690821304],[86.93906939069393,20.697448649932127],[86.95346953469533,20.697448649932127],[86.96066960669606,20.69576007266224],[86.96786967869679,20.690694340852588],[86.97506975069751,20.683940031773062],[86.98226982269824,20.68562860904295],[86.9858698586986,20.683940031773062],[86.98946989469897,20.6805628772333],[86.9966699666997,20.670431413613997],[87.01827018270183,20.6805628772333],[87.03267032670328,20.690694340852588],[87.04347043470437,20.697448649932127],[87.02907029070292,20.67887429996341],[87.00387003870037,20.656922795454932],[86.97506975069751,20.63834844548623],[86.92466924669247,20.621462672787402],[86.77346773467735,20.51170515024502],[86.75186751867517,20.489753645736556],[86.7338673386734,20.462736409418426],[86.72306723067231,20.432342018560533],[86.71946719467195,20.368176082305],[86.74106741067413,20.379996123194175],[86.75546755467553,20.39350474135324],[86.76986769867699,20.400259050432766],[86.78786787867881,20.390127586813477],[86.78786787867881,20.40363620497253],[86.79146791467917,20.41545624586172],[86.79506795067954,20.437407750370184],[86.80946809468094,20.41545624586172],[86.79506795067954,20.378307545924287],[86.76986769867699,20.342847423256757],[86.75186751867517,20.327650227827817],[86.74106741067413,20.32427307328804],[86.71946719467195,20.315830186938626],[86.70146701467013,20.30401014604945],[86.69426694266946,20.29387868243016],[86.70146701467013,20.285435796080748],[86.71946719467195,20.292190105160273],[86.75546755467553,20.314141609668752],[86.71586715867159,20.287124373350622],[86.62946629466296,20.234778477984264],[86.58266582665829,20.217892705285436],[86.53586535865361,20.20607266439626],[86.51066510665106,20.197629778046846],[86.49626496264966,20.18412115988778],[86.48906489064893,20.173989696268492],[86.47826478264784,20.130086687251534],[86.46746467464675,20.109823760012944],[86.46746467464675,20.094626564584004],[86.41346413464134,20.035526360138107],[86.39186391863922,20.020329164709167],[86.39546395463958,20.010197701089865],[86.40266402664025,20.00344339201034],[86.41346413464134,19.99837766020069],[86.4278642786428,19.99837766020069],[86.39546395463958,19.983180464771735],[86.34866348663485,20.008509123819977],[86.27666276662768,20.067609328265874],[86.229862298623,20.06423217372611],[86.20826208262082,20.065920750996],[86.20106201062009,20.077740791885176],[86.19746197461973,20.08111794642494],[86.17226172261724,20.10138087366353],[86.16866168661687,20.113200914552706],[86.16146161461614,20.135152419061185],[86.15786157861578,20.1435953054106],[86.15426154261542,20.1435953054106],[86.14346143461438,20.12164380090212],[86.15426154261542,20.089560832774353],[86.15786157861578,20.08111794642494],[86.16866168661687,20.072675060075525],[86.18666186661869,20.06423217372611],[86.21546215462155,20.042280669217632],[86.229862298623,20.035526360138107],[86.26946269462695,20.027083473788693],[86.27306273062732,20.025394896518804],[86.28386283862841,20.027083473788693],[86.28746287462877,20.027083473788693],[86.2946629466295,20.02201774197904],[86.2946629466295,20.015263432899516],[86.2946629466295,20.010197701089865],[86.2946629466295,20.006820546550102],[86.30186301863017,19.99837766020069],[86.3090630906309,19.99162335112115],[86.31626316263163,19.98655761931151],[86.32706327063272,19.984869042041623],[86.34146341463418,19.979803310231972],[86.35586355863558,19.969671846612684],[86.3738637386374,19.964606114803033],[86.26946269462695,19.910571642166786],[86.1110611106111,19.85653716953054],[86.08946089460898,19.844717128641364],[86.07866078660788,19.843028551371475],[86.06786067860679,19.85147143772089],[86.0570605706057,19.85653716953054],[86.04626046260461,19.853160014990777],[86.03906039060394,19.844717128641364],[86.03186031860321,19.8413399741016],[86.01386013860139,19.839651396831712],[85.88785887858882,19.802502696894294],[85.8446584465845,19.79574838781477],[85.80865808658086,19.77379688330629],[85.78705787057874,19.765353996956875],[85.779857798578,19.765353996956875],[85.74385743857442,19.765353996956875],[85.73305733057333,19.763665419686987],[85.71505715057151,19.7535339560677],[85.68625686256865,19.748468224258048],[85.62505625056252,19.718073833400155],[85.62505625056252,19.723139565209806],[85.63585635856361,19.72651671974957],[85.63945639456398,19.73158245155922],[85.61425614256143,19.728205297019457],[85.54945549455493,19.69105659708204],[85.48105481054813,19.665727938033797],[85.45585455854558,19.66403936076391],[85.44865448654485,19.66741651530367],[85.44865448654485,19.67417082438321],[85.44505445054449,19.69105659708204],[85.44145441454418,19.692745174351913],[85.43785437854382,19.69105659708204],[85.43065430654309,19.69105659708204],[85.42705427054273,19.697810906161564],[85.42705427054273,19.70456521524109],[85.43065430654309,19.70456521524109],[85.43785437854382,19.70456521524109],[85.43785437854382,19.707942369780866],[85.45225452254522,19.71638525613028],[85.47745477454777,19.723139565209806],[85.52065520655208,19.738336760638745],[85.52425524255244,19.733271028829108],[85.52425524255244,19.728205297019457],[85.52065520655208,19.721450987939917],[85.51345513455135,19.71131952432063],[85.56025560255603,19.738336760638745],[85.57825578255785,19.745091069718285],[85.56745567455675,19.750156801527922],[85.56385563855639,19.75691111060746],[85.56385563855639,19.763665419686987],[85.57105571055712,19.77379688330629],[85.56745567455675,19.79237123327499],[85.57105571055712,19.875111519499242],[85.55665556655566,19.881865828578782],[85.51345513455135,19.888620137658307],[85.47745477454777,19.900440178547484],[85.46305463054631,19.902128755817373],[85.44145441454418,19.89706302400772],[85.41625416254163,19.880177251308893],[85.37305373053732,19.837962819561824],[85.31905319053192,19.79405981054488],[85.30465304653046,19.79237123327499],[85.29025290252906,19.790682656005117],[85.27945279452797,19.785616924195466],[85.26865268652688,19.780551192385815],[85.2470524705247,19.761976842417113],[85.2218522185222,19.73664818336887],[85.20385203852038,19.707942369780866],[85.20745207452075,19.6843022880025],[85.18945189451898,19.670793669843448],[85.17505175051753,19.637022124445792],[85.16425164251643,19.625202083556616],[85.14985149851498,19.613382042667425],[85.13905139051394,19.596496269968597],[85.13905139051394,19.579610497269783],[85.14985149851498,19.567790456380592],[85.14985149851498,19.561036147301067],[85.13905139051394,19.557658992761304],[85.12465124651249,19.54921610641189],[85.11025110251103,19.539084642792588],[85.1030510305103,19.5289531791733],[85.1030510305103,19.515444561014235],[85.11025110251103,19.50700167466482],[85.1138511385114,19.50700167466482],[85.12465124651249,19.518821715553997],[85.12825128251285,19.50869025193471],[85.13185131851321,19.498558788315407],[85.12825128251285,19.488427324696104],[85.12465124651249,19.478295861076816],[85.13545135451358,19.48167301561658],[85.14265142651425,19.48673874742623],[85.14625146251461,19.493493056505756],[85.14985149851498,19.498558788315407],[85.16065160651607,19.503624520125058],[85.17145171451716,19.503624520125058],[85.17865178651789,19.503624520125058],[85.18585185851862,19.505313097394932],[85.20385203852038,19.517133138284123],[85.20025200252002,19.52726460190341],[85.19665196651965,19.539084642792588],[85.20025200252002,19.55428183822154],[85.20745207452075,19.547527529142002],[85.21465214652147,19.547527529142002],[85.2218522185222,19.54921610641189],[85.2326523265233,19.55428183822154],[85.20385203852038,19.57116761092037],[85.19305193051929,19.574544765460132],[85.19305193051929,19.581299074539658],[85.21465214652147,19.581299074539658],[85.2218522185222,19.58974196088907],[85.2326523265233,19.601562001778248],[85.2470524705247,19.608316310857788],[85.2470524705247,19.615070619937313],[85.24345243452433,19.6167591972072],[85.23625236252366,19.620136351746964],[85.2326523265233,19.625202083556616],[85.2326523265233,19.63195639263614],[85.23625236252366,19.635333547175904],[85.2470524705247,19.65390789714462],[85.2470524705247,19.657285051684383],[85.26145261452615,19.655596474414494],[85.30825308253083,19.64208785625543],[85.35145351453514,19.677547978922973],[85.36225362253623,19.677547978922973],[85.37305373053732,19.67417082438321],[85.38385383853841,19.675859401653085],[85.39105391053914,19.69105659708204],[85.39825398253981,19.679236556192862],[85.40185401854018,19.670793669843448],[85.40545405454054,19.662350783494034],[85.40545405454054,19.645465010795206],[85.40185401854018,19.643776433525318],[85.38745387453878,19.638710701715667],[85.38385383853841,19.635333547175904],[85.38385383853841,19.630267815366253],[85.38025380253805,19.620136351746964],[85.37665376653769,19.615070619937313],[85.36945369453696,19.608316310857788],[85.35145351453514,19.599873424508374],[85.33705337053374,19.596496269968597],[85.32985329853301,19.60493915631801],[85.32625326253265,19.618447774477076],[85.31905319053192,19.620136351746964],[85.31185311853119,19.610004888127662],[85.30825308253083,19.594807692698723],[85.30465304653046,19.598184847238485],[85.29385293852937,19.599873424508374],[85.2866528665287,19.601562001778248],[85.3010530105301,19.58636480634931],[85.30465304653046,19.579610497269783],[85.30465304653046,19.574544765460132],[85.32985329853301,19.576233342730006],[85.57825578255785,19.69105659708204],[85.5386553865539,19.66910509257356],[85.46305463054631,19.630267815366253],[85.38025380253805,19.593119115428834],[85.33705337053374,19.574544765460132],[85.2866528665287,19.535707488252825],[85.23985239852402,19.518821715553997],[85.17865178651789,19.474918706537053],[85.07065070650708,19.371915493074198],[84.99504995049949,19.322946752247603],[84.87264872648728,19.21994353878476],[84.78984789847897,19.120317479861683],[84.77904779047793,19.11694032532192],[84.77544775447757,19.11525174805203],[84.76464764647648,19.123694634401446],[84.75024750247502,19.138891829830385],[84.73944739447393,19.1473347161798],[84.73224732247326,19.138891829830385],[84.73224732247326,19.128760366211097],[84.72144721447216,19.113563170782157],[84.72144721447216,19.101743129892967],[84.72144721447216,19.09667739808333],[84.73584735847362,19.083168779924264],[84.73944739447393,19.073037316304962],[84.75744757447575,19.098365975353204],[84.76104761047611,19.101743129892967],[84.76824768247684,19.101743129892967],[84.77544775447757,19.100054552623092],[84.77904779047793,19.09667739808333],[84.77904779047793,19.09161166627368],[84.75024750247502,19.05446296633626],[84.73944739447393,19.02744573001813],[84.69984699846998,18.976788411921646],[84.67824678246785,18.946394021063767],[84.6638466384664,18.92950824836494],[84.63144631446318,18.915999630205874],[84.54864548645486,18.796110644044205],[84.54144541445413,18.775847716805615],[84.44784447844478,18.681287389692187],[84.43704437044369,18.66271303972347],[84.43344433444338,18.645827267024643],[84.42264422644229,18.635695803405355],[84.37224372243725,18.6019242580077],[84.35064350643506,18.569841289879918],[84.3326433264333,18.55295551718109],[84.31104311043111,18.546201208101564],[84.30744307443075,18.544512630831676],[84.28944289442893,18.529315435402737],[84.28224282242826,18.525938280862974],[84.27144271442717,18.524249703593085],[84.24984249842498,18.524249703593085],[84.24624246242462,18.525938280862974],[84.23904239042389,18.510741085434034],[84.24984249842498,18.50229819908462],[84.27144271442717,18.500609621814732],[84.29664296642966,18.51580681724367],[84.32544325443257,18.53775832175215],[84.35064350643506,18.55295551718109],[84.3326433264333,18.53944689902204],[84.28944289442893,18.505675353624383],[84.23904239042389,18.46008376733755],[84.23184231842322,18.446575149178486],[84.18864188641885,18.41786933559048],[84.17424174241745,18.399294985621765],[84.15264152641527,18.384097790192826],[84.14544145441454,18.37565490384341],[84.13824138241381,18.363834862954235],[84.13824138241381,18.353703399334933],[84.13104131041314,18.343571935715644],[84.12384123841241,18.333440472096342],[84.11304113041132,18.297980349428812],[84.07704077040773,18.27096311311068],[83.7746377463775,18.139254086059836],[83.61263612636128,18.04469375894641],[83.58383583835837,18.019365099898167],[83.5766357663577,18.009233636278864],[83.56223562235624,17.983904977230623],[83.55863558635588,17.977150668151097],[83.55503555035551,17.973773513611334],[83.54063540635406,17.956887740912507],[83.53343533435333,17.953510586372744],[83.52623526235266,17.941690545483553],[83.48663486634865,17.916361886435325],[83.47223472234725,17.90285326827626],[83.46503465034652,17.90285326827626],[83.46143461434616,17.90791900008591],[83.45063450634507,17.92311619551485],[83.45063450634507,17.906230422816023],[83.45063450634507,17.885967495577432],[83.45423454234543,17.869081722878605],[83.43263432634325,17.853884527449665],[83.42543425434258,17.83868733202071],[83.41823418234185,17.806604363892944],[83.40383403834039,17.784652859384465],[83.34263342633426,17.717109768589154],[83.31743317433177,17.703601150430103],[83.3138331383314,17.701912573160214],[83.30303303033031,17.691781109540926],[83.29943299432995,17.690092532271038],[83.29223292232922,17.691781109540926],[83.28863288632886,17.6934696868108],[83.28863288632886,17.69515826408069],[83.28503285032849,17.696846841350563],[83.28143281432813,17.69853541862045],[83.28143281432813,17.705289727699977],[83.27783277832782,17.71373261404939],[83.26703267032673,17.717109768589154],[83.24543245432454,17.71542119131928],[83.24183241832418,17.706978304969866],[83.24903249032491,17.69515826408069],[83.27063270632709,17.68840395500115],[83.29223292232922,17.67827249138186],[83.29943299432995,17.67320675957221],[83.29943299432995,17.664763873222796],[83.28863288632886,17.65800956414327],[83.26703267032673,17.647878100523968],[83.25623256232564,17.63774663690468],[83.24543245432454,17.634369482364903],[83.21303213032132,17.634369482364903],[83.23463234632345,17.607352246046787],[83.23823238232382,17.592155050617833],[83.22383223832242,17.587089318808196],[83.20943209432096,17.583712164268434],[83.1950319503195,17.576957855188894],[83.16983169831701,17.560072082490066],[83.0870308703087,17.53136626890206],[83.05463054630548,17.50603760985382],[83.01863018630189,17.49084041442488],[82.9970299702997,17.473954641726053],[82.97542975429758,17.453691714487462],[82.96822968229685,17.4503145599477],[82.9538295382954,17.44524882813805],[82.94662946629467,17.44356025086816],[82.89622896228963,17.409788705470504],[82.8890288902889,17.409788705470504],[82.88182881828817,17.42160874635968],[82.86742867428677,17.41316586001028],[82.85302853028531,17.40303439639098],[82.83862838628386,17.392902932771676],[82.79542795427955,17.382771469152388],[82.75942759427596,17.359131387374035],[82.71982719827201,17.348999923754732],[82.47502475024748,17.205470855814696],[82.45342453424536,17.181830774036342],[82.43542435424354,17.153124960448338],[82.42462424624244,17.139616342289273],[82.38862388623886,17.12610772413022],[82.3706237062371,17.110910528701268],[82.34182341823418,17.07376182876385],[82.31302313023133,17.046744592445734],[82.29862298622987,17.029858819746906],[82.29142291422914,16.997775851619124],[82.2518225182252,16.92854418355394],[82.2518225182252,16.908281256315348],[82.25542255422556,16.884641174536995],[82.26622266222665,16.867755401838167],[82.29862298622987,16.857623938218865],[82.30222302223024,16.854246783679102],[82.30942309423097,16.84918105186945],[82.31302313023133,16.845803897329688],[82.32022320223206,16.847492474599576],[82.32742327423273,16.84918105186945],[82.33462334623346,16.852558206409213],[82.33462334623346,16.854246783679102],[82.35262352623528,16.845803897329688],[82.36342363423637,16.859312515488753],[82.359823598236,16.89139548361652],[82.35622356223564,16.925167029014176],[82.34902349023491,16.957249997141943],[82.359823598236,16.935298492633464],[82.36702367023673,16.908281256315348],[82.36702367023673,16.861001092758627],[82.36702367023673,16.812032351932032],[82.35262352623528,16.76137503383555],[82.34542345423455,16.705651983929428],[82.33822338223382,16.678634747611298],[82.31302313023133,16.627977429514814],[82.31302313023133,16.6195345431654],[82.31302313023133,16.612780234085875],[82.31302313023133,16.607714502276224],[82.30222302223024,16.60602592500635],[82.29862298622987,16.609403079546112],[82.29502295022951,16.62628885224494],[82.28782287822878,16.627977429514814],[82.28062280622805,16.62122312043529],[82.28422284222842,16.60602592500635],[82.29502295022951,16.590828729577396],[82.3058230582306,16.57900868868822],[82.25902259022592,16.565500070529154],[82.20502205022052,16.513154175162796],[82.1870218702187,16.504711288813382],[82.17262172621724,16.50133413427362],[82.1222212222122,16.477694052495252],[82.08982089820898,16.4540539707169],[82.06822068220686,16.44392250709761],[82.03582035820358,16.447299661637373],[82.02142021420212,16.435479620748197],[82.00702007020072,16.420282425319243],[81.99261992619927,16.408462384430067],[81.98181981819818,16.408462384430067],[81.96741967419678,16.408462384430067],[81.95661956619568,16.406773807160192],[81.94941949419496,16.39157661173124],[81.94221942219423,16.388199457191476],[81.89901899018992,16.386510879921588],[81.8810188101881,16.38144514811195],[81.86301863018633,16.37469083903241],[81.78381783817838,16.33923071636488],[81.76221762217625,16.322344943666053],[81.71901719017188,16.31221348004675],[81.71181711817121,16.31221348004675],[81.69741697416976,16.315590634586513],[81.67581675816757,16.327410675475704],[81.65781657816581,16.337542139094992],[81.63621636216362,16.33247640728534],[81.62181621816217,16.33923071636488],[81.58581585815858,16.342607870904644],[81.56781567815682,16.345985025444406],[81.57501575015749,16.357805066333583],[81.56781567815682,16.367936529952885],[81.55701557015573,16.373002261762537],[81.5390153901539,16.373002261762537],[81.549815498155,16.352739334523946],[81.53541535415354,16.34936217998417],[81.4958149581496,16.36118222087336],[81.47421474214741,16.357805066333583],[81.4166141661417,16.340919293634755],[81.420214202142,16.351050757254058],[81.42741427414273,16.35949364360347],[81.42741427414273,16.366247952682997],[81.42381423814237,16.373002261762537],[81.41301413014133,16.383133725381825],[81.39861398613988,16.383133725381825],[81.38781387813879,16.3763794163023],[81.3770137701377,16.367936529952885],[81.35901359013593,16.37469083903241],[81.34461344613447,16.373002261762537],[81.33021330213302,16.36962510722276],[81.31581315813162,16.367936529952885],[81.25821258212585,16.33247640728534],[81.24741247412476,16.320656366396165],[81.25101251012512,16.310524902776876],[81.25461254612549,16.302082016427462],[81.25821258212585,16.288573398268397],[81.25461254612549,16.27168762556957],[81.22941229412294,16.242981811981565],[81.21861218612185,16.199078802964607],[81.18981189811899,16.138290021248835],[81.1790117901179,16.085944125882477],[81.16101161011613,16.057238312294473],[81.15741157411577,16.038663962325757],[81.1538115381154,15.986318066959399],[81.15021150211504,15.96943229426057],[81.13581135811359,15.966055139720808],[81.08901089010891,15.920463553433962],[81.04221042210423,15.893446317115846],[81.02781027810278,15.881626276226669],[80.99900999009992,15.846166153559125],[80.99900999009992,15.834346112669948],[81.00261002610029,15.825903226320534],[81.00981009810101,15.81746033997112],[81.01341013410138,15.812394608161469],[81.02061020610205,15.792131680922878],[81.02061020610205,15.783688794573465],[81.01341013410138,15.778623062763828],[81.00621006210065,15.778623062763828],[80.99540995409956,15.783688794573465],[80.98820988209883,15.790443103653004],[80.97740977409774,15.80395172181207],[80.94860948609488,15.827591803590423],[80.94140941409415,15.832657535400074],[80.92340923409233,15.8394118444796],[80.90900909009093,15.852920462638664],[80.90540905409057,15.871494812607366],[80.9018090180902,15.890069162576083],[80.90900909009093,15.966055139720808],[80.90900909009093,15.982940912419622],[80.90540905409057,15.99982668511845],[80.89820898208984,16.03190965324623],[80.89100891008911,16.02177818962693],[80.89820898208984,16.009958148737752],[80.88740887408875,16.003203839658227],[80.88740887408875,16.008269571467864],[80.88380883808838,16.01164672600764],[80.87660876608766,16.016712457817277],[80.89100891008911,15.977875180609985],[80.89460894608948,15.935660748862915],[80.89100891008911,15.895134894385734],[80.85500855008553,15.822526071780771],[80.82980829808298,15.748228671905935],[80.81900819008189,15.726277167397456],[80.80820808208085,15.716145703778167],[80.80820808208085,15.80395172181207],[80.80100801008012,15.842788999019362],[80.77580775807758,15.885003430766432],[80.76140761407618,15.893446317115846],[80.73620736207363,15.896823471655608],[80.68940689406895,15.900200626195371],[80.68220682206822,15.903577780735148],[80.6750067500675,15.90695493527491],[80.67140671406713,15.90695493527491],[80.6642066420664,15.900200626195371],[80.6606066060661,15.893446317115846],[80.6642066420664,15.890069162576083],[80.61740617406173,15.888380585306194],[80.59940599405996,15.881626276226669],[80.58500585005851,15.873183389877255],[80.57060570605705,15.868117658067604],[80.55980559805602,15.881626276226669],[80.55260552605529,15.881626276226669],[80.5418054180542,15.868117658067604],[80.52740527405274,15.856297617178427],[80.49140491404916,15.8394118444796],[80.48420484204843,15.836034689939837],[80.4770047700477,15.836034689939837],[80.46980469804697,15.834346112669948],[80.46260462604624,15.829280380860297],[80.44460444604448,15.814083185431357],[80.43740437404375,15.809017453621706],[80.39420394203944,15.79719741273253],[80.35820358203586,15.77524590822405],[80.2790027900279,15.700948508349214],[80.26460264602645,15.673931272031098],[80.21780217802177,15.56755090402848],[80.21780217802177,15.548976554059777],[80.19980199802,15.518582163201884],[80.19620196201964,15.503384967772945],[80.21060210602104,15.496630658693405],[80.19980199802,15.481433463264466],[80.18540185401855,15.452727649676461],[80.17460174601746,15.437530454247522],[80.13860138601387,15.407136063389629],[80.12780127801278,15.388561713420913],[80.12060120601205,15.36998736345221],[80.0918009180092,15.304132849926788],[80.0918009180092,15.297378540847248],[80.0810008100081,15.204506791003709],[80.05220052200525,15.09306069119144],[80.05580055800561,15.013697559506966],[80.06300063000629,14.974860282299659],[80.07380073800738,14.942777314171892],[80.07380073800738,14.920825809663413],[80.10620106201065,14.763788123564325],[80.10980109801096,14.714819382737716],[80.10980109801096,14.704687919118427],[80.11700117001169,14.697933610038888],[80.12780127801278,14.6878021464196],[80.15300153001533,14.67260495099066],[80.160201602016,14.662473487371358],[80.16740167401673,14.628701941973702],[80.17460174601746,14.616881901084525],[80.17820178201782,14.605061860195349],[80.17460174601746,14.593241819306172],[80.1710017100171,14.586487510226632],[80.160201602016,14.579733201147107],[80.14220142201424,14.571290314797693],[80.14940149401497,14.564536005718168],[80.160201602016,14.566224582988042],[80.18180181801819,14.571290314797693],[80.18900189001891,14.571290314797693],[80.19620196201964,14.564536005718168],[80.19620196201964,14.559470273908516],[80.19260192601928,14.552715964828977],[80.18900189001891,14.54765023301934],[80.18900189001891,14.52569872851086],[80.17460174601746,14.468287101334852],[80.17820178201782,14.388923969650364],[80.17460174601746,14.345020960633406],[80.160201602016,14.324758033394815],[80.13860138601387,14.270723560758569],[80.12780127801278,14.257214942599504],[80.09900099000993,14.25383778805974],[80.08820088200883,14.250460633519978],[80.07020070200701,14.231886283551276],[80.07020070200701,14.2285091290115],[80.05580055800561,14.221754819931974],[80.04500045000452,14.206557624503034],[80.05220052200525,14.196426160883732],[80.07380073800738,14.201491892693383],[80.0918009180092,14.216689088122322],[80.10620106201065,14.23357486082115],[80.12060120601205,14.242017747170564],[80.13500135001351,14.2285091290115],[80.12420124201242,14.19304900634397],[80.12420124201242,14.149145997327011],[80.14940149401497,14.027568433895468],[80.16380163801637,13.98873115668816],[80.23580235802359,13.840136356938487],[80.25020250202505,13.799610502461306],[80.24660246602468,13.755707493444348],[80.22860228602286,13.720247370776818],[80.22140221402213,13.69660728899845],[80.22860228602286,13.67634436175986],[80.23940239402395,13.659458589061032],[80.25740257402578,13.59191549826572],[80.289802898029,13.527749562010186],[80.30780307803082,13.47878082118359],[80.31500315003149,13.441632121246172],[80.30780307803082,13.441632121246172],[80.2790027900279,13.512552366581247],[80.24660246602468,13.59191549826572],[80.19620196201964,13.644261393632092],[80.18540185401855,13.679721516299622],[80.15300153001533,13.71855879350693],[80.14220142201424,13.728690257126232],[80.14220142201424,13.649327125441744],[80.13500135001351,13.61893273458385],[80.12060120601205,13.627375620933265],[80.11700117001169,13.639195661822441],[80.12060120601205,13.664524320870683],[80.11700117001169,13.674655784489985],[80.10980109801096,13.68141009356951],[80.10260102601029,13.686475825379162],[80.09540095400956,13.694918711728576],[80.0918009180092,13.671278629950208],[80.0918009180092,13.659458589061032],[80.07380073800738,13.647638548171855],[80.05220052200525,13.61893273458385],[80.05580055800561,13.595292652805497],[80.07020070200701,13.575029725566907],[80.10260102601029,13.537881025629474],[80.11340113401133,13.510863789311358],[80.12060120601205,13.500732325692056],[80.13140131401315,13.495666593882419],[80.15300153001533,13.49397801661253],[80.17460174601746,13.488912284802879],[80.22140221402213,13.487223707533005],[80.22860228602286,13.485535130263116],[80.23580235802359,13.47878082118359],[80.24300243002432,13.472026512104051],[80.25380253802541,13.468649357564288],[80.26100261002608,13.468649357564288],[80.26460264602645,13.468649357564288],[80.26100261002608,13.45176358486546],[80.27540275402754,13.439943543976284],[80.29340293402936,13.429812080356982],[80.30780307803082,13.412926307658168],[80.31140311403112,13.423057771277456],[80.31500315003149,13.426434925817219],[80.32580325803258,13.429812080356982],[80.3330033300333,13.412926307658168],[80.3438034380344,13.375777607720735],[80.34740347403476,13.34876037140262],[80.3438034380344,13.321743135084489],[80.33660336603367,13.27108581698802],[80.3330033300333,13.242380003400015],[80.32220322203221,13.247445735209652],[80.31860318603185,13.24913431247954],[80.31860318603185,13.230559962510824],[80.31500315003149,13.215362767081885],[80.31860318603185,13.217051344351773],[80.3330033300333,13.220428498891536],[80.3330033300333,13.198476994383057],[80.32580325803258,13.179902644414355],[80.31500315003149,13.164705448985401],[80.30780307803082,13.1461310990167],[80.30780307803082,13.135999635397397],[80.31500315003149,13.105605244539504],[80.30780307803082,13.095473780920216],[80.289802898029,13.0768994309515],[80.28620286202863,13.066767967332211],[80.28260282602827,13.029619267394793],[80.26820268202681,12.95701044478983],[80.26460264602645,12.835432881358273],[80.25020250202505,12.762824058753324],[80.23220232202323,12.710478163386952],[80.22860228602286,12.675018040719422],[80.22140221402213,12.659820845290483],[80.20340203402037,12.632803608972353],[80.19620196201964,12.61422925900365],[80.18540185401855,12.56694909544693],[80.18180181801819,12.546686168208339],[80.17820178201782,12.533177550049274],[80.1566015660157,12.474077345603376],[80.12060120601205,12.416665718427367],[80.11700117001169,12.401468522998428],[80.09540095400956,12.362631245791121],[80.08820088200883,12.350811204901945],[80.06300063000629,12.33730258674288],[80.05940059400592,12.333925432203117],[80.05580055800561,12.330548277663354],[80.0270002700027,12.276513805027108],[80.00540005400057,12.256250877788517],[79.95139951399517,12.229233641470387],[79.94419944199444,12.21741360058121],[79.95139951399517,12.214036446041447],[79.9729997299973,12.222479332390861],[80.00540005400057,12.241053682359563],[79.9477994779948,12.153247664325662],[79.93339933399335,12.138050468896722],[79.92619926199262,12.129607582547308],[79.89739897398977,12.068818800831536],[79.86859868598685,12.036735832703755],[79.86139861398613,12.021538637274816],[79.86139861398613,12.011407173655527],[79.86139861398613,11.977635628257872],[79.86139861398613,11.97256989644822],[79.85059850598509,11.959061278289155],[79.85059850598509,11.955684123749393],[79.84339843398436,11.933732619240914],[79.82179821798218,11.878009569334793],[79.80379803798041,11.795269283110542],[79.79299792997932,11.788514974031003],[79.7857978579786,11.7699406240623],[79.76779767797677,11.673691719678985],[79.76419764197641,11.634854442471678],[79.75339753397537,11.59770574253426],[79.75339753397537,11.577442815295669],[79.75699756997568,11.536916960818488],[79.78219782197823,11.464308138213525],[79.7857978579786,11.425470861006218],[79.79299792997932,11.425470861006218],[79.79659796597969,11.43560232462552],[79.80019800198005,11.442356633705046],[79.79659796597969,11.449110942784586],[79.79299792997932,11.454176674594237],[79.81099810998109,11.45079952005446],[79.81819818198181,11.442356633705046],[79.82179821798218,11.391699315608577],[79.81819818198181,11.381567851989274],[79.81099810998109,11.378190697449512],[79.78219782197823,11.378190697449512],[79.7749977499775,11.379879274719386],[79.76779767797677,11.381567851989274],[79.76059760597605,11.378190697449512],[79.74979749797501,11.37312496563986],[79.73899738997392,11.366370656560335],[79.68499684996851,11.312336183924089],[79.67779677796779,11.297138988495135],[79.68139681396815,11.297138988495135],[79.6957969579696,11.303893297574675],[79.74259742597428,11.335976265702442],[79.75339753397537,11.341041997512093],[79.76059760597605,11.357927770210921],[79.7749977499775,11.362993502020572],[79.79659796597969,11.359616347480795],[79.82539825398254,11.346107729321744],[79.8289982899829,11.346107729321744],[79.83259832598327,11.342730574781967],[79.83619836198363,11.26336744309748],[79.85419854198545,11.160364229634638],[79.85059850598509,11.006703698075313],[79.84699846998473,10.979686461757197],[79.839798397984,10.950980648169192],[79.84699846998473,10.809140157499044],[79.85059850598509,10.755105684862798],[79.85059850598509,10.59131368968417],[79.86139861398613,10.55078783520699],[79.86499864998649,10.378552953678948],[79.85779857798576,10.294124090184823],[79.85059850598509,10.282304049295632],[79.83259832598327,10.27892689475587],[79.81459814598145,10.272172585676344],[79.79659796597969,10.268795431136581],[79.77859778597787,10.275549740216107],[79.77859778597787,10.295812667454697],[79.75699756997568,10.309321285613763],[79.63459634596347,10.327895635582465],[79.62019620196202,10.324518481042702],[79.61299612996129,10.309321285613763],[79.63099630996311,10.311009862883637],[79.64539645396457,10.309321285613763],[79.66339663396633,10.307632708343874],[79.67779677796779,10.302566976534237],[79.68499684996851,10.29918982199446],[79.6957969579696,10.292435512914935],[79.70299702997033,10.289058358375172],[79.73179731797319,10.289058358375172],[79.76059760597605,10.282304049295632],[79.7749977499775,10.273861162946218],[79.77139771397714,10.262041122057042],[79.76059760597605,10.258663967517279],[79.58059580595807,10.295812667454697],[79.56259562595625,10.297501244724586],[79.55539555395552,10.29918982199446],[79.55179551795521,10.302566976534237],[79.55179551795521,10.312698440153525],[79.55539555395552,10.316075594693288],[79.56619566195661,10.316075594693288],[79.57339573395734,10.317764171963177],[79.60579605796056,10.329584212852353],[79.60579605796056,10.336338521931879],[79.5877958779588,10.343092831011418],[79.56619566195661,10.336338521931879],[79.53019530195303,10.338027099201767],[79.53379533795339,10.329584212852353],[79.53379533795339,10.322829903772828],[79.51219512195121,10.316075594693288],[79.4581945819458,10.307632708343874],[79.43659436594368,10.309321285613763],[79.41139411394113,10.32114132650294],[79.39699396993973,10.324518481042702],[79.38619386193864,10.31945274923305],[79.36459364593645,10.302566976534237],[79.30339303393038,10.268795431136581],[79.28539285392856,10.253598235707628],[79.2709927099271,10.235023885738926],[79.2709927099271,10.223203844849749],[79.2709927099271,10.209695226690684],[79.2709927099271,10.197875185801507],[79.26019260192601,10.192809453991856],[79.24939249392497,10.189432299452093],[79.23859238592388,10.179300835832791],[79.23499234992352,10.165792217673726],[79.23859238592388,10.152283599514675],[79.24579245792461,10.084740508719364],[79.25299252992534,10.05434611786147],[79.27819278192783,10.035771767892768],[79.24219242192424,10.010443108844527],[79.19899198991993,9.969917254367346],[79.14139141391416,9.890554122682857],[79.11979119791198,9.850028268205662],[79.10179101791022,9.829765340967072],[79.10179101791022,9.826388186427309],[79.09459094590949,9.802748104648956],[79.07659076590767,9.782485177410365],[79.04059040590408,9.74702505474282],[78.97938979389795,9.667661923058333],[78.97938979389795,9.659219036708919],[78.97938979389795,9.64908757308963],[78.97578975789759,9.637267532200454],[78.97218972189722,9.630513223120914],[78.96138961389613,9.6220703367715],[78.95778957789577,9.61700460496185],[78.94698946989473,9.603495986802798],[78.939789397894,9.583233059564208],[78.93258932589328,9.561281555055729],[78.92538925389255,9.514001391499008],[78.91458914589145,9.473475537021827],[78.91458914589145,9.453212609783236],[78.93258932589328,9.416063909845818],[78.96138961389613,9.385669518987925],[79.04059040590408,9.31474927365285],[79.0729907299073,9.299552078223911],[79.11619116191162,9.291109191874497],[79.25299252992534,9.287732037334735],[79.27459274592746,9.296174923684148],[79.29619296192965,9.313060696382962],[79.32139321393214,9.323192160002264],[79.33939339393396,9.316437850922739],[79.34659346593469,9.306306387303437],[79.34299342993432,9.299552078223911],[79.3357933579336,9.291109191874497],[79.33219332193323,9.277600573715432],[79.3357933579336,9.26746911009613],[79.33939339393396,9.260714801016604],[79.34659346593469,9.255649069206953],[79.34659346593469,9.250583337397316],[79.35379353793542,9.240451873778014],[79.36819368193682,9.226943255618949],[79.43659436594368,9.176285937522465],[79.4545945459455,9.159400164823637],[79.44019440194404,9.150957278474223],[79.42579425794258,9.159400164823637],[79.36099360993609,9.213434637459883],[79.29259292592928,9.250583337397316],[79.23139231392315,9.257337646476842],[79.2169921699217,9.26746911009613],[79.2025920259203,9.265780532826255],[79.18459184591848,9.272534841905781],[79.16659166591666,9.27422341917567],[79.13059130591307,9.255649069206953],[79.09819098190985,9.257337646476842],[79.08739087390876,9.253960491937079],[79.06219062190621,9.264091955556367],[79.02619026190263,9.27422341917567],[78.99018990189904,9.277600573715432],[78.95778957789577,9.27422341917567],[78.9505895058951,9.270846264635907],[78.92898928989291,9.253960491937079],[78.91818918189182,9.25227191466719],[78.91098910989109,9.25227191466719],[78.90378903789036,9.253960491937079],[78.89658896588969,9.253960491937079],[78.86058860588605,9.248894760127428],[78.84258842588429,9.243829028317776],[78.81378813788137,9.228631832888837],[78.77778777787779,9.220188946539423],[78.75978759787597,9.21005748292012],[78.75258752587524,9.199926019300833],[78.7417874178742,9.193171710221293],[78.72738727387275,9.188105978411656],[78.67698676986771,9.184728823871879],[78.66258662586625,9.177974514792353],[78.65538655386553,9.161088742093526],[78.64818648186485,9.150957278474223],[78.6337863378634,9.144202969394698],[78.61938619386194,9.140825814854935],[78.48618486184864,9.125628619425996],[78.450184501845,9.117185733076582],[78.41058410584105,9.100299960377754],[78.37818378183783,9.076659878599386],[78.24138241382417,8.965213778787131],[78.21618216182162,8.938196542469015],[78.1837818378184,8.87740776075323],[78.17658176581767,8.860521988054401],[78.17298172981731,8.794667474528978],[78.16938169381694,8.7727159700205],[78.16218162181622,8.754141620051797],[78.17658176581767,8.764273083671085],[78.18738187381877,8.765961660940974],[78.20178201782016,8.769338815480737],[78.20898208982089,8.787913165449453],[78.21618216182162,8.765961660940974],[78.20538205382053,8.754141620051797],[78.18738187381877,8.745698733702383],[78.16938169381694,8.733878692813207],[78.16578165781658,8.727124383733667],[78.15498154981549,8.698418570145662],[78.14058140581409,8.67984422017696],[78.13698136981372,8.669712756557658],[78.14418144181445,8.657892715668481],[78.11538115381154,8.657892715668481],[78.13698136981372,8.625809747540714],[78.14058140581409,8.593726779412933],[78.129781297813,8.487346411410329],[78.12258122581227,8.47721494779104],[78.11538115381154,8.46539490690185],[78.08658086580868,8.440066247853608],[78.07938079380796,8.431623361504194],[78.06138061380614,8.37252315705831],[78.05418054180541,8.364080270708897],[78.03978039780401,8.360703116169134],[78.0001800018,8.34550592074018],[77.80577805778057,8.228994089118274],[77.79497794977948,8.215485470959209],[77.76977769777699,8.181713925561567],[77.75177751777517,8.173271039212153],[77.64377643776436,8.156385266513325],[77.59697596975968,8.139499493814498],[77.5609756097561,8.114170834766256],[77.56457564575646,8.082087866638489],[77.51057510575106,8.075333557558949],[77.44937449374493,8.087153598448126],[77.31617316173163,8.127679452925321],[77.3089730897309,8.131056607465084],[77.29457294572944,8.146253802894023],[77.28737287372877,8.153008111973548],[77.26217262172622,8.168205307402502],[77.2405724057241,8.174959616482028],[77.22617226172264,8.18509108010133],[77.12897128971292,8.271208520865343],[77.1109711097111,8.284717139024409],[76.99576995769957,8.36745742524866],[76.96336963369635,8.404606125186078],[76.88056880568809,8.521117956807984],[76.82656826568268,8.57008669763458],[76.81216812168122,8.600481088492472],[76.740167401674,8.684909951986612],[76.73296732967333,8.708550033764965],[76.69696696966969,8.740633001892732],[76.6609666096661,8.79973320633863],[76.64296642966428,8.818307556307332],[76.56016560165602,8.890916378912294],[76.5421654216542,8.912867883420773],[76.54936549365493,8.92468792430995],[76.56016560165602,8.92468792430995],[76.57456574565748,8.90442499707136],[76.59256592565924,8.907802151611122],[76.61056610566106,8.917933615230424],[76.62136621366216,8.92468792430995],[76.6069660696607,8.926376501579824],[76.59256592565924,8.921310769770187],[76.58176581765821,8.919622192500299],[76.57096570965712,8.931442233389475],[76.57456574565748,8.943262274278652],[76.58176581765821,8.956770892437717],[76.59256592565924,8.968590933326894],[76.60336603366034,8.973656665136545],[76.65736657366574,8.96690235605702],[76.6609666096661,8.970279510596782],[76.65376653766538,8.977033819676308],[76.63936639366392,8.983788128755847],[76.63576635766361,8.98716528329561],[76.64296642966428,8.990542437835373],[76.65736657366574,8.995608169645024],[76.66816668166683,8.998985324184787],[76.66816668166683,9.0074282105342],[76.65736657366574,9.010805365073963],[76.64296642966428,9.0074282105342],[76.63216632166325,9.00236247872455],[76.62496624966252,8.997296746914898],[76.62136621366216,8.98716528329561],[76.6069660696607,8.988853860565484],[76.58176581765821,9.000673901454675],[76.57816578165784,8.993919592375136],[76.56736567365675,8.963525201517257],[76.56016560165602,8.951705160628066],[76.54936549365493,8.96690235605702],[76.55656556565566,8.973656665136545],[76.56016560165602,8.978722396946196],[76.56376563765639,8.993919592375136],[76.54936549365493,8.983788128755847],[76.53856538565384,8.97196808786667],[76.53496534965353,8.958459469707606],[76.53856538565384,8.93988511973889],[76.5277652776528,8.946639428818429],[76.52056520565208,8.961836624247368],[76.51696516965171,8.977033819676308],[76.51696516965171,8.990542437835373],[76.51336513365135,9.00236247872455],[76.49896498964989,9.02262540596314],[76.4881648816488,9.056396951360796],[76.45936459364594,9.115497155806693],[76.46296462964631,9.139137237585047],[76.46296462964631,9.132382928505521],[76.46656466564667,9.129005773965758],[76.46656466564667,9.123940042156107],[76.47016470164704,9.117185733076582],[76.47736477364776,9.117185733076582],[76.47736477364776,9.130694351235633],[76.48096480964813,9.171220205712828],[76.4737647376474,9.164465896633288],[76.47016470164704,9.159400164823637],[76.47016470164704,9.150957278474223],[76.46296462964631,9.150957278474223],[76.44496444964449,9.21174606019001],[76.42696426964272,9.245517605587665],[76.41616416164163,9.24720618285754],[76.41616416164163,9.237074719238251],[76.44856448564485,9.159400164823637],[76.44856448564485,9.145891546664586],[76.44136441364412,9.145891546664586],[76.36216362163623,9.324880737272153],[76.31176311763119,9.493738464260417],[76.290162901629,9.633890377660677],[76.29736297362973,9.659219036708919],[76.2757627576276,9.809502413728481],[76.25416254162542,9.883799813603318],[76.24696246962469,9.89393127722262],[76.23976239762396,9.939522863509453],[76.2361623616236,9.953031481668518],[76.25056250562506,9.963162945287806],[76.26856268562688,9.95134290439863],[76.28296282962833,9.927702822620276],[76.290162901629,9.90912847265156],[76.28656286562864,9.904062740841908],[76.26136261362615,9.910817049921448],[76.25776257762578,9.90912847265156],[76.25776257762578,9.895619854492494],[76.26136261362615,9.885488390873206],[76.26856268562688,9.875356927253904],[76.2757627576276,9.870291195444253],[76.27936279362797,9.877045504523792],[76.28296282962833,9.890554122682857],[76.290162901629,9.877045504523792],[76.28656286562864,9.861848309094853],[76.28296282962833,9.848339690935788],[76.27936279362797,9.843273959126137],[76.290162901629,9.843273959126137],[76.3009630096301,9.848339690935788],[76.30456304563046,9.856782577285202],[76.29736297362973,9.870291195444253],[76.30816308163082,9.880422659063555],[76.31536315363155,9.861848309094853],[76.34056340563404,9.6997448911861],[76.34776347763477,9.6997448911861],[76.34776347763477,9.72676212750423],[76.33696336963368,9.78923948648989],[76.34776347763477,9.816256722808006],[76.32256322563228,9.8466511136659],[76.31896318963192,9.861848309094853],[76.33336333363337,9.870291195444253],[76.33696336963368,9.856782577285202],[76.35136351363514,9.829765340967072],[76.35856358563586,9.816256722808006],[76.36216362163623,9.80443668191883],[76.35856358563586,9.782485177410365],[76.35856358563586,9.7689765592513],[76.36936369363696,9.714942086615054],[76.37656376563768,9.694679159376463],[76.39456394563945,9.67948196394751],[76.39096390963908,9.662596191248682],[76.38736387363872,9.64908757308963],[76.38016380163805,9.637267532200454],[76.37296372963732,9.623758914041389],[76.3549635496355,9.535952896007487],[76.35856358563586,9.520755700578547],[76.37656376563768,9.514001391499008],[76.42696426964272,9.505558505149594],[76.43416434164345,9.507247082419482],[76.45936459364594,9.49711561880018],[76.47736477364776,9.50386992787972],[76.50256502565026,9.534264318737598],[76.48456484564849,9.5443957823569],[76.46656466564667,9.556215823246077],[76.44856448564485,9.562970132325603],[76.42696426964272,9.556215823246077],[76.41616416164163,9.561281555055729],[76.40536405364054,9.569724441405143],[76.419764197642,9.593364523183496],[76.419764197642,9.615316027691975],[76.41616416164163,9.635578954930565],[76.41616416164163,9.682859118487286],[76.4089640896409,9.6997448911861],[76.40176401764018,9.709876354805402],[76.39456394563945,9.70649920026564],[76.39096390963908,9.716630663884928],[76.39456394563945,9.735205013853644],[76.39456394563945,9.74702505474282],[76.39096390963908,9.757156518362123],[76.38376383763841,9.774042291060951],[76.38016380163805,9.785862331950128],[76.38376383763841,9.802748104648956],[76.39096390963908,9.812879568268244],[76.39816398163981,9.823011031887546],[76.39456394563945,9.843273959126137],[76.38736387363872,9.861848309094853],[76.36216362163623,9.898997009032271],[76.35856358563586,9.9158827817311],[76.32256322563228,9.953031481668518],[76.31176311763119,9.966540099827569],[76.29376293762937,9.95134290439863],[76.27936279362797,9.978360140716745],[76.26856268562688,10.015508840654178],[76.27216272162724,10.035771767892768],[76.25416254162542,10.047591808781945],[76.24336243362433,10.101626281418191],[76.2361623616236,10.103314858688066],[76.22896228962293,10.110069167767605],[76.2217622176222,10.11682347684713],[76.21456214562147,10.13877498135561],[76.20736207362074,10.11682347684713],[76.21456214562147,10.098249126878429],[76.2217622176222,10.0813633541796],[76.22896228962293,10.066166158750647],[76.23256232562329,10.025640304273466],[76.2361623616236,10.005377377034876],[76.24336243362433,9.98680302706616],[76.22896228962293,10.000311645225224],[76.21456214562147,10.023951727003592],[76.18216182161825,10.105003435957954],[76.18216182161825,10.121889208656782],[76.18576185761856,10.135397826815847],[76.18576185761856,10.145529290435135],[76.17856178561789,10.155660754054438],[76.17856178561789,10.170857949483377],[76.22536225362256,10.196186608531619],[76.2361623616236,10.209695226690684],[76.2361623616236,10.21644953577021],[76.24336243362433,10.223203844849749],[76.24336243362433,10.231646731199163],[76.23976239762396,10.238401040278688],[76.2361623616236,10.238401040278688],[76.22896228962293,10.235023885738926],[76.2217622176222,10.235023885738926],[76.21456214562147,10.253598235707628],[76.20736207362074,10.262041122057042],[76.19656196561965,10.268795431136581],[76.20736207362074,10.235023885738926],[76.21096210962111,10.21644953577021],[76.20016200162001,10.199563763071382],[76.18576185761856,10.189432299452093],[76.17136171361716,10.194498031261745],[76.16056160561607,10.206318072150921],[76.15336153361534,10.219826690309972],[76.13896138961388,10.260352544787168],[76.12096120961212,10.343092831011418],[76.10656106561066,10.385307262758488],[76.07056070560708,10.432587426315195],[76.06336063360635,10.449473199014022],[76.06336063360635,10.469736126252613],[76.05256052560526,10.513639135269571],[76.04536045360453,10.52883633069851],[76.02016020160204,10.554164989746752],[76.00936009360095,10.567673607905817],[75.99855998559985,10.604822307843236],[75.93735937359375,10.726399871274793],[75.93375933759339,10.744974221243496],[75.93375933759339,10.751728530323035],[75.92655926559266,10.75848283940256],[75.9229592295923,10.765237148482086],[75.91935919359196,10.775368612101389],[75.9229592295923,10.78043434391104],[75.93735937359375,10.790565807530328],[75.94095940959411,10.795631539339979],[75.91215912159123,10.809140157499044],[75.89415894158944,10.849666011976225],[75.87975879758798,10.932406298200476],[75.8329583295833,11.097886870648978],[75.74295742957432,11.3106476066542],[75.73935739357395,11.319090493003614],[75.73215732157323,11.32584480208314],[75.73215732157323,11.33091053389279],[75.72855728557286,11.344419152051856],[75.73935739357395,11.351173461131381],[75.74295742957432,11.357927770210921],[75.73575735757359,11.371436388369972],[75.72135721357213,11.368059233830209],[75.71055710557107,11.381567851989274],[75.69615696156961,11.420405129196581],[75.67815678156782,11.45079952005446],[75.6637566375664,11.46261956094365],[75.64935649356494,11.467685292753288],[75.63135631356315,11.469373870023176],[75.61695616956172,11.474439601832827],[75.60975609756099,11.484571065452116],[75.60615606156063,11.504833992690706],[75.60255602556026,11.523408342659422],[75.5809558095581,11.550425578977539],[75.58455584555847,11.563934197136604],[75.53055530555307,11.693954646917575],[75.50535505355055,11.727726192315231],[75.37935379353794,11.864500951175728],[75.37215372153722,11.864500951175728],[75.35415354153542,11.857746642096203],[75.35415354153542,11.861123796635965],[75.35055350553506,11.871255260255253],[75.32535325353254,11.898272496573384],[75.30735307353075,11.93204404197104],[75.32535325353254,11.935421196510802],[75.4009540095401,11.920224001081849],[75.4009540095401,11.926978310161388],[75.38655386553867,11.935421196510802],[75.38295382953831,11.94555266013009],[75.38655386553867,11.959061278289155],[75.39375393753937,11.974258473718109],[75.37935379353794,11.969192741908458],[75.36135361353615,11.950618391939742],[75.35055350553506,11.947241237399979],[75.33255332553327,11.948929814669867],[75.31455314553148,11.955684123749393],[75.30375303753038,11.965815587368695],[75.28935289352896,11.981012782797634],[75.27855278552786,12.002964287306114],[75.28215282152823,12.011407173655527],[75.31455314553148,12.00803001911575],[75.3289532895329,12.013095750925402],[75.32535325353254,12.023227214544704],[75.30735307353075,12.041801564513406],[75.30375303753038,12.043490141783295],[75.26415264152644,12.013095750925402],[75.26055260552607,11.997898555496462],[75.2749527495275,11.96750416463857],[75.24615246152462,12.002964287306114],[75.23895238952392,12.00803001911575],[75.23175231752319,12.009718596385639],[75.22815228152282,12.01478432819529],[75.22455224552246,12.019850060004941],[75.2209522095221,12.021538637274816],[75.21735217352173,12.021538637274816],[75.21015210152103,12.016472905465164],[75.20655206552067,12.011407173655527],[75.21015210152103,12.00803001911575],[75.19215192151921,12.021538637274816],[75.18495184951851,12.041801564513406],[75.18135181351815,12.07726168718095],[75.14535145351454,12.161690550675075],[75.13095130951311,12.207282136961908],[75.13815138151384,12.241053682359563],[75.13815138151384,12.247807991439103],[75.12735127351274,12.246119414169215],[75.12015120151202,12.23936510508969],[75.11295112951132,12.230922218740275],[75.10575105751059,12.220790755120973],[75.10575105751059,12.234299373280038],[75.10575105751059,12.246119414169215],[75.09855098550986,12.269759495947568],[75.08415084150843,12.305219618615112],[75.01935019350194,12.414977141157493],[75.01215012150124,12.435240068396084],[75.00855008550087,12.443682954745498],[75.00495004950051,12.448748686555135],[74.99774997749978,12.455502995634674],[74.99054990549905,12.4622573047142],[74.99054990549905,12.470700191063614],[74.98694986949872,12.490963118302204],[74.97614976149762,12.507848891001032],[74.95454954549547,12.536554704589037],[74.87894878948791,12.725675358815906],[74.87174871748718,12.742561131514734],[74.85734857348575,12.759446904213561],[74.85374853748539,12.764512636023198],[74.85374853748539,12.786464140531677],[74.85374853748539,12.79659560415098],[74.8429484294843,12.808415645040157],[74.8357483574836,12.815169954119682],[74.82854828548287,12.825301417738984],[74.8249482494825,12.83881003589805],[74.85014850148502,12.825301417738984],[74.85734857348575,12.825301417738984],[74.86814868148682,12.830367149548636],[74.88254882548827,12.847252922247463],[74.88974889748897,12.8523186540571],[74.90054900549006,12.854007231326989],[74.91854918549186,12.857384385866752],[74.93294932949331,12.865827272216166],[74.94014940149401,12.87933589037523],[74.89334893348934,12.870893004025817],[74.85014850148502,12.857384385866752],[74.81774817748177,12.862450117676403],[74.7709477094771,13.053259349173146],[74.78174781747819,13.085342317300913],[74.77454774547746,13.093785203650327],[74.7709477094771,13.098850935459978],[74.76374763747637,13.119113862698569],[74.76014760147604,13.142753944476922],[74.76014760147604,13.154573985366113],[74.7529475294753,13.15963971717575],[74.74934749347494,13.171459758064941],[74.73854738547385,13.22211707616141],[74.73494734947352,13.262642930638606],[74.71334713347133,13.331874598703791],[74.70614706147063,13.34876037140262],[74.69534695346954,13.365646144101447],[74.68814688146881,13.380843339530387],[74.69534695346954,13.392663380419563],[74.68814688146881,13.409549153118391],[74.68454684546847,13.443320698516047],[74.68094680946811,13.468649357564288],[74.69174691746917,13.439943543976284],[74.69534695346954,13.414614884928042],[74.709747097471,13.412926307658168],[74.70254702547027,13.419680616737693],[74.70254702547027,13.443320698516047],[74.70254702547027,13.461895048484763],[74.67734677346775,13.526060984740297],[74.67734677346775,13.549701066518665],[74.67014670146702,13.603735539154911],[74.67374673746738,13.61893273458385],[74.67014670146702,13.622309889123613],[74.66654666546665,13.625687043663376],[74.66654666546665,13.629064198203153],[74.66654666546665,13.632441352742916],[74.67374673746738,13.629064198203153],[74.67734677346775,13.630752775473027],[74.68094680946811,13.635818507282679],[74.68094680946811,13.647638548171855],[74.68814688146881,13.647638548171855],[74.69534695346954,13.64088423909233],[74.709747097471,13.64088423909233],[74.72414724147242,13.645949970901967],[74.73494734947352,13.65439285725138],[74.72054720547206,13.652704279981506],[74.71334713347133,13.656081434521269],[74.70254702547027,13.672967207220097],[74.68814688146881,13.686475825379162],[74.68814688146881,13.691541557188813],[74.70254702547027,13.694918711728576],[74.68814688146881,13.711804484427404],[74.67734677346775,13.701673020808101],[74.65934659346595,13.659458589061032],[74.64854648546486,13.691541557188813],[74.62334623346234,13.774281843413064],[74.61614616146161,13.835070625128836],[74.59454594545946,13.872219325066254],[74.5837458374584,13.904302293194021],[74.55134551345515,13.944828147671217],[74.53694536945369,13.970156806719459],[74.50454504545047,14.01068266119664],[74.49374493744938,14.03094558843523],[74.49374493744938,14.041077052054519],[74.49734497344974,14.061339979293123],[74.49374493744938,14.071471442912411],[74.49014490144901,14.079914329261825],[74.47934479344795,14.095111524690765],[74.47574475744759,14.105242988310067],[74.47214472144722,14.160966038216202],[74.46854468544686,14.181228965454793],[74.43974439744397,14.220066242662085],[74.42894428944291,14.24032916990069],[74.43254432544327,14.263969251679043],[74.4469444694447,14.25383778805974],[74.47214472144722,14.248772056250104],[74.49374493744938,14.247083478980215],[74.50814508145083,14.250460633519978],[74.5009450094501,14.257214942599504],[74.43614436144361,14.279166447107983],[74.42894428944291,14.284232178917634],[74.41454414544145,14.301117951616462],[74.41094410944109,14.345020960633406],[74.40374403744039,14.363595310602122],[74.39654396543966,14.372038196951536],[74.3929439294393,14.385546815110601],[74.3929439294393,14.410875474158843],[74.3929439294393,14.419318360508242],[74.38574385743857,14.424384092317894],[74.38214382143823,14.431138401397433],[74.3749437494375,14.466598524064963],[74.35334353343535,14.50543580127227],[74.35334353343535,14.530764460320512],[74.36774367743678,14.512190110351796],[74.37854378543787,14.48517287403368],[74.38934389343893,14.4632213695252],[74.40734407344075,14.461532792255312],[74.39654396543966,14.475041410414377],[74.40014400144003,14.480107142224028],[74.42894428944291,14.476729987684266],[74.38574385743857,14.524010151240972],[74.37134371343714,14.530764460320512],[74.3749437494375,14.534141614860275],[74.37854378543787,14.5408959239398],[74.37854378543787,14.544273078479563],[74.36774367743678,14.549338810289214],[74.36414364143641,14.549338810289214],[74.35694356943571,14.544273078479563],[74.35694356943571,14.557781696638628],[74.35694356943571,14.56284742844828],[74.35694356943571,14.571290314797693],[74.34254342543426,14.56284742844828],[74.34254342543426,14.551027387559103],[74.34254342543426,14.537518769400037],[74.3389433894339,14.524010151240972],[74.32454324543247,14.517255842161447],[74.31014310143101,14.518944419431335],[74.29934299342995,14.52738730578075],[74.30294302943031,14.537518769400037],[74.29574295742958,14.564536005718168],[74.29574295742958,14.586487510226632],[74.30654306543067,14.601684705655586],[74.3389433894339,14.606750437465223],[74.3389433894339,14.613504746544763],[74.32454324543247,14.618570478354414],[74.31374313743137,14.615193323814637],[74.29934299342995,14.610127592005],[74.28854288542885,14.606750437465223],[74.27414274142743,14.610127592005],[74.2669426694267,14.620259055624288],[74.2669426694267,14.632079096513465],[74.27774277742779,14.640521982862879],[74.27054270542706,14.659096332831595],[74.26334263342633,14.701310764578665],[74.25254252542527,14.718196537277493],[74.23454234542345,14.733393732706432],[74.22014220142202,14.738459464516083],[74.20934209342093,14.731705155436543],[74.1949419494195,14.716507960007604],[74.18054180541807,14.741836619055846],[74.17334173341735,14.75027950540526],[74.16974169741698,14.75027950540526],[74.15894158941592,14.748590928135371],[74.15174151741519,14.75027950540526],[74.14814148141483,14.762099546294436],[74.14454144541446,14.763788123564325],[74.11214112141121,14.780673896263153],[74.09774097740979,14.794182514422204],[74.09054090540906,14.811068287121032],[74.10854108541088,14.802625400771618],[74.11574115741158,14.807691132581269],[74.11574115741158,14.821199750740334],[74.11934119341194,14.831331214359622],[74.13014130141303,14.838085523439162],[74.1409414094141,14.838085523439162],[74.15174151741519,14.834708368899399],[74.15894158941592,14.826265482549985],[74.16974169741698,14.844839832518687],[74.18054180541807,14.856659873407864],[74.19134191341914,14.863414182487404],[74.20934209342093,14.866791337027166],[74.21654216542166,14.865102759757278],[74.22734227342275,14.863414182487404],[74.23454234542345,14.865102759757278],[74.23454234542345,14.876922800646454],[74.23094230942311,14.880299955186231],[74.22014220142202,14.881988532456106],[74.2129421294213,14.887054264265757],[74.20934209342093,14.900562882424822],[74.19854198541987,14.89043141880552],[74.16614166141662,14.876922800646454],[74.15894158941592,14.870168491566929],[74.15534155341555,14.861725605217515],[74.1409414094141,14.853282718868101],[74.12654126541267,14.846528409788576],[74.11214112141121,14.846528409788576],[74.10134101341015,14.856659873407864],[74.09054090540906,14.887054264265757],[74.079740797408,14.893808573345282],[74.07614076140763,14.898874305154933],[74.03654036540365,14.920825809663413],[74.02934029340295,14.936023005092352],[74.02934029340295,14.949531623251417],[74.03654036540365,14.97992601410931],[74.03294032940332,14.99512320953825],[74.01854018540186,15.001877518617775],[74.0077400774008,15.005254673157552],[73.9969399693997,15.010320404967189],[73.97173971739718,15.05760056852391],[73.96453964539646,15.064354877603435],[73.91413914139142,15.079552073032389],[73.92133921339214,15.108257886620393],[73.92853928539287,15.12007792750957],[73.93573935739357,15.130209391128872],[73.95733957339576,15.143718009287923],[73.96093960939609,15.152160895637337],[73.95373953739539,15.169046668336165],[73.94653946539466,15.160603781986751],[73.89253892538926,15.34297012713408],[73.8817388173882,15.354790168023271],[73.8709387093871,15.359855899832908],[73.84933849338495,15.359855899832908],[73.82773827738279,15.36492163164256],[73.80973809738097,15.378430249801625],[73.78453784537845,15.407136063389629],[73.83853838538386,15.403758908849866],[73.84933849338495,15.403758908849866],[73.86013860138601,15.407136063389629],[73.8709387093871,15.402070331579978],[73.88533885338853,15.398693177040215],[73.89973899738999,15.407136063389629],[73.93213932139324,15.395316022500452],[73.94653946539466,15.38518455888115],[73.95373953739539,15.366610208912448],[73.95733957339576,15.366610208912448],[73.96093960939609,15.368298786182322],[73.96453964539646,15.36998736345221],[73.96813968139682,15.373364517991973],[73.96093960939609,15.380118827071499],[73.93573935739357,15.410513217929392],[73.92853928539287,15.417267527008931],[73.88533885338853,15.435841876977634],[73.87813878138783,15.435841876977634],[73.86373863738638,15.434153299707745],[73.86013860138601,15.435841876977634],[73.85293852938531,15.437530454247522],[73.84573845738458,15.44766191786681],[73.84213842138422,15.449350495136699],[73.80613806138064,15.452727649676461],[73.79533795337954,15.449350495136699],[73.79533795337954,15.461170536025875],[73.79893798937991,15.47467915418494],[73.80973809738097,15.488187772343991],[73.8169381693817,15.496630658693405],[73.82773827738279,15.501696390503056],[73.8709387093871,15.51013927685247],[73.86373863738638,15.51689358593201],[73.86013860138601,15.521959317741647],[73.86013860138601,15.525336472281424],[73.86733867338674,15.53209078136095],[73.86733867338674,15.5371565131706],[73.79533795337954,15.500007813233182],[73.78813788137882,15.491564926883768],[73.76653766537666,15.496630658693405],[73.75213752137523,15.513516431392233],[73.7557375573756,15.5371565131706],[73.74133741337414,15.560796594948954],[73.73773737737378,15.570928058568256],[73.73413734137341,15.586125253997196],[73.73773737737378,15.597945294886372],[73.74133741337414,15.604699603965898],[73.7449374493745,15.608076758505675],[73.74853748537487,15.616519644855089],[73.75933759337593,15.631716840284028],[73.78813788137882,15.641848303903316],[73.83853838538386,15.653668344792507],[73.83853838538386,15.660422653872033],[73.80253802538027,15.662111231141921],[73.78453784537845,15.658734076602144],[73.77733777337775,15.65029119025273],[73.76653766537666,15.646914035712967],[73.73413734137341,15.624962531204503],[73.72693726937271,15.619896799394851],[73.71973719737198,15.626651108474377],[73.70533705337056,15.643536881173205],[73.69813698136983,15.662111231141921],[73.6909369093691,15.694194199269688],[73.68733687336874,15.704325662888976],[73.68733687336874,15.71276854923839],[73.70173701737019,15.722900012857693],[73.6909369093691,15.724588590127581],[73.67293672936731,15.726277167397456],[73.65493654936552,15.729654321937218],[73.64773647736479,15.736408631016758],[73.64413644136442,15.749917249175823],[73.64773647736479,15.792131680922878],[73.64053640536406,15.81746033997112],[73.60453604536048,15.881626276226669],[73.58653586535866,15.903577780735148],[73.52893528935292,15.94916936702198],[73.5109351093511,15.967743716990682],[73.48933489334894,15.993072376038924],[73.48573485734858,16.015023880547403],[73.51453514535146,16.016712457817277],[73.51453514535146,16.02515534416669],[73.50013500135003,16.02515534416669],[73.48213482134821,16.02853249870647],[73.47133471334715,16.036975385055868],[73.46773467734678,16.04879542594506],[73.46413464134642,16.05217258048482],[73.45693456934569,16.053861157754696],[73.44973449734499,16.058926889564347],[73.44613446134463,16.06905835318365],[73.45333453334536,16.0741240849933],[73.45693456934569,16.079189816802938],[73.46053460534606,16.085944125882477],[73.46053460534606,16.14504433032836],[73.46413464134642,16.160241525757314],[73.47133471334715,16.168684412106728],[73.47853478534788,16.177127298456142],[73.48933489334894,16.18894733934532],[73.46413464134642,16.182193030265793],[73.45333453334536,16.16699583483684],[73.44973449734499,16.143355753058486],[73.44613446134463,16.112961362200593],[73.4389343893439,16.16193010302719],[73.4389343893439,16.202455957504384],[73.43533435334353,16.217653152933323],[73.43173431734317,16.21934173020321],[73.42453424534247,16.215964575663435],[73.42093420934211,16.215964575663435],[73.41373413734138,16.22440746201285],[73.41013410134101,16.23116177109239],[73.40653406534065,16.25142469833098],[73.3777337773378,16.33247640728534],[73.3777337773378,16.337542139094992],[73.3777337773378,16.35611648906371],[73.37413374133743,16.35949364360347],[73.35973359733597,16.367936529952885],[73.35973359733597,16.38144514811195],[73.36333363333634,16.389888034461364],[73.37413374133743,16.394953766271],[73.3849338493385,16.40170807535054],[73.3669336693367,16.408462384430067],[73.35253352533528,16.41859384804937],[73.34173341733418,16.43210246620842],[73.33453334533345,16.467562588875964],[73.32013320133203,16.509777020623034],[73.3129331293313,16.518219906972448],[73.30573305733057,16.5232856387821],[73.30213302133023,16.533417102401387],[73.30213302133023,16.555368606909866],[73.30573305733057,16.56381149325928],[73.31653316533166,16.55705718417974],[73.32373323733239,16.548614297830326],[73.32373323733239,16.545237143290564],[73.34533345333455,16.5232856387821],[73.35613356133561,16.519908484242322],[73.3777337773378,16.518219906972448],[73.37053370533707,16.52159706151221],[73.36333363333634,16.524974216051973],[73.35613356133561,16.530039947861624],[73.35253352533528,16.538482834211038],[73.35613356133561,16.54354856602069],[73.36333363333634,16.553680029639978],[73.37053370533707,16.55874576144963],[73.35253352533528,16.560434338719517],[73.33813338133382,16.565500070529154],[73.32373323733239,16.575631534148457],[73.31653316533166,16.590828729577396],[73.31653316533166,16.597583038656936],[73.3129331293313,16.59927161592681],[73.31653316533166,16.59927161592681],[73.32373323733239,16.60602592500635],[73.32733327333275,16.607714502276224],[73.35973359733597,16.62122312043529],[73.35973359733597,16.60433734773646],[73.36333363333634,16.597583038656936],[73.3669336693367,16.59927161592681],[73.37053370533707,16.609403079546112],[73.3669336693367,16.627977429514814],[73.35253352533528,16.634731738594354],[73.33813338133382,16.63135458405459],[73.32373323733239,16.62122312043529],[73.3129331293313,16.644863202213642],[73.30933309333093,16.651617511293182],[73.3129331293313,16.658371820372707],[73.32013320133203,16.670191861261884],[73.32373323733239,16.678634747611298],[73.32013320133203,16.692143365770363],[73.31653316533166,16.700586252119777],[73.29853298532987,16.712406293008954],[73.29133291332914,16.739423529327084],[73.2949329493295,16.76812934291509],[73.30573305733057,16.79345800196333],[73.30213302133023,16.81372092920192],[73.29853298532987,16.805278042852507],[73.28773287732878,16.820475238281446],[73.27333273332735,16.84918105186945],[73.26973269732699,16.87619828818758],[73.28053280532805,16.888018329076758],[73.28053280532805,16.89139548361652],[73.26973269732699,16.92854418355394],[73.26973269732699,16.945429956252767],[73.27333273332735,16.95893857441183],[73.28773287732878,16.984267233460073],[73.26253262532626,16.997775851619124],[73.25533255332553,17.00621873796854],[73.26253262532626,17.01803877885773],[73.2517325173252,17.03154739701678],[73.2517325173252,17.041678860636083],[73.2589325893259,17.043367437905957],[73.26973269732699,17.03154739701678],[73.27693276932771,17.055187478795148],[73.27693276932771,17.0788275605735],[73.26613266132662,17.10077906508198],[73.25533255332553,17.12104199232057],[73.26253262532626,17.134550610479636],[73.2589325893259,17.149747805908575],[73.25533255332553,17.164945001337514],[73.23733237332374,17.19871654673517],[73.23733237332374,17.22066805124365],[73.21933219332195,17.252751019371416],[73.21573215732158,17.267948214800356],[73.21213212132122,17.274702523879895],[73.19413194131943,17.293276873848598],[73.1869318693187,17.306785492007663],[73.20493204932049,17.29834260565825],[73.21573215732158,17.286522564769072],[73.23013230132301,17.279768255689547],[73.24813248132483,17.284833987499184],[73.23373233732337,17.30171976019801],[73.20853208532085,17.354065655564384],[73.19773197731979,17.369262850993323],[73.1689316893169,17.389525778231913],[73.16533165331654,17.40134581912109],[73.16533165331654,17.41316586001028],[73.17613176131763,17.426674478169332],[73.1869318693187,17.441871673598285],[73.17253172531727,17.457068869027225],[73.17973179731797,17.477331796265815],[73.16533165331654,17.502660455314057],[73.1329313293133,17.539809155251476],[73.1257312573126,17.556694927950304],[73.12933129331293,17.565137814299717],[73.13653136531366,17.566826391569606],[73.15093150931511,17.566826391569606],[73.16173161731618,17.57020354610937],[73.20133201332015,17.587089318808196],[73.1869318693187,17.592155050617833],[73.15453154531545,17.59553220515761],[73.14013140131402,17.600597936967247],[73.12933129331293,17.61072940058655],[73.12213122131223,17.62592659601549],[73.11853118531187,17.642812368714317],[73.1257312573126,17.654632409603494],[73.11853118531187,17.663075295952908],[73.11133111331114,17.6748953368421],[73.10413104131041,17.68840395500115],[73.10773107731077,17.700223995890326],[73.11853118531187,17.712044036779517],[73.12213122131223,17.723864077668694],[73.12213122131223,17.73568411855787],[73.1149311493115,17.747504159447047],[73.11133111331114,17.75763562306635],[73.10773107731077,17.786341436654354],[73.10053100531007,17.796472900273642],[73.08613086130862,17.81335867297247],[73.07893078930789,17.825178713861646],[73.07533075330755,17.857261681989428],[73.06453064530646,17.87752460922802],[73.01773017730179,17.951822009102855],[73.01773017730179,17.972084936341446],[73.03573035730358,17.992347863580036],[73.01773017730179,17.992347863580036],[73.0069300693007,18.00079074992945],[73.0069300693007,18.012610790818627],[73.01053010530106,18.026119408977692],[73.02133021330215,18.036250872596995],[73.03213032130321,18.04131660440663],[73.0429304293043,18.049759490756045],[73.0429304293043,18.066645263454873],[73.03213032130321,18.06326810891511],[73.02133021330215,18.05820237710546],[73.01413014130142,18.049759490756045],[73.01053010530106,18.039628027136757],[72.9997299973,18.051448068025934],[72.9889298892989,18.066645263454873],[72.98172981729817,18.08015388161394],[72.98172981729817,18.081842458883827],[72.98532985329854,18.086908190693464],[72.9889298892989,18.095351077042878],[72.98532985329854,18.10379396339229],[72.97812978129781,18.112236849741706],[72.97452974529747,18.118991158821245],[72.96732967329675,18.196665713235845],[72.95652956529565,18.216928640474435],[72.92772927729277,18.223682949553975],[72.9349293492935,18.243945876792566],[72.93852938529386,18.25070018587209],[72.9349293492935,18.257454494951617],[72.9349293492935,18.26589738130103],[72.9349293492935,18.276028844920333],[72.93852938529386,18.286160308539635],[72.95292952929529,18.281094576729984],[72.95652956529565,18.274340267650445],[72.96012960129602,18.26589738130103],[72.96372963729638,18.255765917681742],[72.97092970929711,18.243945876792566],[72.97812978129781,18.242257299522677],[72.98172981729817,18.243945876792566],[72.99612996129963,18.24563445406244],[73.01413014130142,18.243945876792566],[73.03213032130321,18.237191567713026],[73.05013050130503,18.227060104093738],[73.06453064530646,18.21017433139491],[73.04653046530467,18.201731445045496],[73.04653046530467,18.18822282688643],[73.05733057330573,18.18484567234667],[73.07173071730719,18.20342002231537],[73.07533075330755,18.223682949553975],[73.06453064530646,18.257454494951617],[73.07173071730719,18.27265169038057],[73.05733057330573,18.281094576729984],[73.0429304293043,18.28278315399986],[73.01413014130142,18.279405999460096],[72.99612996129963,18.28278315399986],[72.97812978129781,18.29460319488905],[72.96732967329675,18.30980039031799],[72.97452974529747,18.32837474028669],[72.96012960129602,18.32837474028669],[72.94932949329495,18.333440472096342],[72.9349293492935,18.35539197660482],[72.92772927729277,18.35708055387471],[72.92412924129243,18.35708055387471],[72.9169291692917,18.35708055387471],[72.91332913329134,18.360457708414472],[72.90972909729098,18.368900594763886],[72.90972909729098,18.37227774930365],[72.91332913329134,18.3773434811133],[72.91332913329134,18.385786367462714],[72.90972909729098,18.399294985621765],[72.90252902529025,18.40773787197118],[72.89892898928991,18.41786933559048],[72.89172891728919,18.429689376479658],[72.88812888128882,18.441509417368835],[72.89172891728919,18.48034669457614],[72.89532895328955,18.50229819908462],[72.90612906129061,18.524249703593085],[72.92412924129243,18.536069744482262],[72.94572945729459,18.5326925899425],[72.96012960129602,18.51749539451356],[72.9889298892989,18.47021523095684],[73.01053010530106,18.44995230371825],[73.01413014130142,18.47021523095684],[73.00333003330033,18.48034669457614],[72.9889298892989,18.49047815819543],[72.98172981729817,18.509052508164146],[72.97812978129781,18.524249703593085],[72.97092970929711,18.541135476291913],[72.96012960129602,18.55464409445098],[72.94932949329495,18.55970982626063],[72.92052920529207,18.55464409445098],[72.90972909729098,18.55970982626063],[72.90612906129061,18.576595598959457],[72.8809288092881,18.635695803405355],[72.8629286292863,18.649204421564406],[72.85572855728557,18.681287389692187],[72.85212852128521,18.72012466689948],[72.85212852128521,18.769093407726075],[72.85572855728557,18.785979180424903],[72.86652866528667,18.799487798583968],[72.8809288092881,18.807930684933382],[72.88812888128882,18.806242107663493],[72.90252902529025,18.799487798583968],[72.91332913329134,18.799487798583968],[72.92772927729277,18.826505034902098],[72.93852938529386,18.816373571282796],[72.97452974529747,18.779224871345377],[72.96732967329675,18.76065052137666],[72.97092970929711,18.74714190321761],[72.98172981729817,18.737010439598308],[72.99612996129963,18.730256130518782],[72.9889298892989,18.753896212297136],[72.99252992529927,18.779224871345377],[73.00333003330033,18.801176375853856],[73.01773017730179,18.812996416743033],[72.9889298892989,18.82481645763221],[72.98172981729817,18.833259343981624],[72.97452974529747,18.848456539410563],[72.97452974529747,18.855210848490103],[72.97812978129781,18.863653734839517],[72.98172981729817,18.87209662118893],[72.97812978129781,18.875473775728693],[72.97092970929711,18.873785198458805],[72.96732967329675,18.87209662118893],[72.96372963729638,18.868719466649154],[72.96012960129602,18.86534231210939],[72.94572945729459,18.858588003029865],[72.9169291692917,18.870408043919042],[72.89532895328955,18.894048125697395],[72.91332913329134,18.9227539392854],[72.92772927729277,18.910933898396223],[72.9349293492935,18.921065362015526],[72.93852938529386,18.94808259833364],[72.94932949329495,18.95145975287342],[72.96372963729638,18.94808259833364],[72.97812978129781,18.94808259833364],[72.9889298892989,18.96496837103247],[72.95292952929529,18.96496837103247],[72.95292952929529,18.97172268011201],[72.96732967329675,18.973411257381883],[72.99252992529927,18.981854143731297],[73.0429304293043,18.995362761890362],[73.04653046530467,18.995362761890362],[73.05733057330573,19.015625689128953],[73.03933039330394,19.01731426639884],[73.01053010530106,19.008871380049428],[72.9889298892989,18.998739916430125],[72.98532985329854,19.010559957319302],[72.9889298892989,19.037577193637432],[72.98172981729817,19.046020079986846],[72.99252992529927,19.067971584495325],[72.98532985329854,19.07472589357485],[72.97452974529747,19.078103048114613],[72.96732967329675,19.09161166627368],[72.97452974529747,19.162531911608752],[72.96732967329675,19.162531911608752],[72.94932949329495,19.12707178894121],[72.9349293492935,19.11525174805203],[72.9349293492935,19.0797916253845],[72.92772927729277,19.066283007225437],[72.94212942129423,19.05446296633626],[72.9349293492935,19.03420003909767],[72.89172891728919,18.9919856073506],[72.89172891728919,19.002117070969888],[72.88452884528846,19.025757152748255],[72.87012870128703,19.01224853458919],[72.85212852128521,18.98691987554095],[72.83772837728378,18.959902639222832],[72.82692826928269,18.917688207475763],[72.81972819728199,18.90249101204681],[72.81252812528126,18.897425280237172],[72.80172801728017,18.90924532112635],[72.80172801728017,18.921065362015526],[72.80532805328053,18.931196825634814],[72.8089280892809,18.943016866524005],[72.80172801728017,18.958214061952944],[72.79452794527947,18.958214061952944],[72.7909279092791,18.95145975287342],[72.78732787327874,18.946394021063767],[72.77652776527765,18.936262557444465],[72.76932769327695,18.94808259833364],[72.77652776527765,18.959902639222832],[72.79452794527947,18.98523129827106],[72.80172801728017,19.000428493700014],[72.80532805328053,19.010559957319302],[72.80172801728017,19.040954348177195],[72.81252812528126,19.035888616367544],[72.81612816128163,19.03251146182778],[72.82332823328235,19.042642925447083],[72.82332823328235,19.05277438906637],[72.81972819728199,19.062905852685674],[72.8089280892809,19.066283007225437],[72.82332823328235,19.09667739808333],[72.82332823328235,19.108497438972506],[72.81972819728199,19.118628902591794],[72.81252812528126,19.13720325256051],[72.8089280892809,19.145646138909925],[72.81252812528126,19.15408902525934],[72.82332823328235,19.164220488878627],[72.82332823328235,19.169286220688278],[72.81972819728199,19.176040529767818],[72.81252812528126,19.176040529767818],[72.80532805328053,19.17266337522804],[72.79812798127983,19.1574661797991],[72.7909279092791,19.150711870719576],[72.78372783727838,19.150711870719576],[72.78012780127801,19.15915475706899],[72.78372783727838,19.169286220688278],[72.80172801728017,19.211500652435348],[72.81972819728199,19.240206466023352],[72.83052830528305,19.25202650691253],[72.81612816128163,19.253715084182417],[72.80172801728017,19.238517888753478],[72.7909279092791,19.216566384245],[72.77652776527765,19.204746343355822],[72.77292772927731,19.265535125071594],[72.77652776527765,19.29930667046925],[72.78372783727838,19.31450386589819],[72.83772837728378,19.31956959770784],[72.86652866528667,19.316192443168077],[72.88452884528846,19.295929515929487],[72.89892898928991,19.290863784119836],[72.93132931329313,19.285798052310184],[72.94572945729459,19.289175206849947],[72.96012960129602,19.2942409386596],[72.97092970929711,19.2942409386596],[72.9889298892989,19.27904374323066],[73.01053010530106,19.225009270594413],[73.02493024930251,19.204746343355822],[73.05013050130503,19.218254961514873],[73.02853028530285,19.228386425134175],[73.02853028530285,19.243583620563115],[73.02853028530285,19.25878081599207],[73.01773017730179,19.265535125071594],[73.01413014130142,19.27228943415112],[73.00333003330033,19.285798052310184],[72.9889298892989,19.300995247739138],[72.97092970929711,19.307749556818663],[72.9169291692917,19.302683825009012],[72.89892898928991,19.307749556818663],[72.88452884528846,19.316192443168077],[72.85572855728557,19.33983252494643],[72.83772837728378,19.348275411295845],[72.81972819728199,19.329701061327142],[72.80172801728017,19.331389638597017],[72.78732787327874,19.344898256756082],[72.76212762127622,19.380358379423612],[72.75852758527586,19.388801265773026],[72.7477274772748,19.44452431567916],[72.7477274772748,19.468164397457514],[72.7549275492755,19.48167301561658],[72.76932769327695,19.490115901965993],[72.8809288092881,19.532330333713062],[72.85572855728557,19.540773220062476],[72.83772837728378,19.537396065522714],[72.81612816128163,19.5289531791733],[72.79452794527947,19.52726460190341],[72.78732787327874,19.530641756443174],[72.78012780127801,19.537396065522714],[72.77652776527765,19.545838951872128],[72.77652776527765,19.557658992761304],[72.76932769327695,19.566101879110718],[72.75852758527586,19.572856188190244],[72.74052740527407,19.581299074539658],[72.73332733327334,19.581299074539658],[72.7369273692737,19.56947903365048],[72.74052740527407,19.561036147301067],[72.74052740527407,19.552593260951653],[72.73332733327334,19.545838951872128],[72.7477274772748,19.534018910982937],[72.7549275492755,19.52726460190341],[72.7549275492755,19.518821715553997],[72.7477274772748,19.512067406474472],[72.74052740527407,19.515444561014235],[72.72252722527227,19.535707488252825],[72.71172711727118,19.588053383619183],[72.71892718927191,19.6066277335879],[72.70812708127082,19.650530742604843],[72.68652686526866,19.724828142479694],[72.69372693726939,19.719762410670043],[72.70092700927009,19.714696678860392],[72.70452704527045,19.706253792510978],[72.70812708127082,19.697810906161564],[72.72612726127261,19.706253792510978],[72.72612726127261,19.714696678860392],[72.71892718927191,19.728205297019457],[72.71532715327155,19.745091069718285],[72.71892718927191,19.75184537879781],[72.72612726127261,19.75184537879781],[72.72972729727297,19.755222533337573],[72.73332733327334,19.761976842417113],[72.73332733327334,19.7721083060364],[72.73332733327334,19.780551192385815],[72.72972729727297,19.79405981054488],[72.69012690126902,19.748468224258048],[72.67932679326793,19.74677964698816],[72.67572675726757,19.763665419686987],[72.67932679326793,19.800814119624405],[72.67212672126723,19.812634160513582],[72.65052650526505,19.8413399741016],[72.65052650526505,19.85147143772089],[72.65772657726578,19.86666863314983],[72.6649266492665,19.881865828578782],[72.6649266492665,19.917325951246312],[72.66132661326614,19.94096603302468],[72.6649266492665,19.952786073913856],[72.67572675726757,19.957851805723507],[72.6829268292683,19.964606114803033],[72.69372693726939,19.979803310231972],[72.70452704527045,19.99837766020069],[72.70812708127082,20.013574855629628],[72.70812708127082,20.070986482805637],[72.71172711727118,20.082806523694813],[72.72972729727297,20.130086687251534],[72.73332733327334,20.173989696268492],[72.7369273692737,20.18412115988778],[72.75132751327513,20.20438408712637],[72.7549275492755,20.214515550745674],[72.7549275492755,20.217892705285436],[72.7477274772748,20.217892705285436],[72.74412744127443,20.219581282555325],[72.74052740527407,20.22464701436496],[72.74052740527407,20.244909941603566],[72.74412744127443,20.24828709614333],[72.7477274772748,20.280370064271096],[72.7549275492755,20.295567259700036],[72.76932769327695,20.312453032398864],[72.77652776527765,20.32933880509769],[72.78012780127801,20.35297888687606],[72.78732787327874,20.35297888687606],[72.79812798127983,20.359733195955585],[72.8089280892809,20.368176082305],[72.81612816128163,20.376618968654412],[72.81972819728199,20.3867504322737],[72.82332823328235,20.417144823131594],[72.83052830528305,20.437407750370184],[72.84132841328415,20.459359254878663],[72.8809288092881,20.51170515024502],[72.88812888128882,20.53196807748361],[72.89172891728919,20.552231004722216],[72.89172891728919,20.57587108650057],[72.89172891728919,20.587691127389746],[72.88452884528846,20.607954054628337],[72.88452884528846,20.619774095517514],[72.88812888128882,20.628216981866927],[72.90252902529025,20.641725600025993],[72.90612906129061,20.65354564091517],[72.90972909729098,20.699137227202],[72.90972909729098,20.717711577170718],[72.89892898928991,20.732908772599657],[72.93852938529386,20.759926008917787],[72.94572945729459,20.759926008917787],[72.94572945729459,20.770057472537076],[72.9349293492935,20.776811781616615],[72.92772927729277,20.780188936156378],[72.92052920529207,20.786943245235904],[72.92052920529207,20.795386131585317],[72.92412924129243,20.802140440664857],[72.92412924129243,20.810583327014257],[72.92052920529207,20.82071479063356],[72.89892898928991,20.79876328612508],[72.88452884528846,20.807206172474494],[72.8809288092881,20.829157676982973],[72.88812888128882,20.852797758761326],[72.89892898928991,20.86799495419028],[72.89532895328955,20.869683531460154],[72.8809288092881,20.86630637692039],[72.8737287372874,20.86292922238063],[72.83772837728378,20.8359119860625],[72.84492844928451,20.851109181491452],[72.85572855728557,20.886569304158982],[72.86652866528667,20.896700767778285],[72.83772837728378,20.93047231317594],[72.85572855728557,20.947358085874768],[72.88812888128882,20.962555281303707],[72.88812888128882,20.982818208542298],[72.87732877328773,20.98112963127241],[72.85212852128521,20.974375322192884],[72.83412834128342,20.972686744922996],[72.82332823328235,20.982818208542298],[72.81972819728199,20.991261094891712],[72.81612816128163,20.999703981241126],[72.8089280892809,21.004769713050777],[72.79812798127983,21.00645829032065],[72.78732787327874,21.00645829032065],[72.78372783727838,21.00983544486043],[72.77292772927731,21.02334406301948],[72.76572765727659,21.038541258448433],[72.78372783727838,21.040229835718307],[72.82332823328235,21.03347552663878],[72.84492844928451,21.038541258448433],[72.84852848528487,21.04867272206772],[72.81612816128163,21.121281544672684],[72.8089280892809,21.129724431022098],[72.79812798127983,21.12803585375221],[72.7549275492755,21.109461503783507],[72.75132751327513,21.114527235593144],[72.7477274772748,21.11790439013292],[72.74052740527407,21.122970121942558],[72.7369273692737,21.11790439013292],[72.7369273692737,21.11115008105338],[72.73332733327334,21.09257573108468],[72.72972729727297,21.087509999275028],[72.70092700927009,21.074001381115963],[72.70452704527045,21.10608434924373],[72.71892718927191,21.129724431022098],[72.72972729727297,21.1482987809908],[72.71532715327155,21.163495976419753],[72.70812708127082,21.158430244610102],[72.68652686526866,21.158430244610102],[72.67572675726757,21.15336451280045],[72.67212672126723,21.144921626451037],[72.67212672126723,21.13479016283175],[72.67212672126723,21.11283865832327],[72.67212672126723,21.099330040164205],[72.6649266492665,21.097641462894316],[72.65772657726578,21.097641462894316],[72.63612636126362,21.08582142200514],[72.62892628926289,21.087509999275028],[72.61452614526146,21.10608434924373],[72.61452614526146,21.119592967402795],[72.62892628926289,21.136478740101623],[72.69372693726939,21.178693171848693],[72.71172711727118,21.193890367277632],[72.72252722527227,21.198956099087283],[72.73332733327334,21.198956099087283],[72.72252722527227,21.209087562706586],[72.68652686526866,21.220907603595762],[72.67932679326793,21.229350489945176],[72.67212672126723,21.239481953564464],[72.65772657726578,21.244547685374116],[72.64692646926471,21.25299057172353],[72.64692646926471,21.27325349896212],[72.62532625326253,21.259744880803055],[72.61812618126183,21.25299057172353],[72.60732607326074,21.266499189882595],[72.60372603726037,21.27831923077177],[72.59652596525967,21.307025044359776],[72.58932589325894,21.332353703408018],[72.58572585725858,21.34079658975743],[72.58932589325894,21.349239476106845],[72.60372603726037,21.352616630646608],[72.63972639726398,21.35768236245626],[72.64692646926471,21.36274809426591],[72.63972639726398,21.371190980615324],[72.6217262172622,21.369502403345436],[72.59292592925931,21.36274809426591],[72.57852578525785,21.367813826075547],[72.56772567725679,21.37625671242496],[72.56412564125642,21.386388176044264],[72.57492574925749,21.389765330584027],[72.63612636126362,21.406651103282854],[72.67212672126723,21.428602607791333],[72.67572675726757,21.431979762331096],[72.72972729727297,21.465751307728752],[72.7477274772748,21.452242689569687],[72.75132751327513,21.464062730458863],[72.7477274772748,21.479259925887817],[72.7369273692737,21.48263708042758],[72.6829268292683,21.465751307728752],[72.6649266492665,21.457308421379338],[72.6109261092611,21.421848298711794],[72.58212582125822,21.416782566902157],[72.58932589325894,21.431979762331096],[72.61812618126183,21.48770281223723],[72.63612636126362,21.499522853126408],[72.65052650526505,21.506277162205933],[72.69012690126902,21.54004870760359],[72.70452704527045,21.548491593953003],[72.72612726127261,21.553557325762654],[72.75132751327513,21.56537736665183],[72.77292772927731,21.58057456208077],[72.78732787327874,21.595771757509723],[72.8089280892809,21.634609034717016],[72.82332823328235,21.64474049833632],[72.83412834128342,21.64474049833632],[72.85932859328594,21.63798618925678],[72.87012870128703,21.636297611986905],[72.88812888128882,21.641363343796556],[72.9349293492935,21.658249116495384],[72.96372963729638,21.678512043733974],[73.02133021330215,21.698774970972565],[73.08613086130862,21.729169361830458],[73.10773107731077,21.73254651637022],[73.11853118531187,21.73761224817987],[73.1257312573126,21.746055134529286],[73.1329313293133,21.757875175418462],[73.1257312573126,21.766318061767876],[73.11853118531187,21.764629484497988],[73.08253082530825,21.746055134529286],[73.04653046530467,21.73254651637022],[73.03933039330394,21.730857939100332],[73.02133021330215,21.715660743671393],[73.01413014130142,21.71228358913163],[72.99252992529927,21.708906434591853],[72.94932949329495,21.688643507353262],[72.92772927729277,21.6852663528135],[72.88452884528846,21.693709239162914],[72.85932859328594,21.695397816432802],[72.84132841328415,21.688643507353262],[72.81972819728199,21.67513488919421],[72.79812798127983,21.673446311924323],[72.7549275492755,21.6852663528135],[72.73332733327334,21.686954930083388],[72.67572675726757,21.678512043733974],[72.65412654126541,21.68020062100385],[72.63612636126362,21.6852663528135],[72.61452614526146,21.6852663528135],[72.57132571325715,21.67006915738456],[72.54972549725497,21.666692002844798],[72.53532535325354,21.673446311924323],[72.52812528125281,21.695397816432802],[72.53172531725318,21.713972166401504],[72.54972549725497,21.751120866338923],[72.5569255692557,21.77476094811729],[72.56412564125642,21.838926884372825],[72.56772567725679,21.849058347992127],[72.58572585725858,21.859189811611415],[72.60012600126001,21.881141316119894],[72.61812618126183,21.925044325136838],[72.63252632526326,21.93686436602603],[72.65052650526505,21.94024152056579],[72.69012690126902,21.938552943295903],[72.70092700927009,21.946995829645317],[72.70812708127082,21.965570179614033],[72.71532715327155,21.98245595231286],[72.73332733327334,21.985833106852624],[72.73332733327334,21.994275993202038],[72.72612726127261,21.995964570471912],[72.71892718927191,21.995964570471912],[72.71532715327155,21.995964570471912],[72.70812708127082,21.994275993202038],[72.70092700927009,21.989210261392387],[72.69732697326975,21.98245595231286],[72.69732697326975,21.97570164323332],[72.69372693726939,21.97232448869356],[72.6217262172622,21.967258756883908],[72.6109261092611,21.95543871599473],[72.60372603726037,21.943618675105554],[72.58212582125822,21.928421479676615],[72.5569255692557,21.91491286151755],[72.54252542525427,21.911535706977787],[72.53172531725318,21.9199785933272],[72.50652506525066,21.96219302507427],[72.50292502925029,21.97570164323332],[72.50292502925029,21.994275993202038],[72.51732517325175,22.031424693139456],[72.52092520925211,22.05506477491781],[72.52092520925211,22.066884815806986],[72.52092520925211,22.07701627942629],[72.52092520925211,22.088836320315465],[72.53172531725318,22.10741067028418],[72.53172531725318,22.11923071117336],[72.53532535325354,22.141182215681823],[72.54252542525427,22.156379411110777],[72.5569255692557,22.176642338349367],[72.57492574925749,22.19521668831807],[72.58932589325894,22.205348151937372],[72.61452614526146,22.212102461016897],[72.63612636126362,22.210413883747023],[72.65412654126541,22.20197099739761],[72.66852668526687,22.188462379238544],[72.6829268292683,22.18170807015902],[72.69012690126902,22.18170807015902],[72.70092700927009,22.18508522469878],[72.70812708127082,22.18508522469878],[72.71892718927191,22.18170807015902],[72.72972729727297,22.176642338349367],[72.7477274772748,22.16482229746019],[72.7909279092791,22.21716819282655],[72.81252812528126,22.234053965525376],[72.84852848528487,22.240808274604916],[72.86652866528667,22.234053965525376],[72.8809288092881,22.22054534736631],[72.89892898928991,22.213791038286786],[72.9169291692917,22.223922501906088],[72.92052920529207,22.235742542795265],[72.92412924129243,22.254316892763967],[72.9169291692917,22.271202665462795],[72.90612906129061,22.281334129082097],[72.89892898928991,22.26951408819292],[72.88452884528846,22.26275977911338],[72.87012870128703,22.26275977911338],[72.85572855728557,22.271202665462795],[72.83772837728378,22.276268397272446],[72.81972819728199,22.272891242732683],[72.79812798127983,22.266136933653144],[72.78372783727838,22.25769404730373],[72.7549275492755,22.24418542914468],[72.72612726127261,22.249251160954316],[72.65772657726578,22.274579820002558],[72.64692646926471,22.274579820002558],[72.63612636126362,22.271202665462795],[72.62532625326253,22.271202665462795],[72.60732607326074,22.28302270635197],[72.59652596525967,22.28639986089175],[72.57492574925749,22.288088438161623],[72.55332553325533,22.28302270635197],[72.52092520925211,22.252628315494093],[72.50292502925029,22.240808274604916],[72.47772477724777,22.234053965525376],[72.46692466924671,22.232365388255502],[72.45612456124562,22.23743112006514],[72.45612456124562,22.245874006414553],[72.46692466924671,22.256005470033855],[72.46332463324634,22.26444835638327],[72.44892448924489,22.266136933653144],[72.4309243092431,22.256005470033855],[72.4129241292413,22.245874006414553],[72.39132391323915,22.254316892763967],[72.38772387723878,22.266136933653144],[72.38052380523806,22.28977701543151],[72.38052380523806,22.311728519939976],[72.38772387723878,22.32185998355928],[72.40572405724058,22.333680024448455],[72.40932409324094,22.353942951687046],[72.39852398523985,22.36745156984611],[72.36972369723699,22.355631528956934],[72.36252362523626,22.343811488067757],[72.34812348123481,22.323548560829167],[72.34092340923411,22.303285633590576],[72.33732337323374,22.28471128362186],[72.32652326523265,22.261071201843507],[72.30852308523086,22.25769404730373],[72.2869228692287,22.261071201843507],[72.27612276122761,22.261071201843507],[72.26172261722618,22.276268397272446],[72.26532265322655,22.288088438161623],[72.26532265322655,22.294842747241162],[72.24012240122403,22.301597056320688],[72.22212222122221,22.303285633590576],[72.20772207722078,22.2999084790508],[72.20052200522005,22.291465592701385],[72.20772207722078,22.274579820002558],[72.1609216092161,22.281334129082097],[72.15012150121501,22.277956974542334],[72.16452164521647,22.261071201843507],[72.18972189721899,22.250939738224204],[72.20772207722078,22.259382624573618],[72.24012240122403,22.288088438161623],[72.24732247322473,22.276268397272446],[72.24372243722439,22.266136933653144],[72.23652236522366,22.256005470033855],[72.2329223292233,22.24418542914468],[72.24012240122403,22.239119697335028],[72.26892268922691,22.22729965644585],[72.3049230492305,22.228988233715725],[72.31572315723159,22.18508522469878],[72.30852308523086,22.078704856696177],[72.29772297722977,22.06181908399735],[72.29412294122943,22.051687620378047],[72.29052290522907,22.053376197647935],[72.28332283322834,22.043244734028633],[72.27612276122761,22.031424693139456],[72.27612276122761,22.028047538599694],[72.25812258122582,22.01285034317074],[72.25092250922509,22.007784611361103],[72.23652236522366,22.007784611361103],[72.22212222122221,22.011161765900866],[72.21492214922151,22.007784611361103],[72.21492214922151,21.994275993202038],[72.20772207722078,21.994275993202038],[72.20052200522005,22.007784611361103],[72.19692196921969,22.004407456821326],[72.18972189721899,21.994275993202038],[72.18612186121862,21.985833106852624],[72.18252182521826,21.98245595231286],[72.17172171721717,21.97570164323332],[72.16452164521647,21.974013065963447],[72.1609216092161,21.98245595231286],[72.15012150121501,21.994275993202038],[72.13572135721358,22.004407456821326],[72.11412114121143,22.011161765900866],[72.0961209612096,22.007784611361103],[72.11772117721179,21.994275993202038],[72.12852128521286,21.984144529582736],[72.12492124921249,21.97232448869356],[72.11412114121143,21.968947334153796],[72.07812078120782,21.979078797773084],[72.08172081720818,21.974013065963447],[72.10332103321034,21.958815870534494],[72.10332103321034,21.95206156145497],[72.10332103321034,21.945307252375443],[72.0961209612096,21.943618675105554],[72.08892088920891,21.948684406915206],[72.07452074520745,21.953750138724857],[72.05652056520566,21.953750138724857],[72.03852038520387,21.946995829645317],[72.02772027720277,21.938552943295903],[72.08892088920891,21.9199785933272],[72.10332103321034,21.918290016057313],[72.14292142921431,21.925044325136838],[72.15732157321574,21.925044325136838],[72.14652146521465,21.918290016057313],[72.14652146521465,21.911535706977787],[72.1609216092161,21.904781397898248],[72.15372153721538,21.898027088818722],[72.16812168121683,21.891272779739197],[72.16812168121683,21.879452738850006],[72.1609216092161,21.865944120690955],[72.1609216092161,21.85243550253189],[72.16812168121683,21.840615461642713],[72.1609216092161,21.838926884372825],[72.13212132121322,21.845681193452364],[72.12492124921249,21.854124079801778],[72.11052110521106,21.869321275230718],[72.09972099720997,21.881141316119894],[72.07812078120782,21.89464993427896],[72.05652056520566,21.898027088818722],[72.04932049320493,21.881141316119894],[72.0529205292053,21.876075584310243],[72.06012060120602,21.87269842977048],[72.07092070920709,21.871009852500592],[72.08172081720818,21.869321275230718],[72.08532085320854,21.865944120690955],[72.10332103321034,21.835549729833062],[72.08532085320854,21.83048399802341],[72.06372063720639,21.833861152563173],[72.00252002520025,21.85750123434154],[71.99891998919989,21.854124079801778],[71.99531995319956,21.838926884372825],[71.99531995319956,21.81190964805471],[71.99531995319956,21.800089607165532],[72.00252002520025,21.78826956627634],[72.00612006120062,21.793335298085992],[72.00972009720098,21.79502387535588],[72.02052020520205,21.801778184435406],[72.02052020520205,21.79502387535588],[72.02052020520205,21.781515257196816],[72.02052020520205,21.77476094811729],[72.05652056520566,21.78489241173658],[72.07452074520745,21.78826956627634],[72.08892088920891,21.78489241173658],[72.10332103321034,21.77476094811729],[72.11772117721179,21.776449525387164],[72.16452164521647,21.793335298085992],[72.17172171721717,21.791646720816118],[72.17172171721717,21.778138102657053],[72.17532175321753,21.766318061767876],[72.19692196921969,21.757875175418462],[72.20052200522005,21.74943228906905],[72.20412204122042,21.74774371179916],[72.21492214922151,21.71228358913163],[72.21852218522187,21.70552928005209],[72.22212222122221,21.70046354824244],[72.22932229322294,21.695397816432802],[72.24012240122403,21.69202066189304],[72.25092250922509,21.69033208462315],[72.26172261722618,21.69202066189304],[72.27252272522725,21.69033208462315],[72.27972279722798,21.671757734654435],[72.2869228692287,21.66500342557491],[72.29412294122943,21.659937693765258],[72.29412294122943,21.653183384685732],[72.29772297722977,21.641363343796556],[72.29772297722977,21.634609034717016],[72.29772297722977,21.626166148367602],[72.29412294122943,21.616034684748314],[72.29052290522907,21.610968952938663],[72.27972279722798,21.60083748931936],[72.27612276122761,21.595771757509723],[72.24372243722439,21.48094850315769],[72.21852218522187,21.44548838049016],[72.16812168121683,21.391453907853915],[72.1609216092161,21.3728795578852],[72.15012150121501,21.359370939726148],[72.11772117721179,21.322222239788715],[72.10332103321034,21.31546793070919],[72.11052110521106,21.305336467089887],[72.11052110521106,21.296893580740488],[72.1069210692107,21.290139271660948],[72.0961209612096,21.288450694391074],[72.10332103321034,21.27494207623201],[72.09972099720997,21.264810612612706],[72.09252092520927,21.25805630353318],[72.09252092520927,21.25299057172353],[72.09252092520927,21.24285910810424],[72.10332103321034,21.222596180865636],[72.10332103321034,21.20571040816681],[72.09252092520927,21.192201790007758],[72.08532085320854,21.188824635467995],[72.07452074520745,21.185447480928218],[72.06732067320675,21.182070326388455],[72.06372063720639,21.17531601730893],[72.05652056520566,21.16856170822939],[71.99171991719919,21.136478740101623],[71.97371973719737,21.13310158556186],[71.9269192691927,21.129724431022098],[71.80451804518046,21.062181340226786],[71.79011790117903,21.046984144797847],[71.76131761317615,21.031786949368893],[71.74331743317435,21.02840979482913],[71.7289172891729,21.03009837209902],[71.71811718117183,21.031786949368893],[71.68211682116822,21.011524022130303],[71.63891638916391,20.996326826701363],[71.5849158491585,20.957489549494056],[71.5489154891549,20.95073524041453],[71.55611556115562,20.96593243584347],[71.56331563315635,20.972686744922996],[71.57051570515705,20.979441054002535],[71.55251552515526,20.974375322192884],[71.53811538115383,20.964243858573596],[71.49491494914949,20.928783735906052],[71.48411484114843,20.916963695016875],[71.48051480514806,20.900077922318047],[71.46251462514627,20.884880726889108],[71.37971379713798,20.859552067840866],[71.31851318513185,20.849420604221564],[71.14211142111421,20.764991740727424],[71.11691116911169,20.766680317997313],[71.10971109711099,20.759926008917787],[71.09531095310953,20.76330316345755],[71.08451084510847,20.75654885437801],[71.07371073710738,20.746417390758722],[71.06291062910631,20.739663081679197],[71.04491044910449,20.74135165894907],[71.02331023310234,20.744728813488834],[71.00891008910091,20.74135165894907],[71.00531005310054,20.73628592713942],[71.00171001710018,20.72277730898037],[70.98370983709839,20.710957268091178],[70.9729097290973,20.709268690821304],[70.83970839708397,20.702514381741764],[70.81810818108181,20.702514381741764],[70.80010800108002,20.709268690821304],[70.78570785707859,20.72277730898037],[70.7749077490775,20.727843040790006],[70.76410764107641,20.724465886250243],[70.75330753307534,20.719400154440592],[70.73890738907389,20.717711577170718],[70.73170731707319,20.72277730898037],[70.69930699306994,20.746417390758722],[70.54090540905409,20.807206172474494],[70.48330483304835,20.844354872411913],[70.46170461704617,20.849420604221564],[70.4509045090451,20.856174913301103],[70.41850418504185,20.889946458698745],[70.40050400504006,20.90345507685781],[70.33570335703357,20.927095158636163],[70.29970299702998,20.959178126763945],[70.26370263702637,20.98112963127241],[70.15210152101523,21.079067112925614],[70.05850058500585,21.149987358260688],[69.97209972099722,21.254679148993418],[69.9648996489965,21.263122035342832],[69.95769957699576,21.27325349896212],[69.91089910899109,21.31546793070919],[69.84609846098462,21.389765330584027],[69.81369813698137,21.433668339600985],[69.81009810098101,21.465751307728752],[69.78849788497885,21.469128462268515],[69.77049770497706,21.479259925887817],[69.75609756097563,21.491079966776994],[69.63009630096303,21.616034684748314],[69.5688956889569,21.64980623014597],[69.55449554495547,21.66500342557491],[69.51849518495186,21.70552928005209],[69.50049500495007,21.720726475481044],[69.47889478894791,21.75280944360881],[69.44649446494466,21.766318061767876],[69.42849428494287,21.781515257196816],[69.39609396093962,21.81528680259447],[69.39249392493926,21.8321725752933],[69.39609396093962,21.860878388881304],[69.39249392493926,21.876075584310243],[69.36729367293674,21.855812657071652],[69.35649356493565,21.85243550253189],[69.33489334893349,21.862566966151178],[69.2448924489245,21.945307252375443],[69.21249212492125,21.967258756883908],[69.19809198091983,21.979078797773084],[69.15129151291515,22.041556156758745],[69.1188911889119,22.06181908399735],[69.10449104491045,22.07701627942629],[69.09369093690938,22.098967783934768],[69.0468904689047,22.15806798838065],[69.0108901089011,22.18508522469878],[68.9928899288993,22.203659574667483],[68.98208982089821,22.235742542795265],[68.95328953289533,22.276268397272446],[68.94608946089463,22.294842747241162],[68.94248942489426,22.318482829019516],[68.94968949689499,22.335368601718343],[68.96048960489605,22.34887721987741],[68.96408964089642,22.36745156984611],[68.96768967689678,22.3877144970847],[68.97488974889751,22.40460026978353],[68.98208982089821,22.41979746521247],[68.9928899288993,22.43161750610166],[69.00729007290073,22.443437546990836],[69.0468904689047,22.463700474229427],[69.07209072090723,22.48227482419813],[69.08289082890829,22.480586246928254],[69.08649086490865,22.47214336057884],[69.08289082890829,22.460323319689664],[69.07569075690759,22.45019185607036],[69.05769057690577,22.441748969720948],[69.0468904689047,22.43161750610166],[69.06129061290613,22.407977424323292],[69.07209072090723,22.399534537973878],[69.09009090090902,22.396157383434115],[69.09729097290975,22.399534537973878],[69.11529115291154,22.407977424323292],[69.12249122491227,22.41135457886307],[69.13329133291333,22.40966600159318],[69.14049140491406,22.406288847053418],[69.14769147691479,22.40460026978353],[69.15489154891549,22.407977424323292],[69.16929169291694,22.41979746521247],[69.180091800918,22.428240351561882],[69.18729187291873,22.426551774292008],[69.20169201692019,22.41473173340283],[69.20529205292053,22.397845960704004],[69.18369183691837,22.365762992576222],[69.18369183691837,22.34887721987741],[69.16929169291694,22.328614292638804],[69.1728917289173,22.308351365400213],[69.1908919089191,22.291465592701385],[69.21249212492125,22.281334129082097],[69.21249212492125,22.274579820002558],[69.28809288092882,22.28471128362186],[69.33489334893349,22.30666278813034],[69.34569345693458,22.32523713809904],[69.36009360093601,22.328614292638804],[69.43569435694357,22.330302869908692],[69.46809468094682,22.337057178988218],[69.47889478894791,22.34212291079787],[69.48609486094861,22.34718864260752],[69.50049500495007,22.36745156984611],[69.50409504095043,22.372517301655762],[69.50769507695077,22.374205878925636],[69.5148951489515,22.375894456195525],[69.51849518495186,22.377583033465413],[69.52569525695259,22.392780228894352],[69.52209522095222,22.40460026978353],[69.51849518495186,22.416420310672706],[69.5148951489515,22.43161750610166],[69.5148951489515,22.448503278800487],[69.52209522095222,22.448503278800487],[69.52929529295295,22.4468147015306],[69.54009540095402,22.45188043334025],[69.54729547295474,22.45188043334025],[69.55809558095581,22.41135457886307],[69.56169561695617,22.391091651624464],[69.55449554495547,22.377583033465413],[69.5688956889569,22.370828724385873],[69.60129601296015,22.364074415306348],[69.61569615696158,22.355631528956934],[69.61569615696158,22.365762992576222],[69.61929619296194,22.370828724385873],[69.63009630096303,22.38433734254494],[69.6408964089641,22.375894456195525],[69.64809648096482,22.380960188005176],[69.65169651696519,22.38940307435459],[69.65889658896589,22.396157383434115],[69.66249662496625,22.399534537973878],[69.66609666096662,22.40460026978353],[69.66969669696698,22.40966600159318],[69.67329673296734,22.41135457886307],[69.68049680496807,22.40966600159318],[69.6948969489695,22.40460026978353],[69.69849698496986,22.40460026978353],[69.70929709297093,22.418108887942594],[69.72369723697238,22.465389051499315],[69.73449734497345,22.480586246928254],[69.74169741697418,22.47214336057884],[69.78849788497885,22.423174619752245],[69.79569795697958,22.418108887942594],[69.80649806498067,22.421486042482357],[69.81369813698137,22.42992892883177],[69.81729817298174,22.441748969720948],[69.8208982089821,22.45188043334025],[69.83169831698319,22.463700474229427],[69.84249842498426,22.46707762876919],[69.84969849698498,22.465389051499315],[69.86409864098641,22.465389051499315],[69.88569885698857,22.473831937848715],[69.90369903699039,22.485651978737906],[69.96129961299613,22.5346207195645],[69.97209972099722,22.541375028644026],[69.97209972099722,22.539686451374152],[69.99729997299974,22.541375028644026],[70.0009000090001,22.543063605913915],[70.02250022500226,22.55488364680309],[70.05850058500585,22.558260801342854],[70.1449014490145,22.548129337723566],[70.17730177301775,22.561637955882617],[70.18810188101881,22.578523728581445],[70.20610206102063,22.615672428518863],[70.23490234902349,22.64944397391652],[70.26730267302673,22.705167023822654],[70.31770317703177,22.777775846427602],[70.3249032490325,22.787907310046904],[70.32130321303214,22.811547391825258],[70.32130321303214,22.823367432714434],[70.3249032490325,22.82674458725421],[70.3429034290343,22.84363035995304],[70.37530375303754,22.902730564398922],[70.3861038610386,22.911173450748336],[70.40410404104043,22.91961633709775],[70.43650436504365,22.955076459765294],[70.45450454504547,22.96689650065447],[70.46170461704617,22.96689650065447],[70.47250472504726,22.96351934611471],[70.48690486904869,22.96351934611471],[70.49770497704978,22.970273655194234],[70.5049050490505,22.978716541543648],[70.5121051210512,22.995602314242475],[70.51930519305193,23.00404520059189],[70.52650526505266,23.02430812783048],[70.53010530105303,23.04625963233896],[70.5229052290523,23.069899714117312],[70.51570515705157,23.090162641355903],[70.50130501305014,23.103671259514968],[70.48330483304835,23.122245609483684],[70.4689046890469,23.12899991856321],[70.45810458104583,23.11380272313427],[70.4509045090451,23.105359836784856],[70.41130411304113,23.08678548681614],[70.40050400504006,23.068211136847438],[70.40050400504006,23.059768250498024],[70.40050400504006,23.04457105506907],[70.40410404104043,23.032751014179894],[70.41130411304113,23.022619550560606],[70.40050400504006,22.998979468782238],[70.40050400504006,22.990536582432824],[70.40410404104043,22.98209369608341],[70.40410404104043,22.96858507792436],[70.40050400504006,22.953387882495406],[70.40050400504006,22.944944996145992],[70.39330393303933,22.94156784160623],[70.3861038610386,22.938190687066466],[70.36450364503645,22.938190687066466],[70.35730357303575,22.936502109796578],[70.35370353703539,22.933124955256815],[70.34650346503466,22.931436377986927],[70.33930339303393,22.934813532526704],[70.33570335703357,22.93987926433634],[70.33210332103323,22.943256418876118],[70.3249032490325,22.944944996145992],[70.31770317703177,22.944944996145992],[70.31410314103141,22.943256418876118],[70.31050310503105,22.93987926433634],[70.30330303303035,22.938190687066466],[70.29970299702998,22.944944996145992],[70.29250292502925,22.95169930522553],[70.29250292502925,22.953387882495406],[70.2709027090271,22.958453614305057],[70.260102601026,22.971962232464122],[70.24930249302494,22.98715942789306],[70.23130231302315,23.000668046052127],[70.23130231302315,22.975339387003885],[70.22050220502206,22.958453614305057],[70.20250202502027,22.95169930522553],[70.17730177301775,22.953387882495406],[70.17010170101702,22.95169930522553],[70.16650166501665,22.948322150685755],[70.16290162901629,22.948322150685755],[70.15570155701559,22.95676503703517],[70.15210152101523,22.96183076884482],[70.14850148501486,22.96351934611471],[70.14850148501486,22.965207923384583],[70.14130141301413,22.96689650065447],[70.13050130501307,22.96858507792436],[70.12330123301234,22.975339387003885],[70.1269012690127,22.985470850623173],[70.13050130501307,22.993913736972587],[70.10890108901089,22.958453614305057],[70.11970119701198,22.953387882495406],[70.1341013410134,22.94156784160623],[70.1341013410134,22.929747800717053],[70.11970119701198,22.9246820689074],[70.06210062100621,22.917927759827876],[69.99729997299974,22.89428767804951],[69.93969939699397,22.885844791700094],[69.88569885698857,22.867270441731392],[69.85329853298535,22.86389328719163],[69.83169831698319,22.85882755538198],[69.80649806498067,22.845318937222913],[69.78129781297815,22.82674458725421],[69.75969759697597,22.808170237285495],[69.72729727297275,22.75413576464925],[69.71649716497166,22.747381455569723],[69.6948969489695,22.749070032839597],[69.65529655296555,22.760890073728774],[69.58689586895869,22.760890073728774],[69.57609576095763,22.76426722826855],[69.55809558095581,22.777775846427602],[69.54369543695438,22.78115300096738],[69.51129511295113,22.78115300096738],[69.50049500495007,22.78115300096738],[69.48969489694898,22.78453015550714],[69.48249482494825,22.787907310046904],[69.47889478894791,22.791284464586667],[69.47169471694718,22.79466161912643],[69.42489424894251,22.804793082745732],[69.40689406894069,22.813235969095146],[69.3708937089371,22.818301700904797],[69.33849338493386,22.833498896333737],[69.23769237692377,22.84194178268315],[69.20169201692019,22.852073246302453],[69.1368913689137,22.887533368969983],[69.03969039690398,22.950010727955643],[68.8668886688867,23.01924239602083],[68.69048690486906,23.1306884958331],[68.66168661686618,23.15432857761145],[68.65448654486545,23.157705732151214],[68.65088650886509,23.162771463960866],[68.65088650886509,23.17121435031028],[68.65088650886509,23.181345813929568],[68.62208622086223,23.19147727754887],[68.60768607686077,23.20667447297781],[68.60048600486004,23.225248822946526],[68.59688596885971,23.240446018375465],[68.59688596885971,23.237068863835702],[68.60768607686077,23.2269374002164],[68.61848618486187,23.245511750185116],[68.62208622086223,23.255643213804404],[68.62208622086223,23.267463254693595],[68.60408604086041,23.25902036834418],[68.57888578885789,23.255643213804404],[68.55368553685537,23.25902036834418],[68.53928539285394,23.277594718312884],[68.5608856088561,23.31643199552019],[68.56808568085683,23.318120572790065],[68.60048600486004,23.32149772732984],[68.60768607686077,23.324874881869604],[68.60408604086041,23.33331776821902],[68.59328593285935,23.340072077298544],[68.57888578885789,23.343449231838306],[68.57168571685719,23.346826386378083],[68.56808568085683,23.35358069545761],[68.56448564485646,23.360335004537134],[68.5608856088561,23.363712159076897],[68.55368553685537,23.363712159076897],[68.550085500855,23.362023581807023],[68.5428854288543,23.35864642726726],[68.53928539285394,23.35695784999737],[68.52848528485285,23.363712159076897],[68.52128521285215,23.368777890886548],[68.51408514085142,23.377220777235962],[68.51408514085142,23.387352240855265],[68.51408514085142,23.39917228174444],[68.52128521285215,23.407615168093855],[68.52848528485285,23.412680899903506],[68.53928539285394,23.410992322633618],[68.53568535685358,23.42112378625292],[68.52848528485285,23.426189518062557],[68.52128521285215,23.424500940792683],[68.51408514085142,23.417746631713143],[68.49968499684996,23.422812363522794],[68.49608496084963,23.417746631713143],[68.4888848888489,23.409303745363744],[68.47448474484744,23.404238013554092],[68.46368463684638,23.409303745363744],[68.46008460084602,23.41943520898303],[68.46008460084602,23.432943827142097],[68.46728467284674,23.446452445301162],[68.45288452884529,23.438009558951748],[68.44208442084422,23.43463240441197],[68.43128431284313,23.43632098168186],[68.4240842408424,23.446452445301162],[68.43128431284313,23.466715372539753],[68.44568445684459,23.486978299778343],[68.46728467284674,23.505552649747045],[68.48528485284854,23.51399553609646],[68.48168481684817,23.525815576985636],[68.47448474484744,23.52412699971576],[68.46728467284674,23.51906126790611],[68.46008460084602,23.520749845176],[68.45288452884529,23.525815576985636],[68.44568445684459,23.54101277241459],[68.43848438484386,23.549455658764003],[68.44208442084422,23.532569886065176],[68.44568445684459,23.515684113366348],[68.44568445684459,23.502175495207283],[68.43128431284313,23.49373260885787],[68.41328413284134,23.495421186127757],[68.40608406084061,23.508929804286822],[68.40968409684098,23.549455658764003],[68.40608406084061,23.5984243995906],[68.40968409684098,23.62206448136895],[68.42768427684277,23.632195944988254],[68.47088470884711,23.61868732682919],[68.49248492484926,23.61868732682919],[68.49248492484926,23.637261676797905],[68.48528485284854,23.640638831337668],[68.47808478084781,23.63895025406778],[68.46728467284674,23.640638831337668],[68.46728467284674,23.655836026766607],[68.47088470884711,23.65921318130637],[68.4888848888489,23.66427891311602],[68.50328503285033,23.674410376735324],[68.52488524885248,23.676098954005198],[68.53208532085321,23.679476108544975],[68.53928539285394,23.684541840354612],[68.55368553685537,23.70649334486309],[68.58248582485825,23.735199158451096],[68.60048600486004,23.74870777661016],[68.63648636486366,23.762216394769226],[68.65448654486545,23.799365094706644],[68.67248672486727,23.816250867405472],[68.67968679686797,23.817939444675346],[68.71568715687158,23.816250867405472],[68.72648726487265,23.819628021945235],[68.74448744487447,23.8331366401043],[68.75528755287553,23.836513794644063],[68.76968769687699,23.841579526453714],[68.82008820088203,23.878728226391132],[68.80568805688057,23.88379395820077],[68.78048780487805,23.87366249458148],[68.76608766087662,23.878728226391132],[68.7408874088741,23.85339956734289],[68.71928719287195,23.841579526453714],[68.69048690486906,23.836513794644063],[68.65448654486545,23.836513794644063],[68.6328863288633,23.8331366401043],[68.62208622086223,23.824693753754886],[68.60768607686077,23.79598794016688],[68.60048600486004,23.782479322007816],[68.58608586085862,23.775725012928277],[68.55368553685537,23.76897070384875],[68.53928539285394,23.760527817499337],[68.52488524885248,23.752084931149923],[68.51048510485106,23.74364204480051],[68.47448474484744,23.736887735720984],[68.44928449284492,23.72337911756192],[68.42768427684277,23.714936231212505],[68.40968409684098,23.699739035783566],[68.34128341283414,23.62375305863884],[68.35208352083521,23.616998749559315],[68.35208352083521,23.610244440479775],[68.34848348483484,23.60349013140025],[68.34128341283414,23.59673582232071],[68.32688326883269,23.586604358701422],[68.31608316083162,23.586604358701422],[68.3088830888309,23.588292935971296],[68.29448294482947,23.589981513241185],[68.22968229682297,23.588292935971296],[68.1828818288183,23.593358667780947],[68.15768157681578,23.600112976860487],[68.14328143281435,23.611933017749664],[68.15048150481505,23.632195944988254],[68.15408154081541,23.632195944988254],[68.17568175681757,23.632195944988254],[68.17928179281793,23.633884522258143],[68.1828818288183,23.647393140417194],[68.1828818288183,23.652458872226845],[68.19728197281972,23.65921318130637],[68.20808208082082,23.662590335846147],[68.21888218882191,23.65921318130637],[68.23328233282334,23.64570456314732],[68.24408244082443,23.65921318130637],[68.26208262082622,23.66090175857626],[68.27648276482765,23.66596749038591],[68.28008280082801,23.6862304176245],[68.25848258482586,23.674410376735324],[68.24048240482406,23.674410376735324],[68.22608226082261,23.68116468581485],[68.20808208082082,23.69636188124379],[68.19728197281972,23.714936231212505],[68.19728197281972,23.73351058118122],[68.19728197281972,23.753773508419812],[68.19728197281972,23.774036435658402],[68.17928179281793,23.753773508419812],[68.16848168481687,23.747019199340272],[68.1648816488165,23.757150662959575],[68.1648816488165,23.772347858388514],[68.17568175681757,23.797676517436756],[68.17928179281793,23.82807090829465],[68.1828818288183,23.836513794644063],[68.1828818288183,23.841579526453714],[68.1828818288183,23.843268103723588],[68.15768157681578,23.90574546270925],[68.15768157681578,23.87366249458148],[68.15768157681578,23.86353103096218],[68.16128161281614,23.858465299152527],[68.16848168481687,23.844956680993477],[68.1720817208172,23.839890949183825],[68.16848168481687,23.819628021945235],[68.15048150481505,23.780790744737928],[68.14328143281435,23.760527817499337],[68.14328143281435,23.74364204480051],[68.15408154081541,23.714936231212505],[68.15768157681578,23.69636188124379],[68.15048150481505,23.694673303973914],[68.12888128881289,23.70818192213298],[68.10368103681037,23.73351058118122],[68.10008100081001,23.709870499402854],[68.08208082080822,23.70818192213298],[68.06408064080642,23.72337911756192],[68.05328053280533,23.74364204480051],[68.0568805688057,23.750396353880035],[68.07128071280712,23.760527817499337],[68.07488074880749,23.76559354930899],[68.07488074880749,23.78416789927769],[68.07488074880749,23.789233631087342],[68.08208082080822,23.80611940378617],[68.08928089280894,23.809496558325932],[68.10368103681037,23.809496558325932],[68.10368103681037,23.816250867405472],[68.08928089280894,23.82638233102476],[68.07128071280712,23.841579526453714],[68.06048060480606,23.861842453692304],[68.05328053280533,23.885482535470658],[68.06048060480606,23.9108111945189],[68.06408064080642,23.922631235408076],[68.0460804608046,23.920942658138188],[68.02448024480245,23.934451276297253],[68.01368013680138,23.939517008106904],[68.04248042480427,23.851710990073002],[68.05328053280533,23.829759485564523],[68.03528035280354,23.792610785627105],[68.02448024480245,23.774036435658402],[68.01368013680138,23.76897070384875],[68.00648006480066,23.774036435658402],[68.00288002880029,23.78585647654758],[67.99927999279993,23.797676517436756],[67.99927999279993,23.80611940378617],[67.99567995679956,23.81118513559582],[67.9848798487985,23.809496558325932],[67.97407974079741,23.80443082651628],[67.97047970479704,23.802742249246407],[67.96327963279634,23.80443082651628],[67.95247952479525,23.809496558325932],[67.94167941679419,23.816250867405472],[67.93807938079382,23.82638233102476],[67.93447934479346,23.8331366401043],[67.92727927279273,23.834825217374174],[67.91647916479167,23.8331366401043],[67.90927909279094,23.836513794644063],[67.90567905679058,23.84664525826335],[67.90567905679058,23.858465299152527],[67.89847898478985,23.86690818550194],[67.89127891278915,23.87028534004172],[67.88407884078842,23.865219608232067],[67.86967869678696,23.850022412803128],[67.86607866078663,23.865219608232067],[67.86247862478626,23.902368308169486],[67.85527855278553,23.912499771788788],[67.8480784807848,23.88885969001042],[67.83727837278374,23.823005176484997],[67.83007830078301,23.809496558325932],[67.80127801278013,23.812873712865695],[67.77247772477725,23.82131659921511],[67.71847718477187,23.843268103723588],[67.72927729277293,23.834825217374174],[67.74007740077403,23.823005176484997],[67.74367743677436,23.809496558325932],[67.7328773287733,23.79598794016688],[67.7148771487715,23.79092220835723],[67.69327693276935,23.792610785627105],[67.65727657276574,23.802742249246407],[67.64647646476465,23.802742249246407],[67.63927639276395,23.80105367197652],[67.63207632076322,23.802742249246407],[67.62847628476285,23.812873712865695],[67.63207632076322,23.824693753754886],[67.63567635676358,23.8331366401043],[67.63927639276395,23.839890949183825],[67.64287642876431,23.850022412803128],[67.65007650076501,23.907434039979137],[67.65727657276574,23.919254080868313],[67.65727657276574,23.92600838994784],[67.65367653676537,23.92600838994784],[67.65007650076501,23.927696967217727],[67.65007650076501,23.9293855444876],[67.65007650076501,23.93276269902738],[67.63927639276395,23.91587692632855],[67.63567635676358,23.87366249458148],[67.62847628476285,23.856776721882653],[67.61407614076143,23.850022412803128],[67.59967599675997,23.85339956734289],[67.5888758887589,23.86690818550194],[67.5888758887589,23.885482535470658],[67.57447574475745,23.871973917311593],[67.56727567275675,23.877039649121244],[67.55647556475566,23.88885969001042],[67.54567545675457,23.898991153629723],[67.53127531275314,23.898991153629723],[67.53127531275314,23.89054826728031],[67.5348753487535,23.880416803661006],[67.54567545675457,23.87028534004172],[67.49167491674919,23.88379395820077],[67.47727477274773,23.892236844550183],[67.48807488074883,23.892236844550183],[67.49527495274953,23.892236844550183],[67.50247502475025,23.892236844550183],[67.51327513275135,23.898991153629723],[67.52047520475205,23.907434039979137],[67.53127531275314,23.9293855444876],[67.54207542075423,23.939517008106904],[67.53127531275314,23.93613985356714],[67.52047520475205,23.927696967217727],[67.50967509675098,23.922631235408076],[67.49887498874989,23.92600838994784],[67.49527495274953,23.93613985356714],[67.49887498874989,23.95133704899608],[67.50607506075062,23.97328855350456],[67.4628746287463,23.981731439853974],[67.45207452074521,23.9884857489335],[67.46647466474667,24.022257294331155],[67.47727477274773,24.032388757950457],[67.49167491674919,24.027323026140806],[67.52047520475205,24.045897376109508],[67.53127531275314,24.054340262458922],[67.53127531275314,24.069537457887876],[67.50967509675098,24.052651685189048],[67.48807488074883,24.054340262458922],[67.46647466474667,24.064471726078224],[67.44127441274415,24.069537457887876],[67.38367383673838,24.066160303348113],[67.3548735487355,24.07122603515775],[67.34047340473407,24.086423230586703],[67.3368733687337,24.11850619871447],[67.32607326073261,24.143834857762712],[67.3008730087301,24.186049289509782],[67.29727297272973,24.199557907668833],[67.29367293672937,24.213066525827898],[67.29367293672937,24.262035266654493],[67.29007290072903,24.270478153003907],[67.27927279272794,24.28060961662321],[67.2828728287283,24.287363925702735],[67.29007290072903,24.299183966591926],[67.29367293672937,24.30256112113169],[67.28647286472867,24.329578357449805],[67.30447304473046,24.34308697560887],[67.3368733687337,24.346464130148632],[67.36207362073623,24.344775552878758],[67.3440734407344,24.353218439228172],[67.32607326073261,24.35828417103781],[67.2828728287283,24.35828417103781],[67.27207272072721,24.36841563465711],[67.27207272072721,24.395432870975228],[67.28647286472867,24.439335879992186],[67.27927279272794,24.432581570912646],[67.27207272072721,24.42751583910301],[67.25767257672578,24.419072952753595],[67.25767257672578,24.444401611801837],[67.24687246872469,24.46804169358019],[67.23247232472326,24.48830462081878],[67.2108721087211,24.50856754805737],[67.23247232472326,24.5254533207562],[67.22527225272253,24.532207629835725],[67.20367203672038,24.5355847843755],[67.19287192871928,24.547404825264678],[67.18927189271895,24.560913443423743],[67.18567185671859,24.576110638852683],[67.18207182071822,24.589619257011748],[67.20007200072001,24.584553525202097],[67.2180721807218,24.582864947932208],[67.23607236072363,24.584553525202097],[67.25407254072542,24.589619257011748],[67.22527225272253,24.606505029710576],[67.20727207272074,24.6132593387901],[67.18927189271895,24.618325070599752],[67.17127171271713,24.616636493329864],[67.16047160471607,24.611570761520213],[67.15327153271534,24.61494791605999],[67.14967149671497,24.63521084329858],[67.1568715687157,24.662228079616696],[67.17487174871749,24.689245315934826],[67.20007200072001,24.71119682044329],[67.22527225272253,24.726394015872245],[67.25407254072542,24.73990263403131],[67.25407254072542,24.74834552038071],[67.24687246872469,24.761854138539775],[67.23247232472326,24.77029702488919],[67.22527225272253,24.77029702488919],[67.2108721087211,24.765231293079538],[67.17487174871749,24.758476984000012],[67.16767167671676,24.7601655612699],[67.16047160471607,24.782117065778365],[67.1568715687157,24.792248529397668],[67.14967149671497,24.799002838477193],[67.13887138871391,24.804068570286844],[67.12087120871209,24.80069141574708],[67.11007110071102,24.79731426120732],[67.09927099270993,24.79731426120732],[67.08127081270814,24.804068570286844],[67.07407074070741,24.79562568393743],[67.08127081270814,24.77367417942895],[67.06327063270635,24.782117065778365],[67.02367023670237,24.81082287936637],[67.00567005670058,24.814200033906147],[66.98766987669879,24.82264292025556],[66.97326973269733,24.83277438387485],[66.9660696606966,24.84290584749415],[66.9588695886959,24.84290584749415],[66.9588695886959,24.826020074795323],[66.9588695886959,24.81757718844591],[66.9660696606966,24.81082287936637],[66.94086940869408,24.81251145663626],[66.92286922869229,24.824331497525435],[66.9048690486905,24.83952869295439],[66.88326883268834,24.851348733843565],[66.85446854468546,24.85303731111344],[66.82566825668258,24.844594424764026],[66.80406804068042,24.83952869295439],[66.7788677886779,24.851348733843565],[66.76806768067681,24.847971579303803],[66.71766717667177,24.841217270224263],[66.69246692466925,24.83277438387485],[66.67806678066782,24.831085806604975],[66.6528665286653,24.83952869295439],[66.65646656466566,24.85810304292309],[66.67806678066782,24.88005454743157],[66.70326703267034,24.891874588320746],[66.70326703267034,24.898628897400272],[66.68166681666818,24.910448938289463],[66.68166681666818,24.949286215496755],[66.69606696066961,25.02527219264148],[66.69966699666998,25.086060974357252],[66.70326703267034,25.10463532432597],[66.7140671406714,25.121521097024797],[66.73206732067322,25.14347260153326],[66.73926739267392,25.158669796962215],[66.73566735667359,25.180621301470694],[66.72126721267213,25.21270426959846],[66.71766717667177,25.231278619567163],[66.71046710467107,25.239721505916577],[66.67446674466746,25.268427319504582],[66.66006660066603,25.27518162858412],[66.64926649266494,25.283624514933535],[66.59526595265953,25.330904678490242],[66.55926559265595,25.34947902845896],[66.54846548465486,25.366364801157786],[66.55206552065522,25.38493915112649],[66.5808658086581,25.37987341931685],[66.59166591665917,25.400136346555442],[66.5880658806588,25.425465005603684],[66.56286562865628,25.438973623762735],[66.55206552065522,25.45754797373145],[66.54126541265413,25.49300809639898],[66.53046530465306,25.518336755447223],[66.51246512465124,25.508205291827935],[66.50886508865091,25.513271023637586],[66.50886508865091,25.518336755447223],[66.50526505265054,25.521713909987],[66.49446494464945,25.518336755447223],[66.48726487264872,25.525091064526762],[66.48366483664839,25.538599682685813],[66.47646476464766,25.548731146305116],[66.44406444064441,25.58250269170277],[66.43686436864368,25.59769988713171],[66.41166411664116,25.590945578052185],[66.38646386463864,25.59263415532206],[66.37206372063721,25.60445419621125],[66.37566375663758,25.626405700719715],[66.35766357663579,25.61458565983054],[66.33966339663397,25.607831350751013],[66.30366303663038,25.60445419621125],[66.29286292862929,25.606142773481125],[66.27126271262713,25.611208505290776],[66.2568625686257,25.611208505290776],[66.25326253262534,25.609519928020887],[66.24966249662498,25.60445419621125],[66.23886238862389,25.5993884644016],[66.2028620286203,25.59263415532206],[66.18486184861848,25.580814114432883],[66.16686166861669,25.565616919003944],[66.15606156061563,25.548731146305116],[66.1380613806138,25.513271023637586],[66.1308613086131,25.508205291827935],[66.12006120061201,25.50482813728817],[66.10926109261092,25.49469667366887],[66.09846098460986,25.484565210049567],[66.0948609486095,25.47443374643028],[66.12006120061201,25.47443374643028],[66.19926199261994,25.487942364589344],[66.21366213662137,25.491319519129107],[66.22446224462246,25.49976240547852],[66.23886238862389,25.51664817817735],[66.24246242462425,25.518336755447223],[66.24606246062461,25.52002533271711],[66.24966249662498,25.521713909987],[66.2568625686257,25.521713909987],[66.26046260462604,25.525091064526762],[66.2568625686257,25.531845373606288],[66.2568625686257,25.538599682685813],[66.2568625686257,25.543665414495464],[66.27846278462786,25.550419723575004],[66.31086310863108,25.553796878114767],[66.3360633606336,25.553796878114767],[66.3468634686347,25.547042569035227],[66.35406354063542,25.53522252814605],[66.36486364863649,25.5301567963364],[66.37566375663758,25.526779641796637],[66.390063900639,25.521713909987],[66.39726397263973,25.513271023637586],[66.41166411664116,25.491319519129107],[66.42246422464225,25.481188055509804],[66.43686436864368,25.491319519129107],[66.4548645486455,25.496385250938758],[66.47646476464766,25.49300809639898],[66.49086490864909,25.481188055509804],[66.45846458464587,25.45417081919169],[66.49806498064981,25.43053073741332],[66.51246512465124,25.413644964714493],[66.49806498064981,25.398447769285553],[66.48366483664839,25.400136346555442],[66.46566465664657,25.41195638744462],[66.43686436864368,25.433907891953098],[66.36126361263612,25.465990860080865],[66.31086310863108,25.47443374643028],[66.27846278462786,25.467679437350753],[66.25326253262534,25.47274516916039],[66.2208622086221,25.464302282810976],[66.18846188461885,25.4524822419218],[66.15966159661596,25.44741651011215],[66.06966069660697,25.445727932842274],[66.0048600486005,25.428842160143446],[65.92565925659258,25.418710696524144],[65.88245882458824,25.420399273794033],[65.85725857258572,25.41702211925427],[65.8248582485825,25.401824923825316],[65.79965799657998,25.39507061474579],[65.76365763657637,25.378184842046963],[65.72405724057242,25.371430532967437],[65.67005670056702,25.34779045118907],[65.65205652056522,25.344413296649307],[65.63045630456304,25.346101873919196],[65.48645486454865,25.383250573856614],[65.46845468454686,25.38493915112649],[65.4468544685447,25.381561996586726],[65.42165421654218,25.37311911023731],[65.40005400054002,25.366364801157786],[65.3820538205382,25.371430532967437],[65.38565385653857,25.376496264777074],[65.39645396453966,25.391693460206028],[65.36405364053641,25.39000488293614],[65.33525335253353,25.38493915112649],[65.31365313653137,25.376496264777074],[65.29205292052922,25.364676223887898],[65.25965259652597,25.37987341931685],[65.23085230852308,25.371430532967437],[65.21285212852129,25.34779045118907],[65.18765187651877,25.31064175125165],[65.18045180451804,25.303887442172126],[65.16965169651698,25.298821710362475],[65.15525155251552,25.295444555822712],[65.14445144451446,25.295444555822712],[65.11925119251194,25.302198864902238],[65.09045090450905,25.305576019442],[65.0580505805058,25.314018905791414],[65.04365043650438,25.31739606033119],[64.97884978849788,25.31739606033119],[64.92124921249214,25.32752752395048],[64.8888488884889,25.32752752395048],[64.86004860048601,25.31739606033119],[64.83844838448385,25.325838946680605],[64.8060480604806,25.329216101220368],[64.7448474484745,25.324150369410717],[64.71964719647198,25.314018905791414],[64.69444694446946,25.2971331330926],[64.680046800468,25.276870205853996],[64.66924669246694,25.25491870134553],[64.66204662046621,25.22959004229729],[64.66204662046621,25.217770001408113],[64.66924669246694,25.20594996051892],[64.680046800468,25.200884228709285],[64.69804698046983,25.197507074169508],[64.70884708847089,25.190752765089982],[64.70884708847089,25.178932724200806],[64.70164701647016,25.178932724200806],[64.65484654846549,25.16542410604174],[64.64044640446406,25.16711268331163],[64.61524615246154,25.173866992391154],[64.60084600846008,25.173866992391154],[64.6260462604626,25.211015692328573],[64.6260462604626,25.2279014650274],[64.61164611646117,25.251541546805754],[64.59364593645938,25.261673010425056],[64.5648456484565,25.27011589677447],[64.53604536045361,25.27518162858412],[64.51804518045182,25.27518162858412],[64.50724507245073,25.266738742234708],[64.4928449284493,25.246475814996117],[64.47844478444784,25.241410083186466],[64.46764467644678,25.239721505916577],[64.44964449644496,25.236344351376815],[64.4388443884439,25.23465577410694],[64.41724417244174,25.241410083186466],[64.38124381243813,25.27180447404436],[64.35964359643597,25.283624514933535],[64.31644316443166,25.29206740128295],[64.27684276842768,25.295444555822712],[64.26604266042662,25.298821710362475],[64.25164251642516,25.31233032852154],[64.24444244442446,25.31739606033119],[64.18324183241833,25.319084637601065],[64.09324093240934,25.335970410299893],[64.09324093240934,25.34947902845896],[64.10404104041041,25.36805337842766],[64.10764107641077,25.38493915112649],[64.10044100441004,25.391693460206028],[64.09324093240934,25.39675919201568],[64.08244082440825,25.403513501095205],[64.07884078840789,25.41702211925427],[64.08244082440825,25.427153582873558],[64.09324093240934,25.43221931468321],[64.10764107641077,25.433907891953098],[64.11844118441186,25.433907891953098],[64.14004140041402,25.428842160143446],[64.15084150841508,25.43221931468321],[64.15444154441545,25.44741651011215],[64.15084150841508,25.450793664651925],[64.14004140041402,25.45417081919169],[64.12564125641256,25.45417081919169],[64.08244082440825,25.444039355572386],[64.05724057240573,25.44235077830251],[64.04644046440464,25.450793664651925],[63.9888398883989,25.425465005603684],[63.97803978039781,25.41195638744462],[63.992439924399264,25.41702211925427],[63.9960399603996,25.420399273794033],[64.00324003240033,25.401824923825316],[64.01044010440106,25.39675919201568],[64.02124021240212,25.403513501095205],[64.03564035640358,25.41702211925427],[64.050040500405,25.41702211925427],[64.0608406084061,25.398447769285553],[64.07884078840789,25.364676223887898],[64.06804068040682,25.346101873919196],[64.0608406084061,25.344413296649307],[64.0428404284043,25.344413296649307],[64.00324003240033,25.339347564839656],[63.9888398883989,25.33765898756978],[63.97083970839708,25.344413296649307],[63.94563945639456,25.33428183303002],[63.90603906039061,25.341036142109544],[63.80523805238053,25.3748076875072],[63.7368373683737,25.38493915112649],[63.66843668436684,25.383250573856614],[63.60363603636037,25.3748076875072],[63.57123571235712,25.364676223887898],[63.55323553235533,25.356233337538484],[63.5388353883539,25.344413296649307],[63.51003510035102,25.31739606033119],[63.49563495634956,25.29206740128295],[63.4848348483485,25.283624514933535],[63.47043470434704,25.288690246743187],[63.474034740347406,25.273493051314233],[63.481234812348134,25.259984433155168],[63.51363513635138,25.226212887757526],[63.51723517235172,25.22283573321775],[63.51723517235172,25.221147155947875],[63.51723517235172,25.214392846868336],[63.51363513635138,25.20763853778881],[63.51003510035102,25.200884228709285],[63.506435064350654,25.195818496899633],[63.499234992349926,25.194129919629745],[63.47043470434704,25.199195651439396],[63.4128341283413,25.22283573321775],[63.37683376833769,25.2279014650274],[63.30843308433086,25.221147155947875],[63.290432904329066,25.22283573321775],[63.24363243632436,25.241410083186466],[63.17883178831789,25.258295855885294],[63.14283142831428,25.261673010425056],[63.114031140311425,25.25491870134553],[63.04923049230493,25.224524310487638],[63.02763027630277,25.221147155947875],[62.94122941229412,25.2279014650274],[62.77202772027721,25.261673010425056],[62.60642606426066,25.266738742234708],[62.527225272252736,25.263361587694945],[62.476824768247695,25.258295855885294],[62.4660246602466,25.238032928646703],[62.4660246602466,25.22283573321775],[62.49122491224912,25.214392846868336],[62.46962469624697,25.20594996051892],[62.44442444424445,25.214392846868336],[62.41562415624156,25.20594996051892],[62.38682386823868,25.19244134235987],[62.36522365223652,25.178932724200806],[62.35442354423546,25.168801260581503],[62.34362343623437,25.155292642422452],[62.33642336423364,25.1400954469935],[62.340023400234,25.12489825156456],[62.350823508235095,25.113078210675383],[62.37242372423725,25.10801247886573],[62.38682386823868,25.101258169786206],[62.37962379623798,25.08774955162714],[62.340023400234,25.08774955162714],[62.28962289622896,25.089438128897015],[62.25722257222574,25.09788101524643],[62.2788227882279,25.116455365215145],[62.28242282422826,25.119832519754908],[62.2860228602286,25.121521097024797],[62.28962289622896,25.12489825156456],[62.300423004230055,25.128275406104322],[62.30762307623078,25.128275406104322],[62.31482314823148,25.12996398337421],[62.31842318423185,25.141784024263387],[62.30402304023042,25.16711268331163],[62.29682296822969,25.18568703328033],[62.275222752227535,25.199195651439396],[62.25362253622538,25.21270426959846],[62.224822248222495,25.214392846868336],[62.192421924219246,25.219458578677987],[62.14562145621457,25.217770001408113],[62.10242102421026,25.20594996051892],[62.0808208082081,25.197507074169508],[62.066420664206646,25.178932724200806],[62.05922059220592,25.162046951501978],[62.073620736207374,25.1502269106128],[62.07722077220774,25.128275406104322],[62.0880208802088,25.118143942485034],[62.098820988209894,25.106323901595843],[62.07722077220774,25.101258169786206],[62.03762037620376,25.10294674705608],[61.990819908199086,25.10801247886573],[61.92961929619298,25.10970105613562],[61.88281882818828,25.10294674705608],[61.86841868418685,25.084372397087378],[61.864818648186485,25.075929510737964],[61.85761857618576,25.06748662438855],[61.84681846818469,25.037092233530657],[61.8360183601836,25.038780810800546],[61.814418144181445,25.026960769911355],[61.789217892178925,25.018517883561955],[61.75321753217534,25.013452151752304],[61.72801728017282,25.021895038101718],[61.72081720817209,25.037092233530657],[61.72441724417246,25.059043738039136],[61.73521735217352,25.069175201658425],[61.72801728017282,25.08268381981749],[61.73161731617316,25.091126706166904],[61.74961749617498,25.10463532432597],[61.76041760417604,25.114766787945257],[61.764017640176405,25.121521097024797],[61.764017640176405,25.13502971518386],[61.76761767617677,25.14516117880315],[61.77841778417786,25.162046951501978],[61.7820178201782,25.173866992391154],[61.7820178201782,25.18737561055022],[61.77841778417786,25.190752765089982],[61.7748177481775,25.189064187820108],[61.76761767617677,25.18568703328033],[61.764017640176405,25.183998456010457],[61.75681756817568,25.175555569661043],[61.74961749617498,25.173866992391154],[61.74601746017461,25.175555569661043],[61.73161731617316,25.183998456010457],[61.72441724417246,25.18568703328033],[61.713617136171365,25.18737561055022],[61.70641706417064,25.19244134235987],[61.7028170281703,25.197507074169508],[61.69561695616957,25.200884228709285],[61.68121681216812,25.200884228709285],[61.6488164881649,25.200884228709285],[61.63441634416344,25.204261383249047],[61.62361623616238,25.204261383249047],[61.612816128161285,25.200884228709285],[61.587615876158765,25.20257280597916],[61.58041580415804,25.216081424138224],[61.58041580415804,25.232967196837052],[61.562415624156245,25.24478723772623],[61.55881558815588,25.251541546805754],[61.555215552155516,25.25491870134553],[61.54441544415445,25.24816439226599],[61.54081540815409,25.243098660456354],[61.54081540815409,25.226212887757526],[61.537215372153725,25.221147155947875],[61.54441544415445,25.216081424138224],[61.55161551615518,25.204261383249047],[61.55881558815588,25.200884228709285],[61.537215372153725,25.20257280597916],[61.51921519215193,25.2093271150587],[61.504815048150476,25.2093271150587],[61.48321483214832,25.194129919629745],[61.504815048150476,25.18737561055022],[61.51561515615157,25.18230987874057],[61.5228152281523,25.173866992391154],[61.51921519215193,25.163735528771866],[61.504815048150476,25.14516117880315],[61.49761497614978,25.13502971518386],[61.49761497614978,25.12996398337421],[61.49761497614978,25.12489825156456],[61.49041490414905,25.118143942485034],[61.47601476014762,25.111389633405494],[61.422014220142216,25.096192437976555],[61.436414364143644,25.08774955162714],[61.411214112141124,25.059043738039136],[61.24201242012421,25.111389633405494],[61.18441184411844,25.12320967429467],[61.18441184411844,25.1400954469935],[61.170011700117016,25.163735528771866],[61.02961029610296,25.2093271150587],[60.867608676086775,25.23465577410694],[60.72720727207272,25.26505016496482],[60.633606336063366,25.27518162858412],[60.615606156061574,25.283624514933535],[60.633606336063366,25.295444555822712],[60.608406084060846,25.32752752395048],[60.60480604806048,25.341036142109544],[60.60480604806048,25.39675919201568],[60.60120601206012,25.405202078365093],[60.565205652056534,25.438973623762735],[60.55080550805508,25.44741651011215],[60.532805328053286,25.449105087382037],[60.514805148051494,25.44741651011215],[60.44640446404466,25.428842160143446],[60.42840428404284,25.420399273794033],[60.41760417604178,25.405202078365093],[60.40320403204032,25.388316305666265],[60.39600396003962,25.378184842046963],[60.39600396003962,25.371430532967437],[60.39960399603996,25.364676223887898],[60.40320403204032,25.344413296649307],[60.406804068040685,25.342724719379433],[60.41400414004141,25.341036142109544],[60.42480424804248,25.335970410299893],[60.432004320043205,25.335970410299893],[60.43920439204393,25.33428183303002],[60.4428044280443,25.32752752395048],[60.45360453604536,25.31739606033119],[60.4428044280443,25.319084637601065],[60.4428044280443,25.31739606033119],[60.47160471604718,25.303887442172126],[60.46800468004682,25.29037882401306],[60.457204572045725,25.29206740128295],[60.42480424804248,25.305576019442],[60.381603816038165,25.320773214870954],[60.36360363603637,25.330904678490242],[60.32040320403206,25.329216101220368],[60.29160291602918,25.351167605728847],[60.29880298802988,25.36805337842766],[60.30240302403024,25.371430532967437],[60.28800288002881,25.376496264777074],[60.27000270002702,25.37987341931685],[60.23400234002341,25.378184842046963],[60.20880208802089,25.37311911023731],[60.20160201602016,25.371430532967437],[60.1908019080191,25.361299069348135],[60.1908019080191,25.356233337538484],[60.19440194401946,25.351167605728847],[60.21600216002162,25.33765898756978],[60.20880208802089,25.319084637601065],[60.18360183601837,25.319084637601065],[60.16200162001621,25.33259325576013],[60.15120151201512,25.335970410299893],[60.11520115201154,25.339347564839656],[60.10800108001081,25.344413296649307],[60.097200972009716,25.357921914808372],[60.08280082800829,25.366364801157786],[60.046800468004676,25.364676223887898],[59.9927999279993,25.356233337538484],[59.94239942399426,25.35454476026861],[59.902799027990284,25.329216101220368],[59.863198631986336,25.342724719379433],[59.819998199981995,25.37987341931685],[59.77319773197732,25.39000488293614],[59.65799657996581,25.383250573856614],[59.6147961479615,25.383250573856614],[59.53919539195394,25.400136346555442],[59.4887948879489,25.444039355572386],[59.45279452794529,25.460925128271214],[59.39879398793988,25.4524822419218],[59.27999279992801,25.433907891953098],[59.251192511925126,25.43053073741332],[59.19359193591936,25.422087851063907],[59.13959139591398,25.398447769285553],[59.1179911799118,25.393382037475902],[59.107191071910734,25.39507061474579],[59.099990999910005,25.401824923825316],[59.09279092790928,25.406890655634967],[59.08559085590858,25.405202078365093],[59.074790747907485,25.400136346555442],[59.06759067590676,25.398447769285553],[59.04239042390424,25.400136346555442],[59.024390243902445,25.403513501095205],[59.00639006390065,25.41026781017473],[58.99558995589956,25.420399273794033],[58.948789487894885,25.486253787319455],[58.923589235892365,25.513271023637586],[58.88398883988842,25.5301567963364],[58.847988479884805,25.528468219066525],[58.84078840788408,25.533533950876176],[58.83358833588338,25.54197683722559],[58.82998829988301,25.55210830084488],[58.82638826388265,25.560551187194292],[58.81198811988122,25.563928341734055],[58.72918729187293,25.563928341734055],[58.545585455854564,25.594322732591948],[58.48438484384846,25.584191268972646],[58.430384303843056,25.587568423512423],[58.412384123841235,25.596011309861836],[58.41958419584196,25.611208505290776],[58.39078390783908,25.609519928020887],[58.35838358383586,25.60445419621125],[58.3439834398344,25.59769988713171],[58.32238322383225,25.580814114432883],[58.304383043830455,25.57743695989312],[58.30078300783009,25.57912553716301],[58.29718297182973,25.584191268972646],[58.289982899829,25.584191268972646],[58.279182791827935,25.574059805353357],[58.27198271982721,25.568994073543706],[58.261182611826115,25.565616919003944],[58.25038250382505,25.567305496273832],[58.24678246782469,25.574059805353357],[58.24318243182432,25.570682650813595],[58.20718207182074,25.548731146305116],[58.17118171181713,25.543665414495464],[58.13878138781388,25.550419723575004],[58.10638106381066,25.558862609924418],[58.07398073980741,25.563928341734055],[58.04518045180453,25.575748382623246],[58.02358023580237,25.601077041671473],[57.994779947799486,25.658488668847497],[57.96237962379624,25.693948791515027],[57.926379263792654,25.700703100594552],[57.883178831788314,25.692260214245138],[57.843578435784366,25.671997287006548],[57.81117811178112,25.648357205228194],[57.7859778597786,25.63484858706913],[57.77157771577717,25.63484858706913],[57.775177751777534,25.68044017335596],[57.7787777877779,25.690571636975264],[57.78237782377823,25.695637368784915],[57.78237782377823,25.699014523324678],[57.78237782377823,25.70745740967409],[57.77157771577717,25.731097491452445],[57.75717757177571,25.74291753234162],[57.73557735577356,25.747983264151273],[57.71037710377104,25.747983264151273],[57.68877688776888,25.746294686881384],[57.63117631176311,25.734474645992208],[57.62037620376205,25.736163223262096],[57.59877598775989,25.746294686881384],[57.5879758797588,25.747983264151273],[57.57717577175774,25.747983264151273],[57.55557555575555,25.74291753234162],[57.54477544775449,25.741228955071747],[57.51957519575197,25.74291753234162],[57.45117451174514,25.763180459580212],[57.45837458374584,25.768246191389863],[57.32517325173254,25.776689077739277],[57.31077310773108,25.783443386818817],[57.30357303573035,25.800329159517645],[57.29997299973002,25.84929790034424],[57.274772747727496,25.899955218440724],[57.26037260372604,25.940481072917905],[57.25317253172531,25.959055422886607],[57.24237242372425,25.96749830923602],[57.24237242372425,25.970875463775783],[57.22077220772209,25.99451554555415],[57.213572135721364,25.996204122824025],[57.20277202772027,25.99451554555415],[57.199171991719936,25.99451554555415],[57.19557195571957,25.999581277363802],[57.19557195571957,26.01140131825298],[57.181171811718116,26.04686144092051],[57.17757177571775,26.063747213619337],[57.16677166771669,26.082321563588053],[57.163171631716324,26.09414160447723],[57.17037170371705,26.11609310898571],[57.20277202772027,26.146487499843587],[57.213572135721364,26.166750427082178],[57.199171991719936,26.19883339520996],[57.13437134371344,26.262999331465494],[57.137971379713804,26.290016567783624],[57.130771307713076,26.29677087686315],[57.123571235712376,26.342362463149982],[57.11997119971201,26.36431396765846],[57.105571055710556,26.382888317627163],[57.087570875708764,26.39977409032599],[57.0839708397084,26.40652839940553],[57.080370803708036,26.414971285754945],[57.07677076770767,26.438611367533298],[57.07677076770767,26.447054253882712],[57.09477094770949,26.572008971854032],[57.09117091170913,26.619289135410753],[57.02637026370263,26.850624221384678],[57.0119701197012,26.86919857135338],[56.97596975969762,26.89452723040162],[56.96516965169653,26.91141300310045],[56.96516965169653,26.926610198529403],[56.93636936369364,26.945184548498105],[56.92556925569258,26.955316012117407],[56.93996939969401,26.95362743484752],[56.9507695076951,26.95869316665717],[56.96156961569616,26.96375889846682],[56.972369723697255,26.96882463027646],[56.96516965169653,26.975578939355998],[56.96516965169653,26.985710402975286],[56.96876968769689,26.9941532893247],[56.972369723697255,27.002596175674114],[56.94356943569437,26.990776134784937],[56.93276932769328,26.989087557515063],[56.921969219692215,26.990776134784937],[56.91836918369185,26.99584186659459],[56.91476914769149,27.00090759840424],[56.90756907569076,27.002596175674114],[56.903969039690395,27.00597333021389],[56.896768967689695,27.012727639293416],[56.88956889568897,27.017793371103068],[56.871568715687175,27.007661907483765],[56.86436864368645,27.011039062023528],[56.86436864368645,27.019481948372942],[56.86436864368645,27.029613411992244],[56.84996849968502,27.027924834722356],[56.84276842768429,27.032990566532007],[56.84276842768429,27.039744875611532],[56.853568535685355,27.04312203015131],[56.85716857168572,27.048187761960946],[56.87516875168754,27.065073534659774],[56.8859688596886,27.070139266469425],[56.8859688596886,27.07858215281884],[56.853568535685355,27.081959307358602],[56.8319683196832,27.095467925517667],[56.81396813968141,27.117419430026146],[56.81036810368104,27.13937093453461],[56.795967959679615,27.129239470915323],[56.78516785167852,27.12586231637556],[56.75636756367564,27.12586231637556],[56.74196741967421,27.129239470915323],[56.73476734767348,27.13937093453461],[56.72396723967242,27.149502398153913],[56.71676716767169,27.152879552693676],[56.612366123661246,27.154568129963565],[56.59076590765909,27.16132243904309],[56.58356583565836,27.152879552693676],[56.55836558365584,27.164699593582853],[56.52956529565296,27.171453902662392],[56.46476464764649,27.173142479932267],[56.435964359643606,27.178208211741918],[56.385563855638566,27.196782561710634],[56.35316353163532,27.20184829352027],[56.29196291962921,27.19847113898051],[56.259562595625965,27.191716829900983],[56.23796237962381,27.176519634472044],[56.21636216362165,27.16807674812263],[56.15156151561516,27.164699593582853],[56.12276122761227,27.16132243904309],[56.11556115561157,27.15625670723344],[56.09756097560975,27.1410595118045],[56.09396093960942,27.13599377999485],[56.09396093960942,27.12586231637556],[56.08676086760869,27.122485161835797],[56.07956079560796,27.12079658456591],[56.07236072360723,27.115730852756258],[56.05436054360544,27.102222234597193],[55.98595985959861,27.066762111929663],[55.96435964359645,27.048187761960946],[55.96435964359645,27.04312203015131],[55.957159571595724,27.04143345288142],[55.93915939159393,27.02623625745248],[55.92835928359284,27.02285910291272],[55.88515885158853,27.019481948372942],[55.841958419584216,27.009350484753654],[55.831158311583124,27.009350484753654],[55.798757987579876,27.009350484753654],[55.78795787957881,27.007661907483765],[55.773557735577356,26.997530443864477],[55.76275762757629,26.99584186659459],[55.72675726757268,26.99584186659459],[55.69435694356943,27.002596175674114],[55.68355683556837,27.002596175674114],[55.665556655566576,26.99584186659459],[55.63315633156333,26.967136053006584],[55.61875618756187,26.962070321196933],[55.60795607956081,26.95362743484752],[55.5539555395554,26.899592962211273],[55.56835568355683,26.904658694020924],[55.57555575555756,26.906347271290812],[55.58275582755829,26.913101580370338],[55.58635586355865,26.889461498591984],[55.57915579155792,26.85906710773409],[55.56835568355683,26.830361294146087],[55.5539555395554,26.810098366907496],[55.521555215552155,26.784769707859255],[55.48555485554857,26.767883935160427],[55.44235442354423,26.759441048811013],[55.395553955539555,26.762818203350776],[55.31635316353163,26.78645828512913],[55.269552695526954,26.79321259420867],[55.23355233552337,26.77632682150984],[55.22275222752228,26.757752471541124],[55.21555215552155,26.739178121572422],[55.204752047520486,26.725669503413357],[55.18315183151833,26.720603771603706],[55.161551615516174,26.71891519433383],[55.118351183511834,26.70709515344464],[55.103951039510406,26.702029421635004],[55.03915039150391,26.649683526268632],[55.028350283502846,26.642929217189106],[54.93114931149313,26.572008971854032],[54.82314823148232,26.516285921947897],[54.81594815948159,26.51122019013826],[54.80874808748089,26.50446588105872],[54.801548015480165,26.497711571979195],[54.79074790747907,26.496022994709307],[54.77994779947801,26.497711571979195],[54.76194761947622,26.50615445832861],[54.751147511475125,26.509531612868372],[54.66474664746647,26.502777303788847],[54.62154621546216,26.507843035598484],[54.60354603546037,26.53148311737685],[54.58914589145891,26.560188930964856],[54.56034560345606,26.58382901274321],[54.517145171451716,26.592271899092623],[54.42714427144273,26.58889474455286],[54.391143911439116,26.605780517251688],[54.373143731437324,26.63110917629993],[54.35514355143553,26.663192144427697],[54.33714337143371,26.69358653528559],[54.308343083430856,26.715538039794055],[54.28674286742867,26.71891519433383],[54.265142651426515,26.715538039794055],[54.24714247142472,26.710472307984418],[54.17154171541716,26.705406576174767],[54.14994149941501,26.70878373071453],[54.081540815408175,26.725669503413357],[54.063540635406355,26.72904665795312],[54.05274052740529,26.732423812492883],[54.03474034740347,26.745932430651948],[54.02754027540277,26.74930958519171],[54.01674016740168,26.74930958519171],[53.99513995139952,26.745932430651948],[53.930339303393055,26.717226617063943],[53.88353883538835,26.712160885254292],[53.8439384393844,26.702029421635004],[53.822338223382246,26.702029421635004],[53.77553775537757,26.71384946252418],[53.75033750337505,26.715538039794055],[53.728737287372894,26.705406576174767],[53.71433714337144,26.70878373071453],[53.6639366393664,26.74930958519171],[53.58833588335884,26.788146862399017],[53.49113491134912,26.85400137592444],[53.47673476734769,26.870887148623268],[53.47313473134733,26.889461498591984],[53.469534695346965,26.93674166214869],[53.46233462334624,26.95700458938728],[53.444334443344445,26.975578939355998],[53.4119341193412,26.9941532893247],[53.07353073530737,27.097156502787556],[53.05193051930519,27.09884508005743],[53.03033030330303,27.10391081186708],[53.015930159301604,27.117419430026146],[53.00513005130051,27.132616625455086],[52.990729907299084,27.14612524361415],[52.933129331293316,27.159633861773216],[52.92232922329225,27.169765325392504],[52.915129151291524,27.191716829900983],[52.89352893528937,27.20353687079016],[52.84672846728469,27.215356911679336],[52.76752767527677,27.279522847934885],[52.731527315273155,27.30147435244335],[52.67752677526775,27.321737279681955],[52.60192601926019,27.352131670539833],[52.580325803258035,27.372394597778424],[52.580325803258035,27.39265752501703],[52.58752587525876,27.40616614317608],[52.605526055260555,27.41123187498573],[52.62712627126271,27.414609029525494],[52.64512645126453,27.41292045225562],[52.66672666726669,27.414609029525494],[52.67752677526775,27.424740493144796],[52.67032670326705,27.44838057492315],[52.655926559265595,27.460200615812326],[52.61272612726128,27.47539781124128],[52.598325983259855,27.485529274860568],[52.59112591125913,27.497349315749744],[52.573125731257335,27.5311208611474],[52.56592565925661,27.541252324766702],[52.49392493924941,27.608795415562014],[52.4579245792458,27.632435497340367],[52.421924219242214,27.645944115499432],[52.245522455224574,27.681404238166962],[52.2059220592206,27.69829001086579],[52.09072090720909,27.796227492518994],[52.05112051120511,27.81817899702746],[52.011520115201165,27.833376192456413],[51.96471964719649,27.83844192426605],[51.89271892718929,27.831687615186524],[51.87831878318784,27.835064769726287],[51.860318603186045,27.84519623334559],[51.82431824318243,27.8435076560757],[51.784717847178484,27.835064769726287],[51.72351723517235,27.824933306107],[51.683916839168404,27.829999037916636],[51.59751597515975,27.846884810615464],[51.58671586715869,27.848573387885352],[51.57951579515796,27.855327696964878],[51.57951579515796,27.86545916058418],[51.575915759157596,27.872213469663706],[51.56871568715687,27.877279201473357],[51.53991539915401,27.882344933283008],[51.49671496714967,27.892476396902296],[51.475114751147515,27.912739324140887],[51.45351453514536,27.94819944680843],[51.42831428314284,27.961708064967496],[51.42111421114211,27.93300225137949],[51.399513995139955,27.931313674109603],[51.38151381513816,27.992102455825375],[51.35991359913601,28.015742537603742],[51.34551345513455,28.05289123754116],[51.3059130591306,28.106925710177407],[51.29151291512915,28.122122905606346],[51.26991269912699,28.140697255575063],[51.26631266312663,28.160960182813653],[51.28791287912881,28.2149946554499],[51.28431284312845,28.24032331449814],[51.26631266312663,28.27071770535602],[51.23031230312304,28.29773494167415],[51.21591215912159,28.311243559833215],[51.18351183511837,28.36021230065981],[51.15111151111512,28.390606691517704],[51.140311403114026,28.40073815513699],[51.07911079110792,28.534135759457726],[51.071910719107194,28.56453015031562],[51.071910719107194,28.692862022826702],[51.057510575105766,28.735076454573772],[51.03591035910361,28.77222515451119],[51.01071010710109,28.799242390829306],[50.97830978309784,28.816128163528134],[50.93510935109353,28.824571049877548],[50.895508955089554,28.82794820441731],[50.87750877508776,28.831325358957088],[50.86670866708667,28.843145399846264],[50.85950859508597,28.861719749814966],[50.812708127081265,28.91406564518134],[50.805508055080566,28.93432857241993],[50.79830798307984,28.961345808738045],[50.8019080190802,28.984985890516413],[50.82350823508236,28.99680593140559],[50.84150841508415,28.99005162232605],[50.863108631086305,28.976543004167],[50.87750877508776,28.957968654198282],[50.888308883088825,28.941082881499455],[50.89910899108992,28.94952576784887],[50.89910899108992,28.956280076928408],[50.89190891908919,28.964722963277822],[50.895508955089554,28.976543004167],[50.90270902709028,28.983297313246524],[50.920709207092074,28.998494508675464],[50.9279092790928,29.010314549564654],[50.931509315093166,29.03226605407312],[50.931509315093166,29.0542175585816],[50.920709207092074,29.069414754010538],[50.90270902709028,29.0643490222009],[50.89190891908919,29.093054835788905],[50.888308883088825,29.104874876678082],[50.8739087390874,29.113317763027496],[50.86670866708667,29.111629185757607],[50.85950859508597,29.108252031217845],[50.85230852308524,29.104874876678082],[50.84870848708488,29.109940608487733],[50.84510845108451,29.12682638118656],[50.84510845108451,29.13526926753596],[50.84150841508415,29.140334999345612],[50.81630816308163,29.143712153885375],[50.737107371073705,29.140334999345612],[50.71910719107191,29.13695784480585],[50.69390693906939,29.123449226646784],[50.66510665106651,29.12682638118656],[50.64350643506435,29.143712153885375],[50.636306363063625,29.170729390203505],[50.63270632706329,29.196058049251747],[50.636306363063625,29.207878090140923],[50.64350643506435,29.2196981310301],[50.65070650706508,29.233206749189165],[50.65790657906581,29.250092521887993],[50.66870668706687,29.25684683096752],[50.68310683106833,29.243338212808467],[50.686706867068665,29.28386406728565],[50.69030690306903,29.290618376365174],[50.679506795067965,29.293995530904937],[50.67230672306724,29.299061262714588],[50.661506615066145,29.31932418995318],[50.66870668706687,29.342964271731546],[50.66870668706687,29.38180154893884],[50.661506615066145,29.42232740341602],[50.654306543065445,29.44934463973415],[50.64350643506435,29.46960756697274],[50.6219062190622,29.493247648751094],[50.60750607506077,29.500001957830634],[50.60750607506077,29.46960756697274],[50.60030600306004,29.481427607861917],[50.57150571505716,29.518576307799336],[50.52110521105212,29.555725007736754],[50.51030510305105,29.56923362589582],[50.503105031050325,29.586119398594647],[50.48870488704887,29.604693748563363],[50.45630456304565,29.633399562151368],[50.39870398703988,29.655351066659833],[50.38790387903879,29.665482530279135],[50.38070380703809,29.685745457517726],[50.36630366303663,29.704319807486442],[50.34110341103411,29.729648466534684],[50.31230312303123,29.763420011932325],[50.269102691026916,29.836028834537288],[50.243902439024396,29.86642322539518],[50.225902259022604,29.88162042082412],[50.18270182701829,29.9035719253326],[50.143101431014315,29.937343470730255],[50.143101431014315,29.942409202539892],[50.13950139501395,29.954229243429083],[50.13590135901359,29.972803593397785],[50.13230132301325,29.982935057017087],[50.150301503015044,29.98462363428696],[50.15390153901541,29.9913779433665],[50.14670146701468,29.998132252446027],[50.13230132301325,30.004886561525552],[50.143101431014315,30.038658106923208],[50.12150121501216,30.094381156829343],[50.12870128701289,30.12139839314746],[50.11430114301143,30.129841279496873],[50.09630096300964,30.14841562946559],[50.08550085500855,30.16867855670418],[50.07830078300785,30.185564329403007],[50.07470074700748,30.195695793022296],[50.06030060300603,30.20413867937171],[50.04950049500496,30.207515833911486],[50.02430024300244,30.2159587202609],[49.98829988299883,30.219335874800663],[49.95229952299525,30.214270142991012],[49.916299162991635,30.20413867937171],[49.599495994959966,30.030215220573794],[49.563495634956354,30.016706602414743],[49.531095310953106,30.02346091149427],[49.50229502295025,30.0589210341618],[49.50229502295025,30.074118229590752],[49.50229502295025,30.119709815877584],[49.49509495094952,30.136595588576412],[49.487894878948794,30.1467270521957],[49.48429484294843,30.15179278400535],[49.480694806948065,30.156858515815003],[49.469894698947,30.161924247624654],[49.45909459094591,30.165301402164417],[49.448294482944846,30.16698997943429],[49.42669426694269,30.16867855670418],[49.4158941589416,30.16698997943429],[49.39429394293944,30.16361282489453],[49.38349383493835,30.161924247624654],[49.372693726937285,30.16361282489453],[49.35829358293583,30.17374428851383],[49.35109351093513,30.175432865783705],[49.329493294932945,30.172055711243942],[49.29349293492936,30.158547093084877],[49.271892718927205,30.155169938545114],[49.246692466924685,30.156858515815003],[49.23589235892359,30.165301402164417],[49.23589235892359,30.205827256641598],[49.23229232292323,30.20920441118136],[49.221492214922165,30.217647297530775],[49.21429214292144,30.224401606610314],[49.21429214292144,30.22946733841995],[49.21429214292144,30.244664533848905],[49.2178921789218,30.25141884292843],[49.221492214922165,30.258173152007956],[49.221492214922165,30.264927461087495],[49.21069210692107,30.27168177016702],[49.203492034920345,30.254795997468193],[49.19269192691928,30.237910224769365],[49.178291782917825,30.22609018388019],[49.16029160291603,30.224401606610314],[49.14229142291424,30.232844492959728],[49.13509135091351,30.24635311111878],[49.12429124291245,30.25648457473808],[49.10629106291063,30.258173152007956],[49.08469084690847,30.264927461087495],[49.01629016290164,30.29869900648515],[49.001890018900184,30.30883047010444],[48.99828998289985,30.34091343823222],[48.98028980289803,30.36117636547081],[48.95508955089551,30.372996406359988],[48.92268922689229,30.381439292709402],[48.93348933489335,30.39663648813834],[48.94788947889481,30.401702219947992],[48.99108991089912,30.394947910868467],[49.00909009090091,30.39663648813834],[49.045090450904524,30.405079374487755],[49.063090630906316,30.408456529027518],[49.08109081090811,30.40339079721788],[49.12429124291245,30.384816447249165],[49.13869138691388,30.381439292709402],[49.16029160291603,30.37806213816964],[49.17469174691749,30.372996406359988],[49.18909189091892,30.362864942740686],[49.203492034920345,30.345979170041858],[49.20709207092071,30.359487788200923],[49.228692286922865,30.389882179058816],[49.25749257492575,30.421965147186583],[49.26109261092611,30.432096610805885],[49.26469264692648,30.448982383504713],[49.24309243092432,30.445605228964936],[49.228692286922865,30.45404811531435],[49.2178921789218,30.469245310743304],[49.21069210692107,30.506394010680722],[49.19989199892001,30.50132827887107],[49.18549185491855,30.487819660712006],[49.16749167491676,30.477688197092718],[49.171091710917125,30.489508237981894],[49.171091710917125,30.492885392521657],[49.17469174691749,30.49795112433131],[49.16749167491676,30.508082587950597],[49.15669156691567,30.506394010680722],[49.14949149491497,30.499639701601183],[49.13509135091351,30.49795112433131],[49.127891278912784,30.50132827887107],[49.11709117091172,30.514836897030136],[49.10989109891099,30.5182140515699],[49.102691026910264,30.51652547430001],[49.095490954909565,30.511459742490374],[49.08829088290884,30.511459742490374],[49.070290702907045,30.513148319760248],[49.052290522905224,30.5182140515699],[49.03429034290343,30.519902628839787],[49.01629016290164,30.511459742490374],[48.98028980289803,30.514836897030136],[48.951489514895144,30.499639701601183],[48.944289442894444,30.479376774362592],[48.97308973089733,30.469245310743304],[49.00549005490055,30.464179578933653],[49.03069030690307,30.450670960774588],[49.037890378903796,30.432096610805885],[49.01629016290164,30.415210838107058],[49.001890018900184,30.415210838107058],[48.94788947889481,30.421965147186583],[48.93348933489335,30.41858799264682],[48.87948879488795,30.374684983629862],[48.875888758887584,30.369619251820225],[48.868688686886884,30.357799210931034],[48.861488614886156,30.345979170041858],[48.87228872288725,30.33584770642257],[48.868688686886884,30.32909339734303],[48.861488614886156,30.322339088263504],[48.85788857888579,30.31558477918398],[48.868688686886884,30.29532185194539],[48.88308883088831,30.280124656516435],[48.90468904689047,30.26661603835737],[48.92268922689229,30.249730265658542],[48.92988929889299,30.232844492959728],[48.937089370893716,30.21089298845125],[48.94068940689408,30.165301402164417],[48.94068940689408,30.15179278400535],[48.92988929889299,30.13152985676676],[48.926289262892624,30.12139839314746],[48.92988929889299,30.109578352258282],[48.93348933489335,30.09100400228958],[48.93348933489335,30.07918396140039],[48.92988929889299,30.060609611431687],[48.91548915489156,30.04203526146297],[48.89748897488977,30.030215220573794],[48.875888758887584,30.025149488764143],[48.80748807488075,30.031903797843682],[48.793087930879324,30.025149488764143],[48.77148771487717,30.031903797843682],[48.70308703087031,30.031903797843682],[48.659886598865995,30.052166725082273],[48.6418864188642,30.055543879622036],[48.6418864188642,30.038658106923208],[48.64548645486457,30.02683806603403],[48.659886598865995,30.00657513879544],[48.659886598865995,29.993066520636376],[48.659886598865995,29.982935057017087],[48.65268652686527,29.974492170667673],[48.6418864188642,29.967737861588134],[48.634686346863475,29.962672129778497],[48.609486094860955,29.957606397968846],[48.53748537485376,29.962672129778497],[48.53748537485376,29.969426438858022],[48.53028530285303,29.96436070704837],[48.53028530285303,29.96098355250861],[48.53028530285303,29.955917820698957],[48.55548555485555,29.955917820698957],[48.559085590855915,29.94578635707967],[48.54828548285482,29.933966316190478],[48.51948519485197,29.92890058438084],[48.41148411484116,29.93903204800013],[48.3358833588336,29.96098355250861],[48.299882998829986,29.98462363428696],[48.2638826388264,29.994755097906264],[48.209882098821,30.025149488764143],[48.166681666816686,30.036969529653334],[48.11988119881201,30.045412416002748],[48.07668076680767,30.045412416002748],[48.03708037080372,30.036969529653334],[47.96867968679689,30.004886561525552],[47.96147961479616,30.030215220573794],[47.9578795787958,30.060609611431687],[47.95067950679507,30.087626847749803],[47.93627936279364,30.107889774988408],[47.947079470794705,30.074118229590752],[47.947079470794705,30.062298188701575],[47.947079470794705,30.04878957054251],[47.94347943479437,30.036969529653334],[47.939879398794005,30.02683806603403],[47.947079470794705,30.018395179684617],[47.947079470794705,29.994755097906264],[47.95427954279543,29.977869325207436],[47.965079650796525,29.962672129778497],[47.97587975879759,29.942409202539892],[47.97947979479795,29.9221462753013],[47.97947979479795,29.884997575363883],[47.98307983079832,29.86135749358553],[47.99387993879941,29.827585948187874],[48.022680226802265,29.780305784631153],[48.05148051480515,29.743157084693735],[48.08028080280803,29.743157084693735],[48.09468094680949,29.69925407567679],[48.11988119881201,29.655351066659833],[48.16308163081632,29.601316594023587],[48.181081810818114,29.562479316816294],[48.17748177481775,29.542216389577703],[48.155881558815594,29.538839235037926],[48.11268112681128,29.55403643046688],[48.091080910809126,29.565856471356057],[48.08748087480876,29.57429935770547],[48.065880658806606,29.577676512245233],[48.040680406804086,29.582742244054884],[48.022680226802265,29.58443082132476],[48.00828008280084,29.582742244054884],[47.965079650796525,29.57598793497536],[47.93627936279364,29.55403643046688],[47.91107911079112,29.5320849259584],[47.84987849878499,29.501690535100508],[47.80667806678068,29.467918989702852],[47.78507785077852,29.437524598844973],[47.763477634776365,29.41219593979673],[47.71667716677169,29.393621589828015],[47.713077130771325,29.378424394399076],[47.7058770587706,29.363227198970137],[47.72747727477275,29.361538621700248],[47.763477634776365,29.368292930779774],[47.79227792277925,29.37167008531955],[47.813878138781405,29.380112971668964],[47.839078390783925,29.38686728074849],[47.84987849878499,29.380112971668964],[47.821078210782105,29.363227198970137],[47.821078210782105,29.35140715808096],[47.81747817478177,29.337898539921895],[47.84267842678429,29.32270134449294],[47.85707857078572,29.32270134449294],[47.87867878678787,29.32945565357248],[47.90027900279003,29.334521385382132],[47.90387903879039,29.35985004443036],[47.921879218792185,29.36491577624001],[47.939879398794005,29.35985004443036],[47.9578795787958,29.37167008531955],[47.96867968679689,29.38686728074849],[47.98667986679868,29.393621589828015],[47.99387993879941,29.38855585801838],[48.00828008280084,29.369981508049662],[48.0118801188012,29.3666043535099],[48.02628026280263,29.354784312620723],[48.03708037080372,29.35140715808096],[48.06228062280624,29.342964271731546],[48.10188101881019,29.34971858081107],[48.09468094680949,29.305815571794113],[48.091080910809126,29.28724122182541],[48.09468094680949,29.258535408237407],[48.105481054810554,29.212943821950574],[48.116281162811646,29.192680894711984],[48.12708127081271,29.174106544743267],[48.13428134281344,29.153843617504677],[48.15948159481596,29.01706885864418],[48.17748177481775,28.983297313246524],[48.224282242822426,28.9174427997211],[48.242282422824246,28.905622758831925],[48.27828278282783,28.893802717942748],[48.281882818828194,28.878605522513794],[48.27828278282783,28.860031172545092],[48.27828278282783,28.8397682453065],[48.28548285482856,28.819505318067897],[48.31428314283144,28.785733772670255],[48.317883178831806,28.773913731781064],[48.32868328683287,28.760405113622014],[48.35388353883539,28.7519622272726],[48.39348393483937,28.743519340923186],[48.382683826838274,28.728322145494232],[48.37908379083791,28.70974779552553],[48.37908379083791,28.692862022826702],[48.38628386283864,28.674287672857986],[48.37188371883721,28.68441913647729],[48.36468364683648,28.68948486828694],[48.36468364683648,28.681041981937526],[48.36468364683648,28.675976250127874],[48.37188371883721,28.67259909558811],[48.37908379083791,28.66753336377846],[48.37188371883721,28.659090477429046],[48.36828368283685,28.657401900159158],[48.36468364683648,28.657401900159158],[48.36108361083612,28.660779054698935],[48.35388353883539,28.660779054698935],[48.350283502835026,28.64051612746033],[48.36108361083612,28.635450395650693],[48.375483754837546,28.64220470473022],[48.38628386283864,28.654024745619395],[48.389883898839,28.643893282000107],[48.39348393483937,28.594924541173498],[48.39708397083973,28.58310450028432],[48.40428404284043,28.56959588212527],[48.42228422284225,28.551021532156554],[48.433084330843315,28.54089006853725],[48.45468454684547,28.518938564028787],[48.46908469084693,28.510495677679373],[48.49428494284945,28.50036421406007],[48.49788497884978,28.493609904980545],[48.508685086850875,28.449706895963587],[48.508685086850875,28.41593535056593],[48.49788497884978,28.393983846057466],[48.47628476284763,28.40073815513699],[48.47268472684726,28.393983846057466],[48.46908469084693,28.390606691517704],[48.46908469084693,28.387229536977927],[48.48708487084872,28.385540959708052],[48.50508505085051,28.388918114247815],[48.5158851588516,28.399049577867117],[48.5230852308523,28.414246773296057],[48.533885338853395,28.40749246421653],[48.533885338853395,28.399049577867117],[48.5230852308523,28.3804752278984],[48.51948519485197,28.353457991580285],[48.5158851588516,28.341637950691094],[48.5230852308523,28.31799786891274],[48.533885338853395,28.29942351894404],[48.61668616686168,28.216683232719774],[48.62388623886238,28.204863191830597],[48.609486094860955,28.186288841861895],[48.60228602286023,28.16771449189318],[48.60228602286023,28.147451564654588],[48.60588605886059,28.127188637415998],[48.61668616686168,28.11030286471717],[48.6490864908649,28.071465587509863],[48.65628656286563,28.061334123890575],[48.65268652686527,28.049514083001398],[48.65268652686527,28.04613692846162],[48.66708667086672,28.037694042112207],[48.70308703087031,28.024185423953156],[48.7138871388714,28.022496846683268],[48.74628746287465,28.024185423953156],[48.75708757087571,28.022496846683268],[48.7750877508775,28.01236538306398],[48.78948789487896,28.008988228524203],[48.793087930879324,28.00729965125433],[48.793087930879324,28.00054534217479],[48.78948789487896,27.993791033095263],[48.785887858878596,27.988725301285612],[48.77868778687787,27.987036724015738],[48.77148771487717,27.987036724015738],[48.76428764287644,27.988725301285612],[48.74628746287465,27.981970992206087],[48.742687426874284,27.975216683126547],[48.742687426874284,27.961708064967496],[48.75348753487535,27.94819944680843],[48.77148771487717,27.929625096839715],[48.79668796687969,27.914427901410775],[48.81468814688148,27.90598501506136],[48.81468814688148,27.9026078605216],[48.836288362883636,27.872213469663706],[48.87948879488795,27.836753346996176],[48.88308883088831,27.826621883376873],[48.87228872288725,27.806358956138283],[48.87228872288725,27.794538915249106],[48.87228872288725,27.78271887435993],[48.875888758887584,27.777653142550278],[48.875888758887584,27.769210256200864],[48.86508865088652,27.754013060771925],[48.85428854288543,27.737127288073097],[48.839888398884,27.728684401723683],[48.84708847088473,27.74050444261286],[48.84708847088473,27.748947328962274],[48.84708847088473,27.772587410740627],[48.84708847088473,27.78778460616958],[48.85428854288543,27.794538915249106],[48.85788857888579,27.80298180159852],[48.85428854288543,27.81817899702746],[48.836288362883636,27.804670378868394],[48.82188821888221,27.767521678930976],[48.80388803888039,27.7557016380418],[48.82188821888221,27.799604647058757],[48.82548825488254,27.811424687947934],[48.82188821888221,27.829999037916636],[48.811088110881116,27.82831046064676],[48.80388803888039,27.814801842487697],[48.785887858878596,27.743881597152622],[48.785887858878596,27.728684401723683],[48.78228782287823,27.72530724718392],[48.77868778687787,27.72024151537427],[48.77868778687787,27.71348720629473],[48.793087930879324,27.715175783564618],[48.79668796687969,27.72024151537427],[48.80388803888039,27.737127288073097],[48.811088110881116,27.742193019882748],[48.811088110881116,27.69829001086579],[48.81468814688148,27.688158547246502],[48.82548825488254,27.688158547246502],[48.83268832688327,27.69829001086579],[48.839888398884,27.708421474485093],[48.84708847088473,27.6966014335959],[48.84708847088473,27.68309281543685],[48.84708847088473,27.667895620007897],[48.85788857888579,27.66282988819826],[48.868688686886884,27.667895620007897],[48.875888758887584,27.6780270836272],[48.87948879488795,27.688158547246502],[48.87948879488795,27.669584197277786],[48.87948879488795,27.664518465468134],[48.87228872288725,27.659452733658483],[48.87948879488795,27.65100984730907],[48.875888758887584,27.644255538229544],[48.87228872288725,27.64087838368978],[48.85788857888579,27.64087838368978],[48.868688686886884,27.618926879181302],[48.87228872288725,27.612172570101777],[48.850688506885064,27.623992610990953],[48.839888398884,27.623992610990953],[48.83268832688327,27.612172570101777],[48.85428854288543,27.605418261022237],[48.87228872288725,27.605418261022237],[48.88308883088831,27.61554972464154],[48.893888938889404,27.632435497340367],[48.901089010890104,27.632435497340367],[48.90828908289083,27.618926879181302],[48.893888938889404,27.607106838292125],[48.89028890288904,27.58853248832341],[48.89748897488977,27.571646715624595],[48.91548915489156,27.571646715624595],[48.92268922689229,27.57840102470412],[48.91548915489156,27.585155333783646],[48.90828908289083,27.591909642863186],[48.90828908289083,27.59866395194271],[48.91548915489156,27.608795415562014],[48.926289262892624,27.61386114737165],[48.94788947889481,27.618926879181302],[48.969489694896964,27.62061545645119],[48.98028980289803,27.61386114737165],[49.01629016290164,27.585155333783646],[49.05589055890559,27.56826956108482],[49.063090630906316,27.556449520195642],[49.045090450904524,27.544629479306465],[49.05949059490595,27.53787517022694],[49.070290702907045,27.539563747496814],[49.077490774907744,27.546318056576354],[49.070290702907045,27.55813809746553],[49.08829088290884,27.55138378838599],[49.10629106291063,27.546318056576354],[49.145891458914605,27.544629479306465],[49.153091530915304,27.546318056576354],[49.171091710917125,27.556449520195642],[49.178291782917825,27.55813809746553],[49.18909189091892,27.556449520195642],[49.20709207092071,27.55138378838599],[49.2178921789218,27.549695211116116],[49.23949239492396,27.544629479306465],[49.253892538925385,27.53280943841729],[49.279092790927905,27.502415047559396],[49.28629286292863,27.497349315749744],[49.29349293492936,27.49397216120998],[49.30069300693009,27.49059500667022],[49.304293042930425,27.482152120320805],[49.30789307893079,27.47370923397139],[49.31149311493115,27.456823461272563],[49.31149311493115,27.44838057492315],[49.30069300693009,27.44838057492315],[49.29349293492936,27.4534463067328],[49.289892898929,27.461889193082214],[49.29349293492936,27.47539781124128],[49.28629286292863,27.47539781124128],[49.26469264692648,27.4534463067328],[49.20709207092071,27.45851203854245],[49.18909189091892,27.441626265843624],[49.18189181891819,27.441626265843624],[49.17469174691749,27.45851203854245],[49.15669156691567,27.45851203854245],[49.120691206912085,27.441626265843624],[49.127891278912784,27.436560534033973],[49.14949149491497,27.43149480222432],[49.16029160291603,27.42642907041467],[49.171091710917125,27.421363338605033],[49.17469174691749,27.416297606795382],[49.18189181891819,27.41123187498573],[49.196291962919645,27.40616614317608],[49.203492034920345,27.399411834096554],[49.20709207092071,27.394346102286903],[49.21429214292144,27.39603467955679],[49.228692286922865,27.41123187498573],[49.228692286922865,27.414609029525494],[49.23589235892359,27.417986184065256],[49.23589235892359,27.424740493144796],[49.23949239492396,27.42642907041467],[49.246692466924685,27.423051915874908],[49.253892538925385,27.417986184065256],[49.26469264692648,27.414609029525494],[49.25749257492575,27.399411834096554],[49.246692466924685,27.39265752501703],[49.23589235892359,27.387591793207378],[49.228692286922865,27.379148906857964],[49.22509225092253,27.36901744323866],[49.22509225092253,27.342000206920545],[49.22509225092253,27.331868743301243],[49.23229232292323,27.33355732057113],[49.246692466924685,27.338623052380782],[49.25749257492575,27.347065938730196],[49.26829268292684,27.35550882507961],[49.279092790927905,27.358885979619373],[49.29349293492936,27.35550882507961],[49.31149311493115,27.345377361460308],[49.304293042930425,27.325114434221717],[49.30789307893079,27.306540084253],[49.31509315093152,27.28627715701441],[49.31869318693188,27.26601422977582],[49.31869318693188,27.22379979802875],[49.322293222932245,27.205225448060048],[49.34029340293404,27.20860260259981],[49.33669336693367,27.190028252631095],[49.3438934389344,27.18327394355157],[49.354693546935465,27.184962520821458],[49.36549365493656,27.193405407170857],[49.36189361893619,27.20860260259981],[49.36909369093692,27.2187340662191],[49.38709387093871,27.220422643488988],[49.40149401494017,27.20860260259981],[49.40869408694087,27.215356911679336],[49.41229412294123,27.20353687079016],[49.40869408694087,27.193405407170857],[49.405094050940505,27.18327394355157],[49.40149401494017,27.169765325392504],[49.397893978939805,27.16301101631298],[49.38709387093871,27.159633861773216],[49.37629376293765,27.159633861773216],[49.36549365493656,27.16132243904309],[49.37629376293765,27.149502398153913],[49.397893978939805,27.144436666344262],[49.40869408694087,27.132616625455086],[49.4158941589416,27.137682357264737],[49.423094230942326,27.14612524361415],[49.43389433894339,27.16638817085274],[49.43749437494375,27.16301101631298],[49.43749437494375,27.16132243904309],[49.44109441094412,27.16132243904309],[49.430294302943025,27.142748089074388],[49.44109441094412,27.13937093453461],[49.46629466294664,27.14612524361415],[49.480694806948065,27.144436666344262],[49.50949509495095,27.134305202724974],[49.523895238952406,27.132616625455086],[49.498694986949886,27.159633861773216],[49.487894878948794,27.174831057202155],[49.50229502295025,27.18833967536122],[49.51669516695168,27.18833967536122],[49.52749527495277,27.18327394355157],[49.53469534695347,27.176519634472044],[49.54549545495456,27.173142479932267],[49.55269552695529,27.176519634472044],[49.57069570695708,27.193405407170857],[49.56709567095672,27.178208211741918],[49.55989559895599,27.154568129963565],[49.55989559895599,27.13937093453461],[49.563495634956354,27.117419430026146],[49.57069570695708,27.10391081186708],[49.574295742957446,27.09884508005743],[49.5958959589596,27.090402193708016],[49.613896138961394,27.071827843739314],[49.67149671496716,26.990776134784937],[49.700297002970046,26.95869316665717],[49.707497074970746,26.951938857577645],[49.73629736297363,26.940118816688454],[49.74709747097472,26.935053084878817],[49.76149761497615,26.919855889449863],[49.77229772297724,26.913101580370338],[49.83349833498335,26.887772921322096],[49.87309873098732,26.862444262273854],[49.89469894698948,26.860755685003966],[49.916299162991635,26.860755685003966],[49.941499414994155,26.85906710773409],[49.9738997389974,26.842181335035264],[50.00270002700029,26.816852675987022],[50.05310053100533,26.75606389427125],[50.067500675006755,26.72904665795312],[50.143101431014315,26.681766494396413],[50.15750157501577,26.664880721697585],[50.16110161101611,26.639552062649344],[50.117901179011795,26.675012185316874],[50.092700927009275,26.68852080347594],[50.03870038700387,26.695275112555464],[50.02430024300244,26.700340844365115],[50.01350013500135,26.710472307984418],[50.00630006300065,26.747621007921836],[49.99909999099992,26.740866698842297],[49.98829988299883,26.72398092614347],[49.98469984699847,26.70878373071453],[49.98469984699847,26.695275112555464],[49.98469984699847,26.683455071666287],[49.98829988299883,26.673323608047],[49.991899918999195,26.663192144427697],[50.00270002700029,26.653060680808395],[50.00630006300065,26.647994948998758],[50.00270002700029,26.58720616728297],[50.00270002700029,26.570320394584144],[50.03150031500317,26.494334417439433],[50.042300423004235,26.47913722201048],[50.05670056700569,26.46394002658154],[50.07830078300785,26.453808562962237],[50.16110161101611,26.42679132664412],[50.18990189901899,26.403151244865768],[50.20790207902081,26.369379699468112],[50.21510215102151,26.32378811318128],[50.21510215102151,26.215719167908787],[50.21150211502115,26.19207908613042],[50.200702007020084,26.17181615889183],[50.18270182701829,26.159996118002653],[50.18270182701829,26.175193313431592],[50.175501755017564,26.180259045241243],[50.16470164701647,26.17688189070148],[50.15390153901541,26.166750427082178],[50.16110161101611,26.141421768033936],[50.15750157501577,26.102584490826644],[50.150301503015044,26.063747213619337],[50.143101431014315,26.03672997730122],[50.125101251012524,26.04686144092051],[50.12150121501216,26.060370059079574],[50.12150121501216,26.077255831778402],[50.12150121501216,26.090764449937467],[50.11430114301143,26.102584490826644],[50.10350103501037,26.111027377176057],[50.09630096300964,26.117781686255583],[50.08550085500855,26.124535995335123],[50.08190081900821,26.12960172714476],[50.07830078300785,26.12960172714476],[50.07470074700748,26.131290304414648],[50.07110071100712,26.159996118002653],[50.07110071100712,26.166750427082178],[50.06390063900639,26.173504736161718],[50.05670056700569,26.183636199781006],[50.0459004590046,26.19376766340031],[50.03150031500317,26.200521972479834],[50.02070020700208,26.19714481794007],[49.99549995499956,26.15155323165324],[49.98829988299883,26.146487499843587],[49.97749977499777,26.139733190764062],[49.98109981099813,26.126224572604997],[49.991899918999195,26.11271595444593],[49.99909999099992,26.107650222636295],[49.99909999099992,26.100895913556755],[50.00990009900099,26.085698718127816],[50.00990009900099,26.077255831778402],[50.00630006300065,26.07387867723864],[49.99909999099992,26.07219009996875],[49.991899918999195,26.068812945428988],[49.98829988299883,26.060370059079574],[49.991899918999195,26.045172863650635],[49.99549995499956,26.03166424549157],[49.99549995499956,26.01646705006263],[49.98829988299883,26.001269854633676],[50.00630006300065,25.996204122824025],[50.02070020700208,26.00464700917344],[50.02790027900281,26.019844204602393],[50.02430024300244,26.03672997730122],[50.03510035100351,26.033352822761444],[50.042300423004235,26.028287090951807],[50.05310053100533,26.01477847279274],[50.05670056700569,26.013089895522853],[50.06030060300603,26.01477847279274],[50.06390063900639,26.013089895522853],[50.06390063900639,26.006335586443328],[50.067500675006755,25.999581277363802],[50.067500675006755,25.996204122824025],[50.07110071100712,25.99451554555415],[50.07470074700748,25.99451554555415],[50.09990099901,25.9894498137445],[50.11070110701107,25.975941195585435],[50.117901179011795,25.959055422886607],[50.12870128701289,25.940481072917905],[50.12870128701289,25.933726763838365],[50.10710107101073,25.915152413869663],[50.117901179011795,25.867872250312942],[50.143101431014315,25.815526354946584],[50.16110161101611,25.783443386818817],[50.22230222302224,25.71758887329338],[50.24750247502476,25.678751596086087],[50.25830258302585,25.631471432529366],[50.251102511025124,25.631471432529366],[50.23310233102333,25.678751596086087],[50.225902259022604,25.6871944824355],[50.21510215102151,25.688883059705375],[50.200702007020084,25.695637368784915],[50.18630186301863,25.70408025513433],[50.175501755017564,25.720966027833157],[50.15750157501577,25.731097491452445],[50.143101431014315,25.732786068722334],[50.143101431014315,25.714211718753617],[50.150301503015044,25.699014523324678],[50.175501755017564,25.68381732789574],[50.18270182701829,25.671997287006548],[50.18630186301863,25.68212875062585],[50.18990189901899,25.6871944824355],[50.19710197101972,25.6871944824355],[50.23310233102333,25.61458565983054],[50.34830348303484,25.482876632779693],[50.37350373503736,25.460925128271214],[50.369903699036996,25.47443374643028],[50.36630366303663,25.489630941859218],[50.36270362703627,25.503139560018283],[50.369903699036996,25.508205291827935],[50.38070380703809,25.513271023637586],[50.38430384303845,25.50989386909781],[50.39150391503915,25.487942364589344],[50.395103951039516,25.482876632779693],[50.39870398703988,25.481188055509804],[50.402304023040244,25.47781090097004],[50.40950409504097,25.464302282810976],[50.427504275042764,25.455859396461562],[50.46350463504635,25.44741651011215],[50.47070470704708,25.43728504649286],[50.49230492304923,25.391693460206028],[50.48510485104853,25.38493915112649],[50.4959049590496,25.36974195569755],[50.51030510305105,25.344413296649307],[50.52110521105212,25.314018905791414],[50.52470524705248,25.29206740128295],[50.52470524705248,25.280247360393773],[50.51750517505175,25.258295855885294],[50.51750517505175,25.24478723772623],[50.52110521105212,25.232967196837052],[50.52470524705248,25.22283573321775],[50.528305283052845,25.216081424138224],[50.53550535505357,25.199195651439396],[50.549905499055,25.175555569661043],[50.549905499055,25.158669796962215],[50.54630546305464,25.118143942485034],[50.553505535055365,25.07761808800784],[50.56070560705609,25.055666583499374],[50.57150571505716,25.04215796534031],[50.578705787057885,25.0624208925789],[50.60750607506077,25.04215796534031],[50.63270632706329,25.011763574482416],[50.64350643506435,24.994877801783588],[50.661506615066145,24.97968060635465],[50.68310683106833,24.913826092829225],[50.70830708307085,24.898628897400272],[50.72630726307264,24.881743124701444],[50.73350733507337,24.84290584749415],[50.737107371073705,24.782117065778365],[50.74070740707407,24.77029702488919],[50.75150751507516,24.75341125219036],[50.762307623076225,24.736525479491533],[50.77310773107732,24.726394015872245],[50.787507875078745,24.72808259314212],[50.80910809108093,24.746656943110835],[50.82710827108272,24.74834552038071],[50.85230852308524,24.77029702488919],[50.85950859508597,24.79562568393743],[50.85230852308524,24.890186011050858],[50.84150841508415,24.9155146700991],[50.79830798307984,24.988123492704062],[50.79830798307984,25.003320688133],[50.80910809108093,25.032026501721006],[50.80910809108093,25.050600851689723],[50.80910809108093,25.069175201658425],[50.8019080190802,25.07761808800784],[50.77670776707768,25.091126706166904],[50.76950769507695,25.126586828834448],[50.76590765907659,25.162046951501978],[50.75870758707589,25.18568703328033],[50.76590765907659,25.204261383249047],[50.762307623076225,25.224524310487638],[50.75870758707589,25.24816439226599],[50.75870758707589,25.27011589677447],[50.76590765907659,25.324150369410717],[50.76590765907659,25.344413296649307],[50.75150751507516,25.420399273794033],[50.762307623076225,25.462613705541102],[50.762307623076225,25.482876632779693],[50.75150751507516,25.49469667366887],[50.77670776707768,25.526779641796637],[50.79830798307984,25.5301567963364],[50.80910809108093,25.51664817817735],[50.812708127081265,25.498073828208632],[50.81990819908199,25.491319519129107],[50.81990819908199,25.471056591890516],[50.84870848708488,25.467679437350753],[50.830708307083086,25.508205291827935],[50.82710827108272,25.525091064526762],[50.82710827108272,25.543665414495464],[50.82710827108272,25.553796878114767],[50.830708307083086,25.565616919003944],[50.83430834308345,25.57912553716301],[50.82710827108272,25.590945578052185],[50.81990819908199,25.596011309861836],[50.79830798307984,25.5993884644016],[50.78390783907841,25.60445419621125],[50.79470794707947,25.6179628143703],[50.80910809108093,25.62133996891008],[50.82350823508236,25.62133996891008],[50.837908379083785,25.628094277989604],[50.84150841508415,25.63484858706913],[50.84510845108451,25.650045782498083],[50.85230852308524,25.653422937037845],[50.855908559085606,25.650045782498083],[50.863108631086305,25.64160289614867],[50.870308703087034,25.63991431887878],[50.87750877508776,25.631471432529366],[50.8739087390874,25.61458565983054],[50.86670866708667,25.587568423512423],[50.86670866708667,25.567305496273832],[50.870308703087034,25.558862609924418],[50.87750877508776,25.5402882599557],[50.881108811088126,25.53522252814605],[50.888308883088825,25.5301567963364],[50.89910899108992,25.531845373606288],[50.89910899108992,25.53522252814605],[50.89910899108992,25.5402882599557],[50.90270902709028,25.563928341734055],[50.906309063090646,25.587568423512423],[50.90990909909101,25.59769988713171],[50.920709207092074,25.607831350751013],[50.9279092790928,25.60445419621125],[50.93510935109353,25.59769988713171],[50.94950949509496,25.59769988713171],[50.956709567095686,25.60445419621125],[50.971109711097114,25.633160009799255],[50.97830978309784,25.646668627958306],[50.94950949509496,25.636537164339018],[50.92430924309244,25.631471432529366],[50.90270902709028,25.63991431887878],[50.888308883088825,25.66693155519691],[50.888308883088825,25.68044017335596],[50.895508955089554,25.727720336912682],[50.895508955089554,25.732786068722334],[50.906309063090646,25.73954037780186],[50.90990909909101,25.74460610961151],[50.906309063090646,25.74967184142116],[50.90270902709028,25.7547375732308],[50.90270902709028,25.75980330504045],[50.90270902709028,25.790197695898343],[50.91710917109171,25.78682054135858],[50.920709207092074,25.793574850438105],[50.92430924309244,25.805394891327282],[50.931509315093166,25.810460623136933],[50.938709387093866,25.80708346859717],[50.945909459094594,25.798640582247756],[50.94950949509496,25.78682054135858],[50.94950949509496,25.775000500469403],[50.963909639096386,25.783443386818817],[50.97470974709748,25.796952004977868],[50.97470974709748,25.813837777676696],[50.971109711097114,25.830723550375524],[50.963909639096386,25.823969241296],[50.94950949509496,25.837477859455063],[50.94950949509496,25.859429363963528],[50.97830978309784,25.916840991139537],[50.981909819098206,25.935415341108254],[50.98550985509857,25.981006927395086],[50.99270992709927,25.975941195585435],[50.996309963099634,25.972564041045672],[50.9999099991,25.96749830923602],[51.00351003510036,25.96749830923602],[51.02871028710288,26.02659851368192],[51.046710467104674,26.05361575000005],[51.07551075510756,26.063747213619337],[51.089910899108986,26.0671243681591],[51.13311133111333,26.082321563588053],[51.140311403114026,26.08738729539769],[51.147511475114754,26.102584490826644],[51.16911169111691,26.124535995335123],[51.17631176311764,26.139733190764062],[51.19431194311943,26.132978881684537],[51.21591215912159,26.139733190764062],[51.2519125191252,26.159996118002653],[51.33111331113312,26.121158840795346],[51.34551345513455,26.104273068096518],[51.349113491134915,26.085698718127816],[51.34551345513455,26.060370059079574],[51.34551345513455,26.038418554571095],[51.35631356313564,26.02997566822168],[51.3779137791378,26.023221359142156],[51.38151381513816,26.006335586443328],[51.38511385113853,25.986072659204737],[51.38871388713889,25.96749830923602],[51.40311403114032,25.95398969107697],[51.41751417514175,25.95230111380708],[51.424714247142475,25.950612536537193],[51.46791467914679,25.95398969107697],[51.49311493114931,25.95230111380708],[51.51111511115113,25.945546804727556],[51.52911529115292,25.937103918378142],[51.54711547115471,25.92528387748895],[51.557915579155804,25.913463836599774],[51.56871568715687,25.898266641170835],[51.575915759157596,25.881380868472007],[51.59391593915939,25.771623345929626],[51.59391593915939,25.758114727770575],[51.59031590315905,25.746294686881384],[51.583115831158324,25.741228955071747],[51.575915759157596,25.74460610961151],[51.57231572315723,25.75980330504045],[51.56511565115653,25.763180459580212],[51.55431554315544,25.758114727770575],[51.54711547115471,25.74967184142116],[51.54351543515435,25.737851800531985],[51.54711547115471,25.727720336912682],[51.55431554315544,25.720966027833157],[51.56511565115653,25.720966027833157],[51.56871568715687,25.727720336912682],[51.57231572315723,25.734474645992208],[51.59031590315905,25.712523141483743],[51.575915759157596,25.688883059705375],[51.557915579155804,25.68212875062585],[51.55431554315544,25.70745740967409],[51.53991539915401,25.70408025513433],[51.5039150391504,25.6871944824355],[51.51831518315183,25.68212875062585],[51.53631536315365,25.673685864276436],[51.54711547115471,25.663554400657134],[51.55431554315544,25.653422937037845],[51.550715507155076,25.631471432529366],[51.53631536315365,25.623028546179953],[51.51831518315183,25.6179628143703],[51.5039150391504,25.611208505290776],[51.49671496714967,25.616274237100427],[51.49311493114931,25.6179628143703],[51.49311493114931,25.565616919003944],[51.49311493114931,25.550419723575004],[51.49311493114931,25.548731146305116],[51.48591485914861,25.5402882599557],[51.47871478714788,25.531845373606288],[51.47151471514715,25.521713909987],[51.475114751147515,25.511582446367697],[51.51111511115113,25.45417081919169],[51.51831518315183,25.440662201032623],[51.51831518315183,25.425465005603684],[51.51471514715149,25.383250573856614],[51.51111511115113,25.330904678490242],[51.51471514715149,25.308953173981777],[51.51831518315183,25.2971331330926],[51.532715327153284,25.29206740128295],[51.59031590315905,25.283624514933535],[51.59751597515975,25.27518162858412],[51.608316083160844,25.25491870134553],[51.61191611916121,25.238032928646703],[51.61551615516157,25.219458578677987],[51.61551615516157,25.136718292453736],[51.60471604716048,25.033715078990895],[51.61191611916121,25.021895038101718],[51.601116011160116,25.013452151752304],[51.58671586715869,24.952663370036518],[51.57231572315723,24.934089020067816],[51.53991539915401,24.898628897400272],[51.52911529115292,24.87498881562192],[51.52191521915219,24.869923083812267],[51.51111511115113,24.868234506542393],[51.5039150391504,24.864857352002616],[51.500315003150035,24.854725888383328],[51.475114751147515,24.765231293079538],[51.47151471514715,24.7601655612699],[51.46791467914679,24.74834552038071],[51.45711457114572,24.73990263403131],[51.449914499144995,24.721328284062594],[51.44271442714427,24.679113852315524],[51.4319143191432,24.663916656886585],[51.38871388713889,24.641965152378106],[51.38151381513816,24.63521084329858],[51.3779137791378,24.611570761520213],[51.36351363513637,24.596373566091273],[51.349113491134915,24.584553525202097],[51.34191341913419,24.569356329773157],[51.32751327513276,24.584553525202097],[51.33111331113312,24.59806214336116],[51.34191341913419,24.61494791605999],[51.34551345513455,24.63521084329858],[51.33831338313385,24.64534230691787],[51.32031320313203,24.64871946145763],[51.28431284312845,24.64534230691787],[51.28431284312845,24.662228079616696],[51.27711277112772,24.662228079616696],[51.26631266312663,24.65547377053717],[51.25551255512556,24.652096615997408],[51.23751237512377,24.65040803872752],[51.21951219512195,24.643653729647994],[51.21231212312125,24.63352226602869],[51.21591215912159,24.626767956949166],[51.21591215912159,24.625079379679278],[51.21591215912159,24.618325070599752],[51.26991269912699,24.625079379679278],[51.27711277112772,24.618325070599752],[51.28791287912881,24.60819360698045],[51.29511295112951,24.6031278751708],[51.3059130591306,24.611570761520213],[51.3059130591306,24.6031278751708],[51.3059130591306,24.594684988821385],[51.30231302313024,24.58624210247197],[51.29511295112951,24.582864947932208],[51.29151291512915,24.57779921612257],[51.29151291512915,24.56766775250327],[51.29511295112951,24.557536288883966],[51.298712987129875,24.555847711614092],[51.29511295112951,24.522076166216436],[51.30231302313024,24.517010434406785],[51.32031320313203,24.522076166216436],[51.33471334713349,24.532207629835725],[51.35991359913601,24.576110638852683],[51.374313743137435,24.589619257011748],[51.38871388713889,24.596373566091273],[51.39591395913959,24.60819360698045],[51.39591395913959,24.631833688758817],[51.41031410314105,24.625079379679278],[51.42831428314284,24.623390802409403],[51.44271442714427,24.620013647869627],[51.449914499144995,24.60819360698045],[51.45711457114572,24.594684988821385],[51.46791467914679,24.59299641155151],[51.48231482314824,24.59299641155151],[51.49671496714967,24.582864947932208],[51.49671496714967,24.576110638852683],[51.48231482314824,24.569356329773157],[51.46071460714609,24.564290597963506],[51.44271442714427,24.554159134344204],[51.43551435514357,24.538961938915264],[51.4319143191432,24.538961938915264],[51.41031410314105,24.51532185713691],[51.40311403114032,24.50856754805737],[51.399513995139955,24.495058929898306],[51.39591395913959,24.48830462081878],[51.33471334713349,24.4477787663416],[51.32751327513276,24.435958725452423],[51.323913239132395,24.43089299364277],[51.31311313113133,24.415695798213818],[51.3059130591306,24.40556433459453],[51.3059130591306,24.395432870975228],[51.30231302313024,24.373481366466763],[51.298712987129875,24.36503848011735],[51.298712987129875,24.35828417103781],[51.298712987129875,24.351529861958284],[51.298712987129875,24.346464130148632],[51.29511295112951,24.344775552878758],[51.28431284312845,24.344775552878758],[51.28071280712808,24.34308697560887],[51.27711277112772,24.339709821069107],[51.27711277112772,24.319446893830516],[51.27711277112772,24.307626852941326],[51.28071280712808,24.30256112113169],[51.34551345513455,24.297495389322037],[51.36711367113671,24.30256112113169],[51.38151381513816,24.309315430211214],[51.38871388713889,24.31606973929074],[51.399513995139955,24.32113547110039],[51.41391413914141,24.32282404837028],[51.47871478714788,24.311004007481102],[51.49671496714967,24.297495389322037],[51.525515255152555,24.268789575734033],[51.56871568715687,24.256969534844856],[51.59031590315905,24.283986771162972],[51.59031590315905,24.32788978017993],[51.57231572315723,24.36503848011735],[51.59391593915939,24.38530140735594],[51.601116011160116,24.36841563465711],[51.62271622716227,24.339709821069107],[51.626316263162636,24.319446893830516],[51.626316263162636,24.262035266654493],[51.633516335163364,24.226575143986963],[51.64791647916479,24.21813225763755],[51.66231662316625,24.23332945306649],[51.67311673116731,24.277232462083447],[51.68031680316804,24.26541242119427],[51.68751687516877,24.235018030336377],[51.69471694716947,24.224886566717075],[51.701917019170196,24.221509412177312],[51.709117091170924,24.221509412177312],[51.71991719917199,24.2231979894472],[51.72351723517235,24.22826372125685],[51.72351723517235,24.23332945306649],[51.71991719917199,24.235018030336377],[51.74151741517417,24.277232462083447],[51.759517595175964,24.290741080242512],[51.78111781117812,24.262035266654493],[51.78111781117812,24.24008376214603],[51.77031770317703,24.17591782589048],[51.77391773917739,24.153966321382],[51.784717847178484,24.10330900328553],[51.78831788317885,24.09317753966623],[51.784717847178484,24.059405994268573],[51.78831788317885,24.049274530649285],[51.79551795517955,24.02901160341068],[51.79911799117991,24.018880139791392],[51.809918099181004,24.000305789822676],[51.83151831518316,23.99524005801304],[51.8819188191882,23.99355148074315],[51.89271892718929,23.990174326203388],[51.90351903519036,23.985108594393736],[51.91791917919181,23.969911398964797],[51.92871928719288,23.964845667155146],[51.935919359193605,23.964845667155146],[51.93951939519397,23.969911398964797],[51.93231932319324,23.976665708044322],[51.93231932319324,23.9884857489335],[51.9539195391954,23.990174326203388],[52.011520115201165,23.9884857489335],[52.01872018720189,23.990174326203388],[52.02232022320223,23.9884857489335],[52.036720367203685,23.976665708044322],[52.06912069120693,23.963157089885257],[52.07632076320763,23.963157089885257],[52.11952119521197,23.97159997623467],[52.1339213392134,23.966534244425034],[52.14472144721449,23.97159997623467],[52.15552155521556,23.966534244425034],[52.169921699217014,23.97328855350456],[52.187921879218806,23.974977130774434],[52.2059220592206,23.97328855350456],[52.22392223922239,23.97328855350456],[52.24192241922421,23.980042862584085],[52.277922779227794,24.001994367092564],[52.295922959229614,24.003682944362453],[52.328323283232834,24.003682944362453],[52.34272342723429,24.007060098902215],[52.353523535235354,24.01550298525163],[52.364323643236446,24.027323026140806],[52.378723787237874,24.037454489760094],[52.39312393123933,24.042520221569745],[52.40752407524076,24.045897376109508],[52.429124291242914,24.052651685189048],[52.44352443524437,24.062783148808336],[52.45072450724507,24.07291461242764],[52.4579245792458,24.084734653316815],[52.48672486724868,24.09655469420599],[52.50112501125011,24.106686157825294],[52.51552515525157,24.12019477598436],[52.53352533525336,24.132014816873536],[52.55152551525515,24.14045770322295],[52.56232562325624,24.145523435032587],[52.573125731257335,24.152277744112126],[52.57672576725767,24.169163516810954],[52.57672576725767,24.187737866779656],[52.580325803258035,24.199557907668833],[52.60192601926019,24.209689371288135],[52.61992619926201,24.20293506220861],[52.63432634326344,24.189426444049545],[52.67032670326705,24.145523435032587],[52.681126811268115,24.14045770322295],[52.68472684726848,24.143834857762712],[52.68832688326884,24.148900589572364],[52.699126991269935,24.152277744112126],[52.72072720727209,24.152277744112126],[52.76032760327604,24.14045770322295],[52.781927819278195,24.137080548683173],[52.79632796327965,24.14045770322295],[52.81792817928181,24.148900589572364],[52.82872828728287,24.152277744112126],[52.83952839528396,24.152277744112126],[52.84672846728469,24.148900589572364],[52.85392853928539,24.147212012302475],[52.86112861128612,24.145523435032587],[52.94752947529477,24.137080548683173],[52.958329583295836,24.14045770322295],[52.990729907299084,24.152277744112126],[52.99792997929981,24.15565489865189],[52.99792997929981,24.16072063046154],[53.00153001530015,24.16578636227119],[53.00513005130051,24.16578636227119],[53.01233012330124,24.162409207731415],[53.015930159301604,24.159032053191652],[53.015930159301604,24.153966321382],[53.01953019530197,24.152277744112126],[53.04833048330485,24.130326239603647],[53.066330663306644,24.121883353254233],[53.10593105931059,24.137080548683173],[53.12753127531275,24.130326239603647],[53.14553145531457,24.121883353254233],[53.16353163531636,24.125260507793996],[53.14913149131493,24.132014816873536],[53.14553145531457,24.142146280492824],[53.14553145531457,24.152277744112126],[53.141931419314204,24.16578636227119],[53.16353163531636,24.17085209408083],[53.192331923319244,24.159032053191652],[53.2139321393214,24.142146280492824],[53.23193231932319,24.125260507793996],[53.24633246332465,24.10330900328553],[53.25353253532535,24.09824327147588],[53.30753307533075,24.09655469420599],[53.43713437134372,24.12019477598436],[53.444334443344445,24.12019477598436],[53.45513455134551,24.115129044174708],[53.469534695346965,24.099931848745754],[53.48033480334803,24.09317753966623],[53.494734947349485,24.089800385126466],[53.50913509135091,24.09148896239634],[53.519935199352005,24.09655469420599],[53.5379353793538,24.084734653316815],[53.54873548735489,24.07798034423729],[53.55593555935559,24.0762917669674],[53.56313563135632,24.07291461242764],[53.57393573935741,24.054340262458922],[53.58113581135811,24.049274530649285],[53.58833588335884,24.047585953379397],[53.602736027360294,24.047585953379397],[53.61353613536136,24.049274530649285],[53.627936279362814,24.0577174169987],[53.63873638736388,24.054340262458922],[53.64953649536497,24.05096310791916],[53.65673656736567,24.049274530649285],[53.68913689136892,24.062783148808336],[53.696336963369646,24.066160303348113],[53.703537035370374,24.07122603515775],[53.710737107371074,24.069537457887876],[53.721537215372166,24.064471726078224],[53.73233732337323,24.062783148808336],[53.854738547385494,24.062783148808336],[53.879938799388015,24.064471726078224],[53.89073890738908,24.07291461242764],[53.95193951939521,24.10330900328553],[54.013140131401315,24.11344046690482],[54.03474034740347,24.123571930524122],[54.056340563405655,24.126949085063885],[54.081540815408175,24.137080548683173],[54.11034110341103,24.142146280492824],[54.12114121141212,24.145523435032587],[54.13554135541355,24.152277744112126],[54.15354153541537,24.16578636227119],[54.17154171541716,24.18098355770013],[54.17874178741789,24.19618075312907],[54.18594185941859,24.20293506220861],[54.25434254342545,24.221509412177312],[54.30474304743049,24.256969534844856],[54.315543155431556,24.25865811211473],[54.322743227432284,24.270478153003907],[54.340743407434076,24.270478153003907],[54.383943839438416,24.255280957574968],[54.391143911439116,24.26541242119427],[54.42714427144273,24.292429657512386],[54.44514445144452,24.31606973929074],[54.484744847448496,24.388678561895702],[54.48114481144813,24.414007220943944],[54.484744847448496,24.42582726183312],[54.499144991449924,24.432581570912646],[54.48834488344883,24.437647302722297],[54.484744847448496,24.439335879992186],[54.484744847448496,24.4477787663416],[54.50274502745029,24.44609018907171],[54.524345243452444,24.435958725452423],[54.53874538745387,24.432581570912646],[54.53514535145354,24.44609018907171],[54.517145171451716,24.46297596177054],[54.51354513545135,24.474796002659716],[54.52794527945281,24.46804169358019],[54.5459454594546,24.46297596177054],[54.56034560345606,24.457910229960888],[54.567545675456756,24.4477787663416],[54.574745747457484,24.4477787663416],[54.57114571145712,24.47310742538984],[54.55314553145533,24.481550311739255],[54.524345243452444,24.48323888900913],[54.499144991449924,24.48830462081878],[54.441544415444156,24.523764743486325],[54.416344163441636,24.528830475295962],[54.416344163441636,24.5355847843755],[54.43074430744309,24.538961938915264],[54.441544415444156,24.54571624799479],[54.45234452344525,24.555847711614092],[54.45234452344525,24.55078197980444],[54.45594455944561,24.542339093455027],[54.466744667446676,24.5355847843755],[54.46314463144631,24.54571624799479],[54.466744667446676,24.554159134344204],[54.47754477544777,24.569356329773157],[54.484744847448496,24.569356329773157],[54.491944919449196,24.542339093455027],[54.51354513545135,24.51532185713691],[54.53874538745387,24.498436084438083],[54.56034560345606,24.501813238977846],[54.55674556745569,24.50519039351761],[54.53874538745387,24.51532185713691],[54.55314553145533,24.51532185713691],[54.574745747457484,24.50856754805737],[54.58194581945821,24.50856754805737],[54.58554585545858,24.511944702597134],[54.592745927459276,24.5254533207562],[54.599945999460004,24.528830475295962],[54.63594635946362,24.59806214336116],[54.62154621546216,24.604816452440687],[54.6107461074611,24.6132593387901],[54.61434614346143,24.621702225139515],[54.63234632346325,24.625079379679278],[54.64314643146432,24.63014511148893],[54.64674646746468,24.643653729647994],[54.650346503465045,24.658850925076933],[54.6719467194672,24.66560523415646],[54.6719467194672,24.672359543236],[54.66114661146614,24.67742527504565],[54.65754657546577,24.687556738664938],[54.65394653946541,24.701065356824003],[54.650346503465045,24.714573974983068],[54.65394653946541,24.721328284062594],[54.64674646746468,24.724705438602356],[54.63954639546395,24.73314832495177],[54.64314643146432,24.74834552038071],[54.65394653946541,24.758476984000012],[54.68994689946899,24.782117065778365],[54.69714697146972,24.788871374857905],[54.700747007470085,24.799002838477193],[54.70794707947081,24.804068570286844],[54.7367473674737,24.79055995212778],[54.74034740347403,24.788871374857905],[54.75474754747549,24.792248529397668],[54.76914769147692,24.80069141574708],[54.77274772747728,24.814200033906147],[54.75834758347585,24.831085806604975],[54.869948699487,24.888497433780984],[54.91674916749167,24.92058040190875],[54.94914949149492,24.945909060956993],[54.96714967149671,24.959417679116058],[54.99234992349923,24.966171988195583],[54.9959499594996,24.966171988195583],[54.99954999549996,24.96786056546547],[55.003150031500326,24.969549142735346],[55.00675006750069,24.969549142735346],[55.010350103501054,24.97292629727511],[55.01395013950139,24.974614874544997],[55.01755017550175,24.974614874544997],[55.01755017550175,24.976303451814886],[55.02115021150212,24.97799202908476],[55.049950499505,24.993189224513713],[55.04635046350464,25.013452151752304],[55.078750787507886,25.02020646083183],[55.08235082350825,25.016829306292067],[55.15795157951581,25.096192437976555],[55.25875258752589,25.216081424138224],[55.26595265952659,25.231278619567163],[55.262352623526255,25.24478723772623],[55.28395283952841,25.259984433155168],[55.29835298352984,25.258295855885294],[55.312753127531295,25.239721505916577],[55.319953199531994,25.224524310487638],[55.312753127531295,25.21270426959846],[55.3019530195302,25.194129919629745],[55.32715327153272,25.200884228709285],[55.33435334353345,25.219458578677987],[55.32715327153272,25.241410083186466],[55.30555305553057,25.27518162858412],[55.3019530195302,25.283624514933535],[55.30915309153093,25.29206740128295],[55.337953379533815,25.320773214870954],[55.34875348753488,25.324150369410717],[55.363153631536335,25.324150369410717],[55.35955359553597,25.335970410299893],[55.35955359553597,25.34779045118907],[55.36675366753667,25.357921914808372],[55.37755377553776,25.364676223887898],[55.388353883538855,25.357921914808372],[55.40635406354065,25.37311911023731],[55.438754387543895,25.41195638744462],[55.445954459544595,25.41195638744462],[55.44955449554496,25.400136346555442],[55.45675456754569,25.400136346555442],[55.46035460354605,25.406890655634967],[55.463954639546415,25.420399273794033],[55.471154711547115,25.41195638744462],[55.48555485554857,25.449105087382037],[55.496354963549635,25.465990860080865],[55.50715507155073,25.47443374643028],[55.49275492754927,25.481188055509804],[55.49995499955,25.49300809639898],[55.514355143551455,25.508205291827935],[55.521555215552155,25.525091064526762],[55.52515525155252,25.54197683722559],[55.53595535955361,25.56223976446418],[55.55035550355504,25.57912553716301],[55.56835568355683,25.584191268972646],[55.56115561155613,25.568994073543706],[55.55035550355504,25.55548545538464],[55.54315543155431,25.54197683722559],[55.546755467554675,25.5301567963364],[55.564755647556495,25.523402487256874],[55.58275582755829,25.526779641796637],[55.60435604356044,25.533533950876176],[55.6259562595626,25.53691110541594],[55.63315633156333,25.543665414495464],[55.647556475564755,25.58250269170277],[55.65835658356585,25.59769988713171],[55.68355683556837,25.623028546179953],[55.697956979569796,25.63484858706913],[55.73395733957341,25.646668627958306],[55.75915759157593,25.68044017335596],[55.76995769957699,25.6871944824355],[55.780757807578084,25.688883059705375],[55.791557915579176,25.692260214245138],[55.80235802358024,25.69732594605479],[55.80955809558097,25.70408025513433],[55.81315813158133,25.705768832404203],[55.841958419584216,25.714211718753617],[55.8779587795878,25.73954037780186],[55.931959319593204,25.80201773678752],[55.96075960759609,25.823969241296],[55.95355953559536,25.813837777676696],[55.94635946359463,25.793574850438105],[55.93555935559357,25.776689077739277],[55.9427594275943,25.769934768659752],[55.949959499594996,25.768246191389863],[55.95355953559536,25.771623345929626],[55.95355953559536,25.78682054135858],[55.96435964359645,25.815526354946584],[55.96435964359645,25.834100704915286],[55.97155971559715,25.8425435912647],[56.01476014760149,25.87969229120212],[56.02196021960219,25.88982375482142],[56.02916029160292,25.901643795710598],[56.03636036360365,25.915152413869663],[56.03996039960401,25.933726763838365],[56.032760327603285,25.933726763838365],[56.02916029160292,25.923595300219077],[56.02556025560256,25.916840991139537],[56.01836018360186,25.91008668206001],[56.007560075600765,25.90670952752025],[56.032760327603285,25.94723538199743],[56.05436054360544,25.9894498137445],[56.07236072360723,26.05192717273016],[56.0759607596076,26.060370059079574],[56.0759607596076,26.062058636349462],[56.083160831608325,26.070501522698876],[56.09036090360905,26.105961645366406],[56.158761587615885,26.200521972479834],[56.18036180361804,26.246113558766666],[56.19116191161913,26.25455644511608],[56.209162091620925,26.262999331465494],[56.209162091620925,26.257933599655843],[56.209162091620925,26.244424981496792],[56.21996219962202,26.227539208797964],[56.21636216362165,26.222473476988313],[56.21276212762129,26.207276281559373],[56.21996219962202,26.207276281559373],[56.23076230762308,26.21740774517866],[56.2559625596256,26.21740774517866],[56.259562595625965,26.2241620542582],[56.26676266762669,26.227539208797964],[56.28116281162812,26.222473476988313],[56.29196291962921,26.21234201336901],[56.29556295562958,26.19376766340031],[56.30276302763028,26.205587704289485],[56.309963099631005,26.203899127019596],[56.317163171631734,26.200521972479834],[56.3279632796328,26.200521972479834],[56.35676356763568,26.21909632244855],[56.367563675636774,26.220784899718424],[56.39636396363966,26.2140305906389],[56.40356403564036,26.2140305906389],[56.40716407164072,26.222473476988313],[56.40356403564036,26.232604940607615],[56.392763927639294,26.23935924968714],[56.38916389163893,26.242736404226903],[56.367563675636774,26.244424981496792],[56.35676356763568,26.242736404226903],[56.34596345963462,26.23935924968714],[56.342363423634254,26.232604940607615],[56.33156331563316,26.2241620542582],[56.3207632076321,26.21740774517866],[56.309963099631005,26.220784899718424],[56.309963099631005,26.232604940607615],[56.317163171631734,26.27481937235467],[56.317163171631734,26.290016567783624],[56.34596345963462,26.269753640545034],[56.35676356763568,26.264687908735382],[56.36396363963641,26.27988510416432],[56.360363603636046,26.28663941324386],[56.34956349563495,26.29677087686315],[56.335163351633526,26.306902340482452],[56.3207632076321,26.310279495022215],[56.3279632796328,26.31872238137163],[56.33156331563316,26.320410958641503],[56.33876338763389,26.320410958641503],[56.342363423634254,26.32378811318128],[56.35676356763568,26.33729673134033],[56.360363603636046,26.34911677222952],[56.360363603636046,26.371068276737986],[56.36396363963641,26.38626547216694],[56.37116371163714,26.38626547216694],[56.3819638196382,26.35924823584881],[56.39996399963999,26.367691122198224],[56.40356403564036,26.372756854007875],[56.410764107641086,26.36431396765846],[56.40716407164072,26.35755965857892],[56.40716407164072,26.35418250403916],[56.40716407164072,26.352493926769284],[56.410764107641086,26.345739617689745],[56.42156421564218,26.352493926769284],[56.425164251642514,26.34911677222952],[56.43236432364324,26.342362463149982],[56.43956439564397,26.33729673134033],[56.461164611646126,26.332230999530694],[56.475564755647554,26.330542422260805],[56.486364863648646,26.330542422260805],[56.486364863648646,26.335608154070457],[56.48276482764828,26.347428194959633],[56.47916479164792,26.352493926769284],[56.500765007650074,26.35924823584881],[56.511565115651166,26.333919576800568],[56.5079650796508,26.32378811318128],[56.493564935649374,26.32209953591139],[56.468364683646854,26.32378811318128],[56.4539645396454,26.31872238137163],[56.42156421564218,26.295082299593275],[56.40716407164072,26.284950835973973],[56.40716407164072,26.27988510416432],[56.39996399963999,26.268065063275145],[56.42156421564218,26.247802136036555],[56.43236432364324,26.23935924968714],[56.4467644676447,26.235982095147378],[56.4539645396454,26.23935924968714],[56.46476464764649,26.247802136036555],[56.475564755647554,26.24949071330643],[56.486364863648646,26.235982095147378],[56.468364683646854,26.205587704289485],[56.461164611646126,26.202210549749722],[56.4539645396454,26.220784899718424],[56.443164431644334,26.220784899718424],[56.43236432364324,26.220784899718424],[56.435964359643606,26.21234201336901],[56.435964359643606,26.205587704289485],[56.435964359643606,26.200521972479834],[56.43236432364324,26.19376766340031],[56.443164431644334,26.18194762251113],[56.461164611646126,26.173504736161718],[56.47196471964722,26.163373272542415],[56.47916479164792,26.146487499843587],[56.468364683646854,26.146487499843587],[56.45756457564576,26.148176077113476],[56.4467644676447,26.153241808923127],[56.43956439564397,26.159996118002653],[56.425164251642514,26.153241808923127],[56.410764107641086,26.158307540732764],[56.40356403564036,26.170127581621955],[56.40356403564036,26.187013354320783],[56.39996399963999,26.183636199781006],[56.3819638196382,26.17688189070148],[56.37836378363784,26.173504736161718],[56.37836378363784,26.183636199781006],[56.37836378363784,26.19207908613042],[56.3819638196382,26.19883339520996],[56.392763927639294,26.200521972479834],[56.367563675636774,26.203899127019596],[56.342363423634254,26.19207908613042],[56.3279632796328,26.173504736161718],[56.335163351633526,26.159996118002653],[56.33156331563316,26.14986465438335],[56.3279632796328,26.1363560362243],[56.33156331563316,26.124535995335123],[56.335163351633526,26.111027377176057],[56.34596345963462,26.131290304414648],[56.35316353163532,26.143110345303825],[56.36396363963641,26.146487499843587],[56.37116371163714,26.139733190764062],[56.37116371163714,26.127913149874885],[56.367563675636774,26.11440453171582],[56.36396363963641,26.104273068096518],[56.3819638196382,26.097518759016992],[56.47196471964722,26.09920733628688],[56.46476464764649,26.085698718127816],[56.450364503645034,26.07387867723864],[56.417964179641814,26.05699290453981],[56.38916389163893,26.04686144092051],[56.37836378363784,26.038418554571095],[56.3819638196382,26.021532781872267],[56.40716407164072,26.035041400031332],[56.42156421564218,26.023221359142156],[56.42156421564218,26.00464700917344],[56.39996399963999,25.99113839101439],[56.40356403564036,25.981006927395086],[56.417964179641814,25.964121154696258],[56.42156421564218,25.957366845616733],[56.43236432364324,25.95230111380708],[56.4539645396454,25.94723538199743],[56.4467644676447,25.94216965018778],[56.443164431644334,25.938792495648016],[56.43956439564397,25.92528387748895],[56.425164251642514,25.933726763838365],[56.40716407164072,25.937103918378142],[56.392763927639294,25.935415341108254],[56.3819638196382,25.92528387748895],[56.39996399963999,25.901643795710598],[56.392763927639294,25.87969229120212],[56.37476374763747,25.859429363963528],[56.36396363963641,25.837477859455063],[56.36396363963641,25.830723550375524],[56.36396363963641,25.80708346859717],[56.342363423634254,25.790197695898343],[56.3279632796328,25.763180459580212],[56.317163171631734,25.74967184142116],[56.30276302763028,25.741228955071747],[56.30276302763028,25.763180459580212],[56.28836288362885,25.741228955071747],[56.27396273962739,25.709145986943966],[56.26676266762669,25.671997287006548],[56.27396273962739,25.63991431887878],[56.27756277562776,25.628094277989604],[56.29916299162991,25.616274237100427],[56.32436324363243,25.607831350751013],[56.33876338763389,25.60445419621125],[56.34956349563495,25.59263415532206],[56.37116371163714,25.525091064526762],[56.36396363963641,25.433907891953098],[56.36396363963641,25.423776428333795],[56.367563675636774,25.39675919201568],[56.367563675636774,25.388316305666265],[56.360363603636046,25.376496264777074],[56.360363603636046,25.36805337842766],[56.37116371163714,25.351167605728847],[56.37476374763747,25.341036142109544],[56.37836378363784,25.33428183303002],[56.3819638196382,25.32752752395048],[56.3819638196382,25.320773214870954],[56.3819638196382,25.314018905791414],[56.3819638196382,25.302198864902238],[56.37836378363784,25.281935937663647],[56.37476374763747,25.253230124075642],[56.367563675636774,25.2093271150587],[56.36396363963641,25.06748662438855],[56.360363603636046,25.057355160769248],[56.3819638196382,24.97799202908476],[56.40716407164072,24.896940320130398],[56.468364683646854,24.77536275669884],[56.47916479164792,24.765231293079538],[56.486364863648646,24.741591211301184],[56.493564935649374,24.699376779554115],[56.612366123661246,24.496747507168195],[56.6339663396634,24.471418848119953],[56.69156691566917,24.42582726183312],[56.803168031680315,24.30256112113169],[56.8247682476825,24.270478153003907],[56.8319683196832,24.251903803035205],[56.84276842768429,24.2231979894472],[56.93996939969401,24.115129044174708],[57.05877058770588,24.022257294331155],[57.15237152371523,23.95302562626597],[57.18477184771848,23.934451276297253],[57.32517325173254,23.88379395820077],[57.50877508775088,23.839890949183825],[57.5879758797588,23.807807981056058],[57.64557645576457,23.79092220835723],[57.68517685176852,23.78416789927769],[57.71037710377104,23.782479322007816],[57.7787777877779,23.78585647654758],[57.79677796777969,23.782479322007816],[57.825578255782574,23.747019199340272],[57.83637836378364,23.740264890260747],[57.857978579785794,23.73351058118122],[57.88677886778868,23.72169054029203],[57.9119791197912,23.718313385752268],[58.04158041580416,23.725067694831807],[58.08838088380884,23.72169054029203],[58.13158131581318,23.713247653942616],[58.19278192781928,23.689607572164263],[58.210782107821075,23.6862304176245],[58.228782287822895,23.679476108544975],[58.26478264782648,23.64401598587743],[58.2827828278283,23.632195944988254],[58.31878318783188,23.620375904099078],[58.361983619836195,23.615310172289426],[58.412384123841235,23.616998749559315],[58.45198451984521,23.62375305863884],[58.47358473584737,23.632195944988254],[58.48438484384846,23.63895025406778],[58.49158491584916,23.655836026766607],[58.49878498784989,23.657524604036496],[58.51678516785168,23.652458872226845],[58.55998559985602,23.650770294956956],[58.58518585185854,23.647393140417194],[58.60318603186033,23.637261676797905],[58.613986139861396,23.62544163590873],[58.631986319863216,23.584915781431533],[58.64278642786428,23.57647289508212],[58.646386463864644,23.574784317812245],[58.64998649986501,23.569718586002594],[58.657186571865736,23.56634143146283],[58.6607866078661,23.56296427692307],[58.6679866798668,23.564652854192943],[58.67518675186753,23.564652854192943],[58.67878678786789,23.56296427692307],[58.69318693186932,23.551144236033878],[58.70398703987041,23.542701349684464],[58.70758707587078,23.53594704060494],[58.714787147871476,23.53594704060494],[58.721987219872204,23.549455658764003],[58.721987219872204,23.542701349684464],[58.72558725587257,23.5393241951447],[58.72558725587257,23.53594704060494],[58.72918729187293,23.529192731525413],[58.73638736387366,23.529192731525413],[58.73638736387366,23.532569886065176],[58.739987399873996,23.542701349684464],[58.747187471874724,23.537635617874827],[58.75078750787509,23.53594704060494],[58.76158761587618,23.542701349684464],[58.7867878678787,23.512306958826585],[58.7939879398794,23.495421186127757],[58.79038790387904,23.480223990698804],[58.797587975879765,23.466715372539753],[58.80838808388086,23.42112378625292],[58.81918819188192,23.402549436284204],[58.88038880388805,23.35189211818772],[58.91638916389164,23.33669492275878],[58.93078930789309,23.318120572790065],[58.94518945189452,23.27590614104301],[58.95598955989561,23.25902036834418],[58.9847898478985,23.23200313202605],[59.00279002790029,23.21174020478746],[59.00999009990102,23.152640000341563],[59.074790747907485,23.093539795895666],[59.07839078390785,23.08509690954625],[59.08199081990821,23.054702518688373],[59.08919089190894,23.047948209608833],[59.09279092790928,23.042882477799196],[59.12159121591216,23.022619550560606],[59.1719917199172,22.993913736972587],[59.207992079920814,22.970273655194234],[59.233192331923334,22.943256418876118],[59.251192511925126,22.911173450748336],[59.28719287192874,22.82674458725421],[59.290792907929074,22.811547391825258],[59.2979929799298,22.792973041856555],[59.315993159931594,22.77946442369749],[59.351993519935206,22.760890073728774],[59.391593915939154,22.70178986928289],[59.39879398793988,22.686592673853937],[59.409594095940975,22.671395478424998],[59.45279452794529,22.63424677848758],[59.485194851948535,22.61904958305864],[59.50679506795069,22.600475233089924],[59.52839528395285,22.588655192200747],[59.535595355953575,22.583589460391096],[59.535595355953575,22.57176941950192],[59.53199531995321,22.57008084223203],[59.52119521195212,22.57176941950192],[59.51399513995142,22.575146574041682],[59.517595175951755,22.561637955882617],[59.52479524795248,22.55488364680309],[59.535595355953575,22.553195069533203],[59.549995499955,22.55488364680309],[59.62559625596256,22.580212305851333],[59.65439654396545,22.57008084223203],[59.693996939969395,22.541375028644026],[59.70119701197012,22.541375028644026],[59.71559715597158,22.543063605913915],[59.72279722797228,22.541375028644026],[59.72279722797228,22.536309296834375],[59.72639726397264,22.526177833215087],[59.72999729997301,22.521112101405436],[59.72999729997301,22.517734946865673],[59.72639726397264,22.51435779232591],[59.72639726397264,22.50760348324637],[59.73359733597337,22.500849174166845],[59.7407974079741,22.497472019627082],[59.744397443974435,22.495783442357194],[59.75159751597516,22.49409486508732],[59.75879758797589,22.49409486508732],[59.762397623976256,22.499160596896957],[59.75519755197553,22.50929206051626],[59.7407974079741,22.5244892559452],[59.744397443974435,22.537997874104263],[59.75519755197553,22.537997874104263],[59.77679776797768,22.541375028644026],[59.8019980199802,22.5346207195645],[59.82359823598236,22.50929206051626],[59.837998379983816,22.475520515118603],[59.845198451984515,22.44512612426071],[59.82359823598236,22.281334129082097],[59.812798127981296,22.23743112006514],[59.79119791197914,22.198593842857846],[59.73359733597337,22.12260786571312],[59.70479704797049,22.098967783934768],[59.686796867968695,22.08208201123594],[59.67959679596797,22.065196238537112],[59.67959679596797,22.041556156758745],[59.65799657996581,21.994275993202038],[59.65439654396545,21.945307252375443],[59.643596435964355,21.925044325136838],[59.60399603996041,21.9098471297079],[59.593195931959315,21.89296135700907],[59.57879578795789,21.855812657071652],[59.49959499594996,21.756186598148574],[59.467194671946714,21.666692002844798],[59.44919449194492,21.624477571097728],[59.35559355593557,21.486014234967342],[59.34839348393484,21.453931266839575],[59.34479344793448,21.44548838049016],[59.33759337593378,21.437045494140747],[59.19359193591936,21.37963386696474],[59.16479164791647,21.36274809426591],[59.05319053190533,21.276630653501883],[58.919989199892,21.14323304918115],[58.87678876788769,21.084132844735265],[58.86958869588696,21.074001381115963],[58.85518855188553,21.06555849476655],[58.83718837188374,21.04529556752796],[58.80838808388086,20.991261094891712],[58.80478804788049,20.98112963127241],[58.80118801188013,20.94566950860488],[58.797587975879765,20.935538044985577],[58.7939879398794,20.927095158636163],[58.73638736387366,20.88319214961922],[58.739987399873996,20.86292922238063],[58.721987219872204,20.84773202695169],[58.67878678786789,20.829157676982973],[58.682386823868256,20.82578052244321],[58.67518675186753,20.808894749744383],[58.671586715867164,20.807206172474494],[58.664386643866436,20.802140440664857],[58.6607866078661,20.797074708855206],[58.6607866078661,20.790320399775666],[58.6607866078661,20.781877513426252],[58.6679866798668,20.771746049806964],[58.67518675186753,20.764991740727424],[58.68598685986862,20.759926008917787],[58.70038700387005,20.766680317997313],[58.71838718387184,20.780188936156378],[58.72918729187293,20.786943245235904],[58.72918729187293,20.766680317997313],[58.71838718387184,20.753171699838248],[58.70038700387005,20.74135165894907],[58.682386823868256,20.73628592713942],[58.671586715867164,20.746417390758722],[58.6679866798668,20.746417390758722],[58.6607866078661,20.732908772599657],[58.65358653586537,20.70589153628154],[58.646386463864644,20.690694340852588],[58.639186391863916,20.683940031773062],[58.613986139861396,20.672119990883886],[58.60318603186033,20.66367710453447],[58.59238592385924,20.64341417729588],[58.581585815858176,20.61808551824764],[58.57438574385745,20.59106828192951],[58.570785707857084,20.564051045611393],[58.545585455854564,20.516770882054672],[58.531185311853136,20.481310759387142],[58.531185311853136,20.46611356395819],[58.52758527585277,20.457670677608775],[58.520385203852044,20.42389913221112],[58.51678516785168,20.417144823131594],[58.50958509585098,20.41545624586172],[58.49878498784989,20.410390514052068],[58.48438484384846,20.40363620497253],[58.47358473584737,20.396881895893003],[58.46638466384664,20.369864659574873],[58.444784447844484,20.358044618685696],[58.4159841598416,20.359733195955585],[58.39078390783908,20.368176082305],[58.37278372783729,20.376618968654412],[58.35838358383586,20.381684700464064],[58.32598325983261,20.383373277733938],[58.31518315183152,20.379996123194175],[58.289982899829,20.37155323684476],[58.27558275582757,20.368176082305],[58.279182791827935,20.376618968654412],[58.2827828278283,20.381684700464064],[58.279182791827935,20.385061855003826],[58.24318243182432,20.39350474135324],[58.22518225182253,20.396881895893003],[58.203582035820375,20.405324782242417],[58.19998199982001,20.42389913221112],[58.21438214382144,20.46611356395819],[58.21438214382144,20.452604945799138],[58.2179821798218,20.440784904909947],[58.22518225182253,20.432342018560533],[58.235982359823595,20.42389913221112],[58.23958239582396,20.444162059449724],[58.228782287822895,20.488065068466668],[58.23958239582396,20.510016572975147],[58.25038250382505,20.52859092294385],[58.261182611826115,20.557296736531853],[58.26478264782648,20.587691127389746],[58.253982539825415,20.609642631898225],[58.235982359823595,20.61639694097775],[58.20718207182074,20.613019786437988],[58.17478174781749,20.604576900088574],[58.14598145981461,20.586002550119858],[58.102781027810295,20.57587108650057],[58.0919809198092,20.567428200151156],[58.084780847808474,20.557296736531853],[58.06678066780668,20.51170515024502],[58.06678066780668,20.499885109355844],[58.07398073980741,20.489753645736556],[58.077580775807775,20.479622182117254],[58.06678066780668,20.47286787303773],[58.05598055980562,20.467802141228077],[58.0307803078031,20.462736409418426],[58.01278012780128,20.452604945799138],[57.994779947799486,20.442473482179835],[57.969579695796966,20.420521977671356],[57.96237962379624,20.410390514052068],[57.95517955179554,20.400259050432766],[57.95517955179554,20.3867504322737],[57.95517955179554,20.376618968654412],[57.969579695796966,20.36142177322546],[57.97317973179733,20.35297888687606],[57.9659796597966,20.33102738236758],[57.94797947979481,20.317518764208515],[57.9047790477905,20.300632991509687],[57.88677886778868,20.2905015278904],[57.868778687786886,20.276992909731334],[57.85437854378546,20.260107137032506],[57.850778507785094,20.243221364333678],[57.843578435784366,20.2314013234445],[57.832778327783274,20.217892705285436],[57.82197821978221,20.20100693258661],[57.82197821978221,20.177366850808255],[57.843578435784366,20.136840996331074],[57.84717847178473,20.111512337282832],[57.832778327783274,20.076052214615288],[57.81477814778148,20.020329164709167],[57.81477814778148,20.006820546550102],[57.81477814778148,19.97642615569221],[57.78957789577896,19.92408026032585],[57.775177751777534,19.868357210419717],[57.76077760777608,19.843028551371475],[57.699576995769974,19.755222533337573],[57.68877688776888,19.728205297019457],[57.692376923769245,19.697810906161564],[57.699576995769974,19.685990865272387],[57.71037710377104,19.677547978922973],[57.717577175771765,19.66741651530367],[57.72117721177213,19.65221931987473],[57.72117721177213,19.62182492901684],[57.717577175771765,19.608316310857788],[57.7139771397714,19.594807692698723],[57.70677706777067,19.56947903365048],[57.70317703177034,19.54921610641189],[57.71037710377104,19.5289531791733],[57.76077760777608,19.454655779298463],[57.767977679776806,19.437770006599635],[57.775177751777534,19.40906419301163],[57.775177751777534,19.3820469566935],[57.767977679776806,19.358406874915147],[57.75357753577538,19.311126711358426],[57.749977499775014,19.290863784119836],[57.749977499775014,19.267223702341482],[57.77157771577717,19.216566384245],[57.7787777877779,19.201369188816045],[57.80397803978042,19.17266337522804],[57.81117811178112,19.1574661797991],[57.80397803978042,19.11525174805203],[57.800378003780054,19.09498882081344],[57.839978399784,19.029134307288018],[57.839978399784,19.015625689128953],[57.81477814778148,18.9919856073506],[57.800378003780054,18.980165566461423],[57.79677796777969,18.978476989191535],[57.75357753577538,18.973411257381883],[57.74637746377465,18.968345525572246],[57.742777427774286,18.961591216492707],[57.73197731977319,18.953148330143293],[57.72117721177213,18.946394021063767],[57.71037710377104,18.94470544379388],[57.50157501575018,18.953148330143293],[57.44397443974441,18.94470544379388],[57.206372063720636,18.90924532112635],[57.0839708397084,18.877162352998567],[56.91476914769149,18.80961926220327],[56.84996849968502,18.765716253186312],[56.80676806768068,18.74545332594772],[56.78516785167852,18.728567553248894],[56.77436774367746,18.706616048740415],[56.76716767167673,18.696484585121127],[56.65916659166592,18.59516994892816],[56.64116641166413,18.55970982626063],[56.637566375663766,18.51242966270391],[56.644766447664495,18.478658117306253],[56.644766447664495,18.466838076417076],[56.64116641166413,18.4550180355279],[56.626766267662674,18.436443685559183],[56.619566195661974,18.419557912860355],[56.612366123661246,18.399294985621765],[56.60876608766088,18.389163522002477],[56.60876608766088,18.346949090255407],[56.601566015660154,18.304734658508337],[56.54756547565478,18.18991140415632],[56.561965619656206,18.16964847691773],[56.561965619656206,18.149385549679124],[56.54756547565478,18.129122622440534],[56.525965259652594,18.113925427011594],[56.48276482764828,18.097039654312766],[56.461164611646126,18.08521961342359],[56.43236432364324,18.032873718057218],[56.425164251642514,18.02780798624758],[56.410764107641086,18.02274225443793],[56.40356403564036,18.019365099898167],[56.35676356763568,17.97039635907157],[56.35676356763568,17.961953472722158],[56.35676356763568,17.94000196821368],[56.34596345963462,17.93831339094379],[56.18756187561877,17.956887740912507],[56.16956169561698,17.953510586372744],[56.13716137161373,17.94000196821368],[56.11556115561157,17.936624813673916],[56.032760327603285,17.94337912275344],[56.01116011160113,17.94000196821368],[55.94635946359463,17.914673309165437],[55.91035910359105,17.906230422816023],[55.65475654756548,17.89609895919672],[55.5539555395554,17.87077030014848],[55.52875528755288,17.869081722878605],[55.521555215552155,17.865704568338842],[55.51795517955179,17.862327413799065],[55.514355143551455,17.857261681989428],[55.50715507155073,17.853884527449665],[55.489154891548935,17.853884527449665],[55.48555485554857,17.853884527449665],[55.45315453154532,17.84544164110025],[55.445954459544595,17.8403759092906],[55.43155431554317,17.825178713861646],[55.41715417154171,17.784652859384465],[55.40635406354065,17.769455663955526],[55.39195391953919,17.752569891256698],[55.388353883538855,17.744127004907284],[55.3739537395374,17.703601150430103],[55.370353703537035,17.696846841350563],[55.35595355953561,17.681649645921624],[55.262352623526255,17.607352246046787],[55.23355233552337,17.558383505220192],[55.229952299523006,17.538120577981587],[55.22635226352264,17.516169073473122],[55.229952299523006,17.489151837154992],[55.24075240752407,17.475643218995927],[55.27315273152732,17.457068869027225],[55.294752947529474,17.43849451905851],[55.3019530195302,17.416543014550044],[55.3019530195302,17.37095142826321],[55.294752947529474,17.352377078294495],[55.255152551525526,17.29834260565825],[55.25155251552516,17.289899719308835],[55.2479524795248,17.27639110114977],[55.25155251552516,17.26288248299072],[55.255152551525526,17.257816751181068],[55.26595265952659,17.254439596641305],[55.26595265952659,17.247685287561765],[55.25875258752589,17.234176669402714],[55.255152551525526,17.229110937593063],[55.229952299523006,17.215602319433998],[55.219152191521914,17.210536587624347],[55.211952119521214,17.202093701274933],[55.20835208352085,17.19365081492552],[55.204752047520486,17.17676504222669],[55.193951939519394,17.16156784679775],[55.19755197551976,17.1565021149881],[55.19035190351903,17.144682074098924],[55.15795157951581,17.13623918774951],[55.143551435514354,17.127796301400096],[55.13995139951399,17.119353415050682],[55.13275132751329,17.105844796891617],[55.12555125551256,17.092336178732566],[55.111151111511134,17.087270446922915],[55.07155071550716,17.041678860636083],[55.028350283502846,17.01128446977819],[55.02115021150212,17.01128446977819],[55.010350103501054,17.026481665207143],[54.99954999549996,17.019727356127603],[54.98874988749887,17.004530160698664],[54.97434974349744,16.997775851619124],[54.959949599496014,16.99439869707936],[54.94554945549456,16.98933296526971],[54.93114931149313,16.987644387999836],[54.91674916749167,16.9910215425396],[54.902349023490245,16.97413576984077],[54.88434884348845,16.96907003803112],[54.84114841148411,16.964004306221483],[54.80874808748089,16.952184265332292],[54.79074790747907,16.952184265332292],[54.77994779947801,16.964004306221483],[54.76914769147692,16.957249997141943],[54.751147511475125,16.960627151681706],[54.74034740347403,16.957249997141943],[54.70434704347045,16.977512924380534],[54.69714697146972,16.97075861530101],[54.68994689946899,16.98933296526971],[54.68634686346866,17.00621873796854],[54.675546755467565,17.019727356127603],[54.63234632346325,17.026481665207143],[54.60354603546037,17.03661312882643],[54.592745927459276,17.03830170609632],[54.58194581945821,17.03661312882643],[54.56034560345606,17.03323597428667],[54.5459454594546,17.03154739701678],[54.51354513545135,17.03830170609632],[54.499144991449924,17.03830170609632],[54.48834488344883,17.034924551556543],[54.466744667446676,17.026481665207143],[54.46314463144631,17.024793087937255],[54.416344163441636,17.03830170609632],[54.391143911439116,17.039990283366194],[54.36954369543696,17.024793087937255],[54.358743587435896,17.029858819746906],[54.35154351543517,17.03154739701678],[54.164341643416435,17.01128446977819],[54.08514085140851,17.01128446977819],[54.06714067140672,17.00621873796854],[54.02394023940241,16.985955810729948],[54.013140131401315,16.977512924380534],[54.00954009540095,16.96907003803112],[54.00954009540095,16.960627151681706],[54.013140131401315,16.95387284260218],[54.013140131401315,16.945429956252767],[54.00954009540095,16.936987069903353],[53.99513995139952,16.925167029014176],[53.99153991539916,16.918412719934636],[53.980739807398095,16.908281256315348],[53.955539555395575,16.903215524505697],[53.90873908739087,16.901526947235823],[53.85113851138513,16.889706906346632],[53.829538295382974,16.888018329076758],[53.811538115381154,16.881264019997218],[53.79353793537936,16.87113255637793],[53.771937719377206,16.862689670028516],[53.753937539375414,16.867755401838167],[53.735937359373594,16.85593536094899],[53.710737107371074,16.835672433710386],[53.685536855368554,16.81372092920192],[53.678336783367854,16.795146579233204],[53.66753667536676,16.783326538344028],[53.64953649536497,16.773195074724725],[53.61713617136172,16.757997879295786],[53.58113581135811,16.749554992946372],[53.42273422734229,16.74617783840661],[53.339933399334,16.734357797517433],[53.17433174331745,16.68370047942095],[53.091530915309164,16.643174624943768],[53.091530915309164,16.64148604767388],[53.06993069930701,16.63135458405459],[53.02313023130233,16.6195345431654],[52.983529835298356,16.627977429514814],[52.97272972729729,16.617845965895526],[52.9619296192962,16.616157388625638],[52.95112951129511,16.616157388625638],[52.940329403294044,16.609403079546112],[52.92232922329225,16.590828729577396],[52.91152911529116,16.582385843227982],[52.88632886328864,16.575631534148457],[52.85032850328503,16.555368606909866],[52.81072810728108,16.548614297830326],[52.78912789127892,16.540171411480912],[52.75312753127531,16.518219906972448],[52.73512735127352,16.511465597892908],[52.598325983259855,16.476005475225378],[52.53352533525336,16.447299661637373],[52.421924219242214,16.371313684492648],[52.31752317523177,16.29195055280816],[52.29232292322925,16.263244739220156],[52.277922779227794,16.244670389251453],[52.259922599226,16.20921026658391],[52.22752227522275,16.17206156664649],[52.220322203222054,16.160241525757314],[52.21672216722169,16.148421484868138],[52.21672216722169,16.138290021248835],[52.220322203222054,16.12646998035966],[52.22392223922239,16.116338516740356],[52.22392223922239,16.112961362200593],[52.21672216722169,16.09438701223189],[52.195121951219534,16.070746930453524],[52.18432184321844,16.030221075976343],[52.15912159121592,16.001515262388338],[52.15552155521556,15.98462948968951],[52.162721627216285,15.96436656245092],[52.17712177121771,15.94241505794244],[52.187921879218806,15.918774976164087],[52.17712177121771,15.878249121686906],[52.19152191521917,15.863051926257953],[52.22392223922239,15.846166153559125],[52.22392223922239,15.832657535400074],[52.21672216722169,15.760048712795111],[52.220322203222054,15.716145703778167],[52.23112231122312,15.673931272031098],[52.238322383223846,15.668865540221447],[52.24192241922421,15.663799808411795],[52.245522455224574,15.65704549933227],[52.245522455224574,15.651979767522619],[52.238322383223846,15.641848303903316],[52.238322383223846,15.63678257209368],[52.238322383223846,15.63002826301414],[52.23472234722348,15.621585376664726],[52.22752227522275,15.616519644855089],[52.220322203222054,15.613142490315312],[52.19872198721987,15.611453913045438],[52.04752047520475,15.569239481298368],[52.04032040320405,15.562485172218842],[52.03312033120332,15.555730863139303],[52.02592025920259,15.550665131329652],[52.01872018720189,15.548976554059777],[52.00072000720007,15.547287976789889],[51.98991989919901,15.545599399520015],[51.91431914319145,15.515205008662122],[51.87471874718747,15.491564926883768],[51.87471874718747,15.46961342237529],[51.87471874718747,15.464547690565638],[51.87111871118711,15.464547690565638],[51.86751867518677,15.462859113295764],[51.86751867518677,15.451039072406573],[51.86391863918641,15.449350495136699],[51.860318603186045,15.452727649676461],[51.853118531185316,15.456104804216224],[51.84591845918459,15.459481958755987],[51.83871838718389,15.466236267835527],[51.827918279182796,15.4679248451054],[51.81711817118173,15.459481958755987],[51.809918099181004,15.456104804216224],[51.759517595175964,15.445973340596936],[51.68031680316804,15.403758908849866],[51.66591665916661,15.39193886796069],[51.66231662316625,15.376741672531736],[51.66951669516695,15.358167322563034],[51.676716767167676,15.346347281673857],[51.676716767167676,15.339592972594318],[51.65511655116552,15.332838663514792],[51.550715507155076,15.32270719989549],[51.52911529115292,15.317641468085839],[51.51471514715149,15.30751000446655],[51.49671496714967,15.297378540847248],[51.475114751147515,15.270361304529132],[51.45351453514536,15.270361304529132],[51.44631446314463,15.26698414998937],[51.44271442714427,15.26022984090983],[51.4319143191432,15.26022984090983],[51.38151381513816,15.238278336401365],[51.36711367113671,15.22983545005195],[51.34191341913419,15.238278336401365],[51.31311313113133,15.226458295512174],[51.28791287912881,15.209572522813346],[51.26991269912699,15.201129636463932],[51.06831068310683,15.150472318367463],[50.85230852308524,15.109946463890267],[50.661506615066145,15.059289145793798],[50.553505535055365,15.049157682174496],[50.45990459904601,15.010320404967189],[50.43110431104313,14.99512320953825],[50.35910359103593,14.93264585055259],[50.344703447034476,14.924202964203175],[50.301503015030164,14.91744865512365],[50.243902439024396,14.887054264265757],[50.17910179101793,14.843151255248813],[50.16470164701647,14.843151255248813],[50.14670146701468,14.849905564328338],[50.12150121501216,14.844839832518687],[50.07830078300785,14.826265482549985],[50.06030060300603,14.819511173470445],[50.05310053100533,14.819511173470445],[50.042300423004235,14.817822596200571],[50.03510035100351,14.839774100709036],[50.03150031500317,14.849905564328338],[50.02070020700208,14.849905564328338],[50.00630006300065,14.844839832518687],[49.941499414994155,14.838085523439162],[49.79749797497976,14.79249393715233],[49.57789577895781,14.736770887246195],[49.45909459094591,14.674293528260534],[49.41949419494196,14.657407755561707],[49.372693726937285,14.648964869212293],[49.35109351093513,14.640521982862879],[49.31149311493115,14.613504746544763],[49.228692286922865,14.574667469337456],[49.18909189091892,14.549338810289214],[49.18189181891819,14.517255842161447],[49.171091710917125,14.518944419431335],[49.15669156691567,14.52569872851086],[49.13869138691388,14.532453037590386],[49.11349113491136,14.530764460320512],[49.0918909189092,14.518944419431335],[49.077490774907744,14.50543580127227],[49.027090270902704,14.43620413320707],[49.00909009090091,14.40074401053954],[49.001890018900184,14.36021815606236],[49.00909009090091,14.355152424252708],[49.00909009090091,14.343332383363531],[49.00549005490055,14.331512342474355],[49.001890018900184,14.324758033394815],[48.99108991089912,14.316315147045401],[48.951489514895144,14.301117951616462],[48.94068940689408,14.294363642536936],[48.937089370893716,14.270723560758569],[48.92268922689229,14.262280674409155],[48.90468904689047,14.258903519869392],[48.886688866888676,14.250460633519978],[48.88308883088831,14.243706324440453],[48.87948879488795,14.235263438091039],[48.87948879488795,14.211623356312671],[48.875888758887584,14.206557624503034],[48.868688686886884,14.201491892693383],[48.861488614886156,14.194737583613858],[48.85428854288543,14.167720347295727],[48.836288362883636,14.15590030640655],[48.79668796687969,14.140703110977611],[48.73908739087392,14.068094288372649],[48.72108721087213,14.057962824753346],[48.7138871388714,14.054585670213584],[48.70308703087031,14.04614278386417],[48.69588695886961,14.042765629324407],[48.68868688686888,14.042765629324407],[48.68148681486815,14.042765629324407],[48.56628566285664,14.04614278386417],[48.54828548285482,14.041077052054519],[48.50508505085051,14.002239774847226],[48.49428494284945,13.998862620307463],[48.48708487084872,13.998862620307463],[48.47628476284763,13.997174043037575],[48.46908469084693,13.98873115668816],[48.45108451084511,14.01068266119664],[48.41508415084152,14.017436970276165],[48.33948339483396,14.015748393006291],[48.33948339483396,14.012371238466514],[48.34668346683469,14.002239774847226],[48.30348303483035,14.002239774847226],[48.18828188281884,13.96846822944957],[48.191881918819206,13.993796888497812],[48.17748177481775,14.008994083926751],[48.155881558815594,14.020814124815928],[48.141481414814166,14.03094558843523],[48.13428134281344,14.022502702085816],[48.105481054810554,14.036011320244882],[48.015480154801566,14.057962824753346],[48.00108001080011,14.049519938403932],[47.947079470794705,14.032634165705105],[47.93267932679328,14.03094558843523],[47.91827918279185,14.020814124815928],[47.86787867878681,13.961713920370045],[47.821078210782105,13.938073838591677],[47.66627666276665,13.887416520495194],[47.644676446764464,13.873907902336143],[47.56547565475657,13.789479038842003],[47.435874358743604,13.678032939029748],[47.39987399873999,13.65439285725138],[47.16587165871658,13.585161189186195],[46.910269102691046,13.532815293819837],[46.823868238682394,13.477092243913702],[46.70146701467016,13.429812080356982],[46.683466834668366,13.426434925817219],[46.665466654666545,13.429812080356982],[46.62946629466296,13.441632121246172],[46.60426604266044,13.441632121246172],[46.582665826658285,13.434877812166633],[46.539465394653945,13.41630346219793],[46.52146521465215,13.412926307658168],[46.312663126631264,13.412926307658168],[46.26946269462695,13.419680616737693],[46.247862478624796,13.43150065762687],[46.23346233462337,13.436566389436521],[46.229862298623004,13.43150065762687],[46.222662226622276,13.428123503087107],[46.197461974619756,13.419680616737693],[46.111061110611104,13.406171998578628],[45.94185941859419,13.399417689499103],[45.9238592385924,13.39604053495934],[45.89145891458915,13.382531916800275],[45.87705877058772,13.379154762260512],[45.83385833858338,13.380843339530387],[45.81585815858159,13.379154762260512],[45.80505805058053,13.372400453180973],[45.66465664656647,13.342006062323094],[45.63225632256322,13.325120289624266],[45.535055350553506,13.22887138524095],[45.509855098550986,13.20860845800236],[45.49545495454956,13.195099839843294],[45.4810548105481,13.157951139905876],[45.434254342543426,13.098850935459978],[45.401854018540206,13.070145121871974],[45.365853658536594,13.053259349173146],[45.19305193051932,13.012733494695965],[45.15345153451534,12.992470567457374],[45.11745117451176,12.962076176599481],[45.1030510305103,12.945190403900654],[45.099450994509965,12.93674751755124],[45.09225092250924,12.926616053931937],[45.09225092250924,12.924927476662063],[45.08505085050851,12.908041703963235],[45.08505085050851,12.889467353994519],[45.081450814508145,12.886090199454756],[45.05985059850599,12.826989995008859],[45.056250562505625,12.81685853138957],[45.06345063450635,12.77633267691239],[45.05985059850599,12.762824058753324],[45.03825038250383,12.756069749673784],[45.01665016650168,12.759446904213561],[44.99504995049952,12.76957836783285],[44.980649806498064,12.783086985991915],[44.980649806498064,12.79659560415098],[44.998649986499885,12.803349913230505],[45.01665016650168,12.801661335960631],[45.03465034650347,12.803349913230505],[45.0418504185042,12.820235685929333],[45.03825038250383,12.821924263199222],[45.023850238502405,12.840498613167924],[45.02025020250204,12.845564344977575],[45.02025020250204,12.848941499517338],[45.02025020250204,12.854007231326989],[45.02025020250204,12.857384385866752],[45.01665016650168,12.85907296313664],[45.00945009450095,12.857384385866752],[45.00945009450095,12.8523186540571],[45.00945009450095,12.847252922247463],[45.00945009450095,12.845564344977575],[45.00225002250022,12.833744304088398],[44.998649986499885,12.83205572681851],[44.99144991449916,12.83205572681851],[44.98424984249843,12.837121458628161],[44.9770497704977,12.83881003589805],[44.955449554495544,12.837121458628161],[44.94464944649448,12.833744304088398],[44.94104941049412,12.828678572278747],[44.93384933849339,12.813481376849808],[44.915849158491596,12.799972758690743],[44.897848978489804,12.79659560415098],[44.88344883448835,12.81010422231003],[44.872648726487284,12.803349913230505],[44.86904869048692,12.794907026881091],[44.872648726487284,12.76957836783285],[44.879848798487984,12.77633267691239],[44.88704887048871,12.778021254182264],[44.915849158491596,12.7746440996425],[44.91944919449196,12.771266945102738],[44.91944919449196,12.759446904213561],[44.91224912249123,12.747626863324385],[44.897848978489804,12.737495399705082],[44.879848798487984,12.729052513355668],[44.86904869048692,12.732429667895431],[44.840248402484036,12.744249708784608],[44.829448294482944,12.749315440594259],[44.82584825848258,12.757758326943673],[44.82584825848258,12.761135481483436],[44.822248222482244,12.764512636023198],[44.81144811448115,12.76957836783285],[44.78624786247863,12.772955522372612],[44.764647646476476,12.766201213293087],[44.728647286472864,12.742561131514734],[44.7250472504725,12.745938286054496],[44.721447214472164,12.752692595134022],[44.721447214472164,12.756069749673784],[44.7250472504725,12.766201213293087],[44.7178471784718,12.779709831452152],[44.70704707047071,12.793218449611217],[44.69264692646928,12.803349913230505],[44.6530465304653,12.818547108659445],[44.60984609846099,12.820235685929333],[44.57384573845738,12.81179279957992],[44.54144541445416,12.79659560415098],[44.49104491044912,12.752692595134022],[44.43344433444335,12.693592390688138],[44.42984429844299,12.688526658878487],[44.42264422644226,12.67670661798931],[44.41544415444156,12.669952308909771],[44.411844118441195,12.683460927068836],[44.40824408244083,12.685149504338725],[44.38304383043831,12.67670661798931],[44.35424354243543,12.669952308909771],[44.28944289442896,12.639557918051892],[44.2678426784268,12.636180763512115],[44.24624246242462,12.639557918051892],[44.228242282422826,12.637869340782004],[44.19224192241924,12.619294990813287],[44.17064170641706,12.617606413543413],[44.1490414904149,12.624360722622939],[44.13824138241384,12.639557918051892],[44.152641526415266,12.637869340782004],[44.177841778417786,12.632803608972353],[44.18864188641888,12.632803608972353],[44.19944199441994,12.639557918051892],[44.19944199441994,12.653066536210943],[44.19224192241924,12.659820845290483],[44.18144181441815,12.653066536210943],[44.152641526415266,12.656443690750706],[44.120241202412046,12.642935072591655],[44.06264062640628,12.612540681733762],[44.033840338403394,12.604097795384348],[44.0158401584016,12.604097795384348],[43.99063990639908,12.612540681733762],[43.9618396183962,12.599032063574697],[43.94743947439474,12.597343486304823],[43.925839258392585,12.610852104463874],[43.90783907839079,12.64462364986153],[43.893438934389366,12.653066536210943],[43.875438754387545,12.654755113480832],[43.85743857438575,12.663197999830246],[43.82863828638287,12.680083772529073],[43.81423814238144,12.688526658878487],[43.79623796237962,12.695280967958013],[43.774637746377465,12.698658122497775],[43.75303753037531,12.700346699767664],[43.73863738637388,12.705412431577315],[43.699036990369905,12.72736393608578],[43.68103681036811,12.735806822435194],[43.6450364503645,12.73411824516532],[43.63423634236344,12.73918397697497],[43.61983619836198,12.749315440594259],[43.60903609036092,12.75438117240391],[43.60183601836019,12.756069749673784],[43.58743587435876,12.751004017864147],[43.52983529835299,12.695280967958013],[43.52623526235263,12.690215236148362],[43.5118351183512,12.683460927068836],[43.490234902349044,12.680083772529073],[43.46863468634686,12.683460927068836],[43.46143461434616,12.693592390688138],[43.47943479434795,12.772955522372612],[43.483034830348316,12.81179279957992],[43.472234722347224,12.847252922247463],[43.45423454234543,12.87933589037523],[43.421834218342184,12.906353126693347],[43.41823418234182,12.916484590312649],[43.414634146341484,12.928304631201826],[43.407434074340756,12.93674751755124],[43.40023400234003,12.943501826630765],[43.396633966339664,12.951944712980179],[43.396633966339664,12.970519062948895],[43.3930339303393,12.989093412917597],[43.3858338583386,13.007667762886314],[43.37863378633787,13.022864958315253],[43.34263342633426,13.063390812792449],[43.33543335433356,13.075210853681625],[43.33543335433356,13.08196516276115],[43.321033210332104,13.105605244539504],[43.313833138331404,13.130933903587746],[43.31023310233104,13.13937678993716],[43.24903249032491,13.211985612542122],[43.22743227432275,13.28459443514707],[43.238232382323844,13.314988826004964],[43.24903249032491,13.34876037140262],[43.25263252632527,13.526060984740297],[43.27423274232743,13.558143952868079],[43.27783277832779,13.566586839217493],[43.281432814328156,13.573341148297018],[43.28503285032852,13.580095457376544],[43.295832958329584,13.585161189186195],[43.281432814328156,13.617244157313962],[43.28503285032852,13.686475825379162],[43.281432814328156,13.721935948046692],[43.24903249032491,13.784413307032352],[43.24183241832418,13.794544770651655],[43.23463234632348,13.875596479606017],[43.22743227432275,13.88572794322532],[43.16263162631628,13.95327103402063],[43.13743137431376,14.007305506656877],[43.11943119431194,14.05289709294371],[43.09423094230942,14.083291483801588],[43.08343083430836,14.159277460946313],[43.07623076230763,14.194737583613858],[43.06543065430654,14.225131974471736],[43.04743047430475,14.27578929256822],[43.01863018630186,14.368661042411773],[43.01143011430116,14.388923969650364],[43.0078300783008,14.419318360508242],[42.99342993429934,14.448024174096261],[42.98982989829898,14.480107142224028],[42.98622986229864,14.488550028573442],[42.98262982629828,14.495304337652968],[42.96462964629646,14.507124378542144],[42.96102961029612,14.513878687621684],[42.96102961029612,14.52569872851086],[42.96462964629646,14.530764460320512],[42.97182971829719,14.529075883050623],[42.98262982629828,14.52063299670121],[42.99342993429934,14.500370069462619],[43.0078300783008,14.454778483175787],[43.02223022230223,14.441269865016721],[43.02223022230223,14.471664255874614],[43.01863018630186,14.48517287403368],[43.0150301503015,14.496992914922856],[43.029430294302955,14.537518769400037],[43.01863018630186,14.571290314797693],[42.99702997029971,14.601684705655586],[42.98622986229864,14.633767673783353],[42.98982989829898,14.640521982862879],[42.99702997029971,14.650653446482181],[43.00063000630007,14.657407755561707],[43.00063000630007,14.662473487371358],[42.99702997029971,14.66585064191112],[42.99342993429934,14.667539219181009],[42.98982989829898,14.679359260070186],[42.98262982629828,14.684424991879837],[42.97542975429755,14.6878021464196],[42.97542975429755,14.691179300959362],[42.97182971829719,14.696245032769014],[42.96822968229682,14.701310764578665],[42.96102961029612,14.70806507365819],[42.953829538295395,14.741836619055846],[42.953829538295395,14.753656659945023],[42.9430294302943,14.789116782612567],[42.89622896228963,14.84821698705845],[42.88542885428856,14.883677109725994],[42.8818288182882,14.903940036964585],[42.8818288182882,14.915760077853761],[42.89262892628926,14.914071500583887],[42.89622896228963,14.905628614234473],[42.89262892628926,14.898874305154933],[42.89262892628926,14.892119996075408],[42.89262892628926,14.880299955186231],[42.89982899828999,14.861725605217515],[42.91062910629108,14.841462677978924],[42.92502925029251,14.822888328010208],[42.94662946629467,14.811068287121032],[42.94662946629467,14.826265482549985],[42.953829538295395,14.86003702794764],[42.953829538295395,14.880299955186231],[42.9430294302943,14.915760077853761],[42.9358293582936,14.947843045981529],[42.93222932229324,14.961351664140594],[42.92502925029251,14.971483127759896],[42.89982899828999,14.99512320953825],[42.88542885428856,15.008631827697315],[42.8818288182882,15.025517600396142],[42.878228782287835,15.049157682174496],[42.8818288182882,15.103192154810742],[42.878228782287835,15.12007792750957],[42.86382863828638,15.136963700208398],[42.827828278282794,15.152160895637337],[42.795427954279546,15.179178131955467],[42.777427774277754,15.190998172844644],[42.7558275582756,15.201129636463932],[42.73422734227344,15.209572522813346],[42.71262712627126,15.214638254622997],[42.6910269102691,15.214638254622997],[42.676626766267674,15.206195368273583],[42.67302673026731,15.185932441034993],[42.65862658626588,15.18255528649523],[42.6370263702637,15.190998172844644],[42.619026190261906,15.207883945543472],[42.61542615426154,15.22983545005195],[42.61182611826118,15.243344068211002],[42.62262622626227,15.24503264548089],[42.65502655026552,15.236589759131476],[42.67302673026731,15.239966913671239],[42.6838268382684,15.246721222750779],[42.68742687426874,15.256852686370067],[42.6910269102691,15.270361304529132],[42.6910269102691,15.28049276814842],[42.68022680226804,15.295689963577374],[42.676626766267674,15.30751000446655],[42.70542705427056,15.354790168023271],[42.71262712627126,15.366610208912448],[42.71622716227162,15.353101590753383],[42.71622716227162,15.336215818054555],[42.70902709027092,15.321018622625616],[42.69822698226983,15.310887159006313],[42.719827198271986,15.3024442726569],[42.73422734227344,15.294001386307485],[42.77382773827739,15.26022984090983],[42.777427774277754,15.253475531830304],[42.78102781027812,15.239966913671239],[42.777427774277754,15.221392563702537],[42.78102781027812,15.214638254622997],[42.795427954279546,15.209572522813346],[42.795427954279546,15.21801540916276],[42.795427954279546,15.223081140972411],[42.79182791827918,15.226458295512174],[42.78822788227882,15.22983545005195],[42.802628026280274,15.24503264548089],[42.809828098281,15.26698414998937],[42.80622806228064,15.344658704403969],[42.79902799027991,15.380118827071499],[42.78102781027812,15.407136063389629],[42.777427774277754,15.422333258818568],[42.777427774277754,15.43246472243787],[42.78102781027812,15.442596186057159],[42.78102781027812,15.456104804216224],[42.78102781027812,15.4679248451054],[42.777427774277754,15.479744885994577],[42.77382773827739,15.491564926883768],[42.75942759427596,15.51689358593201],[42.719827198271986,15.569239481298368],[42.719827198271986,15.577682367647782],[42.73422734227344,15.592879563076721],[42.72342723427235,15.603011026696024],[42.71622716227162,15.613142490315312],[42.70902709027092,15.628339685744265],[42.70542705427056,15.643536881173205],[42.71622716227162,15.678997003840749],[42.71262712627126,15.694194199269688],[42.6910269102691,15.702637085619102],[42.69822698226983,15.717834281048042],[42.70902709027092,15.726277167397456],[42.719827198271986,15.733031476476995],[42.73422734227344,15.743162940096283],[42.74142741427414,15.753294403715586],[42.745027450274506,15.761737290065],[42.74862748627487,15.771868753684288],[42.74862748627487,15.788754526383116],[42.752227522275234,15.815771762701246],[42.76662766627666,15.836034689939837],[42.78462784627848,15.849543308098902],[42.802628026280274,15.85967477171819],[42.820628206282066,15.87487196714713],[42.83142831428316,15.891757739845957],[42.83502835028352,15.915397821624325],[42.84222842228422,16.05217258048482],[42.83862838628386,16.097764166771654],[42.81342813428134,16.237916080171914],[42.809828098281,16.31221348004675],[42.80622806228064,16.31896778912629],[42.802628026280274,16.340919293634755],[42.802628026280274,16.33923071636488],[42.802628026280274,16.342607870904644],[42.802628026280274,16.347673602714295],[42.802628026280274,16.352739334523946],[42.79902799027991,16.357805066333583],[42.79182791827918,16.367936529952885],[42.78822788227882,16.371313684492648],[42.78822788227882,16.373002261762537],[42.78822788227882,16.410150961699955],[42.78102781027812,16.420282425319243],[42.795427954279546,16.452365393447025],[42.78822788227882,16.472628320685615],[42.74142741427414,16.524974216051973],[42.727027270272714,16.546925720560452],[42.72342723427235,16.567188647799043],[42.727027270272714,16.609403079546112],[42.73782737827378,16.653306088563056],[42.73782737827378,16.671880438531772],[42.719827198271986,16.675257593071535],[42.727027270272714,16.68201190215106],[42.71262712627126,16.69383194304025],[42.70542705427056,16.70902913846919],[42.701827018270194,16.722537756628256],[42.71262712627126,16.73098064297767],[42.70542705427056,16.741112106596958],[42.676626766267674,16.76475218837531],[42.67302673026731,16.77150649745485],[42.65862658626588,16.790080847423553],[42.6370263702637,16.815409506471795],[42.629826298263,16.820475238281446],[42.59742597425975,16.837361010980274],[42.58662586625866,16.837361010980274],[42.575825758257594,16.832295279170623],[42.543425434254345,16.877886865457455],[42.55422554225544,16.921789874474413],[42.54702547025471,16.93867564717324],[42.54702547025471,16.987644387999836],[42.543425434254345,17.004530160698664],[42.53622536225362,17.009595892508315],[42.52542525425255,17.014661624317952],[42.52182521825219,17.028170242477017],[42.5110251102511,17.03661312882643],[42.493024930249305,17.03830170609632],[42.47502475024751,17.03661312882643],[42.46062460624606,17.03830170609632],[42.44622446224463,17.048433169715608],[42.4390243902439,17.065318942414436],[42.42462424624247,17.092336178732566],[42.42102421024211,17.107533374161505],[42.41382413824138,17.14130491955916],[42.41022410224102,17.1565021149881],[42.40302403024032,17.16325642406764],[42.35622356223564,17.181830774036342],[42.35982359823598,17.164945001337514],[42.367023670236705,17.149747805908575],[42.3850238502385,17.12104199232057],[42.36342363423634,17.109221951431394],[42.37422374223743,17.043367437905957],[42.36342363423634,17.024793087937255],[42.35622356223564,17.045056015175845],[42.35622356223564,17.11428768324103],[42.35262352623528,17.134550610479636],[42.33822338223382,17.17338788768693],[42.32022320223203,17.30847406927755],[42.316623166231665,17.333802728325793],[42.30942309423094,17.35068850102462],[42.316623166231665,17.40134581912109],[42.316623166231665,17.42160874635968],[42.30942309423094,17.44356025086816],[42.30222302223024,17.453691714487462],[42.291422914229145,17.457068869027225],[42.28062280622808,17.457068869027225],[42.27342273422735,17.460446023566988],[42.26982269822699,17.46551175537664],[42.266222662226625,17.473954641726053],[42.2590225902259,17.48577468261523],[42.15462154621548,17.57358070064913],[42.14382143821439,17.576957855188894],[42.140221402214024,17.571892123379243],[42.133021330213296,17.580335009728657],[42.12222122221223,17.600597936967247],[42.10422104221044,17.627615173285378],[42.09702097020971,17.644500945984205],[42.09342093420935,17.65125525506373],[42.08622086220862,17.654632409603494],[42.064620646206464,17.65125525506373],[42.0538205382054,17.65294383233362],[42.050220502205036,17.666452450492685],[42.04302043020431,17.6748953368421],[41.999819998199996,17.717109768589154],[41.999819998199996,17.71542119131928],[41.99261992619927,17.712044036779517],[41.98541985419854,17.71035545950963],[41.97821978219784,17.71035545950963],[41.97101971019711,17.72048692312893],[41.938619386193864,17.762701354875986],[41.9278192781928,17.767767086685637],[41.87021870218703,17.82011298205201],[41.848618486184876,17.811670095702596],[41.8090180901809,17.836998754750837],[41.78741787417874,17.83362160021106],[41.77661776617768,17.86063883652919],[41.76221762217622,17.87583603195813],[41.74061740617407,17.891033227387084],[41.71901719017191,17.909607577355786],[41.6758167581676,17.96026489545227],[41.672216722167235,17.977150668151097],[41.672216722167235,17.990659286310162],[41.6758167581676,18.00079074992945],[41.672216722167235,18.009233636278864],[41.66141661416614,18.012610790818627],[41.65421654216544,18.015987945358404],[41.65061650616508,18.02274225443793],[41.65421654216544,18.031185140787343],[41.65061650616508,18.039628027136757],[41.60741607416074,18.075088149804287],[41.59301593015931,18.095351077042878],[41.6038160381604,18.113925427011594],[41.58581585815858,18.135876931520073],[41.57861578615788,18.14600839513936],[41.57501575015752,18.159517013298426],[41.571415714157155,18.164582745108078],[41.56061560615606,18.16795989964784],[41.5570155701557,18.174714208727366],[41.56061560615606,18.18991140415632],[41.53901539015391,18.191599981426194],[41.521015210152115,18.196665713235845],[41.52461524615248,18.201731445045496],[41.52461524615248,18.20510859958526],[41.52821528215284,18.206797176855147],[41.53541535415354,18.21017433139491],[41.52821528215284,18.221994372284087],[41.51741517415175,18.228748681363612],[41.50661506615066,18.228748681363612],[41.49221492214923,18.223682949553975],[41.49941499414996,18.233814413173263],[41.50301503015032,18.242257299522677],[41.50661506615066,18.25238876314198],[41.49941499414996,18.259143072221505],[41.50661506615066,18.27265169038057],[41.49941499414996,18.279405999460096],[41.488614886148866,18.281094576729984],[41.470614706147074,18.279405999460096],[41.47421474214744,18.29291461761916],[41.470614706147074,18.311488967587863],[41.463414634146346,18.331751894826468],[41.45621456214562,18.343571935715644],[41.45261452614528,18.35539197660482],[41.445414454144554,18.394229253812128],[41.44181441814419,18.402672140161542],[41.438214382143826,18.411115026510956],[41.438214382143826,18.463460921877314],[41.43461434614346,18.47021523095684],[41.43461434614346,18.4735923854966],[41.42741427414276,18.47696954003638],[41.420214202142034,18.47696954003638],[41.41661416614167,18.482035271846016],[41.413014130141306,18.49047815819543],[41.413014130141306,18.498921044544844],[41.413014130141306,18.505675353624383],[41.37701377013772,18.529315435402737],[41.369813698136994,18.536069744482262],[41.369813698136994,18.546201208101564],[41.362613626136266,18.55802124899074],[41.35541355413554,18.569841289879918],[41.34101341013411,18.57490702168957],[41.33381333813338,18.57997275349922],[41.33021330213302,18.58503848530887],[41.32661326613268,18.588415639848634],[41.32301323013232,18.58503848530887],[41.312213122131226,18.57490702168957],[41.30861308613086,18.573218444419695],[41.2978129781298,18.576595598959457],[41.287012870128706,18.583349908038983],[41.27621276212764,18.591792794388397],[41.269012690126914,18.6019242580077],[41.24021240212403,18.65764730791382],[41.22941229412294,18.672844503342773],[41.21501215012151,18.686353121501824],[41.211412114121146,18.698173162391],[41.20781207812078,18.711681780550066],[41.211412114121146,18.730256130518782],[41.236612366123666,18.796110644044205],[41.24021240212403,18.816373571282796],[41.243812438124394,18.82481645763221],[41.24741247412476,18.828193612171972],[41.24741247412476,18.834947921251512],[41.24021240212403,18.848456539410563],[41.236612366123666,18.848456539410563],[41.21501215012151,18.860276580299754],[41.211412114121146,18.861965157569628],[41.1718117181172,18.87209662118893],[41.161011610116105,18.90249101204681],[41.161011610116105,18.90924532112635],[41.13941139411395,18.932885402904702],[41.135811358113585,18.936262557444465],[41.135811358113585,18.946394021063767],[41.135811358113585,18.958214061952944],[41.14301143011431,18.976788411921646],[41.14661146611468,18.988608452810837],[41.15381153811538,18.995362761890362],[41.15741157411574,19.003805648239776],[41.15741157411574,19.022379998208493],[41.16461164611647,19.042642925447083],[41.17541175411756,19.067971584495325],[41.168211682116834,19.081480202654376],[41.15021150211504,19.093300243543553],[41.12861128611286,19.101743129892967],[41.085410854108545,19.113563170782157],[41.06741067410675,19.125383211671334],[41.05661056610566,19.15240044798945],[41.0458104581046,19.17435195249793],[41.03861038610387,19.182794838847343],[41.04221042210423,19.19461487973652],[41.04941049410496,19.218254961514873],[41.0458104581046,19.226697847864287],[41.04221042210423,19.245272197833003],[41.03861038610387,19.25540366145229],[41.035010350103505,19.263846547801705],[41.01701017010171,19.273978011421008],[41.01341013410135,19.28242089777042],[41.009810098100985,19.3043724022789],[40.99900999009992,19.31450386589819],[40.984609846098465,19.322946752247603],[40.95580955809558,19.343209679486193],[40.959409594095945,19.34658683402597],[40.959409594095945,19.358406874915147],[40.95580955809558,19.368538338534435],[40.94860948609488,19.38373553396339],[40.94500945009452,19.392178420312803],[40.94140941409415,19.40399846120198],[40.93780937809379,19.41919565663092],[40.93780937809379,19.431015697520095],[40.94500945009452,19.441147161139398],[40.95580955809558,19.447901470218923],[40.959409594095945,19.456344356568337],[40.95220952209522,19.46478724291775],[40.95580955809558,19.474918706537053],[40.95220952209522,19.48505017015634],[40.94860948609488,19.493493056505756],[40.94500945009452,19.505313097394932],[40.858608586085865,19.534018910982937],[40.83700837008371,19.545838951872128],[40.783007830078304,19.596496269968597],[40.76140761407615,19.608316310857788],[40.76140761407615,19.615070619937313],[40.77220772207724,19.613382042667425],[40.7938079380794,19.601562001778248],[40.801008010080096,19.64208785625543],[40.79740797407976,19.692745174351913],[40.79020790207903,19.714696678860392],[40.743407434074356,19.777174037846052],[40.725407254072536,19.78899407873523],[40.675006750067496,19.79574838781477],[40.65340653406534,19.79405981054488],[40.64620646206464,19.783928346925578],[40.657006570065704,19.760288265147224],[40.642606426064276,19.770419728766527],[40.62820628206282,19.79237123327499],[40.62100621006212,19.812634160513582],[40.62100621006212,19.821077046862996],[40.606606066060664,19.82951993321241],[40.56340563405635,19.885242983118545],[40.53460534605347,19.90381733308726],[40.52740527405274,19.910571642166786],[40.52740527405274,19.917325951246312],[40.541805418054196,19.944343187564442],[40.53460534605347,19.96122896026327],[40.523805238052375,19.973049001152447],[40.491404914049156,19.984869042041623],[40.45540455404554,20.006820546550102],[40.44460444604448,20.010197701089865],[40.43740437404375,20.02370631924893],[40.42660426604266,20.027083473788693],[40.41940419404196,20.030460628328456],[40.39420394203944,20.06423217372611],[40.38700387003871,20.067609328265874],[40.36180361803619,20.074363637345414],[40.3510035100351,20.074363637345414],[40.33300333003331,20.07942936915505],[40.315003150031515,20.091249410044227],[40.26820268202684,20.125020955441883],[40.23220232202323,20.16385823264919],[40.239402394023955,20.177366850808255],[40.221402214022135,20.18918689169743],[40.196201962019614,20.195941200776957],[40.163801638016395,20.20100693258661],[40.16020160201603,20.20607266439626],[40.14940149401494,20.217892705285436],[40.13500135001351,20.2314013234445],[40.12420124201242,20.24153278706379],[40.12420124201242,20.244909941603566],[40.11700117001172,20.251664250683092],[40.08460084600847,20.278681487001208],[40.06660066600668,20.287124373350622],[40.045000450004494,20.285435796080748],[40.019800198001974,20.282058641540985],[40.00180001800018,20.275304332461445],[39.99099990999912,20.26686144611203],[39.969399693996934,20.275304332461445],[39.92619926199262,20.298944414239813],[39.904599045990466,20.3090758778591],[39.904599045990466,20.295567259700036],[39.911799117991194,20.28881295062051],[39.918999189991894,20.28374721881086],[39.92619926199262,20.276992909731334],[39.929799297992986,20.275304332461445],[39.94059940599408,20.26855002338192],[39.94779947799478,20.26179571430238],[39.94059940599408,20.258418559762617],[39.92259922599226,20.26348429157227],[39.82539825398254,20.320895918748278],[39.810998109981114,20.33102738236758],[39.79659796597966,20.337781691447105],[39.778597785977865,20.342847423256757],[39.76059760597607,20.35129030960617],[39.74619746197462,20.381684700464064],[39.728197281972825,20.396881895893003],[39.67419674196742,20.43571917310031],[39.64539645396454,20.46104783214855],[39.5877958779588,20.552231004722216],[39.56619566195664,20.567428200151156],[39.56619566195664,20.57587108650057],[39.576995769957705,20.57418250923068],[39.58419584195843,20.57587108650057],[39.59139591395916,20.58093681831022],[39.5949959499595,20.589379704659635],[39.58059580595807,20.59106828192951],[39.56619566195664,20.59782259100905],[39.54459544595446,20.619774095517514],[39.53739537395376,20.629905559136816],[39.53019530195303,20.66029994999471],[39.526595265952665,20.670431413613997],[39.49419494194942,20.70589153628154],[39.49059490594908,20.72277730898037],[39.50499504995051,20.746417390758722],[39.47259472594726,20.7582374316479],[39.45819458194583,20.759926008917787],[39.45819458194583,20.751483122568374],[39.46539465394656,20.746417390758722],[39.468994689946896,20.74135165894907],[39.476194761947625,20.739663081679197],[39.45819458194583,20.744728813488834],[39.43659436594368,20.75654885437801],[39.42219422194222,20.771746049806964],[39.42939429394295,20.786943245235904],[39.42219422194222,20.792008977045555],[39.41499414994152,20.797074708855206],[39.418594185941856,20.80551759520462],[39.42219422194222,20.813960481554034],[39.42939429394295,20.807206172474494],[39.43659436594368,20.80045186339497],[39.443794437944376,20.797074708855206],[39.45819458194583,20.793697554315443],[39.450994509945104,20.80551759520462],[39.450994509945104,20.812271904284145],[39.450994509945104,20.817337636093797],[39.44739447394474,20.827469099713085],[39.443794437944376,20.827469099713085],[39.43659436594368,20.82578052244321],[39.42939429394295,20.829157676982973],[39.41499414994152,20.8460434496818],[39.41139411394116,20.8460434496818],[39.41139411394116,20.829157676982973],[39.389793897939,20.84097771787215],[39.360993609936116,20.86292922238063],[39.33939339393396,20.88825788142887],[39.33939339393396,20.91020938593735],[39.34659346593466,20.9051436541277],[39.35379353793539,20.89838934504816],[39.360993609936116,20.896700767778285],[39.360993609936116,20.90345507685781],[39.35739357393575,20.915275117746987],[39.35379353793539,20.920340849556638],[39.34659346593466,20.922029426826526],[39.335793357933596,20.927095158636163],[39.32859328593287,20.932160890445815],[39.317793177931776,20.93047231317594],[39.30699306993071,20.92540658136629],[39.29619296192962,20.9237180040964],[39.29619296192962,20.928783735906052],[39.267392673926736,20.969309590383233],[39.2637926379264,20.982818208542298],[39.260192601926036,20.999703981241126],[39.260192601926036,21.02334406301948],[39.25659256592567,21.03347552663878],[39.242192421924216,21.041918412988196],[39.23859238592388,21.05036129933761],[39.23859238592388,21.062181340226786],[39.234992349923516,21.067247072036437],[39.22779227792279,21.06893564930631],[39.184591845918476,21.097641462894316],[39.173791737917384,21.109461503783507],[39.166591665916656,21.136478740101623],[39.159391593915956,21.156741667340214],[39.15579155791559,21.166873130959516],[39.159391593915956,21.171938862769167],[39.166591665916656,21.185447480928218],[39.17019170191702,21.192201790007758],[39.16299162991632,21.20571040816681],[39.12699126991271,21.259744880803055],[39.11259112591128,21.26818776715247],[39.08019080190803,21.31546793070919],[39.159391593915956,21.37963386696474],[39.17019170191702,21.40496252601298],[39.173791737917384,21.43535691687086],[39.16299162991632,21.465751307728752],[39.148591485914864,21.48094850315769],[39.148591485914864,21.486014234967342],[39.159391593915956,21.494457121316756],[39.159391593915956,21.50796573947582],[39.141391413914135,21.541737284873477],[39.13059130591307,21.519785780364998],[39.11979119791198,21.516408625825235],[39.108991089910916,21.528228666714412],[39.10179101791019,21.548491593953003],[39.108991089910916,21.555245903032528],[39.090990909909095,21.577197407541007],[39.08739087390876,21.60590322112901],[39.090990909909095,21.636297611986905],[39.08739087390876,21.66500342557491],[39.07659076590767,21.69202066189304],[39.08019080190803,21.70552928005209],[39.09819098190982,21.71228358913163],[39.10179101791019,21.719037898211155],[39.108991089910916,21.73254651637022],[39.108991089910916,21.74774371179916],[39.10179101791019,21.759563752688337],[39.09459094590946,21.739300825449746],[39.08739087390876,21.730857939100332],[39.08019080190803,21.72579220729068],[39.065790657906575,21.72579220729068],[39.06219062190624,21.730857939100332],[39.06219062190624,21.73761224817987],[39.058590585905876,21.746055134529286],[39.05499054990551,21.751120866338923],[39.04779047790478,21.754498020878685],[39.04419044190442,21.759563752688337],[39.040590405904055,21.766318061767876],[39.03699036990372,21.776449525387164],[39.03699036990372,21.793335298085992],[39.033390333903355,21.801778184435406],[39.02979029790299,21.801778184435406],[39.0189901899019,21.80853249351493],[39.0189901899019,21.81190964805471],[39.015390153901535,21.818663957134234],[39.0117901179012,21.822041111673997],[38.97938979389795,21.862566966151178],[38.95058950589507,21.921667170597075],[38.932589325893275,22.006096034091215],[38.932589325893275,22.02467038405993],[38.957789577895795,22.03480184767922],[38.98658986589868,22.002718879551452],[39.00459004590047,22.002718879551452],[39.0117901179012,22.02467038405993],[39.0117901179012,22.043244734028633],[39.0117901179012,22.05506477491781],[39.015390153901535,22.058441929457572],[39.02979029790299,22.066884815806986],[39.033390333903355,22.071950547616638],[39.033390333903355,22.090524897585354],[39.04419044190442,22.131050752062535],[39.04779047790478,22.151313679301126],[39.040590405904055,22.151313679301126],[39.02619026190263,22.11754213390347],[39.0189901899019,22.131050752062535],[39.02259022590226,22.14287079295171],[39.02979029790299,22.153002256571014],[39.033390333903355,22.168199451999953],[39.033390333903355,22.208725306477135],[39.040590405904055,22.235742542795265],[39.0729907299073,22.271202665462795],[39.083790837908396,22.313417097209864],[39.090990909909095,22.323548560829167],[39.09819098190982,22.33199144717858],[39.108991089910916,22.34212291079787],[39.12339123391234,22.370828724385873],[39.1377913779138,22.386025919814827],[39.141391413914135,22.391091651624464],[39.141391413914135,22.402911692513655],[39.1377913779138,22.41473173340283],[39.12699126991271,22.421486042482357],[39.116191161911615,22.418108887942594],[39.108991089910916,22.40966600159318],[39.10179101791019,22.380960188005176],[39.09459094590946,22.370828724385873],[39.06939069390694,22.365762992576222],[39.06939069390694,22.39446880616424],[39.083790837908396,22.436683237911296],[39.0729907299073,22.490717710547543],[39.08019080190803,22.546440760453677],[39.0729907299073,22.573457996771808],[39.065790657906575,22.58696661493086],[39.03699036990372,22.622426737598403],[39.0117901179012,22.678149787504523],[38.99378993789938,22.708544178362416],[38.98658986589868,22.723741373791356],[38.98658986589868,22.735561414680546],[39.015390153901535,22.7592014964589],[39.0117901179012,22.765955805538425],[38.964989649896495,22.81661312363491],[38.9469894698947,22.831810319063848],[38.93618936189364,22.82674458725421],[38.939789397893975,22.81999027817467],[38.957789577895795,22.803104505475844],[38.964989649896495,22.79466161912643],[38.96858968589686,22.78453015550714],[38.96858968589686,22.77439869188784],[38.97218972189722,22.76426722826855],[38.97938979389795,22.75413576464925],[38.97218972189722,22.747381455569723],[38.957789577895795,22.77439869188784],[38.92898928989291,22.81492454636502],[38.90378903789039,22.84363035995304],[38.84978849788499,22.929747800717053],[38.84978849788499,22.943256418876118],[38.882188821888235,22.928059223447164],[38.914589145891455,22.86220470992174],[38.92898928989291,22.85713897811209],[38.939789397893975,22.850384669032564],[38.95058950589507,22.852073246302453],[38.957789577895795,22.85882755538198],[38.964989649896495,22.870647596271155],[38.95418954189543,22.88246763716033],[38.93618936189364,22.912862028018225],[38.92538925389255,22.917927759827876],[38.91818918189182,22.92130491436764],[38.91098910989112,22.928059223447164],[38.90378903789039,22.938190687066466],[38.90378903789039,22.950010727955643],[38.8929889298893,22.965207923384583],[38.87498874988751,22.971962232464122],[38.84978849788499,22.978716541543648],[38.83538835388356,22.98715942789306],[38.813788137881374,22.98209369608341],[38.79938799387995,22.998979468782238],[38.77778777787779,23.041193900529308],[38.788587885878854,23.05132536414861],[38.79938799387995,23.06483398230766],[38.80298802988031,23.080031177736615],[38.806588065880675,23.093539795895666],[38.80298802988031,23.122245609483684],[38.79938799387995,23.137442804912624],[38.79938799387995,23.1492628458018],[38.78498784987852,23.15432857761145],[38.77778777787779,23.139131382182498],[38.763387633876334,23.161082886690977],[38.74898748987491,23.183034391199456],[38.730987309873115,23.216805936597112],[38.712987129871294,23.235380286565814],[38.70218702187023,23.257331791074293],[38.69138691386914,23.272528986503232],[38.687786877868774,23.286037604662297],[38.680586805868074,23.304611954631014],[38.680586805868074,23.318120572790065],[38.673386733867346,23.348514963647958],[38.65898658986592,23.37215504542631],[38.648186481864826,23.40086085901433],[38.6409864098641,23.439698136221622],[38.637386373863734,23.468403949809627],[38.630186301863034,23.490355454318106],[38.630186301863034,23.507241227016934],[38.612186121861214,23.52412699971576],[38.604986049860514,23.53594704060494],[38.60138601386015,23.551144236033878],[38.60138601386015,23.568030008732705],[38.57618576185763,23.55620996784353],[38.5689856898569,23.56296427692307],[38.55818558185584,23.56296427692307],[38.561785617856174,23.54607850422424],[38.5689856898569,23.537635617874827],[38.59418594185942,23.529192731525413],[38.59418594185942,23.520749845176],[38.561785617856174,23.52412699971576],[38.54018540185402,23.542701349684464],[38.54018540185402,23.591670090511073],[38.49338493384934,23.64401598587743],[38.471784717847186,23.713247653942616],[38.46458464584646,23.736887735720984],[38.46098460984609,23.760527817499337],[38.453784537845394,23.78416789927769],[38.43578435784357,23.802742249246407],[38.428584285842874,23.80611940378617],[38.41778417784178,23.809496558325932],[38.39978399783999,23.814562290135584],[38.3889838898389,23.824693753754886],[38.38538385383853,23.838202371913937],[38.37818378183783,23.856776721882653],[38.36378363783638,23.87028534004172],[38.34938349383495,23.875351071851355],[38.33138331383316,23.878728226391132],[38.320583205832065,23.887171112740546],[38.30978309783097,23.89392542182007],[38.29898298982991,23.9108111945189],[38.28458284582845,23.927696967217727],[38.27378273782739,23.934451276297253],[38.25938259382593,23.944582739916555],[38.23778237782378,23.95133704899608],[38.22338223382235,23.95302562626597],[38.19818198181983,23.966534244425034],[38.18378183781837,23.976665708044322],[38.16578165781658,23.99355148074315],[38.14778147781479,24.01550298525163],[38.12618126181263,24.02901160341068],[38.10818108181081,24.044208798839634],[38.07938079380796,24.07122603515775],[38.07218072180723,24.074603189697527],[38.061380613806136,24.0762917669674],[38.05418054180544,24.07291461242764],[38.04698046980471,24.067848880617987],[38.02178021780219,24.081357498777052],[38.00738007380073,24.09317753966623],[37.967779677796784,24.116817621444582],[37.935379353793536,24.13876912595306],[37.942579425794264,24.150589166842238],[37.95697956979569,24.162409207731415],[37.98217982179821,24.16578636227119],[37.97497974979751,24.174229248620605],[37.95697956979569,24.17085209408083],[37.9389793897939,24.16072063046154],[37.93177931779317,24.174229248620605],[37.942579425794264,24.191115021319433],[37.94617946179463,24.206312216748373],[37.9389793897939,24.211377948558024],[37.93177931779317,24.20293506220861],[37.917379173791744,24.20124648493872],[37.91377913779138,24.191115021319433],[37.917379173791744,24.186049289509782],[37.92097920979211,24.177606403160368],[37.92457924579247,24.164097785001303],[37.92457924579247,24.15565489865189],[37.917379173791744,24.148900589572364],[37.89577895778959,24.157343475921778],[37.866978669786704,24.150589166842238],[37.82017820178203,24.18098355770013],[37.80577805778057,24.192803598589308],[37.766177661776624,24.221509412177312],[37.758977589775895,24.241772339415903],[37.74457744577447,24.250215225765317],[37.73017730177301,24.256969534844856],[37.71217712177122,24.267100998464144],[37.69417694176943,24.27892103935332],[37.676176761767636,24.290741080242512],[37.650976509765115,24.290741080242512],[37.64017640176402,24.292429657512386],[37.625776257762595,24.28060961662321],[37.62217622176223,24.268789575734033],[37.62937629376296,24.248526648495442],[37.58617586175862,24.246838071225554],[37.575375753757555,24.262035266654493],[37.54657546575467,24.273855307543684],[37.52137521375215,24.267100998464144],[37.499774997749995,24.289052502972623],[37.48537485374854,24.311004007481102],[37.46377463774638,24.339709821069107],[37.4277742777428,24.366727057387223],[37.41697416974171,24.40049860278488],[37.4277742777428,24.42076153002347],[37.4349743497435,24.419072952753595],[37.456574565745655,24.40725291186442],[37.46377463774638,24.422450107293358],[37.456574565745655,24.44102445726206],[37.31977319773199,24.625079379679278],[37.25857258572586,24.702753934093877],[37.229772297722974,24.73821405676142],[37.22617226172264,24.765231293079538],[37.229772297722974,24.771985602159077],[37.229772297722974,24.782117065778365],[37.229772297722974,24.792248529397668],[37.22617226172264,24.799002838477193],[37.21897218972191,24.802379993016956],[37.20817208172082,24.79055995212778],[37.197371973719754,24.788871374857905],[37.179371793717934,24.799002838477193],[37.164971649716506,24.81588861117602],[37.146971469714714,24.851348733843565],[37.1757717577176,24.851348733843565],[37.197371973719754,24.847971579303803],[37.21897218972191,24.846283002033914],[37.24417244172443,24.854725888383328],[37.254972549725494,24.871611661082156],[37.25857258572586,24.92226897917864],[37.280172801728014,24.96448341092571],[37.27657276572768,24.986434915434174],[37.25857258572586,25.028649347181243],[37.25137251372516,25.052289428959597],[37.25857258572586,25.111389633405494],[37.254972549725494,25.133341137913973],[37.25137251372516,25.155292642422452],[37.240572405724066,25.175555569661043],[37.229772297722974,25.194129919629745],[37.21177211772118,25.214392846868336],[37.20097200972012,25.224524310487638],[37.190171901719026,25.231278619567163],[37.179371793717934,25.239721505916577],[37.172171721717234,25.258295855885294],[37.16137161371614,25.26505016496482],[37.14337143371435,25.280247360393773],[37.121771217712194,25.298821710362475],[37.10377103771037,25.322461792140828],[37.09297092970931,25.344413296649307],[37.089370893708946,25.35454476026861],[37.089370893708946,25.376496264777074],[37.08577085770858,25.38493915112649],[37.07857078570785,25.39507061474579],[37.064170641706426,25.41026781017473],[37.06057060570606,25.420399273794033],[37.07857078570785,25.43053073741332],[37.064170641706426,25.45417081919169],[37.01737017370175,25.49469667366887],[37.01017010170102,25.508205291827935],[36.99576995769959,25.550419723575004],[36.988569885698865,25.55717403265453],[36.97416974169744,25.565616919003944],[36.97056970569707,25.570682650813595],[36.97056970569707,25.575748382623246],[36.97056970569707,25.589257000782297],[36.96696966969671,25.594322732591948],[36.95976959769598,25.606142773481125],[36.94536945369455,25.63484858706913],[36.93456934569346,25.646668627958306],[36.9237692376924,25.65511151430772],[36.89496894968951,25.665242977927022],[36.88056880568806,25.671997287006548],[36.84096840968411,25.72940891418257],[36.81576815768159,25.758114727770575],[36.79416794167943,25.75980330504045],[36.79416794167943,25.747983264151273],[36.80136801368013,25.736163223262096],[36.8049680496805,25.726031759642794],[36.79056790567907,25.720966027833157],[36.77976779767798,25.72434318237292],[36.74736747367476,25.74460610961151],[36.7329673296733,25.747983264151273],[36.72576725767257,25.753048995960924],[36.70056700567005,25.78006623227904],[36.69696696966972,25.790197695898343],[36.69336693366935,25.795263427707994],[36.69696696966972,25.81721493221646],[36.69336693366935,25.82228066402611],[36.68256682566826,25.825657818565873],[36.67536675366753,25.830723550375524],[36.66456664566647,25.856052209423765],[36.660966609666104,25.87969229120212],[36.6717667176672,25.901643795710598],[36.69336693366935,25.923595300219077],[36.704167041670416,25.943858227457667],[36.70776707767078,25.970875463775783],[36.704167041670416,25.999581277363802],[36.69696696966972,26.021532781872267],[36.6717667176672,26.045172863650635],[36.63936639366395,26.060370059079574],[36.6069660696607,26.068812945428988],[36.570965709657116,26.070501522698876],[36.534965349653504,26.082321563588053],[36.51336513365135,26.111027377176057],[36.44856448564485,26.246113558766666],[36.426964269642696,26.28157368143421],[36.383763837638384,26.333919576800568],[36.30816308163082,26.497711571979195],[36.2289622896229,26.62604344449028],[36.18216182161822,26.680077917126525],[36.124561245612455,26.727358080683246],[36.099360993609935,26.75437531700136],[36.08136081360814,26.79658974874843],[36.05256052560526,26.843869912305152],[36.0309603096031,26.906347271290812],[36.01296012960131,26.902970116751035],[35.998559985599854,26.913101580370338],[35.9769597695977,26.948561703037868],[35.91215912159123,26.99921902113435],[35.832958329583306,27.092090770977904],[35.80415804158042,27.142748089074388],[35.80055800558006,27.149502398153913],[35.796957969579694,27.159633861773216],[35.80055800558006,27.16807674812263],[35.81135811358115,27.18327394355157],[35.81135811358115,27.191716829900983],[35.807758077580786,27.20353687079016],[35.782557825578266,27.235619838917927],[35.69975699756998,27.325114434221717],[35.6529565295653,27.353820247809722],[35.64215642156421,27.36395171142901],[35.61695616956169,27.389280370477252],[35.58815588155883,27.42811764768456],[35.55935559355595,27.45513488400269],[35.51975519755197,27.519300820258223],[35.50895508955091,27.544629479306465],[35.505355053550545,27.564892406545056],[35.505355053550545,27.6003525292126],[35.50175501755018,27.618926879181302],[35.49095490954912,27.632435497340367],[35.45855458554587,27.66282988819826],[35.44055440554408,27.689847124516376],[35.41535415354156,27.750635906232148],[35.39375393753937,27.777653142550278],[35.38655386553867,27.78271887435993],[35.36495364953652,27.789473183439455],[35.35775357753579,27.794538915249106],[35.35055350553506,27.80129322432863],[35.3469534695347,27.814801842487697],[35.33615336153363,27.833376192456413],[35.33255332553327,27.862082006044417],[35.32175321753218,27.87559062420347],[35.271352713527136,27.92793651956984],[35.25695256952571,27.953265178618082],[35.246152461524616,27.961708064967496],[35.23175231752319,27.96846237404702],[35.18135181351815,28.002233919444677],[35.18135181351815,27.99547961036515],[35.17415174151742,27.99547961036515],[35.163351633516356,28.008988228524203],[35.177751777517784,28.019119692143505],[35.19935199351994,28.02756257849292],[35.21735217352173,28.037694042112207],[35.228152281522824,28.03262831030257],[35.22455224552246,28.039382619382096],[35.21735217352173,28.054579814811035],[35.21015210152103,28.056268392080923],[35.18135181351815,28.061334123890575],[35.17415174151742,28.064711278430337],[35.16695166951669,28.064711278430337],[35.16695166951669,28.057956969350812],[35.163351633516356,28.057956969350812],[35.15615156151563,28.064711278430337],[35.152551525515264,28.071465587509863],[35.145351453514536,28.076531319319514],[35.138151381513836,28.078219896589403],[35.120151201512016,28.078219896589403],[35.10935109351095,28.078219896589403],[35.09855098550986,28.09003993747858],[35.051750517505184,28.118745751066584],[35.04095040950409,28.113680019256932],[35.03015030150303,28.113680019256932],[35.019350193501936,28.113680019256932],[35.0229502295023,28.10861428744728],[35.026550265502664,28.103548555637644],[35.03015030150303,28.098482823827993],[35.019350193501936,28.103548555637644],[35.00855008550087,28.11030286471717],[34.99774997749978,28.113680019256932],[34.986949869498716,28.10861428744728],[34.976149761497624,28.103548555637644],[34.943749437494375,28.09510566928823],[34.936549365493676,28.091728514748453],[34.93294932949331,28.086662782938816],[34.92934929349295,28.078219896589403],[34.92214922149222,28.078219896589403],[34.92214922149222,28.084974205668928],[34.91494914949149,28.084974205668928],[34.90054900549006,28.081597051129165],[34.87894878948791,28.084974205668928],[34.860948609486115,28.084974205668928],[34.84654846548466,28.071465587509863],[34.842948429484295,28.076531319319514],[34.83934839348393,28.078219896589403],[34.83934839348393,28.084974205668928],[34.84654846548466,28.084974205668928],[34.84654846548466,28.093417092018342],[34.842948429484295,28.100171401097867],[34.84654846548466,28.10523713290752],[34.85734857348575,28.11030286471717],[34.86454864548645,28.11199144198706],[34.85734857348575,28.117057173796695],[34.84654846548466,28.117057173796695],[34.835748357483595,28.117057173796695],[34.8249482494825,28.11199144198706],[34.8249482494825,28.10523713290752],[34.83214832148323,28.10523713290752],[34.83214832148323,28.098482823827993],[34.82134821348214,28.09510566928823],[34.81414814148141,28.08835136020869],[34.80334803348035,28.071465587509863],[34.80334803348035,28.07484274204964],[34.79974799747998,28.076531319319514],[34.79614796147962,28.076531319319514],[34.792547925479255,28.078219896589403],[34.79614796147962,28.084974205668928],[34.80334803348035,28.09003993747858],[34.810548105481075,28.09510566928823],[34.817748177481775,28.098482823827993],[34.817748177481775,28.103548555637644],[34.817748177481775,28.106925710177407],[34.817748177481775,28.11199144198706],[34.80334803348035,28.113680019256932],[34.792547925479255,28.11030286471717],[34.785347853478555,28.10523713290752],[34.785347853478555,28.093417092018342],[34.77814778147783,28.09510566928823],[34.77814778147783,28.096794246558105],[34.77454774547746,28.09510566928823],[34.7709477094771,28.093417092018342],[34.7709477094771,28.096794246558105],[34.7709477094771,28.103548555637644],[34.7709477094771,28.10523713290752],[34.76374763747637,28.10523713290752],[34.76374763747637,28.098482823827993],[34.75654756547567,28.098482823827993],[34.75294752947531,28.106925710177407],[34.74574745747458,28.11199144198706],[34.742147421474215,28.11199144198706],[34.734947349473515,28.10523713290752],[34.72774727747279,28.11199144198706],[34.72414724147242,28.11536859652682],[34.72054720547206,28.123811482876235],[34.716947169471695,28.127188637415998],[34.709747097470995,28.140697255575063],[34.70614706147063,28.137320101035286],[34.70254702547027,28.13563152376541],[34.6989469894699,28.13225436922565],[34.69534695346954,28.127188637415998],[34.68094680946811,28.13563152376541],[34.67734677346775,28.13056579195576],[34.67734677346775,28.120434328336472],[34.67374673746738,28.11199144198706],[34.666546665466655,28.10861428744728],[34.65214652146523,28.103548555637644],[34.64854648546486,28.098482823827993],[34.64854648546486,28.093417092018342],[34.666546665466655,28.078219896589403],[34.666546665466655,28.071465587509863],[34.66294662946629,28.071465587509863],[34.659346593465955,28.06977701023999],[34.65574655746559,28.066399855700226],[34.65574655746559,28.064711278430337],[34.64854648546486,28.071465587509863],[34.641346413464134,28.054579814811035],[34.641346413464134,28.041071196651984],[34.634146341463435,28.03262831030257],[34.61254612546125,28.03093973303268],[34.616146161461614,28.034316887572444],[34.616146161461614,28.036005464842333],[34.61974619746198,28.037694042112207],[34.61254612546125,28.044448351191747],[34.608946089460915,28.059645546620686],[34.60534605346055,28.071465587509863],[34.60534605346055,28.096794246558105],[34.59814598145982,28.103548555637644],[34.5729457294573,28.093417092018342],[34.58014580145803,28.10523713290752],[34.5729457294573,28.11199144198706],[34.58734587345873,28.13225436922565],[34.59814598145982,28.139008678305174],[34.60534605346055,28.142385832844937],[34.60534605346055,28.147451564654588],[34.61254612546125,28.15082871919435],[34.61974619746198,28.15758302827389],[34.62694626946271,28.160960182813653],[34.61974619746198,28.16771449189318],[34.62334623346234,28.17278022370283],[34.62694626946271,28.176157378242593],[34.634146341463435,28.179534532782355],[34.641346413464134,28.181223110052244],[34.641346413464134,28.176157378242593],[34.63774637746377,28.176157378242593],[34.634146341463435,28.176157378242593],[34.634146341463435,28.17446880097272],[34.6449464494645,28.169403069163067],[34.65214652146523,28.16771449189318],[34.659346593465955,28.17109164643294],[34.659346593465955,28.181223110052244],[34.65574655746559,28.181223110052244],[34.65574655746559,28.18797741913177],[34.64854648546486,28.19473172821131],[34.64854648546486,28.201486037290834],[34.65574655746559,28.206551769100486],[34.666546665466655,28.20824034637036],[34.666546665466655,28.2149946554499],[34.666546665466655,28.225126119069188],[34.67374673746738,28.27071770535602],[34.67734677346775,28.269029128086146],[34.684546845468475,28.265651973546383],[34.68814688146881,28.263963396276495],[34.68814688146881,28.267340550816257],[34.68814688146881,28.27747201443556],[34.684546845468475,28.274094859895797],[34.68094680946811,28.27240628262591],[34.67374673746738,28.27747201443556],[34.69534695346954,28.294357787134388],[34.71334713347133,28.328129332532043],[34.73134731347315,28.363589455199573],[34.742147421474215,28.410869618756294],[34.760147601476035,28.436198277804536],[34.767347673476735,28.466592668662415],[34.77454774547746,28.483478441361243],[34.80334803348035,28.5273814503782],[34.79614796147962,28.572973036665033],[34.792547925479255,28.62025320022174],[34.77814778147783,28.664156209238698],[34.79614796147962,28.726633568224358],[34.810548105481075,28.758716536352125],[34.8249482494825,28.784045195400367],[34.8249482494825,28.790799504479892],[34.817748177481775,28.790799504479892],[34.835748357483595,28.816128163528134],[34.83934839348393,28.82794820441731],[34.83214832148323,28.8397682453065],[34.83214832148323,28.846522554386027],[34.842948429484295,28.87691694524392],[34.842948429484295,28.89042556340297],[34.8249482494825,28.893802717942748],[34.8249482494825,28.900557027022273],[34.83934839348393,28.922508531530752],[34.85734857348575,28.963034386007934],[34.86454864548645,29.006937395024877],[34.85374853748539,29.030577476803245],[34.85374853748539,29.045774672232184],[34.86454864548645,29.0643490222009],[34.87174871748718,29.08461194943949],[34.893348933489335,29.174106544743267],[34.8969489694897,29.187615162902333],[34.90774907749079,29.20956666741081],[34.90774907749079,29.216320976490337],[34.90774907749079,29.229829594649402],[34.918549185491855,29.238272480998816],[34.943749437494375,29.250092521887993],[34.936549365493676,29.26697829458682],[34.93294932949331,29.2889297990953],[34.936549365493676,29.30412699452424],[34.94734947349474,29.299061262714588],[34.9509495094951,29.300749839984476],[34.9509495094951,29.30412699452424],[34.9509495094951,29.305815571794113],[34.95454954549547,29.305815571794113],[34.94734947349474,29.31932418995318],[34.943749437494375,29.336209962652006],[34.9509495094951,29.35140715808096],[34.961749617496196,29.35985004443036],[34.968949689496895,29.45103321700404],[34.976149761497624,29.476361876052266],[34.99774997749978,29.518576307799336],[34.99774997749978,29.53377350322829],[34.976149761497624,29.55234785319699],[34.961749617496196,29.55234785319699],[34.961749617496196,29.555725007736754],[34.961749617496196,29.557413585006643],[34.961749617496196,29.55910216227653],[34.95454954549547,29.55910216227653],[34.9509495094951,29.545593544117466],[34.943749437494375,29.537150657768052],[34.92934929349295,29.518576307799336],[34.918549185491855,29.50675626691016],[34.91494914949149,29.500001957830634],[34.91494914949149,29.493247648751094],[34.911349113491156,29.48987049421133],[34.90414904149043,29.48987049421133],[34.893348933489335,29.48987049421133],[34.886148861488635,29.48987049421133],[34.87534875348754,29.48480476240168],[34.868148681486815,29.479739030592043],[34.860948609486115,29.472984721512503],[34.85374853748539,29.462853257893215],[34.84654846548466,29.45103321700404],[34.842948429484295,29.440901753384736],[34.83934839348393,29.432458867035322],[34.8249482494825,29.42908171249556],[34.82854828548287,29.42739313522567],[34.83214832148323,29.42739313522567],[34.83214832148323,29.425704557955797],[34.83214832148323,29.420638826146146],[34.8249482494825,29.417261671606383],[34.817748177481775,29.41219593979673],[34.81414814148141,29.40713020798708],[34.817748177481775,29.400375898907555],[34.810548105481075,29.398687321637667],[34.80694806948071,29.396998744367792],[34.80694806948071,29.39193301255814],[34.810548105481075,29.38686728074849],[34.79974799747998,29.378424394399076],[34.77814778147783,29.34634142627131],[34.7709477094771,29.341275694461658],[34.76374763747637,29.336209962652006],[34.75654756547567,29.332832808112244],[34.75294752947531,29.327767076302592],[34.74934749347494,29.321012767223067],[34.74574745747458,29.315947035413416],[34.734947349473515,29.310881303603765],[34.734947349473515,29.305815571794113],[34.74574745747458,29.290618376365174],[34.742147421474215,29.27710975820611],[34.734947349473515,29.263601140047058],[34.72774727747279,29.250092521887993],[34.72774727747279,29.19943520379151],[34.72414724147242,29.185926585632444],[34.71334713347133,29.17748369928303],[34.6989469894699,29.170729390203505],[34.69534695346954,29.16397508112398],[34.69534695346954,29.150466462964914],[34.691746917469175,29.13526926753596],[34.684546845468475,29.118383494837147],[34.67374673746738,29.106563453947956],[34.67734677346775,29.09474341305878],[34.67374673746738,29.033954631343008],[34.67734677346775,29.025511744993594],[34.68814688146881,29.01200312683453],[34.68814688146881,29.000183085945352],[34.684546845468475,28.988363045056175],[34.67734677346775,28.983297313246524],[34.67014670146702,28.97992015870676],[34.6449464494645,28.968100117817585],[34.6449464494645,28.961345808738045],[34.641346413464134,28.94952576784887],[34.641346413464134,28.942771458769343],[34.6449464494645,28.922508531530752],[34.64854648546486,28.863408327084855],[34.61974619746198,28.846522554386027],[34.61974619746198,28.8397682453065],[34.62334623346234,28.831325358957088],[34.62694626946271,28.816128163528134],[34.62694626946271,28.80261954536907],[34.61974619746198,28.790799504479892],[34.62334623346234,28.78742234994013],[34.62694626946271,28.78235661813048],[34.634146341463435,28.7705365772413],[34.62334623346234,28.76547084543165],[34.62334623346234,28.760405113622014],[34.62334623346234,28.753650804542474],[34.62694626946271,28.74689649546295],[34.62334623346234,28.736765031843646],[34.61974619746198,28.73001072276412],[34.616146161461614,28.72494499095447],[34.61254612546125,28.719879259144818],[34.608946089460915,28.701304909176116],[34.583745837458395,28.67259909558811],[34.56934569345694,28.62700750930128],[34.52974529745299,28.572973036665033],[34.5189451894519,28.54426722307703],[34.515345153451534,28.54089006853725],[34.515345153451534,28.539201491267377],[34.515345153451534,28.53751291399749],[34.51174511745117,28.53751291399749],[34.52254522545226,28.50711852313961],[34.51174511745117,28.488544173170894],[34.490144901449014,28.473346977741954],[34.46854468544686,28.454772627773238],[34.47214472144722,28.453084050503364],[34.475744757447586,28.448018318693713],[34.46134461344613,28.441264009614173],[34.45414454144543,28.429443968724996],[34.44334443344434,28.383852382438164],[34.439744397443974,28.373720918818876],[34.42894428944291,28.356835146120048],[34.425344253442546,28.34501510523087],[34.41094410944109,28.31968644618263],[34.407344073440754,28.30786640529344],[34.407344073440754,28.290980632594625],[34.41094410944109,28.27747201443556],[34.414544145441454,28.267340550816257],[34.42174421744218,28.25552050992708],[34.42174421744218,28.25045477811743],[34.414544145441454,28.2335690054186],[34.42174421744218,28.218371809989662],[34.432544325443274,28.204863191830597],[34.44334443344434,28.18797741913177],[34.45414454144543,28.179534532782355],[34.45414454144543,28.17446880097272],[34.45414454144543,28.16771449189318],[34.45414454144543,28.162648760083528],[34.450544505445066,28.160960182813653],[34.4469444694447,28.15758302827389],[34.4469444694447,28.144074410114825],[34.439744397443974,28.11030286471717],[34.425344253442546,28.081597051129165],[34.44334443344434,28.05289123754116],[34.42894428944291,27.98365956947596],[34.43614436144361,27.975216683126547],[34.407344073440754,27.971839528586784],[34.400144001440026,27.96846237404702],[34.39654396543966,27.96339664223737],[34.3929439294393,27.953265178618082],[34.389343893438934,27.944822292268668],[34.37854378543787,27.93806798318913],[34.37134371343714,27.92287078776019],[34.364143641436414,27.9211822104903],[34.35334353343535,27.919493633220426],[34.34254342543426,27.916116478680664],[34.331743317433194,27.914427901410775],[34.331743317433194,27.909362169601124],[34.33534335343353,27.909362169601124],[34.338943389433894,27.90598501506136],[34.331743317433194,27.890787819632422],[34.3209432094321,27.862082006044417],[34.31014310143101,27.851950542425115],[34.30294302943031,27.851950542425115],[34.30294302943031,27.857016274234766],[34.29214292142922,27.86039342877453],[34.28494284942849,27.86377058331429],[34.27774277742779,27.85870485150464],[34.274142741427426,27.836753346996176],[34.26334263342633,27.824933306107],[34.27054270542706,27.813113265217808],[34.25974259742597,27.80129322432863],[34.23814238142381,27.794538915249106],[34.22734227342275,27.791161760709343],[34.21654216542166,27.791161760709343],[34.21294212942129,27.791161760709343],[34.21654216542166,27.77596456528039],[34.22014220142202,27.769210256200864],[34.256142561425634,27.769210256200864],[34.256142561425634,27.764144524391213],[34.248942489424905,27.764144524391213],[34.248942489424905,27.7557016380418],[34.256142561425634,27.752324483502036],[34.25974259742597,27.747258751692385],[34.26334263342633,27.73543871080321],[34.25254252542527,27.74050444261286],[34.248942489424905,27.742193019882748],[34.25254252542527,27.73881586534297],[34.25254252542527,27.737127288073097],[34.256142561425634,27.73543871080321],[34.256142561425634,27.728684401723683],[34.248942489424905,27.728684401723683],[34.24534245342454,27.737127288073097],[34.22734227342275,27.757390215311688],[34.20934209342093,27.77596456528039],[34.198541985419865,27.78271887435993],[34.19134191341914,27.786096028899692],[34.173341733417345,27.791161760709343],[34.07974079740799,27.80129322432863],[34.05454054540547,27.814801842487697],[33.98613986139861,27.88741066509266],[33.98253982539825,27.890787819632422],[33.97533975339755,27.889099242362533],[33.91773917739178,27.936379405919254],[33.90333903339035,27.941445137728905],[33.89253892538926,27.94313371499878],[33.87813878138783,27.934690828649366],[33.86733867338674,27.961708064967496],[33.86013860138601,27.954953755887956],[33.84933849338495,27.96508521950726],[33.813338133381336,27.9904138785555],[33.80613806138061,27.993791033095263],[33.80253802538027,27.99547961036515],[33.79893798937991,28.00054534217479],[33.795337953379544,28.008988228524203],[33.795337953379544,28.01236538306398],[33.788137881378816,28.017431114873617],[33.78093780937809,28.020808269413394],[33.762937629376296,28.024185423953156],[33.762937629376296,28.049514083001398],[33.71613716137162,28.07484274204964],[33.71613716137162,28.093417092018342],[33.70173701737019,28.103548555637644],[33.68373683736837,28.123811482876235],[33.67293672936731,28.1457629873847],[33.67293672936731,28.160960182813653],[33.669336693366944,28.164337337353416],[33.66573665736658,28.166025914623305],[33.662136621366216,28.169403069163067],[33.65853658536585,28.17446880097272],[33.65493654936549,28.17446880097272],[33.65493654936549,28.16771449189318],[33.64773647736479,28.16771449189318],[33.644136441364424,28.17278022370283],[33.63333633336333,28.181223110052244],[33.63333633336333,28.184600264592007],[33.618936189361904,28.2335690054186],[33.611736117361176,28.24032331449814],[33.60453604536045,28.23694615995838],[33.59733597335975,28.25045477811743],[33.57573575735759,28.280849168975323],[33.5649356493565,28.29773494167415],[33.435334353343535,28.366966609739336],[33.42813428134281,28.37709807335864],[33.42453424534247,28.378786650628513],[33.39933399333995,28.414246773296057],[33.38133381333813,28.429443968724996],[33.37053370533707,28.44295258688406],[33.37053370533707,28.448018318693713],[33.30573305733057,28.490232750440782],[33.29493294932951,28.498675636790196],[33.29133291332914,28.50711852313961],[33.28773287732878,28.515561409489024],[33.28053280532805,28.5273814503782],[33.26613266132662,28.539201491267377],[33.25533255332553,28.54426722307703],[33.26253262532626,28.551021532156554],[33.26253262532626,28.54426722307703],[33.26973269732699,28.54426722307703],[33.26253262532626,28.576350191204796],[33.24453244532447,28.57972734574456],[33.23733237332374,28.566218727585493],[33.25533255332553,28.551021532156554],[33.2409324093241,28.556087263966205],[33.23013230132301,28.56959588212527],[33.22293222932231,28.588170232093972],[33.21933219332195,28.628696086571154],[33.21213212132122,28.64558185926998],[33.19413194131943,28.674287672857986],[33.20493204932049,28.694550600096576],[33.21933219332195,28.741830763653297],[33.226532265322675,28.763782268161776],[33.21573215732158,28.77729088632084],[33.208532085320854,28.785733772670255],[33.20493204932049,28.805996699908846],[33.19773197731979,28.80937385444861],[33.1869318693187,28.81275100898837],[33.17973179731797,28.817816740798023],[33.176131761317635,28.836391090766725],[33.17253172531727,28.881982677053557],[33.168931689316906,28.893802717942748],[33.168931689316906,28.900557027022273],[33.176131761317635,28.908999913371687],[33.176131761317635,28.919131376990975],[33.17253172531727,28.941082881499455],[33.17253172531727,28.946148613309106],[33.168931689316906,28.961345808738045],[33.16533165331654,28.976543004167],[33.168931689316906,28.983297313246524],[33.176131761317635,28.99005162232605],[33.17253172531727,29.003560240485115],[33.158131581315814,29.013691704104417],[33.15453154531545,29.013691704104417],[33.150931509315114,29.023823167723705],[33.143731437314386,29.03226605407312],[33.13653136531366,29.033954631343008],[33.125731257312594,29.030577476803245],[33.1149311493115,29.04239751769242],[33.08973089730898,29.055906135851487],[33.07893078930789,29.0643490222009],[33.06453064530646,29.08967768124913],[33.06453064530646,29.096431990328668],[33.0609306093061,29.10149772213832],[33.04653046530467,29.111629185757607],[33.042930429304306,29.11669491756726],[33.03933039330394,29.118383494837147],[33.024930249302514,29.140334999345612],[33.02133021330215,29.1420235766155],[33.01053010530106,29.145400731155263],[33.01053010530106,29.14708930842515],[33.006930069300694,29.150466462964914],[33.00333003330033,29.158909349314328],[33.00333003330033,29.160597926584202],[32.956529565295654,29.202812358331272],[32.942129421294226,29.206189512871035],[32.92052920529207,29.218009553760226],[32.898928989289914,29.231518171919276],[32.88452884528846,29.243338212808467],[32.88092880928809,29.258535408237407],[32.873728737287394,29.278798335475997],[32.87012870128703,29.297372685444714],[32.85572855728557,29.305815571794113],[32.84492844928451,29.307504149064002],[32.83772837728378,29.315947035413416],[32.81972819728199,29.35985004443036],[32.816128161281625,29.35985004443036],[32.81972819728199,29.396998744367792],[32.816128161281625,29.413884517066606],[32.790927909279105,29.425704557955797],[32.740527405274065,29.456098948813676],[32.74772747727479,29.456098948813676],[32.74412744127443,29.462853257893215],[32.740527405274065,29.466230412432978],[32.7369273692737,29.467918989702852],[32.72972729727297,29.46960756697274],[32.72972729727297,29.47129614424263],[32.73332733327334,29.474673298782392],[32.7369273692737,29.478050453322155],[32.73332733327334,29.483116185131806],[32.72972729727297,29.483116185131806],[32.72252722527227,29.474673298782392],[32.72252722527227,29.467918989702852],[32.72252722527227,29.461164680623327],[32.72972729727297,29.456098948813676],[32.715327153271545,29.456098948813676],[32.72252722527227,29.493247648751094],[32.72252722527227,29.538839235037926],[32.71172711727118,29.581053666784996],[32.67932679326793,29.599628016753712],[32.67932679326793,29.606382325833238],[32.68652686526866,29.618202366722414],[32.68652686526866,29.63171098488148],[32.6829268292683,29.64690818031042],[32.67932679326793,29.662105375739372],[32.6829268292683,29.675613993898438],[32.690126901269025,29.695876921137028],[32.69372693726939,29.706008384756316],[32.69372693726939,29.722894157455144],[32.690126901269025,29.733025621074447],[32.68652686526866,29.74146850742386],[32.67932679326793,29.75159997104315],[32.65772657726578,29.77692863009139],[32.65412654126541,29.788748670980567],[32.64692646926471,29.79381440279022],[32.62532625326253,29.815765907298697],[32.60372603726037,29.82420879364811],[32.6109261092611,29.8343402572674],[32.62172621726219,29.842783143616813],[32.62532625326253,29.84616029815659],[32.62532625326253,29.874866111744595],[32.6109261092611,29.893440461713297],[32.57132571325715,29.92890058438084],[32.58212582125822,29.933966316190478],[32.58572585725858,29.93903204800013],[32.58212582125822,29.94409777980978],[32.57852578525785,29.94916351161943],[32.58212582125822,29.950852088889306],[32.58572585725858,29.952540666159194],[32.58212582125822,29.954229243429083],[32.57852578525785,29.955917820698957],[32.57492574925749,29.962672129778497],[32.56772567725679,29.967737861588134],[32.564125641256425,29.972803593397785],[32.56052560525606,29.976180747937548],[32.564125641256425,29.97955790247731],[32.56772567725679,29.9812464797472],[32.57132571325715,29.982935057017087],[32.57852578525785,29.982935057017087],[32.57852578525785,29.989689366096613],[32.57492574925749,29.99644367517614],[32.57492574925749,30.003197984255678],[32.57852578525785,30.011640870605092],[32.57132571325715,30.011640870605092],[32.5569255692557,29.98631221155685],[32.5569255692557,29.976180747937548],[32.56052560525606,29.967737861588134],[32.564125641256425,29.962672129778497],[32.57132571325715,29.955917820698957],[32.57132571325715,29.942409202539892],[32.564125641256425,29.942409202539892],[32.56052560525606,29.955917820698957],[32.55332553325533,29.962672129778497],[32.54252542525427,29.962672129778497],[32.531725317253176,29.955917820698957],[32.513725137251384,29.96098355250861],[32.49212492124923,29.950852088889306],[32.47772477724777,29.932277738920604],[32.46692466924671,29.915391966221776],[32.46692466924671,29.89681761625306],[32.47412474124741,29.88162042082412],[32.488524885248864,29.871488957204818],[32.51012510125102,29.86642322539518],[32.49212492124923,29.854603184506004],[32.40932409324094,29.75159997104315],[32.40212402124021,29.743157084693735],[32.39132391323915,29.73471419834432],[32.362523625236264,29.687434034787614],[32.3589235892359,29.67223683935866],[32.3589235892359,29.630022407611605],[32.35172351723517,29.613136634912777],[32.337323373233744,29.599628016753712],[32.337323373233744,29.592873707674173],[32.34812348123481,29.58443082132476],[32.3589235892359,29.570922203165708],[32.36972369723699,29.557413585006643],[32.37692376923769,29.535462080498164],[32.387723877238784,29.525330616878875],[32.438124381243824,29.49662480329087],[32.45252452524525,29.48649333967157],[32.49572495724959,29.440901753384736],[32.52812528125281,29.42401598068591],[32.5569255692557,29.398687321637667],[32.58212582125822,29.368292930779774],[32.59292592925931,29.34971858081107],[32.59652596525967,29.32438992176283],[32.60372603726037,29.292306953635062],[32.61812618126183,29.26191256277717],[32.63252632526326,29.243338212808467],[32.63252632526326,29.236583903728928],[32.62892628926289,29.2196981310301],[32.65772657726578,29.12007207210702],[32.65772657726578,29.111629185757607],[32.66132661326614,29.08967768124913],[32.65412654126541,29.081234794899714],[32.64332643326435,29.072791908550315],[32.639726397263985,29.060971867661124],[32.62892628926289,29.05759471312136],[32.62532625326253,29.047463249502073],[32.63252632526326,29.03733178588277],[32.62892628926289,29.008625972294766],[32.62532625326253,28.97316584962722],[32.63252632526326,28.961345808738045],[32.66132661326614,28.93432857241993],[32.67212672126723,28.920819954260864],[32.67572675726757,28.910688490641576],[32.67572675726757,28.89042556340297],[32.67932679326793,28.880294099783683],[32.70452704527045,28.858342595275204],[32.70812708127082,28.856654018005315],[32.74772747727479,28.804308122638957],[32.78372783727838,28.799242390829306],[32.80532805328053,28.778979463590716],[32.81972819728199,28.748585072732823],[32.866528665286666,28.59999027298315],[32.87012870128703,28.57972734574456],[32.88092880928809,28.574661613934907],[32.92772927729277,28.551021532156554],[32.95292952929529,28.530758604917963],[32.96372963729638,28.517249986758898],[32.974529745297474,28.50036421406007],[32.981729817298174,28.496987059520308],[32.992529925299266,28.493609904980545],[33.00333003330033,28.490232750440782],[33.006930069300694,28.483478441361243],[33.01413014130142,28.463215514122652],[33.042930429304306,28.414246773296057],[33.050130501305034,28.40749246421653],[33.050130501305034,28.40242673240688],[33.050130501305034,28.40073815513699],[33.04653046530467,28.40073815513699],[33.042930429304306,28.40073815513699],[33.08613086130862,28.368655187009225],[33.107731077310774,28.346703682500745],[33.10413104131041,28.326440755262155],[33.11133111331114,28.31968644618263],[33.118531185311866,28.309554982563327],[33.125731257312594,28.296046364404262],[33.125731257312594,28.287603478054848],[33.12933129331293,28.284226323515085],[33.15453154531545,28.25552050992708],[33.201332013320155,28.211617500910137],[33.21213212132122,28.189665996401658],[33.22293222932231,28.184600264592007],[33.233732337323374,28.179534532782355],[33.2409324093241,28.17446880097272],[33.24813248132483,28.160960182813653],[33.24453244532447,28.15082871919435],[33.24813248132483,28.142385832844937],[33.26613266132662,28.140697255575063],[33.284132841328415,28.13225436922565],[33.31653316533166,28.096794246558105],[33.33813338133382,28.084974205668928],[33.33813338133382,28.079908473859277],[33.33813338133382,28.071465587509863],[33.33813338133382,28.064711278430337],[33.334533345333455,28.056268392080923],[33.34533345333455,28.051202660271272],[33.35613356133561,28.04782550573151],[33.3669336693367,28.051202660271272],[33.37413374133743,28.036005464842333],[33.39573395733959,28.02756257849292],[33.44253442534426,28.015742537603742],[33.510935109351095,27.958330910427733],[33.536135361353615,27.916116478680664],[33.54693546935471,27.90598501506136],[33.55413554135541,27.895853551442073],[33.57573575735759,27.85026196515524],[33.57933579335793,27.83844192426605],[33.57933579335793,27.831687615186524],[33.58293582935829,27.824933306107],[33.586535865358655,27.804670378868394],[33.593735937359384,27.79791606978887],[33.593735937359384,27.791161760709343],[33.586535865358655,27.791161760709343],[33.57213572135723,27.791161760709343],[33.561335613356135,27.813113265217808],[33.536135361353615,27.826621883376873],[33.510935109351095,27.835064769726287],[33.48933489334894,27.84519623334559],[33.48213482134821,27.84519623334559],[33.47493474934751,27.831687615186524],[33.47493474934751,27.82324472883711],[33.47493474934751,27.816490419757585],[33.48213482134821,27.804670378868394],[33.50013500135003,27.78778460616958],[33.510935109351095,27.774275988010515],[33.51453514535146,27.759078792581562],[33.52173521735219,27.752324483502036],[33.536135361353615,27.7557016380418],[33.55053550535507,27.76245594712134],[33.55773557735577,27.759078792581562],[33.55773557735577,27.74557017442251],[33.55413554135541,27.732061556263446],[33.54693546935471,27.71855293810438],[33.536135361353615,27.708421474485093],[33.53973539735398,27.705044319945316],[33.54693546935471,27.69829001086579],[33.55053550535507,27.694912856326027],[33.56853568535686,27.68309281543685],[33.57573575735759,27.681404238166962],[33.57933579335793,27.6780270836272],[33.586535865358655,27.659452733658483],[33.593735937359384,27.652698424578958],[33.593735937359384,27.645944115499432],[33.58293582935829,27.654387001848846],[33.55773557735577,27.681404238166962],[33.55053550535507,27.681404238166962],[33.55053550535507,27.674649929087437],[33.55413554135541,27.667895620007897],[33.55773557735577,27.659452733658483],[33.55053550535507,27.659452733658483],[33.54333543335434,27.679715660897088],[33.52533525335255,27.6780270836272],[33.50733507335073,27.664518465468134],[33.49653496534967,27.645944115499432],[33.51813518135182,27.63581265188013],[33.536135361353615,27.61554972464154],[33.5649356493565,27.571646715624595],[33.561335613356135,27.564892406545056],[33.55773557735577,27.556449520195642],[33.55773557735577,27.548006633846228],[33.55773557735577,27.53618659295705],[33.57573575735759,27.52605512933775],[33.618936189361904,27.507480779369047],[33.63333633336333,27.49566073847987],[33.636936369363696,27.487217852130456],[33.636936369363696,27.465266347621977],[33.64053640536406,27.45513488400269],[33.64773647736479,27.446691997653275],[33.66573665736658,27.429806224954447],[33.67293672936731,27.419674761335145],[33.67653676536767,27.399411834096554],[33.68373683736837,27.35550882507961],[33.6909369093691,27.342000206920545],[33.72333723337235,27.31329439333254],[33.762937629376296,27.289654311554173],[33.80613806138061,27.272768538855345],[33.82413824138243,27.259259920696294],[33.838538385383856,27.242374147997467],[33.84213842138422,27.232242684378164],[33.838538385383856,27.193405407170857],[33.83493834938349,27.190028252631095],[33.82773827738279,27.184962520821458],[33.82413824138243,27.179896789011806],[33.82413824138243,27.174831057202155],[33.83133831338313,27.16638817085274],[33.83133831338313,27.159633861773216],[33.83133831338313,27.137682357264737],[33.838538385383856,27.12079658456591],[33.845738457384584,27.107287966406844],[33.86733867338674,27.095467925517667],[33.88173881738817,27.080270730088728],[33.89973899738999,27.05831922558025],[33.90693906939069,27.04143345288142],[33.89253892538926,27.04312203015131],[33.89253892538926,27.027924834722356],[33.89973899738999,27.014416216563305],[33.921339213392145,26.989087557515063],[33.92853928539287,26.97389036208611],[33.9429394293943,26.945184548498105],[33.95013950139503,26.93167593033904],[33.96453964539646,26.92154446671975],[33.97893978939791,26.914790157640212],[33.98973989739898,26.908035848560687],[33.996939969399705,26.89621580767151],[34.00414004140043,26.864132839543743],[34.00414004140043,26.84893564411479],[33.996939969399705,26.837115603225612],[33.97893978939791,26.837115603225612],[33.96813968139682,26.845558489575026],[33.96093960939609,26.850624221384678],[33.946539465394665,26.830361294146087],[33.946539465394665,26.81854125325691],[33.946539465394665,26.799966903288194],[33.946539465394665,26.783081130589366],[33.95013950139503,26.7695725124303],[33.95013950139503,26.742555276112185],[33.93213932139321,26.681766494396413],[33.9429394293943,26.653060680808395],[33.95373953739539,26.642929217189106],[33.98613986139861,26.634486330839692],[34.00414004140043,26.62604344449028],[34.0149401494015,26.61084624906134],[34.022140221402225,26.580451858203446],[34.05814058140581,26.54161458099614],[34.0689406894069,26.514597344678023],[34.10494104941051,26.42679132664412],[34.11934119341194,26.39977409032599],[34.1409414094141,26.372756854007875],[34.15174151741519,26.347428194959633],[34.17694176941771,26.315345226831866],[34.26334263342633,26.139733190764062],[34.299342993429946,26.08738729539769],[34.338943389433894,26.001269854633676],[34.41814418144182,25.903332372980486],[34.425344253442546,25.88982375482142],[34.43614436144361,25.861117941233417],[34.500945009450106,25.771623345929626],[34.53694536945369,25.736163223262096],[34.54774547745478,25.72434318237292],[34.634146341463435,25.568994073543706],[34.64854648546486,25.521713909987],[34.67014670146702,25.47949947823993],[34.68094680946811,25.428842160143446],[34.6989469894699,25.401824923825316],[34.742147421474215,25.351167605728847],[34.74934749347494,25.339347564839656],[34.760147601476035,25.308953173981777],[34.76374763747637,25.295444555822712],[34.79614796147962,25.25491870134553],[34.80694806948071,25.211015692328573],[34.85374853748539,25.138406869723624],[34.94014940149401,25.003320688133],[34.943749437494375,24.971237720005234],[34.95454954549547,24.944220483687104],[34.968949689496895,24.925646133718402],[34.99054990549905,24.90538320647981],[34.994149941499415,24.886808856511095],[34.994149941499415,24.849660156573677],[34.99774997749978,24.831085806604975],[35.001350013500144,24.81588861117602],[35.00855008550087,24.804068570286844],[35.0229502295023,24.79562568393743],[35.037350373503756,24.785494220318142],[35.062550625506276,24.763542715809663],[35.08055080550807,24.73483690222166],[35.10575105751059,24.657162347807045],[35.10935109351095,24.643653729647994],[35.127351273512744,24.618325070599752],[35.145351453514536,24.58624210247197],[35.15975159751599,24.574422061582794],[35.15975159751599,24.559224866153855],[35.145351453514536,24.527141898026088],[35.145351453514536,24.500124661707957],[35.18495184951851,24.484927466279018],[35.23535235352355,24.40049860278488],[35.37215372153722,24.30593827567145],[35.39015390153904,24.282298193893098],[35.429754297542985,24.186049289509782],[35.454954549545505,24.159032053191652],[35.49455494554945,24.10837473509517],[35.50895508955091,24.111751889634945],[35.50175501755018,24.125260507793996],[35.49455494554945,24.13876912595306],[35.505355053550545,24.14045770322295],[35.52335523355234,24.121883353254233],[35.55215552155522,24.110063312365057],[35.58815588155883,24.0762917669674],[35.60255602556026,24.047585953379397],[35.606156061560625,24.018880139791392],[35.63495634956351,24.001994367092564],[35.66735667356673,24.007060098902215],[35.69255692556925,24.000305789822676],[35.71775717757177,23.99355148074315],[35.739357393573954,23.983420017123848],[35.75375753757538,23.96822282169491],[35.77535775357754,23.924319812677965],[35.79335793357933,23.902368308169486],[35.78615786157863,23.892236844550183],[35.771757717577174,23.912499771788788],[35.75015750157502,23.93276269902738],[35.73575735757359,23.93276269902738],[35.69975699756998,23.917565503598425],[35.68535685356855,23.9108111945189],[35.663756637566394,23.919254080868313],[35.64575645756457,23.92600838994784],[35.62775627756278,23.9293855444876],[35.61335613356135,23.927696967217727],[35.5989559895599,23.9293855444876],[35.580955809558105,23.93613985356714],[35.57375573755738,23.944582739916555],[35.56295562955631,23.956402780805732],[35.55215552155522,23.959779935345495],[35.55215552155522,23.964845667155146],[35.53415534155343,23.97159997623467],[35.51255512555127,23.976665708044322],[35.505355053550545,23.97159997623467],[35.49095490954912,23.947959894456318],[35.48375483754839,23.917565503598425],[35.49095490954912,23.87028534004172],[35.480154801548025,23.82807090829465],[35.47655476554766,23.797676517436756],[35.48375483754839,23.772347858388514],[35.50175501755018,23.76897070384875],[35.50895508955091,23.757150662959575],[35.50895508955091,23.741953467530635],[35.505355053550545,23.735199158451096],[35.50895508955091,23.718313385752268],[35.50895508955091,23.70649334486309],[35.50895508955091,23.684541840354612],[35.505355053550545,23.642327408607542],[35.505355053550545,23.55620996784353],[35.50175501755018,23.5393241951447],[35.49095490954912,23.512306958826585],[35.49095490954912,23.49710976339763],[35.49455494554945,23.481912567968692],[35.50175501755018,23.466715372539753],[35.52335523355234,23.439698136221622],[35.54135541355416,23.409303745363744],[35.54855548555486,23.39410654993479],[35.55215552155522,23.377220777235962],[35.54855548555486,23.329940613679256],[35.55935559355595,23.282660450122535],[35.56655566555665,23.245511750185116],[35.57375573755738,23.21174020478746],[35.62055620556205,23.139131382182498],[35.63495634956351,23.110425568594493],[35.6529565295653,23.073276868657075],[35.66735667356673,22.98209369608341],[35.67455674556746,22.96689650065447],[35.69615696156961,22.931436377986927],[35.73575735757359,22.88415621443022],[35.764557645576474,22.870647596271155],[35.75015750157502,22.885844791700094],[35.7249572495725,22.931436377986927],[35.74295742957429,22.931436377986927],[35.757357573575746,22.922993491637513],[35.764557645576474,22.907796296208573],[35.771757717577174,22.890910523509746],[35.782557825578266,22.84194178268315],[35.78615786157863,22.833498896333737],[35.80055800558006,22.823367432714434],[35.81135811358115,22.811547391825258],[35.814958149581514,22.79972735093608],[35.82935829358294,22.78453015550714],[35.847358473584734,22.762578650998663],[35.88695886958871,22.735561414680546],[35.922959229592294,22.72205279652148],[35.940959409594115,22.71698706471183],[35.94455944559445,22.713609910172067],[35.95535955359554,22.705167023822654],[35.96975969759697,22.698412714743114],[35.98415984159843,22.693346982933477],[36.041760417604195,22.689969828393714],[36.12096120961209,22.67646121023465],[36.19656196561965,22.651132551186407],[36.225362253622535,22.635935355757468],[36.275762757627575,22.59203234674051],[36.29016290162903,22.568392264962156],[36.29736297362973,22.522800678675324],[36.31176311763119,22.49240628781743],[36.344163441634436,22.46707762876919],[36.37296372963729,22.44512612426071],[36.39096390963911,22.438371815181185],[36.40536405364054,22.433306083371534],[36.401764017640176,22.448503278800487],[36.40536405364054,22.448503278800487],[36.426964269642696,22.426551774292008],[36.42336423364233,22.397845960704004],[36.44136441364415,22.355631528956934],[36.50616506165062,22.328614292638804],[36.54216542165423,22.3100399426701],[36.56376563765639,22.296531324511037],[36.62496624966249,22.249251160954316],[36.71496714967151,22.169888029269842],[36.7329673296733,22.15975656565054],[36.74736747367476,22.161445142920428],[36.75096750967509,22.166510874730065],[36.75456754567546,22.173265183809605],[36.75816758167582,22.176642338349367],[36.76536765367655,22.17495376107948],[36.78336783367834,22.16482229746019],[36.79056790567907,22.15806798838065],[36.79416794167943,22.151313679301126],[36.80856808568086,22.120919288443233],[36.81936819368195,22.109099247554056],[36.83376833768338,22.09559062939499],[36.87336873368736,22.073639124886526],[36.89496894968951,22.066884815806986],[36.89856898568988,22.029736115869568],[36.89856898568988,22.01791607498039],[36.89136891368915,22.006096034091215],[36.88416884168842,21.995964570471912],[36.88056880568806,21.980767375042973],[36.87696876968769,21.97570164323332],[36.87336873368736,21.974013065963447],[36.8589685896859,21.97232448869356],[36.84096840968411,21.965570179614033],[36.862568625686265,21.948684406915206],[36.87336873368736,21.93686436602603],[36.87336873368736,21.81528680259447],[36.89856898568988,21.678512043733974],[36.887768877688785,21.64980623014597],[36.90216902169021,21.641363343796556],[36.90576905769058,21.62954330290738],[36.90576905769058,21.61772326201819],[36.912969129691305,21.60590322112901],[36.9237692376924,21.595771757509723],[36.9309693096931,21.58564029389042],[36.9849698496985,21.465751307728752],[37.114571145711466,21.27831923077177],[37.197371973719754,21.202333253627046],[37.305373053730534,21.074001381115963],[37.31257312573126,21.057115608417135],[37.31257312573126,21.038541258448433],[37.305373053730534,21.021655485749605],[37.290972909729106,21.01321259940019],[37.272972729727314,21.019966908479716],[37.25137251372516,21.00645829032065],[37.23337233372334,21.019966908479716],[37.20817208172082,21.06555849476655],[37.20097200972012,21.074001381115963],[37.19377193771939,21.08582142200514],[37.190171901719026,21.097641462894316],[37.197371973719754,21.102707194703967],[37.20817208172082,21.099330040164205],[37.215372153721546,21.09088715381479],[37.222572225722274,21.080755690195502],[37.22617226172264,21.07231280384609],[37.25137251372516,21.05542703114726],[37.26217262172622,21.05036129933761],[37.272972729727314,21.053738453877372],[37.26937269372695,21.062181340226786],[37.24417244172443,21.089198576544902],[37.229772297722974,21.12803585375221],[37.21897218972191,21.141544471911274],[37.204572045720454,21.136478740101623],[37.1757717577176,21.156741667340214],[37.16857168571687,21.146610203720925],[37.15777157771578,21.1482987809908],[37.154171541715414,21.158430244610102],[37.146971469714714,21.17025028549928],[37.15057150571508,21.183758903658344],[37.15777157771578,21.193890367277632],[37.15777157771578,21.20571040816681],[37.146971469714714,21.219219026325874],[37.121771217712194,21.224284758135525],[37.10377103771037,21.207398985436697],[37.10017100171004,21.18038174911858],[37.10017100171004,21.156741667340214],[37.10737107371074,21.151675935530562],[37.11817118171183,21.149987358260688],[37.121771217712194,21.14323304918115],[37.11817118171183,21.131413008291972],[37.114571145711466,21.122970121942558],[37.11817118171183,21.097641462894316],[37.11817118171183,21.08582142200514],[37.114571145711466,21.074001381115963],[37.10377103771037,21.06555849476655],[37.09297092970931,21.062181340226786],[37.08577085770858,21.057115608417135],[37.08577085770858,21.040229835718307],[37.09297092970931,21.031786949368893],[37.121771217712194,20.999703981241126],[37.146971469714714,20.94060377679523],[37.16137161371614,20.87812641780957],[37.16857168571687,20.746417390758722],[37.1829718297183,20.683940031773062],[37.229772297722974,20.565739622881267],[37.229772297722974,20.499885109355844],[37.22617226172264,20.484687913926905],[37.222572225722274,20.467802141228077],[37.21177211772118,20.459359254878663],[37.1829718297183,20.462736409418426],[37.179371793717934,20.44922779125936],[37.1829718297183,20.420521977671356],[37.1757717577176,20.349601732336282],[37.1829718297183,20.3090758778591],[37.1829718297183,20.29387868243016],[37.204572045720454,20.234778477984264],[37.215372153721546,20.19931835531672],[37.21897218972191,20.167235387188953],[37.22617226172264,20.119955223632246],[37.20817208172082,20.08111794642494],[37.20817208172082,20.074363637345414],[37.204572045720454,20.06423217372611],[37.19377193771939,20.049034978297172],[37.190171901719026,20.040592091947758],[37.190171901719026,20.013574855629628],[37.197371973719754,19.979803310231972],[37.25857258572586,19.821077046862996],[37.265772657726586,19.787305501465354],[37.265772657726586,19.721450987939917],[37.26217262172622,19.70456521524109],[37.25857258572586,19.692745174351913],[37.240572405724066,19.670793669843448],[37.2369723697237,19.655596474414494],[37.24417244172443,19.594807692698723],[37.24417244172443,19.576233342730006],[37.24417244172443,19.567790456380592],[37.247772477724794,19.557658992761304],[37.265772657726586,19.532330333713062],[37.28737287372874,19.474918706537053],[37.32697326973272,19.26215797053183],[37.33417334173342,19.15915475706899],[37.33777337773378,19.1473347161798],[37.34497344973451,19.140580407100273],[37.355773557735574,19.135514675290622],[37.35937359373594,19.128760366211097],[37.35937359373594,19.12200605713157],[37.355773557735574,19.108497438972506],[37.355773557735574,19.101743129892967],[37.380973809738094,19.0696601617652],[37.39177391773919,19.019002843668716],[37.41337413374134,18.95483690741318],[37.424174241742435,18.914311052936],[37.4349743497435,18.861965157569628],[37.449374493744955,18.843390807600926],[37.47097470974711,18.806242107663493],[37.49257492574927,18.7674048304562],[37.524975249752515,18.738699016868196],[37.532175321753215,18.72687897597902],[37.53937539375394,18.71505893508983],[37.550175501755035,18.70999320328019],[37.56457564575646,18.713370357819954],[37.575375753757555,18.72012466689948],[37.582575825758255,18.718436089629606],[37.64017640176402,18.72687897597902],[37.676176761767636,18.74038759413807],[37.679776797768,18.72181324416937],[37.701377013770156,18.711681780550066],[37.71937719377195,18.708304626010303],[37.7409774097741,18.70999320328019],[37.74817748177483,18.698173162391],[37.74817748177483,18.681287389692187],[37.766177661776624,18.667778771533122],[37.758977589775895,18.628941494325815],[37.77337773377735,18.63738438067523],[37.784177841778416,18.640761535214992],[37.79497794977951,18.632318648865578],[37.8129781297813,18.61543287616675],[37.92457924579247,18.58503848530887],[37.967779677796784,18.546201208101564],[37.99657996579967,18.50229819908462],[38.03978039780398,18.461772344607425],[38.0649806498065,18.443197994638723],[38.10818108181081,18.42800079920977],[38.12258122581227,18.41280360378083],[38.10818108181081,18.395917831082002],[38.08298082980829,18.382409212922937],[38.07578075780759,18.348637667525296],[38.10458104581048,18.291226040349272],[38.15138151381515,18.249011608602217],[38.20538205382056,18.237191567713026],[38.244982449824505,18.243945876792566],[38.25218252182523,18.281094576729984],[38.270182701827025,18.286160308539635],[38.30618306183064,18.306423235778226],[38.31338313383134,18.296291772158924],[38.30258302583027,18.28784888580951],[38.28818288182882,18.279405999460096],[38.28098280982812,18.27265169038057],[38.27738277382775,18.264208804031156],[38.27738277382775,18.254077340411854],[38.27738277382775,18.242257299522677],[38.2629826298263,18.2304372586335],[38.24858248582487,18.227060104093738],[38.23778237782378,18.227060104093738],[38.22338223382235,18.227060104093738],[38.21618216182162,18.216928640474435],[38.23058230582308,18.218617217744324],[38.26658266582666,18.223682949553975],[38.27738277382775,18.221994372284087],[38.28818288182882,18.216928640474435],[38.295382953829545,18.21017433139491],[38.30618306183064,18.20342002231537],[38.320583205832065,18.200042867775608],[38.345783457834585,18.198354290505733],[38.36018360183601,18.193288558696082],[38.37458374583747,18.18991140415632],[38.38538385383853,18.194977135965956],[38.3889838898389,18.20342002231537],[38.37458374583747,18.21017433139491],[38.39258392583926,18.223682949553975],[38.41058410584105,18.20510859958526],[38.4429844298443,18.156139858758664],[38.43218432184324,18.1426312405996],[38.45018450184503,18.13249977698031],[38.47538475384755,18.130811199710422],[38.49338493384934,18.14094266332971],[38.50058500585007,18.12574546790077],[38.504185041850434,18.086908190693464],[38.511385113851134,18.073399572534413],[38.53298532985332,18.07002241799465],[38.54018540185402,18.08521961342359],[38.54018540185402,18.108859695201943],[38.52578525785259,18.129122622440534],[38.54378543785438,18.118991158821245],[38.58338583385836,18.076776727074176],[38.59058590585906,18.061579531645236],[38.59058590585906,18.046382336216283],[38.59418594185942,18.036250872596995],[38.604986049860514,18.014299368088516],[38.60138601386015,18.004167904469213],[38.604986049860514,17.994036440849925],[38.612186121861214,17.983904977230623],[38.61938619386194,17.951822009102855],[38.662586625866254,17.894410381926846],[38.66618666186662,17.884278918307544],[38.66618666186662,17.864015991068953],[38.66978669786698,17.853884527449665],[38.687786877868774,17.830244445671298],[38.69138691386914,17.823490136591772],[38.6949869498695,17.806604363892944],[38.788587885878854,17.66814102776256],[38.86058860588608,17.51279191893336],[38.92898928989291,17.396280087311453],[38.95418954189543,17.311851223817314],[38.964989649896495,17.291588296578723],[38.95418954189543,17.252751019371416],[38.97218972189722,17.224045205783412],[38.99738997389974,17.195339392195407],[39.0117901179012,17.164945001337514],[39.0189901899019,17.12610772413022],[39.02619026190263,17.092336178732566],[39.05499054990551,17.034924551556543],[39.058590585905876,17.014661624317952],[39.06219062190624,16.97413576984077],[39.06939069390694,16.95387284260218],[39.083790837908396,16.925167029014176],[39.090990909909095,16.884641174536995],[39.09459094590946,16.867755401838167],[39.12699126991271,16.795146579233204],[39.148591485914864,16.717472024818605],[39.1377913779138,16.72422633389813],[39.15579155791559,16.678634747611298],[39.16299162991632,16.65668324310282],[39.16299162991632,16.627977429514814],[39.1449914499145,16.609403079546112],[39.159391593915956,16.56381149325928],[39.15579155791559,16.538482834211038],[39.148591485914864,16.545237143290564],[39.15219152191523,16.530039947861624],[39.159391593915956,16.524974216051973],[39.17019170191702,16.524974216051973],[39.17739177391775,16.52159706151221],[39.173791737917384,16.486136938844666],[39.17739177391775,16.477694052495252],[39.18099180991811,16.467562588875964],[39.184591845918476,16.46080827979644],[39.18819188191884,16.452365393447025],[39.191791917919176,16.43885677528796],[39.18819188191884,16.400019498080653],[39.191791917919176,16.388199457191476],[39.19539195391954,16.378067993572174],[39.20259202592027,16.362870798143234],[39.20619206192063,16.34936217998417],[39.20259202592027,16.337542139094992],[39.198991989919904,16.31221348004675],[39.198991989919904,16.2987048618877],[39.22779227792279,16.168684412106728],[39.23139231392315,16.123092825819896],[39.234992349923516,16.107895630390942],[39.260192601926036,16.058926889564347],[39.292592925929256,15.928906439783376],[39.31419314193144,15.893446317115846],[39.37179371793718,15.857986194448316],[39.38259382593827,15.842788999019362],[39.389793897939,15.836034689939837],[39.425794257942584,15.820837494510883],[39.43659436594368,15.812394608161469],[39.43659436594368,15.798885990002418],[39.43299432994331,15.788754526383116],[39.425794257942584,15.778623062763828],[39.42219422194222,15.766803021874637],[39.425794257942584,15.75498298098546],[39.44019440194404,15.741474362826409],[39.443794437944376,15.733031476476995],[39.443794437944376,15.706014240158865],[39.450994509945104,15.690817044729926],[39.476194761947625,15.660422653872033],[39.4617946179462,15.660422653872033],[39.44739447394474,15.65029119025273],[39.443794437944376,15.63509399482379],[39.450994509945104,15.619896799394851],[39.45459454594547,15.628339685744265],[39.46539465394656,15.638471149363554],[39.476194761947625,15.641848303903316],[39.48339483394835,15.633405417553917],[39.48339483394835,15.6148310675852],[39.4617946179462,15.606388181235786],[39.44019440194404,15.603011026696024],[39.42939429394295,15.603011026696024],[39.43299432994331,15.592879563076721],[39.450994509945104,15.565862326758605],[39.45459454594547,15.53209078136095],[39.45819458194583,15.525336472281424],[39.47259472594726,15.520270740471773],[39.49419494194942,15.51689358593201],[39.5157951579516,15.520270740471773],[39.526595265952665,15.528713626821187],[39.53379533795339,15.540533667710363],[39.551795517955185,15.542222244980238],[39.57339573395734,15.538845090440475],[39.5877958779588,15.53209078136095],[39.61299612996132,15.500007813233182],[39.66339663396636,15.336215818054555],[39.66699666996672,15.332838663514792],[39.68499684996851,15.326084354435253],[39.69219692196924,15.32270719989549],[39.69219692196924,15.304132849926788],[39.69939699396994,15.28724707722796],[39.70659706597067,15.273738459068895],[39.71739717397176,15.263606995449592],[39.702997029970305,15.209572522813346],[39.69939699396994,15.123455082049333],[39.69939699396994,15.12007792750957],[39.71019710197103,15.113323618430044],[39.7137971379714,15.109946463890267],[39.7137971379714,15.094749268461328],[39.72459724597246,15.086306382111914],[39.73899738997392,15.086306382111914],[39.753397533975345,15.09306069119144],[39.76059760597607,15.074486341222737],[39.7749977499775,15.071109186682975],[39.78939789397896,15.076174918492626],[39.810998109981114,15.079552073032389],[39.81819818198184,15.08461780484204],[39.82539825398254,15.096437845731216],[39.82539825398254,15.108257886620393],[39.82539825398254,15.116700772969807],[39.81819818198184,15.125143659319221],[39.82179821798218,15.131897968398746],[39.836198361983634,15.14034085474816],[39.854198541985426,15.174112400145816],[39.85779857798579,15.192686750114532],[39.836198361983634,15.226458295512174],[39.82539825398254,15.26698414998937],[39.81819818198184,15.28049276814842],[39.803798037980386,15.282181345418309],[39.79659796597966,15.26529557271948],[39.78939789397896,15.256852686370067],[39.78219782197823,15.278804190878546],[39.778597785977865,15.297378540847248],[39.78219782197823,15.34972443621362],[39.778597785977865,15.359855899832908],[39.7749977499775,15.380118827071499],[39.7749977499775,15.390250290690801],[39.7749977499775,15.402070331579978],[39.78219782197823,15.407136063389629],[39.78939789397896,15.408824640659518],[39.79299792997932,15.415578949739043],[39.80019800198002,15.449350495136699],[39.80739807398075,15.459481958755987],[39.82179821798218,15.449350495136699],[39.828998289982906,15.449350495136699],[39.828998289982906,15.456104804216224],[39.836198361983634,15.476367731454815],[39.84339843398436,15.476367731454815],[39.84339843398436,15.472990576915052],[39.84339843398436,15.462859113295764],[39.854198541985426,15.471301999645178],[39.86499864998652,15.493253504153643],[39.87579875798758,15.503384967772945],[39.89019890198904,15.478056308724703],[39.911799117991194,15.457793381486113],[40.005400054000546,15.381807404341387],[40.019800198001974,15.373364517991973],[40.04140041400416,15.368298786182322],[40.05220052200522,15.366610208912448],[40.05940059400595,15.359855899832908],[40.07380073800738,15.351413013483494],[40.081000810008106,15.341281549864206],[40.08460084600847,15.32946150897503],[40.081000810008106,15.319330045355727],[40.07380073800738,15.30751000446655],[40.055800558005586,15.294001386307485],[40.04860048600486,15.283869922688197],[40.04140041400416,15.275427036338783],[40.0270002700027,15.236589759131476],[40.037800378003794,15.238278336401365],[40.045000450004494,15.236589759131476],[40.05220052200522,15.22983545005195],[40.05220052200522,15.219703986432648],[40.05220052200522,15.216326831892886],[40.04140041400416,15.212949677353123],[40.04140041400416,15.209572522813346],[40.04140041400416,15.204506791003709],[40.045000450004494,15.201129636463932],[40.04860048600486,15.19775248192417],[40.05220052200522,15.189309595574755],[40.07740077400774,15.172423822875928],[40.081000810008106,15.163980936526514],[40.08460084600847,15.152160895637337],[40.095400954009534,15.125143659319221],[40.10260102601026,15.113323618430044],[40.10260102601026,15.101503577540853],[40.0990009900099,15.087994959381803],[40.0990009900099,15.076174918492626],[40.10260102601026,15.064354877603435],[40.113401134011355,15.069420609413086],[40.12780127801278,15.066043454873324],[40.138601386013875,15.059289145793798],[40.14220142201424,15.049157682174496],[40.145801458014574,15.040714795825082],[40.14940149401494,15.039026218555193],[40.1530015300153,15.037337641285319],[40.15660156601567,15.03058333220578],[40.15660156601567,15.02214044585638],[40.14940149401494,15.006943250427426],[40.14940149401494,15.0001889413479],[40.16020160201603,14.981614591379184],[40.18180181801819,14.971483127759896],[40.25740257402575,14.944465891441766],[40.271802718027175,14.93771158236224],[40.2790027900279,14.93264585055259],[40.28620286202863,14.914071500583887],[40.30060300603006,14.91744865512365],[40.32580325803258,14.936023005092352],[40.347403474034735,14.944465891441766],[40.36180361803619,14.964728818680356],[40.37620376203762,14.986680323188835],[40.390603906039075,15.003566095887663],[40.38700387003871,14.986680323188835],[40.390603906039075,14.97317170502977],[40.40140401404014,14.966417395950245],[40.41940419404196,14.969794550490008],[40.423004230042295,14.978237436839422],[40.41940419404196,14.990057477728598],[40.423004230042295,14.998500364078012],[40.441004410044116,15.003566095887663],[40.45180451804518,15.003566095887663],[40.45540455404554,15.005254673157552],[40.466204662046636,14.996811786808138],[40.46260462604627,14.993434632268361],[40.46260462604627,14.986680323188835],[40.46260462604627,14.97992601410931],[40.4770047700477,14.976548859569533],[40.48420484204843,14.97317170502977],[40.48420484204843,14.968105973220133],[40.48780487804879,14.963040241410482],[40.498604986049855,14.963040241410482],[40.50580505805058,14.964728818680356],[40.51300513005131,14.969794550490008],[40.516605166051676,14.976548859569533],[40.52020520205204,14.983303168649073],[40.516605166051676,14.990057477728598],[40.51300513005131,14.998500364078012],[40.51300513005131,15.017074714046728],[40.516605166051676,15.012008982237077],[40.523805238052375,15.001877518617775],[40.52740527405274,14.996811786808138],[40.55260552605526,14.990057477728598],[40.556205562055624,14.981614591379184],[40.556205562055624,14.97317170502977],[40.556205562055624,14.964728818680356],[40.55980559805599,14.954597355061068],[40.567005670056716,14.951220200521306],[40.574205742057416,14.951220200521306],[40.57780577805778,14.954597355061068],[40.58860588605887,14.954597355061068],[40.606606066060664,14.95290877779118],[40.617406174061756,14.947843045981529],[40.62100621006212,14.939400159632115],[40.624606246062456,14.900562882424822],[40.62820628206282,14.892119996075408],[40.657006570065704,14.880299955186231],[40.65340653406534,14.89718572788506],[40.66060660606607,14.902251459694696],[40.68940689406895,14.900562882424822],[40.693006930069316,14.89549715061517],[40.69660696606968,14.887054264265757],[40.693006930069316,14.881988532456106],[40.67860678606786,14.887054264265757],[40.67140671406716,14.880299955186231],[40.718207182071836,14.831331214359622],[40.718207182071836,14.834708368899399],[40.7218072180722,14.836396946169273],[40.7290072900729,14.834708368899399],[40.732607326073264,14.826265482549985],[40.732607326073264,14.817822596200571],[40.732607326073264,14.790805359882441],[40.725407254072536,14.768853855373962],[40.725407254072536,14.757033814484785],[40.732607326073264,14.743525196325734],[40.757807578075784,14.726639423626906],[40.76500765007651,14.714819382737716],[40.76500765007651,14.694556455499125],[40.775807758077576,14.701310764578665],[40.78660786607867,14.706376496388302],[40.79740797407976,14.706376496388302],[40.808208082080824,14.702999341848539],[40.808208082080824,14.721573691817255],[40.82980829808298,14.711442228197953],[40.883808838088385,14.714819382737716],[40.91260912609127,14.699622187308776],[40.94500945009452,14.677670682800297],[40.9738097380974,14.669227796450883],[41.03861038610387,14.667539219181009],[41.15741157411574,14.642210560132767],[41.168211682116834,14.637144828323116],[41.1790117901179,14.621947632894177],[41.19701197011972,14.584798932956758],[41.20781207812078,14.56791316025793],[41.25461254612546,14.537518769400037],[41.28341283412834,14.517255842161447],[41.30861308613086,14.488550028573442],[41.32301323013232,14.454778483175787],[41.32661326613268,14.417629783238368],[41.337413374133746,14.402432587809429],[41.3518135181352,14.392301124190126],[41.369813698136994,14.385546815110601],[41.37701377013772,14.377103928761187],[41.38061380613806,14.368661042411773],[41.39861398613988,14.346709537903294],[41.413014130141306,14.306183683426113],[41.43461434614346,14.282543601647745],[41.48141481414814,14.243706324440453],[41.50661506615066,14.21331193358256],[41.51381513815139,14.199803315423495],[41.521015210152115,14.181228965454793],[41.52821528215284,14.149145997327011],[41.53181531815318,14.137325956437834],[41.54261542615427,14.125505915548658],[41.5570155701557,14.11537445192937],[41.58941589415895,14.096800101960653],[41.60741607416074,14.081602906531714],[41.621816218162195,14.063028556562998],[41.65781657816578,13.997174043037575],[41.66861668616687,13.954959611290505],[41.6758167581676,13.939762415861566],[41.74061740617407,13.92118806589285],[41.75501755017552,13.92118806589285],[41.78741787417874,13.933008106782026],[41.798217982179835,13.934696684051914],[41.805418054180564,13.929630952242263],[41.82701827018272,13.897547984114496],[41.84141841418415,13.880662211415668],[41.848618486184876,13.875596479606017],[41.8630186301863,13.872219325066254],[41.873818738187396,13.873907902336143],[41.89541895418955,13.87897363414578],[41.90261902619028,13.87897363414578],[41.92061920619207,13.873907902336143],[41.956619566195684,13.850267820557775],[41.97101971019711,13.845202088748138],[41.981819818198204,13.838447779668599],[41.98541985419854,13.819873429699896],[41.989019890198904,13.799610502461306],[41.99261992619927,13.784413307032352],[42.03582035820358,13.752330338904585],[42.04302043020431,13.73882172074552],[42.04662046620467,13.73882172074552],[42.06822068220683,13.708427329887627],[42.075420754207556,13.694918711728576],[42.07902079020792,13.693230134458688],[42.08622086220862,13.689852979918925],[42.089820898208984,13.688164402649036],[42.09342093420935,13.67634436175986],[42.100621006210076,13.65439285725138],[42.107821078210776,13.644261393632092],[42.11862118621187,13.64088423909233],[42.12942129421296,13.645949970901967],[42.140221402214024,13.651015702711618],[42.14382143821439,13.651015702711618],[42.14742147421475,13.644261393632092],[42.165421654216544,13.632441352742916],[42.17262172621727,13.627375620933265],[42.17622176221764,13.617244157313962],[42.179821798218,13.593604075535609],[42.183421834218336,13.585161189186195],[42.208622086220856,13.568275416487367],[42.21222212222122,13.568275416487367],[42.215822158221584,13.553078221058428],[42.22302223022231,13.554766798328302],[42.23022230222304,13.559832530137953],[42.23022230222304,13.563209684677716],[42.22302223022231,13.568275416487367],[42.208622086220856,13.585161189186195],[42.20502205022052,13.59191549826572],[42.20502205022052,13.593604075535609],[42.20142201422016,13.595292652805497],[42.19782197821979,13.59866980734526],[42.19782197821979,13.605424116424786],[42.20142201422016,13.607112693694674],[42.215822158221584,13.605424116424786],[42.21942219422195,13.605424116424786],[42.21942219422195,13.632441352742916],[42.20502205022052,13.644261393632092],[42.190621906219064,13.652704279981506],[42.16902169021691,13.65439285725138],[42.158221582215816,13.656081434521269],[42.16182161821618,13.662835743600795],[42.17262172621727,13.667901475410446],[42.183421834218336,13.667901475410446],[42.21942219422195,13.64088423909233],[42.25542255422556,13.59191549826572],[42.26982269822699,13.585161189186195],[42.28782287822878,13.575029725566907],[42.29502295022951,13.549701066518665],[42.29502295022951,13.50917521204147],[42.3058230582306,13.475403666643814],[42.3130231302313,13.460206471214875],[42.32382323823239,13.455140739405223],[42.33462334623346,13.443320698516047],[42.341823418234185,13.417992039467805],[42.35982359823598,13.303168785115787],[42.37062370623707,13.277840126067545],[42.3778237782378,13.230559962510824],[42.3778237782378,13.225494230701187],[42.3778237782378,13.22211707616141],[42.41022410224102,13.205231303462583],[42.4318243182432,13.198476994383057],[42.47502475024751,13.195099839843294],[42.49662496624967,13.198476994383057],[42.50742507425076,13.206919880732471],[42.51462514625146,13.220428498891536],[42.52182521825219,13.235625694320476],[42.53262532625328,13.232248539780713],[42.53622536225362,13.225494230701187],[42.53982539825398,13.217051344351773],[42.543425434254345,13.20860845800236],[42.54702547025471,13.203542726192708],[42.55422554225544,13.200165571652946],[42.56142561425614,13.195099839843294],[42.56142561425614,13.183279798954118],[42.568625686256865,13.171459758064941],[42.619026190261906,13.129245326317871],[42.65502655026552,13.071833699141862],[42.669426694266946,13.063390812792449],[42.68742687426874,13.06170223552256],[42.70542705427056,13.053259349173146],[42.719827198271986,13.044816462823732],[42.73062730627308,13.032996421934556],[42.73782737827378,13.017799226505616],[42.74862748627487,12.962076176599481],[42.7630276302763,12.924927476662063],[42.76662766627666,12.906353126693347],[42.770227702277026,12.877647313105342],[42.77382773827739,12.862450117676403],[42.78102781027812,12.8523186540571],[42.795427954279546,12.848941499517338],[42.809828098281,12.8523186540571],[42.820628206282066,12.85907296313664],[42.83502835028352,12.864138694946277],[42.84942849428495,12.837121458628161],[42.86742867428674,12.821924263199222],[42.89622896228963,12.813481376849808],[42.93222932229324,12.81010422231003],[42.928629286292875,12.805038490500394],[42.91782917829178,12.78984129507144],[42.928629286292875,12.78984129507144],[42.9358293582936,12.791529872341329],[42.94662946629467,12.79659560415098],[42.9430294302943,12.798284181420854],[42.96462964629646,12.81010422231003],[42.979029790297915,12.823612840469096],[42.98622986229864,12.83881003589805],[42.98982989829898,12.847252922247463],[42.98982989829898,12.854007231326989],[42.98982989829898,12.85907296313664],[43.00063000630007,12.864138694946277],[42.99342993429934,12.87427015856558],[42.99342993429934,12.884401622184882],[42.99702997029971,12.892844508534296],[43.00063000630007,12.899598817613821],[43.029430294302955,12.87933589037523],[43.04383043830438,12.865827272216166],[43.04743047430475,12.855695808596877],[43.054630546305475,12.845564344977575],[43.06543065430654,12.837121458628161],[43.07623076230763,12.828678572278747],[43.08703087030872,12.820235685929333],[43.09423094230942,12.808415645040157],[43.09423094230942,12.778021254182264],[43.09783097830979,12.762824058753324],[43.12303123031231,12.715543895196603],[43.11943119431194,12.70710100884719],[43.1338313383134,12.696969545227901],[43.14463144631446,12.680083772529073],[43.15183151831519,12.659820845290483],[43.16263162631628,12.642935072591655],[43.259832598326,12.533177550049274],[43.281432814328156,12.496028850111855],[43.295832958329584,12.48252023195279],[43.313833138331404,12.47745450014314],[43.32823328233283,12.48927454103233],[43.32823328233283,12.453814418364786],[43.331833318333196,12.436928645665958],[43.33543335433356,12.42004287296713],[43.34263342633426,12.40653425480808],[43.35343353433535,12.394714213918888],[43.36063360633608,12.382894173029712],[43.364233642336444,12.366008400330884],[43.364233642336444,12.327171123123591],[43.36783367833678,12.306908195885],[43.37503375033751,12.293399577725936],[43.41103411034112,12.241053682359563],[43.414634146341484,12.224167909660736],[43.41103411034112,12.166756282484727],[43.41823418234182,12.090770305340001],[43.414634146341484,12.058687337212234],[43.40023400234003,12.02998152362423],[43.37863378633787,12.004652864575988],[43.34983349833499,11.98776709187716],[43.34263342633426,11.986078514607286],[43.31743317433174,11.981012782797634],[43.288632886328884,11.96750416463857],[43.2670326703267,11.964127010098807],[43.22383223832239,11.962438432828918],[43.205832058320595,11.957372701019281],[43.17343173431735,11.935421196510802],[43.09783097830979,11.844238023937137],[43.09063090630906,11.840860869397375],[43.08703087030872,11.839172292127486],[43.07623076230763,11.834106560317835],[43.0690306903069,11.830729405778072],[43.06543065430654,11.823975096698547],[43.0618306183062,11.808777901269593],[43.054630546305475,11.803712169459956],[43.04023040230402,11.798646437650305],[42.98622986229864,11.795269283110542],[42.97182971829719,11.790203551300891],[42.95742957429576,11.780072087681589],[42.9430294302943,11.773317778602063],[42.91422914229142,11.783449242221351],[42.89622896228963,11.780072087681589],[42.802628026280274,11.747989119553822],[42.777427774277754,11.732791924124882],[42.7558275582756,11.70746326507664],[42.6838268382684,11.58250854710532],[42.676626766267674,11.574065660755906],[42.669426694266946,11.568999928946255],[42.6370263702637,11.558868465326952],[42.626226262262634,11.558868465326952],[42.60462604626048,11.563934197136604],[42.575825758257594,11.56224561986673],[42.568625686256865,11.563934197136604],[42.5650256502565,11.567311351676366],[42.55422554225544,11.580819969835431],[42.54702547025471,11.584197124375194],[42.52542525425255,11.58250854710532],[42.51462514625146,11.574065660755906],[42.51462514625146,11.567311351676366],[42.52902529025292,11.570688506216143],[42.53262532625328,11.548737001707664],[42.53262532625328,11.547048424437776],[42.53262532625328,11.523408342659422],[42.53982539825398,11.503145415420832],[42.57222572225723,11.489636797261767],[42.59022590225902,11.472751024562939],[42.60462604626048,11.467685292753288],[42.619026190261906,11.471062447293065],[42.63342633426336,11.484571065452116],[42.644226442264426,11.487948219991878],[42.65502655026552,11.486259642722004],[42.66222662226622,11.481193910912353],[42.67302673026731,11.479505333642464],[42.68022680226804,11.484571065452116],[42.68742687426874,11.496391106341292],[42.68022680226804,11.504833992690706],[42.669426694266946,11.509899724500357],[42.66582665826658,11.514965456310009],[42.67302673026731,11.531851229008836],[42.694626946269466,11.545359847167902],[42.74142741427414,11.563934197136604],[42.80622806228064,11.570688506216143],[42.827828278282794,11.577442815295669],[42.83862838628386,11.584197124375194],[42.845828458284586,11.592640010724608],[42.85662856628568,11.59601716526437],[42.86742867428674,11.587574278914957],[42.87462874628747,11.584197124375194],[42.89982899828999,11.584197124375194],[43.04023040230402,11.585885701645083],[43.0618306183062,11.590951433454734],[43.08343083430836,11.589262856184845],[43.105031050310515,11.577442815295669],[43.12303123031231,11.580819969835431],[43.1338313383134,11.59601716526437],[43.1410314103141,11.607837206153562],[43.15183151831519,11.611214360693324],[43.15903159031592,11.601082897074022],[43.17343173431735,11.543671269898013],[43.17343173431735,11.541982692628125],[43.18423184231844,11.526785497199185],[43.1950319503195,11.518342610849771],[43.22743227432275,11.501456838150943],[43.24183241832418,11.487948219991878],[43.25263252632527,11.472751024562939],[43.2670326703267,11.46261956094365],[43.288632886328884,11.460930983673762],[43.281432814328156,11.49976826088107],[43.295832958329584,11.482882488182241],[43.321033210332104,11.445733788244823],[43.339033390333924,11.425470861006218],[43.35343353433535,11.420405129196581],[43.37503375033751,11.391699315608577],[43.3930339303393,11.384945006529037],[43.414634146341484,11.381567851989274],[43.44343443434434,11.359616347480795],[43.46143461434616,11.351173461131381],[43.465034650346524,11.368059233830209],[43.47943479434795,11.379879274719386],[43.490234902349044,11.381567851989274],[43.49383493834938,11.364682079290446],[43.47943479434795,11.271810329446893],[43.48663486634868,11.239727361319126],[43.50463504635047,11.209332970461233],[43.52983529835299,11.187381465952768],[43.53703537035372,11.184004311413005],[43.55143551435515,11.180627156873229],[43.55863558635588,11.175561425063592],[43.56223562235624,11.17049569325394],[43.56943569435694,11.155298497824987],[43.5838358383584,11.135035570586396],[43.591035910359125,11.10801833426828],[43.616236162361645,11.070869634330862],[43.65943659436596,10.988129348106611],[43.75663756637567,10.89356902099317],[43.82863828638287,10.802385848419505],[43.92223922239222,10.724711294004905],[44.026640266402666,10.652102471399942],[44.09864098640986,10.589625112414282],[44.1490414904149,10.559230721556403],[44.2750427504275,10.456227508093562],[44.30384303843039,10.439341735394734],[44.3470434704347,10.414013076346492],[44.39024390243904,10.397127303647665],[44.4658446584466,10.402193035457316],[44.54144541445416,10.392061571838013],[44.58464584645847,10.3836186854886],[44.62784627846278,10.390372994568125],[44.66024660246603,10.402193035457316],[44.721447214472164,10.419078808156144],[44.75024750247502,10.427521694505543],[44.789847898478996,10.42414453996578],[44.854648546485464,10.414013076346492],[44.897848978489804,10.412324499076604],[44.96264962649627,10.415701653616367],[44.99504995049952,10.442718889934497],[44.98784987849879,10.459604662633325],[45.00225002250022,10.459604662633325],[45.11025110251103,10.525459176158748],[45.12825128251282,10.532213485238273],[45.157051570515705,10.540656371587687],[45.250652506525086,10.599756576033585],[45.31905319053192,10.662233935019245],[45.33705337053371,10.670676821368659],[45.3550535505355,10.66898824409877],[45.37305373053732,10.662233935019245],[45.391053910539114,10.658856780479482],[45.409054090540906,10.658856780479482],[45.44505445054452,10.667299666828896],[45.48825488254883,10.684185439527724],[45.517055170551714,10.702759789496426],[45.542255422554234,10.721334139465142],[45.57465574655748,10.75848283940256],[45.585455854558546,10.765237148482086],[45.661056610566106,10.790565807530328],[45.6718567185672,10.795631539339979],[45.68625686256863,10.809140157499044],[45.693456934569355,10.822648775658095],[45.70785707857078,10.832780239277398],[45.7258572585726,10.837845971087049],[45.73665736657367,10.8429117028967],[45.75465754657549,10.871617516484704],[45.769057690576915,10.87837182556423],[45.78705787057871,10.87837182556423],[45.80145801458016,10.874994671024467],[45.81585815858159,10.869928939214816],[45.83025830258305,10.85810889832564],[45.84105841058411,10.844600280166574],[45.84825848258484,10.832780239277398],[45.85545855458557,10.824337352927984],[45.87345873458736,10.822648775658095],[45.869858698586995,10.841223125626811],[45.88425884258842,10.841223125626811],[45.977859778597804,10.799008693879742],[46.01386013860139,10.79394296207009],[46.046260462604636,10.785500075720677],[46.06426064260643,10.778745766641151],[46.103861038610404,10.770302880291737],[46.136261362613624,10.777057189371263],[46.20826208262085,10.795631539339979],[46.237062370623704,10.792254384800216],[46.262262622626224,10.777057189371263],[46.305463054630565,10.73146560308443],[46.33426334263342,10.709514098575966],[46.37026370263703,10.6960054804169],[46.40986409864098,10.69093974860725],[46.44946449464496,10.692628325877138],[46.481864818648205,10.701071212226552],[46.49986499865,10.707825521306077],[46.52866528665288,10.726399871274793],[46.5610656106561,10.73146560308443],[46.589865898658985,10.743285643973621],[46.62946629466296,10.744974221243496],[46.64746647466475,10.748351375783258],[46.658266582665846,10.755105684862798],[46.69426694266943,10.782122921180914],[46.78066780667808,10.82096019838822],[46.82026820268203,10.853043166515988],[46.867068670686706,10.871617516484704],[46.87066870668707,10.87837182556423],[46.88146881468816,10.89356902099317],[46.885068850688526,10.89863475280282],[46.892268922689226,10.902011907342583],[46.90666906669068,10.903700484612472],[46.91386913869138,10.90538906188236],[47.00747007470076,10.939160607280002],[47.08307083070832,10.994883657186136],[47.13347133471336,11.035409511663318],[47.16587165871658,11.072558211600736],[47.18027180271804,11.08100109795015],[47.227072270722715,11.094509716109215],[47.23787237872381,11.10126402518874],[47.26307263072633,11.121526952427345],[47.36747367473674,11.172184270523815],[47.385473854738564,11.180627156873229],[47.40707407074072,11.184004311413005],[47.435874358743604,11.180627156873229],[47.48987489874901,11.19244719776242],[47.52227522275223,11.187381465952768],[47.67707677076771,11.10801833426828],[47.70947709477096,11.10126402518874],[47.76707767077673,11.12996983877676],[47.89307893078933,11.133346993316522],[47.947079470794705,11.124904106967108],[48.130681306813074,11.136724147856285],[48.15948159481596,11.145167034205699],[48.173881738817386,11.156987075094875],[48.19548195481957,11.187381465952768],[48.217082170821726,11.195824352302182],[48.217082170821726,11.204267238651596],[48.22068220682209,11.211021547731121],[48.22788227882279,11.214398702270884],[48.24588245882461,11.214398702270884],[48.256682566825674,11.214398702270884],[48.274682746827466,11.221153011350424],[48.292682926829286,11.222841588620298],[48.30348303483035,11.22790732042995],[48.31068310683108,11.234661629509475],[48.31428314283144,11.241415938589014],[48.31428314283144,11.24817024766854],[48.317883178831806,11.254924556748065],[48.332283322833234,11.26843317490713],[48.34308343083433,11.27518748398667],[48.37188371883721,11.281941793066196],[48.44388443884441,11.288696102145721],[48.47988479884799,11.297138988495135],[48.50508505085051,11.314024761193963],[48.5230852308523,11.319090493003614],[48.584285842858435,11.317401915733726],[48.63828638286384,11.329221956622916],[48.65628656286563,11.33091053389279],[48.72468724687246,11.315713338463851],[48.760687606876076,11.300516143034912],[48.80028800288002,11.278564638526433],[48.89028890288904,11.249858824938428],[48.90468904689047,11.24817024766854],[48.92268922689229,11.24817024766854],[48.94068940689408,11.249858824938428],[48.976689766897664,11.251547402208303],[49.10989109891099,11.276876061256544],[49.23949239492396,11.300516143034912],[49.279092790927905,11.317401915733726],[49.29349293492936,11.33766484297233],[49.304293042930425,11.346107729321744],[49.31509315093152,11.341041997512093],[49.32589325893261,11.334287688432553],[49.33669336693367,11.334287688432553],[49.40149401494017,11.341041997512093],[49.41949419494196,11.344419152051856],[49.43389433894339,11.351173461131381],[49.487894878948794,11.381567851989274],[49.505895058950586,11.384945006529037],[49.52029520295204,11.39338789287845],[49.54549545495456,11.437290901895409],[49.55989559895599,11.454176674594237],[49.57789577895781,11.459242406403874],[49.599495994959966,11.460930983673762],[49.64629646296464,11.460930983673762],[49.649896498965006,11.46261956094365],[49.664296642966434,11.471062447293065],[49.675096750967526,11.474439601832827],[49.68589685896859,11.474439601832827],[49.714697146971474,11.467685292753288],[49.80469804698049,11.459242406403874],[49.85149851498517,11.464308138213525],[49.88029880298805,11.487948219991878],[49.88749887498875,11.487948219991878],[49.90549905499057,11.49807968361118],[49.916299162991635,11.501456838150943],[49.92349923499236,11.503145415420832],[49.93429934299343,11.51327687904012],[49.941499414994155,11.514965456310009],[49.94869948699488,11.514965456310009],[49.95589955899561,11.51327687904012],[49.95949959499595,11.509899724500357],[49.96309963099631,11.508211147230483],[50.05310053100533,11.511588301770246],[50.07110071100712,11.508211147230483],[50.13230132301325,11.54029411535825],[50.150301503015044,11.557179888057078],[50.16110161101611,11.563934197136604],[50.19710197101972,11.56224561986673],[50.20790207902081,11.567311351676366],[50.21510215102151,11.572377083486018],[50.225902259022604,11.577442815295669],[50.269102691026916,11.589262856184845],[50.29070290702907,11.60277147434391],[50.37350373503736,11.668625987869333],[50.41670416704167,11.678757451488636],[50.43830438304383,11.690577492377813],[50.47070470704708,11.727726192315231],[50.49950499504996,11.754743428633347],[50.51390513905139,11.771629201332175],[50.51750517505175,11.791892128570765],[50.51750517505175,11.815532210349133],[50.52470524705248,11.837483714857598],[50.528305283052845,11.859435219366077],[50.53910539105391,11.878009569334793],[50.56070560705609,11.908403960192672],[50.57510575105752,11.920224001081849],[50.58950589505895,11.926978310161388],[50.60030600306004,11.928666887431262],[50.629106291062925,11.940486928320453],[50.63270632706329,11.947241237399979],[50.636306363063625,11.95230696920963],[50.63990639906399,11.953995546479504],[50.64710647106472,11.953995546479504],[50.654306543065445,11.948929814669867],[50.661506615066145,11.947241237399979],[50.68310683106833,11.953995546479504],[50.72630726307264,11.970881319178332],[50.762307623076225,11.979324205527746],[50.77310773107732,11.986078514607286],[50.79830798307984,11.989455669147048],[50.86670866708667,11.942175505590328],[50.971109711097114,11.93204404197104],[51.02871028710288,11.884763878414319],[51.05031050310504,11.878009569334793],[51.1259112591126,11.878009569334793],[51.147511475114754,11.872943837525142],[51.179911799118,11.856058064826314],[51.20151201512016,11.850992333016663],[51.223112231122315,11.850992333016663],[51.248312483124835,11.8476151784769],[51.26631266312663,11.839172292127486],[51.29151291512915,11.83241798304796],[51.27711277112772,11.80033501492018],[51.26631266312663,11.759809160442998],[51.248312483124835,11.729414769585105],[51.25551255512556,11.682134606028399],[51.248312483124835,11.651740215170506],[51.23031230312304,11.636543019741566],[51.21231212312125,11.607837206153562],[51.179911799118,11.579131392565557],[51.147511475114754,11.5352283835486],[51.1259112591126,11.511588301770246],[51.122311223112234,11.504833992690706],[51.122311223112234,11.494702529071418],[51.1259112591126,11.479505333642464],[51.1259112591126,11.471062447293065],[51.1259112591126,11.447422365514697],[51.11871118711187,11.425470861006218],[51.08631086310865,11.357927770210921],[51.082710827108286,11.341041997512093],[51.07911079110792,11.27518748398667],[51.071910719107194,11.2329730522396],[51.08631086310865,11.187381465952768],[51.12951129511296,11.160364229634638],[51.172711727117274,11.158675652364764],[51.190711907119066,11.138412725126173],[51.165511655116546,11.116461220617694],[51.14391143911439,11.069181057060973],[51.13311133111333,11.052295284362145],[51.122311223112234,11.03878666620308],[51.11871118711187,11.016835161694615],[51.115111151111506,10.993195079916248],[51.1259112591126,10.854731743785877],[51.13671136711369,10.677431130448184],[51.16191161911621,10.598067998763696],[51.15471154711548,10.587936535144408],[51.13311133111333,10.584559380604645],[51.107911079110806,10.576116494255231],[51.10071100711008,10.559230721556403],[51.107911079110806,10.515327712539445],[51.10071100711008,10.495064785300855],[51.09351093510935,10.48155616714179],[51.07551075510756,10.476490435332153],[51.0539105391054,10.474801858062264],[51.03591035910361,10.468047548982739],[51.01791017910179,10.452850353553785],[51.01071010710109,10.434276003585083],[51.01791017910179,10.419078808156144],[51.039510395103946,10.415701653616367],[51.190711907119066,10.44609604447426],[51.20151201512016,10.444407467204371],[51.21231212312125,10.441030312664608],[51.21951219512195,10.442718889934497],[51.223112231122315,10.449473199014022],[51.21951219512195,10.461293239903199],[51.20871208712089,10.46635897171285],[51.20151201512016,10.471424703522501],[51.197911979119795,10.478179012602027],[51.19431194311943,10.500130517110506],[51.19431194311943,10.520393444349097],[51.18711187111873,10.542344948857576],[51.17631176311764,10.562607876096166],[51.190711907119066,10.549099257937101],[51.20871208712089,10.537279217047924],[51.21951219512195,10.525459176158748],[51.23751237512377,10.515327712539445],[51.248312483124835,10.50857340345992],[51.25911259112593,10.503507671650269],[51.28071280712808,10.48662189895144],[51.29151291512915,10.479867589871915],[51.30951309513097,10.476490435332153],[51.32751327513276,10.47311328079239],[51.33471334713349,10.474801858062264],[51.34551345513455,10.479867589871915],[51.35631356313564,10.483244744411678],[51.3779137791378,10.48155616714179],[51.39591395913959,10.478179012602027],[51.40311403114032,10.456227508093562],[51.41751417514175,10.447784621744148],[51.41031410314105,10.429210271775432],[51.39591395913959,10.395438726377776],[51.38511385113853,10.392061571838013],[51.38151381513816,10.386995840028362],[51.374313743137435,10.381930108218711],[51.374313743137435,10.36842149005966],[51.36711367113671,10.36842149005966],[51.349113491134915,10.375175799139186],[51.33471334713349,10.375175799139186],[51.32031320313203,10.378552953678948],[51.30231302313024,10.371798644599423],[51.273512735127355,10.378552953678948],[51.26631266312663,10.397127303647665],[51.26271262712629,10.408947344536841],[51.25551255512556,10.420767385426018],[51.24111241112411,10.425833117235669],[51.089910899108986,10.407258767266953],[51.01791017910179,10.381930108218711],[50.9279092790928,10.327895635582465],[50.90990909909101,10.295812667454697],[50.90270902709028,10.235023885738926],[50.913509135091346,10.177612258562917],[50.88470884708849,10.101626281418191],[50.888308883088825,10.056034695131359],[50.89910899108992,10.023951727003592],[50.90270902709028,10.012131686114401],[50.89910899108992,10.000311645225224],[50.89190891908919,9.98680302706616],[50.87750877508776,9.9158827817311],[50.881108811088126,9.905751318111797],[50.870308703087034,9.883799813603318],[50.863108631086305,9.865225463634616],[50.85230852308524,9.816256722808006],[50.84150841508415,9.779108022870588],[50.83430834308345,9.7689765592513],[50.837908379083785,9.740270745663295],[50.837908379083785,9.730139282043993],[50.830708307083086,9.71156493207529],[50.82350823508236,9.650776150359505],[50.805508055080566,9.623758914041389],[50.805508055080566,9.593364523183496],[50.812708127081265,9.541018627817138],[50.837908379083785,9.47685269156159],[50.84150841508415,9.456589764322999],[50.837908379083785,9.438015414354282],[50.830708307083086,9.41944106438558],[50.76950769507695,9.319815005462502],[50.7479074790748,9.302929232763674],[50.704707047070485,9.286043460064846],[50.69030690306903,9.27422341917567],[50.6759067590676,9.259026223746716],[50.64710647106472,9.21174606019001],[50.63990639906399,9.19654886476107],[50.65070650706508,9.132382928505521],[50.64710647106472,9.110431423997042],[50.63270632706329,9.073282724059624],[50.603906039060405,9.037822601392094],[50.4959049590496,8.951705160628066],[50.46350463504635,8.921310769770187],[50.43830438304383,8.887539224372532],[50.420304203042036,8.857144833514639],[50.40950409504097,8.816618979037457],[50.39150391503915,8.733878692813207],[50.37350373503736,8.698418570145662],[50.326703267032684,8.641006942969653],[50.319503195031956,8.620744015731063],[50.32310323103232,8.559955234015291],[50.319503195031956,8.541380884046575],[50.30510305103053,8.504232184109156],[50.29070290702907,8.487346411410329],[50.276302763027644,8.478903525060915],[50.25470254702549,8.47214921598139],[50.24750247502476,8.456952020552436],[50.24030240302403,8.436689093313845],[50.22950229502297,8.418114743345143],[50.16470164701647,8.333685879851004],[50.15750157501577,8.320177261691938],[50.143101431014315,8.288094293564171],[50.11430114301143,8.20028827553027],[50.092700927009275,8.161450998322962],[50.05670056700569,8.131056607465084],[49.93069930699309,8.051693475780596],[49.840698406984075,7.962198880476805],[49.82269822698228,7.933493066888801],[49.81189811898119,7.898032944221271],[49.80469804698049,7.8271126988861965],[49.808298082980826,7.81529265799702],[49.82269822698228,7.8051611943777175],[49.82629826298265,7.7832096898692384],[49.82629826298265,7.757881030820997],[49.81909819098192,7.739306680852295],[49.790297902979034,7.698780826375113],[49.76149761497615,7.666697858247332],[49.75069750697509,7.649812085548504],[49.74709747097472,7.60590907653156],[49.74349743497436,7.589023303832732],[49.639096390963914,7.408345535955291],[49.58509585095851,7.315473786111738],[49.52029520295204,7.239487808967013],[49.36549365493656,7.025038495691916],[49.29349293492936,6.88150942775188],[49.246692466924685,6.810589182416805],[49.196291962919645,6.673814423556308],[49.07389073890741,6.415462101264254],[49.070290702907045,6.393510596755789],[49.07389073890741,6.37155909224731],[49.08469084690847,6.32934466050024],[49.08469084690847,6.307393155991761],[49.070290702907045,6.219587137957859],[49.037890378903796,6.143601160813148],[48.850688506885064,5.824460056805307],[48.69588695886961,5.588059239021732],[48.64548645486457,5.479990293749239],[48.62028620286205,5.444530171081709],[48.54828548285482,5.375298503016509],[48.44748447484474,5.208129353298133],[48.32868328683287,5.07979748078705],[48.20268202682027,4.9092511765288975],[48.05508055080551,4.613750154299424],[47.947079470794705,4.4567124682003225],[47.839078390783925,4.3418892138483045],[47.57627576275763,4.0598968097778965],[47.48987489874901,3.9366306690764503],[47.33507335073352,3.7795929829773627],[47.20547205472056,3.644506801386754],[47.03987039870398,3.46889476531895],[47.01467014670146,3.44187752900082],[46.834668346683486,3.2324939475353744],[46.70146701467016,3.1126049613737052],[46.6258662586626,3.023110366069915],[46.489064890648905,2.9082871117178968],[46.413464134641345,2.83398971184306],[46.35226352263524,2.7883981255562276],[46.34866348663488,2.7799552392068136],[46.34506345063451,2.7698237755875112],[46.337863378633784,2.7613808892380973],[46.33426334263342,2.7580037346983346],[46.31626316263163,2.751249425618809],[46.3090630906309,2.7360522301898555],[46.298262982629836,2.715789302951265],[46.29106291062911,2.6955263757126744],[46.27666276662768,2.685394912093372],[46.237062370623704,2.66682056212467],[46.14346143461435,2.5688830804714655],[46.13266132661329,2.553685885042526],[46.11466114661147,2.523291494184633],[46.103861038610404,2.5097828760255823],[46.06426064260643,2.4844542169773405],[46.046260462604636,2.455748403389336],[46.028260282602844,2.438862630690508],[45.82665826658268,2.3088421809095365],[45.71145711457115,2.244676244653988],[45.6070560705607,2.183887462938216],[45.26505265052651,1.9880124996318216],[45.232652326523265,1.967749572393231],[45.21105211052111,1.9626838405835798],[45.200252002520045,1.959306686043817],[45.00225002250022,1.866434936200264],[44.83304833048331,1.7499231045783574],[44.822248222482244,1.7397916409590692],[44.81144811448115,1.7364144864193065],[44.67464674646746,1.6367884274962279],[44.54864548645486,1.559113873081614],[44.33264332643327,1.3902561460933498],[44.2210422104221,1.2754328917413176],[44.19944199441994,1.2653014281220294],[44.15624156241563,1.2399727690737876],[44.14544145441454,1.2298413054544852],[44.1418414184142,1.2213984191050713],[44.13824138241384,1.2112669554857831],[44.13824138241384,1.1910040282471925],[44.134641346413474,1.1876268737074298],[44.11664116641168,1.1825611418977786],[44.109441094410954,1.1774954100881274],[44.102241022410226,1.1690525237387135],[44.033840338403394,1.0981322784036394],[44.01224012240124,1.0846236602445742],[43.99063990639908,1.0778693511650488],[43.97983979839799,1.0694264648156349],[43.93303933039331,1.0103262603697374],[43.82143821438214,0.9495374786539656],[43.78183781837819,0.9208316650659611],[43.73503735037352,0.8549771515405382],[43.717037170371725,0.8448456879212358],[43.70263702637027,0.8397799561115846],[43.65943659436596,0.8043198334440547],[43.46863468634686,0.6202649110268368],[43.28503285032852,0.41425848410115407],[43.18423184231844,0.3163210024479497],[43.09063090630906,0.22344925260439652],[42.89262892628926,0.002245630249774422],[42.8890288902889,0.0005570529798859525],[42.770227702277026,-0.12946339680108565],[42.71262712627126,-0.17674356035779226],[42.64782647826479,-0.22908945572416428],[42.57942579425796,-0.29832112378934994],[42.55422554225544,-0.33209266918700564],[42.55422554225544,-0.34222413280630803],[42.55422554225544,-0.35066701915572196],[42.550625506255074,-0.3574213282352474],[42.52542525425255,-0.3624870600448986],[42.518225182251825,-0.36924136912442407],[42.47862478624788,-0.4215872644907819],[42.47502475024751,-0.4384730371896097],[42.48582485824858,-0.4486045008089121],[42.47502475024751,-0.46549027350773997],[42.47142471424715,-0.47055600531739117],[42.47142471424715,-0.4638016962378515],[42.47142471424715,-0.4587359644282145],[42.47142471424715,-0.4536702326185633],[42.46422464224642,-0.4486045008089121],[42.41382413824138,-0.49081893255598175],[42.40302403024032,-0.5009503961752699],[42.39942399423995,-0.5178361688740978],[42.38142381423816,-0.5347219415729256],[42.34902349023491,-0.5651163324308186],[42.2518225182252,-0.6850053185924878],[42.24822248222483,-0.6934482049419017],[42.24822248222483,-0.7018910912913157],[42.24462244622447,-0.7069568231009669],[42.23742237422374,-0.7103339776407296],[42.233822338223376,-0.7137111321804923],[42.190621906219064,-0.7761884911661525],[42.165421654216544,-0.8032057274842828],[42.15102151021512,-0.813337191103571],[42.13662136621366,-0.8217800774529849],[42.115021150211504,-0.8268458092626361],[42.08622086220862,-0.8251572319927476],[42.07182071820719,-0.8285343865325245],[42.0610206102061,-0.8386658501518127],[42.082620826208256,-0.8437315819614639],[42.082620826208256,-0.862305931930166],[42.07182071820719,-0.8842574364386451],[42.064620646206464,-0.8943889000579475],[42.050220502205036,-0.9028317864073614],[42.03582035820358,-0.9197175591061892],[42.025020250202516,-0.9416690636146541],[42.02142021420215,-0.9602434135833704],[42.01782017820179,-0.9686862999327843],[41.981819818198204,-0.9940149589810261],[41.97101971019711,-0.9990806907906773],[41.96741967419675,-0.9923263817111376],[41.963819638196384,-0.950111949964068],[41.963819638196384,-0.9112746727567753],[41.96021960219602,-0.8943889000579475],[41.95301953019532,-0.8943889000579475],[41.956619566195684,-0.9095860954868868],[41.95301953019532,-0.9214061363760635],[41.94581945819459,-0.9315375999953659],[41.94581945819459,-0.9433576408845425],[41.94581945819459,-0.9551776817737192],[41.95301953019532,-0.9686862999327843],[41.95301953019532,-0.980506340821961],[41.956619566195684,-0.9923263817111376],[41.963819638196384,-0.9990806907906773],[41.97101971019711,-1.00245784533044],[41.974619746197476,-1.010900731679854],[41.97101971019711,-1.0244093498389049],[41.96021960219602,-1.0446722770775096],[41.96021960219602,-1.0564923179666863],[41.95301953019532,-1.068312358855863],[41.931419314193164,-1.090263863364342],[41.924219242192436,-1.0970181724438675],[41.924219242192436,-1.1105267906029326],[41.91701917019171,-1.1206582542222208],[41.913419134191344,-1.1307897178415232],[41.873818738187396,-1.1763813041283555],[41.87021870218703,-1.1865127677476437],[41.873818738187396,-1.1949556540970576],[41.881018810188124,-1.1949556540970576],[41.89181891818919,-1.1898899222874206],[41.899018990189916,-1.183135613207881],[41.88461884618846,-1.2101528495260112],[41.8630186301863,-1.2118414267958855],[41.84141841418415,-1.196644231366946],[41.83421834218342,-1.16962699504883],[41.830618306183084,-1.16962699504883],[41.830618306183084,-1.1898899222874206],[41.84141841418415,-1.2253500449549506],[41.84141841418415,-1.243924394923667],[41.83781837818378,-1.262498744892369],[41.73341733417334,-1.4313564718806475],[41.70821708217082,-1.460062285468652],[41.69021690216903,-1.4887680990566565],[41.65061650616508,-1.5647540762013818],[41.63261632616326,-1.5799512716303212],[41.6110161101611,-1.5934598897893864],[41.57501575015752,-1.6525600942352696],[41.55341553415536,-1.6694458669340975],[41.56061560615606,-1.6694458669340975],[41.53541535415354,-1.6964631032522277],[41.45981459814598,-1.7741376576668273],[41.4238142381424,-1.829860707572962],[41.41661416614167,-1.84674648027179],[41.395013950139514,-1.8602550984308408],[41.337413374133746,-1.9126009937972128],[41.3050130501305,-1.9565040028141567],[41.28341283412834,-1.9683240437033334],[41.269012690126914,-1.9497496937346313],[41.24741247412476,-1.9565040028141567],[41.2330123301233,-1.9548154255442824],[41.218612186121874,-1.94468396192498],[41.218612186121874,-1.922732457416501],[41.20061200612008,-1.9429953846551058],[41.193411934119354,-1.966635466433459],[41.186211862118626,-1.9902755482118124],[41.15741157411574,-1.9868983936720497],[41.11781117811179,-1.9784555073226358],[41.110611106111065,-1.9784555073226358],[41.09621096210964,-1.9852098164021612],[41.07821078210782,-2.0071613209106403],[41.04941049410496,-2.018981361799817],[41.03861038610387,-2.032489979958882],[41.02781027810278,-2.0426214435781844],[41.01341013410135,-2.0426214435781844],[40.99900999009992,-2.0358671344986448],[40.99180991809919,-2.0291128254191193],[40.984609846098465,-2.018981361799817],[40.9810098100981,-2.005472743640766],[40.9810098100981,-1.9902755482118124],[40.99180991809919,-1.9632583118936964],[40.98820988209883,-1.9497496937346313],[40.98820988209883,-1.9362410755755661],[40.99180991809919,-1.9244210346863895],[41.00621006210062,-1.9024695301779104],[40.97020970209704,-1.9294867664960407],[40.96660966609667,-2.045998598117947],[40.94500945009452,-2.073015834436063],[40.9270092700927,-2.0595072162770123],[40.909009090090905,-1.997029857291352],[40.89100891008911,-1.983521239132287],[40.88020880208802,-1.9784555073226358],[40.86940869408696,-1.966635466433459],[40.86220862208623,-1.9632583118936964],[40.8478084780848,-1.9784555073226358],[40.8550085500855,-1.9919641254817009],[40.858608586085865,-2.005472743640766],[40.8550085500855,-2.018981361799817],[40.87300873008732,-2.0122270527202915],[40.883808838088385,-2.015604207260054],[40.89460894608948,-2.0257356708793566],[40.89820898208984,-2.0426214435781844],[40.89460894608948,-2.04937575265771],[40.883808838088385,-2.054441484467361],[40.883808838088385,-2.0595072162770123],[40.88740887408875,-2.0696386798963005],[40.89460894608948,-2.071327257166189],[40.90180901809018,-2.073015834436063],[40.90540905409054,-2.079770143515603],[40.90540905409054,-2.1540675433904397],[40.91260912609127,-2.191216243327858],[40.92340923409236,-2.2165449023761],[40.934209342093425,-2.2199220569158626],[40.94500945009452,-2.218233479645974],[40.95580955809558,-2.218233479645974],[40.97020970209704,-2.2283649432652766],[40.9810098100981,-2.2418735614243417],[40.9810098100981,-2.2536936023135183],[40.97020970209704,-2.27902226136176],[40.94500945009452,-2.309416652219639],[40.92340923409236,-2.31448238402929],[40.919809198092,-2.3026623431401134],[40.95220952209522,-2.2857765704412856],[40.934209342093425,-2.2807108386316344],[40.919809198092,-2.270579375012346],[40.89820898208984,-2.2452507159641044],[40.89460894608948,-2.2368078296146905],[40.89460894608948,-2.2317420978050393],[40.89460894608948,-2.2283649432652766],[40.883808838088385,-2.2232992114556254],[40.883808838088385,-2.226676365995388],[40.87660876608766,-2.2283649432652766],[40.86220862208623,-2.2317420978050393],[40.83700837008371,-2.2452507159641044],[40.81540815408155,-2.2722679522822204],[40.7938079380794,-2.2908423022509368],[40.77220772207724,-2.27902226136176],[40.775807758077576,-2.287465147711174],[40.775807758077576,-2.2975966113304622],[40.783007830078304,-2.304350920410002],[40.79020790207903,-2.3077280749497646],[40.7938079380794,-2.309416652219639],[40.7938079380794,-2.3161709612991785],[40.78660786607867,-2.327991002188355],[40.7938079380794,-2.3414996203474203],[40.82260822608228,-2.3600739703161224],[40.82980829808298,-2.375271165745076],[40.81540815408155,-2.397222670253541],[40.79020790207903,-2.424239906571671],[40.757807578075784,-2.4478799883500244],[40.71100711007111,-2.4664543383187407],[40.649806498064976,-2.539063160923689],[40.617406174061756,-2.5525717790827542],[40.58500585005851,-2.5458174700032288],[40.556205562055624,-2.5323088518441637],[40.523805238052375,-2.525554542764624],[40.491404914049156,-2.528931697304401],[40.390603906039075,-2.561014665432168],[40.347403474034735,-2.5897204790201727],[40.322203222032215,-2.5981633653695866],[40.29340293402936,-2.616737715338303],[40.24300243002432,-2.657263569815484],[40.23220232202323,-2.6690836107046607],[40.2250022500225,-2.682592228863726],[40.20340203402034,-2.7248066606107955],[40.17460174601746,-2.761955360548214],[40.171001710017094,-2.7788411332470417],[40.171001710017094,-2.7872840195964557],[40.189001890018915,-2.8075469468350462],[40.189001890018915,-2.8143012559145717],[40.18540185401855,-2.829498451343511],[40.18540185401855,-2.837941337692925],[40.163801638016395,-2.9021072739484737],[40.163801638016395,-2.934190242076241],[40.18540185401855,-2.9510760147750688],[40.17820178201782,-2.9764046738233105],[40.189001890018915,-2.988224714712487],[40.21060210602107,-2.986536137442613],[40.23220232202323,-2.9713389420136593],[40.23220232202323,-2.9814704056329617],[40.2250022500225,-2.9932904465221384],[40.189001890018915,-3.027061991919794],[40.16740167401676,-3.0557678055077986],[40.163801638016395,-3.0675878463969752],[40.16020160201603,-3.118245164493459],[40.1530015300153,-3.1351309371922866],[40.120601206012054,-3.1840996780188817],[40.11700117001172,-3.197608296177947],[40.12780127801278,-3.233068418845477],[40.12780127801278,-3.251642768814193],[40.12420124201242,-3.2668399642431325],[40.113401134011355,-3.282037159672086],[40.10260102601026,-3.2938572005612627],[40.088200882008834,-3.303988664180551],[40.04140041400416,-3.32594016868903],[40.0270002700027,-3.334383055038444],[40.00180001800018,-3.3630888686264484],[39.987399873998754,-3.373220332245751],[39.9729997299973,-3.3765974867855135],[39.980199801998026,-3.3597117140866857],[39.99099990999912,-3.3208744368793788],[39.99099990999912,-3.3073658187203137],[39.9729997299973,-3.3107429732600906],[39.9657996579966,-3.3208744368793788],[39.9657996579966,-3.334383055038444],[39.9657996579966,-3.347891673197509],[39.962199621996234,-3.358023136816797],[39.95859958599587,-3.3816632185951647],[39.95859958599587,-3.38841752767469],[39.962199621996234,-3.3934832594843414],[39.9657996579966,-3.3985489912939926],[39.94779947799478,-3.427254804881997],[39.92619926199262,-3.4812892775182434],[39.9009990099901,-3.5235037092652988],[39.89019890198904,-3.580915336441322],[39.879398793987946,-3.6045554182196753],[39.86499864998652,-3.616375459108852],[39.85779857798579,-3.6180640363787404],[39.836198361983634,-3.6096211500293265],[39.83259832598327,-3.6062439954895638],[39.81819818198184,-3.59104680006061],[39.81459814598148,-3.589358222790736],[39.785797857978594,-3.5876696455208474],[39.78939789397896,-3.5792267591714335],[39.79299792997932,-3.5741610273617823],[39.78219782197823,-3.567406718282257],[39.77139771397714,-3.5842924909810847],[39.7749977499775,-3.599489686410024],[39.78939789397896,-3.6096211500293265],[39.80739807398075,-3.6096211500293265],[39.79659796597966,-3.6231297681883916],[39.80019800198002,-3.6349498090775683],[39.81459814598148,-3.6400155408872052],[39.85059850598506,-3.624818345458266],[39.861398613986154,-3.63326123180768],[39.86499864998652,-3.648458427236619],[39.86859868598685,-3.6636556226655728],[39.86859868598685,-3.69573859079334],[39.785797857978594,-3.9169422131479763],[39.76059760597607,-3.942270872196218],[39.73179731797319,-3.945648026735981],[39.71019710197103,-3.9321394085769157],[39.7137971379714,-3.8966792859093857],[39.68859688596888,-3.9101879040684366],[39.68499684996851,-3.9169422131479763],[39.68859688596888,-3.9270736767672645],[39.69579695796958,-3.937205140386567],[39.69579695796958,-3.9473366040058693],[39.702997029970305,-3.955779490355283],[39.7137971379714,-3.964222376704683],[39.73539735397355,-3.9625337994348087],[39.74619746197462,-3.969288108514334],[39.74259742597428,-3.986173881213162],[39.7209972099721,-4.0098139629915295],[39.71739717397176,-4.016568272071055],[39.7137971379714,-4.025011158420469],[39.70659706597067,-4.0368311993096455],[39.69939699396994,-4.048651240198822],[39.69219692196924,-4.053716972008473],[39.68139681396815,-4.048651240198822],[39.67419674196742,-4.025011158420469],[39.66699666996672,-4.019945426610818],[39.65979659796599,-4.008125385721641],[39.66339663396636,-3.9844853039432877],[39.65979659796599,-3.9709766857842226],[39.6417964179642,-3.986173881213162],[39.61659616596168,-3.9709766857842226],[39.60579605796059,-3.969288108514334],[39.5949959499595,-3.9794195721336365],[39.60579605796059,-3.9878624584830504],[39.61659616596168,-3.9929281902927016],[39.6417964179642,-3.999682499372227],[39.63459634596347,-4.016568272071055],[39.627396273962745,-4.025011158420469],[39.5949959499595,-4.033454044769883],[39.58419584195843,-4.033454044769883],[39.57339573395734,-4.031765467499994],[39.56259562595628,-4.033454044769883],[39.55899558995591,-4.040208353849408],[39.56259562595628,-4.060471281087999],[39.56259562595628,-4.070602744707301],[39.56619566195664,-4.080734208326589],[39.58059580595807,-4.062159858357887],[39.61659616596168,-4.058782703818125],[39.6489964899649,-4.068914167437413],[39.67059670596706,-4.087488517406129],[39.66699666996672,-4.112817176454371],[39.61659616596168,-4.197246039948496],[39.58419584195843,-4.279986326172761],[39.551795517955185,-4.401563889604304],[39.54099540995412,-4.430269703192309],[39.53019530195303,-4.416761085033258],[39.5229952299523,-4.418449662303132],[39.5157951579516,-4.426892548652546],[39.50499504995051,-4.438712589541723],[39.50499504995051,-4.443778321351374],[39.50499504995051,-4.455598362240551],[39.501395013950145,-4.46235267132009],[39.48699486994872,-4.474172712209267],[39.48339483394835,-4.479238444018918],[39.450994509945104,-4.5822416574817595],[39.443794437944376,-4.563667307513043],[39.44739447394474,-4.534961493925039],[39.443794437944376,-4.519764298496099],[39.42939429394295,-4.5298957621153875],[39.42219422194222,-4.543404380274453],[39.418594185941856,-4.56029015297328],[39.41139411394116,-4.573798771132346],[39.40419404194043,-4.573798771132346],[39.3969939699397,-4.570421616592583],[39.389793897939,-4.570421616592583],[39.389793897939,-4.585618812021522],[39.389793897939,-4.594061698370936],[39.40779407794079,-4.614324625609527],[39.3969939699397,-4.629521821038466],[39.360993609936116,-4.634587552848117],[39.324993249932504,-4.624456089228829],[39.299792997929984,-4.595750275640825],[39.299792997929984,-4.600816007450462],[39.292592925929256,-4.616013202879415],[39.2637926379264,-4.605881739260113],[39.242192421924216,-4.627833243768592],[39.224192241922424,-4.656539057356596],[39.20619206192063,-4.6700476755156615],[39.198991989919904,-4.671736252785536],[39.19539195391954,-4.671736252785536],[39.19539195391954,-4.673424830055424],[39.191791917919176,-4.676801984595187],[39.198991989919904,-4.683556293674712],[39.21339213392136,-4.688622025484364],[39.22059220592206,-4.717327839072368],[39.216992169921696,-4.7494108072001495],[39.198991989919904,-4.766296579898977],[39.17019170191702,-4.779805198058028],[39.191791917919176,-4.788248084407442],[39.20619206192063,-4.789936661677331],[39.216992169921696,-4.795002393486982],[39.216992169921696,-4.818642475265335],[39.216992169921696,-4.838905402503926],[39.21339213392136,-4.855791175202754],[39.20619206192063,-4.8726769479015815],[39.173791737917384,-4.926711420537828],[39.16299162991632,-4.938531461427004],[39.15579155791559,-4.923334265998065],[39.159391593915956,-4.904759916029349],[39.166591665916656,-4.884496988790758],[39.17019170191702,-4.865922638822056],[39.16299162991632,-4.849036866123228],[39.1449914499145,-4.899694184219712],[39.13059130591307,-4.918268534188414],[39.108991089910916,-4.916579956918525],[39.12699126991271,-4.943597193236656],[39.12699126991271,-4.953728656855958],[39.13059130591307,-5.0094517067620785],[39.13059130591307,-5.019583170381381],[39.12339123391234,-5.024648902191018],[39.10539105391055,-5.019583170381381],[39.09819098190982,-5.022960324921144],[39.09459094590946,-5.028026056730795],[39.083790837908396,-5.048288983969385],[39.083790837908396,-5.0617976021284505],[39.09819098190982,-5.060109024858562],[39.13059130591307,-5.048288983969385],[39.13059130591307,-5.0617976021284505],[39.141391413914135,-5.087126261176678],[39.141391413914135,-5.095569147526092],[39.1377913779138,-5.104012033875506],[39.10179101791019,-5.136095002003287],[39.09459094590946,-5.144537888352701],[39.0729907299073,-5.186752320099757],[39.04419044190442,-5.232343906386603],[39.040590405904055,-5.239098215466129],[39.04779047790478,-5.245852524545654],[39.058590585905876,-5.239098215466129],[39.0729907299073,-5.218835288227538],[39.08019080190803,-5.230655329116715],[39.03699036990372,-5.3572986243579095],[39.02619026190263,-5.3792501288663885],[39.0117901179012,-5.397824478835105],[39.00099000990011,-5.40457878791463],[38.990189901899015,-5.4096445197242815],[38.982989829898315,-5.418087406073695],[38.97938979389795,-5.4315960242327606],[38.982989829898315,-5.4400389105821745],[38.990189901899015,-5.443416065121937],[38.99738997389974,-5.450170374201463],[38.99738997389974,-5.465367569630402],[38.98658986589868,-5.504204846837709],[38.957789577895795,-5.563305051283606],[38.92178921789218,-5.615650946649964],[38.889388893888935,-5.637602451158443],[38.90378903789039,-5.6426681829680945],[38.89658896588966,-5.6646196874765735],[38.89658896588966,-5.710211273763406],[38.8857888578886,-5.728785623732108],[38.87138871388714,-5.745671396430936],[38.85338853388535,-5.782820096368354],[38.831788317883195,-5.8149030644961215],[38.82458824588247,-5.8368545690046005],[38.8209882098821,-5.860494650782954],[38.8209882098821,-5.9246605870385025],[38.81738817388174,-5.934792050657805],[38.81018810188104,-5.94154635973733],[38.806588065880675,-5.949989246086744],[38.79938799387995,-5.9601207097060325],[38.79938799387995,-5.963497864245809],[38.79578795787958,-5.988826523294051],[38.78498784987852,-6.009089450532642],[38.77778777787779,-6.031040955041107],[38.77778777787779,-6.054681036819474],[38.781387813878155,-6.061435345899],[38.79578795787958,-6.074943964058065],[38.79938799387995,-6.08169827313759],[38.81018810188104,-6.120535550344897],[38.813788137881374,-6.130667013964185],[38.81738817388174,-6.135732745773836],[38.84258842588426,-6.15092994120279],[38.856988569885715,-6.164438559361841],[38.856988569885715,-6.169504291171492],[38.864188641886415,-6.208341568378799],[38.86058860588608,-6.231981650157152],[38.85338853388535,-6.253933154665631],[38.84258842588426,-6.2674417728246965],[38.84978849788499,-6.292770431872924],[38.85338853388535,-6.348493481779059],[38.864188641886415,-6.373822140827301],[38.87498874988751,-6.3822650271767145],[38.889388893888935,-6.387330758986366],[38.89658896588966,-6.394085068065891],[38.90378903789039,-6.404216531685194],[38.90378903789039,-6.414347995304482],[38.907389073890755,-6.426168036193658],[38.914589145891455,-6.436299499812961],[38.92178921789218,-6.444742386162375],[38.92898928989291,-6.449808117972026],[38.932589325893275,-6.4514966952419],[38.9469894698947,-6.4514966952419],[38.95418954189543,-6.454873849781677],[38.957789577895795,-6.461628158861203],[38.96138961389616,-6.468382467940728],[38.964989649896495,-6.473448199750379],[38.97578975789759,-6.475136777020268],[39.00459004590047,-6.476825354290142],[39.015390153901535,-6.483579663369682],[39.02619026190263,-6.486956817909444],[39.03699036990372,-6.483579663369682],[39.03699036990372,-6.475136777020268],[39.02619026190263,-6.471759622480491],[39.0117901179012,-6.465005313400965],[38.990189901899015,-6.4514966952419],[39.0189901899019,-6.461628158861203],[39.040590405904055,-6.4700710452106165],[39.09459094590946,-6.522416940576974],[39.13059130591307,-6.561254217784281],[39.15579155791559,-6.581517145022872],[39.16299162991632,-6.589960031372286],[39.17739177391775,-6.6152886904205275],[39.18819188191884,-6.623731576769941],[39.20259202592027,-6.63386304038923],[39.21339213392136,-6.6423059267386435],[39.22059220592206,-6.652437390357946],[39.224192241922424,-6.665946008517011],[39.224192241922424,-6.679454626676076],[39.23139231392315,-6.7030947084544295],[39.24579245792458,-6.731800522042434],[39.2637926379264,-6.743620562931611],[39.28179281792819,-6.726734790232783],[39.285392853928556,-6.755440603820787],[39.27819278192783,-6.794277881028094],[39.28179281792819,-6.829738003695624],[39.299792997929984,-6.850000930934215],[39.299792997929984,-6.831426580965513],[39.299792997929984,-6.822983694616099],[39.292592925929256,-6.814540808266685],[39.310593105931076,-6.816229385536573],[39.324993249932504,-6.82129511734621],[39.35379353793539,-6.8398694673149265],[39.37179371793718,-6.843246621854689],[39.400594005940064,-6.846623776394452],[39.41139411394116,-6.853378085473992],[39.42939429394295,-6.858443817283629],[39.46539465394656,-6.858443817283629],[39.47259472594726,-6.86350954909328],[39.476194761947625,-6.877018167252345],[39.49419494194942,-6.900658249030698],[39.501395013950145,-6.931052639888591],[39.551795517955185,-6.993529998874251],[39.55539555395555,-7.000284307953777],[39.551795517955185,-7.010415771573079],[39.54819548195482,-7.017170080652605],[39.54099540995412,-7.022235812462256],[39.54099540995412,-7.027301544271907],[39.54819548195482,-7.091467480527442],[39.54819548195482,-7.118484716845572],[39.53379533795339,-7.116796139575683],[39.5229952299523,-7.1303047577347485],[39.5157951579516,-7.157321994052879],[39.50859508595087,-7.169142034942055],[39.49779497794978,-7.177584921291469],[39.48699486994872,-7.177584921291469],[39.47979479794799,-7.167453457672167],[39.476194761947625,-7.150567684973339],[39.43659436594368,-7.180962075831232],[39.43299432994331,-7.180962075831232],[39.425794257942584,-7.192782116720409],[39.42219422194222,-7.2096678894192365],[39.418594185941856,-7.226553662118064],[39.41499414994152,-7.2400622802771295],[39.40419404194043,-7.255259475706069],[39.389793897939,-7.265390939325371],[39.38259382593827,-7.2670795165952455],[39.375393753937544,-7.268768093865134],[39.368193681936816,-7.272145248404897],[39.368193681936816,-7.278899557484422],[39.37179371793718,-7.287342443833836],[39.375393753937544,-7.29578533018325],[39.368193681936816,-7.307605371072427],[39.35739357393575,-7.309293948342315],[39.33939339393396,-7.309293948342315],[39.32859328593287,-7.309293948342315],[39.335793357933596,-7.326179721041143],[39.34659346593466,-7.336311184660445],[39.35379353793539,-7.349819802819496],[39.35379353793539,-7.370082730058087],[39.350193501935024,-7.3852799254870405],[39.33939339393396,-7.405542852725631],[39.33219332193323,-7.424117202694333],[39.30339303393035,-7.447757284472701],[39.292592925929256,-7.486594561679993],[39.274592745927464,-7.596352084222374],[39.274592745927464,-7.616615011460965],[39.28179281792819,-7.636877938699556],[39.292592925929256,-7.668960906827337],[39.29619296192962,-7.689223834065928],[39.28899288992892,-7.7027324522249785],[39.285392853928556,-7.717929647653932],[39.30339303393035,-7.753389770321462],[39.29619296192962,-7.771964120290178],[39.25299252992531,-7.822621438386662],[39.28179281792819,-7.815867129307122],[39.30339303393035,-7.792227047528769],[39.317793177931776,-7.758455502131113],[39.32859328593287,-7.726372534003346],[39.342993429934296,-7.738192574892523],[39.35379353793539,-7.751701193051588],[39.35739357393575,-7.766898388480527],[39.33939339393396,-7.7820955839094665],[39.37899378993791,-7.778718429369704],[39.3969939699397,-7.780407006639592],[39.41139411394116,-7.792227047528769],[39.44019440194404,-7.819244283846885],[39.443794437944376,-7.83275290200595],[39.43659436594368,-7.858081561054192],[39.42219422194222,-7.890164529181959],[39.42219422194222,-7.90198457007115],[39.43299432994331,-7.93744469273868],[39.43299432994331,-7.976281969945987],[39.43659436594368,-7.993167742644815],[39.450994509945104,-7.984724856295401],[39.45819458194583,-7.9796591244857495],[39.45459454594547,-8.010053515343643],[39.44019440194404,-8.038759328931647],[39.41139411394116,-8.089416647028116],[39.375393753937544,-8.178911242331907],[39.360993609936116,-8.207617055919911],[39.35379353793539,-8.204239901380149],[39.350193501935024,-8.204239901380149],[39.350193501935024,-8.205928478650023],[39.33939339393396,-8.207617055919911],[39.34659346593466,-8.221125674078976],[39.34659346593466,-8.256585796746506],[39.34659346593466,-8.275160146715223],[39.335793357933596,-8.268405837635683],[39.33219332193323,-8.276848723985097],[39.32859328593287,-8.295423073953813],[39.310593105931076,-8.278537301254985],[39.30339303393035,-8.27178299217546],[39.292592925929256,-8.268405837635683],[39.30339303393035,-8.283603033064637],[39.30339303393035,-8.295423073953813],[39.29619296192962,-8.303865960303227],[39.28179281792819,-8.308931692112878],[39.292592925929256,-8.33426035116112],[39.299792997929984,-8.361277587479236],[39.30699306993071,-8.388294823797366],[39.30699306993071,-8.418689214655245],[39.299792997929984,-8.477789419101143],[39.30339303393035,-8.504806655419273],[39.335793357933596,-8.540266778086803],[39.350193501935024,-8.562218282595282],[39.35739357393575,-8.587546941643524],[39.360993609936116,-8.611187023421877],[39.360993609936116,-8.693927309646128],[39.35379353793539,-8.714190236884718],[39.389793897939,-8.72432170050402],[39.3969939699397,-8.729387432313672],[39.3969939699397,-8.737830318663072],[39.400594005940064,-8.744584627742611],[39.41139411394116,-8.747961782282374],[39.43299432994331,-8.749650359552263],[39.44019440194404,-8.7547160913619],[39.44019440194404,-8.768224709520965],[39.443794437944376,-8.788487636759555],[39.450994509945104,-8.805373409458383],[39.46539465394656,-8.812127718537923],[39.476194761947625,-8.81719345034756],[39.48699486994872,-8.827324913966862],[39.49779497794978,-8.840833532125927],[39.50859508595087,-8.876293654793457],[39.51939519395194,-8.89149085022241],[39.54819548195482,-8.913442354730876],[39.55539555395555,-8.92188524108029],[39.54099540995412,-8.92695097288994],[39.526595265952665,-8.925262395620052],[39.51939519395194,-8.923573818350178],[39.50499504995051,-8.911753777461001],[39.50499504995051,-8.910065200191113],[39.48339483394835,-8.89149085022241],[39.46539465394656,-8.867850768444043],[39.450994509945104,-8.85940788209463],[39.42939429394295,-8.861096459364518],[39.418594185941856,-8.866162191174169],[39.41139411394116,-8.867850768444043],[39.40779407794079,-8.869539345713932],[39.389793897939,-8.898245159301936],[39.40419404194043,-8.904999468381462],[39.46539465394656,-8.898245159301936],[39.450994509945104,-8.915130932000764],[39.44739447394474,-8.925262395620052],[39.45459454594547,-8.932016704699592],[39.476194761947625,-8.933705281969466],[39.49059490594908,-8.938771013779117],[39.49059490594908,-8.952279631938183],[39.48699486994872,-8.972542559176773],[39.48339483394835,-8.994494063685252],[39.48699486994872,-8.997871218225015],[39.49779497794978,-9.00462552730454],[39.49779497794978,-9.008002681844317],[39.49779497794978,-9.028265609082908],[39.49779497794978,-9.029954186352782],[39.49419494194942,-9.040085649972085],[39.49059490594908,-9.043462804511847],[39.49419494194942,-9.045151381781736],[39.49779497794978,-9.04683995905161],[39.50499504995051,-9.050217113591373],[39.50499504995051,-9.056971422670912],[39.501395013950145,-9.065414309020326],[39.49779497794978,-9.072168618099852],[39.49419494194942,-9.078922927179377],[39.49419494194942,-9.090742968068568],[39.501395013950145,-9.105940163497507],[39.501395013950145,-9.114383049846921],[39.49779497794978,-9.12451451346621],[39.51219512195124,-9.121137358926447],[39.53019530195303,-9.112694472577033],[39.54459544595446,-9.102563008957745],[39.55539555395555,-9.09412012260833],[39.56979569795698,-9.092431545338442],[39.58419584195843,-9.105940163497507],[39.627396273962745,-9.159974636133754],[39.64539645396454,-9.188680449721758],[39.6489964899649,-9.219074840579651],[39.63459634596347,-9.251157808707418],[39.63099630996311,-9.257912117786944],[39.63819638196384,-9.266355004136358],[39.64539645396454,-9.274797890485772],[39.6489964899649,-9.283240776835186],[39.6489964899649,-9.293372240454488],[39.64539645396454,-9.313635167693079],[39.6417964179642,-9.323766631312381],[39.64539645396454,-9.355849599440148],[39.6417964179642,-9.369358217599213],[39.63099630996311,-9.386243990298041],[39.61659616596168,-9.39637545391733],[39.60579605796059,-9.399752608457092],[39.59859598595986,-9.398064031187218],[39.58059580595807,-9.399752608457092],[39.56979569795698,-9.404818340266743],[39.56259562595628,-9.414949803886046],[39.56259562595628,-9.428458422045097],[39.56619566195664,-9.447032772013813],[39.576995769957705,-9.44365561747405],[39.5877958779588,-9.440278462934288],[39.60939609396095,-9.440278462934288],[39.60939609396095,-9.428458422045097],[39.61659616596168,-9.425081267505334],[39.627396273962745,-9.430146999314985],[39.63099630996311,-9.43690130839451],[39.63459634596347,-9.438589885664399],[39.63819638196384,-9.440278462934288],[39.6489964899649,-9.445344194743925],[39.652596525965265,-9.455475658363227],[39.6489964899649,-9.467295699252404],[39.6489964899649,-9.474050008331929],[39.65619656196563,-9.484181471951231],[39.68139681396815,-9.50613297645971],[39.68859688596888,-9.524707326428413],[39.69939699396994,-9.578741799064659],[39.71019710197103,-9.593938994493612],[39.72459724597246,-9.6040704581129],[39.7209972099721,-9.61082476719244],[39.7137971379714,-9.617579076271966],[39.7137971379714,-9.624333385351491],[39.71739717397176,-9.636153426240668],[39.7209972099721,-9.642907735320208],[39.73539735397355,-9.656416353479273],[39.74259742597428,-9.66654781709856],[39.73899738997392,-9.686810744337151],[39.74619746197462,-9.707073671575742],[39.73899738997392,-9.713827980655282],[39.71739717397176,-9.720582289734807],[39.702997029970305,-9.735779485163746],[39.69579695796958,-9.74422237151316],[39.70659706597067,-9.749288103322812],[39.74619746197462,-9.747599526052937],[39.753397533975345,-9.749288103322812],[39.75699756997571,-9.756042412402351],[39.76419764197644,-9.783059648720467],[39.77139771397714,-9.79319111233977],[39.785797857978594,-9.805011153228946],[39.79299792997932,-9.811765462308472],[39.80019800198002,-9.823585503197648],[39.80739807398075,-9.852291316785653],[39.80019800198002,-9.872554244024258],[39.78219782197823,-9.882685707643546],[39.753397533975345,-9.879308553103783],[39.76059760597607,-9.892817171262848],[39.78939789397896,-9.914768675771313],[39.78939789397896,-9.923211562120727],[39.778597785977865,-9.929965871200267],[39.74619746197462,-9.945163066629206],[39.7137971379714,-9.951917375708746],[39.7137971379714,-9.963737416597922],[39.72459724597246,-9.989066075646164],[39.72459724597246,-10.007640425614866],[39.71739717397176,-10.021149043773931],[39.70659706597067,-10.032969084663108],[39.69219692196924,-10.04310054828241],[39.71739717397176,-10.03803481647276],[39.76419764197644,-9.982311766566625],[39.78219782197823,-9.985688921106387],[39.79659796597966,-9.992443230185927],[39.82539825398254,-9.990754652916038],[39.8469984699847,-10.011017580154629],[39.861398613986154,-10.012706157424518],[39.87579875798758,-10.012706157424518],[39.89019890198904,-10.014394734694392],[39.91539915399156,-10.034657661932997],[39.97659976599766,-10.132595143586187],[39.97659976599766,-10.191695348032084],[39.98379983799839,-10.220401161620089],[39.994599945999454,-10.208581120730912],[40.00180001800018,-10.193383925301958],[40.00180001800018,-10.174809575333256],[39.994599945999454,-10.159612379904317],[39.987399873998754,-10.139349452665712],[39.987399873998754,-10.130906566316298],[40.00180001800018,-10.130906566316298],[40.019800198001974,-10.132595143586187],[40.03420034200343,-10.137660875395838],[40.06660066600668,-10.151169493554903],[40.08460084600847,-10.154546648094666],[40.12420124201242,-10.169743843523605],[40.13140131401315,-10.168055266253731],[40.13140131401315,-10.169743843523605],[40.13500135001351,-10.179875307142908],[40.13500135001351,-10.193383925301958],[40.12780127801278,-10.206892543461024],[40.12420124201242,-10.222089738889977],[40.13140131401315,-10.23897551158879],[40.13500135001351,-10.247418397938205],[40.12780127801278,-10.252484129747856],[40.11700117001172,-10.257549861557507],[40.11700117001172,-10.262615593367158],[40.120601206012054,-10.271058479716572],[40.12420124201242,-10.271058479716572],[40.13140131401315,-10.269369902446684],[40.13500135001351,-10.269369902446684],[40.1530015300153,-10.279501366065986],[40.16020160201603,-10.28118994333586],[40.163801638016395,-10.272747056986447],[40.163801638016395,-10.262615593367158],[40.16740167401676,-10.255861284287619],[40.17460174601746,-10.255861284287619],[40.18540185401855,-10.259238438827396],[40.196201962019614,-10.26768132517681],[40.221402214022135,-10.2879442524154],[40.23220232202323,-10.296387138764814],[40.23220232202323,-10.2879442524154],[40.23220232202323,-10.28118994333586],[40.23580235802359,-10.276124211526223],[40.239402394023955,-10.269369902446684],[40.246602466024655,-10.274435634256335],[40.25380253802538,-10.276124211526223],[40.25740257402575,-10.274435634256335],[40.26820268202684,-10.269369902446684],[40.25020250202502,-10.264304170637033],[40.19980199801998,-10.242352666128568],[40.23220232202323,-10.200138234381498],[40.246602466024655,-10.20520396619115],[40.25020250202502,-10.215335429810438],[40.25380253802538,-10.230532625239391],[40.26100261002611,-10.242352666128568],[40.26820268202684,-10.249106975208093],[40.289802898028995,-10.259238438827396],[40.30060300603006,-10.269369902446684],[40.30780307803079,-10.277812788796098],[40.340203402034035,-10.348733034131172],[40.347403474034735,-10.358864497750474],[40.3510035100351,-10.357175920480586],[40.38340383403835,-10.362241652290237],[40.390603906039075,-10.36561880683],[40.423004230042295,-10.355487343210697],[40.42660426604266,-10.335224415972107],[40.415804158041595,-10.320027220543167],[40.397803978039775,-10.32340437508293],[40.39420394203944,-10.311584334193753],[40.397803978039775,-10.30314144784434],[40.4050040500405,-10.298075716034688],[40.41940419404196,-10.296387138764814],[40.42660426604266,-10.299764293304577],[40.43020430204302,-10.30820717965399],[40.43380433804339,-10.318338643273279],[40.441004410044116,-10.326781529622693],[40.448204482044815,-10.34535587959141],[40.441004410044116,-10.362241652290237],[40.423004230042295,-10.375750270449302],[40.41220412204123,-10.39263604314813],[40.415804158041595,-10.390947465878241],[40.43020430204302,-10.39263604314813],[40.43740437404375,-10.39263604314813],[40.42660426604266,-10.426407588545771],[40.423004230042295,-10.436539052165074],[40.42660426604266,-10.444981938514488],[40.43380433804339,-10.451736247594013],[40.43740437404375,-10.461867711213316],[40.43740437404375,-10.47537632937238],[40.45540455404554,-10.468622020292841],[40.469804698047,-10.471999174832604],[40.4770047700477,-10.482130638451906],[40.466204662046636,-10.495639256610971],[40.48420484204843,-10.500704988420622],[40.50940509405095,-10.477064906642255],[40.52740527405274,-10.488884947531432],[40.531005310053104,-10.509147874770036],[40.52020520205204,-10.52603364746885],[40.50580505805058,-10.539542265627915],[40.498604986049855,-10.549673729247218],[40.50580505805058,-10.566559501946045],[40.523805238052375,-10.57331381102557],[40.54540545405456,-10.576690965565334],[40.55980559805599,-10.585133851914748],[40.567005670056716,-10.600331047343701],[40.57060570605708,-10.634102592741343],[40.57780577805778,-10.649299788170296],[40.592205922059236,-10.65774267451971],[40.631806318063184,-10.662808406329361],[40.64620646206464,-10.669562715408887],[40.65340653406534,-10.686448488107715],[40.63900639006391,-10.691514219917366],[40.6030060300603,-10.688137065377589],[40.57060570605708,-10.696579951727003],[40.48420484204843,-10.76243446525244],[40.491404914049156,-10.796206010650081],[40.498604986049855,-10.791140278840444],[40.50580505805058,-10.786074547030793],[40.50940509405095,-10.77763166068138],[40.51300513005131,-10.769188774331965],[40.531005310053104,-10.786074547030793],[40.6030060300603,-10.819846092428449],[40.62100621006212,-10.84010901966704],[40.6030060300603,-10.86037194690563],[40.54540545405456,-10.885700605953872],[40.52740527405274,-10.9025863786527],[40.50940509405095,-10.927915037700942],[40.49500495004952,-10.954932274019058],[40.50580505805058,-10.992080973956476],[40.498604986049855,-11.02754109662402],[40.50580505805058,-11.037672560243308],[40.516605166051676,-11.034295405703546],[40.531005310053104,-11.008966746655304],[40.541805418054196,-11.003901014845667],[40.567005670056716,-11.014032478464955],[40.567005670056716,-11.04273829205296],[40.55260552605526,-11.074821260180727],[40.53820538205383,-11.095084187419332],[40.50580505805058,-11.128855732816973],[40.498604986049855,-11.138987196436275],[40.498604986049855,-11.15249581459534],[40.50580505805058,-11.177824473643582],[40.50580505805058,-11.18795593726287],[40.49500495004952,-11.204841709961698],[40.42660426604266,-11.25212187351842],[40.41940419404196,-11.265630491677484],[40.4050040500405,-11.301090614345014],[40.397803978039775,-11.311222077964317],[40.38340383403835,-11.31459923250408],[40.36180361803619,-11.31459923250408],[40.347403474034735,-11.316287809773954],[40.35820358203583,-11.331485005202907],[40.36900369003692,-11.351747932441498],[40.37620376203762,-11.358502241521023],[40.38340383403835,-11.338239314282433],[40.397803978039775,-11.346682200631847],[40.41220412204123,-11.361879396060786],[40.42660426604266,-11.37707659148974],[40.43740437404375,-11.392273786918679],[40.466204662046636,-11.385519477839154],[40.469804698047,-11.41760244596692],[40.466204662046636,-11.449685414094688],[40.45900459004591,-11.488522691301995],[40.448204482044815,-11.520605659429762],[40.441004410044116,-11.534114277588827],[40.42660426604266,-11.547622895747892],[40.423004230042295,-11.562820091176832],[40.43380433804339,-11.578017286605771],[40.45180451804518,-11.593214482034725],[40.45900459004591,-11.605034522923901],[40.45180451804518,-11.616854563813078],[40.43020430204302,-11.64218322286132],[40.42660426604266,-11.650626109210734],[40.43740437404375,-11.664134727369799],[40.441004410044116,-11.675954768258975],[40.44460444604448,-11.708037736386743],[40.448204482044815,-11.728300663625333],[40.466204662046636,-11.745186436324161],[40.469804698047,-11.7519407454037],[40.473404734047335,-11.757006477213338],[40.473404734047335,-11.805975218039947],[40.48060480604806,-11.822860990738775],[40.491404914049156,-11.839746763437603],[40.50220502205022,-11.834681031627952],[40.50580505805058,-11.832992454358063],[40.52020520205204,-11.839746763437603],[40.491404914049156,-11.866763999755719],[40.48780487804879,-11.895469813343723],[40.491404914049156,-11.925864204201616],[40.50580505805058,-11.95457001778962],[40.53820538205383,-11.99678444953669],[40.53820538205383,-12.005227335886104],[40.52020520205204,-12.022113108584932],[40.516605166051676,-12.03224457220422],[40.51300513005131,-12.064327540332002],[40.50220502205022,-12.113296281158597],[40.498604986049855,-12.126804899317648],[40.50220502205022,-12.143690672016476],[40.52020520205204,-12.172396485604494],[40.52740527405274,-12.187593681033434],[40.523805238052375,-12.204479453732262],[40.516605166051676,-12.224742380970852],[40.50580505805058,-12.243316730939554],[40.491404914049156,-12.250071040019094],[40.4770047700477,-12.245005308209443],[40.46260462604627,-12.239939576399792],[40.45540455404554,-12.243316730939554],[40.45180451804518,-12.263579658178159],[40.4770047700477,-12.258513926368508],[40.498604986049855,-12.273711121797447],[40.51300513005131,-12.300728358115578],[40.52020520205204,-12.32605701716382],[40.516605166051676,-12.33956563532287],[40.50940509405095,-12.351385676212047],[40.50580505805058,-12.364894294371112],[40.50940509405095,-12.380091489800066],[40.516605166051676,-12.38853437614948],[40.531005310053104,-12.390222953419354],[40.55980559805599,-12.386845798879591],[40.55980559805599,-12.396977262498893],[40.55260552605526,-12.405420148848293],[40.54540545405456,-12.412174457927833],[40.52020520205204,-12.417240189737484],[40.51300513005131,-12.427371653356772],[40.50580505805058,-12.447634580595363],[40.48060480604806,-12.484783280532781],[40.4770047700477,-12.501669053231609],[40.491404914049156,-12.516866248660563],[40.50220502205022,-12.5219319804702],[40.516605166051676,-12.523620557740088],[40.556205562055624,-12.525309135009977],[40.56340563405635,-12.530374866819614],[40.55980559805599,-12.597917957614925],[40.56340563405635,-12.613115153043879],[40.574205742057416,-12.619869462123404],[40.58500585005851,-12.621558039393292],[40.61380613806139,-12.636755234822232],[40.62100621006212,-12.645198121171646],[40.61380613806139,-12.657018162060822],[40.6030060300603,-12.658706739330711],[40.58500585005851,-12.640132389361995],[40.574205742057416,-12.640132389361995],[40.567005670056716,-12.650263852981297],[40.567005670056716,-12.662083893870474],[40.57780577805778,-12.705986902887418],[40.58500585005851,-12.705986902887418],[40.5958059580596,-12.700921171077766],[40.61020610206103,-12.702609748347655],[40.617406174061756,-12.712741211966957],[40.624606246062456,-12.738069871015185],[40.62820628206282,-12.743135602824836],[40.642606426064276,-12.746512757364599],[40.64620646206464,-12.754955643714013],[40.64620646206464,-12.766775684603203],[40.642606426064276,-12.776907148222492],[40.62820628206282,-12.79379292092132],[40.606606066060664,-12.79885865273097],[40.58500585005851,-12.792104343651431],[40.567005670056716,-12.776907148222492],[40.567005670056716,-12.785350034571906],[40.57060570605708,-12.795481498191208],[40.57060570605708,-12.803924384540622],[40.574205742057416,-12.805612961810496],[40.55980559805599,-12.81405584815991],[40.531005310053104,-12.810678693620147],[40.52740527405274,-12.819121579969561],[40.53460534605347,-12.827564466318975],[40.54540545405456,-12.836007352668389],[40.556205562055624,-12.846138816287677],[40.549005490054896,-12.866401743526282],[40.53820538205383,-12.893418979844398],[40.53460534605347,-12.901861866193812],[40.523805238052375,-12.908616175273337],[40.52020520205204,-12.910304752543226],[40.52020520205204,-12.906927598003463],[40.51300513005131,-12.901861866193812],[40.51300513005131,-12.893418979844398],[40.50940509405095,-12.886664670764873],[40.498604986049855,-12.879910361685333],[40.491404914049156,-12.879910361685333],[40.48420484204843,-12.881598938955221],[40.45540455404554,-12.89679613438416],[40.43380433804339,-12.910304752543226],[40.41940419404196,-12.927190525242054],[40.41220412204123,-12.942387720670993],[40.41220412204123,-12.96096207063971],[40.41940419404196,-12.971093534258998],[40.469804698047,-13.01668512054583],[40.48420484204843,-13.021750852355481],[40.498604986049855,-13.01668512054583],[40.51300513005131,-12.999799347847016],[40.50580505805058,-12.984602152418063],[40.49500495004952,-12.971093534258998],[40.491404914049156,-12.954207761560184],[40.498604986049855,-12.947453452480644],[40.516605166051676,-12.947453452480644],[40.531005310053104,-12.950830607020407],[40.54540545405456,-12.957584916099947],[40.55980559805599,-12.962650647909584],[40.574205742057416,-12.957584916099947],[40.58860588605887,-12.957584916099947],[40.5958059580596,-12.976159266068649],[40.58860588605887,-13.00824223419643],[40.567005670056716,-13.06565386137244],[40.55980559805599,-13.099425406770095],[40.56340563405635,-13.116311179468923],[40.574205742057416,-13.150082724866564],[40.574205742057416,-13.16865707483528],[40.567005670056716,-13.242954474710118],[40.56340563405635,-13.263217401948708],[40.549005490054896,-13.275037442837885],[40.53460534605347,-13.285168906457187],[40.52740527405274,-13.298677524616252],[40.531005310053104,-13.310497565505429],[40.541805418054196,-13.305431833695778],[40.567005670056716,-13.285168906457187],[40.567005670056716,-13.36622061541155],[40.574205742057416,-13.364532038141675],[40.58500585005851,-13.362843460871787],[40.58860588605887,-13.361154883601913],[40.58500585005851,-13.383106388110377],[40.55260552605526,-13.415189356238159],[40.54540545405456,-13.432075128936987],[40.54540545405456,-13.474289560684042],[40.53820538205383,-13.496241065192521],[40.52740527405274,-13.509749683351586],[40.54540545405456,-13.524946878780526],[40.55980559805599,-13.543521228749242],[40.574205742057416,-13.558718424178181],[40.5958059580596,-13.565472733257721],[40.5958059580596,-13.572227042337246],[40.58500585005851,-13.587424237766186],[40.549005490054896,-13.61613005135419],[40.53820538205383,-13.63639297859278],[40.541805418054196,-13.65834448310126],[40.57060570605708,-13.715756110277269],[40.574205742057416,-13.734330460245985],[40.592205922059236,-13.852530869137766],[40.6030060300603,-13.879548105455896],[40.6030060300603,-13.891368146345073],[40.606606066060664,-13.901499609964375],[40.62100621006212,-13.916696805393315],[40.62820628206282,-13.925139691742729],[40.63540635406355,-13.935271155362031],[40.63540635406355,-13.942025464441556],[40.63900639006391,-13.967354123489798],[40.649806498064976,-14.011257132506742],[40.649806498064976,-14.031520059745333],[40.64620646206464,-14.058537296063463],[40.63540635406355,-14.07035733695264],[40.5958059580596,-14.085554532381579],[40.606606066060664,-14.092308841461119],[40.617406174061756,-14.100751727810533],[40.62100621006212,-14.11257176869971],[40.62100621006212,-14.127768964128649],[40.61020610206103,-14.137900427747951],[40.5958059580596,-14.142966159557602],[40.567005670056716,-14.14803189136724],[40.53820538205383,-14.164917664066067],[40.54540545405456,-14.181803436764895],[40.55980559805599,-14.202066364003485],[40.55260552605526,-14.230772177591504],[40.567005670056716,-14.225706445781853],[40.57780577805778,-14.207132095813137],[40.58860588605887,-14.205443518543262],[40.5958059580596,-14.213886404892676],[40.592205922059236,-14.224017868511964],[40.58860588605887,-14.234149332131267],[40.6030060300603,-14.244280795750555],[40.58860588605887,-14.254412259369857],[40.581405814058144,-14.25778941390962],[40.592205922059236,-14.262855145719271],[40.6030060300603,-14.262855145719271],[40.61380613806139,-14.25778941390962],[40.62100621006212,-14.251035104830095],[40.62100621006212,-14.220640713972202],[40.64620646206464,-14.202066364003485],[40.69660696606968,-14.181803436764895],[40.707407074070744,-14.190246323114309],[40.7218072180722,-14.205443518543262],[40.725407254072536,-14.220640713972202],[40.725407254072536,-14.249346527560206],[40.7290072900729,-14.261166568449383],[40.74700747007472,-14.271298032068685],[40.73620736207363,-14.28480665022775],[40.7290072900729,-14.303381000196453],[40.7290072900729,-14.323643927435043],[40.732607326073264,-14.340529700133871],[40.718207182071836,-14.343906854673634],[40.69660696606968,-14.36248120464235],[40.68580685806859,-14.367546936452001],[40.67140671406716,-14.36248120464235],[40.65340653406534,-14.343906854673634],[40.63540635406355,-14.340529700133871],[40.657006570065704,-14.448598645406364],[40.63900639006391,-14.443532913596712],[40.62820628206282,-14.450287222676252],[40.631806318063184,-14.46041868629554],[40.642606426064276,-14.470550149914843],[40.62100621006212,-14.490813077153433],[40.624606246062456,-14.495878808963084],[40.62820628206282,-14.500944540772736],[40.63540635406355,-14.504321695312498],[40.62820628206282,-14.54991328159933],[40.62820628206282,-14.566799054298158],[40.649806498064976,-14.546536127059568],[40.66420664206643,-14.524584622551089],[40.693006930069316,-14.44015575905695],[40.700207002070016,-14.431712872707536],[40.76140761407615,-14.403007059119531],[40.77220772207724,-14.401318481849643],[40.801008010080096,-14.411449945468945],[40.82980829808298,-14.435090027247298],[40.84420844208444,-14.463795840835303],[40.833408334083344,-14.494190231693196],[40.81900819008192,-14.50263311804261],[40.79020790207903,-14.50938742712215],[40.77220772207724,-14.514453158931786],[40.76140761407615,-14.526273199820963],[40.76140761407615,-14.534716086170377],[40.77220772207724,-14.539781817980028],[40.78660786607867,-14.539781817980028],[40.79740797407976,-14.531338931630614],[40.80460804608046,-14.5228960452812],[40.81540815408155,-14.51783031347155],[40.82980829808298,-14.524584622551089],[40.833408334083344,-14.538093240710154],[40.833408334083344,-14.556667590678856],[40.81180811808119,-14.61239064058499],[40.81180811808119,-14.624210681474167],[40.82260822608228,-14.641096454172995],[40.826208262082616,-14.644473608712758],[40.82980829808298,-14.64785076325252],[40.83700837008371,-14.652916495062172],[40.84060840608407,-14.661359381411586],[40.84420844208444,-14.668113690491111],[40.84420844208444,-14.681622308650176],[40.84420844208444,-14.69006519499959],[40.8478084780848,-14.70526239042853],[40.833408334083344,-14.764362594874427],[40.833408334083344,-14.769428326684078],[40.833408334083344,-14.77449405849373],[40.84060840608407,-14.781248367573255],[40.84420844208444,-14.78800267665278],[40.84420844208444,-14.793068408462432],[40.84060840608407,-14.798134140272083],[40.83700837008371,-14.801511294811846],[40.78660786607867,-14.821774222050436],[40.77940779407794,-14.83021710839985],[40.775807758077576,-14.838659994749264],[40.73980739807399,-14.874120117416808],[40.725407254072536,-14.887628735575873],[40.71100711007111,-14.896071621925287],[40.693006930069316,-14.89944877646505],[40.675006750067496,-14.901137353734924],[40.66420664206643,-14.896071621925287],[40.65340653406534,-14.865677231067394],[40.642606426064276,-14.853857190178218],[40.64620646206464,-14.87243154014692],[40.649806498064976,-14.891005890115636],[40.65340653406534,-14.907891662814464],[40.67140671406716,-14.921400280973515],[40.68580685806859,-14.924777435513292],[40.732607326073264,-14.924777435513292],[40.74700747007472,-14.921400280973515],[40.757807578075784,-14.938286053672343],[40.76860768607688,-14.960237558180822],[40.775807758077576,-14.9821890626893],[40.77220772207724,-14.99738625811824],[40.757807578075784,-14.985566217229064],[40.750607506075056,-14.983877639959175],[40.73980739807399,-14.988943371768826],[40.725407254072536,-14.990631949038715],[40.67140671406716,-14.97712333087965],[40.66060660606607,-14.995697680848366],[40.675006750067496,-15.02440349443637],[40.71100711007111,-15.073372235262966],[40.682206822068224,-15.083503698882254],[40.649806498064976,-15.08688085342203],[40.62100621006212,-15.098700894311207],[40.6030060300603,-15.127406707899212],[40.58860588605887,-15.12234097608956],[40.567005670056716,-15.118963821549798],[40.549005490054896,-15.11727524427991],[40.53460534605347,-15.120652398819686],[40.52740527405274,-15.130783862438975],[40.52020520205204,-15.167932562376393],[40.51300513005131,-15.181441180535458],[40.549005490054896,-15.188195489614984],[40.567005670056716,-15.193261221424635],[40.581405814058144,-15.203392685043937],[40.58860588605887,-15.172998294186044],[40.61020610206103,-15.161178253296868],[40.63540635406355,-15.16455540783663],[40.66060660606607,-15.17975260326557],[40.675006750067496,-15.201704107774049],[40.682206822068224,-15.233787075901816],[40.67860678606786,-15.260804312219946],[40.657006570065704,-15.270935775839234],[40.667806678066796,-15.286132971268188],[40.667806678066796,-15.299641589427239],[40.62820628206282,-15.338478866634546],[40.624606246062456,-15.345233175714071],[40.62820628206282,-15.362118948412899],[40.624606246062456,-15.370561834762313],[40.617406174061756,-15.379004721111727],[40.61380613806139,-15.385759030191267],[40.592205922059236,-15.402644802890094],[40.58860588605887,-15.40939911196962],[40.58500585005851,-15.416153421049145],[40.58860588605887,-15.433039193747973],[40.58500585005851,-15.439793502827513],[40.57780577805778,-15.453302120986578],[40.574205742057416,-15.468499316415517],[40.57780577805778,-15.478630780034806],[40.58860588605887,-15.476942202764931],[40.581405814058144,-15.49213939819387],[40.574205742057416,-15.505648016352936],[40.56340563405635,-15.515779479972224],[40.54540545405456,-15.525910943591526],[40.53460534605347,-15.530976675401178],[40.523805238052375,-15.530976675401178],[40.498604986049855,-15.525910943591526],[40.49500495004952,-15.551239602639768],[40.48060480604806,-15.56981395260847],[40.441004410044116,-15.5968311889266],[40.42660426604266,-15.615405538895317],[40.365403654036555,-15.715031597818395],[40.163801638016395,-15.915972292934427],[40.120601206012054,-15.939612374712794],[40.11700117001172,-15.948055261062208],[40.113401134011355,-15.96156387922126],[40.10980109801099,-15.971695342840562],[40.0990009900099,-15.976761074650213],[40.088200882008834,-15.978449651920087],[40.07740077400774,-15.98182680645985],[40.06660066600668,-15.98858111553939],[40.05940059400595,-15.998712579158678],[40.07380073800738,-16.00884404277798],[40.0918009180092,-15.998712579158678],[40.12780127801278,-15.963252456491148],[40.13500135001351,-15.986892538269501],[40.12780127801278,-16.00377831096833],[40.11700117001172,-16.020664083667157],[40.10980109801099,-16.039238433635873],[40.106201062010626,-16.064567092684115],[40.0918009180092,-16.079764288113054],[40.05940059400595,-16.10847010170106],[40.019800198001974,-16.184456078845784],[39.99099990999912,-16.221604778783203],[39.95859958599587,-16.23849055148203],[39.893798937989374,-16.240179128751905],[39.87579875798758,-16.245244860561556],[39.81459814598148,-16.277327828689323],[39.78219782197823,-16.302656487737565],[39.78219782197823,-16.306033642277328],[39.78219782197823,-16.31447652862674],[39.78939789397896,-16.31785368316652],[39.80019800198002,-16.319542260436393],[39.80019800198002,-16.33136230132557],[39.80019800198002,-16.35669096037381],[39.80019800198002,-16.368511001262988],[39.80739807398075,-16.388773928501593],[39.82179821798218,-16.407348278470295],[39.836198361983634,-16.42085689662936],[39.854198541985426,-16.429299782978774],[39.810998109981114,-16.458005596566778],[39.79299792997932,-16.46307132837643],[39.79299792997932,-16.45631701929689],[39.78939789397896,-16.44280840113784],[39.785797857978594,-16.4360540920583],[39.778597785977865,-16.44111982386795],[39.7677976779768,-16.44280840113784],[39.75699756997571,-16.444496978407713],[39.74619746197462,-16.44280840113784],[39.74979749797498,-16.447874132947476],[39.76059760597607,-16.459694173836652],[39.76419764197644,-16.46307132837643],[39.73899738997392,-16.473202791995718],[39.728197281972825,-16.479957101075257],[39.71739717397176,-16.491777141964434],[39.7209972099721,-16.493465719234308],[39.7209972099721,-16.49853145104396],[39.7209972099721,-16.506974337393373],[39.7137971379714,-16.515417223742787],[39.69939699396994,-16.532302996441615],[39.677796777967785,-16.54581161460068],[39.63819638196384,-16.567763119109145],[39.60939609396095,-16.591403200887513],[39.56619566195664,-16.604911819046578],[39.55899558995591,-16.611666128126103],[39.53379533795339,-16.635306209904456],[39.35739357393575,-16.72311222793836],[39.20259202592027,-16.817672555051786],[39.18819188191884,-16.83118117321085],[39.16299162991632,-16.86832987314827],[39.148591485914864,-16.876772759497683],[39.13059130591307,-16.86832987314827],[39.13059130591307,-16.871707027688032],[39.13059130591307,-16.88859280038686],[39.116191161911615,-16.902101418545925],[39.10179101791019,-16.91054430489534],[39.08019080190803,-16.91561003670499],[39.09819098190982,-16.922364345784516],[39.11259112591128,-16.917298613974864],[39.12339123391234,-16.917298613974864],[39.12339123391234,-16.93756154121347],[39.116191161911615,-16.954447313912283],[39.10539105391055,-16.97133308661111],[39.090990909909095,-16.9831531275003],[39.0729907299073,-16.991596013849716],[39.03699036990372,-16.99497316838948],[39.00459004590047,-16.99328459111959],[38.97218972189722,-16.996661745659353],[38.91098910989112,-17.03381044559677],[38.87498874988751,-17.045630486485962],[38.71658716587166,-17.059139104645013],[38.70218702187023,-17.054073372835376],[38.680586805868074,-17.030433291057008],[38.662586625866254,-17.025367559247357],[38.68418684186844,-17.054073372835376],[38.66618666186662,-17.07602487734384],[38.630186301863034,-17.089533495502906],[38.59418594185942,-17.094599227312557],[38.60138601386015,-17.07602487734384],[38.554585545855474,-17.121616463630673],[38.536585365853654,-17.121616463630673],[38.52578525785259,-17.114862154551147],[38.51858518585186,-17.106419268201734],[38.511385113851134,-17.104730690931845],[38.504185041850434,-17.111485000011385],[38.50058500585007,-17.11823930909091],[38.50058500585007,-17.126682195440324],[38.504185041850434,-17.135125081789738],[38.22338223382235,-17.24319402706223],[38.20898208982089,-17.253325490681533],[38.18738187381874,-17.278654149729775],[38.17298172981731,-17.287097036079174],[38.15498154981552,-17.287097036079174],[38.1369813698137,-17.26345695430082],[38.1369813698137,-17.19591386350551],[38.12258122581227,-17.177339513536808],[38.129781297813,-17.1976024407754],[38.11538115381154,-17.20266817258505],[38.10458104581048,-17.20097959531516],[38.09018090180902,-17.19591386350551],[38.07938079380796,-17.190848131695873],[38.093780937809385,-17.211111058934463],[38.118981189811905,-17.234751140712817],[38.129781297813,-17.256702645221296],[38.10818108181081,-17.273588417920124],[38.12618126181263,-17.287097036079174],[38.10458104581048,-17.303982808778002],[38.03978039780398,-17.32762289055637],[37.910179101791016,-17.354640126874486],[37.852578525785276,-17.38334594046249],[37.72297722977231,-17.46777480395663],[37.71577715777158,-17.469463381226518],[37.71577715777158,-17.457643340337327],[37.69057690576906,-17.46777480395663],[37.65457654576548,-17.498169194814523],[37.6149761497615,-17.523497853862764],[37.57897578975792,-17.518432122053113],[37.557375573755735,-17.54544935837123],[37.4277742777428,-17.618058180976192],[37.398973989739915,-17.645075417294308],[37.38457384573846,-17.65520688091361],[37.37017370173703,-17.658584035453373],[37.35937359373594,-17.65014114910396],[37.34497344973451,-17.673781230882327],[37.33417334173342,-17.680535539961852],[37.31977319773199,-17.683912694501615],[37.29457294572947,-17.683912694501615],[37.28377283772838,-17.69066700358114],[37.280172801728014,-17.704175621740205],[37.26937269372695,-17.721061394439033],[37.240572405724066,-17.736258589867973],[37.21177211772118,-17.744701476217386],[37.190171901719026,-17.73794716713786],[37.18657186571866,-17.77509586707528],[37.15777157771578,-17.810555989742824],[37.08577085770858,-17.869656194188707],[37.013770137701385,-17.986168025810613],[36.9849698496985,-18.013185262128744],[36.9849698496985,-18.00474237577933],[36.97776977769777,-17.98447944854074],[36.97056970569707,-17.991233757620265],[36.95976959769598,-17.979413716731088],[36.95256952569525,-17.969282253111786],[36.94176941769419,-17.96252794403226],[36.9309693096931,-17.955773634952735],[36.91656916569167,-17.945642171333432],[36.912969129691305,-17.932133553174367],[36.912969129691305,-17.918624935015316],[36.90936909369094,-17.903427739586363],[36.887768877688785,-17.881476235077898],[36.8589685896859,-17.871344771458595],[36.83376833768338,-17.87809908053812],[36.81936819368195,-17.903427739586363],[36.85176851768517,-17.883164812347772],[36.87336873368736,-17.89836200777671],[36.887768877688785,-17.932133553174367],[36.89496894968951,-17.96421652130215],[36.89856898568988,-18.001365221239567],[36.90576905769058,-18.014873839398618],[36.94176941769419,-18.021628148478158],[36.95256952569525,-18.03007103482757],[36.963369633696345,-18.038513921176985],[36.97776977769777,-18.0469568075264],[36.94536945369455,-18.100991280162646],[36.93456934569346,-18.119565630131348],[36.90576905769058,-18.14489428917959],[36.89856898568988,-18.158402907338655],[36.89496894968951,-18.176977257307357],[36.887768877688785,-18.188797298196548],[36.86976869768699,-18.18542014365677],[36.84456844568447,-18.178665834577245],[36.82656826568265,-18.176977257307357],[36.812168121681225,-18.18710872092666],[36.80136801368013,-18.200617339085724],[36.786967869678705,-18.23270030721349],[36.8049680496805,-18.225945998133966],[36.83376833768338,-18.203994493625487],[36.84816848168484,-18.19724018454596],[36.837368373683745,-18.219191689054426],[36.76536765367655,-18.300243398008803],[36.72576725767257,-18.33232636613657],[36.63216632166322,-18.4370181568693],[36.585365853658544,-18.47923258861637],[36.552965529655296,-18.485986897695895],[36.545765457654596,-18.526512752173076],[36.53856538565387,-18.54002137033214],[36.53136531365314,-18.53664421579238],[36.509765097650984,-18.526512752173076],[36.51336513365135,-18.54677567941168],[36.51696516965171,-18.553529988491206],[36.50616506165062,-18.551841411221318],[36.48816488164883,-18.553529988491206],[36.47376473764737,-18.55690714303097],[36.47376473764737,-18.563661452110495],[36.4809648096481,-18.57717007026956],[36.47376473764737,-18.588990111158736],[36.45576455764558,-18.60925303839734],[36.41616416164163,-18.688616170081815],[36.401764017640176,-18.710567674590294],[36.40536405364054,-18.698747633701117],[36.401764017640176,-18.688616170081815],[36.394563945639476,-18.68692759281194],[36.38736387363875,-18.690304747351703],[36.383763837638384,-18.698747633701117],[36.38016380163802,-18.720699138209596],[36.37296372963729,-18.740962065448187],[36.38016380163802,-18.74433921998795],[36.39096390963911,-18.740962065448187],[36.38736387363875,-18.732519179098773],[36.39096390963911,-18.734207756368647],[36.39816398163981,-18.737584910908424],[36.401764017640176,-18.7392734881783],[36.401764017640176,-18.74265064271806],[36.401764017640176,-18.752782106337364],[36.41616416164163,-18.774733610845843],[36.408964089640904,-18.78486507446513],[36.39096390963911,-18.79161938354467],[36.376563765637655,-18.796685115354308],[36.35856358563586,-18.803439424433847],[36.33696336963371,-18.796685115354308],[36.31536315363155,-18.78655365173502],[36.293762937629396,-18.779799342655494],[36.27216272162721,-18.757847838147015],[36.23976239762399,-18.693681901891466],[36.23616236162363,-18.725764870019248],[36.25776257762578,-18.794996538084433],[36.26496264962651,-18.830456660751963],[36.250562505625055,-18.862539628879745],[36.25776257762578,-18.865916783419507],[36.26496264962651,-18.87098251522916],[36.268562685626875,-18.877736824308684],[36.27216272162721,-18.886179710658098],[36.268562685626875,-18.89124544246775],[36.25776257762578,-18.88955686519786],[36.243362433624355,-18.882802556118335],[36.21096210962111,-18.887868287927986],[36.18216182161822,-18.8963111742774],[36.14616146161461,-18.899688328817163],[36.13176131761318,-18.886179710658098],[36.12816128161282,-18.82876808348209],[36.12816128161282,-18.82201377440255],[36.13176131761318,-18.81188231078326],[36.13176131761318,-18.803439424433847],[36.124561245612455,-18.800062269894084],[36.11376113761139,-18.80175084716396],[36.11016110161103,-18.80512800170372],[36.07776077760778,-18.837210969831503],[36.0309603096031,-18.90644263789669],[36.00936009360095,-18.921639833325628],[35.9769597695977,-18.925016987865405],[35.98415984159843,-18.9047540606268],[35.98055980559806,-18.892934019737623],[35.96975969759697,-18.892934019737623],[35.95535955359554,-18.903065483356926],[35.95175951759518,-18.918262678785865],[35.948159481594814,-18.93683702875458],[35.940959409594115,-18.95372280145341],[35.93015930159302,-18.965542842342586],[35.908559085590866,-18.970608574152237],[35.89415894158941,-18.962165687802823],[35.88695886958871,-18.948657069643758],[35.872558725587254,-18.943591337834107],[35.865358653586554,-18.94696849237387],[35.85455854558546,-18.95203422418352],[35.8509585095851,-18.958788533263046],[35.847358473584734,-18.96891999688235],[35.8509585095851,-18.97905146050165],[35.858158581585826,-18.977362883231763],[35.865358653586554,-18.97229715142211],[35.872558725587254,-18.97229715142211],[35.86895868958689,-18.98918292412094],[35.7249572495725,-19.082054673964493],[35.714157141571434,-19.09218613758378],[35.69975699756998,-19.11413764209226],[35.688956889568914,-19.122580528441674],[35.67455674556746,-19.11920337390191],[35.663756637566394,-19.132711992060976],[35.64215642156421,-19.169860691998394],[35.64935649356494,-19.16648353745863],[35.6529565295653,-19.16648353745863],[35.66735667356673,-19.163106382918855],[35.66735667356673,-19.169860691998394],[35.64215642156421,-19.185057887427334],[35.61335613356135,-19.205320814665924],[35.56655566555665,-19.252600978222645],[35.58455584555847,-19.252600978222645],[35.57735577355774,-19.26610959638171],[35.53415534155343,-19.315078337208305],[35.5269552695527,-19.320144069017957],[35.51255512555127,-19.32183264628783],[35.505355053550545,-19.325209800827594],[35.50175501755018,-19.333652687177008],[35.49815498154982,-19.34378415079631],[35.49455494554945,-19.352227037145724],[35.44055440554408,-19.418081550671147],[35.339753397534,-19.521084764133988],[35.220952209522096,-19.61057935943778],[35.127351273512744,-19.705139686551206],[35.09135091350913,-19.71864830471027],[35.06615066150661,-19.725402613789797],[35.012150121501236,-19.779437086426043],[34.98334983349835,-19.801388590934522],[34.97254972549726,-19.79125712731522],[34.961749617496196,-19.79801143639476],[34.93294932949331,-19.830094404522526],[34.87894878948791,-19.863865949920182],[34.85014850148502,-19.852045909031006],[34.83934839348393,-19.84360302268159],[34.83214832148323,-19.830094404522526],[34.82854828548287,-19.801388590934522],[34.82134821348214,-19.78619139550557],[34.81414814148141,-19.78112566369593],[34.80694806948071,-19.77605993188628],[34.76374763747637,-19.740599809218736],[34.716947169471695,-19.723714036519922],[34.70614706147063,-19.71527115017051],[34.666546665466655,-19.659548100264374],[34.659346593465955,-19.65110521391496],[34.641346413464134,-19.644350904835434],[34.63774637746377,-19.62915370940648],[34.634146341463435,-19.61057935943778],[34.62694626946271,-19.595382164008825],[34.616146161461614,-19.5886278549293],[34.60174601746019,-19.58356212311965],[34.583745837458395,-19.578496391309997],[34.56934569345694,-19.575119236770234],[34.55494554945551,-19.581873545849774],[34.54414544145442,-19.61057935943778],[34.52974529745299,-19.61564509124743],[34.52974529745299,-19.62408797759683],[34.54774547745478,-19.622399400326955],[34.565745657456574,-19.607202204898016],[34.583745837458395,-19.602136473088365],[34.59814598145982,-19.605513627628127],[34.61254612546125,-19.612267936707653],[34.62334623346234,-19.62408797759683],[34.63054630546307,-19.654482368454723],[34.63774637746377,-19.669679563883676],[34.691746917469175,-19.742288386488624],[34.6989469894699,-19.747354118298276],[34.709747097470995,-19.75073127283804],[34.72414724147242,-19.7541084273778],[34.734947349473515,-19.757485581917564],[34.742147421474215,-19.764239890997104],[34.74934749347494,-19.78112566369593],[34.77454774547746,-19.806454322744173],[34.77814778147783,-19.814897209093587],[34.77454774547746,-19.841914445411703],[34.75654756547567,-19.868931681729833],[34.734947349473515,-19.887506031698535],[34.709747097470995,-19.884128877158773],[34.71334713347133,-19.9010146498576],[34.72054720547206,-19.9010146498576],[34.734947349473515,-19.894260340778075],[34.742147421474215,-19.890883186238298],[34.760147601476035,-19.89594891804795],[34.76374763747637,-19.902703227127475],[34.75654756547567,-19.931409040715494],[34.75654756547567,-19.94829481341432],[34.76374763747637,-19.98037778154209],[34.76374763747637,-19.993886399701154],[34.76374763747637,-20.00064070878068],[34.76374763747637,-20.007395017860205],[34.760147601476035,-20.010772172399967],[34.75294752947531,-20.017526481479507],[34.74934749347494,-20.02596936782892],[34.74934749347494,-20.03610083144821],[34.75294752947531,-20.04285514052775],[34.75654756547567,-20.051298026877163],[34.75654756547567,-20.073249531385628],[34.75654756547567,-20.08338099500493],[34.760147601476035,-20.090135304084455],[34.767347673476735,-20.10533249951341],[34.7709477094771,-20.12052969494235],[34.77814778147783,-20.135726890371288],[34.77814778147783,-20.1441697767207],[34.77454774547746,-20.152612663070116],[34.767347673476735,-20.16105554941953],[34.76374763747637,-20.16780985849907],[34.75654756547567,-20.179629899388246],[34.73854738547385,-20.174564167578595],[34.70614706147063,-20.157678394879767],[34.68814688146881,-20.16105554941953],[34.67374673746738,-20.16780985849907],[34.66294662946629,-20.16780985849907],[34.65574655746559,-20.15092408580024],[34.65574655746559,-20.159366972149655],[34.65574655746559,-20.164432703959307],[34.65574655746559,-20.171187013038832],[34.67014670146702,-20.18807278573766],[34.742147421474215,-20.226910062944967],[34.742147421474215,-20.231975794754604],[34.734947349473515,-20.240418681104018],[34.72774727747279,-20.252238721993194],[34.72054720547206,-20.267435917422148],[34.709747097470995,-20.301207462819804],[34.70614706147063,-20.311338926439092],[34.684546845468475,-20.331601853677682],[34.68094680946811,-20.346799049106636],[34.70254702547027,-20.361996244535575],[34.6989469894699,-20.373816285424752],[34.684546845468475,-20.383947749044054],[34.67014670146702,-20.389013480853706],[34.65574655746559,-20.38563632631393],[34.641346413464134,-20.37550486269464],[34.6449464494645,-20.39070205812358],[34.64854648546486,-20.40589925355252],[34.65574655746559,-20.41771929444171],[34.66294662946629,-20.427850758061],[34.67734677346775,-20.436293644410412],[34.6989469894699,-20.441359376220063],[34.709747097470995,-20.444736530759826],[34.71334713347133,-20.45317941710924],[34.716947169471695,-20.466688035268305],[34.716947169471695,-20.483573807967133],[34.71334713347133,-20.497082426126198],[34.67374673746738,-20.529165394253965],[34.666546665466655,-20.540985435143142],[34.70254702547027,-20.524099662444314],[34.72414724147242,-20.519033930634663],[34.73854738547385,-20.524099662444314],[34.742147421474215,-20.549428321492556],[34.74934749347494,-20.55955978511186],[34.76374763747637,-20.549428321492556],[34.77454774547746,-20.569691248731147],[34.785347853478555,-20.57813413508056],[34.80334803348035,-20.586577021429974],[34.82134821348214,-20.60008563958904],[34.83214832148323,-20.611905680478216],[34.83934839348393,-20.62541429863728],[34.842948429484295,-20.64061149406622],[34.84654846548466,-20.66087442130481],[34.85014850148502,-20.671005884924114],[34.87894878948791,-20.650742957685523],[34.893348933489335,-20.659185844034937],[34.893348933489335,-20.674383039463876],[34.87894878948791,-20.684514503083165],[34.868148681486815,-20.694645966702467],[34.87174871748718,-20.713220316671183],[34.87894878948791,-20.70477743032177],[34.886148861488635,-20.69802312124223],[34.8969489694897,-20.694645966702467],[34.90774907749079,-20.69295738943258],[34.95454954549547,-20.696334543972355],[34.961749617496196,-20.70477743032177],[34.994149941499415,-20.730106089369997],[34.99774997749978,-20.7402375529893],[34.99774997749978,-20.753746171148364],[34.99774997749978,-20.78076340746648],[35.00855008550087,-20.774009098386955],[35.01575015750157,-20.775697675656843],[35.0229502295023,-20.78245198473637],[35.0229502295023,-20.794272025625546],[35.019350193501936,-20.80102633470507],[35.00495004950051,-20.814534952864136],[35.00495004950051,-20.82466641648344],[35.00855008550087,-20.84324076645214],[35.04095040950409,-20.87025800277027],[35.051750517505184,-20.883766620929336],[35.044550445504456,-20.895586661818513],[35.04095040950409,-20.909095279977564],[35.037350373503756,-20.92260389813663],[35.037350373503756,-20.937801093565582],[35.06615066150661,-20.917538166326977],[35.08055080550807,-20.914161011787215],[35.09855098550986,-20.924292475406517],[35.10575105751059,-20.931046784486043],[35.10935109351095,-20.93273536175593],[35.10935109351095,-20.936112516295694],[35.112951129511316,-20.946243979914996],[35.112951129511316,-20.95299828899452],[35.10935109351095,-20.959752598074047],[35.10935109351095,-20.9648183298837],[35.120151201512016,-20.966506907153587],[35.112951129511316,-20.98845841166205],[35.10935109351095,-20.998589875281354],[35.09855098550986,-21.008721338900642],[35.087750877508796,-21.001967029821117],[35.076950769507704,-21.000278452551242],[35.069750697506976,-21.00534418436088],[35.06615066150661,-21.017164225250056],[35.069750697506976,-21.02560711159947],[35.076950769507704,-21.02729568886936],[35.08055080550807,-21.02729568886936],[35.08415084150843,-21.02729568886936],[35.087750877508796,-21.034049997948884],[35.08415084150843,-21.042492884298298],[35.08415084150843,-21.069510120616428],[35.08055080550807,-21.084707316045368],[35.06615066150661,-21.09315020239478],[35.04815048150482,-21.096527356934544],[35.04095040950409,-21.09315020239478],[35.03375033750339,-21.086395893315256],[35.026550265502664,-21.084707316045368],[35.019350193501936,-21.096527356934544],[35.01575015750157,-21.111724552363498],[35.0229502295023,-21.118478861443023],[35.03015030150303,-21.121856015982786],[35.04815048150482,-21.13198747960209],[35.051750517505184,-21.13198747960209],[35.05535055350555,-21.133676056871963],[35.05895058950591,-21.13705321141174],[35.05895058950591,-21.142118943221377],[35.05535055350555,-21.148873252300916],[35.05535055350555,-21.15225040684068],[35.051750517505184,-21.15225040684068],[35.05535055350555,-21.164070447729856],[35.051750517505184,-21.17251333407927],[35.05535055350555,-21.179267643158795],[35.06615066150661,-21.186021952238335],[35.05895058950591,-21.19784199312751],[35.06615066150661,-21.202907724937162],[35.076950769507704,-21.206284879476925],[35.08415084150843,-21.21303918855645],[35.087750877508796,-21.226547806715516],[35.08055080550807,-21.23330211579505],[35.069750697506976,-21.23499069306493],[35.05895058950591,-21.24005642487458],[35.04815048150482,-21.25356504303364],[35.051750517505184,-21.25694219757341],[35.062550625506276,-21.25863077484329],[35.07335073350734,-21.268762238462585],[35.07335073350734,-21.27889370208188],[35.07335073350734,-21.32279671109883],[35.09855098550986,-21.29746805205059],[35.127351273512744,-21.179267643158795],[35.127351273512744,-21.196153415857623],[35.120151201512016,-21.26031935211317],[35.112951129511316,-21.289025165701176],[35.120151201512016,-21.376831183735078],[35.152551525515264,-21.454505738149685],[35.213752137521396,-21.550754642532993],[35.228152281522824,-21.569328992501703],[35.23895238952392,-21.576083301581235],[35.271352713527136,-21.643626392376547],[35.2749527495275,-21.68752940139349],[35.26775267752677,-21.77364684215751],[35.278552785527864,-21.81586127390458],[35.30735307353075,-21.87833863289024],[35.31095310953111,-21.89522440558907],[35.31815318153181,-21.95770176457473],[35.32535325353254,-22.004981928131443],[35.33615336153363,-22.089410791625575],[35.30735307353075,-22.34607453664775],[35.30735307353075,-22.38828896839481],[35.31095310953111,-22.413617627443053],[35.32535325353254,-22.425437668332236],[35.34335343353433,-22.43050340014188],[35.36135361353615,-22.440634863761176],[35.379353793537945,-22.47271783188895],[35.39375393753937,-22.487915027317896],[35.4009540095401,-22.477783563698594],[35.39735397353974,-22.43388055468165],[35.404554045540465,-22.418683359252704],[35.429754297542985,-22.40517474109364],[35.404554045540465,-22.3697146184261],[35.39015390153904,-22.320745877599506],[35.39015390153904,-22.271777136772904],[35.40815408154083,-22.234628436835486],[35.404554045540465,-22.226185550486072],[35.404554045540465,-22.217742664136658],[35.40815408154083,-22.210988355057133],[35.41535415354156,-22.20592262324748],[35.42615426154262,-22.236317014105374],[35.43695436954371,-22.2430713231849],[35.44775447754478,-22.226185550486072],[35.42255422554226,-22.18397111873901],[35.41535415354156,-22.178905386929358],[35.41895418954189,-22.16708534604018],[35.44055440554408,-22.138379532452177],[35.44415444154441,-22.133313800642526],[35.44055440554408,-22.124870914293112],[35.44055440554408,-22.119805182483468],[35.44415444154441,-22.116428027943698],[35.45135451354514,-22.116428027943698],[35.454954549545505,-22.113050873403935],[35.46215462154623,-22.109673718864165],[35.46215462154623,-22.107985141594284],[35.4657546575466,-22.096165100705107],[35.47655476554766,-22.091099368895456],[35.48735487354875,-22.092787946165345],[35.49815498154982,-22.096165100705107],[35.50175501755018,-22.106296564324403],[35.50175501755018,-22.11811660521358],[35.49815498154982,-22.14175668699194],[35.51615516155164,-22.31061441398021],[35.5269552695527,-22.293728641281383],[35.530555305553065,-22.275154291312674],[35.53415534155343,-22.219431241406546],[35.54135541355416,-22.195791159628186],[35.54495544955449,-22.178905386929358],[35.55215552155522,-22.178905386929358],[35.53775537755379,-22.302171527630797],[35.53775537755379,-22.322434454869388],[35.54495544955449,-22.38828896839481],[35.54135541355416,-22.41024047290329],[35.49095490954912,-22.565589581732496],[35.49095490954912,-22.690544299703816],[35.51975519755197,-22.908370767518683],[35.53775537755379,-22.94720804472599],[35.54855548555486,-22.933699426566925],[35.55215552155522,-22.92863369475728],[35.55215552155522,-22.920190808407867],[35.57015570155701,-22.926945117487392],[35.58455584555847,-22.926945117487392],[35.59175591755917,-22.921879385677748],[35.58455584555847,-22.911747922058453],[35.58455584555847,-22.9066821902488],[35.606156061560625,-22.915125076598216],[35.60255602556026,-22.94383089018622],[35.56295562955631,-23.013062558251413],[35.54135541355416,-23.041768371839417],[35.505355053550545,-23.1312629671432],[35.48375483754839,-23.161657358001086],[35.480154801548025,-23.176854553430033],[35.47655476554766,-23.197117480668624],[35.47655476554766,-23.21738040790722],[35.48735487354875,-23.25452910784464],[35.49095490954912,-23.27479203508323],[35.48375483754839,-23.3170064668303],[35.42255422554226,-23.48079846200892],[35.40815408154083,-23.610818911789885],[35.40815408154083,-23.696936352553905],[35.404554045540465,-23.717199279792496],[35.4009540095401,-23.739150784300975],[35.39015390153904,-23.74759367065039],[35.379353793537945,-23.72733074341179],[35.379353793537945,-23.708756393443082],[35.38655386553867,-23.690182043474373],[35.38295382953831,-23.678362002585196],[35.35775357753579,-23.673296270775545],[35.339753397534,-23.676673425315315],[35.34335343353433,-23.683427734394847],[35.354153541535425,-23.691870620744254],[35.36135361353615,-23.693559198014142],[35.36495364953652,-23.717199279792496],[35.36855368553685,-23.72733074341179],[35.36495364953652,-23.7459050933805],[35.354153541535425,-23.78643094785769],[35.354153541535425,-23.80669387509628],[35.354153541535425,-23.838776843224053],[35.354153541535425,-23.85228546138311],[35.35055350553506,-23.862416925002407],[35.34335343353433,-23.875925543161472],[35.339753397534,-23.886057006780767],[35.339753397534,-23.8928113158603],[35.34335343353433,-23.91138566582901],[35.3469534695347,-23.923205706718186],[35.34335343353433,-23.93502574760737],[35.33615336153363,-23.95360009757608],[35.33255332553327,-23.963731561195374],[35.339753397534,-23.963731561195374],[35.38655386553867,-23.91307424309889],[35.37215372153722,-23.877614120431353],[35.36855368553685,-23.859039770462644],[35.379353793537945,-23.843842575033698],[35.39375393753937,-23.842153997763816],[35.40815408154083,-23.85059688411323],[35.43695436954371,-23.87254838862171],[35.454954549545505,-23.879302697701235],[35.4657546575466,-23.879302697701235],[35.4729547295473,-23.87085981135182],[35.480154801548025,-23.801628143286635],[35.47655476554766,-23.78980810239745],[35.47655476554766,-23.783053793317926],[35.51615516155164,-23.79149667966734],[35.5269552695527,-23.803316720556516],[35.530555305553065,-23.847219729573467],[35.53415534155343,-23.85566261592288],[35.54135541355416,-23.857351193192763],[35.54495544955449,-23.862416925002407],[35.48735487354875,-24.03634038380033],[35.48375483754839,-24.05660331103892],[35.48375483754839,-24.070111929197985],[35.49455494554945,-24.090374856436576],[35.49815498154982,-24.10050632005587],[35.49455494554945,-24.110637783675166],[35.48735487354875,-24.1173920927547],[35.480154801548025,-24.122457824564343],[35.47655476554766,-24.127523556373994],[35.46935469354693,-24.147786483612585],[35.45855458554587,-24.166360833581294],[35.303753037530385,-24.375744415046753],[35.19215192151921,-24.48887909212889],[35.188551885518876,-24.499010555748185],[35.188551885518876,-24.51251917390725],[35.18495184951851,-24.522650637526546],[35.18135181351815,-24.53109352387596],[35.10575105751059,-24.598636614671264],[34.810548105481075,-24.742165682611294],[34.64854648546486,-24.813085927946368],[34.482944829448314,-24.851923205153668],[34.47934479344795,-24.851923205153668],[34.349743497434986,-24.90258052325015],[34.324543245432466,-24.909334832329684],[34.21294212942129,-24.953237841346635],[34.15534155341555,-24.96168072769605],[33.93213932139321,-25.035978127570885],[33.73053730537305,-25.10520979563608],[33.586535865358655,-25.174441463701264],[33.46413464134642,-25.21327874090857],[33.31653316533166,-25.287576140783408],[33.276932769327715,-25.29601902713282],[33.276932769327715,-25.28926471805329],[33.29493294932951,-25.282510408973756],[33.309333093330935,-25.27237894535446],[33.32373323733239,-25.260558904465285],[33.33093330933309,-25.248738863576108],[33.32013320133203,-25.25211601811587],[33.276932769327715,-25.27069036808458],[33.26973269732699,-25.280821831703875],[33.258932589325894,-25.287576140783408],[33.233732337323374,-25.29095329532317],[33.21573215732158,-25.297707604402703],[33.22293222932231,-25.317970531641294],[33.226532265322675,-25.31459337710153],[33.2409324093241,-25.30952764529188],[33.226532265322675,-25.33147914980036],[33.20493204932049,-25.344987767959417],[33.15453154531545,-25.365250695198014],[33.132931329313294,-25.378759313357072],[32.873728737287394,-25.54423988580558],[32.84492844928451,-25.572945699393586],[32.790927909279105,-25.64048879018889],[32.76932769327695,-25.681014644666078],[32.75132751327513,-25.74518058092162],[32.7369273692737,-25.76713208543009],[32.74412744127443,-25.817789403526575],[32.740527405274065,-25.82623228987599],[32.740527405274065,-25.819477980796457],[32.740527405274065,-25.812723671716924],[32.73332733327334,-25.80428078536751],[32.72972729727297,-25.80428078536751],[32.72252722527227,-25.812723671716924],[32.71172711727118,-25.817789403526575],[32.70452704527045,-25.824543712606108],[32.70092700927009,-25.834675176225403],[32.70092700927009,-25.84818379438446],[32.69732697326975,-25.861692412543526],[32.69372693726939,-25.875201030702584],[32.68652686526866,-25.88533249432188],[32.639726397263985,-25.92754692606895],[32.63252632526326,-25.937678389688244],[32.62532625326253,-25.944432698767777],[32.60012600126001,-25.964695626006367],[32.59292592925931,-25.96976135781602],[32.57852578525785,-25.96976135781602],[32.57132571325715,-25.96638420327625],[32.54972549725497,-25.954564162387072],[32.53532535325354,-25.95118700784731],[32.51732517325175,-25.949498430577428],[32.49932499324993,-25.954564162387072],[32.4849248492485,-25.964695626006367],[32.47772477724777,-25.984958553244965],[32.481324813248136,-26.003532903213674],[32.49212492124923,-26.01366436683297],[32.50292502925029,-26.0102872122932],[32.49932499324993,-26.005221480483556],[32.50292502925029,-25.9714499350859],[32.51012510125102,-25.968072780546137],[32.52452524525245,-25.9714499350859],[32.538925389253905,-25.974827089625663],[32.54612546125463,-25.978204244165433],[32.55332553325533,-25.986647130514847],[32.56052560525606,-26.003532903213674],[32.564125641256425,-26.0102872122932],[32.57492574925749,-26.01535294410285],[32.59652596525967,-26.022107253182384],[32.60732607326074,-26.030550139531798],[32.614526145261465,-26.040681603151093],[32.62172621726219,-26.064321684929446],[32.62892628926289,-26.07445314854874],[32.63612636126362,-26.082896034898155],[32.64692646926471,-26.087961766707807],[32.65052650526505,-26.093027498517458],[32.65772657726578,-26.123421889375344],[32.67572675726757,-26.167324898392295],[32.67932679326793,-26.187587825630885],[32.69732697326975,-26.174079207471827],[32.72252722527227,-26.17914493928147],[32.74772747727479,-26.190964980170648],[32.76212762127622,-26.20109644378995],[32.78372783727838,-26.226425102838185],[32.79812798127983,-26.248376607346664],[32.81252812528126,-26.268639534585255],[32.83052830528305,-26.2838367300142],[32.841328413284145,-26.288902461823845],[32.85212852128521,-26.2838367300142],[32.8629286292863,-26.27877099820455],[32.88092880928809,-26.27708242093467],[32.87012870128703,-26.244999452806894],[32.87012870128703,-26.21967079375866],[32.873728737287394,-26.192653557440536],[32.88452884528846,-26.160570589312762],[32.89532895328955,-26.11497900302593],[32.90252902529025,-26.103158962136753],[32.916929169291706,-26.09471607578734],[32.95292952929529,-26.079518880358393],[32.956529565295654,-26.104847539406634],[32.92772927729277,-26.265262380045492],[32.916929169291706,-26.543877629576137],[32.90612906129061,-26.619863606720855],[32.89532895328955,-26.641815111229334],[32.891728917289186,-26.65363515211851],[32.898928989289914,-26.69584958386558],[32.891728917289186,-26.77352413828018],[32.891728917289186,-26.783655601899476],[32.88092880928809,-26.812361415487487],[32.88092880928809,-26.822492879106782],[32.88812888128882,-26.83600149726584],[32.891728917289186,-26.846132960885136],[32.88092880928809,-26.886658815362324],[32.866528665286666,-27.01667926514329],[32.848528485284874,-27.08084520139883],[32.84492844928451,-27.10279670590731],[32.83772837728378,-27.1230596331459],[32.80532805328053,-27.168651219432732],[32.80172801728017,-27.177094105782146],[32.79812798127983,-27.20579991937015],[32.79452794527947,-27.214242805719564],[32.78372783727838,-27.22944000114851],[32.78012780127801,-27.256457237466634],[32.67572675726757,-27.519875291568333],[32.60732607326074,-27.813687736527925],[32.60732607326074,-27.835639241036397],[32.60372603726037,-27.8457707046557],[32.59292592925931,-27.869410786434052],[32.59292592925931,-27.88123082732323],[32.59292592925931,-27.893050868212413],[32.59652596525967,-27.911625218181122],[32.59652596525967,-27.921756681800417],[32.54972549725497,-28.171666117743058],[32.54252542525427,-28.190240467711767],[32.45972459724598,-28.306752299333674],[32.45252452524525,-28.32194949476262],[32.44892448924489,-28.345589576540974],[32.438124381243824,-28.365852503779564],[32.42372423724237,-28.382738276478392],[32.39852398523985,-28.387804008288043],[32.40212402124021,-28.39793547190734],[32.405724057240576,-28.39962404917722],[32.412924129241304,-28.39793547190734],[32.42012420124203,-28.394558317367576],[32.42732427324273,-28.430018440035113],[32.41652416524167,-28.46716713997253],[32.40212402124021,-28.50262726264007],[32.39132391323915,-28.534710230767836],[32.380523805238056,-28.553284580736545],[32.29412294122943,-28.63095913515115],[32.279722797227976,-28.639402021500565],[32.24732247322473,-28.654599216929512],[32.236522365223664,-28.661353526009037],[32.22572225722257,-28.67317356689822],[32.20772207722078,-28.701879380486226],[32.19332193321935,-28.717076575915165],[32.08532085320854,-28.799816862139423],[32.05652056520566,-28.779553934900825],[32.01692016920171,-28.784619666710476],[31.995319953199527,-28.80657117121895],[32.01692016920171,-28.83358840753707],[32.02412024120241,-28.825145521187657],[32.03852038520387,-28.815014057568362],[32.052920529205295,-28.80657117121895],[32.07092070920709,-28.804882593949067],[32.04932049320493,-28.838654139346723],[32.01332013320135,-28.865671375664846],[31.887318873188747,-28.924771580110743],[31.851318513185134,-28.93152588919027],[31.81531815318155,-28.929837311920387],[31.768517685176846,-28.923083002840855],[31.77211772117721,-28.93152588919027],[31.77211772117721,-28.93659162099992],[31.775717757177574,-28.939968775539683],[31.782917829178302,-28.943345930079452],[31.782917829178302,-28.950100239158978],[31.750517505175054,-28.966986011857806],[31.55611556115562,-29.16117239789432],[31.509315093150946,-29.198321097831737],[31.49491494914949,-29.20507540691127],[31.48771487714879,-29.210141138720914],[31.48771487714879,-29.215206870530565],[31.48051480514806,-29.233781220499274],[31.476914769147697,-29.237158375039037],[31.466114661146605,-29.24560126138845],[31.426514265142657,-29.292881424945172],[31.41211412114123,-29.303012888564467],[31.37971379713798,-29.321587238533176],[31.365313653136525,-29.333407279422353],[31.36171361713619,-29.341850165771767],[31.35451354513546,-29.36380167028024],[31.34371343713437,-29.37055597935977],[31.332913329133305,-29.375621711169423],[31.325713257132577,-29.384064597518837],[31.31851318513185,-29.402638947487546],[31.18531185311855,-29.559676633586633],[31.055710557105584,-29.789323142290684],[31.044910449104492,-29.829848996767865],[31.055710557105584,-29.86868627397517],[31.016110161101608,-29.86868627397517],[31.005310053100544,-29.875440583054697],[31.00171001710018,-29.90245781937282],[31.016110161101608,-29.895703510293295],[31.05211052110522,-29.885572046673992],[31.062910629106312,-29.873752005784816],[31.062910629106312,-29.88219489213423],[31.062910629106312,-29.888949201213762],[31.05931059310595,-29.895703510293295],[31.048510485104856,-29.909212128452353],[31.023310233102336,-29.936229364770476],[30.91890918909189,-30.018969650994727],[30.890108901089008,-30.04936404185262],[30.84330843308433,-30.123661441727457],[30.78570785707859,-30.2367961188096],[30.64170641706417,-30.45968831843411],[30.620106201062015,-30.5002141729113],[30.61650616506165,-30.51541136834024],[30.60930609306095,-30.528919986499304],[30.562505625056247,-30.574511572786136],[30.393303933039334,-30.84637251323725],[30.36450364503645,-30.881832635904786],[30.346503465034658,-30.897029831333732],[30.33210332103323,-30.902095563143384],[30.321303213032138,-30.91222702676268],[30.28890288902889,-30.97132723120857],[30.195301953019538,-31.07770759921118],[30.12330123301234,-31.162136462705313],[30.094500945009457,-31.17902223540414],[30.06210062100621,-31.238122439850038],[30.01170011700117,-31.292156912486284],[29.864098640986413,-31.412045898647953],[29.84609846098462,-31.418800207727486],[29.78489784897849,-31.433997403156432],[29.763297632976332,-31.444128866775728],[29.741697416974176,-31.457637484934786],[29.734497344973448,-31.474523257633614],[29.673296732967344,-31.540377771159044],[29.65169651696519,-31.54713208023857],[29.640896408964096,-31.5538863893181],[29.633696336963368,-31.57246073928681],[29.626496264962668,-31.580903625636225],[29.61929619296194,-31.585969357445876],[29.615696156961576,-31.587657934715757],[29.590495904959056,-31.5927236665254],[29.572495724957264,-31.606232284684467],[29.54369543695438,-31.636626675542352],[29.525695256952588,-31.643380984621885],[29.48609486094861,-31.656889602780943],[29.46089460894609,-31.67208679820989],[29.453694536945363,-31.67377537547977],[29.4428944289443,-31.67546395274966],[29.432094320943207,-31.67715253001954],[29.428494284942843,-31.67715253001954],[29.41769417694178,-31.67715253001954],[29.41049410494105,-31.67715253001954],[29.406894068940687,-31.683906839099066],[29.406894068940687,-31.688972570908717],[29.41049410494105,-31.69403830271837],[29.41049410494105,-31.69741545725813],[29.39249392493926,-31.73625273446543],[29.363693636936375,-31.749761352624496],[29.356493564935647,-31.75651566170403],[29.352893528935283,-31.780155743482382],[29.34209342093422,-31.793664361641447],[29.30969309693097,-31.813927288880038],[29.277292772927723,-31.844321679737924],[29.262892628926295,-31.862896029706633],[29.255692556925567,-31.87978180240546],[29.252092520925203,-31.889913266024756],[29.23409234092341,-31.91693050234288],[29.223292232922347,-31.92199623415253],[29.219692196921983,-31.92368481142241],[29.219692196921983,-31.928750543232063],[29.21609216092162,-31.94057058412124],[29.212492124921255,-31.943947738661002],[29.147691476914787,-31.969276397709244],[29.136891368913695,-31.98278501586831],[29.13329133291333,-31.99798221129725],[29.122491224912267,-32.01655656126596],[29.097290972909747,-32.05370526120338],[28.97488974889751,-32.16683993828552],[28.870488704887066,-32.286728924447196],[28.81648816488166,-32.3154347380352],[28.809288092880934,-32.325566201654496],[28.67248672486727,-32.430257992387226],[28.650886508865085,-32.45896380597523],[28.643686436864385,-32.465718115054756],[28.625686256862565,-32.47247242413429],[28.618486184861865,-32.47753815594394],[28.57888578885789,-32.511309701341595],[28.560885608856097,-32.531572628580186],[28.55368553685537,-32.550146978548895],[28.550085500855005,-32.56196701943807],[28.43848438484386,-32.63626441931291],[28.41328413284134,-32.64808446020209],[28.380883808838092,-32.671724541980446],[28.3628836288363,-32.67847885105998],[28.359283592835936,-32.693676046488925],[28.33768337683378,-32.708873241917864],[28.28728287282874,-32.732513323696224],[28.240482404824064,-32.76121913728423],[28.21168211682118,-32.774727755443294],[28.15408154081541,-32.78823637360235],[28.12888128881289,-32.80849930084095],[28.1108811088111,-32.837205114428954],[28.10368103681037,-32.86591092801696],[28.092880928809308,-32.88786243252543],[28.071280712807123,-32.90812535976403],[27.970479704797043,-32.980734182368984],[27.938079380793823,-32.9891770687184],[27.930879308793095,-32.99761995506781],[27.916479164791667,-33.01450572776663],[27.905679056790575,-33.021260036846165],[27.90207902079021,-33.024637191385935],[27.90207902079021,-33.02970292319558],[27.90207902079021,-33.03476865500523],[27.898478984789847,-33.039834386814874],[27.848078480784807,-33.05840873678358],[27.830078300783015,-33.07698308675229],[27.819278192781923,-33.082048818561944],[27.797677976779767,-33.083737395831825],[27.75087750877509,-33.10062316853065],[27.7328773287733,-33.10906605488007],[27.642876428764282,-33.188429186564555],[27.610476104761062,-33.21206926834291],[27.538475384753866,-33.23402077285139],[27.527675276752774,-33.2424636592008],[27.52407524075241,-33.24415223647068],[27.49887498874989,-33.27285805005869],[27.49167491674916,-33.27623520459846],[27.484474844748462,-33.27961235913822],[27.477274772747734,-33.27792378186834],[27.46647466474664,-33.27285805005869],[27.459274592745942,-33.29818670910693],[27.43407434074342,-33.3201382136154],[27.380073800738018,-33.35728691355283],[27.354873548735497,-33.369106954442],[27.351273512735133,-33.369106954442],[27.34767347673477,-33.36741837717212],[27.344073440734405,-33.36404122263235],[27.34047340473404,-33.36572979990224],[27.33327333273334,-33.37754984079142],[27.228872288722897,-33.438338622507196],[27.218072180721805,-33.44847008612649],[27.142471424714245,-33.47886447698438],[27.128071280712817,-33.490684517873554],[27.12087120871209,-33.497438826953086],[27.117271172711725,-33.50419313603262],[27.11367113671136,-33.51094744511215],[27.110071100711025,-33.519390331461565],[27.099270992709933,-33.52614464054109],[27.092070920709205,-33.52783321781098],[27.07047070470705,-33.53121037235074],[26.984069840698425,-33.57004764955804],[26.966069660696604,-33.57511338136769],[26.940869408694084,-33.57511338136769],[26.919269192691928,-33.581867690447226],[26.861668616686188,-33.62239354492441],[26.843668436684368,-33.62745927673406],[26.793267932679328,-33.6325250085437],[26.760867608676108,-33.64941078124253],[26.663666636666363,-33.683182326640186],[26.6528665286653,-33.68487090391007],[26.64566645666457,-33.68993663571972],[26.638466384663843,-33.70851098568843],[26.631266312663143,-33.71188814022819],[26.609666096660987,-33.71526529476795],[26.516065160651607,-33.75579114924514],[26.47646476464766,-33.764234035594555],[26.433264332643347,-33.765922612864436],[26.35046350463506,-33.75579114924514],[26.321663216632174,-33.75579114924514],[26.303663036630383,-33.764234035594555],[26.285662856628562,-33.765922612864436],[26.264062640626406,-33.75747972651502],[26.22446224462246,-33.73890537654631],[26.09126091260913,-33.71695387203784],[25.954459544595466,-33.71019956295831],[25.868058680586813,-33.722019603847485],[25.785257852578525,-33.743971108355964],[25.709657096570965,-33.77436549921385],[25.677256772567745,-33.79462842645244],[25.652056520565225,-33.823334240040445],[25.634056340563404,-33.85541720816822],[25.616056160561612,-33.91114025807435],[25.616056160561612,-33.93478033985271],[25.619656196561976,-33.946600380741884],[25.63765637656377,-33.95335468982142],[25.644856448564497,-33.96179757617083],[25.64845648456486,-33.96855188525036],[25.677256772567745,-33.98712623521907],[25.695256952569537,-34.012454894267314],[25.7060570605706,-34.02089778061672],[25.702457024570265,-34.029340666966135],[25.702457024570265,-34.031029244236024],[25.6988569885699,-34.034406398775786],[25.666456664566653,-34.02596351242637],[25.644856448564497,-34.032717821505905],[25.62325623256234,-34.0428492851252],[25.59805598055982,-34.047915016934844],[25.565655656556572,-34.04622643966496],[25.515255152551532,-34.031029244236024],[25.486454864548648,-34.027652089696254],[25.436054360543608,-34.032717821505905],[25.410854108541088,-34.032717821505905],[25.382053820538204,-34.01920920334684],[25.349653496534984,-34.014143471537196],[25.31365313653137,-33.9938805442986],[25.27765277652776,-33.98037192613954],[25.191251912519135,-33.96179757617083],[25.10125101251012,-33.96010899890095],[25.01125011250113,-33.970240462520245],[24.953649536495362,-33.98543765794919],[24.928449284492842,-33.99556912156849],[24.914049140491414,-34.010766316997426],[24.928449284492842,-34.052980748744496],[24.91764917649178,-34.071555098713205],[24.899648996489958,-34.090129448681914],[24.888848888488894,-34.09688375776145],[24.84204842048422,-34.132343880428984],[24.83484834848349,-34.14754107585793],[24.838448384483854,-34.15936111674711],[24.849248492484918,-34.16611542582664],[24.856448564485646,-34.17118115763628],[24.86004860048601,-34.177935466715816],[24.856448564485646,-34.18637835306523],[24.84204842048422,-34.19819839395441],[24.83484834848349,-34.20495270303394],[24.827648276482762,-34.20495270303394],[24.813248132481334,-34.191444084874874],[24.795247952479542,-34.18468977579535],[24.72684726847268,-34.18300119852546],[24.669246692466942,-34.17118115763628],[24.647646476464786,-34.16780400309652],[24.58284582845829,-34.177935466715816],[24.564845648456497,-34.176246889445935],[24.478444784447845,-34.157672539477225],[24.435244352443533,-34.139098189508516],[24.39924399243992,-34.11208095319039],[24.38124381243813,-34.10701522138074],[24.258842588425892,-34.093506603221684],[24.2408424084241,-34.08675229414215],[24.226442264422644,-34.07830940779274],[24.161641616416176,-34.05466932601438],[23.985239852398536,-34.04116070785532],[23.96363963639638,-34.03609497604567],[23.92043920439204,-34.02427493515649],[23.81243812438126,-34.014143471537196],[23.63603636036362,-33.98037192613954],[23.589235892358943,-33.98037192613954],[23.42723427234273,-34.012454894267314],[23.405634056340574,-34.02089778061672],[23.387633876338782,-34.031029244236024],[23.36963369633696,-34.04453786239508],[23.362433624336262,-34.06648936690356],[23.36963369633696,-34.08675229414215],[23.384033840338418,-34.10026091230121],[23.409234092340938,-34.10363806684098],[23.409234092340938,-34.110392375920505],[23.063630636306357,-34.08337513960238],[23.056430564305657,-34.076620830522856],[23.052830528305293,-34.047915016934844],[23.04923049230493,-34.04116070785532],[23.020430204302045,-34.03947213058544],[23.006030060300617,-34.034406398775786],[22.99882998829989,-34.027652089696254],[23.002430024300253,-34.0428492851252],[23.00963009630098,-34.047915016934844],[23.020430204302045,-34.051292171474614],[23.027630276302773,-34.05804648055415],[23.038430384303837,-34.073243675983086],[23.038430384303837,-34.07999798506262],[23.031230312303137,-34.08675229414215],[23.027630276302773,-34.0816865623325],[23.013230132301317,-34.076620830522856],[22.98442984429846,-34.07493225325297],[22.970029700297005,-34.07830940779274],[22.962829628296276,-34.0816865623325],[22.952029520295213,-34.08337513960238],[22.937629376293756,-34.08337513960238],[22.854828548285496,-34.06142363509391],[22.826028260282612,-34.04453786239508],[22.811628116281156,-34.04116070785532],[22.800828008280092,-34.03609497604567],[22.793627936279364,-34.02089778061672],[22.790027900279,-34.010766316997426],[22.790027900279,-34.0040120079179],[22.797227972279728,-34.00063485337813],[22.811628116281156,-34.00063485337813],[22.797227972279728,-33.988814812488954],[22.775627756277572,-33.9837490806793],[22.728827288272896,-33.98037192613954],[22.73962739627396,-33.9938805442986],[22.754027540275416,-34.009077739727545],[22.768427684276844,-34.02089778061672],[22.786427864278636,-34.027652089696254],[22.768427684276844,-34.032717821505905],[22.743227432274324,-34.029340666966135],[22.63162631626318,-33.99556912156849],[22.610026100261024,-33.9938805442986],[22.584825848258504,-33.9938805442986],[22.56322563225632,-33.99725769883837],[22.54882548825489,-34.0040120079179],[22.494824948249487,-34.03947213058544],[22.45522455224554,-34.05635790328426],[22.4120241202412,-34.06480078963367],[22.318423184231847,-34.05635790328426],[22.275222752227535,-34.05804648055415],[22.188821888218882,-34.07493225325297],[22.17082170821709,-34.08337513960238],[22.1528215282153,-34.093506603221684],[22.124021240212414,-34.12052383953981],[22.109621096210958,-34.1407867667784],[22.116821168211686,-34.157672539477225],[22.131221312213142,-34.1694925803664],[22.149221492214934,-34.177935466715816],[22.134821348213478,-34.18806693033511],[22.113221132211322,-34.19313266214476],[21.983619836198358,-34.21001843484358],[21.947619476194774,-34.22352705300265],[21.922419224192254,-34.24716713478101],[21.91881918819189,-34.26236433020995],[21.922419224192254,-34.296135875607604],[21.915219152191526,-34.3062673392269],[21.89361893618937,-34.33666173008479],[21.890018900189006,-34.340038884624555],[21.8288182881829,-34.36874469821256],[21.789217892178925,-34.380564739101736],[21.746017460174613,-34.38900762545115],[21.7028170281703,-34.39069620272104],[21.598415984159857,-34.37212185275233],[21.55881558815588,-34.35354750278361],[21.537215372153725,-34.34848177097397],[21.51561515615157,-34.35185892551373],[21.472414724147256,-34.36705612094268],[21.44001440014401,-34.37212185275233],[21.43281432814328,-34.37718758456197],[21.429214292142916,-34.383941893641506],[21.422014220142216,-34.39069620272104],[21.414814148141488,-34.39576193453068],[21.35001350013502,-34.41940201630904],[21.30681306813068,-34.42446774811869],[21.263612636126368,-34.421090593578924],[21.09801098010982,-34.37043327548244],[21.058410584105843,-34.363678966402915],[20.961209612096127,-34.3552360800535],[20.91440914409145,-34.360301811863145],[20.874808748087474,-34.37718758456197],[20.882008820088203,-34.37718758456197],[20.824408244082434,-34.39069620272104],[20.806408064080642,-34.397450511800564],[20.831608316083162,-34.402516243610215],[20.856808568085683,-34.41771343903916],[20.867608676086775,-34.43797636627775],[20.860408604086047,-34.45823929351634],[20.842408424084255,-34.464993602595875],[20.666006660066614,-34.43797636627775],[20.525605256052557,-34.45486213897658],[20.482404824048245,-34.47005933440552],[20.44640446404466,-34.49369941618388],[20.392403924039257,-34.55448819789966],[20.374403744037437,-34.5696853933286],[20.356403564035645,-34.57643970240813],[20.342003420034217,-34.57812827967801],[20.33480334803349,-34.584882588757544],[20.32760327603276,-34.59332547510696],[20.32040320403206,-34.603456938726254],[20.30960309603097,-34.60683409326602],[20.27720277202772,-34.61696555688532],[20.262802628026293,-34.627097020504614],[20.2448024480245,-34.64060563866367],[20.22680226802268,-34.6574914113625],[20.223202232022317,-34.67437718406133],[20.212402124021253,-34.672688606791446],[20.187201872018733,-34.6777543386011],[20.147601476014756,-34.69295153403004],[20.072000720007196,-34.73685454304699],[20.04320043200434,-34.76893751117476],[20.05760057600577,-34.795954747492885],[20.05760057600577,-34.80102047930253],[20.04320043200434,-34.8043976338423],[20.014400144001456,-34.81959482927124],[20,-34.82128340654112],[19.981999819998208,-34.81959482927124],[19.96759967599678,-34.814529097461595],[19.953199531995324,-34.80946336565194],[19.89199891998922,-34.76893751117476],[19.877598775987764,-34.75711747028558],[19.85959859598597,-34.75036316120605],[19.69759697596976,-34.753740315745816],[19.68319683196833,-34.75711747028558],[19.668796687966875,-34.770626088444644],[19.654396543965447,-34.774003242984406],[19.643596435964355,-34.772314665714525],[19.636396363963655,-34.76556035663499],[19.63279632796329,-34.75880604755547],[19.625596255962563,-34.753740315745816],[19.575195751957523,-34.728411656697574],[19.499594995949963,-34.66424572044203],[19.449194491944922,-34.64060563866367],[19.43119431194313,-34.63047417504438],[19.416794167941674,-34.61358840234555],[19.398793987939882,-34.60176836145637],[19.373593735937362,-34.60007978418649],[19.351993519935206,-34.605145515996135],[19.33039330393305,-34.61696555688532],[19.323193231932322,-34.61189982507567],[19.315993159931594,-34.610211247805786],[19.30519305193053,-34.61189982507567],[19.297992979929802,-34.61696555688532],[19.301593015930166,-34.60683409326602],[19.359193591935934,-34.53929100247071],[19.366393663936634,-34.527470961581535],[19.359193591935934,-34.50045372526341],[19.344793447934478,-34.46837075713564],[19.323193231932322,-34.43797636627775],[19.30519305193053,-34.41771343903916],[19.290792907929074,-34.40927055268975],[19.276392763927646,-34.40589339814998],[19.207992079920814,-34.41771343903916],[19.14679146791468,-34.41433628449939],[19.132391323913254,-34.41095912995963],[19.117991179911797,-34.400827666340334],[19.099990999910005,-34.37212185275233],[19.085590855908578,-34.363678966402915],[19.085590855908578,-34.35692465732338],[19.110791107911098,-34.35185892551373],[19.12159121591216,-34.33835030735467],[19.12879128791289,-34.316398802846194],[19.139591395913953,-34.29444729833772],[19.12159121591216,-34.302890184687136],[19.099990999910005,-34.334973152814904],[19.089190891908913,-34.34341603916432],[19.013590135901353,-34.33835030735467],[18.999189991899925,-34.340038884624555],[18.97038970389704,-34.34848177097397],[18.873188731887325,-34.36199038913303],[18.85158851588517,-34.37381043002221],[18.847988479884805,-34.382253316371624],[18.837188371883713,-34.383941893641506],[18.82638826388265,-34.382253316371624],[18.81918819188192,-34.37718758456197],[18.808388083880857,-34.3653675436728],[18.808388083880857,-34.3552360800535],[18.81918819188192,-34.34341603916432],[18.811988119881192,-34.30964449376667],[18.811988119881192,-34.301201607417255],[18.811988119881192,-34.29107014379795],[18.81918819188192,-34.28600441198831],[18.822788227882285,-34.282627257448546],[18.829988299883013,-34.27418437109913],[18.840788407884077,-34.253921443860534],[18.837188371883713,-34.240412825701476],[18.822788227882285,-34.20495270303394],[18.822788227882285,-34.18468977579535],[18.829988299883013,-34.176246889445935],[18.84438844388444,-34.16780400309652],[18.858788587885897,-34.15091823039769],[18.815588155881557,-34.09688375776145],[18.80118801188013,-34.090129448681914],[18.739987399873996,-34.076620830522856],[18.646386463864644,-34.06986652144332],[18.556385563855656,-34.073243675983086],[18.5419854198542,-34.07830940779274],[18.531185311853136,-34.08337513960238],[18.495184951849524,-34.09688375776145],[18.477184771847732,-34.10701522138074],[18.469984699847004,-34.113769530460274],[18.45918459184591,-34.12390099407957],[18.444784447844484,-34.13740961223863],[18.44118441184412,-34.14416392131816],[18.44118441184412,-34.157672539477225],[18.44118441184412,-34.16780400309652],[18.448384483844848,-34.172869734906165],[18.455584555845576,-34.177935466715816],[18.45918459184591,-34.18468977579535],[18.473584735847368,-34.22690420754241],[18.477184771847732,-34.235347093891825],[18.477184771847732,-34.24547855751112],[18.46638466384664,-34.31133307103655],[18.469984699847004,-34.33159599827514],[18.487984879848796,-34.34341603916432],[18.469984699847004,-34.34679319370409],[18.444784447844484,-34.33666173008479],[18.423184231842328,-34.31808738011608],[18.405184051840536,-34.301201607417255],[18.38358383583838,-34.26236433020995],[18.379983799838016,-34.25054428932077],[18.379983799838016,-34.24378998024124],[18.38358383583838,-34.23028136208218],[18.387183871838715,-34.22183847573277],[18.38358383583838,-34.218461321193],[18.379983799838016,-34.216772743923116],[18.37638376383765,-34.215084166653234],[18.372783727837287,-34.21170701211347],[18.361983619836195,-34.18637835306523],[18.354783547835495,-34.17455831217605],[18.32598325983261,-34.16780400309652],[18.31518315183152,-34.157672539477225],[18.31518315183152,-34.14416392131816],[18.31518315183152,-34.1306553031591],[18.32598325983261,-34.12221241680969],[18.33318333183334,-34.12052383953981],[18.34038340383404,-34.115458107730156],[18.343983439834403,-34.10026091230121],[18.343983439834403,-34.08675229414215],[18.347583475834767,-34.07493225325297],[18.35118351183513,-34.06480078963367],[18.35838358383586,-34.05466932601438],[18.343983439834403,-34.05635790328426],[18.336783367833675,-34.05804648055415],[18.329583295832975,-34.06142363509391],[18.31518315183152,-34.0428492851252],[18.31518315183152,-34.029340666966135],[18.322383223832247,-34.01583204880708],[18.336783367833675,-34.00063485337813],[18.35118351183513,-33.98206050340942],[18.361983619836195,-33.946600380741884],[18.372783727837287,-33.92464887623341],[18.405184051840536,-33.90269737172493],[18.444784447844484,-33.904385948994815],[18.473584735847368,-33.89932021718517],[18.487984879848796,-33.86217151724775],[18.48438484384843,-33.84359716727904],[18.46638466384664,-33.8182685082308],[18.45918459184591,-33.804759890071736],[18.45918459184591,-33.784496962833146],[18.430384303843056,-33.69669094479924],[18.405184051840536,-33.65278793578229],[18.40158401584017,-33.63421358581358],[18.39078390783908,-33.62914785400394],[18.343983439834403,-33.581867690447226],[18.329583295832975,-33.57342480409781],[18.318783187831883,-33.56667049501828],[18.31518315183152,-33.558227608668865],[18.31518315183152,-33.51770175419168],[18.31518315183152,-33.495750249683205],[18.30798307983082,-33.47886447698438],[18.2827828278283,-33.44509293158672],[18.253982539825415,-33.41976427253849],[18.145981459814607,-33.35559833628294],[18.1567815678157,-33.33871256358412],[18.14958149581497,-33.31844963634552],[18.12438124381245,-33.27961235913822],[18.11358113581136,-33.25428370008998],[18.08838088380884,-33.22557788650197],[18.084780847808474,-33.21544642288268],[18.07398073980741,-33.20193780472361],[18.0307803078031,-33.164789104786195],[18.01278012780128,-33.15803479570666],[17.991179911799122,-33.149591909357255],[17.976779767797694,-33.13439471392831],[17.965979659796602,-33.1158203639596],[17.95517955179554,-33.102311745800534],[17.98037980379806,-33.09049170491136],[17.994779947799486,-33.08880312764148],[18.00558005580058,-33.09218028218124],[18.01278012780128,-33.104000323070416],[18.019980199802006,-33.11413178668972],[18.027180271802735,-33.12426325030901],[18.0379803798038,-33.12932898211866],[18.034380343803434,-33.14114902300784],[18.041580415804162,-33.149591909357255],[18.066780667806682,-33.168166259325965],[18.084780847808474,-33.19011776383444],[18.09918099180993,-33.20024922745373],[18.11358113581136,-33.20531495926338],[18.127981279812815,-33.19687207291397],[18.12438124381245,-33.186740609294674],[18.102781027810295,-33.168166259325965],[18.095580955809567,-33.15972337297655],[18.095580955809567,-33.14283760027772],[18.091980919809203,-33.13608329119819],[18.08838088380884,-33.13270613665843],[18.077580775807775,-33.13270613665843],[18.070380703807047,-33.12932898211866],[18.04878048780489,-33.11075463214995],[18.041580415804162,-33.102311745800534],[18.0379803798038,-33.09218028218124],[18.041580415804162,-33.04827727316429],[18.0379803798038,-33.03308007773535],[18.02358023580237,-33.01450572776663],[17.99837998379985,-33.00437426414734],[17.969579695796966,-33.002685686877456],[17.940779407794082,-33.006062841417226],[17.94797947979481,-33.022948614116046],[17.95517955179554,-33.0280143459257],[17.944379443794446,-33.02970292319558],[17.933579335793354,-33.03476865500523],[17.911979119791198,-33.04827727316429],[17.901179011790134,-33.03645723227511],[17.89757897578977,-33.026325768655816],[17.893978939789406,-33.0178828823064],[17.893978939789406,-33.00943999595699],[17.890378903789042,-33.000997109607574],[17.883178831788314,-32.99255422325816],[17.879578795787978,-32.980734182368984],[17.886778867788678,-32.96553698694004],[17.879578795787978,-32.958782677860505],[17.868778687786886,-32.9300768642725],[17.861578615786158,-32.90643678249414],[17.861578615786158,-32.899682473414614],[17.865178651786522,-32.8912395870652],[17.875978759787614,-32.87941954617602],[17.879578795787978,-32.86759950528684],[17.875978759787614,-32.85577946439766],[17.850778507785094,-32.83045080534942],[17.84717847178473,-32.82707365080966],[17.843578435784366,-32.82369649626989],[17.843578435784366,-32.815253609920475],[17.84717847178473,-32.813565032650594],[17.854378543785458,-32.815253609920475],[17.861578615786158,-32.815253609920475],[17.865178651786522,-32.81187645538071],[17.868778687786886,-32.80849930084095],[17.883178831788314,-32.796679259951766],[17.890378903789042,-32.793302105412],[17.89757897578977,-32.793302105412],[17.89757897578977,-32.78992495087224],[17.901179011790134,-32.78317064179271],[17.901179011790134,-32.776416332713175],[17.9047790477905,-32.76966202363364],[17.901179011790134,-32.737579055505876],[17.9047790477905,-32.72575901461669],[17.919179191791926,-32.71731612826728],[17.944379443794446,-32.708873241917864],[17.965979659796602,-32.70380751010822],[17.983979839798394,-32.7054960873781],[17.97317973179733,-32.712250396457634],[17.987579875798758,-32.72744759188658],[18.0379803798038,-32.76628486909388],[18.08118081180814,-32.78148206452283],[18.117181171811723,-32.77303917817341],[18.153181531815335,-32.751087673664934],[18.271982719827207,-32.64808446020209],[18.297182971829727,-32.609247182994785],[18.311583115831155,-32.57209848305737],[18.33318333183334,-32.491046774103],[18.336783367833675,-32.4522094968957],[18.33318333183334,-32.381289251560624],[18.32598325983261,-32.36609205613168],[18.31518315183152,-32.344140551623205],[18.322383223832247,-32.32725477892438],[18.343983439834403,-32.300237542606254],[18.347583475834767,-32.25971168812907],[18.311583115831155,-32.1296912383481],[18.30078300783009,-32.02331087034549],[18.2827828278283,-31.97940786132854],[18.27558275582757,-31.957456356820067],[18.279182791827935,-31.913553347803116],[18.27558275582757,-31.893290420564526],[18.26478264782648,-31.873027493325935],[18.253982539825415,-31.85783029789699],[18.243182431824323,-31.84094452519816],[18.235982359823595,-31.827435907039096],[18.235982359823595,-31.81899302068969],[18.235982359823595,-31.810550134340275],[18.235982359823595,-31.800418670720973],[18.21438214382144,-31.731187002655787],[18.196381963819647,-31.69741545725813],[18.171181711817127,-31.663643911860476],[18.127981279812815,-31.612986593764],[18.117181171811723,-31.597789398335053],[18.117181171811723,-31.59103508925552],[18.070380703807047,-31.53362346207951],[18.02358023580237,-31.48972045306256],[18.016380163801642,-31.474523257633614],[18.009180091800914,-31.455948907664904],[17.994779947799486,-31.440751712235958],[17.962379623796238,-31.415423053187723],[17.92277922779229,-31.36476573509124],[17.893978939789406,-31.34450280785265],[17.883178831788314,-31.32086272607429],[17.87237872378725,-31.273582562517575],[17.857978579785794,-31.26007394435851],[17.818378183781846,-31.231368130770505],[17.811178111781118,-31.22123666715121],[17.803978039780418,-31.209416626262033],[17.749977499775014,-31.131742071847427],[17.74637746377465,-31.128364917307664],[17.735577355773557,-31.104724835529304],[17.731977319773193,-31.09797052644977],[17.717577175771765,-31.081084753750943],[17.69597695976961,-31.03549316746411],[17.685176851768517,-31.018607394765283],[17.616776167761685,-30.93417853127115],[17.56277562775628,-30.837929626887835],[17.555575555755553,-30.824421008728777],[17.548375483754853,-30.78727230879136],[17.53757537575376,-30.75181218612382],[17.476374763747657,-30.68258051805863],[17.451174511745137,-30.638677509041678],[17.454774547745473,-30.60152880910426],[17.429574295742952,-30.576200150056017],[17.371973719737213,-30.486705554752234],[17.364773647736484,-30.464754050243762],[17.346773467734693,-30.44449112300517],[17.281972819728196,-30.348242218621856],[17.278372783727832,-30.33811075500256],[17.274772747727496,-30.311093518684437],[17.26757267572677,-30.280699127826544],[17.26037260372604,-30.27225624147713],[17.26037260372604,-30.245239005159007],[17.206372063720636,-30.165875873474526],[17.191971919719208,-30.13210432807687],[17.188371883718844,-30.09326705086957],[17.166771667716688,-30.0122153419152],[17.10197101971019,-29.885572046673992],[17.098370983709856,-29.850111924006455],[17.094770947709492,-29.84504619219681],[17.091170911709128,-29.83998046038716],[17.0839708397084,-29.833226151307635],[17.0839708397084,-29.823094687688332],[17.0839708397084,-29.812963224069037],[17.055170551705515,-29.730222937844786],[17.062370623706244,-29.730222937844786],[17.05877058770588,-29.716714319685728],[17.05877058770588,-29.691385660637486],[17.055170551705515,-29.67618846520854],[17.029970299702995,-29.61877683803253],[17.03357033570336,-29.608645374413236],[17.01917019170193,-29.59851391079394],[17.011970119701203,-29.57656240628546],[17.00837008370084,-29.539413706348043],[16.979569795697955,-29.46849346101297],[16.972369723697255,-29.456673420123792],[16.93276932769328,-29.357047361200713],[16.929169291692915,-29.351981629391062],[16.911169111691123,-29.333407279422353],[16.90756907569076,-29.323275815803058],[16.903969039690395,-29.318210083993407],[16.885968859688603,-29.299635734024697],[16.864368643686447,-29.23884695230892],[16.85716857168572,-29.23040406595951],[16.846368463684655,-29.22027260234021],[16.84276842768429,-29.211829715990795],[16.84276842768429,-29.188189634212442],[16.839168391683927,-29.178058170593147],[16.8319683196832,-29.16454955243408],[16.821168211682135,-29.14090947065573],[16.81756817568177,-29.117269388877368],[16.82476824768247,-29.10038361617854],[16.810368103681043,-29.078432111670068],[16.745567455674575,-29.029463370843466],[16.734767347673483,-29.015954752684408],[16.720367203672055,-28.9771174754771],[16.713167131671327,-28.963608857318043],[16.66636666366665,-28.907885807411915],[16.601566015660154,-28.857228489315432],[16.59076590765909,-28.83527698480696],[16.579965799657998,-28.799816862139423],[16.57276572765727,-28.764356739471886],[16.576365763657634,-28.744093812233288],[16.57276572765727,-28.737339503153763],[16.56556565565657,-28.720453730454935],[16.561965619656206,-28.71201084410552],[16.558365583655842,-28.70694511229587],[16.551165511655114,-28.70525653502599],[16.54036540365405,-28.70525653502599],[16.533165331653322,-28.703567957756107],[16.51516515165153,-28.661353526009037],[16.49716497164971,-28.64953348511986],[16.47196471964719,-28.6258934033415],[16.468364683646854,-28.620827671531856],[16.479164791647918,-28.614073362452324],[16.486364863648646,-28.598876167023377],[16.48996489964901,-28.583678971594438],[16.486364863648646,-28.573547507975135],[16.468364683646854,-28.58536754886432],[16.457564575645762,-28.60056474429326],[16.44676446764467,-28.61069620791256],[16.417964179641814,-28.60731905337279],[16.40716407164072,-28.60056474429326],[16.34596345963459,-28.556661735276315],[16.317163171631734,-28.52457876714854],[16.302763027630277,-28.50431583990995],[16.194761947619497,-28.408066935526634],[16.176761767617677,-28.4013126264471],[16.169561695616977,-28.396246894637457],[16.108361083610845,-28.3236380720325],[16.043560435604377,-28.25778355850707],[15.910359103591048,-28.171666117743058],[15.885158851588528,-28.148026035964698],[15.834758347583488,-28.088925831518807],[15.762757627576292,-28.038268513422324],[15.748357483574836,-28.02475989526326],[15.715957159571616,-27.980856886246315],[15.683556835568368,-27.95046249538842],[15.679956799568004,-27.942019609039008],[15.67635676356764,-27.931888145419713],[15.683556835568368,-27.911625218181122],[15.687156871568732,-27.901493754561827],[15.672756727567275,-27.869410786434052],[15.647556475564755,-27.837327818306285],[15.546755467554675,-27.7478332230025],[15.532355323553247,-27.730947450303674],[15.528755287552883,-27.705618791255432],[15.528755287552883,-27.65496147315895],[15.525155251552519,-27.646518586809535],[15.521555215552155,-27.633009968650477],[15.424354243542439,-27.49623520978998],[15.409954099541011,-27.464152241662205],[15.395553955539555,-27.44895504623326],[15.381153811538127,-27.442200737153733],[15.370353703537035,-27.43375785080432],[15.34155341553415,-27.379723378168073],[15.301953019530202,-27.332443214611352],[15.294752947529474,-27.322311750992057],[15.280352803528046,-27.24294861930757],[15.276752767527682,-27.232817155688274],[15.269552695526954,-27.226062846608748],[15.262352623526255,-27.217619960259334],[15.262352623526255,-27.20579991937015],[15.269552695526954,-27.16527406489297],[15.255152551525526,-27.099419551367546],[15.262352623526255,-27.08591093320848],[15.24075240752407,-27.048762233271063],[15.237152371523734,-27.030187883302354],[15.23355233552337,-27.006547801523993],[15.23355233552337,-26.966021947046812],[15.229952299523006,-26.945759019808214],[15.211952119521214,-26.927184669839505],[15.204752047520486,-26.925496092569624],[15.186751867518694,-26.923807515299742],[15.179551795517966,-26.92043036075998],[15.175951759517602,-26.91705320622021],[15.168751687516874,-26.906921742600915],[15.161551615516174,-26.89679027898162],[15.15795157951581,-26.89679027898162],[15.154351543515446,-26.874838774473147],[15.147151471514718,-26.85626442450443],[15.118351183511834,-26.79547564278866],[15.111151111511134,-26.77858987008983],[15.11475114751147,-26.75157263377171],[15.103951039510406,-26.732998283803],[15.093150931509314,-26.7127353565644],[15.08235082350825,-26.69584958386558],[15.08235082350825,-26.67220950208722],[15.08235082350825,-26.65194657484863],[15.093150931509314,-26.638437956689565],[15.10755107551077,-26.63337222487992],[15.118351183511834,-26.62999507034015],[15.125551255512562,-26.626617915800388],[15.136351363513654,-26.626617915800388],[15.136351363513654,-26.636749379419683],[15.136351363513654,-26.675586656626983],[15.143551435514354,-26.675586656626983],[15.147151471514718,-26.655323729388392],[15.168751687516874,-26.602977834022028],[15.168751687516874,-26.592846370402732],[15.161551615516174,-26.579337752243674],[15.143551435514354,-26.518548970527895],[15.129151291512926,-26.457760188812117],[15.103951039510406,-26.420611488874698],[15.071550715507158,-26.390217098016812],[15.035550355503574,-26.366577016238452],[14.974349743497442,-26.34462551172998],[14.967149671496713,-26.334494048110678],[14.959949599496014,-26.256819493696078],[14.96354963549635,-26.180833516551353],[14.941949419494193,-26.15381628023323],[14.93834938349383,-26.147061971153704],[14.941949419494193,-26.13524193026452],[14.949149491494921,-26.13524193026452],[14.95634956349565,-26.1369305075344],[14.967149671496713,-26.13355335299464],[14.98154981549817,-26.101470384866865],[14.977949779497806,-26.059255953119802],[14.967149671496713,-26.01535294410285],[14.952749527495286,-25.983269975975077],[14.90594905949061,-25.915726885179772],[14.902349023490245,-25.881955339782117],[14.920349203492037,-25.8448066398447],[14.909549095490974,-25.8448066398447],[14.859148591485933,-25.790772167208452],[14.841148411484113,-25.76375493089033],[14.841148411484113,-25.751934890001152],[14.841148411484113,-25.74349200365174],[14.841148411484113,-25.729983385492673],[14.841148411484113,-25.650620253808185],[14.848348483484841,-25.630357326569595],[14.877148771487725,-25.57801143120323],[14.88074880748809,-25.5611256585044],[14.88074880748809,-25.53917415399593],[14.873548735487361,-25.51891122675734],[14.851948519485205,-25.49864829951874],[14.848348483484841,-25.473319640470507],[14.841148411484113,-25.427728054183675],[14.819548195481957,-25.366939272467896],[14.812348123481229,-25.319659108911182],[14.801548015480165,-25.282510408973756],[14.801548015480165,-25.262247481735166],[14.833948339483413,-25.18795008186033],[14.83034830348305,-25.176130040971152],[14.848348483484841,-25.10520979563608],[14.851948519485205,-25.06468394115889],[14.844748447484477,-25.02584666395159],[14.83034830348305,-25.00051800490335],[14.808748087480893,-24.96168072769605],[14.797947979479801,-24.92115487321886],[14.794347943479437,-24.841791741534372],[14.779947799478009,-24.802954464327073],[14.72234722347224,-24.703328405403994],[14.700747007470085,-24.672934014546108],[14.650346503465045,-24.629031005529157],[14.635946359463588,-24.598636614671264],[14.603546035460369,-24.563176492003727],[14.59634596345964,-24.537847832955492],[14.599945999460004,-24.52602779206631],[14.614346143461432,-24.51083059663737],[14.617946179461796,-24.505764864827718],[14.617946179461796,-24.46523901035053],[14.610746107461068,-24.44497608311194],[14.589145891458912,-24.40782738317452],[14.567545675456756,-24.357170065078037],[14.513545135451352,-24.26092116069473],[14.491944919449196,-24.191689492629536],[14.473944739447404,-24.15960652450176],[14.466744667446676,-24.11401493821493],[14.459544595445948,-24.09881774278599],[14.463144631446312,-24.078554815547392],[14.463144631446312,-24.044783270149743],[14.459544595445948,-24.011011724752088],[14.452344523445248,-23.989060220243616],[14.459544595445948,-23.97386302481467],[14.466744667446676,-23.946845788496546],[14.473944739447404,-23.93333717033748],[14.477544775447768,-23.9316485930676],[14.488344883448832,-23.929960015797718],[14.49554495544956,-23.926582861257955],[14.499144991449924,-23.916451397638653],[14.513545135451352,-23.8928113158603],[14.506345063450652,-23.879302697701235],[14.506345063450652,-23.823579647795107],[14.488344883448832,-23.776299484238393],[14.488344883448832,-23.757725134269684],[14.499144991449924,-23.614196066329654],[14.49554495544956,-23.578735943662117],[14.484744847448468,-23.551718707343994],[14.448744487444884,-23.46053553477033],[14.434344343443428,-23.414943948483497],[14.434344343443428,-23.404812484864202],[14.441544415444156,-23.396369598514788],[14.466744667446676,-23.3558437440376],[14.481144811448132,-23.344023703148423],[14.481144811448132,-23.365975207656895],[14.484744847448468,-23.37441809400631],[14.491944919449196,-23.369352362196665],[14.491944919449196,-23.347400857688186],[14.491944919449196,-23.308563580480886],[14.473944739447404,-23.19205174885898],[14.463144631446312,-23.156591626191442],[14.44514445144452,-23.1312629671432],[14.430744307443092,-23.102557153555196],[14.419944199442,-23.070474185427422],[14.412744127441272,-23.036702640029773],[14.409144091440908,-22.970848126504343],[14.412744127441272,-22.960716662885048],[14.416344163441636,-22.952273776535634],[14.430744307443092,-22.932010849297043],[14.430744307443092,-22.92356796294763],[14.430744307443092,-22.88135353120056],[14.434344343443428,-22.87966495393068],[14.441544415444156,-22.87966495393068],[14.44514445144452,-22.88304210847044],[14.437944379443792,-22.891484994819855],[14.441544415444156,-22.898239303899388],[14.448744487444884,-22.908370767518683],[14.452344523445248,-22.911747922058453],[14.44514445144452,-22.932010849297043],[14.44514445144452,-22.952273776535634],[14.452344523445248,-22.96409381742481],[14.473944739447404,-22.953962353805515],[14.47034470344704,-22.9657823946947],[14.459544595445948,-22.994488208282704],[14.473944739447404,-22.982668167393527],[14.49554495544956,-22.94214231291634],[14.509945099450988,-22.933699426566925],[14.52074520745208,-22.92356796294763],[14.527945279452808,-22.89992788116927],[14.535145351453508,-22.854336294882437],[14.527945279452808,-22.67872425881464],[14.509945099450988,-22.548703809033668],[14.484744847448468,-22.51155510909625],[14.473944739447404,-22.4676521000793],[14.437944379443792,-22.398420432014113],[14.419944199442,-22.339320227568216],[14.387543875438752,-22.276842868582555],[14.380343803438052,-22.26839998223314],[14.315543155431556,-22.200856891437837],[14.2939429394294,-22.16708534604018],[14.2939429394294,-22.14344526426182],[14.290342903429035,-22.135002377912407],[14.135541355413551,-21.945881723685545],[14.063540635406355,-21.881715787430004],[14.052740527405291,-21.864830014731176],[13.969939699397003,-21.79222119212622],[13.95193951939521,-21.783778305776806],[13.95193951939521,-21.77364684215751],[13.955539555395575,-21.763515378538216],[13.95913959139591,-21.758449646728565],[13.966339663396639,-21.73312098768033],[13.966339663396639,-21.726366678600797],[13.962739627396274,-21.714546637711614],[13.95913959139591,-21.70441517409232],[13.87633876338765,-21.592969074280063],[13.861938619386194,-21.52880313802452],[13.83313833138331,-21.456194315419566],[13.728737287372894,-21.329551020178364],[13.667536675366762,-21.231613538525167],[13.627936279362814,-21.18771052950821],[13.602736027360294,-21.15731613865033],[13.512735127351277,-21.008721338900642],[13.47313473134733,-20.954686866264396],[13.458734587345873,-20.917538166326977],[13.444334443344445,-20.904029548167927],[13.419134191341925,-20.883766620929336],[13.397533975339769,-20.84999507553168],[13.386733867338677,-20.816223530134025],[13.375933759337613,-20.733483243909774],[13.350733507335093,-20.643988648605983],[13.26433264332644,-20.485262385237007],[13.23913239132392,-20.397456367203105],[13.231932319323192,-20.35524193545605],[13.2139321393214,-20.274190226501673],[13.177931779317788,-20.189761363007534],[13.156331563315632,-20.154301240340004],[13.11313113131132,-20.142481199450827],[13.069930699307008,-20.113775385862823],[13.03753037530376,-20.059740913226577],[13.005130051300512,-19.934786195255256],[12.929529295292951,-19.794634281854982],[12.918729187291888,-19.765928468266978],[12.875528755287547,-19.71189399563073],[12.803528035280351,-19.585250700389537],[12.792727927279287,-19.561610618611184],[12.781927819278195,-19.54641342318223],[12.756727567275675,-19.497444682355635],[12.749527495274947,-19.48562464146646],[12.706327063270635,-19.41132724159162],[12.691926919269207,-19.37924427346384],[12.684726847268479,-19.35898134622525],[12.681126811268115,-19.313389759938417],[12.666726667266687,-19.293126832699826],[12.637926379263803,-19.252600978222645],[12.616326163261647,-19.2171408555551],[12.565925659256607,-19.102317601203083],[12.547925479254786,-19.07192321034519],[12.515525155251567,-19.038151664947534],[12.479524795247954,-19.01113442862942],[12.46872468724689,-18.997625810470353],[12.457924579245798,-18.925016987865405],[12.45072450724507,-18.9047540606268],[12.285122851228522,-18.69705905643123],[12.17352173521735,-18.627827388366043],[12.126721267212673,-18.575481492999685],[12.119521195211945,-18.568727183920146],[12.101521015210153,-18.54677567941168],[12.09072090720909,-18.54002137033214],[12.083520835208361,-18.53495563852249],[12.033120331203321,-18.50456124766461],[12.015120151201529,-18.45221535229824],[12.011520115201165,-18.43532957959941],[12.000720007200073,-18.403246611471644],[11.997119971199709,-18.391426570582468],[11.997119971199709,-18.381295106963165],[11.997119971199709,-18.371163643343877],[12.000720007200073,-18.362720756994463],[11.975519755197553,-18.328949211596807],[11.935919359193605,-18.23270030721349],[11.93231932319324,-18.225945998133966],[11.849518495184952,-18.143205711909715],[11.835118351183525,-18.097614125622883],[11.827918279182796,-18.038513921176985],[11.809918099181004,-17.991233757620265],[11.795517955179548,-17.955773634952735],[11.784717847178484,-17.85952473056942],[11.759517595175964,-17.786915907964456],[11.745117451174508,-17.683912694501615],[11.734317343173444,-17.63325537640513],[11.727117271172716,-17.599483831007475],[11.716317163171652,-17.547137935641118],[11.719917199171988,-17.46777480395663],[11.7559175591756,-17.266834108840584],[11.766717667176692,-17.253325490681533],[11.766717667176692,-17.24488260433212],[11.759517595175964,-17.239816872522468],[11.752317523175236,-17.229685408903165],[11.752317523175236,-17.216176790744115],[11.752317523175236,-17.204356749854924],[11.759517595175964,-17.16551947264763],[11.759517595175964,-17.03381044559677],[11.770317703177028,-16.947693004832757],[11.78111781117812,-16.870018450418158],[11.766717667176692,-16.799098205083084],[11.766717667176692,-16.76870381422519],[11.784717847178484,-16.76363808241554],[11.791917919179213,-16.80585251416261],[11.802718027180276,-16.824426864131325],[11.820718207182068,-16.782212432384256],[11.817118171181733,-16.704537877969656],[11.824318243182432,-16.679209218921415],[11.813518135181369,-16.584648891807973],[11.820718207182068,-16.47826852380537],[11.777517775177756,-16.100027215351645],[11.78111781117812,-16.079764288113054],[11.784717847178484,-16.064567092684115],[11.80631806318064,-16.01897550639727],[11.784717847178484,-15.973383920110436],[11.737917379173808,-15.900775097505488],[11.734317343173444,-15.85687208848853],[11.752317523175236,-15.79946046131252],[11.763117631176328,-15.789328997693232],[11.784717847178484,-15.777508956804056],[11.80631806318064,-15.769066070454642],[11.813518135181369,-15.775820379534167],[11.817118171181733,-15.792706152232995],[11.83151831518316,-15.797771884042646],[11.845918459184588,-15.79439472950287],[11.896318963189628,-15.747114565946163],[11.903519035190357,-15.731917370517209],[11.90711907119072,-15.718408752358158],[11.90711907119072,-15.689702938770154],[11.910719107191085,-15.676194320611089],[11.928719287192877,-15.652554238832735],[11.993519935199345,-15.617094116165191],[12.004320043200437,-15.595142611656712],[12.007920079200801,-15.564748220798833],[12.029520295202957,-15.490450820923996],[12.04032040320405,-15.463433584605866],[12.029520295202957,-15.43641634828775],[12.033120331203321,-15.407710534699731],[12.047520475204749,-15.350298907523722],[12.054720547205477,-15.233787075901816],[12.061920619206205,-15.218589880472877],[12.069120691206905,-15.205081262313811],[12.105121051210517,-15.172998294186044],[12.112321123211245,-15.171309716916156],[12.126721267212673,-15.17975260326557],[12.137521375213765,-15.17975260326557],[12.144721447214465,-15.167932562376393],[12.14832148321483,-15.152735366947454],[12.14832148321483,-15.134161016978737],[12.14112141121413,-15.120652398819686],[12.126721267212673,-15.113898089740147],[12.11592115921161,-15.11727524427991],[12.112321123211245,-15.115586667010035],[12.11592115921161,-15.093635162501556],[12.12312123121231,-15.061552194373789],[12.151921519215193,-15.002451989927891],[12.155521555215557,-14.966991867260347],[12.159121591215921,-14.953483249101296],[12.169921699216985,-14.94166320821212],[12.180721807218077,-14.931531744592817],[12.19152191521917,-14.921400280973515],[12.195121951219505,-14.907891662814464],[12.205922059220597,-14.853857190178218],[12.205922059220597,-14.840348572019153],[12.209522095220962,-14.833594262939627],[12.21672216722169,-14.823462799320325],[12.220322203222025,-14.823462799320325],[12.227522275222753,-14.825151376590213],[12.234722347223482,-14.823462799320325],[12.245522455224545,-14.80995418116126],[12.252722527225274,-14.782936944843144],[12.27432274322743,-14.750853976715362],[12.270722707227065,-14.73227962674666],[12.26712267122673,-14.715393854047832],[12.26712267122673,-14.696819504079116],[12.26712267122673,-14.683310885920065],[12.277922779227794,-14.661359381411586],[12.29232292322925,-14.587061981536749],[12.29952299522995,-14.507698849852261],[12.303123031230314,-14.494190231693196],[12.321123211232106,-14.468861572644954],[12.331923319233198,-14.433401449977424],[12.34272342723429,-14.367546936452001],[12.346323463234626,-14.303381000196453],[12.34272342723429,-14.269609454798797],[12.331923319233198,-14.23752648667103],[12.32472324723247,-14.220640713972202],[12.321123211232106,-14.213886404892676],[12.321123211232106,-14.202066364003485],[12.321123211232106,-14.197000632193848],[12.313923139231406,-14.188557745844435],[12.313923139231406,-14.181803436764895],[12.313923139231406,-14.17504912768537],[12.31752317523177,-14.17504912768537],[12.32472324723247,-14.176737704955258],[12.331923319233198,-14.173360550415481],[12.34272342723429,-14.171671973145607],[12.34992349923499,-14.168294818605844],[12.353523535235354,-14.161540509526304],[12.353523535235354,-14.151409045907016],[12.357123571235718,-14.142966159557602],[12.353523535235354,-14.134523273208188],[12.346323463234626,-14.119326077779235],[12.335523355233562,-14.105817459620184],[12.328323283232834,-14.092308841461119],[12.346323463234626,-14.066980182412877],[12.34992349923499,-14.045028677904398],[12.371523715237146,-14.021388596126044],[12.37512375123751,-14.00787997796698],[12.378723787237874,-13.99268278253804],[12.382323823238238,-13.977485587109086],[12.40032400324003,-13.952156928060859],[12.403924039240394,-13.942025464441556],[12.403924039240394,-13.906565341774012],[12.407524075240758,-13.891368146345073],[12.414724147241486,-13.877859528186008],[12.439924399244006,-13.871105219106482],[12.44352443524437,-13.866039487296831],[12.45072450724507,-13.862662332757068],[12.457924579245798,-13.864350910026957],[12.472324723247226,-13.874482373646245],[12.479524795247954,-13.877859528186008],[12.486724867248682,-13.877859528186008],[12.50112501125011,-13.855908023677543],[12.508325083250838,-13.818759323740125],[12.515525155251567,-13.715756110277269],[12.511925119251202,-13.61613005135419],[12.515525155251567,-13.604310010465014],[12.529925299252994,-13.578981351416772],[12.533525335253358,-13.565472733257721],[12.522725227252266,-13.551964115098656],[12.522725227252266,-13.543521228749242],[12.522725227252266,-13.54014407420948],[12.52632526325263,-13.536766919669702],[12.52632526325263,-13.504683951541935],[12.52632526325263,-13.489486756112996],[12.515525155251567,-13.457403787985214],[12.511925119251202,-13.442206592556275],[12.515525155251567,-13.425320819857447],[12.522725227252266,-13.410123624428508],[12.533525335253358,-13.398303583539331],[12.547925479254786,-13.394926428999568],[12.56952569525697,-13.391549274459791],[12.57672576725767,-13.386483542650154],[12.580325803258035,-13.374663501760963],[12.59472594725949,-13.361154883601913],[12.612726127261283,-13.352711997252499],[12.623526235262347,-13.349334842712722],[12.634326343263439,-13.342580533633196],[12.641526415264167,-13.325694760934368],[12.641526415264167,-13.31556329731508],[12.641526415264167,-13.30880898823554],[12.637926379263803,-13.302054679156015],[12.637926379263803,-13.295300370076475],[12.637926379263803,-13.28854606099695],[12.648726487264867,-13.278414597377662],[12.648726487264867,-13.271660288298122],[12.655926559265595,-13.256463092869183],[12.684726847268479,-13.241265897440229],[12.691926919269207,-13.229445856551052],[12.695526955269571,-13.217625815661876],[12.699126991269907,-13.217625815661876],[12.706327063270635,-13.221002970201639],[12.713527135271363,-13.222691547471527],[12.731527315273155,-13.21087150658235],[12.731527315273155,-13.209182929312462],[12.749527495274947,-13.200740042963048],[12.760327603276039,-13.192297156613634],[12.828728287282871,-13.109556870389383],[12.853928539285391,-13.089293943150793],[12.864728647286483,-13.07916247953149],[12.882728827288275,-13.052145243213374],[12.943929439294408,-12.982913575148189],[12.958329583295836,-12.955896338830058],[12.958329583295836,-12.928879102511942],[12.951129511295107,-12.901861866193812],[12.933129331293316,-12.873156052605808],[12.925929259292587,-12.842761661747915],[12.940329403294044,-12.817433002699673],[12.98712987129872,-12.770152839142966],[13.008730087300876,-12.756644220983901],[13.073530735307372,-12.69416686199824],[13.102331023310228,-12.680658243839176],[13.109531095310956,-12.67390393475965],[13.127531275312748,-12.645198121171646],[13.131131311313112,-12.636755234822232],[13.159931599315996,-12.61142657577399],[13.177931779317788,-12.601295112154688],[13.199531995319973,-12.599606534884813],[13.199531995319973,-12.602983689424576],[13.221132211322129,-12.606360843964339],[13.231932319323192,-12.613115153043879],[13.26433264332644,-12.582720762185986],[13.275132751327533,-12.577655030376334],[13.293132931329325,-12.581032184916097],[13.311133111331117,-12.594540803075162],[13.329133291332909,-12.599606534884813],[13.36513365133652,-12.592852225805274],[13.393933939339405,-12.570900721296809],[13.437134371343717,-12.523620557740088],[13.458734587345873,-12.50673478504126],[13.469534695346965,-12.494914744152084],[13.47313473134733,-12.479717548723144],[13.476734767347693,-12.437503116976075],[13.480334803348029,-12.418928767007358],[13.487534875348757,-12.400354417038656],[13.505535055350549,-12.371648603450652],[13.570335703357046,-12.310859821734866],[13.57393573935741,-12.310859821734866],[13.57393573935741,-12.317614130814405],[13.566735667356681,-12.322679862624042],[13.559535595355953,-12.327745594433694],[13.55593555935559,-12.336188480783107],[13.563135631356317,-12.34631994440241],[13.577535775357774,-12.331122748973456],[13.59913599135993,-12.299039780845689],[13.63153631536315,-12.263579658178159],[13.638736387363878,-12.248382462749206],[13.663936639366398,-12.169019331064717],[13.692736927369282,-12.109919126618834],[13.703537035370374,-12.077836158491053],[13.714337143371438,-12.008604490425867],[13.721537215372166,-11.993407294996928],[13.735937359373594,-11.978210099567974],[13.75033750337505,-11.961324326869146],[13.75753757537575,-11.942749976900444],[13.764737647376478,-11.920798472391965],[13.78273782737827,-11.821172413468886],[13.793537935379362,-11.790778022610994],[13.793537935379362,-11.770515095372403],[13.779137791377934,-11.589837327494962],[13.78273782737827,-11.48176838222247],[13.786337863378634,-11.458128300444102],[13.793537935379362,-11.441242527745274],[13.786337863378634,-11.431111064125986],[13.786337863378634,-11.420979600506683],[13.793537935379362,-11.407470982347618],[13.793537935379362,-11.395650941458442],[13.793537935379362,-11.341616468822195],[13.793537935379362,-11.331485005202907],[13.80073800738009,-11.321353541583605],[13.818738187381882,-11.296024882535363],[13.822338223382246,-11.284204841646186],[13.822338223382246,-11.255499028058182],[13.847538475384766,-11.113658537388034],[13.847538475384766,-11.056246910212025],[13.847538475384766,-10.981949510337188],[13.843938439384402,-10.946489387669644],[13.829538295382974,-10.914406419541876],[13.739537395373958,-10.78269739249103],[13.73233732337323,-10.764123042522314],[13.73233732337323,-10.747237269823486],[13.739537395373958,-10.730351497124659],[13.768337683376842,-10.694891374457129],[13.771937719377206,-10.6780056017583],[13.764737647376478,-10.662808406329361],[13.753937539375414,-10.645922633630533],[13.710737107371074,-10.612151088232878],[13.703537035370374,-10.602019624613575],[13.69993699937001,-10.590199583724399],[13.60633606336063,-10.478753483912143],[13.541535415354161,-10.426407588545771],[13.527135271352734,-10.40614466130718],[13.52353523535237,-10.387570311338479],[13.519935199352005,-10.320027220543167],[13.516335163351641,-10.298075716034688],[13.509135091350913,-10.277812788796098],[13.455134551345509,-10.201826811651372],[13.444334443344445,-10.179875307142908],[13.429934299342989,-10.130906566316298],[13.415534155341561,-10.110643639077708],[13.375933759337613,-10.070117784600527],[13.318333183331845,-9.975557457487099],[13.318333183331845,-9.962048839328034],[13.329133291332909,-9.946851643899095],[13.336333363333637,-9.926588716660504],[13.325533255332573,-9.886062862183309],[13.303933039330389,-9.842159853166365],[13.278732787327868,-9.801633998689184],[13.199531995319973,-9.70876224884563],[13.192331923319244,-9.690187898876914],[13.195931959319608,-9.6733021261781],[13.217532175321764,-9.649662044399733],[13.224732247322493,-9.63108769443103],[13.224732247322493,-9.614201921732203],[13.217532175321764,-9.593938994493612],[13.210332103321036,-9.577053221794785],[13.203132031320308,-9.570298912715245],[13.203132031320308,-9.558478871826068],[13.170731707317088,-9.465607121982515],[13.167131671316724,-9.447032772013813],[13.170731707317088,-9.403129762996855],[13.167131671316724,-9.387932567567915],[13.149131491314932,-9.352472444900386],[13.141931419314204,-9.330520940391906],[13.120331203312048,-9.313635167693079],[13.044730447304488,-9.188680449721758],[13.015930159301604,-9.122825936196335],[12.997929979299812,-9.09412012260833],[12.990729907299084,-9.038397072702196],[13.030330303303032,-8.959033941017708],[13.0879308793088,-8.893179427492285],[13.13833138331384,-8.871227922983806],[13.11313113131132,-8.903310891111587],[13.041130411304124,-8.96241109555747],[13.005130051300512,-9.045151381781736],[13.001530015300148,-9.072168618099852],[13.01233012330124,-9.083988658989028],[13.023130231302332,-9.075545772639614],[13.080730807308072,-8.980985445526187],[13.080730807308072,-8.970853981906885],[13.0879308793088,-8.959033941017708],[13.098730987309892,-8.955656786477945],[13.11313113131132,-8.955656786477945],[13.123931239312412,-8.953968209208071],[13.13833138331384,-8.940459591049006],[13.149131491314932,-8.908376622921224],[13.159931599315996,-8.888113695682634],[13.185131851318516,-8.861096459364518],[13.192331923319244,-8.850964995745215],[13.192331923319244,-8.839144954856039],[13.192331923319244,-8.815504873077685],[13.195931959319608,-8.805373409458383],[13.224732247322493,-8.773290441330616],[13.242732427324285,-8.76147040044144],[13.260732607326077,-8.7547160913619],[13.210332103321036,-8.803684832188509],[13.199531995319973,-8.8239477594271],[13.2139321393214,-8.815504873077685],[13.246332463324649,-8.800307677648732],[13.26433264332644,-8.788487636759555],[13.271532715327169,-8.786799059489681],[13.278732787327868,-8.78173332768003],[13.278732787327868,-8.771601864060727],[13.282332823328233,-8.764847554981202],[13.282332823328233,-8.75978182317155],[13.285932859328597,-8.756404668631788],[13.293132931329325,-8.7547160913619],[13.354333543335429,-8.763158977711313],[13.379533795337949,-8.7547160913619],[13.393933939339405,-8.70405877326543],[13.408334083340833,-8.666910073328012],[13.411934119341197,-8.651712877899058],[13.404734047340469,-8.636515682470119],[13.375933759337613,-8.595989827992938],[13.36513365133652,-8.567284014404933],[13.350733507335093,-8.499740923609622],[13.343533435334365,-8.46765795548184],[13.354333543335429,-8.464280800942078],[13.36513365133652,-8.465969378211966],[13.372333723337249,-8.464280800942078],[13.379533795337949,-8.45414933732279],[13.383133831338313,-8.444017873703487],[13.383133831338313,-8.368031896558762],[13.379533795337949,-8.347768969320171],[13.368733687336885,-8.324128887541818],[13.275132751327533,-8.178911242331907],[13.26433264332644,-8.170468355982493],[13.249932499325013,-8.12487676969566],[13.242732427324285,-8.107990996996833],[13.235532355323556,-8.096170956107656],[13.221132211322129,-8.069153719789526],[13.2139321393214,-8.059022256170238],[13.199531995319973,-8.02187355623282],[13.18873188731888,-7.976281969945987],[13.123931239312412,-7.858081561054192],[12.98712987129872,-7.550760497935542],[12.940329403294044,-7.435937243583524],[12.91152911529116,-7.334622607390557],[12.882728827288275,-7.305916793802552],[12.868328683286848,-7.289031021103725],[12.850328503285027,-7.265390939325371],[12.853928539285391,-7.231619393927716],[12.850328503285027,-7.204602157609585],[12.832328323283235,-7.005350039763428],[12.825128251282507,-6.974955648905535],[12.821528215282171,-6.959758453476596],[12.817928179281807,-6.9546927216669445],[12.817928179281807,-6.9496269898573075],[12.814328143281443,-6.946249835317531],[12.817928179281807,-6.942872680777768],[12.825128251282507,-6.934429794428354],[12.828728287282871,-6.929364062618703],[12.828728287282871,-6.919232598999415],[12.832328323283235,-6.915855444459652],[12.832328323283235,-6.912478289919875],[12.828728287282871,-6.904035403570461],[12.799927999279987,-6.922609753539177],[12.778327783277831,-6.914166867189763],[12.706327063270635,-6.814540808266685],[12.61992619926201,-6.735177676582197],[12.55152551525515,-6.632174463119355],[12.457924579245798,-6.465005313400965],[12.421924219242186,-6.380576449906826],[12.396723967239666,-6.3248534000007055],[12.36792367923681,-6.287704700063287],[12.346323463234626,-6.253933154665631],[12.31752317523177,-6.220161609267976],[12.277922779227794,-6.147552786663013],[12.27432274322743,-6.115469818535246],[12.288722887228886,-6.096895468566544],[12.313923139231406,-6.090141159487004],[12.331923319233198,-6.078321118597827],[12.328323283232834,-6.093518314026767],[12.32472324723247,-6.1222241276147855],[12.346323463234626,-6.120535550344897],[12.382323823238238,-6.110404086725595],[12.432724327243278,-6.10871550945572],[12.497524975249746,-6.095206891296655],[12.52632526325263,-6.074943964058065],[12.55152551525515,-6.066501077708651],[12.580325803258035,-6.063123923168888],[12.634326343263439,-6.0344181095808835],[12.645126451264531,-6.029352377771232],[12.670326703267051,-6.029352377771232],[12.691926919269207,-6.037795264120646],[12.717127171271727,-6.044549573200172],[12.742327423274247,-6.049615305009823],[12.771127711277131,-6.041172418660409],[12.817928179281807,-6.031040955041107],[12.86112861128612,-6.015843759612167],[12.882728827288275,-6.000646564183228],[12.925929259292587,-5.980383636944637],[12.947529475294772,-5.95674355516627],[12.965529655296564,-5.931414896118028],[12.972729727297292,-5.912840546149326],[12.98712987129872,-5.901020505260149],[13.01233012330124,-5.895954773450498],[13.030330303303032,-5.892577618910735],[13.044730447304488,-5.885823309831196],[13.06273062730628,-5.887511887101084],[13.102331023310228,-5.890889041640847],[13.11313113131132,-5.890889041640847],[13.127531275312748,-5.884134732561321],[13.170731707317088,-5.862183228052842],[13.185131851318516,-5.857117496243191],[13.185131851318516,-5.855428918973317],[13.170731707317088,-5.850363187163666],[13.156331563315632,-5.85205176443354],[13.123931239312412,-5.862183228052842],[13.109531095310956,-5.862183228052842],[13.091530915309164,-5.860494650782954],[13.066330663306644,-5.862183228052842],[13.03753037530376,-5.857117496243191],[12.990729907299084,-5.835165991734726],[12.976329763297628,-5.833477414464838],[12.940329403294044,-5.818280219035898],[12.925929259292587,-5.8149030644961215],[12.897128971289732,-5.8149030644961215],[12.857528575285755,-5.819968796305773],[12.821528215282171,-5.830100259925075],[12.796327963279651,-5.8452974553540145],[12.789127891278923,-5.848674609893777],[12.767527675276767,-5.865560382592605],[12.753127531275311,-5.882446155291433],[12.742327423274247,-5.901020505260149],[12.717127171271727,-5.931414896118028],[12.724327243272427,-5.978695059674749],[12.670326703267051,-6.000646564183228],[12.605526055260555,-5.997269409643465],[12.555125551255514,-6.02597522323147],[12.47592475924759,-6.044549573200172],[12.45072450724507,-6.051303882279711],[12.436324363243642,-6.051303882279711],[12.432724327243278,-6.0344181095808835],[12.436324363243642,-6.02597522323147],[12.457924579245798,-6.014155182342293],[12.457924579245798,-5.990515100563925],[12.457924579245798,-5.9820722142145115],[12.447124471244706,-5.97700648240486],[12.429124291242914,-5.975317905134986],[12.414724147241486,-5.978695059674749],[12.411124111241122,-5.985449368754274],[12.403924039240394,-5.990515100563925],[12.396723967239666,-6.005712295992879],[12.385923859238602,-5.9837607914844],[12.378723787237874,-5.966875018785572],[12.37512375123751,-5.958432132436158],[12.371523715237146,-5.953366400626507],[12.357123571235718,-5.948300668816856],[12.353523535235354,-5.944923514277093],[12.335523355233562,-5.917906277958977],[12.26712267122673,-5.850363187163666],[12.24912249122491,-5.828411682655187],[12.209522095220962,-5.764245746399652],[12.209522095220962,-5.762557169129764],[12.162721627216285,-5.681505460175387],[12.14832148321483,-5.617339523919853],[12.169921699216985,-5.5548621649341925],[12.180721807218077,-5.543042124045016],[12.195121951219505,-5.541353546775127],[12.205922059220597,-5.539664969505253],[12.220322203222025,-5.534599237695602],[12.227522275222753,-5.5244677740762995],[12.231122311223118,-5.510959155917249],[12.231122311223118,-5.478876187789467],[12.227522275222753,-5.4670561469002905],[12.213122131221326,-5.4315960242327606],[12.195121951219505,-5.396135901565216],[12.169921699216985,-5.328592810769905],[12.17352173521735,-5.301575574451789],[12.133921339213401,-5.232343906386603],[12.12312123121231,-5.1850637428298825],[12.069120691206905,-5.1192092293044595],[12.022320223202229,-5.046600406699497],[12.022320223202229,-5.03478036581032],[12.036720367203685,-5.038157520350083],[12.054720547205477,-5.041534674889846],[12.069120691206905,-5.046600406699497],[12.072720727207269,-5.051666138509148],[12.079920799207997,-5.0753062202875014],[12.101521015210153,-5.080371952097153],[12.11592115921161,-5.0702404884778645],[12.126721267212673,-5.053354715779037],[12.130321303213037,-5.0398460976199715],[12.137521375213765,-5.03478036581032],[12.137521375213765,-5.01451743857173],[12.133921339213401,-5.006074552222316],[12.12312123121231,-5.002697397682553],[12.112321123211245,-5.002697397682553],[12.105121051210517,-5.012828861301841],[12.101521015210153,-5.028026056730795],[12.105121051210517,-5.048288983969385],[12.097920979209789,-5.053354715779037],[12.09072090720909,-5.04997756123926],[12.087120871208725,-5.031403211270558],[12.079920799207997,-5.019583170381381],[12.072720727207269,-5.017894593111492],[12.06552065520657,-5.026337479460906],[12.058320583205841,-5.028026056730795],[12.043920439204385,-5.021271747651255],[12.029520295202957,-5.022960324921144],[12.007920079200801,-5.019583170381381],[11.993519935199345,-5.006074552222316],[11.979119791197917,-4.989188779523488],[11.95751957519576,-4.9520400795860695],[11.921519215192149,-4.906448493299237],[11.896318963189628,-4.882808411520884],[11.885518855188565,-4.855791175202754],[11.83151831518316,-4.796690970756856],[11.820718207182068,-4.7848709298676795],[11.820718207182068,-4.779805198058028],[11.824318243182432,-4.773050888978503],[11.83151831518316,-4.773050888978503],[11.842318423184253,-4.788248084407442],[11.849518495184952,-4.786559507137568],[11.853118531185316,-4.774739466248391],[11.849518495184952,-4.752787961739912],[11.824318243182432,-4.7190164163422565],[11.78111781117812,-4.68017913913495],[11.777517775177756,-4.668359098245773],[11.777517775177756,-4.658227634626485],[11.802718027180276,-4.658227634626485],[11.820718207182068,-4.63796470738788],[11.824318243182432,-4.614324625609527],[11.80631806318064,-4.577175925672108],[11.694716947169468,-4.4640412485899645],[11.590315903159052,-4.374546653286188],[11.496714967149671,-4.293494944331812],[11.449914499144995,-4.264789130743807],[11.40311403114032,-4.220886121726863],[11.381513815138163,-4.19049173086897],[11.377913779137799,-4.185425999059319],[11.363513635136371,-4.163474494550854],[11.363513635136371,-4.153343030931552],[11.363513635136371,-4.131391526423073],[11.363513635136371,-4.119571485533896],[11.359913599136007,-4.111128599184482],[11.26991269912699,-4.041896931119297],[11.172711727117274,-3.977730994863748],[11.140311403114026,-3.9524023358155063],[11.09351093510935,-3.9236965222275018],[11.071910719107194,-3.9084993267985624],[11.021510215102154,-3.857842008702079],[11.007110071100726,-3.79367607244653],[10.996309963099634,-3.775101722477828],[10.989109891098906,-3.758215949779],[10.98550985509857,-3.7379530225404096],[10.98550985509857,-3.7143129407620563],[10.963909639096386,-3.690672858983689],[10.931509315093166,-3.6670327772053355],[10.80910809108093,-3.5623409864726057],[10.647106471064717,-3.452583463930239],[10.639906399063989,-3.4069918776433923],[10.639906399063989,-3.391794682214453],[10.647106471064717,-3.374908909515625],[10.650706507065081,-3.3512688277372717],[10.643506435064353,-3.3326944777685554],[10.636306363063625,-3.3141201277998533],[10.621906219062197,-3.3023000869106767],[10.600306003060041,-3.2887914687516115],[10.571505715057157,-3.2668399642431325],[10.553505535055365,-3.2583970778937186],[10.549905499055,-3.2398227279250165],[10.510305103051024,-3.197608296177947],[10.49950499504996,-3.1824111007490075],[10.481504815048169,-3.1621481735104027],[10.452704527045285,-3.133442359922398],[10.34830348303484,-3.043947764618622],[10.218702187021876,-2.9460102829654176],[10.168301683016836,-2.903795851218362],[10.038700387003871,-2.8092355241049205],[9.977499774997767,-2.758578206008437],[9.901899018990207,-2.701166578832428],[9.725497254972566,-2.48165153374768],[9.70389703897041,-2.442814256540373],[9.721897218972202,-2.4563228746994383],[9.750697506975087,-2.4867172655573313],[9.772297722977243,-2.498537306446508],[9.793897938979399,-2.5002258837163964],[9.808298082980826,-2.4917829973669825],[9.822698226982283,-2.476585801938029],[9.840698406984075,-2.4563228746994383],[9.83709837098371,-2.4715200701283777],[9.833498334983346,-2.48165153374768],[9.829898298982982,-2.4934715746368568],[9.833498334983346,-2.5052916155260334],[9.83709837098371,-2.503603038256159],[9.844298442984439,-2.5002258837163964],[9.844298442984439,-2.4968487291766195],[9.847898478984803,-2.4917829973669825],[9.847898478984803,-2.5103573473356846],[9.851498514985167,-2.528931697304401],[9.858698586985867,-2.539063160923689],[9.873098730987323,-2.5323088518441637],[9.909099090990907,-2.5458174700032288],[9.916299162991635,-2.5491946245429915],[9.934299342993427,-2.572834706321345],[9.93789937899379,-2.594786210829824],[9.941499414994155,-2.594786210829824],[9.945099450994519,-2.5846547472105215],[9.948699486994883,-2.5795890154008703],[9.955899558995583,-2.5812775926707587],[9.963099630996311,-2.58634332448041],[9.963099630996311,-2.582966169940647],[9.963099630996311,-2.5812775926707587],[9.966699666996675,-2.5812775926707587],[9.970299702997039,-2.5795890154008703],[9.973899738997403,-2.616737715338303],[9.977499774997767,-2.6285577562274796],[9.984699846998467,-2.62180344714794],[9.991899918999195,-2.616737715338303],[10.002700027000287,-2.6150491380684144],[10.009900099000987,-2.6150491380684144],[10.006300063000623,-2.6285577562274796],[10.013500135001351,-2.6319349107672423],[10.02070020700208,-2.6285577562274796],[10.031500315003143,-2.62180344714794],[10.038700387003871,-2.613360560798526],[10.0459004590046,-2.594786210829824],[10.053100531005327,-2.58634332448041],[10.067500675006755,-2.5812775926707587],[10.089100891008911,-2.577900438130996],[10.110701107011067,-2.577900438130996],[10.12150121501216,-2.5795890154008703],[10.14670146701468,-2.577900438130996],[10.157501575015743,-2.572834706321345],[10.161101611016107,-2.561014665432168],[10.143101431014315,-2.5491946245429915],[10.135901359013587,-2.5458174700032288],[10.135901359013587,-2.5272431200345125],[10.117901179011795,-2.51711165641521],[10.092700927009275,-2.5086687700658103],[10.081900819008183,-2.4917829973669825],[10.074700747007483,-2.4917829973669825],[10.081900819008183,-2.5086687700658103],[10.092700927009275,-2.561014665432168],[10.078300783007847,-2.5576375108924054],[10.07110071100712,-2.5508832018128658],[10.067500675006755,-2.542440315463452],[10.063900639006391,-2.539063160923689],[10.053100531005327,-2.5356860063839264],[10.042300423004235,-2.51711165641521],[10.035100351003507,-2.512045924605573],[10.027900279002807,-2.5103573473356846],[10.017100171001715,-2.506980192795922],[10.009900099000987,-2.5052916155260334],[10.006300063000623,-2.506980192795922],[10.006300063000623,-2.5137345018754473],[10.006300063000623,-2.520488810954987],[10.006300063000623,-2.525554542764624],[9.999099990999923,-2.5323088518441637],[9.991899918999195,-2.542440315463452],[9.988299882998831,-2.5525717790827542],[9.984699846998467,-2.561014665432168],[9.970299702997039,-2.5542603563526427],[9.955899558995583,-2.5458174700032288],[9.959499594995947,-2.5356860063839264],[9.955899558995583,-2.515423079145336],[9.955899558995583,-2.5052916155260334],[9.966699666996675,-2.5002258837163964],[9.977499774997767,-2.5002258837163964],[9.988299882998831,-2.5002258837163964],[9.991899918999195,-2.4917829973669825],[9.981099810998103,-2.48165153374768],[9.955899558995583,-2.473208647398266],[9.927099270992727,-2.468142915588615],[9.909099090990907,-2.4698314928585035],[9.88749887498875,-2.424239906571671],[9.883898838988387,-2.415797020222257],[9.873098730987323,-2.4090427111427175],[9.869498694986959,-2.4090427111427175],[9.865898658986595,-2.41917417476202],[9.86229862298623,-2.4208627520319084],[9.847898478984803,-2.427617061111434],[9.847898478984803,-2.4293056383813223],[9.822698226982283,-2.424239906571671],[9.797497974979763,-2.442814256540373],[9.775897758977607,-2.4647657610488523],[9.750697506975087,-2.4698314928585035],[9.743497434974358,-2.4647657610488523],[9.732697326973266,-2.4563228746994383],[9.725497254972566,-2.4445028338102617],[9.725497254972566,-2.432682792921085],[9.725497254972566,-2.4293056383813223],[9.73629736297363,-2.41917417476202],[9.739897398973994,-2.415797020222257],[9.747097470974722,-2.4141084429523687],[9.739897398973994,-2.4073541338728432],[9.72909729097293,-2.402288402063192],[9.725497254972566,-2.402288402063192],[9.721897218972202,-2.393845515713778],[9.725497254972566,-2.385402629364364],[9.725497254972566,-2.3786483202848387],[9.718297182971838,-2.375271165745076],[9.71109711097111,-2.3735825884751875],[9.70389703897041,-2.3735825884751875],[9.696696966969682,-2.3769597430149503],[9.696696966969682,-2.38371405209449],[9.707497074970746,-2.4073541338728432],[9.71109711097111,-2.4225513293017826],[9.70389703897041,-2.4360599474608478],[9.68589685896859,-2.4293056383813223],[9.646296462964642,-2.3786483202848387],[9.62829628296285,-2.366828279395662],[9.639096390963914,-2.3820254748246015],[9.66069660696607,-2.4090427111427175],[9.667896678966798,-2.4225513293017826],[9.646296462964642,-2.4073541338728432],[9.621096210962122,-2.3820254748246015],[9.595895958959602,-2.3516310839667085],[9.58509585095851,-2.3263024249184667],[9.58509585095851,-2.3212366931088297],[9.57789577895781,-2.2975966113304622],[9.574295742957446,-2.2064134387567975],[9.567095670956718,-2.1929048205977324],[9.466294662946638,-2.0949673389445422],[9.441094410944117,-2.079770143515603],[9.40869408694087,-2.0443100208480587],[9.394293942939441,-2.032489979958882],[9.397893978939805,-2.0291128254191193],[9.40149401494017,-2.018981361799817],[9.379893798937985,-2.0122270527202915],[9.369093690936921,-1.9953412800214636],[9.354693546935465,-1.9565040028141567],[9.311493114931153,-1.9159781483369756],[9.304293042930425,-1.9058466847176732],[9.30069300693009,-1.904158107447799],[9.289892898928997,-1.895715221098385],[9.282692826928269,-1.8855837574790826],[9.282692826928269,-1.8822066029393199],[9.271892718927205,-1.8771408711296687],[9.271892718927205,-1.8670094075103805],[9.282692826928269,-1.8602550984308408],[9.286292862928633,-1.8636322529706177],[9.293492934929361,-1.8822066029393199],[9.311493114931153,-1.8974037983682734],[9.333093330933309,-1.904158107447799],[9.354693546935465,-1.9024695301779104],[9.35109351093513,-1.9058466847176732],[9.35109351093513,-1.9075352619875616],[9.347493474934765,-1.90922383925745],[9.35829358293583,-1.914289571067087],[9.365493654936557,-1.90922383925745],[9.37629376293765,-1.8889609120188595],[9.379893798937985,-1.8889609120188595],[9.387093870938713,-1.90922383925745],[9.38349383493835,-1.9109124165273244],[9.37629376293765,-1.914289571067087],[9.37629376293765,-1.9193553028767383],[9.37629376293765,-1.926109611956278],[9.37629376293765,-1.931175343765915],[9.38349383493835,-1.9277981892261522],[9.390693906939077,-1.9193553028767383],[9.387093870938713,-1.9159781483369756],[9.441094410944117,-1.9159781483369756],[9.466294662946638,-1.922732457416501],[9.480694806948065,-1.9396182301153289],[9.47709477094773,-1.9598811573539336],[9.455494554945545,-1.9784555073226358],[9.469894698947002,-1.9902755482118124],[9.473494734947366,-1.9953412800214636],[9.480694806948065,-1.9987184345612263],[9.50229502295025,-2.000407011831115],[9.50949509495095,-2.002095589100989],[9.50949509495095,-2.0071613209106403],[9.50949509495095,-2.024047093609468],[9.513095130951314,-2.032489979958882],[9.531095310953106,-2.045998598117947],[9.531095310953106,-2.0510643299275984],[9.538295382953834,-2.062884370816775],[9.541895418954198,-2.071327257166189],[9.545495454954562,-2.062884370816775],[9.549095490954926,-2.057818639007124],[9.563495634956354,-2.0527529071974726],[9.567095670956718,-2.04937575265771],[9.563495634956354,-2.032489979958882],[9.556295562955626,-2.0122270527202915],[9.549095490954926,-1.997029857291352],[9.538295382953834,-1.9987184345612263],[9.52749527495277,-1.9852098164021612],[9.50229502295025,-1.9683240437033334],[9.498694986949886,-1.9565040028141567],[9.50949509495095,-1.9396182301153289],[9.520295202952042,-1.9328639210358034],[9.516695166951678,-1.926109611956278],[9.48429484294843,-1.8703865620501432],[9.466294662946638,-1.8518122120814269],[9.455494554945545,-1.8602550984308408],[9.441094410944117,-1.8518122120814269],[9.437494374943753,-1.84674648027179],[9.43389433894339,-1.856877943891078],[9.43389433894339,-1.865320830240492],[9.437494374943753,-1.8889609120188595],[9.415894158941597,-1.873763716589906],[9.390693906939077,-1.8264835530331993],[9.37629376293765,-1.8197292439536596],[9.365493654936557,-1.8264835530331993],[9.361893618936193,-1.838303593922376],[9.35829358293583,-1.8484350575416642],[9.35829358293583,-1.8535007893513153],[9.347493474934765,-1.856877943891078],[9.343893438934401,-1.865320830240492],[9.340293402934037,-1.8754522938597944],[9.340293402934037,-1.8889609120188595],[9.333093330933309,-1.8805180256694456],[9.32589325893261,-1.8754522938597944],[9.315093150931517,-1.873763716589906],[9.304293042930425,-1.873763716589906],[9.318693186931881,-1.8535007893513153],[9.315093150931517,-1.8433693257320272],[9.293492934929361,-1.8264835530331993],[9.271892718927205,-1.8399921711922502],[9.253892538925385,-1.8349264393826132],[9.246692466924685,-1.816352089413897],[9.243092430924321,-1.785957698556004],[9.246692466924685,-1.7741376576668273],[9.25029250292505,-1.7572518849679994],[9.25029250292505,-1.7488089986185855],[9.25029250292505,-1.706594566871516],[9.25029250292505,-1.6964631032522277],[9.239492394923957,-1.6745115987437487],[9.235892358923593,-1.662691557854572],[9.239492394923957,-1.6306085897268048],[9.235892358923593,-1.6204771261075024],[9.221492214922165,-1.5799512716303212],[9.196291962919645,-1.547868303502554],[9.14229142291424,-1.4904566763265308],[9.01629016290164,-1.3165332175286153],[9.005490054900548,-1.2979588675599132],[8.998289982899848,-1.2743187857815457],[8.987489874898756,-1.2523672812730808],[8.983889838898392,-1.2304157767646018],[8.998289982899848,-1.2574330130827178],[9.005490054900548,-1.2878274039406108],[9.019890198902004,-1.3047131766394386],[9.037890378903796,-1.3266646811479177],[9.055890558905588,-1.3249761038780292],[9.070290702907045,-1.3317304129575689],[9.081090810908108,-1.3435504538467455],[9.0918909189092,-1.3756334219745128],[9.11709117091172,-1.399273503752866],[9.120691206912085,-1.4195364309914567],[9.127891278912784,-1.429667894610759],[9.160291602916033,-1.468505171818066],[9.171091710917125,-1.4769480581674799],[9.178291782917825,-1.4837023672470053],[9.225092250922529,-1.5225396444543122],[9.235892358923593,-1.525916798994075],[9.264692646926477,-1.5360482626133631],[9.27549275492757,-1.6593144033148093],[9.279092790927905,-1.6745115987437487],[9.293492934929361,-1.6694458669340975],[9.293492934929361,-1.6593144033148093],[9.286292862928633,-1.6458057851557442],[9.289892898928997,-1.6390514760762187],[9.297092970929725,-1.6339857442665675],[9.304293042930425,-1.6390514760762187],[9.311493114931153,-1.6474943624256326],[9.311493114931153,-1.6559372487750466],[9.32589325893261,-1.6390514760762187],[9.35109351093513,-1.6255428579171536],[9.37629376293765,-1.6170999715677397],[9.40149401494017,-1.613722817027977],[9.397893978939805,-1.6306085897268048],[9.394293942939441,-1.6474943624256326],[9.40149401494017,-1.6610029805846835],[9.415894158941597,-1.6694458669340975],[9.423094230942326,-1.6356743215364418],[9.423094230942326,-1.6187885488376281],[9.415894158941597,-1.6069685079484373],[9.448294482944846,-1.6035913534086745],[9.531095310953106,-1.613722817027977],[9.55989559895599,-1.6069685079484373],[9.516695166951678,-1.5917713125194979],[9.50229502295025,-1.5799512716303212],[9.491494914949158,-1.5596883443917307],[9.480694806948065,-1.5225396444543122],[9.480694806948065,-1.5005881399458332],[9.48429484294843,-1.4837023672470053],[9.47709477094773,-1.4820137899771169],[9.455494554945545,-1.4701937490879402],[9.45189451894521,-1.4701937490879402],[9.441094410944117,-1.4701937490879402],[9.43389433894339,-1.473570903627703],[9.430294302943025,-1.4786366354373541],[9.437494374943753,-1.4938338308663077],[9.43389433894339,-1.503965294485596],[9.430294302943025,-1.509031026295247],[9.42669426694269,-1.5124081808350098],[9.40149401494017,-1.5461797262326655],[9.379893798937985,-1.5630654989314934],[9.35109351093513,-1.5715083852809073],[9.318693186931881,-1.5731969625507816],[9.311493114931153,-1.57488553982067],[9.307893078930789,-1.5765741170905585],[9.30069300693009,-1.5765741170905585],[9.293492934929361,-1.5731969625507816],[9.286292862928633,-1.566442653471256],[9.286292862928633,-1.5495568807724283],[9.279092790927905,-1.5360482626133631],[9.279092790927905,-1.525916798994075],[9.279092790927905,-1.5073424490253586],[9.27549275492757,-1.5022767172157216],[9.264692646926477,-1.5005881399458332],[9.253892538925385,-1.4988995626759447],[9.25029250292505,-1.4972109854060704],[9.25029250292505,-1.4820137899771169],[9.257492574925749,-1.4718823263578287],[9.271892718927205,-1.465128017278289],[9.289892898928997,-1.4634394400084147],[9.297092970929725,-1.4583737081987636],[9.297092970929725,-1.4448650900396984],[9.293492934929361,-1.429667894610759],[9.286292862928633,-1.4212250082613451],[9.286292862928633,-1.416159276451694],[9.293492934929361,-1.4127821219119312],[9.318693186931881,-1.4110935446420427],[9.32589325893261,-1.40771639010228],[9.333093330933309,-1.399273503752866],[9.340293402934037,-1.3790105765142755],[9.354693546935465,-1.350304762926271],[9.35109351093513,-1.3334189902274431],[9.333093330933309,-1.2979588675599132],[9.336693366933673,-1.292893135750262],[9.340293402934037,-1.2878274039406108],[9.336693366933673,-1.2827616721309596],[9.32589325893261,-1.2776959403213226],[9.32589325893261,-1.2979588675599132],[9.333093330933309,-1.350304762926271],[9.329493294932945,-1.3604362265455734],[9.322293222932245,-1.3705676901648616],[9.311493114931153,-1.3790105765142755],[9.30069300693009,-1.380699153784164],[9.293492934929361,-1.3773219992444012],[9.286292862928633,-1.3638133810853361],[9.279092790927905,-1.3604362265455734],[9.261092610926113,-1.3655019583552104],[9.25029250292505,-1.380699153784164],[9.243092430924321,-1.394207771943229],[9.232292322923229,-1.4009620810227545],[9.185491854918553,-1.4110935446420427],[9.16749167491676,-1.40771639010228],[9.156691566915669,-1.3958963492131033],[9.153091530915304,-1.3739448447046243],[9.156691566915669,-1.3553704947359222],[9.160291602916033,-1.3469276083865083],[9.156691566915669,-1.3452390311166198],[9.149491494914969,-1.3384847220370943],[9.145891458914605,-1.3317304129575689],[9.14229142291424,-1.3334189902274431],[9.135091350913513,-1.3384847220370943],[9.127891278912784,-1.341861876576857],[9.124291242912449,-1.3452390311166198],[9.120691206912085,-1.3486161856563967],[9.106291062910628,-1.3469276083865083],[9.0918909189092,-1.3384847220370943],[9.055890558905588,-1.311467485718964],[9.04149041490416,-1.3064017539093271],[9.030690306903068,-1.2996474448297874],[9.019890198902004,-1.2827616721309596],[9.019890198902004,-1.262498744892369],[9.027090270902704,-1.243924394923667],[9.023490234902368,-1.24054724038389],[9.019890198902004,-1.2371700858441272],[9.019890198902004,-1.2304157767646018],[9.037890378903796,-1.2169071586055367],[9.034290342903432,-1.1932670768271834],[9.01629016290164,-1.16962699504883],[8.998289982899848,-1.1544297996198765],[9.009090090900912,-1.1848241904777694],[9.005490054900548,-1.2118414267958855],[9.001890018900184,-1.2219728904151879],[8.994689946899484,-1.2202843131452994],[8.99108991089912,-1.2101528495260112],[8.983889838898392,-1.147675490540351],[8.9658896588966,-1.103772481523393],[8.868688686886884,-0.9771291862821982],[8.893888938889404,-1.0007692680605516],[8.908289082890832,-1.0092121544099655],[8.922689226892288,-1.0041464226003143],[8.908289082890832,-0.9973921135207888],[8.91548915489156,-0.9838834953617237],[8.922689226892288,-0.972063454472547],[8.929889298892988,-0.9653091453930216],[8.937089370893716,-0.9636205681231331],[8.922689226892288,-0.9585548363134819],[8.893888938889404,-0.9788177635520725],[8.875888758887584,-0.9737520317424355],[8.872288722887248,-0.9568662590436077],[8.86508865088652,-0.9332261772652402],[8.857888578885792,-0.9163404045664123],[8.847088470884728,-0.923094713645952],[8.839888398884,-0.923094713645952],[8.832688326883272,-0.8876345909784078],[8.825488254882544,-0.8741259728193569],[8.811088110881116,-0.8487973137711151],[8.785887858878596,-0.7896971093252176],[8.76428764287644,-0.7525484093877992],[8.749887498874983,-0.7002025140214272],[8.717487174871764,-0.659676659544246],[8.695886958869607,-0.5870678369392976],[8.710287102871035,-0.5651163324308186],[8.717487174871764,-0.5735592187802325],[8.706687066870671,-0.5921335687489346],[8.717487174871764,-0.6005764550983486],[8.749887498874983,-0.6073307641778882],[8.746287462874648,-0.6157736505273022],[8.746287462874648,-0.6225279596068276],[8.746287462874648,-0.6275936914164788],[8.749887498874983,-0.6343480004960043],[8.771487714877168,-0.63265942322613],[8.785887858878596,-0.6579880822743718],[8.796687966879688,-0.6917596276720133],[8.800288002880023,-0.7339740594190829],[8.807488074880752,-0.747482677578148],[8.81468814688148,-0.7593027184673247],[8.829088290882908,-0.7643684502769759],[8.836288362883636,-0.7711227593565013],[8.839888398884,-0.7863199547854549],[8.843488434884364,-0.7998285729445058],[8.861488614886156,-0.804894304754157],[8.850688506885064,-0.7880085320553292],[8.854288542885428,-0.7711227593565013],[8.857888578885792,-0.7542369866576735],[8.861488614886156,-0.7339740594190829],[8.86508865088652,-0.7187768639901435],[8.879488794887948,-0.7187768639901435],[8.897488974889768,-0.7221540185299062],[8.91548915489156,-0.7238425957997947],[8.91548915489156,-0.717088286720255],[8.904689046890468,-0.712022554910618],[8.893888938889404,-0.7035796685612041],[8.886688866888676,-0.6934482049419017],[8.886688866888676,-0.6816281640527251],[8.893888938889404,-0.6748738549731996],[8.904689046890468,-0.6765624322430739],[8.929889298892988,-0.6866938958623763],[8.94068940689408,-0.7018910912913157],[8.947889478894808,-0.7187768639901435],[8.947889478894808,-0.7339740594190829],[8.958689586895872,-0.7542369866576735],[8.994689946899484,-0.7880085320553292],[9.005490054900548,-0.804894304754157],[9.005490054900548,-0.8251572319927476],[8.998289982899848,-0.8606173546602918],[9.005490054900548,-0.8741259728193569],[9.012690126901276,-0.8741259728193569],[9.01629016290164,-0.8555516228506406],[9.019890198902004,-0.7947628411348688],[9.023490234902368,-0.7761884911661525],[9.048690486904889,-0.7508598321179107],[9.052290522905224,-0.7339740594190829],[9.052290522905224,-0.720465441260032],[9.052290522905224,-0.7137111321804923],[9.052290522905224,-0.7103339776407296],[9.059490594905952,-0.7018910912913157],[9.06669066690668,-0.6985139367515529],[9.081090810908108,-0.6934482049419017],[9.088290882908836,-0.690071050402139],[9.088290882908836,-0.6799395867828366],[9.088290882908836,-0.66811954589366],[9.088290882908836,-0.659676659544246],[9.099090990909929,-0.6546109277345948],[9.113491134911357,-0.6816281640527251],[9.113491134911357,-0.6579880822743718],[9.099090990909929,-0.6427908868454182],[9.0918909189092,-0.6259051141465903],[9.099090990909929,-0.5988878778284743],[9.160291602916033,-0.5465419824621023],[9.178291782917825,-0.5110818597945723],[9.268292682926841,-0.41314437814136795],[9.293492934929361,-0.37430710093407527],[9.307893078930789,-0.33209266918700564],[9.304293042930425,-0.2037607966759225],[9.311493114931153,-0.18180929216744346],[9.336693366933673,-0.13790628315049958],[9.340293402934037,-0.117643355911909],[9.340293402934037,-0.10582331502271813],[9.347493474934765,-0.08556038778412756],[9.347493474934765,-0.07205176962507664],[9.343893438934401,-0.06360888327566272],[9.333093330933309,-0.038280224227420945],[9.333093330933309,-0.024771606068355823],[9.336693366933673,-0.01295156517917917],[9.343893438934401,-0.0028201015598767754],[9.343893438934401,0.0005570529798859525],[9.35109351093513,0.007311362059411408],[9.354693546935465,0.015754248408825333],[9.354693546935465,0.024197134758239258],[9.347493474934765,0.03264002110765318],[9.347493474934765,0.04108290745706711],[9.343893438934401,0.061345834695657686],[9.311493114931153,0.25046648892252676],[9.297092970929725,0.28423803432018246],[9.30069300693009,0.2926809206695964],[9.307893078930789,0.3196981569877124],[9.307893078930789,0.3247638887973636],[9.315093150931517,0.32814104333712635],[9.343893438934401,0.3551582796552566],[9.354693546935465,0.3585354341950193],[9.365493654936557,0.35178112511549386],[9.37629376293765,0.3315181978768891],[9.379893798937985,0.30787811609853577],[9.37629376293765,0.2876151888599452],[9.365493654936557,0.25046648892252676],[9.369093690936921,0.2386464480333501],[9.372693726937285,0.22682640714417346],[9.372693726937285,0.21838352079475953],[9.361893618936193,0.21669494352487106],[9.35829358293583,0.21162921171521987],[9.354693546935465,0.20149774809593168],[9.35829358293583,0.18967770720675503],[9.361893618936193,0.1812348208573411],[9.369093690936921,0.18967770720675503],[9.372693726937285,0.19812059355616896],[9.379893798937985,0.2048749026356944],[9.390693906939077,0.20825205717545714],[9.423094230942326,0.20825205717545714],[9.430294302943025,0.2048749026356944],[9.43389433894339,0.1913662844766293],[9.45909459094591,0.16603762542838751],[9.469894698947002,0.1474632754596854],[9.473494734947366,0.10862599825237851],[9.480694806948065,0.10356026644272731],[9.487894878948794,0.09849453463307611],[9.495094950949522,0.09849453463307611],[9.498694986949886,0.10862599825237851],[9.491494914949158,0.1525290072693224],[9.495094950949522,0.16941477996815024],[9.505895058950586,0.18798912993686656],[9.55269552695529,0.17448051177780144],[9.567095670956718,0.16772620269827598],[9.570695706957082,0.15590616180909933],[9.581495814958146,0.12213461641144363],[9.58509585095851,0.11200315279214124],[9.592295922959238,0.1187574618716809],[9.621096210962122,0.1474632754596854],[9.62829628296285,0.15421758453921086],[9.642696426964278,0.1525290072693224],[9.65349653496537,0.1474632754596854],[9.664296642966434,0.12720034822109483],[9.71109711097111,0.13564323457050875],[9.747097470974722,0.09849453463307611],[9.77949779497797,0.04952579380648103],[9.81189811898119,0.024197134758239258],[9.775897758977607,0.0900516482836764],[9.76149761497615,0.10862599825237851],[9.757897578975786,0.12551177095120636],[9.77949779497797,0.13395465730062028],[9.80469804698049,0.13395465730062028],[9.819098190981919,0.1187574618716809],[9.833498334983346,0.12720034822109483],[9.851498514985167,0.15084042999944813],[9.86229862298623,0.16097189361873632],[9.894698946989479,0.18292339812721536],[9.909099090990907,0.18798912993686656],[9.923499234992363,0.18798912993686656],[9.955899558995583,0.1761690890476899],[9.970299702997039,0.17448051177780144],[9.984699846998467,0.17448051177780144],[10.024300243002443,0.18798912993686656],[10.024300243002443,0.19474343901639202],[9.973899738997403,0.19474343901639202],[9.955899558995583,0.19980917082604321],[9.93789937899379,0.21669494352487106],[9.919899198991999,0.20656347990556867],[9.901899018990207,0.1964320162862805],[9.883898838988387,0.18967770720675503],[9.80469804698049,0.1863005526669781],[9.793897938979399,0.1812348208573411],[9.747097470974722,0.1964320162862805],[9.73629736297363,0.2048749026356944],[9.718297182971838,0.21838352079475953],[9.71109711097111,0.22344925260439652],[9.67869678696789,0.22176067533452226],[9.667896678966798,0.22682640714417346],[9.621096210962122,0.2622865298117034],[9.58509585095851,0.28423803432018246],[9.570695706957082,0.2977466524792476],[9.567095670956718,0.31800957971783816],[9.55989559895599,0.31800957971783816],[9.55269552695529,0.3061895388286615],[9.549095490954926,0.3028123842888846],[9.53469534695347,0.30450096155877304],[9.52749527495277,0.3028123842888846],[9.505895058950586,0.2926809206695964],[9.498694986949886,0.2909923433997079],[9.491494914949158,0.3028123842888846],[9.48429484294843,0.33827250695642874],[9.473494734947366,0.3450268160359542],[9.45909459094591,0.3602240114649078],[9.412294122941233,0.4699815340072746],[9.397893978939805,0.4885558839759909],[9.369093690936921,0.5206388521037582],[9.35109351093513,0.5290817384531721],[9.333093330933309,0.5273931611832836],[9.318693186931881,0.5290817384531721],[9.304293042930425,0.5442789338821115],[9.304293042930425,0.559476129311065],[9.307893078930789,0.6135106019473113],[9.315093150931517,0.625330642836488],[9.336693366933673,0.6287077973762507],[9.361893618936193,0.6337735291859019],[9.372693726937285,0.6371506837256646],[9.390693906939077,0.6489707246148413],[9.40149401494017,0.6540364564244925],[9.415894158941597,0.6557250336943667],[9.423094230942326,0.652347879154604],[9.43389433894339,0.6489707246148413],[9.448294482944846,0.647282147344967],[9.455494554945545,0.6489707246148413],[9.469894698947002,0.6591021882341437],[9.487894878948794,0.6658564973136691],[9.50229502295025,0.6759879609329715],[9.520295202952042,0.682742270012497],[9.538295382953834,0.6810536927426085],[9.556295562955626,0.6658564973136691],[9.563495634956354,0.6422164155353158],[9.55989559895599,0.6219534882967253],[9.541895418954198,0.6118220246774229],[9.498694986949886,0.6219534882967253],[9.47709477094773,0.6185763337569483],[9.462694626946274,0.5983134065183577],[9.487894878948794,0.6067562928677717],[9.516695166951678,0.6033791383280089],[9.538295382953834,0.5915590974388323],[9.545495454954562,0.564541861120702],[9.556295562955626,0.567919015660479],[9.567095670956718,0.5746733247400044],[9.570695706957082,0.5864933656291811],[9.574295742957446,0.5983134065183577],[9.58509585095851,0.5831162110894184],[9.588695886958874,0.5544103975014139],[9.581495814958146,0.5257045839134094],[9.574295742957446,0.5105073884844558],[9.581495814958146,0.48180157489645126],[9.592295922959238,0.47335868854703733],[9.606696066960666,0.4699815340072746],[9.60309603096033,0.485178729436214],[9.60309603096033,0.5054416566748188],[9.61029610296103,0.5223274293736466],[9.617496174961758,0.5307703157230605],[9.624696246962486,0.5392132020724603],[9.63549635496355,0.5831162110894184],[9.642696426964278,0.5983134065183577],[9.62829628296285,0.6185763337569483],[9.624696246962486,0.6388392609955531],[9.62829628296285,0.6878080018221482],[9.617496174961758,0.8060084107139289],[9.581495814958146,0.9005687378273706],[9.581495814958146,0.9242088196057239],[9.574295742957446,0.9410945923045517],[9.567095670956718,0.9512260559238399],[9.55989559895599,0.9630460968130308],[9.567095670956718,0.9833090240516213],[9.57789577895781,1.003571951290212],[9.592295922959238,1.0137034149095001],[9.606696066960666,1.017080569449277],[9.624696246962486,1.017080569449277],[9.642696426964278,1.022146301258914],[9.65349653496537,1.033966342148105],[9.66069660696607,1.0474749603071558],[9.667896678966798,1.0576064239264582],[9.68589685896859,1.060983578466221],[9.743497434974358,1.0592950011963325],[9.76149761497615,1.0542292693866955],[9.775897758977607,1.0322777648782164],[9.783097830978306,0.9900633331311468],[9.793897938979399,0.9681118286226678],[9.801098010980127,0.9849976013214956],[9.80469804698049,0.9985062194805607],[9.80469804698049,1.003571951290212],[9.80469804698049,1.0204577239890398],[9.797497974979763,1.0457863830372816],[9.797497974979763,1.0576064239264582],[9.808298082980826,1.0643607330059837],[9.819098190981919,1.0694264648156349],[9.833498334983346,1.0711150420855233],[9.847898478984803,1.0728036193553976],[9.840698406984075,1.0778693511650488],[9.829898298982982,1.0812465057048115],[9.815498154981555,1.0846236602445742],[9.801098010980127,1.0863122375144627],[9.793897938979399,1.0880008147843512],[9.768697686976878,1.1031980102132906],[9.75429754297545,1.1065751647530533],[9.714697146971474,1.096443701133751],[9.70389703897041,1.0998208556735278],[9.700297002970046,1.109952319292816],[9.70389703897041,1.1200837829121184],[9.71109711097111,1.1285266692615323],[9.718297182971838,1.1335924010711835],[9.700297002970046,1.1251495147217696],[9.675096750967526,1.1048865874831648],[9.657096570965706,1.0829350829747],[9.649896498965006,1.0694264648156349],[9.642696426964278,1.060983578466221],[9.61029610296103,1.0542292693866955],[9.58509585095851,1.0424092284975046],[9.574295742957446,1.0542292693866955],[9.55989559895599,1.1031980102132906],[9.55269552695529,1.1150180511024672],[9.541895418954198,1.1251495147217696],[9.523895238952406,1.1335924010711835],[9.505895058950586,1.1369695556109463],[9.495094950949522,1.1352809783410578],[9.480694806948065,1.1285266692615323],[9.448294482944846,1.1234609374518811],[9.419494194941961,1.109952319292816],[9.405094050940505,1.1065751647530533],[9.397893978939805,1.1116408965627045],[9.372693726937285,1.1369695556109463],[9.361893618936193,1.1471010192302344],[9.361893618936193,1.1572324828495368],[9.35829358293583,1.1656753691989508],[9.347493474934765,1.1808725646278901],[9.361893618936193,1.1876268737074298],[9.372693726937285,1.1994469145966065],[9.38349383493835,1.2146441100255458],[9.397893978939805,1.2653014281220294],[9.40869408694087,1.2838757780907315],[9.419494194941961,1.2923186644401454],[9.43389433894339,1.299072973519685],[9.448294482944846,1.3193359007582757],[9.45909459094591,1.3412874052667547],[9.462694626946274,1.3598617552354568],[9.462694626946274,1.3986990324427637],[9.466294662946638,1.413896227871703],[9.491494914949158,1.4274048460307682],[9.531095310953106,1.4628649686982982],[9.549095490954926,1.4848164732067772],[9.55269552695529,1.4865050504766657],[9.556295562955626,1.4915707822863027],[9.55989559895599,1.4966365140959539],[9.563495634956354,1.5033908231754936],[9.567095670956718,1.5135222867947817],[9.57789577895781,1.5422281003827862],[9.595895958959602,1.5726224912406792],[9.613896138961394,1.5878196866696186],[9.62829628296285,1.5844425321298559],[9.639096390963914,1.5726224912406792],[9.66069660696607,1.5658681821611538],[9.68589685896859,1.5692453367009165],[9.70389703897041,1.5776882230503304],[9.721897218972202,1.589508263939507],[9.743497434974358,1.5996397275587952],[9.725497254972566,1.5996397275587952],[9.682296822968226,1.5709339139707907],[9.664296642966434,1.575999645780442],[9.621096210962122,1.616525500257623],[9.606696066960666,1.6452313138456418],[9.617496174961758,1.6722485501637578],[9.675096750967526,1.7296601773397668],[9.67869678696789,1.7330373318795296],[9.68589685896859,1.7448573727687204],[9.689496894968954,1.7499231045783574],[9.71109711097111,1.7634317227374225],[9.718297182971838,1.7718746090868365],[9.721897218972202,1.778628918166362],[9.732697326973266,1.7988918454049667],[9.73629736297363,1.8056461544844922],[9.739897398973994,1.809023309024255],[9.743497434974358,1.8157776181037804],[9.747097470974722,1.8394176998821479],[9.750697506975087,1.8461720089616733],[9.75429754297545,1.8512377407713245],[9.757897578975786,1.8563034725809757],[9.765097650976514,1.866434936200264],[9.797497974979763,1.901895058867808],[9.808298082980826,1.9356666042654638],[9.80469804698049,1.976192458742645],[9.77949779497797,2.0589327449668957],[9.768697686976878,2.077507094935612],[9.765097650976514,2.085949981285026],[9.765097650976514,2.096081444904314],[9.765097650976514,2.1062129085236165],[9.772297722977243,2.112967217603142],[9.775897758977607,2.118032949412793],[9.77949779497797,2.1247872584923186],[9.78669786697867,2.248053399193765],[9.783097830978306,2.2700049037022296],[9.775897758977607,2.288579253670946],[9.768697686976878,2.310530758179425],[9.77949779497797,2.3274165308782386],[9.801098010980127,2.3409251490373038],[9.81189811898119,2.3527451899264804],[9.81189811898119,2.35949949900602],[9.819098190981919,2.376385271704848],[9.822698226982283,2.56212877139194],[9.851498514985167,2.697214952982563],[9.869498694986959,2.737740807459744],[9.873098730987323,2.754626580158572],[9.876698766987687,2.8812698753997665],[9.88749887498875,2.926861461686599],[9.901899018990207,2.9690758934336685],[9.923499234992363,2.997781707021673],[9.945099450994519,3.023110366069915],[9.955899558995583,3.050127602388045],[9.959499594995947,3.0822105705158123],[9.919899198991999,3.2274282157257232],[9.901899018990207,3.2510682975040766],[9.901899018990207,3.257822606583616],[9.91269912699127,3.257822606583616],[9.916299162991635,3.2595111838534905],[9.930699306993063,3.2645769156631417],[9.930699306993063,3.271331224742667],[9.91269912699127,3.269642647472793],[9.901899018990207,3.2730198020125556],[9.894698946989479,3.278085533822207],[9.88749887498875,3.2848398429017323],[9.880298802988023,3.2949713065210346],[9.855098550985502,3.3439400473476297],[9.77949779497797,3.436811797191183],[9.739897398973994,3.472271919858713],[9.642696426964278,3.5398150106540243],[9.664296642966434,3.543192165193787],[9.689496894968954,3.556700783352852],[9.772297722977243,3.6191781423385123],[9.793897938979399,3.6276210286879262],[9.819098190981919,3.6276210286879262],[9.78669786697867,3.6377524923072144],[9.757897578975786,3.6259324514180378],[9.732697326973266,3.60904667871921],[9.707497074970746,3.600603792369796],[9.639096390963914,3.5938494832902705],[9.624696246962486,3.600603792369796],[9.621096210962122,3.6124238332589726],[9.624696246962486,3.6259324514180378],[9.642696426964278,3.6343753377674517],[9.613896138961394,3.705295583102526],[9.563495634956354,3.7711500966279488],[9.55269552695529,3.7964787556761905],[9.545495454954562,3.820118837454544],[9.570695706957082,3.7947901784063163],[9.57789577895781,3.793101601136428],[9.581495814958146,3.7880358693267766],[9.588695886958874,3.7660843648182976],[9.595895958959602,3.757641478468898],[9.606696066960666,3.7525757466592466],[9.624696246962486,3.750887169389358],[9.664296642966434,3.750887169389358],[9.65349653496537,3.7559529011990094],[9.621096210962122,3.7643957875484233],[9.61029610296103,3.7711500966279488],[9.606696066960666,3.7745272511677115],[9.60309603096033,3.7795929829773627],[9.595895958959602,3.789724446596665],[9.588695886958874,3.8099873738352557],[9.592295922959238,3.8353160328834974],[9.60309603096033,3.8589561146618507],[9.621096210962122,3.87415331009079],[9.66069660696607,3.8403817646931486],[9.67869678696789,3.8353160328834974],[9.689496894968954,3.860644691931739],[9.721897218972202,3.8437589192329114],[9.73629736297363,3.833627455613609],[9.743497434974358,3.820118837454544],[9.750697506975087,3.8302503010738462],[9.750697506975087,3.8403817646931486],[9.747097470974722,3.850513228312437],[9.739897398973994,3.860644691931739],[9.750697506975087,3.860644691931739],[9.70389703897041,3.877530464630567],[9.682296822968226,3.891039082789618],[9.675096750967526,3.9096134327583343],[9.689496894968954,3.9231220509173994],[9.714697146971474,3.9315649372668133],[9.743497434974358,3.9366306690764503],[9.765097650976514,3.9366306690764503],[9.765097650976514,3.9400078236162273],[9.76149761497615,3.94338497815599],[9.757897578975786,3.9501392872355154],[9.76149761497615,3.951827864505404],[9.765097650976514,3.951827864505404],[9.765097650976514,3.956893596315055],[9.664296642966434,3.9400078236162273],[9.63549635496355,3.94338497815599],[9.617496174961758,3.960270750854818],[9.624696246962486,3.9855994099030596],[9.639096390963914,4.009239491681413],[9.66069660696607,4.019370955300715],[9.675096750967526,4.034568150729655],[9.718297182971838,4.098734086985189],[9.747097470974722,4.113931282414143],[9.750697506975087,4.118997014223794],[9.757897578975786,4.129128477843082],[9.75429754297545,4.135882786922622],[9.739897398973994,4.129128477843082],[9.718297182971838,4.115619859684017],[9.71109711097111,4.105488396064729],[9.70389703897041,4.093668355175552],[9.696696966969682,4.093668355175552],[9.696696966969682,4.113931282414143],[9.67869678696789,4.100422664255078],[9.646296462964642,4.0514539234284825],[9.62829628296285,4.031190996189892],[9.606696066960666,4.02105953257059],[9.57789577895781,4.012616646221176],[9.55989559895599,4.015993800760938],[9.55989559895599,4.039633882539306],[9.545495454954562,4.026125264380241],[9.52749527495277,4.036256727999529],[9.50949509495095,4.054831077968245],[9.498694986949886,4.076782582476724],[9.505895058950586,4.100422664255078],[9.491494914949158,4.115619859684017],[9.47709477094773,4.11055412787438],[9.45189451894521,4.080159737016487],[9.45189451894521,4.076782582476724],[9.455494554945545,4.071716850667073],[9.466294662946638,4.06833969612731],[9.473494734947366,4.066651118857422],[9.48429484294843,4.0598968097778965],[9.48429484294843,4.054831077968245],[9.495094950949522,4.031190996189892],[9.505895058950586,4.019370955300715],[9.523895238952406,4.00586233714165],[9.531095310953106,3.9889765644428223],[9.520295202952042,3.970402214474106],[9.505895058950586,3.975467946283757],[9.498694986949886,3.9771565235536457],[9.491494914949158,3.9805336780934084],[9.47709477094773,3.9906651417126966],[9.462694626946274,4.012616646221176],[9.45909459094591,4.015993800760938],[9.455494554945545,4.019370955300715],[9.45189451894521,4.022748109840478],[9.45189451894521,4.031190996189892],[9.437494374943753,4.031190996189892],[9.430294302943025,4.026125264380241],[9.423094230942326,4.019370955300715],[9.423094230942326,4.0075509144115244],[9.448294482944846,3.992353718982585],[9.455494554945545,3.983910832633171],[9.45909459094591,3.9720907917439945],[9.455494554945545,3.9636479053945806],[9.45189451894521,3.953516441775278],[9.45189451894521,3.9400078236162273],[9.45189451894521,3.9315649372668133],[9.469894698947002,3.9231220509173994],[9.47709477094773,3.9163677418378597],[9.462694626946274,3.9096134327583343],[9.448294482944846,3.9062362782185716],[9.412294122941233,3.902859123678809],[9.394293942939441,3.904547700948683],[9.35829358293583,3.912990587298097],[9.343893438934401,3.9163677418378597],[9.315093150931517,3.9315649372668133],[9.304293042930425,3.965336482664469],[9.307893078930789,4.0024851826018875],[9.32589325893261,4.026125264380241],[9.32589325893261,4.031190996189892],[9.30069300693009,4.026125264380241],[9.289892898928997,4.009239491681413],[9.282692826928269,3.992353718982585],[9.25029250292505,3.960270750854818],[9.221492214922165,3.965336482664469],[9.210692106921073,3.9636479053945806],[9.210692106921073,3.9822222553632827],[9.214292142921437,3.995730873522348],[9.210692106921073,4.0075509144115244],[9.196291962919645,4.019370955300715],[9.185491854918553,4.02105953257059],[9.16749167491676,4.02105953257059],[9.149491494914969,4.019370955300715],[9.138691386913877,4.015993800760938],[9.124291242912449,4.017682378030827],[9.070290702907045,4.0514539234284825],[8.983889838898392,4.091979777905664],[8.969489694896964,4.100422664255078],[8.969489694896964,4.129128477843082],[8.987489874898756,4.18822868228898],[8.99108991089912,4.216934495876984],[8.958689586895872,4.245640309464989],[8.937089370893716,4.279411854862644],[8.919089190891924,4.318249132069951],[8.893888938889404,4.4600896227400995],[8.901089010890104,4.485418281788327],[8.926289262892624,4.529321290805285],[8.937089370893716,4.552961372583638],[8.911889118891196,4.529321290805285],[8.901089010890104,4.520878404455871],[8.893888938889404,4.536075599884811],[8.897488974889768,4.547895640773987],[8.901089010890104,4.559715681663178],[8.904689046890468,4.573224299822229],[8.901089010890104,4.586732917981294],[8.893888938889404,4.595175804330708],[8.872288722887248,4.6019301134102335],[8.86508865088652,4.618815886109061],[8.857888578885792,4.630635926998252],[8.847088470884728,4.639078813347666],[8.839888398884,4.642455967887429],[8.836288362883636,4.628947349728364],[8.86508865088652,4.583355763441531],[8.872288722887248,4.559715681663178],[8.868688686886884,4.5445184862342245],[8.857888578885792,4.541141331694462],[8.850688506885064,4.547895640773987],[8.847088470884728,4.563092836202941],[8.800288002880023,4.6019301134102335],[8.796687966879688,4.588421495251183],[8.800288002880023,4.57829003163188],[8.803888038880388,4.569847145282466],[8.811088110881116,4.5664699907427035],[8.800288002880023,4.54282990896435],[8.796687966879688,4.539452754424573],[8.78948789487896,4.541141331694462],[8.767887678876804,4.552961372583638],[8.76428764287644,4.556338527123401],[8.757087570875711,4.564781413472815],[8.73908739087392,4.571535722552355],[8.724687246872463,4.579978608901769],[8.717487174871764,4.598552958870471],[8.706687066870671,4.634013081538015],[8.659886598865995,4.698179017793549],[8.656286562865631,4.738704872270745],[8.63828638286384,4.713376213222503],[8.645486454864567,4.6846703996344985],[8.659886598865995,4.6542760087766055],[8.685086850868515,4.561404258933052],[8.695886958869607,4.552961372583638],[8.706687066870671,4.547895640773987],[8.717487174871764,4.539452754424573],[8.721087210872128,4.512435518106457],[8.703087030870307,4.500615477217281],[8.577085770857707,4.492172590867867],[8.566285662856643,4.497238322677518],[8.569885698857007,4.5090583635666945],[8.584285842858435,4.52256698172576],[8.595085950859527,4.532698445345048],[8.580685806858071,4.537764177154699],[8.569885698857007,4.537764177154699],[8.562685626856279,4.532698445345048],[8.55548555485555,4.512435518106457],[8.548285482854823,4.507369786296806],[8.537485374853759,4.5090583635666945],[8.526685266852667,4.512435518106457],[8.508685086850875,4.527632713535397],[8.50508505085051,4.551272795313764],[8.508685086850875,4.568158568012592],[8.526685266852667,4.5664699907427035],[8.53028530285303,4.579978608901769],[8.551885518855187,4.615438731569299],[8.537485374853759,4.60530726795001],[8.526685266852667,4.603618690680122],[8.515885158851603,4.613750154299424],[8.512285122851239,4.628947349728364],[8.512285122851239,4.642455967887429],[8.519485194851967,4.65596458604648],[8.537485374853759,4.676227513285085],[8.566285662856643,4.696490440523675],[8.573485734857343,4.703244749603201],[8.573485734857343,4.716753367762266],[8.569885698857007,4.728573408651442],[8.566285662856643,4.740393449540619],[8.573485734857343,4.752213490429796],[8.580685806858071,4.74545918135027],[8.577085770857707,4.784296458557577],[8.577085770857707,4.804559385796168],[8.591485914859163,4.813002272145582],[8.595085950859527,4.814690849415456],[8.591485914859163,4.819756581225107],[8.584285842858435,4.824822313034758],[8.577085770857707,4.8265108903046325],[8.569885698857007,4.82313373576487],[8.559085590855915,4.814690849415456],[8.548285482854823,4.804559385796168],[8.544685446854487,4.796116499446754],[8.544685446854487,4.78767361309734],[8.533885338853395,4.7690992631286235],[8.53028530285303,4.758967799509335],[8.533885338853395,4.748836335890033],[8.537485374853759,4.733639140461094],[8.537485374853759,4.72519625411168],[8.53028530285303,4.708310481412852],[8.519485194851967,4.703244749603201],[8.50508505085051,4.706621904142963],[8.490684906849083,4.7116876359526145],[8.487084870848719,4.709999058682726],[8.476284762847627,4.708310481412852],[8.469084690846927,4.7116876359526145],[8.472684726847262,4.721819099571917],[8.476284762847627,4.728573408651442],[8.483484834848355,4.738704872270745],[8.483484834848355,4.748836335890033],[8.47988479884799,4.752213490429796],[8.472684726847262,4.750524913159921],[8.451084510845106,4.740393449540619],[8.440284402844043,4.738704872270745],[8.407884078840794,4.748836335890033],[8.407884078840794,4.7775421494780375],[8.418684186841887,4.813002272145582],[8.422284222842222,4.846773817543237],[8.415084150841523,4.846773817543237],[8.407884078840794,4.813002272145582],[8.386283862838638,4.796116499446754],[8.357483574835754,4.797805076716628],[8.332283322833234,4.8214451584949956],[8.335883358833598,4.824822313034758],[8.339483394833962,4.8349537766540465],[8.332283322833234,4.836642353923935],[8.310683106831078,4.846773817543237],[8.317883178831806,4.860282435702288],[8.307083070830714,4.872102476591465],[8.281882818828194,4.89236540383007],[8.256682566825674,4.905874021989121],[8.256682566825674,4.907562599259009],[8.249482494824946,4.922759794687948],[8.238682386823882,4.9447112991964275],[8.231482314823154,4.953154185545841],[8.220682206822062,4.956531340085604],[8.209882098820998,4.961597071895255],[8.195481954819542,4.973417112784432],[8.188281882818842,4.983548576403734],[8.181081810818114,4.991991462753148],[8.173881738817386,4.991991462753148],[8.173881738817386,4.985237153673609],[8.231482314823154,4.932891258307251],[8.242282422824246,4.916005485608423],[8.271082710827102,4.868725322051702],[8.274682746827466,4.845085240273349],[8.256682566825674,4.8349537766540465],[8.263882638826402,4.8214451584949956],[8.274682746827466,4.804559385796168],[8.285482854828558,4.791050767637103],[8.296282962829622,4.785985035827451],[8.30348303483035,4.7775421494780375],[8.321483214832142,4.733639140461094],[8.332283322833234,4.71844194503214],[8.32868328683287,4.7116876359526145],[8.321483214832142,4.6897361314441355],[8.317883178831806,4.679604667824847],[8.325083250832506,4.666096049665782],[8.332283322833234,4.659341740586257],[8.343083430834326,4.65596458604648],[8.35388353883539,4.649210276966954],[8.357483574835754,4.625570195188601],[8.339483394833962,4.612061577029536],[8.321483214832142,4.600241536140359],[8.310683106831078,4.583355763441531],[8.299882998829986,4.552961372583638],[8.289082890828922,4.547895640773987],[8.27828278282783,4.546207063504113],[8.235082350823518,4.546207063504113],[8.17748177481775,4.552961372583638],[8.094680946809461,4.552961372583638],[8.05148051480515,4.559715681663178],[8.033480334803357,4.55802710439329],[7.997479974799745,4.541141331694462],[7.979479794797953,4.539452754424573],[7.936279362793641,4.539452754424573],[7.763477634776365,4.519189827185983],[7.756277562775637,4.524255558995634],[7.74187741877418,4.525944136265522],[7.7310773107731166,4.52256698172576],[7.723877238772388,4.512435518106457],[7.734677346773481,4.512435518106457],[7.74187741877418,4.510746940836569],[7.7490774907749085,4.5090583635666945],[7.756277562775637,4.505681209026932],[7.734677346773481,4.498926899947392],[7.702277022770232,4.497238322677518],[7.673476734767348,4.502304054487155],[7.6626766267662845,4.51581267264622],[7.648276482764828,4.519189827185983],[7.55827558275584,4.525944136265522],[7.561875618756204,4.529321290805285],[7.561875618756204,4.532698445345048],[7.565475654756568,4.536075599884811],[7.572675726757268,4.539452754424573],[7.55827558275584,4.54282990896435],[7.547475474754748,4.541141331694462],[7.540275402754048,4.541141331694462],[7.536675366753684,4.552961372583638],[7.540275402754048,4.559715681663178],[7.547475474754748,4.563092836202941],[7.554675546755476,4.569847145282466],[7.55827558275584,4.579978608901769],[7.554675546755476,4.58504434071142],[7.536675366753684,4.608684422489773],[7.540275402754048,4.612061577029536],[7.543875438754384,4.622193040648838],[7.529475294752956,4.639078813347666],[7.53307533075332,4.664407472395894],[7.551075510755112,4.7116876359526145],[7.543875438754384,4.7116876359526145],[7.53307533075332,4.703244749603201],[7.529475294752956,4.698179017793549],[7.522275222752228,4.6897361314441355],[7.518675186751864,4.679604667824847],[7.518675186751864,4.664407472395894],[7.522275222752228,4.6542760087766055],[7.522275222752228,4.644144545157303],[7.515075150751528,4.6323245042681265],[7.515075150751528,4.625570195188601],[7.529475294752956,4.610372999759647],[7.529475294752956,4.6019301134102335],[7.529475294752956,4.598552958870471],[7.511475114751164,4.579978608901769],[7.500675006750072,4.573224299822229],[7.489874898749008,4.5664699907427035],[7.479074790747916,4.564781413472815],[7.468274682746824,4.573224299822229],[7.461074610746124,4.573224299822229],[7.453874538745396,4.552961372583638],[7.43227432274324,4.554649949853527],[7.3962739627396274,4.573224299822229],[7.371073710737107,4.5749128770921175],[7.345873458734587,4.579978608901769],[7.324273242732431,4.590110072521057],[7.3134731347313675,4.608684422489773],[7.306273062730639,4.603618690680122],[7.299072990729911,4.6019301134102335],[7.281072810728119,4.6019301134102335],[7.277472774727755,4.598552958870471],[7.277472774727755,4.591798649790945],[7.273872738727391,4.583355763441531],[7.263072630726327,4.579978608901769],[7.263072630726327,4.573224299822229],[7.270272702727027,4.569847145282466],[7.277472774727755,4.5664699907427035],[7.270272702727027,4.559715681663178],[7.284672846728483,4.554649949853527],[7.302673026730275,4.541141331694462],[7.327873278732795,4.536075599884811],[7.331473314733159,4.529321290805285],[7.331473314733159,4.520878404455871],[7.324273242732431,4.512435518106457],[7.281072810728119,4.505681209026932],[7.277472774727755,4.510746940836569],[7.252272522725235,4.54282990896435],[7.191071910719103,4.612061577029536],[7.180271802718039,4.6323245042681265],[7.180271802718039,4.659341740586257],[7.180271802718039,4.669473204205545],[7.173071730717311,4.669473204205545],[7.158671586715883,4.6627188951260194],[7.137071370713727,4.661030317856131],[7.133471334713363,4.6627188951260194],[7.126271262712635,4.672850358745308],[7.108271082710843,4.686358976904373],[7.097470974709751,4.696490440523675],[7.083070830708323,4.7420820268105075],[7.072270722707231,4.758967799509335],[7.072270722707231,4.748836335890033],[7.065070650706502,4.738704872270745],[7.061470614706167,4.731950563191205],[7.057870578705803,4.730261985921331],[7.061470614706167,4.7201305223020285],[7.065070650706502,4.71844194503214],[7.072270722707231,4.71844194503214],[7.079470794707959,4.7116876359526145],[7.0902709027090225,4.676227513285085],[7.097470974709751,4.661030317856131],[7.115471154711543,4.65596458604648],[7.147871478714791,4.64076739061754],[7.169471694716947,4.60530726795001],[7.173071730717311,4.573224299822229],[7.147871478714791,4.559715681663178],[7.158671586715883,4.551272795313764],[7.176671766717675,4.536075599884811],[7.183871838718403,4.519189827185983],[7.176671766717675,4.500615477217281],[7.151471514715155,4.470221086359388],[7.133471334713363,4.463466777279862],[7.111871118711207,4.471909663629276],[7.111871118711207,4.4567124682003225],[7.111871118711207,4.4516467363906855],[7.093870938709387,4.4600896227400995],[7.079470794707959,4.470221086359388],[7.075870758707595,4.485418281788327],[7.079470794707959,4.505681209026932],[7.065070650706502,4.492172590867867],[7.061470614706167,4.476975395438927],[7.0686706867068665,4.458401045470211],[7.079470794707959,4.443203850041272],[7.050670506705075,4.436449540961732],[7.043470434704346,4.436449540961732],[7.032670326703283,4.4600896227400995],[7.0254702547025545,4.485418281788327],[7.02187021870219,4.536075599884811],[7.0074700747007626,4.563092836202941],[7.0038700387003985,4.579978608901769],[7.014670146701462,4.586732917981294],[7.018270182701826,4.595175804330708],[7.02187021870219,4.613750154299424],[7.0254702547025545,4.635701658807889],[7.02187021870219,4.649210276966954],[7.0290702907029186,4.645833122427192],[7.036270362703647,4.644144545157303],[7.043470434704346,4.642455967887429],[7.036270362703647,4.6542760087766055],[7.018270182701826,4.676227513285085],[7.014670146701462,4.686358976904373],[7.0074700747007626,4.708310481412852],[7.0038700387003985,4.71844194503214],[6.9858698586986065,4.691424708714024],[6.978669786697878,4.693113285983912],[6.975069750697514,4.708310481412852],[6.964269642696422,4.730261985921331],[6.957069570695722,4.715064790492377],[6.9606696066960865,4.691424708714024],[6.957069570695722,4.68298182236461],[6.967869678696786,4.667784626935671],[6.989469894698942,4.608684422489773],[6.978669786697878,4.608684422489773],[6.97146971469715,4.608684422489773],[6.967869678696786,4.613750154299424],[6.964269642696422,4.622193040648838],[6.957069570695722,4.618815886109061],[6.949869498694994,4.615438731569299],[6.939069390693902,4.634013081538015],[6.928269282692838,4.650898854236843],[6.899468994689954,4.68298182236461],[6.903069030690318,4.666096049665782],[6.906669066690682,4.6542760087766055],[6.92106921069211,4.628947349728364],[6.928269282692838,4.618815886109061],[6.931869318693202,4.612061577029536],[6.935469354693566,4.60530726795001],[6.931869318693202,4.595175804330708],[6.924669246692474,4.591798649790945],[6.92106921069211,4.58504434071142],[6.928269282692838,4.573224299822229],[6.939069390693902,4.588421495251183],[6.957069570695722,4.59348722706082],[6.975069750697514,4.590110072521057],[6.9822698226982425,4.576601454362006],[6.975069750697514,4.507369786296806],[6.975069750697514,4.483729704518453],[7.011070110701127,4.414498036453267],[7.0254702547025545,4.397612263754439],[7.02187021870219,4.389169377405025],[7.014670146701462,4.379037913785723],[7.0074700747007626,4.373972181976072],[6.993069930699306,4.37566075924596],[6.9822698226982425,4.380726491055611],[6.964269642696422,4.389169377405025],[6.964269642696422,4.385792222865248],[6.967869678696786,4.380726491055611],[6.967869678696786,4.373972181976072],[6.94626946269463,4.380726491055611],[6.924669246692474,4.3908579546749],[6.903069030690318,4.395923686484551],[6.881468814688162,4.387480800135137],[6.867068670686706,4.3993008410243135],[6.859868598686006,4.416186613723141],[6.859868598686006,4.433072386421969],[6.867068670686706,4.4516467363906855],[6.849068490684914,4.4600896227400995],[6.834668346683486,4.485418281788327],[6.823868238682394,4.5175012499161085],[6.82026820268203,4.54282990896435],[6.82026820268203,4.561404258933052],[6.823868238682394,4.571535722552355],[6.831068310683122,4.57829003163188],[6.838268382683822,4.586732917981294],[6.84546845468455,4.5968643816005965],[6.849068490684914,4.613750154299424],[6.84546845468455,4.628947349728364],[6.827468274682758,4.635701658807889],[6.802268022680238,4.649210276966954],[6.784267842678446,4.68298182236461],[6.76986769867699,4.74545918135027],[6.766267662676626,4.7690992631286235],[6.76986769867699,4.782607881287689],[6.780667806678082,4.796116499446754],[6.787867878678782,4.80793654033593],[6.784267842678446,4.816379426685344],[6.777067770677718,4.818068003955219],[6.7626676266762615,4.806247963066042],[6.755467554675562,4.818068003955219],[6.751867518675198,4.824822313034758],[6.748267482674834,4.8349537766540465],[6.7410674106741055,4.8298880448444095],[6.733867338673406,4.828199467574521],[6.723067230672314,4.8298880448444095],[6.7158671586715855,4.8349537766540465],[6.7194671946719495,4.818068003955219],[6.723067230672314,4.7994936539865165],[6.726667266672678,4.784296458557577],[6.7410674106741055,4.779230726747926],[6.748267482674834,4.772476417668386],[6.755467554675562,4.753902067699684],[6.7626676266762615,4.71844194503214],[6.766267662676626,4.679604667824847],[6.773467734677354,4.6627188951260194],[6.780667806678082,4.65596458604648],[6.79506795067951,4.649210276966954],[6.805868058680602,4.634013081538015],[6.823868238682394,4.6019301134102335],[6.802268022680238,4.581667186171643],[6.798667986679874,4.573224299822229],[6.79506795067951,4.559715681663178],[6.816668166681666,4.461778200009974],[6.827468274682758,4.431383809152081],[6.838268382683822,4.416186613723141],[6.838268382683822,4.392546531944788],[6.856268562685642,4.37566075924596],[6.87066870668707,4.360463563817021],[6.84546845468455,4.346954945657956],[6.813068130681302,4.3418892138483045],[6.773467734677354,4.338512059308542],[6.7374673746737415,4.3418892138483045],[6.7158671586715855,4.35539783200737],[6.712267122671221,4.3689064501664205],[6.7158671586715855,4.428006654612318],[6.7194671946719495,4.434760963691858],[6.723067230672314,4.439826695501495],[6.7194671946719495,4.444892427311146],[6.712267122671221,4.45333531366056],[6.708667086670886,4.4567124682003225],[6.708667086670886,4.492172590867867],[6.712267122671221,4.507369786296806],[6.733867338673406,4.568158568012592],[6.7374673746737415,4.57829003163188],[6.7374673746737415,4.608684422489773],[6.7158671586715855,4.58504434071142],[6.701467014670158,4.54282990896435],[6.6942669426694295,4.497238322677518],[6.701467014670158,4.463466777279862],[6.6978669786697935,4.455023890930448],[6.6978669786697935,4.436449540961732],[6.6942669426694295,4.422940922802681],[6.687066870668701,4.444892427311146],[6.683466834668366,4.458401045470211],[6.679866798668002,4.520878404455871],[6.6762667626676375,4.532698445345048],[6.669066690666909,4.525944136265522],[6.665466654666545,4.520878404455871],[6.661866618666181,4.51581267264622],[6.6546665466654815,4.512435518106457],[6.658266582665846,4.497238322677518],[6.661866618666181,4.4516467363906855],[6.665466654666545,4.434760963691858],[6.6762667626676375,4.412809459183379],[6.683466834668366,4.394235109214662],[6.6942669426694295,4.358774986547132],[6.6942669426694295,4.346954945657956],[6.687066870668701,4.336823482038653],[6.6762667626676375,4.333446327498891],[6.647466474664753,4.333446327498891],[6.618666186661869,4.330069172959128],[6.611466114661141,4.336823482038653],[6.600666006660077,4.3689064501664205],[6.597065970659713,4.3993008410243135],[6.600666006660077,4.444892427311146],[6.597065970659713,4.482041127248564],[6.579065790657921,4.507369786296806],[6.550265502655037,4.505681209026932],[6.579065790657921,4.482041127248564],[6.589865898658985,4.448269581850909],[6.586265862658621,4.407743727373727],[6.571865718657193,4.3689064501664205],[6.568265682656829,4.335134904768779],[6.521465214652153,4.323314863879588],[6.460264602646021,4.328380595689239],[6.435064350643501,4.346954945657956],[6.420664206642073,4.345266368388067],[6.406264062640645,4.340200636578416],[6.417064170641709,4.321626286609714],[6.399063990639917,4.316560554800063],[6.373863738637397,4.314871977530174],[6.355863558635605,4.309806245720537],[6.337863378633784,4.301363359371123],[6.291062910629108,4.299674782101235],[6.269462694626952,4.292920473021709],[6.247862478624796,4.3199377093398255],[6.265862658626588,4.362152141086895],[6.33426334263342,4.436449540961732],[6.319863198631992,4.43813811823162],[6.312663126631264,4.439826695501495],[6.305463054630565,4.439826695501495],[6.298262982629836,4.436449540961732],[6.262262622626224,4.395923686484551],[6.25866258662586,4.449958159120797],[6.244262442624432,4.497238322677518],[6.237062370623704,4.497238322677518],[6.23346233462334,4.478663972708802],[6.237062370623704,4.45333531366056],[6.240662406624068,4.428006654612318],[6.247862478624796,4.409432304643616],[6.240662406624068,4.419563768262904],[6.229862298623004,4.4296952318822065],[6.219062190621912,4.439826695501495],[6.20106201062012,4.443203850041272],[6.211862118621184,4.419563768262904],[6.222662226622276,4.404366572833965],[6.229862298623004,4.387480800135137],[6.229862298623004,4.362152141086895],[6.222662226622276,4.3418892138483045],[6.215462154621548,4.326692018419365],[6.20826208262082,4.323314863879588],[6.20106201062012,4.3199377093398255],[6.193861938619392,4.314871977530174],[6.193861938619392,4.299674782101235],[6.20106201062012,4.304740513910886],[6.20826208262082,4.304740513910886],[6.222662226622276,4.299674782101235],[6.215462154621548,4.291231895751821],[6.190261902619028,4.281100432132533],[6.15066150661508,4.279411854862644],[6.12546125461256,4.28616616394217],[6.121861218612196,4.281100432132533],[6.118261182611832,4.276034700322882],[6.111061110611104,4.272657545783119],[6.096660966609676,4.277723277592756],[6.089460894608948,4.287854741212058],[6.085860858608584,4.303051936640998],[6.085860858608584,4.3199377093398255],[6.089460894608948,4.336823482038653],[6.103861038610404,4.360463563817021],[6.103861038610404,4.373972181976072],[6.10026100261004,4.3722836047061975],[6.089460894608948,4.370595027436309],[6.085860858608584,4.3689064501664205],[6.085860858608584,4.384103645595374],[6.089460894608948,4.41112088191349],[6.078660786607884,4.412809459183379],[6.067860678606792,4.414498036453267],[6.0570605706056995,4.419563768262904],[6.042660426604272,4.416186613723141],[6.0390603906039075,4.406055150103853],[6.042660426604272,4.3908579546749],[6.046260462604636,4.3773493365158345],[6.049860498605,4.3689064501664205],[6.046260462604636,4.35539783200737],[6.053460534605364,4.343577791118193],[6.0606606066060635,4.331757750229002],[6.064260642606428,4.316560554800063],[6.0606606066060635,4.294609050291584],[6.053460534605364,4.296297627561472],[6.042660426604272,4.3064290911807745],[6.028260282602844,4.3131834002603],[6.006660066600659,4.314871977530174],[5.9958599585995955,4.3199377093398255],[5.9958599585995955,4.35539783200737],[6.003060030600324,4.357086409277244],[6.003060030600324,4.358774986547132],[5.988659886598867,4.379037913785723],[5.988659886598867,4.382415068325486],[5.988659886598867,4.3993008410243135],[5.988659886598867,4.416186613723141],[5.981459814598139,4.416186613723141],[5.9742597425974395,4.382415068325486],[5.9706597065970755,4.385792222865248],[5.956259562595619,4.395923686484551],[5.9706597065970755,4.362152141086895],[5.9742597425974395,4.345266368388067],[5.959859598595983,4.333446327498891],[5.945459454594555,4.335134904768779],[5.931059310593099,4.345266368388067],[5.916659166591671,4.35539783200737],[5.909459094590943,4.362152141086895],[5.891458914589151,4.3689064501664205],[5.866258662586631,4.387480800135137],[5.855458554585539,4.41112088191349],[5.866258662586631,4.436449540961732],[5.855458554585539,4.43813811823162],[5.848258482584839,4.434760963691858],[5.844658446584475,4.428006654612318],[5.844658446584475,4.416186613723141],[5.837458374583747,4.416186613723141],[5.823058230582319,4.433072386421969],[5.783457834578343,4.4567124682003225],[5.769057690576915,4.471909663629276],[5.776257762577643,4.466843931819625],[5.790657906579071,4.461778200009974],[5.797857978579799,4.4567124682003225],[5.790657906579071,4.470221086359388],[5.776257762577643,4.475286818169039],[5.765457654576551,4.478663972708802],[5.751057510575123,4.483729704518453],[5.7294572945729385,4.507369786296806],[5.722257222572239,4.5175012499161085],[5.693456934569355,4.546207063504113],[5.6862568625686265,4.549584218043876],[5.596255962559638,4.635701658807889],[5.567455674556754,4.674538936015196],[5.556655566555662,4.71844194503214],[5.560255602556026,4.716753367762266],[5.56385563855639,4.715064790492377],[5.571055710557118,4.7116876359526145],[5.571055710557118,4.730261985921331],[5.527855278552806,4.757279222239447],[5.517055170551714,4.775853572208163],[5.509855098550986,4.791050767637103],[5.484654846548466,4.8349537766540465],[5.473854738547402,4.846773817543237],[5.509855098550986,4.8265108903046325],[5.502655026550286,4.850150972083],[5.470254702547038,4.8872996720204185],[5.441454414544154,4.964974226435018],[5.430654306543062,5.01056581272185],[5.427054270542726,5.025763008150804],[5.41265412654127,5.05278024446892],[5.409054090540906,5.067977439897859],[5.405454054540542,5.084863212596687],[5.401854018540206,5.091617521676227],[5.394653946539478,5.100060408025641],[5.391053910539114,5.110191871644929],[5.38745387453875,5.125389067073883],[5.391053910539114,5.137209107963059],[5.401854018540206,5.1422748397727105],[5.419854198541998,5.140586262502822],[5.434254342543426,5.135520530693171],[5.445054450544518,5.127077644343757],[5.46305463054631,5.101748985295515],[5.473854738547402,5.09499467621599],[5.459454594545946,5.133831953423297],[5.455854558545582,5.149029148852236],[5.473854738547402,5.1473405715823475],[5.495454954549558,5.1422748397727105],[5.48825488254883,5.154094880661887],[5.459454594545946,5.184489271519766],[5.452254522545246,5.189555003329417],[5.448654486544882,5.186177848789654],[5.448654486544882,5.167603498820938],[5.445054450544518,5.164226344281175],[5.434254342543426,5.162537767011301],[5.427054270542726,5.162537767011301],[5.41265412654127,5.15747203520165],[5.401854018540206,5.162537767011301],[5.376653766537686,5.15747203520165],[5.365853658536594,5.164226344281175],[5.36225362253623,5.170980653360715],[5.365853658536594,5.208129353298133],[5.36225362253623,5.253720939584966],[5.340653406534074,5.343215534888742],[5.344253442534438,5.356724153047807],[5.369453694536958,5.361789884857458],[5.434254342543426,5.363478462127333],[5.455854558545582,5.368544193936984],[5.455854558545582,5.36010130758757],[5.459454594545946,5.353346998508044],[5.466654666546674,5.341526957618868],[5.477454774547766,5.346592689428505],[5.484654846548466,5.361789884857458],[5.48825488254883,5.368544193936984],[5.495454954549558,5.373609925746635],[5.527855278552806,5.3871185439057],[5.545855458554598,5.388807121175574],[5.560255602556026,5.388807121175574],[5.571055710557118,5.382052812096049],[5.578255782557818,5.382052812096049],[5.571055710557118,5.393872852985226],[5.545855458554598,5.415824357493705],[5.53865538655387,5.431021552922644],[5.531455314553142,5.444530171081709],[5.531455314553142,5.461415943780537],[5.535055350553506,5.476613139209476],[5.53865538655387,5.488433180098653],[5.553055530555298,5.496876066448067],[5.567455674556754,5.50025322098783],[5.603456034560338,5.498564643717955],[5.61425614256143,5.505318952797481],[5.625056250562523,5.5171389936866575],[5.63945639456395,5.540779075465025],[5.625056250562523,5.534024766385485],[5.610656106561066,5.522204725496309],[5.596255962559638,5.513761839146895],[5.578255782557818,5.520516148226434],[5.574655746557482,5.515450416416783],[5.567455674556754,5.510384684607132],[5.56385563855639,5.505318952797481],[5.542255422554234,5.510384684607132],[5.517055170551714,5.498564643717955],[5.502655026550286,5.476613139209476],[5.509855098550986,5.451284480161235],[5.499054990549922,5.425955821112993],[5.484654846548466,5.410758625684053],[5.470254702547038,5.407381471144291],[5.448654486544882,5.417512934763579],[5.441454414544154,5.4242672438431185],[5.441454414544154,5.4293329756527555],[5.434254342543426,5.434398707462407],[5.423454234542362,5.436087284732295],[5.419854198541998,5.431021552922644],[5.419854198541998,5.417512934763579],[5.427054270542726,5.404004316604528],[5.434254342543426,5.395561430255114],[5.376653766537686,5.398938584794877],[5.261452614526149,5.436087284732295],[5.257852578525785,5.441153016541946],[5.254252542525421,5.452973057431123],[5.2506525065250855,5.458038789240774],[5.218252182521837,5.486744602828779],[5.196651966519681,5.501941798257718],[5.189451894518953,5.522204725496309],[5.189451894518953,5.544156230004788],[5.189451894518953,5.554287693624076],[5.196651966519681,5.557664848163853],[5.214652146521473,5.574550620862681],[5.221852218522201,5.581304929942206],[5.229052290522901,5.582993507212095],[5.329853298532981,5.5779277754024434],[5.365853658536594,5.572862043592792],[5.38745387453875,5.561042002703616],[5.391053910539114,5.561042002703616],[5.401854018540206,5.574550620862681],[5.419854198541998,5.610010743530211],[5.427054270542726,5.621830784419387],[5.441454414544154,5.6268965162290385],[5.455854558545582,5.6268965162290385],[5.470254702547038,5.623519361689276],[5.481054810548102,5.615076475339862],[5.484654846548466,5.608322166260322],[5.48825488254883,5.586370661751857],[5.491854918549194,5.581304929942206],[5.502655026550286,5.581304929942206],[5.509855098550986,5.584682084481969],[5.509855098550986,5.591436393561494],[5.509855098550986,5.601567857180797],[5.502655026550286,5.616765052609736],[5.484654846548466,5.633650825308564],[5.46305463054631,5.648848020737518],[5.448654486544882,5.655602329817043],[5.427054270542726,5.655602329817043],[5.419854198541998,5.645470866197755],[5.405454054540542,5.615076475339862],[5.394653946539478,5.606633588990448],[5.3802538025380215,5.598190702641034],[5.36225362253623,5.593124970831383],[5.344253442534438,5.594813548101271],[5.326253262532646,5.6049450117205595],[5.319053190531918,5.620142207149513],[5.319053190531918,5.637027979848341],[5.3370533705337095,5.691062452484587],[5.340653406534074,5.706259647913527],[5.3370533705337095,5.724833997882229],[5.329853298532981,5.724833997882229],[5.304653046530461,5.650536598007392],[5.2938529385293975,5.630273670768801],[5.279452794527941,5.616765052609736],[5.261452614526149,5.610010743530211],[5.239852398523993,5.608322166260322],[5.229052290522901,5.6049450117205595],[5.203852038520381,5.591436393561494],[5.178651786517861,5.582993507212095],[5.175051750517525,5.584682084481969],[5.160651606516069,5.594813548101271],[5.146251462514641,5.608322166260322],[5.128251282512821,5.628585093498927],[5.117451174511757,5.648848020737518],[5.106651066510665,5.677553834325522],[5.099450994509965,5.691062452484587],[5.088650886508873,5.707948225183401],[5.085050850508509,5.731588306961768],[5.088650886508873,5.751851234200359],[5.092250922509237,5.775491315978712],[5.103051030510301,5.79237708867754],[5.113851138511393,5.800819975026954],[5.128251282512821,5.797442820487191],[5.146251462514641,5.780557047788363],[5.153451534515341,5.778868470518475],[5.160651606516069,5.785622779598015],[5.157051570515705,5.794065665947429],[5.153451534515341,5.804197129566717],[5.153451534515341,5.814328593186019],[5.185851858518589,5.841345829504135],[5.2686526865268775,5.871740220362028],[5.2902529025290335,5.910577497569335],[5.2686526865268775,5.907200343029572],[5.236252362523629,5.875117374901791],[5.196651966519681,5.863297334012614],[5.121051210512121,5.824460056805307],[5.106651066510665,5.814328593186019],[5.056250562505625,5.767048429629298],[5.045450454504561,5.767048429629298],[5.0058500585005845,5.849788715853549],[4.887048870488712,6.006826401952651],[4.865448654486556,6.025400751921353],[4.82584825848258,6.042286524620181],[4.807848078480788,6.0625494518587715],[4.782647826478268,6.103075306335953],[4.746647466474684,6.138535429003497],[4.7178471784718,6.163864088051739],[4.64224642246424,6.211144251608445],[4.6098460984609915,6.23140717884705],[4.548645486454859,6.288818806023059],[4.509045090450911,6.314147465071301],[4.494644946449483,6.320901774150826],[4.404644046440467,6.358050474088245],[4.343443434434363,6.369870514977421],[4.127441274412746,6.410396369454617],[3.871838718387181,6.4323478739630815],[3.44343443434434,6.410396369454617],[3.421834218342184,6.413773523994379],[3.407434074340756,6.422216410343793],[3.400234002340028,6.43403645123297],[3.3858338583386,6.444167914852258],[3.3930339303393,6.449233646661909],[3.400234002340028,6.450922223931798],[3.407434074340756,6.449233646661909],[3.414634146341456,6.444167914852258],[3.429034290342912,6.459365110281212],[3.432634326343276,6.452610801201672],[3.43623436234364,6.439102183042621],[3.439834398343976,6.423904987613668],[3.475834758347588,6.455987955741449],[3.479434794347952,6.4542993784715605],[3.4830348303483163,6.447545069392035],[3.49383493834938,6.445856492122147],[3.5046350463504723,6.450922223931798],[3.5226352263522642,6.452610801201672],[3.540635406354056,6.4542993784715605],[3.5550355503555124,6.4627422648209745],[3.5694356943569403,6.477939460249914],[3.5730357303573044,6.4897595011390905],[3.5694356943569403,6.499890964758393],[3.5694356943569403,6.510022428377695],[3.5802358023580325,6.513399582917458],[3.6198361983619805,6.513399582917458],[3.6414364143641365,6.516776737457221],[3.688236882368841,6.530285355616286],[3.6990369903699047,6.526908201076523],[3.724237242372425,6.535351087425923],[3.7422374223742167,6.547171128315114],[3.756637566375673,6.564056901013942],[3.763837638376401,6.584319828252532],[3.774637746377465,6.589385560062183],[3.8574385743857533,6.602894178221234],[3.850238502385025,6.6079599100308855],[3.843038430384297,6.611337064570648],[3.8394383943839614,6.611337064570648],[3.8322383223832333,6.609648487300774],[3.774637746377465,6.623157105459825],[3.7170371703716967,6.60120560095136],[3.663036630366321,6.570811210093467],[3.6162361623616164,6.553925437394639],[3.5982359823598244,6.553925437394639],[3.5874358743587607,6.552236860124751],[3.5514355143551484,6.533662510156049],[3.540635406354056,6.530285355616286],[3.5298352983529924,6.528596778346397],[3.515435154351536,6.526908201076523],[3.5118351183512004,6.530285355616286],[3.5010350103501082,6.533662510156049],[3.4866348663486804,6.533662510156049],[3.4830348303483163,6.5387282419657],[3.479434794347952,6.5421053965054625],[3.475834758347588,6.553925437394639],[3.472234722347224,6.567434055553704],[3.479434794347952,6.587696982792295],[3.479434794347952,6.602894178221234],[3.465034650346496,6.592762714601946],[3.450634506345068,6.580942673712769],[3.429034290342912,6.557302591934402],[3.421834218342184,6.553925437394639],[3.41103411034112,6.553925437394639],[3.403834038340392,6.552236860124751],[3.400234002340028,6.543793973775337],[3.400234002340028,6.537039664695811],[3.403834038340392,6.521842469266872],[3.407434074340756,6.513399582917458],[3.400234002340028,6.501579542028281],[3.3894338943389357,6.481316614789677],[3.3858338583386,6.4694965739005],[3.382233822338236,6.461053687551086],[3.375033750337508,6.455987955741449],[3.371433714337144,6.449233646661909],[3.375033750337508,6.440790760312495],[3.378633786337872,6.435725028502844],[3.382233822338236,6.430659296693207],[3.3858338583386,6.425593564883556],[3.3894338943389357,6.420527833073905],[3.3858338583386,6.3968877512955515],[3.3246332463324677,6.3918220194859],[3.2130321303213236,6.3968877512955515],[3.083430834308359,6.381690555866598],[2.9286292862928747,6.388444864946138],[2.705427054270558,6.368181937707547],[2.701827018270194,6.368181937707547],[2.305823058230601,6.331033237770129],[2.2266222662226767,6.314147465071301],[1.8846188461884594,6.275310187863994],[1.6182161821618308,6.214521406148222],[1.431014310143098,6.182438438020441],[1.272612726127278,6.133469697193846],[1.2006120061200818,6.103075306335953],[1.1898118981189896,6.101386729066078],[1.1862118621186255,6.09969815179619],[1.1790117901178974,6.098009574526316],[1.1322113221132213,6.074369492747948],[1.0998109981100015,6.047352256429832],[1.0494104941049613,5.993317783793586],[1.035010350103505,5.9747434338248695],[1.013410134101349,5.925774692998274],[1.006210062100621,5.907200343029572],[1.006210062100621,5.885248838521093],[0.9954099540995571,5.839657252234261],[0.988209882098829,5.821082902265545],[0.9558095580955808,5.790688511407666],[0.9126091260912688,5.777179893248601],[0.7218072180722004,5.755228388740122],[0.3654036540365553,5.782245625058252],[0.32220322203221485,5.778868470518475],[0.2970029700296948,5.773802738708838],[0.286202862028631,5.768737006899187],[0.2826028260282669,5.763671275089536],[0.2754027540275388,5.760294120549773],[0.2502025020250187,5.758605543279884],[0.24300243002431898,5.75691696601001],[0.22500225002249863,5.743408347850945],[0.15660156601566655,5.724833997882229],[0.1422014220142387,5.7147025342629405],[0.11340113401135454,5.689373875214699],[0.07740077400774226,5.677553834325522],[0.0630006300063144,5.6623566388965685],[0.05220052200522218,5.645470866197755],[0.03420034200343025,5.628585093498927],[-0.0018000180001820354,5.616765052609736],[-0.04500045000449404,5.601567857180797],[-0.04860048600485811,5.598190702641034],[-0.06300063000628597,5.586370661751857],[-0.07020070200701412,5.581304929942206],[-0.07740077400774226,5.5779277754024434],[-0.09180091800917012,5.576239198132555],[-0.307803078030787,5.507007530067369],[-0.35460354603546307,5.501941798257718],[-0.35820358203582714,5.498564643717955],[-0.372603726037255,5.493498911908304],[-0.44460444604445115,5.431021552922644],[-0.4518045180451793,5.420890089303356],[-0.45900459004590743,5.404004316604528],[-0.4698046980469712,5.390495698445463],[-0.5058050580505835,5.368544193936984],[-0.5778057780577797,5.351658421238156],[-0.5886058860588435,5.351658421238156],[-0.5958059580595716,5.3449041121586305],[-0.6138061380613635,5.331395493999565],[-0.6282062820628198,5.326329762189914],[-0.6390063900638836,5.341526957618868],[-0.6894068940689237,5.304378257681449],[-0.70380703807038,5.299312525871798],[-0.7614076140761483,5.252032362315077],[-0.7830078300783043,5.225015125996961],[-0.8010080100800963,5.214883662377659],[-0.8730087300872924,5.2047521987583565],[-0.8982089820898125,5.2047521987583565],[-0.9126091260912403,5.218260816917422],[-0.9198091980919685,5.209817930568008],[-0.9270092700926966,5.206440776028245],[-0.9522095220952167,5.2047521987583565],[-0.9774097740977368,5.197997889678831],[-0.9882098820988006,5.197997889678831],[-0.9918099180991646,5.208129353298133],[-0.9954099540995287,5.216572239647547],[-1.006210062100621,5.214883662377659],[-1.0170101701016847,5.2047521987583565],[-1.035010350103505,5.203063621488482],[-1.049410494104933,5.197997889678831],[-1.1538115381153773,5.154094880661887],[-1.164611646116441,5.1388976852329336],[-1.1754117541175333,5.13045479888352],[-1.1934119341193252,5.118634757994343],[-1.2330123301233016,5.100060408025641],[-1.2546125461254576,5.096683253485864],[-1.3194131941319256,5.09499467621599],[-1.3302133021330178,5.091617521676227],[-1.3518135181351738,5.078108903517162],[-1.362613626136266,5.073043171707511],[-1.3734137341373298,5.073043171707511],[-1.3950139501394858,5.074731748977399],[-1.405814058140578,5.073043171707511],[-1.42381423814237,5.067977439897859],[-1.4598145981459822,5.049403089929157],[-1.5282152821528143,5.039271626309855],[-1.5534155341553344,5.030828739960441],[-1.5678156781567623,5.019008699071264],[-1.5822158221582185,5.025763008150804],[-1.6002160021600105,5.027451585420678],[-1.6182161821618024,5.022385853611027],[-1.6326163261632587,5.012254389991739],[-1.6326163261632587,5.003811503642325],[-1.6254162541625305,4.99030288548326],[-1.6290162901628946,4.981859999133846],[-1.6326163261632587,4.9751056900543205],[-1.6398163981639868,4.970039958244669],[-1.708217082170819,4.936268412847014],[-1.7190171901718827,4.9278255264976],[-1.7478174781747668,4.895742558369832],[-1.751417514175131,4.888988249290293],[-1.7478174781747668,4.882233940210767],[-1.7478174781747668,4.877168208401116],[-1.758617586175859,4.875479631131242],[-1.7658176581765872,4.875479631131242],[-1.8342183421834193,4.855216703892651],[-1.9134191341913436,4.8214451584949956],[-1.9278192781927714,4.806247963066042],[-1.9530195301952915,4.772476417668386],[-1.9674196741967478,4.758967799509335],[-1.9818198181981757,4.752213490429796],[-2.0502205022050077,4.743770604080382],[-2.064620646206464,4.738704872270745],[-2.089820898208984,4.737016295000856],[-2.097020970209684,4.738704872270745],[-2.104221042210412,4.74545918135027],[-2.107821078210776,4.755590644969573],[-2.104221042210412,4.765722108588861],[-2.107821078210776,4.775853572208163],[-2.122221222212204,4.779230726747926],[-2.129421294212932,4.7809193040178],[-2.1438214382143883,4.784296458557577],[-2.154621546215452,4.785985035827451],[-2.154621546215452,4.791050767637103],[-2.1654216542165443,4.801182231256405],[-2.2050220502204922,4.8349537766540465],[-2.2266222662226482,4.84339666300346],[-2.2374223742237405,4.848462394813112],[-2.2410224102241045,4.858593858432414],[-2.2446224462244686,4.865348167511939],[-2.2482224822248043,4.873791053861353],[-2.2518225182251683,4.878856785671005],[-2.3562235622356127,4.919382640148186],[-2.525425254252525,4.95484276281573],[-2.691026910269102,5.01056581272185],[-2.8206282062820662,5.020697276341153],[-2.9646296462964585,5.046025935389395],[-3.1050310503104868,5.088240367136464],[-3.119431194311943,5.091617521676227],[-3.162631626316255,5.101748985295515],[-3.2634326343263353,5.110191871644929],[-3.277832778327763,5.118634757994343],[-3.2706327063270635,5.132143376153408],[-3.252632526325243,5.149029148852236],[-3.234632346323451,5.164226344281175],[-3.205832058320567,5.15747203520165],[-3.1986319863198673,5.152406303391999],[-3.1986319863198673,5.145651994312473],[-3.1950319503195033,5.140586262502822],[-3.191431914319139,5.135520530693171],[-3.184231842318411,5.132143376153408],[-3.162631626316255,5.125389067073883],[-3.159031590315891,5.125389067073883],[-3.155431554315527,5.127077644343757],[-3.144631446314463,5.122011912534106],[-3.130231302313007,5.108503294375055],[-3.119431194311943,5.106814717105166],[-3.115831158311579,5.108503294375055],[-3.108631086310851,5.110191871644929],[-3.097830978309787,5.113569026184692],[-3.087030870308695,5.11525760345458],[-3.0150301503014987,5.11525760345458],[-2.9934299342993427,5.108503294375055],[-2.9898298982989786,5.101748985295515],[-2.9754297542975507,5.084863212596687],[-2.9718297182971867,5.0814860580569245],[-2.9574295742957304,5.083174635326813],[-2.9358293582935744,5.091617521676227],[-2.9250292502925106,5.09499467621599],[-2.9286292862928462,5.122011912534106],[-2.8998289982899905,5.133831953423297],[-2.8638286382863782,5.1388976852329336],[-2.8422284222842222,5.149029148852236],[-2.8458284582845863,5.1777349624402405],[-2.878228782287806,5.181112116980003],[-2.9214292142921465,5.176046385170352],[-2.9466294662946666,5.1777349624402405],[-2.9394293942939385,5.15747203520165],[-2.9430294302943025,5.137209107963059],[-2.9574295742957304,5.1203233352642314],[-2.9790297902978864,5.11525760345458],[-2.9934299342993427,5.1203233352642314],[-3.047430474304747,5.143963417042585],[-3.0618306183061748,5.15747203520165],[-3.0834308343083308,5.15071772612211],[-3.123031230312307,5.15071772612211],[-3.137431374313735,5.1422748397727105],[-3.148231482314827,5.160849189741413],[-3.162631626316255,5.184489271519766],[-3.180631806318047,5.203063621488482],[-3.1986319863198673,5.211506507837896],[-3.205832058320567,5.218260816917422],[-3.1950319503195033,5.2351465896162495],[-3.177031770317683,5.248655207775315],[-3.1734317343173473,5.252032362315077],[-3.166231662316619,5.265540980474142],[-3.166231662316619,5.295935371332035],[-3.159031590315891,5.307755412221212],[-3.144631446314463,5.316198298570626],[-3.133831338313371,5.3178868758405],[-3.1266312663126428,5.32464118492004],[-3.1266312663126428,5.3449041121586305],[-3.1266312663126428,5.36010130758757],[-3.133831338313371,5.3668556166671095],[-3.144631446314463,5.368544193936984],[-3.162631626316255,5.368544193936984],[-3.166231662316619,5.3668556166671095],[-3.1734317343173473,5.361789884857458],[-3.180631806318047,5.356724153047807],[-3.191431914319139,5.355035575777919],[-3.1986319863198673,5.356724153047807],[-3.213032130321295,5.361789884857458],[-3.2202322023220233,5.361789884857458],[-3.231032310323087,5.358412730317696],[-3.2490324903249075,5.3449041121586305],[-3.2634326343263353,5.341526957618868],[-3.252632526325243,5.3178868758405],[-3.2454324543245434,5.29762394860191],[-3.252632526325243,5.2841153304428445],[-3.2814328143281273,5.280738175903082],[-3.277832778327763,5.272295289553668],[-3.277832778327763,5.265540980474142],[-3.2814328143281273,5.258786671394603],[-3.2886328863288554,5.252032362315077],[-3.2814328143281273,5.246966630505426],[-3.2742327423274276,5.245278053235552],[-3.2814328143281273,5.245278053235552],[-3.2742327423274276,5.241900898695789],[-3.2634326343263353,5.238523744156012],[-3.252632526325243,5.238523744156012],[-3.2418324183241793,5.238523744156012],[-3.2418324183241793,5.231769435076487],[-3.2490324903249075,5.2267037032668355],[-3.2670326703266994,5.228392280536724],[-3.2742327423274276,5.225015125996961],[-3.2850328503284913,5.218260816917422],[-3.2922329223292195,5.209817930568008],[-3.2994329943299476,5.201375044218594],[-3.3030330303302833,5.189555003329417],[-3.3138331383313755,5.197997889678831],[-3.3210332103321036,5.19293215786918],[-3.3174331743317396,5.184489271519766],[-3.3030330303302833,5.1777349624402405],[-3.3102331023310114,5.164226344281175],[-3.3030330303302833,5.155783457931761],[-3.2922329223292195,5.15071772612211],[-3.2742327423274276,5.149029148852236],[-3.3138331383313755,5.1203233352642314],[-3.3786337863378435,5.123700489803994],[-3.6306363063630442,5.1777349624402405],[-3.6774367743677487,5.179423539710129],[-3.7098370983709685,5.186177848789654],[-3.7170371703716967,5.187866426059543],[-3.7206372063720607,5.194620735139068],[-3.7206372063720607,5.203063621488482],[-3.7170371703716967,5.209817930568008],[-3.7206372063720607,5.216572239647547],[-3.727837278372789,5.225015125996961],[-3.7206372063720607,5.238523744156012],[-3.7314373143731245,5.230080857806598],[-3.7386373863738527,5.216572239647547],[-3.745837458374581,5.203063621488482],[-3.749437494374945,5.189555003329417],[-3.7566375663756446,5.189555003329417],[-3.767437674376737,5.196309312408957],[-3.7854378543785288,5.1996864669487195],[-3.828638286382869,5.197997889678831],[-3.839438394383933,5.201375044218594],[-3.886238862388609,5.225015125996961],[-3.9546395463954696,5.2351465896162495],[-3.9870398703986893,5.243589475965663],[-4.001440014400146,5.267229557744017],[-3.9834398343983253,5.260475248664491],[-3.9618396183961693,5.26216382593438],[-3.9438394383943773,5.272295289553668],[-3.933039330393285,5.2874924849826215],[-3.9186391863918573,5.268918135013905],[-3.911439114391129,5.26216382593438],[-3.9042390423904294,5.258786671394603],[-3.8970389703897013,5.26216382593438],[-3.893438934389337,5.267229557744017],[-3.893438934389337,5.273983866823556],[-3.9006390063900653,5.280738175903082],[-3.9006390063900653,5.2874924849826215],[-3.886238862388609,5.2841153304428445],[-3.850238502385025,5.268918135013905],[-3.843038430384297,5.268918135013905],[-3.835838358383569,5.272295289553668],[-3.810638106381049,5.263852403204254],[-3.774637746377465,5.245278053235552],[-3.778237782377829,5.252032362315077],[-3.778237782377829,5.260475248664491],[-3.7818378183781647,5.267229557744017],[-3.767437674376737,5.265540980474142],[-3.7386373863738527,5.26216382593438],[-3.727837278372789,5.267229557744017],[-3.7170371703716967,5.28242675317297],[-3.7206372063720607,5.290869639522384],[-3.7350373503734886,5.299312525871798],[-3.7422374223742167,5.311132566760975],[-3.753037530375309,5.343215534888742],[-3.7566375663756446,5.358412730317696],[-3.7602376023760087,5.3668556166671095],[-3.767437674376737,5.3719213484767465],[-3.778237782377829,5.373609925746635],[-3.789037890378893,5.368544193936984],[-3.796237962379621,5.373609925746635],[-3.803438034380349,5.375298503016509],[-3.814238142381413,5.373609925746635],[-3.817838178381777,5.365167039397221],[-3.814238142381413,5.36010130758757],[-3.792637926379257,5.3449041121586305],[-3.767437674376737,5.311132566760975],[-3.753037530375309,5.294246794062147],[-3.7350373503734886,5.2874924849826215],[-3.7422374223742167,5.273983866823556],[-3.7602376023760087,5.275672444093431],[-3.774637746377465,5.2790495986332076],[-3.789037890378893,5.272295289553668],[-3.796237962379621,5.272295289553668],[-3.810638106381049,5.2874924849826215],[-3.817838178381777,5.290869639522384],[-3.828638286382869,5.290869639522384],[-3.843038430384297,5.2925582167922585],[-3.8538385383853893,5.29762394860191],[-3.868238682386817,5.304378257681449],[-3.8754387543875453,5.312821144030849],[-3.8790387903879093,5.326329762189914],[-3.882638826388245,5.322952607650151],[-3.889838898388973,5.3178868758405],[-3.893438934389337,5.312821144030849],[-3.8970389703897013,5.321264030380263],[-3.8970389703897013,5.329706916729677],[-3.9006390063900653,5.338149803079091],[-3.9006390063900653,5.348281266698393],[-3.907839078390765,5.348281266698393],[-3.907839078390765,5.334772648539328],[-3.911439114391129,5.322952607650151],[-3.9222392223922213,5.316198298570626],[-3.933039330393285,5.321264030380263],[-3.9402394023940133,5.3145097213007375],[-3.9510395103951055,5.312821144030849],[-3.9618396183961693,5.3145097213007375],[-3.9762397623976256,5.321264030380263],[-3.9978399783997816,5.316198298570626],[-4.008640086400845,5.312821144030849],[-3.9978399783997816,5.304378257681449],[-3.9834398343983253,5.301001103141672],[-3.9690396903968974,5.302689680411561],[-3.9546395463954696,5.307755412221212],[-3.9402394023940133,5.2925582167922585],[-3.9546395463954696,5.28242675317297],[-3.9726397263972615,5.272295289553668],[-3.9906399063990534,5.268918135013905],[-4.00504005040051,5.275672444093431],[-4.019440194401938,5.2841153304428445],[-4.041040410404094,5.2925582167922585],[-4.06264062640625,5.299312525871798],[-4.069840698406978,5.295935371332035],[-4.077040770407706,5.2874924849826215],[-4.098640986409862,5.2925582167922585],[-4.123841238412382,5.307755412221212],[-4.13824138241381,5.302689680411561],[-4.149041490414902,5.295935371332035],[-4.159841598415966,5.2925582167922585],[-4.174241742417422,5.299312525871798],[-4.18144181441815,5.294246794062147],[-4.185041850418486,5.294246794062147],[-4.192241922419214,5.299312525871798],[-4.199441994419942,5.307755412221212],[-4.228242282422826,5.289181062252496],[-4.242642426424254,5.2841153304428445],[-4.25704257042571,5.2874924849826215],[-4.253442534425346,5.290869639522384],[-4.249842498424982,5.302689680411561],[-4.249842498424982,5.307755412221212],[-4.275042750427502,5.312821144030849],[-4.285842858428566,5.311132566760975],[-4.296642966429658,5.299312525871798],[-4.3038430384303865,5.306066834951324],[-4.31464314643145,5.311132566760975],[-4.3218432184321784,5.311132566760975],[-4.329043290432907,5.295935371332035],[-4.3434434344343344,5.28242675317297],[-4.350643506435063,5.272295289553668],[-4.357843578435791,5.280738175903082],[-4.372243722437219,5.289181062252496],[-4.383043830438311,5.29762394860191],[-4.393843938439375,5.299312525871798],[-4.404644046440467,5.294246794062147],[-4.4118441184411665,5.285803907712733],[-4.422644226442259,5.280738175903082],[-4.433444334443351,5.2925582167922585],[-4.429844298442987,5.295935371332035],[-4.426244262442623,5.299312525871798],[-4.462244622446207,5.29762394860191],[-4.476644766447663,5.290869639522384],[-4.480244802448027,5.272295289553668],[-4.473044730447299,5.277361021363319],[-4.462244622446207,5.275672444093431],[-4.458644586445871,5.268918135013905],[-4.455044550445507,5.258786671394603],[-4.473044730447299,5.263852403204254],[-4.545045450454495,5.267229557744017],[-4.548645486454859,5.275672444093431],[-4.552245522455223,5.2841153304428445],[-4.563045630456287,5.299312525871798],[-4.570245702457015,5.290869639522384],[-4.570245702457015,5.28242675317297],[-4.566645666456651,5.275672444093431],[-4.555845558455587,5.272295289553668],[-4.555845558455587,5.267229557744017],[-4.573845738457379,5.26216382593438],[-4.588245882458807,5.2570980941247285],[-4.613446134461327,5.238523744156012],[-4.6314463144631475,5.250343785045203],[-4.6530465304653035,5.248655207775315],[-4.671046710467095,5.240212321425901],[-4.681846818468188,5.231769435076487],[-4.685446854468552,5.231769435076487],[-4.692646926469251,5.2351465896162495],[-4.703447034470344,5.240212321425901],[-4.710647106471072,5.246966630505426],[-4.714247142471407,5.252032362315077],[-4.703447034470344,5.2570980941247285],[-4.692646926469251,5.25540951685484],[-4.681846818468188,5.253720939584966],[-4.667446674466731,5.252032362315077],[-4.671046710467095,5.26216382593438],[-4.671046710467095,5.267229557744017],[-4.6782467824678236,5.270606712283794],[-4.685446854468552,5.272295289553668],[-4.685446854468552,5.280738175903082],[-4.6782467824678236,5.2841153304428445],[-4.671046710467095,5.2925582167922585],[-4.667446674466731,5.301001103141672],[-4.667446674466731,5.312821144030849],[-4.6746467464674595,5.312821144030849],[-4.685446854468552,5.290869639522384],[-4.703447034470344,5.2790495986332076],[-4.7250472504725,5.273983866823556],[-4.75024750247502,5.272295289553668],[-4.721447214472136,5.252032362315077],[-4.743047430474292,5.2351465896162495],[-4.779047790477904,5.218260816917422],[-4.804248042480424,5.2047521987583565],[-4.811448114481152,5.189555003329417],[-4.807848078480788,5.181112116980003],[-4.80064800648006,5.174357807900478],[-4.782647826478268,5.170980653360715],[-4.764647646476448,5.1692920760908265],[-4.746647466474656,5.172669230630589],[-4.735847358473592,5.179423539710129],[-4.743047430474292,5.189555003329417],[-4.743047430474292,5.197997889678831],[-4.7178471784717715,5.2047521987583565],[-4.703447034470344,5.211506507837896],[-4.6998469984699796,5.206440776028245],[-4.6962469624696155,5.1996864669487195],[-4.685446854468552,5.197997889678831],[-4.6746467464674595,5.201375044218594],[-4.6530465304653035,5.209817930568008],[-4.638646386463847,5.211506507837896],[-4.6098460984609915,5.211506507837896],[-4.599045990459899,5.209817930568008],[-4.591845918459171,5.2047521987583565],[-4.588245882458807,5.1996864669487195],[-4.584645846458471,5.197997889678831],[-4.570245702457015,5.196309312408957],[-4.559445594455951,5.196309312408957],[-4.537845378453767,5.2047521987583565],[-4.545045450454495,5.203063621488482],[-4.559445594455951,5.2047521987583565],[-4.566645666456651,5.208129353298133],[-4.570245702457015,5.218260816917422],[-4.566645666456651,5.223326548727073],[-4.530645306453067,5.231769435076487],[-4.530645306453067,5.218260816917422],[-4.523445234452339,5.218260816917422],[-4.501845018450183,5.228392280536724],[-4.440644406444051,5.225015125996961],[-4.4118441184411665,5.238523744156012],[-4.408244082440831,5.223326548727073],[-4.401044010440103,5.230080857806598],[-4.393843938439375,5.243589475965663],[-4.3866438664386465,5.252032362315077],[-4.3686436864368545,5.252032362315077],[-4.350643506435063,5.243589475965663],[-4.336243362433606,5.240212321425901],[-4.3254432544325425,5.252032362315077],[-4.307443074430751,5.245278053235552],[-4.285842858428566,5.248655207775315],[-4.267842678426774,5.25540951685484],[-4.224642246422462,5.26216382593438],[-4.199441994419942,5.277361021363319],[-4.185041850418486,5.280738175903082],[-4.0590405904058855,5.2841153304428445],[-4.03024030240303,5.272295289553668],[-4.0374403744037295,5.268918135013905],[-4.048240482404822,5.265540980474142],[-4.0590405904058855,5.265540980474142],[-4.069840698406978,5.267229557744017],[-3.9942399423994175,5.231769435076487],[-4.307443074430751,5.206440776028245],[-4.620646206462055,5.181112116980003],[-4.786247862478632,5.143963417042585],[-4.87624876248762,5.135520530693171],[-4.894248942489412,5.128766221613645],[-4.905049050490504,5.133831953423297],[-4.915849158491568,5.137209107963059],[-4.969849698496972,5.137209107963059],[-4.980649806498064,5.135520530693171],[-4.980649806498064,5.1422748397727105],[-4.9770497704977,5.1422748397727105],[-4.973449734497336,5.1422748397727105],[-4.969849698496972,5.1422748397727105],[-4.969849698496972,5.149029148852236],[-4.998649986499856,5.149029148852236],[-5.00225002250022,5.160849189741413],[-5.00225002250022,5.179423539710129],[-5.009450094500949,5.197997889678831],[-4.998649986499856,5.21319508510777],[-5.009450094500949,5.216572239647547],[-5.063450634506353,5.209817930568008],[-5.081450814508145,5.203063621488482],[-5.099450994509937,5.194620735139068],[-5.113851138511393,5.182800694249892],[-5.128251282512821,5.197997889678831],[-5.157051570515705,5.211506507837896],[-5.193051930519289,5.21994939418731],[-5.221852218522173,5.211506507837896],[-5.225452254522537,5.214883662377659],[-5.232652326523265,5.21994939418731],[-5.232652326523265,5.223326548727073],[-5.236252362523629,5.225015125996961],[-5.243452434524329,5.225015125996961],[-5.254252542525421,5.214883662377659],[-5.272252722527213,5.21994939418731],[-5.290252902529005,5.228392280536724],[-5.304653046530461,5.225015125996961],[-5.3118531185311895,5.225015125996961],[-5.322653226532253,5.230080857806598],[-5.326253262532617,5.2267037032668355],[-5.329853298532981,5.216572239647547],[-5.322653226532253,5.2047521987583565],[-5.326253262532617,5.2047521987583565],[-5.3370533705337095,5.211506507837896],[-5.3370533705337095,5.201375044218594],[-5.3370533705337095,5.197997889678831],[-5.329853298532981,5.1996864669487195],[-5.329853298532981,5.196309312408957],[-5.322653226532253,5.191243580599306],[-5.322653226532253,5.189555003329417],[-5.315453154531525,5.194620735139068],[-5.3118531185311895,5.196309312408957],[-5.297452974529733,5.197997889678831],[-5.297452974529733,5.189555003329417],[-5.304653046530461,5.181112116980003],[-5.329853298532981,5.1692920760908265],[-5.3370533705337095,5.164226344281175],[-5.3370533705337095,5.182800694249892],[-5.351453514535137,5.1422748397727105],[-5.3586535865358655,5.128766221613645],[-5.394653946539449,5.1777349624402405],[-5.4018540185401775,5.1777349624402405],[-5.4018540185401775,5.174357807900478],[-5.4018540185401775,5.164226344281175],[-5.41265412654127,5.170980653360715],[-5.3982539825398135,5.1422748397727105],[-5.3586535865358655,5.123700489803994],[-5.308253082530825,5.118634757994343],[-5.268652686526849,5.128766221613645],[-5.286652866528669,5.140586262502822],[-5.301053010530097,5.140586262502822],[-5.319053190531889,5.137209107963059],[-5.3370533705337095,5.1422748397727105],[-5.3370533705337095,5.149029148852236],[-5.329853298532981,5.149029148852236],[-5.319053190531889,5.149029148852236],[-5.3118531185311895,5.152406303391999],[-5.304653046530461,5.15747203520165],[-5.301053010530097,5.160849189741413],[-5.286652866528669,5.174357807900478],[-5.283052830528305,5.1777349624402405],[-5.268652686526849,5.174357807900478],[-5.250652506525057,5.165914921551064],[-5.236252362523629,5.160849189741413],[-5.221852218522173,5.170980653360715],[-5.211052110521109,5.162537767011301],[-5.196651966519653,5.160849189741413],[-5.185851858518589,5.164226344281175],[-5.182251822518225,5.1777349624402405],[-5.200252002520017,5.174357807900478],[-5.207452074520745,5.182800694249892],[-5.214652146521445,5.19293215786918],[-5.229052290522901,5.197997889678831],[-5.229052290522901,5.2047521987583565],[-5.214652146521445,5.197997889678831],[-5.182251822518225,5.203063621488482],[-5.121051210512093,5.167603498820938],[-5.095850958509573,5.174357807900478],[-5.081450814508145,5.184489271519766],[-5.0670506705066884,5.186177848789654],[-5.034650346503469,5.182800694249892],[-5.0274502745027405,5.176046385170352],[-5.023850238502376,5.159160612471524],[-5.016650166501648,5.140586262502822],[-5.00225002250022,5.128766221613645],[-5.254252542525421,5.1203233352642314],[-5.293852938529369,5.106814717105166],[-5.49545495454953,5.09499467621599],[-5.524255242552414,5.100060408025641],[-5.549455494554934,5.11525760345458],[-5.578255782557818,5.09499467621599],[-5.556655566555662,5.088240367136464],[-5.549455494554934,5.088240367136464],[-5.628656286562858,5.062911708088222],[-5.851858518585175,5.029140162690567],[-5.859058590585903,5.027451585420678],[-5.970659706597047,4.991991462753148],[-5.988659886598867,4.983548576403734],[-5.995859958599567,4.9751056900543205],[-6.006660066600659,4.9751056900543205],[-6.0606606066060635,4.956531340085604],[-6.139861398613988,4.916005485608423],[-6.413464134641345,4.82313373576487],[-6.420664206642073,4.816379426685344],[-6.427864278642772,4.801182231256405],[-6.442264422644229,4.794427922176865],[-6.546665466654673,4.767410685858749],[-6.568265682656829,4.765722108588861],[-6.582665826658257,4.76065637677921],[-6.611466114661141,4.735327717730968],[-6.625866258662569,4.72519625411168],[-6.751867518675169,4.688047554174261],[-6.85266852668525,4.6812932450947216],[-6.87786877868777,4.667784626935671],[-6.90306903069029,4.6627188951260194],[-6.913869138691382,4.65596458604648],[-6.942669426694266,4.622193040648838],[-6.99666996669967,4.576601454362006],[-7.057870578705774,4.539452754424573],[-7.097470974709751,4.525944136265522],[-7.173071730717311,4.519189827185983],[-7.234272342723415,4.493861168137741],[-7.245072450724507,4.485418281788327],[-7.255872558725571,4.465155354549736],[-7.266672666726663,4.463466777279862],[-7.277472774727755,4.463466777279862],[-7.288272882728819,4.4600896227400995],[-7.306273062730611,4.444892427311146],[-7.360273602736015,4.416186613723141],[-7.4394743947439395,4.350332100197718],[-7.457474574745731,4.343577791118193],[-7.479074790747887,4.346954945657956],[-7.525875258752592,4.35539783200737],[-7.54027540275402,4.352020677467607],[-7.594275942759424,4.346954945657956],[-7.608676086760852,4.34864352292783],[-7.630276302763008,4.358774986547132],[-7.644676446764464,4.362152141086895],[-7.713077130771296,4.362152141086895],[-7.720277202772024,4.365529295626658],[-7.723877238772388,4.3722836047061975],[-7.7274772747727525,4.379037913785723],[-7.734677346773452,4.382415068325486],[-7.7490774907749085,4.382415068325486],[-7.788677886778856,4.3993008410243135],[-7.799477994779949,4.406055150103853],[-7.8138781387813765,4.416186613723141],[-7.817478174781741,4.428006654612318],[-7.824678246782469,4.441515272771383],[-7.831878318783168,4.4516467363906855],[-7.864278642786417,4.461778200009974],[-7.885878858788573,4.48035254997869],[-7.896678966789665,4.483729704518453],[-7.914679146791457,4.4871068590582155],[-7.925479254792549,4.492172590867867],[-7.932679326793249,4.498926899947392],[-7.943479434794341,4.505681209026932],[-7.961479614796133,4.512435518106457],[-8.004680046800473,4.524255558995634],[-8.037080370803693,4.529321290805285],[-8.10188101881019,4.552961372583638],[-8.220682206822062,4.568158568012592],[-8.256682566825674,4.579978608901769],[-8.299882998829986,4.627258772458475],[-8.314283142831414,4.635701658807889],[-8.33588335883357,4.639078813347666],[-8.440284402844014,4.676227513285085],[-8.548285482854823,4.755590644969573],[-8.605886058860591,4.78767361309734],[-8.74628746287462,4.838330931193823],[-8.778687786877867,4.853528126622763],[-8.8470884708847,4.9143169083385345],[-8.875888758887584,4.929514103767488],[-8.904689046890468,4.9447112991964275],[-8.915489154891532,4.946399876466316],[-8.937089370893716,4.95484276281573],[-8.965889658896572,4.959908494625367],[-8.991089910899092,4.968351380974781],[-9.016290162901612,4.978482844594083],[-9.030690306903068,4.991991462753148],[-9.027090270902704,4.993680040023023],[-9.027090270902704,4.995368617292911],[-9.027090270902704,4.998745771832674],[-9.070290702907016,5.01056581272185],[-9.106291062910628,5.030828739960441],[-9.163891638916397,5.0814860580569245],[-9.178291782917825,5.091617521676227],[-9.214292142921437,5.106814717105166],[-9.243092430924293,5.13045479888352],[-9.261092610926113,5.137209107963059],[-9.279092790927905,5.145651994312473],[-9.293492934929333,5.164226344281175],[-9.279092790927905,5.164226344281175],[-9.293492934929333,5.181112116980003],[-9.311493114931153,5.19293215786918],[-9.333093330933309,5.201375044218594],[-9.354693546935465,5.211506507837896],[-9.469894698946973,5.321264030380263],[-9.477094770947701,5.334772648539328],[-9.487894878948794,5.3719213484767465],[-9.498694986949857,5.388807121175574],[-9.50949509495095,5.398938584794877],[-9.523895238952377,5.410758625684053],[-9.54189541895417,5.419201512033467],[-9.556295562955626,5.4242672438431185],[-9.55989559895599,5.4242672438431185],[-9.588695886958874,5.431021552922644],[-9.59229592295921,5.431021552922644],[-9.595895958959574,5.439464439272058],[-9.581495814958146,5.454661634700997],[-9.581495814958146,5.4647930983203],[-9.595895958959574,5.488433180098653],[-9.696696966969654,5.545844807274662],[-9.840698406984075,5.685996720674936],[-9.981099810998103,5.797442820487191],[-10.013500135001351,5.837968674964372],[-10.024300243002415,5.844722984043912],[-10.038700387003871,5.8548544476632],[-10.04590045900457,5.86160875674274],[-10.049500495004935,5.871740220362028],[-10.04590045900457,5.885248838521093],[-10.04590045900457,5.89706887941027],[-10.056700567005663,5.912266074839209],[-10.071100711007091,5.924086115728386],[-10.089100891008911,5.934217579347688],[-10.10350103501034,5.937594733887451],[-10.114301143011431,5.942660465697102],[-10.186301863018628,5.998383515603237],[-10.225902259022575,6.043975101890069],[-10.27990279902798,6.077746647287725],[-10.297902979029772,6.0845009563672505],[-10.337503375033748,6.0929438427166644],[-10.351903519035176,6.103075306335953],[-10.362703627036268,6.1148953472251435],[-10.362703627036268,6.128403965384194],[-10.351903519035176,6.123338233574557],[-10.344703447034476,6.123338233574557],[-10.337503375033748,6.12671538811432],[-10.333903339033384,6.136846851733608],[-10.351903519035176,6.140224006273385],[-10.366303663036632,6.152044047162562],[-10.38070380703806,6.165552665321613],[-10.395103951039516,6.177372706210804],[-10.427504275042736,6.197635633449394],[-10.445504455044556,6.20438994252892],[-10.463504635046348,6.20438994252892],[-10.463504635046348,6.197635633449394],[-10.413104131041308,6.170618397131264],[-10.387903879038788,6.152044047162562],[-10.38070380703806,6.128403965384194],[-10.398703987039852,6.148666892622785],[-10.423904239042372,6.163864088051739],[-10.45630456304562,6.177372706210804],[-10.65790657906578,6.228030024307273],[-10.787507875078745,6.292195960562822],[-10.809108091080901,6.310770310531538],[-10.801908019080173,6.327656083230352],[-10.794707947079473,6.319213196880938],[-10.79110791107911,6.314147465071301],[-10.783907839078381,6.310770310531538],[-10.773107731077317,6.307393155991761],[-10.787507875078745,6.334410392309891],[-10.79110791107911,6.359739051358133],[-10.783907839078381,6.381690555866598],[-10.758707587075861,6.403642060375077],[-10.773107731077317,6.403642060375077],[-10.783907839078381,6.401953483105203],[-10.79110791107911,6.3968877512955515],[-10.801908019080173,6.390133442216012],[-10.823508235082357,6.437413605772733],[-10.855908559085577,6.472873728440277],[-10.895508955089554,6.498202387488504],[-11.053910539105374,6.584319828252532],[-11.233912339123378,6.648485764508067],[-11.352713527135279,6.700831659874439],[-11.374313743137435,6.72616031892268],[-11.374313743137435,6.766686173399862],[-11.370713707137071,6.788637677908341],[-11.367113671136707,6.798769141527629],[-11.367113671136707,6.810589182416805],[-11.381513815138135,6.837606418734936],[-11.385113851138499,6.840983573274698],[-11.40311403114032,6.847737882354224],[-11.424714247142475,6.859557923243415],[-11.442714427144267,6.873066541402466],[-11.449914499144995,6.883198005021768],[-11.475114751147515,6.918658127689298],[-11.493114931149307,6.932166745848363],[-11.532715327153255,6.9422982094676655],[-11.55431554315544,6.952429673086954],[-11.572315723157232,6.965938291246019],[-11.58671586715866,6.979446909405084],[-11.57951579515796,6.981135486674958],[-11.575915759157596,6.982824063944847],[-11.572315723157232,6.986201218484609],[-11.568715687156867,6.992955527564135],[-11.593915939159388,6.992955527564135],[-11.608316083160815,6.991266950294261],[-11.615516155161544,6.986201218484609],[-11.622716227162272,6.986201218484609],[-11.629916299163,7.0081527229930884],[-11.644316443164428,7.023349918422028],[-11.698316983169832,7.067252927438986],[-11.83871838718386,7.148304636393348],[-12.072720727207269,7.234422077157362],[-12.313923139231377,7.328982404270803],[-12.508325083250838,7.389771185986575],[-12.47592475924759,7.415099845034817],[-12.439924399243978,7.416788422304705],[-12.403924039240394,7.4049683814155145],[-12.367923679236782,7.389771185986575],[-12.371523715237146,7.398214072335989],[-12.37512375123751,7.4049683814155145],[-12.382323823238238,7.408345535955291],[-12.393123931239302,7.410034113225166],[-12.40032400324003,7.411722690495054],[-12.407524075240758,7.425231308654105],[-12.418324183241822,7.430297040463756],[-12.436324363243614,7.43873992681317],[-12.447124471244706,7.43873992681317],[-12.465124651246498,7.430297040463756],[-12.472324723247226,7.433674195003519],[-12.479524795247954,7.440428504083059],[-12.490324903249018,7.44549423589271],[-12.493924939249382,7.453937122242124],[-12.483124831248318,7.472511472210826],[-12.472324723247226,7.491085822179542],[-12.45072450724507,7.50797159487837],[-12.439924399243978,7.5231687903073095],[-12.429124291242914,7.533300253926612],[-12.411124111241094,7.528234522116961],[-12.40032400324003,7.533300253926612],[-12.389523895238938,7.534988831196486],[-12.364323643236418,7.534988831196486],[-12.357123571235718,7.534988831196486],[-12.346323463234626,7.540054563006137],[-12.339123391233898,7.540054563006137],[-12.331923319233198,7.538365985736249],[-12.321123211232106,7.529923099386835],[-12.313923139231377,7.528234522116961],[-12.295922959229586,7.533300253926612],[-12.277922779227794,7.5434317175459],[-12.259922599225973,7.551874603895314],[-12.231122311223118,7.553563181165202],[-12.234722347223453,7.556940335704965],[-12.238322383223817,7.563694644784491],[-12.238322383223817,7.568760376594142],[-12.220322203222025,7.573826108403793],[-12.202322023220233,7.575514685673667],[-12.187921879218777,7.582268994753207],[-12.184321843218413,7.6025319219917975],[-12.191521915219141,7.6025319219917975],[-12.19872198721987,7.600843344721909],[-12.205922059220597,7.600843344721909],[-12.209522095220933,7.599154767452035],[-12.216722167221661,7.595777612912258],[-12.22392223922239,7.604220499261672],[-12.22392223922239,7.609286231071323],[-12.234722347223453,7.607597653801449],[-12.245522455224545,7.607597653801449],[-12.256322563225638,7.60590907653156],[-12.259922599225973,7.599154767452035],[-12.263522635226337,7.590711881102621],[-12.270722707227065,7.58564614929297],[-12.285122851228493,7.582268994753207],[-12.29952299522995,7.575514685673667],[-12.317523175231742,7.575514685673667],[-12.328323283232834,7.573826108403793],[-12.34992349923499,7.563694644784491],[-12.371523715237146,7.558628912974839],[-12.393123931239302,7.5501860266254255],[-12.403924039240394,7.546808872085663],[-12.411124111241094,7.548497449355551],[-12.429124291242914,7.551874603895314],[-12.439924399243978,7.553563181165202],[-12.465124651246498,7.562006067514616],[-12.472324723247226,7.5805804174833185],[-12.47592475924759,7.6025319219917975],[-12.493924939249382,7.616040540150863],[-12.493924939249382,7.622794849230388],[-12.486724867248654,7.627860581040039],[-12.486724867248654,7.6329263128496905],[-12.483124831248318,7.641369199199104],[-12.486724867248654,7.649812085548504],[-12.493924939249382,7.643057776468979],[-12.50112501125011,7.639680621929216],[-12.508325083250838,7.6379920446593275],[-12.511925119251174,7.644746353738867],[-12.519125191251902,7.644746353738867],[-12.519125191251902,7.6295491583099135],[-12.544325443254422,7.653189240088281],[-12.529925299252994,7.686960785485937],[-12.493924939249382,7.739306680852295],[-12.47592475924759,7.730863794502881],[-12.472324723247226,7.725798062693229],[-12.465124651246498,7.732552371772769],[-12.472324723247226,7.74606098993182],[-12.472324723247226,7.759569608090885],[-12.465124651246498,7.771389648980062],[-12.45072450724507,7.7747668035198245],[-12.472324723247226,7.78827542167889],[-12.490324903249018,7.771389648980062],[-12.519125191251902,7.725798062693229],[-12.569525695256942,7.695403671835351],[-12.60192601926019,7.68358363094616],[-12.616326163261618,7.695403671835351],[-12.623526235262347,7.695403671835351],[-12.688326883268815,7.707223712724527],[-12.695526955269543,7.707223712724527],[-12.70272702727027,7.708912289994402],[-12.709927099270999,7.712289444534164],[-12.749527495274947,7.739306680852295],[-12.767527675276739,7.74606098993182],[-12.778327783277831,7.756192453551122],[-12.78552785527856,7.7747668035198245],[-12.789127891278895,7.791652576218652],[-12.789127891278895,7.8051611943777175],[-12.778327783277831,7.813604080727131],[-12.760327603276039,7.822046967076545],[-12.778327783277831,7.818669812536783],[-12.828728287282871,7.798406885298192],[-12.875528755287547,7.828801276156071],[-12.889928899288975,7.854129935204313],[-12.897128971289703,7.865949976093503],[-12.915129151291495,7.87101570790314],[-12.925929259292587,7.874392862442903],[-12.93672936729368,7.886212903332094],[-12.958329583295836,7.911541562380336],[-12.940329403294015,7.9149187169200985],[-12.904329043290431,7.933493066888801],[-12.88632886328864,7.938558798698452],[-12.871928719287183,7.936870221428563],[-12.853928539285391,7.931804489618926],[-12.821528215282143,7.916607294189973],[-12.843128431284299,7.938558798698452],[-12.86832868328682,7.95544457139728],[-12.889928899288975,7.97570749863587],[-12.904329043290431,8.024676239462465],[-12.907929079290795,8.028053394002242],[-12.91152911529116,8.031430548542005],[-12.91152911529116,8.03818485762153],[-12.904329043290431,8.051693475780596],[-12.900729007290067,8.06520209393966],[-12.89352893528934,8.0803992893686],[-12.88632886328864,8.092219330257777],[-12.875528755287547,8.10235079387708],[-12.907929079290795,8.107416525686716],[-12.922329223292223,8.119236566575907],[-12.929529295292951,8.139499493814498],[-12.94392943929438,8.16482815286274],[-12.954729547295472,8.171582461942265],[-12.9691296912969,8.17833677102179],[-12.979929799297992,8.186779657371204],[-12.98712987129872,8.201976852800158],[-12.983529835298356,8.217174048229097],[-12.983529835298356,8.228994089118274],[-12.979929799297992,8.242502707277339],[-12.972729727297263,8.254322748166516],[-12.979929799297992,8.252634170896641],[-12.98712987129872,8.24756843908699],[-12.990729907299055,8.244191284547227],[-12.997929979299784,8.24081413000745],[-13.005130051300512,8.239125552737576],[-13.01233012330124,8.239125552737576],[-13.015930159301575,8.239125552737576],[-13.023130231302304,8.24081413000745],[-13.066330663306616,8.234059820927925],[-13.091530915309136,8.223928357308623],[-13.116731167311656,8.208731161879683],[-13.141931419314176,8.190156811910981],[-13.156331563315632,8.171582461942265],[-13.16353163531636,8.171582461942265],[-13.16353163531636,8.186779657371204],[-13.16353163531636,8.228994089118274],[-13.167131671316696,8.250945593626753],[-13.167131671316696,8.26276563451593],[-13.16353163531636,8.274585675405106],[-13.174331743317424,8.28302856175452],[-13.210332103321036,8.338751611660655],[-13.2139321393214,8.338751611660655],[-13.2139321393214,8.343817343470306],[-13.217532175321736,8.343817343470306],[-13.224732247322464,8.34550592074018],[-13.224732247322464,8.353948807089594],[-13.231932319323192,8.364080270708897],[-13.257132571325712,8.397851816106552],[-13.26433264332644,8.401228970646315],[-13.267932679326776,8.411360434265603],[-13.275132751327504,8.421491897884906],[-13.285932859328597,8.424869052424668],[-13.27153271532714,8.441754825123496],[-13.267932679326776,8.45019771147291],[-13.267932679326776,8.462017752362087],[-13.267932679326776,8.47214921598139],[-13.282332823328233,8.490723565950091],[-13.285932859328597,8.500855029569394],[-13.26433264332644,8.497477875029631],[-13.260732607326077,8.494100720489854],[-13.253532535325348,8.497477875029631],[-13.249932499324984,8.495789297759742],[-13.24633246332462,8.487346411410329],[-13.228332283322828,8.494100720489854],[-13.210332103321036,8.494100720489854],[-13.192331923319216,8.487346411410329],[-13.177931779317788,8.478903525060915],[-13.16353163531636,8.46539490690185],[-13.14553145531454,8.431623361504194],[-13.109531095310956,8.413049011535492],[-13.084330843308436,8.391097507027013],[-13.059130591305916,8.37252315705831],[-13.041130411304096,8.375900311598073],[-13.033930339303396,8.375900311598073],[-13.033930339303396,8.384343197947487],[-13.04473044730446,8.386031775217361],[-13.055530555305552,8.391097507027013],[-13.06273062730628,8.399540393376427],[-13.066330663306616,8.411360434265603],[-13.055530555305552,8.411360434265603],[-13.055530555305552,8.418114743345143],[-13.084330843308436,8.424869052424668],[-13.109531095310956,8.433311938774082],[-13.123931239312384,8.448509134203022],[-13.116731167311656,8.47214921598139],[-13.105931059310592,8.482280679600677],[-13.073530735307344,8.49241214321998],[-13.06273062730628,8.500855029569394],[-13.055530555305552,8.510986493188682],[-13.048330483304824,8.521117956807984],[-13.041130411304096,8.526183688617635],[-13.026730267302668,8.521117956807984],[-13.026730267302668,8.53293799769716],[-13.023130231302304,8.543069461316463],[-13.01953019530194,8.553200924935751],[-13.01233012330124,8.561643811285165],[-13.001530015300148,8.558266656745403],[-12.93672936729368,8.55488950220564],[-12.91872918729186,8.549823770395989],[-12.907929079290795,8.5481351931261],[-12.900729007290067,8.551512347665877],[-12.879128791287911,8.565020965824928],[-12.86832868328682,8.568398120364705],[-12.88632886328864,8.573463852174342],[-12.907929079290795,8.57008669763458],[-12.929529295292951,8.571775274904468],[-12.929529295292951,8.583595315793644],[-12.91152911529116,8.607235397571998],[-12.875528755287547,8.684909951986612],[-12.900729007290067,8.654515561128719],[-12.915129151291495,8.627498324810588],[-12.93672936729368,8.607235397571998],[-12.972729727297263,8.59710393395271],[-12.990729907299055,8.59710393395271],[-13.005130051300512,8.600481088492472],[-13.01953019530194,8.600481088492472],[-13.04473044730446,8.585283893063533],[-13.06273062730628,8.583595315793644],[-13.077130771307708,8.588661047603296],[-13.0879308793088,8.602169665762347],[-13.066330663306616,8.607235397571998],[-13.055530555305552,8.619055438461174],[-13.04473044730446,8.63256405662024],[-13.026730267302668,8.644384097509416],[-13.026730267302668,8.651138406588956],[-13.033930339303396,8.65282698385883],[-13.041130411304096,8.654515561128719],[-13.04473044730446,8.657892715668481],[-13.048330483304824,8.664647024748007],[-13.055530555305552,8.664647024748007],[-13.06273062730628,8.634252633890128],[-13.06993069930698,8.622432593000951],[-13.080730807308072,8.6173668611913],[-13.098730987309864,8.622432593000951],[-13.11313113131132,8.634252633890128],[-13.131131311313112,8.657892715668481],[-13.141931419314176,8.65282698385883],[-13.149131491314904,8.65282698385883],[-13.152731527315268,8.65958129293837],[-13.156331563315632,8.671401333827546],[-13.16353163531636,8.654515561128719],[-13.152731527315268,8.642695520239542],[-13.13833138331384,8.635941211160002],[-13.123931239312384,8.630875479350365],[-13.13833138331384,8.624121170270826],[-13.109531095310956,8.603858243032235],[-13.105931059310592,8.580218161253882],[-13.123931239312384,8.559955234015291],[-13.141931419314176,8.541380884046575],[-13.13833138331384,8.53293799769716],[-13.13833138331384,8.524495111347747],[-13.14553145531454,8.517740802268222],[-13.152731527315268,8.514363647728459],[-13.16353163531636,8.517740802268222],[-13.167131671316696,8.524495111347747],[-13.19593195931958,8.568398120364705],[-13.203132031320308,8.585283893063533],[-13.210332103321036,8.613989706651537],[-13.217532175321736,8.63256405662024],[-13.228332283322828,8.649449829319067],[-13.235532355323556,8.661269870208244],[-13.242732427324256,8.671401333827546],[-13.242732427324256,8.688287106526374],[-13.23913239132392,8.718681497384253],[-13.235532355323556,8.720370074654141],[-13.23913239132392,8.825061865386871],[-13.2139321393214,8.857144833514639],[-13.199531995319944,8.860521988054401],[-13.19593195931958,8.857144833514639],[-13.192331923319216,8.850390524435113],[-13.185131851318516,8.843636215355573],[-13.109531095310956,8.843636215355573],[-13.091530915309136,8.84701336989535],[-13.073530735307344,8.855456256244764],[-13.04473044730446,8.858833410784527],[-12.98712987129872,8.857144833514639],[-13.026730267302668,8.868964874403815],[-13.033930339303396,8.867276297133941],[-13.041130411304096,8.860521988054401],[-13.059130591305916,8.860521988054401],[-13.077130771307708,8.863899142594178],[-13.0879308793088,8.870653451673704],[-13.098730987309864,8.865587719864052],[-13.116731167311656,8.86221056532429],[-13.131131311313112,8.863899142594178],[-13.13833138331384,8.874030606213466],[-13.13833138331384,8.880784915292992],[-13.14553145531454,8.884162069832769],[-13.152731527315268,8.88247349256288],[-13.156331563315632,8.884162069832769],[-13.159931599315996,8.892604956182183],[-13.156331563315632,8.895982110721945],[-13.152731527315268,8.89767068799182],[-13.141931419314176,8.916245037960536],[-13.123931239312384,8.926376501579824],[-13.098730987309864,8.929753656119601],[-13.073530735307344,8.931442233389475],[-13.073530735307344,8.93988511973889],[-13.091530915309136,8.94495085154854],[-13.116731167311656,8.93988511973889],[-13.156331563315632,8.92468792430995],[-13.181531815318152,8.922999347040061],[-13.206732067320672,8.928065078849713],[-13.224732247322464,8.943262274278652],[-13.231932319323192,8.96690235605702],[-13.235532355323556,8.961836624247368],[-13.23913239132392,8.961836624247368],[-13.23913239132392,8.96014804697748],[-13.23913239132392,8.951705160628066],[-13.253532535325348,8.96690235605702],[-13.260732607326077,8.965213778787131],[-13.260732607326077,8.961836624247368],[-13.26433264332644,8.958459469707606],[-13.267932679326776,8.951705160628066],[-13.28953289532896,8.970279510596782],[-13.285932859328597,9.017559674153503],[-13.300333003330024,9.036134024122205],[-13.300333003330024,9.041199755931856],[-13.311133111331117,9.047954065011382],[-13.32193321933218,9.056396951360796],[-13.325533255332545,9.068216992249972],[-13.32193321933218,9.083414187678926],[-13.318333183331816,9.083414187678926],[-13.303933039330389,9.083414187678926],[-13.300333003330024,9.0851027649488],[-13.300333003330024,9.088479919488563],[-13.303933039330389,9.09185707402834],[-13.300333003330024,9.096922805837977],[-13.275132751327504,9.123940042156107],[-13.253532535325348,9.154334433014],[-13.242732427324256,9.16953162844294],[-13.224732247322464,9.179663092062242],[-13.206732067320672,9.179663092062242],[-13.177931779317788,9.172908782982702],[-13.156331563315632,9.179663092062242],[-13.156331563315632,9.184728823871879],[-13.217532175321736,9.183040246602005],[-13.24633246332462,9.186417401141767],[-13.260732607326077,9.19654886476107],[-13.257132571325712,9.199926019300833],[-13.249932499324984,9.208368905650246],[-13.24633246332462,9.213434637459883],[-13.24633246332462,9.226943255618949],[-13.23913239132392,9.24720618285754],[-13.231932319323192,9.26746911009613],[-13.253532535325348,9.245517605587665],[-13.26433264332644,9.220188946539423],[-13.27153271532714,9.194860287491181],[-13.282332823328233,9.164465896633288],[-13.303933039330389,9.176285937522465],[-13.31473314733148,9.181351669332116],[-13.32193321933218,9.193171710221293],[-13.31473314733148,9.198237442030944],[-13.311133111331117,9.206680328380358],[-13.31473314733148,9.233697564698488],[-13.311133111331117,9.238763296508125],[-13.307533075330753,9.245517605587665],[-13.307533075330753,9.250583337397316],[-13.311133111331117,9.253960491937079],[-13.318333183331816,9.259026223746716],[-13.32193321933218,9.260714801016604],[-13.325533255332545,9.280977728255195],[-13.325533255332545,9.311372119113088],[-13.318333183331816,9.32994646908179],[-13.300333003330024,9.316437850922739],[-13.303933039330389,9.338389355431204],[-13.303933039330389,9.346832241780618],[-13.300333003330024,9.35696370539992],[-13.307533075330753,9.35696370539992],[-13.31473314733148,9.350209396320395],[-13.32193321933218,9.345143664510744],[-13.332733327333273,9.343455087240855],[-13.3471334713347,9.343455087240855],[-13.354333543335429,9.338389355431204],[-13.357933579335793,9.328257891811916],[-13.368733687336857,9.282666305525083],[-13.375933759337585,9.272534841905781],[-13.39753397533974,9.284354882794958],[-13.408334083340833,9.287732037334735],[-13.411934119341197,9.292797769144372],[-13.404734047340469,9.307994964573325],[-13.415534155341561,9.316437850922739],[-13.42273422734226,9.333323623621567],[-13.429934299342989,9.351897973590269],[-13.433534335343353,9.370472323558985],[-13.426334263342625,9.389046673527687],[-13.404734047340469,9.417752487115692],[-13.39753397533974,9.439703991624171],[-13.404734047340469,9.439703991624171],[-13.429934299342989,9.421129641655469],[-13.465934659346601,9.417752487115692],[-13.498334983349821,9.429572528004869],[-13.512735127351277,9.449835455243473],[-13.519935199351977,9.480229846101352],[-13.519935199351977,9.495427041530306],[-13.509135091350913,9.510624236959245],[-13.501935019350185,9.522444277848422],[-13.494734947349457,9.534264318737598],[-13.487534875348757,9.551150091436426],[-13.487534875348757,9.569724441405143],[-13.494734947349457,9.569724441405143],[-13.516335163351641,9.52413285511831],[-13.53073530735307,9.505558505149594],[-13.548735487354861,9.500492773339943],[-13.563135631356317,9.508935659689357],[-13.573935739357381,9.527510009658073],[-13.584735847358473,9.549461514166552],[-13.588335883358837,9.569724441405143],[-13.620736207362057,9.556215823246077],[-13.642336423364242,9.542707205087012],[-13.678336783367826,9.522444277848422],[-13.70713707137071,9.514001391499008],[-13.70713707137071,9.512312814229134],[-13.714337143371438,9.507247082419482],[-13.721537215372138,9.505558505149594],[-13.725137251372502,9.510624236959245],[-13.725137251372502,9.519067123308659],[-13.717937179371802,9.522444277848422],[-13.710737107371074,9.52413285511831],[-13.70713707137071,9.527510009658073],[-13.674736747367461,9.573101595944905],[-13.653136531365305,9.596741677723259],[-13.642336423364242,9.623758914041389],[-13.624336243362421,9.647398995819742],[-13.624336243362421,9.662596191248682],[-13.624336243362421,9.720007818424705],[-13.624336243362421,9.72676212750423],[-13.617136171361722,9.731827859313881],[-13.60633606336063,9.736893591123533],[-13.602736027360265,9.743647900203058],[-13.595535955359537,9.755467941092235],[-13.58113581135811,9.76222225017176],[-13.566735667356681,9.770665136521174],[-13.559535595355953,9.787550909220002],[-13.58113581135811,9.777419445600714],[-13.595535955359537,9.774042291060951],[-13.602736027360265,9.780796600140476],[-13.649536495364941,9.83145391823696],[-13.649536495364941,9.843273959126137],[-13.65673656736567,9.841585381856248],[-13.65673656736567,9.839896804586374],[-13.663936639366398,9.836519650046611],[-13.653136531365305,9.80443668191883],[-13.649536495364941,9.777419445600714],[-13.660336603366034,9.75377936382236],[-13.692736927369282,9.740270745663295],[-13.728737287372866,9.743647900203058],[-13.746737467374658,9.767287981981411],[-13.750337503375022,9.799370950109193],[-13.739537395373958,9.829765340967072],[-13.699936999369982,9.880422659063555],[-13.68193681936819,9.91419420446121],[-13.685536855368554,9.946277172588978],[-13.692736927369282,9.953031481668518],[-13.696336963369617,9.941211440779327],[-13.699936999369982,9.920948513540736],[-13.703537035370346,9.912505627191322],[-13.714337143371438,9.905751318111797],[-13.73233732337323,9.877045504523792],[-13.746737467374658,9.870291195444253],[-13.746737467374658,9.86691404090449],[-13.750337503375022,9.863536886364727],[-13.786337863378634,9.850028268205662],[-13.789937899378998,9.850028268205662],[-13.80793807938079,9.85171684547555],[-13.825938259382582,9.855094000015313],[-13.843938439384374,9.860159731824965],[-13.847538475384738,9.86691404090449],[-13.854738547385466,9.878734081793667],[-13.869138691386894,9.895619854492494],[-13.887138871388714,9.912505627191322],[-13.901539015390142,9.919259936270862],[-13.926739267392662,9.93614570896969],[-13.93393933939339,9.942900018049215],[-13.944739447394454,9.966540099827569],[-13.955539555395546,9.97160583163722],[-13.969939699396974,9.97160583163722],[-13.980739807398066,9.974982986176983],[-13.987939879398795,9.980048717986634],[-14.005940059400587,10.000311645225224],[-14.020340203402014,10.007065954304764],[-14.031140311403107,10.008754531574638],[-14.041940419404199,10.012131686114401],[-14.05994059940599,10.025640304273466],[-14.063540635406355,10.04928038605182],[-14.045540455404534,10.079674776909712],[-14.020340203402014,10.094871972338652],[-13.995139951399494,10.07629762236995],[-14.002340023400222,10.088117663259126],[-14.013140131401315,10.105003435957954],[-14.027540275402743,10.11682347684713],[-14.03474034740347,10.113446322307368],[-14.041940419404199,10.101626281418191],[-14.056340563405627,10.106692013227843],[-14.067140671406719,10.11851205411702],[-14.067140671406719,10.125266363196545],[-14.045540455404534,10.133709249545959],[-14.027540275402743,10.15397217678455],[-13.998739987399858,10.199563763071382],[-14.013140131401315,10.192809453991856],[-14.023940239402378,10.184366567642442],[-14.045540455404534,10.162415063133963],[-14.056340563405627,10.155660754054438],[-14.081540815408147,10.142152135895373],[-14.088740887408875,10.13877498135561],[-14.092340923409239,10.125266363196545],[-14.088740887408875,10.079674776909712],[-14.092340923409239,10.067854736020536],[-14.099540995409939,10.057723272401233],[-14.113941139411395,10.050968963321708],[-14.131941319413187,10.04928038605182],[-14.153541535415343,10.056034695131359],[-14.171541715417135,10.071231890560298],[-14.178741787417863,10.089806240529015],[-14.178741787417863,10.110069167767605],[-14.164341643416435,10.126954940466433],[-14.139141391413915,10.143840713165261],[-14.124741247412459,10.162415063133963],[-14.139141391413915,10.179300835832791],[-14.142741427414279,10.164103640403852],[-14.153541535415343,10.155660754054438],[-14.1679416794168,10.152283599514675],[-14.185941859418591,10.152283599514675],[-14.182341823418227,10.130332095006196],[-14.200342003420019,10.113446322307368],[-14.221942219422175,10.106692013227843],[-14.232742327423267,10.113446322307368],[-14.236342363423631,10.120200631386894],[-14.24354243542436,10.128643517736307],[-14.250742507425059,10.140463558625498],[-14.254342543425423,10.155660754054438],[-14.250742507425059,10.162415063133963],[-14.24354243542436,10.169169372213503],[-14.239942399423995,10.175923681293028],[-14.24354243542436,10.182677990372554],[-14.250742507425059,10.184366567642442],[-14.254342543425423,10.182677990372554],[-14.257942579425787,10.179300835832791],[-14.261542615426151,10.175923681293028],[-14.26874268742688,10.1590379085942],[-14.290342903429035,10.172546526753266],[-14.35154351543514,10.226580999389512],[-14.362343623436232,10.231646731199163],[-14.37674376743766,10.235023885738926],[-14.391143911439116,10.233335308469037],[-14.405544055440544,10.229958153929275],[-14.419944199442,10.228269576659386],[-14.430744307443064,10.235023885738926],[-14.45234452344522,10.214760958500335],[-14.463144631446312,10.224892422119623],[-14.466744667446676,10.250221081167865],[-14.466744667446676,10.272172585676344],[-14.459544595445948,10.304255553804111],[-14.459544595445948,10.317764171963177],[-14.463144631446312,10.329584212852353],[-14.47034470344704,10.336338521931879],[-14.473944739447376,10.339715676471656],[-14.538745387453872,10.40388161272719],[-14.549545495454936,10.425833117235669],[-14.549545495454936,10.44609604447426],[-14.549545495454936,10.471424703522501],[-14.5459454594546,10.495064785300855],[-14.535145351453508,10.506884826190031],[-14.535145351453508,10.50857340345992],[-14.5531455314553,10.506884826190031],[-14.563945639456392,10.500130517110506],[-14.57114571145712,10.489999053491204],[-14.581945819458184,10.48155616714179],[-14.59634596345964,10.476490435332153],[-14.614346143461432,10.47311328079239],[-14.62874628746286,10.476490435332153],[-14.635946359463588,10.48831047622133],[-14.643146431464316,10.48831047622133],[-14.650346503465016,10.474801858062264],[-14.657546575465744,10.479867589871915],[-14.661146611466108,10.49337620803098],[-14.664746647466472,10.511950557999683],[-14.664746647466472,10.52883633069851],[-14.661146611466108,10.542344948857576],[-14.650346503465016,10.57105076244558],[-14.639546395463952,10.565985030635929],[-14.625146251462496,10.577805071525106],[-14.610746107461068,10.593002266954059],[-14.59634596345964,10.603133730573347],[-14.62154621546216,10.604822307843236],[-14.62874628746286,10.616642348732412],[-14.62874628746286,10.635216698701129],[-14.614346143461432,10.69093974860725],[-14.607146071460704,10.706136944036189],[-14.59634596345964,10.699382634956663],[-14.589145891458912,10.699382634956663],[-14.589145891458912,10.714579830385603],[-14.581945819458184,10.721334139465142],[-14.57114571145712,10.726399871274793],[-14.567545675456756,10.73146560308443],[-14.556745567455664,10.775368612101389],[-14.531545315453144,10.822648775658095],[-14.517145171451716,10.829403084737635],[-14.509945099450988,10.8429117028967],[-14.509945099450988,10.85810889832564],[-14.513545135451352,10.871617516484704],[-14.509945099450988,10.876683248294341],[-14.499144991449896,10.891880443723295],[-14.52074520745208,10.885126134643755],[-14.524345243452416,10.87837182556423],[-14.52074520745208,10.866551784675053],[-14.52074520745208,10.851354589246114],[-14.5531455314553,10.827714507467746],[-14.560345603456028,10.822648775658095],[-14.574745747457456,10.812517312038807],[-14.589145891458912,10.787188652990565],[-14.60354603546034,10.760171416672435],[-14.614346143461432,10.728088448544668],[-14.62874628746286,10.706136944036189],[-14.657546575465744,10.672365398638547],[-14.686346863468628,10.64872531686018],[-14.700747007470056,10.643659585050528],[-14.70434704347042,10.65547962593972],[-14.70434704347042,10.670676821368659],[-14.69714697146972,10.682496862257835],[-14.689946899468993,10.689251171337375],[-14.6791467914679,10.692628325877138],[-14.686346863468628,10.694316903147012],[-14.693546935469357,10.694316903147012],[-14.69714697146972,10.692628325877138],[-14.70434704347042,10.685874016797598],[-14.718747187471877,10.699382634956663],[-14.707947079470785,10.739908489433844],[-14.700747007470056,10.756794262132672],[-14.689946899468993,10.771991457561626],[-14.682746827468264,10.777057189371263],[-14.668346683466837,10.787188652990565],[-14.661146611466108,10.792254384800216],[-14.657546575465744,10.80069727114963],[-14.65394653946538,10.807451580229156],[-14.650346503465016,10.809140157499044],[-14.657546575465744,10.812517312038807],[-14.664746647466472,10.81589446657857],[-14.6791467914679,10.799008693879742],[-14.72234722347224,10.765237148482086],[-14.733147331473305,10.748351375783258],[-14.74754747547476,10.71120267584584],[-14.761947619476189,10.699382634956663],[-14.769147691476917,10.719645562195254],[-14.783547835478345,10.73146560308443],[-14.794347943479437,10.744974221243496],[-14.794347943479437,10.768614303021849],[-14.77994779947798,10.766925725751975],[-14.769147691476917,10.777057189371263],[-14.761947619476189,10.790565807530328],[-14.75474754747546,10.802385848419505],[-14.74754747547476,10.81589446657857],[-14.74754747547476,10.831091662007509],[-14.743947439474397,10.844600280166574],[-14.74754747547476,10.851354589246114],[-14.743947439474397,10.85642032105575],[-14.743947439474397,10.861486052865402],[-14.740347403474033,10.871617516484704],[-14.758347583475825,10.85810889832564],[-14.765547655476553,10.849666011976225],[-14.769147691476917,10.841223125626811],[-14.772747727477281,10.83615739381716],[-14.801548015480137,10.822648775658095],[-14.808748087480865,10.822648775658095],[-14.808748087480865,10.834468816547286],[-14.808748087480865,10.846288857436463],[-14.8051480514805,10.854731743785877],[-14.801548015480137,10.864863207405165],[-14.808748087480865,10.873306093754579],[-14.808748087480865,10.881748980103993],[-14.8051480514805,10.890191866453407],[-14.794347943479437,10.89863475280282],[-14.812348123481229,10.900323330072709],[-14.819548195481957,10.912143370961886],[-14.815948159481593,10.927340566390825],[-14.808748087480865,10.939160607280002],[-14.794347943479437,10.947603493629416],[-14.77994779947798,10.954357802708955],[-14.758347583475825,10.957734957248718],[-14.743947439474397,10.959423534518606],[-14.733147331473305,10.966177843598132],[-14.725947259472576,10.981375039027071],[-14.72234722347224,10.994883657186136],[-14.715147151471513,11.001637966265662],[-14.700747007470056,11.005015120805439],[-14.6791467914679,11.026966625313904],[-14.664746647466472,11.035409511663318],[-14.6719467194672,11.042163820742857],[-14.675546755467536,11.047229552552494],[-14.686346863468628,11.064115325251322],[-14.686346863468628,11.053983861632034],[-14.689946899468993,11.04554097528262],[-14.693546935469357,11.03878666620308],[-14.700747007470056,11.035409511663318],[-14.707947079470785,11.033720934393443],[-14.72234722347224,11.028655202583792],[-14.725947259472576,11.02527804804403],[-14.72954729547294,11.005015120805439],[-14.740347403474033,10.989817925376485],[-14.758347583475825,10.981375039027071],[-14.776347763477617,10.988129348106611],[-14.77994779947798,10.98306361629696],[-14.783547835478345,10.981375039027071],[-14.790747907479073,10.979686461757197],[-14.801548015480137,10.981375039027071],[-14.794347943479437,10.999949388995788],[-14.801548015480137,11.011769429884964],[-14.812348123481229,11.015146584424727],[-14.815948159481593,11.005015120805439],[-14.844748447484477,10.96786642086802],[-14.873548735487361,10.972932152677657],[-14.895148951489517,11.03034377985368],[-14.920349203492037,11.028655202583792],[-14.902349023490217,11.011769429884964],[-14.898748987489881,10.993195079916248],[-14.902349023490217,10.97630930721742],[-14.909549095490945,10.959423534518606],[-14.931149311493101,10.97630930721742],[-14.945549455494557,10.979686461757197],[-14.959949599495985,10.981375039027071],[-14.927549275492737,10.95604637997883],[-14.91314913149131,10.942537761819779],[-14.909549095490945,10.92565198912095],[-14.920349203492037,10.907077639152234],[-14.93834938349383,10.888503289183532],[-14.956349563495621,10.876683248294341],[-14.967149671496713,10.874994671024467],[-14.967149671496713,10.87837182556423],[-14.974349743497442,10.87837182556423],[-14.977949779497777,10.87837182556423],[-14.981549815498141,10.874994671024467],[-14.977949779497777,10.868240361944927],[-14.974349743497442,10.859797475595528],[-14.974349743497442,10.854731743785877],[-14.974349743497442,10.819271621118332],[-14.970749707497077,10.814205889308681],[-14.959949599495985,10.809140157499044],[-14.949149491494921,10.804074425689393],[-14.945549455494557,10.792254384800216],[-14.949149491494921,10.787188652990565],[-14.959949599495985,10.768614303021849],[-14.977949779497777,10.777057189371263],[-15.01395013950139,10.782122921180914],[-15.031950319503181,10.792254384800216],[-15.053550535505337,10.814205889308681],[-15.067950679506794,10.837845971087049],[-15.078750787507857,10.85810889832564],[-15.082350823508222,10.87837182556423],[-15.075150751507522,10.896946175532946],[-15.057150571505701,10.915520525501648],[-15.049950499505002,10.918897680041411],[-15.031950319503181,10.92565198912095],[-15.028350283502817,10.929029143660713],[-15.028350283502817,10.937472030010127],[-15.024750247502482,10.944226339089653],[-15.021150211502118,10.949292070899304],[-15.01395013950139,10.954357802708955],[-15.01395013950139,10.959423534518606],[-15.017550175501754,10.959423534518606],[-15.021150211502118,10.96111211178848],[-15.021150211502118,10.964489266328243],[-15.021150211502118,10.96786642086802],[-15.060750607506066,10.94084918454989],[-15.085950859508586,10.927340566390825],[-15.096750967509678,10.929029143660713],[-15.093150931509314,10.942537761819779],[-15.085950859508586,10.949292070899304],[-15.078750787507857,10.954357802708955],[-15.067950679506794,10.959423534518606],[-15.053550535505337,10.98306361629696],[-15.049950499505002,10.988129348106611],[-15.049950499505002,10.994883657186136],[-15.057150571505701,10.994883657186136],[-15.060750607506066,10.984752193566834],[-15.06435064350643,10.977997884487309],[-15.071550715507158,10.971243575407783],[-15.082350823508222,10.96786642086802],[-15.093150931509314,10.966177843598132],[-15.107551075510742,10.969554998137895],[-15.11475114751147,10.974620729947546],[-15.118351183511834,10.984752193566834],[-15.100351003510042,11.057361016171797],[-15.093150931509314,11.069181057060973],[-15.082350823508222,11.075935366140513],[-15.075150751507522,11.08775540702969],[-15.071550715507158,11.102952602458629],[-15.06435064350643,11.114772643347806],[-15.060750607506066,11.118149797887568],[-15.046350463504638,11.116461220617694],[-15.042750427504274,11.118149797887568],[-15.042750427504274,11.121526952427345],[-15.042750427504274,11.135035570586396],[-15.042750427504274,11.138412725126173],[-14.999549995499962,11.141789879665936],[-15.003150031500297,11.15023276601535],[-15.006750067500661,11.156987075094875],[-15.01395013950139,11.162052806904526],[-15.021150211502118,11.16542996144429],[-15.006750067500661,11.180627156873229],[-14.999549995499962,11.199201506841945],[-14.999549995499962,11.216087279540773],[-15.01395013950139,11.22790732042995],[-15.024750247502482,11.200890084111819],[-15.03915039150391,11.182315734143117],[-15.057150571505701,11.17049569325394],[-15.082350823508222,11.16542996144429],[-15.078750787507857,11.15023276601535],[-15.082350823508222,11.140101302396047],[-15.093150931509314,11.138412725126173],[-15.103951039510378,11.145167034205699],[-15.103951039510378,11.140101302396047],[-15.107551075510742,11.136724147856285],[-15.111151111511106,11.131658416046633],[-15.111151111511106,11.124904106967108],[-15.11475114751147,11.12828126150687],[-15.125551255512562,11.131658416046633],[-15.125551255512562,11.113084066077931],[-15.129151291512898,11.102952602458629],[-15.13995139951399,11.097886870648978],[-15.154351543515418,11.08775540702969],[-15.16515165151651,11.072558211600736],[-15.179551795517938,11.043852398012731],[-15.208352083520822,11.010080852615076],[-15.219152191521914,10.999949388995788],[-15.229952299522978,10.994883657186136],[-15.244352443524434,10.999949388995788],[-15.258752587525862,11.013458007154853],[-15.269552695526954,11.028655202583792],[-15.269552695526954,11.03878666620308],[-15.258752587525862,11.047229552552494],[-15.229952299522978,11.062426747981448],[-15.219152191521914,11.069181057060973],[-15.21555215552155,11.08100109795015],[-15.208352083520822,11.124904106967108],[-15.219152191521914,11.209332970461233],[-15.208352083520822,11.2329730522396],[-15.229952299522978,11.229595897699838],[-15.233552335523342,11.216087279540773],[-15.229952299522978,11.195824352302182],[-15.226352263522642,11.178938579603354],[-15.226352263522642,11.1637413841744],[-15.226352263522642,11.140101302396047],[-15.233552335523342,11.12321552969722],[-15.258752587525862,11.133346993316522],[-15.294752947529474,11.131658416046633],[-15.305553055530538,11.135035570586396],[-15.312753127531266,11.140101302396047],[-15.319953199531994,11.14347845693581],[-15.323553235532358,11.145167034205699],[-15.345153451534514,11.141789879665936],[-15.359553595535942,11.14347845693581],[-15.363153631536306,11.155298497824987],[-15.36675366753667,11.167118538714178],[-15.373953739537399,11.173872847793703],[-15.384753847538462,11.177250002333466],[-15.395553955539555,11.178938579603354],[-15.409954099540982,11.189070043222642],[-15.413554135541347,11.214398702270884],[-15.413554135541347,11.261678865827605],[-15.409954099540982,11.271810329446893],[-15.409954099540982,11.278564638526433],[-15.41715417154171,11.281941793066196],[-15.420754207542075,11.281941793066196],[-15.424354243542439,11.283630370336084],[-15.424354243542439,11.287007524875847],[-15.427954279542803,11.292073256685498],[-15.424354243542439,11.303893297574675],[-15.420754207542075,11.315713338463851],[-15.41715417154171,11.327533379353028],[-15.413554135541347,11.335976265702442],[-15.388353883538826,11.369747811100098],[-15.377553775537763,11.378190697449512],[-15.370353703537035,11.376502120179623],[-15.352353523535243,11.368059233830209],[-15.337953379533786,11.364682079290446],[-15.330753307533058,11.368059233830209],[-15.31635316353163,11.381567851989274],[-15.305553055530538,11.384945006529037],[-15.294752947529474,11.390010738338688],[-15.283952839528382,11.403519356497753],[-15.273152731527318,11.420405129196581],[-15.269552695526954,11.432225170085758],[-15.323553235532358,11.3883221610688],[-15.34155341553415,11.378190697449512],[-15.359553595535942,11.386633583798925],[-15.363153631536306,11.398453624688102],[-15.355953559535578,11.428848015545995],[-15.352353523535243,11.438979479165283],[-15.337953379533786,11.452488097324348],[-15.330753307533058,11.46261956094365],[-15.337953379533786,11.467685292753288],[-15.352353523535243,11.46261956094365],[-15.36675366753667,11.45079952005446],[-15.373953739537399,11.433913747355632],[-15.377553775537763,11.417027974656818],[-15.384753847538462,11.405207933767628],[-15.399153991539919,11.396765047418214],[-15.413554135541347,11.391699315608577],[-15.427954279542803,11.384945006529037],[-15.435154351543503,11.369747811100098],[-15.44235442354423,11.356239192941032],[-15.449554495544959,11.347796306591619],[-15.471154711547115,11.344419152051856],[-15.481954819548179,11.339353420242205],[-15.49275492754927,11.334287688432553],[-15.503555035550363,11.335976265702442],[-15.507155071550699,11.357927770210921],[-15.503555035550363,11.368059233830209],[-15.489154891548907,11.405207933767628],[-15.485554855548543,11.411962242847167],[-15.481954819548179,11.418716551926693],[-15.453154531545323,11.460930983673762],[-15.471154711547115,11.460930983673762],[-15.478354783547843,11.467685292753288],[-15.474754747547479,11.479505333642464],[-15.474754747547479,11.494702529071418],[-15.463954639546387,11.489636797261767],[-15.456754567545659,11.489636797261767],[-15.445954459544595,11.49301395180153],[-15.438754387543867,11.501456838150943],[-15.438754387543867,11.494702529071418],[-15.431554315543139,11.481193910912353],[-15.427954279542803,11.494702529071418],[-15.420754207542075,11.504833992690706],[-15.413554135541347,11.508211147230483],[-15.406354063540618,11.494702529071418],[-15.399153991539919,11.494702529071418],[-15.399153991539919,11.504833992690706],[-15.402754027540283,11.51327687904012],[-15.406354063540618,11.521719765389534],[-15.413554135541347,11.528474074469074],[-15.406354063540618,11.530162651738948],[-15.406354063540618,11.531851229008836],[-15.406354063540618,11.5352283835486],[-15.395553955539555,11.531851229008836],[-15.384753847538462,11.530162651738948],[-15.370353703537035,11.528474074469074],[-15.355953559535578,11.525096919929311],[-15.348753487534879,11.528474074469074],[-15.355953559535578,11.543671269898013],[-15.352353523535243,11.550425578977539],[-15.348753487534879,11.563934197136604],[-15.34155341553415,11.563934197136604],[-15.334353343533422,11.552114156247427],[-15.319953199531994,11.553802733517315],[-15.309153091530902,11.553802733517315],[-15.309153091530902,11.5352283835486],[-15.29115291152911,11.541982692628125],[-15.29115291152911,11.557179888057078],[-15.301953019530202,11.572377083486018],[-15.31635316353163,11.584197124375194],[-15.319953199531994,11.580819969835431],[-15.323553235532358,11.580819969835431],[-15.337953379533786,11.577442815295669],[-15.337953379533786,11.584197124375194],[-15.312753127531266,11.590951433454734],[-15.305553055530538,11.59770574253426],[-15.294752947529474,11.604460051613785],[-15.287552875528746,11.592640010724608],[-15.273152731527318,11.577442815295669],[-15.258752587525862,11.570688506216143],[-15.24075240752407,11.577442815295669],[-15.251552515525162,11.579131392565557],[-15.251552515525162,11.585885701645083],[-15.251552515525162,11.594328587994497],[-15.255152551525498,11.604460051613785],[-15.262352623526226,11.609525783423436],[-15.269552695526954,11.609525783423436],[-15.276752767527682,11.611214360693324],[-15.280352803528018,11.62472297885239],[-15.269552695526954,11.621345824312613],[-15.247952479524798,11.616280092502976],[-15.24075240752407,11.611214360693324],[-15.226352263522642,11.61796866977285],[-15.229952299522978,11.611214360693324],[-15.229952299522978,11.59770574253426],[-15.233552335523342,11.590951433454734],[-15.208352083520822,11.574065660755906],[-15.201152011520122,11.57575423802578],[-15.193951939519394,11.590951433454734],[-15.197551975519758,11.599394319804148],[-15.211952119521186,11.616280092502976],[-15.211952119521186,11.621345824312613],[-15.208352083520822,11.628100133392152],[-15.204752047520458,11.636543019741566],[-15.193951939519394,11.643297328821092],[-15.186751867518666,11.646674483360854],[-15.183151831518302,11.643297328821092],[-15.175951759517602,11.63823159701144],[-15.16515165151651,11.634854442471678],[-15.154351543515418,11.631477287931915],[-15.147151471514718,11.628100133392152],[-15.143551435514354,11.619657247042738],[-15.143551435514354,11.609525783423436],[-15.143551435514354,11.59770574253426],[-15.125551255512562,11.604460051613785],[-15.125551255512562,11.607837206153562],[-15.129151291512898,11.614591515233087],[-15.129151291512898,11.61796866977285],[-15.11475114751147,11.61796866977285],[-15.103951039510378,11.612902937963199],[-15.096750967509678,11.60277147434391],[-15.08955089550895,11.590951433454734],[-15.129151291512898,11.584197124375194],[-15.143551435514354,11.584197124375194],[-15.13995139951399,11.579131392565557],[-15.136351363513626,11.574065660755906],[-15.132751327513262,11.572377083486018],[-15.125551255512562,11.570688506216143],[-15.129151291512898,11.553802733517315],[-15.121951219512198,11.545359847167902],[-15.11475114751147,11.547048424437776],[-15.103951039510378,11.572377083486018],[-15.093150931509314,11.574065660755906],[-15.082350823508222,11.572377083486018],[-15.075150751507522,11.574065660755906],[-15.042750427504274,11.57575423802578],[-15.035550355503545,11.577442815295669],[-15.024750247502482,11.58250854710532],[-15.017550175501754,11.589262856184845],[-15.010350103501025,11.59770574253426],[-15.006750067500661,11.611214360693324],[-15.021150211502118,11.607837206153562],[-15.028350283502817,11.60277147434391],[-15.03915039150391,11.599394319804148],[-15.071550715507158,11.59601716526437],[-15.078750787507857,11.59770574253426],[-15.082350823508222,11.607837206153562],[-15.082350823508222,11.612902937963199],[-15.075150751507522,11.616280092502976],[-15.067950679506794,11.61796866977285],[-15.060750607506066,11.61796866977285],[-15.06435064350643,11.628100133392152],[-15.067950679506794,11.633165865201804],[-15.060750607506066,11.646674483360854],[-15.075150751507522,11.648363060630743],[-15.082350823508222,11.643297328821092],[-15.08955089550895,11.633165865201804],[-15.08955089550895,11.61796866977285],[-15.103951039510378,11.633165865201804],[-15.111151111511106,11.63823159701144],[-15.125551255512562,11.63823159701144],[-15.125551255512562,11.646674483360854],[-15.118351183511834,11.650051637900617],[-15.103951039510378,11.666937410599445],[-15.103951039510378,11.673691719678985],[-15.111151111511106,11.68720033783805],[-15.118351183511834,11.68720033783805],[-15.129151291512898,11.653428792440394],[-15.143551435514354,11.650051637900617],[-15.157951579515782,11.658494524250031],[-15.172351723517238,11.66018310151992],[-15.161551615516146,11.675380296948859],[-15.147151471514718,11.682134606028399],[-15.136351363513626,11.688888915107924],[-15.129151291512898,11.70746326507664],[-15.13995139951399,11.699020378727226],[-15.147151471514718,11.693954646917575],[-15.157951579515782,11.693954646917575],[-15.16515165151651,11.7007089559971],[-15.172351723517238,11.7007089559971],[-15.172351723517238,11.690577492377813],[-15.175951759517602,11.683823183298273],[-15.183151831518302,11.68044602875851],[-15.193951939519394,11.68044602875851],[-15.19035190351903,11.66524883332957],[-15.197551975519758,11.661871678789808],[-15.208352083520822,11.666937410599445],[-15.211952119521186,11.68044602875851],[-15.226352263522642,11.658494524250031],[-15.237152371523706,11.663560256059682],[-15.229952299522978,11.682134606028399],[-15.208352083520822,11.693954646917575],[-15.21555215552155,11.7007089559971],[-15.219152191521914,11.70746326507664],[-15.219152191521914,11.717594728695929],[-15.211952119521186,11.727726192315231],[-15.208352083520822,11.727726192315231],[-15.201152011520122,11.724349037775468],[-15.197551975519758,11.724349037775468],[-15.186751867518666,11.720971883235691],[-15.19035190351903,11.736169078664645],[-15.201152011520122,11.744611965014059],[-15.219152191521914,11.754743428633347],[-15.226352263522642,11.754743428633347],[-15.229952299522978,11.739546233204408],[-15.237152371523706,11.726037615045342],[-15.24075240752407,11.712528996886277],[-15.24075240752407,11.693954646917575],[-15.251552515525162,11.688888915107924],[-15.258752587525862,11.677068874218747],[-15.269552695526954,11.673691719678985],[-15.273152731527318,11.677068874218747],[-15.273152731527318,11.685511760568161],[-15.262352623526226,11.7007089559971],[-15.273152731527318,11.705774687806752],[-15.276752767527682,11.719283305965817],[-15.269552695526954,11.747989119553822],[-15.276752767527682,11.74292338774417],[-15.283952839528382,11.734480501394756],[-15.287552875528746,11.72266046050558],[-15.287552875528746,11.710840419616403],[-15.29115291152911,11.710840419616403],[-15.312753127531266,11.710840419616403],[-15.323553235532358,11.70746326507664],[-15.309153091530902,11.7007089559971],[-15.309153091530902,11.693954646917575],[-15.298352983529838,11.685511760568161],[-15.287552875528746,11.678757451488636],[-15.280352803528018,11.670314565139222],[-15.283952839528382,11.656805946980157],[-15.294752947529474,11.653428792440394],[-15.301953019530202,11.656805946980157],[-15.309153091530902,11.666937410599445],[-15.312753127531266,11.658494524250031],[-15.31635316353163,11.650051637900617],[-15.319953199531994,11.641608751551217],[-15.323553235532358,11.631477287931915],[-15.330753307533058,11.670314565139222],[-15.337953379533786,11.683823183298273],[-15.34155341553415,11.682134606028399],[-15.348753487534879,11.68044602875851],[-15.34155341553415,11.666937410599445],[-15.355953559535578,11.666937410599445],[-15.352353523535243,11.639920174281329],[-15.348753487534879,11.628100133392152],[-15.337953379533786,11.61796866977285],[-15.34155341553415,11.604460051613785],[-15.359553595535942,11.616280092502976],[-15.370353703537035,11.629788710662027],[-15.39195391953919,11.66018310151992],[-15.395553955539555,11.641608751551217],[-15.388353883538826,11.62472297885239],[-15.377553775537763,11.609525783423436],[-15.370353703537035,11.590951433454734],[-15.377553775537763,11.592640010724608],[-15.39195391953919,11.59770574253426],[-15.395553955539555,11.584197124375194],[-15.402754027540283,11.584197124375194],[-15.409954099540982,11.594328587994497],[-15.413554135541347,11.611214360693324],[-15.41715417154171,11.611214360693324],[-15.424354243542439,11.60277147434391],[-15.424354243542439,11.592640010724608],[-15.427954279542803,11.580819969835431],[-15.427954279542803,11.570688506216143],[-15.435154351543503,11.574065660755906],[-15.438754387543867,11.577442815295669],[-15.438754387543867,11.557179888057078],[-15.449554495544959,11.563934197136604],[-15.453154531545323,11.572377083486018],[-15.456754567545659,11.58250854710532],[-15.463954639546387,11.594328587994497],[-15.46755467554675,11.606148628883673],[-15.463954639546387,11.612902937963199],[-15.453154531545323,11.621345824312613],[-15.449554495544959,11.636543019741566],[-15.438754387543867,11.651740215170506],[-15.427954279542803,11.670314565139222],[-15.427954279542803,11.693954646917575],[-15.460354603546023,11.663560256059682],[-15.474754747547479,11.655117369710268],[-15.49275492754927,11.666937410599445],[-15.489154891548907,11.675380296948859],[-15.489154891548907,11.695643224187464],[-15.489154891548907,11.70746326507664],[-15.499954999549999,11.709151842346515],[-15.507155071550699,11.704086110536863],[-15.514355143551427,11.699020378727226],[-15.521555215552155,11.693954646917575],[-15.521555215552155,11.690577492377813],[-15.528755287552883,11.682134606028399],[-15.539555395553947,11.675380296948859],[-15.543155431554311,11.683823183298273],[-15.546755467554675,11.7007089559971],[-15.55035550355504,11.715906151426054],[-15.55035550355504,11.732791924124882],[-15.532355323553219,11.759809160442998],[-15.525155251552519,11.781760664951477],[-15.517955179551791,11.791892128570765],[-15.481954819548179,11.830729405778072],[-15.46755467554675,11.837483714857598],[-15.463954639546387,11.839172292127486],[-15.460354603546023,11.844238023937137],[-15.460354603546023,11.854369487556426],[-15.456754567545659,11.864500951175728],[-15.453154531545323,11.872943837525142],[-15.438754387543867,11.884763878414319],[-15.431554315543139,11.884763878414319],[-15.431554315543139,11.879698146604667],[-15.427954279542803,11.876320992064905],[-15.424354243542439,11.874632414795016],[-15.41715417154171,11.871255260255253],[-15.413554135541347,11.879698146604667],[-15.409954099540982,11.884763878414319],[-15.402754027540283,11.88307530114443],[-15.399153991539919,11.884763878414319],[-15.373953739537399,11.884763878414319],[-15.334353343533422,11.874632414795016],[-15.312753127531266,11.871255260255253],[-15.19035190351903,11.871255260255253],[-15.183151831518302,11.874632414795016],[-15.168751687516874,11.88982961022397],[-15.161551615516146,11.893206764763733],[-15.136351363513626,11.899961073843258],[-15.118351183511834,11.913469692002323],[-15.107551075510742,11.928666887431262],[-15.08955089550895,11.940486928320453],[-15.067950679506794,11.940486928320453],[-15.06435064350643,11.9252897328915],[-15.067950679506794,11.90502680565291],[-15.078750787507857,11.88982961022397],[-15.085950859508586,11.86956668298538],[-15.085950859508586,11.845926601207012],[-15.078750787507857,11.82059794215877],[-15.067950679506794,11.803712169459956],[-15.049950499505002,11.795269283110542],[-15.024750247502482,11.790203551300891],[-15.003150031500297,11.783449242221351],[-14.992349923499233,11.76487489225265],[-14.981549815498141,11.754743428633347],[-14.959949599495985,11.74967769682371],[-14.934749347493465,11.753054851363473],[-14.923949239492401,11.7699406240623],[-14.952749527495257,11.759809160442998],[-14.970749707497077,11.776694933141826],[-14.981549815498141,11.798646437650305],[-14.995949959499598,11.810466478539482],[-15.024750247502482,11.813843633079244],[-15.035550355503545,11.817220787619007],[-15.046350463504638,11.823975096698547],[-15.053550535505337,11.830729405778072],[-15.057150571505701,11.837483714857598],[-15.06435064350643,11.8476151784769],[-15.071550715507158,11.861123796635965],[-15.060750607506066,11.872943837525142],[-15.049950499505002,11.884763878414319],[-15.042750427504274,11.896583919303495],[-15.024750247502482,11.94555266013009],[-15.024750247502482,11.950618391939742],[-15.017550175501754,11.953995546479504],[-15.003150031500297,11.953995546479504],[-14.992349923499233,11.957372701019281],[-14.992349923499233,11.964127010098807],[-14.999549995499962,11.970881319178332],[-15.006750067500661,11.974258473718109],[-15.006750067500661,11.977635628257872],[-15.017550175501754,11.981012782797634],[-15.028350283502817,11.982701360067509],[-15.03915039150391,11.977635628257872],[-15.046350463504638,11.975947050987983],[-15.067950679506794,11.986078514607286],[-15.078750787507857,11.98776709187716],[-15.093150931509314,11.984389937337397],[-15.125551255512562,11.965815587368695],[-15.13995139951399,11.960749855559044],[-15.150751507515082,11.953995546479504],[-15.179551795517938,11.923601155621625],[-15.193951939519394,11.913469692002323],[-15.21555215552155,11.91009253746256],[-15.233552335523342,11.913469692002323],[-15.273152731527318,11.926978310161388],[-15.312753127531266,11.93204404197104],[-15.327153271532723,11.938798351050565],[-15.337953379533786,11.950618391939742],[-15.359553595535942,11.962438432828918],[-15.381153811538098,11.96750416463857],[-15.402754027540283,11.96750416463857],[-15.427954279542803,11.960749855559044],[-15.435154351543503,11.955684123749393],[-15.449554495544959,11.942175505590328],[-15.456754567545659,11.940486928320453],[-15.478354783547843,11.940486928320453],[-15.489154891548907,11.940486928320453],[-15.496354963549635,11.937109773780676],[-15.528755287552883,11.906715382922798],[-15.535955359553583,11.901649651113146],[-15.55035550355504,11.896583919303495],[-15.553955539555403,11.893206764763733],[-15.586355863558623,11.850992333016663],[-15.593555935559351,11.844238023937137],[-15.611556115561143,11.839172292127486],[-15.65835658356582,11.812155055809356],[-15.67635676356764,11.80540074672983],[-15.679956799568004,11.803712169459956],[-15.744757447574472,11.791892128570765],[-15.755557555575564,11.786826396761128],[-15.762757627576264,11.778383510411714],[-15.80955809558094,11.753054851363473],[-15.831158311583124,11.747989119553822],[-15.80955809558094,11.829040828508184],[-15.791557915579148,11.86281237390584],[-15.766357663576628,11.864500951175728],[-15.762757627576264,11.861123796635965],[-15.755557555575564,11.857746642096203],[-15.744757447574472,11.857746642096203],[-15.73395733957338,11.857746642096203],[-15.73395733957338,11.864500951175728],[-15.7519575195752,11.866189528445602],[-15.77715777157772,11.886452455684207],[-15.795157951579512,11.884763878414319],[-15.813158131581304,11.872943837525142],[-15.816758167581668,11.856058064826314],[-15.816758167581668,11.837483714857598],[-15.849158491584916,11.775006355871938],[-15.85995859958598,11.7699406240623],[-15.881558815588164,11.775006355871938],[-15.8851588515885,11.786826396761128],[-15.8779587795878,11.823975096698547],[-15.895958959589592,11.815532210349133],[-15.899558995589956,11.80033501492018],[-15.899558995589956,11.780072087681589],[-15.906759067590684,11.761497737712887],[-15.91035910359102,11.75812058317311],[-15.931959319593176,11.751366274093584],[-15.942759427594268,11.744611965014059],[-15.95355953559536,11.736169078664645],[-15.96075960759606,11.734480501394756],[-15.964359643596424,11.739546233204408],[-15.967959679596788,11.747989119553822],[-15.967959679596788,11.768252046792412],[-15.964359643596424,11.788514974031003],[-15.946359463594632,11.823975096698547],[-15.931959319593176,11.879698146604667],[-15.924759247592476,11.893206764763733],[-15.921159211592112,11.896583919303495],[-15.913959139591384,11.901649651113146],[-15.906759067590684,11.90502680565291],[-15.90315903159032,11.906715382922798],[-15.899558995589956,11.91009253746256],[-15.892358923589228,11.933732619240914],[-15.863558635586344,11.97256989644822],[-15.856358563585644,11.981012782797634],[-15.841958419584188,11.989455669147048],[-15.820358203582032,11.997898555496462],[-15.798757987579876,12.002964287306114],[-15.780757807578084,12.002964287306114],[-15.77715777157772,11.996209978226574],[-15.773557735577356,11.98776709187716],[-15.766357663576628,11.979324205527746],[-15.7591575915759,11.974258473718109],[-15.737557375573743,11.974258473718109],[-15.730357303573044,11.970881319178332],[-15.719557195571952,11.96750416463857],[-15.715957159571587,11.981012782797634],[-15.70875708757086,11.996209978226574],[-15.705157051570524,12.00803001911575],[-15.712357123571223,12.016472905465164],[-15.719557195571952,12.011407173655527],[-15.730357303573044,12.002964287306114],[-15.741157411574108,11.9945214009567],[-15.762757627576264,11.9945214009567],[-15.766357663576628,11.999587132766337],[-15.773557735577356,12.011407173655527],[-15.780757807578084,12.016472905465164],[-15.791557915579148,12.018161482735053],[-15.795157951579512,12.018161482735053],[-15.798757987579876,12.016472905465164],[-15.838358383583824,12.013095750925402],[-15.849158491584916,12.018161482735053],[-15.856358563585644,12.02998152362423],[-15.863558635586344,12.02998152362423],[-15.870758707587072,12.013095750925402],[-15.888758887588864,12.002964287306114],[-15.913959139591384,11.997898555496462],[-15.931959319593176,11.9945214009567],[-15.931959319593176,11.98776709187716],[-15.92835928359284,11.984389937337397],[-15.924759247592476,11.981012782797634],[-15.92835928359284,11.981012782797634],[-15.931959319593176,11.981012782797634],[-15.931959319593176,11.979324205527746],[-15.931959319593176,11.974258473718109],[-15.939159391593904,11.979324205527746],[-15.946359463594632,11.984389937337397],[-15.946359463594632,11.979324205527746],[-15.942759427594268,11.965815587368695],[-15.946359463594632,11.95230696920963],[-15.95355953559536,11.940486928320453],[-15.967959679596788,11.926978310161388],[-15.982359823598216,11.921912578351737],[-16.05436054360544,11.920224001081849],[-16.065160651606504,11.916846846542086],[-16.08676086760866,11.908403960192672],[-16.09396093960939,11.906715382922798],[-16.097560975609753,11.903338228383035],[-16.10476104761048,11.894895342033621],[-16.11196111961118,11.888141032954081],[-16.126361263612637,11.884763878414319],[-16.133561335613336,11.888141032954081],[-16.14436144361443,11.896583919303495],[-16.158761587615857,11.913469692002323],[-16.183961839618377,11.908403960192672],[-16.216362163621625,11.913469692002323],[-16.241562415624145,11.9252897328915],[-16.2559625596256,11.937109773780676],[-16.273962739627393,11.981012782797634],[-16.284762847628457,11.986078514607286],[-16.309963099630977,11.991144246416923],[-16.324363243632433,11.9945214009567],[-16.33156331563316,12.004652864575988],[-16.33876338763386,12.016472905465164],[-16.342363423634225,12.031670100894118],[-16.34596345963459,12.062064491751997],[-16.35676356763568,12.087393150800239],[-16.35676356763568,12.100901768959304],[-16.33156331563316,12.160001973405201],[-16.32076320763207,12.171822014294378],[-16.30636306363064,12.18195347791368],[-16.29556295562955,12.188707786993206],[-16.28116281162812,12.193773518802857],[-16.28116281162812,12.18195347791368],[-16.277562775627757,12.173510591564266],[-16.27036270362703,12.171822014294378],[-16.259562595625937,12.180264900643792],[-16.259562595625937,12.188707786993206],[-16.27036270362703,12.203904982422145],[-16.27036270362703,12.214036446041447],[-16.2559625596256,12.230922218740275],[-16.241562415624145,12.241053682359563],[-16.223562235622353,12.247807991439103],[-16.147961479614793,12.290022423186173],[-16.133561335613336,12.303531041345224],[-16.122761227612273,12.313662504964526],[-16.11196111961118,12.330548277663354],[-16.10476104761048,12.33730258674288],[-16.09396093960939,12.34236831855253],[-16.072360723607233,12.347434050362182],[-16.06156061560614,12.350811204901945],[-16.090360903609024,12.352499782171833],[-16.108361083610816,12.344056895822419],[-16.122761227612273,12.330548277663354],[-16.133561335613336,12.313662504964526],[-16.15516155161552,12.300153886805461],[-16.20556205562056,12.290022423186173],[-16.227162271622717,12.283268114106633],[-16.2631626316263,12.261316609598154],[-16.27036270362703,12.252873723248754],[-16.30636306363064,12.214036446041447],[-16.324363243632433,12.222479332390861],[-16.324363243632433,12.241053682359563],[-16.317163171631705,12.263005186868043],[-16.317163171631705,12.283268114106633],[-16.32076320763207,12.268070918677694],[-16.335163351633497,12.247807991439103],[-16.33876338763386,12.212347868771559],[-16.349563495634953,12.19715067334262],[-16.36396363963638,12.192084941532968],[-16.385563855638537,12.200527827882382],[-16.392763927639265,12.193773518802857],[-16.392763927639265,12.198839250612494],[-16.40716407164072,12.207282136961908],[-16.40716407164072,12.193773518802857],[-16.41436414364142,12.188707786993206],[-16.428764287642878,12.187019209723317],[-16.443164431644306,12.187019209723317],[-16.44676446764467,12.183642055183554],[-16.450364503645034,12.176887746104029],[-16.457564575645762,12.171822014294378],[-16.461164611646097,12.176887746104029],[-16.461164611646097,12.180264900643792],[-16.46476464764646,12.183642055183554],[-16.47196471964719,12.187019209723317],[-16.48996489964898,12.190396364263094],[-16.500765007650074,12.19715067334262],[-16.507965079650802,12.207282136961908],[-16.507965079650802,12.21741360058121],[-16.5151651516515,12.222479332390861],[-16.536765367653658,12.249496568708977],[-16.54036540365402,12.256250877788517],[-16.54756547565475,12.25962803232828],[-16.565565655656542,12.276513805027108],[-16.576365763657634,12.283268114106633],[-16.579965799657998,12.281579536836759],[-16.59796597965979,12.276513805027108],[-16.605166051660518,12.276513805027108],[-16.608766087660882,12.281579536836759],[-16.619566195661946,12.296776732265698],[-16.62316623166231,12.303531041345224],[-16.662766627666258,12.332236854933228],[-16.67356673566735,12.33730258674288],[-16.687966879668778,12.33730258674288],[-16.69876698766987,12.333925432203117],[-16.709567095670963,12.327171123123591],[-16.720367203672026,12.323793968583814],[-16.727567275672754,12.332236854933228],[-16.734767347673483,12.345745473092293],[-16.73836738367382,12.35756551398147],[-16.745567455674546,12.379517018489949],[-16.74916749167491,12.386271327569474],[-16.767167671676702,12.396402791188777],[-16.78876788767886,12.418354295697256],[-16.79956799567995,12.430174336586433],[-16.803168031680315,12.443682954745498],[-16.803168031680315,12.485897386492553],[-16.79956799567995,12.494340272841967],[-16.792367923679222,12.502783159191381],[-16.78876788767886,12.512914622810683],[-16.78156781567816,12.523046086429986],[-16.73116731167312,12.55175190001799],[-16.709567095670963,12.553440477287864],[-16.677166771667714,12.550063322748102],[-16.644766447664466,12.570326249986692],[-16.633966339663402,12.578769136336106],[-16.63036630366304,12.58721202268552],[-16.62316623166231,12.595654909034934],[-16.619566195661946,12.605786372654237],[-16.579965799657998,12.632803608972353],[-16.561965619656178,12.612540681733762],[-16.54756547565475,12.573703404526455],[-16.533165331653322,12.565260518177041],[-16.533165331653322,12.580457713605995],[-16.52236522365223,12.592277754495171],[-16.504365043650438,12.597343486304823],[-16.486364863648618,12.593966331765046],[-16.450364503645034,12.575391981796344],[-16.42156421564215,12.56694909544693],[-16.3891638916389,12.55175190001799],[-16.37116371163711,12.550063322748102],[-16.349563495634953,12.560194786367404],[-16.327963279632797,12.588900599955409],[-16.309963099630977,12.597343486304823],[-16.284762847628457,12.597343486304823],[-16.266762667626665,12.590589177225283],[-16.24516245162451,12.58721202268552],[-16.223562235622353,12.60240921811446],[-16.21276212762126,12.605786372654237],[-16.20556205562056,12.597343486304823],[-16.198361983619833,12.585523445415646],[-16.191161911619105,12.577080559066232],[-16.115561155611545,12.605786372654237],[-16.097560975609753,12.610852104463874],[-16.072360723607233,12.612540681733762],[-16.057960579605776,12.615917836273525],[-16.04356043560435,12.626049299892827],[-16.02916029160292,12.632803608972353],[-16.007560075600736,12.632803608972353],[-15.989559895598944,12.622672145353064],[-15.964359643596424,12.60240921811446],[-15.946359463594632,12.590589177225283],[-15.939159391593904,12.580457713605995],[-15.92835928359284,12.578769136336106],[-15.863558635586344,12.577080559066232],[-15.856358563585644,12.573703404526455],[-15.845558455584552,12.560194786367404],[-15.838358383583824,12.556817631827627],[-15.831158311583124,12.558506209097516],[-15.805958059580604,12.565260518177041],[-15.795157951579512,12.57201482725658],[-15.78435784357842,12.583834868145757],[-15.769957699576992,12.592277754495171],[-15.748357483574836,12.583834868145757],[-15.741157411574108,12.588900599955409],[-15.737557375573743,12.590589177225283],[-15.730357303573044,12.592277754495171],[-15.715957159571587,12.582146290875869],[-15.70875708757086,12.582146290875869],[-15.705157051570524,12.585523445415646],[-15.697956979569796,12.583834868145757],[-15.690756907569067,12.575391981796344],[-15.68355683556834,12.558506209097516],[-15.679956799568004,12.550063322748102],[-15.672756727567275,12.54499759093845],[-15.665556655566547,12.5399318591288],[-15.65835658356582,12.538243281858925],[-15.643956439564391,12.536554704589037],[-15.633156331563299,12.5399318591288],[-15.586355863558623,12.558506209097516],[-15.568355683556831,12.577080559066232],[-15.539555395553947,12.615917836273525],[-15.528755287552883,12.624360722622939],[-15.517955179551791,12.62942645443259],[-15.510755107551063,12.636180763512115],[-15.507155071550699,12.64968938167118],[-15.514355143551427,12.656443690750706],[-15.525155251552519,12.659820845290483],[-15.528755287552883,12.666575154370008],[-15.521555215552155,12.673329463449534],[-15.532355323553219,12.696969545227901],[-15.539555395553947,12.72736393608578],[-15.543155431554311,12.757758326943673],[-15.535955359553583,12.783086985991915],[-15.521555215552155,12.78984129507144],[-15.510755107551063,12.78984129507144],[-15.49275492754927,12.78984129507144],[-15.481954819548179,12.78984129507144],[-15.46755467554675,12.79659560415098],[-15.456754567545659,12.803349913230505],[-15.449554495544959,12.813481376849808],[-15.445954459544595,12.825301417738984],[-15.424354243542439,12.805038490500394],[-15.406354063540618,12.799972758690743],[-15.395553955539555,12.81010422231003],[-15.39195391953919,12.83881003589805],[-15.406354063540618,12.821924263199222],[-15.420754207542075,12.823612840469096],[-15.435154351543503,12.828678572278747],[-15.453154531545323,12.83205572681851],[-15.46755467554675,12.825301417738984],[-15.49275492754927,12.806727067770268],[-15.510755107551063,12.803349913230505],[-15.521555215552155,12.803349913230505],[-15.535955359553583,12.801661335960631],[-15.55035550355504,12.794907026881091],[-15.553955539555403,12.779709831452152],[-15.553955539555403,12.722298204276143],[-15.543155431554311,12.683460927068836],[-15.543155431554311,12.673329463449534],[-15.543155431554311,12.658132268020594],[-15.543155431554311,12.64968938167118],[-15.546755467554675,12.642935072591655],[-15.568355683556831,12.622672145353064],[-15.579155791557923,12.612540681733762],[-15.629556295562963,12.56694909544693],[-15.640356403564027,12.560194786367404],[-15.65115651156512,12.558506209097516],[-15.661956619566183,12.563571940907167],[-15.672756727567275,12.570326249986692],[-15.665556655566547,12.600720640844585],[-15.697956979569796,12.61422925900365],[-15.766357663576628,12.626049299892827],[-15.816758167581668,12.595654909034934],[-15.83475834758346,12.590589177225283],[-15.838358383583824,12.593966331765046],[-15.841958419584188,12.600720640844585],[-15.849158491584916,12.609163527194],[-15.85995859958598,12.612540681733762],[-15.874358743587436,12.609163527194],[-15.888758887588864,12.600720640844585],[-15.90315903159032,12.597343486304823],[-15.913959139591384,12.600720640844585],[-15.92835928359284,12.609163527194],[-15.95355953559536,12.626049299892827],[-15.95355953559536,12.631115031702478],[-15.95355953559536,12.637869340782004],[-15.95355953559536,12.642935072591655],[-15.957159571595696,12.646312227131418],[-15.967959679596788,12.648000804401292],[-15.975159751597516,12.64968938167118],[-15.982359823598216,12.653066536210943],[-15.98595985959858,12.661509422560357],[-16.000360003600036,12.686838081608599],[-16.0039600396004,12.690215236148362],[-16.007560075600736,12.69190381341825],[-16.014760147601464,12.696969545227901],[-16.01836018360183,12.717232472466492],[-16.021960219602192,12.729052513355668],[-16.02916029160292,12.729052513355668],[-16.02916029160292,12.722298204276143],[-16.02916029160292,12.717232472466492],[-16.039960399603984,12.696969545227901],[-16.04356043560435,12.690215236148362],[-16.047160471604712,12.656443690750706],[-16.075960759607597,12.639557918051892],[-16.11916119161191,12.632803608972353],[-16.129961299613,12.627737877162701],[-16.147961479614793,12.61422925900365],[-16.15516155161552,12.612540681733762],[-16.165961659616585,12.612540681733762],[-16.191161911619105,12.619294990813287],[-16.227162271622717,12.619294990813287],[-16.23796237962378,12.615917836273525],[-16.259562595625937,12.60747494992411],[-16.27036270362703,12.605786372654237],[-16.28116281162812,12.605786372654237],[-16.31356313563134,12.612540681733762],[-16.324363243632433,12.609163527194],[-16.33876338763386,12.600720640844585],[-16.34596345963459,12.597343486304823],[-16.349563495634953,12.593966331765046],[-16.35676356763568,12.582146290875869],[-16.360363603636017,12.57201482725658],[-16.37116371163711,12.565260518177041],[-16.410764107641057,12.577080559066232],[-16.44676446764467,12.595654909034934],[-16.461164611646097,12.609163527194],[-16.468364683646826,12.622672145353064],[-16.47196471964719,12.624360722622939],[-16.479164791647918,12.627737877162701],[-16.48996489964898,12.631115031702478],[-16.493564935649346,12.639557918051892],[-16.493564935649346,12.64968938167118],[-16.486364863648618,12.658132268020594],[-16.475564755647554,12.66488657710012],[-16.468364683646826,12.666575154370008],[-16.468364683646826,12.673329463449534],[-16.482764827648282,12.673329463449534],[-16.493564935649346,12.681772349798948],[-16.49716497164971,12.693592390688138],[-16.500765007650074,12.70710100884719],[-16.507965079650802,12.626049299892827],[-16.5151651516515,12.626049299892827],[-16.529565295652958,12.642935072591655],[-16.565565655656542,12.673329463449534],[-16.569165691656906,12.693592390688138],[-16.583565835658362,12.685149504338725],[-16.590765907659062,12.673329463449534],[-16.59796597965979,12.663197999830246],[-16.615966159661582,12.659820845290483],[-16.626766267662674,12.663197999830246],[-16.633966339663402,12.669952308909771],[-16.637566375663738,12.680083772529073],[-16.637566375663738,12.693592390688138],[-16.62316623166231,12.718921049736366],[-16.605166051660518,12.73918397697497],[-16.590765907659062,12.762824058753324],[-16.59796597965979,12.79659560415098],[-16.601566015660154,12.76957836783285],[-16.605166051660518,12.762824058753324],[-16.608766087660882,12.75438117240391],[-16.612366123661218,12.749315440594259],[-16.619566195661946,12.745938286054496],[-16.637566375663738,12.729052513355668],[-16.64836648366483,12.718921049736366],[-16.651966519665194,12.705412431577315],[-16.651966519665194,12.683460927068836],[-16.644766447664466,12.648000804401292],[-16.64836648366483,12.632803608972353],[-16.677166771667714,12.619294990813287],[-16.720367203672026,12.583834868145757],[-16.75636756367564,12.57201482725658],[-16.77436774367743,12.582146290875869],[-16.78156781567816,12.609163527194],[-16.78156781567816,12.642935072591655],[-16.777967779677795,12.678395195259185],[-16.759967599676003,12.713855317926729],[-16.734767347673483,12.732429667895431],[-16.69876698766987,12.722298204276143],[-16.69876698766987,12.735806822435194],[-16.713167131671298,12.747626863324385],[-16.734767347673483,12.751004017864147],[-16.752767527675275,12.745938286054496],[-16.770767707677066,12.720609627006255],[-16.785167851678523,12.71216674065684],[-16.795967959679587,12.715543895196603],[-16.78876788767886,12.723986781546017],[-16.78876788767886,12.732429667895431],[-16.78876788767886,12.740872554244845],[-16.795967959679587,12.749315440594259],[-16.77436774367743,12.778021254182264],[-16.770767707677066,12.793218449611217],[-16.77436774367743,12.81010422231003],[-16.78156781567816,12.81010422231003],[-16.78876788767886,12.799972758690743],[-16.792367923679222,12.794907026881091],[-16.79956799567995,12.798284181420854],[-16.803168031680315,12.813481376849808],[-16.79956799567995,12.825301417738984],[-16.795967959679587,12.83881003589805],[-16.759967599676003,12.891155931264407],[-16.75636756367564,12.902975972153584],[-16.75636756367564,12.916484590312649],[-16.759967599676003,12.940124672091002],[-16.76356763567634,12.951944712980179],[-16.759967599676003,12.972207640218784],[-16.74916749167491,13.01442207196584],[-16.74916749167491,13.039750731014081],[-16.74916749167491,13.056636503712909],[-16.752767527675275,13.065079390062323],[-16.767167671676702,13.078588008221388],[-16.785167851678523,13.083653740031039],[-16.785167851678523,13.090408049110565],[-16.78156781567816,13.098850935459978],[-16.77436774367743,13.112359553619044],[-16.777967779677795,13.127556749047983],[-16.795967959679587,13.176525489874578],[-16.795967959679587,13.188345530763769],[-16.795967959679587,13.235625694320476],[-16.795967959679587,13.24913431247954],[-16.803168031680315,13.262642930638606],[-16.821168211682107,13.281217280607308],[-16.82476824768247,13.294725898766373],[-16.817568175681743,13.309923094195312],[-16.821168211682107,13.314988826004964],[-16.828368283682835,13.338628907783317],[-16.821168211682107,13.34876037140262],[-16.810368103681043,13.379154762260512],[-16.79956799567995,13.385909071340038],[-16.78876788767886,13.3892862258798],[-16.77436774367743,13.39604053495934],[-16.76356763567634,13.404483421308754],[-16.7059670596706,13.475403666643814],[-16.677166771667714,13.495666593882419],[-16.677166771667714,13.485535130263116],[-16.669966699666986,13.47878082118359],[-16.662766627666258,13.47371508937394],[-16.651966519665194,13.468649357564288],[-16.633966339663402,13.477092243913702],[-16.615966159661582,13.47878082118359],[-16.601566015660154,13.472026512104051],[-16.590765907659062,13.461895048484763],[-16.583565835658362,13.443320698516047],[-16.59796597965979,13.439943543976284],[-16.612366123661218,13.439943543976284],[-16.62316623166231,13.426434925817219],[-16.608766087660882,13.412926307658168],[-16.594365943659426,13.385909071340038],[-16.587165871658698,13.355514680482145],[-16.590765907659062,13.338628907783317],[-16.554765547655478,13.296414476036261],[-16.54756547565475,13.289660166956722],[-16.493564935649346,13.287971589686848],[-16.479164791647918,13.28459443514707],[-16.468364683646826,13.276151548797657],[-16.461164611646097,13.269397239718131],[-16.450364503645034,13.26433150790848],[-16.428764287642878,13.262642930638606],[-16.417964179641785,13.255888621559066],[-16.41436414364142,13.240691426130127],[-16.41436414364142,13.22211707616141],[-16.417964179641785,13.20860845800236],[-16.399963999639994,13.223805653431299],[-16.3891638916389,13.225494230701187],[-16.378363783637838,13.215362767081885],[-16.3819638196382,13.225494230701187],[-16.403564035640358,13.24406858066989],[-16.40716407164072,13.245757157939778],[-16.40716407164072,13.259265776098829],[-16.41436414364142,13.267708662448243],[-16.425164251642514,13.27108581698802],[-16.43956439564394,13.269397239718131],[-16.43956439564394,13.276151548797657],[-16.410764107641057,13.276151548797657],[-16.39636396363963,13.277840126067545],[-16.385563855638537,13.28459443514707],[-16.374763747637473,13.26433150790848],[-16.36396363963638,13.267708662448243],[-16.349563495634953,13.282905857877196],[-16.335163351633497,13.289660166956722],[-16.31356313563134,13.294725898766373],[-16.277562775627757,13.320054557814615],[-16.259562595625937,13.325120289624266],[-16.23076230762308,13.316677403274852],[-16.227162271622717,13.296414476036261],[-16.23076230762308,13.274462971527782],[-16.227162271622717,13.255888621559066],[-16.209162091620897,13.25082288974943],[-16.183961839618377,13.257577198828955],[-16.151561515615157,13.276151548797657],[-16.151561515615157,13.28459443514707],[-16.16236162361622,13.282905857877196],[-16.173161731617313,13.279528703337434],[-16.18036180361804,13.274462971527782],[-16.191161911619105,13.266020085178369],[-16.198361983619833,13.259265776098829],[-16.201962019620197,13.26433150790848],[-16.209162091620897,13.293037321496485],[-16.209162091620897,13.303168785115787],[-16.209162091620897,13.313300248735075],[-16.216362163621625,13.316677403274852],[-16.223562235622353,13.320054557814615],[-16.223562235622353,13.325120289624266],[-16.227162271622717,13.33356317597368],[-16.227162271622717,13.342006062323094],[-16.223562235622353,13.360580412291796],[-16.216362163621625,13.372400453180973],[-16.176761767617677,13.406171998578628],[-16.16956169561695,13.412926307658168],[-16.165961659616585,13.423057771277456],[-16.16236162361622,13.428123503087107],[-16.151561515615157,13.426434925817219],[-16.133561335613336,13.419680616737693],[-15.993159931599308,13.412926307658168],[-15.942759427594268,13.424746348547345],[-15.921159211592112,13.426434925817219],[-15.91035910359102,13.426434925817219],[-15.906759067590684,13.426434925817219],[-15.899558995589956,13.424746348547345],[-15.892358923589228,13.426434925817219],[-15.8851588515885,13.429812080356982],[-15.8779587795878,13.434877812166633],[-15.874358743587436,13.438254966706396],[-15.870758707587072,13.441632121246172],[-15.849158491584916,13.441632121246172],[-15.78435784357842,13.434877812166633],[-15.762757627576264,13.436566389436521],[-15.705157051570524,13.455140739405223],[-15.697956979569796,13.460206471214875],[-15.67635676356764,13.47371508937394],[-15.669156691566911,13.475403666643814],[-15.65835658356582,13.472026512104051],[-15.643956439564391,13.458517893945],[-15.633156331563299,13.455140739405223],[-15.622356223562235,13.455140739405223],[-15.611556115561143,13.456829316675112],[-15.60075600756008,13.460206471214875],[-15.589955899558987,13.468649357564288],[-15.579155791557923,13.47878082118359],[-15.564755647556467,13.502420902961944],[-15.553955539555403,13.50917521204147],[-15.543155431554311,13.50917521204147],[-15.532355323553219,13.505798057501707],[-15.517955179551791,13.499043748422181],[-15.510755107551063,13.492289439342642],[-15.499954999549999,13.488912284802879],[-15.489154891548907,13.490600862072768],[-15.478354783547843,13.49397801661253],[-15.471154711547115,13.495666593882419],[-15.449554495544959,13.490600862072768],[-15.438754387543867,13.47878082118359],[-15.427954279542803,13.465272203024526],[-15.41715417154171,13.455140739405223],[-15.384753847538462,13.443320698516047],[-15.34155341553415,13.441632121246172],[-15.305553055530538,13.455140739405223],[-15.294752947529474,13.495666593882419],[-15.298352983529838,13.495666593882419],[-15.301953019530202,13.495666593882419],[-15.305553055530538,13.480469398453465],[-15.312753127531266,13.468649357564288],[-15.323553235532358,13.458517893945],[-15.334353343533422,13.455140739405223],[-15.352353523535243,13.456829316675112],[-15.384753847538462,13.466960780294414],[-15.402754027540283,13.468649357564288],[-15.41715417154171,13.47371508937394],[-15.431554315543139,13.485535130263116],[-15.456754567545659,13.505798057501707],[-15.463954639546387,13.510863789311358],[-15.474754747547479,13.50917521204147],[-15.481954819548179,13.505798057501707],[-15.489154891548907,13.502420902961944],[-15.499954999549999,13.505798057501707],[-15.507155071550699,13.50917521204147],[-15.514355143551427,13.51424094385112],[-15.517955179551791,13.51592952112101],[-15.532355323553219,13.519306675660772],[-15.543155431554311,13.526060984740297],[-15.557555575555739,13.527749562010186],[-15.57555575555756,13.522683830200535],[-15.586355863558623,13.51424094385112],[-15.60075600756008,13.495666593882419],[-15.611556115561143,13.488912284802879],[-15.629556295562963,13.488912284802879],[-15.654756547565484,13.500732325692056],[-15.672756727567275,13.502420902961944],[-15.690756907569067,13.499043748422181],[-15.73395733957338,13.475403666643814],[-15.769957699576992,13.465272203024526],[-16.090360903609024,13.439943543976284],[-16.122761227612273,13.45176358486546],[-16.140761407614065,13.455140739405223],[-16.158761587615857,13.450075007595586],[-16.176761767617677,13.441632121246172],[-16.20556205562056,13.419680616737693],[-16.248762487624873,13.379154762260512],[-16.259562595625937,13.372400453180973],[-16.266762667626665,13.36902329864121],[-16.273962739627393,13.362268989561684],[-16.28116281162812,13.360580412291796],[-16.28836288362882,13.365646144101447],[-16.28836288362882,13.372400453180973],[-16.28836288362882,13.38422049407015],[-16.284762847628457,13.39604053495934],[-16.28836288362882,13.406171998578628],[-16.30636306363064,13.390974803149689],[-16.30636306363064,13.382531916800275],[-16.302763027630277,13.372400453180973],[-16.31356313563134,13.367334721371321],[-16.317163171631705,13.365646144101447],[-16.317163171631705,13.358891835021922],[-16.309963099630977,13.357203257752033],[-16.30636306363064,13.35382610321227],[-16.302763027630277,13.352137525942382],[-16.32076320763207,13.342006062323094],[-16.35676356763568,13.338628907783317],[-16.3891638916389,13.336940330513443],[-16.410764107641057,13.338628907783317],[-16.48996489964898,13.357203257752033],[-16.52236522365223,13.358891835021922],[-16.5151651516515,13.367334721371321],[-16.504365043650438,13.392663380419563],[-16.500765007650074,13.402794844038866],[-16.504365043650438,13.41630346219793],[-16.5151651516515,13.436566389436521],[-16.5151651516515,13.445009275785935],[-16.518765187651866,13.45176358486546],[-16.536765367653658,13.465272203024526],[-16.543965439654386,13.475403666643814],[-16.554765547655478,13.482157975723354],[-16.554765547655478,13.485535130263116],[-16.554765547655478,13.505798057501707],[-16.54756547565475,13.548012489248777],[-16.54756547565475,13.563209684677716],[-16.554765547655478,13.576718302836781],[-16.561965619656178,13.586849766456083],[-16.57276572765727,13.602046961885023],[-16.576365763657634,13.612178425504325],[-16.576365763657634,13.64088423909233],[-16.558365583655842,13.656081434521269],[-16.533165331653322,13.667901475410446],[-16.507965079650802,13.688164402649036],[-16.5151651516515,13.691541557188813],[-16.52236522365223,13.698295866268339],[-16.529565295652958,13.701673020808101],[-16.5151651516515,13.713493061697278],[-16.507965079650802,13.728690257126232],[-16.507965079650802,13.740510298015408],[-16.529565295652958,13.742198875285283],[-16.525965259652594,13.727001679856343],[-16.533165331653322,13.706738752617753],[-16.54036540365402,13.693230134458688],[-16.554765547655478,13.694918711728576],[-16.561965619656178,13.672967207220097],[-16.579965799657998,13.659458589061032],[-16.59796597965979,13.65439285725138],[-16.619566195661946,13.659458589061032],[-16.633966339663402,13.678032939029748],[-16.641166411664102,13.69660728899845],[-16.63036630366304,13.735444566205757],[-16.63036630366304,13.760773225253999],[-16.626766267662674,13.770904688873287],[-16.619566195661946,13.784413307032352],[-16.583565835658362,13.824939161509533],[-16.576365763657634,13.838447779668599],[-16.569165691656906,13.835070625128836],[-16.554765547655478,13.82831631604931],[-16.54756547565475,13.824939161509533],[-16.551165511655114,13.82831631604931],[-16.554765547655478,13.845202088748138],[-16.52236522365223,13.851956397827664],[-16.518765187651866,13.831693470589073],[-16.511565115651138,13.813119120620357],[-16.500765007650074,13.80129907973118],[-16.486364863648618,13.804676234270943],[-16.493564935649346,13.826627738779422],[-16.49716497164971,13.851956397827664],[-16.500765007650074,13.872219325066254],[-16.5151651516515,13.87897363414578],[-16.511565115651138,13.892482252304845],[-16.48996489964898,13.987042579418272],[-16.486364863648618,14.002239774847226],[-16.507965079650802,13.971845383989333],[-16.518765187651866,13.951582456750742],[-16.525965259652594,13.911056602273561],[-16.536765367653658,13.88572794322532],[-16.551165511655114,13.868842170526491],[-16.561965619656178,13.872219325066254],[-16.569165691656906,13.872219325066254],[-16.579965799657998,13.858710706907189],[-16.59796597965979,13.853644975097552],[-16.619566195661946,13.851956397827664],[-16.637566375663738,13.845202088748138],[-16.64836648366483,13.836759202398724],[-16.651966519665194,13.82831631604931],[-16.65556655566556,13.819873429699896],[-16.659166591665922,13.811430543350482],[-16.662766627666258,13.806364811540831],[-16.677166771667714,13.799610502461306],[-16.68076680766808,13.794544770651655],[-16.691566915669142,13.775970420682938],[-16.69876698766987,13.769216111603413],[-16.709567095670963,13.774281843413064],[-16.713167131671298,13.782724729762478],[-16.713167131671298,13.796233347921529],[-16.716767167671662,13.806364811540831],[-16.72396723967239,13.811430543350482],[-16.73836738367382,13.819873429699896],[-16.741967419674182,13.840136356938487],[-16.741967419674182,13.860399284177078],[-16.734767347673483,13.872219325066254],[-16.741967419674182,13.887416520495194],[-16.745567455674546,13.902613715924147],[-16.74916749167491,13.934696684051914],[-16.745567455674546,13.951582456750742],[-16.741967419674182,13.961713920370045],[-16.73836738367382,13.96846822944957],[-16.713167131671298,13.985354002148398],[-16.702367023670234,13.99041973395805],[-16.687966879668778,13.99041973395805],[-16.659166591665922,13.987042579418272],[-16.644766447664466,13.98366542487851],[-16.637566375663738,13.975222538529096],[-16.637566375663738,13.961713920370045],[-16.62316623166231,13.973533961259221],[-16.612366123661218,13.98873115668816],[-16.59796597965979,13.997174043037575],[-16.576365763657634,13.98873115668816],[-16.576365763657634,14.01068266119664],[-16.569165691656906,14.020814124815928],[-16.554765547655478,14.027568433895468],[-16.543965439654386,14.037699897514756],[-16.554765547655478,14.032634165705105],[-16.569165691656906,14.03094558843523],[-16.579965799657998,14.032634165705105],[-16.590765907659062,14.042765629324407],[-16.543965439654386,14.071471442912411],[-16.529565295652958,14.084980061071477],[-16.504365043650438,14.117063029199244],[-16.48996489964898,14.12888307008842],[-16.457564575645762,14.137325956437834],[-16.443164431644306,14.15590030640655],[-16.428764287642878,14.160966038216202],[-16.42156421564215,14.157588883676425],[-16.41436414364142,14.149145997327011],[-16.403564035640358,14.145768842787248],[-16.39636396363963,14.1508345745969],[-16.3891638916389,14.154211729136662],[-16.37116371163711,14.162654615486076],[-16.36396363963638,14.167720347295727],[-16.428764287642878,14.169408924565616],[-16.453964539645398,14.179540388184904],[-16.453964539645398,14.201491892693383],[-16.468364683646826,14.19304900634397],[-16.475564755647554,14.179540388184904],[-16.47196471964719,14.164343192755965],[-16.461164611646097,14.154211729136662],[-16.47196471964719,14.147457420057137],[-16.482764827648282,14.147457420057137],[-16.493564935649346,14.152523151866788],[-16.504365043650438,14.154211729136662],[-16.511565115651138,14.1508345745969],[-16.5151651516515,14.144080265517374],[-16.518765187651866,14.133948801898072],[-16.52236522365223,14.125505915548658],[-16.54756547565475,14.081602906531714],[-16.554765547655478,14.071471442912411],[-16.565565655656542,14.06640571110276],[-16.587165871658698,14.061339979293123],[-16.601566015660154,14.054585670213584],[-16.608766087660882,14.042765629324407],[-16.62316623166231,14.019125547546054],[-16.63036630366304,14.01068266119664],[-16.65556655566556,14.002239774847226],[-16.677166771667714,14.007305506656877],[-16.69876698766987,14.014059815736402],[-16.720367203672026,14.015748393006291],[-16.69876698766987,14.057962824753346],[-16.695166951669506,14.064717133832886],[-16.68076680766808,14.069782865642537],[-16.651966519665194,14.100177256500416],[-16.666366663666622,14.095111524690765],[-16.677166771667714,14.076537174722063],[-16.687966879668778,14.071471442912411],[-16.713167131671298,14.071471442912411],[-16.720367203672026,14.068094288372649],[-16.727567275672754,14.064717133832886],[-16.716767167671662,14.051208515673821],[-16.716767167671662,14.042765629324407],[-16.734767347673483,14.022502702085816],[-16.73836738367382,14.015748393006291],[-16.73836738367382,14.000551197577337],[-16.745567455674546,13.992108311227923],[-16.76356763567634,13.970156806719459],[-16.767167671676702,13.961713920370045],[-16.77436774367743,13.933008106782026],[-16.767167671676702,13.838447779668599],[-16.77436774367743,13.838447779668599],[-16.78156781567816,14.03094558843523],[-16.785167851678523,14.059651402023235],[-16.803168031680315,14.10862014284983],[-16.821168211682107,14.144080265517374],[-16.828368283682835,14.154211729136662],[-16.842768427684263,14.159277460946313],[-16.867968679686783,14.166031770025839],[-16.878768787687875,14.174474656375253],[-16.88236882368824,14.189671851804206],[-16.893168931689303,14.243706324440453],[-16.90036900369003,14.26059209713928],[-16.90756907569076,14.272412138028457],[-16.92556925569255,14.29098648799716],[-16.93276932769328,14.29605221980681],[-16.93996939969398,14.297740797076699],[-16.947169471694707,14.301117951616462],[-16.947169471694707,14.314626569775527],[-16.947169471694707,14.324758033394815],[-16.93996939969398,14.345020960633406],[-16.93996939969398,14.355152424252708],[-16.943569435694343,14.372038196951536],[-16.9579695796958,14.390612546920238],[-16.986769867698683,14.421006937778131],[-17.05877058770588,14.453089905905898],[-17.069570695706943,14.464909946795089],[-17.07677076770767,14.47841856495414],[-17.112771127711284,14.530764460320512],[-17.137971379713804,14.59830755111581],[-17.17757177571775,14.652342023752055],[-17.206372063720636,14.679359260070186],[-17.224372243722428,14.691179300959362],[-17.24237242372422,14.699622187308776],[-17.263972639726404,14.702999341848539],[-17.281972819728196,14.70806507365819],[-17.325173251732508,14.72832800089678],[-17.328773287732872,14.736770887246195],[-17.364773647736484,14.73508230997632],[-17.39357393573934,14.740148041785957],[-17.41877418774186,14.738459464516083],[-17.440374403744045,14.721573691817255],[-17.433174331743317,14.713130805467841],[-17.41877418774186,14.709753650928079],[-17.42597425974259,14.694556455499125],[-17.440374403744045,14.6878021464196],[-17.43677436774368,14.686113569149711],[-17.429574295742952,14.677670682800297],[-17.42597425974259,14.674293528260534],[-17.433174331743317,14.66078491010147],[-17.43677436774368,14.659096332831595],[-17.440374403744045,14.654030601021944],[-17.45117451174511,14.662473487371358],[-17.51957519575194,14.743525196325734],[-17.53757537575376,14.757033814484785],[-17.371973719737184,14.800936823501743],[-17.321573215732144,14.839774100709036],[-17.173971739717388,14.900562882424822],[-17.137971379713804,14.927580118742938],[-16.979569795697955,15.111635041160156],[-16.947169471694707,15.157226627446988],[-16.878768787687875,15.233212604591714],[-16.73836738367382,15.472990576915052],[-16.669966699666986,15.562485172218842],[-16.54036540365402,15.773557330954176],[-16.533165331653322,15.783688794573465],[-16.536765367653658,15.793820258192767],[-16.543965439654386,15.809017453621706],[-16.525965259652594,15.977875180609985],[-16.529565295652958,16.065681198643887],[-16.54036540365402,16.26662189375992],[-16.529565295652958,16.33247640728534],[-16.52236522365223,16.351050757254058],[-16.493564935649346,16.40170807535054],[-16.486364863648618,16.452365393447025],[-16.479164791647918,16.465874011606076],[-16.468364683646826,16.492891247924206],[-16.468364683646826,16.6009601931967],[-16.457564575645762,16.643174624943768],[-16.378363783637838,16.840738165520037],[-16.35676356763568,16.874509710917692],[-16.342363423634225,16.942052801713004],[-16.324363243632433,16.97582434711066],[-16.277562775627757,17.039990283366194],[-16.191161911619105,17.21897947397376],[-16.18756187561874,17.244308133022002],[-16.173161731617313,17.26288248299072],[-16.07956079560796,17.544874887061127],[-16.050760507605077,17.666452450492685],[-16.039960399603984,17.79985005481342],[-16.025560255602556,17.96026489545227],[-16.03636036360362,18.14094266332971],[-16.06876068760687,18.483723849115904],[-16.07956079560796,18.51918397178345],[-16.133561335613336,18.628941494325815],[-16.15516155161552,18.752207635027247],[-16.173161731617313,18.792733489504442],[-16.16236162361622,18.816373571282796],[-16.165961659616585,18.843390807600926],[-16.20556205562056,18.983542721001186],[-16.209162091620897,18.995362761890362],[-16.23796237962378,19.061217275415785],[-16.28116281162812,19.130448943480985],[-16.342363423634225,19.196303457006408],[-16.360363603636017,19.213189229705236],[-16.36396363963638,19.21487780697511],[-16.367563675636745,19.22163211605465],[-16.378363783637838,19.223320693324524],[-16.385563855638537,19.225009270594413],[-16.39636396363963,19.228386425134175],[-16.410764107641057,19.238517888753478],[-16.450364503645034,19.250337929642654],[-16.468364683646826,19.25878081599207],[-16.475564755647554,19.270600856881245],[-16.48996489964898,19.312815288628315],[-16.493564935649346,19.331389638597017],[-16.504365043650438,19.349963988565733],[-16.52236522365223,19.365161183994672],[-16.536765367653658,19.380358379423612],[-16.52236522365223,19.39724415212244],[-16.46476464764646,19.3820469566935],[-16.40716407164072,19.388801265773026],[-16.360363603636017,19.415818502091156],[-16.324363243632433,19.458032933838226],[-16.299162991629913,19.49687021104552],[-16.29556295562955,19.515444561014235],[-16.284762847628457,19.5289531791733],[-16.28116281162812,19.535707488252825],[-16.284762847628457,19.54246179733235],[-16.291962919629185,19.545838951872128],[-16.299162991629913,19.547527529142002],[-16.302763027630277,19.54246179733235],[-16.30636306363064,19.54415037460224],[-16.36396363963638,19.48505017015634],[-16.392763927639265,19.46478724291775],[-16.349563495634953,19.545838951872128],[-16.36396363963638,19.539084642792588],[-16.403564035640358,19.50700167466482],[-16.417964179641785,19.49180447923588],[-16.425164251642514,19.48167301561658],[-16.43236432364324,19.47154155199729],[-16.435964359643577,19.4597215111081],[-16.428764287642878,19.447901470218923],[-16.428764287642878,19.441147161139398],[-16.435964359643577,19.42257281117068],[-16.43956439564394,19.412441347551393],[-16.443164431644306,19.410752770281505],[-16.44676446764467,19.40906419301163],[-16.453964539645398,19.40906419301163],[-16.461164611646097,19.40906419301163],[-16.46476464764646,19.412441347551393],[-16.46476464764646,19.414129924821268],[-16.46476464764646,19.41750707936103],[-16.468364683646826,19.42257281117068],[-16.468364683646826,19.431015697520095],[-16.468364683646826,19.456344356568337],[-16.468364683646826,19.46478724291775],[-16.457564575645762,19.47998443834669],[-16.43236432364324,19.505313097394932],[-16.425164251642514,19.52219887009376],[-16.42156421564215,19.54415037460224],[-16.41436414364142,19.55428183822154],[-16.399963999639994,19.561036147301067],[-16.385563855638537,19.574544765460132],[-16.28836288362882,19.71131952432063],[-16.284762847628457,19.71638525613028],[-16.277562775627757,19.719762410670043],[-16.27036270362703,19.72651671974957],[-16.27036270362703,19.734959606098982],[-16.266762667626665,19.755222533337573],[-16.2631626316263,19.763665419686987],[-16.259562595625937,19.765353996956875],[-16.2559625596256,19.768731151496638],[-16.23796237962378,19.787305501465354],[-16.234362343623417,19.79405981054488],[-16.234362343623417,19.804191274164182],[-16.234362343623417,19.812634160513582],[-16.241562415624145,19.821077046862996],[-16.248762487624873,19.827831355942536],[-16.241562415624145,19.83458566502206],[-16.234362343623417,19.843028551371475],[-16.234362343623417,19.85147143772089],[-16.234362343623417,19.86160290134019],[-16.248762487624873,19.853160014990777],[-16.2559625596256,19.848094283181126],[-16.259562595625937,19.864980055879954],[-16.24516245162451,19.888620137658307],[-16.248762487624873,19.902128755817373],[-16.266762667626665,19.91394879670655],[-16.277562775627757,19.905505910357135],[-16.284762847628457,19.890308714928196],[-16.28836288362882,19.881865828578782],[-16.30636306363064,19.873422942229368],[-16.31356313563134,19.87680009676913],[-16.31356313563134,19.890308714928196],[-16.309963099630977,19.902128755817373],[-16.302763027630277,19.91394879670655],[-16.299162991629913,19.922391683055963],[-16.23796237962378,19.979803310231972],[-16.223562235622353,20.00344339201034],[-16.21276212762126,20.03383778286822],[-16.21996219962199,20.057477864646586],[-16.248762487624873,20.108135182743055],[-16.259562595625937,20.135152419061185],[-16.252362523625237,20.135152419061185],[-16.24516245162451,20.135152419061185],[-16.23796237962378,20.138529573600948],[-16.234362343623417,20.1435953054106],[-16.21276212762126,20.175678273538367],[-16.201962019620197,20.195941200776957],[-16.198361983619833,20.214515550745674],[-16.201962019620197,20.233089900714376],[-16.209162091620897,20.24828709614333],[-16.23796237962378,20.2905015278904],[-16.24516245162451,20.29387868243016],[-16.259562595625937,20.29387868243016],[-16.266762667626665,20.298944414239813],[-16.27036270362703,20.307387300589212],[-16.273962739627393,20.317518764208515],[-16.277562775627757,20.320895918748278],[-16.29556295562955,20.33102738236758],[-16.324363243632433,20.396881895893003],[-16.33156331563316,20.405324782242417],[-16.342363423634225,20.412079091321942],[-16.349563495634953,20.417144823131594],[-16.349563495634953,20.427276286750896],[-16.34596345963459,20.43065344129066],[-16.342363423634225,20.432342018560533],[-16.33876338763386,20.43571917310031],[-16.33876338763386,20.440784904909947],[-16.342363423634225,20.445850636719598],[-16.349563495634953,20.457670677608775],[-16.353163531635317,20.47624502757749],[-16.392763927639265,20.569116777421044],[-16.399963999639994,20.582625395580095],[-16.41436414364142,20.589379704659635],[-16.425164251642514,20.60119974554881],[-16.425164251642514,20.626528404597053],[-16.428764287642878,20.64341417729588],[-16.44676446764467,20.63665986821634],[-16.468364683646826,20.650168486375406],[-16.468364683646826,20.656922795454932],[-16.42156421564215,20.668742836344123],[-16.40716407164072,20.67549714542365],[-16.428764287642878,20.677185722693537],[-16.46476464764646,20.672119990883886],[-16.479164791647918,20.67549714542365],[-16.493564935649346,20.690694340852588],[-16.486364863648618,20.697448649932127],[-16.500765007650074,20.726154463520132],[-16.507965079650802,20.731220195329783],[-16.529565295652958,20.739663081679197],[-16.536765367653658,20.69576007266224],[-16.529565295652958,20.59782259100905],[-16.543965439654386,20.56067389107163],[-16.551165511655114,20.57587108650057],[-16.565565655656542,20.587691127389746],[-16.590765907659062,20.602888322818686],[-16.59796597965979,20.6113312091681],[-16.612366123661218,20.634971290946467],[-16.619566195661946,20.646791331835644],[-16.633966339663402,20.655234218185058],[-16.666366663666622,20.670431413613997],[-16.67356673566735,20.677185722693537],[-16.67356673566735,20.689005763582713],[-16.669966699666986,20.69407149539235],[-16.662766627666258,20.69576007266224],[-16.659166591665922,20.697448649932127],[-16.659166591665922,20.70589153628154],[-16.666366663666622,20.714334422630955],[-16.666366663666622,20.72277730898037],[-16.669966699666986,20.73628592713942],[-16.68076680766808,20.749794545298485],[-16.709567095670963,20.770057472537076],[-16.713167131671298,20.776811781616615],[-16.713167131671298,20.795386131585317],[-16.716767167671662,20.80382901793473],[-16.734767347673483,20.82071479063356],[-16.745567455674546,20.86799495419028],[-16.752767527675275,20.879814995079457],[-16.76356763567634,20.891635035968633],[-16.767167671676702,20.906832231397573],[-16.77436774367743,20.922029426826526],[-16.77436774367743,20.937226622255466],[-16.777967779677795,20.932160890445815],[-16.785167851678523,20.928783735906052],[-16.78876788767886,20.9237180040964],[-16.803168031680315,20.937226622255466],[-16.810368103681043,20.952423817684405],[-16.810368103681043,20.969309590383233],[-16.817568175681743,20.98619536308206],[-16.82476824768247,20.9929496721616],[-16.8319683196832,20.999703981241126],[-16.8391683916839,21.00983544486043],[-16.842768427684263,21.02334406301948],[-16.84996849968499,21.03347552663878],[-16.871568715687147,21.063869917496675],[-16.878768787687875,21.079067112925614],[-16.88236882368824,21.09257573108468],[-16.885968859688603,21.10777292651362],[-16.896768967689667,21.136478740101623],[-16.918369183691823,21.158430244610102],[-16.93276932769328,21.151675935530562],[-16.9579695796958,21.10608434924373],[-17.00117001170011,21.05036129933761],[-17.00837008370084,21.04360699025807],[-17.01557015570154,21.031786949368893],[-17.00837008370084,21.01321259940019],[-16.997569975699747,21.018278331209842],[-16.997569975699747,21.001392558511014],[-17.00117001170011,20.964243858573596],[-17.004770047700475,20.932160890445815],[-17.00837008370084,20.9237180040964],[-17.019170191701903,20.91865227228675],[-17.04077040770406,20.911897963207224],[-17.047970479704787,20.90345507685781],[-17.05157051570515,20.895012190508396],[-17.044370443704423,20.886569304158982],[-17.037170371703724,20.876437840539694],[-17.029970299702995,20.86124064511074],[-17.02637026370263,20.854486336031215],[-17.029970299702995,20.84266629514204],[-17.037170371703724,20.80045186339497],[-17.047970479704787,20.77850035888649],[-17.055170551705515,20.766680317997313],[-17.069570695706943,20.792008977045555],[-17.10197101971019,20.837600563332387],[-17.105571055710556,20.86292922238063],[-17.10197101971019,20.876437840539694],[-17.0911709117091,20.900077922318047],[-17.0911709117091,20.913586540477112],[-17.0911709117091,20.962555281303707],[-17.087570875708764,20.979441054002535],[-17.069570695706943,21.03009837209902],[-17.02637026370263,21.328976548868255],[-17.019170191701903,21.364436671535785],[-17.01557015570154,21.37963386696474],[-17.011970119701203,21.42015972144192],[-17.011970119701203,21.44548838049016],[-16.972369723697227,21.592394602969947],[-16.9651696516965,21.636297611986905],[-16.968769687696863,21.67513488919421],[-16.968769687696863,21.697086393702676],[-16.95076950769507,21.724103630020807],[-16.947169471694707,21.735923670909983],[-16.947169471694707,21.74774371179916],[-16.947169471694707,21.759563752688337],[-16.95076950769507,21.764629484497988],[-16.961569615696163,21.776449525387164],[-16.9651696516965,21.781515257196816],[-16.961569615696163,21.79502387535588],[-16.9579695796958,21.82541826621376],[-16.936369363693643,21.865944120690955],[-16.929169291692915,21.908158552438024],[-16.921969219692187,21.931798634216378],[-16.817568175681743,22.131050752062535],[-16.78156781567816,22.166510874730065],[-16.77436774367743,22.17495376107948],[-16.77436774367743,22.18170807015902],[-16.76356763567634,22.205348151937372],[-16.75636756367564,22.210413883747023],[-16.73836738367382,22.22054534736631],[-16.734767347673483,22.22729965644585],[-16.716767167671662,22.261071201843507],[-16.7059670596706,22.276268397272446],[-16.684366843668442,22.28471128362186],[-16.677166771667714,22.28977701543151],[-16.669966699666986,22.294842747241162],[-16.659166591665922,22.294842747241162],[-16.651966519665194,22.291465592701385],[-16.641166411664102,22.28639986089175],[-16.63036630366304,22.274579820002558],[-16.52236522365223,22.315105674479753],[-16.500765007650074,22.330302869908692],[-16.482764827648282,22.35225437441717],[-16.468364683646826,22.377583033465413],[-16.43236432364324,22.49240628781743],[-16.428764287642878,22.510980637786147],[-16.417964179641785,22.521112101405436],[-16.37116371163711,22.568392264962156],[-16.35676356763568,22.583589460391096],[-16.34596345963459,22.647755396646644],[-16.342363423634225,22.73218426014077],[-16.335163351633497,22.75413576464925],[-16.324363243632433,22.789595887316793],[-16.317163171631705,22.806481660015606],[-16.29556295562955,22.831810319063848],[-16.29556295562955,22.84194178268315],[-16.299162991629913,22.850384669032564],[-16.302763027630277,22.85713897811209],[-16.302763027630277,22.868959019001267],[-16.299162991629913,22.875713328080806],[-16.291962919629185,22.89428767804951],[-16.28836288362882,22.89935340985916],[-16.284762847628457,22.902730564398922],[-16.2631626316263,22.9061077189387],[-16.23796237962378,22.911173450748336],[-16.20556205562056,22.938190687066466],[-16.173161731617313,22.973650809733996],[-16.16236162361622,22.993913736972587],[-16.15516155161552,23.014176664211192],[-16.151561515615157,23.034439591449782],[-16.151561515615157,23.059768250498024],[-16.158761587615857,23.08171975500649],[-16.18036180361804,23.08678548681614],[-16.21996219962199,23.076654023196852],[-16.21276212762126,23.095228373165554],[-16.19476194761947,23.125622764023447],[-16.18756187561874,23.137442804912624],[-16.140761407614065,23.177968659389805],[-16.133561335613336,23.184722968469345],[-16.06156061560614,23.345137809108195],[-16.050760507605077,23.35864642726726],[-16.039960399603984,23.363712159076897],[-16.025560255602556,23.375532199966088],[-15.982359823598216,23.446452445301162],[-15.967959679596788,23.512306958826585],[-15.957159571595696,23.530881308795287],[-15.942759427594268,23.551144236033878],[-15.906759067590684,23.610244440479775],[-15.856358563585644,23.662590335846147],[-15.85275852758528,23.667656067655784],[-15.838358383583824,23.679476108544975],[-15.831158311583124,23.6862304176245],[-15.823958239582396,23.69636188124379],[-15.820358203582032,23.716624808482393],[-15.816758167581668,23.72844484937157],[-15.80235802358024,23.750396353880035],[-15.78435784357842,23.76897070384875],[-15.773557735577356,23.787545053817468],[-15.766357663576628,23.812873712865695],[-15.766357663576628,23.856776721882653],[-15.769957699576992,23.875351071851355],[-15.780757807578084,23.898991153629723],[-15.77715777157772,23.904056885439374],[-15.773557735577356,23.912499771788788],[-15.787957879578784,23.904056885439374],[-15.787957879578784,23.892236844550183],[-15.78435784357842,23.878728226391132],[-15.787957879578784,23.86353103096218],[-15.795157951579512,23.856776721882653],[-15.820358203582032,23.839890949183825],[-15.831158311583124,23.836513794644063],[-15.841958419584188,23.836513794644063],[-15.85275852758528,23.838202371913937],[-15.85995859958598,23.836513794644063],[-15.8779587795878,23.823005176484997],[-15.888758887588864,23.81118513559582],[-15.895958959589592,23.799365094706644],[-15.91035910359102,23.76559354930899],[-15.924759247592476,23.74364204480051],[-15.924759247592476,23.736887735720984],[-15.92835928359284,23.725067694831807],[-15.939159391593904,23.704804767593203],[-15.939159391593904,23.69636188124379],[-15.949959499594996,23.684541840354612],[-15.993159931599308,23.64570456314732],[-16.0111601116011,23.655836026766607],[-16.0039600396004,23.672721799465435],[-15.982359823598216,23.69636188124379],[-15.975159751597516,23.711559076672742],[-15.939159391593904,23.774036435658402],[-15.8779587795878,23.85339956734289],[-15.870758707587072,23.86859676277183],[-15.856358563585644,23.887171112740546],[-15.841958419584188,23.902368308169486],[-15.766357663576628,23.959779935345495],[-15.73395733957338,23.97159997623467],[-15.694356943569431,23.99524005801304],[-15.679956799568004,24.007060098902215],[-15.647556475564755,24.010437253441978],[-15.618756187561871,24.025634448870917],[-15.60075600756008,24.047585953379397],[-15.582755827558259,24.069537457887876],[-15.543155431554311,24.11344046690482],[-15.514355143551427,24.152277744112126],[-15.474754747547479,24.177606403160368],[-15.460354603546023,24.191115021319433],[-15.453154531545323,24.209689371288135],[-15.445954459544595,24.221509412177312],[-15.352353523535243,24.290741080242512],[-15.298352983529838,24.344775552878758],[-15.229952299522978,24.44102445726206],[-15.204752047520458,24.46804169358019],[-15.172351723517238,24.493370352628432],[-15.154351543515418,24.50519039351761],[-15.132751327513262,24.51532185713691],[-15.111151111511106,24.520387588946548],[-15.067950679506794,24.527141898026088],[-15.049950499505002,24.538961938915264],[-15.01395013950139,24.562602020693618],[-15.01395013950139,24.58624210247197],[-15.01395013950139,24.591307834281622],[-14.999549995499962,24.61494791605999],[-14.977949779497777,24.641965152378106],[-14.952749527495257,24.658850925076933],[-14.927549275492737,24.672359543236],[-14.909549095490945,24.685868161395064],[-14.895148951489517,24.706131088633654],[-14.884348843488425,24.77029702488919],[-14.862748627486269,24.829397229335086],[-14.851948519485177,24.876677392891807],[-14.841148411484113,24.90538320647981],[-14.837548375483749,24.918891824638862],[-14.837548375483749,24.93577759733769],[-14.841148411484113,24.950974792766644],[-14.844748447484477,24.96448341092571],[-14.837548375483749,24.981369183624523],[-14.844748447484477,24.988123492704062],[-14.837548375483749,25.001632110863127],[-14.833948339483385,25.016829306292067],[-14.83034830348302,25.033715078990895],[-14.83034830348302,25.050600851689723],[-14.83034830348302,25.065798047118662],[-14.841148411484113,25.08774955162714],[-14.844748447484477,25.101258169786206],[-14.841148411484113,25.189064187820108],[-14.848348483484841,25.214392846868336],[-14.819548195481957,25.330904678490242],[-14.812348123481229,25.346101873919196],[-14.783547835478345,25.44741651011215],[-14.736747367473669,25.50482813728817],[-14.72234722347224,25.51664817817735],[-14.715147151471513,25.525091064526762],[-14.686346863468628,25.590945578052185],[-14.6791467914679,25.63484858706913],[-14.675546755467536,25.64160289614867],[-14.668346683466837,25.66017724611737],[-14.661146611466108,25.690571636975264],[-14.62154621546216,25.783443386818817],[-14.5459454594546,25.87969229120212],[-14.52074520745208,25.923595300219077],[-14.513545135451352,25.937103918378142],[-14.509945099450988,25.957366845616733],[-14.49554495544956,26.001269854633676],[-14.488344883448832,26.01477847279274],[-14.491944919449196,26.03166424549157],[-14.481144811448104,26.08738729539769],[-14.484744847448468,26.102584490826644],[-14.491944919449196,26.132978881684537],[-14.488344883448832,26.143110345303825],[-14.481144811448104,26.153241808923127],[-14.47034470344704,26.183636199781006],[-14.466744667446676,26.19376766340031],[-14.409144091440908,26.25962217692573],[-14.40194401944018,26.266376486005257],[-14.35154351543514,26.27650794962456],[-14.297542975429735,26.3018366086728],[-14.214742147421475,26.376134008547638],[-14.200342003420019,26.393019781246466],[-14.19314193141932,26.409905553945293],[-14.178741787417863,26.425102749374233],[-14.157141571415707,26.433545635723647],[-14.045540455404534,26.44367709934295],[-14.027540275402743,26.452119985692363],[-13.923139231392298,26.501088726518958],[-13.743137431374322,26.617600558140865],[-13.620736207362057,26.68852080347594],[-13.559535595355953,26.74930958519171],[-13.501935019350185,26.85906710773409],[-13.480334803348029,26.91141300310045],[-13.462334623346237,26.992464712054826],[-13.433534335343353,27.051564916500723],[-13.401134011340105,27.176519634472044],[-13.383133831338313,27.215356911679336],[-13.300333003330024,27.325114434221717],[-13.300333003330024,27.33018016603137],[-13.307533075330753,27.338623052380782],[-13.307533075330753,27.345377361460308],[-13.293132931329296,27.352131670539833],[-13.23913239132392,27.465266347621977],[-13.206732067320672,27.56826956108482],[-13.206732067320672,27.58853248832341],[-13.199531995319944,27.607106838292125],[-13.181531815318152,27.644255538229544],[-13.177931779317788,27.66282988819826],[-13.177931779317788,27.667895620007897],[-13.17073170731706,27.684781392706725],[-13.159931599315996,27.694912856326027],[-13.131131311313112,27.708421474485093],[-13.098730987309864,27.732061556263446],[-13.06273062730628,27.742193019882748],[-13.04473044730446,27.759078792581562],[-13.001530015300148,27.821556151567222],[-12.979929799297992,27.894164974172185],[-12.9691296912969,27.914427901410775],[-12.951129511295107,27.92793651956984],[-12.933129331293316,27.93806798318913],[-12.839528395283935,27.97015095131691],[-12.659526595265959,27.998856764904914],[-12.511925119251174,27.99547961036515],[-12.335523355233533,28.04782550573151],[-12.061920619206177,28.08835136020869],[-12.051120511205113,28.096794246558105],[-12.029520295202957,28.117057173796695],[-12.022320223202229,28.118745751066584],[-12.004320043200437,28.123811482876235],[-11.781117811178092,28.20992892364025],[-11.48591485914858,28.326440755262155],[-11.45351453514536,28.348392259770634],[-11.42831428314284,28.37540949608875],[-11.388713887138863,28.434509700534647],[-11.374313743137435,28.449706895963587],[-11.356313563135615,28.463215514122652],[-11.341913419134187,28.48010128682148],[-11.334713347133459,28.50036421406007],[-11.327513275132759,28.515561409489024],[-11.266312663126627,28.551021532156554],[-11.21951219512195,28.601678850253037],[-11.212312123121222,28.616876045681977],[-11.16911169111691,28.64051612746033],[-11.161911619116182,28.64727043653987],[-11.154711547115454,28.660779054698935],[-11.147511475114754,28.66753336377846],[-11.115111151111506,28.691173445556814],[-11.111511115111142,28.696239177366465],[-11.089910899108986,28.726633568224358],[-11.064710647106466,28.7519622272726],[-11.046710467104674,28.762093690891888],[-10.762307623076225,28.89042556340297],[-10.693906939069393,28.930951417880166],[-10.611106111061105,28.968100117817585],[-10.575105751057492,28.99005162232605],[-10.452704527045256,29.091366258519017],[-10.348303483034812,29.229829594649402],[-10.319503195031956,29.258535408237407],[-10.301503015030136,29.272044026396472],[-10.265502655026552,29.28386406728565],[-10.247502475024731,29.299061262714588],[-10.225902259022575,29.332832808112244],[-10.200702007020055,29.361538621700248],[-10.186301863018628,29.378424394399076],[-10.182701827018263,29.396998744367792],[-10.1791017910179,29.405441630717206],[-10.143101431014315,29.42908171249556],[-10.135901359013587,29.43414744430521],[-10.12870128701286,29.456098948813676],[-10.085500855008547,29.510133421449922],[-10.081900819008183,29.5219534623391],[-10.078300783007819,29.542216389577703],[-10.071100711007091,29.564167894086168],[-10.063900639006391,29.58443082132476],[-10.053100531005299,29.599628016753712],[-10.006300063000623,29.638465293961005],[-9.999099990999895,29.650285334850196],[-9.991899918999195,29.667171107549024],[-9.948699486994855,29.71613984837562],[-9.81909819098189,29.83940598907705],[-9.71829718297181,29.99644367517614],[-9.653496534965342,30.12646412495711],[-9.646296462964614,30.16361282489453],[-9.628296282962822,30.29194469740561],[-9.61029610296103,30.357799210931034],[-9.606696066960666,30.37806213816964],[-9.61029610296103,30.405079374487755],[-9.621096210962094,30.416899415376932],[-9.639096390963914,30.427030878996234],[-9.653496534965342,30.442228074425174],[-9.66789667896677,30.459113847124],[-9.69309693096929,30.509771165220485],[-9.700297002970018,30.54354271061814],[-9.707497074970746,30.546919865157903],[-9.71829718297181,30.548608442427792],[-9.729097290972902,30.551985596967555],[-9.739897398973994,30.56042848331697],[-9.757897578975786,30.587445719635085],[-9.829898298982982,30.62797157411228],[-9.851498514985138,30.629660151382154],[-9.873098730987294,30.634725883191805],[-9.88749887498875,30.64823450135087],[-9.88749887498875,30.687071778558163],[-9.865898658986595,30.72422047849558],[-9.840698406984075,30.759680601163126],[-9.81909819098189,30.791763569290893],[-9.815498154981555,30.815403651069246],[-9.81189811898119,30.827223691958437],[-9.815498154981555,30.837355155577725],[-9.822698226982254,30.84579804192714],[-9.822698226982254,30.85255235100668],[-9.822698226982254,30.859306660086204],[-9.81909819098189,30.87112670097538],[-9.826298262982618,31.067001664281776],[-9.829898298982982,31.085576014250478],[-9.847898478984774,31.121036136918022],[-9.833498334983346,31.144676218696375],[-9.808298082980826,31.286516709366524],[-9.808298082980826,31.343928336542533],[-9.81189811898119,31.3675684183209],[-9.822698226982254,31.379388459210077],[-9.833498334983346,31.389519922829365],[-9.847898478984774,31.40302854098843],[-9.815498154981555,31.436800086386086],[-9.79389793897937,31.47057163178374],[-9.76869768697685,31.531360413499513],[-9.757897578975786,31.546557608928467],[-9.739897398973994,31.560066227087518],[-9.732697326973266,31.566820536167057],[-9.729097290972902,31.58539488613576],[-9.714697146971474,31.597214927024936],[-9.707497074970746,31.609034967914127],[-9.69309693096929,31.625920740612955],[-9.689496894968954,31.634363626962354],[-9.675096750967498,31.71541533591673],[-9.66789667896677,31.73061253134567],[-9.574295742957418,31.816729972109698],[-9.53469534695347,31.864010135666405],[-9.527495274952742,31.870764444745944],[-9.513095130951314,31.880895908365233],[-9.505895058950586,31.887650217444772],[-9.498694986949857,31.89778168106406],[-9.487894878948794,31.91466745376289],[-9.48429484294843,31.923110340112302],[-9.365493654936557,32.026113553575144],[-9.354693546935465,32.046376480813734],[-9.347493474934737,32.06157367624269],[-9.333093330933309,32.10209953071987],[-9.333093330933309,32.11729672614881],[-9.329493294932945,32.13080534430787],[-9.293492934929333,32.16964262151518],[-9.279092790927905,32.196659857833296],[-9.268292682926813,32.22705424869119],[-9.264692646926477,32.33005746215403],[-9.268292682926813,32.33512319396368],[-9.286292862928633,32.343566080313096],[-9.293492934929333,32.35032038939262],[-9.289892898928997,32.3722718939011],[-9.282692826928269,32.38746908933004],[-9.257492574925749,32.43306067561687],[-9.25029250292502,32.45332360285548],[-9.246692466924657,32.47189795282418],[-9.253892538925385,32.48878372552301],[-9.264692646926477,32.49891518914231],[-9.271892718927177,32.51242380730136],[-9.279092790927905,32.52930958000019],[-9.279092790927905,32.546195352699016],[-9.261092610926113,32.57658974355691],[-9.113491134911357,32.68297011155951],[-8.99828998289982,32.797793365911545],[-8.901089010890104,32.855204993087554],[-8.868688686886856,32.88222222940567],[-8.753487534875347,33.01055410191677],[-8.627486274862747,33.127065933538674],[-8.620286202862019,33.13888597442785],[-8.620286202862019,33.1523945925869],[-8.620286202862019,33.17434609709538],[-8.61308613086129,33.18616613798456],[-8.53028530285303,33.26890642420881],[-8.519485194851939,33.272283578748585],[-8.51228512285121,33.270595001478696],[-8.501485014850147,33.26215211512928],[-8.494284942849418,33.25877496058952],[-8.469084690846898,33.260463537859394],[-8.451084510845106,33.26384069239917],[-8.415084150841494,33.280726465098],[-8.37908379083791,33.30436654687635],[-8.321483214832142,33.365155328592124],[-8.28548285482853,33.390483987640366],[-8.242282422824218,33.40399260579943],[-8.105481054810554,33.43100984211755],[-8.011880118801173,33.46646996478509],[-7.961479614796133,33.48504431475379],[-7.914679146791457,33.495175778373095],[-7.893078930789301,33.50361866472251],[-7.871478714787145,33.52725874650086],[-7.846278462784625,33.53570163285028],[-7.777877778777793,33.552587405549104],[-7.738277382773816,33.57116175551782],[-7.720277202772024,33.57453891005758],[-7.702277022770232,33.582981796407],[-7.684276842768412,33.599867569105825],[-7.66627666276662,33.61337618726489],[-7.648276482764828,33.60831045545524],[-7.637476374763736,33.615064764534765],[-7.626676266762672,33.61337618726489],[-7.61587615876158,33.60999903272511],[-7.605076050760488,33.60831045545524],[-7.597875978759788,33.611687609995],[-7.579875798757968,33.620130496344416],[-7.551075510755112,33.62519622815407],[-7.5294752947529275,33.63195053723359],[-7.511475114751136,33.642082000852895],[-7.497074970749708,33.65052488720231],[-7.4646746467464595,33.68598500986984],[-7.435874358743575,33.697805050759015],[-7.407074070740691,33.72651086434702],[-7.385473854738535,33.73326517342656],[-7.392673926739263,33.724822287077146],[-7.3746737467374714,33.719756555267494],[-7.353073530735287,33.724822287077146],[-7.342273422734223,33.73157659615667],[-7.266672666726663,33.77210245063385],[-7.230672306723051,33.80080826422186],[-7.194671946719467,33.817694036920685],[-7.151471514715155,33.829514077809876],[-7.115471154711543,33.83457980961951],[-7.101071010710115,33.839645541429164],[-7.0686706867068665,33.86328562320752],[-7.032670326703254,33.87341708682682],[-6.92826928269281,33.94433733216189],[-6.823868238682394,34.03889765927532],[-6.733867338673377,34.16216379997677],[-6.669066690666909,34.28036420886855],[-6.557465574655737,34.417138967729045],[-6.546665466654673,34.43402474042787],[-6.532265322653217,34.474550594905054],[-6.507065070650697,34.50494498576295],[-6.291062910629108,34.8814977169468],[-6.204662046620456,35.1246528438099],[-6.024660246602451,35.50120557499375],[-6.0174601746017515,35.51977992496245],[-6.0174601746017515,35.54510858401069],[-6.0138601386013875,35.558617202169756],[-5.9922599225992315,35.59914305664694],[-5.970659706597047,35.653177529283184],[-5.967059670596711,35.6616204156326],[-5.963459634596347,35.67006330198201],[-5.952659526595255,35.68526049741095],[-5.949059490594891,35.69539196103025],[-5.941859418594191,35.74267212458696],[-5.934659346593463,35.76631220636533],[-5.927459274592735,35.78150940179427],[-5.909459094590943,35.796706597223206],[-5.873458734587331,35.80177232903286],[-5.779857798577979,35.79164086541357],[-5.769057690576886,35.793329442683444],[-5.743857438574366,35.81528094719192],[-5.7294572945729385,35.82203525627145],[-5.711457114571147,35.83047814262086],[-5.693456934569326,35.83385529716064],[-5.682656826568262,35.82878956535099],[-5.6646566465664705,35.83554387443051],[-5.63945639456395,35.83554387443051],[-5.61425614256143,35.83216671989075],[-5.599855998559974,35.82203525627145],[-5.53865538655387,35.85074106985947],[-5.524255242552414,35.86256111074864],[-5.48825488254883,35.8963326561463],[-5.47025470254701,35.90984127430535],[-5.448654486544854,35.918284160654764],[-5.4414544145441255,35.918284160654764],[-5.434254342543426,35.914907006115],[-5.4234542345423336,35.908152697035476],[-5.41265412654127,35.90984127430535],[-5.409054090540906,35.91659558338489],[-5.409054090540906,35.925038469734304],[-5.405454054540542,35.92672704700418],[-5.3982539825398135,35.925038469734304],[-5.383853838538386,35.92672704700418],[-5.365853658536565,35.925038469734304],[-5.344253442534409,35.914907006115],[-5.326253262532617,35.90477554249571],[-5.308253082530825,35.901398387955936],[-5.283052830528305,35.91152985157524],[-5.290252902529005,35.89126692433665],[-5.3370533705337095,35.86256111074864],[-5.340653406534045,35.84736391531969],[-5.344253442534409,35.83216671989075],[-5.340653406534045,35.8085266381124],[-5.326253262532617,35.756180742746025],[-5.322653226532253,35.713966310998956],[-5.319053190531889,35.70214627010978],[-5.3118531185311895,35.69201480649049],[-5.304653046530461,35.68526049741095],[-5.297452974529733,35.68357192014108],[-5.283052830528305,35.68694907468084],[-5.275852758527577,35.68526049741095],[-5.275852758527577,35.680194765601314],[-5.275852758527577,35.66499757017236],[-5.275852758527577,35.658243261092835],[-5.261452614526149,35.60420878845659],[-5.250652506525057,35.583945861218],[-5.229052290522901,35.568748665789045],[-5.185851858518589,35.5434200067408],[-5.149851498514977,35.51640277042269],[-5.0670506705066884,35.41677671149961],[-5.052650526505261,35.408333825150194],[-5.0274502745027405,35.40326809334054],[-5.009450094500949,35.39989093880078],[-4.987849878498793,35.388070897911604],[-4.955449554495544,35.36274223886336],[-4.92664926649266,35.330659270735595],[-4.908649086490868,35.31377349803677],[-4.865448654486528,35.301953457147576],[-4.811448114481152,35.25973902540052],[-4.771847718477176,35.241164675431804],[-4.627846278462783,35.205704552764274],[-4.494644946449455,35.18037589371603],[-4.375843758437583,35.15167008012803],[-4.3470434704346985,35.14998150285814],[-4.3254432544325425,35.15504723466779],[-4.267842678426774,35.18544162552567],[-4.13104131041311,35.204015975494386],[-4.048240482404822,35.23609894362215],[-3.9618396183961693,35.24960756178122],[-3.9186391863918573,35.266493334480046],[-3.907839078390765,35.25467329359087],[-3.911439114391129,35.25129613905111],[-3.9258392583925854,35.24791898451133],[-3.9294392943929495,35.24454182997157],[-3.9258392583925854,35.23778752089204],[-3.9186391863918573,35.231033211812516],[-3.9042390423904294,35.21414743911369],[-3.889838898388973,35.20908170730404],[-3.868238682386817,35.20739313003415],[-3.839438394383933,35.205704552764274],[-3.821438214382141,35.20739313003415],[-3.789037890378893,35.20908170730404],[-3.7638376383763728,35.219213170923325],[-3.7566375663756446,35.23609894362215],[-3.745837458374581,35.26311617994028],[-3.727837278372789,35.281690529908985],[-3.6990369903699047,35.2901334162584],[-3.6738367383673847,35.288444838988525],[-3.6558365583655643,35.27662479809935],[-3.6126361263612523,35.24454182997157],[-3.5910359103590963,35.23272178908239],[-3.515435154351536,35.224278902732976],[-3.490234902349016,35.21077028457391],[-3.475834758347588,35.21077028457391],[-3.465034650346496,35.2124588618438],[-3.4542345423454037,35.2124588618438],[-3.44343443434434,35.20908170730404],[-3.421834218342184,35.20063882095462],[-3.414634146341456,35.19726166641486],[-3.3606336063360516,35.19388451187508],[-3.3210332103321036,35.2023273982245],[-3.1950319503195033,35.23778752089204],[-3.1734317343173473,35.24960756178122],[-3.130231302313007,35.288444838988525],[-3.119431194311943,35.293510570798176],[-3.108631086310851,35.293510570798176],[-3.1014310143101227,35.2901334162584],[-3.090630906309059,35.28675626171864],[-3.0762307623076026,35.288444838988525],[-3.043830438304383,35.31377349803677],[-3.0078300783007705,35.393136629721255],[-2.9790297902978864,35.42521959784902],[-2.9826298262982505,35.43535106146831],[-2.9790297902978864,35.443793947817724],[-2.9682296822968226,35.4471711023575],[-2.9574295742957304,35.44041679327796],[-2.9538295382953663,35.433662484198436],[-2.9574295742957304,35.41508813422972],[-2.9538295382953663,35.40326809334054],[-2.9646296462964585,35.37287370248265],[-2.9502295022950307,35.33572500254523],[-2.9466294662946666,35.330659270735595],[-2.9466294662946666,35.328970693465706],[-2.9214292142921465,35.288444838988525],[-2.9142291422914184,35.27662479809935],[-2.8998289982899905,35.25973902540052],[-2.9070290702906902,35.25129613905111],[-2.9106291062910543,35.23609894362215],[-2.9142291422914184,35.219213170923325],[-2.9106291062910543,35.18713020279556],[-2.903429034290326,35.17362158463649],[-2.8962289622896265,35.161801543747316],[-2.88182881828817,35.14660434831838],[-2.85662856628565,35.13140715288942],[-2.8206282062820662,35.121275689270135],[-2.74862748627487,35.116209957460484],[-2.791827918279182,35.14491577104849],[-2.8674286742867423,35.21752459365345],[-2.88182881828817,35.23778752089204],[-2.878228782287806,35.246230407241455],[-2.8638286382863782,35.23778752089204],[-2.817028170281702,35.19388451187508],[-2.809828098280974,35.183753048255795],[-2.759427594275934,35.143227193778614],[-2.719827198271986,35.12296426654002],[-2.6658266582665817,35.10776707111107],[-2.5614256142561374,35.09594703022189],[-2.5182251822518253,35.099324184761656],[-2.4930249302493053,35.10438991657131],[-2.478624786247849,35.11283280292072],[-2.457024570245693,35.13309573015931],[-2.435424354243537,35.14491577104849],[-2.417424174241745,35.14998150285814],[-2.320223202232029,35.11958711200025],[-2.2986229862298444,35.116209957460484],[-2.2770227702276884,35.10945564838096],[-2.2482224822248043,35.09763560749178],[-2.223022230222284,35.08919272114237],[-2.201422014220128,35.09594703022189],[-2.197821978219764,35.094258452952005],[-2.1942219422194285,35.094258452952005],[-2.1906219062190644,35.09256987568213],[-2.1870218702187003,35.08919272114237],[-2.158221582215816,35.101012762031544],[-2.122221222212204,35.094258452952005],[-2.08622086220862,35.08243841206283],[-2.053820538205372,35.0756841029833],[-1.9890198901989038,35.08243841206283],[-1.9638196381963837,35.0756841029833],[-1.9566195661956556,35.0756841029833],[-1.9494194941949274,35.07737268025318],[-1.9314193141931355,35.08919272114237],[-1.8378183781837834,35.11114422565083],[-1.8126181261812633,35.126341421079786],[-1.8054180541805351,35.12802999834966],[-1.773017730177287,35.12802999834966],[-1.7622176221762231,35.12971857561955],[-1.7442174421744028,35.13816146196896],[-1.711817118171183,35.17024443009673],[-1.6506165061650506,35.188818780065446],[-1.6362163621636228,35.19388451187508],[-1.6290162901628946,35.2124588618438],[-1.5102151021510224,35.29519914806805],[-1.492214922149202,35.3002648798777],[-1.3950139501394858,35.308707766227116],[-1.3698136981369657,35.31546207530664],[-1.362613626136266,35.318839229846404],[-1.359013590135902,35.32221638438618],[-1.3338133381333819,35.3492336207043],[-1.3122131221312259,35.35429935251395],[-1.2942129421294055,35.364430816133236],[-1.2798127981279777,35.3779394342923],[-1.2690126901268854,35.38975947518148],[-1.2582125821258217,35.41002240242007],[-1.2474124741247294,35.45730256597679],[-1.2366123661236657,35.475876915945506],[-1.2258122581225734,35.491074111374445],[-1.1898118981189612,35.56537151124928],[-1.1826118261182614,35.57719155213846],[-1.1718117181171692,35.58056870667822],[-1.1466114661146491,35.58225728394811],[-1.143011430114285,35.58732301575776],[-1.117811178111765,35.617717406615654],[-1.1070110701107012,35.62278313842529],[-1.0818108181081811,35.637980333854244],[-1.053010530105297,35.6616204156326],[-1.0386103861038407,35.67681761106154],[-1.031410314103141,35.68188334287119],[-0.9954099540995287,35.6903262292206],[-0.9774097740977368,35.700457692839905],[-0.9630096300962805,35.71058915645919],[-0.9450094500944886,35.71903204280861],[-0.9234092340923326,35.725786351888146],[-0.9090090900909047,35.72409777461826],[-0.9054090540905406,35.715654888268844],[-0.8982089820898125,35.71227773372908],[-0.8874088740887487,35.715654888268844],[-0.8478084780847723,35.73422923823756],[-0.8262082620826163,35.7680007836352],[-0.8010080100800963,35.77475509271474],[-0.7938079380793681,35.76968936090509],[-0.7866078660786684,35.762935051825565],[-0.7758077580775762,35.756180742746025],[-0.765007650076484,35.75280358820626],[-0.7542075420754202,35.75280358820626],[-0.7362073620736282,35.74773785639661],[-0.721807218072172,35.74604927912674],[-0.7110071100711082,35.74267212458696],[-0.7074070740707441,35.735917815507435],[-0.700207002070016,35.72747492915802],[-0.6930069300692878,35.71903204280861],[-0.682206822068224,35.71734346553873],[-0.6462064620646117,35.71903204280861],[-0.6282062820628198,35.72240919734837],[-0.6066060660606638,35.73085208369778],[-0.5886058860588435,35.74267212458696],[-0.5778057780577797,35.77137793817498],[-0.5634056340563234,35.77306651544485],[-0.5526055260552596,35.76968936090509],[-0.5418054180541674,35.7680007836352],[-0.5310053100531036,35.77306651544485],[-0.5238052380523754,35.77982082452439],[-0.47700477004769937,35.85918395620887],[-0.47700477004769937,35.86931541982817],[-0.47700477004769937,35.87269257436793],[-0.48060480604806344,35.87944688344747],[-0.48060480604806344,35.886201192527],[-0.48060480604806344,35.88957834706676],[-0.4734047340473353,35.89126692433665],[-0.4698046980469712,35.88957834706676],[-0.4626046260462431,35.88451261525711],[-0.45900459004590743,35.88451261525711],[-0.4482044820448152,35.88451261525711],[-0.4266042660426592,35.882824037987234],[-0.4194041940419311,35.88451261525711],[-0.37620376203761907,35.89970981068606],[-0.3474034740347349,35.90646411976559],[-0.3366033660336427,35.901398387955936],[-0.33300333003330707,35.88957834706676],[-0.32220322203221485,35.88451261525711],[-0.307803078030787,35.881135460717346],[-0.30060300603005885,35.87775830617758],[-0.2970029700296948,35.86762684255828],[-0.3042030420304229,35.85411822439923],[-0.30060300603005885,35.84229818351005],[-0.28620286202860257,35.82878956535099],[-0.2610026100260825,35.81696952446181],[-0.18900189001888634,35.80514948357262],[-0.14580145801457434,35.78995228814368],[-0.12420124201241833,35.78657513360392],[-0.11340113401132612,35.78826371087381],[-0.08460084600844198,35.79501801995333],[-0.0378003780037659,35.813592369922034],[-0.0018000180001820354,35.83554387443051],[0.0018000180001820354,35.8372324517004],[0.03420034200343025,35.86256111074864],[0.07020070200701412,35.92166131519453],[0.08100081000810633,35.94698997424277],[0.11340113401135454,36.00946733322843],[0.12420124201241833,36.033107415006796],[0.12420124201241833,36.04492745589597],[0.1278012780127824,36.049993187705624],[0.13500135001351055,36.05505891951526],[0.14580145801457434,36.06012465132491],[0.15300153001530248,36.06519038313456],[0.20340203402034263,36.105716237611745],[0.2178021780217989,36.11584770123105],[0.2826028260282669,36.13442205119975],[0.29340293402935913,36.14117636027929],[0.30060300603005885,36.147930669358814],[0.32220322203221485,36.15806213297812],[0.329403294032943,36.16481644205764],[0.33300333003330707,36.173259328407056],[0.33660336603367114,36.19689941018541],[0.3438034380343993,36.20534229653482],[0.3618036180361912,36.21378518288424],[0.3834038340383472,36.217162337424],[0.4266042660426592,36.21885091469389],[0.4518045180451793,36.22391664650354],[0.46980469804699965,36.23235953285295],[0.4842048420484275,36.24417957374213],[0.5562055620556237,36.28470542821931],[0.5958059580596,36.293148314568725],[0.6102061020610279,36.3049683554579],[0.6282062820628198,36.31847697361697],[0.6426064260642761,36.32860843723627],[0.6642066420664321,36.33198559177603],[0.7398073980739923,36.33705132358568],[0.7542075420754202,36.33873990085556],[0.7686076860768765,36.3454942099351],[0.8010080100800963,36.3640685599038],[0.8658086580865927,36.377577178062865],[0.8802088020880205,36.38770864168215],[0.8910089100891128,36.39615152803157],[0.9126091260912688,36.40966014619063],[0.923409234092361,36.418103032540046],[0.9306093060930607,36.42654591888946],[0.9306093060930607,36.43498880523887],[0.9378093780937888,36.44343169158829],[0.945009450094517,36.4518745779377],[0.9630096300963089,36.45862888701723],[1.006210062100621,36.46707177336664],[1.0458104581045973,36.48733470060523],[1.1178111781117934,36.48733470060523],[1.1394113941139494,36.49408900968477],[1.1790117901178974,36.5109747823836],[1.2042120421204174,36.51435193692336],[1.2438124381243938,36.51435193692336],[1.2654126541265498,36.51604051419325],[1.2870128701287058,36.52110624600289],[1.3482134821348382,36.544746327781255],[1.36621366213663,36.54812348232102],[1.384213842138422,36.544746327781255],[1.431014310143098,36.532926286892064],[1.452614526145254,36.52786055508243],[1.4778147781477742,36.5295491323523],[1.5174151741517505,36.537992018701715],[1.7010170101701192,36.54643490505113],[1.715417154171547,36.54812348232102],[1.7262172621726393,36.54981205959089],[1.7514175141751593,36.559943523210194],[1.7622176221762231,36.56163210048008],[1.7694176941769513,36.559943523210194],[1.7910179101791073,36.55487779140054],[1.8018180181801995,36.55487779140054],[1.8558185581855753,36.56669783228972],[1.9134191341913436,36.570074986829496],[1.9602196021960197,36.56163210048008],[1.974619746197476,36.56163210048008],[2.0610206102061,36.570074986829496],[2.3094230942309366,36.63086376854527],[2.331023310233121,36.63761807762479],[2.352623526235277,36.63761807762479],[2.374223742237433,36.63424092308503],[2.392223922239225,36.62410945946574],[2.399423994239953,36.61566657311633],[2.399423994239953,36.605535109497026],[2.403024030240317,36.5987808004175],[2.417424174241745,36.59709222314761],[2.4282242822428373,36.595403645877724],[2.446224462244629,36.59033791406809],[2.4570245702457214,36.59033791406809],[2.6010260102601137,36.59709222314761],[2.633426334263362,36.605535109497026],[2.727027270272714,36.664635313942924],[2.791827918279182,36.69334112753093],[2.817028170281702,36.710226900229756],[2.8422284222842222,36.740621291087635],[2.8494284942849504,36.7541299092467],[2.8746287462874704,36.77439283648529],[2.9322293222932387,36.808164381882946],[2.9754297542975507,36.81660726823236],[2.986229862298643,36.814918690962486],[3.0150301503014987,36.81154153642271],[3.047430474304747,36.794655763723895],[3.072630726307267,36.77101568194553],[3.101431014310151,36.752441331976826],[3.141031410314099,36.74230986835752],[3.1734317343173473,36.74230986835752],[3.1806318063180754,36.74230986835752],[3.2094320943209595,36.75750706378646],[3.2202322023220233,36.77101568194553],[3.2274322743227515,36.78621287737448],[3.2274322743227515,36.81154153642271],[3.2382323823238437,36.8132301136926],[3.3030330303303117,36.789590031914244],[3.339033390333924,36.78114714556483],[3.4614346143461603,36.77439283648529],[3.479434794347952,36.77776999102507],[3.5190351903519,36.78621287737448],[3.540635406354056,36.789590031914244],[3.5514355143551484,36.79127860918412],[3.5586355863558765,36.79803291826366],[3.5658356583565762,36.80478722734318],[3.5694356943569403,36.808164381882946],[3.5802358023580325,36.809852959152835],[3.6018360183601885,36.808164381882946],[3.6126361263612807,36.808164381882946],[3.6486364863648646,36.8233615773119],[3.709837098370997,36.87401889540837],[3.7422374223742167,36.8909046681072],[3.828638286382869,36.912856172615676],[3.8754387543875453,36.91792190442533],[3.9114391143911575,36.91116759534579],[3.9474394743947414,36.892593245377086],[3.9654396543965618,36.8909046681072],[3.9762397623976256,36.892593245377086],[3.9978399783997816,36.89765897718674],[4.03024030240303,36.89765897718674],[4.041040410404122,36.89765897718674],[4.084240842408434,36.892593245377086],[4.10584105841059,36.88415035902767],[4.145441454414538,36.9010361317265],[4.159841598415994,36.90441328626626],[4.170641706417058,36.90272470899639],[4.195841958419578,36.892593245377086],[4.210242102421034,36.8909046681072],[4.221042210422098,36.894281822646974],[4.249842498424982,36.907790440806025],[4.2606426064260745,36.91116759534579],[4.278642786427866,36.91116759534579],[4.307443074430751,36.9010361317265],[4.3218432184321784,36.89765897718674],[4.440644406444079,36.91116759534579],[4.451444514445143,36.90947901807591],[4.469444694446963,36.90610186353615],[4.483844838448391,36.9010361317265],[4.491044910449119,36.894281822646974],[4.505445054450547,36.88921609083732],[4.537845378453795,36.88921609083732],[4.552245522455223,36.88415035902767],[4.581045810458107,36.894281822646974],[4.5918459184591995,36.89597039991685],[4.624246242462419,36.89597039991685],[4.696246962469644,36.8909046681072],[4.76824768247684,36.89765897718674],[4.786247862478632,36.89597039991685],[4.948249482494845,36.84024735001073],[4.969849698497001,36.825050154581774],[4.973449734497365,36.81829584550225],[4.9842498424984285,36.81660726823236],[4.998649986499885,36.81660726823236],[5.009450094500949,36.81660726823236],[5.016650166501677,36.81154153642271],[5.023850238502405,36.79803291826366],[5.0274502745027405,36.794655763723895],[5.045450454504561,36.787901454644356],[5.067050670506717,36.782835722834704],[5.085050850508509,36.78114714556483],[5.103051030510301,36.78114714556483],[5.085050850508509,36.732178404738235],[5.088650886508873,36.71698120930928],[5.117451174511757,36.700095436610454],[5.236252362523629,36.65112669578386],[5.2686526865268775,36.64437238670433],[5.304653046530461,36.642683809434445],[5.373053730537322,36.65112669578386],[5.427054270542726,36.664635313942924],[5.434254342543426,36.664635313942924],[5.46305463054631,36.664635313942924],[5.470254702547038,36.66801246848269],[5.481054810548102,36.67983250937186],[5.48825488254883,36.684898241181514],[5.527855278552806,36.69840685934058],[5.549455494554962,36.710226900229756],[5.56385563855639,36.745687022897286],[5.574655746557482,36.76088421832624],[5.592655926559274,36.77439283648529],[5.610656106561066,36.78114714556483],[5.657456574565742,36.79127860918412],[5.675456754567563,36.79972149553353],[5.711457114571147,36.825050154581774],[5.733057330573303,36.831804463661314],[5.758257582575823,36.83349304093119],[5.826658266582683,36.82167300004201],[5.869858698586995,36.8233615773119],[6.0354603546035435,36.85375596816978],[6.197461974619756,36.90272470899639],[6.237062370623704,36.92129905896509],[6.255062550625524,36.94662771801333],[6.25866258662586,36.96689064525192],[6.255062550625524,36.98377641795075],[6.255062550625524,36.99897361337969],[6.265862658626588,37.017547963348406],[6.273062730627316,37.02430227242793],[6.316263162631628,37.0479423542063],[6.330663306633085,37.06145097236535],[6.337863378633784,37.069893858714764],[6.370263702637033,37.08340247687383],[6.417064170641709,37.09353394049313],[6.463864638646385,37.09353394049313],[6.503465034650361,37.08340247687383],[6.539465394653945,37.059762395095476],[6.543065430654309,37.05807381782559],[6.543065430654309,37.0479423542063],[6.546665466654673,37.04118804512676],[6.553865538655401,37.03612231331711],[6.561065610656101,37.034433736047234],[6.571865718657193,37.027679426967694],[6.582665826658285,36.990530727030276],[6.600666006660077,36.97364495433145],[6.615066150661505,36.977022108871225],[6.6330663306633255,36.971956377061574],[6.6510665106651174,36.96351349071216],[6.6726667266672735,36.9601363361724],[6.82026820268203,36.95338202709286],[6.834668346683486,36.94831629528322],[6.852668526685278,36.939873408933806],[6.87066870668707,36.929741945314504],[6.881468814688162,36.91792190442533],[6.877868778687798,36.90272470899639],[6.910269102691046,36.892593245377086],[6.949869498694994,36.88921609083732],[6.975069750697514,36.8909046681072],[7.065070650706502,36.912856172615676],[7.093870938709387,36.92636479077474],[7.108271082710843,36.9196104816952],[7.133471334713363,36.914544749885565],[7.158671586715883,36.914544749885565],[7.165871658716583,36.92298763623498],[7.176671766717675,36.93143052258439],[7.219872198721987,36.9601363361724],[7.234272342723443,36.96689064525192],[7.237872378723807,36.971956377061574],[7.248672486724871,36.98208784068086],[7.255872558725599,36.99390788157005],[7.255872558725599,37.00403934518934],[7.255872558725599,37.01585938607852],[7.252272522725235,37.02261369515806],[7.212672126721287,37.05638524055571],[7.180271802718039,37.0766481677943],[7.180271802718039,37.08340247687383],[7.191071910719103,37.08509105414372],[7.212672126721287,37.08846820868348],[7.223472234722351,37.090156785953354],[7.234272342723443,37.08677963141359],[7.252272522725235,37.07833674506418],[7.259472594725963,37.0766481677943],[7.263072630726327,37.0766481677943],[7.266672666726663,37.074959590524415],[7.270272702727027,37.07158243598465],[7.273872738727391,37.069893858714764],[7.281072810728119,37.07327101325454],[7.288272882728847,37.080025322334066],[7.291872918729183,37.08171389960394],[7.299072990729911,37.08340247687383],[7.306273062730639,37.080025322334066],[7.324273242732431,37.07158243598465],[7.3350733507335235,37.069893858714764],[7.345873458734587,37.07158243598465],[7.371073710737107,37.08340247687383],[7.3818738187382,37.08340247687383],[7.385473854738564,37.08171389960394],[7.385473854738564,37.07833674506418],[7.392673926739263,37.069893858714764],[7.3998739987399915,37.05807381782559],[7.403474034740356,37.05131950874606],[7.4178741787417835,37.04963093147617],[7.439474394743968,37.0479423542063],[7.446674466744668,37.04625377693641],[7.45747457474576,37.04118804512676],[7.471874718747188,37.04963093147617],[7.489874898749008,37.054696663285824],[7.525875258752592,37.032745158777345],[7.554675546755476,37.0074164997291],[7.590675906759088,36.98715357249051],[7.6338763387634,36.98039926341099],[7.644676446764464,36.98208784068086],[7.651876518765192,36.98546499522064],[7.6626766267662845,36.9888421497604],[7.673476734767348,36.98715357249051],[7.6842768427684405,36.98208784068086],[7.695076950769504,36.977022108871225],[7.7058770587705965,36.970267799791685],[7.713077130771325,36.96351349071216],[7.759877598776001,36.96689064525192],[7.7706777067770645,36.970267799791685],[7.788677886778885,36.98715357249051],[7.799477994779949,36.99390788157005],[7.7922779227792205,36.97364495433145],[7.777877778777793,36.95169344982298],[7.774277742777429,36.93143052258439],[7.7922779227792205,36.91792190442533],[7.774277742777429,36.88921609083732],[7.810278102781041,36.86895316359873],[7.867878678786781,36.85375596816978],[7.907479074790757,36.850378813630016],[8.05148051480515,36.877396049948146],[8.073080730807305,36.887527513567434],[8.094680946809461,36.9010361317265],[8.231482314823154,36.95844775890251],[8.249482494824946,36.94831629528322],[8.267482674826766,36.93311909985427],[8.289082890828922,36.92636479077474],[8.332283322833234,36.928053368044615],[8.357483574835754,36.92636479077474],[8.375483754837546,36.91792190442533],[8.389883898839003,36.92298763623498],[8.400684006840066,36.91792190442533],[8.415084150841523,36.90947901807591],[8.42948429484295,36.90441328626626],[8.461884618846199,36.9010361317265],[8.497884978849783,36.90441328626626],[8.602286022860227,36.939873408933806],[8.620286202862047,36.94662771801333],[8.692286922869243,36.96857922252181],[8.717487174871764,36.97364495433145],[8.800288002880023,36.97364495433145],[8.825488254882544,36.9787106861411],[8.86508865088652,37.0074164997291],[8.897488974889768,37.01923654061828],[8.904689046890468,37.02092511788817],[8.926289262892624,37.039499467856885],[8.955089550895508,37.069893858714764],[8.987489874898756,37.117174022271485],[9.001890018900184,37.12392833135101],[9.009090090900912,37.12730548589079],[9.037890378903796,37.152634144939015],[9.048690486904889,37.157699876748666],[9.081090810908108,37.16614276309808],[9.160291602916033,37.19315999941621],[9.171091710917125,37.19822573122585],[9.19269192691928,37.226931544813866],[9.210692106921073,37.23368585389339],[9.343893438934401,37.23537443116328],[9.379893798937985,37.247194472052456],[9.405094050940505,37.26914597656092],[9.419494194941961,37.27590028564046],[9.43389433894339,37.27083455383081],[9.441094410944117,37.26576882202116],[9.455494554945545,37.26745739929105],[9.466294662946638,37.2725231311007],[9.495094950949522,37.277588862910335],[9.516695166951678,37.28603174925975],[9.538295382953834,37.297851790148925],[9.55269552695529,37.309671831038116],[9.574295742957446,37.299540367418814],[9.592295922959238,37.30291752195858],[9.62829628296285,37.32318044919717],[9.649896498965006,37.33162333554658],[9.667896678966798,37.33500049008636],[9.71109711097111,37.33668906735623],[9.732697326973266,37.34344337643577],[9.743497434974358,37.345131953705646],[9.75429754297545,37.340066221895995],[9.76149761497615,37.33331191281647],[9.772297722977243,37.32993475827671],[9.858698586985867,37.32824618100682],[9.858698586985867,37.326557603736944],[9.86229862298623,37.31642614011764],[9.86229862298623,37.27083455383081],[9.829898298982982,37.25057162659222],[9.793897938979399,37.23875158570304],[9.772297722977243,37.2134229266548],[9.775897758977607,37.20498004030539],[9.790297902979034,37.177962803987256],[9.793897938979399,37.17289707217762],[9.801098010980127,37.16951991763784],[9.808298082980826,37.1543227222089],[9.815498154981555,37.152634144939015],[9.858698586985867,37.14756841312938],[9.880298802988023,37.14925699039925],[9.901899018990207,37.164454185828205],[9.91269912699127,37.177962803987256],[9.927099270992727,37.19653715395597],[9.923499234992363,37.2134229266548],[9.86229862298623,37.23368585389339],[9.851498514985167,37.23368585389339],[9.829898298982982,37.226931544813866],[9.819098190981919,37.226931544813866],[9.819098190981919,37.23368585389339],[9.844298442984439,37.247194472052456],[9.855098550985502,37.24888304932233],[9.858698586985867,37.25394878113198],[9.86229862298623,37.25901451294163],[9.865898658986595,37.262391667481396],[9.883898838988387,37.264080244751284],[9.981099810998103,37.24550589478257],[9.999099990999923,37.247194472052456],[10.049500495004963,37.26576882202116],[10.060300603006027,37.264080244751284],[10.074700747007483,37.24550589478257],[10.14670146701468,37.237063008433154],[10.179101791017928,37.2134229266548],[10.254702547025488,37.19147142214632],[10.27270272702728,37.177962803987256],[10.240302403024032,37.17120849490773],[10.225902259022604,37.16614276309808],[10.211502115021148,37.159388454018554],[10.204302043020448,37.17458564944749],[10.179101791017928,37.177962803987256],[10.14670146701468,37.17120849490773],[10.128701287012888,37.159388454018554],[10.135901359013587,37.142502681319726],[10.161101611016107,37.13405979497031],[10.193501935019356,37.13405979497031],[10.211502115021148,37.137436949510075],[10.218702187021876,37.12899406316066],[10.225902259022604,37.117174022271485],[10.229502295022968,37.10873113592207],[10.225902259022604,37.095222517763005],[10.218702187021876,37.11041971319196],[10.175501755017564,37.0766481677943],[10.182701827018263,37.027679426967694],[10.218702187021876,36.977022108871225],[10.265502655026552,36.93818483166392],[10.301503015030164,36.92467621350485],[10.312303123031228,36.91792190442533],[10.337503375033748,36.892593245377086],[10.34830348303484,36.88077320448791],[10.341103411034112,36.86895316359873],[10.319503195031956,36.850378813630016],[10.308703087030864,36.830115886391425],[10.2979029790298,36.82167300004201],[10.283502835028344,36.81998442277212],[10.27270272702728,36.82842730912154],[10.279902799028008,36.84362450455049],[10.269102691026916,36.84869023636014],[10.254702547025488,36.84700165909025],[10.218702187021876,36.83855877274084],[10.211502115021148,36.831804463661314],[10.193501935019356,36.81154153642271],[10.189901899018992,36.79803291826366],[10.204302043020448,36.79296718645401],[10.233102331023304,36.79127860918412],[10.24750247502476,36.78621287737448],[10.254702547025488,36.79127860918412],[10.258302583025824,36.794655763723895],[10.27270272702728,36.81660726823236],[10.294302943029436,36.77776999102507],[10.319503195031956,36.74906417743705],[10.355503555035568,36.73048982746835],[10.402304023040244,36.727112672928584],[10.416704167041672,36.72880125019846],[10.438304383043828,36.72880125019846],[10.488704887048868,36.74906417743705],[10.517505175051753,36.75581848651659],[10.539105391053909,36.772704259215416],[10.546305463054637,36.79972149553353],[10.553505535055365,36.8233615773119],[10.567905679056793,36.86388743178908],[10.585905859058585,36.87570747267826],[10.607506075060769,36.87908462721802],[10.654306543065445,36.877396049948146],[10.693906939069393,36.88415035902767],[10.73350733507337,36.89597039991685],[10.78390783907841,36.92467621350485],[10.812708127081265,36.950004872553095],[10.823508235082357,36.95338202709286],[10.827108271082722,36.96351349071216],[10.830708307083086,36.96857922252181],[10.888308883088825,37.00572792245923],[10.895508955089554,37.01417080880864],[10.899108991089918,37.02599084969782],[10.895508955089554,37.032745158777345],[10.89190891908919,37.037810890587],[10.902709027090282,37.04963093147617],[10.924309243092438,37.05638524055571],[10.974709747097478,37.06145097236535],[11.014310143101426,37.08509105414372],[11.032310323103246,37.08677963141359],[11.050310503105038,37.080025322334066],[11.06111061110613,37.06313954963524],[11.057510575105766,37.054696663285824],[11.050310503105038,37.04118804512676],[11.046710467104674,37.03105658150747],[11.046710467104674,37.02092511788817],[11.057510575105766,37.00572792245923],[11.06111061110613,36.997285036109815],[11.064710647106466,36.990530727030276],[11.082710827108286,36.96857922252181],[11.08631086310865,36.9601363361724],[11.089910899108986,36.950004872553095],[11.09351093510935,36.928053368044615],[11.09351093510935,36.91792190442533],[11.100711007110078,36.91116759534579],[11.104311043110442,36.9010361317265],[11.11151111511117,36.894281822646974],[11.11871118711187,36.8909046681072],[11.125911259112598,36.88583893629756],[11.13671136711369,36.87064174086861],[11.129511295112962,36.85375596816978],[11.115111151111506,36.83855877274084],[11.075510755107558,36.825050154581774],[11.021510215102154,36.787901454644356],[10.99270992709927,36.74399844562741],[10.949509495094958,36.69334112753093],[10.881108811088126,36.5886493367982],[10.827108271082722,36.480580391525706],[10.798307983079837,36.4518745779377],[10.715507155071549,36.43498880523887],[10.621906219062197,36.39108579622193],[10.585905859058585,36.397840105301455],[10.549905499055,36.377577178062865],[10.517505175051753,36.33705132358568],[10.503105031050325,36.29990262364825],[10.492304923049232,36.257688191901195],[10.477904779047805,36.217162337424],[10.477904779047805,36.16481644205764],[10.47430474304744,36.112470546691284],[10.477904779047805,36.07869900129363],[10.492304923049232,36.04492745589597],[10.49950499504996,36.028041683197145],[10.503105031050325,36.021287374117605],[10.510305103051024,36.01115591049832],[10.513905139051388,35.98920440598984],[10.517505175051753,35.980761519640424],[10.539105391053909,35.95205570605242],[10.557105571055729,35.938547087893355],[10.571505715057157,35.93179277881383],[10.582305823058249,35.92166131519453],[10.607506075060769,35.855806801669104],[10.621906219062197,35.84229818351005],[10.690306903069029,35.78995228814368],[10.693906939069393,35.78826371087381],[10.711907119071185,35.77982082452439],[10.744307443074433,35.76968936090509],[10.805508055080566,35.78657513360392],[10.812708127081265,35.78488655633403],[10.823508235082357,35.77982082452439],[10.84150841508415,35.76631220636533],[10.830708307083086,35.75280358820626],[10.823508235082357,35.73422923823756],[10.830708307083086,35.71227773372908],[10.84150841508415,35.698769115570016],[10.881108811088126,35.68357192014108],[10.971109711097114,35.65486610655307],[11.01071010710109,35.658243261092835],[11.039510395103946,35.637980333854244],[11.053910539105402,35.61434025207588],[11.01791017910179,35.6025202111867],[11.01071010710109,35.57888012940835],[11.014310143101426,35.56368293397941],[11.014310143101426,35.555240047629994],[11.025110251102518,35.533288543121515],[11.039510395103946,35.518091347692575],[11.08631086310865,35.506271306803384],[11.057510575105766,35.486008379564794],[11.050310503105038,35.45899114324668],[11.046710467104674,35.43535106146831],[11.050310503105038,35.391448052451366],[11.03591035910361,35.371185125212776],[11.04311043110431,35.33403642527536],[11.064710647106466,35.303642034417464],[11.100711007110078,35.266493334480046],[11.122311223112234,35.25298471632098],[11.147511475114754,35.24454182997157],[11.16191161911621,35.23778752089204],[11.158311583115847,35.219213170923325],[11.133111331113327,35.21752459365345],[11.11151111511117,35.205704552764274],[11.09351093510935,35.17362158463649],[11.064710647106466,35.1533586573979],[11.050310503105038,35.13140715288942],[11.03591035910361,35.10776707111107],[11.014310143101426,35.09256987568213],[11.021510215102154,35.063864062094126],[11.01791017910179,35.03346967123623],[10.98550985509857,34.99969812583858],[10.945909459094594,34.98281235313975],[10.91710917109171,34.95748369409151],[10.924309243092438,34.933843612313154],[10.91710917109171,34.913580685074564],[10.91710917109171,34.87305483059738],[10.873908739087398,34.849414748819015],[10.86670866708667,34.8409718624696],[10.85950859508597,34.83759470792984],[10.855908559085606,34.83084039885031],[10.86670866708667,34.81057747161172],[10.870308703087034,34.79706885345266],[10.83430834308345,34.78356023529359],[10.812708127081265,34.76836303986465],[10.780307803078045,34.73965722627665],[10.762307623076225,34.71263998995852],[10.744307443074433,34.69913137179945],[10.73350733507337,34.68055702183075],[10.715507155071549,34.66535982640181],[10.701107011070121,34.65522836278251],[10.632706327063289,34.63834259008368],[10.625506255062561,34.63327685827403],[10.621906219062197,34.626522549194505],[10.618306183061833,34.6163910855752],[10.614706147061469,34.60288246741615],[10.607506075060769,34.59275100379685],[10.607506075060769,34.57417665382815],[10.600306003060041,34.562356612938956],[10.596705967059677,34.54547084024013],[10.582305823058249,34.53196222208108],[10.560705607056065,34.52351933573166],[10.467104671046712,34.51169929484249],[10.431104311043129,34.49650209941353],[10.377103771037724,34.423893276808585],[10.330303303033048,34.412073235919394],[10.319503195031956,34.41376181318928],[10.312303123031228,34.417138967729045],[10.301503015030164,34.417138967729045],[10.287102871028708,34.41376181318928],[10.283502835028344,34.40869608137963],[10.276302763027644,34.401941772300106],[10.258302583025824,34.37830169052175],[10.24750247502476,34.37154738144221],[10.233102331023304,34.36985880417234],[10.186301863018628,34.35128445420362],[10.168301683016836,34.339464413314445],[10.125101251012524,34.32595579515538],[10.103501035010368,34.3040042906469],[10.089100891008911,34.27360989978902],[10.053100531005327,34.21282111807324],[10.031500315003143,34.18411530448523],[10.017100171001715,34.18073814994547],[10.009900099000987,34.173983840865944],[10.009900099000987,34.172295263596055],[10.006300063000623,34.17060668632618],[10.013500135001351,34.15372091362735],[10.017100171001715,34.13345798638875],[10.017100171001715,34.09124355464169],[10.02070020700208,34.07266920467298],[10.035100351003507,34.03383192746567],[10.038700387003871,34.01525757749697],[10.049500495004963,33.9831746093692],[10.07110071100712,33.94602590943178],[10.164701647016471,33.8362683868894],[10.1719017190172,33.82782550053999],[10.186301863018628,33.82107119146046],[10.330303303033048,33.70287078256867],[10.366303663036632,33.684296432599965],[10.445504455044556,33.655590619011946],[10.459904599045984,33.65221346447218],[10.488704887048868,33.64714773266253],[10.557105571055729,33.655590619011946],[10.632706327063289,33.67416496898066],[10.697506975069757,33.70287078256867],[10.715507155071549,33.70624793710843],[10.74070740707407,33.6707878144409],[10.737107371073705,33.60324472364559],[10.70830708307085,33.58129321913711],[10.690306903069029,33.57622748732746],[10.679506795067965,33.56271886916841],[10.672306723067237,33.54583309646958],[10.679506795067965,33.530635901040625],[10.704707047070485,33.496864355642984],[10.715507155071549,33.48335573748392],[10.737107371073705,33.47829000567427],[10.780307803078045,33.48504431475379],[10.855908559085606,33.5238815919611],[10.89190891908919,33.5340130555804],[10.90990909909101,33.53907878739004],[10.924309243092438,33.55427598281899],[10.931509315093166,33.57453891005758],[10.927909279092802,33.59142468275641],[10.90990909909101,33.60831045545524],[10.906309063090646,33.61675334180465],[10.93510935109353,33.637016269043244],[10.949509495094958,33.63026195996372],[10.96030960309605,33.62688480542394],[10.971109711097114,33.63195053723359],[10.978309783097842,33.64377057812277],[10.98550985509857,33.64377057812277],[10.999909999099998,33.63363911450348],[11.04311043110431,33.61844191907453],[11.06111061110613,33.60831045545524],[11.071910719107194,33.594801837296174],[11.107911079110806,33.54921025100934],[11.11151111511117,33.54076736465993],[11.115111151111506,33.490110046563444],[11.089910899108986,33.454649923895914],[11.11151111511117,33.392172564910254],[11.100711007110078,33.36346675132225],[11.129511295112962,33.37190963767166],[11.151111511115118,33.35333528770295],[11.16911169111691,33.33138378319447],[11.19431194311943,33.32125231957518],[11.21951219512195,33.31618658776553],[11.26991269912699,33.29423508325705],[11.29511295112951,33.287480774177524],[11.287912879128811,33.28241504236787],[11.284312843128447,33.280726465098],[11.280712807128083,33.280726465098],[11.183511835118367,33.306055124146226],[11.133111331113327,33.31112085595588],[11.122311223112234,33.280726465098],[11.133111331113327,33.267217846938934],[11.147511475114754,33.25708638331963],[11.16191161911621,33.24188918789069],[11.16911169111691,33.2216262606521],[11.179911799118003,33.2114947970328],[11.201512015120159,33.2114947970328],[11.24471244712447,33.21824910611234],[11.287912879128811,33.209806219762925],[11.370713707137071,33.18447756071468],[11.417514175141747,33.18447756071468],[11.431914319143203,33.1929204470641],[11.42831428314284,33.20642906522315],[11.410314103141047,33.21824910611234],[11.392313923139227,33.223314837921976],[11.381513815138163,33.230069147001515],[11.367113671136707,33.245266342430455],[11.352713527135279,33.25877496058952],[11.442714427144267,33.20474048795327],[11.496714967149671,33.182788983444794],[11.5039150391504,33.18110040617492],[11.525515255152555,33.17772325163514],[11.561515615156168,33.16590321074597],[11.575915759157596,33.15746032439655],[11.586715867158688,33.13213166534831],[11.60471604716048,33.12200020172902],[11.637116371163728,33.10849158356996],[11.7559175591756,33.09329438814102],[11.791917919179213,33.08147434725183],[11.773917739177392,33.100048697220544],[11.709117091170924,33.11693446991937],[11.691116911169132,33.135508819888074],[11.737917379173808,33.11355731537961],[11.845918459184588,33.083162924521716],[12.079920799207997,32.958208206550395],[12.12312123121231,32.92105950661298],[12.159121591215921,32.910928042993675],[12.22392223922239,32.875467920326145],[12.303123031230314,32.84338495219838],[12.34992349923499,32.833253488579075],[12.731527315273155,32.797793365911545],[12.825128251282507,32.80454767499107],[13.073530735307372,32.86702503397673],[13.116731167311684,32.88222222940567],[13.149131491314932,32.90417373391415],[13.16353163531636,32.91261662026356],[13.18873188731888,32.915993774803326],[13.257132571325712,32.91937092934309],[13.350733507335093,32.90417373391415],[13.361533615336157,32.8991080021045],[13.372333723337249,32.89235369302497],[13.570335703357046,32.80285909772118],[13.617136171361722,32.792727634101894],[13.786337863378634,32.79948194318142],[13.829538295382974,32.79441621137178],[13.915939159391598,32.7724647068633],[13.991539915399159,32.7437588932753],[14.175141751417527,32.71843023422706],[14.185941859418591,32.715053079687294],[14.203942039420411,32.69985588425834],[14.207542075420747,32.69647872971858],[14.225542255422567,32.69141299790893],[14.261542615426151,32.66101860705105],[14.315543155431556,32.630624216193155],[14.405544055440572,32.566458279937606],[14.448744487444884,32.525932425460425],[14.47034470344704,32.5191781163809],[14.632346323463253,32.49553803460253],[14.64674646746468,32.48878372552301],[14.661146611466108,32.47696368463383],[14.707947079470813,32.45670075739524],[14.725947259472605,32.4499464483157],[14.909549095490974,32.443192139236174],[15.11475114751147,32.41279774837828],[15.161551615516174,32.39928913021923],[15.18315183151833,32.395911975679454],[15.197551975519758,32.38915766659993],[15.23355233552337,32.34694323485286],[15.269552695526954,32.328368884884156],[15.28395283952841,32.316548843994966],[15.29115291152911,32.281088721327436],[15.301953019530202,32.260825794088845],[15.323553235532358,32.22367709415143],[15.363153631536335,32.17470835332483],[15.370353703537035,32.15951115789588],[15.370353703537035,32.1375596533874],[15.35955359553597,32.10209953071987],[15.355953559535607,32.06157367624269],[15.355953559535607,32.03793359446432],[15.35955359553597,31.965324771859372],[15.370353703537035,31.929864649191828],[15.489154891548935,31.664758017820247],[15.514355143551455,31.62760931788283],[15.622356223562235,31.497588868101857],[15.687156871568732,31.438488663655974],[15.762757627576292,31.38783134555949],[16.043560435604377,31.274696668477347],[16.360363603636046,31.227416504920626],[16.727567275672754,31.224039350380863],[16.94356943569437,31.183513495903682],[17.15957159571596,31.119347559648133],[17.332373323733236,31.087264591520366],[17.364773647736484,31.087264591520366],[17.375573755737577,31.083887436980604],[17.382773827738276,31.078821705170952],[17.41877418774189,31.061935932472124],[17.447574475744773,31.03829585069377],[17.458374583745837,31.03323011888412],[17.465574655746565,31.029852964344357],[17.61317613176132,30.99270426440694],[17.692376923769245,30.958932719009283],[17.775177751777534,30.93529263723093],[17.84717847178473,30.92347259634174],[17.861578615786158,30.91334113272245],[17.890378903789042,30.877881010054907],[17.908379083790834,30.862683814625967],[17.926379263792654,30.85592950554644],[18.016380163801642,30.837355155577725],[18.17478174781749,30.786697837481242],[18.20718207182074,30.769812064782414],[18.235982359823595,30.74617198300406],[18.32598325983261,30.656677387700284],[18.56718567185672,30.499639701601183],[18.624786247862488,30.445605228964936],[18.653586535865372,30.421965147186583],[18.71838718387184,30.39157075632869],[18.761587615876152,30.384816447249165],[18.779587795877973,30.37637356089975],[18.92718927189273,30.2936332746755],[18.966789667896677,30.27843607924656],[19.056790567905693,30.26661603835737],[19.14679146791468,30.264927461087495],[19.240392403924034,30.27337034743691],[19.290792907929074,30.286878965595974],[19.33759337593378,30.29869900648515],[19.42039420394204,30.332470551882807],[19.53199531995321,30.39663648813834],[19.549995499955003,30.405079374487755],[19.59679596795968,30.41183368356728],[19.6147961479615,30.421965147186583],[19.7479974799748,30.511459742490374],[19.913599135991376,30.6836946240184],[19.956799567995688,30.749549137543823],[19.981999819998208,30.778254951131828],[20.01800018000182,30.80358361018007],[20.036000360003612,30.818780805609023],[20.10080100801008,30.93529263723093],[20.147601476014756,31.045050159773297],[20.15120151201512,31.088953168790255],[20.147601476014756,31.217285041301338],[20.129601296012964,31.24261370034958],[20.104401044010444,31.308468213875003],[20.08280082800829,31.337174027463007],[20.039600396003976,31.376011304670314],[20.021600216002156,31.396274231908905],[19.953199531995324,31.560066227087518],[19.94959949599496,31.600592081564713],[19.94959949599496,31.644495090581657],[19.945999459994596,31.661380863280485],[19.927999279992804,31.698529563217903],[19.920799207992076,31.71710391318662],[19.91719917199174,31.759318344933675],[19.920799207992076,31.804909931220507],[19.935199351993532,31.887650217444772],[19.94959949599496,31.926487494652065],[19.945999459994596,31.936618958271367],[19.94239942399426,31.946750421890656],[19.938799387993896,31.958570462779846],[19.945999459994596,31.967013349129246],[19.956799567995688,31.9822105445582],[20.046800468004676,32.14600253973681],[20.072000720007196,32.176396930594706],[20.262802628026293,32.34018892577333],[20.27720277202772,32.360451853011924],[20.324003240032397,32.40942059383852],[20.34560345603458,32.41955205745782],[20.38520385203853,32.43474925288676],[20.40320403204032,32.44656929377594],[20.417604176041777,32.460077911935],[20.56160561605617,32.55801539358819],[20.79560795607958,32.64244425708233],[20.932409324093243,32.72180738876682],[21.051210512105115,32.7724647068633],[21.09801098010982,32.78090759321272],[21.285212852128524,32.770776129593415],[21.3320133201332,32.77415328413318],[21.414814148141488,32.792727634101894],[21.454414544145436,32.812990561340484],[21.60921609216092,32.93119097023228],[21.623616236162377,32.936256702041916],[21.670416704167053,32.93963385658169],[21.71721717217173,32.94976532020098],[21.74241742417425,32.93119097023228],[21.789217892178925,32.915993774803326],[21.8360183601836,32.90586231118404],[21.87921879218794,32.902485156644275],[22.09522095220953,32.922748083882865],[22.10242102421026,32.92612523842263],[22.113221132211322,32.94132243385157],[22.116821168211686,32.94469958839133],[22.138421384213842,32.94807674293111],[22.149221492214934,32.94807674293111],[22.160021600215998,32.94469958839133],[22.17082170821709,32.937945279311805],[22.17082170821709,32.932879547502154],[22.17082170821709,32.92612523842263],[22.174421744217454,32.915993774803326],[22.206822068220703,32.88728796121532],[22.24642246422465,32.880533652135796],[22.340023400234003,32.88222222940567],[22.37962379623798,32.87040218851649],[22.476824768247695,32.80623625226096],[22.49842498424985,32.797793365911545],[22.51282512825128,32.791039056832005],[22.5308253082531,32.78766190229224],[22.577625776257776,32.78428474775248],[22.811628116281156,32.72518454330658],[22.86562865628656,32.69479015244869],[22.88362883628838,32.68972442063905],[22.894428944289444,32.688035843369164],[22.930429304293057,32.67621580247999],[22.94122941229412,32.6745272252101],[22.977229772297733,32.67621580247999],[22.99882998829989,32.671150070670336],[23.0420304203042,32.652575720701634],[23.08523085230854,32.645821411622094],[23.106831068310697,32.63906710254257],[23.11763117631176,32.62893563892327],[23.121231212312125,32.615427020764216],[23.114031140311397,32.60529555714491],[23.09963099630997,32.5867212071762],[23.096030960309605,32.57658974355691],[23.103231032310333,32.51580096184114],[23.114031140311397,32.50060376641218],[23.128431284312853,32.48878372552301],[23.15003150031501,32.478652261903704],[23.139231392313917,32.458389334665114],[23.128431284312853,32.395911975679454],[23.11043110431106,32.40266628475899],[23.11043110431106,32.41110917110841],[23.11043110431106,32.41955205745782],[23.103231032310333,32.427994943807235],[23.096030960309605,32.43643783015665],[23.078030780307813,32.353697543932384],[23.081630816308177,32.33343461669379],[23.096030960309605,32.323303153074505],[23.157231572315737,32.303040225835915],[23.178831788317893,32.29966307129614],[23.196831968319685,32.29122018494674],[23.214832148321477,32.27264583497802],[23.229232292322934,32.25069433046954],[23.24363243632436,32.220299939611664],[23.258032580325818,32.213545630532124],[23.272432724327246,32.21016847599236],[23.286832868328702,32.203414166912836],[23.2940329403294,32.191594126023645],[23.30123301233013,32.171331198785055],[23.312033120331222,32.16288831243564],[23.312033120331222,32.17977408513447],[23.297632976329766,32.22367709415143],[23.31923319233192,32.218611362341775],[23.362433624336262,32.21692278507189],[23.36963369633696,32.213545630532124],[23.398433984339846,32.193282703293534],[23.405634056340574,32.18990554875377],[23.531635316353174,32.18146266240436],[23.66843668436684,32.183151239674245],[23.841238412384143,32.14937969427659],[23.999639996399964,32.093656644370455],[23.974439744397444,32.073393717131864],[23.97083970839708,32.06663940805234],[23.978039780397808,32.06157367624269],[24.003240032400328,32.053130789893274],[24.068040680406824,32.010916358146204],[24.08964089640898,32.00585062633655],[24.28044280442805,32.00753920360644],[24.546845468454705,31.990653430907614],[24.636846368463694,32.01429351268597],[24.65844658446585,32.02780213084503],[24.669246692466942,32.03286786265468],[24.70884708847089,32.026113553575144],[24.719647196471982,32.02780213084503],[24.72684726847268,32.031179285384795],[24.73404734047341,32.03286786265468],[24.741247412474138,32.029490708114906],[24.744847448474502,32.026113553575144],[24.75924759247593,32.01935924449562],[24.773647736477386,32.015982089955855],[24.791647916479178,32.00753920360644],[24.824048240482426,32.00247347179679],[24.863648636486374,31.988964853637725],[24.982449824498246,31.968701926399135],[25.01845018450186,31.948438999160544],[25.032850328503287,31.916356031032777],[25.02565025650256,31.87583017655558],[25.022050220502223,31.853878672047117],[25.029250292502923,31.83699289934829],[25.065250652506535,31.804909931220507],[25.115651156511575,31.73736684042521],[25.122851228512303,31.720481067726382],[25.13725137251373,31.691775254138378],[25.155251552515523,31.663069440550373],[25.15165151651516,31.659692286010596],[25.15165151651516,31.656315131470834],[25.148051480514823,31.649560822391308],[25.16245162451625,31.583706308865885],[25.173251732517343,31.551623340738104],[25.191251912519135,31.531360413499513],[25.21285212852129,31.526294681689862],[25.26325263252633,31.5229175271501],[25.30285302853028,31.50603175445127],[25.324453244532464,31.50603175445127],[25.367653676536776,31.51278606353081],[25.37845378453784,31.50940890899105],[25.38925389253893,31.504343177181397],[25.40365403654036,31.50265459991151],[25.42165421654218,31.51278606353081],[25.443254432544336,31.517851795340462],[25.475654756547584,31.521228949880225],[25.63765637656377,31.560066227087518],[25.8248582485825,31.614100699723764],[25.868058680586813,31.620855008803304],[25.96525965259653,31.615789276993652],[26.361263612636122,31.521228949880225],[26.649266492664935,31.489145981752444],[26.667266672666727,31.48070309540303],[26.681666816668184,31.475637363593393],[26.732067320673224,31.479014518133155],[26.75366753667538,31.477325940863267],[26.825668256682576,31.448620127275262],[26.865268652686524,31.436800086386086],[26.91206912069123,31.436800086386086],[26.948069480694812,31.448620127275262],[26.966069660696604,31.45030870454515],[26.984069840698425,31.44017724092585],[26.99486994869949,31.42835720003667],[27.00567005670058,31.42498004549691],[27.016470164701644,31.42498004549691],[27.027270272702737,31.421602890957146],[27.05607056070562,31.40809427279808],[27.117271172711725,31.391208500099253],[27.185671856718585,31.384454191019728],[27.210872108721105,31.377699881940188],[27.225272252722533,31.3675684183209],[27.23247232472326,31.372634150130537],[27.243272432724325,31.377699881940188],[27.24687246872469,31.38107703647995],[27.25767257672578,31.379388459210077],[27.318873188731885,31.38107703647995],[27.326073260732613,31.379388459210077],[27.33327333273334,31.374322727400425],[27.344073440734405,31.3675684183209],[27.34047340473404,31.364191263781123],[27.34047340473404,31.36081410924136],[27.344073440734405,31.354059800161835],[27.351273512735133,31.34055118200277],[27.354873548735497,31.33548545019312],[27.35847358473586,31.333796872923244],[27.362073620736226,31.33041971838348],[27.362073620736226,31.315222522954528],[27.36567365673656,31.310156791144877],[27.37287372873729,31.2983367502557],[27.38367383673838,31.26794235939782],[27.394473944739445,31.254433741238756],[27.4160741607416,31.23754796853993],[27.444874448744486,31.224039350380863],[27.477274772747734,31.213907886761575],[27.542075420754202,31.20546500041216],[27.563675636756386,31.197022114062747],[27.588875888758906,31.19364495952297],[27.610476104761062,31.203776423142273],[27.660876608766102,31.18013634136392],[27.718477184771842,31.188579227713333],[27.837278372783743,31.23754796853993],[27.85167851678517,31.24092512307969],[27.862478624786263,31.234170814000166],[27.869678696786963,31.218973618571212],[27.869678696786963,31.20039926860251],[27.873278732787327,31.191956382253096],[27.891278912789147,31.154807682315678],[27.894878948789483,31.12272471418791],[27.898478984789847,31.114281827838496],[27.92727927279273,31.099084632409543],[27.974079740797407,31.092330323330017],[28.15408154081541,31.09401890059989],[28.164881648816504,31.09064174606013],[28.175681756817568,31.085576014250478],[28.182881828818296,31.078821705170952],[28.190081900819024,31.0737559733613],[28.204482044820452,31.07037881882154],[28.233282332823336,31.0737559733613],[28.254882548825492,31.072067396091427],[28.298082980829804,31.061935932472124],[28.31968319683199,31.06024735520225],[28.33768337683378,31.063624509742013],[28.380883808838092,31.082198859710715],[28.406084060840612,31.087264591520366],[28.424084240842404,31.083887436980604],[28.442084420844225,31.077133127901064],[28.456484564845653,31.067001664281776],[28.47088470884711,31.056870200662473],[28.47808478084781,31.051804468852836],[28.51408514085142,31.051804468852836],[28.52848528485285,31.050115891582948],[28.53928539285394,31.046738737043185],[28.55368553685537,31.03829585069377],[28.733687336873373,30.984261378057525],[28.769687696876986,30.967375605358697],[28.787687876878778,30.958932719009283],[28.812888128881298,30.957244141739395],[28.81648816488166,30.95048983265987],[28.82368823688239,30.925161173611627],[28.827288272882726,30.915029709992325],[28.834488344883454,30.909963978182688],[28.85608856088561,30.906586823642925],[29.028890288902886,30.827223691958437],[29.1908919089191,30.833978001037963],[29.219692196921983,30.837355155577725],[29.356493564935647,30.894766782753734],[29.504095040950403,30.957244141739395],[29.558095580955808,30.99101568713705],[29.597695976959784,31.009590037105767],[29.604896048960484,31.01127861437564],[29.612096120961212,31.021410077994943],[29.61929619296194,31.029852964344357],[29.766897668976696,31.121036136918022],[29.781297812978124,31.148053373236138],[29.81009810098101,31.1429876414265],[29.838898388983893,31.154807682315678],[29.88569885698857,31.190267804983208],[29.874898748987505,31.20039926860251],[29.87129871298714,31.20039926860251],[29.864098640986413,31.197022114062747],[29.867698676986777,31.207153577682035],[29.87849878498787,31.213907886761575],[29.88569885698857,31.213907886761575],[29.889298892988933,31.203776423142273],[29.89649896498966,31.203776423142273],[29.91089910899109,31.213907886761575],[29.957699576995765,31.249368009429105],[29.968499684996857,31.25781089577852],[29.982899828998285,31.26287662758817],[30.00450004500047,31.286516709366524],[30.01170011700117,31.293271018446063],[30.026100261002625,31.294959595715937],[30.033300333003325,31.30002532752559],[30.040500405004053,31.306779636605114],[30.04770047700478,31.313533945684654],[30.044100441004417,31.313533945684654],[30.040500405004053,31.315222522954528],[30.040500405004053,31.32028825476418],[30.069300693006937,31.333796872923244],[30.065700657006573,31.30509105933524],[30.094500945009457,31.28482813209665],[30.09810098100982,31.28482813209665],[30.13770137701377,31.274696668477347],[30.17370173701738,31.271319513937584],[30.16290162901629,31.266253782127933],[30.152101521015226,31.25612231850863],[30.144901449014498,31.251056586698994],[30.144901449014498,31.245990854889342],[30.144901449014498,31.244302277619454],[30.14850148501486,31.244302277619454],[30.152101521015226,31.244302277619454],[30.141301413014133,31.23754796853993],[30.144901449014498,31.229105082190515],[30.15570155701559,31.22235077311099],[30.166501665016654,31.217285041301338],[30.20610206102063,31.23754796853993],[30.202502025020266,31.225727927650752],[30.20610206102063,31.2206621958411],[30.216902169021694,31.218973618571212],[30.220502205022058,31.2206621958411],[30.224102241022422,31.227416504920626],[30.252902529025306,31.251056586698994],[30.25650256502567,31.245990854889342],[30.260102601026006,31.244302277619454],[30.26370263702637,31.249368009429105],[30.267302673026734,31.252745163968868],[30.267302673026734,31.25781089577852],[30.267302673026734,31.264565204858044],[30.274502745027462,31.264565204858044],[30.274502745027462,31.254433741238756],[30.278102781027826,31.245990854889342],[30.28170281702819,31.24092512307969],[30.28890288902889,31.23754796853993],[30.292502925029254,31.244302277619454],[30.303303033030346,31.271319513937584],[30.28890288902889,31.27807382301711],[30.274502745027462,31.274696668477347],[30.260102601026006,31.269630936667696],[30.242102421024214,31.264565204858044],[30.242102421024214,31.271319513937584],[30.245702457024578,31.271319513937584],[30.252902529025306,31.271319513937584],[30.252902529025306,31.27807382301711],[30.23850238502385,31.274696668477347],[30.18090180901811,31.271319513937584],[30.18090180901811,31.27807382301711],[30.216902169021694,31.286516709366524],[30.252902529025306,31.30340248206535],[30.31410314103141,31.350682645622072],[30.335703357033566,31.38107703647995],[30.350103501035022,31.421602890957146],[30.353703537035386,31.463817322704216],[30.342903429034294,31.497588868101857],[30.350103501035022,31.497588868101857],[30.35730357303575,31.479014518133155],[30.36450364503645,31.46044016816444],[30.378903789037906,31.446931550005388],[30.3969039690397,31.44355439546561],[30.371703717037178,31.462128745434327],[30.35730357303575,31.490834559022332],[30.360903609036086,31.50940890899105],[30.3969039690397,31.490834559022332],[30.425704257042582,31.473948786323504],[30.45810458104583,31.462128745434327],[30.494104941049414,31.458751590894565],[30.537305373053726,31.463817322704216],[30.677706777067783,31.495900290831983],[30.972909729097296,31.587083463405648],[30.972909729097296,31.580329154326108],[30.958509585095868,31.578640577056234],[30.864908649086487,31.54824618619834],[30.789307893078927,31.511097486260923],[30.73530735307355,31.489145981752444],[30.69210692106921,31.463817322704216],[30.688506885068847,31.462128745434327],[30.67410674106742,31.46044016816444],[30.66690666906669,31.457063013624676],[30.627306273062743,31.435111509116197],[30.60930609306095,31.42835720003667],[30.569705697056975,31.426668622766783],[30.562505625056247,31.421602890957146],[30.55890558905591,31.421602890957146],[30.54090540905409,31.40302854098843],[30.54090540905409,31.394585654639016],[30.562505625056247,31.389519922829365],[30.569705697056975,31.389519922829365],[30.576905769057703,31.394585654639016],[30.58410584105843,31.394585654639016],[30.59850598505986,31.38783134555949],[30.627306273062743,31.38783134555949],[30.652506525065263,31.396274231908905],[30.66690666906669,31.40471711825832],[30.67410674106742,31.421602890957146],[30.695706957069575,31.416537159147495],[30.71730717307173,31.401339963718556],[30.728107281072823,31.38783134555949],[30.73530735307355,31.38783134555949],[30.74250742507425,31.40471711825832],[30.756907569075707,31.42329146822702],[30.7749077490775,31.436800086386086],[30.789307893078927,31.44355439546561],[30.80010800108002,31.446931550005388],[30.81090810908111,31.441865818195737],[30.821708217082175,31.435111509116197],[30.83610836108363,31.42835720003667],[30.846908469084696,31.43004577730656],[30.861308613086152,31.433422931846323],[30.872108721087216,31.435111509116197],[30.886508865088672,31.42835720003667],[30.882908829088308,31.42835720003667],[30.879308793087944,31.42835720003667],[30.879308793087944,31.426668622766783],[30.879308793087944,31.421602890957146],[30.89370893708937,31.419914313687258],[30.908109081090828,31.42329146822702],[30.92610926109262,31.433422931846323],[30.940509405094048,31.44355439546561],[30.936909369093712,31.4452429727355],[30.933309333093348,31.44355439546561],[30.933309333093348,31.4452429727355],[30.933309333093348,31.45030870454515],[30.936909369093712,31.451997281815025],[30.936909369093712,31.453685859084914],[30.940509405094048,31.457063013624676],[30.972909729097296,31.44355439546561],[30.980109801098024,31.436800086386086],[30.990909909099088,31.44355439546561],[30.998109981099816,31.45030870454515],[31.008910089100908,31.47057163178374],[31.00171001710018,31.479014518133155],[31.005310053100544,31.48576882721268],[31.023310233102336,31.497588868101857],[31.023310233102336,31.504343177181397],[31.023310233102336,31.50940890899105],[31.023310233102336,31.514474640800685],[31.030510305103064,31.517851795340462],[31.03411034110343,31.519540372610336],[31.070110701107012,31.517851795340462],[31.080910809108104,31.514474640800685],[31.098910989109896,31.504343177181397],[31.098910989109896,31.500966022641634],[31.098910989109896,31.495900290831983],[31.10251102511026,31.49252313629222],[31.10971109711099,31.490834559022332],[31.120511205112052,31.49252313629222],[31.124111241112416,31.497588868101857],[31.12771127711278,31.504343177181397],[31.10971109711099,31.51278606353081],[31.116911169111688,31.516163218070574],[31.124111241112416,31.517851795340462],[31.131311313113144,31.516163218070574],[31.10971109711099,31.539803299848927],[31.070110701107012,31.56513195889717],[31.023310233102336,31.583706308865885],[30.97650976509766,31.583706308865885],[30.987309873098752,31.588772040675522],[31.012510125101272,31.597214927024936],[31.098910989109896,31.60734639064424],[31.12771127711278,31.60565781337435],[31.221312213122133,31.580329154326108],[31.350913509135097,31.52967183622964],[31.37971379713798,31.517851795340462],[31.41931419314193,31.490834559022332],[31.523715237152373,31.45030870454515],[31.55611556115562,31.44355439546561],[31.57051570515705,31.44355439546561],[31.59571595715957,31.4452429727355],[31.74691746917469,31.482391672672918],[31.836918369183707,31.524606104419988],[31.87291872918729,31.536426145309164],[31.912519125191267,31.534737568039276],[31.944919449194487,31.521228949880225],[31.959319593195943,31.494211713562095],[31.962919629196307,31.482391672672918],[31.995319953199527,31.4452429727355],[32.00972009720098,31.416537159147495],[32.02412024120241,31.399651386448667],[32.05652056520566,31.374322727400425],[32.06732067320675,31.370945572860663],[32.09252092520927,31.36587984105101],[32.103321033210335,31.36081410924136],[32.128521285212855,31.337174027463007],[32.13572135721358,31.333796872923244],[32.15012150121501,31.327042563843705],[32.18972189721899,31.30002532752559],[32.20052200522005,31.294959595715937],[32.16812168121683,31.30002532752559],[32.07092070920709,31.354059800161835],[32.07452074520745,31.354059800161835],[32.08172081720818,31.354059800161835],[32.08172081720818,31.352371222891946],[32.08892088920891,31.34730549108231],[32.08892088920891,31.354059800161835],[32.08172081720818,31.359125531971486],[32.078120781207815,31.36081410924136],[32.05652056520566,31.36250268651125],[32.052920529205295,31.36587984105101],[32.04932049320493,31.370945572860663],[32.04572045720457,31.374322727400425],[32.01692016920171,31.38783134555949],[32.00612006120062,31.394585654639016],[32.002520025200255,31.394585654639016],[31.995319953199527,31.394585654639016],[31.99171991719919,31.40809427279808],[31.984519845198463,31.419914313687258],[31.977319773197735,31.43004577730656],[31.96651966519667,31.436800086386086],[31.9809198091981,31.436800086386086],[31.99171991719919,31.438488663655974],[31.944919449194487,31.490834559022332],[31.934119341193423,31.50772033172116],[31.919719197191966,31.524606104419988],[31.90531905319054,31.52967183622964],[31.90531905319054,31.524606104419988],[31.89091890918911,31.531360413499513],[31.883718837188383,31.52798325895975],[31.88011880118802,31.517851795340462],[31.86571865718659,31.524606104419988],[31.86571865718659,31.5229175271501],[31.86571865718659,31.516163218070574],[31.86571865718659,31.51278606353081],[31.862118621186227,31.514474640800685],[31.8549185491855,31.516163218070574],[31.851318513185134,31.517851795340462],[31.851318513185134,31.511097486260923],[31.84771847718477,31.504343177181397],[31.844118441184406,31.497588868101857],[31.86571865718659,31.497588868101857],[31.858518585185863,31.48745740448257],[31.876518765187654,31.463817322704216],[31.87291872918729,31.45030870454515],[31.88011880118802,31.45030870454515],[31.88011880118802,31.44355439546561],[31.87291872918729,31.44355439546561],[31.87291872918729,31.438488663655974],[31.876518765187654,31.433422931846323],[31.88011880118802,31.42835720003667],[31.87291872918729,31.42835720003667],[31.869318693186926,31.441865818195737],[31.862118621186227,31.45030870454515],[31.851318513185134,31.455374436354802],[31.836918369183707,31.457063013624676],[31.84051840518407,31.463817322704216],[31.836918369183707,31.46550589997409],[31.82971829718298,31.458751590894565],[31.82251822518225,31.44355439546561],[31.82971829718298,31.441865818195737],[31.833318333183342,31.44355439546561],[31.836918369183707,31.45030870454515],[31.844118441184406,31.4452429727355],[31.851318513185134,31.44355439546561],[31.858518585185863,31.44355439546561],[31.858518585185863,31.436800086386086],[31.851318513185134,31.436800086386086],[31.851318513185134,31.42835720003667],[31.8549185491855,31.42329146822702],[31.862118621186227,31.41822573641737],[31.869318693186926,31.416537159147495],[31.88011880118802,31.416537159147495],[31.87291872918729,31.409782850067955],[31.862118621186227,31.40809427279808],[31.851318513185134,31.409782850067955],[31.844118441184406,31.416537159147495],[31.836918369183707,31.416537159147495],[31.836918369183707,31.411471427337844],[31.836918369183707,31.409782850067955],[31.833318333183342,31.409782850067955],[31.82971829718298,31.40809427279808],[31.833318333183342,31.406405695528193],[31.836918369183707,31.40302854098843],[31.844118441184406,31.394585654639016],[31.82971829718298,31.379388459210077],[31.826118261182614,31.3675684183209],[31.836918369183707,31.36250268651125],[31.858518585185863,31.36081410924136],[31.858518585185863,31.354059800161835],[31.844118441184406,31.35574837743171],[31.833318333183342,31.359125531971486],[31.826118261182614,31.36081410924136],[31.81531815318155,31.354059800161835],[31.811718117181186,31.354059800161835],[31.80451804518046,31.36081410924136],[31.79731797317973,31.359125531971486],[31.793717937179366,31.354059800161835],[31.79011790117903,31.343928336542533],[31.793717937179366,31.338862604732896],[31.800918009180094,31.33548545019312],[31.80451804518046,31.332108295653356],[31.79011790117903,31.327042563843705],[31.79011790117903,31.32028825476418],[31.79731797317973,31.310156791144877],[31.79011790117903,31.306779636605114],[31.775717757177574,31.30509105933524],[31.768517685176846,31.2983367502557],[31.768517685176846,31.28482813209665],[31.77211772117721,31.276385245747235],[31.782917829178302,31.27300809120746],[31.793717937179366,31.27807382301711],[31.79731797317973,31.27807382301711],[31.793717937179366,31.279762400286998],[31.79011790117903,31.281450977556872],[31.79011790117903,31.28482813209665],[31.80451804518046,31.279762400286998],[31.811718117181186,31.27807382301711],[31.818918189181886,31.27807382301711],[31.82971829718298,31.274696668477347],[31.82971829718298,31.264565204858044],[31.82971829718298,31.25612231850863],[31.833318333183342,31.251056586698994],[31.844118441184406,31.249368009429105],[31.862118621186227,31.24261370034958],[31.876518765187654,31.232482236730277],[31.887318873188747,31.224039350380863],[31.894518945189446,31.239236545809817],[31.89811898118981,31.245990854889342],[31.90531905319054,31.251056586698994],[31.901719017190175,31.24261370034958],[31.901719017190175,31.23585939127004],[31.901719017190175,31.230793659460403],[31.90531905319054,31.224039350380863],[31.89091890918911,31.224039350380863],[31.89091890918911,31.217285041301338],[31.90531905319054,31.217285041301338],[31.901719017190175,31.213907886761575],[31.901719017190175,31.212219309491687],[31.89811898118981,31.210530732221798],[31.89811898118981,31.203776423142273],[31.90531905319054,31.203776423142273],[31.90531905319054,31.20546500041216],[31.908919089190903,31.208842154951924],[31.912519125191267,31.210530732221798],[31.912519125191267,31.208842154951924],[31.912519125191267,31.207153577682035],[31.91611916119163,31.203776423142273],[31.919719197191966,31.203776423142273],[31.919719197191966,31.210530732221798],[31.926919269192695,31.210530732221798],[31.92331923319233,31.197022114062747],[31.926919269192695,31.186890650443445],[31.934119341193423,31.186890650443445],[31.94131941319415,31.203776423142273],[31.952119521195215,31.203776423142273],[31.96651966519667,31.218973618571212],[31.988119881198827,31.230793659460403],[32.00972009720098,31.224039350380863],[31.995319953199527,31.224039350380863],[31.995319953199527,31.217285041301338],[32.00972009720098,31.210530732221798],[32.01332013320135,31.21559646403145],[32.01692016920171,31.218973618571212],[32.02412024120241,31.224039350380863],[32.03852038520387,31.217285041301338],[32.03852038520387,31.210530732221798],[32.03132031320314,31.20546500041216],[32.03132031320314,31.202087845872384],[32.03132031320314,31.190267804983208],[32.04212042120423,31.19364495952297],[32.04572045720457,31.197022114062747],[32.04212042120423,31.188579227713333],[32.04212042120423,31.181824918633794],[32.03852038520387,31.17844776409403],[32.03132031320314,31.17507060955427],[32.03132031320314,31.170004877744617],[32.0349203492035,31.161561991395203],[32.03852038520387,31.149741950506026],[32.01692016920171,31.134544755077087],[32.01692016920171,31.127790445997547],[32.027720277202775,31.127790445997547],[32.0349203492035,31.129479023267436],[32.04212042120423,31.134544755077087],[32.04572045720457,31.141299064156613],[32.04932049320493,31.141299064156613],[32.052920529205295,31.131167600537324],[32.052920529205295,31.129479023267436],[32.052920529205295,31.12272471418791],[32.06012060120602,31.11765898237826],[32.07092070920709,31.114281827838496],[32.07092070920709,31.107527518758957],[32.06012060120602,31.104150364219194],[32.052920529205295,31.10077320967943],[32.04932049320493,31.09570747786978],[32.04572045720457,31.087264591520366],[32.04932049320493,31.083887436980604],[32.05652056520566,31.078821705170952],[32.06732067320675,31.085576014250478],[32.07452074520745,31.085576014250478],[32.08532085320854,31.083887436980604],[32.08892088920891,31.078821705170952],[32.08892088920891,31.0737559733613],[32.08532085320854,31.0737559733613],[32.08532085320854,31.065313087011887],[32.09252092520927,31.05855877793236],[32.1069210692107,31.05349304612271],[32.12132121321213,31.05349304612271],[32.13212132121322,31.06024735520225],[32.13212132121322,31.065313087011887],[32.11772117721179,31.067001664281776],[32.1069210692107,31.072067396091427],[32.09972099720997,31.082198859710715],[32.09972099720997,31.09401890059989],[32.11412114121143,31.09064174606013],[32.13212132121322,31.082198859710715],[32.14292142921431,31.08051028244084],[32.14652146521465,31.078821705170952],[32.13932139321395,31.09401890059989],[32.153721537215375,31.09401890059989],[32.1609216092161,31.09401890059989],[32.1609216092161,31.10077320967943],[32.153721537215375,31.102461786949306],[32.153721537215375,31.104150364219194],[32.153721537215375,31.105838941489083],[32.153721537215375,31.107527518758957],[32.16452164521647,31.114281827838496],[32.16812168121683,31.107527518758957],[32.17532175321753,31.107527518758957],[32.178921789217895,31.107527518758957],[32.17532175321753,31.11765898237826],[32.18252182521826,31.124413291457785],[32.19332193321935,31.126101868727673],[32.204122041220415,31.109216096028845],[32.21852218522187,31.105838941489083],[32.2329223292233,31.104150364219194],[32.24732247322473,31.107527518758957],[32.27252272522725,31.119347559648133],[32.28332283322834,31.13623333234696],[32.279722797227976,31.154807682315678],[32.261722617226184,31.170004877744617],[32.286922869228704,31.170004877744617],[32.29052290522907,31.170004877744617],[32.29412294122943,31.19871069133262],[32.29412294122943,31.213907886761575],[32.29052290522907,31.230793659460403],[32.27252272522725,31.249368009429105],[32.26892268922691,31.25781089577852],[32.28332283322834,31.264565204858044],[32.26892268922691,31.27300809120746],[32.24732247322473,31.279762400286998],[32.22572225722257,31.281450977556872],[32.21492214922151,31.27807382301711],[32.20772207722078,31.294959595715937],[32.21852218522187,31.293271018446063],[32.2329223292233,31.293271018446063],[32.25812258122582,31.288205286636412],[32.30132301323013,31.281450977556872],[32.312123121231224,31.27300809120746],[32.31932319323195,31.27300809120746],[32.330123301233016,31.271319513937584],[32.33372333723338,31.254433741238756],[32.34452344523447,31.24261370034958],[32.3589235892359,31.234170814000166],[32.39132391323915,31.225727927650752],[32.40212402124021,31.217285041301338],[32.42012420124203,31.197022114062747],[32.463324633246344,31.161561991395203],[32.481324813248136,31.148053373236138],[32.51012510125102,31.107527518758957],[32.53532535325354,31.087264591520366],[32.564125641256425,31.07037881882154],[32.60012600126001,31.061935932472124],[32.60012600126001,31.06024735520225],[32.64692646926471,31.06024735520225],[32.68652686526866,31.063624509742013],[32.76212762127622,31.08051028244084],[32.85212852128521,31.119347559648133],[32.866528665286666,31.129479023267436],[32.90972909729098,31.148053373236138],[32.92052920529207,31.154807682315678],[32.92772927729277,31.154807682315678],[32.92772927729277,31.148053373236138],[32.89532895328955,31.13792190961685],[32.841328413284145,31.10077320967943],[32.8089280892809,31.09401890059989],[32.75132751327513,31.072067396091427],[32.664926649266505,31.051804468852836],[32.715327153271545,31.051804468852836],[32.715327153271545,31.045050159773297],[32.70092700927009,31.03829585069377],[32.72972729727297,31.03829585069377],[32.74412744127443,31.043361582503422],[32.74772747727479,31.051804468852836],[32.75492754927549,31.051804468852836],[32.75492754927549,31.046738737043185],[32.75852758527586,31.045050159773297],[32.76212762127622,31.046738737043185],[32.76932769327695,31.045050159773297],[32.83052830528305,31.078821705170952],[32.88452884528846,31.09401890059989],[32.891728917289186,31.10077320967943],[32.898928989289914,31.10077320967943],[32.90252902529025,31.09570747786978],[32.916929169291706,31.092330323330017],[32.91332913329134,31.087264591520366],[32.90612906129061,31.087264591520366],[32.90612906129061,31.078821705170952],[32.916929169291706,31.082198859710715],[32.942129421294226,31.09401890059989],[32.942129421294226,31.10077320967943],[32.91332913329134,31.10077320967943],[32.91332913329134,31.107527518758957],[32.92772927729277,31.112593250568608],[32.94572945729459,31.107527518758957],[32.96012960129602,31.099084632409543],[32.967329673296746,31.087264591520366],[32.97092970929711,31.08051028244084],[32.974529745297474,31.07037881882154],[32.974529745297474,31.065313087011887],[32.96012960129602,31.065313087011887],[32.99612996129963,31.0551816233926],[33.01053010530106,31.056870200662473],[33.024930249302514,31.065313087011887],[33.024930249302514,31.0737559733613],[33.01413014130142,31.078821705170952],[33.01053010530106,31.078821705170952],[33.01053010530106,31.087264591520366],[33.04653046530467,31.09570747786978],[33.057330573305734,31.10077320967943],[33.05373053730537,31.107527518758957],[33.05373053730537,31.11597040510837],[33.0609306093061,31.124413291457785],[33.06453064530646,31.134544755077087],[33.057330573305734,31.134544755077087],[33.050130501305034,31.127790445997547],[33.02853028530285,31.114281827838496],[33.02853028530285,31.11090467329872],[33.024930249302514,31.107527518758957],[33.024930249302514,31.104150364219194],[33.02853028530285,31.10077320967943],[33.017730177301786,31.09739605513967],[32.992529925299266,31.099084632409543],[32.97092970929711,31.10077320967943],[32.95292952929529,31.107527518758957],[32.98532985329854,31.109216096028845],[33.00333003330033,31.124413291457785],[33.01413014130142,31.144676218696375],[33.02853028530285,31.161561991395203],[33.042930429304306,31.166627723204854],[33.068130681306826,31.171693455014506],[33.07893078930789,31.17507060955427],[33.09693096930971,31.191956382253096],[33.107731077310774,31.197022114062747],[33.125731257312594,31.197022114062747],[33.125731257312594,31.190267804983208],[33.09693096930971,31.190267804983208],[33.09693096930971,31.183513495903682],[33.11133111331114,31.17507060955427],[33.14733147331475,31.134544755077087],[33.158131581315814,31.11765898237826],[33.15453154531545,31.112593250568608],[33.14013140131402,31.109216096028845],[33.125731257312594,31.10077320967943],[33.125731257312594,31.102461786949306],[33.125731257312594,31.105838941489083],[33.125731257312594,31.107527518758957],[33.118531185311866,31.107527518758957],[33.118531185311866,31.10077320967943],[33.13653136531366,31.09064174606013],[33.143731437314386,31.077133127901064],[33.143731437314386,31.061935932472124],[33.132931329313294,31.045050159773297],[33.168931689316906,31.05855877793236],[33.1869318693187,31.061935932472124],[33.201332013320155,31.06024735520225],[33.208532085320854,31.06024735520225],[33.21213212132122,31.06024735520225],[33.22293222932231,31.06024735520225],[33.22293222932231,31.065313087011887],[33.208532085320854,31.0737559733613],[33.201332013320155,31.0737559733613],[33.201332013320155,31.065313087011887],[33.19413194131943,31.065313087011887],[33.19413194131943,31.0737559733613],[33.24813248132483,31.09064174606013],[33.26253262532626,31.10077320967943],[33.26973269732699,31.10077320967943],[33.26253262532626,31.09401890059989],[33.26973269732699,31.087264591520366],[33.276932769327715,31.092330323330017],[33.284132841328415,31.092330323330017],[33.29133291332914,31.088953168790255],[33.29493294932951,31.078821705170952],[33.30573305733057,31.078821705170952],[33.30573305733057,31.088953168790255],[33.30573305733057,31.09739605513967],[33.302133021330235,31.099084632409543],[33.31653316533166,31.10077320967943],[33.309333093330935,31.105838941489083],[33.29853298532987,31.104150364219194],[33.28773287732878,31.104150364219194],[33.276932769327715,31.107527518758957],[33.384933849338495,31.114281827838496],[33.377733777337795,31.1328561778072],[33.39213392133922,31.13623333234696],[33.40653406534065,31.13792190961685],[33.40653406534065,31.154807682315678],[33.41733417334174,31.151430527775915],[33.42093420934211,31.148053373236138],[33.42813428134281,31.148053373236138],[33.44253442534426,31.151430527775915],[33.48213482134821,31.1328561778072],[33.50013500135003,31.127790445997547],[33.57213572135723,31.121036136918022],[33.593735937359384,31.114281827838496],[33.593735937359384,31.121036136918022],[33.61533615336154,31.11597040510837],[33.64773647736479,31.11765898237826],[33.85293852938531,31.16325056866509],[34.047340473404745,31.229105082190515],[34.198541985419865,31.313533945684654],[34.223742237422385,31.327042563843705],[34.23814238142381,31.34223975927266],[34.281342813428154,31.376011304670314],[34.30294302943031,31.40809427279808],[34.349743497434986,31.438488663655974],[34.36774367743678,31.468883054513853],[34.44334443344434,31.534737568039276],[34.47934479344795,31.578640577056234],[34.482944829448314,31.583706308865885],[34.490144901449014,31.600592081564713],[34.515345153451534,31.62760931788283],[34.60174601746019,31.7576297676638],[34.608946089460915,31.766072654013215],[34.666546665466655,31.874141599285707],[34.691746917469175,31.926487494652065],[34.71334713347133,31.951816153700307],[34.742147421474215,32.03962217173421],[34.74574745747458,32.04468790354386],[34.742147421474215,32.05481936716315],[34.742147421474215,32.0598850989728],[34.75654756547567,32.06663940805234],[34.83934839348393,32.281088721327436],[34.87174871748718,32.42968352107711],[34.90414904149043,32.56139254812797],[34.911349113491156,32.56983543447738],[34.91494914949149,32.615427020764216],[34.92214922149222,32.62893563892327],[34.918549185491855,32.64244425708233],[34.943749437494375,32.72518454330658],[34.94734947349474,32.81467913861037],[34.95454954549547,32.83494206584896],[34.968949689496895,32.84169637492849],[34.98334983349835,32.838319220388726],[35.00495004950051,32.828187756769424],[35.019350193501936,32.82481060222966],[35.026550265502664,32.82649917949955],[35.062550625506276,32.85858214762732],[35.06615066150661,32.86702503397673],[35.076950769507704,32.89235369302497],[35.08055080550807,32.90586231118404],[35.076950769507704,32.917682352073214],[35.06615066150661,32.922748083882865],[35.069750697506976,32.937945279311805],[35.076950769507704,32.99873406102758],[35.09135091350913,33.03081702915536],[35.094950949509496,33.05107995639395],[35.09135091350913,33.067965729092776],[35.094950949509496,33.07134288363254],[35.102151021510224,33.078097192712065],[35.10575105751059,33.08147434725183],[35.09855098550986,33.08822865633137],[35.10575105751059,33.08822865633137],[35.10575105751059,33.08991723360124],[35.10575105751059,33.09498296541089],[35.102151021510224,33.09498296541089],[35.102151021510224,33.098360119950655],[35.09855098550986,33.10173727449043],[35.10575105751059,33.11186873810972],[35.11655116551165,33.1236887789989],[35.12375123751238,33.13213166534831],[35.1489514895149,33.140574551697725],[35.15615156151563,33.15070601531703],[35.15975159751599,33.162526056206204],[35.16695166951669,33.17096894255562],[35.163351633516356,33.17772325163514],[35.16695166951669,33.17772325163514],[35.170551705517056,33.17603467436527],[35.17415174151742,33.17096894255562],[35.20655206552067,33.225003415191864],[35.21015210152103,33.25539780604976],[35.188551885518876,33.280726465098],[35.21015210152103,33.29423508325705],[35.22455224552246,33.312809433225766],[35.24255242552425,33.355023864972836],[35.246152461524616,33.36853248313189],[35.246152461524616,33.39554971945002],[35.24975249752498,33.40905833760908],[35.26775267752677,33.432698419387435],[35.2749527495275,33.44451846027661],[35.271352713527136,33.45802707843568],[35.32175321753218,33.490110046563444],[35.35055350553506,33.51375012834181],[35.36135361353615,33.54414451919969],[35.36135361353615,33.55596456008887],[35.4009540095401,33.64377057812277],[35.39375393753937,33.65052488720231],[35.40815408154083,33.6606563508216],[35.42255422554226,33.70287078256867],[35.43695436954371,33.71131366891808],[35.43695436954371,33.72313370980726],[35.47655476554766,33.804185418761634],[35.480154801548025,33.824448346000224],[35.48375483754839,33.864974200477405],[35.48375483754839,33.87172850955693],[35.480154801548025,33.88354855044612],[35.4729547295473,33.89368001406541],[35.46935469354693,33.902122900414824],[35.47655476554766,33.91056578676424],[35.48735487354875,33.912254364034126],[35.49815498154982,33.91056578676424],[35.51255512555127,33.907188632224475],[35.51615516155164,33.902122900414824],[35.52335523355234,33.902122900414824],[35.53415534155343,33.907188632224475],[35.54855548555486,33.90550005495459],[35.555755557555585,33.90550005495459],[35.57375573755738,33.91056578676424],[35.57735577355774,33.91732009584376],[35.58815588155883,33.93589444581248],[35.59175591755917,33.94433733216189],[35.59175591755917,33.949403063971545],[35.59175591755917,33.95109164124142],[35.58455584555847,33.95109164124142],[35.59535595355953,33.95953452759083],[35.606156061560625,33.9831746093692],[35.61335613356135,33.99330607298849],[35.62055620556205,33.99499465025838],[35.63495634956351,33.99499465025838],[35.64215642156421,34.00006038206803],[35.64215642156421,34.00850326841744],[35.63495634956351,34.01356900022708],[35.631356313563145,34.01525757749697],[35.62775627756278,34.02032330930662],[35.62775627756278,34.04396339108497],[35.64215642156421,34.087866400101916],[35.64935649356494,34.1199493682297],[35.64575645756457,34.130080831848986],[35.631356313563145,34.152032336357465],[35.62775627756278,34.167229531786404],[35.62775627756278,34.20100107718406],[35.631356313563145,34.2077553862636],[35.64575645756457,34.21619827261301],[35.64935649356494,34.22295258169254],[35.64935649356494,34.25334697255043],[35.6529565295653,34.2854299406782],[35.663756637566394,34.31075859972644],[35.688956889568914,34.32764437242527],[35.706957069570706,34.31582433153609],[35.721357213572134,34.33777583604456],[35.73575735757359,34.36985880417234],[35.75015750157502,34.39012173141093],[35.807758077580786,34.41545039045917],[35.822158221582214,34.43402474042787],[35.80415804158042,34.459353399476115],[35.80415804158042,34.464419131285766],[35.82575825758258,34.461041976746],[35.9049590495905,34.47792774944483],[35.95535955359554,34.520142181191886],[35.973359733597334,34.53027364481119],[35.98415984159843,34.5387165311606],[35.98775987759879,34.55222514931967],[35.991359913599155,34.599505312876374],[35.98775987759879,34.62145681738485],[35.98055980559806,34.63834259008368],[35.96975969759697,34.65016263097286],[35.966159661596635,34.668736980941574],[35.948159481594814,34.69913137179945],[35.940959409594115,34.72614860811758],[35.93015930159302,34.74134580354652],[35.93015930159302,34.74978868989594],[35.93015930159302,34.79031454437313],[35.92655926559266,34.79706885345266],[35.908559085590866,34.8223975125009],[35.9049590495905,34.83252897612019],[35.897758977589774,34.85279190335878],[35.865358653586554,34.92371214869385],[35.872558725587254,34.92708930323363],[35.872558725587254,34.932155035043266],[35.87975879758798,34.93722076685292],[35.87975879758798,34.94566365320233],[35.87975879758798,34.95241796228187],[35.872558725587254,34.95748369409151],[35.872558725587254,34.96592658044092],[35.87975879758798,34.969303734980684],[35.87975879758798,34.97099231225057],[35.87615876158762,34.97099231225057],[35.872558725587254,34.97943519859999],[35.883358833588346,34.99294381675905],[35.88695886958871,34.99969812583858],[35.89415894158941,35.00645243491812],[35.90135901359014,35.021649630347056],[35.897758977589774,35.036846825775996],[35.890558905589074,35.05035544393506],[35.88695886958871,35.06217548482424],[35.88695886958871,35.10945564838096],[35.89415894158941,35.121275689270135],[35.940959409594115,35.18037589371603],[35.96255962559627,35.19726166641486],[35.95175951759518,35.224278902732976],[35.915759157591594,35.288444838988525],[35.93015930159302,35.32221638438618],[35.922959229592294,35.33910215708501],[35.915759157591594,35.40326809334054],[35.91935919359193,35.41846528876948],[35.908559085590866,35.42521959784902],[35.86175861758619,35.47925407048527],[35.840158401584034,35.48769695683468],[35.82935829358294,35.49276268864433],[35.82575825758258,35.50289415226362],[35.81855818558185,35.50964846134316],[35.80055800558006,35.506271306803384],[35.78615786157863,35.50289415226362],[35.782557825578266,35.49951699772386],[35.771757717577174,35.50458272953351],[35.771757717577174,35.5147141931528],[35.77535775357754,35.52991138858175],[35.7789577895779,35.54173142947093],[35.771757717577174,35.54679716128058],[35.73575735757359,35.56199435670952],[35.739357393573954,35.56706008851917],[35.739357393573954,35.57719155213846],[35.74295742957429,35.58225728394811],[35.73575735757359,35.58225728394811],[35.7249572495725,35.575502974868584],[35.7249572495725,35.58225728394811],[35.74295742957429,35.58732301575776],[35.764557645576474,35.59745447937705],[35.7789577895779,35.612651674806],[35.782557825578266,35.631226024774705],[35.782557825578266,35.64135748839401],[35.771757717577174,35.65486610655307],[35.771757717577174,35.66837472471212],[35.77535775357754,35.67512903379166],[35.80055800558006,35.68188334287119],[35.840158401584034,35.74267212458696],[35.840158401584034,35.74773785639661],[35.840158401584034,35.77137793817498],[35.83655836558367,35.78995228814368],[35.82575825758258,35.813592369922034],[35.81135811358115,35.83554387443051],[35.796957969579694,35.84905249258958],[35.847358473584734,35.84736391531969],[35.872558725587254,35.85242964712934],[35.87975879758798,35.865938265288406],[35.88695886958871,35.886201192527],[35.91215912159123,35.918284160654764],[35.922959229592294,35.93179277881383],[35.966159661596635,35.99427013779949],[35.9769597695977,36.001024446879015],[35.9769597695977,36.01791021957784],[35.948159481594814,36.08714188764304],[35.87975879758798,36.18170221475647],[35.865358653586554,36.19689941018541],[35.8509585095851,36.21378518288424],[35.840158401584034,36.24417957374213],[35.82575825758258,36.257688191901195],[35.81135811358115,36.26950823279037],[35.796957969579694,36.28132827367955],[35.78615786157863,36.3049683554579],[35.789757897578994,36.320165550886855],[35.814958149581514,36.35224851901462],[35.82575825758258,36.36069140536404],[35.832958329583306,36.36575713717369],[35.84375843758437,36.36913429171345],[35.858158581585826,36.36913429171345],[35.86175861758619,36.3742000235231],[35.872558725587254,36.397840105301455],[35.883358833588346,36.40459441438098],[35.897758977589774,36.413037300730394],[35.908559085590866,36.418103032540046],[35.91215912159123,36.42654591888946],[35.91935919359193,36.44849742339794],[35.93015930159302,36.455251732477464],[35.933759337593386,36.45862888701723],[35.940959409594115,36.46369461882688],[35.98055980559806,36.475514659716055],[35.991359913599155,36.47889181425582],[36.03816038160383,36.52786055508243],[36.04536045360453,36.537992018701715],[36.05616056160562,36.537992018701715],[36.16416164161643,36.59371506860785],[36.17856178561786,36.59709222314761],[36.18936189361895,36.60384653222714],[36.200162001620015,36.622420882195854],[36.21096210962111,36.642683809434445],[36.21456214562147,36.657881004863384],[36.21456214562147,36.669701045752575],[36.21096210962111,36.67983250937186],[36.20736207362074,36.68827539572128],[36.20376203762038,36.700095436610454],[36.200162001620015,36.70684974568999],[36.20376203762038,36.769327104675654],[36.200162001620015,36.78452430010459],[36.18936189361895,36.80141007280342],[36.12816128161282,36.86895316359873],[36.09576095760957,36.89765897718674],[36.05976059760599,36.91792190442533],[36.02016020160201,36.92636479077474],[35.98415984159843,36.91623332715544],[35.95175951759518,36.8909046681072],[35.89415894158941,36.83518161820108],[35.87975879758798,36.82673873185166],[35.865358653586554,36.82167300004201],[35.85455854558546,36.81660726823236],[35.822158221582214,36.78452430010459],[35.80415804158042,36.77439283648529],[35.76815768157681,36.767638527405765],[35.68535685356855,36.764261372866],[35.64935649356494,36.7541299092467],[35.63495634956351,36.74399844562741],[35.62415624156242,36.725424095658695],[35.61335613356135,36.720358363849044],[35.61695616956169,36.727112672928584],[35.61695616956169,36.732178404738235],[35.61335613356135,36.735555559278],[35.606156061560625,36.740621291087635],[35.59535595355953,36.725424095658695],[35.580955809558105,36.71360405476952],[35.57375573755738,36.700095436610454],[35.580955809558105,36.684898241181514],[35.59535595355953,36.70178401388034],[35.61695616956169,36.69671828207069],[35.62055620556205,36.71191547749963],[35.62415624156242,36.710226900229756],[35.62775627756278,36.70853832295987],[35.631356313563145,36.705161168420105],[35.63495634956351,36.700095436610454],[35.638556385563874,36.70684974568999],[35.64215642156421,36.71360405476952],[35.638556385563874,36.720358363849044],[35.63495634956351,36.727112672928584],[35.64935649356494,36.73386698200811],[35.6529565295653,36.727112672928584],[35.656556565565666,36.71698120930928],[35.663756637566394,36.71191547749963],[35.67455674556746,36.71529263203941],[35.68535685356855,36.720358363849044],[35.69615696156961,36.72373551838882],[35.71055710557107,36.720358363849044],[35.64935649356494,36.69840685934058],[35.62415624156242,36.68152108664175],[35.606156061560625,36.657881004863384],[35.60975609756099,36.64606096397421],[35.62055620556205,36.65450385032362],[35.66735667356673,36.69671828207069],[35.681756817568186,36.703472591150216],[35.69615696156961,36.70684974568999],[35.656556565565666,36.67476677756221],[35.6529565295653,36.6663238912128],[35.64215642156421,36.64943811851397],[35.638556385563874,36.640995232164556],[35.631356313563145,36.63086376854527],[35.631356313563145,36.6173551503862],[35.631356313563145,36.607223686766915],[35.62415624156242,36.60215795495726],[35.61335613356135,36.600469377687375],[35.5989559895599,36.59202649133796],[35.58815588155883,36.59033791406809],[35.555755557555585,36.58696075952831],[35.54495544955449,36.59033791406809],[35.51255512555127,36.61228941857655],[35.505355053550545,36.6173551503862],[35.49095490954912,36.61397799584644],[35.480154801548025,36.607223686766915],[35.480154801548025,36.5987808004175],[35.48735487354875,36.59709222314761],[35.49815498154982,36.59371506860785],[35.530555305553065,36.58189502771867],[35.48735487354875,36.59202649133796],[35.44415444154441,36.59709222314761],[35.43695436954371,36.59371506860785],[35.41175411754119,36.58358360498855],[35.40815408154083,36.578517873178896],[35.404554045540465,36.57176356409937],[35.39375393753937,36.56838640955961],[35.37575375753758,36.56163210048008],[35.3469534695347,36.544746327781255],[35.3469534695347,36.54136917324148],[35.33615336153363,36.54643490505113],[35.32175321753218,36.565009255019845],[35.30735307353075,36.56838640955961],[35.29295292952929,36.57176356409937],[35.04095040950409,36.6950297048008],[35.01575015750157,36.703472591150216],[34.98334983349835,36.720358363849044],[34.961749617496196,36.727112672928584],[34.94734947349474,36.72880125019846],[34.93294932949331,36.727112672928584],[34.92934929349295,36.727112672928584],[34.91494914949149,36.725424095658695],[34.90054900549006,36.720358363849044],[34.90414904149043,36.72373551838882],[34.90774907749079,36.740621291087635],[34.893348933489335,36.745687022897286],[34.85374853748539,36.78114714556483],[34.7709477094771,36.81660726823236],[34.76374763747637,36.808164381882946],[34.734947349473515,36.82167300004201],[34.691746917469175,36.8132301136926],[34.62694626946271,36.789590031914244],[34.59814598145982,36.78452430010459],[34.583745837458395,36.78114714556483],[34.55494554945551,36.767638527405765],[34.54774547745478,36.762572795596114],[34.540545405454054,36.74399844562741],[34.533345333453354,36.740621291087635],[34.50454504545047,36.727112672928584],[34.414544145441454,36.662946736673035],[34.306543065430674,36.60891226403679],[34.27774277742779,36.58696075952831],[34.19134191341914,36.49915474149442],[34.18054180541807,36.48395754606547],[34.17694176941771,36.47382608244618],[34.16974169741698,36.46707177336664],[34.148141481414825,36.45862888701723],[34.11214112141121,36.42992307342922],[34.07614076140763,36.41472587800028],[34.07614076140763,36.38770864168215],[34.07974079740799,36.355625673554385],[34.07614076140763,36.32860843723627],[34.05814058140581,36.315099819077204],[34.02574025740259,36.31003408726755],[34.00054000540007,36.30327977818803],[33.98973989739898,36.28132827367955],[33.99333993339934,36.28301685094944],[33.996939969399705,36.2863940054892],[33.996939969399705,36.27963969640966],[33.97533975339755,36.25937676917107],[33.96813968139682,36.24755672828189],[33.96453964539646,36.23235953285295],[33.96453964539646,36.22053949196378],[33.95733957339573,36.21378518288424],[33.9429394293943,36.21378518288424],[33.9429394293943,36.21885091469389],[33.95013950139503,36.237425264662605],[33.946539465394665,36.26444250098072],[33.93213932139321,36.28977116002896],[33.91053910539105,36.30159120091814],[33.896138961389624,36.3049683554579],[33.88173881738817,36.31172266453744],[33.870938709387104,36.315099819077204],[33.85653856538565,36.3049683554579],[33.838538385383856,36.27963969640966],[33.82773827738279,36.271196810060246],[33.80973809738097,36.26781965552048],[33.8169381693817,36.26613107825061],[33.820538205382064,36.26444250098072],[33.82413824138243,36.25937676917107],[33.813338133381336,36.250933882821656],[33.79893798937991,36.230670955583065],[33.788137881378816,36.225605223773414],[33.77733777337775,36.225605223773414],[33.74133741337414,36.21378518288424],[33.73413734137341,36.208719451074586],[33.70533705337053,36.18170221475647],[33.70173701737019,36.17157075113717],[33.694536945369464,36.14455351481905],[33.687336873368736,36.13779920573951],[33.68373683736837,36.14286493754916],[33.65853658536585,36.174947905676945],[33.65493654936549,36.188456523835995],[33.64773647736479,36.19183367837576],[33.63333633336333,36.190145101105884],[33.618936189361904,36.18507936929623],[33.59733597335975,36.168193596597405],[33.57573575735759,36.14455351481905],[33.55053550535507,36.127667742120224],[33.52893528935289,36.131044896659986],[33.54333543335434,36.13779920573951],[33.54333543335434,36.14455351481905],[33.52173521735219,36.146242092088926],[33.47853478534785,36.15637355570823],[33.45693456934569,36.15806213297812],[33.435334353343535,36.15468497843834],[33.39933399333995,36.1394877830094],[33.384933849338495,36.13779920573951],[33.34893348933491,36.147930669358814],[33.327333273332755,36.1496192466287],[33.309333093330935,36.132733473929875],[33.28773287732878,36.1293563193901],[33.2409324093241,36.131044896659986],[33.21213212132122,36.12429058758046],[33.201332013320155,36.12260201031057],[33.1869318693187,36.125979164850335],[33.168931689316906,36.13442205119975],[33.158131581315814,36.13779920573951],[33.132931329313294,36.131044896659986],[33.12213122131223,36.11922485577081],[33.11133111331114,36.10402766034187],[33.09693096930971,36.08883046491292],[33.08613086130862,36.08207615583339],[33.082530825308254,36.08207615583339],[33.07893078930789,36.085453310373154],[33.07173071730719,36.08883046491292],[33.057330573305734,36.090519042182805],[33.02853028530285,36.08883046491292],[32.96012960129602,36.10233908307198],[32.942129421294226,36.10402766034187],[32.87732877328773,36.07532184675385],[32.866528665286666,36.07194469221409],[32.85572855728557,36.0618132285948],[32.80532805328053,36.02635310592726],[32.76212762127622,36.02973026046702],[32.67212672126723,36.04661603316585],[32.63252632526326,36.0618132285948],[32.57132571325715,36.09389619672257],[32.56772567725679,36.09558477399246],[32.531725317253176,36.09896192853222],[32.513725137251384,36.10233908307198],[32.438124381243824,36.1394877830094],[32.42732427324273,36.147930669358814],[32.42012420124203,36.15975071024799],[32.40212402124021,36.16481644205764],[32.380523805238056,36.16988217386729],[32.36612366123663,36.17832506021671],[32.31932319323195,36.22898237831319],[32.30852308523086,36.22898237831319],[32.304923049230496,36.23404811012283],[32.286922869228704,36.24417957374213],[32.28332283322834,36.250933882821656],[32.279722797227976,36.27963969640966],[32.27612276122761,36.288082582759074],[32.25092250922509,36.315099819077204],[32.19332193321935,36.35900282809415],[32.178921789217895,36.38770864168215],[32.178921789217895,36.39615152803157],[32.17532175321753,36.402905837111106],[32.16452164521647,36.41472587800028],[32.15012150121501,36.42992307342922],[32.15012150121501,36.433300227968985],[32.13572135721358,36.438365959778636],[32.13212132121322,36.438365959778636],[32.11412114121143,36.4704489279064],[32.103321033210335,36.48564612333536],[32.08892088920891,36.49408900968477],[32.027720277202775,36.543057750511366],[32.02052020520205,36.54643490505113],[32.00972009720098,36.54812348232102],[31.99891998919989,36.54812348232102],[31.988119881198827,36.54981205959089],[31.9809198091981,36.55487779140054],[31.97371973719737,36.558254945940305],[31.96651966519667,36.56163210048008],[31.926919269192695,36.559943523210194],[31.908919089190903,36.56332067774996],[31.89811898118981,36.57176356409937],[31.887318873188747,36.58189502771867],[31.862118621186227,36.5886493367982],[31.833318333183342,36.59202649133796],[31.81531815318155,36.59033791406809],[31.808118081180822,36.59709222314761],[31.768517685176846,36.61060084130668],[31.750517505175054,36.63255234581514],[31.736117361173626,36.642683809434445],[31.725317253172534,36.640995232164556],[31.703717037170378,36.64437238670433],[31.628116281162818,36.67138962302245],[31.610116101161026,36.68152108664175],[31.59571595715957,36.6950297048008],[31.408514085140865,36.762572795596114],[31.37971379713798,36.767638527405765],[31.376113761137617,36.79127860918412],[31.340113401134005,36.808164381882946],[30.940509405094048,36.85713312270954],[30.7749077490775,36.850378813630016],[30.74970749707498,36.85544454543967],[30.728107281072823,36.865576009058955],[30.68490684906851,36.8909046681072],[30.627306273062743,36.85882169997943],[30.602106021060223,36.83855877274084],[30.587705877058767,36.80647580461307],[30.57330573305734,36.789590031914244],[30.569705697056975,36.78114714556483],[30.569705697056975,36.75075275470694],[30.56610566105661,36.71866978657917],[30.56610566105661,36.700095436610454],[30.576905769057703,36.684898241181514],[30.576905769057703,36.67814393210199],[30.569705697056975,36.67138962302245],[30.562505625056247,36.662946736673035],[30.55890558905591,36.65281527305375],[30.555305553055547,36.63761807762479],[30.55890558905591,36.61904372765609],[30.562505625056247,36.60891226403679],[30.569705697056975,36.600469377687375],[30.576905769057703,36.59033791406809],[30.58410584105843,36.59709222314761],[30.580505805058067,36.57514071863913],[30.56610566105661,36.5396805959716],[30.569705697056975,36.52786055508243],[30.537305373053726,36.50590905057395],[30.519305193051935,36.48902327787512],[30.50850508505087,36.45356315520759],[30.486904869048686,36.42654591888946],[30.486904869048686,36.418103032540046],[30.476104761047623,36.40121725984122],[30.476104761047623,36.38433148714239],[30.486904869048686,36.370822868983325],[30.501305013050143,36.3640685599038],[30.494104941049414,36.34887136447486],[30.519305193051935,36.34211705539532],[30.504905049050507,36.32691985996638],[30.479704797047987,36.308345509997665],[30.46530465304653,36.288082582759074],[30.47250472504726,36.288082582759074],[30.479704797047987,36.29145973729885],[30.479704797047987,36.28977116002896],[30.486904869048686,36.288082582759074],[30.476104761047623,36.27963969640966],[30.46530465304653,36.271196810060246],[30.450904509045102,36.26106534644096],[30.44010440104401,36.23911384193248],[30.425704257042582,36.225605223773414],[30.3969039690397,36.20534229653482],[30.400504005040062,36.24755672828189],[30.3969039690397,36.26613107825061],[30.38250382503827,36.27457396460002],[30.360903609036086,36.26781965552048],[30.252902529025306,36.308345509997665],[30.234902349023486,36.308345509997665],[30.159301593015925,36.29821404637838],[30.14850148501486,36.28977116002896],[30.144901449014498,36.27457396460002],[30.144901449014498,36.25431103736142],[30.13770137701377,36.25431103736142],[30.13770137701377,36.26106534644096],[30.13050130501307,36.27457396460002],[30.12330123301234,36.25431103736142],[30.12330123301234,36.24755672828189],[30.108901089010885,36.25431103736142],[30.11250112501125,36.24755672828189],[30.108901089010885,36.24080241920237],[30.0729007290073,36.24755672828189],[30.065700657006573,36.24924530555178],[30.058500585005845,36.25599961463131],[30.04770047700478,36.25937676917107],[30.033300333003325,36.25431103736142],[30.05490054900551,36.25431103736142],[30.05490054900551,36.24755672828189],[29.990099900999013,36.217162337424],[29.97209972099722,36.21885091469389],[29.96129961299613,36.21378518288424],[29.950499504995065,36.21378518288424],[29.939699396993973,36.217162337424],[29.925299252992545,36.21885091469389],[29.918099180991817,36.21885091469389],[29.91089910899109,36.217162337424],[29.89649896498966,36.20534229653482],[29.882098820988205,36.1985879874553],[29.842498424984257,36.19183367837576],[29.831698316983164,36.18507936929623],[29.83529835298353,36.18507936929623],[29.838898388983893,36.18339079202636],[29.83529835298353,36.17832506021671],[29.82809828098283,36.17832506021671],[29.80289802898031,36.17157075113717],[29.80289802898031,36.16481644205764],[29.824498244982465,36.16481644205764],[29.81009810098101,36.15468497843834],[29.79569795697958,36.14455351481905],[29.781297812978124,36.1394877830094],[29.763297632976332,36.13779920573951],[29.763297632976332,36.14455351481905],[29.766897668976696,36.147930669358814],[29.77049770497706,36.15130782389858],[29.77049770497706,36.15468497843834],[29.774097740977425,36.15806213297812],[29.763297632976332,36.15637355570823],[29.75969759697597,36.15468497843834],[29.756097560975604,36.15130782389858],[29.741697416974176,36.16143928751788],[29.730897308973084,36.16481644205764],[29.72009720097202,36.163127864787754],[29.705697056970564,36.15806213297812],[29.70209702097023,36.15468497843834],[29.70209702097023,36.1496192466287],[29.698496984969864,36.146242092088926],[29.687696876968772,36.14455351481905],[29.687696876968772,36.14117636027929],[29.673296732967344,36.12260201031057],[29.66969669696698,36.14455351481905],[29.633696336963368,36.15637355570823],[29.622896228962304,36.17832506021671],[29.637296372963732,36.173259328407056],[29.64449644496446,36.17832506021671],[29.640896408964096,36.18676794656612],[29.633696336963368,36.19183367837576],[29.583295832958328,36.18507936929623],[29.583295832958328,36.19183367837576],[29.59409594095942,36.195210832915535],[29.601296012960148,36.1985879874553],[29.612096120961212,36.20027656472517],[29.622896228962304,36.1985879874553],[29.601296012960148,36.20703087380471],[29.522095220952224,36.20534229653482],[29.49329493294934,36.210408028344474],[29.432094320943207,36.24080241920237],[29.421294212942144,36.230670955583065],[29.414094140941415,36.23911384193248],[29.41049410494105,36.26781965552048],[29.406894068940687,36.25937676917107],[29.403294032940323,36.26106534644096],[29.399693996939988,36.26613107825061],[29.39249392493926,36.26781965552048],[29.381693816938167,36.26444250098072],[29.378093780937803,36.26106534644096],[29.374493744937467,36.25937676917107],[29.370893708937103,36.25431103736142],[29.363693636936375,36.24755672828189],[29.36009360093601,36.24080241920237],[29.356493564935647,36.235736687392716],[29.349293492934947,36.23235953285295],[29.34209342093422,36.237425264662605],[29.33489334893349,36.24755672828189],[29.327693276932763,36.25431103736142],[29.320493204932063,36.24755672828189],[29.262892628926295,36.293148314568725],[29.255692556925567,36.29652546910849],[29.248492484924867,36.31172266453744],[29.23409234092341,36.32354270542662],[29.176491764917643,36.340428478125446],[29.15849158491585,36.357314250824274],[29.144091440914423,36.34887136447486],[29.14049140491406,36.36237998263391],[29.14049140491406,36.36575713717369],[29.144091440914423,36.36913429171345],[29.144091440914423,36.377577178062865],[29.11529115291154,36.377577178062865],[29.122491224912267,36.382642909872516],[29.111691116911175,36.38939721895204],[29.104491044910446,36.39108579622193],[29.097290972909747,36.39108579622193],[29.10089100891011,36.39952868257134],[29.10809108091081,36.40628299165087],[29.118891188911903,36.40966014619063],[29.129691296912966,36.41134872346052],[29.129691296912966,36.41641445527016],[29.126091260912602,36.41641445527016],[29.122491224912267,36.418103032540046],[29.129691296912966,36.43667738250876],[29.122491224912267,36.45356315520759],[29.111691116911175,36.46707177336664],[29.097290972909747,36.47382608244618],[29.097290972909747,36.47889181425582],[29.10809108091081,36.48902327787512],[29.11529115291154,36.49071185514501],[29.122491224912267,36.49408900968477],[29.122491224912267,36.500843318764296],[29.118891188911903,36.53630344143184],[29.11529115291154,36.55318921413067],[29.104491044910446,36.54812348232102],[29.097290972909747,36.54812348232102],[29.08289082890829,36.559943523210194],[29.036090360903614,36.544746327781255],[29.01449014490146,36.54812348232102],[29.03249032490325,36.55150063686078],[29.036090360903614,36.56163210048008],[29.03249032490325,36.57514071863913],[29.021690216902186,36.59033791406809],[29.02529025290255,36.59709222314761],[29.036090360903614,36.61397799584644],[29.043290432904342,36.62410945946574],[29.054090540905406,36.61397799584644],[29.068490684906862,36.62410945946574],[29.079290792907926,36.63930665489468],[29.097290972909747,36.64437238670433],[29.097290972909747,36.63761807762479],[29.09009090090902,36.627486614005505],[29.097290972909747,36.62410945946574],[29.111691116911175,36.62579803673562],[29.11529115291154,36.63424092308503],[29.11529115291154,36.642683809434445],[29.10809108091081,36.65281527305375],[29.10089100891011,36.65956958213327],[29.097290972909747,36.664635313942924],[29.03249032490325,36.70178401388034],[28.95688956889569,36.727112672928584],[28.946089460894626,36.73724413654787],[28.938889388893898,36.75075275470694],[28.92448924489247,36.740621291087635],[28.902889028890286,36.72373551838882],[28.892088920889222,36.71191547749963],[28.892088920889222,36.70684974568999],[28.89928899288995,36.70684974568999],[28.89928899288995,36.700095436610454],[28.877688776887766,36.69840685934058],[28.870488704887066,36.69671828207069],[28.863288632886338,36.69334112753093],[28.859688596885974,36.684898241181514],[28.863288632886338,36.67476677756221],[28.863288632886338,36.66801246848269],[28.84888848888491,36.664635313942924],[28.85608856088561,36.65619242759351],[28.859688596885974,36.65450385032362],[28.863288632886338,36.65112669578386],[28.85608856088561,36.64437238670433],[28.866888668886702,36.63424092308503],[28.870488704887066,36.63086376854527],[28.877688776887766,36.63086376854527],[28.88128881288813,36.640995232164556],[28.888488884888858,36.647749541244096],[28.888488884888858,36.657881004863384],[28.884888848888494,36.67138962302245],[28.902889028890286,36.657881004863384],[28.895688956889586,36.640995232164556],[28.877688776887766,36.62579803673562],[28.863288632886338,36.6173551503862],[28.870488704887066,36.607223686766915],[28.859688596885974,36.600469377687375],[28.841688416884182,36.600469377687375],[28.827288272882726,36.60215795495726],[28.820088200882026,36.61228941857655],[28.820088200882026,36.620732304925966],[28.827288272882726,36.627486614005505],[28.841688416884182,36.63086376854527],[28.841688416884182,36.63761807762479],[28.82368823688239,36.64437238670433],[28.81648816488166,36.65112669578386],[28.80568805688057,36.65450385032362],[28.787687876878778,36.65112669578386],[28.784087840878414,36.67814393210199],[28.74808748087483,36.69840685934058],[28.701287012870125,36.705161168420105],[28.67248672486727,36.69334112753093],[28.66528665286654,36.69334112753093],[28.661686616866177,36.710226900229756],[28.650886508865085,36.71866978657917],[28.636486364863657,36.71529263203941],[28.62208622086223,36.700095436610454],[28.6148861488615,36.705161168420105],[28.60408604086041,36.73386698200811],[28.611286112861137,36.747375600167175],[28.618486184861865,36.767638527405765],[28.6148861488615,36.78452430010459],[28.60408604086041,36.794655763723895],[28.60408604086041,36.79972149553353],[28.60408604086041,36.80141007280342],[28.607686076860773,36.80141007280342],[28.611286112861137,36.80141007280342],[28.607686076860773,36.80478722734318],[28.607686076860773,36.80647580461307],[28.607686076860773,36.809852959152835],[28.611286112861137,36.81660726823236],[28.60408604086041,36.81660726823236],[28.600486004860045,36.80647580461307],[28.59688596885971,36.803098650073295],[28.59688596885971,36.794655763723895],[28.58968589685898,36.79972149553353],[28.58968589685898,36.808164381882946],[28.575285752857525,36.81998442277212],[28.54648546485467,36.8233615773119],[28.524885248852485,36.8132301136926],[28.52848528485285,36.789590031914244],[28.517685176851785,36.79634434099377],[28.506885068850693,36.79803291826366],[28.499684996849965,36.79803291826366],[28.485284852848537,36.80141007280342],[28.499684996849965,36.808164381882946],[28.499684996849965,36.81660726823236],[28.47808478084781,36.81660726823236],[28.46368463684638,36.81829584550225],[28.456484564845653,36.82842730912154],[28.45288452884529,36.850378813630016],[28.460084600846017,36.84869023636014],[28.46368463684638,36.850378813630016],[28.467284672846745,36.85375596816978],[28.46368463684638,36.85882169997943],[28.46368463684638,36.86219885451919],[28.460084600846017,36.86388743178908],[28.460084600846017,36.867264586328844],[28.456484564845653,36.877396049948146],[28.45288452884529,36.88415035902767],[28.44568445684459,36.88246178175778],[28.44568445684459,36.87401889540837],[28.434884348843497,36.865576009058955],[28.416884168841705,36.86051027724932],[28.38808388083882,36.85713312270954],[28.37728377283773,36.85375596816978],[28.37728377283773,36.84869023636014],[28.384483844838456,36.8419359272806],[28.391683916839185,36.83518161820108],[28.39528395283955,36.83518161820108],[28.406084060840612,36.83687019547095],[28.41328413284134,36.83687019547095],[28.424084240842404,36.82842730912154],[28.41328413284134,36.814918690962486],[28.406084060840612,36.79972149553353],[28.39528395283955,36.789590031914244],[28.37728377283773,36.789590031914244],[28.323283232832324,36.809852959152835],[28.316083160831624,36.81660726823236],[28.308883088830896,36.81660726823236],[28.31248312483126,36.79972149553353],[28.316083160831624,36.794655763723895],[28.28728287282874,36.79296718645401],[28.276482764827648,36.79634434099377],[28.272882728827284,36.80478722734318],[28.280082800828012,36.814918690962486],[28.28728287282874,36.81829584550225],[28.316083160831624,36.82167300004201],[28.316083160831624,36.82842730912154],[28.301683016830168,36.83518161820108],[28.28728287282874,36.845313081820365],[28.272882728827284,36.852067390899904],[28.258482584825856,36.84700165909025],[28.244082440824428,36.830115886391425],[28.2368823688237,36.8132301136926],[28.240482404824064,36.79803291826366],[28.254882548825492,36.789590031914244],[28.247682476824764,36.767638527405765],[28.28728287282874,36.74230986835752],[28.29448294482947,36.720358363849044],[28.283682836828376,36.727112672928584],[28.265682656826584,36.73048982746835],[28.254882548825492,36.727112672928584],[28.247682476824764,36.71191547749963],[28.240482404824064,36.71529263203941],[28.233282332823336,36.720358363849044],[28.233282332823336,36.71529263203941],[28.233282332823336,36.71191547749963],[28.229682296822972,36.70853832295987],[28.226082260822608,36.70684974568999],[28.229682296822972,36.705161168420105],[28.233282332823336,36.705161168420105],[28.233282332823336,36.700095436610454],[28.182881828818296,36.684898241181514],[28.16128161281614,36.67307820029234],[28.143281432814348,36.65112669578386],[28.132481324813256,36.62917519127538],[28.1108811088111,36.60384653222714],[28.089280892808944,36.5886493367982],[28.06048060480606,36.59709222314761],[28.056880568805695,36.59033791406809],[28.05328053280533,36.58696075952831],[28.049680496804967,36.585272182258436],[28.042480424804268,36.58189502771867],[28.042480424804268,36.580206450448784],[28.046080460804603,36.57176356409937],[28.049680496804967,36.56838640955961],[28.03528035280354,36.565009255019845],[28.024480244802447,36.56332067774996],[28.017280172801748,36.56669783228972],[28.013680136801383,36.57514071863913],[28.00288002880029,36.56163210048008],[27.992079920799227,36.559943523210194],[27.97767977679777,36.565009255019845],[27.966879668796707,36.57514071863913],[27.966879668796707,36.578517873178896],[27.970479704797043,36.58696075952831],[27.974079740797407,36.59033791406809],[27.966879668796707,36.59202649133796],[27.963279632796343,36.595403645877724],[27.95967959679598,36.60215795495726],[28.03528035280354,36.60215795495726],[28.05328053280533,36.60891226403679],[28.064080640806424,36.61904372765609],[28.074880748807487,36.63086376854527],[28.089280892808944,36.64437238670433],[28.074880748807487,36.657881004863384],[28.056880568805695,36.642683809434445],[28.049680496804967,36.63761807762479],[28.049680496804967,36.64437238670433],[28.056880568805695,36.65281527305375],[28.06048060480606,36.664635313942924],[28.056880568805695,36.6764553548321],[28.049680496804967,36.684898241181514],[28.038880388803904,36.689963972991166],[28.03528035280354,36.68827539572128],[28.03528035280354,36.67476677756221],[28.02808028080281,36.669701045752575],[28.017280172801748,36.67138962302245],[28.006480064800655,36.67476677756221],[27.999279992799927,36.67814393210199],[27.992079920799227,36.6764553548321],[27.981279812798135,36.6764553548321],[27.970479704797043,36.67983250937186],[27.966879668796707,36.68827539572128],[27.970479704797043,36.69334112753093],[28.006480064800655,36.700095436610454],[27.999279992799927,36.70684974568999],[28.020880208802083,36.705161168420105],[28.02808028080281,36.70684974568999],[28.031680316803175,36.70853832295987],[28.038880388803904,36.71360405476952],[28.042480424804268,36.71866978657917],[28.042480424804268,36.720358363849044],[28.07848078480785,36.72204694111893],[28.089280892808944,36.727112672928584],[28.08568085680858,36.710226900229756],[28.100081000810007,36.710226900229756],[28.118081180811828,36.71866978657917],[28.118081180811828,36.73386698200811],[28.107281072810736,36.73893271381776],[28.089280892808944,36.740621291087635],[28.082080820808216,36.747375600167175],[28.08568085680858,36.7541299092467],[28.092880928809308,36.75919564105635],[28.10368103681037,36.767638527405765],[28.1108811088111,36.77439283648529],[28.114481144811464,36.767638527405765],[28.118081180811828,36.764261372866],[28.12888128881289,36.7541299092467],[28.125281252812528,36.77101568194553],[28.125281252812528,36.79127860918412],[28.118081180811828,36.80141007280342],[28.107281072810736,36.803098650073295],[28.096480964809643,36.80141007280342],[28.08568085680858,36.79634434099377],[28.067680676806788,36.77439283648529],[28.046080460804603,36.762572795596114],[28.038880388803904,36.764261372866],[28.03528035280354,36.77439283648529],[28.020880208802083,36.762572795596114],[27.981279812798135,36.7541299092467],[27.966879668796707,36.747375600167175],[27.95967959679598,36.747375600167175],[27.95247952479525,36.75919564105635],[27.945279452794523,36.75581848651659],[27.930879308793095,36.747375600167175],[27.916479164791667,36.740621291087635],[27.912879128791303,36.7541299092467],[27.905679056790575,36.752441331976826],[27.898478984789847,36.745687022897286],[27.891278912789147,36.740621291087635],[27.88407884078842,36.74399844562741],[27.87687876878769,36.75075275470694],[27.869678696786963,36.752441331976826],[27.862478624786263,36.740621291087635],[27.855278552785535,36.740621291087635],[27.844478444784443,36.74906417743705],[27.82647826478265,36.75750706378646],[27.804878048780495,36.76088421832624],[27.786877868778703,36.7541299092467],[27.786877868778703,36.76088421832624],[27.77607776077761,36.75581848651659],[27.765277652776547,36.75581848651659],[27.75087750877509,36.75919564105635],[27.736477364773663,36.76088421832624],[27.718477184771842,36.75581848651659],[27.696876968769686,36.73386698200811],[27.68247682476826,36.727112672928584],[27.68247682476826,36.720358363849044],[27.686076860768623,36.71191547749963],[27.671676716767166,36.67983250937186],[27.671676716767166,36.657881004863384],[27.639276392763946,36.67138962302245],[27.621276212762126,36.6764553548321],[27.603276032760334,36.67814393210199],[27.585275852758542,36.6764553548321],[27.570875708757086,36.67307820029234],[27.560075600756022,36.67476677756221],[27.552875528755294,36.684898241181514],[27.488074880748826,36.664635313942924],[27.480874808748098,36.657881004863384],[27.477274772747734,36.65281527305375],[27.47367473674737,36.65112669578386],[27.46647466474664,36.65281527305375],[27.455674556745578,36.662946736673035],[27.44847448474485,36.664635313942924],[27.426874268742694,36.66801246848269],[27.4160741607416,36.669701045752575],[27.405274052740538,36.664635313942924],[27.401674016740174,36.67814393210199],[27.394473944739445,36.684898241181514],[27.38367383673838,36.684898241181514],[27.369273692736925,36.67814393210199],[27.369273692736925,36.683209663911626],[27.369273692736925,36.684898241181514],[27.36567365673656,36.684898241181514],[27.362073620736226,36.684898241181514],[27.369273692736925,36.69165255026104],[27.369273692736925,36.69671828207069],[27.36567365673656,36.70178401388034],[27.354873548735497,36.70684974568999],[27.354873548735497,36.71191547749963],[27.369273692736925,36.70853832295987],[27.38367383673838,36.705161168420105],[27.401674016740174,36.705161168420105],[27.4160741607416,36.70853832295987],[27.42327423274233,36.720358363849044],[27.426874268742694,36.735555559278],[27.437674376743786,36.747375600167175],[27.44847448474485,36.7541299092467],[27.459274592745942,36.75581848651659],[27.484474844748462,36.7541299092467],[27.556475564755658,36.762572795596114],[27.592475924759242,36.76088421832624],[27.610476104761062,36.76594995013588],[27.617676176761762,36.77608141375518],[27.617676176761762,36.789590031914244],[27.62487624876249,36.80141007280342],[27.646476464764646,36.80647580461307],[27.689676896768987,36.78452430010459],[27.704077040770414,36.789590031914244],[27.722077220772206,36.78114714556483],[27.736477364773663,36.782835722834704],[27.747277472774726,36.78452430010459],[27.761677616776183,36.78114714556483],[27.786877868778703,36.80141007280342],[27.797677976779767,36.80647580461307],[27.887678876788783,36.808164381882946],[27.898478984789847,36.81154153642271],[27.90207902079021,36.80647580461307],[27.920079200792003,36.79972149553353],[27.941679416794187,36.79634434099377],[27.95967959679598,36.794655763723895],[27.995679956799563,36.79803291826366],[28.01008010080102,36.794655763723895],[28.02808028080281,36.78114714556483],[28.031680316803175,36.79127860918412],[28.03528035280354,36.79803291826366],[28.056880568805695,36.808164381882946],[28.049680496804967,36.81998442277212],[28.038880388803904,36.82673873185166],[28.024480244802447,36.82842730912154],[28.006480064800655,36.82842730912154],[28.013680136801383,36.83518161820108],[28.024480244802447,36.83349304093119],[28.024480244802447,36.83855877274084],[28.017280172801748,36.84869023636014],[28.006480064800655,36.85713312270954],[28.01008010080102,36.85713312270954],[28.013680136801383,36.85882169997943],[28.017280172801748,36.86051027724932],[28.020880208802083,36.86388743178908],[28.02808028080281,36.86051027724932],[28.03528035280354,36.86219885451919],[28.046080460804603,36.867264586328844],[28.056880568805695,36.87064174086861],[28.056880568805695,36.877396049948146],[28.03528035280354,36.892593245377086],[28.02808028080281,36.90272470899639],[28.020880208802083,36.91116759534579],[28.03528035280354,36.90441328626626],[28.042480424804268,36.91116759534579],[28.03528035280354,36.914544749885565],[28.031680316803175,36.91792190442533],[28.031680316803175,36.92129905896509],[28.02808028080281,36.92636479077474],[28.03528035280354,36.92467621350485],[28.05328053280533,36.92636479077474],[28.06048060480606,36.92636479077474],[28.06048060480606,36.93143052258439],[28.042480424804268,36.93143052258439],[28.042480424804268,36.93818483166392],[28.064080640806424,36.939873408933806],[28.074880748807487,36.93818483166392],[28.082080820808216,36.93143052258439],[28.089280892808944,36.93649625439403],[28.092880928809308,36.93818483166392],[28.096480964809643,36.93649625439403],[28.10368103681037,36.93143052258439],[28.1108811088111,36.93143052258439],[28.121681216812163,36.93818483166392],[28.143281432814348,36.928053368044615],[28.150481504815048,36.93143052258439],[28.157681576815776,36.93143052258439],[28.157681576815776,36.92467621350485],[28.164881648816504,36.91116759534579],[28.168481684816868,36.91623332715544],[28.168481684816868,36.9196104816952],[28.168481684816868,36.92129905896509],[28.164881648816504,36.92636479077474],[28.168481684816868,36.929741945314504],[28.168481684816868,36.93311909985427],[28.164881648816504,36.93649625439403],[28.157681576815776,36.93818483166392],[28.157681576815776,36.94662771801333],[28.164881648816504,36.94662771801333],[28.175681756817568,36.94662771801333],[28.17928179281793,36.94325056347357],[28.18648186481866,36.93818483166392],[28.204482044820452,36.96689064525192],[28.21168211682118,36.97364495433145],[28.21168211682118,36.98039926341099],[28.197281972819724,36.98039926341099],[28.208082080820816,36.990530727030276],[28.21168211682118,37.00066219064958],[28.229682296822972,36.990530727030276],[28.244082440824428,36.9888421497604],[28.254882548825492,36.99390788157005],[28.247682476824764,37.0074164997291],[28.301683016830168,37.02430227242793],[28.330483304833052,37.03105658150747],[28.330483304833052,37.03612231331711],[28.323283232832324,37.04456519966652],[28.316083160831624,37.04963093147617],[28.305283052830532,37.05131950874606],[28.175681756817568,37.034433736047234],[28.125281252812528,37.03612231331711],[28.107281072810736,37.032745158777345],[28.1108811088111,37.02092511788817],[28.1108811088111,37.01417080880864],[28.092880928809308,37.02092511788817],[27.9848798487985,37.034433736047234],[27.974079740797407,37.032745158777345],[27.963279632796343,37.02430227242793],[27.95247952479525,37.02092511788817],[27.941679416794187,37.02261369515806],[27.912879128791303,37.027679426967694],[27.887678876788783,37.02599084969782],[27.804878048780495,37.00403934518934],[27.794077940779403,37.0074164997291],[27.786877868778703,37.0074164997291],[27.786877868778703,37.00403934518934],[27.779677796777975,36.99390788157005],[27.772477724777247,36.99559645883993],[27.761677616776183,36.997285036109815],[27.75087750877509,36.997285036109815],[27.740077400774027,36.99390788157005],[27.718477184771842,37.00572792245923],[27.686076860768623,37.00572792245923],[27.65727657276574,36.997285036109815],[27.635676356763582,36.98039926341099],[27.617676176761762,36.9888421497604],[27.588875888758906,36.99897361337969],[27.567275672756722,36.997285036109815],[27.563675636756386,36.97364495433145],[27.538475384753866,36.98715357249051],[27.527675276752774,36.990530727030276],[27.513275132751346,36.99390788157005],[27.484474844748462,36.990530727030276],[27.47367473674737,36.99390788157005],[27.462874628746306,37.00066219064958],[27.444874448744486,37.02261369515806],[27.437674376743786,37.027679426967694],[27.42327423274233,37.027679426967694],[27.4088740887409,37.017547963348406],[27.401674016740174,37.02430227242793],[27.405274052740538,37.027679426967694],[27.39807398073981,37.027679426967694],[27.394473944739445,37.017547963348406],[27.38367383673838,36.99390788157005],[27.380073800738018,36.99897361337969],[27.380073800738018,37.00066219064958],[27.380073800738018,37.00235076791947],[27.38367383673838,37.0074164997291],[27.380073800738018,37.00910507699899],[27.376473764737653,37.01079365426888],[27.376473764737653,37.01417080880864],[27.380073800738018,37.017547963348406],[27.380073800738018,37.01923654061828],[27.380073800738018,37.02092511788817],[27.376473764737653,37.027679426967694],[27.36567365673656,37.02261369515806],[27.34047340473404,37.01923654061828],[27.329673296732977,37.01417080880864],[27.329673296732977,37.0074164997291],[27.33327333273334,36.997285036109815],[27.326073260732613,36.98546499522064],[27.31527315273152,36.977022108871225],[27.300873008730093,36.97364495433145],[27.304473044730457,36.96351349071216],[27.30807308073082,36.9601363361724],[27.29727297272973,36.96182491344227],[27.293672936729365,36.96182491344227],[27.286472864728665,36.9601363361724],[27.279272792727937,36.96689064525192],[27.26487264872648,36.96351349071216],[27.254072540725417,36.9787106861411],[27.24687246872469,37.00066219064958],[27.24687246872469,37.017547963348406],[27.23967239672396,37.034433736047234],[27.23247232472326,37.0479423542063],[27.228872288722897,37.06145097236535],[27.23967239672396,37.08340247687383],[27.24687246872469,37.08340247687383],[27.26487264872648,37.08846820868348],[27.2828728287283,37.09859967230277],[27.293672936729365,37.11041971319196],[27.286472864728665,37.115485445001596],[27.279272792727937,37.117174022271485],[27.268472684726845,37.115485445001596],[27.261272612726145,37.11041971319196],[27.25767257672578,37.11379686773172],[27.254072540725417,37.117174022271485],[27.254072540725417,37.12392833135101],[27.261272612726145,37.117174022271485],[27.27207272072721,37.12899406316066],[27.304473044730457,37.11886259954137],[27.32247322473225,37.12392833135101],[27.32247322473225,37.13068264043055],[27.32247322473225,37.139125526779964],[27.326073260732613,37.14756841312938],[27.32247322473225,37.159388454018554],[27.33327333273334,37.15601129947879],[27.34047340473404,37.15094556766914],[27.344073440734405,37.142502681319726],[27.344073440734405,37.13068264043055],[27.34767347673477,37.13068264043055],[27.354873548735497,37.14081410404984],[27.362073620736226,37.14925699039925],[27.369273692736925,37.15094556766914],[27.376473764737653,37.1441912585896],[27.380073800738018,37.14587983585949],[27.380073800738018,37.14756841312938],[27.380073800738018,37.14925699039925],[27.38367383673838,37.152634144939015],[27.38367383673838,37.13405979497031],[27.387273872738746,37.13068264043055],[27.394473944739445,37.13068264043055],[27.405274052740538,37.13068264043055],[27.412474124741266,37.1256169086209],[27.419674196741965,37.12055117681125],[27.426874268742694,37.11886259954137],[27.437674376743786,37.12392833135101],[27.437674376743786,37.12055117681125],[27.43407434074342,37.12055117681125],[27.43407434074342,37.11886259954137],[27.430474304743058,37.117174022271485],[27.444874448744486,37.096911095032894],[27.459274592745942,37.090156785953354],[27.47367473674737,37.09184536322324],[27.502475024750254,37.10704255865218],[27.520475204752046,37.115485445001596],[27.531275312753138,37.12055117681125],[27.542075420754202,37.1256169086209],[27.563675636756386,37.1256169086209],[27.57447574475745,37.13068264043055],[27.57447574475745,37.137436949510075],[27.563675636756386,37.13574837224019],[27.560075600756022,37.13405979497031],[27.552875528755294,37.13068264043055],[27.545675456754566,37.16107703128843],[27.538475384753866,37.177962803987256],[27.527675276752774,37.184717113066796],[27.527675276752774,37.19315999941621],[27.57447574475745,37.201602885765624],[27.588875888758906,37.19822573122585],[27.57447574475745,37.177962803987256],[27.585275852758542,37.18133995852703],[27.596075960759606,37.18640569033667],[27.610476104761062,37.199914308495735],[27.592475924759242,37.20498004030539],[27.588875888758906,37.21173434938491],[27.588875888758906,37.23030869935363],[27.592475924759242,37.23537443116328],[27.603276032760334,37.242128740242805],[27.610476104761062,37.247194472052456],[27.614076140761426,37.25394878113198],[27.614076140761426,37.26745739929105],[27.617676176761762,37.27421170837057],[27.603276032760334,37.28096601745011],[27.603276032760334,37.282654594719986],[27.596075960759606,37.284343171989875],[27.592475924759242,37.28096601745011],[27.592475924759242,37.277588862910335],[27.588875888758906,37.27421170837057],[27.563675636756386,37.27590028564046],[27.552875528755294,37.2725231311007],[27.54927549275493,37.264080244751284],[27.542075420754202,37.25057162659222],[27.531275312753138,37.237063008433154],[27.513275132751346,37.22862012208374],[27.49887498874989,37.23368585389339],[27.51687516875168,37.24550589478257],[27.520475204752046,37.25901451294163],[27.509675096750982,37.26745739929105],[27.488074880748826,37.26745739929105],[27.484474844748462,37.264080244751284],[27.47367473674737,37.25563735840187],[27.462874628746306,37.25226020386209],[27.459274592745942,37.257325935671744],[27.462874628746306,37.26745739929105],[27.46647466474664,37.277588862910335],[27.488074880748826,37.29447463560916],[27.484474844748462,37.30291752195858],[27.49167491674916,37.31304898557788],[27.49167491674916,37.326557603736944],[27.480874808748098,37.34344337643577],[27.47367473674737,37.34344337643577],[27.470074700747006,37.31642614011764],[27.444874448744486,37.30629467649834],[27.419674196741965,37.309671831038116],[27.39807398073981,37.32318044919717],[27.387273872738746,37.345131953705646],[27.39807398073981,37.36539488094424],[27.4160741607416,37.382280653643065],[27.437674376743786,37.39072353999248],[27.426874268742694,37.40592073542143],[27.4088740887409,37.41267504450096],[27.405274052740538,37.41267504450096],[27.387273872738746,37.41267504450096],[27.369273692736925,37.40592073542143],[27.362073620736226,37.39241211726237],[27.354873548735497,37.3789034991033],[27.34767347673477,37.37046061275389],[27.32247322473225,37.37046061275389],[27.32247322473225,37.36370630367436],[27.336873368733706,37.35526341732495],[27.329673296732977,37.35188626278517],[27.27207272072721,37.34850910824541],[27.25767257672578,37.345131953705646],[27.24687246872469,37.33668906735623],[27.23967239672396,37.34344337643577],[27.23247232472326,37.34850910824541],[27.225272252722533,37.34850910824541],[27.218072180721805,37.34344337643577],[27.218072180721805,37.3501976855153],[27.21447214472144,37.35357484005506],[27.210872108721105,37.35695199459482],[27.203672036720377,37.35357484005506],[27.200072000720013,37.35188626278517],[27.200072000720013,37.35357484005506],[27.18927189271892,37.35695199459482],[27.200072000720013,37.367083458214125],[27.20727207272074,37.37721492183341],[27.210872108721105,37.387346385452716],[27.203672036720377,37.39747784907202],[27.22167221672217,37.404232158151544],[27.225272252722533,37.40592073542143],[27.225272252722533,37.41267504450096],[27.218072180721805,37.43124939446966],[27.22167221672217,37.47684098075649],[27.203672036720377,37.47346382621673],[27.200072000720013,37.47852955802638],[27.192871928719285,37.47852955802638],[27.185671856718585,37.47346382621673],[27.178471784717857,37.466709517137204],[27.18207182071822,37.48359528983603],[27.18927189271892,37.49879248526497],[27.18927189271892,37.512301103424036],[27.185671856718585,37.527498298852976],[27.18927189271892,37.534252607932515],[27.185671856718585,37.53931833974215],[27.18207182071822,37.544384071551804],[27.185671856718585,37.55620411244098],[27.200072000720013,37.547761226091566],[27.210872108721105,37.56295842152052],[27.210872108721105,37.584909926028985],[27.20727207272074,37.596729966918176],[27.192871928719285,37.60179569872781],[27.135271352713545,37.63050151231582],[27.048870488704893,37.65076443955442],[27.01287012870128,37.66596163498336],[27.02007020070201,37.68622456222195],[27.0380703807038,37.689601716761715],[27.10647106471066,37.68622456222195],[27.128071280712817,37.68791313949184],[27.21447214472144,37.71324179854008],[27.225272252722533,37.721684684889496],[27.250472504725053,37.74363618939796],[27.25767257672578,37.758833384826914],[27.261272612726145,37.78247346660527],[27.261272612726145,37.80273639384386],[27.261272612726145,37.81624501200292],[27.254072540725417,37.82468789835234],[27.243272432724325,37.83313078470175],[27.236072360723625,37.84495082559093],[27.23967239672396,37.86521375282952],[27.243272432724325,37.86859090736928],[27.254072540725417,37.877033793718695],[27.261272612726145,37.883788102798235],[27.26487264872648,37.89391956641752],[27.26487264872648,37.90236245276694],[27.26487264872648,37.90911676184646],[27.261272612726145,37.919248225465765],[27.275672756727573,37.92937968908507],[27.26487264872648,37.95133119359353],[27.23967239672396,37.98847989353095],[27.21447214472144,37.981725584451425],[27.178471784717857,37.981725584451425],[27.142471424714245,37.986791316261076],[27.117271172711725,37.9935456253406],[27.110071100711025,38.00029993442014],[27.10647106471066,38.00705424349967],[27.102871028710297,38.01211997530932],[27.092070920709205,38.01549712984908],[27.084870848708505,38.01549712984908],[27.077670776707777,38.01718570711897],[27.07047070470705,38.02056286165873],[27.066870668706684,38.02562859346837],[27.06327063270632,38.04082578889732],[27.05607056070562,38.045891520706974],[27.027270272702737,38.049268675246736],[26.976869768697696,38.064465870675676],[26.948069480694812,38.06784302521544],[26.919269192691928,38.0627772934058],[26.901269012690136,38.05602298432626],[26.894068940689408,38.05602298432626],[26.88686886868871,38.0526458297865],[26.88686886868871,38.045891520706974],[26.883268832688344,38.039137211627434],[26.872468724687252,38.03576005708767],[26.865268652686524,38.04082578889732],[26.843668436684368,38.07628591156485],[26.847268472684732,38.08810595245403],[26.847268472684732,38.10330314788298],[26.840068400684004,38.11850034331192],[26.836468364683668,38.13200896147099],[26.825668256682576,38.14551757963005],[26.80406804068042,38.16240335232888],[26.793267932679328,38.17253481594817],[26.775267752677536,38.16578050686864],[26.77166771667717,38.17760054775782],[26.775267752677536,38.206306361345824],[26.760867608676108,38.216437824965126],[26.742867428674288,38.216437824965126],[26.72846728467286,38.20968351588559],[26.706867068670704,38.206306361345824],[26.64566645666457,38.206306361345824],[26.634866348663508,38.20292920680606],[26.624066240662415,38.13876327055051],[26.616866168661687,38.142140425090275],[26.616866168661687,38.14551757963005],[26.609666096660987,38.14551757963005],[26.613266132661323,38.1303203842011],[26.613266132661323,38.11850034331192],[26.606066060660623,38.108368879692634],[26.59526595265953,38.10330314788298],[26.588065880658803,38.108368879692634],[26.57726577265774,38.13200896147099],[26.566465664656647,38.14551757963005],[26.566465664656647,38.12356607512157],[26.555665556655583,38.121877497851685],[26.54486544865449,38.1303203842011],[26.523265232652335,38.14720615689993],[26.516065160651607,38.15564904324934],[26.516065160651607,38.16578050686864],[26.51966519665197,38.17928912502771],[26.490864908649087,38.17422339321806],[26.465664656646567,38.191109165916885],[26.440464404644047,38.211372093155475],[26.41886418864189,38.21981497950489],[26.422464224642255,38.204617784075936],[26.422464224642255,38.1995520522663],[26.41886418864189,38.1995520522663],[26.411664116641163,38.206306361345824],[26.390063900639007,38.22319213404465],[26.390063900639007,38.233323597663954],[26.39366393663937,38.24345506128324],[26.39366393663937,38.251897947632656],[26.390063900639007,38.26202941125196],[26.382863828638307,38.26202941125196],[26.37566375663758,38.23501217493383],[26.354063540635423,38.2282578658543],[26.328863288632903,38.23501217493383],[26.296462964629654,38.25696367944231],[26.285662856628562,38.26034083398207],[26.235262352623522,38.273849452141135],[26.231662316623186,38.28060376122066],[26.238862388623886,38.2958009566496],[26.264062640626406,38.2873580703002],[26.2748627486275,38.30086668845925],[26.285662856628562,38.31944103842797],[26.307263072630747,38.32281819296773],[26.307263072630747,38.331261079317144],[26.289262892628926,38.34139254293645],[26.285662856628562,38.35827831563526],[26.29286292862929,38.37009835652445],[26.307263072630747,38.35827831563526],[26.310863108631082,38.366721201984674],[26.310863108631082,38.371786933794326],[26.314463144631446,38.373475511064214],[26.321663216632174,38.37685266560398],[26.32526325263254,38.3650326247148],[26.32526325263254,38.3549011610955],[26.321663216632174,38.34476969747621],[26.314463144631446,38.336326811126796],[26.31806318063181,38.33294965658703],[26.32526325263254,38.331261079317144],[26.328863288632903,38.331261079317144],[26.339663396633966,38.331261079317144],[26.346863468634695,38.329572502047256],[26.346863468634695,38.32450677023762],[26.35046350463506,38.31944103842797],[26.357663576635787,38.316063883888205],[26.372063720637215,38.316063883888205],[26.386463864638642,38.31775246115808],[26.390063900639007,38.32450677023762],[26.382863828638307,38.336326811126796],[26.382863828638307,38.34308112020632],[26.397263972639735,38.336326811126796],[26.404464044640463,38.33463823385691],[26.41886418864189,38.336326811126796],[26.429664296642983,38.34139254293645],[26.454864548645503,38.3549011610955],[26.462064620646203,38.35827831563526],[26.47646476464766,38.366721201984674],[26.47646476464766,38.38698412922328],[26.46926469264693,38.40724705646187],[26.45126451264514,38.419067097351046],[26.45126451264514,38.42582140643057],[26.47646476464766,38.41737852008116],[26.490864908649087,38.40555847919198],[26.498064980649815,38.40724705646187],[26.512465124651243,38.43257571551011],[26.498064980649815,38.43933002458964],[26.472864728647295,38.45790437455835],[26.454864548645503,38.46297010636799],[26.440464404644047,38.47310156998729],[26.429664296642983,38.47310156998729],[26.422464224642255,38.46972441544753],[26.415264152641527,38.456215797288465],[26.408064080640827,38.4528386427487],[26.386463864638642,38.454527220018576],[26.386463864638642,38.45790437455835],[26.397263972639735,38.46803583817764],[26.404464044640463,38.48829876541623],[26.4008640086401,38.50011880630541],[26.36846368463685,38.53557892897295],[26.37566375663758,38.52882461989341],[26.372063720637215,38.540644660782604],[26.361263612636122,38.57103905164048],[26.357663576635787,38.57779336072002],[26.361263612636122,38.58285909252966],[26.346863468634695,38.621696369736966],[26.35046350463506,38.63520498789603],[26.35046350463506,38.65040218332497],[26.357663576635787,38.66222222421415],[26.364863648636486,38.665599378753924],[26.379263792637943,38.66897653329369],[26.404464044640463,38.6774194196431],[26.415264152641527,38.679107996912975],[26.440464404644047,38.6774194196431],[26.465664656646567,38.67235368783345],[26.487264872648723,38.663910801484036],[26.505265052650543,38.65209076059486],[26.541265412654127,38.623384947006855],[26.555665556655583,38.60481059703814],[26.559265592655947,38.5896134016092],[26.584465844658467,38.560907588021195],[26.609666096660987,38.53557892897295],[26.616866168661687,38.52882461989341],[26.624066240662415,38.52544746535365],[26.631266312663143,38.518693156274125],[26.634866348663508,38.50856169265482],[26.638466384663843,38.496741651765646],[26.638466384663843,38.48661018814636],[26.638466384663843,38.478167301796944],[26.642066420664207,38.46803583817764],[26.638466384663843,38.46297010636799],[26.634866348663508,38.461281529098116],[26.62766627666278,38.461281529098116],[26.62046620466205,38.46634726090775],[26.609666096660987,38.46803583817764],[26.598865988659895,38.46634726090775],[26.588065880658803,38.461281529098116],[26.606066060660623,38.454527220018576],[26.606066060660623,38.44439575639929],[26.59526595265953,38.43257571551011],[26.588065880658803,38.419067097351046],[26.613266132661323,38.415689942811284],[26.62046620466205,38.40555847919198],[26.62766627666278,38.39036128376304],[26.638466384663843,38.37516408833409],[26.656466564665664,38.329572502047256],[26.674466744667455,38.30762099753879],[26.69606696066961,38.31268672934843],[26.699666996669976,38.32619534750749],[26.692466924669247,38.33463823385691],[26.67806678066782,38.34308112020632],[26.67086670866709,38.38529555195339],[26.674466744667455,38.40218132465222],[26.688866888668883,38.419067097351046],[26.70326703267034,38.43088713824022],[26.717667176671767,38.42582140643057],[26.717667176671767,38.43257571551011],[26.724867248672496,38.43257571551011],[26.735667356673588,38.42244425189081],[26.74646746467465,38.40386990192211],[26.768067680676808,38.36334404744491],[26.77166771667717,38.366721201984674],[26.782467824678264,38.37009835652445],[26.786067860678628,38.371786933794326],[26.796867968679692,38.35827831563526],[26.811268112681148,38.35996689290515],[26.82926829268294,38.366721201984674],[26.847268472684732,38.371786933794326],[26.922869228692292,38.37685266560398],[26.973269732697332,38.39542701557269],[26.991269912699124,38.398804170112456],[26.99486994869949,38.40049274738233],[27.009270092700945,38.408935633731744],[27.01287012870128,38.41231278827151],[27.023670236702372,38.41231278827151],[27.034470344703465,38.408935633731744],[27.041670416704164,38.40724705646187],[27.05607056070562,38.41231278827151],[27.05607056070562,38.408935633731744],[27.059670596705985,38.41231278827151],[27.08847088470884,38.40218132465222],[27.110071100711025,38.414001365541395],[27.135271352713545,38.434264292779986],[27.1640716407164,38.44608433366916],[27.1640716407164,38.4528386427487],[27.153271532715337,38.45959295182823],[27.149671496714973,38.45790437455835],[27.142471424714245,38.4528386427487],[27.135271352713545,38.461281529098116],[27.117271172711725,38.454527220018576],[27.084870848708505,38.456215797288465],[27.074070740707413,38.4528386427487],[27.048870488704893,38.46297010636799],[27.023670236702372,38.46297010636799],[26.958869588695904,38.4427071791294],[26.93726937269375,38.434264292779986],[26.933669336693384,38.434264292779986],[26.944469444694448,38.44608433366916],[26.926469264692656,38.456215797288465],[26.897668976689772,38.49505307449577],[26.883268832688344,38.5018073835753],[26.858068580685824,38.50687311538495],[26.850868508685096,38.5119388471946],[26.825668256682576,38.52544746535365],[26.814868148681484,38.54233323805248],[26.82926829268294,38.5305131971633],[26.847268472684732,38.520381733544],[26.872468724687252,38.50687311538495],[26.890468904689044,38.50856169265482],[26.890468904689044,38.51531600173436],[26.876068760687616,38.52713604262354],[26.865268652686524,38.53557892897295],[26.850868508685096,38.54233323805248],[26.836468364683668,38.54908754713202],[26.840068400684004,38.560907588021195],[26.843668436684368,38.586236247069436],[26.847268472684732,38.59805628795861],[26.832868328683304,38.6081877515779],[26.825668256682576,38.60481059703814],[26.814868148681484,38.59805628795861],[26.793267932679328,38.59805628795861],[26.796867968679692,38.6081877515779],[26.800468004680056,38.61156490611768],[26.7788677886779,38.618319215197204],[26.768067680676808,38.618319215197204],[26.75366753667538,38.618319215197204],[26.75366753667538,38.623384947006855],[26.757267572675744,38.63351641062614],[26.760867608676108,38.638582142435794],[26.74646746467465,38.638582142435794],[26.735667356673588,38.64195929697556],[26.717667176671767,38.65209076059486],[26.724867248672496,38.658845069674385],[26.732067320673224,38.663910801484036],[26.742867428674288,38.665599378753924],[26.75366753667538,38.665599378753924],[26.732067320673224,38.68923946053228],[26.724867248672496,38.70274807869134],[26.717667176671767,38.721322428660045],[26.739267392673923,38.73145389227935],[26.789667896678964,38.73989677862876],[26.818468184681848,38.7550939740577],[26.822068220682212,38.75340539678781],[26.82926829268294,38.75002824224805],[26.82926829268294,38.748339664978175],[26.82926829268294,38.74665108770829],[26.840068400684004,38.74665108770829],[26.850868508685096,38.7449625104384],[26.876068760687616,38.73820820135887],[26.88686886868871,38.73483104681911],[26.9048690486905,38.73483104681911],[26.897668976689772,38.748339664978175],[26.908469084690864,38.75340539678781],[26.915669156691564,38.76015970586735],[26.922869228692292,38.761848283137226],[26.93006930069302,38.7550939740577],[26.933669336693384,38.763536860407115],[26.933669336693384,38.77029116948664],[26.933669336693384,38.778734055836054],[26.93006930069302,38.788865519455356],[26.922869228692292,38.78211121037583],[26.9048690486905,38.80912844669395],[26.897668976689772,38.81588275577347],[26.93726937269375,38.82939137393254],[26.944469444694448,38.80912844669395],[26.96246962469627,38.805751292154184],[26.96966969669697,38.81925991031325],[26.958869588695904,38.84458856936149],[26.976869768697696,38.847965723901254],[26.991269912699124,38.85472003298078],[27.00567005670058,38.86316291933019],[27.01287012870128,38.87160580567961],[27.034470344703465,38.85978576479043],[27.05607056070562,38.87160580567961],[27.06327063270632,38.88680300110855],[27.041670416704164,38.8918687329182],[27.059670596705985,38.91888596923633],[27.05607056070562,38.929017432855616],[27.041670416704164,38.94083747374479],[27.023670236702372,38.92732885558574],[27.01287012870128,38.92226312377609],[27.002070020700216,38.9205745465062],[26.984069840698425,38.91888596923633],[26.976869768697696,38.92226312377609],[26.966069660696604,38.93746031920503],[26.96246962469627,38.94083747374479],[26.951669516695176,38.93746031920503],[26.940869408694084,38.93239458739538],[26.933669336693384,38.930706010125505],[26.922869228692292,38.94083747374479],[26.91206912069123,38.93239458739538],[26.87966879668798,38.91550881469655],[26.865268652686524,38.91382023742668],[26.85446854468546,38.91719739196644],[26.840068400684004,38.935771741935156],[26.825668256682576,38.94083747374479],[26.807668076680784,38.950968937364095],[26.796867968679692,38.972920441872574],[26.800468004680056,38.998249100920816],[26.814868148681484,39.015134873619644],[26.814868148681484,39.02188918269917],[26.811268112681148,39.02188918269917],[26.793267932679328,39.02188918269917],[26.807668076680784,39.033709223588346],[26.82926829268294,39.04721784174741],[26.85446854468546,39.05903788263659],[26.872468724687252,39.06241503717635],[26.883268832688344,39.070857923525764],[26.876068760687616,39.091120850764355],[26.850868508685096,39.12151524162225],[26.822068220682212,39.148532477940364],[26.811268112681148,39.15697536428978],[26.7788677886779,39.17048398244884],[26.77166771667717,39.173861136988606],[26.750067500675016,39.18399260060791],[26.739267392673923,39.19750121876697],[26.739267392673923,39.20763268238626],[26.732067320673224,39.22789560962485],[26.724867248672496,39.24815853686344],[26.717667176671767,39.263355732292396],[26.699666996669976,39.26842146410205],[26.6528665286653,39.26673288683216],[26.62766627666278,39.26842146410205],[26.609666096660987,39.27517577318157],[26.62046620466205,39.28361865953099],[26.624066240662415,39.30388158676958],[26.631266312663143,39.31401305038888],[26.64566645666457,39.31739020492864],[26.656466564665664,39.31401305038888],[26.6528665286653,39.30725874130934],[26.634866348663508,39.30388158676958],[26.634866348663508,39.29712727769005],[26.64566645666457,39.29712727769005],[26.656466564665664,39.29375012315029],[26.663666636666363,39.28868439134064],[26.67086670866709,39.2819300822611],[26.663666636666363,39.298815854959926],[26.67086670866709,39.305570164039466],[26.681666816668184,39.3106358958491],[26.692466924669247,39.315701627658754],[26.710467104671068,39.33765313216723],[26.814868148681484,39.40013049115289],[26.80406804068042,39.405196222962545],[26.800468004680056,39.40688480023242],[26.800468004680056,39.41195053204207],[26.80406804068042,39.418704841121595],[26.80406804068042,39.425459150201135],[26.800468004680056,39.43390203655055],[26.836468364683668,39.43559061382042],[26.850868508685096,39.4389677683602],[26.861668616686188,39.447410654709614],[26.850868508685096,39.46260785013855],[26.868868688686888,39.47105073648797],[26.926469264692656,39.48624793191691],[26.93006930069302,39.487936509186795],[26.93006930069302,39.49131366372656],[26.93006930069302,39.50144512734586],[26.944469444694448,39.54028240455315],[26.944469444694448,39.560545331791744],[26.93726937269375,39.57405394995081],[26.922869228692292,39.58249683630022],[26.894068940689408,39.58418541357011],[26.868868688686888,39.57743110449057],[26.850868508685096,39.56392248633152],[26.832868328683304,39.55716817725198],[26.807668076680784,39.570676795411046],[26.667266672666727,39.550413868172456],[26.458464584645867,39.52170805458445],[26.433264332643347,39.51326516823504],[26.422464224642255,39.50482228188562],[26.415264152641527,39.50482228188562],[26.36846368463685,39.48624793191691],[26.361263612636122,39.481182200107256],[26.35046350463506,39.481182200107256],[26.296462964629654,39.487936509186795],[26.285662856628562,39.487936509186795],[26.2748627486275,39.482870777377144],[26.264062640626406,39.481182200107256],[26.253262532625342,39.47273931375784],[26.253262532625342,39.47105073648797],[26.24966249662498,39.465985004678316],[26.24246242462425,39.467673581948205],[26.231662316623186,39.47442789102773],[26.152461524615262,39.45923069559879],[26.112861128611286,39.45923069559879],[26.073260732607338,39.47442789102773],[26.069660696606974,39.49637939553621],[26.094860948609494,39.54872529090257],[26.10926109261092,39.59769403172916],[26.148861488614898,39.62639984531718],[26.156061560615626,39.650039927095534],[26.163261632616326,39.70407439973178],[26.159661596615962,39.71420586335107],[26.14166141661417,39.74291167693907],[26.138061380613806,39.75642029509814],[26.138061380613806,39.76486318144755],[26.14166141661417,39.768240335987315],[26.145261452614534,39.7699289132572],[26.148861488614898,39.77668322233673],[26.148861488614898,39.800323304115096],[26.156061560615626,39.82565196316334],[26.152461524615262,39.835783426782626],[26.138061380613806,39.837472004052515],[26.14166141661417,39.84929204494169],[26.156061560615626,39.89826078576829],[26.156061560615626,39.905015094847826],[26.148861488614898,39.92527802208642],[26.148861488614898,39.93372090843583],[26.152461524615262,39.942163794785245],[26.163261632616326,39.955672412944296],[26.163261632616326,39.96411529929371],[26.16686166861669,39.97424676291301],[26.188461884618846,40.00126399923113],[26.199261992619938,40.00801830831067],[26.24966249662498,39.9945096901516],[26.26766267662677,40.002952576501016],[26.30006300063002,40.01477261739019],[26.310863108631082,40.019838349199844],[26.354063540635423,40.05192131732761],[26.361263612636122,40.06374135821679],[26.364863648636486,40.0721842445662],[26.364863648636486,40.08400428545538],[26.36846368463685,40.09075859453492],[26.372063720637215,40.09413574907468],[26.36846368463685,40.09920148088433],[26.36846368463685,40.102578635424095],[26.372063720637215,40.10426721269398],[26.382863828638307,40.10426721269398],[26.390063900639007,40.10595578996386],[26.39366393663937,40.107644367233746],[26.4008640086401,40.12115298539281],[26.404464044640463,40.13972733536151],[26.404464044640463,40.15830168533023],[26.397263972639735,40.17349888075917],[26.404464044640463,40.187007498918234],[26.408064080640827,40.19376180799776],[26.415264152641527,40.19545038526765],[26.42606426064262,40.19376180799776],[26.440464404644047,40.19713896253752],[26.46926469264693,40.205581848886936],[26.50166501665018,40.212336157966476],[26.51966519665197,40.22584477612553],[26.562865628656283,40.269747785142485],[26.573665736657375,40.274813516952136],[26.580865808658103,40.27650209422201],[26.59526595265953,40.28325640330155],[26.606066060660623,40.290010712381076],[26.714067140671403,40.39132534857404],[26.735667356673588,40.40314538946322],[26.775267752677536,40.404833966733094],[26.861668616686188,40.39976823492346],[26.897668976689772,40.40652254400298],[26.908469084690864,40.40314538946322],[26.933669336693384,40.39301392584392],[26.991269912699124,40.387948194034266],[27.01287012870128,40.39301392584392],[27.041670416704164,40.409899698542745],[27.066870668706684,40.4335397803211],[27.09567095670957,40.452114130289814],[27.142471424714245,40.4538027075597],[27.178471784717857,40.44873697575005],[27.21447214472144,40.44704839848016],[27.236072360723625,40.452114130289814],[27.27207272072721,40.467311325718754],[27.286472864728665,40.46899990298864],[27.304473044730457,40.45886843936934],[27.31527315273152,40.4436712439404],[27.329673296732977,40.41327685308251],[27.31527315273152,40.40652254400298],[27.30807308073082,40.40652254400298],[27.304473044730457,40.409899698542745],[27.304473044730457,40.41158827581263],[27.300873008730093,40.408211121272856],[27.293672936729365,40.40652254400298],[27.336873368733706,40.37106242133544],[27.394473944739445,40.34235660774743],[27.452074520745214,40.32209368050884],[27.52407524075241,40.30858506234978],[27.552875528755294,40.30858506234978],[27.563675636756386,40.310273639619666],[27.596075960759606,40.32884798958838],[27.614076140761426,40.33053656685826],[27.639276392763946,40.325470835048606],[27.664476644766467,40.31702794869919],[27.689676896768987,40.31365079415943],[27.711277112771143,40.32378225777873],[27.7328773287733,40.31702794869919],[27.761677616776183,40.31533937142932],[27.790477904779067,40.32040510323897],[27.812078120781223,40.347422339557085],[27.866078660786627,40.369373844065564],[27.88407884078842,40.38625961676439],[27.866078660786627,40.38625961676439],[27.815678156781587,40.39976823492346],[27.80127801278013,40.39301392584392],[27.790477904779067,40.39301392584392],[27.786877868778703,40.40314538946322],[27.786877868778703,40.41327685308251],[27.779677796777975,40.414965430352396],[27.772477724777247,40.41665400762227],[27.768877688776882,40.42003116216205],[27.761677616776183,40.42847404851146],[27.75807758077582,40.431851203051224],[27.754477544775455,40.43860551213075],[27.754477544775455,40.450425553019926],[27.75087750877509,40.457179862099466],[27.743677436774362,40.45886843936934],[27.7328773287733,40.45886843936934],[27.72567725677257,40.46055701663923],[27.693276932769322,40.48588567568747],[27.68247682476826,40.49601713930676],[27.68247682476826,40.5027714483863],[27.696876968769686,40.50614860292606],[27.70767707677078,40.51121433473571],[27.722077220772206,40.52641153016465],[27.7328773287733,40.529788684704414],[27.743677436774362,40.52641153016465],[27.75087750877509,40.52472295289476],[27.761677616776183,40.536542993783954],[27.779677796777975,40.51796864381524],[27.779677796777975,40.514591489275475],[27.790477904779067,40.514591489275475],[27.790477904779067,40.51628006654535],[27.794077940779403,40.521345798355],[27.804878048780495,40.52303437562489],[27.970479704797043,40.5027714483863],[28.013680136801383,40.49095140749712],[28.03528035280354,40.47406563479829],[28.017280172801748,40.450425553019926],[27.930879308793095,40.41665400762227],[27.905679056790575,40.39976823492346],[27.90927909279094,40.374439575875215],[27.945279452794523,40.3659966895258],[28.02808028080281,40.372750998605326],[28.1108811088111,40.39639108038368],[28.348483484834844,40.404833966733094],[28.398883988839884,40.39807965765357],[28.485284852848537,40.39976823492346],[28.474484744847445,40.39807965765357],[28.467284672846745,40.394702503113805],[28.460084600846017,40.387948194034266],[28.460084600846017,40.37950530768485],[28.499684996849965,40.39132534857404],[28.54648546485467,40.39132534857404],[28.593285932859345,40.38119388495474],[28.636486364863657,40.3659966895258],[28.643686436864385,40.37106242133544],[28.64728647286475,40.369373844065564],[28.650886508865085,40.3659966895258],[28.658086580865813,40.3659966895258],[28.66528665286654,40.367685266795675],[28.676086760867605,40.37612815314509],[28.686886868868697,40.37950530768485],[28.7408874088741,40.38625961676439],[28.758887588875893,40.39639108038368],[28.77328773287735,40.40314538946322],[28.79128791287914,40.39976823492346],[28.82368823688239,40.39301392584392],[28.85608856088561,40.39132534857404],[28.884888848888494,40.38625961676439],[28.89928899288995,40.38119388495474],[28.920889208892106,40.369373844065564],[28.938889388893898,40.3659966895258],[28.95688956889569,40.362619534986024],[29.03249032490325,40.36430811225591],[29.05049050490507,40.367685266795675],[29.0648906489065,40.37612815314509],[29.07569075690759,40.387948194034266],[29.08289082890829,40.414965430352396],[29.09009090090902,40.42678547124157],[29.104491044910446,40.42340831670181],[29.118891188911903,40.42340831670181],[29.136891368913695,40.42847404851146],[29.151291512915122,40.4335397803211],[29.13329133291333,40.450425553019926],[29.111691116911175,40.46562274844888],[29.086490864908654,40.477442789338056],[29.0648906489065,40.48250852114771],[29.010890108901094,40.48250852114771],[29.003690036900366,40.47913136660793],[28.98208982089821,40.46393417117899],[28.971289712897146,40.46055701663923],[28.917289172891742,40.47068848025852],[28.827288272882726,40.512902912005586],[28.77328773287735,40.52303437562489],[28.79128791287914,40.55342876648278],[28.827288272882726,40.57031453918161],[28.89928899288995,40.592266043690074],[28.928089280892806,40.60577466184914],[28.971289712897146,40.639546207246795],[28.985689856898574,40.644611939056446],[29.280892808928087,40.66656344356491],[29.324093240932427,40.67669490718421],[29.363693636936375,40.69358067988304],[29.38529385293853,40.707089298042106],[29.39249392493926,40.707089298042106],[29.399693996939988,40.702023566232455],[29.406894068940687,40.69358067988304],[29.41769417694178,40.6868263708035],[29.428494284942843,40.69020352534328],[29.439294392943935,40.695269257152916],[29.450094500945028,40.69864641169269],[29.46089460894609,40.70371214350233],[29.464494644946456,40.71215502985174],[29.471694716947184,40.71890933893128],[29.478894788947883,40.723975070740934],[29.489694896948976,40.7273522252807],[29.500495004950068,40.72904080255057],[29.51129511295113,40.7273522252807],[29.529295292952924,40.722286493471046],[29.54369543695438,40.71046645258187],[29.547295472954744,40.69020352534328],[29.56169561695617,40.69189210261315],[29.75249752497527,40.723975070740934],[29.867698676986777,40.72904080255057],[29.90369903699039,40.71553218439152],[29.925299252992545,40.717220761661395],[29.939699396993973,40.73579511163011],[29.92889928899291,40.757746616138576],[29.889298892988933,40.76281234794823],[29.81009810098101,40.7560580388687],[29.80289802898031,40.75436946159881],[29.79569795697958,40.75099230705905],[29.78489784897849,40.74930372978916],[29.774097740977425,40.74930372978916],[29.763297632976332,40.75268088432894],[29.74529745297454,40.76618950248799],[29.738097380973812,40.76956665702777],[29.72009720097202,40.77125523429764],[29.687696876968772,40.78138669791694],[29.666096660966616,40.78307527518682],[29.428494284942843,40.77632096610729],[29.41049410494105,40.77125523429764],[29.396093960939623,40.76281234794823],[29.378093780937803,40.7560580388687],[29.356493564935647,40.76281234794823],[29.349293492934947,40.77125523429764],[29.345693456934583,40.779698120647055],[29.338493384933855,40.78814100699647],[29.327693276932763,40.78982958426636],[29.331293312933127,40.79320673880612],[29.33489334893349,40.794895316075994],[29.338493384933855,40.79658389334588],[29.34209342093422,40.79827247061577],[29.338493384933855,40.80840393423506],[29.33489334893349,40.8151582433146],[29.324093240932427,40.820223975124236],[29.3168931689317,40.82528970693389],[29.30969309693097,40.81853539785436],[29.302493024930243,40.82528970693389],[29.29169291692918,40.81853539785436],[29.280892808928087,40.8151582433146],[29.255692556925567,40.81009251150495],[29.255692556925567,40.81684682058447],[29.262892628926295,40.81853539785436],[29.270092700927023,40.821912552394124],[29.273692736927387,40.82866686147365],[29.273692736927387,40.83879832509295],[29.28449284492845,40.8337325932833],[29.288092880928815,40.83204401601343],[29.288092880928815,40.83542117055319],[29.288092880928815,40.837109747823064],[29.29169291692918,40.83879832509295],[29.295292952929543,40.83879832509295],[29.28449284492845,40.85230694325202],[29.262892628926295,40.869192715950845],[29.252092520925203,40.87594702503037],[29.24129241292414,40.882701334109896],[29.219692196921983,40.87932417957013],[29.201692016920163,40.89452137499909],[29.144091440914423,40.91478430223768],[29.122491224912267,40.926604343126854],[29.104491044910446,40.946867270365445],[29.08289082890829,40.96037588852451],[29.028890288902886,40.982327393032975],[29.03249032490325,40.98401597030286],[29.03249032490325,40.98570454757275],[29.036090360903614,40.989081702112514],[29.021690216902186,40.994147433922166],[29.018090180901822,41.004278897541454],[29.01449014490146,41.01778751570052],[29.00729007290073,41.031296133859584],[29.02529025290255,41.03805044293911],[29.046890468904706,41.05493621563794],[29.061290612906134,41.076887720146416],[29.07569075690759,41.114036420083835],[29.086490864908654,41.129233615512774],[29.09009090090902,41.14105365640195],[29.068490684906862,41.15287369729113],[29.093690936909383,41.17989093360926],[29.129691296912966,41.211973901737025],[29.169291692916943,41.233925406245504],[29.201692016920163,41.22885967443585],[29.205292052920527,41.22885967443585],[29.21609216092162,41.238991138055155],[29.230492304923047,41.24067971532503],[29.421294212942144,41.21366247900691],[29.61929619296194,41.17820235633937],[29.88569885698857,41.149496542751365],[30.13770137701377,41.144430810941714],[30.166501665016654,41.1461193882116],[30.18090180901811,41.15118512002125],[30.202502025020266,41.16469373818032],[30.216902169021694,41.16638231545019],[30.227702277022786,41.17313662452973],[30.234902349023486,41.18495666541891],[30.242102421024214,41.191710974498434],[30.249302493024942,41.18833381995867],[30.260102601026006,41.1950881290382],[30.270902709027098,41.211973901737025],[30.28170281702819,41.21535105627679],[30.296102961029618,41.206908169927374],[30.335703357033566,41.20015386084785],[30.371703717037178,41.181579510879146],[30.69930699306994,41.12079072916336],[30.731707317073187,41.09883922465488],[30.74970749707498,41.092084915575356],[30.832508325083268,41.08026487468618],[31.091710917109168,41.08533060649583],[31.116911169111688,41.09546207011512],[31.124111241112416,41.09883922465488],[31.138511385113873,41.09715064738501],[31.16011160111603,41.093773492845244],[31.170911709117092,41.092084915575356],[31.21051210512107,41.09883922465488],[31.21771217712177,41.09715064738501],[31.224912249122497,41.093773492845244],[31.232112321123225,41.092084915575356],[31.239312393123953,41.093773492845244],[31.239312393123953,41.09715064738501],[31.24291242912429,41.10221637919466],[31.250112501125017,41.10559353373442],[31.289712897128965,41.1174135746236],[31.322113221132213,41.134299347322425],[31.37971379713798,41.17482520179961],[31.39411394113941,41.18833381995867],[31.401314013140137,41.20184243811774],[31.4049140491405,41.218728210816565],[31.4049140491405,41.238991138055155],[31.408514085140865,41.24912260167444],[31.415714157141565,41.26769695164316],[31.41931419314193,41.279516992532336],[31.415714157141565,41.28627130161186],[31.397713977139773,41.294714187961276],[31.39411394113941,41.30315707431069],[31.4049140491405,41.316665692469755],[31.426514265142657,41.32342000154928],[31.46971469714697,41.32510857881917],[31.476914769147697,41.32848573335893],[31.491314913149125,41.34706008332765],[31.498514985149853,41.352125815137285],[31.509315093150946,41.35381439240717],[31.660516605166066,41.39771740142413],[31.87291872918729,41.504097769426735],[31.99171991719919,41.54968935571357],[32.03132031320314,41.57164086022205],[32.03852038520387,41.57501801476181],[32.13572135721358,41.59865809654016],[32.1609216092161,41.61216671469923],[32.178921789217895,41.63749537374747],[32.24372243722439,41.69321842365359],[32.24732247322473,41.69828415546324],[32.261722617226184,41.72023565997172],[32.29772297722977,41.726989969051246],[32.35172351723517,41.728678546321134],[32.355323553235536,41.73543285540066],[32.362523625236264,41.73712143267055],[32.37332373323733,41.7421871644802],[32.37332373323733,41.748941473559725],[32.37692376923769,41.754007205369376],[32.38412384123842,41.75569578263925],[32.387723877238784,41.754007205369376],[32.39492394923951,41.743875741750074],[32.39852398523985,41.7421871644802],[32.41652416524167,41.748941473559725],[32.438124381243824,41.76751582352844],[32.45252452524525,41.77764728714773],[32.52452524525245,41.80466452346586],[32.53532535325354,41.811418832545385],[32.54972549725497,41.81648456435504],[32.564125641256425,41.81648456435504],[32.57852578525785,41.811418832545385],[32.589325893258945,41.826616027974325],[32.6109261092611,41.84012464613339],[32.639726397263985,41.84350180067315],[32.66132661326614,41.83505891432374],[32.67932679326793,41.83674749159363],[32.740527405274065,41.853633264292455],[32.75492754927549,41.858698996102106],[32.76932769327695,41.858698996102106],[32.79812798127983,41.86038757337198],[32.82692826928269,41.86545330518163],[32.84492844928451,41.87220761426116],[32.85572855728557,41.868830459721394],[32.92772927729277,41.88233907788046],[32.96012960129602,41.894159118769636],[33.006930069300694,41.91779920054799],[33.16533165331654,41.956636477755296],[33.32373323733239,42.01911383674096],[33.359733597335975,42.020802414010845],[33.435334353343535,42.01067095039154],[33.53973539735398,42.01067095039154],[33.5649356493565,42.00729379585178],[33.611736117361176,41.993785177692715],[33.82773827738279,41.97689940499389],[33.845738457384584,41.98196513680354],[33.87453874538747,41.97521082772401],[34.00414004140043,41.98196513680354],[34.331743317433194,41.94819359140588],[34.4469444694447,41.973522250454124],[34.482944829448314,41.97521082772401],[34.49734497344974,41.971833673184236],[34.526145261452626,41.96001363229506],[34.56214562145621,41.951570745945645],[34.69534695346954,41.94650501413601],[34.74574745747458,41.94988216867577],[34.79974799747998,41.96170220956495],[34.81414814148141,41.96845651864447],[34.85374853748539,41.99209660042284],[34.88974889748897,42.00729379585178],[34.918549185491855,42.035999609439784],[34.94014940149401,42.06977115483744],[34.94734947349474,42.098476968425445],[34.961749617496196,42.09509981388568],[34.99054990549905,42.09172265934592],[35.00495004950051,42.08496835026638],[35.00495004950051,42.09172265934592],[35.00855008550087,42.09341123661579],[35.01575015750157,42.09172265934592],[35.0229502295023,42.09172265934592],[35.03015030150303,42.07990261845673],[35.04095040950409,42.071459732107314],[35.04815048150482,42.06470542302779],[35.044550445504456,42.05795111394826],[35.044550445504456,42.051196804868724],[35.08055080550807,42.02924530036026],[35.10575105751059,42.02249099128072],[35.13455134551347,42.02417956855061],[35.145351453514536,42.02924530036026],[35.15975159751599,42.041065341249436],[35.170551705517056,42.0444424957892],[35.18495184951851,42.04275391851931],[35.195751957519576,42.03768818670967],[35.21735217352173,42.02417956855061],[35.21735217352173,42.01742525947107],[35.163351633516356,42.02249099128072],[35.138151381513836,42.01911383674096],[35.11655116551165,42.00729379585178],[35.10575105751059,41.99209660042284],[35.09855098550986,41.97014509591436],[35.09135091350913,41.94650501413601],[35.09135091350913,41.92793066416729],[35.09855098550986,41.91273346873835],[35.127351273512744,41.875584768800934],[35.15615156151563,41.84519037794304],[35.21015210152103,41.811418832545385],[35.21015210152103,41.80466452346586],[35.195751957519576,41.80466452346586],[35.202952029520304,41.791155905306795],[35.21015210152103,41.775958709877855],[35.22455224552246,41.76245009171879],[35.253352533525344,41.75063005082961],[35.28215282152823,41.72361281451148],[35.296552965529656,41.71516992816207],[35.35775357753579,41.69659557819337],[35.4009540095401,41.691529846383716],[35.41895418954189,41.6830869600343],[35.44775447754478,41.66113545552582],[35.48735487354875,41.644249682826995],[35.530555305553065,41.63411821920771],[35.57735577355774,41.629052487398056],[35.62055620556205,41.63242964193782],[35.64215642156421,41.639183951017344],[35.67815678156782,41.65775830098606],[35.739357393573954,41.664512610065586],[35.847358473584734,41.69828415546324],[35.86895868958689,41.701661310003004],[35.89415894158941,41.706727041812655],[35.933759337593386,41.7320557008609],[35.95535955359554,41.73543285540066],[35.95535955359554,41.728678546321134],[35.95175951759518,41.72361281451148],[35.948159481594814,41.71685850543196],[35.93735937359375,41.71179277362231],[35.93015930159302,41.708415619082544],[35.93015930159302,41.69321842365359],[35.91215912159123,41.66282403279571],[35.915759157591594,41.645938260096884],[35.922959229592294,41.645938260096884],[35.92655926559266,41.66957834187524],[35.933759337593386,41.691529846383716],[35.948159481594814,41.71010419635242],[35.96255962559627,41.72192423724161],[35.973359733597334,41.728678546321134],[35.9769597695977,41.73036712359102],[36.03816038160383,41.68815269184395],[36.03816038160383,41.701661310003004],[36.04536045360453,41.701661310003004],[36.12096120961209,41.62736391012817],[36.13536135361355,41.59865809654016],[36.13536135361355,41.55813224206298],[36.13176131761318,41.54800077844368],[36.12096120961209,41.53111500574485],[36.12096120961209,41.52773785120509],[36.12096120961209,41.49396630580743],[36.124561245612455,41.478769110378494],[36.13536135361355,41.461883337679666],[36.17856178561786,41.419668905932596],[36.20376203762038,41.40616028777353],[36.23616236162363,41.358880124216824],[36.25416254162542,41.34874866059752],[36.30456304563046,41.32848573335893],[36.33336333363334,41.32342000154928],[36.33696336963371,41.31835426973964],[36.34056340563407,41.311599960660104],[36.34056340563407,41.29977991977093],[36.344163441634436,41.28795987888175],[36.351363513635135,41.2828941470721],[36.36216362163623,41.281205569802225],[36.37296372963729,41.27782841526245],[36.38016380163802,41.27276268345281],[36.39096390963911,41.26094264256362],[36.394563945639476,41.25587691075398],[36.40536405364054,41.254188333484095],[36.42336423364233,41.252499756214206],[36.434164341643424,41.24574544713468],[36.452164521645216,41.24067971532503],[36.477364773647736,41.24574544713468],[36.51696516965171,41.26263121983351],[36.570965709657116,41.29809134250104],[36.578165781657816,41.30653422885045],[36.58176581765818,41.316665692469755],[36.596165961659636,41.33524004243847],[36.59976599765997,41.341994351518],[36.603366033660336,41.343682928787885],[36.6069660696607,41.36563443329635],[36.62136621366216,41.37576589691565],[36.63216632166322,41.374077319645764],[36.65016650166501,41.36901158783611],[36.6717667176672,41.36563443329635],[36.75816758167582,41.36563443329635],[36.837368373683745,41.35043723786741],[36.9849698496985,41.294714187961276],[37.013770137701385,41.274451260722685],[37.03177031770318,41.24236829259492],[37.03537035370354,41.19846528357796],[37.038970389703906,41.181579510879146],[37.0569705697057,41.17482520179961],[37.07857078570785,41.171448047259844],[37.114571145711466,41.15287369729113],[37.13617136171362,41.1461193882116],[37.26217262172622,41.14780796548149],[37.298172981729834,41.14105365640195],[37.323373233732354,41.12416788370312],[37.33417334173342,41.119102151893486],[37.355773557735574,41.114036420083835],[37.37737377373776,41.112347842813946],[37.39537395373955,41.108970688274184],[37.42057420574207,41.087019183765705],[37.4349743497435,41.076887720146416],[37.47817478174784,41.068444833797],[37.481774817748175,41.06169052471746],[37.50337503375036,41.04311617474876],[37.524975249752515,41.03636186566922],[37.56457564575646,41.039739020209],[37.57897578975792,41.03636186566922],[37.58617586175862,41.04142759747887],[37.600576005760075,41.04649332928852],[37.607776077760775,41.049870483828286],[37.6149761497615,41.0583133701777],[37.62937629376296,41.08533060649583],[37.64017640176402,41.10221637919466],[37.65457654576548,41.1174135746236],[37.67257672576727,41.13092219278266],[37.69057690576906,41.14105365640195],[37.69777697776979,41.12416788370312],[37.71577715777158,41.114036420083835],[37.733777337773375,41.114036420083835],[37.751777517775196,41.12585646097301],[37.758977589775895,41.119102151893486],[37.784177841778416,41.12247930643325],[37.784177841778416,41.06000194744759],[37.802178021780236,41.04311617474876],[37.852578525785276,41.02285324751017],[37.866978669786704,41.01609893843063],[37.877778777787796,41.00596747481134],[37.89577895778959,40.982327393032975],[37.935379353793536,40.99583601119204],[37.98217982179821,40.99077027938239],[38.10098100981011,40.96037588852451],[38.16218162181622,40.951933002175096],[38.20178201782019,40.941801538555794],[38.22338223382235,40.941801538555794],[38.26658266582666,40.95024442490521],[38.28818288182882,40.946867270365445],[38.33138331383316,40.91816145677744],[38.35298352983531,40.91816145677744],[38.3889838898389,40.926604343126854],[38.42498424984251,40.91816145677744],[38.453784537845394,40.91647287950755],[38.46458464584646,40.92322718858709],[38.54018540185402,40.926604343126854],[38.554585545855474,40.93504722947627],[38.59058590585906,40.962064465794384],[38.604986049860514,40.968818774873924],[38.637386373863734,40.97557308395345],[38.648186481864826,40.97557308395345],[38.655386553865554,40.9705073521438],[38.66978669786698,40.95531015671486],[38.67698676986771,40.94855584763533],[38.687786877868774,40.951933002175096],[38.705787057870594,40.95362157944497],[38.71658716587166,40.95531015671486],[38.723787237872386,40.95868731125462],[38.73458734587348,40.96544162033415],[38.74178741787418,40.97219592941369],[38.756187561875635,40.97557308395345],[38.77418774187743,40.994147433922166],[38.77778777787779,40.9992131657318],[38.78498784987852,41.00259032027158],[38.806588065880675,41.00765605208122],[38.87498874988751,41.01947609297039],[38.8929889298893,41.02791897931981],[38.907389073890755,41.03805044293911],[38.92898928989291,41.04311617474876],[39.040590405904055,41.04311617474876],[39.12339123391234,41.056624792907826],[39.13059130591307,41.06169052471746],[39.15579155791559,41.076887720146416],[39.166591665916656,41.08026487468618],[39.20259202592027,41.076887720146416],[39.22059220592206,41.07351056560664],[39.249392493924944,41.05324763836805],[39.274592745927464,41.049870483828286],[39.28899288992892,41.05493621563794],[39.317793177931776,41.068444833797],[39.335793357933596,41.07013341106688],[39.350193501935024,41.07351056560664],[39.40419404194043,41.09883922465488],[39.40779407794079,41.10221637919466],[39.41139411394116,41.107282111004295],[39.418594185941856,41.11065926554407],[39.42939429394295,41.112347842813946],[39.49419494194942,41.10052780192477],[39.50859508595087,41.09039633830547],[39.53379533795339,41.06506767925724],[39.59139591395916,41.024541824780044],[39.63099630996311,41.00765605208122],[39.67059670596706,41.00259032027158],[39.68859688596888,41.00765605208122],[39.71019710197103,41.014410361160756],[39.728197281972825,41.01778751570052],[39.75699756997571,41.00259032027158],[39.7677976779768,41.00090174300169],[39.78939789397896,41.00259032027158],[39.80019800198002,41.00090174300169],[39.85779857798579,40.96375304306427],[39.87579875798758,40.95699873398475],[39.89739897398974,40.95531015671486],[39.911799117991194,40.96375304306427],[39.97659976599766,40.9806388157631],[39.99819998199982,40.982327393032975],[40.055800558005586,40.941801538555794],[40.08460084600847,40.926604343126854],[40.12420124201242,40.919850034047315],[40.14220142201424,40.92322718858709],[40.171001710017094,40.931670074936505],[40.196201962019614,40.93673580674614],[40.23220232202323,40.946867270365445],[40.25380253802538,40.95868731125462],[40.30060300603006,40.968818774873924],[40.466204662046636,41.049870483828286],[40.498604986049855,41.03805044293911],[40.52740527405274,41.03636186566922],[40.556205562055624,41.04311617474876],[40.58860588605887,41.056624792907826],[40.624606246062456,41.08195345195605],[40.63900639006391,41.08533060649583],[40.67140671406716,41.08870776103559],[40.68580685806859,41.092084915575356],[40.69660696606968,41.09883922465488],[40.757807578075784,41.15793942910078],[40.826208262082616,41.19846528357796],[40.84060840608407,41.20184243811774],[40.8550085500855,41.19846528357796],[40.89820898208984,41.18833381995867],[40.92340923409236,41.190022397228546],[40.959409594095945,41.21028532446715],[40.97740977409774,41.21535105627679],[40.99540995409956,41.217039633546676],[41.02061020610208,41.2237939426262],[41.04221042210423,41.232236828975616],[41.060210602106025,41.24236829259492],[41.09981099811,41.274451260722685],[41.12141121411216,41.28627130161186],[41.14661146611468,41.28964845615164],[41.1718117181172,41.29133703342151],[41.18981189811899,41.296402765231164],[41.28341283412834,41.35381439240717],[41.30861308613086,41.3605687014867],[41.33021330213302,41.36901158783611],[41.34101341013411,41.37238874237589],[41.37701377013772,41.37576589691565],[41.39141391413915,41.379143051455415],[41.40941409414094,41.39096309234459],[41.4238142381424,41.40784886504342],[41.43461434614346,41.4298003695519],[41.438214382143826,41.45175187406038],[41.44901449014492,41.456817605870015],[41.50661506615066,41.49565488307732],[41.521015210152115,41.51422923304604],[41.58581585815858,41.602035251079926],[41.61461614616147,41.63242964193782],[41.6758167581676,41.66282403279571],[41.69381693816939,41.691529846383716],[41.74061740617407,41.75063005082961],[41.74061740617407,41.76245009171879],[41.74421744217443,41.770892978068204],[41.74421744217443,41.77933586441762],[41.75141751417516,41.78777875076703],[41.76581765817659,41.80466452346586],[41.773017730177315,41.813107409815274],[41.773017730177315,41.82155029616469],[41.773017730177315,41.90260200511905],[41.773017730177315,41.9076677369287],[41.76221762217622,41.97014509591436],[41.75861758617586,41.99209660042284],[41.75501755017552,42.00560521858189],[41.71541715417155,42.05963969121814],[41.68661686616866,42.098476968425445],[41.6758167581676,42.10523127750497],[41.66501665016651,42.113674163854384],[41.65781657816578,42.1322485138231],[41.65781657816578,42.16770863649063],[41.65061650616508,42.21161164550759],[41.596615966159675,42.35007498163796],[41.59301593015931,42.35514071344761],[41.58581585815858,42.363583599797025],[41.5570155701557,42.38215794976574],[41.55341553415536,42.390600836115155],[41.549815498155,42.405798031544094],[41.49941499414996,42.640510272057796],[41.48141481414814,42.68103612653498],[41.45621456214562,42.713119094662744],[41.4238142381424,42.740136330980874],[41.38421384213842,42.7570221036797],[41.30861308613086,42.76715356729899],[41.29061290612907,42.77390787637853],[41.27621276212764,42.78572791726771],[41.25101251012512,42.79585938088701],[41.2258122581226,42.802613689966535],[41.20421204212042,42.80430226723641],[41.193411934119354,42.802613689966535],[41.1718117181172,42.79248222634723],[41.161011610116105,42.79079364907736],[41.15021150211504,42.79585938088701],[41.10341103411034,42.84651669898349],[41.08181081810818,42.90730548069925],[41.03861038610387,42.96133995333551],[41.02421024210244,42.990045766923515],[40.99900999009992,42.990045766923515],[40.959409594095945,42.976537148764436],[40.934209342093425,42.98329145784399],[40.90540905409054,43.017063003241645],[40.88740887408875,43.02381731232117],[40.88740887408875,43.02888304413082],[40.86220862208623,43.0592774349887],[40.8550085500855,43.06265458952848],[40.783007830078304,43.08460609403693],[40.682206822068224,43.09473755765623],[40.63540635406355,43.09304898038636],[40.6030060300603,43.08629467130683],[40.592205922059236,43.08629467130683],[40.581405814058144,43.087983248576705],[40.55980559805599,43.10318044400566],[40.549005490054896,43.10655759854541],[40.54540545405456,43.10824617581531],[40.52740527405274,43.12175479397436],[40.52020520205204,43.12682052578401],[40.50940509405095,43.13019768032376],[40.4770047700477,43.13357483486354],[40.397803978039775,43.16228064845154],[40.36180361803619,43.16565780299132],[40.33660336603367,43.14032914394306],[40.32580325803258,43.14877203029249],[40.31140311403115,43.17578926661059],[40.30060300603006,43.18929788476967],[40.2790027900279,43.2061836574685],[40.26820268202684,43.2163151210878],[40.271802718027175,43.248398089215556],[40.25740257402575,43.27710390280356],[40.23580235802359,43.30412113912169],[40.2178021780218,43.319318334550644],[40.189001890018915,43.32944979816992],[40.13500135001351,43.34126983905912],[40.10260102601026,43.364909920837476],[40.088200882008834,43.36997565264713],[40.04140041400416,43.37504138445678],[40.00900009000091,43.38517284807605],[39.987399873998754,43.38855000261583],[39.98379983799839,43.38855000261583],[39.962199621996234,43.39192715715558],[39.93339933399335,43.40712435258453],[39.911799117991194,43.425698702553234],[39.89739897398974,43.449338784331616],[39.88299882998831,43.47635602064972],[39.86859868598685,43.49493037061845],[39.8469984699847,43.51012756604737],[39.75699756997571,43.5455876887149],[39.73539735397355,43.56078488414386],[39.71739717397176,43.56753919322338],[39.7137971379714,43.57260492503303],[39.70659706597067,43.582736388652336],[39.69939699396994,43.604687893160815],[39.69219692196924,43.613130779510215],[39.67419674196742,43.62326224312952],[39.63459634596347,43.635082284018694],[39.62019620196202,43.645213747637996],[39.57339573395734,43.689116756654954],[39.45819458194583,43.770168465609316],[39.389793897939,43.84615444275403],[39.32859328593287,43.89681176085051],[39.116191161911615,44.023455056091734],[39.08739087390876,44.045406560600185],[39.06219062190624,44.07580095145809],[39.04419044190442,44.08762099234727],[39.02259022590226,44.09268672415692],[39.0117901179012,44.10112961050632],[38.990189901899015,44.134901155903975],[38.97938979389795,44.148409774063055],[38.96138961389616,44.156852660412454],[38.93618936189364,44.16360696949198],[38.8929889298893,44.16867270130163],[38.87498874988751,44.17373843311128],[38.856988569885715,44.183869896730585],[38.77418774187743,44.26154445114517],[38.759787597876,44.27336449203435],[38.738187381873814,44.281807378383775],[38.698586985869866,44.29193884200308],[38.59418594185942,44.33246469648026],[38.30978309783097,44.366236241877914],[38.29898298982991,44.37805628276709],[38.28818288182882,44.384810591846616],[38.21618216182162,44.38649916911649],[38.17658176581767,44.406762096355095],[38.15138151381515,44.437156487212974],[38.13338133381333,44.469239455340755],[38.10818108181081,44.496256691658886],[38.07218072180723,44.51651961889746],[38.061380613806136,44.52496250524689],[38.05778057780577,44.558734050644546],[38.043380433804344,44.56042262791442],[38.010980109801096,44.55197974156499],[38.00018000180003,44.55535689610477],[37.985779857798576,44.5637997824542],[37.94617946179463,44.597571327851824],[37.928179281792836,44.60601421420125],[37.92097920979211,44.61445710055065],[37.92457924579247,44.61783425509043],[37.93177931779317,44.621211409630206],[37.935379353793536,44.62796571870973],[37.935379353793536,44.63472002778926],[37.93177931779317,44.638097182329034],[37.87417874178743,44.68875450042552],[37.86337863378634,44.69719738677492],[37.84537845378455,44.700574541314694],[37.79857798577987,44.722526045823145],[37.776977769777716,44.7292803549027],[37.791377913779144,44.705640273124345],[37.809378093780936,44.687065923155615],[37.82377823778239,44.66849157318691],[37.82017820178203,44.64822864594831],[37.79857798577987,44.63472002778926],[37.76977769777699,44.63303145051938],[37.73737737377374,44.63640860505913],[37.708577085770855,44.64147433686878],[37.658176581765815,44.66173726410739],[37.632976329763295,44.66849157318691],[37.600576005760075,44.66849157318691],[37.582575825758255,44.656671532297736],[37.575375753757555,44.65498295502786],[37.56817568175683,44.656671532297736],[37.53577535775358,44.665114418647136],[37.52137521375215,44.67186872772669],[37.51057510575106,44.67524588226644],[37.499774997749995,44.66849157318691],[37.47817478174784,44.67693445953631],[37.46377463774638,44.69044307769539],[37.45297452974532,44.70395169585444],[37.4349743497435,44.71746031401352],[37.38457384573846,44.736034663982224],[37.37017370173703,44.7478547048714],[37.35217352173524,44.77824909572928],[37.316173161731626,44.84579218652459],[37.290972909729106,44.86774369103307],[37.290972909729106,44.874498000112595],[37.31257312573126,44.89138377281142],[37.305373053730534,44.909958122780125],[37.28737287372874,44.928532472748856],[37.190171901719026,44.991009831734516],[37.164971649716506,44.99776414081404],[37.15057150571508,44.999452718083916],[37.13617136171362,45.00451844989357],[37.121771217712194,45.00958418170322],[37.10737107371074,45.01971564532252],[37.06777067770679,45.02984710894182],[37.03537035370354,45.048421458910525],[36.94896948969492,45.06530723160935],[36.84096840968411,45.10921024062628],[36.7977679776798,45.114275972435934],[36.77976779767798,45.11258739516606],[36.74016740167403,45.10245593154676],[36.71856718567187,45.10076735427688],[36.70056700567005,45.10414450881666],[36.64296642966431,45.12778459059501],[36.59256592565927,45.16493329053242],[36.585365853658544,45.17168759961194],[36.58176581765818,45.18013048596137],[36.578165781657816,45.186884795040896],[36.578165781657816,45.19363910412042],[36.585365853658544,45.20208199046985],[36.596165961659636,45.2054591450096],[36.70776707767078,45.20208199046985],[36.72936729367294,45.2054591450096],[36.76536765367655,45.22403349497833],[36.786967869678705,45.230787804057854],[36.7977679776798,45.23247638132773],[36.83016830168302,45.230787804057854],[36.84096840968411,45.23247638132773],[36.85536855368554,45.24260784494703],[36.87696876968769,45.24598499948681],[36.93456934569346,45.26793650399526],[36.95256952569525,45.27637939034469],[36.963369633696345,45.28313369942421],[36.96696966969671,45.29157658577364],[36.97056970569707,45.30339662666282],[36.96696966969671,45.31183951301222],[36.95616956169562,45.31859382209174],[36.94896948969492,45.320282399361645],[36.94176941769419,45.31690524482187],[36.79056790567907,45.29157658577364],[36.77976779767798,45.30001947212304],[36.76536765367655,45.320282399361645],[36.75816758167582,45.34054532660022],[36.75816758167582,45.3540539447593],[36.77616776167761,45.364185408378574],[36.786967869678705,45.34898821294965],[36.79416794167943,45.32534813117127],[36.80136801368013,45.31352809028209],[36.812168121681225,45.31690524482187],[36.812168121681225,45.32534813117127],[36.80856808568086,45.33716817206047],[36.812168121681225,45.34729963567975],[36.81936819368195,45.3523653674894],[36.83016830168302,45.35743109929905],[36.84816848168484,45.360808253838826],[36.84816848168484,45.36756256291835],[36.81576815768159,45.36756256291835],[36.8049680496805,45.37093971745813],[36.78336783367834,45.38782549015693],[36.76896768967691,45.38782549015693],[36.75816758167582,45.38444833561718],[36.74736747367476,45.3810711810774],[36.72936729367294,45.37093971745813],[36.68976689766899,45.33210244025082],[36.66816668166683,45.32703670844117],[36.66816668166683,45.34054532660022],[36.68256682566826,45.36587398564848],[36.704167041670416,45.391202644696705],[36.83376833768338,45.44354854006306],[36.84816848168484,45.43341707644376],[36.862568625686265,45.431728499173886],[36.87696876968769,45.431728499173886],[36.89496894968951,45.43003992190401],[37.06777067770679,45.3540539447593],[37.10737107371074,45.342233903870095],[37.13257132571326,45.34054532660022],[37.139771397713986,45.33547959479057],[37.13257132571326,45.32534813117127],[37.11817118171183,45.315216667551994],[37.114571145711466,45.31352809028209],[37.1109711097111,45.30339662666282],[37.10737107371074,45.27637939034469],[37.10737107371074,45.271313658535036],[37.096570965709674,45.26793650399526],[37.071370713707154,45.266247926725384],[37.064170641706426,45.26118219491573],[37.06777067770679,45.25105073129643],[37.071370713707154,45.24260784494703],[37.07857078570785,45.239230690407254],[37.089370893708946,45.23754211313738],[37.1109711097111,45.239230690407254],[37.16857168571687,45.25105073129643],[37.215372153721546,45.25105073129643],[37.2369723697237,45.25611646310608],[37.24417244172443,45.26793650399526],[37.254972549725494,45.27637939034469],[37.31977319773199,45.271313658535036],[37.3017730177302,45.28651085396399],[37.272972729727314,45.29495374031339],[37.215372153721546,45.30001947212304],[37.18657186571866,45.298330894853166],[37.172171721717234,45.30001947212304],[37.16137161371614,45.306773781202565],[37.154171541715414,45.320282399361645],[37.15777157771578,45.32534813117127],[37.348573485734875,45.32703670844117],[37.37017370173703,45.32197097663152],[37.380973809738094,45.306773781202565],[37.39537395373955,45.31690524482187],[37.431374313743135,45.32197097663152],[37.44577445774459,45.33041386298092],[37.46017460174602,45.34054532660022],[37.50337503375036,45.360808253838826],[37.51777517775179,45.369251140188226],[37.51777517775179,45.360808253838826],[37.50337503375036,45.333791017520696],[37.51417514175142,45.33716817206047],[37.53577535775358,45.34561105840987],[37.54297542975431,45.34729963567975],[37.5537755377554,45.34561105840987],[37.575375753757555,45.342233903870095],[37.582575825758255,45.34054532660022],[37.59337593375935,45.33885674933035],[37.600576005760075,45.33210244025082],[37.607776077760775,45.32197097663152],[37.607776077760775,45.31352809028209],[37.600576005760075,45.306773781202565],[37.58977589775898,45.30339662666282],[37.56817568175683,45.30001947212304],[37.58977589775898,45.28988800850374],[37.607776077760775,45.29664231758326],[37.62217622176223,45.31352809028209],[37.63657636576366,45.333791017520696],[37.63657636576366,45.328725285711045],[37.64377643776439,45.32197097663152],[37.64737647376475,45.315216667551994],[37.650976509765115,45.31352809028209],[37.66177661776618,45.31183951301222],[37.66537665376654,45.31183951301222],[37.67257672576727,45.30846235847247],[37.708577085770855,45.30001947212304],[37.71937719377195,45.30001947212304],[37.73017730177301,45.301708049392914],[37.73737737377374,45.306773781202565],[37.73737737377374,45.31015093574234],[37.73017730177301,45.315216667551994],[37.71577715777158,45.328725285711045],[37.708577085770855,45.333791017520696],[37.70497704977049,45.33716817206047],[37.701377013770156,45.33716817206047],[37.701377013770156,45.33885674933035],[37.701377013770156,45.34729963567975],[37.70497704977049,45.350676790219524],[37.71577715777158,45.3540539447593],[37.71577715777158,45.35743109929905],[37.71937719377195,45.35743109929905],[37.73737737377374,45.37431687199788],[37.7409774097741,45.382759758347305],[37.74457744577447,45.38951406742683],[37.74817748177483,45.39457979923648],[37.758977589775895,45.39457979923648],[37.758977589775895,45.40133410831601],[37.74817748177483,45.39964553104613],[37.73017730177301,45.391202644696705],[37.71577715777158,45.38951406742683],[37.72297722977231,45.41484272647506],[37.71577715777158,45.426662767364235],[37.708577085770855,45.43679423098354],[37.701377013770156,45.45705715822214],[37.71577715777158,45.453680003682365],[37.733777337773375,45.44692569460284],[37.74457744577447,45.44354854006306],[37.74457744577447,45.45030284914259],[37.726577265772676,45.45705715822214],[37.701377013770156,45.47900866273062],[37.6869768697687,45.484074394540244],[37.6869768697687,45.494205858159546],[37.701377013770156,45.543174598986155],[37.701377013770156,45.56343752622473],[37.69417694176943,45.56850325803438],[37.679776797768,45.573568989844034],[37.66897668976691,45.578634721653685],[37.658176581765815,45.58032329892356],[37.650976509765115,45.58538903073321],[37.64377643776439,45.60396338070191],[37.63657636576366,45.60734053524169],[37.62217622176223,45.600586226162164],[37.62217622176223,45.58538903073321],[37.63657636576366,45.570191835304286],[37.66177661776618,45.56681468076451],[37.66177661776618,45.55837179441508],[37.64377643776439,45.55330606260546],[37.63657636576366,45.55330606260546],[37.63657636576366,45.54486317625603],[37.64017640176402,45.54148602171625],[37.64377643776439,45.53473171263673],[37.64737647376475,45.52628882628733],[37.64737647376475,45.5178459399379],[37.650976509765115,45.5178459399379],[37.650976509765115,45.516157362668025],[37.65457654576548,45.51278020812825],[37.65457654576548,45.507714476318625],[37.65457654576548,45.50433732177885],[37.64737647376475,45.50433732177885],[37.64377643776439,45.50433732177885],[37.64017640176402,45.50433732177885],[37.64017640176402,45.45536858095224],[37.62937629376296,45.42835134463414],[37.61857618576187,45.418219881014835],[37.607776077760775,45.41653130374496],[37.59337593375935,45.423285612824486],[37.58617586175862,45.431728499173886],[37.58617586175862,45.44354854006306],[37.59337593375935,45.47732008546072],[37.59337593375935,45.5094030535885],[37.58617586175862,45.56850325803438],[37.58617586175862,45.600586226162164],[37.59337593375935,45.636046348829694],[37.600576005760075,45.65293212152852],[37.607776077760775,45.663063585147825],[37.625776257762595,45.668129316957476],[37.632976329763295,45.66137500787795],[37.62937629376296,45.649554966988774],[37.6149761497615,45.64280065790922],[37.64017640176402,45.636046348829694],[37.650976509765115,45.62422630794052],[37.67257672576727,45.609029112511564],[37.679776797768,45.61071768978147],[37.683376833768335,45.627603462480295],[37.69777697776979,45.62422630794052],[37.701377013770156,45.62253773067064],[37.701377013770156,45.63435777155982],[37.69417694176943,45.63942350336947],[37.683376833768335,45.641112080639346],[37.676176761767636,45.649554966988774],[37.66537665376654,45.663063585147825],[37.66537665376654,45.66981789422735],[37.67257672576727,45.671506471497224],[37.76257762577626,45.725540944133485],[37.802178021780236,45.74073813956244],[37.816578165781664,45.74411529410219],[37.83097830978309,45.752558180451615],[37.841778417784184,45.77282110769019],[37.859778597785976,45.80659265308785],[37.87417874178743,45.8403641984855],[37.902979029790316,45.95012172102787],[37.917379173791744,45.99064757550505],[37.9389793897939,46.02104196636296],[37.97137971379715,46.03961631633166],[38.036180361803616,46.05650208903049],[38.09018090180902,46.059879243570265],[38.09738097380975,46.05819066630036],[38.086580865808656,46.05312493449071],[38.04698046980471,46.037927739061786],[38.03978039780398,46.03455058452201],[38.03258032580325,46.02441912090271],[38.05418054180544,46.032862007252135],[38.0649806498065,46.032862007252135],[38.07578075780759,46.02441912090271],[38.07218072180723,46.01428765728343],[38.05058050580507,45.99233615277495],[38.04698046980471,45.98220468915565],[38.043380433804344,45.96025318464717],[38.04698046980471,45.95349887556765],[38.0649806498065,45.95012172102787],[38.07938079380796,45.95181029829777],[38.07938079380796,45.94674456648812],[38.07938079380796,45.92985879378929],[38.07218072180723,45.90959586655069],[38.05418054180544,45.88933293931211],[38.01458014580146,45.85724997118433],[38.00018000180003,45.8319213121361],[38.01458014580146,45.818412693977024],[38.03978039780398,45.81672411670715],[38.061380613806136,45.82685558032645],[38.04698046980471,45.8403641984855],[38.05058050580507,45.855561393914456],[38.07578075780759,45.88257863023256],[38.09738097380975,45.939990257408596],[38.09738097380975,45.95012172102787],[38.10818108181081,45.95687603010742],[38.12258122581227,45.97207322553635],[38.129781297813,45.99064757550505],[38.14058140581406,46.02948485271236],[38.14778147781479,46.041304893601534],[38.15498154981552,46.04805920268109],[38.16218162181622,46.059879243570265],[38.16218162181622,46.10209367531732],[38.16578165781658,46.12066802528602],[38.18738187381874,46.127422334365576],[38.20898208982089,46.1324880661752],[38.22698226982271,46.13755379798485],[38.24858248582487,46.14093095252463],[38.27378273782739,46.135865220714976],[38.320583205832065,46.09365078896792],[38.35298352983531,46.081830748078744],[38.41058410584105,46.046370625411186],[38.428584285842874,46.037927739061786],[38.446584465844666,46.03455058452201],[38.48258482584828,46.032862007252135],[38.49338493384934,46.032862007252135],[38.5149851498515,46.037927739061786],[38.52578525785259,46.03961631633166],[38.54018540185402,46.032862007252135],[38.55098550985511,46.03117342998226],[38.55818558185584,46.032862007252135],[38.56538565385654,46.04299347087144],[38.572585725857266,46.064944975379916],[38.57618576185763,46.08689647988837],[38.572585725857266,46.1054708298571],[38.55818558185584,46.11560229347637],[38.29898298982991,46.21860550693924],[38.28458284582845,46.23211412509829],[38.28098280982812,46.255754206876645],[38.270182701827025,46.27432855684535],[38.25218252182523,46.28783717500443],[38.21618216182162,46.30641152497313],[38.12258122581227,46.37733177030819],[38.086580865808656,46.39590612027692],[38.068580685806864,46.40097185208657],[37.98937989379894,46.402660429356445],[37.98217982179821,46.40097185208657],[37.97497974979751,46.39421754300702],[37.978579785797876,46.38239750211784],[38.010980109801096,46.372266038498566],[38.018180181801824,46.36888888395879],[37.99657996579967,46.353691688529835],[37.97137971379715,46.36213457487926],[37.90657906579065,46.411103315705844],[37.86337863378634,46.4550063247228],[37.84897848978491,46.46344921107223],[37.827378273782756,46.47695782923128],[37.8129781297813,46.505663642819286],[37.802178021780236,46.53943518821694],[37.776977769777716,46.58671535177365],[37.766177661776624,46.617109742631555],[37.75537755377553,46.64581555621956],[37.73017730177301,46.66270132891839],[37.73017730177301,46.66945563799791],[37.733777337773375,46.66945563799791],[37.73737737377374,46.67114421526779],[37.73737737377374,46.674521369807564],[37.73737737377374,46.67620994707744],[37.76977769777699,46.66270132891839],[37.809378093780936,46.639061247140035],[37.852578525785276,46.62217547444121],[37.88137881378813,46.62892978352073],[37.92457924579247,46.61542116536165],[37.98217982179821,46.617109742631555],[38.036180361803616,46.62892978352073],[38.068580685806864,46.64581555621956],[38.10458104581048,46.67620994707744],[38.12258122581227,46.68634141069674],[38.144181441814425,46.69140714250639],[38.194581945819465,46.69140714250639],[38.21258212582126,46.69647287431604],[38.23058230582308,46.70491576066544],[38.2629826298263,46.7285558424438],[38.270182701827025,46.73193299698357],[38.28098280982812,46.72517868790405],[38.28818288182882,46.71167006974497],[38.29178291782918,46.70660433793532],[38.30618306183064,46.682964256156964],[38.31338313383134,46.67620994707744],[38.46098460984609,46.647504133489434],[38.57618576185763,46.65425844256896],[38.59058590585906,46.65932417437861],[38.597785977859786,46.67789852434731],[38.586985869858694,46.69647287431604],[38.56538565385654,46.709981492475094],[38.554585545855474,46.71673580155462],[38.5149851498515,46.73193299698357],[38.471784717847186,46.74375303787275],[38.428584285842874,46.745441615142624],[38.3889838898389,46.73193299698357],[38.3889838898389,46.72517868790405],[38.3817838178382,46.71335864701487],[38.37818378183783,46.70829291520522],[38.37458374583747,46.7285558424438],[38.370983709837105,46.74375303787275],[38.36738367383674,46.75557307876193],[38.37458374583747,46.76232738784145],[38.396183961839625,46.77414742873063],[38.403384033840354,46.77921316054028],[38.403384033840354,46.78934462415958],[38.39978399783999,46.81129612866806],[38.403384033840354,46.821427592287364],[38.41418414184142,46.83324763317654],[38.43578435784357,46.84675625133559],[38.45738457384576,46.856887714954894],[38.47538475384755,46.861953446764545],[38.554585545855474,46.848444828605466],[38.572585725857266,46.85013340587537],[38.60858608586088,46.86026486949464],[38.69138691386914,46.86364202403442],[38.712987129871294,46.86870775584407],[38.7669876698767,46.88728210581277],[38.80298802988031,46.8940364148923],[38.8209882098821,46.9041678785116],[38.84618846188462,46.93118511482973],[38.864188641886415,46.94300515571891],[38.882188821888235,46.946382310258684],[38.91818918189182,46.94300515571891],[38.93618936189364,46.94807088752856],[38.957789577895795,46.95651377387796],[38.990189901899015,46.97846527838644],[39.03699036990372,47.01392540105397],[39.058590585905876,47.022368287403395],[39.065790657906575,47.02743401921305],[39.07659076590767,47.0324997510227],[39.08739087390876,47.0324997510227],[39.09819098190982,47.02912259648292],[39.10539105391055,47.017302555593744],[39.116191161911615,47.01223682378409],[39.12699126991271,47.01392540105397],[39.1377913779138,47.01899113286362],[39.1449914499145,47.02405686467327],[39.15219152191523,47.02574544194317],[39.260192601926036,47.008859669244345],[39.28179281792819,47.01223682378409],[39.28899288992892,47.02743401921305],[39.29619296192962,47.0696484509601],[39.30339303393035,47.084845646389056],[39.324993249932504,47.09835426454811],[39.368193681936816,47.106797150897535],[39.389793897939,47.115240037246934],[39.35379353793539,47.13043723267589],[39.32859328593287,47.128748655406014],[39.30699306993071,47.111862882707186],[39.28179281792819,47.08822280092883],[39.2637926379264,47.09666568727823],[39.260192601926036,47.106797150897535],[39.274592745927464,47.13550296448554],[39.25299252992531,47.14056869629519],[39.249392493924944,47.147323005374716],[39.25299252992531,47.18109455077237],[39.25659256592567,47.18953743712177],[39.2637926379264,47.191226014391674],[39.274592745927464,47.191226014391674],[39.28179281792819,47.196291746201325],[39.28179281792819,47.204734632550725],[39.28179281792819,47.235129023408604],[39.2637926379264,47.26045768245686],[39.22779227792279,47.267211991536385],[39.184591845918476,47.26890056880626],[39.15579155791559,47.27903203242556],[39.1377913779138,47.27396630061591],[39.11979119791198,47.27734345515569],[39.10179101791019,47.28409776423521],[39.08739087390876,47.28578634150509],[39.0729907299073,47.28240918696534],[39.04779047790478,47.267211991536385],[39.040590405904055,47.26552341426651],[39.0117901179012,47.253703373377334],[38.97578975789759,47.25708052791708],[38.94338943389434,47.25201479610743],[38.92898928989291,47.22162040524955],[38.932589325893275,47.20135747801095],[38.93618936189364,47.18953743712177],[38.932589325893275,47.18447170531212],[38.8857888578886,47.18109455077237],[38.87498874988751,47.17602881896272],[38.86058860588608,47.169274509883195],[38.84618846188462,47.164208778073544],[38.82818828188283,47.16252020080367],[38.77058770587706,47.164208778073544],[38.72018720187202,47.15070015991449],[38.68418684186844,47.147323005374716],[38.64458644586446,47.13719154175541],[38.62658626586267,47.13550296448554],[38.554585545855474,47.13550296448554],[38.55818558185584,47.13043723267589],[38.55818558185584,47.128748655406014],[38.561785617856174,47.12537150086624],[38.5689856898569,47.12199434632646],[38.5689856898569,47.115240037246934],[38.54378543785438,47.115240037246934],[38.51858518585186,47.11861719178671],[38.49338493384934,47.128748655406014],[38.478984789847914,47.142257273565065],[38.49338493384934,47.14901158264459],[38.511385113851134,47.17096308715307],[38.522185221852226,47.17602881896272],[38.529385293852954,47.182783128042246],[38.55098550985511,47.209800364360376],[38.55818558185584,47.218243250709776],[38.59418594185942,47.23006329159895],[38.77418774187743,47.245260487027906],[38.788587885878854,47.25032621883756],[38.806588065880675,47.262146259726734],[38.8209882098821,47.275654877885785],[38.8209882098821,47.28578634150509],[38.81018810188104,47.28747491877499],[38.80298802988031,47.280720609695436],[38.788587885878854,47.262146259726734],[38.781387813878155,47.258769105186985],[38.77418774187743,47.258769105186985],[38.756187561875635,47.258769105186985],[38.59418594185942,47.24188333248816],[38.554585545855474,47.23006329159895],[38.51858518585186,47.21148894163025],[38.50058500585007,47.18109455077237],[38.49338493384934,47.17602881896272],[38.48618486184861,47.174340241692846],[38.471784717847186,47.169274509883195],[38.46098460984609,47.16252020080367],[38.45738457384576,47.15238873718437],[38.45018450184503,47.14056869629519],[38.428584285842874,47.133814387215665],[38.26658266582666,47.11861719178671],[38.22338223382235,47.10848572816741],[38.21618216182162,47.10341999635776],[38.194581945819465,47.08991137819871],[38.14058140581406,47.03756548283235],[38.10818108181081,47.02574544194317],[38.129781297813,47.057828410070925],[38.129781297813,47.07471418276975],[38.10458104581048,47.08146849184928],[38.07218072180723,47.10004284181801],[38.0649806498065,47.09835426454811],[38.061380613806136,47.09497711000836],[38.036180361803616,47.084845646389056],[38.02538025380255,47.08146849184928],[37.98937989379894,47.09159995546858],[37.960579605796056,47.09666568727823],[37.94977949779499,47.09159995546858],[37.859778597785976,47.10173141908788],[37.751777517775196,47.07471418276975],[37.708577085770855,47.07471418276975],[37.57897578975792,47.08991137819871],[37.54657546575467,47.08146849184928],[37.481774817748175,47.035876905562446],[37.37737377373776,46.93456226936948],[37.35217352173524,46.89910214670195],[37.33417334173342,46.88221637400312],[37.31257312573126,46.875462064923596],[37.316173161731626,46.90079072397185],[37.29457294572947,46.92105365121043],[37.26217262172622,46.932873692099605],[37.22617226172264,46.93625084663938],[37.20817208172082,46.932873692099605],[37.16137161371614,46.90923361032125],[37.046170461704634,46.87715064219347],[37.02817028170281,46.875462064923596],[37.01737017370175,46.87208491038385],[36.9849698496985,46.85182198314524],[36.97416974169744,46.848444828605466],[36.938169381693825,46.840001942256066],[36.887768877688785,46.804541819588536],[36.85536855368554,46.80116466504876],[36.862568625686265,46.777524583270406],[36.84816848168484,46.75388450149205],[36.83016830168302,46.73193299698357],[36.81936819368195,46.70829291520522],[36.812168121681225,46.68127567888709],[36.79416794167943,46.65425844256896],[36.76896768967691,46.63737266987013],[36.74376743767439,46.64243840167978],[36.74376743767439,46.64919271075931],[36.75096750967509,46.64919271075931],[36.77256772567728,46.64412697894966],[36.79056790567907,46.67114421526779],[36.80136801368013,46.70660433793532],[36.80136801368013,46.72517868790405],[36.79416794167943,46.7285558424438],[36.75816758167582,46.758950233301704],[36.74376743767439,46.76401596511133],[36.711367113671145,46.772458851460755],[36.69696696966972,46.77921316054028],[36.678966789667896,46.772458851460755],[36.660966609666104,46.77414742873063],[36.63216632166322,46.77921316054028],[36.61776617766179,46.77583600600053],[36.6069660696607,46.76908169692098],[36.596165961659636,46.76232738784145],[36.58896588965891,46.758950233301704],[36.52416524165241,46.758950233301704],[36.4809648096481,46.742064460602876],[36.434164341643424,46.73531015152332],[36.401764017640176,46.723490110634145],[36.369363693636956,46.70829291520522],[36.30456304563046,46.65932417437861],[36.2829628296283,46.63568409260026],[36.27936279362794,46.60697827901225],[36.27216272162721,46.60697827901225],[36.27216272162721,46.62217547444121],[36.268562685626875,46.625552628980955],[36.25776257762578,46.62217547444121],[36.24696246962469,46.61879831990143],[36.24696246962469,46.612044010821904],[36.24696246962469,46.610355433552],[36.23976239762399,46.620486897171304],[36.243362433624355,46.62386405171108],[36.243362433624355,46.630618360790606],[36.243362433624355,46.63568409260026],[36.23256232562326,46.64074982440991],[36.2289622896229,46.64243840167978],[36.22176221762217,46.65425844256896],[36.218162181621835,46.65932417437861],[36.21096210962111,46.66270132891839],[36.18936189361895,46.66945563799791],[36.17136171361713,46.66776706072804],[36.13536135361355,46.66270132891839],[36.06336063360635,46.66945563799791],[35.92655926559266,46.652569865299085],[35.90135901359014,46.652569865299085],[35.82575825758258,46.62386405171108],[35.771757717577174,46.6019125472026],[35.74295742957429,46.585026774503774],[35.66015660156603,46.51917226097834],[35.62775627756278,46.49890933373976],[35.50895508955091,46.45669490199268],[35.49095490954912,46.44825201564328],[35.47655476554766,46.4364319747541],[35.44415444154441,46.40603758389622],[35.429754297542985,46.39590612027692],[35.39375393753937,46.37902034757809],[35.379353793537945,46.36888888395879],[35.28575285752859,46.25913136141642],[35.278552785527864,46.255754206876645],[35.26415264152644,46.242245588717594],[35.21015210152103,46.16963676611263],[35.18495184951851,46.14599668433428],[35.163351633516356,46.127422334365576],[35.120151201512016,46.11897944801615],[35.094950949509496,46.103782252587195],[35.062550625506276,46.09871652077754],[35.037350373503756,46.08689647988837],[35.001350013500144,46.073387861729316],[34.98334983349835,46.07845359353897],[34.986949869498716,46.08689647988837],[35.01575015750157,46.11222513893662],[35.051750517505184,46.127422334365576],[35.04815048150482,46.1324880661752],[35.044550445504456,46.1426195297945],[35.1489514895149,46.16457103430298],[35.19935199351994,46.18314538427168],[35.228152281522824,46.22198266147899],[35.253352533525344,46.24055701144769],[35.26055260552607,46.25744278414652],[35.29295292952929,46.29290290681408],[35.328953289532905,46.31992014313218],[35.34335343353433,46.33511733856113],[35.3469534695347,46.36044599760939],[35.328953289532905,46.348625956720184],[35.31095310953111,46.33680591583101],[35.29295292952929,46.33680591583101],[35.26775267752677,46.35031453399009],[35.25695256952571,46.37395461576844],[35.26415264152644,46.39928327481667],[35.28575285752859,46.438120552023975],[35.278552785527864,46.44149770656375],[35.26055260552607,46.44149770656375],[35.24975249752498,46.443186283833626],[35.24255242552425,46.4465634383734],[35.23175231752319,46.4550063247228],[35.213752137521396,46.46344921107223],[35.202952029520304,46.47695782923128],[35.19215192151921,46.49384360193011],[35.188551885518876,46.51241795189881],[35.16695166951669,46.49384360193011],[35.17415174151742,46.473580674691505],[35.19215192151921,46.4550063247228],[35.202952029520304,46.43980912929385],[35.20655206552067,46.42798908840467],[35.21015210152103,46.41954620205527],[35.213752137521396,46.411103315705844],[35.21015210152103,46.39590612027692],[35.202952029520304,46.38577465665762],[35.16695166951669,46.36044599760939],[35.10935109351095,46.29796863862373],[35.10575105751059,46.29459148408395],[35.07335073350734,46.2709514023056],[35.03015030150303,46.2523770523369],[34.936549365493676,46.23549127963807],[34.92574925749258,46.23549127963807],[34.91494914949149,46.23886843417782],[34.90774907749079,46.24393416598747],[34.90774907749079,46.2523770523369],[34.90414904149043,46.255754206876645],[34.893348933489335,46.2523770523369],[34.886148861488635,46.242245588717594],[34.886148861488635,46.23211412509829],[34.88254882548827,46.22198266147899],[34.83934839348393,46.20847404331994],[34.835748357483595,46.20340831151029],[34.817748177481775,46.18652253881146],[34.810548105481075,46.17639107519216],[34.810548105481075,46.166259611572855],[34.81414814148141,46.157816725223455],[34.817748177481775,46.1426195297945],[34.8249482494825,46.07845359353897],[34.82854828548287,46.06325639811001],[34.83934839348393,46.04805920268109],[34.87534875348754,45.926481639249516],[34.88254882548827,45.912973021090465],[34.8969489694897,45.90115298020129],[34.90414904149043,45.88933293931211],[34.95814958149583,45.78970688038902],[35.044550445504456,45.66981789422735],[35.33255332553327,45.37093971745813],[35.480154801548025,45.298330894853166],[35.51615516155164,45.29495374031339],[35.69615696156961,45.33041386298092],[35.71775717757177,45.34054532660022],[35.74295742957429,45.360808253838826],[35.746557465574654,45.37093971745813],[35.75015750157502,45.37938260380753],[35.75375753757538,45.38613691288705],[35.76815768157681,45.38951406742683],[35.771757717577174,45.39289122196658],[35.789757897578994,45.40808841739553],[35.79335793357933,45.41146557193531],[35.79335793357933,45.43003992190401],[35.80415804158042,45.448614271872714],[35.81855818558185,45.46381146730167],[35.832958329583306,45.47056577638119],[35.858158581585826,45.46887719911132],[35.86175861758619,45.458745735492016],[35.8509585095851,45.44354854006306],[35.847358473584734,45.426662767364235],[35.85455854558546,45.41484272647506],[35.872558725587254,45.404711262855756],[35.948159481594814,45.372628294728],[35.98775987759879,45.3624968311087],[36.023760237602374,45.36756256291835],[36.05256052560526,45.39457979923648],[36.066960669606715,45.42497419009436],[36.07056070560705,45.43003992190401],[36.09576095760957,45.44185996279319],[36.117361173611755,45.45705715822214],[36.13896138961391,45.46212289003179],[36.25416254162542,45.46212289003179],[36.268562685626875,45.467188621841416],[36.2829628296283,45.47732008546072],[36.300963009630095,45.47394293092097],[36.30816308163082,45.46043431276189],[36.29736297362973,45.44354854006306],[36.31176311763119,45.44354854006306],[36.32256322563225,45.448614271872714],[36.32976329763298,45.453680003682365],[36.34056340563407,45.45705715822214],[36.35856358563586,45.453680003682365],[36.39096390963911,45.440171385523314],[36.41256412564127,45.43679423098354],[36.470164701647036,45.445237117332965],[36.49176491764919,45.44354854006306],[36.51696516965171,45.41990845828471],[36.53136531365314,45.40808841739553],[36.54936549365493,45.41146557193531],[36.56736567365675,45.42497419009436],[36.58176581765818,45.426662767364235],[36.59976599765997,45.42159703555458],[36.61416614166143,45.40808841739553],[36.63216632166322,45.37431687199788],[36.63936639366395,45.350676790219524],[36.63216632166322,45.34054532660022],[36.59976599765997,45.333791017520696],[36.585365853658544,45.333791017520696],[36.57456574565745,45.33547959479057],[36.545765457654596,45.34729963567975],[36.520565205652076,45.350676790219524],[36.502565025650256,45.34729963567975],[36.48816488164883,45.33716817206047],[36.484564845648464,45.31690524482187],[36.48816488164883,45.31015093574234],[36.495364953649556,45.30508520393269],[36.49896498964989,45.30001947212304],[36.49176491764919,45.29157658577364],[36.4809648096481,45.28819943123386],[36.459364593645944,45.28819943123386],[36.452164521645216,45.284822276694086],[36.43776437764379,45.271313658535036],[36.426964269642696,45.25105073129643],[36.419764197641996,45.22909922678798],[36.408964089640904,45.17168759961194],[36.408964089640904,45.14973609510349],[36.41616416164163,45.12778459059501],[36.44136441364415,45.105833086086534],[36.45576455764558,45.09232446792748],[36.452164521645216,45.07712727249853],[36.44136441364415,45.06699580887923],[36.369363693636956,45.048421458910525],[36.27936279362794,45.04504430437075],[36.268562685626875,45.043355727100874],[36.25776257762578,45.03828999529122],[36.25416254162542,45.03322426348157],[36.24696246962469,45.01633849078274],[36.243362433624355,45.01127275897309],[36.225362253622535,45.007895604433344],[36.13536135361355,45.021404222592395],[36.07776077760778,45.04673288164062],[36.07776077760778,45.03828999529122],[36.048960489604895,45.048421458910525],[36.023760237602374,45.03322426348157],[36.00936009360095,45.00958418170322],[35.99495994959949,44.99776414081404],[35.915759157591594,45.00114129535379],[35.847358473584734,44.99269840900439],[35.82935829358294,44.999452718083916],[35.81855818558185,45.021404222592395],[35.81135811358115,45.0315356862117],[35.782557825578266,45.056864345259925],[35.771757717577174,45.06530723160935],[35.706957069570706,45.09401304519736],[35.63495634956351,45.114275972435934],[35.59175591755917,45.119341704245585],[35.54855548555486,45.119341704245585],[35.505355053550545,45.114275972435934],[35.46935469354693,45.10076735427688],[35.41535415354156,45.070372963419004],[35.40815408154083,45.061930077069576],[35.404554045540465,45.05179861345027],[35.4009540095401,45.043355727100874],[35.39735397353974,45.034912840751446],[35.4009540095401,45.02478137713217],[35.40815408154083,45.01971564532252],[35.43695436954371,45.01127275897309],[35.43695436954371,45.00451844989357],[35.42255422554226,45.00114129535379],[35.39015390153904,45.00114129535379],[35.37575375753758,44.99776414081404],[35.36135361353615,44.985944099924865],[35.36135361353615,44.97412405903569],[35.36855368553685,44.94372966817778],[35.31815318153181,44.97074690449591],[35.31455314553148,44.96568117268626],[35.303753037530385,44.96061544087661],[35.296552965529656,44.95554970906696],[35.2749527495275,44.96736974995616],[35.25695256952571,44.958926863606735],[35.23175231752319,44.92515531820908],[35.213752137521396,44.915023854589776],[35.170551705517056,44.90658096824038],[35.152551525515264,44.901515236430726],[35.13095130951311,44.869432268302944],[35.10935109351095,44.825529259286014],[35.08055080550807,44.79344629115823],[35.037350373503756,44.798512022967884],[35.026550265502664,44.80864348658719],[35.019350193501936,44.82384068201611],[35.00495004950051,44.83566072290529],[34.986949869498716,44.84072645471494],[34.9509495094951,44.84072645471494],[34.943749437494375,44.84072645471494],[34.92934929349295,44.83566072290529],[34.92214922149222,44.83059499109564],[34.91494914949149,44.825529259286014],[34.90774907749079,44.82046352747636],[34.88974889748897,44.81877495020646],[34.85734857348575,44.82384068201611],[34.842948429484295,44.817086372936586],[34.8249482494825,44.812020641126935],[34.75654756547567,44.82046352747636],[34.72054720547206,44.81033206385706],[34.65214652146523,44.776560518459405],[34.61254612546125,44.76474047757023],[34.533345333453354,44.75292043668105],[34.500945009450106,44.74278897306175],[34.475744757447586,44.72421462309305],[34.475744757447586,44.72590320036292],[34.475744757447586,44.7292803549027],[34.47214472144722,44.73096893217257],[34.46854468544686,44.7292803549027],[34.42894428944291,44.69044307769539],[34.425344253442546,44.68200019134596],[34.414544145441454,44.673557304996564],[34.37854378543787,44.63134287324948],[34.34254342543426,44.558734050644546],[34.331743317433194,44.545225432485466],[34.324543245432466,44.54353685521559],[34.299342993429946,44.545225432485466],[34.28494284942849,44.545225432485466],[34.274142741427426,44.54691400975537],[34.27054270542706,44.545225432485466],[34.2669426694267,44.54184827794572],[34.2669426694267,44.53847112340594],[34.2669426694267,44.53509396886619],[34.26334263342633,44.531716814326415],[34.24174241742418,44.50807673254806],[34.230942309423114,44.499633846198634],[34.18414184141841,44.49287953711911],[34.16974169741698,44.48105949622993],[34.16254162541625,44.46586230080098],[34.148141481414825,44.45066510537205],[34.13734137341373,44.442222219022625],[34.10134101341015,44.4253364463238],[34.08694086940869,44.42195929178405],[34.06534065340654,44.420270714514146],[33.95733957339573,44.38312201457674],[33.93933939339394,44.38143343730684],[33.914139141391416,44.38312201457674],[33.85293852938531,44.401696364545444],[33.838538385383856,44.401696364545444],[33.8169381693817,44.39663063273579],[33.80613806138061,44.39494205546592],[33.74133741337414,44.39663063273579],[33.719737197371984,44.40000778727557],[33.644136441364424,44.4253364463238],[33.63333633336333,44.433779332673225],[33.62613626136263,44.45235368264193],[33.618936189361904,44.46248514626123],[33.59013590135902,44.48950238257933],[33.57933579335793,44.496256691658886],[33.561335613356135,44.496256691658886],[33.53973539735398,44.491190959849234],[33.51813518135182,44.491190959849234],[33.50013500135003,44.50132242346854],[33.485734857348575,44.509765309817936],[33.38133381333813,44.5637997824542],[33.37053370533707,44.57730840061325],[33.37053370533707,44.58743986423255],[33.37053370533707,44.589128441502424],[33.37413374133743,44.58575128696265],[33.40653406534065,44.5908170187723],[33.41373413734138,44.5925055960422],[33.435334353343535,44.60601421420125],[33.44613446134463,44.60770279147113],[33.46773467734678,44.60601421420125],[33.47853478534785,44.60601421420125],[33.485734857348575,44.6110799460109],[33.50013500135003,44.61445710055065],[33.55053550535507,44.61445710055065],[33.57213572135723,44.621211409630206],[33.55773557735577,44.624588564169954],[33.52533525335255,44.629654295979606],[33.51453514535146,44.63472002778926],[33.51453514535146,44.64991722321821],[33.52533525335255,44.66173726410739],[33.536135361353615,44.67186872772669],[33.54333543335434,44.68200019134596],[33.54693546935471,44.69888596404479],[33.54693546935471,44.709017427664094],[33.536135361353615,44.7292803549027],[33.52893528935289,44.7579861684907],[33.52533525335255,44.77318336391963],[33.51453514535146,44.785003404808805],[33.52533525335255,44.790069136618456],[33.52893528935289,44.79344629115823],[33.52893528935289,44.798512022967884],[33.536135361353615,44.81877495020646],[33.54693546935471,44.83734930017519],[33.561335613356135,44.84916934106437],[33.59733597335975,44.85930080468367],[33.60813608136081,44.87112084557285],[33.61533615336154,44.88969519554155],[33.618936189361904,44.90826954551025],[33.618936189361904,44.931909627288604],[33.60813608136081,44.97074690449591],[33.60453604536045,44.98763267719474],[33.60453604536045,44.99269840900439],[33.586535865358655,45.01802706805262],[33.58293582935829,45.02815853167192],[33.57933579335793,45.053487190720176],[33.561335613356135,45.09401304519736],[33.536135361353615,45.11765312697571],[33.46773467734678,45.14804751783359],[33.41373413734138,45.18519621777102],[33.39573395733959,45.19026194958067],[33.35613356133561,45.18519621777102],[33.31653316533166,45.17506475415172],[33.284132841328415,45.159867558722766],[33.258932589325894,45.15649040418302],[33.24813248132483,45.16493329053242],[33.2409324093241,45.18013048596137],[33.21933219332195,45.186884795040896],[33.17253172531727,45.1970162586602],[33.158131581315814,45.2071477222795],[33.12213122131223,45.23754211313738],[33.09693096930971,45.24767357675668],[33.08973089730898,45.25611646310608],[33.07893078930789,45.271313658535036],[33.068130681306826,45.27637939034469],[33.050130501305034,45.28144512215434],[33.042930429304306,45.284822276694086],[32.97812978129781,45.32534813117127],[32.942129421294226,45.342233903870095],[32.898928989289914,45.3540539447593],[32.75132751327513,45.364185408378574],[32.72972729727297,45.360808253838826],[32.71172711727118,45.3523653674894],[32.67572675726757,45.32534813117127],[32.66132661326614,45.320282399361645],[32.59292592925931,45.320282399361645],[32.57132571325715,45.32534813117127],[32.53532535325354,45.33885674933035],[32.513725137251384,45.34054532660022],[32.4849248492485,45.39457979923648],[32.481324813248136,45.40808841739553],[32.49572495724959,45.43510565371366],[32.52452524525245,45.458745735492016],[32.64332643326435,45.521223094477676],[32.66132661326614,45.52628882628733],[32.68652686526866,45.52628882628733],[32.70452704527045,45.53135455809698],[32.71892718927191,45.538108867176504],[32.73332733327334,45.54486317625603],[32.74412744127443,45.55330606260546],[32.75132751327513,45.56006037168498],[32.75852758527586,45.565126103494634],[32.77292772927731,45.56681468076451],[32.78372783727838,45.565126103494634],[32.80172801728017,45.56006037168498],[32.81252812528126,45.55837179441508],[32.82692826928269,45.56174894895486],[32.83052830528305,45.570191835304286],[32.82692826928269,45.578634721653685],[32.82332823328235,45.58707760800311],[32.82692826928269,45.59552049435251],[32.83052830528305,45.600586226162164],[32.83772837728378,45.60734053524169],[32.866528665286666,45.62929203975017],[32.93852938529386,45.663063585147825],[33.16173161731618,45.73567240775279],[33.176131761317635,45.74242671683231],[33.17973179731797,45.755935334991364],[33.176131761317635,45.75931248953114],[33.16533165331654,45.76268964407089],[33.158131581315814,45.76775537588054],[33.16173161731618,45.77957541676972],[33.168931689316906,45.78464114857937],[33.17973179731797,45.77957541676972],[33.19413194131943,45.76437822134079],[33.23013230132301,45.75086960318171],[33.26613266132662,45.75424675772149],[33.33813338133382,45.78632972584927],[33.37413374133743,45.796461189468545],[33.38133381333813,45.8032154985481],[33.410134101341015,45.82685558032645],[33.42453424534247,45.8302327348662],[33.46773467734678,45.850495662104805],[33.48213482134821,45.853872816644554],[33.48933489334894,45.85218423937468],[33.50733507335073,45.84374135302528],[33.51813518135182,45.8403641984855],[33.52893528935289,45.84205277575538],[33.55413554135541,45.84711850756503],[33.57933579335793,45.86738143480363],[33.59733597335975,45.877512898422935],[33.611736117361176,45.880890052962684],[33.618936189361904,45.88257863023256],[33.62973629736297,45.87920147569281],[33.64053640536406,45.87582432115303],[33.65133651336515,45.87075858934338],[33.65493654936549,45.864004280263856],[33.65853658536585,45.858938548454205],[33.669336693366944,45.858938548454205],[33.6909369093691,45.86062712572411],[33.694536945369464,45.872447166613284],[33.6909369093691,45.89608724839164],[33.694536945369464,45.91466159836034],[33.70893708937089,45.90959586655069],[33.72693726937271,45.916350175630214],[33.75933759337593,45.92310448470977],[33.77733777337775,45.92985879378929],[33.75933759337593,45.94167883467847],[33.74133741337414,45.948433143757995],[33.68373683736837,45.9585646073773],[33.65853658536585,45.95687603010742],[33.644136441364424,45.95349887556765],[33.64053640536406,45.94674456648812],[33.63333633336333,45.94505598921822],[33.618936189361904,45.95012172102787],[33.636936369363696,45.9686960709966],[33.64773647736479,45.98051611188578],[33.644136441364424,45.98558184369543],[33.63333633336333,45.98895899823518],[33.62973629736297,45.9957133073147],[33.636936369363696,46.005844770934004],[33.644136441364424,46.01428765728343],[33.64053640536406,46.02273054363283],[33.62973629736297,46.05650208903049],[33.62973629736297,46.068322129919665],[33.64053640536406,46.07845359353897],[33.64773647736479,46.090273634428144],[33.644136441364424,46.1054708298571],[33.611736117361176,46.14599668433428],[33.59733597335975,46.15612814795358],[33.57213572135723,46.14937383887403],[33.55053550535507,46.135865220714976],[33.53253532535325,46.122356602555925],[33.53253532535325,46.10715940712697],[33.55773557735577,46.095339366237795],[33.55773557735577,46.08689647988837],[33.53253532535325,46.08520790261849],[33.50733507335073,46.08014217080884],[33.49653496534967,46.068322129919665],[33.51453514535146,46.046370625411186],[33.50733507335073,46.046370625411186],[33.485734857348575,46.05312493449071],[33.42453424534247,46.05312493449071],[33.41373413734138,46.05819066630036],[33.384933849338495,46.08689647988837],[33.35613356133561,46.103782252587195],[33.33093330933309,46.10715940712697],[33.309333093330935,46.08689647988837],[33.30573305733057,46.09196221169802],[33.302133021330235,46.09365078896792],[33.29493294932951,46.09365078896792],[33.29133291332914,46.095339366237795],[33.30573305733057,46.1054708298571],[33.31653316533166,46.11897944801615],[33.31653316533166,46.130799488905325],[33.29493294932951,46.135865220714976],[33.21573215732158,46.127422334365576],[33.22293222932231,46.14093095252463],[33.226532265322675,46.15443957068368],[33.233732337323374,46.223671238748864],[33.21213212132122,46.206785466050064],[33.19413194131943,46.17807965246203],[33.176131761317635,46.152750993413804],[33.143731437314386,46.1426195297945],[33.13653136531366,46.14093095252463],[33.12213122131223,46.135865220714976],[33.11133111331114,46.135865220714976],[33.10413104131041,46.13755379798485],[33.082530825308254,46.14937383887403],[33.024930249302514,46.16963676611263],[33.032130321303214,46.14093095252463],[33.017730177301786,46.127422334365576],[32.91332913329134,46.11560229347637],[32.898928989289914,46.11560229347637],[32.891728917289186,46.117290870746274],[32.88092880928809,46.12066802528602],[32.87732877328773,46.12066802528602],[32.85212852128521,46.12066802528602],[32.84492844928451,46.12066802528602],[32.790927909279105,46.1341766434451],[32.765727657276585,46.135865220714976],[32.75132751327513,46.1324880661752],[32.715327153271545,46.12066802528602],[32.589325893258945,46.103782252587195],[32.57852578525785,46.10209367531732],[32.56772567725679,46.09702794350767],[32.54972549725497,46.08351932534862],[32.54252542525427,46.08014217080884],[32.50292502925029,46.07676501626909],[32.30132301323013,46.117290870746274],[32.279722797227976,46.127422334365576],[32.26892268922691,46.127422334365576],[32.261722617226184,46.127422334365576],[32.261722617226184,46.1324880661752],[32.25812258122582,46.144308107064404],[32.254522545225456,46.14937383887403],[32.25092250922509,46.15612814795358],[32.24732247322473,46.171325343382506],[32.24372243722439,46.17639107519216],[32.261722617226184,46.188211116081334],[32.26532265322655,46.19496542516086],[32.26892268922691,46.20509688878016],[32.24012240122403,46.19496542516086],[32.21492214922151,46.193276847890985],[32.18612186121862,46.19665400243076],[32.14292142921431,46.20847404331994],[32.128521285212855,46.21016262058981],[32.11412114121143,46.215228352399464],[32.078120781207815,46.24899989779712],[32.04932049320493,46.26588567049595],[32.01692016920171,46.25744278414652],[31.970119701197007,46.27601713411525],[31.887318873188747,46.31992014313218],[31.883718837188383,46.308100102243],[31.887318873188747,46.29459148408395],[31.89091890918911,46.28446002046465],[31.883718837188383,46.279394288655],[31.818918189181886,46.2810828659249],[31.800918009180094,46.28446002046465],[31.786517865178666,46.29290290681408],[31.77211772117721,46.30303437043335],[31.768517685176846,46.318231565862305],[31.77931779317794,46.331740184021356],[31.800918009180094,46.34187164764066],[31.81531815318155,46.348625956720184],[31.836918369183707,46.35031453399009],[31.89091890918911,46.34187164764066],[31.96651966519667,46.35031453399009],[31.977319773197735,46.35538026579974],[32.03132031320314,46.389151811197394],[32.04212042120423,46.39084038846727],[32.05652056520566,46.39084038846727],[32.06012060120602,46.39421754300702],[32.052920529205295,46.40603758389622],[32.00612006120062,46.44825201564328],[31.99171991719919,46.45331774745293],[31.95571955719558,46.451629170183054],[31.908919089190903,46.45669490199268],[31.77211772117721,46.495532179199984],[31.74691746917469,46.500597911009635],[31.725317253172534,46.500597911009635],[31.710917109171106,46.495532179199984],[31.69651696516965,46.48371213831081],[31.68931689316895,46.478646406501156],[31.685716857168586,46.470203520151756],[31.685716857168586,46.46176063380233],[31.685716857168586,46.429677665674575],[31.66411664116643,46.47189209742163],[31.656916569165702,46.478646406501156],[31.642516425164246,46.48202356104093],[31.523715237152373,46.56476384726517],[31.509315093150946,46.58840392904355],[31.541715417154165,46.56982957907482],[31.566915669156685,46.549566651836244],[31.58131581315814,46.54450092002659],[31.757717577175782,46.554632383645895],[31.79011790117903,46.54787807456634],[31.84771847718477,46.522549415518114],[31.851318513185134,46.522549415518114],[31.862118621186227,46.51917226097834],[31.94851948519485,46.51917226097834],[32.0349203492035,46.505663642819286],[32.09252092520927,46.51241795189881],[32.11052110521106,46.51241795189881],[32.22212222122221,46.495532179199984],[32.27612276122761,46.470203520151756],[32.31932319323195,46.465137788342105],[32.362523625236264,46.46682636561198],[32.39852398523985,46.478646406501156],[32.42732427324273,46.49890933373976],[32.40932409324094,46.51748368370846],[32.43452434524346,46.54281234275672],[32.506525065250656,46.5833381972339],[32.52452524525245,46.5934696608532],[32.57132571325715,46.59684681539295],[32.589325893258945,46.603601124472476],[32.60372603726037,46.61542116536165],[32.61812618126183,46.62386405171108],[32.63252632526326,46.63230693806048],[32.64692646926471,46.64919271075931],[32.62172621726219,46.64243840167978],[32.59292592925931,46.62892978352073],[32.56772567725679,46.61879831990143],[32.54252542525427,46.62217547444121],[32.40932409324094,46.568141001804946],[32.337323373233744,46.56138669272542],[32.26892268922691,46.58840392904355],[32.254522545225456,46.60528970174238],[32.24732247322473,46.60697827901225],[32.236522365223664,46.603601124472476],[32.21852218522187,46.590092506313425],[32.211322113221144,46.58840392904355],[32.20052200522005,46.58671535177365],[32.178921789217895,46.581649619964],[32.17172171721717,46.57996104269412],[32.14652146521465,46.55969811545555],[32.13212132121322,46.56982957907482],[32.11772117721179,46.60697827901225],[32.09972099720997,46.61542116536165],[32.03852038520387,46.62386405171108],[32.02412024120241,46.62892978352073],[32.00972009720098,46.639061247140035],[31.99171991719919,46.65763559710874],[31.9809198091981,46.67789852434731],[31.97371973719737,46.69478429704614],[31.970119701197007,46.71335864701487],[31.962919629196307,46.72686726517392],[31.94851948519485,46.742064460602876],[31.94131941319415,46.758950233301704],[31.937719377193787,46.80116466504876],[31.95571955719558,46.83155905590664],[31.9809198091981,46.86026486949464],[32.002520025200255,46.8957249921622],[32.00612006120062,46.91598791940078],[32.00612006120062,46.93118511482973],[31.995319953199527,46.93962800117913],[31.944919449194487,46.946382310258684],[31.934119341193423,46.954825196608084],[31.937719377193787,46.968333814767135],[31.970119701197007,46.99872820562504],[31.977319773197735,47.008859669244345],[31.970119701197007,47.01561397832387],[31.944919449194487,47.01899113286362],[31.901719017190175,47.01392540105397],[31.88011880118802,47.01561397832387],[31.86571865718659,47.02574544194317],[31.894518945189446,47.06795987369023],[31.89811898118981,47.093288532738455],[31.883718837188383,47.11861719178671],[31.869318693186926,47.12706007813611],[31.8549185491855,47.13043723267589],[31.844118441184406,47.133814387215665],[31.836918369183707,47.14901158264459],[31.833318333183342,47.16758593261329],[31.833318333183342,47.1794059735025],[31.82971829718298,47.18616028258202],[31.81531815318155,47.196291746201325],[31.757717577175782,47.2165546734399],[31.74691746917469,47.22837471432908],[31.754117541175418,47.24863764156768],[31.750517505175054,47.25539195064721],[31.743317433174326,47.258769105186985],[31.736117361173626,47.25539195064721],[31.725317253172534,47.236817600678506],[31.72171721717217,47.231751868868855],[31.725317253172534,47.21993182797968],[31.743317433174326,47.209800364360376],[31.761317613176146,47.199668900741074],[31.80451804518046,47.19291459166155],[31.81531815318155,47.18109455077237],[31.81531815318155,47.12199434632646],[31.818918189181886,47.11692861451684],[31.844118441184406,47.11355145997706],[31.851318513185134,47.10848572816741],[31.8549185491855,47.10341999635776],[31.862118621186227,47.10173141908788],[31.87291872918729,47.093288532738455],[31.86571865718659,47.07640276003963],[31.851318513185134,47.0612055646107],[31.844118441184406,47.05445125553118],[31.836918369183707,47.008859669244345],[31.869318693186926,46.99872820562504],[31.912519125191267,47.00379393743469],[31.94851948519485,46.99872820562504],[31.91611916119163,46.97677670111656],[31.90531905319054,46.959890928417735],[31.89811898118981,46.94300515571891],[31.908919089190903,46.92611938302008],[31.926919269192695,46.9227422284803],[31.94851948519485,46.927807960289954],[31.96651966519667,46.93625084663938],[31.97371973719737,46.91598791940078],[31.962919629196307,46.8855935285429],[31.944919449194487,46.86026486949464],[31.92331923319233,46.848444828605466],[31.89811898118981,46.843379096795815],[31.876518765187654,46.82818190136689],[31.86571865718659,46.80623039685841],[31.86571865718659,46.77921316054028],[31.901719017190175,46.745441615142624],[31.90531905319054,46.7386873060631],[31.89811898118981,46.69478429704614],[31.901719017190175,46.67620994707744],[31.908919089190903,46.66945563799791],[31.908919089190903,46.66270132891839],[31.89811898118981,46.64919271075931],[31.89091890918911,46.64412697894966],[31.869318693186926,46.63230693806048],[31.858518585185863,46.62892978352073],[31.81531815318155,46.62386405171108],[31.77211772117721,46.62724120625083],[31.674916749167494,46.652569865299085],[31.61371613716139,46.64919271075931],[31.59571595715957,46.64243840167978],[31.58851588515887,46.62892978352073],[31.577715777157778,46.617109742631555],[31.55611556115562,46.61542116536165],[31.548915489154894,46.61879831990143],[31.534515345153466,46.62724120625083],[31.523715237152373,46.62892978352073],[31.50571505715058,46.62724120625083],[31.491314913149125,46.62892978352073],[31.484114841148426,46.63230693806048],[31.48051480514806,46.64581555621956],[31.491314913149125,46.66270132891839],[31.54531545315453,46.72686726517392],[31.559715597155986,46.7488187696824],[31.559715597155986,46.758950233301704],[31.57051570515705,46.76570454238123],[31.617316173161726,46.812984705937936],[31.606516065160662,46.82649332409699],[31.599315993159934,46.81973901501746],[31.592115921159206,46.80623039685841],[31.584915849158506,46.794410355969234],[31.577715777157778,46.78934462415958],[31.55611556115562,46.78427889234993],[31.548915489154894,46.77921316054028],[31.541715417154165,46.77414742873063],[31.523715237152373,46.75388450149205],[31.523715237152373,46.750507346952276],[31.52011520115201,46.74713019241253],[31.509315093150946,46.745441615142624],[31.49491494914949,46.750507346952276],[31.48051480514806,46.758950233301704],[31.466114661146605,46.78427889234993],[31.45531455314554,46.79609893323911],[31.440914409144085,46.80116466504876],[31.451714517145177,46.77583600600053],[31.45531455314554,46.76908169692098],[31.45531455314554,46.75388450149205],[31.46251462514627,46.7488187696824],[31.46971469714697,46.745441615142624],[31.502115021150217,46.7285558424438],[31.50571505715058,46.7201129560944],[31.498514985149853,46.70829291520522],[31.48051480514806,46.688029987966615],[31.476914769147697,46.682964256156964],[31.46251462514627,46.674521369807564],[31.43011430114302,46.63737266987013],[31.415714157141565,46.62892978352073],[31.397713977139773,46.625552628980955],[31.350913509135097,46.60866685628213],[31.33651336513367,46.6019125472026],[31.322113221132213,46.60697827901225],[31.296912969129693,46.60866685628213],[31.282512825128265,46.61542116536165],[31.275312753127537,46.60697827901225],[31.257312573125745,46.617109742631555],[31.18531185311855,46.62892978352073],[31.16011160111603,46.62892978352073],[31.10971109711099,46.617109742631555],[31.055710557105584,46.612044010821904],[31.012510125101272,46.603601124472476],[30.990909909099088,46.6019125472026],[30.983709837098388,46.59684681539295],[30.958509585095868,46.5833381972339],[30.95130951309514,46.5833381972339],[30.940509405094048,46.58840392904355],[30.92610926109262,46.585026774503774],[30.86850868508685,46.55632096091577],[30.854108541085424,46.55294380637599],[30.81090810908111,46.55969811545555],[30.803708037080384,46.55969811545555],[30.789307893078927,46.55294380637599],[30.76050760507607,46.52423799278799],[30.753307533075343,46.51579510643859],[30.756907569075707,46.50228648827951],[30.7749077490775,46.47695782923128],[30.782107821078228,46.45669490199268],[30.78570785707859,46.45669490199268],[30.79290792907929,46.451629170183054],[30.796507965079655,46.4465634383734],[30.79290792907929,46.443186283833626],[30.789307893078927,46.44149770656375],[30.78570785707859,46.4364319747541],[30.782107821078228,46.43136624294445],[30.7749077490775,46.40097185208657],[30.771307713077135,46.39590612027692],[30.731707317073187,46.35875742033949],[30.713707137071367,46.348625956720184],[30.65970659706599,46.35031453399009],[30.652506525065263,46.345248802180436],[30.656106561065627,46.33849449310091],[30.677706777067783,46.32836302948161],[30.68490684906851,46.31992014313218],[30.688506885068847,46.309788679512906],[30.681306813068147,46.2996572158936],[30.652506525065263,46.25913136141642],[30.58410584105843,46.18989969335124],[30.562505625056247,46.1611938797632],[30.54810548105482,46.14768526160415],[30.53370533705339,46.1426195297945],[30.5229052290523,46.1341766434451],[30.504905049050507,46.09365078896792],[30.494104941049414,46.08014217080884],[30.371703717037178,45.997401884584605],[30.260102601026006,45.89608724839164],[30.20610206102063,45.855561393914456],[30.13770137701377,45.8201012712469],[30.141301413014133,45.83360988940598],[30.134101341013405,45.88933293931211],[30.126901269012706,45.891021516581986],[30.119701197011977,45.88426720750246],[30.108901089010885,45.87582432115303],[30.10530105301055,45.864004280263856],[30.101701017010186,45.836987043945726],[30.101701017010186,45.8302327348662],[30.09810098100982,45.823478425786675],[30.09810098100982,45.818412693977024],[30.094500945009457,45.815035539437275],[30.08730087300873,45.81334696216737],[30.083700837008365,45.815035539437275],[30.08010080100803,45.8201012712469],[30.0729007290073,45.8217898485168],[30.069300693006937,45.81672411670715],[30.06210062100621,45.81334696216737],[30.015300153001533,45.8403641984855],[29.990099900999013,45.84711850756503],[29.968499684996857,45.83867562121563],[29.96129961299613,45.818412693977024],[29.957699576995765,45.79477261219867],[29.95409954099543,45.77113253042032],[29.943299432994337,45.782952571309494],[29.932499324993245,45.793084034928796],[29.932499324993245,45.79983834400832],[29.939699396993973,45.809969807627624],[29.93609936099361,45.81672411670715],[29.925299252992545,45.81334696216737],[29.918099180991817,45.79983834400832],[29.918099180991817,45.782952571309494],[29.92169921699218,45.76944395315044],[29.92889928899291,45.75931248953114],[29.939699396993973,45.75086960318171],[29.932499324993245,45.72385236686361],[29.92889928899291,45.733983830482885],[29.918099180991817,45.74073813956244],[29.89649896498966,45.75086960318171],[29.89649896498966,45.755935334991364],[29.89649896498966,45.75931248953114],[29.89649896498966,45.76437822134079],[29.889298892988933,45.76437822134079],[29.882098820988205,45.76268964407089],[29.87849878498787,45.757623912261266],[29.87849878498787,45.75424675772149],[29.874898748987505,45.75086960318171],[29.849698496984985,45.75086960318171],[29.824498244982465,45.747492448641964],[29.80289802898031,45.73736098502266],[29.79569795697958,45.71709805778406],[29.80289802898031,45.703589439625006],[29.817298172981737,45.698523707815355],[29.842498424984257,45.690080821465955],[29.856898568985685,45.67994935784665],[29.864098640986413,45.671506471497224],[29.86049860498605,45.668129316957476],[29.842498424984257,45.663063585147825],[29.82809828098283,45.6546206987984],[29.81009810098101,45.64786638971887],[29.788497884978852,45.6546206987984],[29.78489784897849,45.649554966988774],[29.78489784897849,45.646177812449],[29.78489784897849,45.64280065790922],[29.788497884978852,45.636046348829694],[29.774097740977425,45.62929203975017],[29.74529745297454,45.62253773067064],[29.734497344973448,45.614094844321215],[29.734497344973448,45.641112080639346],[29.723697236972384,45.668129316957476],[29.705697056970564,45.68839224419605],[29.684096840968408,45.69683513054548],[29.684096840968408,45.703589439625006],[29.680496804968044,45.75086960318171],[29.684096840968408,45.76775537588054],[29.691296912969136,45.774509684960066],[29.6948969489695,45.78126399403962],[29.684096840968408,45.793084034928796],[29.680496804968044,45.79814976673845],[29.67689676896771,45.79983834400832],[29.673296732967344,45.801526921278196],[29.65169651696519,45.81334696216737],[29.648096480964824,45.818412693977024],[29.64449644496446,45.82685558032645],[29.637296372963732,45.82685558032645],[29.633696336963368,45.8217898485168],[29.630096300963004,45.81334696216737],[29.633696336963368,45.80659265308785],[29.648096480964824,45.793084034928796],[29.65169651696519,45.78970688038902],[29.648096480964824,45.78126399403962],[29.630096300963004,45.76268964407089],[29.622896228962304,45.75086960318171],[29.622896228962304,45.73567240775279],[29.626496264962668,45.72891809867323],[29.630096300963004,45.72216378959371],[29.637296372963732,45.71034374870453],[29.604896048960484,45.69176939873583],[29.597695976959784,45.65293212152852],[29.597695976959784,45.60396338070191],[29.590495904959056,45.55837179441508],[29.615696156961576,45.54992890806568],[29.630096300963004,45.546551753525904],[29.648096480964824,45.54486317625603],[29.666096660966616,45.54824033079581],[29.680496804968044,45.55499463987533],[29.705697056970564,45.573568989844034],[29.6948969489695,45.56174894895486],[29.662496624966252,45.52628882628733],[29.648096480964824,45.5178459399379],[29.637296372963732,45.51446878539815],[29.630096300963004,45.50433732177885],[29.626496264962668,45.49589443542942],[29.61929619296194,45.4908287036198],[29.604896048960484,45.48745154908002],[29.604896048960484,45.47900866273062],[29.622896228962304,45.453680003682365],[29.630096300963004,45.44692569460284],[29.640896408964096,45.44185996279319],[29.65169651696519,45.44354854006306],[29.655296552965524,45.45199142641249],[29.655296552965524,45.46381146730167],[29.655296552965524,45.47394293092097],[29.673296732967344,45.47732008546072],[29.673296732967344,45.453680003682365],[29.67689676896771,45.45030284914259],[29.680496804968044,45.45030284914259],[29.687696876968772,45.453680003682365],[29.684096840968408,45.45705715822214],[29.6948969489695,45.45536858095224],[29.70209702097023,45.45705715822214],[29.709297092970928,45.45199142641249],[29.712897128971292,45.43679423098354],[29.72009720097202,45.45199142641249],[29.723697236972384,45.46887719911132],[29.730897308973084,45.475631508190844],[29.748897488974904,45.46381146730167],[29.756097560975604,45.44692569460284],[29.756097560975604,45.42835134463414],[29.748897488974904,45.41484272647506],[29.72729727297275,45.41484272647506],[29.741697416974176,45.404711262855756],[29.748897488974904,45.38613691288705],[29.75249752497527,45.364185408378574],[29.756097560975604,45.32197097663152],[29.756097560975604,45.31352809028209],[29.75249752497527,45.30339662666282],[29.741697416974176,45.28988800850374],[29.741697416974176,45.28144512215434],[29.730897308973084,45.257805040375985],[29.72729727297275,45.24767357675668],[29.72729727297275,45.239230690407254],[29.730897308973084,45.23754211313738],[29.72729727297275,45.23754211313738],[29.709297092970928,45.22403349497833],[29.691296912969136,45.217279185898775],[29.673296732967344,45.21390203135903],[29.658896588965888,45.2155906086289],[29.65169651696519,45.217279185898775],[29.622896228962304,45.217279185898775],[29.622896228962304,45.21052487681925],[29.637296372963732,45.195327681390324],[29.648096480964824,45.1784419086915],[29.666096660966616,45.16493329053242],[29.698496984969864,45.16155613599267],[29.67689676896771,45.14467036329384],[29.666096660966616,45.11765312697571],[29.655296552965524,45.02815853167192],[29.65169651696519,45.01127275897309],[29.637296372963732,44.98425552265499],[29.633696336963368,44.96905832722604],[29.633696336963368,44.95386113179708],[29.630096300963004,44.93866393636813],[29.622896228962304,44.928532472748856],[29.630096300963004,44.90826954551025],[29.604896048960484,44.87956373192225],[29.61929619296194,44.860989381953544],[29.612096120961212,44.84916934106437],[29.604896048960484,44.84579218652459],[29.59409594095942,44.84410360925472],[29.583295832958328,44.84072645471494],[29.5688956889569,44.825529259286014],[29.56169561695617,44.82046352747636],[29.54369543695438,44.82721783655589],[29.532895328953288,44.825529259286014],[29.522095220952224,44.82215210474624],[29.51129511295113,44.82046352747636],[29.3168931689317,44.798512022967884],[29.1908919089191,44.79344629115823],[29.154891548915487,44.785003404808805],[29.054090540905406,44.73434608671235],[29.02529025290255,44.714083159473745],[29.00009000090003,44.68875450042552],[28.992889928899302,44.69719738677492],[28.996489964899666,44.71070600493397],[28.98208982089821,44.7292803549027],[28.97488974889751,44.744477550331624],[28.996489964899666,44.75123185941118],[29.021690216902186,44.754609013950926],[29.05769057690577,44.76811763210998],[29.097290972909747,44.77487194118953],[29.118891188911903,44.78669198207871],[29.136891368913695,44.803577754777535],[29.144091440914423,44.82721783655589],[29.14049140491406,44.839037877445065],[29.126091260912602,44.852546495604116],[29.097290972909747,44.874498000112595],[29.10089100891011,44.85930080468367],[29.104491044910446,44.85085791833424],[29.104491044910446,44.84072645471494],[29.086490864908654,44.84241503198484],[29.072090720907227,44.83566072290529],[29.061290612906134,44.83228356836554],[29.046890468904706,44.847480763794465],[29.043290432904342,44.866055113763196],[29.043290432904342,44.92515531820908],[29.05049050490507,44.945418245447684],[29.097290972909747,44.95723828633686],[29.111691116911175,44.97074690449591],[29.10089100891011,44.980878368115214],[29.05769057690577,45.00114129535379],[29.046890468904706,45.00451844989357],[29.01449014490146,45.00451844989357],[28.98208982089821,45.012961336242995],[28.971289712897146,45.01127275897309],[28.967689676896782,45.00620702716344],[28.967689676896782,44.99607556354417],[28.960489604896054,44.98763267719474],[28.94968949689499,44.98425552265499],[28.928089280892806,44.98256694538509],[28.917289172891742,44.97918979084534],[28.88128881288813,44.95554970906696],[28.870488704887066,44.94372966817778],[28.863288632886338,44.92177816366933],[28.863288632886338,44.91671243185968],[28.87408874088743,44.91164670005003],[28.877688776887766,44.9048923909705],[28.87408874088743,44.89982665916085],[28.870488704887066,44.896449504621074],[28.866888668886702,44.8947609273512],[28.863288632886338,44.89138377281142],[28.866888668886702,44.88294088646202],[28.87408874088743,44.874498000112595],[28.88128881288813,44.869432268302944],[28.902889028890286,44.86267795922342],[28.953289532895326,44.82721783655589],[28.938889388893898,44.817086372936586],[28.935289352893534,44.81370921839684],[28.92448924489247,44.81370921839684],[28.935289352893534,44.806954909317284],[28.938889388893898,44.806954909317284],[28.938889388893898,44.798512022967884],[28.92448924489247,44.79344629115823],[28.92448924489247,44.78331482753893],[28.93168931689317,44.77318336391963],[28.946089460894626,44.76474047757023],[28.935289352893534,44.75967474576058],[28.92448924489247,44.7579861684907],[28.877688776887766,44.7562975912208],[28.870488704887066,44.75292043668105],[28.809288092880934,44.727591777632796],[28.79848798487987,44.72083746855327],[28.787687876878778,44.705640273124345],[28.787687876878778,44.69382023223514],[28.794887948879506,44.687065923155615],[28.809288092880934,44.69719738677492],[28.80568805688057,44.683688768615866],[28.784087840878414,44.68031161407609],[28.78048780487805,44.665114418647136],[28.784087840878414,44.64991722321821],[28.79128791287914,44.64485149140856],[28.845288452884546,44.651605800488085],[28.870488704887066,44.66173726410739],[28.892088920889222,44.67693445953631],[28.913689136891378,44.69719738677492],[28.89928899288995,44.71746031401352],[28.967689676896782,44.700574541314694],[28.98208982089821,44.692131654965266],[28.989289892898938,44.67524588226644],[28.978489784897846,44.65498295502786],[28.960489604896054,44.63978575959891],[28.938889388893898,44.63472002778926],[28.95688956889569,44.651605800488085],[28.971289712897146,44.67018015045679],[28.97488974889751,44.687065923155615],[28.953289532895326,44.69719738677492],[28.953289532895326,44.68875450042552],[28.960489604896054,44.68200019134596],[28.95688956889569,44.678623036806215],[28.938889388893898,44.67524588226644],[28.92448924489247,44.68200019134596],[28.917289172891742,44.68200019134596],[28.913689136891378,44.68031161407609],[28.910089100891014,44.67524588226644],[28.902889028890286,44.66849157318691],[28.884888848888494,44.65836010956761],[28.852488524885246,44.63472002778926],[28.834488344883454,44.62796571870973],[28.787687876878778,44.60939136874103],[28.77328773287735,44.6009484823916],[28.79128791287914,44.624588564169954],[28.794887948879506,44.63472002778926],[28.78048780487805,44.63640860505913],[28.76608766087662,44.63303145051938],[28.758887588875893,44.62627714143986],[28.75528755287553,44.61445710055065],[28.76608766087662,44.61445710055065],[28.758887588875893,44.60432563693138],[28.76608766087662,44.59588275058195],[28.77328773287735,44.5908170187723],[28.787687876878778,44.58575128696265],[28.74808748087483,44.57730840061325],[28.733687336873373,44.567176936993945],[28.733687336873373,44.55197974156499],[28.737287372873737,44.55704547337464],[28.744487444874466,44.562111205184294],[28.74808748087483,44.56548835972407],[28.762487624876258,44.56042262791442],[28.77328773287735,44.55197974156499],[28.76608766087662,44.53847112340594],[28.751687516875165,44.51314246435771],[28.744487444874466,44.48612522803958],[28.751687516875165,44.46586230080098],[28.758887588875893,44.46586230080098],[28.76608766087662,44.47261660988053],[28.77328773287735,44.48443665076971],[28.776887768877685,44.50807673254806],[28.787687876878778,44.51483104162759],[28.809288092880934,44.52496250524689],[28.838088380883818,44.553668318834895],[28.85608856088561,44.567176936993945],[28.87408874088743,44.57393124607347],[28.892088920889222,44.57730840061325],[28.90648906489065,44.58743986423255],[28.913689136891378,44.6009484823916],[28.92448924489247,44.621211409630206],[28.917289172891742,44.6009484823916],[28.910089100891014,44.58406270969277],[28.845288452884546,44.49287953711911],[28.79848798487987,44.46755087807088],[28.70488704887049,44.38143343730684],[28.69768697686979,44.357793355528486],[28.694086940869425,44.34597331463931],[28.67968679686797,44.352727623718835],[28.66528665286654,44.34766189190921],[28.650886508865085,44.339219005559784],[28.64008640086402,44.32908754194048],[28.636486364863657,44.31557892378143],[28.632886328863293,44.30207030562238],[28.62928629286293,44.26492160568495],[28.636486364863657,44.251412987525896],[28.650886508865085,44.23115006028729],[28.66528665286654,44.19906709215951],[28.668886688866905,44.183869896730585],[28.66528665286654,44.175427010381156],[28.67248672486727,44.16867270130163],[28.658086580865813,44.17373843311128],[28.64728647286475,44.17204985584141],[28.636486364863657,44.16360696949198],[28.62928629286293,44.15516408314258],[28.636486364863657,44.13658973317385],[28.65448654486545,44.05553802421949],[28.67248672486727,44.00319212885313],[28.67248672486727,43.99812639704348],[28.668886688866905,43.98968351069408],[28.661686616866177,43.979552047074776],[28.65448654486545,43.960977697106074],[28.64008640086402,43.93227188351804],[28.636486364863657,43.91876326535899],[28.6148861488615,43.884991719961334],[28.607686076860773,43.87486025634203],[28.593285932859345,43.819137206435926],[28.586085860858617,43.8106943200865],[28.586085860858617,43.800562856467195],[28.58968589685898,43.792119970117795],[28.586085860858617,43.78198850649849],[28.582485824858253,43.77185704287919],[28.582485824858253,43.76172557925992],[28.582485824858253,43.751594115640614],[28.57888578885789,43.74146265202131],[28.575285752857525,43.72795403386226],[28.57168571685719,43.60637647043069],[28.575285752857525,43.59286785227164],[28.586085860858617,43.57598207957281],[28.59688596885971,43.564162038683634],[28.60408604086041,43.55234199779446],[28.60408604086041,43.53883337963538],[28.593285932859345,43.511816143317276],[28.57888578885789,43.48142175245937],[28.560885608856097,43.45440451614124],[28.54648546485467,43.44258447525206],[28.535685356853577,43.43920732071231],[28.4888848888489,43.40712435258453],[28.47808478084781,43.39699288896523],[28.474484744847445,43.38348427080618],[28.474484744847445,43.36659849810735],[28.460084600846017,43.3801071162664],[28.41328413284134,43.39868146623513],[28.406084060840612,43.40543577531466],[28.39528395283955,43.41387866166406],[28.37008370083703,43.422321548013485],[28.323283232832324,43.42907585709301],[28.298082980829804,43.425698702553234],[28.26208262082622,43.41050150712431],[28.244082440824428,43.40712435258453],[28.17928179281793,43.41050150712431],[28.157681576815776,43.40712435258453],[28.118081180811828,43.39192715715558],[28.092880928809308,43.363221343567574],[28.08568085680858,43.354778457218174],[28.031680316803175,43.248398089215556],[28.017280172801748,43.23320089378663],[27.999279992799927,43.22306943016733],[27.930879308793095,43.20956081200825],[27.920079200792003,43.204495080198626],[27.912879128791303,43.20280650292872],[27.905679056790575,43.20280650292872],[27.905679056790575,43.1960521938492],[27.938079380793823,43.17578926661059],[27.945279452794523,43.16903495753107],[27.945279452794523,43.15721491664189],[27.923679236792367,43.11331190762493],[27.912879128791303,43.06434316679835],[27.905679056790575,43.055900280448924],[27.894878948789483,43.0491459713694],[27.887678876788783,43.04239166228987],[27.88407884078842,43.030571621400696],[27.88407884078842,43.00862011689222],[27.90207902079021,42.963028530605385],[27.905679056790575,42.94276560336678],[27.898478984789847,42.8752225125715],[27.905679056790575,42.860025317142544],[27.88407884078842,42.84820527625337],[27.88407884078842,42.83131950355454],[27.891278912789147,42.811056576315934],[27.898478984789847,42.78403933999783],[27.898478984789847,42.73675917644111],[27.894878948789483,42.718184826472395],[27.891278912789147,42.70974194012298],[27.840878408784107,42.70805336285309],[27.786877868778703,42.71480767193263],[27.743677436774362,42.71649624920251],[27.7328773287733,42.71480767193263],[27.72567725677257,42.70805336285309],[27.718477184771842,42.69454474469404],[27.714877148771507,42.68441328107474],[27.718477184771842,42.67428181745545],[27.72567725677257,42.66752750837591],[27.740077400774027,42.660773199296386],[27.711277112771143,42.657396044756624],[27.668076680766802,42.64388742659756],[27.646476464764646,42.640510272057796],[27.628476284762854,42.628690231168605],[27.63207632076322,42.60336157212038],[27.642876428764282,42.57465575853236],[27.65007650076501,42.557769985833545],[27.635676356763582,42.56452429491307],[27.542075420754202,42.56621287218296],[27.513275132751346,42.552704254023894],[27.49887498874989,42.5324413267853],[27.49167491674916,42.50711266773706],[27.480874808748098,42.483472585958694],[27.462874628746306,42.490226895038234],[27.452074520745214,42.48009543141893],[27.452074520745214,42.46489823598999],[27.46647466474664,42.45645534964058],[27.462874628746306,42.448012463291164],[27.462874628746306,42.44294673148151],[27.46647466474664,42.42774953605257],[27.470074700747006,42.43619242240199],[27.470074700747006,42.43788099967186],[27.46647466474664,42.44125815421164],[27.47367473674737,42.46152108145023],[27.502475024750254,42.43788099967186],[27.513275132751346,42.4345038451321],[27.527675276752774,42.44294673148151],[27.534875348753502,42.45476677237069],[27.545675456754566,42.45983250418034],[27.563675636756386,42.448012463291164],[27.570875708757086,42.458143926910466],[27.578075780757814,42.45645534964058],[27.588875888758906,42.45138961783093],[27.596075960759606,42.448012463291164],[27.610476104761062,42.45138961783093],[27.621276212762126,42.45645534964058],[27.628476284762854,42.458143926910466],[27.642876428764282,42.45645534964058],[27.642876428764282,42.44970104056105],[27.639276392763946,42.44970104056105],[27.635676356763582,42.448012463291164],[27.642876428764282,42.431126690592336],[27.653676536765374,42.41930664970316],[27.668076680766802,42.4159294951634],[27.693276932769322,42.42774953605257],[27.693276932769322,42.41930664970316],[27.70047700477005,42.41424091789351],[27.70767707677078,42.41255234062362],[27.718477184771842,42.41424091789351],[27.718477184771842,42.40748660881398],[27.714877148771507,42.405798031544094],[27.696876968769686,42.40073229973444],[27.704077040770414,42.390600836115155],[27.711277112771143,42.38891225884527],[27.718477184771842,42.38722368157539],[27.711277112771143,42.37709221795609],[27.70767707677078,42.363583599797025],[27.714877148771507,42.348386404368085],[27.72567725677257,42.33825494074878],[27.740077400774027,42.33487778620902],[27.75087750877509,42.33487778620902],[27.765277652776547,42.33825494074878],[27.779677796777975,42.33825494074878],[27.779677796777975,42.333189208939146],[27.77607776077761,42.326434899859606],[27.77607776077761,42.321369168049955],[27.779677796777975,42.31630343624032],[27.786877868778703,42.31123770443067],[27.761677616776183,42.29604050900171],[27.75087750877509,42.27746615903301],[27.754477544775455,42.258891809064295],[27.779677796777975,42.243694613635355],[27.77607776077761,42.24031745909559],[27.772477724777247,42.23525172728594],[27.80847808478086,42.218365954587114],[27.815678156781587,42.21161164550759],[27.819278192781923,42.20485733642805],[27.830078300783015,42.19472587280876],[27.844478444784443,42.18628298645935],[27.855278552785535,42.181217254649695],[27.855278552785535,42.17784010010993],[27.85167851678517,42.16939721376052],[27.848078480784807,42.16770863649063],[27.880478804788055,42.15420001833158],[27.887678876788783,42.14744570925204],[27.905679056790575,42.120428472933924],[27.956079560795615,42.09509981388568],[27.963279632796343,42.08496835026638],[27.974079740797407,42.07483688664709],[27.9848798487985,42.071459732107314],[27.981279812798135,42.061328268488026],[27.988479884798863,42.051196804868724],[27.995679956799563,42.0444424957892],[28.006480064800655,42.03768818670967],[28.006480064800655,42.03262245490002],[28.006480064800655,42.03093387763013],[28.00288002880029,42.03093387763013],[27.999279992799927,42.03093387763013],[28.01008010080102,42.020802414010845],[28.017280172801748,42.00898237312167],[28.020880208802083,41.993785177692715],[28.013680136801383,41.98196513680354],[28.017280172801748,41.971833673184236],[28.031680316803175,41.92455350962753],[28.031680316803175,41.91442204600823],[28.03528035280354,41.911044891468464],[28.042480424804268,41.90429058238894],[28.046080460804603,41.8975362733094],[28.046080460804603,41.89078196422987],[28.03528035280354,41.88571623242022],[28.024480244802447,41.88740480969011],[28.006480064800655,41.89247054149976],[27.992079920799227,41.89247054149976],[27.97767977679777,41.88740480969011],[27.970479704797043,41.873896191531045],[27.966879668796707,41.848567532482804],[27.970479704797043,41.82155029616469],[27.988479884798863,41.80466452346586],[28.006480064800655,41.78777875076703],[28.020880208802083,41.770892978068204],[28.038880388803904,41.72530139178137],[28.05328053280533,41.71179277362231],[28.071280712807123,41.69997273273313],[28.07848078480785,41.691529846383716],[28.082080820808216,41.681398382764414],[28.08568085680858,41.67970980549454],[28.089280892808944,41.67633265095478],[28.089280892808944,41.671266919145125],[28.08568085680858,41.66788976460536],[28.082080820808216,41.66788976460536],[28.074880748807487,41.666201187335474],[28.074880748807487,41.66113545552582],[28.082080820808216,41.644249682826995],[28.096480964809643,41.62736391012817],[28.114481144811464,41.61216671469923],[28.143281432814348,41.59865809654016],[28.157681576815776,41.5851494783811],[28.17928179281793,41.55813224206298],[28.233282332823336,41.519294964855675],[28.384483844838456,41.44668614225073],[28.600486004860045,41.37745447418553],[28.910089100891014,41.26600837437327],[29.00729007290073,41.24912260167444],[29.01449014490146,41.24743402440457],[29.01449014490146,41.24574544713468],[29.018090180901822,41.24405686986479],[29.02529025290255,41.24236829259492],[29.03249032490325,41.24574544713468],[29.03969039690398,41.254188333484095],[29.046890468904706,41.25587691075398],[29.068490684906862,41.254188333484095],[29.093690936909383,41.24574544713468],[29.10809108091081,41.23561398351539],[29.10089100891011,41.21028532446715],[29.086490864908654,41.191710974498434],[29.068490684906862,41.17482520179961],[29.05049050490507,41.16638231545019],[29.03969039690398,41.16469373818032],[29.043290432904342,41.15793942910078],[29.05049050490507,41.149496542751365],[29.05769057690577,41.14105365640195],[29.0648906489065,41.134299347322425],[29.0648906489065,41.13261077005254],[29.072090720907227,41.13092219278266],[29.068490684906862,41.12416788370312],[29.0648906489065,41.119102151893486],[29.061290612906134,41.119102151893486],[29.05769057690577,41.09883922465488],[29.05049050490507,41.08195345195605],[29.043290432904342,41.066756256527114],[29.03249032490325,41.05324763836805],[29.021690216902186,41.04818190655841],[29.00729007290073,41.044804752018635],[28.996489964899666,41.039739020209],[28.989289892898938,41.031296133859584],[28.989289892898938,41.02623040204993],[28.989289892898938,41.02116467024028],[28.989289892898938,41.01778751570052],[28.992889928899302,41.014410361160756],[28.992889928899302,41.00765605208122],[28.985689856898574,41.00259032027158],[28.98208982089821,41.00090174300169],[28.960489604896054,41.00259032027158],[28.953289532895326,41.009344629351105],[28.946089460894626,41.009344629351105],[28.938889388893898,41.00765605208122],[28.93168931689317,40.99752458846193],[28.928089280892806,40.99583601119204],[28.917289172891742,40.994147433922166],[28.89928899288995,40.98401597030286],[28.859688596885974,40.97726166122334],[28.84888848888491,40.97557308395345],[28.845288452884546,40.97219592941369],[28.841688416884182,40.967130197604035],[28.834488344883454,40.96375304306427],[28.82368823688239,40.962064465794384],[28.79848798487987,40.962064465794384],[28.787687876878778,40.96544162033415],[28.78048780487805,40.97219592941369],[28.769687696876986,40.97895023849321],[28.744487444874466,40.9806388157631],[28.625686256862565,40.968818774873924],[28.59688596885971,40.97726166122334],[28.60408604086041,41.009344629351105],[28.593285932859345,41.01947609297039],[28.586085860858617,41.02285324751017],[28.575285752857525,41.02285324751017],[28.582485824858253,41.04649332928852],[28.57168571685719,41.066756256527114],[28.55368553685537,41.08026487468618],[28.52848528485285,41.08533060649583],[28.532085320853213,41.07013341106688],[28.55368553685537,41.05324763836805],[28.560885608856097,41.03636186566922],[28.56448564485646,41.02623040204993],[28.560885608856097,41.01272178389087],[28.55368553685537,40.99752458846193],[28.542885428854305,40.989081702112514],[28.51408514085142,40.99245885665228],[28.460084600846017,41.03298471112946],[28.434884348843497,41.04311617474876],[28.40248402484025,41.04649332928852],[28.334083340833416,41.066756256527114],[28.298082980829804,41.07013341106688],[28.265682656826584,41.07013341106688],[28.254882548825492,41.07351056560664],[28.244082440824428,41.08364202922594],[28.2368823688237,41.08533060649583],[28.200882008820088,41.07857629741629],[28.182881828818296,41.076887720146416],[28.175681756817568,41.08026487468618],[28.164881648816504,41.08533060649583],[28.118081180811828,41.071821988336765],[28.1108811088111,41.068444833797],[28.100081000810007,41.068444833797],[28.046080460804603,41.049870483828286],[28.031680316803175,41.04818190655841],[28.013680136801383,41.04142759747887],[27.995679956799563,41.031296133859584],[27.9848798487985,41.02285324751017],[27.963279632796343,40.99583601119204],[27.956079560795615,40.98401597030286],[27.95967959679598,40.97557308395345],[27.941679416794187,40.9705073521438],[27.862478624786263,40.97895023849321],[27.844478444784443,40.98570454757275],[27.830078300783015,40.99583601119204],[27.815678156781587,41.00259032027158],[27.77607776077761,41.01103320662099],[27.736477364773663,41.01272178389087],[27.52407524075241,40.989081702112514],[27.49167491674916,40.97557308395345],[27.470074700747006,40.941801538555794],[27.444874448744486,40.862438406871306],[27.42327423274233,40.83204401601343],[27.329673296732977,40.76112377067835],[27.286472864728665,40.70371214350233],[27.19647196471965,40.65305482540586],[27.192871928719285,40.64798909359621],[27.18207182071822,40.63616905270703],[27.178471784717857,40.632791898167255],[27.167671676716765,40.62941474362749],[27.142471424714245,40.62772616635762],[27.11367113671136,40.61421754819855],[27.066870668706684,40.61421754819855],[27.048870488704893,40.612528970928665],[27.0308703087031,40.60070893003949],[27.002070020700216,40.57031453918161],[26.991269912699124,40.56356023010207],[26.96246962469627,40.56018307556231],[26.951669516695176,40.56018307556231],[26.91206912069123,40.550051611943005],[26.85446854468546,40.52303437562489],[26.840068400684004,40.512902912005586],[26.822068220682212,40.5027714483863],[26.760867608676108,40.49601713930676],[26.739267392673923,40.487574252957344],[26.706867068670704,40.46562274844888],[26.69606696066961,40.46055701663923],[26.681666816668184,40.45549128482958],[26.674466744667455,40.425096893971684],[26.663666636666363,40.41327685308251],[26.631266312663143,40.39976823492346],[26.624066240662415,40.39301392584392],[26.624066240662415,40.37612815314509],[26.616866168661687,40.35924238044626],[26.60246602466026,40.34573376228721],[26.548465484654855,40.3068964850799],[26.541265412654127,40.30351933054014],[26.508865088650907,40.29845359873049],[26.498064980649815,40.290010712381076],[26.47646476464766,40.27312493968225],[26.47646476464766,40.269747785142485],[26.46926469264693,40.26637063060272],[26.44406444064441,40.24104197155448],[26.42606426064262,40.23091050793518],[26.404464044640463,40.219090467046],[26.379263792637943,40.21064758069659],[26.357663576635787,40.2089590034267],[26.346863468634695,40.200516117077285],[26.35046350463506,40.18194176710858],[26.361263612636122,40.16336741713987],[26.37566375663758,40.15323595352058],[26.328863288632903,40.11946440812292],[26.314463144631446,40.10933294450362],[26.2748627486275,40.09244717180479],[26.24246242462425,40.07049566729633],[26.231662316623186,40.06542993548668],[26.177661776617782,40.05023274005774],[26.16686166861669,40.05023274005774],[26.156061560615626,40.055298471867374],[26.159661596615962,40.067118512756565],[26.16686166861669,40.07893855364574],[26.174061740617418,40.08400428545538],[26.188461884618846,40.09413574907468],[26.202862028620302,40.11608725358316],[26.210062100621002,40.13635018082175],[26.213662136621366,40.14648164444104],[26.260462604626042,40.19376180799776],[26.271262712627134,40.23091050793518],[26.26766267662677,40.25792774425331],[26.24966249662498,40.27987924876177],[26.21726217262173,40.2967650214606],[26.228062280622822,40.30351933054014],[26.231662316623186,40.310273639619666],[26.228062280622822,40.31533937142932],[26.213662136621366,40.31702794869919],[26.210062100621002,40.32209368050884],[26.220862208622094,40.332225144128145],[26.231662316623186,40.34066803047756],[26.238862388623886,40.34235660774743],[26.24966249662498,40.34911091682697],[26.30006300063002,40.36430811225591],[26.321663216632174,40.3659966895258],[26.336063360633602,40.3845710394945],[26.386463864638642,40.409899698542745],[26.433264332643347,40.44029408940064],[26.490864908649087,40.457179862099466],[26.537665376653763,40.48588567568747],[26.562865628656283,40.499394293846535],[26.59526595265953,40.51121433473571],[26.624066240662415,40.514591489275475],[26.67086670866709,40.51121433473571],[26.685266852668548,40.514591489275475],[26.69606696066961,40.52641153016465],[26.717667176671767,40.55174018921289],[26.732067320673224,40.56356023010207],[26.757267572675744,40.555117343752656],[26.789667896678964,40.56356023010207],[26.814868148681484,40.5804460028009],[26.82926829268294,40.60239750730938],[26.796867968679692,40.65136624813597],[26.789667896678964,40.659809134485386],[26.7788677886779,40.659809134485386],[26.714067140671403,40.65136624813597],[26.692466924669247,40.64292336178656],[26.67806678066782,40.639546207246795],[26.609666096660987,40.639546207246795],[26.580865808658103,40.632791898167255],[26.505265052650543,40.599020352769614],[26.47646476464766,40.612528970928665],[26.462064620646203,40.617594702738316],[26.44406444064441,40.619283280008204],[26.429664296642983,40.61590612546844],[26.415264152641527,40.60746323911903],[26.4008640086401,40.60408608457925],[26.372063720637215,40.61421754819855],[26.357663576635787,40.612528970928665],[26.303663036630383,40.60070893003949],[26.11646116461165,40.60239750730938],[26.09126091260913,40.60577466184914],[26.076860768607702,40.612528970928665],[26.069660696606974,40.62772616635762],[26.062460624606246,40.644611939056446],[26.055260552605546,40.659809134485386],[26.062460624606246,40.675006329914325],[26.05886058860588,40.696957834422804],[26.048060480604818,40.71890933893128],[26.03366033660336,40.73579511163011],[26.04086040860409,40.737483688899985],[26.044460444604454,40.739172266169874],[26.048060480604818,40.742549420709636],[26.037260372603726,40.757746616138576],[26.03366033660336,40.77800954337718],[26.02646026460266,40.79658389334588],[26.004860048600506,40.80333820242541],[26.004860048600506,40.81009251150495],[26.019260192601934,40.81009251150495],[26.037260372603726,40.81178108877482],[26.055260552605546,40.81684682058447],[26.05886058860588,40.820223975124236],[26.055260552605546,40.83035543874354],[26.037260372603726,40.83204401601343],[26.022860228602298,40.82866686147365],[26.012060120601205,40.82528970693389],[26.00846008460084,40.83204401601343],[26.004860048600506,40.83879832509295],[25.997659976599778,40.83879832509295],[25.997659976599778,40.83204401601343],[26.00126001260014,40.82528970693389],[26.004860048600506,40.81684682058447],[25.997659976599778,40.81684682058447],[25.98325983259832,40.83035543874354],[25.9508595085951,40.84555263417248],[25.918459184591853,40.85230694325202],[25.896858968589697,40.84555263417248],[25.878858788587905,40.848929788712255],[25.8248582485825,40.848929788712255],[25.81405814058141,40.85568409779178],[25.803258032580345,40.85568409779178],[25.73125731257312,40.85230694325202],[25.691656916569173,40.857372675061654],[25.64845648456486,40.869192715950845],[25.60525605256052,40.87594702503037],[25.565655656556572,40.86581556141107],[25.558455584555844,40.86750413868096],[25.536855368553688,40.87088129322072],[25.515255152551532,40.87932417957013],[25.500855008550104,40.889455643189436],[25.486454864548648,40.89789852953885],[25.436054360543608,40.904652838618375],[25.418054180541816,40.906341415888264],[25.382053820538204,40.919850034047315],[25.342453424534256,40.941801538555794],[25.299252992529944,40.951933002175096],[25.266852668526695,40.926604343126854],[25.259652596525967,40.926604343126854],[25.259652596525967,40.931670074936505],[25.180451804518043,40.94349011582568],[25.158851588515887,40.951933002175096],[25.148051480514823,40.95868731125462],[25.13725137251373,40.96037588852451],[25.133651336513367,40.962064465794384],[25.13725137251373,40.97557308395345],[25.140851408514095,40.98401597030286],[25.148051480514823,40.99077027938239],[25.158851588515887,40.994147433922166],[25.16965169651698,40.99583601119204],[25.15165151651516,41.00596747481134],[25.13725137251373,41.009344629351105],[25.058050580505807,41.009344629351105],[25.040050400504015,41.00596747481134],[25.040050400504015,40.989081702112514],[25.01845018450186,40.97557308395345],[25.007650076500767,40.9705073521438],[24.99324993249934,40.968818774873924],[25.00045000450004,40.95024442490521],[24.989649896498975,40.941801538555794],[24.971649716497183,40.94011296128592],[24.953649536495362,40.941801538555794],[24.939249392493934,40.93842438401603],[24.906849068490686,40.92322718858709],[24.89244892448926,40.919850034047315],[24.863648636486374,40.904652838618375],[24.83484834848349,40.87425844776048],[24.802448024480242,40.85399552052189],[24.766447664476658,40.86581556141107],[24.72684726847268,40.85230694325202],[24.70884708847089,40.85230694325202],[24.690846908469098,40.85906125233154],[24.694446944469462,40.86074982960143],[24.694446944469462,40.862438406871306],[24.698046980469826,40.86581556141107],[24.662046620466214,40.87932417957013],[24.640446404464058,40.864126984141194],[24.636846368463694,40.85906125233154],[24.629646296462965,40.85906125233154],[24.6188461884619,40.87425844776048],[24.60804608046081,40.88776706591955],[24.597245972459746,40.90127568407861],[24.60084600846008,40.91309572496779],[24.586445864458653,40.919850034047315],[24.57564575645756,40.926604343126854],[24.56844568445686,40.93673580674614],[24.56844568445686,40.951933002175096],[24.51804518045182,40.95868731125462],[24.503645036450365,40.962064465794384],[24.496444964449665,40.95531015671486],[24.485644856448573,40.95531015671486],[24.471244712447145,40.951933002175096],[24.464044640446417,40.941801538555794],[24.44244442444426,40.94855584763533],[24.41724417244174,40.945178693095556],[24.39204392043922,40.93673580674614],[24.370443704437065,40.91478430223768],[24.327243272432725,40.88607848864967],[24.312843128431297,40.87932417957013],[24.32364323643236,40.87256987049061],[24.33084330843309,40.862438406871306],[24.33084330843309,40.85568409779178],[24.309243092430933,40.85061836598213],[24.30564305643057,40.847241211442366],[24.30564305643057,40.842175479632715],[24.309243092430933,40.83542117055319],[24.31644316443166,40.83204401601343],[24.33084330843309,40.8337325932833],[24.34164341643418,40.83204401601343],[24.212042120421216,40.77294381156753],[24.111241112411136,40.7273522252807],[24.07164071640716,40.72059791620116],[24.028440284402848,40.723975070740934],[23.985239852398536,40.73241795709035],[23.873638736387363,40.77800954337718],[23.85563855638557,40.78138669791694],[23.841238412384143,40.78307527518682],[23.808838088380895,40.779698120647055],[23.75483754837549,40.76281234794823],[23.733237332373335,40.75268088432894],[23.71163711637118,40.737483688899985],[23.697236972369723,40.72059791620116],[23.690036900369023,40.695269257152916],[23.700837008370087,40.67331775264445],[23.71883718837188,40.6581205572155],[23.740437404374063,40.65305482540586],[23.75483754837549,40.64630051632632],[23.772837728377283,40.62772616635762],[23.78723787237874,40.60577466184914],[23.79443794437944,40.58720031188042],[23.798037980379803,40.58720031188042],[23.834038340383415,40.56356023010207],[23.848438484384843,40.56018307556231],[23.8628386283863,40.55849449829242],[23.877238772387727,40.56018307556231],[23.88803888038882,40.56356023010207],[23.89523895238952,40.55342876648278],[23.91323913239134,40.53823157105383],[23.916839168391704,40.529788684704414],[23.90603906039061,40.52472295289476],[23.83763837638378,40.51796864381524],[23.823238232382323,40.50614860292606],[23.81963819638196,40.487574252957344],[23.826838268382687,40.46055701663923],[23.866438664386664,40.41327685308251],[23.877238772387727,40.40652254400298],[23.909639096390976,40.394702503113805],[23.916839168391704,40.389636771304154],[23.952839528395288,40.38288246222463],[23.96363963639638,40.37950530768485],[23.974439744397444,40.38288246222463],[24.003240032400328,40.38625961676439],[24.010440104401056,40.39301392584392],[24.010440104401056,40.40145681219333],[24.00684006840069,40.414965430352396],[23.992439924399264,40.4335397803211],[23.999639996399964,40.44029408940064],[23.992439924399264,40.44704839848016],[24.010440104401056,40.44873697575005],[24.028440284402848,40.431851203051224],[24.053640536405368,40.39301392584392],[24.06444064440646,40.38119388495474],[24.086040860408616,40.3659966895258],[24.107641076410772,40.35755380317639],[24.129241292412928,40.3659966895258],[24.14004140041402,40.36093095771615],[24.168841688416904,40.352488071366736],[24.179641796417968,40.35079949409685],[24.186841868418696,40.347422339557085],[24.19764197641976,40.32378225777873],[24.20484204842049,40.31702794869919],[24.233642336423372,40.31702794869919],[24.26604266042662,40.28832213511119],[24.320043200432025,40.227533353395415],[24.384843848438493,40.17856461256882],[24.39204392043922,40.15323595352058],[24.359643596435973,40.13297302628199],[24.320043200432025,40.124530139932574],[24.29844298442984,40.12790729447234],[24.29124291242914,40.143104489901276],[24.287642876428777,40.159990262600104],[24.27324273242732,40.170121726219406],[24.25524255242553,40.17856461256882],[24.237242372423736,40.187007498918234],[24.212042120421216,40.21740188977611],[24.194041940419424,40.249484857903894],[24.168841688416904,40.274813516952136],[24.129241292412928,40.290010712381076],[24.04644046440464,40.30183075327025],[24.017640176401784,40.310273639619666],[23.992439924399264,40.32378225777873],[23.95643956439565,40.352488071366736],[23.934839348393496,40.3659966895258],[23.924039240392403,40.369373844065564],[23.884438844388455,40.3659966895258],[23.848438484384843,40.372750998605326],[23.834038340383415,40.372750998605326],[23.783637836378375,40.352488071366736],[23.758437584375855,40.34911091682697],[23.72963729637297,40.35924238044626],[23.726037260372607,40.35417664863661],[23.722437224372243,40.34404518501732],[23.715237152371543,40.34573376228721],[23.700837008370087,40.327159412318494],[23.69363693636936,40.30858506234978],[23.697236972369723,40.29338786692084],[23.71163711637118,40.26130489879307],[23.715237152371543,40.25455058971353],[23.722437224372243,40.249484857903894],[23.758437584375855,40.23091050793518],[23.765637656376583,40.21571331250624],[23.78003780037801,40.202204694347174],[23.79443794437944,40.19545038526765],[23.798037980379803,40.19713896253752],[23.866438664386664,40.17349888075917],[23.88083880838809,40.17687603529893],[23.89523895238952,40.17181030348928],[23.91323913239134,40.16167883986999],[23.927639276392767,40.149858798980816],[23.942039420394224,40.1414159126314],[23.98163981639817,40.1312844490121],[23.992439924399264,40.11946440812292],[23.9888398883989,40.10933294450362],[23.978039780397808,40.10089005815421],[23.978039780397808,40.09075859453492],[23.98163981639817,40.08569286272527],[23.999639996399964,40.075561399105965],[24.003240032400328,40.067118512756565],[24.003240032400328,40.05867562640715],[23.9960399603996,40.05698704913726],[23.9888398883989,40.05698704913726],[23.985239852398536,40.0536098945975],[23.985239852398536,40.04178985370832],[23.992439924399264,40.03672412189867],[24.003240032400328,40.038412699168546],[24.010440104401056,40.0434784309782],[24.010440104401056,40.03334696735891],[24.010440104401056,40.02659265827937],[24.01404014040142,40.02152692646972],[24.017640176401784,40.01646119466008],[23.992439924399264,39.999575421961254],[23.9888398883989,39.98944395834195],[23.999639996399964,39.98100107199254],[23.999639996399964,39.97424676291301],[23.978039780397808,39.97424676291301],[23.97083970839708,39.96749245383347],[23.974439744397444,39.962426722023835],[23.992439924399264,39.96073814475395],[23.992439924399264,39.95398383567442],[23.93843938439386,39.95229525840453],[23.92043920439204,39.955672412944296],[23.924039240392403,39.96749245383347],[23.924039240392403,39.97424676291301],[23.916839168391704,39.97424676291301],[23.90603906039061,39.96918103110336],[23.902439024390247,39.97086960837325],[23.898838988389883,39.977623917452775],[23.902439024390247,39.98775538107208],[23.866438664386664,40.004641153770905],[23.859238592385935,40.00632973104078],[23.85563855638557,40.01646119466008],[23.84483844838448,40.024904081009495],[23.83043830438305,40.02659265827937],[23.823238232382323,40.02152692646972],[23.823238232382323,40.01646119466008],[23.826838268382687,40.00801830831067],[23.790837908379103,40.055298471867374],[23.783637836378375,40.067118512756565],[23.790837908379103,40.08400428545538],[23.79443794437944,40.09413574907468],[23.78723787237874,40.097512903614444],[23.78003780037801,40.10089005815421],[23.772837728377283,40.10933294450362],[23.76923769237692,40.11946440812292],[23.765637656376583,40.12621871720245],[23.675636756367567,40.21740188977611],[23.64323643236432,40.23597623974483],[23.621636216362162,40.23935339428459],[23.538835388353903,40.24441912609424],[23.4848348483485,40.269747785142485],[23.438034380343822,40.27987924876177],[23.398433984339846,40.2781906714919],[23.366033660336598,40.26130489879307],[23.340833408334078,40.227533353395415],[23.337233372333742,40.2089590034267],[23.34443344433444,40.19207323072787],[23.355233552335534,40.17518745802906],[23.358833588335898,40.15661310806034],[23.362433624336262,40.149858798980816],[23.36963369633696,40.14817022171093],[23.391233912339118,40.14648164444104],[23.40203402034021,40.144793067171165],[23.405634056340574,40.13972733536151],[23.416434164341638,40.12621871720245],[23.470434704347042,40.067118512756565],[23.499234992349926,40.04178985370832],[23.60363603636037,39.997886844691365],[23.672036720367203,39.98606680380219],[23.672036720367203,39.97931249472266],[23.672036720367203,39.97086960837325],[23.675636756367567,39.96073814475395],[23.68643686436866,39.94891810386477],[23.697236972369723,39.940475217515356],[23.71163711637118,39.935409485705705],[23.733237332373335,39.93372090843583],[23.747637476374763,39.930343753896054],[23.740437404374063,39.92358944481653],[23.722437224372243,39.915146558467114],[23.70443704437045,39.913457981197226],[23.6180361803618,39.92358944481653],[23.470434704347042,39.97086960837325],[23.445234452344522,39.97424676291301],[23.373233732337326,39.9658038765636],[23.358833588335898,39.96073814475395],[23.366033660336598,39.97255818564312],[23.380433804338054,39.99113253561184],[23.380433804338054,40.002952576501016],[23.37683376833769,40.01139546285043],[23.362433624336262,40.02659265827937],[23.358833588335898,40.03334696735891],[23.35163351633517,40.05698704913726],[23.333633336333378,40.07387282183609],[23.315633156331558,40.08907001726503],[23.304833048330494,40.10426721269398],[23.31923319233192,40.13635018082175],[23.322833228332286,40.17518745802906],[23.31923319233192,40.21064758069659],[23.297632976329766,40.23597623974483],[23.258032580325818,40.25286201244366],[23.23643236432366,40.25961632152318],[23.20043200432005,40.26637063060272],[23.182431824318257,40.274813516952136],[23.164431644316437,40.27987924876177],[23.15003150031501,40.27650209422201],[23.096030960309605,40.3068964850799],[23.08523085230854,40.3068964850799],[23.07443074430745,40.31365079415943],[23.052830528305293,40.31871652596908],[23.027630276302773,40.325470835048606],[23.00963009630098,40.35079949409685],[22.962829628296276,40.37950530768485],[22.944829448294485,40.38625961676439],[22.926829268292693,40.387948194034266],[22.887228872288716,40.38625961676439],[22.89802898028981,40.40145681219333],[22.89082890828908,40.41834258489216],[22.85842858428586,40.44704839848016],[22.862028620286196,40.44873697575005],[22.86562865628656,40.44873697575005],[22.869228692286924,40.44873697575005],[22.86562865628656,40.4538027075597],[22.829628296282976,40.48588567568747],[22.82242822428225,40.5027714483863],[22.844028440284404,40.50952575746582],[22.9088290882909,40.51121433473571],[22.94122941229412,40.51796864381524],[22.955629556295577,40.52641153016465],[22.962829628296276,40.534854416514065],[22.97362973629737,40.54160872559359],[22.98442984429846,40.55342876648278],[22.977229772297733,40.57031453918161],[22.952029520295213,40.582134580070786],[22.944829448294485,40.58382315734066],[22.94122941229412,40.58720031188042],[22.944829448294485,40.59395462095996],[22.94842948429485,40.60577466184914],[22.93402934029342,40.63110332089738],[22.9088290882909,40.644611939056446],[22.88362883628838,40.64798909359621],[22.854828548285496,40.639546207246795],[22.862028620286196,40.62097185727808],[22.85842858428586,40.60577466184914],[22.851228512285132,40.59395462095996],[22.84042840428404,40.58382315734066],[22.826028260282612,40.57875742553101],[22.81522815228152,40.57369169372137],[22.81522815228152,40.57031453918161],[22.797227972279728,40.57031453918161],[22.786427864278636,40.57369169372137],[22.779227792277936,40.57875742553101],[22.75762757627578,40.56693738464183],[22.746827468274688,40.555117343752656],[22.743227432274324,40.539920148323716],[22.750427504275052,40.52303437562489],[22.743227432274324,40.52303437562489],[22.736027360273596,40.529788684704414],[22.736027360273596,40.514591489275475],[22.728827288272896,40.514591489275475],[22.728827288272896,40.52303437562489],[22.721627216272168,40.52303437562489],[22.718027180271804,40.51121433473571],[22.710827108271076,40.51121433473571],[22.700027000270012,40.51796864381524],[22.68922689226892,40.52303437562489],[22.68922689226892,40.52810010743454],[22.674826748267492,40.52641153016465],[22.6568265682657,40.51628006654535],[22.6568265682657,40.50446002565617],[22.674826748267492,40.49601713930676],[22.667626676266764,40.49601713930676],[22.660426604266064,40.492639984766996],[22.6568265682657,40.487574252957344],[22.653226532265336,40.477442789338056],[22.649626496264972,40.472377057528405],[22.642426424264244,40.47406563479829],[22.628026280262816,40.48250852114771],[22.602826028260296,40.48081994387782],[22.592025920259204,40.477442789338056],[22.577625776257776,40.46899990298864],[22.592025920259204,40.45886843936934],[22.602826028260296,40.4436712439404],[22.610026100261024,40.42847404851146],[22.60642606426066,40.41327685308251],[22.617226172261724,40.404833966733094],[22.628026280262816,40.39301392584392],[22.63882638826388,40.38288246222463],[22.6568265682657,40.37950530768485],[22.660426604266064,40.369373844065564],[22.646026460264608,40.34573376228721],[22.620826208262088,40.310273639619666],[22.592025920259204,40.24104197155448],[22.592025920259204,40.23091050793518],[22.552425524255256,40.166744571679644],[22.54882548825489,40.143104489901276],[22.55602556025562,40.12790729447234],[22.566825668256683,40.11102152177351],[22.57402574025741,40.087381439995156],[22.570425704257048,40.06542993548668],[22.570425704257048,40.0536098945975],[22.584825848258504,40.05023274005774],[22.58842588425884,40.045167008248086],[22.59922599225993,40.01646119466008],[22.653226532265336,39.982689649262426],[22.660426604266064,39.977623917452775],[22.667626676266764,39.97424676291301],[22.68922689226892,39.96749245383347],[22.696426964269648,39.96411529929371],[22.700027000270012,39.96073814475395],[22.70722707227074,39.96073814475395],[22.710827108271076,39.957360990214184],[22.70722707227074,39.93878664024547],[22.710827108271076,39.935409485705705],[22.710827108271076,39.93372090843583],[22.721627216272168,39.89826078576829],[22.728827288272896,39.88475216760922],[22.73962739627396,39.87462070398993],[22.779227792277936,39.84929204494169],[22.800828008280092,39.84084915859228],[22.81522815228152,39.8290291177031],[22.84042840428404,39.80370045865486],[22.851228512285132,39.790191840495794],[22.85842858428586,39.773306067796966],[22.86562865628656,39.753043140558376],[22.86562865628656,39.7310916360499],[22.87282872828729,39.71589444062096],[22.901629016290173,39.65848281344495],[22.926829268292693,39.59938260899905],[22.94122941229412,39.580808259030334],[22.952029520295213,39.570676795411046],[23.006030060300617,39.543659559092916],[23.056430564305657,39.52677378639409],[23.096030960309605,39.50482228188562],[23.096030960309605,39.50144512734586],[23.103231032310333,39.49806797280608],[23.114031140311397,39.467673581948205],[23.12483124831249,39.45416496378914],[23.21123211232114,39.3798675639143],[23.222032220322205,39.357916059405824],[23.272432724327246,39.322455936738294],[23.2940329403294,39.26842146410205],[23.340833408334078,39.19243548695732],[23.34443344433444,39.17892686879826],[23.333633336333378,39.173861136988606],[23.30123301233013,39.15190963248014],[23.283232832328338,39.14684390067049],[23.24363243632436,39.14177816886084],[23.22563225632257,39.13671243705119],[23.21123211232114,39.131646705241536],[23.214832148321477,39.12995812797166],[23.21843218432184,39.1265809734319],[23.222032220322205,39.12489239616201],[23.229232292322934,39.12489239616201],[23.229232292322934,39.118138087082485],[23.222032220322205,39.1164495098126],[23.214832148321477,39.113072355272834],[23.207632076320778,39.10800662346318],[23.204032040320413,39.10462946892342],[23.189631896318957,39.10800662346318],[23.1680316803168,39.10631804619331],[23.146431464314645,39.10125231438366],[23.132031320313217,39.09449800530412],[23.114031140311397,39.08774369622459],[23.09243092430924,39.08943227349448],[23.052830528305293,39.097875159843895],[23.06003060030602,39.111383778002946],[23.07443074430745,39.12489239616201],[23.06723067230672,39.138401014321076],[23.081630816308177,39.14684390067049],[23.114031140311397,39.15866394155967],[23.114031140311397,39.14684390067049],[23.09963099630997,39.10462946892342],[23.171631716317165,39.13502385978131],[23.182431824318257,39.14684390067049],[23.17523175231753,39.155286787019904],[23.182431824318257,39.15866394155967],[23.189631896318957,39.15866394155967],[23.196831968319685,39.155286787019904],[23.20043200432005,39.15190963248014],[23.207632076320778,39.15697536428978],[23.214832148321477,39.16879540517897],[23.21843218432184,39.17892686879826],[23.21123211232114,39.190746909687434],[23.18603186031862,39.22451845508509],[23.17523175231753,39.23464991870439],[23.178831788317893,39.25153569140322],[23.1680316803168,39.26842146410205],[23.15003150031501,39.285307236800875],[23.13563135631358,39.29712727769005],[23.114031140311397,39.30725874130934],[23.09963099630997,39.31232447311899],[23.020430204302045,39.31739020492864],[23.020430204302045,39.320767359468405],[23.020430204302045,39.32583309127806],[23.01683016830168,39.33089882308771],[23.013230132301317,39.335964554897345],[23.002430024300253,39.35285032759617],[22.99882998829989,39.357916059405824],[22.99162991629916,39.357916059405824],[22.962829628296276,39.357916059405824],[22.94122941229412,39.361293213945586],[22.937629376293756,39.361293213945586],[22.94122941229412,39.3511617503263],[22.94122941229412,39.34440744124676],[22.93402934029342,39.335964554897345],[22.930429304293057,39.32414451400817],[22.930429304293057,39.31232447311899],[22.94122941229412,39.30388158676958],[22.919629196291964,39.298815854959926],[22.880028800288017,39.29543870042016],[22.844028440284404,39.28868439134064],[22.826028260282612,39.27179861864181],[22.826028260282612,39.2329613414345],[22.826028260282612,39.22114130054533],[22.854828548285496,39.15866394155967],[22.85842858428586,39.15866394155967],[22.869228692286924,39.17048398244884],[22.880028800288017,39.17892686879826],[22.876428764287652,39.190746909687434],[22.88362883628838,39.190746909687434],[22.89082890828908,39.18399260060791],[22.894428944289444,39.17217255971873],[22.901629016290173,39.17892686879826],[22.912429124291236,39.16372967336932],[22.9160291602916,39.14346674613073],[22.919629196291964,39.12489239616201],[22.937629376293756,39.111383778002946],[22.937629376293756,39.1164495098126],[22.94122941229412,39.1164495098126],[22.94122941229412,39.118138087082485],[22.937629376293756,39.12489239616201],[22.937629376293756,39.131646705241536],[22.962829628296276,39.11982666435236],[22.97362973629737,39.10125231438366],[22.980829808298097,39.08436654168483],[22.99882998829989,39.06916934625589],[22.99162991629916,39.0573493053667],[22.99162991629916,39.05397215082694],[22.99882998829989,39.048906419017285],[22.96642966429664,39.035397800858235],[22.95922959229594,39.02526633723893],[22.962829628296276,39.008380564540104],[23.01683016830168,39.033709223588346],[23.0420304203042,39.04046353266787],[23.07443074430745,39.04215210993776],[23.07443074430745,39.03708637812811],[23.063630636306357,39.028643491778695],[23.031230312303137,39.015134873619644],[23.02403024030241,39.008380564540104],[23.020430204302045,39.00162625546058],[23.013230132301317,38.98136332822199],[23.006030060300617,38.97460901914245],[22.99882998829989,38.966166132793035],[22.995229952299525,38.96278897825327],[22.99162991629916,38.95941182371351],[22.98442984429846,38.95434609190386],[22.977229772297733,38.952657514633984],[22.962829628296276,38.95603466917375],[22.955629556295577,38.95434609190386],[22.94842948429485,38.94928036009421],[22.944829448294485,38.94759178282433],[22.937629376293756,38.94759178282433],[22.94122941229412,38.935771741935156],[22.94122941229412,38.93239458739538],[22.926829268292693,38.93239458739538],[22.9088290882909,38.92226312377609],[22.89802898028981,38.91888596923633],[22.887228872288716,38.92226312377609],[22.87282872828729,38.92564027831585],[22.85842858428586,38.929017432855616],[22.84762847628477,38.92564027831585],[22.84042840428404,38.91888596923633],[22.836828368283676,38.89693446472785],[22.829628296282976,38.8918687329182],[22.804428044280456,38.89018015564832],[22.797227972279728,38.88680300110855],[22.793627936279364,38.87836011475913],[22.779227792277936,38.87836011475913],[22.754027540275416,38.873294382949496],[22.73242732427326,38.87160580567961],[22.721627216272168,38.88173726929891],[22.718027180271804,38.89018015564832],[22.70722707227074,38.88680300110855],[22.68922689226892,38.87836011475913],[22.68202682026822,38.88004869202902],[22.6640266402664,38.89018015564832],[22.6568265682657,38.8918687329182],[22.6568265682657,38.893557310188086],[22.620826208262088,38.91382023742668],[22.61362613626136,38.91382023742668],[22.595625956259568,38.9020001965375],[22.58842588425884,38.89862304199774],[22.58122581225814,38.893557310188086],[22.570425704257048,38.8918687329182],[22.559625596255984,38.8918687329182],[22.552425524255256,38.888491578378435],[22.545225452254527,38.88511442383867],[22.5380253802538,38.87836011475913],[22.534425344253464,38.88004869202902],[22.52362523625237,38.88511442383867],[22.52362523625237,38.85809718752054],[22.57402574025741,38.86485149660008],[22.57402574025741,38.85809718752054],[22.552425524255256,38.847965723901254],[22.56322563225632,38.83614568301208],[22.58122581225814,38.8327685284723],[22.592025920259204,38.84458856936149],[22.59922599225993,38.84458856936149],[22.592025920259204,38.82939137393254],[22.60642606426066,38.831079951202426],[22.620826208262088,38.83445710574219],[22.63162631626318,38.83445710574219],[22.642426424264244,38.82939137393254],[22.68922689226892,38.84965430117113],[22.703627036270376,38.85134287844102],[22.725227252272532,38.81925991031325],[22.746827468274688,38.798996983074645],[22.75762757627578,38.79393125126501],[22.768427684276844,38.785488364915594],[22.779227792277936,38.78211121037583],[22.786427864278636,38.78211121037583],[22.804428044280456,38.78717694218547],[22.81522815228152,38.788865519455356],[22.829628296282976,38.785488364915594],[22.844028440284404,38.778734055836054],[22.85842858428586,38.76691401494688],[22.86562865628656,38.7550939740577],[22.887228872288716,38.77197974675653],[22.89802898028981,38.77535690129629],[22.9160291602916,38.77535690129629],[22.926829268292693,38.77197974675653],[22.944829448294485,38.75847112859746],[22.95922959229594,38.7550939740577],[23.01683016830168,38.7550939740577],[23.0420304203042,38.74665108770829],[23.06003060030602,38.728076737739585],[23.088830888308877,38.6487136060551],[23.103231032310333,38.638582142435794],[23.12483124831249,38.636893565165906],[23.132031320313217,38.64027071970568],[23.146431464314645,38.6487136060551],[23.157231572315737,38.653779337864734],[23.1680316803168,38.65209076059486],[23.182431824318257,38.653779337864734],[23.196831968319685,38.665599378753924],[23.17523175231753,38.6774194196431],[23.1680316803168,38.679107996912975],[23.18603186031862,38.685862305992515],[23.204032040320413,38.68248515145275],[23.23643236432366,38.665599378753924],[23.254432544325454,38.66222222421415],[23.286832868328702,38.658845069674385],[23.304833048330494,38.65209076059486],[23.31923319233192,38.643647874245445],[23.330033300333014,38.63013925608638],[23.337233372333742,38.616630637927315],[23.333633336333378,38.60481059703814],[23.322833228332286,38.59467913341885],[23.304833048330494,38.5896134016092],[23.2940329403294,38.5794819379899],[23.286832868328702,38.55584185621154],[23.2940329403294,38.56766189710072],[23.308433084330858,38.56935047437061],[23.31923319233192,38.56259616529107],[23.330033300333014,38.55246470167178],[23.340833408334078,38.54571039259224],[23.366033660336598,38.540644660782604],[23.380433804338054,38.53557892897295],[23.380433804338054,38.52882461989341],[23.373233732337326,38.52544746535365],[23.35163351633517,38.52544746535365],[23.340833408334078,38.52207031081389],[23.330033300333014,38.51531600173436],[23.330033300333014,38.50856169265482],[23.333633336333378,38.503495960845186],[23.35163351633517,38.5018073835753],[23.420034200342002,38.503495960845186],[23.520835208352082,38.48998734268612],[23.531635316353174,38.498430229035534],[23.542435424354238,38.5119388471946],[23.56763567635676,38.5018073835753],[23.600036000360006,38.47310156998729],[23.582035820358215,38.46297010636799],[23.574835748357486,38.461281529098116],[23.574835748357486,38.4528386427487],[23.58563585635858,38.451150065478814],[23.596435964359642,38.44608433366916],[23.600036000360006,38.441018601859525],[23.59283592835928,38.43257571551011],[23.59283592835928,38.42582140643057],[23.625236252362527,38.414001365541395],[23.672036720367203,38.356589738365386],[23.71163711637118,38.336326811126796],[23.726037260372607,38.336326811126796],[23.783637836378375,38.34308112020632],[23.80523805238053,38.33294965658703],[23.816038160381623,38.331261079317144],[23.91323913239134,38.29748953391949],[23.93123931239313,38.2958009566496],[23.949239492394923,38.29073522483996],[23.967239672396744,38.27891518395079],[23.992439924399264,38.253586524902545],[24.03924039240394,38.22319213404465],[24.04644046440464,38.216437824965126],[24.050040500405004,38.211372093155475],[24.068040680406824,38.204617784075936],[24.07164071640716,38.19617489772652],[24.07164071640716,38.18773201137711],[24.068040680406824,38.18097770229758],[24.068040680406824,38.17422339321806],[24.078840788407888,38.16578050686864],[24.07164071640716,38.16240335232888],[24.06444064440646,38.15564904324934],[24.060840608406096,38.143829002360164],[24.060840608406096,38.13200896147099],[24.053640536405368,38.14551757963005],[24.03924039240394,38.143829002360164],[23.9888398883989,38.121877497851685],[23.9888398883989,38.101614570613094],[24.003240032400328,38.059400138866025],[24.010440104401056,38.04082578889732],[24.017640176401784,38.02731717073826],[24.028440284402848,38.01549712984908],[24.032040320403212,38.00705424349967],[24.028440284402848,37.99861135715025],[24.017640176401784,37.976659852641774],[24.010440104401056,37.966528389022486],[24.010440104401056,37.95808550267307],[24.01404014040142,37.94795403905377],[24.017640176401784,37.93782257543448],[24.010440104401056,37.92600253454529],[24.02124021240212,37.92600253454529],[24.035640356403576,37.92262538000553],[24.042840428404304,37.915871070926],[24.04644046440464,37.9057396073067],[24.042840428404304,37.90067387549706],[24.010440104401056,37.89223098914765],[24.017640176401784,37.88547668006811],[24.028440284402848,37.88041094825846],[24.03924039240394,37.877033793718695],[24.053640536405368,37.878722370988584],[24.04644046440464,37.87027948463917],[24.053640536405368,37.87027948463917],[24.068040680406824,37.86521375282952],[24.060840608406096,37.855082289210216],[24.060840608406096,37.84832798013069],[24.060840608406096,37.84326224832104],[24.068040680406824,37.836507939241514],[24.060840608406096,37.834819361971626],[24.057240572405732,37.83144220743186],[24.053640536405368,37.8280650528921],[24.053640536405368,37.82299932108245],[24.075240752407524,37.81117928019327],[24.086040860408616,37.80104781657397],[24.086040860408616,37.78585062114503],[24.086040860408616,37.76389911663655],[24.082440824408252,37.752079075747375],[24.060840608406096,37.73350472577867],[24.07164071640716,37.72675041669913],[24.07164071640716,37.71999610761961],[24.060840608406096,37.71999610761961],[24.060840608406096,37.71324179854008],[24.06444064440646,37.71324179854008],[24.068040680406824,37.709864644000305],[24.06444064440646,37.70479891219067],[24.068040680406824,37.69973318038102],[24.06444064440646,37.70142175765089],[24.06444064440646,37.70479891219067],[24.060840608406096,37.69973318038102],[24.07164071640716,37.689601716761715],[24.06444064440646,37.67778167587254],[24.04644046440464,37.66596163498336],[24.032040320403212,37.65076443955442],[24.02124021240212,37.65751874863395],[23.98163981639817,37.67102736679301],[23.967239672396744,37.67271594406289],[23.949239492394923,37.67778167587254],[23.942039420394224,37.689601716761715],[23.942039420394224,37.72675041669913],[23.934839348393496,37.72675041669913],[23.924039240392403,37.721684684889496],[23.91323913239134,37.7402590348582],[23.902439024390247,37.78247346660527],[23.898838988389883,37.779096312065505],[23.88803888038882,37.774030580255854],[23.88083880838809,37.79091635295468],[23.866438664386664,37.80780212565351],[23.848438484384843,37.8179335892728],[23.834038340383415,37.81624501200292],[23.83043830438305,37.819622166542686],[23.826838268382687,37.821310743812575],[23.823238232382323,37.82468789835234],[23.81963819638196,37.82975363016199],[23.81243812438126,37.82975363016199],[23.808838088380895,37.80780212565351],[23.798037980379803,37.80780212565351],[23.78723787237874,37.81286785746316],[23.78003780037801,37.80273639384386],[23.776437764377647,37.809490702923384],[23.776437764377647,37.814556434733035],[23.772837728377283,37.81624501200292],[23.765637656376583,37.81624501200292],[23.76923769237692,37.8280650528921],[23.765637656376583,37.8381965165114],[23.7440374403744,37.856770866480105],[23.740437404374063,37.877033793718695],[23.700837008370087,37.92600253454529],[23.697236972369723,37.939511152704355],[23.67923679236793,37.946265461783895],[23.664836648366503,37.94288830724412],[23.646836468364683,37.93613399816459],[23.62883628836289,37.93275684362483],[23.62883628836289,37.93782257543448],[23.62883628836289,37.939511152704355],[23.63603636036362,37.94288830724412],[23.639636396363983,37.946265461783895],[23.64323643236432,37.95301977086342],[23.625236252362527,37.94795403905377],[23.6180361803618,37.95301977086342],[23.6108361083611,37.961462657212834],[23.596435964359642,37.966528389022486],[23.582035820358215,37.966528389022486],[23.571235712357122,37.96821696629236],[23.56043560435606,37.97328269810201],[23.55323553235533,37.98003700718154],[23.589235892358943,38.00705424349967],[23.596435964359642,38.02056286165873],[23.589235892358943,38.039137211627434],[23.582035820358215,38.045891520706974],[23.574835748357486,38.04758009797685],[23.56763567635676,38.044202943437085],[23.56043560435606,38.0425143661672],[23.520835208352082,38.0425143661672],[23.51003510035102,38.04082578889732],[23.506435064350654,38.03576005708767],[23.499234992349926,38.03069432527802],[23.495634956349562,38.029005748008146],[23.470434704347042,38.02731717073826],[23.45963459634598,38.02562859346837],[23.448834488344886,38.022251438928606],[23.412834128341302,37.9935456253406],[23.394833948339482,37.98847989353095],[23.430834308343094,37.98003700718154],[23.409234092340938,37.9749712753719],[23.330033300333014,37.98003700718154],[23.22563225632257,37.97328269810201],[23.189631896318957,37.95808550267307],[23.1608316083161,37.941199729974244],[23.14283142831428,37.92937968908507],[23.09243092430924,37.91080533911635],[23.052830528305293,37.92600253454529],[23.0420304203042,37.92262538000553],[23.0348303483035,37.92262538000553],[23.027630276302773,37.924313957275416],[23.01683016830168,37.92600253454529],[23.013230132301317,37.919248225465765],[23.013230132301317,37.90911676184646],[23.00963009630098,37.897296720957286],[23.002430024300253,37.89223098914765],[22.995229952299525,37.882099525528346],[22.99882998829989,37.86352517555963],[23.013230132301317,37.84832798013069],[23.031230312303137,37.85001655740058],[23.04923049230493,37.84326224832104],[23.07443074430745,37.841573671051165],[23.096030960309605,37.84326224832104],[23.114031140311397,37.85001655740058],[23.146431464314645,37.82637647562221],[23.164431644316437,37.814556434733035],[23.182431824318257,37.809490702923384],[23.178831788317893,37.799359239304096],[23.17523175231753,37.78922777568479],[23.178831788317893,37.78078488933538],[23.182431824318257,37.774030580255854],[23.1680316803168,37.772342002985965],[23.15003150031501,37.76389911663655],[23.128431284312853,37.76052196209679],[23.12483124831249,37.757144807557026],[23.12483124831249,37.7503904984775],[23.121231212312125,37.7402590348582],[23.146431464314645,37.72506183942926],[23.1608316083161,37.71999610761961],[23.17523175231753,37.71999610761961],[23.1680316803168,37.696356025841254],[23.164431644316437,37.6811588304123],[23.1680316803168,37.66596163498336],[23.17523175231753,37.64401013047488],[23.1608316083161,37.64401013047488],[23.164431644316437,37.62374720323629],[23.1680316803168,37.613615739617],[23.189631896318957,37.606861430537464],[23.229232292322934,37.58322134875911],[23.23643236432366,37.589975657838636],[23.27603276032761,37.56126984425063],[23.279632796327974,37.55958126698076],[23.283232832328338,37.55958126698076],[23.2940329403294,37.55620411244098],[23.312033120331222,37.54269549428193],[23.322833228332286,37.53762976247228],[23.337233372333742,37.53594118520239],[23.358833588335898,37.547761226091566],[23.358833588335898,37.5747784624097],[23.340833408334078,37.60010712145794],[23.312033120331222,37.61023858507723],[23.312033120331222,37.616992894156766],[23.330033300333014,37.62881293504594],[23.348033480334806,37.633878666855594],[23.398433984339846,37.63725582139536],[23.409234092340938,37.62543578050618],[23.405634056340574,37.60010712145794],[23.391233912339118,37.571401307869934],[23.373233732337326,37.55620411244098],[23.384033840338418,37.547761226091566],[23.394833948339482,37.54100691701204],[23.405634056340574,37.53762976247228],[23.423634236342366,37.53594118520239],[23.423634236342366,37.527498298852976],[23.40203402034021,37.522432567043325],[23.394833948339482,37.522432567043325],[23.394833948339482,37.5156782579638],[23.40203402034021,37.5156782579638],[23.409234092340938,37.512301103424036],[23.438034380343822,37.508923948884274],[23.45963459634598,37.49541533072521],[23.47763477634777,37.49034959891556],[23.524435244352446,37.45995520805768],[23.520835208352082,37.45488947624803],[23.517235172351718,37.45320089897814],[23.520835208352082,37.451512321708265],[23.524435244352446,37.44644658989861],[23.524435244352446,37.439692280819074],[23.506435064350654,37.43124939446966],[23.445234452344522,37.41436362177083],[23.441634416344158,37.41436362177083],[23.322833228332286,37.409297889961195],[23.304833048330494,37.41267504450096],[23.308433084330858,37.40760931269131],[23.308433084330858,37.40592073542143],[23.308433084330858,37.402543580881655],[23.312033120331222,37.39747784907202],[23.27603276032761,37.402543580881655],[23.26163261632618,37.40085500361178],[23.265232652326517,37.39072353999248],[23.229232292322934,37.38396923091295],[23.229232292322934,37.37552634456354],[23.23643236432366,37.37046061275389],[23.247232472324725,37.368772035484],[23.258032580325818,37.37046061275389],[23.25083250832509,37.36370630367436],[23.25083250832509,37.35695199459482],[23.258032580325818,37.35695199459482],[23.279632796327974,37.3501976855153],[23.26163261632618,37.34344337643577],[23.24363243632436,37.341754799165884],[23.207632076320778,37.34344337643577],[23.18603186031862,37.340066221895995],[23.18603186031862,37.33162333554658],[23.19323193231932,37.319803294657405],[23.204032040320413,37.30291752195858],[23.182431824318257,37.299540367418814],[23.1680316803168,37.299540367418814],[23.157231572315737,37.30291752195858],[23.14283142831428,37.309671831038116],[23.14283142831428,37.31642614011764],[23.1608316083161,37.31642614011764],[23.1608316083161,37.32318044919717],[23.15003150031501,37.326557603736944],[23.13563135631358,37.32318044919717],[23.12483124831249,37.324869026467056],[23.114031140311397,37.33668906735623],[23.13563135631358,37.32993475827671],[23.128431284312853,37.33837764462612],[23.121231212312125,37.345131953705646],[23.09963099630997,37.35695199459482],[23.09243092430924,37.3501976855153],[23.081630816308177,37.3501976855153],[23.07443074430745,37.35526341732495],[23.07443074430745,37.35695199459482],[23.070830708307085,37.389034962722604],[23.070830708307085,37.40085500361178],[23.08523085230854,37.39410069453224],[23.096030960309605,37.389034962722604],[23.106831068310697,37.39747784907202],[23.114031140311397,37.41098646723107],[23.114031140311397,37.42618366266002],[23.13563135631358,37.41605219904072],[23.14283142831428,37.41267504450096],[23.14283142831428,37.41774077631061],[23.13563135631358,37.4278722399299],[23.13563135631358,37.43293797173955],[23.13563135631358,37.44306943535885],[23.132031320313217,37.44813516716849],[23.12483124831249,37.451512321708265],[23.11763117631176,37.45320089897814],[23.11043110431106,37.4565780535179],[23.096030960309605,37.46164378532755],[23.063630636306357,37.45488947624803],[23.045630456304565,37.45995520805768],[23.06003060030602,37.466709517137204],[23.045630456304565,37.486972444375795],[23.020430204302045,37.47515240348662],[23.00963009630098,37.46839809440708],[23.006030060300617,37.45995520805768],[22.99162991629916,37.49541533072521],[22.980829808298097,37.508923948884274],[22.962829628296276,37.522432567043325],[22.95922959229594,37.522432567043325],[22.94842948429485,37.52074398977345],[22.94122941229412,37.522432567043325],[22.937629376293756,37.5258097215831],[22.937629376293756,37.529186876122864],[22.937629376293756,37.534252607932515],[22.937629376293756,37.53594118520239],[22.92322923229233,37.54100691701204],[22.912429124291236,37.54100691701204],[22.901629016290173,37.54100691701204],[22.9160291602916,37.53931833974215],[22.919629196291964,37.53594118520239],[22.92322923229233,37.527498298852976],[22.901629016290173,37.534252607932515],[22.88362883628838,37.53256403066263],[22.869228692286924,37.5258097215831],[22.854828548285496,37.5156782579638],[22.84762847628477,37.52074398977345],[22.818828188281884,37.53594118520239],[22.82242822428225,37.53931833974215],[22.826028260282612,37.549449803361455],[22.81522815228152,37.55282695790122],[22.800828008280092,37.56126984425063],[22.797227972279728,37.569712730600045],[22.797227972279728,37.57646703967957],[22.790027900279,37.58828708056876],[22.779227792277936,37.596729966918176],[22.75762757627578,37.589975657838636],[22.73962739627396,37.58153277148922],[22.725227252272532,37.56633557606028],[22.721627216272168,37.54100691701204],[22.725227252272532,37.53594118520239],[22.736027360273596,37.52412114431321],[22.736027360273596,37.51905541250356],[22.736027360273596,37.512301103424036],[22.73242732427326,37.50048106253486],[22.728827288272896,37.49372675345532],[22.736027360273596,37.48359528983603],[22.73962739627396,37.47684098075649],[22.746827468274688,37.47346382621673],[22.750427504275052,37.466709517137204],[22.750427504275052,37.46164378532755],[22.750427504275052,37.44306943535885],[22.754027540275416,37.439692280819074],[22.76482764827648,37.43124939446966],[22.76482764827648,37.42111793085037],[22.75762757627578,37.40760931269131],[22.75762757627578,37.39747784907202],[22.811628116281156,37.34850910824541],[22.818828188281884,37.34344337643577],[22.811628116281156,37.32993475827671],[22.826028260282612,37.32993475827671],[22.826028260282612,37.32318044919717],[22.818828188281884,37.32318044919717],[22.818828188281884,37.31642614011764],[22.829628296282976,37.30798325376823],[22.854828548285496,37.27421170837057],[22.862028620286196,37.25563735840187],[22.894428944289444,37.20666861757526],[22.89802898028981,37.2032914630355],[22.905229052290537,37.19315999941621],[22.912429124291236,37.18302853579691],[22.905229052290537,37.177962803987256],[22.901629016290173,37.17289707217762],[22.89802898028981,37.159388454018554],[22.894428944289444,37.13405979497031],[22.901629016290173,37.12055117681125],[22.92322923229233,37.117174022271485],[22.94122941229412,37.12055117681125],[22.955629556295577,37.12392833135101],[22.955629556295577,37.11886259954137],[22.95922959229594,37.117174022271485],[22.962829628296276,37.11379686773172],[22.962829628296276,37.11041971319196],[22.955629556295577,37.10704255865218],[22.95922959229594,37.10535398138231],[22.962829628296276,37.10366540411242],[22.955629556295577,37.095222517763005],[22.97362973629737,37.090156785953354],[22.980829808298097,37.08340247687383],[22.980829808298097,37.07833674506418],[22.962829628296276,37.08340247687383],[22.97362973629737,37.06482812690513],[22.99882998829989,37.032745158777345],[22.99882998829989,37.02092511788817],[23.006030060300617,37.00403934518934],[23.013230132301317,36.98715357249051],[23.006030060300617,36.98715357249051],[22.995229952299525,36.98715357249051],[22.99162991629916,36.98715357249051],[22.99162991629916,36.98208784068086],[23.002430024300253,36.971956377061574],[23.006030060300617,36.96689064525192],[23.006030060300617,36.970267799791685],[23.00963009630098,36.970267799791685],[23.013230132301317,36.97364495433145],[23.013230132301317,36.96351349071216],[23.01683016830168,36.955070604362746],[23.01683016830168,36.94662771801333],[23.013230132301317,36.93818483166392],[23.020430204302045,36.92636479077474],[23.0420304203042,36.88583893629756],[23.04923049230493,36.877396049948146],[23.045630456304565,36.86895316359873],[23.06003060030602,36.852067390899904],[23.08523085230854,36.82842730912154],[23.09243092430924,36.81829584550225],[23.096030960309605,36.80647580461307],[23.09243092430924,36.79803291826366],[23.081630816308177,36.794655763723895],[23.081630816308177,36.789590031914244],[23.09243092430924,36.787901454644356],[23.09963099630997,36.78621287737448],[23.114031140311397,36.78114714556483],[23.11043110431106,36.77439283648529],[23.09963099630997,36.76594995013588],[23.096030960309605,36.76088421832624],[23.09243092430924,36.75581848651659],[23.09243092430924,36.752441331976826],[23.09243092430924,36.74906417743705],[23.096030960309605,36.74399844562741],[23.088830888308877,36.732178404738235],[23.07443074430745,36.73386698200811],[23.06003060030602,36.740621291087635],[23.052830528305293,36.747375600167175],[23.0420304203042,36.735555559278],[23.031230312303137,36.725424095658695],[23.02403024030241,36.71529263203941],[23.038430384303837,36.70684974568999],[23.038430384303837,36.703472591150216],[23.0348303483035,36.6950297048008],[23.031230312303137,36.69334112753093],[23.06003060030602,36.69334112753093],[23.0348303483035,36.67476677756221],[23.0348303483035,36.64943811851397],[23.04923049230493,36.622420882195854],[23.070830708307085,36.59709222314761],[23.081630816308177,36.578517873178896],[23.08523085230854,36.57682929590902],[23.103231032310333,36.570074986829496],[23.11763117631176,36.56163210048008],[23.13563135631358,36.55487779140054],[23.139231392313917,36.54981205959089],[23.14283142831428,36.54643490505113],[23.146431464314645,36.54136917324148],[23.153631536315373,36.54136917324148],[23.146431464314645,36.53630344143184],[23.14283142831428,36.53461486416195],[23.14283142831428,36.52786055508243],[23.146431464314645,36.522794823272775],[23.146431464314645,36.517729091463124],[23.14283142831428,36.51266335965347],[23.13563135631358,36.507597627843836],[23.153631536315373,36.48733470060523],[23.182431824318257,36.47213750517629],[23.204032040320413,36.45694030974735],[23.196831968319685,36.433300227968985],[23.1608316083161,36.44680884612805],[23.153631536315373,36.43498880523887],[23.139231392313917,36.433300227968985],[23.096030960309605,36.44343169158829],[23.08523085230854,36.45356315520759],[23.078030780307813,36.46538319609677],[23.06723067230672,36.47382608244618],[23.06723067230672,36.47889181425582],[23.070830708307085,36.49240043241488],[23.063630636306357,36.50928620511371],[23.052830528305293,36.522794823272775],[23.0348303483035,36.52786055508243],[22.99162991629916,36.52110624600289],[22.97362973629737,36.51941766873301],[22.962829628296276,36.53123770962219],[22.95922959229594,36.54812348232102],[22.937629376293756,36.58696075952831],[22.930429304293057,36.59709222314761],[22.9160291602916,36.605535109497026],[22.876428764287652,36.63086376854527],[22.887228872288716,36.642683809434445],[22.88362883628838,36.65450385032362],[22.844028440284404,36.684898241181514],[22.836828368283676,36.68658681845139],[22.83322833228334,36.67814393210199],[22.818828188281884,36.664635313942924],[22.81522815228152,36.67138962302245],[22.81522815228152,36.67983250937186],[22.818828188281884,36.703472591150216],[22.818828188281884,36.71866978657917],[22.80802808028082,36.73893271381776],[22.800828008280092,36.77608141375518],[22.786427864278636,36.79296718645401],[22.76482764827648,36.80478722734318],[22.736027360273596,36.808164381882946],[22.685626856268584,36.809852959152835],[22.620826208262088,36.803098650073295],[22.577625776257776,36.782835722834704],[22.577625776257776,36.740621291087635],[22.545225452254527,36.72204694111893],[22.534425344253464,36.70684974568999],[22.52362523625237,36.684898241181514],[22.541625416254163,36.684898241181514],[22.54882548825489,36.67814393210199],[22.552425524255256,36.6663238912128],[22.552425524255256,36.65112669578386],[22.545225452254527,36.65112669578386],[22.545225452254527,36.657881004863384],[22.541625416254163,36.664635313942924],[22.534425344253464,36.67138962302245],[22.52362523625237,36.67138962302245],[22.516425164251643,36.6663238912128],[22.51282512825128,36.65619242759351],[22.509225092250944,36.647749541244096],[22.51282512825128,36.64437238670433],[22.5308253082531,36.63255234581514],[22.527225272252736,36.61228941857655],[22.51282512825128,36.60215795495726],[22.50562505625058,36.62410945946574],[22.491224912249123,36.6173551503862],[22.484024840248424,36.607223686766915],[22.484024840248424,36.54812348232102],[22.48762487624876,36.52448340054265],[22.491224912249123,36.50590905057395],[22.51282512825128,36.46707177336664],[22.50562505625058,36.460317464287115],[22.51282512825128,36.4518745779377],[22.49842498424985,36.445120268858176],[22.494824948249487,36.43498880523887],[22.49842498424985,36.4231687643497],[22.50562505625058,36.41134872346052],[22.50562505625058,36.40459441438098],[22.494824948249487,36.40459441438098],[22.491224912249123,36.402905837111106],[22.491224912249123,36.397840105301455],[22.491224912249123,36.39108579622193],[22.48042480424806,36.40121725984122],[22.476824768247695,36.419791609809934],[22.476824768247695,36.438365959778636],[22.469624696246967,36.4518745779377],[22.45522455224554,36.462006041557004],[22.419224192241927,36.47382608244618],[22.408424084240863,36.48733470060523],[22.401224012240135,36.48733470060523],[22.390423904239043,36.47889181425582],[22.37962379623798,36.480580391525706],[22.37242372423725,36.48902327787512],[22.365223652236523,36.497466164224534],[22.35442354423546,36.51266335965347],[22.35442354423546,36.522794823272775],[22.36162361623616,36.532926286892064],[22.368823688236887,36.54812348232102],[22.383223832238343,36.544746327781255],[22.38682386823868,36.55656636867043],[22.383223832238343,36.57176356409937],[22.37242372423725,36.58189502771867],[22.37962379623798,36.58696075952831],[22.38682386823868,36.60215795495726],[22.368823688236887,36.60215795495726],[22.368823688236887,36.61566657311633],[22.368823688236887,36.63086376854527],[22.37242372423725,36.642683809434445],[22.38682386823868,36.64437238670433],[22.38682386823868,36.65112669578386],[22.368823688236887,36.65619242759351],[22.368823688236887,36.67307820029234],[22.38682386823868,36.70684974568999],[22.358023580235823,36.70178401388034],[22.340023400234003,36.727112672928584],[22.32202322023221,36.75750706378646],[22.30402304023042,36.77439283648529],[22.307623076230783,36.794655763723895],[22.293222932229327,36.81998442277212],[22.22122221222213,36.89765897718674],[22.199621996219975,36.90610186353615],[22.174421744217454,36.8909046681072],[22.149221492214934,36.907790440806025],[22.138421384213842,36.91792190442533],[22.134821348213478,36.93143052258439],[22.142021420214206,36.93649625439403],[22.14562145621457,36.94662771801333],[22.149221492214934,36.956759181632634],[22.149221492214934,36.96689064525192],[22.1528215282153,36.98715357249051],[22.156421564215663,37.01417080880864],[22.1528215282153,37.02092511788817],[22.084420844208438,37.032745158777345],[22.048420484204854,37.034433736047234],[22.030420304203062,37.03105658150747],[21.990819908199086,37.012482231538755],[21.954819548195502,37.00403934518934],[21.94401944019441,36.99390788157005],[21.93681936819368,36.98039926341099],[21.926019260192618,36.88415035902767],[21.922419224192254,36.872330318138495],[21.922419224192254,36.86388743178908],[21.926019260192618,36.852067390899904],[21.933219332193318,36.84362450455049],[21.933219332193318,36.83349304093119],[21.929619296192982,36.82167300004201],[21.94401944019441,36.809852959152835],[21.954819548195502,36.803098650073295],[21.96921969219693,36.80141007280342],[21.96921969219693,36.794655763723895],[21.958419584195838,36.794655763723895],[21.94401944019441,36.789590031914244],[21.940419404194046,36.782835722834704],[21.94401944019441,36.77439283648529],[21.93681936819368,36.76594995013588],[21.89361893618937,36.735555559278],[21.890018900189006,36.73048982746835],[21.882818828188277,36.727112672928584],[21.875618756187578,36.727112672928584],[21.857618576185757,36.75581848651659],[21.85401854018542,36.75750706378646],[21.821618216182173,36.808164381882946],[21.80361803618038,36.808164381882946],[21.789217892178925,36.80478722734318],[21.764017640176405,36.794655763723895],[21.75321753217534,36.80478722734318],[21.72801728017282,36.8132301136926],[21.720817208172093,36.82167300004201],[21.71721717217173,36.82167300004201],[21.706417064170637,36.81829584550225],[21.7028170281703,36.825050154581774],[21.695616956169573,36.83855877274084],[21.688416884168845,36.850378813630016],[21.69201692016921,36.85882169997943],[21.69201692016921,36.867264586328844],[21.688416884168845,36.877396049948146],[21.688416884168845,36.8909046681072],[21.69201692016921,36.9010361317265],[21.706417064170637,36.91792190442533],[21.710017100171,36.92636479077474],[21.710017100171,36.94325056347357],[21.7028170281703,36.956759181632634],[21.688416884168845,36.965202067982034],[21.66681666816669,36.9601363361724],[21.67761677616778,36.96351349071216],[21.681216812168117,36.96689064525192],[21.681216812168117,36.97364495433145],[21.674016740167417,36.97364495433145],[21.66681666816669,36.970267799791685],[21.663216632166325,36.9601363361724],[21.656016560165597,36.99390788157005],[21.630816308163077,37.02092511788817],[21.598415984159857,37.04625377693641],[21.580415804158037,37.0766481677943],[21.569615696156973,37.115485445001596],[21.56601566015661,37.15601129947879],[21.573215732157337,37.19315999941621],[21.59121591215913,37.220177235734326],[21.656016560165597,37.26070309021151],[21.681216812168117,37.284343171989875],[21.695616956169573,37.31642614011764],[21.69201692016921,37.35695199459482],[21.681216812168117,37.3789034991033],[21.674016740167417,37.39578927180213],[21.605616056160557,37.49879248526497],[21.569615696156973,37.54607264882169],[21.55161551615518,37.56126984425063],[21.46521465214653,37.61023858507723],[21.443614436144372,37.61868147142664],[21.43281432814328,37.627124357776054],[21.411214112141124,37.647387285014645],[21.40041400414006,37.65583017136406],[21.342813428134292,37.669338789523124],[21.3248132481325,37.66427305771347],[21.317613176131772,37.63725582139536],[21.314013140131408,37.63725582139536],[21.310413104131044,37.647387285014645],[21.310413104131044,37.65751874863395],[21.30681306813068,37.66596163498336],[21.29961299612998,37.67271594406289],[21.310413104131044,37.69297887130148],[21.314013140131408,37.709864644000305],[21.310413104131044,37.72675041669913],[21.296012960129616,37.772342002985965],[21.285212852128524,37.78585062114503],[21.270812708127096,37.79260493022457],[21.227612276122755,37.81117928019327],[21.12321123211234,37.8381965165114],[21.112411124111247,37.84326224832104],[21.108811088110883,37.855082289210216],[21.112411124111247,37.87027948463917],[21.10521105211052,37.878722370988584],[21.134011340113403,37.946265461783895],[21.14121141211413,37.946265461783895],[21.162811628116287,37.92937968908507],[21.2060120601206,37.946265461783895],[21.252812528125276,37.976659852641774],[21.278012780127796,38.00029993442014],[21.292412924129252,37.996922779880364],[21.303213032130316,38.003677088959904],[21.314013140131408,38.01380855257919],[21.3248132481325,38.022251438928606],[21.3248132481325,38.029005748008146],[21.321213212132136,38.03069432527802],[21.321213212132136,38.03238290254791],[21.317613176131772,38.03576005708767],[21.310413104131044,38.03238290254791],[21.29961299612998,38.02731717073826],[21.288812888128888,38.02056286165873],[21.285212852128524,38.01549712984908],[21.328413284132836,38.06953160248533],[21.3320133201332,38.07628591156485],[21.368013680136812,38.121877497851685],[21.371613716137176,38.13200896147099],[21.37521375213754,38.143829002360164],[21.37521375213754,38.204617784075936],[21.37521375213754,38.21981497950489],[21.386013860138604,38.211372093155475],[21.396813968139696,38.19279774318676],[21.40761407614076,38.18604343410723],[21.40761407614076,38.19786347499641],[21.404014040140396,38.20799493861571],[21.40041400414006,38.21474924769524],[21.40761407614076,38.20799493861571],[21.422014220142216,38.20292920680606],[21.44001440014401,38.1995520522663],[21.4580145801458,38.1995520522663],[21.472414724147256,38.19617489772652],[21.522815228152297,38.16578050686864],[21.60201602016022,38.15227188870958],[21.623616236162377,38.153960465979466],[21.64161641616417,38.16240335232888],[21.674016740167417,38.17928912502771],[21.7028170281703,38.204617784075936],[21.74241742417425,38.27047229760137],[21.764017640176405,38.2958009566496],[21.839618396183965,38.33294965658703],[21.850418504185058,38.34139254293645],[21.915219152191526,38.331261079317144],[21.93681936819368,38.331261079317144],[21.947619476194774,38.33294965658703],[21.954819548195502,38.336326811126796],[21.965619656196566,38.329572502047256],[21.976419764197658,38.32281819296773],[21.990819908199086,38.31944103842797],[22.008820088200878,38.316063883888205],[22.01962019620197,38.31268672934843],[22.026820268202698,38.304243842999014],[22.030420304203062,38.29242380210984],[22.037620376203762,38.28229233849055],[22.048420484204854,38.27553802941101],[22.07722077220774,38.26371798852183],[22.088020880208802,38.26202941125196],[22.098820988209894,38.26202941125196],[22.109621096210958,38.267095143061596],[22.113221132211322,38.267095143061596],[22.12042120421205,38.26034083398207],[22.12762127621278,38.25696367944231],[22.138421384213842,38.253586524902545],[22.142021420214206,38.248520793092894],[22.1528215282153,38.22319213404465],[22.160021600215998,38.21306067042535],[22.17082170821709,38.20968351588559],[22.206822068220703,38.1995520522663],[22.21042210422104,38.19786347499641],[22.214022140221402,38.19279774318676],[22.217622176221766,38.18773201137711],[22.224822248222495,38.18604343410723],[22.257222572225743,38.18604343410723],[22.300423004230055,38.17760054775782],[22.31122311223112,38.17253481594817],[22.332823328233303,38.17928912502771],[22.34722347223473,38.170846238678294],[22.365223652236523,38.1590261977891],[22.394023940239407,38.148894734169815],[22.4048240482405,38.142140425090275],[22.415624156241563,38.13707469328064],[22.426424264242655,38.142140425090275],[22.433624336243383,38.143829002360164],[22.51282512825128,38.128631806931224],[22.620826208262088,38.08304022064439],[22.68202682026822,38.066154447945564],[22.68922689226892,38.059400138866025],[22.700027000270012,38.05602298432626],[22.779227792277936,38.00029993442014],[22.797227972279728,37.976659852641774],[22.800828008280092,37.97328269810201],[22.82242822428225,37.96990554356225],[22.851228512285132,37.94795403905377],[22.86562865628656,37.939511152704355],[22.88362883628838,37.93782257543448],[22.89802898028981,37.939511152704355],[22.92322923229233,37.946265461783895],[22.930429304293057,37.946265461783895],[22.937629376293756,37.946265461783895],[22.944829448294485,37.946265461783895],[22.952029520295213,37.94964261632366],[22.97362973629737,37.97328269810201],[22.97362973629737,37.97834842991166],[22.96642966429664,37.99016847080084],[22.952029520295213,38.001988511690016],[22.94122941229412,38.00705424349967],[22.92322923229233,38.01211997530932],[22.89802898028981,38.02731717073826],[22.880028800288017,38.029005748008146],[22.88362883628838,38.03238290254791],[22.887228872288716,38.03407147981778],[22.854828548285496,38.03576005708767],[22.876428764287652,38.049268675246736],[22.88362883628838,38.05433440705639],[22.89802898028981,38.05602298432626],[22.912429124291236,38.059400138866025],[22.93402934029342,38.07797448883474],[22.94122941229412,38.08304022064439],[22.970029700297005,38.081351643374504],[23.020430204302045,38.064465870675676],[23.038430384303837,38.06953160248533],[23.06723067230672,38.059400138866025],[23.09963099630997,38.0627772934058],[23.171631716317165,38.079663066104615],[23.189631896318957,38.09486026153357],[23.207632076320778,38.09823741607333],[23.21843218432184,38.10330314788298],[23.21123211232114,38.11512318877216],[23.19323193231932,38.126943229661336],[23.17523175231753,38.13200896147099],[23.17523175231753,38.13707469328064],[23.17523175231753,38.14551757963005],[23.189631896318957,38.14551757963005],[23.21123211232114,38.15058331143969],[23.222032220322205,38.15227188870958],[23.222032220322205,38.1590261977891],[23.214832148321477,38.16071477505899],[23.14283142831428,38.16746908413852],[23.128431284312853,38.17253481594817],[23.15003150031501,38.18604343410723],[23.121231212312125,38.20799493861571],[23.11043110431106,38.20968351588559],[23.078030780307813,38.18604343410723],[23.06723067230672,38.18266627956747],[23.031230312303137,38.18604343410723],[23.031230312303137,38.19279774318676],[23.052830528305293,38.19279774318676],[23.038430384303837,38.20799493861571],[23.02403024030241,38.216437824965126],[23.00963009630098,38.21981497950489],[22.952029520295213,38.22488071131454],[22.93402934029342,38.22150355677476],[22.92322923229233,38.206306361345824],[22.937629376293756,38.211372093155475],[22.952029520295213,38.20968351588559],[22.962829628296276,38.204617784075936],[22.970029700297005,38.19279774318676],[22.952029520295213,38.19279774318676],[22.92322923229233,38.19786347499641],[22.9088290882909,38.19279774318676],[22.894428944289444,38.241766484013354],[22.887228872288716,38.241766484013354],[22.880028800288017,38.226569288584415],[22.880028800288017,38.231635020394066],[22.876428764287652,38.23670075220372],[22.876428764287652,38.241766484013354],[22.854828548285496,38.23670075220372],[22.818828188281884,38.233323597663954],[22.804428044280456,38.226569288584415],[22.76482764827648,38.248520793092894],[22.772027720277208,38.25865225671218],[22.790027900279,38.27047229760137],[22.797227972279728,38.28229233849055],[22.779227792277936,38.289046647570075],[22.743227432274324,38.29748953391949],[22.718027180271804,38.310998152078554],[22.703627036270376,38.31437530661832],[22.696426964269648,38.316063883888205],[22.692826928269284,38.32281819296773],[22.674826748267492,38.34308112020632],[22.685626856268584,38.36165547017504],[22.671226712267128,38.38191839741363],[22.646026460264608,38.39036128376304],[22.628026280262816,38.371786933794326],[22.646026460264608,38.37009835652445],[22.646026460264608,38.36165547017504],[22.635226352263544,38.356589738365386],[22.62442624426245,38.36165547017504],[22.61362613626136,38.36334404744491],[22.59922599225993,38.3549011610955],[22.592025920259204,38.34476969747621],[22.58842588425884,38.336326811126796],[22.58842588425884,38.331261079317144],[22.592025920259204,38.32788392477738],[22.595625956259568,38.32619534750749],[22.59922599225993,38.32450677023762],[22.60642606426066,38.32281819296773],[22.60642606426066,38.316063883888205],[22.59922599225993,38.31268672934843],[22.59922599225993,38.310998152078554],[22.59922599225993,38.30762099753879],[22.59922599225993,38.30255526572914],[22.58842588425884,38.29242380210984],[22.577625776257776,38.29073522483996],[22.56322563225632,38.294112379379726],[22.545225452254527,38.30255526572914],[22.545225452254527,38.3059324202689],[22.534425344253464,38.32281819296773],[22.5308253082531,38.32281819296773],[22.527225272252736,38.329572502047256],[22.527225272252736,38.331261079317144],[22.527225272252736,38.33463823385691],[22.5380253802538,38.336326811126796],[22.52362523625237,38.35827831563526],[22.476824768247695,38.40555847919198],[22.469624696246967,38.42075567462092],[22.46242462424624,38.42582140643057],[22.458824588245903,38.42750998370046],[22.44802448024481,38.43088713824022],[22.401224012240135,38.4528386427487],[22.401224012240135,38.4427071791294],[22.408424084240863,38.42582140643057],[22.408424084240863,38.415689942811284],[22.37962379623798,38.398804170112456],[22.37242372423725,38.392049861032916],[22.37962379623798,38.3836069746835],[22.38682386823868,38.38022982014374],[22.390423904239043,38.38022982014374],[22.394023940239407,38.38529555195339],[22.39762397623977,38.37516408833409],[22.39762397623977,38.36840977925456],[22.390423904239043,38.36165547017504],[22.37962379623798,38.35827831563526],[22.38682386823868,38.351524006555735],[22.383223832238343,38.34308112020632],[22.368823688236887,38.34139254293645],[22.34722347223473,38.34814685201597],[22.32202322023221,38.351524006555735],[22.2860228602286,38.34814685201597],[22.2788227882279,38.35321258382562],[22.268022680226807,38.35827831563526],[22.25362253622538,38.36165547017504],[22.242822428224287,38.35827831563526],[22.23562235622356,38.35827831563526],[22.224822248222495,38.35996689290515],[22.21042210422104,38.35321258382562],[22.19602196021961,38.33970396566656],[22.188821888218882,38.32281819296773],[22.181621816218183,38.329572502047256],[22.174421744217454,38.34308112020632],[22.167221672216726,38.351524006555735],[22.160021600215998,38.35321258382562],[22.149221492214934,38.35321258382562],[22.14562145621457,38.35321258382562],[22.149221492214934,38.36334404744491],[22.131221312213142,38.373475511064214],[22.10242102421026,38.38022982014374],[22.048420484204854,38.398804170112456],[22.030420304203062,38.398804170112456],[22.012420124201242,38.392049861032916],[21.98721987219872,38.41062421100163],[21.958419584195838,38.41231278827151],[21.929619296192982,38.40218132465222],[21.890018900189006,38.38022982014374],[21.87921879218794,38.378541242873865],[21.864818648186485,38.37685266560398],[21.857618576185757,38.38022982014374],[21.850418504185058,38.38867270649315],[21.846818468184694,38.39542701557269],[21.839618396183965,38.398804170112456],[21.832418324183237,38.39711559284257],[21.782017820178197,38.36334404744491],[21.774817748177497,38.35321258382562],[21.771217712177133,38.33294965658703],[21.764017640176405,38.32788392477738],[21.74241742417425,38.33801538839667],[21.71721717217173,38.35827831563526],[21.65961659616596,38.35827831563526],[21.64161641616417,38.3549011610955],[21.62721627216274,38.34814685201597],[21.612816128161285,38.34476969747621],[21.598415984159857,38.351524006555735],[21.53361533615336,38.31437530661832],[21.522815228152297,38.2958009566496],[21.519215192151933,38.2958009566496],[21.50841508415084,38.30255526572914],[21.494014940149412,38.304243842999014],[21.48321483214832,38.3059324202689],[21.47601476014762,38.3059324202689],[21.468814688146892,38.31268672934843],[21.429214292142916,38.331261079317144],[21.443614436144372,38.33463823385691],[21.461614616146164,38.32619534750749],[21.47601476014762,38.316063883888205],[21.49041490414905,38.309309574808665],[21.49041490414905,38.316063883888205],[21.486814868148684,38.32112961569784],[21.48321483214832,38.32450677023762],[21.48321483214832,38.329572502047256],[21.49041490414905,38.336326811126796],[21.479614796147956,38.34139254293645],[21.47601476014762,38.34308112020632],[21.47601476014762,38.351524006555735],[21.479614796147956,38.35321258382562],[21.49041490414905,38.35827831563526],[21.468814688146892,38.35827831563526],[21.47601476014762,38.371786933794326],[21.46521465214653,38.36840977925456],[21.4580145801458,38.366721201984674],[21.4508145081451,38.366721201984674],[21.443614436144372,38.371786933794326],[21.436414364143644,38.36840977925456],[21.43281432814328,38.366721201984674],[21.422014220142216,38.36334404744491],[21.429214292142916,38.3836069746835],[21.414814148141488,38.393738438302805],[21.396813968139696,38.398804170112456],[21.378813788137876,38.398804170112456],[21.371613716137176,38.408935633731744],[21.360813608136084,38.46803583817764],[21.339213392133928,38.48829876541623],[21.328413284132836,38.49505307449577],[21.321213212132136,38.496741651765646],[21.317613176131772,38.49505307449577],[21.30681306813068,38.49505307449577],[21.310413104131044,38.48661018814636],[21.353613536135356,38.43257571551011],[21.339213392133928,38.43257571551011],[21.342813428134292,38.429198560970335],[21.346413464134656,38.42582140643057],[21.342813428134292,38.415689942811284],[21.339213392133928,38.40386990192211],[21.335613356133564,38.39542701557269],[21.328413284132836,38.392049861032916],[21.317613176131772,38.39036128376304],[21.29961299612998,38.38191839741363],[21.292412924129252,38.37685266560398],[21.292412924129252,38.373475511064214],[21.296012960129616,38.373475511064214],[21.29961299612998,38.371786933794326],[21.292412924129252,38.36334404744491],[21.278012780127796,38.37009835652445],[21.270812708127096,38.36840977925456],[21.267212672126732,38.36165547017504],[21.267212672126732,38.35827831563526],[21.270812708127096,38.3549011610955],[21.263612636126368,38.346458274746084],[21.24921249212494,38.336326811126796],[21.238412384123848,38.331261079317144],[21.23121231212312,38.329572502047256],[21.213212132121328,38.331261079317144],[21.2060120601206,38.33463823385691],[21.1988119881199,38.33970396566656],[21.188011880118808,38.34139254293645],[21.18081180811808,38.331261079317144],[21.188011880118808,38.32619534750749],[21.19161191611917,38.32450677023762],[21.1988119881199,38.32281819296773],[21.195211952119536,38.32112961569784],[21.184411844118443,38.31944103842797],[21.17361173611738,38.31268672934843],[21.17361173611738,38.30255526572914],[21.15561155611556,38.304243842999014],[21.14841148411486,38.31437530661832],[21.144811448114496,38.32788392477738],[21.14121141211413,38.336326811126796],[21.126811268112675,38.33970396566656],[21.09801098010982,38.34139254293645],[21.083610836108363,38.34308112020632],[21.09801098010982,38.34814685201597],[21.10521105211052,38.35321258382562],[21.108811088110883,38.35996689290515],[21.10521105211052,38.371786933794326],[21.09801098010982,38.366721201984674],[21.09081090810909,38.36334404744491],[21.101611016110155,38.38022982014374],[21.10521105211052,38.38529555195339],[21.101611016110155,38.378541242873865],[21.112411124111247,38.373475511064214],[21.12321123211234,38.38022982014374],[21.134011340113403,38.38867270649315],[21.14121141211413,38.398804170112456],[21.12321123211234,38.41062421100163],[21.11601116011161,38.408935633731744],[21.10521105211052,38.398804170112456],[21.094410944109455,38.40218132465222],[21.087210872108727,38.41062421100163],[21.080010800108,38.42075567462092],[21.080010800108,38.43257571551011],[21.083610836108363,38.434264292779986],[21.083610836108363,38.435952870049874],[21.083610836108363,38.441018601859525],[21.094410944109455,38.43088713824022],[21.10521105211052,38.42582140643057],[21.11601116011161,38.42750998370046],[21.119611196111975,38.441018601859525],[21.10521105211052,38.43257571551011],[21.112411124111247,38.44608433366916],[21.101611016110155,38.46465868363788],[21.10521105211052,38.47310156998729],[21.10521105211052,38.48154445633671],[21.09801098010982,38.48154445633671],[21.09081090810909,38.48323303360658],[21.080010800108,38.48829876541623],[21.087210872108727,38.491675919955995],[21.094410944109455,38.49336449722588],[21.09801098010982,38.49505307449577],[21.094410944109455,38.496741651765646],[21.09081090810909,38.50011880630541],[21.083610836108363,38.5018073835753],[21.094410944109455,38.518693156274125],[21.09801098010982,38.52544746535365],[21.094410944109455,38.53220177443319],[21.087210872108727,38.53726750624283],[21.080010800108,38.53220177443319],[21.0728107281073,38.52544746535365],[21.062010620106207,38.52207031081389],[21.058410584105843,38.518693156274125],[21.04761047610478,38.5119388471946],[21.036810368103687,38.50687311538495],[21.02961029610296,38.5119388471946],[21.02961029610296,38.520381733544],[21.018810188101895,38.53557892897295],[21.01521015210153,38.54571039259224],[21.026010260102595,38.586236247069436],[21.026010260102595,38.6081877515779],[21.00441004410044,38.62676210154662],[20.986409864098647,38.663910801484036],[20.97920979209792,38.67235368783345],[20.93960939609397,38.67235368783345],[20.925209252092515,38.6774194196431],[20.91440914409145,38.685862305992515],[20.907209072090723,38.699370924151566],[20.882008820088203,38.778734055836054],[20.874808748087474,38.79561982853488],[20.860408604086047,38.804062714884296],[20.84600846008462,38.798996983074645],[20.831608316083162,38.78717694218547],[20.817208172081735,38.77366832402642],[20.810008100081006,38.761848283137226],[20.80280802808028,38.77366832402642],[20.799207992079914,38.77197974675653],[20.792007920079215,38.76691401494688],[20.784807848078486,38.768602592216766],[20.774007740077394,38.76015970586735],[20.77040770407706,38.765225437677],[20.766807668076694,38.77366832402642],[20.76320763207633,38.78211121037583],[20.730807308073082,38.804062714884296],[20.730807308073082,38.80912844669395],[20.73800738007381,38.82263706485301],[20.741607416074174,38.841211414821714],[20.748807488074874,38.85640861025067],[20.766807668076694,38.86485149660008],[20.78840788407885,38.86316291933019],[20.799207992079914,38.86485149660008],[20.806408064080642,38.868228651139844],[20.80280802808028,38.873294382949496],[20.79560795607958,38.88004869202902],[20.784807848078486,38.883425846568784],[20.76320763207633,38.8918687329182],[20.756007560075602,38.90706592834714],[20.752407524075238,38.92564027831585],[20.756007560075602,38.94083747374479],[20.77040770407706,38.95941182371351],[20.774007740077394,38.950968937364095],[20.781207812078122,38.935771741935156],[20.799207992079914,38.92564027831585],[20.817208172081735,38.9205745465062],[20.835208352083527,38.929017432855616],[20.849608496084954,38.94421462828457],[20.860408604086047,38.9611004009834],[20.867608676086775,38.9611004009834],[20.87120871208714,38.952657514633984],[20.87120871208714,38.94759178282433],[20.87120871208714,38.94421462828457],[20.867608676086775,38.94083747374479],[20.867608676086775,38.93914889647492],[20.87120871208714,38.935771741935156],[20.87120871208714,38.93239458739538],[20.867608676086775,38.92564027831585],[20.885608856088567,38.92564027831585],[20.90360903609036,38.92732885558574],[20.91440914409145,38.935771741935156],[20.92160921609218,38.95434609190386],[20.92880928809288,38.95434609190386],[20.936009360093607,38.94421462828457],[20.9468094680947,38.94421462828457],[20.961209612096127,38.945903205554444],[20.975609756097555,38.94759178282433],[20.99000990009901,38.94252605101468],[20.99720997209974,38.93746031920503],[21.008010080100803,38.93408316466527],[21.026010260102595,38.93239458739538],[21.02961029610296,38.92564027831585],[21.026010260102595,38.91213166015679],[21.026010260102595,38.89862304199774],[21.033210332103323,38.8918687329182],[21.04761047610478,38.888491578378435],[21.062010620106207,38.88173726929891],[21.083610836108363,38.86485149660008],[21.087210872108727,38.873294382949496],[21.087210872108727,38.87836011475913],[21.094410944109455,38.88173726929891],[21.09801098010982,38.88511442383867],[21.09801098010982,38.8918687329182],[21.09081090810909,38.903688773807374],[21.101611016110155,38.910443082886914],[21.119611196111975,38.910443082886914],[21.137611376113767,38.9020001965375],[21.159211592115923,38.88004869202902],[21.159211592115923,38.87836011475913],[21.16641166411665,38.87498296021937],[21.17361173611738,38.873294382949496],[21.177211772117715,38.87667153748926],[21.18081180811808,38.88511442383867],[21.17361173611738,38.8918687329182],[21.170011700117016,38.89524588745796],[21.16641166411665,38.910443082886914],[21.162811628116287,38.91213166015679],[21.159211592115923,38.910443082886914],[21.15561155611556,38.91382023742668],[21.14121141211413,38.930706010125505],[21.14121141211413,38.94083747374479],[21.14841148411486,38.95434609190386],[21.14121141211413,38.96278897825327],[21.144811448114496,38.971231864602686],[21.152011520115195,38.97629759641234],[21.159211592115923,38.97460901914245],[21.159211592115923,38.998249100920816],[21.134011340113403,39.023577759969044],[21.083610836108363,39.06241503717635],[21.076410764107635,39.0573493053667],[21.0728107281073,39.050594996287174],[21.0728107281073,39.04384068720765],[21.080010800108,39.03708637812811],[21.06561065610657,39.04046353266787],[21.062010620106207,39.038774955398],[21.05481054810548,39.03708637812811],[21.036810368103687,39.02188918269917],[21.058410584105843,39.008380564540104],[21.00441004410044,39.015134873619644],[21.00441004410044,39.02188918269917],[20.99000990009901,39.023577759969044],[20.97920979209792,39.03033206904858],[20.968409684096855,39.03708637812811],[20.96480964809649,39.038774955398],[20.9540095400954,39.033709223588346],[20.943209432094335,39.038774955398],[20.936009360093607,39.04721784174741],[20.936009360093607,39.0573493053667],[20.93960939609397,39.060726459906476],[20.9468094680947,39.06241503717635],[20.9468094680947,39.06916934625589],[20.93960939609397,39.06916934625589],[20.932409324093243,39.06410361444624],[20.92160921609218,39.06410361444624],[20.910809108091087,39.06916934625589],[20.900009000089995,39.07761223260529],[20.892808928089295,39.07761223260529],[20.88920889208893,39.067480768986],[20.87120871208714,39.05903788263659],[20.867608676086775,39.05228357355706],[20.87120871208714,39.04384068720765],[20.882008820088203,39.04046353266787],[20.885608856088567,39.03708637812811],[20.84600846008462,39.03708637812811],[20.860408604086047,39.04215210993776],[20.856808568085683,39.048906419017285],[20.856808568085683,39.05903788263659],[20.85320853208532,39.06579219171611],[20.84600846008462,39.06241503717635],[20.84600846008462,39.067480768986],[20.84600846008462,39.06916934625589],[20.84600846008462,39.070857923525764],[20.84600846008462,39.07254650079565],[20.84600846008462,39.07761223260529],[20.83880838808389,39.07761223260529],[20.831608316083162,39.07761223260529],[20.8280082800828,39.07423507806553],[20.824408244082434,39.06916934625589],[20.83880838808389,39.091120850764355],[20.835208352083527,39.10800662346318],[20.8208082080821,39.11476093254272],[20.810008100081006,39.10462946892342],[20.806408064080642,39.111383778002946],[20.80280802808028,39.10462946892342],[20.79560795607958,39.097875159843895],[20.78840788407885,39.09449800530412],[20.777607776077758,39.091120850764355],[20.777607776077758,39.08267796441494],[20.792007920079215,39.08098938714507],[20.78840788407885,39.07254650079565],[20.78840788407885,39.060726459906476],[20.784807848078486,39.048906419017285],[20.777607776077758,39.04215210993776],[20.77040770407706,39.03708637812811],[20.76320763207633,39.03202064631846],[20.756007560075602,39.02188918269917],[20.741607416074174,39.028643491778695],[20.74520745207454,39.01851202815941],[20.74520745207454,39.015134873619644],[20.748807488074874,39.013446296349755],[20.756007560075602,39.015134873619644],[20.80280802808028,38.98474048276175],[20.824408244082434,38.97798617368221],[20.8280082800828,38.971231864602686],[20.831608316083162,38.96447755552316],[20.8280082800828,38.9611004009834],[20.8208082080821,38.96278897825327],[20.80280802808028,38.971231864602686],[20.774007740077394,38.97798617368221],[20.766807668076694,38.97798617368221],[20.756007560075602,38.97460901914245],[20.756007560075602,38.9695432873328],[20.74520745207454,38.95772324644362],[20.734407344073446,38.94928036009421],[20.730807308073082,38.95772324644362],[20.727207272072718,38.966166132793035],[20.72000720007202,38.972920441872574],[20.71280712807129,38.9796747509521],[20.709207092070926,38.98474048276175],[20.709207092070926,38.9898062145714],[20.705607056070562,38.993183369111165],[20.702007020070198,38.99656052365093],[20.702007020070198,38.998249100920816],[20.705607056070562,39.00500341000034],[20.709207092070926,39.008380564540104],[20.71280712807129,39.01175771907987],[20.716407164071654,39.015134873619644],[20.705607056070562,39.048906419017285],[20.68760687606877,39.07254650079565],[20.658806588065886,39.08943227349448],[20.626406264062638,39.10462946892342],[20.597605976059754,39.12320381889214],[20.518405184051858,39.200878373306736],[20.489604896048974,39.216075568735675],[20.47880478804788,39.22451845508509],[20.482404824048245,39.23464991870439],[20.47880478804788,39.243092805053806],[20.475204752047517,39.25491284594298],[20.475204752047517,39.26673288683216],[20.482404824048245,39.27517577318157],[20.482404824048245,39.2819300822611],[20.47160471604718,39.278552927721336],[20.46080460804609,39.27686435045146],[20.45360453604536,39.280241504991224],[20.450004500044997,39.28868439134064],[20.432004320043205,39.28361865953099],[20.417604176041777,39.28361865953099],[20.406804068040685,39.28868439134064],[20.392403924039257,39.29712727769005],[20.367203672036737,39.28699581407075],[20.324003240032397,39.30388158676958],[20.291602916029177,39.33427597762747],[20.291602916029177,39.36467036848535],[20.27720277202772,39.37480183210465],[20.27000270002702,39.38662187299383],[20.25920259202593,39.39675333661313],[20.237602376023773,39.40013049115289],[20.237602376023773,39.40688480023242],[20.241202412024137,39.40688480023242],[20.241202412024137,39.41195053204207],[20.23400234002341,39.420393418391484],[20.223202232022317,39.43559061382042],[20.216002160021617,39.440656345630074],[20.23400234002341,39.44403350016984],[20.2520025200252,39.44403350016984],[20.266402664026657,39.447410654709614],[20.262802628026293,39.460919272868665],[20.255602556025565,39.46936215921808],[20.216002160021617,39.487936509186795],[20.216002160021617,39.49469081826632],[20.23400234002341,39.49469081826632],[20.2448024480245,39.49131366372656],[20.255602556025565,39.49300224099645],[20.262802628026293,39.50144512734586],[20.262802628026293,39.508199436425386],[20.2520025200252,39.51495374550491],[20.237602376023773,39.52001947731456],[20.223202232022317,39.52170805458445],[20.223202232022317,39.508199436425386],[20.212402124021253,39.51495374550491],[20.20160201602016,39.52001947731456],[20.190801908019097,39.52170805458445],[20.20160201602016,39.530150940933865],[20.18360183601837,39.53352809547363],[20.165601656016577,39.5352166727435],[20.15120151201512,39.53352809547363],[20.13320133201333,39.530150940933865],[20.140401404014057,39.53859382728328],[20.14400144001442,39.54703671363269],[20.147601476014756,39.55716817725198],[20.147601476014756,39.570676795411046],[20.154801548015485,39.56392248633152],[20.162001620016213,39.56392248633152],[20.16920169201694,39.56898821814116],[20.172801728017276,39.57743110449057],[20.17640176401764,39.580808259030334],[20.172801728017276,39.592628299919525],[20.172801728017276,39.59769403172916],[20.17640176401764,39.59938260899905],[20.187201872018733,39.6044483408087],[20.18360183601837,39.62471126804729],[20.165601656016577,39.633154154396706],[20.147601476014756,39.63821988620636],[20.140401404014057,39.64159704074612],[20.136801368013693,39.64666277255577],[20.122401224012236,39.65679423617506],[20.115201152011537,39.65848281344495],[20.104401044010444,39.66185996798471],[20.097200972009716,39.66523712252447],[20.090000900009017,39.67368000887389],[20.04320043200434,39.68043431795343],[20.021600216002156,39.68718862703295],[20.010800108001092,39.69394293611248],[20.003600036000364,39.692254358842604],[20,39.69394293611248],[19.996399963999636,39.692254358842604],[19.996399963999636,39.68718862703295],[19.989199891998936,39.68718862703295],[19.981999819998208,39.70069724519202],[19.985599855998572,39.717583017890846],[20.003600036000364,39.747977408748724],[19.985599855998572,39.753043140558376],[19.981999819998208,39.75810887236803],[19.996399963999636,39.78343753141627],[20.014400144001456,39.832406272242864],[20.01800018000182,39.84422631313204],[20.010800108001092,39.86617781764052],[20,39.87124354945017],[19.981999819998208,39.872932126720045],[19.960399603996052,39.877997858529696],[19.960399603996052,39.88137501306946],[19.960399603996052,39.88475216760922],[19.960399603996052,39.88981789941887],[19.953199531995324,39.893195053958635],[19.94239942399426,39.89826078576829],[19.931599315993168,39.90163794030805],[19.913599135991376,39.90163794030805],[19.906399063990648,39.9067036721177],[19.906399063990648,39.913457981197226],[19.920799207992076,39.92696659935629],[19.931599315993168,39.93372090843583],[19.94239942399426,39.940475217515356],[19.92439924399244,39.95229525840453],[19.877598775987764,40.02152692646972],[19.870398703987036,40.035035544628784],[19.863198631986336,40.045167008248086],[19.855998559985608,40.05023274005774],[19.82359823598236,40.05023274005774],[19.805598055980568,40.0536098945975],[19.794797947979475,40.05698704913726],[19.805598055980568,40.06374135821679],[19.776797767977683,40.07724997637585],[19.77319773197732,40.07049566729633],[19.77319773197732,40.06880709002644],[19.769597695976955,40.06374135821679],[19.76599765997662,40.0721842445662],[19.762397623976256,40.07724997637585],[19.755197551975527,40.080627130915616],[19.7479974799748,40.08400428545538],[19.7479974799748,40.08907001726503],[19.7407974079741,40.10089005815421],[19.73359733597337,40.11102152177351],[19.729997299973007,40.107644367233746],[19.719197191971915,40.11608725358316],[19.654396543965447,40.13297302628199],[19.59679596795968,40.15830168533023],[19.56439564395646,40.180253189838695],[19.510395103951055,40.19376180799776],[19.477994779947807,40.21402473523635],[19.38079380793809,40.29507644419073],[19.369993699936998,40.30858506234978],[19.366393663936634,40.31702794869919],[19.351993519935206,40.362619534986024],[19.344793447934478,40.374439575875215],[19.308793087930894,40.40145681219333],[19.297992979929802,40.41327685308251],[19.294392943929438,40.41834258489216],[19.290792907929074,40.42003116216205],[19.290792907929074,40.42678547124157],[19.315993159931594,40.43860551213075],[19.333993339933414,40.43860551213075],[19.348393483934842,40.430162625781335],[19.384393843938454,40.39807965765357],[19.391593915939154,40.38625961676439],[19.40599405994061,40.362619534986024],[19.41319413194134,40.347422339557085],[19.41319413194134,40.33391372139802],[19.423994239942402,40.33053656685826],[19.44559445594456,40.33391372139802],[19.467194671946714,40.34066803047756],[19.474394743947443,40.34911091682697],[19.48159481594817,40.43860551213075],[19.477994779947807,40.4538027075597],[19.452794527945287,40.46562274844888],[19.42039420394204,40.492639984766996],[19.391593915939154,40.521345798355],[19.38799387993882,40.54329730286348],[19.391593915939154,40.536542993783954],[19.39519395193952,40.529788684704414],[19.398793987939882,40.521345798355],[19.40599405994061,40.52303437562489],[19.41319413194134,40.52303437562489],[19.434794347943495,40.50614860292606],[19.44559445594456,40.51121433473571],[19.452794527945287,40.529788684704414],[19.45639456394565,40.55342876648278],[19.441994419944194,40.57369169372137],[19.416794167941674,40.58382315734066],[19.391593915939154,40.57875742553101],[19.38799387993882,40.550051611943005],[19.38079380793809,40.56693738464183],[19.308793087930894,40.644611939056446],[19.30519305193053,40.65305482540586],[19.308793087930894,40.66487486629504],[19.323193231932322,40.675006329914325],[19.33759337593378,40.68344921626374],[19.351993519935206,40.69358067988304],[19.359193591935934,40.71046645258187],[19.3627936279363,40.72566364801081],[19.366393663936634,40.786452429726594],[19.369993699936998,40.801649625155534],[19.377193771937726,40.81346966604471],[19.39519395193952,40.81684682058447],[19.40599405994061,40.820223975124236],[19.402394023940246,40.82866686147365],[19.39519395193952,40.83879832509295],[19.391593915939154,40.84555263417248],[19.398793987939882,40.85230694325202],[19.40599405994061,40.86074982960143],[19.409594095940975,40.86750413868096],[19.41319413194134,40.869192715950845],[19.40599405994061,40.88101275684002],[19.391593915939154,40.89452137499909],[19.38079380793809,40.90802999315814],[19.391593915939154,40.91309572496779],[19.40599405994061,40.91816145677744],[19.423994239942402,40.94011296128592],[19.441994419944194,40.94855584763533],[19.427594275942766,40.93673580674614],[19.434794347943495,40.91309572496779],[19.427594275942766,40.8928327977292],[19.427594275942766,40.87256987049061],[19.434794347943495,40.87256987049061],[19.43839438394386,40.88607848864967],[19.43839438394386,40.882701334109896],[19.43839438394386,40.87932417957013],[19.441994419944194,40.87256987049061],[19.452794527945287,40.88607848864967],[19.50679506795069,40.904652838618375],[19.524795247952483,40.919850034047315],[19.524795247952483,40.945178693095556],[19.51399513995142,40.96544162033415],[19.503195031950327,40.982327393032975],[19.4959949599496,41.00259032027158],[19.492394923949234,40.97726166122334],[19.477994779947807,40.95362157944497],[19.452794527945287,40.92322718858709],[19.452794527945287,40.92829292039673],[19.449194491944922,40.93504722947627],[19.459994599946015,40.941801538555794],[19.47079470794708,40.95699873398475],[19.477994779947807,40.97557308395345],[19.474394743947443,40.99583601119204],[19.47079470794708,41.00090174300169],[19.452794527945287,41.00596747481134],[19.449194491944922,41.009344629351105],[19.441994419944194,41.02116467024028],[19.441994419944194,41.02623040204993],[19.44559445594456,41.031296133859584],[19.45639456394565,41.107282111004295],[19.452794527945287,41.12247930643325],[19.44559445594456,41.129233615512774],[19.441994419944194,41.13767650186219],[19.441994419944194,41.144430810941714],[19.46359463594638,41.15118512002125],[19.467194671946714,41.16300516091043],[19.467194671946714,41.176513779069495],[19.467194671946714,41.18833381995867],[19.510395103951055,41.23730256078527],[19.517595175951755,41.25587691075398],[19.51399513995142,41.276139837992574],[19.503195031950327,41.294714187961276],[19.4887948879489,41.30653422885045],[19.47079470794708,41.311599960660104],[19.449194491944922,41.311599960660104],[19.43119431194313,41.31328853792999],[19.42039420394204,41.32342000154928],[19.41319413194134,41.341994351518],[19.41319413194134,41.38252020599518],[19.409594095940975,41.39096309234459],[19.39519395193952,41.40278313323377],[19.391593915939154,41.41291459685307],[19.40599405994061,41.401094555963894],[19.427594275942766,41.401094555963894],[19.44559445594456,41.414603174122945],[19.441994419944194,41.441620410441075],[19.46359463594638,41.45006329679049],[19.4887948879489,41.46694906948932],[19.510395103951055,41.48721199672791],[19.517595175951755,41.51422923304604],[19.51399513995142,41.52942642847498],[19.50679506795069,41.5361807375545],[19.4959949599496,41.539557892094265],[19.48159481594817,41.54462362390392],[19.467194671946714,41.55475508752322],[19.452794527945287,41.57501801476181],[19.441994419944194,41.5851494783811],[19.528395283952847,41.576706592031684],[19.55719557195573,41.58346090111122],[19.56439564395646,41.5851494783811],[19.585995859958615,41.61892102377875],[19.593195931959315,41.61892102377875],[19.593195931959315,41.608789560159465],[19.59679596795968,41.602035251079926],[19.603996039960407,41.602035251079926],[19.611196111961135,41.6054124056197],[19.603996039960407,41.63242964193782],[19.600396003960043,41.639183951017344],[19.593195931959315,41.63242964193782],[19.585995859958615,41.64087252828723],[19.55719557195573,41.66113545552582],[19.578795787957887,41.68815269184395],[19.575195751957523,41.71854708270183],[19.57159571595716,41.75231862809949],[19.57159571595716,41.770892978068204],[19.58959589595898,41.76582724625855],[19.600396003960043,41.77933586441762],[19.600396003960043,41.79959879165621],[19.593195931959315,41.81817314162491],[19.585995859958615,41.81817314162491],[19.467194671946714,41.85532184156233],[19.452794527945287,41.86207615064187],[19.43119431194313,41.868830459721394],[19.366393663936634,41.851944687022566],[19.348393483934842,41.86376472791174],[19.308793087930894,41.894159118769636],[19.294392943929438,41.900913427849176],[19.218792187921878,41.91948777781788],[19.20439204392045,41.9262420868974],[19.17919179191793,41.93468497324682],[19.1719917199172,41.938062127786594],[19.161191611916138,41.94819359140588],[19.161191611916138,41.95325932321553],[19.164791647916473,41.958325055025185],[19.161191611916138,41.96845651864447],[19.15399153991541,41.97014509591436],[19.14679146791468,41.97689940499389],[19.139591395913953,41.9853422913433],[19.143191431914317,41.98871944588306],[19.143191431914317,41.993785177692715],[19.139591395913953,42.04275391851931],[19.081990819908214,42.08159119572662],[19.074790747907485,42.09509981388568],[19.085590855908578,42.11029700931462],[19.074790747907485,42.11536274112427],[19.063990639906393,42.120428472933924],[19.049590495904965,42.140691400172514],[19.009990099901017,42.139002822902626],[19.00279002790029,42.1508228637918],[18.999189991899925,42.160954327411105],[18.99558995589956,42.16433148195087],[18.988389883898833,42.16433148195087],[18.981189811898133,42.16770863649063],[18.966789667896677,42.18797156372922],[18.95238952389525,42.19979160461841],[18.912789127891273,42.22174310912688],[18.90198901989021,42.23694030455583],[18.89478894788948,42.270711849953486],[18.887588875888753,42.28422046811254],[18.873188731887325,42.290974777192076],[18.855188551885533,42.290974777192076],[18.837188371883713,42.285909045382425],[18.829988299883013,42.27746615903301],[18.82638826388265,42.28253189084266],[18.81918819188192,42.285909045382425],[18.81918819188192,42.290974777192076],[18.80118801188013,42.28422046811254],[18.7939879398794,42.280843313572774],[18.790387903879036,42.27577758176312],[18.786787867878672,42.27408900449325],[18.779587795877973,42.270711849953486],[18.772387723877245,42.27746615903301],[18.761587615876152,42.290974777192076],[18.729187291872933,42.31123770443067],[18.714787147871476,42.32474632258973],[18.714787147871476,42.33825494074878],[18.707587075870777,42.34163209528856],[18.70038700387005,42.35007498163796],[18.69318693186932,42.35345213617774],[18.69318693186932,42.36020644525726],[18.696786967869684,42.37371506341633],[18.678786787867892,42.385535104305504],[18.657186571865736,42.38722368157539],[18.653586535865372,42.36696075433679],[18.646386463864644,42.36696075433679],[18.639186391863916,42.370337908876564],[18.61758617586176,42.368649331606676],[18.613986139861396,42.370337908876564],[18.606786067860696,42.37709221795609],[18.595985959859604,42.383846527035615],[18.581585815858176,42.390600836115155],[18.570785707857084,42.39228941338503],[18.574385743857448,42.395666567924806],[18.574385743857448,42.39735514519468],[18.574385743857448,42.39904372246457],[18.577985779857812,42.40073229973444],[18.552785527855292,42.41424091789351],[18.545585455854564,42.42437238151281],[18.549185491854928,42.4345038451321],[18.563585635856356,42.43788099967186],[18.646386463864644,42.41761807243327],[18.657186571865736,42.4159294951634],[18.685986859868592,42.404109454274206],[18.70038700387005,42.39228941338503],[18.707587075870777,42.40917518608386],[18.707587075870777,42.420995226973034],[18.682386823868256,42.458143926910466],[18.682386823868256,42.468275390529755],[18.685986859868592,42.483472585958694],[18.653586535865372,42.45138961783093],[18.610386103861032,42.4446353087514],[18.502385023850252,42.45645534964058],[18.502385023850252,42.448012463291164],[18.520385203852044,42.43788099967186],[18.513185131851316,42.40917518608386],[18.531185311853136,42.40073229973444],[18.50958509585095,42.405798031544094],[18.495184951849524,42.4159294951634],[18.473584735847368,42.44125815421164],[18.45918459184591,42.448012463291164],[18.42678426784269,42.45476677237069],[18.412384123841235,42.46152108145023],[18.412384123841235,42.47671827687917],[18.23958239582396,42.55945856310342],[18.221582215822167,42.57972149034201],[18.221582215822167,42.588164376691424],[18.221582215822167,42.60167299485049],[18.22518225182253,42.615181613009554],[18.217982179821803,42.620247344819205],[18.167581675816763,42.62700165389873],[18.12438124381245,42.64388742659756],[18.109981099810994,42.64726458113732],[18.091980919809203,42.64895315840721],[18.077580775807775,42.650641735677084],[18.06318063180632,42.657396044756624],[18.05598055980562,42.66752750837591],[18.077580775807775,42.66752750837591],[18.05598055980562,42.68272470380485],[18.04878048780489,42.691167590154265],[18.041580415804162,42.70129905377357],[18.027180271802735,42.691167590154265],[18.001980019800214,42.70129905377357],[17.962379623796238,42.73000486736157],[17.901179011790134,42.75195637187005],[17.879578795787978,42.76884214456888],[17.893978939789406,42.79079364907736],[17.865178651786522,42.789105071807455],[17.836378363783638,42.807679421776186],[17.807578075780754,42.81274515358584],[17.800378003780054,42.811056576315934],[17.793177931779326,42.80936799904606],[17.785977859778598,42.80599084450628],[17.778777787777898,42.79754795815688],[17.775177751777534,42.79923653542676],[17.767977679776806,42.802613689966535],[17.76437764377644,42.80430226723641],[17.757177571775713,42.807679421776186],[17.735577355773557,42.82118803993524],[17.72117721177213,42.82625377174489],[17.73917739177392,42.81274515358584],[17.749977499775014,42.802613689966535],[17.760777607776078,42.77897360818818],[17.760777607776078,42.77390787637853],[17.753577535775378,42.77053072183875],[17.749977499775014,42.77221929910864],[17.749977499775014,42.77897360818818],[17.749977499775014,42.78572791726771],[17.749977499775014,42.79079364907736],[17.728377283772858,42.80092511269666],[17.677976779767818,42.816122308125586],[17.634776347763477,42.82287661720511],[17.580775807758073,42.84145096717384],[17.526775267752697,42.84820527625337],[17.440374403744045,42.873533935301595],[17.44397443974441,42.89886259434985],[17.41877418774189,42.91068263523903],[17.350373503735057,42.922502676128204],[17.271172711727132,42.963028530605385],[17.238772387723884,42.97147141695481],[17.220772207722092,42.97991430330421],[17.213572135721364,42.98329145784399],[17.202772027720272,42.984980035113864],[17.094770947709492,42.984980035113864],[17.062370623706244,42.990045766923515],[17.04437044370445,42.995111498733166],[17.02637026370263,43.003554385082566],[17.01917019170193,43.01368584870187],[17.02637026370263,43.02381731232117],[17.02637026370263,43.030571621400696],[17.01917019170193,43.03394877594047],[17.011970119701203,43.039014507750096],[17.00837008370084,43.04576881682965],[17.00117001170011,43.05083454863927],[17.022770227702296,43.0491459713694],[17.055170551705515,43.02888304413082],[17.073170731707336,43.02381731232117],[17.15957159571596,43.030571621400696],[17.238772387723884,43.02212873505127],[17.389973899739005,42.97822572603434],[17.425974259742617,42.96133995333551],[17.454774547745473,42.94276560336678],[17.454774547745473,42.93769987155716],[17.454774547745473,42.932634139747506],[17.458374583745837,42.927568407937855],[17.4619746197462,42.922502676128204],[17.465574655746565,42.92081409885833],[17.476374763747657,42.922502676128204],[17.479974799747993,42.922502676128204],[17.497974979749813,42.9123712125089],[17.508775087750877,42.90899405796915],[17.51957519575197,42.90730548069925],[17.523175231752333,42.91068263523903],[17.523175231752333,42.91912552158843],[17.526775267752697,42.922502676128204],[17.530375303753033,42.92081409885833],[17.541175411754125,42.91574836704868],[17.54477544775449,42.914059789778776],[17.559175591755917,42.9123712125089],[17.566375663756645,42.90899405796915],[17.584375843758437,42.900551171619725],[17.623976239762413,42.892108285270325],[17.641976419764205,42.8836653989209],[17.652776527765297,42.873533935301595],[17.659976599765997,42.873533935301595],[17.674376743767453,42.8752225125715],[17.717577175771765,42.84482812171359],[17.742777427774286,42.83976238990394],[17.710377103771037,42.85664816260277],[17.703177031770338,42.86846820349194],[17.7139771397714,42.88028824438112],[17.706777067770673,42.887042553460674],[17.677976779767818,42.878599667111246],[17.652776527765297,42.89041970800042],[17.555575555755553,42.93432271701738],[17.573575735757373,42.93432271701738],[17.602376023760257,42.92587983066798],[17.616776167761685,42.922502676128204],[17.602376023760257,42.932634139747506],[17.580775807758073,42.94276560336678],[17.548375483754853,42.954585644255985],[17.533975339753397,42.95120848971621],[17.515975159751605,42.95965137606561],[17.497974979749813,42.97147141695481],[17.48717487174872,42.98329145784399],[17.476374763747657,43.00186580781269],[17.46917469174693,43.01368584870187],[17.479974799747993,43.02212873505127],[17.501575015750177,43.030571621400696],[17.48717487174872,43.03563735321035],[17.472774727747293,43.030571621400696],[17.454774547745473,43.02212873505127],[17.433174331743317,43.017063003241645],[17.440374403744045,43.020440157781394],[17.4619746197462,43.030571621400696],[17.451174511745137,43.030571621400696],[17.440374403744045,43.03226019867057],[17.433174331743317,43.03563735321035],[17.425974259742617,43.04408023955975],[17.433174331743317,43.05083454863927],[17.425974259742617,43.060966012258575],[17.425974259742617,43.06434316679835],[17.404374043740432,43.05083454863927],[17.371973719737213,43.074474630417654],[17.31797317973181,43.12682052578401],[17.173971739717416,43.18254357569015],[17.137971379713804,43.20280650292872],[17.119971199712012,43.20956081200825],[17.112771127711284,43.212937966548026],[17.10917109171092,43.22644658470708],[17.10197101971019,43.23151231651673],[17.091170911709128,43.234889471056505],[17.080370803708036,43.23657804832638],[17.073170731707336,43.23826662559625],[17.065970659706608,43.24502093467581],[17.055170551705515,43.256840975564984],[17.055170551705515,43.261906707374635],[17.05157051570515,43.27372674826381],[17.047970479704816,43.27879248007346],[17.04437044370445,43.28048105734334],[17.03357033570336,43.28216963461321],[17.02637026370263,43.283858211883086],[16.93276932769328,43.373352807186876],[16.90756907569076,43.386861425345955],[16.896768967689695,43.395304311695355],[16.889568895688967,43.400370043505006],[16.88236882368824,43.40543577531466],[16.752767527675275,43.41894439347371],[16.695166951669535,43.43751874344241],[16.626766267662674,43.449338784331616],[16.533165331653322,43.49661894788832],[16.533165331653322,43.49999610242807],[16.533165331653322,43.50506183423772],[16.529565295652958,43.5084389887775],[16.525965259652594,43.51012756604737],[16.518765187651894,43.51012756604737],[16.507965079650802,43.50506183423772],[16.504365043650438,43.50337325696785],[16.46476464764649,43.51012756604737],[16.392763927639294,43.51012756604737],[16.392763927639294,43.5168818751269],[16.410764107641086,43.5185704523968],[16.435964359643606,43.52194760693655],[16.457564575645762,43.528701916016104],[16.47196471964719,43.53883337963538],[16.457564575645762,43.5455876887149],[16.43236432364324,43.54896484325468],[16.335163351633526,43.550653420524554],[16.324363243632433,43.54896484325468],[16.30636306363064,43.54052195690528],[16.299162991629913,43.53883337963538],[16.28116281162812,43.53545622509563],[16.23796237962381,43.5270133387462],[16.119161191611937,43.52532476147633],[16.119161191611937,43.5168818751269],[16.151561515615157,43.511816143317276],[16.165961659616613,43.50337325696785],[16.173161731617313,43.4898646388088],[16.11196111961121,43.4898646388088],[16.11196111961121,43.479733175189494],[16.097560975609753,43.479733175189494],[16.065160651606533,43.4898646388088],[16.039960399604013,43.49155321607867],[16.02916029160292,43.49493037061845],[16.014760147601493,43.50337325696785],[16.007560075600765,43.50337325696785],[16.007560075600765,43.49661894788832],[15.996759967599672,43.50337325696785],[15.975159751597516,43.50337325696785],[15.967959679596817,43.51012756604737],[15.964359643596453,43.5084389887775],[15.964359643596453,43.506750411507625],[15.964359643596453,43.50337325696785],[15.960759607596088,43.50337325696785],[15.960759607596088,43.515193297857024],[15.967959679596817,43.5168818751269],[15.975159751597516,43.5168818751269],[15.982359823598244,43.520259029666676],[15.985959859598609,43.5270133387462],[15.985959859598609,43.53207907055585],[15.982359823598244,43.5371448023655],[15.985959859598609,43.5455876887149],[15.971559715597152,43.54389911144503],[15.964359643596453,43.542210534175155],[15.960759607596088,43.53883337963538],[15.957159571595724,43.547276265984806],[15.946359463594632,43.55234199779446],[15.924759247592476,43.55909630687398],[15.942759427594297,43.56078488414386],[15.942759427594297,43.56753919322338],[15.935559355593568,43.57260492503303],[15.917559175591776,43.57260492503303],[15.917559175591776,43.57935923411256],[15.921159211592112,43.58104781138246],[15.92835928359284,43.58442496592221],[15.931959319593204,43.58611354319211],[15.921159211592112,43.591179275001764],[15.917559175591776,43.59286785227164],[15.924759247592476,43.599622161351164],[15.917559175591776,43.60637647043069],[15.924759247592476,43.613130779510215],[15.917559175591776,43.62832797493917],[15.92835928359284,43.63339370674882],[15.967959679596817,43.63339370674882],[15.967959679596817,43.64183659309822],[15.921159211592112,43.64859090217777],[15.90315903159032,43.64859090217777],[15.917559175591776,43.653656633987396],[15.92835928359284,43.653656633987396],[15.935559355593568,43.65027947944765],[15.942759427594297,43.64859090217777],[15.95355953559536,43.65027947944765],[15.949959499594996,43.65703378852717],[15.942759427594297,43.6637880976067],[15.931959319593204,43.66885382941635],[15.946359463594632,43.672230983956126],[15.95355953559536,43.67898529303565],[15.949959499594996,43.689116756654954],[15.939159391593932,43.69587106573448],[15.939159391593932,43.67729671576578],[15.931959319593204,43.67729671576578],[15.906759067590684,43.69080533392483],[15.892358923589256,43.70093679754413],[15.885158851588528,43.70093679754413],[15.8779587795878,43.70093679754413],[15.870758707587072,43.702625374814005],[15.863558635586372,43.707691106623656],[15.849158491584916,43.724576879322484],[15.845558455584552,43.729642611132135],[15.80235802358024,43.74652838383096],[15.791557915579176,43.75497127018036],[15.769957699576992,43.760037001990014],[15.705157051570524,43.76341415652979],[15.694356943569431,43.77523419741897],[15.683556835568368,43.79718570192745],[15.658356583565848,43.805628588276846],[15.633156331563328,43.8106943200865],[15.618756187561871,43.82589151551545],[15.647556475564755,43.81576005189615],[15.661956619566212,43.81238289735637],[15.679956799568004,43.81238289735637],[15.679956799568004,43.819137206435926],[15.672756727567275,43.8208257837058],[15.669156691566911,43.8208257837058],[15.665556655566576,43.819137206435926],[15.640356403564056,43.83602297913475],[15.57555575555756,43.85966306091311],[15.546755467554675,43.876548833611935],[15.546755467554675,43.87823741088181],[15.525155251552519,43.90018891539029],[15.510755107551091,43.91032037900959],[15.496354963549635,43.91538611081924],[15.481954819548207,43.917074688089116],[15.474754747547479,43.91876326535899],[15.46755467554675,43.92214041989877],[15.456754567545687,43.92720615170842],[15.449554495544959,43.933960460787944],[15.445954459544595,43.94071476986747],[15.438754387543895,43.94915765621687],[15.38475384753849,43.99812639704348],[15.35955359553597,44.02514363336161],[15.337953379533815,44.03865225152066],[15.319953199531994,44.045406560600185],[15.276752767527682,44.08255526053762],[15.276752767527682,44.085932415077394],[15.23355233552337,44.121392537744924],[15.222752227522278,44.126458269554576],[15.211952119521214,44.13152400136423],[15.20835208352085,44.13827831044375],[15.211952119521214,44.148409774063055],[15.197551975519758,44.156852660412454],[15.143551435514354,44.19568993761976],[15.161551615516174,44.21257571031859],[15.150751507515082,44.23452721482707],[15.13275132751329,44.254790142065644],[15.111151111511134,44.26492160568495],[15.121951219512198,44.27505306930425],[15.13995139951399,44.281807378383775],[15.15795157951581,44.2801188011139],[15.16515165151651,44.26154445114517],[15.175951759517602,44.24972441025599],[15.197551975519758,44.25647871933555],[15.20835208352085,44.27336449203435],[15.186751867518694,44.28518453292355],[15.193951939519394,44.286873110193426],[15.193951939519394,44.2885616874633],[15.197551975519758,44.28518453292355],[15.20835208352085,44.28518453292355],[15.201152011520122,44.29700457381273],[15.197551975519758,44.30207030562238],[15.247952479524798,44.278430223844],[15.269552695526954,44.25816729660542],[15.280352803528046,44.251412987525896],[15.294752947529474,44.251412987525896],[15.280352803528046,44.28518453292355],[15.29115291152911,44.286873110193426],[15.294752947529474,44.290250264733174],[15.298352983529838,44.29362741927295],[15.301953019530202,44.2986931510826],[15.287552875528775,44.30207030562238],[15.276752767527682,44.31051319197178],[15.269552695526954,44.32064465559108],[15.262352623526255,44.33246469648026],[15.280352803528046,44.32739896467061],[15.30915309153093,44.308824614701905],[15.337953379533815,44.30207030562238],[15.409954099541011,44.27167591476447],[15.424354243542439,44.268298760224724],[15.503555035550363,44.259855873875296],[15.525155251552519,44.259855873875296],[15.528755287552883,44.27167591476447],[15.514355143551455,44.278430223844],[15.449554495544959,44.28518453292355],[15.445954459544595,44.2885616874633],[15.413554135541375,44.317267501051305],[15.406354063540647,44.32064465559108],[15.30915309153093,44.35441620098874],[15.294752947529474,44.36454766460804],[15.154351543515446,44.46586230080098],[15.10755107551077,44.51314246435771],[15.078750787507886,44.53678254613607],[15.053550535505366,44.545225432485466],[15.046350463504638,44.55029116429512],[15.01395013950139,44.56886551426382],[15.00675006750069,44.57055409153372],[14.999549995499962,44.57899697788312],[14.902349023490245,44.69044307769539],[14.884348843488453,44.72421462309305],[14.895148951489517,44.736034663982224],[14.895148951489517,44.75123185941118],[14.887948879488789,44.76811763210998],[14.884348843488453,44.78838055934858],[14.88074880748809,44.84410360925472],[14.884348843488453,44.860989381953544],[14.90594905949061,44.92515531820908],[14.91314913149131,44.94035251363803],[14.920349203492037,44.958926863606735],[14.91314913149131,44.980878368115214],[14.85554855548557,45.07712727249853],[14.851948519485205,45.09401304519736],[14.841148411484113,45.105833086086534],[14.826748267482685,45.114275972435934],[14.765547655476553,45.137916054214315],[14.657546575465773,45.1970162586602],[14.607146071460733,45.244296422216905],[14.592745927459276,45.24936215402656],[14.574745747457484,45.262870772185636],[14.567545675456756,45.27637939034469],[14.581945819458213,45.284822276694086],[14.57114571145712,45.293265163043515],[14.535145351453508,45.31352809028209],[14.553145531455328,45.298330894853166],[14.556745567455692,45.29664231758326],[14.553145531455328,45.28819943123386],[14.542345423454236,45.28313369942421],[14.531545315453172,45.28313369942421],[14.524345243452444,45.28819943123386],[14.509945099450988,45.30001947212304],[14.401944019440208,45.33885674933035],[14.362343623436232,45.34392248114],[14.34434344343444,45.3523653674894],[14.329943299433012,45.3540539447593],[14.311943119431191,45.34392248114],[14.290342903429035,45.320282399361645],[14.272342723427244,45.28988800850374],[14.257942579425787,45.25611646310608],[14.247142471424723,45.186884795040896],[14.236342363423631,45.154801826913115],[14.232742327423267,45.15311324964324],[14.232742327423267,45.14973609510349],[14.207542075420747,45.12609601332511],[14.178741787417891,45.13453889967454],[14.196741967419683,45.12103028151549],[14.19314193141932,45.105833086086534],[14.178741787417891,45.09063589065758],[14.164341643416435,45.08050442703828],[14.157141571415707,45.08725873611783],[14.153541535415371,45.078815849768404],[14.153541535415371,45.07206154068888],[14.157141571415707,45.053487190720176],[14.153541535415371,45.05517576799005],[14.146341463414643,45.056864345259925],[14.142741427414279,45.05855292252983],[14.142741427414279,45.053487190720176],[14.160741607416071,45.0399785725611],[14.1679416794168,45.01971564532252],[14.164341643416435,44.99607556354417],[14.149941499415007,44.97750121357544],[14.139141391413915,44.97074690449591],[14.131941319413187,44.972435481765785],[14.124741247412487,44.97581263630556],[14.113941139411395,44.97750121357544],[14.099540995409967,44.97412405903569],[14.088740887408875,44.96568117268626],[14.081540815408175,44.95723828633686],[14.074340743407447,44.94879539998743],[14.067140671406719,44.94879539998743],[14.070740707407083,44.96905832722604],[14.077940779407811,44.97750121357544],[14.08514085140851,44.985944099924865],[14.074340743407447,45.00451844989357],[14.052740527405291,45.01802706805262],[14.052740527405291,45.026469954402046],[14.052740527405291,45.03322426348157],[14.052740527405291,45.03828999529122],[14.041940419404199,45.03828999529122],[14.045540455404563,45.026469954402046],[14.038340383403835,45.00958418170322],[14.045540455404563,45.00114129535379],[14.056340563405655,44.99607556354417],[14.063540635406355,44.99607556354417],[14.070740707407083,44.99269840900439],[14.074340743407447,44.98425552265499],[14.063540635406355,44.97581263630556],[14.049140491404927,44.95723828633686],[14.045540455404563,44.95217255452721],[14.041940419404199,44.95554970906696],[14.03474034740347,44.95554970906696],[14.038340383403835,44.94879539998743],[14.041940419404199,44.94035251363803],[14.038340383403835,44.931909627288604],[14.03474034740347,44.92177816366933],[14.027540275402771,44.923466740939205],[14.023940239402407,44.923466740939205],[14.023940239402407,44.92008958639943],[14.027540275402771,44.915023854589776],[14.027540275402771,44.90826954551025],[14.023940239402407,44.90826954551025],[14.020340203402043,44.90658096824038],[14.020340203402043,44.9048923909705],[14.020340203402043,44.901515236430726],[14.00954009540095,44.9048923909705],[13.987939879398795,44.901515236430726],[13.973539735397367,44.901515236430726],[13.980739807398095,44.896449504621074],[13.98433984339843,44.89138377281142],[13.991539915399159,44.88125230919212],[13.987939879398795,44.88125230919212],[13.987939879398795,44.874498000112595],[13.991539915399159,44.874498000112595],[13.991539915399159,44.86774369103307],[13.98433984339843,44.86436653649329],[13.980739807398095,44.85930080468367],[13.973539735397367,44.847480763794465],[13.973539735397367,44.839037877445065],[13.97713977139773,44.83734930017519],[13.97713977139773,44.83566072290529],[13.973539735397367,44.82721783655589],[13.98433984339843,44.82721783655589],[13.987939879398795,44.825529259286014],[13.995139951399523,44.82046352747636],[13.998739987399887,44.81370921839684],[13.962739627396274,44.812020641126935],[13.944739447394483,44.81370921839684],[13.930339303393055,44.82046352747636],[13.930339303393055,44.817086372936586],[13.930339303393055,44.81539779566671],[13.923139231392327,44.81370921839684],[13.919539195391962,44.82890641382576],[13.90873908739087,44.83059499109564],[13.897938979389806,44.82890641382576],[13.890738907389078,44.833972145635414],[13.88353883538835,44.82721783655589],[13.894338943389442,44.82384068201611],[13.905139051390535,44.817086372936586],[13.90873908739087,44.80864348658719],[13.905139051390535,44.798512022967884],[13.912339123391234,44.781626250269056],[13.919539195391962,44.77824909572928],[13.90153901539017,44.77318336391963],[13.897938979389806,44.781626250269056],[13.90153901539017,44.798512022967884],[13.897938979389806,44.81370921839684],[13.890738907389078,44.817086372936586],[13.85833858338583,44.825529259286014],[13.847538475384766,44.82721783655589],[13.85113851138513,44.83059499109564],[13.854738547385494,44.83734930017519],[13.854738547385494,44.84072645471494],[13.85113851138513,44.84072645471494],[13.843938439384402,44.84072645471494],[13.847538475384766,44.847480763794465],[13.843938439384402,44.85423507287402],[13.83313833138331,44.852546495604116],[13.815138151381518,44.85592365014389],[13.80073800738009,44.86436653649329],[13.786337863378634,44.874498000112595],[13.793537935379362,44.88125230919212],[13.804338043380454,44.87112084557285],[13.818738187381882,44.86774369103307],[13.83313833138331,44.87280942284272],[13.843938439384402,44.888006618271675],[13.815138151381518,44.88294088646202],[13.804338043380454,44.8846294637319],[13.793537935379362,44.8947609273512],[13.793537935379362,44.901515236430726],[13.797137971379726,44.9032038137006],[13.804338043380454,44.909958122780125],[13.80793807938079,44.915023854589776],[13.797137971379726,44.92515531820908],[13.77553775537757,44.963992595416386],[13.73233732337323,44.994386986274264],[13.68193681936819,45.04673288164062],[13.67473674736749,45.05179861345027],[13.660336603366034,45.061930077069576],[13.642336423364242,45.070372963419004],[13.62433624336245,45.07375011795875],[13.627936279362814,45.078815849768404],[13.63153631536315,45.088947313387706],[13.635136351363514,45.09401304519736],[13.613536135361358,45.11765312697571],[13.638736387363878,45.12947316786489],[13.72513725137253,45.13453889967454],[13.70713707137071,45.141293208754064],[13.68193681936819,45.14298178602394],[13.635136351363514,45.141293208754064],[13.613536135361358,45.13622747694441],[13.59913599135993,45.137916054214315],[13.595535955359566,45.14467036329384],[13.59913599135993,45.15649040418302],[13.59913599135993,45.16493329053242],[13.59913599135993,45.17168759961194],[13.588335883358837,45.17506475415172],[13.595535955359566,45.181819063231245],[13.595535955359566,45.186884795040896],[13.591935919359202,45.19195052685055],[13.58113581135811,45.1970162586602],[13.58113581135811,45.20208199046985],[13.591935919359202,45.2071477222795],[13.595535955359566,45.21221345408915],[13.595535955359566,45.22065634043855],[13.588335883358837,45.230787804057854],[13.595535955359566,45.24091926767716],[13.595535955359566,45.25105073129643],[13.588335883358837,45.25949361764586],[13.57393573935741,45.26455934945551],[13.577535775357774,45.271313658535036],[13.584735847358473,45.27637939034469],[13.591935919359202,45.279756544884435],[13.602736027360294,45.279756544884435],[13.602736027360294,45.284822276694086],[13.591935919359202,45.28819943123386],[13.584735847358473,45.293265163043515],[13.577535775357774,45.298330894853166],[13.57393573935741,45.306773781202565],[13.584735847358473,45.30846235847247],[13.595535955359566,45.31183951301222],[13.609936099360993,45.320282399361645],[13.59913599135993,45.32365955390139],[13.570335703357046,45.32534813117127],[13.563135631356317,45.32703670844117],[13.552335523355254,45.333791017520696],[13.541535415354161,45.34561105840987],[13.541535415354161,45.35743109929905],[13.55593555935559,45.360808253838826],[13.55593555935559,45.36756256291835],[13.541535415354161,45.37600544926775],[13.512735127351277,45.43679423098354],[13.516335163351641,45.43848280825341],[13.519935199352005,45.440171385523314],[13.519935199352005,45.44354854006306],[13.516335163351641,45.44692569460284],[13.516335163351641,45.448614271872714],[13.516335163351641,45.45030284914259],[13.519935199352005,45.45705715822214],[13.505535055350549,45.484074394540244],[13.501935019350213,45.4992715899692],[13.505535055350549,45.511091630858374],[13.512735127351277,45.511091630858374],[13.52353523535237,45.50602589904872],[13.570335703357046,45.4908287036198],[13.588335883358837,45.489140126349895],[13.591935919359202,45.49251728088967],[13.588335883358837,45.50096016723907],[13.595535955359566,45.511091630858374],[13.595535955359566,45.5178459399379],[13.584735847358473,45.5195345172078],[13.577535775357774,45.52291167174755],[13.57393573935741,45.529665980827076],[13.570335703357046,45.53979744444638],[13.588335883358837,45.53642028990663],[13.67473674736749,45.54486317625603],[13.753937539375414,45.55330606260546],[13.753937539375414,45.55837179441508],[13.743137431374322,45.570191835304286],[13.728737287372894,45.58201187619346],[13.710737107371074,45.59383191708264],[13.717937179371802,45.600586226162164],[13.728737287372894,45.61240626705134],[13.75753757537575,45.614094844321215],[13.786337863378634,45.61071768978147],[13.80793807938079,45.614094844321215],[13.797137971379726,45.61747199886099],[13.786337863378634,45.62422630794052],[13.77553775537757,45.636046348829694],[13.739537395373958,45.649554966988774],[13.75753757537575,45.6546206987984],[13.753937539375414,45.671506471497224],[13.739537395373958,45.69176939873583],[13.72513725137253,45.703589439625006],[13.645936459364606,45.76268964407089],[13.627936279362814,45.77282110769019],[13.57393573935741,45.78970688038902],[13.552335523355254,45.793084034928796],[13.534335343353433,45.78126399403962],[13.52353523535237,45.75931248953114],[13.527135271352734,45.74073813956244],[13.55593555935559,45.73736098502266],[13.519935199352005,45.725540944133485],[13.512735127351277,45.720475212323834],[13.509135091350913,45.71372090324431],[13.480334803348029,45.71034374870453],[13.469534695346965,45.70696659416478],[13.451534515345173,45.6934579760057],[13.426334263342653,45.68163793511653],[13.401134011340133,45.674883626037],[13.375933759337613,45.6833265123864],[13.390333903339041,45.685015089656304],[13.408334083340833,45.69176939873583],[13.426334263342653,45.698523707815355],[13.429934299342989,45.70696659416478],[13.42273422734229,45.72385236686361],[13.383133831338313,45.730606675943136],[13.368733687336885,45.74411529410219],[13.350733507335093,45.74073813956244],[13.253532535325348,45.755935334991364],[13.246332463324649,45.75931248953114],[13.221132211322129,45.77619826222997],[13.2139321393214,45.77957541676972],[13.203132031320308,45.77788683949984],[13.170731707317088,45.76944395315044],[13.156331563315632,45.75424675772149],[13.149131491314932,45.75086960318171],[13.13833138331384,45.75424675772149],[13.131131311313112,45.76944395315044],[13.120331203312048,45.77113253042032],[13.109531095310956,45.76775537588054],[13.109531095310956,45.757623912261266],[13.11313113131132,45.74918102591184],[13.123931239312412,45.74411529410219],[13.123931239312412,45.73736098502266],[13.102331023310228,45.73567240775279],[13.080730807308072,45.72722952140336],[13.069930699307008,45.71372090324431],[13.073530735307372,45.69683513054548],[13.091530915309164,45.68839224419605],[13.11313113131132,45.69176939873583],[13.149131491314932,45.703589439625006],[13.13833138331384,45.690080821465955],[13.102331023310228,45.66981789422735],[13.095130951309528,45.65293212152852],[13.084330843308436,45.641112080639346],[13.059130591305916,45.636046348829694],[12.979929799297992,45.63435777155982],[12.943929439294408,45.62929203975017],[12.781927819278195,45.55330606260546],[12.612726127261283,45.49589443542942],[12.511925119251202,45.47056577638119],[12.497524975249746,45.46043431276189],[12.486724867248682,45.45705715822214],[12.45072450724507,45.45030284914259],[12.421924219242186,45.43848280825341],[12.411124111241122,45.43679423098354],[12.41832418324185,45.45030284914259],[12.429124291242914,45.46381146730167],[12.436324363243642,45.475631508190844],[12.429124291242914,45.484074394540244],[12.439924399244006,45.48238581727037],[12.447124471244706,45.484074394540244],[12.45072450724507,45.489140126349895],[12.45072450724507,45.49758301269932],[12.457924579245798,45.49758301269932],[12.461524615246162,45.489140126349895],[12.46872468724689,45.485762971810146],[12.472324723247226,45.485762971810146],[12.479524795247954,45.4908287036198],[12.465124651246526,45.50433732177885],[12.47592475924759,45.50433732177885],[12.486724867248682,45.50433732177885],[12.497524975249746,45.50602589904872],[12.497524975249746,45.50433732177885],[12.50112501125011,45.50602589904872],[12.504725047250474,45.502648744508974],[12.504725047250474,45.4992715899692],[12.508325083250838,45.49758301269932],[12.504725047250474,45.49758301269932],[12.49392493924941,45.49758301269932],[12.49392493924941,45.4908287036198],[12.515525155251567,45.49251728088967],[12.51912519125193,45.50433732177885],[12.522725227252266,45.5195345172078],[12.529925299252994,45.52628882628733],[12.547925479254786,45.52628882628733],[12.562325623256243,45.53135455809698],[12.573125731257306,45.53979744444638],[12.580325803258035,45.55330606260546],[12.56952569525697,45.54992890806568],[12.54432544325445,45.53642028990663],[12.537125371253723,45.53642028990663],[12.51912519125193,45.54992890806568],[12.511925119251202,45.55837179441508],[12.508325083250838,45.573568989844034],[12.486724867248682,45.565126103494634],[12.457924579245798,45.54824033079581],[12.44352443524437,45.529665980827076],[12.45072450724507,45.5178459399379],[12.45072450724507,45.511091630858374],[12.436324363243642,45.51278020812825],[12.41832418324185,45.52291167174755],[12.411124111241122,45.5178459399379],[12.403924039240394,45.5178459399379],[12.396723967239666,45.53979744444638],[12.385923859238602,45.52291167174755],[12.389523895238966,45.51446878539815],[12.42552425524255,45.50433732177885],[12.42552425524255,45.49758301269932],[12.411124111241122,45.49251728088967],[12.39312393123933,45.4908287036198],[12.382323823238238,45.494205858159546],[12.382323823238238,45.50433732177885],[12.34992349923499,45.50433732177885],[12.310323103231042,45.489140126349895],[12.27432274322743,45.46381146730167],[12.252722527225274,45.43679423098354],[12.252722527225274,45.43003992190401],[12.259922599226002,45.43003992190401],[12.24912249122491,45.41990845828471],[12.245522455224545,45.41146557193531],[12.24912249122491,45.40302268558588],[12.259922599226002,45.39457979923648],[12.24912249122491,45.38613691288705],[12.24912249122491,45.377694026537654],[12.24912249122491,45.37093971745813],[12.245522455224545,45.360808253838826],[12.238322383223846,45.35743109929905],[12.227522275222753,45.35743109929905],[12.22392223922239,45.3540539447593],[12.231122311223118,45.34054532660022],[12.220322203222025,45.32703670844117],[12.21672216722169,45.31690524482187],[12.209522095220962,45.30846235847247],[12.187921879218806,45.306773781202565],[12.17352173521735,45.31015093574234],[12.162721627216285,45.31690524482187],[12.155521555215557,45.31352809028209],[12.14832148321483,45.29157658577364],[12.159121591215921,45.28313369942421],[12.169921699216985,45.262870772185636],[12.180721807218077,45.257805040375985],[12.19152191521917,45.262870772185636],[12.19872198721987,45.27469081307481],[12.202322023220233,45.28819943123386],[12.19872198721987,45.30001947212304],[12.21672216722169,45.293265163043515],[12.220322203222025,45.28313369942421],[12.220322203222025,45.26962508126516],[12.22392223922239,45.25105073129643],[12.213122131221326,45.24767357675668],[12.209522095220962,45.24260784494703],[12.21672216722169,45.23754211313738],[12.22392223922239,45.230787804057854],[12.220322203222025,45.2155906086289],[12.231122311223118,45.203770567739724],[12.24912249122491,45.1970162586602],[12.26712267122673,45.1970162586602],[12.263522635226366,45.200393413199976],[12.259922599226002,45.20208199046985],[12.27432274322743,45.21052487681925],[12.295922959229586,45.22741064951808],[12.306723067230678,45.230787804057854],[12.29952299522995,45.2155906086289],[12.303123031230314,45.200393413199976],[12.313923139231406,45.186884795040896],[12.321123211232106,45.17168759961194],[12.321123211232106,45.137916054214315],[12.328323283232834,45.10076735427688],[12.31752317523177,45.10414450881666],[12.306723067230678,45.10752166335641],[12.306723067230678,45.114275972435934],[12.306723067230678,45.124407436055236],[12.306723067230678,45.12778459059501],[12.295922959229586,45.105833086086534],[12.295922959229586,45.088947313387706],[12.306723067230678,45.078815849768404],[12.328323283232834,45.08050442703828],[12.32472324723247,45.083881581578055],[12.32472324723247,45.08725873611783],[12.321123211232106,45.09401304519736],[12.339123391233926,45.08219300430818],[12.353523535235354,45.06699580887923],[12.364323643236446,45.05179861345027],[12.37512375123751,45.03828999529122],[12.37512375123751,45.0315356862117],[12.36792367923681,45.0315356862117],[12.364323643236446,45.02984710894182],[12.360723607236082,45.026469954402046],[12.353523535235354,45.02478137713217],[12.36792367923681,45.01127275897309],[12.382323823238238,45.026469954402046],[12.385923859238602,45.03828999529122],[12.382323823238238,45.0501100361804],[12.36792367923681,45.06530723160935],[12.382323823238238,45.056864345259925],[12.40032400324003,45.0501100361804],[12.414724147241486,45.043355727100874],[12.411124111241122,45.0315356862117],[12.42552425524255,45.01971564532252],[12.432724327243278,45.01633849078274],[12.44352443524437,45.01127275897309],[12.465124651246526,44.99269840900439],[12.486724867248682,44.97581263630556],[12.497524975249746,44.98425552265499],[12.490324903249046,44.98256694538509],[12.486724867248682,44.98425552265499],[12.486724867248682,44.991009831734516],[12.50112501125011,44.991009831734516],[12.515525155251567,44.98763267719474],[12.52632526325263,44.980878368115214],[12.533525335253358,44.97074690449591],[12.533525335253358,44.96061544087661],[12.522725227252266,44.950483977257335],[12.52632526325263,44.94372966817778],[12.51912519125193,44.93359820455851],[12.515525155251567,44.928532472748856],[12.511925119251202,44.92177816366933],[12.508325083250838,44.92177816366933],[12.497524975249746,44.92177816366933],[12.49392493924941,44.909958122780125],[12.49392493924941,44.87787515465237],[12.486724867248682,44.86267795922342],[12.47592475924759,44.84579218652459],[12.44352443524437,44.82046352747636],[12.44352443524437,44.825529259286014],[12.439924399244006,44.83566072290529],[12.432724327243278,44.84579218652459],[12.42552425524255,44.85423507287402],[12.439924399244006,44.87787515465237],[12.44352443524437,44.88969519554155],[12.439924399244006,44.901515236430726],[12.42552425524255,44.9048923909705],[12.414724147241486,44.89982665916085],[12.407524075240758,44.89138377281142],[12.403924039240394,44.8846294637319],[12.39312393123933,44.86774369103307],[12.39312393123933,44.85930080468367],[12.414724147241486,44.85085791833424],[12.414724147241486,44.84410360925472],[12.407524075240758,44.83566072290529],[12.396723967239666,44.833972145635414],[12.396723967239666,44.82721783655589],[12.403924039240394,44.825529259286014],[12.414724147241486,44.82215210474624],[12.42552425524255,44.82046352747636],[12.414724147241486,44.803577754777535],[12.396723967239666,44.79344629115823],[12.37512375123751,44.79175771388836],[12.357123571235718,44.803577754777535],[12.346323463234626,44.81539779566671],[12.321123211232106,44.833972145635414],[12.303123031230314,44.84241503198484],[12.29232292322925,44.84241503198484],[12.26712267122673,44.82721783655589],[12.26712267122673,44.82046352747636],[12.281522815228158,44.82046352747636],[12.252722527225274,44.75123185941118],[12.245522455224545,44.71239458220387],[12.252722527225274,44.66849157318691],[12.26712267122673,44.63640860505913],[12.27432274322743,44.621211409630206],[12.285122851228522,44.61445710055065],[12.285122851228522,44.602637059661475],[12.281522815228158,44.531716814326415],[12.285122851228522,44.48781380530946],[12.313923139231406,44.38649916911649],[12.31752317523177,44.36117051006826],[12.321123211232106,44.35441620098874],[12.32472324723247,44.34766189190921],[12.339123391233926,44.33415327375013],[12.34272342723429,44.32908754194048],[12.34272342723429,44.308824614701905],[12.34992349923499,44.2885616874633],[12.36792367923681,44.251412987525896],[12.389523895238966,44.22270717393789],[12.41832418324185,44.19568993761976],[12.457924579245798,44.16698412403176],[12.479524795247954,44.139966887713626],[12.511925119251202,44.1146382286654],[12.547925479254786,44.09268672415692],[12.573125731257306,44.085932415077394],[12.630726307263075,44.03020936517126],[12.659526595265959,44.00825786066278],[12.691926919269207,43.99137208796395],[12.709927099270999,43.982929201614525],[12.753127531275311,43.97279773799525],[12.756727567275675,43.97110916072535],[12.803528035280351,43.9660434289157],[12.821528215282171,43.95928911983617],[12.86112861128612,43.93564903805782],[12.929529295292951,43.91538611081924],[12.940329403294044,43.90525464719994],[12.947529475294772,43.89681176085051],[13.253532535325348,43.702625374814005],[13.368733687336885,43.65027947944765],[13.390333903339041,43.645213747637996],[13.401134011340133,43.635082284018694],[13.44793447934481,43.62326224312952],[13.47313473134733,43.61144220224034],[13.483934839348393,43.61650793404999],[13.491134911349121,43.62326224312952],[13.494734947349485,43.62832797493917],[13.49833498334985,43.62832797493917],[13.501935019350213,43.63001655220904],[13.505535055350549,43.63339370674882],[13.509135091350913,43.63339370674882],[13.516335163351641,43.631705129478945],[13.519935199352005,43.626639397669294],[13.519935199352005,43.62326224312952],[13.52353523535237,43.61988508858977],[13.541535415354161,43.613130779510215],[13.559535595355953,43.59624500681139],[13.570335703357046,43.58104781138246],[13.577535775357774,43.57260492503303],[13.59913599135993,43.569227770493285],[13.617136171361722,43.56078488414386],[13.62433624336245,43.547276265984806],[13.617136171361722,43.53207907055585],[13.761137611376114,43.26359528464451],[13.77553775537757,43.243332357405905],[13.779137791377934,43.23657804832638],[13.786337863378634,43.20111792565885],[13.789937899378998,43.19267503930942],[13.804338043380454,43.177477843880496],[13.83313833138331,43.12682052578401],[13.847538475384766,43.09136040311648],[13.865538655386558,43.00693153962234],[13.905139051390535,42.9022397488896],[13.944739447394483,42.79754795815688],[13.980739807398095,42.73000486736157],[14.00234002340025,42.697921899233805],[14.063540635406355,42.62531307662884],[14.067140671406719,42.6101158811999],[14.074340743407447,42.598295840310726],[14.221942219422203,42.46996396779964],[14.283142831428307,42.42774953605257],[14.355143551435532,42.39228941338503],[14.387543875438752,42.37371506341633],[14.430744307443092,42.321369168049955],[14.560345603456028,42.22512026366665],[14.59634596345964,42.208234490967826],[14.653946539465409,42.191348718269],[14.693546935469357,42.18459440918946],[14.707947079470813,42.176151522840044],[14.718747187471877,42.159265750141216],[14.72234722347224,42.118739895664035],[14.729547295472969,42.098476968425445],[14.740347403474033,42.08496835026638],[14.758347583475853,42.078214041186854],[14.761947619476189,42.078214041186854],[14.779947799478009,42.07483688664709],[14.801548015480165,42.06639400029768],[14.833948339483413,42.0444424957892],[14.869948699486997,42.03262245490002],[14.952749527495286,42.020802414010845],[14.992349923499233,42.01067095039154],[15.00675006750069,42.000539486772254],[15.035550355503574,41.97521082772401],[15.046350463504638,41.96845651864447],[15.06435064350643,41.96507936410471],[15.103951039510406,41.94143928232636],[15.121951219512198,41.93468497324682],[15.143551435514354,41.931307818707054],[15.16515165151651,41.92793066416729],[15.280352803528046,41.92793066416729],[15.399153991539919,41.9076677369287],[15.445954459544595,41.9076677369287],[15.611556115561172,41.92793066416729],[15.773557735577356,41.921176355087766],[16.025560255602556,41.94481643686612],[16.11196111961121,41.92793066416729],[16.11196111961121,41.9262420868974],[16.140761407614093,41.91948777781788],[16.16236162361625,41.89247054149976],[16.18036180361804,41.89247054149976],[16.176761767617677,41.87727334607081],[16.183961839618405,41.858698996102106],[16.191161911619133,41.82155029616469],[16.194761947619497,41.80804167800562],[16.191161911619133,41.791155905306795],[16.183961839618405,41.77933586441762],[16.165961659616613,41.764138668988664],[16.144361443614457,41.748941473559725],[16.126361263612637,41.7421871644802],[16.108361083610845,41.73712143267055],[16.090360903609053,41.72530139178137],[16.06156061560617,41.701661310003004],[16.02916029160292,41.67970980549454],[15.924759247592476,41.64087252828723],[15.899558995589956,41.61385529196912],[15.892358923589256,41.576706592031684],[15.895958959589592,41.5361807375545],[15.910359103591048,41.50240919215685],[15.931959319593204,41.478769110378494],[15.960759607596088,41.46019476040978],[16.021960219602192,41.42811179228201],[16.08676086760869,41.41291459685307],[16.101161011610117,41.40278313323377],[16.115561155611573,41.39265166961448],[16.302763027630277,41.32848573335893],[16.461164611646126,41.26263121983351],[16.52236522365223,41.25081117894433],[16.54036540365405,41.238991138055155],[16.554765547655478,41.22717109716598],[16.594365943659454,41.206908169927374],[16.8319683196832,41.1461193882116],[16.84996849968499,41.13261077005254],[16.85716857168572,41.13261077005254],[16.85716857168572,41.14105365640195],[16.864368643686447,41.14105365640195],[16.885968859688603,41.12416788370312],[17.05877058770588,41.08195345195605],[17.202772027720272,41.02116467024028],[17.274772747727496,40.9806388157631],[17.31077310773108,40.95531015671486],[17.346773467734693,40.9114071476979],[17.36117361173612,40.906341415888264],[17.379173791737912,40.9029642613485],[17.415174151741525,40.88101275684002],[17.476374763747657,40.83035543874354],[17.490774907749085,40.82528970693389],[17.51237512375124,40.820223975124236],[17.548375483754853,40.801649625155534],[17.634776347763477,40.784763852456706],[17.64557645576457,40.779698120647055],[17.749977499775014,40.74761515251929],[17.843578435784366,40.69358067988304],[17.92277922779229,40.68344921626374],[17.95517955179554,40.66994059810469],[17.95517955179554,40.64630051632632],[17.965979659796602,40.64630051632632],[17.991179911799122,40.65305482540586],[18.00558005580058,40.65136624813597],[18.01278012780128,40.644611939056446],[18.01278012780128,40.634480475437144],[18.016380163801642,40.624349011817856],[18.0379803798038,40.60746323911903],[18.041580415804162,40.60239750730938],[18.0379803798038,40.556805921022544],[18.120781207812087,40.50446002565617],[18.210782107821075,40.46393417117899],[18.23238232382326,40.46055701663923],[18.23958239582396,40.457179862099466],[18.25758257582578,40.430162625781335],[18.271982719827207,40.42171973943192],[18.304383043830455,40.39976823492346],[18.329583295832975,40.3659966895258],[18.343983439834403,40.35079949409685],[18.361983619836195,40.34573376228721],[18.369183691836923,40.33897945320767],[18.437584375843755,40.2680592078726],[18.498784987849888,40.15323595352058],[18.505985059850616,40.14648164444104],[18.50958509585095,40.1414159126314],[18.51678516785168,40.13972733536151],[18.50958509585095,40.12790729447234],[18.513185131851316,40.12115298539281],[18.51678516785168,40.11439867631327],[18.51678516785168,40.10426721269398],[18.50958509585095,40.09413574907468],[18.49158491584916,40.08400428545538],[18.48438484384843,40.055298471867374],[18.469984699847004,40.0434784309782],[18.43398433984339,40.02321550373961],[18.412384123841235,39.97931249472266],[18.40878408784087,39.96918103110336],[18.405184051840536,39.94722952659488],[18.394383943839443,39.92527802208642],[18.394383943839443,39.916835135737],[18.397983979839807,39.88981789941887],[18.40158401584017,39.877997858529696],[18.387183871838715,39.82565196316334],[18.39078390783908,39.817209076813924],[18.38358383583838,39.81383192227415],[18.372783727837287,39.800323304115096],[18.369183691836923,39.79694614957532],[18.347583475834767,39.79863472684521],[18.336783367833675,39.800323304115096],[18.329583295832975,39.80370045865486],[18.2827828278283,39.832406272242864],[18.26478264782648,39.837472004052515],[18.22518225182253,39.837472004052515],[18.210782107821075,39.83916058132239],[18.185581855818555,39.852669199481454],[18.160381603816035,39.86111208583087],[18.13158131581318,39.88306359033935],[18.095580955809567,39.90332651757794],[18.08118081180814,39.9067036721177],[18.070380703807047,39.91176940392735],[18.00558005580058,39.98606680380219],[17.994779947799486,39.9945096901516],[17.994779947799486,40.002952576501016],[18.01278012780128,40.002952576501016],[18.019980199802006,40.00970688558054],[18.02358023580237,40.02152692646972],[18.016380163801642,40.03672412189867],[18.00558005580058,40.045167008248086],[17.976779767797694,40.05192131732761],[17.965979659796602,40.05698704913726],[18.001980019800214,40.07387282183609],[18.01278012780128,40.09582432634457],[17.99837998379985,40.12115298539281],[17.965979659796602,40.14648164444104],[17.940779407794082,40.16336741713987],[17.926379263792654,40.17687603529893],[17.919179191791926,40.190384653458],[17.919179191791926,40.21064758069659],[17.915579155791562,40.227533353395415],[17.911979119791198,40.24104197155448],[17.901179011790134,40.249484857903894],[17.911979119791198,40.249484857903894],[17.911979119791198,40.25455058971353],[17.861578615786158,40.284944980571424],[17.84717847178473,40.290010712381076],[17.51237512375124,40.30351933054014],[17.49437494374945,40.3068964850799],[17.440374403744045,40.33053656685826],[17.429574295742952,40.332225144128145],[17.407974079740796,40.33053656685826],[17.400774007740097,40.33053656685826],[17.39357393573937,40.33560229866791],[17.375573755737577,40.34911091682697],[17.36837368373685,40.35079949409685],[17.350373503735057,40.35417664863661],[17.296372963729652,40.37950530768485],[17.238772387723884,40.394702503113805],[17.213572135721364,40.40652254400298],[17.199171991719936,40.42003116216205],[17.224372243722456,40.42847404851146],[17.242372423724248,40.44198266667051],[17.249572495724976,40.457179862099466],[17.227972279722792,40.47406563479829],[17.245972459724612,40.48081994387782],[17.296372963729652,40.472377057528405],[17.31797317973181,40.48250852114771],[17.321573215732172,40.49770571657665],[17.303573035730352,40.499394293846535],[17.26037260372604,40.48926283022723],[17.263972639726404,40.49095140749712],[17.26757267572677,40.49601713930676],[17.245972459724612,40.5027714483863],[17.227972279722792,40.49770571657665],[17.209972099721,40.487574252957344],[17.188371883718844,40.48250852114771],[17.181171811718116,40.48588567568747],[17.17757177571775,40.492639984766996],[17.170371703717052,40.5027714483863],[17.166771667716688,40.50952575746582],[17.155971559715596,40.512902912005586],[17.13437134371344,40.512902912005586],[17.123571235712376,40.514591489275475],[17.047970479704816,40.519657221085126],[16.97596975969759,40.492639984766996],[16.911169111691123,40.44535982121029],[16.864368643686447,40.39132534857404],[16.78156781567816,40.30183075327025],[16.759967599676003,40.269747785142485],[16.738367383673847,40.21064758069659],[16.73116731167312,40.200516117077285],[16.71676716767169,40.19376180799776],[16.68076680766808,40.14648164444104],[16.64116641166413,40.11946440812292],[16.62316623166231,40.107644367233746],[16.605166051660518,40.08400428545538],[16.59796597965979,40.04685558551796],[16.59796597965979,40.03334696735891],[16.612366123661246,39.99619826742149],[16.63036630366304,39.9658038765636],[16.62316623166231,39.95398383567442],[16.605166051660518,39.942163794785245],[16.59076590765909,39.920212290276766],[16.543965439654414,39.88475216760922],[16.507965079650802,39.837472004052515],[16.48996489964901,39.80538903592473],[16.48996489964901,39.774994645066855],[16.500765007650074,39.74628883147885],[16.529565295652958,39.72096017243061],[16.529565295652958,39.71420586335107],[16.51516515165153,39.68887720430283],[16.54756547565475,39.66017139071482],[16.59076590765909,39.63653130893647],[16.62316623166231,39.62471126804729],[16.74916749167491,39.61964553623764],[16.78156781567816,39.61120264988823],[16.79956799567995,39.60275976353881],[16.81756817568177,39.59093972264964],[16.8319683196832,39.5757425272207],[16.835568355683563,39.560545331791744],[16.846368463684655,39.55210244544233],[16.90756907569076,39.530150940933865],[16.954369543695435,39.49975655007597],[16.972369723697255,39.49469081826632],[16.99396993969941,39.49300224099645],[17.011970119701203,39.48624793191691],[17.022770227702296,39.47611646829762],[17.037170371703724,39.460919272868665],[17.05877058770588,39.44234492289996],[17.087570875708764,39.42208199566137],[17.123571235712376,39.40857337750231],[17.15957159571596,39.40688480023242],[17.123571235712376,39.33765313216723],[17.116371163711648,39.28361865953099],[17.112771127711284,39.27011004137192],[17.116371163711648,39.25660142321286],[17.123571235712376,39.24478138232368],[17.141571415714168,39.222829877815215],[17.145171451714532,39.211009836926024],[17.141571415714168,39.17892686879826],[17.123571235712376,39.12151524162225],[17.123571235712376,39.091120850764355],[17.148771487714896,39.05397215082694],[17.15237152371523,39.04552926447752],[17.15957159571596,39.04046353266787],[17.191971919719208,39.03033206904858],[17.206372063720636,39.028643491778695],[17.188371883718844,39.01851202815941],[17.17757177571775,39.01175771907987],[17.173971739717416,39.00500341000034],[17.170371703717052,38.966166132793035],[17.173971739717416,38.9611004009834],[17.137971379713804,38.93746031920503],[17.13437134371344,38.93239458739538],[17.12717127171271,38.929017432855616],[17.119971199712012,38.91888596923633],[17.105571055710556,38.89862304199774],[17.094770947709492,38.91888596923633],[17.06957069570697,38.92226312377609],[17.040770407704088,38.91550881469655],[17.022770227702296,38.90537735107726],[16.997569975699776,38.929017432855616],[16.979569795697955,38.93746031920503],[16.9579695796958,38.94083747374479],[16.936369363693643,38.93914889647492],[16.839168391683927,38.91888596923633],[16.727567275672754,38.87836011475913],[16.687966879668807,38.85640861025067],[16.68076680766808,38.847965723901254],[16.669966699667015,38.841211414821714],[16.612366123661246,38.81588275577347],[16.587165871658726,38.79730840580477],[16.57276572765727,38.785488364915594],[16.561965619656206,38.75678255132759],[16.551165511655114,38.741585355898636],[16.54036540365405,38.72301100592993],[16.533165331653322,38.699370924151566],[16.54756547565475,38.69261661507204],[16.54756547565475,38.68923946053228],[16.54756547565475,38.67235368783345],[16.558365583655842,38.596367710688725],[16.576365763657634,38.52882461989341],[16.576365763657634,38.503495960845186],[16.569165691656934,38.429198560970335],[16.561965619656206,38.415689942811284],[16.52236522365223,38.38698412922328],[16.507965079650802,38.371786933794326],[16.49716497164971,38.37009835652445],[16.468364683646854,38.34814685201597],[16.435964359643606,38.33970396566656],[16.33876338763389,38.30086668845925],[16.30636306363064,38.2772266066809],[16.169561695616977,38.143829002360164],[16.151561515615157,38.11005745696251],[16.126361263612637,38.00536566622978],[16.11196111961121,37.97328269810201],[16.101161011610117,37.959774079942946],[16.090360903609053,37.94964261632366],[16.075960759607597,37.939511152704355],[16.06156061560617,37.93275684362483],[16.014760147601493,37.924313957275416],[16.000360003600036,37.919248225465765],[15.942759427594297,37.93275684362483],[15.762757627576292,37.92600253454529],[15.733957339573408,37.93106826635494],[15.708757087570888,37.941199729974244],[15.683556835568368,37.95301977086342],[15.665556655566576,37.966528389022486],[15.643956439564391,37.98847989353095],[15.636756367563692,38.008742820769555],[15.636756367563692,38.02731717073826],[15.658356583565848,38.0425143661672],[15.633156331563328,38.07459733429498],[15.622356223562235,38.091483106993806],[15.6259562595626,38.106680302422745],[15.640356403564056,38.12525465239146],[15.647556475564755,38.143829002360164],[15.647556475564755,38.16240335232888],[15.636756367563692,38.18604343410723],[15.633156331563328,38.21981497950489],[15.65115651156512,38.241766484013354],[15.683556835568368,38.253586524902545],[15.787957879578812,38.2772266066809],[15.795157951579512,38.28566949303031],[15.798757987579876,38.29073522483996],[15.813158131581332,38.30086668845925],[15.816758167581696,38.3059324202689],[15.831158311583124,38.351524006555735],[15.90315903159032,38.47310156998729],[15.917559175591776,38.51700457900424],[15.917559175591776,38.55077612440189],[15.899558995589956,38.57779336072002],[15.870758707587072,38.60481059703814],[15.863558635586372,38.6081877515779],[15.849158491584916,38.61325348338755],[15.845558455584552,38.618319215197204],[15.834758347583488,38.62845067881649],[15.834758347583488,38.63351641062614],[15.834758347583488,38.638582142435794],[15.838358383583852,38.6487136060551],[15.845558455584552,38.66053364694427],[15.863558635586372,38.66897653329369],[15.90315903159032,38.679107996912975],[15.967959679596817,38.71287954231063],[16.0039600396004,38.72469958319981],[16.047160471604712,38.728076737739585],[16.119161191611937,38.721322428660045],[16.13716137161373,38.72301100592993],[16.151561515615157,38.73145389227935],[16.18036180361804,38.748339664978175],[16.201962019620197,38.77704547856618],[16.216362163621653,38.8141941785036],[16.219962199622017,38.85640861025067],[16.219962199622017,38.89862304199774],[16.216362163621653,38.91888596923633],[16.20556205562056,38.93408316466527],[16.191161911619133,38.94421462828457],[16.169561695616977,38.94759178282433],[16.15516155161552,38.95434609190386],[16.140761407614093,38.97460901914245],[16.083160831608325,39.075923655335416],[16.043560435604377,39.3106358958491],[16.032760327603285,39.34440744124676],[15.996759967599672,39.4389677683602],[15.957159571595724,39.47780504556749],[15.931959319593204,39.51326516823504],[15.90315903159032,39.5352166727435],[15.8779587795878,39.55210244544233],[15.867158671586736,39.56392248633152],[15.859958599586008,39.58925114537975],[15.849158491584916,39.61457980442799],[15.838358383583852,39.6534170816353],[15.816758167581696,39.67874574068354],[15.805958059580604,39.69563151338237],[15.787957879578812,39.79694614957532],[15.787957879578812,39.790191840495794],[15.784357843578448,39.810454767734385],[15.77715777157772,39.82058623135369],[15.769957699576992,39.82396338589345],[15.769957699576992,39.830717694972975],[15.780757807578084,39.86786639491039],[15.773557735577356,39.89150647668876],[15.741157411574136,39.930343753896054],[15.733957339573408,39.94385237205512],[15.72675726757268,39.96411529929371],[15.712357123571252,39.98100107199254],[15.679956799568004,40.00801830831067],[15.65115651156512,40.0434784309782],[15.629556295562963,40.05698704913726],[15.6259562595626,40.06542993548668],[15.6259562595626,40.07724997637585],[15.611556115561172,40.07387282183609],[15.535955359553611,40.07724997637585],[15.514355143551455,40.067118512756565],[15.496354963549635,40.04685558551796],[15.460354603546051,40.02996981281913],[15.427954279542803,39.999575421961254],[15.409954099541011,39.9945096901516],[15.35955359553597,39.999575421961254],[15.34155341553415,40.004641153770905],[15.312753127531295,40.03334696735891],[15.301953019530202,40.03672412189867],[15.294752947529474,40.03165839008902],[15.28395283952841,40.02996981281913],[15.273152731527318,40.02828123554926],[15.262352623526255,40.02996981281913],[15.262352623526255,40.03672412189867],[15.280352803528046,40.04685558551796],[15.262352623526255,40.07387282183609],[15.23355233552337,40.09920148088433],[15.20835208352085,40.1127100990434],[15.19035190351903,40.11946440812292],[15.125551255512562,40.170121726219406],[15.111151111511134,40.17518745802906],[15.096750967509678,40.17349888075917],[15.06435064350643,40.166744571679644],[15.046350463504638,40.16843314894952],[15.035550355503574,40.17518745802906],[15.021150211502118,40.19545038526765],[15.003150031500326,40.21064758069659],[14.974349743497442,40.219090467046],[14.967149671496713,40.22415619885565],[14.95634956349565,40.23091050793518],[14.93834938349383,40.227533353395415],[14.920349203492037,40.23766481701472],[14.909549095490974,40.24104197155448],[14.90594905949061,40.25792774425331],[14.93114931149313,40.284944980571424],[14.93834938349383,40.3068964850799],[14.93114931149313,40.32378225777873],[14.93114931149313,40.33391372139802],[14.941949419494193,40.337290875937796],[14.952749527495286,40.34066803047756],[14.96354963549635,40.34573376228721],[14.974349743497442,40.352488071366736],[14.995949959499598,40.35924238044626],[14.999549995499962,40.369373844065564],[14.999549995499962,40.39807965765357],[14.974349743497442,40.431851203051224],[14.887948879488789,40.57369169372137],[14.862748627486269,40.60746323911903],[14.833948339483413,40.632791898167255],[14.808748087480893,40.65305482540586],[14.783547835478373,40.66994059810469],[14.751147511475125,40.67669490718421],[14.718747187471877,40.66656344356491],[14.689946899468993,40.64967767086608],[14.679146791467929,40.64630051632632],[14.625146251462525,40.64967767086608],[14.614346143461432,40.64630051632632],[14.57114571145712,40.617594702738316],[14.5459454594546,40.61421754819855],[14.517145171451716,40.619283280008204],[14.488344883448832,40.632791898167255],[14.47034470344704,40.624349011817856],[14.423544235442364,40.61590612546844],[14.401944019440208,40.60239750730938],[14.355143551435532,40.58382315734066],[14.34434344343444,40.57031453918161],[14.329943299433012,40.58382315734066],[14.326343263432648,40.60577466184914],[14.337143371433712,40.624349011817856],[14.358743587435868,40.632791898167255],[14.380343803438052,40.634480475437144],[14.387543875438752,40.63616905270703],[14.398343983439844,40.644611939056446],[14.405544055440572,40.65643197994562],[14.44514445144452,40.6868263708035],[14.477544775447768,40.695269257152916],[14.481144811448132,40.71215502985174],[14.473944739447404,40.72904080255057],[14.459544595445948,40.744237997979525],[14.441544415444156,40.75436946159881],[14.419944199442,40.75099230705905],[14.405544055440572,40.7560580388687],[14.39474394743948,40.76112377067835],[14.383943839438388,40.77294381156753],[14.365943659436596,40.779698120647055],[14.347943479434804,40.79658389334588],[14.311943119431191,40.82866686147365],[14.2939429394294,40.83879832509295],[14.275942759427608,40.84048690236284],[14.247142471424723,40.837109747823064],[14.221942219422203,40.83204401601343],[14.211142111421111,40.820223975124236],[14.203942039420411,40.801649625155534],[14.182341823418227,40.801649625155534],[14.164341643416435,40.8151582433146],[14.135541355413551,40.81853539785436],[14.11034110341103,40.83035543874354],[14.095940959409603,40.8337325932833],[14.081540815408175,40.83204401601343],[14.077940779407811,40.821912552394124],[14.077940779407811,40.81009251150495],[14.081540815408175,40.79658389334588],[14.081540815408175,40.78307527518682],[14.074340743407447,40.786452429726594],[14.049140491404927,40.78982958426636],[14.041940419404199,40.79658389334588],[14.052740527405291,40.837109747823064],[14.045540455404563,40.87425844776048],[14.020340203402043,40.9215386113172],[13.966339663396639,40.99583601119204],[13.930339303393055,41.014410361160756],[13.919539195391962,41.02285324751017],[13.915939159391598,41.03298471112946],[13.912339123391234,41.05493621563794],[13.912339123391234,41.06506767925724],[13.88353883538835,41.10559353373442],[13.85113851138513,41.14780796548149],[13.789937899378998,41.2052195926575],[13.721537215372166,41.252499756214206],[13.70713707137071,41.25587691075398],[13.678336783367854,41.25081117894433],[13.663936639366398,41.25081117894433],[13.65673656736567,41.259254065293746],[13.595535955359566,41.252499756214206],[13.563135631356317,41.23730256078527],[13.57393573935741,41.20859674719726],[13.545135451354525,41.206908169927374],[13.534335343353433,41.20859674719726],[13.52353523535237,41.21535105627679],[13.519935199352005,41.22548251989609],[13.512735127351277,41.22885967443585],[13.505535055350549,41.22210536535633],[13.49833498334985,41.22210536535633],[13.480334803348029,41.238991138055155],[13.325533255332573,41.294714187961276],[13.285932859328597,41.296402765231164],[13.203132031320308,41.28458272434199],[13.18873188731888,41.27782841526245],[13.152731527315268,41.26094264256362],[13.11313113131132,41.25081117894433],[13.091530915309164,41.22717109716598],[13.069930699307008,41.22210536535633],[13.044730447304488,41.22717109716598],[13.03753037530376,41.24067971532503],[13.033930339303396,41.25756548802386],[13.023130231302332,41.27276268345281],[13.01233012330124,41.28627130161186],[12.994329943299448,41.314977115199866],[12.979929799297992,41.33017431062882],[12.922329223292252,41.379143051455415],[12.893528935289368,41.399405978694006],[12.86112861128612,41.41291459685307],[12.843128431284327,41.41798032866272],[12.763927639276403,41.421357483202485],[12.749527495274947,41.42304606047236],[12.67752677526775,41.4585061831399],[12.65232652326523,41.46526049221943],[12.641526415264167,41.4585061831399],[12.634326343263439,41.44668614225073],[12.61992619926201,41.4585061831399],[12.54432544325445,41.54462362390392],[12.447124471244706,41.63074106466793],[12.34272342723429,41.701661310003004],[12.328323283232834,41.71179277362231],[12.29952299522995,41.71685850543196],[12.285122851228522,41.726989969051246],[12.277922779227794,41.728678546321134],[12.245522455224545,41.733744278130786],[12.238322383223846,41.73543285540066],[12.22392223922239,41.75063005082961],[12.21672216722169,41.76751582352844],[12.213122131221326,41.78777875076703],[12.209522095220962,41.80804167800562],[12.205922059220597,41.826616027974325],[12.195121951219505,41.84687895521293],[12.169921699216985,41.8789619233407],[12.14832148321483,41.90429058238894],[12.051120511205113,41.96001363229506],[12.04032040320405,41.96507936410471],[12.029520295202957,41.973522250454124],[12.025920259202593,41.9853422913433],[12.018720187201865,41.993785177692715],[11.993519935199345,41.9954737549626],[11.98271982719828,42.000539486772254],[11.968319683196825,42.01067095039154],[11.953919539195397,42.02249099128072],[11.935919359193605,42.03093387763013],[11.917919179191813,42.03768818670967],[11.838718387183889,42.035999609439784],[11.827918279182796,42.034311032169896],[11.820718207182068,42.04613107305909],[11.809918099181004,42.06639400029768],[11.791917919179213,42.08496835026638],[11.78111781117812,42.09172265934592],[11.770317703177028,42.10691985477486],[11.748717487174872,42.12718278201345],[11.745117451174508,42.13731424563275],[11.741517415174172,42.15251144106169],[11.737917379173808,42.16939721376052],[11.683916839168404,42.25213749998477],[11.658716587165884,42.2791547363029],[11.539915399154012,42.348386404368085],[11.489514895148972,42.35851786798737],[11.421114211142111,42.38722368157539],[11.395913959139591,42.39228941338503],[11.395913959139591,42.40073229973444],[11.385113851138527,42.404109454274206],[11.377913779137799,42.40748660881398],[11.367113671136707,42.40748660881398],[11.356313563135643,42.40748660881398],[11.363513635136371,42.40073229973444],[11.334713347133487,42.40073229973444],[11.259112591125927,42.420995226973034],[11.24471244712447,42.42268380424292],[11.226712267122679,42.42268380424292],[11.21231212312125,42.41930664970316],[11.205112051120523,42.410863763353746],[11.201512015120159,42.395666567924806],[11.18711187111873,42.37878079522598],[11.183511835118367,42.36696075433679],[11.176311763117639,42.368649331606676],[11.165511655116546,42.368649331606676],[11.158311583115847,42.36696075433679],[11.154711547115483,42.36696075433679],[11.147511475114754,42.37202648614644],[11.133111331113327,42.383846527035615],[11.107911079110806,42.390600836115155],[11.09351093510935,42.40242087700433],[11.08631086310865,42.41761807243327],[11.08631086310865,42.42943811332245],[11.100711007110078,42.44294673148151],[11.11151111511117,42.446323886021275],[11.140311403114026,42.43956957694175],[11.165511655116546,42.43956957694175],[11.179911799118003,42.45645534964058],[11.18711187111873,42.48009543141893],[11.190711907119066,42.50542409046717],[11.18711187111873,42.52062128589611],[11.165511655116546,42.545949944944354],[11.158311583115847,42.56452429491307],[11.147511475114754,42.56283571764318],[11.13671136711369,42.55945856310342],[11.129511295112962,42.557769985833545],[11.115111151111506,42.571278603992596],[11.107911079110806,42.59154153123119],[11.097110971109714,42.60673872666014],[11.079110791107922,42.613493035739666],[11.079110791107922,42.63206738570838],[11.053910539105402,42.64726458113732],[11.007110071100726,42.66752750837591],[10.999909999099998,42.67934754926509],[10.996309963099634,42.696233321963916],[10.989109891098906,42.70974194012298],[10.981909819098206,42.71649624920251],[10.971109711097114,42.719873403742284],[10.94230942309423,42.74351348552064],[10.89190891908919,42.76377641275923],[10.729907299073005,42.80430226723641],[10.755107551075525,42.81949946266536],[10.76590765907659,42.83469665809429],[10.76590765907659,42.85495958533289],[10.76590765907659,42.87691108984137],[10.769507695076953,42.8836653989209],[10.773107731077317,42.88873113073055],[10.776707767077681,42.895485439810074],[10.773107731077317,42.90730548069925],[10.762307623076225,42.91743694431855],[10.751507515075161,42.92587983066798],[10.68310683106833,42.949519912446334],[10.632706327063289,42.957962798795734],[10.582305823058249,42.95965137606561],[10.539105391053909,42.949519912446334],[10.542705427054273,42.93938844882703],[10.546305463054637,42.93432271701738],[10.517505175051753,42.92587983066798],[10.49950499504996,42.941077026096906],[10.477904779047805,42.990045766923515],[10.503105031050325,43.00524296235244],[10.517505175051753,43.02381731232117],[10.539105391053909,43.079540362227306],[10.535505355053544,43.09136040311648],[10.535505355053544,43.11331190762493],[10.539105391053909,43.13357483486354],[10.546305463054637,43.14708345302259],[10.539105391053909,43.16396922572142],[10.535505355053544,43.185920730229896],[10.531905319053209,43.22644658470708],[10.528305283052845,43.24670951194568],[10.517505175051753,43.26697243918426],[10.438304383043828,43.38855000261583],[10.37350373503736,43.452715938871364],[10.359103591035904,43.46453597976054],[10.326703267032684,43.47635602064972],[10.315903159031592,43.493241793348545],[10.294302943029436,43.569227770493285],[10.265502655026552,43.80900574281662],[10.251102511025124,43.84615444275403],[10.211502115021148,43.920451842628864],[10.179101791017928,43.95591196529642],[10.135901359013587,43.9778634698049],[10.107101071010703,44.01670074701218],[10.089100891008911,44.02514363336161],[10.07110071100712,44.03020936517126],[10.035100351003507,44.04709513787009],[10.013500135001351,44.05216086967974],[9.999099990999923,44.05722660148936],[9.988299882998831,44.06060375602914],[9.984699846998467,44.05553802421949],[9.981099810998103,44.050472292409836],[9.973899738997403,44.045406560600185],[9.963099630996311,44.045406560600185],[9.952299522995247,44.04878371513996],[9.93789937899379,44.06060375602914],[9.905499054990543,44.07917810599784],[9.88749887498875,44.09268672415692],[9.876698766987687,44.08762099234727],[9.844298442984439,44.107883919585845],[9.826298262982647,44.107883919585845],[9.833498334983346,44.099441033236445],[9.829898298982982,44.09775245596657],[9.822698226982283,44.094375301426794],[9.819098190981919,44.09268672415692],[9.822698226982283,44.08424383780749],[9.829898298982982,44.07917810599784],[9.83709837098371,44.07411237418819],[9.847898478984803,44.072423796918315],[9.847898478984803,44.06566948783879],[9.840698406984075,44.063980910568915],[9.83709837098371,44.06060375602914],[9.833498334983346,44.05216086967974],[9.847898478984803,44.04709513787009],[9.844298442984439,44.04034082879056],[9.833498334983346,44.042029406060436],[9.826298262982647,44.05553802421949],[9.819098190981919,44.063980910568915],[9.772297722977243,44.07917810599784],[9.721897218972202,44.112949651395496],[9.71109711097111,44.11801538320515],[9.682296822968226,44.13658973317385],[9.671496714967162,44.1416554649835],[9.642696426964278,44.1416554649835],[9.631896318963186,44.14503261952328],[9.621096210962122,44.148409774063055],[9.58509585095851,44.17711558765106],[9.581495814958146,44.17880416492093],[9.574295742957446,44.192312783079984],[9.556295562955626,44.20075566942941],[9.50949509495095,44.21595286485834],[9.498694986949886,44.22101859666799],[9.491494914949158,44.23115006028729],[9.48429484294843,44.24465867844634],[9.473494734947366,44.23959294663672],[9.455494554945545,44.23790436936682],[9.437494374943753,44.23959294663672],[9.430294302943025,44.24803583298612],[9.423094230942326,44.25647871933555],[9.37629376293765,44.27167591476447],[9.369093690936921,44.29362741927295],[9.261092610926113,44.33584185102001],[9.232292322923229,44.35441620098874],[9.221492214922165,44.344284737369435],[9.214292142921437,44.33415327375013],[9.210692106921073,44.32064465559108],[9.210692106921073,44.30544746016213],[9.163891638916397,44.31895607832121],[9.145891458914605,44.32908754194048],[9.149491494914969,44.339219005559784],[9.131491314913148,44.36285908733814],[9.102691026910264,44.374679128227314],[9.001890018900184,44.38649916911649],[8.951489514895144,44.40000778727557],[8.922689226892288,44.411827828164746],[8.91548915489156,44.40845067362497],[8.868688686886884,44.41013925089487],[8.847088470884728,44.41351640543462],[8.836288362883636,44.4168935599744],[8.825488254882544,44.428713600863574],[8.760687606876076,44.43209075540332],[8.735487354873555,44.428713600863574],[8.724687246872463,44.42364786905392],[8.695886958869607,44.406762096355095],[8.685086850868515,44.39831921000567],[8.677886778867787,44.39494205546592],[8.670686706867087,44.39494205546592],[8.66348663486636,44.39494205546592],[8.656286562865631,44.39494205546592],[8.595085950859527,44.36285908733814],[8.577085770857707,44.36117051006826],[8.566285662856643,44.357793355528486],[8.541085410854123,44.339219005559784],[8.465484654846563,44.303758882892254],[8.443884438844407,44.28349595565365],[8.451084510845106,44.26492160568495],[8.440284402844043,44.25310156479577],[8.436684366843679,44.24803583298612],[8.436684366843679,44.23959294663672],[8.433084330843315,44.23790436936682],[8.418684186841887,44.23115006028729],[8.411484114841159,44.227772905747514],[8.407884078840794,44.21426428758846],[8.407884078840794,44.20413282396916],[8.407884078840794,44.19400136034989],[8.393483934839367,44.18218131946068],[8.368283682836847,44.17373843311128],[8.314283142831442,44.16022981495223],[8.285482854828558,44.148409774063055],[8.271082710827102,44.13827831044375],[8.256682566825674,44.12814684682445],[8.231482314823154,44.102818187776194],[8.231482314823154,44.09606387869667],[8.231482314823154,44.08086668326774],[8.231482314823154,44.072423796918315],[8.224282242822426,44.05722660148936],[8.217082170821726,44.045406560600185],[8.170281702817022,44.006569283392906],[8.15228152281523,43.982929201614525],[8.166681666816686,43.96266627437595],[8.166681666816686,43.95591196529642],[8.145081450814502,43.952534810756646],[8.116281162811646,43.92720615170842],[8.087480874808762,43.920451842628864],[8.080280802808034,43.91538611081924],[8.07668076680767,43.91032037900959],[8.073080730807305,43.90525464719994],[8.069480694806941,43.89681176085051],[8.055080550805513,43.89174602904086],[8.029880298802993,43.88668029723121],[7.961479614796161,43.85290875183358],[7.785077850778521,43.822514360975674],[7.738277382773845,43.79887427919732],[7.695076950769504,43.79043139284792],[7.572675726757268,43.792119970117795],[7.543875438754384,43.78367708376837],[7.529475294752956,43.78367708376837],[7.522275222752228,43.78874281557802],[7.511475114751164,43.792119970117795],[7.500675006750072,43.792119970117795],[7.489874898749008,43.78536566103827],[7.486274862748644,43.78536566103827],[7.479074790747916,43.78536566103827],[7.475474754747552,43.78367708376837],[7.475474754747552,43.78029992922862],[7.479074790747916,43.76847988833944],[7.475474754747552,43.765102733799665],[7.468274682746824,43.76172557925992],[7.461074610746124,43.76172557925992],[7.453874538745396,43.756659847450265],[7.446674466744668,43.74990553837071],[7.43227432274324,43.73977407475144],[7.4178741787417835,43.73133118840201],[7.403474034740356,43.71782257024296],[7.3818738187382,43.71951114751283],[7.367473674736743,43.72288830205261],[7.353073530735315,43.716133992973056],[7.342273422734223,43.707691106623656],[7.338673386733888,43.697559643004354],[7.331473314733159,43.68573960211518],[7.320673206732067,43.68573960211518],[7.302673026730275,43.68742817938505],[7.281072810728119,43.6924939111947],[7.255872558725599,43.69080533392483],[7.241472414724143,43.6840510248453],[7.227072270722715,43.673919561226],[7.230672306723079,43.6637880976067],[7.212672126721287,43.64859090217777],[7.205472054720559,43.64352517036812],[7.198271982719831,43.65703378852717],[7.176671766717675,43.66041094306695],[7.165871658716583,43.6553452112573],[7.151471514715155,43.6553452112573],[7.144271442714427,43.645213747637996],[7.137071370713727,43.64183659309822],[7.133471334713363,43.63339370674882],[7.126271262712635,43.60637647043069],[7.133471334713363,43.57935923411256],[7.133471334713363,43.574293502302936],[7.137071370713727,43.56247346141373],[7.140671406714063,43.55403057506433],[7.126271262712635,43.547276265984806],[7.111871118711207,43.564162038683634],[7.104671046710479,43.56753919322338],[7.086670866708687,43.569227770493285],[7.072270722707231,43.56078488414386],[7.057870578705803,43.550653420524554],[7.043470434704346,43.542210534175155],[7.036270362703647,43.53545622509563],[7.0290702907029186,43.547276265984806],[7.014670146701462,43.547276265984806],[6.993069930699306,43.54896484325468],[6.975069750697514,43.547276265984806],[6.9606696066960865,43.54052195690528],[6.94626946269463,43.5270133387462],[6.942669426694266,43.511816143317276],[6.949869498694994,43.5084389887775],[6.949869498694994,43.506750411507625],[6.953469534695358,43.50506183423772],[6.953469534695358,43.49999610242807],[6.924669246692474,43.47297886610997],[6.92106921069211,43.449338784331616],[6.899468994689954,43.43751874344241],[6.892268922689226,43.42738727982314],[6.87066870668707,43.425698702553234],[6.87066870668707,43.43245301163279],[6.867068670686706,43.435830166172536],[6.863468634686342,43.43920732071231],[6.856268562685642,43.435830166172536],[6.856268562685642,43.42907585709301],[6.859868598686006,43.41556723893396],[6.84546845468455,43.41219008439418],[6.834668346683486,43.41556723893396],[6.82026820268203,43.41556723893396],[6.784267842678446,43.408812929854406],[6.773467734677354,43.41894439347371],[6.755467554675562,43.422321548013485],[6.748267482674834,43.417255816203834],[6.730267302673042,43.40712435258453],[6.733867338673406,43.381795693536304],[6.7194671946719495,43.36659849810735],[6.7194671946719495,43.3514013026784],[6.6942669426694295,43.34802414813865],[6.6762667626676375,43.346335570868746],[6.665466654666545,43.332826952709695],[6.661866618666181,43.32269548909039],[6.6510665106651174,43.31425260274099],[6.625866258662597,43.29567825277229],[6.597065970659713,43.283858211883086],[6.589865898658985,43.26866101645416],[6.611466114661141,43.26359528464451],[6.6726667266672735,43.275415325533686],[6.6942669426694295,43.27372674826381],[6.6978669786697935,43.265283861914384],[6.687066870668701,43.248398089215556],[6.669066690666909,43.239955202866156],[6.665466654666545,43.221380852897425],[6.6726667266672735,43.212937966548026],[6.679866798668002,43.20111792565885],[6.661866618666181,43.19098646203955],[6.640266402664025,43.18254357569015],[6.6294662946629614,43.17916642115037],[6.611466114661141,43.17410068934072],[6.600666006660077,43.17578926661059],[6.597065970659713,43.17916642115037],[6.593465934659349,43.1876093074998],[6.582665826658285,43.18423215296002],[6.564665646656465,43.18423215296002],[6.539465394653945,43.18254357569015],[6.535865358653581,43.172412112070845],[6.525065250652517,43.16059207118167],[6.507065070650725,43.150460607562366],[6.478264782647841,43.15552633937202],[6.453064530645321,43.15214918483224],[6.420664206642073,43.15214918483224],[6.402664026640281,43.14708345302259],[6.377463774637761,43.13526341213341],[6.3666636666366685,43.118377639434584],[6.370263702637033,43.10486902127553],[6.373863738637397,43.09136040311648],[6.341463414634148,43.09136040311648],[6.330663306633085,43.09980328946588],[6.327063270632721,43.10486902127553],[6.305463054630565,43.109934753085184],[6.2802628026280445,43.118377639434584],[6.255062550625524,43.12006621670449],[6.219062190621912,43.11668906216471],[6.193861938619392,43.10824617581531],[6.179461794617964,43.10318044400566],[6.161461614616144,43.09304898038636],[6.154261542615444,43.07278605314775],[6.154261542615444,43.047457394099524],[6.172261722617236,43.04239166228987],[6.186661866618664,43.04576881682965],[6.179461794617964,43.03563735321035],[6.154261542615444,43.03394877594047],[6.096660966609676,43.030571621400696],[6.089460894608948,43.03563735321035],[6.103861038610404,43.04070308502],[6.118261182611832,43.04576881682965],[6.13266132661326,43.052523125909175],[6.129061290612924,43.07109747587788],[6.111061110611104,43.08460609403693],[6.093060930609312,43.082917516767054],[6.046260462604636,43.0778517849574],[6.028260282602844,43.0778517849574],[6.0174601746017515,43.09811471219601],[5.9922599225992315,43.10318044400566],[5.959859598595983,43.101491866735756],[5.934659346593463,43.11331190762493],[5.938259382593827,43.12006621670449],[5.938259382593827,43.12850910305389],[5.941859418594191,43.13357483486354],[5.923859238592399,43.13357483486354],[5.909459094590943,43.13188625759366],[5.880658806588059,43.12006621670449],[5.895058950589515,43.115000484894836],[5.909459094590943,43.09304898038636],[5.9274592745927634,43.087983248576705],[5.9526595265952835,43.079540362227306],[5.941859418594191,43.07109747587788],[5.916659166591671,43.07278605314775],[5.887858878588787,43.07278605314775],[5.877058770587723,43.069408898608],[5.855458554585539,43.04408023955975],[5.819458194581955,43.05421170317905],[5.790657906579071,43.069408898608],[5.783457834578343,43.079540362227306],[5.801458014580163,43.08967182584658],[5.819458194581955,43.09980328946588],[5.812258122581227,43.10655759854541],[5.801458014580163,43.11162333035506],[5.783457834578343,43.115000484894836],[5.779857798577979,43.123443371244235],[5.776257762577643,43.13019768032376],[5.761857618576187,43.13188625759366],[5.740257402574031,43.13188625759366],[5.697056970569719,43.14708345302259],[5.6862568625686265,43.16903495753107],[5.675456754567563,43.17916642115037],[5.653856538565378,43.185920730229896],[5.635856358563586,43.1876093074998],[5.6214562145621585,43.177477843880496],[5.610656106561066,43.16059207118167],[5.58905589055891,43.16734638026119],[5.571055710557118,43.16903495753107],[5.560255602556026,43.180854998420244],[5.545855458554598,43.194363616579324],[5.53865538655387,43.207872234738375],[5.524255242552442,43.212937966548026],[5.51345513455135,43.207872234738375],[5.502655026550286,43.2061836574685],[5.459454594545946,43.207872234738375],[5.441454414544154,43.207872234738375],[5.409054090540906,43.21124938927815],[5.394653946539478,43.212937966548026],[5.369453694536958,43.207872234738375],[5.347853478534802,43.2163151210878],[5.351453514535166,43.23320089378663],[5.3550535505355015,43.243332357405905],[5.36225362253623,43.25346382102521],[5.369453694536958,43.270349593724035],[5.3586535865358655,43.28048105734334],[5.3550535505355015,43.292301098232514],[5.351453514535166,43.297366830042165],[5.340653406534074,43.33451552997957],[5.2938529385293975,43.354778457218174],[5.239852398523993,43.327761220900044],[5.164251642516433,43.32944979816992],[5.124651246512485,43.32607264363017],[5.063450634506353,43.327761220900044],[5.034650346503469,43.33620410724947],[5.013050130501313,43.35815561175795],[5.0058500585005845,43.381795693536304],[5.0274502745027405,43.408812929854406],[5.056250562505625,43.422321548013485],[5.146251462514641,43.422321548013485],[5.175051750517525,43.42907585709301],[5.193051930519317,43.43920732071231],[5.214652146521473,43.457781670681015],[5.2254522545225655,43.479733175189494],[5.221852218522201,43.50337325696785],[5.193051930519317,43.4898646388088],[5.164251642516433,43.48311032972927],[5.139051390513913,43.48648748426902],[5.117451174511757,43.50337325696785],[5.110251102511029,43.5185704523968],[5.110251102511029,43.528701916016104],[5.106651066510665,43.53376764782573],[5.085050850508509,43.53883337963538],[5.077850778507781,43.53883337963538],[5.052650526505261,43.53883337963538],[5.049050490504925,43.542210534175155],[5.034650346503469,43.555719152334206],[5.0274502745027405,43.55909630687398],[5.023850238502405,43.55234199779446],[5.016650166501677,43.53883337963538],[5.009450094500949,43.52532476147633],[5.009450094500949,43.5168818751269],[5.013050130501313,43.4983075251582],[5.023850238502405,43.4898646388088],[5.034650346503469,43.484798906999146],[5.049050490504925,43.47635602064972],[5.063450634506353,43.45102736160149],[5.052650526505261,43.42907585709301],[5.0274502745027405,43.417255816203834],[4.998649986499885,43.41387866166406],[4.9842498424984285,43.417255816203834],[4.930249302493024,43.44089589798219],[4.90144901449014,43.43245301163279],[4.89424894248944,43.425698702553234],[4.86904869048692,43.42063297074361],[4.858248582485828,43.41556723893396],[4.8510485104851,43.40205862077488],[4.854648546485464,43.39699288896523],[4.865448654486556,43.37841853899653],[4.86904869048692,43.364909920837476],[4.90144901449014,43.36659849810735],[4.87624876248762,43.3514013026784],[4.854648546485464,43.34126983905912],[4.8510485104851,43.35815561175795],[4.833048330483308,43.381795693536304],[4.79344793447936,43.39868146623513],[4.757447574475748,43.422321548013485],[4.74304743047432,43.449338784331616],[4.746647466474684,43.506750411507625],[4.74304743047432,43.52532476147633],[4.735847358473592,43.53883337963538],[4.7250472504725,43.55740772960411],[4.710647106471072,43.57091634776316],[4.696246962469644,43.57935923411256],[4.696246962469644,43.57260492503303],[4.7250472504725,43.53883337963538],[4.728647286472864,43.528701916016104],[4.728647286472864,43.45609309341114],[4.74304743047432,43.422321548013485],[4.76824768247684,43.40205862077488],[4.80064800648006,43.386861425345955],[4.822248222482244,43.36659849810735],[4.81864818648188,43.346335570868746],[4.789847898478996,43.34464699359887],[4.66744667446676,43.34802414813865],[4.5918459184591995,43.359844189027825],[4.5666456664566795,43.371664229917],[4.5666456664566795,43.38855000261583],[4.584645846458471,43.40374719804478],[4.5882458824588355,43.417255816203834],[4.581045810458107,43.430764434362885],[4.555845558455587,43.44258447525206],[4.512645126451275,43.45609309341114],[4.408244082440831,43.44765020706171],[4.20664206642067,43.45947024795089],[4.18144181441815,43.46453597976054],[4.159841598415994,43.471290288840066],[4.13104131041311,43.48648748426902],[4.116641166411682,43.51012756604737],[4.13104131041311,43.53207907055585],[4.13104131041311,43.53545622509563],[4.10584105841059,43.55234199779446],[4.048240482404822,43.555719152334206],[3.990639906399082,43.550653420524554],[3.9546395463954696,43.54052195690528],[3.9402394023940417,43.53207907055585],[3.738637386373881,43.41219008439418],[3.6234362343623445,43.37504138445678],[3.5910359103590963,43.354778457218174],[3.5118351183512004,43.28048105734334],[3.49383493834938,43.27372674826381],[3.450634506345068,43.28892394369274],[3.429034290342912,43.28554678915299],[3.3858338583386,43.283858211883086],[3.3174331743317396,43.26359528464451],[3.2454324543245434,43.21969227562755],[3.2274322743227515,43.204495080198626],[3.2202322023220233,43.1960521938492],[3.2058320583205955,43.185920730229896],[3.1950319503195033,43.177477843880496],[3.1770317703177113,43.16565780299132],[3.166231662316619,43.15214918483224],[3.1554315543155553,43.13526341213341],[3.1374313743137634,43.12175479397436],[3.1122311223112433,43.10655759854541],[3.105031050310515,43.087983248576705],[3.097830978309787,43.07278605314775],[3.0870308703087233,43.05421170317905],[3.069030690306903,43.02719446686092],[3.061830618306203,43.00862011689222],[3.054630546305475,42.993422921463264],[3.047430474304747,42.96471710787526],[3.0402304023040188,42.94276560336678],[3.0402304023040188,42.932634139747506],[3.054630546305475,42.927568407937855],[3.054630546305475,42.90730548069925],[3.047430474304747,42.84651669898349],[3.0402304023040188,42.79079364907736],[3.0402304023040188,42.75026779460016],[3.043830438304383,42.72493913555192],[3.036630366303683,42.68272470380485],[3.0402304023040188,42.628690231168605],[3.047430474304747,42.588164376691424],[3.051030510305111,42.55439283129377],[3.065430654306539,42.54257279040459],[3.0870308703087233,42.53412990405518],[3.115831158311579,42.530752749515415],[3.1374313743137634,42.52568701770576],[3.144631446314463,42.515555554086475],[3.144631446314463,42.5037355131973],[3.144631446314463,42.49191547230811],[3.1518315183151913,42.48178400868882],[3.1590315903159194,42.47502969960928],[3.1770317703177113,42.45645534964058],[3.1806318063180754,42.4345038451321],[3.1770317703177113,42.41761807243327],[3.169831698316983,42.39735514519468],[3.1734317343173473,42.38046937249585],[3.1734317343173473,42.363583599797025],[3.1878318783188035,42.35007498163796],[3.2058320583205955,42.33994351801867],[3.2274322743227515,42.343320672558434],[3.2490324903249075,42.343320672558434],[3.2634326343263638,42.32981205439937],[3.2706327063270635,42.32981205439937],[3.2814328143281557,42.33656636347891],[3.2922329223292195,42.33487778620902],[3.3174331743317396,42.32305774531984],[3.2958329583295836,42.287597622652314],[3.288632886328884,42.27746615903301],[3.288632886328884,42.26226896360407],[3.2778327783277916,42.25551465452453],[3.2706327063270635,42.25044892271488],[3.2634326343263638,42.24031745909559],[3.2454324543245434,42.245383190905244],[3.2094320943209595,42.24031745909559],[3.1770317703177113,42.25044892271488],[3.169831698316983,42.258891809064295],[3.1518315183151913,42.25720323179442],[3.1302313023130353,42.24031745909559],[3.119431194311943,42.218365954587114],[3.115831158311579,42.182905831919584],[3.115831158311579,42.159265750141216],[3.123031230312307,42.140691400172514],[3.1374313743137634,42.12718278201345],[3.1734317343173473,42.11198558658451],[3.191431914319139,42.09341123661579],[3.2130321303213236,42.06808257756755],[3.2130321303213236,42.056262536678375],[3.1986319863198673,42.04613107305909],[3.1950319503195033,42.03262245490002],[3.2022320223202314,42.01742525947107],[3.2058320583205955,41.99716233223248],[3.2094320943209595,41.99040802315295],[3.2130321303213236,41.9853422913433],[3.2310323103231156,41.973522250454124],[3.2346323463234796,41.96507936410471],[3.2310323103231156,41.94650501413601],[3.2058320583205955,41.91442204600823],[3.1950319503195033,41.889093386959985],[3.1770317703177113,41.875584768800934],[3.1518315183151913,41.84519037794304],[3.115831158311579,41.84687895521293],[3.079830798307995,41.826616027974325],[3.069030690306903,41.79959879165621],[3.0402304023040188,41.78609017349714],[2.9502295022950307,41.733744278130786],[2.9322293222932387,41.71179277362231],[2.8998289982899905,41.706727041812655],[2.8782287822878345,41.701661310003004],[2.8494284942849504,41.69659557819337],[2.838628386283858,41.69490700092348],[2.8350283502835225,41.69321842365359],[2.8206282062820662,41.681398382764414],[2.817028170281702,41.67802122822465],[2.813428134281338,41.66957834187524],[2.8026280262802743,41.66788976460536],[2.791827918279182,41.66957834187524],[2.7774277742777542,41.645938260096884],[2.651426514265154,41.6054124056197],[2.4498244982449933,41.53449216028463],[2.4282242822428373,41.519294964855675],[2.370623706237069,41.488900573997796],[2.2950229502295088,41.46526049221943],[2.2662226622266246,41.4483747195206],[2.2410224102241045,41.421357483202485],[2.1906219062190644,41.357191546946936],[2.1618216182161802,41.32679715608906],[2.1294212942129604,41.30315707431069],[2.0610206102061,41.274451260722685],[2.021420214202152,41.26600837437327],[1.95301953019532,41.26094264256362],[1.8846188461884594,41.24743402440457],[1.8630186301863034,41.23730256078527],[1.8522185221852396,41.23561398351539],[1.8198181981819914,41.23730256078527],[1.625416254162559,41.191710974498434],[1.5390153901539065,41.18664524268878],[1.2870128701287058,41.11572499735371],[1.2186121861218737,41.10390495646453],[1.2114121141211456,41.10052780192477],[1.1934119341193536,41.07519914287653],[1.1898118981189896,41.068444833797],[1.1826118261182614,41.06337910198735],[1.1718117181171976,41.0583133701777],[1.1502115021150416,41.07013341106688],[1.1430114301143135,41.071821988336765],[1.0962109621096374,41.07013341106688],[1.056610566105661,41.06506767925724],[1.0170101701017131,41.051559061098175],[0.991809918099193,41.039739020209],[0.8766087660876565,40.95531015671486],[0.8226082260822807,40.899587106808724],[0.7146071460714722,40.8151582433146],[0.6966069660696803,40.786452429726594],[0.7218072180722004,40.774632388837404],[0.7506075060750561,40.76618950248799],[0.7614076140761483,40.76618950248799],[0.7686076860768765,40.77125523429764],[0.7650076500765124,40.77800954337718],[0.7506075060750561,40.786452429726594],[0.7686076860768765,40.784763852456706],[0.7794077940779403,40.779698120647055],[0.7902079020790325,40.77125523429764],[0.8154081540815525,40.74761515251929],[0.8406084060840726,40.73241795709035],[0.8550085500855005,40.73241795709035],[0.8730087300873208,40.7273522252807],[0.8730087300873208,40.707089298042106],[0.8586085860858645,40.6868263708035],[0.8478084780848008,40.675006329914325],[0.7830078300783043,40.661497711755274],[0.7578075780757842,40.64292336178656],[0.7074070740707441,40.58382315734066],[0.67860678606786,40.56524880737196],[0.6462064620646402,40.556805921022544],[0.617406174061756,40.55342876648278],[0.592205922059236,40.582134580070786],[0.639006390063912,40.58720031188042],[0.6642066420664321,40.575380270991246],[0.6966069660696803,40.5905774664202],[0.7326073260732642,40.634480475437144],[0.7110071100711082,40.63616905270703],[0.682206822068224,40.634480475437144],[0.5994059940599357,40.61421754819855],[0.5814058140581437,40.60408608457925],[0.5634056340563518,40.5905774664202],[0.5490054900548955,40.572003116451484],[0.5166051660516757,40.514591489275475],[0.5022050220502194,40.48419709841758],[0.4842048420484275,40.46562274844888],[0.4662046620466356,40.450425553019926],[0.4518045180451793,40.4335397803211],[0.4446044460444796,40.408211121272856],[0.4194041940419595,40.387948194034266],[0.351003510035099,40.284944980571424],[0.3402034020340352,40.274813516952136],[0.31140311403115106,40.25792774425331],[0.30060300603005885,40.24610770336412],[0.264602646026475,40.2089590034267],[0.2070020700207067,40.17181030348928],[0.14580145801457434,40.07893855364574],[0.11700117001171861,40.05698704913726],[0.06660066600667847,40.03165839008902],[0.04140041400415839,40.002952576501016],[-0.0018000180001820354,39.935409485705705],[-0.0018000180001820354,39.93203233116594],[-0.02700027000270211,39.90163794030805],[-0.09180091800917012,39.8476034676718],[-0.19620196201961448,39.71589444062096],[-0.19980199801997856,39.705762977001655],[-0.20340203402034263,39.68043431795343],[-0.21060210602104235,39.6635485452546],[-0.22140221402213456,39.65172850436541],[-0.24300243002429056,39.63146557712682],[-0.25740257402574684,39.61626838169788],[-0.26820268202681063,39.59938260899905],[-0.2754027540275388,39.58249683630022],[-0.2826028260282669,39.56898821814116],[-0.31140311403112264,39.53352809547363],[-0.32220322203221485,39.5166423227748],[-0.329403294032943,39.481182200107256],[-0.3258032580325789,39.430524882010786],[-0.32220322203221485,39.38831045026372],[-0.30060300603005885,39.322455936738294],[-0.2394023940239265,39.216075568735675],[-0.2286022860228627,39.19918979603685],[-0.21420214202140642,39.18230402333802],[-0.2286022860228627,39.175549714258494],[-0.24300243002429056,39.16710682790908],[-0.23580235802356242,39.148532477940364],[-0.22500225002249863,39.111383778002946],[-0.21060210602104235,39.07930080987518],[-0.18540185401852227,39.04215210993776],[-0.15660156601566655,39.00162625546058],[-0.12060120601205426,38.950968937364095],[-0.1062010620106264,38.935771741935156],[-0.07020070200701412,38.91382023742668],[-0.03060030600306618,38.883425846568784],[-0.009000090000881755,38.86991722840972],[0.01620016200163832,38.86485149660008],[0.0630006300063144,38.861474342060305],[0.10980109801099047,38.84965430117113],[0.15300153001530248,38.831079951202426],[0.1854018540185507,38.804062714884296],[0.18180181801818662,38.80237413761442],[0.1710017100170944,38.79561982853488],[0.18180181801818662,38.79224267399512],[0.18900189001891476,38.785488364915594],[0.2178021780217989,38.768602592216766],[0.2286022860228627,38.77029116948664],[0.23580235802359084,38.75847112859746],[0.23580235802359084,38.741585355898636],[0.2286022860228627,38.73483104681911],[0.21060210602107077,38.73314246954922],[0.19260192601927884,38.72976531500946],[0.17820178201782255,38.72469958319981],[0.1638016380163947,38.71287954231063],[0.1494014940149384,38.69261661507204],[0.1494014940149384,38.68923946053228],[0.14580145801457434,38.685862305992515],[0.12420124201241833,38.685862305992515],[0.11700117001171861,38.68248515145275],[0.1062010620106264,38.67235368783345],[0.09540095400953419,38.6672879560238],[0.0846008460084704,38.66053364694427],[0.07380073800737819,38.64533645151532],[0.08100081000810633,38.63182783335627],[0.059400594005950325,38.63520498789603],[0.04500045000449404,38.63182783335627],[0.03420034200343025,38.62676210154662],[0.01620016200163832,38.62507352427673],[-0.016200162001609897,38.62507352427673],[-0.02700027000270211,38.62000779246709],[-0.04140041400412997,38.61156490611768],[-0.055800558005586254,38.59467913341885],[-0.055800558005586254,38.581170515259785],[-0.05220052200522218,38.56766189710072],[-0.0594005940059219,38.55246470167178],[-0.07380073800737819,38.540644660782604],[-0.09180091800917012,38.53557892897295],[-0.13140131401314648,38.53557892897295],[-0.17820178201782255,38.52713604262354],[-0.20340203402034263,38.520381733544],[-0.23220232202322677,38.5018073835753],[-0.329403294032943,38.46972441544753],[-0.34380343803437086,38.461281529098116],[-0.351003510035099,38.44946148820894],[-0.35820358203582714,38.44608433366916],[-0.394203942039411,38.414001365541395],[-0.4050040500405032,38.398804170112456],[-0.4086040860408673,38.378541242873865],[-0.4086040860408673,38.36840977925456],[-0.41220412204120294,38.3650326247148],[-0.44460444604445115,38.36334404744491],[-0.45900459004590743,38.35996689290515],[-0.4698046980469712,38.351524006555735],[-0.4734047340473353,38.336326811126796],[-0.5094050940509476,38.33801538839667],[-0.5202052020520114,38.29917811118938],[-0.5058050580505835,38.20799493861571],[-0.5166051660516473,38.19617489772652],[-0.5346053460534677,38.19279774318676],[-0.5706057060570515,38.19448632045665],[-0.5922059220592075,38.189420588646996],[-0.6102061020610279,38.17760054775782],[-0.6246062460624557,38.16240335232888],[-0.635406354063548,38.14551757963005],[-0.6390063900638836,38.13200896147099],[-0.6462064620646117,38.11681176604205],[-0.6498064980649758,38.07459733429498],[-0.6534065340653399,38.00705424349967],[-0.6534065340653399,37.99016847080084],[-0.6642066420664037,37.98003700718154],[-0.6894068940689237,37.97159412083212],[-0.7074070740707441,37.95639692540318],[-0.7182071820718079,37.94288830724412],[-0.7578075780757842,37.86352517555963],[-0.7614076140761483,37.846639402860816],[-0.7578075780757842,37.80611354838362],[-0.7614076140761483,37.79598208476433],[-0.7866078660786684,37.82299932108245],[-0.8118081180811885,37.77065342571609],[-0.8262082620826163,37.76221053936668],[-0.8478084780847723,37.75545623028714],[-0.8550085500855005,37.74194761212809],[-0.8514085140851364,37.72337326215937],[-0.8190081900818882,37.676093098602664],[-0.8082080820808244,37.66765021225325],[-0.7794077940779403,37.65076443955442],[-0.7542075420754202,37.64063297593512],[-0.7362073620736282,37.63894439866523],[-0.725407254072536,37.65076443955442],[-0.7074070740707441,37.64232155320501],[-0.700207002070016,37.63050151231582],[-0.70380703807038,37.62037004869653],[-0.7182071820718079,37.61023858507723],[-0.7290072900729001,37.6034842759977],[-0.7362073620736282,37.60010712145794],[-0.747007470074692,37.60010712145794],[-0.7542075420754202,37.6034842759977],[-0.765007650076484,37.60010712145794],[-0.790207902079004,37.591664235108524],[-0.8082080820808244,37.58828708056876],[-0.8370083700837085,37.57646703967957],[-0.8730087300872924,37.57646703967957],[-0.8874088740887487,37.5747784624097],[-0.9018090180901766,37.569712730600045],[-0.9234092340923326,37.55620411244098],[-0.9342093420934248,37.56126984425063],[-0.9738097380973727,37.57646703967957],[-1.006210062100621,37.58153277148922],[-1.071010710107089,37.58322134875911],[-1.0890108901088809,37.58153277148922],[-1.1034110341103371,37.57646703967957],[-1.114211142111401,37.56802415333017],[-1.121411214112129,37.55958126698076],[-1.117811178111765,37.549449803361455],[-1.1070110701107012,37.53256403066263],[-1.1358113581135854,37.53762976247228],[-1.1682116821168052,37.544384071551804],[-1.1718117181171692,37.554515535171106],[-1.1790117901178974,37.564646998790394],[-1.2006120061200534,37.56633557606028],[-1.2294122941229375,37.57646703967957],[-1.2438124381243654,37.57984419421935],[-1.2582125821258217,37.56633557606028],[-1.2618126181261857,37.55789268971087],[-1.2906129061290414,37.55789268971087],[-1.3230132301322897,37.56126984425063],[-1.3518135181351738,37.549449803361455],[-1.3698136981369657,37.54100691701204],[-1.4130141301413062,37.507235371614385],[-1.431014310143098,37.49879248526497],[-1.44901449014489,37.49541533072521],[-1.4562145621456182,37.492038176185446],[-1.4634146341463463,37.48866102164568],[-1.470614706147046,37.48190671256614],[-1.47421474214741,37.47684098075649],[-1.4778147781477742,37.47346382621673],[-1.4886148861488664,37.439692280819074],[-1.4886148861488664,37.43293797173955],[-1.495814958149566,37.4278722399299],[-1.5030150301502943,37.429560817199786],[-1.5066150661506583,37.43293797173955],[-1.5138151381513865,37.43293797173955],[-1.5246152461524503,37.4278722399299],[-1.5426154261542422,37.41436362177083],[-1.5534155341553344,37.41267504450096],[-1.5678156781567623,37.409297889961195],[-1.6182161821618024,37.39241211726237],[-1.6434164341643225,37.38059207637319],[-1.6470164701646866,37.368772035484],[-1.6542165421654147,37.362017726404474],[-1.6722167221672066,37.36370630367436],[-1.6794167941679348,37.35526341732495],[-1.686616866168663,37.33668906735623],[-1.6974169741697267,37.31642614011764],[-1.729817298172975,37.282654594719986],[-1.7874178741787432,37.23537443116328],[-1.8126181261812633,37.20666861757526],[-1.8306183061830552,37.16614276309808],[-1.8378183781837834,37.132371217700424],[-1.8486184861848471,37.10366540411242],[-1.8558185581855753,37.0766481677943],[-1.8846188461884594,37.01585938607852],[-1.9062190621906154,36.98715357249051],[-1.9062190621906154,36.975333531601336],[-1.9026190261902514,36.96689064525192],[-1.8990189901898873,36.95844775890251],[-1.8990189901898873,36.950004872553095],[-1.8990189901898873,36.94156198620368],[-1.9062190621906154,36.93649625439403],[-1.9134191341913436,36.93311909985427],[-1.9350193501934996,36.93143052258439],[-1.9422194221942277,36.929741945314504],[-1.9530195301952915,36.9196104816952],[-1.9890198901989038,36.9010361317265],[-2.0034200342003317,36.887527513567434],[-2.014220142201424,36.845313081820365],[-2.0250202502024877,36.83349304093119],[-2.039420394203944,36.825050154581774],[-2.057420574205736,36.809852959152835],[-2.0610206102061,36.803098650073295],[-2.064620646206464,36.782835722834704],[-2.0718207182071637,36.77608141375518],[-2.079020790207892,36.77101568194553],[-2.089820898208984,36.767638527405765],[-2.100621006210048,36.76594995013588],[-2.11142111421114,36.745687022897286],[-2.125821258212568,36.735555559278],[-2.147421474214724,36.73048982746835],[-2.1654216542165443,36.727112672928584],[-2.2050220502204922,36.73724413654787],[-2.2302223022230123,36.76088421832624],[-2.2554225542255324,36.787901454644356],[-2.2842228422284165,36.809852959152835],[-2.3166231662316648,36.82842730912154],[-2.3382233822338208,36.83349304093119],[-2.363423634236341,36.83687019547095],[-2.3814238142381328,36.83349304093119],[-2.413824138241381,36.81998442277212],[-2.431824318243173,36.81660726823236],[-2.442624426244265,36.81829584550225],[-2.467824678246785,36.82842730912154],[-2.482224822248213,36.830115886391425],[-2.5614256142561374,36.81829584550225],[-2.575825758257565,36.81154153642271],[-2.5974259742597496,36.772704259215416],[-2.6154261542615416,36.72880125019846],[-2.6442264422644257,36.70684974568999],[-2.64782647826479,36.703472591150216],[-2.6586265862658536,36.6950297048008],[-2.6838268382683736,36.68658681845139],[-2.719827198271986,36.68152108664175],[-2.737827378273778,36.68658681845139],[-2.75582755827557,36.67983250937186],[-2.784627846278454,36.6950297048008],[-2.802628026280246,36.70684974568999],[-2.8206282062820662,36.71360405476952],[-2.83142831428313,36.71191547749963],[-2.838628386283858,36.70178401388034],[-2.8494284942849504,36.700095436610454],[-2.860228602286014,36.705161168420105],[-2.8854288542885342,36.73386698200811],[-2.9142291422914184,36.75075275470694],[-2.9322293222932103,36.752441331976826],[-2.9862298622986145,36.73724413654787],[-3.0762307623076026,36.74906417743705],[-3.155431554315527,36.74399844562741],[-3.227432274322723,36.7541299092467],[-3.3282332823328034,36.745687022897286],[-3.3426334263342596,36.73724413654787],[-3.3570335703356875,36.725424095658695],[-3.3786337863378435,36.71360405476952],[-3.414634146341456,36.6950297048008],[-3.475834758347588,36.69671828207069],[-3.515435154351536,36.720358363849044],[-3.537035370353692,36.71866978657917],[-3.5514355143551484,36.71191547749963],[-3.5874358743587322,36.727112672928584],[-3.6018360183601885,36.74230986835752],[-3.6306363063630442,36.740621291087635],[-3.6666366663666565,36.73893271381776],[-3.6810368103680844,36.72880125019846],[-3.7314373143731245,36.72373551838882],[-3.803438034380349,36.74230986835752],[-3.839438394383933,36.752441331976826],[-3.889838898388973,36.74399844562741],[-3.9618396183961693,36.727112672928584],[-4.05544055440555,36.747375600167175],[-4.08064080640807,36.74399844562741],[-4.109441094410926,36.725424095658695],[-4.195841958419578,36.71529263203941],[-4.224642246422462,36.71191547749963],[-4.404644046440467,36.72373551838882],[-4.419044190441895,36.720358363849044],[-4.433444334443351,36.710226900229756],[-4.462244622446207,36.67138962302245],[-4.465844658446571,36.662946736673035],[-4.480244802448027,36.65112669578386],[-4.491044910449091,36.63592950035492],[-4.494644946449455,36.620732304925966],[-4.523445234452339,36.580206450448784],[-4.588245882458807,36.57345214136926],[-4.613446134461327,36.53123770962219],[-4.649446494464939,36.51266335965347],[-4.660246602466032,36.507597627843836],[-4.681846818468188,36.500843318764296],[-4.721447214472136,36.49240043241488],[-4.764647646476448,36.49408900968477],[-4.879848798487984,36.50590905057395],[-4.90144901449014,36.50590905057395],[-4.912249122491232,36.50422047330406],[-4.923049230492296,36.497466164224534],[-4.995049950499492,36.45694030974735],[-5.063450634506353,36.4518745779377],[-5.110251102511029,36.42823449615935],[-5.121051210512093,36.42485734161957],[-5.157051570515705,36.42148018707981],[-5.175051750517497,36.418103032540046],[-5.185851858518589,36.41134872346052],[-5.200252002520017,36.397840105301455],[-5.225452254522537,36.357314250824274],[-5.229052290522901,36.34887136447486],[-5.243452434524329,36.31172266453744],[-5.254252542525421,36.29652546910849],[-5.257852578525785,36.293148314568725],[-5.265052650526485,36.2863940054892],[-5.275852758527577,36.28301685094944],[-5.290252902529005,36.277951119139786],[-5.290252902529005,36.26950823279037],[-5.286652866528669,36.26106534644096],[-5.297452974529733,36.24755672828189],[-5.329853298532981,36.1985879874553],[-5.3334533345333455,36.188456523835995],[-5.340653406534045,36.1293563193901],[-5.340653406534045,36.12429058758046],[-5.340653406534045,36.110781969421396],[-5.351453514535137,36.11922485577081],[-5.365853658536565,36.163127864787754],[-5.383853838538386,36.17157075113717],[-5.405454054540542,36.18001363748658],[-5.427054270542698,36.18001363748658],[-5.427054270542698,36.16988217386729],[-5.43785437854379,36.16143928751788],[-5.4414544145441255,36.1496192466287],[-5.4414544145441255,36.13442205119975],[-5.434254342543426,36.1209134330407],[-5.4414544145441255,36.11415912396116],[-5.43785437854379,36.09896192853222],[-5.430654306543062,36.08883046491292],[-5.427054270542698,36.0803875785635],[-5.430654306543062,36.070256114944215],[-5.43785437854379,36.063501805864675],[-5.4450544505444896,36.05674749678515],[-5.466654666546646,36.049993187705624],[-5.567455674556726,36.021287374117605],[-5.581855818558182,36.01453306503808],[-5.610656106561066,36.006090178688666],[-5.628656286562858,36.03648456954656],[-5.67185671856717,36.05674749678515],[-5.689856898568991,36.06687896040445],[-5.711457114571147,36.06012465132491],[-5.733057330573303,36.06519038313456],[-5.754657546575459,36.07532184675385],[-5.7942579425794065,36.085453310373154],[-5.812258122581227,36.09727335126233],[-5.833858338583383,36.12260201031057],[-5.898658986589851,36.173259328407056],[-5.916659166591671,36.18339079202636],[-5.938259382593827,36.18339079202636],[-5.985059850598503,36.17663648294682],[-6.0354603546035435,36.190145101105884],[-6.064260642606428,36.217162337424],[-6.0822608226082195,36.250933882821656],[-6.1038610386103755,36.28132827367955],[-6.15786157861578,36.3049683554579],[-6.165061650616508,36.31847697361697],[-6.168661686616872,36.335362746315795],[-6.175861758617572,36.3539370962845],[-6.1830618306183,36.370822868983325],[-6.219062190621912,36.402905837111106],[-6.240662406624068,36.44680884612805],[-6.25866258662586,36.47720323698594],[-6.280262802628016,36.5109747823836],[-6.301863018630172,36.52617197781254],[-6.3090630906309,36.53461486416195],[-6.298262982629808,36.537992018701715],[-6.291062910629108,36.537992018701715],[-6.25866258662586,36.51435193692336],[-6.247862478624768,36.50422047330406],[-6.255062550625496,36.495777586954645],[-6.247862478624768,36.48733470060523],[-6.229862298622976,36.47213750517629],[-6.219062190621912,36.475514659716055],[-6.211862118621184,36.480580391525706],[-6.201062010620092,36.49408900968477],[-6.179461794617936,36.51435193692336],[-6.186661866618664,36.51435193692336],[-6.20826208262082,36.50928620511371],[-6.222662226622248,36.5109747823836],[-6.23346233462334,36.52617197781254],[-6.226262262622612,36.55656636867043],[-6.23346233462334,36.57514071863913],[-6.28386283862838,36.61228941857655],[-6.294662946629472,36.6173551503862],[-6.363063630636304,36.620732304925966],[-6.381063810638096,36.62410945946574],[-6.395463954639553,36.63761807762479],[-6.406264062640616,36.6764553548321],[-6.417064170641709,36.69671828207069],[-6.4314643146431365,36.71529263203941],[-6.438664386643865,36.73386698200811],[-6.435064350643501,36.75075275470694],[-6.413464134641345,36.767638527405765],[-6.395463954639553,36.77439283648529],[-6.35946359463594,36.78621287737448],[-6.3450634506345125,36.794655763723895],[-6.33426334263342,36.81829584550225],[-6.3450634506345125,36.86051027724932],[-6.337863378633784,36.88415035902767],[-6.305463054630536,36.907790440806025],[-6.222662226622248,36.90272470899639],[-6.193861938619392,36.93143052258439],[-6.215462154621548,36.92129905896509],[-6.240662406624068,36.912856172615676],[-6.265862658626588,36.912856172615676],[-6.28386283862838,36.92636479077474],[-6.327063270632692,36.912856172615676],[-6.3450634506345125,36.9010361317265],[-6.352263522635212,36.88077320448791],[-6.3450634506345125,36.81998442277212],[-6.352263522635212,36.808164381882946],[-6.3882638826388245,36.808164381882946],[-6.417064170641709,36.83855877274084],[-6.449464494644928,36.90441328626626],[-6.471064710647113,36.934807677124155],[-6.499864998649969,36.9601363361724],[-6.74466744667447,37.101976826842545],[-6.76986769867699,37.11210829046183],[-6.79506795067951,37.117174022271485],[-6.813068130681302,37.12392833135101],[-6.85266852668525,37.15094556766914],[-6.874268742687434,37.159388454018554],[-6.892268922689226,37.16614276309808],[-6.910269102691018,37.18978284487643],[-6.917469174691746,37.215111503924675],[-6.910269102691018,37.226931544813866],[-6.899468994689954,37.23537443116328],[-6.863468634686342,37.277588862910335],[-6.85266852668525,37.29447463560916],[-6.90306903069029,37.24888304932233],[-6.931869318693174,37.23368585389339],[-6.964269642696422,37.23368585389339],[-6.964269642696422,37.226931544813866],[-6.939069390693902,37.199914308495735],[-6.931869318693174,37.18302853579691],[-6.92826928269281,37.17289707217762],[-6.942669426694266,37.17120849490773],[-7.02907029070289,37.20498004030539],[-7.061470614706138,37.2134229266548],[-7.101071010710115,37.22355439027409],[-7.126271262712635,37.215111503924675],[-7.097470974709751,37.21173434938491],[-7.086670866708658,37.20666861757526],[-7.327873278732795,37.201602885765624],[-7.342273422734223,37.19653715395597],[-7.363873638736379,37.18133995852703],[-7.381873818738171,37.179651381257145],[-7.3998739987399915,37.184717113066796],[-7.414274142741419,37.19315999941621],[-7.410674106741055,37.18809426760656],[-7.410674106741055,37.18302853579691],[-7.407074070740691,37.179651381257145],[-7.3998739987399915,37.177962803987256],[-7.3998739987399915,37.17289707217762],[-7.407074070740691,37.164454185828205],[-7.425074250742512,37.17458564944749],[-7.446674466744668,37.179651381257145],[-7.468274682746824,37.179651381257145],[-7.48987489874898,37.177962803987256],[-7.511475114751136,37.17120849490773],[-7.551075510755112,37.14925699039925],[-7.569075690756904,37.1441912585896],[-7.626676266762672,37.11379686773172],[-7.633876338763372,37.10535398138231],[-7.785077850778492,37.02261369515806],[-7.821078210782105,36.99897361337969],[-7.8354783547835325,36.99897361337969],[-7.849878498784989,37.00403934518934],[-7.871478714787145,37.0074164997291],[-7.932679326793249,37.00910507699899],[-7.950679506795069,37.01417080880864],[-7.957879578795769,37.00235076791947],[-7.968679686796861,37.00403934518934],[-7.983079830798289,37.01079365426888],[-7.990279902799017,37.01417080880864],[-7.983079830798289,37.00235076791947],[-7.979479794797953,36.99559645883993],[-7.975879758797589,36.98715357249051],[-7.997479974799745,37.012482231538755],[-8.033480334803329,37.037810890587],[-8.105481054810554,37.069893858714764],[-8.148681486814866,37.0766481677943],[-8.17748177481775,37.08846820868348],[-8.213482134821334,37.08677963141359],[-8.292682926829258,37.07833674506418],[-8.32868328683287,37.08677963141359],[-8.364683646836454,37.09859967230277],[-8.393483934839338,37.08677963141359],[-8.440284402844014,37.08340247687383],[-8.483484834848355,37.095222517763005],[-8.483484834848355,37.09353394049313],[-8.53748537485373,37.117174022271485],[-8.580685806858071,37.12392833135101],[-8.627486274862747,37.12055117681125],[-8.641886418864175,37.117174022271485],[-8.656286562865631,37.11041971319196],[-8.685086850868515,37.08340247687383],[-8.74628746287462,37.08340247687383],[-8.760687606876076,37.080025322334066],[-8.785887858878596,37.066516704175],[-8.800288002880023,37.06313954963524],[-8.814688146881451,37.06145097236535],[-8.836288362883636,37.05638524055571],[-8.857888578885792,37.04118804512676],[-8.879488794887948,37.0479423542063],[-8.89748897488974,37.032745158777345],[-8.904689046890468,37.027679426967694],[-8.915489154891532,37.02430227242793],[-8.937089370893716,37.01079365426888],[-8.944289442894416,37.0074164997291],[-8.962289622896236,37.012482231538755],[-8.9730897308973,37.02092511788817],[-8.983889838898392,37.02599084969782],[-8.99828998289982,37.02092511788817],[-8.991089910899092,37.04963093147617],[-8.983889838898392,37.06313954963524],[-8.980289802898028,37.069893858714764],[-8.940689406894052,37.11886259954137],[-8.926289262892624,37.14587983585949],[-8.911889118891196,37.16951991763784],[-8.92268922689226,37.199914308495735],[-8.904689046890468,37.2134229266548],[-8.883088830888312,37.2319972766235],[-8.868688686886856,37.27590028564046],[-8.875888758887584,37.29447463560916],[-8.883088830888312,37.309671831038116],[-8.865088650886491,37.33500049008636],[-8.839888398883971,37.360329149134586],[-8.832688326883272,37.38396923091295],[-8.814688146881451,37.41774077631061],[-8.803888038880388,37.46333236259744],[-8.79668796687966,37.49034959891556],[-8.79668796687966,37.53594118520239],[-8.800288002880023,37.55958126698076],[-8.811088110881116,37.5747784624097],[-8.825488254882544,37.58828708056876],[-8.825488254882544,37.60010712145794],[-8.811088110881116,37.64401013047488],[-8.807488074880752,37.67271594406289],[-8.800288002880023,37.69804460311113],[-8.785887858878596,37.70311033492078],[-8.757087570875711,37.70648748946054],[-8.753487534875347,37.73012757123891],[-8.753487534875347,37.73519330304855],[-8.760687606876076,37.72843899396902],[-8.782287822878232,37.72337326215937],[-8.807488074880752,37.72337326215937],[-8.818288182881815,37.7402590348582],[-8.811088110881116,37.79091635295468],[-8.79668796687966,37.84495082559093],[-8.800288002880023,37.878722370988584],[-8.803888038880388,37.90236245276694],[-8.82188821888218,37.92769111181518],[-8.854288542885428,37.93275684362483],[-8.893888938889376,37.95301977086342],[-8.890288902889012,37.961462657212834],[-8.883088830888312,37.9648398117526],[-8.875888758887584,37.966528389022486],[-8.868688686886856,37.97328269810201],[-8.814688146881451,38.0627772934058],[-8.79668796687966,38.13369753874086],[-8.775087750877503,38.18773201137711],[-8.778687786877867,38.24007790674348],[-8.785887858878596,38.304243842999014],[-8.79668796687966,38.35996689290515],[-8.82188821888218,38.398804170112456],[-8.8470884708847,38.42075567462092],[-8.879488794887948,38.44946148820894],[-8.915489154891532,38.47310156998729],[-8.944289442894416,38.48154445633671],[-8.926289262892624,38.49336449722588],[-8.904689046890468,38.48661018814636],[-8.868688686886856,38.461281529098116],[-8.82188821888218,38.44777291093905],[-8.800288002880023,38.43933002458964],[-8.800288002880023,38.42582140643057],[-8.757087570875711,38.42750998370046],[-8.656286562865631,38.40555847919198],[-8.605886058860591,38.419067097351046],[-8.63828638286381,38.42075567462092],[-8.66348663486633,38.4241328291607],[-8.735487354873555,38.451150065478814],[-8.74628746287462,38.45959295182823],[-8.749887498874983,38.47310156998729],[-8.753487534875347,38.48829876541623],[-8.749887498874983,38.50011880630541],[-8.74628746287462,38.51025026992471],[-8.735487354873555,38.51531600173436],[-8.735487354873555,38.52207031081389],[-8.749887498874983,38.52713604262354],[-8.760687606876076,38.53726750624283],[-8.764287642876411,38.55246470167178],[-8.757087570875711,38.56259616529107],[-8.775087750877503,38.565973319830846],[-8.793087930879295,38.533890351703064],[-8.811088110881116,38.52882461989341],[-8.811088110881116,38.52207031081389],[-8.789487894878931,38.520381733544],[-8.778687786877867,38.50518453811506],[-8.778687786877867,38.48829876541623],[-8.789487894878931,38.48154445633671],[-8.811088110881116,38.48323303360658],[-8.832688326883272,38.48661018814636],[-8.868688686886856,38.5018073835753],[-8.904689046890468,38.5119388471946],[-8.955089550895508,38.50518453811506],[-8.99828998289982,38.46465868363788],[-8.991089910899092,38.45959295182823],[-9.04869048690486,38.441018601859525],[-9.145891458914576,38.43088713824022],[-9.167491674916732,38.42582140643057],[-9.181891818918189,38.415689942811284],[-9.19989199891998,38.41231278827151],[-9.2250922509225,38.419067097351046],[-9.232292322923229,38.419067097351046],[-9.232292322923229,38.4241328291607],[-9.232292322923229,38.43088713824022],[-9.232292322923229,38.43764144731975],[-9.228692286922865,38.441018601859525],[-9.221492214922137,38.44946148820894],[-9.189091890918917,38.47310156998729],[-9.185491854918553,38.503495960845186],[-9.185491854918553,38.55077612440189],[-9.207092070920709,38.59805628795861],[-9.239492394923957,38.63520498789603],[-9.253892538925385,38.665599378753924],[-9.235892358923593,38.67404226510334],[-9.189091890918917,38.6774194196431],[-9.145891458914576,38.680796574182864],[-9.12429124291242,38.67066511056356],[-9.113491134911357,38.658845069674385],[-9.106291062910628,38.658845069674385],[-9.113491134911357,38.679107996912975],[-9.0990909909099,38.685862305992515],[-9.066690666906652,38.69261661507204],[-9.052290522905224,38.69430519234193],[-9.052290522905224,38.699370924151566],[-9.037890378903796,38.71456811958052],[-9.019890198901976,38.726388160469696],[-8.991089910899092,38.743273933168524],[-8.955089550895508,38.768602592216766],[-8.951489514895144,38.77029116948664],[-8.94788947889478,38.77366832402642],[-8.944289442894416,38.77535690129629],[-8.944289442894416,38.78211121037583],[-8.951489514895144,38.79561982853488],[-8.965889658896572,38.8141941785036],[-8.969489694896936,38.83614568301208],[-8.962289622896236,38.85134287844102],[-8.987489874898756,38.84965430117113],[-8.99828998289982,38.86485149660008],[-9.001890018900184,38.89018015564832],[-9.012690126901276,38.91382023742668],[-8.969489694896936,38.98474048276175],[-8.944289442894416,39.015134873619644],[-8.908289082890832,39.03708637812811],[-8.886688866888676,39.04046353266787],[-8.8470884708847,39.04215210993776],[-8.825488254882544,39.048906419017285],[-8.789487894878931,39.070857923525764],[-8.775087750877503,39.08267796441494],[-8.764287642876411,39.097875159843895],[-8.793087930879295,39.08267796441494],[-8.836288362883636,39.0573493053667],[-8.92268922689226,39.048906419017285],[-8.937089370893716,39.04046353266787],[-8.955089550895508,39.01175771907987],[-9.001890018900184,38.95772324644362],[-9.059490594905952,38.87160580567961],[-9.088290882908836,38.8428999920916],[-9.0990909909099,38.82939137393254],[-9.106291062910628,38.8141941785036],[-9.102691026910264,38.79561982853488],[-9.102691026910264,38.761848283137226],[-9.0990909909099,38.73820820135887],[-9.113491134911357,38.71456811958052],[-9.163891638916397,38.701059501421454],[-9.221492214922137,38.69430519234193],[-9.286292862928633,38.699370924151566],[-9.304293042930425,38.68755088326239],[-9.322293222932217,38.67066511056356],[-9.361893618936193,38.68923946053228],[-9.405094050940505,38.70443665596122],[-9.430294302943025,38.70781381050098],[-9.469894698946973,38.70274807869134],[-9.49149491494913,38.70781381050098],[-9.49149491494913,38.728076737739585],[-9.48429484294843,38.7449625104384],[-9.498694986949857,38.788865519455356],[-9.498694986949857,38.80912844669395],[-9.49149491494913,38.81925991031325],[-9.480694806948065,38.831079951202426],[-9.455494554945545,38.84965430117113],[-9.423094230942297,38.930706010125505],[-9.426694266942661,38.991494791841276],[-9.437494374943753,39.028643491778695],[-9.426694266942661,39.05228357355706],[-9.423094230942297,39.07930080987518],[-9.38349383493835,39.133335282511425],[-9.372693726937257,39.160352518829555],[-9.351093510935101,39.19750121876697],[-9.347493474934737,39.23464991870439],[-9.340293402934037,39.26673288683216],[-9.354693546935465,39.315701627658754],[-9.365493654936557,39.335964554897345],[-9.401494014940141,39.36467036848535],[-9.40869408694087,39.37480183210465],[-9.397893978939777,39.378178986644414],[-9.354693546935465,39.368047523025126],[-9.279092790927905,39.405196222962545],[-9.261092610926113,39.418704841121595],[-9.239492394923957,39.420393418391484],[-9.228692286922865,39.40857337750231],[-9.217892178921772,39.40688480023242],[-9.207092070920709,39.41532768658183],[-9.214292142921437,39.4288363047409],[-9.228692286922865,39.440656345630074],[-9.214292142921437,39.460919272868665],[-9.192691926919252,39.481182200107256],[-9.181891818918189,39.49300224099645],[-9.163891638916397,39.50144512734586],[-9.135091350913513,39.5166423227748],[-9.120691206912056,39.5352166727435],[-9.109891098910992,39.550413868172456],[-9.091890918909172,39.57911968176046],[-9.088290882908836,39.59600545445929],[-9.091890918909172,39.61626838169788],[-9.077490774907744,39.643285618015994],[-9.070290702907016,39.68043431795343],[-8.994689946899456,39.842537735862166],[-8.868688686886856,40.124530139932574],[-8.854288542885428,40.13972733536151],[-8.839888398883971,40.12621871720245],[-8.825488254882544,40.11946440812292],[-8.785887858878596,40.11946440812292],[-8.785887858878596,40.12621871720245],[-8.800288002880023,40.138038758091625],[-8.814688146881451,40.14648164444104],[-8.832688326883272,40.15154737625069],[-8.879488794887948,40.15661310806034],[-8.89748897488974,40.165055994409755],[-8.908289082890832,40.17856461256882],[-8.908289082890832,40.200516117077285],[-8.89748897488974,40.229221930665304],[-8.865088650886491,40.274813516952136],[-8.800288002880023,40.47406563479829],[-8.785887858878596,40.536542993783954],[-8.764287642876411,40.582134580070786],[-8.753487534875347,40.64123478451667],[-8.749887498874983,40.644611939056446],[-8.74628746287462,40.64630051632632],[-8.742687426874255,40.62603758908773],[-8.74628746287462,40.619283280008204],[-8.724687246872463,40.644611939056446],[-8.710287102871035,40.65305482540586],[-8.695886958869579,40.64630051632632],[-8.688686886868851,40.64630051632632],[-8.688686886868851,40.65305482540586],[-8.692286922869215,40.65643197994562],[-8.695886958869579,40.661497711755274],[-8.699486994869943,40.6682520208348],[-8.695886958869579,40.67331775264445],[-8.685086850868515,40.6783834844541],[-8.681486814868151,40.675006329914325],[-8.677886778867787,40.66994059810469],[-8.670686706867059,40.66656344356491],[-8.66348663486633,40.66994059810469],[-8.652686526865267,40.67669490718421],[-8.641886418864175,40.69358067988304],[-8.656286562865631,40.702023566232455],[-8.667086670866695,40.71384360712163],[-8.66348663486633,40.723975070740934],[-8.645486454864539,40.72904080255057],[-8.620286202862019,40.73072937982046],[-8.602286022860227,40.73579511163011],[-8.58788587885877,40.744237997979525],[-8.573485734857343,40.7560580388687],[-8.58788587885877,40.75436946159881],[-8.61308613086129,40.744237997979525],[-8.634686346863475,40.74086084343975],[-8.63828638286381,40.74086084343975],[-8.645486454864539,40.739172266169874],[-8.667086670866695,40.74761515251929],[-8.674286742867423,40.7560580388687],[-8.685086850868515,40.78307527518682],[-8.645486454864539,40.82360112966401],[-8.656286562865631,40.84555263417248],[-8.656286562865631,40.82866686147365],[-8.66348663486633,40.8151582433146],[-8.670686706867059,40.81178108877482],[-8.674286742867423,40.82528970693389],[-8.688686886868851,40.80333820242541],[-8.699486994869943,40.77800954337718],[-8.706687066870671,40.75099230705905],[-8.710287102871035,40.72566364801081],[-8.713887138871371,40.70877787531198],[-8.724687246872463,40.68513779353363],[-8.739087390873891,40.66487486629504],[-8.749887498874983,40.65305482540586],[-8.656286562865631,40.994147433922166],[-8.656286562865631,41.031296133859584],[-8.667086670866695,41.09715064738501],[-8.667086670866695,41.13261077005254],[-8.649086490864903,41.1461193882116],[-8.649086490864903,41.15287369729113],[-8.685086850868515,41.15962800637067],[-8.706687066870671,41.18664524268878],[-8.717487174871735,41.22210536535633],[-8.735487354873555,41.24912260167444],[-8.731887318873191,41.26263121983351],[-8.735487354873555,41.274451260722685],[-8.739087390873891,41.28458272434199],[-8.74628746287462,41.29809134250104],[-8.742687426874255,41.32848573335893],[-8.749887498874983,41.338617196978234],[-8.757087570875711,41.34030577424811],[-8.760687606876076,41.35043723786741],[-8.764287642876411,41.3605687014867],[-8.778687786877867,41.379143051455415],[-8.782287822878232,41.394340246884354],[-8.782287822878232,41.40616028777353],[-8.785887858878596,41.43486610136155],[-8.775087750877503,41.46863764675919],[-8.785887858878596,41.49058915126767],[-8.789487894878931,41.51254065577615],[-8.793087930879295,41.526049273935215],[-8.79668796687966,41.54293504663404],[-8.807488074880752,41.57332943749192],[-8.811088110881116,41.5952809420004],[-8.818288182881815,41.61216671469923],[-8.82188821888218,41.63074106466793],[-8.829088290882908,41.64762683736676],[-8.829088290882908,41.671266919145125],[-8.825488254882544,41.6830869600343],[-8.803888038880388,41.68984126911383],[-8.742687426874255,41.69659557819337],[-8.724687246872463,41.70334988727289],[-8.710287102871035,41.71179277362231],[-8.695886958869579,41.72192423724161],[-8.807488074880752,41.69659557819337],[-8.829088290882908,41.69490700092348],[-8.843488434884335,41.69659557819337],[-8.861488614886156,41.70503846454278],[-8.879488794887948,41.73712143267055],[-8.879488794887948,41.76582724625855],[-8.87228872288722,41.8097302552755],[-8.879488794887948,41.838436068863516],[-8.875888758887584,41.85025610975269],[-8.868688686886856,41.858698996102106],[-8.79668796687966,41.90260200511905],[-8.764287642876411,41.931307818707054],[-8.749887498874983,41.96845651864447],[-8.760687606876076,41.95325932321553],[-8.778687786877867,41.936373550516706],[-8.79668796687966,41.9262420868974],[-8.814688146881451,41.921176355087766],[-8.832688326883272,41.91442204600823],[-8.8470884708847,41.89922485057929],[-8.865088650886491,41.889093386959985],[-8.879488794887948,41.89247054149976],[-8.879488794887948,41.9076677369287],[-8.89748897488974,42.10185412296521],[-8.893888938889376,42.118739895664035],[-8.883088830888312,42.125494204743575],[-8.843488434884335,42.12718278201345],[-8.825488254882544,42.13055993655321],[-8.818288182881815,42.139002822902626],[-8.825488254882544,42.14744570925204],[-8.843488434884335,42.15420001833158],[-8.8470884708847,42.160954327411105],[-8.843488434884335,42.16433148195087],[-8.814688146881451,42.17446294557017],[-8.814688146881451,42.17952867737982],[-8.811088110881116,42.18797156372922],[-8.807488074880752,42.19810302734852],[-8.79668796687966,42.201480181888286],[-8.789487894878931,42.20485733642805],[-8.77148771487714,42.22174310912688],[-8.7210872108721,42.25213749998477],[-8.706687066870671,42.25720323179442],[-8.703087030870307,42.258891809064295],[-8.670686706867059,42.280843313572774],[-8.652686526865267,42.285909045382425],[-8.631086310863111,42.29604050900171],[-8.623886238862383,42.301106240811365],[-8.620286202862019,42.30954912716078],[-8.620286202862019,42.34163209528856],[-8.623886238862383,42.3466978270982],[-8.627486274862747,42.348386404368085],[-8.634686346863475,42.3466978270982],[-8.649086490864903,42.33487778620902],[-8.659886598865995,42.31630343624032],[-8.674286742867423,42.29941766354149],[-8.699486994869943,42.290974777192076],[-8.7210872108721,42.287597622652314],[-8.775087750877503,42.2690232726836],[-8.785887858878596,42.26058038633418],[-8.79668796687966,42.258891809064295],[-8.8470884708847,42.26058038633418],[-8.868688686886856,42.25720323179442],[-8.865088650886491,42.2690232726836],[-8.854288542885428,42.290974777192076],[-8.854288542885428,42.30448339535113],[-8.8470884708847,42.30448339535113],[-8.832688326883272,42.28928619992219],[-8.825488254882544,42.29604050900171],[-8.825488254882544,42.32981205439937],[-8.829088290882908,42.33656636347891],[-8.829088290882908,42.34163209528856],[-8.825488254882544,42.343320672558434],[-8.811088110881116,42.3466978270982],[-8.778687786877867,42.33994351801867],[-8.77148771487714,42.343320672558434],[-8.764287642876411,42.35514071344761],[-8.728287282872827,42.38891225884527],[-8.710287102871035,42.40073229973444],[-8.677886778867787,42.4159294951634],[-8.66348663486633,42.42774953605257],[-8.656286562865631,42.44125815421164],[-8.66348663486633,42.43788099967186],[-8.674286742867423,42.43788099967186],[-8.681486814868151,42.44125815421164],[-8.692286922869215,42.44125815421164],[-8.695886958869579,42.43956957694175],[-8.695886958869579,42.43788099967186],[-8.717487174871735,42.42774953605257],[-8.742687426874255,42.41255234062362],[-8.757087570875711,42.40748660881398],[-8.778687786877867,42.40242087700433],[-8.811088110881116,42.40073229973444],[-8.843488434884335,42.404109454274206],[-8.868688686886856,42.41424091789351],[-8.875888758887584,42.426060958782685],[-8.879488794887948,42.4446353087514],[-8.886688866888676,42.45645534964058],[-8.901089010890104,42.46152108145023],[-8.937089370893716,42.46489823598999],[-8.944289442894416,42.46996396779964],[-8.933489334893352,42.47840685414906],[-8.915489154891532,42.48684974049847],[-8.89748897488974,42.493604049577996],[-8.879488794887948,42.49698120411776],[-8.868688686886856,42.493604049577996],[-8.861488614886156,42.48516116322858],[-8.861488614886156,42.47502969960928],[-8.875888758887584,42.46996396779964],[-8.865088650886491,42.46489823598999],[-8.850688506885064,42.46152108145023],[-8.836288362883636,42.458143926910466],[-8.825488254882544,42.46152108145023],[-8.82188821888218,42.47165254506952],[-8.825488254882544,42.483472585958694],[-8.825488254882544,42.495292626847885],[-8.811088110881116,42.50204693592741],[-8.825488254882544,42.53750705859494],[-8.825488254882544,42.55439283129377],[-8.82188821888218,42.56959002672272],[-8.814688146881451,42.5814100676119],[-8.800288002880023,42.58985295396131],[-8.789487894878931,42.59154153123119],[-8.775087750877503,42.60505014939025],[-8.739087390873891,42.66583893110604],[-8.731887318873191,42.6877904356145],[-8.735487354873555,42.6877904356145],[-8.742687426874255,42.67259324018556],[-8.753487534875347,42.657396044756624],[-8.767887678876775,42.64557600386743],[-8.785887858878596,42.640510272057796],[-8.803888038880388,42.64557600386743],[-8.814688146881451,42.6590846220265],[-8.825488254882544,42.67428181745545],[-8.839888398883971,42.68272470380485],[-8.854288542885428,42.660773199296386],[-8.857888578885792,42.64895315840721],[-8.8470884708847,42.640510272057796],[-8.868688686886856,42.61687019027943],[-8.879488794887948,42.61180445846979],[-8.893888938889376,42.620247344819205],[-8.890288902889012,42.63037880843849],[-8.904689046890468,42.62531307662884],[-8.937089370893716,42.60673872666014],[-8.92268922689226,42.593230108501075],[-8.933489334893352,42.58647579942155],[-8.969489694896936,42.57972149034201],[-8.9730897308973,42.57465575853236],[-8.980289802898028,42.551015676754005],[-8.987489874898756,42.54932709948413],[-8.99828998289982,42.54257279040459],[-9.012690126901276,42.530752749515415],[-9.027090270902704,42.54257279040459],[-9.027090270902704,42.56114714037331],[-9.034290342903432,42.578032913072136],[-9.055890558905588,42.58478722215166],[-9.070290702907016,42.59660726304084],[-9.066690666906652,42.620247344819205],[-9.052290522905224,42.64557600386743],[-9.037890378903796,42.660773199296386],[-9.037890378903796,42.67259324018556],[-9.037890378903796,42.6877904356145],[-9.030690306903068,42.70805336285309],[-9.019890198901976,42.719873403742284],[-9.012690126901276,42.72662771282181],[-9.005490054900548,42.733382021901335],[-8.994689946899456,42.73675917644111],[-8.991089910899092,42.738447753710986],[-8.962289622896236,42.75195637187005],[-8.937089370893716,42.77728503091829],[-8.92268922689226,42.78741649453758],[-8.89748897488974,42.79248222634723],[-8.890288902889012,42.79923653542676],[-8.886688866888676,42.81443373085571],[-8.886688866888676,42.83131950355454],[-8.908289082890832,42.83976238990394],[-8.911889118891196,42.816122308125586],[-8.929889298892988,42.802613689966535],[-8.951489514895144,42.79585938088701],[-8.976689766897664,42.79248222634723],[-9.027090270902704,42.79754795815688],[-9.04869048690486,42.79417080361711],[-9.045090450904496,42.77728503091829],[-9.070290702907016,42.760399258219465],[-9.081090810908108,42.755333526409814],[-9.0990909909099,42.7570221036797],[-9.113491134911357,42.765464990029116],[-9.120691206912056,42.77897360818818],[-9.12429124291242,42.79417080361711],[-9.135091350913513,42.81274515358584],[-9.12429124291242,42.81274515358584],[-9.113491134911357,42.816122308125586],[-9.106291062910628,42.82287661720511],[-9.0990909909099,42.83300808082441],[-9.109891098910992,42.84482812171359],[-9.120691206912056,42.851582430793115],[-9.142291422914212,42.85664816260277],[-9.142291422914212,42.865091048952195],[-9.145891458914576,42.878599667111246],[-9.14949149491494,42.8836653989209],[-9.145891458914576,42.88873113073055],[-9.138691386913877,42.895485439810074],[-9.135091350913513,42.9022397488896],[-9.135091350913513,42.91068263523903],[-9.135091350913513,42.91743694431855],[-9.142291422914212,42.92081409885833],[-9.160291602916033,42.922502676128204],[-9.167491674916732,42.927568407937855],[-9.181891818918189,42.94445418063668],[-9.196291962919616,42.949519912446334],[-9.196291962919616,42.94276560336678],[-9.189091890918917,42.932634139747506],[-9.196291962919616,42.92587983066798],[-9.203492034920345,42.92419125339808],[-9.210692106921073,42.92587983066798],[-9.214292142921437,42.93938844882703],[-9.2250922509225,42.93938844882703],[-9.235892358923593,42.93432271701738],[-9.243092430924293,42.92925698520773],[-9.25029250292502,42.92081409885833],[-9.261092610926113,42.900551171619725],[-9.268292682926813,42.892108285270325],[-9.271892718927177,42.8937968625402],[-9.282692826928269,42.91743694431855],[-9.293492934929333,42.922502676128204],[-9.293492934929333,42.92925698520773],[-9.286292862928633,42.93769987155716],[-9.264692646926477,42.97991430330421],[-9.264692646926477,42.98666861238374],[-9.261092610926113,42.995111498733166],[-9.257492574925749,43.00186580781269],[-9.253892538925385,43.00862011689222],[-9.25029250292502,43.017063003241645],[-9.257492574925749,43.02381731232117],[-9.271892718927177,43.030571621400696],[-9.279092790927905,43.05421170317905],[-9.271892718927177,43.060966012258575],[-9.257492574925749,43.060966012258575],[-9.25029250292502,43.069408898608],[-9.246692466924657,43.087983248576705],[-9.232292322923229,43.09642613492613],[-9.221492214922137,43.10318044400566],[-9.217892178921772,43.115000484894836],[-9.203492034920345,43.10486902127553],[-9.189091890918917,43.101491866735756],[-9.178291782917825,43.10486902127553],[-9.163891638916397,43.115000484894836],[-9.156691566915669,43.12006621670449],[-9.153091530915304,43.12513194851414],[-9.14949149491494,43.13019768032376],[-9.142291422914212,43.13526341213341],[-9.131491314913148,43.13864056667319],[-9.12429124291242,43.14032914394306],[-9.106291062910628,43.14032914394306],[-9.106291062910628,43.14877203029249],[-9.12429124291242,43.142017721212966],[-9.145891458914576,43.13864056667319],[-9.163891638916397,43.14032914394306],[-9.163891638916397,43.14877203029249],[-9.192691926919252,43.136951989403315],[-9.207092070920709,43.13864056667319],[-9.217892178921772,43.15552633937202],[-9.171091710917096,43.18929788476967],[-9.138691386913877,43.20111792565885],[-9.0990909909099,43.18929788476967],[-9.084690846908472,43.18929788476967],[-9.066690666906652,43.19267503930942],[-9.052290522905224,43.1960521938492],[-9.041490414904132,43.204495080198626],[-9.027090270902704,43.20956081200825],[-9.016290162901612,43.22306943016733],[-9.012690126901276,43.23826662559625],[-9.005490054900548,43.23826662559625],[-8.987489874898756,43.22644658470708],[-8.958689586895872,43.22813516197698],[-8.933489334893352,43.234889471056505],[-8.915489154891532,43.24502093467581],[-8.937089370893716,43.243332357405905],[-8.94788947889478,43.25008666648546],[-8.962289622896236,43.27203817099391],[-8.965889658896572,43.27203817099391],[-8.980289802898028,43.27710390280356],[-8.987489874898756,43.283858211883086],[-8.980289802898028,43.28554678915299],[-8.969489694896936,43.28723536642286],[-8.929889298892988,43.29905540731204],[-8.886688866888676,43.32100691182052],[-8.857888578885792,43.32607264363017],[-8.850688506885064,43.33451552997957],[-8.839888398883971,43.33958126178922],[-8.829088290882908,43.34126983905912],[-8.818288182881815,43.33620410724947],[-8.785887858878596,43.31256402547112],[-8.767887678876775,43.30749829366147],[-8.749887498874983,43.30412113912169],[-8.710287102871035,43.29567825277229],[-8.692286922869215,43.29398967550239],[-8.667086670866695,43.30074398458191],[-8.631086310863111,43.31594118001087],[-8.591485914859135,43.324384066360295],[-8.559085590855915,43.31256402547112],[-8.50508505085051,43.33113837543982],[-8.497884978849783,43.337892684519346],[-8.494284942849418,43.346335570868746],[-8.48708487084869,43.354778457218174],[-8.476284762847627,43.359844189027825],[-8.45468454684547,43.363221343567574],[-8.451084510845106,43.36659849810735],[-8.447484474844742,43.371664229917],[-8.443884438844378,43.37504138445678],[-8.389883898838974,43.38517284807605],[-8.38628386283861,43.373352807186876],[-8.375483754837546,43.363221343567574],[-8.35388353883539,43.34802414813865],[-8.339483394833934,43.359844189027825],[-8.33588335883357,43.368287075377225],[-8.339483394833934,43.39192715715558],[-8.332283322833234,43.40543577531466],[-8.31068310683105,43.40374719804478],[-8.281882818828194,43.390238579885704],[-8.267482674826738,43.38517284807605],[-8.26028260282601,43.37672996172665],[-8.256682566825674,43.364909920837476],[-8.249482494824946,43.354778457218174],[-8.22788227882279,43.337892684519346],[-8.217082170821698,43.327761220900044],[-8.20988209882097,43.31256402547112],[-8.20268202682027,43.32944979816992],[-8.20268202682027,43.34464699359887],[-8.20988209882097,43.37504138445678],[-8.20988209882097,43.390238579885704],[-8.206282062820634,43.400370043505006],[-8.195481954819542,43.40712435258453],[-8.173881738817386,43.41556723893396],[-8.195481954819542,43.42401012528336],[-8.213482134821334,43.425698702553234],[-8.245882458824582,43.422321548013485],[-8.263882638826374,43.42738727982314],[-8.289082890828894,43.44596162979184],[-8.30348303483035,43.45102736160149],[-8.28548285482853,43.46115882522079],[-8.18468184681845,43.471290288840066],[-8.17748177481775,43.47297886610997],[-8.170281702817022,43.47804459791962],[-8.166681666816658,43.484798906999146],[-8.170281702817022,43.49155321607867],[-8.173881738817386,43.493241793348545],[-8.195481954819542,43.484798906999146],[-8.256682566825674,43.47804459791962],[-8.25308253082531,43.48142175245937],[-8.249482494824946,43.48311032972927],[-8.242282422824218,43.484798906999146],[-8.245882458824582,43.488176061538894],[-8.256682566825674,43.49155321607867],[-8.267482674826738,43.479733175189494],[-8.289082890828894,43.47297886610997],[-8.332283322833234,43.471290288840066],[-8.325083250832506,43.48648748426902],[-8.321483214832142,43.5084389887775],[-8.317883178831778,43.52363618420645],[-8.30348303483035,43.5185704523968],[-8.292682926829258,43.53376764782573],[-8.299882998829986,43.53883337963538],[-8.307083070830714,43.5455876887149],[-8.314283142831414,43.555719152334206],[-8.314283142831414,43.56753919322338],[-8.307083070830714,43.56753919322338],[-8.292682926829258,43.564162038683634],[-8.28548285482853,43.56753919322338],[-8.26028260282601,43.564162038683634],[-8.231482314823154,43.57598207957281],[-8.087480874808733,43.65703378852717],[-8.08388083880837,43.645213747637996],[-8.073080730807305,43.640148015828345],[-8.062280622806213,43.63845943855847],[-8.05148051480515,43.64352517036812],[-8.062280622806213,43.64183659309822],[-8.065880658806577,43.64352517036812],[-8.065880658806577,43.64859090217777],[-8.062280622806213,43.65027947944765],[-8.055080550805513,43.653656633987396],[-8.05148051480515,43.65703378852717],[-8.069480694806941,43.667165252146475],[-8.073080730807305,43.67898529303565],[-8.069480694806941,43.689116756654954],[-8.065880658806577,43.70093679754413],[-8.058680586805849,43.70937968389353],[-8.044280442804421,43.71275683843331],[-8.011880118801173,43.71106826116343],[-7.979479794797953,43.71782257024296],[-7.954279542795433,43.729642611132135],[-7.929079290792913,43.74652838383096],[-7.907479074790729,43.76679131106954],[-7.882278822788209,43.76341415652979],[-7.867878678786781,43.74821696110084],[-7.860678606786053,43.73133118840201],[-7.846278462784625,43.71782257024296],[-7.846278462784625,43.71106826116343],[-7.853478534785353,43.71444541570318],[-7.860678606786053,43.716133992973056],[-7.867878678786781,43.71782257024296],[-7.875078750787509,43.70937968389353],[-7.878678786787873,43.70093679754413],[-7.878678786787873,43.6924939111947],[-7.875078750787509,43.6840510248453],[-7.885878858788573,43.67898529303565],[-7.896678966789665,43.6840510248453],[-7.900279002790029,43.67898529303565],[-7.903879038790393,43.67898529303565],[-7.907479074790729,43.67729671576578],[-7.907479074790729,43.670542406686224],[-7.8570785707856885,43.66885382941635],[-7.849878498784989,43.675608138495875],[-7.867878678786781,43.697559643004354],[-7.8570785707856885,43.702625374814005],[-7.842678426784261,43.70431395208388],[-7.817478174781741,43.697559643004354],[-7.821078210782105,43.70093679754413],[-7.824678246782469,43.707691106623656],[-7.824678246782469,43.71106826116343],[-7.810278102781012,43.72288830205261],[-7.7922779227792205,43.734708342941786],[-7.774277742777429,43.743151229291186],[-7.734677346773452,43.74990553837071],[-7.713077130771296,43.760037001990014],[-7.695076950769504,43.77523419741897],[-7.687876878768776,43.79043139284792],[-7.684276842768412,43.79380854738767],[-7.677076770767712,43.79043139284792],[-7.669876698766984,43.78367708376837],[-7.669876698766984,43.77185704287919],[-7.673476734767348,43.76679131106954],[-7.695076950769504,43.74652838383096],[-7.695076950769504,43.73133118840201],[-7.69147691476914,43.72795403386226],[-7.684276842768412,43.72795403386226],[-7.673476734767348,43.73133118840201],[-7.673476734767348,43.734708342941786],[-7.673476734767348,43.73977407475144],[-7.673476734767348,43.743151229291186],[-7.66627666276662,43.74652838383096],[-7.659076590765892,43.74652838383096],[-7.6410764107641,43.75328269291049],[-7.637476374763736,43.73977407475144],[-7.612276122761216,43.70431395208388],[-7.61587615876158,43.689116756654954],[-7.608676086760852,43.69080533392483],[-7.594275942759424,43.70431395208388],[-7.587075870758696,43.71782257024296],[-7.572675726757268,43.71444541570318],[-7.56547565475654,43.71951114751283],[-7.554675546755448,43.72795403386226],[-7.54027540275402,43.73133118840201],[-7.500675006750072,43.72795403386226],[-7.48987489874898,43.724576879322484],[-7.407074070740691,43.69080533392483],[-7.367473674736743,43.680673870305526],[-7.302673026730275,43.59793358408129],[-7.255872558725571,43.58104781138246],[-7.259472594725935,43.577670656842685],[-7.263072630726299,43.574293502302936],[-7.266672666726663,43.57091634776316],[-7.270272702727027,43.569227770493285],[-7.270272702727027,43.56078488414386],[-7.259472594725935,43.55740772960411],[-7.248672486724871,43.55909630687398],[-7.241472414724143,43.564162038683634],[-7.230672306723051,43.569227770493285],[-7.216272162721623,43.569227770493285],[-7.194671946719467,43.564162038683634],[-7.158671586715855,43.55909630687398],[-7.097470974709751,43.56078488414386],[-7.07947079470793,43.569227770493285],[-7.061470614706138,43.56078488414386],[-7.043470434704346,43.55909630687398],[-7.032670326703254,43.55234199779446],[-7.032670326703254,43.53376764782573],[-7.036270362703618,43.52194760693655],[-7.0470704707047105,43.51012756604737],[-7.05427054270541,43.49661894788832],[-7.043470434704346,43.479733175189494],[-7.039870398703982,43.479733175189494],[-7.032670326703254,43.49493037061845],[-7.02907029070289,43.511816143317276],[-7.0254702547025545,43.52532476147633],[-7.011070110701098,43.53376764782573],[-7.000270002700034,43.55740772960411],[-6.942669426694266,43.56585061595351],[-6.84546845468455,43.569227770493285],[-6.831068310683094,43.56585061595351],[-6.76986769867699,43.569227770493285],[-6.730267302673013,43.55909630687398],[-6.705067050670493,43.55740772960411],[-6.647466474664753,43.57935923411256],[-6.597065970659713,43.57598207957281],[-6.546665466654673,43.56247346141373],[-6.510665106651061,43.547276265984806],[-6.499864998649969,43.55234199779446],[-6.489064890648905,43.555719152334206],[-6.463864638646385,43.555719152334206],[-6.463864638646385,43.55909630687398],[-6.467464674646749,43.57091634776316],[-6.467464674646749,43.57598207957281],[-6.456664566645657,43.57260492503303],[-6.4314643146431365,43.564162038683634],[-6.417064170641709,43.56078488414386],[-6.3666636666366685,43.569227770493285],[-6.316263162631628,43.569227770493285],[-6.298262982629808,43.57091634776316],[-6.273062730627288,43.57935923411256],[-6.251462514625132,43.58442496592221],[-6.244262442624432,43.58949069773186],[-6.237062370623704,43.59455642954151],[-6.222662226622248,43.59624500681139],[-6.190261902619028,43.57935923411256],[-6.179461794617936,43.57598207957281],[-6.1002610026100115,43.569227770493285],[-6.085860858608584,43.57598207957281],[-6.067860678606792,43.569227770493285],[-6.053460534605335,43.574293502302936],[-6.0390603906039075,43.582736388652336],[-6.024660246602451,43.58780212046199],[-5.905859058590579,43.58780212046199],[-5.902259022590215,43.59793358408129],[-5.909459094590943,43.604687893160815],[-5.913059130591307,43.613130779510215],[-5.902259022590215,43.62326224312952],[-5.902259022590215,43.626639397669294],[-5.905859058590579,43.63339370674882],[-5.905859058590579,43.636770861288596],[-5.873458734587331,43.636770861288596],[-5.862658626586267,43.64183659309822],[-5.859058590585903,43.653656633987396],[-5.851858518585175,43.6637880976067],[-5.837458374583747,43.662099520336824],[-5.805058050580499,43.65027947944765],[-5.783457834578343,43.636770861288596],[-5.725857258572574,43.58949069773186],[-5.7078570785707825,43.569227770493285],[-5.700657006570054,43.569227770493285],[-5.69705697056969,43.582736388652336],[-5.689856898568991,43.57935923411256],[-5.679056790567898,43.56078488414386],[-5.625056250562494,43.555719152334206],[-5.4234542345423336,43.56078488414386],[-5.394653946539449,43.555719152334206],[-5.391053910539085,43.54052195690528],[-5.4018540185401775,43.52532476147633],[-5.4198541985419695,43.51350472058715],[-5.41265412654127,43.506750411507625],[-5.405454054540542,43.511816143317276],[-5.383853838538386,43.5168818751269],[-5.373053730537293,43.520259029666676],[-5.365853658536565,43.5270133387462],[-5.36225362253623,43.53376764782573],[-5.3550535505355015,43.53883337963538],[-5.340653406534045,43.54052195690528],[-5.301053010530097,43.5371448023655],[-5.283052830528305,43.53376764782573],[-5.211052110521109,43.4983075251582],[-5.178651786517861,43.4898646388088],[-5.0922509225092085,43.48648748426902],[-5.0670506705066884,43.48142175245937],[-5.056250562505625,43.46791313430032],[-5.0454504545045324,43.47466744337984],[-4.973449734497336,43.45947024795089],[-4.966249662496608,43.46115882522079],[-4.95184951849518,43.46960171157019],[-4.941049410494088,43.471290288840066],[-4.930249302493024,43.46960171157019],[-4.908649086490868,43.46115882522079],[-4.836648366483672,43.449338784331616],[-4.753847538475384,43.422321548013485],[-4.735847358473592,43.417255816203834],[-4.512645126451247,43.40205862077488],[-4.509045090450911,43.40205862077488],[-4.480244802448027,43.38348427080618],[-4.462244622446207,43.39868146623513],[-4.433444334443351,43.40205862077488],[-4.404644046440467,43.39699288896523],[-4.3866438664386465,43.38348427080618],[-4.379443794437947,43.38348427080618],[-4.3686436864368545,43.39699288896523],[-4.357843578435791,43.400370043505006],[-4.311043110431086,43.395304311695355],[-4.18864188641885,43.40543577531466],[-4.159841598415966,43.42063297074361],[-4.098640986409862,43.435830166172536],[-4.073440734407342,43.43751874344241],[-4.03024030240303,43.43751874344241],[-4.023040230402302,43.44089589798219],[-4.023040230402302,43.44596162979184],[-4.019440194401938,43.45102736160149],[-4.012240122401209,43.452715938871364],[-4.00504005040051,43.45102736160149],[-3.9798397983979896,43.43751874344241],[-3.9762397623976256,43.44258447525206],[-3.9726397263972615,43.444273052521964],[-3.9654396543965333,43.444273052521964],[-3.9618396183961693,43.444273052521964],[-3.9654396543965333,43.44765020706171],[-3.9762397623976256,43.452715938871364],[-3.9762397623976256,43.45947024795089],[-3.9402394023940133,43.47635602064972],[-3.9222392223922213,43.48311032972927],[-3.907839078390765,43.479733175189494],[-3.893438934389337,43.484798906999146],[-3.889838898388973,43.48311032972927],[-3.886238862388609,43.479733175189494],[-3.857438574385725,43.49155321607867],[-3.825038250382505,43.49661894788832],[-3.796237962379621,43.493241793348545],[-3.767437674376737,43.479733175189494],[-3.814238142381413,43.46453597976054],[-3.832238322383205,43.45609309341114],[-3.843038430384297,43.444273052521964],[-3.832238322383205,43.435830166172536],[-3.828638286382869,43.43245301163279],[-3.825038250382505,43.430764434362885],[-3.828638286382869,43.430764434362885],[-3.832238322383205,43.42907585709301],[-3.832238322383205,43.42401012528336],[-3.821438214382141,43.42401012528336],[-3.810638106381049,43.425698702553234],[-3.796237962379621,43.430764434362885],[-3.789037890378893,43.435830166172536],[-3.774637746377465,43.449338784331616],[-3.771037710377101,43.452715938871364],[-3.7638376383763728,43.45102736160149],[-3.753037530375309,43.44089589798219],[-3.745837458374581,43.43751874344241],[-3.7422374223742167,43.44258447525206],[-3.7422374223742167,43.45102736160149],[-3.749437494374945,43.46115882522079],[-3.7566375663756446,43.46622455703044],[-3.7566375663756446,43.471290288840066],[-3.7422374223742167,43.46960171157019],[-3.7350373503734886,43.46960171157019],[-3.727837278372789,43.46622455703044],[-3.727837278372789,43.471290288840066],[-3.724237242372425,43.471290288840066],[-3.7206372063720607,43.471290288840066],[-3.727837278372789,43.479733175189494],[-3.7170371703716967,43.48311032972927],[-3.6882368823688125,43.484798906999146],[-3.6774367743677487,43.4898646388088],[-3.6666366663666565,43.49661894788832],[-3.6558365583655643,43.49999610242807],[-3.580235802358004,43.5185704523968],[-3.555035550355484,43.5168818751269],[-3.555035550355484,43.49999610242807],[-3.540635406354056,43.4983075251582],[-3.5262352623526283,43.49155321607867],[-3.515435154351536,43.48311032972927],[-3.504635046350444,43.479733175189494],[-3.436234362343612,43.471290288840066],[-3.4326343263432477,43.46622455703044],[-3.4290342903428837,43.46115882522079],[-3.425434254342548,43.45609309341114],[-3.4290342903428837,43.44765020706171],[-3.4326343263432477,43.44596162979184],[-3.439834398343976,43.44596162979184],[-3.447034470344704,43.444273052521964],[-3.450634506345068,43.44765020706171],[-3.461434614346132,43.452715938871364],[-3.46863468634686,43.45440451614124],[-3.475834758347588,43.449338784331616],[-3.479434794347924,43.44258447525206],[-3.486634866348652,43.43751874344241],[-3.5010350103501082,43.430764434362885],[-3.483034830348288,43.42738727982314],[-3.472234722347224,43.417255816203834],[-3.461434614346132,43.41219008439418],[-3.447034470344704,43.430764434362885],[-3.436234362343612,43.41894439347371],[-3.421834218342184,43.417255816203834],[-3.3930339303393,43.42401012528336],[-3.3786337863378435,43.422321548013485],[-3.3318333183331674,43.41050150712431],[-3.2706327063270635,43.40374719804478],[-3.2238322383223874,43.39192715715558],[-3.209432094320931,43.390238579885704],[-3.1986319863198673,43.38517284807605],[-3.177031770317683,43.36659849810735],[-3.151831518315163,43.359844189027825],[-3.130231302313007,43.35646703448805],[-3.112231122311215,43.354778457218174],[-3.090630906309059,43.36659849810735],[-3.0582305823058107,43.3530898799483],[-3.0078300783007705,43.32100691182052],[-3.0078300783007705,43.327761220900044],[-3.0186301863018628,43.3530898799483],[-3.022230222302227,43.364909920837476],[-3.0294302943029265,43.371664229917],[-3.0294302943029265,43.37672996172665],[-3.025830258302591,43.3801071162664],[-3.0114301143011346,43.38348427080618],[-3.000630006300071,43.39361573442548],[-2.9574295742957304,43.41387866166406],[-2.9394293942939385,43.417255816203834],[-2.9394293942939385,43.42401012528336],[-2.9466294662946666,43.42401012528336],[-2.9466294662946666,43.430764434362885],[-2.9286292862928462,43.43751874344241],[-2.9070290702906902,43.43920732071231],[-2.853028530285286,43.43751874344241],[-2.80622806228061,43.44089589798219],[-2.784627846278454,43.44765020706171],[-2.770227702277026,43.452715938871364],[-2.75582755827557,43.45102736160149],[-2.734227342273414,43.43920732071231],[-2.716227162271622,43.42401012528336],[-2.7054270542705297,43.41387866166406],[-2.694626946269466,43.38855000261583],[-2.691026910269102,43.368287075377225],[-2.6874268742687377,43.371664229917],[-2.6802268022680096,43.390238579885704],[-2.6802268022680096,43.395304311695355],[-2.6802268022680096,43.400370043505006],[-2.6766267662676455,43.40543577531466],[-2.67302673026731,43.41050150712431],[-2.6622266222662176,43.41219008439418],[-2.64782647826479,43.408812929854406],[-2.6370263702636976,43.40543577531466],[-2.6082260822608134,43.40205862077488],[-2.550625506255045,43.38348427080618],[-2.507425074250733,43.37672996172665],[-2.482224822248213,43.36997565264713],[-2.464224642246421,43.34971272540852],[-2.367023670236705,43.31594118001087],[-2.3274232742327285,43.30749829366147],[-2.2842228422284165,43.30412113912169],[-2.2410224102241045,43.30749829366147],[-2.2086220862208563,43.31425260274099],[-2.197821978219764,43.31425260274099],[-2.1906219062190644,43.310875448201216],[-2.1834218342183362,43.30412113912169],[-2.176221762217608,43.297366830042165],[-2.1618216182161802,43.29398967550239],[-2.158221582215816,43.29567825277229],[-2.154621546215452,43.297366830042165],[-2.151021510215088,43.30074398458191],[-2.1438214382143883,43.30074398458191],[-2.1402214022140242,43.29905540731204],[-2.13662136621366,43.29398967550239],[-2.13662136621366,43.28892394369274],[-2.129421294212932,43.28723536642286],[-2.100621006210048,43.30412113912169],[-2.08622086220862,43.30749829366147],[-2.064620646206464,43.30918687093134],[-1.9962199621996035,43.327761220900044],[-1.9710197101970834,43.33958126178922],[-1.9602196021960197,43.342958416329],[-1.9458194581945634,43.342958416329],[-1.9350193501934996,43.33620410724947],[-1.9278192781927714,43.32607264363017],[-1.9170191701917076,43.32100691182052],[-1.9062190621906154,43.327761220900044],[-1.9098190981909795,43.33113837543982],[-1.9206192061920433,43.337892684519346],[-1.9242192421924074,43.342958416329],[-1.8846188461884594,43.35646703448805],[-1.8486184861848471,43.3801071162664],[-1.8126181261812633,43.395304311695355],[-1.7910179101791073,43.38517284807605],[-1.7910179101791073,43.38348427080618],[-1.776617766177651,43.37672996172665],[-1.7694176941769229,43.38348427080618],[-1.751417514175131,43.38855000261583],[-1.6614166141661428,43.400370043505006],[-1.6362163621636228,43.42401012528336],[-1.6146161461614668,43.43245301163279],[-1.5966159661596464,43.44258447525206],[-1.5894158941589467,43.45102736160149],[-1.5678156781567623,43.48142175245937],[-1.5606156061560625,43.493241793348545],[-1.5534155341553344,43.50168467969797],[-1.5138151381513865,43.53883337963538],[-1.5066150661506583,43.550653420524554],[-1.4778147781477742,43.57935923411256],[-1.470614706147046,43.61144220224034],[-1.445414454144526,43.66885382941635],[-1.405814058140578,43.83264582459498],[-1.380613806138058,43.890057451770986],[-1.3482134821348097,44.01332359247243],[-1.3446134461344457,44.01838932428208],[-1.2798127981279777,44.30207030562238],[-1.2546125461254576,44.442222219022625],[-1.2474124741247294,44.504699578008285],[-1.2510125101250935,44.51989677343724],[-1.2582125821258217,44.54691400975537],[-1.2582125821258217,44.55535689610477],[-1.2294122941229375,44.58406270969277],[-1.2258122581225734,44.589128441502424],[-1.2258122581225734,44.602637059661475],[-1.2078120781207815,44.64822864594831],[-1.1862118621186255,44.665114418647136],[-1.1610116101161054,44.66680299591704],[-1.099810998109973,44.65498295502786],[-1.0638106381063608,44.65836010956761],[-1.0458104581045689,44.67018015045679],[-1.0458104581045689,44.68537734588574],[-1.0674106741067249,44.70395169585444],[-1.056610566105661,44.70395169585444],[-1.0638106381063608,44.71746031401352],[-1.139411394113921,44.76811763210998],[-1.1502115021150132,44.771494786649754],[-1.1574115741157414,44.77318336391963],[-1.1610116101161054,44.776560518459405],[-1.164611646116441,44.77824909572928],[-1.1718117181171692,44.77824909572928],[-1.1754117541175333,44.77487194118953],[-1.1790117901178974,44.771494786649754],[-1.1790117901178974,44.7664290548401],[-1.1826118261182614,44.76474047757023],[-1.1898118981189612,44.7562975912208],[-1.2330123301233016,44.70732885039422],[-1.2438124381243654,44.66342584137726],[-1.2546125461254576,44.638097182329034],[-1.2618126181261857,44.62796571870973],[-1.2006120061200534,45.12103028151549],[-1.1574115741157414,45.279756544884435],[-1.139411394113921,45.4908287036198],[-1.1322113221132213,45.50433732177885],[-1.099810998109973,45.55330606260546],[-1.0854108541085452,45.56850325803438],[-1.0674106741067249,45.573568989844034],[-1.0602106021060251,45.570191835304286],[-1.056610566105661,45.565126103494634],[-1.056610566105661,45.55837179441508],[-1.056610566105661,45.546551753525904],[-1.0602106021060251,45.543174598986155],[-1.0638106381063608,45.538108867176504],[-1.0638106381063608,45.53304313536685],[-1.0602106021060251,45.52628882628733],[-1.049410494104933,45.51446878539815],[-1.0386103861038407,45.507714476318625],[-0.9738097380973727,45.47056577638119],[-0.9306093060930607,45.453680003682365],[-0.9162091620916044,45.45030284914259],[-0.7938079380793681,45.355742522029175],[-0.765007650076484,45.32534813117127],[-0.7542075420754202,45.29664231758326],[-0.7506075060750561,45.27637939034469],[-0.7398073980739639,45.239230690407254],[-0.721807218072172,45.146358940563715],[-0.7146071460714438,45.13453889967454],[-0.682206822068224,45.07712727249853],[-0.6498064980649758,45.04504430437075],[-0.6102061020610279,45.01802706805262],[-0.5778057780577797,45.00451844989357],[-0.5706057060570515,44.99776414081404],[-0.5598055980559877,44.985944099924865],[-0.5598055980559877,44.97581263630556],[-0.5634056340563234,44.96061544087661],[-0.5598055980559877,44.93866393636813],[-0.5562055620556237,44.91840100912955],[-0.5490054900548955,44.901515236430726],[-0.5346053460534677,44.8947609273512],[-0.5382053820538033,44.90826954551025],[-0.5418054180541674,44.936975359098255],[-0.5490054900548955,44.94879539998743],[-0.5382053820538033,44.97581263630556],[-0.5490054900548955,44.99776414081404],[-0.5742057420574156,45.01464991351287],[-0.5958059580595716,45.02478137713217],[-0.5670056700566874,45.02309279986227],[-0.5382053820538033,45.01971564532252],[-0.5166051660516473,45.01127275897309],[-0.4950049500494913,44.99776414081404],[-0.5202052020520114,45.02984710894182],[-0.5598055980559877,45.043355727100874],[-0.6030060300602997,45.053487190720176],[-0.6390063900638836,45.07375011795875],[-0.657006570065704,45.09907877700701],[-0.6678066780667677,45.13116174513476],[-0.7074070740707441,45.32197097663152],[-0.7182071820718079,45.360808253838826],[-0.7542075420754202,45.423285612824486],[-0.7722077220772121,45.45199142641249],[-0.7938079380793681,45.47732008546072],[-0.8406084060840442,45.51446878539815],[-0.9846098460984649,45.58707760800311],[-0.9882098820988006,45.59045476254286],[-0.9918099180991646,45.61071768978147],[-0.9990099900998928,45.614094844321215],[-1.031410314103141,45.62253773067064],[-1.0854108541085452,45.65968643060805],[-1.114211142111401,45.668129316957476],[-1.1322113221132213,45.671506471497224],[-1.1502115021150132,45.67826078057678],[-1.164611646116441,45.68839224419605],[-1.1754117541175333,45.70021228508523],[-1.1934119341193252,45.71034374870453],[-1.2294122941229375,45.70527801689488],[-1.2474124741247294,45.71034374870453],[-1.2294122941229375,45.77957541676972],[-1.2294122941229375,45.793084034928796],[-1.164611646116441,45.80659265308785],[-1.143011430114285,45.80659265308785],[-1.0818108181081811,45.75424675772149],[-1.0674106741067249,45.747492448641964],[-1.056610566105661,45.74073813956244],[-0.9882098820988006,45.71709805778406],[-1.009810098100985,45.73567240775279],[-1.099810998109973,45.78632972584927],[-1.1250112501124931,45.80828123035772],[-1.1322113221132213,45.81672411670715],[-1.1322113221132213,45.828544157596326],[-1.1358113581135854,45.84374135302528],[-1.143011430114285,45.85724997118433],[-1.1502115021150132,45.86738143480363],[-1.139411394113921,45.872447166613284],[-1.1322113221132213,45.877512898422935],[-1.1286112861128572,45.88426720750246],[-1.1250112501124931,45.88933293931211],[-1.114211142111401,45.89608724839164],[-1.096210962109609,45.90284155747116],[-1.0890108901088809,45.90284155747116],[-1.078210782107817,45.90284155747116],[-1.074610746107453,45.90453013474104],[-1.0674106741067249,45.916350175630214],[-1.071010710107089,45.926481639249516],[-1.074610746107453,45.93661310286882],[-1.0818108181081811,45.94505598921822],[-1.0890108901088809,45.95012172102787],[-1.0854108541085452,45.95349887556765],[-1.074610746107453,45.961941761917046],[-1.0674106741067249,45.96363033918695],[-1.0854108541085452,45.97207322553635],[-1.096210962109609,45.98558184369543],[-1.1106111061110653,46.01766481182318],[-1.0890108901088809,46.00753334820388],[-1.074610746107453,46.00753334820388],[-1.0602106021060251,46.01597623455331],[-1.049410494104933,46.032862007252135],[-1.049410494104933,46.03961631633166],[-1.053010530105297,46.04299347087144],[-1.0602106021060251,46.04805920268109],[-1.0638106381063608,46.05143635722084],[-1.0854108541085452,46.05650208903049],[-1.0890108901088809,46.064944975379916],[-1.0890108901088809,46.07507643899919],[-1.096210962109609,46.08858505715827],[-1.096210962109609,46.09702794350767],[-1.096210962109609,46.10209367531732],[-1.099810998109973,46.103782252587195],[-1.114211142111401,46.1054708298571],[-1.117811178111765,46.10715940712697],[-1.121411214112129,46.11222513893662],[-1.1286112861128572,46.11560229347637],[-1.1286112861128572,46.12066802528602],[-1.117811178111765,46.127422334365576],[-1.139411394113921,46.14093095252463],[-1.1466114661146491,46.1426195297945],[-1.1538115381153773,46.144308107064404],[-1.1502115021150132,46.14768526160415],[-1.1502115021150132,46.152750993413804],[-1.1502115021150132,46.15612814795358],[-1.1574115741157414,46.15612814795358],[-1.1718117181171692,46.15612814795358],[-1.1826118261182614,46.157816725223455],[-1.1934119341193252,46.157816725223455],[-1.2006120061200534,46.15950530249333],[-1.2114121141211456,46.166259611572855],[-1.2114121141211456,46.17470249792228],[-1.2042120421204174,46.184833961541585],[-1.1934119341193252,46.193276847890985],[-1.1862118621186255,46.19665400243076],[-1.1898118981189612,46.21691692966934],[-1.1790117901178974,46.228736970558515],[-1.1106111061110653,46.25913136141642],[-1.1034110341103371,46.27263997957547],[-1.1034110341103371,46.279394288655],[-1.1070110701107012,46.28783717500443],[-1.1106111061110653,46.30303437043335],[-1.1322113221132213,46.32329729767196],[-1.1790117901178974,46.32667445221173],[-1.2150121501214812,46.31147725678278],[-1.2114121141211456,46.279394288655],[-1.2402124021240013,46.28446002046465],[-1.2582125821258217,46.2996572158936],[-1.2762127621276136,46.31992014313218],[-1.2942129421294055,46.32329729767196],[-1.3050130501304977,46.32329729767196],[-1.3338133381333819,46.33680591583101],[-1.3554135541355379,46.35031453399009],[-1.3698136981369657,46.353691688529835],[-1.42381423814237,46.34187164764066],[-1.44901449014489,46.34356022491056],[-1.4598145981459822,46.36551172941901],[-1.467014670146682,46.389151811197394],[-1.4814148141481382,46.407726161166096],[-1.5030150301502943,46.41954620205527],[-1.5318153181531784,46.42292335659505],[-1.6002160021600105,46.424611933864924],[-1.6254162541625305,46.43136624294445],[-1.6182161821618024,46.443186283833626],[-1.6326163261632587,46.4550063247228],[-1.686616866168663,46.460072056532454],[-1.7190171901718827,46.48202356104093],[-1.7478174781747668,46.487089292850584],[-1.7622176221762231,46.492155024660235],[-1.7694176941769229,46.500597911009635],[-1.780217802178015,46.522549415518114],[-1.7874178741787432,46.532680879137416],[-1.7874178741787432,46.52086083824824],[-1.7838178381783791,46.50397506554941],[-1.780217802178015,46.495532179199984],[-1.7874178741787432,46.49046644739033],[-1.794617946179443,46.49384360193011],[-1.8054180541805351,46.50397506554941],[-1.8270182701826911,46.576583888154374],[-1.823418234182327,46.595158238123076],[-1.8378183781837834,46.598535392662825],[-1.845018450184483,46.610355433552],[-1.8522185221852112,46.62386405171108],[-1.8558185581855753,46.63568409260026],[-1.8738187381873672,46.647504133489434],[-1.8882188821888235,46.655947019838834],[-1.8990189901898873,46.666078483458136],[-1.9098190981909795,46.69140714250639],[-1.9242192421924074,46.69985002885579],[-1.9386193861938636,46.70322718339557],[-1.9566195661956556,46.70491576066544],[-1.9638196381963837,46.709981492475094],[-1.9962199621996035,46.75219592422215],[-2.0502205022050077,46.79272177869936],[-2.082620826208256,46.807918974128285],[-2.107821078210776,46.812984705937936],[-2.1186211862118682,46.81973901501746],[-2.125821258212568,46.834936210446415],[-2.129421294212932,46.85519913768502],[-2.133021330213296,46.87208491038385],[-2.129421294212932,46.8940364148923],[-2.122221222212204,46.9041678785116],[-2.097020970209684,46.91598791940078],[-2.100621006210048,46.93118511482973],[-2.08622086220862,46.94131657844903],[-2.0502205022050077,46.95820235114786],[-2.03582035820358,46.973399546576786],[-2.0214202142021236,47.008859669244345],[-2.0070200702006957,47.02574544194317],[-1.9890198901989038,47.035876905562446],[-1.9926199261992679,47.052762678261274],[-2.0034200342003317,47.0696484509601],[-2.014220142201424,47.08146849184928],[-2.0286202862028517,47.09159995546858],[-2.089820898208984,47.115240037246934],[-2.2050220502204922,47.128748655406014],[-2.2410224102241045,47.142257273565065],[-2.2266222662226482,47.14901158264459],[-2.2158221582215845,47.155765891724116],[-2.2050220502204922,47.16083162353377],[-2.172621726217244,47.164208778073544],[-2.1654216542165443,47.16758593261329],[-2.1618216182161802,47.17602881896272],[-2.158221582215816,47.191226014391674],[-2.158221582215816,47.204734632550725],[-2.1690216902169084,47.21993182797968],[-2.172621726217244,47.235129023408604],[-2.172621726217244,47.24694906429778],[-2.1654216542165443,47.258769105186985],[-2.1618216182161802,47.27058914607616],[-2.151021510215088,47.27903203242556],[-2.129421294212932,47.28747491877499],[-2.03582035820358,47.29254065058461],[-2.0286202862028517,47.297606382394264],[-2.0214202142021236,47.29929495966417],[-2.014220142201424,47.29929495966417],[-2.0070200702006957,47.29254065058461],[-1.9998199981999676,47.289163496044864],[-1.9494194941949274,47.27903203242556],[-1.9314193141931355,47.27903203242556],[-1.9386193861938636,47.28578634150509],[-1.9278192781927714,47.28578634150509],[-1.9170191701917076,47.28409776423521],[-1.9062190621906154,47.280720609695436],[-1.8990189901898873,47.27396630061591],[-1.9206192061920433,47.27396630061591],[-1.9206192061920433,47.26552341426651],[-1.8774187741877313,47.245260487027906],[-1.8378183781837834,47.240194755218255],[-1.8270182701826911,47.235129023408604],[-1.8054180541805351,47.218243250709776],[-1.780217802178015,47.21148894163025],[-1.7262172621726108,47.21148894163025],[-1.7478174781747668,47.21993182797968],[-1.7874178741787432,47.22499755978933],[-1.8054180541805351,47.235129023408604],[-1.8342183421834193,47.26045768245686],[-1.8702187021870031,47.27903203242556],[-1.9062190621906154,47.294229227854515],[-1.9242192421924074,47.29929495966417],[-1.9494194941949274,47.29929495966417],[-1.9566195661956556,47.302672114203915],[-1.9710197101970834,47.31280357782322],[-2.01062010620106,47.31955788690274],[-2.147421474214724,47.31280357782322],[-2.179821798217972,47.29929495966417],[-2.1870218702187003,47.29254065058461],[-2.1906219062190644,47.28578634150509],[-2.1942219422194285,47.280720609695436],[-2.2050220502204922,47.27396630061591],[-2.2374223742237405,47.267211991536385],[-2.2590225902258965,47.25201479610743],[-2.2770227702276884,47.24694906429778],[-2.2986229862298444,47.24694906429778],[-2.3166231662316648,47.25201479610743],[-2.3310233102330926,47.26045768245686],[-2.3562235622356127,47.280720609695436],[-2.370623706237069,47.28578634150509],[-2.388623886238861,47.28747491877499],[-2.395823958239589,47.28747491877499],[-2.406624066240653,47.28578634150509],[-2.413824138241381,47.28240918696534],[-2.417424174241745,47.275654877885785],[-2.417424174241745,47.26890056880626],[-2.417424174241745,47.26552341426651],[-2.449824498244965,47.267211991536385],[-2.5434254342543454,47.29929495966417],[-2.5434254342543454,47.307737846013566],[-2.5182251822518253,47.30436069147382],[-2.475024750247485,47.29085207331474],[-2.453424534245329,47.29254065058461],[-2.435424354243537,47.307737846013566],[-2.446224462244629,47.31955788690274],[-2.464224642246421,47.33306650506182],[-2.482224822248213,47.34826370049075],[-2.489424894248941,47.344886545951],[-2.4930249302493053,47.343197968681096],[-2.4930249302493053,47.34150939141122],[-2.489424894248941,47.3347550823317],[-2.489424894248941,47.329689350522045],[-2.4930249302493053,47.32124646417262],[-2.500225002250005,47.32124646417262],[-2.503825038250369,47.34995227776065],[-2.5146251462514613,47.365149473189575],[-2.5578255782557733,47.38372382315828],[-2.475024750247485,47.41580679128606],[-2.467824678246785,47.41580679128606],[-2.457024570245693,47.41242963674631],[-2.439024390243901,47.41074105947641],[-2.442624426244265,47.40398675039688],[-2.446224462244629,47.40229817312701],[-2.439024390243901,47.39554386404748],[-2.428224282242809,47.40398675039688],[-2.395823958239589,47.41749536855593],[-2.392223922239225,47.42424967763549],[-2.406624066240653,47.42593825490536],[-2.431824318243173,47.42593825490536],[-2.449824498244965,47.43100398671501],[-2.439024390243901,47.44451260487406],[-2.457024570245693,47.45295549122349],[-2.475024750247485,47.45295549122349],[-2.489424894248941,47.45970980030302],[-2.482224822248213,47.47828415027172],[-2.4930249302493053,47.49179276843077],[-2.482224822248213,47.498547077510324],[-2.421024210242109,47.5002356547802],[-2.385023850238497,47.50698996385972],[-2.363423634236341,47.50698996385972],[-2.3814238142381328,47.5086785411296],[-2.406624066240653,47.50530138658985],[-2.4246242462424448,47.50698996385972],[-2.500225002250005,47.52725289109833],[-2.5182251822518253,47.5289414683682],[-2.529025290252889,47.52725289109833],[-2.5614256142561374,47.5204985820188],[-2.6010260102600853,47.5204985820188],[-2.6082260822608134,47.517121427479026],[-2.6154261542615416,47.51374427293925],[-2.6226262262622697,47.51374427293925],[-2.6334263342633335,47.5204985820188],[-2.6154261542615416,47.52218715928868],[-2.6010260102600853,47.5289414683682],[-2.5830258302582934,47.54076150925738],[-2.575825758257565,47.55427012741643],[-2.5938259382593856,47.544138663797156],[-2.6082260822608134,47.54245008652725],[-2.6226262262622697,47.54245008652725],[-2.6370263702636976,47.54076150925738],[-2.6298262982629694,47.539072931987505],[-2.6226262262622697,47.53738435471763],[-2.6190261902619056,47.534007200177854],[-2.6190261902619056,47.52725289109833],[-2.6442264422644257,47.52725289109833],[-2.6550265502654895,47.5289414683682],[-2.6658266582665817,47.534007200177854],[-2.6658266582665817,47.5103671183995],[-2.6802268022680096,47.503612809319975],[-2.712627126271258,47.512055695669375],[-2.7306273062730497,47.512055695669375],[-2.78102781027809,47.5002356547802],[-2.802628026280246,47.498547077510324],[-2.817028170281702,47.498547077510324],[-2.83142831428313,47.503612809319975],[-2.8422284222842222,47.512055695669375],[-2.8458284582845863,47.51543285020915],[-2.860228602286014,47.53569577744773],[-2.8638286382863782,47.53738435471763],[-2.8674286742867423,47.54245008652725],[-2.878228782287806,47.54582724106703],[-2.8890288902888983,47.54582724106703],[-2.8926289262892624,47.547515818336905],[-2.8926289262892624,47.54920439560681],[-2.8926289262892624,47.55427012741643],[-2.9106291062910543,47.55764728195621],[-2.8926289262892624,47.566090168305635],[-2.8638286382863782,47.566090168305635],[-2.8494284942849504,47.54582724106703],[-2.8422284222842222,47.54582724106703],[-2.838628386283858,47.552581550146556],[-2.83142831428313,47.55427012741643],[-2.8242282422824303,47.552581550146556],[-2.817028170281702,47.54582724106703],[-2.817028170281702,47.552581550146556],[-2.809828098280974,47.56777874557551],[-2.795427954279546,47.55595870468633],[-2.770227702277026,47.54920439560681],[-2.741427414274142,47.55089297287668],[-2.719827198271986,47.561024436495984],[-2.7270272702726857,47.56777874557551],[-2.6874268742687377,47.604927445512914],[-2.6838268382683736,47.623501795481644],[-2.7054270542705297,47.642076145450346],[-2.7054270542705297,47.637010413640695],[-2.69822698226983,47.63025610456117],[-2.694626946269466,47.623501795481644],[-2.7018270182701656,47.61843606367199],[-2.712627126271258,47.61674748640209],[-2.69822698226983,47.609993177322565],[-2.7054270542705297,47.604927445512914],[-2.7090270902708937,47.601550290973165],[-2.719827198271986,47.601550290973165],[-2.7270272702726857,47.606616022782816],[-2.77382773827739,47.628567527291295],[-2.75582755827557,47.62687895002139],[-2.734227342273414,47.62181321821174],[-2.745027450274506,47.63363325910092],[-2.759427594275934,47.63869899091057],[-2.788227882278818,47.642076145450346],[-2.77382773827739,47.637010413640695],[-2.795427954279546,47.63025610456117],[-2.8494284942849504,47.62687895002139],[-2.85662856628565,47.61843606367199],[-2.8674286742867423,47.606616022782816],[-2.8854288542885342,47.601550290973165],[-2.9178291782917825,47.59479598189364],[-2.9178291782917825,47.601550290973165],[-2.9142291422914184,47.601550290973165],[-2.9142291422914184,47.609993177322565],[-2.9250292502925106,47.60830460005269],[-2.9286292862928462,47.606616022782816],[-2.9322293222932103,47.601550290973165],[-2.9394293942939385,47.601550290973165],[-2.9430294302943025,47.61337033186234],[-2.9430294302943025,47.623501795481644],[-2.9430294302943025,47.631944681831044],[-2.9322293222932103,47.637010413640695],[-2.9466294662946666,47.637010413640695],[-2.9574295742957304,47.642076145450346],[-2.9646296462964585,47.65220760906965],[-2.9682296822968226,47.664027649958825],[-2.9754297542975507,47.664027649958825],[-2.9718297182971867,47.6555847636094],[-2.9682296822968226,47.64376472272022],[-2.9682296822968226,47.637010413640695],[-2.9682296822968226,47.61337033186234],[-2.9646296462964585,47.60323886824304],[-2.9538295382953663,47.59141882735386],[-2.9430294302943025,47.58128736373456],[-2.9322293222932103,47.574533054655035],[-2.9358293582935744,47.56777874557551],[-2.9358293582935744,47.56440159103573],[-2.9394293942939385,47.561024436495984],[-2.9430294302943025,47.56440159103573],[-2.9538295382953663,47.574533054655035],[-2.9610296102960945,47.57115590011526],[-2.9718297182971867,47.57622163192491],[-2.9826298262982505,47.588041672814086],[-2.9934299342993427,47.59479598189364],[-2.9898298982989786,47.58297594100446],[-2.9934299342993427,47.57622163192491],[-3.0042300423004065,47.57791020919481],[-3.0078300783007705,47.59141882735386],[-3.0114301143011346,47.606616022782816],[-3.0186301863018628,47.604927445512914],[-3.022230222302227,47.59479598189364],[-3.0150301503014987,47.58128736373456],[-3.0294302943029265,47.58128736373456],[-3.0366303663036547,47.58297594100446],[-3.043830438304383,47.588041672814086],[-3.072630726307267,47.57622163192491],[-3.090630906309059,47.57622163192491],[-3.1050310503104868,47.58128736373456],[-3.097830978309787,47.58466451827434],[-3.090630906309059,47.588041672814086],[-3.1014310143101227,47.59479598189364],[-3.112231122311215,47.59986171370326],[-3.123031230312307,47.59817313643339],[-3.130231302313007,47.588041672814086],[-3.1266312663126428,47.58635309554421],[-3.123031230312307,47.58297594100446],[-3.119431194311943,47.58128736373456],[-3.130231302313007,47.547515818336905],[-3.123031230312307,47.5188100047489],[-3.1050310503104868,47.49516992297055],[-3.0834308343083308,47.47828415027172],[-3.097830978309787,47.47828415027172],[-3.119431194311943,47.48334988208137],[-3.1266312663126428,47.47828415027172],[-3.130231302313007,47.47828415027172],[-3.144631446314463,47.50698996385972],[-3.144631446314463,47.51543285020915],[-3.144631446314463,47.52725289109833],[-3.133831338313371,47.544138663797156],[-3.130231302313007,47.55764728195621],[-3.133831338313371,47.58128736373456],[-3.141031410314099,47.59817313643339],[-3.151831518315163,47.61168175459247],[-3.166231662316619,47.62181321821174],[-3.177031770317683,47.62687895002139],[-3.187831878318775,47.63025610456117],[-3.1950319503195033,47.63363325910092],[-3.202232022320203,47.64038756818047],[-3.1986319863198673,47.65220760906965],[-3.187831878318775,47.68091342265765],[-3.112231122311215,47.70455350443601],[-3.115831158311579,47.70961923624566],[-3.115831158311579,47.71468496805531],[-3.119431194311943,47.721439277134834],[-3.119431194311943,47.73157074075414],[-3.123031230312307,47.729882163484234],[-3.133831338313371,47.726505008944486],[-3.137431374313735,47.72481643167458],[-3.141031410314099,47.74507935891319],[-3.137431374313735,47.75183366799271],[-3.144631446314463,47.75183366799271],[-3.151831518315163,47.74170220437341],[-3.162631626316255,47.74339078164331],[-3.177031770317683,47.748456513452965],[-3.191431914319139,47.74676793618306],[-3.180631806318047,47.74339078164331],[-3.169831698316983,47.734947895293885],[-3.162631626316255,47.72481643167458],[-3.159031590315891,47.71130781351553],[-3.162631626316255,47.70961923624566],[-3.166231662316619,47.70961923624566],[-3.166231662316619,47.707930658975755],[-3.166231662316619,47.70455350443601],[-3.177031770317683,47.70961923624566],[-3.184231842318411,47.70624208170588],[-3.191431914319139,47.699487772626355],[-3.205832058320567,47.69779919535648],[-3.202232022320203,47.694422040816704],[-3.191431914319139,47.6842905771974],[-3.205832058320567,47.67922484538775],[-3.213032130321295,47.66909338176848],[-3.2166321663216593,47.66065049541905],[-3.2238322383223874,47.6555847636094],[-3.231032310323087,47.66065049541905],[-3.2634326343263353,47.6842905771974],[-3.2886328863288554,47.68935630900705],[-3.3318333183331674,47.69611061808658],[-3.3570335703356875,47.69779919535648],[-3.3390333903338956,47.70286492716613],[-3.3210332103321036,47.70117634989623],[-3.2814328143281273,47.691044886276956],[-3.2814328143281273,47.69779919535648],[-3.2994329943299476,47.70455350443601],[-3.3174331743317396,47.707930658975755],[-3.3570335703356875,47.71130781351553],[-3.3570335703356875,47.71806212259506],[-3.349833498334988,47.71975069986496],[-3.3462334623346237,47.721439277134834],[-3.3426334263342596,47.726505008944486],[-3.3426334263342596,47.734947895293885],[-3.3390333903338956,47.74001362710354],[-3.3246332463324677,47.73832504983366],[-3.3174331743317396,47.73832504983366],[-3.3030330303302833,47.761965131612016],[-3.2958329583295836,47.77378517250119],[-3.2814328143281273,47.78053948158072],[-3.2814328143281273,47.78729379066024],[-3.3030330303302833,47.770408017961415],[-3.3318333183331674,47.75183366799271],[-3.3606336063360516,47.74001362710354],[-3.3822338223382076,47.73663647256379],[-3.375033750337508,47.73325931802401],[-3.3678336783367797,47.729882163484234],[-3.3642336423364156,47.72481643167458],[-3.3642336423364156,47.71806212259506],[-3.447034470344704,47.70455350443601],[-3.461434614346132,47.707930658975755],[-3.465034650346496,47.712996390785406],[-3.49383493834938,47.73832504983366],[-3.508235082350808,47.75858797707224],[-3.5190351903519,47.76871944069154],[-3.5262352623526283,47.77209659523132],[-3.529835298352964,47.78053948158072],[-3.540635406354056,47.77378517250119],[-3.555035550355484,47.77378517250119],[-3.5910359103590963,47.78053948158072],[-3.6162361623616164,47.77885090431084],[-3.6234362343623445,47.78053948158072],[-3.6342363423634083,47.78222805885062],[-3.6450364503645005,47.792359522469894],[-3.6486364863648646,47.7940480997398],[-3.6882368823688125,47.792359522469894],[-3.7062370623706045,47.797425254279545],[-3.7134371343713326,47.810933872438625],[-3.724237242372425,47.8126224497085],[-3.774637746377465,47.7940480997398],[-3.789037890378893,47.8024909860892],[-3.810638106381049,47.8024909860892],[-3.832238322383205,47.79911383154945],[-3.850238502385025,47.80080240881932],[-3.8538385383853893,47.80417956335907],[-3.871838718387181,47.82781964513745],[-3.8790387903879093,47.832885376947075],[-3.886238862388609,47.83795110875673],[-3.889838898388973,47.84301684056638],[-3.886238862388609,47.854836881455554],[-3.893438934389337,47.854836881455554],[-3.9006390063900653,47.85652545872546],[-3.911439114391129,47.86327976780498],[-3.915039150391493,47.873411231424285],[-3.936639366393649,47.88860842685321],[-3.9618396183961693,47.90042846774239],[-3.9870398703986893,47.903805622282164],[-3.9798397983979896,47.88354269504356],[-3.9870398703986893,47.868345499614634],[-4.008640086400845,47.851459726915806],[-4.03024030240303,47.854836881455554],[-4.019440194401938,47.854836881455554],[-4.012240122401209,47.85652545872546],[-4.00504005040051,47.859902613265206],[-4.001440014400146,47.87003407688451],[-4.0158401584015735,47.86665692234473],[-4.023040230402302,47.86665692234473],[-4.03024030240303,47.86327976780498],[-4.0374403744037295,47.854836881455554],[-4.066240662406614,47.87003407688451],[-4.077040770407706,47.87509980869416],[-4.095040950409498,47.87509980869416],[-4.10584105841059,47.88016554050381],[-4.120241202412018,47.89198558139299],[-4.127441274412746,47.90718277682194],[-4.13104131041311,47.92406854952077],[-4.141841418414174,47.91224850863156],[-4.13824138241381,47.89705131320264],[-4.123841238412382,47.88354269504356],[-4.109441094410926,47.87509980869416],[-4.109441094410926,47.87003407688451],[-4.123841238412382,47.868345499614634],[-4.134641346413446,47.86665692234473],[-4.141841418414174,47.86159119053511],[-4.152641526415266,47.854836881455554],[-4.170641706417058,47.87678838596403],[-4.185041850418486,47.87509980869416],[-4.18864188641885,47.86159119053511],[-4.174241742417422,47.854836881455554],[-4.177841778417786,47.851459726915806],[-4.18144181441815,47.84808257237603],[-4.18144181441815,47.841328263296504],[-4.152641526415266,47.841328263296504],[-4.152641526415266,47.83457395421698],[-4.185041850418486,47.8126224497085],[-4.199441994419942,47.80755671789885],[-4.224642246422462,47.8024909860892],[-4.372243722437219,47.80755671789885],[-4.372243722437219,47.81431102697837],[-4.372243722437219,47.82950822240733],[-4.372243722437219,47.83457395421698],[-4.3650436504364905,47.83626253148685],[-4.357843578435791,47.83626253148685],[-4.3470434704346985,47.83795110875673],[-4.3434434344343344,47.84470541783628],[-4.3470434704346985,47.86327976780498],[-4.361443614436126,47.88860842685321],[-4.372243722437219,47.91562566317134],[-4.3866438664386465,47.93420001314004],[-4.433444334443351,47.976414444887126],[-4.523445234452339,48.02200603117396],[-4.534245342453431,48.02707176298361],[-4.545045450454495,48.020317453904056],[-4.559445594455951,48.01018599028478],[-4.570245702457015,48.00512025847513],[-4.602646026460263,48.02538318571371],[-4.620646206462055,48.02707176298361],[-4.6530465304653035,48.02707176298361],[-4.728647286472864,48.04058038114266],[-4.721447214472136,48.04395753568244],[-4.7178471784717715,48.05071184476196],[-4.710647106471072,48.055777576571614],[-4.707047070470708,48.064220462921014],[-4.707047070470708,48.06759761746079],[-4.703447034470344,48.07097477200054],[-4.6998469984699796,48.07435192654032],[-4.6962469624696155,48.07435192654032],[-4.689046890468887,48.069286194730665],[-4.685446854468552,48.06759761746079],[-4.361443614436126,48.1148777810175],[-4.3038430384303865,48.104746317398195],[-4.28944289442893,48.10812347193797],[-4.285842858428566,48.1148777810175],[-4.275042750427502,48.1435835946055],[-4.278642786427866,48.15540363549468],[-4.293042930429294,48.167223676383855],[-4.296642966429658,48.17397798546338],[-4.3038430384303865,48.19592948997186],[-4.31464314643145,48.20606095359116],[-4.357843578435791,48.211126685400814],[-4.3650436504364905,48.21450383994059],[-4.372243722437219,48.21956957175021],[-4.375843758437583,48.22632388082977],[-4.379443794437947,48.23307818990929],[-4.404644046440467,48.22632388082977],[-4.458644586445871,48.248275385338246],[-4.483844838448391,48.243209653528595],[-4.498244982449819,48.224635303559864],[-4.512645126451247,48.202683799051414],[-4.530645306453067,48.18242087181281],[-4.555845558455587,48.17735514000316],[-4.548645486454859,48.19761806724176],[-4.545045450454495,48.20437237632129],[-4.555845558455587,48.216192417210465],[-4.559445594455951,48.224635303559864],[-4.563045630456287,48.23307818990929],[-4.559445594455951,48.24489823079847],[-4.552245522455223,48.248275385338246],[-4.548645486454859,48.25334111714787],[-4.555845558455587,48.26347258076717],[-4.566645666456651,48.265161158037046],[-4.627846278462783,48.26684973530695],[-4.624246242462419,48.27698119892625],[-4.627846278462783,48.287112662545525],[-4.617046170461691,48.2904898170853],[-4.606246062460627,48.2904898170853],[-4.599045990459899,48.28880123981543],[-4.588245882458807,48.287112662545525],[-4.573845738457379,48.2904898170853],[-4.573845738457379,48.29724412616483],[-4.573845738457379,48.30399843524435],[-4.577445774457743,48.30737558978413],[-4.559445594455951,48.33945855791191],[-4.545045450454495,48.346212866991436],[-4.530645306453067,48.341147135181785],[-4.541445414454131,48.30399843524435],[-4.516245162451611,48.29555554889495],[-4.426244262442623,48.300621280704604],[-4.415444154441531,48.29724412616483],[-4.408244082440831,48.292178394355176],[-4.401044010440103,48.28880123981543],[-4.3902439024390105,48.287112662545525],[-4.375843758437583,48.287112662545525],[-4.329043290432907,48.29724412616483],[-4.26424264242641,48.300621280704604],[-4.267842678426774,48.29555554889495],[-4.275042750427502,48.29386697162508],[-4.28944289442893,48.29386697162508],[-4.267842678426774,48.28880123981543],[-4.18864188641885,48.300621280704604],[-4.18864188641885,48.30737558978413],[-4.217442174421734,48.305687012514255],[-4.23184231842319,48.309064167054004],[-4.235442354423526,48.32088420794318],[-4.242642426424254,48.314129898863655],[-4.25704257042571,48.310752744323906],[-4.271442714427138,48.314129898863655],[-4.275042750427502,48.32426136248296],[-4.2822428224282305,48.32426136248296],[-4.3254432544325425,48.32088420794318],[-4.31464314643145,48.33101567156248],[-4.311043110431086,48.33270424883236],[-4.3038430384303865,48.336081403372134],[-4.3038430384303865,48.33945855791191],[-4.300243002430022,48.344524289721534],[-4.28944289442893,48.34790144426131],[-4.267842678426774,48.363098639690264],[-4.285842858428566,48.363098639690264],[-4.307443074430751,48.35127859880109],[-4.3254432544325425,48.34790144426131],[-4.3254432544325425,48.354655753340836],[-4.318243182431814,48.354655753340836],[-4.318243182431814,48.363098639690264],[-4.3254432544325425,48.363098639690264],[-4.329043290432907,48.35803290788061],[-4.332643326433271,48.35296717607096],[-4.336243362433606,48.34790144426131],[-4.354243542435427,48.35296717607096],[-4.383043830438311,48.33776998064201],[-4.408244082440831,48.336081403372134],[-4.404644046440467,48.33945855791191],[-4.401044010440103,48.33945855791191],[-4.397443974439739,48.341147135181785],[-4.408244082440831,48.34790144426131],[-4.415444154441531,48.34283571245166],[-4.426244262442623,48.33945855791191],[-4.440644406444051,48.336081403372134],[-4.455044550445507,48.336081403372134],[-4.455044550445507,48.341147135181785],[-4.397443974439739,48.38842729873849],[-4.3866438664386465,48.39349303054814],[-4.28944289442893,48.43233030775545],[-4.307443074430751,48.4272645759458],[-4.33984339843397,48.41544453505662],[-4.357843578435791,48.41037880324697],[-4.426244262442623,48.403624494167445],[-4.458644586445871,48.39518160781802],[-4.519845198451975,48.368164371499915],[-4.570245702457015,48.35972148515049],[-4.599045990459899,48.349590021531185],[-4.620646206462055,48.34790144426131],[-4.6350463504635115,48.35127859880109],[-4.671046710467095,48.36141006242036],[-4.689046890468887,48.363098639690264],[-4.692646926469251,48.35972148515049],[-4.692646926469251,48.35296717607096],[-4.6962469624696155,48.344524289721534],[-4.703447034470344,48.341147135181785],[-4.753847538475384,48.341147135181785],[-4.768247682476812,48.346212866991436],[-4.77544775447754,48.35634433061074],[-4.782647826478268,48.376607257849315],[-4.764647646476448,48.37829583511919],[-4.764647646476448,48.390115876008366],[-4.782647826478268,48.417133112326496],[-4.786247862478632,48.4357074622952],[-4.779047790477904,48.45428181226393],[-4.768247682476812,48.469479007692854],[-4.75024750247502,48.47285616223263],[-4.75024750247502,48.47961047131216],[-4.77544775447754,48.49143051220133],[-4.764647646476448,48.52013632578934],[-4.7394473944739275,48.550530716647245],[-4.721447214472136,48.56741648934607],[-4.710647106471072,48.564039334806296],[-4.6998469984699796,48.56066218026652],[-4.707047070470708,48.56741648934607],[-4.692646926469251,48.57585937569547],[-4.6746467464674595,48.57923653023525],[-4.642246422464211,48.582613684775],[-4.624246242462419,48.57754795296535],[-4.588245882458807,48.56572791207617],[-4.577445774457743,48.56741648934607],[-4.599045990459899,48.58936799385455],[-4.606246062460627,48.6028766120136],[-4.595445954459535,48.60963092109313],[-4.548645486454859,48.60118803474373],[-4.530645306453067,48.60118803474373],[-4.555845558455587,48.60963092109313],[-4.555845558455587,48.613008075632905],[-4.552245522455223,48.616385230172654],[-4.555845558455587,48.61976238471243],[-4.563045630456287,48.62313953925218],[-4.563045630456287,48.62989384833173],[-4.483844838448391,48.62989384833173],[-4.462244622446207,48.63158242560161],[-4.429844298442987,48.643402466490784],[-4.408244082440831,48.643402466490784],[-4.419044190441895,48.648468198300435],[-4.426244262442623,48.65015677557031],[-4.426244262442623,48.656911084649835],[-4.397443974439739,48.66028823918961],[-4.3686436864368545,48.67210828007879],[-4.3434434344343344,48.678862589158314],[-4.318243182431814,48.678862589158314],[-4.300243002430022,48.66366539372939],[-4.307443074430751,48.64171388922091],[-4.2822428224282305,48.643402466490784],[-4.253442534425346,48.65522250737996],[-4.242642426424254,48.656911084649835],[-4.228242282422826,48.65522250737996],[-4.20664206642067,48.65015677557031],[-4.192241922419214,48.65015677557031],[-4.192241922419214,48.656911084649835],[-4.21384213842137,48.661976816459486],[-4.20664206642067,48.67210828007879],[-4.192241922419214,48.68223974369809],[-4.174241742417422,48.69068263004749],[-4.15624156241563,48.69574836185714],[-4.13104131041311,48.69912551639692],[-4.109441094410926,48.697436939127044],[-4.091440914409134,48.69068263004749],[-4.084240842408406,48.697436939127044],[-4.08064080640807,48.697436939127044],[-4.073440734407342,48.69237120731739],[-4.069840698406978,48.68561689823784],[-4.06264062640625,48.68561689823784],[-4.0590405904058855,48.688994052777616],[-4.051840518405186,48.69574836185714],[-4.051840518405186,48.70250267093667],[-4.05544055440555,48.71263413455597],[-4.041040410404094,48.714322711825844],[-4.03024030240303,48.71769986636562],[-4.008640086400845,48.72614275271505],[-3.9726397263972615,48.732897061794574],[-3.9690396903968974,48.7295199072548],[-3.9690396903968974,48.719388443635495],[-3.9726397263972615,48.71263413455597],[-3.9726397263972615,48.70756840274632],[-3.9618396183961693,48.70419124820657],[-3.9618396183961693,48.69912551639692],[-3.9690396903968974,48.69912551639692],[-3.9690396903968974,48.69068263004749],[-3.958239582395805,48.68730547550774],[-3.9510395103951055,48.678862589158314],[-3.9510395103951055,48.66873112553901],[-3.9546395463954696,48.656911084649835],[-3.9258392583925854,48.675485434618565],[-3.911439114391129,48.68055116642822],[-3.893438934389337,48.678862589158314],[-3.9006390063900653,48.67210828007879],[-3.907839078390765,48.670419702808914],[-3.907839078390765,48.66366539372939],[-3.893438934389337,48.653533930110086],[-3.864638646386453,48.64171388922091],[-3.850238502385025,48.62989384833173],[-3.843038430384297,48.63664815741126],[-3.850238502385025,48.643402466490784],[-3.843038430384297,48.65015677557031],[-3.850238502385025,48.656911084649835],[-3.8538385383853893,48.66535397099926],[-3.857438574385725,48.68561689823784],[-3.850238502385025,48.68561689823784],[-3.850238502385025,48.678862589158314],[-3.846638466384661,48.675485434618565],[-3.835838358383569,48.670419702808914],[-3.839438394383933,48.68730547550774],[-3.835838358383569,48.70756840274632],[-3.828638286382869,48.71769986636562],[-3.817838178381777,48.71263413455597],[-3.814238142381413,48.716011289095746],[-3.810638106381049,48.7210770209054],[-3.810638106381049,48.72614275271505],[-3.810638106381049,48.732897061794574],[-3.796237962379621,48.7210770209054],[-3.778237782377829,48.71769986636562],[-3.7314373143731245,48.719388443635495],[-3.7206372063720607,48.716011289095746],[-3.6990369903699047,48.70250267093667],[-3.6882368823688125,48.69912551639692],[-3.6738367383673847,48.697436939127044],[-3.6378363783637724,48.70419124820657],[-3.6378363783637724,48.68730547550774],[-3.6126361263612523,48.68223974369809],[-3.583835838358368,48.68223974369809],[-3.5694356943569403,48.68730547550774],[-3.580235802358004,48.710945557286095],[-3.583835838358368,48.72614275271505],[-3.580235802358004,48.732897061794574],[-3.529835298352964,48.7396513708741],[-3.5442354423544202,48.746405679953625],[-3.5766357663576684,48.773422916271755],[-3.580235802358004,48.79030868897058],[-3.5730357303573044,48.79875157531998],[-3.5442354423544202,48.80719446166941],[-3.5226352263522642,48.83421169798754],[-3.515435154351536,48.84265458433694],[-3.508235082350808,48.84265458433694],[-3.5010350103501082,48.83758885252729],[-3.46863468634686,48.835900275257416],[-3.4326343263432477,48.822391657098336],[-3.41823418234182,48.82070307982846],[-3.425434254342548,48.81901450255859],[-3.4290342903428837,48.81563734801881],[-3.4290342903428837,48.81226019347906],[-3.4326343263432477,48.80719446166941],[-3.4110341103410917,48.80719446166941],[-3.396633966339664,48.80719446166941],[-3.3894338943389357,48.81057161620916],[-3.3786337863378435,48.81901450255859],[-3.371433714337144,48.822391657098336],[-3.2886328863288554,48.84265458433694],[-3.2742327423274276,48.84940889341647],[-3.2706327063270635,48.84940889341647],[-3.2598325983259713,48.84772031614659],[-3.231032310323087,48.87304897519482],[-3.213032130321295,48.86967182065507],[-3.205832058320567,48.85616320249599],[-3.209432094320931,48.835900275257416],[-3.2166321663216593,48.81732592528871],[-3.227432274322723,48.80719446166941],[-3.227432274322723,48.803817307129634],[-3.2238322383223874,48.800440152589886],[-3.2202322023220233,48.79368584351033],[-3.2166321663216593,48.80719446166941],[-3.209432094320931,48.81563734801881],[-3.177031770317683,48.84096600706707],[-3.155431554315527,48.85447462522612],[-3.144631446314463,48.862917511575546],[-3.133831338313371,48.85954035703577],[-3.115831158311579,48.87473755246472],[-3.1050310503104868,48.8764261297346],[-3.090630906309059,48.871360397924946],[-3.0834308343083308,48.862917511575546],[-3.0834308343083308,48.85109747068637],[-3.090630906309059,48.84265458433694],[-3.090630906309059,48.835900275257416],[-3.0762307623076026,48.82745738890799],[-3.0834308343083308,48.82070307982846],[-3.097830978309787,48.79368584351033],[-3.1050310503104868,48.786931534430806],[-3.1266312663126428,48.76666860719223],[-3.1266312663126428,48.759914298112705],[-3.119431194311943,48.759914298112705],[-3.0834308343083308,48.80550588439954],[-3.065430654306539,48.82408023436824],[-3.047430474304747,48.82070307982846],[-3.0402304023040188,48.82745738890799],[-3.0294302943029265,48.82914596617789],[-3.0186301863018628,48.82745738890799],[-3.0078300783007705,48.82070307982846],[-3.0150301503014987,48.81394877074894],[-3.0114301143011346,48.81394877074894],[-3.0078300783007705,48.81394877074894],[-3.0078300783007705,48.81226019347906],[-3.0078300783007705,48.80719446166941],[-3.0186301863018628,48.80550588439954],[-3.025830258302591,48.80212872985976],[-3.043830438304383,48.79368584351033],[-3.043830438304383,48.78862011170071],[-3.0294302943029265,48.78017722535128],[-3.0042300423004065,48.773422916271755],[-2.9538295382953663,48.77173433900188],[-2.9322293222932103,48.76666860719223],[-2.9358293582935744,48.759914298112705],[-2.9358293582935744,48.75315998903315],[-2.9322293222932103,48.746405679953625],[-2.9430294302943025,48.741339948143974],[-2.9466294662946666,48.7396513708741],[-2.9466294662946666,48.732897061794574],[-2.9322293222932103,48.72614275271505],[-2.9142291422914184,48.716011289095746],[-2.8998289982899905,48.70419124820657],[-2.8926289262892624,48.69405978458727],[-2.827828278282766,48.656911084649835],[-2.817028170281702,48.62820527106183],[-2.813428134281338,48.61976238471243],[-2.809828098280974,48.61469665290278],[-2.813428134281338,48.60963092109313],[-2.817028170281702,48.60456518928348],[-2.813428134281338,48.59781088020395],[-2.80622806228061,48.59612230293408],[-2.795427954279546,48.591056571124426],[-2.770227702277026,48.57923653023525],[-2.712627126271258,48.56066218026652],[-2.716227162271622,48.55221929391712],[-2.719827198271986,48.545464984837594],[-2.7270272702726857,48.53871067575807],[-2.734227342273414,48.53364494394842],[-2.72342723427235,48.53364494394842],[-2.712627126271258,48.53026778940864],[-2.7054270542705297,48.523513480329115],[-2.694626946269466,48.51675917124959],[-2.6838268382683736,48.50831628490016],[-2.6802268022680096,48.51844774851946],[-2.6802268022680096,48.531956366678514],[-2.6766267662676455,48.54039925302794],[-2.6370263702636976,48.53871067575807],[-2.6190261902619056,48.54377640756769],[-2.6010260102600853,48.55728502572677],[-2.575825758257565,48.582613684775],[-2.5686256862568655,48.58936799385455],[-2.5578255782557733,48.594433725664175],[-2.5398253982539813,48.59781088020395],[-2.475024750247485,48.626516693791956],[-2.460624606246057,48.63664815741126],[-2.460624606246057,48.643402466490784],[-2.467824678246785,48.643402466490784],[-2.485824858248577,48.65015677557031],[-2.442624426244265,48.65859966191974],[-2.421024210242109,48.656911084649835],[-2.413824138241381,48.643402466490784],[-2.385023850238497,48.65015677557031],[-2.3562235622356127,48.66366539372939],[-2.3310233102330926,48.68055116642822],[-2.3166231662316648,48.69912551639692],[-2.3130231302313007,48.68730547550774],[-2.3058230582305725,48.678862589158314],[-2.2950229502295088,48.67717401188844],[-2.2806228062280525,48.678862589158314],[-2.2806228062280525,48.670419702808914],[-2.2878228782287806,48.66704254826914],[-2.2950229502295088,48.661976816459486],[-2.2986229862298444,48.65522250737996],[-2.3022230222302085,48.65015677557031],[-2.3310233102330926,48.62989384833173],[-2.3130231302313007,48.61976238471243],[-2.2950229502295088,48.62820527106183],[-2.2734227342273243,48.643402466490784],[-2.2518225182251683,48.65015677557031],[-2.2446224462244686,48.64509104376066],[-2.2410224102241045,48.621450961982305],[-2.2374223742237405,48.616385230172654],[-2.2266222662226482,48.613008075632905],[-2.2194221942219485,48.6028766120136],[-2.2158221582215845,48.5927451483943],[-2.2122221222212204,48.582613684775],[-2.201422014220128,48.585990839314775],[-2.1942219422194285,48.5927451483943],[-2.1906219062190644,48.60456518928348],[-2.1942219422194285,48.616385230172654],[-2.1870218702187003,48.60118803474373],[-2.1834218342183362,48.58936799385455],[-2.172621726217244,48.582613684775],[-2.158221582215816,48.58936799385455],[-2.158221582215816,48.59612230293408],[-2.1618216182161802,48.59612230293408],[-2.172621726217244,48.60118803474373],[-2.1618216182161802,48.613008075632905],[-2.151021510215088,48.618073807442556],[-2.13662136621366,48.618073807442556],[-2.125821258212568,48.60963092109313],[-2.133021330213296,48.61469665290278],[-2.13662136621366,48.621450961982305],[-2.1438214382143883,48.63664815741126],[-2.100621006210048,48.64677962103056],[-2.053820538205372,48.65015677557031],[-2.0502205022050077,48.64509104376066],[-2.0286202862028517,48.61976238471243],[-2.0286202862028517,48.60963092109313],[-2.0214202142021236,48.599499457473826],[-2.014220142201424,48.591056571124426],[-1.9998199981999676,48.58936799385455],[-2.0034200342003317,48.57923653023525],[-2.0070200702006957,48.57585937569547],[-1.9818198181981757,48.54884213937734],[-1.9746197461974475,48.53533352121829],[-1.9818198181981757,48.51338201670981],[-1.9710197101970834,48.52013632578934],[-1.9386193861938636,48.53364494394842],[-1.9674196741967478,48.54715356210747],[-1.9602196021960197,48.555596448456896],[-1.9782197821978116,48.572482221155724],[-1.9818198181981757,48.58936799385455],[-1.9746197461974475,48.58936799385455],[-1.9710197101970834,48.5843022620449],[-1.9638196381963837,48.580925107505124],[-1.9530195301952915,48.57585937569547],[-1.9602196021960197,48.585990839314775],[-1.9710197101970834,48.5927451483943],[-1.9782197821978116,48.594433725664175],[-1.9926199261992679,48.59612230293408],[-1.9998199981999676,48.60118803474373],[-2.017820178201788,48.63158242560161],[-2.0286202862028517,48.643402466490784],[-2.0250202502024877,48.65184535284018],[-2.017820178201788,48.66028823918961],[-2.0070200702006957,48.66704254826914],[-1.9926199261992679,48.670419702808914],[-1.9890198901989038,48.67379685734866],[-1.9890198901989038,48.68055116642822],[-1.9854198541985397,48.68730547550774],[-1.9782197821978116,48.69068263004749],[-1.9386193861938636,48.69068263004749],[-1.9458194581945634,48.69912551639692],[-1.845018450184483,48.71263413455597],[-1.845018450184483,48.70756840274632],[-1.8486184861848471,48.70419124820657],[-1.845018450184483,48.697436939127044],[-1.8378183781837834,48.69068263004749],[-1.8594185941859394,48.66366539372939],[-1.8594185941859394,48.64002531195101],[-1.8378183781837834,48.62313953925218],[-1.794617946179443,48.616385230172654],[-1.7226172261722468,48.61469665290278],[-1.6434164341643225,48.62313953925218],[-1.5966159661596464,48.64171388922091],[-1.5894158941589467,48.64171388922091],[-1.5786157861578545,48.643402466490784],[-1.4994149941499302,48.63664815741126],[-1.3914139141391217,48.65184535284018],[-1.3554135541355379,48.643402466490784],[-1.3734137341373298,48.66028823918961],[-1.3950139501394858,48.66873112553901],[-1.4346143461434622,48.670419702808914],[-1.4346143461434622,48.66873112553901],[-1.4382143821438262,48.66366539372939],[-1.441814418144162,48.66366539372939],[-1.445414454144526,48.66704254826914],[-1.445414454144526,48.67379685734866],[-1.44901449014489,48.678862589158314],[-1.4562145621456182,48.683928320967965],[-1.4886148861488664,48.69068263004749],[-1.5030150301502943,48.69574836185714],[-1.5066150661506583,48.70081409366679],[-1.5174151741517221,48.724454175445146],[-1.5534155341553344,48.746405679953625],[-1.5606156061560625,48.77004576173198],[-1.5642156421564266,48.79875157531998],[-1.5678156781567623,48.822391657098336],[-1.5786157861578545,48.83758885252729],[-1.6038160381603745,48.84265458433694],[-1.6038160381603745,48.84940889341647],[-1.5894158941589467,48.85278604795624],[-1.5786157861578545,48.862917511575546],[-1.5714157141571263,48.87473755246472],[-1.5642156421564266,48.92201771602143],[-1.5570155701556985,48.93214917964073],[-1.5498154981549703,48.9237062932913],[-1.5426154261542422,48.93552633418048],[-1.5426154261542422,48.94396922052991],[-1.5462154621546063,48.94903495233956],[-1.5606156061560625,48.95241210687931],[-1.5642156421564266,48.95747783868896],[-1.5534155341553344,49.01488946586497],[-1.5462154621546063,49.03008666129392],[-1.5318153181531784,49.03515239310357],[-1.5066150661506583,49.026709506754145],[-1.5066150661506583,49.0334638158337],[-1.5282152821528143,49.040218124913224],[-1.5498154981549703,49.040218124913224],[-1.5678156781567623,49.0334638158337],[-1.5750157501574904,49.01657804313487],[-1.5786157861578545,49.013200888595094],[-1.5858158581585826,49.018266620404745],[-1.5930159301592823,49.02839808402405],[-1.5966159661596464,49.03684097037345],[-1.5966159661596464,49.0604810521518],[-1.5930159301592823,49.07230109304098],[-1.5894158941589467,49.08243255666028],[-1.6038160381603745,49.08412113393018],[-1.6074160741607386,49.09087544300971],[-1.6074160741607386,49.102695483898884],[-1.6038160381603745,49.116204102057935],[-1.5966159661596464,49.12802414294711],[-1.5894158941589467,49.13477845202664],[-1.5678156781567623,49.143221338376065],[-1.5822158221582185,49.14997564745559],[-1.5858158581585826,49.14828707018572],[-1.5894158941589467,49.143221338376065],[-1.5966159661596464,49.16010711107489],[-1.6038160381603745,49.178681461043595],[-1.6074160741607386,49.1972558110123],[-1.6110161101611027,49.21583016098103],[-1.6038160381603745,49.2259616246003],[-1.5858158581585826,49.2259616246003],[-1.5498154981549703,49.21920731552078],[-1.5498154981549703,49.2259616246003],[-1.5678156781567623,49.22933877914008],[-1.5966159661596464,49.23778166548951],[-1.6182161821618024,49.23778166548951],[-1.6254162541625305,49.21920731552078],[-1.6398163981639868,49.23102735640995],[-1.6578165781657788,49.268176056347386],[-1.6722167221672066,49.27999609723656],[-1.665016650166507,49.285061829046214],[-1.6614166141661428,49.28675040631609],[-1.6578165781657788,49.28675040631609],[-1.686616866168663,49.30194760174504],[-1.6974169741697267,49.31376764263422],[-1.708217082170819,49.32896483806317],[-1.686616866168663,49.32896483806317],[-1.686616866168663,49.3357191471427],[-1.6974169741697267,49.355982074381274],[-1.708217082170819,49.355982074381274],[-1.715417154171547,49.339096301682446],[-1.733417334173339,49.345850610762],[-1.755017550175495,49.36273638346083],[-1.776617766177651,49.36949069254035],[-1.773017730177287,49.37624500161988],[-1.7694176941769229,49.37962215615963],[-1.7694176941769229,49.382999310699404],[-1.780217802178015,49.38131073342953],[-1.794617946179443,49.37793357888975],[-1.8054180541805351,49.37624500161988],[-1.8162181621816273,49.382999310699404],[-1.819818198181963,49.396507928858455],[-1.8162181621816273,49.43027947425611],[-1.8162181621816273,49.445476669685064],[-1.819818198181963,49.45223097876459],[-1.823418234182327,49.458985287844115],[-1.8378183781837834,49.47587106054294],[-1.8378183781837834,49.480936792352594],[-1.8414184141841474,49.486002524162245],[-1.845018450184483,49.49275683324177],[-1.8522185221852112,49.50457687413095],[-1.8810188101880954,49.52483980136955],[-1.8846188461884594,49.53159411044908],[-1.8774187741877313,49.54510272860816],[-1.8486184861848471,49.561988501306985],[-1.845018450184483,49.57211996492626],[-1.8378183781837834,49.602514355784166],[-1.8378183781837834,49.619400128482994],[-1.8486184861848471,49.63459732391192],[-1.8558185581855753,49.64472878753122],[-1.8594185941859394,49.654860251150524],[-1.8702187021870031,49.66161456023005],[-1.9026190261902514,49.6666802920397],[-1.9458194581945634,49.67850033292888],[-1.9386193861938636,49.70214041470723],[-1.9386193861938636,49.71564903286631],[-1.9350193501934996,49.72409191921571],[-1.9098190981909795,49.725780496485584],[-1.8990189901898873,49.72409191921571],[-1.8774187741877313,49.71564903286631],[-1.8666186661866675,49.71227187832653],[-1.8378183781837834,49.71564903286631],[-1.8306183061830552,49.71227187832653],[-1.823418234182327,49.708894723786756],[-1.819818198181963,49.69707468289758],[-1.8162181621816273,49.69200895108793],[-1.8126181261812633,49.690320373818054],[-1.801818018180171,49.69200895108793],[-1.794617946179443,49.69200895108793],[-1.773017730177287,49.686943219278305],[-1.708217082170819,49.68018891019875],[-1.6326163261632587,49.66330313749992],[-1.6182161821618024,49.664991714769826],[-1.6182161821618024,49.66161456023005],[-1.6146161461614668,49.6565488284204],[-1.6146161461614668,49.65148309661075],[-1.6074160741607386,49.64979451934087],[-1.5966159661596464,49.65148309661075],[-1.5822158221582185,49.66161456023005],[-1.5714157141571263,49.664991714769826],[-1.5606156061560625,49.66330313749992],[-1.5390153901539065,49.65823740569027],[-1.5282152821528143,49.65823740569027],[-1.5102151021510224,49.66330313749992],[-1.495814958149566,49.67174602384935],[-1.470614706147046,49.695386105627705],[-1.4562145621456182,49.70214041470723],[-1.409414094140942,49.71227187832653],[-1.3914139141391217,49.71227187832653],[-1.2726127261272495,49.69876326016748],[-1.2618126181261857,49.695386105627705],[-1.2582125821258217,49.68863179654818],[-1.2546125461254576,49.67174602384935],[-1.2330123301233016,49.64135163299147],[-1.2294122941229375,49.624465860292645],[-1.2546125461254576,49.61264581940344],[-1.2582125821258217,49.602514355784166],[-1.2582125821258217,49.59407146943474],[-1.2654126541265214,49.58900573762509],[-1.2870128701287058,49.58900573762509],[-1.2942129421294055,49.58731716035521],[-1.3014130141301337,49.58225142854556],[-1.3050130501304977,49.55861134676721],[-1.2942129421294055,49.5383484195286],[-1.2762127621276136,49.521462646829775],[-1.2618126181261857,49.49275683324177],[-1.1862118621186255,49.43027947425611],[-1.1754117541175333,49.415082278827185],[-1.1718117181171692,49.393130774318706],[-1.1754117541175333,49.382999310699404],[-1.1790117901178974,49.374556424350004],[-1.1826118261182614,49.36949069254035],[-1.1862118621186255,49.366113538000576],[-1.1826118261182614,49.355982074381274],[-1.1754117541175333,49.357670651651176],[-1.164611646116441,49.361047806190925],[-1.1502115021150132,49.36273638346083],[-1.139411394113921,49.355982074381274],[-1.1322113221132213,49.34922776530175],[-1.121411214112129,49.345850610762],[-1.1034110341103371,49.34922776530175],[-1.1034110341103371,49.355982074381274],[-1.114211142111401,49.366113538000576],[-1.1070110701107012,49.37962215615963],[-1.0890108901088809,49.39144219704883],[-1.071010710107089,49.396507928858455],[-0.9414094140941245,49.39144219704883],[-0.8226082260822523,49.36273638346083],[-0.6498064980649758,49.355982074381274],[-0.6066060660606638,49.347539188031874],[-0.5850058500585078,49.345850610762],[-0.5454054540545314,49.35935922892105],[-0.5238052380523754,49.355982074381274],[-0.48060480604806344,49.34247345622222],[-0.41220412204120294,49.34247345622222],[-0.394203942039411,49.33740772441257],[-0.3618036180361628,49.325587683523395],[-0.31140311403112264,49.31714479717397],[-0.2178021780217705,49.27999609723656],[-0.1926019260192504,49.295193292665516],[-0.03420034200340183,49.320521951713744],[-0.0018000180001820354,49.330653415333046],[0.012600126001274248,49.334030569872795],[0.04140041400415839,49.35091634257162],[0.0630006300063144,49.3542934971114],[0.07020070200701412,49.35935922892105],[0.09540095400953419,49.382999310699404],[0.1638016380163947,49.415082278827185],[0.286202862028631,49.43365662879589],[0.41220412204123136,49.45223097876459],[0.45900459004590743,49.46742817419354],[0.47700477004769937,49.47924821508272],[0.49140491404915565,49.49275683324177],[0.42300423004229515,49.464051019653766],[0.3402034020340352,49.45729671057424],[0.25740257402574684,49.464051019653766],[0.1854018540185507,49.47924821508272],[0.1638016380163947,49.47924821508272],[0.14580145801457434,49.480936792352594],[0.12420124201241833,49.486002524162245],[0.1062010620106264,49.49275683324177],[0.09540095400953419,49.50288829686107],[0.09180091800919854,49.5096426059406],[0.07740077400774226,49.51470833775025],[0.07380073800737819,49.52483980136955],[0.07740077400774226,49.534971264988855],[0.08100081000810633,49.54172557406838],[0.13140131401314648,49.60420293305404],[0.1710017100170944,49.69200895108793],[0.1854018540185507,49.70382899197713],[0.23580235802359084,49.72915765102536],[0.24660246602465463,49.72915765102536],[0.25740257402574684,49.735911960104886],[0.3870038700387113,49.77474923731219],[0.3978039780397751,49.784880700931495],[0.5238052380523754,49.8321608644882],[0.5562055620556237,49.84060375083763],[0.5958059580596,49.85748952353646],[0.6750067500674959,49.87606387350516],[0.7614076140761483,49.87437529623526],[1.1718117181171976,49.9604927369993],[1.1970119701197177,49.97400135515835],[1.2222122221222378,49.979067086968],[1.2618126181261857,50.007772900556006],[1.3914139141391502,50.07531599135132],[1.4454144541445544,50.11753042309837],[1.4562145621456182,50.1242847321779],[1.4634146341463463,50.132727618527326],[1.4886148861488664,50.185073513893684],[1.5210152101521146,50.21546790475156],[1.5570155701556985,50.217156482021466],[1.6542165421654147,50.18676209116356],[1.665016650166507,50.18676209116356],[1.672216722167235,50.19182782297321],[1.672216722167235,50.19858213205276],[1.6614166141661428,50.19858213205276],[1.6542165421654147,50.20027070932264],[1.650616506165079,50.20533644113229],[1.643416434164351,50.212090750211814],[1.665016650166507,50.212090750211814],[1.665016650166507,50.220533636561214],[1.647016470164715,50.220533636561214],[1.625416254162559,50.22391079110099],[1.6110161101611027,50.23235367745039],[1.6038160381603745,50.244173718339596],[1.5930159301593108,50.25599375922877],[1.5498154981549987,50.26950237738782],[1.5426154261542706,50.27794526373722],[1.5426154261542706,50.310028231865004],[1.5498154981549987,50.34886550907231],[1.5714157141571548,50.37588274539044],[1.5966159661596748,50.372505590850665],[1.6110161101611027,50.37081701358079],[1.6110161101611027,50.377571322660316],[1.5534155341553344,50.404588558978446],[1.5534155341553344,50.41134286805797],[1.5750157501575188,50.44511441345563],[1.5750157501575188,50.492394577012334],[1.5786157861578545,50.532920431489515],[1.6110161101611027,50.54811762691847],[1.5822158221582185,50.5751348632366],[1.5786157861578545,50.58864348139565],[1.5750157501575188,50.635923644952356],[1.5642156421564266,50.67813807669944],[1.5642156421564266,50.69840100393802],[1.5678156781567907,50.71697535390675],[1.5894158941589467,50.755812631114054],[1.600216002160039,50.77100982654298],[1.6074160741607386,50.78958417651168],[1.600216002160039,50.81322425829006],[1.5822158221582185,50.85037295822747],[1.5822158221582185,50.86388157638655],[1.5822158221582185,50.86894730819617],[1.6038160381603745,50.880767349085346],[1.6146161461614668,50.88414450362512],[1.6326163261632587,50.88414450362512],[1.6542165421654147,50.889210235434774],[1.668616686166871,50.89934169905408],[1.6974169741697551,50.92635893537221],[1.729817298172975,50.943244708071006],[1.9206192061920717,50.99727918070727],[1.9386193861938636,50.99390202616749],[1.974619746197476,51.00741064432657],[2.133021330213296,51.019230685215746],[2.305823058230601,51.054690807883276],[2.3166231662316648,51.05975653969293],[2.323823238232393,51.05975653969293],[2.385023850238497,51.054690807883276],[2.467824678246785,51.06819942604233],[2.5074250742507616,51.08001946693153],[2.5218252182521894,51.08677377601106],[2.5434254342543454,51.09690523963033],[2.5794257942579577,51.10534812597976],[2.716227162271622,51.169514062235294],[2.9250292502925106,51.24718861664991],[3.126631266312671,51.329928902874144],[3.349833498334988,51.37552048916098],[3.5118351183512004,51.40760345728876],[3.5262352623526283,51.416046343638186],[3.540635406354056,51.416046343638186],[3.6054360543605526,51.39071768458993],[3.702637026370269,51.3738319118911],[3.735037350373517,51.3552575619224],[3.756637566375673,51.35019183011275],[3.796237962379621,51.35019183011275],[3.8322383223832333,51.34343752103322],[3.8574385743857533,51.3451260983031],[3.9546395463954696,51.37214333462123],[3.9690396903968974,51.38227479824053],[3.9762397623976256,51.40084914820923],[3.9834398343983537,51.410980611828535],[4.00504005040051,51.40929203455863],[4.03024030240303,51.40422630274901],[4.044640446404458,51.39916057093936],[4.051840518405186,51.392406261859804],[4.062640626406278,51.37720906643088],[4.069840698406978,51.370454757351354],[4.08064080640807,51.36876618008145],[4.10584105841059,51.3653890255417],[4.116641166411682,51.36032329373205],[4.120241202412018,51.35863471646218],[4.15624156241563,51.356946139192274],[4.174241742417422,51.3738319118911],[4.18144181441815,51.37720906643088],[4.199441994419942,51.37552048916098],[4.221042210422098,51.36876618008145],[4.221042210422098,51.36707760281158],[4.242642426424283,51.356946139192274],[4.249842498424982,51.34681467557297],[4.25704257042571,51.32824032560427],[4.271442714427138,51.31642028471509],[4.289442894428959,51.30628882109579],[4.3038430384303865,51.29615735747652],[4.307443074430751,51.28940304839696],[4.307443074430751,51.28433731658731],[4.3038430384303865,51.27589443023791],[4.300243002430022,51.26914012115839],[4.296642966429658,51.267451543888484],[4.307443074430751,51.27082869842826],[4.314643146431479,51.277583007507786],[4.329043290432907,51.29615735747652],[4.296642966429658,51.30460024382592],[4.289442894428959,51.30966597563557],[4.285842858428595,51.31810886198497],[4.285842858428595,51.34006036649345],[4.2822428224282305,51.35019183011275],[4.275042750427502,51.35863471646218],[4.2606426064260745,51.36876618008145],[4.25704257042571,51.37214333462123],[4.249842498424982,51.383963375510405],[4.246242462424618,51.39578341639958],[4.246242462424618,51.405914880018884],[4.246242462424618,51.41435776636828],[4.235442354423554,51.419423498177935],[4.224642246422462,51.40929203455863],[4.199441994419942,51.405914880018884],[4.109441094410954,51.40760345728876],[4.091440914409162,51.410980611828535],[4.069840698406978,51.419423498177935],[4.015840158401602,51.44812931176594],[3.9978399783997816,51.45319504357559],[3.9582395823958336,51.45657219811537],[3.9438394383943773,51.44981788903584],[3.9150391503915216,51.416046343638186],[3.9006390063900653,51.40422630274901],[3.8862388623886375,51.39916057093936],[3.850238502385025,51.397471993669456],[3.8394383943839614,51.392406261859804],[3.828638286382869,51.39071768458993],[3.817838178381777,51.39409483912971],[3.7890378903789212,51.41266918909841],[3.727837278372789,51.43124353906711],[3.688236882368841,51.454883620845465],[3.6738367383673847,51.454883620845465],[3.6342363423634367,51.446440734496065],[3.6090360903609167,51.44475215722619],[3.5550355503555124,51.45319504357559],[3.5370353703537205,51.459949352655116],[3.5190351903519,51.473457970814195],[3.5082350823508364,51.48865516624312],[3.49383493834938,51.5004752071323],[3.4614346143461603,51.51904955710103],[3.450634506345068,51.52918102072033],[3.447034470344704,51.54606679341913],[3.457834578345796,51.55450967976856],[3.5586355863558765,51.59503553424574],[3.828638286382869,51.611921306944566],[3.850238502385025,51.61023272967469],[3.8646386463864815,51.60516699786504],[3.8826388263882734,51.59672411151561],[3.8970389703897013,51.58321549335656],[3.9042390423904294,51.56970687519751],[3.8970389703897013,51.566329720657734],[3.8790387903879093,51.55957541157821],[3.871838718387181,51.55619825703843],[3.871838718387181,51.549443947958906],[3.9690396903968974,51.54268963887938],[4.015840158401602,51.530869597990204],[4.05544055440555,51.508918093481725],[4.069840698406978,51.4920323207829],[4.091440914409162,51.45826077538524],[4.10584105841059,51.446440734496065],[4.127441274412746,51.441375002686414],[4.18144181441815,51.446440734496065],[4.199441994419942,51.43968642541654],[4.221042210422098,51.44306357995629],[4.253442534425346,51.44306357995629],[4.264242642426439,51.44475215722619],[4.2822428224282305,51.44812931176594],[4.296642966429658,51.47008081627442],[4.289442894428959,51.4920323207829],[4.267842678426803,51.508918093481725],[4.2390423904239185,51.51904955710103],[4.23184231842319,51.51904955710103],[4.195841958419578,51.52411528891068],[4.152641526415266,51.53424675252995],[4.138241382413838,51.535935329799855],[4.10584105841059,51.53424675252995],[4.091440914409162,51.53424675252995],[4.066240662406642,51.544378216149255],[3.9870398703987178,51.58996980243609],[4.041040410404122,51.606855575134915],[4.066240662406642,51.61023272967469],[4.15624156241563,51.60854415240479],[4.185041850418514,51.60347842059517],[4.20664206642067,51.58996980243609],[4.203042030420306,51.60854415240479],[4.188641886418878,51.61698703875422],[4.185041850418514,51.61698703875422],[4.145441454414538,51.61867561602409],[4.134641346413474,51.620364193293995],[4.127441274412746,51.62542992510362],[4.116641166411682,51.63049565691327],[4.113041130411318,51.6389385432627],[4.109441094410954,51.65075858415187],[4.109441094410954,51.66257862504105],[4.113041130411318,51.67102151139045],[4.127441274412746,51.67946439773988],[4.141841418414202,51.68453012954953],[4.177841778417786,51.6862187068194],[4.167041670416722,51.69297301589893],[4.141841418414202,51.70310447951823],[4.069840698406978,51.71661309767728],[4.05544055440555,51.73012171583636],[4.051840518405186,51.76389326123402],[4.033840338403394,51.78415618847259],[4.008640086400874,51.79766480663167],[3.9798397983979896,51.80948484752085],[3.9618396183961977,51.80104196117142],[3.9366393663936776,51.79597622936177],[3.9114391143911575,51.79597622936177],[3.893438934389337,51.79259907482202],[3.8898388983890015,51.789221920282245],[3.8826388263882734,51.78753334301237],[3.871838718387181,51.78753334301237],[3.8610386103861174,51.816239156600375],[3.8898388983890015,51.82805919748955],[3.9546395463954696,51.83987923837873],[3.9618396183961977,51.846633547458254],[3.9834398343983537,51.848322124728156],[4.015840158401602,51.843256392918505],[4.044640446404458,51.83481350656908],[4.048240482404822,51.8331249292992],[4.05544055440555,51.83481350656908],[4.066240662406642,51.83650208383898],[4.077040770407706,51.843256392918505],[4.069840698406978,51.85338785653781],[4.044640446404458,51.87533936104626],[4.037440374403758,51.878716515586035],[4.033840338403394,51.88209367012581],[4.03024030240303,51.88884797920534],[4.03024030240303,51.89560228828486],[4.037440374403758,51.90235659736439],[4.041040410404122,51.905733751904165],[4.044640446404458,51.909110906443914],[4.041040410404122,51.92430810187287],[4.019440194401938,51.963145379080174],[4.008640086400874,51.980031151779],[4.015840158401602,51.9884740381284],[4.023040230402302,51.99353976993805],[4.069840698406978,51.9884740381284],[4.109441094410954,51.99185119266818],[4.141841418414202,52.00535981082723],[4.285842858428595,52.11342875609972],[4.408244082440831,52.22318627864212],[4.509045090450911,52.33632095572423],[4.5702457024570435,52.44607847826663],[4.577445774457743,52.47309571458476],[4.577445774457743,52.48153860093416],[4.595445954459564,52.506867259982386],[4.638646386463876,52.70105364601892],[4.6566465664656675,52.7500223868455],[4.660246602466032,52.765219582274455],[4.671046710467124,52.797302550402236],[4.710647106471072,52.863157063927645],[4.721447214472164,52.895240032055426],[4.721447214472164,52.91381438202413],[4.7250472504725,52.939143041072356],[4.732247322473228,52.95940596831096],[4.746647466474684,52.96784885466039],[4.807848078480788,52.961094545580835],[4.81864818648188,52.96784885466039],[4.82584825848258,52.95940596831096],[4.807848078480788,52.92901157745308],[4.833048330483308,52.912125804754254],[4.872648726487284,52.903682918404826],[4.912249122491232,52.90537149567473],[4.937449374493752,52.91381438202413],[4.9770497704977,52.93576588653261],[4.998649986499885,52.94083161834226],[5.038250382503833,52.94420877288201],[5.077850778507781,52.95434023650131],[5.279452794527941,53.0624091817738],[5.2938529385293975,53.07422922266298],[5.3118531185311895,53.08267210901241],[5.3586535865358655,53.08942641809193],[5.3802538025380215,53.09786930444133],[5.398253982539842,53.121509386219714],[5.427054270542726,53.1907410542849],[5.448654486544882,53.22113544514278],[5.481054810548102,53.24477552692113],[5.502655026550286,53.25659556781031],[5.542255422554234,53.26672703142961],[5.556655566555662,53.27854707231879],[5.574655746557482,53.292055690477866],[5.592655926559274,53.30218715409714],[5.610656106561066,53.30725288590679],[5.661056610566106,53.31231861771644],[5.693456934569355,53.330892967685145],[5.855458554585539,53.36804166762258],[5.891458914589151,53.384927440321405],[5.913059130591307,53.384927440321405],[5.981459814598139,53.406878944829884],[6.078660786607884,53.40856752209976],[6.186661866618664,53.41025609936963],[6.273062730627316,53.411944676639536],[6.28386283862838,53.41025609936963],[6.3018630186302005,53.40181321302023],[6.312663126631264,53.398436058480456],[6.319863198631992,53.40012463575036],[6.3450634506345125,53.411944676639536],[6.492664926649269,53.43896191295764],[6.730267302673042,53.46091341746612],[6.827468274682758,53.450781953846814],[6.849068490684914,53.44571622203719],[6.867068670686706,53.433896181147986],[6.899468994689954,53.35115589492375],[6.906669066690682,53.35115589492375],[6.928269282692838,53.33933585403457],[6.931869318693202,53.3376472767647],[6.935469354693566,53.335958699494796],[6.942669426694266,53.330892967685145],[6.949869498694994,53.325827235875494],[6.978669786697878,53.31907292679597],[7.018270182701826,53.30556430863692],[7.036270362703647,53.308941463176694],[7.0470704707047105,53.30387573136704],[7.057870578705803,53.30218715409714],[7.0686706867068665,53.30387573136704],[7.079470794707959,53.308941463176694],[7.086670866708687,53.308941463176694],[7.086670866708687,53.30218715409714],[7.075870758707595,53.29880999955739],[7.072270722707231,53.295432845017615],[7.072270722707231,53.292055690477866],[7.079470794707959,53.28361280412844],[7.079470794707959,53.26672703142961],[7.111871118711207,53.25659556781031],[7.183871838718403,53.24477552692113],[7.194671946719467,53.24477552692113],[7.205472054720559,53.24815268146091],[7.216272162721623,53.254906990540434],[7.223472234722351,53.26334987688983],[7.234272342723443,53.273481340509136],[7.237872378723807,53.28530138139831],[7.230672306723079,53.29712142228749],[7.255872558725599,53.31907292679597],[7.266672666726663,53.32413865860562],[7.291872918729183,53.32413865860562],[7.3134731347313675,53.32076150406587],[7.345873458734587,53.30725288590679],[7.367473674736743,53.30218715409714],[7.342273422734223,53.32413865860562],[7.302673026730275,53.33258154495505],[7.075870758707595,53.3376472767647],[7.039870398703982,53.34777874038397],[7.02187021870219,53.37648455397198],[7.02187021870219,53.450781953846814],[7.0290702907029186,53.46766772654564],[7.0470704707047105,53.49806211740355],[7.050670506705075,53.513259312832474],[7.061470614706167,53.5217021991819],[7.079470794707959,53.5217021991819],[7.119071190711907,53.51663646737225],[7.126271262712635,53.52507935372168],[7.133471334713363,53.526767930991554],[7.140671406714063,53.536899394610856],[7.140671406714063,53.55040801276991],[7.129871298712999,53.55716232184943],[7.101071010710115,53.56560520819886],[7.0902709027090225,53.57404809454826],[7.086670866708687,53.58755671270734],[7.101071010710115,53.59768817632661],[7.133471334713363,53.61119679448569],[7.169471694716947,53.634836876264046],[7.187471874718767,53.643279762613446],[7.227072270722715,53.6669198443918],[7.306273062730639,53.68549419436053],[7.45747457474576,53.69562565797983],[7.468274682746824,53.69055992617018],[7.479074790747916,53.68211703982075],[7.504275042750436,53.678739885281004],[7.651876518765192,53.697314235249706],[7.950679506795069,53.722642894297934],[8.029880298802993,53.70744569886901],[8.029880298802993,53.700691389789455],[8.02628026280263,53.67198557620145],[8.05148051480515,53.63652545353392],[8.094680946809461,53.60444248540614],[8.12708127081271,53.59093386724709],[8.12708127081271,53.58417955816756],[8.119881198811981,53.572359517278386],[8.134281342813438,53.567293785468735],[8.155881558815594,53.56391663092896],[8.166681666816686,53.553785167309684],[8.166681666816686,53.53521081734095],[8.155881558815594,53.526767930991554],[8.134281342813438,53.51663646737225],[8.116281162811646,53.5115707355626],[8.07668076680767,53.50819358102285],[8.058680586805878,53.5014392719433],[8.07668076680767,53.469356303815545],[8.087480874808762,53.455847685656465],[8.098280982809825,53.447404799307066],[8.112681126811282,53.450781953846814],[8.123481234812346,53.45415910838659],[8.141481414814166,53.45415910838659],[8.15228152281523,53.44909337657694],[8.170281702817022,53.43727333568776],[8.17748177481775,53.433896181147986],[8.188281882818842,53.42883044933836],[8.195481954819542,53.420387562988935],[8.206282062820634,53.41025609936963],[8.220682206822062,53.406878944829884],[8.235082350823518,53.406878944829884],[8.249482494824946,53.40856752209976],[8.260282602826038,53.411944676639536],[8.271082710827102,53.41869898571906],[8.292682926829286,53.44065049022754],[8.314283142831442,53.474422035625196],[8.321483214832142,53.509882158292726],[8.292682926829286,53.5301450855313],[8.25308253082531,53.52339077645178],[8.231482314823154,53.52507935372168],[8.231482314823154,53.540276549150605],[8.242282422824246,53.55547374457956],[8.249482494824946,53.59093386724709],[8.256682566825674,53.60444248540614],[8.271082710827102,53.61288537175557],[8.289082890828922,53.616262526295344],[8.32868328683287,53.61795110356522],[8.346683466834662,53.61288537175557],[8.364683646836482,53.60106533086639],[8.375483754837546,53.58755671270734],[8.386283862838638,53.57742524908804],[8.42948429484295,53.56560520819886],[8.512285122851239,53.55547374457956],[8.551885518855187,53.54365370369038],[8.551885518855187,53.536899394610856],[8.526685266852667,53.52339077645178],[8.50508505085051,53.50819358102285],[8.490684906849083,53.48624207651437],[8.483484834848355,53.45753626292637],[8.483484834848355,53.40181321302023],[8.490684906849083,53.37648455397198],[8.50508505085051,53.357910204003275],[8.508685086850875,53.38323886305153],[8.497884978849783,53.44571622203719],[8.497884978849783,53.474422035625196],[8.512285122851239,53.496373540133646],[8.537485374853759,53.50650500375295],[8.55548555485555,53.518325044642125],[8.566285662856643,53.54703085823013],[8.559085590855915,53.55209659003978],[8.533885338853395,53.59093386724709],[8.526685266852667,53.59599959905674],[8.515885158851603,53.60950821721579],[8.508685086850875,53.624705412644744],[8.501485014850147,53.64496833988335],[8.487084870848719,53.6669198443918],[8.483484834848355,53.68380561709063],[8.487084870848719,53.700691389789455],[8.490684906849083,53.71588858521841],[8.53028530285303,53.76992305785467],[8.55548555485555,53.83071183957043],[8.573485734857343,53.85772907588856],[8.587885878858799,53.87123769404761],[8.605886058860591,53.88136915766691],[8.627486274862747,53.88981204401634],[8.652686526865267,53.89318919855609],[8.674286742867423,53.89150062128621],[8.685086850868515,53.888123466746435],[8.710287102871035,53.87123769404761],[8.746287462874648,53.85435192134878],[8.782287822878232,53.8425318804596],[8.861488614886156,53.83071183957043],[8.904689046890468,53.83240041684033],[8.976689766897664,53.8425318804596],[9.01629016290164,53.84084330318973],[9.034290342903432,53.85435192134878],[9.113491134911357,53.86448338496808],[9.19269192691928,53.86448338496808],[9.210692106921073,53.87123769404761],[9.225092250922529,53.866171962237985],[9.239492394923957,53.86448338496808],[9.27549275492757,53.86448338496808],[9.282692826928269,53.861106230428334],[9.304293042930425,53.844220457729506],[9.40149401494017,53.74290582153654],[9.441094410944117,53.714200007948534],[9.469894698947002,53.700691389789455],[9.48429484294843,53.69055992617018],[9.498694986949886,53.660165535312274],[9.567095670956718,53.599376753596516],[9.581495814958146,53.59093386724709],[9.599495994959966,53.58586813543744],[9.624696246962486,53.58417955816756],[9.63549635496355,53.580802403627786],[9.696696966969682,53.55716232184943],[9.765097650976514,53.54703085823013],[9.819098190981919,53.540276549150605],[9.833498334983346,53.54365370369038],[9.819098190981919,53.55716232184943],[9.783097830978306,53.56898236273861],[9.693096930969318,53.575736671818134],[9.657096570965706,53.58417955816756],[9.58509585095851,53.61288537175557],[9.549095490954926,53.634836876264046],[9.538295382953834,53.6669198443918],[9.53469534695347,53.69393708070993],[9.531095310953106,53.71082285340876],[9.523895238952406,53.71588858521841],[9.473494734947366,53.732774357917236],[9.45909459094591,53.73615151245701],[9.437494374943753,53.74797155334619],[9.412294122941233,53.77836594420407],[9.397893978939805,53.81044891233185],[9.394293942939441,53.83071183957043],[9.35829358293583,53.839154725919855],[9.297092970929725,53.87123769404761],[9.257492574925749,53.88474631220669],[9.221492214922165,53.89150062128621],[9.0918909189092,53.89318919855609],[9.055890558905588,53.90332066217539],[9.030690306903068,53.906697816715166],[9.019890198902004,53.90332066217539],[9.009090090900912,53.89318919855609],[8.983889838898392,53.896566353095864],[8.947889478894808,53.91345212579469],[8.91548915489156,53.937092207573045],[8.832688326883272,54.03671826649611],[8.872288722887248,54.04684973011541],[8.89028890288904,54.048538307385314],[8.91548915489156,54.04347257557566],[8.955089550895508,54.02827538014671],[8.976689766897664,54.02489822560693],[8.998289982899848,54.029963957416584],[9.005490054900548,54.04178399830576],[9.012690126901276,54.06035834827449],[9.019890198902004,54.08230985278297],[9.019890198902004,54.097507048211895],[9.005490054900548,54.1076385118312],[8.987489874898756,54.1177699754505],[8.973089730897328,54.1279014390698],[8.976689766897664,54.13972147995898],[8.976689766897664,54.146475789038504],[8.951489514895144,54.14985294357825],[8.919089190891924,54.146475789038504],[8.886688866888676,54.1363443254192],[8.868688686886884,54.124524284530025],[8.861488614886156,54.124524284530025],[8.832688326883272,54.15323009811803],[8.81468814688148,54.17518160262651],[8.811088110881116,54.18024733443616],[8.821888218882208,54.20051026167474],[8.836288362883636,54.217396034373564],[8.847088470884728,54.23428180707239],[8.839888398884,54.249479002501346],[8.839888398884,54.25623331158087],[8.850688506885064,54.26129904339052],[8.893888938889404,54.26805335247005],[8.911889118891196,54.26974192973992],[8.922689226892288,54.27480766154957],[8.937089370893716,54.28662770243875],[8.951489514895144,54.301824897867704],[8.962289622896236,54.31702209329666],[8.94068940689408,54.315333516026755],[8.901089010890104,54.29507058878818],[8.879488794887948,54.29000485697853],[8.883088830888312,54.293382011518304],[8.886688866888676,54.30013632059783],[8.886688866888676,54.30351347513758],[8.857888578885792,54.301824897867704],[8.803888038880388,54.2916934342484],[8.775087750877503,54.29000485697853],[8.73908739087392,54.293382011518304],[8.724687246872463,54.29000485697853],[8.68868688686888,54.271430507009825],[8.677886778867787,54.26974192973992],[8.652686526865267,54.27480766154957],[8.623886238862383,54.29000485697853],[8.602286022860227,54.311956361487006],[8.598685986859863,54.337285020535234],[8.61308613086132,54.34910506142441],[8.641886418864203,54.355859370503964],[8.670686706867087,54.35923652504371],[8.695886958869607,54.35923652504371],[8.695886958869607,54.36599083412324],[8.677886778867787,54.36767941139314],[8.66348663486636,54.37612229774254],[8.649086490864903,54.377810875012415],[8.634686346863475,54.36599083412324],[8.627486274862747,54.37612229774254],[8.627486274862747,54.38794233863172],[8.63828638286384,54.39807380225102],[8.649086490864903,54.40651668860045],[8.670686706867087,54.4014509567908],[8.749887498874983,54.41327099767997],[8.861488614886156,54.41327099767997],[8.886688866888676,54.418336729489624],[8.908289082890832,54.42509103856915],[8.947889478894808,54.44704254307763],[8.987489874898756,54.458862583966805],[9.005490054900548,54.46561689304633],[9.012690126901276,54.48250266574516],[9.012690126901276,54.50614274752351],[8.987489874898756,54.529782829301865],[8.904689046890468,54.58044014739835],[8.893888938889404,54.59057161101765],[8.886688866888676,54.60239165190683],[8.879488794887948,54.605768806446605],[8.857888578885792,54.605768806446605],[8.836288362883636,54.60239165190683],[8.825488254882544,54.59732592009718],[8.818288182881844,54.605768806446605],[8.854288542885428,54.619277424605656],[8.818288182881844,54.67331189724189],[8.803888038880388,54.68682051540097],[8.775087750877503,54.698640556290144],[8.721087210872128,54.725657792608274],[8.68868688686888,54.73578925622755],[8.68868688686888,54.7425435653071],[8.695886958869607,54.75942933800593],[8.681486814868151,54.78138084251438],[8.66348663486636,54.79995519248311],[8.649086490864903,54.81852954245181],[8.641886418864203,54.84385820150004],[8.645486454864567,54.86749828327842],[8.659886598865995,54.89620409686643],[8.667086670866723,54.913089869565255],[8.659886598865995,54.91984417864478],[8.674286742867423,54.948549992232785],[8.667086670866723,54.97387865128101],[8.649086490864903,54.997518733059366],[8.641886418864203,55.02284739210762],[8.645486454864567,55.0549303602354],[8.656286562865631,55.081947596553505],[8.670686706867087,55.10727625560176],[8.681486814868151,55.13260491464999],[8.577085770857707,55.144424955539165],[8.562685626856279,55.14273637826929],[8.559085590855915,55.13429349191989],[8.559085590855915,55.09714479198246],[8.551885518855187,55.09207906017281],[8.541085410854123,55.09039048290293],[8.53028530285303,55.081947596553505],[8.515885158851603,55.07012755566433],[8.497884978849783,55.06506182385468],[8.483484834848355,55.068438978394454],[8.469084690846927,55.078570442013756],[8.458284582845835,55.103899101061984],[8.461884618846199,55.12753918284034],[8.465484654846563,55.15117926461869],[8.469084690846927,55.17819650093682],[8.490684906849083,55.19677085090555],[8.53028530285303,55.2001480054453],[8.573485734857343,55.193393696365774],[8.595085950859527,55.1815736554766],[8.580685806858071,55.17819650093682],[8.569885698857007,55.17313076912717],[8.551885518855187,55.16131072823799],[8.55548555485555,55.149490687348816],[8.61308613086132,55.144424955539165],[8.670686706867087,55.13767064645964],[8.68868688686888,55.14104780099942],[8.68868688686888,55.16131072823799],[8.667086670866723,55.19508227363565],[8.656286562865631,55.23729670538273],[8.649086490864903,55.27951113712979],[8.649086490864903,55.291331178018964],[8.659886598865995,55.30652837344792],[8.659886598865995,55.31497125979732],[8.659886598865995,55.326791300686494],[8.649086490864903,55.35211995973475],[8.63828638286384,55.39771154602158],[8.631086310863111,55.41797447326016],[8.616686166861683,55.438237400498764],[8.591485914859163,55.45005744138794],[8.55548555485555,55.45512317319759],[8.490684906849083,55.45512317319759],[8.440284402844043,55.46356605954699],[8.400684006840066,55.48551756405547],[8.310683106831078,55.563192118470084],[8.310683106831078,55.56994642754961],[8.332283322833234,55.571635004819484],[8.332283322833234,55.57838931389904],[8.314283142831442,55.58345504570869],[8.289082890828922,55.58345504570869],[8.267482674826766,55.58007789116891],[8.249482494824946,55.571635004819484],[8.238682386823882,55.55812638666043],[8.242282422824246,55.54799492304113],[8.271082710827102,55.5311091503423],[8.263882638826402,55.52942057307243],[8.256682566825674,55.52604341853265],[8.242282422824246,55.51760053218325],[8.267482674826766,55.514223377643475],[8.292682926829286,55.5040919140242],[8.317883178831806,55.48889471859525],[8.325083250832506,55.47200894589642],[8.314283142831442,55.46863179135664],[8.191881918819206,55.52604341853265],[8.170281702817022,55.53448630488208],[8.109081090810918,55.53955203669173],[8.094680946809461,55.54968350031103],[8.094680946809461,55.563192118470084],[8.148681486814866,55.6493095592341],[8.170281702817022,55.688146836441405],[8.181081810818114,55.728672690918586],[8.184681846818478,55.76919854539577],[8.134281342813438,55.96676208597205],[8.130681306813074,55.97689354959135],[8.12708127081271,55.97858212686123],[8.12708127081271,55.98364785867088],[8.12708127081271,55.987025013210626],[8.130681306813074,55.9904021677504],[8.137881378813802,55.98871359048053],[8.137881378813802,55.98533643594075],[8.141481414814166,55.98364785867088],[8.145081450814502,55.981959281401004],[8.15228152281523,55.97689354959135],[8.173881738817386,55.90090757244661],[8.191881918819206,55.87389033612851],[8.195481954819542,55.862070295239334],[8.191881918819206,55.853627408889906],[8.184681846818478,55.840118790730855],[8.181081810818114,55.82829874984168],[8.184681846818478,55.8147901316826],[8.191881918819206,55.81141297714285],[8.238682386823882,55.826610172571776],[8.285482854828558,55.84687309981038],[8.307083070830714,55.85193883162003],[8.346683466834662,55.86882460431886],[8.386283862838638,55.89246468609721],[8.393483934839367,55.90935045879604],[8.386283862838638,55.92623623149487],[8.371883718837182,55.9431220041937],[8.357483574835754,55.95831919962262],[8.317883178831806,55.98533643594075],[8.317883178831806,56.017419404068534],[8.307083070830714,56.052879526736064],[8.281882818828194,56.07651960851442],[8.249482494824946,56.090028226673496],[8.170281702817022,56.11029115391207],[8.148681486814866,56.11197973118195],[8.141481414814166,56.10353684483255],[8.141481414814166,56.05963383581559],[8.141481414814166,56.03937090857701],[8.134281342813438,56.017419404068534],[8.137881378813802,56.000533631369706],[8.134281342813438,55.99377932229018],[8.119881198811981,55.99715647682993],[8.116281162811646,56.00222220863958],[8.112681126811282,56.01235367225888],[8.109081090810918,56.02417371314806],[8.10188101881019,56.09678253575302],[8.105481054810554,56.1187340402615],[8.130681306813074,56.18121139924716],[8.134281342813438,56.204851481025514],[8.123481234812346,56.55100982135147],[8.12708127081271,56.5678955940503],[8.134281342813438,56.586469944019],[8.17748177481775,56.672587384783014],[8.199081990819906,56.699604621101145],[8.213482134821362,56.71142466199032],[8.220682206822062,56.70973608472045],[8.224282242822426,56.699604621101145],[8.231482314823154,56.69622746656137],[8.231482314823154,56.68778458021197],[8.209882098820998,56.65570161208419],[8.20268202682027,56.64725872573479],[8.20268202682027,56.64050441665523],[8.209882098820998,56.637127262115484],[8.213482134821362,56.63543868484561],[8.231482314823154,56.63375010757571],[8.235082350823518,56.63037295303596],[8.242282422824246,56.62024148941666],[8.245882458824582,56.610110025797354],[8.25308253082531,56.60673287125758],[8.296282962829622,56.601667139447954],[8.307083070830714,56.59828998490818],[8.292682926829286,56.593224253098526],[8.296282962829622,56.583092789479224],[8.292682926829286,56.5678955940503],[8.299882998829986,56.557764130430996],[8.307083070830714,56.55438697589122],[8.314283142831442,56.55607555316112],[8.317883178831806,56.56282986224065],[8.310683106831078,56.57127274859005],[8.310683106831078,56.57802705766957],[8.343083430834326,56.58478136674913],[8.393483934839367,56.58478136674913],[8.436684366843679,56.579715634939475],[8.45468454684547,56.5678955940503],[8.465484654846563,56.566207016780396],[8.515885158851603,56.54425551227192],[8.53028530285303,56.547632666811694],[8.541085410854123,56.55607555316112],[8.551885518855187,56.5678955940503],[8.559085590855915,56.57802705766957],[8.566285662856643,56.57802705766957],[8.595085950859527,56.53243547138274],[8.595085950859527,56.52399258503334],[8.591485914859163,56.520615430493564],[8.595085950859527,56.51048396687429],[8.602286022860227,56.50035250325499],[8.616686166861683,56.49359819417546],[8.63828638286384,56.48008957601638],[8.649086490864903,56.47502384420673],[8.667086670866723,56.476712421476634],[8.728287282872827,56.48346673055616],[8.731887318873191,56.485155307826034],[8.73908739087392,56.490221039635685],[8.742687426874284,56.49697534871521],[8.742687426874284,56.50710681233451],[8.742687426874284,56.522304007763466],[8.746287462874648,56.530746894112866],[8.749887498874983,56.552698398621345],[8.753487534875347,56.557764130430996],[8.760687606876076,56.55945270770087],[8.76428764287644,56.56282986224065],[8.757087570875711,56.57127274859005],[8.728287282872827,56.586469944019],[8.717487174871764,56.586469944019],[8.710287102871035,56.588158521288875],[8.703087030870307,56.593224253098526],[8.703087030870307,56.601667139447954],[8.699486994869943,56.61179860306723],[8.681486814868151,56.61686433487688],[8.681486814868151,56.62699579849618],[8.695886958869607,56.63375010757571],[8.742687426874284,56.63543868484561],[8.803888038880388,56.69622746656137],[8.821888218882208,56.699604621101145],[8.861488614886156,56.708047507450544],[8.91548915489156,56.708047507450544],[8.919089190891924,56.71142466199032],[8.893888938889404,56.71649039379997],[8.850688506885064,56.71649039379997],[8.839888398884,56.721556125609624],[8.850688506885064,56.740130475578326],[8.86508865088652,56.75532767100728],[8.875888758887584,56.76377055735668],[8.908289082890832,56.77727917551573],[8.955089550895508,56.802607834563986],[8.973089730897328,56.80598498910376],[8.983889838898392,56.80429641183386],[9.001890018900184,56.79923068002421],[9.01629016290164,56.797542102754335],[9.027090270902704,56.79923068002421],[9.034290342903432,56.80429641183386],[9.037890378903796,56.80936214364351],[9.045090450904524,56.81273929818329],[9.063090630906316,56.81273929818329],[9.084690846908472,56.80767356637364],[9.106291062910628,56.80091925729411],[9.113491134911357,56.78741063913503],[9.120691206912085,56.76377055735668],[9.135091350913513,56.75026193919763],[9.149491494914969,56.740130475578326],[9.163891638916397,56.72999901195902],[9.174691746917489,56.708047507450544],[9.149491494914969,56.704670352910796],[9.11709117091172,56.67934169386254],[9.0918909189092,56.67427596205289],[9.0918909189092,56.66752165297336],[9.099090990909929,56.65907876662396],[9.088290882908836,56.64894730300466],[9.059490594905952,56.63375010757571],[9.048690486904889,56.62024148941666],[9.048690486904889,56.60673287125758],[9.052290522905224,56.574649903129824],[9.059490594905952,56.566207016780396],[9.077490774907744,56.5678955940503],[9.0918909189092,56.57802705766957],[9.106291062910628,56.610110025797354],[9.120691206912085,56.61348718033713],[9.138691386913877,56.61179860306723],[9.156691566915669,56.61348718033713],[9.149491494914969,56.62193006668653],[9.14229142291424,56.62530722122631],[9.131491314913148,56.62530722122631],[9.120691206912085,56.62024148941666],[9.127891278912784,56.63206153030583],[9.135091350913513,56.63881583938536],[9.14229142291424,56.64725872573479],[9.149491494914969,56.66076734389384],[9.156691566915669,56.66076734389384],[9.149491494914969,56.63881583938536],[9.174691746917489,56.63543868484561],[9.210692106921073,56.63881583938536],[9.232292322923229,56.637127262115484],[9.246692466924685,56.63206153030583],[9.261092610926113,56.63375010757571],[9.27549275492757,56.63375010757571],[9.286292862928633,56.62024148941666],[9.282692826928269,56.610110025797354],[9.261092610926113,56.59153567582865],[9.25029250292505,56.57802705766957],[9.261092610926113,56.5763384803997],[9.264692646926477,56.57127274859005],[9.264692646926477,56.566207016780396],[9.271892718927205,56.557764130430996],[9.279092790927905,56.552698398621345],[9.304293042930425,56.54425551227192],[9.311493114931153,56.54087835773217],[9.311493114931153,56.53581262592252],[9.315093150931517,56.530746894112866],[9.32589325893261,56.530746894112866],[9.340293402934037,56.547632666811694],[9.347493474934765,56.552698398621345],[9.361893618936193,56.54425551227192],[9.372693726937285,56.552698398621345],[9.372693726937285,56.566207016780396],[9.35109351093513,56.57127274859005],[9.318693186931881,56.561141284970745],[9.318693186931881,56.55945270770087],[9.311493114931153,56.557764130430996],[9.30069300693009,56.557764130430996],[9.293492934929361,56.561141284970745],[9.293492934929361,56.566207016780396],[9.297092970929725,56.57127274859005],[9.30069300693009,56.60842144852748],[9.318693186931881,56.64050441665523],[9.32589325893261,56.66921023024324],[9.304293042930425,56.69622746656137],[9.297092970929725,56.70129319837102],[9.289892898928997,56.704670352910796],[9.271892718927205,56.70298177564089],[9.232292322923229,56.69285031202162],[9.221492214922165,56.68440742567219],[9.199891998920009,56.67596453932279],[9.178291782917825,56.67596453932279],[9.16749167491676,56.68947315748184],[9.181891818918189,56.70129319837102],[9.225092250922529,56.71649039379997],[9.235892358923593,56.7333761664988],[9.243092430924321,56.74688478465785],[9.239492394923957,56.75363909373738],[9.214292142921437,56.75870482554703],[9.203492034920345,56.76377055735668],[9.196291962919645,56.770524866436205],[9.189091890918917,56.77727917551573],[9.185491854918553,56.784033484595284],[9.178291782917825,56.79416494821456],[9.174691746917489,56.80598498910376],[9.174691746917489,56.81780502999294],[9.181891818918189,56.82118218453269],[9.203492034920345,56.84144511177129],[9.207092070920709,56.846510843580944],[9.210692106921073,56.851576575390595],[9.210692106921073,56.86339661627977],[9.207092070920709,56.87521665716895],[9.199891998920009,56.8802823889786],[9.189091890918917,56.881970966248474],[9.178291782917825,56.88534812078822],[9.163891638916397,56.89379100713765],[9.181891818918189,56.91911966618588],[9.199891998920009,56.93938259342448],[9.221492214922165,56.95457978885344],[9.25029250292505,56.97315413882214],[9.257492574925749,56.97484271609201],[9.264692646926477,56.976531293361916],[9.27549275492757,56.976531293361916],[9.279092790927905,56.979908447901664],[9.286292862928633,56.993417066060715],[9.289892898928997,56.99679422060049],[9.437494374943753,57.02381145691862],[9.469894698947002,57.02381145691862],[9.58509585095851,56.99679422060049],[9.58509585095851,56.99003991152097],[9.574295742957446,56.984974179711315],[9.574295742957446,56.97821987063179],[9.581495814958146,56.97315413882214],[9.595895958959602,56.96977698428236],[9.606696066960666,56.96977698428236],[9.617496174961758,56.97484271609201],[9.65349653496537,57.006925684219794],[9.671496714967162,57.0255000341885],[9.689496894968954,57.03900865234755],[9.72909729097293,57.047451538696976],[9.76149761497615,57.05927157958615],[9.808298082980826,57.05251727050663],[9.916299162991635,57.05927157958615],[9.855098550985502,57.08797739317416],[9.826298262982647,57.09473170225368],[9.80469804698049,57.104863165872985],[9.793897938979399,57.10655174314286],[9.78669786697867,57.10317458860311],[9.750697506975087,57.077845929554854],[9.732697326973266,57.06602588866568],[9.71109711097111,57.06096015685603],[9.693096930969318,57.069403043205455],[9.675096750967526,57.07953450682476],[9.657096570965706,57.07615735228498],[9.621096210962122,57.05927157958615],[9.581495814958146,57.04914011596685],[9.495094950949522,57.04914011596685],[9.264692646926477,57.00354852968002],[9.246692466924685,57.00185995241014],[9.225092250922529,57.006925684219794],[9.113491134911357,57.05927157958615],[9.120691206912085,57.0457629614271],[9.113491134911357,57.03900865234755],[9.081090810908108,57.03056576599815],[9.055890558905588,57.020434302378845],[9.04149041490416,57.0170571478391],[9.027090270902704,57.0170571478391],[9.030690306903068,57.02381145691862],[9.012690126901276,57.03056576599815],[8.998289982899848,57.02887718872827],[8.980289802898028,57.020434302378845],[8.962289622896236,57.01030283875954],[8.947889478894808,57.011991416029446],[8.926289262892624,57.00017137514027],[8.908289082890832,56.98835133425109],[8.901089010890104,56.98666275698119],[8.893888938889404,57.00017137514027],[8.872288722887248,57.00523710694992],[8.850688506885064,57.00354852968002],[8.832688326883272,56.99679422060049],[8.847088470884728,56.98835133425109],[8.811088110881116,56.96977698428236],[8.760687606876076,56.95626836612331],[8.724687246872463,56.96133409793296],[8.703087030870307,56.957956943393185],[8.677886778867787,56.952891211583534],[8.667086670866723,56.94613690250401],[8.66348663486636,56.92587397526543],[8.649086490864903,56.914053934376255],[8.634686346863475,56.90561104802683],[8.620286202862047,56.89379100713765],[8.616686166861683,56.865085193549646],[8.61308613086132,56.86339661627977],[8.61308613086132,56.854953729930344],[8.609486094860955,56.84988799812069],[8.602286022860227,56.84482226631104],[8.569885698857007,56.81780502999294],[8.548285482854823,56.81780502999294],[8.537485374853759,56.81442787545316],[8.53028530285303,56.80936214364351],[8.523085230852303,56.80429641183386],[8.508685086850875,56.80091925729411],[8.490684906849083,56.79416494821456],[8.483484834848355,56.78065633005551],[8.490684906849083,56.74688478465785],[8.490684906849083,56.7316875892289],[8.476284762847627,56.721556125609624],[8.476284762847627,56.71649039379997],[8.515885158851603,56.71817897106985],[8.526685266852667,56.71649039379997],[8.533885338853395,56.70298177564089],[8.526685266852667,56.69453888929149],[8.512285122851239,56.68947315748184],[8.501485014850147,56.68947315748184],[8.490684906849083,56.69116173475172],[8.465484654846563,56.699604621101145],[8.45468454684547,56.70298177564089],[8.440284402844043,56.699604621101145],[8.422284222842222,56.69116173475172],[8.407884078840794,56.68947315748184],[8.407884078840794,56.68103027113244],[8.45468454684547,56.68947315748184],[8.469084690846927,56.686096002942065],[8.490684906849083,56.677653116592666],[8.501485014850147,56.67427596205289],[8.569885698857007,56.69116173475172],[8.587885878858799,56.68947315748184],[8.587885878858799,56.68103027113244],[8.587885878858799,56.66245592116371],[8.587885878858799,56.65401303481431],[8.602286022860227,56.64050441665523],[8.609486094860955,56.63037295303596],[8.591485914859163,56.61686433487688],[8.584285842858435,56.610110025797354],[8.569885698857007,56.60673287125758],[8.55548555485555,56.6050442939877],[8.548285482854823,56.601667139447954],[8.548285482854823,56.59828998490818],[8.559085590855915,56.593224253098526],[8.541085410854123,56.593224253098526],[8.512285122851239,56.60673287125758],[8.487084870848719,56.62530722122631],[8.476284762847627,56.637127262115484],[8.469084690846927,56.65232445754441],[8.443884438844407,56.664144498433615],[8.415084150841523,56.672587384783014],[8.389883898839003,56.67427596205289],[8.371883718837182,56.68103027113244],[8.35388353883539,56.69285031202162],[8.332283322833234,56.708047507450544],[8.317883178831806,56.721556125609624],[8.307083070830714,56.75870482554703],[8.30348303483035,56.76377055735668],[8.289082890828922,56.767147711896456],[8.260282602826038,56.77727917551573],[8.242282422824246,56.77727917551573],[8.256682566825674,56.740130475578326],[8.263882638826402,56.71817897106985],[8.260282602826038,56.704670352910796],[8.245882458824582,56.704670352910796],[8.238682386823882,56.72493328014937],[8.235082350823518,56.770524866436205],[8.249482494824946,56.81273929818329],[8.271082710827102,56.84313368904117],[8.451084510845106,57.00354852968002],[8.50508505085051,57.033942920537925],[8.587885878858799,57.10655174314286],[8.616686166861683,57.12343751584169],[8.652686526865267,57.12174893857181],[8.735487354873555,57.10655174314286],[8.782287822878232,57.104863165872985],[8.875888758887584,57.11668320676216],[8.91548915489156,57.126814670381464],[8.962289622896236,57.15720906123934],[8.980289802898028,57.16058621577912],[9.232292322923229,57.140323288540515],[9.322293222932245,57.14707759762004],[9.412294122941233,57.16565194758877],[9.498694986949886,57.197734915716524],[9.574295742957446,57.243326502003356],[9.78669786697867,57.45946439254834],[9.826298262982647,57.48985878340625],[9.894698946989479,57.532073215153304],[9.930699306993063,57.567533337820834],[9.941499414994155,57.572599069630485],[9.966699666996675,57.591173419599215],[10.017100171001715,57.59623915140884],[10.107101071010703,57.59286199686909],[10.19710197101972,57.60130488321849],[10.279902799028008,57.621567810457094],[10.351903519035204,57.648585046775224],[10.470704707047076,57.71781671484041],[10.539105391053909,57.74314537388864],[10.564305643056429,57.74989968296819],[10.596705967059677,57.751588260238066],[10.625506255062561,57.74821110569829],[10.650706507065081,57.73639106480911],[10.593105931059313,57.72625960118981],[10.542705427054273,57.69924236487171],[10.459904599045984,57.630010696806494],[10.431104311043129,57.57091049236061],[10.459904599045984,57.52531890607378],[10.510305103051024,57.4847930515966],[10.546305463054637,57.43582431076999],[10.517505175051753,57.39192130175306],[10.517505175051753,57.33957540638667],[10.539105391053909,57.23657219292383],[10.521105211052117,57.221374997494905],[10.470704707047076,57.2011120702563],[10.445504455044556,57.18422629755747],[10.413104131041308,57.14370044308029],[10.395103951039516,57.11668320676216],[10.384303843038424,57.074468775015106],[10.359103591035904,57.0255000341885],[10.34830348303484,57.01030283875954],[10.337503375033748,57.00354852968002],[10.330303303033048,57.00017137514027],[10.319503195031956,56.99679422060049],[10.27270272702728,56.998482797870366],[10.258302583025824,56.99510564333062],[10.240302403024032,56.993417066060715],[10.157501575015743,57.02381145691862],[10.092700927009275,57.06096015685603],[10.053100531005327,57.069403043205455],[10.02070020700208,57.08797739317416],[9.99549995499956,57.09304312498381],[9.973899738997403,57.08628881590428],[9.945099450994519,57.06096015685603],[9.927099270992727,57.05927157958615],[9.945099450994519,57.05758300231628],[9.966699666996675,57.0727801977452],[9.984699846998467,57.07953450682476],[10.002700027000287,57.08460023863441],[10.024300243002443,57.07953450682476],[10.12150121501216,57.02212287964875],[10.153901539015408,57.01367999329932],[10.193501935019356,56.993417066060715],[10.215102151021512,56.99003991152097],[10.294302943029436,56.98835133425109],[10.312303123031228,56.98328560244144],[10.287102871028708,56.963022675202836],[10.279902799028008,56.95626836612331],[10.276302763027644,56.94275974796426],[10.269102691026916,56.91574251164613],[10.265502655026552,56.9072996252967],[10.27270272702728,56.892102429867776],[10.283502835028344,56.83975653450139],[10.287102871028708,56.80091925729411],[10.294302943029436,56.77896775278563],[10.319503195031956,56.73675332103855],[10.326703267032684,56.72999901195902],[10.337503375033748,56.7232447028795],[10.341103411034112,56.71817897106985],[10.326703267032684,56.708047507450544],[10.319503195031956,56.708047507450544],[10.294302943029436,56.71480181653007],[10.283502835028344,56.71649039379997],[10.236702367023668,56.71649039379997],[10.22230222302224,56.71142466199032],[10.204302043020448,56.70298177564089],[10.186301863018628,56.71142466199032],[10.168301683016836,56.71986754833972],[10.14670146701468,56.721556125609624],[10.12150121501216,56.71649039379997],[10.099900999010003,56.70635893018067],[10.089100891008911,56.704670352910796],[10.074700747007483,56.70298177564089],[10.056700567005663,56.69791604383127],[10.027900279002807,56.68440742567219],[9.991899918999195,56.677653116592666],[9.945099450994519,56.65739018935406],[9.80469804698049,56.64725872573479],[9.80469804698049,56.64050441665523],[9.851498514985167,56.63543868484561],[10.002700027000287,56.66076734389384],[10.035100351003507,56.672587384783014],[10.049500495004963,56.67427596205289],[10.053100531005327,56.677653116592666],[10.053100531005327,56.68103027113244],[10.056700567005663,56.686096002942065],[10.063900639006391,56.68947315748184],[10.07110071100712,56.68778458021197],[10.085500855008547,56.68271884840232],[10.089100891008911,56.68103027113244],[10.099900999010003,56.68271884840232],[10.114301143011431,56.686096002942065],[10.125101251012524,56.69285031202162],[10.128701287012888,56.699604621101145],[10.135901359013587,56.713113239260196],[10.150301503015044,56.71480181653007],[10.182701827018263,56.708047507450544],[10.179101791017928,56.704670352910796],[10.175501755017564,56.69622746656137],[10.193501935019356,56.69285031202162],[10.240302403024032,56.68778458021197],[10.283502835028344,56.68947315748184],[10.308703087030864,56.699604621101145],[10.333903339033384,56.704670352910796],[10.351903519035204,56.68103027113244],[10.359103591035904,56.64894730300466],[10.341103411034112,56.62024148941666],[10.27270272702728,56.59153567582865],[10.22230222302224,56.561141284970745],[10.215102151021512,56.557764130430996],[10.207902079020784,56.525681162303215],[10.204302043020448,56.517238275953815],[10.211502115021148,56.50541823506464],[10.207902079020784,56.490221039635685],[10.19710197101972,56.47840099874651],[10.182701827018263,56.46995811239708],[10.215102151021512,56.46995811239708],[10.225902259022604,56.47502384420673],[10.225902259022604,56.51386112141404],[10.225902259022604,56.54087835773217],[10.236702367023668,56.55438697589122],[10.279902799028008,56.57127274859005],[10.312303123031228,56.5966014076383],[10.330303303033048,56.60335571671783],[10.351903519035204,56.5966014076383],[10.355503555035568,56.58984709855878],[10.359103591035904,56.5678955940503],[10.359103591035904,56.561141284970745],[10.366303663036632,56.557764130430996],[10.395103951039516,56.54425551227192],[10.470704707047076,56.520615430493564],[10.549905499055,56.51554969868391],[10.787507875078745,56.53581262592252],[10.823508235082357,56.53412404865264],[10.855908559085606,56.52399258503334],[10.870308703087034,56.51554969868391],[10.902709027090282,56.48346673055616],[10.963909639096386,56.44800660788863],[10.963909639096386,56.44294087607898],[10.94230942309423,56.4294322579199],[10.927909279092802,56.405792176141546],[10.924309243092438,56.38046351709332],[10.924309243092438,56.356823435314965],[10.90990909909101,56.334871930806486],[10.819908199081993,56.26057453093165],[10.773107731077317,56.24368875823282],[10.755107551075525,56.22849156280387],[10.751507515075161,56.21667152191469],[10.751507515075161,56.18458855378691],[10.737107371073705,56.15419416292903],[10.70830708307085,56.150817008389254],[10.672306723067237,56.16601420381821],[10.650706507065081,56.187965708326686],[10.675906759067601,56.191342862866435],[10.686706867068665,56.196408594676086],[10.690306903069029,56.20822863556526],[10.686706867068665,56.22173725372434],[10.675906759067601,56.22680298553399],[10.665106651066509,56.22680298553399],[10.654306543065445,56.23355729461352],[10.629106291062925,56.23693444915327],[10.603906039060405,56.22173725372434],[10.582305823058249,56.19978574921586],[10.549905499055,56.177834244707384],[10.557105571055729,56.15419416292903],[10.567905679056793,56.128865503880775],[10.57510575105752,56.11197973118195],[10.564305643056429,56.10522542210242],[10.546305463054637,56.10184826756267],[10.531905319053209,56.10015969029277],[10.517505175051753,56.10353684483255],[10.506705067050689,56.11029115391207],[10.49950499504996,56.13055408115068],[10.492304923049232,56.14068554476998],[10.49950499504996,56.14406269930973],[10.517505175051753,56.150817008389254],[10.52470524705248,56.15419416292903],[10.517505175051753,56.16432562654833],[10.510305103051024,56.169391358357984],[10.467104671046712,56.177834244707384],[10.459904599045984,56.17614566743751],[10.438304383043828,56.16770278108808],[10.409504095040944,56.16432562654833],[10.391503915039152,56.17276851289773],[10.377103771037724,56.18627713105681],[10.355503555035568,56.20147432648574],[10.377103771037724,56.20316290375561],[10.409504095040944,56.218360099184565],[10.427504275042764,56.22173725372434],[10.441904419044192,56.21667152191469],[10.459904599045984,56.20654005829539],[10.477904779047805,56.20316290375561],[10.492304923049232,56.21667152191469],[10.47430474304744,56.231868717343644],[10.47430474304744,56.245377335502695],[10.503105031050325,56.27746030363048],[10.492304923049232,56.27746030363048],[10.477904779047805,56.280837458170225],[10.463504635046348,56.28759176724975],[10.452704527045285,56.294346076329305],[10.441904419044192,56.29941180813893],[10.416704167041672,56.2926574990594],[10.402304023040244,56.29772323086905],[10.39870398703988,56.28421461271],[10.395103951039516,56.275771726360574],[10.384303843038424,56.272394571820826],[10.369903699036996,56.27070599455092],[10.362703627036268,56.26564026274127],[10.337503375033748,56.23355729461352],[10.312303123031228,56.21498294464482],[10.258302583025824,56.18965428559656],[10.233102331023304,56.17107993562786],[10.218702187021876,56.147439853849505],[10.225902259022604,56.133931235690426],[10.243902439024396,56.1187340402615],[10.258302583025824,56.098471113022896],[10.265502655026552,56.07314245397467],[10.261902619026188,56.05456810400594],[10.24750247502476,56.03768233130711],[10.229502295022968,56.017419404068534],[10.254702547025488,56.02417371314806],[10.27270272702728,56.02417371314806],[10.276302763027644,56.017419404068534],[10.251102511025124,55.987025013210626],[10.251102511025124,55.973516395051576],[10.251102511025124,55.94818773600335],[10.251102511025124,55.93130196330452],[10.24750247502476,55.92285907695509],[10.243902439024396,55.91441619060569],[10.22230222302224,55.897530417906864],[10.218702187021876,55.889087531557436],[10.211502115021148,55.889087531557436],[10.200702007020084,55.88571037701769],[10.189901899018992,55.878956067938134],[10.182701827018263,55.87389033612851],[10.189901899018992,55.870513181588734],[10.19710197101972,55.862070295239334],[10.200702007020084,55.85025025435013],[10.189901899018992,55.843495945270604],[10.186301863018628,55.83843021346095],[10.182701827018263,55.8333644816513],[10.1719017190172,55.83167590438143],[10.161101611016107,55.8333644816513],[10.150301503015044,55.83843021346095],[10.135901359013587,55.85193883162003],[10.132301323013223,55.85869314069956],[10.128701287012888,55.86544744977908],[10.125101251012524,55.87389033612851],[10.114301143011431,55.88064464520804],[10.103501035010368,55.88233322247791],[10.006300063000623,55.88064464520804],[9.991899918999195,55.87726749066826],[9.984699846998467,55.87220175885861],[9.977499774997767,55.86375887250921],[9.970299702997039,55.85869314069956],[9.945099450994519,55.853627408889906],[9.891098910989115,55.85531598615978],[9.865898658986595,55.85193883162003],[9.891098910989115,55.83674163619108],[10.035100351003507,55.818167286222376],[10.0459004590046,55.8147901316826],[10.042300423004235,55.80297009079342],[10.024300243002443,55.782707163554846],[10.017100171001715,55.76582139085602],[10.02070020700208,55.75737850450659],[10.035100351003507,55.755689927236716],[10.060300603006027,55.755689927236716],[10.060300603006027,55.74893561815719],[10.017100171001715,55.737115577268014],[10.006300063000623,55.72529553637881],[10.017100171001715,55.70840976367998],[10.013500135001351,55.70672118641011],[10.006300063000623,55.701655454600456],[9.981099810998103,55.710098340949884],[9.873098730987323,55.69152399098118],[9.822698226982283,55.67632679555223],[9.793897938979399,55.674638218282354],[9.732697326973266,55.688146836441405],[9.696696966969682,55.70503260914023],[9.68589685896859,55.70840976367998],[9.581495814958146,55.70840976367998],[9.55989559895599,55.715164072759535],[9.556295562955626,55.71178691821976],[9.556295562955626,55.70840976367998],[9.55269552695529,55.70503260914023],[9.55269552695529,55.701655454600456],[9.574295742957446,55.69490114552093],[9.646296462964642,55.69490114552093],[9.657096570965706,55.68983541371128],[9.71109711097111,55.6594410228534],[9.721897218972202,55.647620981964224],[9.72909729097293,55.63748951834492],[9.739897398973994,55.62904663199552],[9.757897578975786,55.62735805472562],[9.855098550985502,55.62735805472562],[9.83709837098371,55.61553801383644],[9.78669786697867,55.59189793205809],[9.757897578975786,55.571635004819484],[9.743497434974358,55.56656927300986],[9.721897218972202,55.56488069573996],[9.71109711097111,55.55981496393031],[9.71109711097111,55.55137207758091],[9.71109711097111,55.541240613961605],[9.707497074970746,55.53786345942183],[9.642696426964278,55.527731995802554],[9.621096210962122,55.519289109453126],[9.606696066960666,55.51760053218325],[9.595895958959602,55.51760053218325],[9.574295742957446,55.52435484126278],[9.55989559895599,55.52435484126278],[9.563495634956354,55.519289109453126],[9.567095670956718,55.51760053218325],[9.55269552695529,55.505780491294075],[9.516695166951678,55.49902618221455],[9.498694986949886,55.48889471859525],[9.516695166951678,55.483828986785596],[9.53469534695347,55.483828986785596],[9.58509585095851,55.49058329586512],[9.592295922959238,55.4939604504049],[9.60309603096033,55.49564902767477],[9.66069660696607,55.478763254975945],[9.664296642966434,55.46694321408677],[9.66069660696607,55.45343459592772],[9.649896498965006,55.44161455503854],[9.63549635496355,55.43654882322889],[9.60309603096033,55.43148309141924],[9.58509585095851,55.42810593687946],[9.592295922959238,55.416285895990285],[9.60309603096033,55.40108870056133],[9.606696066960666,55.39264581421193],[9.606696066960666,55.38251435059263],[9.599495994959966,55.37407146424323],[9.599495994959966,55.3656285778938],[9.621096210962122,55.358874268814276],[9.631896318963186,55.35211995973475],[9.646296462964642,55.34198849611545],[9.649896498965006,55.33354560976605],[9.63549635496355,55.32510272341662],[9.63549635496355,55.318348414337095],[9.646296462964642,55.31159410525757],[9.682296822968226,55.27444540532014],[9.693096930969318,55.27106825078039],[9.707497074970746,55.264313941700834],[9.71109711097111,55.24911674627191],[9.707497074970746,55.23729670538273],[9.700297002970046,55.23054239630318],[9.693096930969318,55.220410932683905],[9.689496894968954,55.20521373725495],[9.68589685896859,55.19677085090555],[9.671496714967162,55.1917051190959],[9.657096570965706,55.190016541826],[9.642696426964278,55.18832796455612],[9.58509585095851,55.19508227363565],[9.570695706957082,55.1917051190959],[9.55989559895599,55.18663938728625],[9.556295562955626,55.17988507820672],[9.545495454954562,55.17481934639707],[9.520295202952042,55.16468788277777],[9.505895058950586,55.16131072823799],[9.495094950949522,55.16131072823799],[9.487894878948794,55.15624499642834],[9.487894878948794,55.14780211007894],[9.495094950949522,55.139359223729514],[9.513095130951314,55.139359223729514],[9.513095130951314,55.13260491464999],[9.480694806948065,55.13429349191989],[9.469894698947002,55.13260491464999],[9.455494554945545,55.12585060557046],[9.466294662946638,55.12078487376081],[9.480694806948065,55.11909629649094],[9.50949509495095,55.11909629649094],[9.520295202952042,55.11571914195116],[9.53469534695347,55.10727625560176],[9.55989559895599,55.08532475109328],[9.53469534695347,55.06506182385468],[9.516695166951678,55.05661893750528],[9.498694986949886,55.04986462842575],[9.45189451894521,55.0447988966161],[9.43389433894339,55.038044587536575],[9.441094410944117,55.02284739210762],[9.455494554945545,55.02284739210762],[9.513095130951314,55.03635601026667],[9.538295382953834,55.0346674329968],[9.545495454954562,55.03635601026667],[9.55269552695529,55.03973316480645],[9.55989559895599,55.0447988966161],[9.567095670956718,55.04817605115585],[9.581495814958146,55.04986462842575],[9.60309603096033,55.0447988966161],[9.642696426964278,55.019470237567845],[9.664296642966434,55.00933877394857],[9.718297182971838,55.00089588759914],[9.732697326973266,54.99583015578949],[9.739897398973994,54.98063296036054],[9.76149761497615,54.90464698321583],[9.76149761497615,54.90126982867608],[9.76149761497615,54.8978926741363],[9.750697506975087,54.89282694232665],[9.73629736297363,54.89282694232665],[9.721897218972202,54.8978926741363],[9.71109711097111,54.8978926741363],[9.70389703897041,54.886072633247124],[9.714697146971474,54.88438405597725],[9.72909729097293,54.8793183241676],[9.73629736297363,54.87425259235795],[9.743497434974358,54.86580970600852],[9.747097470974722,54.85736681965912],[9.750697506975087,54.84554677876994],[9.747097470974722,54.83541531515064],[9.732697326973266,54.832038160610864],[9.718297182971838,54.83541531515064],[9.70389703897041,54.85398966511934],[9.696696966969682,54.859055396928994],[9.65349653496537,54.85736681965912],[9.642696426964278,54.859055396928994],[9.624696246962486,54.86580970600852],[9.624696246962486,54.8691868605483],[9.631896318963186,54.872564015088045],[9.63549635496355,54.8793183241676],[9.617496174961758,54.894515519596524],[9.61029610296103,54.90295840594595],[9.617496174961758,54.9080241377556],[9.642696426964278,54.913089869565255],[9.639096390963914,54.92490991045443],[9.613896138961394,54.93335279680383],[9.58509585095851,54.92828706499418],[9.581495814958146,54.921532755914654],[9.567095670956718,54.90126982867608],[9.556295562955626,54.891138365056776],[9.549095490954926,54.88269547870735],[9.545495454954562,54.8793183241676],[9.538295382953834,54.877629746897696],[9.523895238952406,54.8793183241676],[9.516695166951678,54.87594116962782],[9.498694986949886,54.864121128738645],[9.455494554945545,54.84385820150004],[9.441094410944117,54.832038160610864],[9.437494374943753,54.81008665610241],[9.45189451894521,54.81008665610241],[9.50949509495095,54.828661006071115],[9.531095310953106,54.842169624230166],[9.55269552695529,54.84723535603982],[9.567095670956718,54.86074397419887],[9.581495814958146,54.86580970600852],[9.581495814958146,54.83034958334099],[9.631896318963186,54.82021811972169],[9.693096930969318,54.81852954245181],[9.73629736297363,54.806709501562636],[9.750697506975087,54.79995519248311],[9.77949779497797,54.793200883403586],[9.801098010980127,54.78306941978428],[9.81189811898119,54.766183647085455],[9.822698226982283,54.75605218346615],[9.851498514985167,54.75942933800593],[9.894698946989479,54.769560801625204],[9.891098910989115,54.78982372886381],[9.916299162991635,54.79151230613368],[9.948699486994883,54.779692265244506],[9.970299702997039,54.76280649254568],[9.984699846998467,54.72903494714802],[9.991899918999195,54.72059206079862],[9.999099990999923,54.712149174449195],[10.017100171001715,54.70201771082992],[10.006300063000623,54.69526340175037],[9.991899918999195,54.69695197902027],[9.981099810998103,54.70032913356002],[9.970299702997039,54.70201771082992],[9.970299702997039,54.698640556290144],[9.945099450994519,54.68682051540097],[9.941499414994155,54.68682051540097],[9.93789937899379,54.68513193813109],[9.930699306993063,54.68513193813109],[9.930699306993063,54.68344336086119],[9.930699306993063,54.67331189724189],[9.945099450994519,54.67331189724189],[9.970299702997039,54.67837762905154],[9.99549995499956,54.67837762905154],[10.009900099000987,54.66655758816236],[10.02070020700208,54.671623319972014],[10.035100351003507,54.67331189724189],[10.038700387003871,54.66655758816236],[10.031500315003143,54.65304897000331],[10.038700387003871,54.63954035184426],[10.038700387003871,54.619277424605656],[10.031500315003143,54.5770629928586],[10.027900279002807,54.56017722015977],[10.02070020700208,54.54666860200069],[10.009900099000987,54.53484856111152],[9.999099990999923,54.52302852022234],[9.966699666996675,54.50614274752351],[9.927099270992727,54.49263412936446],[9.880298802988023,54.48419124301503],[9.840698406984075,54.48250266574516],[9.840698406984075,54.47574835666563],[9.883898838988387,54.462239738506554],[10.125101251012524,54.49601128390421],[10.143101431014315,54.49263412936446],[10.204302043020448,54.46055116123668],[10.182701827018263,54.4487311203475],[10.182701827018263,54.4385996567282],[10.193501935019356,54.426779615839024],[10.19710197101972,54.409893843140196],[10.189901899018992,54.396385224981145],[10.175501755017564,54.38456518409197],[10.157501575015743,54.37612229774254],[10.143101431014315,54.37274514320279],[10.143101431014315,54.369367988663015],[10.14670146701468,54.36767941139314],[10.14670146701468,54.36599083412324],[10.143101431014315,54.35923652504371],[10.153901539015408,54.35248221596419],[10.153901539015408,54.34403932961479],[10.150301503015044,54.333907865995485],[10.143101431014315,54.32377640237618],[10.164701647016471,54.328842134185834],[10.179101791017928,54.34066217507501],[10.204302043020448,54.37274514320279],[10.218702187021876,54.404828111330545],[10.225902259022604,54.41327099767997],[10.233102331023304,54.418336729489624],[10.27270272702728,54.4200253067595],[10.287102871028708,54.42509103856915],[10.290702907029072,54.4301567703788],[10.2979029790298,54.43522250218845],[10.305103051030528,54.440288233998075],[10.319503195031956,54.44366538853785],[10.359103591035904,54.440288233998075],[10.384303843038424,54.43522250218845],[10.441904419044192,54.40651668860045],[10.600306003060041,54.36599083412324],[10.690306903069029,54.31702209329666],[10.729907299073005,54.31026778421713],[10.776707767077681,54.315333516026755],[10.80910809108093,54.32715355691596],[10.86670866708667,54.35923652504371],[10.899108991089918,54.37105656593289],[10.93510935109353,54.37949945228232],[11.01791017910179,54.38625376136184],[11.01791017910179,54.37949945228232],[10.999909999099998,54.377810875012415],[10.974709747097478,54.377810875012415],[10.99270992709927,54.374433720472666],[11.01071010710109,54.377810875012415],[11.032310323103246,54.36767941139314],[11.104311043110442,54.39300807044137],[11.13671136711369,54.38625376136184],[11.097110971109714,54.360925102313615],[11.08631086310865,54.35248221596419],[11.082710827108286,54.35417079323406],[11.06831068310683,54.35923652504371],[11.079110791107922,54.342350752344885],[11.08631086310865,54.301824897867704],[11.09351093510935,54.283250547899],[11.08631086310865,54.271430507009825],[11.08631086310865,54.254544734311],[11.09351093510935,54.22583892072299],[11.089910899108986,54.20726457075426],[11.079110791107922,54.19882168440486],[11.071910719107194,54.19206737532534],[11.06831068310683,54.18362448897591],[10.949509495094958,54.13972147995898],[10.90990909909101,54.10932708910107],[10.89190891908919,54.102572780021546],[10.852308523085242,54.09412989367215],[10.845108451084513,54.09412989367215],[10.837908379083785,54.09075273913237],[10.830708307083086,54.092441316402244],[10.823508235082357,54.097507048211895],[10.812708127081265,54.097507048211895],[10.805508055080566,54.09412989367215],[10.801908019080201,54.092441316402244],[10.762307623076225,54.056981193734714],[10.751507515075161,54.05022688465519],[10.751507515075161,54.04347257557566],[10.76590765907659,54.02489822560693],[10.780307803078045,54.00970103017801],[10.798307983079837,54.00125814382858],[10.827108271082722,53.99619241201893],[10.86670866708667,53.99788098928883],[10.873908739087398,53.99619241201893],[10.881108811088126,53.98437237112975],[10.88470884708849,53.972552330240575],[10.888308883088825,53.964109443891175],[10.902709027090282,53.9607322893514],[10.906309063090646,53.9607322893514],[10.91710917109171,53.9607322893514],[10.924309243092438,53.9607322893514],[10.93510935109353,53.96748659843092],[10.963909639096386,53.986060948399654],[10.981909819098206,53.9894381029394],[10.999909999099998,53.99112668020928],[11.053910539105402,54.008012452908105],[11.176311763117639,54.01814391652741],[11.183511835118367,54.01645533925753],[11.190711907119066,54.00970103017801],[11.197911979119795,53.99619241201893],[11.205112051120523,53.9894381029394],[11.241112411124107,53.98268379385988],[11.24471244712447,53.977618062050226],[11.241112411124107,53.95566655754175],[11.24471244712447,53.945535093922445],[11.255512555125563,53.94046936211282],[11.284312843128447,53.94046936211282],[11.29511295112951,53.94046936211282],[11.334713347133487,53.9607322893514],[11.341913419134187,53.959043712081524],[11.352713527135279,53.94384651665257],[11.359913599136007,53.94046936211282],[11.399513995139955,53.94046936211282],[11.399513995139955,53.937092207573045],[11.439114391143931,53.90838639398504],[11.446314463144631,53.906697816715166],[11.457114571145723,53.906697816715166],[11.460714607146087,53.91682928033444],[11.467914679146787,53.932026475763394],[11.475114751147515,53.952289403002],[11.471514715147151,53.969175175700826],[11.47871478714788,53.97592948478035],[11.489514895148972,53.98099521659],[11.496714967149671,53.98099521659],[11.496714967149671,53.986060948399654],[11.493114931149307,53.99788098928883],[11.493114931149307,54.00294672109848],[11.525515255152555,54.02320964833706],[11.525515255152555,54.029963957416584],[11.518315183151827,54.029963957416584],[11.518315183151827,54.03671826649611],[11.543515435154347,54.029963957416584],[11.55431554315544,54.029963957416584],[11.572315723157232,54.03840684376601],[11.590315903159052,54.06542408008414],[11.60471604716048,54.070489811893765],[11.611916119161208,54.07217838916367],[11.619116191161908,54.07724412097332],[11.626316263162636,54.083998430052844],[11.629916299163,54.09075273913237],[11.629916299163,54.09581847094202],[11.622716227162272,54.09919562548177],[11.622716227162272,54.10426135729142],[11.626316263162636,54.10932708910107],[11.629916299163,54.11270424364085],[11.633516335163364,54.1160813981806],[11.658716587165884,54.14141005722885],[11.691116911169132,54.154918675387904],[11.727117271172716,54.15829582992768],[11.813518135181369,54.14985294357825],[12.051120511205113,54.18024733443616],[12.087120871208725,54.19375595259521],[12.094320943209425,54.16505013900721],[12.09072090720909,54.138032902689076],[12.09072090720909,54.11439282091072],[12.11592115921161,54.097507048211895],[12.105121051210517,54.10932708910107],[12.101521015210153,54.1363443254192],[12.094320943209425,54.146475789038504],[12.105121051210517,54.15660725265781],[12.133921339213401,54.16673871627708],[12.14112141121413,54.18024733443616],[12.130321303213037,54.181935911706034],[12.119521195211945,54.18024733443616],[12.112321123211245,54.17687017989638],[12.101521015210153,54.173493025356635],[12.108721087210881,54.18362448897591],[12.14112141121413,54.208953148024165],[12.162721627216285,54.21908461164347],[12.187921879218806,54.24272469342182],[12.202322023220233,54.249479002501346],[12.213122131221326,54.25116757977122],[12.288722887228886,54.27480766154957],[12.328323283232834,54.293382011518304],[12.34272342723429,54.30351347513758],[12.378723787237874,54.34572790688466],[12.439924399244006,54.396385224981145],[12.44352443524437,54.404828111330545],[12.486724867248682,54.44704254307763],[12.50112501125011,54.47405977939573],[12.511925119251202,54.48250266574516],[12.533525335253358,54.48756839755481],[12.533525335253358,54.48250266574516],[12.52632526325263,54.48250266574516],[12.547925479254786,54.462239738506554],[12.591125911259127,54.45210827488728],[12.817928179281807,54.45210827488728],[12.857528575285755,54.440288233998075],[12.879128791287911,54.4487311203475],[12.907929079290795,54.445353965807726],[12.922329223292252,54.43353392491855],[12.897128971289732,54.4200253067595],[12.871928719287212,54.41664815221972],[12.763927639276403,54.42171388402937],[12.720727207272091,54.431845347648675],[12.695526955269571,54.43353392491855],[12.688326883268843,54.431845347648675],[12.67752677526775,54.42171388402937],[12.670326703267051,54.4200253067595],[12.648726487264867,54.4200253067595],[12.623526235262347,54.423402461299276],[12.612726127261283,54.4200253067595],[12.609126091260919,54.40651668860045],[12.60192601926019,54.41327099767997],[12.598325983259826,54.41158242041007],[12.587525875258763,54.40820526587032],[12.580325803258035,54.40651668860045],[12.583925839258399,54.39807380225102],[12.587525875258763,54.39469664771124],[12.59472594725949,54.39300807044137],[12.60192601926019,54.391319493171494],[12.598325983259826,54.391319493171494],[12.59472594725949,54.391319493171494],[12.59472594725949,54.38963091590162],[12.59472594725949,54.38625376136184],[12.57672576725767,54.391319493171494],[12.555125551255514,54.391319493171494],[12.537125371253723,54.38456518409197],[12.52632526325263,54.37274514320279],[12.511925119251202,54.38456518409197],[12.490324903249046,54.38963091590162],[12.454324543245434,54.391319493171494],[12.439924399244006,54.38794233863172],[12.42552425524255,54.37612229774254],[12.41832418324185,54.360925102313615],[12.42552425524255,54.34572790688466],[12.411124111241122,54.347416484154536],[12.403924039240394,54.347416484154536],[12.396723967239666,54.35248221596419],[12.389523895238966,54.34572790688466],[12.396723967239666,54.33221928872558],[12.39312393123933,54.320399247836406],[12.378723787237874,54.311956361487006],[12.364323643236446,54.31026778421713],[12.36792367923681,54.29675916605805],[12.378723787237874,54.28662770243875],[12.378723787237874,54.276496238819476],[12.36792367923681,54.26974192973992],[12.411124111241122,54.25116757977122],[12.436324363243642,54.24779042523147],[12.457924579245798,54.25623331158087],[12.44352443524437,54.254544734311],[12.429124291242914,54.257921888850746],[12.411124111241122,54.26974192973992],[12.41832418324185,54.28156197062913],[12.42552425524255,54.29000485697853],[12.45072450724507,54.30351347513758],[12.457924579245798,54.306890629677355],[12.46872468724689,54.30857920694723],[12.472324723247226,54.31026778421713],[12.47592475924759,54.315333516026755],[12.47592475924759,54.32715355691596],[12.479524795247954,54.33221928872558],[12.49392493924941,54.34066217507501],[12.562325623256243,54.35923652504371],[12.547925479254786,54.364302256853364],[12.540725407254087,54.36599083412324],[12.540725407254087,54.37274514320279],[12.558725587255879,54.37612229774254],[12.565925659256607,54.37612229774254],[12.573125731257306,54.37274514320279],[12.573125731257306,54.37949945228232],[12.59472594725949,54.369367988663015],[12.623526235262347,54.374433720472666],[12.67752677526775,54.391319493171494],[12.673926739267387,54.39469664771124],[12.673926739267387,54.40313953406067],[12.670326703267051,54.40651668860045],[12.681126811268115,54.41158242041007],[12.691926919269207,54.41327099767997],[12.706327063270635,54.41495957494985],[12.717127171271727,54.41327099767997],[12.717127171271727,54.40651668860045],[12.70272702727027,54.404828111330545],[12.691926919269207,54.396385224981145],[12.688326883268843,54.38456518409197],[12.684726847268479,54.37274514320279],[12.695526955269571,54.38456518409197],[12.70272702727027,54.391319493171494],[12.706327063270635,54.399762379520894],[12.713527135271363,54.38963091590162],[12.724327243272427,54.38118802955219],[12.735127351273519,54.377810875012415],[12.745927459274611,54.38625376136184],[12.756727567275675,54.37949945228232],[12.767527675276767,54.37949945228232],[12.778327783277831,54.38456518409197],[12.78552785527856,54.391319493171494],[12.789127891278923,54.38456518409197],[12.796327963279651,54.377810875012415],[12.799927999279987,54.37105656593289],[12.817928179281807,54.35754794777384],[12.821528215282171,54.355859370503964],[12.825128251282507,54.35754794777384],[12.8359283592836,54.35923652504371],[12.853928539285391,54.35754794777384],[12.864728647286483,54.35923652504371],[12.875528755287547,54.36599083412324],[12.88632886328864,54.37274514320279],[12.893528935289368,54.38963091590162],[12.904329043290431,54.399762379520894],[12.929529295292951,54.41495957494985],[12.969129691296928,54.4301567703788],[13.008730087300876,54.4385996567282],[13.033930339303396,54.43353392491855],[13.023130231302332,54.426779615839024],[13.019530195301968,54.41495957494985],[13.030330303303032,54.4014509567908],[13.041130411304124,54.391319493171494],[13.084330843308436,54.37949945228232],[13.095130951309528,54.37274514320279],[13.077130771307708,54.35248221596419],[13.080730807308072,54.337285020535234],[13.109531095310956,54.31026778421713],[13.11313113131132,54.30013632059783],[13.11313113131132,54.28831627970865],[13.11313113131132,54.279873393359225],[13.127531275312748,54.276496238819476],[13.170731707317088,54.276496238819476],[13.170731707317088,54.26974192973992],[13.159931599315996,54.26974192973992],[13.156331563315632,54.26805335247005],[13.141931419314204,54.2629876206604],[13.174331743317452,54.2646761979303],[13.228332283322828,54.24779042523147],[13.26433264332644,54.24272469342182],[13.28953289532896,54.23428180707239],[13.321933219332209,54.19375595259521],[13.347133471334729,54.18024733443616],[13.332733327333273,54.173493025356635],[13.321933219332209,54.16673871627708],[13.347133471334729,54.16673871627708],[13.383133831338313,54.17855875716626],[13.404734047340469,54.173493025356635],[13.393933939339405,54.16167298446743],[13.390333903339041,54.15660725265781],[13.383133831338313,54.15323009811803],[13.393933939339405,54.14816436630838],[13.401134011340133,54.151541520848156],[13.408334083340833,54.154918675387904],[13.419134191341925,54.15323009811803],[13.42273422734229,54.14816436630838],[13.437134371343717,54.124524284530025],[13.451534515345173,54.111015666370974],[13.465934659346601,54.09919562548177],[13.483934839348393,54.09075273913237],[13.505535055350549,54.09075273913237],[13.505535055350549,54.097507048211895],[13.49833498334985,54.102572780021546],[13.487534875348757,54.11439282091072],[13.480334803348029,54.1177699754505],[13.480334803348029,54.124524284530025],[13.602736027360294,54.13972147995898],[13.63153631536315,54.14816436630838],[13.68193681936819,54.16842729354698],[13.710737107371074,54.173493025356635],[13.717937179371802,54.16842729354698],[13.714337143371438,54.16336156173733],[13.70713707137071,54.16167298446743],[13.69993699937001,54.159984407197555],[13.69993699937001,54.15323009811803],[13.728737287372894,54.14309863449873],[13.80793807938079,54.10426135729142],[13.80793807938079,54.097507048211895],[13.793537935379362,54.083998430052844],[13.786337863378634,54.06373550281424],[13.771937719377206,54.04684973011541],[13.746737467374686,54.03671826649611],[13.75753757537575,54.031652534686486],[13.786337863378634,54.00970103017801],[13.797137971379726,53.999569566558705],[13.804338043380454,53.99619241201893],[13.83313833138331,53.9894381029394],[13.840338403384038,53.986060948399654],[13.843938439384402,53.9793066393201],[13.847538475384766,53.972552330240575],[13.847538475384766,53.96748659843092],[13.85113851138513,53.964109443891175],[13.847538475384766,53.959043712081524],[13.847538475384766,53.95566655754175],[13.85113851138513,53.95397798027187],[13.865538655386558,53.95397798027187],[13.869138691386922,53.95397798027187],[13.87633876338765,53.950600825732096],[13.879938799388015,53.94891224846222],[13.887138871388714,53.94722367119235],[13.894338943389442,53.94722367119235],[13.905139051390535,53.94384651665257],[13.90873908739087,53.93371505303327],[13.90153901539017,53.92189501214409],[13.890738907389078,53.91345212579469],[13.818738187381882,53.87799200312716],[13.80793807938079,53.86448338496808],[13.818738187381882,53.852663344078906],[13.836738367383674,53.847597612269254],[13.854738547385494,53.844220457729506],[13.861938619386194,53.84084330318973],[13.869138691386922,53.83071183957043],[13.88353883538835,53.817203221411376],[13.90153901539017,53.80876033506195],[13.912339123391234,53.81044891233185],[13.98433984339843,53.77330021239442],[14.016740167401679,53.76992305785467],[14.03474034740347,53.75810301696549],[14.038340383403835,53.754725862425715],[14.05994059940599,53.75641443969559],[14.067140671406719,53.754725862425715],[14.092340923409239,53.74628297607629],[14.106741067410695,53.74290582153654],[14.185941859418591,53.73952866699676],[14.214742147421475,53.74459439880641],[14.225542255422567,53.75810301696549],[14.232742327423267,53.76148017150524],[14.250742507425088,53.75979159423537],[14.265142651426515,53.75134870788594],[14.26874268742688,53.73615151245701],[14.257942579425787,53.727708626107585],[14.211142111421111,53.70744569886901],[14.225542255422567,53.70406854432923],[14.239942399423995,53.700691389789455],[14.257942579425787,53.69900281251958],[14.265142651426515,53.700691389789455],[14.272342723427244,53.700691389789455],[14.290342903429035,53.705757121599106],[14.304743047430492,53.71251143067863],[14.304743047430492,53.72095431702806],[14.290342903429035,53.727708626107585],[14.297542975429764,53.73108578064736],[14.301143011430128,53.73446293518711],[14.297542975429764,53.73784008972689],[14.290342903429035,53.741217244266664],[14.2939429394294,53.749660130616064],[14.304743047430492,53.74459439880641],[14.31914319143192,53.73952866699676],[14.329943299433012,53.73446293518711],[14.340743407434076,53.714200007948534],[14.355143551435532,53.70913427613888],[14.383943839438388,53.700691389789455],[14.401944019440208,53.687182771630404],[14.416344163441636,53.68211703982075],[14.459544595445948,53.6770513080111],[14.513545135451352,53.6669198443918],[14.531545315453172,53.6584769580424],[14.5459454594546,53.64496833988335],[14.578345783457848,53.607819639945916],[14.589145891458912,53.59768817632661],[14.59634596345964,53.60106533086639],[14.59634596345964,53.61795110356522],[14.599945999460004,53.62639398991462],[14.610746107461068,53.63314829899417],[14.625146251462525,53.6399026080737],[14.62154621546216,53.643279762613446],[14.62154621546216,53.64665691715322],[14.625146251462525,53.65341122623275],[14.614346143461432,53.65509980350262],[14.589145891458912,53.656788380772525],[14.574745747457484,53.660165535312274],[14.5459454594546,53.70406854432923],[14.553145531455328,53.72602004883771],[14.574745747457484,53.76992305785467],[14.589145891458912,53.763168748775115],[14.59634596345964,53.76485732604502],[14.607146071460733,53.768234480584766],[14.625146251462525,53.76992305785467],[14.617946179461796,53.7952517169029],[14.62154621546216,53.8155146441415],[14.628746287462889,53.83240041684033],[14.632346323463253,53.85097476680903],[14.625146251462525,53.85097476680903],[14.62154621546216,53.839154725919855],[14.614346143461432,53.83240041684033],[14.589145891458912,53.817203221411376],[14.59634596345964,53.81044891233185],[14.585545855458548,53.812137489601724],[14.578345783457848,53.8155146441415],[14.574745747457484,53.81889179868125],[14.567545675456756,53.8239575304909],[14.574745747457484,53.82733468503068],[14.581945819458213,53.8340889941102],[14.589145891458912,53.83746614864995],[14.574745747457484,53.85435192134878],[14.553145531455328,53.86279480769821],[14.441544415444156,53.86954911677773],[14.427144271442728,53.879680580397036],[14.437944379443792,53.89994350763561],[14.434344343443428,53.901632084905515],[14.430744307443092,53.906697816715166],[14.423544235442364,53.896566353095864],[14.412744127441272,53.89487777582599],[14.405544055440572,53.896566353095864],[14.39474394743948,53.89994350763561],[14.383943839438388,53.896566353095864],[14.376743767437688,53.89150062128621],[14.373143731437324,53.88643488947656],[14.362343623436232,53.879680580397036],[14.391143911439116,53.87630342585726],[14.409144091440908,53.87123769404761],[14.416344163441636,53.86448338496808],[14.416344163441636,53.852663344078906],[14.405544055440572,53.844220457729506],[14.391143911439116,53.84084330318973],[14.383943839438388,53.844220457729506],[14.355143551435532,53.8340889941102],[14.34434344343444,53.83240041684033],[14.329943299433012,53.83071183957043],[14.329943299433012,53.8239575304909],[14.340743407434076,53.820580375951124],[14.340743407434076,53.81889179868125],[14.329943299433012,53.817203221411376],[14.31914319143192,53.81889179868125],[14.304743047430492,53.82226895322103],[14.290342903429035,53.8239575304909],[14.275942759427608,53.83071183957043],[14.225542255422567,53.87123769404761],[14.203942039420411,53.87799200312716],[14.200342003420047,53.87799200312716],[14.088740887408875,53.87123769404761],[14.063540635406355,53.87292627131751],[14.049140491404927,53.879680580397036],[14.023940239402407,53.86448338496808],[13.995139951399523,53.85435192134878],[13.937539375393754,53.844220457729506],[13.87633876338765,53.844220457729506],[13.840338403384038,53.85097476680903],[13.822338223382246,53.86448338496808],[13.83313833138331,53.86786053950786],[13.854738547385494,53.87799200312716],[13.887138871388714,53.88136915766691],[13.923139231392327,53.89318919855609],[13.930339303393055,53.89994350763561],[13.937539375393754,53.92864932122362],[13.90153901539017,53.969175175700826],[13.905139051390535,53.99619241201893],[13.955539555395575,53.99281525747918],[13.973539735397367,53.9894381029394],[13.966339663396639,53.98099521659],[13.969939699397003,53.97592948478035],[13.95913959139591,53.95735513481165],[13.95913959139591,53.94046936211282],[13.973539735397367,53.95735513481165],[13.987939879398795,53.9607322893514],[14.027540275402771,53.9607322893514],[14.023940239402407,53.959043712081524],[14.020340203402043,53.95566655754175],[14.016740167401679,53.952289403002],[14.013140131401315,53.94722367119235],[14.049140491404927,53.94046936211282],[14.041940419404199,53.95397798027187],[14.052740527405291,53.977618062050226],[14.052740527405291,54.004635298368356],[14.038340383403835,54.021521071067184],[14.013140131401315,54.01645533925753],[14.005940059400615,54.031652534686486],[13.995139951399523,54.04516115284554],[13.980739807398095,54.056981193734714],[13.966339663396639,54.06373550281424],[13.944739447394483,54.067112657354016],[13.92673926739269,54.06373550281424],[13.915939159391598,54.056981193734714],[13.923139231392327,54.04347257557566],[13.923139231392327,54.03671826649611],[13.915939159391598,54.03334111195636],[13.90873908739087,54.02827538014671],[13.90153901539017,54.01983249379731],[13.897938979389806,54.013078184717756],[13.890738907389078,54.00970103017801],[13.854738547385494,54.00294672109848],[13.85833858338583,54.01645533925753],[13.865538655386558,54.02489822560693],[13.872738727387286,54.029963957416584],[13.87633876338765,54.03671826649611],[13.872738727387286,54.048538307385314],[13.861938619386194,54.05022688465519],[13.854738547385494,54.04684973011541],[13.822338223382246,54.03840684376601],[13.80793807938079,54.026586802876835],[13.793537935379362,54.01814391652741],[13.77553775537757,54.02320964833706],[13.78273782737827,54.04178399830576],[13.80793807938079,54.075555543703416],[13.815138151381518,54.10088420275167],[13.80793807938079,54.1160813981806],[13.764737647376478,54.14141005722885],[13.753937539375414,54.15323009811803],[13.761137611376114,54.16505013900721],[13.779137791377934,54.173493025356635],[13.797137971379726,54.17855875716626],[13.815138151381518,54.173493025356635],[13.822338223382246,54.16336156173733],[13.843938439384402,54.13127859360955],[13.854738547385494,54.1177699754505],[13.88353883538835,54.102572780021546],[13.948339483394847,54.08062127551307],[13.987939879398795,54.070489811893765],[14.016740167401679,54.06035834827449],[14.19314193141932,53.945535093922445],[14.211142111421111,53.93878078484292],[14.225542255422567,53.93371505303327],[14.236342363423631,53.92864932122362],[14.26874268742688,53.92189501214409],[14.365943659436596,53.91682928033444],[14.405544055440572,53.92189501214409],[14.44514445144452,53.93371505303327],[14.517145171451716,53.96579802116105],[14.783547835478373,54.035029689226235],[15.010350103501054,54.070489811893765],[15.287552875528775,54.138032902689076],[15.46755467554675,54.16673871627708],[15.665556655566576,54.19882168440486],[15.859958599586008,54.249479002501346],[16.021960219602192,54.26129904339052],[16.129961299613,54.283250547899],[16.119161191611937,54.276496238819476],[16.068760687606897,54.2629876206604],[16.090360903609053,54.254544734311],[16.18036180361804,54.2629876206604],[16.18036180361804,54.26974192973992],[16.173161731617313,54.26974192973992],[16.173161731617313,54.276496238819476],[16.219962199622017,54.276496238819476],[16.219962199622017,54.28156197062913],[16.216362163621653,54.28156197062913],[16.21276212762129,54.283250547899],[16.216362163621653,54.30013632059783],[16.191161911619133,54.30013632059783],[16.13716137161373,54.29000485697853],[16.173161731617313,54.30013632059783],[16.21276212762129,54.315333516026755],[16.273962739627393,54.35923652504371],[16.26316263162633,54.34403932961479],[16.241562415624173,54.33053071145571],[16.23076230762308,54.32208782510631],[16.241562415624173,54.32377640237618],[16.259562595625965,54.32715355691596],[16.273962739627393,54.33053071145571],[16.28836288362885,54.34066217507501],[16.324363243632433,54.34910506142441],[16.335163351633526,54.35923652504371],[16.324363243632433,54.37274514320279],[16.30636306363064,54.37274514320279],[16.29556295562955,54.36767941139314],[16.28116281162812,54.35923652504371],[16.324363243632433,54.4014509567908],[16.43956439564397,54.48756839755481],[16.43956439564397,54.48250266574516],[16.435964359643606,54.472371202125856],[16.443164431644334,54.47068262485598],[16.461164611646126,54.47405977939573],[16.47196471964719,54.48250266574516],[16.479164791647918,54.49601128390421],[16.475564755647554,54.49938843844399],[16.461164611646126,54.49601128390421],[16.44676446764467,54.48756839755481],[16.46476464764649,54.51289705660304],[16.500765007650074,54.53315998384164],[16.569165691656934,54.556800065619996],[16.777967779677795,54.5753744155887],[16.860768607686083,54.5939487655574],[16.903969039690395,54.59732592009718],[16.939969399694007,54.605768806446605],[17.037170371703724,54.66655758816236],[17.3359733597336,54.74929787438663],[17.7139771397714,54.78982372886381],[17.886778867788678,54.823595274261464],[18.153181531815335,54.83879246969042],[18.31518315183152,54.83879246969042],[18.34038340383404,54.83372673788077],[18.37638376383765,54.815152387912036],[18.39078390783908,54.81177523337229],[18.40878408784087,54.80839807883251],[18.75078750787509,54.690197669940716],[18.815588155881557,54.64291750638401],[18.822788227882285,54.63278604276471],[18.833588335883377,54.61590027006588],[18.833588335883377,54.60239165190683],[18.81918819188192,54.59732592009718],[18.811988119881192,54.60239165190683],[18.808388083880857,54.60914596098635],[18.80118801188013,54.61590027006588],[18.783187831878337,54.62434315641531],[18.772387723877245,54.64291750638401],[18.754387543875453,54.654737547273186],[18.707587075870777,54.70201771082992],[18.696786967869684,54.703706288099795],[18.664386643866436,54.708772019909446],[18.653586535865372,54.71046059717932],[18.646386463864644,54.71890348352872],[18.61758617586176,54.725657792608274],[18.556385563855656,54.74929787438663],[18.498784987849888,54.766183647085455],[18.487984879848796,54.77293795616498],[18.455584555845576,54.788135151593934],[18.448384483844848,54.78982372886381],[18.43398433984339,54.78644657432403],[18.430384303843056,54.78138084251438],[18.4159841598416,54.752675028926376],[18.412384123841235,54.74592071984685],[18.412384123841235,54.7324121016878],[18.419584195841963,54.72903494714802],[18.44118441184412,54.7222806380685],[18.448384483844848,54.71890348352872],[18.45918459184591,54.70539486536967],[18.473584735847368,54.68682051540097],[18.473584735847368,54.68006620632144],[18.469984699847004,54.67331189724189],[18.469984699847004,54.66655758816236],[18.480784807848096,54.65980327908284],[18.477184771847732,54.63954035184426],[18.487984879848796,54.63109746549483],[18.505985059850616,54.63447462003461],[18.523985239852408,54.646294660923786],[18.51678516785168,54.62940888822496],[18.523985239852408,54.61590027006588],[18.538385383853836,54.605768806446605],[18.563585635856356,54.56017722015977],[18.570785707857084,54.55004575654047],[18.56718567185672,54.52809425203199],[18.56718567185672,54.48756839755481],[18.574385743857448,54.45041969761738],[18.588785887858876,54.43353392491855],[18.603186031860332,54.4301567703788],[18.635586355863552,54.41664815221972],[18.64998649986501,54.41327099767997],[18.664386643866436,54.41327099767997],[18.678786787867892,54.409893843140196],[18.69318693186932,54.404828111330545],[18.70038700387005,54.396385224981145],[18.71838718387184,54.38118802955219],[18.887588875888753,54.35079363869431],[18.923589235892365,54.34910506142441],[18.955989559895613,54.35923652504371],[18.963189631896313,54.35417079323406],[18.973989739897405,54.34910506142441],[19.00279002790029,54.34572790688466],[19.377193771937726,54.377810875012415],[19.459994599946015,54.4014509567908],[19.499594995949963,54.40651668860045],[19.53199531995321,54.41495957494985],[19.593195931959315,54.45210827488728],[19.611196111961135,54.4571740066969],[19.625596255962563,54.46055116123668],[19.625596255962563,54.46899404758611],[19.73359733597337,54.52640567476212],[19.830798307983088,54.59732592009718],[19.884798847988492,54.65642612454306],[19.888398883988856,54.65980327908284],[19.89199891998922,54.66149185635271],[19.895598955989556,54.66149185635271],[19.89919899198992,54.66655758816236],[19.902799027990284,54.671623319972014],[19.89919899198992,54.68344336086119],[19.89919899198992,54.68682051540097],[19.906399063990648,54.69526340175037],[19.913599135991376,54.70201771082992],[19.931599315993168,54.71890348352872],[19.956799567995688,54.75774076073603],[19.960399603996052,54.77293795616498],[19.960399603996052,54.796578037943334],[19.953199531995324,54.81684096518194],[19.92439924399244,54.86749828327842],[19.920799207992076,54.87594116962782],[19.920799207992076,54.88944978778687],[19.935199351993532,54.916467024105],[19.94239942399426,54.935041374073705],[19.956799567995688,54.95192714677253],[19.978399783997844,54.96374718766174],[19.996399963999636,54.96881291947136],[20.021600216002156,54.95192714677253],[20.032400324003248,54.948549992232785],[20.07560075600756,54.953615724042436],[20.14400144001442,54.95192714677253],[20.205202052020525,54.95868145585209],[20.367203672036737,54.94686141496291],[20.406804068040685,54.95192714677253],[20.482404824048245,54.975567228550915],[20.633606336063366,55.04817605115585],[20.810008100081006,55.17650792366695],[20.8208082080821,55.1815736554766],[20.925209252092515,55.282888291669565],[21.000810008100075,55.3571856915444],[21.04041040410405,55.416285895990285],[21.083610836108363,55.49733760494465],[21.094410944109455,55.581766468438786],[21.09801098010982,55.598652241137614],[21.094410944109455,55.603717972947265],[21.09801098010982,55.612160859296694],[21.09081090810909,55.63242378653527],[21.094410944109455,55.69490114552093],[21.083610836108363,55.723606959108935],[21.11601116011161,55.69996687733058],[21.13041130411304,55.65606386831362],[21.134011340113403,55.568257850279736],[21.13041130411304,55.55643780939056],[21.12321123211234,55.53955203669173],[21.119611196111975,55.527731995802554],[21.119611196111975,55.48889471859525],[21.108811088110883,55.473697523166294],[21.094410944109455,55.456811750467466],[21.087210872108727,55.44161455503854],[21.10521105211052,55.42810593687946],[21.10521105211052,55.421351627799936],[21.09081090810909,55.411220164180634],[21.0728107281073,55.39095723694206],[21.058410584105843,55.36900573243358],[21.051210512105115,55.34874280519497],[21.036810368103687,55.3284798779564],[20.99000990009901,55.291331178018964],[20.99000990009901,55.27275682805026],[20.99000990009901,55.27106825078039],[20.950409504095035,55.25418247808156],[20.93960939609397,55.24911674627191],[20.943209432094335,55.24573959173213],[20.943209432094335,55.24405101446226],[20.936009360093607,55.23729670538273],[20.91440914409145,55.233919550842955],[20.90360903609036,55.225476664493556],[20.907209072090723,55.218722355414],[20.89640896408966,55.21703377814413],[20.88920889208893,55.211968046334476],[20.88920889208893,55.20521373725495],[20.885608856088567,55.198459428175426],[20.87840878408784,55.1917051190959],[20.860408604086047,55.1815736554766],[20.85320853208532,55.17481934639707],[20.835208352083527,55.15286784188859],[20.824408244082434,55.14273637826929],[20.774007740077394,55.114030564681286],[20.68760687606877,55.04986462842575],[20.558005580055806,54.98232153763044],[20.547205472054713,54.97725580582079],[20.540005400054014,54.97725580582079],[20.532805328053286,54.97387865128101],[20.52920529205292,54.96543576493161],[20.532805328053286,54.96037003312196],[20.540005400054014,54.95192714677253],[20.550805508055078,54.94517283769301],[20.558005580055806,54.94010710588336],[20.576005760057598,54.93841852861348],[20.76320763207633,54.94686141496291],[20.806408064080642,54.94010710588336],[20.860408604086047,54.91140129229535],[20.968409684096855,54.899581251406175],[21.04041040410405,54.90464698321583],[21.051210512105115,54.90971271502548],[21.05481054810548,54.91477844683513],[21.06561065610657,54.90971271502548],[21.076410764107635,54.90295840594595],[21.080010800108,54.899581251406175],[21.09081090810909,54.90126982867608],[21.09801098010982,54.90464698321583],[21.101611016110155,54.90971271502548],[21.10521105211052,54.913089869565255],[21.19161191611917,54.926598487724306],[21.23121231212312,54.93841852861348],[21.24201242012421,54.962058610391836],[21.234812348123484,54.98063296036054],[21.220412204122056,55.01271592848832],[21.195211952119536,55.135982069189765],[21.19161191611917,55.14273637826929],[21.19161191611917,55.14780211007894],[21.184411844118443,55.16806503731752],[21.18081180811808,55.171442191857295],[21.18081180811808,55.193393696365774],[21.184411844118443,55.201836582715174],[21.188011880118808,55.20859089179473],[21.202412024120235,55.21365662360435],[21.209612096120964,55.211968046334476],[21.21681216812169,55.20521373725495],[21.22401224012242,55.201836582715174],[21.238412384123848,55.2001480054453],[21.24921249212494,55.201836582715174],[21.260012600126004,55.20521373725495],[21.267212672126732,55.211968046334476],[21.270812708127096,55.220410932683905],[21.27441274412746,55.23223097357308],[21.270812708127096,55.24405101446226],[21.267212672126732,55.24911674627191],[21.270812708127096,55.25418247808156],[21.263612636126368,55.27613398259001],[21.263612636126368,55.28457686893944],[21.270812708127096,55.287954023479216],[21.278012780127796,55.28626544620931],[21.285212852128524,55.28626544620931],[21.292412924129252,55.296396909828616],[21.288812888128888,55.304839796178044],[21.28161281612816,55.31665983706722],[21.27441274412746,55.326791300686494],[21.267212672126732,55.331857032496146],[21.260012600126004,55.3369227643058],[21.25641256412564,55.3470542279251],[21.25641256412564,55.36900573243358],[21.245612456124576,55.37069430970345],[21.188011880118808,55.33861134157567],[21.184411844118443,55.345365650655225],[21.184411844118443,55.34874280519497],[21.22401224012242,55.39940012329146],[21.23121231212312,55.40615443237098],[21.24921249212494,55.41797447326016],[21.24921249212494,55.44161455503854],[21.234812348123484,55.48214040951572],[21.22401224012242,55.5125348003736],[21.22401224012242,55.52097768672303],[21.21681216812169,55.52435484126278],[21.209612096120964,55.52942057307243],[21.1988119881199,55.53786345942183],[21.195211952119536,55.54799492304113],[21.195211952119536,55.55981496393031],[21.1988119881199,55.56656927300986],[21.1988119881199,55.57501215935926],[21.195211952119536,55.58514362297856],[21.159211592115923,55.64255525015457],[21.14841148411486,55.6594410228534],[21.14841148411486,55.6780153728221],[21.14121141211413,55.688146836441405],[21.09801098010982,55.728672690918586],[21.09081090810909,55.73542699999811],[21.080010800108,55.73880415453789],[21.0728107281073,55.745558463617414],[21.069210692106935,55.76919854539577],[21.062010620106207,55.78946147263437],[21.044010440104415,55.87389033612851],[21.044010440104415,55.91779334514544],[21.04761047610478,55.92792480876474],[21.05481054810548,55.9431220041937],[21.058410584105843,55.9515648905431],[21.058410584105843,56.03768233130711],[21.05481054810548,56.07314245397467],[21.051210512105115,56.07820818578432],[21.044010440104415,56.115356885721724],[21.02961029610296,56.147439853849505],[20.982809828098283,56.209917212835165],[20.97200972009722,56.231868717343644],[20.968409684096855,56.253820221852095],[20.97200972009722,56.258885953661746],[20.97920979209792,56.27914888090035],[20.982809828098283,56.29096892178953],[20.982809828098283,56.30110038540883],[20.982809828098283,56.31123184902813],[20.97200972009722,56.35006912623541],[20.968409684096855,56.370332053474016],[20.97200972009722,56.38890640344272],[20.97920979209792,56.40410359887167],[20.993609936099375,56.41761221703072],[20.99720997209974,56.42605510338015],[21.00441004410044,56.43449798972955],[21.00441004410044,56.44631803061873],[21.00441004410044,56.46489238058746],[21.011610116101167,56.47502384420673],[21.00441004410044,56.49190961690556],[21.000810008100075,56.51048396687429],[21.008010080100803,56.520615430493564],[21.026010260102595,56.51048396687429],[21.02961029610296,56.50035250325499],[21.036810368103687,56.47333526693686],[21.044010440104415,56.46151522604768],[21.02961029610296,56.44800660788863],[21.036810368103687,56.44462945334885],[21.044010440104415,56.44294087607898],[21.044010440104415,56.427743680650025],[21.044010440104415,56.4209893715705],[21.02961029610296,56.40748075341142],[21.05481054810548,56.39059498071259],[21.062010620106207,56.387217826172844],[21.069210692106935,56.38890640344272],[21.076410764107635,56.39566071252224],[21.080010800108,56.4024150216018],[21.069210692106935,56.42436652611025],[21.06561065610657,56.441252298809076],[21.069210692106935,56.4581380715079],[21.0728107281073,56.46995811239708],[21.069210692106935,56.476712421476634],[21.062010620106207,56.49359819417546],[21.058410584105843,56.503729657794736],[21.051210512105115,56.51048396687429],[21.04761047610478,56.51554969868391],[21.02961029610296,56.52399258503334],[21.018810188101895,56.52736973957312],[21.011610116101167,56.52736973957312],[21.00441004410044,56.530746894112866],[20.99720997209974,56.53750120319239],[20.993609936099375,56.54932124408157],[20.993609936099375,56.552698398621345],[21.000810008100075,56.557764130430996],[21.011610116101167,56.59828998490818],[21.04761047610478,56.65570161208419],[21.058410584105843,56.68947315748184],[21.06561065610657,56.77390202097598],[21.062010620106207,56.79416494821456],[21.05481054810548,56.81273929818329],[21.051210512105115,56.829625070882116],[21.06561065610657,56.846510843580944],[21.14841148411486,56.87690523443882],[21.15561155611556,56.88534812078822],[21.22401224012242,56.9072996252967],[21.24201242012421,56.91911966618588],[21.278012780127796,56.949514057043785],[21.288812888128888,56.95626836612331],[21.29961299612998,56.95964552066309],[21.328413284132836,56.97315413882214],[21.360813608136084,56.99003991152097],[21.38241382413824,57.00861426148967],[21.40041400414006,57.03732007507767],[21.414814148141488,57.0727801977452],[21.414814148141488,57.11330605222241],[21.411214112141124,57.12512609311159],[21.40041400414006,57.15214332942969],[21.404014040140396,57.162274793048994],[21.411214112141124,57.17578341120807],[21.414814148141488,57.18422629755747],[21.411214112141124,57.25008081108291],[21.414814148141488,57.270343738321486],[21.422014220142216,57.28891808829019],[21.43281432814328,57.305803860989016],[21.4508145081451,57.319312479148095],[21.46521465214653,57.32606678822762],[21.479614796147956,57.332821097307146],[21.519215192151933,57.38685556994341],[21.587615876158765,57.439201465309765],[21.699216992169937,57.55571329693166],[21.72801728017282,57.57428764690039],[21.771217712177133,57.586107687789564],[21.954819548195502,57.59286199686909],[21.998019980199814,57.599616305948615],[22.19602196021961,57.657027933124624],[22.484024840248424,57.74314537388864],[22.527225272252736,57.74989968296819],[22.54882548825489,57.74989968296819],[22.559625596255984,57.75327683750794],[22.57402574025741,57.75665399204772],[22.584825848258504,57.760031146587465],[22.59922599225993,57.75834256931759],[22.610026100261024,57.754965414777814],[22.610026100261024,57.75327683750794],[22.60642606426066,57.751588260238066],[22.59922599225993,57.74314537388864],[22.592025920259204,57.70599667395123],[22.58842588425884,57.66547081947405],[22.592025920259204,57.64520789223545],[22.59922599225993,57.630010696806494],[22.6568265682657,57.586107687789564],[22.880028800288017,57.48141589705682],[22.952029520295213,57.43244715623024],[23.031230312303137,57.39529845629281],[23.081630816308177,57.37841268359398],[23.11763117631176,57.37334695178433],[23.128431284312853,57.36996979724458],[23.132031320313217,57.363215488165054],[23.132031320313217,57.35308402454575],[23.139231392313917,57.34295256092645],[23.1608316083161,57.319312479148095],[23.164431644316437,57.314246747338444],[23.17523175231753,57.297360974639616],[23.182431824318257,57.27709804740101],[23.189631896318957,57.243326502003356],[23.20043200432005,57.224752152034654],[23.214832148321477,57.216309265685254],[23.222032220322205,57.20617780206595],[23.25083250832509,57.11499462949229],[23.26163261632618,57.09810885679346],[23.27603276032761,57.09304312498381],[23.2940329403294,57.08966597044403],[23.340833408334078,57.05927157958615],[23.423634236342366,57.04069722961745],[23.51003510035102,57.03056576599815],[23.520835208352082,57.0255000341885],[23.571235712357122,56.98666275698119],[23.57843578435785,56.98159702517154],[23.58563585635858,56.979908447901664],[23.632436324363255,56.971465561552264],[23.69363693636936,56.96808840701249],[23.866438664386664,56.99003991152097],[23.927639276392767,57.006925684219794],[23.952839528395288,57.01367999329932],[23.992439924399264,57.03056576599815],[24.010440104401056,57.0457629614271],[24.02124021240212,57.05927157958615],[24.035640356403576,57.069403043205455],[24.075240752407524,57.074468775015106],[24.1148411484115,57.08797739317416],[24.212042120421216,57.12343751584169],[24.219242192421945,57.13863471127064],[24.237242372423736,57.14876617488994],[24.262442624426257,57.15720906123934],[24.276842768427684,57.16058621577912],[24.28044280442805,57.172406256668296],[24.287642876428777,57.17916056574782],[24.312843128431297,57.18760345209725],[24.377643776437765,57.229817883844305],[24.39924399243992,57.25852369743231],[24.410044100441013,57.297360974639616],[24.40644406444065,57.34464113819632],[24.38124381243813,57.46959585616764],[24.38124381243813,57.506744556105076],[24.3740437404374,57.528696060613555],[24.363243632436337,57.53882752423283],[24.359643596435973,57.550647565122006],[24.363243632436337,57.57597622417026],[24.3740437404374,57.613124924107666],[24.363243632436337,57.67222512855358],[24.35604356043561,57.68573374671263],[24.312843128431297,57.724571023919935],[24.29844298442984,57.74314537388864],[24.29844298442984,57.76171972385737],[24.287642876428777,57.808999887414075],[24.287642876428777,57.83263996919243],[24.287642876428777,57.844460010081605],[24.294842948429505,57.857968628240684],[24.30564305643057,57.86810009185996],[24.31644316443166,57.876542978209386],[24.32364323643236,57.88667444182869],[24.327243272432725,57.898494482717865],[24.33084330843309,57.91031452360704],[24.334443344433453,57.92213456449622],[24.38124381243813,57.98461192348188],[24.39924399243992,58.023449200689186],[24.446044460444625,58.053843591547064],[24.464044640446417,58.072417941515766],[24.464044640446417,58.121386682342376],[24.471244712447145,58.14164960958095],[24.471244712447145,58.15515822774003],[24.46764467644678,58.165289691359334],[24.460444604446053,58.17373257770873],[24.45684456844569,58.18555261859791],[24.453244532445325,58.19568408221721],[24.46764467644678,58.21763558672569],[24.46764467644678,58.22945562761487],[24.46764467644678,58.23958709123417],[24.471244712447145,58.25140713212335],[24.4928449284493,58.2649157502824],[24.521645216452185,58.276735791171575],[24.546845468454705,58.28855583206075],[24.561245612456133,58.312195913839105],[24.55044550445504,58.334147418347584],[24.528845288452885,58.35103319104641],[24.44244442444426,58.38649331371394],[24.402844028440285,58.39493620006337],[24.363243632436337,58.396624777333244],[24.327243272432725,58.388181890983844],[24.31644316443166,58.379739004634416],[24.30564305643057,58.36791896374524],[24.294842948429505,58.35441034558619],[24.29124291242914,58.34259030469701],[24.29124291242914,58.32739310926806],[24.287642876428777,58.31895022291866],[24.25524255242553,58.290244409330654],[24.244442444424465,58.28011294571135],[24.23004230042301,58.273358636631826],[24.212042120421216,58.271670059361924],[24.17244172441724,58.276735791171575],[24.154441544415448,58.276735791171575],[24.14004140041402,58.268292904822175],[24.1220412204122,58.24465282304382],[24.111241112411136,58.241275668504045],[24.093240932409344,58.24465282304382],[24.082440824408252,58.25140713212335],[24.053640536405368,58.27842436844145],[24.00684006840069,58.30037587294993],[23.98163981639817,58.31895022291866],[23.91323913239134,58.334147418347584],[23.873638736387363,58.33583599561749],[23.85563855638557,58.339213150157235],[23.848438484384843,58.34259030469701],[23.83763837638378,58.35103319104641],[23.834038340383415,58.35441034558619],[23.823238232382323,58.35441034558619],[23.81963819638196,58.35103319104641],[23.81243812438126,58.34765603650666],[23.80523805238053,58.34596745923676],[23.798037980379803,58.34934461377654],[23.78723787237874,58.352721768316314],[23.776437764377647,58.35441034558619],[23.76923769237692,58.35103319104641],[23.76203762037622,58.344278881966886],[23.75483754837549,58.339213150157235],[23.747637476374763,58.339213150157235],[23.740437404374063,58.34259030469701],[23.733237332373335,58.35103319104641],[23.72963729637297,58.36285323193559],[23.726037260372607,58.374673272824765],[23.722437224372243,58.38480473644407],[23.71883718837188,58.40000193187302],[23.708037080370815,58.40675624095255],[23.69363693636936,58.41351055003207],[23.682836828368295,58.4219534363815],[23.675636756367567,58.43546205454055],[23.67923679236793,58.44559351815985],[23.682836828368295,58.46923359993821],[23.682836828368295,58.499627990796085],[23.67923679236793,58.52495664984434],[23.664836648366503,58.53677669073352],[23.63603636036362,58.52833380438409],[23.621636216362162,58.52833380438409],[23.60363603636037,58.53677669073352],[23.58563585635858,58.54521957708292],[23.574835748357486,58.55197388616247],[23.56763567635676,58.56548250432152],[23.564035640356423,58.5773025452107],[23.56043560435606,58.58236827702035],[23.546035460354602,58.580679699750476],[23.531635316353174,58.570548236131174],[23.524435244352446,58.558728195242],[23.517235172351718,58.55535104070222],[23.50283502835029,58.562105349781746],[23.499234992349926,58.57223681340105],[23.50283502835029,58.58236827702035],[23.513635136351382,58.59418831790953],[23.517235172351718,58.60431978152883],[23.513635136351382,58.62289413149753],[23.499234992349926,58.646534213275885],[23.492034920349198,58.673551449594015],[23.499234992349926,58.69719153137237],[23.506435064350654,58.7056344177218],[23.513635136351382,58.70732299499167],[23.53523535235354,58.70225726318202],[23.542435424354238,58.7056344177218],[23.546035460354602,58.709011572261545],[23.546035460354602,58.714077304071196],[23.531635316353174,58.722520190420624],[23.52803528035281,58.736028808579675],[23.531635316353174,58.74784884946885],[23.546035460354602,58.74784884946885],[23.58563585635858,58.73771738584955],[23.621636216362162,58.74109454038933],[23.657636576365775,58.749537426738726],[23.697236972369723,58.75122600400863],[23.715237152371543,58.74784884946885],[23.75483754837549,58.7343402313098],[23.772837728377283,58.730963076770024],[23.801638016380167,58.730963076770024],[23.80523805238053,58.7343402313098],[23.80523805238053,58.74109454038933],[23.80523805238053,58.74784884946885],[23.798037980379803,58.75122600400863],[23.783637836378375,58.75629173581825],[23.78003780037801,58.766423199437554],[23.78723787237874,58.77824324032673],[23.798037980379803,58.784997549406285],[23.816038160381623,58.784997549406285],[23.85563855638557,58.77317750851708],[23.873638736387363,58.771488931247205],[23.848438484384843,58.78837470394603],[23.816038160381623,58.80019474483521],[23.783637836378375,58.80019474483521],[23.758437584375855,58.784997549406285],[23.740437404374063,58.798506167565336],[23.71883718837188,58.798506167565336],[23.675636756367567,58.79175185848581],[23.60363603636037,58.79512901302556],[23.582035820358215,58.79175185848581],[23.56043560435606,58.784997549406285],[23.549635496354966,58.78162039486651],[23.542435424354238,58.77486608578698],[23.53523535235354,58.77486608578698],[23.506435064350654,58.77993181759663],[23.4848348483485,58.77655466305686],[23.430834308343094,58.76473462216768],[23.466834668346678,58.80019474483521],[23.4848348483485,58.81032620845451],[23.517235172351718,58.81201478572439],[23.524435244352446,58.820457672073815],[23.463234632346342,58.86436068109077],[23.456034560345614,58.882935031059475],[23.423634236342366,58.9082636901077],[23.423634236342366,58.92852661734631],[23.445234452344522,58.94372381277523],[23.51003510035102,58.94203523550536],[23.531635316353174,58.95723243093431],[23.549635496354966,58.950478121854786],[23.56763567635676,58.950478121854786],[23.58563585635858,58.953855276394535],[23.6180361803618,58.967363894553614],[23.625236252362527,58.972429626363265],[23.62883628836289,58.97918393544279],[23.62883628836289,58.99100397633197],[23.621636216362162,59.01464405811032],[23.607236072360735,59.03321840807902],[23.582035820358215,59.0450384489682],[23.56043560435606,59.05348133531763],[23.571235712357122,59.03997271715855],[23.60363603636037,59.02477552172962],[23.614436144361463,59.011266903570544],[23.607236072360735,59.007889749030795],[23.589235892358943,59.007889749030795],[23.582035820358215,59.00451259449102],[23.56043560435606,58.99100397633197],[23.556835568355694,58.98762682179219],[23.556835568355694,58.98256108998254],[23.55323553235533,58.97074104909336],[23.542435424354238,58.96905247182349],[23.538835388353903,58.97411820363314],[23.531635316353174,58.980872512712665],[23.524435244352446,58.98424966725244],[23.45963459634598,58.99269255360184],[23.434434344343458,59.00451259449102],[23.409234092340938,59.02477552172962],[23.416434164341638,59.02477552172962],[23.430834308343094,59.0264640989995],[23.438034380343822,59.02477552172962],[23.430834308343094,59.043349871698325],[23.434434344343458,59.056858489857376],[23.481234812348134,59.083875726175506],[23.492034920349198,59.08894145798516],[23.50283502835029,59.08556430344538],[23.517235172351718,59.073744262556204],[23.520835208352082,59.12440158065269],[23.4848348483485,59.1733703214793],[23.470434704347042,59.212207598686604],[23.524435244352446,59.230781948655306],[23.53523535235354,59.22909337138543],[23.556835568355694,59.225716216845655],[23.571235712357122,59.22402763957578],[23.57843578435785,59.225716216845655],[23.59283592835928,59.23584768046496],[23.614436144361463,59.24260198954448],[23.62883628836289,59.24935629862401],[23.64323643236432,59.257799184973436],[23.66123661236614,59.257799184973436],[23.715237152371543,59.23247052592518],[23.71883718837188,59.230781948655306],[23.72963729637297,59.230781948655306],[23.740437404374063,59.239224835004705],[23.7440374403744,59.24935629862401],[23.7368373683737,59.25948776224331],[23.722437224372243,59.26455349405296],[23.733237332373335,59.27806211221201],[23.758437584375855,59.283127844021664],[23.84483844838448,59.28481642129154],[23.88803888038882,59.27806211221201],[23.934839348393496,59.279750689481915],[23.9888398883989,59.29157073037109],[24.03924039240394,59.293259307640966],[24.078840788407888,59.27130780313249],[24.100441004410044,59.29494788491084],[24.093240932409344,59.31183365760967],[24.028440284402848,59.3574252438965],[24.017640176401784,59.3675567075158],[24.02124021240212,59.377688171135105],[24.035640356403576,59.38781963475441],[24.04644046440464,59.39457394383393],[24.06444064440646,59.39795109837368],[24.078840788407888,59.39626252110381],[24.107641076410772,59.38444248021463],[24.16524165241654,59.35404808935675],[24.194041940419424,59.3472937802772],[24.22284222842228,59.355736666626626],[24.212042120421216,59.372622439325454],[24.186841868418696,59.391196789294156],[24.161641616416176,59.40301683018333],[24.183241832418332,59.408082561992984],[24.269642696426985,59.41145971653276],[24.30564305643057,59.41990260288216],[24.31644316443166,59.43172264377134],[24.33084330843309,59.46380561189912],[24.334443344433453,59.470559920978644],[24.39924399243992,59.47900280732807],[24.420844208442105,59.47731423005817],[24.44244442444426,59.470559920978644],[24.478444784447845,59.448608416470165],[24.50004500045,59.443542684660514],[24.51804518045182,59.448608416470165],[24.53244532445325,59.45705130281959],[24.546845468454705,59.462117034629244],[24.56844568445686,59.46042845735934],[24.6260462604626,59.43847695285086],[24.64404644046442,59.43678837558099],[24.662046620466214,59.440165530120765],[24.654846548465486,59.45029699374007],[24.640446404464058,59.45873988008947],[24.622446224462266,59.46380561189912],[24.622446224462266,59.470559920978644],[24.647646476464786,59.46887134370877],[24.65844658446585,59.47224849824852],[24.662046620466214,59.48069138459795],[24.665646656466578,59.49251142548712],[24.67644676446764,59.4958885800269],[24.687246872468734,59.4958885800269],[24.698046980469826,59.49082284821725],[24.716047160471618,59.475625652788295],[24.72684726847268,59.45873988008947],[24.744847448474502,59.44691983920029],[24.773647736477386,59.45029699374007],[24.78444784447845,59.45536272554969],[24.791647916479178,59.45873988008947],[24.813248132481334,59.484068539137695],[24.816848168481698,59.489134270947346],[24.806048060480606,59.5043314663763],[24.798847988479906,59.511085775455825],[24.791647916479178,59.5144629299956],[24.78444784447845,59.51952866180525],[24.780847808478086,59.529660125424556],[24.780847808478086,59.538103011773956],[24.777247772477722,59.54485732085348],[24.777247772477722,59.55161162993301],[24.773647736477386,59.560054516282435],[24.802448024480242,59.57018597990174],[24.84204842048422,59.55498878447278],[24.91044910449105,59.511085775455825],[24.93564935649357,59.50770862091608],[25.01125011250113,59.51784008453535],[25.03645036450365,59.5144629299956],[25.0760507605076,59.50095431183652],[25.097650976509783,59.497577157296774],[25.115651156511575,59.502642889106426],[25.108451084510847,59.529660125424556],[25.122851228512303,59.53979158904383],[25.14445144451446,59.53979158904383],[25.1948519485195,59.522905816345],[25.407254072540724,59.49082284821725],[25.410854108541088,59.49082284821725],[25.40365403654036,59.5144629299956],[25.414454144541452,59.52628297088478],[25.439654396543972,59.53134870269443],[25.533255332553324,59.53134870269443],[25.544055440554416,59.53472585723418],[25.544055440554416,59.54148016631373],[25.536855368553688,59.54992305266313],[25.526055260552624,59.55330020720291],[25.49725497254974,59.57018597990174],[25.482854828548284,59.61071183437892],[25.47925479254792,59.6512376888561],[25.486454864548648,59.6698120388248],[25.500855008550104,59.663057729745276],[25.536855368553688,59.62928618434762],[25.55485554855548,59.62084329799822],[25.576455764557664,59.617466143458444],[25.590855908559092,59.60564610256927],[25.62325623256234,59.58031744352101],[25.644856448564497,59.57187455717161],[25.677256772567745,59.56680882536196],[25.7060570605706,59.568497402631834],[25.716857168571693,59.587071752600565],[25.709657096570965,59.60395752529939],[25.695256952569537,59.61577756618857],[25.684456844568444,59.62928618434762],[25.691656916569173,59.649549111586225],[25.684456844568444,59.649549111586225],[25.67365673656738,59.65461484339585],[25.670056700567017,59.65630342066575],[25.695256952569537,59.671500616094676],[25.72405724057242,59.66643488428505],[25.78165781657816,59.636040493427146],[25.77445774457746,59.627597607077746],[25.785257852578525,59.61577756618857],[25.792457924579253,59.59044890714031],[25.80685806858068,59.58031744352101],[25.8248582485825,59.57525171171139],[25.835658356583565,59.57694028898126],[25.842858428584293,59.57694028898126],[25.860858608586085,59.58538317533066],[25.87525875258754,59.600580370759616],[25.868058680586813,59.60733467983914],[25.88245882458824,59.630974761617495],[25.904059040590425,59.62422045253797],[25.92565925659258,59.60564610256927],[25.943659436594373,59.595514638949965],[25.96525965259653,59.59720321621984],[25.96525965259653,59.60395752529939],[25.961659616596165,59.61240041164879],[25.96525965259653,59.62084329799822],[25.97605976059762,59.630974761617495],[25.986859868598685,59.63435191615727],[26.00126001260014,59.6326633388874],[26.037260372603726,59.622531875268095],[26.073260732607338,59.60395752529939],[26.076860768607702,59.600580370759616],[26.080460804608066,59.595514638949965],[26.080460804608066,59.587071752600565],[26.09126091260913,59.58538317533066],[26.278462784627862,59.587071752600565],[26.30006300063002,59.58369459806079],[26.339663396633966,59.57018597990174],[26.4008640086401,59.56343167082218],[26.458464584645867,59.546545898123355],[26.498064980649815,59.53979158904383],[26.51966519665197,59.53979158904383],[26.537665376653763,59.54316874358361],[26.57006570065701,59.55667736174266],[26.584465844658467,59.560054516282435],[26.62766627666278,59.55836593901256],[26.663666636666363,59.55161162993301],[26.70326703267034,59.54148016631373],[26.739267392673923,59.52628297088478],[26.782467824678264,59.502642889106426],[26.825668256682576,59.47731423005817],[26.876068760687616,59.467182766438896],[26.919269192691928,59.453674148279816],[26.93726937269375,59.45029699374007],[27.117271172711725,59.44185410739064],[27.275672756727573,59.44691983920029],[27.4088740887409,59.45198557100994],[27.563675636756386,59.43172264377134],[27.718477184771842,59.426656911961686],[27.873278732787327,59.408082561992984],[27.916479164791667,59.41483687107251],[27.95247952479525,59.42834548923159],[27.9848798487985,59.44691983920029],[28.017280172801748,59.48237996186782],[28.056880568805695,59.52797154815465],[28.071280712807123,59.57862886625114],[28.05328053280533,59.62422045253797],[28.017280172801748,59.6596805752055],[27.999279992799927,59.68163207971398],[27.992079920799227,59.70358358422246],[27.995679956799563,59.715403625111634],[28.006480064800655,59.742420861429764],[28.006480064800655,59.75761805685872],[28.056880568805695,59.78970102498647],[28.08568085680858,59.79983248860577],[28.125281252812528,59.79307817952625],[28.16128161281614,59.77619240682742],[28.18648186481866,59.75930663412859],[28.200882008820088,59.73566655235024],[28.208082080820816,59.71033789330198],[28.222482224822244,59.69176354333328],[28.334083340833416,59.66812346155493],[28.373683736837364,59.66643488428505],[28.406084060840612,59.68332065698388],[28.416884168841705,59.70864931603211],[28.42048420484207,59.73566655235024],[28.416884168841705,59.78970102498647],[28.42768427684277,59.813341106764824],[28.449284492844924,59.8352926112733],[28.474484744847445,59.85217838397213],[28.499684996849965,59.86062127032156],[28.517685176851785,59.86230984759143],[28.535685356853577,59.858932693051656],[28.55368553685537,59.85386696124203],[28.582485824858253,59.83360403400343],[28.618486184861865,59.82853830219378],[28.64728647286475,59.82009541584438],[28.668886688866905,59.8167182613046],[28.67968679686797,59.813341106764824],[28.683286832868333,59.8082753749552],[28.694086940869425,59.796455334065996],[28.69768697686979,59.79307817952625],[28.719287192871946,59.78632387044672],[28.733687336873373,59.78970102498647],[28.76608766087662,59.79983248860577],[28.784087840878414,59.79983248860577],[28.812888128881298,59.78970102498647],[28.83088830888309,59.78632387044672],[28.845288452884546,59.78970102498647],[28.884888848888494,59.8167182613046],[28.895688956889586,59.818406838574475],[28.920889208892106,59.813341106764824],[28.93168931689317,59.8167182613046],[28.960489604896054,59.8268497249239],[28.967689676896782,59.8268497249239],[28.97488974889751,59.831915456733554],[29.010890108901094,59.85724411578178],[29.036090360903614,59.88594992936979],[29.03249032490325,59.90114712479874],[28.978489784897846,59.929852938386745],[29.00729007290073,59.92816436111687],[29.01449014490146,59.929852938386745],[29.03969039690398,59.943361556545796],[29.09009090090902,59.98051025648323],[29.118891188911903,59.99401887464228],[29.162091620916215,60.00246176099171],[29.26649266492666,59.997396029182056],[29.500495004950068,59.96869021559405],[29.80289802898031,59.93998440200605],[29.864098640986413,59.91803289749757],[30.116101161011613,59.87075273394083],[30.16290162901629,59.86906415667096],[30.191701917019174,59.880884197560135],[30.216902169021694,59.907901433878266],[30.224102241022422,59.93323009292649],[30.20610206102063,59.943361556545796],[30.216902169021694,59.95855875197475],[30.234902349023486,59.96700163832415],[30.245702457024578,59.97544452467358],[30.234902349023486,59.99064172010253],[30.209702097020966,60.000773183721805],[30.000900009000105,60.01259322461098],[29.9468994689947,60.02947899730981],[29.932499324993245,60.06662769724724],[29.925299252992545,60.06662769724724],[29.91089910899109,60.07507058359664],[29.89649896498966,60.08689062448585],[29.889298892988933,60.1003992426449],[29.892898928989297,60.11390786080395],[29.900099000990025,60.12235074715338],[29.900099000990025,60.13417078804255],[29.88569885698857,60.14936798347148],[29.849698496984985,60.166253756170306],[29.70209702097023,60.20002530156796],[29.525695256952588,60.201713878837865],[29.457294572945727,60.17807379705951],[29.41769417694178,60.16963091071008],[29.255692556925567,60.17638521978961],[29.093690936909383,60.17807379705951],[29.05049050490507,60.18482810613904],[29.01449014490146,60.19664814702821],[28.985689856898574,60.21691107426679],[28.946089460894626,60.264191237823525],[28.920889208892106,60.27938843325245],[28.888488884888858,60.286142742332004],[28.859688596885974,60.2945856286814],[28.841688416884182,60.31653713318988],[28.83088830888309,60.34186579223811],[28.81648816488166,60.36044014220684],[28.79848798487987,60.36888302855624],[28.794887948879506,60.36044014220684],[28.794887948879506,60.348620101317664],[28.787687876878778,60.34186579223811],[28.74808748087483,60.34186579223811],[28.72288722887231,60.34524294677789],[28.708487084870853,60.35199725585741],[28.694086940869425,60.362128719476715],[28.62928629286293,60.375637337635766],[28.618486184861865,60.38239164671529],[28.607686076860773,60.389145955794845],[28.517685176851785,60.48877201471791],[28.45288452884529,60.53942933281439],[28.43848438484386,60.559692260053],[28.45288452884529,60.56475799186265],[28.474484744847445,60.56644656913252],[28.492484924849265,60.56475799186265],[28.506885068850693,60.559692260053],[28.51408514085142,60.55124937370357],[28.517685176851785,60.53267502373487],[28.524885248852485,60.522543560115565],[28.542885428854305,60.51072351922639],[28.618486184861865,60.48877201471791],[28.658086580865813,60.46344335566968],[28.683286832868333,60.45668904659016],[28.701287012870125,60.46175477839978],[28.708487084870853,60.47864055109861],[28.69768697686979,60.500592055607086],[28.686886868868697,60.517477828305914],[28.661686616866177,60.53436360100474],[28.661686616866177,60.55462652824335],[28.661686616866177,60.5782666100217],[28.658086580865813,60.593463805450654],[28.66528665286654,60.61372673268923],[28.686886868868697,60.615415309959104],[28.676086760867605,60.62892392811818],[28.650886508865085,60.655941164436314],[28.643686436864385,60.669449782595365],[28.65448654486545,60.68126982348454],[28.676086760867605,60.67958124621467],[28.69768697686979,60.67282693713514],[28.712087120871217,60.669449782595365],[28.733687336873373,60.69308986437372],[28.72288722887231,60.72179567796172],[28.69048690486906,60.73868145066055],[28.65448654486545,60.72854998704125],[28.636486364863657,60.71672994615207],[28.60408604086041,60.69984417345324],[28.586085860858617,60.68633555529419],[28.575285752857525,60.682958400754416],[28.52128521285215,60.68464697802432],[28.506885068850693,60.68126982348454],[28.4888848888489,60.67282693713514],[28.474484744847445,60.669449782595365],[28.424084240842404,60.67113835986524],[28.398883988839884,60.66607262805559],[28.391683916839185,60.64580970081701],[28.384483844838456,60.62385819630853],[28.3628836288363,60.62385819630853],[28.341283412834144,60.62723535084831],[28.323283232832324,60.620481041768755],[28.330483304833052,60.615415309959104],[28.33768337683378,60.61034957814948],[28.341283412834144,60.60190669180005],[28.34488344883451,60.593463805450654],[28.334083340833416,60.598529537260276],[28.31968319683199,60.60190669180005],[28.305283052830532,60.60190669180005],[28.29448294482947,60.60190669180005],[28.28728287282874,60.598529537260276],[28.283682836828376,60.59515238272053],[28.280082800828012,60.59177522818075],[28.258482584825856,60.579955187291574],[28.2368823688237,60.559692260053],[28.215282152821544,60.54787221916382],[28.21168211682118,60.54618364189392],[28.190081900819024,60.54787221916382],[28.168481684816868,60.55124937370357],[28.157681576815776,60.552937950973444],[28.150481504815048,60.549560796433695],[28.150481504815048,60.54280648735417],[28.146881468814684,60.536052178274616],[28.13608136081362,60.53267502373487],[28.125281252812528,60.53436360100474],[28.107281072810736,60.53774075554452],[28.096480964809643,60.53942933281439],[28.07848078480785,60.53774075554452],[28.049680496804967,60.527609291925216],[28.03528035280354,60.52592071465534],[27.90207902079021,60.52929786919509],[27.869678696786963,60.54111791008427],[27.862478624786263,60.5681351464024],[27.844478444784443,60.558003682783095],[27.830078300783015,60.54111791008427],[27.815678156781587,60.527609291925216],[27.794077940779403,60.53267502373487],[27.797677976779767,60.53774075554452],[27.80847808478086,60.552937950973444],[27.790477904779067,60.56138083732287],[27.77607776077761,60.57320087821205],[27.761677616776183,60.579955187291574],[27.740077400774027,60.57488945548192],[27.743677436774362,60.571512300942175],[27.75087750877509,60.563069414592746],[27.754477544775455,60.559692260053],[27.736477364773663,60.55631510551322],[27.7328773287733,60.544495064624044],[27.740077400774027,60.53098644646499],[27.754477544775455,60.51916640557582],[27.736477364773663,60.514100673766166],[27.7328773287733,60.51241209649626],[27.747277472774726,60.50565778741674],[27.754477544775455,60.50565778741674],[27.718477184771842,60.48877201471791],[27.704077040770414,60.48539486017816],[27.635676356763582,60.49214916925769],[27.646476464764646,60.50396921014686],[27.67527675276753,60.51072351922639],[27.693276932769322,60.51916640557582],[27.65007650076501,60.522543560115565],[27.63207632076322,60.52085498284569],[27.617676176761762,60.51241209649626],[27.606876068760698,60.500592055607086],[27.610476104761062,60.49214916925769],[27.617676176761762,60.48370628290826],[27.628476284762854,60.47188624201908],[27.592475924759242,60.47695197382873],[27.509675096750982,60.514100673766166],[27.47367473674737,60.50565778741674],[27.480874808748098,60.50396921014686],[27.488074880748826,60.50228063287699],[27.49167491674916,60.49214916925769],[27.488074880748826,60.48877201471791],[27.477274772747734,60.482017705638384],[27.47367473674737,60.47864055109861],[27.484474844748462,60.47526339655886],[27.49167491674916,60.47019766474921],[27.502475024750254,60.465131932939556],[27.506075060750618,60.45668904659016],[27.455674556745578,60.46344335566968],[27.369273692736925,60.49721490106734],[27.326073260732613,60.50565778741674],[27.250472504725053,60.50734636468661],[27.23247232472326,60.51241209649626],[27.23247232472326,60.52592071465534],[27.25767257672578,60.52929786919509],[27.30807308073082,60.52592071465534],[27.286472864728665,60.536052178274616],[27.210872108721105,60.559692260053],[27.228872288722897,60.579955187291574],[27.21447214472144,60.585020919101225],[27.192871928719285,60.579955187291574],[27.178471784717857,60.5681351464024],[27.18207182071822,60.552937950973444],[27.19647196471965,60.53774075554452],[27.200072000720013,60.522543560115565],[27.178471784717857,60.51241209649626],[27.174871748717493,60.52592071465534],[27.17127171271713,60.52929786919509],[27.149671496714973,60.52592071465534],[27.13887138871388,60.52929786919509],[27.124471244712453,60.54280648735417],[27.11367113671136,60.54618364189392],[27.10647106471066,60.54280648735417],[27.09567095670957,60.52929786919509],[27.08847088470884,60.52592071465534],[27.077670776707777,60.52929786919509],[27.06327063270632,60.54280648735417],[27.05607056070562,60.54618364189392],[27.04527045270453,60.54618364189392],[27.034470344703465,60.54111791008427],[27.023670236702372,60.536052178274616],[27.023670236702372,60.52929786919509],[27.027270272702737,60.51916640557582],[27.02007020070201,60.514100673766166],[27.01287012870128,60.509034941956514],[26.998469984699852,60.48877201471791],[26.976869768697696,60.48370628290826],[26.93006930069302,60.48539486017816],[26.95526955269554,60.46850908747933],[26.966069660696604,60.45837762386003],[26.96246962469627,60.446557582970854],[26.95526955269554,60.4499347375106],[26.922869228692292,60.46682051020943],[26.915669156691564,60.47526339655886],[26.822068220682212,60.45837762386003],[26.793267932679328,60.45668904659016],[26.800468004680056,60.46344335566968],[26.807668076680784,60.47019766474921],[26.814868148681484,60.48539486017816],[26.796867968679692,60.48539486017816],[26.775267752677536,60.482017705638384],[26.757267572675744,60.47695197382873],[26.742867428674288,60.46850908747933],[26.739267392673923,60.460066201129905],[26.739267392673923,60.44318042843108],[26.739267392673923,60.43642611935155],[26.732067320673224,60.433048964811775],[26.710467104671068,60.42629465573225],[26.699666996669976,60.419540346652724],[26.688866888668883,60.41785176938285],[26.67086670866709,60.427983233002124],[26.649266492664935,60.4414918511612],[26.634866348663508,60.4499347375106],[26.616866168661687,60.45331189205038],[26.59526595265953,60.451623314780505],[26.57726577265774,60.446557582970854],[26.573665736657375,60.43642611935155],[26.55206552065522,60.433048964811775],[26.5268652686527,60.43980327389133],[26.50166501665018,60.45331189205038],[26.483664836648387,60.46850908747933],[26.47646476464766,60.487083437448035],[26.490864908649087,60.49890347833721],[26.516065160651607,60.50565778741674],[26.537665376653763,60.51578925103604],[26.562865628656283,60.54280648735417],[26.566465664656647,60.549560796433695],[26.562865628656283,60.57320087821205],[26.566465664656647,60.58164376456148],[26.580865808658103,60.59177522818075],[26.624066240662415,60.61034957814948],[26.667266672666727,60.606972423609704],[26.75366753667538,60.57488945548192],[26.732067320673224,60.612038155419356],[26.699666996669976,60.64074396900736],[26.660066600666028,60.65256400989654],[26.616866168661687,60.642432546277234],[26.591665916659167,60.62892392811818],[26.55206552065522,60.59177522818075],[26.465664656646567,60.50734636468661],[26.454864548645503,60.47526339655886],[26.487264872648723,60.44318042843108],[26.46926469264693,60.427983233002124],[26.462064620646203,60.4212289239226],[26.45126451264514,60.41616319211295],[26.422464224642255,60.41616319211295],[26.415264152641527,60.411097460303324],[26.422464224642255,60.39590026487437],[26.411664116641163,60.397588842144245],[26.4008640086401,60.402654573953896],[26.382863828638307,60.41616319211295],[26.382863828638307,60.40434315122377],[26.382863828638307,60.39927741941412],[26.37566375663758,60.39590026487437],[26.361263612636122,60.39590026487437],[26.35046350463506,60.392523110334594],[26.35046350463506,60.38576880125507],[26.346863468634695,60.37901449217554],[26.34326343263433,60.375637337635766],[26.32526325263254,60.38239164671529],[26.310863108631082,60.39927741941412],[26.30006300063002,60.41616319211295],[26.289262892628926,60.4229175011925],[26.278462784627862,60.429671810272026],[26.264062640626406,60.4414918511612],[26.246062460624614,60.451623314780505],[26.231662316623186,60.4499347375106],[26.228062280622822,60.438114696621426],[26.24246242462425,60.424606078462375],[26.2748627486275,60.402654573953896],[26.177661776617782,60.411097460303324],[26.170461704617054,60.40940888303342],[26.152461524615262,60.39927741941412],[26.14166141661417,60.39590026487437],[26.13446134461344,60.402654573953896],[26.094860948609494,60.4229175011925],[26.062460624606246,60.433048964811775],[26.048060480604818,60.438114696621426],[26.012060120601205,60.46175477839978],[25.979659796597986,60.47526339655886],[25.947259472594737,60.48370628290826],[25.918459184591853,60.48539486017816],[25.918459184591853,60.47864055109861],[25.972459724597257,60.465131932939556],[25.98325983259832,60.45837762386003],[26.004860048600506,60.43980327389133],[26.030060300603026,60.433048964811775],[26.037260372603726,60.424606078462375],[26.04086040860409,60.41447461484307],[26.04086040860409,60.40603172849367],[26.03366033660336,60.40096599668402],[26.01566015660157,60.40096599668402],[26.00846008460084,60.40096599668402],[26.012060120601205,60.389145955794845],[26.022860228602298,60.38070306944542],[26.05886058860588,60.36888302855624],[26.080460804608066,60.35030867858754],[26.087660876608766,60.34355436950801],[26.102061020610222,60.34186579223811],[26.10926109261092,60.335111483158585],[26.105661056610586,60.32329144226941],[26.098460984609858,60.31147140138023],[26.09126091260913,60.30640566957058],[26.04086040860409,60.299651360491055],[26.037260372603726,60.32329144226941],[25.997659976599778,60.35537441039719],[26.004860048600506,60.36888302855624],[25.994059940599413,60.367194451286366],[25.98325983259832,60.36381729674659],[25.97605976059762,60.357062987667064],[25.968859688596893,60.35537441039719],[25.9580595805958,60.35537441039719],[25.947259472594737,60.35875156493694],[25.88965889658897,60.389145955794845],[25.868058680586813,60.397588842144245],[25.842858428584293,60.402654573953896],[25.878858788587905,60.37732591490567],[25.90045900459006,60.367194451286366],[25.918459184591853,60.36044014220684],[25.90765907659076,60.340177214968236],[25.886058860588605,60.31991428772963],[25.88245882458824,60.30640566957058],[25.893258932589333,60.29120847414163],[25.922059220592217,60.2658798150934],[25.929259292592945,60.245616887854794],[25.90765907659076,60.245616887854794],[25.893258932589333,60.24899404239457],[25.88245882458824,60.2557483514741],[25.868058680586813,60.2658798150934],[25.87525875258754,60.272634124172924],[25.860858608586085,60.2844541650621],[25.842858428584293,60.28783131960188],[25.821258212582137,60.28951989687175],[25.79965799657998,60.29289705141153],[25.770857708577097,60.31484855592001],[25.752857528575305,60.31991428772963],[25.73845738457385,60.313159978650106],[25.745657456574577,60.29627420595128],[25.78165781657816,60.28276558779223],[25.85005850058502,60.2658798150934],[25.78165781657816,60.250682619664445],[25.78165781657816,60.245616887854794],[25.76365763657637,60.24055115604517],[25.734857348573485,60.2473054651247],[25.65565655656556,60.29289705141153],[25.64845648456486,60.299651360491055],[25.652056520565225,60.313159978650106],[25.659256592565924,60.32329144226941],[25.670056700567017,60.326668596809185],[25.64845648456486,60.33342290588871],[25.64845648456486,60.34186579223811],[25.7060570605706,60.34186579223811],[25.691656916569173,60.362128719476715],[25.670056700567017,60.36381729674659],[25.644856448564497,60.357062987667064],[25.63045630456304,60.34693152404776],[25.601656016560185,60.33848863769836],[25.526055260552624,60.326668596809185],[25.526055260552624,60.321602864999534],[25.540455404554052,60.31653713318988],[25.54765547655478,60.30640566957058],[25.544055440554416,60.29289705141153],[25.540455404554052,60.27938843325245],[25.536855368553688,60.2760112787127],[25.52965529655296,60.2743227014428],[25.52245522455226,60.27094554690305],[25.515255152551532,60.25405977420422],[25.511655116551168,60.24899404239457],[25.50445504455044,60.245616887854794],[25.360453604536048,60.245616887854794],[25.36405364053641,60.26081408328375],[25.349653496534984,60.26756839236327],[25.31365313653137,60.272634124172924],[25.317253172531736,60.26756839236327],[25.3208532085321,60.2557483514741],[25.3208532085321,60.250682619664445],[25.292052920529215,60.245616887854794],[25.198451984519863,60.245616887854794],[25.191251912519135,60.24392831058492],[25.191251912519135,60.24055115604517],[25.191251912519135,60.228731115155966],[25.191251912519135,60.22704253788609],[25.184051840518407,60.223665383346344],[25.173251732517343,60.22535396061622],[25.155251552515523,60.23210826969574],[25.155251552515523,60.223665383346344],[25.191251912519135,60.21184534245714],[25.205652056520563,60.20509103337761],[25.1948519485195,60.20002530156796],[25.180451804518043,60.20002530156796],[25.198451984519863,60.18989383794869],[25.17685176851768,60.183139528869134],[25.115651156511575,60.17638521978961],[25.09405094050942,60.17638521978961],[25.097650976509783,60.183139528869134],[25.097650976509783,60.18651668340891],[25.10125101251012,60.18989383794869],[25.058050580505807,60.17807379705951],[25.047250472504743,60.16963091071008],[25.0688506885069,60.16287660163056],[25.06165061650617,60.15612229255103],[25.04365043650438,60.15612229255103],[25.029250292502923,60.147679406201604],[25.01125011250113,60.15105656074138],[24.996849968499703,60.16287660163056],[25.01125011250113,60.16963091071008],[25.022050220502223,60.18482810613904],[25.02565025650256,60.20002530156796],[25.01845018450186,60.21184534245714],[25.00045000450004,60.21353391972704],[24.98604986049861,60.20002530156796],[24.96084960849609,60.15105656074138],[24.950049500495,60.144302251661856],[24.86724867248674,60.14092509712208],[24.845648456484582,60.144302251661856],[24.83484834848349,60.15612229255103],[24.870848708487102,60.16118802436068],[24.86724867248674,60.179762374329385],[24.84204842048422,60.19495956975834],[24.806048060480606,60.18989383794869],[24.827648276482762,60.16287660163056],[24.813248132481334,60.157810869820906],[24.78444784447845,60.14599082893173],[24.773647736477386,60.14261367439195],[24.719647196471982,60.139236519852204],[24.687246872468734,60.13248221077268],[24.680046800468006,60.130793633502776],[24.672846728467306,60.125727901693125],[24.672846728467306,60.1189735926136],[24.67644676446764,60.10546497445455],[24.669246692466942,60.1003992426449],[24.654846548465486,60.1003992426449],[24.65124651246512,60.1088421289943],[24.647646476464786,60.120662169883474],[24.64404644046442,60.1291050562329],[24.629646296462965,60.13585936531243],[24.56844568445686,60.15443371528113],[24.554045540455405,60.15612229255103],[24.55044550445504,60.152745138011255],[24.561245612456133,60.14261367439195],[24.57564575645756,60.13585936531243],[24.590045900459018,60.13248221077268],[24.597245972459746,60.12741647896303],[24.586445864458653,60.11559643807385],[24.57564575645756,60.10715355172442],[24.561245612456133,60.103776397184646],[24.546845468454705,60.1003992426449],[24.539645396453977,60.08689062448585],[24.60804608046081,60.1003992426449],[24.604446044460445,60.09195635629547],[24.59364593645938,60.085202047215944],[24.57564575645756,60.07338200632677],[24.59364593645938,60.06662769724724],[24.59364593645938,60.059873388167716],[24.52524525245252,60.03454472911946],[24.489244892448937,60.005838915531456],[24.46764467644678,59.99570745191215],[24.446044460444625,59.992330297372405],[24.41724417244174,59.99064172010253],[24.42444424444244,60.005838915531456],[24.453244532445325,60.03792188365924],[24.464044640446417,60.04636477000864],[24.446044460444625,60.04805334727854],[24.420844208442105,60.03623330638936],[24.3740437404374,60.00415033826158],[24.3668436684367,60.022724688230284],[24.34884348843488,60.01597037915076],[24.33084330843309,60.00415033826158],[24.312843128431297,59.997396029182056],[24.320043200432025,60.014281801880884],[24.33084330843309,60.02103611096041],[24.345243452434545,60.02610184277006],[24.35604356043561,60.03623330638936],[24.359643596435973,60.04298761546889],[24.359643596435973,60.05143050181829],[24.359643596435973,60.06156196543759],[24.3668436684367,60.07338200632677],[24.320043200432025,60.07507058359664],[24.294842948429505,60.07169342905689],[24.276842768427684,60.059873388167716],[24.29124291242914,60.05311907908819],[24.262442624426257,60.041299038198986],[24.251642516425164,60.03961046092911],[24.237242372423736,60.03961046092911],[24.20484204842049,60.04636477000864],[24.176041760417604,60.04805334727854],[24.158041580415812,60.04298761546889],[24.158041580415812,60.03454472911946],[24.183241832418332,60.02610184277006],[24.16524165241654,60.019347533690535],[24.14724147241472,60.022724688230284],[24.132841328413292,60.027790420039935],[24.1148411484115,60.032856151849586],[24.107641076410772,60.03116757457971],[24.068040680406824,60.02103611096041],[24.057240572405732,60.02103611096041],[24.04644046440464,60.02610184277006],[24.028440284402848,60.00921607007123],[24.010440104401056,60.01090464734111],[24.003240032400328,60.02103611096041],[24.017640176401784,60.032856151849586],[24.017640176401784,60.03961046092911],[23.999639996399964,60.03792188365924],[23.9888398883989,60.03116757457971],[23.98163981639817,60.022724688230284],[23.97083970839708,60.01259322461098],[23.95643956439565,60.00415033826158],[23.942039420394224,59.99908460645193],[23.873638736387363,59.992330297372405],[23.798037980379803,59.956870174704875],[23.772837728377283,59.96869021559405],[23.607236072360735,59.956870174704875],[23.59283592835928,59.961935906514526],[23.582035820358215,59.9737559474037],[23.574835748357486,59.97713310194345],[23.56043560435606,59.97713310194345],[23.495634956349562,59.96869021559405],[23.45243452434525,59.956870174704875],[23.430834308343094,59.956870174704875],[23.441634416344158,59.9720673701338],[23.4848348483485,60.01090464734111],[23.499234992349926,60.019347533690535],[23.52803528035281,60.024413265500186],[23.542435424354238,60.02947899730981],[23.542435424354238,60.03623330638936],[23.53523535235354,60.04467619273876],[23.53523535235354,60.05311907908819],[23.538835388353903,60.063250542707465],[23.546035460354602,60.07338200632677],[23.51003510035102,60.06662769724724],[23.499234992349926,60.063250542707465],[23.492034920349198,60.054807656358065],[23.4848348483485,60.04467619273876],[23.47763477634777,60.03623330638936],[23.463234632346342,60.032856151849586],[23.45243452434525,60.027790420039935],[23.448834488344886,60.01765895642063],[23.445234452344522,60.005838915531456],[23.438034380343822,59.99401887464228],[23.430834308343094,59.98895314283263],[23.409234092340938,59.98051025648323],[23.398433984339846,59.9737559474037],[23.366033660336598,59.9450501338157],[23.32643326433265,59.92309862930722],[23.23643236432366,59.89776997025896],[23.222032220322205,59.88594992936979],[23.222032220322205,59.867375579401084],[23.232832328323298,59.85217838397213],[23.25083250832509,59.84880122943238],[23.25083250832509,59.840358343082954],[23.081630816308177,59.8268497249239],[23.06723067230672,59.82009541584438],[23.006030060300617,59.8268497249239],[22.98442984429846,59.823472570384126],[22.96642966429664,59.818406838574475],[22.905229052290537,59.81165252949495],[22.887228872288716,59.813341106764824],[22.905229052290537,59.82009541584438],[22.930429304293057,59.84204692035283],[22.944829448294485,59.84880122943238],[22.988029880298797,59.85217838397213],[23.128431284312853,59.88594992936979],[23.1680316803168,59.88932708390956],[23.1608316083161,59.90959001114814],[23.164431644316437,59.91803289749757],[23.178831788317893,59.91803289749757],[23.189631896318957,59.916344320227694],[23.222032220322205,59.916344320227694],[23.247232472324725,59.92309862930722],[23.26883268832688,59.93660724746627],[23.2940329403294,59.95855875197475],[23.308433084330858,59.978821679213326],[23.32643326433265,60.00921607007123],[23.333633336333378,60.02947899730981],[23.315633156331558,60.022724688230284],[23.25083250832509,59.94842728835545],[23.222032220322205,59.929852938386745],[23.204032040320413,59.929852938386745],[23.204032040320413,59.93323009292649],[23.207632076320778,59.93998440200605],[23.21123211232114,59.943361556545796],[23.20043200432005,59.94842728835545],[23.189631896318957,59.95011586562532],[23.178831788317893,59.94842728835545],[23.1680316803168,59.943361556545796],[23.171631716317165,59.93660724746627],[23.132031320313217,59.943361556545796],[23.121231212312125,59.93323009292649],[23.11763117631176,59.92309862930722],[23.11043110431106,59.92309862930722],[23.103231032310333,59.929852938386745],[23.09963099630997,59.93998440200605],[23.11043110431106,59.970378792863926],[23.11043110431106,59.9737559474037],[23.128431284312853,59.98388741102298],[23.204032040320413,59.997396029182056],[23.21843218432184,60.00752749280136],[23.240032400323997,60.032856151849586],[23.258032580325818,60.03961046092911],[23.204032040320413,60.049741924548414],[23.106831068310697,60.03961046092911],[23.06003060030602,60.03961046092911],[23.0348303483035,60.04467619273876],[23.013230132301317,60.05143050181829],[22.995229952299525,60.06156196543759],[22.99162991629916,60.076759160866544],[22.99882998829989,60.090267779025595],[23.013230132301317,60.10208781991477],[23.045630456304565,60.12235074715338],[23.02403024030241,60.13585936531243],[23.020430204302045,60.1291050562329],[23.00963009630098,60.112219283534074],[23.006030060300617,60.10715355172442],[22.995229952299525,60.103776397184646],[22.977229772297733,60.09871066537502],[22.970029700297005,60.09364493356537],[22.970029700297005,60.1105307062642],[22.95922959229594,60.12235074715338],[22.94122941229412,60.12741647896303],[22.9088290882909,60.13248221077268],[22.887228872288716,60.144302251661856],[22.876428764287652,60.14936798347148],[22.88362883628838,60.15949944709078],[22.887228872288716,60.16963091071008],[22.880028800288017,60.17807379705951],[22.86562865628656,60.183139528869134],[22.92322923229233,60.23041969242587],[22.94122941229412,60.245616887854794],[23.006030060300617,60.277699855982576],[23.02403024030241,60.29289705141153],[23.031230312303137,60.30302851503083],[23.038430384303837,60.31991428772963],[23.045630456304565,60.326668596809185],[23.070830708307085,60.33848863769836],[23.081630816308177,60.34524294677789],[23.081630816308177,60.35537441039719],[23.06003060030602,60.357062987667064],[23.0348303483035,60.34355436950801],[23.00963009630098,60.32329144226941],[22.99882998829989,60.30640566957058],[22.94122941229412,60.31653713318988],[22.876428764287652,60.30133993776093],[22.736027360273596,60.23886257877527],[22.610026100261024,60.22028822880657],[22.552425524255256,60.20509103337761],[22.52362523625237,60.20509103337761],[22.5380253802538,60.21353391972704],[22.592025920259204,60.23210826969574],[22.57402574025741,60.23548542423552],[22.570425704257048,60.242239733315046],[22.592025920259204,60.26250266055362],[22.602826028260296,60.26756839236327],[22.649626496264972,60.27938843325245],[22.59922599225993,60.2760112787127],[22.57402574025741,60.27094554690305],[22.527225272252736,60.25237119693435],[22.502025020250215,60.2473054651247],[22.44802448024481,60.245616887854794],[22.458824588245903,60.25237119693435],[22.458824588245903,60.25912550601387],[22.458824588245903,60.264191237823525],[22.46242462424624,60.272634124172924],[22.469624696246967,60.277699855982576],[22.48762487624876,60.2844541650621],[22.509225092250944,60.30133993776093],[22.541625416254163,60.31822571045976],[22.545225452254527,60.33342290588871],[22.595625956259568,60.36381729674659],[22.628026280262816,60.375637337635766],[22.63162631626318,60.389145955794845],[22.62442624426245,60.39927741941412],[22.58122581225814,60.375637337635766],[22.545225452254527,60.37226018309602],[22.46242462424624,60.375637337635766],[22.484024840248424,60.402654573953896],[22.325623256232575,60.38239164671529],[22.293222932229327,60.38239164671529],[22.2788227882279,60.38576880125507],[22.250022500225015,60.40434315122377],[22.181621816218183,60.429671810272026],[22.160021600215998,60.43473754208168],[22.116821168211686,60.43642611935155],[22.109621096210958,60.44486900570095],[22.109621096210958,60.45668904659016],[22.10242102421026,60.46175477839978],[22.084420844208438,60.446557582970854],[22.062820628206282,60.43642611935155],[22.048420484204854,60.438114696621426],[22.01962019620197,60.45668904659016],[22.016020160201606,60.460066201129905],[22.01962019620197,60.46850908747933],[22.01962019620197,60.47188624201908],[22.012420124201242,60.47188624201908],[22.001620016200178,60.47019766474921],[21.998019980199814,60.47188624201908],[21.990819908199086,60.47526339655886],[21.983619836198358,60.47695197382873],[21.980019800198022,60.48032912836851],[21.983619836198358,60.49214916925769],[21.93681936819368,60.49214916925769],[21.940419404194046,60.49890347833721],[21.94401944019441,60.51241209649626],[21.951219512195138,60.51916640557582],[21.933219332193318,60.52423213738544],[21.904419044190462,60.52929786919509],[21.875618756187578,60.52929786919509],[21.85401854018542,60.52592071465534],[21.84321843218433,60.51578925103604],[21.846818468184694,60.50396921014686],[21.875618756187578,60.47864055109861],[21.8288182881829,60.48539486017816],[21.807218072180717,60.48539486017816],[21.78561785617856,60.47864055109861],[21.789217892178925,60.495526323797435],[21.80361803618038,60.52592071465534],[21.807218072180717,60.54618364189392],[21.80361803618038,60.56138083732287],[21.807218072180717,60.57488945548192],[21.81801818018181,60.585020919101225],[21.846818468184694,60.588398073641],[21.832418324183237,60.5968409599904],[21.8288182881829,60.606972423609704],[21.832418324183237,60.61710388722901],[21.839618396183965,60.62892392811818],[21.774817748177497,60.60359526906993],[21.75321753217534,60.59177522818075],[21.731617316173157,60.58164376456148],[21.67761677616778,60.576578032751826],[21.663216632166325,60.5681351464024],[21.65961659616596,60.559692260053],[21.670416704167053,60.544495064624044],[21.663216632166325,60.536052178274616],[21.65961659616596,60.53098644646499],[21.656016560165597,60.52592071465534],[21.656016560165597,60.51916640557582],[21.656016560165597,60.509034941956514],[21.64161641616417,60.495526323797435],[21.612816128161285,60.48877201471791],[21.580415804158037,60.487083437448035],[21.55881558815588,60.49214916925769],[21.5840158401584,60.50565778741674],[21.569615696156973,60.52592071465534],[21.519215192151933,60.5681351464024],[21.53361533615336,60.5681351464024],[21.580415804158037,60.559692260053],[21.580415804158037,60.5681351464024],[21.555215552155516,60.571512300942175],[21.486814868148684,60.57488945548192],[21.454414544145436,60.5681351464024],[21.443614436144372,60.5681351464024],[21.43281432814328,60.56982372367227],[21.418414184141852,60.5782666100217],[21.40761407614076,60.579955187291574],[21.40761407614076,60.588398073641],[21.414814148141488,60.588398073641],[21.418414184141852,60.59008665091088],[21.429214292142916,60.593463805450654],[21.414814148141488,60.60866100087958],[21.443614436144372,60.60190669180005],[21.461614616146164,60.60190669180005],[21.468814688146892,60.60866100087958],[21.422014220142216,60.62892392811818],[21.40041400414006,60.633989659927835],[21.378813788137876,60.647498278086886],[21.364413644136448,60.66269547351584],[21.353613536135356,60.67620409167489],[21.353613536135356,60.68126982348454],[21.35721357213572,60.682958400754416],[21.35721357213572,60.68464697802432],[21.353613536135356,60.68971270983397],[21.42561425614258,60.67958124621467],[21.44001440014401,60.67958124621467],[21.447214472144736,60.69308986437372],[21.44001440014401,60.70322132799302],[21.43281432814328,60.71335279161232],[21.422014220142216,60.7251728325015],[21.468814688146892,60.7251728325015],[21.468814688146892,60.731927141581025],[21.447214472144736,60.731927141581025],[21.42561425614258,60.736992873390676],[21.40761407614076,60.7437471824702],[21.386013860138604,60.75219006881963],[21.404014040140396,60.758944377899155],[21.411214112141124,60.758944377899155],[21.422014220142216,60.758944377899155],[21.40041400414006,60.77414157332808],[21.386013860138604,60.77920730513773],[21.37521375213754,60.77920730513773],[21.38241382413824,60.79271592329681],[21.37521375213754,60.807913118725736],[21.360813608136084,60.816356005075164],[21.346413464134656,60.81297885053539],[21.339213392133928,60.816356005075164],[21.3320133201332,60.821421736884815],[21.328413284132836,60.82817604596434],[21.3248132481325,60.834930355043866],[21.335613356133564,60.84506181866317],[21.317613176131772,60.865324745901745],[21.3320133201332,60.86870190044152],[21.38241382413824,60.86363616863187],[21.40761407614076,60.865324745901745],[21.429214292142916,60.87545620952105],[21.418414184141852,60.8805219413307],[21.40761407614076,60.88221051860057],[21.38241382413824,60.88221051860057],[21.37521375213754,60.883899095870476],[21.353613536135356,60.90247344583918],[21.364413644136448,60.90416202310905],[21.38241382413824,60.914293486728354],[21.389613896138968,60.91598206399823],[21.40041400414006,60.914293486728354],[21.40761407614076,60.90753917764883],[21.414814148141488,60.90247344583918],[21.429214292142916,60.90247344583918],[21.422014220142216,60.91260490945848],[21.418414184141852,60.92442495034766],[21.411214112141124,60.932867836697056],[21.404014040140396,60.93793356850671],[21.393213932139332,60.93962214577658],[21.389613896138968,60.94299930031636],[21.386013860138604,60.949753609395884],[21.378813788137876,60.95819649574531],[21.335613356133564,61.003788082032145],[21.317613176131772,61.012230968381544],[21.3320133201332,61.02405100927072],[21.339213392133928,61.0274281638105],[21.310413104131044,61.0375596274298],[21.303213032130316,61.0460025137792],[21.29961299612998,61.05951113193828],[21.321213212132136,61.05951113193828],[21.364413644136448,61.044313936509326],[21.386013860138604,61.04093678196955],[21.40761407614076,61.04262535923945],[21.40761407614076,61.047691091049074],[21.40761407614076,61.05106824558885],[21.389613896138968,61.05782255466838],[21.368013680136812,61.05951113193828],[21.396813968139696,61.06964259555755],[21.454414544145436,61.05444540012863],[21.48321483214832,61.05951113193828],[21.468814688146892,61.066265441017805],[21.454414544145436,61.07808548190698],[21.4508145081451,61.09159410006603],[21.461614616146164,61.101725563685335],[21.4508145081451,61.12536564546369],[21.447214472144736,61.13549710908299],[21.436414364143644,61.142251418162516],[21.443614436144372,61.142251418162516],[21.468814688146892,61.14900572724204],[21.461614616146164,61.14900572724204],[21.454414544145436,61.150694304511944],[21.4508145081451,61.15238288178182],[21.443614436144372,61.15576003632157],[21.4580145801458,61.169268654480646],[21.443614436144372,61.169268654480646],[21.454414544145436,61.17602296356017],[21.472414724147256,61.177711540830046],[21.504815048150476,61.177711540830046],[21.497614976149777,61.18784300444935],[21.497614976149777,61.191220158989125],[21.52641526415266,61.199663045338525],[21.55881558815588,61.204728777148176],[21.544415444154453,61.22499170438678],[21.522815228152297,61.235123168006055],[21.47601476014762,61.24525463162536],[21.486814868148684,61.25538609524466],[21.497614976149777,61.26045182705431],[21.50841508415084,61.26720613613384],[21.504815048150476,61.27902617702301],[21.544415444154453,61.27902617702301],[21.544415444154453,61.28746906337244],[21.54081540815409,61.29253479518209],[21.544415444154453,61.311109145150795],[21.544415444154453,61.3212406087701],[21.54081540815409,61.32630634057972],[21.53361533615336,61.3296834951195],[21.530015300152996,61.33474922692915],[21.530015300152996,61.3398149587388],[21.530015300152996,61.3499464223581],[21.530015300152996,61.35501215416775],[21.522815228152297,61.37527508140633],[21.519215192151933,61.382029390485854],[21.504815048150476,61.38878369956538],[21.49041490414905,61.39384943137503],[21.461614616146164,61.39891516318468],[21.447214472144736,61.40229231772446],[21.479614796147956,61.41073520407386],[21.54081540815409,61.409046626803985],[21.573215732157337,61.41580093588351],[21.55881558815588,61.430998131312464],[21.54081540815409,61.44281817220164],[21.512015120151204,61.458015367630594],[21.443614436144372,61.47490114032942],[21.422014220142216,61.485032603948696],[21.555215552155516,61.47490114032942],[21.59121591215913,61.485032603948696],[21.569615696156973,61.5137384175367],[21.56601566015661,61.51880414934635],[21.55161551615518,61.52218130388613],[21.522815228152297,61.51711557207648],[21.512015120151204,61.51880414934635],[21.468814688146892,61.547509962934356],[21.461614616146164,61.55764142655366],[21.461614616146164,61.56270715836331],[21.46521465214653,61.564395735633184],[21.48321483214832,61.56777289017296],[21.50841508415084,61.569461467442835],[21.623616236162377,61.54582138566448],[21.688416884168845,61.523869881156],[21.71721717217173,61.51880414934635],[21.71721717217173,61.52724703569578],[21.648816488164897,61.561018581093435],[21.612816128161285,61.58465866287179],[21.59121591215913,61.62856167188875],[21.573215732157337,61.63531598096827],[21.55161551615518,61.64038171277792],[21.537215372153725,61.6505131763972],[21.537215372153725,61.65726748547675],[21.544415444154453,61.67246468090568],[21.54081540815409,61.680907567255105],[21.519215192151933,61.70454764903346],[21.519215192151933,61.71130195811298],[21.537215372153725,61.707924803573235],[21.569615696156973,61.694416185414156],[21.587615876158765,61.69779333995393],[21.55881558815588,61.71299053538286],[21.49041490414905,61.73663061716124],[21.468814688146892,61.76027069893959],[21.472414724147256,61.77209073982877],[21.48321483214832,61.78559935798782],[21.49041490414905,61.7991079761469],[21.486814868148684,61.810928017036076],[21.472414724147256,61.8176823261156],[21.454414544145436,61.819370903385476],[21.443614436144372,61.826125212465],[21.447214472144736,61.841322407893955],[21.418414184141852,61.863273912402434],[21.404014040140396,61.876782530561485],[21.393213932139332,61.88860257145066],[21.404014040140396,61.89366830326031],[21.411214112141124,61.90042261233984],[21.414814148141488,61.90717692141939],[21.393213932139332,61.91393123049892],[21.389613896138968,61.92068553957844],[21.386013860138604,61.930817003197745],[21.378813788137876,61.93757131227727],[21.371613716137176,61.939259889547145],[21.3248132481325,61.93757131227727],[21.317613176131772,61.939259889547145],[21.314013140131408,61.939259889547145],[21.288812888128888,61.94939135316645],[21.278012780127796,61.95107993043632],[21.296012960129616,61.97134285767493],[21.28161281612816,61.979785744024326],[21.234812348123484,61.98485147583398],[21.278012780127796,62.050705989359415],[21.285212852128524,62.07434607113777],[21.288812888128888,62.121626234694475],[21.296012960129616,62.1300691210439],[21.314013140131408,62.1098061938053],[21.328413284132836,62.1385120073933],[21.3320133201332,62.15202062555238],[21.3248132481325,62.16384066644156],[21.339213392133928,62.175660707330735],[21.371613716137176,62.18579217095004],[21.38241382413824,62.19423505729944],[21.389613896138968,62.20774367545849],[21.38241382413824,62.21787513907779],[21.353613536135356,62.23138375723687],[21.37521375213754,62.2668438799044],[21.353613536135356,62.2668438799044],[21.339213392133928,62.25502383901522],[21.328413284132836,62.241515220856144],[21.314013140131408,62.23138375723687],[21.317613176131772,62.2482695299357],[21.328413284132836,62.2769753435237],[21.3320133201332,62.29386111622253],[21.3320133201332,62.34114127977924],[21.339213392133928,62.35633847520819],[21.285212852128524,62.34451843431901],[21.270812708127096,62.349584166128636],[21.263612636126368,62.35971562974794],[21.260012600126004,62.371535670637115],[21.263612636126368,62.385044288796195],[21.278012780127796,62.39686432968537],[21.270812708127096,62.41037294784442],[21.2060120601206,62.35971562974794],[21.202412024120235,62.349584166128636],[21.21681216812169,62.33438697069971],[21.195211952119536,62.33776412523946],[21.188011880118808,62.35296132066841],[21.195211952119536,62.37322424790702],[21.202412024120235,62.390110020605846],[21.195211952119536,62.39179859787572],[21.188011880118808,62.39517575241547],[21.18081180811808,62.39686432968537],[21.188011880118808,62.40868437057455],[21.195211952119536,62.4137501023842],[21.202412024120235,62.41712725692395],[21.184411844118443,62.42388156600347],[21.16641166411665,62.420504411463725],[21.14841148411486,62.4137501023842],[21.134011340113403,62.4036186387649],[21.13041130411304,62.41712725692395],[21.14841148411486,62.447521647781855],[21.15561155611556,62.46440742048068],[21.137611376113767,62.45765311140113],[21.12321123211234,62.45427595686138],[21.11601116011161,62.45934168867103],[21.112411124111247,62.477916038639734],[21.11601116011161,62.496490388608436],[21.12321123211234,62.509999006767515],[21.137611376113767,62.52013047038679],[21.15561155611556,62.52688477946634],[21.14841148411486,62.53532766581574],[21.126811268112675,62.553902015784445],[21.14841148411486,62.56234490213387],[21.16641166411665,62.575853520292924],[21.188011880118808,62.58429640664235],[21.209612096120964,62.58260782937245],[21.195211952119536,62.60118217934118],[21.12321123211234,62.60962506569058],[21.10521105211052,62.62313368384966],[21.094410944109455,62.61975652930988],[21.083610836108363,62.613002220230356],[21.06561065610657,62.59611644753153],[21.069210692106935,62.61975652930988],[21.083610836108363,62.65859380651719],[21.080010800108,62.678856733755765],[21.09801098010982,62.68054531102567],[21.126811268112675,62.69067677464494],[21.14841148411486,62.70418539280402],[21.159211592115923,62.719382588232946],[21.159211592115923,62.72951405185225],[21.15561155611556,62.73120262912215],[21.14841148411486,62.73120262912215],[21.14121141211413,62.732891206392026],[21.12321123211234,62.74302267001133],[21.11601116011161,62.74977697909085],[21.108811088110883,62.76666275178968],[21.112411124111247,62.78185994721861],[21.13041130411304,62.790302833568035],[21.152011520115195,62.79367998810781],[21.170011700117016,62.78523710175838],[21.184411844118443,62.78185994721861],[21.188011880118808,62.790302833568035],[21.19161191611917,62.79367998810781],[21.209612096120964,62.80718860626686],[21.21681216812169,62.81563149261626],[21.220412204122056,62.830828688045216],[21.22401224012242,62.84602588347417],[21.227612276122755,62.857845924363346],[21.24201242012421,62.86966596525252],[21.267212672126732,62.86966596525252],[21.335613356133564,62.85615734709347],[21.35721357213572,62.85953450163322],[21.364413644136448,62.86460023344287],[21.38241382413824,62.874731697062174],[21.389613896138968,62.879797428871825],[21.396813968139696,62.88655173795135],[21.40041400414006,62.9000603561104],[21.40761407614076,62.91356897426948],[21.418414184141852,62.93552047877793],[21.422014220142216,62.942274787857485],[21.429214292142916,62.94396336512736],[21.461614616146164,62.950717674206885],[21.447214472144736,62.986177796874415],[21.443614436144372,63.004752146843146],[21.443614436144372,63.026703651351625],[21.44001440014401,63.035146537701024],[21.44001440014401,63.0385236922408],[21.443614436144372,63.040212269510675],[21.4580145801458,63.0469665785902],[21.468814688146892,63.048655155860075],[21.47601476014762,63.043589424050424],[21.479614796147956,63.043589424050424],[21.48321483214832,63.05878661947938],[21.494014940149412,63.07229523763846],[21.522815228152297,63.06385235128903],[21.56601566015661,63.040212269510675],[21.594815948159493,63.035146537701024],[21.62721627216274,63.02332649681185],[21.656016560165597,63.018260765002196],[21.688416884168845,63.026703651351625],[21.645216452164533,63.05540946493963],[21.580415804158037,63.084115278527634],[21.55881558815588,63.09593531941681],[21.55161551615518,63.10775536030599],[21.573215732157337,63.12295255573491],[21.55881558815588,63.11957540119516],[21.544415444154453,63.11788682392529],[21.53361533615336,63.11957540119516],[21.519215192151933,63.12632971027469],[21.51561515615157,63.138149751163866],[21.519215192151933,63.14828121478317],[21.51561515615157,63.15503552386269],[21.504815048150476,63.15672410113257],[21.512015120151204,63.168544142021744],[21.522815228152297,63.17192129656152],[21.55161551615518,63.17192129656152],[21.55161551615518,63.17867560564105],[21.512015120151204,63.18542991472057],[21.50121501215014,63.192184223800126],[21.497614976149777,63.209069996498954],[21.504815048150476,63.217512882848354],[21.522815228152297,63.22595576919778],[21.544415444154453,63.231021501007405],[21.55881558815588,63.23271007827731],[21.61641616416165,63.2040042646893],[21.648816488164897,63.19724995560978],[21.66681666816669,63.21920146011823],[21.688416884168845,63.21075857376883],[21.713617136171365,63.2023156874194],[21.74241742417425,63.19893853287965],[21.764017640176405,63.20569284195918],[21.749617496174977,63.21075857376883],[21.71721717217173,63.21582430557848],[21.7028170281703,63.21920146011823],[21.7028170281703,63.22595576919778],[21.74241742417425,63.23946438735683],[21.756817568175677,63.24115296462671],[21.800018000180017,63.23946438735683],[21.821618216182173,63.244530119166484],[21.86841868418685,63.25972731459541],[21.89361893618937,63.25972731459541],[21.882818828188277,63.24621869643636],[21.882818828188277,63.236087232817056],[21.890018900189006,63.19724995560978],[21.890018900189006,63.18880706926035],[21.87921879218794,63.17867560564105],[21.904419044190462,63.1752984511013],[21.983619836198358,63.14321548297352],[21.972819728197294,63.165166987481996],[21.954819548195502,63.18542991472057],[21.983619836198358,63.19049564653022],[21.99441994419945,63.19724995560978],[22.005220052200542,63.20569284195918],[22.008820088200878,63.21582430557848],[22.012420124201242,63.22426719192788],[22.016020160201606,63.23271007827731],[22.023220232202334,63.23946438735683],[22.04482044820449,63.24621869643636],[22.052020520205218,63.24115296462671],[22.062820628206282,63.23271007827731],[22.073620736207374,63.22595576919778],[22.088020880208802,63.22595576919778],[22.113221132211322,63.236087232817056],[22.12762127621278,63.23946438735683],[22.138421384213842,63.23777581008696],[22.160021600215998,63.231021501007405],[22.174421744217454,63.23271007827731],[22.181621816218183,63.236087232817056],[22.181621816218183,63.23946438735683],[22.181621816218183,63.244530119166484],[22.181621816218183,63.24621869643636],[22.188821888218882,63.24621869643636],[22.19602196021961,63.244530119166484],[22.20322203222034,63.24115296462671],[22.20322203222034,63.23946438735683],[22.24642246422465,63.26648162367496],[22.268022680226807,63.285055973643665],[22.2788227882279,63.30194174634249],[22.2860228602286,63.30194174634249],[22.307623076230783,63.27661308729424],[22.32922329223294,63.28336739637379],[22.350823508235095,63.30531890088227],[22.37242372423725,63.320516096311195],[22.365223652236523,63.32727040539072],[22.358023580235823,63.334024714470274],[22.34722347223473,63.3492219098992],[22.332823328233303,63.3593533735185],[22.30402304023042,63.37286199167755],[22.25362253622538,63.40663353707521],[22.250022500225015,63.41169926888486],[22.232022320223223,63.41169926888486],[22.217622176221766,63.41507642342464],[22.206822068220703,63.42014215523429],[22.19602196021961,63.431962196123465],[22.192421924219246,63.458979432441595],[22.214022140221402,63.47079947333077],[22.24642246422465,63.46911089606087],[22.275222752227535,63.45560227790182],[22.30402304023042,63.43533935066321],[22.33642336423364,63.43027361885356],[22.365223652236523,63.42858504158369],[22.401224012240135,63.418453577964385],[22.318423184231847,63.46066800971147],[22.2788227882279,63.4876852460296],[22.27162271622717,63.51301390507783],[22.282422824228263,63.52652252323688],[22.293222932229327,63.529899677776655],[22.318423184231847,63.52821110050678],[22.33642336423364,63.52314536869713],[22.33642336423364,63.51301390507783],[22.332823328233303,63.502882441458524],[22.332823328233303,63.49275097783922],[22.35442354423546,63.4876852460296],[22.37962379623798,63.4859966687597],[22.39762397623977,63.4775537824103],[22.394023940239407,63.45222512336204],[22.408424084240863,63.45729085517169],[22.42282422824229,63.467422318790994],[22.43722437224372,63.472488050600646],[22.43722437224372,63.47924235968017],[22.43002430024302,63.48937382329947],[22.43002430024302,63.49781670964887],[22.43722437224372,63.5062595959983],[22.444424444244447,63.51807963688748],[22.46242462424624,63.55522833682488],[22.47322473224733,63.561982645904436],[22.484024840248424,63.56704837771409],[22.494824948249487,63.57380268679361],[22.49842498424985,63.58562272768279],[22.502025020250215,63.587311304952664],[22.545225452254527,63.57549126406349],[22.5380253802538,63.587311304952664],[22.49842498424985,63.622771427620194],[22.51282512825128,63.63628004577927],[22.52362523625237,63.641345777588924],[22.5308253082531,63.64472293212867],[22.5308253082531,63.6514772412082],[22.527225272252736,63.6531658184781],[22.52362523625237,63.65823155028775],[22.566825668256683,63.6531658184781],[22.584825848258504,63.65654297301785],[22.592025920259204,63.67511732298658],[22.592025920259204,63.69369167295528],[22.58842588425884,63.703823136574584],[22.595625956259568,63.703823136574584],[22.61362613626136,63.69875740476493],[22.628026280262816,63.68693736387576],[22.63882638826388,63.68356020933598],[22.642426424264244,63.68862594114563],[22.646026460264608,63.69875740476493],[22.653226532265336,63.703823136574584],[22.6640266402664,63.70551171384446],[22.674826748267492,63.70213455930468],[22.68922689226892,63.69369167295528],[22.703627036270376,63.68356020933598],[22.70722707227074,63.6717401684468],[22.703627036270376,63.65823155028775],[22.71442714427144,63.649788663938324],[22.73242732427326,63.627837159429845],[22.73962739627396,63.622771427620194],[22.754027540275416,63.624460004890096],[22.772027720277208,63.627837159429845],[22.790027900279,63.632902891239496],[22.800828008280092,63.63965720031902],[22.811628116281156,63.6430343548588],[22.818828188281884,63.64472293212867],[22.829628296282976,63.64641150939855],[22.83322833228334,63.654854395747975],[22.83322833228334,63.6616087048275],[22.83322833228334,63.66667443663715],[22.836828368283676,63.6717401684468],[22.84042840428404,63.676805900256454],[22.854828548285496,63.68693736387576],[22.887228872288716,63.695380250225156],[22.901629016290173,63.70551171384446],[22.88362883628838,63.712266022923984],[22.83322833228334,63.725774641083035],[22.901629016290173,63.725774641083035],[22.88362883628838,63.74266041378186],[22.876428764287652,63.74603756832164],[22.901629016290173,63.739283259242114],[22.9160291602916,63.739283259242114],[22.926829268292693,63.74266041378186],[22.926829268292693,63.74941472286142],[22.930429304293057,63.75616903194094],[22.930429304293057,63.76461191829034],[22.926829268292693,63.76798907283012],[22.9088290882909,63.77305480463977],[22.89802898028981,63.78318626825907],[22.901629016290173,63.79500630914825],[22.92322923229233,63.801760618227775],[22.94122941229412,63.8000720409579],[22.955629556295577,63.793317731878346],[22.97362973629737,63.77136622736987],[22.99162991629916,63.76123476375059],[23.002430024300253,63.76292334102047],[23.002430024300253,63.77305480463977],[22.99162991629916,63.788252000068695],[22.995229952299525,63.8000720409579],[22.995229952299525,63.806826350037426],[22.99162991629916,63.815269236386825],[23.04923049230493,63.84059789543508],[23.063630636306357,63.85241793632426],[23.07443074430745,63.85748366813391],[23.121231212312125,63.84904078178448],[23.132031320313217,63.85241793632426],[23.14283142831428,63.859172245403784],[23.153631536315373,63.864237977213435],[23.15003150031501,63.864237977213435],[23.14283142831428,63.869303709023086],[23.14283142831428,63.87605801810261],[23.153631536315373,63.88450090445201],[23.1680316803168,63.886189481721914],[23.196831968319685,63.891255213531565],[23.27603276032761,63.88956663626166],[23.304833048330494,63.89463236807131],[23.32643326433265,63.91151814077014],[23.35163351633517,63.89800952261109],[23.373233732337326,63.90138667715084],[23.394833948339482,63.91151814077014],[23.416434164341638,63.92502675892919],[23.384033840338418,63.93853537708827],[23.36963369633696,63.94697826343767],[23.36963369633696,63.9554211497871],[23.380433804338054,63.96892976794615],[23.37683376833769,63.97906123156545],[23.36963369633696,63.98750411791485],[23.366033660336598,63.997635581534155],[23.36963369633696,64.0027013133438],[23.380433804338054,64.04829289963064],[23.394833948339482,64.05673578598007],[23.416434164341638,64.05673578598007],[23.448834488344886,64.04829289963064],[23.456034560345614,64.04491574509089],[23.466834668346678,64.03816143601134],[23.47763477634777,64.03478428147159],[23.488434884348862,64.03647285874146],[23.495634956349562,64.03985001328124],[23.506435064350654,64.04153859055111],[23.538835388353903,64.03140712693181],[23.60363603636037,64.02802997239206],[23.6180361803618,64.03816143601134],[23.607236072360735,64.06180151778972],[23.582035820358215,64.08544159956807],[23.56763567635676,64.09726164045725],[23.574835748357486,64.10739310407655],[23.58563585635858,64.10908168134642],[23.614436144361463,64.10401594953677],[23.621636216362162,64.10739310407655],[23.64323643236432,64.12427887677538],[23.657636576365775,64.129344608585],[23.66123661236614,64.14285322674408],[23.67923679236793,64.15467326763326],[23.70443704437045,64.16649330852243],[23.708037080370815,64.16818188579231],[23.722437224372243,64.17831334941161],[23.715237152371543,64.17831334941161],[23.71883718837188,64.19351054484056],[23.726037260372607,64.20870774026949],[23.7368373683737,64.21546204934904],[23.758437584375855,64.20870774026949],[23.772837728377283,64.20870774026949],[23.81963819638196,64.22052778115867],[23.834038340383415,64.22728209023822],[23.841238412384143,64.23572497658762],[23.8628386283863,64.2678079447154],[23.88083880838809,64.2661193674455],[23.924039240392403,64.25429932655632],[23.942039420394224,64.2475450174768],[23.934839348393496,64.2576764810961],[23.927639276392767,64.27118509925515],[23.924039240392403,64.28469371741423],[23.927639276392767,64.30157949011306],[23.942039420394224,64.31677668554198],[23.97083970839708,64.33535103551071],[23.985239852398536,64.35054823093964],[23.9960399603996,64.37925404452764],[24.003240032400328,64.38938550814694],[24.024840248402484,64.39782839449637],[24.068040680406824,64.40627128084577],[24.086040860408616,64.4147141671952],[24.078840788407888,64.43159993989403],[24.093240932409344,64.42991136262413],[24.104041040410408,64.43159993989403],[24.1148411484115,64.43497709443378],[24.125641256412564,64.4417314035133],[24.129241292412928,64.44004282624343],[24.168841688416904,64.4518628671326],[24.20484204842049,64.4518628671326],[24.212042120421216,64.45524002167238],[24.212042120421216,64.47381437164108],[24.212042120421216,64.48056868072061],[24.219242192421945,64.48732298980013],[24.23004230042301,64.48901156707004],[24.258842588425892,64.48563441253026],[24.269642696426985,64.49070014433991],[24.276842768427684,64.49745445341944],[24.28044280442805,64.51096307157852],[24.287642876428777,64.51434022611826],[24.30564305643057,64.52278311246769],[24.327243272432725,64.52447168973757],[24.345243452434545,64.53122599881709],[24.359643596435973,64.54811177151592],[24.359643596435973,64.55486608059545],[24.35604356043561,64.56499754421475],[24.35604356043561,64.57175185329427],[24.3740437404374,64.5801947396437],[24.3740437404374,64.5886376259931],[24.370443704437065,64.59539193507263],[24.3668436684367,64.59708051234253],[24.3740437404374,64.6173434395811],[24.38124381243813,64.62916348047028],[24.410044100441013,64.65111498497876],[24.413644136441377,64.65955787132819],[24.41724417244174,64.66800075767759],[24.42444424444244,64.67644364402702],[24.428044280442805,64.67813222129689],[24.44244442444426,64.68150937583667],[24.471244712447145,64.70008372580537],[24.510845108451093,64.71021518942467],[24.528845288452885,64.71865807577407],[24.546845468454705,64.73385527120303],[24.536045360453613,64.74398673482233],[24.53244532445325,64.74736388936208],[24.53244532445325,64.7541181984416],[24.54324543245434,64.7642496620609],[24.55764557645577,64.77100397114043],[24.586445864458653,64.78113543475973],[24.55044550445504,64.79633263018869],[24.539645396453977,64.80477551653809],[24.55764557645577,64.80984124834774],[24.579245792457925,64.80815267107786],[24.65844658446585,64.78788974383926],[24.669246692466942,64.78957832110916],[24.67644676446764,64.79464405291878],[24.67644676446764,64.79970978472844],[24.665646656466578,64.80646409380799],[24.662046620466214,64.81321840288751],[24.669246692466942,64.83010417558634],[24.690846908469098,64.835169907396],[24.730447304473046,64.835169907396],[24.737647376473774,64.85543283463457],[24.773647736477386,64.86556429825387],[24.896048960489622,64.8723186073334],[25.072450724507263,64.91622161635036],[25.09405094050942,64.91791019362023],[25.11205112051121,64.91453303908048],[25.122851228512303,64.90440157546118],[25.130051300513003,64.89427011184188],[25.14445144451446,64.88413864822257],[25.15165151651516,64.88413864822257],[25.158851588515887,64.88751580276235],[25.166051660516615,64.88920438003223],[25.17685176851768,64.88413864822257],[25.180451804518043,64.88076149368283],[25.184051840518407,64.86556429825387],[25.18765187651877,64.86049856644422],[25.2020520205202,64.84867852555504],[25.216452164521655,64.84192421647552],[25.234452344523447,64.83685848466587],[25.259652596525967,64.835169907396],[25.259652596525967,64.83010417558634],[25.248852488524903,64.83010417558634],[25.241652416524175,64.82841559831644],[25.223652236522383,64.82334986650679],[25.259652596525967,64.81659555742726],[25.35325353253532,64.83010417558634],[25.360453604536048,64.83348133012609],[25.349653496534984,64.85205568009482],[25.35325353253532,64.86049856644422],[25.367653676536776,64.892581534572],[25.367653676536776,64.89933584365153],[25.360453604536048,64.9111558845407],[25.34605346053462,64.9111558845407],[25.335253352533528,64.90609015273105],[25.3208532085321,64.90440157546118],[25.306453064530643,64.90946730727083],[25.281252812528123,64.92297592542988],[25.241652416524175,64.9297302345094],[25.223652236522383,64.93817312085883],[25.191251912519135,64.96687893444684],[25.1948519485195,64.97025608898659],[25.205652056520563,64.97701039806611],[25.21285212852129,64.98038755260589],[25.205652056520563,64.98714186168542],[25.22005220052202,64.99051901622519],[25.3208532085321,64.98376470714567],[25.33885338853389,64.97701039806611],[25.374853748537504,64.96012462536731],[25.400054000540024,64.95168173901789],[25.42165421654218,64.94830458447811],[25.439654396543972,64.95337031628776],[25.443254432544336,64.96687893444684],[25.436054360543608,64.98038755260589],[25.425254252542544,64.98883043895532],[25.418054180541816,64.99896190257459],[25.42165421654218,65.01415909800355],[25.414454144541452,65.0192248298132],[25.414454144541452,65.02429056162285],[25.414454144541452,65.0293562934325],[25.418054180541816,65.03442202524215],[25.392853928539296,65.0479306434012],[25.382053820538204,65.0563735297506],[25.374853748537504,65.0665049933699],[25.374853748537504,65.0766364569892],[25.37125371253714,65.08507934333863],[25.36405364053641,65.09014507514826],[25.356853568535684,65.09689938422781],[25.324453244532464,65.11040800238686],[25.21285212852129,65.12391662054591],[25.22005220052202,65.14586812505439],[25.22725227252272,65.1559995886737],[25.259652596525967,65.17288536137252],[25.274052740527424,65.17963967045205],[25.281252812528123,65.19145971134122],[25.284852848528487,65.2049683295003],[25.281252812528123,65.22016552492923],[25.292052920529215,65.21847694765935],[25.30285302853028,65.22016552492923],[25.317253172531736,65.22185410219913],[25.3280532805328,65.22691983400875],[25.3208532085321,65.22860841127866],[25.306453064530643,65.2319855658184],[25.299252992529944,65.23367414308831],[25.310053100531007,65.24887133851723],[25.31365313653137,65.25393707032688],[25.29565295652958,65.25900280213654],[25.28845288452885,65.26069137940641],[25.281252812528123,65.26069137940641],[25.29565295652958,65.27082284302571],[25.306453064530643,65.3029058111535],[25.3208532085321,65.31641442931254],[25.317253172531736,65.31979158385232],[25.310053100531007,65.32654589293185],[25.306453064530643,65.32992304747162],[25.317253172531736,65.3316116247415],[25.3208532085321,65.33330020201137],[25.335253352533528,65.34343166563067],[25.266852668526695,65.37720321102833],[25.281252812528123,65.38058036556808],[25.306453064530643,65.38226894283798],[25.3208532085321,65.38564609737773],[25.331653316533163,65.39071182918738],[25.34605346053462,65.40590902461634],[25.356853568535684,65.41097475642599],[25.34605346053462,65.42786052912481],[25.356853568535684,65.46500922906222],[25.35325353253532,65.48358357903095],[25.324453244532464,65.5072236608093],[25.292052920529215,65.525798010778],[25.22005220052202,65.55788097890579],[25.198451984519863,65.56294671071544],[25.16965169651698,65.56294671071544],[25.148051480514823,65.55956955617566],[25.12645126451264,65.56125813344553],[25.10125101251012,65.57645532887449],[25.097650976509783,65.58489821522389],[25.09405094050942,65.59165252430344],[25.090450904509055,65.59502967884319],[25.08685086850869,65.60516114246249],[25.072450724507263,65.61360402881189],[25.06165061650617,65.61698118335167],[25.03645036450365,65.61360402881189],[25.022050220502223,65.62035833789145],[25.004050040500402,65.62711264697097],[24.957249572495726,65.62204691516132],[24.93564935649357,65.6237354924312],[24.924849248492478,65.63048980151072],[24.906849068490686,65.64568699693967],[24.896048960489622,65.65075272874932],[24.86004860048601,65.65919561509872],[24.820448204482062,65.6625727696385],[24.780847808478086,65.65919561509872],[24.744847448474502,65.65075272874932],[24.719647196471982,65.63724411059027],[24.705247052470526,65.6338669560505],[24.687246872468734,65.63217837878062],[24.67644676446764,65.63555553332037],[24.672846728467306,65.64568699693967],[24.669246692466942,65.6828356968771],[24.669246692466942,65.6912785832265],[24.65844658446585,65.69465573776628],[24.597245972459746,65.70985293319521],[24.58284582845829,65.71660724227476],[24.56844568445686,65.73011586043381],[24.554045540455405,65.74531305586277],[24.55044550445504,65.76388740583147],[24.561245612456133,65.7892160648797],[24.57564575645756,65.80779041484843],[24.63324633246333,65.86013631021478],[24.64404644046442,65.87871066018349],[24.654846548465486,65.88546496926301],[24.669246692466942,65.89221927834254],[24.698046980469826,65.89390785561244],[24.70884708847089,65.89897358742209],[24.70884708847089,65.91248220558114],[24.694446944469462,65.90403931923174],[24.64404644046442,65.89221927834254],[24.63324633246333,65.89053070107266],[24.6260462604626,65.89053070107266],[24.6188461884619,65.88884212380279],[24.615246152461538,65.88208781472326],[24.615246152461538,65.87026777383409],[24.615246152461538,65.86689061929431],[24.611646116461174,65.86351346475453],[24.586445864458653,65.85507057840513],[24.54324543245434,65.8094789921183],[24.51804518045182,65.79597037395925],[24.4928449284493,65.79597037395925],[24.47484474844748,65.79765895122912],[24.453244532445325,65.79765895122912],[24.43164431644317,65.7892160648797],[24.428044280442805,65.78583891033995],[24.42444424444244,65.78246175580017],[24.42444424444244,65.77739602399052],[24.41724417244174,65.77233029218087],[24.40644406444065,65.76895313764112],[24.35604356043561,65.77908460126042],[24.327243272432725,65.79765895122912],[24.31644316443166,65.80272468303878],[24.276842768427684,65.8094789921183],[24.237242372423736,65.82298761027735],[24.2480424804248,65.8094789921183],[24.251642516425164,65.79428179668935],[24.244442444424465,65.7807731785303],[24.22284222842228,65.77570744672065],[24.20484204842049,65.77908460126042],[24.186841868418696,65.7909046421496],[24.17244172441724,65.80441326030865],[24.161641616416176,65.81623330119783],[24.161641616416176,65.82298761027735],[24.14004140041402,65.80441326030865],[24.104041040410408,65.80103610576887],[24.032040320403212,65.8094789921183],[24.03924039240394,65.80441326030865],[24.03924039240394,65.80103610576887],[24.042840428404304,65.799347528499],[24.053640536405368,65.79597037395925],[24.028440284402848,65.7909046421496],[23.98163981639817,65.79428179668935],[23.95643956439565,65.7892160648797],[23.952839528395288,65.78246175580017],[23.94563945639456,65.76726456037122],[23.934839348393496,65.76051025129169],[23.927639276392767,65.76051025129169],[23.916839168391704,65.76388740583147],[23.909639096390976,65.76726456037122],[23.89523895238952,65.770641714911],[23.884438844388455,65.77401886945077],[23.877238772387727,65.77908460126042],[23.873638736387363,65.78583891033995],[23.870038700387,65.79428179668935],[23.866438664386664,65.79428179668935],[23.85563855638557,65.7892160648797],[23.80523805238053,65.7892160648797],[23.78003780037801,65.79259321941947],[23.772837728377283,65.80610183757852],[23.76203762037622,65.82298761027735],[23.740437404374063,65.82974191935688],[23.690036900369023,65.82974191935688],[23.675636756367567,65.82467618754725],[23.650436504365047,65.80272468303878],[23.63603636036362,65.79597037395925],[23.621636216362162,65.79597037395925],[23.614436144361463,65.80103610576887],[23.6108361083611,65.80610183757852],[23.607236072360735,65.8094789921183],[23.52803528035281,65.8094789921183],[23.4848348483485,65.81623330119783],[23.492034920349198,65.82974191935688],[23.4848348483485,65.83480765116653],[23.470434704347042,65.83311907389665],[23.456034560345614,65.82974191935688],[23.45963459634598,65.828053342087],[23.448834488344886,65.81623330119783],[23.441634416344158,65.81285614665805],[23.434434344343458,65.81116756938818],[23.42723427234273,65.8094789921183],[23.423634236342366,65.80272468303878],[23.434434344343458,65.79765895122912],[23.438034380343822,65.79259321941947],[23.438034380343822,65.78415033307004],[23.438034380343822,65.77570744672065],[23.434434344343458,65.76726456037122],[23.42723427234273,65.76557598310134],[23.420034200342002,65.76726456037122],[23.40203402034021,65.76895313764112],[23.384033840338418,65.77570744672065],[23.373233732337326,65.7909046421496],[23.36963369633696,65.80779041484843],[23.373233732337326,65.82298761027735],[23.35163351633517,65.82129903300748],[23.337233372333742,65.81285614665805],[23.32643326433265,65.80272468303878],[23.312033120331222,65.79597037395925],[23.290432904329037,65.79597037395925],[23.26883268832688,65.80272468303878],[23.229232292322934,65.82298761027735],[23.214832148321477,65.82636476481713],[23.196831968319685,65.82636476481713],[23.182431824318257,65.8196104557376],[23.182431824318257,65.80272468303878],[23.189631896318957,65.7892160648797],[23.204032040320413,65.7807731785303],[23.23643236432366,65.76895313764112],[23.222032220322205,65.76388740583147],[23.157231572315737,65.75037878767242],[23.146431464314645,65.74531305586277],[23.128431284312853,65.73349301497359],[23.128431284312853,65.71491866500486],[23.103231032310333,65.70478720138556],[23.078030780307813,65.70647577865546],[23.08523085230854,65.72842728316394],[23.056430564305657,65.75544451948204],[23.045630456304565,65.76051025129169],[22.988029880298797,65.76388740583147],[22.944829448294485,65.77570744672065],[22.937629376293756,65.77908460126042],[22.9160291602916,65.79597037395925],[22.901629016290173,65.799347528499],[22.876428764287652,65.79428179668935],[22.85842858428586,65.79597037395925],[22.836828368283676,65.80779041484843],[22.804428044280456,65.84831626932561],[22.786427864278636,65.86351346475453],[22.671226712267128,65.90572789650162],[22.653226532265336,65.90910505104137],[22.635226352263544,65.90572789650162],[22.646026460264608,65.89559643288231],[22.671226712267128,65.88208781472326],[22.68202682026822,65.87026777383409],[22.685626856268584,65.86182488748466],[22.68922689226892,65.83649622843643],[22.692826928269284,65.82467618754725],[22.696426964269648,65.81454472392795],[22.700027000270012,65.80441326030865],[22.696426964269648,65.7892160648797],[22.68922689226892,65.77570744672065],[22.678426784267856,65.76388740583147],[22.6640266402664,65.75713309675194],[22.649626496264972,65.75544451948204],[22.653226532265336,65.77739602399052],[22.628026280262816,65.7909046421496],[22.570425704257048,65.79597037395925],[22.55602556025562,65.79259321941947],[22.52362523625237,65.77570744672065],[22.51282512825128,65.77570744672065],[22.50562505625058,65.78415033307004],[22.51282512825128,65.79428179668935],[22.52362523625237,65.80441326030865],[22.5308253082531,65.8094789921183],[22.520025200252007,65.82298761027735],[22.502025020250215,65.83143049662678],[22.469624696246967,65.84325053751596],[22.47322473224733,65.8466276920557],[22.476824768247695,65.85675915567501],[22.4048240482405,65.86351346475453],[22.368823688236887,65.86182488748466],[22.368823688236887,65.84325053751596],[22.325623256232575,65.83649622843643],[22.368823688236887,65.8094789921183],[22.365223652236523,65.79765895122912],[22.350823508235095,65.79597037395925],[22.318423184231847,65.80272468303878],[22.32922329223294,65.79259321941947],[22.34722347223473,65.770641714911],[22.36162361623616,65.76051025129169],[22.325623256232575,65.73518159224346],[22.2860228602286,65.74362447859286],[22.24642246422465,65.76051025129169],[22.21042210422104,65.76051025129169],[22.232022320223223,65.74531305586277],[22.250022500225015,65.73518159224346],[22.27162271622717,65.73011586043381],[22.340023400234003,65.72336155135429],[22.36162361623616,65.71660724227476],[22.376023760237615,65.69972146957593],[22.38682386823868,65.6727042332578],[22.376023760237615,65.6727042332578],[22.36162361623616,65.6727042332578],[22.350823508235095,65.67101565598793],[22.340023400234003,65.66426134690838],[22.32922329223294,65.68959000595663],[22.307623076230783,65.70141004684581],[22.282422824228263,65.70141004684581],[22.257222572225743,65.69296716049638],[22.264422644226443,65.68790142868676],[22.268022680226807,65.6811471196072],[22.264422644226443,65.6727042332578],[22.257222572225743,65.66426134690838],[22.264422644226443,65.65919561509872],[22.27162271622717,65.65075272874932],[22.2860228602286,65.63217837878062],[22.26082260822608,65.6254240697011],[22.188821888218882,65.6237354924312],[22.264422644226443,65.61191545154202],[22.300423004230055,65.61191545154202],[22.318423184231847,65.63217837878062],[22.314823148231483,65.6423098423999],[22.289622896228963,65.65581846055898],[22.2860228602286,65.66426134690838],[22.293222932229327,65.67439281052768],[22.307623076230783,65.66932707871803],[22.325623256232575,65.65919561509872],[22.332823328233303,65.65075272874932],[22.325623256232575,65.64568699693967],[22.37962379623798,65.6338669560505],[22.383223832238343,65.62711264697097],[22.340023400234003,65.61360402881189],[22.332823328233303,65.60347256519262],[22.343623436234367,65.59502967884319],[22.365223652236523,65.58827536976366],[22.4048240482405,65.58320963795401],[22.4120241202412,65.57983248341426],[22.419224192241927,65.56970101979496],[22.43002430024302,65.54943809255636],[22.4048240482405,65.54268378347683],[22.38682386823868,65.54943809255636],[22.368823688236887,65.56294671071544],[22.350823508235095,65.56970101979496],[22.32202322023221,65.57138959706484],[22.29682296822969,65.57645532887449],[22.275222752227535,65.58827536976366],[22.264422644226443,65.58996394703354],[22.250022500225015,65.58320963795401],[22.257222572225743,65.56970101979496],[22.22842228422286,65.57138959706484],[22.12762127621278,65.60347256519262],[22.052020520205218,65.61698118335167],[22.01962019620197,65.63555553332037],[22.005220052200542,65.6423098423999],[21.965619656196566,65.64737557420955],[21.929619296192982,65.6625727696385],[21.86841868418685,65.6727042332578],[21.85401854018542,65.67776996506745],[21.84321843218433,65.68452427414698],[21.821618216182173,65.70309862411568],[21.81081810818108,65.70985293319521],[21.77841778417786,65.71998439681451],[21.764017640176405,65.72842728316394],[21.789217892178925,65.68621285141685],[21.846818468184694,65.66088419236863],[21.96921969219693,65.63217837878062],[22.052020520205218,65.59840683338297],[22.12042120421205,65.58320963795401],[22.131221312213142,65.57814390614436],[22.149221492214934,65.56970101979496],[22.17082170821709,65.55281524709613],[22.181621816218183,65.54774951528648],[22.20322203222034,65.54943809255636],[22.17802178021782,65.53930662893706],[22.12042120421205,65.53930662893706],[22.091620916209166,65.5359294743973],[22.084420844208438,65.53255231985753],[22.080820808208102,65.52917516531778],[22.080820808208102,65.525798010778],[22.07722077220774,65.5173551244286],[22.066420664206646,65.51397796988883],[22.055620556205582,65.51904370169848],[22.048420484204854,65.525798010778],[22.037620376203762,65.525798010778],[22.012420124201242,65.5173551244286],[21.875618756187578,65.53761805166718],[21.85401854018542,65.5359294743973],[21.900819008190098,65.50046935172978],[21.929619296192982,65.48864931084057],[21.951219512195138,65.49540361992013],[21.929619296192982,65.5055350835394],[21.922419224192254,65.5072236608093],[21.947619476194774,65.50891223807918],[22.005220052200542,65.4768292699514],[22.030420304203062,65.46669780633212],[22.023220232202334,65.45318918817304],[22.01962019620197,65.44136914728387],[22.012420124201242,65.43123768366456],[21.998019980199814,65.42617195185491],[21.980019800198022,65.42617195185491],[21.965619656196566,65.43292626093447],[21.94401944019441,65.45318918817304],[21.933219332193318,65.44136914728387],[21.93681936819368,65.43123768366456],[21.94401944019441,65.42110622004529],[21.94401944019441,65.41097475642599],[21.926019260192618,65.40422044734646],[21.908019080190797,65.40253187007656],[21.890018900189006,65.40759760188621],[21.87921879218794,65.41941764277539],[21.850418504185058,65.40759760188621],[21.821618216182173,65.40084329280668],[21.789217892178925,65.40084329280668],[21.706417064170637,65.41435191096573],[21.688416884168845,65.41266333369586],[21.7028170281703,65.3974661382669],[21.656016560165597,65.3974661382669],[21.630816308163077,65.40084329280668],[21.60921609216092,65.41941764277539],[21.587615876158765,65.41772906550551],[21.544415444154453,65.41097475642599],[21.544415444154453,65.40590902461634],[21.5840158401584,65.3974661382669],[21.598415984159857,65.3974661382669],[21.598415984159857,65.39240040645728],[21.52641526415266,65.3974661382669],[21.49041490414905,65.39408898372716],[21.468814688146892,65.37720321102833],[21.47601476014762,65.37720321102833],[21.486814868148684,65.37213747921868],[21.49041490414905,65.3704489019488],[21.447214472144736,65.35694028378973],[21.468814688146892,65.35525170651985],[21.49041490414905,65.34849739744033],[21.512015120151204,65.33836593382102],[21.52641526415266,65.32654589293185],[21.544415444154453,65.31810300658242],[21.56601566015661,65.31641442931254],[21.5840158401584,65.3214801611222],[21.587615876158765,65.33667735655115],[21.605616056160557,65.33330020201137],[21.623616236162377,65.32654589293185],[21.656016560165597,65.30797154296314],[21.688416884168845,65.29615150207397],[21.7028170281703,65.28602003845467],[21.699216992169937,65.27082284302571],[21.66681666816669,65.25224849305701],[21.623616236162377,65.24042845216783],[21.5768157681577,65.23873987489796],[21.544415444154453,65.24718276124736],[21.53361533615336,65.25731422486666],[21.51561515615157,65.28264288391489],[21.504815048150476,65.29615150207397],[21.49041490414905,65.30628296569324],[21.47601476014762,65.31472585204267],[21.4580145801458,65.31979158385232],[21.436414364143644,65.32316873839207],[21.40761407614076,65.33330020201137],[21.378813788137876,65.35525170651985],[21.346413464134656,65.37213747921868],[21.314013140131408,65.3704489019488],[21.317613176131772,65.3687603246789],[21.328413284132836,65.36538317013915],[21.3320133201332,65.36369459286925],[21.321213212132136,65.35187455198007],[21.278012780127796,65.3501859747102],[21.263612636126368,65.33667735655115],[21.389613896138968,65.3214801611222],[21.422014220142216,65.30797154296314],[21.48321483214832,65.26069137940641],[21.537215372153725,65.23029698854853],[21.60921609216092,65.16950820683275],[21.620016200162013,65.14755670232427],[21.598415984159857,65.13911381597487],[21.544415444154453,65.13742523870499],[21.55881558815588,65.13067092962547],[21.562415624156245,65.12222804327604],[21.562415624156245,65.11209657965674],[21.544415444154453,65.08339076606873],[21.548015480154817,65.07832503425908],[21.56601566015661,65.07494787971933],[21.587615876158765,65.06988214790968],[21.562415624156245,65.06143926156025],[21.479614796147956,65.06312783883016],[21.468814688146892,65.05468495248073],[21.47601476014762,65.04117633432168],[21.494014940149412,65.02597913889272],[21.504815048150476,65.02091340708307],[21.472414724147256,65.0090933661939],[21.461614616146164,65.00740478892402],[21.454414544145436,65.0090933661939],[21.43281432814328,65.01415909800355],[21.422014220142216,65.01415909800355],[21.422014220142216,65.01247052073367],[21.422014220142216,65.0090933661939],[21.418414184141852,65.00402763438424],[21.414814148141488,65.0006504798445],[21.396813968139696,64.99389617076494],[21.38241382413824,64.98714186168542],[21.378813788137876,64.97701039806611],[21.393213932139332,64.96687893444684],[21.378813788137876,64.96012462536731],[21.25641256412564,64.95674747082754],[21.24201242012421,64.95337031628776],[21.24201242012421,64.94492742993836],[21.245612456124576,64.93986169812871],[21.252812528125276,64.93310738904918],[21.245612456124576,64.92128734816],[21.238412384123848,64.91453303908048],[21.227612276122755,64.90609015273105],[21.21681216812169,64.9010244209214],[21.202412024120235,64.89933584365153],[21.213212132121328,64.8723186073334],[21.19161191611917,64.86049856644422],[21.17361173611738,64.8537442573647],[21.18081180811808,64.835169907396],[21.16641166411665,64.83010417558634],[21.13041130411304,64.82334986650679],[21.112411124111247,64.82334986650679],[21.09801098010982,64.82672702104657],[21.09081090810909,64.83854706193574],[21.09081090810909,64.85036710282492],[21.083610836108363,64.85712141190444],[21.069210692106935,64.86049856644422],[21.05481054810548,64.85712141190444],[21.04041040410405,64.84698994828517],[21.036810368103687,64.83348133012609],[21.044010440104415,64.81997271196704],[21.05481054810548,64.81490698015739],[21.083610836108363,64.80984124834774],[21.080010800108,64.79802120745856],[21.080010800108,64.79464405291878],[21.09801098010982,64.78451258929951],[21.11601116011161,64.78113543475973],[21.15561155611556,64.78113543475973],[21.21681216812169,64.78957832110916],[21.28161281612816,64.77606970295008],[21.30681306813068,64.76762681660068],[21.314013140131408,64.7541181984416],[21.29961299612998,64.74905246663195],[21.24921249212494,64.75074104390185],[21.227612276122755,64.74736388936208],[21.245612456124576,64.73047811666325],[21.267212672126732,64.7169694985042],[21.314013140131408,64.70008372580537],[21.314013140131408,64.69164083945594],[21.296012960129616,64.69164083945594],[21.288812888128888,64.68657510764629],[21.292412924129252,64.67982079856677],[21.303213032130316,64.67137791221737],[21.303213032130316,64.66631218040772],[21.278012780127796,64.67137791221737],[21.23121231212312,64.69332941672585],[21.2060120601206,64.70008372580537],[21.184411844118443,64.7068380348849],[21.16641166411665,64.72203523031385],[21.144811448114496,64.73216669393312],[21.119611196111975,64.73047811666325],[21.108811088110883,64.7169694985042],[21.112411124111247,64.70008372580537],[21.12321123211234,64.68319795310654],[21.14121141211413,64.67137791221737],[21.170011700117016,64.66800075767759],[21.202412024120235,64.66631218040772],[21.23121231212312,64.66124644859806],[21.24921249212494,64.64436067589924],[21.23121231212312,64.64267209862936],[21.23121231212312,64.63254063501006],[21.245612456124576,64.62240917139076],[21.263612636126368,64.6173434395811],[21.285212852128524,64.61565486231123],[21.296012960129616,64.61396628504136],[21.303213032130316,64.61058913050158],[21.310413104131044,64.60552339869193],[21.317613176131772,64.59201478053288],[21.321213212132136,64.59032620326298],[21.3320133201332,64.58694904872323],[21.342813428134292,64.57344043056418],[21.353613536135356,64.5700632760244],[21.364413644136448,64.57175185329427],[21.364413644136448,64.57681758510392],[21.364413644136448,64.58188331691358],[21.360813608136084,64.58188331691358],[21.368013680136812,64.59539193507263],[21.368013680136812,64.60383482142205],[21.37521375213754,64.6072119759618],[21.393213932139332,64.60383482142205],[21.414814148141488,64.59032620326298],[21.436414364143644,64.57175185329427],[21.454414544145436,64.56330896694487],[21.468814688146892,64.58694904872323],[21.47601476014762,64.58694904872323],[21.486814868148684,64.58357189418345],[21.49041490414905,64.5785061623738],[21.49041490414905,64.55655465786535],[21.50121501215014,64.54473461697614],[21.51561515615157,64.53629173062674],[21.53361533615336,64.53460315335687],[21.55161551615518,64.53460315335687],[21.54081540815409,64.52784884427734],[21.52641526415266,64.52278311246769],[21.512015120151204,64.52109453519779],[21.497614976149777,64.52447168973757],[21.472414724147256,64.54473461697614],[21.461614616146164,64.54811177151592],[21.414814148141488,64.52953742154722],[21.386013860138604,64.52109453519779],[21.37521375213754,64.53122599881709],[21.371613716137176,64.53798030789662],[21.364413644136448,64.5413574624364],[21.35721357213572,64.5413574624364],[21.35001350013502,64.53798030789662],[21.346413464134656,64.53122599881709],[21.353613536135356,64.52953742154722],[21.368013680136812,64.52784884427734],[21.386013860138604,64.51096307157852],[21.40041400414006,64.50589733976886],[21.411214112141124,64.51096307157852],[21.422014220142216,64.51434022611826],[21.461614616146164,64.51771738065804],[21.47601476014762,64.51434022611826],[21.479614796147956,64.51096307157852],[21.486814868148684,64.49407729887969],[21.49041490414905,64.48732298980013],[21.47601476014762,64.47212579437121],[21.479614796147956,64.46030575348203],[21.49041490414905,64.45355144440248],[21.512015120151204,64.4518628671326],[21.519215192151933,64.45524002167238],[21.530015300152996,64.46874863983143],[21.537215372153725,64.47212579437121],[21.55881558815588,64.4704372171013],[21.580415804158037,64.46537148529168],[21.573215732157337,64.48056868072061],[21.587615876158765,64.48056868072061],[21.598415984159857,64.47550294891096],[21.605616056160557,64.46537148529168],[21.605616056160557,64.4518628671326],[21.598415984159857,64.4417314035133],[21.587615876158765,64.4417314035133],[21.5768157681577,64.4417314035133],[21.562415624156245,64.43497709443378],[21.55161551615518,64.42822278535425],[21.52641526415266,64.42146847627473],[21.51561515615157,64.4147141671952],[21.4580145801458,64.37081115817824],[21.418414184141852,64.35392538547941],[21.396813968139696,64.34041676732036],[21.371613716137176,64.33028530370106],[21.353613536135356,64.34041676732036],[21.3320133201332,64.35561396274929],[21.317613176131772,64.36405684909872],[21.321213212132136,64.35561396274929],[21.3248132481325,64.34717107639989],[21.321213212132136,64.33872819005046],[21.317613176131772,64.32859672643116],[21.3248132481325,64.32690814916128],[21.328413284132836,64.32353099462154],[21.328413284132836,64.31846526281188],[21.3320133201332,64.3150881082721],[21.317613176131772,64.31171095373233],[21.288812888128888,64.30157949011306],[21.270812708127096,64.30157949011306],[21.25641256412564,64.3049566446528],[21.24921249212494,64.30833379919258],[21.245612456124576,64.30664522192271],[21.11601116011161,64.22052778115867],[21.112411124111247,64.21883920388879],[21.083610836108363,64.22559351296832],[21.080010800108,64.22728209023822],[21.069210692106935,64.22221635842857],[21.044010440104415,64.19182196757066],[20.96480964809649,64.1496075358236],[20.9468094680947,64.129344608585],[20.961209612096127,64.11245883588617],[20.9540095400954,64.09557306318735],[20.91440914409145,64.05673578598007],[20.910809108091087,64.05335863144029],[20.910809108091087,64.04829289963064],[20.907209072090723,64.03478428147159],[20.910809108091087,64.03647285874146],[20.910809108091087,64.03309570420168],[20.91440914409145,64.02802997239206],[20.91440914409145,64.02465281785229],[20.910809108091087,64.02127566331251],[20.907209072090723,64.02127566331251],[20.90360903609036,64.01958708604263],[20.900009000089995,64.01452135423298],[20.900009000089995,63.994258426994406],[20.89640896408966,63.984126963375104],[20.88920889208893,63.97906123156545],[20.87840878408784,63.97737265429558],[20.87120871208714,63.97230692248593],[20.867608676086775,63.967241190676276],[20.86400864008641,63.9655526134064],[20.842408424084255,63.95879830432685],[20.824408244082434,63.9452896861678],[20.806408064080642,63.91151814077014],[20.784807848078486,63.87943517264236],[20.777607776077758,63.869303709023086],[20.730807308073082,63.84904078178448],[20.684006840068406,63.84904078178448],[20.673206732067314,63.842286472704956],[20.669606696066978,63.828777854545905],[20.676806768067678,63.82202354546635],[20.691206912069134,63.82033496819648],[20.709207092070926,63.82202354546635],[20.68760687606877,63.798383463688],[20.673206732067314,63.7899405773386],[20.666006660066614,63.79162915460847],[20.644406444064458,63.815269236386825],[20.630006300063002,63.82033496819648],[20.61200612006121,63.82202354546635],[20.565205652056534,63.798383463688],[20.56160561605617,63.78487484552895],[20.55440554405544,63.77643195917952],[20.543605436054378,63.774743381909644],[20.52920529205292,63.78149769098917],[20.540005400054014,63.79162915460847],[20.540005400054014,63.8000720409579],[20.52920529205292,63.8085149273073],[20.507605076050766,63.82033496819648],[20.5040050400504,63.82202354546635],[20.457204572045725,63.77136622736987],[20.43560435604357,63.76123476375059],[20.414004140041413,63.76798907283012],[20.417604176041777,63.75954618648069],[20.417604176041777,63.75448045467104],[20.414004140041413,63.74941472286142],[20.414004140041413,63.74097183651199],[20.42120421204214,63.71902033200351],[20.42120421204214,63.712266022923984],[20.414004140041413,63.70044598203481],[20.406804068040685,63.690314518415505],[20.39600396003962,63.681871632066105],[20.381603816038165,63.676805900256454],[20.363603636036373,63.6801830547962],[20.356403564035645,63.68862594114563],[20.35280352803528,63.70213455930468],[20.363603636036373,63.71564317746376],[20.36000360003601,63.725774641083035],[20.35280352803528,63.739283259242114],[20.338403384033853,63.74941472286142],[20.324003240032397,63.75448045467104],[20.316803168031697,63.739283259242114],[20.316803168031697,63.67849447752633],[20.30960309603097,63.654854395747975],[20.29520295202954,63.6514772412082],[20.280802808028085,63.659920127557626],[20.266402664026657,63.67005159117693],[20.266402664026657,63.681871632066105],[20.273602736027357,63.69200309568541],[20.280802808028085,63.70720029111433],[20.288002880028813,63.72070890927341],[20.28440284402845,63.73252895016259],[20.266402664026657,63.71902033200351],[20.2448024480245,63.69875740476493],[20.237602376023773,63.67342874571668],[20.241202412024137,63.6514772412082],[20.21960219602198,63.6531658184781],[20.154801548015485,63.6514772412082],[20.14400144001442,63.64810008666845],[20.13320133201333,63.64472293212867],[20.1188011880119,63.6430343548588],[20.10800108001081,63.64810008666845],[20.10080100801008,63.65654297301785],[20.097200972009716,63.6616087048275],[20.09360093600938,63.66498585936728],[20.072000720007196,63.66667443663715],[20.054000540005404,63.663297282097375],[20.036000360003612,63.65654297301785],[20.021600216002156,63.64810008666845],[20.010800108001092,63.63459146850937],[20.014400144001456,63.622771427620194],[20.028800288002884,63.60250850038162],[19.953199531995324,63.619394273080445],[19.938799387993896,63.619394273080445],[19.92439924399244,63.61263996400092],[19.888398883988856,63.60250850038162],[19.881198811988128,63.59913134584184],[19.863198631986336,63.57380268679361],[19.827198271982724,63.55522833682488],[19.787597875978776,63.54171971866583],[19.751597515975163,63.524833945967],[19.751597515975163,63.5147024823477],[19.76599765997662,63.4876852460296],[19.77319773197732,63.46404516425122],[19.769597695976955,63.46066800971147],[19.744397443974435,63.45729085517169],[19.737197371973735,63.45222512336204],[19.72279722797228,63.445470814282515],[19.701197011970123,63.43365077339334],[19.686796867968695,63.431962196123465],[19.63999639996402,63.445470814282515],[19.636396363963655,63.458979432441595],[19.63999639996402,63.46911089606087],[19.636396363963655,63.4775537824103],[19.611196111961135,63.4859966687597],[19.6147961479615,63.48937382329947],[19.618396183961835,63.496128132379],[19.618396183961835,63.499505286918776],[19.603996039960407,63.50457101872843],[19.578795787957887,63.521456791427255],[19.524795247952483,63.529899677776655],[19.51399513995142,63.538342564126054],[19.492394923949234,63.55353975955501],[19.47079470794708,63.561982645904436],[19.44559445594456,63.56029406863453],[19.42039420394204,63.54847402774536],[19.43119431194313,63.543408295935706],[19.441994419944194,63.538342564126054],[19.467194671946714,63.534965409586306],[19.45639456394565,63.50963675053805],[19.467194671946714,63.50119386418865],[19.492394923949234,63.49781670964887],[19.524795247952483,63.4859966687597],[19.4959949599496,63.4775537824103],[19.48159481594817,63.47417662787052],[19.46359463594638,63.472488050600646],[19.459994599946015,63.46911089606087],[19.47079470794708,63.46066800971147],[19.510395103951055,63.43365077339334],[19.51399513995142,63.42689646431381],[19.517595175951755,63.41507642342464],[19.50679506795069,63.41169926888486],[19.4887948879489,63.41676500069451],[19.45639456394565,63.431962196123465],[19.373593735937362,63.47924235968017],[19.344793447934478,63.4859966687597],[19.344793447934478,63.4775537824103],[19.373593735937362,63.445470814282515],[19.351993519935206,63.440405082472864],[19.33039330393305,63.44884796882229],[19.31239312393126,63.46066800971147],[19.294392943929438,63.46573374152112],[19.27999279992801,63.458979432441595],[19.276392763927646,63.44209365974277],[19.276392763927646,63.40832211434511],[19.276392763927646,63.39819065072581],[19.269192691926918,63.38130487802698],[19.269192691926918,63.37286199167755],[19.269192691926918,63.342467600819674],[19.258392583925854,63.32895898266062],[19.243992439924398,63.32220467358107],[19.233192331923334,63.325581828120846],[19.22959229592297,63.342467600819674],[19.207992079920814,63.325581828120846],[19.157591575915774,63.31882751904132],[19.132391323913254,63.30869605542202],[19.139591395913953,63.30531890088227],[19.15399153991541,63.293498859993065],[19.143191431914317,63.28674455091354],[19.12159121591216,63.26479304640506],[19.110791107911098,63.252973005515884],[19.132391323913254,63.252973005515884],[19.117991179911797,63.236087232817056],[19.09639096390964,63.23777581008696],[19.056790567905693,63.25972731459541],[19.038790387903873,63.23946438735683],[19.056790567905693,63.22595576919778],[19.085590855908578,63.22089003738813],[19.110791107911098,63.21920146011823],[19.10359103591037,63.20738141922905],[19.092790927909277,63.20738141922905],[19.07839078390785,63.20738141922905],[19.067590675906757,63.2023156874194],[19.060390603906058,63.192184223800126],[19.060390603906058,63.1837413374507],[19.05319053190533,63.17867560564105],[19.035190351903537,63.17867560564105],[19.031590315903173,63.182052760180824],[19.00279002790029,63.19893853287965],[18.999189991899925,63.2023156874194],[18.991989919899197,63.209069996498954],[18.97038970389704,63.217512882848354],[18.963189631896313,63.22595576919778],[18.966789667896677,63.23946438735683],[18.955989559895613,63.24621869643636],[18.937989379893793,63.25128442824601],[18.923589235892365,63.25635016005566],[18.905589055890573,63.26648162367496],[18.887588875888753,63.27323593275449],[18.873188731887325,63.26985877821471],[18.880388803888053,63.252973005515884],[18.865988659886597,63.249595850976135],[18.811988119881192,63.25972731459541],[18.76878768787688,63.26141589186531],[18.75078750787509,63.25972731459541],[18.736387363873632,63.252973005515884],[18.754387543875453,63.24284154189661],[18.912789127891273,63.2124471510387],[18.89478894788948,63.19724995560978],[18.862388623886233,63.192184223800126],[18.797587975879765,63.192184223800126],[18.80118801188013,63.182052760180824],[18.804788047880493,63.17867560564105],[18.786787867878672,63.168544142021744],[18.772387723877245,63.168544142021744],[18.761587615876152,63.17698702837117],[18.754387543875453,63.192184223800126],[18.754387543875453,63.20738141922905],[18.77598775987761,63.2124471510387],[18.822788227882285,63.2124471510387],[18.822788227882285,63.21920146011823],[18.729187291872933,63.23271007827731],[18.70038700387005,63.22595576919778],[18.714787147871476,63.21920146011823],[18.71838718387184,63.21075857376883],[18.721987219872204,63.2023156874194],[18.729187291872933,63.192184223800126],[18.75078750787509,63.16685556475187],[18.754387543875453,63.15672410113257],[18.610386103861032,63.17867560564105],[18.563585635856356,63.17867560564105],[18.563585635856356,63.17192129656152],[18.585185851858512,63.17023271929165],[18.610386103861032,63.165166987481996],[18.628386283862852,63.15672410113257],[18.64278642786428,63.146592637513294],[18.64998649986501,63.13646117389399],[18.657186571865736,63.12295255573491],[18.653586535865372,63.11450966938551],[18.639186391863916,63.10944393757586],[18.61758617586176,63.11450966938551],[18.599585995859968,63.12126397846504],[18.577985779857812,63.124641133004815],[18.556385563855656,63.11619824665539],[18.549185491854928,63.10775536030599],[18.545585455854564,63.09593531941681],[18.538385383853836,63.084115278527634],[18.523985239852408,63.075672392178205],[18.556385563855656,63.075672392178205],[18.513185131851316,63.0570980422095],[18.498784987849888,63.05540946493963],[18.49158491584916,63.05034373312998],[18.487984879848796,63.02501507408172],[18.477184771847732,63.01994934227207],[18.46638466384664,63.02332649681185],[18.43398433984339,63.0469665785902],[18.419584195841963,63.053720887669726],[18.405184051840536,63.05540946493963],[18.387183871838715,63.053720887669726],[18.372783727837287,63.0469665785902],[18.405184051840536,63.035146537701024],[18.423184231842328,63.026703651351625],[18.43398433984339,63.01488361046242],[18.369183691836923,63.01994934227207],[18.36558365583656,63.02163791954197],[18.35838358383586,63.03345796043115],[18.35118351183513,63.0368351149709],[18.343983439834403,63.040212269510675],[18.34038340383404,63.0368351149709],[18.34038340383404,63.03008080589137],[18.336783367833675,63.026703651351625],[18.34038340383404,63.02501507408172],[18.32598325983261,63.01488361046242],[18.30078300783009,63.00644072411302],[18.243182431824323,62.999686415033494],[18.26478264782648,62.98955495141419],[18.523985239852408,62.991243528684066],[18.552785527855292,62.986177796874415],[18.570785707857084,62.972669178715364],[18.577985779857812,62.95916056055631],[18.56718567185672,62.95409482874666],[18.552785527855292,62.95916056055631],[18.545585455854564,62.972669178715364],[18.538385383853836,62.972669178715364],[18.527585275852772,62.95409482874666],[18.505985059850616,62.94902909693701],[18.477184771847732,62.95240625147676],[18.419584195841963,62.96929202417559],[18.40158401584017,62.964226292365964],[18.394383943839443,62.945651942397234],[18.44118441184412,62.928766169698406],[18.455584555845576,62.92538901515866],[18.49158491584916,62.93045474696831],[18.50958509585095,62.93214332423818],[18.523985239852408,62.92538901515866],[18.513185131851316,62.90343751065018],[18.473584735847368,62.901748933380304],[18.40158401584017,62.91188039699958],[18.4159841598416,62.89668320157065],[18.462784627846275,62.888240315221225],[18.473584735847368,62.87642027433205],[18.469984699847004,62.86797738798265],[18.462784627846275,62.861223078903095],[18.45198451984521,62.857845924363346],[18.42678426784269,62.85446876982357],[18.419584195841963,62.84940303801392],[18.40878408784087,62.84602588347417],[18.40158401584017,62.84096015166452],[18.37638376383765,62.83589441985487],[18.36558365583656,62.83589441985487],[18.347583475834767,62.839271574394644],[18.329583295832975,62.839271574394644],[18.32598325983261,62.84096015166452],[18.322383223832247,62.84433730620427],[18.318783187831883,62.84940303801392],[18.31518315183152,62.85615734709347],[18.2827828278283,62.87642027433205],[18.268382683826843,62.883174583411574],[18.246782467824687,62.883174583411574],[18.25038250382505,62.879797428871825],[18.253982539825415,62.86966596525252],[18.20718207182074,62.86966596525252],[18.20718207182074,62.862911656173],[18.217982179821803,62.85953450163322],[18.221582215822167,62.852780192553695],[18.21438214382144,62.84433730620427],[18.20718207182074,62.83589441985487],[18.228782287822895,62.82914011077534],[18.261182611826115,62.847714460744044],[18.2827828278283,62.84096015166452],[18.25758257582578,62.81056576080661],[18.243182431824323,62.798745719917434],[18.22518225182253,62.79367998810781],[18.21438214382144,62.790302833568035],[18.20718207182074,62.78185994721861],[18.196381963819647,62.776794215408984],[18.18198181981822,62.78354852448851],[18.18198181981822,62.790302833568035],[18.18918189181892,62.79705714264756],[18.196381963819647,62.803811451727086],[18.19998199982001,62.80718860626686],[18.185581855818555,62.812254338076514],[18.178381783817855,62.803811451727086],[18.167581675816763,62.79199141083791],[18.160381603816035,62.78017136994873],[18.13878138781388,62.77172848359933],[18.120781207812087,62.77003990632943],[18.077580775807775,62.77341706086921],[18.08118081180814,62.78354852448851],[18.084780847808474,62.78692567902826],[18.066780667806682,62.79367998810781],[18.04878048780489,62.795368565377686],[18.009180091800914,62.79367998810781],[18.034380343803434,62.812254338076514],[18.120781207812087,62.80550002899699],[18.145981459814607,62.822385801695816],[18.102781027810295,62.830828688045216],[18.084780847808474,62.83758299712474],[18.070380703807047,62.84940303801392],[18.07398073980741,62.85109161528382],[18.07398073980741,62.852780192553695],[18.077580775807775,62.85615734709347],[18.05598055980562,62.852780192553695],[18.019980199802006,62.84096015166452],[17.987579875798758,62.825762956235565],[17.97317973179733,62.812254338076514],[17.969579695796966,62.80718860626686],[17.951579515795174,62.81056576080661],[17.933579335793354,62.817320069886165],[17.926379263792654,62.822385801695816],[17.92277922779229,62.830828688045216],[17.926379263792654,62.866288810712746],[17.92277922779229,62.86966596525252],[17.915579155791562,62.87810885160192],[17.911979119791198,62.883174583411574],[17.915579155791562,62.888240315221225],[17.92277922779229,62.89668320157065],[17.926379263792654,62.9000603561104],[17.92277922779229,62.915257551539355],[17.908379083790834,62.915257551539355],[17.893978939789406,62.910191819729704],[17.879578795787978,62.91188039699958],[17.87237872378725,62.91863470607913],[17.854378543785458,62.955783406016536],[17.84717847178473,62.964226292365964],[17.836378363783638,62.97098060144549],[17.82197821978221,62.97604633325514],[17.811178111781118,62.97942348779489],[17.818378183781846,62.98448921960454],[17.829178291782938,62.999686415033494],[17.807578075780754,62.99799783776359],[17.778777787777898,62.98280064233467],[17.760777607776078,62.97942348779489],[17.742777427774286,62.98280064233467],[17.728377283772858,62.99293210595397],[17.710377103771037,62.99799783776359],[17.692376923769245,62.99293210595397],[17.818378183781846,62.942274787857485],[17.84717847178473,62.92201186061888],[17.865178651786522,62.901748933380304],[17.890378903789042,62.86966596525252],[17.901179011790134,62.839271574394644],[17.886778867788678,62.822385801695816],[17.886778867788678,62.81563149261626],[17.92997929979302,62.80043429718734],[17.940779407794082,62.79367998810781],[17.951579515795174,62.78523710175838],[17.95517955179554,62.78185994721861],[17.95517955179554,62.763285597249904],[17.962379623796238,62.75146555636073],[17.994779947799486,62.727825474582374],[18.001980019800214,62.70925112461367],[17.99837998379985,62.697431083724496],[17.991179911799122,62.68054531102567],[17.991179911799122,62.673791001946114],[17.99837998379985,62.665348115596714],[17.994779947799486,62.66028238378706],[17.983979839798394,62.65859380651719],[17.97317973179733,62.656905229247286],[17.969579695796966,62.65859380651719],[17.944379443794446,62.66872527013649],[17.933579335793354,62.670413847406365],[17.87237872378725,62.670413847406365],[17.890378903789042,62.65859380651719],[18.041580415804162,62.62651083838941],[18.045180451804526,62.61469079750023],[18.04878048780489,62.60624791115083],[18.05598055980562,62.59949360207128],[18.06318063180632,62.59611644753153],[18.041580415804162,62.59273929299175],[17.969579695796966,62.560656324864],[17.962379623796238,62.56403347940375],[17.962379623796238,62.575853520292924],[17.951579515795174,62.60624791115083],[17.95517955179554,62.611313642960454],[17.951579515795174,62.61469079750023],[17.937179371793718,62.616379374770105],[17.92997929979302,62.613002220230356],[17.926379263792654,62.60455933388093],[17.915579155791562,62.572476365753175],[17.911979119791198,62.56572205667362],[17.911979119791198,62.55727917032422],[17.908379083790834,62.548836283974794],[17.901179011790134,62.545459129435045],[17.879578795787978,62.540393397625394],[17.893978939789406,62.52688477946634],[17.861578615786158,62.50155612041809],[17.843578435784366,62.48973607952891],[17.82197821978221,62.48635892498913],[17.811178111781118,62.48973607952891],[17.79677796777969,62.50324469768796],[17.785977859778598,62.504933274957864],[17.735577355773557,62.504933274957864],[17.692376923769245,62.49817896587834],[17.67077670776709,62.48973607952891],[17.659976599765997,62.477916038639734],[17.659976599765997,62.461030265940906],[17.674376743767453,62.455964534131255],[17.69597695976961,62.4508988023216],[17.706777067770673,62.43739018416255],[17.577175771757737,62.4407673387023],[17.56277562775628,62.44414449324208],[17.548375483754853,62.447521647781855],[17.530375303753033,62.46271884321078],[17.526775267752697,62.46440742048068],[17.479974799747993,62.504933274957864],[17.43677436774368,62.53701624308562],[17.425974259742617,62.540393397625394],[17.404374043740432,62.53532766581574],[17.397173971739733,62.51168758403739],[17.379173791737912,62.504933274957864],[17.357573575735756,62.50324469768796],[17.34317343173433,62.49817896587834],[17.332373323733236,62.488047502259036],[17.332373323733236,62.47285030683008],[17.375573755737577,62.43739018416255],[17.379173791737912,62.434013029622776],[17.379173791737912,62.425570143273376],[17.379173791737912,62.41712725692395],[17.379173791737912,62.41037294784442],[17.371973719737213,62.406995793304674],[17.36117361173612,62.4036186387649],[17.346773467734693,62.4036186387649],[17.3359733597336,62.4036186387649],[17.350373503735057,62.398552906955246],[17.36117361173612,62.390110020605846],[17.364773647736484,62.37828997971664],[17.36117361173612,62.366469938827464],[17.36117361173612,62.35633847520819],[17.36837368373685,62.34282985704911],[17.379173791737912,62.33269839342981],[17.39357393573937,62.327632661620186],[17.422374223742253,62.331009816159934],[17.43677436774368,62.331009816159934],[17.454774547745473,62.32087835254063],[17.4619746197462,62.31243546619123],[17.46917469174693,62.30230400257193],[17.476374763747657,62.29217253895263],[17.48717487174872,62.287106807142976],[17.48717487174872,62.28035249806345],[17.479974799747993,62.28035249806345],[17.472774727747293,62.278663920793576],[17.4619746197462,62.273598188983925],[17.54477544775449,62.2482695299357],[17.566375663756645,62.25333526174535],[17.598775987759893,62.24995810720557],[17.631176311763113,62.23982664358627],[17.652776527765297,62.23138375723687],[17.56997569975701,62.20436652091874],[17.54477544775449,62.20098936637896],[17.541175411754125,62.206055098188614],[17.56997569975701,62.23138375723687],[17.551975519755217,62.23644948904652],[17.533975339753397,62.23476091177662],[17.51957519575197,62.22800660269709],[17.508775087750877,62.21787513907779],[17.505175051750513,62.20436652091874],[17.505175051750513,62.18748074821991],[17.508775087750877,62.17228355279096],[17.508775087750877,62.16384066644156],[17.501575015750177,62.15033204828248],[17.497974979749813,62.14695489374273],[17.479974799747993,62.1300691210439],[17.472774727747293,62.11656050288482],[17.472774727747293,62.09629757564625],[17.472774727747293,62.08447753475707],[17.46917469174693,62.07603464840764],[17.447574475744773,62.06759176205824],[17.46917469174693,62.06252603024859],[17.458374583745837,62.04901741208954],[17.425974259742617,62.02706590758106],[17.43677436774368,62.02200017577141],[17.451174511745137,62.01186871215211],[17.4619746197462,62.00342582580271],[17.451174511745137,62.00004867126293],[17.404374043740432,61.99498293945328],[17.39357393573937,61.9916057849135],[17.38637386373864,61.98147432129423],[17.389973899739005,61.97134285767493],[17.38637386373864,61.961211394055624],[17.364773647736484,61.957834239515876],[17.353973539735392,61.95614566224597],[17.346773467734693,61.94770277589657],[17.34317343173433,61.9358827350074],[17.34317343173433,61.92406269411822],[17.346773467734693,61.91224265322904],[17.36117361173612,61.89366830326031],[17.364773647736484,61.88691399418079],[17.36117361173612,61.88015968510126],[17.346773467734693,61.87509395329161],[17.34317343173433,61.87002822148196],[17.34317343173433,61.871716798751834],[17.34317343173433,61.863273912402434],[17.34317343173433,61.854831026053006],[17.34317343173433,61.85651960332291],[17.346773467734693,61.854831026053006],[17.350373503735057,61.85314244878313],[17.353973539735392,61.84807671697348],[17.346773467734693,61.83794525335418],[17.34317343173433,61.83456809881443],[17.339573395733964,61.82950236700478],[17.3359733597336,61.82443663519513],[17.339573395733964,61.8176823261156],[17.353973539735392,61.814305171575825],[17.404374043740432,61.82105948065535],[17.400774007740097,61.810928017036076],[17.39357393573937,61.805862285226425],[17.382773827738276,61.80248513068665],[17.371973719737213,61.800796553416774],[17.371973719737213,61.792353667067346],[17.389973899739005,61.7889765125276],[17.389973899739005,61.77715647163842],[17.38637386373864,61.76195927620947],[17.38637386373864,61.74676208078051],[17.389973899739005,61.72818773081181],[17.400774007740097,61.72312199900216],[17.447574475744773,61.72818773081181],[17.465574655746565,61.73325346262146],[17.483574835748357,61.73494203989134],[17.501575015750177,61.72481057627206],[17.51237512375124,61.71299053538286],[17.51957519575197,61.702859071763584],[17.51957519575197,61.69103903087441],[17.51237512375124,61.680907567255105],[17.505175051750513,61.667398949096025],[17.501575015750177,61.6505131763972],[17.497974979749813,61.63531598096827],[17.479974799747993,61.62856167188875],[17.4619746197462,61.63025024915862],[17.447574475744773,61.6336274036984],[17.433174331743317,61.63869313550802],[17.41877418774189,61.6505131763972],[17.382773827738276,61.69272760814428],[17.36117361173612,61.70961338084311],[17.332373323733236,61.71805626719251],[17.332373323733236,61.70454764903346],[17.3359733597336,61.694416185414156],[17.350373503735057,61.67753041271533],[17.314373143731444,61.68259614452498],[17.299972999730016,61.689350453604504],[17.303573035730352,61.70454764903346],[17.26757267572677,61.721433421732286],[17.224372243722456,61.72649915354194],[17.137971379713804,61.72481057627206],[17.148771487714896,61.71467911265276],[17.166771667716688,61.70961338084311],[17.199171991719936,61.71130195811298],[17.26757267572677,61.69103903087441],[17.26037260372604,61.67415325817558],[17.227972279722792,61.6623332172864],[17.191971919719208,61.65726748547675],[17.166771667716688,61.65726748547675],[17.166771667716688,61.6505131763972],[17.173971739717416,61.64882459912732],[17.191971919719208,61.6420702900478],[17.163171631716324,61.63700455823815],[17.119971199712012,61.645447444587575],[17.098370983709856,61.63531598096827],[17.224372243722456,61.62180736280919],[17.249572495724976,61.60829874465014],[17.224372243722456,61.60323301284049],[17.209972099721,61.604921590110365],[17.173971739717416,61.61505305372967],[17.15237152371523,61.618430208269444],[17.0839708397084,61.61505305372967],[17.0839708397084,61.60829874465014],[17.119971199712012,61.609987321920016],[17.13437134371344,61.60661016738027],[17.145171451714532,61.59479012649109],[17.10197101971019,61.58465866287179],[17.055170551705515,61.582970085601914],[17.0839708397084,61.57115004471274],[17.18477184771848,61.561018581093435],[17.18477184771848,61.55426427201391],[17.091170911709128,61.555952849283784],[17.080370803708036,61.55088711747413],[17.087570875708764,61.54582138566448],[17.112771127711284,61.54075565385483],[17.130771307713076,61.53231276750543],[17.155971559715596,61.528935612965654],[17.166771667716688,61.52724703569578],[17.166771667716688,61.51880414934635],[17.123571235712376,61.51880414934635],[17.123571235712376,61.5137384175367],[17.163171631716324,61.503606953917426],[17.173971739717416,61.498541222107775],[17.17757177571775,61.4867211812186],[17.170371703717052,61.479966872139045],[17.15957159571596,61.47490114032942],[17.15237152371523,61.46476967671012],[17.155971559715596,61.45632679036069],[17.163171631716324,61.44788390401129],[17.170371703717052,61.441129594931766],[17.181171811718116,61.43775244039199],[17.191971919719208,61.43775244039199],[17.199171991719936,61.44281817220164],[17.202772027720272,61.44788390401129],[17.213572135721364,61.45126105855104],[17.220772207722092,61.44788390401129],[17.220772207722092,61.441129594931766],[17.217172171721728,61.43437528585221],[17.206372063720636,61.430998131312464],[17.195571955719572,61.42930955404259],[17.18477184771848,61.42762097677269],[17.173971739717416,61.422555244963036],[17.166771667716688,61.41580093588351],[17.15957159571596,61.42424382223294],[17.148771487714896,61.43437528585221],[17.137971379713804,61.43775244039199],[17.12717127171271,61.41748951315341],[17.10917109171092,61.409046626803985],[17.105571055710556,61.39891516318468],[17.10917109171092,61.39384943137503],[17.137971379713804,61.368520772326804],[17.166771667716688,61.35501215416775],[17.199171991719936,61.3482578450882],[17.202772027720272,61.33643780419902],[17.274772747727496,61.31448629969054],[17.245972459724612,61.311109145150795],[17.213572135721364,61.31279772242067],[17.15237152371523,61.32799491784962],[17.166771667716688,61.30773199061102],[17.191971919719208,61.29928910426162],[17.224372243722456,61.29422337245197],[17.249572495724976,61.28746906337244],[17.206372063720636,61.289157640642316],[17.188371883718844,61.29084621791219],[17.13437134371344,61.316174876960446],[17.119971199712012,61.319552031500194],[17.098370983709856,61.3212406087701],[17.098370983709856,61.31448629969054],[17.119971199712012,61.30773199061102],[17.15237152371523,61.29422337245197],[17.181171811718116,61.275649022483265],[17.199171991719936,61.25876324978444],[17.213572135721364,61.235123168006055],[17.195571955719572,61.226680281656655],[17.170371703717052,61.21992597257713],[17.15237152371523,61.204728777148176],[17.18477184771848,61.191220158989125],[17.181171811718116,61.16589149994087],[17.173971739717416,61.15744861359147],[17.15957159571596,61.14900572724204],[17.17757177571775,61.13549710908299],[17.181171811718116,61.123677068193814],[17.170371703717052,61.115234181844386],[17.145171451714532,61.115234181844386],[17.155971559715596,61.11185702730464],[17.18477184771848,61.11185702730464],[17.191971919719208,61.10847987276486],[17.199171991719936,61.10341414095521],[17.199171991719936,61.096659831875684],[17.199171991719936,61.08990552279616],[17.188371883718844,61.088216945526284],[17.181171811718116,61.08315121371663],[17.173971739717416,61.07301975009733],[17.170371703717052,61.05951113193828],[17.166771667716688,61.0460025137792],[17.170371703717052,61.04262535923945],[17.17757177571775,61.0375596274298],[17.18477184771848,61.03249389562015],[17.166771667716688,61.02236243200085],[17.15957159571596,61.02067385473097],[17.209972099721,61.02405100927072],[17.23517235172352,61.02236243200085],[17.249572495724976,61.012230968381544],[17.188371883718844,61.003788082032145],[17.166771667716688,60.99196804114297],[17.15957159571596,60.96495080482484],[17.155971559715596,60.95313076393566],[17.15957159571596,60.94806503212601],[17.181171811718116,60.93793356850671],[17.199171991719936,60.93624499123683],[17.206372063720636,60.93455641396696],[17.202772027720272,60.92104779580788],[17.206372063720636,60.914293486728354],[17.213572135721364,60.90247344583918],[17.217172171721728,60.8990962912994],[17.231572315723156,60.90416202310905],[17.242372423724248,60.90247344583918],[17.245972459724612,60.89740771402953],[17.281972819728196,60.84168466412339],[17.274772747727496,60.83999608685352],[17.263972639726404,60.83661893231374],[17.256772567725676,60.83324177777399],[17.256772567725676,60.82817604596434],[17.26037260372604,60.816356005075164],[17.26757267572677,60.81466742780526],[17.274772747727496,60.81804458234504],[17.281972819728196,60.81297885053539],[17.28557285572856,60.799470232376336],[17.281972819728196,60.789338768757034],[17.281972819728196,60.780895882407634],[17.296372963729652,60.772452996058206],[17.314373143731444,60.76907584151843],[17.332373323733236,60.77076441878833],[17.3359733597336,60.767387264248555],[17.325173251732537,60.75219006881963],[17.31077310773108,60.745435759740076],[17.278372783727832,60.736992873390676],[17.253172531725312,60.72010710069185],[17.213572135721364,60.70659848253277],[17.191971919719208,60.701532750723146],[17.18477184771848,60.696467018913495],[17.188371883718844,60.69308986437372],[17.191971919719208,60.68971270983397],[17.206372063720636,60.691401287103844],[17.227972279722792,60.696467018913495],[17.238772387723884,60.69815559618337],[17.256772567725676,60.69477844164359],[17.278372783727832,60.67958124621467],[17.31077310773108,60.67282693713514],[17.364773647736484,60.64918685535676],[17.325173251732537,60.63567823719771],[17.325173251732537,60.62892392811818],[17.339573395733964,60.62216961903866],[17.36117361173612,60.62216961903866],[17.375573755737577,60.62385819630853],[17.379173791737912,60.62385819630853],[17.397173971739733,60.63230108265793],[17.415174151741525,60.63736681446758],[17.548375483754853,60.64918685535676],[17.573575735757373,60.647498278086886],[17.59517595175953,60.639055391737486],[17.609576095760957,60.63061250538806],[17.64557645576457,60.61879246449888],[17.659976599765997,60.60866100087958],[17.64557645576457,60.60021811453018],[17.609576095760957,60.588398073641],[17.602376023760257,60.58333234183135],[17.605976059760593,60.56982372367227],[17.62037620376205,60.54787221916382],[17.623976239762413,60.536052178274616],[17.63837638376384,60.51578925103604],[17.67077670776709,60.50396921014686],[17.742777427774286,60.49890347833721],[17.742777427774286,60.50565778741674],[17.728377283772858,60.53436360100474],[17.760777607776078,60.563069414592746],[17.81477814778148,60.585020919101225],[17.919179191791926,60.60021811453018],[17.94797947979481,60.598529537260276],[17.97317973179733,60.588398073641],[17.994779947799486,60.552937950973444],[17.994779947799486,60.54111791008427],[17.987579875798758,60.53098644646499],[17.98037980379806,60.522543560115565],[17.965979659796602,60.51916640557582],[17.965979659796602,60.51241209649626],[17.994779947799486,60.51072351922639],[18.019980199802006,60.50228063287699],[18.06318063180632,60.47864055109861],[18.09918099180993,60.465131932939556],[18.102781027810295,60.45837762386003],[18.109981099810994,60.44318042843108],[18.11358113581136,60.43642611935155],[18.142381423814243,60.4127860375732],[18.178381783817855,60.39927741941412],[18.261182611826115,60.38239164671529],[18.246782467824687,60.37732591490567],[18.221582215822167,60.36381729674659],[18.20718207182074,60.35537441039719],[18.20718207182074,60.34693152404776],[18.221582215822167,60.33848863769836],[18.228782287822895,60.33342290588871],[18.235982359823595,60.326668596809185],[18.25038250382505,60.33342290588871],[18.279182791827935,60.348620101317664],[18.297182971829727,60.35537441039719],[18.31518315183152,60.357062987667064],[18.32598325983261,60.35537441039719],[18.35838358383586,60.34693152404776],[18.42678426784269,60.348620101317664],[18.448384483844848,60.34186579223811],[18.448384483844848,60.33848863769836],[18.444784447844484,60.33004575134893],[18.444784447844484,60.31991428772963],[18.448384483844848,60.313159978650106],[18.45198451984521,60.30978282411036],[18.473584735847368,60.299651360491055],[18.473584735847368,60.29289705141153],[18.462784627846275,60.29120847414163],[18.448384483844848,60.29289705141153],[18.437584375843755,60.29289705141153],[18.42678426784269,60.286142742332004],[18.56718567185672,60.25912550601387],[18.603186031860332,60.23886257877527],[18.563585635856356,60.22704253788609],[18.40158401584017,60.25912550601387],[18.369183691836923,60.27938843325245],[18.31518315183152,60.321602864999534],[18.329583295832975,60.286142742332004],[18.369183691836923,60.25912550601387],[18.4159841598416,60.23548542423552],[18.448384483844848,60.21184534245714],[18.430384303843056,60.210156765187264],[18.4159841598416,60.215222496996915],[18.394383943839443,60.23210826969574],[18.397983979839807,60.20846818791739],[18.419584195841963,60.193270992488436],[18.469984699847004,60.17638521978961],[18.49158491584916,60.16118802436068],[18.505985059850616,60.15612229255103],[18.523985239852408,60.15612229255103],[18.53478534785347,60.15949944709078],[18.545585455854564,60.16456517890043],[18.549185491854928,60.17300806524986],[18.549185491854928,60.174696642519734],[18.549185491854928,60.144302251661856],[18.549185491854928,60.1291050562329],[18.552785527855292,60.120662169883474],[18.574385743857448,60.08857920175572],[18.577985779857812,60.07338200632677],[18.585185851858512,60.07338200632677],[18.588785887858876,60.08857920175572],[18.59238592385924,60.1088421289943],[18.588785887858876,60.12741647896303],[18.577985779857812,60.14261367439195],[18.599585995859968,60.147679406201604],[18.624786247862488,60.15105656074138],[18.64998649986501,60.147679406201604],[18.685986859868592,60.130793633502776],[18.721987219872204,60.125727901693125],[18.736387363873632,60.11559643807385],[18.739987399873996,60.09871066537502],[18.739987399873996,60.06493911997737],[18.74358743587436,60.049741924548414],[18.790387903879036,60.01765895642063],[18.797587975879765,60.00415033826158],[18.783187831878337,60.03116757457971],[18.761587615876152,60.05649623362794],[18.754387543875453,60.081824892676195],[18.765187651876516,60.1105307062642],[18.804788047880493,60.12235074715338],[18.815588155881557,60.117285015343725],[18.81918819188192,60.11390786080395],[18.81918819188192,60.09702208810512],[18.81918819188192,60.081824892676195],[18.822788227882285,60.068316274517116],[18.86958869588696,59.99401887464228],[18.90198901989021,59.94673871108557],[18.923589235892365,59.934918670196396],[18.966789667896677,59.92647578384697],[18.988389883898833,59.91972147476744],[19.006390063900653,59.91127858841804],[19.009990099901017,59.90959001114814],[19.009990099901017,59.90621285660839],[19.009990099901017,59.899458547528866],[19.009990099901017,59.89608139298909],[19.024390243902445,59.88426135209991],[19.031590315903173,59.880884197560135],[19.042390423904237,59.88257277483004],[19.042390423904237,59.88763850663966],[19.038790387903873,59.89776997025896],[19.035190351903537,59.902835702068614],[19.05319053190533,59.90114712479874],[19.07119071190712,59.89608139298909],[19.067590675906757,59.88257277483004],[19.067590675906757,59.84204692035283],[19.067590675906757,59.83360403400343],[19.035190351903537,59.8352926112733],[19.02079020790208,59.840358343082954],[18.948789487894885,59.899458547528866],[18.916389163891637,59.92141005203732],[18.887588875888753,59.929852938386745],[18.89478894788948,59.916344320227694],[18.930789307893093,59.88594992936979],[18.934389343893457,59.86906415667096],[18.923589235892365,59.85217838397213],[18.862388623886233,59.80320964314555],[18.84438844388444,59.79476675679612],[18.81918819188192,59.79307817952625],[18.77598775987761,59.79307817952625],[18.754387543875453,59.79138960225637],[18.739987399873996,59.782946715906945],[18.732787327873297,59.769438097747894],[18.75078750787509,59.769438097747894],[18.790387903879036,59.77956956136717],[19.042390423904237,59.78463529317682],[19.085590855908578,59.77281525228764],[19.074790747907485,59.74917517050929],[19.056790567905693,59.73566655235024],[19.035190351903537,59.72891224327071],[18.973989739897405,59.71878077965141],[18.955989559895613,59.71878077965141],[18.941589415894157,59.72384651146106],[18.930789307893093,59.73060082054059],[18.919989199892,59.74579801596954],[18.912789127891273,59.752552325049066],[18.90198901989021,59.733977975080336],[18.880388803888053,59.72215793419116],[18.855188551885533,59.71371504784176],[18.779587795877973,59.70189500695258],[18.757987579875817,59.69176354333328],[18.754387543875453,59.67656634790433],[18.71838718387184,59.67656634790433],[18.714787147871476,59.67318919336458],[18.711187111871112,59.66474630701515],[18.707587075870777,59.657991997935625],[18.70038700387005,59.652926266125974],[18.69318693186932,59.649549111586225],[18.74358743587436,59.649549111586225],[18.736387363873632,59.6411062252368],[18.72558725587257,59.6326633388874],[18.711187111871112,59.62422045253797],[18.70038700387005,59.62084329799822],[18.689586895868956,59.62422045253797],[18.682386823868256,59.62928618434762],[18.671586715867164,59.636040493427146],[18.660786607866072,59.636040493427146],[18.678786787867892,59.617466143458444],[18.685986859868592,59.60564610256927],[18.678786787867892,59.600580370759616],[18.664386643866436,59.59720321621984],[18.639186391863916,59.58369459806079],[18.595985959859604,59.573563134441486],[18.5419854198542,59.546545898123355],[18.48438484384843,59.53472585723418],[18.45918459184591,59.52121723907513],[18.412384123841235,59.49082284821725],[18.379983799838016,59.475625652788295],[18.343983439834403,59.47224849824852],[18.268382683826843,59.47731423005817],[18.268382683826843,59.470559920978644],[18.304383043830455,59.45705130281959],[18.289982899829,59.45029699374007],[18.261182611826115,59.45198557100994],[18.246782467824687,59.45029699374007],[18.268382683826843,59.44523126193042],[18.2827828278283,59.43678837558099],[18.27558275582757,59.42327975742194],[18.293582935829363,59.41483687107251],[18.318783187831883,59.40977113926286],[18.336783367833675,59.408082561992984],[18.30798307983082,59.39626252110381],[18.246782467824687,59.39795109837368],[18.18918189181892,59.408082561992984],[18.160381603816035,59.42159118015206],[18.171181711817127,59.426656911961686],[18.18198181981822,59.42834548923159],[18.196381963819647,59.426656911961686],[18.20718207182074,59.42159118015206],[18.203582035820375,59.43003406650146],[18.19998199982001,59.45029699374007],[18.192781927819283,59.45705130281959],[18.18198181981822,59.45873988008947],[18.160381603816035,59.44691983920029],[18.145981459814607,59.443542684660514],[18.13878138781388,59.44523126193042],[18.127981279812815,59.45536272554969],[18.117181171811723,59.45705130281959],[18.11358113581136,59.45536272554969],[18.102781027810295,59.44523126193042],[18.095580955809567,59.443542684660514],[18.084780847808474,59.43847695285086],[18.084780847808474,59.42834548923159],[18.091980919809203,59.41652544834241],[18.09918099180993,59.408082561992984],[18.066780667806682,59.39795109837368],[18.052380523805255,59.39626252110381],[18.041580415804162,59.39795109837368],[18.019980199802006,59.40639398472311],[18.009180091800914,59.408082561992984],[18.145981459814607,59.34053947119767],[18.109981099810994,59.33547373938802],[18.095580955809567,59.3388508939278],[18.095580955809567,59.32703085303862],[18.171181711817127,59.32703085303862],[18.196381963819647,59.33378516211815],[18.20718207182074,59.33209658484827],[18.21438214382144,59.320276543959096],[18.221582215822167,59.320276543959096],[18.253982539825415,59.36249097570615],[18.318783187831883,59.3759995938652],[18.39078390783908,59.36924528478568],[18.448384483844848,59.35404808935675],[18.44118441184412,59.350670934816975],[18.430384303843056,59.34391662573745],[18.42678426784269,59.34053947119767],[18.455584555845576,59.33547373938802],[18.469984699847004,59.337162316657924],[18.480784807848096,59.3472937802772],[18.455584555845576,59.381065325674854],[18.448384483844848,59.39626252110381],[18.495184951849524,59.39626252110381],[18.455584555845576,59.40977113926286],[18.437584375843755,59.41990260288216],[18.42678426784269,59.43678837558099],[18.48438484384843,59.43341122104124],[18.50958509585095,59.42834548923159],[18.538385383853836,59.41652544834241],[18.538385383853836,59.413148293802635],[18.5419854198542,59.399639675643584],[18.545585455854564,59.39626252110381],[18.613986139861396,59.37431101659533],[18.599585995859968,59.36249097570615],[18.585185851858512,59.36249097570615],[18.563585635856356,59.3675567075158],[18.545585455854564,59.3675567075158],[18.56718567185672,59.36080239843628],[18.599585995859968,59.355736666626626],[18.631986319863216,59.3472937802772],[18.646386463864644,59.33040800757837],[18.639186391863916,59.315210812149445],[18.621186211862124,59.30845650306992],[18.56718567185672,59.30676792580002],[18.552785527855292,59.30507934853014],[18.53478534785347,59.30001361672049],[18.520385203852044,59.29832503945062],[18.502385023850252,59.30339077126027],[18.49158491584916,59.30845650306992],[18.462784627846275,59.31183365760967],[18.448384483844848,59.31352223487954],[18.36558365583656,59.30676792580002],[18.336783367833675,59.31352223487954],[18.34038340383404,59.31689938941932],[18.343983439834403,59.328719430308496],[18.343983439834403,59.33378516211815],[18.32598325983261,59.33378516211815],[18.30798307983082,59.33040800757837],[18.289982899829,59.32196512122897],[18.27558275582757,59.31352223487954],[18.289982899829,59.30845650306992],[18.30078300783009,59.301702193990366],[18.30798307983082,59.293259307640966],[18.31518315183152,59.28481642129154],[18.31518315183152,59.27806211221201],[18.2827828278283,59.279750689481915],[18.271982719827207,59.274684957672264],[18.279182791827935,59.261176339513185],[18.336783367833675,59.24429056681436],[18.361983619836195,59.24091341227461],[18.387183871838715,59.230781948655306],[18.412384123841235,59.21558475322635],[18.42678426784269,59.19701040325765],[18.336783367833675,59.23584768046496],[18.31518315183152,59.23415910319508],[18.31518315183152,59.22233906230588],[18.329583295832975,59.21389617595648],[18.35118351183513,59.2105190214167],[18.36558365583656,59.2105190214167],[18.372783727837287,59.203764712337176],[18.37638376383765,59.191944671448],[18.387183871838715,59.1835017850986],[18.405184051840536,59.18856751690825],[18.40158401584017,59.18519036236847],[18.40158401584017,59.1818132078287],[18.397983979839807,59.17843605328895],[18.394383943839443,59.17505889874917],[18.394383943839443,59.168304589669646],[18.419584195841963,59.17505889874917],[18.430384303843056,59.17505889874917],[18.43398433984339,59.16492743512987],[18.430384303843056,59.15310739424069],[18.423184231842328,59.14466450789129],[18.4159841598416,59.13959877608164],[18.40158401584017,59.14466450789129],[18.379983799838016,59.14804166243104],[18.343983439834403,59.141287353351515],[18.30798307983082,59.13115588973221],[18.289982899829,59.12102442611294],[18.30078300783009,59.12271300338281],[18.311583115831155,59.12102442611294],[18.318783187831883,59.11595869430329],[18.32598325983261,59.10751580795386],[18.228782287822895,59.083875726175506],[18.19998199982001,59.08049857163576],[18.21438214382144,59.08725288071528],[18.243182431824323,59.09569576706468],[18.253982539825415,59.100761498874334],[18.243182431824323,59.10751580795386],[18.246782467824687,59.11089296249364],[18.253982539825415,59.114270117033385],[18.253982539825415,59.12102442611294],[18.23958239582396,59.12102442611294],[18.22518225182253,59.119335848843036],[18.210782107821075,59.114270117033385],[18.196381963819647,59.10413865341411],[18.185581855818555,59.09907292160446],[18.153181531815335,59.09738434433456],[18.13878138781388,59.09400718979481],[18.13158131581318,59.08725288071528],[18.109981099810994,59.06361279893693],[18.095580955809567,59.05854706712728],[18.041580415804162,59.06023564439715],[18.045180451804526,59.0551699125875],[18.04878048780489,59.043349871698325],[18.04878048780489,59.038284139888674],[18.027180271802735,59.0450384489682],[18.01278012780128,59.0450384489682],[18.001980019800214,59.038284139888674],[18.019980199802006,59.02308694445972],[18.001980019800214,59.00620117176089],[17.976779767797694,58.985938244522316],[17.962379623796238,58.96398674001384],[17.962379623796238,58.95216669912466],[17.969579695796966,58.94372381277523],[17.969579695796966,58.93528092642583],[17.962379623796238,58.92177230826678],[17.94797947979481,58.91501799918723],[17.92997929979302,58.909952267377605],[17.911979119791198,58.909952267377605],[17.901179011790134,58.91501799918723],[17.893978939789406,58.90319795829805],[17.893978939789406,58.889689340139],[17.893978939789406,58.860983526550996],[17.879578795787978,58.86773783563052],[17.868778687786886,58.87618072197995],[17.865178651786522,58.888000762869126],[17.87237872378725,58.90150938102818],[17.865178651786522,58.91501799918723],[17.861578615786158,58.918395153727005],[17.850778507785094,58.92514946280653],[17.843578435784366,58.92514946280653],[17.836378363783638,58.92177230826678],[17.829178291782938,58.92177230826678],[17.81477814778148,58.92852661734631],[17.803978039780418,58.93359234915596],[17.785977859778598,58.953855276394535],[17.775177751777534,58.96060958547406],[17.775177751777534,58.94710096731501],[17.785977859778598,58.92514946280653],[17.803978039780418,58.9082636901077],[17.793177931779326,58.891377917408875],[17.785977859778598,58.88462360832935],[17.778777787777898,58.88124645378957],[17.775177751777534,58.88631218559922],[17.775177751777534,58.896443649218526],[17.778777787777898,58.9082636901077],[17.782377823778234,58.91501799918723],[17.749977499775014,58.923460885536656],[17.74637746377465,58.94203523550536],[17.753577535775378,58.96567531728371],[17.742777427774286,58.98424966725244],[17.742777427774286,58.99100397633197],[17.757177571775713,59.00620117176089],[17.760777607776078,59.0365955626188],[17.760777607776078,59.06698995347668],[17.757177571775713,59.08049857163576],[17.757177571775713,59.08556430344538],[17.767977679776806,59.10920438522376],[17.767977679776806,59.12102442611294],[17.757177571775713,59.12609015792259],[17.74637746377465,59.12271300338281],[17.731977319773193,59.114270117033385],[17.728377283772858,59.10413865341411],[17.724777247772494,59.073744262556204],[17.72117721177213,59.05854706712728],[17.710377103771037,59.05348133531763],[17.699576995769974,59.056858489857376],[17.667176671766725,59.08049857163576],[17.667176671766725,59.09569576706468],[17.68877688776888,59.11764727157316],[17.692376923769245,59.13115588973221],[17.68877688776888,59.14297593062142],[17.681576815768153,59.15310739424069],[17.67077670776709,59.16155028059012],[17.659976599765997,59.168304589669646],[17.674376743767453,59.13453304427199],[17.659976599765997,59.119335848843036],[17.649176491764933,59.10751580795386],[17.631176311763113,59.09907292160446],[17.609576095760957,59.09400718979481],[17.62037620376205,59.07205568528633],[17.616776167761685,59.051792758047725],[17.61317613176132,59.03152983080915],[17.631176311763113,59.0180212126501],[17.62037620376205,59.002824017221144],[17.61317613176132,58.980872512712665],[17.605976059760593,58.96567531728371],[17.598775987759893,58.97074104909336],[17.5879758797588,58.96567531728371],[17.580775807758073,58.96060958547406],[17.577175771757737,58.95723243093431],[17.584375843758437,58.950478121854786],[17.591575915759165,58.94710096731501],[17.602376023760257,58.94372381277523],[17.609576095760957,58.94372381277523],[17.609576095760957,58.93696950369571],[17.602376023760257,58.92852661734631],[17.61317613176132,58.923460885536656],[17.627576275762777,58.918395153727005],[17.616776167761685,58.90150938102818],[17.598775987759893,58.89475507194865],[17.577175771757737,58.89475507194865],[17.555575555755553,58.8998208037583],[17.53757537575376,58.90150938102818],[17.54477544775449,58.889689340139],[17.559175591755917,58.8795578765197],[17.591575915759165,58.86773783563052],[17.591575915759165,58.860983526550996],[17.56997569975701,58.860983526550996],[17.577175771757737,58.855917794741345],[17.584375843758437,58.85422921747147],[17.555575555755553,58.85422921747147],[17.479974799747993,58.88631218559922],[17.447574475744773,58.89475507194865],[17.447574475744773,58.888000762869126],[17.465574655746565,58.88124645378957],[17.46917469174693,58.8711149901703],[17.4619746197462,58.84072059931239],[17.451174511745137,58.82383482661356],[17.451174511745137,58.81539194026416],[17.458374583745837,58.81201478572439],[17.465574655746565,58.81032620845451],[17.48717487174872,58.80019474483521],[17.458374583745837,58.79175185848581],[17.3359733597336,58.806949053914735],[17.371973719737213,58.77824324032673],[17.375573755737577,58.76473462216768],[17.357573575735756,58.75122600400863],[17.303573035730352,58.7529145812785],[17.274772747727496,58.749537426738726],[17.274772747727496,58.730963076770024],[17.163171631716324,58.7326516540399],[17.130771307713076,58.73771738584955],[17.119971199712012,58.744471694929075],[17.10197101971019,58.7613574676279],[17.087570875708764,58.76473462216768],[17.07677076770767,58.763046044897806],[17.04437044370445,58.7529145812785],[17.02637026370263,58.75122600400863],[17.040770407704088,58.74784884946885],[17.073170731707336,58.744471694929075],[17.0839708397084,58.73771738584955],[17.0839708397084,58.72927449950015],[17.07677076770767,58.72083161315072],[17.06957069570697,58.714077304071196],[17.062370623706244,58.71070014953142],[17.0839708397084,58.70225726318202],[17.123571235712376,58.7056344177218],[17.145171451714532,58.70225726318202],[17.145171451714532,58.69719153137237],[17.123571235712376,58.68368291321332],[17.10917109171092,58.67017429505424],[17.094770947709492,58.660042831434964],[17.06957069570697,58.66173140870484],[17.011970119701203,58.681994335943415],[16.97596975969759,58.68537149048319],[16.954369543695435,58.668485717784364],[17.00117001170011,58.668485717784364],[17.01917019170193,58.660042831434964],[17.037170371703724,58.641468481466234],[17.011970119701203,58.641468481466234],[16.92556925569255,58.62627128603731],[16.579965799657998,58.646534213275885],[16.234362343623445,58.668485717784364],[16.234362343623445,58.66173140870484],[16.245162451624537,58.65835425416506],[16.2559625596256,58.651599945085536],[16.26316263162633,58.643157058736136],[16.2559625596256,58.63471417238671],[16.241562415624173,58.633025595116834],[16.198361983619833,58.638091326926485],[16.18036180361804,58.63471417238671],[16.18036180361804,58.62795986330718],[16.191161911619133,58.63133701784696],[16.20556205562056,58.63471417238671],[16.21276212762129,58.63133701784696],[16.219962199622017,58.62120555422766],[16.241562415624173,58.62795986330718],[16.284762847628485,58.616139822418006],[16.30636306363064,58.624582708767406],[16.32076320763207,58.63640274965658],[16.335163351633526,58.63977990419636],[16.34596345963459,58.63640274965658],[16.367563675636774,58.62120555422766],[16.37116371163711,58.62120555422766],[16.37116371163711,58.61782839968788],[16.37116371163711,58.60431978152883],[16.374763747637473,58.5958768951794],[16.38916389163893,58.59081116336975],[16.399963999639994,58.59249974063965],[16.410764107641086,58.5958768951794],[16.41436414364145,58.60938551333848],[16.42156421564215,58.624582708767406],[16.428764287642878,58.63977990419636],[16.43956439564397,58.64822279054576],[16.453964539645398,58.646534213275885],[16.504365043650438,58.63133701784696],[16.518765187651894,58.624582708767406],[16.637566375663766,58.62627128603731],[16.659166591665922,58.62289413149753],[16.677166771667714,58.611074090608355],[16.687966879668807,58.606008358798704],[16.73116731167312,58.60263120425893],[16.74916749167491,58.59249974063965],[16.745567455674575,58.597565472449304],[16.74196741967421,58.60938551333848],[16.74196741967421,58.61445124514813],[16.777967779677795,58.60769693606858],[16.788767887678887,58.60769693606858],[16.777967779677795,58.589122586099876],[16.785167851678523,58.57223681340105],[16.803168031680315,58.562105349781746],[16.8319683196832,58.558728195242],[16.821168211682135,58.553662463432346],[16.81756817568177,58.55197388616247],[16.81756817568177,58.54690815435282],[16.84276842768429,58.54690815435282],[16.84276842768429,58.53846526800339],[16.835568355683563,58.53002238165399],[16.846368463684655,58.52495664984434],[16.885968859688603,58.518202340764816],[16.939969399694007,58.491185104446686],[16.914769147691487,58.48274221809726],[16.864368643686447,58.48274221809726],[16.84276842768429,58.477676486287635],[16.853568535685355,58.46247929085868],[16.8319683196832,58.45234782723938],[16.795967959679615,58.44559351815985],[16.770767707677095,58.442216363620076],[16.76716767167673,58.4405277863502],[16.752767527675275,58.432084900000774],[16.74916749167491,58.428707745461026],[16.74196741967421,58.4303963227309],[16.727567275672754,58.43546205454055],[16.720367203672055,58.437150631810425],[16.59796597965979,58.4489706726996],[16.54036540365405,58.46754502266833],[16.443164431644334,58.486119372637035],[16.41436414364145,58.477676486287635],[16.44676446764467,58.47429933174786],[16.659166591665922,58.415199127301975],[16.69156691566917,58.41351055003207],[16.7059670596706,58.40844481822242],[16.713167131671327,58.39493620006337],[16.71676716767169,58.38649331371394],[16.713167131671327,58.37805042736454],[16.709567095670963,58.369607541015114],[16.713167131671327,58.35947607739584],[16.72396723967239,58.361164654665714],[16.738367383673847,58.36454180920549],[16.752767527675275,58.369607541015114],[16.75636756367564,58.37298469555489],[16.76716767167673,58.36791896374524],[16.770767707677095,58.36285323193559],[16.77436774367743,58.339213150157235],[16.63036630366304,58.35441034558619],[16.64836648366483,58.34259030469701],[16.684366843668442,58.32739310926806],[16.69876698766987,58.31895022291866],[16.695166951669535,58.308818759299356],[16.69876698766987,58.30206445021983],[16.709567095670963,58.298687295680054],[16.720367203672055,58.30037587294993],[16.727567275672754,58.303753027489705],[16.727567275672754,58.31050733656923],[16.720367203672055,58.31895022291866],[16.777967779677795,58.325704531998184],[16.79956799567995,58.32401595472828],[16.788767887678887,58.30544160475958],[16.785167851678523,58.303753027489705],[16.76716767167673,58.30544160475958],[16.759967599676003,58.30544160475958],[16.759967599676003,58.30206445021983],[16.759967599676003,58.29699871841018],[16.759967599676003,58.290244409330654],[16.75636756367564,58.285178677521],[16.74196741967421,58.281801522981226],[16.7059670596706,58.27842436844145],[16.7059670596706,58.271670059361924],[16.73116731167312,58.268292904822175],[16.803168031680315,58.24465282304382],[16.79236792367925,58.23958709123417],[16.788767887678887,58.23789851396427],[16.803168031680315,58.23114420488474],[16.813968139681407,58.22101274126544],[16.821168211682135,58.20750412310639],[16.82476824768247,58.192306927677436],[16.821168211682135,58.178798309518385],[16.81756817568177,58.17710973224851],[16.80676806768068,58.18048688678826],[16.795967959679615,58.18217546405816],[16.788767887678887,58.178798309518385],[16.79236792367925,58.17373257770873],[16.79956799567995,58.165289691359334],[16.810368103681043,58.16191253681956],[16.777967779677795,58.129829568691775],[16.720367203672055,58.15009249593038],[16.662766627666286,58.18555261859791],[16.61596615966161,58.20243839129674],[16.63036630366304,58.18555261859791],[16.67356673566735,58.165289691359334],[16.687966879668807,58.148403918660506],[16.68076680766808,58.148403918660506],[16.66636666366665,58.1467153413906],[16.659166591665922,58.148403918660506],[16.68076680766808,58.1281409914219],[16.71676716767169,58.10450090964355],[16.734767347673483,58.08423798240494],[16.713167131671327,58.07917225059529],[16.71676716767169,58.067352209706115],[16.713167131671327,58.058909323356716],[16.702367023670234,58.05722074608684],[16.687966879668807,58.058909323356716],[16.7059670596706,58.05046643700729],[16.72396723967239,58.045400705197636],[16.74196741967421,58.04033497338801],[16.75636756367564,58.02513777795906],[16.745567455674575,58.01669489160963],[16.738367383673847,58.01500631433976],[16.727567275672754,58.01669489160963],[16.720367203672055,58.02513777795906],[16.69156691566917,58.01500631433976],[16.687966879668807,58.00825200526023],[16.69876698766987,57.99812054164093],[16.68076680766808,58.004874850720455],[16.659166591665922,58.03526924157836],[16.644766447664495,58.03864639611811],[16.63036630366304,58.02851493249884],[16.637566375663766,58.01500631433976],[16.659166591665922,57.98967765529153],[16.669966699667015,57.991366232561404],[16.687966879668807,57.98967765529153],[16.69876698766987,57.9711033053228],[16.7059670596706,57.9626604189734],[16.71676716767169,57.96603757351318],[16.727567275672754,57.974480459862576],[16.734767347673483,57.9711033053228],[16.738367383673847,57.9626604189734],[16.74196741967421,57.94577464627457],[16.745567455674575,57.94070891446492],[16.77436774367743,57.92382314176609],[16.78156781567816,57.91538025541669],[16.76716767167673,57.91538025541669],[16.727567275672754,57.928888873575744],[16.734767347673483,57.91369167814679],[16.76716767167673,57.898494482717865],[16.76716767167673,57.88836301909856],[16.75636756367564,57.876542978209386],[16.74196741967421,57.876542978209386],[16.72396723967239,57.88329728728891],[16.709567095670963,57.89174017363831],[16.69156691566917,57.91538025541669],[16.684366843668442,57.91875740995644],[16.68076680766808,57.898494482717865],[16.669966699667015,57.89174017363831],[16.651966519665194,57.89005159636844],[16.612366123661246,57.89511732817809],[16.612366123661246,57.903560214527516],[16.612366123661246,57.912003100876916],[16.608766087660882,57.920445987226344],[16.605166051660518,57.928888873575744],[16.61596615966161,57.928888873575744],[16.626766267662674,57.928888873575744],[16.633966339663402,57.92551171903597],[16.644766447664495,57.92213456449622],[16.51516515165153,57.99812054164093],[16.504365043650438,57.99812054164093],[16.49716497164971,57.99305480983128],[16.493564935649374,57.98461192348188],[16.49716497164971,57.97785761440235],[16.504365043650438,57.969414728052925],[16.533165331653322,57.95084037808422],[16.59076590765909,57.93564318265527],[16.583565835658362,57.93226602811552],[16.576365763657634,57.92382314176609],[16.569165691656934,57.92213456449622],[16.576365763657634,57.912003100876916],[16.576365763657634,57.901871637257614],[16.57276572765727,57.893428750908214],[16.561965619656206,57.88836301909856],[16.543965439654414,57.898494482717865],[16.525965259652594,57.906937369067265],[16.479164791647918,57.91538025541669],[16.493564935649374,57.901871637257614],[16.486364863648646,57.89511732817809],[16.479164791647918,57.898494482717865],[16.461164611646126,57.901871637257614],[16.461164611646126,57.89511732817809],[16.677166771667714,57.76509687839712],[16.7059670596706,57.74989968296819],[16.69876698766987,57.74314537388864],[16.684366843668442,57.746522528428414],[16.633966339663402,57.76509687839712],[16.619566195661974,57.773539764746545],[16.54036540365405,57.83939427827195],[16.417964179641814,57.89511732817809],[16.428764287642878,57.876542978209386],[16.43956439564397,57.86472293732021],[16.47196471964719,57.84614858735148],[16.529565295652958,57.8258856601129],[16.57276572765727,57.795491269255024],[16.579965799657998,57.787048382905596],[16.587165871658726,57.778605496556196],[16.594365943659454,57.773539764746545],[16.608766087660882,57.77016261020677],[16.619566195661974,57.76678545566699],[16.651966519665194,57.746522528428414],[16.66636666366665,57.73639106480911],[16.651966519665194,57.72963675572959],[16.67356673566735,57.72963675572959],[16.69156691566917,57.72625960118981],[16.7059670596706,57.716128137570536],[16.713167131671327,57.702619519411456],[16.69156691566917,57.702619519411456],[16.69156691566917,57.69586521033193],[16.7059670596706,57.69586521033193],[16.7059670596706,57.689110901252405],[16.637566375663766,57.692488055792154],[16.608766087660882,57.69924236487171],[16.576365763657634,57.70937382849098],[16.583565835658362,57.70093094214158],[16.601566015660154,57.689110901252405],[16.612366123661246,57.68235659217288],[16.619566195661974,57.667159396743926],[16.61596615966161,57.6587165103945],[16.605166051660518,57.657027933124624],[16.583565835658362,57.662093664934275],[16.59076590765909,57.65196220131497],[16.601566015660154,57.648585046775224],[16.61596615966161,57.648585046775224],[16.62316623166231,57.6418307376957],[16.63036630366304,57.62832211953662],[16.626766267662674,57.62494496499687],[16.61596615966161,57.621567810457094],[16.608766087660882,57.61650207864744],[16.59796597965979,57.60974776956792],[16.569165691656934,57.59623915140884],[16.561965619656206,57.59286199686909],[16.558365583655842,57.59623915140884],[16.554765547655478,57.60637061502814],[16.554765547655478,57.61819065591732],[16.554765547655478,57.626633542266745],[16.54756547565475,57.621567810457094],[16.54036540365405,57.61987923318722],[16.529565295652958,57.621567810457094],[16.518765187651894,57.626633542266745],[16.529565295652958,57.61481350137757],[16.536765367653686,57.61143634683779],[16.543965439654414,57.60805919229804],[16.525965259652594,57.59623915140884],[16.518765187651894,57.59286199686909],[16.518765187651894,57.586107687789564],[16.543965439654414,57.57935337871004],[16.543965439654414,57.572599069630485],[16.51516515165153,57.572599069630485],[16.51516515165153,57.56584476055096],[16.59076590765909,57.564156183281085],[16.63036630366304,57.55740187420156],[16.659166591665922,57.515187442454476],[16.68076680766808,57.48985878340625],[16.687966879668807,57.471284433437546],[16.659166591665922,57.47635016524717],[16.67356673566735,57.45946439254834],[16.66636666366665,57.45608723800859],[16.651966519665194,57.45439866073872],[16.637566375663766,57.44933292892907],[16.633966339663402,57.43751288803989],[16.637566375663766,57.42738142442059],[16.651966519665194,57.41893853807116],[16.67356673566735,57.41556138353141],[16.65556655566556,57.408807074451886],[16.637566375663766,57.40542991991211],[16.626766267662674,57.39867561083258],[16.63036630366304,57.38010126086385],[16.57276572765727,57.38685556994341],[16.54756547565475,57.381789838133756],[16.533165331653322,57.35983833362528],[16.569165691656934,57.346329715466226],[16.561965619656206,57.3378868291168],[16.551165511655114,57.332821097307146],[16.54756547565475,57.3294439427674],[16.561965619656206,57.319312479148095],[16.486364863648646,57.29398382009984],[16.468364683646854,57.27540947013114],[16.493564935649374,57.243326502003356],[16.46476464764649,57.22812930657443],[16.457564575645762,57.20448922479608],[16.46476464764649,57.17747198847795],[16.479164791647918,57.15552048396947],[16.507965079650802,57.126814670381464],[16.518765187651894,57.12006036130194],[16.529565295652958,57.11668320676216],[16.536765367653686,57.118371784032036],[16.543965439654414,57.118371784032036],[16.551165511655114,57.109928897682636],[16.569165691656934,57.08628881590428],[16.554765547655478,57.08122308409463],[16.561965619656206,57.069403043205455],[16.57276572765727,57.055894425046375],[16.583565835658362,57.0440743841572],[16.569165691656934,57.0440743841572],[16.533165331653322,57.05251727050663],[16.533165331653322,57.0542058477765],[16.536765367653686,57.05927157958615],[16.533165331653322,57.06264873412593],[16.525965259652594,57.06602588866568],[16.52236522365223,57.0643373113958],[16.518765187651894,57.06264873412593],[16.51516515165153,57.05927157958615],[16.511565115651166,57.055894425046375],[16.507965079650802,57.05082869323675],[16.507965079650802,57.0457629614271],[16.504365043650438,57.04069722961745],[16.500765007650074,57.03900865234755],[16.49716497164971,57.04069722961745],[16.493564935649374,57.0440743841572],[16.475564755647554,57.0457629614271],[16.453964539645398,57.05082869323675],[16.43956439564397,57.05251727050663],[16.44676446764467,57.0440743841572],[16.453964539645398,57.03900865234755],[16.46476464764649,57.033942920537925],[16.47196471964719,57.03056576599815],[16.47196471964719,57.02381145691862],[16.453964539645398,57.02381145691862],[16.43956439564397,57.01367999329932],[16.435964359643606,56.998482797870366],[16.43956439564397,56.976531293361916],[16.450364503645034,56.96471125247271],[16.461164611646126,56.95626836612331],[16.468364683646854,56.949514057043785],[16.46476464764649,56.93769401615461],[16.435964359643606,56.91067677983648],[16.435964359643606,56.90561104802683],[16.43956439564397,56.8785938117087],[16.43956439564397,56.86677377081952],[16.435964359643606,56.85664230720022],[16.40716407164072,56.80767356637364],[16.40716407164072,56.79923068002421],[16.41436414364145,56.78741063913503],[16.428764287642878,56.78234490732538],[16.43956439564397,56.78741063913503],[16.453964539645398,56.79416494821456],[16.46476464764649,56.797542102754335],[16.47196471964719,56.79416494821456],[16.475564755647554,56.78572206186516],[16.47196471964719,56.77727917551573],[16.46476464764649,56.770524866436205],[16.453964539645398,56.76883628916633],[16.428764287642878,56.775590598245856],[16.41436414364145,56.77727917551573],[16.39636396363963,56.775590598245856],[16.374763747637473,56.76545913462655],[16.360363603636046,56.76377055735668],[16.35676356763568,56.75870482554703],[16.36396363963641,56.74688478465785],[16.378363783637838,56.726621857419275],[16.3819638196382,56.69453888929149],[16.378363783637838,56.67596453932279],[16.37116371163711,56.66076734389384],[16.360363603636046,56.65401303481431],[16.342363423634254,56.650635880274535],[16.324363243632433,56.65232445754441],[16.302763027630277,56.66245592116371],[16.28836288362885,56.66076734389384],[16.273962739627393,56.65739018935406],[16.26316263162633,56.65401303481431],[16.2559625596256,56.650635880274535],[16.245162451624537,56.642192993925136],[16.223562235622353,56.61348718033713],[16.219962199622017,56.60842144852748],[16.219962199622017,56.60335571671783],[16.219962199622017,56.593224253098526],[16.216362163621653,56.57127274859005],[16.21276212762129,56.547632666811694],[16.20556205562056,56.539189780462294],[16.18036180361804,56.53750120319239],[16.173161731617313,56.52736973957312],[16.165961659616613,56.50879538960439],[16.119161191611937,56.454760916968155],[16.093960939609417,56.419300794300625],[16.065160651606533,56.33656050807636],[16.039960399604013,56.255508799122],[16.032760327603285,56.25044306731235],[16.021960219602192,56.24706591277257],[16.014760147601493,56.23862302642317],[16.01116011160113,56.22849156280387],[16.0039600396004,56.22004867645444],[15.989559895598973,56.20822863556526],[15.949959499594996,56.187965708326686],[15.931959319593204,56.17445709016761],[15.874358743587436,56.10353684483255],[15.85275852758528,56.08665107213372],[15.834758347583488,56.08833964940359],[15.816758167581696,56.098471113022896],[15.787957879578812,56.106913999372324],[15.820358203582032,56.14068554476998],[15.82755827558276,56.15925989473868],[15.805958059580604,56.16770278108808],[15.755557555575564,56.155882740198905],[15.730357303573044,56.15757131746878],[15.712357123571252,56.17445709016761],[15.70155701557016,56.169391358357984],[15.697956979569796,56.17276851289773],[15.690756907569096,56.177834244707384],[15.683556835568368,56.18121139924716],[15.669156691566911,56.182899976517035],[15.654756547565484,56.19303144013634],[15.647556475564755,56.19472001740621],[15.633156331563328,56.18627713105681],[15.611556115561172,56.169391358357984],[15.593555935559351,56.160948472008556],[15.57555575555756,56.17445709016761],[15.582755827558287,56.18121139924716],[15.593555935559351,56.19303144013634],[15.597155971559715,56.20316290375561],[15.586355863558651,56.20822863556526],[15.571955719557195,56.20654005829539],[15.535955359553611,56.187965708326686],[15.49275492754927,56.17614566743751],[15.485554855548571,56.17107993562786],[15.485554855548571,56.155882740198905],[15.478354783547843,56.152505585659156],[15.460354603546051,56.160948472008556],[15.453154531545323,56.16601420381821],[15.44235442354423,56.17276851289773],[15.431554315543167,56.17952282197726],[15.41715417154171,56.18121139924716],[15.402754027540283,56.17952282197726],[15.39195391953919,56.17445709016761],[15.377553775537763,56.160948472008556],[15.370353703537035,56.150817008389254],[15.370353703537035,56.1457512765796],[15.36675366753667,56.14068554476998],[15.319953199531994,56.13899696750008],[15.305553055530567,56.142374122039854],[15.294752947529474,56.147439853849505],[15.31635316353163,56.15419416292903],[15.323553235532358,56.15419416292903],[15.31635316353163,56.16263704927843],[15.294752947529474,56.187965708326686],[15.273152731527318,56.17107993562786],[15.23355233552337,56.15757131746878],[15.193951939519394,56.152505585659156],[15.161551615516174,56.16432562654833],[15.154351543515446,56.169391358357984],[15.147151471514718,56.16770278108808],[15.13995139951399,56.16263704927843],[15.129151291512926,56.160948472008556],[15.093150931509314,56.160948472008556],[15.085950859508614,56.16432562654833],[15.08235082350825,56.182899976517035],[15.075150751507522,56.187965708326686],[15.067950679506794,56.187965708326686],[15.042750427504274,56.182899976517035],[15.035550355503574,56.18121139924716],[15.03915039150391,56.17614566743751],[15.046350463504638,56.15925989473868],[15.049950499505002,56.15419416292903],[14.98874988749887,56.169391358357984],[14.952749527495286,56.17276851289773],[14.927549275492765,56.16432562654833],[14.90594905949061,56.160948472008556],[14.873548735487361,56.16432562654833],[14.848348483484841,56.16432562654833],[14.848348483484841,56.147439853849505],[14.83034830348305,56.142374122039854],[14.812348123481229,56.150817008389254],[14.794347943479437,56.160948472008556],[14.776347763477645,56.16770278108808],[14.725947259472605,56.16770278108808],[14.700747007470085,56.160948472008556],[14.686346863468628,56.147439853849505],[14.682746827468293,56.13899696750008],[14.682746827468293,56.1271769266109],[14.682746827468293,56.1170454629916],[14.689946899468993,56.11197973118195],[14.704347043470449,56.1086025766422],[14.711547115471149,56.10184826756267],[14.715147151471513,56.093405381213245],[14.718747187471877,56.084962494863845],[14.74754747547476,56.06132241308549],[14.758347583475853,56.04781379492641],[14.769147691476917,56.030928022227585],[14.754747547475489,56.027550867687836],[14.743947439474397,56.02079655860828],[14.733147331473333,56.01404224952876],[14.72234722347224,56.00728794044923],[14.715147151471513,56.00222220863958],[14.711547115471149,56.00728794044923],[14.704347043470449,56.017419404068534],[14.686346863468628,56.017419404068534],[14.679146791467929,56.008976517719105],[14.6719467194672,56.00559936317936],[14.664746647466472,56.00728794044923],[14.657546575465773,56.008976517719105],[14.650346503465045,56.01066509498901],[14.62154621546216,56.01066509498901],[14.610746107461068,56.01066509498901],[14.610746107461068,56.01573082679866],[14.625146251462525,56.02417371314806],[14.614346143461432,56.030928022227585],[14.607146071460733,56.03768233130711],[14.603546035460369,56.04612521765654],[14.603546035460369,56.057945258545715],[14.581945819458213,56.044436640386664],[14.57114571145712,56.05119094946619],[14.567545675456756,56.05625668127584],[14.567545675456756,56.057945258545715],[14.556745567455692,56.05456810400594],[14.535145351453508,56.04612521765654],[14.524345243452444,56.044436640386664],[14.499144991449924,56.04105948584689],[14.477544775447768,56.030928022227585],[14.44514445144452,56.00222220863958],[14.409144091440908,55.97689354959135],[14.383943839438388,55.96676208597205],[14.365943659436596,55.9616963541624],[14.347943479434804,55.953253467813],[14.333543335433347,55.93467911784427],[14.322743227432284,55.91610476787557],[14.311943119431191,55.90766188152617],[14.272342723427244,55.89415326336709],[14.236342363423631,55.862070295239334],[14.207542075420747,55.821544440762125],[14.196741967419683,55.77933000901507],[14.19314193141932,55.74218130907764],[14.196741967419683,55.72529553637881],[14.207542075420747,55.70840976367998],[14.221942219422203,55.696589722790804],[14.261542615426151,55.67970395009198],[14.272342723427244,55.6678839092028],[14.275942759427608,55.65606386831362],[14.275942759427608,55.64593240469435],[14.275942759427608,55.63580094107505],[14.283142831428307,55.62229232291597],[14.2939429394294,55.61553801383644],[14.315543155431556,55.60202939567739],[14.358743587435868,55.563192118470084],[14.365943659436596,55.54461776850138],[14.362343623436232,55.52435484126278],[14.347943479434804,55.51084622310373],[14.2939429394294,55.4753861004362],[14.275942759427608,55.46863179135664],[14.265142651426515,55.46187748227712],[14.21834218342184,55.41459731872041],[14.200342003420047,55.39940012329146],[14.182341823418227,55.39095723694206],[14.157141571415707,55.38758008240228],[14.092340923409239,55.38758008240228],[14.063540635406355,55.39095723694206],[14.03474034740347,55.39771154602158],[13.955539555395575,55.42641735960959],[13.930339303393055,55.43317166868911],[13.897938979389806,55.43486024595899],[13.88353883538835,55.43317166868911],[13.85833858338583,55.42472878233971],[13.843938439384402,55.421351627799936],[13.829538295382974,55.421351627799936],[13.779137791377934,55.42810593687946],[13.645936459364606,55.421351627799936],[13.627936279362814,55.41797447326016],[13.617136171361722,55.411220164180634],[13.609936099360993,55.40108870056133],[13.595535955359566,55.39264581421193],[13.58113581135811,55.389268659672155],[13.537935379353797,55.39264581421193],[13.501935019350213,55.38758008240228],[13.411934119341197,55.35211995973475],[13.383133831338313,55.345365650655225],[13.311133111331117,55.34198849611545],[13.278732787327868,55.345365650655225],[13.116731167311684,55.380825773322755],[13.06273062730628,55.380825773322755],[13.041130411304124,55.385891505132406],[13.030330303303032,55.385891505132406],[13.023130231302332,55.38758008240228],[13.008730087300876,55.39771154602158],[13.001530015300148,55.39940012329146],[12.979929799297992,55.402777277831234],[12.958329583295836,55.39940012329146],[12.947529475294772,55.39602296875171],[12.933129331293316,55.38758008240228],[12.922329223292252,55.385891505132406],[12.91152911529116,55.38758008240228],[12.897128971289732,55.39264581421193],[12.88632886328864,55.39264581421193],[12.868328683286848,55.389268659672155],[12.846728467284692,55.38251435059263],[12.832328323283235,55.38251435059263],[12.828728287282871,55.39940012329146],[12.86112861128612,55.43486024595899],[12.864728647286483,55.43486024595899],[12.871928719287212,55.43486024595899],[12.879128791287911,55.43148309141924],[12.88632886328864,55.42472878233971],[12.904329043290431,55.41797447326016],[12.929529295292951,55.41797447326016],[12.951129511295107,55.42472878233971],[12.965529655296564,55.43486024595899],[12.958329583295836,55.448368864118066],[12.9619296192962,55.45343459592772],[12.972729727297292,55.45343459592772],[12.98712987129872,55.448368864118066],[12.976329763297628,55.4753861004362],[12.929529295292951,55.519289109453126],[12.918729187291888,55.54799492304113],[12.929529295292951,55.57838931389904],[12.958329583295836,55.598652241137614],[13.026730267302668,55.62735805472562],[13.03753037530376,55.63580094107505],[13.048330483304852,55.647620981964224],[13.059130591305916,55.661129600123274],[13.06273062730628,55.674638218282354],[13.055530555305552,55.693212568251056],[13.041130411304124,55.70503260914023],[13.026730267302668,55.71178691821976],[13.01233012330124,55.728672690918586],[12.994329943299448,55.72529553637881],[12.972729727297292,55.72698411364871],[12.965529655296564,55.745558463617414],[12.940329403294044,55.745558463617414],[12.922329223292252,55.74893561815719],[12.91152911529116,55.764132813586116],[12.922329223292252,55.76582139085602],[12.933129331293316,55.76919854539577],[12.93672936729368,55.777641431745195],[12.940329403294044,55.791150049904246],[12.925929259292587,55.8333644816513],[12.889928899289004,55.853627408889906],[12.850328503285027,55.86544744977908],[12.821528215282171,55.88739895428756],[12.81072810728108,55.902596149716516],[12.807128071280715,55.90935045879604],[12.807128071280715,55.924547654224966],[12.803528035280351,55.92961338603462],[12.799927999279987,55.93467911784427],[12.789127891278923,55.93974484965392],[12.781927819278195,55.941433426923794],[12.771127711277131,55.94818773600335],[12.763927639276403,55.965073508702176],[12.760327603276039,55.98364785867088],[12.753127531275311,55.99715647682993],[12.735127351273519,56.00559936317936],[12.720727207272091,56.01235367225888],[12.709927099270999,56.02079655860828],[12.706327063270635,56.04105948584689],[12.699126991269907,56.05119094946619],[12.609126091260919,56.1170454629916],[12.60192601926019,56.12379977207115],[12.565925659256607,56.17107993562786],[12.555125551255514,56.18121139924716],[12.54432544325445,56.213294367374914],[12.540725407254087,56.22173725372434],[12.515525155251567,56.25213164458222],[12.504725047250474,56.275771726360574],[12.465124651246526,56.29096892178953],[12.45072450724507,56.30447753994858],[12.645126451264531,56.25719737639187],[12.65232652326523,56.253820221852095],[12.666726667266687,56.23862302642317],[12.673926739267387,56.23693444915327],[12.681126811268115,56.23355729461352],[12.695526955269571,56.22511440826409],[12.706327063270635,56.22173725372434],[12.713527135271363,56.223425830994216],[12.72792727927279,56.22849156280387],[12.735127351273519,56.22849156280387],[12.778327783277831,56.22680298553399],[12.796327963279651,56.22849156280387],[12.814328143281443,56.23693444915327],[12.828728287282871,56.25044306731235],[12.832328323283235,56.26564026274127],[12.828728287282871,56.27914888090035],[12.781927819278195,56.2926574990594],[12.763927639276403,56.31460900356788],[12.731527315273155,56.36020058985471],[12.645126451264531,56.39566071252224],[12.61992619926201,56.419300794300625],[12.655926559265595,56.454760916968155],[12.713527135271363,56.46658095785733],[12.832328323283235,56.44294087607898],[12.889928899289004,56.454760916968155],[12.904329043290431,56.46658095785733],[12.918729187291888,56.485155307826034],[12.933129331293316,56.50710681233451],[12.940329403294044,56.52736973957312],[12.933129331293316,56.547632666811694],[12.904329043290431,56.593224253098526],[12.88632886328864,56.637127262115484],[12.871928719287212,56.64894730300466],[12.843128431284327,56.65401303481431],[12.817928179281807,56.65232445754441],[12.778327783277831,56.64388157119501],[12.763927639276403,56.64388157119501],[12.745927459274611,56.64388157119501],[12.731527315273155,56.64725872573479],[12.681126811268115,56.67934169386254],[12.670326703267051,56.69285031202162],[12.663126631266323,56.71480181653007],[12.648726487264867,56.72493328014937],[12.630726307263075,56.7333761664988],[12.616326163261647,56.75026193919763],[12.59472594725949,56.78741063913503],[12.60192601926019,56.80936214364351],[12.598325983259826,56.82118218453269],[12.533525335253358,56.846510843580944],[12.529925299252994,56.84988799812069],[12.529925299252994,56.85326515266047],[12.529925299252994,56.85664230720022],[12.52632526325263,56.860019461739995],[12.51912519125193,56.86170803900987],[12.504725047250474,56.865085193549646],[12.497524975249746,56.86677377081952],[12.479524795247954,56.887036698058125],[12.46872468724689,56.892102429867776],[12.436324363243642,56.895479584407525],[12.411124111241122,56.90561104802683],[12.37512375123751,56.91236535710635],[12.357123571235718,56.92418539799553],[12.346323463234626,56.94107117069436],[12.34272342723429,56.963022675202836],[12.34272342723429,56.96808840701249],[12.353523535235354,56.976531293361916],[12.353523535235354,56.979908447901664],[12.353523535235354,56.984974179711315],[12.34992349923499,56.99510564333062],[12.34992349923499,57.00017137514027],[12.346323463234626,57.006925684219794],[12.34272342723429,57.01367999329932],[12.331923319233198,57.020434302378845],[12.303123031230314,57.02887718872827],[12.270722707227065,57.042385806887324],[12.24912249122491,57.06096015685603],[12.245522455224545,57.07953450682476],[12.238322383223846,57.08122308409463],[12.220322203222025,57.09304312498381],[12.238322383223846,57.10824032041276],[12.234722347223482,57.12174893857181],[12.205922059220597,57.14876617488994],[12.202322023220233,57.15552048396947],[12.19872198721987,57.17578341120807],[12.19872198721987,57.18422629755747],[12.19152191521917,57.18591487482735],[12.162721627216285,57.18422629755747],[12.14832148321483,57.18760345209725],[12.180721807218077,57.20448922479608],[12.19152191521917,57.21293211114548],[12.180721807218077,57.216309265685254],[12.159121591215921,57.216309265685254],[12.137521375213765,57.219686420225],[12.119521195211945,57.22644072930453],[12.101521015210153,57.23657219292383],[12.130321303213037,57.23657219292383],[12.14112141121413,57.23826077019373],[12.155521555215557,57.243326502003356],[12.14112141121413,57.24839223381301],[12.126721267212673,57.25008081108291],[12.094320943209425,57.25008081108291],[12.094320943209425,57.256835120162435],[12.105121051210517,57.26358942924196],[12.112321123211245,57.270343738321486],[12.119521195211945,57.27540947013114],[12.14112141121413,57.28047520194079],[12.14832148321483,57.28554093375044],[12.14832148321483,57.292295242829965],[12.14112141121413,57.297360974639616],[12.144721447214465,57.31086959279867],[12.137521375213765,57.319312479148095],[12.126721267212673,57.32606678822762],[12.11592115921161,57.332821097307146],[12.112321123211245,57.33450967457702],[12.108721087210881,57.33957540638667],[12.105121051210517,57.34464113819632],[12.097920979209789,57.346329715466226],[12.09072090720909,57.34464113819632],[12.072720727207269,57.33957540638667],[12.06552065520657,57.33957540638667],[12.051120511205113,57.35139544727585],[12.06552065520657,57.363215488165054],[12.09072090720909,57.37841268359398],[12.108721087210881,57.39360987902293],[12.061920619206205,57.39360987902293],[12.083520835208361,57.40205276537233],[12.09072090720909,57.412184228991634],[12.09072090720909,57.42231569261094],[12.058320583205841,57.45946439254834],[12.054720547205477,57.46284154708812],[12.043920439204385,57.461152969818244],[12.036720367203685,57.45777581527847],[12.029520295202957,57.45102150619894],[12.022320223202229,57.44933292892907],[12.007920079200801,57.43413573350011],[11.993519935199345,57.3665926427048],[11.979119791197917,57.346329715466226],[11.971919719197189,57.36490406543493],[11.950319503195033,57.36152691089515],[11.93231932319324,57.36152691089515],[11.943119431194333,57.38685556994341],[11.93231932319324,57.38685556994341],[11.921519215192149,57.38685556994341],[11.914319143191449,57.390232724483155],[11.903519035190357,57.39360987902293],[11.914319143191449,57.403741342642235],[11.914319143191449,57.417249960801286],[11.90711907119072,57.43244715623024],[11.903519035190357,57.44933292892907],[11.90711907119072,57.46453012435799],[11.917919179191813,57.47635016524717],[11.928719287192877,57.48310447432672],[11.943119431194333,57.48985878340625],[11.928719287192877,57.49830166975565],[11.910719107191085,57.5033674015653],[11.917919179191813,57.50505597883517],[11.93231932319324,57.51181028791473],[11.910719107191085,57.521941751534],[11.903519035190357,57.523630328803904],[11.917919179191813,57.53882752423283],[11.910719107191085,57.594550574138964],[11.917919179191813,57.621567810457094],[11.914319143191449,57.62325638772697],[11.903519035190357,57.626633542266745],[11.896318963189628,57.626633542266745],[11.892718927189293,57.613124924107666],[11.878318783187837,57.60637061502814],[11.867518675186773,57.60805919229804],[11.860318603186045,57.61650207864744],[11.85671856718568,57.63338785134627],[11.849518495184952,57.64351931496557],[11.842318423184253,57.65196220131497],[11.835118351183525,57.662093664934275],[11.845918459184588,57.68235659217288],[11.910719107191085,57.68742232398253],[11.925119251192513,57.702619519411456],[11.903519035190357,57.69586521033193],[11.874718747187472,57.692488055792154],[11.845918459184588,57.692488055792154],[11.820718207182068,57.69586521033193],[11.770317703177028,57.71275098303076],[11.748717487174872,57.71443956030063],[11.752317523175236,57.69586521033193],[11.737917379173808,57.692488055792154],[11.719917199171988,57.69417663306206],[11.70551705517056,57.69924236487171],[11.70551705517056,57.70937382849098],[11.70551705517056,57.72119386938016],[11.802718027180276,57.773539764746545],[11.809918099181004,57.781982651095944],[11.80631806318064,57.78873696017547],[11.788317883178848,57.79042553744537],[11.766717667176692,57.78873696017547],[11.752317523175236,57.78535980563572],[11.727117271172716,57.80224557833455],[11.709117091170924,57.822508505573126],[11.687516875168768,57.83770570100208],[11.65511655116552,57.83939427827195],[11.676716767167676,57.85290289643103],[11.691116911169132,57.857968628240684],[11.70551705517056,57.85965720551056],[11.694716947169468,57.88160871001904],[11.70551705517056,57.89174017363831],[11.759517595175964,57.901871637257614],[11.759517595175964,57.90862594633714],[11.745117451174508,57.90862594633714],[11.745117451174508,57.91538025541669],[11.7559175591756,57.91706883268657],[11.759517595175964,57.91875740995644],[11.766717667176692,57.928888873575744],[11.737917379173808,57.939020337195046],[11.745117451174508,57.955906109893874],[11.788317883178848,57.99812054164093],[11.799117991179912,58.02176062341928],[11.802718027180276,58.03695781884824],[11.795517955179548,58.04877785973741],[11.788317883178848,58.058909323356716],[11.784717847178484,58.06904078697602],[11.784717847178484,58.07917225059529],[11.802718027180276,58.085926559674846],[11.799117991179912,58.09099229148447],[11.795517955179548,58.09268086875437],[11.791917919179213,58.0994351778339],[11.817118171181733,58.102812332373674],[11.827918279182796,58.121386682342376],[11.838718387183889,58.187241195867784],[11.842318423184253,58.19399550494734],[11.853118531185316,58.19568408221721],[11.863918639186409,58.19737265948709],[11.874718747187472,58.19906123675699],[11.885518855188565,58.205815545836515],[11.889118891188929,58.21594700945579],[11.874718747187472,58.21594700945579],[11.860318603186045,58.21763558672569],[11.853118531185316,58.22607847307509],[11.845918459184588,58.25309570939322],[11.835118351183525,58.26153859574262],[11.824318243182432,58.268292904822175],[11.813518135181369,58.27842436844145],[11.809918099181004,58.30206445021983],[11.824318243182432,58.317261645648756],[11.8819188191882,58.33245884107771],[11.871118711187108,58.34596745923676],[11.849518495184952,58.34259030469701],[11.80631806318064,58.32739310926806],[11.752317523175236,58.32908168653793],[11.727117271172716,58.32739310926806],[11.727117271172716,58.312195913839105],[11.712717127171288,58.30713018202948],[11.68031680316804,58.30713018202948],[11.629916299163,58.281801522981226],[11.619116191161908,58.27842436844145],[11.611916119161208,58.2750472139017],[11.590315903159052,58.256472863933],[11.57951579515796,58.25140713212335],[11.568715687156867,58.249718554853445],[11.550715507155076,58.249718554853445],[11.536315363153648,58.25309570939322],[11.525515255152555,58.25816144120287],[11.52911529115292,58.25309570939322],[11.539915399154012,58.23789851396427],[11.507515075150764,58.24296424577392],[11.496714967149671,58.25816144120287],[11.5039150391504,58.28011294571135],[11.518315183151827,58.30544160475958],[11.543515435154347,58.334147418347584],[11.568715687156867,58.35441034558619],[11.622716227162272,58.388181890983844],[11.608316083160844,58.39493620006337],[11.622716227162272,58.40675624095255],[11.637116371163728,58.41351055003207],[11.669516695166948,58.4219534363815],[11.651516515165156,58.437150631810425],[11.629916299163,58.432084900000774],[11.60471604716048,58.415199127301975],[11.590315903159052,58.401690509142895],[11.57951579515796,58.41351055003207],[11.557915579155804,58.4489706726996],[11.55431554315544,58.46247929085868],[11.547115471154711,58.46247929085868],[11.55431554315544,58.43377347727068],[11.550715507155076,58.40000193187302],[11.539915399154012,58.36454180920549],[11.521915219152191,58.33583599561749],[11.496714967149671,58.312195913839105],[11.464314643146452,58.2936215638704],[11.395913959139591,58.2649157502824],[11.406714067140683,58.27842436844145],[11.417514175141747,58.290244409330654],[11.42831428314284,58.298687295680054],[11.442714427144267,58.30544160475958],[11.442714427144267,58.312195913839105],[11.42831428314284,58.312195913839105],[11.399513995139955,58.303753027489705],[11.388713887138891,58.30544160475958],[11.385113851138527,58.31895022291866],[11.388713887138891,58.32908168653793],[11.399513995139955,58.33752457288736],[11.413914139141411,58.339213150157235],[11.449914499144995,58.34090172742711],[11.442714427144267,58.34934461377654],[11.421114211142111,58.36454180920549],[11.424714247142475,58.388181890983844],[11.406714067140683,58.388181890983844],[11.399513995139955,58.37805042736454],[11.392313923139227,58.366230386475365],[11.381513815138163,58.35441034558619],[11.370713707137071,58.34765603650666],[11.356313563135643,58.344278881966886],[11.345513455134551,58.34596745923676],[11.352713527135279,58.35778750012594],[11.385113851138527,58.39831335460315],[11.406714067140683,58.41857628184172],[11.413914139141411,58.428707745461026],[11.424714247142475,58.442216363620076],[11.413914139141411,58.432084900000774],[11.370713707137071,58.40000193187302],[11.356313563135643,58.393247622793496],[11.349113491134915,58.388181890983844],[11.345513455134551,58.38311615917419],[11.338313383133851,58.37129611828502],[11.334713347133487,58.36791896374524],[11.305913059130603,58.35947607739584],[11.280712807128083,58.366230386475365],[11.251912519125199,58.366230386475365],[11.230312303123043,58.339213150157235],[11.21951219512195,58.34596745923676],[11.21951219512195,58.352721768316314],[11.223112231122315,58.361164654665714],[11.223112231122315,58.37129611828502],[11.223112231122315,58.379739004634416],[11.205112051120523,58.401690509142895],[11.208712087120887,58.41857628184172],[11.223112231122315,58.42533059092125],[11.259112591125927,58.4219534363815],[11.251912519125199,58.442216363620076],[11.262712627126291,58.45234782723938],[11.277112771127719,58.459102136318904],[11.29511295112951,58.46923359993821],[11.259112591125927,58.48274221809726],[11.251912519125199,58.48780794990691],[11.248312483124835,58.49287368171656],[11.241112411124107,58.50300514533586],[11.23751237512377,58.508070877145514],[11.241112411124107,58.513136608955165],[11.24471244712447,58.51651376349491],[11.248312483124835,58.518202340764816],[11.251912519125199,58.518202340764816],[11.251912519125199,58.548596731622695],[11.255512555125563,58.55535104070222],[11.266312663126627,58.562105349781746],[11.273512735127355,58.56548250432152],[11.280712807128083,58.570548236131174],[11.287912879128811,58.580679699750476],[11.266312663126627,58.580679699750476],[11.26991269912699,58.59249974063965],[11.266312663126627,58.597565472449304],[11.255512555125563,58.59925404971918],[11.251912519125199,58.60769693606858],[11.251912519125199,58.616139822418006],[11.259112591125927,58.62627128603731],[11.259112591125927,58.63471417238671],[11.248312483124835,58.64822279054576],[11.21231212312125,58.678617181403666],[11.215912159121586,58.69888010864224],[11.21951219512195,58.70732299499167],[11.21231212312125,58.71070014953142],[11.18711187111873,58.71070014953142],[11.176311763117639,58.71914303588085],[11.179911799118003,58.736028808579675],[11.190711907119066,58.7529145812785],[11.21231212312125,58.757980313088154],[11.205112051120523,58.771488931247205],[11.21231212312125,58.77993181759663],[11.223112231122315,58.78837470394603],[11.230312303123043,58.80019474483521],[11.233912339123407,58.80863763118464],[11.230312303123043,58.84409775385217],[11.226712267122679,58.84916348566182],[11.215912159121586,58.85085206293169],[11.201512015120159,58.85422921747147],[11.197911979119795,58.86436068109077],[11.197911979119795,58.888000762869126],[11.19431194311943,58.8981322264884],[11.190711907119066,58.9082636901077],[11.19431194311943,58.91164084464748],[11.19431194311943,58.91501799918723],[11.197911979119795,58.92177230826678],[11.147511475114754,58.931903771886056],[11.11871118711187,58.940346658235484],[11.107911079110806,58.953855276394535],[11.11871118711187,58.96905247182349],[11.140311403114026,58.97749535817289],[11.183511835118367,58.99100397633197],[11.140311403114026,58.989315399062065],[11.122311223112234,58.994381130871716],[11.115111151111506,59.007889749030795],[11.11871118711187,59.021398367189846],[11.129511295112962,59.03152983080915],[11.19431194311943,59.08049857163576],[11.21951219512195,59.09063003525503],[11.32031320313203,59.09907292160446],[11.356313563135643,59.092318612524934],[11.367113671136707,59.06361279893693],[11.377913779137799,59.04166129442845],[11.392313923139227,59.01970978991997],[11.413914139141411,59.00113543995127],[11.42831428314284,58.99100397633197],[11.439114391143931,58.99100397633197],[11.439114391143931,58.99775828541149],[11.40311403114032,59.038284139888674],[11.399513995139955,59.048415603507976],[11.392313923139227,59.070367108016455],[11.388713887138891,59.08049857163576],[11.370713707137071,59.100761498874334],[11.345513455134551,59.11089296249364],[11.313113131131331,59.11595869430329],[11.215912159121586,59.11089296249364],[11.183511835118367,59.11595869430329],[11.16911169111691,59.13453304427199],[11.176311763117639,59.141287353351515],[11.183511835118367,59.14297593062142],[11.201512015120159,59.14297593062142],[11.205112051120523,59.14635308516117],[11.201512015120159,59.15310739424069],[11.19431194311943,59.15817312605034],[11.190711907119066,59.154795971510595],[11.183511835118367,59.15986170332022],[11.179911799118003,59.16492743512987],[11.176311763117639,59.17168174420942],[11.176311763117639,59.18012463055882],[11.179911799118003,59.1835017850986],[11.179911799118003,59.18856751690825],[11.176311763117639,59.19701040325765],[11.165511655116546,59.191944671448],[11.13671136711369,59.1835017850986],[11.151111511115118,59.17505889874917],[11.154711547115483,59.163238857859994],[11.147511475114754,59.14973023970094],[11.13671136711369,59.14297593062142],[11.11871118711187,59.14297593062142],[11.107911079110806,59.15141881697082],[11.08631086310865,59.17505889874917],[11.097110971109714,59.14804166243104],[11.100711007110078,59.13453304427199],[11.089910899108986,59.127778735192464],[11.032310323103246,59.127778735192464],[11.039510395103946,59.14297593062142],[11.025110251102518,59.15141881697082],[11.007110071100726,59.15986170332022],[10.999909999099998,59.17168174420942],[10.989109891098906,59.17505889874917],[10.949509495094958,59.1835017850986],[10.93510935109353,59.1835017850986],[10.945909459094594,59.16492743512987],[10.94230942309423,59.14973023970094],[10.93510935109353,59.13959877608164],[10.91710917109171,59.14297593062142],[10.906309063090646,59.14973023970094],[10.899108991089918,59.163238857859994],[10.899108991089918,59.18012463055882],[10.902709027090282,59.19701040325765],[10.881108811088126,59.18687893963835],[10.873908739087398,59.18519036236847],[10.863108631086305,59.1835017850986],[10.848708487084878,59.18012463055882],[10.848708487084878,59.1733703214793],[10.848708487084878,59.16661601239977],[10.84150841508415,59.16155028059012],[10.823508235082357,59.163238857859994],[10.801908019080201,59.18856751690825],[10.780307803078045,59.18856751690825],[10.78390783907841,59.20545328960705],[10.76590765907659,59.23247052592518],[10.773107731077317,59.252733453163785],[10.762307623076225,59.24429056681436],[10.747907479074797,59.22402763957578],[10.737107371073705,59.217273330496255],[10.73350733507337,59.24091341227461],[10.744307443074433,59.26793064859271],[10.762307623076225,59.293259307640966],[10.780307803078045,59.31352223487954],[10.762307623076225,59.315210812149445],[10.751507515075161,59.32196512122897],[10.744307443074433,59.33040800757837],[10.73350733507337,59.33378516211815],[10.722707227072277,59.33040800757837],[10.70830708307085,59.310145080339794],[10.701107011070121,59.30676792580002],[10.672306723067237,59.315210812149445],[10.665106651066509,59.337162316657924],[10.661506615066145,59.3591138211664],[10.643506435064353,59.37431101659533],[10.654306543065445,59.38950821202428],[10.65790657906581,59.399639675643584],[10.654306543065445,59.408082561992984],[10.636306363063625,59.41652544834241],[10.596705967059677,59.42327975742194],[10.593105931059313,59.43003406650146],[10.600306003060041,59.45029699374007],[10.629106291062925,59.47900280732807],[10.643506435064353,59.49251142548712],[10.65790657906581,59.497577157296774],[10.661506615066145,59.489134270947346],[10.661506615066145,59.47393707551842],[10.650706507065081,59.443542684660514],[10.661506615066145,59.43847695285086],[10.675906759067601,59.440165530120765],[10.686706867068665,59.45029699374007],[10.690306903069029,59.46380561189912],[10.690306903069029,59.48069138459795],[10.68310683106833,59.489134270947346],[10.672306723067237,59.4958885800269],[10.661506615066145,59.5043314663763],[10.650706507065081,59.52628297088478],[10.647106471064717,59.54992305266313],[10.647106471064717,59.57187455717161],[10.65790657906581,59.595514638949965],[10.639906399063989,59.61577756618857],[10.625506255062561,59.63772907069705],[10.618306183061833,59.663057729745276],[10.614706147061469,59.69682927514293],[10.596705967059677,59.685009234253755],[10.57510575105752,59.70020642968268],[10.560705607056065,59.725535088730936],[10.564305643056429,59.74917517050929],[10.578705787057885,59.76606094320812],[10.600306003060041,59.813341106764824],[10.614706147061469,59.83360403400343],[10.654306543065445,59.85724411578178],[10.679506795067965,59.8268497249239],[10.697506975069757,59.777880984097294],[10.719107191071913,59.73735512962011],[10.729907299073005,59.77619240682742],[10.747907479074797,59.81502968403473],[10.75870758707589,59.85048980670226],[10.744307443074433,59.88257277483004],[10.751507515075161,59.88932708390956],[10.74070740707407,59.894392815719215],[10.711907119071185,59.90114712479874],[10.690306903069029,59.91127858841804],[10.679506795067965,59.90452427933849],[10.675906759067601,59.894392815719215],[10.665106651066509,59.88932708390956],[10.621906219062197,59.89608139298909],[10.614706147061469,59.894392815719215],[10.603906039060405,59.88594992936979],[10.593105931059313,59.88257277483004],[10.553505535055365,59.88426135209991],[10.528305283052845,59.88257277483004],[10.506705067050689,59.87075273394083],[10.47430474304744,59.85048980670226],[10.47430474304744,59.84204692035283],[10.49950499504996,59.83360403400343],[10.488704887048868,59.8167182613046],[10.485104851048504,59.80320964314555],[10.485104851048504,59.788012447716596],[10.485104851048504,59.75761805685872],[10.492304923049232,59.73060082054059],[10.503105031050325,59.70864931603211],[10.517505175051753,59.688386388793504],[10.539105391053909,59.67487777063445],[10.564305643056429,59.6698120388248],[10.582305823058249,59.6613691524754],[10.600306003060041,59.644483379776574],[10.611106111061105,59.622531875268095],[10.614706147061469,59.60733467983914],[10.593105931059313,59.57018597990174],[10.542705427054273,59.53472585723418],[10.485104851048504,59.5144629299956],[10.438304383043828,59.51784008453535],[10.4239042390424,59.533037279964304],[10.4239042390424,59.55330020720291],[10.427504275042764,59.59720321621984],[10.427504275042764,59.60733467983914],[10.416704167041672,59.6411062252368],[10.413104131041308,59.663057729745276],[10.409504095040944,59.671500616094676],[10.402304023040244,59.68332065698388],[10.39870398703988,59.688386388793504],[10.37350373503736,59.70358358422246],[10.369903699036996,59.706960738762234],[10.359103591035904,59.71033789330198],[10.355503555035568,59.71033789330198],[10.351903519035204,59.71033789330198],[10.34830348303484,59.71033789330198],[10.333903339033384,59.712026470571885],[10.2979029790298,59.73228939781046],[10.265502655026552,59.73904370688999],[10.240302403024032,59.73904370688999],[10.225902259022604,59.72384651146106],[10.236702367023668,59.71878077965141],[10.258302583025824,59.70189500695258],[10.269102691026916,59.69682927514293],[10.283502835028344,59.69514069787306],[10.2979029790298,59.69176354333328],[10.359103591035904,59.67318919336458],[10.380703807038088,59.657991997935625],[10.391503915039152,59.63772907069705],[10.395103951039516,59.61071183437892],[10.395103951039516,59.587071752600565],[10.391503915039152,59.55836593901256],[10.380703807038088,59.53472585723418],[10.362703627036268,59.52628297088478],[10.333903339033384,59.533037279964304],[10.269102691026916,59.55836593901256],[10.236702367023668,59.560054516282435],[10.24750247502476,59.54316874358361],[10.269102691026916,59.524594393614905],[10.290702907029072,59.511085775455825],[10.308703087030864,59.5043314663763],[10.330303303033048,59.4958885800269],[10.369903699036996,59.45536272554969],[10.459904599045984,59.440165530120765],[10.477904779047805,59.43003406650146],[10.481504815048169,59.41145971653276],[10.470704707047076,59.39457394383393],[10.445504455044556,59.364179552976026],[10.445504455044556,59.3489823575471],[10.459904599045984,59.33547373938802],[10.49950499504996,59.320276543959096],[10.513905139051388,59.30339077126027],[10.503105031050325,59.293259307640966],[10.488704887048868,59.28481642129154],[10.477904779047805,59.26793064859271],[10.470704707047076,59.247667721354134],[10.452704527045285,59.24935629862401],[10.416704167041672,59.26455349405296],[10.369903699036996,59.27299638040236],[10.359103591035904,59.27130780313249],[10.359103591035904,59.26455349405296],[10.362703627036268,59.24597914408426],[10.359103591035904,59.23753625773483],[10.366303663036632,59.225716216845655],[10.362703627036268,59.21896190776613],[10.333903339033384,59.21558475322635],[10.330303303033048,59.20883044414683],[10.326703267032684,59.2020761350673],[10.315903159031592,59.18012463055882],[10.312303123031228,59.15986170332022],[10.312303123031228,59.13959877608164],[10.312303123031228,59.127778735192464],[10.290702907029072,59.13453304427199],[10.287102871028708,59.114270117033385],[10.294302943029436,59.083875726175506],[10.305103051030528,59.06023564439715],[10.294302943029436,59.070367108016455],[10.287102871028708,59.083875726175506],[10.283502835028344,59.09907292160446],[10.27270272702728,59.114270117033385],[10.269102691026916,59.09400718979481],[10.269102691026916,59.048415603507976],[10.261902619026188,59.038284139888674],[10.258302583025824,59.05010418077785],[10.229502295022968,59.114270117033385],[10.225902259022604,59.114270117033385],[10.22230222302224,59.100761498874334],[10.211502115021148,59.078809994365855],[10.211502115021148,59.06698995347668],[10.215102151021512,59.05854706712728],[10.225902259022604,59.05010418077785],[10.233102331023304,59.03997271715855],[10.229502295022968,59.02815267626937],[10.207902079020784,59.016332635380195],[10.175501755017564,59.00451259449102],[10.139501395013951,58.99944686268137],[10.114301143011431,59.00451259449102],[10.125101251012524,59.01464405811032],[10.161101611016107,59.02815267626937],[10.168301683016836,59.0349069853489],[10.164701647016471,59.051792758047725],[10.150301503015044,59.051792758047725],[10.117901179011795,59.038284139888674],[10.103501035010368,59.0349069853489],[10.078300783007847,59.021398367189846],[10.060300603006027,59.0180212126501],[10.053100531005327,59.02308694445972],[10.035100351003507,59.03152983080915],[10.017100171001715,59.03321840807902],[10.035100351003507,58.99269255360184],[10.013500135001351,58.972429626363265],[9.984699846998467,58.96060958547406],[9.955899558995583,58.95723243093431],[9.847898478984803,58.95554385366444],[9.81189811898119,58.96398674001384],[9.83709837098371,58.972429626363265],[9.844298442984439,58.989315399062065],[9.83709837098371,59.00957832630067],[9.819098190981919,59.02477552172962],[9.783097830978306,59.051792758047725],[9.765097650976514,59.051792758047725],[9.757897578975786,59.03321840807902],[9.747097470974722,59.038284139888674],[9.725497254972566,59.06023564439715],[9.718297182971838,59.06192422166703],[9.71109711097111,59.06192422166703],[9.707497074970746,59.06361279893693],[9.70389703897041,59.070367108016455],[9.70389703897041,59.083875726175506],[9.70389703897041,59.08725288071528],[9.689496894968954,59.09063003525503],[9.68589685896859,59.08049857163576],[9.68589685896859,59.06192422166703],[9.682296822968226,59.0467270262381],[9.667896678966798,59.051792758047725],[9.66069660696607,59.056858489857376],[9.649896498965006,59.073744262556204],[9.646296462964642,59.083875726175506],[9.646296462964642,59.09400718979481],[9.642696426964278,59.10245007614421],[9.62829628296285,59.10751580795386],[9.639096390963914,59.11764727157316],[9.639096390963914,59.127778735192464],[9.631896318963186,59.13115588973221],[9.599495994959966,59.11595869430329],[9.538295382953834,59.12102442611294],[9.55989559895599,59.10245007614421],[9.621096210962122,59.07543283982611],[9.63549635496355,59.05010418077785],[9.65349653496537,59.0365955626188],[9.693096930969318,59.029841253539274],[9.725497254972566,59.01464405811032],[9.725497254972566,58.98424966725244],[9.718297182971838,58.98424966725244],[9.714697146971474,58.989315399062065],[9.707497074970746,58.99269255360184],[9.70389703897041,58.99775828541149],[9.696696966969682,58.98762682179219],[9.68589685896859,58.98424966725244],[9.657096570965706,58.98424966725244],[9.657096570965706,58.97749535817289],[9.667896678966798,58.975806780903014],[9.67869678696789,58.972429626363265],[9.68589685896859,58.96567531728371],[9.689496894968954,58.95723243093431],[9.664296642966434,58.958921008204186],[9.595895958959602,58.94372381277523],[9.595895958959602,58.93696950369571],[9.599495994959966,58.93528092642583],[9.606696066960666,58.92852661734631],[9.574295742957446,58.92177230826678],[9.469894698947002,58.92852661734631],[9.50949509495095,58.91164084464748],[9.523895238952406,58.8998208037583],[9.513095130951314,58.89475507194865],[9.469894698947002,58.90150938102818],[9.455494554945545,58.8981322264884],[9.45189451894521,58.88124645378957],[9.42669426694269,58.89306649467878],[9.397893978939805,58.8981322264884],[9.372693726937285,58.89475507194865],[9.361893618936193,58.88124645378957],[9.379893798937985,58.888000762869126],[9.394293942939441,58.889689340139],[9.40149401494017,58.888000762869126],[9.405094050940505,58.88124645378957],[9.397893978939805,58.87449214471005],[9.390693906939077,58.869426412900395],[9.38349383493835,58.86773783563052],[9.340293402934037,58.86267210382087],[9.318693186931881,58.86604925836065],[9.297092970929725,58.88124645378957],[9.293492934929361,58.86773783563052],[9.271892718927205,58.833966290232866],[9.282692826928269,58.83227771296299],[9.304293042930425,58.82721198115334],[9.311493114931153,58.825523403883466],[9.322293222932245,58.828900558423214],[9.354693546935465,58.84072059931239],[9.379893798937985,58.84409775385217],[9.40149401494017,58.84409775385217],[9.42669426694269,58.84072059931239],[9.45189451894521,58.833966290232866],[9.437494374943753,58.820457672073815],[9.387093870938713,58.80357189937499],[9.365493654936557,58.79175185848581],[9.387093870938713,58.79512901302556],[9.40869408694087,58.80019474483521],[9.40869408694087,58.79175185848581],[9.390693906939077,58.78668612667616],[9.372693726937285,58.77824324032673],[9.35109351093513,58.76473462216768],[9.340293402934037,58.75122600400863],[9.307893078930789,58.73940596311945],[9.25029250292505,58.7343402313098],[9.081090810908108,58.744471694929075],[9.070290702907045,58.74109454038933],[9.063090630906316,58.7343402313098],[9.059490594905952,58.72758592223025],[9.063090630906316,58.7242087676905],[9.14229142291424,58.709011572261545],[9.16749167491676,58.71576588134107],[9.113491134911357,58.730963076770024],[9.099090990909929,58.73771738584955],[9.214292142921437,58.72083161315072],[9.217892178921801,58.70225726318202],[9.185491854918553,58.69212579956272],[9.095490954909565,58.69043722229284],[9.059490594905952,58.68368291321332],[9.088290882908836,58.68368291321332],[9.156691566915669,58.68874864502297],[9.181891818918189,58.687060067753066],[9.199891998920009,58.67186287232414],[9.189091890918917,58.66510856324459],[9.153091530915304,58.643157058736136],[9.088290882908836,58.61445124514813],[9.034290342903432,58.59418831790953],[8.99108991089912,58.60094262698905],[8.983889838898392,58.597565472449304],[8.980289802898028,58.59249974063965],[8.976689766897664,58.589122586099876],[8.969489694896964,58.58743400883],[8.962289622896236,58.589122586099876],[8.955089550895508,58.597565472449304],[8.947889478894808,58.60094262698905],[8.926289262892624,58.60769693606858],[8.911889118891196,58.60769693606858],[8.919089190891924,58.5958768951794],[8.94068940689408,58.58743400883],[8.947889478894808,58.57899112248057],[8.947889478894808,58.5688596588613],[8.951489514895144,58.54690815435282],[8.944289442894444,58.526645227114216],[8.926289262892624,58.513136608955165],[8.908289082890832,58.50131656806599],[8.847088470884728,58.46754502266833],[8.821888218882208,58.45234782723938],[8.793087930879324,58.4405277863502],[8.778687786877867,58.43377347727068],[8.753487534875347,58.42701916819115],[8.73908739087392,58.415199127301975],[8.731887318873191,58.40337908641277],[8.7138871388714,58.39155904552359],[8.706687066870671,58.379739004634416],[8.681486814868151,58.37129611828502],[8.667086670866723,58.36791896374524],[8.652686526865267,58.366230386475365],[8.641886418864203,58.36454180920549],[8.634686346863475,58.35609892285606],[8.627486274862747,58.34765603650666],[8.620286202862047,58.339213150157235],[8.605886058860591,58.33245884107771],[8.595085950859527,58.330770263807835],[8.587885878858799,58.334147418347584],[8.587885878858799,58.34090172742711],[8.580685806858071,58.34765603650666],[8.544685446854487,58.312195913839105],[8.512285122851239,58.2936215638704],[8.50508505085051,58.2834901002511],[8.519485194851967,58.271670059361924],[8.501485014850147,58.256472863933],[8.47988479884799,58.25985001847275],[8.45468454684547,58.263227173012524],[8.436684366843679,58.25816144120287],[8.422284222842222,58.26998148209205],[8.407884078840794,58.271670059361924],[8.400684006840066,58.26660432755227],[8.40428404284043,58.254784286663096],[8.407884078840794,58.24465282304382],[8.389883898839003,58.241275668504045],[8.35388353883539,58.24465282304382],[8.346683466834662,58.241275668504045],[8.317883178831806,58.22607847307509],[8.307083070830714,58.219324163995566],[8.296282962829622,58.21256985491604],[8.260282602826038,58.20750412310639],[8.242282422824246,58.20243839129674],[8.25308253082531,58.20243839129674],[8.263882638826402,58.19906123675699],[8.271082710827102,58.19568408221721],[8.256682566825674,58.178798309518385],[8.249482494824946,58.17204400043886],[8.22788227882279,58.16360111408943],[8.224282242822426,58.156846805009906],[8.224282242822426,58.151781073200254],[8.220682206822062,58.13996103231108],[8.224282242822426,58.13489530050143],[8.20268202682027,58.12307525961225],[8.184681846818478,58.13320672323155],[8.173881738817386,58.1467153413906],[8.159481594815958,58.14502676412073],[8.137881378813802,58.11463237326285],[8.123481234812346,58.102812332373674],[8.109081090810918,58.102812332373674],[8.098280982809825,58.107878064183296],[8.065880658806606,58.1095666414532],[8.05148051480515,58.11294379599295],[8.047880478804785,58.116320950532725],[8.037080370803722,58.129829568691775],[8.02628026280263,58.14164960958095],[8.055080550805513,58.148403918660506],[8.065880658806606,58.15346965047013],[8.080280802808034,58.16191253681956],[8.058680586805878,58.17710973224851],[8.044280442804421,58.20412696856661],[8.029880298802993,58.22438989580522],[8.004680046800473,58.22270131853534],[8.022680226802265,58.20243839129674],[8.02628026280263,58.183864041328036],[8.022680226802265,58.16360111408943],[8.008280082800837,58.14502676412073],[7.954279542795433,58.124763836882124],[7.932679326793277,58.1095666414532],[7.957879578795797,58.09268086875437],[7.914679146791485,58.08254940513507],[7.756277562775637,58.07072936424589],[7.71667716677166,58.06059790062659],[7.695076950769504,58.058909323356716],[7.6626766267662845,58.067352209706115],[7.651876518765192,58.06397505516637],[7.6626766267662845,58.045400705197636],[7.6410764107641285,58.045400705197636],[7.6338763387634,58.04708928246754],[7.626676266762672,58.05215501427719],[7.630276302763036,58.031892087038585],[7.615876158761608,58.02176062341928],[7.594275942759424,58.026826355228934],[7.579875798757996,58.045400705197636],[7.576275762757632,58.031892087038585],[7.576275762757632,58.026826355228934],[7.579875798757996,58.01669489160963],[7.389073890738928,58.01669489160963],[7.266672666726663,58.03526924157836],[7.252272522725235,58.04371212792776],[7.248672486724871,58.058909323356716],[7.191071910719103,58.04202355065789],[7.176671766717675,58.031892087038585],[7.165871658716583,58.045400705197636],[7.155071550715519,58.05046643700729],[7.083070830708323,58.03695781884824],[7.079470794707959,58.031892087038585],[7.079470794707959,58.02851493249884],[7.079470794707959,58.02513777795906],[7.075870758707595,58.02007204614941],[7.075870758707595,58.01331773706988],[7.075870758707595,58.00656342799036],[7.0686706867068665,58.00318627345058],[7.061470614706167,58.00318627345058],[7.02187021870219,57.99474338710118],[7.0074700747007626,57.99305480983128],[6.99666996669967,57.996431964371055],[7.0038700387003985,58.01162915980001],[7.000270002700034,58.03020350976871],[7.02187021870219,58.04371212792776],[7.054270542705439,58.05215501427719],[7.075870758707595,58.062286477896464],[7.086670866708687,58.07072936424589],[7.097470974709751,58.06904078697602],[7.104671046710479,58.062286477896464],[7.115471154711543,58.058909323356716],[7.126271262712635,58.06397505516637],[7.140671406714063,58.085926559674846],[7.147871478714791,58.09268086875437],[7.147871478714791,58.0994351778339],[7.126271262712635,58.09774660056402],[7.065070650706502,58.07748367332542],[7.050670506705075,58.06904078697602],[7.036270362703647,58.062286477896464],[6.957069570695722,58.045400705197636],[6.935469354693566,58.045400705197636],[6.953469534695358,58.058909323356716],[6.978669786697878,58.089303714214594],[6.99666996669967,58.0994351778339],[6.978669786697878,58.10618948691342],[6.924669246692474,58.06566363243624],[6.899468994689954,58.05215501427719],[6.906669066690682,58.06397505516637],[6.913869138691382,58.07579509605554],[6.913869138691382,58.085926559674846],[6.906669066690682,58.0994351778339],[6.89586895868959,58.09605802329412],[6.877868778687798,58.08423798240494],[6.867068670686706,58.07917225059529],[6.852668526685278,58.080860827865195],[6.831068310683122,58.08423798240494],[6.813068130681302,58.09099229148447],[6.805868058680602,58.0994351778339],[6.849068490684914,58.11463237326285],[6.87066870668707,58.1196981050725],[6.949869498694994,58.121386682342376],[6.975069750697514,58.12645241415203],[6.989469894698942,58.14164960958095],[6.9606696066960865,58.13996103231108],[6.903069030690318,58.13151814596168],[6.874268742687434,58.13489530050143],[6.849068490684914,58.1467153413906],[6.802268022680238,58.178798309518385],[6.777067770677718,58.18217546405816],[6.813068130681302,58.1281409914219],[6.809468094680966,58.121386682342376],[6.759067590675926,58.116320950532725],[6.730267302673042,58.1196981050725],[6.7158671586715855,58.13489530050143],[6.726667266672678,58.14502676412073],[6.726667266672678,58.156846805009906],[6.723067230672314,58.17204400043886],[6.723067230672314,58.18892977313769],[6.6978669786697935,58.13658387777133],[6.687066870668701,58.121386682342376],[6.705067050670522,58.1196981050725],[6.712267122671221,58.11463237326285],[6.7158671586715855,58.107878064183296],[6.723067230672314,58.0994351778339],[6.733867338673406,58.094369446024245],[6.751867518675198,58.085926559674846],[6.773467734677354,58.07410651878567],[6.784267842678446,58.06904078697602],[6.784267842678446,58.06566363243624],[6.7626676266762615,58.058909323356716],[6.755467554675562,58.058909323356716],[6.733867338673406,58.06397505516637],[6.723067230672314,58.06566363243624],[6.618666186661869,58.06904078697602],[6.597065970659713,58.07579509605554],[6.543065430654309,58.107878064183296],[6.532265322653245,58.121386682342376],[6.550265502655037,58.12307525961225],[6.568265682656829,58.13151814596168],[6.582665826658285,58.1467153413906],[6.586265862658621,58.165289691359334],[6.597065970659713,58.17710973224851],[6.6546665466654815,58.17710973224851],[6.6762667626676375,58.18217546405816],[6.661866618666181,58.18892977313769],[6.6546665466654815,58.18892977313769],[6.6762667626676375,58.20750412310639],[6.726667266672678,58.22101274126544],[6.766267662676626,58.246341400313696],[6.84546845468455,58.271670059361924],[6.827468274682758,58.2750472139017],[6.802268022680238,58.26998148209205],[6.755467554675562,58.254784286663096],[6.6978669786697935,58.22438989580522],[6.679866798668002,58.22270131853534],[6.669066690666909,58.23114420488474],[6.640266402664025,58.2649157502824],[6.6330663306633255,58.2750472139017],[6.640266402664025,58.2936215638704],[6.6546665466654815,58.30206445021983],[6.6762667626676375,58.30206445021983],[6.6942669426694295,58.29193298660053],[6.708667086670886,58.312195913839105],[6.687066870668701,58.32739310926806],[6.665466654666545,58.32401595472828],[6.640266402664025,58.31557306837888],[6.618666186661869,58.31895022291866],[6.618666186661869,58.2649157502824],[6.625866258662597,58.24465282304382],[6.561065610656101,58.24296424577392],[6.499864998649997,58.263227173012524],[6.399063990639917,58.271670059361924],[6.348663486634877,58.285178677521],[6.291062910629108,58.308818759299356],[6.2802628026280445,58.312195913839105],[6.265862658626588,58.31388449110901],[6.247862478624796,58.317261645648756],[6.229862298623004,58.32232737745841],[6.219062190621912,58.32908168653793],[6.204662046620484,58.33583599561749],[6.139861398613988,58.339213150157235],[6.085860858608584,58.35947607739584],[6.0606606066060635,58.374673272824765],[6.049860498605,58.379739004634416],[6.021060210602116,58.38142758190432],[6.010260102601023,58.38480473644407],[6.003060030600324,58.38987046825372],[5.985059850598503,58.40675624095255],[5.977859778597804,58.415199127301975],[5.9742597425974395,58.423642013651374],[5.9706597065970755,58.437150631810425],[5.967059670596711,58.4489706726996],[5.967059670596711,58.459102136318904],[5.963459634596347,58.46754502266833],[5.956259562595619,58.477676486287635],[5.9274592745927634,58.48443079536716],[5.837458374583747,58.48105364082738],[5.797857978579799,58.48949652717681],[5.779857798577979,58.521579495304564],[5.740257402574031,58.526645227114216],[5.704257042570418,58.521579495304564],[5.646656466564679,58.548596731622695],[5.653856538565378,58.562105349781746],[5.61425614256143,58.59249974063965],[5.571055710557118,58.62795986330718],[5.549455494554962,58.66679714051449],[5.527855278552806,58.69381437683262],[5.517055170551714,58.714077304071196],[5.506255062550622,58.72927449950015],[5.477454774547766,58.75460315854838],[5.495454954549558,58.766423199437554],[5.527855278552806,58.78330897213638],[5.535055350553506,58.798506167565336],[5.53865538655387,58.81539194026416],[5.53865538655387,58.833966290232866],[5.53865538655387,58.85422921747147],[5.531455314553142,58.869426412900395],[5.53865538655387,58.87449214471005],[5.553055530555298,58.877869299249824],[5.56385563855639,58.88124645378957],[5.571055710557118,58.89475507194865],[5.571055710557118,58.8998208037583],[5.56385563855639,58.904886535567954],[5.549455494554962,58.91501799918723],[5.549455494554962,58.92008373099688],[5.542255422554234,58.93528092642583],[5.535055350553506,58.945412390045135],[5.53865538655387,58.95554385366444],[5.545855458554598,58.95554385366444],[5.556655566555662,58.94710096731501],[5.567455674556754,58.94372381277523],[5.596255962559638,58.91501799918723],[5.617856178561794,58.90657511283783],[5.625056250562523,58.92514946280653],[5.617856178561794,58.93528092642583],[5.592655926559274,58.950478121854786],[5.549455494554962,58.97074104909336],[5.560255602556026,58.97749535817289],[5.571055710557118,58.98256108998254],[5.581855818558182,58.98256108998254],[5.592655926559274,58.97749535817289],[5.578255782557818,58.989315399062065],[5.542255422554234,58.98424966725244],[5.524255242552442,58.99100397633197],[5.535055350553506,58.99944686268137],[5.542255422554234,59.00957832630067],[5.549455494554962,59.038284139888674],[5.715057150571511,58.97749535817289],[5.7078570785707825,58.95216669912466],[5.700657006570083,58.918395153727005],[5.704257042570418,58.888000762869126],[5.715057150571511,58.86773783563052],[5.736657366573667,58.92852661734631],[5.754657546575459,58.93359234915596],[5.801458014580163,58.931903771886056],[5.819458194581955,58.93696950369571],[5.819458194581955,58.94203523550536],[5.815858158581591,58.96060958547406],[5.823058230582319,58.96398674001384],[5.851858518585203,58.96567531728371],[5.866258662586631,58.96398674001384],[5.884258842588423,58.958921008204186],[5.920259202592035,58.945412390045135],[5.934659346593463,58.93696950369571],[5.956259562595619,58.913329421917354],[5.9706597065970755,58.90319795829805],[6.093060930609312,58.847474908391945],[6.136261362613624,58.83903202204252],[6.229862298623004,58.84072059931239],[6.204662046620484,58.84916348566182],[6.118261182611832,58.85422921747147],[6.103861038610404,58.85929494928112],[6.0822608226082195,58.8711149901703],[6.064260642606428,58.88462360832935],[6.0570605706056995,58.90150938102818],[6.064260642606428,58.913329421917354],[6.078660786607884,58.92852661734631],[6.103861038610404,58.950478121854786],[6.12546125461256,58.96229816274396],[6.193861938619392,58.98424966725244],[6.625866258662597,59.05348133531763],[6.625866258662597,59.06023564439715],[6.352263522635241,59.03321840807902],[6.298262982629836,59.01464405811032],[6.161461614616144,58.99775828541149],[6.12546125461256,58.98424966725244],[6.0354603546035435,58.904886535567954],[5.981459814598139,58.95216669912466],[5.9742597425974395,58.96398674001384],[5.985059850598503,58.98424966725244],[6.006660066600659,58.99100397633197],[6.031860318603179,58.99269255360184],[6.049860498605,58.99775828541149],[6.0390603906039075,59.002824017221144],[6.021060210602116,59.01970978991997],[6.010260102601023,59.02477552172962],[5.9922599225992315,59.02477552172962],[5.9526595265952835,59.016332635380195],[5.934659346593463,59.0180212126501],[5.913059130591307,59.02815267626937],[5.891458914589151,59.0450384489682],[5.877058770587723,59.06698995347668],[5.873458734587359,59.08725288071528],[5.891458914589151,59.10413865341411],[5.923859238592399,59.114270117033385],[6.021060210602116,59.12609015792259],[6.049860498605,59.13453304427199],[6.10746107461074,59.14297593062142],[6.12546125461256,59.14804166243104],[6.089460894608948,59.15310739424069],[6.0390603906039075,59.14804166243104],[6.010260102601023,59.14973023970094],[6.031860318603179,59.17505889874917],[6.064260642606428,59.20714186687695],[6.078660786607884,59.217273330496255],[6.12546125461256,59.23415910319508],[6.172261722617236,59.261176339513185],[6.25146251462516,59.27806211221201],[6.3234632346323565,59.315210812149445],[6.370263702637033,59.32196512122897],[6.460264602646021,59.320276543959096],[6.460264602646021,59.32703085303862],[6.337863378633784,59.32703085303862],[6.312663126631264,59.323653698498845],[6.20106201062012,59.27637353494214],[6.154261542615444,59.26793064859271],[6.111061110611104,59.274684957672264],[6.085860858608584,59.30676792580002],[6.237062370623704,59.31352223487954],[6.237062370623704,59.320276543959096],[6.22626226262264,59.33040800757837],[6.211862118621184,59.34053947119767],[6.197461974619756,59.35235951208685],[6.20106201062012,59.34391662573745],[6.197461974619756,59.33547373938802],[6.190261902619028,59.32703085303862],[6.172261722617236,59.32196512122897],[6.165061650616508,59.32703085303862],[6.15786157861578,59.337162316657924],[6.147061470614716,59.34053947119767],[6.143461434614352,59.337162316657924],[6.129061290612924,59.323653698498845],[6.121861218612196,59.320276543959096],[6.111061110611104,59.31858796668919],[6.10026100261004,59.31858796668919],[6.093060930609312,59.320276543959096],[6.078660786607884,59.32534227576875],[6.067860678606792,59.33209658484827],[6.064260642606428,59.342228048467575],[6.0570605706056995,59.35404808935675],[6.053460534605364,59.33378516211815],[6.0390603906039075,59.32703085303862],[6.0138601386013875,59.328719430308496],[5.9958599585995955,59.33378516211815],[5.9958599585995955,59.34053947119767],[6.006660066600659,59.345605203007324],[6.0138601386013875,59.355736666626626],[6.021060210602116,59.36586813024593],[6.031860318603179,59.37431101659533],[6.042660426604272,59.38444248021463],[6.053460534605364,59.391196789294156],[6.078660786607884,59.40301683018333],[6.129061290612924,59.41652544834241],[6.154261542615444,59.426656911961686],[6.1758617586176,59.443542684660514],[6.1758617586176,59.440165530120765],[6.186661866618664,59.43341122104124],[6.190261902619028,59.43003406650146],[6.193861938619392,59.43847695285086],[6.197461974619756,59.44523126193042],[6.211862118621184,59.46042845735934],[6.215462154621548,59.46887134370877],[6.219062190621912,59.489134270947346],[6.222662226622276,59.497577157296774],[6.244262442624432,59.511085775455825],[6.427864278642801,59.55161162993301],[6.543065430654309,59.560054516282435],[6.503465034650361,59.57187455717161],[6.337863378633784,59.55330020720291],[6.273062730627316,59.52797154815465],[6.237062370623704,59.52628297088478],[6.247862478624796,59.54148016631373],[6.265862658626588,59.55498878447278],[6.2802628026280445,59.57187455717161],[6.28386283862838,59.59044890714031],[6.28386283862838,59.61071183437892],[6.287462874628744,59.62928618434762],[6.298262982629836,59.644483379776574],[6.312663126631264,59.65630342066575],[6.287462874628744,59.649549111586225],[6.265862658626588,59.62590902980784],[6.255062550625524,59.595514638949965],[6.247862478624796,59.57018597990174],[6.244262442624432,59.56174309355231],[6.237062370623704,59.54992305266313],[6.219062190621912,59.529660125424556],[6.197461974619756,59.511085775455825],[6.161461614616144,59.46887134370877],[6.154261542615444,59.45873988008947],[6.139861398613988,59.45029699374007],[6.10026100261004,59.43341122104124],[6.078660786607884,59.41990260288216],[6.042660426604272,59.404705407453235],[6.028260282602844,59.40301683018333],[6.010260102601023,59.408082561992984],[5.99945999459996,59.42834548923159],[5.981459814598139,59.43003406650146],[5.988659886598867,59.41652544834241],[5.981459814598139,59.41483687107251],[5.9742597425974395,59.40977113926286],[5.9706597065970755,59.408082561992984],[5.9706597065970755,59.40301683018333],[5.977859778597804,59.399639675643584],[5.985059850598503,59.39626252110381],[5.9922599225992315,59.38950821202428],[5.9958599585995955,59.381065325674854],[5.9490594905949195,59.36080239843628],[5.923859238592399,59.355736666626626],[5.913059130591307,59.37093386205558],[5.909459094590943,59.382753902944756],[5.902259022590243,59.38950821202428],[5.891458914589151,59.39457394383393],[5.887858878588787,59.40301683018333],[5.884258842588423,59.41483687107251],[5.884258842588423,59.42496833469181],[5.884258842588423,59.435099798311114],[5.887858878588787,59.44691983920029],[5.923859238592399,59.44691983920029],[6.154261542615444,59.47731423005817],[6.13266132661326,59.49082284821725],[6.103861038610404,59.49251142548712],[6.07506075060752,59.489134270947346],[6.02466024660248,59.47393707551842],[5.902259022590243,59.47900280732807],[5.887858878588787,59.48237996186782],[5.873458734587359,59.48744569367747],[5.862658626586267,59.494200002757],[5.848258482584839,59.50939719818595],[5.841058410584111,59.511085775455825],[5.833858338583383,59.51615150726548],[5.823058230582319,59.53472585723418],[5.819458194581955,59.53979158904383],[5.808658086580863,59.53979158904383],[5.790657906579071,59.52797154815465],[5.776257762577643,59.52628297088478],[5.805058050580499,59.494200002757],[5.808658086580863,59.48069138459795],[5.797857978579799,59.46380561189912],[5.776257762577643,59.45029699374007],[5.747457474574759,59.44523126193042],[5.722257222572239,59.45198557100994],[5.7078570785707825,59.470559920978644],[5.715057150571511,59.44691983920029],[5.697056970569719,59.43003406650146],[5.646656466564679,59.408082561992984],[5.6646566465664705,59.40639398472311],[5.736657366573667,59.43003406650146],[5.761857618576187,59.43172264377134],[5.783457834578343,59.43003406650146],[5.801458014580163,59.41990260288216],[5.851858518585203,59.38444248021463],[5.859058590585903,59.37431101659533],[5.859058590585903,59.350670934816975],[5.844658446584475,59.3472937802772],[5.783457834578343,59.34391662573745],[5.761857618576187,59.3472937802772],[5.751057510575123,59.33547373938802],[5.736657366573667,59.33547373938802],[5.704257042570418,59.34053947119767],[5.697056970569719,59.3388508939278],[5.697056970569719,59.33209658484827],[5.697056970569719,59.32534227576875],[5.693456934569355,59.320276543959096],[5.682656826568262,59.31352223487954],[5.679056790567898,59.310145080339794],[5.668256682566835,59.30507934853014],[5.625056250562523,59.29157073037109],[5.610656106561066,59.293259307640966],[5.610656106561066,59.30507934853014],[5.617856178561794,59.31689938941932],[5.632256322563222,59.32534227576875],[5.646656466564679,59.32703085303862],[5.646656466564679,59.33378516211815],[5.625056250562523,59.35404808935675],[5.607056070560702,59.38950821202428],[5.585455854558546,59.41652544834241],[5.560255602556026,59.40977113926286],[5.571055710557118,59.408082561992984],[5.578255782557818,59.40301683018333],[5.585455854558546,59.39626252110381],[5.578255782557818,59.3759995938652],[5.574655746557482,59.33378516211815],[5.567455674556754,59.31689938941932],[5.549455494554962,59.30001361672049],[5.527855278552806,59.28650499856144],[5.506255062550622,59.27806211221201],[5.473854738547402,59.27806211221201],[5.455854558545582,59.288193575831315],[5.434254342543426,59.30845650306992],[5.423454234542362,59.33040800757837],[5.430654306543062,59.350670934816975],[5.441454414544154,59.36924528478568],[5.441454414544154,59.39288536656403],[5.434254342543426,59.404705407453235],[5.41265412654127,59.39626252110381],[5.405454054540542,59.37937674840498],[5.401854018540206,59.3591138211664],[5.405454054540542,59.31689938941932],[5.405454054540542,59.30507934853014],[5.398253982539842,59.29663646218074],[5.391053910539114,59.29494788491084],[5.3802538025380215,59.30001361672049],[5.373053730537322,59.30676792580002],[5.369453694536958,59.31858796668919],[5.365853658536594,59.34053947119767],[5.3550535505355015,59.355736666626626],[5.351453514535166,59.36586813024593],[5.3586535865358655,59.38781963475441],[5.3586535865358655,59.399639675643584],[5.3550535505355015,59.41145971653276],[5.347853478534802,59.41652544834241],[5.3370533705337095,59.41483687107251],[5.3334533345333455,59.41145971653276],[5.329853298532981,59.3574252438965],[5.329853298532981,59.35404808935675],[5.297452974529762,59.34391662573745],[5.232652326523265,59.42496833469181],[5.200252002520045,59.43003406650146],[5.196651966519681,59.443542684660514],[5.193051930519317,59.46380561189912],[5.189451894518953,59.497577157296774],[5.185851858518589,59.502642889106426],[5.182251822518225,59.506020043646174],[5.182251822518225,59.511085775455825],[5.189451894518953,59.51784008453535],[5.200252002520045,59.524594393614905],[5.214652146521473,59.52628297088478],[5.243452434524357,59.52628297088478],[5.243452434524357,59.53134870269443],[5.200252002520045,59.53979158904383],[5.200252002520045,59.546545898123355],[5.221852218522201,59.55161162993301],[5.236252362523629,59.560054516282435],[5.2902529025290335,59.600580370759616],[5.304653046530461,59.627597607077746],[5.322653226532282,59.63772907069705],[5.344253442534438,59.64786053431632],[5.365853658536594,59.652926266125974],[5.38745387453875,59.649549111586225],[5.394653946539478,59.63772907069705],[5.401854018540206,59.60564610256927],[5.41265412654127,59.595514638949965],[5.416254162541634,59.61071183437892],[5.427054270542726,59.62422045253797],[5.427054270542726,59.636040493427146],[5.416254162541634,59.649549111586225],[5.401854018540206,59.6613691524754],[5.398253982539842,59.6698120388248],[5.41265412654127,59.688386388793504],[5.43785437854379,59.70864931603211],[5.48825488254883,59.73735512962011],[5.484654846548466,59.72722366600081],[5.481054810548102,59.72384651146106],[5.491854918549194,59.71878077965141],[5.499054990549922,59.71371504784176],[5.502655026550286,59.71033789330198],[5.506255062550622,59.693452120603155],[5.506255062550622,59.671500616094676],[5.499054990549922,59.6512376888561],[5.484654846548466,59.6326633388874],[5.481054810548102,59.62084329799822],[5.481054810548102,59.61071183437892],[5.48825488254883,59.59889179348974],[5.48825488254883,59.587071752600565],[5.48825488254883,59.57525171171139],[5.484654846548466,59.57018597990174],[5.46305463054631,59.560054516282435],[5.459454594545946,59.55667736174266],[5.452254522545246,59.54823447539326],[5.452254522545246,59.546545898123355],[5.434254342543426,59.546545898123355],[5.423454234542362,59.546545898123355],[5.416254162541634,59.54316874358361],[5.41265412654127,59.53472585723418],[5.409054090540906,59.52121723907513],[5.409054090540906,59.51615150726548],[5.409054090540906,59.50939719818595],[5.416254162541634,59.5043314663763],[5.423454234542362,59.506020043646174],[5.434254342543426,59.5144629299956],[5.441454414544154,59.51784008453535],[5.506255062550622,59.533037279964304],[5.517055170551714,59.53979158904383],[5.527855278552806,59.55330020720291],[5.527855278552806,59.55836593901256],[5.53865538655387,59.57694028898126],[5.53865538655387,59.59889179348974],[5.527855278552806,59.60733467983914],[5.524255242552442,59.617466143458444],[5.535055350553506,59.6411062252368],[5.549455494554962,59.66474630701515],[5.56385563855639,59.67656634790433],[5.581855818558182,59.67825492517423],[5.607056070560702,59.671500616094676],[5.625056250562523,59.6698120388248],[5.693456934569355,59.6698120388248],[5.722257222572239,59.663057729745276],[5.7294572945729385,59.64786053431632],[5.725857258572603,59.627597607077746],[5.715057150571511,59.60733467983914],[5.743857438574395,59.60733467983914],[5.754657546575459,59.609023257109016],[5.761857618576187,59.61408898891867],[5.765457654576551,59.62084329799822],[5.765457654576551,59.63772907069705],[5.765457654576551,59.64617195704645],[5.790657906579071,59.65630342066575],[5.819458194581955,59.6596805752055],[5.880658806588059,59.65630342066575],[5.880658806588059,59.67656634790433],[5.787057870578707,59.6596805752055],[5.761857618576187,59.663057729745276],[5.747457474574759,59.67487777063445],[5.754657546575459,59.688386388793504],[5.797857978579799,59.71033789330198],[5.805058050580499,59.71709220238151],[5.808658086580863,59.72384651146106],[5.815858158581591,59.72891224327071],[5.873458734587359,59.73566655235024],[5.887858878588787,59.73735512962011],[5.891458914589151,59.74579801596954],[5.891458914589151,59.75424090231894],[5.895058950589515,59.760995211398466],[5.902259022590243,59.76437236593824],[5.913059130591307,59.76268378866834],[5.920259202592035,59.755929479588815],[5.9274592745927634,59.74917517050929],[5.934659346593463,59.74410943869964],[5.985059850598503,59.73566655235024],[6.0390603906039075,59.74579801596954],[6.161461614616144,59.796455334065996],[6.172261722617236,59.80320964314555],[6.1758617586176,59.804898220415424],[6.190261902619028,59.8065867976853],[6.197461974619756,59.809963952225075],[6.211862118621184,59.825161147654],[6.215462154621548,59.8268497249239],[6.291062910629108,59.840358343082954],[6.312663126631264,59.85386696124203],[6.244262442624432,59.84373549762273],[6.121861218612196,59.804898220415424],[6.0354603546035435,59.76437236593824],[6.021060210602116,59.760995211398466],[6.003060030600324,59.75930663412859],[5.963459634596347,59.75930663412859],[5.945459454594555,59.76606094320812],[5.934659346593463,59.77956956136717],[5.934659346593463,59.79476675679612],[5.945459454594555,59.80152106587565],[5.956259562595619,59.8065867976853],[5.959859598595983,59.8167182613046],[5.956259562595619,59.84204692035283],[5.959859598595983,59.85048980670226],[5.9706597065970755,59.86062127032156],[5.945459454594555,59.85555553851191],[5.934659346593463,59.84204692035283],[5.9274592745927634,59.82178399311425],[5.9274592745927634,59.80320964314555],[5.913059130591307,59.79138960225637],[5.884258842588423,59.78125813863707],[5.851858518585203,59.774503829557545],[5.830258302583019,59.77281525228764],[5.808658086580863,59.777880984097294],[5.790657906579071,59.78970102498647],[5.758257582575823,59.8167182613046],[5.736657366573667,59.82853830219378],[5.715057150571511,59.831915456733554],[5.7078570785707825,59.83866976581308],[5.722257222572239,59.86062127032156],[5.704257042570418,59.85048980670226],[5.682656826568262,59.84204692035283],[5.661056610566106,59.840358343082954],[5.646656466564679,59.85386696124203],[5.671856718567199,59.85555553851191],[5.697056970569719,59.86230984759143],[5.743857438574395,59.88257277483004],[5.740257402574031,59.90959001114814],[5.772657726577279,59.93154151565662],[5.819458194581955,59.9450501338157],[5.859058590585903,59.951804442895224],[5.963459634596347,59.956870174704875],[5.9706597065970755,59.96024732924462],[5.977859778597804,59.96700163832415],[5.981459814598139,59.97544452467358],[5.981459814598139,59.98051025648323],[5.977859778597804,59.98557598829288],[5.9490594905949195,59.997396029182056],[6.010260102601023,60.058184810897814],[6.096660966609676,60.09195635629547],[6.291062910629108,60.12235074715338],[6.291062910629108,60.1291050562329],[6.265862658626588,60.12741647896303],[6.262262622626224,60.1375479425823],[6.262262622626224,60.152745138011255],[6.255062550625524,60.16287660163056],[6.247862478624796,60.16118802436068],[6.23346233462334,60.15443371528113],[6.219062190621912,60.14599082893173],[6.215462154621548,60.139236519852204],[6.20106201062012,60.125727901693125],[6.165061650616508,60.11559643807385],[6.129061290612924,60.1088421289943],[6.103861038610404,60.10715355172442],[6.10746107461074,60.13417078804255],[6.085860858608584,60.16794233344021],[6.07506075060752,60.19833672429809],[6.143461434614352,60.215222496996915],[6.154261542615444,60.22704253788609],[6.165061650616508,60.242239733315046],[6.179461794617964,60.25912550601387],[6.20826208262082,60.2760112787127],[6.211862118621184,60.286142742332004],[6.20106201062012,60.299651360491055],[6.25866258662586,60.308094246840454],[6.27666276662768,60.313159978650106],[6.287462874628744,60.31991428772963],[6.3090630906309,60.33848863769836],[6.319863198631992,60.34186579223811],[6.33426334263342,60.34186579223811],[6.33426334263342,60.34524294677789],[6.33426334263342,60.35030867858754],[6.337863378633784,60.35537441039719],[6.341463414634148,60.35875156493694],[6.3450634506345125,60.36381729674659],[6.352263522635241,60.36888302855624],[6.38466384663846,60.37732591490567],[6.417064170641709,60.38239164671529],[6.442264422644229,60.389145955794845],[6.478264782647841,60.419540346652724],[6.503465034650361,60.4313603875419],[6.539465394653945,60.43473754208168],[6.575465754657557,60.4313603875419],[6.640266402664025,60.41616319211295],[6.593465934659349,60.36381729674659],[6.571865718657193,60.33004575134893],[6.579065790657921,60.30640566957058],[6.568265682656829,60.2945856286814],[6.535865358653581,60.272634124172924],[6.532265322653245,60.26250266055362],[6.521465214652153,60.18651668340891],[6.514265142651425,60.152745138011255],[6.510665106651061,60.13585936531243],[6.510665106651061,60.1105307062642],[6.517865178651789,60.08013631540629],[6.525065250652517,60.08013631540629],[6.525065250652517,60.13585936531243],[6.528665286652881,60.16456517890043],[6.546665466654673,60.183139528869134],[6.579065790657921,60.22535396061622],[6.582665826658285,60.23886257877527],[6.582665826658285,60.24899404239457],[6.571865718657193,60.272634124172924],[6.597065970659713,60.2945856286814],[6.6294662946629614,60.357062987667064],[6.6546665466654815,60.38239164671529],[6.6726667266672735,60.39083453306472],[6.701467014670158,60.39927741941412],[6.7158671586715855,60.40940888303342],[6.748267482674834,60.446557582970854],[6.7626676266762615,60.45668904659016],[6.784267842678446,60.46682051020943],[6.802268022680238,60.473574819288984],[6.942669426694266,60.49214916925769],[7.032670326703283,60.47864055109861],[7.079470794707959,60.47864055109861],[7.104671046710479,60.50565778741674],[6.899468994689954,60.50565778741674],[6.899468994689954,60.51241209649626],[6.906669066690682,60.51241209649626],[6.917469174691746,60.514100673766166],[6.924669246692474,60.517477828305914],[6.928269282692838,60.522543560115565],[6.931869318693202,60.53267502373487],[6.942669426694266,60.536052178274616],[6.953469534695358,60.53774075554452],[6.964269642696422,60.53942933281439],[7.018270182701826,60.588398073641],[6.989469894698942,60.59008665091088],[6.949869498694994,60.57488945548192],[6.913869138691382,60.552937950973444],[6.888668886688862,60.53267502373487],[6.856268562685642,60.50396921014686],[6.838268382683822,60.495526323797435],[6.773467734677354,60.48539486017816],[6.7374673746737415,60.47188624201908],[6.6762667626676375,60.43642611935155],[6.6546665466654815,60.433048964811775],[6.6294662946629614,60.4313603875419],[6.604266042660441,60.433048964811775],[6.593465934659349,60.44318042843108],[6.600666006660077,60.465131932939556],[6.6726667266672735,60.500592055607086],[6.6942669426694295,60.51916640557582],[6.647466474664753,60.51241209649626],[6.561065610656101,60.46344335566968],[6.514265142651425,60.4499347375106],[6.481864818648205,60.44824616024073],[6.427864278642801,60.43473754208168],[6.395463954639553,60.4313603875419],[6.370263702637033,60.424606078462375],[6.319863198631992,60.39590026487437],[6.298262982629836,60.389145955794845],[6.269462694626952,60.389145955794845],[6.247862478624796,60.397588842144245],[6.22626226262264,60.4127860375732],[6.20826208262082,60.4313603875419],[6.193861938619392,60.465131932939556],[6.190261902619028,60.47188624201908],[6.1758617586176,60.47019766474921],[6.1758617586176,60.46175477839978],[6.179461794617964,60.4499347375106],[6.1830618306183,60.43980327389133],[6.193861938619392,60.433048964811775],[6.211862118621184,60.40603172849367],[6.23346233462334,60.39590026487437],[6.240662406624068,60.38745737852494],[6.240662406624068,60.37901449217554],[6.22626226262264,60.37394876036589],[6.193861938619392,60.384080223985194],[6.165061650616508,60.37394876036589],[6.13266132661326,60.37394876036589],[6.118261182611832,60.36888302855624],[6.13266132661326,60.362128719476715],[6.190261902619028,60.35537441039719],[6.179461794617964,60.340177214968236],[6.15066150661508,60.321602864999534],[6.139861398613988,60.30640566957058],[6.147061470614716,60.29627420595128],[6.154261542615444,60.29120847414163],[6.161461614616144,60.286142742332004],[6.15066150661508,60.26756839236327],[6.139861398613988,60.25405977420422],[6.12546125461256,60.2473054651247],[6.103861038610404,60.245616887854794],[6.0822608226082195,60.250682619664445],[6.0354603546035435,60.269256969633176],[6.0174601746017515,60.272634124172924],[5.9958599585995955,60.264191237823525],[5.985059850598503,60.250682619664445],[5.977859778597804,60.23379684696562],[5.9706597065970755,60.21691107426679],[5.934659346593463,60.18989383794869],[5.913059130591307,60.16963091071008],[5.905859058590579,60.16287660163056],[5.891458914589151,60.15949944709078],[5.873458734587359,60.16287660163056],[5.859058590585903,60.16287660163056],[5.851858518585203,60.14936798347148],[5.851858518585203,60.1375479425823],[5.873458734587359,60.08689062448585],[5.873458734587359,60.05143050181829],[5.855458554585539,60.024413265500186],[5.823058230582319,60.00752749280136],[5.783457834578343,60.00415033826158],[5.787057870578707,60.01259322461098],[5.790657906579071,60.019347533690535],[5.772657726577279,60.022724688230284],[5.754657546575459,59.99064172010253],[5.740257402574031,59.99401887464228],[5.7078570785707825,60.00921607007123],[5.700657006570083,60.01597037915076],[5.700657006570083,60.024413265500186],[5.693456934569355,60.03116757457971],[5.689856898568991,60.03623330638936],[5.682656826568262,60.03961046092911],[5.689856898568991,60.06156196543759],[5.700657006570083,60.06662769724724],[5.736657366573667,60.059873388167716],[5.758257582575823,60.059873388167716],[5.776257762577643,60.06493911997737],[5.790657906579071,60.076759160866544],[5.797857978579799,60.09364493356537],[5.758257582575823,60.09364493356537],[5.751057510575123,60.09195635629547],[5.747457474574759,60.08689062448585],[5.743857438574395,60.08351346994607],[5.733057330573303,60.08013631540629],[5.722257222572239,60.08351346994607],[5.715057150571511,60.090267779025595],[5.711457114571147,60.09871066537502],[5.700657006570083,60.103776397184646],[5.7078570785707825,60.1105307062642],[5.725857258572603,60.1189735926136],[5.7294572945729385,60.13248221077268],[5.704257042570418,60.15949944709078],[5.7078570785707825,60.17638521978961],[5.725857258572603,60.18651668340891],[5.790657906579071,60.20509103337761],[5.790657906579071,60.21184534245714],[5.758257582575823,60.210156765187264],[5.718657186571875,60.201713878837865],[5.682656826568262,60.18989383794869],[5.653856538565378,60.17638521978961],[5.650256502565043,60.17131948797996],[5.650256502565043,60.15612229255103],[5.646656466564679,60.14936798347148],[5.635856358563586,60.147679406201604],[5.617856178561794,60.14936798347148],[5.592655926559274,60.139236519852204],[5.571055710557118,60.14092509712208],[5.553055530555298,60.15105656074138],[5.542255422554234,60.16287660163056],[5.560255602556026,60.166253756170306],[5.574655746557482,60.17638521978961],[5.578255782557818,60.188205260678785],[5.56385563855639,60.19664814702821],[5.56385563855639,60.20509103337761],[5.5998559985600025,60.206779610647516],[5.671856718567199,60.22704253788609],[5.7078570785707825,60.23210826969574],[5.7078570785707825,60.23886257877527],[5.625056250562523,60.237174001505394],[5.5998559985600025,60.23210826969574],[5.628656286562858,60.25237119693435],[5.63945639456395,60.264191237823525],[5.632256322563222,60.272634124172924],[5.61425614256143,60.272634124172924],[5.5998559985600025,60.26081408328375],[5.58905589055891,60.2473054651247],[5.571055710557118,60.23886257877527],[5.574655746557482,60.2557483514741],[5.585455854558546,60.264191237823525],[5.5998559985600025,60.269256969633176],[5.607056070560702,60.2760112787127],[5.610656106561066,60.2844541650621],[5.635856358563586,60.313159978650106],[5.646656466564679,60.321602864999534],[5.646656466564679,60.326668596809185],[5.653856538565378,60.33680006042846],[5.661056610566106,60.348620101317664],[5.668256682566835,60.35537441039719],[5.682656826568262,60.362128719476715],[5.718657186571875,60.370571605826115],[5.733057330573303,60.37901449217554],[5.736657366573667,60.392523110334594],[5.718657186571875,60.389145955794845],[5.697056970569719,60.38070306944542],[5.689856898568991,60.375637337635766],[5.671856718567199,60.37226018309602],[5.661056610566106,60.367194451286366],[5.650256502565043,60.357062987667064],[5.63945639456395,60.34693152404776],[5.63945639456395,60.35368583312729],[5.635856358563586,60.362128719476715],[5.632256322563222,60.36888302855624],[5.617856178561794,60.35368583312729],[5.5998559985600025,60.33342290588871],[5.585455854558546,60.30978282411036],[5.578255782557818,60.28951989687175],[5.567455674556754,60.28107701052235],[5.531455314553142,60.23041969242587],[5.527855278552806,60.21691107426679],[5.517055170551714,60.21353391972704],[5.473854738547402,60.18651668340891],[5.43785437854379,60.17131948797996],[5.427054270542726,60.16287660163056],[5.423454234542362,60.152745138011255],[5.416254162541634,60.139236519852204],[5.409054090540906,60.130793633502776],[5.38745387453875,60.144302251661856],[5.351453514535166,60.15612229255103],[5.365853658536594,60.16118802436068],[5.373053730537322,60.16287660163056],[5.373053730537322,60.16963091071008],[5.319053190531918,60.18145095159926],[5.304653046530461,60.18989383794869],[5.3118531185311895,60.20002530156796],[5.326253262532646,60.20509103337761],[5.351453514535166,60.21184534245714],[5.351453514535166,60.21691107426679],[5.319053190531918,60.22197680607644],[5.2506525065250855,60.206779610647516],[5.221852218522201,60.21184534245714],[5.297452974529762,60.24899404239457],[5.3118531185311895,60.2658798150934],[5.275852758527606,60.264191237823525],[5.171451714517161,60.27938843325245],[5.160651606516069,60.2844541650621],[5.160651606516069,60.2945856286814],[5.164251642516433,60.308094246840454],[5.171451714517161,60.31653713318988],[5.182251822518225,60.321602864999534],[5.196651966519681,60.32329144226941],[5.229052290522901,60.321602864999534],[5.211052110521109,60.33342290588871],[5.200252002520045,60.33848863769836],[5.157051570515705,60.34186579223811],[5.146251462514641,60.34355436950801],[5.142651426514277,60.35199725585741],[5.146251462514641,60.36888302855624],[5.178651786517861,60.389145955794845],[5.265052650526513,60.38745737852494],[5.297452974529762,60.39590026487437],[5.283052830528305,60.40096599668402],[5.2506525065250855,60.4313603875419],[5.257852578525785,60.446557582970854],[5.261452614526149,60.4499347375106],[5.236252362523629,60.473574819288984],[5.239852398523993,60.48877201471791],[5.279452794527941,60.522543560115565],[5.304653046530461,60.527609291925216],[5.3370533705337095,60.514100673766166],[5.365853658536594,60.495526323797435],[5.38745387453875,60.48539486017816],[5.398253982539842,60.482017705638384],[5.448654486544882,60.446557582970854],[5.477454774547766,60.43473754208168],[5.527855278552806,60.4212289239226],[5.574655746557482,60.41447461484307],[5.617856178561794,60.41785176938285],[5.653856538565378,60.4313603875419],[5.650256502565043,60.44824616024073],[5.668256682566835,60.45668904659016],[5.689856898568991,60.46175477839978],[5.7078570785707825,60.47188624201908],[5.715057150571511,60.48370628290826],[5.715057150571511,60.49890347833721],[5.7078570785707825,60.53267502373487],[5.7078570785707825,60.563069414592746],[5.711457114571147,60.60359526906993],[5.722257222572239,60.639055391737486],[5.743857438574395,60.655941164436314],[5.722257222572239,60.66776120532549],[5.725857258572603,60.68633555529419],[5.740257402574031,60.704909905262895],[5.751057510575123,60.718418523421974],[5.7294572945729385,60.70659848253277],[5.7078570785707825,60.70322132799302],[5.6646566465664705,60.70322132799302],[5.661056610566106,60.71166421434242],[5.671856718567199,60.726861409771374],[5.6862568625686265,60.7437471824702],[5.693456934569355,60.75219006881963],[5.675456754567563,60.75725580062925],[5.661056610566106,60.745435759740076],[5.646656466564679,60.726861409771374],[5.628656286562858,60.718418523421974],[5.6214562145621585,60.7150413688822],[5.5998559985600025,60.701532750723146],[5.592655926559274,60.69815559618337],[5.578255782557818,60.696467018913495],[5.535055350553506,60.69815559618337],[5.524255242552442,60.68633555529419],[5.535055350553506,60.639055391737486],[5.527855278552806,60.62892392811818],[5.506255062550622,60.62723535084831],[5.441454414544154,60.615415309959104],[5.373053730537322,60.579955187291574],[5.301053010530126,60.56138083732287],[5.275852758527606,60.559692260053],[5.2506525065250855,60.563069414592746],[5.221852218522201,60.57488945548192],[5.189451894518953,60.593463805450654],[5.160651606516069,60.615415309959104],[5.099450994509965,60.64918685535676],[5.085050850508509,60.66269547351584],[5.124651246512485,60.66100689624594],[5.157051570515705,60.64918685535676],[5.221852218522201,60.615415309959104],[5.229052290522901,60.620481041768755],[5.160651606516069,60.669449782595365],[5.085050850508509,60.71166421434242],[5.103051030510301,60.71166421434242],[5.146251462514641,60.70322132799302],[5.124651246512485,60.7251728325015],[5.095850958509601,60.72854998704125],[5.059850598505989,60.73023856431115],[5.034650346503469,60.74205860520033],[4.9842498424984285,60.77920730513773],[4.959049590495908,60.794404500566685],[4.92664926649266,60.799470232376336],[4.95184951849518,60.807913118725736],[4.980649806498064,60.80960169599564],[5.009450094500949,60.80115880964621],[5.056250562505625,60.77920730513773],[5.110251102511029,60.77414157332808],[5.149851498515005,60.75050149154973],[5.175051750517525,60.74205860520033],[5.279452794527941,60.72179567796172],[5.304653046530461,60.71166421434242],[5.304653046530461,60.69815559618337],[5.3118531185311895,60.67620409167489],[5.326253262532646,60.655941164436314],[5.347853478534802,60.64074396900736],[5.373053730537322,60.63567823719771],[5.36225362253623,60.639055391737486],[5.3586535865358655,60.64580970081701],[5.351453514535166,60.65256400989654],[5.351453514535166,60.66269547351584],[5.373053730537322,60.65425258716641],[5.41265412654127,60.63230108265793],[5.434254342543426,60.62892392811818],[5.419854198541998,60.642432546277234],[5.391053910539114,60.65931831897606],[5.369453694536958,60.674515514405016],[5.3802538025380215,60.68464697802432],[5.394653946539478,60.68126982348454],[5.427054270542726,60.66269547351584],[5.434254342543426,60.66269547351584],[5.430654306543062,60.674515514405016],[5.419854198541998,60.68126982348454],[5.409054090540906,60.68802413256407],[5.41265412654127,60.70322132799302],[5.3802538025380215,60.71335279161232],[5.373053730537322,60.718418523421974],[5.369453694536958,60.7251728325015],[5.365853658536594,60.7336157188509],[5.36225362253623,60.74205860520033],[5.3550535505355015,60.745435759740076],[5.308253082530825,60.745435759740076],[5.283052830528305,60.74712433700998],[5.257852578525785,60.76063295516903],[5.2470524705247215,60.76063295516903],[5.239852398523993,60.764010109708806],[5.236252362523629,60.77583015059798],[5.239852398523993,60.77920730513773],[5.261452614526149,60.79271592329681],[5.283052830528305,60.799470232376336],[5.329853298532981,60.80622454145586],[5.351453514535166,60.81297885053539],[5.3370533705337095,60.83999608685352],[5.3550535505355015,60.85350470501257],[5.430654306543062,60.86870190044152],[5.448654486544882,60.86701332317165],[5.46305463054631,60.86363616863187],[5.481054810548102,60.861947591362],[5.495454954549558,60.86363616863187],[5.509855098550986,60.86701332317165],[5.53865538655387,60.87545620952105],[5.506255062550622,60.87714478679092],[5.481054810548102,60.883899095870476],[5.470254702547038,60.89571913675965],[5.495454954549558,60.9092277549187],[5.470254702547038,60.90753917764883],[5.398253982539842,60.88221051860057],[5.347853478534802,60.87714478679092],[5.326253262532646,60.86870190044152],[5.319053190531918,60.84506181866317],[5.2938529385293975,60.82311031415469],[5.239852398523993,60.816356005075164],[5.189451894518953,60.82817604596434],[5.167851678516797,60.85519328228247],[5.164251642516433,60.83155320050409],[5.149851498515005,60.81466742780526],[5.131851318513185,60.81129027326551],[5.117451174511757,60.82817604596434],[5.131851318513185,60.834930355043866],[5.113851138511393,60.83830750958364],[5.067050670506717,60.834930355043866],[5.045450454504561,60.84506181866317],[5.038250382503833,60.856881859552345],[5.0274502745027405,60.88558767314035],[5.020250202502041,60.8990962912994],[5.013050130501313,60.905850600378955],[5.009450094500949,60.9092277549187],[5.009450094500949,60.91598206399823],[5.009450094500949,60.92611352761753],[5.0058500585005845,60.93117925942718],[4.987849878498793,60.94299930031636],[4.980649806498064,60.95144218666579],[4.991449914499157,60.963262227554964],[5.013050130501313,60.96495080482484],[5.038250382503833,60.96157365028506],[5.056250562505625,60.95819649574531],[5.077850778507781,60.949753609395884],[5.081450814508145,60.941310723046485],[5.077850778507781,60.905850600378955],[5.081450814508145,60.88896482768013],[5.092250922509237,60.87714478679092],[5.099450994509965,60.87714478679092],[5.103051030510301,60.892341982219875],[5.095850958509601,60.93962214577658],[5.099450994509965,60.95144218666579],[5.113851138511393,60.96157365028506],[5.131851318513185,60.96495080482484],[5.142651426514277,60.97170511390436],[5.139051390513913,60.99196804114297],[5.135451354513549,60.98859088660319],[5.131851318513185,60.98690230933332],[5.131851318513185,60.985213732063414],[5.121051210512121,60.98352515479354],[5.092250922509237,60.97339369117424],[5.077850778507781,60.97170511390436],[5.023850238502405,60.97845942298389],[5.013050130501313,60.981836577523666],[5.0058500585005845,60.99703377295262],[5.00225002250022,61.01560812292132],[5.009450094500949,61.03418247289002],[5.016650166501677,61.0460025137792],[5.067050670506717,61.07301975009733],[5.135451354513549,61.07639690463711],[5.203852038520381,61.0645768637479],[5.283052830528305,61.039248204699675],[5.3118531185311895,61.03249389562015],[5.376653766537686,61.0274281638105],[5.419854198541998,61.02911674108037],[5.434254342543426,61.0274281638105],[5.43785437854379,61.017296700191196],[5.441454414544154,61.003788082032145],[5.448654486544882,60.99534519568272],[5.46305463054631,60.998722350222494],[5.466654666546674,61.00716523657189],[5.46305463054631,61.01560812292132],[5.455854558545582,61.025739586540624],[5.455854558545582,61.0358710501599],[5.459454594545946,61.04937966831898],[5.473854738547402,61.0561339773985],[5.48825488254883,61.05951113193828],[5.527855278552806,61.074708327367205],[5.567455674556754,61.071331172827456],[5.607056070560702,61.06288828647803],[5.63945639456395,61.05951113193828],[5.63945639456395,61.06795401828768],[5.610656106561066,61.07808548190698],[5.596255962559638,61.08483979098651],[5.603456034560338,61.088216945526284],[5.63945639456395,61.09328267733591],[5.657456574565742,61.09497125460581],[5.675456754567563,61.088216945526284],[5.697056970569719,61.09834840914556],[5.736657366573667,61.110168450034735],[5.772657726577279,61.115234181844386],[5.790657906579071,61.10510271822511],[5.779857798577979,61.07639690463711],[5.779857798577979,61.0645768637479],[5.794257942579435,61.071331172827456],[5.805058050580499,61.079774059176856],[5.815858158581591,61.08652836825638],[5.830258302583019,61.09159410006603],[5.844658446584475,61.09497125460581],[5.833858338583383,61.10510271822511],[5.830258302583019,61.10847987276486],[5.862658626586267,61.11861133638416],[5.891458914589151,61.12198849092394],[5.977859778597804,61.12029991365404],[6.010260102601023,61.115234181844386],[6.031860318603179,61.115234181844386],[6.10026100261004,61.12198849092394],[6.13266132661326,61.11861133638416],[6.193861938619392,61.10510271822511],[6.229862298623004,61.101725563685335],[6.25866258662586,61.09328267733591],[6.269462694626952,61.07639690463711],[6.265862658626588,61.05951113193828],[6.244262442624432,61.0460025137792],[6.273062730627316,61.047691091049074],[6.287462874628744,61.052756822858726],[6.3018630186302005,61.0645768637479],[6.312663126631264,61.06795401828768],[6.330663306633085,61.06964259555755],[6.348663486634877,61.06964259555755],[6.35946359463594,61.06795401828768],[6.370263702637033,61.0561339773985],[6.363063630636304,61.044313936509326],[6.348663486634877,61.030805318350275],[6.337863378633784,61.012230968381544],[6.355863558635605,61.01054239111167],[6.373863738637397,61.012230968381544],[6.370263702637033,61.0274281638105],[6.373863738637397,61.0375596274298],[6.38466384663846,61.0460025137792],[6.413464134641345,61.06795401828768],[6.438664386643865,61.08146263644673],[6.463864638646385,61.08990552279616],[6.521465214652153,61.096659831875684],[6.546665466654673,61.10341414095521],[6.564665646656465,61.11861133638416],[6.586265862658621,61.142251418162516],[6.593465934659349,61.16589149994087],[6.600666006660077,61.17602296356017],[6.611466114661141,61.1743343862903],[6.636666366663661,61.16251434540112],[6.647466474664753,61.15744861359147],[6.787867878678782,61.150694304511944],[6.838268382683822,61.13887426362277],[6.849068490684914,61.13549710908299],[6.856268562685642,61.128742800003465],[6.859868598686006,61.11861133638416],[6.859868598686006,61.106791295494986],[6.863468634686342,61.096659831875684],[6.867068670686706,61.08990552279616],[6.881468814688162,61.088216945526284],[6.939069390693902,61.09159410006603],[6.957069570695722,61.088216945526284],[6.964269642696422,61.079774059176856],[6.9822698226982425,61.0460025137792],[7.000270002700034,61.02911674108037],[7.0074700747007626,61.01898527746107],[7.011070110701127,61.008853813841796],[7.0038700387003985,61.00041092749237],[6.989469894698942,60.990279463873065],[6.97146971469715,60.981836577523666],[6.939069390693902,60.97339369117424],[6.874268742687434,60.93793356850671],[6.964269642696422,60.96495080482484],[7.011070110701127,60.97170511390436],[7.050670506705075,60.96495080482484],[7.115471154711543,60.93962214577658],[7.129871298712999,60.92611352761753],[7.129871298712999,60.91260490945848],[7.104671046710479,60.861947591362],[7.129871298712999,60.87545620952105],[7.158671586715883,60.89740771402953],[7.173071730717311,60.92442495034766],[7.162271622716247,60.95144218666579],[7.151471514715155,60.95313076393566],[7.101071010710115,60.95988507301519],[7.093870938709387,60.963262227554964],[7.083070830708323,60.97508226844414],[7.043470434704346,61.0274281638105],[7.032670326703283,61.0358710501599],[7.02187021870219,61.04262535923945],[7.014670146701462,61.05106824558885],[7.0074700747007626,61.079774059176856],[7.000270002700034,61.08652836825638],[7.000270002700034,61.09328267733591],[7.018270182701826,61.101725563685335],[7.061470614706167,61.106791295494986],[7.165871658716583,61.110168450034735],[7.194671946719467,61.128742800003465],[7.209072090720923,61.13887426362277],[7.223472234722351,61.14056284089264],[7.302673026730275,61.13043137727334],[7.317073170731703,61.12536564546369],[7.338673386733888,61.11185702730464],[7.367473674736743,61.10510271822511],[7.435874358743604,61.101725563685335],[7.435874358743604,61.10847987276486],[7.4178741787417835,61.110168450034735],[7.403474034740356,61.11185702730464],[7.392673926739263,61.11692275911429],[7.3566735667356795,61.137185686352865],[7.345873458734587,61.142251418162516],[7.360273602736044,61.15238288178182],[7.40707407074072,61.16758007721077],[7.414274142741448,61.1743343862903],[7.428674286742876,61.186154427179474],[7.453874538745396,61.192908736259],[7.605076050760516,61.19797446806865],[7.655476554765556,61.20641735441805],[7.695076950769504,61.23174601346631],[7.65907659076592,61.23005743619643],[7.6338763387634,61.22499170438678],[7.601476014760152,61.213171663497604],[7.450274502745032,61.19797446806865],[7.389073890738928,61.19797446806865],[7.360273602736044,61.20641735441805],[7.345873458734587,61.221614549847004],[7.345873458734587,61.23343459073618],[7.342273422734223,61.25200894070488],[7.338673386733888,61.262140404324185],[7.3350733507335235,61.27396044521336],[7.327873278732795,61.27902617702301],[7.317073170731703,61.28240333156279],[7.3134731347313675,61.28746906337244],[7.3134731347313675,61.30773199061102],[7.3566735667356795,61.32630634057972],[7.367473674736743,61.34488069054845],[7.371073710737107,61.36683219505693],[7.3818738187382,61.378652235946106],[7.4214742147421475,61.395538008644934],[7.435874358743604,61.409046626803985],[7.450274502745032,61.42424382223294],[7.468274682746824,61.43775244039199],[7.486274862748644,61.444506749471515],[7.511475114751164,61.44788390401129],[7.536675366753684,61.45632679036069],[7.55827558275584,61.46983540851977],[7.572675726757268,61.485032603948696],[7.489874898749008,61.45970394490047],[7.345873458734587,61.38878369956538],[7.324273242732431,61.38540654502563],[7.284672846728483,61.39384943137503],[7.263072630726327,61.395538008644934],[7.281072810728119,61.38371796775576],[7.299072990729911,61.373586504136455],[7.309873098731003,61.36345504051715],[7.306273062730639,61.3482578450882],[7.245072450724507,61.30773199061102],[7.241472414724143,61.297600526991715],[7.259472594725963,61.284091908832664],[7.281072810728119,61.27396044521336],[7.299072990729911,61.26045182705431],[7.309873098731003,61.21823739530723],[7.324273242732431,61.204728777148176],[7.338673386733888,61.19797446806865],[7.360273602736044,61.191220158989125],[7.320673206732067,61.16758007721077],[7.306273062730639,61.16251434540112],[7.291872918729183,61.16251434540112],[7.281072810728119,61.164202922670995],[7.255872558725599,61.169268654480646],[7.248672486724871,61.172645809020395],[7.234272342723443,61.18108869536982],[7.230672306723079,61.1844658499096],[7.212672126721287,61.1844658499096],[7.176671766717675,61.17602296356017],[7.162271622716247,61.169268654480646],[7.158671586715883,61.16589149994087],[7.155071550715519,61.16082576813122],[7.155071550715519,61.15407145905169],[7.147871478714791,61.14900572724204],[7.137071370713727,61.14562857270229],[7.011070110701127,61.128742800003465],[6.975069750697514,61.115234181844386],[6.953469534695358,61.11185702730464],[6.935469354693566,61.115234181844386],[6.917469174691746,61.13549710908299],[6.942669426694266,61.15238288178182],[6.978669786697878,61.16758007721077],[7.0038700387003985,61.1844658499096],[6.949869498694994,61.16758007721077],[6.92106921069211,61.16251434540112],[6.89586895868959,61.16251434540112],[6.809468094680966,61.18108869536982],[6.665466654666545,61.194597313528874],[6.557465574655765,61.22499170438678],[6.568265682656829,61.240188899815706],[6.607866078660805,61.257074672514534],[6.622266222662233,61.26889471340371],[6.661866618666181,61.3212406087701],[6.669066690666909,61.32630634057972],[6.690666906669065,61.3398149587388],[6.6942669426694295,61.34488069054845],[6.6978669786697935,61.351634999627976],[6.701467014670158,61.37189792686655],[6.705067050670522,61.37527508140633],[6.708667086670886,61.38034081321598],[6.7158671586715855,61.39047227683528],[6.7158671586715855,61.400603740454585],[6.701467014670158,61.40229231772446],[6.6978669786697935,61.39891516318468],[6.636666366663661,61.30942056788092],[6.604266042660441,61.27902617702301],[6.564665646656465,61.26551755886396],[6.553865538655401,61.26889471340371],[6.535865358653581,61.284091908832664],[6.528665286652881,61.28746906337244],[6.517865178651789,61.284091908832664],[6.510665106651061,61.275649022483265],[6.499864998649997,61.26889471340371],[6.499864998649997,61.262140404324185],[6.514265142651425,61.24694320889526],[6.525065250652517,61.23174601346631],[6.525065250652517,61.226680281656655],[6.525065250652517,61.21992597257713],[6.525065250652517,61.213171663497604],[6.535865358653581,61.204728777148176],[6.471064710647113,61.2114830862277],[6.463864638646385,61.20810593168795],[6.474664746647477,61.2013516226084],[6.489064890648905,61.19797446806865],[6.499864998649997,61.192908736259],[6.503465034650361,61.18108869536982],[6.503465034650361,61.16758007721077],[6.507065070650725,61.15576003632157],[6.507065070650725,61.14731714997217],[6.496264962649633,61.137185686352865],[6.485464854648541,61.13043137727334],[6.435064350643501,61.115234181844386],[6.373863738637397,61.11354560457451],[6.28386283862838,61.12536564546369],[6.204662046620484,61.14900572724204],[6.1758617586176,61.1844658499096],[6.129061290612924,61.159137190861344],[6.07506075060752,61.14731714997217],[6.0138601386013875,61.14900572724204],[5.959859598595983,61.16251434540112],[6.006660066600659,61.177711540830046],[6.028260282602844,61.18784300444935],[6.0354603546035435,61.204728777148176],[5.941859418594191,61.169268654480646],[5.873458734587359,61.159137190861344],[5.805058050580499,61.15576003632157],[5.783457834578343,61.164202922670995],[5.783457834578343,61.1827772726397],[5.783457834578343,61.19628589079878],[5.769057690576915,61.191220158989125],[5.761857618576187,61.18108869536982],[5.758257582575823,61.164202922670995],[5.751057510575123,61.15576003632157],[5.736657366573667,61.15407145905169],[5.718657186571875,61.15576003632157],[5.700657006570083,61.15576003632157],[5.693456934569355,61.14562857270229],[5.675456754567563,61.142251418162516],[5.556655566555662,61.137185686352865],[5.53865538655387,61.132119954543214],[5.473854738547402,61.09497125460581],[5.423454234542362,61.079774059176856],[5.376653766537686,61.079774059176856],[5.3334533345333455,61.096659831875684],[5.297452974529762,61.128742800003465],[5.279452794527941,61.11692275911429],[5.261452614526149,61.110168450034735],[5.203852038520381,61.106791295494986],[5.200252002520045,61.10510271822511],[5.193051930519317,61.10510271822511],[5.185851858518589,61.11185702730464],[5.175051750517525,61.12198849092394],[5.167851678516797,61.12536564546369],[5.160651606516069,61.128742800003465],[5.171451714517161,61.14056284089264],[5.189451894518953,61.14056284089264],[5.211052110521109,61.13887426362277],[5.229052290522901,61.142251418162516],[5.203852038520381,61.14731714997217],[5.182251822518225,61.15407145905169],[5.160651606516069,61.15576003632157],[5.142651426514277,61.14562857270229],[5.124651246512485,61.14562857270229],[5.059850598505989,61.15744861359147],[5.045450454504561,61.16251434540112],[5.059850598505989,61.18784300444935],[5.117451174511757,61.186154427179474],[5.221852218522201,61.16251434540112],[5.221852218522201,61.16758007721077],[5.218252182521837,61.17940011809995],[5.214652146521473,61.1844658499096],[5.2506525065250855,61.1844658499096],[5.196651966519681,61.2114830862277],[5.167851678516797,61.221614549847004],[5.139051390513913,61.22499170438678],[5.020250202502041,61.21654881803735],[4.987849878498793,61.22499170438678],[5.009450094500949,61.23005743619643],[5.031050310503105,61.23005743619643],[5.052650526505261,61.23343459073618],[5.063450634506353,61.24525463162536],[5.031050310503105,61.23850032254583],[5.013050130501313,61.23681174527596],[4.998649986499885,61.24187747708561],[4.987849878498793,61.25200894070488],[4.9842498424984285,61.257074672514534],[4.973449734497365,61.257074672514534],[4.955449554495544,61.25200894070488],[4.9626496264962725,61.26551755886396],[4.980649806498064,61.275649022483265],[5.016650166501677,61.28746906337244],[5.038250382503833,61.29253479518209],[5.063450634506353,61.29422337245197],[5.074250742507445,61.29591194972184],[5.088650886508873,61.30435483607127],[5.095850958509601,61.30773199061102],[5.139051390513913,61.30604341334114],[5.160651606516069,61.311109145150795],[5.178651786517861,61.3398149587388],[5.200252002520045,61.34319211327855],[5.229052290522901,61.3398149587388],[5.2506525065250855,61.33474922692915],[5.265052650526513,61.32799491784962],[5.279452794527941,61.3212406087701],[5.2902529025290335,61.31279772242067],[5.297452974529762,61.30097768153149],[5.3118531185311895,61.26720613613384],[5.319053190531918,61.25200894070488],[5.3334533345333455,61.25538609524466],[5.3370533705337095,61.26889471340371],[5.3334533345333455,61.28746906337244],[5.326253262532646,61.30604341334114],[5.319053190531918,61.31786345423032],[5.304653046530461,61.32799491784962],[5.2722527225272415,61.338126381468925],[5.257852578525785,61.3482578450882],[5.441454414544154,61.36683219505693],[5.632256322563222,61.36176646324728],[5.5998559985600025,61.37527508140633],[5.553055530555298,61.378652235946106],[5.164251642516433,61.35670073143763],[5.149851498515005,61.351634999627976],[5.128251282512821,61.3398149587388],[5.092250922509237,61.32799491784962],[5.059850598505989,61.32292918603997],[5.038250382503833,61.32799491784962],[5.0274502745027405,61.3398149587388],[5.0058500585005845,61.3482578450882],[4.995049950499521,61.36176646324728],[4.998649986499885,61.3769636586762],[5.013050130501313,61.39216085410516],[5.0274502745027405,61.40229231772446],[5.045450454504561,61.40229231772446],[5.056250562505625,61.39216085410516],[5.056250562505625,61.38034081321598],[5.063450634506353,61.37527508140633],[5.077850778507781,61.38371796775576],[5.077850778507781,61.38878369956538],[5.077850778507781,61.40398089499433],[5.077850778507781,61.41073520407386],[5.085050850508509,61.414112358613636],[5.117451174511757,61.41580093588351],[5.117451174511757,61.42086666769316],[5.117451174511757,61.42424382223294],[5.113851138511393,61.42762097677269],[5.110251102511029,61.430998131312464],[5.092250922509237,61.42086666769316],[5.070650706507081,61.41748951315341],[5.0274502745027405,61.41580093588351],[4.987849878498793,61.41073520407386],[4.948249482494845,61.41073520407386],[4.948249482494845,61.41580093588351],[5.056250562505625,61.444506749471515],[5.164251642516433,61.45126105855104],[5.189451894518953,61.46476967671012],[5.182251822518225,61.471523985789645],[5.218252182521837,61.46814683124987],[5.265052650526513,61.45463821309082],[5.3118531185311895,61.449572481281166],[5.3370533705337095,61.46476967671012],[5.484654846548466,61.430998131312464],[5.520655206552078,61.42930955404259],[5.542255422554234,61.43775244039199],[5.53865538655387,61.444506749471515],[5.556655566555662,61.449572481281166],[5.5998559985600025,61.45294963582094],[5.617856178561794,61.458015367630594],[5.628656286562858,61.46476967671012],[5.63945639456395,61.47321256305952],[5.650256502565043,61.48165544940895],[5.668256682566835,61.485032603948696],[5.711457114571147,61.4867211812186],[5.736657366573667,61.485032603948696],[5.751057510575123,61.47490114032942],[5.769057690576915,61.45463821309082],[5.783457834578343,61.45126105855104],[5.805058050580499,61.45126105855104],[5.805058050580499,61.458015367630594],[5.783457834578343,61.466458253979994],[5.747457474574759,61.493475490298124],[5.722257222572239,61.498541222107775],[5.6646566465664705,61.498541222107775],[5.63945639456395,61.495164067568],[5.610656106561066,61.485032603948696],[5.581855818558182,61.46814683124987],[5.574655746557482,61.46476967671012],[5.524255242552442,61.46476967671012],[5.491854918549194,61.45463821309082],[5.459454594545946,61.45294963582094],[5.43785437854379,61.45970394490047],[5.441454414544154,61.479966872139045],[5.398253982539842,61.4867211812186],[5.2902529025290335,61.479966872139045],[5.254252542525421,61.495164067568],[5.178651786517861,61.51036126299695],[5.139051390513913,61.523869881156],[5.146251462514641,61.54075565385483],[5.139051390513913,61.547509962934356],[5.139051390513913,61.55426427201391],[5.157051570515705,61.55426427201391],[5.200252002520045,61.547509962934356],[5.214652146521473,61.547509962934356],[5.2470524705247215,61.55426427201391],[5.3586535865358655,61.55426427201391],[5.3586535865358655,61.561018581093435],[5.329853298532981,61.561018581093435],[5.171451714517161,61.58634724014166],[5.146251462514641,61.59479012649109],[5.3370533705337095,61.59479012649109],[5.319053190531918,61.58972439468144],[5.3118531185311895,61.58972439468144],[5.3118531185311895,61.582970085601914],[5.401854018540206,61.57959293106214],[5.427054270542726,61.58972439468144],[5.351453514535166,61.60661016738027],[5.2686526865268775,61.61505305372967],[5.319053190531918,61.62856167188875],[5.340653406534074,61.64375886731767],[5.283052830528305,61.6420702900478],[5.243452434524357,61.63025024915862],[5.229052290522901,61.62856167188875],[4.991449914499157,61.63025024915862],[4.969849698497001,61.63531598096827],[4.9626496264962725,61.6420702900478],[4.944649446494481,61.667398949096025],[4.9410494104941165,61.67753041271533],[4.944649446494481,61.68766187633463],[4.959049590495908,61.694416185414156],[4.969849698497001,61.69779333995393],[4.959049590495908,61.70623622630333],[4.9626496264962725,61.716367689922635],[4.973449734497365,61.72481057627206],[4.987849878498793,61.72481057627206],[4.9842498424984285,61.729876308081685],[4.9842498424984285,61.73325346262146],[4.980649806498064,61.73494203989134],[4.973449734497365,61.738319194431114],[4.987849878498793,61.74676208078051],[5.00225002250022,61.751827812590165],[5.038250382503833,61.751827812590165],[5.052650526505261,61.75013923532029],[5.070650706507081,61.74676208078051],[5.074250742507445,61.743384926240765],[5.077850778507781,61.738319194431114],[5.077850778507781,61.73494203989134],[5.077850778507781,61.73156488535159],[5.085050850508509,61.73156488535159],[5.099450994509965,61.73325346262146],[5.103051030510301,61.73156488535159],[5.121051210512121,61.71974484446241],[5.124651246512485,61.71805626719251],[5.139051390513913,61.716367689922635],[5.146251462514641,61.71805626719251],[5.167851678516797,61.72481057627206],[5.135451354513549,61.743384926240765],[5.124651246512485,61.751827812590165],[5.149851498515005,61.75858212166969],[5.189451894518953,61.76871358528899],[5.063450634506353,61.76027069893959],[5.077850778507781,61.773779317098644],[5.103051030510301,61.78559935798782],[5.131851318513185,61.79404224433725],[5.243452434524357,61.8176823261156],[5.2686526865268775,61.827813789734904],[5.265052650526513,61.82950236700478],[5.261452614526149,61.83119094427465],[5.257852578525785,61.83456809881443],[5.297452974529762,61.841322407893955],[5.3370533705337095,61.841322407893955],[5.319053190531918,61.84807671697348],[5.304653046530461,61.84807671697348],[5.2902529025290335,61.85145387151326],[5.2902529025290335,61.86158533513256],[5.297452974529762,61.868339644212085],[5.36225362253623,61.90548834414949],[5.394653946539478,61.91055407595914],[5.48825488254883,61.90717692141939],[5.520655206552078,61.898734035069964],[5.53865538655387,61.89704545780009],[5.581855818558182,61.90042261233984],[5.5998559985600025,61.898734035069964],[5.635856358563586,61.88860257145066],[5.675456754567563,61.88691399418079],[5.689856898568991,61.88015968510126],[5.715057150571511,61.86158533513256],[5.743857438574395,61.84807671697348],[5.711457114571147,61.841322407893955],[5.675456754567563,61.83963383062408],[5.63945639456395,61.83456809881443],[5.617856178561794,61.814305171575825],[5.646656466564679,61.81599374884573],[5.736657366573667,61.83456809881443],[5.923859238592399,61.84976529424338],[5.941859418594191,61.84469956243373],[5.945459454594555,61.83794525335418],[5.941859418594191,61.826125212465],[5.938259382593827,61.81599374884573],[5.9274592745927634,61.78222220344807],[5.898658986589879,61.75013923532029],[5.898658986589879,61.738319194431114],[5.916659166591671,61.751827812590165],[5.931059310593099,61.75858212166969],[5.941859418594191,61.76871358528899],[5.956259562595619,61.78728793525772],[5.963459634596347,61.819370903385476],[5.9742597425974395,61.83119094427465],[5.9922599225992315,61.83456809881443],[6.010260102601023,61.83119094427465],[6.0606606066060635,61.8075508624963],[6.10026100261004,61.778845048908295],[6.121861218612196,61.770402162558895],[6.179461794617964,61.76702500801912],[6.172261722617236,61.78053362617817],[6.154261542615444,61.78559935798782],[6.136261362613624,61.7889765125276],[6.121861218612196,61.797419398877],[6.111061110611104,61.8075508624963],[6.093060930609312,61.8176823261156],[6.07506075060752,61.82443663519513],[6.0570605706056995,61.827813789734904],[6.0570605706056995,61.83456809881443],[6.291062910629108,61.83456809881443],[6.312663126631264,61.83119094427465],[6.35946359463594,61.81261659430595],[6.38466384663846,61.8075508624963],[6.474664746647477,61.80417370795655],[6.503465034650361,61.8075508624963],[6.521465214652153,61.814305171575825],[6.532265322653245,61.82443663519513],[6.550265502655037,61.84807671697348],[6.568265682656829,61.86158533513256],[6.589865898658985,61.87002822148196],[6.615066150661505,61.87509395329161],[6.640266402664025,61.876782530561485],[6.669066690666909,61.873405376021736],[6.7194671946719495,61.85989675786266],[6.74466744667447,61.85651960332291],[6.755467554675562,61.85314244878313],[6.766267662676626,61.846388139703606],[6.777067770677718,61.841322407893955],[6.787867878678782,61.84469956243373],[6.802268022680238,61.85989675786266],[6.809468094680966,61.86496248967231],[6.82026820268203,61.87002822148196],[6.82026820268203,61.876782530561485],[6.802268022680238,61.876782530561485],[6.76986769867699,61.87002822148196],[6.755467554675562,61.873405376021736],[6.7410674106741055,61.876782530561485],[6.6942669426694295,61.88353683964101],[6.690666906669065,61.88691399418079],[6.683466834668366,61.895356880530215],[6.6762667626676375,61.89704545780009],[6.6726667266672735,61.895356880530215],[6.661866618666181,61.890291148720564],[6.658266582665846,61.88860257145066],[6.553865538655401,61.87847110783139],[6.539465394653945,61.86665106694218],[6.525065250652517,61.85145387151326],[6.510665106651061,61.83456809881443],[6.474664746647477,61.826125212465],[6.25866258662586,61.85651960332291],[6.096660966609676,61.84807671697348],[6.0822608226082195,61.85145387151326],[6.0354603546035435,61.87002822148196],[6.0174601746017515,61.871716798751834],[5.959859598595983,61.87002822148196],[5.905859058590579,61.881848262371136],[5.887858878588787,61.88353683964101],[5.873458734587359,61.881848262371136],[5.844658446584475,61.871716798751834],[5.830258302583019,61.87002822148196],[5.823058230582319,61.86665106694218],[5.808658086580863,61.85820818059278],[5.805058050580499,61.85651960332291],[5.797857978579799,61.85820818059278],[5.7294572945729385,61.88860257145066],[5.7294572945729385,61.89704545780009],[5.934659346593463,61.903799766879615],[5.959859598595983,61.91055407595914],[5.959859598595983,61.917308385038666],[5.646656466564679,61.92406269411822],[5.517055170551714,61.93757131227727],[5.448654486544882,61.925751271388094],[5.445054450544518,61.92912842592784],[5.43785437854379,61.934194157737494],[5.427054270542726,61.93757131227727],[5.347853478534802,61.92743984865797],[5.301053010530126,61.91393123049892],[5.275852758527606,61.91055407595914],[5.221852218522201,61.91393123049892],[5.193051930519317,61.91224265322904],[5.171451714517161,61.90042261233984],[5.157051570515705,61.895356880530215],[5.135451354513549,61.90211118960974],[5.099450994509965,61.917308385038666],[5.113851138511393,61.930817003197745],[5.124651246512485,61.944325621356796],[5.139051390513913,61.96796570313515],[5.139051390513913,61.97134285767493],[5.157051570515705,61.97640858948458],[5.160651606516069,61.97134285767493],[5.164251642516433,61.9628999713255],[5.175051750517525,61.957834239515876],[5.182251822518225,61.95952281678575],[5.189451894518953,61.9645885485954],[5.196651966519681,61.96965428040505],[5.200252002520045,61.97134285767493],[5.211052110521109,61.96796570313515],[5.221852218522201,61.95952281678575],[5.229052290522901,61.957834239515876],[5.239852398523993,61.961211394055624],[5.239852398523993,61.9645885485954],[5.239852398523993,61.97134285767493],[5.2506525065250855,61.97809716675445],[5.2902529025290335,61.993294362183406],[5.301053010530126,62.00342582580271],[5.3118531185311895,62.02706590758106],[5.340653406534074,62.01862302123163],[5.376653766537686,62.015245866691885],[5.401854018540206,62.020311598501536],[5.38745387453875,62.03382021666059],[5.373053730537322,62.037197371200335],[5.340653406534074,62.037197371200335],[5.326253262532646,62.04395168027989],[5.3118531185311895,62.05746029843894],[5.297452974529762,62.06759176205824],[5.207452074520745,62.10305188472577],[5.110251102511029,62.1098061938053],[5.092250922509237,62.12331481196438],[5.103051030510301,62.12331481196438],[5.110251102511029,62.12500338923425],[5.124651246512485,62.1300691210439],[5.110251102511029,62.140200584663205],[5.081450814508145,62.15202062555238],[5.070650706507081,62.16384066644156],[5.077850778507781,62.16552924371143],[5.085050850508509,62.16890639825121],[5.092250922509237,62.170594975521084],[5.088650886508873,62.17397213006086],[5.081450814508145,62.180726439140386],[5.077850778507781,62.184103593680135],[5.081450814508145,62.184103593680135],[5.085050850508509,62.184103593680135],[5.085050850508509,62.19085790275969],[5.095850958509601,62.19423505729944],[5.124651246512485,62.19085790275969],[5.131851318513185,62.19085790275969],[5.142651426514277,62.19085790275969],[5.146251462514641,62.19085790275969],[5.146251462514641,62.19254648002956],[5.146251462514641,62.202677943648865],[5.146251462514641,62.20436652091874],[5.171451714517161,62.21449798453804],[5.182251822518225,62.21280940726814],[5.211052110521109,62.19423505729944],[5.239852398523993,62.18241501641026],[5.254252542525421,62.17397213006086],[5.261452614526149,62.170594975521084],[5.2686526865268775,62.170594975521084],[5.275852758527606,62.16890639825121],[5.275852758527606,62.16046351190178],[5.275852758527606,62.153709202822256],[5.2686526865268775,62.140200584663205],[5.2686526865268775,62.135134852853554],[5.319053190531918,62.10642903926555],[5.391053910539114,62.08785468929682],[5.452254522545246,62.06252603024859],[5.46305463054631,62.00680298034246],[5.466654666546674,62.00849155761233],[5.481054810548102,62.01355728942198],[5.495454954549558,62.02706590758106],[5.527855278552806,62.06928033932812],[5.531455314553142,62.07434607113777],[5.535055350553506,62.07941180294742],[5.549455494554962,62.08110038021729],[5.560255602556026,62.07941180294742],[5.581855818558182,62.07096891659799],[5.592655926559274,62.06759176205824],[5.56385563855639,62.08954326656672],[5.419854198541998,62.1098061938053],[5.401854018540206,62.11656050288482],[5.391053910539114,62.12331481196438],[5.391053910539114,62.13344627558365],[5.41265412654127,62.162152089171656],[5.419854198541998,62.175660707330735],[5.430654306543062,62.18579217095004],[5.455854558545582,62.19085790275969],[5.477454774547766,62.189169325489786],[5.524255242552442,62.17397213006086],[5.6214562145621585,62.16552924371143],[5.63945639456395,62.15708635736203],[5.646656466564679,62.14695489374273],[5.653856538565378,62.13344627558365],[5.661056610566106,62.121626234694475],[5.693456934569355,62.113183348345075],[5.751057510575123,62.08785468929682],[5.7294572945729385,62.10474046199565],[5.697056970569719,62.121626234694475],[5.668256682566835,62.143577739202954],[5.668256682566835,62.170594975521084],[5.6862568625686265,62.17903786187048],[5.715057150571511,62.180726439140386],[5.769057690576915,62.17734928460061],[5.787057870578707,62.180726439140386],[5.837458374583747,62.20098936637896],[5.859058590585903,62.20436652091874],[5.880658806588059,62.20098936637896],[5.905859058590579,62.19085790275969],[5.920259202592035,62.17734928460061],[5.923859238592399,62.16384066644156],[5.923859238592399,62.15033204828248],[5.920259202592035,62.1199376574246],[5.905859058590579,62.09292042110647],[5.851858518585203,62.050705989359415],[5.844658446584475,62.020311598501536],[5.909459094590943,62.06083745297872],[5.938259382593827,62.08785468929682],[5.956259562595619,62.140200584663205],[5.9706597065970755,62.1385120073933],[6.042660426604272,62.099674730185995],[6.053460534605364,62.086166112026945],[6.049860498605,62.06759176205824],[6.089460894608948,62.077723225677545],[6.12546125461256,62.082788957487196],[6.20826208262082,62.08110038021729],[6.3666636666366685,62.06083745297872],[6.3666636666366685,62.06759176205824],[6.089460894608948,62.1098061938053],[6.07506075060752,62.11487192561495],[6.049860498605,62.1385120073933],[6.0390603906039075,62.143577739202954],[6.028260282602844,62.148643471012605],[5.981459814598139,62.184103593680135],[5.9274592745927634,62.19930078910909],[5.920259202592035,62.20774367545849],[5.9274592745927634,62.22631802542722],[5.938259382593827,62.22969517996697],[5.956259562595619,62.224629448157316],[5.9958599585995955,62.211120829998265],[6.0174601746017515,62.20774367545849],[6.064260642606428,62.20436652091874],[6.049860498605,62.211120829998265],[6.028260282602844,62.21449798453804],[5.9922599225992315,62.21787513907779],[5.981459814598139,62.22294087088744],[5.9742597425974395,62.23476091177662],[5.963459634596347,62.24489237539592],[5.9490594905949195,62.24489237539592],[5.977859778597804,62.28035249806345],[6.028260282602844,62.30568115711171],[6.0822608226082195,62.322566929810534],[6.13266132661326,62.327632661620186],[6.247862478624796,62.36140420701784],[6.3090630906309,62.371535670637115],[6.337863378633784,62.35296132066841],[6.341463414634148,62.34620701158889],[6.373863738637397,62.314124043461106],[6.391863918639189,62.28035249806345],[6.413464134641345,62.2668438799044],[6.460264602646021,62.2482695299357],[6.481864818648205,62.23138375723687],[6.550265502655037,62.170594975521084],[6.561065610656101,62.15202062555238],[6.557465574655765,62.1385120073933],[6.532265322653245,62.1098061938053],[6.593465934659349,62.135134852853554],[6.582665826658285,62.16046351190178],[6.496264962649633,62.25333526174535],[6.417064170641709,62.31074688892136],[6.399063990639917,62.336075547969585],[6.3882638826388245,62.36478136155759],[6.399063990639917,62.38673286606607],[6.435064350643501,62.39686432968537],[6.478264782647841,62.40024148422512],[6.499864998649997,62.398552906955246],[6.525065250652517,62.390110020605846],[6.532265322653245,62.38335571152629],[6.564665646656465,62.35633847520819],[6.561065610656101,62.371535670637115],[6.561065610656101,62.38673286606607],[6.557465574655765,62.398552906955246],[6.543065430654309,62.4036186387649],[6.543065430654309,62.41037294784442],[6.564665646656465,62.41712725692395],[6.647466474664753,62.43570160689268],[6.690666906669065,62.44921022505173],[6.708667086670886,62.4508988023216],[6.723067230672314,62.447521647781855],[6.748267482674834,62.434013029622776],[6.877868778687798,62.41712725692395],[6.881468814688162,62.40193006149502],[6.874268742687434,62.37997855698654],[6.874268742687434,62.35633847520819],[6.885068850688526,62.34114127977924],[6.978669786697878,62.28372965260323],[6.989469894698942,62.273598188983925],[6.99666996669967,62.26177814809475],[7.000270002700034,62.25333526174535],[7.0074700747007626,62.20943225272839],[7.0038700387003985,62.19423505729944],[6.99666996669967,62.18241501641026],[6.942669426694266,62.13682343012343],[6.939069390693902,62.121626234694475],[6.957069570695722,62.10305188472577],[6.989469894698942,62.08954326656672],[7.02187021870219,62.091231843836596],[7.101071010710115,62.10474046199565],[7.126271262712635,62.11487192561495],[7.140671406714063,62.11656050288482],[7.151471514715155,62.11487192561495],[7.187471874718767,62.10305188472577],[7.147871478714791,62.1300691210439],[7.0290702907029186,62.099674730185995],[6.978669786697878,62.113183348345075],[6.975069750697514,62.1300691210439],[6.9858698586986065,62.14188916193308],[7.0254702547025545,62.16721782098131],[7.036270362703647,62.184103593680135],[7.036270362703647,62.202677943648865],[7.0254702547025545,62.260089570824874],[7.0290702907029186,62.2668438799044],[7.036270362703647,62.273598188983925],[7.050670506705075,62.2752867662538],[7.111871118711207,62.28035249806345],[7.209072090720923,62.251646684475446],[7.234272342723443,62.2567124162851],[7.252272522725235,62.27022103444415],[7.281072810728119,62.28035249806345],[7.309873098731003,62.28204107533335],[7.3350733507335235,62.27022103444415],[7.353073530735315,62.2567124162851],[7.3746737467374714,62.24489237539592],[7.3962739627396274,62.23476091177662],[7.414274142741448,62.23138375723687],[7.414274142741448,62.23982664358627],[7.3746737467374714,62.273598188983925],[7.331473314733159,62.2854182298731],[7.320673206732067,62.29048396168275],[7.291872918729183,62.29723827076228],[7.162271622716247,62.287106807142976],[7.02187021870219,62.303992579841804],[6.957069570695722,62.32594408435028],[6.913869138691382,62.36984709336724],[6.94626946269463,62.36984709336724],[6.9606696066960865,62.371535670637115],[6.975069750697514,62.37660140244677],[6.852668526685278,62.45427595686138],[6.838268382683822,62.45934168867103],[6.82026820268203,62.461030265940906],[6.777067770677718,62.45934168867103],[6.755467554675562,62.46440742048068],[6.773467734677354,62.47116172956021],[6.791467914679146,62.477916038639734],[6.690666906669065,62.477916038639734],[6.481864818648205,62.43063587508303],[6.399063990639917,62.425570143273376],[6.35946359463594,62.43063587508303],[6.341463414634148,62.43907876143243],[6.319863198631992,62.45427595686138],[6.305463054630565,62.45934168867103],[6.28386283862838,62.45765311140113],[6.262262622626224,62.452587379591506],[6.244262442624432,62.4508988023216],[6.222662226622276,62.45934168867103],[6.25146251462516,62.46778457502043],[6.337863378633784,62.47285030683008],[6.413464134641345,62.48973607952891],[6.431464314643165,62.496490388608436],[6.453064530645321,62.50155612041809],[6.532265322653245,62.50155612041809],[6.571865718657193,62.49311323406869],[6.6762667626676375,62.49311323406869],[6.6762667626676375,62.49986754314821],[6.6510665106651174,62.50324469768796],[6.615066150661505,62.52013047038679],[6.568265682656829,62.509999006767515],[6.474664746647477,62.513376161307264],[6.474664746647477,62.52013047038679],[6.543065430654309,62.52857335673622],[6.564665646656465,62.52688477946634],[6.532265322653245,62.53701624308562],[6.262262622626224,62.52688477946634],[6.265862658626588,62.53532766581574],[6.269462694626952,62.53701624308562],[6.265862658626588,62.53701624308562],[6.262262622626224,62.540393397625394],[6.269462694626952,62.55559059305435],[6.265862658626588,62.56234490213387],[6.255062550625524,62.567410633943524],[6.247862478624796,62.57416494302305],[6.255062550625524,62.58429640664235],[6.265862658626588,62.59273929299175],[6.291062910629108,62.602870756611054],[6.319863198631992,62.607936488420705],[6.535865358653581,62.616379374770105],[6.561065610656101,62.611313642960454],[6.582665826658285,62.59949360207128],[6.600666006660077,62.58260782937245],[6.604266042660441,62.560656324864],[6.611466114661141,62.560656324864],[6.622266222662233,62.589362138452],[6.622266222662233,62.60118217934118],[6.611466114661141,62.60962506569058],[6.622266222662233,62.61975652930988],[6.6330663306633255,62.62313368384966],[6.640266402664025,62.61975652930988],[6.647466474664753,62.60962506569058],[6.687066870668701,62.63326514746893],[6.730267302673042,62.65015092016776],[6.755467554675562,62.65521665197741],[6.777067770677718,62.65015092016776],[6.881468814688162,62.60118217934118],[6.899468994689954,62.5876735611821],[6.903069030690318,62.58260782937245],[6.899468994689954,62.57754209756283],[6.899468994689954,62.575853520292924],[6.917469174691746,62.57416494302305],[6.924669246692474,62.5792306748327],[6.92106921069211,62.5876735611821],[6.913869138691382,62.5978050248014],[6.906669066690682,62.602870756611054],[6.913869138691382,62.60624791115083],[6.928269282692838,62.62313368384966],[6.917469174691746,62.62482226111953],[6.906669066690682,62.62819941565928],[6.89586895868959,62.634953724738835],[6.888668886688862,62.643396611088235],[6.931869318693202,62.65521665197741],[7.093870938709387,62.65015092016776],[7.083070830708323,62.638330879278584],[7.0686706867068665,62.629887992929184],[7.054270542705439,62.62482226111953],[7.036270362703647,62.62313368384966],[7.050670506705075,62.60962506569058],[7.097470974709751,62.613002220230356],[7.104671046710479,62.59949360207128],[7.108271082710843,62.58260782937245],[7.126271262712635,62.553902015784445],[7.126271262712635,62.53363908854587],[7.133471334713363,62.53363908854587],[7.137071370713727,62.54377055216517],[7.151471514715155,62.567410633943524],[7.155071550715519,62.57416494302305],[7.151471514715155,62.58260782937245],[7.137071370713727,62.594427870261626],[7.133471334713363,62.59949360207128],[7.158671586715883,62.629887992929184],[7.173071730717311,62.62819941565928],[7.209072090720923,62.616379374770105],[7.317073170731703,62.60455933388093],[7.363873638736408,62.59273929299175],[7.428674286742876,62.548836283974794],[7.489874898749008,62.548836283974794],[7.518675186751864,62.540393397625394],[7.525875258752592,62.52688477946634],[7.53307533075332,62.51168758403739],[7.543875438754384,62.50324469768796],[7.561875618756204,62.51675331584704],[7.565475654756568,62.52688477946634],[7.569075690756904,62.540393397625394],[7.572675726757268,62.550524861244696],[7.587075870758724,62.553902015784445],[7.777877778777793,62.57416494302305],[7.745477454774544,62.585984983912226],[7.504275042750436,62.56572205667362],[7.461074610746124,62.57416494302305],[7.4430744307443035,62.58429640664235],[7.4214742147421475,62.5978050248014],[7.414274142741448,62.61469079750023],[7.4178741787417835,62.63326514746893],[7.4430744307443035,62.64508518835811],[7.479074790747916,62.64001945654849],[7.500675006750072,62.61975652930988],[7.497074970749708,62.5876735611821],[7.518675186751864,62.58429640664235],[7.53307533075332,62.594427870261626],[7.53307533075332,62.613002220230356],[7.511475114751164,62.65015092016776],[7.511475114751164,62.66365953832684],[7.522275222752228,62.673791001946114],[7.572675726757268,62.68223388829554],[7.615876158761608,62.700808238264244],[7.835478354783561,62.732891206392026],[7.947079470794705,62.73120262912215],[7.993879938799381,62.736268360931774],[8.019080190801901,62.732891206392026],[8.040680406804086,62.727825474582374],[8.12708127081271,62.69405392918472],[8.148681486814866,62.692365351914844],[8.130681306813074,62.71769401096307],[8.065880658806606,62.73964551547155],[8.044280442804421,62.759908442710156],[8.055080550805513,62.76159701998003],[8.062280622806242,62.76666275178968],[8.069480694806941,62.77172848359933],[8.073080730807305,62.78017136994873],[8.047880478804785,62.77848279267886],[8.00108001080011,62.77003990632943],[7.907479074790757,62.763285597249904],[7.864278642786445,62.74977697909085],[7.644676446764464,62.727825474582374],[7.525875258752592,62.692365351914844],[7.489874898749008,62.68729962010519],[7.385473854738564,62.68729962010519],[7.360273602736044,62.697431083724496],[7.392673926739263,62.70418539280402],[7.403474034740356,62.71262827915342],[7.392673926739263,62.72107116550285],[7.367473674736743,62.732891206392026],[7.403474034740356,62.73795693820168],[7.471874718747188,62.76666275178968],[7.680676806768076,62.79367998810781],[7.655476554765556,62.79367998810781],[7.60867608676088,62.795368565377686],[7.450274502745032,62.77172848359933],[7.414274142741448,62.759908442710156],[7.3962739627396274,62.75653128817038],[7.353073530735315,62.754842710900505],[7.3134731347313675,62.7447112472812],[6.97146971469715,62.7261368973125],[6.949869498694994,62.732891206392026],[6.9606696066960865,62.732891206392026],[6.97146971469715,62.736268360931774],[6.978669786697878,62.74302267001133],[6.9822698226982425,62.7531541336306],[6.978669786697878,62.759908442710156],[6.9606696066960865,62.76497417451978],[6.957069570695722,62.77003990632943],[6.9606696066960865,62.78354852448851],[6.975069750697514,62.79705714264756],[7.011070110701127,62.81563149261626],[7.057870578705803,62.825762956235565],[7.216272162721623,62.81563149261626],[7.191071910719103,62.822385801695816],[7.155071550715519,62.84264872893439],[7.133471334713363,62.84940303801392],[7.018270182701826,62.84096015166452],[7.0038700387003985,62.847714460744044],[6.957069570695722,62.88655173795135],[6.94626946269463,62.90512608792005],[6.928269282692838,62.91188039699958],[6.881468814688162,62.91188039699958],[6.892268922689226,62.92201186061888],[6.910269102691046,62.928766169698406],[7.000270002700034,62.950717674206885],[7.075870758707595,62.98280064233467],[7.108271082710843,62.991243528684066],[7.173071730717311,62.99799783776359],[7.237872378723807,63.01488361046242],[7.270272702727027,63.01488361046242],[7.299072990729911,63.004752146843146],[7.342273422734223,62.977734910525015],[7.371073710737107,62.972669178715364],[7.4214742147421475,62.950717674206885],[7.425074250742512,62.945651942397234],[7.4430744307443035,62.91863470607913],[7.500675006750072,62.910191819729704],[7.55827558275584,62.93214332423818],[7.615876158761608,62.96084913782619],[7.669876698766984,62.97942348779489],[7.69147691476914,62.981112065064764],[7.774277742777429,62.977734910525015],[7.781477814778157,62.972669178715364],[7.777877778777793,62.964226292365964],[7.7670776707767,62.955783406016536],[7.7490774907749085,62.942274787857485],[7.669876698766984,62.91863470607913],[7.695076950769504,62.91188039699958],[7.831878318783197,62.94902909693701],[7.846278462784625,62.950717674206885],[7.882278822788237,62.95240625147676],[7.900279002790029,62.955783406016536],[7.939879398794005,62.977734910525015],[7.972279722797225,62.977734910525015],[8.07668076680767,62.950717674206885],[8.087480874808762,62.945651942397234],[8.094680946809461,62.937209056047834],[8.094680946809461,62.928766169698406],[8.10188101881019,62.92201186061888],[8.112681126811282,62.91863470607913],[8.112681126811282,62.89837177884053],[8.123481234812346,62.86797738798265],[8.137881378813802,62.83589441985487],[8.155881558815594,62.81563149261626],[8.188281882818842,62.798745719917434],[8.27828278282783,62.78692567902826],[8.317883178831806,62.776794215408984],[8.415084150841523,62.7261368973125],[8.447484474844742,62.719382588232946],[8.47988479884799,62.7160054336932],[8.512285122851239,62.70756254734377],[8.537485374853759,62.68898819737507],[8.544685446854487,62.656905229247286],[8.566285662856643,62.68223388829554],[8.566285662856643,62.70418539280402],[8.544685446854487,62.72107116550285],[8.45468454684547,62.75653128817038],[8.375483754837546,62.776794215408984],[8.332283322833234,62.80043429718734],[8.245882458824582,62.81563149261626],[8.184681846818478,62.847714460744044],[8.170281702817022,62.857845924363346],[8.166681666816686,62.87642027433205],[8.170281702817022,62.891617469761],[8.17748177481775,62.901748933380304],[8.191881918819206,62.90850324245983],[8.209882098820998,62.91188039699958],[8.199081990819906,62.915257551539355],[8.184681846818478,62.91694612880923],[8.173881738817386,62.920323283349006],[8.166681666816686,62.928766169698406],[8.159481594815958,62.93552047877793],[8.15228152281523,62.945651942397234],[8.148681486814866,62.950717674206885],[8.130681306813074,62.95916056055631],[8.087480874808762,62.96760344690571],[8.00108001080011,63.00644072411302],[7.997479974799745,63.0098178786528],[7.986679866798681,63.02332649681185],[7.983079830798317,63.026703651351625],[7.972279722797225,63.0283922286215],[7.961479614796161,63.0283922286215],[7.950679506795069,63.02501507408172],[7.943479434794341,63.01994934227207],[7.954279542795433,63.01994934227207],[7.961479614796161,63.018260765002196],[7.965079650796525,63.01488361046242],[7.968679686796861,63.00644072411302],[7.947079470794705,63.00306356957324],[7.914679146791485,63.00137499230337],[7.885878858788601,63.004752146843146],[7.878678786787873,63.0098178786528],[7.893078930789301,63.02332649681185],[7.932679326793277,63.0385236922408],[7.950679506795069,63.0469665785902],[7.983079830798317,63.08073812398786],[7.997479974799745,63.09255816487703],[8.015480154801566,63.10100105122646],[8.040680406804086,63.10775536030599],[8.065880658806606,63.111132514845735],[8.087480874808762,63.10944393757586],[8.10188101881019,63.10437820576621],[8.119881198811981,63.09424674214691],[8.134281342813438,63.08073812398786],[8.12708127081271,63.05034373312998],[8.141481414814166,63.0368351149709],[8.159481594815958,63.026703651351625],[8.173881738817386,63.01994934227207],[8.245882458824582,63.008129301382894],[8.267482674826766,62.99630926049372],[8.285482854828558,62.98280064233467],[8.296282962829622,62.97942348779489],[8.314283142831442,62.97942348779489],[8.321483214832142,62.977734910525015],[8.32868328683287,62.972669178715364],[8.335883358833598,62.96760344690571],[8.339483394833962,62.95916056055631],[8.310683106831078,62.94396336512736],[8.317883178831806,62.93045474696831],[8.335883358833598,62.91188039699958],[8.32868328683287,62.88655173795135],[8.32868328683287,62.8814860061417],[8.343083430834326,62.883174583411574],[8.375483754837546,62.8899288924911],[8.389883898839003,62.8899288924911],[8.40428404284043,62.88655173795135],[8.487084870848719,62.852780192553695],[8.523085230852303,62.84433730620427],[8.537485374853759,62.852780192553695],[8.523085230852303,62.8713545425224],[8.45468454684547,62.883174583411574],[8.42948429484295,62.89668320157065],[8.451084510845106,62.89499462430075],[8.573485734857343,62.874731697062174],[8.595085950859527,62.86966596525252],[8.605886058860591,62.862911656173],[8.623886238862383,62.847714460744044],[8.634686346863475,62.84096015166452],[8.652686526865267,62.83589441985487],[8.685086850868515,62.82914011077534],[8.703087030870307,62.822385801695816],[8.620286202862047,62.87810885160192],[8.595085950859527,62.884863160681476],[8.519485194851967,62.891617469761],[8.497884978849783,62.89837177884053],[8.47988479884799,62.90681466518993],[8.422284222842222,62.94734051966714],[8.415084150841523,62.95916056055631],[8.645486454864567,62.96760344690571],[8.667086670866723,62.97942348779489],[8.63828638286384,62.98955495141419],[8.577085770857707,62.97942348779489],[8.544685446854487,62.97942348779489],[8.523085230852303,62.98955495141419],[8.533885338853395,62.999686415033494],[8.587885878858799,63.01994934227207],[8.55548555485555,63.02332649681185],[8.487084870848719,62.99462068322384],[8.393483934839367,62.972669178715364],[8.375483754837546,62.972669178715364],[8.368283682836847,62.97604633325514],[8.357483574835754,62.986177796874415],[8.35388353883539,62.98955495141419],[8.346683466834662,62.99293210595397],[8.317883178831806,62.999686415033494],[8.35388353883539,63.008129301382894],[8.436684366843679,63.0098178786528],[8.469084690846927,63.01994934227207],[8.436684366843679,63.03176938316125],[8.30348303483035,63.01994934227207],[8.263882638826402,63.02163791954197],[8.238682386823882,63.02501507408172],[8.224282242822426,63.03345796043115],[8.220682206822062,63.0385236922408],[8.220682206822062,63.0469665785902],[8.224282242822426,63.053720887669726],[8.22788227882279,63.06385235128903],[8.224282242822426,63.0655409285589],[8.220682206822062,63.06891808309868],[8.217082170821726,63.07229523763846],[8.20268202682027,63.09255816487703],[8.17748177481775,63.10437820576621],[8.166681666816686,63.11450966938551],[8.188281882818842,63.129706864814466],[8.220682206822062,63.13477259662412],[8.242282422824246,63.12295255573491],[8.263882638826402,63.10775536030599],[8.292682926829286,63.09593531941681],[8.289082890828922,63.09086958760716],[8.285482854828558,63.08073812398786],[8.285482854828558,63.075672392178205],[8.307083070830714,63.07904954671798],[8.317883178831806,63.08242670125773],[8.325083250832506,63.089181010337256],[8.325083250832506,63.09424674214691],[8.317883178831806,63.097623896686684],[8.314283142831442,63.102689628496336],[8.317883178831806,63.10944393757586],[8.30348303483035,63.124641133004815],[8.281882818828194,63.133084019354214],[8.235082350823518,63.14321548297352],[8.235082350823518,63.14996979205304],[8.544685446854487,63.133084019354214],[8.641886418864203,63.10944393757586],[8.623886238862383,63.12801828754456],[8.577085770857707,63.14490406024339],[8.566285662856643,63.16178983294222],[8.577085770857707,63.1752984511013],[8.609486094860955,63.18036418291095],[8.850688506885064,63.2040042646893],[8.944289442894444,63.2124471510387],[8.868688686886884,63.21075857376883],[8.649086490864903,63.20569284195918],[8.623886238862383,63.2023156874194],[8.61308613086132,63.2040042646893],[8.602286022860227,63.22426719192788],[8.591485914859163,63.236087232817056],[8.573485734857343,63.252973005515884],[8.526685266852667,63.27830166456414],[8.501485014850147,63.28843312818344],[8.476284762847627,63.293498859993065],[8.515885158851603,63.30531890088227],[8.703087030870307,63.32389325085097],[8.73908739087392,63.334024714470274],[8.76428764287644,63.3492219098992],[8.728287282872827,63.3492219098992],[8.710287102871035,63.3509104871691],[8.695886958869607,63.355976218978725],[8.68868688686888,63.36273052805828],[8.681486814868151,63.37117341440768],[8.674286742867423,63.37961630075711],[8.63828638286384,63.39143634164628],[8.645486454864567,63.40832211434511],[8.670686706867087,63.42183073250416],[8.717487174871764,63.40832211434511],[8.742687426874284,63.41338784615476],[8.76428764287644,63.42520788704394],[8.785887858878596,63.43027361885356],[8.793087930879324,63.431962196123465],[8.821888218882208,63.42858504158369],[8.843488434884364,63.42014215523429],[8.857888578885792,63.40832211434511],[8.879488794887948,63.39819065072581],[8.89028890288904,63.42183073250416],[8.926289262892624,63.423519309774036],[8.9658896588966,63.418453577964385],[8.998289982899848,63.418453577964385],[8.998289982899848,63.42520788704394],[8.973089730897328,63.42520788704394],[8.9658896588966,63.43365077339334],[8.973089730897328,63.44715939155239],[9.001890018900184,63.46573374152112],[9.005490054900548,63.467422318790994],[9.019890198902004,63.46573374152112],[9.052290522905224,63.45222512336204],[9.113491134911357,63.418453577964385],[9.124291242912449,63.40663353707521],[9.127891278912784,63.39481349618603],[9.135091350913513,63.38468203256673],[9.149491494914969,63.37623914621733],[9.127891278912784,63.36273052805828],[9.102691026910264,63.342467600819674],[9.088290882908836,63.320516096311195],[9.0918909189092,63.293498859993065],[9.124291242912449,63.320516096311195],[9.14229142291424,63.3306475599305],[9.19269192691928,63.3390904462799],[9.264692646926477,63.36273052805828],[9.43389433894339,63.37961630075711],[9.47709477094773,63.40325638253546],[9.448294482944846,63.40156780526556],[9.394293942939441,63.38637060983663],[9.261092610926113,63.38130487802698],[9.228692286922865,63.37286199167755],[9.217892178921801,63.37117341440768],[9.203492034920345,63.37623914621733],[9.19269192691928,63.382993455296855],[9.16749167491676,63.40156780526556],[9.16749167491676,63.42183073250416],[9.181891818918189,63.43533935066321],[9.480694806948065,63.472488050600646],[9.48429484294843,63.475865205140394],[9.48429484294843,63.48261951421995],[9.480694806948065,63.4876852460296],[9.473494734947366,63.4859966687597],[9.455494554945545,63.47924235968017],[9.365493654936557,63.46573374152112],[9.333093330933309,63.46573374152112],[9.30069300693009,63.4775537824103],[9.286292862928633,63.47924235968017],[9.279092790927905,63.48261951421995],[9.268292682926841,63.496128132379],[9.257492574925749,63.499505286918776],[9.261092610926113,63.4859966687597],[9.268292682926841,63.47417662787052],[9.279092790927905,63.46404516425122],[9.293492934929361,63.458979432441595],[9.210692106921073,63.458979432441595],[9.16749167491676,63.467422318790994],[9.149491494914969,63.4859966687597],[9.160291602916033,63.507948173268176],[9.19269192691928,63.51301390507783],[9.243092430924321,63.51301390507783],[9.235892358923593,63.534965409586306],[9.257492574925749,63.534965409586306],[9.282692826928269,63.529899677776655],[9.30069300693009,63.53158825504653],[9.318693186931881,63.543408295935706],[9.343893438934401,63.55522833682488],[9.369093690936921,63.56367122317431],[9.387093870938713,63.561982645904436],[9.37629376293765,63.55353975955501],[9.37629376293765,63.54171971866583],[9.379893798937985,63.529899677776655],[9.387093870938713,63.521456791427255],[9.405094050940505,63.51807963688748],[9.415894158941597,63.524833945967],[9.45909459094591,63.561982645904436],[9.47709477094773,63.57211410952371],[9.495094950949522,63.57717984133336],[9.520295202952042,63.57549126406349],[9.53469534695347,63.56704837771409],[9.55989559895599,63.54509687320561],[9.574295742957446,63.54171971866583],[9.55989559895599,63.565359800444185],[9.545495454954562,63.58055699587314],[9.523895238952406,63.587311304952664],[9.491494914949158,63.58899988222254],[9.516695166951678,63.60419707765149],[9.545495454954562,63.61095138673102],[9.606696066960666,63.61601711854067],[9.667896678966798,63.63796862304915],[9.700297002970046,63.64472293212867],[9.725497254972566,63.63628004577927],[9.721897218972202,63.62108285035032],[9.739897398973994,63.60250850038162],[9.78669786697867,63.57549126406349],[9.801098010980127,63.56367122317431],[9.81189811898119,63.54847402774536],[9.815498154981555,63.53158825504653],[9.80469804698049,63.51301390507783],[9.898298982989843,63.4775537824103],[9.948699486994883,63.44884796882229],[9.959499594995947,63.42689646431381],[9.941499414994155,63.39481349618603],[9.927099270992727,63.377927723487204],[9.833498334983346,63.32895898266062],[9.855098550985502,63.325581828120846],[9.894698946989479,63.3306475599305],[9.930699306993063,63.342467600819674],[9.977499774997767,63.36273052805828],[10.013500135001351,63.361041950788376],[10.0459004590046,63.35259906443898],[10.099900999010003,63.325581828120846],[10.139501395013951,63.32220467358107],[10.211502115021148,63.32895898266062],[10.243902439024396,63.325581828120846],[10.254702547025488,63.31376178723167],[10.258302583025824,63.26648162367496],[10.269102691026916,63.27323593275449],[10.27270272702728,63.28167881910389],[10.27270272702728,63.30531890088227],[10.27270272702728,63.307007478152144],[10.276302763027644,63.30869605542202],[10.279902799028008,63.312073209961795],[10.279902799028008,63.31882751904132],[10.276302763027644,63.32389325085097],[10.27270272702728,63.32727040539072],[10.269102691026916,63.32895898266062],[10.265502655026552,63.33233613720037],[10.243902439024396,63.34415617808955],[10.085500855008547,63.361041950788376],[10.067500675006755,63.36610768259803],[10.056700567005663,63.37286199167755],[10.049500495004963,63.38130487802698],[10.042300423004235,63.39481349618603],[10.042300423004235,63.40663353707521],[10.049500495004963,63.41169926888486],[10.060300603006027,63.41507642342464],[10.081900819008183,63.431962196123465],[10.092700927009275,63.43871650520299],[10.157501575015743,63.45222512336204],[10.301503015030164,63.46573374152112],[10.315903159031592,63.46404516425122],[10.355503555035568,63.445470814282515],[10.37350373503736,63.44209365974277],[10.387903879038788,63.44378223701264],[10.416704167041672,63.45222512336204],[10.445504455044556,63.45729085517169],[10.481504815048169,63.453913700631944],[10.517505175051753,63.44715939155239],[10.546305463054637,63.43533935066321],[10.578705787057885,63.43027361885356],[10.690306903069029,63.45222512336204],[10.697506975069757,63.44715939155239],[10.75870758707589,63.43871650520299],[10.78390783907841,63.423519309774036],[10.798307983079837,63.41676500069451],[10.80910809108093,63.42183073250416],[10.830708307083086,63.440405082472864],[10.84150841508415,63.44378223701264],[10.877508775087762,63.445470814282515],[10.89190891908919,63.44884796882229],[10.906309063090646,63.45560227790182],[10.91710917109171,63.46573374152112],[10.823508235082357,63.475865205140394],[10.776707767077681,63.4876852460296],[10.75870758707589,63.51807963688748],[10.780307803078045,63.538342564126054],[10.830708307083086,63.55016260501526],[10.924309243092438,63.55522833682488],[10.924309243092438,63.561982645904436],[10.877508775087762,63.56367122317431],[10.855908559085606,63.56873695498396],[10.863108631086305,63.578868418603264],[10.877508775087762,63.583934150412915],[10.895508955089554,63.583934150412915],[10.913509135091346,63.58899988222254],[10.924309243092438,63.60250850038162],[10.852308523085242,63.597442768571966],[10.81630816308163,63.59068845949244],[10.787507875078745,63.578868418603264],[10.769507695076953,63.57380268679361],[10.729907299073005,63.57211410952371],[10.715507155071549,63.565359800444185],[10.701107011070121,63.556916914094785],[10.686706867068665,63.551851182285134],[10.672306723067237,63.54847402774536],[10.65790657906581,63.54847402774536],[10.65790657906581,63.55522833682488],[10.672306723067237,63.55860549136466],[10.679506795067965,63.56704837771409],[10.686706867068665,63.57717984133336],[10.697506975069757,63.58224557314301],[10.704707047070485,63.583934150412915],[10.70830708307085,63.587311304952664],[10.711907119071185,63.59406561403219],[10.715507155071549,63.59913134584184],[10.719107191071913,63.60419707765149],[10.729907299073005,63.60926280946114],[10.73350733507337,63.61263996400092],[10.755107551075525,63.624460004890096],[10.787507875078745,63.63459146850937],[10.845108451084513,63.64472293212867],[10.863108631086305,63.6514772412082],[10.906309063090646,63.685248786605854],[11.032310323103246,63.71902033200351],[11.057510575105766,63.71564317746376],[11.082710827108286,63.703823136574584],[11.11871118711187,63.703823136574584],[11.158311583115847,63.71057744565411],[11.183511835118367,63.71902033200351],[11.205112051120523,63.73421752743246],[11.241112411124107,63.76461191829034],[11.266312663126627,63.774743381909644],[11.338313383133851,63.78487484552895],[11.442714427144267,63.78656342279882],[11.457114571145723,63.7899405773386],[11.464314643146452,63.801760618227775],[11.460714607146087,63.81189208184708],[11.449914499144995,63.8186463909266],[11.435514355143567,63.82202354546635],[11.424714247142475,63.82202354546635],[11.42831428314284,63.82540070000613],[11.435514355143567,63.83215500908565],[11.439114391143931,63.83553216362543],[11.413914139141411,63.850729359054355],[11.356313563135643,63.84735220451461],[11.327513275132759,63.85241793632426],[11.302313023130239,63.86254939994356],[11.277112771127719,63.86761513175318],[11.251912519125199,63.86761513175318],[11.11151111511117,63.84904078178448],[11.100711007110078,63.85241793632426],[11.097110971109714,63.85748366813391],[11.09351093510935,63.86761513175318],[11.09351093510935,63.87605801810261],[11.097110971109714,63.88956663626166],[11.100711007110078,63.89294379080144],[11.11151111511117,63.89463236807131],[11.176311763117639,63.90982956350027],[11.201512015120159,63.91996102711957],[11.21231212312125,63.935158222548495],[11.223112231122315,63.9452896861678],[11.298712987129875,63.9655526134064],[11.435514355143567,63.98243838610523],[11.464314643146452,63.992569849724504],[11.485914859148608,64.00607846788358],[11.496714967149671,64.02127566331251],[11.45351453514536,64.01789850877276],[11.442714427144267,64.02634139512216],[11.424714247142475,64.02802997239206],[11.367113671136707,64.02802997239206],[11.262712627126291,64.03647285874146],[11.255512555125563,64.03816143601134],[11.241112411124107,64.05167005417042],[11.241112411124107,64.06180151778972],[11.251912519125199,64.06855582686924],[11.280712807128083,64.07531013594877],[11.345513455134551,64.10570452680665],[11.363513635136371,64.11752456769582],[11.327513275132759,64.11414741315608],[11.298712987129875,64.10739310407655],[11.226712267122679,64.07193298140899],[11.205112051120523,64.02802997239206],[11.197911979119795,64.02127566331251],[11.176311763117639,64.00776704515346],[10.963909639096386,63.948666840707574],[10.93510935109353,63.9368467998184],[10.90990909909101,63.921649604389444],[10.89190891908919,63.90814098623039],[10.870308703087034,63.89800952261109],[10.837908379083785,63.88787805899179],[10.719107191071913,63.869303709023086],[10.690306903069029,63.86086082267366],[10.647106471064717,63.83384358635553],[10.596705967059677,63.82033496819648],[10.57510575105752,63.8085149273073],[10.593105931059313,63.8085149273073],[10.614706147061469,63.81189208184708],[10.632706327063289,63.8169578136567],[10.690306903069029,63.84059789543508],[10.701107011070121,63.842286472704956],[10.769507695076953,63.850729359054355],[10.899108991089918,63.89463236807131],[10.93510935109353,63.89800952261109],[10.999909999099998,63.877746595372486],[11.028710287102882,63.872680863562834],[11.057510575105766,63.86086082267366],[11.075510755107558,63.83553216362543],[11.053910539105402,63.83215500908565],[11.028710287102882,63.823712122736254],[11.007110071100726,63.81358065911695],[10.99270992709927,63.801760618227775],[10.98550985509857,63.79500630914825],[10.981909819098206,63.77643195917952],[10.978309783097842,63.76798907283012],[10.971109711097114,63.76292334102047],[10.953109531095322,63.75616903194094],[10.945909459094594,63.74941472286142],[10.90990909909101,63.730840372892686],[10.812708127081265,63.72070890927341],[10.74070740707407,63.690314518415505],[10.672306723067237,63.68693736387576],[10.643506435064353,63.676805900256454],[10.632706327063289,63.67005159117693],[10.611106111061105,63.63965720031902],[10.603906039060405,63.63628004577927],[10.567905679056793,63.624460004890096],[10.528305283052845,63.619394273080445],[10.416704167041672,63.578868418603264],[10.402304023040244,63.57717984133336],[10.366303663036632,63.57380268679361],[10.333903339033384,63.56367122317431],[10.319503195031956,63.561982645904436],[10.240302403024032,63.561982645904436],[10.229502295022968,63.55860549136466],[10.204302043020448,63.54509687320561],[10.193501935019356,63.54171971866583],[10.164701647016471,63.53665398685618],[10.081900819008183,63.507948173268176],[10.042300423004235,63.50119386418865],[9.999099990999923,63.499505286918776],[9.991899918999195,63.49781670964887],[9.984699846998467,63.494439555109125],[9.981099810998103,63.49275097783922],[9.973899738997403,63.496128132379],[9.970299702997039,63.499505286918776],[9.963099630996311,63.50457101872843],[9.955899558995583,63.5062595959983],[9.919899198991999,63.5147024823477],[9.909099090990907,63.53158825504653],[9.905499054990543,63.55522833682488],[9.88749887498875,63.57549126406349],[9.898298982989843,63.58562272768279],[9.901899018990207,63.58899988222254],[9.883898838988387,63.59575419130209],[9.851498514985167,63.597442768571966],[9.833498334983346,63.60250850038162],[9.819098190981919,63.614328541270794],[9.81189811898119,63.627837159429845],[9.815498154981555,63.63796862304915],[9.833498334983346,63.64472293212867],[9.826298262982647,63.6531658184781],[9.815498154981555,63.65823155028775],[9.793897938979399,63.66498585936728],[9.793897938979399,63.668363013907026],[9.797497974979763,63.6717401684468],[9.801098010980127,63.67511732298658],[9.80469804698049,63.676805900256454],[9.80469804698049,63.681871632066105],[9.797497974979763,63.69200309568541],[9.844298442984439,63.69706882749503],[9.923499234992363,63.71564317746376],[9.999099990999923,63.72408606381316],[10.035100351003507,63.73421752743246],[10.07110071100712,63.74941472286142],[10.099900999010003,63.76798907283012],[10.074700747007483,63.766300495560245],[10.031500315003143,63.747726145591514],[10.006300063000623,63.74603756832164],[10.009900099000987,63.75785760921082],[10.017100171001715,63.766300495560245],[10.027900279002807,63.77136622736987],[10.038700387003871,63.774743381909644],[10.027900279002807,63.78318626825907],[10.013500135001351,63.779809113719296],[9.991899918999195,63.77136622736987],[9.973899738997403,63.76798907283012],[9.955899558995583,63.766300495560245],[9.905499054990543,63.75785760921082],[9.858698586985867,63.730840372892686],[9.77949779497797,63.72239748654329],[9.72909729097293,63.70213455930468],[9.649896498965006,63.69875740476493],[9.646296462964642,63.69706882749503],[9.642696426964278,63.69200309568541],[9.642696426964278,63.68693736387576],[9.642696426964278,63.685248786605854],[9.63549635496355,63.68356020933598],[9.624696246962486,63.685248786605854],[9.621096210962122,63.685248786605854],[9.58509585095851,63.6717401684468],[9.545495454954562,63.66498585936728],[9.55269552695529,63.68356020933598],[9.567095670956718,63.70720029111433],[9.55269552695529,63.71902033200351],[9.55269552695529,63.725774641083035],[9.718297182971838,63.76292334102047],[9.77949779497797,63.76798907283012],[9.77949779497797,63.774743381909644],[9.581495814958146,63.75954618648069],[9.545495454954562,63.774743381909644],[9.664296642966434,63.8186463909266],[9.829898298982982,63.86086082267366],[9.873098730987323,63.86254939994356],[9.873098730987323,63.869303709023086],[9.829898298982982,63.87099228629296],[9.81189811898119,63.87436944083274],[9.793897938979399,63.88450090445201],[9.891098910989115,63.90307525442074],[9.91269912699127,63.90138667715084],[9.916299162991635,63.891255213531565],[9.909099090990907,63.886189481721914],[9.905499054990543,63.88450090445201],[9.927099270992727,63.88450090445201],[9.93789937899379,63.886189481721914],[9.970299702997039,63.904763831690616],[10.067500675006755,63.91827244984967],[10.114301143011431,63.94191253162802],[10.1719017190172,63.93346964527862],[10.19710197101972,63.93853537708827],[10.1719017190172,63.957109727056974],[10.157501575015743,63.9638640361365],[10.143101431014315,63.9655526134064],[10.125101251012524,63.962175458866625],[10.09630096300964,63.948666840707574],[10.063900639006391,63.94360110889792],[10.031500315003143,63.93346964527862],[9.99549995499956,63.93009249073884],[9.963099630996311,63.91827244984967],[9.941499414994155,63.91827244984967],[9.973899738997403,63.94191253162802],[10.085500855008547,63.967241190676276],[10.128701287012888,63.98750411791485],[10.114301143011431,63.98750411791485],[10.103501035010368,63.98243838610523],[10.092700927009275,63.975684077025676],[10.081900819008183,63.97230692248593],[10.07110071100712,63.975684077025676],[10.063900639006391,63.98243838610523],[10.060300603006027,63.98750411791485],[9.991899918999195,63.9638640361365],[9.963099630996311,63.96048688159675],[9.93789937899379,63.95879830432685],[9.945099450994519,63.97230692248593],[9.973899738997403,63.984126963375104],[9.984699846998467,63.994258426994406],[9.988299882998831,64.00945562242333],[9.991899918999195,64.02634139512216],[9.999099990999923,64.03647285874146],[10.017100171001715,64.03478428147159],[10.013500135001351,64.04491574509089],[10.013500135001351,64.04998147690051],[10.024300243002443,64.06180151778972],[10.013500135001351,64.07024440413912],[10.002700027000287,64.0820644450283],[9.99549995499956,64.09557306318735],[9.999099990999923,64.10908168134642],[10.013500135001351,64.11921314496573],[10.035100351003507,64.11583599042595],[10.085500855008547,64.100638794997],[10.099900999010003,64.0921959086476],[10.107101071010703,64.09050733137772],[10.193501935019356,64.100638794997],[10.207902079020784,64.10908168134642],[10.218702187021876,64.12427887677538],[10.189901899018992,64.11752456769582],[10.107101071010703,64.11752456769582],[10.117901179011795,64.1310331858549],[10.132301323013223,64.13778749493443],[10.153901539015408,64.1411646494742],[10.168301683016836,64.13609891766455],[10.161101611016107,64.14791895855373],[10.157501575015743,64.15129611309348],[10.157501575015743,64.158050422173],[10.19710197101972,64.158050422173],[10.186301863018628,64.16142757671278],[10.179101791017928,64.16649330852243],[10.175501755017564,64.17493619487183],[10.182701827018263,64.18506765849114],[10.179101791017928,64.18844481303091],[10.175501755017564,64.19182196757066],[10.1719017190172,64.19519912211044],[10.168301683016836,64.19857627665021],[10.186301863018628,64.19857627665021],[10.204302043020448,64.19351054484056],[10.22230222302224,64.19182196757066],[10.236702367023668,64.19857627665021],[10.233102331023304,64.20026485392009],[10.233102331023304,64.20195343118996],[10.229502295022968,64.20533058572974],[10.254702547025488,64.20533058572974],[10.2979029790298,64.21039631753939],[10.319503195031956,64.20533058572974],[10.366303663036632,64.18506765849114],[10.37350373503736,64.18506765849114],[10.366303663036632,64.20701916299961],[10.32310323103232,64.22221635842857],[10.243902439024396,64.23403639931774],[10.258302583025824,64.24585644020692],[10.283502835028344,64.25261074928645],[10.333903339033384,64.26105363563588],[10.330303303033048,64.26443079017562],[10.326703267032684,64.27456225379493],[10.351903519035204,64.27456225379493],[10.39870398703988,64.26443079017562],[10.391503915039152,64.2779394083347],[10.391503915039152,64.28807087195398],[10.405904059040608,64.28975944922388],[10.434704347043464,64.28469371741423],[10.44910449104492,64.28975944922388],[10.463504635046348,64.29482518103353],[10.477904779047805,64.2965137583034],[10.492304923049232,64.29482518103353],[10.492304923049232,64.30157949011306],[10.456304563045649,64.30157949011306],[10.44910449104492,64.31339953100223],[10.452704527045285,64.33028530370106],[10.44910449104492,64.35054823093964],[10.470704707047076,64.35054823093964],[10.477904779047805,64.35054823093964],[10.470704707047076,64.35730254001919],[10.492304923049232,64.35561396274929],[10.517505175051753,64.35054823093964],[10.560705607056065,64.32859672643116],[10.553505535055365,64.34379392186011],[10.539105391053909,64.35392538547941],[10.503105031050325,64.36405684909872],[10.503105031050325,64.37081115817824],[10.546305463054637,64.36912258090837],[10.567905679056793,64.36405684909872],[10.596705967059677,64.34548249912999],[10.614706147061469,64.34717107639989],[10.650706507065081,64.35730254001919],[10.650706507065081,64.36405684909872],[10.621906219062197,64.36236827182881],[10.607506075060769,64.36574542636859],[10.600306003060041,64.37418831271799],[10.596705967059677,64.38263119906742],[10.593105931059313,64.38769693087707],[10.582305823058249,64.39107408541682],[10.571505715057157,64.39107408541682],[10.567905679056793,64.39276266268672],[10.564305643056429,64.39782839449637],[10.560705607056065,64.40289412630602],[10.553505535055365,64.4045827035759],[10.463504635046348,64.4045827035759],[10.470704707047076,64.41640274446507],[10.481504815048169,64.4231570535446],[10.495904959049597,64.42991136262413],[10.510305103051024,64.43159993989403],[10.542705427054273,64.42653420808438],[10.600306003060041,64.40289412630602],[10.629106291062925,64.39782839449637],[10.621906219062197,64.40964843538555],[10.614706147061469,64.42146847627473],[10.603906039060405,64.42653420808438],[10.593105931059313,64.42484563081447],[10.593105931059313,64.42991136262413],[10.585905859058585,64.4332885171639],[10.585905859058585,64.43497709443378],[10.593105931059313,64.4417314035133],[10.600306003060041,64.44848571259286],[10.603906039060405,64.4518628671326],[10.614706147061469,64.45017428986273],[10.632706327063289,64.44004282624343],[10.639906399063989,64.43835424897355],[10.647106471064717,64.43497709443378],[10.65790657906581,64.42146847627473],[10.665106651066509,64.41809132173495],[10.722707227072277,64.41809132173495],[10.73350733507337,64.41640274446507],[10.737107371073705,64.40964843538555],[10.74070740707407,64.40289412630602],[10.744307443074433,64.39782839449637],[10.755107551075525,64.39276266268672],[10.81630816308163,64.37081115817824],[10.83430834308345,64.36912258090837],[10.855908559085606,64.37756546725777],[10.798307983079837,64.40120554903612],[10.787507875078745,64.41133701265542],[10.805508055080566,64.42146847627473],[10.798307983079837,64.43159993989403],[10.773107731077317,64.4417314035133],[10.751507515075161,64.44679713532295],[10.679506795067965,64.43835424897355],[10.65790657906581,64.44679713532295],[10.65790657906581,64.4518628671326],[10.668706687066873,64.45355144440248],[10.693906939069393,64.46874863983143],[10.704707047070485,64.47212579437121],[10.715507155071549,64.47212579437121],[10.74070740707407,64.46706006256156],[10.751507515075161,64.46537148529168],[10.751507515075161,64.46874863983143],[10.755107551075525,64.47381437164108],[10.75870758707589,64.47719152618086],[10.762307623076225,64.48056868072061],[10.79110791107911,64.48056868072061],[10.805508055080566,64.47719152618086],[10.827108271082722,64.46706006256156],[10.84150841508415,64.46537148529168],[10.837908379083785,64.48225725799048],[10.827108271082722,64.49238872160979],[10.81630816308163,64.49745445341944],[10.801908019080201,64.50758591703874],[10.823508235082357,64.51096307157852],[10.848708487084878,64.50420876249896],[10.870308703087034,64.49238872160979],[10.88470884708849,64.47719152618086],[10.89190891908919,64.47550294891096],[10.899108991089918,64.48056868072061],[10.90990909909101,64.48901156707004],[10.91710917109171,64.49238872160979],[10.927909279092802,64.49238872160979],[10.93510935109353,64.48732298980013],[10.945909459094594,64.48394583526039],[10.956709567095686,64.48732298980013],[10.927909279092802,64.50252018522909],[10.924309243092438,64.50758591703874],[10.927909279092802,64.51265164884839],[10.938709387093866,64.51265164884839],[10.963909639096386,64.50758591703874],[10.963909639096386,64.51434022611826],[10.949509495094958,64.52109453519779],[10.949509495094958,64.52953742154722],[10.953109531095322,64.53966888516652],[10.956709567095686,64.5514889260557],[10.953109531095322,64.55824323513522],[10.938709387093866,64.56668612148462],[10.927909279092802,64.57175185329427],[10.91710917109171,64.57512900783405],[10.91710917109171,64.58188331691358],[10.927909279092802,64.58188331691358],[10.93510935109353,64.58357189418345],[10.949509495094958,64.59032620326298],[10.953109531095322,64.59201478053288],[10.956709567095686,64.59708051234253],[10.956709567095686,64.60214624415218],[10.956709567095686,64.60383482142205],[10.971109711097114,64.60214624415218],[10.996309963099634,64.59201478053288],[11.050310503105038,64.5801947396437],[11.06111061110613,64.57512900783405],[11.064710647106466,64.56668612148462],[11.06111061110613,64.54811177151592],[11.064710647106466,64.53798030789662],[11.075510755107558,64.52278311246769],[11.082710827108286,64.52109453519779],[11.100711007110078,64.52109453519779],[11.165511655116546,64.48901156707004],[11.176311763117639,64.47888010345073],[11.176311763117639,64.46537148529168],[11.16191161911621,64.44679713532295],[11.183511835118367,64.4417314035133],[11.24471244712447,64.4518628671326],[11.26991269912699,64.4518628671326],[11.29511295112951,64.44848571259286],[11.316713167131667,64.4417314035133],[11.341913419134187,64.43159993989403],[11.331113311133123,64.41133701265542],[11.32031320313203,64.39782839449637],[11.26991269912699,64.36743400363846],[11.223112231122315,64.32184241735163],[11.248312483124835,64.32521957189141],[11.266312663126627,64.33872819005046],[11.298712987129875,64.37081115817824],[11.377913779137799,64.39782839449637],[11.388713887138891,64.4045827035759],[11.370713707137071,64.41133701265542],[11.363513635136371,64.41133701265542],[11.370713707137071,64.41977989900482],[11.395913959139591,64.44510855805308],[11.410314103141047,64.4518628671326],[11.417514175141747,64.45017428986273],[11.435514355143567,64.4417314035133],[11.442714427144267,64.43835424897355],[11.45351453514536,64.44004282624343],[11.47871478714788,64.4518628671326],[11.521915219152191,64.4619943307519],[11.611916119161208,64.46874863983143],[11.65511655116552,64.48056868072061],[11.439114391143931,64.46537148529168],[11.446314463144631,64.47719152618086],[11.449914499144995,64.49576587614956],[11.460714607146087,64.51096307157852],[11.475114751147515,64.51771738065804],[11.521915219152191,64.51771738065804],[11.539915399154012,64.52109453519779],[11.539915399154012,64.52784884427734],[11.52911529115292,64.52953742154722],[11.518315183151827,64.53291457608697],[11.511115111151128,64.53966888516652],[11.507515075150764,64.54811177151592],[11.572315723157232,64.55655465786535],[11.55431554315544,64.54473461697614],[11.547115471154711,64.5413574624364],[11.568715687156867,64.53798030789662],[11.65511655116552,64.5700632760244],[11.748717487174872,64.58526047145335],[11.78111781117812,64.59708051234253],[11.658716587165884,64.59370335780275],[11.637116371163728,64.58188331691358],[11.626316263162636,64.59201478053288],[11.626316263162636,64.60214624415218],[11.633516335163364,64.61227770777145],[11.629916299163,64.62409774866063],[11.611916119161208,64.62916348047028],[11.590315903159052,64.62240917139076],[11.568715687156867,64.61227770777145],[11.55431554315544,64.60383482142205],[11.561515615156168,64.5987690896124],[11.572315723157232,64.59708051234253],[11.583115831158324,64.59539193507263],[11.593915939159388,64.59708051234253],[11.575915759157596,64.57512900783405],[11.547115471154711,64.56837469875452],[11.518315183151827,64.57344043056418],[11.493114931149307,64.58694904872323],[11.485914859148608,64.59539193507263],[11.464314643146452,64.61058913050158],[11.45351453514536,64.62072059412088],[11.442714427144267,64.62747490320041],[11.42831428314284,64.63085205774019],[11.421114211142111,64.63591778954984],[11.424714247142475,64.64436067589924],[11.424714247142475,64.65111498497876],[11.413914139141411,64.65618071678841],[11.40311403114032,64.66293502586794],[11.395913959139591,64.67306648948724],[11.395913959139591,64.68488653037642],[11.40311403114032,64.6882636849162],[11.410314103141047,64.68657510764629],[11.421114211142111,64.68657510764629],[11.424714247142475,64.6967065712656],[11.421114211142111,64.70008372580537],[11.413914139141411,64.70346088034512],[11.40311403114032,64.70514945761502],[11.395913959139591,64.7068380348849],[11.421114211142111,64.71359234396442],[11.47871478714788,64.72034665304395],[11.532715327153284,64.74398673482233],[11.561515615156168,64.74229815755243],[11.590315903159052,64.73723242574277],[11.615516155161572,64.74060958028255],[11.608316083160844,64.74229815755243],[11.593915939159388,64.74736388936208],[11.593915939159388,64.75918393025125],[11.583115831158324,64.76256108479103],[11.568715687156867,64.76256108479103],[11.55431554315544,64.76762681660068],[11.791917919179213,64.78282401202961],[11.824318243182432,64.79295547564891],[11.842318423184253,64.79464405291878],[11.842318423184253,64.80308693926821],[11.737917379173808,64.80308693926821],[11.745117451174508,64.80984124834774],[11.716317163171652,64.81152982561761],[11.669516695166948,64.81997271196704],[11.644316443164428,64.82334986650679],[11.676716767167676,64.83179275285622],[11.788317883178848,64.835169907396],[11.788317883178848,64.84023563920562],[11.784717847178484,64.8436127937454],[11.78111781117812,64.85036710282492],[11.788317883178848,64.85712141190444],[11.719917199171988,64.84192421647552],[11.683916839168404,64.83685848466587],[11.647916479164792,64.8436127937454],[11.709117091170924,64.85880998917435],[11.727117271172716,64.87738433914305],[11.745117451174508,64.88413864822257],[11.766717667176692,64.88920438003223],[11.813518135181369,64.89427011184188],[11.917919179191813,64.92466450269976],[11.993519935199345,64.9297302345094],[12.007920079200801,64.93648454358893],[12.018720187201865,64.94323885266849],[12.051120511205113,64.95674747082754],[12.06552065520657,64.96012462536731],[12.22392223922239,64.93986169812871],[12.187921879218806,64.96012462536731],[12.144721447214465,64.97025608898659],[12.054720547205477,64.97363324352636],[12.033120331203321,64.97025608898659],[11.997119971199709,64.95674747082754],[11.98271982719828,64.95337031628776],[11.910719107191085,64.94999316174801],[11.737917379173808,64.8908929573021],[11.615516155161572,64.86894145279362],[11.608316083160844,64.8621871437141],[11.622716227162272,64.85036710282492],[11.622716227162272,64.8436127937454],[11.547115471154711,64.81997271196704],[11.521915219152191,64.81659555742726],[11.496714967149671,64.81490698015739],[11.47871478714788,64.80984124834774],[11.464314643146452,64.80139836199834],[11.446314463144631,64.78451258929951],[11.42831428314284,64.77100397114043],[11.40311403114032,64.75918393025125],[11.377913779137799,64.75242962117173],[11.262712627126291,64.73385527120303],[11.23751237512377,64.74060958028255],[11.251912519125199,64.7456753120922],[11.309513095130967,64.7558067757115],[11.338313383133851,64.76593823933078],[11.352713527135279,64.76762681660068],[11.359913599136007,64.77100397114043],[11.421114211142111,64.80815267107786],[11.42831428314284,64.81659555742726],[11.345513455134551,64.80477551653809],[11.302313023130239,64.82166128923691],[11.255512555125563,64.81659555742726],[11.230312303123043,64.82334986650679],[11.251912519125199,64.83854706193574],[11.280712807128083,64.84530137101527],[11.525515255152555,64.8621871437141],[11.665916659166612,64.892581534572],[11.698316983169832,64.91284446181058],[11.673116731167312,64.91284446181058],[11.601116011160116,64.8908929573021],[11.24471244712447,64.85712141190444],[11.266312663126627,64.87063003006352],[11.40311403114032,64.92297592542988],[11.424714247142475,64.92466450269976],[11.449914499144995,64.92297592542988],[11.511115111151128,64.89933584365153],[11.532715327153284,64.89595868911175],[11.55431554315544,64.89933584365153],[11.575915759157596,64.90609015273105],[11.593915939159388,64.91791019362023],[11.593915939159388,64.92466450269976],[11.57951579515796,64.92297592542988],[11.550715507155076,64.90777873000093],[11.532715327153284,64.90440157546118],[11.521915219152191,64.90777873000093],[11.47871478714788,64.93310738904918],[11.496714967149671,64.94155027539858],[11.561515615156168,64.95337031628776],[11.57951579515796,64.95337031628776],[11.622716227162272,64.94492742993836],[11.637116371163728,64.94492742993836],[11.629916299163,64.94830458447811],[11.622716227162272,64.95674747082754],[11.615516155161572,64.96012462536731],[11.629916299163,64.96519035717694],[11.640716407164092,64.96350177990706],[11.651516515165156,64.95674747082754],[11.662316623166248,64.95337031628776],[11.709117091170924,64.95674747082754],[11.766717667176692,64.97025608898659],[11.777517775177756,64.97701039806611],[11.820718207182068,64.98038755260589],[11.835118351183525,64.98714186168542],[11.817118171181733,64.99220759349507],[11.80631806318064,64.99896190257459],[11.802718027180276,65.00740478892402],[11.813518135181369,65.01753625254332],[11.871118711187108,65.04117633432168],[11.90711907119072,65.04961922067108],[11.943119431194333,65.06312783883016],[11.979119791197917,65.0681935706398],[12.011520115201165,65.05468495248073],[12.007920079200801,65.04624206613133],[12.011520115201165,65.03611060251203],[12.015120151201529,65.0293562934325],[12.025920259202593,65.03104487070237],[12.033120331203321,65.03611060251203],[12.04032040320405,65.05130779794098],[12.043920439204385,65.05975068429038],[12.054720547205477,65.06481641610003],[12.061920619206205,65.05975068429038],[12.061920619206205,65.05130779794098],[12.06552065520657,65.04624206613133],[12.076320763207633,65.03948775705177],[12.09072090720909,65.04117633432168],[12.105121051210517,65.04624206613133],[12.11592115921161,65.04961922067108],[12.137521375213765,65.04624206613133],[12.151921519215193,65.03948775705177],[12.16632166321665,65.0276677161626],[12.177121771217713,65.01415909800355],[12.177121771217713,65.01078194346377],[12.177121771217713,65.0090933661939],[12.17352173521735,65.00402763438424],[12.17352173521735,64.99727332530472],[12.184321843218441,64.99389617076494],[12.195121951219505,64.99558474803484],[12.202322023220233,64.99896190257459],[12.205922059220597,65.00571621165415],[12.209522095220962,65.01415909800355],[12.202322023220233,65.0192248298132],[12.19152191521917,65.02597913889272],[12.187921879218806,65.03442202524215],[12.184321843218441,65.04624206613133],[12.19152191521917,65.05130779794098],[12.281522815228158,65.05975068429038],[12.339123391233926,65.08170218879886],[12.36792367923681,65.09014507514826],[12.436324363243642,65.08507934333863],[12.472324723247226,65.09014507514826],[12.486724867248682,65.11378515692664],[12.508325083250838,65.12053946600616],[12.605526055260555,65.12560519781582],[12.637926379263803,65.13067092962547],[12.61992619926201,65.13742523870499],[12.612726127261283,65.13742523870499],[12.60192601926019,65.13742523870499],[12.616326163261647,65.14924527959417],[12.637926379263803,65.15431101140382],[12.659526595265959,65.15431101140382],[12.67752677526775,65.15937674321347],[12.717127171271727,65.1847054022617],[12.774727747277467,65.21172263857983],[12.789127891278923,65.2134112158497],[12.796327963279651,65.21847694765935],[12.799927999279987,65.23029698854853],[12.807128071280715,65.24211702943771],[12.817928179281807,65.24718276124736],[12.839528395283963,65.25393707032688],[12.929529295292951,65.3130372747728],[12.940329403294044,65.32823447020172],[12.933129331293316,65.33330020201137],[12.897128971289732,65.3113486975029],[12.857528575285755,65.29615150207397],[12.846728467284692,65.28939719299441],[12.825128251282507,65.27419999756549],[12.666726667266687,65.19652544315088],[12.56952569525697,65.166131052293],[12.555125551255514,65.166131052293],[12.540725407254087,65.16275389775322],[12.515525155251567,65.14755670232427],[12.50112501125011,65.14417954778452],[12.429124291242914,65.13911381597487],[12.389523895238966,65.14249097051464],[12.36792367923681,65.15093385686404],[12.382323823238238,65.17795109318217],[12.472324723247226,65.18301682499182],[12.497524975249746,65.19990259769065],[12.486724867248682,65.19990259769065],[12.461524615246162,65.2032797522304],[12.45072450724507,65.20665690677018],[12.439924399244006,65.2134112158497],[12.436324363243642,65.21678837038948],[12.439924399244006,65.22523125673888],[12.439924399244006,65.22691983400875],[12.41832418324185,65.23029698854853],[12.378723787237874,65.22185410219913],[12.353523535235354,65.22016552492923],[12.353523535235354,65.22691983400875],[12.389523895238966,65.24211702943771],[12.407524075240758,65.24718276124736],[12.429124291242914,65.24718276124736],[12.479524795247954,65.24042845216783],[12.508325083250838,65.24042845216783],[12.51912519125193,65.25055991578714],[12.67752677526775,65.24887133851723],[12.713527135271363,65.25393707032688],[12.681126811268115,65.26237995667631],[12.587525875258763,65.26069137940641],[12.515525155251567,65.26744568848596],[12.50112501125011,65.26575711121606],[12.47592475924759,65.25562564759676],[12.457924579245798,65.25393707032688],[12.461524615246162,65.26406853394619],[12.465124651246526,65.26744568848596],[12.436324363243642,65.27251142029559],[12.346323463234626,65.26744568848596],[12.321123211232106,65.26069137940641],[12.29952299522995,65.24549418397748],[12.277922779227794,65.2319855658184],[12.245522455224545,65.23367414308831],[12.256322563225638,65.24549418397748],[12.29952299522995,65.26744568848596],[12.310323103231042,65.27588857483536],[12.331923319233198,65.29446292480407],[12.34272342723429,65.3029058111535],[12.378723787237874,65.30966012023302],[12.414724147241486,65.30797154296314],[12.45072450724507,65.3130372747728],[12.479524795247954,65.33667735655115],[12.461524615246162,65.33667735655115],[12.411124111241122,65.32316873839207],[12.41832418324185,65.33498877928125],[12.432724327243278,65.34512024290055],[12.490324903249046,65.3687603246789],[12.497524975249746,65.3704489019488],[12.504725047250474,65.3687603246789],[12.511925119251202,65.36369459286925],[12.511925119251202,65.35862886105963],[12.515525155251567,65.35694028378973],[12.60192601926019,65.35525170651985],[12.62712627126271,65.34680882017045],[12.637926379263803,65.33498877928125],[12.655926559265595,65.32654589293185],[12.673926739267387,65.32316873839207],[12.691926919269207,65.32992304747162],[12.663126631266323,65.35525170651985],[12.623526235262347,65.35694028378973],[12.583925839258399,65.35862886105963],[12.547925479254786,65.36369459286925],[12.537125371253723,65.37213747921868],[12.533525335253358,65.39240040645728],[12.52632526325263,65.40590902461634],[12.515525155251567,65.41772906550551],[12.490324903249046,65.43292626093447],[12.479524795247954,65.44643487909352],[12.52632526325263,65.44812345636339],[12.547925479254786,65.44643487909352],[12.565925659256607,65.43968057001399],[12.56952569525697,65.43461483820434],[12.56952569525697,65.42954910639469],[12.56952569525697,65.42279479731516],[12.573125731257306,65.41941764277539],[12.583925839258399,65.41772906550551],[12.591125911259127,65.42954910639469],[12.60192601926019,65.43292626093447],[12.630726307263075,65.42110622004529],[12.681126811268115,65.38058036556808],[12.713527135271363,65.3704489019488],[12.641526415264167,65.41604048823564],[12.630726307263075,65.43292626093447],[12.648726487264867,65.4498120336333],[12.781927819278195,65.45994349725257],[12.742327423274247,65.468386383602],[12.609126091260919,65.45994349725257],[12.609126091260919,65.46669780633212],[12.61992619926201,65.47007496087187],[12.645126451264531,65.4785178472213],[12.655926559265595,65.48020642449117],[12.634326343263439,65.48864931084057],[12.598325983259826,65.48864931084057],[12.57672576725767,65.49878077445987],[12.565925659256607,65.51397796988883],[12.573125731257306,65.51904370169848],[12.59472594725949,65.52242085623823],[12.616326163261647,65.52917516531778],[12.59472594725949,65.5342408971274],[12.580325803258035,65.54943809255636],[12.573125731257306,65.56970101979496],[12.573125731257306,65.58996394703354],[12.55152551525515,65.56801244252506],[12.537125371253723,65.5342408971274],[12.511925119251202,65.51228939261895],[12.465124651246526,65.52242085623823],[12.486724867248682,65.53761805166718],[12.508325083250838,65.54943809255636],[12.52632526325263,65.56125813344553],[12.533525335253358,65.58320963795401],[12.508325083250838,65.57307817433471],[12.465124651246526,65.53761805166718],[12.439924399244006,65.52917516531778],[12.403924039240394,65.5342408971274],[12.396723967239666,65.55112666982623],[12.403924039240394,65.57476675160461],[12.41832418324185,65.59671825611306],[12.396723967239666,65.59671825611306],[12.382323823238238,65.59165252430344],[12.36792367923681,65.59334110157332],[12.353523535235354,65.60347256519262],[12.357123571235718,65.60853829700227],[12.360723607236082,65.61698118335167],[12.357123571235718,65.62880122424085],[12.34992349923499,65.63893268786015],[12.364323643236446,65.6524413060192],[12.396723967239666,65.67101565598793],[12.414724147241486,65.6828356968771],[12.429124291242914,65.69972146957593],[12.439924399244006,65.70647577865546],[12.447124471244706,65.70985293319521],[12.465124651246526,65.71660724227476],[12.47592475924759,65.72336155135429],[12.49392493924941,65.73349301497359],[12.52632526325263,65.73518159224346],[12.555125551255514,65.73011586043381],[12.573125731257306,65.71998439681451],[12.580325803258035,65.71323008773498],[12.583925839258399,65.70647577865546],[12.587525875258763,65.69972146957593],[12.587525875258763,65.68959000595663],[12.59472594725949,65.68621285141685],[12.637926379263803,65.68621285141685],[12.62712627126271,65.6811471196072],[12.616326163261647,65.6727042332578],[12.609126091260919,65.6625727696385],[12.609126091260919,65.65075272874932],[12.616326163261647,65.6524413060192],[12.655926559265595,65.63893268786015],[12.691926919269207,65.6439984196698],[12.713527135271363,65.6439984196698],[12.742327423274247,65.63048980151072],[12.756727567275675,65.63048980151072],[12.774727747277467,65.6338669560505],[12.78552785527856,65.63893268786015],[12.778327783277831,65.64906415147945],[12.756727567275675,65.65581846055898],[12.738727387273883,65.65750703782885],[12.695526955269571,65.65919561509872],[12.684726847268479,65.66088419236863],[12.673926739267387,65.66763850144815],[12.663126631266323,65.67945854233733],[12.659526595265959,65.68959000595663],[12.655926559265595,65.70141004684581],[12.648726487264867,65.70985293319521],[12.623526235262347,65.71491866500486],[12.587525875258763,65.72842728316394],[12.573125731257306,65.73349301497359],[12.558725587255879,65.75375594221217],[12.565925659256607,65.76726456037122],[12.616326163261647,65.7892160648797],[12.634326343263439,65.80272468303878],[12.645126451264531,65.80779041484843],[12.659526595265959,65.8094789921183],[12.673926739267387,65.80610183757852],[12.684726847268479,65.79765895122912],[12.699126991269907,65.7909046421496],[12.717127171271727,65.7892160648797],[12.706327063270635,65.80272468303878],[12.709927099270999,65.82636476481713],[12.691926919269207,65.83480765116653],[12.666726667266687,65.83480765116653],[12.62712627126271,65.828053342087],[12.616326163261647,65.828053342087],[12.612726127261283,65.83480765116653],[12.616326163261647,65.85000484659548],[12.61992619926201,65.85507057840513],[12.630726307263075,65.86013631021478],[12.637926379263803,65.86351346475453],[12.637926379263803,65.87195635110396],[12.641526415264167,65.88546496926301],[12.641526415264167,65.89221927834254],[12.659526595265959,65.91248220558114],[12.681126811268115,65.9259908237402],[12.789127891278923,65.9648281009475],[12.817928179281807,65.96820525548728],[12.846728467284692,65.9665166782174],[12.918729187291888,65.95300806005832],[12.929529295292951,65.9462537509788],[12.951129511295107,65.93105655554984],[12.965529655296564,65.9259908237402],[12.98712987129872,65.9259908237402],[13.023130231302332,65.92936797827997],[13.041130411304124,65.9259908237402],[13.048330483304852,65.91923651466067],[13.059130591305916,65.90572789650162],[13.069930699307008,65.89897358742209],[13.077130771307708,65.89559643288231],[13.095130951309528,65.89390785561244],[13.102331023310228,65.89221927834254],[13.109531095310956,65.89053070107266],[13.11313113131132,65.89221927834254],[13.120331203312048,65.89221927834254],[13.123931239312412,65.88884212380279],[13.123931239312412,65.87871066018349],[13.156331563315632,65.85000484659548],[13.174331743317452,65.85507057840513],[13.167131671316724,65.87195635110396],[13.152731527315268,65.89221927834254],[13.149131491314932,65.91248220558114],[13.134731347313476,65.92430224647032],[13.127531275312748,65.93274513281975],[13.123931239312412,65.94287659643902],[13.11313113131132,65.9462537509788],[13.048330483304852,65.9462537509788],[12.979929799297992,65.95976236913785],[12.943929439294408,65.97327098729693],[12.925929259292587,65.9935339145355],[12.943929439294408,66.00028822361503],[12.9619296192962,66.01041968723433],[12.969129691296928,66.02223972812351],[12.951129511295107,66.03574834628259],[12.969129691296928,66.05263411898142],[13.023130231302332,66.06783131441034],[13.041130411304124,66.0830285098393],[13.001530015300148,66.0830285098393],[12.925929259292587,66.06107700533082],[12.713527135271363,66.04250265536211],[12.717127171271727,66.04756838717176],[12.717127171271727,66.05094554171151],[12.720727207272091,66.05263411898142],[12.724327243272427,66.05601127352116],[12.713527135271363,66.06107700533082],[12.699126991269907,66.06276558260069],[12.670326703267051,66.06276558260069],[12.688326883268843,66.0745856234899],[12.753127531275311,66.10498001434777],[12.774727747277467,66.1117343234273],[12.807128071280715,66.11511147796708],[12.868328683286848,66.13368582793578],[13.048330483304852,66.15226017790448],[13.077130771307708,66.14550586882496],[13.0879308793088,66.14550586882496],[13.095130951309528,66.15563733244426],[13.102331023310228,66.16239164152378],[13.156331563315632,66.16914595060331],[13.174331743317452,66.17590025968283],[13.224732247322493,66.18603172330214],[13.307533075330753,66.21811469142992],[13.527135271352734,66.2400661959384],[13.563135631356317,66.23500046412875],[13.577535775357774,66.21811469142992],[13.55593555935559,66.20460607327084],[13.52353523535237,66.19616318692144],[13.491134911349121,66.19278603238166],[13.491134911349121,66.18603172330214],[13.58113581135811,66.18603172330214],[13.570335703357046,66.17252310514309],[13.545135451354525,66.15226017790448],[13.534335343353433,66.13875155974543],[13.53073530735307,66.12017720977673],[13.534335343353433,66.11004574615743],[13.54873548735489,66.10835716888752],[13.563135631356317,66.1117343234273],[13.57393573935741,66.11848863250682],[13.59913599135993,66.14381729155508],[13.617136171361722,66.15226017790448],[13.638736387363878,66.15732590971413],[13.710737107371074,66.159014486984],[13.746737467374686,66.16576879606356],[13.761137611376114,66.16576879606356],[13.771937719377206,66.16239164152378],[13.789937899378998,66.15563733244426],[13.822338223382246,66.14719444609483],[13.829538295382974,66.14888302336473],[13.83313833138331,66.159014486984],[13.83313833138331,66.16914595060331],[13.822338223382246,66.17252310514309],[13.77553775537757,66.17590025968283],[13.703537035370374,66.17252310514309],[13.609936099360993,66.18603172330214],[13.642336423364242,66.21980326869979],[13.696336963369646,66.2383776186685],[13.75753757537575,66.24175477320827],[13.80793807938079,66.23500046412875],[13.80073800738009,66.22318042323957],[13.771937719377206,66.20967180508049],[13.761137611376114,66.19954034146119],[13.789937899378998,66.20122891873109],[13.836738367383674,66.22149184596967],[13.973539735397367,66.2383776186685],[13.987939879398795,66.24175477320827],[13.995139951399523,66.25019765955767],[14.00234002340025,66.26032912317697],[14.00954009540095,66.27046058679628],[14.03474034740347,66.2772148958758],[14.052740527405291,66.2873463594951],[14.08514085140851,66.29241209130475],[14.113941139411395,66.30254355492406],[14.135541355413551,66.31605217308311],[14.142741427414279,66.33462652305181],[14.131941319413187,66.34306940940124],[14.099540995409967,66.33631510032171],[14.049140491404927,66.31605217308311],[13.962739627396274,66.30423213219393],[13.937539375393754,66.2957892458445],[13.915939159391598,66.27214916406615],[13.90873908739087,66.2687720095264],[13.804338043380454,66.2772148958758],[13.779137791377934,66.28228062768545],[13.764737647376478,66.29410066857463],[13.753937539375414,66.2957892458445],[13.739537395373958,66.28903493676498],[13.739537395373958,66.2772148958758],[13.72513725137253,66.26370627771675],[13.69993699937001,66.25357481409745],[13.620736207362086,66.24175477320827],[13.591935919359202,66.24344335047815],[13.57393573935741,66.26201770044685],[13.62433624336245,66.27552631860593],[13.613536135361358,66.28059205041558],[13.59913599135993,66.28565778222523],[13.588335883358837,66.28903493676498],[13.57393573935741,66.28903493676498],[13.563135631356317,66.28565778222523],[13.501935019350213,66.2586405459071],[13.465934659346601,66.25526339136732],[13.415534155341561,66.24344335047815],[13.325533255332573,66.24513192774805],[13.285932859328597,66.24175477320827],[13.203132031320308,66.20460607327084],[13.069930699307008,66.17421168241296],[13.041130411304124,66.17927741422261],[13.030330303303032,66.19785176419131],[13.055530555305552,66.21136038235039],[13.0879308793088,66.22149184596967],[13.11313113131132,66.23162330958897],[13.134731347313476,66.24682050501792],[13.16353163531636,66.2586405459071],[13.321933219332209,66.30085497765415],[13.494734947349485,66.29916640038428],[13.534335343353433,66.30929786400358],[13.505535055350549,66.31942932762288],[13.404734047340469,66.31605217308311],[13.411934119341197,66.32787221397228],[13.42273422734229,66.33293794578194],[13.451534515345173,66.33800367759159],[13.433534335343353,66.34306940940124],[13.415534155341561,66.34306940940124],[13.379533795337949,66.33800367759159],[13.36513365133652,66.33800367759159],[13.357933579335793,66.34138083213134],[13.350733507335093,66.34813514121089],[13.343533435334365,66.35657802756029],[13.321933219332209,66.37008664571934],[13.311133111331117,66.37515237752899],[13.307533075330753,66.36839806844947],[13.31473314733148,66.34982371848076],[13.329133291332909,66.33631510032171],[13.336333363333637,66.32787221397228],[13.332733327333273,66.32280648216263],[13.318333183331845,66.32111790489276],[13.228332283322828,66.2974778231144],[13.210332103321036,66.2957892458445],[13.156331563315632,66.30423213219393],[13.13833138331384,66.30254355492406],[13.145531455314568,66.30929786400358],[13.156331563315632,66.31774075035298],[13.159931599315996,66.32618363670241],[13.149131491314932,66.32956079124216],[13.134731347313476,66.32956079124216],[13.095130951309528,66.31605217308311],[13.06273062730628,66.31436359581323],[13.03753037530376,66.31942932762288],[13.015930159301604,66.33462652305181],[13.001530015300148,66.35657802756029],[13.141931419314204,66.38697241841817],[13.170731707317088,66.41230107746642],[13.167131671316724,66.4156782320062],[13.159931599315996,66.42243254108573],[13.159931599315996,66.42918685016525],[13.156331563315632,66.43594115924478],[13.149131491314932,66.4443840455942],[13.102331023310228,66.45451550921348],[13.116731167311684,66.45958124102313],[13.131131311313112,66.46126981829303],[13.16353163531636,66.45958124102313],[13.16353163531636,66.46633555010266],[13.149131491314932,66.46971270464243],[13.116731167311684,66.4714012819123],[13.102331023310228,66.47477843645208],[13.091530915309164,66.48153274553161],[13.0879308793088,66.48997563188104],[13.080730807308072,66.49841851823044],[13.069930699307008,66.50179567277021],[13.041130411304124,66.50179567277021],[13.015930159301604,66.50517282730996],[12.994329943299448,66.51192713638949],[12.972729727297292,66.52205860000879],[13.102331023310228,66.5423215272474],[13.11313113131132,66.54063294997749],[13.134731347313476,66.53050148635822],[13.185131851318516,66.52205860000879],[13.210332103321036,66.51361571365939],[13.217532175321764,66.50517282730996],[13.221132211322129,66.48997563188104],[13.228332283322828,66.47815559099183],[13.231932319323192,66.46802412737256],[13.224732247322493,66.45958124102313],[13.224732247322493,66.45451550921348],[13.361533615336157,66.45620408648338],[13.397533975339769,66.46633555010266],[13.28953289532896,66.45958124102313],[13.267932679326805,66.46633555010266],[13.271532715327169,66.48322132280148],[13.285932859328597,66.49841851823044],[13.28953289532896,66.51023855911961],[13.260732607326077,66.51530429092927],[13.260732607326077,66.52205860000879],[13.285932859328597,66.5237471772787],[13.329133291332909,66.53894437270762],[13.354333543335429,66.5423215272474],[13.440734407344081,66.54063294997749],[13.465934659346601,66.54569868178714],[13.491134911349121,66.5507644135968],[13.516335163351641,66.54401010451727],[13.570335703357046,66.52881290908832],[13.620736207362086,66.51868144546904],[13.671136711367126,66.51530429092927],[13.64953649536497,66.53050148635822],[13.62433624336245,66.53894437270762],[13.480334803348029,66.55583014540645],[13.458734587345873,66.56427303175587],[13.505535055350549,66.58453595899445],[13.602736027360294,66.60648746350293],[13.72513725137253,66.60479888623306],[13.689136891368918,66.61661892712223],[13.501935019350213,66.60648746350293],[13.47313473134733,66.59804457715353],[13.42273422734229,66.56258445448597],[13.397533975339769,66.55751872267632],[13.336333363333637,66.55583014540645],[13.271532715327169,66.54738725905705],[13.23913239132392,66.54907583632692],[13.203132031320308,66.55583014540645],[13.210332103321036,66.57440449537515],[13.217532175321764,66.58284738172458],[13.246332463324649,66.59804457715353],[13.23913239132392,66.60142173169328],[13.231932319323192,66.60479888623306],[13.249932499325013,66.61324177258246],[13.28953289532896,66.61661892712223],[13.332733327333273,66.62675039074153],[13.383133831338313,66.6183075043921],[13.404734047340469,66.62506181347163],[13.372333723337249,66.63350469982106],[13.249932499325013,66.63350469982106],[13.170731707317088,66.65207904978976],[13.192331923319244,66.66727624521872],[13.2139321393214,66.66221051340906],[13.235532355323556,66.65376762705964],[13.260732607326077,66.65545620432954],[13.282332823328233,66.66052193613919],[13.307533075330753,66.65714478159941],[13.329133291332909,66.65039047251989],[13.347133471334729,66.64532474071024],[13.375933759337613,66.64870189524999],[13.426334263342653,66.65883335886929],[13.451534515345173,66.65883335886929],[13.519935199352005,66.64025900890059],[13.54873548735489,66.63857043163071],[13.52353523535237,66.66052193613919],[13.480334803348029,66.67571913156812],[13.267932679326805,66.70104779061637],[13.224732247322493,66.71455640877542],[13.257132571325712,66.72468787239472],[13.494734947349485,66.71455640877542],[13.501935019350213,66.71117925423565],[13.516335163351641,66.69598205880672],[13.527135271352734,66.69429348153685],[13.692736927369282,66.69091632699707],[13.717937179371802,66.70104779061637],[13.69993699937001,66.7078020996959],[13.69993699937001,66.71455640877542],[13.80073800738009,66.71117925423565],[13.85113851138513,66.7179335633152],[13.890738907389078,66.73481933601403],[13.710737107371074,66.73481933601403],[13.678336783367854,66.73144218147425],[13.609936099360993,66.71455640877542],[13.57393573935741,66.71455640877542],[13.54873548735489,66.72468787239472],[13.541535415354161,66.73988506782368],[13.559535595355953,66.75339368598273],[13.588335883358837,66.76183657233213],[13.717937179371802,66.75001653144295],[13.753937539375414,66.76183657233213],[13.721537215372166,66.77027945868156],[13.563135631356317,66.77703376776108],[13.552335523355254,66.77196803595143],[13.541535415354161,66.77196803595143],[13.505535055350549,66.78209949957073],[13.541535415354161,66.80405100407921],[13.613536135361358,66.80911673588886],[13.685536855368554,66.80742815861896],[13.768337683376842,66.79223096319004],[13.991539915399159,66.79054238592013],[13.948339483394847,66.80067384953944],[13.80073800738009,66.80911673588886],[13.786337863378634,66.81418246769852],[13.75753757537575,66.83275681766722],[13.739537395373958,66.83782254947687],[13.703537035370374,66.83275681766722],[13.689136891368918,66.83444539493709],[13.678336783367854,66.85133116763592],[13.685536855368554,66.85133116763592],[13.692736927369282,66.85639689944557],[13.69993699937001,66.85808547671544],[13.685536855368554,66.86146263125522],[13.65673656736567,66.8631512085251],[13.642336423364242,66.86821694033475],[13.638736387363878,66.87497124941427],[13.635136351363514,66.8918570221131],[13.63153631536315,66.90029990846253],[13.60633606336063,66.90705421754205],[13.54873548735489,66.90029990846253],[13.519935199352005,66.90536564027218],[13.545135451354525,66.92225141297101],[13.566735667356681,66.93238287659028],[13.588335883358837,66.93744860839993],[13.743137431374322,66.93744860839993],[13.779137791377934,66.94589149474936],[13.771937719377206,66.95095722655901],[13.768337683376842,66.95602295836866],[13.761137611376114,66.96784299925784],[13.840338403384038,66.96446584471806],[13.861938619386194,66.96784299925784],[13.869138691386922,66.97122015379759],[13.88353883538835,66.98304019468677],[13.890738907389078,66.98810592649642],[13.90153901539017,66.9914830810362],[13.912339123391234,66.99317165830607],[13.937539375393754,66.99486023557594],[13.973539735397367,66.99486023557594],[13.95913959139591,66.97459730833737],[13.937539375393754,66.96615442198794],[13.912339123391234,66.96277726744819],[13.890738907389078,66.95433438109876],[13.915939159391598,66.92900572205053],[13.93393933939339,66.92225141297101],[13.95913959139591,66.92731714478063],[13.95193951939521,66.92731714478063],[13.930339303393055,66.93238287659028],[13.980739807398095,66.95433438109876],[13.980739807398095,66.95602295836866],[13.98433984339843,66.96108869017829],[13.98433984339843,66.96615442198794],[13.991539915399159,66.96784299925784],[14.020340203402043,66.96615442198794],[14.027540275402771,66.96784299925784],[14.045540455404563,66.98135161741689],[14.041940419404199,66.99486023557594],[14.031140311403135,67.0100574310049],[14.013140131401315,67.02187747189407],[14.023940239402407,67.0303203582435],[14.031140311403135,67.0488947082122],[14.041940419404199,67.05564901729173],[14.05994059940599,67.06071474910138],[14.070740707407083,67.05396044002185],[14.077940779407811,67.04214039913268],[14.08514085140851,67.03707466732303],[14.08514085140851,67.0303203582435],[14.099540995409967,67.00330312192537],[14.11034110341103,66.9914830810362],[14.149941499415007,66.97122015379759],[14.164341643416435,66.97966304014702],[14.178741787417891,66.97966304014702],[14.189541895418955,66.97628588560724],[14.200342003420047,66.97797446287711],[14.211142111421111,66.97966304014702],[14.221942219422203,66.98135161741689],[14.225542255422567,66.98304019468677],[14.225542255422567,66.99317165830607],[14.229142291422932,66.99486023557594],[14.250742507425088,67.00330312192537],[14.26874268742688,67.02356604916395],[14.272342723427244,67.04382897640255],[14.247142471424723,67.05058328548208],[14.272342723427244,67.06071474910138],[14.419944199442,67.06409190364116],[14.437944379443792,67.06071474910138],[14.473944739447404,67.04551755367243],[14.491944919449196,67.04214039913268],[14.527945279452808,67.0488947082122],[14.5459454594546,67.04551755367243],[14.556745567455692,67.0286317809736],[14.553145531455328,67.01850031735432],[14.567545675456756,67.01850031735432],[14.589145891458912,67.02694320370372],[14.59634596345964,67.04214039913268],[14.581945819458213,67.0590261718315],[14.553145531455328,67.06409190364116],[14.49554495544956,67.06409190364116],[14.376743767437688,67.0776005218002],[14.290342903429035,67.07591194453033],[14.26874268742688,67.08435483087973],[14.286742867428671,67.08942056268938],[14.304743047430492,67.10124060357856],[14.31914319143192,67.11306064446774],[14.337143371433712,67.12488068535691],[14.322743227432284,67.13670072624609],[14.326343263432648,67.14683218986539],[14.34434344343444,67.15527507621482],[14.362343623436232,67.16034080802444],[14.452344523445248,67.1654065398341],[14.441544415444156,67.15865223075457],[14.427144271442728,67.14514361259552],[14.416344163441636,67.12994641716656],[14.412744127441272,67.11812637627739],[14.423544235442364,67.10968348992799],[14.441544415444156,67.11474922173761],[14.459544595445948,67.12825783989669],[14.473944739447404,67.13838930351599],[14.466744667446676,67.14176645805574],[14.463144631446312,67.14514361259552],[14.463144631446312,67.14852076713527],[14.459544595445948,67.15358649894492],[14.675546755467565,67.16034080802444],[14.707947079470813,67.15020934440517],[14.733147331473333,67.12488068535691],[14.743947439474397,67.11812637627739],[14.751147511475125,67.12319210808704],[14.751147511475125,67.13501214897622],[14.74754747547476,67.14514361259552],[14.736747367473669,67.15527507621482],[14.72234722347224,67.16202938529435],[14.650346503465045,67.17722658072327],[14.513545135451352,67.18060373526305],[14.535145351453508,67.19073519888235],[14.57114571145712,67.19917808523175],[14.603546035460369,67.2042438170414],[14.628746287462889,67.19748950796188],[14.650346503465045,67.1856694670727],[14.679146791467929,67.18735804434257],[14.704347043470449,67.195800930692],[14.743947439474397,67.20255523977153],[14.765547655476553,67.21268670339083],[14.779947799478009,67.2143752806607],[14.884348843488453,67.20593239431128],[14.977949779497806,67.2143752806607],[14.977949779497806,67.20762097158118],[14.93834938349383,67.2042438170414],[14.923949239492401,67.20086666250165],[14.93114931149313,67.18060373526305],[14.920349203492037,67.17216084891365],[14.902349023490245,67.1654065398341],[14.891548915489153,67.15358649894492],[14.898748987489881,67.14176645805574],[14.941949419494193,67.12319210808704],[14.974349743497442,67.10461775811834],[14.992349923499233,67.09955202630869],[15.00675006750069,67.10292918084843],[15.003150031500326,67.11474922173761],[14.985149851498534,67.12825783989669],[14.949149491494921,67.14176645805574],[14.93114931149313,67.15358649894492],[14.945549455494557,67.1569636534847],[15.00675006750069,67.19748950796188],[15.021150211502118,67.2042438170414],[15.075150751507522,67.21268670339083],[15.093150931509314,67.21268670339083],[15.129151291512926,67.195800930692],[15.150751507515082,67.19242377615222],[15.219152191521914,67.19242377615222],[15.24075240752407,67.18735804434257],[15.280352803528046,67.17384942618352],[15.301953019530202,67.16878369437387],[15.355953559535607,67.1654065398341],[15.38475384753849,67.1569636534847],[15.395553955539555,67.14176645805574],[15.39195391953919,67.12150353081717],[15.377553775537763,67.09786344903878],[15.402754027540283,67.08435483087973],[15.435154351543531,67.07591194453033],[15.46755467554675,67.07084621272068],[15.499954999549999,67.07084621272068],[15.49275492754927,67.08097767633998],[15.453154531545323,67.08942056268938],[15.438754387543895,67.09786344903878],[15.44235442354423,67.10799491265809],[15.438754387543895,67.11812637627739],[15.471154711547115,67.14345503532562],[15.481954819548207,67.15358649894492],[15.471154711547115,67.15358649894492],[15.456754567545687,67.17216084891365],[15.399153991539919,67.18735804434257],[15.377553775537763,67.20086666250165],[15.409954099541011,67.21268670339083],[15.456754567545687,67.2143752806607],[15.715957159571616,67.17384942618352],[15.741157411574136,67.17384942618352],[15.733957339573408,67.18735804434257],[15.719557195571952,67.1941123534221],[15.705157051570524,67.19748950796188],[15.694356943569431,67.20762097158118],[15.705157051570524,67.2143752806607],[15.607956079560807,67.20255523977153],[15.55035550355504,67.21944101247036],[15.406354063540647,67.23632678516918],[15.38475384753849,67.23463820789931],[15.355953559535607,67.22788389881975],[15.312753127531295,67.20930954885105],[15.287552875528775,67.20593239431128],[15.262352623526255,67.2143752806607],[15.28395283952841,67.22112958974023],[15.30915309153093,67.22112958974023],[15.330753307533087,67.22619532154988],[15.34155341553415,67.24139251697883],[15.28395283952841,67.24645824878849],[15.269552695526954,67.24476967151858],[15.255152551525526,67.23970393970893],[15.24075240752407,67.23632678516918],[15.211952119521214,67.23463820789931],[15.060750607506094,67.24814682605836],[15.078750787507886,67.25996686694754],[15.096750967509678,67.26334402148731],[15.118351183511834,67.26503259875719],[15.136351363513654,67.27009833056684],[15.147151471514718,67.27854121691624],[15.16515165151651,67.31062418504402],[15.136351363513654,67.31062418504402],[15.053550535505366,67.29542698961507],[15.028350283502846,67.29373841234519],[15.01395013950139,67.29204983507532],[15.00675006750069,67.28698410326567],[15.003150031500326,67.27854121691624],[14.999549995499962,67.27347548510659],[14.98874988749887,67.27009833056684],[14.98154981549817,67.27009833056684],[14.909549095490974,67.27516406237649],[14.776347763477645,67.27009833056684],[14.790747907479073,67.26334402148731],[14.819548195481957,67.26165544421741],[14.833948339483413,67.25490113513789],[14.812348123481229,67.24476967151858],[14.675546755467565,67.21606385793058],[14.617946179461796,67.2143752806607],[14.6719467194672,67.2329496306294],[14.693546935469357,67.24814682605836],[14.693546935469357,67.27009833056684],[14.700747007470085,67.27516406237649],[14.682746827468293,67.27854121691624],[14.661146611466108,67.27516406237649],[14.625146251462525,67.26165544421741],[14.574745747457484,67.25152398059811],[14.409144091440908,67.24814682605836],[14.391143911439116,67.24476967151858],[14.36954369543696,67.23801536243906],[14.347943479434804,67.23463820789931],[14.329943299433012,67.24139251697883],[14.391143911439116,67.25996686694754],[14.412744127441272,67.27009833056684],[14.405544055440572,67.27854121691624],[14.416344163441636,67.28529552599576],[14.452344523445248,67.29542698961507],[14.491944919449196,67.3224442259332],[14.599945999460004,67.37816727583933],[14.610746107461068,67.38829873945863],[14.603546035460369,67.39336447126826],[14.574745747457484,67.39167589399838],[14.574745747457484,67.39843020307791],[14.585545855458548,67.39843020307791],[14.59634596345964,67.40011878034781],[14.617946179461796,67.40687308942734],[14.62154621546216,67.42038170758639],[14.653946539465409,67.42713601666591],[14.743947439474397,67.42038170758639],[14.772747727477281,67.42375886212616],[14.801548015480165,67.42207028485626],[14.823148231482321,67.40687308942734],[14.815948159481593,67.40349593488756],[14.808748087480893,67.39843020307791],[14.794347943479437,67.38492158491886],[14.823148231482321,67.37816727583933],[14.85554855548557,67.38829873945863],[14.884348843488453,67.40518451215746],[14.91314913149131,67.41362739850686],[14.945549455494557,67.41531597577674],[14.98154981549817,67.42375886212616],[15.049950499505002,67.44739894390452],[14.93834938349383,67.44064463482499],[14.823148231482321,67.44739894390452],[14.826748267482685,67.4507760984443],[14.841148411484113,67.46090756206357],[14.823148231482321,67.46597329387322],[14.783547835478373,67.46259613933347],[14.769147691476917,67.46766187114312],[14.779947799478009,67.47441618022265],[14.769147691476917,67.48117048930217],[14.754747547475489,67.48454764384192],[14.740347403474033,67.4879247983817],[14.725947259472605,67.4879247983817],[14.740347403474033,67.50143341654075],[14.765547655476553,67.51494203469983],[14.794347943479437,67.52507349831913],[14.98874988749887,67.57066508460596],[15.05715057150573,67.57741939368549],[15.08235082350825,67.57404223914571],[15.11475114751147,67.56391077552641],[15.143551435514354,67.55040215736736],[15.15795157951581,67.5352049619384],[15.147151471514718,67.53182780739866],[15.13275132751329,67.53013923012875],[15.10755107551077,67.53013923012875],[15.096750967509678,67.53182780739866],[15.078750787507886,67.54195927101796],[15.049950499505002,67.54871358009748],[15.028350283502846,67.56053362098666],[15.00675006750069,67.56391077552641],[14.985149851498534,67.54871358009748],[15.00675006750069,67.54027069374806],[15.035550355503574,67.51831918923958],[15.053550535505366,67.5166306119697],[15.010350103501054,67.48623622111182],[14.884348843488453,67.48623622111182],[14.83034830348305,67.47441618022265],[14.85554855548557,67.469350448413],[14.98874988749887,67.46597329387322],[15.017550175501754,67.469350448413],[15.03915039150391,67.4777933347624],[15.05715057150573,67.4879247983817],[15.078750787507886,67.49636768473113],[15.103951039510406,67.50143341654075],[15.125551255512562,67.50143341654075],[15.143551435514354,67.5064991483504],[15.15795157951581,67.51494203469983],[15.175951759517602,67.52169634377935],[15.193951939519394,67.5166306119697],[15.186751867518694,67.5081877256203],[15.19035190351903,67.50143341654075],[15.201152011520122,67.49636768473113],[15.211952119521214,67.49467910746122],[15.211952119521214,67.4879247983817],[15.197551975519758,67.48454764384192],[15.18315183151833,67.48117048930217],[15.150751507515082,67.48117048930217],[15.150751507515082,67.47441618022265],[15.15795157951581,67.47441618022265],[15.172351723517238,67.46766187114312],[15.16515165151651,67.45584183025392],[15.154351543515446,67.44571036663464],[15.143551435514354,67.43726748028521],[15.136351363513654,67.42038170758639],[15.154351543515446,67.42375886212616],[15.19035190351903,67.44233321209487],[15.20835208352085,67.44739894390452],[15.21555215552155,67.44908752117439],[15.222752227522278,67.45584183025392],[15.226352263522642,67.46428471660334],[15.226352263522642,67.47103902568287],[15.229952299523006,67.47610475749252],[15.24075240752407,67.4794819120323],[15.370353703537035,67.4879247983817],[15.427954279542803,67.48285906657205],[15.471154711547115,67.46090756206357],[15.478354783547843,67.45246467571417],[15.49275492754927,67.43220174847556],[15.543155431554311,67.3798558531092],[15.543155431554311,67.37310154402968],[15.546755467554675,67.35790434860073],[15.55035550355504,67.3511500395212],[15.55035550355504,67.34946146225133],[15.57555575555756,67.3308871122826],[15.607956079560807,67.31568991685367],[15.643956439564391,67.3038698759645],[15.643956439564391,67.29542698961507],[15.604356043560443,67.29036125780542],[15.604356043560443,67.28022979418614],[15.6259562595626,67.27178690783671],[15.658356583565848,67.27516406237649],[15.70155701557016,67.3038698759645],[15.690756907569096,67.3123127623139],[15.636756367563692,67.32413280320307],[15.622356223562235,67.33426426682237],[15.618756187561871,67.33932999863202],[15.618756187561871,67.34608430771155],[15.618756187561871,67.35790434860073],[15.60075600756008,67.37647869856943],[15.597155971559715,67.38323300764898],[15.586355863558651,67.39505304853816],[15.561155611556131,67.41025024396708],[15.514355143551455,67.42713601666591],[15.528755287552883,67.43895605755509],[15.564755647556495,67.4507760984443],[15.582755827558287,67.46090756206357],[15.553955539555403,67.46090756206357],[15.539555395553975,67.46259613933347],[15.528755287552883,67.46766187114312],[15.557555575555767,67.49299053019135],[15.597155971559715,67.50987630289018],[15.787957879578812,67.55040215736736],[15.899558995589956,67.55715646644688],[15.867158671586736,67.57404223914571],[15.669156691566911,67.55209073463723],[15.557555575555767,67.5166306119697],[15.499954999549999,67.50987630289018],[15.26595265952659,67.52507349831913],[15.24075240752407,67.52845065285888],[15.226352263522642,67.54027069374806],[15.229952299523006,67.55884504371679],[15.23355233552337,67.56728793006619],[15.262352623526255,67.57741939368549],[15.255152551525526,67.57910797095536],[15.24075240752407,67.58417370276501],[15.276752767527682,67.59430516638432],[15.30915309153093,67.59430516638432],[15.377553775537763,67.58417370276501],[15.409954099541011,67.58417370276501],[15.424354243542439,67.57910797095536],[15.435154351543531,67.56053362098666],[15.445954459544595,67.56222219825653],[15.456754567545687,67.56897650733606],[15.46755467554675,67.57741939368549],[15.41715417154171,67.60443663000362],[15.424354243542439,67.6061252072735],[15.438754387543895,67.61287951635302],[15.424354243542439,67.62301097997232],[15.406354063540647,67.63145386632172],[15.388353883538855,67.63314244359162],[15.370353703537035,67.6246995572422],[15.381153811538127,67.61456809362289],[15.38475384753849,67.61287951635302],[15.35955359553597,67.60443663000362],[15.330753307533087,67.61119093908314],[15.301953019530202,67.62132240270245],[15.273152731527318,67.6246995572422],[15.222752227522278,67.61119093908314],[15.193951939519394,67.60950236181324],[15.179551795517966,67.61794524816267],[15.197551975519758,67.6449624844808],[15.337953379533815,67.68717691622786],[15.305553055530567,67.68717691622786],[15.29115291152911,67.68886549349773],[15.273152731527318,67.69393122530738],[15.29115291152911,67.71419415254599],[15.301953019530202,67.72094846162551],[15.31635316353163,67.72263703889539],[15.330753307533087,67.72094846162551],[15.370353703537035,67.71081699800621],[15.413554135541375,67.68886549349773],[15.543155431554311,67.6736682980688],[15.521555215552155,67.68886549349773],[15.514355143551455,67.69393122530738],[15.658356583565848,67.68042260714833],[15.586355863558651,67.70406268892668],[15.546755467554675,67.71081699800621],[15.485554855548571,67.69899695711703],[15.456754567545687,67.70743984346646],[15.402754027540283,67.73445707978456],[15.402754027540283,67.74121138886412],[15.597155971559715,67.74965427521352],[15.658356583565848,67.73445707978456],[15.798757987579876,67.67873402987846],[15.820358203582032,67.67704545260855],[15.838358383583852,67.69393122530738],[15.820358203582032,67.69393122530738],[15.805958059580604,67.69561980257728],[15.795157951579512,67.7006855343869],[15.780757807578084,67.70743984346646],[15.784357843578448,67.71419415254599],[15.784357843578448,67.72263703889539],[15.787957879578812,67.72770277070504],[15.669156691566911,67.76147431610269],[15.629556295562963,67.76316289337257],[15.640356403564056,67.77498293426177],[15.658356583565848,67.7817372433413],[15.67635676356764,67.78849155242082],[15.694356943569431,67.79693443877022],[15.67635676356764,67.79693443877022],[15.658356583565848,67.79355728423047],[15.611556115561172,67.77667151153165],[15.593555935559351,67.77329435699187],[15.409954099541011,67.79693443877022],[15.420754207542075,67.81382021146905],[15.445954459544595,67.83239456143778],[15.445954459544595,67.84421460232696],[15.431554315543167,67.86110037502579],[15.420754207542075,67.85603464321613],[15.409954099541011,67.84252602505705],[15.402754027540283,67.82395167508835],[15.38475384753849,67.85603464321613],[15.370353703537035,67.86447752956553],[15.355953559535607,67.85096891140648],[15.35955359553597,67.84421460232696],[15.377553775537763,67.81550878873895],[15.38475384753849,67.80368874784978],[15.30915309153093,67.77667151153165],[15.262352623526255,67.75303142975329],[15.222752227522278,67.74289996613399],[15.193951939519394,67.71925988435564],[15.18315183151833,67.71419415254599],[15.161551615516174,67.71250557527611],[15.03915039150391,67.67704545260855],[14.952749527495286,67.6635368344495],[14.934749347493494,67.65678252536998],[14.916749167491673,67.65171679356033],[14.837548375483749,67.6432739072109],[14.808748087480893,67.64833963902055],[14.751147511475125,67.64833963902055],[14.725947259472605,67.66015967990973],[14.877148771487725,67.7006855343869],[14.877148771487725,67.70743984346646],[14.779947799478009,67.71419415254599],[14.794347943479437,67.72939134797494],[14.812348123481229,67.72939134797494],[14.837548375483749,67.72432561616529],[14.85554855548557,67.72432561616529],[14.877148771487725,67.73107992524481],[15.118351183511834,67.74121138886412],[15.085950859508614,67.74796569794364],[15.049950499505002,67.74458854340386],[15.01395013950139,67.74627712067377],[14.992349923499233,67.76991720245212],[15.01395013950139,67.77498293426177],[15.035550355503574,67.78342582061117],[14.877148771487725,67.77329435699187],[14.83034830348305,67.76316289337257],[14.841148411484113,67.76654004791234],[14.844748447484477,67.76991720245212],[14.841148411484113,67.77329435699187],[14.83034830348305,67.77667151153165],[14.83034830348305,67.7918687069606],[14.819548195481957,67.79693443877022],[14.801548015480165,67.79355728423047],[14.787147871478709,67.78342582061117],[14.779947799478009,67.78511439788105],[14.769147691476917,67.7901801296907],[14.761947619476189,67.79693443877022],[14.754747547475489,67.80368874784978],[14.772747727477281,67.81550878873895],[14.790747907479073,67.82226309781848],[14.808748087480893,67.82564025235823],[14.873548735487361,67.82226309781848],[14.959949599496014,67.83746029324743],[15.06435064350643,67.8391488705173],[15.103951039510406,67.85096891140648],[15.075150751507522,67.86110037502579],[14.848348483484841,67.84421460232696],[14.848348483484841,67.85096891140648],[14.859148591485933,67.85096891140648],[14.866348663486633,67.85265748867636],[14.884348843488453,67.85772322048601],[14.898748987489881,67.87292041591496],[14.945549455494557,67.88642903407401],[14.999549995499962,67.89487192042344],[15.035550355503574,67.89487192042344],[15.085950859508614,67.88811761134389],[15.19035190351903,67.88642903407401],[15.23355233552337,67.87292041591496],[15.21555215552155,67.86785468410531],[15.201152011520122,67.85941179775588],[15.193951939519394,67.8475917568667],[15.197551975519758,67.83070598416788],[15.301953019530202,67.88980618861379],[15.337953379533815,67.89993765223309],[15.337953379533815,67.89149476588366],[15.35955359553597,67.89149476588366],[15.481954819548207,67.9185120022018],[15.535955359553611,67.92020057947167],[15.543155431554311,67.91682342493192],[15.517955179551791,67.88980618861379],[15.510755107551091,67.88305187953426],[15.503555035550363,67.87967472499449],[15.503555035550363,67.87460899318484],[15.507155071550727,67.86616610683544],[15.514355143551455,67.85603464321613],[15.525155251552519,67.85096891140648],[15.532355323553247,67.85265748867636],[15.543155431554311,67.85772322048601],[15.525155251552519,67.86616610683544],[15.525155251552519,67.87798614772461],[15.535955359553611,67.88980618861379],[15.55035550355504,67.89993765223309],[15.564755647556495,67.90669196131262],[15.582755827558287,67.91006911585237],[15.597155971559715,67.91682342493192],[15.604356043560443,67.93033204309097],[15.7519575195752,67.95228354759945],[15.787957879578812,67.95059497032955],[15.820358203582032,67.9370863521705],[15.831158311583124,67.9269548885512],[15.838358383583852,67.91006911585237],[15.841958419584216,67.90162622950297],[15.849158491584916,67.89824907496319],[15.859958599586008,67.89993765223309],[15.863558635586372,67.90331480677284],[15.870758707587072,67.9269548885512],[15.885158851588528,67.93877492944037],[15.931959319593204,67.9573492794091],[15.946359463594632,67.9657921657585],[15.95355953559536,67.97423505210793],[15.967959679596817,67.9944979793465],[15.95355953559536,67.9944979793465],[15.967959679596817,68.00800659750558],[16.000360003600036,68.01307232931521],[16.06156061560617,68.00969517477546],[16.06156061560617,68.01644948385498],[15.899558995589956,68.02320379293451],[15.849158491584916,68.03671241109359],[15.849158491584916,68.04346672017311],[15.888758887588892,68.05866391560204],[15.899558995589956,68.06710680195147],[15.8779587795878,68.07048395649124],[15.863558635586372,68.06710680195147],[15.823958239582396,68.05190960652251],[15.816758167581696,68.04684387471286],[15.787957879578812,68.03502383382369],[15.60075600756008,68.03840098836346],[15.593555935559351,68.04346672017311],[15.586355863558651,68.05190960652251],[15.57555575555756,68.06372964741169],[15.557555575555767,68.073861111031],[15.546755467554675,68.073861111031],[15.532355323553247,68.07048395649124],[15.521555215552155,68.06372964741169],[15.38475384753849,68.02320379293451],[15.39195391953919,68.01138375204533],[15.406354063540647,68.00969517477546],[15.424354243542439,68.01138375204533],[15.438754387543895,68.00969517477546],[15.399153991539919,67.9944979793465],[15.355953559535607,67.99618655661638],[15.31635316353163,68.00969517477546],[15.280352803528046,68.03671241109359],[15.294752947529474,68.04684387471286],[15.30915309153093,68.05190960652251],[15.327153271532723,68.05359818379242],[15.34155341553415,68.05697533833217],[15.355953559535607,68.08061542011052],[15.402754027540283,68.10425550188887],[15.463954639546415,68.12451842912748],[15.507155071550727,68.1329613154769],[15.503555035550363,68.11776412004795],[15.503555035550363,68.10594407915877],[15.514355143551455,68.09581261553947],[15.528755287552883,68.09074688372982],[15.532355323553247,68.0941240382696],[15.535955359553611,68.10932123369852],[15.539555395553975,68.11100981096843],[15.582755827558287,68.11100981096843],[15.593555935559351,68.11607554277808],[15.629556295562963,68.13464989274678],[15.636756367563692,68.14309277909618],[15.636756367563692,68.16504428360466],[15.643956439564391,68.16842143814443],[15.665556655566576,68.16673286087453],[15.661956619566212,68.16335570633478],[15.661956619566212,68.159978551795],[15.661956619566212,68.15660139725526],[15.658356583565848,68.15322424271548],[15.67635676356764,68.14815851090583],[15.715957159571616,68.14478135636608],[15.733957339573408,68.13971562455643],[15.719557195571952,68.131272738207],[15.70155701557016,68.12620700639735],[15.712357123571252,68.1211412745877],[15.72675726757268,68.1126983882383],[15.737557375573772,68.102566924619],[15.733957339573408,68.09074688372982],[15.708757087570888,68.0839925746503],[15.643956439564391,68.09581261553947],[15.618756187561871,68.09074688372982],[15.6259562595626,68.0839925746503],[15.629556295562963,68.07723826557077],[15.6259562595626,68.06710680195147],[15.618756187561871,68.05697533833217],[15.629556295562963,68.05359818379242],[15.640356403564056,68.05022102925264],[15.65115651156512,68.05022102925264],[15.665556655566576,68.05022102925264],[15.658356583565848,68.06710680195147],[15.669156691566911,68.07217253376112],[15.733957339573408,68.07217253376112],[15.762757627576292,68.07723826557077],[15.762757627576292,68.08061542011052],[15.762757627576292,68.08568115192017],[15.766357663576656,68.08905830645995],[15.77715777157772,68.09074688372982],[15.823958239582396,68.0924354609997],[15.845558455584552,68.09581261553947],[15.863558635586372,68.10425550188887],[15.892358923589256,68.12620700639735],[15.906759067590684,68.1329613154769],[15.924759247592476,68.1329613154769],[15.888758887588892,68.15491281998536],[15.870758707587072,68.17011001541431],[15.870758707587072,68.18699578811314],[15.888758887588892,68.19206151992279],[15.917559175591776,68.18699578811314],[15.942759427594297,68.18530721084326],[15.95355953559536,68.20388156081196],[15.949959499594996,68.21401302443127],[15.946359463594632,68.22245591078067],[15.946359463594632,68.2308987971301],[15.949959499594996,68.2393416834795],[15.964359643596453,68.24778456982892],[15.97875978759788,68.2494731470988],[16.014760147601493,68.2494731470988],[16.03636036360365,68.24271883801927],[16.047160471604712,68.22752164259032],[16.050760507605077,68.21232444716136],[16.06156061560617,68.20050440627219],[16.057960579605805,68.19206151992279],[16.047160471604712,68.18530721084326],[16.039960399604013,68.18193005630349],[16.02916029160292,68.18024147903361],[16.043560435604377,68.16166712906491],[16.06156061560617,68.16335570633478],[16.083160831608325,68.17179859268418],[16.097560975609753,68.17348716995409],[16.10476104761048,68.159978551795],[16.101161011610117,68.1414042018263],[16.090360903609053,68.12620700639735],[16.068760687606897,68.1126983882383],[16.075960759607597,68.09918977007925],[16.090360903609053,68.073861111031],[16.083160831608325,68.05697533833217],[16.068760687606897,68.04853245198277],[16.05436054360544,68.04177814290321],[16.043560435604377,68.02995810201404],[16.158761587615885,67.99956371115616],[16.191161911619133,67.98098936118745],[16.209162091620925,67.95903785667898],[16.21276212762129,67.93539777490062],[16.21276212762129,67.91175769312227],[16.219962199622017,67.89318334315354],[16.23796237962381,67.88305187953426],[16.28116281162812,67.87798614772461],[16.299162991629913,67.86954326137518],[16.309963099631005,67.86110037502579],[16.435964359643606,67.80706590238952],[16.486364863648646,67.79862301604012],[16.51516515165153,67.80368874784978],[16.48996489964901,67.8087544796594],[16.461164611646126,67.81719736600883],[16.443164431644334,67.83070598416788],[16.453964539645398,67.85096891140648],[16.309963099631005,67.87460899318484],[16.27036270362703,67.88980618861379],[16.2559625596256,67.89993765223309],[16.2559625596256,67.90838053858249],[16.266762667626693,67.91682342493192],[16.273962739627393,67.9269548885512],[16.273962739627393,67.94046350671027],[16.27036270362703,67.96410358848863],[16.273962739627393,67.9759236293778],[16.259562595625965,67.9860550929971],[16.241562415624173,67.9944979793465],[16.20556205562056,68.00294086569593],[16.245162451624537,68.00969517477546],[16.273962739627393,68.00631802023568],[16.302763027630277,67.99280940207663],[16.40716407164072,67.92020057947167],[16.41436414364145,67.90669196131262],[16.453964539645398,67.89824907496319],[16.46476464764649,67.89993765223309],[16.461164611646126,67.90838053858249],[16.457564575645762,67.91513484766202],[16.44676446764467,67.9269548885512],[16.450364503645034,67.93033204309097],[16.461164611646126,67.9370863521705],[16.46476464764649,67.94046350671027],[16.450364503645034,67.9472178157898],[16.40716407164072,67.95397212486932],[16.39636396363963,67.95903785667898],[16.37116371163711,67.9759236293778],[16.335163351633526,67.9944979793465],[16.335163351633526,68.00294086569593],[16.35676356763568,68.00969517477546],[16.3819638196382,68.00969517477546],[16.39636396363963,68.00125228842603],[16.425164251642514,67.9759236293778],[16.450364503645034,67.96241501121875],[16.482764827648282,67.9573492794091],[16.511565115651166,67.9573492794091],[16.543965439654414,67.96072643394885],[16.52236522365223,67.96748074302837],[16.482764827648282,67.96916932029828],[16.46476464764649,67.97761220664768],[16.46476464764649,67.98774367026698],[16.475564755647554,67.99787513388628],[16.500765007650074,68.01644948385498],[16.36396363963641,68.02995810201404],[16.374763747637473,68.04684387471286],[16.38916389163893,68.05866391560204],[16.40716407164072,68.06710680195147],[16.425164251642514,68.07048395649124],[16.443164431644334,68.07554968830087],[16.450364503645034,68.08736972919004],[16.46476464764649,68.0941240382696],[16.486364863648646,68.09074688372982],[16.551165511655114,68.0654182246816],[16.662766627666286,68.05022102925264],[16.687966879668807,68.05697533833217],[16.68076680766808,68.05866391560204],[16.66636666366665,68.06372964741169],[16.677166771667714,68.06879537922134],[16.687966879668807,68.07048395649124],[16.576365763657634,68.08568115192017],[16.554765547655478,68.0924354609997],[16.52236522365223,68.1126983882383],[16.500765007650074,68.11776412004795],[16.44676446764467,68.11607554277808],[16.34596345963459,68.08230399738042],[16.28836288362885,68.09074688372982],[16.29556295562955,68.09581261553947],[16.302763027630277,68.11100981096843],[16.27036270362703,68.11607554277808],[16.252362523625237,68.1211412745877],[16.241562415624173,68.1329613154769],[16.291962919629214,68.12620700639735],[16.32076320763207,68.12620700639735],[16.360363603636046,68.14478135636608],[16.403564035640358,68.13633847001665],[16.41436414364145,68.14646993363596],[16.40716407164072,68.14815851090583],[16.399963999639994,68.15322424271548],[16.417964179641814,68.15828997452513],[16.435964359643606,68.15660139725526],[16.453964539645398,68.15322424271548],[16.47196471964719,68.15322424271548],[16.46476464764649,68.16504428360466],[16.44676446764467,68.17348716995409],[16.41436414364145,68.18024147903361],[16.41436414364145,68.18699578811314],[16.543965439654414,68.16504428360466],[16.59076590765909,68.16673286087453],[16.57276572765727,68.17348716995409],[16.533165331653322,68.17855290176374],[16.475564755647554,68.19881582900231],[16.468364683646854,68.20050440627219],[16.461164611646126,68.20557013808184],[16.461164611646126,68.22414448805057],[16.453964539645398,68.22921021986019],[16.43956439564397,68.22583306532044],[16.417964179641814,68.21063586989149],[16.40716407164072,68.20725871535174],[16.173161731617313,68.20388156081196],[16.16236162361625,68.21063586989149],[16.183961839618405,68.22076733351079],[16.21276212762129,68.22583306532044],[16.34596345963459,68.22921021986019],[16.35676356763568,68.23258737439997],[16.35676356763568,68.2393416834795],[16.349563495634953,68.24609599255902],[16.33876338763389,68.2494731470988],[16.191161911619133,68.2579160334482],[16.119161191611937,68.27311322887715],[16.10476104761048,68.28324469249645],[16.122761227612273,68.28999900157598],[16.147961479614793,68.31363908335433],[16.173161731617313,68.31701623789411],[16.191161911619133,68.31532766062423],[16.227162271622717,68.3068847742748],[16.248762487624873,68.30350761973506],[16.259562595625965,68.30519619700493],[16.27036270362703,68.3068847742748],[16.28116281162812,68.3068847742748],[16.29556295562955,68.30350761973506],[16.302763027630277,68.30013046519528],[16.309963099631005,68.28662184703623],[16.317163171631734,68.28324469249645],[16.33876338763389,68.27986753795668],[16.38916389163893,68.28493326976633],[16.399963999639994,68.27649038341693],[16.507965079650802,68.25622745617832],[16.558365583655842,68.23258737439997],[16.561965619656206,68.19375009719266],[16.738367383673847,68.13971562455643],[16.770767707677095,68.1329613154769],[16.803168031680315,68.1329613154769],[16.74916749167491,68.15828997452513],[16.74196741967421,68.17011001541431],[16.73116731167312,68.17686432449383],[16.644766447664495,68.20219298354209],[16.612366123661246,68.21907875624092],[16.594365943659454,68.2393416834795],[16.605166051660518,68.25622745617832],[16.569165691656934,68.27649038341693],[16.52236522365223,68.2883104243061],[16.410764107641086,68.2984418879254],[16.35676356763568,68.31195050608446],[16.33876338763389,68.32039339243386],[16.317163171631734,68.32883627878329],[16.26316263162633,68.32377054697363],[16.241562415624173,68.33221343332306],[16.28116281162812,68.34403347421224],[16.266762667626693,68.34741062875199],[16.234362343623445,68.34572205148211],[16.219962199622017,68.35078778329176],[16.26316263162633,68.36260782418094],[16.35676356763568,68.37105071053034],[16.42156421564215,68.38962506049907],[16.695166951669535,68.404822255928],[16.720367203672055,68.40144510138825],[16.803168031680315,68.37949359687977],[16.84996849968499,68.3778050196099],[16.871568715687175,68.37273928780024],[16.878768787687875,68.35585351510142],[16.871568715687175,68.35078778329176],[16.835568355683563,68.33221343332306],[16.82476824768247,68.32377054697363],[16.846368463684655,68.32377054697363],[16.99396993969941,68.34403347421224],[17.029970299702995,68.35754209237129],[17.047970479704816,68.36260782418094],[17.12717127171271,68.37273928780024],[17.145171451714532,68.36936213326047],[17.173971739717416,68.34234489694234],[17.18477184771848,68.33727916513268],[17.191971919719208,68.30857335154468],[17.195571955719572,68.30013046519528],[17.224372243722456,68.28493326976633],[17.332373323733236,68.25622745617832],[17.31077310773108,68.23596452893975],[17.31077310773108,68.23258737439997],[17.314373143731444,68.22245591078067],[17.321573215732172,68.21739017897102],[17.325173251732537,68.21401302443127],[17.332373323733236,68.20725871535174],[17.328773287732872,68.19206151992279],[17.321573215732172,68.17855290176374],[17.31797317973181,68.17011001541431],[17.332373323733236,68.16673286087453],[17.353973539735392,68.17179859268418],[17.364773647736484,68.18361863357336],[17.364773647736484,68.19881582900231],[17.353973539735392,68.21063586989149],[17.350373503735057,68.22583306532044],[17.375573755737577,68.23258737439997],[17.41877418774189,68.23596452893975],[17.389973899739005,68.26635891979763],[17.353973539735392,68.28493326976633],[17.26757267572677,68.31026192881458],[17.253172531725312,68.31870481516398],[17.23517235172352,68.32883627878329],[17.224372243722456,68.33896774240259],[17.213572135721364,68.35078778329176],[17.206372063720636,68.37273928780024],[17.217172171721728,68.3778050196099],[17.23517235172352,68.37949359687977],[17.256772567725676,68.39300221503882],[17.253172531725312,68.3963793695786],[17.249572495724976,68.4065108331979],[17.328773287732872,68.40819941046777],[17.49437494374945,68.36429640145082],[17.577175771757737,68.35923066964116],[17.54477544775449,68.37611644233999],[17.364773647736484,68.41326514227742],[17.39357393573937,68.42339660589673],[17.541175411754125,68.42846233770635],[17.710377103771037,68.41157656500755],[17.818378183781846,68.38455932868942],[17.87237872378725,68.39300221503882],[17.81477814778148,68.39806794684847],[17.61317613176132,68.45041384221483],[17.46917469174693,68.44703668767508],[17.54477544775449,68.51795693301014],[17.54477544775449,68.52977697389932],[17.523175231752333,68.52977697389932],[17.479974799747993,68.51964551028004],[17.43677436774368,68.50613689212096],[17.364773647736484,68.50275973758121],[17.328773287732872,68.49093969669201],[17.26037260372604,68.45547957402448],[17.047970479704816,68.433528069516],[17.00117001170011,68.44703668767508],[17.022770227702296,68.45210241948473],[17.080370803708036,68.45885672856426],[17.098370983709856,68.46898819218356],[17.091170911709128,68.48080823307274],[17.073170731707336,68.48925111942214],[17.047970479704816,68.49431685123179],[17.029970299702995,68.49600542850166],[17.01917019170193,68.49769400577156],[16.997569975699776,68.50782546939084],[16.986769867698683,68.50951404666074],[16.97596975969759,68.50782546939084],[16.90036900369003,68.47405392399318],[16.889568895688967,68.46561103764378],[16.84996849968499,68.44872526494495],[16.738367383673847,68.45210241948473],[16.669966699667015,68.43859380132565],[16.533165331653322,68.43859380132565],[16.511565115651166,68.44197095586543],[16.500765007650074,68.45041384221483],[16.500765007650074,68.46561103764378],[16.49716497164971,68.47405392399318],[16.486364863648646,68.48925111942214],[16.475564755647554,68.49769400577156],[16.468364683646854,68.50275973758121],[16.46476464764649,68.50951404666074],[16.47196471964719,68.52302266481979],[16.486364863648646,68.52977697389932],[16.54036540365405,68.5432855920584],[16.579965799657998,68.53484270570897],[16.605166051660518,68.52808839662944],[16.619566195661974,68.5331541284391],[16.63036630366304,68.54666274659814],[16.626766267662674,68.55003990113792],[16.61596615966161,68.55341705567767],[16.59796597965979,68.55679421021745],[16.583565835658362,68.56354851929697],[16.57276572765727,68.56861425110662],[16.56556565565657,68.57705713745605],[16.561965619656206,68.59225433288498],[16.57276572765727,68.61251726012358],[16.59796597965979,68.62940303282241],[16.63036630366304,68.64122307371159],[16.695166951669535,68.65135453733089],[16.810368103681043,68.68174892818877],[16.92556925569255,68.69356896907794],[16.961569615696163,68.70370043269725],[16.99396993969941,68.7087661645069],[17.01917019170193,68.69356896907794],[17.04437044370445,68.67499461910924],[17.080370803708036,68.66317457822007],[17.0839708397084,68.65810884641041],[17.080370803708036,68.65135453733089],[17.0839708397084,68.64628880552124],[17.091170911709128,68.64291165098146],[17.130771307713076,68.63446876463206],[17.148771487714896,68.63278018736216],[17.166771667716688,68.63446876463206],[17.18477184771848,68.63953449644171],[17.181171811718116,68.64797738279111],[17.170371703717052,68.65135453733089],[17.145171451714532,68.65304311460076],[17.13437134371344,68.65473169187064],[17.119971199712012,68.66486315548994],[17.10917109171092,68.66655173275981],[17.10197101971019,68.66992888729959],[17.098370983709856,68.67668319637912],[17.098370983709856,68.68343750545864],[17.10197101971019,68.6901918145382],[17.10917109171092,68.69694612361772],[17.116371163711648,68.6986347008876],[17.206372063720636,68.71214331904665],[17.249572495724976,68.72396335993582],[17.271172711727132,68.72058620539607],[17.31077310773108,68.707077587237],[17.332373323733236,68.7087661645069],[17.350373503735057,68.71214331904665],[17.371973719737213,68.71045474177677],[17.404374043740432,68.68512608272854],[17.422374223742253,68.67499461910924],[17.440374403744045,68.66992888729959],[17.4619746197462,68.66655173275981],[17.490774907749085,68.66655173275981],[17.577175771757737,68.67330604183937],[17.656376563765633,68.65810884641041],[17.677976779767818,68.65979742368029],[17.62037620376205,68.68174892818877],[17.49437494374945,68.6901918145382],[17.447574475744773,68.71552047358642],[17.429574295742952,68.73071766901538],[17.404374043740432,68.74422628717443],[17.375573755737577,68.75098059625395],[17.346773467734693,68.73916055536478],[17.325173251732537,68.73240624628525],[17.289172891728924,68.73578340082503],[17.23517235172352,68.7560463280636],[17.263972639726404,68.76786636895278],[17.332373323733236,68.78644071892148],[17.397173971739733,68.79657218254079],[17.425974259742617,68.80839222342996],[17.4619746197462,68.81514653250949],[17.566375663756645,68.78812929619139],[17.72117721177213,68.77799783257208],[17.782377823778234,68.74929201898408],[17.782377823778234,68.77799783257208],[17.73917739177392,68.79150645073113],[17.64557645576457,68.79657218254079],[17.46917469174693,68.83203230520832],[17.54477544775449,68.84722950063727],[17.609576095760957,68.87086958241562],[17.631176311763113,68.87762389149515],[17.66357663576636,68.88100104603492],[17.69597695976961,68.89113250965423],[17.706777067770673,68.8928210869241],[17.717577175771765,68.89113250965423],[17.742777427774286,68.87931246876505],[17.767977679776806,68.87255815968552],[17.79677796777969,68.86749242787587],[17.82197821978221,68.86749242787587],[17.850778507785094,68.87255815968552],[17.825578255782574,68.89450966419398],[17.706777067770673,68.9130840141627],[17.710377103771037,68.91814974597236],[17.72117721177213,68.93503551867119],[17.523175231752333,68.91646116870245],[17.458374583745837,68.89957539600363],[17.425974259742617,68.89957539600363],[17.43677436774368,68.9130840141627],[17.479974799747993,68.94854413683024],[17.49437494374945,68.95529844590976],[17.523175231752333,68.95529844590976],[17.533975339753397,68.96036417771941],[17.53757537575376,68.97556137314837],[17.530375303753033,68.98738141403754],[17.51957519575197,68.99075856857729],[17.48717487174872,68.98906999130742],[17.48717487174872,68.99582430038694],[17.559175591755917,69.03128442305447],[17.602376023760257,69.0599902366425],[17.656376563765633,69.07856458661121],[17.677976779767818,69.09207320477026],[17.667176671766725,69.09545035931004],[17.64557645576457,69.10051609111969],[17.631176311763113,69.10558182292934],[17.659976599765997,69.11740186381851],[17.868778687786886,69.12077901835826],[17.958779587795874,69.1477962546764],[18.02358023580237,69.1562391410258],[18.153181531815335,69.15455056375592],[18.08118081180814,69.16974775918487],[18.070380703807047,69.17819064553427],[18.07398073980741,69.196764995503],[18.08118081180814,69.20689645912228],[18.091980919809203,69.2153393454717],[18.10638106381066,69.22884796363076],[18.077580775807775,69.23729084998018],[18.016380163801642,69.22884796363076],[17.987579875798758,69.23560227271028],[18.00558005580058,69.25079946813923],[18.001980019800214,69.28625959080676],[18.016380163801642,69.3048339407755],[18.045180451804526,69.31665398166467],[18.11358113581136,69.3335397543635],[18.13878138781388,69.3521141043322],[18.13158131581318,69.36899987703103],[18.142381423814243,69.38250849519008],[18.1639816398164,69.39432853607926],[18.18198181981822,69.40783715423834],[18.17478174781749,69.41290288604799],[18.171181711817127,69.41796861785761],[18.167581675816763,69.42134577239739],[18.171181711817127,69.43316581328656],[18.1639816398164,69.43823154509622],[18.1567815678157,69.44160869963599],[18.153181531815335,69.44836300871552],[18.1567815678157,69.45680589506492],[18.1567815678157,69.4601830496047],[18.1639816398164,69.4601830496047],[18.192781927819283,69.4686259359541],[18.243182431824323,69.47538024503365],[18.25038250382505,69.48044597684327],[18.253982539825415,69.48382313138305],[18.26478264782648,69.4888888631927],[18.27558275582757,69.4888888631927],[18.30078300783009,69.48720028592282],[18.322383223832247,69.4787573995734],[18.34038340383404,69.46693735868422],[18.38358383583838,69.43147723601669],[18.387183871838715,69.42134577239739],[18.38358383583838,69.41459146331786],[18.37638376383765,69.40783715423834],[18.369183691836923,69.39263995880938],[18.36558365583656,69.39095138153951],[18.369183691836923,69.39263995880938],[18.448384483844848,69.39432853607926],[18.46638466384664,69.39095138153951],[18.487984879848796,69.38250849519008],[18.502385023850252,69.3706884543009],[18.50958509585095,69.35549125887198],[18.505985059850616,69.33860548617315],[18.498784987849888,69.30652251804537],[18.495184951849524,69.28963674534654],[18.50958509585095,69.28288243626702],[18.51678516785168,69.27612812718749],[18.513185131851316,69.26599666356819],[18.505985059850616,69.25924235448866],[18.498784987849888,69.25248804540911],[18.498784987849888,69.24404515905971],[18.502385023850252,69.23560227271028],[18.523985239852408,69.26261950902841],[18.53478534785347,69.27781670445736],[18.538385383853836,69.29470247715619],[18.53478534785347,69.32847402255385],[18.538385383853836,69.34873694979242],[18.545585455854564,69.35886841341173],[18.563585635856356,69.36393414522138],[18.577985779857812,69.3521141043322],[18.588785887858876,69.3335397543635],[18.59238592385924,69.31496540439477],[18.603186031860332,69.29976820896584],[18.624786247862488,69.29301389988632],[18.64998649986501,69.28794816807667],[18.671586715867164,69.27950528172724],[18.678786787867892,69.27275097264771],[18.69318693186932,69.26430808629829],[18.703987039870412,69.26261950902841],[18.707587075870777,69.27612812718749],[18.703987039870412,69.28794816807667],[18.69318693186932,69.29301389988632],[18.682386823868256,69.29639105442607],[18.67518675186753,69.3048339407755],[18.689586895868956,69.31834255893455],[18.736387363873632,69.3234082907442],[18.822788227882285,69.32509686801407],[18.862388623886233,69.32003113620442],[18.930789307893093,69.29639105442607],[19.006390063900653,69.28625959080676],[19.013590135901353,69.28625959080676],[19.017190171901717,69.29470247715619],[19.013590135901353,69.29976820896584],[19.006390063900653,69.30314536350559],[18.999189991899925,69.3048339407755],[18.988389883898833,69.30652251804537],[18.955989559895613,69.32847402255385],[18.934389343893457,69.3335397543635],[18.664386643866436,69.36899987703103],[18.631986319863216,69.38250849519008],[18.613986139861396,69.38588564972986],[18.606786067860696,69.39095138153951],[18.599585995859968,69.40108284515881],[18.595985959859604,69.41290288604799],[18.59238592385924,69.42134577239739],[18.577985779857812,69.43147723601669],[18.563585635856356,69.43654296782634],[18.531185311853136,69.44160869963599],[18.49158491584916,69.44160869963599],[18.46638466384664,69.44498585417574],[18.455584555845576,69.45511731779504],[18.455584555845576,69.46524878141435],[18.46638466384664,69.47369166776375],[18.477184771847732,69.4787573995734],[18.487984879848796,69.48213455411317],[18.469984699847004,69.50408605862165],[18.473584735847368,69.51590609951083],[18.498784987849888,69.52266040859035],[18.563585635856356,69.52603756313013],[18.631986319863216,69.54123475855906],[18.85158851588517,69.55305479944823],[18.862388623886233,69.54630049036871],[18.865988659886597,69.53110329493975],[18.865988659886597,69.52266040859035],[18.858788587885897,69.51421752224093],[18.85158851588517,69.5074632131614],[18.84438844388444,69.50239748135175],[18.858788587885897,69.50408605862165],[18.87678876788769,69.50239748135175],[18.89478894788948,69.4973317495421],[18.905589055890573,69.4888888631927],[18.912789127891273,69.48213455411317],[18.912789127891273,69.46524878141435],[18.916389163891637,69.45849447233482],[18.934389343893457,69.44667443144564],[19.009990099901017,69.42810008147691],[19.00279002790029,69.40783715423834],[19.013590135901353,69.39770569061903],[19.056790567905693,69.38588564972986],[19.12159121591216,69.35886841341173],[19.14679146791468,69.3521141043322],[19.348393483934842,69.34367121798277],[19.38079380793809,69.32171971347432],[19.369993699936998,69.29976820896584],[19.351993519935206,69.28963674534654],[19.283592835928374,69.27612812718749],[19.22959229592297,69.28288243626702],[19.215192151921514,69.28119385899711],[19.189991899918994,69.27275097264771],[19.168391683916838,69.26768524083806],[19.168391683916838,69.26093093175854],[19.17919179191793,69.25417662267901],[19.186391863918658,69.24911089086936],[19.19719197191972,69.25079946813923],[19.225992259922606,69.26261950902841],[19.233192331923334,69.26599666356819],[19.251192511925126,69.27443954991759],[19.269192691926918,69.26599666356819],[19.272792727927282,69.25248804540911],[19.247592475924762,69.24235658178983],[19.261992619926218,69.23560227271028],[19.301593015930166,69.2237822318211],[19.315993159931594,69.22209365455123],[19.33759337593378,69.22547080909101],[19.366393663936634,69.23729084998018],[19.38079380793809,69.24235658178983],[19.41319413194134,69.24066800451993],[19.477994779947807,69.22040507728136],[19.510395103951055,69.22884796363076],[19.4887948879489,69.24066800451993],[19.467194671946714,69.24911089086936],[19.449194491944922,69.26093093175854],[19.441994419944194,69.28288243626702],[19.441994419944194,69.29301389988632],[19.449194491944922,69.29807963169594],[19.45639456394565,69.30652251804537],[19.45639456394565,69.31834255893455],[19.449194491944922,69.32509686801407],[19.43119431194313,69.3419826407129],[19.348393483934842,69.37913134065033],[19.323193231932322,69.38419707245998],[19.297992979929802,69.38588564972986],[19.157591575915774,69.37744276338043],[19.117991179911797,69.38588564972986],[19.110791107911098,69.39263995880938],[19.085590855908578,69.41459146331786],[19.081990819908214,69.41796861785761],[19.081990819908214,69.42303434966726],[19.081990819908214,69.42978865874682],[19.07839078390785,69.43485439055644],[19.07119071190712,69.43823154509622],[19.042390423904237,69.44160869963599],[19.02079020790208,69.45005158598539],[19.00279002790029,69.46356020414447],[18.991989919899197,69.48382313138305],[19.006390063900653,69.50577463589153],[19.031590315903173,69.52097183132048],[19.067590675906757,69.53279187220966],[19.175591755917566,69.55136622217836],[19.193591935919358,69.54967764490848],[19.222392223922242,69.53448044947953],[19.236792367923698,69.5277261404],[19.251192511925126,69.52434898586023],[19.261992619926218,69.52266040859035],[19.25479254792549,69.53448044947953],[19.243992439924398,69.54461191309883],[19.233192331923334,69.55305479944823],[19.22959229592297,69.56825199487719],[19.14679146791468,69.56487484033741],[19.10359103591037,69.55643195398801],[19.05319053190533,69.55136622217836],[19.035190351903537,69.54123475855906],[19.017190171901717,69.53448044947953],[18.99558995589956,69.53954618128918],[18.973989739897405,69.54967764490848],[18.959589595895977,69.56149768579766],[18.94518945189452,69.6155321584339],[19.085590855908578,69.69320671284851],[19.099990999910005,69.73542114459556],[19.117991179911797,69.74386403094499],[19.139591395913953,69.74724118548474],[19.182791827918294,69.75061834002452],[19.200792007920086,69.7539954945643],[19.233192331923334,69.77088126726312],[19.247592475924762,69.77763557634265],[19.294392943929438,69.7827013081523],[19.44559445594456,69.77763557634265],[19.48159481594817,69.7810127308824],[19.55719557195573,69.79958708085113],[19.737197371973735,69.81309569901018],[19.78399783997841,69.80465281266078],[19.776797767977683,69.7911441945017],[19.769597695976955,69.78438988542217],[19.729997299973007,69.75737264910404],[19.73359733597337,69.7539954945643],[19.737197371973735,69.73879829913534],[19.729997299973007,69.72360110370639],[19.711997119971215,69.70502675373768],[19.69039690396906,69.68982955830873],[19.675996759967603,69.68138667195933],[19.693996939969395,69.6645008992605],[19.71559715597158,69.6543694356412],[19.726397263972643,69.64254939475202],[19.71559715597158,69.61215500389415],[19.701197011970123,69.59358065392541],[19.643596435964355,69.54123475855906],[19.636396363963655,69.53110329493975],[19.629196291962927,69.52097183132048],[19.625596255962563,69.5074632131614],[19.625596255962563,69.49564317227222],[19.63279632796329,69.48551170865292],[19.643596435964355,69.47200309049387],[19.650796507965083,69.4601830496047],[19.643596435964355,69.45511731779504],[19.6147961479615,69.45005158598539],[19.58239582395825,69.43823154509622],[19.553595535955367,69.41965719512751],[19.53199531995321,69.40108284515881],[19.686796867968695,69.44498585417574],[19.69759697596976,69.46524878141435],[19.71559715597158,69.49226601773248],[19.726397263972643,69.51590609951083],[19.70839708397085,69.53110329493975],[19.755197551975527,69.60033496300497],[19.751597515975163,69.60202354027484],[19.7479974799748,69.60540069481459],[19.7479974799748,69.60877784935437],[19.744397443974435,69.61215500389415],[19.762397623976256,69.61215500389415],[19.801998019980203,69.61384358116402],[19.927999279992804,69.60540069481459],[19.9927999279993,69.58851492211576],[20.061200612006132,69.57838345849649],[20.111601116011173,69.58513776757601],[20.07560075600756,69.58513776757601],[20.032400324003248,69.58851492211576],[19.989199891998936,69.59695780846519],[19.953199531995324,69.60877784935437],[19.92439924399244,69.6155321584339],[19.888398883988856,69.61890931297367],[19.855998559985608,69.62735219932307],[19.845198451984515,69.65099228110142],[19.84159841598418,69.65943516745085],[19.830798307983088,69.6729437856099],[19.82359823598236,69.68138667195933],[19.82359823598236,69.68814098103886],[19.82359823598236,69.71178106281721],[19.837998379983816,69.72360110370639],[19.85959859598597,69.73373256732569],[19.877598775987764,69.74386403094499],[19.8739987399874,69.76412695818357],[19.888398883988856,69.77425842180287],[19.927999279992804,69.78438988542217],[19.945999459994596,69.79452134904147],[19.978399783997844,69.829981471709],[19.989199891998936,69.8384243580584],[20.007200072000728,69.84349008986806],[20.010800108001092,69.83504720351866],[20.003600036000364,69.82153858535958],[19.981999819998208,69.79620992631135],[19.96759967599678,69.76412695818357],[20.007200072000728,69.76919268999322],[20.032400324003248,69.7911441945017],[20.079200792007924,69.84517866713796],[20.115201152011537,69.87895021253561],[20.14400144001442,69.92285322155254],[20.154801548015485,69.93467326244172],[20.16920169201694,69.94142757152127],[20.16920169201694,69.93129610790197],[20.16920169201694,69.92623037609232],[20.16920169201694,69.92116464428267],[20.16920169201694,69.89583598523444],[20.16920169201694,69.88063878980549],[20.17640176401764,69.87388448072596],[20.19440194401946,69.86713017164641],[20.20160201602016,69.85868728529701],[20.20880208802089,69.85868728529701],[20.20880208802089,69.87895021253561],[20.20160201602016,69.92454179882245],[20.20880208802089,69.93129610790197],[20.237602376023773,69.9464933033309],[20.27000270002702,69.96844480783938],[20.291602916029177,69.97182196237915],[20.313203132031333,69.96337907602972],[20.417604176041777,69.89077025342479],[20.424804248042477,69.87726163526571],[20.42120421204214,69.86713017164641],[20.41040410404105,69.85699870802713],[20.399603996039957,69.84517866713796],[20.39600396003962,69.83335862624878],[20.39600396003962,69.81309569901018],[20.392403924039257,69.80465281266078],[20.38520385203853,69.79789850358122],[20.374403744037437,69.78945561723182],[20.363603636036373,69.77932415361252],[20.36000360003601,69.76750411272334],[20.356403564035645,69.75737264910404],[20.349203492034917,69.74555260821487],[20.342003420034217,69.73373256732569],[20.33480334803349,69.72528968097629],[20.32040320403206,69.68645240376898],[20.32040320403206,69.68138667195933],[20.324003240032397,69.66956663107015],[20.331203312033125,69.66281232199063],[20.374403744037437,69.64254939475202],[20.381603816038165,69.63410650840262],[20.38520385203853,69.62228646751342],[20.38520385203853,69.61046642662424],[20.381603816038165,69.59864638573507],[20.3780037800378,69.58851492211576],[20.367203672036737,69.58513776757601],[20.331203312033125,69.58176061303624],[20.291602916029177,69.57331772668684],[20.273602736027357,69.55980910852776],[20.306003060030605,69.54461191309883],[20.288002880028813,69.53785760401931],[20.27720277202772,69.52941471766988],[20.27000270002702,69.5175946767807],[20.262802628026293,69.50239748135175],[20.27720277202772,69.48551170865292],[20.266402664026657,69.4686259359541],[20.241202412024137,69.4601830496047],[20.216002160021617,69.4686259359541],[20.205202052020525,69.43992012236609],[20.190801908019097,69.41290288604799],[20.16920169201694,69.39432853607926],[20.115201152011537,69.38250849519008],[20.05760057600577,69.35886841341173],[20,69.34873694979242],[19.981999819998208,69.33860548617315],[19.985599855998572,69.33522833163337],[19.996399963999636,69.32847402255385],[20.003600036000364,69.32509686801407],[19.938799387993896,69.28794816807667],[19.91719917199174,69.26937381810794],[19.94959949599496,69.26261950902841],[19.971199711997116,69.26937381810794],[20,69.28625959080676],[20.028800288002884,69.3048339407755],[20.046800468004676,69.32171971347432],[20.072000720007196,69.33522833163337],[20.22680226802268,69.38419707245998],[20.266402664026657,69.38757422699973],[20.27720277202772,69.39263995880938],[20.35280352803528,69.4686259359541],[20.374403744037437,69.48213455411317],[20.42120421204214,69.5074632131614],[20.442804428044298,69.52266040859035],[20.450004500044997,69.54798906763858],[20.45360453604536,69.55643195398801],[20.46080460804609,69.56487484033741],[20.47160471604718,69.57331772668684],[20.482404824048245,69.57838345849649],[20.4968049680497,69.57838345849649],[20.51120511205113,69.57162914941696],[20.525605256052557,69.56487484033741],[20.572405724057234,69.54461191309883],[20.648006480064794,69.52097183132048],[20.792007920079215,69.5091517904313],[20.810008100081006,69.50239748135175],[20.824408244082434,69.49395459500235],[20.83880838808389,69.49057744046257],[20.85320853208532,69.49564317227222],[20.81360813608137,69.51084036770118],[20.72000720007202,69.5277261404],[20.684006840068406,69.54798906763858],[20.658806588065886,69.57669488122659],[20.648006480064794,69.58513776757601],[20.626406264062638,69.59526923119532],[20.540005400054014,69.61046642662424],[20.493204932049338,69.62735219932307],[20.482404824048245,69.63748366294237],[20.489604896048974,69.64761512656167],[20.525605256052557,69.67800951741955],[20.540005400054014,69.70502675373768],[20.53640536405365,69.73035541278591],[20.514805148051494,69.74892976275464],[20.482404824048245,69.75568407183417],[20.482404824048245,69.76412695818357],[20.51120511205113,69.76919268999322],[20.644406444064458,69.772569844533],[20.784807848078486,69.801275658121],[20.80280802808028,69.8114071217403],[20.8208082080821,69.82829289443913],[20.824408244082434,69.84180151259818],[20.81360813608137,69.85362155348736],[20.799207992079914,69.86713017164641],[20.792007920079215,69.87895021253561],[20.8280082800828,69.88232736707536],[21.051210512105115,69.94480472606102],[21.09081090810909,69.9481818806008],[21.09081090810909,69.94142757152127],[20.982809828098283,69.90427887158384],[20.918009180091815,69.86713017164641],[20.892808928089295,69.86037586256688],[20.892808928089295,69.85362155348736],[20.91440914409145,69.8485558216777],[20.936009360093607,69.8485558216777],[20.9540095400954,69.84686724440783],[20.968409684096855,69.83167004897888],[20.957609576095763,69.83167004897888],[20.950409504095035,69.829981471709],[20.9468094680947,69.82491573989935],[20.93960939609397,69.81816143081983],[20.993609936099375,69.79283277177157],[21.018810188101895,69.78776703996195],[21.051210512105115,69.79789850358122],[21.036810368103687,69.80465281266078],[21.00441004410044,69.81478427628005],[20.99720997209974,69.82491573989935],[21.018810188101895,69.82660431716923],[21.04761047610478,69.83167004897888],[21.069210692106935,69.84349008986806],[21.058410584105843,69.86037586256688],[21.083610836108363,69.86544159437653],[21.170011700117016,69.87557305799584],[21.188011880118808,69.86881874891631],[21.18081180811808,69.85531013075723],[21.14121141211413,69.82491573989935],[21.126811268112675,69.8114071217403],[21.14841148411486,69.81309569901018],[21.18081180811808,69.8198500080897],[21.2060120601206,69.829981471709],[21.22401224012242,69.84517866713796],[21.22401224012242,69.85699870802713],[21.209612096120964,69.90765602612362],[21.3248132481325,69.90765602612362],[21.303213032130316,69.92116464428267],[21.270812708127096,69.92960753063207],[21.238412384123848,69.93467326244172],[21.209612096120964,69.93467326244172],[21.22401224012242,69.9751991169189],[21.252812528125276,70.00221635323703],[21.288812888128888,70.02079070320576],[21.3320133201332,70.03092216682504],[21.393213932139332,70.02923358955516],[21.55881558815588,69.98870773507798],[21.555215552155516,69.9751991169189],[21.569615696156973,69.96506765329963],[21.605616056160557,69.95493618968032],[21.580415804158037,69.9279189533622],[21.60921609216092,69.91272175793327],[21.645216452164533,69.89921313977419],[21.68481684816848,69.89077025342479],[21.756817568175677,69.88232736707536],[21.904419044190462,69.82491573989935],[21.929619296192982,69.80802996720053],[21.94401944019441,69.78776703996195],[21.958419584195838,69.77763557634265],[22.052020520205218,69.75061834002452],[22.034020340203398,69.74386403094499],[22.016020160201606,69.74386403094499],[21.976419764197658,69.75061834002452],[22.001620016200178,69.74048687640521],[22.030420304203062,69.73373256732569],[22.062820628206282,69.73373256732569],[22.088020880208802,69.73879829913534],[22.098820988209894,69.75061834002452],[22.091620916209166,69.75737264910404],[22.059220592205918,69.77088126726312],[22.055620556205582,69.79283277177157],[22.008820088200878,69.81309569901018],[21.915219152191526,69.8384243580584],[21.93681936819368,69.84180151259818],[22.001620016200178,69.83504720351866],[22.01962019620197,69.84517866713796],[22.012420124201242,69.85868728529701],[21.990819908199086,69.86881874891631],[21.94401944019441,69.87388448072596],[21.929619296192982,69.87895021253561],[21.929619296192982,69.89414740796454],[21.929619296192982,69.91103318066337],[21.926019260192618,69.92454179882245],[21.915219152191526,69.9380504169815],[21.915219152191526,69.94480472606102],[21.929619296192982,69.96337907602972],[21.929619296192982,69.9667562305695],[21.922419224192254,69.97182196237915],[21.922419224192254,69.9768876941888],[21.929619296192982,69.98364200326833],[21.940419404194046,69.9853305805382],[21.983619836198358,69.98364200326833],[22.008820088200878,69.9853305805382],[22.023220232202334,69.9853305805382],[22.034020340203398,69.98026484872855],[22.034020340203398,69.97351053964903],[22.023220232202334,69.95493618968032],[22.052020520205218,69.9380504169815],[22.062820628206282,69.9566247669502],[22.059220592205918,69.99039631234785],[22.052020520205218,70.01741354866598],[22.066420664206646,70.01741354866598],[22.098820988209894,70.02416785774551],[22.113221132211322,70.02416785774551],[22.113221132211322,70.03092216682504],[21.951219512195138,70.01234781685633],[21.864818648186485,70.01234781685633],[21.800018000180017,70.03767647590456],[21.839618396183965,70.05456224860339],[21.983619836198358,70.05793940314317],[22.005220052200542,70.06131655768294],[22.01962019620197,70.06807086676247],[22.052020520205218,70.0849566394613],[22.084420844208438,70.09677668035047],[22.09522095220953,70.10521956669987],[22.098820988209894,70.12041676212883],[22.01962019620197,70.10353098943],[22.008820088200878,70.10184241216012],[21.98721987219872,70.08833379400104],[21.958419584195838,70.0849566394613],[21.839618396183965,70.09171094854082],[21.8288182881829,70.08833379400104],[21.81801818018181,70.074825175842],[21.80361803618038,70.07144802130222],[21.720817208172093,70.06131655768294],[21.688416884168845,70.06469371222269],[21.630816308163077,70.0950881030806],[21.612816128161285,70.09846525762035],[21.512015120151204,70.09171094854082],[21.48321483214832,70.09846525762035],[21.468814688146892,70.10690814396978],[21.44001440014401,70.13730253482765],[21.436414364143644,70.14912257571683],[21.454414544145436,70.15925403933613],[21.479614796147956,70.16600834841566],[21.497614976149777,70.17445123476509],[21.35721357213572,70.16431977114578],[21.314013140131408,70.16769692568553],[21.296012960129616,70.17107408022531],[21.28161281612816,70.17613981203496],[21.270812708127096,70.18289412111449],[21.260012600126004,70.19133700746391],[21.245612456124576,70.19977989381331],[21.213212132121328,70.20653420289284],[21.209612096120964,70.20822278016271],[21.234812348123484,70.22510855286154],[21.270812708127096,70.23861717102062],[21.30681306813068,70.24706005737002],[21.339213392133928,70.2504372119098],[21.40761407614076,70.26732298460863],[21.44001440014401,70.2690115618785],[21.436414364143644,70.2504372119098],[21.443614436144372,70.23861717102062],[21.49041490414905,70.20822278016271],[21.494014940149412,70.21666566651214],[21.494014940149412,70.2217313983218],[21.49041490414905,70.22510855286154],[21.49041490414905,70.23355143921097],[21.494014940149412,70.2403057482905],[21.504815048150476,70.2504372119098],[21.512015120151204,70.25719152098932],[21.512015120151204,70.27070013914837],[21.512015120151204,70.28252018003758],[21.512015120151204,70.29265164365685],[21.519215192151933,70.30447168454603],[21.53361533615336,70.3162917254352],[21.55161551615518,70.32135745724486],[21.573215732157337,70.31966887997498],[21.587615876158765,70.31291457089546],[21.587615876158765,70.3078488390858],[21.587615876158765,70.29265164365685],[21.587615876158765,70.2875859118472],[21.612816128161285,70.27070013914837],[21.63441634416344,70.26225725279897],[21.68481684816848,70.25550294371945],[21.710017100171,70.2504372119098],[21.796417964179653,70.20653420289284],[21.80361803618038,70.19809131654344],[21.807218072180717,70.18795985292414],[21.81801818018181,70.17445123476509],[21.8288182881829,70.16769692568553],[21.875618756187578,70.14743399844696],[21.87921879218794,70.16094261660601],[21.875618756187578,70.16938550295544],[21.872018720187214,70.17782838930484],[21.86841868418685,70.18795985292414],[21.864818648186485,70.19133700746391],[21.86121861218612,70.19133700746391],[21.857618576185757,70.19471416200366],[21.86121861218612,70.20146847108319],[21.864818648186485,70.20822278016271],[21.875618756187578,70.20991135743262],[21.88641886418864,70.20991135743262],[21.89361893618937,70.20822278016271],[21.872018720187214,70.21666566651214],[21.8288182881829,70.22679713013144],[21.807218072180717,70.2403057482905],[21.807218072180717,70.25719152098932],[21.821618216182173,70.2690115618785],[21.98721987219872,70.32304603451476],[22.008820088200878,70.32473461178463],[22.030420304203062,70.31798030270511],[22.01962019620197,70.30953741635568],[21.990819908199086,70.29602879819663],[21.983619836198358,70.28420875730745],[22.008820088200878,70.28589733457733],[22.073620736207374,70.30447168454603],[22.09522095220953,70.3078488390858],[22.106021060210622,70.30447168454603],[22.106021060210622,70.29434022092676],[22.106021060210622,70.24537148010015],[22.116821168211686,70.23355143921097],[22.142021420214206,70.23692859375075],[22.1528215282153,70.24706005737002],[22.1528215282153,70.2588800982592],[22.142021420214206,70.28420875730745],[22.268022680226807,70.29434022092676],[22.307623076230783,70.2875859118472],[22.314823148231483,70.27238871641828],[22.300423004230055,70.25550294371945],[22.275222752227535,70.23861717102062],[22.257222572225743,70.2301742846712],[22.27162271622717,70.21835424378202],[22.2788227882279,70.20315704835309],[22.282422824228263,70.18458269838436],[22.293222932229327,70.16769692568553],[22.2788227882279,70.15756546206626],[22.250022500225015,70.1508111529867],[22.23562235622356,70.14067968936743],[22.275222752227535,70.13561395755778],[22.4048240482405,70.14743399844696],[22.52362523625237,70.1237939166686],[22.559625596255984,70.12717107120835],[22.5380253802538,70.13899111209753],[22.50562505625058,70.14743399844696],[22.325623256232575,70.16769692568553],[22.332823328233303,70.17951696657471],[22.36162361623616,70.21666566651214],[22.376023760237615,70.24706005737002],[22.37242372423725,70.2504372119098],[22.401224012240135,70.2588800982592],[22.433624336243383,70.2605686755291],[22.469624696246967,70.2605686755291],[22.51282512825128,70.25381436644955],[22.552425524255256,70.23861717102062],[22.566825668256683,70.23692859375075],[22.577625776257776,70.2403057482905],[22.58842588425884,70.24199432556037],[22.59922599225993,70.23692859375075],[22.595625956259568,70.2217313983218],[22.602826028260296,70.21835424378202],[22.674826748267492,70.22341997559167],[22.96642966429664,70.20822278016271],[22.977229772297733,70.19809131654344],[22.970029700297005,70.18964843019401],[22.85842858428586,70.12548249393848],[22.836828368283676,70.12041676212883],[22.804428044280456,70.11703960758905],[22.736027360273596,70.10184241216012],[22.552425524255256,70.0849566394613],[22.476824768247695,70.09171094854082],[22.433624336243383,70.08833379400104],[22.394023940239407,70.06807086676247],[22.2860228602286,70.04443078498412],[22.30402304023042,70.03936505317446],[22.332823328233303,70.04105363044434],[22.358023580235823,70.04611936225399],[22.394023940239407,70.06131655768294],[22.646026460264608,70.07651375311187],[22.71442714427144,70.0950881030806],[22.86562865628656,70.10521956669987],[22.977229772297733,70.14574542117705],[23.01683016830168,70.14743399844696],[23.002430024300253,70.1136624530493],[22.99882998829989,70.10015383489022],[22.99882998829989,70.08157948492152],[23.002430024300253,70.0663822894926],[23.00963009630098,70.05118509406364],[23.020430204302045,70.03767647590456],[23.031230312303137,70.03092216682504],[23.052830528305293,70.03261074409494],[23.08523085230854,70.03936505317446],[23.114031140311397,70.04274220771421],[23.128431284312853,70.03429932136481],[23.12483124831249,70.01234781685633],[23.121231212312125,69.99883919869728],[23.12483124831249,69.98870773507798],[23.15003150031501,69.9751991169189],[23.13563135631358,69.9667562305695],[23.12483124831249,69.96169049875985],[23.11043110431106,69.9566247669502],[23.096030960309605,69.95493618968032],[23.12483124831249,69.94480472606102],[23.1608316083161,69.95155903514055],[23.283232832328338,69.99377346688763],[23.297632976329766,69.9954620441575],[23.315633156331558,69.99715062142738],[23.315633156331558,69.99377346688763],[23.322833228332286,69.9870191578081],[23.333633336333378,69.98195342599846],[23.340833408334078,69.9768876941888],[23.337233372333742,69.97182196237915],[23.308433084330858,69.95324761241045],[23.308433084330858,69.94987045787067],[23.330033300333014,69.9481818806008],[23.420034200342002,69.97857627145868],[23.466834668346678,69.9853305805382],[23.47763477634777,69.99208488961773],[23.4848348483485,70.00559350777681],[23.50283502835029,70.01065923958646],[23.524435244352446,70.01572497139611],[23.538835388353903,70.02416785774551],[23.488434884348862,70.03429932136481],[23.297632976329766,70.03936505317446],[23.272432724327246,70.04611936225399],[23.17523175231753,70.09171094854082],[23.19323193231932,70.09677668035047],[23.229232292322934,70.09846525762035],[23.24363243632436,70.10184241216012],[23.258032580325818,70.10859672123965],[23.27603276032761,70.11197387577943],[23.358833588335898,70.11535103031918],[23.380433804338054,70.1237939166686],[23.40203402034021,70.14067968936743],[23.380433804338054,70.14912257571683],[23.322833228332286,70.15925403933613],[23.297632976329766,70.16769692568553],[23.32643326433265,70.17613981203496],[23.40203402034021,70.18120554384461],[23.423634236342366,70.19471416200366],[23.330033300333014,70.19302558473379],[23.279632796327974,70.19809131654344],[23.24363243632436,70.21666566651214],[23.27603276032761,70.22510855286154],[23.387633876338782,70.2301742846712],[23.416434164341638,70.23355143921097],[23.488434884348862,70.23524001648084],[23.50283502835029,70.23692859375075],[23.506435064350654,70.24368290283027],[23.531635316353174,70.24368290283027],[23.50283502835029,70.25381436644955],[23.470434704347042,70.25550294371945],[23.2940329403294,70.24368290283027],[23.312033120331222,70.25719152098932],[23.398433984339846,70.2791430254978],[23.571235712357122,70.29096306638698],[23.614436144361463,70.30447168454603],[23.513635136351382,70.2977173754665],[23.517235172351718,70.30616026181593],[23.546035460354602,70.32473461178463],[23.524435244352446,70.32473461178463],[23.481234812348134,70.3162917254352],[23.463234632346342,70.31798030270511],[23.481234812348134,70.32980034359429],[23.513635136351382,70.36526046626182],[23.53523535235354,70.37370335261124],[23.56043560435606,70.37708050715099],[23.589235892358943,70.3872119707703],[23.64323643236432,70.41085205254865],[23.751237512375127,70.44800075248608],[23.816038160381623,70.48683802969336],[23.841238412384143,70.49696949331266],[23.916839168391704,70.50878953420184],[24.186841868418696,70.49359233877291],[24.29844298442984,70.47501798880418],[24.312843128431297,70.46995225699456],[24.334443344433453,70.45982079337526],[24.34884348843488,70.45644363883548],[24.35604356043561,70.463197947915],[24.35604356043561,70.47164083426443],[24.345243452434545,70.47670656607409],[24.31644316443166,70.48346087515361],[24.258842588425892,70.51385526601149],[24.23004230042301,70.52398672963079],[24.1148411484115,70.53749534778984],[24.104041040410408,70.54087250232962],[24.111241112411136,70.54931538867902],[24.212042120421216,70.58477551134658],[24.237242372423736,70.5999727067755],[24.2480424804248,70.6016612840454],[24.25524255242553,70.60334986131528],[24.26604266042662,70.60672701585506],[24.27324273242732,70.61348132493458],[24.276842768427684,70.62361278855388],[24.276842768427684,70.64725287033224],[24.28044280442805,70.65738433395151],[24.294842948429505,70.66582722030094],[24.334443344433453,70.68440157026964],[24.352443524435245,70.69115587934917],[24.370443704437065,70.6894673020793],[24.410044100441013,70.6810244157299],[24.478444784447845,70.68271299299977],[24.50004500045,70.67764726119012],[24.615246152461538,70.62698994309363],[24.647646476464786,70.61854705674423],[24.687246872468734,70.61348132493458],[24.723247232472346,70.62023563401411],[24.737647376473774,70.64387571579246],[24.723247232472346,70.66582722030094],[24.662046620466214,70.68777872480942],[24.64404644046442,70.70297592023834],[24.647646476464786,70.70466449750825],[24.654846548465486,70.7097302293179],[24.586445864458653,70.72155027020708],[24.56844568445686,70.72999315655647],[24.54324543245434,70.7468789292553],[24.53244532445325,70.75025608379508],[24.514445144451457,70.75194466106495],[24.464044640446417,70.75025608379508],[24.34884348843488,70.76376470195413],[24.29124291242914,70.76376470195413],[24.26604266042662,70.77051901103366],[24.244442444424465,70.78402762919274],[24.269642696426985,70.80091340189156],[24.26604266042662,70.82117632913014],[24.269642696426985,70.83806210182897],[24.363243632436337,70.86339076087722],[24.395643956439585,70.86676791541697],[24.41724417244174,70.85325929725792],[24.410044100441013,70.8465049881784],[24.44964449644496,70.84143925636874],[24.464044640446417,70.83468494728922],[24.464044640446417,70.81779917459039],[24.521645216452185,70.81104486551084],[24.57564575645756,70.79922482462166],[24.615246152461538,70.77896189738308],[24.636846368463694,70.77896189738308],[24.65124651246512,70.79922482462166],[24.640446404464058,70.80935628824096],[24.629646296462965,70.81611059732049],[24.60084600846008,70.82624206093979],[24.611646116461174,70.84143925636874],[24.611646116461174,70.85157071998805],[24.611646116461174,70.86001360633745],[24.629646296462965,70.86676791541697],[24.654846548465486,70.8650793381471],[24.68364683646837,70.86001360633745],[24.70884708847089,70.85832502906757],[24.723247232472346,70.8735222244965],[24.636846368463694,70.8937851517351],[24.60804608046081,70.8937851517351],[24.622446224462266,70.90560519262428],[24.629646296462965,70.90729376989415],[24.59364593645938,70.91742523351346],[24.58284582845829,70.92417954259298],[24.57564575645756,70.93599958348216],[24.590045900459018,70.94275389256171],[24.611646116461174,70.94781962437136],[24.636846368463694,70.94950820164124],[24.654846548465486,70.94950820164124],[24.640446404464058,70.95457393345089],[24.604446044460445,70.95626251072076],[24.586445864458653,70.96301681980029],[24.60804608046081,70.96977112887981],[24.636846368463694,70.97483686068946],[24.665646656466578,70.97821401522924],[24.773647736477386,70.96808255160994],[24.78444784447845,70.96639397434006],[24.788047880478814,70.96132824253041],[24.795247952479542,70.95288535618099],[24.806048060480606,70.94781962437136],[24.83484834848349,70.94275389256171],[24.845648456484582,70.93937673802193],[24.86004860048601,70.92755669713276],[24.852848528485282,70.9224909653231],[24.838448384483854,70.91573665624358],[24.820448204482062,70.90729376989415],[24.98604986049861,70.9140480789737],[24.96804968049682,70.92924527440263],[24.978849788497882,70.94613104710146],[24.989649896498975,70.95795108799064],[24.971649716497183,70.96301681980029],[24.99324993249934,70.97145970614972],[25.032850328503287,70.97145970614972],[25.06165061650617,70.95795108799064],[25.054450544505443,70.92755669713276],[25.02565025650256,70.90898234716406],[24.989649896498975,70.89209657446523],[24.950049500495,70.87858795630615],[24.91764917649178,70.8735222244965],[24.932049320493206,70.86845649268687],[24.971649716497183,70.87689937903627],[24.989649896498975,70.87014506995675],[25.004050040500402,70.86170218360732],[25.047250472504743,70.85832502906757],[25.0688506885069,70.85325929725792],[25.0688506885069,70.8735222244965],[25.0760507605076,70.8836536881158],[25.11205112051121,70.90898234716406],[25.133651336513367,70.91911381078333],[25.140851408514095,70.9224909653231],[25.155251552515523,70.91911381078333],[25.158851588515887,70.9140480789737],[25.16245162451625,70.91067092443393],[25.166051660516615,70.90729376989415],[25.180451804518043,70.9039166153544],[25.230852308523083,70.8735222244965],[25.241652416524175,70.86170218360732],[25.266852668526695,70.82624206093979],[25.24525245252454,70.79078193827226],[25.256052560525603,70.79078193827226],[25.266852668526695,70.79415909281204],[25.274052740527424,70.80091340189156],[25.284852848528487,70.80935628824096],[25.29565295652958,70.81273344278074],[25.310053100531007,70.81442202005061],[25.342453424534256,70.81273344278074],[25.349653496534984,70.81948775186027],[25.392853928539296,70.8836536881158],[25.39645396453966,70.90053946081463],[25.385653856538568,70.90729376989415],[25.374853748537504,70.9123595017038],[25.360453604536048,70.92586811986288],[25.34605346053462,70.94106531529181],[25.342453424534256,70.95288535618099],[25.36405364053641,70.97652543795937],[25.418054180541816,70.96470539707019],[25.536855368553688,70.9224909653231],[25.536855368553688,70.91067092443393],[25.526055260552624,70.89716230627488],[25.511655116551168,70.88703084265558],[25.493654936549376,70.87858795630615],[25.443254432544336,70.86339076087722],[25.42165421654218,70.86001360633745],[25.443254432544336,70.84143925636874],[25.464854648546492,70.84481641090849],[25.511655116551168,70.87014506995675],[25.52245522455226,70.86845649268687],[25.540455404554052,70.8549478745278],[25.55485554855548,70.85325929725792],[25.562055620556208,70.8566364517977],[25.58725587255873,70.88027653357605],[25.616056160561612,70.88871941992545],[25.66285662856629,70.89547372900498],[25.7060570605706,70.89547372900498],[25.72405724057242,70.8836536881158],[25.727657276572785,70.87689937903627],[25.734857348573485,70.87014506995675],[25.745657456574577,70.86170218360732],[25.75645756457564,70.86001360633745],[25.767257672576733,70.86339076087722],[25.778057780577825,70.87014506995675],[25.785257852578525,70.87689937903627],[25.78885788857889,70.88027653357605],[25.8248582485825,70.8853422653857],[25.853658536585385,70.8937851517351],[25.88245882458824,70.89547372900498],[25.911259112591125,70.88027653357605],[25.918459184591853,70.8735222244965],[25.92565925659258,70.86339076087722],[25.92565925659258,70.8566364517977],[25.896858968589697,70.84988214271814],[25.868058680586813,70.83468494728922],[25.8248582485825,70.82793063820966],[25.79965799657998,70.81611059732049],[25.752857528575305,70.78402762919274],[25.727657276572785,70.77558474284331],[25.63045630456304,70.76376470195413],[25.634056340563404,70.75532181560473],[25.641256412564132,70.7485675065252],[25.65565655656556,70.736747465636],[25.641256412564132,70.72323884747695],[25.619656196561976,70.71310738385765],[25.59805598055982,70.70466449750825],[25.558455584555844,70.6995987656986],[25.511655116551168,70.67089295211059],[25.4468544685447,70.66245006576116],[25.42885428854288,70.64218713852259],[25.35325353253532,70.60672701585506],[25.306453064530643,70.5999727067755],[25.28845288452885,70.59321839769598],[25.256052560525603,70.5729554704574],[25.23805238052381,70.56451258410797],[25.10125101251012,70.52229815236092],[25.072450724507263,70.50372380239219],[25.24525245252454,70.52736388417057],[25.28845288452885,70.51047811147174],[25.241652416524175,70.48683802969336],[25.06165061650617,70.49021518423314],[25.097650976509783,70.47164083426443],[25.241652416524175,70.47839514334396],[25.28845288452885,70.45644363883548],[25.266852668526695,70.45644363883548],[25.25245252452524,70.44800075248608],[25.24525245252454,70.434492134327],[25.26325263252633,70.405786320739],[25.26325263252633,70.39227770257995],[25.256052560525603,70.3872119707703],[25.198451984519863,70.40072058892935],[25.155251552515523,70.39396627984982],[25.079650796507963,70.35850615718229],[25.09405094050942,70.35512900264251],[25.108451084510847,70.35344042537264],[25.13725137251373,70.35344042537264],[25.11925119251194,70.34668611629311],[25.104851048510483,70.33655465267381],[25.104851048510483,70.32473461178463],[25.122851228512303,70.31798030270511],[25.140851408514095,70.32304603451476],[25.16245162451625,70.33317749813403],[25.18765187651877,70.33993180721359],[25.205652056520563,70.33148892086416],[25.209252092520927,70.3162917254352],[25.2020520205202,70.3078488390858],[25.058050580505807,70.25381436644955],[25.02565025650256,70.24874863463992],[25.014850148501495,70.24537148010015],[25.004050040500402,70.23861717102062],[24.99324993249934,70.23355143921097],[24.989649896498975,70.2301742846712],[24.978849788497882,70.2301742846712],[24.978849788497882,70.22510855286154],[24.978849788497882,70.21835424378202],[24.978849788497882,70.21497708924227],[24.971649716497183,70.20653420289284],[24.964449644496455,70.19809131654344],[24.964449644496455,70.19133700746391],[24.971649716497183,70.17613981203496],[24.964449644496455,70.16938550295544],[24.946449464494663,70.15756546206626],[24.946449464494663,70.14912257571683],[24.9428494284943,70.10184241216012],[24.964449644496455,70.07989090765165],[25.004050040500402,70.06469371222269],[25.03645036450365,70.06469371222269],[25.032850328503287,70.09171094854082],[25.022050220502223,70.10015383489022],[25.01125011250113,70.10859672123965],[25.007650076500767,70.11872818485895],[25.01125011250113,70.13392538028788],[25.029250292502923,70.1423682666373],[25.09405094050942,70.15418830752648],[25.08685086850869,70.14743399844696],[25.072450724507263,70.12717107120835],[25.090450904509055,70.12717107120835],[25.108451084510847,70.13054822574813],[25.122851228512303,70.132236803018],[25.13725137251373,70.12717107120835],[25.104851048510483,70.1221053393987],[25.090450904509055,70.11703960758905],[25.079650796507963,70.10521956669987],[25.09405094050942,70.10015383489022],[25.10125101251012,70.09171094854082],[25.11205112051121,70.08326806219142],[25.13725137251373,70.07820233038177],[25.158851588515887,70.08157948492152],[25.205652056520563,70.09002237127095],[25.22725227252272,70.09171094854082],[25.25245252452524,70.10184241216012],[25.274052740527424,70.1221053393987],[25.310053100531007,70.17107408022531],[25.324453244532464,70.18289412111449],[25.342453424534256,70.18964843019401],[25.360453604536048,70.19471416200366],[25.382053820538204,70.19471416200366],[25.39645396453966,70.19977989381331],[25.414454144541452,70.20991135743262],[25.42885428854288,70.2217313983218],[25.436054360543608,70.23355143921097],[25.450454504545064,70.24874863463992],[25.518855188551896,70.27745444822793],[25.540455404554052,70.2977173754665],[25.518855188551896,70.31122599362558],[25.42165421654218,70.32473461178463],[25.439654396543972,70.34162038448346],[25.65565655656556,70.44124644340653],[25.868058680586813,70.56451258410797],[25.896858968589697,70.5712668931875],[25.92565925659258,70.57633262499715],[25.961659616596165,70.58815266588633],[25.99045990459905,70.60672701585506],[26.012060120601205,70.62698994309363],[26.055260552605546,70.69284445661907],[26.069660696606974,70.71310738385765],[26.0840608406084,70.71648453839742],[26.120061200612014,70.7181731156673],[26.138061380613806,70.72323884747695],[26.145261452614534,70.73168173382638],[26.156061560615626,70.75025608379508],[26.163261632616326,70.7570103928746],[26.19206192061921,70.77389616557343],[26.256862568625706,70.79753624735179],[26.307263072630747,70.83299637001932],[26.37566375663758,70.86845649268687],[26.613266132661323,70.94950820164124],[26.692466924669247,70.95626251072076],[26.688866888668883,70.95288535618099],[26.67806678066782,70.94275389256171],[26.724867248672496,70.92755669713276],[26.717667176671767,70.91573665624358],[26.72126721267213,70.91067092443393],[26.72846728467286,70.90729376989415],[26.732067320673224,70.89716230627488],[26.72846728467286,70.88871941992545],[26.724867248672496,70.88027653357605],[26.706867068670704,70.87014506995675],[26.69606696066961,70.8650793381471],[26.681666816668184,70.86339076087722],[26.67086670866709,70.86001360633745],[26.663666636666363,70.84988214271814],[26.667266672666727,70.83806210182897],[26.67086670866709,70.83130779274944],[26.681666816668184,70.82624206093979],[26.692466924669247,70.82624206093979],[26.70326703267034,70.82961921547957],[26.72126721267213,70.83468494728922],[26.735667356673588,70.83806210182897],[26.74646746467465,70.83299637001932],[26.742867428674288,70.82286490640004],[26.735667356673588,70.81611059732049],[26.717667176671767,70.80429055643131],[26.70326703267034,70.79078193827226],[26.692466924669247,70.77220758830356],[26.685266852668548,70.75532181560473],[26.692466924669247,70.736747465636],[26.642066420664207,70.70635307477812],[26.34326343263433,70.64725287033224],[26.37566375663758,70.63880998398281],[26.498064980649815,70.66076148849129],[26.537665376653763,70.66245006576116],[26.624066240662415,70.65231860214189],[26.656466564665664,70.64049856125268],[26.60246602466026,70.55775827502845],[26.606066060660623,70.5442496568694],[26.591665916659167,70.53580677051997],[26.573665736657375,70.52905246144044],[26.559265592655947,70.51723242055127],[26.559265592655947,70.50372380239219],[26.562865628656283,70.49696949331266],[26.573665736657375,70.49021518423314],[26.580865808658103,70.47670656607409],[26.541265412654127,70.46150937064513],[26.51966519665197,70.44800075248608],[26.512465124651243,70.43111497978725],[26.516065160651607,70.4243606707077],[26.5268652686527,70.41422920708843],[26.5268652686527,70.4074748980089],[26.523265232652335,70.40072058892935],[26.516065160651607,70.3872119707703],[26.512465124651243,70.38045766169077],[26.508865088650907,70.37708050715099],[26.505265052650543,70.37032619807147],[26.505265052650543,70.36357188899194],[26.516065160651607,70.35850615718229],[26.555665556655583,70.35344042537264],[26.566465664656647,70.35681757991242],[26.573665736657375,70.36188331172204],[26.57726577265774,70.3686376208016],[26.584465844658467,70.37370335261124],[26.59526595265953,70.38045766169077],[26.609666096660987,70.38045766169077],[26.634866348663508,70.37708050715099],[26.649266492664935,70.38045766169077],[26.631266312663143,70.40072058892935],[26.62766627666278,70.4074748980089],[26.634866348663508,70.41254062981852],[26.656466564665664,70.4243606707077],[26.663666636666363,70.4260492479776],[26.692466924669247,70.42098351616795],[26.724867248672496,70.42098351616795],[26.75366753667538,70.42773782524748],[26.7788677886779,70.43786928886678],[26.800468004680056,70.4547550615656],[26.80406804068042,70.46995225699456],[26.811268112681148,70.48008372061383],[26.944469444694448,70.48346087515361],[26.93006930069302,70.46657510245478],[26.948069480694812,70.463197947915],[27.052470524705257,70.47670656607409],[27.077670776707777,70.47501798880418],[27.102871028710297,70.46995225699456],[27.092070920709205,70.47501798880418],[27.05607056070562,70.48346087515361],[27.04527045270453,70.48852660696326],[27.027270272702737,70.50372380239219],[26.976869768697696,70.52736388417057],[26.966069660696604,70.53749534778984],[26.991269912699124,70.5442496568694],[27.002070020700216,70.54931538867902],[27.00567005670058,70.55775827502845],[26.98046980469806,70.56451258410797],[26.973269732697332,70.56620116137785],[26.991269912699124,70.58308693407668],[27.02007020070201,70.59828412950563],[27.052470524705257,70.6101041703948],[27.08127081270814,70.61348132493458],[27.08847088470884,70.6101041703948],[27.10647106471066,70.6016612840454],[27.117271172711725,70.5999727067755],[27.128071280712817,70.59828412950563],[27.17127171271713,70.5999727067755],[27.243272432724325,70.58477551134658],[27.26487264872648,70.58477551134658],[27.236072360723625,70.6016612840454],[27.13167131671318,70.62698994309363],[27.099270992709933,70.64049856125268],[27.10647106471066,70.65569575668164],[27.1568715687157,70.6810244157299],[27.13887138871388,70.6894673020793],[27.099270992709933,70.69622161115882],[27.08127081270814,70.70297592023834],[27.110071100711025,70.7283045792866],[27.13887138871388,70.74012462017578],[27.286472864728665,70.74350177471555],[27.31527315273152,70.7384360429059],[27.329673296732977,70.74350177471555],[27.344073440734405,70.7570103928746],[27.318873188731885,70.75869897014448],[27.293672936729365,70.76376470195413],[27.279272792727937,70.77389616557343],[27.290072900729,70.79584767008191],[27.311673116731185,70.81779917459039],[27.32247322473225,70.82286490640004],[27.34767347673477,70.82624206093979],[27.628476284762854,70.80429055643131],[27.480874808748098,70.82624206093979],[27.480874808748098,70.83299637001932],[27.495274952749526,70.83130779274944],[27.509675096750982,70.8363735245591],[27.520475204752046,70.84143925636874],[27.534875348753502,70.8465049881784],[27.52407524075241,70.85157071998805],[27.509675096750982,70.86170218360732],[27.49887498874989,70.86676791541697],[27.49167491674916,70.86676791541697],[27.470074700747006,70.86676791541697],[27.462874628746306,70.87014506995675],[27.459274592745942,70.8752108017664],[27.455674556745578,70.87858795630615],[27.452074520745214,70.87858795630615],[27.444874448744486,70.88027653357605],[27.4088740887409,70.87689937903627],[27.39087390873908,70.87689937903627],[27.38367383673838,70.8836536881158],[27.387273872738746,70.89209657446523],[27.405274052740538,70.90560519262428],[27.4088740887409,70.9140480789737],[27.394473944739445,70.90898234716406],[27.369273692736925,70.8937851517351],[27.354873548735497,70.88703084265558],[27.336873368733706,70.8836536881158],[27.18927189271892,70.89547372900498],[27.153271532715337,70.90560519262428],[27.12087120871209,70.9224909653231],[27.135271352713545,70.94950820164124],[27.149671496714973,70.96301681980029],[27.17127171271713,70.96639397434006],[27.34767347673477,70.94275389256171],[27.34047340473404,70.95288535618099],[27.329673296732977,70.96132824253041],[27.30807308073082,70.97314828341959],[27.290072900729,70.97990259249912],[27.24687246872469,70.98834547884854],[27.23247232472326,70.99678836519794],[27.22167221672217,71.01873986970642],[27.254072540725417,71.02549417878595],[27.477274772747734,71.00691982881725],[27.49887498874989,70.9934112106582],[27.509675096750982,70.96808255160994],[27.527675276752774,70.95626251072076],[27.552875528755294,70.95457393345089],[27.57447574475745,70.96808255160994],[27.567275672756722,70.98159116976899],[27.563675636756386,70.99509978792807],[27.570875708757086,71.00691982881725],[27.581675816758178,71.01705129243655],[27.545675456754566,71.0221170242462],[27.531275312753138,71.02887133332572],[27.527675276752774,71.0406913742149],[27.527675276752774,71.05757714691373],[27.52407524075241,71.06602003326313],[27.52407524075241,71.07446291961256],[27.534875348753502,71.08628296050173],[27.567275672756722,71.09641442412104],[27.610476104761062,71.09303726958126],[27.642876428764282,71.09472584685113],[27.65007650076501,71.12680881497892],[27.714877148771507,71.10485731047044],[27.72567725677257,71.08966011504148],[27.696876968769686,71.06602003326313],[27.722077220772206,71.0592657241836],[27.786877868778703,71.0592657241836],[27.812078120781223,71.05588856964386],[27.855278552785535,71.0406913742149],[27.87687876878769,71.03731421967512],[27.963279632796343,71.04744568329443],[27.9848798487985,71.05588856964386],[27.999279992799927,71.06602003326313],[28.020880208802083,71.07108576507278],[28.042480424804268,71.07108576507278],[28.06048060480606,71.06602003326313],[28.064080640806424,71.06095430145348],[28.064080640806424,71.05588856964386],[28.064080640806424,71.0491342605643],[28.067680676806788,71.04575710602455],[28.082080820808216,71.0406913742149],[28.08568085680858,71.04237995148478],[28.146881468814684,71.07446291961256],[28.168481684816868,71.08290580596196],[28.190081900819024,71.08628296050173],[28.208082080820816,71.08459438323186],[28.233282332823336,71.0778400741523],[28.251282512825128,71.06770861053303],[28.26208262082622,71.05588856964386],[28.251282512825128,71.03900279694503],[28.233282332823336,71.03224848786547],[28.21168211682118,71.02718275605585],[28.197281972819724,71.01705129243655],[28.218882188821908,71.01705129243655],[28.208082080820816,71.01536271516665],[28.200882008820088,71.0119855606269],[28.193681936819388,71.00523125154737],[28.18648186481866,70.99678836519794],[28.200882008820088,70.99847694246782],[28.240482404824064,71.01029698335702],[28.233282332823336,71.00016551973772],[28.226082260822608,70.9934112106582],[28.215282152821544,70.98665690157864],[28.204482044820452,70.98327974703889],[28.233282332823336,70.97652543795937],[28.34488344883451,71.00354267427747],[28.492484924849265,71.00016551973772],[28.532085320853213,70.98327974703889],[28.53928539285394,70.98327974703889],[28.54648546485467,70.97990259249912],[28.550085500855005,70.97314828341959],[28.54648546485467,70.96639397434006],[28.535685356853577,70.95795108799064],[28.52848528485285,70.93937673802193],[28.506885068850693,70.91911381078333],[28.499684996849965,70.91067092443393],[28.481684816848173,70.88871941992545],[28.442084420844225,70.8836536881158],[28.37008370083703,70.88703084265558],[28.384483844838456,70.8752108017664],[28.40248402484025,70.87183364722662],[28.424084240842404,70.87183364722662],[28.44568445684459,70.86676791541697],[28.424084240842404,70.85325929725792],[28.398883988839884,70.8465049881784],[28.34488344883451,70.8465049881784],[28.34488344883451,70.83975067909887],[28.352083520835208,70.8363735245591],[28.355683556835572,70.83468494728922],[28.359283592835936,70.83130779274944],[28.3628836288363,70.82624206093979],[28.226082260822608,70.83299637001932],[28.244082440824428,70.82455348366992],[28.26208262082622,70.81948775186027],[28.301683016830168,70.81273344278074],[28.265682656826584,70.79415909281204],[28.222482224822244,70.78571620646261],[28.17928179281793,70.78233905192283],[28.13608136081362,70.78402762919274],[28.082080820808216,70.79753624735179],[28.06048060480606,70.79922482462166],[28.024480244802447,70.79247051554213],[28.01008010080102,70.79584767008191],[28.013680136801383,70.81273344278074],[27.999279992799927,70.81611059732049],[27.9848798487985,70.81273344278074],[27.974079740797407,70.80766771097109],[27.95967959679598,70.80429055643131],[27.95247952479525,70.79753624735179],[27.822878228782287,70.79078193827226],[27.80847808478086,70.79584767008191],[27.797677976779767,70.79584767008191],[27.772477724777247,70.79247051554213],[27.761677616776183,70.79078193827226],[27.77607776077761,70.78065047465296],[27.812078120781223,70.77727332011321],[27.830078300783015,70.77051901103366],[27.812078120781223,70.765453279224],[27.797677976779767,70.76038754741438],[27.78327783277834,70.75532181560473],[27.772477724777247,70.74350177471555],[27.8588785887859,70.76376470195413],[27.898478984789847,70.76883043376378],[27.988479884798863,70.7570103928746],[27.992079920799227,70.75363323833483],[27.995679956799563,70.74519035198543],[28.006480064800655,70.74350177471555],[28.082080820808216,70.74519035198543],[28.107281072810736,70.74350177471555],[28.12888128881289,70.736747465636],[28.071280712807123,70.70297592023834],[27.93447934479346,70.68777872480942],[27.869678696786963,70.66751579757081],[27.873278732787327,70.66582722030094],[27.87687876878769,70.66076148849129],[27.794077940779403,70.63712140671294],[27.754477544775455,70.63205567490328],[27.722077220772206,70.62192421128398],[27.67527675276753,70.61516990220446],[27.65007650076501,70.60672701585506],[27.794077940779403,70.61348132493458],[28.15408154081541,70.67764726119012],[28.254882548825492,70.71648453839742],[28.283682836828376,70.7181731156673],[28.301683016830168,70.70297592023834],[28.28728287282874,70.65400717941176],[28.233282332823336,70.61516990220446],[28.164881648816504,70.58815266588633],[28.056880568805695,70.55606969775857],[28.03528035280354,70.54087250232962],[27.995679956799563,70.52567530690067],[27.912879128791303,70.51216668874162],[27.873278732787327,70.49865807058256],[27.848078480784807,70.48346087515361],[27.862478624786263,70.46995225699456],[27.869678696786963,70.45813221610535],[27.88407884078842,70.42773782524748],[27.894878948789483,70.43955786613665],[27.912879128791303,70.47332941153431],[27.92727927279273,70.48346087515361],[27.945279452794523,70.48852660696326],[27.981279812798135,70.49696949331266],[27.95967959679598,70.48514945242349],[27.938079380793823,70.46995225699456],[28.056880568805695,70.49359233877291],[28.18648186481866,70.50372380239219],[28.07848078480785,70.47670656607409],[28.05328053280533,70.45982079337526],[28.042480424804268,70.4446235979463],[28.049680496804967,70.44293502067643],[28.089280892808944,70.45137790702583],[28.114481144811464,70.463197947915],[28.12888128881289,70.46995225699456],[28.1108811088111,70.46150937064513],[28.10368103681037,70.4547550615656],[28.107281072810736,70.44631217521618],[28.12888128881289,70.44124644340653],[28.13608136081362,70.44631217521618],[28.17928179281793,70.47670656607409],[28.215282152821544,70.49528091604279],[28.251282512825128,70.51047811147174],[28.29448294482947,70.51723242055127],[28.334083340833416,70.51723242055127],[28.323283232832324,70.49696949331266],[28.301683016830168,70.48683802969336],[28.283682836828376,70.47839514334396],[28.265682656826584,70.46657510245478],[28.247682476824764,70.44800075248608],[28.21168211682118,70.42098351616795],[28.172081720817204,70.3956548571197],[28.16128161281614,70.38214623896064],[28.157681576815776,70.3686376208016],[28.168481684816868,70.35006327083286],[28.172081720817204,70.33317749813403],[28.168481684816868,70.31460314816533],[28.157681576815776,70.28420875730745],[28.157681576815776,70.24706005737002],[28.17928179281793,70.18289412111449],[28.17928179281793,70.15418830752648],[28.168481684816868,70.13561395755778],[28.150481504815048,70.1237939166686],[28.13608136081362,70.1136624530493],[28.100081000810007,70.08833379400104],[28.071280712807123,70.07820233038177],[28.038880388803904,70.07144802130222],[28.013680136801383,70.07144802130222],[28.067680676806788,70.06300513495282],[28.12888128881289,70.08157948492152],[28.182881828818296,70.11535103031918],[28.218882188821908,70.15418830752648],[28.226082260822608,70.17445123476509],[28.218882188821908,70.18627127565426],[28.208082080820816,70.19809131654344],[28.197281972819724,70.21666566651214],[28.197281972819724,70.22679713013144],[28.204482044820452,70.24537148010015],[28.200882008820088,70.25381436644955],[28.197281972819724,70.2605686755291],[28.190081900819024,70.28420875730745],[28.197281972819724,70.30109453000628],[28.215282152821544,70.32980034359429],[28.226082260822608,70.34499753902324],[28.229682296822972,70.36526046626182],[28.229682296822972,70.38383481623052],[28.233282332823336,70.39903201165947],[28.247682476824764,70.41422920708843],[28.258482584825856,70.42098351616795],[28.290882908829104,70.43280355705713],[28.31968319683199,70.43955786613665],[28.323283232832324,70.44800075248608],[28.326883268832688,70.45982079337526],[28.330483304833052,70.46995225699456],[28.352083520835208,70.48346087515361],[28.391683916839185,70.49359233877291],[28.42768427684277,70.49528091604279],[28.460084600846017,70.49021518423314],[28.456484564845653,70.47164083426443],[28.47088470884711,70.4547550615656],[28.4888848888489,70.4446235979463],[28.506885068850693,70.44800075248608],[28.510485104851057,70.45813221610535],[28.506885068850693,70.46657510245478],[28.499684996849965,70.47501798880418],[28.499684996849965,70.48346087515361],[28.510485104851057,70.49190376150301],[28.524885248852485,70.49865807058256],[28.55368553685537,70.50372380239219],[28.55368553685537,70.51047811147174],[28.481684816848173,70.51216668874162],[28.460084600846017,70.51723242055127],[28.406084060840612,70.5442496568694],[28.398883988839884,70.54762681140915],[28.40248402484025,70.55944685229832],[28.47808478084781,70.62698994309363],[28.485284852848537,70.63543282944306],[28.492484924849265,70.65738433395151],[28.499684996849965,70.66751579757081],[28.517685176851785,70.67764726119012],[28.532085320853213,70.67933583845999],[28.575285752857525,70.67427010665034],[28.6148861488615,70.67427010665034],[28.62208622086223,70.67764726119012],[28.611286112861137,70.6894673020793],[28.575285752857525,70.70128734296847],[28.53928539285394,70.7097302293179],[28.524885248852485,70.72155027020708],[28.55368553685537,70.75025608379508],[28.643686436864385,70.78909336100239],[28.694086940869425,70.82961921547957],[28.726487264872645,70.84819356544827],[28.762487624876258,70.86339076087722],[28.794887948879506,70.8735222244965],[29.05769057690577,70.8836536881158],[29.08289082890829,70.88027653357605],[29.104491044910446,70.8735222244965],[29.10089100891011,70.86845649268687],[29.061290612906134,70.86676791541697],[29.061290612906134,70.86001360633745],[29.219692196921983,70.8549478745278],[29.262892628926295,70.83975067909887],[29.262892628926295,70.83468494728922],[29.262892628926295,70.82117632913014],[29.26649266492666,70.81442202005061],[29.273692736927387,70.80935628824096],[29.280892808928087,70.80429055643131],[29.302493024930243,70.79922482462166],[29.381693816938167,70.79247051554213],[29.403294032940323,70.78402762919274],[29.381693816938167,70.76883043376378],[29.295292952929543,70.74350177471555],[29.320493204932063,70.73505888836613],[29.41769417694178,70.736747465636],[29.399693996939988,70.7283045792866],[29.370893708937103,70.72323884747695],[29.320493204932063,70.72323884747695],[29.327693276932763,70.71310738385765],[29.338493384933855,70.708041652048],[29.349293492934947,70.708041652048],[29.363693636936375,70.7097302293179],[29.352893528935283,70.69453303388894],[29.327693276932763,70.6894673020793],[29.302493024930243,70.68777872480942],[29.280892808928087,70.6810244157299],[29.28449284492845,70.67933583845999],[29.288092880928815,70.67764726119012],[29.295292952929543,70.67427010665034],[29.280892808928087,70.66076148849129],[29.306093060930607,70.65231860214189],[29.327693276932763,70.66076148849129],[29.370893708937103,70.6894673020793],[29.39249392493926,70.69791018842872],[29.51849518495186,70.70635307477812],[29.698496984969864,70.74350177471555],[29.74529745297454,70.74350177471555],[29.77769777697779,70.72661600201673],[29.781297812978124,70.6894673020793],[29.763297632976332,70.66413864303107],[29.70209702097023,70.63880998398281],[29.680496804968044,70.62023563401411],[29.824498244982465,70.63374425217316],[29.838898388983893,70.63880998398281],[29.849698496984985,70.64725287033224],[29.856898568985685,70.65569575668164],[29.87129871298714,70.66413864303107],[29.957699576995765,70.70466449750825],[29.993699936999377,70.71310738385765],[30.069300693006937,70.71479596112755],[30.10530105301055,70.71141880658777],[30.20610206102063,70.6810244157299],[30.184501845018445,70.66413864303107],[30.15570155701559,70.65569575668164],[30.09810098100982,70.64725287033224],[30.13050130501307,70.63880998398281],[30.242102421024214,70.63374425217316],[30.335703357033566,70.60672701585506],[30.346503465034658,70.59659555223575],[30.328503285032866,70.58477551134658],[30.26370263702637,70.56957831591762],[30.152101521015226,70.55775827502845],[30.12330123301234,70.55100396594892],[30.12330123301234,70.5442496568694],[30.13770137701377,70.54593823413927],[30.14850148501486,70.54593823413927],[30.159301593015925,70.54087250232962],[30.166501665016654,70.53074103871032],[30.12330123301234,70.53242961598019],[30.040500405004053,70.5442496568694],[30.000900009000105,70.5442496568694],[30.000900009000105,70.53749534778984],[30.16290162901629,70.52398672963079],[30.45810458104583,70.56113542956822],[30.501305013050143,70.55775827502845],[30.580505805058067,70.5425610795995],[30.59850598505986,70.52905246144044],[30.562505625056247,70.51723242055127],[30.731707317073187,70.46826367972466],[30.74250742507425,70.44124644340653],[30.78570785707859,70.42098351616795],[30.81090810908111,70.41422920708843],[30.82530825308254,70.4243606707077],[30.83610836108363,70.43111497978725],[30.92610926109262,70.45644363883548],[30.947709477094776,70.44968932975596],[30.972909729097296,70.42098351616795],[30.987309873098752,70.41422920708843],[31.005310053100544,70.40916347527877],[31.062910629106312,70.36694904353169],[31.048510485104856,70.35681757991242],[31.030510305103064,70.34837469356299],[31.019710197101972,70.33993180721359],[31.023310233102336,70.32473461178463],[31.03411034110343,70.31460314816533],[31.05211052110522,70.30953741635568],[31.066510665106648,70.30109453000628],[31.07731077310774,70.28420875730745],[31.041310413104128,70.28420875730745],[30.933309333093348,70.26394583006885],[30.54810548105482,70.24874863463992],[30.51570515705157,70.23861717102062],[30.51570515705157,70.21666566651214],[30.49050490504905,70.20315704835309],[30.3969039690397,70.19471416200366],[30.375303753037542,70.18627127565426],[30.35730357303575,70.17276265749518],[30.35730357303575,70.16094261660601],[30.38250382503827,70.15418830752648],[30.353703537035386,70.13054822574813],[30.317703177031774,70.11703960758905],[30.144901449014498,70.09171094854082],[30.119701197011977,70.0849566394613],[30.119701197011977,70.07820233038177],[30.134101341013405,70.07313659857212],[30.159301593015925,70.07144802130222],[29.691296912969136,70.0950881030806],[29.219692196921983,70.12041676212883],[29.226892268922683,70.12041676212883],[28.938889388893898,70.1508111529867],[28.65448654486545,70.18289412111449],[28.6148861488615,70.17613981203496],[28.59688596885971,70.16094261660601],[28.75528755287553,70.16769692568553],[28.733687336873373,70.14912257571683],[28.69048690486906,70.13392538028788],[28.643686436864385,70.1237939166686],[28.611286112861137,70.12041676212883],[28.62928629286293,70.10690814396978],[28.66528665286654,70.10015383489022],[28.733687336873373,70.09846525762035],[28.77328773287735,70.11197387577943],[28.787687876878778,70.11197387577943],[28.834488344883454,70.10015383489022],[28.84888848888491,70.09846525762035],[28.84888848888491,70.09171094854082],[28.758887588875893,70.0933995258107],[28.733687336873373,70.0849566394613],[28.92448924489247,70.07313659857212],[28.992889928899302,70.05625082587329],[29.136891368913695,70.05793940314317],[29.129691296912966,70.04780793952386],[29.122491224912267,70.04443078498412],[29.162091620916215,70.04443078498412],[29.18369183691837,70.04274220771421],[29.1908919089191,70.03767647590456],[29.18369183691837,70.03261074409494],[29.129691296912966,70.01741354866598],[29.15849158491585,70.00897066231656],[29.34209342093422,70.01741354866598],[29.388893888938895,70.00559350777681],[29.684096840968408,69.97013338510928],[29.662496624966252,69.9667562305695],[29.576095760957628,69.93636183971162],[29.529295292952924,69.92454179882245],[29.48609486094861,69.91103318066337],[29.439294392943935,69.90090171704406],[29.421294212942144,69.89077025342479],[29.414094140941415,69.88401594434524],[29.41049410494105,69.87895021253561],[29.406894068940687,69.87557305799584],[29.399693996939988,69.86881874891631],[29.388893888938895,69.86544159437653],[29.363693636936375,69.86037586256688],[29.414094140941415,69.85699870802713],[29.43569435694357,69.86206443983679],[29.471694716947184,69.88739309888501],[29.514895148951496,69.90934460339349],[29.53649536495365,69.91441033520314],[29.550895508955108,69.91441033520314],[29.565295652956536,69.91272175793327],[29.576095760957628,69.90934460339349],[29.590495904959056,69.90427887158384],[29.604896048960484,69.90090171704406],[29.630096300963004,69.90765602612362],[29.666096660966616,69.90090171704406],[29.712897128971292,69.91441033520314],[29.741697416974176,69.90765602612362],[29.730897308973084,69.89414740796454],[29.738097380973812,69.88570452161514],[29.74529745297454,69.87726163526571],[29.741697416974176,69.86544159437653],[29.774097740977425,69.8384243580584],[29.756097560975604,69.82829289443913],[29.738097380973812,69.80296423539087],[29.698496984969864,69.79283277177157],[29.648096480964824,69.772569844533],[29.64449644496446,69.76412695818357],[29.64449644496446,69.75568407183417],[29.626496264962668,69.7539954945643],[29.612096120961212,69.74555260821487],[29.601296012960148,69.73373256732569],[29.590495904959056,69.72191252643651],[29.5688956889569,69.71684679462686],[29.529295292952924,69.71346964008708],[29.507695076950768,69.70840390827746],[29.54369543695438,69.70840390827746],[29.532895328953288,69.69489529011838],[29.507695076950768,69.67632094014968],[29.48609486094861,69.66112374472073],[29.522095220952224,69.66787805380025],[29.53649536495365,69.6746323628798],[29.5688956889569,69.69489529011838],[29.680496804968044,69.73542114459556],[29.716497164971656,69.74048687640521],[29.8208982089821,69.74386403094499],[29.900099000990025,69.73710972186547],[29.907299072990725,69.73710972186547],[29.993699936999377,69.76750411272334],[30.02970029700299,69.77594699907274],[30.06210062100621,69.77088126726312],[30.044100441004417,69.76074980364382],[30.018900189001897,69.73710972186547],[30.000900009000105,69.72528968097629],[29.95409954099543,69.71515821735699],[29.93609936099361,69.70502675373768],[29.939699396993973,69.68814098103886],[29.95409954099543,69.70502675373768],[29.97929979299795,69.71346964008708],[30.02970029700299,69.72191252643651],[30.0729007290073,69.74048687640521],[30.08010080100803,69.73879829913534],[30.101701017010186,69.71684679462686],[30.116101161011613,69.70671533100756],[30.17370173701738,69.68645240376898],[30.184501845018445,69.68814098103886],[30.18810188101881,69.69489529011838],[30.18090180901811,69.7016495991979],[30.16290162901629,69.71178106281721],[30.12330123301234,69.74386403094499],[30.108901089010885,69.75568407183417],[30.13050130501307,69.76074980364382],[30.18810188101881,69.7624383809137],[30.20610206102063,69.77088126726312],[30.209702097020966,69.78438988542217],[30.195301953019538,69.79283277177157],[30.17370173701738,69.801275658121],[30.159301593015925,69.8114071217403],[30.166501665016654,69.82322716262948],[30.166501665016654,69.84686724440783],[30.166501665016654,69.86881874891631],[30.166501665016654,69.87895021253561],[30.242102421024214,69.87895021253561],[30.28890288902889,69.88570452161514],[30.303303033030346,69.88401594434524],[30.324903249032502,69.86713017164641],[30.317703177031774,69.85868728529701],[30.267302673026734,69.84517866713796],[30.299702997029982,69.8384243580584],[30.371703717037178,69.84686724440783],[30.3969039690397,69.8384243580584],[30.404104041040426,69.83167004897888],[30.404104041040426,69.82322716262948],[30.404104041040426,69.81309569901018],[30.404104041040426,69.80465281266078],[30.411304113041126,69.7827013081523],[30.411304113041126,69.7810127308824],[30.41490414904149,69.73710972186547],[30.411304113041126,69.7016495991979],[30.38970389703897,69.67969809468946],[30.335703357033566,69.6746323628798],[30.360903609036086,69.66787805380025],[30.429304293042946,69.6746323628798],[30.443704437044374,69.67800951741955],[30.44730447304474,69.68814098103886],[30.450904509045102,69.71515821735699],[30.44730447304474,69.72697825824616],[30.44730447304474,69.73373256732569],[30.461704617046166,69.73710972186547],[30.46530465304653,69.74217545367512],[30.46530465304653,69.74724118548474],[30.46530465304653,69.75230691729439],[30.461704617046166,69.76412695818357],[30.454504545045467,69.772569844533],[30.450904509045102,69.7810127308824],[30.461704617046166,69.7911441945017],[30.450904509045102,69.8097185444704],[30.48330483304835,69.81816143081983],[30.69930699306994,69.80802996720053],[30.720907209072095,69.79789850358122],[30.706507065070667,69.79283277177157],[30.69930699306994,69.7827013081523],[30.702907029070303,69.77425842180287],[30.71730717307173,69.77088126726312],[30.731707317073187,69.772569844533],[30.74970749707498,69.77763557634265],[30.782107821078228,69.7911441945017],[30.789307893078927,69.7911441945017],[30.839708397083967,69.80634138993065],[31.030510305103064,69.77763557634265],[31.13491134911351,69.77594699907274],[31.16731167311673,69.77088126726312],[31.199711997119977,69.75737264910404],[31.214112141121433,69.75568407183417],[31.224912249122497,69.75737264910404],[31.250112501125017,69.7624383809137],[31.26091260912611,69.76412695818357],[31.282512825128265,69.76074980364382],[31.307713077130785,69.75230691729439],[31.350913509135097,69.73204399005581],[31.372513725137253,69.72697825824616],[31.39411394113941,69.72360110370639],[31.408514085140865,69.71515821735699],[31.4049140491405,69.69489529011838],[31.401314013140137,69.68814098103886],[31.39411394113941,69.68138667195933],[31.383313833138345,69.67632094014968],[31.376113761137617,69.6746323628798],[31.36891368913689,69.67125520834003],[31.365313653136525,69.6645008992605],[31.365313653136525,69.65774659018098],[31.36171361713619,69.65099228110142],[31.347313473134733,69.63917224021225],[31.296912969129693,69.61215500389415],[31.325713257132577,69.6155321584339],[31.35451354513546,69.62735219932307],[31.451714517145177,69.68814098103886],[31.476914769147697,69.69827244465816],[31.52011520115201,69.68814098103886],[31.5309153091531,69.69320671284851],[31.541715417154165,69.69827244465816],[31.55611556115562,69.7016495991979],[31.811718117181186,69.68814098103886],[31.79731797317973,69.70502675373768],[31.77211772117721,69.71346964008708],[31.72171721717217,69.72528968097629],[31.700117001170014,69.73710972186547],[31.700117001170014,69.74386403094499],[31.728917289172898,69.77088126726312],[31.718117181171806,69.78945561723182],[31.707317073170742,69.80802996720053],[31.710917109171106,69.82660431716923],[31.728917289172898,69.84517866713796],[31.754117541175418,69.85362155348736],[31.84771847718477,69.85362155348736],[31.869318693186926,69.8485558216777],[31.90531905319054,69.829981471709],[31.962919629196307,69.81647285354995],[32.027720277202775,69.7827013081523],[32.05652056520566,69.77763557634265],[32.06012060120602,69.77932415361252],[32.06732067320675,69.78438988542217],[32.078120781207815,69.78945561723182],[32.09972099720997,69.7911441945017],[32.09972099720997,69.79452134904147],[32.09972099720997,69.801275658121],[32.09972099720997,69.80802996720053],[32.09252092520927,69.81478427628005],[32.04932049320493,69.84180151259818],[31.995319953199527,69.86375301710666],[31.9809198091981,69.87388448072596],[31.9809198091981,69.87895021253561],[31.9809198091981,69.89583598523444],[31.9809198091981,69.90090171704406],[31.97371973719737,69.90427887158384],[31.919719197191966,69.92623037609232],[31.912519125191267,69.93636183971162],[31.92331923319233,69.95155903514055],[31.94131941319415,69.96506765329963],[31.962919629196307,69.97013338510928],[31.984519845198463,69.97013338510928],[32.052920529205295,69.96337907602972],[32.24012240122403,69.88401594434524],[32.26892268922691,69.87557305799584],[32.3589235892359,69.87895021253561],[32.39852398523985,69.87388448072596],[32.488524885248864,69.85024439894761],[32.52452524525245,69.83167004897888],[32.50292502925029,69.82153858535958],[32.506525065250656,69.8114071217403],[32.52452524525245,69.80296423539087],[32.62532625326253,69.7827013081523],[32.72612726127261,69.7911441945017],[32.92052920529207,69.77932415361252],[33.006930069300694,69.75906122637392],[33.050130501305034,69.74048687640521],[33.06453064530646,69.73879829913534],[33.082530825308254,69.74555260821487],[33.100531005310074,69.74892976275464],[33.118531185311866,69.74386403094499],[33.132931329313294,69.72866683551604],[33.12933129331293,69.72528968097629],[33.118531185311866,69.69151813557863],[33.1149311493115,69.68476382649908],[33.11133111331114,69.67800951741955],[33.1149311493115,69.67125520834003],[33.118531185311866,69.6645008992605],[33.118531185311866,69.66112374472073],[33.1149311493115,69.6543694356412],[33.107731077310774,69.64930370383155],[33.075330753307554,69.63241793113272],[33.03573035730358,69.6172207357038],[32.87012870128703,69.58176061303624],[32.50292502925029,69.63241793113272],[32.438124381243824,69.64930370383155],[32.42012420124203,69.64930370383155],[32.36972369723699,69.64086081748215],[32.22212222122221,69.6543694356412],[32.18972189721899,69.65268085837133],[32.16812168121683,69.6543694356412],[32.1609216092161,69.66112374472073],[32.1609216092161,69.66787805380025],[32.16452164521647,69.6729437856099],[32.17172171721717,69.67632094014968],[32.17532175321753,69.68138667195933],[32.17532175321753,69.69489529011838],[32.178921789217895,69.70502675373768],[32.178921789217895,69.71515821735699],[32.17532175321753,69.72866683551604],[32.1609216092161,69.74217545367512],[32.14652146521465,69.75061834002452],[32.128521285212855,69.75568407183417],[32.11052110521106,69.75230691729439],[32.1069210692107,69.74555260821487],[32.11052110521106,69.73542114459556],[32.11772117721179,69.72191252643651],[32.11772117721179,69.70840390827746],[32.103321033210335,69.6746323628798],[32.06012060120602,69.65943516745085],[31.96651966519667,69.6543694356412],[31.995319953199527,69.6459265492918],[32.027720277202775,69.64254939475202],[32.05652056520566,69.6357950856725],[32.06372063720639,69.61890931297367],[32.052920529205295,69.60371211754472],[32.03132031320314,69.59189207665554],[32.01692016920171,69.58007203576636],[32.01692016920171,69.56487484033741],[32.07452074520745,69.59020349938567],[32.13212132121322,69.59864638573507],[32.19332193321935,69.59189207665554],[32.254522545225456,69.57838345849649],[32.286922869228704,69.57500630395671],[32.387723877238784,69.58513776757601],[32.39852398523985,69.58344919030614],[32.41652416524167,69.58007203576636],[32.42732427324273,69.57500630395671],[32.43452434524346,69.56487484033741],[32.42732427324273,69.55980910852776],[32.40212402124021,69.54461191309883],[32.39132391323915,69.5361690267494],[32.42012420124203,69.5361690267494],[32.50292502925029,69.5175946767807],[32.4849248492485,69.50408605862165],[32.463324633246344,69.50239748135175],[32.44172441724419,69.50408605862165],[32.42012420124203,69.50239748135175],[32.405724057240576,69.49395459500235],[32.380523805238056,69.47369166776375],[32.36612366123663,69.4686259359541],[32.32292322923229,69.46187162687457],[32.24012240122403,69.43654296782634],[32.19332193321935,69.43485439055644],[32.236522365223664,69.42303434966726],[32.29052290522907,69.43147723601669],[32.387723877238784,69.46187162687457],[32.39852398523985,69.46356020414447],[32.40932409324094,69.46187162687457],[32.42012420124203,69.46524878141435],[32.430924309243096,69.47200309049387],[32.44892448924489,69.4888888631927],[32.456124561245616,69.49226601773248],[32.47052470524707,69.49564317227222],[32.49572495724959,69.49057744046257],[32.52092520925211,69.4888888631927],[32.52812528125281,69.4888888631927],[32.531725317253176,69.49226601773248],[32.531725317253176,69.49564317227222],[32.53532535325354,69.5074632131614],[32.53532535325354,69.5091517904313],[32.5569255692557,69.50577463589153],[32.589325893258945,69.48551170865292],[32.60372603726037,69.48382313138305],[32.64332643326435,69.4973317495421],[32.664926649266505,69.50239748135175],[32.68652686526866,69.50239748135175],[32.790927909279105,69.4888888631927],[32.848528485284874,69.49226601773248],[32.87732877328773,69.49057744046257],[32.898928989289914,69.48213455411317],[32.82692826928269,69.45849447233482],[32.790927909279105,69.44329727690587],[32.76932769327695,69.41459146331786],[32.891728917289186,69.46187162687457],[32.9889298892989,69.47538024503365],[33.08613086130862,69.47538024503365],[32.8629286292863,69.36562272249125],[32.83772837728378,69.3318511770936],[32.81972819728199,69.31834255893455],[32.80532805328053,69.3048339407755],[32.81252812528126,69.30145678623572],[32.82332823328235,69.30145678623572],[32.83412834128342,69.30314536350559],[32.85572855728557,69.31158824985502],[32.8629286292863,69.31158824985502],[32.873728737287394,69.31158824985502],[32.88452884528846,69.31158824985502],[32.88812888128882,69.31158824985502],[32.89532895328955,69.31496540439477],[32.90612906129061,69.32509686801407],[32.924129241292434,69.34873694979242],[32.95292952929529,69.37744276338043],[32.97092970929711,69.38757422699973],[32.9889298892989,69.39432853607926],[33.29493294932951,69.44329727690587],[33.31653316533166,69.45174016325527],[33.327333273332755,69.45174016325527],[33.34893348933491,69.43823154509622],[33.36333363333634,69.43485439055644],[33.377733777337795,69.43654296782634],[33.42093420934211,69.44836300871552],[33.44613446134463,69.44667443144564],[33.49653496534967,69.43147723601669],[33.52533525335255,69.42810008147691],[33.50373503735037,69.40277142242869],[33.47493474934751,69.39432853607926],[33.4389343893439,69.38757422699973],[33.41373413734138,69.37237703157078],[33.435334353343535,69.37237703157078],[33.49653496534967,69.37913134065033],[33.46773467734678,69.35717983614185],[33.402934029340315,69.32678544528395],[33.377733777337795,69.30821109531524],[33.34533345333455,69.29639105442607],[33.26253262532626,69.29132532261642],[33.233732337323374,69.26937381810794],[33.25533255332553,69.26937381810794],[33.276932769327715,69.27275097264771],[33.29853298532987,69.27781670445736],[33.30573305733057,69.28288243626702],[33.39933399333995,69.29132532261642],[33.44613446134463,69.28794816807667],[33.47493474934751,69.26937381810794],[33.384933849338495,69.24911089086936],[33.33813338133382,69.24742231359949],[33.31653316533166,69.24235658178983],[33.29493294932951,69.22884796363076],[33.37053370533707,69.23560227271028],[33.40653406534065,69.22884796363076],[33.40653406534065,69.20858503639218],[33.4389343893439,69.21196219093193],[33.47493474934751,69.22209365455123],[33.510935109351095,69.22547080909101],[33.54333543335434,69.20858503639218],[33.510935109351095,69.18494495461383],[33.39213392133922,69.15117340921617],[33.31653316533166,69.11909044108839],[33.29133291332914,69.11233613200886],[33.233732337323374,69.10895897746909],[33.158131581315814,69.09545035931004],[33.107731077310774,69.09207320477026],[33.0609306093061,69.08363031842086],[33.024930249302514,69.0583016593726],[33.017730177301786,69.03803873213403],[33.01053010530106,69.00764434127612],[33.01413014130142,68.97556137314837],[33.024930249302514,68.95529844590976],[33.03933039330394,68.97724995041824],[33.04653046530467,69.03466157759425],[33.06453064530646,69.0583016593726],[33.11133111331114,69.07518743207143],[33.226532265322675,69.07687600934133],[33.32013320133203,69.09713893657991],[33.377733777337795,69.09713893657991],[33.42813428134281,69.10389324565944],[33.44973449734499,69.12922190470769],[33.45693456934569,69.14104194559687],[33.47133471334715,69.15117340921617],[33.561335613356135,69.18156780007405],[33.5649356493565,69.18832210915357],[33.57573575735759,69.19845357277288],[33.57573575735759,69.21365076820183],[33.5649356493565,69.24235658178983],[33.56853568535686,69.24573373632958],[33.57573575735759,69.25248804540911],[33.57933579335793,69.25586519994889],[33.57573575735759,69.26093093175854],[33.57213572135723,69.26768524083806],[33.56853568535686,69.27275097264771],[33.5649356493565,69.26937381810794],[33.561335613356135,69.28625959080676],[33.5649356493565,69.29301389988632],[33.57213572135723,69.3048339407755],[33.593735937359384,69.32003113620442],[33.618936189361904,69.32847402255385],[33.72333723337235,69.33691690890325],[33.73413734137341,69.3318511770936],[33.74133741337414,69.3234082907442],[33.737737377373776,69.31496540439477],[33.73413734137341,69.30989967258512],[33.72333723337235,69.3048339407755],[33.74133741337414,69.30652251804537],[33.77733777337775,69.31665398166467],[33.795337953379544,69.31665398166467],[33.813338133381336,69.31158824985502],[33.83493834938349,69.30821109531524],[33.85653856538565,69.30652251804537],[33.87453874538747,69.31158824985502],[33.86733867338674,69.31665398166467],[33.86013860138601,69.32509686801407],[33.85293852938531,69.33860548617315],[34.13734137341373,69.32509686801407],[34.42174421744218,69.31158824985502],[34.414544145441454,69.29301389988632],[34.4469444694447,69.28288243626702],[34.540545405454054,69.26937381810794],[34.583745837458395,69.27275097264771],[34.60534605346055,69.26937381810794],[34.64854648546486,69.25248804540911],[34.66294662946629,69.24911089086936],[34.98334983349835,69.22884796363076],[34.976149761497624,69.22209365455123],[34.961749617496196,69.20351930458253],[34.95454954549547,69.1950764182331],[34.97254972549726,69.19338784096323],[34.99054990549905,69.20183072731263],[35.012150121501236,69.21365076820183],[35.03015030150303,69.22209365455123],[35.087750877508796,69.22547080909101],[35.11655116551165,69.2237822318211],[35.14175141751417,69.2153393454717],[35.145351453514536,69.20858503639218],[35.145351453514536,69.20183072731263],[35.14175141751417,69.196764995503],[35.145351453514536,69.19169926369335],[35.15615156151563,69.18325637734392],[35.170551705517056,69.18156780007405],[35.18135181351815,69.18325637734392],[35.195751957519576,69.18832210915357],[35.213752137521396,69.1950764182331],[35.228152281522824,69.2052078818524],[35.24255242552425,69.21196219093193],[35.26415264152644,69.2153393454717],[35.246152461524616,69.23560227271028],[35.177751777517784,69.25755377721876],[35.1489514895149,69.26937381810794],[35.18135181351815,69.27950528172724],[35.271352713527136,69.27106239537784],[35.328953289532905,69.27612812718749],[35.807758077580786,69.196764995503],[35.872558725587254,69.1950764182331],[35.922959229592294,69.18156780007405],[35.966159661596635,69.1765020682644],[35.99495994959949,69.1663706046451],[36.02016020160201,69.15286198648604],[36.041760417604195,69.13597621378722],[36.05616056160562,69.12753332743779],[36.066960669606715,69.12753332743779],[36.09576095760957,69.13259905924744],[36.250562505625055,69.11064755473896],[36.27216272162721,69.09882751384978],[36.26496264962651,69.07856458661121],[36.31176311763119,69.0583016593726],[36.51696516965171,69.0295958457846],[36.68976689766899,68.98231568222789],[36.704167041670416,68.98062710495802],[36.71496714967151,68.98062710495802],[36.72936729367294,68.97893852768811],[36.74016740167403,68.97218421860859],[36.75096750967509,68.96205275498929],[36.75456754567546,68.95867560044954],[36.76536765367655,68.95529844590976],[36.79056790567907,68.95023271410011],[36.84096840968411,68.94516698229046],[37.013770137701385,68.89450966419398],[37.02817028170281,68.8826896233048],[37.04257042570427,68.8742467369554],[37.096570965709674,68.86073811879635],[37.190171901719026,68.85060665517705],[37.20817208172082,68.8455409233674],[37.222572225722274,68.83372088247822],[37.23337233372334,68.82021226431914],[37.24417244172443,68.80839222342996],[37.26217262172622,68.80332649162031],[37.3089730897309,68.79994933708056],[37.355773557735574,68.78981787346126],[37.373773737737395,68.78306356438173],[37.40977409774098,68.76111205987326],[37.4349743497435,68.75435775079373],[37.45297452974532,68.74422628717443],[37.46377463774638,68.74253770990455],[37.499774997749995,68.74084913263465],[37.524975249752515,68.73578340082503],[37.57177571775719,68.73578340082503],[37.57897578975792,68.73409482355513],[37.58617586175862,68.72396335993582],[37.679776797768,68.71383189631655],[37.701377013770156,68.70370043269725],[37.73017730177301,68.68512608272854],[37.8129781297813,68.66148600095016],[37.94617946179463,68.6006972192344],[37.98937989379894,68.5703028283765],[38.02538025380255,68.55341705567767],[38.03978039780398,68.5432855920584],[38.04698046980471,68.53484270570897],[38.061380613806136,68.51626835574027],[38.0649806498065,68.50951404666074],[38.09018090180902,68.50107116031131],[38.14778147781479,68.49938258304144],[38.17658176581767,68.49600542850166],[38.20178201782019,68.48418538761248],[38.20538205382056,68.48249681034261],[38.20898208982089,68.47911965580283],[38.20898208982089,68.47236534672331],[38.20898208982089,68.46392246037391],[38.21618216182162,68.46054530583413],[38.3169831698317,68.44703668767508],[38.33138331383316,68.44197095586543],[38.34938349383495,68.41833087408708],[38.39258392583926,68.39975652411835],[38.3889838898389,68.34234489694234],[38.42498424984251,68.33727916513268],[38.428584285842874,68.34234489694234],[38.43218432184324,68.34909920602189],[38.43578435784357,68.35585351510142],[38.4429844298443,68.35923066964116],[38.45018450184503,68.35585351510142],[38.46458464584646,68.34741062875199],[38.471784717847186,68.34403347421224],[38.49338493384934,68.34234489694234],[38.71658716587166,68.29168757884585],[38.7669876698767,68.28999900157598],[38.705787057870594,68.31195050608446],[38.604986049860514,68.33221343332306],[38.53298532985332,68.35585351510142],[38.511385113851134,68.36598497872069],[38.511385113851134,68.37611644233999],[38.536585365853654,68.3778050196099],[38.586985869858694,68.35923066964116],[38.61578615786158,68.36429640145082],[38.597785977859786,68.38118217414964],[38.612186121861214,68.38793648322917],[38.637386373863734,68.38455932868942],[38.662586625866254,68.37949359687977],[38.759787597876,68.33727916513268],[38.79218792187922,68.32883627878329],[38.90378903789039,68.31701623789411],[38.92538925389255,68.31026192881458],[38.9469894698947,68.30013046519528],[38.95058950589507,68.28662184703623],[38.92898928989291,68.27649038341693],[38.95418954189543,68.26635891979763],[39.033390333903355,68.25116172436867],[39.25299252992531,68.17011001541431],[39.35739357393575,68.1498470881757],[39.51939519395194,68.07554968830087],[39.60939609396095,68.06372964741169],[39.68859688596888,68.06204107014182],[39.73899738997392,68.04853245198277],[39.80019800198002,68.05190960652251],[39.828998289982906,68.04684387471286],[39.839798397984,68.04346672017311],[39.85059850598506,68.04177814290321],[39.85779857798579,68.04684387471286],[39.861398613986154,68.05697533833217],[39.85779857798579,68.05697533833217],[39.84339843398436,68.07048395649124],[39.79299792997932,68.11776412004795],[39.78219782197823,68.12789558366725],[39.7209972099721,68.15828997452513],[39.71019710197103,68.16842143814443],[39.7209972099721,68.17348716995409],[39.77139771397714,68.17011001541431],[39.79299792997932,68.16504428360466],[39.86859868598685,68.12958416093713],[39.911799117991194,68.1228298518576],[39.92259922599226,68.11438696550817],[39.92259922599226,68.10087834734912],[39.929799297992986,68.08568115192017],[39.944199441994414,68.06710680195147],[39.99099990999912,68.02826952474416],[40.005400054000546,68.01982663839476],[40.019800198001974,68.01644948385498],[40.037800378003794,68.01476090658511],[40.05940059400595,68.00969517477546],[40.07740077400774,68.00294086569593],[40.120601206012054,67.97085789756815],[40.14940149401494,67.9573492794091],[40.29340293402936,67.91344627039214],[40.297002970029695,67.91006911585237],[40.30060300603006,67.90500338404271],[40.30420304203042,67.90162622950297],[40.32580325803258,67.90669196131262],[40.340203402034035,67.90838053858249],[40.3510035100351,67.90669196131262],[40.36180361803619,67.90331480677284],[40.41220412204123,67.87460899318484],[40.41940419404196,67.86616610683544],[40.4050040500405,67.85265748867636],[40.372603726037255,67.84928033413661],[40.322203222032215,67.85096891140648],[40.322203222032215,67.84421460232696],[40.38340383403835,67.79862301604012],[40.466204662046636,67.76147431610269],[40.50220502205022,67.74965427521352],[40.53820538205383,67.75472000702317],[40.567005670056716,67.78342582061117],[40.567005670056716,67.78849155242082],[40.56340563405635,67.79524586150035],[40.55980559805599,67.80031159331],[40.56340563405635,67.80706590238952],[40.574205742057416,67.8104430569293],[40.58860588605887,67.81213163419918],[40.61380613806139,67.8104430569293],[40.65340653406534,67.81382021146905],[40.67140671406716,67.8104430569293],[40.67860678606786,67.79355728423047],[40.68580685806859,67.7817372433413],[40.700207002070016,67.77329435699187],[40.732607326073264,67.76316289337257],[40.801008010080096,67.72770277070504],[40.84060840608407,67.72432561616529],[40.92340923409236,67.73445707978456],[40.96660966609667,67.72432561616529],[41.01701017010171,67.69730837984716],[41.03861038610387,67.67704545260855],[41.0530105301053,67.6534053708302],[41.0530105301053,67.61963382543254],[41.03141031410314,67.59937089819397],[41.00621006210062,67.58248512549514],[40.98820988209883,67.56391077552641],[40.98820988209883,67.55546788917701],[41.00621006210062,67.54364784828783],[41.01341013410135,67.5352049619384],[41.01341013410135,67.52845065285888],[41.009810098100985,67.52507349831913],[41.00621006210062,67.52000776650948],[41.00621006210062,67.5166306119697],[41.00621006210062,67.49130195292148],[41.00261002610026,67.4794819120323],[40.99900999009992,67.46766187114312],[41.060210602106025,67.46597329387322],[41.08901089010891,67.4592189847937],[41.11421114211143,67.44739894390452],[41.14661146611468,67.42375886212616],[41.15021150211504,67.42375886212616],[41.14661146611468,67.41193882123699],[41.13941139411395,67.39505304853816],[41.135811358113585,67.38492158491886],[41.135811358113585,67.33595284409225],[41.13221132211322,67.30893560777415],[41.12141121411216,67.28698410326567],[41.110611106111065,67.25321255786801],[41.13941139411395,67.23463820789931],[41.243812438124394,67.21268670339083],[41.26541265412655,67.22112958974023],[41.287012870128706,67.22957247608966],[41.30861308613086,67.23463820789931],[41.319413194131954,67.23126105335953],[41.34101341013411,67.22450674428],[41.35541355413554,67.2143752806607],[41.362613626136266,67.2042438170414],[41.3590135901359,67.19073519888235],[41.337413374133746,67.17047227164375],[41.337413374133746,67.16034080802444],[41.344613446134474,67.14852076713527],[41.38061380613806,67.13670072624609],[41.39141391413915,67.12488068535691],[41.38421384213842,67.10968348992799],[41.36621366213663,67.10124060357856],[41.3518135181352,67.09617487176891],[41.34101341013411,67.08773198541951],[41.34101341013411,67.04720613094233],[41.34821348213484,67.0303203582435],[41.35541355413554,67.02187747189407],[41.3590135901359,67.01343458554467],[41.34821348213484,67.0016145446555],[41.33021330213302,66.99823739011572],[41.3050130501305,67.0016145446555],[41.27981279812798,67.0016145446555],[41.269012690126914,66.98810592649642],[41.27621276212764,66.98135161741689],[41.29061290612907,66.97290873106749],[41.3050130501305,66.96277726744819],[41.3050130501305,66.94926864928911],[41.269012690126914,66.9019884857324],[41.1790117901179,66.80911673588886],[41.14661146611468,66.78885380865026],[41.04221042210423,66.7449507996333],[40.91620916209163,66.67234197702837],[40.86220862208623,66.65207904978976],[40.833408334083344,66.63181612255119],[40.81540815408155,66.62168465893188],[40.7938079380794,66.61493034985236],[40.76140761407615,66.60648746350293],[40.743407434074356,66.59804457715353],[40.7290072900729,66.58453595899445],[40.718207182071836,66.56933876356553],[40.71460714607147,66.55583014540645],[40.718207182071836,66.54907583632692],[40.718207182071836,66.5423215272474],[40.70380703807038,66.52881290908832],[40.67140671406716,66.51192713638949],[40.63540635406355,66.50686140457987],[40.6030060300603,66.49672994096056],[40.57780577805778,66.46802412737256],[40.567005670056716,66.45620408648338],[40.50580505805058,66.44100689105443],[40.44460444604448,66.4055467683869],[40.40140401404014,66.39372672749772],[40.30780307803079,66.38190668660854],[40.15660156601567,66.32956079124216],[40.08460084600847,66.28903493676498],[39.85059850598506,66.24513192774805],[39.810998109981114,66.2299347323191],[39.77139771397714,66.22486900050944],[39.702997029970305,66.20629465054074],[39.46539465394656,66.17927741422261],[39.38619386193864,66.14550586882496],[39.342993429934296,66.13537440520565],[39.06219062190624,66.1032914370779],[38.97218972189722,66.1117343234273],[38.95058950589507,66.10835716888752],[38.93618936189364,66.101602859808],[38.554585545855474,66.05432269625129],[38.24138241382414,66.07120846895012],[37.928179281792836,66.08809424164895],[37.82017820178203,66.1117343234273],[37.65457654576548,66.12355436431648],[37.54657546575467,66.14550586882496],[37.43857438574386,66.19278603238166],[37.35937359373594,66.20460607327084],[37.272972729727314,66.2299347323191],[36.887768877688785,66.28565778222523],[36.83016830168302,66.28396920495533],[36.75096750967509,66.2957892458445],[36.63216632166322,66.2873463594951],[36.52416524165241,66.30085497765415],[36.40536405364054,66.29410066857463],[36.275762757627575,66.32111790489276],[36.023760237602374,66.34138083213134],[35.771757717577174,66.36164375936994],[35.67095670956709,66.38697241841817],[35.55935559355595,66.38697241841817],[35.379353793537945,66.41736680927607],[35.31455314553148,66.45620408648338],[35.22455224552246,66.46971270464243],[35.18135181351815,66.48153274553161],[34.886148861488635,66.5997331544234],[34.80334803348035,66.61324177258246],[34.72414724147242,66.59466742261375],[34.6449464494645,66.56427303175587],[34.565745657456574,66.5423215272474],[34.52974529745299,66.53725579543774],[34.47934479344795,66.53725579543774],[34.432544325443274,66.54738725905705],[34.39654396543966,66.59297884534388],[34.36774367743678,66.61155319531258],[34.356943569435714,66.63012754528128],[34.3929439294393,66.64532474071024],[34.42174421744218,66.64701331798011],[34.475744757447586,66.63688185436081],[34.50454504545047,66.63857043163071],[34.526145261452626,66.64870189524999],[34.52254522545226,66.65714478159941],[34.50454504545047,66.66221051340906],[34.490144901449014,66.65883335886929],[34.49734497344974,66.65207904978976],[34.46854468544686,66.64532474071024],[34.28494284942849,66.67234197702837],[34.21294212942129,66.67234197702837],[34.20214202142023,66.67403055429824],[34.18414184141841,66.68416201791754],[34.173341733417345,66.68753917245729],[34.16974169741698,66.68416201791754],[34.1409414094141,66.67065339975846],[34.13014130141303,66.66896482248859],[34.11574115741158,66.66896482248859],[34.09054090540906,66.67234197702837],[34.13374133741337,66.6976706360766],[34.15174151741519,66.71455640877542],[34.16254162541625,66.73481933601403],[34.16254162541625,66.74326222236343],[34.15894158941589,66.75339368598273],[34.15534155341555,66.76352514960203],[34.15534155341555,66.76859088141168],[34.1409414094141,66.7736566132213],[34.13734137341373,66.77027945868156],[34.13374133741337,66.76014799506225],[34.12654126541267,66.74832795417308],[34.10854108541085,66.72806502693447],[34.09054090540906,66.71286783150555],[34.0689406894069,66.70104779061637],[34.04374043740438,66.69429348153685],[34.04014040140402,66.69429348153685],[34.02934029340295,66.69935921334647],[34.022140221402225,66.70104779061637],[34.01854018540186,66.6976706360766],[34.0149401494015,66.6892277497272],[34.01134011340113,66.68753917245729],[33.946539465394665,66.68416201791754],[33.92853928539287,66.6892277497272],[33.91773917739178,66.69429348153685],[33.896138961389624,66.70949067696577],[33.88533885338853,66.71455640877542],[33.870938709387104,66.71455640877542],[33.86733867338674,66.70949067696577],[33.86733867338674,66.70104779061637],[33.86013860138601,66.69429348153685],[33.83133831338313,66.69598205880672],[33.813338133381336,66.71117925423565],[33.788137881378816,66.75170510871286],[33.762937629376296,66.76690230414178],[33.70893708937089,66.78547665411051],[33.68373683736837,66.79898527226956],[33.669336693366944,66.80573958134909],[33.64053640536406,66.80067384953944],[33.62973629736297,66.80573958134909],[33.618936189361904,66.81418246769852],[33.593735937359384,66.83106824039734],[33.586535865358655,66.81924819950814],[33.59013590135902,66.80911673588886],[33.60453604536045,66.79054238592013],[33.561335613356135,66.80405100407921],[33.53973539735398,66.81587104496839],[33.52533525335255,66.83106824039734],[33.51813518135182,66.80236242680934],[33.55053550535507,66.78041092230086],[33.62613626136263,66.74832795417308],[33.60093600936011,66.7550822632526],[33.55053550535507,66.77534519049121],[33.52533525335255,66.78209949957073],[33.53253532535325,66.77196803595143],[33.54693546935471,66.76183657233213],[33.55773557735577,66.75339368598273],[33.57213572135723,66.74832795417308],[33.57213572135723,66.74157364509355],[33.55053550535507,66.74326222236343],[33.510935109351095,66.76352514960203],[33.48933489334894,66.76859088141168],[33.50373503735037,66.7550822632526],[33.53973539735398,66.73988506782368],[33.55773557735577,66.72806502693447],[33.51813518135182,66.72468787239472],[33.48213482134821,66.72975360420438],[33.100531005310074,66.85808547671544],[32.84492844928451,66.97628588560724],[32.81972819728199,66.9914830810362],[32.80532805328053,67.0100574310049],[32.79812798127983,67.0303203582435],[32.80172801728017,67.0488947082122],[32.816128161281625,67.06409190364116],[32.85212852128521,67.07422336726043],[32.93132931329313,67.07928909907008],[32.967329673296746,67.09110913995926],[32.93132931329313,67.09955202630869],[32.8089280892809,67.09110913995926],[32.77292772927731,67.09279771722916],[32.7369273692737,67.09955202630869],[32.63612636126362,67.13332357170634],[32.456124561245616,67.13501214897622],[32.43452434524346,67.13838930351599],[32.39492394923951,67.1569636534847],[32.38412384123842,67.16034080802444],[32.32652326523265,67.15865223075457],[32.29772297722977,67.15527507621482],[32.26892268922691,67.14683218986539],[32.25092250922509,67.14514361259552],[32.18972189721899,67.15358649894492],[32.07452074520745,67.14176645805574],[32.04212042120423,67.14345503532562],[31.944919449194487,67.1654065398341],[31.908919089190903,67.16878369437387],[31.876518765187654,67.1654065398341],[31.851318513185134,67.15358649894492],[31.926919269192695,67.15358649894492],[31.92331923319233,67.14683218986539],[31.912519125191267,67.12488068535691],[32.09252092520927,67.11981495354726],[32.204122041220415,67.13501214897622],[32.2329223292233,67.13332357170634],[32.261722617226184,67.12488068535691],[32.304923049230496,67.09786344903878],[32.34452344523447,67.08435483087973],[32.3589235892359,67.07084621272068],[32.34092340923411,67.07591194453033],[32.32292322923229,67.0776005218002],[32.29052290522907,67.0776005218002],[32.31572315723159,67.06071474910138],[32.34812348123481,67.0573375945616],[32.38412384123842,67.0573375945616],[32.42012420124203,67.05396044002185],[32.50292502925029,67.0303203582435],[32.531725317253176,67.01512316281455],[32.54972549725497,66.9999259673856],[32.5569255692557,66.98979450376629],[32.54972549725497,66.97628588560724],[32.531725317253176,66.95771153563854],[32.506525065250656,66.94926864928911],[32.42372423724237,66.95602295836866],[32.39132391323915,66.95433438109876],[32.41652416524167,66.94589149474936],[32.47412474124741,66.94589149474936],[32.49572495724959,66.93238287659028],[32.481324813248136,66.92731714478063],[32.47412474124741,66.92731714478063],[32.47772477724777,66.91043137208183],[32.463324633246344,66.90029990846253],[32.42012420124203,66.8918570221131],[32.42012420124203,66.88510271303358],[32.52812528125281,66.88510271303358],[32.54612546125463,66.8834141357637],[32.59292592925931,66.85808547671544],[32.65412654126541,66.84119970401662],[32.67572675726757,66.82769108585757],[32.664926649266505,66.80911673588886],[32.70452704527045,66.79560811772978],[32.891728917289186,66.78209949957073],[32.90612906129061,66.77534519049121],[32.916929169291706,66.76859088141168],[32.92772927729277,66.75170510871286],[32.9349293492935,66.74157364509355],[32.92052920529207,66.7365079132839],[32.81252812528126,66.7365079132839],[32.76932769327695,66.74157364509355],[32.974529745297474,66.69091632699707],[33.183331833318334,66.69260490426694],[33.309333093330935,66.65545620432954],[33.32373323733239,66.64532474071024],[33.32013320133203,66.63012754528128],[33.28773287732878,66.63181612255119],[33.226532265322675,66.64532474071024],[33.15453154531545,66.65376762705964],[33.12213122131223,66.65039047251989],[33.10413104131041,66.63181612255119],[33.093330933309346,66.61155319531258],[33.06453064530646,66.59804457715353],[33.03573035730358,66.59129026807398],[33.01053010530106,66.59297884534388],[32.974529745297474,66.60142173169328],[32.93852938529386,66.60311030896315],[32.866528665286666,66.59804457715353],[32.90252902529025,66.57440449537515],[33.10413104131041,66.57609307264505],[33.093330933309346,66.58453595899445],[33.10413104131041,66.59466742261375],[33.12213122131223,66.59804457715353],[33.19413194131943,66.59635599988363],[33.20493204932049,66.59804457715353],[33.22293222932231,66.60479888623306],[33.21933219332195,66.60648746350293],[33.21933219332195,66.61155319531258],[33.21933219332195,66.61661892712223],[33.226532265322675,66.6183075043921],[33.258932589325894,66.6183075043921],[33.42453424534247,66.59297884534388],[33.44973449734499,66.57271591810527],[33.46413464134642,66.55920729994622],[33.46773467734678,66.55583014540645],[33.48213482134821,66.5507644135968],[33.52533525335255,66.54063294997749],[33.536135361353615,66.53556721816787],[33.50013500135003,66.52205860000879],[33.19413194131943,66.5794702271848],[33.15453154531545,66.56933876356553],[33.16173161731618,66.5710273408354],[33.17253172531727,66.56765018629562],[33.17973179731797,66.56258445448597],[33.1869318693187,66.55583014540645],[33.168931689316906,66.55583014540645],[33.16533165331654,66.55583014540645],[33.118531185311866,66.5507644135968],[33.07173071730719,66.55751872267632],[33.02853028530285,66.54569868178714],[32.967329673296746,66.54063294997749],[32.942129421294226,66.52881290908832],[32.9889298892989,66.51192713638949],[33.04653046530467,66.50686140457987],[33.10413104131041,66.51023855911961],[33.17973179731797,66.53050148635822],[33.20493204932049,66.53387864089797],[33.23013230132301,66.5321900636281],[33.28773287732878,66.52205860000879],[33.29853298532987,66.51868144546904],[33.302133021330235,66.51361571365939],[33.302133021330235,66.50854998184974],[33.302133021330235,66.50348425004009],[33.30573305733057,66.49841851823044],[33.327333273332755,66.48659847734126],[33.35613356133561,66.47984416826174],[33.50733507335073,66.46464697283278],[33.536135361353615,66.4714012819123],[33.57933579335793,66.49504136369066],[33.60093600936011,66.50179567277021],[33.62253622536227,66.49166420915091],[33.63333633336333,66.47477843645208],[33.62613626136263,66.46971270464243],[33.60813608136081,66.46802412737256],[33.586535865358655,66.45958124102313],[33.62253622536227,66.45113835467373],[33.70533705337053,66.4443840455942],[33.73413734137341,66.42580969562547],[33.68373683736837,66.4139896547363],[33.5649356493565,66.41905538654595],[33.51453514535146,66.4055467683869],[33.55413554135541,66.39372672749772],[33.644136441364424,66.37852953206877],[33.67293672936731,66.35657802756029],[33.62973629736297,66.34475798667111],[33.47493474934751,66.34982371848076],[33.38853388533886,66.34475798667111],[33.34173341733418,66.33462652305181],[33.309333093330935,66.31605217308311],[33.48213482134821,66.31436359581323],[33.59733597335975,66.32956079124216],[33.618936189361904,66.32787221397228],[33.63333633336333,66.32111790489276],[33.64053640536406,66.31436359581323],[33.618936189361904,66.30929786400358],[33.870938709387104,66.2670834322565],[33.888938889388896,66.2586405459071],[33.888938889388896,66.25188623682757],[33.88173881738817,66.24513192774805],[33.88173881738817,66.2383776186685],[33.89973899738999,66.22824615504922],[33.914139141391416,66.23331188685884],[33.93213932139321,66.24175477320827],[33.946539465394665,66.2485090822878],[33.971739717397185,66.25188623682757],[34.08694086940869,66.2485090822878],[34.10134101341015,66.24682050501792],[34.11934119341194,66.24175477320827],[34.15174151741519,66.22318042323957],[34.16614166141662,66.22149184596967],[34.16254162541625,66.21304895962027],[34.15534155341555,66.20460607327084],[34.148141481414825,66.19785176419131],[34.15174151741519,66.18940887784191],[34.16254162541625,66.18603172330214],[34.230942309423114,66.17758883695274],[34.26334263342633,66.16745737333343],[34.27774277742779,66.16576879606356],[34.32814328143283,66.16408021879366],[34.49734497344974,66.11680005523695],[34.53694536945369,66.08978281891882],[34.52974529745299,66.1032914370779],[34.551345513455146,66.0931599734586],[34.56934569345694,66.06783131441034],[34.608946089460915,66.05769985079107],[34.634146341463435,66.03405976901269],[34.65574655746559,66.02899403720306],[34.666546665466655,66.02392830539341],[34.71334713347133,65.99691106907528],[34.72414724147242,65.98846818272585],[34.716947169471695,65.9749595645668],[34.6989469894699,65.9665166782174],[34.659346593465955,65.95300806005832],[34.67374673746738,65.94456517370892],[34.68814688146881,65.93949944189927],[34.716947169471695,65.93274513281975],[34.70254702547027,65.9276794010101],[34.69534695346954,65.91923651466067],[34.69534695346954,65.90910505104137],[34.70614706147063,65.90572789650162],[34.72414724147242,65.90741647377149],[34.75654756547567,65.9175479373908],[34.77814778147783,65.91923651466067],[34.785347853478555,65.9175479373908],[34.80334803348035,65.90741647377149],[34.810548105481075,65.90572789650162],[34.83934839348393,65.90741647377149],[34.84654846548466,65.90572789650162],[34.85374853748539,65.90066216469197],[34.85734857348575,65.89221927834254],[34.86454864548645,65.87871066018349],[34.85374853748539,65.87195635110396],[34.8249482494825,65.84325053751596],[34.83934839348393,65.828053342087],[34.85374853748539,65.82467618754725],[34.893348933489335,65.82974191935688],[34.90054900549006,65.82298761027735],[34.8969489694897,65.8094789921183],[34.893348933489335,65.79597037395925],[34.886148861488635,65.7892160648797],[34.868148681486815,65.78415033307004],[34.87174871748718,65.77401886945077],[34.88254882548827,65.7621988285616],[34.893348933489335,65.75544451948204],[34.92934929349295,65.74024732405312],[34.968949689496895,65.72842728316394],[34.9509495094951,65.71829581954464],[34.94014940149401,65.70816435592533],[34.92574925749258,65.70141004684581],[34.90054900549006,65.70647577865546],[34.7709477094771,65.77570744672065],[34.70614706147063,65.79765895122912],[34.68814688146881,65.8094789921183],[34.68094680946811,65.77908460126042],[34.68094680946811,65.76895313764112],[34.684546845468475,65.76726456037122],[34.691746917469175,65.73180443770369],[34.68814688146881,65.72842728316394],[34.70614706147063,65.72167297408438],[34.74574745747458,65.71998439681451],[34.75654756547567,65.71323008773498],[34.74934749347494,65.70141004684581],[34.73134731347315,65.69296716049638],[34.69534695346954,65.68621285141685],[34.70254702547027,65.67776996506745],[34.72774727747279,65.66932707871803],[34.73854738547385,65.6625727696385],[34.742147421474215,65.65581846055898],[34.75294752947531,65.63893268786015],[34.7709477094771,65.61022687427214],[34.77814778147783,65.59671825611306],[34.767347673476735,65.58827536976366],[34.734947349473515,65.58320963795401],[34.73854738547385,65.5443723607467],[34.70614706147063,65.52073227896835],[34.66294662946629,65.5055350835394],[34.634146341463435,65.4869607335707],[34.64854648546486,65.48527215630082],[34.67014670146702,65.48020642449117],[34.68094680946811,65.468386383602],[34.68094680946811,65.45318918817304],[34.66294662946629,65.44474630182364],[34.634146341463435,65.44474630182364],[34.54774547745478,65.45825491998269],[34.51174511745117,65.45487776544294],[34.49374493744938,65.44136914728387],[34.51174511745117,65.41097475642599],[34.490144901449014,65.40759760188621],[34.46854468544686,65.40928617915611],[34.4469444694447,65.41435191096573],[34.42894428944291,65.42279479731516],[34.41814418144182,65.42279479731516],[34.400144001440026,65.41772906550551],[34.38574385743857,65.41435191096573],[34.36774367743678,65.41941764277539],[34.37134371343714,65.41266333369586],[34.37854378543787,65.40759760188621],[34.3929439294393,65.3974661382669],[34.36774367743678,65.39240040645728],[34.31734317343174,65.3974661382669],[34.29574295742958,65.38564609737773],[34.44334443344434,65.3704489019488],[34.46134461344613,65.36369459286925],[34.47934479344795,65.34849739744033],[34.47934479344795,65.3316116247415],[34.46134461344613,65.31641442931254],[34.47214472144722,65.28939719299441],[34.47934479344795,65.28095430664501],[34.49734497344974,65.27588857483536],[34.526145261452626,65.27926572937514],[34.53694536945369,65.27588857483536],[34.52254522545226,65.26069137940641],[34.551345513455146,65.25393707032688],[34.616146161461614,65.25393707032688],[34.641346413464134,65.24042845216783],[34.60534605346055,65.22691983400875],[34.634146341463435,65.22691983400875],[34.64854648546486,65.223542679469],[34.68094680946811,65.19990259769065],[34.68094680946811,65.18301682499182],[34.666546665466655,65.17795109318217],[34.64854648546486,65.17795109318217],[34.62694626946271,65.17288536137252],[34.63774637746377,65.1644424750231],[34.67374673746738,65.15093385686404],[34.66294662946629,65.12729377508569],[34.68094680946811,65.11378515692664],[34.767347673476735,65.10703084784708],[34.77454774547746,65.10027653876756],[34.767347673476735,65.08676792060851],[34.74574745747458,65.0665049933699],[34.75294752947531,65.05468495248073],[34.78894788947889,65.05130779794098],[34.817748177481775,65.04286491159155],[34.79974799747998,65.02091340708307],[34.77454774547746,65.01247052073367],[34.74574745747458,65.00571621165415],[34.72054720547206,64.99727332530472],[34.70254702547027,64.98038755260589],[34.74574745747458,64.97701039806611],[34.77814778147783,64.96687893444684],[34.80694806948071,64.94830458447811],[34.835748357483595,64.92128734816],[34.842948429484295,64.91791019362023],[34.84654846548466,64.91791019362023],[34.860948609486115,64.91791019362023],[34.87174871748718,64.91791019362023],[34.87174871748718,64.91453303908048],[34.868148681486815,64.9111558845407],[34.87534875348754,64.9010244209214],[34.87534875348754,64.88920438003223],[34.87894878948791,64.88413864822257],[34.893348933489335,64.87569576187317],[34.90774907749079,64.86556429825387],[34.92574925749258,64.85880998917435],[34.943749437494375,64.85712141190444],[34.93294932949331,64.84192421647552],[34.911349113491156,64.82672702104657],[34.87174871748718,64.80308693926821],[34.842948429484295,64.79295547564891],[34.785347853478555,64.78451258929951],[34.75654756547567,64.77438112568021],[34.79974799747998,64.7558067757115],[34.810548105481075,64.7541181984416],[34.81414814148141,64.75918393025125],[34.88254882548827,64.7558067757115],[34.92934929349295,64.76593823933078],[34.94734947349474,64.77100397114043],[34.976149761497624,64.77100397114043],[35.00855008550087,64.74398673482233],[34.968949689496895,64.7271009621235],[34.92934929349295,64.72203523031385],[34.88254882548827,64.71865807577407],[34.85374853748539,64.71359234396442],[34.835748357483595,64.70514945761502],[34.83214832148323,64.69839514853547],[34.911349113491156,64.66293502586794],[34.936549365493676,64.63591778954984],[34.97254972549726,64.62578632593053],[34.976149761497624,64.61227770777145],[34.92934929349295,64.59201478053288],[34.886148861488635,64.58188331691358],[34.84654846548466,64.5599318124051],[34.810548105481075,64.55824323513522],[34.80694806948071,64.55655465786535],[34.75654756547567,64.5599318124051],[34.742147421474215,64.55655465786535],[34.77454774547746,64.55655465786535],[34.785347853478555,64.54811177151592],[34.79974799747998,64.54642319424605],[34.83214832148323,64.53122599881709],[34.85014850148502,64.52784884427734],[34.911349113491156,64.52784884427734],[34.92934929349295,64.52447168973757],[34.97254972549726,64.50420876249896],[35.00855008550087,64.49407729887969],[34.99774997749978,64.47212579437121],[34.95454954549547,64.4518628671326],[35.01575015750157,64.4231570535446],[35.05535055350555,64.41640274446507],[35.120151201512016,64.40120554903612],[35.13455134551347,64.39107408541682],[35.15975159751599,64.38094262179754],[35.278552785527864,64.3758768899879],[35.30735307353075,64.37249973544812],[35.32175321753218,64.36236827182881],[35.30735307353075,64.34379392186011],[35.328953289532905,64.32859672643116],[35.328953289532905,64.31339953100223],[35.3469534695347,64.2965137583034],[35.41175411754119,64.2863822946841],[35.4657546575466,64.30664522192271],[35.53775537755379,64.32184241735163],[35.58815588155883,64.32184241735163],[35.61695616956169,64.34041676732036],[35.5989559895599,64.37081115817824],[35.58815588155883,64.38094262179754],[35.57375573755738,64.3944512399566],[35.56655566555665,64.40627128084577],[35.580955809558105,64.41133701265542],[35.638556385563874,64.38431977633729],[35.7249572495725,64.35899111728907],[35.81135811358115,64.34210534459024],[35.86175861758619,64.32184241735163],[35.89415894158941,64.2965137583034],[35.88695886958871,64.2678079447154],[35.90135901359014,64.25598790382622],[35.933759337593386,64.2475450174768],[35.948159481594814,64.2391021311274],[35.958959589595906,64.2289706675081],[35.966159661596635,64.20870774026949],[35.9769597695977,64.19857627665021],[36.00576005760058,64.19351054484056],[36.02736027360274,64.20533058572974],[36.05976059760599,64.21883920388879],[36.08856088560887,64.20701916299961],[36.12096120961209,64.19519912211044],[36.16056160561607,64.17324761760196],[36.18576185761859,64.15467326763326],[36.2289622896229,64.13609891766455],[36.23616236162363,64.12427887677538],[36.225362253622535,64.11414741315608],[36.21096210962111,64.10401594953677],[36.22176221762217,64.07531013594877],[36.25776257762578,64.06517867232947],[36.2829628296283,64.04660432236076],[36.27216272162721,64.03647285874146],[36.26496264962651,64.02465281785229],[36.293762937629396,64.00945562242333],[36.36576365763659,64.00101273607393],[36.419764197641996,63.99594700426428],[36.459364593645944,63.98243838610523],[36.4809648096481,63.97230692248593],[36.50616506165062,63.97061834521605],[36.55656556565566,63.97230692248593],[36.578165781657816,63.96892976794615],[36.61776617766179,63.9554211497871],[36.63936639366395,63.95204399524732],[36.65016650166501,63.948666840707574],[36.68256682566826,63.92840391346897],[36.704167041670416,63.92502675892919],[36.76896768967691,63.940223954358146],[36.79056790567907,63.93853537708827],[36.80856808568086,63.931781068008746],[36.837368373683745,63.91489529530992],[36.8589685896859,63.91151814077014],[36.87696876968769,63.91489529530992],[36.91656916569167,63.92840391346897],[36.93456934569346,63.931781068008746],[36.95616956169562,63.926715336199095],[36.99216992169923,63.904763831690616],[37.01017010170102,63.89800952261109],[37.16857168571687,63.89463236807131],[37.19377193771939,63.891255213531565],[37.21177211772118,63.87943517264236],[37.247772477724794,63.84735220451461],[37.254972549725494,63.842286472704956],[37.26217262172622,63.84059789543508],[37.272972729727314,63.827089277276],[37.280172801728014,63.82202354546635],[37.290972909729106,63.8186463909266],[37.43857438574386,63.79162915460847],[37.53577535775358,63.8000720409579],[37.607776077760775,63.815269236386825],[37.61857618576187,63.84059789543508],[37.61137611376114,63.85748366813391],[37.6149761497615,63.88112374991226],[37.658176581765815,63.89800952261109],[37.71937719377195,63.904763831690616],[37.827378273782756,63.90138667715084],[37.866978669786704,63.91658387257979],[37.942579425794264,63.940223954358146],[37.985779857798576,63.9452896861678],[38.00018000180003,63.9554211497871],[38.07218072180723,64.01789850877276],[38.086580865808656,64.03478428147159],[38.086580865808656,64.05842436324994],[38.04698046980471,64.14791895855373],[38.02898028980292,64.16480473125256],[38.0037800378004,64.17831334941161],[37.94617946179463,64.20195343118996],[37.91377913779138,64.22052778115867],[37.902979029790316,64.2391021311274],[37.92457924579247,64.2576764810961],[38.0037800378004,64.27456225379493],[38.02538025380255,64.29482518103353],[38.02178021780219,64.30833379919258],[38.0037800378004,64.31677668554198],[37.94977949779499,64.32521957189141],[37.92457924579247,64.33872819005046],[37.910179101791016,64.34379392186011],[37.917379173791744,64.35223680820954],[37.928179281792836,64.35730254001919],[37.942579425794264,64.35899111728907],[37.95697956979569,64.36405684909872],[37.83097830978309,64.35899111728907],[37.79857798577987,64.37756546725777],[37.79857798577987,64.41809132173495],[37.80577805778057,64.42484563081447],[37.776977769777716,64.4332885171639],[37.74817748177483,64.4417314035133],[37.6869768697687,64.43159993989403],[37.65457654576548,64.41133701265542],[37.650976509765115,64.38769693087707],[37.62937629376296,64.37756546725777],[37.600576005760075,64.37756546725777],[37.557375573755735,64.38431977633729],[37.51417514175142,64.3860083536072],[37.474574745747475,64.38263119906742],[37.38457384573846,64.36067969455894],[37.33777337773378,64.34041676732036],[37.28737287372874,64.35223680820954],[37.121771217712194,64.3944512399566],[37.0569705697057,64.4434199807832],[36.83376833768338,64.59370335780275],[36.78336783367834,64.63929494408958],[36.74376743767439,64.68150937583667],[36.69696696966972,64.70852661215477],[36.64296642966431,64.71865807577407],[36.560165601656024,64.7169694985042],[36.53856538565387,64.75242962117173],[36.51696516965171,64.76931539387056],[36.527765277652776,64.79126689837904],[36.520565205652076,64.80308693926821],[36.51336513365135,64.82503844377669],[36.502565025650256,64.835169907396],[36.55656556565566,64.82334986650679],[36.570965709657116,64.83010417558634],[36.495364953649556,64.85036710282492],[36.47376473764737,64.86556429825387],[36.459364593645944,64.88751580276235],[36.44136441364415,64.91622161635036],[36.46656466564667,64.93479596631906],[36.53856538565387,64.92804165723953],[36.56736567365675,64.90271299819128],[36.63216632166322,64.90440157546118],[36.653766537665376,64.92804165723953],[36.69696696966972,64.93986169812871],[36.761767617676185,64.94999316174801],[36.80856808568086,64.95843604809741],[36.81576815768159,64.97532182079624],[36.80136801368013,64.99389617076494],[36.82296822968232,65.02091340708307],[36.83016830168302,65.03104487070237],[36.862568625686265,65.06481641610003],[36.86616866168663,65.0766364569892],[36.862568625686265,65.11378515692664],[36.81936819368195,65.13067092962547],[36.81936819368195,65.14755670232427],[36.89856898568988,65.15093385686404],[36.94896948969492,65.15937674321347],[36.97776977769777,65.166131052293],[37.00657006570066,65.17288536137252],[37.06057060570606,65.16781962956287],[37.128971289712894,65.15768816594357],[37.21897218972191,65.14080239324474],[37.323373233732354,65.11378515692664],[37.398973989739915,65.10196511603743],[37.499774997749995,65.06988214790968],[37.56457564575646,65.0479306434012],[37.62217622176223,65.04286491159155],[37.67257672576727,65.03611060251203],[37.70497704977049,65.01753625254332],[37.71577715777158,64.99727332530472],[37.70497704977049,64.97701039806611],[37.71937719377195,64.95843604809741],[37.79497794977951,64.92128734816],[38.04698046980471,64.8537442573647],[38.144181441814425,64.8436127937454],[38.2557825578256,64.84698994828517],[38.35658356583568,64.85205568009482],[38.38538385383853,64.84530137101527],[38.37458374583747,64.82334986650679],[38.36738367383674,64.80984124834774],[38.37458374583747,64.79802120745856],[38.396183961839625,64.78620116656938],[38.403384033840354,64.77438112568021],[38.36378363783638,64.78113543475973],[38.32778327783279,64.79633263018869],[38.295382953829545,64.80477551653809],[38.2629826298263,64.78451258929951],[38.244982449824505,64.78113543475973],[38.16218162181622,64.78788974383926],[38.086580865808656,64.78620116656938],[38.0649806498065,64.78113543475973],[38.036180361803616,64.76256108479103],[38.04698046980471,64.74398673482233],[38.11538115381154,64.70346088034512],[38.12618126181263,64.6967065712656],[38.12258122581227,64.6882636849162],[38.10818108181081,64.67813222129689],[38.093780937809385,64.67306648948724],[38.03978039780398,64.65786929405829],[38.04698046980471,64.64604925316911],[38.061380613806136,64.64436067589924],[38.07938079380796,64.64773783043901],[38.093780937809385,64.65449213951854],[38.11178111781118,64.65955787132819],[38.15138151381515,64.66631218040772],[38.16218162181622,64.67137791221737],[38.169381693816945,64.68488653037642],[38.16578165781658,64.70346088034512],[38.17298172981731,64.7169694985042],[38.18738187381874,64.72372380758372],[38.20538205382056,64.7254123848536],[38.24138241382414,64.7254123848536],[38.27378273782739,64.73216669393312],[38.33858338583386,64.75918393025125],[38.37458374583747,64.76087250752113],[38.43938439384394,64.74229815755243],[38.471784717847186,64.74398673482233],[38.49338493384934,64.76762681660068],[38.48258482584828,64.76931539387056],[38.42498424984251,64.79295547564891],[38.41778417784178,64.80308693926821],[38.41778417784178,64.81828413469717],[38.446584465844666,64.81828413469717],[38.46458464584646,64.80984124834774],[38.511385113851134,64.78788974383926],[38.622986229862306,64.76931539387056],[38.738187381873814,64.74736388936208],[38.81738817388174,64.74229815755243],[38.87138871388714,64.74060958028255],[38.92178921789218,64.73216669393312],[39.040590405904055,64.6967065712656],[39.141391413914135,64.66293502586794],[39.249392493924944,64.64604925316911],[39.30339303393035,64.64604925316911],[39.33219332193323,64.63929494408958],[39.342993429934296,64.62240917139076],[39.38259382593827,64.6072119759618],[39.443794437944376,64.58188331691358],[39.56619566195664,64.54473461697614],[39.73539735397355,64.55486608059545],[39.76059760597607,64.56162038967497],[39.74619746197462,64.57681758510392],[39.7677976779768,64.58188331691358],[39.82179821798218,64.58694904872323],[39.84339843398436,64.59370335780275],[39.9009990099901,64.60383482142205],[39.92259922599226,64.60383482142205],[39.904599045990466,64.62409774866063],[39.86499864998652,64.61903201685101],[39.81819818198184,64.60383482142205],[39.785797857978594,64.59708051234253],[39.79299792997932,64.61565486231123],[39.810998109981114,64.65955787132819],[39.82179821798218,64.67137791221737],[39.85059850598506,64.67644364402702],[39.89019890198904,64.66968933494746],[40.063000630006314,64.62240917139076],[40.10980109801099,64.60045766688228],[40.1530015300153,64.57344043056418],[40.18180181801819,64.55824323513522],[40.214202142021435,64.55486608059545],[40.35820358203583,64.56162038967497],[40.372603726037255,64.5599318124051],[40.40140401404014,64.5498003487858],[40.48060480604806,64.53966888516652],[40.516605166051676,64.5413574624364],[40.53460534605347,64.55824323513522],[40.52740527405274,64.5785061623738],[40.516605166051676,64.59370335780275],[40.50220502205022,64.6089005532317],[40.491404914049156,64.6173434395811],[40.473404734047335,64.63591778954984],[40.441004410044116,64.70008372580537],[40.42660426604266,64.71359234396442],[40.41940419404196,64.7152809212343],[40.415804158041595,64.72203523031385],[40.41220412204123,64.72878953939338],[40.41220412204123,64.73723242574277],[40.41220412204123,64.75074104390185],[40.415804158041595,64.7558067757115],[40.45180451804518,64.76762681660068],[40.4770047700477,64.76931539387056],[40.50220502205022,64.7642496620609],[40.52020520205204,64.7541181984416],[40.516605166051676,64.77438112568021],[40.491404914049156,64.78788974383926],[40.45900459004591,64.79802120745856],[40.43740437404375,64.80984124834774],[40.423004230042295,64.82672702104657],[40.37980379803798,64.92297592542988],[40.365403654036555,64.93817312085883],[40.347403474034735,64.95337031628776],[40.31140311403115,64.97532182079624],[40.297002970029695,64.98376470714567],[40.289802898028995,64.99220759349507],[40.28260282602827,65.01247052073367],[40.271802718027175,65.02091340708307],[40.24300243002432,65.03611060251203],[40.13500135001351,65.06312783883016],[40.113401134011355,65.07494787971933],[39.87219872198722,65.27757715210524],[39.78219782197823,65.32316873839207],[39.74259742597428,65.35694028378973],[39.7209972099721,65.38058036556808],[39.7137971379714,65.40253187007656],[39.71019710197103,65.44812345636339],[39.71019710197103,65.47007496087187],[39.71739717397176,65.49540361992013],[39.73179731797319,65.52410943350813],[39.73899738997392,65.53930662893706],[39.74979749797498,65.55281524709613],[39.82539825398254,65.60684971973237],[39.980199801998026,65.65581846055898],[40.06660066600668,65.66763850144815],[40.2790027900279,65.73011586043381],[40.473404734047335,65.81285614665805],[40.63540635406355,65.93274513281975],[40.71100711007111,65.97158241002703],[40.79740797407976,65.99184533726563],[41.01701017010171,66.00704253269458],[41.1070110701107,66.03068261447294],[41.34101341013411,66.06276558260069],[41.40221402214024,66.08640566437907],[41.41661416614167,66.08978281891882],[41.43461434614346,66.09484855072847],[41.463414634146346,66.11848863250682],[41.4778147781478,66.12355436431648],[41.495814958149595,66.12862009612613],[41.55341553415536,66.15226017790448],[41.621816218162195,66.16576879606356],[41.64341643416435,66.17252310514309],[41.63981639816399,66.18265456876239],[41.64341643416435,66.18940887784191],[41.65421654216544,66.19278603238166],[41.855818558185604,66.2957892458445],[42.02142021420215,66.41230107746642],[42.11862118621187,66.50517282730996],[42.15462154621548,66.52712433181844],[42.20142201422016,66.5321900636281],[42.367023670236705,66.51192713638949],[42.644226442264426,66.4528269319436],[42.66222662226622,66.4426954683243],[42.65862658626588,66.42580969562547],[42.575825758257594,66.40216961384712],[42.54702547025471,66.3852838411483],[42.74862748627487,66.3954153047676],[42.9430294302943,66.41905538654595],[43.12663126631267,66.4241211183556],[43.25263252632527,66.43594115924478],[43.30303303033031,66.42580969562547],[43.32463324633247,66.41061250019655],[43.34983349833499,66.36670949117959],[43.36783367833678,66.34644656394099],[43.407434074340756,66.33293794578194],[43.5118351183512,66.32956079124216],[43.55503555035551,66.32280648216263],[43.65583655836559,66.28565778222523],[43.68463684636848,66.26539485498662],[43.691836918369205,66.23668904139862],[43.666636666366685,66.21811469142992],[43.508235082350836,66.18434314603226],[43.46863468634686,66.17083452787318],[43.43623436234364,66.14888302336473],[43.421834218342184,66.13537440520565],[43.407434074340756,66.12524294158635],[43.389433894338964,66.11680005523695],[43.371433714337144,66.1117343234273],[43.32463324633247,66.10666859161765],[43.30303303033031,66.101602859808],[43.288632886328884,66.08978281891882],[43.33543335433356,66.06783131441034],[43.34263342633426,66.05938842806094],[43.35343353433535,66.04081407809224],[43.37503375033751,66.03743692355246],[43.41823418234182,66.04250265536211],[43.45063450634507,66.03743692355246],[43.47583475834759,66.02223972812351],[43.497434974349744,66.00028822361503],[43.515435154351565,65.9749595645668],[43.52623526235263,66.01886257358376],[43.522635226352264,66.03574834628259],[43.50103501035011,66.05263411898142],[43.41103411034112,66.06107700533082],[43.382233822338236,66.07120846895012],[43.41103411034112,66.09822570526825],[43.465034650346524,66.12693151885625],[43.47943479434795,66.1319972506659],[43.5190351903519,66.13706298247556],[43.56223562235624,66.14719444609483],[43.5838358383584,66.1505716006346],[43.63423634236344,66.15226017790448],[43.65583655836559,66.16239164152378],[43.67023670236702,66.17421168241296],[43.691836918369205,66.18265456876239],[43.71343713437136,66.18603172330214],[43.76023760237604,66.17758883695274],[43.8358383583836,66.18603172330214],[43.85383853838539,66.18096599149249],[43.893438934389366,66.159014486984],[43.94743947439474,66.1404401370153],[43.98703987039872,66.10835716888752],[44.044640446404486,66.08133993256942],[44.051840518405186,66.07289704621999],[44.04824048240482,66.05601127352116],[44.04104041040412,66.04250265536211],[44.033840338403394,66.03574834628259],[44.026640266402666,66.02899403720306],[44.026640266402666,66.01548541904398],[44.04104041040412,65.9935339145355],[44.0878408784088,65.95976236913785],[44.16704167041672,65.88546496926301],[44.18144181441815,65.86351346475453],[44.19224192241924,65.90572789650162],[44.17424174241742,65.93443371008962],[44.14544145441454,65.95976236913785],[44.12384123841238,65.98846818272585],[44.12384123841238,66.01379684177411],[44.152641526415266,66.05769985079107],[44.159841598415994,66.08640566437907],[44.1490414904149,66.10498001434777],[44.09864098640986,66.14212871428518],[44.084240842408434,66.159014486984],[44.08064080640807,66.20629465054074],[44.095040950409526,66.26201770044685],[44.12384123841238,66.31436359581323],[44.152641526415266,66.35657802756029],[44.16704167041672,66.37346380025912],[44.210242102421034,66.40216961384712],[44.21744217442176,66.4139896547363],[44.235442354423554,66.44776120013395],[44.24624246242462,66.45451550921348],[44.3470434704347,66.50010709550031],[44.361443614436155,66.50854998184974],[44.37224372243722,66.52205860000879],[44.37944379443795,66.54569868178714],[44.386643866438675,66.60142173169328],[44.3938439384394,66.62168465893188],[44.42984429844299,66.64363616344036],[44.47664476644766,66.65545620432954],[44.563045630456315,66.66558766794881],[44.55224552245522,66.67740770883802],[44.53064530645307,66.67740770883802],[44.50904509045091,66.67234197702837],[44.487444874448755,66.67571913156812],[44.4658446584466,66.69091632699707],[44.45144451444514,66.70104779061637],[44.43344433444335,66.73313075874412],[44.37944379443795,66.76352514960203],[44.36504365043652,66.78209949957073],[44.37584375843758,66.80573958134909],[44.4658446584466,66.81924819950814],[44.487444874448755,66.8445768585564],[44.48024480244803,66.893545599383],[44.49104491044912,66.90367706300228],[44.52344523445234,66.91887425843123],[44.49824498244982,66.92225141297101],[44.49104491044912,66.93069429932041],[44.487444874448755,66.94251434020958],[44.48024480244803,66.95433438109876],[44.43344433444335,66.98304019468677],[44.42624426244262,66.99486023557594],[44.40824408244083,67.01174600827477],[44.37224372243722,67.0303203582435],[44.30384303843039,67.05564901729173],[44.31464314643148,67.07422336726043],[44.336243362433635,67.08435483087973],[44.35784357843579,67.09110913995926],[44.37944379443795,67.10461775811834],[44.285842858428595,67.08773198541951],[44.26424264242644,67.09448629449903],[44.24624246242462,67.10630633538821],[44.20664206642067,67.12488068535691],[44.17424174241742,67.13332357170634],[44.152641526415266,67.14345503532562],[44.095040950409526,67.15865223075457],[44.04104041040412,67.167095117104],[43.98703987039872,67.16371796256422],[43.951039510395105,67.16371796256422],[43.918639186391886,67.16034080802444],[43.868238682386846,67.17216084891365],[43.81423814238144,67.17722658072327],[43.774637746377465,67.2042438170414],[43.76023760237604,67.22112958974023],[43.7638376383764,67.23801536243906],[43.767437674376765,67.27685263964636],[43.792637926379285,67.3427071531718],[43.86103861038612,67.42544743939604],[44.001440014400146,67.57573081641561],[44.0230402304023,67.6162566708928],[44.0230402304023,67.6246995572422],[44.026640266402666,67.6432739072109],[44.0230402304023,67.65678252536998],[44.033840338403394,67.67029114352903],[44.04104041040412,67.68042260714833],[44.04824048240482,67.6837997616881],[44.07344073440734,67.68717691622786],[44.084240842408434,67.68717691622786],[44.0878408784088,67.6821111844182],[44.095040950409526,67.67535687533868],[44.09864098640986,67.66860256625915],[44.09864098640986,67.66691398898928],[44.109441094410954,67.66691398898928],[44.127441274412746,67.67029114352903],[44.14544145441454,67.67873402987846],[44.152641526415266,67.69393122530738],[44.1418414184142,67.70743984346646],[44.12384123841238,67.71081699800621],[44.077040770407706,67.70743984346646],[44.069840698407006,67.71419415254599],[44.08064080640807,67.72939134797494],[44.109441094410954,67.75472000702317],[44.11664116641168,67.76485147064247],[44.12384123841238,67.77836008880152],[44.13104131041311,67.7918687069606],[44.13104131041311,67.80368874784978],[44.12384123841238,67.81719736600883],[44.11304113041132,67.82564025235823],[44.09864098640986,67.83239456143778],[44.0878408784088,67.84083744778718],[44.084240842408434,67.85096891140648],[44.084240842408434,67.86785468410531],[44.0878408784088,67.88474045680414],[44.09864098640986,67.89318334315354],[44.177841778417786,67.88980618861379],[44.19944199441994,67.89318334315354],[44.21744217442176,67.89993765223309],[44.24984249842498,67.9185120022018],[44.2678426784268,67.9269548885512],[44.235442354423554,67.93877492944037],[44.1490414904149,67.92526631128132],[44.12384123841238,67.93370919763072],[44.13824138241384,67.9759236293778],[44.15624156241563,67.98098936118745],[44.19584195841958,67.98267793845733],[44.2138421384214,67.98943224753685],[44.19584195841958,67.9944979793465],[44.15624156241563,67.98943224753685],[44.13824138241384,67.9944979793465],[44.16344163441636,68.01138375204533],[44.336243362433635,68.05697533833217],[44.411844118441195,68.06372964741169],[44.40464404644047,68.0654182246816],[44.361443614436155,68.07048395649124],[44.30744307443075,68.0654182246816],[44.25704257042571,68.05528676106229],[44.2138421384214,68.04008956563334],[44.18144181441815,68.03671241109359],[44.17064170641706,68.05528676106229],[44.17424174241742,68.08568115192017],[44.185041850418514,68.11100981096843],[44.203042030420306,68.13633847001665],[44.20664206642067,68.14646993363596],[44.20664206642067,68.16335570633478],[44.20664206642067,68.17348716995409],[44.235442354423554,68.23258737439997],[44.24264242642428,68.25622745617832],[44.24264242642428,68.2781789606868],[44.228242282422826,68.2967533106555],[44.159841598415994,68.33559058786281],[43.742237422374245,68.47574250126308],[43.32463324633247,68.61420583739346],[43.29223292232922,68.63615734190194],[43.27423274232743,68.65810884641041],[43.31743317433174,68.66655173275981],[43.37503375033751,68.66824031002972],[43.47583475834759,68.66824031002972],[43.616236162361645,68.64122307371159],[43.6378363783638,68.63953449644171],[43.691836918369205,68.62433730101276],[43.74583745837458,68.61589441466333],[43.78543785437856,68.60576295104406],[43.80343803438035,68.59732006469463],[43.82143821438214,68.59225433288498],[43.86463864638648,68.58718860107533],[43.983439834398354,68.5517284784078],[44.23904239042392,68.53653128297884],[44.50904509045091,68.55341705567767],[44.96264962649627,68.5517284784078],[45.30465304653046,68.54497416932827],[45.58185581855818,68.51457977847039],[45.88785887858879,68.45547957402448],[45.945459454594555,68.44703668767508],[45.94905949059492,68.42339660589673],[45.95625956259565,68.41664229681717],[45.96705967059671,68.3963793695786],[45.970659706597075,68.38962506049907],[45.98145981459817,68.38287075141952],[46.00666006660069,68.37273928780024],[46.01746017460175,68.36429640145082],[46.021060210602116,68.35416493783151],[46.02466024660248,68.33221343332306],[46.028260282602844,68.32377054697363],[46.046260462604636,68.31870481516398],[46.078660786607884,68.31026192881458],[46.16506165061651,68.2697360743374],[46.222662226622276,68.2393416834795],[46.27666276662768,68.21401302443127],[46.29466294662947,68.21063586989149],[46.35226352263524,68.21401302443127],[46.36666366663667,68.21063586989149],[46.39546395463955,68.19712725173244],[46.42066420664207,68.19206151992279],[46.46026460264602,68.17011001541431],[46.53586535865358,68.1329613154769],[46.52146521465215,68.1211412745877],[46.489064890648905,68.11438696550817],[46.46026460264602,68.11100981096843],[46.52506525065252,68.11438696550817],[46.539465394653945,68.10763265642865],[46.54666546665467,68.09918977007925],[46.54666546665467,68.0924354609997],[46.54306543065431,68.08736972919004],[46.54306543065431,68.07723826557077],[46.54666546665467,68.04346672017311],[46.55026550265504,68.02995810201404],[46.557465574655765,68.01644948385498],[46.57546575465756,67.99787513388628],[46.59706597065971,67.98774367026698],[46.61866618666187,67.98098936118745],[46.640266402664025,67.96916932029828],[46.64386643866439,67.96072643394885],[46.64746647466475,67.95228354759945],[46.65106651066512,67.94384066125002],[46.658266582665846,67.9370863521705],[46.679866798668,67.91513484766202],[46.70146701467016,67.89149476588366],[46.70506705067052,67.88305187953426],[46.71226712267122,67.87460899318484],[46.723067230672314,67.84421460232696],[46.69786697866979,67.81719736600883],[46.66186661866618,67.80706590238952],[46.57186571865719,67.8087544796594],[46.507065070650725,67.81550878873895],[46.489064890648905,67.8188859432787],[46.44226442264423,67.81719736600883],[46.3738637386374,67.8188859432787],[46.211862118621184,67.80200017057987],[46.003060030600324,67.76822862518222],[45.617856178561794,67.74627712067377],[45.44865448654488,67.72939134797494],[45.351453514535166,67.73107992524481],[45.308253082530825,67.71250557527611],[45.30465304653046,67.69393122530738],[45.31905319053192,67.68548833895798],[45.33705337053371,67.68717691622786],[45.3478534785348,67.68548833895798],[45.351453514535166,67.6635368344495],[45.3478534785348,67.65002821629045],[45.340653406534074,67.62638813451207],[45.33705337053371,67.61456809362289],[45.31545315453155,67.59261658911441],[45.26145261452615,67.58417370276501],[45.16425164251643,67.58417370276501],[45.0958509585096,67.56391077552641],[45.02745027450274,67.53182780739866],[44.96624966249664,67.49130195292148],[44.91944919449196,67.44064463482499],[44.92664926649266,67.42207028485626],[44.923049230492325,67.40518451215746],[44.915849158491596,67.38829873945863],[44.91224912249123,67.3714129667598],[44.923049230492325,67.3511500395212],[44.95184951849518,67.32075564866332],[45.056250562505625,67.28360694872589],[45.157051570515705,67.25490113513789],[45.2218522185222,67.2329496306294],[45.308253082530825,67.21099812612093],[45.409054090540906,67.19917808523175],[45.509855098550986,67.1856694670727],[45.592655926559274,67.15865223075457],[45.63945639456395,67.10799491265809],[45.64665646656468,67.08435483087973],[45.66465664656647,67.06240332637125],[45.78345783457834,66.96784299925784],[45.7978579785798,66.94926864928911],[45.80505805058053,66.91887425843123],[45.82305823058232,66.89861133119263],[45.8518585185852,66.88679129030345],[45.96345963459635,66.86652836306487],[45.98865988659887,66.85808547671544],[46.01386013860139,66.83951112674674],[46.02466024660248,66.83275681766722],[46.04266042660427,66.83106824039734],[46.3018630186302,66.83951112674674],[46.489064890648905,66.87834840395405],[46.54666546665467,66.87834840395405],[46.57906579065792,66.8732826721444],[46.59706597065971,66.85808547671544],[46.60066600666008,66.83782254947687],[46.57906579065792,66.83275681766722],[46.5538655386554,66.83275681766722],[46.532265322653245,66.82769108585757],[46.49986499865,66.79560811772978],[46.481864818648205,66.78378807684061],[46.39906399063992,66.75170510871286],[46.381063810638125,66.74832795417308],[46.406264062640645,66.7466393769032],[46.44946449464496,66.7550822632526],[46.489064890648905,66.76859088141168],[46.55026550265504,66.80236242680934],[46.582665826658285,66.81587104496839],[46.82746827468276,66.8445768585564],[46.92826928269284,66.8445768585564],[46.98226982269824,66.8631512085251],[47.025470254702554,66.85977405398535],[47.410674106741084,66.92900572205053],[47.45747457474576,66.92731714478063],[47.55827558275584,66.90536564027218],[47.57627576275763,66.8918570221131],[47.57267572675727,66.86483978579497],[47.579875798757996,66.86990551760462],[47.59067590675909,66.87665982668418],[47.605076050760516,66.8918570221131],[47.594275942759424,66.90705421754205],[47.59067590675909,66.91887425843123],[47.594275942759424,66.93238287659028],[47.605076050760516,66.94589149474936],[47.62307623076231,66.95940011290841],[47.67347673476735,66.98304019468677],[47.695076950769504,66.98810592649642],[47.72387723877239,67.0016145446555],[47.74187741877421,67.0303203582435],[47.74907749077491,67.06578048091103],[47.74907749077491,67.12150353081717],[47.745477454774544,67.13163499443644],[47.73467734677348,67.14514361259552],[47.70227702277023,67.17216084891365],[47.695076950769504,67.18060373526305],[47.687876878768805,67.195800930692],[47.695076950769504,67.2042438170414],[47.77427774277743,67.24139251697883],[47.788677886778885,67.25152398059811],[47.79227792277925,67.26165544421741],[47.788677886778885,67.27347548510659],[47.77787777877779,67.29542698961507],[47.77787777877779,67.30049272142472],[47.77787777877779,67.31737849412355],[47.770677706777064,67.33595284409225],[47.770677706777064,67.33764142136215],[47.79227792277925,67.3612815031405],[47.90747907479076,67.40180735761768],[47.93627936279364,67.42375886212616],[47.947079470794705,67.44402178936474],[47.94347943479437,67.46597329387322],[47.921879218792185,67.4879247983817],[47.82467824678247,67.56053362098666],[47.813878138781405,67.58079654822524],[47.846278462784625,67.60105947546384],[48.00828008280084,67.65002821629045],[48.05148051480515,67.65171679356033],[48.098280982809825,67.63989675267115],[48.08748087480876,67.62976528905185],[48.08028080280803,67.61794524816267],[48.073080730807305,67.60443663000362],[48.073080730807305,67.59092801184454],[48.09468094680949,67.59261658911441],[48.11268112681128,67.60274805273372],[48.148681486814866,67.62807671178197],[48.20268202682027,67.65171679356033],[48.22068220682209,67.6635368344495],[48.256682566825674,67.6821111844182],[48.307083070830714,67.69055407076763],[48.36108361083612,67.68886549349773],[48.44388443884441,67.66860256625915],[48.48708487084872,67.6635368344495],[48.53028530285303,67.66860256625915],[48.65628656286563,67.71250557527611],[48.69948699486994,67.71588272981586],[48.742687426874284,67.7006855343869],[48.73188731887319,67.7006855343869],[48.72108721087213,67.7006855343869],[48.710287102871035,67.69899695711703],[48.70308703087031,67.69393122530738],[48.926289262892624,67.68717691622786],[48.99828998289985,67.66691398898928],[48.962289622896236,67.6534053708302],[48.994689946899484,67.6432739072109],[49.03429034290343,67.6348310208615],[49.077490774907744,67.63145386632172],[49.10629106291063,67.63989675267115],[49.077490774907744,67.65002821629045],[49.05949059490595,67.6534053708302],[49.045090450904524,67.6534053708302],[49.04869048690489,67.65678252536998],[49.05589055890559,67.67029114352903],[49.05949059490595,67.6736682980688],[48.969489694896964,67.69730837984716],[48.94068940689408,67.7006855343869],[48.92268922689229,67.70575126619656],[48.88308883088831,67.72939134797494],[48.85788857888579,67.73445707978456],[48.80388803888039,67.72770277070504],[48.77868778687787,67.72770277070504],[48.77148771487717,67.74121138886412],[48.78228782287823,67.75472000702317],[48.79668796687969,67.76316289337257],[48.80388803888039,67.77329435699187],[48.79668796687969,67.7901801296907],[48.793087930879324,67.83070598416788],[48.584285842858435,67.93370919763072],[48.62388623886238,67.94384066125002],[48.67068670686709,67.93539777490062],[48.79668796687969,67.87798614772461],[48.843488434884364,67.86447752956553],[48.969489694896964,67.85096891140648],[49.13509135091351,67.86278895229566],[49.178291782917825,67.87629757045471],[49.31869318693188,67.89993765223309],[49.50949509495095,67.9556607021392],[49.65349653496537,67.98098936118745],[49.7938979389794,68.03671241109359],[49.9738997389974,68.08736972919004],[50.017100171001715,68.09074688372982],[49.98109981099813,68.06204107014182],[49.88029880298805,68.04008956563334],[49.8478984789848,68.01644948385498],[50.00270002700029,68.05866391560204],[50.04950049500496,68.08736972919004],[50.067500675006755,68.102566924619],[50.09990099901,68.12451842912748],[50.200702007020084,68.16842143814443],[50.26550265502655,68.18024147903361],[50.351903519035204,68.20725871535174],[50.43470434704349,68.22076733351079],[50.64350643506435,68.30013046519528],[50.69390693906939,68.33221343332306],[50.72630726307264,68.34403347421224],[50.75870758707589,68.37105071053034],[50.780307803078045,68.37949359687977],[50.79470794707947,68.37611644233999],[50.84870848708488,68.35078778329176],[50.895508955089554,68.34234489694234],[50.95310953109532,68.34065631967246],[51.057510575105766,68.35078778329176],[51.07911079110792,68.35754209237129],[51.1259112591126,68.37611644233999],[51.147511475114754,68.37949359687977],[51.197911979119795,68.38118217414964],[51.33471334713349,68.40144510138825],[51.424714247142475,68.43015091497625],[51.44631446314463,68.433528069516],[51.48951489514897,68.42170802862682],[51.51111511115113,68.42170802862682],[51.56871568715687,68.4352166467859],[51.58671586715869,68.44703668767508],[51.57231572315723,68.44703668767508],[51.532715327153284,68.4537909967546],[51.56151561515617,68.48249681034261],[51.608316083160844,68.49262827396191],[51.701917019170196,68.48925111942214],[52.05832058320584,68.5432855920584],[52.17712177121771,68.5821228692657],[52.21672216722169,68.58550002380545],[52.2059220592206,68.56017136475722],[52.18072180721808,68.5415970147885],[52.12672126721267,68.52302266481979],[52.05832058320584,68.51626835574027],[52.04752047520475,68.50951404666074],[52.04752047520475,68.50107116031131],[52.05112051120511,68.49262827396191],[52.05832058320584,68.48587396488239],[52.06552065520657,68.48249681034261],[52.10512105121052,68.48756254215226],[52.17712177121771,68.50444831485109],[52.295922959229614,68.49938258304144],[52.33552335523356,68.49262827396191],[52.36072360723608,68.47574250126308],[52.34272342723429,68.47236534672331],[52.321123211232134,68.47574250126308],[52.29952299522995,68.47405392399318],[52.28512285122852,68.46054530583413],[52.288722887228886,68.4537909967546],[52.295922959229614,68.44703668767508],[52.303123031230314,68.43690522405578],[52.295922959229614,68.42339660589673],[52.259922599226,68.40819941046777],[52.15912159121592,68.39806794684847],[52.1339213392134,68.37949359687977],[52.15912159121592,68.37105071053034],[52.24912249122491,68.31701623789411],[52.270722707227094,68.31532766062423],[52.29232292322925,68.32039339243386],[52.321123211232134,68.33221343332306],[52.339123391233926,68.33559058786281],[52.40032400324003,68.33727916513268],[52.41832418324185,68.34234489694234],[52.45072450724507,68.35585351510142],[52.479524795247954,68.36260782418094],[52.573125731257335,68.40988798773765],[52.605526055260555,68.41833087408708],[52.67752677526775,68.42339660589673],[52.709927099271,68.44028237859555],[52.72432724327243,68.45885672856426],[52.731527315273155,68.47405392399318],[52.72432724327243,68.48925111942214],[52.70272702727027,68.50275973758121],[52.67032670326705,68.51289120120049],[52.598325983259855,68.52302266481979],[52.56592565925661,68.53653128297884],[52.55872558725588,68.5415970147885],[52.55152551525515,68.55003990113792],[52.54432544325445,68.55848278748732],[52.54072540725409,68.56692567383675],[52.53352533525336,68.57536856018615],[52.490324903249046,68.59225433288498],[52.50112501125011,68.60407437377415],[52.50112501125011,68.6091401055838],[52.497524975249775,68.61927156920311],[52.605526055260555,68.62602587828263],[52.623526235262375,68.62940303282241],[52.64152641526417,68.63784591917181],[52.648726487264895,68.64797738279111],[52.63432634326344,68.65810884641041],[52.61272612726128,68.65979742368029],[52.56232562325624,68.64966596006099],[52.51552515525157,68.64460022825133],[52.49392493924941,68.63953449644171],[52.479524795247954,68.63109161009228],[52.447124471244734,68.60238579650428],[52.429124291242914,68.59225433288498],[52.41112411124112,68.58718860107533],[52.29952299522995,68.5905657556151],[52.277922779227794,68.59732006469463],[52.288722887228886,68.61589441466333],[52.328323283232834,68.63278018736216],[52.37512375123751,68.64797738279111],[52.454324543245434,68.65810884641041],[52.807128071280715,68.76786636895278],[52.94392943929441,68.78981787346126],[53.08073080730807,68.83203230520832],[53.16353163531636,68.8455409233674],[53.24993249932501,68.87762389149515],[53.339933399334,68.89113250965423],[53.43713437134372,68.91814974597236],[53.879938799388015,68.97387279587846],[54.10314103141033,69.0008900321966],[54.297542975429764,69.0008900321966],[54.347943479434804,69.01271007308577],[54.52794527945281,69.00933291854602],[54.55674556745569,69.00426718673637],[54.56034560345606,68.99920145492672],[54.55674556745569,68.9924471458472],[54.549545495454964,68.98569283676764],[54.53874538745387,68.98231568222789],[54.52794527945281,68.97893852768811],[54.52074520745208,68.97893852768811],[54.509945099451016,68.98062710495802],[54.499144991449924,68.98231568222789],[54.42714427144273,68.97724995041824],[54.35514355143553,68.95867560044954],[53.98433984339843,68.93672409594106],[53.61353613536136,68.9130840141627],[53.595535955359566,68.90632970508318],[53.61713617136172,68.89619824146388],[53.62433624336245,68.8928210869241],[53.627936279362814,68.87931246876505],[53.6639366393664,68.86580385060597],[53.70713707137071,68.86073811879635],[53.73233732337323,68.86580385060597],[53.721537215372166,68.87255815968552],[53.71433714337144,68.87931246876505],[53.703537035370374,68.8826896233048],[53.69273692736928,68.88606677784458],[53.728737287372894,68.89788681873375],[53.95913959139591,68.87593531422527],[54.00234002340025,68.86749242787587],[54.02754027540277,68.8455409233674],[53.95193951939521,68.81514653250949],[53.92313923139233,68.81176937796974],[53.89793897938981,68.81008080069986],[53.879938799388015,68.80670364616009],[53.86553865538656,68.79826075981069],[53.83313833138331,68.76786636895278],[53.829538295382974,68.76280063714313],[53.83313833138331,68.75773490533348],[53.84033840338404,68.74253770990455],[53.836738367383674,68.71383189631655],[53.81873818738188,68.68850323726829],[53.786337863378634,68.67330604183937],[53.753937539375414,68.66655173275981],[53.721537215372166,68.65642026914054],[53.728737287372894,68.63446876463206],[53.753937539375414,68.61082868285371],[53.79353793537936,68.58718860107533],[53.822338223382246,68.56692567383675],[53.87633876338765,68.5331541284391],[53.89073890738908,68.52302266481979],[53.905139051390535,68.50782546939084],[53.9159391593916,68.48925111942214],[53.91953919539196,68.46898819218356],[53.92313923139233,68.4436595331353],[53.92673926739269,68.43183949224613],[53.94113941139412,68.41326514227742],[53.94473944739448,68.4065108331979],[53.930339303393055,68.39131363776895],[53.90873908739087,68.3862479059593],[53.861938619386194,68.3862479059593],[53.847538475384766,68.37611644233999],[53.822338223382246,68.34909920602189],[53.804338043380454,68.34403347421224],[53.786337863378634,68.34741062875199],[53.73953739537396,68.37611644233999],[53.65673656736567,68.40819941046777],[53.60993609936099,68.41326514227742],[53.57393573935741,68.39975652411835],[53.63153631536315,68.3862479059593],[53.645936459364606,68.37611644233999],[53.65673656736567,68.36598497872069],[53.66753667536676,68.35754209237129],[53.69273692736928,68.34403347421224],[53.660336603366034,68.33221343332306],[53.62433624336245,68.33727916513268],[53.552335523355254,68.35923066964116],[53.44073440734408,68.37273928780024],[53.419134191341925,68.36936213326047],[53.40473404734047,68.36091924691107],[53.37593375933761,68.34065631967246],[53.36513365133652,68.34065631967246],[53.339933399334,68.34909920602189],[53.32913329133291,68.35078778329176],[53.318333183331845,68.34741062875199],[53.30033300333005,68.33221343332306],[53.23193231932319,68.2967533106555],[53.210332103321036,68.2697360743374],[53.23913239132392,68.25285030163857],[53.32913329133291,68.24271883801927],[53.37593375933761,68.24271883801927],[53.47313473134733,68.2596046107181],[53.80793807938079,68.25116172436867],[53.836738367383674,68.24440741528915],[53.87633876338765,68.22414448805057],[53.89433894338944,68.22245591078067],[53.99153991539916,68.22076733351079],[54.0419404194042,68.22752164259032],[54.088740887408875,68.24609599255902],[54.14994149941501,68.2984418879254],[54.18594185941859,68.32039339243386],[54.21834218342184,68.31701623789411],[54.182341823418255,68.28155611522658],[54.17154171541716,68.26129318798797],[54.17874178741789,68.23596452893975],[54.20394203942041,68.20894729262162],[54.239942399423995,68.21063586989149],[54.466744667446676,68.30350761973506],[54.50274502745029,68.31195050608446],[54.53514535145354,68.30519619700493],[54.56394563945639,68.2883104243061],[54.650346503465045,68.19375009719266],[54.68994689946899,68.17517574722396],[54.7367473674737,68.17011001541431],[54.83034830348305,68.17348716995409],[54.84834848348484,68.17686432449383],[54.86274862748627,68.18530721084326],[54.877148771487725,68.19712725173244],[54.88434884348845,68.21063586989149],[54.89154891548915,68.22245591078067],[54.91674916749167,68.2410302607494],[54.9239492394924,68.25285030163857],[54.91674916749167,68.28324469249645],[54.89874898748988,68.29506473338563],[54.877148771487725,68.30519619700493],[54.85554855548557,68.32377054697363],[54.89514895148952,68.32377054697363],[54.90954909549097,68.32883627878329],[54.902349023490245,68.34403347421224],[54.91674916749167,68.37442786507012],[54.9239492394924,68.3862479059593],[54.93834938349383,68.39806794684847],[54.9959499594996,68.43859380132565],[55.01395013950139,68.44197095586543],[55.053550535505366,68.44028237859555],[55.067950679506794,68.44703668767508],[55.093150931509314,68.47236534672331],[55.111151111511134,68.48249681034261],[55.19035190351903,68.49093969669201],[55.20835208352085,68.49938258304144],[55.211952119521214,68.50444831485109],[55.21555215552155,68.51457977847039],[55.219152191521914,68.51964551028004],[55.229952299523006,68.52471124208967],[55.39195391953919,68.56354851929697],[55.49275492754927,68.57367998291627],[55.60075600756008,68.5703028283765],[55.697956979569796,68.57705713745605],[55.78795787957881,68.59394291015488],[55.95355953559536,68.65473169187064],[55.99675996759967,68.65979742368029],[56.05076050760508,68.65473169187064],[56.14796147961479,68.62602587828263],[56.2019620196202,68.61927156920311],[56.50436504365044,68.62771445555254],[56.52236522365226,68.61927156920311],[56.493564935649374,68.58550002380545],[56.511565115651166,68.59563148742475],[56.569165691656934,68.63615734190194],[56.59796597965982,68.64122307371159],[56.63036630366304,68.64122307371159],[56.66276662766629,68.63784591917181],[56.69156691566917,68.63109161009228],[56.84996849968502,68.5719914056464],[57.09117091170913,68.54835132386805],[57.32877328773287,68.56523709656688],[57.382773827738276,68.57874571472593],[57.415174151741525,68.59732006469463],[57.44757447574477,68.64460022825133],[57.47277472774729,68.66317457822007],[57.53757537575376,68.68850323726829],[57.55557555575555,68.70201185542737],[57.5879758797588,68.73409482355513],[57.60237602376026,68.74253770990455],[57.92997929979302,68.75098059625395],[57.98037980379806,68.79319502800104],[57.97317973179733,68.80163791435044],[57.96237962379624,68.80839222342996],[57.951579515795174,68.81683510977939],[57.944379443794446,68.83203230520832],[57.95517955179554,68.8455409233674],[57.976779767797694,68.85229523244692],[58.17118171181713,68.88944393238435],[58.22158221582217,68.8928210869241],[58.24678246782469,68.88775535511445],[58.24318243182432,68.87762389149515],[58.21438214382144,68.85229523244692],[58.203582035820375,68.83878661428787],[58.203582035820375,68.83203230520832],[58.21438214382144,68.82696657339869],[58.228782287822895,68.81683510977939],[58.25038250382505,68.79150645073113],[58.26478264782648,68.78137498711186],[58.279182791827935,68.77630925530221],[58.329583295832975,68.77124352349256],[58.37638376383765,68.7560463280636],[58.336783367833675,68.73578340082503],[58.39438394383944,68.73578340082503],[58.42318423184233,68.74253770990455],[58.437584375843755,68.76280063714313],[58.41958419584196,68.76786636895278],[58.38358383583838,68.77968640984196],[58.36558365583656,68.78475214165161],[58.32238322383225,68.78475214165161],[58.304383043830455,68.78812929619139],[58.286382863828635,68.79994933708056],[58.2827828278283,68.80670364616009],[58.2827828278283,68.81176937796974],[58.286382863828635,68.81514653250949],[58.289982899829,68.82190084158904],[58.286382863828635,68.82527799612879],[58.279182791827935,68.82696657339869],[58.27558275582757,68.83203230520832],[58.26838268382684,68.83540945974809],[58.261182611826115,68.83878661428787],[58.253982539825415,68.84216376882762],[58.261182611826115,68.84891807790714],[58.26838268382684,68.85229523244692],[58.27198271982721,68.8556723869867],[58.27198271982721,68.86073811879635],[58.27558275582757,68.86580385060597],[58.27558275582757,68.87762389149515],[58.27198271982721,68.88606677784458],[58.27198271982721,68.89450966419398],[58.2827828278283,68.9029525505434],[58.30078300783009,68.90970685962293],[58.588785887858876,68.95698702317964],[58.88038880388805,69.00257860946647],[59.20439204392045,69.00426718673637],[59.22239222392224,68.99920145492672],[59.240392403924034,68.98906999130742],[59.21879218792188,68.98231568222789],[59.16839168391684,68.98906999130742],[59.14679146791468,68.98569283676764],[59.125191251912526,68.97893852768811],[58.97038970389704,68.96542990952906],[58.923589235892365,68.95360986863989],[58.89118891188912,68.93503551867119],[58.96678966789668,68.92996978686153],[59.107191071910734,68.9029525505434],[59.416794167941674,68.7661777916829],[59.4239942399424,68.75773490533348],[59.42039420394204,68.7188976281262],[59.39879398793988,68.70032327815747],[59.351993519935206,68.70201185542737],[59.26919269192692,68.71552047358642],[59.233192331923334,68.71214331904665],[59.200792007920086,68.70538900996712],[59.1719917199172,68.69356896907794],[59.14679146791468,68.67330604183937],[59.12879128791289,68.64966596006099],[59.1179911799118,68.64291165098146],[59.10359103591037,68.63615734190194],[59.07119071190712,68.62771445555254],[59.05679056790569,68.61927156920311],[59.06039060390606,68.61082868285371],[59.06399063990642,68.60238579650428],[59.06399063990642,68.5821228692657],[59.07119071190712,68.56861425110662],[59.08199081990821,68.5618599420271],[59.099990999910005,68.55341705567767],[59.1107911079111,68.5432855920584],[59.1179911799118,68.53146555116922],[59.11439114391146,68.52471124208967],[59.10359103591037,68.51795693301014],[59.08919089190894,68.50275973758121],[59.07839078390785,68.48249681034261],[59.07119071190712,68.45885672856426],[59.074790747907485,68.43690522405578],[59.08559085590858,68.41664229681717],[59.1107911079111,68.404822255928],[59.391593915939154,68.37105071053034],[59.6759967599676,68.33559058786281],[59.85599855998561,68.38118217414964],[59.89919899198992,68.4065108331979],[59.963999639996416,68.46561103764378],[59.963999639996416,68.47067676945343],[59.95679956799569,68.47743107853296],[59.945999459994596,68.51795693301014],[59.927999279992804,68.53821986024874],[59.870398703987036,68.58381144653558],[59.82359823598236,68.6091401055838],[59.79119791197914,68.61927156920311],[59.77319773197732,68.62602587828263],[59.762397623976256,68.63953449644171],[59.77319773197732,68.66824031002972],[59.812798127981296,68.68850323726829],[59.90999909999101,68.72058620539607],[59.93519935199353,68.72058620539607],[60.03240032400325,68.69356896907794],[60.08280082800829,68.68681465999842],[60.46800468004682,68.72227478266595],[60.558005580055806,68.74422628717443],[60.7020070200702,68.81514653250949],[60.72000720007202,68.82865515066857],[60.7560075600756,68.86580385060597],[60.77040770407706,68.87593531422527],[60.817208172081735,68.89450966419398],[60.867608676086775,68.9029525505434],[60.968409684096855,68.90632970508318],[60.9540095400954,68.9113954368928],[60.93600936009361,68.9130840141627],[60.92160921609218,68.91814974597236],[60.90720907209072,68.92659263232176],[60.92520925209254,68.94347840502058],[60.93960939609397,68.96374133225919],[60.9468094680947,68.98400425949777],[60.9468094680947,69.00257860946647],[60.9468094680947,69.01271007308577],[60.93600936009361,69.03128442305447],[60.93240932409324,69.04141588667378],[60.93600936009361,69.07012170026178],[60.93240932409324,69.07856458661121],[60.90360903609036,69.12246759562817],[60.842408424084255,69.1579277182957],[60.77760777607776,69.1765020682644],[60.72000720007202,69.17481349099452],[60.72720727207272,69.16468202737522],[60.72720727207272,69.15286198648604],[60.72720727207272,69.14273052286674],[60.72000720007202,69.13259905924744],[60.72720727207272,69.12922190470769],[60.73800738007381,69.12246759562817],[60.741607416074174,69.11909044108839],[60.709207092070926,69.10558182292934],[60.666006660066614,69.10727040019921],[60.6228062280623,69.11571328654861],[60.590405904059054,69.13259905924744],[60.583205832058326,69.14948483194627],[60.583205832058326,69.1663706046451],[60.58680586805869,69.18494495461383],[60.59400594005942,69.24066800451993],[60.590405904059054,69.25586519994889],[60.5760057600576,69.27612812718749],[60.56160561605617,69.29470247715619],[60.54360543605438,69.31496540439477],[60.51840518405186,69.3318511770936],[60.482404824048245,69.3419826407129],[60.44640446404466,69.35886841341173],[60.43560435604357,69.36562272249125],[60.432004320043205,69.37237703157078],[60.432004320043205,69.39263995880938],[60.42840428404284,69.40108284515881],[60.41400414004141,69.40783715423834],[60.3240032400324,69.44667443144564],[60.30960309603097,69.45511731779504],[60.26280262802629,69.499020326812],[60.21960219602198,69.52434898586023],[60.21600216002162,69.53110329493975],[60.21600216002162,69.5361690267494],[60.21960219602198,69.54292333582893],[60.22320223202232,69.54798906763858],[60.21600216002162,69.55474337671814],[60.19440194401946,69.56149768579766],[60.15840158401585,69.56994057214706],[60.14040140401406,69.57838345849649],[60.154801548015485,69.60202354027484],[60.15840158401585,69.61384358116402],[60.15120151201512,69.6256636220532],[60.18720187201873,69.65099228110142],[60.23400234002341,69.6645008992605],[60.65520655206552,69.6729437856099],[60.666006660066614,69.67800951741955],[60.666006660066614,69.69489529011838],[60.65520655206552,69.70671533100756],[60.640806408064094,69.71684679462686],[60.633606336063366,69.72528968097629],[60.64800648006482,69.73373256732569],[60.66960669606698,69.73542114459556],[60.691206912069134,69.73035541278591],[60.709207092070926,69.72866683551604],[60.72000720007202,69.74217545367512],[60.7020070200702,69.74892976275464],[60.691206912069134,69.76412695818357],[60.684006840068406,69.78438988542217],[60.68760687606877,69.80465281266078],[60.70560705607056,69.82322716262948],[60.734407344073446,69.8384243580584],[60.77040770407706,69.8485558216777],[60.92520925209254,69.86713017164641],[60.97200972009722,69.86206443983679],[61.02601026010262,69.84686724440783],[61.044010440104415,69.84517866713796],[61.05841058410584,69.8485558216777],[61.09081090810909,69.86375301710666],[61.10521105211052,69.86544159437653],[61.11601116011161,69.86206443983679],[61.13041130411304,69.84517866713796],[61.14121141211413,69.8384243580584],[61.15921159211592,69.83335862624878],[61.303213032130316,69.82491573989935],[61.335613356133564,69.81647285354995],[61.371613716137176,69.801275658121],[61.40761407614076,69.7911441945017],[61.77121771217713,69.7624383809137],[62.160021600216,69.74555260821487],[62.63162631626318,69.74217545367512],[62.92322923229233,69.71178106281721],[63.214832148321506,69.6830752492292],[63.40923409234094,69.67125520834003],[63.57843578435785,69.63917224021225],[63.82323823238232,69.59189207665554],[64.12924129241293,69.54967764490848],[64.37764377643776,69.48382313138305],[64.5468454684547,69.45174016325527],[64.72324723247235,69.38250849519008],[64.91404914049141,69.33691690890325],[65.0040500405004,69.3048339407755],[64.98964989649897,69.28963674534654],[64.96084960849609,69.28288243626702],[64.9320493204932,69.28119385899711],[64.91044910449105,69.28288243626702],[64.85644856448565,69.29470247715619],[64.83124831248313,69.29470247715619],[64.83484834848349,69.27612812718749],[64.81324813248133,69.26599666356819],[64.79164791647918,69.25248804540911],[64.78444784447845,69.23729084998018],[64.8060480604806,69.22209365455123],[64.78444784447845,69.20351930458253],[64.76644766447666,69.18325637734392],[64.7628476284763,69.16299345010535],[64.78444784447845,69.1477962546764],[64.80964809648097,69.14610767740652],[64.83124831248313,69.1562391410258],[64.87444874448747,69.17987922280417],[64.91044910449105,69.19001068642345],[64.9320493204932,69.196764995503],[64.9428494284943,69.20858503639218],[64.9428494284943,69.22040507728136],[64.9320493204932,69.23053654090066],[64.92124921249214,69.23729084998018],[64.91764917649178,69.24235658178983],[64.9248492484925,69.26093093175854],[64.9428494284943,69.26768524083806],[65.02925029250292,69.27106239537784],[65.0688506885069,69.26768524083806],[65.41805418054182,69.1765020682644],[65.81765817658177,69.14273052286674],[65.86445864458645,69.13259905924744],[65.90405904059043,69.11233613200886],[65.88245882458824,69.10558182292934],[65.7528575285753,69.10727040019921],[65.73485734857348,69.11233613200886],[65.74565745657458,69.12584475016791],[65.72765727657278,69.12584475016791],[65.69525695256954,69.12077901835826],[65.67725677256774,69.11909044108839],[65.66645666456665,69.12246759562817],[65.65565655656556,69.12753332743779],[65.6448564485645,69.13091048197757],[65.6340563405634,69.12584475016791],[65.67365673656738,69.09207320477026],[65.68805688056881,69.08531889569073],[65.71685716857169,69.08025316388108],[65.77445774457746,69.07856458661121],[65.85005850058502,69.06505596845213],[65.95445954459547,69.0583016593726],[66.03006030060303,69.04310446394368],[66.08766087660877,69.04141588667378],[66.11286112861129,69.03803873213403],[66.17406174061742,69.01439865035567],[66.23526235262352,69.0008900321966],[66.3288632886329,68.96374133225919],[66.37566375663758,68.95529844590976],[66.67806678066782,68.89619824146388],[66.99126991269912,68.87593531422527],[67.08847088470887,68.8556723869867],[67.12807128071282,68.83878661428787],[67.07047070470705,68.82865515066857],[67.04527045270453,68.81852368704926],[67.03807038070383,68.79657218254079],[67.05607056070562,68.78137498711186],[67.14247142471424,68.7560463280636],[67.16407164071643,68.73916055536478],[67.17847178471786,68.72227478266595],[67.19647196471965,68.707077587237],[67.22167221672217,68.70201185542737],[67.29367293672937,68.70201185542737],[67.32967329673298,68.69694612361772],[67.35847358473586,68.68343750545864],[67.38007380073802,68.66992888729959],[67.58527585275854,68.60407437377415],[67.80847808478086,68.50275973758121],[67.70407704077041,68.51626835574027],[67.7940779407794,68.47911965580283],[67.81927819278192,68.47236534672331],[67.87687876878769,68.47405392399318],[67.90567905679058,68.47067676945343],[68.06048060480606,68.43183949224613],[68.1108811088111,68.42846233770635],[68.13608136081362,68.42339660589673],[68.15048150481505,68.41326514227742],[68.16128161281614,68.39975652411835],[68.17568175681757,68.38962506049907],[68.24768247682476,68.35585351510142],[68.25848258482586,68.33390201059294],[68.20448204482045,68.29506473338563],[68.20448204482045,68.2697360743374],[68.19728197281972,68.26298176525785],[68.19368193681939,68.25622745617832],[68.1828818288183,68.24271883801927],[68.2368823688237,68.2494731470988],[68.26208262082622,68.2494731470988],[68.28008280082801,68.23596452893975],[68.28368283682838,68.22414448805057],[68.27648276482765,68.21401302443127],[68.26928269282695,68.20557013808184],[68.25848258482586,68.20050440627219],[68.28728287282874,68.18868436538301],[68.31968319683199,68.19712725173244],[68.38448384483846,68.22921021986019],[68.44928449284492,68.23765310620962],[68.48168481684817,68.2494731470988],[68.48528485284854,68.2697360743374],[68.54648546485467,68.30350761973506],[68.55728557285573,68.30519619700493],[68.59688596885971,68.31701623789411],[68.60768607686077,68.31870481516398],[68.65088650886509,68.31701623789411],[68.62208622086223,68.32377054697363],[68.58968589685898,68.33221343332306],[68.56448564485646,68.34909920602189],[68.5608856088561,68.37273928780024],[68.57168571685719,68.38287075141952],[68.6148861488615,68.4065108331979],[68.64008640086402,68.4250851831666],[68.66168661686618,68.4436595331353],[68.69048690486906,68.46729961491366],[68.7588875888759,68.50444831485109],[68.92448924489247,68.63784591917181],[68.9388893888939,68.65642026914054],[68.94608946089463,68.67837177364899],[68.95328953289533,68.69356896907794],[68.98568985689857,68.7273405144756],[68.9928899288993,68.7459148644443],[69.0108901089011,68.7661777916829],[69.0108901089011,68.77293210076243],[69.0108901089011,68.77630925530221],[69.00729007290073,68.77968640984196],[69.00729007290073,68.78475214165161],[69.01449014490146,68.80670364616009],[69.01809018090182,68.81514653250949],[69.06849068490686,68.82358941885892],[69.08649086490865,68.83709803701797],[69.09369093690938,68.85736096425657],[69.10809108091081,68.87931246876505],[69.00009000090003,68.87931246876505],[68.96048960489605,68.88606677784458],[68.94608946089463,68.8928210869241],[68.94968949689499,68.9029525505434],[68.9928899288993,68.91477259143258],[69.08649086490865,68.91646116870245],[69.12969129691297,68.92659263232176],[69.06129061290613,68.92659263232176],[69.09729097290975,68.94178982775071],[69.180091800918,68.95192129137001],[69.21969219692198,68.96205275498929],[69.01449014490146,68.94854413683024],[69.02889028890289,68.96205275498929],[69.00009000090003,68.96542990952906],[68.91368913689138,68.95360986863989],[68.78768787687878,68.91646116870245],[68.6868868688687,68.91814974597236],[68.4888848888489,68.97049564133872],[68.45648456484565,68.98400425949777],[68.43848438484386,69.00257860946647],[68.39888398883988,69.04648161848343],[68.37728377283773,69.0684331229919],[68.12528125281253,69.22209365455123],[68.06048060480606,69.27781670445736],[68.02448024480245,69.32003113620442],[68.02088020880208,69.33522833163337],[68.0388803888039,69.35886841341173],[68.07848078480785,69.37744276338043],[68.10368103681037,69.39770569061903],[68.08928089280894,69.42134577239739],[68.09648096480964,69.42810008147691],[68.08928089280894,69.44160869963599],[68.08928089280894,69.45511731779504],[68.09648096480964,69.4686259359541],[68.10368103681037,69.48213455411317],[68.10368103681037,69.49564317227222],[68.09648096480964,69.51590609951083],[68.09648096480964,69.5277261404],[68.10008100081001,69.53448044947953],[68.10368103681037,69.54292333582893],[68.10728107281074,69.54798906763858],[68.09648096480964,69.55136622217836],[68.06048060480606,69.55305479944823],[68.0460804608046,69.55136622217836],[68.03168031680318,69.54123475855906],[68.01368013680138,69.52097183132048],[68.01368013680138,69.51421752224093],[68.02448024480245,69.5074632131614],[68.0388803888039,69.4888888631927],[67.97047970479704,69.49057744046257],[67.82287822878229,69.51084036770118],[67.68247682476826,69.55980910852776],[67.62847628476285,69.59020349938567],[67.56007560075602,69.59864638573507],[67.45927459274594,69.62735219932307],[67.31527315273155,69.63072935386285],[67.1028710287103,69.69320671284851],[67.01647016470164,69.70333817646781],[66.96966969669697,69.68814098103886],[66.98046980469806,69.68645240376898],[66.99126991269912,69.68138667195933],[67.00207002070022,69.6729437856099],[67.00567005670058,69.6645008992605],[66.99846998469985,69.65268085837133],[66.98766987669879,69.64761512656167],[66.93366933669338,69.64086081748215],[66.86886868868689,69.63917224021225],[66.85446854468546,69.63748366294237],[66.86886868868689,69.61215500389415],[66.9588695886959,69.5361690267494],[66.93006930069302,69.5277261404],[66.88686886868871,69.53785760401931],[66.81486814868148,69.57162914941696],[66.79686796867969,69.58682634484589],[66.78606786067863,69.60202354027484],[66.78606786067863,69.62228646751342],[66.78606786067863,69.6459265492918],[66.79326793267933,69.68814098103886],[66.79686796867969,69.71178106281721],[66.78606786067863,69.72528968097629],[66.77166771667717,69.74048687640521],[66.76806768067681,69.7624383809137],[66.77526775267754,69.7827013081523],[66.80046800468006,69.81647285354995],[66.87246872468725,69.9954620441575],[66.88326883268834,70.01234781685633],[66.9048690486905,70.03092216682504],[66.91926919269193,70.04274220771421],[66.93726937269375,70.05118509406364],[66.95526955269554,70.05625082587329],[66.9768697686977,70.05793940314317],[66.98766987669879,70.05456224860339],[66.99846998469985,70.03767647590456],[67.00567005670058,70.03092216682504],[66.98046980469806,70.01572497139611],[66.96966969669697,70.00728208504668],[66.9660696606966,69.9954620441575],[66.98406984069842,69.97013338510928],[67.00567005670058,69.96337907602972],[67.02007020070201,69.96506765329963],[67.05247052470526,69.9751991169189],[67.14247142471424,69.98364200326833],[67.19647196471965,69.9954620441575],[67.25047250472505,70.02079070320576],[67.29727297272973,70.05793940314317],[67.32607326073261,70.10521956669987],[67.31167311673119,70.10521956669987],[67.29727297272973,70.09846525762035],[67.28647286472867,70.09677668035047],[67.27927279272794,70.10521956669987],[67.27927279272794,70.1136624530493],[67.27927279272794,70.1221053393987],[67.28647286472867,70.12885964847825],[67.28647286472867,70.13730253482765],[67.28647286472867,70.15418830752648],[67.2828728287283,70.17276265749518],[67.27207272072721,70.18964843019401],[67.25047250472505,70.19471416200366],[67.24687246872469,70.18458269838436],[67.25767257672578,70.16263119387588],[67.26487264872651,70.14574542117705],[67.24327243272432,70.14574542117705],[67.16407164071643,70.17276265749518],[67.12447124471245,70.19977989381331],[67.10647106471066,70.20991135743262],[67.09567095670957,70.2217313983218],[67.1028710287103,70.24368290283027],[67.11727117271172,70.2605686755291],[67.14967149671497,70.2875859118472],[67.16407164071643,70.30447168454603],[67.19287192871928,70.38214623896064],[67.2180721807218,70.40916347527877],[67.26487264872651,70.41422920708843],[67.25407254072542,70.434492134327],[67.25407254072542,70.45644363883548],[67.26847268472685,70.47332941153431],[67.29367293672937,70.47670656607409],[67.27567275672757,70.48177229788374],[67.22527225272253,70.50710095693196],[67.21447214472147,70.52398672963079],[67.22167221672217,70.54762681140915],[67.27567275672757,70.65907291122141],[67.29007290072903,70.67764726119012],[67.32607326073261,70.71648453839742],[67.3368733687337,70.73505888836613],[67.33327333273334,70.7570103928746],[67.31887318873189,70.78402762919274],[67.29007290072903,70.80766771097109],[67.25767257672578,70.82624206093979],[67.13887138871391,70.84143925636874],[67.11007110071102,70.83975067909887],[67.04167041670416,70.81611059732049],[66.79686796867969,70.79078193827226],[66.72126721267213,70.76883043376378],[66.68886688866888,70.77051901103366],[66.66726667266673,70.82793063820966],[66.64926649266494,70.84481641090849],[66.62766627666278,70.86001360633745],[66.60966609666099,70.88027653357605],[66.62406624066242,70.89885088354475],[66.64926649266494,70.91067092443393],[66.75006750067502,70.94781962437136],[66.77166771667717,70.95963966526054],[66.82206822068221,71.00016551973772],[66.8328683286833,71.01367413789677],[66.840068400684,71.03224848786547],[66.840068400684,71.03900279694503],[66.8328683286833,71.0406913742149],[66.82926829268294,71.04575710602455],[66.840068400684,71.0592657241836],[66.8508685086851,71.06602003326313],[66.87606876068762,71.07277434234268],[66.89046890468904,71.0778400741523],[66.86886868868689,71.09134869231139],[66.84366843668437,71.09979157866078],[66.81846818468185,71.10148015593069],[66.80046800468006,71.09303726958126],[66.80406804068042,71.07446291961256],[66.78606786067863,71.06770861053303],[66.75726757267574,71.06095430145348],[66.73926739267392,71.05251141510408],[66.76446764467644,71.02887133332572],[66.77166771667717,71.02380560151607],[66.73926739267392,71.00691982881725],[66.68886688866888,71.0018540970076],[66.64206642066421,71.00860840608712],[66.61686616866169,71.03224848786547],[66.62046620466205,71.05757714691373],[66.64566645666457,71.07952865142221],[66.81126811268115,71.16058036037657],[66.82566825668258,71.1859090194248],[66.8328683286833,71.2061719466634],[66.84366843668437,71.22643487390201],[66.90126901269014,71.28553507834789],[66.91206912069123,71.29397796469729],[66.92646926469266,71.29904369650694],[67.03447034470346,71.29904369650694],[67.17127171271713,71.3328152419046],[67.30807308073082,71.35138959187333],[67.49527495274953,71.40373548723969],[67.5888758887589,71.41555552812886],[67.58527585275854,71.43244130082769],[67.60327603276033,71.442572764447],[67.6788767887679,71.45101565079639],[67.74007740077403,71.46790142349522],[67.8480784807848,71.51011585524228],[67.87687876878769,71.51687016432183],[67.92727927279273,71.52193589613148],[67.94887948879489,71.5270016279411],[68.01008010080102,71.57090463695806],[68.25488254882549,71.68910504584986],[68.30528305283053,71.69585935492938],[68.34848348483484,71.6755964276908],[68.33408334083342,71.68572789131008],[68.31968319683199,71.69585935492938],[68.3088830888309,71.70430224127881],[68.3088830888309,71.71612228216799],[68.31608316083162,71.72625374578726],[68.44568445684459,71.81743691836093],[68.46728467284674,71.82587980471035],[68.47808478084781,71.83601126832966],[68.50328503285033,71.88498000915624],[68.51408514085142,71.90186578185507],[68.52848528485285,71.9103086682045],[68.5428854288543,71.91537440001414],[68.55728557285573,71.92381728636354],[68.5608856088561,71.9390144817925],[68.5608856088561,71.9761631817299],[68.58248582485825,71.99811468623838],[68.64368643686439,72.03357480890591],[68.65808658086581,72.05552631341439],[68.65448654486545,72.0842321270024],[68.65808658086581,72.09267501335182],[68.66168661686618,72.10280647697112],[68.6688866888669,72.10956078605065],[68.6760867608676,72.11800367240005],[68.6760867608676,72.13151229055913],[68.68328683286833,72.1517752177977],[68.73368733687337,72.20918684497371],[68.74448744487447,72.2497126994509],[68.75528755287553,72.26659847214972],[68.77328773287735,72.27841851303893],[68.76968769687699,72.29361570846785],[68.78408784087841,72.30712432662693],[68.82008820088203,72.32569867659564],[68.81648816488166,72.33751871748481],[68.81648816488166,72.35102733564386],[68.82368823688239,72.36284737653304],[68.83088830888309,72.37466741742222],[68.82368823688239,72.3881760355813],[68.83088830888309,72.40506180828012],[68.84888848888491,72.435456199138],[68.85248852488525,72.44389908548743],[68.84888848888491,72.45909628091636],[68.85248852488525,72.46753916726578],[68.8668886688867,72.47598205361518],[68.89928899288995,72.47935920815496],[68.91728917289174,72.48442493996461],[68.8848888488885,72.50637644447309],[68.87408874088743,72.51819648536227],[68.87048870488707,72.53170510352132],[68.88128881288813,72.5435251444105],[68.89928899288995,72.5536566080298],[68.91728917289174,72.56547664891897],[68.93168931689317,72.59755961704676],[68.96048960489605,72.62288827609498],[68.96408964089642,72.63808547152394],[68.97848978489785,72.65497124422276],[69.00369003690037,72.66003697603242],[69.03249032490325,72.65834839876251],[69.0540905409054,72.66172555330229],[69.03249032490325,72.67016843965169],[68.9928899288993,72.67523417146134],[68.97488974889751,72.68705421235052],[68.97488974889751,72.69549709869995],[68.98928989289894,72.70562856231925],[69.18369183691837,72.77823738492418],[69.23049230492305,72.80525462124231],[69.27729277292775,72.84071474390984],[69.3060930609306,72.88292917565693],[69.30249302493027,72.93020933921363],[69.35289352893531,72.95216084372211],[69.40689406894069,72.96735803915107],[69.46449464494646,72.97580092550047],[69.77409774097742,72.97411234823059],[69.79569795697958,72.96398088461129],[69.79929799297994,72.94371795737271],[69.77409774097742,72.93527507102328],[69.57249572495726,72.92007787559433],[69.55809558095581,72.9133235665148],[69.55089550895511,72.9031921028955],[69.56169561695617,72.88799490746658],[69.58689586895869,72.87786344384727],[69.88929889298893,72.88124059838705],[70.17370173701738,72.89981494835575],[70.65610656106563,72.88968348473645],[71.03411034110343,72.90656925743528],[71.26811268112681,72.8947492165461],[71.3509135091351,72.90994641197506],[71.44811448114481,72.90825783470515],[71.5309153091531,72.91670072105458],[71.55611556115562,72.90825783470515],[71.56331563315635,72.91670072105458],[71.6749167491675,72.8846177529268],[71.98451984519846,72.8474690529894],[72.00972009720098,72.83396043483032],[71.98451984519846,72.83227185756044],[71.93771937719379,72.82214039394114],[71.91251912519127,72.82045181667127],[71.86211862118623,72.82214039394114],[71.8369183691837,72.82045181667127],[71.81531815318155,72.81200893032184],[71.85131851318513,72.81200893032184],[71.86931869318695,72.81032035305196],[71.87651876518765,72.80187746670256],[71.88731887318875,72.79681173489291],[72.13212132121322,72.83227185756044],[72.29772297722977,72.79343458035314],[72.49572495724959,72.78836884854348],[72.66132661326614,72.7394001077169],[72.83772837728378,72.7106942941289],[72.72252722527227,72.70225140777947],[72.7369273692737,72.68029990327099],[72.74052740527407,72.67523417146134],[72.75852758527586,72.67185701692159],[72.78012780127801,72.67016843965169],[72.80172801728017,72.66510270784207],[72.8089280892809,72.65497124422276],[72.7909279092791,72.64315120333359],[72.75852758527586,72.63133116244441],[72.72972729727297,72.61782254428533],[72.72972729727297,72.59755961704676],[72.76212762127622,72.55872233983945],[72.78012780127801,72.5435251444105],[72.84492844928451,72.51988506263214],[72.84492844928451,72.51313075355262],[72.82692826928269,72.50131071266344],[72.79812798127983,72.48104778542483],[72.79452794527947,72.46585058999591],[72.79812798127983,72.41350469462952],[72.80172801728017,72.39493034466082],[72.83052830528305,72.34933875837399],[72.85212852128521,72.32401009932576],[72.87012870128703,72.31219005843656],[72.88452884528846,72.30712432662693],[72.88452884528846,72.29530428573776],[72.8737287372874,72.28179566757868],[72.86652866528667,72.27166420395938],[72.84852848528487,72.2615327403401],[72.8089280892809,72.24633554491115],[72.76572765727659,72.2226954631328],[72.74412744127443,72.20580969043397],[72.72612726127261,72.18554676319536],[72.72252722527227,72.15852952687723],[72.72252722527227,72.133200867829],[72.71892718927191,72.12644655874948],[72.70812708127082,72.1146265178603],[72.69012690126902,72.10280647697112],[72.59652596525967,72.06396919976382],[72.57852578525785,72.04370627252521],[72.56772567725679,72.02344334528664],[72.56052560525606,71.97954033626968],[72.54972549725497,71.9575888317612],[72.53532535325354,71.93732590452262],[72.52092520925211,71.92212870909367],[72.4849248492485,71.89848862731532],[72.39492394923951,71.87822570007671],[72.35172351723517,71.86471708191766],[72.31932319323195,71.82250265017058],[72.34092340923411,71.77691106388374],[72.36252362523626,71.73638520940656],[72.34452344523447,71.70767939581856],[72.26172261722618,71.69417077765951],[72.2329223292233,71.68572789131008],[72.22932229322294,71.67897358223055],[72.22572225722257,71.66715354134138],[72.22572225722257,71.6452020368329],[72.20772207722078,71.61480764597502],[72.16812168121683,71.59961045054607],[72.02772027720277,71.57259321422794],[72.01332013320135,71.57259321422794],[71.98451984519846,71.57934752330749],[71.97371973719737,71.57934752330749],[71.95931959319594,71.57428179149784],[71.92331923319233,71.55908459606889],[71.8369183691837,71.53206735975076],[71.81171811718119,71.51180443251218],[71.80451804518046,71.4797214643844],[71.81531815318155,71.45439280533617],[71.84051840518407,71.43075272355779],[71.86931869318695,71.41386695085899],[71.91251912519127,71.39698117816016],[72.1069210692107,71.29060081015754],[72.57132571325715,71.16058036037657],[72.63612636126362,71.13187454678857],[72.67212672126723,71.10823446501021],[72.67572675726757,71.08966011504148],[72.63252632526326,71.05251141510408],[72.6217262172622,71.03224848786547],[72.63252632526326,71.01029698335702],[72.64692646926471,71.00016551973772],[72.68652686526866,70.98496832430877],[72.70452704527045,70.97314828341959],[72.70812708127082,70.96639397434006],[72.70812708127082,70.96132824253041],[72.70812708127082,70.95626251072076],[72.71172711727118,70.95288535618099],[72.71892718927191,70.94781962437136],[72.73332733327334,70.94275389256171],[72.76932769327695,70.91911381078333],[72.80172801728017,70.90560519262428],[72.82692826928269,70.88703084265558],[72.83772837728378,70.86001360633745],[72.83052830528305,70.83806210182897],[72.82332823328235,70.81442202005061],[72.8089280892809,70.79247051554213],[72.7909279092791,70.77389616557343],[72.78012780127801,70.7570103928746],[72.78012780127801,70.7384360429059],[72.78012780127801,70.71648453839742],[72.77652776527765,70.69453303388894],[72.7549275492755,70.67764726119012],[72.68652686526866,70.63374425217316],[72.6829268292683,70.61685847947433],[72.68652686526866,70.61179274766468],[72.68652686526866,70.60672701585506],[72.68652686526866,70.5999727067755],[72.69372693726939,70.59321839769598],[72.70092700927009,70.58646408861645],[72.70812708127082,70.58477551134658],[72.71532715327155,70.58308693407668],[72.72252722527227,70.57970977953693],[72.75132751327513,70.5628240068381],[72.76572765727659,70.55100396594892],[72.77652776527765,70.53749534778984],[72.77652776527765,70.51385526601149],[72.75852758527586,70.47164083426443],[72.77292772927731,70.4260492479776],[72.74052740527407,70.41254062981852],[72.65412654126541,70.39903201165947],[72.6109261092611,70.38383481623052],[72.45972459724598,70.30447168454603],[72.43452434524346,70.28589733457733],[72.43452434524346,70.26563440733875],[72.46692466924671,70.2403057482905],[72.60012600126001,70.19302558473379],[72.6217262172622,70.16094261660601],[72.6109261092611,70.14405684390718],[72.57852578525785,70.1136624530493],[72.57492574925749,70.10859672123965],[72.57492574925749,70.10015383489022],[72.57492574925749,70.0950881030806],[72.56772567725679,70.09171094854082],[72.54252542525427,70.08157948492152],[72.51372513725138,70.0663822894926],[72.50292502925029,70.05793940314317],[72.49212492124923,70.04780793952386],[72.49212492124923,70.04105363044434],[72.49932499324993,70.03429932136481],[72.51732517325175,70.02079070320576],[72.52092520925211,70.01234781685633],[72.52092520925211,69.99377346688763],[72.52452524525245,69.9870191578081],[72.54612546125463,69.96844480783938],[72.61812618126183,69.9279189533622],[72.65052650526505,69.90427887158384],[72.67932679326793,69.87219590345606],[72.69012690126902,69.83673578078853],[72.67572675726757,69.801275658121],[72.6649266492665,69.78438988542217],[72.65772657726578,69.76581553545347],[72.65052650526505,69.74892976275464],[72.63252632526326,69.73204399005581],[72.58212582125822,69.70671533100756],[72.56052560525606,69.68814098103886],[72.56412564125642,69.6746323628798],[72.55332553325533,69.6645008992605],[72.51732517325175,69.6543694356412],[72.50292502925029,69.6459265492918],[72.53532535325354,69.62904077659297],[72.56052560525606,69.60371211754472],[72.62892628926289,69.51084036770118],[72.63252632526326,69.49564317227222],[72.63252632526326,69.45511731779504],[72.63972639726398,69.44160869963599],[72.6217262172622,69.43147723601669],[72.60732607326074,69.42641150420704],[72.58932589325894,69.42303434966726],[72.50652506525066,69.42134577239739],[72.48852488524886,69.41459146331786],[72.52092520925211,69.39770569061903],[72.57132571325715,69.3808199179202],[72.61452614526146,69.35886841341173],[72.63252632526326,69.32847402255385],[72.63612636126362,69.30989967258512],[72.64692646926471,69.29976820896584],[72.64692646926471,69.29301389988632],[72.63252632526326,69.27612812718749],[72.60732607326074,69.26430808629829],[72.55332553325533,69.24742231359949],[72.52812528125281,69.23560227271028],[72.50652506525066,69.21871650001145],[72.48852488524886,69.19845357277288],[72.47772477724777,69.1765020682644],[72.47412474124741,69.15117340921617],[72.48132481324814,69.12922190470769],[72.52812528125281,69.07181027753168],[72.53532535325354,69.05154735029308],[72.54252542525427,69.00257860946647],[72.55332553325533,68.98569283676764],[72.56052560525606,68.97387279587846],[72.57132571325715,68.95192129137001],[72.57852578525785,68.94010125048081],[72.58572585725858,68.93165836413141],[72.69372693726939,68.8641152733361],[72.85212852128521,68.79826075981069],[73.07533075330755,68.7476034417142],[73.53973539735398,68.5804342919958],[73.61173611736118,68.53653128297884],[73.63333633336333,68.51626835574027],[73.64413644136442,68.50107116031131],[73.64773647736479,68.48418538761248],[73.64773647736479,68.45716815129438],[73.64053640536406,68.4436595331353],[73.62253622536227,68.433528069516],[73.60453604536048,68.43183949224613],[73.59013590135902,68.44028237859555],[73.59013590135902,68.45210241948473],[73.59373593735938,68.46392246037391],[73.60093600936011,68.47405392399318],[73.60453604536048,68.48249681034261],[73.57933579335796,68.49262827396191],[73.53253532535325,68.48080823307274],[73.45333453334536,68.4436595331353],[73.43533435334353,68.4250851831666],[73.41733417334174,68.37611644233999],[73.39933399333995,68.36091924691107],[73.31653316533166,68.32883627878329],[73.16533165331654,68.24609599255902],[73.10773107731077,68.22583306532044],[73.08973089730898,68.21401302443127],[73.1257312573126,68.18361863357336],[73.13653136531366,68.16673286087453],[73.1329313293133,68.14646993363596],[73.11853118531187,68.13633847001665],[73.08253082530825,68.11945269731783],[73.07173071730719,68.10425550188887],[73.07173071730719,68.09074688372982],[73.08253082530825,68.08230399738042],[73.10413104131041,68.07048395649124],[73.19053190531906,67.99280940207663],[73.20133201332015,67.9759236293778],[73.20493204932049,67.9573492794091],[73.20133201332015,67.91344627039214],[73.20493204932049,67.86616610683544],[73.19413194131943,67.84928033413661],[73.16533165331654,67.83746029324743],[73.09333093330935,67.83070598416788],[73.07173071730719,67.81550878873895],[73.08253082530825,67.78342582061117],[73.11133111331114,67.76316289337257],[73.13653136531366,67.74965427521352],[73.15093150931511,67.73107992524481],[73.13653136531366,67.70406268892668],[73.1149311493115,67.69055407076763],[73.10053100531007,67.69561980257728],[73.09333093330935,67.71081699800621],[73.08253082530825,67.72263703889539],[73.0609306093061,67.72939134797494],[73.03933039330394,67.72939134797494],[73.01773017730179,67.72263703889539],[72.97812978129781,67.70743984346646],[72.90972909729098,67.69055407076763],[72.89172891728919,67.6837997616881],[72.88452884528846,67.67535687533868],[72.89892898928991,67.66015967990973],[72.85212852128521,67.6348310208615],[72.7909279092791,67.62638813451207],[72.6109261092611,67.62638813451207],[72.58212582125822,67.61963382543254],[72.5569255692557,67.60443663000362],[72.54612546125463,67.59092801184454],[72.54252542525427,67.57910797095536],[72.54252542525427,67.56897650733606],[72.54252542525427,67.55715646644688],[72.55332553325533,67.53689353920831],[72.53172531725318,67.52000776650948],[72.50292502925029,67.5064991483504],[72.40572405724058,67.4794819120323],[72.39132391323915,67.46766187114312],[72.39492394923951,67.45753040752382],[72.40572405724058,67.44739894390452],[72.42732427324273,67.43389032574547],[72.44892448924489,67.41362739850686],[72.45252452524525,67.40011878034781],[72.44892448924489,67.38829873945863],[72.44532445324455,67.38154443037908],[72.42732427324273,67.35621577133085],[72.42732427324273,67.34777288498142],[72.40212402124021,67.32750995774285],[72.34812348123481,67.31568991685367],[72.29052290522907,67.30893560777415],[72.25452254522546,67.31062418504402],[72.21132211322114,67.32750995774285],[72.18972189721899,67.3325756895525],[72.16452164521647,67.32750995774285],[72.14652146521465,67.31906707139342],[72.12492124921249,67.31400133958377],[72.06012060120602,67.30893560777415],[72.04932049320493,67.30218129869459],[72.04572045720457,67.29204983507532],[72.0529205292053,67.26672117602706],[72.05652056520566,67.26672117602706],[72.08172081720818,67.25996686694754],[72.09972099720997,67.25490113513789],[72.11052110521106,67.25152398059811],[72.14292142921431,67.24308109424871],[72.18252182521826,67.23801536243906],[72.21492214922151,67.22450674428],[72.22572225722257,67.19073519888235],[72.2329223292233,67.16878369437387],[72.22572225722257,67.15865223075457],[72.20772207722078,67.15358649894492],[72.18972189721899,67.15358649894492],[72.17532175321753,67.16202938529435],[72.16452164521647,67.17216084891365],[72.15372153721538,67.195800930692],[72.14292142921431,67.2042438170414],[72.12852128521286,67.20593239431128],[72.11772117721179,67.20086666250165],[72.11772117721179,67.19073519888235],[72.12492124921249,67.17891515799317],[72.13932139321395,67.16034080802444],[71.91251912519127,67.13163499443644],[71.93771937719379,67.12488068535691],[71.99171991719919,67.12488068535691],[72.01332013320135,67.11137206719786],[71.99531995319956,67.10630633538821],[72.00612006120062,67.0776005218002],[71.99531995319956,67.05564901729173],[71.9809198091981,67.05058328548208],[71.94491944919451,67.04382897640255],[71.93051930519306,67.03369751278325],[71.919719197192,67.02525462643385],[71.90531905319054,67.01343458554467],[71.89451894518947,67.00499169919524],[71.87291872918729,66.9914830810362],[71.81891818918191,66.98304019468677],[71.7937179371794,66.97459730833737],[71.7829178291783,66.95940011290841],[71.76491764917651,66.92900572205053],[71.74691746917469,66.91549710389145],[71.72171721717217,66.91549710389145],[71.65331653316534,66.93913718566984],[71.62451624516245,66.94589149474936],[71.59571595715957,66.94082576293971],[71.5489154891549,66.92225141297101],[71.52011520115201,66.91887425843123],[71.49491494914949,66.92731714478063],[71.42651426514266,66.96784299925784],[71.39411394113941,66.97459730833737],[71.36171361713619,66.97459730833737],[71.32931329313294,66.96615442198794],[71.30051300513006,66.95433438109876],[71.43011430114302,66.92731714478063],[71.45171451714518,66.90536564027218],[71.39051390513907,66.90536564027218],[71.41931419314193,66.89523417665288],[71.51651516515167,66.87834840395405],[71.49851498514985,66.86821694033475],[71.48771487714879,66.85808547671544],[71.48411484114843,66.8445768585564],[71.48051480514806,66.82769108585757],[71.49131491314915,66.81080531315874],[71.50931509315095,66.80067384953944],[71.53451534515347,66.79223096319004],[71.5489154891549,66.78209949957073],[71.52011520115201,66.76352514960203],[71.54531545315453,66.74832795417308],[71.5849158491585,66.73144218147425],[71.58851588515887,66.7078020996959],[71.59571595715957,66.6976706360766],[71.58851588515887,66.6892277497272],[71.55611556115562,66.67909628610789],[71.57051570515705,66.66389909067894],[71.57771577715778,66.65883335886929],[71.5309153091531,66.64532474071024],[71.4589145891459,66.63857043163071],[71.39051390513907,66.64194758617046],[71.3509135091351,66.65883335886929],[71.36531365313655,66.67403055429824],[71.37611376113762,66.68078486337777],[71.38331383313835,66.68753917245729],[71.35811358113583,66.67909628610789],[71.31851318513185,66.64532474071024],[71.29691296912969,66.63857043163071],[71.26451264512647,66.63857043163071],[71.19611196111961,66.64870189524999],[71.16371163711639,66.65883335886929],[71.18171181711818,66.64701331798011],[71.21771217712177,66.63519327709093],[71.23211232112322,66.62506181347163],[71.08451084510847,66.63181612255119],[71.07011070110701,66.63012754528128],[71.05571055710558,66.62506181347163],[71.04491044910449,66.61661892712223],[71.04131041310413,66.60479888623306],[71.05571055710558,66.59804457715353],[71.12411124111242,66.58453595899445],[71.0809108091081,66.56933876356553],[71.03411034110343,66.5710273408354],[70.94050940509405,66.58453595899445],[70.99450994509945,66.55583014540645],[70.98010980109802,66.54738725905705],[70.98010980109802,66.54401010451727],[70.98010980109802,66.53556721816787],[70.68850688506885,66.51530429092927],[70.41490414904149,66.56258445448597],[70.31770317703177,66.59297884534388],[70.29610296102962,66.63857043163071],[70.31410314103141,66.65039047251989],[70.33930339303393,66.65376762705964],[70.39330393303933,66.65207904978976],[70.41130411304113,66.65714478159941],[70.44730447304474,66.67571913156812],[70.46530465304653,66.67909628610789],[70.57330573305734,66.68753917245729],[70.59850598505986,66.69260490426694],[70.60930609306095,66.6976706360766],[70.61650616506165,66.70104779061637],[70.61650616506165,66.71286783150555],[70.62370623706238,66.7179335633152],[70.63450634506347,66.72131071785495],[70.6489064890649,66.71962214058507],[70.65970659706599,66.7162449860453],[70.67050670506706,66.71455640877542],[70.68130681306815,66.7162449860453],[70.73530735307355,66.74832795417308],[70.74250742507425,66.75845941779238],[70.72450724507246,66.76183657233213],[70.62370623706238,66.7652137268719],[70.5769057690577,66.76014799506225],[70.53370533705339,66.74157364509355],[70.61650616506165,66.74157364509355],[70.46530465304653,66.72131071785495],[70.48330483304835,66.71455640877542],[70.54090540905409,66.7078020996959],[70.54090540905409,66.70104779061637],[70.31410314103141,66.67909628610789],[70.28530285302853,66.68247344064764],[70.17370173701738,66.7078020996959],[70.15570155701559,66.7162449860453],[70.15210152101523,66.72806502693447],[70.17730177301775,66.74157364509355],[70.09450094500946,66.75170510871286],[70.06570065700657,66.76014799506225],[69.99369993699938,66.79898527226956],[69.96849968499686,66.81924819950814],[69.95409954099543,66.84288828128652],[69.93609936099361,66.8631512085251],[69.89649896498966,66.87159409487452],[69.8820988209882,66.86146263125522],[69.8820988209882,66.84964259036605],[69.88569885698857,66.83782254947687],[69.86409864098641,66.82262535404791],[69.83529835298353,66.81587104496839],[69.73809738097381,66.80911673588886],[69.70569705697059,66.81418246769852],[69.63729637296373,66.83613397220697],[69.60129601296015,66.83782254947687],[69.57609576095763,66.82937966312744],[69.58689586895869,66.82093677677804],[69.61569615696158,66.80911673588886],[69.63729637296373,66.79729669499969],[69.59769597695978,66.78885380865026],[69.39609396093962,66.83106824039734],[69.37809378093783,66.83106824039734],[69.32049320493206,66.81755962223826],[69.30249302493027,66.81755962223826],[69.12969129691297,66.83106824039734],[68.96408964089642,66.80911673588886],[68.98208982089821,66.79560811772978],[68.99648996489967,66.78716523138038],[69.01449014490146,66.78378807684061],[69.08289082890829,66.77872234503096],[69.10449104491045,66.77196803595143],[69.11529115291154,66.7550822632526],[69.1188911889119,66.73313075874412],[69.10809108091081,66.6892277497272],[69.10449104491045,66.66896482248859],[69.10449104491045,66.63688185436081],[69.11169111691117,66.6183075043921],[69.13329133291333,66.60479888623306],[69.20529205292053,66.56933876356553],[69.38529385293853,66.51361571365939],[69.48969489694898,66.49841851823044],[69.62649626496267,66.49841851823044],[69.67329673296734,66.48490990007139],[69.73089730897311,66.48490990007139],[69.8208982089821,66.45451550921348],[69.85689856898571,66.4342525819749],[69.90369903699039,66.4156782320062],[70.2709027090271,66.36164375936994],[70.36090360903609,66.33462652305181],[70.60930609306095,66.33969225486146],[70.85410854108542,66.35826660483016],[71.14571145711457,66.36502091390972],[71.32571325713258,66.35826660483016],[71.43011430114302,66.35657802756029],[71.52371523715237,66.33631510032171],[71.67851678516786,66.32280648216263],[71.71451714517147,66.31098644127346],[71.74331743317435,66.2957892458445],[71.79011790117903,66.25188623682757],[71.83331833318334,66.23500046412875],[71.919719197192,66.25188623682757],[71.95931959319594,66.24513192774805],[71.97731977319773,66.23500046412875],[71.99171991719919,66.23162330958897],[72.00252002520025,66.23162330958897],[72.02052020520205,66.23500046412875],[72.02412024120241,66.23668904139862],[72.0349203492035,66.24513192774805],[72.04212042120423,66.24682050501792],[72.04572045720457,66.24513192774805],[72.04932049320493,66.24175477320827],[72.06372063720639,66.2400661959384],[72.07092070920709,66.2383776186685],[72.07452074520745,66.23500046412875],[72.08532085320854,66.2383776186685],[72.0961209612096,66.2485090822878],[72.26172261722618,66.2957892458445],[72.3049230492305,66.28903493676498],[72.34812348123481,66.3059207094638],[72.37692376923769,66.34138083213134],[72.39132391323915,66.3852838411483],[72.39852398523985,66.4139896547363],[72.39852398523985,66.41905538654595],[72.39132391323915,66.42749827289538],[72.37332373323733,66.44100689105443],[72.36972369723699,66.44944977740383],[72.36972369723699,66.45958124102313],[72.36612366123663,66.46464697283278],[72.36612366123663,66.4714012819123],[72.36972369723699,66.48153274553161],[72.38052380523806,66.48997563188104],[72.40212402124021,66.50010709550031],[72.4129241292413,66.50854998184974],[72.38412384123842,66.51699286819914],[72.35172351723517,66.51361571365939],[72.29052290522907,66.50179567277021],[72.31932319323195,66.52712433181844],[72.40932409324094,66.54907583632692],[72.44892448924489,66.56765018629562],[72.45972459724598,66.57778164991493],[72.46692466924671,66.60142173169328],[72.47412474124741,66.61155319531258],[72.49212492124923,66.6183075043921],[72.80532805328053,66.63857043163071],[72.85212852128521,66.64701331798011],[72.87012870128703,66.65545620432954],[72.9169291692917,66.65376762705964],[72.94212942129423,66.65714478159941],[72.95292952929529,66.66896482248859],[72.96012960129602,66.68247344064764],[72.97092970929711,66.69091632699707],[72.98532985329854,66.69935921334647],[72.99612996129963,66.7078020996959],[72.99252992529927,66.70949067696577],[72.9889298892989,66.71455640877542],[72.9889298892989,66.72131071785495],[72.9889298892989,66.72806502693447],[72.99612996129963,66.7365079132839],[73.00333003330033,66.73988506782368],[73.11853118531187,66.75170510871286],[73.17973179731797,66.77703376776108],[73.4929349293493,66.82262535404791],[73.52893528935292,66.83782254947687],[73.53973539735398,66.84795401309617],[73.55773557735577,66.87159409487452],[73.60093600936011,66.90029990846253],[73.62253622536227,66.92393999024088],[73.65853658536585,66.94251434020958],[73.7557375573756,66.95264580382889],[73.79533795337954,66.96446584471806],[73.85293852938531,66.99654881284584],[73.8709387093871,67.0016145446555],[73.8709387093871,67.00668027646512],[73.86733867338674,67.04045182186277],[73.87453874538747,67.05227186275195],[73.91053910539105,67.06578048091103],[73.92133921339214,67.0776005218002],[73.91773917739178,67.08773198541951],[73.89253892538926,67.11812637627739],[73.93573935739357,67.18904662161248],[73.95013950139503,67.21099812612093],[73.95373953739539,67.23126105335953],[73.93573935739357,67.25658971240776],[73.89973899738999,67.29542698961507],[74.09774097740979,67.43220174847556],[74.41454414544145,67.55884504371679],[74.73134731347315,67.68548833895798],[74.74934749347494,67.70575126619656],[74.77814778147783,67.75472000702317],[74.79254792547925,67.79693443877022],[74.80694806948071,67.88642903407401],[74.8249482494825,67.9269548885512],[74.81774817748177,67.93370919763072],[74.8249482494825,67.94046350671027],[74.79614796147962,68.00294086569593],[74.75654756547567,68.05697533833217],[74.74574745747458,68.08905830645995],[74.73854738547385,68.1211412745877],[74.72414724147242,68.15322424271548],[74.70254702547027,68.18024147903361],[74.58014580145803,68.26129318798797],[74.37134371343714,68.35078778329176],[74.3317433174332,68.3862479059593],[74.34254342543426,68.40313367865812],[74.40014400144003,68.44703668767508],[74.4577445774458,68.50613689212096],[74.46854468544686,68.53484270570897],[74.45414454144543,68.56523709656688],[74.42894428944291,68.59394291015488],[74.41454414544145,68.61927156920311],[74.43254432544327,68.63446876463206],[74.43974439744397,68.65135453733089],[74.44334443344434,68.67161746456947],[74.45414454144543,68.69356896907794],[74.47934479344795,68.72058620539607],[74.51534515345153,68.73578340082503],[74.6269462694627,68.7746206780323],[74.92574925749258,68.81852368704926],[75.19215192151921,68.8742467369554],[75.49455494554945,68.90126397327353],[75.62055620556205,68.89957539600363],[75.81855818558188,68.94347840502058],[76.02016020160204,68.95867560044954],[76.11376113761139,68.97724995041824],[76.16056160561607,68.98231568222789],[76.37656376563768,68.99413572311707],[76.58176581765821,68.97556137314837],[76.61056610566106,68.96542990952906],[76.62856628566288,68.94516698229046],[76.64296642966428,68.91983832324223],[76.6609666096661,68.89957539600363],[76.68976689766896,68.87255815968552],[76.69696696966969,68.85736096425657],[76.67896678966792,68.8455409233674],[76.63936639366392,68.82865515066857],[76.61776617766179,68.80501506889021],[76.63216632166325,68.78137498711186],[76.6609666096661,68.76280063714313],[76.86616866168663,68.70201185542737],[76.92016920169203,68.67161746456947],[77.00657006570066,68.65304311460076],[77.04257042570424,68.62940303282241],[77.06057060570606,68.60238579650428],[77.08577085770861,68.57874571472593],[77.11457114571147,68.56692567383675],[77.14697146971469,68.57874571472593],[77.12537125371256,68.58887717834523],[77.1109711097111,68.5905657556151],[77.10017100171001,68.59225433288498],[77.12897128971292,68.60576295104406],[77.1757717577176,68.59563148742475],[77.31617316173163,68.52977697389932],[77.32697326973272,68.52302266481979],[77.31977319773199,68.50951404666074],[77.30177301773017,68.49938258304144],[77.28017280172804,68.49093969669201],[77.26217262172622,68.48249681034261],[77.24777247772477,68.45716815129438],[77.26217262172622,68.44197095586543],[77.2837728377284,68.42846233770635],[77.2981729817298,68.40313367865812],[77.2981729817298,68.38962506049907],[77.29457294572944,68.38118217414964],[77.25857258572586,68.34909920602189],[77.2441724417244,68.33896774240259],[77.229772297723,68.33390201059294],[77.19377193771936,68.32883627878329],[77.17937179371796,68.32039339243386],[77.1649716497165,68.30857335154468],[77.16137161371614,68.29337615611576],[77.16857168571687,68.28155611522658],[77.17937179371796,68.27311322887715],[77.19377193771936,68.26635891979763],[77.23337233372337,68.2579160334482],[77.33057330573308,68.24609599255902],[77.34857348573485,68.2410302607494],[77.35577355773557,68.23258737439997],[77.34857348573485,68.21739017897102],[77.32697326973272,68.19881582900231],[77.31257312573126,68.18699578811314],[77.31617316173163,68.18024147903361],[77.31617316173163,68.17517574722396],[77.30537305373053,68.16335570633478],[77.29457294572944,68.1498470881757],[77.2837728377284,68.14309277909618],[77.22617226172264,68.11607554277808],[77.21537215372155,68.10425550188887],[77.21537215372155,68.0924354609997],[77.22617226172264,68.0839925746503],[77.23697236972373,68.07892684284064],[77.2441724417244,68.07048395649124],[77.2405724057241,68.04346672017311],[77.22257222572227,68.01813806112486],[77.20097200972009,67.99618655661638],[77.19377193771936,67.9843665157272],[77.21897218972191,67.96072643394885],[77.25137251372513,67.94046350671027],[77.2837728377284,67.93202062036084],[77.2981729817298,67.92526631128132],[77.30537305373053,67.91006911585237],[77.29457294572944,67.88980618861379],[77.26937269372695,67.86447752956553],[77.2405724057241,67.84421460232696],[77.21537215372155,67.83070598416788],[77.19017190171905,67.829017406898],[77.17217172171723,67.83577171597753],[77.15777157771578,67.84590317959683],[77.13977139771401,67.85096891140648],[77.12537125371256,67.8475917568667],[77.10377103771037,67.84252602505705],[77.08217082170825,67.83239456143778],[77.07137071370715,67.82395167508835],[77.07857078570788,67.7901801296907],[77.1217712177122,67.76822862518222],[77.43137431374316,67.67873402987846],[77.51777517775179,67.66522541171938],[77.67617676176764,67.61794524816267],[77.70137701377013,67.59768232092406],[77.69777697776976,67.58923943457467],[77.69057690576909,67.57573081641561],[77.68337683376836,67.56391077552641],[77.68337683376836,67.55377931190714],[77.6941769417694,67.54533642555771],[77.71577715777158,67.55040215736736],[77.76257762577626,67.56391077552641],[77.85977859778598,67.57741939368549],[77.87057870578707,67.57573081641561],[77.8777787777878,67.57066508460596],[77.89577895778956,67.56053362098666],[77.90297902979029,67.55884504371679],[77.95697956979569,67.56897650733606],[77.96417964179642,67.56728793006619],[77.98217982179824,67.55377931190714],[77.98937989379897,67.55040215736736],[78.02538025380255,67.54702500282758],[78.03618036180364,67.54533642555771],[78.04698046980468,67.54364784828783],[78.05778057780577,67.54702500282758],[78.07218072180723,67.55040215736736],[78.09738097380972,67.55546788917701],[78.13338133381336,67.55884504371679],[78.20538205382053,67.58079654822524],[78.23418234182344,67.58417370276501],[78.25578255782557,67.58079654822524],[78.28098280982812,67.57404223914571],[78.3169831698317,67.56897650733606],[78.35298352983529,67.55715646644688],[78.36738367383674,67.55546788917701],[78.49698496984973,67.55715646644688],[78.51858518585186,67.55884504371679],[78.579785797858,67.58248512549514],[78.60498604986049,67.58586228003489],[78.67698676986771,67.58417370276501],[78.7417874178742,67.59261658911441],[78.81018810188101,67.58417370276501],[78.90738907389073,67.56222219825653],[78.96138961389613,67.55715646644688],[78.98298982989832,67.55884504371679],[79.02979029790299,67.56897650733606],[79.05139051390518,67.57066508460596],[79.0189901899019,67.59768232092406],[79.00459004590044,67.60443663000362],[78.97938979389795,67.61119093908314],[78.84978849788502,67.61287951635302],[78.8209882098821,67.6162566708928],[78.80658806588065,67.6246995572422],[78.81378813788137,67.63314244359162],[78.85338853388532,67.6449624844808],[78.86778867788678,67.6534053708302],[78.75258752587524,67.6534053708302],[78.72378723787239,67.64833963902055],[78.70578705787057,67.64158532994102],[78.66978669786698,67.61794524816267],[78.6229862298623,67.60443663000362],[78.56538565385654,67.60443663000362],[78.50778507785077,67.61456809362289],[78.46458464584646,67.63314244359162],[78.489784897849,67.63989675267115],[78.57258572585727,67.63314244359162],[78.60138601386012,67.63989675267115],[78.61578615786158,67.65002821629045],[78.60858608586085,67.66184825717963],[78.579785797858,67.6736682980688],[78.55458554585545,67.6736682980688],[78.50778507785077,67.6635368344495],[78.48258482584828,67.66691398898928],[78.46818468184682,67.67704545260855],[78.45378453784537,67.6922426480375],[78.43938439384397,67.70237411165681],[78.42138421384215,67.7006855343869],[78.42498424984251,67.68886549349773],[78.42138421384215,67.67873402987846],[78.41058410584105,67.66522541171938],[78.40698406984069,67.65002821629045],[78.39978399783996,67.63820817540127],[78.3817838178382,67.6449624844808],[78.34938349383492,67.67029114352903],[78.3277832778328,67.68042260714833],[78.30258302583024,67.67535687533868],[78.2521825218252,67.66015967990973],[78.22698226982271,67.66184825717963],[78.20538205382053,67.66691398898928],[78.1837818378184,67.66860256625915],[78.16218162181622,67.6635368344495],[78.11178111781118,67.65678252536998],[78.0109801098011,67.69393122530738],[77.96057960579606,67.69561980257728],[77.93897938979393,67.6922426480375],[77.87417874178743,67.68548833895798],[77.85977859778598,67.69055407076763],[77.87057870578707,67.70406268892668],[77.89937899378992,67.71588272981586],[77.94977949779496,67.72770277070504],[77.92097920979211,67.72601419343516],[77.85257852578525,67.73107992524481],[77.82737827378276,67.73783423432434],[77.80937809378094,67.75134285248339],[77.79137791377917,67.76654004791234],[77.77697776977772,67.77836008880152],[77.7589775897759,67.77667151153165],[77.73737737377377,67.73952281159421],[77.61857618576187,67.73445707978456],[77.49257492574924,67.75134285248339],[77.46017460174602,67.78680297515095],[77.47097470974711,67.8104430569293],[77.47457474574747,67.83408313870765],[77.47097470974711,67.85772322048601],[77.47097470974711,67.87967472499449],[77.47457474574747,67.89487192042344],[77.47817478174784,67.90669196131262],[77.48897488974893,67.91682342493192],[77.50337503375033,67.9269548885512],[77.52497524975252,67.93033204309097],[77.550175501755,67.93202062036084],[77.57177571775719,67.93539777490062],[77.58617586175865,67.9472178157898],[77.56457564575646,67.9472178157898],[77.54297542975428,67.94552923851992],[77.52497524975252,67.94552923851992],[77.50337503375033,67.95397212486932],[77.49257492574924,67.96410358848863],[77.48537485374857,67.97423505210793],[77.47097470974711,67.9944979793465],[77.4817748177482,68.00294086569593],[77.48537485374857,68.00631802023568],[77.50337503375033,68.02826952474416],[77.5069750697507,68.04515529744299],[77.50337503375033,68.06204107014182],[77.50337503375033,68.08568115192017],[77.51417514175142,68.10594407915877],[77.53577535775361,68.12789558366725],[77.58617586175865,68.16335570633478],[77.66537665376654,68.20557013808184],[77.70857708577086,68.22245591078067],[77.75177751777517,68.22921021986019],[77.90297902979029,68.22921021986019],[78.0001800018,68.24609599255902],[78.10458104581045,68.24778456982892],[78.15498154981549,68.2579160334482],[78.17298172981731,68.27480180614702],[78.14778147781476,68.29168757884585],[78.11178111781118,68.31195050608446],[78.09378093780941,68.33390201059294],[78.09378093780941,68.35247636056164],[78.09018090180905,68.35923066964116],[78.03618036180364,68.37611644233999],[77.99297992979933,68.38118217414964],[77.97137971379715,68.38962506049907],[77.95697956979569,68.39806794684847],[77.95337953379533,68.40819941046777],[77.94257942579429,68.42846233770635],[77.91377913779138,68.45716815129438],[77.91017910179102,68.46898819218356],[77.92457924579247,68.47067676945343],[77.93537935379356,68.47574250126308],[77.9461794617946,68.48418538761248],[77.95697956979569,68.49600542850166],[77.92817928179284,68.51964551028004],[77.89577895778956,68.52808839662944],[77.85977859778598,68.52808839662944],[77.82377823778239,68.51795693301014],[77.78777787777881,68.51457977847039],[77.77337773377735,68.53484270570897],[77.77337773377735,68.55848278748732],[77.76977769777699,68.5703028283765],[77.7481774817748,68.57874571472593],[77.72657726577268,68.59732006469463],[77.71577715777158,68.62096014647298],[77.71937719377195,68.64291165098146],[77.73737737377377,68.66148600095016],[77.74457744577444,68.67668319637912],[77.7481774817748,68.69356896907794],[77.74457744577444,68.71552047358642],[77.73737737377377,68.7374719780949],[77.72657726577268,68.76111205987326],[77.71577715777158,68.78306356438173],[77.69777697776976,68.79994933708056],[77.69057690576909,68.81683510977939],[77.69057690576909,68.86580385060597],[77.68337683376836,68.88606677784458],[77.64737647376472,68.9113954368928],[77.60057600576005,68.9215269005121],[77.40977409774098,68.92659263232176],[77.35937359373594,68.93672409594106],[77.28737287372877,68.97893852768811],[77.23337233372337,68.99075856857729],[76.92736927369276,69.00933291854602],[76.9129691296913,69.01439865035567],[76.89496894968948,69.02453011397495],[76.86256862568627,69.04648161848343],[76.83016830168305,69.08531889569073],[76.81216812168122,69.09038462750038],[76.75456754567546,69.12415617289804],[76.73296732967333,69.13091048197757],[76.6609666096661,69.13935336832697],[76.64656646566465,69.14441910013662],[76.63576635766361,69.14948483194627],[76.62136621366216,69.15455056375592],[76.6069660696607,69.15455056375592],[76.59976599765997,69.15117340921617],[76.58176581765821,69.13766479105709],[76.57096570965712,69.13259905924744],[76.54936549365493,69.13091048197757],[76.42696426964272,69.14441910013662],[76.2361623616236,69.19001068642345],[76.16056160561607,69.19845357277288],[76.0921609216092,69.22884796363076],[76.04176041760417,69.23897942725006],[75.80055800558006,69.2339136954404],[75.50895508955091,69.26093093175854],[75.4549545495455,69.25079946813923],[75.31095310953111,69.19845357277288],[75.17415174151742,69.17312491372462],[75.13095130951311,69.1579277182957],[75.09135091350913,69.13259905924744],[75.13815138151384,69.12415617289804],[75.15255152551526,69.11909044108839],[75.10575105751059,69.10389324565944],[74.94014940149401,69.10558182292934],[74.77454774547746,69.08194174115096],[74.71334713347133,69.08531889569073],[74.50814508145083,69.13259905924744],[74.31374313743137,69.14610767740652],[74.2489424894249,69.14273052286674],[74.02934029340295,69.09207320477026],[73.96093960939609,69.08363031842086],[73.89613896138962,69.09376178204013],[73.83493834938349,69.11740186381851],[73.77733777337775,69.15455056375592],[73.75933759337593,69.16974775918487],[73.75213752137523,69.18325637734392],[73.7557375573756,69.19845357277288],[73.77733777337775,69.22715938636088],[73.78813788137882,69.24573373632958],[73.79173791737918,69.25248804540911],[73.82413824138243,69.28288243626702],[73.84933849338495,69.31496540439477],[73.89973899738999,69.41459146331786],[73.89973899738999,69.42134577239739],[73.86013860138601,69.48213455411317],[73.7557375573756,69.56487484033741],[73.63333633336333,69.63241793113272],[73.5649356493565,69.6830752492292],[73.52893528935292,69.71684679462686],[73.51453514535146,69.74724118548474],[73.53613536135362,69.77594699907274],[73.62613626136263,69.829981471709],[73.65853658536585,69.86037586256688],[73.65133651336515,69.87557305799584],[73.65493654936552,69.89245883069466],[73.66573665736658,69.91103318066337],[73.70533705337056,69.95493618968032],[73.70893708937089,69.96844480783938],[73.70893708937089,70.00728208504668],[73.71253712537126,70.01910212593586],[73.75213752137523,70.06131655768294],[73.76653766537666,70.07989090765165],[73.76653766537666,70.0950881030806],[73.7557375573756,70.11028529850952],[73.70173701737019,70.12717107120835],[73.6909369093691,70.13730253482765],[73.70893708937089,70.16094261660601],[73.73413734137341,70.18120554384461],[74.0077400774008,70.30447168454603],[74.02934029340295,70.31966887997498],[74.05094050940511,70.33824322994369],[74.05814058140584,70.35175184810277],[74.05814058140584,70.36357188899194],[74.06534065340654,70.37370335261124],[74.07614076140763,70.38383481623052],[74.1949419494195,70.434492134327],[74.2669426694267,70.48008372061383],[74.31734317343174,70.52060957509102],[74.32814328143283,70.53749534778984],[74.33534335343353,70.55775827502845],[74.3389433894339,70.5813983568068],[74.3389433894339,70.59490697496585],[74.32454324543247,70.62698994309363],[74.3209432094321,70.65907291122141],[74.31734317343174,70.66751579757081],[74.29574295742958,70.69622161115882],[74.25974259742597,70.71648453839742],[73.95373953739539,70.8363735245591],[73.92853928539287,70.8549478745278],[73.91413914139142,70.88703084265558],[73.91053910539105,70.90898234716406],[73.91413914139142,70.93093385167253],[73.91053910539105,70.95119677891111],[73.89613896138962,70.97314828341959],[73.86373863738638,70.9934112106582],[73.78453784537845,71.0204284469763],[73.74853748537487,71.03731421967512],[73.70533705337056,71.07108576507278],[73.68373683736837,71.09303726958126],[73.67293672936731,71.10992304228009],[73.66933669336694,71.13187454678857],[73.65493654936552,71.15382605129705],[73.58293582935829,71.23318918298153],[73.55773557735577,71.25514068749001],[73.53253532535325,71.26358357383941],[73.5109351093511,71.27033788291894],[73.46773467734678,71.29228938742742],[73.42813428134284,71.30242085104672],[73.36333363333634,71.33112666463472],[73.33813338133382,71.33956955098412],[73.23733237332374,71.35645532368295],[73.17253172531727,71.38009540546133],[73.07893078930789,71.39191544635051],[73.03213032130321,71.40542406450956],[73.02133021330215,71.42906414628791],[73.03573035730358,71.44088418717709],[73.36333363333634,71.58272467784724],[73.38133381333813,71.59285614146654],[73.41013410134101,71.6164962232449],[73.42813428134284,71.6266276868642],[73.48213482134821,71.65195634591242],[73.50013500135003,71.6654649640715],[73.51813518135182,71.68741646857998],[73.52533525335255,71.70599081854868],[73.51813518135182,71.72456516851739],[73.5037350373504,71.74313951848609],[73.47493474934751,71.7634024457247],[73.47133471334715,71.773533909344],[73.47853478534788,71.78873110477292],[73.48933489334894,71.80055114566213],[73.50733507335073,71.8123711865513],[73.52533525335255,71.82250265017058],[73.76653766537666,71.87315996826706],[73.93933939339394,71.91368582274424],[74.2489424894249,71.95927740903107],[74.3317433174332,71.95590025449133],[74.40734407344075,71.97447460446003],[74.66654666546665,72.03526338617581],[74.92934929349295,72.09774074516147],[74.9617496174962,72.1146265178603],[74.99414994149942,72.13826659963865],[75.0769507695077,72.21087542224362],[75.09135091350913,72.2412698131015],[75.10935109351095,72.34596160383421],[75.10575105751059,72.36791310834269],[75.10935109351095,72.40337323101025],[75.08055080550807,72.47260489907544],[75.06615066150661,72.52495079444179],[75.05895058950591,72.54521372168037],[75.05535055350555,72.56547664891897],[75.06255062550628,72.5823624216178],[75.05895058950591,72.59587103977685],[75.04815048150482,72.61613396701546],[75.02655026550266,72.65159408968299],[74.99774997749978,72.67354559419147],[74.74934749347494,72.80863177578209],[74.74214742147421,72.81369750759174],[74.7529475294753,72.82045181667127],[74.77454774547746,72.82889470302067],[74.98334983349835,72.8761748665774],[75.03735037350376,72.88124059838705],[75.09135091350913,72.8744862893075],[75.11295112951132,72.86773198022797],[75.16695166951669,72.84071474390984],[75.19215192151921,72.83396043483032],[75.31815318153181,72.81876323940139],[75.45855458554587,72.77317165311456],[75.50175501755018,72.76810592130491],[75.52335523355234,72.75966303495548],[75.53055530555307,72.74108868498678],[75.51975519755197,72.737711530447],[75.4549545495455,72.7106942941289],[75.43695436954371,72.71407144866865],[75.42255422554226,72.72082575774817],[75.40815408154083,72.72420291228795],[75.37575375753758,72.70393998504935],[75.3469534695347,72.69211994416017],[75.339753397534,72.68367705781077],[75.35775357753579,72.68536563508064],[75.4009540095401,72.69549709869995],[75.42255422554226,72.69718567596982],[75.43335433354335,72.69211994416017],[75.44415444154441,72.68367705781077],[75.45855458554587,72.66510270784207],[75.48735487354875,72.64483978060346],[75.51975519755197,72.63133116244441],[75.6529565295653,72.59924819431663],[75.68895688956891,72.58573957615758],[75.7069570695707,72.56547664891897],[75.70335703357034,72.54690229895027],[75.66735667356676,72.54521372168037],[75.62775627756278,72.54859087622015],[75.59535595355953,72.54690229895027],[75.56295562955631,72.52495079444179],[75.55575555755559,72.49793355812366],[75.57375573755738,72.46753916726578],[75.62415624156242,72.41181611735965],[75.62415624156242,72.40506180828012],[75.62415624156242,72.3881760355813],[75.62775627756278,72.38142172650177],[75.66735667356676,72.35440449018364],[75.68175681756819,72.33920729475469],[75.66735667356676,72.33245298567516],[75.68895688956891,72.31894436751611],[75.75375753757538,72.30712432662693],[75.75375753757538,72.2885499766582],[75.75015750157502,72.28179566757868],[75.74295742957432,72.26490989487985],[75.73575735757359,72.25815558580032],[75.72135721357213,72.2497126994509],[75.62415624156242,72.22607261767254],[75.59535595355953,72.21425257678337],[75.58815588155883,72.21087542224362],[75.51615516155164,72.15346379506761],[75.50895508955091,72.13826659963865],[75.51255512555127,72.12813513601935],[75.52335523355234,72.1146265178603],[75.52335523355234,72.10787220878078],[75.52335523355234,72.09774074516147],[75.51975519755197,72.08254354973252],[75.51615516155164,72.075789240653],[75.50175501755018,72.06228062249394],[75.43335433354335,72.04539484979512],[75.41535415354156,72.03188623163604],[75.41895418954189,72.02682049982639],[75.43695436954371,72.00149184077816],[75.44415444154441,71.99136037715886],[75.44055440554408,71.98460606807933],[75.39015390153904,71.96434314084073],[75.35415354153542,71.9575888317612],[75.28575285752859,71.95927740903107],[75.28575285752859,71.96096598630098],[75.26775267752677,71.95252309995155],[75.25335253352534,71.94239163633225],[75.25335253352534,71.93226017271297],[75.27135271352714,71.91368582274424],[75.27855278552786,71.90524293639484],[75.28215282152823,71.89342289550567],[75.26055260552607,71.88329143188636],[75.23895238952392,71.86302850464776],[75.22455224552246,71.84276557740918],[75.23535235352355,71.82587980471035],[75.2209522095221,71.8106826092814],[75.21735217352173,71.7921082593127],[75.22815228152282,71.77691106388374],[75.24975249752498,71.7718453320741],[75.25695256952571,71.76846817753434],[75.26055260552607,71.76002529118492],[75.26055260552607,71.74989382756564],[75.26415264152644,71.74313951848609],[75.2749527495275,71.73469663213669],[75.28575285752859,71.72963090032704],[75.30015300153002,71.72456516851739],[75.3469534695347,71.71781085943786],[75.49095490954912,71.6654649640715],[75.50535505355055,71.65195634591242],[75.49095490954912,71.64013630502325],[75.42255422554226,71.62831626413407],[75.39375393753937,71.61818480051477],[75.4009540095401,71.60298760508584],[75.49095490954912,71.57428179149784],[75.51615516155164,71.55908459606889],[75.5269552695527,71.54895313244958],[75.53415534155343,71.54219882337006],[75.53055530555307,71.5371330915604],[75.51255512555127,71.528690205211],[75.46935469354693,71.52024731886158],[75.4549545495455,71.51349300978205],[75.43335433354335,71.50167296889288],[75.42615426154262,71.4898529280037],[75.42975429754298,71.47803288711452],[75.44055440554408,71.46283569168557],[75.40455404554046,71.45270422806627],[75.26775267752677,71.46283569168557],[75.25335253352534,71.45945853714582],[75.24255242552425,71.45439280533617],[75.23535235352355,71.44426134171687],[75.24255242552425,71.42399841447826],[75.23895238952392,71.41555552812886],[75.23175231752319,71.40880121904934],[75.22815228152282,71.40373548723969],[75.26415264152644,71.36489821003238],[75.34335343353433,71.3345038191745],[75.73215732157323,71.26527215110929],[76.01656016560167,71.23656633752128],[76.11016110161103,71.20448336939353],[76.12816128161285,71.20279479212363],[76.11376113761139,71.21123767847305],[76.12096120961212,71.21968056482245],[76.13176131761321,71.22643487390201],[76.14976149761497,71.22981202844176],[76.47016470164704,71.21292625574293],[76.71856718567187,71.20448336939353],[76.88776887768881,71.19097475123445],[76.9129691296913,71.18253186488505],[76.89136891368912,71.17240040126575],[76.88056880568809,71.16058036037657],[76.88416884168845,71.14538316494762],[76.89496894968948,71.12680881497892],[76.90216902169021,71.12174308316926],[76.90936909369094,71.11836592862952],[76.91656916569167,71.11330019681986],[76.92016920169203,71.10316873320056],[76.92016920169203,71.09472584685113],[76.9129691296913,71.08966011504148],[76.9129691296913,71.08290580596196],[76.9129691296913,71.07277434234268],[76.92736927369276,71.0778400741523],[76.94536945369452,71.08628296050173],[76.95616956169562,71.09979157866078],[76.96336963369635,71.11330019681986],[76.95976959769598,71.12512023770904],[76.92736927369276,71.16058036037657],[77.00657006570066,71.18422044215492],[77.38097380973812,71.1588917831067],[77.55737557375573,71.17408897853562],[77.78417784177844,71.14200601040787],[77.83817838178385,71.12512023770904],[77.8669786697867,71.10992304228009],[77.88497884978852,71.08966011504148],[77.89577895778956,71.0592657241836],[77.89577895778956,71.03224848786547],[77.89937899378992,71.01029698335702],[77.91377913779138,70.99172263338829],[77.94977949779496,70.97652543795937],[78.0001800018,70.96301681980029],[78.27738277382775,70.94275389256171],[78.36018360183601,70.90729376989415],[78.41058410584105,70.89547372900498],[78.45378453784537,70.89547372900498],[78.49698496984973,70.9039166153544],[78.54738547385477,70.91911381078333],[78.59778597785981,70.92755669713276],[78.77058770587706,70.9140480789737],[78.88218882188823,70.9224909653231],[78.90018900189006,70.92755669713276],[78.91458914589145,70.93937673802193],[78.92898928989291,70.94781962437136],[78.9505895058951,70.94275389256171],[78.94698946989473,70.93093385167253],[78.9649896498965,70.92924527440263],[79.04059040590408,70.93768816075206],[79.05499054990548,70.94275389256171],[79.05859058590585,70.95288535618099],[79.05499054990548,70.96132824253041],[79.04419044190445,70.96808255160994],[79.02979029790299,70.96977112887981],[79.0189901899019,70.96808255160994],[79.0729907299073,70.97990259249912],[79.10179101791022,70.99172263338829],[79.11619116191162,71.00354267427747],[79.10179101791022,71.0204284469763],[79.0729907299073,71.02380560151607],[79.04419044190445,71.01873986970642],[78.96858968589686,70.98665690157864],[78.84618846188465,71.01367413789677],[78.78498784987852,70.99003405611842],[78.81378813788137,70.99172263338829],[78.84618846188465,70.98834547884854],[78.90018900189006,70.97652543795937],[78.7561875618756,70.93431100621228],[78.70938709387093,70.94106531529181],[78.66258662586625,70.95457393345089],[78.61218612186121,70.96301681980029],[78.56538565385654,70.96301681980029],[78.51858518585186,70.94950820164124],[78.48258482584828,70.92417954259298],[78.4609846098461,70.9140480789737],[78.44298442984433,70.9140480789737],[78.43218432184324,70.9224909653231],[78.43218432184324,70.93262242894241],[78.43218432184324,70.94275389256171],[78.4357843578436,70.94950820164124],[78.47898478984791,70.99172263338829],[78.489784897849,71.0119855606269],[78.46458464584646,71.02380560151607],[78.48618486184864,71.0305599105956],[78.54018540185405,71.03562564240525],[78.55818558185581,71.04575710602455],[78.54738547385477,71.05757714691373],[78.53298532985332,71.06770861053303],[78.49698496984973,71.0778400741523],[78.51138511385113,71.08966011504148],[78.5149851498515,71.09134869231139],[78.52578525785259,71.09303726958126],[78.49698496984973,71.11498877408974],[78.44298442984433,71.11498877408974],[78.34578345783461,71.09979157866078],[78.37458374583747,71.07615149688243],[78.47178471784719,71.06095430145348],[78.49698496984973,71.04575710602455],[78.43218432184324,71.04406852875465],[78.36378363783638,71.05757714691373],[78.29898298982988,71.07952865142221],[78.2377823778238,71.10992304228009],[78.23418234182344,71.12343166043914],[78.2521825218252,71.13862885586809],[78.28818288182885,71.16395751491635],[78.29898298982988,71.17915471034527],[78.30618306183061,71.19266332850435],[78.30978309783097,71.20786052393328],[78.31338313383134,71.22643487390201],[78.27738277382775,71.25851784202976],[78.20178201782016,71.27033788291894],[78.02178021780219,71.27878076926837],[77.95697956979569,71.25345211022011],[77.92817928179284,71.25682926475989],[77.92097920979211,71.28215792380811],[77.91737917379174,71.28891223288767],[77.91377913779138,71.2956665419672],[77.90657906579065,71.30748658285637],[77.89937899378992,71.31255231466602],[77.92817928179284,71.32943808736485],[77.98937989379897,71.34632386006368],[78.0109801098011,71.36658678730225],[77.98937989379897,71.37502967365168],[77.96777967779678,71.37334109638178],[77.92817928179284,71.35983247822273],[77.88137881378816,71.35476674641308],[77.8669786697867,71.34970101460343],[77.87417874178743,71.33956955098412],[77.77697776977772,71.3243723555552],[77.7337773377734,71.31086373739612],[77.75177751777517,71.29228938742742],[77.71217712177122,71.28215792380811],[77.67257672576727,71.28553507834789],[77.59337593375932,71.31255231466602],[77.51417514175142,71.32943808736485],[77.43497434974353,71.3328152419046],[77.45297452974529,71.32099520101542],[77.52497524975252,71.30579800558647],[77.49257492574924,71.30073227377684],[77.23337233372337,71.3615210554926],[77.17937179371796,71.38516113727096],[77.13617136171365,71.41217837358909],[77.10377103771037,71.42399841447826],[77.07497074970752,71.42906414628791],[76.94896948969489,71.43075272355779],[76.71136711367114,71.46283569168557],[76.68976689766896,71.4695900007651],[76.6717667176672,71.47803288711452],[76.62496624966252,71.51011585524228],[76.58176581765821,71.528690205211],[76.5277652776528,71.54219882337006],[76.32616326163264,71.55908459606889],[76.27216272162724,71.57259321422794],[76.25056250562506,71.59623329600632],[76.25416254162542,71.6080533368955],[76.26856268562688,71.63000484140397],[76.27216272162724,71.64182488229315],[76.26496264962651,71.65364492318233],[76.18216182161825,71.71443370489808],[76.16056160561607,71.73469663213669],[76.14616146161461,71.77522248661387],[76.08136081360817,71.86302850464776],[76.05616056160562,71.88329143188636],[76.03096030960313,71.89848862731532],[75.99855998559985,71.90862009093462],[76.02736027360277,71.92381728636354],[76.09576095760957,71.93057159544307],[76.3549635496355,71.99980326350828],[76.61776617766179,72.02513192255651],[76.87696876968772,72.05046058160474],[76.94536945369452,72.04370627252521],[76.96336963369635,72.02513192255651],[77.02817028170284,72.02175476801673],[77.38457384573849,71.90693151366472],[77.44937449374493,71.87147139099719],[77.58617586175865,71.83094553652],[77.72657726577268,71.82756838198023],[78.10818108181081,71.87991427734659],[78.15498154981549,71.89511147277554],[78.1981819818198,71.92212870909367],[78.21618216182162,71.94070305906237],[78.22698226982271,71.96265456357085],[78.22698226982271,71.98291749080946],[78.20538205382053,72.00149184077816],[78.03258032580328,72.0943635906217],[77.9857798577986,72.10956078605065],[77.93897938979393,72.11800367240005],[77.71217712177122,72.1146265178603],[77.56457564575646,72.07072350884334],[77.51057510575106,72.06228062249394],[77.46377463774638,72.06734635430357],[77.38817388173885,72.09267501335182],[77.37737377373776,72.10956078605065],[77.41337413374134,72.13826659963865],[77.48897488974893,72.17541529957606],[77.48897488974893,72.18892391773514],[77.47457474574747,72.19736680408454],[77.4421744217442,72.20918684497371],[77.47457474574747,72.2226954631328],[77.5069750697507,72.2226954631328],[77.61137611376114,72.19398964954479],[77.65097650976509,72.18892391773514],[77.66897668976691,72.19230107227489],[77.69777697776976,72.20580969043397],[77.74097740977413,72.21594115405327],[77.8777787777878,72.30037001754738],[77.94257942579429,72.32569867659564],[78.08658086580868,72.35947022199329],[78.09738097380972,72.36284737653304],[78.10818108181081,72.3696016856126],[78.12618126181263,72.38479888104152],[78.13698136981372,72.38479888104152],[78.19098190981913,72.3696016856126],[78.23058230582308,72.36453595380294],[78.34578345783461,72.3881760355813],[78.42498424984251,72.39324176739095],[78.46458464584646,72.38986461285117],[78.5041850418504,72.38142172650177],[78.5041850418504,72.3881760355813],[78.50058500585004,72.40168465374035],[78.49698496984973,72.40843896281987],[78.7561875618756,72.39324176739095],[79.0189901899019,72.37635599469212],[79.20979209792097,72.38986461285117],[79.389793897939,72.38479888104152],[79.51219512195121,72.36284737653304],[79.7857978579786,72.26490989487985],[80.00900009000088,72.20749826770384],[80.47340473404734,72.1517752177977],[80.83340833408334,72.08254354973252],[80.85140851408516,72.06903493157347],[80.8478084780848,72.05890346795417],[80.84420844208444,72.04708342706499],[80.83700837008371,72.03357480890591],[80.82260822608225,72.02513192255651],[80.80100801008012,72.02513192255651],[80.73260732607326,72.04539484979512],[80.75060750607508,72.05721489068429],[80.7938079380794,72.06734635430357],[80.81540815408152,72.07916639519277],[80.7290072900729,72.08254354973252],[80.68580685806859,72.07916639519277],[80.649806498065,72.06565777703369],[80.63180631806318,72.04539484979512],[80.64620646206464,72.03357480890591],[80.94860948609488,71.9474573681419],[81.25101251012512,71.85965135010801],[81.25821258212585,71.85458561829836],[81.26541265412658,71.84783130921883],[81.26901269012689,71.8393884228694],[81.26541265412658,71.83432269105975],[81.26181261812621,71.83094553652],[81.25821258212585,71.82587980471035],[81.27981279812798,71.79548541385248],[81.30861308613089,71.77691106388374],[81.34101341013411,71.7634024457247],[81.54621546215463,71.74145094121621],[81.7370173701737,71.69923650946916],[82.19422194221943,71.70767939581856],[82.3058230582306,71.72963090032704],[82.41742417424177,71.73638520940656],[82.50022500225003,71.75495955937527],[82.86742867428677,71.78704252750305],[82.92502925029254,71.7718453320741],[82.93222932229321,71.76677960026447],[82.93942939429394,71.76002529118492],[82.9538295382954,71.74651667302587],[82.96462964629649,71.74145094121621],[82.97182971829722,71.73807378667647],[82.97902979029789,71.73807378667647],[83.01863018630189,71.72963090032704],[83.15183151831519,71.73976236394634],[83.20223202232023,71.73638520940656],[83.25263252632527,71.72625374578726],[83.29583295832958,71.70261366400891],[83.31023310233104,71.69248220038963],[83.32103321033213,71.6840393140402],[83.31743317433177,71.6739078504209],[83.30663306633068,71.65871065499198],[83.28863288632886,71.64857919137268],[83.24183241832418,71.6266276868642],[83.16983169831701,71.58610183238702],[83.13383133831337,71.57259321422794],[83.05103051030511,71.56077317333876],[83.02583025830262,71.55064170971949],[83.01143011430116,71.528690205211],[83.00063000630007,71.49660723708323],[82.98982989829898,71.47465573257475],[82.98622986229861,71.46283569168557],[82.98982989829898,71.45270422806627],[83.00423004230043,71.442572764447],[83.02223022230226,71.43750703263734],[83.03663036630365,71.42906414628791],[83.04743047430475,71.41555552812886],[82.98262982629825,71.41048979631921],[82.93942939429394,71.39866975543003],[82.8206282062821,71.39191544635051],[82.5578255782558,71.33956955098412],[82.29502295022951,71.28722365561777],[82.27342273422732,71.27878076926837],[82.25902259022592,71.26358357383941],[82.25902259022592,71.25345211022011],[82.26622266222665,71.24332064660084],[82.27342273422732,71.23318918298153],[82.28062280622805,71.22305771936223],[82.28062280622805,71.21123767847305],[82.28062280622805,71.1875975966947],[82.28422284222842,71.17915471034527],[82.29502295022951,71.16902324672597],[82.32022320223206,71.15382605129705],[82.33102331023309,71.14369458767774],[82.34902349023491,71.11836592862952],[82.35262352623528,71.09641442412104],[82.34182341823418,71.07615149688243],[82.31302313023133,71.0592657241836],[82.23382233822338,71.03562564240525],[82.20142201422016,71.01705129243655],[82.20862208622088,70.98665690157864],[82.3058230582306,70.90729376989415],[82.30222302223024,70.89547372900498],[82.31302313023133,70.8853422653857],[82.33102331023309,70.8735222244965],[82.33102331023309,70.86339076087722],[82.32382323823236,70.8465049881784],[82.33462334623346,70.83806210182897],[82.34902349023491,70.83130779274944],[82.34902349023491,70.81779917459039],[82.40662406624068,70.79078193827226],[82.41742417424177,70.77727332011321],[82.41022410224105,70.765453279224],[82.3706237062371,70.74181319744565],[82.23382233822338,70.69622161115882],[82.20142201422016,70.67089295211059],[82.19062190621906,70.65738433395151],[82.19422194221943,70.65063002487199],[82.20142201422016,70.64556429306234],[82.19782197821979,70.63374425217316],[82.1870218702187,70.62192421128398],[82.16902169021694,70.61348132493458],[82.10062100621008,70.58984124315623],[82.08622086220862,70.57970977953693],[82.08262082620826,70.56620116137785],[82.09342093420935,70.55438112048867],[82.14382143821439,70.53074103871032],[82.15462154621548,70.51892099782114],[82.15462154621548,70.50878953420184],[82.15102151021512,70.50034664785244],[82.15102151021512,70.48683802969336],[82.15462154621548,70.47670656607409],[82.16902169021694,70.45644363883548],[82.17622176221761,70.4243606707077],[82.19422194221943,70.38383481623052],[82.20142201422016,70.34837469356299],[82.21222212222125,70.33824322994369],[82.22302223022228,70.32980034359429],[82.23382233822338,70.31798030270511],[82.23382233822338,70.3078488390858],[82.23382233822338,70.2875859118472],[82.2410224102241,70.27745444822793],[82.2518225182252,70.26732298460863],[82.29502295022951,70.24368290283027],[82.33462334623346,70.20991135743262],[82.34902349023491,70.20146847108319],[82.34542345423455,70.22510855286154],[82.32742327423273,70.2504372119098],[82.28782287822878,70.29096306638698],[82.29502295022951,70.2977173754665],[82.2518225182252,70.37539192988112],[82.2410224102241,70.4260492479776],[82.23022230222301,70.4547550615656],[82.22662226622265,70.48008372061383],[82.2410224102241,70.49696949331266],[82.22302223022228,70.51723242055127],[82.17622176221761,70.55100396594892],[82.15822158221584,70.5712668931875],[82.17982179821797,70.58646408861645],[82.20862208622088,70.5915298204261],[82.2410224102241,70.59321839769598],[82.29862298622987,70.60334986131528],[82.44622446224463,70.60672701585506],[82.46422464224645,70.61348132493458],[82.47142471424718,70.63036709763341],[82.46422464224645,70.64556429306234],[82.44622446224463,70.65569575668164],[82.43542435424354,70.66582722030094],[82.4390243902439,70.6810244157299],[82.43542435424354,70.68440157026964],[82.43182431824317,70.68777872480942],[82.43182431824317,70.69115587934917],[82.43182431824317,70.69453303388894],[82.449824498245,70.69453303388894],[82.46782467824681,70.6995987656986],[82.48222482224821,70.708041652048],[82.49662496624967,70.71986169293717],[82.50022500225003,70.72999315655647],[82.50022500225003,70.74350177471555],[82.5038250382504,70.75363323833483],[82.51462514625149,70.7570103928746],[82.53982539825398,70.75869897014448],[82.55422554225544,70.76207612468426],[82.55422554225544,70.76714185649391],[82.53262532625325,70.77727332011321],[82.50022500225003,70.78402762919274],[82.48942489424894,70.79078193827226],[82.47862478624785,70.80429055643131],[82.5038250382504,70.82117632913014],[82.5686256862569,70.85325929725792],[82.5830258302583,70.87014506995675],[82.57942579425793,70.88027653357605],[82.57582575825757,70.89040799719533],[82.57222572225726,70.90222803808453],[82.57942579425793,70.91067092443393],[82.59382593825939,70.91911381078333],[82.63342633426333,70.92924527440263],[82.68742687426874,70.96132824253041],[82.73422734227341,70.96470539707019],[82.84222842228422,70.95288535618099],[82.85302853028531,70.94275389256171],[82.85662856628568,70.93093385167253],[82.86742867428677,70.91742523351346],[82.8782287822878,70.91742523351346],[82.8890288902889,70.92586811986288],[82.89622896228963,70.93937673802193],[82.89262892628926,70.95288535618099],[82.8782287822878,70.98665690157864],[82.8746287462875,70.99678836519794],[82.8890288902889,71.00691982881725],[82.89982899828999,71.0018540970076],[82.91422914229145,70.98665690157864],[82.91782917829181,70.97314828341959],[82.93222932229321,70.95457393345089],[82.96822968229685,70.93431100621228],[83.03303033030329,70.90560519262428],[83.10503105031052,70.89547372900498],[83.13383133831337,70.88196511084593],[83.14463144631446,70.8465049881784],[83.1410314103141,70.82793063820966],[83.13383133831337,70.80766771097109],[83.130231302313,70.78740478373248],[83.13743137431373,70.76376470195413],[83.11223112231124,70.75025608379508],[83.0870308703087,70.72323884747695],[83.06543065430657,70.69284445661907],[83.05463054630548,70.66751579757081],[83.05463054630548,70.65569575668164],[83.06543065430657,70.62530136582376],[83.06903069030693,70.61348132493458],[83.05823058230584,70.59659555223575],[83.03663036630365,70.58477551134658],[82.99342993429934,70.5712668931875],[83.00423004230043,70.56788973864775],[83.01503015030153,70.56113542956822],[83.01863018630189,70.5526925432188],[83.02223022230226,70.53074103871032],[83.02943029430293,70.52567530690067],[83.03663036630365,70.52060957509102],[83.04383043830438,70.51385526601149],[83.05103051030511,70.50034664785244],[83.04383043830438,70.49190376150301],[83.03303033030329,70.48177229788374],[83.01143011430116,70.4260492479776],[82.96822968229685,70.405786320739],[82.8746287462875,70.37370335261124],[82.66582665826661,70.2605686755291],[82.65142651426515,70.24874863463992],[82.65142651426515,70.2301742846712],[82.66222662226625,70.21328851197237],[82.67302673026734,70.19977989381331],[82.67302673026734,70.18795985292414],[82.64422644226443,70.18120554384461],[82.67302673026734,70.16600834841566],[82.77742777427773,70.1423682666373],[82.88182881828817,70.08833379400104],[82.91782917829181,70.07989090765165],[83.00063000630007,70.08326806219142],[83.0726307263073,70.06975944403234],[83.11223112231124,70.06975944403234],[83.14823148231483,70.07651375311187],[83.17703177031774,70.08326806219142],[83.18423184231841,70.09171094854082],[83.15903159031592,70.09846525762035],[83.18063180631805,70.11028529850952],[83.18783187831878,70.1221053393987],[83.18423184231841,70.13899111209753],[83.130231302313,70.20822278016271],[83.11223112231124,70.21666566651214],[83.08343083430833,70.22004282105192],[83.06543065430657,70.23355143921097],[83.03303033030329,70.27070013914837],[83.01503015030153,70.2875859118472],[82.97182971829722,70.31122599362558],[82.95022950229503,70.32473461178463],[83.01143011430116,70.33486607540394],[83.2058320583206,70.31291457089546],[83.3390333903339,70.31291457089546],[83.48303483034829,70.33486607540394],[83.51903519035193,70.32980034359429],[83.53343533435333,70.33148892086416],[83.53343533435333,70.33486607540394],[83.53343533435333,70.35006327083286],[83.53343533435333,70.35344042537264],[83.53703537035369,70.35344042537264],[83.54783547835478,70.35344042537264],[83.55143551435515,70.35681757991242],[83.5658356583566,70.36694904353169],[83.61263612636128,70.38890054804017],[83.6450364503645,70.39903201165947],[83.7746377463775,70.47670656607409],[83.74583745837458,70.50372380239219],[83.74943749437494,70.52567530690067],[83.7638376383764,70.54762681140915],[83.75663756637567,70.56788973864775],[83.69543695436954,70.6101041703948],[83.68463684636845,70.62192421128398],[83.67383673836741,70.64725287033224],[83.66303663036632,70.66076148849129],[83.65223652236523,70.67089295211059],[83.61623616236164,70.6894673020793],[83.60183601836019,70.70297592023834],[83.59823598235982,70.71648453839742],[83.60183601836019,70.7283045792866],[83.60543605436055,70.74012462017578],[83.60903609036092,70.75363323833483],[83.60183601836019,70.77051901103366],[83.58383583835837,70.78065047465296],[83.55863558635588,70.78909336100239],[83.54063540635406,70.79078193827226],[83.53703537035369,70.79753624735179],[83.5118351183512,70.83975067909887],[83.51903519035193,70.8465049881784],[83.50823508235084,70.86339076087722],[83.48663486634865,70.90053946081463],[83.47583475834762,70.91742523351346],[83.45423454234543,70.93431100621228],[83.40383403834039,70.95963966526054],[83.38223382233821,70.97652543795937],[83.40023400234003,71.00354267427747],[83.38223382233821,71.03224848786547],[83.34623346233462,71.05588856964386],[83.31743317433177,71.06602003326313],[83.16983169831701,71.08121722869208],[83.15183151831519,71.08797153777161],[83.13383133831337,71.09810300139091],[83.11583115831161,71.11330019681986],[83.24183241832418,71.11161161954996],[83.25623256232564,71.11667735135961],[83.23823238232382,71.14031743313797],[83.20943209432096,71.18928617396458],[83.15543155431556,71.23150060571163],[83.14823148231483,71.24500922387071],[83.15903159031592,71.25007495568036],[83.17343173431738,71.25514068749001],[83.20943209432096,71.27371503745871],[83.26703267032673,71.28553507834789],[83.29583295832958,71.30579800558647],[83.34983349833499,71.3530781691432],[83.37503375033754,71.36996394184203],[83.38583385833857,71.3817839827312],[83.37503375033754,71.40711264177943],[83.37503375033754,71.42062125993851],[83.37503375033754,71.44594991898674],[83.38223382233821,71.46452426895544],[83.39663396633966,71.47465573257475],[83.41823418234185,71.47634430984462],[83.44343443434434,71.47634430984462],[83.49383493834938,71.48309861892417],[83.54063540635406,71.49660723708323],[83.56223562235624,71.51011585524228],[83.61983619836201,71.55739601879901],[83.6306363063631,71.57597036876771],[83.62703627036274,71.61143049143524],[83.61983619836201,71.63169341867385],[83.59823598235982,71.6452020368329],[83.56943569435697,71.66208780953173],[83.54783547835478,71.66884211861125],[83.54423544235442,71.6739078504209],[83.54063540635406,71.68572789131008],[83.54063540635406,71.69248220038963],[83.53343533435333,71.69754793219926],[83.52623526235266,71.70261366400891],[83.4578345783458,71.73976236394634],[83.41823418234185,71.74820525029574],[83.41103411034112,71.75158240483552],[83.40743407434076,71.75833671391504],[83.41103411034112,71.76677960026447],[83.41463414634148,71.773533909344],[83.41823418234185,71.77859964115365],[83.41823418234185,71.79041968204282],[83.41823418234185,71.79886256839222],[83.41463414634148,71.80730545474165],[83.40383403834039,71.81912549563083],[83.36063360633608,71.84107700013931],[83.259832598326,71.85796277283814],[83.16263162631628,71.88498000915624],[83.05103051030511,71.88498000915624],[82.96822968229685,71.89848862731532],[82.78822788227882,71.90524293639484],[82.75942759427596,71.90186578185507],[82.73782737827378,71.89342289550567],[82.72342723427238,71.88329143188636],[82.70542705427056,71.87653712280684],[82.67662676626765,71.87991427734659],[82.66582665826661,71.88329143188636],[82.65142651426515,71.89173431823579],[82.64062640626406,71.90186578185507],[82.6370263702637,71.91537440001414],[82.6226262262623,71.94239163633225],[82.59382593825939,71.96265456357085],[82.47142471424718,72.02006619074686],[82.43182431824317,72.02682049982639],[82.38142381423813,72.04032911798546],[82.32022320223206,72.06565777703369],[82.27702277022769,72.07916639519277],[82.18342183421834,72.09267501335182],[82.22302223022228,72.1146265178603],[82.26622266222665,72.11969224966995],[82.29862298622987,72.13488944509888],[82.3058230582306,72.18216960865561],[82.30222302223024,72.20412111316406],[82.29862298622987,72.22100688586289],[82.28782287822878,72.2328269267521],[82.26622266222665,72.24464696764127],[82.23022230222301,72.25308985399067],[82.21942219422198,72.25815558580032],[82.21222212222125,72.26322131760998],[82.20502205022052,72.27504135849915],[82.19782197821979,72.28179566757868],[82.18342183421834,72.28686139938833],[82.16542165421657,72.28517282211845],[82.13662136621366,72.27841851303893],[82.12942129421293,72.27672993576903],[81.94581945819459,72.29361570846785],[81.86301863018633,72.31725579024621],[81.58581585815858,72.35102733564386],[81.20781207812081,72.35440449018364],[81.1538115381154,72.36622453107282],[80.90540905409057,72.45571912637661],[80.8586085860859,72.46585058999591],[80.83340833408334,72.47429347634531],[80.79020790207903,72.50299928993331],[80.70380703807041,72.54521372168037],[80.71820718207181,72.55872233983945],[80.77940779407794,72.57898526707802],[80.77940779407794,72.5823624216178],[80.77940779407794,72.5908053079672],[80.7830078300783,72.59755961704676],[80.7938079380794,72.6009367715865],[80.80460804608049,72.6026253488564],[80.81540815408152,72.60769108066603],[80.83340833408334,72.62119969882511],[80.79740797407976,72.63639689425406],[80.68580685806859,72.64652835787334],[80.6642066420664,72.66847986238182],[80.65700657006573,72.68367705781077],[80.63540635406355,72.70393998504935],[80.62820628206282,72.71744860320842],[80.63180631806318,72.73433437590725],[80.64260642606428,72.74277726225665],[80.69300693006932,72.76135161222535],[80.76140761407618,72.79681173489291],[80.77220772207721,72.80525462124231],[80.77220772207721,72.80863177578209],[80.77220772207721,72.82382897121101],[80.77580775807758,72.82720612575079],[80.77940779407794,72.82720612575079],[80.7830078300783,72.82551754848092],[80.78660786607867,72.82720612575079],[80.80460804608049,72.84915763025927],[80.81900819008189,72.87279771203762],[80.84060840608407,72.92176645286423],[80.82980829808298,72.93865222556306],[80.81540815408152,72.97411234823059],[80.80100801008012,72.99099812092942],[80.79020790207903,72.99606385273907],[80.77580775807758,73.00112958454872],[80.76500765007648,73.00788389362825],[80.75780757807581,73.01463820270777],[80.75780757807581,73.02983539813673],[80.75060750607508,73.03827828448613],[80.68940689406895,73.05854121172473],[80.65340653406537,73.06529552080426],[80.50580505805061,73.0788041389633],[80.46980469804697,73.08555844804283],[80.43740437404375,73.10075564347179],[80.46980469804697,73.10919852982121],[80.51300513005128,73.11426426163086],[80.5958059580596,73.11426426163086],[80.56700567005669,73.14128149794897],[80.52020520205201,73.15647869337792],[80.40140401404017,73.16492157972732],[80.32580325803258,73.18349592969605],[80.30060300603009,73.18349592969605],[80.25380253802541,73.17674162061653],[80.23220232202323,73.17674162061653],[80.27540275402754,73.19531597058523],[80.32220322203221,73.20207027966475],[80.46620466204661,73.20375885693463],[80.49140491404916,73.2071360114744],[80.53460534605347,73.21895605236358],[80.55260552605529,73.2172674750937],[80.56340563405632,73.22233320690336],[80.56700567005669,73.23753040233228],[80.52740527405274,73.28143341134924],[80.44100441004412,73.29494202950829],[80.34020340203404,73.29831918404807],[80.27180271802717,73.31013922493725],[80.25380253802541,73.33040215217585],[80.28260282602827,73.34222219306503],[80.32220322203221,73.3540422339542],[80.34020340203404,73.37092800665303],[80.35100351003513,73.38274804754221],[80.36900369003689,73.38612520208196],[80.39060390603908,73.38443662481208],[80.40500405004053,73.37768231573256],[80.41940419404193,73.37092800665303],[80.43020430204302,73.3726165839229],[80.48420484204843,73.41989674747961],[80.49500495004952,73.42327390201939],[80.56700567005669,73.42833963382904],[80.58860588605887,73.43678252017844],[80.60300603006033,73.44184825198809],[80.61020610206106,73.44860256106762],[80.61380613806136,73.45873402468692],[80.61380613806136,73.47393122011587],[80.62460624606246,73.48575126100505],[80.64260642606428,73.49250557008457],[80.6642066420664,73.49757130189423],[80.67860678606786,73.50432561097375],[80.63540635406355,73.51445707459305],[80.5418054180542,73.48743983827492],[80.50580505805061,73.49757130189423],[80.51300513005128,73.51614565186293],[80.50940509405098,73.55329435180036],[80.51300513005128,73.56680296995941],[80.53460534605347,73.58031158811849],[80.57420574205742,73.58368874265824],[80.83340833408334,73.57186870176906],[80.9162091620916,73.58706589719802],[81.25461254612549,73.60564024716672],[81.31941319413193,73.62421459713542],[81.52821528215281,73.64785467891377],[81.95661956619568,73.66305187434273],[82.30222302223024,73.66136329707285],[82.57222572225726,73.66136329707285],[83.0618306183062,73.65460898799333],[83.48303483034829,73.6562975652632],[83.72783727837282,73.69513484247051],[84.04824048240482,73.70357772881991],[84.36504365043652,73.71033203789943],[84.57024570245704,73.75254646964652],[84.79344793447933,73.7643665105357],[84.92664926649269,73.73228354240791],[85.00945009450095,73.71033203789943],[85.03105031050313,73.70864346062956],[85.09585095850957,73.71708634697899],[85.42705427054273,73.71202061516934],[85.4738547385474,73.72046350151874],[85.49545495454953,73.73734927421756],[85.48825488254886,73.74410358329709],[85.47745477454777,73.75254646964652],[85.4738547385474,73.75930077872604],[85.48105481054813,73.76943224234535],[85.52065520655208,73.78631801504417],[85.57105571055712,73.81333525136228],[85.58545585455857,73.81840098317193],[85.60345603456034,73.8217781377117],[85.869858698587,73.82346671498158],[86.01746017460175,73.86568114672866],[86.39906399063989,73.88425549669736],[86.78426784267845,73.90282984666607],[87.07947079470796,73.87074687853831],[87.09747097470978,73.86061541491901],[87.10467104671045,73.84541821949006],[87.09387093870941,73.83528675587075],[87.0650706507065,73.82008956044183],[87.0506705067051,73.80826951955265],[87.03987039870401,73.79476090139357],[87.02547025470255,73.7829408605044],[87.0110701107011,73.77787512869475],[86.86346863468634,73.7643665105357],[86.8238682386824,73.75085789237662],[86.74826748267486,73.71370919243921],[86.72306723067231,73.70526630608978],[86.66906669066691,73.69682341974038],[86.61866618666187,73.68331480158133],[86.52146521465215,73.67149476069216],[86.39546395463958,73.62421459713542],[86.27666276662768,73.60057451535707],[86.11466114661147,73.58706589719802],[85.97425974259744,73.53303142456176],[85.89145891458918,73.51783422913283],[85.83385833858341,73.49419414735445],[85.81585815858159,73.4908169928147],[85.78705787057874,73.4806855291954],[85.78345783457837,73.45535687014717],[85.80145801458013,73.40301097478078],[85.80145801458013,73.38950235662173],[85.79785797857977,73.37768231573256],[85.79785797857977,73.36417369757348],[85.8050580505805,73.35066507941443],[85.81945819458196,73.34053361579512],[85.83385833858341,73.33209072944572],[85.84825848258481,73.3253364203662],[85.91305913059131,73.30676207039747],[86.23346233462337,73.25441617503111],[86.24786247862477,73.23753040233228],[86.2550625506255,73.23077609325276],[86.24786247862477,73.22402178417323],[86.32706327063272,73.18011877515627],[86.52146521465215,73.16323300245745],[86.61146611466114,73.13790434340922],[86.62946629466296,73.13115003432969],[86.66186661866618,73.12270714798026],[86.679866798668,73.11426426163086],[86.6906669066691,73.10582137528144],[86.71226712267122,73.08386987077296],[86.71946719467195,73.07373840715366],[86.72306723067231,73.06360694353438],[86.73026730267304,73.04334401629578],[86.7338673386734,73.03321255267647],[86.7446674466745,73.0213925117873],[86.7590675906759,73.011261048168],[86.77346773467735,73.00450673908847],[86.78426784267845,73.00112958454872],[86.78066780667808,73.04672117083555],[86.77706777067772,73.06529552080426],[86.76626766267663,73.08386987077296],[86.74106741067413,73.10413279801156],[86.65826658266582,73.15141296156827],[86.62226622266223,73.16661015699722],[86.58266582665829,73.17674162061653],[86.51066510665106,73.18011877515627],[86.48906489064893,73.18518450696592],[86.46026460264602,73.1970045478551],[86.40986409864098,73.23077609325276],[86.37746377463776,73.24428471141181],[86.25146251462513,73.27805625680946],[85.93465934659349,73.3236478430963],[85.89505895058954,73.33884503852525],[85.86265862658627,73.36417369757348],[85.85185851858517,73.37599373846268],[85.84825848258481,73.3810594702723],[85.85185851858517,73.40301097478078],[85.85185851858517,73.40638812932056],[85.85545855458554,73.41651959293986],[85.8590585905859,73.42327390201939],[85.85545855458554,73.42665105655914],[85.8446584465845,73.43509394290857],[85.8446584465845,73.44015967471822],[85.88065880658809,73.49588272462435],[85.97065970659708,73.5195228064027],[86.07506075060752,73.5279656927521],[86.20466204662046,73.55836008361001],[86.48906489064893,73.57018012449919],[86.77346773467735,73.58368874265824],[86.84546845468458,73.60564024716672],[87.11187111871118,73.60564024716672],[87.16587165871658,73.61070597897637],[87.20547205472053,73.63096890621495],[87.23787237872381,73.65292041072342],[87.31347313473134,73.68331480158133],[87.34587345873462,73.70357772881991],[87.32427324273243,73.70864346062956],[87.27387273872739,73.69006911066086],[87.2486724867249,73.69006911066086],[87.28107281072812,73.73059496513804],[87.3278732787328,73.75254646964652],[87.55827558275581,73.8015152104731],[87.61587615876158,73.82346671498158],[87.65187651876522,73.86061541491901],[87.64467644676449,73.86736972399854],[87.66267662676626,73.89100980577689],[87.64467644676449,73.90620700120584],[87.61227612276122,73.91296131028537],[87.579875798758,73.91633846482515],[87.54387543875441,73.91464988755524],[87.52947529475296,73.90789557847572],[87.52947529475296,73.89269838304676],[87.52947529475296,73.86399256945876],[87.51867518675186,73.85048395129971],[87.48627486274864,73.83528675587075],[87.45387453874542,73.82515529225148],[87.42867428674288,73.82008956044183],[87.36387363873638,73.82684386952135],[87.29547295472958,73.84204106495031],[87.24147241472417,73.86061541491901],[87.18747187471877,73.88932122850701],[87.16587165871658,73.89607553758654],[87.15507155071549,73.90282984666607],[87.15147151471518,73.91296131028537],[87.15147151471518,73.92478135117454],[87.14427144271446,73.9298470829842],[87.1190711907119,73.94673285568302],[87.09027090270905,73.95517574203242],[87.07947079470796,73.96024147384207],[87.04347043470437,73.99232444196986],[86.96426964269642,74.01765310101808],[86.93906939069393,74.03285029644704],[86.9966699666997,74.04973606914587],[87.25587255872557,74.03960460552656],[87.36747367473674,74.01089879193856],[87.42147421474215,74.01258736920846],[87.36387363873638,74.04804749187599],[87.29187291872921,74.06324468730492],[86.89586895868962,74.06999899638447],[86.84906849068494,74.08857334635317],[86.85626856268561,74.09195050089292],[86.85986859868598,74.09701623270257],[86.86346863468634,74.10883627359175],[86.84546845468458,74.1155905826713],[86.7338673386734,74.12909920083035],[86.72306723067231,74.13247635537013],[86.73026730267304,74.1442963962593],[86.80226802268021,74.18482225073649],[86.7590675906759,74.20846233251484],[86.71226712267122,74.2236595279438],[86.66186661866618,74.23547956883297],[86.5070650706507,74.25574249607155],[86.02106021060212,74.26249680515107],[85.97425974259744,74.27600542331015],[85.94905949059489,74.29289119600898],[85.94905949059489,74.2996455050885],[85.95985959859598,74.30639981416803],[85.95985959859598,74.31990843232711],[85.94905949059489,74.32835131867651],[85.93105931059313,74.33341705048616],[85.91305913059131,74.34017135956569],[85.90585905859058,74.35536855499464],[85.93825938259386,74.36887717315369],[86.15786157861578,74.35705713226452],[86.2406624066241,74.33341705048616],[86.28746287462877,74.31315412324756],[86.29826298262981,74.31315412324756],[86.30546305463054,74.31821985505721],[86.3090630906309,74.32835131867651],[86.3090630906309,74.33848278229581],[86.30186301863017,74.34185993683556],[86.29106291062914,74.34185993683556],[86.28026280262804,74.34861424591512],[86.26226262262622,74.38069721404287],[86.2550625506255,74.3891401003923],[86.23346233462337,74.3975829867417],[86.20106201062009,74.40096014128147],[86.09666096660965,74.40433729582122],[86.07146071460716,74.407714450361],[86.04986049860497,74.4161573367104],[86.06786067860679,74.42291164578995],[86.09306093060934,74.42460022305983],[86.13986139861402,74.42291164578995],[86.20106201062009,74.43135453213935],[86.2550625506255,74.41953449125018],[86.28386283862841,74.4262888003297],[86.31626316263163,74.43810884121888],[86.47466474664748,74.45837176845748],[86.5718657186572,74.44317457302853],[86.58986589865901,74.436420263949],[86.60066600666005,74.42966595486948],[86.61146611466114,74.41953449125018],[86.62226622266223,74.41278018217065],[86.64026640266405,74.40940302763087],[86.60786607866078,74.40096014128147],[86.59706597065974,74.39589440947182],[86.62226622266223,74.3874515231224],[86.65106651066509,74.3874515231224],[86.7050670506705,74.39589440947182],[86.72666726667268,74.39420583220195],[86.78426784267845,74.38238579131277],[86.80226802268021,74.38238579131277],[86.84906849068494,74.39589440947182],[86.8778687786878,74.39589440947182],[86.92826928269284,74.3891401003923],[86.95346953469533,74.3891401003923],[86.92826928269284,74.36550001861394],[86.88506885068853,74.35030282318499],[86.78066780667808,74.33003989594638],[86.71586715867159,74.32497416413673],[86.70146701467013,74.31990843232711],[86.69786697866982,74.30639981416803],[86.71586715867159,74.30133408235838],[86.73746737467377,74.30133408235838],[86.78066780667808,74.30639981416803],[86.83466834668349,74.30133408235838],[86.85986859868598,74.30639981416803],[86.90666906669065,74.33510562775604],[86.92826928269284,74.34017135956569],[86.94986949869502,74.34185993683556],[86.96066960669606,74.33848278229581],[86.9858698586986,74.30639981416803],[86.98946989469897,74.29626835054873],[86.9858698586986,74.28782546419933],[86.96786967869679,74.2793825778499],[86.99306993069933,74.2709396915005],[87.02187021870219,74.27262826877038],[87.04347043470437,74.28613688692946],[87.0506705067051,74.30639981416803],[87.03987039870401,74.32159700959699],[87.0110701107011,74.34523709137534],[87.00387003870037,74.35536855499464],[87.01467014670146,74.36718859588382],[87.0506705067051,74.36550001861394],[87.1190711907119,74.35536855499464],[87.2630726307263,74.35536855499464],[87.23427234272344,74.36381144134404],[87.12627126271263,74.37563148223322],[87.10827108271081,74.38069721404287],[87.07947079470796,74.3891401003923],[87.06147061470614,74.40264871855135],[87.0650706507065,74.41278018217065],[87.08667086670869,74.4262888003297],[87.09387093870941,74.436420263949],[87.07947079470796,74.44148599575865],[87.0506705067051,74.44486315029843],[86.79506795067954,74.42291164578995],[86.78786787867881,74.4262888003297],[86.77706777067772,74.43810884121888],[86.76986769867699,74.44486315029843],[86.75546755467553,74.4465517275683],[86.71946719467195,74.4465517275683],[86.7050670506705,74.45161745937796],[86.70146701467013,74.45668319118761],[86.69426694266946,74.47188038661653],[86.68706687066873,74.47863469569606],[86.67266672666727,74.48201185023584],[86.64026640266405,74.48201185023584],[86.6258662586626,74.48370042750571],[86.60066600666005,74.50058620020454],[86.58986589865901,74.50565193201419],[86.55026550265501,74.50734050928409],[86.53586535865361,74.51240624109371],[86.56466564665647,74.52422628198292],[86.7590675906759,74.54786636376127],[86.78426784267845,74.56137498192032],[86.4926649266493,74.56644071372997],[86.4818648186482,74.56812929099985],[86.45666456664566,74.57826075461915],[86.4386643866439,74.58163790915893],[86.38826388263885,74.58163790915893],[86.37026370263703,74.58501506369868],[86.32346323463236,74.60358941366738],[86.3090630906309,74.60696656820716],[86.27666276662768,74.60696656820716],[86.19386193861942,74.62216376363611],[85.74025740257406,74.63567238179516],[85.76545765457655,74.65255815449399],[85.79785797857977,74.66268961811329],[85.86625866258663,74.67113250446269],[85.83385833858341,74.68632969989164],[85.84105841058414,74.7015268953206],[85.89865898658985,74.72347839982908],[85.93825938259386,74.7285441316387],[86.01746017460175,74.71503551347965],[86.0570605706057,74.71841266801943],[86.07506075060752,74.72347839982908],[86.10026100261001,74.73529844071825],[86.1218612186122,74.75218421341708],[86.12546125461256,74.77244714065566],[86.1110611106111,74.78764433608461],[86.02826028260284,74.81466157240274],[86.0426604266043,74.81972730421236],[86.0570605706057,74.82141588148227],[86.08946089460898,74.82141588148227],[86.10386103861038,74.81803872694249],[86.10746107461074,74.81466157240274],[86.11466114661147,74.80959584059309],[86.1218612186122,74.80790726332319],[86.19746197461973,74.81128441786296],[86.22266222662228,74.80790726332319],[86.28026280262804,74.78257860427496],[86.30186301863017,74.77920144973518],[86.34866348663485,74.78089002700509],[86.36666366663667,74.77582429519543],[86.37746377463776,74.7589385224966],[86.21186211862118,74.76569283157613],[86.229862298623,74.75556136795683],[86.28386283862841,74.73529844071825],[86.31986319863199,74.70828120440012],[86.33786337863381,74.70490404986035],[86.35586355863558,74.70659262713025],[86.3630636306363,74.71165835893987],[86.3738637386374,74.71841266801943],[86.39186391863922,74.72516697709895],[86.40986409864098,74.72685555436883],[86.47466474664748,74.72516697709895],[86.64026640266405,74.69814974078082],[86.63306633066333,74.68801827716152],[86.60786607866078,74.67450965900247],[86.60426604266041,74.66268961811329],[86.61866618666187,74.65593530903377],[86.64386643866442,74.65424673176386],[86.68706687066873,74.65593530903377],[86.679866798668,74.65424673176386],[86.66546665466655,74.64242669087469],[86.6906669066691,74.62216376363611],[86.71586715867159,74.61709803182646],[86.77346773467735,74.62891807271563],[86.80946809468094,74.63229522725541],[86.84186841868421,74.63060664998551],[86.8778687786878,74.62554091817586],[86.93906939069393,74.60865514547703],[86.9570695706957,74.60865514547703],[86.96786967869679,74.61540945455658],[86.96426964269642,74.62554091817586],[86.95346953469533,74.63060664998551],[86.92826928269284,74.63567238179516],[86.90306903069029,74.65424673176386],[86.91026910269102,74.66268961811329],[86.9318693186932,74.67113250446269],[86.95346953469533,74.68295254535187],[86.90666906669065,74.6913954317013],[86.79506795067954,74.68464112262177],[86.76266762667626,74.70490404986035],[86.77706777067772,74.70828120440012],[86.80226802268021,74.71334693620977],[86.81666816668167,74.71841266801943],[86.80946809468094,74.72516697709895],[86.85986859868598,74.74542990433753],[86.91386913869138,74.7572499452267],[86.96786967869679,74.75556136795683],[87.0110701107011,74.73529844071825],[87.02187021870219,74.7285441316387],[87.03627036270365,74.72347839982908],[87.0506705067051,74.72178982255917],[87.0650706507065,74.72516697709895],[87.0650706507065,74.7302327089086],[87.0650706507065,74.7488070588773],[87.06867068670687,74.75556136795683],[87.08307083070832,74.77244714065566],[87.07227072270723,74.78089002700509],[87.05427054270541,74.78764433608461],[87.03627036270365,74.79946437697379],[87.06147061470614,74.83999023145097],[87.09747097470978,74.86194173595945],[87.26667266672666,74.9142876313258],[87.30987309873098,74.91935336313546],[87.36747367473674,74.93455055856441],[87.38547385473856,74.94468202218368],[87.36387363873638,74.95819064034276],[87.33507335073352,74.96156779488251],[87.27387273872739,74.95819064034276],[87.2486724867249,74.96156779488251],[87.17307173071731,74.9852078766609],[87.21267212672126,75.00209364935972],[87.27027270272703,75.012225112979],[87.3278732787328,75.012225112979],[87.38547385473856,75.00547080389947],[87.41067410674106,75.00715938116934],[87.42507425074251,75.00547080389947],[87.4358743587436,75.00209364935972],[87.45387453874542,74.9936507630103],[87.47907479074792,74.98689645393077],[87.47187471874719,74.97845356758134],[87.45027450274506,74.96832210396207],[87.43227432274324,74.96494494942229],[87.4466744667447,74.95312490853311],[87.46827468274682,74.94805917672346],[87.50787507875077,74.94468202218368],[87.55107551075514,74.93117340402463],[87.57267572675727,74.92948482675476],[87.59787597875982,74.93623913583428],[87.55827558275581,74.96156779488251],[87.56547565475654,74.96494494942229],[87.63747637476376,74.97169925850181],[87.66627666276662,74.97845356758134],[87.69507695076953,74.99196218574042],[87.70587705877062,75.00547080389947],[87.68067680676808,75.012225112979],[87.73467734677348,75.0139136902489],[87.76347763477634,75.01729084478865],[87.78867788677888,75.02573373113808],[87.73107731077312,75.03924234929713],[87.45387453874542,75.03924234929713],[87.42507425074251,75.04430808110678],[87.41067410674106,75.04599665837665],[87.3818738187382,75.03924234929713],[87.36387363873638,75.03924234929713],[87.35307353073534,75.04430808110678],[87.32427324273243,75.0611938538056],[87.26667266672666,75.07301389469478],[87.03627036270365,75.09327682193339],[87.00747007470073,75.08989966739361],[86.93906939069393,75.07470247196466],[86.92106921069211,75.07639104923456],[86.89946899468998,75.08821109012374],[86.91746917469175,75.11185117190209],[86.93546935469357,75.12704836733104],[86.98946989469897,75.15406560364914],[87.02547025470255,75.16419706726845],[87.20187201872022,75.1692627990781],[87.54027540275405,75.1405569854901],[87.58707587075872,75.14224556275997],[87.91107911079109,75.10003113101291],[87.95427954279546,75.10003113101291],[87.99387993879941,75.10678544009244],[88.0838808388084,75.14393414002984],[88.11628116281162,75.14562271729974],[88.1378813788138,75.12873694460092],[88.17028170281702,75.1506884491094],[88.20988209882097,75.1591313354588],[88.25308253082534,75.16250848999857],[88.28908289082892,75.17095137634797],[88.30708307083074,75.17601710815762],[88.31428314283141,75.18108283996727],[88.31788317883178,75.1895257263167],[88.31788317883178,75.2182315399047],[88.32148321483214,75.2266744262541],[88.3250832508325,75.23511731260353],[88.33948339483396,75.24187162168306],[88.37188371883718,75.25538023984211],[88.48348483484835,75.27902032162046],[88.51948519485194,75.28239747616024],[88.62748627486275,75.26720028073129],[88.61308613086129,75.28239747616024],[88.59148591485916,75.29590609431929],[88.55188551885522,75.314480444288],[88.61308613086129,75.3448748351459],[88.75348753487538,75.34994056695555],[88.81828818288182,75.36176060784473],[88.77148771487714,75.37526922600378],[88.84348843488436,75.39890930778213],[88.92628926289262,75.41241792594121],[89.00909009090094,75.41410650321109],[89.08469084690847,75.40228646232191],[89.05589055890562,75.42592654410026],[89.00549005490058,75.43436943044969],[88.73548735487356,75.40904077140144],[88.75708757087574,75.41748365775086],[88.95148951489517,75.44112373952922],[89.01629016290161,75.45125520314852],[89.13149131491315,75.4529437804184],[89.15309153091533,75.45632093495814],[89.1710917109171,75.4630752440377],[89.18909189091892,75.4715181303871],[89.22869228692286,75.50191252124498],[89.24669246692469,75.50697825305463],[89.26109261092614,75.50360109851488],[89.31149311493118,75.47827243946662],[89.37269372693726,75.46982955311722],[89.39429394293944,75.46476382130757],[89.39429394293944,75.44956662587862],[89.5418954189542,75.44787804860874],[89.55989559895602,75.44112373952922],[89.61029610296106,75.44956662587862],[89.63189631896319,75.44956662587862],[89.65349653496537,75.44450089406897],[89.67869678696786,75.44112373952922],[89.70389703897041,75.44281231679909],[89.72189721897217,75.45125520314852],[89.69669696696968,75.4613866667678],[89.62469624696246,75.47827243946662],[89.61389613896142,75.4917810576257],[89.63549635496355,75.50528967578475],[89.85509855098553,75.51542113940405],[90.05670056700569,75.5204868712137],[90.0351003510035,75.54243837572218],[89.99549995499956,75.54919268480171],[89.94869948699488,75.55088126207158],[89.91629916299166,75.56101272569089],[89.95589955899561,75.57789849838971],[90.22950229502294,75.59647284835842],[90.31950319503198,75.60153858016807],[90.60030600306004,75.61167004378737],[90.75510755107553,75.65219589826455],[90.81630816308166,75.65895020734408],[90.86310863108633,75.66908167096338],[90.88830888308883,75.67077024823325],[90.90630906309065,75.6673930936935],[90.91350913509137,75.66063878461395],[90.91350913509137,75.65050732099468],[90.91350913509137,75.64375301191512],[90.94230942309423,75.62517866194642],[90.97830978309781,75.62011293013677],[91.01431014310145,75.62517866194642],[91.05031050310504,75.63531012556572],[91.1079110791108,75.66232736188385],[91.12951129511293,75.6657045164236],[91.19431194311943,75.66401593915373],[91.1871118711187,75.64206443464525],[91.21591215912161,75.63193297102595],[91.29151291512915,75.6285558164862],[91.449914499145,75.65050732099468],[91.57951579515799,75.6369987028356],[91.61911619116194,75.64375301191512],[91.64071640716406,75.65388447553443],[91.64791647916479,75.66908167096338],[91.64071640716406,75.68427886639233],[91.61911619116194,75.69778748455138],[91.65871658716588,75.72311614359961],[91.7019170191702,75.73662476175869],[91.74151741517414,75.73662476175869],[91.78471784717846,75.72311614359961],[91.81351813518137,75.71636183452009],[91.89991899918999,75.73324760721891],[92.0079200792008,75.72649329813939],[92.08352083520839,75.73493618448879],[92.22392223922242,75.75351053445752],[92.37152371523717,75.74000191629844],[92.51552515525157,75.7737734616961],[92.86112861128612,75.7940363889347],[93.18513185131854,75.82611935706245],[93.54873548735486,75.85313659338058],[93.80073800738006,75.88353098423849],[94.05274052740526,75.91561395236624],[94.14274142741431,75.9409426114145],[94.16434164341644,75.94431976595425],[94.14274142741431,75.95445122957355],[94.1139411394114,75.9493854977639],[94.08154081540818,75.93756545687472],[94.05274052740526,75.9308111477952],[93.73953739537399,75.90041675693732],[93.6639366393664,75.90210533420719],[93.59553595535954,75.91730252963612],[93.60273602736027,75.9392540341446],[93.58113581135814,75.95107407503377],[93.5451354513545,75.95276265230368],[93.519935199352,75.94769692049402],[93.46233462334624,75.9206796841759],[93.44793447934478,75.90885964328672],[93.47313473134733,75.90379391147707],[93.49473494734946,75.89535102512767],[93.46233462334624,75.88015382969871],[93.41913419134193,75.87339952061919],[93.39753397533974,75.88521956150836],[93.3867338673387,75.89703960239754],[93.31473314733148,75.9308111477952],[93.32193321933221,75.93756545687472],[93.30393303933039,75.94263118868437],[93.27153271532717,75.94600834322415],[93.25713257132571,75.95107407503377],[93.27513275132753,75.9595169613832],[93.32193321933221,75.97302557954225],[93.2787327873279,75.98146846589168],[93.23193231932322,75.9780913113519],[93.14193141931418,75.95782838411333],[93.00513005130051,75.94431976595425],[92.96552965529656,75.9308111477952],[93.00153001530015,75.92912257052532],[93.07353073530737,75.9122367978265],[93.10953109531096,75.91054822055659],[93.06993069930701,75.88859671604811],[93.00873008730088,75.88690813877824],[92.88992889928898,75.89703960239754],[92.88992889928898,75.90379391147707],[92.90072900729007,75.9122367978265],[92.8827288272883,75.93418830233495],[92.85392853928539,75.95445122957355],[92.82512825128254,75.96458269319285],[92.85032850328503,75.97640273408203],[92.92952929529298,75.99328850678086],[92.91872918729189,76.00510854767003],[92.91152911529116,76.01861716582908],[92.91512915129152,76.02874862944839],[92.92952929529298,76.03381436125804],[92.92232922329225,76.05407728849664],[92.95112951129511,76.0675859066557],[92.99432994329942,76.07434021573522],[93.02313023130233,76.0760287930051],[93.0411304113041,76.07096306119547],[93.05193051930519,76.06589732938582],[93.0951309513095,76.02706005217851],[93.10233102331023,76.02368289763874],[93.12753127531278,76.02368289763874],[93.21033210332104,76.04394582487734],[93.23193231932322,76.05407728849664],[93.22113221132213,76.07096306119547],[93.14553145531454,76.0861602566244],[93.12033120331205,76.0962917202437],[93.26073260732608,76.0962917202437],[93.31473314733148,76.106423183863],[93.42993429934302,76.106423183863],[93.42993429934302,76.09966887478348],[93.35433354333543,76.08109452481474],[93.3327333273333,76.0675859066557],[93.35073350733506,76.05745444303639],[93.37593375933761,76.05070013395687],[93.42273422734229,76.04732297941709],[93.41553415534156,76.03888009306769],[93.3867338673387,76.02030574309899],[93.42633426334265,76.01186285674956],[93.46233462334624,76.02030574309899],[93.5307353073531,76.04732297941709],[93.55593555935559,76.05070013395687],[93.62793627936281,76.04732297941709],[93.68553685536858,76.05914302030627],[93.70353703537035,76.06083159757617],[93.72153721537217,76.05914302030627],[93.74673746737466,76.04563440214721],[93.76473764737648,76.04056867033756],[93.78633786337866,76.04225724760744],[93.82593825938261,76.05238871122674],[93.84753847538474,76.05407728849664],[93.95913959139591,76.04901155668699],[93.99873998739986,76.05407728849664],[93.95553955539555,76.07434021573522],[93.93393933939342,76.08109452481474],[93.87993879938801,76.07434021573522],[93.85473854738547,76.077717370275],[93.80793807938079,76.09966887478348],[93.7827378273783,76.10304602932322],[93.68913689136895,76.0962917202437],[93.67473674736749,76.09966887478348],[93.6531365313653,76.1165546474823],[93.63513635136354,76.12330895656183],[93.68553685536858,76.13175184291123],[94.1031410314103,76.12330895656183],[94.20034200342002,76.1047346065931],[94.25074250742506,76.10980033840275],[94.27594275942761,76.1165546474823],[94.32994329943301,76.12330895656183],[94.37314373143732,76.12162037929193],[94.39114391143914,76.1165546474823],[94.39474394743951,76.10811176113288],[94.38394383943842,76.0962917202437],[94.40554405544054,76.0962917202437],[94.42714427144273,76.09122598843405],[94.45234452344522,76.08447167935452],[94.47034470344704,76.0760287930051],[94.43794437944382,76.06083159757617],[94.45954459544595,76.05238871122674],[94.48114481144813,76.05238871122674],[94.52794527945281,76.06083159757617],[94.57474574745748,76.06083159757617],[94.59634596345967,76.06420875211592],[94.61434614346143,76.0760287930051],[94.58554585545858,76.08447167935452],[94.58554585545858,76.09291456570392],[94.60354603546034,76.09966887478348],[94.65754657546574,76.11317749294253],[94.7367473674737,76.1148660702124],[94.71154711547115,76.14019472926066],[94.65034650346502,76.14863761561006],[94.5387453874539,76.15032619287993],[94.57114571145712,76.16045765649923],[94.83394833948341,76.15032619287993],[94.85554855548554,76.14188330653053],[94.89154891548918,76.12330895656183],[94.90954909549095,76.1148660702124],[94.93114931149313,76.11148891567265],[95.0571505715057,76.11148891567265],[95.15435154351542,76.13175184291123],[95.2551525515255,76.12330895656183],[95.34155341553418,76.15539192468958],[95.38835388353885,76.16383481103901],[95.87435874358744,76.13850615199075],[95.97515975159752,76.1148660702124],[96.02556025560256,76.10811176113288],[96.11196111961118,76.11148891567265],[96.13716137161373,76.106423183863],[96.17676176761768,76.0962917202437],[96.1947619476195,76.08784883389427],[96.19116191161913,76.07940594754487],[96.14436144361446,76.0760287930051],[96.03636036360365,76.08109452481474],[95.99315993159934,76.06083159757617],[96.03996039960401,76.06420875211592],[96.06156061560614,76.05914302030627],[96.0759607596076,76.04732297941709],[96.0507605076051,76.04732297941709],[95.97875978759788,76.03381436125804],[96.0075600756008,76.01017427947968],[96.0111601116011,76.00341997040016],[96.00396003960043,75.99328850678086],[95.98595985959861,75.99159992951098],[95.94995949959502,75.99328850678086],[95.91755917559175,75.98991135224108],[95.85275852758531,75.97471415681215],[95.71235712357122,75.90717106601684],[95.679956799568,75.89872817966742],[95.60435604356047,75.89872817966742],[95.57555575555756,75.88859671604811],[95.679956799568,75.86157947973001],[95.74115741157414,75.85651374792036],[95.76635766357663,75.87339952061919],[95.77355773557736,75.88353098423849],[95.79155791557918,75.89703960239754],[95.82035820358203,75.91730252963612],[95.84195841958422,75.92405683871567],[95.88875888758889,75.93418830233495],[95.93555935559357,75.9493854977639],[95.99315993159934,75.95107407503377],[96.0759607596076,75.96120553865308],[96.10476104761051,75.96120553865308],[96.129961299613,75.95445122957355],[96.17316173161731,75.9493854977639],[96.30996309963103,75.9595169613832],[96.34236342363425,75.97302557954225],[96.32436324363243,75.97302557954225],[96.3027630276303,75.9780913113519],[96.28116281162812,75.98484562043143],[96.26676266762667,75.99328850678086],[96.3027630276303,76.00004281586038],[96.37476374763747,75.99497708405073],[96.41076410764111,76.00004281586038],[96.43956439564397,76.01017427947968],[96.47916479164792,76.01524001128934],[96.51876518765187,76.01524001128934],[96.54756547565478,76.00679712493991],[96.53316533165332,76.00173139313026],[96.52236522365223,75.9966656613206],[96.50796507965083,75.9882227749712],[96.5007650076501,75.9780913113519],[96.59076590765909,75.98653419770133],[96.63756637566377,75.98484562043143],[96.66276662766631,75.96458269319285],[96.6339663396634,75.96120553865308],[96.57276572765727,75.93756545687472],[96.46476464764646,75.88015382969871],[96.43956439564397,75.87677667515894],[96.46116461164615,75.87171094334929],[96.56556565565654,75.88521956150836],[96.63756637566377,75.90379391147707],[96.6879668796688,75.90717106601684],[96.78516785167852,75.89028529331802],[96.83556835568356,75.88859671604811],[96.8319683196832,75.91561395236624],[96.86436864368642,75.92743399325542],[96.93636936369364,75.93587687960485],[96.9507695076951,75.9409426114145],[96.97956979569796,75.9595169613832],[96.99036990369905,75.9696484250025],[97.00117001170014,75.97471415681215],[97.06237062370627,75.98653419770133],[97.20637206372066,76.03381436125804],[97.24957249572498,76.04394582487734],[97.39717397173973,76.04732297941709],[97.19917199171994,75.99328850678086],[97.19197191971921,75.98146846589168],[97.19917199171994,75.97640273408203],[97.24597245972461,75.95782838411333],[97.21357213572139,75.9493854977639],[97.19917199171994,75.94263118868437],[97.18477184771848,75.9308111477952],[97.22077220772206,75.92912257052532],[97.31077310773111,75.93418830233495],[97.34317343173433,75.94431976595425],[97.31437314373147,75.95445122957355],[97.31797317973178,75.96458269319285],[97.36477364773651,75.98315704316155],[97.39357393573937,75.9882227749712],[97.4547745477455,75.98315704316155],[97.51957519575194,75.99159992951098],[97.63837638376384,75.98991135224108],[97.68517685176852,75.97977988862178],[97.7067770677707,75.9780913113519],[97.82557825578255,75.9882227749712],[97.84357843578437,75.99159992951098],[97.83637836378364,76.00848570220981],[97.82197821978218,76.01861716582908],[97.69957699576997,76.05070013395687],[97.67077670776706,76.05407728849664],[97.58077580775807,76.04732297941709],[97.54837548375485,76.05407728849664],[97.62757627576275,76.08109452481474],[97.71037710377107,76.0962917202437],[97.80037800378005,76.09460314297382],[97.87597875978759,76.0760287930051],[97.86877868778691,76.0675859066557],[97.91197911979123,76.05914302030627],[97.9587795877959,76.06252017484604],[98.09558095580957,76.08784883389427],[98.14238142381424,76.08784883389427],[98.16038160381606,76.09122598843405],[98.19998199982001,76.10135745205335],[98.2215822158222,76.10304602932322],[98.01998019980203,76.1047346065931],[97.91917919179195,76.12330895656183],[97.9731797317973,76.1435718838004],[98.0271802718027,76.15708050195948],[98.05238052380525,76.15708050195948],[98.09558095580957,76.14694903834018],[98.11718117181175,76.14863761561006],[98.12798127981279,76.15370334741971],[98.14238142381424,76.16890054284866],[98.14958149581497,76.17396627465831],[98.16398163981643,76.17903200646796],[98.3439834398344,76.17734342919806],[98.40518405184054,76.18409773827759],[98.57438574385748,76.23137790183432],[98.81558815588158,76.26683802450185],[98.80118801188013,76.25839513815242],[98.7939879398794,76.24995225180302],[98.79038790387904,76.23982078818372],[98.78318783187831,76.23137790183432],[98.76518765187654,76.2229350154849],[98.7291872918729,76.21280355186559],[98.71118711187114,76.20436066551619],[98.74358743587436,76.19760635643667],[98.83718837188371,76.19760635643667],[98.86238862388626,76.20267208824632],[98.9127891278913,76.22124643821502],[98.93438934389343,76.2246235927548],[99.17199171991723,76.21280355186559],[99.1647916479165,76.21786928367524],[99.19359193591936,76.2246235927548],[99.23679236792367,76.2229350154849],[99.27279272792731,76.21618070640537],[99.29439294392944,76.20436066551619],[99.2439924399244,76.19929493370654],[99.2187921879219,76.19085204735714],[99.20079200792009,76.17734342919806],[99.2331923319233,76.16383481103901],[99.08919089190891,76.16383481103901],[99.17199171991723,76.13681757472088],[99.21519215192154,76.13006326564135],[99.26199261992622,76.12837468837148],[99.40239402394025,76.14694903834018],[99.52119521195215,76.14694903834018],[99.5607956079561,76.15708050195948],[99.57519575195755,76.15539192468958],[99.59679596795968,76.14019472926066],[99.60039600396004,76.13006326564135],[99.58239582395822,76.12330895656183],[99.46719467194674,76.10811176113288],[99.48879488794887,76.09460314297382],[99.51759517595178,76.0861602566244],[99.549995499955,76.08109452481474],[99.57519575195755,76.08109452481474],[99.55719557195573,76.0675859066557],[99.57159571595719,76.06420875211592],[99.58959589595895,76.06589732938582],[99.61119611196114,76.06927448392557],[99.62919629196296,76.077717370275],[99.64359643596435,76.08447167935452],[99.66159661596618,76.08278310208465],[99.6831968319683,76.077717370275],[99.75519755197553,76.04901155668699],[99.76239762397626,76.03550293852791],[99.74439744397444,76.01017427947968],[99.72999729997304,76.00004281586038],[99.70119701197012,75.98484562043143],[99.69039690396903,75.97471415681215],[99.6831968319683,75.96627127046273],[99.6831968319683,75.9595169613832],[99.6831968319683,75.95107407503377],[99.68679686796867,75.93249972506507],[99.69039690396903,75.92236826144577],[99.69039690396903,75.91392537509637],[99.69039690396903,75.90717106601684],[99.67599675996763,75.89197387058789],[99.67599675996763,75.88521956150836],[99.679596795968,75.87677667515894],[99.6147961479615,75.83793939795166],[99.54639546395464,75.81767647071305],[99.42399423994243,75.7940363889347],[99.57159571595719,75.78052777077562],[99.61119611196114,75.78897065712505],[99.64359643596435,75.8126107389034],[99.67599675996763,75.83962797522153],[99.71199711997122,75.86157947973001],[99.85959859598597,75.89872817966742],[99.90279902799028,75.92743399325542],[99.91359913599138,75.95276265230368],[99.89919899198992,75.97640273408203],[99.87399873998743,75.99328850678086],[99.84879848798488,76.00510854767003],[99.82359823598239,76.02368289763874],[99.84159841598415,76.04563440214721],[99.87039870398706,76.06927448392557],[99.87759877598779,76.0962917202437],[99.8667986679867,76.10811176113288],[99.82359823598239,76.11993180202205],[99.80919809198093,76.12837468837148],[99.8019980199802,76.1435718838004],[99.8019980199802,76.15032619287993],[99.79839798397984,76.15539192468958],[99.77679776797771,76.16383481103901],[99.68679686796867,76.18072058373784],[99.64359643596435,76.19591777916676],[99.62559625596259,76.22124643821502],[99.6147961479615,76.25501798361267],[99.58959589595895,76.2719037563115],[99.55719557195573,76.27865806539103],[99.39519395193952,76.2803466426609],[99.38439384393843,76.28372379720068],[99.37359373593739,76.29554383808986],[99.35559355593557,76.31918391986821],[99.31599315993162,76.34113542437669],[99.26559265592658,76.35295546526586],[99.06759067590679,76.35295546526586],[99.02079020790211,76.36308692888517],[99.02799027990278,76.3901041652033],[99.02079020790211,76.40023562882257],[99.00999009990102,76.40530136063222],[98.98838988389883,76.41374424698165],[98.94158941589416,76.44245006056966],[98.9235892358924,76.44920436964918],[98.84438844388444,76.46777871961788],[98.82638826388268,76.47284445142753],[98.81918819188195,76.47791018323719],[98.81558815588158,76.48297591504684],[98.81918819188195,76.49479595593601],[98.82278822788231,76.49817311047579],[98.82638826388268,76.49986168774566],[98.83358833588335,76.50661599682519],[98.8479884798848,76.51674746044449],[98.87318873188735,76.52012461498427],[99.20439204392045,76.49479595593601],[99.50679506795069,76.46946729688779],[99.78039780397808,76.47453302869741],[99.89199891998919,76.48973022412636],[100.23040230402307,76.49141880139624],[100.2628026280263,76.47284445142753],[100.3060030600306,76.46102441053836],[100.69480694806947,76.50661599682519],[100.79560795607955,76.53194465587345],[100.84960849608495,76.54038754222285],[100.88920889208896,76.53025607860354],[100.9288092880929,76.50999315136497],[101.0188101881019,76.50323884228544],[101.05841058410584,76.48635306958661],[101.04761047610475,76.47791018323719],[101.02601026010262,76.46777871961788],[101.01521015210153,76.45933583326848],[101.26361263612637,76.47115587415766],[101.29961299612995,76.48128733777696],[101.31761317613177,76.48466449231671],[101.41841418414185,76.46440156507813],[101.73881738817391,76.45089294691905],[101.77841778417786,76.43907290602988],[101.79641796417962,76.42049855606118],[101.81441814418145,76.40698993790213],[101.86121861218612,76.40023562882257],[102.25002250022499,76.38334985612374],[102.19602196021964,76.408678515172],[102.17442174421745,76.41543282425152],[102.15282152821527,76.4188099787913],[102.1060210602106,76.4188099787913],[101.9620196201962,76.43569575149013],[101.91881918819189,76.4475157923793],[101.75321753217531,76.46946729688779],[101.56241562415624,76.47284445142753],[101.5228152281523,76.48635306958661],[101.54441544415442,76.49141880139624],[101.55161551615515,76.49310737866614],[101.37521375213754,76.51337030590471],[101.03681036810372,76.52012461498427],[100.91800918009181,76.55220758311202],[100.87840878408787,76.5555847376518],[100.91080910809109,76.5640276240012],[101.0080100801008,76.5741590876205],[101.03681036810372,76.58091339670003],[101.10521105211052,76.61637351936756],[101.10161101611016,76.61975067390733],[101.09441094410943,76.62650498298686],[101.09081090810906,76.62988213752664],[101.10881108811088,76.64001360114594],[101.11601116011161,76.65183364203511],[101.11601116011161,76.66534226019417],[101.1268112681127,76.67716230108334],[101.11241112411125,76.68391661016287],[101.1268112681127,76.69404807378217],[101.1376113761138,76.70417953740147],[101.1376113761138,76.71768815556052],[101.1268112681127,76.73288535098948],[101.1520115201152,76.73288535098948],[101.18801188011884,76.73795108279913],[101.21681216812169,76.74808254641843],[101.23481234812351,76.76665689638713],[101.17361173611738,76.77678836000644],[101.04401044010439,76.77678836000644],[100.98280982809831,76.78691982362571],[100.91440914409145,76.81224848267397],[100.89640896408963,76.82575710083302],[100.87120871208714,76.83251140991254],[100.86400864008641,76.83757714172219],[100.87120871208714,76.84602002807162],[100.87840878408787,76.85108575988127],[100.8856088560886,76.85615149169092],[100.88920889208896,76.86121722350055],[100.89280892808927,76.86966010984997],[100.85680856808568,76.87303726438975],[100.87120871208714,76.90005450070785],[100.93240932409327,76.95240039607424],[100.91800918009181,76.97604047785259],[100.95760957609576,76.98786051874177],[101.05121051210511,76.99292625055142],[101.1520115201152,76.98448336420199],[101.2060120601206,76.98617194147187],[101.23481234812351,77.00643486871047],[101.23481234812351,77.01656633232977],[101.24201242012418,77.01994348686952],[101.23121231212315,77.03007495048882],[101.23481234812351,77.03851783683825],[101.23841238412388,77.04527214591778],[101.23841238412388,77.05033787772743],[101.22401224012242,77.05540360953708],[101.17721177211774,77.05878076407683],[101.16641166411665,77.0621579186166],[101.17361173611738,77.08242084585518],[101.2060120601206,77.09930661855401],[101.43281432814331,77.15840682299992],[101.58401584015843,77.22257275925546],[101.78921789217895,77.26816434554229],[102.03762037620379,77.36272467265573],[102.04482044820452,77.38129902262443],[102.07722077220774,77.39143048624373],[102.15642156421563,77.40156194986304],[102.19242192421927,77.39987337259313],[102.20682206822067,77.39649621805339],[102.2140221402214,77.39311906351361],[102.22122221222213,77.38636475443408],[102.22842228422286,77.37961044535456],[102.24282242822431,77.37623329081478],[102.27162271622717,77.38129902262443],[102.29322293222936,77.38974190897383],[102.31122311223112,77.40156194986304],[102.3328233282333,77.41169341348231],[102.40842408424083,77.43026776345104],[102.46962469624697,77.4640393088487],[102.57042570425705,77.5011880087861],[102.88722887228874,77.54677959507293],[102.91962919629196,77.55522248142236],[102.91242912429124,77.56197679050189],[102.89802898028984,77.58223971774046],[102.94842948429488,77.58899402681999],[103.19683196831971,77.6582256948852],[103.25803258032579,77.66329142669485],[103.2976329763298,77.64978280853578],[103.29403294032943,77.63965134491647],[103.31923319233192,77.6295198812972],[103.3552335523355,77.6193884176779],[103.5928359283593,77.63120845856707],[103.72963729637297,77.66835715850448],[103.7908379083791,77.6768000448539],[103.85203852038524,77.70044012663226],[104.02484024840248,77.73252309476004],[104.06084060840607,77.73590024929979],[104.17244172441724,77.72745736295039],[104.29124291242914,77.73758882656969],[104.32724327243272,77.72914594022026],[104.32364323643236,77.72239163114074],[104.27324273242732,77.70044012663226],[104.25884258842592,77.6852429312033],[104.28764287642878,77.67342289031413],[104.32364323643236,77.66835715850448],[104.67644676446764,77.70888301298169],[104.75204752047523,77.70550585844191],[104.79164791647918,77.67173431304425],[104.79164791647918,77.6582256948852],[104.80604806048063,77.63458561310685],[104.86724867248671,77.61263410859837],[104.98244982449825,77.58899402681999],[105.23445234452345,77.57041967685129],[105.33525335253353,77.54171386326328],[105.60525605256055,77.55522248142236],[105.87525875258751,77.56873109958141],[105.86805868058684,77.56028821323198],[105.85725857258575,77.55353390415246],[105.8320583205832,77.54002528599341],[105.85005850058502,77.53495955418376],[105.87885878858788,77.53158239964398],[105.89325893258933,77.52820524510423],[105.90045900459006,77.52313951329458],[105.91485914859152,77.50625374059575],[105.92205922059219,77.49949943151623],[105.91125911259115,77.47585934973787],[105.92565925659255,77.45897357703905],[105.98325983259832,77.43871064980044],[105.97965979659796,77.43533349526066],[105.9760597605976,77.42520203164139],[105.99765997659978,77.42182487710161],[106.08046080460804,77.41507056802209],[106.11646116461168,77.40662768167266],[106.17046170461708,77.40156194986304],[106.26046260462607,77.3829875998943],[106.29286292862929,77.36947898173526],[106.22086220862212,77.3559703635762],[105.79605796057962,77.372856136275],[105.75645756457567,77.36947898173526],[105.74205742057421,77.3559703635762],[105.72405724057239,77.34077316814725],[105.61605616056164,77.30193589093994],[105.56925569255691,77.29349300459054],[105.47925479254792,77.2884272727809],[105.43605436054361,77.27491865462181],[105.51885518855187,77.27323007735194],[105.53685536855369,77.26647576827241],[105.5008550085501,77.25127857284346],[105.45405454054543,77.24114710922416],[105.32085320853207,77.23101564560488],[105.29925299252994,77.22594991379523],[105.23805238052381,77.20568698655663],[105.1948519485195,77.1989326774771],[105.01125011250116,77.19217836839758],[104.8780487804878,77.16684970934932],[104.78444784447845,77.17360401842885],[104.60804608046084,77.1600954002698],[104.52524525245252,77.13645531849144],[104.48204482044821,77.12970100941192],[104.34524345243454,77.13476674122157],[104.16524165241651,77.10774950490344],[104.11844118441184,77.09592946401426],[104.14364143641438,77.08917515493474],[104.16524165241651,77.08917515493474],[104.21564215642155,77.09592946401426],[104.29844298442987,77.08917515493474],[104.77364773647736,77.12125812306249],[104.77724777247772,77.10943808217331],[104.8240482404824,77.09761804128414],[104.87084870848707,77.09086373220461],[105.06525065250656,77.08917515493474],[105.08685086850869,77.09255230947448],[105.14805148051482,77.10943808217331],[105.1948519485195,77.11112665944319],[105.34245342453426,77.08917515493474],[105.61245612456128,77.11450381398296],[105.79605796057962,77.11281523671309],[105.83925839258393,77.11619239125284],[105.88245882458824,77.12970100941192],[105.8860588605886,77.13476674122157],[105.8860588605886,77.13814389576132],[105.88965889658897,77.14320962757097],[105.8968589685897,77.14489820484084],[105.92925929259292,77.14489820484084],[105.93645936459365,77.14320962757097],[105.94005940059401,77.1415210503011],[105.94365943659437,77.13645531849144],[105.94365943659437,77.12970100941192],[105.93645936459365,77.12632385487214],[105.88965889658897,77.09592946401426],[105.85005850058502,77.08579800039496],[105.76725767257676,77.07735511404556],[105.73845738457385,77.0621579186166],[105.7636576365764,77.05371503226718],[105.77445774457743,77.04864930045753],[105.78525785257852,77.04020641410813],[105.709657096571,77.0334521050286],[105.48645486454865,77.03514068229848],[105.43605436054361,76.99968055963095],[105.45045450454506,76.98279478693212],[105.49005490054901,76.98448336420199],[105.53685536855369,76.99123767328152],[105.56925569255691,76.99123767328152],[105.61605616056164,76.98110620966224],[105.66285662856632,76.98110620966224],[105.79965799657998,76.99630340509117],[105.8968589685897,76.9946148278213],[105.94365943659437,76.99968055963095],[106.16326163261635,77.05540360953708],[106.20646206462067,77.0621579186166],[106.29286292862929,77.0621579186166],[106.390063900639,77.041894991378],[106.4656646566466,77.04020641410813],[106.49086490864909,77.0334521050286],[106.50166501665018,77.02163206413942],[106.53766537665376,77.0148777550599],[106.61326613266135,77.01318917779],[106.63126631266312,77.01150060052012],[106.66366663666639,77.00136913690082],[106.75366753667538,77.00136913690082],[106.77886778867787,77.00643486871047],[106.75006750067502,77.01656633232977],[106.7176671766718,77.0233206414093],[106.64926649266494,77.02669779594908],[106.64926649266494,77.0334521050286],[106.7320673206732,77.03007495048882],[106.75726757267574,77.0334521050286],[106.80766807668078,77.0520264549973],[106.82926829268291,77.05540360953708],[106.99126991269912,77.0334521050286],[107.01287012870131,77.02669779594908],[106.969669696697,77.01318917779],[107.00207002070022,77.0030577141707],[107.08127081270811,77.01656633232977],[107.11727117271175,77.01656633232977],[107.16047160471607,77.01318917779],[107.28647286472864,77.01994348686952],[107.2756727567276,77.0148777550599],[107.26127261272615,77.00981202325025],[107.25047250472505,77.00643486871047],[107.23967239672396,77.00643486871047],[107.25767257672578,76.99292625055142],[107.28287282872827,76.98279478693212],[107.34047340473404,76.97266332331282],[107.32607326073264,76.96590901423329],[107.34767347673477,76.95577755061399],[107.37287372873732,76.94564608699469],[107.4736747367474,76.93213746883563],[107.49887498874989,76.9236945824862],[107.49887498874989,76.9152516961368],[107.47007470074703,76.9068088097874],[107.26487264872651,76.89161161435845],[107.28647286472864,76.88316872800903],[107.33327333273331,76.87472584165963],[107.3548735487355,76.86966010984997],[107.31527315273155,76.86290580077045],[107.22527225272256,76.8578400689608],[107.18927189271892,76.84264287353184],[107.26487264872651,76.84264287353184],[107.28647286472864,76.83588856445232],[107.21447214472147,76.80718275086431],[107.18927189271892,76.80211701905466],[107.16407164071643,76.80211701905466],[107.10647106471066,76.81224848267397],[107.08127081270811,76.80887132813419],[107.06327063270635,76.79873986451491],[107.05967059670598,76.78860840089561],[107.05967059670598,76.76327974184736],[107.04527045270453,76.75483685549796],[107.01647016470167,76.74808254641843],[106.97686976869772,76.739639660069],[106.95526955269554,76.7210653101003],[106.92646926469268,76.71262242375087],[106.840068400684,76.71431100102077],[106.80406804068042,76.72275388737017],[106.7860678606786,76.72444246464005],[106.72486724867252,76.71937673283043],[106.78966789667896,76.68560518743277],[106.80046800468006,76.6737851465436],[106.78966789667896,76.66027652838451],[106.73926739267392,76.62988213752664],[106.72846728467283,76.61975067390733],[106.71406714067143,76.61299636482781],[106.68166681666816,76.6028649012085],[106.68166681666816,76.59948774666873],[106.68166681666816,76.5944220148591],[106.68166681666816,76.59104486031933],[106.67446674466748,76.58935628304945],[106.65646656466566,76.58766770577955],[106.64566645666457,76.5842905512398],[106.62406624066244,76.56740477854098],[106.61326613266135,76.55896189219155],[106.5988659886599,76.5555847376518],[106.58086580865807,76.5555847376518],[106.56286562865631,76.55727331492167],[106.54486544865449,76.56233904673132],[106.54126541265413,76.57247051035063],[106.55206552065522,76.58935628304945],[106.51246512465127,76.59948774666873],[106.45126451264514,76.60961921028803],[106.39726397263973,76.60455347847838],[106.36846368463688,76.5741590876205],[106.37926379263791,76.5741590876205],[106.37566375663755,76.5538961603819],[106.4008640086401,76.5353218104132],[106.390063900639,76.52012461498427],[106.41526415264156,76.50999315136497],[106.44766447664477,76.50323884228544],[106.7068670686707,76.49817311047579],[106.73566735667356,76.49310737866614],[106.79326793267933,76.47115587415766],[106.81846818468188,76.46946729688779],[106.84726847268473,76.47284445142753],[106.87606876068764,76.48635306958661],[106.87606876068764,76.50323884228544],[106.91206912069123,76.50830457409506],[107.0380703807038,76.50661599682519],[107.26847268472687,76.5353218104132],[107.59247592475924,76.50492741955532],[107.84447844478444,76.5353218104132],[107.88047880478808,76.54714185130237],[107.89487894878948,76.5555847376518],[107.97407974079744,76.61299636482781],[107.98487984879847,76.62312782844711],[107.9920799207992,76.64845648749534],[107.96687966879671,76.66027652838451],[107.90207902079021,76.67040799200382],[107.9380793807938,76.69911380559182],[107.94167941679416,76.71262242375087],[107.91647916479167,76.71937673283043],[107.94527945279452,76.73795108279913],[108.00288002880029,76.739639660069],[108.1108811088111,76.73288535098948],[108.22608226082264,76.739639660069],[108.31968319683199,76.72444246464005],[108.30168301683017,76.71599957829065],[108.28728287282871,76.70586811467135],[108.49968499684996,76.72613104190995],[108.68328683286836,76.71599957829065],[109.05049050490504,76.739639660069],[109.1980919809198,76.7311967737196],[109.33129331293316,76.7582140100377],[109.3960939609396,76.75990258730761],[109.40329403294032,76.75652543276783],[109.40689406894069,76.7497711236883],[109.41409414094142,76.74470539187865],[109.42489424894251,76.74132823733888],[109.43209432094324,76.739639660069],[109.60489604896048,76.739639660069],[109.61569615696158,76.73795108279913],[109.6228962289623,76.73288535098948],[109.63009630096303,76.72781961917983],[109.63729637296376,76.72275388737017],[109.75249752497524,76.71262242375087],[109.83529835298356,76.71937673283043],[109.85689856898568,76.71599957829065],[109.88209882098823,76.70586811467135],[109.95769957699576,76.70586811467135],[110.03330033300335,76.6923594965123],[110.06210062100621,76.6923594965123],[110.35730357303572,76.75652543276783],[110.56610566105661,76.76496831911726],[110.62010620106201,76.7582140100377],[110.6309063090631,76.739639660069],[110.66330663306633,76.7295081964497],[110.70650706507064,76.72613104190995],[110.82170821708218,76.73457392825935],[110.90450904509044,76.7295081964497],[110.94410944109444,76.739639660069],[110.93330933309335,76.739639660069],[110.91890918909189,76.74301681460878],[110.9081090810908,76.74808254641843],[110.89730897308976,76.75314827822805],[110.94410944109444,76.76496831911726],[111.01971019710197,76.768345473657],[111.0917109171092,76.76159116457748],[111.13851138511387,76.74639396914853],[111.11691116911169,76.74470539187865],[111.09891098910992,76.739639660069],[111.0809108091081,76.7311967737196],[111.07011070110701,76.71937673283043],[111.0917109171092,76.70924526921112],[111.1061110611106,76.6923594965123],[111.12051120511205,76.682228032893],[111.14211142111424,76.68729376470264],[111.17811178111782,76.7024909601316],[111.21051210512104,76.70924526921112],[111.55611556115565,76.68391661016287],[111.53811538115383,76.68053945562312],[111.50211502115025,76.67716230108334],[111.48771487714879,76.67040799200382],[111.50211502115025,76.66534226019417],[111.5309153091531,76.66027652838451],[111.5417154171542,76.65014506476521],[111.52011520115201,76.65014506476521],[111.49131491314915,76.64676791022546],[111.4661146611466,76.64001360114594],[111.44451444514448,76.62988213752664],[111.48771487714879,76.60961921028803],[111.6641166411664,76.62143925117721],[111.82611826118261,76.59611059212898],[112.15732157321577,76.48973022412636],[112.20052200522008,76.47115587415766],[111.87291872918729,76.36139835161529],[111.82971829718298,76.34113542437669],[111.8621186211862,76.35126688799599],[111.96291962919628,76.37828412431412],[111.99891998919992,76.37828412431412],[112.01692016920168,76.38166127885387],[112.06372063720636,76.40192420609247],[112.1789217892179,76.43063001968048],[112.2329223292233,76.45089294691905],[112.25812258122585,76.45427010145883],[112.2869228692287,76.45089294691905],[112.6721267212672,76.36308692888517],[112.71892718927188,76.33775826983691],[112.7477274772748,76.33606969256704],[112.7477274772748,76.32762680621764],[112.6577265772658,76.32256107440799],[112.71172711727121,76.30229814716938],[112.73332733327334,76.28878952901033],[112.74052740527407,76.26683802450185],[112.69012690126902,76.2533294063428],[112.6721267212672,76.24657509726325],[112.67932679326793,76.2431979427235],[112.68652686526866,76.23475505637407],[112.69372693726939,76.23137790183432],[112.66852668526684,76.22631217002467],[112.61452614526144,76.2229350154849],[112.58932589325894,76.2246235927548],[112.54612546125463,76.2431979427235],[112.52812528125281,76.24657509726325],[112.49932499324996,76.23982078818372],[112.54612546125463,76.22631217002467],[112.58932589325894,76.20604924278607],[112.63252632526326,76.19254062462701],[112.73332733327334,76.20098351097641],[112.78012780127801,76.19254062462701],[112.81972819728196,76.17058912011854],[112.85932859328597,76.1435718838004],[112.78732787327874,76.0861602566244],[112.76212762127625,76.0760287930051],[112.66492664926648,76.05407728849664],[112.59292592925931,76.05407728849664],[112.57132571325712,76.04732297941709],[112.60012600126004,76.04056867033756],[112.96372963729641,76.06589732938582],[113.01773017730176,76.08109452481474],[113.02853028530285,76.0861602566244],[113.03573035730358,76.0962917202437],[113.0429304293043,76.1148660702124],[113.02853028530285,76.12330895656183],[112.9997299973,76.13344042018113],[112.9889298892989,76.1435718838004],[113.06093060930613,76.16383481103901],[113.14733147331475,76.16214623376914],[113.23373233732337,76.14526046107031],[113.30213302133023,76.1148660702124],[113.28773287732878,76.13006326564135],[113.26253262532629,76.14526046107031],[113.25533255332556,76.15876907922936],[113.28773287732878,76.17058912011854],[113.23373233732337,76.17565485192819],[113.1329313293133,76.19929493370654],[113.02493024930249,76.20942639732584],[112.97092970929708,76.2229350154849],[112.96012960129605,76.22968932456442],[112.94572945729459,76.24995225180302],[112.93132931329313,76.26008371542233],[113.12933129331293,76.2533294063428],[113.21573215732161,76.26683802450185],[113.25893258932592,76.26683802450185],[113.2949329493295,76.24657509726325],[113.28053280532805,76.23813221091385],[113.22653226532265,76.2246235927548],[113.2409324093241,76.2144921291355],[113.24813248132483,76.21280355186559],[113.2409324093241,76.20436066551619],[113.320133201332,76.2144921291355],[113.359733597336,76.21111497459572],[113.46053460534608,76.14863761561006],[113.46413464134645,76.13344042018113],[113.44973449734499,76.1165546474823],[113.44253442534426,76.10304602932322],[113.4389343893439,76.08784883389427],[113.4389343893439,76.06420875211592],[113.45333453334536,76.04056867033756],[113.48213482134821,76.03381436125804],[113.51813518135185,76.03043720671826],[113.55053550535507,76.02030574309899],[113.51093510935112,75.99497708405073],[113.50013500135003,75.98653419770133],[113.51453514535149,75.98653419770133],[113.52893528935289,75.98315704316155],[113.54333543335434,75.9780913113519],[113.55413554135544,75.97302557954225],[113.53253532535325,75.95445122957355],[113.5037350373504,75.95107407503377],[113.47133471334712,75.95107407503377],[113.4389343893439,75.94431976595425],[113.46053460534608,75.9392540341446],[113.50013500135003,75.93587687960485],[113.52173521735216,75.9308111477952],[113.53253532535325,75.92236826144577],[113.53973539735398,75.9122367978265],[113.54693546935471,75.90210533420719],[113.56133561335616,75.89703960239754],[113.55413554135544,75.89028529331802],[113.55053550535507,75.88690813877824],[113.55053550535507,75.88353098423849],[113.55413554135544,75.87677667515894],[113.51813518135185,75.86495663426976],[113.50013500135003,75.86157947973001],[113.48213482134821,75.86157947973001],[113.48213482134821,75.85482517065049],[113.52173521735216,75.85482517065049],[113.61533615336157,75.86326805699989],[113.65133651336515,75.87677667515894],[113.6369363693637,75.88353098423849],[113.6261362613626,75.89366244785776],[113.61893618936193,75.92405683871567],[113.6369363693637,75.92405683871567],[113.70173701737019,75.9308111477952],[113.73773737737378,75.9206796841759],[113.75933759337596,75.91899110690602],[113.78093780937809,75.9392540341446],[113.809738097381,75.93587687960485],[113.83853838538386,75.92574541598555],[113.85653856538568,75.91054822055659],[113.82773827738276,75.89535102512767],[113.8889388893889,75.85482517065049],[113.87093870938708,75.82443077979258],[113.83853838538386,75.79741354347445],[113.83853838538386,75.77883919350575],[113.83853838538386,75.7737734616961],[113.82053820538209,75.75857626626717],[113.76653766537669,75.72311614359961],[113.75933759337596,75.71298467998034],[113.75933759337596,75.70623037090078],[113.75933759337596,75.69947606182126],[113.75933759337596,75.6944103300116],[113.74853748537487,75.68934459820196],[113.72693726937268,75.67752455731278],[113.71973719737201,75.67077024823325],[113.71973719737201,75.66063878461395],[113.71973719737201,75.62011293013677],[113.6909369093691,75.59309569381864],[113.5721357213572,75.56607845750054],[113.55413554135544,75.54074979845228],[113.42453424534244,75.54074979845228],[113.44613446134463,75.55763557115111],[113.53613536135362,75.59478427108854],[113.58293582935829,75.62180150740667],[113.60093600936011,75.6369987028356],[113.61893618936193,75.6555730528043],[113.26253262532629,75.69272175274173],[113.0681306813068,75.68427886639233],[113.10053100531007,75.68934459820196],[113.12933129331293,75.6944103300116],[113.13653136531366,75.71129610271043],[113.1221312213122,75.72142756632974],[112.84132841328415,75.78559350258527],[112.56052560525609,75.85144801611071],[112.3661236612366,75.85651374792036],[112.33732337323374,75.84807086157093],[112.35532355323556,75.84638228430106],[112.39132391323915,75.83625082068176],[112.42732427324273,75.832873666142],[112.44532445324455,75.82949651160223],[112.45972459724601,75.8227422025227],[112.47412474124741,75.81429931617328],[112.48132481324814,75.80585642982388],[112.49212492124923,75.78728207985517],[112.49932499324996,75.78052777077562],[112.51732517325172,75.7737734616961],[112.60012600126004,75.76701915261657],[112.64332643326435,75.7737734616961],[112.66492664926648,75.77208488442622],[112.75852758527589,75.746756225378],[112.8017280172802,75.74337907083822],[112.82332823328233,75.73831333902856],[112.83412834128342,75.73155902994904],[112.84492844928451,75.72311614359961],[112.8557285572856,75.71467325725021],[112.870128701287,75.71129610271043],[112.85932859328597,75.70454179363091],[112.86292862928633,75.70454179363091],[112.86292862928633,75.70285321636104],[112.86292862928633,75.69778748455138],[112.85212852128524,75.69609890728151],[112.82692826928269,75.68596744366221],[112.80892808928093,75.68765602093208],[112.79452794527947,75.69609890728151],[112.76932769327692,75.70285321636104],[112.7477274772748,75.69778748455138],[112.75852758527589,75.69609890728151],[112.77292772927728,75.69609890728151],[112.78732787327874,75.69103317547186],[112.80892808928093,75.68427886639233],[112.82332823328233,75.67077024823325],[112.86292862928633,75.6572616300742],[112.87732877328773,75.6471301664549],[112.87732877328773,75.6285558164862],[112.85932859328597,75.61504719832712],[112.8017280172802,75.60491573470784],[112.78732787327874,75.58802996200902],[112.81252812528129,75.55763557115111],[112.8809288092881,75.54581553026193],[113.00333003330036,75.54750410753181],[113.03573035730358,75.55256983934146],[113.02853028530285,75.56607845750054],[112.99252992529927,75.58802996200902],[112.99252992529927,75.60998146651747],[113.01773017730176,75.6184243528669],[113.20853208532088,75.65050732099468],[113.26613266132665,75.65050732099468],[113.2949329493295,75.64544158918503],[113.2949329493295,75.6285558164862],[113.30213302133023,75.62349008467655],[113.30933309333096,75.61673577559702],[113.29133291332914,75.60998146651747],[113.28053280532805,75.5998500028982],[113.26973269732696,75.58634138473911],[113.25533255332556,75.57452134384994],[113.29133291332914,75.55088126207158],[113.33813338133382,75.53568406664263],[113.53613536135362,75.50697825305463],[113.59013590135902,75.50697825305463],[113.6369363693637,75.5204868712137],[113.6369363693637,75.52386402575345],[113.66933669336697,75.50697825305463],[113.68013680136801,75.49853536670523],[113.68373683736837,75.49346963489558],[113.68733687336874,75.48333817127627],[113.69453694536946,75.47489528492687],[113.70173701737019,75.4715181303871],[113.70893708937092,75.4630752440377],[113.71973719737201,75.42423796683039],[113.71973719737201,75.40904077140144],[113.68373683736837,75.41917223502074],[113.63333633336333,75.42086081229061],[113.58653586535866,75.41748365775086],[113.55053550535507,75.40566361686169],[113.53613536135362,75.39046642143273],[113.5721357213572,75.38540068962308],[113.65493654936552,75.38371211235321],[113.66933669336697,75.36851491692425],[113.66213662136624,75.34994056695555],[113.62253622536224,75.31785759882777],[113.61533615336157,75.30941471247837],[113.61533615336157,75.30097182612894],[113.61533615336157,75.29252893977954],[113.60453604536048,75.28577463069999],[113.55053550535507,75.26888885800116],[113.36333363333637,75.18614857177693],[113.14733147331475,75.11860548098161],[113.11493114931153,75.09834255374301],[113.08613086130862,75.08652251285383],[113.01053010530109,75.06794816288513],[113.01413014130145,75.05443954472608],[112.99252992529927,75.03924234929713],[112.8809288092881,74.9936507630103],[112.51372513725136,74.92104194040533],[112.43812438124382,74.92104194040533],[112.14652146521468,74.87882750865828],[112.09252092520927,74.8568760041498],[112.09612096120964,74.82817019056179],[112.05652056520569,74.78933291335449],[112.03852038520387,74.78089002700509],[111.9809198091981,74.77751287246531],[111.95211952119524,74.77244714065566],[111.94491944919451,74.7589385224966],[111.92331923319233,74.75049563614718],[111.9161191611916,74.74542990433753],[111.91251912519124,74.738675595258],[111.93051930519306,74.73698701798813],[111.95211952119524,74.73192128617848],[111.93051930519306,74.7201012452893],[111.86931869318693,74.6998383180507],[111.81531815318152,74.6913954317013],[111.77211772117721,74.66775534992294],[111.74331743317435,74.66268961811329],[111.4661146611466,74.69814974078082],[111.40131401314017,74.6913954317013],[111.11691116911169,74.60865514547703],[111.08451084510847,74.60358941366738],[111.01611016110161,74.60358941366738],[110.98730987309875,74.5934579500481],[111.03411034110343,74.58501506369868],[111.05211052110525,74.57994933188903],[111.04131041310416,74.56812929099985],[110.95850958509584,74.54786636376127],[110.81450814508145,74.53942347741184],[110.74610746107464,74.51578339563349],[110.55890558905588,74.48032327296596],[110.50130501305011,74.47863469569606],[110.389703897039,74.49552046839489],[110.33210332103323,74.49552046839489],[110.28170281702819,74.47863469569606],[110.35370353703536,74.47188038661653],[110.35730357303572,74.46850323207678],[110.3789037890379,74.4549946139177],[110.389703897039,74.45161745937796],[110.36090360903609,74.4178459139803],[110.31410314103141,74.3992715640116],[110.21330213302133,74.37225432769347],[110.00090000900008,74.37394290496334],[109.9648996489965,74.35199140045486],[109.95049950499504,74.33679420502594],[109.91809918099182,74.33003989594638],[109.83529835298356,74.32497416413673],[109.8208982089821,74.32328558686686],[109.80649806498064,74.31653127778733],[109.79929799297992,74.31484270051746],[109.79209792097924,74.31821985505721],[109.78849788497888,74.32328558686686],[109.78129781297815,74.32835131867651],[109.69849698496984,74.31821985505721],[109.64449644496443,74.32666274140664],[109.59049590495908,74.31484270051746],[109.56169561695617,74.31315412324756],[109.64089640896412,74.2895140414692],[109.72729727297275,74.28613688692946],[109.94329943299437,74.3080883914379],[109.96849968499686,74.30471123689816],[109.97929979299795,74.29626835054873],[109.97569975699759,74.28782546419933],[109.92889928899291,74.22703668248354],[109.91449914499145,74.21183948705462],[109.88929889298896,74.19664229162566],[109.79569795697955,74.16118216895813],[109.59769597695976,74.11896773721105],[109.48249482494828,74.076753305464],[109.18009180091804,74.0581789554953],[108.99648996489964,74.01596452374821],[108.95328953289533,73.99739017377951],[108.9208892088921,73.97375009200115],[108.89928899288992,73.96530720565173],[108.82368823688239,73.95517574203242],[108.76608766087662,73.93491281479385],[108.68328683286836,73.89269838304676],[108.6256862568626,73.87243545580819],[108.60768607686077,73.86399256945876],[108.58968589685895,73.85048395129971],[108.56448564485646,73.82008956044183],[108.550085500855,73.8116466740924],[108.52488524885251,73.80658094228275],[108.50328503285033,73.80658094228275],[108.43848438484383,73.82008956044183],[108.45648456484565,73.80995809682253],[108.47808478084784,73.78462943777427],[108.49248492484924,73.7728093968851],[108.46008460084602,73.76943224234535],[108.39888398883988,73.75423504691639],[108.06768067680679,73.6360346380246],[108.07128071280715,73.64278894710412],[108.07848078480788,73.65123183345355],[108.08568085680855,73.6562975652632],[108.09288092880928,73.66305187434273],[108.03528035280351,73.67656049250178],[107.96327963279634,73.66980618342225],[107.77607776077764,73.6174602880559],[107.74727747277473,73.61239455624624],[107.6608766087661,73.62590317440532],[107.37287372873732,73.6360346380246],[107.35847358473586,73.63265748348485],[107.33327333273331,73.62421459713542],[107.31887318873191,73.62083744259567],[107.17127171271716,73.62083744259567],[107.14607146071461,73.6174602880559],[107.13167131671315,73.60732882443659],[107.1028710287103,73.57355727903894],[107.12087120871212,73.57355727903894],[107.13887138871388,73.56849154722929],[107.15327153271534,73.56173723814976],[107.17127171271716,73.55329435180036],[107.13527135271352,73.52965427002201],[106.93726937269372,73.4705540655761],[106.91206912069123,73.45535687014717],[106.89046890468904,73.44860256106762],[106.88326883268832,73.44353682925797],[106.87606876068764,73.43847109744834],[106.87246872468728,73.42833963382904],[106.83286832868328,73.37430516119278],[106.81126811268115,73.3540422339542],[106.7860678606786,73.34053361579512],[106.64926649266494,73.30676207039747],[106.5988659886599,73.30676207039747],[106.52326523265236,73.3236478430963],[106.49806498064981,73.32702499763607],[106.39366393663937,73.31351637947702],[106.23166231662316,73.3236478430963],[106.06246062460627,73.27299052499981],[106.04446044460445,73.25441617503111],[106.04806048060482,73.24428471141181],[106.05166051660518,73.22402178417323],[106.05166051660518,73.21389032055393],[106.04806048060482,73.20207027966475],[106.02646026460263,73.18180735242615],[106.00846008460087,73.15479011610805],[105.87525875258751,73.11426426163086],[105.85365853658539,73.09400133439226],[105.85005850058502,73.07542698442356],[105.85005850058502,73.05347547991508],[105.83925839258393,73.03321255267647],[105.84645846458466,73.01463820270777],[105.8320583205832,73.0028181618186],[105.7528575285753,72.97580092550047],[105.67725677256772,72.93527507102328],[105.65205652056522,72.91163498924493],[105.62685626856268,72.90150352562563],[105.54765547655478,72.88124059838705],[105.5260552605526,72.87110913476775],[105.35325353253535,72.83227185756044],[105.28845288452885,72.80018888943266],[105.06525065250656,72.78499169400374],[105.07245072450723,72.76472876676513],[105.11925119251191,72.77486023038443],[105.48285482854828,72.76810592130491],[105.51885518855187,72.77654880765431],[105.58365583655836,72.80018888943266],[105.62325623256231,72.80863177578209],[105.66285662856632,72.81200893032184],[105.67725677256772,72.81538608486161],[105.7528575285753,72.85760051660867],[105.78885788857889,72.86942055749785],[105.82485824858247,72.87786344384727],[105.92925929259292,72.88799490746658],[105.9508595085951,72.8947492165461],[105.95805958059583,72.90150352562563],[105.97245972459723,72.92514360740398],[106.00126001260014,72.94709511191246],[106.03726037260373,72.95216084372211],[106.11646116461168,72.94034080283294],[106.1380613806138,72.91163498924493],[106.23166231662316,72.8947492165461],[106.28926289262893,72.89137206200633],[106.40806408064083,72.87110913476775],[106.55926559265595,72.86773198022797],[106.61686616866172,72.8559119393388],[106.65646656466566,72.83227185756044],[106.82206822068224,72.82551754848092],[107.00567005670058,72.84409189844962],[107.1028710287103,72.8559119393388],[107.05247052470526,72.8761748665774],[106.969669696697,72.88292917565693],[106.86166861668619,72.87786344384727],[106.75726757267574,72.88799490746658],[106.62046620466208,72.89643779381598],[106.49806498064981,72.92852076194376],[106.32526325263251,72.95553799826189],[106.25326253262534,72.96735803915107],[106.22446224462243,72.97748950277034],[106.21726217262176,72.98593238911977],[106.2136621366214,73.00112958454872],[106.19566195661957,73.0213925117873],[106.18846188461885,73.03827828448613],[106.18486184861848,73.05685263445483],[106.18846188461885,73.07373840715366],[106.17766177661775,73.08218129350308],[106.17406174061739,73.09400133439226],[106.18126181261812,73.10919852982121],[106.18846188461885,73.12101857071039],[106.2028620286203,73.13621576613932],[106.21726217262176,73.14465865248874],[106.23526235262352,73.14803580702849],[106.26046260462607,73.14803580702849],[106.2820628206282,73.15310153883814],[106.30006300063002,73.16492157972732],[106.31446314463147,73.1784301978864],[106.33246332463324,73.19025023877558],[106.36126361263615,73.19362739331532],[106.77526775267756,73.14128149794897],[106.83286832868328,73.14803580702849],[106.90126901269014,73.14465865248874],[107.03447034470344,73.18180735242615],[107.32607326073264,73.1581672706478],[107.49167491674916,73.17336446607675],[107.72207722077223,73.1682987342671],[107.83367833678335,73.18349592969605],[107.96687966879671,73.23077609325276],[108.09288092880928,73.24597328868171],[108.12168121681219,73.24428471141181],[108.25128251282513,73.22064462963345],[108.31608316083162,73.22233320690336],[108.37368373683739,73.23246467052263],[108.39528395283952,73.25779332957089],[108.36648366483666,73.27636767953959],[108.24048240482404,73.27467910226972],[108.19728197281972,73.27974483407937],[108.24048240482404,73.30000776131794],[108.39168391683916,73.31689353401677],[108.53928539285391,73.31013922493725],[108.68328683286836,73.34053361579512],[108.92448924489247,73.35066507941443],[109.06849068490686,73.37430516119278],[109.21969219692198,73.38781377935186],[109.2520925209252,73.40301097478078],[109.25569255692557,73.41989674747961],[109.24129241292417,73.42833963382904],[109.21969219692198,73.43509394290857],[109.20529205292053,73.44353682925797],[109.1980919809198,73.4604226019568],[109.20889208892089,73.46886548830622],[109.22689226892271,73.4705540655761],[109.34929349293492,73.43678252017844],[109.37809378093783,73.41989674747961],[109.3960939609396,73.41314243840009],[109.41769417694178,73.41483101566996],[109.4356943569436,73.42665105655914],[109.43929439294396,73.44015967471822],[109.43209432094324,73.4519797156074],[109.41049410494105,73.45704544741704],[109.38889388893892,73.4604226019568],[109.33489334893352,73.48406268373517],[109.28809288092884,73.4992598791641],[109.2376923769238,73.50432561097375],[109.19449194491943,73.50432561097375],[109.18009180091804,73.5093913427834],[109.1836918369184,73.52627711548223],[109.18009180091804,73.5279656927521],[109.16929169291694,73.53978573364128],[109.19449194491943,73.55160577453046],[109.21969219692198,73.54485146545093],[109.24849248492484,73.53303142456176],[109.27729277292775,73.52627711548223],[109.3060930609306,73.52289996094245],[109.36369363693638,73.50601418824363],[109.450094500945,73.4705540655761],[109.51129511295113,73.45704544741704],[109.57609576095763,73.4519797156074],[109.71289712897129,73.4519797156074],[109.85689856898568,73.47224264284597],[110.01170011700117,73.5093913427834],[110.10530105301052,73.51614565186293],[110.13050130501307,73.52627711548223],[110.15570155701556,73.54654004272084],[110.14130141301416,73.55667150634011],[110.1269012690127,73.56004866087989],[110.09090090900912,73.56004866087989],[110.12330123301234,73.58031158811849],[110.16650166501665,73.58706589719802],[110.25290252902528,73.58706589719802],[110.42570425704258,73.60732882443659],[110.39690396903973,73.61408313351612],[110.42210422104222,73.63941179256437],[110.4689046890469,73.64954325618368],[110.56250562505625,73.64954325618368],[110.89730897308976,73.68669195612108],[110.92610926109262,73.70357772881991],[110.91890918909189,73.71539776970909],[110.88290882908831,73.72552923332839],[110.87570875708758,73.73397211967782],[110.88290882908831,73.74579216056699],[110.8937089370894,73.75423504691639],[110.9081090810908,73.76267793326582],[110.91890918909189,73.76605508780557],[110.87930879308794,73.76774366507544],[110.7209072090721,73.77618655142487],[110.69210692106924,73.78462943777427],[110.66330663306633,73.78800659231405],[110.28530285302855,73.70526630608978],[109.79929799297992,73.70526630608978],[109.75249752497524,73.68331480158133],[109.76329763297633,73.68331480158133],[109.77049770497706,73.67993764704156],[109.78129781297815,73.67656049250178],[109.78849788497888,73.66811760615238],[109.73809738097384,73.66136329707285],[109.67329673296734,73.67824906977168],[109.61209612096121,73.70864346062956],[109.55449554495544,73.75592362418627],[109.54009540095404,73.7643665105357],[109.53289532895332,73.774497974155],[109.52569525695259,73.79644947866348],[109.53649536495368,73.8217781377117],[109.55809558095581,73.83359817860088],[109.72009720097202,73.85386110583948],[109.8208982089821,73.87750118761784],[109.84249842498429,73.89269838304676],[109.85689856898568,73.91464988755524],[109.87129871298714,73.9382899693336],[109.8856988569886,73.96024147384207],[109.92169921699218,73.98388155562043],[109.97209972099722,74.00245590558916],[110.02250022500226,74.01427594647834],[110.29970299702995,74.01934167828799],[110.58050580505807,73.99063586469998],[110.71370713707137,73.95686431930233],[110.78930789307896,73.95517574203242],[110.81450814508145,73.9501100102228],[110.90450904509044,73.91633846482515],[110.95850958509584,73.90789557847572],[111.00891008910088,73.91296131028537],[111.05571055710556,73.92646992844442],[111.10251102511029,73.9501100102228],[111.08451084510847,73.96361862838185],[111.07371073710738,73.97206151473125],[111.06651066510665,73.98050440108068],[111.07731077310774,73.99907875104938],[111.09531095310956,74.01765310101808],[111.12771127711278,74.03116171917716],[111.160111601116,74.03791602825669],[111.53811538115383,74.05142464641574],[111.57051570515705,74.04298176006634],[111.58131581315814,74.02609598736751],[111.55971559715596,74.00921021466868],[111.52011520115201,74.00414448285903],[111.44451444514448,74.00583306012891],[111.38331383313835,73.98894728743008],[111.35091350913513,73.9872587101602],[111.28611286112863,74.00245590558916],[111.25371253712541,74.00076732831926],[111.2249122491225,73.99232444196986],[111.19971199712,73.9771272465409],[111.29691296912972,73.86905830126841],[111.43731437314375,73.81333525136228],[111.80451804518049,73.74410358329709],[112.14652146521468,73.70864346062956],[112.37332373323733,73.70526630608978],[112.4849248492485,73.72384065605851],[112.60732607326077,73.72046350151874],[112.71892718927188,73.73903785148744],[112.81972819728196,73.74748073783687],[112.92052920529204,73.77956370596465],[112.94572945729459,73.78969516958392],[112.96012960129605,73.80658094228275],[112.95652956529568,73.81333525136228],[112.94572945729459,73.84710679675993],[112.94212942129423,73.85217252856958],[112.9349293492935,73.85723826037923],[112.93132931329313,73.86230399218888],[112.9349293492935,73.87243545580819],[112.93852938529386,73.87750118761784],[112.9349293492935,73.88256691942749],[112.93132931329313,73.88594407396724],[112.91332913329137,73.89269838304676],[112.88452884528846,73.91296131028537],[112.87732877328773,73.9197156193649],[112.870128701287,73.93322423752397],[112.85212852128524,73.94335570114325],[112.83412834128342,73.9501100102228],[112.82332823328233,73.95686431930233],[112.81972819728196,73.96530720565173],[112.81972819728196,73.9788158238108],[112.81972819728196,73.99063586469998],[112.82332823328233,73.99907875104938],[112.84852848528487,73.99401301923973],[112.94572945729459,73.9399785466035],[113.11133111331117,73.89269838304676],[113.1329313293133,73.88256691942749],[113.14013140131402,73.87581261034794],[113.14733147331475,73.86568114672866],[113.15453154531548,73.85386110583948],[113.15813158131584,73.84372964222018],[113.16533165331657,73.84541821949006],[113.27693276932769,73.75423504691639],[113.31293312933133,73.74072642875734],[113.39573395733959,73.6850033788512],[113.40653406534068,73.67656049250178],[113.41733417334177,73.65798614253308],[113.4281342813428,73.63434606075472],[113.43173431734317,73.61070597897637],[113.42093420934208,73.59044305173776],[113.40293402934032,73.58031158811849],[113.37053370533704,73.57524585630884],[113.31293312933133,73.57355727903894],[113.29133291332914,73.57018012449919],[113.27333273332732,73.56004866087989],[113.22653226532265,73.52458853821236],[113.19413194131943,73.48406268373517],[113.17973179731797,73.47561979738575],[113.14373143731439,73.4604226019568],[113.1329313293133,73.45029113833752],[113.15093150931511,73.44184825198809],[113.1869318693187,73.43340536563869],[113.20493204932052,73.42665105655914],[113.21933219332192,73.41820817020974],[113.22653226532265,73.41145386113021],[113.2409324093241,73.39456808843138],[113.27333273332732,73.37599373846268],[113.30933309333096,73.36586227484338],[113.41373413734141,73.35910796576385],[113.45693456934572,73.3523536566843],[113.4929349293493,73.34053361579512],[113.49653496534967,73.33546788398547],[113.49653496534967,73.32871357490595],[113.4929349293493,73.28987629769864],[113.4929349293493,73.27974483407937],[113.49653496534967,73.27130194772994],[113.50733507335076,73.25272759776124],[113.50733507335076,73.24428471141181],[113.5037350373504,73.22402178417323],[113.4929349293493,73.20882458874428],[113.48573485734858,73.19193881604545],[113.48573485734858,73.16998731153697],[113.4929349293493,73.15479011610805],[113.51813518135185,73.12270714798026],[113.52173521735216,73.10413279801156],[113.5037350373504,73.06867267534403],[113.47133471334712,73.02983539813673],[113.45693456934572,72.9926866981993],[113.48573485734858,72.96398088461129],[113.31293312933133,72.89306063927623],[113.26253262532629,72.8846177529268],[113.16533165331657,72.8761748665774],[113.11853118531184,72.86097767114845],[113.09693096930971,72.84071474390984],[113.10413104131044,72.82214039394114],[113.12933129331293,72.80525462124231],[113.15813158131584,72.78836884854348],[113.16893168931688,72.77992596219408],[113.17253172531724,72.77148307584466],[113.17253172531724,72.7478429940663],[113.1761317613176,72.73264579863735],[113.19053190531906,72.72251433501808],[113.26253262532629,72.68874278962042],[113.36693366933673,72.66510270784207],[113.44253442534426,72.65834839876251],[113.49653496534967,72.64483978060346],[113.79533795337954,72.62288827609498],[114.09054090540906,72.6009367715865],[114.04374043740438,72.62119969882511],[113.71613716137165,72.64990551241311],[113.39213392133922,72.68029990327099],[113.23733237332374,72.73602295317713],[113.22653226532265,72.74446583952655],[113.21573215732161,72.77486023038443],[113.20493204932052,72.78330311673383],[113.19413194131943,72.78836884854348],[113.18333183331833,72.79512315762301],[113.15813158131584,72.82214039394114],[113.15813158131584,72.8373375893701],[113.17973179731797,72.84915763025927],[113.25893258932592,72.87955202111715],[113.35253352533528,72.89137206200633],[113.51813518135185,72.95216084372211],[113.54333543335434,72.97748950277034],[113.51813518135185,73.01632677997765],[113.53253532535325,73.04840974810543],[113.60093600936011,73.10413279801156],[113.59733597335975,73.12777287978992],[113.52893528935289,73.18349592969605],[113.53253532535325,73.21389032055393],[113.53613536135362,73.22064462963345],[113.54333543335434,73.23584182506241],[113.55053550535507,73.24428471141181],[113.56133561335616,73.25272759776124],[113.67293672936728,73.29325345223842],[113.69453694536946,73.31013922493725],[113.70893708937092,73.31689353401677],[113.72333723337232,73.32027068855655],[113.85293852938531,73.31351637947702],[113.92853928539284,73.33040215217585],[114.00054000540007,73.3337793067156],[114.03654036540365,73.34728792487468],[113.98973989739898,73.36079654303373],[113.84213842138422,73.34728792487468],[113.79893798937991,73.35066507941443],[113.77373773737736,73.35573081122408],[113.69453694536946,73.38612520208196],[113.64053640536406,73.39456808843138],[113.60453604536048,73.40807670659044],[113.53613536135362,73.44015967471822],[113.51453514535149,73.45704544741704],[113.48573485734858,73.49419414735445],[113.46773467734681,73.50432561097375],[113.4929349293493,73.51107992005328],[113.68373683736837,73.52121138367258],[113.91413914139144,73.53640857910153],[114.10854108541088,73.5988859380872],[114.3929439294393,73.59550878354742],[114.67374673746741,73.59213162900767],[114.73134731347312,73.60395166989684],[114.85374853748539,73.6090174017065],[115.11295112951132,73.6748719152319],[115.4117541175412,73.71033203789943],[115.87615876158765,73.69006911066086],[116.17136171361716,73.67656049250178],[116.60336603366034,73.6748719152319],[117.06057060570606,73.61577171078602],[117.44217442174426,73.58875447446789],[117.7337773377734,73.58200016538837],[117.91377913779138,73.59550878354742],[118.18018180181804,73.59213162900767],[118.450184501845,73.58875447446789],[118.79218792187925,73.55667150634011],[118.89658896588969,73.52965427002201],[118.99738997389977,73.4908169928147],[118.94698946989473,73.46548833376644],[118.88218882188823,73.4519797156074],[118.81378813788137,73.45029113833752],[118.75978759787597,73.45873402468692],[118.73818738187384,73.4604226019568],[118.70578705787057,73.44353682925797],[118.68418684186844,73.44522540652787],[118.63738637386376,73.45366829287727],[118.62658626586267,73.45704544741704],[118.61938619386194,73.4621111792267],[118.60498604986049,73.47561979738575],[118.59778597785981,73.4806855291954],[118.57618576185763,73.48575126100505],[118.489784897849,73.48406268373517],[118.46818468184682,73.47730837465562],[118.43218432184324,73.45029113833752],[118.41058410584105,73.44353682925797],[118.39258392583929,73.44015967471822],[118.3709837098371,73.43171678836879],[118.35298352983529,73.41820817020974],[118.34578345783461,73.40301097478078],[118.36018360183601,73.38781377935186],[118.3817838178382,73.37937089300243],[118.41058410584105,73.37599373846268],[118.42858428584287,73.37430516119278],[118.41778417784178,73.36079654303373],[118.37458374583747,73.34053361579512],[118.3709837098371,73.33040215217585],[118.37818378183783,73.31351637947702],[118.3709837098371,73.3050734931276],[118.36018360183601,73.29494202950829],[118.35298352983529,73.28312198861911],[118.36018360183601,73.27805625680946],[118.39258392583929,73.23753040233228],[118.40698406984069,73.23415324779253],[118.43218432184324,73.22908751598288],[118.4465844658447,73.22064462963345],[118.45378453784537,73.21389032055393],[118.4609846098461,73.20882458874428],[118.91818918189182,73.11932999344049],[119.08739087390876,73.10582137528144],[119.25299252992534,73.07373840715366],[119.36819368193682,73.0788041389633],[119.4581945819458,73.06360694353438],[119.49779497794981,73.06191836626448],[119.53379533795339,73.05516405718495],[119.56619566195661,73.03321255267647],[119.58419584195843,73.00957247089812],[119.59139591395916,73.0028181618186],[119.61299612996129,72.99775243000894],[119.65979659796596,72.99944100727882],[119.68499684996851,72.99437527546917],[119.6957969579696,72.98086665731012],[119.7209972099721,72.95891515280164],[120.12780127801278,72.91670072105458],[120.53460534605347,72.8744862893075],[120.57420574205742,72.88799490746658],[120.5418054180542,72.90150352562563],[120.19260192601928,72.92852076194376],[119.839798397984,72.95722657553176],[119.80739807398078,72.96735803915107],[119.77859778597787,72.9842438118499],[119.76419764197641,73.00788389362825],[119.78219782197823,73.01801535724755],[120.23220232202323,72.98593238911977],[120.4230042300423,72.98762096638964],[120.65700657006573,72.97748950277034],[120.82620826208262,72.94709511191246],[121.05301053010533,72.9318979164835],[121.13581135811359,72.94709511191246],[121.25101251012512,72.95047226645224],[121.38781387813879,72.97580092550047],[121.6686166861669,72.97073519369081],[121.73341733417334,72.95891515280164],[121.7478174781748,72.96060373007154],[121.79101791017911,72.97748950277034],[121.96381963819641,72.96398088461129],[121.95301953019532,72.95216084372211],[121.92781927819277,72.93865222556306],[121.92421924219241,72.92514360740398],[121.9350193501935,72.92345503013411],[122.04302043020431,72.89137206200633],[122.42462424624244,72.8744862893075],[122.53262532625325,72.83902616663997],[122.6226262262623,72.82720612575079],[122.73062730627305,72.82720612575079],[122.31302313023133,72.93358649375341],[122.30942309423097,72.94202938010281],[122.32022320223206,72.95047226645224],[122.359823598236,72.95047226645224],[122.84222842228422,72.87279771203762],[122.87102871028713,72.87279771203762],[122.9538295382954,72.89137206200633],[122.69462694626947,72.93527507102328],[122.43542435424354,72.97748950277034],[122.43542435424354,72.98086665731012],[122.43542435424354,72.9842438118499],[122.43542435424354,72.98593238911977],[122.43182431824317,72.9842438118499],[122.449824498245,72.98930954365954],[122.46782467824681,72.99099812092942],[122.5038250382504,72.99099812092942],[122.47142471424718,73.00957247089812],[122.46422464224645,73.01970393451742],[122.61542615426157,73.0315239754066],[122.75942759427596,73.00450673908847],[122.86022860228604,72.99775243000894],[122.86742867428677,72.9926866981993],[122.87102871028713,72.98086665731012],[122.8746287462875,72.96735803915107],[122.8890288902889,72.95891515280164],[123.13743137431373,72.91838929832446],[123.19143191431914,72.92176645286423],[123.21303213032132,72.92683218467388],[123.23463234632345,72.93527507102328],[123.25263252632527,72.94540653464259],[123.27063270632709,72.96060373007154],[123.28863288632886,72.96904661642094],[123.3390333903339,72.98086665731012],[123.34983349833499,72.98762096638964],[123.34263342633426,72.99944100727882],[123.31743317433177,73.0129496254379],[123.3138331383314,73.02645824359695],[123.32103321033213,73.03490112994638],[123.37143371433717,73.06529552080426],[123.38223382233821,73.0788041389633],[123.40023400234003,73.09400133439226],[123.42183421834221,73.09906706620191],[123.43983439834398,73.09062417985248],[123.44343443434434,73.08386987077296],[123.4470344703447,73.0788041389633],[123.45063450634507,73.07542698442356],[123.4578345783458,73.07373840715366],[123.46503465034652,73.07542698442356],[123.46863468634689,73.0788041389633],[123.47223472234725,73.08555844804283],[123.46503465034652,73.09737848893204],[123.46863468634689,73.10244422074166],[123.46863468634689,73.10582137528144],[123.4578345783458,73.11257568436096],[123.44343443434434,73.11426426163086],[123.41463414634148,73.11257568436096],[123.40383403834039,73.11426426163086],[123.39663396633966,73.12101857071039],[123.37503375033754,73.15479011610805],[123.40023400234003,73.17505304334662],[123.45063450634507,73.1868730842358],[123.54783547835478,73.1970045478551],[123.5118351183512,73.17674162061653],[123.54423544235442,73.16154442518757],[123.58383583835837,73.1598558479177],[123.66303663036632,73.16998731153697],[123.60903609036092,73.18349592969605],[123.61983619836201,73.19362739331532],[123.63783637836377,73.1970045478551],[123.65583655836559,73.19869312512498],[123.67023670236705,73.20375885693463],[123.65223652236523,73.2155788978238],[123.62703627036274,73.21895605236358],[123.55503555035551,73.2172674750937],[123.53703537035369,73.22064462963345],[123.52263522635229,73.22739893871298],[123.50463504635047,73.23753040233228],[123.5118351183512,73.23753040233228],[123.50103501035011,73.24090755687206],[123.49383493834938,73.24428471141181],[123.48663486634865,73.24935044322146],[123.47943479434798,73.25779332957089],[123.50103501035011,73.25779332957089],[123.50823508235084,73.26623621592029],[123.50103501035011,73.27467910226972],[123.41463414634148,73.28649914315889],[123.39663396633966,73.29325345223842],[123.3786337863379,73.3050734931276],[123.3390333903339,73.34053361579512],[123.33183331833317,73.35066507941443],[123.39663396633966,73.37937089300243],[123.41463414634148,73.39119093389161],[123.37503375033754,73.39456808843138],[123.29223292232922,73.38950235662173],[123.24903249032491,73.39287951116151],[123.21663216632169,73.40807670659044],[123.23823238232382,73.41651959293986],[123.29583295832958,73.42158532474951],[123.30663306633068,73.42665105655914],[123.30303303033031,73.43678252017844],[123.28863288632886,73.44691398379774],[123.27423274232746,73.4519797156074],[123.259832598326,73.45704544741704],[123.28143281432813,73.46379975649657],[123.30663306633068,73.46548833376644],[123.33183331833317,73.46379975649657],[123.35703357033572,73.45704544741704],[123.37143371433717,73.44691398379774],[123.38223382233821,73.43509394290857],[123.39663396633966,73.43171678836879],[123.41823418234185,73.44353682925797],[123.39663396633966,73.46548833376644],[123.36063360633608,73.48406268373517],[123.28503285032849,73.50432561097375],[123.28863288632886,73.50770276551353],[123.28863288632886,73.51107992005328],[123.29223292232922,73.51445707459305],[123.29223292232922,73.51783422913283],[123.27063270632709,73.53472000183163],[123.24543245432454,73.54654004272084],[123.26703267032673,73.56342581541966],[123.29943299432995,73.56680296995941],[123.37143371433717,73.56004866087989],[123.35703357033572,73.57186870176906],[123.3246332463325,73.58200016538837],[123.3138331383314,73.59382020627754],[123.39663396633966,73.58200016538837],[123.42543425434258,73.58031158811849],[123.41463414634148,73.59719736081729],[123.40383403834039,73.60395166989684],[123.38943389433894,73.6090174017065],[123.37503375033754,73.62083744259567],[123.38583385833857,73.63265748348485],[123.38943389433894,73.64278894710412],[123.38223382233821,73.65292041072342],[123.37143371433717,73.66305187434273],[123.5118351183512,73.68669195612108],[123.54783547835478,73.71033203789943],[123.56943569435697,73.71539776970909],[123.5910359103591,73.71708634697899],[123.61263612636128,73.71202061516934],[123.6306363063631,73.69682341974038],[123.58743587435873,73.68331480158133],[123.57303573035733,73.67656049250178],[123.58023580235806,73.6748719152319],[123.58743587435873,73.66980618342225],[123.59463594635946,73.66811760615238],[123.58743587435873,73.6562975652632],[123.5766357663577,73.64785467891377],[123.56223562235624,73.64278894710412],[123.6306363063631,73.64110036983425],[123.65583655836559,73.6360346380246],[123.6450364503645,73.62928032894507],[123.61623616236164,73.62083744259567],[123.60183601836019,73.61408313351612],[123.6450364503645,73.60226309262694],[123.69183691836918,73.60395166989684],[123.78183781837822,73.62083744259567],[123.88623886238861,73.62421459713542],[123.88983889838897,73.6360346380246],[123.94743947439474,73.62590317440532],[123.97263972639729,73.6275917516752],[123.99783997839978,73.64110036983425],[123.97623976239765,73.65460898799333],[123.94743947439474,73.65967471980295],[123.92223922239225,73.66811760615238],[123.91143911439116,73.68669195612108],[123.9078390783908,73.6934462652006],[123.90423904239043,73.70020057428016],[123.90423904239043,73.70864346062956],[123.90423904239043,73.71708634697899],[123.9078390783908,73.72552923332839],[123.93303933039334,73.74579216056699],[123.91503915039152,73.74916931510674],[123.90063900639007,73.75592362418627],[123.88983889838897,73.76267793326582],[123.87543875438757,73.7728093968851],[123.90423904239043,73.774497974155],[123.93303933039334,73.774497974155],[123.95823958239583,73.76943224234535],[123.98703987039869,73.75930077872604],[124.0158401584016,73.73566069694769],[124.03384033840342,73.72721781059826],[124.05544055440555,73.72384065605851],[124.04464044640446,73.70864346062956],[124.00504005040051,73.70188915155003],[123.99423994239942,73.69006911066086],[124.05904059040591,73.6850033788512],[124.0950409504095,73.68838053339098],[124.10944109441095,73.70695488335969],[124.13104131041314,73.71877492424886],[124.21744217442176,73.72384065605851],[124.23904239042389,73.73397211967782],[124.23544235442358,73.74916931510674],[124.23544235442358,73.75592362418627],[124.23904239042389,73.75930077872604],[124.30744307443075,73.774497974155],[124.31824318243184,73.7829408605044],[124.32904329043294,73.79982663320322],[124.33624336243366,73.80489236501288],[124.35424354243543,73.80658094228275],[124.38304383043834,73.80658094228275],[124.39744397443974,73.803203787743],[124.40464404644047,73.7930723241237],[124.3866438664387,73.79138374685382],[124.36864368643688,73.78631801504417],[124.42984429844302,73.78631801504417],[124.48744487444878,73.77787512869475],[124.49464494644945,73.774497974155],[124.51264512645128,73.76267793326582],[124.519845198452,73.75930077872604],[124.5306453064531,73.75592362418627],[124.57024570245704,73.75085789237662],[124.60984609846099,73.73734927421756],[124.63144631446318,73.73566069694769],[124.66024660246603,73.74241500602722],[124.67824678246785,73.74579216056699],[124.69624696246962,73.74241500602722],[124.70344703447034,73.73228354240791],[124.69264692646925,73.71708634697899],[124.72504725047253,73.70864346062956],[124.85464854648546,73.72384065605851],[124.84744847448474,73.71202061516934],[124.84384843848437,73.70864346062956],[124.8366483664837,73.70357772881991],[124.8510485104851,73.69851199701026],[124.86904869048692,73.6934462652006],[124.90864908649087,73.69006911066086],[124.91224912249123,73.68669195612108],[124.92304923049232,73.67149476069216],[124.93024930249305,73.6664290288825],[124.95184951849518,73.6647404516126],[124.969849698497,73.66980618342225],[124.98064980649809,73.67656049250178],[124.97704977049773,73.6664290288825],[124.99144991449913,73.64447752437403],[124.98784987849882,73.6275917516752],[125.01305013050131,73.62928032894507],[125.04185041850417,73.64110036983425],[125.05985059850599,73.65967471980295],[125.0490504905049,73.68331480158133],[125.07425074250745,73.68838053339098],[125.1030510305103,73.68669195612108],[125.12825128251285,73.68838053339098],[125.13905139051394,73.70357772881991],[125.13905139051394,73.69175768793073],[125.14625146251461,73.68331480158133],[125.15345153451534,73.6748719152319],[125.16425164251643,73.66811760615238],[125.16065160651607,73.6664290288825],[125.14985149851498,73.6562975652632],[125.16425164251643,73.65123183345355],[125.18225182251825,73.64954325618368],[125.21105211052111,73.64954325618368],[125.19665196651965,73.63434606075472],[125.17865178651789,73.62083744259567],[125.18945189451898,73.61577171078602],[125.20025200252002,73.61408313351612],[125.21465214652147,73.61577171078602],[125.21105211052111,73.61577171078602],[125.19305193051929,73.60226309262694],[125.17865178651789,73.58875447446789],[125.17145171451716,73.57693443357871],[125.17865178651789,73.55836008361001],[125.19665196651965,73.55160577453046],[125.21825218252184,73.55329435180036],[125.2326523265233,73.56680296995941],[125.2470524705247,73.54485146545093],[125.2866528665287,73.53978573364128],[125.33345333453337,73.55160577453046],[125.3658536585366,73.58200016538837],[125.36225362253623,73.57524585630884],[125.3658536585366,73.56849154722929],[125.37305373053732,73.56511439268954],[125.38385383853841,73.56004866087989],[125.39825398253981,73.55498292907023],[125.4090540905409,73.55667150634011],[125.419854198542,73.56004866087989],[125.43065430654309,73.56680296995941],[125.43425434254345,73.57018012449919],[125.43785437854382,73.57355727903894],[125.46305463054631,73.57186870176906],[125.47745477454777,73.56004866087989],[125.4738547385474,73.54822861999071],[125.45225452254522,73.54654004272084],[125.4738547385474,73.54147431091118],[125.55665556655566,73.54654004272084],[125.62865628656289,73.53472000183163],[125.65025650256501,73.52627711548223],[125.64305643056434,73.52121138367258],[125.62505625056252,73.50432561097375],[125.64305643056434,73.50432561097375],[125.64305643056434,73.49757130189423],[125.5386553865539,73.47393122011587],[125.52065520655208,73.45704544741704],[125.53145531455317,73.44015967471822],[125.57465574655748,73.42327390201939],[125.56385563855639,73.40807670659044],[125.59625596255961,73.40976528386034],[125.62145621456216,73.41989674747961],[125.62865628656289,73.43340536563869],[125.60345603456034,73.45029113833752],[125.63945639456398,73.45873402468692],[125.76185761857619,73.4705540655761],[125.78705787057874,73.4604226019568],[125.80145801458013,73.4519797156074],[125.83385833858341,73.45366829287727],[125.87705877058772,73.4604226019568],[125.869858698587,73.47393122011587],[125.85185851858517,73.47899695192552],[125.83385833858341,73.48237410646527],[125.81585815858159,73.4908169928147],[125.88425884258845,73.51107992005328],[125.90585905859058,73.51783422913283],[125.90585905859058,73.52289996094245],[125.90585905859058,73.53134284729188],[125.90945909459094,73.53640857910153],[125.92025920259204,73.53978573364128],[125.94905949059489,73.54147431091118],[125.96345963459635,73.53978573364128],[125.97425974259744,73.53303142456176],[125.97425974259744,73.52458853821236],[125.96705967059671,73.48406268373517],[125.95625956259562,73.46886548830622],[125.94185941859422,73.45704544741704],[125.91305913059131,73.43678252017844],[125.94185941859422,73.42833963382904],[125.97425974259744,73.43678252017844],[126.0030600306003,73.45366829287727],[126.02106021060212,73.47730837465562],[126.01746017460175,73.48237410646527],[126.01026010260102,73.4908169928147],[126.00666006660066,73.4992598791641],[126.01386013860139,73.5093913427834],[126.03186031860321,73.51445707459305],[126.10386103861038,73.51783422913283],[126.22626226262264,73.55498292907023],[126.26946269462695,73.56004866087989],[126.28746287462877,73.55667150634011],[126.30546305463054,73.55160577453046],[126.35226352263521,73.5279656927521],[126.40626406264062,73.51276849732318],[126.39186391863922,73.50263703370388],[126.38106381063812,73.4908169928147],[126.38106381063812,73.47730837465562],[126.39186391863922,73.46379975649657],[126.37746377463776,73.4519797156074],[126.3630636306363,73.44353682925797],[126.33066330663308,73.43002821109891],[126.31626316263163,73.44353682925797],[126.2946629466295,73.4519797156074],[126.27306273062732,73.45535687014717],[126.2550625506255,73.45029113833752],[126.2406624066241,73.44184825198809],[126.20466204662046,73.45535687014717],[126.17226172261724,73.45873402468692],[126.15066150661505,73.43678252017844],[126.17946179461796,73.43509394290857],[126.20826208262082,73.43002821109891],[126.23346233462337,73.41820817020974],[126.2550625506255,73.40301097478078],[126.23346233462337,73.38950235662173],[126.18306183061833,73.38950235662173],[126.15786157861578,73.3810594702723],[126.28026280262804,73.38612520208196],[126.38826388263885,73.41145386113021],[126.42066420664207,73.40976528386034],[126.45306453064529,73.39456808843138],[126.44586445864462,73.39119093389161],[126.4386643866439,73.38612520208196],[126.43146431464316,73.37430516119278],[126.4926649266493,73.37092800665303],[126.52146521465215,73.36417369757348],[126.55026550265507,73.34728792487468],[126.58986589865901,73.2966306067782],[126.58626586265865,73.28312198861911],[126.5610656106561,73.26961337046006],[126.55746557465574,73.25441617503111],[126.55746557465574,73.24259613414193],[126.56466564665647,73.23415324779253],[126.61146611466114,73.27467910226972],[126.65106651066515,73.29156487496854],[126.65826658266582,73.30338491585772],[126.64386643866442,73.31689353401677],[126.56466564665647,73.3810594702723],[126.61146611466114,73.37937089300243],[126.64026640266405,73.3810594702723],[126.65826658266582,73.38950235662173],[126.66186661866618,73.39794524297113],[126.65826658266582,73.40807670659044],[126.65826658266582,73.41820817020974],[126.66546665466655,73.42665105655914],[126.69426694266946,73.43678252017844],[126.73026730267304,73.44353682925797],[126.76266762667626,73.43847109744834],[126.78426784267845,73.39119093389161],[126.80586805868057,73.38274804754221],[126.82746827468276,73.38781377935186],[126.84186841868421,73.40807670659044],[126.83826838268385,73.41989674747961],[126.83106831068312,73.43171678836879],[126.83466834668349,73.44015967471822],[126.85266852668525,73.44353682925797],[126.9318693186932,73.43002821109891],[126.91026910269102,73.4519797156074],[126.90666906669065,73.45704544741704],[126.90666906669065,73.46548833376644],[126.91746917469175,73.47899695192552],[126.91746917469175,73.48406268373517],[126.92106921069211,73.49419414735445],[126.92106921069211,73.4992598791641],[126.91746917469175,73.50432561097375],[126.90306903069029,73.51107992005328],[126.88866888668889,73.51445707459305],[126.8670686706867,73.51783422913283],[126.83106831068312,73.51783422913283],[126.85986859868598,73.53303142456176],[126.89586895868962,73.53978573364128],[127.0506705067051,73.54822861999071],[127.18027180271804,73.53978573364128],[127.45027450274506,73.4908169928147],[127.51147511475114,73.49588272462435],[127.98667986679868,73.4705540655761],[127.97227972279723,73.45535687014717],[127.94707947079473,73.44691398379774],[127.92187921879218,73.44353682925797],[127.90027900279006,73.43678252017844],[128.05148051480518,73.41651959293986],[128.07668076680767,73.40638812932056],[128.0586805868059,73.39119093389161],[127.98307983079832,73.36417369757348],[127.96147961479613,73.34728792487468],[128.18468184681848,73.36079654303373],[128.20628206282066,73.35741938849395],[128.2458824588246,73.34728792487468],[128.26748267482674,73.34897650214455],[128.3142831428314,73.36079654303373],[128.33948339483396,73.36079654303373],[128.36468364683645,73.3540422339542],[128.31788317883178,73.33040215217585],[128.30348303483038,73.3152049567469],[128.3106831068311,73.29831918404807],[128.23508235082352,73.26454763865041],[128.3250832508325,73.26792479319019],[128.37188371883718,73.26117048411064],[128.40788407884082,73.24090755687206],[128.44028440284404,73.23584182506241],[128.56988569885698,73.26454763865041],[128.61308613086135,73.26623621592029],[128.65988659886602,73.26117048411064],[128.7750877508775,73.22739893871298],[128.81108811088114,73.22064462963345],[128.8938889388894,73.2172674750937],[128.8830888308883,73.2071360114744],[128.87228872288722,73.20038170239488],[128.84348843488436,73.19025023877558],[128.86868868688686,73.1868730842358],[128.93708937089372,73.19531597058523],[128.96228962289626,73.19025023877558],[128.96948969489694,73.17674162061653],[128.96588965889657,73.16492157972732],[128.95508955089554,73.15310153883814],[128.929889298893,73.1598558479177],[128.8506885068851,73.15479011610805],[128.86148861488618,73.13621576613932],[128.8650886508865,73.13452718886944],[128.8650886508865,73.12777287978992],[128.8650886508865,73.12101857071039],[128.8650886508865,73.11595283890074],[128.85788857888582,73.11088710709109],[128.84708847088473,73.10750995255131],[128.81828818288182,73.10075564347179],[128.80028800288005,73.09231275712239],[128.78228782287823,73.08218129350308],[128.77868778687787,73.0703612526139],[128.7966879668797,73.06529552080426],[128.84348843488436,73.07542698442356],[128.93348933489335,73.11257568436096],[128.98028980289803,73.12101857071039],[129.06669066690665,73.12777287978992],[129.11349113491138,73.12101857071039],[129.2250922509225,73.09737848893204],[129.35109351093513,73.06191836626448],[129.44469444694448,73.02814682086682],[129.4770947709477,72.99606385273907],[129.48069480694807,72.97917808004024],[129.44109441094412,72.94878368918233],[129.35829358293586,72.94034080283294],[129.23949239492396,72.96060373007154],[129.11349113491138,72.97242377096072],[128.92628926289262,72.98086665731012],[128.77148771487714,72.97242377096072],[128.67428674286742,72.94540653464259],[128.28908289082892,72.90825783470515],[128.23868238682388,72.88968348473645],[128.21348213482133,72.86097767114845],[128.24228242282425,72.8373375893701],[128.2278822788228,72.81876323940139],[128.13068130681307,72.78668027127361],[128.35388353883542,72.79343458035314],[128.83268832688327,72.75628588041573],[129.30789307893082,72.71744860320842],[129.35829358293586,72.70225140777947],[129.27189271892718,72.69718567596982],[129.22869228692286,72.68705421235052],[129.19269192691928,72.66847986238182],[129.19989199892,72.66847986238182],[129.22149221492214,72.66172555330229],[129.19989199892,72.65497124422276],[128.86868868688686,72.67861132600112],[128.80028800288005,72.69211994416017],[128.72828728287283,72.69718567596982],[128.6778867788678,72.709005716859],[128.6634866348664,72.7106942941289],[128.51948519485194,72.70393998504935],[128.50508505085054,72.709005716859],[128.5086850868509,72.71744860320842],[128.479884798848,72.72420291228795],[128.46188461884623,72.71576002593852],[128.4438844388444,72.6988742532397],[128.4258842588426,72.68367705781077],[128.39708397083973,72.67354559419147],[127.96147961479613,72.66172555330229],[127.90387903879042,72.66679128511194],[127.99387993879941,72.62457685336486],[128.10548105481058,72.6009367715865],[128.18828188281884,72.56716522618885],[128.21348213482133,72.5620994943792],[128.26748267482674,72.55534518529967],[128.61308613086135,72.48273636269471],[128.839888398884,72.46585058999591],[129.1170911709117,72.48104778542483],[129.25749257492578,72.464162012726],[129.27549275492754,72.44727624002718],[129.24309243092432,72.41519327189943],[129.30429304293045,72.41012754008977],[129.3690936909369,72.3966189219307],[129.4878948789488,72.35440449018364],[129.48069480694807,72.35271591291377],[129.46629466294667,72.34596160383421],[129.48069480694807,72.34427302656434],[129.49149491494916,72.33920729475469],[129.50229502295025,72.33245298567516],[129.49869498694989,72.32232152205586],[129.48429484294843,72.31725579024621],[129.36549365493659,72.31556721297633],[129.34029340293404,72.30543574935703],[129.3330933309333,72.28517282211845],[129.34029340293404,72.28348424484855],[129.35829358293586,72.27841851303893],[129.35829358293586,72.26322131760998],[129.3870938709387,72.25646700853045],[129.46629466294667,72.2497126994509],[129.50229502295025,72.2514012767208],[129.520295202952,72.2497126994509],[129.56349563495638,72.2311383494822],[129.54549545495456,72.21762973132314],[129.520295202952,72.21594115405327],[129.49149491494916,72.21762973132314],[129.46629466294667,72.21762973132314],[129.35829358293586,72.17541529957606],[129.32949329493294,72.15852952687723],[129.30429304293045,72.15346379506761],[129.28269282692827,72.1517752177977],[129.26109261092614,72.14670948598805],[129.24309243092432,72.13488944509888],[129.25749257492578,72.133200867829],[129.29349293492936,72.12813513601935],[129.30789307893082,72.12982371328923],[129.3546935469355,72.13995517690853],[129.45909459094594,72.1416437541784],[129.4878948789488,72.13488944509888],[129.4878948789488,72.12813513601935],[129.45909459094594,72.12644655874948],[129.3330933309333,72.09098643608195],[129.21789217892177,72.0859207042723],[129.19989199892,72.08760928154217],[129.1458914589146,72.10111789970122],[129.12789127891278,72.10111789970122],[129.11349113491138,72.09774074516147],[129.08469084690847,72.0859207042723],[129.0486904869049,72.07747781792287],[128.93348933489335,72.07241208611322],[128.8938889388894,72.0842321270024],[128.8146881468815,72.13657802236878],[128.7750877508775,72.14839806325796],[128.73908739087392,72.1517752177977],[128.49428494284945,72.20243253589419],[128.49428494284945,72.21931830859302],[128.51588515885157,72.2311383494822],[128.56988569885698,72.24295839037137],[128.53028530285303,72.2598441630702],[128.1486814868149,72.31725579024621],[127.86067860678605,72.42870189005848],[127.79227792277925,72.43883335367778],[127.66627666276662,72.43039046732835],[127.71667716677166,72.41012754008977],[127.73467734677348,72.3966189219307],[127.77067770677706,72.38648745831142],[127.83907839078392,72.34258444929446],[127.86427864278642,72.33245298567516],[127.84627846278465,72.32232152205586],[127.81027810278101,72.32063294478598],[127.74547745477457,72.32569867659564],[127.78147781477816,72.30712432662693],[127.91107911079109,72.29192713119798],[128.029880298803,72.26490989487985],[128.0622806228062,72.25308985399067],[128.10188101881022,72.23451550402197],[128.13428134281344,72.22776119494245],[128.1918819188192,72.22776119494245],[128.24948249482497,72.20412111316406],[128.28548285482856,72.17541529957606],[128.3106831068311,72.1517752177977],[128.31788317883178,72.14839806325796],[128.3358833588336,72.14502090871818],[128.38268382683827,72.12138082693983],[128.44028440284404,72.10111789970122],[128.4546845468455,72.09267501335182],[128.4546845468455,72.075789240653],[128.44748447484477,72.05890346795417],[128.4438844388444,72.04201769525534],[128.4546845468455,72.02344334528664],[128.46188461884623,72.02175476801673],[128.47628476284763,72.02344334528664],[128.48708487084872,72.02175476801673],[128.49428494284945,72.01500045893721],[128.50148501485018,71.99811468623838],[128.5086850868509,71.98967179988898],[128.51948519485194,71.98460606807933],[128.52668526685267,71.97954033626968],[128.54108541085412,71.9761631817299],[128.60588605886062,71.96940887265038],[128.62388623886238,71.96265456357085],[128.6310863108631,71.95590025449133],[128.6418864188642,71.94239163633225],[128.6526865268653,71.93563732725272],[128.6526865268653,71.9204401318238],[128.6634866348664,71.90693151366472],[128.67068670686706,71.89342289550567],[128.65988659886602,71.87822570007671],[128.6634866348664,71.86302850464776],[128.69228692286924,71.85120846375858],[128.74628746287465,71.8393884228694],[128.78228782287823,71.82756838198023],[128.85788857888582,71.77522248661387],[128.92628926289262,71.73807378667647],[128.94068940689408,71.73807378667647],[128.95508955089554,71.73976236394634],[128.98748987489876,71.75833671391504],[129.13869138691388,71.7836653729633],[129.18549185491855,71.80899403201153],[129.18909189091892,71.83263411378988],[129.16749167491673,71.85627419556823],[129.1170911709117,71.88835716369601],[129.09549095490956,71.90862009093462],[129.08829088290884,71.92719444090332],[129.0810908109081,71.94576879087202],[129.06669066690665,71.96603171811063],[129.03069030690307,71.99473753169863],[129.02349023490234,72.0048689953179],[129.0270902709027,72.01837761347699],[129.04149041490416,72.01837761347699],[129.05949059490598,72.01162330439746],[129.07749077490774,72.0048689953179],[129.1818918189182,71.93226017271297],[129.28629286292863,71.88329143188636],[129.30429304293045,71.86471708191766],[129.3006930069301,71.85289704102848],[129.29709297092973,71.84276557740918],[129.29349293492936,71.83263411378988],[129.29709297092973,71.81912549563083],[129.31149311493118,71.80392830020187],[129.32949329493294,71.79717399112235],[129.3690936909369,71.79041968204282],[129.54549545495456,71.72287659124751],[129.5166951669517,71.71781085943786],[129.4878948789488,71.71949943670774],[129.30429304293045,71.76171386845482],[129.289892898929,71.75833671391504],[129.24669246692469,71.74313951848609],[129.17469174691746,71.73300805486681],[129.09549095490956,71.71274512762821],[128.96588965889657,71.71612228216799],[128.90828908289086,71.70767939581856],[128.8650886508865,71.69417077765951],[128.8290882908829,71.67897358223055],[128.82188821888218,71.65871065499198],[128.84348843488436,71.62156195505455],[128.87588875888758,71.59623329600632],[128.92628926289262,71.59116756419667],[129.1170911709117,71.61480764597502],[129.1458914589146,71.61311906870515],[129.16389163891643,71.60636475962559],[129.18549185491855,71.58610183238702],[129.19989199892,71.57597036876771],[129.23229232292323,71.56077317333876],[129.25029250292505,71.55064170971949],[129.2538925389254,71.53882166883028],[129.2538925389254,71.52531305067123],[129.2358923589236,71.5084272779724],[129.2358923589236,71.49660723708323],[129.24669246692469,71.48647577346392],[129.29709297092973,71.47465573257475],[129.31509315093155,71.46621284622535],[129.32229322293222,71.45608138260604],[129.3330933309333,71.43412987809756],[129.3546935469355,71.40542406450956],[129.37989379893799,71.36489821003238],[129.39069390693908,71.34632386006368],[129.4230942309423,71.3243723555552],[129.4626946269463,71.30748658285637],[129.5058950589506,71.29397796469729],[129.62829628296282,71.27033788291894],[129.65349653496537,71.26020641929964],[129.66429664296646,71.25345211022011],[129.68949689496895,71.23487776025141],[129.70029700297005,71.22643487390201],[129.71109711097114,71.21799198755258],[129.7146971469715,71.2061719466634],[129.7146971469715,71.1960404830441],[129.71829718297187,71.1859090194248],[129.71829718297187,71.18084328761518],[129.71829718297187,71.17577755580552],[129.71829718297187,71.17071182399587],[129.72549725497254,71.16564609218622],[129.74349743497436,71.1572032058368],[129.76149761497618,71.14707174221752],[129.73629736297363,71.12680881497892],[129.70749707497077,71.10992304228009],[129.6858968589686,71.10316873320056],[129.64629646296464,71.09641442412104],[129.62469624696246,71.08628296050173],[129.86589865898662,71.10992304228009],[129.94149941499415,71.09303726958126],[129.93069930699306,71.09134869231139],[129.9270992709927,71.08459438323186],[129.92349923499233,71.07615149688243],[129.91989919899203,71.06602003326313],[129.9558995589956,71.0693971878029],[130.01710017100174,71.08290580596196],[130.04950049500496,71.08628296050173],[130.06750067500678,71.08628296050173],[130.08190081900818,71.08290580596196],[130.10710107101073,71.07277434234268],[130.13230132301322,71.05757714691373],[130.14310143101432,71.05251141510408],[130.16110161101614,71.05251141510408],[130.1539015390154,71.03224848786547],[130.16110161101614,71.0221170242462],[130.20070200702008,71.01029698335702],[130.22230222302227,70.9934112106582],[130.21510215102154,70.97990259249912],[130.19350193501936,70.96977112887981],[130.16830168301686,70.96808255160994],[130.30150301503016,70.93937673802193],[130.46710467104674,70.92586811986288],[130.47790477904778,70.9224909653231],[130.48870488704887,70.9140480789737],[130.49230492304923,70.90729376989415],[130.4959049590496,70.89209657446523],[130.4959049590496,70.88703084265558],[130.51750517505178,70.87858795630615],[130.61830618306186,70.86676791541697],[130.64710647106472,70.86845649268687],[130.67590675906763,70.8752108017664],[130.70110701107012,70.88871941992545],[130.71550715507158,70.90729376989415],[130.71550715507158,70.91911381078333],[130.71550715507158,70.93431100621228],[130.71550715507158,70.95119677891111],[130.7227072270723,70.96301681980029],[130.74430744307443,70.97483686068946],[130.76950769507698,70.97821401522924],[130.78750787507875,70.97145970614972],[130.79830798307984,70.95288535618099],[130.8019080190802,70.94275389256171],[130.8127081270813,70.93431100621228],[130.82710827108275,70.9224909653231],[130.83070830708306,70.9039166153544],[130.84150841508415,70.88027653357605],[130.8919089190892,70.84481641090849],[130.89910899108992,70.81779917459039],[130.89550895508955,70.80597913370121],[130.8811088110881,70.78571620646261],[130.8811088110881,70.77389616557343],[130.88830888308883,70.76207612468426],[130.909909099091,70.75532181560473],[131.0431104311043,70.7384360429059],[131.1331113311133,70.7384360429059],[131.2267122671227,70.75025608379508],[131.3959139591396,70.80766771097109],[131.5471154711547,70.88703084265558],[131.60831608316084,70.93937673802193],[131.72351723517238,71.06602003326313],[131.77031770317706,71.09979157866078],[131.7559175591756,71.12174308316926],[131.76311763117633,71.13525170132834],[131.78111781117815,71.14369458767774],[131.81351813518137,71.14707174221752],[131.84951849518495,71.14538316494762],[131.86751867518677,71.1487603194874],[131.8747187471875,71.16058036037657],[131.86751867518677,71.17240040126575],[131.85671856718568,71.17915471034527],[131.83871838718386,71.18253186488505],[131.82791827918282,71.18253186488505],[131.84951849518495,71.20786052393328],[131.89991899919,71.22305771936223],[131.98991989919898,71.22981202844176],[132.18792187921878,71.2163034102827],[132.17352173521738,71.2247462966321],[132.15552155521556,71.23150060571163],[131.9647196471965,71.25514068749001],[131.9431194311943,71.26696072837919],[131.95031950319503,71.29228938742742],[131.96831968319685,71.3142408919359],[132.02952029520299,71.37671825092156],[132.04032040320402,71.38853829181073],[132.04032040320402,71.39698117816016],[132.04032040320402,71.40542406450956],[132.04392043920438,71.41724410539874],[132.04752047520475,71.43075272355779],[132.06912069120693,71.45776995987592],[132.09072090720906,71.4982958143531],[132.10512105121052,71.51687016432183],[132.19872198721987,71.60298760508584],[132.24552245522455,71.66208780953173],[132.26352263522637,71.68235073677033],[132.54072540725406,71.88329143188636],[132.6307263072631,71.92550586363342],[132.71712717127173,71.94576879087202],[132.81072810728108,71.95252309995155],[132.91512915129152,71.9474573681419],[132.99432994329942,71.96603171811063],[133.06633066330664,71.97109744992028],[133.17793177931782,71.9575888317612],[133.2571325713257,71.9204401318238],[133.33993339933403,71.88666858642614],[133.35433354333543,71.83432269105975],[133.3039330393304,71.87991427734659],[133.22833228332286,71.90862009093462],[133.15633156331563,71.94070305906237],[133.10233102331023,71.95590025449133],[133.03033030330306,71.95590025449133],[132.94032940329407,71.93394874998285],[132.93312933129334,71.91199724547437],[132.86832868328685,71.9187515545539],[132.79632796327962,71.9103086682045],[132.7747277472775,71.89004574096589],[132.7747277472775,71.87991427734659],[132.78192781927822,71.86471708191766],[132.80712807128072,71.84614273194896],[132.81432814328144,71.83094553652],[132.74592745927458,71.82587980471035],[132.72792727927282,71.81912549563083],[132.71352713527136,71.8106826092814],[132.709927099271,71.79548541385248],[132.71352713527136,71.77691106388374],[132.72792727927282,71.76846817753434],[132.90432904329043,71.73300805486681],[132.98352983529838,71.71949943670774],[133.0159301593016,71.68572789131008],[133.069930699307,71.64857919137268],[133.0807308073081,71.64182488229315],[133.08793087930883,71.63000484140397],[133.0951309513095,71.6164962232449],[133.09873098730986,71.60636475962559],[133.11313113131132,71.59792187327619],[133.15273152731527,71.57934752330749],[133.42633426334265,71.4898529280037],[133.64953649536494,71.43581845536744],[133.80433804338043,71.42399841447826],[133.90873908739087,71.39866975543003],[134.1679416794168,71.36996394184203],[134.48834488344886,71.37671825092156],[134.56034560345603,71.40204690996978],[134.58554585545858,71.40542406450956],[134.61074610746107,71.40373548723969],[134.74034740347406,71.36827536457213],[134.74394743947443,71.3615210554926],[134.7367473674737,71.34632386006368],[134.70794707947078,71.32774951009495],[134.6719467194672,71.3142408919359],[134.65034650346507,71.29735511923707],[134.66834668346684,71.26358357383941],[134.67554675546756,71.28553507834789],[134.69714697146975,71.30917516012624],[134.72234722347224,71.32943808736485],[134.74394743947443,71.3429467055239],[134.76914769147692,71.36658678730225],[134.75114751147515,71.3817839827312],[134.71874718747188,71.39698117816016],[134.69714697146975,71.42062125993851],[134.75834758347582,71.42399841447826],[134.779947799478,71.42906414628791],[134.779947799478,71.4611471144157],[134.80874808748086,71.48141004165427],[134.85194851948523,71.49323008254345],[134.89154891548918,71.49660723708323],[134.9347493474935,71.50673870070253],[135.0319503195032,71.53882166883028],[135.07515075150752,71.53544451429053],[135.10395103951043,71.51687016432183],[135.11835118351183,71.51518158705193],[135.14355143551438,71.52531305067123],[135.17235172351724,71.54388740063993],[135.1867518675187,71.54895313244958],[135.20835208352082,71.55233028698936],[135.23715237152373,71.55064170971949],[135.319953199532,71.53037878248088],[135.42435424354244,71.53037878248088],[135.40995409954098,71.54726455517971],[135.38835388353885,71.55570744152911],[135.34155341553418,71.56583890514841],[135.37755377553776,71.58272467784724],[135.42075420754207,71.59285614146654],[135.5467554675547,71.60467618235572],[135.62235622356224,71.62325053232442],[135.9859598595986,71.6350705732136],[136.3027630276303,71.58272467784724],[136.44316443164433,71.57597036876771],[136.5151651516515,71.55908459606889],[136.51876518765187,71.51687016432183],[136.5115651156512,71.51687016432183],[136.54036540365405,71.51518158705193],[136.5547655476555,71.5084272779724],[136.55836558365587,71.4982958143531],[136.54756547565478,71.47634430984462],[136.57276572765727,71.47803288711452],[136.58716587165873,71.48816435073383],[136.60156601566018,71.50167296889288],[136.61596615966158,71.51349300978205],[136.63756637566377,71.52362447340136],[136.66276662766631,71.528690205211],[136.6879668796688,71.53206735975076],[136.71676716767166,71.53037878248088],[136.77436774367743,71.52362447340136],[136.79956799567998,71.51518158705193],[136.82836828368283,71.50336154616275],[136.88956889568897,71.46283569168557],[136.91836918369182,71.45439280533617],[136.98316983169832,71.44763849625662],[137.01197011970123,71.43919560990722],[137.0407704077041,71.42737556901804],[137.06597065970664,71.42062125993851],[137.20997209972103,71.40711264177943],[137.2675726757268,71.39191544635051],[137.27477274772747,71.38516113727096],[137.26397263972643,71.37671825092156],[137.23877238772388,71.36658678730225],[137.28557285572856,71.35983247822273],[137.35397353973542,71.37334109638178],[137.389973899739,71.35814390095285],[137.40437404374046,71.3530781691432],[137.44757447574477,71.34801243733355],[137.49077490774908,71.34632386006368],[137.48357483574836,71.33788097371425],[137.47637476374763,71.33112666463472],[137.45117451174514,71.3226837782853],[137.4439744397444,71.31255231466602],[137.4547745477455,71.3041094283166],[137.47277472774726,71.29904369650694],[137.48357483574836,71.29904369650694],[137.4655746557466,71.28722365561777],[137.4259742597426,71.29228938742742],[137.40437404374046,71.28553507834789],[137.43317433174332,71.27540361472859],[137.52677526775267,71.25682926475989],[137.5339753397534,71.24500922387071],[137.55917559175595,71.24163206933093],[137.59157591575917,71.24163206933093],[137.6167761677617,71.24669780114058],[137.70317703177034,71.28553507834789],[137.69957699576997,71.27371503745871],[137.69237692376925,71.26527215110929],[137.68157681576815,71.25682926475989],[137.67077670776706,71.25007495568036],[137.68517685176852,71.24500922387071],[137.70317703177034,71.24500922387071],[137.7211772117721,71.25007495568036],[137.73917739177392,71.25007495568036],[137.7211772117721,71.23150060571163],[137.69237692376925,71.22136914209236],[137.65997659976603,71.2163034102827],[137.6311763117631,71.2163034102827],[137.61317613176135,71.21799198755258],[137.5771757717577,71.22812345117188],[137.5627756277563,71.22981202844176],[137.5339753397534,71.2247462966321],[137.52677526775267,71.21968056482245],[137.5339753397534,71.21292625574293],[137.5627756277563,71.20448336939353],[137.62397623976238,71.19941763758388],[137.74277742777429,71.17071182399587],[137.76797767977683,71.1673346694561],[137.76437764377647,71.14200601040787],[137.78237782377823,71.12680881497892],[137.8147781477815,71.12005450589939],[137.84357843578437,71.12005450589939],[137.85797857978582,71.12343166043914],[137.86877868778691,71.12849739224879],[137.87597875978759,71.13525170132834],[137.89037890378904,71.14369458767774],[137.90837908379086,71.1487603194874],[137.929979299793,71.1487603194874],[137.9731797317973,71.14031743313797],[137.96597965979663,71.13862885586809],[137.94437944379445,71.12680881497892],[137.97677976779767,71.11836592862952],[138.00558005580058,71.12343166043914],[138.0379803798038,71.13187454678857],[138.07398073980738,71.13356312405844],[138.06318063180635,71.15044889675727],[138.04518045180453,71.16226893764645],[138.0271802718027,71.17071182399587],[138.00558005580058,71.17408897853562],[138.01998019980203,71.18253186488505],[137.9947799477995,71.19097475123445],[137.96597965979663,71.19435190577423],[137.91197911979123,71.1960404830441],[137.91917919179195,71.20279479212363],[137.90117901179013,71.20110621485375],[137.84357843578437,71.18253186488505],[137.85437854378546,71.1960404830441],[137.84717847178473,71.20448336939353],[137.8291782917829,71.20786052393328],[137.79317793177933,71.21123767847305],[137.7751777517775,71.2146148330128],[137.75717757177574,71.22136914209236],[137.73917739177392,71.22981202844176],[137.77157771577714,71.23656633752128],[137.80037800378005,71.24669780114058],[137.83277832778327,71.25345211022011],[137.969579695797,71.2247462966321],[138.0667806678067,71.2247462966321],[138.08838088380884,71.22981202844176],[138.0919809198092,71.23487776025141],[138.09558095580957,71.24332064660084],[138.1027810278103,71.24838637841046],[138.14958149581497,71.24163206933093],[138.18558185581855,71.24500922387071],[138.21438214382147,71.25682926475989],[138.23958239582396,71.27709219199846],[138.2107821078211,71.28722365561777],[137.99117991179912,71.29228938742742],[137.9947799477995,71.30242085104672],[138.14958149581497,71.3328152419046],[138.17118171181716,71.33112666463472],[138.2107821078211,71.32099520101542],[138.26838268382687,71.31255231466602],[138.32238322383228,71.31086373739612],[138.36198361983622,71.31930662374555],[138.36198361983622,71.32606093282507],[138.34758347583477,71.32606093282507],[138.3187831878319,71.33619239644437],[138.30438304383046,71.33956955098412],[138.00918009180094,71.33956955098412],[137.98757987579876,71.3429467055239],[137.95157951579517,71.35983247822273],[137.929979299793,71.35983247822273],[137.93717937179372,71.36658678730225],[137.94437944379445,71.3716525191119],[137.96597965979663,71.38009540546133],[137.94437944379445,71.38516113727096],[137.92637926379263,71.38009540546133],[137.90837908379086,71.3716525191119],[137.88677886778868,71.36658678730225],[137.87237872378722,71.36996394184203],[137.84357843578437,71.38516113727096],[137.8291782917829,71.38684971454086],[137.8291782917829,71.39360402362038],[137.86877868778691,71.39698117816016],[137.9047790477905,71.41217837358909],[137.96597965979663,71.44932707352652],[138.01638016380167,71.47296715530487],[138.0271802718027,71.48478719619405],[138.03078030780307,71.49323008254345],[138.03078030780307,71.51518158705193],[138.03438034380343,71.52531305067123],[138.0379803798038,71.55908459606889],[138.09918099180993,71.58103610057736],[138.21798217982183,71.59961045054607],[138.4987849878499,71.61311906870515],[138.44838448384485,71.60298760508584],[138.42318423184236,71.59454471873642],[138.40518405184054,71.57934752330749],[138.40158401584017,71.56752748241831],[138.41238412384126,71.55908459606889],[138.43758437584376,71.53882166883028],[138.57798577985778,71.55233028698936],[138.58878588785888,71.56583890514841],[138.5959859598596,71.58272467784724],[138.58878588785888,71.59454471873642],[138.57438574385748,71.60129902781594],[138.55638556385566,71.60636475962559],[138.67878678786786,71.64351345956302],[138.7147871478715,71.64857919137268],[138.75438754387545,71.64351345956302],[138.87678876788772,71.59961045054607],[138.91638916389167,71.59285614146654],[139.00999009990102,71.58610183238702],[139.0459904599046,71.56921605968819],[139.0567905679057,71.55233028698936],[139.07839078390788,71.51180443251218],[139.09639096390964,71.49660723708323],[139.0891908919089,71.4898529280037],[139.10359103591037,71.47803288711452],[139.13959139591395,71.45945853714582],[139.15759157591577,71.44932707352652],[139.11799117991183,71.42906414628791],[139.1359913599136,71.42737556901804],[139.19359193591936,71.41555552812886],[139.30159301593017,71.41555552812886],[139.34479344793448,71.42230983720839],[139.3627936279363,71.42906414628791],[139.36999369993703,71.43581845536744],[139.3735937359374,71.45101565079639],[139.38079380793812,71.45945853714582],[139.42039420394207,71.48816435073383],[139.4419944199442,71.49491865981335],[139.5859958599586,71.49491865981335],[139.62199621996223,71.48816435073383],[139.6831968319683,71.46452426895544],[139.71919719197194,71.45776995987592],[139.76239762397626,71.47465573257475],[139.8379983799838,71.49154150527357],[139.8559985599856,71.49323008254345],[139.88839888398883,71.48478719619405],[139.95319953199532,71.48478719619405],[139.9891998919989,71.47803288711452],[140,71.47465573257475],[140.01800018000182,71.471278578035],[140.03240032400328,71.471278578035],[140.03600036000358,71.48478719619405],[140.02520025200255,71.49154150527357],[139.97839978399787,71.50336154616275],[139.98559985599854,71.5084272779724],[139.99639996399964,71.52024731886158],[140,71.52531305067123],[139.83439834398342,71.58947898692676],[139.81639816398166,71.60298760508584],[139.76239762397626,71.65195634591242],[139.74079740797407,71.6654649640715],[139.73359733597334,71.67221927315103],[139.73359733597334,71.69079362311973],[139.71919719197194,71.71949943670774],[139.71199711997122,71.75664813664517],[139.69759697596976,71.76509102299457],[139.70839708397085,71.77015675480422],[139.70839708397085,71.77691106388374],[139.70119701197012,71.78535395023317],[139.69039690396903,71.7921082593127],[139.7047970479705,71.802239722932],[139.72999729997304,71.81743691836093],[139.73359733597334,71.82925695925013],[139.74439744397444,71.84445415467906],[139.76599765997662,71.85458561829836],[139.7911979119791,71.85965135010801],[139.80919809198093,71.86133992737788],[139.78039780397808,71.86978281372731],[139.71199711997122,71.87147139099719],[139.6831968319683,71.88498000915624],[139.66519665196654,71.90017720458519],[139.64719647196472,71.9103086682045],[139.60759607596077,71.92550586363342],[139.57519575195755,71.93226017271297],[139.33759337593375,71.94239163633225],[139.33759337593375,71.9491459454118],[139.4275942759428,71.96265456357085],[139.58239582395822,71.9491459454118],[139.63279632796326,71.95421167722145],[139.6831968319683,71.96940887265038],[139.71199711997122,71.99811468623838],[139.71199711997122,72.01668903620711],[139.7047970479705,72.03695196344569],[139.70119701197012,72.05890346795417],[139.71559715597158,72.08254354973252],[139.83079830798312,72.13826659963865],[139.84879848798488,72.15852952687723],[139.87399873998743,72.17879245411584],[139.9315993159932,72.17372672230618],[140.0288002880029,72.14839806325796],[140.06840068400686,72.14839806325796],[140.13320133201336,72.15346379506761],[140.19440194401943,72.16697241322666],[140.21960219602198,72.18554676319536],[140.1980019800198,72.21425257678337],[140.1440014400144,72.22438404040267],[139.85239852398524,72.22776119494245],[139.5607956079561,72.2328269267521],[139.51759517595178,72.21931830859302],[139.43119431194316,72.18216960865561],[139.45999459994601,72.17203814503631],[139.55719557195573,72.17541529957606],[139.53199531995324,72.16359525868688],[139.3879938799388,72.16190668141701],[139.33039330393308,72.16866099049653],[139.27639276392767,72.18048103138571],[139.25839258392585,72.17879245411584],[139.26199261992622,72.16190668141701],[139.27999279992804,72.1517752177977],[139.3339933399334,72.14839806325796],[139.34839348393484,72.13488944509888],[139.29439294392944,72.13657802236878],[139.2439924399244,72.14502090871818],[139.189991899919,72.16190668141701],[139.13239132391323,72.19905538135444],[139.09639096390964,72.22607261767254],[139.0891908919089,72.23620408129185],[139.09279092790928,72.24802412218102],[139.11799117991183,72.26490989487985],[139.1215912159122,72.27504135849915],[139.1359913599136,72.30374717208716],[139.16839168391687,72.32738725386551],[139.2331923319233,72.36115879926317],[139.2871928719287,72.3966189219307],[139.30519305193053,72.40168465374035],[139.31239312393126,72.40506180828012],[139.32319323193235,72.41857042643917],[139.33039330393308,72.42194758097895],[139.3411934119341,72.4253247355187],[139.36999369993703,72.4253247355187],[139.38439384393843,72.42870189005848],[139.49959499594996,72.48780209450436],[139.54279542795427,72.49793355812366],[139.84519845198452,72.50299928993331],[140.07200072000722,72.47935920815496],[140.34560345603455,72.48949067177426],[140.57600576005763,72.49624498085379],[140.79560795607955,72.53170510352132],[140.87840878408787,72.53845941260084],[140.90360903609036,72.55534518529967],[140.93240932409327,72.56716522618885],[141.06921069210694,72.57729668980815],[141.11241112411125,72.58742815342745],[140.9972099720997,72.58742815342745],[140.9540095400954,72.59418246250698],[140.93240932409327,72.6009367715865],[140.95040950409503,72.60769108066603],[140.9648096480965,72.61613396701546],[140.98640986409868,72.63470831698416],[140.97920979209795,72.64146262606369],[141.01161011610117,72.66847986238182],[141.01161011610117,72.6904313668903],[140.99000990009904,72.709005716859],[140.9540095400954,72.72420291228795],[140.90720907209072,72.7292686440976],[140.8856088560886,72.73433437590725],[140.84960849608495,72.75966303495548],[140.6660066600666,72.80863177578209],[140.6588065880659,72.81200893032184],[140.6588065880659,72.81707466213149],[140.6588065880659,72.82889470302067],[140.6588065880659,72.83396043483032],[140.64080640806407,72.84240332117975],[140.59760597605975,72.85928909387857],[140.58320583205835,72.86773198022797],[140.579605796058,72.8846177529268],[140.5940059400594,72.89306063927623],[140.72720727207275,72.89812637108588],[140.78120781207815,72.88968348473645],[140.83520835208355,72.89137206200633],[140.88920889208896,72.88124059838705],[141.0080100801008,72.87955202111715],[141.06561065610657,72.86942055749785],[141.27441274412746,72.8660434029581],[141.389613896139,72.84409189844962],[141.41121411214112,72.83396043483032],[141.46161461614616,72.80525462124231],[141.55161551615515,72.77486023038443],[141.6560165601656,72.766417344035],[141.73161731617319,72.7478429940663],[141.98001980019802,72.72420291228795],[142.23202232022322,72.70225140777947],[142.5416254162542,72.71744860320842],[142.7072270722707,72.71238287139877],[143.0348303483035,72.7005628305096],[143.09243092430927,72.68874278962042],[143.48843488434886,72.7005628305096],[143.6036360363604,72.68874278962042],[143.70803708037084,72.66679128511194],[144.07164071640716,72.64821693514324],[144.3056430564306,72.64146262606369],[144.56844568445683,72.60937965793593],[144.83844838448385,72.59587103977685],[145.12645126451264,72.57560811253828],[145.41085410854112,72.55534518529967],[145.71325713257136,72.49624498085379],[145.95805958059583,72.47260489907544],[146.12366123661235,72.46922774453566],[146.27126271262716,72.44052193094765],[146.4116641166412,72.4270133127886],[146.48366483664836,72.40168465374035],[146.80046800468006,72.35440449018364],[146.85446854468546,72.35440449018364],[146.84366843668437,72.34596160383421],[146.83286832868328,72.34089587202459],[146.840068400684,72.34596160383421],[146.79326793267933,72.33076440840529],[146.45126451264514,72.34089587202459],[146.10926109261095,72.35271591291377],[146.0588605886059,72.34427302656434],[145.6880568805688,72.36453595380294],[145.46845468454688,72.35947022199329],[145.3712537125371,72.34596160383421],[145.35325353253535,72.34596160383421],[145.33165331653316,72.35440449018364],[145.31725317253176,72.36284737653304],[145.29205292052922,72.38648745831142],[145.27765277652776,72.39493034466082],[145.25245252452527,72.40168465374035],[145.2056520565206,72.40168465374035],[145.18045180451804,72.40843896281987],[145.18765187651877,72.41519327189943],[145.16965169651695,72.42025900370905],[145.14805148051482,72.42025900370905],[145.12645126451264,72.41519327189943],[145.10845108451088,72.40506180828012],[145.09405094050942,72.39999607647047],[145.07245072450723,72.40675038555],[145.03645036450365,72.4270133127886],[144.98964989649897,72.435456199138],[144.9428494284943,72.43883335367778],[144.89604896048962,72.43376762186813],[144.84924849248495,72.42363615824883],[144.70884708847092,72.37466741742222],[144.680046800468,72.35778164472342],[144.66564665646655,72.34596160383421],[144.66204662046624,72.33751871748481],[144.6260462604626,72.31725579024621],[144.5468454684547,72.25815558580032],[144.5360453604536,72.2412698131015],[144.52164521645216,72.22438404040267],[144.4820448204482,72.23620408129185],[144.42084420844208,72.27166420395938],[144.3848438484385,72.28517282211845],[144.34164341643418,72.29361570846785],[144.29844298442987,72.29699286300763],[144.26244262442623,72.29192713119798],[144.24444244442446,72.28348424484855],[144.22644226442264,72.27335278122928],[144.20844208442088,72.26828704941963],[144.1868418684187,72.2699756266895],[144.16884168841688,72.27335278122928],[144.10404104041044,72.27841851303893],[144.17244172441724,72.24802412218102],[144.19404194041942,72.24464696764127],[144.19404194041942,72.22776119494245],[144.2120421204212,72.22100688586289],[144.23364233642337,72.21931830859302],[144.25524255242556,72.21256399951349],[144.28044280442805,72.20412111316406],[144.4172441724417,72.17541529957606],[144.47844478444784,72.17034956776644],[144.6008460084601,72.17541529957606],[144.62244622446224,72.18048103138571],[144.67284672846728,72.21256399951349],[144.69804698046983,72.2226954631328],[144.75204752047523,72.2328269267521],[144.95004950049503,72.24295839037137],[145.06885068850687,72.26490989487985],[145.39645396453966,72.27335278122928],[145.70245702457026,72.28179566757868],[146.01206012060123,72.29192713119798],[146.26406264062643,72.29530428573776],[146.59526595265953,72.30374717208716],[146.930069300693,72.31219005843656],[146.8940689406894,72.27166420395938],[146.77526775267756,72.22776119494245],[146.72846728467283,72.19905538135444],[146.6780667806678,72.16190668141701],[146.49446494464945,72.06565777703369],[146.24246242462425,71.9862946453492],[145.9724597245973,71.85627419556823],[145.940059400594,71.85796277283814],[145.940059400594,71.88835716369601],[145.9508595085951,71.90017720458519],[145.97965979659796,71.91706297728402],[145.9940599405994,71.92550586363342],[145.99765997659978,71.9390144817925],[145.9940599405994,71.95083452268167],[145.98685986859869,71.95927740903107],[145.98685986859869,71.96603171811063],[145.99765997659978,71.9761631817299],[146.00126001260014,71.98291749080946],[146.00126001260014,71.99136037715886],[146.0048600486005,72.0048689953179],[146.00126001260014,72.01837761347699],[145.9940599405994,72.02513192255651],[145.9940599405994,72.03019765436616],[146.00846008460087,72.03864054071556],[146.03366033660336,72.04370627252521],[146.08046080460804,72.03864054071556],[146.1056610566106,72.03864054071556],[146.13086130861308,72.04539484979512],[146.19566195661957,72.07241208611322],[146.2388623886239,72.08085497246265],[146.26046260462607,72.08760928154217],[146.27126271262716,72.104495054241],[146.2820628206282,72.1129379405904],[146.3468634686347,72.12813513601935],[146.3252632526325,72.1416437541784],[146.2388623886239,72.15515237233748],[146.23526235262352,72.17203814503631],[146.20646206462067,72.17541529957606],[146.1488614886149,72.16866099049653],[146.08046080460804,72.17034956776644],[146.0588605886059,72.16528383595679],[146.04806048060482,72.15684094960736],[146.04806048060482,72.15008664052783],[146.05526055260555,72.1433323314483],[146.0588605886059,72.12982371328923],[146.06246062460627,72.12644655874948],[146.06606066060664,72.1230694042097],[146.0588605886059,72.11800367240005],[146.00846008460087,72.09774074516147],[145.9940599405994,72.09098643608195],[145.99045990459905,72.08254354973252],[145.98325983259832,72.06903493157347],[145.96885968859692,72.07072350884334],[145.9508595085951,72.08254354973252],[145.93645936459365,72.10111789970122],[145.95445954459547,72.1129379405904],[145.9616596165962,72.12644655874948],[145.95805958059583,72.1416437541784],[145.940059400594,72.15515237233748],[145.91125911259115,72.16021810414713],[145.8752587525875,72.15852952687723],[145.85005850058502,72.16190668141701],[145.83925839258393,72.18216960865561],[145.85365853658539,72.19061249500501],[145.88965889658897,72.19567822681466],[145.9076590765908,72.20412111316406],[145.87885878858788,72.21931830859302],[145.8428584285843,72.22944977221232],[145.69165691656917,72.25646700853045],[145.65205652056522,72.25477843126055],[145.61245612456128,72.24464696764127],[145.70245702457026,72.21762973132314],[145.71685716857172,72.21762973132314],[145.73125731257312,72.2226954631328],[145.7420574205742,72.22100688586289],[145.74925749257494,72.20918684497371],[145.74925749257494,72.20580969043397],[145.73845738457385,72.19061249500501],[145.7240572405724,72.16190668141701],[145.6340563405634,72.09267501335182],[145.63045630456304,72.09098643608195],[145.62685626856268,72.09267501335182],[145.6232562325623,72.09267501335182],[145.619656196562,72.0859207042723],[145.619656196562,72.08085497246265],[145.6232562325623,72.07747781792287],[145.63045630456304,72.07747781792287],[145.6340563405634,72.07241208611322],[145.64125641256413,72.06059204522404],[145.65205652056522,72.04877200433486],[145.67365673656735,72.03357480890591],[145.69525695256954,72.03188623163604],[145.74925749257494,72.03864054071556],[145.79245792457925,72.02850907709629],[145.79965799657998,72.00655757258781],[145.80325803258035,71.98291749080946],[145.8176581765818,71.96265456357085],[145.81405814058144,71.95252309995155],[145.81045810458107,71.93563732725272],[145.8068580685807,71.9288830181732],[145.7888578885789,71.9204401318238],[145.77085770857713,71.91368582274424],[145.74925749257494,71.9103086682045],[145.5656556565566,71.90524293639484],[145.3280532805328,71.87147139099719],[145.30645306453067,71.87822570007671],[145.25605256052563,71.90693151366472],[145.16245162451628,71.93394874998285],[145.07965079650796,71.94070305906237],[145.0220502205022,71.95421167722145],[144.98964989649897,71.97447460446003],[144.97164971649715,71.97954033626968],[144.96084960849612,71.96603171811063],[144.96084960849612,71.95421167722145],[144.95724957249575,71.94408021360215],[144.95724957249575,71.93394874998285],[144.96084960849612,71.92212870909367],[144.97524975249752,71.91368582274424],[145.01125011250116,71.90017720458519],[145.02565025650256,71.89173431823579],[145.0616506165062,71.87991427734659],[145.18765187651877,71.85627419556823],[145.21645216452168,71.84276557740918],[145.1948519485195,71.8123711865513],[145.1516515165152,71.80392830020187],[145.10125101251015,71.80055114566213],[145.02925029250292,71.77015675480422],[144.92844928449284,71.7819767956934],[144.88524885248853,71.7718453320741],[144.9212492124921,71.74313951848609],[144.89964899649,71.73300805486681],[144.90684906849071,71.69923650946916],[144.89244892448926,71.6755964276908],[144.9212492124921,71.69248220038963],[144.9536495364954,71.70092508673903],[144.9860498604986,71.70092508673903],[145.01125011250116,71.68235073677033],[145.00405004050043,71.6755964276908],[145.0220502205022,71.6755964276908],[145.05805058050584,71.69248220038963],[145.07965079650796,71.69585935492938],[145.1048510485105,71.69248220038963],[145.15525155251555,71.67728500496068],[145.18045180451804,71.6755964276908],[145.2056520565206,71.67897358223055],[145.22725227252272,71.6840393140402],[145.25245252452527,71.68741646857998],[145.27765277652776,71.68235073677033],[145.28125281252812,71.67897358223055],[145.29205292052922,71.66715354134138],[145.29925299252994,71.6637763868016],[145.31005310053104,71.66039923226185],[145.32085320853207,71.66039923226185],[145.33165331653316,71.66039923226185],[145.34245342453426,71.6637763868016],[145.56925569255696,71.74145094121621],[145.73125731257312,71.72963090032704],[145.82845828458284,71.74820525029574],[145.92205922059225,71.77691106388374],[145.9508595085951,71.7819767956934],[146.00846008460087,71.7819767956934],[146.03726037260373,71.78704252750305],[146.09846098460986,71.80899403201153],[146.15606156061563,71.8208140729007],[146.2568625686257,71.87991427734659],[146.33246332463324,71.89848862731532],[146.35406354063542,71.90186578185507],[146.36486364863651,71.90524293639484],[146.37206372063724,71.91537440001414],[146.37566375663755,71.9288830181732],[146.38286382863828,71.9390144817925],[146.4008640086401,71.9491459454118],[146.46926469264696,71.96940887265038],[146.5880658806588,72.04201769525534],[146.62046620466208,72.07410066338312],[146.63126631266312,72.07916639519277],[146.67086670866712,72.08760928154217],[147.1028710287103,72.30543574935703],[147.14967149671497,72.32063294478598],[147.19647196471965,72.32907583113538],[147.24327243272432,72.33245298567516],[147.329673296733,72.32401009932576],[147.4340743407434,72.33920729475469],[147.66447664476647,72.32569867659564],[147.74727747277473,72.33920729475469],[148.12528125281256,72.32401009932576],[148.40248402484025,72.31050148116668],[148.68328683286836,72.28179566757868],[148.96408964089642,72.2514012767208],[149.36729367293674,72.18554676319536],[149.6120961209612,72.14839806325796],[149.67329673296734,72.12644655874948],[149.70929709297093,72.1247579814796],[149.72369723697238,72.12138082693983],[149.7308973089731,72.11631509513018],[149.73809738097384,72.104495054241],[149.74529745297457,72.10111789970122],[149.95049950499504,71.99980326350828],[150.04410044100445,71.94070305906237],[150.06570065700657,71.92212870909367],[150.0729007290073,71.89342289550567],[150.05490054900548,71.86640565918754],[150.0189001890019,71.84783130921883],[149.70929709297093,71.773533909344],[149.66969669696698,71.7718453320741],[149.63009630096303,71.7819767956934],[149.55449554495544,71.82250265017058],[149.4788947889479,71.85120846375858],[149.4068940689407,71.89680005004541],[149.36729367293674,71.90355435912497],[149.3276932769328,71.89680005004541],[149.28809288092884,71.88160285461649],[149.29529295292951,71.87822570007671],[149.3060930609306,71.87484854553696],[149.3168931689317,71.87484854553696],[149.3276932769328,71.87484854553696],[149.30249302493024,71.85458561829836],[149.2376923769238,71.83769984559953],[149.21249212492125,71.82587980471035],[149.19449194491943,71.8123711865513],[149.16569165691658,71.7819767956934],[149.14769147691476,71.7718453320741],[149.10449104491045,71.76677960026447],[148.97848978489787,71.7921082593127],[148.91728917289174,71.79548541385248],[148.8668886688867,71.8106826092814],[148.84888848888488,71.8123711865513],[148.83448834488348,71.8123711865513],[148.83448834488348,71.80561687747175],[148.8920889208892,71.77522248661387],[148.91368913689138,71.7718453320741],[149.039690396904,71.76509102299457],[149.039690396904,71.75833671391504],[149.02529025290255,71.74989382756564],[149.0108901089011,71.73469663213669],[149.00369003690037,71.71781085943786],[149.00369003690037,71.70261366400891],[148.910089100891,71.70092508673903],[148.8668886688867,71.69585935492938],[148.82728827288275,71.6755964276908],[149.00369003690037,71.66715354134138],[149.02529025290255,71.67053069588115],[149.04689046890468,71.67728500496068],[149.08289082890832,71.69754793219926],[149.10089100891008,71.70261366400891],[149.1188911889119,71.70261366400891],[149.1836918369184,71.68910504584986],[149.31329313293134,71.68741646857998],[149.360093600936,71.67728500496068],[149.77409774097742,71.64857919137268],[149.84249842498429,71.6654649640715],[149.86769867698678,71.66884211861125],[149.8856988569886,71.6654649640715],[149.90729907299072,71.65871065499198],[149.92529925299255,71.65702207772208],[149.9540995409954,71.67053069588115],[149.9648996489965,71.66208780953173],[149.98649986499868,71.64182488229315],[150.00450004500044,71.63169341867385],[150.06930069300694,71.61480764597502],[150.10170101701016,71.59454471873642],[150.08730087300876,71.58103610057736],[150.04410044100445,71.57428179149784],[150.00450004500044,71.57259321422794],[150.0081000810008,71.57934752330749],[150.01170011700117,71.59285614146654],[150.01170011700117,71.59961045054607],[149.97929979299795,71.60129902781594],[149.95049950499504,71.59116756419667],[149.939699396994,71.57428179149784],[149.9540995409954,71.54895313244958],[149.96849968499686,71.53544451429053],[149.9648996489965,71.528690205211],[149.93249932499327,71.52362447340136],[149.86769867698678,71.49660723708323],[149.87129871298714,71.48816435073383],[149.8748987489875,71.4797214643844],[149.87129871298714,71.471278578035],[149.86769867698678,71.46283569168557],[149.89289892898933,71.471278578035],[150.1161011610116,71.51518158705193],[150.27810278102783,71.52193589613148],[150.30330303303032,71.5185587415917],[150.32850328503287,71.51011585524228],[150.32130321303214,71.51011585524228],[150.30690306903068,71.50336154616275],[150.32850328503287,71.4982958143531],[150.350103501035,71.499984391623],[150.41850418504185,71.51687016432183],[150.43650436504367,71.51687016432183],[150.479704797048,71.51011585524228],[150.58050580505807,71.5185587415917],[150.63450634506347,71.51518158705193],[150.67050670506706,71.4898529280037],[150.67050670506706,71.46621284622535],[150.65250652506523,71.44594991898674],[150.62730627306274,71.42906414628791],[150.6021060210602,71.41893268266861],[150.56970569705697,71.41048979631921],[150.55530555305552,71.40204690996978],[150.54810548105485,71.3902268690806],[150.54090540905412,71.37840682819143],[150.52650526505266,71.36489821003238],[150.5337053370534,71.35983247822273],[150.51570515705157,71.34632386006368],[150.49410494104944,71.3429467055239],[150.47610476104762,71.34125812825403],[150.45090450904507,71.33788097371425],[150.389703897039,71.32099520101542],[150.35370353703536,71.31592946920577],[150.33930339303396,71.31086373739612],[150.30690306903068,71.2956665419672],[150.2817028170282,71.28891223288767],[150.2349023490235,71.28384650107802],[150.20970209702097,71.28046934653824],[150.0945009450095,71.23487776025141],[150.03690036900372,71.22812345117188],[150.02610026100263,71.22305771936223],[150.029700297003,71.2163034102827],[150.0477004770048,71.20954910120318],[150.06930069300694,71.20786052393328],[150.0945009450095,71.21123767847305],[150.14490144901453,71.22136914209236],[150.24210242102424,71.26864930564906],[150.2817028170282,71.27709219199846],[150.40770407704076,71.28553507834789],[150.55890558905588,71.33956955098412],[150.61650616506165,71.38009540546133],[150.6561065610656,71.3902268690806],[150.73890738907392,71.39360402362038],[150.68130681306815,71.3716525191119],[150.65970659706596,71.35645532368295],[150.6417064170642,71.3328152419046],[150.62730627306274,71.29904369650694],[150.6129061290613,71.28384650107802],[150.59490594905952,71.27709219199846],[150.6309063090631,71.28553507834789],[150.69210692106924,71.31761804647567],[150.76050760507604,71.3328152419046],[150.82530825308254,71.36658678730225],[150.85770857708576,71.37334109638178],[151.03411034110343,71.39360402362038],[151.070110701107,71.38853829181073],[151.1457114571146,71.36489821003238],[151.49131491314915,71.3328152419046],[151.5525155251553,71.31592946920577],[151.59211592115923,71.31086373739612],[151.610116101161,71.30579800558647],[151.6209162091621,71.29735511923707],[151.6389163891639,71.28046934653824],[151.649716497165,71.27371503745871],[151.66771667716677,71.26696072837919],[151.70011700117004,71.25851784202976],[151.7181171811718,71.25007495568036],[151.75411754117545,71.22812345117188],[151.76851768517685,71.22305771936223],[151.75411754117545,71.20954910120318],[151.80091800918012,71.18084328761518],[151.90531905319057,71.14200601040787],[151.94851948519488,71.10992304228009],[151.98811988119883,71.08797153777161],[152.10332103321036,71.0508228378342],[152.13572135721358,71.01705129243655],[152.13572135721358,70.99847694246782],[152.1141211412114,70.99003405611842],[152.06012060120605,70.98327974703889],[151.65691656916573,70.99003405611842],[151.68211682116822,70.97652543795937],[151.970119701197,70.94444246983159],[152.21132211322117,70.88027653357605],[152.50652506525068,70.84819356544827],[152.549725497255,70.82793063820966],[152.54252542525427,70.79078193827226],[152.57852578525785,70.81948775186027],[152.61452614526144,70.83468494728922],[152.79812798127983,70.83468494728922],[152.9889298892989,70.83468494728922],[153.30933309333096,70.85832502906757],[153.32733327333273,70.86170218360732],[153.3165331653317,70.8735222244965],[153.3489334893349,70.88196511084593],[153.46053460534608,70.88027653357605],[153.45333453334536,70.8735222244965],[153.61893618936193,70.8836536881158],[153.66213662136624,70.86170218360732],[153.9321393213932,70.8937851517351],[154.17694176941768,70.94275389256171],[154.2381423814238,70.96470539707019],[154.490144901449,70.98496832430877],[154.73854738547385,71.00354267427747],[155.030150301503,71.03393706513538],[155.48015480154805,71.06095430145348],[155.5089550895509,71.05757714691373],[155.52335523355237,71.04575710602455],[155.519755197552,71.03393706513538],[155.49815498154982,71.01367413789677],[155.49455494554945,71.00354267427747],[155.50175501755018,70.9934112106582],[155.51615516155164,70.97990259249912],[155.5305553055531,70.97652543795937],[155.53775537755376,70.98665690157864],[155.53775537755376,70.99509978792807],[155.54135541355413,71.00860840608712],[155.5449554495545,71.01873986970642],[155.55215552155522,71.02380560151607],[155.56655566555668,71.02887133332572],[155.59175591755917,71.05588856964386],[155.60615606156063,71.06602003326313],[155.63135631356317,71.07277434234268],[155.93735937359372,71.09979157866078],[156.2865628656287,71.08628296050173],[156.68616686166865,71.09303726958126],[156.98496984969853,71.08290580596196],[157.28737287372877,71.07446291961256],[157.58617586175865,71.07446291961256],[157.64017640176405,71.06433145599325],[157.69417694176946,71.06770861053303],[157.77337773377735,71.05419999237395],[157.98937989379897,71.04744568329443],[158.18018180181804,71.01029698335702],[158.28098280982812,71.00523125154737],[158.3709837098371,70.97990259249912],[158.52218522185223,70.96808255160994],[158.88218882188823,70.89885088354475],[159.23859238592388,70.82961921547957],[159.68859688596888,70.67089295211059],[159.84339843398436,70.5813983568068],[160.02340023400234,70.41929493889808],[160.05220052200525,70.37201477534134],[160.0810008100081,70.33317749813403],[160.09540095400956,70.30953741635568],[160.1026010260103,70.28420875730745],[160.10620106201065,70.26394583006885],[160.08820088200883,70.23861717102062],[160.01980019800197,70.20991135743262],[159.99459994599948,70.19133700746391],[159.9585995859959,70.14067968936743],[159.9369993699937,70.12885964847825],[159.90099900999013,70.12717107120835],[159.73899738997392,70.14574542117705],[159.68859688596888,70.13392538028788],[159.71739717397173,70.132236803018],[159.74259742597428,70.12548249393848],[159.7965979659797,70.10521956669987],[159.82539825398254,70.10353098943],[159.89019890198904,70.10690814396978],[159.91539915399153,70.09846525762035],[159.86859868598685,70.07144802130222],[159.8505985059851,70.05456224860339],[159.84699846998473,70.03092216682504],[159.8505985059851,70.02247928047564],[159.86139861398613,70.01403639412621],[159.86859868598685,70.00559350777681],[159.86139861398613,69.99208488961773],[159.84699846998473,69.9853305805382],[159.7857978579786,69.97182196237915],[159.76059760597605,69.96169049875985],[159.73539735397355,69.9464933033309],[159.69219692196924,69.91103318066337],[159.68859688596888,69.89077025342479],[159.710197101971,69.87219590345606],[159.7641976419764,69.8384243580584],[159.72819728197283,69.8384243580584],[159.74619746197465,69.83167004897888],[159.7749977499775,69.82153858535958],[159.78939789397896,69.81478427628005],[159.80019800198005,69.80634138993065],[159.8037980379804,69.801275658121],[159.80019800198005,69.79620992631135],[159.7965979659797,69.78776703996195],[159.78939789397896,69.77425842180287],[159.76779767797677,69.7624383809137],[159.83259832598327,69.78438988542217],[159.86139861398613,69.78945561723182],[159.88659886598867,69.78776703996195],[160.13860138601387,69.71853537189673],[160.1710017100171,69.70333817646781],[160.18900189001891,69.7016495991979],[160.15300153001533,69.72022394916664],[160.14220142201424,69.72866683551604],[160.25740257402578,69.71853537189673],[160.29340293402936,69.70840390827746],[160.31140311403118,69.69996102192803],[160.32220322203221,69.68982955830873],[160.32220322203221,69.67632094014968],[160.31860318603185,69.6543694356412],[160.38340383403835,69.6746323628798],[160.44820448204484,69.68476382649908],[160.51660516605165,69.68645240376898],[160.7182071820718,69.6645008992605],[160.8478084780848,69.6357950856725],[160.86580865808662,69.63410650840262],[160.89820898208984,69.6459265492918],[160.91620916209166,69.6459265492918],[160.9270092700927,69.64254939475202],[160.93420934209342,69.63410650840262],[160.94140941409415,69.62735219932307],[160.94860948609488,69.61890931297367],[160.99540995409956,69.59358065392541],[161.00621006210065,69.57669488122659],[160.9918099180992,69.56149768579766],[160.95940959409597,69.53954618128918],[160.94500945009452,69.5175946767807],[160.9378093780938,69.49057744046257],[160.91980919809197,69.46187162687457],[160.9378093780938,69.43992012236609],[160.94140941409415,69.43147723601669],[160.94140941409415,69.41796861785761],[160.94500945009452,69.40277142242869],[160.9558095580956,69.39432853607926],[160.970209702097,69.38757422699973],[160.98460984609846,69.37237703157078],[160.98820988209883,69.3622455679515],[160.9918099180992,69.33860548617315],[160.99900999009992,69.32847402255385],[161.009810098101,69.31834255893455],[161.01701017010174,69.30821109531524],[161.0242102421024,69.29639105442607],[161.0242102421024,69.28288243626702],[161.02061020610205,69.27106239537784],[161.01341013410138,69.25924235448866],[161.00621006210065,69.25248804540911],[161.00261002610029,69.24573373632958],[161.009810098101,69.2339136954404],[161.03141031410314,69.20858503639218],[161.03861038610387,69.1950764182331],[161.0350103501035,69.16299345010535],[161.01341013410138,69.14610767740652],[160.98460984609846,69.13259905924744],[160.96300963009634,69.10558182292934],[161.06021060210605,69.07012170026178],[161.2870128701287,69.04310446394368],[161.3410134101341,69.02790726851472],[161.39141391413915,69.00595576400625],[161.4166141661417,68.98231568222789],[161.40941409414097,68.96374133225919],[161.39501395013951,68.94347840502058],[161.34461344613447,68.89957539600363],[161.31221312213125,68.8826896233048],[161.2978129781298,68.87255815968552],[161.29061290612907,68.86242669606622],[161.28341283412834,68.84047519155774],[161.27981279812798,68.83203230520832],[161.26901269012689,68.82190084158904],[161.24021240212403,68.80501506889021],[161.22581225812257,68.79319502800104],[161.2222122221222,68.79319502800104],[161.21861218612185,68.79150645073113],[161.21501215012154,68.78475214165161],[161.21501215012154,68.77968640984196],[161.21861218612185,68.76786636895278],[161.21501215012154,68.7172090508563],[161.21141211412117,68.69188039180807],[161.20061200612008,68.68174892818877],[161.17181171811717,68.67330604183937],[161.14661146611468,68.65304311460076],[161.10701107011073,68.60576295104406],[161.03141031410314,68.56017136475722],[160.94140941409415,68.55341705567767],[160.7578075780758,68.56354851929697],[160.77940779407794,68.53990843751862],[160.82260822608225,68.52808839662944],[160.90900909009093,68.52302266481979],[161.0458104581046,68.53484270570897],[161.09621096210964,68.55341705567767],[161.12141121411213,68.55679421021745],[161.13581135811359,68.5618599420271],[161.15021150211504,68.5703028283765],[161.25821258212585,68.66655173275981],[161.27261272612725,68.67330604183937],[161.33021330213302,68.69188039180807],[161.34821348213484,68.70201185542737],[161.30501305013053,68.73409482355513],[161.29061290612907,68.75435775079373],[161.30501305013053,68.7661777916829],[161.31581315813162,68.78306356438173],[161.31941319413193,68.78981787346126],[161.32661326613265,68.79657218254079],[161.4310143101431,68.8455409233674],[161.47781477814777,68.87931246876505],[161.53181531815318,68.89450966419398],[161.55701557015573,68.90632970508318],[161.5750157501575,68.9215269005121],[161.5750157501575,68.93334694140128],[161.57141571415713,68.94685555956036],[161.56781567815682,68.96880706406884],[161.56781567815682,69.0008900321966],[161.56421564215646,69.01439865035567],[161.55701557015573,69.0295958457846],[161.5390153901539,69.0481701957533],[161.49941499414996,69.07181027753168],[161.4850148501485,69.09207320477026],[161.48141481414814,69.10051609111969],[161.4850148501485,69.11571328654861],[161.48141481414814,69.12246759562817],[161.44901449014492,69.15455056375592],[161.46701467014674,69.168059181915],[161.46701467014674,69.18156780007405],[161.45261452614528,69.19338784096323],[161.43461434614346,69.2052078818524],[161.39861398613988,69.22209365455123],[161.46341463414637,69.28625959080676],[161.45621456214565,69.30145678623572],[161.42741427414273,69.32003113620442],[161.4166141661417,69.3318511770936],[161.45621456214565,69.33016259982372],[161.4742147421474,69.33522833163337],[161.4850148501485,69.34535979525268],[161.47781477814777,69.35549125887198],[161.44901449014492,69.3706884543009],[161.43461434614346,69.37913134065033],[161.4742147421474,69.39770569061903],[161.60021600216004,69.42810008147691],[161.6290162901629,69.44329727690587],[161.67581675816757,69.48213455411317],[161.70101701017012,69.49564317227222],[161.7262172621726,69.50070890408188],[161.7478174781748,69.50070890408188],[161.76941769417698,69.50577463589153],[161.80541805418056,69.52941471766988],[161.82341823418233,69.53448044947953],[161.8450184501845,69.5361690267494],[161.90621906219064,69.52603756313013],[161.9458194581946,69.5277261404],[162.0250202502025,69.55136622217836],[162.01422014220145,69.57331772668684],[162.02862028620285,69.58344919030614],[162.08622086220862,69.59189207665554],[162.12582125821257,69.61046642662424],[162.13662136621366,69.61215500389415],[162.15462154621548,69.61384358116402],[162.16902169021694,69.6172207357038],[162.1978219782198,69.6256636220532],[162.17982179821797,69.62735219932307],[162.1726217262173,69.63410650840262],[162.1762217622176,69.64086081748215],[162.19062190621906,69.65099228110142],[162.20862208622088,69.65605801291107],[162.230222302223,69.6543694356412],[162.2518225182252,69.64930370383155],[162.27342273422738,69.6459265492918],[162.29862298622987,69.65099228110142],[162.3166231662317,69.66281232199063],[162.32742327423273,69.67969809468946],[162.32742327423273,69.7016495991979],[162.34182341823418,69.7016495991979],[162.38862388623886,69.68138667195933],[162.40662406624068,69.67632094014968],[162.6226262262623,69.68138667195933],[162.65862658626588,69.67800951741955],[162.73062730627305,69.65774659018098],[162.77022770227705,69.6543694356412],[163.02223022230226,69.68476382649908],[163.09063090630906,69.70840390827746],[163.16623166231665,69.72022394916664],[163.3030330303303,69.72022394916664],[163.35343353433535,69.70671533100756],[163.39663396633966,69.71009248554734],[163.41463414634148,69.70840390827746],[163.46143461434616,69.69151813557863],[163.47943479434798,69.68814098103886],[163.58383583835837,69.68476382649908],[163.7746377463775,69.69489529011838],[163.89343893438934,69.73879829913534],[163.98343983439838,69.76412695818357],[164.0266402664027,69.77425842180287],[164.07344073440737,69.76919268999322],[164.10944109441095,69.75906122637392],[164.12024120241205,69.75230691729439],[164.1238412384124,69.74555260821487],[164.13104131041314,69.73035541278591],[164.1346413464135,69.72528968097629],[164.23544235442358,69.6830752492292],[164.31464314643148,69.66787805380025],[164.44064440644405,69.62059789024354],[164.53784537845382,69.60371211754472],[164.83304833048334,69.56656341760731],[165.26865268652688,69.59864638573507],[165.67545675456756,69.59526923119532],[165.73305733057333,69.58344919030614],[165.7906579065791,69.58513776757601],[165.94545945459458,69.55812053125788],[166.0318603186032,69.52941471766988],[166.07506075060752,69.52266040859035],[166.3522635226352,69.5277261404],[166.62946629466296,69.53448044947953],[166.69426694266946,69.51421752224093],[166.69786697866982,69.5074632131614],[166.679866798668,69.49564317227222],[166.89226892268925,69.49564317227222],[166.93906939069393,69.50239748135175],[167.22347223472235,69.59864638573507],[167.50787507875077,69.69489529011838],[167.53667536675368,69.71346964008708],[167.58707587075872,69.74048687640521],[167.67347673476735,69.772569844533],[167.71667716677166,69.77763557634265],[167.80307803078034,69.77594699907274],[167.82827828278283,69.77088126726312],[167.84987849878502,69.76412695818357],[167.89307893078933,69.73879829913534],[167.939879398794,69.72191252643651],[167.96147961479613,69.71684679462686],[167.98667986679868,69.71515821735699],[168.03708037080372,69.72022394916664],[168.0586805868059,69.72022394916664],[168.0838808388084,69.70840390827746],[168.01548015480154,69.68982955830873],[167.99027990279905,69.68814098103886],[167.97947979479795,69.6830752492292],[167.92547925479255,69.6543694356412],[167.9650796507965,69.63410650840262],[168.10188101881022,69.60540069481459],[168.22068220682206,69.56825199487719],[168.24228242282425,69.55812053125788],[168.25308253082534,69.54461191309883],[168.2566825668257,69.53110329493975],[168.25308253082534,69.52266040859035],[168.2458824588246,69.51590609951083],[168.23868238682388,69.50239748135175],[168.23868238682388,69.49226601773248],[168.24228242282425,69.47200309049387],[168.23868238682388,69.46187162687457],[168.23148231482315,69.44160869963599],[168.1918819188192,69.37913134065033],[168.22068220682206,69.3521141043322],[168.23148231482315,69.33691690890325],[168.23868238682388,69.31834255893455],[168.23148231482315,69.29807963169594],[168.24228242282425,69.27612812718749],[168.26748267482674,69.25586519994889],[168.28908289082892,69.24235658178983],[168.32868328683287,69.22884796363076],[168.37188371883718,69.22040507728136],[168.65628656286566,69.21365076820183],[168.8506885068851,69.18832210915357],[168.96588965889663,69.15117340921617],[169.0378903789038,69.14104194559687],[169.11349113491138,69.11402470927874],[169.15309153091533,69.10558182292934],[169.30429304293045,69.09713893657991],[169.37269372693726,69.07687600934133],[169.419494194942,69.02284153670507],[169.4338943389434,68.97387279587846],[169.4338943389434,68.88606677784458],[169.45549455494557,68.8455409233674],[169.48429484294843,68.82190084158904],[169.52389523895238,68.80501506889021],[169.62469624696246,68.77799783257208],[169.98829988299883,68.80332649162031],[170.3519035190352,68.82865515066857],[170.3771037710377,68.82190084158904],[170.39870398703988,68.81176937796974],[170.42390423904243,68.80670364616009],[170.49230492304923,68.79994933708056],[170.549905499055,68.77124352349256],[170.58590585905858,68.76280063714313],[170.61110611106113,68.75266917352383],[170.6255062550626,68.74929201898408],[170.549905499055,68.79319502800104],[170.53550535505354,68.81176937796974],[170.54630546305464,68.81176937796974],[170.55350553505536,68.81514653250949],[170.56430564305646,68.82527799612879],[170.459904599046,68.83203230520832],[170.4419044190442,68.8455409233674],[170.44910449104492,68.8641152733361],[170.47430474304747,68.8742467369554],[170.52830528305282,68.88606677784458],[170.5931059310593,68.90970685962293],[170.63270632706326,68.91814974597236],[170.66150661506617,68.9130840141627],[170.66150661506617,68.90632970508318],[170.65430654306545,68.8928210869241],[170.65430654306545,68.88606677784458],[170.66150661506617,68.87762389149515],[170.6939069390694,68.85904954152645],[170.6939069390694,68.84722950063727],[170.69750697506976,68.83709803701797],[170.70830708307085,68.82865515066857],[170.7227072270723,68.82527799612879],[170.72630726307267,68.82190084158904],[170.72630726307267,68.84047519155774],[170.71550715507158,68.85904954152645],[170.70830708307085,68.87593531422527],[170.70830708307085,68.88606677784458],[170.7119071190712,68.90126397327353],[170.71550715507158,68.90970685962293],[170.70830708307085,68.91814974597236],[170.68670686706866,68.93165836413141],[170.67950679506794,68.94010125048081],[170.7587075870759,68.95360986863989],[170.89550895508955,68.9924471458472],[170.9207092070921,69.00595576400625],[170.93870938709387,69.02284153670507],[170.9567095670957,69.04479304121355],[170.96030960309605,69.0498587730232],[170.97830978309787,69.05661308210273],[170.99270992709927,69.05323592756295],[171.01431014310145,69.03803873213403],[171.05031050310504,69.02790726851472],[171.15831158311585,69.03803873213403],[171.15831158311585,69.04479304121355],[171.07191071910722,69.04479304121355],[171.0287102871029,69.05492450483285],[171.0107101071011,69.08194174115096],[171.00711007110073,69.10558182292934],[170.99630996309963,69.12584475016791],[170.98190981909818,69.14441910013662],[170.96030960309605,69.1562391410258],[170.9207092070921,69.16468202737522],[170.89910899108992,69.17143633645475],[170.8919089190892,69.18494495461383],[170.89550895508955,69.19338784096323],[170.91710917109174,69.21365076820183],[170.92790927909283,69.22209365455123],[170.93150931509314,69.2339136954404],[170.92790927909283,69.24235658178983],[170.92790927909283,69.24911089086936],[170.92790927909283,69.25924235448866],[170.91350913509137,69.3048339407755],[170.88830888308883,69.32678544528395],[170.85950859508597,69.34704837252255],[170.79830798307984,69.37575418611056],[170.76230762307625,69.38419707245998],[170.7479074790748,69.39095138153951],[170.74070740707407,69.40445999969856],[170.74430744307443,69.43316581328656],[170.74070740707407,69.44160869963599],[170.73350733507334,69.45680589506492],[170.71910719107194,69.46187162687457],[170.70110701107012,69.46693735868422],[170.68670686706866,69.47538024503365],[170.67950679506794,69.4888888631927],[170.67590675906763,69.4973317495421],[170.67950679506794,69.5074632131614],[170.67950679506794,69.52097183132048],[170.6687066870669,69.54123475855906],[170.639906399064,69.56656341760731],[170.60750607506077,69.59020349938567],[170.58590585905858,69.60033496300497],[170.51030510305105,69.60202354027484],[170.46710467104674,69.59526923119532],[170.2871028710287,69.57838345849649],[170.1791017910179,69.58513776757601],[170.16110161101614,69.61384358116402],[170.189901899019,69.64086081748215],[170.2331023310233,69.68814098103886],[170.30150301503016,69.71178106281721],[170.35550355503557,69.72360110370639],[170.43470434704346,69.73710972186547],[170.49950499504996,69.74048687640521],[170.5607056070561,69.7539954945643],[170.5931059310593,69.76412695818357],[170.57150571505719,69.78438988542217],[170.56790567905682,69.7911441945017],[170.56430564305646,69.79452134904147],[170.55350553505536,69.79789850358122],[170.549905499055,69.80465281266078],[170.54630546305464,69.82153858535958],[170.54630546305464,69.82491573989935],[170.549905499055,69.829981471709],[170.55710557105573,69.84517866713796],[170.55710557105573,69.88063878980549],[170.5607056070561,69.89077025342479],[170.55710557105573,69.89752456250432],[170.52830528305282,69.92454179882245],[170.52110521105215,69.9380504169815],[170.52830528305282,69.96337907602972],[170.53550535505354,69.9853305805382],[170.5391053910539,70.00728208504668],[170.52830528305282,70.03092216682504],[170.54270542705427,70.04105363044434],[170.55350553505536,70.05793940314317],[170.5607056070561,70.07651375311187],[170.55710557105573,70.09171094854082],[170.52830528305282,70.10521956669987],[170.4059040590406,70.1136624530493],[170.4311043110431,70.13392538028788],[170.48150481504814,70.1423682666373],[170.53550535505354,70.13899111209753],[170.61110611106113,70.11703960758905],[171.03951039510395,70.08157948492152],[171.3167131671317,70.07313659857212],[171.5471154711547,70.03936505317446],[171.94671946719467,70.00559350777681],[171.99351993519934,69.99377346688763],[172.32112321123213,69.98195342599846],[172.64872648726487,69.97182196237915],[172.70272702727027,69.98364200326833],[172.72432724327246,69.98026484872855],[172.76752767527677,69.9667562305695],[172.78912789127895,69.96337907602972],[172.79992799928,69.9279189533622],[172.86112861128612,69.90427887158384],[173.17793177931782,69.84517866713796],[173.23553235532358,69.81816143081983],[173.22113221132213,69.81647285354995],[173.19953199531994,69.8097185444704],[173.18153181531818,69.801275658121],[173.17793177931782,69.79452134904147],[173.19953199531994,69.7827013081523],[173.22113221132213,69.7827013081523],[173.2679326793268,69.7911441945017],[173.36873368733688,69.78945561723182],[173.41913419134193,69.79789850358122],[173.46233462334624,69.81816143081983],[173.4767347673477,69.829981471709],[173.48033480334806,69.83504720351866],[173.47313473134733,69.84180151259818],[173.4407344073441,69.86037586256688],[173.4011340113401,69.87726163526571],[173.3435334353344,69.88908167615489],[173.30033300333002,69.90596744885372],[173.25353253532535,69.9194760670128],[173.20673206732067,69.91103318066337],[173.19593195931958,69.90090171704406],[173.18513185131854,69.88908167615489],[173.17433174331745,69.88063878980549],[173.16353163531636,69.88739309888501],[173.159931599316,69.89921313977419],[173.16713167131672,69.90765602612362],[173.17433174331745,69.91441033520314],[173.1887318873189,69.92116464428267],[173.23193231932322,69.93467326244172],[173.2787327873279,69.94142757152127],[173.46233462334624,69.9481818806008],[173.70353703537035,69.88739309888501],[173.69633696336967,69.88401594434524],[173.68913689136895,69.88232736707536],[173.68193681936822,69.88063878980549],[173.6747367473675,69.87895021253561],[173.7287372873729,69.86037586256688],[173.739537395374,69.85193297621748],[173.77913779137793,69.85362155348736],[173.7611376113761,69.86375301710666],[173.74313743137435,69.87388448072596],[173.78633786337866,69.88401594434524],[173.8367383673837,69.87050732618619],[173.88353883538838,69.85193297621748],[173.9267392673927,69.84517866713796],[173.94833948339482,69.85193297621748],[173.98433984339846,69.87219590345606],[174.00234002340022,69.87895021253561],[174.02754027540277,69.88401594434524],[174.07074070740708,69.88739309888501],[174.25434254342542,69.87895021253561],[174.329943299433,69.88739309888501],[174.37314373143732,69.87557305799584],[174.78714787147874,69.85531013075723],[175.08955089550898,69.84517866713796],[175.18315183151833,69.8485558216777],[175.4171541715417,69.86713017164641],[175.49995499955003,69.87388448072596],[175.7159571595716,69.88063878980549],[175.72315723157232,69.87050732618619],[175.62235622356224,69.86375301710666],[175.52875528755288,69.85699870802713],[175.6007560075601,69.84349008986806],[175.69435694356946,69.83504720351866],[175.769957699577,69.8198500080897],[175.82755827558276,69.79283277177157],[175.86355863558634,69.78945561723182],[175.92475924759248,69.77594699907274],[175.9967599675997,69.76919268999322],[176.07236072360723,69.76919268999322],[176.14436144361446,69.7827013081523],[176.1587615876159,69.80296423539087],[176.1587615876159,69.82153858535958],[176.14436144361446,69.8401129353283],[176.10116101161015,69.85868728529701],[176.0075600756008,69.85868728529701],[175.9211592115921,69.85531013075723],[175.84555845558458,69.86206443983679],[175.79155791557918,69.87388448072596],[175.78075780757808,69.88570452161514],[175.8671586715867,69.88570452161514],[175.9427594275943,69.88063878980549],[176.03636036360365,69.88570452161514],[176.08316083160832,69.89414740796454],[176.12636126361264,69.89414740796454],[176.1407614076141,69.88739309888501],[176.16236162361622,69.87050732618619],[176.17676176761768,69.86206443983679],[176.25236252362527,69.829981471709],[176.27036270362703,69.81816143081983],[176.28116281162812,69.801275658121],[176.26676266762667,69.79958708085113],[176.24156241562417,69.79958708085113],[176.23076230762308,69.78776703996195],[176.24156241562417,69.77425842180287],[176.26676266762667,69.772569844533],[176.31356313563134,69.77763557634265],[176.50436504365047,69.7539954945643],[176.54756547565478,69.73710972186547],[176.6231662316623,69.72191252643651],[176.63756637566377,69.71515821735699],[176.69156691566917,69.68814098103886],[176.73476734767348,69.6746323628798],[176.82836828368283,69.66787805380025],[176.9759697596976,69.63410650840262],[177.16317163171635,69.6155321584339],[177.35757357573578,69.6172207357038],[177.6419764197642,69.56994057214706],[177.68157681576815,69.55136622217836],[177.6419764197642,69.55812053125788],[177.62037620376208,69.55643195398801],[177.60957609576099,69.54461191309883],[177.6779767797678,69.53110329493975],[177.749977499775,69.53279187220966],[177.7715777157772,69.53110329493975],[177.89757897578977,69.499020326812],[178.1567815678157,69.46187162687457],[178.2107821078211,69.44329727690587],[178.23238232382323,69.44160869963599],[178.2467824678247,69.44329727690587],[178.3007830078301,69.46187162687457],[178.289982899829,69.47369166776375],[178.27558275582754,69.48044597684327],[178.3007830078301,69.48720028592282],[178.3655836558366,69.48720028592282],[178.77238772387727,69.41459146331786],[178.81198811988122,69.39432853607926],[178.87318873188735,69.38757422699973],[178.89478894788948,69.38250849519008],[178.91998919989203,69.37406560884068],[178.9919899198992,69.35886841341173],[179.04959049590497,69.33691690890325],[179.06759067590679,69.3318511770936],[179.06759067590679,69.32509686801407],[178.9235892358924,69.31834255893455],[178.89838898388984,69.32171971347432],[178.88758887588875,69.33016259982372],[178.88038880388802,69.3419826407129],[178.86238862388626,69.35549125887198],[178.8371883718837,69.36562272249125],[178.81198811988122,69.3706884543009],[178.75438754387545,69.37237703157078],[178.70038700387005,69.36562272249125],[178.6859868598686,69.36899987703103],[178.67878678786786,69.37744276338043],[178.6715867158672,69.38250849519008],[178.66798667986683,69.38250849519008],[178.65718657186574,69.37913134065033],[178.66438664386646,69.37406560884068],[178.66798667986683,69.36562272249125],[178.6715867158672,69.35717983614185],[178.65358653586537,69.31665398166467],[178.67518675186756,69.29807963169594],[178.71118711187114,69.28794816807667],[178.74718747187472,69.28288243626702],[178.86238862388626,69.29807963169594],[178.95958959589598,69.28288243626702],[178.98478984789847,69.28288243626702],[179.06759067590679,69.29807963169594],[179.26199261992622,69.27275097264771],[179.30519305193053,69.25755377721876],[179.35919359193593,69.2237822318211],[179.6579965799658,69.10895897746909],[179.9567995679957,68.99582430038694],[179.89919899198992,68.99920145492672],[179.84879848798488,69.00933291854602],[179.67599675996763,69.08194174115096],[179.62919629196296,69.09038462750038],[179.57519575195755,69.11064755473896],[179.54639546395464,69.11233613200886],[179.5715957159572,69.09207320477026],[179.6255962559626,69.07687600934133],[179.65079650796508,69.06505596845213],[179.66159661596618,69.0498587730232],[179.67599675996763,69.03128442305447],[179.69039690396903,69.01608722762555],[179.72999729997304,69.00595576400625],[179.7587975879759,68.9924471458472],[179.77319773197735,68.98906999130742],[-180,68.98062710495802],[-180,65.0665049933699]],[[54.74754747547476,40.99583601119204],[54.72234722347224,41.01947609297039],[54.68994689946899,41.06000194744759],[54.67914679146793,41.06506767925724],[54.67914679146793,41.07013341106688],[54.700747007470085,41.068444833797],[54.725947259472605,41.06000194744759],[54.76914769147692,41.03636186566922],[54.76194761947622,41.044804752018635],[54.74034740347403,41.0583133701777],[54.73314733147333,41.06506767925724],[54.72234722347224,41.07519914287653],[54.71874718747188,41.08026487468618],[54.71874718747188,41.08533060649583],[54.71874718747188,41.092084915575356],[54.725947259472605,41.09883922465488],[54.72954729547297,41.10052780192477],[54.73314733147333,41.09883922465488],[54.71514715147151,41.11572499735371],[54.68994689946899,41.12079072916336],[54.66114661146614,41.12416788370312],[54.63594635946362,41.13261077005254],[54.63594635946362,41.16300516091043],[54.599945999460004,41.191710974498434],[54.40194401944021,41.30822280612034],[54.31194311943119,41.338617196978234],[54.2939429394294,41.34706008332765],[54.257942579425816,41.37576589691565],[54.21114211142111,41.39602882415424],[54.189541895418955,41.40784886504342],[54.18594185941859,41.41291459685307],[54.17514175141753,41.4298003695519],[54.15354153541537,41.45344045133025],[54.14634146341464,41.46019476040978],[54.11034110341103,41.46526049221943],[54.088740887408875,41.47539195583873],[54.07434074340745,41.48721199672791],[54.05994059940599,41.50240919215685],[54.0419404194042,41.53449216028463],[54.031140311403135,41.56995228295216],[54.02754027540277,41.608789560159465],[54.02394023940241,41.69490700092348],[54.02034020340204,41.7320557008609],[54.00954009540095,41.764138668988664],[53.99153991539916,41.796221637116446],[53.94473944739448,41.858698996102106],[53.937539375393754,41.875584768800934],[53.93393933939339,41.88402765515035],[53.92313923139233,41.88740480969011],[53.90873908739087,41.889093386959985],[53.90153901539017,41.89247054149976],[53.89793897938981,41.90597915965881],[53.90153901539017,41.91442204600823],[53.905139051390535,41.92286493235764],[53.90873908739087,41.93468497324682],[53.90873908739087,41.94143928232636],[53.905139051390535,41.96001363229506],[53.90153901539017,41.971833673184236],[53.9159391593916,41.9954737549626],[53.9159391593916,42.00729379585178],[53.9159391593916,42.02417956855061],[53.912339123391234,42.04275391851931],[53.905139051390535,42.063016845757915],[53.89793897938981,42.078214041186854],[53.86553865538656,42.10185412296521],[53.81873818738188,42.123805627473686],[53.76833768337684,42.13562566836286],[53.72513725137253,42.125494204743575],[53.68193681936819,42.14406855471228],[53.37593375933761,42.10523127750497],[53.318333183331845,42.08159119572662],[53.29673296732969,42.078214041186854],[53.22113221132213,42.08159119572662],[53.16353163531636,42.103542700235096],[53.12033120331205,42.09003408207603],[53.084330843308436,42.06470542302779],[53.059130591305916,42.0444424957892],[52.9619296192962,41.98365371407343],[52.93672936729368,41.95494790048542],[52.82152821528217,41.764138668988664],[52.80352803528035,41.74556431901996],[52.78912789127892,41.73543285540066],[52.781927819278195,41.72530139178137],[52.77472774727747,41.701661310003004],[52.76752767527677,41.67633265095478],[52.77112771127713,41.66113545552582],[52.78552785527856,41.66282403279571],[52.81432814328144,41.69321842365359],[52.832328323283235,41.701661310003004],[52.87912879128791,41.69828415546324],[52.90432904329043,41.68984126911383],[52.915129151291524,41.67464407368489],[52.915129151291524,41.66113545552582],[52.90072900729007,41.64087252828723],[52.89712897128973,41.629052487398056],[52.89712897128973,41.61892102377875],[52.90072900729007,41.60034667381005],[52.90432904329043,41.588526632920875],[52.90072900729007,41.566575128412396],[52.832328323283235,41.43824325590131],[52.82872828728287,41.41798032866272],[52.81432814328144,41.38927451507472],[52.81432814328144,41.379143051455415],[52.81432814328144,41.36901158783611],[52.82872828728287,41.34537150605776],[52.8359283592836,41.30315707431069],[52.84312843128433,41.24067971532503],[52.85032850328503,41.2237939426262],[52.90432904329043,41.13936507913208],[52.907929079290795,41.12247930643325],[52.90432904329043,41.10221637919466],[52.882728827288275,41.071821988336765],[52.882728827288275,41.049870483828286],[52.87552875528755,41.049870483828286],[52.86832868328685,41.06000194744759],[52.85392853928539,41.07013341106688],[52.84672846728469,41.076887720146416],[52.84672846728469,41.08870776103559],[52.85392853928539,41.119102151893486],[52.85392853928539,41.14274223367184],[52.85032850328503,41.16300516091043],[52.84312843128433,41.18326808814902],[52.832328323283235,41.20184243811774],[52.82872828728287,41.206908169927374],[52.81792817928181,41.217039633546676],[52.81432814328144,41.22210536535633],[52.81072810728108,41.233925406245504],[52.81432814328144,41.252499756214206],[52.81432814328144,41.26263121983351],[52.79272792727929,41.321731424279406],[52.78912789127892,41.33017431062882],[52.77832778327783,41.34030577424811],[52.76032760327604,41.37745447418553],[52.74592745927461,41.38589736053494],[52.731527315273155,41.38758593780483],[52.72432724327243,41.394340246884354],[52.72072720727209,41.40447171050366],[52.71712717127173,41.41798032866272],[52.71712717127173,41.426423215012136],[52.709927099271,41.43148894682177],[52.69192691926921,41.44499756498084],[52.681126811268115,41.45006329679049],[52.655926559265595,41.45344045133025],[52.64512645126453,41.4585061831399],[52.61272612726128,41.49227772853756],[52.59472594725949,41.50240919215685],[52.57672576725767,41.50916350123639],[52.56232562325624,41.519294964855675],[52.55872558725588,41.54462362390392],[52.56232562325624,41.546312201173805],[52.5839258392584,41.57501801476181],[52.58752587525876,41.58346090111122],[52.58752587525876,41.59359236473051],[52.58752587525876,41.61554386923899],[52.58752587525876,41.623986755588405],[52.59472594725949,41.63411821920771],[52.59472594725949,41.64087252828723],[52.59112591125913,41.645938260096884],[52.58752587525876,41.649315414636646],[52.5839258392584,41.65269256917641],[52.580325803258035,41.6543811464463],[52.573125731257335,41.672955496415],[52.56592565925661,41.681398382764414],[52.55872558725588,41.68815269184395],[52.55152551525515,41.68984126911383],[52.53712537125372,41.68815269184395],[52.529925299252994,41.691529846383716],[52.51912519125193,41.701661310003004],[52.51552515525157,41.706727041812655],[52.497524975249775,41.71179277362231],[52.48312483124832,41.726989969051246],[52.47592475924759,41.728678546321134],[52.45072450724507,41.73543285540066],[52.43632436324364,41.748941473559725],[52.43632436324364,41.769204400798316],[52.44352443524437,41.791155905306795],[52.48312483124832,41.86376472791174],[52.490324903249046,41.90260200511905],[52.48312483124832,41.94143928232636],[52.47592475924759,41.96339078683482],[52.46152461524616,41.978587982263775],[52.45072450724507,41.98703086861319],[52.439924399244006,41.99209660042284],[52.43272432724328,42.000539486772254],[52.429124291242914,42.014048104931305],[52.43632436324364,42.04781965032896],[52.43632436324364,42.05795111394826],[52.429124291242914,42.06639400029768],[52.40032400324003,42.09172265934592],[52.414724147241486,42.10691985477486],[52.421924219242214,42.125494204743575],[52.429124291242914,42.145757131982165],[52.429124291242914,42.16433148195087],[52.43632436324364,42.17952867737982],[52.45072450724507,42.18797156372922],[52.46872468724689,42.19303729553887],[52.48312483124832,42.201480181888286],[52.53352533525336,42.27240042722336],[52.58752587525876,42.326434899859606],[52.59472594725949,42.33487778620902],[52.598325983259855,42.34500924982832],[52.60192601926019,42.3568292907175],[52.598325983259855,42.37709221795609],[52.60192601926019,42.38891225884527],[52.605526055260555,42.39735514519468],[52.63432634326344,42.41930664970316],[52.64152641526417,42.42774953605257],[52.64512645126453,42.43619242240199],[52.648726487264895,42.453078195100815],[52.648726487264895,42.46152108145023],[52.66672666726669,42.50204693592741],[52.67752677526775,42.53919563586483],[52.67752677526775,42.57465575853236],[52.66312663126632,42.613493035739666],[52.6379263792638,42.655707467486735],[52.61992619926201,42.677658971995214],[52.57672576725767,42.697921899233805],[52.56592565925661,42.72156198101216],[52.56232562325624,42.74182490825075],[52.573125731257335,42.75026779460016],[52.580325803258035,42.738447753710986],[52.58752587525876,42.718184826472395],[52.60192601926019,42.697921899233805],[52.61992619926201,42.6877904356145],[52.62712627126271,42.68610185834463],[52.66312663126632,42.66752750837591],[52.66672666726669,42.660773199296386],[52.67032670326705,42.65233031294697],[52.67032670326705,42.64726458113732],[52.67752677526775,42.64726458113732],[52.69192691926921,42.61180445846979],[52.70272702727027,42.593230108501075],[52.709927099271,42.58478722215166],[52.72072720727209,42.593230108501075],[52.731527315273155,42.613493035739666],[52.74232742327425,42.63713311751802],[52.74592745927461,42.657396044756624],[52.73512735127352,42.70129905377357],[52.71352713527136,42.73000486736157],[52.67752677526775,42.7468906400604],[52.630726307263075,42.75026779460016],[52.623526235262375,42.77390787637853],[52.573125731257335,42.79923653542676],[52.472324723247254,42.82625377174489],[52.371523715237174,42.83300808082441],[52.35712357123572,42.83131950355454],[52.346323463234654,42.829630926284665],[52.3319233192332,42.824565194475014],[52.321123211232134,42.81949946266536],[52.313923139231406,42.81274515358584],[52.303123031230314,42.79585938088701],[52.29952299522995,42.79079364907736],[52.27432274322743,42.79923653542676],[52.2059220592206,42.86677962622207],[52.169921699217014,42.887042553460674],[52.14472144721449,42.88873113073055],[52.05832058320584,42.878599667111246],[51.98991989919901,42.860025317142544],[51.9539195391954,42.84145096717384],[51.93231932319324,42.83469665809429],[51.910719107191085,42.843139544443716],[51.853118531185316,42.8937968625402],[51.83871838718389,42.90899405796915],[51.81711817118173,42.941077026096906],[51.802718027180276,42.957962798795734],[51.79191791917921,42.97484857149456],[51.78111781117812,43.011997271431994],[51.77031770317703,43.030571621400696],[51.72351723517235,43.07109747587788],[51.71271712717129,43.09136040311648],[51.69831698316983,43.09473755765623],[51.683916839168404,43.09642613492613],[51.676716767167676,43.09980328946588],[51.66951669516695,43.11331190762493],[51.67311673116731,43.12175479397436],[51.68031680316804,43.12850910305389],[51.683916839168404,43.14032914394306],[51.68031680316804,43.158903493911765],[51.66951669516695,43.17916642115037],[51.651516515165156,43.19098646203955],[51.61191611916121,43.177477843880496],[51.56151561515617,43.17916642115037],[51.53991539915401,43.17578926661059],[51.532715327153284,43.16903495753107],[51.525515255152555,43.16228064845154],[51.51831518315183,43.15721491664189],[51.50751507515076,43.15383776210214],[51.49671496714967,43.15721491664189],[51.47151471514715,43.16734638026119],[51.46071460714609,43.16903495753107],[51.36711367113671,43.15383776210214],[51.27711277112772,43.15383776210214],[51.26271262712629,43.16396922572142],[51.26631266312663,43.1876093074998],[51.30231302313024,43.26866101645416],[51.31311313113133,43.310875448201216],[51.32031320313203,43.44258447525206],[51.31311313113133,43.46284740249067],[51.28431284312845,43.5084389887775],[51.27711277112772,43.5168818751269],[51.27711277112772,43.5270133387462],[51.27711277112772,43.54896484325468],[51.273512735127355,43.55909630687398],[51.25911259112593,43.57260492503303],[51.21951219512195,43.59286785227164],[51.20871208712089,43.609753624970466],[51.20511205112052,43.62495082039939],[51.197911979119795,43.626639397669294],[51.18711187111873,43.62326224312952],[51.17631176311764,43.61988508858977],[51.16191161911621,43.62326224312952],[51.15471154711548,43.62495082039939],[51.140311403114026,43.63339370674882],[51.115111151111506,43.66041094306695],[51.021510215102154,43.800562856467195],[51.014310143101426,43.819137206435926],[51.01071010710109,43.83602297913475],[51.007110071100726,43.84615444275403],[51.00351003510036,43.854597329103456],[50.996309963099634,43.86135163818298],[50.99270992709927,43.86641736999263],[50.989109891098906,43.876548833611935],[50.99270992709927,43.898500338120414],[50.99270992709927,43.90863180173969],[50.981909819098206,43.91876326535899],[50.95310953109532,43.939026192597595],[50.945909459094594,43.947469078946995],[50.938709387093866,43.9660434289157],[50.92430924309244,43.982929201614525],[50.90990909909101,44.00319212885313],[50.90270902709028,44.01163501520253],[50.89190891908919,44.015012169742306],[50.870308703087034,44.02007790155196],[50.85950859508597,44.02514363336161],[50.85230852308524,44.03865225152066],[50.85230852308524,44.04709513787009],[50.85950859508597,44.05553802421949],[50.85950859508597,44.06904664237857],[50.855908559085606,44.15347550587268],[50.85230852308524,44.17373843311128],[50.84870848708488,44.188935628540236],[50.81990819908199,44.21426428758846],[50.780307803078045,44.23621579209694],[50.69750697506976,44.26492160568495],[50.344703447034476,44.31051319197178],[50.2979029790298,44.32571038740073],[50.276302763027644,44.33584185102001],[50.25470254702549,44.35103904644896],[50.23670236702367,44.36961339641766],[50.22950229502297,44.39156490092614],[50.23670236702367,44.4354679099431],[50.23670236702367,44.45741941445158],[50.22950229502297,44.47599376442028],[50.23670236702367,44.48443665076971],[50.225902259022604,44.50301100073841],[50.22230222302224,44.53509396886619],[50.225902259022604,44.567176936993945],[50.23670236702367,44.58575128696265],[50.25470254702549,44.55704547337464],[50.269102691026916,44.57055409153372],[50.27990279902801,44.597571327851824],[50.28350283502837,44.61445710055065],[50.294302943029436,44.6195228323603],[50.294302943029436,44.63134287324948],[50.294302943029436,44.64485149140856],[50.2979029790298,44.65498295502786],[50.31230312303123,44.66173726410739],[50.319503195031956,44.660048686837484],[50.33030330303305,44.65329437775796],[50.34110341103411,44.64822864594831],[50.49950499504996,44.62627714143986],[50.54630546305464,44.62796571870973],[50.59310593105931,44.63978575959891],[50.61830618306183,44.63978575959891],[50.629106291062925,44.624588564169954],[50.64350643506435,44.621211409630206],[50.729907299073005,44.621211409630206],[50.74430744307443,44.60939136874103],[50.755107551075525,44.60432563693138],[50.76950769507695,44.6110799460109],[50.77670776707768,44.621211409630206],[50.780307803078045,44.62796571870973],[50.78390783907841,44.63303145051938],[50.79470794707947,44.63472002778926],[50.84870848708488,44.63303145051938],[50.8739087390874,44.629654295979606],[50.895508955089554,44.621211409630206],[50.931509315093166,44.597571327851824],[50.96030960309605,44.57055409153372],[50.971109711097114,44.56548835972407],[50.99270992709927,44.56886551426382],[51.00351003510036,44.56548835972407],[51.01071010710109,44.558734050644546],[51.007110071100726,44.55197974156499],[50.9999099991,44.54691400975537],[50.99270992709927,44.545225432485466],[51.007110071100726,44.52833965978664],[51.032310323103246,44.51651961889746],[51.115111151111506,44.48781380530946],[51.14391143911439,44.48443665076971],[51.172711727117274,44.48612522803958],[51.20151201512016,44.491190959849234],[51.22671226712268,44.499633846198634],[51.27711277112772,44.53847112340594],[51.28071280712808,44.54184827794572],[51.28431284312845,44.545225432485466],[51.28431284312845,44.54860258702524],[51.29151291512915,44.55197974156499],[51.298712987129875,44.553668318834895],[51.323913239132395,44.55197974156499],[51.33831338313385,44.553668318834895],[51.36711367113671,44.56042262791442],[51.38151381513816,44.56042262791442],[51.374313743137435,44.52833965978664],[51.40311403114032,44.52158535070711],[51.47151471514715,44.531716814326415],[51.53631536315365,44.509765309817936],[51.56151561515617,44.51145388708781],[51.57231572315723,44.52327392797699],[51.56871568715687,44.53847112340594],[51.55431554315544,44.55029116429512],[51.53991539915401,44.56042262791442],[51.47871478714788,44.5823741324229],[51.43911439114393,44.60939136874103],[51.41391413914141,44.61276852328078],[51.36711367113671,44.6009484823916],[51.32031320313203,44.59588275058195],[51.29151291512915,44.61445710055065],[51.25911259112593,44.68875450042552],[51.23391233912341,44.719148891283396],[51.20151201512016,44.741100395791875],[51.122311223112234,44.77824909572928],[51.11151111511117,44.785003404808805],[51.10431104311044,44.79175771388836],[51.097110971109714,44.79682344569801],[51.06111061110613,44.80020060023776],[51.05031050310504,44.803577754777535],[51.046710467104674,44.81033206385706],[51.03591035910361,44.817086372936586],[50.971109711097114,44.847480763794465],[50.963909639096386,44.86436653649329],[50.96030960309605,44.88631804100177],[50.963909639096386,44.90658096824038],[50.981909819098206,44.915023854589776],[50.989109891098906,44.91840100912955],[50.99270992709927,44.92684389547895],[50.99270992709927,44.936975359098255],[50.99270992709927,44.94372966817778],[50.97830978309784,44.94879539998743],[50.96750967509675,44.94879539998743],[50.95310953109532,44.95217255452721],[50.94950949509496,44.963992595416386],[50.96030960309605,44.97918979084534],[50.981909819098206,44.98932125446461],[51.007110071100726,44.99607556354417],[51.02871028710288,44.99776414081404],[51.0539105391054,44.99607556354417],[51.064710647106466,44.99776414081404],[51.07911079110792,45.00451844989357],[51.08631086310865,45.01127275897309],[51.097110971109714,45.02478137713217],[51.107911079110806,45.0315356862117],[51.15111151111512,45.053487190720176],[51.17631176311764,45.061930077069576],[51.197911979119795,45.06530723160935],[51.21231212312125,45.056864345259925],[51.23031230312304,45.0399785725611],[51.2519125191252,45.026469954402046],[51.273512735127355,45.02478137713217],[51.28071280712808,45.03828999529122],[51.273512735127355,45.056864345259925],[51.25911259112593,45.07712727249853],[51.248312483124835,45.09063589065758],[51.24471244712447,45.10076735427688],[51.248312483124835,45.11258739516606],[51.25551255512556,45.124407436055236],[51.25911259112593,45.13453889967454],[51.25551255512556,45.141293208754064],[51.248312483124835,45.15649040418302],[51.24471244712447,45.16155613599267],[51.2519125191252,45.17506475415172],[51.26271262712629,45.19195052685055],[51.29511295112951,45.2257220722482],[51.298712987129875,45.24091926767716],[51.30951309513097,45.257805040375985],[51.39591395913959,45.33210244025082],[51.40671406714068,45.34898821294965],[51.41031410314105,45.37093971745813],[51.41391413914141,45.38951406742683],[51.42831428314284,45.3810711810774],[51.45711457114572,45.34729963567975],[51.49311493114931,45.33547959479057],[51.54351543515435,45.33547959479057],[51.59391593915939,45.34392248114],[51.626316263162636,45.360808253838826],[51.658716587165884,45.38613691288705],[51.66951669516695,45.38951406742683],[51.69111691116913,45.38782549015693],[51.69831698316983,45.39289122196658],[51.71631716317165,45.40977699466541],[51.727117271172716,45.43003992190401],[51.73791737917381,45.44692569460284],[51.759517595175964,45.45705715822214],[51.77031770317703,45.44692569460284],[51.78111781117812,45.43341707644376],[51.78831788317885,45.41990845828471],[51.79191791917921,45.404711262855756],[51.87831878318784,45.39457979923648],[51.89271892718929,45.391202644696705],[51.92151921519215,45.37093971745813],[51.93951939519397,45.36756256291835],[51.95751957519576,45.37093971745813],[51.98991989919901,45.391202644696705],[52.0079200792008,45.39457979923648],[52.03312033120332,45.39289122196658],[52.07272072720727,45.38444833561718],[52.09432094320945,45.3810711810774],[52.403924039240394,45.40977699466541],[52.447124471244734,45.40133410831601],[52.51912519125193,45.40808841739553],[52.56592565925661,45.40133410831601],[52.73512735127352,45.34729963567975],[52.8359283592836,45.33716817206047],[52.88632886328864,45.31859382209174],[52.907929079290795,45.31352809028209],[53.00153001530015,45.320282399361645],[53.02673026730267,45.31690524482187],[53.084330843308436,45.301708049392914],[53.109531095310956,45.30001947212304],[53.12753127531275,45.30508520393269],[53.17073170731709,45.32197097663152],[53.19593195931961,45.32703670844117],[53.19953199531997,45.328725285711045],[53.2139321393214,45.33885674933035],[53.217532175321764,45.34054532660022],[53.242732427324285,45.33547959479057],[53.24633246332465,45.333791017520696],[53.25353253532535,45.33716817206047],[53.26073260732608,45.342233903870095],[53.267932679326805,45.350676790219524],[53.26433264332644,45.360808253838826],[53.24633246332465,45.369251140188226],[53.141931419314204,45.38444833561718],[53.134731347313476,45.38951406742683],[53.12753127531275,45.396268376506356],[53.12033120331205,45.40133410831601],[53.11313113131132,45.40639984012566],[53.08073080730807,45.40808841739553],[53.033930339303396,45.418219881014835],[52.907929079290795,45.46381146730167],[52.88632886328864,45.467188621841416],[52.87552875528755,45.47056577638119],[52.857528575285755,45.489140126349895],[52.85032850328503,45.494205858159546],[52.83952839528396,45.49758301269932],[52.80352803528035,45.50096016723907],[52.756727567275675,45.516157362668025],[52.73872738727388,45.52628882628733],[52.74232742327425,45.538108867176504],[52.73872738727388,45.546551753525904],[52.731527315273155,45.55330606260546],[52.73512735127352,45.56343752622473],[52.74232742327425,45.573568989844034],[52.74232742327425,45.58032329892356],[52.73872738727388,45.58707760800311],[52.73872738727388,45.59720907162239],[52.73872738727388,45.62084915340074],[52.74592745927461,45.63942350336947],[52.756727567275675,45.65124354425865],[52.77472774727747,45.6546206987984],[52.79272792727929,45.663063585147825],[52.80352803528035,45.67994935784665],[52.82152821528217,45.71709805778406],[52.857528575285755,45.76437822134079],[52.87552875528755,45.77957541676972],[52.88632886328864,45.782952571309494],[52.91152911529116,45.78970688038902],[52.91872918729189,45.796461189468545],[52.95472954729547,45.8302327348662],[52.96912969129693,45.84711850756503],[52.98712987129872,45.885955784772335],[53.00153001530015,45.90621871201094],[53.03033030330303,45.92817021651942],[53.041130411304124,45.93661310286882],[53.04473044730449,45.94505598921822],[53.05553055530555,45.9670074937267],[53.059130591305916,45.978827534615874],[53.08073080730807,46.005844770934004],[53.0879308793088,46.02104196636296],[53.08073080730807,46.03961631633166],[53.08073080730807,46.032862007252135],[53.07713077130771,46.04805920268109],[53.08073080730807,46.06156782084014],[53.10593105931059,46.08351932534862],[53.11313113131132,46.09702794350767],[53.116731167311684,46.1139137162065],[53.12753127531275,46.18314538427168],[53.15633156331563,46.27263997957547],[53.15633156331563,46.34187164764066],[53.12753127531275,46.39421754300702],[53.084330843308436,46.434743397484226],[53.033930339303396,46.470203520151756],[53.05193051930519,46.46851494288188],[53.084330843308436,46.44994059291315],[53.10233102331023,46.443186283833626],[53.10233102331023,46.451629170183054],[53.084330843308436,46.460072056532454],[53.07713077130771,46.47526925196141],[53.07353073530737,46.49384360193011],[53.08073080730807,46.51241795189881],[53.06273062730628,46.505663642819286],[53.041130411304124,46.49046644739033],[53.01953019530197,46.478646406501156],[52.99792997929981,46.48540071558068],[52.99792997929981,46.50397506554941],[53.008730087300876,46.53099230186754],[53.041130411304124,46.5732067336146],[53.041130411304124,46.554632383645895],[53.05553055530555,46.54618949729647],[53.07353073530737,46.54450092002659],[53.0879308793088,46.55294380637599],[53.09513095130953,46.568141001804946],[53.09873098730989,46.60528970174238],[53.109531095310956,46.62217547444121],[53.116731167311684,46.6019125472026],[53.12753127531275,46.60697827901225],[53.134731347313476,46.62217547444121],[53.141931419314204,46.63568409260026],[53.15273152731527,46.63737266987013],[53.17433174331745,46.63568409260026],[53.185131851318516,46.63568409260026],[53.19593195931961,46.639061247140035],[53.19953199531997,46.64412697894966],[53.20313203132031,46.655947019838834],[53.20673206732067,46.69478429704614],[53.18873188731888,46.718424378824494],[53.15633156331563,46.7285558424438],[53.12753127531275,46.73193299698357],[53.10593105931059,46.736998728793225],[53.09873098730989,46.750507346952276],[53.10233102331023,46.78259031508006],[53.084330843308436,46.85351056041512],[53.066330663306644,46.87883921946337],[53.059130591305916,46.892347837622424],[53.05193051930519,46.89910214670195],[53.008730087300876,46.8940364148923],[52.990729907299084,46.8957249921622],[52.97272972729729,46.90923361032125],[52.93672936729368,46.94975946479843],[52.91872918729189,46.95820235114786],[52.87552875528755,46.95651377387796],[52.781927819278195,46.94300515571891],[52.72792727927279,46.94975946479843],[52.61632616326165,46.94975946479843],[52.59112591125913,46.954825196608084],[52.573125731257335,46.96157950568761],[52.53712537125372,46.98859674200574],[52.51912519125193,46.99366247381539],[52.454324543245434,47.000416782894916],[52.43632436324364,46.99872820562504],[52.42552425524255,46.990285319275614],[52.421924219242214,46.97846527838644],[52.421924219242214,46.95313661933821],[52.41832418324185,46.94469373298878],[52.37512375123751,46.9041678785116],[52.35712357123572,46.8940364148923],[52.263522635226366,46.870396333113945],[52.23472234722348,46.86870775584407],[52.20232202322023,46.8855935285429],[52.187921879218806,46.883904951273024],[52.18072180721808,46.875462064923596],[52.18432184321844,46.861953446764545],[52.187921879218806,46.85857629222477],[52.21672216722169,46.85182198314524],[52.22392223922239,46.848444828605466],[52.23112231122312,46.84169051952594],[52.238322383223846,46.83155905590664],[52.24192241922421,46.821427592287364],[52.245522455224574,46.80960755139819],[52.238322383223846,46.80623039685841],[52.112321123211245,46.812984705937936],[52.087120871208725,46.821427592287364],[52.079920799208,46.82649332409699],[52.07272072720727,46.829870478636764],[52.06912069120693,46.83662478771629],[52.06912069120693,46.85182198314524],[52.061920619206205,46.85013340587537],[52.05112051120511,46.856887714954894],[52.01872018720189,46.88052779673325],[52.0079200792008,46.8855935285429],[52.00072000720007,46.89065926035255],[51.99711997119971,46.902479301241726],[52.00432004320044,46.90923361032125],[52.01512015120153,46.91767649667068],[52.02232022320223,46.92611938302008],[52.01872018720189,46.93625084663938],[52.00072000720007,46.94131657844903],[51.98271982719828,46.9227422284803],[51.961119611196125,46.8855935285429],[51.94311943119433,46.88052779673325],[51.910719107191085,46.88052779673325],[51.87831878318784,46.88728210581277],[51.853118531185316,46.8957249921622],[51.885518855188565,46.924430805750205],[51.89631896318963,46.93118511482973],[51.87471874718747,46.93625084663938],[51.84951849518495,46.927807960289954],[51.80631806318064,46.90923361032125],[51.784717847178484,46.90923361032125],[51.76311763117633,46.91598791940078],[51.74511745117451,46.92611938302008],[51.727117271172716,46.93962800117913],[51.68751687516877,46.96157950568761],[51.676716767167676,46.97846527838644],[51.69471694716947,47.02067971013352],[51.69471694716947,47.0409426373721],[51.68031680316804,47.057828410070925],[51.65511655116552,47.0595169873408],[51.63711637116373,47.049385523721526],[51.626316263162636,47.02912259648292],[51.62271622716227,47.00717109197444],[51.61191611916121,46.98859674200574],[51.59391593915939,46.986908164735866],[51.57231572315723,47.00548251470457],[51.54711547115471,47.03925406010222],[51.525515255152555,47.052762678261274],[51.5039150391504,47.0612055646107],[51.43911439114393,47.0696484509601],[51.38151381513816,47.08315706911918],[51.2519125191252,47.10341999635776],[51.21231212312125,47.120305769056586],[51.18711187111873,47.11692861451684],[51.140311403114026,47.09497711000836],[51.10431104311044,47.079779914579404],[50.971109711097114,47.0595169873408],[50.95310953109532,47.052762678261274],[50.92430924309244,47.02574544194317],[50.906309063090646,47.01899113286362],[50.89190891908919,47.022368287403395],[50.86670866708667,47.03756548283235],[50.855908559085606,47.03925406010222],[50.84510845108451,47.03756548283235],[50.84150841508415,47.02912259648292],[50.837908379083785,47.022368287403395],[50.84510845108451,47.01899113286362],[50.837908379083785,47.01054824651422],[50.75870758707589,46.91598791940078],[50.74070740707407,46.905856455781475],[50.729907299073005,46.9227422284803],[50.73350733507337,46.93456226936948],[50.75150751507516,46.954825196608084],[50.75870758707589,46.968333814767135],[50.75150751507516,46.97508812384669],[50.74070740707407,46.97002239203704],[50.704707047070485,46.94300515571891],[50.679506795067965,46.932873692099605],[50.65070650706508,46.927807960289954],[50.63270632706329,46.93456226936948],[50.61470614706147,46.93625084663938],[50.611106111061105,46.91598791940078],[50.60750607506077,46.86870775584407],[50.60030600306004,46.85182198314524],[50.585905859058585,46.83662478771629],[50.56790567905679,46.829870478636764],[50.549905499055,46.834936210446415],[50.57150571505716,46.85182198314524],[50.58230582305825,46.867019178574196],[50.578705787057885,46.87883921946337],[50.55710557105573,46.88221637400312],[50.52110521105212,46.875462064923596],[50.51390513905139,46.87208491038385],[50.503105031050325,46.86364202403442],[50.49230492304923,46.865330601304294],[50.48510485104853,46.87208491038385],[50.452704527045285,46.892347837622424],[50.44190441904419,46.8957249921622],[50.43470434704349,46.897413569432075],[50.43110431104313,46.897413569432075],[50.4239042390424,46.892347837622424],[50.41670416704167,46.88221637400312],[50.38430384303845,46.81805043774759],[50.36630366303663,46.80623039685841],[50.37350373503736,46.81973901501746],[50.37350373503736,46.85519913768502],[50.35910359103593,46.84675625133559],[50.351903519035204,46.834936210446415],[50.34830348303484,46.82311616955724],[50.34110341103411,46.812984705937936],[50.33390333903341,46.81129612866806],[50.31590315903159,46.80960755139819],[50.30510305103053,46.80623039685841],[50.2979029790298,46.80116466504876],[50.294302943029436,46.79778751050898],[50.251102511025124,46.742064460602876],[50.22950229502297,46.72517868790405],[50.21150211502115,46.7285558424438],[50.21150211502115,46.736998728793225],[50.218702187021876,46.750507346952276],[50.22230222302224,46.76063881057158],[50.21150211502115,46.76570454238123],[50.200702007020084,46.76232738784145],[50.168301683016836,46.7488187696824],[50.07830078300785,46.682964256156964],[50.04950049500496,46.64919271075931],[50.03510035100351,46.63568409260026],[50.01350013500135,46.62892978352073],[49.97749977499777,46.63230693806048],[49.96309963099631,46.62892978352073],[49.95229952299525,46.62386405171108],[49.93789937899379,46.60866685628213],[49.92709927099273,46.6019125472026],[49.89469894698948,46.590092506313425],[49.88389883898839,46.576583888154374],[49.86949869498696,46.57489531088447],[49.840698406984075,46.57996104269412],[49.82629826298265,46.57151815634472],[49.82269822698228,46.55294380637599],[49.81909819098192,46.541123765486816],[49.790297902979034,46.54787807456634],[49.77949779497797,46.56138669272542],[49.77229772297724,46.56645242453507],[49.76149761497615,46.563075269995295],[49.76149761497615,46.541123765486816],[49.757897578975786,46.53099230186754],[49.74709747097472,46.536058033677165],[49.72549725497257,46.554632383645895],[49.714697146971474,46.56138669272542],[49.70389703897041,46.55969811545555],[49.700297002970046,46.55294380637599],[49.70389703897041,46.527615147327765],[49.70389703897041,46.51917226097834],[49.639096390963914,46.576583888154374],[49.62109621096212,46.5833381972339],[49.62109621096212,46.563075269995295],[49.62829628296285,46.51917226097834],[49.606696066960666,46.527615147327765],[49.5958959589596,46.52086083824824],[49.588695886958874,46.50904079735906],[49.57789577895781,46.49890933373976],[49.57069570695708,46.522549415518114],[49.556295562955626,46.53436945640729],[49.498694986949886,46.55294380637599],[49.480694806948065,46.56138669272542],[49.469894698947,46.5732067336146],[49.469894698947,46.595158238123076],[49.469894698947,46.563075269995295],[49.473494734947366,46.54618949729647],[49.487894878948794,46.53436945640729],[49.49509495094952,46.50904079735906],[49.50229502295025,46.49890933373976],[49.49149491494916,46.49890933373976],[49.47709477094773,46.505663642819286],[49.46629466294664,46.505663642819286],[49.455494554945545,46.50904079735906],[49.45909459094591,46.51748368370846],[49.46269462694627,46.52592657005789],[49.46269462694627,46.532680879137416],[49.45909459094591,46.536058033677165],[49.43749437494375,46.549566651836244],[49.430294302943025,46.554632383645895],[49.423094230942326,46.55125522910612],[49.423094230942326,46.54281234275672],[49.423094230942326,46.53943518821694],[49.39069390693908,46.54450092002659],[49.354693546935465,46.55294380637599],[49.322293222932245,46.568141001804946],[49.304293042930425,46.58840392904355],[49.31149311493115,46.56138669272542],[49.379893798937985,46.51072937462894],[49.39429394293944,46.478646406501156],[49.37629376293765,46.48371213831081],[49.33669336693367,46.48540071558068],[49.33309333093331,46.48540071558068],[49.31869318693188,46.497220756469886],[49.30789307893079,46.51241795189881],[49.297092970929725,46.52423799278799],[49.279092790927905,46.52592657005789],[49.279092790927905,46.51917226097834],[49.29349293492936,46.50735222008916],[49.297092970929725,46.487089292850584],[49.304293042930425,46.46682636561198],[49.329493294932945,46.45669490199268],[49.36549365493656,46.429677665674575],[49.36909369093692,46.42123477932515],[49.372693726937285,46.411103315705844],[49.372693726937285,46.39928327481667],[49.36549365493656,46.389151811197394],[49.32589325893261,46.411103315705844],[49.30789307893079,46.424611933864924],[49.29349293492936,46.438120552023975],[49.279092790927905,46.45331774745293],[49.26469264692648,46.46344921107223],[49.25029250292505,46.470203520151756],[49.22509225092253,46.470203520151756],[49.23589235892359,46.465137788342105],[49.24309243092432,46.45838347926258],[49.25029250292505,46.44994059291315],[49.25029250292505,46.43305482021432],[49.253892538925385,46.424611933864924],[49.29349293492936,46.39590612027692],[49.28629286292863,46.39421754300702],[49.279092790927905,46.389151811197394],[49.26469264692648,46.39590612027692],[49.18549185491855,46.41448047024562],[49.17469174691749,46.41279189297575],[49.16749167491676,46.40941473843597],[49.171091710917125,46.39928327481667],[49.178291782917825,46.39252896573714],[49.18909189091892,46.389151811197394],[49.19989199892001,46.389151811197394],[49.21429214292144,46.380708924847966],[49.221492214922165,46.36044599760939],[49.22509225092253,46.34187164764066],[49.22509225092253,46.33342876129126],[49.228692286922865,46.32836302948161],[49.26469264692648,46.29290290681408],[49.297092970929725,46.27432855684535],[49.304293042930425,46.26250851595617],[49.297092970929725,46.2523770523369],[49.28269282692827,46.250688475066994],[49.26469264692648,46.25744278414652],[49.25029250292505,46.26757424776582],[49.23229232292323,46.27263997957547],[49.196291962919645,46.277705711385124],[49.16029160291603,46.291214329544175],[49.14229142291424,46.309788679512906],[49.16749167491676,46.32836302948161],[49.14949149491497,46.33511733856113],[49.13869138691388,46.33005160675148],[49.120691206912085,46.30641152497313],[49.08829088290884,46.29459148408395],[49.077490774907744,46.286148597734524],[49.08109081090811,46.27263997957547],[49.070290702907045,46.26757424776582],[49.06669066690668,46.26419709322607],[49.05949059490595,46.2523770523369],[49.08829088290884,46.250688475066994],[49.10629106291063,46.24055701144769],[49.11349113491136,46.220294084209115],[49.120691206912085,46.15950530249333],[49.11349113491136,46.15106241614393],[49.0918909189092,46.162882457033106],[49.08469084690847,46.171325343382506],[49.070290702907045,46.19158827062111],[49.05949059490595,46.19665400243076],[49.04149041490416,46.19665400243076],[49.03429034290343,46.188211116081334],[49.027090270902704,46.179768229731934],[49.019890198902004,46.17639107519216],[48.994689946899484,46.171325343382506],[48.95508955089551,46.14937383887403],[48.93348933489335,46.1426195297945],[48.93348933489335,46.135865220714976],[48.951489514895144,46.11222513893662],[48.95508955089551,46.10715940712697],[48.951489514895144,46.09871652077754],[48.94068940689408,46.08858505715827],[48.93348933489335,46.08520790261849],[48.926289262892624,46.090273634428144],[48.92268922689229,46.11222513893662],[48.91548915489156,46.1324880661752],[48.89748897488977,46.14768526160415],[48.87948879488795,46.15612814795358],[48.88308883088831,46.1426195297945],[48.886688866888676,46.122356602555925],[48.886688866888676,46.10715940712697],[48.87228872288725,46.117290870746274],[48.85428854288543,46.14093095252463],[48.839888398884,46.14937383887403],[48.83268832688327,46.1426195297945],[48.850688506885064,46.125733757095674],[48.868688686886884,46.100405098047446],[48.875888758887584,46.07845359353897],[48.85788857888579,46.073387861729316],[48.843488434884364,46.08689647988837],[48.83268832688327,46.10715940712697],[48.818288182881844,46.1240451798258],[48.793087930879324,46.127422334365576],[48.818288182881844,46.103782252587195],[48.82908829088291,46.08689647988837],[48.82548825488254,46.06663355264979],[48.818288182881844,46.05650208903049],[48.80748807488075,46.05650208903049],[48.80028800288002,46.064944975379916],[48.79668796687969,46.07676501626909],[48.78228782287823,46.09702794350767],[48.74628746287465,46.11897944801615],[48.7138871388714,46.12911091163545],[48.70308703087031,46.11560229347637],[48.69588695886961,46.11560229347637],[48.685086850868515,46.122356602555925],[48.67788677886779,46.12066802528602],[48.66708667086672,46.10715940712697],[48.66708667086672,46.10209367531732],[48.66708667086672,46.095339366237795],[48.66348663486636,46.090273634428144],[48.65628656286563,46.08689647988837],[48.62748627486275,46.08689647988837],[48.6418864188642,46.08014217080884],[48.67428674286742,46.073387861729316],[48.68868688686888,46.06663355264979],[48.72108721087213,46.03117342998226],[48.72468724687246,46.02441912090271],[48.72828728287283,46.019353389093084],[48.72108721087213,46.00922192547378],[48.710287102871035,45.997401884584605],[48.69948699486994,45.99233615277495],[48.685086850868515,45.98895899823518],[48.67068670686709,45.983893266425525],[48.6490864908649,45.970384648266474],[48.6490864908649,45.96363033918695],[48.65268652686527,45.96025318464717],[48.65628656286563,45.95687603010742],[48.67788677886779,45.9686960709966],[48.69948699486994,45.97207322553635],[48.73908739087392,45.970384648266474],[48.75348753487535,45.96531891645682],[48.75348753487535,45.95349887556765],[48.75348753487535,45.94167883467847],[48.742687426874284,45.92310448470977],[48.742687426874284,45.91466159836034],[48.74988749887498,45.90621871201094],[48.75708757087571,45.90284155747116],[48.75708757087571,45.88764436204221],[48.78228782287823,45.858938548454205],[48.793087930879324,45.8403641984855],[48.7750877508775,45.850495662104805],[48.76428764287644,45.85218423937468],[48.742687426874284,45.8403641984855],[48.72108721087213,45.83867562121563],[48.7138871388714,45.8319213121361],[48.71748717487176,45.81334696216737],[48.69588695886961,45.828544157596326],[48.685086850868515,45.84880708483493],[48.69228692286924,45.86907001207351],[48.710287102871035,45.88257863023256],[48.69228692286924,45.880890052962684],[48.67788677886779,45.885955784772335],[48.65628656286563,45.90284155747116],[48.6490864908649,45.90453013474104],[48.6418864188642,45.907907289280814],[48.63828638286384,45.90959586655069],[48.63108631086311,45.90959586655069],[48.62748627486275,45.912973021090465],[48.62388623886238,45.92479306197964],[48.62028620286205,45.92985879378929],[48.59508595085953,45.9585646073773],[48.57348573485734,45.970384648266474],[48.55548555485555,45.9670074937267],[48.5230852308523,45.95349887556765],[48.5158851588516,45.94674456648812],[48.508685086850875,45.939990257408596],[48.49428494284945,45.939990257408596],[48.47628476284763,45.94167883467847],[48.46548465484656,45.939990257408596],[48.458284582845835,45.93154737105917],[48.433084330843315,45.916350175630214],[48.400684006840066,45.87920147569281],[48.39348393483937,45.86738143480363],[48.37908379083791,45.87582432115303],[48.36468364683648,45.87582432115303],[48.357483574835754,45.86907001207351],[48.36108361083612,45.85724997118433],[48.375483754837546,45.853872816644554],[48.407884078840794,45.85218423937468],[48.41508415084152,45.84374135302528],[48.400684006840066,45.83529846667585],[48.30348303483035,45.8403641984855],[48.28908289082892,45.836987043945726],[48.28548285482856,45.828544157596326],[48.28548285482856,45.815035539437275],[48.28548285482856,45.79983834400832],[48.27828278282783,45.78632972584927],[48.27108271082713,45.77957541676972],[48.249482494824946,45.77113253042032],[48.23508235082352,45.76775537588054],[48.224282242822426,45.76775537588054],[48.22068220682209,45.76437822134079],[48.224282242822426,45.75086960318171],[48.22788227882279,45.74242671683231],[48.23508235082352,45.733983830482885],[48.242282422824246,45.725540944133485],[48.242282422824246,45.71034374870453],[48.217082170821726,45.725540944133485],[48.181081810818114,45.739049562292536],[48.148681486814866,45.74411529410219],[48.13428134281344,45.72385236686361],[48.091080910809126,45.74918102591184],[48.08028080280803,45.75086960318171],[48.06228062280624,45.74580387137206],[48.04428044280445,45.72722952140336],[48.02628026280263,45.72216378959371],[48.01908019080193,45.71878663505396],[48.0118801188012,45.712032325974405],[48.00828008280084,45.70021228508523],[48.00108001080011,45.70527801689488],[47.990279902799045,45.71709805778406],[47.98667986679868,45.720475212323834],[47.98307983079832,45.72385236686361],[47.97587975879759,45.72891809867323],[47.96867968679689,45.73229525321301],[47.96147961479616,45.73229525321301],[47.95427954279543,45.72891809867323],[47.95067950679507,45.725540944133485],[47.92907929079291,45.72216378959371],[47.91827918279185,45.71540948051418],[47.896678966789665,45.6934579760057],[47.89307893078933,45.69683513054548],[47.8858788587886,45.71034374870453],[47.87507875078751,45.72216378959371],[47.86067860678608,45.72385236686361],[47.84987849878499,45.71709805778406],[47.846278462784625,45.70696659416478],[47.846278462784625,45.67994935784665],[47.83547835478356,45.65968643060805],[47.83547835478356,45.649554966988774],[47.85347853478535,45.64280065790922],[47.846278462784625,45.63098061702004],[47.839078390783925,45.62253773067064],[47.82827828278283,45.614094844321215],[47.81747817478177,45.60734053524169],[47.77787777877779,45.65293212152852],[47.770677706777064,45.66644073968757],[47.763477634776365,45.68163793511653],[47.75267752677527,45.690080821465955],[47.720277202772024,45.69683513054548],[47.71667716677169,45.70021228508523],[47.70947709477096,45.70865517143466],[47.7058770587706,45.71034374870453],[47.69867698676987,45.70865517143466],[47.695076950769504,45.70527801689488],[47.69147691476917,45.703589439625006],[47.687876878768805,45.703589439625006],[47.67707677076771,45.70527801689488],[47.669876698766984,45.70527801689488],[47.66627666276665,45.70696659416478],[47.65907659076592,45.71372090324431],[47.65187651876519,45.720475212323834],[47.64827648276483,45.733983830482885],[47.644676446764464,45.74073813956244],[47.6338763387634,45.75086960318171],[47.619476194761944,45.75931248953114],[47.605076050760516,45.76437822134079],[47.579875798757996,45.77113253042032],[47.55827558275584,45.77113253042032],[47.55107551075511,45.76268964407089],[47.554675546755476,45.74411529410219],[47.56547565475657,45.74073813956244],[47.579875798757996,45.74411529410219],[47.59067590675909,45.74411529410219],[47.59067590675909,45.74073813956244],[47.605076050760516,45.71878663505396],[47.605076050760516,45.71709805778406],[47.612276122761244,45.71372090324431],[47.619476194761944,45.71372090324431],[47.62667626676267,45.70865517143466],[47.62307623076231,45.69683513054548],[47.62307623076231,45.68839224419605],[47.62667626676267,45.67826078057678],[47.62667626676267,45.671506471497224],[47.61587615876161,45.668129316957476],[47.60867608676088,45.668129316957476],[47.605076050760516,45.6647521624177],[47.60867608676088,45.65968643060805],[47.612276122761244,45.6546206987984],[47.60867608676088,45.63942350336947],[47.62307623076231,45.63098061702004],[47.662676626766284,45.62253773067064],[47.644676446764464,45.592143339812736],[47.644676446764464,45.578634721653685],[47.65187651876519,45.55837179441508],[47.62667626676267,45.55837179441508],[47.61587615876161,45.570191835304286],[47.59787597875979,45.60734053524169],[47.587075870758724,45.62591488521039],[47.54027540275405,45.66644073968757],[47.529475294752956,45.66981789422735],[47.48267482674828,45.668129316957476],[47.47187471874719,45.67319504876713],[47.45747457474576,45.68839224419605],[47.43227432274324,45.695146553275606],[47.435874358743604,45.703589439625006],[47.44667446674467,45.712032325974405],[47.453874538745396,45.71709805778406],[47.46467464674649,45.71878663505396],[47.504275042750436,45.71709805778406],[47.479074790747916,45.730606675943136],[47.42507425074251,45.733983830482885],[47.41427414274145,45.747492448641964],[47.40707407074072,45.75086960318171],[47.39627396273963,45.752558180451615],[47.385473854738564,45.75086960318171],[47.378273782737836,45.74073813956244],[47.3818738187382,45.733983830482885],[47.410674106741084,45.71372090324431],[47.41427414274145,45.70865517143466],[47.410674106741084,45.695146553275606],[47.41427414274145,45.690080821465955],[47.42147421474215,45.6833265123864],[47.428674286742876,45.676572203306876],[47.43227432274324,45.674883626037],[47.4430744307443,45.676572203306876],[47.44667446674467,45.676572203306876],[47.453874538745396,45.671506471497224],[47.46467464674649,45.65968643060805],[47.468274682746824,45.6546206987984],[47.51507515075153,45.649554966988774],[47.53307533075332,45.64448923517912],[47.55107551075511,45.627603462480295],[47.54747547475475,45.62084915340074],[47.55107551075511,45.61071768978147],[47.55827558275584,45.59889764889229],[47.569075690756904,45.573568989844034],[47.57267572675727,45.56681468076451],[47.57267572675727,45.55837179441508],[47.569075690756904,45.55330606260546],[47.554675546755476,45.54486317625603],[47.55107551075511,45.54148602171625],[47.543875438754384,45.53642028990663],[47.52227522275223,45.54992890806568],[47.5078750787508,45.57188041257416],[47.5078750787508,45.59383191708264],[47.493474934749344,45.58538903073321],[47.493474934749344,45.57188041257416],[47.49707497074971,45.565126103494634],[47.50067500675007,45.55837179441508],[47.52587525875259,45.52460024901745],[47.536675366753684,45.507714476318625],[47.536675366753684,45.50602589904872],[47.53307533075332,45.50602589904872],[47.50067500675007,45.480697240000495],[47.49707497074971,45.47056577638119],[47.49707497074971,45.46212289003179],[47.49707497074971,45.43848280825341],[47.49707497074971,45.43003992190401],[47.479074790747916,45.42159703555458],[47.41787417874178,45.426662767364235],[47.39267392673926,45.423285612824486],[47.3818738187382,45.41146557193531],[47.39627396273963,45.404711262855756],[47.4430744307443,45.40133410831601],[47.45747457474576,45.39795695377623],[47.461074610746124,45.391202644696705],[47.453874538745396,45.3810711810774],[47.44667446674467,45.37431687199788],[47.43227432274324,45.369251140188226],[47.428674286742876,45.36756256291835],[47.42507425074251,45.364185408378574],[47.42147421474215,45.35743109929905],[47.39627396273963,45.320282399361645],[47.385473854738564,45.30001947212304],[47.378273782737836,45.28144512215434],[47.378273782737836,45.20208199046985],[47.37107371073711,45.18519621777102],[47.35667356673568,45.18519621777102],[47.33867338673389,45.19195052685055],[47.31347313473137,45.1970162586602],[47.29547295472955,45.186884795040896],[47.28467284672848,45.16662186780232],[47.27387273872739,45.12103028151549],[47.25947259472596,45.08557015884793],[47.252272522725235,45.06530723160935],[47.227072270722715,45.03322426348157],[47.21267212672129,44.991009831734516],[47.201872018720195,44.97074690449591],[47.18027180271804,44.97750121357544],[47.16587165871658,44.96736974995616],[47.15507155071552,44.94879539998743],[47.14427144271443,44.928532472748856],[47.14067140671406,44.93866393636813],[47.126271262712635,44.950483977257335],[47.11187111871121,44.958926863606735],[47.09747097470975,44.95554970906696],[47.09747097470975,44.94710682271756],[47.11187111871121,44.869432268302944],[47.08307083070832,44.817086372936586],[47.07947079470796,44.80020060023776],[47.07947079470796,44.785003404808805],[47.07227072270723,44.785003404808805],[47.0578705787058,44.803577754777535],[47.02187021870219,44.84241503198484],[47.01467014670146,44.85761222741377],[47.01107011070113,44.901515236430726],[47.0038700387004,44.92177816366933],[46.98946989469894,44.915023854589776],[46.98226982269824,44.8930723500813],[46.993069930699306,44.869432268302944],[47.0038700387004,44.847480763794465],[47.01107011070113,44.83059499109564],[47.0038700387004,44.817086372936586],[46.97146971469715,44.78331482753893],[46.96066960669609,44.76474047757023],[46.942669426694266,44.77487194118953],[46.924669246692474,44.771494786649754],[46.88866888668886,44.75123185941118],[46.867068670686706,44.741100395791875],[46.85626856268564,44.72590320036292],[46.841868418684186,44.709017427664094],[46.83106831068312,44.69719738677492],[46.791467914679146,44.705640273124345],[46.766267662676626,44.68200019134596],[46.74466744667447,44.65329437775796],[46.723067230672314,44.65498295502786],[46.715867158671585,44.638097182329034],[46.708667086670886,44.57055409153372],[46.71226712267122,44.567176936993945],[46.71946719467195,44.558734050644546],[46.723067230672314,44.55029116429512],[46.71946719467195,44.545225432485466],[46.708667086670886,44.545225432485466],[46.69426694266943,44.54353685521559],[46.683466834668366,44.53847112340594],[46.679866798668,44.52833965978664],[46.683466834668366,44.50638815527816],[46.69786697866979,44.46586230080098],[46.70146701467016,44.4455993735624],[46.71226712267122,44.43209075540332],[46.733867338673406,44.415204982704495],[46.759067590675926,44.40000778727557],[46.773467734677354,44.39494205546592],[46.816668166681666,44.39494205546592],[46.841868418684186,44.39831921000567],[46.85266852668528,44.39831921000567],[47.0038700387004,44.36792481914779],[47.025470254702554,44.35948193279839],[47.043470434704346,44.34597331463931],[47.05427054270544,44.32739896467061],[47.06867068670687,44.28349595565365],[47.07947079470796,44.26492160568495],[47.09027090270902,44.251412987525896],[47.10467104671048,44.23621579209694],[47.12267122671227,44.22270717393789],[47.13707137071373,44.21764144212824],[47.14787147871479,44.21426428758846],[47.16587165871658,44.20413282396916],[47.18027180271804,44.20244424669929],[47.1910719107191,44.20919855577881],[47.20907209072092,44.22608432847764],[47.22347223472235,44.23115006028729],[47.24507245072451,44.21257571031859],[47.26667266672666,44.16867270130163],[47.28827288272885,44.09268672415692],[47.3170731707317,44.05722660148936],[47.33507335073352,44.04034082879056],[47.34947349473495,44.031897942441134],[47.35667356673568,44.02007790155196],[47.385473854738564,43.95591196529642],[47.410674106741084,43.925517574438516],[47.42507425074251,43.90863180173969],[47.428674286742876,43.884991719961334],[47.43227432274324,43.876548833611935],[47.453874538745396,43.87148310180228],[47.461074610746124,43.85966306091311],[47.461074610746124,43.85122017456368],[47.44667446674467,43.8292686700552],[47.4430744307443,43.819137206435926],[47.453874538745396,43.822514360975674],[47.468274682746824,43.82589151551545],[47.48267482674828,43.82420293824555],[47.48987489874901,43.81576005189615],[47.504275042750436,43.78029992922862],[47.504275042750436,43.770168465609316],[47.49707497074971,43.765102733799665],[47.468274682746824,43.760037001990014],[47.45747457474576,43.75497127018036],[47.45027450274503,43.74652838383096],[47.4430744307443,43.738085497481535],[47.43227432274324,43.716133992973056],[47.453874538745396,43.689116756654954],[47.45027450274503,43.68236244757543],[47.4430744307443,43.67729671576578],[47.435874358743604,43.673919561226],[47.428674286742876,43.66885382941635],[47.40707407074072,43.636770861288596],[47.39267392673926,43.60637647043069],[47.378273782737836,43.61650793404999],[47.37467374673747,43.61988508858977],[47.36747367473674,43.61988508858977],[47.36747367473674,43.60299931589094],[47.37107371073711,43.57935923411256],[47.378273782737836,43.55909630687398],[47.38907389073893,43.550653420524554],[47.403474034740356,43.54389911144503],[47.403474034740356,43.5270133387462],[47.403474034740356,43.511816143317276],[47.42507425074251,43.50337325696785],[47.45027450274503,43.5185704523968],[47.46467464674649,43.55234199779446],[47.47547475474755,43.59286785227164],[47.47547475474755,43.63001655220904],[47.479074790747916,43.64352517036812],[47.48267482674828,43.653656633987396],[47.48987489874901,43.662099520336824],[47.50067500675007,43.672230983956126],[47.5078750787508,43.68573960211518],[47.504275042750436,43.71444541570318],[47.5078750787508,43.72626545659236],[47.52227522275223,43.74821696110084],[47.53307533075332,43.77523419741897],[47.54027540275405,43.80394001100697],[47.543875438754384,43.83264582459498],[47.54027540275405,43.854597329103456],[47.543875438754384,43.86472879272276],[47.554675546755476,43.87823741088181],[47.587075870758724,43.898500338120414],[47.594275942759424,43.90187749266016],[47.62667626676267,43.90018891539029],[47.65187651876519,43.89681176085051],[47.67707677076771,43.88836887450111],[47.70227702277023,43.87486025634203],[47.644676446764464,43.8292686700552],[47.60147601476015,43.765102733799665],[47.543875438754384,43.62832797493917],[47.518675186751864,43.520259029666676],[47.48987489874901,43.46284740249067],[47.48267482674828,43.422321548013485],[47.48267482674828,43.3801071162664],[47.49707497074971,43.346335570868746],[47.48987489874901,43.32944979816992],[47.486274862748644,43.310875448201216],[47.493474934749344,43.29567825277229],[47.5078750787508,43.292301098232514],[47.53307533075332,43.32100691182052],[47.554675546755476,43.32607264363017],[47.569075690756904,43.33451552997957],[47.57627576275763,43.32944979816992],[47.58347583475836,43.32100691182052],[47.587075870758724,43.31256402547112],[47.587075870758724,43.29905540731204],[47.579875798757996,43.292301098232514],[47.57627576275763,43.28723536642286],[47.56547565475657,43.26866101645416],[47.54747547475475,43.256840975564984],[47.518675186751864,43.243332357405905],[47.504275042750436,43.234889471056505],[47.486274862748644,43.212937966548026],[47.48267482674828,43.20280650292872],[47.48987489874901,43.180854998420244],[47.486274862748644,43.172412112070845],[47.479074790747916,43.16059207118167],[47.479074790747916,43.14877203029249],[47.48267482674828,43.13864056667319],[47.48267482674828,43.12682052578401],[47.47547475474755,43.118377639434584],[47.461074610746124,43.10486902127553],[47.453874538745396,43.09980328946588],[47.453874538745396,43.08122893949718],[47.461074610746124,43.020440157781394],[47.529475294752956,42.96133995333551],[47.59067590675909,42.94276560336678],[47.59787597875979,42.9309455624776],[47.605076050760516,42.91743694431855],[47.62307623076231,42.905616903429376],[47.69867698676987,42.86677962622207],[47.70227702277023,42.86171389441242],[47.70947709477096,42.838073812634065],[47.713077130771325,42.83300808082441],[47.70947709477096,42.82287661720511],[47.71667716677169,42.77390787637853],[47.71667716677169,42.7570221036797],[47.720277202772024,42.7570221036797],[47.71667716677169,42.7468906400604],[47.71667716677169,42.73675917644111],[47.71667716677169,42.696233321963916],[47.72747727477275,42.66246177656626],[47.75267752677527,42.63713311751802],[47.839078390783925,42.60505014939025],[47.86787867878681,42.58478722215166],[47.939879398794005,42.48178400868882],[47.99387993879941,42.41930664970316],[48.022680226802265,42.39228941338503],[48.08028080280803,42.36189502252715],[48.09468094680949,42.35007498163796],[48.22068220682209,42.17446294557017],[48.249482494824946,42.145757131982165],[48.28548285482856,42.120428472933924],[48.30348303483035,42.103542700235096],[48.31068310683108,42.08159119572662],[48.31428314283144,42.05963969121814],[48.325083250832506,42.03937676397955],[48.38628386283864,41.936373550516706],[48.41508415084152,41.91442204600823],[48.4618846188462,41.900913427849176],[48.508685086850875,41.894159118769636],[48.55188551885519,41.875584768800934],[48.57708577085771,41.84519037794304],[48.58068580685807,41.84519037794304],[48.5878858788588,41.838436068863516],[48.62028620286205,41.82492745070445],[48.65628656286563,41.80128736892608],[48.742687426874284,41.708415619082544],[48.77868778687787,41.6830869600343],[48.793087930879324,41.66788976460536],[48.79668796687969,41.64256110555712],[48.86508865088652,41.5851494783811],[48.90468904689047,41.52267211939544],[48.92268922689229,41.5176063875858],[48.94068940689408,41.504097769426735],[48.95508955089551,41.488900573997796],[48.962289622896236,41.47539195583873],[48.98388983889839,41.45006329679049],[48.99108991089912,41.44499756498084],[48.994689946899484,41.43993183317119],[49.019890198902004,41.43486610136155],[49.027090270902704,41.43148894682177],[49.04149041490416,41.414603174122945],[49.077490774907744,41.357191546946936],[49.10989109891099,41.30991138339023],[49.12429124291245,41.2930256106914],[49.13509135091351,41.274451260722685],[49.14229142291424,41.252499756214206],[49.153091530915304,41.16638231545019],[49.16029160291603,41.14780796548149],[49.171091710917125,41.14105365640195],[49.178291782917825,41.129233615512774],[49.196291962919645,41.056624792907826],[49.24309243092432,40.99752458846193],[49.36189361893619,40.89452137499909],[49.372693726937285,40.882701334109896],[49.38349383493835,40.86581556141107],[49.40149401494017,40.85230694325202],[49.448294482944846,40.83204401601343],[49.469894698947,40.83542117055319],[49.49149491494916,40.82360112966401],[49.50949509495095,40.806715356965185],[49.52749527495277,40.79827247061577],[49.538295382953834,40.78814100699647],[49.53469534695347,40.76618950248799],[49.51669516695168,40.72904080255057],[49.50949509495095,40.70877787531198],[49.50949509495095,40.69864641169269],[49.50949509495095,40.68851494807339],[49.51669516695168,40.681760638993865],[49.52749527495277,40.6682520208348],[49.531095310953106,40.66318628902515],[49.538295382953834,40.654743402675734],[49.556295562955626,40.64123478451667],[49.57789577895781,40.62941474362749],[49.588695886958874,40.624349011817856],[49.631896318963186,40.62266043454797],[49.65349653496537,40.619283280008204],[49.6678966789668,40.612528970928665],[49.70389703897041,40.58888888915031],[49.72549725497257,40.5804460028009],[49.77229772297724,40.575380270991246],[49.815498154981555,40.56524880737196],[49.840698406984075,40.56356023010207],[49.85869858698587,40.56693738464183],[49.91269912699127,40.58382315734066],[49.93789937899379,40.58720031188042],[50.05310053100533,40.58382315734066],[50.06030060300603,40.57875742553101],[50.06390063900639,40.57031453918161],[50.067500675006755,40.56356023010207],[50.07110071100712,40.556805921022544],[50.08910089100891,40.539920148323716],[50.11070110701107,40.52641153016465],[50.12870128701289,40.51796864381524],[50.218702187021876,40.50446002565617],[50.23670236702367,40.49601713930676],[50.24750247502476,40.48081994387782],[50.26190261902619,40.45886843936934],[50.276302763027644,40.436916934860875],[50.294302943029436,40.42678547124157],[50.31590315903159,40.42171973943192],[50.33750337503375,40.40652254400298],[50.351903519035204,40.38625961676439],[50.35910359103593,40.3659966895258],[50.369903699036996,40.28325640330155],[50.377103771037724,40.274813516952136],[50.38430384303845,40.25623916698342],[50.39150391503915,40.23428766247494],[50.38790387903879,40.22077904431589],[50.369903699036996,40.249484857903894],[50.34830348303484,40.274813516952136],[50.32310323103232,40.2967650214606],[50.27270272702728,40.327159412318494],[50.251102511025124,40.33560229866791],[50.22950229502297,40.34235660774743],[50.18630186301863,40.347422339557085],[50.14670146701468,40.35755380317639],[50.12870128701289,40.35924238044626],[50.117901179011795,40.35755380317639],[50.10350103501037,40.35417664863661],[50.092700927009275,40.35079949409685],[50.05670056700569,40.35079949409685],[50.03870038700387,40.34573376228721],[50.00270002700029,40.32378225777873],[49.98469984699847,40.32378225777873],[49.97749977499777,40.32884798958838],[49.96309963099631,40.34404518501732],[49.95589955899561,40.35079949409685],[49.94509945099452,40.35417664863661],[49.919899198992,40.35755380317639],[49.89469894698948,40.369373844065564],[49.87309873098732,40.36093095771615],[49.840698406984075,40.337290875937796],[49.8478984789848,40.31365079415943],[49.81909819098192,40.291699289650964],[49.77949779497797,40.27650209422201],[49.71109711097111,40.264682053332834],[49.65349653496537,40.23766481701472],[49.57789577895781,40.21740188977611],[49.55989559895599,40.207270426156825],[49.52029520295204,40.17349888075917],[49.50229502295025,40.165055994409755],[49.49149491494916,40.15323595352058],[49.49149491494916,40.13297302628199],[49.49509495094952,40.10595578996386],[49.49509495094952,40.09413574907468],[49.44109441094412,40.07893855364574],[49.43389433894339,40.06374135821679],[49.43389433894339,40.0434784309782],[49.448294482944846,40.02321550373961],[49.45909459094591,40.01477261739019],[49.473494734947366,40.00632973104078],[49.480694806948065,39.999575421961254],[49.48429484294843,39.98944395834195],[49.47709477094773,39.982689649262426],[49.469894698947,39.977623917452775],[49.45189451894521,39.96411529929371],[49.44109441094412,39.962426722023835],[49.43389433894339,39.957360990214184],[49.42669426694269,39.94722952659488],[49.423094230942326,39.935409485705705],[49.423094230942326,39.92696659935629],[49.42669426694269,39.9067036721177],[49.44109441094412,39.88475216760922],[49.44469444694448,39.872932126720045],[49.43749437494375,39.86111208583087],[49.430294302943025,39.85435777675134],[49.423094230942326,39.84929204494169],[49.4158941589416,39.84422631313204],[49.4158941589416,39.83409484951275],[49.4158941589416,39.8290291177031],[49.41949419494196,39.82396338589345],[49.423094230942326,39.817209076813924],[49.423094230942326,39.810454767734385],[49.4158941589416,39.80538903592473],[49.40149401494017,39.79694614957532],[49.39429394293944,39.78174895414638],[49.39429394293944,39.77668322233673],[49.40149401494017,39.7699289132572],[49.397893978939805,39.75642029509814],[49.40149401494017,39.74291167693907],[49.423094230942326,39.717583017890846],[49.423094230942326,39.70914013154143],[49.40869408694087,39.70069724519202],[49.38349383493835,39.690565781572715],[49.35829358293583,39.66692569979436],[49.33669336693367,39.64666277255577],[49.31869318693188,39.62133411350753],[49.31869318693188,39.6044483408087],[49.30789307893079,39.587562568109874],[49.297092970929725,39.565611063601395],[49.289892898929,39.54197098182304],[49.28629286292863,39.52170805458445],[49.28629286292863,39.49469081826632],[49.297092970929725,39.47611646829762],[49.38709387093871,39.41026195477218],[49.40149401494017,39.40013049115289],[49.40869408694087,39.38662187299383],[49.40869408694087,39.38155614118418],[49.405094050940505,39.378178986644414],[49.397893978939805,39.34440744124676],[49.397893978939805,39.335964554897345],[49.40869408694087,39.32414451400817],[49.39429394293944,39.32921024581782],[49.38709387093871,39.33427597762747],[49.379893798937985,39.342718863976884],[49.372693726937285,39.3511617503263],[49.36549365493656,39.3511617503263],[49.36909369093692,39.335964554897345],[49.379893798937985,39.31907878219852],[49.39069390693908,39.305570164039466],[49.40869408694087,39.29712727769005],[49.40869408694087,39.28868439134064],[49.38349383493835,39.29375012315029],[49.36909369093692,39.305570164039466],[49.35829358293583,39.320767359468405],[49.30789307893079,39.34609601851665],[49.271892718927205,39.335964554897345],[49.246692466924685,39.3106358958491],[49.23589235892359,39.278552927721336],[49.23949239492396,39.16879540517897],[49.23589235892359,39.15697536428978],[49.228692286922865,39.138401014321076],[49.21429214292144,39.10631804619331],[49.21069210692107,39.091120850764355],[49.20709207092071,39.055660728096825],[49.203492034920345,39.033709223588346],[49.19269192691928,39.01682345088952],[49.11709117091172,38.97460901914245],[49.077490774907744,38.96278897825327],[49.052290522905224,38.98136332822199],[49.05589055890559,38.993183369111165],[49.05589055890559,39.00162625546058],[49.05589055890559,39.00669198727023],[49.06669066690668,39.015134873619644],[49.10989109891099,39.02188918269917],[49.12429124291245,39.028643491778695],[49.13869138691388,39.04384068720765],[49.145891458914605,39.06410361444624],[49.14949149491497,39.08267796441494],[49.13509135091351,39.10294089165353],[49.11709117091172,39.10969520073307],[49.070290702907045,39.111383778002946],[49.070290702907045,39.11982666435236],[49.063090630906316,39.16204109609943],[49.05949059490595,39.17217255971873],[49.04149041490416,39.18399260060791],[49.02349023490237,39.18905833241756],[48.98028980289803,39.18736975514767],[48.9658896588966,39.18399260060791],[48.962289622896236,39.175549714258494],[48.95868958689587,39.16541825063919],[48.94788947889481,39.15190963248014],[48.94788947889481,39.14684390067049],[48.94788947889481,39.13502385978131],[48.94788947889481,39.12826955070177],[48.94068940689408,39.12489239616201],[48.937089370893716,39.12489239616201],[48.93348933489335,39.12489239616201],[48.93348933489335,39.07761223260529],[48.937089370893716,39.05228357355706],[48.951489514895144,39.03202064631846],[48.94788947889481,39.00669198727023],[48.92268922689229,38.935771741935156],[48.919089190891924,38.929017432855616],[48.89748897488977,38.893557310188086],[48.89748897488977,38.89018015564832],[48.868688686886884,38.86316291933019],[48.83268832688327,38.87160580567961],[48.83268832688327,38.83614568301208],[48.836288362883636,38.81925991031325],[48.839888398884,38.804062714884296],[48.861488614886156,38.75678255132759],[48.868688686886884,38.603122019768264],[48.875888758887584,38.434264292779986],[48.875888758887584,38.346458274746084],[48.86508865088652,38.316063883888205],[48.87228872288725,38.2958009566496],[48.875888758887584,38.24345506128324],[48.893888938889404,38.206306361345824],[48.90828908289083,38.08304022064439],[48.94788947889481,37.966528389022486],[48.94068940689408,37.94795403905377],[48.94068940689408,37.924313957275416],[48.944289442894444,37.904051030036825],[48.951489514895144,37.887165257338],[48.987489874898756,37.84326224832104],[48.987489874898756,37.83144220743186],[48.98388983889839,37.82299932108245],[48.98388983889839,37.81624501200292],[48.994689946899484,37.77740773479562],[49.01629016290164,37.738570457588324],[49.06669066690668,37.679470253142426],[49.13149131491315,37.62374720323629],[49.20709207092071,37.58153277148922],[49.36549365493656,37.5156782579638],[49.44109441094412,37.49541533072521],[49.82629826298265,37.45320089897814],[49.865898658986595,37.45826663078779],[49.90189901899021,37.47008667167697],[49.93429934299343,37.47515240348662],[49.97029970299704,37.45995520805768],[49.95949959499595,37.45826663078779],[49.94869948699488,37.46164378532755],[49.941499414994155,37.46164378532755],[49.93429934299343,37.45320089897814],[50.017100171001715,37.4278722399299],[50.150301503015044,37.404232158151544],[50.19710197101972,37.389034962722604],[50.225902259022604,37.36539488094424],[50.22230222302224,37.32993475827671],[50.23310233102333,37.31473756284775],[50.243902439024396,37.27927744018022],[50.25470254702549,37.264080244751284],[50.269102691026916,37.247194472052456],[50.29070290702907,37.19315999941621],[50.32310323103232,37.152634144939015],[50.35550355503557,37.12730548589079],[50.43110431104313,37.08340247687383],[50.477904779047805,37.034433736047234],[50.49230492304923,37.027679426967694],[50.51390513905139,37.02261369515806],[50.62550625506256,36.96351349071216],[50.64350643506435,36.9601363361724],[50.65790657906581,36.955070604362746],[50.686706867068665,36.928053368044615],[50.704707047070485,36.91792190442533],[50.85950859508597,36.850378813630016],[51.00351003510036,36.767638527405765],[51.089910899108986,36.73724413654787],[51.36711367113671,36.69334112753093],[51.54711547115471,36.65112669578386],[51.73071730717308,36.62410945946574],[51.910719107191085,36.58189502771867],[52.09432094320945,36.60215795495726],[52.259922599226,36.65112669578386],[52.429124291242914,36.684898241181514],[52.60912609126092,36.71191547749963],[52.77832778327783,36.740621291087635],[52.95112951129511,36.78114714556483],[53.116731167311684,36.82167300004201],[53.44793447934481,36.88246178175778],[53.49113491134912,36.887527513567434],[53.887138871388714,36.90610186353615],[53.95913959139591,36.9196104816952],[54.005940059400615,36.95338202709286],[54.005940059400615,36.914544749885565],[53.94833948339485,36.89934755445661],[53.87633876338765,36.8909046681072],[53.829538295382974,36.88077320448791],[53.81873818738188,36.87570747267826],[53.804338043380454,36.877396049948146],[53.77553775537757,36.88415035902767],[53.761137611376114,36.88246178175778],[53.735937359373594,36.87401889540837],[53.7179371793718,36.87064174086861],[53.660336603366034,36.877396049948146],[53.60993609936099,36.877396049948146],[53.61713617136172,36.865576009058955],[53.63153631536315,36.86219885451919],[53.6639366393664,36.86388743178908],[53.64233642336424,36.85713312270954],[53.63513635136351,36.85713312270954],[53.660336603366034,36.831804463661314],[53.69993699937001,36.81660726823236],[53.854738547385494,36.80478722734318],[53.872738727387286,36.79803291826366],[53.89073890738908,36.79296718645401],[54.013140131401315,36.82167300004201],[54.02754027540277,36.82842730912154],[54.03474034740347,36.845313081820365],[54.03474034740347,36.94831629528322],[54.02754027540277,36.96689064525192],[54.013140131401315,36.97364495433145],[53.99513995139952,36.9787106861411],[53.99873998739989,36.99390788157005],[54.02034020340204,37.027679426967694],[53.99513995139952,37.05807381782559],[53.980739807398095,37.09353394049313],[53.95913959139591,37.177962803987256],[53.92673926739269,37.24381731751268],[53.92313923139233,37.257325935671744],[53.912339123391234,37.34344337643577],[53.89793897938981,37.46839809440708],[53.89073890738908,37.508923948884274],[53.872738727387286,37.547761226091566],[53.86553865538656,37.56802415333017],[53.861938619386194,37.611927162347115],[53.82593825938261,37.74532476666785],[53.80793807938079,38.03238290254791],[53.811538115381154,38.04758009797685],[53.822338223382246,38.081351643374504],[53.83313833138331,38.1303203842011],[53.85833858338583,38.206306361345824],[53.854738547385494,38.233323597663954],[53.86553865538656,38.26540656579172],[53.86913869138692,38.30762099753879],[53.861938619386194,38.38191839741363],[53.861938619386194,38.38867270649315],[53.85113851138513,38.40386990192211],[53.847538475384766,38.41231278827151],[53.8439384393844,38.42244425189081],[53.8439384393844,38.4427071791294],[53.829538295382974,38.503495960845186],[53.82593825938261,38.52544746535365],[53.836738367383674,38.60649917430803],[53.847538475384766,38.64702502878521],[53.861938619386194,38.679107996912975],[53.90873908739087,38.73820820135887],[53.92673926739269,38.77366832402642],[53.9159391593916,38.804062714884296],[53.930339303393055,38.81250560123371],[53.94113941139412,38.831079951202426],[53.94473944739448,38.85134287844102],[53.955539555395575,38.868228651139844],[53.96633966339664,38.88173726929891],[53.97713977139773,38.9020001965375],[53.98433984339843,38.91550881469655],[53.97353973539737,38.91382023742668],[53.969939699397,38.93408316466527],[53.95913959139591,38.94421462828457],[53.92313923139233,38.95434609190386],[53.92313923139233,38.95603466917375],[53.91953919539196,38.96447755552316],[53.9159391593916,38.96785471006292],[53.912339123391234,38.9695432873328],[53.90153901539017,38.972920441872574],[53.89793897938981,38.97460901914245],[53.89073890738908,38.98136332822199],[53.887138871388714,38.988117637301514],[53.88353883538835,38.998249100920816],[53.88353883538835,39.008380564540104],[53.872738727387286,39.028643491778695],[53.85833858338583,39.035397800858235],[53.822338223382246,39.03708637812811],[53.797137971379726,39.04215210993776],[53.786337863378634,39.04215210993776],[53.77553775537757,39.038774955398],[53.771937719377206,39.033709223588346],[53.76833768337684,39.03033206904858],[53.75753757537575,39.038774955398],[53.746737467374686,39.05397215082694],[53.728737287372894,39.10125231438366],[53.721537215372166,39.111383778002946],[53.710737107371074,39.10462946892342],[53.71433714337144,39.08774369622459],[53.72513725137253,39.07254650079565],[53.73233732337323,39.06241503717635],[53.73233732337323,39.0573493053667],[53.71433714337144,39.06410361444624],[53.69993699937001,39.07930080987518],[53.696336963369646,39.097875159843895],[53.703537035370374,39.12489239616201],[53.696336963369646,39.14177816886084],[53.696336963369646,39.15190963248014],[53.703537035370374,39.15866394155967],[53.73233732337323,39.17217255971873],[53.703537035370374,39.175549714258494],[53.703537035370374,39.195812641497085],[53.72513725137253,39.24140422778392],[53.703537035370374,39.2329613414345],[53.67473674736749,39.216075568735675],[53.660336603366034,39.200878373306736],[53.67473674736749,39.194124064227196],[53.685536855368554,39.08267796441494],[53.671136711367126,39.097875159843895],[53.645936459364606,39.12320381889214],[53.63513635136351,39.138401014321076],[53.63153631536315,39.15697536428978],[53.63153631536315,39.17723829152838],[53.62433624336245,39.19243548695732],[53.602736027360294,39.194124064227196],[53.60633606336063,39.20594410511639],[53.60993609936099,39.22114130054533],[53.60993609936099,39.236338495974266],[53.59913599135993,39.24140422778392],[53.5919359193592,39.23464991870439],[53.577535775357774,39.2042555278465],[53.56673566735668,39.194124064227196],[53.56313563135632,39.216075568735675],[53.570335703357046,39.24646995959357],[53.58833588335884,39.30388158676958],[53.55953559535595,39.2819300822611],[53.577535775357774,39.31739020492864],[53.58113581135811,39.33089882308771],[53.57393573935741,39.32752166854793],[53.552335523355254,39.32414451400817],[53.56673566735668,39.34440744124676],[53.56313563135632,39.35285032759617],[53.54873548735489,39.347784595786536],[53.53433534335343,39.33089882308771],[53.52713527135273,39.33765313216723],[53.51633516335164,39.33258740035758],[53.47313473134733,39.33089882308771],[53.45153451534517,39.31739020492864],[53.444334443344445,39.31907878219852],[53.444334443344445,39.33765313216723],[53.43713437134372,39.33765313216723],[53.42993429934299,39.32752166854793],[53.419134191341925,39.31739020492864],[53.40473404734047,39.3106358958491],[53.39033390333904,39.3106358958491],[53.393933939339405,39.31739020492864],[53.40473404734047,39.33765313216723],[53.39753397533977,39.33765313216723],[53.38313383133831,39.33765313216723],[53.37593375933761,39.33765313216723],[53.37233372333725,39.335964554897345],[53.36513365133652,39.33089882308771],[53.36153361533616,39.33089882308771],[53.35793357933579,39.33258740035758],[53.35073350733509,39.342718863976884],[53.34713347133473,39.34440744124676],[53.33633336333364,39.341030286706996],[53.30753307533075,39.33089882308771],[53.293132931329325,39.33089882308771],[53.293132931329325,39.33765313216723],[53.30033300333005,39.34440744124676],[53.29673296732969,39.34947317305641],[53.28953289532896,39.3511617503263],[53.27513275132753,39.3511617503263],[53.26433264332644,39.35285032759617],[53.24993249932501,39.361293213945586],[53.23913239132392,39.36467036848535],[53.217532175321764,39.36467036848535],[53.17073170731709,39.35285032759617],[53.14913149131493,39.34440744124676],[53.185131851318516,39.32583309127806],[53.19953199531997,39.32414451400817],[53.17793177931779,39.300504432229815],[53.17433174331745,39.28868439134064],[53.17073170731709,39.27179861864181],[53.17073170731709,39.25491284594298],[53.185131851318516,39.2143869914658],[53.18153181531815,39.18905833241756],[53.17073170731709,39.17723829152838],[53.159931599315996,39.17892686879826],[53.13833138331384,39.320767359468405],[53.13113131131311,39.33427597762747],[53.0879308793088,39.383244718454065],[53.084330843308436,39.40013049115289],[53.09513095130953,39.420393418391484],[53.10233102331023,39.4288363047409],[53.13113131131311,39.45078780924938],[53.13833138331384,39.45923069559879],[53.141931419314204,39.47273931375784],[53.14553145531457,39.48455935464703],[53.167131671316724,39.49637939553621],[53.17793177931779,39.51495374550491],[53.2139321393214,39.5943168771894],[53.242732427324285,39.63653130893647],[53.27513275132753,39.66523712252447],[53.31473314733148,39.65848281344495],[53.293132931329325,39.650039927095534],[53.27873278732787,39.63990846347623],[53.24993249932501,39.607825495348465],[53.242732427324285,39.59938260899905],[53.235532355323556,39.570676795411046],[53.23193231932319,39.56729964087128],[53.210332103321036,39.550413868172456],[53.217532175321764,39.525085209124214],[53.25353253532535,39.52170805458445],[53.36513365133652,39.53859382728328],[53.42633426334265,39.5352166727435],[53.44793447934481,39.530150940933865],[53.45873458734587,39.518330900044674],[53.4659346593466,39.503133704615735],[53.47673476734769,39.487936509186795],[53.49113491134912,39.481182200107256],[53.50913509135091,39.47611646829762],[53.552335523355254,39.47442789102773],[53.56673566735668,39.467673581948205],[53.577535775357774,39.467673581948205],[53.58113581135811,39.47780504556749],[53.58113581135811,39.487936509186795],[53.577535775357774,39.49469081826632],[53.570335703357046,39.49975655007597],[53.55953559535595,39.50144512734586],[53.57393573935741,39.52677378639409],[53.58473584735847,39.523396631854325],[53.59913599135993,39.508199436425386],[53.61713617136172,39.49469081826632],[53.63513635136351,39.49469081826632],[53.6639366393664,39.5166423227748],[53.685536855368554,39.52170805458445],[53.69273692736928,39.52001947731456],[53.71433714337144,39.509888013695274],[53.72513725137253,39.508199436425386],[53.735937359373594,39.518330900044674],[53.73233732337323,39.52846236366398],[53.721537215372166,39.53690525001339],[53.710737107371074,39.543659559092916],[53.68913689136892,39.550413868172456],[53.645936459364606,39.55885675452187],[53.627936279362814,39.570676795411046],[53.645936459364606,39.57405394995081],[53.653136531365334,39.58249683630022],[53.65673656736567,39.592628299919525],[53.645936459364606,39.607825495348465],[53.63153631536315,39.61795695896777],[53.620736207362086,39.62133411350753],[53.570335703357046,39.61626838169788],[53.56673566735668,39.623022690777404],[53.56673566735668,39.64159704074612],[53.56313563135632,39.6534170816353],[53.55593555935559,39.66523712252447],[53.545135451354525,39.675368586143776],[53.53433534335343,39.68043431795343],[53.5379353793538,39.64666277255577],[53.5379353793538,39.63146557712682],[53.53433534335343,39.63146557712682],[53.49833498334985,39.67705716341365],[53.469534695346965,39.69563151338237],[53.444334443344445,39.70069724519202],[53.44793447934481,39.69563151338237],[53.45873458734587,39.67368000887389],[53.45153451534517,39.67705716341365],[53.43713437134372,39.68381147249319],[53.42993429934299,39.68718862703295],[53.42993429934299,39.66692569979436],[53.44793447934481,39.648351349825646],[53.45153451534517,39.63146557712682],[53.41553415534156,39.650039927095534],[53.4119341193412,39.685500049763064],[53.42993429934299,39.76317460417768],[53.419134191341925,39.75810887236803],[53.40473404734047,39.75642029509814],[53.393933939339405,39.75810887236803],[53.38313383133831,39.76317460417768],[53.38313383133831,39.7699289132572],[53.41553415534156,39.78174895414638],[53.4659346593466,39.83916058132239],[53.49833498334985,39.86617781764052],[53.494734947349485,39.87124354945017],[53.48753487534876,39.88137501306946],[53.48393483934839,39.88475216760922],[53.494734947349485,39.88981789941887],[53.50193501935021,39.89150647668876],[53.52353523535237,39.893195053958635],[53.5379353793538,39.89657220849841],[53.5379353793538,39.90332651757794],[53.53073530735307,39.91008082665746],[53.52713527135273,39.913457981197226],[53.5379353793538,39.92527802208642],[53.552335523355254,39.935409485705705],[53.56673566735668,39.94891810386477],[53.57393573935741,39.96749245383347],[53.570335703357046,39.9658038765636],[53.56673566735668,39.96411529929371],[53.56313563135632,39.96411529929371],[53.55953559535595,39.96073814475395],[53.545135451354525,39.97424676291301],[53.52713527135273,39.977623917452775],[53.49113491134912,39.97424676291301],[53.47673476734769,39.97931249472266],[53.45153451534517,39.99619826742149],[53.43713437134372,40.002952576501016],[53.419134191341925,40.00632973104078],[53.40113401134013,40.00632973104078],[53.38673386733868,40.002952576501016],[53.368733687336885,39.9945096901516],[53.32553325533257,39.95904956748407],[53.31113311133112,39.95398383567442],[53.30393303933039,39.95229525840453],[53.28953289532896,39.942163794785245],[53.28233282332823,39.940475217515356],[53.27513275132753,39.942163794785245],[53.25713257132571,39.95229525840453],[53.24993249932501,39.95398383567442],[53.23913239132392,39.957360990214184],[53.17073170731709,39.997886844691365],[53.15633156331563,39.992821112881714],[53.141931419314204,39.98100107199254],[53.12753127531275,39.97424676291301],[53.05193051930519,39.96749245383347],[53.059130591305916,39.977623917452775],[53.066330663306644,39.9843782265323],[53.07353073530737,39.98944395834195],[53.08073080730807,39.9945096901516],[53.01233012330124,39.977623917452775],[52.97632976329763,39.97424676291301],[52.94392943929441,39.98100107199254],[52.92592925929259,40.01139546285043],[52.915129151291524,40.02152692646972],[52.89712897128973,40.00801830831067],[52.89712897128973,39.997886844691365],[52.90432904329043,39.9843782265323],[52.91872918729189,39.96411529929371],[52.92232922329225,39.95229525840453],[52.92952929529295,39.89657220849841],[52.93672936729368,39.888129322149],[52.965529655296564,39.857734931291105],[52.97632976329763,39.852669199481454],[53.01233012330124,39.79694614957532],[53.04473044730449,39.774994645066855],[53.05193051930519,39.7699289132572],[53.05193051930519,39.76317460417768],[53.00513005130051,39.78343753141627],[53.01953019530197,39.774994645066855],[53.04833048330485,39.747977408748724],[53.041130411304124,39.7412230996692],[53.008730087300876,39.76655175871744],[52.99432994329945,39.780060376876506],[52.965529655296564,39.832406272242864],[52.95112951129511,39.84591489040193],[52.91872918729189,39.857734931291105],[52.90432904329043,39.87462070398993],[52.89712897128973,39.894883631228524],[52.89352893528937,39.93372090843583],[52.882728827288275,39.94554094932501],[52.78912789127892,40.004641153770905],[52.75312753127531,40.03165839008902],[52.73872738727388,40.0536098945975],[52.74592745927461,40.097512903614444],[52.75312753127531,40.12115298539281],[52.76032760327604,40.13635018082175],[52.76752767527677,40.15323595352058],[52.756727567275675,40.17181030348928],[52.731527315273155,40.200516117077285],[52.74232742327425,40.2089590034267],[52.73872738727388,40.219090467046],[52.71712717127173,40.23597623974483],[52.699126991269935,40.27312493968225],[52.70272702727027,40.311962216889555],[52.73512735127352,40.48419709841758],[52.74952749527495,40.51796864381524],[52.77112771127713,40.550051611943005],[52.832328323283235,40.61421754819855],[52.86472864728648,40.6581205572155],[52.86832868328685,40.69358067988304],[52.857528575285755,40.70033498896257],[52.832328323283235,40.70540072077222],[52.82872828728287,40.71215502985174],[52.82872828728287,40.72059791620116],[52.8359283592836,40.739172266169874],[52.8359283592836,40.742549420709636],[52.832328323283235,40.7459265752494],[52.84672846728469,40.75099230705905],[52.86112861128612,40.7560580388687],[52.86832868328685,40.7560580388687],[52.87192871928721,40.764500925218115],[52.86832868328685,40.77632096610729],[52.86472864728648,40.784763852456706],[52.86112861128612,40.78982958426636],[52.88632886328864,40.86581556141107],[52.92232922329225,40.941801538555794],[52.92952929529295,40.97557308395345],[52.91872918729189,41.044804752018635],[52.915129151291524,41.08533060649583],[52.92592925929259,41.07857629741629],[52.95112951129511,41.068444833797],[52.9619296192962,41.06169052471746],[52.965529655296564,41.049870483828286],[52.9619296192962,41.03805044293911],[52.958329583295836,41.02623040204993],[52.958329583295836,41.01609893843063],[52.96912969129693,40.99752458846193],[53.01233012330124,40.95531015671486],[53.01953019530197,40.93842438401603],[53.03033030330303,40.899587106808724],[53.041130411304124,40.88607848864967],[53.07353073530737,40.869192715950845],[53.07353073530737,40.86581556141107],[53.09873098730989,40.86581556141107],[53.11313113131132,40.86750413868096],[53.12033120331205,40.87256987049061],[53.10593105931059,40.85906125233154],[53.08073080730807,40.85230694325202],[53.066330663306644,40.8438640569026],[53.06993069930701,40.82866686147365],[53.07713077130771,40.821912552394124],[53.09513095130953,40.81178108877482],[53.10233102331023,40.80333820242541],[53.10593105931059,40.794895316075994],[53.10593105931059,40.78307527518682],[53.10593105931059,40.774632388837404],[53.12033120331205,40.76956665702777],[53.16353163531636,40.76787807975788],[53.18153181531815,40.76787807975788],[53.20313203132031,40.77632096610729],[53.24993249932501,40.81178108877482],[53.26433264332644,40.81684682058447],[53.24993249932501,40.78982958426636],[53.24633246332465,40.774632388837404],[53.25713257132571,40.76956665702777],[53.32913329133291,40.77632096610729],[53.339933399334,40.78138669791694],[53.339933399334,40.79151816153623],[53.339933399334,40.8050267796953],[53.343533435334365,40.81346966604471],[53.35793357933579,40.83035543874354],[53.368733687336885,40.83542117055319],[53.38313383133831,40.83204401601343],[53.38313383133831,40.82528970693389],[53.37593375933761,40.806715356965185],[53.37593375933761,40.79827247061577],[53.38313383133831,40.77800954337718],[53.39753397533977,40.76281234794823],[53.419134191341925,40.75268088432894],[53.44073440734408,40.74930372978916],[53.44793447934481,40.7459265752494],[53.46233462334624,40.737483688899985],[53.47313473134733,40.73579511163011],[53.48393483934839,40.737483688899985],[53.49113491134912,40.74086084343975],[53.50553505535055,40.74930372978916],[53.54153541535416,40.76112377067835],[53.55593555935559,40.77294381156753],[53.55953559535595,40.79320673880612],[53.55953559535595,40.837109747823064],[53.56313563135632,40.85230694325202],[53.58833588335884,40.89114422045931],[53.5919359193592,40.8928327977292],[53.60633606336063,40.8928327977292],[53.61353613536136,40.89114422045931],[53.62433624336245,40.88776706591955],[53.63153631536315,40.88101275684002],[53.63513635136351,40.87594702503037],[53.63873638736388,40.87256987049061],[53.653136531365334,40.86750413868096],[53.65673656736567,40.86581556141107],[53.65673656736567,40.85906125233154],[53.653136531365334,40.85230694325202],[53.64953649536497,40.847241211442366],[53.64953649536497,40.84555263417248],[53.65673656736567,40.82360112966401],[53.660336603366034,40.81684682058447],[53.671136711367126,40.81009251150495],[53.660336603366034,40.79658389334588],[53.65673656736567,40.78982958426636],[53.64953649536497,40.78307527518682],[53.660336603366034,40.76618950248799],[53.67473674736749,40.72566364801081],[53.69273692736928,40.707089298042106],[53.69993699937001,40.70371214350233],[53.710737107371074,40.702023566232455],[53.7179371793718,40.69864641169269],[53.72513725137253,40.68851494807339],[53.721537215372166,40.680072061723976],[53.70713707137071,40.659809134485386],[53.703537035370374,40.64967767086608],[53.721537215372166,40.62603758908773],[53.761137611376114,40.62603758908773],[53.804338043380454,40.632791898167255],[53.861938619386194,40.62603758908773],[53.879938799388015,40.63785762997691],[53.89433894338944,40.65305482540586],[53.937539375393754,40.67162917537456],[53.94833948339485,40.67331775264445],[53.95913959139591,40.67162917537456],[53.98433984339843,40.659809134485386],[54.00954009540095,40.6581205572155],[54.031140311403135,40.66318628902515],[54.04914049140493,40.66994059810469],[54.081540815408175,40.67669490718421],[54.088740887408875,40.681760638993865],[54.09234092340924,40.69020352534328],[54.0959409594096,40.69864641169269],[54.088740887408875,40.69864641169269],[54.063540635406355,40.70877787531198],[54.05274052740529,40.71553218439152],[54.11034110341103,40.71384360712163],[54.14274142741428,40.717220761661395],[54.17154171541716,40.72904080255057],[54.232742327423296,40.72904080255057],[54.23634236342363,40.72566364801081],[54.22914229142293,40.71890933893128],[54.2219422194222,40.695269257152916],[54.21834218342184,40.69020352534328],[54.2219422194222,40.6868263708035],[54.25434254342545,40.67669490718421],[54.40194401944021,40.67331775264445],[54.383943839438416,40.68344921626374],[54.36234362343623,40.68851494807339],[54.37674376743769,40.70033498896257],[54.416344163441636,40.70877787531198],[54.43074430744309,40.72059791620116],[54.32994329943301,40.72059791620116],[54.31914319143192,40.722286493471046],[54.31194311943119,40.73072937982046],[54.308343083430856,40.75268088432894],[54.30474304743049,40.76956665702777],[54.28674286742867,40.79827247061577],[54.27954279542797,40.82360112966401],[54.26874268742688,40.84048690236284],[54.265142651426515,40.848929788712255],[54.26874268742688,40.85568409779178],[54.27234272342724,40.85906125233154],[54.27594275942761,40.864126984141194],[54.27234272342724,40.87256987049061],[54.26874268742688,40.87425844776048],[54.257942579425816,40.87256987049061],[54.24714247142472,40.87425844776048],[54.24714247142472,40.88607848864967],[54.25074250742509,40.89114422045931],[54.257942579425816,40.89114422045931],[54.265142651426515,40.89114422045931],[54.27234272342724,40.8928327977292],[54.297542975429764,40.91647287950755],[54.31194311943119,40.92322718858709],[54.32994329943301,40.926604343126854],[54.358743587435896,40.91647287950755],[54.419944199442,40.87932417957013],[54.43794437944379,40.87932417957013],[54.466744667446676,40.86581556141107],[54.47034470344704,40.85230694325202],[54.45594455944561,40.83542117055319],[54.43794437944379,40.81684682058447],[54.473944739447404,40.81009251150495],[54.58914589145891,40.826978284203776],[54.625146251462525,40.837109747823064],[54.63954639546395,40.83879832509295],[54.65754657546577,40.862438406871306],[54.700747007470085,40.87932417957013],[54.70794707947081,40.884389911379785],[54.74754747547476,40.93335865220638],[54.75474754747549,40.94855584763533],[54.75834758347585,40.96544162033415],[54.75474754747549,40.982327393032975],[54.74754747547476,40.99583601119204]]],[[[109.90729907299072,-7.837818633815601],[109.88209882098823,-7.844572942895127],[109.84609846098459,-7.836130056545713],[109.81009810098101,-7.822621438386662],[109.75249752497524,-7.8124899747673595],[109.65529655296552,-7.7820955839094665],[109.48609486094864,-7.761832656670876],[109.44649446494464,-7.771964120290178],[109.42489424894251,-7.773652697560053],[109.41769417694178,-7.765209811210639],[109.41409414094142,-7.758455502131113],[109.40689406894069,-7.7550783475913505],[109.40329403294032,-7.753389770321462],[109.3960939609396,-7.748324038511811],[109.3960939609396,-7.741569729432285],[109.40329403294032,-7.731438265812997],[109.40329403294032,-7.726372534003346],[109.3960939609396,-7.722995379463583],[109.36729367293674,-7.712863915844281],[109.1980919809198,-7.695978143145453],[109.09729097290972,-7.687535256796039],[109.04689046890468,-7.701043874955104],[109.03249032490328,-7.719618224923806],[109.02169021690219,-7.731438265812997],[109.01449014490146,-7.7331268430828715],[108.9856898568986,-7.70779818403463],[108.97488974889751,-7.7027324522249785],[108.96048960489605,-7.701043874955104],[108.93888938889393,-7.699355297685216],[108.91728917289174,-7.695978143145453],[108.90288902889029,-7.689223834065928],[108.88848888488889,-7.679092370446625],[108.88128881288816,-7.631812206889904],[108.87408874088743,-7.6098607023814395],[108.85968859688597,-7.613237856921202],[108.85248852488525,-7.6183035887308534],[108.82728827288275,-7.63012362962003],[108.82008820088203,-7.638566515969444],[108.80568805688057,-7.658829443208035],[108.79848798487984,-7.663895175017686],[108.7876878768788,-7.674026638636974],[108.76248762487626,-7.69260098860569],[108.7336873368734,-7.679092370446625],[108.73008730087304,-7.6757152159068625],[108.72288722887231,-7.670649484097211],[108.71208712087122,-7.66558375228756],[108.70488704887049,-7.66558375228756],[108.69048690486903,-7.6723380613671],[108.68328683286836,-7.682469524986388],[108.67248672486727,-7.690912411335802],[108.679686796868,-7.709486761304518],[108.67608676086763,-7.719618224923806],[108.67248672486727,-7.721306802193695],[108.65088650886509,-7.716241070384044],[108.64728647286472,-7.69260098860569],[108.64008640086399,-7.687535256796039],[108.6256862568626,-7.685846679526151],[108.5608856088561,-7.687535256796039],[108.53928539285391,-7.69260098860569],[108.50688506885069,-7.719618224923806],[108.50328503285033,-7.763521233940764],[108.4960849608496,-7.792227047528769],[108.45288452884529,-7.819244283846885],[108.32688326883272,-7.817555706577011],[108.13968139681396,-7.787161315719118],[107.95247952479525,-7.739881152162397],[107.90567905679058,-7.738192574892523],[107.86607866078663,-7.744946883972048],[107.83007830078304,-7.729749688543109],[107.82647826478268,-7.701043874955104],[107.80847808478086,-7.685846679526151],[107.779677796778,-7.680780947716514],[107.7148771487715,-7.6723380613671],[107.6860768607686,-7.662206597747797],[107.67887678876792,-7.640255093239318],[107.6608766087661,-7.614926434191091],[107.62487624876252,-7.598040661492263],[107.59247592475924,-7.571023425174133],[107.55647556475566,-7.562580538824719],[107.5276752767528,-7.549071920665654],[107.48087480874807,-7.538940457046365],[107.47007470074703,-7.516988952537886],[107.45207452074521,-7.511923220728235],[107.43047430474303,-7.506857488918598],[107.42687426874272,-7.508546066188472],[107.419674196742,-7.50516891164871],[107.41247412474127,-7.495037448029407],[107.36207362073623,-7.503480334378821],[107.29727297272973,-7.496726025299296],[107.24687246872469,-7.48997171621977],[107.2108721087211,-7.484905984410119],[107.17847178471789,-7.476463098060705],[107.14607146071461,-7.466331634441403],[107.10647106471066,-7.456200170822115],[106.87246872468728,-7.437625820853398],[106.78966789667896,-7.435937243583524],[106.60966609666099,-7.417362893614808],[106.52326523265236,-7.410608584535282],[106.480064800648,-7.375148461867738],[106.45846458464587,-7.366705575518324],[106.43326433264332,-7.361639843708673],[106.40806408064083,-7.375148461867738],[106.39726397263973,-7.378525616407501],[106.39726397263973,-7.359951266438799],[106.39726397263973,-7.334622607390557],[106.37566375663755,-7.310982525612204],[106.38286382863828,-7.2670795165952455],[106.37926379263791,-7.246816589356655],[106.38646386463864,-7.229930816657827],[106.39726397263973,-7.207979312149348],[106.41526415264156,-7.1877163849107575],[106.43326433264332,-7.179273498561344],[106.45126451264514,-7.179273498561344],[106.4656646566466,-7.175896344021581],[106.47286472864732,-7.165764880402293],[106.4548645486455,-7.145501953163688],[106.47286472864732,-7.12861618046486],[106.51246512465127,-7.079647439638265],[106.54126541265413,-7.054318780590023],[106.54126541265413,-7.017170080652605],[106.53766537665376,-6.983398535254949],[106.51246512465127,-6.9631356080163584],[106.480064800648,-6.966512762556121],[106.45126451264514,-6.9546927216669445],[106.42246422464228,-6.9631356080163584],[106.40446404464046,-6.991841421604363],[106.4008640086401,-6.993529998874251],[106.37926379263791,-7.000284307953777],[106.35406354063542,-7.001972885223665],[106.33246332463324,-7.000284307953777],[106.31806318063184,-6.996907153414014],[106.31086310863111,-6.991841421604363],[106.30366303663038,-6.9884642670646],[106.28926289262893,-6.986775689794726],[106.2820628206282,-6.983398535254949],[106.27486274862747,-6.969889917095898],[106.2676626766268,-6.966512762556121],[106.25326253262534,-6.964824185286247],[106.24966249662498,-6.959758453476596],[106.24966249662498,-6.95300414439707],[106.24246242462425,-6.946249835317531],[106.23886238862389,-6.941184103507894],[106.2028620286203,-6.914166867189763],[106.16686166861672,-6.915855444459652],[106.12366123661235,-6.895592517221061],[106.05166051660518,-6.836492312775164],[106.00846008460087,-6.82129511734621],[105.97965979659796,-6.8179179628064475],[105.95805958059583,-6.8179179628064475],[105.94005940059401,-6.82129511734621],[105.91845918459188,-6.824672271885987],[105.90045900459006,-6.829738003695624],[105.8968589685897,-6.843246621854689],[105.8860588605886,-6.84831235366434],[105.87525875258751,-6.834803735505275],[105.85365853658539,-6.838180890045038],[105.82485824858247,-6.8398694673149265],[105.79245792457925,-6.844935199124578],[105.77445774457743,-6.850000930934215],[105.75645756457567,-6.844935199124578],[105.72405724057239,-6.838180890045038],[105.70245702457026,-6.836492312775164],[105.59805598055982,-6.84831235366434],[105.55485554855551,-6.855066662743866],[105.53685536855369,-6.871952435442694],[105.49725497254974,-6.860132394553517],[105.48645486454865,-6.8668867036330425],[105.47205472054719,-6.853378085473992],[105.46125461254616,-6.844935199124578],[105.44325443254434,-6.843246621854689],[105.43965439654397,-6.846623776394452],[105.42885428854288,-6.853378085473992],[105.42165421654215,-6.856755240013754],[105.41445414454148,-6.853378085473992],[105.41445414454148,-6.846623776394452],[105.40725407254075,-6.838180890045038],[105.40365403654039,-6.831426580965513],[105.39645396453966,-6.829738003695624],[105.35685356853571,-6.812852230996796],[105.31005310053104,-6.811163653726922],[105.30285302853031,-6.814540808266685],[105.29565295652958,-6.833115158235401],[105.29205292052922,-6.841558044584815],[105.28485284852849,-6.846623776394452],[105.2740527405274,-6.850000930934215],[105.25605256052563,-6.841558044584815],[105.2488524885249,-6.824672271885987],[105.23445234452345,-6.787523571948569],[105.22365223652235,-6.779080685599155],[105.21645216452168,-6.772326376519615],[105.22005220052199,-6.763883490170201],[105.22725227252272,-6.762194912900327],[105.259652596526,-6.767260644709964],[105.2740527405274,-6.762194912900327],[105.29205292052922,-6.748686294741262],[105.32085320853207,-6.719980481153257],[105.3280532805328,-6.7030947084544295],[105.33525335253353,-6.684520358485713],[105.34605346053462,-6.671011740326662],[105.36405364053644,-6.6642574312471226],[105.37485374853748,-6.669323163056774],[105.38925389253893,-6.68114320394595],[105.40005400054002,-6.6946518221050155],[105.40725407254075,-6.706471862994192],[105.41085410854112,-6.718291903883369],[105.41085410854112,-6.728423367502671],[105.41085410854112,-6.738554831121959],[105.43605436054361,-6.779080685599155],[105.43965439654397,-6.794277881028094],[105.45405454054543,-6.8094750764570335],[105.47205472054719,-6.816229385536573],[105.49005490054901,-6.8094750764570335],[105.5008550085501,-6.790900726488331],[105.51885518855187,-6.743620562931611],[105.52965529655296,-6.72335763569302],[105.60885608856091,-6.650748813088057],[105.62325623256231,-6.632174463119355],[105.62685626856268,-6.6152886904205275],[105.61965619656195,-6.532548404196277],[105.6448564485645,-6.481891086099793],[105.65565655656559,-6.473448199750379],[105.67725677256772,-6.475136777020268],[105.68085680856808,-6.512285476957686],[105.6988569885699,-6.5207283633071],[105.709657096571,-6.534236981466151],[105.73845738457385,-6.530859826926388],[105.78165781657816,-6.512285476957686],[105.80685806858071,-6.476825354290142],[105.82485824858247,-6.434610922543072],[105.82125821258211,-6.400839377145431],[105.8320583205832,-6.22860449561739],[105.83925839258393,-6.191455795679971],[105.86805868058684,-6.110404086725595],[105.88965889658897,-6.0698782322484135],[105.95805958059583,-5.998957986913339],[105.96525965259656,-5.992203677833814],[105.9760597605976,-5.9837607914844],[105.99765997659978,-5.917906277958977],[106.01926019260196,-5.892577618910735],[106.05166051660518,-5.880757578021559],[106.0840608406084,-5.885823309831196],[106.10566105661059,-5.911151968879437],[106.11286112861131,-5.975317905134986],[106.11646116461168,-5.985449368754274],[106.12726127261271,-5.990515100563925],[106.15966159661599,-6.009089450532642],[106.17766177661775,-6.014155182342293],[106.21006210062103,-5.998957986913339],[106.23166231662316,-5.966875018785572],[106.2568625686257,-5.94154635973733],[106.30006300063002,-5.944923514277093],[106.36126361263615,-5.993892255103688],[106.38646386463864,-6.000646564183228],[106.40806408064083,-6.004023718722991],[106.46926469264696,-6.0344181095808835],[106.49446494464945,-6.0344181095808835],[106.51246512465127,-6.024286645961581],[106.52686526865267,-6.0124666050724045],[106.54846548465486,-6.005712295992879],[106.66366663666639,-6.007400873262753],[106.68526685266852,-6.0124666050724045],[106.7068670686707,-6.020909491421818],[106.72126721267216,-6.031040955041107],[106.72846728467283,-6.0479267277399344],[106.7320673206732,-6.058058191359237],[106.7320673206732,-6.066501077708651],[106.73926739267392,-6.083386850407479],[106.75366753667538,-6.095206891296655],[106.79326793267933,-6.103649777646069],[106.83646836468364,-6.101961200376181],[106.98766987669876,-6.080009695867716],[106.99486994869949,-6.078321118597827],[107.00567005670058,-6.071566809518302],[107.00927009270094,-6.052992459549586],[107.01287012870131,-6.041172418660409],[107.01647016470167,-6.029352377771232],[107.00567005670058,-6.014155182342293],[106.99846998469985,-6.004023718722991],[107.00567005670058,-5.988826523294051],[107.02727027270276,-5.958432132436158],[107.02007020070204,-5.9246605870385025],[107.04527045270453,-5.9145291234192],[107.08127081270811,-5.92128343249874],[107.11367113671139,-5.938169205197568],[107.12447124471248,-5.948300668816856],[107.13527135271352,-5.961809286975921],[107.14967149671497,-5.973629327865098],[107.17127171271716,-5.980383636944637],[107.18927189271892,-5.980383636944637],[107.20367203672038,-5.97700648240486],[107.27927279272797,-5.9550549778963955],[107.31887318873191,-5.961809286975921],[107.3548735487355,-5.975317905134986],[107.38007380073805,-6.009089450532642],[107.41247412474127,-6.063123923168888],[107.44487444874449,-6.103649777646069],[107.47007470074703,-6.145864209393139],[107.50967509675098,-6.164438559361841],[107.56367563675639,-6.1847014866004315],[107.62127621276215,-6.1880786411402084],[107.65367653676537,-6.225227341077627],[107.67887678876792,-6.238735959236678],[107.70047700477005,-6.226915918347501],[107.7148771487715,-6.235358804696915],[107.73287732877327,-6.231981650157152],[107.74367743677436,-6.223538763807738],[107.76887768877691,-6.21340730018845],[107.77247772477727,-6.208341568378799],[107.78327783277831,-6.204964413839036],[107.7940779407794,-6.208341568378799],[107.80127801278013,-6.211718722918562],[107.81207812078122,-6.211718722918562],[107.81207812078122,-6.201587259299259],[107.81207812078122,-6.189767218410083],[107.82647826478268,-6.1847014866004315],[107.8480784807848,-6.191455795679971],[107.8480784807848,-6.204964413839036],[107.86247862478626,-6.2066529911089106],[107.87687876878772,-6.191455795679971],[107.88407884078839,-6.18639006387032],[107.89487894878948,-6.210030145648673],[107.89487894878948,-6.230293072887278],[107.94887948879489,-6.262376041015045],[107.9920799207992,-6.280950390983747],[108.04968049680497,-6.309656204571752],[108.07488074880752,-6.318099090921166],[108.09288092880928,-6.32654197727058],[108.11448114481146,-6.32654197727058],[108.12888128881292,-6.32654197727058],[108.14328143281432,-6.323164822730817],[108.15768157681578,-6.31134478184164],[108.18288182881832,-6.296147586412701],[108.18648186481863,-6.2944590091428125],[108.19368193681936,-6.287704700063287],[108.20448204482045,-6.27588465917411],[108.20808208082082,-6.262376041015045],[108.20448204482045,-6.250556000125869],[108.19728197281972,-6.240424536506566],[108.18648186481863,-6.231981650157152],[108.19728197281972,-6.22860449561739],[108.21528215282154,-6.238735959236678],[108.24768247682476,-6.247178845586092],[108.31248312483126,-6.24886742285598],[108.33048330483308,-6.262376041015045],[108.33768337683375,-6.250556000125869],[108.35928359283594,-6.247178845586092],[108.3628836288363,-6.2725075046343335],[108.37368373683739,-6.340050595429645],[108.45648456484565,-6.441365231622612],[108.47448474484747,-6.4514966952419],[108.48888488884887,-6.456562427051551],[108.53928539285391,-6.486956817909444],[108.57528575285755,-6.669323163056774],[108.60408604086041,-6.762194912900327],[108.66168661686618,-6.767260644709964],[108.70488704887049,-6.795966458297968],[108.7480874808748,-6.812852230996796],[108.79128791287911,-6.811163653726922],[108.83448834488348,-6.787523571948569],[108.84168841688415,-6.797655035567857],[108.85968859688597,-6.802720767377508],[108.8776887768878,-6.804409344647382],[108.88848888488889,-6.8094750764570335],[108.89568895688956,-6.814540808266685],[108.90288902889029,-6.822983694616099],[108.91008910089101,-6.834803735505275],[108.92448924489247,-6.844935199124578],[108.9460894608946,-6.850000930934215],[108.96768967689678,-6.84831235366434],[108.98208982089824,-6.841558044584815],[108.98928989289897,-6.82804942642575],[108.99288992889927,-6.806097921917271],[109.0000900009,-6.789212149218443],[109.02169021690219,-6.789212149218443],[109.04329043290431,-6.795966458297968],[109.0540905409054,-6.80103219010762],[109.09369093690935,-6.831426580965513],[109.11529115291154,-6.838180890045038],[109.1440914409144,-6.856755240013754],[109.15129151291512,-6.856755240013754],[109.17649176491767,-6.856755240013754],[109.35289352893528,-6.8753295899824565],[109.43929439294396,-6.860132394553517],[109.49329493294937,-6.80103219010762],[109.53289532895332,-6.834803735505275],[109.72729727297275,-6.86350954909328],[109.89649896498963,-6.917544021729526],[109.939699396994,-6.922609753539177],[109.98289982899831,-6.922609753539177],[110.11250112501125,-6.904035403570461],[110.1377013770138,-6.8972810944909355],[110.14850148501483,-6.887149630871647],[110.1521015210152,-6.882083899061996],[110.17010170101702,-6.860132394553517],[110.17730177301775,-6.856755240013754],[110.18810188101884,-6.860132394553517],[110.1917019170192,-6.8702638581728195],[110.19530195301957,-6.880395321792108],[110.19890198901987,-6.89052678541141],[110.21330213302133,-6.900658249030698],[110.260102601026,-6.920921176269289],[110.29250292502928,-6.931052639888591],[110.3357033570336,-6.961447030746484],[110.35730357303572,-6.973267071635661],[110.38250382503827,-6.974955648905535],[110.40050400504003,-6.96820133982601],[110.41490414904149,-6.9580698762067215],[110.43290432904331,-6.95300414439707],[110.45450454504544,-6.951315567127182],[110.47250472504726,-6.946249835317531],[110.48690486904871,-6.937806948968117],[110.52650526505266,-6.895592517221061],[110.57330573305734,-6.836492312775164],[110.64530645306456,-6.687897513025476],[110.6561065610656,-6.643994504008532],[110.66330663306633,-6.6068458040711135],[110.66330663306633,-6.564631372324044],[110.67050670506706,-6.546057022355342],[110.67770677706778,-6.534236981466151],[110.68130681306815,-6.522416940576974],[110.67050670506706,-6.5004654360685095],[110.69210692106924,-6.495399704258858],[110.70290702907027,-6.488645395179319],[110.71730717307173,-6.465005313400965],[110.73170731707319,-6.456562427051551],[110.78210782107823,-6.436299499812961],[110.80730807308072,-6.43123376800331],[110.81810818108181,-6.427856613463547],[110.83250832508327,-6.421102304384021],[110.84330843308436,-6.4177251498442445],[110.90450904509044,-6.410970840764719],[110.92610926109262,-6.404216531685194],[110.93330933309335,-6.410970840764719],[110.9621096210962,-6.427856613463547],[110.9729097290973,-6.43123376800331],[110.99090990909912,-6.432922345273198],[111.00171001710021,-6.43123376800331],[111.00531005310052,-6.427856613463547],[111.01251012510124,-6.421102304384021],[111.01971019710197,-6.426168036193658],[111.0269102691027,-6.434610922543072],[111.0269102691027,-6.437988077082849],[111.04131041310416,-6.448119540702137],[111.05211052110525,-6.456562427051551],[111.05931059310592,-6.4700710452106165],[111.06651066510665,-6.508908322417923],[111.0809108091081,-6.544368445085453],[111.12051120511205,-6.649060235818183],[111.13851138511387,-6.686208935755602],[111.1457114571146,-6.691274667565253],[111.14931149311496,-6.692963244835127],[111.15651156511564,-6.691274667565253],[111.3437134371344,-6.713226172073718],[111.36531365313652,-6.711537594803843],[111.40851408514084,-6.701406131184541],[111.43011430114302,-6.699717553914667],[111.44451444514448,-6.689586090295364],[111.4769147691477,-6.640617349468769],[111.49491494914952,-6.623731576769941],[111.52011520115201,-6.640617349468769],[111.57771577715778,-6.650748813088057],[111.610116101161,-6.6642574312471226],[111.62091620916209,-6.674388894866425],[111.65331653316537,-6.716603326613495],[111.67131671316713,-6.733489099312322],[111.69651696516968,-6.755440603820787],[111.7181171811718,-6.770637799249741],[111.73971739717399,-6.7824578401389175],[111.8081180811808,-6.799343612837745],[111.8477184771848,-6.804409344647382],[111.86571865718656,-6.807786499187159],[111.88371883718838,-6.8094750764570335],[111.90531905319057,-6.80103219010762],[111.93771937719379,-6.784146417408792],[111.95931959319591,-6.779080685599155],[111.97731977319773,-6.784146417408792],[112.00972009720095,-6.8179179628064475],[112.06732067320672,-6.893903939951173],[112.08532085320854,-6.905723980840349],[112.10692106921073,-6.910789712650001],[112.15012150121504,-6.910789712650001],[112.19332193321935,-6.904035403570461],[112.22572225722257,-6.892215362681284],[112.23652236522366,-6.89052678541141],[112.27972279722798,-6.89052678541141],[112.2977229772298,-6.887149630871647],[112.34092340923411,-6.873641012712582],[112.36252362523624,-6.8702638581728195],[112.39852398523988,-6.877018167252345],[112.41652416524164,-6.882083899061996],[112.42372423724237,-6.878706744522233],[112.4309243092431,-6.873641012712582],[112.43452434524346,-6.8702638581728195],[112.45612456124564,-6.8753295899824565],[112.47052470524704,-6.887149630871647],[112.4849248492485,-6.900658249030698],[112.49932499324996,-6.910789712650001],[112.52092520925208,-6.917544021729526],[112.54252542525427,-6.917544021729526],[112.55692556925572,-6.907412558110238],[112.5641256412564,-6.887149630871647],[112.56052560525609,-6.873641012712582],[112.5641256412564,-6.8668867036330425],[112.56772567725676,-6.865198126363168],[112.58212582125822,-6.8702638581728195],[112.58932589325894,-6.8753295899824565],[112.59652596525967,-6.885461053601759],[112.60012600126004,-6.895592517221061],[112.6037260372604,-6.904035403570461],[112.6037260372604,-6.92598690807894],[112.58572585725858,-6.964824185286247],[112.58212582125822,-6.990152844334489],[112.58572585725858,-7.000284307953777],[112.61092610926113,-7.034055853351433],[112.6181261812618,-7.040810162430972],[112.62892628926289,-7.045875894240609],[112.64332643326435,-7.039121585161084],[112.6577265772658,-7.037433007891195],[112.66492664926648,-7.054318780590023],[112.63252632526326,-7.0644502442093255],[112.6181261812618,-7.071204553288851],[112.61092610926113,-7.079647439638265],[112.61452614526144,-7.091467480527442],[112.62172621726216,-7.108353253226269],[112.63252632526326,-7.123550448655223],[112.64332643326435,-7.1303047577347485],[112.6577265772658,-7.137059066814274],[112.67572675726757,-7.153944839513102],[112.6829268292683,-7.174207766751707],[112.67932679326793,-7.192782116720409],[112.66492664926648,-7.199536425799934],[112.6037260372604,-7.192782116720409],[112.62172621726216,-7.214733621228888],[112.64692646926471,-7.229930816657827],[112.70092700927012,-7.255259475706069],[112.71532715327152,-7.238373703007241],[112.72972729727297,-7.219799353038539],[112.74412744127443,-7.204602157609585],[112.76932769327692,-7.199536425799934],[112.78372783727838,-7.206290734879474],[112.79812798127983,-7.2181107757686505],[112.80892808928093,-7.234996548467478],[112.82332823328233,-7.262013784785594],[112.82692826928269,-7.277210980214548],[112.82692826928269,-7.292408175643487],[112.81972819728196,-7.329556875580906],[112.8161281612816,-7.346442648279734],[112.8161281612816,-7.386968502756915],[112.80892808928093,-7.407231429995505],[112.76932769327692,-7.432560089043747],[112.76212762127625,-7.449445861742575],[112.76212762127625,-7.5304975706969515],[112.84492844928451,-7.592974929682612],[112.97092970929708,-7.647009402318858],[112.9889298892989,-7.652075134128509],[113.01773017730176,-7.652075134128509],[113.03573035730358,-7.655452288668272],[113.05733057330576,-7.662206597747797],[113.07533075330753,-7.679092370446625],[113.11133111331117,-7.712863915844281],[113.1329313293133,-7.72806111127322],[113.16533165331657,-7.736503997622634],[113.1869318693187,-7.744946883972048],[113.20133201332015,-7.748324038511811],[113.20853208532088,-7.746635461241937],[113.23013230132301,-7.741569729432285],[113.2409324093241,-7.739881152162397],[113.26253262532629,-7.750012615781699],[113.28413284132841,-7.7820955839094665],[113.29853298532987,-7.788849892989006],[113.32373323733236,-7.7854727384492435],[113.34173341733418,-7.7770298520998296],[113.37773377733777,-7.7550783475913505],[113.41373413734141,-7.736503997622634],[113.43533435334353,-7.729749688543109],[113.45693456934572,-7.726372534003346],[113.47133471334712,-7.721306802193695],[113.5037350373504,-7.704421029494867],[113.52893528935289,-7.701043874955104],[113.65853658536588,-7.719618224923806],[113.66933669336697,-7.717929647653932],[113.6909369093691,-7.709486761304518],[113.70173701737019,-7.706109606764755],[113.72333723337232,-7.70779818403463],[113.76293762937632,-7.722995379463583],[113.78453784537845,-7.726372534003346],[113.80253802538027,-7.721306802193695],[113.81693816938173,-7.711175338574392],[113.83853838538386,-7.685846679526151],[113.85653856538568,-7.677403793176751],[113.87093870938708,-7.677403793176751],[113.88533885338853,-7.682469524986388],[113.91053910539108,-7.685846679526151],[113.93213932139321,-7.684158102256276],[113.94653946539466,-7.677403793176751],[114.01494014940153,-7.6183035887308534],[114.04734047340474,-7.611549279651314],[114.0761407614076,-7.63012362962003],[114.1157411574116,-7.680780947716514],[114.1409414094141,-7.701043874955104],[114.17334173341732,-7.712863915844281],[114.1949419494195,-7.714552493114169],[114.23814238142381,-7.7027324522249785],[114.259742597426,-7.701043874955104],[114.2741427414274,-7.706109606764755],[114.31014310143104,-7.739881152162397],[114.32454324543244,-7.750012615781699],[114.33534335343353,-7.753389770321462],[114.34614346143462,-7.7550783475913505],[114.37134371343717,-7.753389770321462],[114.3821438214382,-7.753389770321462],[114.38934389343893,-7.758455502131113],[114.40734407344075,-7.773652697560053],[114.4469444694447,-7.793915624798643],[114.46134461344616,-7.809112820227597],[114.46854468544689,-7.831064324736076],[114.46494464944652,-7.853015829244541],[114.46134461344616,-7.89523026099161],[114.4577445774458,-7.90198457007115],[114.44334443344434,-7.920558920039852],[114.43974439744397,-7.932378960929029],[114.43974439744397,-7.944199001818205],[114.44334443344434,-7.952641888167619],[114.4469444694447,-7.959396197247159],[114.4469444694447,-7.966150506326684],[114.4469444694447,-8.013430669883405],[114.40374403744039,-8.158648315093316],[114.3677436774368,-8.357900432939473],[114.36414364143644,-8.386606246527478],[114.35694356943571,-8.408557751035957],[114.35694356943571,-8.418689214655245],[114.36054360543608,-8.430509255544422],[114.37134371343717,-8.452460760052901],[114.37494374943748,-8.498052346339733],[114.37494374943748,-8.520003850848212],[114.38934389343893,-8.528446737197626],[114.40014400144003,-8.51662669630845],[114.40374403744039,-8.491298037260208],[114.40734407344075,-8.44739502824325],[114.42174421744221,-8.464280800942078],[114.42894428944288,-8.496363769069859],[114.42534425344252,-8.562218282595282],[114.43254432544325,-8.582481209833873],[114.4469444694447,-8.602744137072463],[114.46134461344616,-8.617941332501402],[114.47934479344792,-8.624695641580942],[114.49734497344974,-8.624695641580942],[114.5117451174512,-8.628072796120705],[114.53694536945369,-8.644958568819533],[114.58734587345873,-8.663532918788235],[114.59814598145982,-8.675352959677426],[114.60174601746019,-8.688861577836477],[114.61614616146164,-8.700681618725653],[114.62694626946268,-8.715878814154607],[114.62334623346237,-8.741207473202849],[114.59814598145982,-8.774979018600504],[114.55494554945551,-8.778356173140267],[114.46854468544689,-8.747961782282374],[114.4469444694447,-8.744584627742611],[114.38934389343893,-8.747961782282374],[114.3677436774368,-8.741207473202849],[114.37134371343717,-8.726010277773895],[114.3929439294393,-8.700681618725653],[114.38574385743857,-8.665221496058123],[114.34974349743499,-8.633138527930356],[114.30294302943031,-8.611187023421877],[114.26334263342636,-8.611187023421877],[114.22014220142205,-8.636515682470119],[114.19854198541987,-8.644958568819533],[114.18774187741877,-8.63482710520023],[114.17334173341732,-8.619629909771291],[114.14814148141483,-8.623007064311054],[114.10494104941051,-8.638204259739993],[114.09414094140942,-8.638204259739993],[114.05814058140584,-8.631449950660468],[114.05094050940511,-8.626384218850816],[114.04014040140402,-8.607809868882114],[114.03294032940329,-8.604432714342352],[114.01134011340116,-8.609498446151989],[113.99333993339934,-8.617941332501402],[113.97893978939788,-8.619629909771291],[113.96813968139685,-8.604432714342352],[113.96813968139685,-8.59430125072305],[113.97173971739716,-8.57910405529411],[113.97533975339752,-8.567284014404933],[113.96453964539648,-8.562218282595282],[113.95373953739539,-8.563906859865156],[113.93213932139321,-8.574038323484459],[113.92133921339212,-8.577415478024221],[113.90693906939072,-8.574038323484459],[113.8781387813878,-8.565595437135045],[113.85293852938531,-8.555463973515742],[113.83853838538386,-8.541955355356691],[113.83133831338313,-8.547021087166328],[113.82773827738276,-8.548709664436217],[113.82773827738276,-8.550398241706105],[113.8241382413824,-8.55715255078563],[113.82053820538209,-8.541955355356691],[113.81333813338136,-8.508183809959036],[113.80613806138064,-8.501429500879496],[113.79173791737918,-8.503118078149384],[113.77373773737736,-8.508183809959036],[113.75933759337596,-8.51662669630845],[113.7557375573756,-8.525069582657864],[113.75213752137523,-8.528446737197626],[113.74133741337414,-8.528446737197626],[113.72333723337232,-8.528446737197626],[113.71973719737201,-8.525069582657864],[113.72333723337232,-8.508183809959036],[113.71973719737201,-8.501429500879496],[113.70893708937092,-8.492986614530082],[113.69813698136983,-8.492986614530082],[113.68733687336874,-8.496363769069859],[113.67293672936728,-8.49467519179997],[113.65853658536588,-8.484543728180668],[113.64053640536406,-8.459215069132426],[113.62973629736297,-8.452460760052901],[113.59733597335975,-8.44739502824325],[113.59013590135902,-8.442329296433613],[113.57933579335793,-8.428820678274548],[113.5721357213572,-8.425443523734785],[113.53973539735398,-8.430509255544422],[113.52893528935289,-8.428820678274548],[113.48933489334894,-8.408557751035957],[113.48213482134821,-8.401803441956417],[113.47853478534785,-8.395049132876892],[113.47133471334712,-8.381540514717827],[113.46773467734681,-8.378163360178064],[113.44613446134463,-8.374786205638301],[113.4281342813428,-8.383229091987715],[113.41373413734141,-8.38998340106724],[113.39573395733959,-8.381540514717827],[113.34533345333455,-8.324128887541818],[113.32373323733236,-8.308931692112878],[113.28053280532805,-8.29204591941405],[113.2409324093241,-8.280225878524874],[113.19773197731979,-8.276848723985097],[113.07173071730716,-8.29204591941405],[113.02493024930249,-8.302177383033339],[112.9889298892989,-8.324128887541818],[112.93852938529386,-8.381540514717827],[112.90252902529028,-8.403492019226306],[112.870128701287,-8.39167197833713],[112.8557285572856,-8.393360555607003],[112.83412834128342,-8.376474782908176],[112.83052830528305,-8.381540514717827],[112.82692826928269,-8.38998340106724],[112.8161281612816,-8.39673771014678],[112.80892808928093,-8.398426287416655],[112.79812798127983,-8.395049132876892],[112.7909279092791,-8.388294823797366],[112.78372783727838,-8.386606246527478],[112.76932769327692,-8.395049132876892],[112.75492754927552,-8.408557751035957],[112.7477274772748,-8.413623482845594],[112.73332733327334,-8.417000637385371],[112.71532715327152,-8.418689214655245],[112.70092700927012,-8.422066369195008],[112.69012690126902,-8.430509255544422],[112.6721267212672,-8.44739502824325],[112.6577265772658,-8.437263564623962],[112.61092610926113,-8.417000637385371],[112.57492574925749,-8.410246328305831],[112.52092520925208,-8.39167197833713],[112.44172441724419,-8.39167197833713],[112.42732427324273,-8.388294823797366],[112.41292412924128,-8.379851937447953],[112.39852398523988,-8.371409051098539],[112.37692376923769,-8.371409051098539],[112.38052380523806,-8.361277587479236],[112.38412384123842,-8.357900432939473],[112.3661236612366,-8.342703237510534],[112.34092340923411,-8.332571773891232],[112.31572315723156,-8.329194619351469],[112.29412294122943,-8.329194619351469],[112.28332283322834,-8.332571773891232],[112.25812258122585,-8.342703237510534],[112.24372243722439,-8.342703237510534],[112.23652236522366,-8.337637505700883],[112.2329223292233,-8.33426035116112],[112.22572225722257,-8.329194619351469],[112.20772207722081,-8.324128887541818],[112.02412024120241,-8.305554537573101],[112.00252002520028,-8.297111651223688],[111.970119701197,-8.278537301254985],[111.96291962919628,-8.278537301254985],[111.93771937719379,-8.295423073953813],[111.93051930519306,-8.298800228493576],[111.9269192691927,-8.302177383033339],[111.91971919719197,-8.302177383033339],[111.89811898118984,-8.297111651223688],[111.87651876518765,-8.273471569445334],[111.85851858518583,-8.268405837635683],[111.83331833318334,-8.270094414905572],[111.82251822518225,-8.268405837635683],[111.81171811718116,-8.26502868309592],[111.80091800918012,-8.258274374016395],[111.7937179371794,-8.256585796746506],[111.7829178291783,-8.261651528556158],[111.77211772117721,-8.281914455794748],[111.77211772117721,-8.302177383033339],[111.77211772117721,-8.317374578462292],[111.75051750517508,-8.324128887541818],[111.74691746917472,-8.317374578462292],[111.74331743317435,-8.305554537573101],[111.73611736117363,-8.293734496683925],[111.72531725317253,-8.288668764874288],[111.7181171811718,-8.29204591941405],[111.71091710917108,-8.302177383033339],[111.70731707317071,-8.324128887541818],[111.7037170371704,-8.32750604208158],[111.69651696516968,-8.337637505700883],[111.69651696516968,-8.346080392050297],[111.71091710917108,-8.35452327839971],[111.71091710917108,-8.361277587479236],[111.70731707317071,-8.368031896558762],[111.69651696516968,-8.371409051098539],[111.6749167491675,-8.368031896558762],[111.65331653316537,-8.357900432939473],[111.63891638916391,-8.342703237510534],[111.63171631716318,-8.324128887541818],[111.62451624516245,-8.324128887541818],[111.61371613716136,-8.337637505700883],[111.5957159571596,-8.33426035116112],[111.56331563315632,-8.317374578462292],[111.54891548915492,-8.315686001192404],[111.53451534515347,-8.325817464811706],[111.51651516515165,-8.329194619351469],[111.44811448114484,-8.312308846652641],[111.44091440914411,-8.297111651223688],[111.44451444514448,-8.285291610334511],[111.44091440914411,-8.276848723985097],[111.42651426514266,-8.268405837635683],[111.41571415714157,-8.268405837635683],[111.40131401314017,-8.275160146715223],[111.39051390513907,-8.275160146715223],[111.38331383313835,-8.273471569445334],[111.37251372513725,-8.26502868309592],[111.36171361713616,-8.261651528556158],[111.31131311313112,-8.261651528556158],[111.30051300513009,-8.263340105826046],[111.29331293312936,-8.25996295128627],[111.28251282512826,-8.251520064936855],[111.27531275312754,-8.248142910397092],[111.26451264512644,-8.249831487666981],[111.25731257312572,-8.253208642206744],[111.25371253712541,-8.258274374016395],[111.17091170911709,-8.281914455794748],[111.16371163711636,-8.281914455794748],[111.15651156511564,-8.27178299217546],[111.15651156511564,-8.261651528556158],[111.14931149311496,-8.253208642206744],[111.13851138511387,-8.249831487666981],[111.12771127711278,-8.248142910397092],[111.11331113311132,-8.241388601317567],[111.10971109711096,-8.22956856042839],[111.10971109711096,-8.216059942269325],[111.10251102511029,-8.207617055919911],[111.09531095310956,-8.207617055919911],[111.0917109171092,-8.216059942269325],[111.08811088110883,-8.22450282861874],[111.0809108091081,-8.232945714968153],[111.07371073710738,-8.246454333127218],[111.06651066510665,-8.253208642206744],[111.05931059310592,-8.254897219476632],[111.01611016110161,-8.254897219476632],[110.99810998109984,-8.249831487666981],[110.92970929709298,-8.221125674078976],[110.84690846908472,-8.200862746840386],[110.71370713707137,-8.192419860490972],[110.70650706507064,-8.190731283221083],[110.69210692106924,-8.175534087792144],[110.68130681306815,-8.172156933252381],[110.65970659706596,-8.170468355982493],[110.63810638106384,-8.162025469633079],[110.6021060210602,-8.145139696934251],[110.6021060210602,-8.151894006013777],[110.54810548105485,-8.128253924235423],[110.5229052290523,-8.11981103788601],[110.4977049770498,-8.118122460616135],[110.47610476104762,-8.111368151536595],[110.41130411304113,-8.075908028869065],[110.40050400504003,-8.074219451599177],[110.389703897039,-8.074219451599177],[110.3789037890379,-8.072530874329289],[110.37530375303754,-8.065776565249763],[110.35370353703536,-8.04213648347141],[110.34650346503469,-8.038759328931647],[110.32850328503287,-8.02187355623282],[110.31770317703177,-8.018496401693042],[110.28890288902892,-8.01511924715328],[110.03330033300335,-7.885098797372322],[109.93249932499327,-7.854704406514429],[109.90729907299072,-7.837818633815601]]],[[[-51.1871118711187,-0.6140850732574137],[-51.16191161911618,-0.6208393823369533],[-51.15111151111512,-0.637725155035767],[-51.15111151111512,-0.659676659544246],[-51.154711547115454,-0.6816281640527251],[-51.21591215912159,-0.8015171502143943],[-51.230312303123014,-0.8386658501518127],[-51.2519125191252,-0.9619319908532447],[-51.26991269912699,-1.0176550407593794],[-51.27711277112772,-1.0244093498389049],[-51.28431284312842,-1.0311636589184445],[-51.30951309513094,-1.00245784533044],[-51.331113311133095,-1.0092121544099655],[-51.41031410314102,-1.1527412223500022],[-51.43551435514354,-1.1865127677476437],[-51.557915579155775,-1.2878274039406108],[-51.59751597515975,-1.311467485718964],[-51.61191611916118,-1.314844640258741],[-51.61911619116191,-1.323287526608155],[-51.626316263162636,-1.3334189902274431],[-51.633516335163335,-1.3401732993069828],[-51.66231662316622,-1.350304762926271],[-51.66951669516695,-1.3536819174660337],[-51.66951669516695,-1.3570590720057965],[-51.67311673116731,-1.3705676901648616],[-51.676716767167676,-1.3739448447046243],[-51.68031680316804,-1.3773219992444012],[-51.69471694716947,-1.380699153784164],[-51.701917019170196,-1.3840763083239267],[-51.741517415174144,-1.4195364309914567],[-51.784717847178456,-1.4499308218493496],[-51.80631806318064,-1.4566851309288893],[-51.853118531185316,-1.4634394400084147],[-51.892718927189264,-1.4837023672470053],[-51.91431914319142,-1.4820137899771169],[-51.92871928719288,-1.4701937490879402],[-51.943119431194305,-1.4566851309288893],[-51.9539195391954,-1.4229135855312336],[-51.943119431194305,-1.3908306174034522],[-51.90351903519036,-1.3401732993069828],[-51.89631896318963,-1.3249761038780292],[-51.892718927189264,-1.3064017539093271],[-51.8891188911889,-1.2675644767020202],[-51.885518855188536,-1.2557444358128436],[-51.87111871118711,-1.243924394923667],[-51.80631806318064,-1.1932670768271834],[-51.79551795517955,-1.1898899222874206],[-51.79551795517955,-1.1848241904777694],[-51.78831788317882,-1.1628726859692904],[-51.784717847178456,-1.1594955314295277],[-51.78111781117812,-1.1544297996198765],[-51.77031770317703,-1.1510526450801137],[-51.752317523175236,-1.147675490540351],[-51.716317163171624,-1.1291011405716347],[-51.683916839168376,-1.0970181724438675],[-51.66951669516695,-1.0581808952365606],[-51.691116911169104,-1.0193436180292679],[-51.68751687516874,-0.8842574364386451],[-51.676716767167676,-0.8471087365012266],[-51.62271622716227,-0.7896971093252176],[-51.583115831158295,-0.6985139367515529],[-51.56151561515614,-0.6647423913538972],[-51.532715327153255,-0.6343480004960043],[-51.5039150391504,-0.6073307641778882],[-51.45351453514536,-0.5752477960501068],[-51.4391143911439,-0.5617391778910559],[-51.424714247142475,-0.553296291541642],[-51.37071370713707,-0.5347219415729256],[-51.356313563135615,-0.5313447870331629],[-51.349113491134915,-0.5313447870331629],[-51.356313563135615,-0.544853405192228],[-51.36351363513634,-0.5617391778910559],[-51.36711367113671,-0.5820021051296465],[-51.36711367113671,-0.5955107232887116],[-51.36711367113671,-0.602265032368237],[-51.36711367113671,-0.6056421869079998],[-51.36351363513634,-0.610707918717651],[-51.36711367113671,-0.6208393823369533],[-51.374313743137435,-0.6292822686863531],[-51.3851138511385,-0.6444794641153067],[-51.38871388713886,-0.6546109277345948],[-51.381513815138135,-0.6546109277345948],[-51.374313743137435,-0.6444794641153067],[-51.35271352713528,-0.6259051141465903],[-51.349113491134915,-0.6140850732574137],[-51.349113491134915,-0.6005764550983486],[-51.35271352713528,-0.5887564142091719],[-51.35271352713528,-0.580313527859758],[-51.34191341913419,-0.5735592187802325],[-51.34191341913419,-0.5921335687489346],[-51.33471334713346,-0.5921335687489346],[-51.33471334713346,-0.5735592187802325],[-51.32751327513276,-0.580313527859758],[-51.31671316713167,-0.5870678369392976],[-51.30951309513094,-0.5904449914790604],[-51.298712987129875,-0.5921335687489346],[-51.32031320313203,-0.5634277551609301],[-51.32751327513276,-0.5516077142717535],[-51.32751327513276,-0.5380990961126884],[-51.32751327513276,-0.5330333643030514],[-51.323913239132395,-0.5279676324934002],[-51.32031320313203,-0.5212133234138605],[-51.30951309513094,-0.5195247461439862],[-51.255512555125534,-0.5313447870331629],[-51.23751237512374,-0.5380990961126884],[-51.223112231122315,-0.5583620233512931],[-51.20151201512016,-0.6039536096381255],[-51.1871118711187,-0.6140850732574137]]],[[[139.19359193591936,-6.973267071635661],[139.17919179191796,-6.959758453476596],[139.15759157591577,-6.9546927216669445],[139.13239132391323,-6.95300414439707],[139.1215912159122,-6.9496269898573075],[139.11439114391146,-6.941184103507894],[139.06759067590679,-6.917544021729526],[138.99918999189993,-6.853378085473992],[138.9667896678967,-6.836492312775164],[138.9235892358924,-6.826360849155861],[138.85518855188553,-6.819606540076336],[138.8371883718837,-6.814540808266685],[138.8227882278823,-6.806097921917271],[138.7687876878769,-6.757129181090676],[138.74718747187472,-6.740243408391848],[138.70038700387005,-6.728423367502671],[138.68238682386823,-6.714914749343606],[138.6715867158672,-6.6946518221050155],[138.6715867158672,-6.671011740326662],[138.68238682386823,-6.6456830812784204],[138.7039870398704,-6.6456830812784204],[138.74358743587436,-6.6642574312471226],[138.76158761587618,-6.671011740326662],[138.82998829988298,-6.706471862994192],[138.70758707587078,-6.630485885849467],[138.67878678786786,-6.603468649531351],[138.6319863198632,-6.544368445085453],[138.62118621186215,-6.534236981466151],[138.60318603186033,-6.5274826723866255],[138.46638466384667,-6.402527954415305],[138.419584195842,-6.318099090921166],[138.41238412384126,-6.29108185460305],[138.39438394383944,-6.253933154665631],[138.39078390783908,-6.233670227427041],[138.39078390783908,-6.18639006387032],[138.39078390783908,-6.171192868441381],[138.37278372783732,-6.12391270488466],[138.36918369183695,-6.107026932185832],[138.3655836558366,-6.0918297367568925],[138.34758347583477,-6.071566809518302],[138.3439834398344,-6.058058191359237],[138.34038340383404,-6.0428609959302975],[138.27558275582754,-5.946612091546982],[138.26118261182614,-5.9145291234192],[138.27198271982724,-5.887511887101084],[138.30438304383046,-5.868937537132368],[138.37638376383762,-5.855428918973317],[138.40518405184054,-5.835165991734726],[138.38718387183872,-5.8368545690046005],[138.3439834398344,-5.848674609893777],[138.32238322383228,-5.850363187163666],[138.20718207182074,-5.825034528115424],[138.1819818198182,-5.8098373326864845],[138.17838178381783,-5.804771600876833],[138.17478174781746,-5.796328714527419],[138.17118171181716,-5.786197250908117],[138.1567815678157,-5.77437721001894],[138.25038250382505,-5.71865416011282],[138.30798307983082,-5.695014078334452],[138.36198361983622,-5.678128305635624],[138.3439834398344,-5.6696854192862105],[138.3187831878319,-5.671373996556099],[138.27558275582754,-5.678128305635624],[138.25398253982542,-5.679816882905513],[138.23238232382323,-5.683194037445276],[138.21438214382147,-5.6916369237946896],[138.17118171181716,-5.716965582842931],[138.15318153181533,-5.723719891922457],[138.10638106381066,-5.725408469192345],[138.08478084780847,-5.740605664621285],[138.08478084780847,-5.73891708735141],[138.0811808118081,-5.733851355541759],[138.07038070380707,-5.728785623732108],[138.07038070380707,-5.720342737382694],[138.07038070380707,-5.708522696493517],[138.0667806678067,-5.698391232874215],[138.05598055980562,-5.657865378397034],[138.05238052380525,-5.6122737921102015],[138.05598055980562,-5.5903222876017225],[138.05958059580598,-5.575125092172783],[138.07038070380707,-5.564993628553495],[138.0811808118081,-5.5548621649341925],[138.0919809198092,-5.549796433124541],[138.1027810278103,-5.548107855854667],[138.10638106381066,-5.54473070131489],[138.10998109981102,-5.534599237695602],[138.10638106381066,-5.531222083155839],[138.08478084780847,-5.522779196806425],[138.07758077580775,-5.521090619536537],[138.06318063180635,-5.510959155917249],[138.06318063180635,-5.48900765140877],[138.07398073980738,-5.4451046423918115],[138.07398073980738,-5.41977598334357],[138.07038070380707,-5.4096445197242815],[138.05958059580598,-5.40457878791463],[138.05958059580598,-5.41977598334357],[138.05238052380525,-5.4315960242327606],[138.04158041580416,-5.4366617560423975],[138.0271802718027,-5.4315960242327606],[138.03438034380343,-5.455236106011114],[138.03438034380343,-5.475499033249704],[138.0271802718027,-5.485630496869007],[137.99837998379985,-5.478876187789467],[137.98757987579876,-5.470433301440053],[137.9587795877959,-5.4315960242327606],[137.9155791557916,-5.3876930152158025],[137.90837908379086,-5.362364356167561],[137.92637926379263,-5.328592810769905],[137.9047790477905,-5.323527078960268],[137.85437854378546,-5.362364356167561],[137.82197821978218,-5.362364356167561],[137.8147781477815,-5.358987201627798],[137.80757807578078,-5.3522328925482725],[137.78237782377823,-5.318461347150617],[137.77877778777787,-5.315084192610854],[137.78237782377823,-5.298198419912026],[137.80037800378005,-5.271181183593896],[137.80757807578078,-5.252606833625194],[137.77157771577714,-5.2728697608637844],[137.749977499775,-5.277935492673436],[137.7319773197732,-5.2728697608637844],[137.71397713977143,-5.255983988164957],[137.7067770677707,-5.222212442767301],[137.69237692376925,-5.2120809791479985],[137.68157681576815,-5.2120809791479985],[137.67437674376743,-5.21714671095765],[137.6635766357664,-5.220523865497412],[137.64557645576457,-5.2120809791479985],[137.6167761677617,-5.205326670068473],[137.5987759877599,-5.196883783719059],[137.58077580775807,-5.18168658829012],[137.57357573575734,-5.166489392861166],[137.59517595175953,-5.156357929241878],[137.59517595175953,-5.149603620162338],[137.58077580775807,-5.142849311082813],[137.57357573575734,-5.120897806574334],[137.5627756277563,-5.115832074764697],[137.55557555575558,-5.120897806574334],[137.54117541175412,-5.144537888352701],[137.5339753397534,-5.149603620162338],[137.51957519575194,-5.147915042892464],[137.5087750877509,-5.142849311082813],[137.49077490774908,-5.122586383844222],[137.48357483574836,-5.117520652034571],[137.47277472774726,-5.115832074764697],[137.4691746917469,-5.110766342955046],[137.4655746557466,-5.095569147526092],[137.43317433174332,-5.104012033875506],[137.40437404374046,-5.0972577247959805],[137.3791737917379,-5.082060529367041],[137.35397353973542,-5.0617976021284505],[137.3647736477365,-5.055043293048911],[137.36837368373688,-5.046600406699497],[137.36837368373688,-5.036468943080209],[137.36837368373688,-5.026337479460906],[137.3647736477365,-5.026337479460906],[137.35037350373506,-5.0398460976199715],[137.3359733597336,-5.031403211270558],[137.30717307173074,-4.99932024314279],[137.3107731077311,-5.021271747651255],[137.29997299973002,-5.026337479460906],[137.27477274772747,-5.019583170381381],[137.2675726757268,-5.01451743857173],[137.2675726757268,-4.99932024314279],[137.2819728197282,-4.940220038696893],[137.27837278372783,-4.93684288415713],[137.23157231572316,-4.968925852284897],[137.22437224372243,-4.9824344704439625],[137.23157231572316,-4.99932024314279],[137.22077220772206,-5.012828861301841],[137.17037170371702,-4.990877356793376],[137.15237152371526,-4.973991584094549],[137.1487714877149,-4.945285770506544],[137.11637116371168,-4.9790573159041855],[137.09117091170913,-4.960482965935483],[137.08757087570876,-4.943597193236656],[137.0947709477095,-4.9216456887281765],[137.10197101971022,-4.889562720600409],[137.0947709477095,-4.889562720600409],[137.0731707317073,-4.923334265998065],[137.0407704077041,-4.943597193236656],[137.0047700477005,-4.945285770506544],[136.95436954369546,-4.923334265998065],[136.94716947169474,-4.918268534188414],[136.94356943569437,-4.909825647839],[136.9507695076951,-4.899694184219712],[136.9615696156962,-4.891251297870298],[136.97236972369723,-4.884496988790758],[136.97956979569796,-4.879431256981107],[136.96876968769686,-4.869299793361819],[136.94716947169474,-4.876054102441344],[136.8751687516875,-4.919957111458302],[136.85356853568538,-4.928399997807716],[136.8319683196832,-4.931777152347479],[136.8211682116821,-4.928399997807716],[136.81036810368107,-4.919957111458302],[136.80316803168034,-4.909825647839],[136.79956799567998,-4.899694184219712],[136.80316803168034,-4.882808411520884],[136.79956799567998,-4.879431256981107],[136.78516785167852,-4.876054102441344],[136.7635676356764,-4.87436552517147],[136.7527675276753,-4.879431256981107],[136.7419674196742,-4.881119834250995],[136.69516695166953,-4.84734828885334],[136.62676626766267,-4.822019629805098],[136.5367653676537,-4.773050888978503],[136.46476464764646,-4.735902189041084],[136.43956439564397,-4.715639261802494],[136.43236432364324,-4.712262107262731],[136.41436414364142,-4.712262107262731],[136.4035640356404,-4.70719637545308],[136.37476374763747,-4.683556293674712],[136.3567635676357,-4.676801984595187],[136.26676266762667,-4.676801984595187],[136.17676176761768,-4.649784748277071],[136.14796147961482,-4.626144666498703],[136.14436144361446,-4.622767511958941],[136.12276122761227,-4.619390357419178],[136.10836108361087,-4.6126360483396525],[136.09396093960942,-4.60250458472035],[136.07956079560796,-4.595750275640825],[136.06156061560614,-4.590684543831173],[136.0507605076051,-4.590684543831173],[136.03636036360365,-4.585618812021522],[136.01476014760146,-4.572110193862457],[135.97155971559715,-4.519764298496099],[135.94995949959502,-4.506255680337034],[135.91395913959138,-4.49781279398762],[135.82755827558276,-4.49781279398762],[135.79155791557918,-4.485992753098444],[135.77715777157772,-4.4944356394478575],[135.75195751957523,-4.49781279398762],[135.72315723157232,-4.496124216717746],[135.70875708757086,-4.489369907638206],[135.69795697956982,-4.487681330368332],[135.6547565475655,-4.485992753098444],[135.6151561515615,-4.474172712209267],[135.60435604356047,-4.469106980399616],[135.58635586355865,-4.460664094050202],[135.46755467554675,-4.445466898621262],[135.44235442354426,-4.440401166811611],[135.4279542795428,-4.430269703192309],[135.41355413554135,-4.4370240122718485],[135.35955359553594,-4.443778321351374],[135.3307533075331,-4.440401166811611],[135.27315273152732,-4.4589755167803276],[135.22635226352264,-4.460664094050202],[135.1867518675187,-4.448844053161025],[134.95994959949599,-4.3188236033800536],[134.94194941949422,-4.305314985220988],[134.9347493474935,-4.290117789792049],[134.92754927549277,-4.27492059436311],[134.90594905949058,-4.264789130743807],[134.8807488074881,-4.256346244394393],[134.86274862748627,-4.252969089854631],[134.82314823148232,-4.259723398934156],[134.81954819548196,-4.259723398934156],[134.80874808748086,-4.254657667124519],[134.7907479074791,-4.2394604716955655],[134.74034740347406,-4.2040003490280355],[134.73314733147333,-4.197246039948496],[134.72954729547297,-4.187114576329208],[134.7259472594726,-4.149965876391789],[134.72234722347224,-4.14321156731225],[134.70794707947078,-4.138145835502613],[134.6827468274683,-4.136457258232724],[134.65754657546574,-4.133080103692961],[134.6467464674647,-4.119571485533896],[134.65394653946538,-4.099308558295306],[134.68634686346866,-4.073979899247064],[134.69714697146975,-4.053716972008473],[134.69354693546939,-4.045274085659059],[134.67914679146793,-4.033454044769883],[134.67554675546756,-4.026699735690343],[134.67554675546756,-4.016568272071055],[134.67914679146793,-3.96084522216492],[134.68994689946902,-3.9473366040058693],[134.70434704347042,-3.9405822949263296],[134.72234722347224,-3.937205140386567],[134.74034740347406,-3.9388937176564554],[134.78354783547837,-3.9490251812757435],[134.86274862748627,-3.9524023358155063],[134.8807488074881,-3.9574680676251575],[134.90594905949058,-3.976042417593874],[134.91674916749167,-3.9794195721336365],[134.92754927549277,-3.976042417593874],[134.9347493474935,-3.972665263054097],[134.94194941949422,-3.96759953124446],[134.9455494554946,-3.964222376704683],[134.9671496714967,-3.9524023358155063],[134.97074970749708,-3.9473366040058693],[134.9671496714967,-3.937205140386567],[134.95994959949599,-3.9388937176564554],[134.9527495274953,-3.9473366040058693],[134.94194941949422,-3.950713758545632],[134.93114931149313,-3.9490251812757435],[134.9239492394924,-3.9439594494660923],[134.92034920349204,-3.9388937176564554],[134.9239492394924,-3.937205140386567],[134.92034920349204,-3.9355165631166784],[134.92034920349204,-3.9304508313070414],[134.92034920349204,-3.9270736767672645],[134.91674916749167,-3.9236965222275018],[134.90954909549095,-3.9220079449576275],[134.90234902349027,-3.9253850994973902],[134.89514895148955,-3.928762254037153],[134.88794887948882,-3.9304508313070414],[134.8447484474845,-3.9304508313070414],[134.76914769147692,-3.9186307904178506],[134.69354693546939,-3.915253635878088],[134.68634686346866,-3.9135650586082136],[134.67554675546756,-3.9084993267985624],[134.66834668346684,-3.9135650586082136],[134.66474664746647,-3.9236965222275018],[134.6611466114661,-3.9304508313070414],[134.63234632346325,-3.945648026735981],[134.62154621546216,-3.9540909130853947],[134.61434614346143,-3.96759953124446],[134.61074610746107,-3.9878624584830504],[134.60354603546034,-4.0013710766421156],[134.58554585545858,-4.008125385721641],[134.53154531545317,-4.021634003880706],[134.52434524345244,-4.026699735690343],[134.509945099451,-4.016568272071055],[134.4847448474485,-3.991239613022813],[134.4631446314463,-3.9794195721336365],[134.47754477544777,-3.96084522216492],[134.46674466744668,-3.9439594494660923],[134.4487444874449,-3.9270736767672645],[134.43794437944382,-3.9135650586082136],[134.4307443074431,-3.9084993267985624],[134.41634416344164,-3.9051221722587997],[134.39114391143914,-3.903433594988911],[134.3767437674377,-3.89836786317926],[134.33354333543338,-3.8696620495912555],[134.35154351543514,-3.89836786317926],[134.35874358743587,-3.9253850994973902],[134.34794347943483,-3.9439594494660923],[134.30474304743046,-3.9439594494660923],[134.30474304743046,-3.950713758545632],[134.31914319143192,-3.9574680676251575],[134.329943299433,-3.96759953124446],[134.33714337143374,-3.9811081494035108],[134.3407434074341,-3.9963053448324644],[134.32634326343265,-4.019945426610818],[134.31554315543156,-4.019945426610818],[134.30834308343083,-4.0148796948011665],[134.30474304743046,-4.0098139629915295],[134.3011430114301,-4.0064368084517525],[134.29394293942943,-3.999682499372227],[134.28314283142834,-3.986173881213162],[134.27234272342724,-3.9709766857842226],[134.25434254342542,-3.964222376704683],[134.23634236342366,-3.9625337994348087],[134.2111421114211,-3.955779490355283],[134.18954189541898,-3.9439594494660923],[134.18234182341826,-3.9270736767672645],[134.18234182341826,-3.9169422131479763],[134.17514175141753,-3.9000564404491485],[134.17514175141753,-3.893302131369623],[134.17154171541716,-3.888236399559972],[134.16074160741607,-3.893302131369623],[134.14634146341467,-3.9000564404491485],[134.1427414274143,-3.903433594988911],[134.13554135541358,-3.889924976829846],[134.1427414274143,-3.8747277814009067],[134.18594185941862,-3.8426448132731394],[134.19314193141935,-3.8358905041936],[134.18954189541898,-3.8257590405743116],[134.17154171541716,-3.788610340636893],[134.16074160741607,-3.7717245679380653],[134.14634146341467,-3.758215949779],[134.12834128341285,-3.744707331619935],[134.12114121141212,-3.753150217969349],[134.1247412474125,-3.761593104318763],[134.1247412474125,-3.7683474133983026],[134.12834128341285,-3.7801674542874792],[134.1247412474125,-3.7987418042561814],[134.12114121141212,-3.805496113335721],[134.11034110341103,-3.8173161542248977],[134.09234092340927,-3.824070463304423],[134.07434074340745,-3.8122504224152465],[134.05634056340563,-3.7987418042561814],[134.03834038340386,-3.79367607244653],[134.0239402394024,-3.805496113335721],[133.99873998739986,-3.846021967812902],[133.98793987939882,-3.854464854162316],[133.969939699397,-3.8510876996225534],[133.9591395913959,-3.8375790814634883],[133.91233912339123,-3.7295101361909957],[133.89433894338947,-3.7024928998728655],[133.8511385113851,-3.6535241590462704],[133.84393843938443,-3.638326963617331],[133.84033840338407,-3.6180640363787404],[133.84033840338407,-3.59780110914015],[133.8367383673837,-3.59104680006061],[133.82953829538297,-3.5876696455208474],[133.82233822338225,-3.589358222790736],[133.81153811538115,-3.5961125318702614],[133.80433804338043,-3.602866840949787],[133.80073800738006,-3.6096211500293265],[133.7971379713797,-3.6315726545377913],[133.80433804338043,-3.6535241590462704],[133.81513815138152,-3.6754756635547494],[133.82233822338225,-3.704181477142754],[133.82953829538297,-3.7143129407620563],[133.82953829538297,-3.7210672498415818],[133.81513815138152,-3.7244444043813445],[133.81153811538115,-3.7210672498415818],[133.80073800738006,-3.690672858983689],[133.78993789937903,-3.6805413953644006],[133.77913779137793,-3.668721354475224],[133.76473764737648,-3.66027846812581],[133.74673746737466,-3.656901313586033],[133.73233732337326,-3.6636556226655728],[133.7179371793718,-3.6720985090149867],[133.70353703537035,-3.6720985090149867],[133.69633696336962,-3.648458427236619],[133.7071370713707,-3.629884077267917],[133.71073710737107,-3.621441190918503],[133.7071370713707,-3.6096211500293265],[133.69993699936998,-3.59104680006061],[133.68913689136895,-3.564029563742494],[133.64953649536494,-3.5049293592965967],[133.64233642336427,-3.4829778547881176],[133.64233642336427,-3.4610263502796386],[133.6531365313653,-3.444140577580825],[133.67833678336785,-3.4373862685012853],[133.69633696336962,-3.427254804881997],[133.70353703537035,-3.4036147231036296],[133.69993699936998,-3.378286064055388],[133.68193681936822,-3.3056772414504394],[133.68193681936822,-3.233068418845477],[133.68913689136895,-3.216182646146649],[133.71073710737107,-3.2313798415756025],[133.71433714337144,-3.224625532496063],[133.71433714337144,-3.216182646146649],[133.7179371793718,-3.194231141638184],[133.72153721537217,-3.1824111007490075],[133.73593735937362,-3.1840996780188817],[133.75753757537575,-3.190853987098407],[133.7719377193772,-3.175656791669468],[133.7827378273783,-3.131753782652524],[133.80073800738006,-3.1216223190332215],[133.82233822338225,-3.114868009953696],[133.84753847538474,-3.087850773635566],[133.86553865538656,-3.0810964645560404],[133.88353883538838,-3.0912279281753285],[133.89793897938978,-3.1131794326838076],[133.91233912339123,-3.1266880508428727],[133.93033930339305,-3.114868009953696],[133.92313923139233,-3.1114908554139333],[133.91953919539196,-3.106425123604282],[133.9159391593916,-3.0996708145247425],[133.9159391593916,-3.0912279281753285],[133.91233912339123,-3.0827850418259146],[133.9051390513905,-3.079407887286152],[133.89433894338947,-3.076030732746389],[133.88713887138874,-3.0743421554765007],[133.87993879938801,-3.065899269127101],[133.86913869138692,-3.0557678055077986],[133.86553865538656,-3.0422591873487335],[133.8619386193862,-3.0253734146499056],[133.8619386193862,-3.0084876419510778],[133.87633876338765,-2.9797818283630733],[133.87993879938801,-2.964584632934134],[133.87993879938801,-2.9527645920449572],[133.8727387273873,-2.9409445511557806],[133.86913869138692,-2.930813087536478],[133.8619386193862,-2.9223702011870643],[133.84393843938443,-2.9274359329967155],[133.8259382593826,-2.9291245102665897],[133.81873818738188,-2.934190242076241],[133.82953829538297,-2.9544531693148315],[133.82953829538297,-2.9595189011244827],[133.81513815138152,-2.983158982902836],[133.8079380793808,-3.0101762192209662],[133.80073800738006,-3.01861910557038],[133.73593735937362,-3.052390650968036],[133.72153721537217,-3.0642106918572125],[133.68913689136895,-3.092916505445217],[133.66753667536676,-3.1216223190332215],[133.65673656736567,-3.189165409828533],[133.6639366393664,-3.36140029135656],[133.6279362793628,-3.415434763992806],[133.61353613536136,-3.422189073072346],[133.55953559535595,-3.4340091139615225],[133.55233552335523,-3.432320536691634],[133.5451354513545,-3.42387765034222],[133.52713527135273,-3.3867289504048017],[133.52353523535237,-3.3816632185951647],[133.51273512735128,-3.378286064055388],[133.51273512735128,-3.3850403731349274],[133.519935199352,-3.4036147231036296],[133.519935199352,-3.43063195942176],[133.51273512735128,-3.4390748457711737],[133.49113491134915,-3.4373862685012853],[133.49113491134915,-3.444140577580825],[133.51273512735128,-3.4559606184700016],[133.55233552335523,-3.4694692366290525],[133.57033570335705,-3.4812892775182434],[133.58113581135814,-3.4998636274869455],[133.59193591935923,-3.5218151319954245],[133.59193591935923,-3.545455213773778],[133.5847358473585,-3.567406718282257],[133.57753577535777,-3.580915336441322],[133.55953559535595,-3.5961125318702614],[133.5415354153542,-3.6096211500293265],[133.519935199352,-3.6146868818389777],[133.50553505535055,-3.6231297681883916],[133.40833408334083,-3.7227558271114702],[133.39753397533974,-3.7565273725091117],[133.40833408334083,-3.80043038152607],[133.4407344073441,-3.827447617844186],[133.4551345513455,-3.8477105450827906],[133.4551345513455,-3.8645963177816043],[133.44433444334442,-3.873039204131018],[133.41913419134193,-3.879793513210558],[133.4119341193412,-3.8865478222900833],[133.40473404734047,-3.8966792859093857],[133.3867338673387,-3.9236965222275018],[133.2679326793268,-4.052028394738585],[133.24993249932498,-4.0672255901675385],[133.21033210332104,-4.079045631056715],[133.16353163531636,-4.075668476516952],[133.0807308073081,-4.060471281087999],[133.0519305193052,-4.060471281087999],[133.03393033930342,-4.070602744707301],[133.00873008730088,-4.104374290104957],[132.9907299072991,-4.114505753724245],[132.96912969129693,-4.112817176454371],[132.9187291872919,-4.090865671945892],[132.91152911529116,-4.090865671945892],[132.9079290792908,-4.087488517406129],[132.90072900729007,-4.080734208326589],[132.8971289712897,-4.068914167437413],[132.8971289712897,-4.048651240198822],[132.88992889928903,-4.0368311993096455],[132.8827288272883,-4.028388312960232],[132.86112861128612,-4.016568272071055],[132.85032850328503,-4.0098139629915295],[132.839528395284,-3.9979939221023386],[132.83232832328326,-3.976042417593874],[132.82512825128254,-3.964222376704683],[132.8179281792818,-3.9574680676251575],[132.80712807128072,-3.950713758545632],[132.79632796327962,-3.9405822949263296],[132.79272792727926,-3.9270736767672645],[132.79632796327962,-3.9186307904178506],[132.80712807128072,-3.9220079449576275],[132.82512825128254,-3.937205140386567],[132.82512825128254,-3.9270736767672645],[132.82512825128254,-3.9169422131479763],[132.80352803528035,-3.857842008702079],[132.78912789127895,-3.8443333905430137],[132.7855278552786,-3.8375790814634883],[132.7855278552786,-3.8038075360658326],[132.7855278552786,-3.79367607244653],[132.73152731527318,-3.682229972634275],[132.72792727927282,-3.648458427236619],[132.75672756727568,-3.6281954999980286],[132.79632796327962,-3.63326123180768],[132.8431284312843,-3.646769849966745],[132.8827288272883,-3.643392695426982],[132.88992889928903,-3.6349498090775683],[132.88992889928903,-3.6265069227281543],[132.88992889928903,-3.6180640363787404],[132.88632886328867,-3.6096211500293265],[132.88992889928903,-3.594423954600373],[132.8971289712897,-3.585981068250959],[132.91152911529116,-3.5707838728220196],[132.92592925929262,-3.5606524092027314],[132.93312933129334,-3.5538981001231917],[132.92592925929262,-3.5437666365039036],[132.91512915129152,-3.5353237501544896],[132.9079290792908,-3.5302580183448384],[132.90072900729007,-3.5235037092652988],[132.89352893528934,-3.511683668376122],[132.87912879128794,-3.4745349684387037],[132.8719287192872,-3.471157813898941],[132.85032850328503,-3.471157813898941],[132.83232832328326,-3.4610263502796386],[132.82152821528217,-3.4373862685012853],[132.81432814328144,-3.3901061049445786],[132.81072810728108,-3.366466023166211],[132.8179281792818,-3.303988664180551],[132.81072810728108,-3.282037159672086],[132.79272792727926,-3.2719056960527837],[132.7747277472775,-3.2702171187828952],[132.74232742327422,-3.276971427862435],[132.73512735127355,-3.2803485824021976],[132.72792727927282,-3.285414314211849],[132.72792727927282,-3.2989229323708997],[132.7387273872739,-3.3208744368793788],[132.73152731527318,-3.331005900498681],[132.71352713527136,-3.339448786848095],[132.69192691926918,-3.3377602095782066],[132.67032670326705,-3.3293173232287927],[132.6559265592656,-3.3141201277998533],[132.64872648726487,-3.3056772414504394],[132.63432634326347,-3.2719056960527837],[132.62712627126274,-3.2634628097033698],[132.6019260192602,-3.2415113051948907],[132.6019260192602,-3.2313798415756025],[132.61632616326165,-3.224625532496063],[132.6307263072631,-3.2144940688767747],[132.62712627126274,-3.197608296177947],[132.619926199262,-3.1925425643682956],[132.59472594725946,-3.1790339462092305],[132.5911259112591,-3.1773453689393563],[132.58032580325806,-3.1705910598598166],[132.57312573125733,-3.141885246271812],[132.56952569525697,-3.1351309371922866],[132.56232562325624,-3.1300652053826354],[132.55872558725588,-3.118245164493459],[132.55152551525515,-3.106425123604282],[132.54072540725406,-3.101359391794631],[132.5335253352534,-3.097982237254868],[132.51552515525157,-3.0777193100162776],[132.50832508325084,-3.0743421554765007],[132.49752497524975,-3.070965000936738],[132.4867248672487,-3.062522114587324],[132.48312483124835,-3.05407922823791],[132.47592475924762,-3.0473249191583847],[132.36432364323645,-2.9848475601727245],[132.3391233912339,-2.978093251093199],[132.34272342723426,-2.9578303238546084],[132.3247232472325,-2.9460102829654176],[132.27792277922782,-2.9358788193461294],[132.26712267122673,-2.9358788193461294],[132.2347223472235,-2.9358788193461294],[132.22032220322205,-2.934190242076241],[132.20952209522096,-2.9291245102665897],[132.19872198721987,-2.9223702011870643],[132.18792187921878,-2.917304469377413],[132.18432184321847,-2.9358788193461294],[132.169921699217,-2.9460102829654176],[132.1519215192152,-2.9460102829654176],[132.1411214112141,-2.9358788193461294],[132.13032130321307,-2.9409445511557806],[132.12312123121234,-2.942633128425655],[132.1159211592116,-2.9409445511557806],[132.10512105121052,-2.9358788193461294],[132.11232112321125,-2.9544531693148315],[132.10152101521015,-2.9595189011244827],[132.07632076320766,-2.9578303238546084],[132.0727207272073,-2.9510760147750688],[132.05832058320584,-2.917304469377413],[132.04032040320402,-2.925747355726827],[131.9971199711997,-2.915615892107539],[131.9827198271983,-2.9291245102665897],[131.97551975519758,-2.9291245102665897],[131.97911979119795,-2.9139273148376503],[131.98631986319862,-2.907173005758125],[131.99351993519934,-2.903795851218362],[132.00432004320044,-2.895352964868948],[132.01152011520117,-2.885221501249646],[132.0187201872019,-2.8784671921701204],[132.02232022320226,-2.854827110391753],[132.00432004320044,-2.8531385331218786],[131.98991989919898,-2.8480728013122274],[131.98991989919898,-2.841318492232702],[132.00432004320044,-2.8362527604230507],[132.02232022320226,-2.829498451343511],[132.03672036720366,-2.8176784104543344],[132.04392043920438,-2.8041697922952693],[132.03672036720366,-2.794038328675981],[132.01152011520117,-2.7906611741362184],[131.9647196471965,-2.7923497514060927],[131.95751957519576,-2.78897259686633],[131.97191971919722,-2.7771525559771533],[132.01152011520117,-2.758578206008437],[132.02592025920262,-2.758578206008437],[132.04392043920438,-2.761955360548214],[132.05832058320584,-2.758578206008437],[132.06552065520657,-2.745069587849386],[132.0727207272073,-2.7552010514686742],[132.07992079920803,-2.758578206008437],[132.0835208352084,-2.7518238969289115],[132.07992079920803,-2.7383152787698464],[132.0871208712087,-2.7349381242300836],[132.13032130321307,-2.7383152787698464],[132.15552155521556,-2.7332495469602094],[132.1807218072181,-2.7248066606107955],[132.15912159121592,-2.7163637742613815],[132.11232112321125,-2.7197409288011443],[132.11232112321125,-2.7045437333721907],[132.12312123121234,-2.697789424292665],[132.16272162721629,-2.682592228863726],[132.1807218072181,-2.682592228863726],[132.1951219512195,-2.6775264970540746],[132.20232202322023,-2.675837919784186],[132.31032310323104,-2.675837919784186],[132.3247232472325,-2.679215074323963],[132.3679236792368,-2.697789424292665],[132.38232382323827,-2.6994780015625537],[132.4147241472415,-2.697789424292665],[132.40752407524076,-2.697789424292665],[132.4147241472415,-2.6961008470227767],[132.42912429124294,-2.697789424292665],[132.42552425524258,-2.709609465181842],[132.42912429124294,-2.7214295060710185],[132.4327243272433,-2.731560969690321],[132.42192421924221,-2.745069587849386],[132.43632436324367,-2.745069587849386],[132.46152461524616,-2.7332495469602094],[132.47592475924762,-2.731560969690321],[132.47592475924762,-2.7248066606107955],[132.4687246872469,-2.7079208879119676],[132.48312483124835,-2.6994780015625537],[132.50472504725047,-2.697789424292665],[132.51912519125193,-2.701166578832428],[132.52632526325266,-2.7112980424517303],[132.54432544325442,-2.7129866197216046],[132.5659256592566,-2.714675196991493],[132.58392583925843,-2.718052351531256],[132.619926199262,-2.741692433309609],[132.67752677526778,-2.802481215025395],[132.71712717127173,-2.8143012559145717],[132.72792727927282,-2.8126126786446832],[132.73512735127355,-2.8092355241049205],[132.75672756727568,-2.7957269059458554],[132.7639276392764,-2.785595442326567],[132.77832778327786,-2.7788411332470417],[132.83592835928363,-2.736626701499972],[132.8539285392854,-2.718052351531256],[132.90432904329043,-2.6454435289263074],[132.92952929529298,-2.626869178957591],[132.9511295112951,-2.5795890154008703],[133.00873008730088,-2.5137345018754473],[133.0159301593016,-2.4951601519067452],[133.03393033930342,-2.4799629564777916],[133.11313113131132,-2.442814256540373],[133.13833138331387,-2.4360599474608478],[133.14553145531454,-2.4343713701909593],[133.15273152731527,-2.432682792921085],[133.159931599316,-2.4293056383813223],[133.16353163531636,-2.4259284838415454],[133.17433174331745,-2.4225513293017826],[133.18153181531818,-2.424239906571671],[133.1887318873189,-2.427617061111434],[133.19593195931958,-2.4293056383813223],[133.2139321393214,-2.4259284838415454],[133.23913239132395,-2.4174855974921314],[133.2571325713257,-2.415797020222257],[133.31113311133112,-2.442814256540373],[133.31833318333184,-2.4563228746994383],[133.3219332193322,-2.4917829973669825],[133.32553325533257,-2.5052916155260334],[133.33993339933403,-2.4968487291766195],[133.35433354333543,-2.4968487291766195],[133.36873368733688,-2.5019144609862707],[133.37953379533798,-2.512045924605573],[133.39033390333907,-2.5272431200345125],[133.39033390333907,-2.539063160923689],[133.3867338673387,-2.5660803972418194],[133.3867338673387,-2.652197838005833],[133.37953379533798,-2.675837919784186],[133.40473404734047,-2.675837919784186],[133.40833408334083,-2.6589521470853583],[133.4011340113401,-2.6150491380684144],[133.40473404734047,-2.591409056290061],[133.4119341193412,-2.5660803972418194],[133.43713437134375,-2.503603038256159],[133.44433444334442,-2.4951601519067452],[133.4551345513455,-2.498537306446508],[133.45873458734587,-2.506980192795922],[133.4551345513455,-2.5458174700032288],[133.46233462334624,-2.594786210829824],[133.45873458734587,-2.618426292608177],[133.45153451534514,-2.6420663743865305],[133.4659346593466,-2.6370006425768935],[133.47313473134733,-2.616737715338303],[133.4767347673477,-2.5711461290514706],[133.47313473134733,-2.5576375108924054],[133.46953469534697,-2.5458174700032288],[133.46953469534697,-2.5323088518441637],[133.47313473134733,-2.5221773882248613],[133.48393483934842,-2.51711165641521],[133.49113491134915,-2.5238659654947497],[133.49833498334982,-2.533997429114038],[133.5091350913509,-2.5508832018128658],[133.51273512735128,-2.572834706321345],[133.519935199352,-2.5897204790201727],[133.53793537935383,-2.58634332448041],[133.53793537935383,-2.582966169940647],[133.53793537935383,-2.569457551781582],[133.5415354153542,-2.564391819971931],[133.54873548735486,-2.561014665432168],[133.55953559535595,-2.561014665432168],[133.56673566735668,-2.561014665432168],[133.5847358473585,-2.5525717790827542],[133.59553595535954,-2.5458174700032288],[133.60633606336063,-2.5323088518441637],[133.61353613536136,-2.5407517381935776],[133.62073620736209,-2.542440315463452],[133.6279362793628,-2.539063160923689],[133.63513635136354,-2.539063160923689],[133.64233642336427,-2.542440315463452],[133.66753667536676,-2.5627032427020566],[133.6747367473675,-2.5745232835912333],[133.6747367473675,-2.588031901750284],[133.6747367473675,-2.64882068346607],[133.67113671136713,-2.6589521470853583],[133.66753667536676,-2.670772187974549],[133.68193681936822,-2.718052351531256],[133.6927369273693,-2.7045437333721907],[133.6927369273693,-2.6910351152131398],[133.68913689136895,-2.675837919784186],[133.68913689136895,-2.6555749925455956],[133.6927369273693,-2.6370006425768935],[133.7071370713707,-2.5981633653695866],[133.71073710737107,-2.577900438130996],[133.71073710737107,-2.520488810954987],[133.71433714337144,-2.512045924605573],[133.73593735937362,-2.51711165641521],[133.74673746737466,-2.528931697304401],[133.76473764737648,-2.5660803972418194],[133.78633786337866,-2.5981633653695866],[133.80073800738006,-2.6420663743865305],[133.81153811538115,-2.6538864152757213],[133.81513815138152,-2.64882068346607],[133.81873818738188,-2.6336234880371165],[133.81873818738188,-2.6116719835286517],[133.82953829538297,-2.5491946245429915],[133.82233822338225,-2.539063160923689],[133.82233822338225,-2.5356860063839264],[133.8079380793808,-2.520488810954987],[133.80433804338043,-2.5188002336850985],[133.80433804338043,-2.506980192795922],[133.80433804338043,-2.4968487291766195],[133.8079380793808,-2.4867172655573313],[133.81873818738188,-2.476585801938029],[133.80073800738006,-2.4698314928585035],[133.76833768337684,-2.4715200701283777],[133.75033750337502,-2.463077183778964],[133.739537395374,-2.44619141108015],[133.74673746737466,-2.437748524730736],[133.76473764737648,-2.4360599474608478],[133.7827378273783,-2.4360599474608478],[133.8259382593826,-2.4259284838415454],[133.8511385113851,-2.424239906571671],[133.8619386193862,-2.432682792921085],[133.86553865538656,-2.442814256540373],[133.89433894338947,-2.4664543383187407],[133.90153901539014,-2.476585801938029],[133.90873908739087,-2.476585801938029],[133.89793897938978,-2.458011451969327],[133.87633876338765,-2.432682792921085],[133.86553865538656,-2.410731288412606],[133.88353883538838,-2.402288402063192],[133.95553955539555,-2.4090427111427175],[133.98793987939882,-2.405665556602955],[134.0059400594006,-2.388779783904127],[133.94833948339482,-2.3904683611740154],[133.91953919539196,-2.3870912066342527],[133.89793897938978,-2.3769597430149503],[133.89433894338947,-2.363451124855885],[133.9447394473945,-2.3431881976172946],[133.96273962739627,-2.3263024249184667],[133.93753937539378,-2.327991002188355],[133.89433894338947,-2.339811043077532],[133.86913869138692,-2.3414996203474203],[133.86913869138692,-2.3347453112678807],[133.91233912339123,-2.3195481158389413],[133.93393933939342,-2.309416652219639],[133.94833948339482,-2.2925308795208252],[133.95553955539555,-2.2722679522822204],[133.9591395913959,-2.2469392932339787],[133.9591395913959,-2.221610634185751],[133.94833948339482,-2.203036284217035],[133.94113941139415,-2.2553821795833926],[133.93033930339305,-2.273956529552109],[133.90873908739087,-2.2587593341231695],[133.90153901539014,-2.2587593341231695],[133.8727387273873,-2.282399415901523],[133.85473854738547,-2.2942194567906995],[133.84033840338407,-2.2992851886003507],[133.82233822338225,-2.2942194567906995],[133.8079380793808,-2.270579375012346],[133.7971379713797,-2.265513643202695],[133.7935379353794,-2.260447911393044],[133.80073800738006,-2.248627870503867],[133.81153811538115,-2.2368078296146905],[133.84753847538474,-2.2283649432652766],[133.8619386193862,-2.218233479645974],[133.87633876338765,-2.2047248614869233],[133.87993879938801,-2.1895276660579697],[133.90153901539014,-2.1979705524073836],[133.9159391593916,-2.191216243327858],[133.93033930339305,-2.177707625168793],[133.94833948339482,-2.169264738819379],[133.9447394473945,-2.1625104297398536],[133.93033930339305,-2.169264738819379],[133.91233912339123,-2.1760190478989188],[133.89793897938978,-2.1760190478989188],[133.89433894338947,-2.1625104297398536],[133.90153901539014,-2.159133275200091],[133.92313923139233,-2.1523789661205512],[133.93033930339305,-2.1490018115807885],[133.93393933939342,-2.142247502501263],[133.93393933939342,-2.125361729802435],[133.94113941139415,-2.1186074207228955],[133.94113941139415,-2.106787379833719],[133.92313923139233,-2.1050988025638446],[133.89793897938978,-2.106787379833719],[133.88353883538838,-2.11185311164337],[133.87993879938801,-2.1101645343734816],[133.86913869138692,-2.1084759571036074],[133.85833858338583,-2.106787379833719],[133.85473854738547,-2.11185311164337],[133.84033840338407,-2.1354931934217234],[133.83313833138334,-2.142247502501263],[133.8259382593826,-2.145624657041026],[133.8079380793808,-2.1473132343109],[133.80073800738006,-2.1490018115807885],[133.7719377193772,-2.1658875842796164],[133.76473764737648,-2.169264738819379],[133.72513725137253,-2.1709533160892676],[133.71073710737107,-2.1760190478989188],[133.70353703537035,-2.1929048205977324],[133.69633696336962,-2.1979705524073836],[133.67833678336785,-2.2047248614869233],[133.66033660336603,-2.213167747836337],[133.6531365313653,-2.2283649432652766],[133.6531365313653,-2.2334306750749278],[133.64593645936458,-2.2368078296146905],[133.6387363873639,-2.2334306750749278],[133.63153631536318,-2.2283649432652766],[133.62433624336245,-2.224987788725514],[133.61353613536136,-2.2283649432652766],[133.59193591935923,-2.2368078296146905],[133.59553595535954,-2.194593397867621],[133.59193591935923,-2.182773356978444],[133.57753577535777,-2.2199220569158626],[133.56313563135632,-2.238496406884579],[133.54873548735486,-2.2452507159641044],[133.53433534335346,-2.238496406884579],[133.519935199352,-2.2097905932965602],[133.50553505535055,-2.203036284217035],[133.50553505535055,-2.2114791705664487],[133.51633516335164,-2.226676365995388],[133.49833498334982,-2.230053520535165],[133.4767347673477,-2.2317420978050393],[133.44433444334442,-2.238496406884579],[133.40833408334083,-2.221610634185751],[133.3867338673387,-2.2165449023761],[133.33993339933403,-2.2232992114556254],[133.31833318333184,-2.2232992114556254],[133.3039330393304,-2.2148563251062114],[133.29673296732966,-2.2047248614869233],[133.27513275132753,-2.2064134387567975],[133.23193231932322,-2.2165449023761],[133.19233192331922,-2.2148563251062114],[133.1707317073171,-2.2165449023761],[133.1347313473135,-2.238496406884579],[133.11313113131132,-2.243562138694216],[133.06633066330664,-2.2452507159641044],[133.01953019530197,-2.2553821795833926],[132.97992979929802,-2.2722679522822204],[132.94392943929438,-2.2840879931714113],[132.90072900729007,-2.27902226136176],[132.839528395284,-2.248627870503867],[132.81432814328144,-2.2452507159641044],[132.79272792727926,-2.248627870503867],[132.77112771127713,-2.260447911393044],[132.6991269912699,-2.306039497679876],[132.68832688326887,-2.3077280749497646],[132.68112681126814,-2.3026623431401134],[132.67392673926742,-2.295908034060588],[132.67032670326705,-2.2891537249810483],[132.65952659526596,-2.2857765704412856],[132.63792637926383,-2.2773336840918716],[132.62712627126274,-2.257070756853281],[132.619926199262,-2.2317420978050393],[132.61272612726128,-2.2114791705664487],[132.6019260192602,-2.2013477069471463],[132.58392583925843,-2.191216243327858],[132.55872558725588,-2.186150511518207],[132.54072540725406,-2.1929048205977324],[132.5227252272523,-2.2047248614869233],[132.45432454324543,-2.2165449023761],[132.38592385923863,-2.257070756853281],[132.34632346323463,-2.270579375012346],[132.30672306723068,-2.265513643202695],[132.2815228152282,-2.2503164477737556],[132.26352263522637,-2.2283649432652766],[132.25272252722527,-2.2047248614869233],[132.2347223472235,-2.182773356978444],[132.21312213122133,-2.1658875842796164],[132.0727207272073,-2.1050988025638446],[132.04752047520475,-2.0831472980553656],[132.04392043920438,-2.0595072162770123],[132.0511205112051,-2.0527529071974726],[132.07992079920803,-2.0375557117685332],[132.0871208712087,-2.0291128254191193],[132.09072090720906,-2.015604207260054],[132.10152101521015,-2.0071613209106403],[132.1267212672127,-1.9987184345612263],[132.0979209792098,-2.000407011831115],[132.05472054720548,-2.015604207260054],[132.02592025920262,-2.018981361799817],[132.00432004320044,-1.983521239132287],[131.9827198271983,-1.9733897755129846],[131.97191971919722,-1.9649468891635706],[131.96831968319685,-1.953126848274394],[131.97191971919722,-1.9429953846551058],[131.97551975519758,-1.9328639210358034],[131.97551975519758,-1.9210438801466267],[131.97191971919722,-1.9126009937972128],[131.9647196471965,-1.90922383925745],[131.95751957519576,-1.9075352619875616],[131.95031950319503,-1.904158107447799],[131.9431194311943,-1.895715221098385],[131.93951939519394,-1.8838951802092083],[131.9431194311943,-1.8501236348115526],[131.93951939519394,-1.838303593922376],[131.93951939519394,-1.8281721303030736],[131.9287192871929,-1.8062206257945945],[131.95031950319503,-1.7944005849054179],[131.9647196471965,-1.7792033894764785],[131.97551975519758,-1.7606290395077622],[131.98991989919898,-1.7454318440788228],[132.0079200792008,-1.7319232259197577],[132.0187201872019,-1.7217917623004695],[132.02232022320226,-1.706594566871516],[132.0187201872019,-1.6829544850931626],[132.0187201872019,-1.684643062363051],[132.0187201872019,-1.6863316396329253],[132.02232022320226,-1.684643062363051],[132.02232022320226,-1.6762001760136371],[132.00072000720007,-1.6778887532835114],[131.96831968319685,-1.6964631032522277],[131.9287192871929,-1.706594566871516],[131.9179191791918,-1.706594566871516],[131.91071910719108,-1.7032174123317532],[131.89991899919,-1.689708794172688],[131.89991899919,-1.684643062363051],[131.90711907119072,-1.6778887532835114],[131.90711907119072,-1.6728230214738744],[131.89991899919,-1.6677572896642232],[131.89631896318963,-1.662691557854572],[131.8891188911889,-1.6576258260449208],[131.88551885518854,-1.6525600942352696],[131.89271892718926,-1.6103456624882142],[131.89631896318963,-1.6019027761388003],[131.91071910719108,-1.5900827352496094],[131.91431914319145,-1.583328426170084],[131.92151921519218,-1.5799512716303212],[131.95031950319503,-1.5731969625507816],[131.9539195391954,-1.5698198080110188],[131.97551975519758,-1.547868303502554],[131.9827198271983,-1.53942541715314],[131.9647196471965,-1.53942541715314],[131.90711907119072,-1.566442653471256],[131.87831878318786,-1.5731969625507816],[131.8891188911889,-1.556311189851968],[131.88191881918823,-1.5512454580423167],[131.87111871118714,-1.552934035312191],[131.86031860318604,-1.5596883443917307],[131.8207182071821,-1.5985256215990233],[131.80631806318064,-1.6069685079484373],[131.7991179911799,-1.5816398489001955],[131.80631806318064,-1.5495568807724283],[131.809918099181,-1.5208510671844238],[131.79191791917918,-1.4972109854060704],[131.78831788317882,-1.525916798994075],[131.78471784717846,-1.547868303502554],[131.77031770317706,-1.5630654989314934],[131.74871748717487,-1.5731969625507816],[131.72351723517238,-1.5715083852809073],[131.70911709117092,-1.556311189851968],[131.70551705517056,-1.5343596853434889],[131.72351723517238,-1.517473912644661],[131.70551705517056,-1.5107196035651356],[131.68391683916838,-1.5140967581048983],[131.6659166591666,-1.5225396444543122],[131.6479164791648,-1.525916798994075],[131.62991629916303,-1.5208510671844238],[131.6119161191612,-1.5107196035651356],[131.59031590315902,-1.487079521786768],[131.57231572315726,-1.4803252127072426],[131.55071550715508,-1.4769480581674799],[131.52191521915222,-1.4769480581674799],[131.5147151471515,-1.4752594808975914],[131.50751507515076,-1.4718823263578287],[131.50031500315004,-1.4701937490879402],[131.48951489514894,-1.4701937490879402],[131.4787147871479,-1.473570903627703],[131.46791467914682,-1.4786366354373541],[131.46431464314645,-1.487079521786768],[131.46791467914682,-1.4972109854060704],[131.45711457114572,-1.5022767172157216],[131.44631446314463,-1.503965294485596],[131.43551435514354,-1.5022767172157216],[131.42831428314287,-1.4972109854060704],[131.40671406714068,-1.4701937490879402],[131.39951399513996,-1.4668165945481775],[131.3959139591396,-1.4617508627385263],[131.38871388713886,-1.4566851309288893],[131.38871388713886,-1.451619399119238],[131.3959139591396,-1.4397993582300614],[131.40311403114032,-1.4279793173408706],[131.3959139591396,-1.4144706991818197],[131.3851138511385,-1.402650658292643],[131.37431374313746,-1.394207771943229],[131.3419134191342,-1.4043392355625173],[131.32391323913242,-1.4009620810227545],[131.27711277112775,-1.3739448447046243],[131.27351273512738,-1.3925191946733406],[131.29151291512915,-1.4094049673721685],[131.33471334713346,-1.4397993582300614],[131.33831338313382,-1.4533079763891124],[131.32391323913242,-1.468505171818066],[131.3059130591306,-1.4837023672470053],[131.29151291512915,-1.4904566763265308],[131.25911259112593,-1.4972109854060704],[131.2267122671227,-1.5157853353747726],[131.20511205112052,-1.5242282217241865],[131.1979119791198,-1.5208510671844238],[131.19431194311943,-1.495522408136182],[131.1871118711187,-1.4853909445168938],[131.17631176311767,-1.4769480581674799],[131.16551165511657,-1.4701937490879402],[131.12591125911263,-1.4533079763891124],[131.08631086310862,-1.451619399119238],[131.00351003510036,-1.4566851309288893],[130.97830978309787,-1.4533079763891124],[130.96030960309605,-1.446553667309587],[130.94950949509496,-1.4330450491505218],[130.94950949509496,-1.4127821219119312],[130.95310953109532,-1.4043392355625173],[130.98550985509854,-1.3908306174034522],[130.9999099991,-1.3790105765142755],[131.00351003510036,-1.37225626743475],[131.02871028710285,-1.2979588675599132],[131.02871028710285,-1.284450249400848],[131.02871028710285,-1.2760073630514341],[131.03951039510395,-1.2726302085116714],[131.0431104311043,-1.2675644767020202],[131.05751057510577,-1.2473015494634296],[131.0755107551076,-1.2371700858441272],[131.15471154711548,-1.2253500449549506],[131.17991179911797,-1.2169071586055367],[131.1871118711187,-1.2067756949862485],[131.20151201512016,-1.1628726859692904],[131.23031230312301,-1.125723986031872],[131.23751237512374,-1.117281099682458],[131.2411124111241,-1.1054610587932814],[131.25551255512556,-1.0801323997450396],[131.25911259112593,-1.0632466270462118],[131.2519125191252,-1.0277865043786818],[131.25551255512556,-1.0142778862196167],[131.26991269912702,-1.0041464226003143],[131.26631266312666,-0.9872606499014864],[131.26991269912702,-0.950111949964068],[131.2627126271263,-0.9298490227254774],[131.26991269912702,-0.9264718681857147],[131.29151291512915,-0.914651827296538],[131.2519125191252,-0.8724373955494684],[131.23391233912338,-0.8471087365012266],[131.24471244712447,-0.8200915001831106],[131.3311133111331,-0.7930742638649804],[131.37431374313746,-0.7880085320553292],[131.38871388713886,-0.7829428002456922],[131.39951399513996,-0.7660570275468643],[131.42831428314287,-0.7593027184673247],[131.4391143911439,-0.7542369866576735],[131.449914499145,-0.7508598321179107],[131.48951489514894,-0.747482677578148],[131.49671496714967,-0.7407283684986226],[131.5039150391504,-0.7339740594190829],[131.51831518315186,-0.7322854821492086],[131.53271532715326,-0.7339740594190829],[131.54351543515435,-0.7373512139588598],[131.52191521915222,-0.7626798730070874],[131.51831518315186,-0.7744999138962783],[131.51831518315186,-0.7846313775155664],[131.53271532715326,-0.7829428002456922],[131.55431554315544,-0.7761884911661525],[131.57231572315726,-0.7694341820866271],[131.579515795158,-0.7609912957372131],[131.59031590315902,-0.7559255639275619],[131.78111781117815,-0.7187768639901435],[131.8639186391864,-0.6917596276720133],[131.8747187471875,-0.690071050402139],[131.88551885518854,-0.6816281640527251],[131.90711907119072,-0.6343480004960043],[131.95031950319503,-0.5887564142091719],[131.97911979119795,-0.5668049097007071],[132.00432004320044,-0.5516077142717535],[132.05472054720548,-0.5347219415729256],[132.06912069120693,-0.5313447870331629],[132.07632076320766,-0.522901900683749],[132.09072090720906,-0.4823760462065678],[132.0979209792098,-0.47055600531739117],[132.1519215192152,-0.435095882649847],[132.16632166321665,-0.43171872811008427],[132.19872198721987,-0.4148329554112564],[132.23832238322382,-0.4013243372521913],[132.2707227072271,-0.38443856455336345],[132.28872288722886,-0.3810614100136007],[132.3139231392314,-0.37937283274372646],[132.39672396723967,-0.3540441736954847],[132.43632436324367,-0.347289864615945],[132.67752677526778,-0.36924136912442407],[132.709927099271,-0.36079848277501014],[132.90432904329043,-0.4536702326185633],[132.92592925929262,-0.45704738715832605],[132.9367293672937,-0.4536702326185633],[132.95832958329584,-0.44185019172938667],[132.97632976329766,-0.4452273462691494],[132.97992979929802,-0.45198165534867485],[132.97992979929802,-0.4604245416980888],[132.98352983529838,-0.47055600531739117],[132.99792997929978,-0.48068746893667935],[133.03393033930342,-0.4975732416355072],[133.04833048330482,-0.5077047052548096],[133.05553055530555,-0.5110818597945723],[133.069930699307,-0.5110818597945723],[133.0915309153092,-0.5110818597945723],[133.0951309513095,-0.514459014334335],[133.1059310593106,-0.5279676324934002],[133.11313113131132,-0.5313447870331629],[133.1239312393124,-0.5330333643030514],[133.14553145531454,-0.5313447870331629],[133.15633156331563,-0.5313447870331629],[133.289532895329,-0.6292822686863531],[133.31473314733148,-0.6546109277345948],[133.32553325533257,-0.6782510095129624],[133.33633336333367,-0.690071050402139],[133.37953379533798,-0.717088286720255],[133.39033390333907,-0.7238425957997947],[133.55953559535595,-0.7441055230383853],[133.56313563135632,-0.7457941003082595],[133.56673566735668,-0.747482677578148],[133.5739357393574,-0.7508598321179107],[133.58113581135814,-0.7508598321179107],[133.5847358473585,-0.7373512139588598],[133.59193591935923,-0.7322854821492086],[133.5991359913599,-0.7272197503395574],[133.60633606336063,-0.725531173069669],[133.61713617136172,-0.7339740594190829],[133.63153631536318,-0.7424169457684968],[133.65673656736567,-0.747482677578148],[133.74673746737466,-0.7508598321179107],[133.75753757537575,-0.7457941003082595],[133.75033750337502,-0.7305969048793202],[133.7611376113761,-0.720465441260032],[133.77553775537757,-0.717088286720255],[133.78993789937903,-0.7187768639901435],[133.80433804338043,-0.7238425957997947],[133.81153811538115,-0.7272197503395574],[133.82953829538297,-0.7441055230383853],[133.8367383673837,-0.7424169457684968],[133.8511385113851,-0.7390397912287341],[133.90873908739087,-0.7305969048793202],[133.94833948339482,-0.7322854821492086],[133.96273962739627,-0.7289083276094459],[133.97713977139773,-0.7238425957997947],[133.99513995139955,-0.7339740594190829],[134.05634056340563,-0.7947628411348688],[134.06714067140672,-0.8032057274842828],[134.0887408874089,-0.8082714592939197],[134.09954099540994,-0.813337191103571],[134.11034110341103,-0.8200915001831106],[134.1247412474125,-0.8386658501518127],[134.13554135541358,-0.8471087365012266],[134.16434164341644,-0.8589287773904033],[134.17154171541716,-0.8639945092000545],[134.17154171541716,-0.8758145500892311],[134.14994149941498,-0.8825688591687708],[134.0887408874089,-0.8893231682482963],[134.07434074340745,-0.8943889000579475],[134.06714067140672,-0.9078975182169984],[134.06714067140672,-0.9315375999953659],[134.059940599406,-0.9484233726941937],[134.0455404554046,-0.9518005272339565],[134.0347403474035,-0.9585548363134819],[134.0779407794078,-1.046360854347384],[134.0887408874089,-1.0632466270462118],[134.09594095940963,-1.0716895133956257],[134.09954099540994,-1.0936410179041047],[134.1031410314103,-1.103772481523393],[134.1139411394114,-1.1155925224125838],[134.12834128341285,-1.147675490540351],[134.1427414274143,-1.1662498405090531],[134.16074160741607,-1.183135613207881],[134.1787417874179,-1.196644231366946],[134.19314193141935,-1.2033985404464715],[134.20394203942038,-1.2118414267958855],[134.26874268742688,-1.3300418356876804],[134.28314283142834,-1.350304762926271],[134.23994239942402,-1.416159276451694],[134.22914229142293,-1.4364222036902845],[134.22914229142293,-1.4769480581674799],[134.2219422194222,-1.544491148962777],[134.21474214742148,-1.5596883443917307],[134.20754207542075,-1.5731969625507816],[134.15354153541534,-1.6289200124569163],[134.13914139141394,-1.6373628988063302],[134.1247412474125,-1.6525600942352696],[134.11754117541176,-1.6559372487750466],[134.10674106741067,-1.6576258260449208],[134.09594095940963,-1.662691557854572],[134.0887408874089,-1.671134444203986],[134.0887408874089,-1.6829544850931626],[134.0887408874089,-1.6964631032522277],[134.1031410314103,-1.7369889577294089],[134.14634146341467,-1.9396182301153289],[134.14994149941498,-2.015604207260054],[134.14994149941498,-2.0257356708793566],[134.14994149941498,-2.0291128254191193],[134.15354153541534,-2.0341785572287705],[134.1571415714157,-2.0392442890384075],[134.15354153541534,-2.045998598117947],[134.14994149941498,-2.0476871753878214],[134.1427414274143,-2.045998598117947],[134.13914139141394,-2.045998598117947],[134.13554135541358,-2.04937575265771],[134.12114121141212,-2.1135416889132586],[134.12114121141212,-2.1354931934217234],[134.1247412474125,-2.145624657041026],[134.1427414274143,-2.1540675433904397],[134.14994149941498,-2.1625104297398536],[134.15354153541534,-2.1760190478989188],[134.14994149941498,-2.1844619342483185],[134.14994149941498,-2.194593397867621],[134.14994149941498,-2.2064134387567975],[134.14994149941498,-2.2283649432652766],[134.16434164341644,-2.260447911393044],[134.1679416794168,-2.27902226136176],[134.16434164341644,-2.300973765870225],[134.16074160741607,-2.309416652219639],[134.16434164341644,-2.3212366931088297],[134.1787417874179,-2.336433888537769],[134.18234182341826,-2.344876774887183],[134.18594185941862,-2.361762547586011],[134.19314193141935,-2.3786483202848387],[134.20394203942038,-2.3955340929836666],[134.21834218342184,-2.4090427111427175],[134.2579425794258,-2.441125679270499],[134.27234272342724,-2.4647657610488523],[134.28314283142834,-2.4799629564777916],[134.3011430114301,-2.4917829973669825],[134.3119431194312,-2.498537306446508],[134.31914319143192,-2.5052916155260334],[134.329943299433,-2.5221773882248613],[134.33714337143374,-2.542440315463452],[134.34434344343447,-2.5762118608611075],[134.36234362343623,-2.618426292608177],[134.36234362343623,-2.635312065307005],[134.38034380343805,-2.6538864152757213],[134.39114391143914,-2.6809036515938374],[134.40194401944018,-2.745069587849386],[134.4091440914409,-2.7552010514686742],[134.419944199442,-2.7653325150879766],[134.4307443074431,-2.7788411332470417],[134.44154441544418,-2.8075469468350462],[134.4631446314463,-2.854827110391753],[134.4631446314463,-2.8615814194712925],[134.48834488344886,-2.8615814194712925],[134.50634506345062,-2.8531385331218786],[134.53154531545317,-2.8345641831531623],[134.5279452794528,-2.8227441422639856],[134.52074520745208,-2.7788411332470417],[134.51354513545135,-2.770398246897628],[134.50274502745026,-2.750135319659023],[134.49914499144995,-2.7383152787698464],[134.49914499144995,-2.7248066606107955],[134.49914499144995,-2.697789424292665],[134.49914499144995,-2.682592228863726],[134.4955449554496,-2.670772187974549],[134.48114481144813,-2.6454435289263074],[134.47754477544777,-2.635312065307005],[134.4739447394474,-2.6066062517190005],[134.4739447394474,-2.5812775926707587],[134.47754477544777,-2.5576375108924054],[134.4847448474485,-2.539063160923689],[134.4955449554496,-2.51711165641521],[134.509945099451,-2.506980192795922],[134.5531455314553,-2.4917829973669825],[134.54234542345426,-2.4867172655573313],[134.53514535145354,-2.4782743792079174],[134.53514535145354,-2.4698314928585035],[134.54594545945463,-2.463077183778964],[134.55674556745566,-2.4647657610488523],[134.57834578345785,-2.4799629564777916],[134.58554585545858,-2.485028688287443],[134.60354603546034,-2.4884058428272056],[134.62154621546216,-2.498537306446508],[134.63954639546398,-2.5103573473356846],[134.6467464674647,-2.525554542764624],[134.65754657546574,-2.5627032427020566],[134.66834668346684,-2.8261212968037484],[134.66834668346684,-2.837941337692925],[134.7007470074701,-2.9578303238546084],[134.7259472594726,-2.986536137442613],[134.77274772747728,-2.978093251093199],[134.82674826748269,-2.9139273148376503],[134.85194851948523,-2.900418696678585],[134.86274862748627,-2.939255973885892],[134.85194851948523,-3.0034219101414408],[134.84834848348487,-3.01861910557038],[134.84114841148414,-3.0236848373800314],[134.83754837548378,-3.0253734146499056],[134.83034830348305,-3.030439146459557],[134.82674826748269,-3.0388820328089707],[134.82314823148232,-3.0507020736981474],[134.82674826748269,-3.084473619095803],[134.8159481594816,-3.1216223190332215],[134.81954819548196,-3.136819514462161],[134.85194851948523,-3.1486395553513518],[134.86274862748627,-3.1621481735104027],[134.86634866348663,-3.2043626052574723],[134.869948699487,-3.2094283370671235],[134.87354873548736,-3.212805491606886],[134.87354873548736,-3.2178712234165374],[134.87714877148773,-3.2313798415756025],[134.87354873548736,-3.2313798415756025],[134.8807488074881,-3.243199882464779],[134.88434884348845,-3.2499541915443046],[134.8987489874899,-3.2634628097033698],[134.9131491314913,-3.268528541513021],[134.93114931149313,-3.2617742324334813],[134.96354963549635,-3.238134150655128],[134.96354963549635,-3.2499541915443046],[134.95634956349562,-3.2702171187828952],[134.95634956349562,-3.2803485824021976],[134.95994959949599,-3.285414314211849],[134.97434974349744,-3.300611509640788],[134.98514985149853,-3.3293173232287927],[135.00315003150035,-3.3360716323083324],[135.04635046350467,-3.334383055038444],[135.0679506795068,-3.3377602095782066],[135.0967509675097,-3.358023136816797],[135.1111511115111,-3.36140029135656],[135.27675276752768,-3.3681546004360996],[135.2947529475295,-3.3715317549758623],[135.32355323553236,-3.3867289504048017],[135.34155341553418,-3.3901061049445786],[135.3631536315363,-3.3867289504048017],[135.4027540275403,-3.3715317549758623],[135.47115471154711,-3.3630888686264484],[135.48915489154894,-3.356334559546923],[135.5071550715507,-3.347891673197509],[135.52155521555216,-3.3360716323083324],[135.56475564755647,-3.2904800460215],[135.56835568355683,-3.282037159672086],[135.5719557195572,-3.2702171187828952],[135.57555575555756,-3.2583970778937186],[135.5719557195572,-3.2482656142744304],[135.5719557195572,-3.2415113051948907],[135.6007560075601,-3.2043626052574723],[135.64035640356406,-3.1773453689393563],[135.71955719557195,-3.1486395553513518],[135.75195751957523,-3.128376628112747],[135.76635766357663,-3.1081137008741564],[135.76275762757626,-3.0996708145247425],[135.75195751957523,-3.0912279281753285],[135.7447574475745,-3.0777193100162776],[135.74835748357486,-3.0692764236668637],[135.75195751957523,-3.062522114587324],[135.7555575555756,-3.0557678055077986],[135.76635766357663,-3.052390650968036],[135.76635766357663,-3.0507020736981474],[135.769957699577,-3.0473249191583847],[135.77715777157772,-3.0473249191583847],[135.7987579875799,-3.05407922823791],[135.81675816758167,-3.0422591873487335],[135.84195841958422,-3.0118647964908547],[135.8887588875889,-3.000044755601664],[135.91035910359102,-2.986536137442613],[135.92475924759248,-2.966273210204008],[135.93555935559357,-2.942633128425655],[135.93555935559357,-2.9274359329967155],[135.92475924759248,-2.890287233059297],[135.92835928359284,-2.8784671921701204],[135.9535595355954,-2.85144995585199],[135.96075960759606,-2.837941337692925],[135.96435964359642,-2.821055564994097],[135.96435964359642,-2.775463978707265],[135.9679596795968,-2.770398246897628],[135.99315993159934,-2.7518238969289115],[136.00036000360006,-2.745069587849386],[136.0111601116011,-2.7467581651192603],[136.0219602196022,-2.7079208879119676],[136.03636036360365,-2.697789424292665],[136.04716047160474,-2.6961008470227767],[136.05436054360547,-2.692723692483014],[136.0651606516065,-2.687657960673363],[136.06876068760687,-2.679215074323963],[136.07236072360723,-2.6724607652444234],[136.08316083160832,-2.6673950334347722],[136.10836108361087,-2.6623293016251353],[136.19836198361986,-2.625180601687717],[136.2379623796238,-2.596474788099698],[136.26676266762667,-2.561014665432168],[136.27756277562776,-2.5407517381935776],[136.28116281162812,-2.520488810954987],[136.28836288362885,-2.449568565619913],[136.29556295562958,-2.432682792921085],[136.3027630276303,-2.4208627520319084],[136.33516335163353,-2.38371405209449],[136.34236342363425,-2.3685168566655364],[136.34956349563498,-2.3516310839667085],[136.34596345963462,-2.339811043077532],[136.34236342363425,-2.3195481158389413],[136.3387633876339,-2.2891537249810483],[136.34236342363425,-2.2840879931714113],[136.34956349563498,-2.2722679522822204],[136.36036360363607,-2.25200502504363],[136.3819638196382,-2.2334306750749278],[136.4035640356404,-2.2199220569158626],[136.42876428764288,-2.2114791705664487],[136.48276482764828,-2.2114791705664487],[136.49356493564937,-2.2064134387567975],[136.52236522365223,-2.191216243327858],[136.53316533165332,-2.1895276660579697],[136.5367653676537,-2.199659129677272],[136.53316533165332,-2.213167747836337],[136.53316533165332,-2.226676365995388],[136.54396543965441,-2.2317420978050393],[136.5691656916569,-2.2334306750749278],[136.59436594365945,-2.2368078296146905],[136.60156601566018,-2.2503164477737556],[136.60516605166055,-2.25200502504363],[136.61236612366127,-2.2503164477737556],[136.62676626766267,-2.2469392932339787],[136.6339663396634,-2.2452507159641044],[136.6447664476645,-2.2469392932339787],[136.68436684366844,-2.2587593341231695],[136.70596705967063,-2.2368078296146905],[136.71676716767166,-2.238496406884579],[136.73836738367385,-2.248627870503867],[136.74916749167494,-2.25200502504363],[136.75996759967603,-2.248627870503867],[136.7671676716767,-2.2418735614243417],[136.77076770767707,-2.235119252344802],[136.7779677796778,-2.2317420978050393],[136.8067680676807,-2.226676365995388],[136.81396813968144,-2.2232992114556254],[136.86796867968678,-2.1878390887880954],[136.92556925569255,-2.1760190478989188],[136.939969399694,-2.172641893359142],[136.94356943569437,-2.164199007009728],[136.94716947169474,-2.1523789661205512],[136.9507695076951,-2.142247502501263],[136.98316983169832,-2.1270503070723095],[137.02277022770227,-2.1186074207228955],[137.15597155971562,-2.11185311164337],[137.17757177571775,-2.106787379833719],[137.19557195571957,-2.0966559162144307],[137.2279722797228,-2.0747044117059517],[137.23517235172352,-2.0611957935468865],[137.22437224372243,-2.0392442890384075],[137.2027720277203,-2.018981361799817],[137.1919719197192,-2.0037841663708775],[137.19557195571957,-1.9987184345612263],[137.20637206372066,-1.9919641254817009],[137.20997209972103,-1.9784555073226358],[137.20997209972103,-1.9632583118936964],[137.20637206372066,-1.9497496937346313],[137.19557195571957,-1.94468396192498],[137.16677166771672,-1.9345524983056919],[137.15597155971562,-1.9294867664960407],[137.10197101971022,-1.8889609120188595],[137.1127711277113,-1.8754522938597944],[137.11637116371168,-1.8551893666212038],[137.11637116371168,-1.8095977803343715],[137.12357123571235,-1.7977777394451806],[137.14157141571417,-1.7876462758258924],[137.35037350373506,-1.7099717214112928],[137.4655746557466,-1.6424286306159814],[137.48717487174872,-1.632297166996679],[137.49077490774908,-1.6289200124569163],[137.4979749797498,-1.6204771261075024],[137.5087750877509,-1.6035913534086745],[137.51597515975163,-1.6002141988689118],[137.5339753397534,-1.5985256215990233],[137.79317793177933,-1.4837023672470053],[137.839978399784,-1.4718823263578287],[137.8831788317883,-1.4701937490879402],[137.92637926379263,-1.4837023672470053],[137.93357933579335,-1.4921452535964193],[137.95517955179554,-1.517473912644661],[137.96597965979663,-1.5225396444543122],[137.9839798397984,-1.5411139944230143],[137.98757987579876,-1.5461797262326655],[138.00198001980021,-1.547868303502554],[138.0127801278013,-1.5512454580423167],[138.05598055980562,-1.5985256215990233],[138.07398073980738,-1.6103456624882142],[138.11718117181175,-1.6170999715677397],[138.22878228782287,-1.6491829396955069],[138.35838358383586,-1.7099717214112928],[138.52758527585274,-1.758940462237888],[138.5959859598596,-1.769071925857176],[138.62118621186215,-1.77751481220659],[138.66438664386646,-1.7893348530957809],[138.73638736387363,-1.8433693257320272],[138.8047880478805,-1.9210438801466267],[138.84438844388444,-1.9497496937346313],[138.86238862388626,-1.9565040028141567],[138.92718927189276,-1.9565040028141567],[138.94878948789489,-1.9598811573539336],[139.10719107191073,-2.0122270527202915],[139.28359283592835,-2.1219845752626725],[139.38439384393843,-2.155756120660314],[139.43839438394383,-2.186150511518207],[139.45639456394565,-2.1895276660579697],[139.46719467194674,-2.194593397867621],[139.51399513995142,-2.2317420978050393],[139.679596795968,-2.2925308795208252],[139.78039780397808,-2.3550082385064712],[139.8235982359824,-2.366828279395662],[139.86319863198634,-2.371894011205299],[140.05760057600577,-2.3550082385064712],[140.08640086400862,-2.3431881976172946],[140.09720097200972,-2.322925270378704],[140.10440104401044,-2.3195481158389413],[140.12240122401226,-2.3263024249184667],[140.1440014400144,-2.3414996203474203],[140.15120151201512,-2.3381224658076576],[140.15120151201512,-2.322925270378704],[140.15840158401585,-2.3212366931088297],[140.16560165601658,-2.3246138476485925],[140.16920169201694,-2.331368156728118],[140.16920169201694,-2.339811043077532],[140.1728017280173,-2.3482539294269458],[140.2088020880209,-2.402288402063192],[140.2268022680227,-2.405665556602955],[140.28800288002878,-2.4309942156511966],[140.30960309603097,-2.44619141108015],[140.33120331203315,-2.4563228746994383],[140.34920349203492,-2.442814256540373],[140.360003600036,-2.449568565619913],[140.3708037080371,-2.4478799883500244],[140.37800378003783,-2.441125679270499],[140.38520385203856,-2.4293056383813223],[140.3816038160382,-2.41917417476202],[140.36720367203674,-2.4124198656824944],[140.36360363603637,-2.405665556602955],[140.37800378003783,-2.3955340929836666],[140.38880388803886,-2.397222670253541],[140.48240482404827,-2.432682792921085],[140.50040500405004,-2.4360599474608478],[140.60840608406085,-2.4394371020006105],[140.7308073080731,-2.4917829973669825],[140.7452074520745,-2.498537306446508],[140.7452074520745,-2.51711165641521],[140.74160741607415,-2.5491946245429915],[140.73440734407347,-2.564391819971931],[140.69840698406983,-2.608294828988889],[140.70560705607056,-2.616737715338303],[140.7128071280713,-2.626869178957591],[140.72360723607238,-2.6336234880371165],[140.73440734407347,-2.635312065307005],[140.74160741607415,-2.626869178957591],[140.74160741607415,-2.616737715338303],[140.74160741607415,-2.604917674449112],[140.75240752407524,-2.6015405199093493],[140.7560075600756,-2.603229097179238],[140.77400774007742,-2.618426292608177],[140.78480784807851,-2.62180344714794],[140.79560795607955,-2.6201148698780656],[140.81720817208173,-2.6116719835286517],[140.82800828008283,-2.608294828988889],[140.92160921609218,-2.608294828988889],[140.9648096480965,-2.6015405199093493],[140.97560975609758,-2.599851942639475],[140.98640986409868,-2.599851942639475],[141.0080100801008,-2.608294828988889],[141.0440104401044,-2.5897204790201727],[141.08001080010803,-2.594786210829824],[141.12321123211234,-2.608294828988889],[141.1628116281163,-2.6150491380684144],[141.1916119161192,-2.6150491380684144],[141.2060120601206,-2.6201148698780656],[141.21321213212133,-2.625180601687717],[141.22041220412206,-2.630246333497354],[141.22761227612278,-2.635312065307005],[141.23841238412388,-2.6370006425768935],[141.26361263612637,-2.6386892198467677],[141.27441274412746,-2.6420663743865305],[141.2816128161282,-2.64882068346607],[141.29241292412928,-2.6690836107046607],[141.2960129601296,-2.675837919784186],[141.31041310413104,-2.670772187974549],[141.33921339213396,-2.701166578832428],[141.36081360813608,-2.7112980424517303],[141.38241382413827,-2.7129866197216046],[141.5768157681577,-2.794038328675981],[141.80001800018,-2.900418696678585],[141.83241832418327,-2.9054844284882364],[141.83601836018363,-2.9139273148376503],[141.83601836018363,-2.9240587784569527],[141.839618396184,-2.9325016648063666],[141.88641886418867,-2.964584632934134],[141.90441904419043,-2.9679617874738966],[141.94401944019444,-2.9595189011244827],[142.00162001620015,-2.95614174658472],[142.00882008820088,-2.961207478394371],[142.06642066420665,-3.0084876419510778],[142.070020700207,-3.01861910557038],[142.06642066420665,-3.027061991919794],[142.06282062820628,-3.0388820328089707],[142.05922059220592,-3.0507020736981474],[142.06282062820628,-3.06083353731745],[142.070020700207,-3.062522114587324],[142.09522095220956,-3.0642106918572125],[142.1060210602106,-3.0675878463969752],[142.13842138421387,-3.0557678055077986],[142.160021600216,-3.065899269127101],[142.18162181621818,-3.079407887286152],[142.2032220322203,-3.087850773635566],[142.2248222482225,-3.0895393509054543],[142.24282242822431,-3.0946050827151055],[142.2680226802268,-3.1081137008741564],[142.39402394023944,-3.145262400811575],[142.5020250202502,-3.1959197189080584],[142.61722617226172,-3.2313798415756025],[142.81162811628116,-3.2904800460215],[142.83322833228334,-3.2938572005612627],[142.8476284762848,-3.295545777831137],[142.88002880028802,-3.3141201277998533],[142.8908289082891,-3.3158087050697276],[142.9052290522905,-3.3158087050697276],[142.91962919629196,-3.317497282339616],[142.94842948429488,-3.334383055038444],[143.02763027630277,-3.356334559546923],[143.05283052830532,-3.356334559546923],[143.08523085230854,-3.352957405007146],[143.10323103231036,-3.3512688277372717],[143.11763117631176,-3.356334559546923],[143.1248312483125,-3.347891673197509],[143.1428314283143,-3.3546459822770345],[143.2112321123211,-3.36140029135656],[143.2220322203222,-3.364777445896337],[143.24003240032403,-3.378286064055388],[143.25083250832512,-3.3816632185951647],[143.26523265232652,-3.383351795865039],[143.47763477634777,-3.4205004958024574],[143.52443524435245,-3.435697691231411],[143.5388353883539,-3.4475177321205877],[143.59643596435967,-3.5049293592965967],[143.60723607236076,-3.533635172884601],[143.61083610836107,-3.5403894819641266],[143.6180361803618,-3.545455213773778],[143.63603636036362,-3.5522095228533175],[143.64323643236435,-3.5572752546629545],[143.65043650436508,-3.5606524092027314],[143.67923679236793,-3.5707838728220196],[143.6828368283683,-3.5741610273617823],[143.6936369363694,-3.5707838728220196],[143.70803708037084,-3.558963831932843],[143.71523715237151,-3.5606524092027314],[143.71883718837188,-3.5623409864726057],[143.72243722437224,-3.5690952955521453],[143.71523715237151,-3.580915336441322],[143.72243722437224,-3.5927353773304986],[143.73323733237333,-3.602866840949787],[143.7476374763748,-3.607932572759438],[143.78363783637838,-3.6096211500293265],[143.8016380163802,-3.6146868818389777],[143.81963819638196,-3.621441190918503],[143.8556385563856,-3.6805413953644006],[143.86643866438664,-3.6889842817138145],[143.90963909639095,-3.7075586316825166],[143.9240392403924,-3.7109357862222794],[143.9456394563946,-3.7227558271114702],[143.99603996039963,-3.79367607244653],[144.02124021240212,-3.8038075360658326],[144.0536405364054,-3.805496113335721],[144.11844118441184,-3.80043038152607],[144.12924129241293,-3.802118958795944],[144.14364143641438,-3.80043038152607],[144.1652416524165,-3.80043038152607],[144.15804158041584,-3.8088732678754837],[144.1508415084151,-3.813938999685135],[144.13644136441366,-3.815627576955009],[144.12564125641256,-3.813938999685135],[144.1328413284133,-3.8257590405743116],[144.14364143641438,-3.832513349653837],[144.1508415084151,-3.8358905041936],[144.16164161641615,-3.8443333905430137],[144.17964179641797,-3.8510876996225534],[144.20484204842052,-3.8375790814634883],[144.21924219242192,-3.8443333905430137],[144.22644226442264,-3.8595305859719673],[144.230042300423,-3.8662848950514928],[144.23724237242374,-3.8696620495912555],[144.24804248042483,-3.8679734723213812],[144.2516425164252,-3.8645963177816043],[144.2516425164252,-3.8612191632418416],[144.25524255242556,-3.854464854162316],[144.2660426604266,-3.8443333905430137],[144.27324273242732,-3.830824772383963],[144.28044280442805,-3.8173161542248977],[144.27684276842768,-3.8071846906055953],[144.30924309243096,-3.7987418042561814],[144.35604356043564,-3.7987418042561814],[144.39924399243995,-3.8038075360658326],[144.43524435244353,-3.813938999685135],[144.44604446044463,-3.8122504224152465],[144.50004500045003,-3.813938999685135],[144.51444514445143,-3.8173161542248977],[144.52524525245252,-3.830824772383963],[144.53964539645398,-3.846021967812902],[144.5468454684547,-3.86290774051173],[144.55044550445507,-3.8831706677503206],[144.55044550445507,-3.96759953124446],[144.5576455764558,-3.9794195721336365],[144.5720457204572,-3.991239613022813],[144.5828458284583,-3.9963053448324644],[144.59004590045902,-4.0013710766421156],[144.60444604446047,-4.0064368084517525],[144.73044730447305,-4.026699735690343],[144.770047700477,-4.040208353849408],[144.79524795247954,-4.063848435627776],[144.81324813248136,-4.075668476516952],[144.84204842048422,-4.084111362866366],[144.8672486724867,-4.099308558295306],[144.87444874448744,-4.104374290104957],[144.87444874448744,-4.10775144464472],[144.87444874448744,-4.109440021914608],[144.8780487804878,-4.112817176454371],[144.8780487804878,-4.119571485533896],[144.8780487804878,-4.1246372173435475],[144.8636486364864,-4.131391526423073],[144.86004860048604,-4.136457258232724],[144.86004860048604,-4.148277299121901],[144.8636486364864,-4.161785917280966],[144.8780487804878,-4.171917380900268],[144.9212492124921,-4.180360267249682],[144.93924939249393,-4.188803153599082],[144.9680496804968,-4.219197544456975],[144.98964989649897,-4.23270616261604],[144.9968499684997,-4.2394604716955655],[144.9968499684997,-4.27492059436311],[145.00045000450007,-4.279986326172761],[145.01485014850152,-4.288429212522175],[145.0508505085051,-4.342463685158421],[145.0760507605076,-4.355972303317472],[145.18045180451804,-4.389743848715128],[145.220052200522,-4.389743848715128],[145.26325263252636,-4.3796123850958395],[145.30645306453067,-4.374546653286188],[145.34605346053462,-4.389743848715128],[145.38565385653857,-4.4420897440815],[145.4468544685447,-4.492747062177969],[145.48285482854828,-4.534961493925039],[145.49365493654938,-4.550158689353992],[145.51525515255156,-4.578864502941997],[145.52245522455223,-4.583930234751634],[145.53325533255332,-4.583930234751634],[145.5368553685537,-4.5822416574817595],[145.54405544055442,-4.5822416574817595],[145.55845558455587,-4.599127430180587],[145.580055800558,-4.646407593737294],[145.69165691656917,-4.767985157168852],[145.70605706057063,-4.781493775327917],[145.7240572405724,-4.789936661677331],[145.73845738457385,-4.800068125296619],[145.7420574205742,-4.80513385710627],[145.7780577805778,-4.813576743455684],[145.78525785257852,-4.823708207074986],[145.79965799657998,-4.8422825570436885],[145.81045810458107,-4.860856907012405],[145.81045810458107,-4.869299793361819],[145.79605796057962,-4.877742679711233],[145.7888578885789,-4.899694184219712],[145.78525785257852,-4.945285770506544],[145.78525785257852,-4.968925852284897],[145.79605796057962,-5.0094517067620785],[145.79965799657998,-5.029714634000669],[145.79965799657998,-5.036468943080209],[145.81045810458107,-5.04997756123926],[145.81045810458107,-5.058420447588674],[145.81045810458107,-5.0668633339380875],[145.80325803258035,-5.078683374827264],[145.79965799657998,-5.088814838446567],[145.79965799657998,-5.092191992986329],[145.79605796057962,-5.1276521156538735],[145.79245792457925,-5.149603620162338],[145.79245792457925,-5.159735083781641],[145.79245792457925,-5.20194951552871],[145.79245792457925,-5.220523865497412],[145.78525785257852,-5.239098215466129],[145.74925749257494,-5.289755533562612],[145.7420574205742,-5.311707038071077],[145.74565745657458,-5.320149924420491],[145.74925749257494,-5.335347119849445],[145.74925749257494,-5.345478583468733],[145.74925749257494,-5.358987201627798],[145.73125731257312,-5.391070169755565],[145.72765727657276,-5.423153137883347],[145.73845738457385,-5.453547528741225],[145.76005760057603,-5.477187610519593],[145.7888578885789,-5.485630496869007],[145.85005850058502,-5.475499033249704],[145.8716587165872,-5.48225334232923],[145.8860588605886,-5.514336310457011],[145.89325893258933,-5.514336310457011],[145.8968589685897,-5.505893424107597],[145.90045900459006,-5.494073383218421],[145.90045900459006,-5.485630496869007],[145.9076590765908,-5.48900765140877],[145.91125911259115,-5.490696228678644],[145.91485914859152,-5.492384805948532],[145.92565925659255,-5.478876187789467],[145.940059400594,-5.475499033249704],[145.95805958059583,-5.475499033249704],[145.96885968859692,-5.465367569630402],[145.98685986859869,-5.48225334232923],[146.0048600486005,-5.48900765140877],[146.02286022860227,-5.494073383218421],[146.04446044460445,-5.507582001377472],[146.05166051660518,-5.500827692297946],[146.0588605886059,-5.499139115028058],[146.06246062460627,-5.502516269567835],[146.06606066060664,-5.507582001377472],[146.07686076860767,-5.505893424107597],[146.10926109261095,-5.521090619536537],[146.1272612726127,-5.527844928616062],[146.15246152461526,-5.526156351346188],[146.16326163261635,-5.529533505885951],[146.16686166861672,-5.537976392235365],[146.1740617406174,-5.549796433124541],[146.18486184861848,-5.553173587664304],[146.21006210062103,-5.5548621649341925],[146.2280622806228,-5.563305051283606],[146.2388623886239,-5.566682205823369],[146.2568625686257,-5.561616474013718],[146.2676626766268,-5.568370783093258],[146.27486274862747,-5.5768136694426715],[146.28566285662856,-5.5818794012523085],[146.29646296462965,-5.583567978522197],[146.31446314463147,-5.5768136694426715],[146.32886328863287,-5.575125092172783],[146.33966339663397,-5.575125092172783],[146.35046350463506,-5.5768136694426715],[146.36846368463688,-5.588633710331848],[146.37566375663755,-5.593699442141499],[146.38286382863828,-5.600453751221025],[146.39366393663937,-5.603830905760788],[146.40806408064083,-5.602142328490913],[146.4008640086401,-5.602142328490913],[146.42246422464228,-5.602142328490913],[146.4440644406444,-5.598765173951136],[146.46206462064623,-5.598765173951136],[146.480064800648,-5.6122737921102015],[146.48366483664836,-5.622405255729504],[146.48726487264872,-5.632536719348792],[146.49446494464945,-5.640979605698206],[146.519665196652,-5.646045337507857],[146.53046530465303,-5.651111069317508],[146.65646656466566,-5.749048550970699],[146.72126721267216,-5.767622900939415],[146.75726757267574,-5.7878858281780055],[146.77886778867787,-5.792951559987657],[146.78966789667896,-5.798017291797294],[146.79326793267933,-5.81659164176601],[146.7968679686797,-5.833477414464838],[146.81126811268115,-5.838543146274489],[146.8292682926829,-5.833477414464838],[146.84726847268473,-5.828411682655187],[146.86886868868692,-5.825034528115424],[146.88686886868868,-5.828411682655187],[146.90126901269014,-5.833477414464838],[146.91926919269196,-5.835165991734726],[146.93366933669336,-5.841920300814252],[146.94086940869408,-5.857117496243191],[146.9480694806948,-5.875691846211907],[146.95526955269554,-5.890889041640847],[147.00927009270094,-5.9246605870385025],[147.01647016470167,-5.9246605870385025],[147.02727027270276,-5.928037741578265],[147.03447034470344,-5.931414896118028],[147.04167041670416,-5.938169205197568],[147.05247052470526,-5.934792050657805],[147.0668706687067,-5.9246605870385025],[147.0776707767078,-5.9246605870385025],[147.0812708127081,-5.926349164308391],[147.0920709207092,-5.938169205197568],[147.10647106471066,-5.958432132436158],[147.11727117271175,-5.968563596055446],[147.12087120871212,-5.961809286975921],[147.13167131671315,-5.958432132436158],[147.22527225272256,-5.968563596055446],[147.2360723607236,-5.968563596055446],[147.24327243272432,-5.966875018785572],[147.25407254072542,-5.95674355516627],[147.2648726487265,-5.944923514277093],[147.2756727567276,-5.936480627927679],[147.290072900729,-5.931414896118028],[147.29727297272973,-5.933103473387916],[147.32247322473228,-5.944923514277093],[147.329673296733,-5.944923514277093],[147.3332733327333,-5.943234937007219],[147.3332733327333,-5.939857782467442],[147.33687336873368,-5.934792050657805],[147.3440734407344,-5.931414896118028],[147.34767347673477,-5.933103473387916],[147.3548735487355,-5.938169205197568],[147.40167401674017,-5.9550549778963955],[147.44847448474485,-5.961809286975921],[147.46647466474667,-5.970252173325335],[147.48087480874813,-5.980383636944637],[147.49167491674916,-5.992203677833814],[147.49527495274953,-5.995580832373577],[147.50607506075062,-5.997269409643465],[147.50967509675098,-6.000646564183228],[147.51327513275135,-6.005712295992879],[147.5168751687517,-6.015843759612167],[147.5168751687517,-6.020909491421818],[147.52407524075244,-6.027663800501344],[147.5528755287553,-6.041172418660409],[147.62127621276215,-6.107026932185832],[147.650076500765,-6.154307095742553],[147.65727657276574,-6.164438559361841],[147.67527675276756,-6.174570022981143],[147.6860768607686,-6.196521527489622],[147.69327693276932,-6.223538763807738],[147.70407704077041,-6.238735959236678],[147.7256772567726,-6.2725075046343335],[147.80127801278013,-6.309656204571752],[147.82647826478268,-6.334984863619994],[147.83007830078304,-6.348493481779059],[147.83007830078304,-6.358624945398361],[147.82647826478268,-6.367067831747775],[147.82647826478268,-6.377199295367063],[147.8336783367834,-6.390707913526128],[147.84087840878408,-6.400839377145431],[147.85167851678517,-6.4126594180346075],[147.85527855278553,-6.4396766543527235],[147.86607866078663,-6.463316736131077],[147.86607866078663,-6.476825354290142],[147.86247862478626,-6.485268240639556],[147.8588785887859,-6.4920225497190955],[147.85527855278553,-6.5004654360685095],[147.86247862478626,-6.51397405422756],[147.85167851678517,-6.5274826723866255],[147.85167851678517,-6.540991290545691],[147.8588785887859,-6.5578770632445185],[147.86247862478626,-6.579828567752983],[147.8588785887859,-6.58320572229276],[147.84447844478444,-6.593337185912048],[147.84087840878408,-6.596714340451811],[147.84087840878408,-6.608534381341002],[147.8480784807848,-6.6152886904205275],[147.85527855278553,-6.6152886904205275],[147.86247862478626,-6.610222958610876],[147.85527855278553,-6.691274667565253],[147.77607776077764,-6.718291903883369],[147.59967599675997,-6.726734790232783],[147.58887588875888,-6.733489099312322],[147.57447574475748,-6.748686294741262],[147.5636756367564,-6.753752026550913],[147.5528755287553,-6.753752026550913],[147.5420754207542,-6.748686294741262],[147.53127531275317,-6.745309140201499],[147.52047520475207,-6.750374872011136],[147.50247502475025,-6.755440603820787],[147.43767437674376,-6.733489099312322],[147.41247412474127,-6.733489099312322],[147.37287372873732,-6.743620562931611],[147.35127351273513,-6.746997717471373],[147.19647196471965,-6.738554831121959],[147.1820718207182,-6.740243408391848],[147.17847178471789,-6.7301119447725455],[147.1676716767168,-6.721669058423132],[147.16047160471607,-6.716603326613495],[147.1460714607146,-6.713226172073718],[147.13167131671315,-6.711537594803843],[147.0812708127081,-6.713226172073718],[147.07047070470708,-6.716603326613495],[147.04527045270453,-6.735177676582197],[147.02727027270276,-6.740243408391848],[146.9948699486995,-6.738554831121959],[146.97686976869772,-6.740243408391848],[146.96246962469627,-6.746997717471373],[146.96246962469627,-6.770637799249741],[146.94446944469445,-6.812852230996796],[146.94086940869408,-6.836492312775164],[146.94446944469445,-6.88377247633187],[146.9480694806948,-6.931052639888591],[146.95526955269554,-6.9546927216669445],[146.98766987669876,-6.99521857614414],[147.00927009270094,-7.013792926112842],[147.02007020070204,-7.027301544271907],[147.02727027270276,-7.032367276081558],[147.0380703807038,-7.035744430621321],[147.04527045270453,-7.034055853351433],[147.05967059670598,-7.0205472351923675],[147.07407074070744,-7.013792926112842],[147.07047070470708,-7.027301544271907],[147.0668706687067,-7.037433007891195],[147.05967059670598,-7.047564471510498],[147.05967059670598,-7.054318780590023],[147.05967059670598,-7.067827398749088],[147.07047070470708,-7.083024594178028],[147.07407074070744,-7.096533212337093],[147.07047070470708,-7.108353253226269],[147.06327063270635,-7.131993335004637],[147.0668706687067,-7.145501953163688],[147.07047070470708,-7.145501953163688],[147.12087120871212,-7.186027807640883],[147.13167131671315,-7.19784784853006],[147.14247142471424,-7.213045043958999],[147.1460714607146,-7.23330797119759],[147.14247142471424,-7.280588134754311],[147.1460714607146,-7.29578533018325],[147.15327153271534,-7.305916793802552],[147.14967149671497,-7.310982525612204],[147.14247142471424,-7.314359680151966],[147.14247142471424,-7.32280256650138],[147.1460714607146,-7.3329340301206685],[147.15327153271534,-7.349819802819496],[147.16047160471607,-7.380214193677389],[147.16047160471607,-7.390345657296692],[147.17847178471789,-7.415674316344919],[147.1820718207182,-7.425805779964222],[147.18927189271892,-7.429182934503984],[147.19287192871928,-7.434248666313636],[147.19647196471965,-7.437625820853398],[147.19647196471965,-7.444380129932938],[147.18927189271892,-7.447757284472701],[147.1820718207182,-7.449445861742575],[147.1820718207182,-7.452823016282352],[147.18927189271892,-7.46295447990164],[147.19287192871928,-7.46295447990164],[147.20007200072,-7.461265902631752],[147.2108721087211,-7.466331634441403],[147.21447214472147,-7.4730859435209425],[147.21447214472147,-7.479840252600468],[147.21447214472147,-7.484905984410119],[147.22887228872293,-7.486594561679993],[147.2360723607236,-7.484905984410119],[147.25047250472505,-7.466331634441403],[147.25767257672578,-7.466331634441403],[147.2648726487265,-7.471397366251054],[147.26847268472687,-7.476463098060705],[147.26847268472687,-7.481528829870356],[147.2648726487265,-7.486594561679993],[147.32607326073264,-7.501791757108947],[147.3548735487355,-7.515300375267998],[147.3656736567366,-7.538940457046365],[147.37287372873732,-7.549071920665654],[147.38007380073805,-7.554137652475305],[147.39087390873908,-7.555826229745193],[147.3980739807398,-7.555826229745193],[147.41247412474127,-7.5575148070150675],[147.42327423274236,-7.564269116094607],[147.4304743047431,-7.572712002444021],[147.44127441274412,-7.582843466063309],[147.4340743407434,-7.591286352412723],[147.44127441274412,-7.594663506952486],[147.4520745207452,-7.594663506952486],[147.4628746287463,-7.596352084222374],[147.4880748807488,-7.616615011460965],[147.4988749887499,-7.628435052350142],[147.50247502475025,-7.640255093239318],[147.50247502475025,-7.679092370446625],[147.51327513275135,-7.687535256796039],[147.56727567275675,-7.695978143145453],[147.5816758167582,-7.704421029494867],[147.5852758527585,-7.717929647653932],[147.5852758527585,-7.743258306702174],[147.59247592475924,-7.765209811210639],[147.6068760687607,-7.780407006639592],[147.61407614076143,-7.79729277933842],[147.6068760687607,-7.815867129307122],[147.65367653676537,-7.809112820227597],[147.65367653676537,-7.802358511148057],[147.64647646476465,-7.79729277933842],[147.63927639276392,-7.7905384702588805],[147.63567635676355,-7.7820955839094665],[147.63567635676355,-7.768586965750416],[147.6608766087661,-7.788849892989006],[147.6824768247683,-7.810801397497471],[147.6968769687697,-7.83950721108549],[147.70407704077041,-7.903673147341024],[147.7148771487715,-7.920558920039852],[147.7256772567726,-7.932378960929029],[147.74367743677436,-7.939133270008568],[147.76167761677618,-7.940821847278443],[147.79047790477904,-7.934067538198917],[147.81207812078122,-7.932378960929029],[147.81927819278195,-7.9357561154687914],[147.82647826478268,-7.940821847278443],[147.8336783367834,-7.944199001818205],[147.84447844478444,-7.9357561154687914],[147.85167851678517,-7.932378960929029],[147.86607866078663,-7.932378960929029],[147.87687876878772,-7.93744469273868],[147.9236792367924,-7.971216238136336],[147.94527945279452,-7.983036279025512],[147.9668796687967,-7.986413433565275],[147.97407974079744,-7.996544897184577],[147.9776797767978,-8.003299206264103],[147.98847988479883,-8.04213648347141],[147.99927999279993,-8.055645101630475],[148.01728017280175,-8.05733367890035],[148.03888038880388,-8.052267947090698],[148.0568805688057,-8.050579369820824],[148.0676806768068,-8.06239941071],[148.07848078480788,-8.05733367890035],[148.08928089280892,-8.055645101630475],[148.11448114481146,-8.055645101630475],[148.11808118081183,-8.052267947090698],[148.13608136081365,-8.045513638011172],[148.14688146881468,-8.045513638011172],[148.13968139681396,-8.059022256170238],[148.13608136081365,-8.075908028869065],[148.15768157681578,-8.16709120144273],[148.17208172081723,-8.189042705951195],[148.17928179281796,-8.217748519539214],[148.19728197281972,-8.254897219476632],[148.20448204482045,-8.276848723985097],[148.21168211682118,-8.305554537573101],[148.21168211682118,-8.33426035116112],[148.20448204482045,-8.357900432939473],[148.229682296823,-8.418689214655245],[148.23688236882367,-8.442329296433613],[148.23328233282336,-8.459215069132426],[148.22248222482227,-8.49467519179997],[148.22248222482227,-8.513249541768687],[148.22608226082264,-8.535201046277152],[148.229682296823,-8.555463973515742],[148.23688236882367,-8.568972591674807],[148.2548825488255,-8.580792632563984],[148.29088290882908,-8.597678405262812],[148.2980829808298,-8.611187023421877],[148.32328323283235,-8.602744137072463],[148.34128341283412,-8.609498446151989],[148.35928359283594,-8.619629909771291],[148.37008370083703,-8.624695641580942],[148.37728377283776,-8.626384218850816],[148.3880838808388,-8.631449950660468],[148.39168391683916,-8.639892837009882],[148.39528395283952,-8.648335723359295],[148.40248402484025,-8.655090032438821],[148.43848438484383,-8.666910073328012],[148.44568445684456,-8.675352959677426],[148.45648456484565,-8.700681618725653],[148.46728467284674,-8.715878814154607],[148.4816848168482,-8.731076009583546],[148.48528485284857,-8.747961782282374],[148.48528485284857,-8.815504873077685],[148.4960849608496,-8.883047963872997],[148.50328503285033,-8.89149085022241],[148.51048510485106,-8.893179427492285],[148.51768517685178,-8.896556582032048],[148.5248852488525,-8.903310891111587],[148.52848528485288,-8.908376622921224],[148.5248852488525,-8.915130932000764],[148.52128521285215,-8.925262395620052],[148.51768517685178,-8.930328127429703],[148.52128521285215,-8.935393859239355],[148.52848528485288,-8.947213900128531],[148.53208532085324,-8.953968209208071],[148.54288542885428,-8.994494063685252],[148.5608856088561,-9.03164276362267],[148.58608586085865,-9.063725731750438],[148.62208622086223,-9.083988658989028],[148.70848708487085,-9.099185854417982],[148.74448744487444,-9.097497277148094],[148.7588875888759,-9.104251586227619],[148.76608766087662,-9.100874431687856],[148.80928809288093,-9.090742968068568],[148.82728827288275,-9.08905439079868],[148.83808838088385,-9.085677236258917],[148.84888848888488,-9.082300081719154],[148.87048870488707,-9.070480040829963],[148.88128881288816,-9.062037154480564],[148.8920889208892,-9.050217113591373],[148.89568895688956,-9.040085649972085],[148.90288902889029,-9.043462804511847],[148.9208892088921,-9.043462804511847],[148.94248942489423,-9.043462804511847],[148.9568895688957,-9.036708495432322],[148.97848978489787,-9.051905690861261],[149.00369003690037,-9.050217113591373],[149.06849068490686,-9.035019918162433],[149.0756907569076,-9.033331340892545],[149.07929079290795,-9.029954186352782],[149.07929079290795,-9.02657703181302],[149.08289082890832,-9.016445568193717],[149.09009090090905,-9.013068413653954],[149.09369093690935,-9.01137983638408],[149.10089100891008,-9.008002681844317],[149.1188911889119,-8.99111690914549],[149.12609126091263,-8.980985445526187],[149.1404914049141,-8.974231136446662],[149.1548915489155,-9.002936950034666],[149.24489244892447,-8.997871218225015],[149.26649266492666,-9.014756990923843],[149.27729277292775,-9.009691259114192],[149.28449284492848,-9.008002681844317],[149.2916929169292,-9.013068413653954],[149.2916929169292,-9.023199877273257],[149.29889298892988,-9.023199877273257],[149.30969309693097,-9.016445568193717],[149.3168931689317,-9.023199877273257],[149.32409324093243,-9.033331340892545],[149.3276932769328,-9.04683995905161],[149.32409324093243,-9.060348577210675],[149.32049320493206,-9.072168618099852],[149.3060930609306,-9.090742968068568],[149.31329313293134,-9.092431545338442],[149.3168931689317,-9.095808699878205],[149.32049320493206,-9.097497277148094],[149.3276932769328,-9.097497277148094],[149.30969309693097,-9.102563008957745],[149.30249302493024,-9.104251586227619],[149.2916929169292,-9.104251586227619],[149.3060930609306,-9.117760204386684],[149.32409324093243,-9.119448781656573],[149.33849338493388,-9.12451451346621],[149.33489334893352,-9.144777440704814],[149.32409324093243,-9.159974636133754],[149.3060930609306,-9.17179467702293],[149.28809288092884,-9.17854898610247],[149.2736927369274,-9.17179467702293],[149.2628926289263,-9.181926140642233],[149.24849248492484,-9.212320531500112],[149.24489244892447,-9.224140572389302],[149.24129241292417,-9.246092076897767],[149.23409234092344,-9.279863622295423],[149.23049230492308,-9.300126549534014],[149.22329223292235,-9.315323744962967],[149.19089190891913,-9.344029558550972],[149.1836918369184,-9.367669640329325],[149.18729187291876,-9.391309722107678],[149.20529205292053,-9.430146999314985],[149.21249212492125,-9.450409926553576],[149.2268922689227,-9.487558626490994],[149.2628926289263,-9.502755821919948],[149.33489334893352,-9.516264440078999],[149.360093600936,-9.529773058238064],[149.36729367293674,-9.534838790047715],[149.37809378093783,-9.546658830936892],[149.3816938169382,-9.550035985476654],[149.38529385293856,-9.550035985476654],[149.39969399693996,-9.54834740820678],[149.40329403294032,-9.550035985476654],[149.41409414094142,-9.561856026365831],[149.41769417694178,-9.56354460363572],[149.450094500945,-9.577053221794785],[149.44289442894433,-9.590561839953835],[149.45729457294573,-9.593938994493612],[149.4608946089461,-9.593938994493612],[149.54009540095404,-9.593938994493612],[149.56169561695617,-9.597316149033375],[149.61929619296194,-9.620956230811728],[149.63729637296376,-9.619267653541854],[149.65169651696516,-9.607447612652663],[149.66249662496625,-9.6040704581129],[149.67329673296734,-9.605759035382789],[149.6876968769688,-9.61082476719244],[149.69849698496984,-9.609136189922552],[149.72009720097202,-9.59900472630325],[149.7308973089731,-9.597316149033375],[149.75249752497524,-9.600693303573138],[149.79209792097924,-9.614201921732203],[149.83889838898392,-9.620956230811728],[149.88929889298896,-9.639530580780445],[149.9108991089911,-9.639530580780445],[149.97569975699759,-9.63108769443103],[150.00090000900008,-9.634464848970794],[150.01170011700117,-9.642907735320208],[150.02610026100263,-9.6733021261781],[150.03330033300335,-9.678367857987737],[150.04050040500408,-9.680056435257626],[150.0477004770048,-9.685122167067277],[150.05490054900548,-9.700319362496217],[150.05490054900548,-9.715516557925156],[150.05490054900548,-9.717205135195044],[150.0477004770048,-9.717205135195044],[150.03330033300335,-9.720582289734807],[149.97929979299795,-9.747599526052937],[149.95769957699576,-9.756042412402351],[149.88929889298896,-9.769551030561402],[149.84969849698496,-9.781371071450593],[149.82809828098283,-9.783059648720467],[149.80649806498064,-9.774616762371053],[149.79209792097924,-9.788125380530118],[149.74529745297457,-9.801633998689184],[149.7308973089731,-9.810076885038598],[149.72009720097202,-9.830339812277188],[149.72369723697238,-9.847225584976016],[149.75249752497524,-9.879308553103783],[149.82449824498246,-9.93840875754968],[149.85689856898568,-9.975557457487099],[149.85329853298532,-10.014394734694392],[149.87849878498787,-10.01608331196428],[149.8964989649897,-10.022837621043806],[149.92529925299255,-10.053232011901699],[149.939699396994,-10.061674898251113],[149.95769957699576,-10.070117784600527],[149.97569975699759,-10.075183516410178],[149.9936999369994,-10.076872093680052],[150.05130051300512,-10.075183516410178],[150.0729007290073,-10.076872093680052],[150.0945009450095,-10.083626402759592],[150.1269012690127,-10.103889329998182],[150.1377013770138,-10.10557790726807],[150.1485014850149,-10.10557790726807],[150.15930159301593,-10.102200752728294],[150.17730177301775,-10.09375786637888],[150.18810188101884,-10.092069289109006],[150.19530195301957,-10.095446443648768],[150.20250202502024,-10.103889329998182],[150.21330213302133,-10.122463679966899],[150.2457024570246,-10.130906566316298],[150.25290252902528,-10.13597229812595],[150.2709027090271,-10.15623522536454],[150.28890288902892,-10.171432420793494],[150.29970299703,-10.179875307142908],[150.33930339303396,-10.186629616222433],[150.38250382503827,-10.201826811651372],[150.4041040410404,-10.206892543461024],[150.42210422104222,-10.200138234381498],[150.42930429304295,-10.201826811651372],[150.44010440104404,-10.20351538892126],[150.45450454504544,-10.201826811651372],[150.4581045810458,-10.196761079841735],[150.4977049770498,-10.206892543461024],[150.5229052290523,-10.217024007080326],[150.5337053370534,-10.215335429810438],[150.55170551705515,-10.20351538892126],[150.55890558905588,-10.201826811651372],[150.6021060210602,-10.206892543461024],[150.59490594905952,-10.213646852540563],[150.58410584105843,-10.228844047969503],[150.58050580505807,-10.233909779779154],[150.5877058770588,-10.244041243398442],[150.60930609306092,-10.259238438827396],[150.61650616506165,-10.272747056986447],[150.62730627306274,-10.277812788796098],[150.65250652506523,-10.274435634256335],[150.71730717307173,-10.259238438827396],[150.78210782107823,-10.255861284287619],[150.80010800108005,-10.250795552477982],[150.8289082890829,-10.227155470699614],[150.84690846908472,-10.220401161620089],[150.87570875708758,-10.22546689342974],[150.87210872108722,-10.237286934318917],[150.8541085410854,-10.249106975208093],[150.81090810908108,-10.259238438827396],[150.68850688506888,-10.325092952352819],[150.65250652506523,-10.338601570511884],[150.61650616506165,-10.34366730232152],[150.5985059850599,-10.34366730232152],[150.59130591305916,-10.341978725051646],[150.5877058770588,-10.336912993241995],[150.56970569705697,-10.340290147781758],[150.5229052290523,-10.321715797813056],[150.50130501305011,-10.316650066003405],[150.46170461704617,-10.313272911463642],[150.44010440104404,-10.30820717965399],[150.42570425704258,-10.299764293304577],[150.40050400504003,-10.299764293304577],[150.3681036810368,-10.326781529622693],[150.3465034650347,-10.36561880683],[150.3609036090361,-10.399390352227655],[150.3681036810368,-10.399390352227655],[150.3681036810368,-10.39263604314813],[150.38250382503827,-10.399390352227655],[150.42930429304295,-10.402767506767418],[150.44730447304477,-10.409521815846944],[150.45450454504544,-10.414587547656595],[150.46530465304653,-10.417964702196358],[150.50130501305011,-10.423030434006009],[150.50850508505084,-10.42809616581566],[150.52650526505266,-10.439916206704837],[150.64890648906493,-10.477064906642255],[150.67050670506706,-10.495639256610971],[150.67770677706778,-10.529410802008627],[150.68850688506888,-10.546296574707455],[150.69210692106924,-10.556428038326743],[150.68850688506888,-10.56824807921592],[150.67050670506706,-10.576690965565334],[150.55170551705515,-10.620593974582292],[150.54090540905412,-10.61552824277264],[150.53730537305375,-10.612151088232878],[150.50850508505084,-10.618905397312403],[150.49410494104944,-10.618905397312403],[150.48690486904871,-10.622282551852166],[150.47250472504726,-10.632414015471468],[150.4689046890469,-10.63747974728112],[150.4581045810458,-10.649299788170296],[150.44730447304477,-10.65774267451971],[150.4437044370444,-10.65774267451971],[150.44010440104404,-10.661119829059473],[150.43650436504367,-10.666185560869124],[150.42930429304295,-10.674628447218538],[150.42930429304295,-10.688137065377589],[150.4149041490415,-10.681382756298063],[150.39690396903973,-10.681382756298063],[150.38250382503827,-10.683071333567952],[150.3681036810368,-10.688137065377589],[150.35730357303572,-10.664496983599236],[150.33930339303396,-10.65774267451971],[150.31770317703177,-10.662808406329361],[150.27450274502746,-10.686448488107715],[150.27450274502746,-10.688137065377589],[150.26730267302673,-10.686448488107715],[150.25650256502564,-10.681382756298063],[150.24930249302497,-10.676317024488412],[150.25290252902528,-10.674628447218538],[150.24210242102424,-10.6780056017583],[150.23130231302315,-10.684759910837826],[150.20970209702097,-10.701645683536654],[150.2061020610206,-10.69320279718724],[150.1809018090181,-10.6780056017583],[150.17730177301775,-10.671251292678775],[150.1809018090181,-10.664496983599236],[150.18810188101884,-10.65774267451971],[150.1917019170192,-10.649299788170296],[150.1809018090181,-10.642545479090757],[150.15570155701556,-10.647611210900408],[150.13050130501307,-10.656054097249822],[150.1161011610116,-10.666185560869124],[150.09810098100985,-10.645922633630533],[150.0945009450095,-10.639168324550994],[150.0837008370084,-10.635791170011231],[150.08010080100803,-10.63747974728112],[150.07650076500767,-10.640856901820882],[150.06570065700657,-10.639168324550994],[150.05490054900548,-10.623971129122054],[150.0477004770048,-10.618905397312403],[150.04050040500408,-10.618905397312403],[150.03330033300335,-10.618905397312403],[150.02250022500226,-10.618905397312403],[150.01170011700117,-10.612151088232878],[150.029700297003,-10.600331047343701],[150.029700297003,-10.58851100645451],[150.0189001890019,-10.578379542835222],[150.01170011700117,-10.56824807921592],[150.0081000810008,-10.563182347406283],[150.00090000900008,-10.57331381102557],[149.9936999369994,-10.591888160994287],[149.9828998289983,-10.591888160994287],[149.97569975699759,-10.58851100645451],[149.95769957699576,-10.578379542835222],[149.96129961299613,-10.57331381102557],[149.9648996489965,-10.556428038326743],[149.9540995409954,-10.566559501946045],[149.95049950499504,-10.571625233755682],[149.94329943299437,-10.571625233755682],[149.93609936099364,-10.561493770136394],[149.92529925299255,-10.55305088378698],[149.8964989649897,-10.542919420167678],[149.90369903699036,-10.556428038326743],[149.90009900099,-10.558116615596632],[149.8964989649897,-10.558116615596632],[149.8964989649897,-10.559805192866506],[149.8964989649897,-10.564870924676157],[149.8856988569886,-10.558116615596632],[149.8748987489875,-10.554739461056869],[149.86769867698678,-10.551362306517092],[149.85329853298532,-10.549673729247218],[149.86769867698678,-10.539542265627915],[149.88209882098823,-10.534476533818264],[149.89289892898933,-10.527722224738739],[149.8964989649897,-10.509147874770036],[149.88929889298896,-10.51083645203991],[149.8748987489875,-10.515902183849562],[149.87849878498787,-10.507459297500148],[149.8856988569886,-10.502393565690497],[149.89289892898933,-10.499016411150734],[149.90369903699036,-10.495639256610971],[149.9108991089911,-10.507459297500148],[149.92169921699218,-10.507459297500148],[149.94689946899473,-10.502393565690497],[149.9936999369994,-10.514213606579673],[150.03690036900372,-10.499016411150734],[150.0477004770048,-10.495639256610971],[150.0477004770048,-10.49057352480132],[150.05130051300512,-10.473687752102492],[150.05490054900548,-10.468622020292841],[150.05850058500585,-10.465244865753078],[150.08010080100803,-10.461867711213316],[150.06930069300694,-10.45511340213379],[150.05490054900548,-10.45511340213379],[150.04050040500408,-10.45511340213379],[150.02610026100263,-10.45511340213379],[150.01530015300153,-10.450047670324139],[149.9936999369994,-10.436539052165074],[149.97569975699759,-10.433161897625311],[149.96129961299613,-10.42809616581566],[149.9540995409954,-10.426407588545771],[149.95049950499504,-10.42809616581566],[149.94329943299437,-10.438227629434962],[149.939699396994,-10.439916206704837],[149.939699396994,-10.446670515784376],[149.93609936099364,-10.461867711213316],[149.93249932499327,-10.478753483912143],[149.92169921699218,-10.488884947531432],[149.91449914499145,-10.482130638451906],[149.9108991089911,-10.47537632937238],[149.9108991089911,-10.466933443022967],[149.9108991089911,-10.458490556673553],[149.90729907299072,-10.450047670324139],[149.90369903699036,-10.446670515784376],[149.90009900099,-10.444981938514488],[149.8964989649897,-10.439916206704837],[149.8856988569886,-10.416276124926483],[149.88209882098823,-10.40614466130718],[149.87129871298714,-10.396013197687893],[149.84609846098465,-10.380816002258939],[149.79209792097924,-10.362241652290237],[149.77049770497706,-10.348733034131172],[149.74889748897488,-10.338601570511884],[149.71649716497166,-10.335224415972107],[149.6480964809648,-10.336912993241995],[149.61569615696158,-10.34535587959141],[149.59769597695976,-10.347044456861283],[149.57249572495726,-10.336912993241995],[149.56169561695617,-10.34366730232152],[149.55089550895508,-10.35042161140106],[149.53289532895332,-10.34366730232152],[149.5256952569526,-10.352110188670935],[149.54009540095404,-10.358864497750474],[149.54009540095404,-10.36561880683],[149.50769507695077,-10.36561880683],[149.50049500495004,-10.360553075020349],[149.49689496894968,-10.34366730232152],[149.489694896949,-10.336912993241995],[149.4788947889479,-10.340290147781758],[149.47169471694718,-10.347044456861283],[149.4608946089461,-10.352110188670935],[149.44289442894433,-10.34366730232152],[149.45369453694536,-10.336912993241995],[149.45369453694536,-10.33015868416247],[149.44649446494464,-10.326781529622693],[149.42129421294214,-10.321715797813056],[149.41769417694178,-10.313272911463642],[149.41769417694178,-10.30314144784434],[149.41409414094142,-10.293009984225037],[149.36729367293674,-10.276124211526223],[149.35649356493565,-10.28118994333586],[149.33849338493388,-10.301452870574451],[149.3276932769328,-10.309895756923865],[149.31329313293134,-10.301452870574451],[149.29529295292951,-10.296387138764814],[149.2736927369274,-10.291321406955163],[149.25569255692557,-10.289632829685274],[149.24129241292417,-10.286255675145512],[149.16929169291694,-10.249106975208093],[149.1548915489155,-10.244041243398442],[149.129691296913,-10.24066408885868],[149.11169111691117,-10.235598357049028],[149.10089100891008,-10.233909779779154],[149.08289082890832,-10.237286934318917],[149.07209072090723,-10.237286934318917],[149.06849068490686,-10.233909779779154],[149.0432904329043,-10.244041243398442],[149.03249032490328,-10.247418397938205],[149.0216902169022,-10.247418397938205],[149.00729007290073,-10.252484129747856],[148.99648996489964,-10.26092701609727],[148.9856898568986,-10.271058479716572],[148.97848978489787,-10.276124211526223],[148.9568895688957,-10.277812788796098],[148.93888938889393,-10.271058479716572],[148.87048870488707,-10.23897551158879],[148.85968859688597,-10.235598357049028],[148.84528845288452,-10.233909779779154],[148.7912879128791,-10.242352666128568],[148.78048780487808,-10.242352666128568],[148.76248762487626,-10.235598357049028],[148.7480874808748,-10.233909779779154],[148.73728737287377,-10.230532625239391],[148.74088740887407,-10.208581120730912],[148.73008730087304,-10.200138234381498],[148.7336873368734,-10.196761079841735],[148.73728737287377,-10.190006770762196],[148.73728737287377,-10.186629616222433],[148.72648726487267,-10.186629616222433],[148.7228872288723,-10.186629616222433],[148.73008730087304,-10.174809575333256],[148.73728737287377,-10.169743843523605],[148.7480874808748,-10.166366688983842],[148.76248762487626,-10.166366688983842],[148.76608766087662,-10.157923802634429],[148.7588875888759,-10.14272660720549],[148.74448744487444,-10.13597229812595],[148.73728737287377,-10.149480916285015],[148.7336873368734,-10.15623522536454],[148.7228872288723,-10.15623522536454],[148.70848708487085,-10.151169493554903],[148.7048870488705,-10.146103761745252],[148.69768697686976,-10.137660875395838],[148.69048690486903,-10.10557790726807],[148.68328683286836,-10.10557790726807],[148.67608676086763,-10.146103761745252],[148.6688866888669,-10.164678111713954],[148.65088650886509,-10.173120998063368],[148.640086400864,-10.18325246168267],[148.640086400864,-10.188318193492321],[148.63288632886332,-10.186629616222433],[148.62208622086223,-10.179875307142908],[148.57528575285755,-10.179875307142908],[148.550085500855,-10.174809575333256],[148.5392853928539,-10.173120998063368],[148.53208532085324,-10.176498152603145],[148.52848528485288,-10.184941038952545],[148.51408514085142,-10.190006770762196],[148.49968499684996,-10.193383925301958],[148.42048420484207,-10.193383925301958],[148.40248402484025,-10.200138234381498],[148.33768337683375,-10.174809575333256],[148.32688326883272,-10.16298953444408],[148.319683196832,-10.14272660720549],[148.2980829808298,-10.127529411776536],[148.28008280082804,-10.124152257236773],[148.2728827288273,-10.139349452665712],[148.25848258482586,-10.129217989046424],[148.2440824408244,-10.117397948157247],[148.229682296823,-10.10557790726807],[148.21168211682118,-10.098823598188531],[148.2008820088201,-10.097135020918657],[148.18288182881832,-10.098823598188531],[148.1756817568176,-10.098823598188531],[148.16848168481687,-10.092069289109006],[148.1648816488165,-10.07856067094994],[148.1540815408154,-10.070117784600527],[148.14328143281432,-10.10557790726807],[148.10368103681037,-10.127529411776536],[148.0568805688057,-10.13597229812595],[148.01728017280175,-10.124152257236773],[148.0028800288003,-10.147792339015126],[147.9920799207992,-10.159612379904317],[147.9776797767978,-10.166366688983842],[147.95967959679598,-10.154546648094666],[147.9488794887949,-10.13597229812595],[147.9380793807938,-10.115709370887359],[147.92727927279276,-10.098823598188531],[147.9128791287913,-10.088692134569243],[147.89847898478985,-10.090380711839117],[147.87687876878772,-10.097135020918657],[147.85527855278553,-10.098823598188531],[147.85527855278553,-10.092069289109006],[147.87327873278736,-10.085314980029466],[147.88047880478808,-10.068429207330638],[147.88047880478808,-10.051543434631824],[147.86607866078663,-10.04310054828241],[147.8588785887859,-10.044789125552285],[147.85167851678517,-10.049854857361936],[147.8480784807848,-10.05829774371135],[147.84447844478444,-10.07856067094994],[147.84087840878408,-10.076872093680052],[147.82647826478268,-10.063363475521001],[147.78687786877867,-10.054920589171587],[147.76167761677618,-10.059986320981238],[147.72207722077223,-10.098823598188531],[147.71847718477187,-10.098823598188531],[147.70047700477005,-10.014394734694392],[147.68967689676896,-10.012706157424518],[147.67887678876792,-10.009329002884755],[147.66807668076683,-10.004263271075104],[147.6608766087661,-9.999197539265452],[147.65727657276574,-9.992443230185927],[147.64647646476465,-9.989066075646164],[147.63207632076325,-9.990754652916038],[147.62127621276215,-9.989066075646164],[147.6068760687607,-9.98062318929675],[147.57447574475748,-9.945163066629206],[147.5636756367564,-9.929965871200267],[147.56007560075602,-9.914768675771313],[147.54567545675457,-9.901260057612262],[147.53127531275317,-9.89112859399296],[147.5168751687517,-9.879308553103783],[147.50967509675098,-9.864111357674844],[147.50607506075062,-9.84891416224589],[147.50247502475025,-9.80669973049882],[147.4988749887499,-9.78643680326023],[147.49167491674916,-9.767862453291528],[147.40167401674017,-9.651350621669621],[147.37287372873732,-9.624333385351491],[147.3656736567366,-9.612513344462315],[147.3548735487355,-9.595627571763487],[147.3440734407344,-9.580430376334547],[147.32607326073264,-9.570298912715245],[147.3188731887319,-9.577053221794785],[147.3188731887319,-9.555101717286306],[147.31167311673119,-9.538215944587478],[147.29727297272973,-9.526395903698301],[147.27927279272797,-9.516264440078999],[147.26127261272615,-9.509510130999473],[147.25047250472505,-9.507821553729585],[147.2468724687247,-9.516264440078999],[147.25767257672578,-9.53652736731759],[147.2360723607236,-9.538215944587478],[147.20367203672038,-9.528084480968175],[147.17127171271716,-9.512887285539236],[147.14967149671497,-9.497690090110297],[147.1460714607146,-9.487558626490994],[147.13887138871388,-9.453787081093338],[147.13527135271352,-9.440278462934288],[147.12087120871212,-9.431835576584874],[147.11007110071102,-9.428458422045097],[147.09567095670957,-9.430146999314985],[147.0776707767078,-9.433524153854748],[147.08487084870848,-9.441967040204162],[147.09927099270993,-9.447032772013813],[147.10647106471066,-9.453787081093338],[147.11007110071102,-9.465607121982515],[147.10647106471066,-9.474050008331929],[147.1028710287103,-9.480804317411469],[147.09927099270993,-9.482492894681343],[147.08847088470884,-9.480804317411469],[147.07047070470708,-9.474050008331929],[147.05247052470526,-9.460541390172878],[147.0380703807038,-9.428458422045097],[147.0128701287013,-9.389621144837804],[147.00567005670058,-9.371046794869088],[146.99126991269912,-9.323766631312381],[146.9840698406984,-9.301815126803902],[146.96606966069663,-9.279863622295423],[146.9480694806948,-9.273109313215897],[146.9048690486905,-9.281552199565311],[146.8940689406894,-9.268043581406246],[146.90846908469086,-9.266355004136358],[146.9156691566916,-9.259600695056832],[146.91926919269196,-9.252846385977307],[146.9156691566916,-9.241026345088116],[146.9048690486905,-9.235960613278479],[146.89766897668977,-9.210631954230237],[146.8940689406894,-9.181926140642233],[146.90846908469086,-9.158286058863865],[146.90126901269014,-9.154908904324103],[146.89766897668977,-9.148154595244577],[146.8940689406894,-9.139711708895163],[146.88686886868868,-9.13126882254575],[146.8940689406894,-9.127891668005987],[146.9156691566916,-9.12451451346621],[146.93726937269372,-9.10931731803727],[146.94086940869408,-9.107628740767396],[146.9480694806948,-9.097497277148094],[146.97686976869772,-9.075545772639614],[146.9840698406984,-9.063725731750438],[146.9840698406984,-9.05359426813115],[146.98046980469803,-9.041774227241959],[146.97686976869772,-9.033331340892545],[146.969669696697,-9.029954186352782],[146.95526955269554,-9.03164276362267],[146.95166951669518,-9.041774227241959],[146.9480694806948,-9.051905690861261],[146.95166951669518,-9.056971422670912],[146.95166951669518,-9.063725731750438],[146.91926919269196,-9.095808699878205],[146.90846908469086,-9.104251586227619],[146.87246872468728,-9.105940163497507],[146.84366843668437,-9.092431545338442],[146.81126811268115,-9.07385719536974],[146.77886778867787,-9.056971422670912],[146.76806768067684,-9.05359426813115],[146.74646746467465,-9.056971422670912],[146.73566735667356,-9.056971422670912],[146.72846728467283,-9.05359426813115],[146.71406714067143,-9.045151381781736],[146.64566645666457,-9.029954186352782],[146.62766627666275,-9.023199877273257],[146.60246602466026,-9.006314104574429],[146.58446584465844,-8.98436260006595],[146.5736657366574,-8.960722518287596],[146.55926559265595,-8.940459591049006],[146.5628656286563,-8.92695097288994],[146.55926559265595,-8.911753777461001],[146.55566555665558,-8.898245159301936],[146.54846548465486,-8.89149085022241],[146.55566555665558,-8.883047963872997],[146.55566555665558,-8.86447361390428],[146.5628656286563,-8.850964995745215],[146.58086580865807,-8.857719304824755],[146.59526595265953,-8.845899263935578],[146.60606606066062,-8.834079223046388],[146.609666096661,-8.820570604887337],[146.60606606066062,-8.80199625491862],[146.59166591665917,-8.815504873077685],[146.5772657726577,-8.822259182157211],[146.56646566465668,-8.818882027617448],[146.5736657366574,-8.80199625491862],[146.56646566465668,-8.798619100378858],[146.5628656286563,-8.793553368569206],[146.55926559265595,-8.786799059489681],[146.55926559265595,-8.778356173140267],[146.55206552065522,-8.76653613225109],[146.54126541265413,-8.763158977711313],[146.52686526865267,-8.764847554981202],[146.519665196652,-8.764847554981202],[146.51606516065164,-8.756404668631788],[146.51606516065164,-8.746273205012486],[146.51606516065164,-8.736141741393197],[146.51606516065164,-8.727698855043784],[146.51246512465127,-8.714190236884718],[146.5088650886509,-8.705747350535304],[146.45846458464587,-8.651712877899058],[146.44766447664477,-8.63482710520023],[146.44046440464405,-8.62131848704118],[146.43686436864368,-8.611187023421877],[146.38646386463864,-8.582481209833873],[146.36126361263615,-8.560529705325393],[146.27846278462783,-8.435574987354073],[146.26406264062643,-8.40518059649618],[146.26406264062643,-8.364654742018999],[146.26046260462607,-8.356211855669585],[146.25326253262534,-8.344391814780408],[146.24966249662498,-8.341014660240646],[146.24966249662498,-8.308931692112878],[146.24606246062461,-8.29204591941405],[146.23526235262352,-8.275160146715223],[146.22086220862212,-8.25996295128627],[146.18846188461885,-8.248142910397092],[146.159661596616,-8.219437096809088],[146.15246152461526,-8.214371364999437],[146.1272612726127,-8.2093056331898],[146.11646116461168,-8.200862746840386],[146.09846098460986,-8.165402624172842],[146.1128611286113,-8.153582583283665],[146.10926109261095,-8.138385387854726],[146.09846098460986,-8.121499615155898],[146.0840608406084,-8.111368151536595],[146.0948609486095,-8.106302419726944],[146.10206102061022,-8.099548110647419],[146.1056610566106,-8.092793801567893],[146.09846098460986,-8.082662337948591],[146.08046080460804,-8.087728069758242],[146.04806048060482,-8.075908028869065],[145.99765997659978,-8.048890792550935],[145.940059400594,-8.03538217439187],[145.9076590765908,-8.033693597121996],[145.88245882458824,-8.04213648347141],[145.8608586085861,-8.028627865312345],[145.79965799657998,-8.006676360803866],[145.78525785257852,-7.989790588105038],[145.78165781657816,-7.986413433565275],[145.7780577805778,-7.983036279025512],[145.77445774457743,-7.977970547215861],[145.77085770857713,-7.969527660866447],[145.77445774457743,-7.966150506326684],[145.7888578885789,-7.964461929056796],[145.79245792457925,-7.959396197247159],[145.7888578885789,-7.954330465437508],[145.78525785257852,-7.949264733627857],[145.78165781657816,-7.945887579088094],[145.7780577805778,-7.942510424548331],[145.7780577805778,-7.9357561154687914],[145.79245792457925,-7.912116033690438],[145.78525785257852,-7.912116033690438],[145.77085770857713,-7.9273132291193775],[145.75645756457567,-7.9273132291193775],[145.7420574205742,-7.923936074579615],[145.7240572405724,-7.932378960929029],[145.73845738457385,-7.952641888167619],[145.72045720457209,-7.961084774517033],[145.65925659256595,-7.959396197247159],[145.6448564485645,-7.956019042707396],[145.62685626856268,-7.93744469273868],[145.61245612456128,-7.932378960929029],[145.59805598055982,-7.934067538198917],[145.58365583655836,-7.93744469273868],[145.56925569255696,-7.939133270008568],[145.55125551255514,-7.932378960929029],[145.55125551255514,-7.939133270008568],[145.53325533255332,-7.932378960929029],[145.46485464854652,-7.945887579088094],[145.44325443254434,-7.944199001818205],[145.42165421654215,-7.939133270008568],[145.40725407254075,-7.932378960929029],[145.34965349653498,-7.876655911022908],[145.32085320853207,-7.861458715593955],[145.2848528485285,-7.858081561054192],[145.2740527405274,-7.85977013832408],[145.26685266852672,-7.863147292863843],[145.25605256052563,-7.864835870133717],[145.24165241652418,-7.864835870133717],[145.23445234452345,-7.858081561054192],[145.21285212852132,-7.83950721108549],[145.2056520565206,-7.827687170196299],[145.19125191251914,-7.819244283846885],[145.1840518405184,-7.805735665687834],[145.17325173251731,-7.815867129307122],[145.16605166051664,-7.831064324736076],[145.16965169651695,-7.836130056545713],[145.14805148051482,-7.837818633815601],[145.12285122851227,-7.831064324736076],[145.10125101251015,-7.817555706577011],[145.09405094050942,-7.798981356608294],[145.09045090450905,-7.788849892989006],[145.08325083250833,-7.778718429369704],[145.0760507605076,-7.775341274829941],[145.07245072450723,-7.7854727384492435],[145.07245072450723,-7.805735665687834],[145.06885068850687,-7.8124899747673595],[145.05805058050584,-7.815867129307122],[144.9968499684997,-7.815867129307122],[144.9860498604986,-7.809112820227597],[144.9536495364954,-7.775341274829941],[144.9428494284943,-7.792227047528769],[144.9320493204932,-7.7905384702588805],[144.9212492124921,-7.780407006639592],[144.90324903249035,-7.775341274829941],[144.89604896048962,-7.7770298520998296],[144.88524885248853,-7.7820955839094665],[144.8780487804878,-7.7820955839094665],[144.8780487804878,-7.778718429369704],[144.87084870848707,-7.77027554302029],[144.87084870848707,-7.768586965750416],[144.86004860048604,-7.765209811210639],[144.84924849248495,-7.758455502131113],[144.84204842048422,-7.750012615781699],[144.84204842048422,-7.743258306702174],[144.86004860048604,-7.7246839567334575],[144.8672486724867,-7.706109606764755],[144.8672486724867,-7.608172125111551],[144.8636486364864,-7.586220620603072],[144.8528485284853,-7.569334847904244],[144.84564845648458,-7.5879091978729605],[144.84204842048422,-7.636877938699556],[144.83124831248313,-7.658829443208035],[144.83844838448385,-7.674026638636974],[144.8240482404824,-7.682469524986388],[144.80604806048063,-7.685846679526151],[144.7880478804788,-7.685846679526151],[144.770047700477,-7.680780947716514],[144.7556475564756,-7.668960906827337],[144.7340473404734,-7.643632247779095],[144.69804698046983,-7.616615011460965],[144.6908469084691,-7.594663506952486],[144.680046800468,-7.582843466063309],[144.6548465484655,-7.560891961554844],[144.6476464764648,-7.5794663115235466],[144.65124651246515,-7.598040661492263],[144.65844658446588,-7.616615011460965],[144.66204662046624,-7.633500784159793],[144.65124651246515,-7.648697979588732],[144.62964629646297,-7.657140865938146],[144.60444604446047,-7.657140865938146],[144.58644586445865,-7.652075134128509],[144.57564575645756,-7.641943670509207],[144.56484564845647,-7.625057897810379],[144.55404554045543,-7.606483547841677],[144.55044550445507,-7.592974929682612],[144.55044550445507,-7.581154888793435],[144.55044550445507,-7.572712002444021],[144.5468454684547,-7.565957693364481],[144.53964539645398,-7.559203384284956],[144.5360453604536,-7.549071920665654],[144.53964539645398,-7.5254318388873],[144.5360453604536,-7.513611797998124],[144.52164521645216,-7.496726025299296],[144.5180451804518,-7.508546066188472],[144.5180451804518,-7.5794663115235466],[144.50724507245076,-7.611549279651314],[144.51084510845112,-7.623369320540505],[144.51444514445143,-7.631812206889904],[144.5360453604536,-7.652075134128509],[144.53244532445325,-7.662206597747797],[144.52164521645216,-7.668960906827337],[144.51444514445143,-7.6723380613671],[144.51084510845112,-7.668960906827337],[144.5036450364504,-7.655452288668272],[144.47844478444784,-7.635189361429681],[144.46764467644675,-7.623369320540505],[144.46764467644675,-7.616615011460965],[144.4640446404464,-7.599729238762137],[144.46044460444608,-7.592974929682612],[144.46044460444608,-7.5879091978729605],[144.45324453244535,-7.582843466063309],[144.44604446044463,-7.5794663115235466],[144.44244442444426,-7.576089156983784],[144.43164431644317,-7.559203384284956],[144.42084420844208,-7.527120416157189],[144.41364413644135,-7.513611797998124],[144.40644406444068,-7.513611797998124],[144.41004410044104,-7.532186147966826],[144.41364413644135,-7.569334847904244],[144.4172441724417,-7.584532043333198],[144.43164431644317,-7.611549279651314],[144.43524435244353,-7.626746475080267],[144.43524435244353,-7.660518020477923],[144.44244442444426,-7.685846679526151],[144.44604446044463,-7.695978143145453],[144.45684456844572,-7.70779818403463],[144.4640446404464,-7.721306802193695],[144.46764467644675,-7.736503997622634],[144.47844478444784,-7.748324038511811],[144.50004500045003,-7.773652697560053],[144.50724507245076,-7.79729277933842],[144.4820448204482,-7.802358511148057],[144.47844478444784,-7.795604202068532],[144.46044460444608,-7.768586965750416],[144.45684456844572,-7.765209811210639],[144.449644496445,-7.7550783475913505],[144.4388443884439,-7.739881152162397],[144.42444424444244,-7.72806111127322],[144.41364413644135,-7.719618224923806],[144.4028440284403,-7.743258306702174],[144.3848438484385,-7.751701193051588],[144.36684366843667,-7.743258306702174],[144.359643596436,-7.716241070384044],[144.35604356043564,-7.687535256796039],[144.34524345243454,-7.658829443208035],[144.31284312843127,-7.6098607023814395],[144.31644316443163,-7.636877938699556],[144.32724327243272,-7.66558375228756],[144.33444334443345,-7.689223834065928],[144.32364323643236,-7.701043874955104],[144.30924309243096,-7.69260098860569],[144.2840428404284,-7.647009402318858],[144.26964269642696,-7.63012362962003],[144.26244262442623,-7.641943670509207],[144.2516425164252,-7.650386556858621],[144.2408424084241,-7.655452288668272],[144.230042300423,-7.658829443208035],[144.230042300423,-7.66558375228756],[144.25524255242556,-7.6672723295574485],[144.26244262442623,-7.684158102256276],[144.25524255242556,-7.706109606764755],[144.2408424084241,-7.726372534003346],[144.2516425164252,-7.731438265812997],[144.2660426604266,-7.741569729432285],[144.27324273242732,-7.7550783475913505],[144.27684276842768,-7.768586965750416],[144.2660426604266,-7.775341274829941],[144.230042300423,-7.788849892989006],[144.21564215642155,-7.795604202068532],[144.1976419764198,-7.7770298520998296],[144.1868418684187,-7.771964120290178],[144.17244172441724,-7.768586965750416],[144.16164161641615,-7.77027554302029],[144.1508415084151,-7.773652697560053],[144.14004140041402,-7.7770298520998296],[144.12924129241293,-7.771964120290178],[144.1112411124111,-7.758455502131113],[143.9240392403924,-7.694289565875565],[143.85203852038524,-7.652075134128509],[143.8268382683827,-7.631812206889904],[143.8160381603816,-7.613237856921202],[143.81243812438123,-7.594663506952486],[143.77643776437765,-7.527120416157189],[143.76923769237692,-7.510234643458361],[143.76563765637655,-7.506857488918598],[143.75483754837552,-7.5001031798390585],[143.7476374763748,-7.496726025299296],[143.72243722437224,-7.493348870759533],[143.71163711637115,-7.493348870759533],[143.69723697236975,-7.488283138949882],[143.6612366123661,-7.461265902631752],[143.65403654036544,-7.452823016282352],[143.65043650436508,-7.449445861742575],[143.6468364683647,-7.437625820853398],[143.63963639636398,-7.452823016282352],[143.65043650436508,-7.468020211711291],[143.6828368283683,-7.501791757108947],[143.69003690036902,-7.508546066188472],[143.70083700837012,-7.510234643458361],[143.72243722437224,-7.518677529807775],[143.74403744037443,-7.523743261617412],[143.7476374763748,-7.528808993427063],[143.74403744037443,-7.535563302506603],[143.74403744037443,-7.542317611586128],[143.75843758437588,-7.582843466063309],[143.84123841238414,-7.719618224923806],[143.84843848438487,-7.739881152162397],[143.85203852038524,-7.761832656670876],[143.85203852038524,-7.7854727384492435],[143.8556385563856,-7.809112820227597],[143.86643866438664,-7.825998592926425],[143.89163891638918,-7.858081561054192],[143.94203942039422,-7.9306903836591545],[143.95643956439568,-7.97290481540621],[143.94203942039422,-7.991479165374926],[143.94203942039422,-7.993167742644815],[143.9240392403924,-7.9881020108351635],[143.90963909639095,-7.97290481540621],[143.89523895238955,-7.952641888167619],[143.8808388083881,-7.939133270008568],[143.86283862838627,-7.9357561154687914],[143.80523805238056,-7.932378960929029],[143.80883808838092,-7.93744469273868],[143.8160381603816,-7.947576156357982],[143.82323823238232,-7.952641888167619],[143.83403834038342,-7.956019042707396],[143.84843848438487,-7.9577076199772705],[143.85923859238596,-7.959396197247159],[143.87723877238773,-7.969527660866447],[143.9132391323913,-8.008364938073754],[143.8988389883899,-8.028627865312345],[143.8808388083881,-8.037070751661759],[143.85923859238596,-8.040447906201521],[143.76563765637655,-8.040447906201521],[143.7476374763748,-8.03538217439187],[143.74043740437406,-8.028627865312345],[143.72243722437224,-8.013430669883405],[143.71523715237151,-8.008364938073754],[143.67923679236793,-7.996544897184577],[143.66843668436684,-7.989790588105038],[143.65043650436508,-7.981347701755624],[143.6288362883629,-7.981347701755624],[143.5640356403564,-7.998233474454452],[143.50643506435068,-7.993167742644815],[143.48843488434886,-7.989790588105038],[143.47763477634777,-7.976281969945987],[143.45963459634595,-7.939133270008568],[143.44883448834491,-7.918870342769964],[143.43443434434346,-7.908738879150675],[143.41643416434164,-7.905361724610913],[143.38763387633878,-7.905361724610913],[143.38403384033842,-7.903673147341024],[143.3768337683377,-7.898607415531373],[143.36243362433623,-7.896918838261499],[143.35883358833587,-7.90198457007115],[143.36243362433623,-7.91042745642055],[143.3660336603366,-7.917181765500089],[143.3768337683377,-7.9222474973097405],[143.38403384033842,-7.925624651849503],[143.42723427234273,-7.929001806389266],[143.43803438034382,-7.939133270008568],[143.4416344163442,-7.962773351786922],[143.44883448834491,-7.981347701755624],[143.46683466834668,-7.996544897184577],[143.549635496355,-8.032005019852107],[143.56043560435603,-8.045513638011172],[143.57123571235712,-8.08435091521848],[143.6288362883629,-8.185665551411432],[143.63603636036362,-8.210994210459674],[143.6288362883629,-8.22956856042839],[143.61083610836107,-8.239700024047679],[143.5928359283593,-8.241388601317567],[143.33723337233374,-8.248142910397092],[143.32643326433265,-8.251520064936855],[143.30123301233016,-8.268405837635683],[143.21483214832148,-8.275160146715223],[142.9808298082981,-8.335948928430994],[142.9592295922959,-8.337637505700883],[142.94122941229415,-8.332571773891232],[142.84042840428407,-8.288668764874288],[142.71442714427144,-8.268405837635683],[142.71082710827108,-8.266717260365809],[142.70002700027004,-8.261651528556158],[142.68202682026822,-8.268405837635683],[142.63522635226354,-8.280225878524874],[142.61362613626136,-8.281914455794748],[142.59202592025923,-8.2869801876044],[142.53442534425346,-8.324128887541818],[142.51282512825128,-8.332571773891232],[142.49482494824952,-8.332571773891232],[142.45162451624515,-8.329194619351469],[142.43002430024302,-8.324128887541818],[142.41562415624156,-8.310620269382753],[142.40482404824047,-8.29204591941405],[142.37962379623798,-8.194108437760846],[142.36162361623616,-8.16709120144273],[142.31842318423185,-8.158648315093316],[142.26082260822608,-8.170468355982493],[142.2248222482225,-8.173845510522256],[142.21762217622177,-8.175534087792144],[142.21042210422104,-8.180599819601781],[142.2032220322203,-8.189042705951195],[142.19242192421927,-8.197485592300609],[142.18162181621818,-8.200862746840386],[142.1708217082171,-8.20255132411026],[142.160021600216,-8.207617055919911],[142.1456214562146,-8.217748519539214],[142.14202142021423,-8.226191405888628],[142.1456214562146,-8.234634292238042],[142.160021600216,-8.241388601317567],[142.18162181621818,-8.219437096809088],[142.19602196021964,-8.210994210459674],[142.21042210422104,-8.207617055919911],[142.21762217622177,-8.204239901380149],[142.2248222482225,-8.197485592300609],[142.23202232022322,-8.194108437760846],[142.24642246422468,-8.200862746840386],[142.26082260822608,-8.199174169570497],[142.3040230402304,-8.18735412868132],[142.32922329223294,-8.183976974141558],[142.35442354423543,-8.189042705951195],[142.36522365223652,-8.210994210459674],[142.3688236882369,-8.232945714968153],[142.3976239762398,-8.32750604208158],[142.41922419224193,-8.356211855669585],[142.45162451624515,-8.373097628368413],[142.49482494824952,-8.378163360178064],[142.5308253082531,-8.364654742018999],[142.5956259562596,-8.320751733002055],[142.63162631626318,-8.308931692112878],[142.71082710827108,-8.32244031027193],[142.7288272882729,-8.317374578462292],[142.76842768427684,-8.329194619351469],[142.80442804428043,-8.359589010209348],[142.81522815228152,-8.364654742018999],[142.8368283682837,-8.36972047382865],[142.89802898028984,-8.413623482845594],[142.93762937629378,-8.42713210100466],[143.06363063630636,-8.452460760052901],[143.10323103231036,-8.46765795548184],[143.13203132031322,-8.486232305450557],[143.26163261632615,-8.59261267345316],[143.31923319233192,-8.658467186978598],[143.34803348033483,-8.707435927805193],[143.38763387633878,-8.753027514092025],[143.3948339483395,-8.768224709520965],[143.39843398433987,-8.78173332768003],[143.39843398433987,-8.911753777461001],[143.4056340563406,-8.943836745588769],[143.4056340563406,-8.96241109555747],[143.3948339483395,-8.977608290986424],[143.37323373233733,-8.999559795494903],[143.36243362433623,-9.008002681844317],[143.34443344433447,-9.014756990923843],[143.31563315633156,-9.023199877273257],[143.2580325803258,-9.023199877273257],[143.22923229232293,-9.029954186352782],[143.23643236432366,-9.036708495432322],[143.22563225632257,-9.040085649972085],[143.20403204032044,-9.040085649972085],[143.18963189631899,-9.043462804511847],[143.1788317883179,-9.041774227241959],[143.17163171631717,-9.043462804511847],[143.17163171631717,-9.04683995905161],[143.1680316803168,-9.05359426813115],[143.16443164431644,-9.060348577210675],[143.1572315723157,-9.063725731750438],[143.1428314283143,-9.065414309020326],[143.05283052830532,-9.09412012260833],[143.0348303483035,-9.100874431687856],[143.00963009630095,-9.121137358926447],[142.98802988029882,-9.1363345543554],[142.97722977229773,-9.138023131625275],[142.96642966429664,-9.143088863434926],[142.9592295922959,-9.154908904324103],[142.94842948429488,-9.168417522483168],[142.94122941229415,-9.17854898610247],[142.91962919629196,-9.190369026991647],[142.8728287282873,-9.208943376960349],[142.8368283682837,-9.235960613278479],[142.73242732427326,-9.278175045025549],[142.71442714427144,-9.288306508644837],[142.7072270722707,-9.300126549534014],[142.6532265322653,-9.330520940391906],[142.61362613626136,-9.33389809493167],[142.57762577625778,-9.323766631312381],[142.54882548825492,-9.303503704073776],[142.49842498424988,-9.262977849596595],[142.4660246602466,-9.241026345088116],[142.43002430024302,-9.225829149659177],[142.3976239762398,-9.227517726929065],[142.37242372423725,-9.21400910877],[142.3580235802358,-9.208943376960349],[142.3328233282333,-9.207254799690475],[142.31842318423185,-9.203877645150698],[142.27522275222753,-9.17854898610247],[142.2248222482225,-9.161663213403642],[142.21042210422104,-9.158286058863865],[142.19962199621995,-9.161663213403642],[142.18162181621818,-9.176860408832582],[142.1708217082171,-9.17854898610247],[142.1348213482135,-9.17854898610247],[141.99441994419948,-9.188680449721758],[141.9728197281973,-9.192057604261521],[141.91161911619116,-9.21400910877],[141.8936189361894,-9.219074840579651],[141.86841868418685,-9.220763417849525],[141.84681846818467,-9.217386263309763],[141.80721807218072,-9.203877645150698],[141.78201782017823,-9.200500490610935],[141.6992169921699,-9.215697686039888],[141.67401674016742,-9.21400910877],[141.66321663216632,-9.220763417849525],[141.65241652416523,-9.227517726929065],[141.63441634416347,-9.232583458738716],[141.620016200162,-9.23427203600859],[141.60561605616056,-9.22920630419894],[141.59121591215916,-9.219074840579651],[141.58041580415806,-9.212320531500112],[141.56241562415624,-9.220763417849525],[141.55161551615515,-9.219074840579651],[141.53001530015302,-9.217386263309763],[141.50841508415084,-9.215697686039888],[141.49401494014944,-9.19374618153141],[141.45441454414544,-9.165040367943405],[141.42201422014222,-9.149843172514451],[141.38601386013863,-9.141400286165037],[141.34641346413463,-9.141400286165037],[141.31041310413104,-9.15153174978434],[141.23121231212315,-9.212320531500112],[141.19881198811987,-9.227517726929065],[141.1520115201152,-9.232583458738716],[141.1160111601116,-9.219074840579651],[141.0080100801008,-9.12451451346621],[140.97560975609758,-9.105940163497507],[140.93240932409327,-9.080611504449266],[140.92160921609218,-9.078922927179377],[140.85680856808568,-9.048528536321498],[140.6228062280623,-8.807061986728272],[140.50760507605077,-8.638204259739993],[140.45360453604536,-8.585858364373635],[140.44640446404463,-8.577415478024221],[140.37800378003783,-8.521692428118087],[140.36720367203674,-8.508183809959036],[140.36360363603637,-8.491298037260208],[140.35280352803528,-8.487920882720445],[140.30240302403024,-8.46765795548184],[140.26640266402666,-8.430509255544422],[140.2520025200252,-8.408557751035957],[140.03240032400328,-8.246454333127218],[139.9891998919989,-8.192419860490972],[139.9747997479975,-8.165402624172842],[139.97119971199714,-8.141762542394488],[139.97839978399787,-8.121499615155898],[139.99639996399964,-8.10461384245707],[140.02160021600218,-8.089416647028116],[140.03600036000358,-8.086039492488354],[140.04680046800468,-8.086039492488354],[140.05760057600577,-8.082662337948591],[140.06120061200613,-8.065776565249763],[140.0648006480065,-8.030316442582233],[140.05760057600577,-7.996544897184577],[140.0540005400054,-7.971216238136336],[140.06120061200613,-7.947576156357982],[140.08280082800832,-7.932378960929029],[140.11160111601117,-7.945887579088094],[140.129601296013,-7.9357561154687914],[140.15120151201512,-7.885098797372322],[140.13680136801366,-7.891853106451848],[140.1188011880119,-7.915493188230201],[140.10080100801008,-7.918870342769964],[140.0756007560076,-7.920558920039852],[140.06120061200613,-7.923936074579615],[140.0540005400054,-7.9357561154687914],[140.04680046800468,-7.9796591244857495],[140.0432004320043,-8.045513638011172],[140.03240032400328,-8.059022256170238],[140.01440014400146,-8.074219451599177],[139.9747997479975,-8.096170956107656],[139.9315993159932,-8.107990996996833],[139.76959769597698,-8.109679574266721],[139.62919629196296,-8.12487676969566],[139.60039600396004,-8.135008233314949],[139.54639546395464,-8.165402624172842],[139.51399513995142,-8.178911242331907],[139.43479434794347,-8.197485592300609],[139.39519395193952,-8.200862746840386],[139.35559355593557,-8.199174169570497],[139.319593195932,-8.190731283221083],[139.28359283592835,-8.172156933252381],[139.2547925479255,-8.14682827420414],[139.24039240392403,-8.111368151536595],[139.24039240392403,-8.101236687917307],[139.2439924399244,-8.091105224298005],[139.24759247592476,-8.079285183408828],[139.25119251192513,-8.072530874329289],[139.25119251192513,-8.067465142519652],[139.24759247592476,-8.048890792550935],[139.2439924399244,-8.01511924715328],[139.24039240392403,-8.003299206264103],[139.2187921879219,-7.9796591244857495],[139.2331923319233,-7.974593392676098],[139.25119251192513,-7.981347701755624],[139.26919269192695,-7.986413433565275],[139.2871928719287,-7.97290481540621],[139.2439924399244,-7.9577076199772705],[139.2187921879219,-7.950953310897745],[139.20439204392045,-7.962773351786922],[139.2079920799208,-7.974593392676098],[139.21159211592118,-7.994856319914689],[139.21159211592118,-8.004987783533991],[139.21519215192154,-8.006676360803866],[139.22599225992263,-8.008364938073754],[139.229592295923,-8.011742092613517],[139.2331923319233,-8.018496401693042],[139.229592295923,-8.023562133502693],[139.22599225992263,-8.028627865312345],[139.22599225992263,-8.074219451599177],[139.20079200792009,-8.096170956107656],[139.1215912159122,-8.118122460616135],[139.0891908919089,-8.133319656045074],[138.97398973989743,-8.22956856042839],[138.96318963189634,-8.24476575585733],[138.95958959589598,-8.26502868309592],[138.9559895598956,-8.270094414905572],[138.95238952389525,-8.281914455794748],[138.94158941589416,-8.290357342144162],[138.93438934389343,-8.295423073953813],[138.91998919989203,-8.295423073953813],[138.9127891278913,-8.29204591941405],[138.87678876788772,-8.219437096809088],[138.85158851588517,-8.183976974141558],[138.84438844388444,-8.162025469633079],[138.8371883718837,-8.138385387854726],[138.84438844388444,-8.118122460616135],[138.8587885878859,-8.101236687917307],[138.9019890198902,-8.092793801567893],[138.91998919989203,-8.079285183408828],[138.9235892358924,-8.070842297059414],[138.9235892358924,-8.060710833440112],[138.91998919989203,-8.052267947090698],[138.90558905589057,-8.043825060741284],[138.90558905589057,-8.030316442582233],[138.90918909189094,-8.008364938073754],[138.90918909189094,-7.9222474973097405],[138.91638916389167,-7.903673147341024],[138.92718927189276,-7.893541683721736],[138.9667896678967,-7.885098797372322],[138.99558995589956,-7.864835870133717],[139.0027900279003,-7.836130056545713],[139.00639006390065,-7.7550783475913505],[139.0351903519035,-7.690912411335802],[139.0459904599046,-7.6757152159068625],[139.04959049590497,-7.6672723295574485],[139.05319053190533,-7.633500784159793],[139.06039060390606,-7.623369320540505],[139.06759067590679,-7.613237856921202],[139.08199081990819,-7.606483547841677],[139.0891908919089,-7.596352084222374],[139.09279092790928,-7.559203384284956],[139.07119071190715,-7.532186147966826],[139.0351903519035,-7.515300375267998],[138.99918999189993,-7.508546066188472],[138.95958959589598,-7.506857488918598],[138.94518945189452,-7.496726025299296],[138.93438934389343,-7.449445861742575],[138.92718927189276,-7.42749435723411],[138.88758887588875,-7.361639843708673],[138.86598865988663,-7.336311184660445],[138.84078840788408,-7.314359680151966],[138.76518765187654,-7.265390939325371],[138.7507875078751,-7.256948052975957],[138.74718747187472,-7.250193743896418],[138.739987399874,-7.243439434816892],[138.7291872918729,-7.2400622802771295],[138.70758707587078,-7.238373703007241],[138.70038700387005,-7.236685125737353],[138.68958689586896,-7.23330797119759],[138.67878678786786,-7.223176507578302],[138.66798667986683,-7.2096678894192365],[138.66798667986683,-7.19784784853006],[138.68958689586896,-7.192782116720409],[138.90558905589057,-7.199536425799934],[138.94518945189452,-7.206290734879474],[138.96318963189634,-7.214733621228888],[138.9919899198992,-7.236685125737353],[139.0027900279003,-7.2400622802771295],[139.15759157591577,-7.243439434816892],[139.1755917559176,-7.236685125737353],[139.189991899919,-7.214733621228888],[139.20079200792009,-7.189404962180646],[139.21519215192154,-7.167453457672167],[139.24039240392403,-7.159010571322753],[139.24039240392403,-7.150567684973339],[139.22239222392227,-7.143813375893814],[139.20439204392045,-7.150567684973339],[139.18279182791827,-7.175896344021581],[139.16839168391687,-7.196159271260171],[139.16119161191614,-7.202913580339711],[139.14679146791468,-7.206290734879474],[139.10359103591037,-7.206290734879474],[139.06039060390606,-7.213045043958999],[139.03879038790387,-7.211356466689125],[139.0207902079021,-7.194470693990297],[138.9667896678967,-7.164076303132404],[138.94518945189452,-7.157321994052879],[138.9235892358924,-7.1522562622432275],[138.8587885878859,-7.148879107703465],[138.84078840788408,-7.145501953163688],[138.81558815588158,-7.1303047577347485],[138.76158761587618,-7.113418985035921],[138.75438754387545,-7.106664675956395],[138.74718747187472,-7.098221789606981],[138.64638646386464,-7.000284307953777],[138.5707857078571,-6.942872680777768],[138.55998559985602,-6.919232598999415],[138.58158581585815,-6.89052678541141],[138.5959859598596,-6.882083899061996],[138.61398613986142,-6.877018167252345],[138.65358653586537,-6.877018167252345],[138.67518675186756,-6.880395321792108],[138.7147871478715,-6.8972810944909355],[138.739987399874,-6.8972810944909355],[138.75798757987582,-6.887149630871647],[138.7831878318783,-6.861820971823406],[138.79758797587976,-6.856755240013754],[138.8839888398884,-6.850000930934215],[138.91638916389167,-6.841558044584815],[138.93078930789306,-6.843246621854689],[138.94158941589416,-6.844935199124578],[138.95958959589598,-6.855066662743866],[138.97038970389707,-6.856755240013754],[138.98838988389883,-6.865198126363168],[139.01719017190175,-6.909101135380112],[139.03879038790387,-6.917544021729526],[139.06759067590679,-6.942872680777768],[139.07119071190715,-6.9496269898573075],[139.08199081990819,-6.95300414439707],[139.10359103591037,-6.959758453476596],[139.11799117991183,-6.96820133982601],[139.12519125191255,-6.971578494365772],[139.13959139591395,-6.973267071635661],[139.18279182791827,-6.971578494365772],[139.19359193591936,-6.973267071635661]]],[[[-48.46188461884617,-0.5769363733199953],[-48.465484654846534,-0.5904449914790604],[-48.483484834848355,-0.6275936914164788],[-48.483484834848355,-0.6529223504647206],[-48.48708487084869,-0.6647423913538972],[-48.49788497884978,-0.6765624322430739],[-48.48708487084869,-0.6850053185924878],[-48.48708487084869,-0.7018910912913157],[-48.49428494284942,-0.7221540185299062],[-48.49788497884978,-0.7441055230383853],[-48.51948519485194,-0.7339740594190829],[-48.53748537485373,-0.7187768639901435],[-48.57348573485734,-0.6816281640527251],[-48.559085590855915,-0.7137111321804923],[-48.53748537485373,-0.7441055230383853],[-48.5230852308523,-0.7728113366263898],[-48.53748537485373,-0.7981399956746316],[-48.52668526685267,-0.8200915001831106],[-48.5230852308523,-0.8471087365012266],[-48.52668526685267,-0.8724373955494684],[-48.53748537485373,-0.8943889000579475],[-48.559085590855915,-0.914651827296538],[-48.61308613086129,-0.9332261772652402],[-48.634686346863475,-0.9484233726941937],[-48.62748627486275,-0.9585548363134819],[-48.63108631086311,-0.9686862999327843],[-48.6490864908649,-0.9906378044412634],[-48.65628656286563,-0.9990806907906773],[-48.66348663486633,-1.0007692680605516],[-48.66348663486633,-1.00245784533044],[-48.65268652686527,-1.010900731679854],[-48.64548645486454,-1.0125893089497282],[-48.634686346863475,-1.0092121544099655],[-48.62748627486275,-1.0092121544099655],[-48.62748627486275,-1.0244093498389049],[-48.63108631086311,-1.029475081648556],[-48.65268652686527,-1.0446722770775096],[-48.65268652686527,-1.0531151634269236],[-48.62748627486275,-1.0480494316172724],[-48.62748627486275,-1.0632466270462118],[-48.641886418864175,-1.0835095542848023],[-48.65628656286563,-1.0936410179041047],[-48.67068670686706,-1.1003953269836302],[-48.717487174871735,-1.1341668723812859],[-48.73908739087389,-1.1409211814608113],[-48.75708757087571,-1.1510526450801137],[-48.79668796687966,-1.191578499557295],[-48.818288182881815,-1.2033985404464715],[-48.850688506885064,-1.1983328086368346],[-48.875888758887584,-1.1814470359380067],[-48.89748897488974,-1.1578069541596392],[-48.91548915489153,-1.1341668723812859],[-48.92268922689226,-1.1409211814608113],[-48.911889118891196,-1.1611841086994161],[-48.893888938889376,-1.1814470359380067],[-48.875888758887584,-1.196644231366946],[-48.85788857888579,-1.2033985404464715],[-48.843488434884335,-1.213530004065774],[-48.836288362883636,-1.2337929313043645],[-48.843488434884335,-1.248990126733304],[-48.868688686886856,-1.243924394923667],[-48.868688686886856,-1.2506787040031924],[-48.85428854288543,-1.254055858542955],[-48.82548825488254,-1.254055858542955],[-48.811088110881116,-1.2574330130827178],[-48.79668796687966,-1.2692530539719087],[-48.793087930879295,-1.2793845175911969],[-48.80388803888039,-1.3401732993069828],[-48.83268832688327,-1.416159276451694],[-48.83988839888397,-1.416159276451694],[-48.85788857888579,-1.399273503752866],[-48.94068940689405,-1.2962702902900247],[-48.962289622896236,-1.2827616721309596],[-48.99108991089909,-1.292893135750262],[-48.95868958689587,-1.2962702902900247],[-48.944289442894416,-1.3097789084490898],[-48.95508955089551,-1.3249761038780292],[-48.98388983889839,-1.3334189902274431],[-48.98388983889839,-1.3401732993069828],[-48.976689766897664,-1.3469276083865083],[-48.976689766897664,-1.3553704947359222],[-48.98028980289803,-1.3655019583552104],[-48.99108991089909,-1.3739448447046243],[-48.976689766897664,-1.3688791128949873],[-48.951489514895144,-1.350304762926271],[-48.944289442894416,-1.3469276083865083],[-48.93348933489335,-1.3519933401961595],[-48.92988929889299,-1.3638133810853361],[-48.926289262892624,-1.3773219992444012],[-48.92268922689226,-1.3874534628636894],[-48.89748897488974,-1.394207771943229],[-48.893888938889376,-1.3975849264829918],[-48.886688866888676,-1.4127821219119312],[-48.88308883088831,-1.416159276451694],[-48.87228872288722,-1.4195364309914567],[-48.83988839888397,-1.4431765127698242],[-48.83988839888397,-1.4499308218493496],[-48.85428854288543,-1.4533079763891124],[-48.87228872288722,-1.4583737081987636],[-48.886688866888676,-1.4668165945481775],[-48.901089010890104,-1.4769480581674799],[-48.90468904689047,-1.4837023672470053],[-48.90828908289083,-1.4921452535964193],[-48.911889118891196,-1.5005881399458332],[-48.919089190891896,-1.503965294485596],[-48.937089370893716,-1.4938338308663077],[-48.944289442894416,-1.4904566763265308],[-48.94788947889478,-1.5005881399458332],[-48.95508955089551,-1.509031026295247],[-48.9730897308973,-1.5140967581048983],[-49.02349023490234,-1.5208510671844238],[-49.037890378903796,-1.5276053762639492],[-49.04869048690486,-1.5326711080736004],[-49.06669066690665,-1.5326711080736004],[-49.07389073890738,-1.5276053762639492],[-49.07389073890738,-1.5208510671844238],[-49.07389073890738,-1.5140967581048983],[-49.08109081090811,-1.5107196035651356],[-49.09189091890917,-1.5107196035651356],[-49.095490954909536,-1.5107196035651356],[-49.102691026910264,-1.5073424490253586],[-49.10629106291063,-1.503965294485596],[-49.11349113491136,-1.495522408136182],[-49.12429124291242,-1.4634394400084147],[-49.127891278912784,-1.4533079763891124],[-49.14949149491494,-1.4094049673721685],[-49.153091530915304,-1.4009620810227545],[-49.18189181891819,-1.4009620810227545],[-49.18549185491855,-1.3975849264829918],[-49.19269192691925,-1.3908306174034522],[-49.19629196291962,-1.389142040133578],[-49.21069210692107,-1.394207771943229],[-49.19269192691925,-1.4094049673721685],[-49.18549185491855,-1.429667894610759],[-49.18549185491855,-1.4533079763891124],[-49.203492034920345,-1.5292939535338377],[-49.19989199891998,-1.552934035312191],[-49.18189181891819,-1.566442653471256],[-49.19269192691925,-1.5715083852809073],[-49.19629196291962,-1.5731969625507816],[-49.19629196291962,-1.5681312307411446],[-49.19629196291962,-1.566442653471256],[-49.203492034920345,-1.5596883443917307],[-49.20709207092071,-1.5647540762013818],[-49.21429214292144,-1.5698198080110188],[-49.22149221492214,-1.5715083852809073],[-49.228692286922865,-1.5731969625507816],[-49.22149221492214,-1.583328426170084],[-49.21069210692107,-1.5850170034399724],[-49.19989199891998,-1.5867055807098467],[-49.19629196291962,-1.6002141988689118],[-49.18909189091892,-1.5934598897893864],[-49.18189181891819,-1.5900827352496094],[-49.16749167491673,-1.5867055807098467],[-49.18909189091892,-1.6069685079484373],[-49.22149221492214,-1.6204771261075024],[-49.25749257492575,-1.6204771261075024],[-49.27549275492754,-1.6221657033773909],[-49.29349293492933,-1.6170999715677397],[-49.31509315093152,-1.6035913534086745],[-49.33309333093331,-1.5883941579797352],[-49.354693546935465,-1.5731969625507816],[-49.39069390693908,-1.53942541715314],[-49.39429394293941,-1.5292939535338377],[-49.39069390693908,-1.5140967581048983],[-49.38709387093871,-1.503965294485596],[-49.38349383493835,-1.4938338308663077],[-49.38709387093871,-1.4837023672470053],[-49.39429394293941,-1.495522408136182],[-49.405094050940505,-1.517473912644661],[-49.4158941589416,-1.5411139944230143],[-49.40869408694087,-1.5630654989314934],[-49.37629376293762,-1.5867055807098467],[-49.354693546935465,-1.613722817027977],[-49.35829358293583,-1.6373628988063302],[-49.37269372693726,-1.6458057851557442],[-49.405094050940505,-1.6373628988063302],[-49.4230942309423,-1.632297166996679],[-49.44469444694445,-1.6356743215364418],[-49.46989469894697,-1.6238542806472651],[-49.48429484294843,-1.6019027761388003],[-49.48429484294843,-1.5681312307411446],[-49.49149491494916,-1.556311189851968],[-49.49509495094949,-1.4972109854060704],[-49.505895058950586,-1.5005881399458332],[-49.513095130951314,-1.5022767172157216],[-49.52029520295201,-1.5005881399458332],[-49.531095310953106,-1.4972109854060704],[-49.52389523895238,-1.5056538717554844],[-49.51669516695168,-1.5140967581048983],[-49.505895058950586,-1.5225396444543122],[-49.50229502295022,-1.5360482626133631],[-49.50229502295022,-1.5867055807098467],[-49.50949509495095,-1.5816398489001955],[-49.513095130951314,-1.5816398489001955],[-49.52029520295201,-1.5816398489001955],[-49.52389523895238,-1.5799512716303212],[-49.513095130951314,-1.5917713125194979],[-49.513095130951314,-1.6086570852183257],[-49.52029520295201,-1.6221657033773909],[-49.53469534695347,-1.6289200124569163],[-49.55269552695526,-1.632297166996679],[-49.556295562955626,-1.6458057851557442],[-49.55269552695526,-1.6610029805846835],[-49.54549545495453,-1.6762001760136371],[-49.55989559895599,-1.6762001760136371],[-49.55989559895599,-1.6829544850931626],[-49.54549545495453,-1.6863316396329253],[-49.54549545495453,-1.698151680522102],[-49.55269552695526,-1.720103185030581],[-49.55989559895599,-1.7234803395703437],[-49.6030960309603,-1.7167260304908183],[-49.62469624696246,-1.7251689168402322],[-49.65349653496534,-1.7606290395077622],[-49.6678966789668,-1.772449080396953],[-49.689496894968954,-1.769071925857176],[-49.707497074970746,-1.750497575888474],[-49.71829718297184,-1.7234803395703437],[-49.7290972909729,-1.6778887532835114],[-49.747097470974694,-1.6525600942352696],[-49.75069750697506,-1.6424286306159814],[-49.75069750697506,-1.6255428579171536],[-49.739897398973994,-1.5951484670592606],[-49.74349743497436,-1.5799512716303212],[-49.747097470974694,-1.5985256215990233],[-49.76149761497615,-1.6306085897268048],[-49.765097650976514,-1.6458057851557442],[-49.76149761497615,-1.6694458669340975],[-49.7290972909729,-1.7302346486498834],[-49.7290972909729,-1.74205468953906],[-49.7290972909729,-1.7521861531583482],[-49.732697326973266,-1.7623176167776506],[-49.73629736297363,-1.772449080396953],[-49.74349743497436,-1.7792033894764785],[-49.77589775897758,-1.807909203064483],[-49.8010980109801,-1.8180406666837854],[-49.808298082980826,-1.8197292439536596],[-49.822698226982254,-1.816352089413897],[-49.83349833498335,-1.8095977803343715],[-49.840698406984075,-1.8011548939849575],[-49.8550985509855,-1.7927120076355436],[-49.86229862298623,-1.7893348530957809],[-49.88389883898839,-1.7876462758258924],[-49.89469894698948,-1.785957698556004],[-49.90549905499054,-1.77751481220659],[-49.916299162991635,-1.769071925857176],[-49.9270992709927,-1.7623176167776506],[-49.948699486994855,-1.7555633076981252],[-49.966699666996675,-1.7471204213487113],[-49.9810998109981,-1.7454318440788228],[-50.00270002700026,-1.7454318440788228],[-50.00630006300062,-1.74205468953906],[-50.02790027900278,-1.720103185030581],[-50.03150031500314,-1.7150374532209298],[-50.03150031500314,-1.7099717214112928],[-50.024300243002415,-1.6610029805846835],[-50.02790027900278,-1.6559372487750466],[-50.049500495004935,-1.6576258260449208],[-50.0531005310053,-1.6643801351244605],[-50.0531005310053,-1.6795773305533999],[-50.0531005310053,-1.7032174123317532],[-50.06030060300603,-1.7184146077607068],[-50.08550085500855,-1.7386775349992973],[-50.092700927009275,-1.7488089986185855],[-50.15390153901538,-1.7792033894764785],[-50.168301683016836,-1.7707605031270646],[-50.1791017910179,-1.758940462237888],[-50.18630186301863,-1.7488089986185855],[-50.225902259022575,-1.7386775349992973],[-50.233102331023304,-1.7251689168402322],[-50.23670236702367,-1.7049059896016416],[-50.233102331023304,-1.6339857442665675],[-50.23670236702367,-1.6204771261075024],[-50.24750247502473,-1.6154113942978512],[-50.26190261902619,-1.613722817027977],[-50.27270272702725,-1.6103456624882142],[-50.27990279902798,-1.596837044329149],[-50.276302763027616,-1.5883941579797352],[-50.269102691026916,-1.5867055807098467],[-50.26190261902619,-1.5850170034399724],[-50.258302583025824,-1.5799512716303212],[-50.251102511025096,-1.5630654989314934],[-50.251102511025096,-1.5596883443917307],[-50.25470254702546,-1.5428025716929028],[-50.26190261902619,-1.5276053762639492],[-50.26550265502655,-1.517473912644661],[-50.26550265502655,-1.5107196035651356],[-50.258302583025824,-1.4938338308663077],[-50.258302583025824,-1.4837023672470053],[-50.276302763027616,-1.4972109854060704],[-50.276302763027616,-1.5140967581048983],[-50.26190261902619,-1.5512454580423167],[-50.258302583025824,-1.552934035312191],[-50.258302583025824,-1.5546226125820795],[-50.258302583025824,-1.5596883443917307],[-50.26190261902619,-1.5647540762013818],[-50.26550265502655,-1.5647540762013818],[-50.269102691026916,-1.5647540762013818],[-50.27270272702725,-1.566442653471256],[-50.27990279902798,-1.57488553982067],[-50.283502835028344,-1.5799512716303212],[-50.29070290702907,-1.5867055807098467],[-50.29070290702907,-1.596837044329149],[-50.27990279902798,-1.613722817027977],[-50.258302583025824,-1.627231435187042],[-50.243902439024396,-1.640740053346093],[-50.24750247502473,-1.6593144033148093],[-50.25470254702546,-1.6745115987437487],[-50.26190261902619,-1.7251689168402322],[-50.26550265502655,-1.7454318440788228],[-50.27270272702725,-1.7454318440788228],[-50.276302763027616,-1.7251689168402322],[-50.29790297902977,-1.6559372487750466],[-50.3051030510305,-1.6559372487750466],[-50.28710287102871,-1.7302346486498834],[-50.283502835028344,-1.7555633076981252],[-50.294302943029436,-1.772449080396953],[-50.31590315903159,-1.7792033894764785],[-50.344703447034476,-1.77751481220659],[-50.36630366303663,-1.772449080396953],[-50.34110341103411,-1.7842691212861297],[-50.31230312303123,-1.7944005849054179],[-50.29790297902977,-1.8028434712548318],[-50.319503195031956,-1.8197292439536596],[-50.34830348303481,-1.8281721303030736],[-50.377103771037696,-1.8315492848428363],[-50.40590405904058,-1.8315492848428363],[-50.560705607056065,-1.799466316715069],[-50.57510575105749,-1.7944005849054179],[-50.59670596705968,-1.7758262349367158],[-50.60390603906038,-1.772449080396953],[-50.60750607506074,-1.7640061940475391],[-50.60030600306001,-1.7488089986185855],[-50.585905859058585,-1.7353003804595346],[-50.56790567905679,-1.7302346486498834],[-50.58950589505895,-1.684643062363051],[-50.74070740707407,-1.5309825308037261],[-50.75870758707586,-1.509031026295247],[-50.76590765907659,-1.487079521786768],[-50.76950769507695,-1.4786366354373541],[-50.79470794707947,-1.446553667309587],[-50.80190801908017,-1.4347336264204102],[-50.80550805508054,-1.4246021628011079],[-50.79830798307984,-1.4009620810227545],[-50.787507875078745,-1.394207771943229],[-50.787507875078745,-1.389142040133578],[-50.79110791107911,-1.3857648855938152],[-50.79830798307984,-1.3823877310540382],[-50.79830798307984,-1.380699153784164],[-50.812708127081265,-1.350304762926271],[-50.812708127081265,-1.3367961447672059],[-50.8091080910809,-1.314844640258741],[-50.78030780307802,-1.1932670768271834],[-50.77670776707765,-1.1730041495885928],[-50.78390783907838,-1.1527412223500022],[-50.79830798307984,-1.125723986031872],[-50.80550805508054,-1.1020839042535187],[-50.79110791107911,-1.086886708824565],[-50.78030780307802,-1.0885752860944535],[-50.737107371073705,-1.1139039451426953],[-50.67590675906757,-1.1409211814608113],[-50.6291062910629,-1.1493640678102253],[-50.61470614706147,-1.1544297996198765],[-50.560705607056065,-1.183135613207881],[-50.57150571505716,-1.1578069541596392],[-50.61830618306183,-1.1206582542222208],[-50.58950589505895,-1.1122153678728068],[-50.57510575105749,-1.1020839042535187],[-50.56790567905679,-1.1003953269836302],[-50.54270542705427,-1.1054610587932814],[-50.53910539105391,-1.1071496360631699],[-50.52110521105212,-1.0970181724438675],[-50.52110521105212,-1.086886708824565],[-50.535505355053544,-1.0784438224751511],[-50.553505535055336,-1.0733780906655142],[-50.54270542705427,-1.051426586157035],[-50.54630546305464,-1.0531151634269236],[-50.528305283052816,-1.03791796799797],[-50.51390513905139,-1.0362293907280957],[-50.49950499504993,-1.0396065452678585],[-50.477904779047776,-1.0396065452678585],[-50.4959049590496,-1.029475081648556],[-50.51390513905139,-1.0244093498389049],[-50.528305283052816,-1.0260979271087933],[-50.54270542705427,-1.0345408134582073],[-50.5571055710557,-1.051426586157035],[-50.57510575105749,-1.0632466270462118],[-50.59670596705968,-1.0700009361257514],[-50.61830618306183,-1.0733780906655142],[-50.62550625506253,-1.0767552452052769],[-50.64710647106472,-1.090263863364342],[-50.65430654306542,-1.0936410179041047],[-50.66510665106651,-1.095329595173979],[-50.73350733507334,-1.090263863364342],[-50.7551075510755,-1.081820977014928],[-50.76590765907659,-1.0700009361257514],[-50.76950769507695,-1.0615580497763375],[-50.787507875078745,-1.0328522361883188],[-50.79110791107911,-1.0193436180292679],[-50.79830798307984,-0.9838834953617237],[-50.79830798307984,-0.9112746727567753],[-50.79110791107911,-0.8741259728193569],[-50.787507875078745,-0.857240200120529],[-50.78030780307802,-0.8420430046915754],[-50.77310773107732,-0.8302229638023988],[-50.77670776707765,-0.8200915001831106],[-50.76950769507695,-0.8065828820240455],[-50.75870758707586,-0.8065828820240455],[-50.74430744307443,-0.8150257683734594],[-50.737107371073705,-0.8268458092626361],[-50.74070740707407,-0.8015171502143943],[-50.7551075510755,-0.7930742638649804],[-50.76950769507695,-0.7863199547854549],[-50.787507875078745,-0.7711227593565013],[-50.787507875078745,-0.7626798730070874],[-50.787507875078745,-0.7339740594190829],[-50.78390783907838,-0.7289083276094459],[-50.77310773107732,-0.720465441260032],[-50.77310773107732,-0.717088286720255],[-50.77310773107732,-0.7103339776407296],[-50.78390783907838,-0.7069568231009669],[-50.787507875078745,-0.7018910912913157],[-50.78030780307802,-0.6613652368141345],[-50.737107371073705,-0.5516077142717535],[-50.72630726307261,-0.5634277551609301],[-50.711907119071185,-0.5870678369392976],[-50.70110701107009,-0.6123964959875394],[-50.69750697506976,-0.6309708459562415],[-50.6831068310683,-0.6394137323056555],[-50.60750607506074,-0.6765624322430739],[-50.58950589505895,-0.6816281640527251],[-50.57870578705786,-0.6816281640527251],[-50.553505535055336,-0.6799395867828366],[-50.54990549905497,-0.6782510095129624],[-50.54990549905497,-0.6731852777033112],[-50.553505535055336,-0.6647423913538972],[-50.560705607056065,-0.659676659544246],[-50.61470614706147,-0.6411023095755439],[-50.67230672306724,-0.6309708459562415],[-50.6831068310683,-0.6242165368767161],[-50.686706867068665,-0.6073307641778882],[-50.69030690306903,-0.5870678369392976],[-50.71550715507155,-0.5212133234138605],[-50.72270722707228,-0.5026389734451584],[-50.72270722707228,-0.48068746893667935],[-50.72270722707228,-0.46549027350773997],[-50.70470704707046,-0.40807864633173097],[-50.70110701107009,-0.37092994639431254],[-50.69750697506976,-0.36079848277501014],[-50.69030690306903,-0.3540441736954847],[-50.67950679506794,-0.34053555553641957],[-50.67590675906757,-0.33546982372676837],[-50.67230672306724,-0.3185840510279405],[-50.66870668706687,-0.29832112378934994],[-50.65430654306542,-0.26454957839169424],[-50.64710647106472,-0.2561066920422803],[-50.61470614706147,-0.22908945572416428],[-50.60390603906038,-0.22402372391451308],[-50.60030600306001,-0.2189579921048619],[-50.58230582305822,-0.19194075578674585],[-50.57510575105749,-0.18856360124696891],[-50.56430564305643,-0.18856360124696891],[-50.54990549905497,-0.18856360124696891],[-50.53910539105391,-0.18856360124696891],[-50.52110521105212,-0.1801207148975692],[-50.50670506705066,-0.16830067400837834],[-50.49230492304923,-0.15816921038909015],[-50.46710467104671,-0.15479205584932743],[-50.445504455044556,-0.15816921038909015],[-50.427504275042736,-0.16323494219874135],[-50.41310413104131,-0.1649235194686156],[-50.395103951039516,-0.15479205584932743],[-50.384303843038424,-0.13959486042037383],[-50.377103771037696,-0.12102051045167173],[-50.369903699036996,-0.10582331502271813],[-50.34830348303481,-0.09906900594319268],[-50.326703267032656,-0.10075758321308115],[-50.27270272702725,-0.11426620137213206],[-50.09630096300964,-0.13284055134084838],[-50.03870038700387,-0.15479205584932743],[-50.00990009900099,-0.15310347857943896],[-49.7938979389794,-0.1986950648662713],[-49.65349653496534,-0.24090949661334093],[-49.52029520295201,-0.23584376480368974],[-49.480694806948065,-0.22571230118440155],[-49.45909459094591,-0.22402372391451308],[-49.44829448294482,-0.22402372391451308],[-49.42669426694266,-0.23077803299403854],[-49.41949419494193,-0.23415518753381548],[-49.39789397893978,-0.2527295375025176],[-49.38709387093871,-0.2577952693121688],[-49.38709387093871,-0.2510409602326291],[-49.39789397893978,-0.23584376480368974],[-49.40869408694087,-0.21726941483498763],[-49.405094050940505,-0.1986950648662713],[-49.38709387093871,-0.1851864467072062],[-49.32589325893258,-0.15479205584932743],[-49.31869318693185,-0.1598577876589644],[-49.31149311493115,-0.1598577876589644],[-49.30789307893079,-0.15648063311920168],[-49.2970929709297,-0.15479205584932743],[-49.28269282692827,-0.15479205584932743],[-49.27549275492754,-0.15479205584932743],[-49.26109261092611,-0.14972632403967623],[-49.23589235892359,-0.14803774676978776],[-49.21429214292144,-0.1412834376902623],[-49.20709207092071,-0.13959486042037383],[-49.19629196291962,-0.1412834376902623],[-49.18189181891819,-0.14972632403967623],[-49.16749167491673,-0.15479205584932743],[-49.15669156691567,-0.15479205584932743],[-49.145891458914576,-0.1514149013095505],[-49.13149131491315,-0.1514149013095505],[-49.120691206912056,-0.16154636492885288],[-49.09189091890917,-0.15310347857943896],[-49.027090270902704,-0.1598577876589644],[-49.00909009090091,-0.1598577876589644],[-48.99108991089909,-0.17167782854815528],[-48.98028980289803,-0.18687502397709466],[-48.962289622896236,-0.18180929216744346],[-48.94788947889478,-0.17336640581802953],[-48.926289262892624,-0.15816921038909015],[-48.893888938889376,-0.15310347857943896],[-48.87948879488795,-0.16323494219874135],[-48.88308883088831,-0.19194075578674585],[-48.893888938889376,-0.20544937394579676],[-48.89028890288901,-0.21558083756509916],[-48.861488614886156,-0.2088265284855737],[-48.818288182881815,-0.20713795121568523],[-48.70308703087031,-0.2375323420735782],[-48.685086850868515,-0.23584376480368974],[-48.64548645486454,-0.22571230118440155],[-48.62388623886238,-0.22402372391451308],[-48.60228602286023,-0.22571230118440155],[-48.54468544685446,-0.24428665115310366],[-48.425884258842586,-0.25948384658204304],[-48.400684006840066,-0.2713038874712339],[-48.39348393483934,-0.2713038874712339],[-48.382683826838274,-0.2814353510905221],[-48.375483754837546,-0.28818966017006176],[-48.36828368283682,-0.29832112378934994],[-48.364683646836454,-0.3152068964881778],[-48.36828368283682,-0.36079848277501014],[-48.37188371883718,-0.37430710093407527],[-48.37908379083791,-0.38443856455336345],[-48.389883898838974,-0.3962586054425543],[-48.400684006840066,-0.40470149179196824],[-48.41148411484113,-0.40807864633173097],[-48.42228422284222,-0.4148329554112564],[-48.433084330843315,-0.44691592353902365],[-48.45468454684547,-0.48575320074633055],[-48.46188461884617,-0.5161475916042235],[-48.46188461884617,-0.5769363733199953]]],[[[119.84699846998473,-0.8741259728193569],[119.86139861398613,-0.8336001183421615],[119.86499864998649,-0.813337191103571],[119.86859868598685,-0.7880085320553292],[119.86499864998649,-0.7829428002456922],[119.85779857798582,-0.7694341820866271],[119.85419854198545,-0.7609912957372131],[119.85419854198545,-0.7272197503395574],[119.85419854198545,-0.717088286720255],[119.84699846998473,-0.7018910912913157],[119.82539825398254,-0.6748738549731996],[119.81819818198181,-0.6647423913538972],[119.81459814598145,-0.6529223504647206],[119.79299792997932,-0.6073307641778882],[119.78219782197823,-0.5684934869705813],[119.77859778597787,-0.5347219415729256],[119.7749977499775,-0.522901900683749],[119.76059760597605,-0.49081893255598175],[119.75699756997574,-0.47055600531739117],[119.78219782197823,-0.23922091934345247],[119.78939789397896,-0.2088265284855737],[119.80379803798041,-0.19531791032650858],[119.80739807398078,-0.18349786943733193],[119.80739807398078,-0.15479205584932743],[119.80019800198005,-0.12439766499143445],[119.79299792997932,-0.1075118922926066],[119.76419764197641,-0.11933193318178326],[119.73179731797319,-0.12102051045167173],[119.69939699396997,-0.11426620137213206],[119.67419674196742,-0.09906900594319268],[119.65619656196566,-0.08049465597447636],[119.63819638196384,-0.0501002651165976],[119.62739627396274,-0.018017296988816156],[119.63459634596347,0.010688516599188347],[119.64899648996493,0.002245630249774422],[119.65979659796596,-0.0011315242900025169],[119.6669966699667,-0.004508678829765245],[119.6669966699667,0.007311362059411408],[119.67059670596706,0.015754248408825333],[119.67059670596706,0.024197134758239258],[119.67419674196742,0.030951443837778925],[119.69939699396997,0.017442825678713803],[119.71739717397173,0.002245630249774422],[119.74259742597428,-0.03152591514788128],[119.76419764197641,-0.06360888327566272],[119.77859778597787,-0.07711750143471363],[119.80019800198005,-0.08556038778412756],[119.81819818198181,-0.09062611959377875],[119.82539825398254,-0.09062611959377875],[119.83259832598327,-0.0838718105142533],[119.84699846998473,-0.06192030600577425],[119.85779857798582,-0.04165737876718367],[119.87939879398795,0.046148639266718305],[119.88659886598867,0.07147729831496008],[119.86859868598685,0.10524884371261578],[119.79299792997932,0.1964320162862805],[119.78939789397896,0.20825205717545714],[119.7857978579786,0.22176067533452226],[119.7857978579786,0.2386464480333501],[119.79299792997932,0.25046648892252676],[119.85419854198545,0.27072941616111734],[119.86859868598685,0.2876151888599452],[119.86859868598685,0.3028123842888846],[119.85779857798582,0.3196981569877124],[119.85419854198545,0.34164966149619147],[119.85779857798582,0.3636011660046705],[119.88299882998831,0.40074986594208895],[119.8937989379894,0.4210127931806795],[119.89739897398977,0.4311442567999677],[119.89739897398977,0.4514071840385725],[119.90099900999013,0.4615386476578607],[119.91179911799117,0.47335868854703733],[119.92259922599226,0.480112997626577],[119.93699936999371,0.48686730670610245],[119.9477994779948,0.4936216157856279],[119.96579965799657,0.5003759248651676],[120.01260012600125,0.5054416566748188],[120.03060030600307,0.515573120294107],[120.04500045000452,0.5493446656917627],[120.04140041400416,0.5881819428990696],[120.03060030600307,0.6287077973762507],[120.02340023400234,0.6675450745835576],[120.0270002700027,0.6894965790920224],[120.03420034200343,0.71313666087039],[120.04500045000452,0.7350881653788548],[120.06300063000629,0.7435310517282687],[120.07380073800738,0.7435310517282687],[120.09900099000993,0.7502853608078084],[120.10980109801102,0.7519739380776826],[120.12060120601205,0.7536625153475711],[120.18540185401855,0.7840569062054641],[120.20700207002074,0.797565524364515],[120.22860228602286,0.8144512970633428],[120.23580235802359,0.8313370697621707],[120.24660246602468,0.9326517059551378],[120.25740257402578,0.9681118286226678],[120.2790027900279,0.9934404876709095],[120.31860318603185,0.9968176422106723],[120.34020340203404,0.9833090240516213],[120.34740347403476,0.9630460968130308],[120.34020340203404,0.9174545105261984],[120.34020340203404,0.8718629242393519],[120.34740347403476,0.8549771515405382],[120.36180361803616,0.8667971924297149],[120.36900369003689,0.8667971924297149],[120.37620376203762,0.8482228424609985],[120.38700387003871,0.8347142243019334],[120.40140401404017,0.8212056061428825],[120.4230042300423,0.8110741425235801],[120.45180451804521,0.8043198334440547],[120.46980469804697,0.797565524364515],[120.4770047700477,0.8009426789042919],[120.48420484204843,0.8076969879838174],[120.48780487804879,0.8110741425235801],[120.51300513005128,0.8110741425235801],[120.52740527405274,0.8060084107139289],[120.5418054180542,0.7958769470946407],[120.55620556205565,0.7806797516656871],[120.56700567005669,0.7823683289355756],[120.58500585005851,0.797565524364515],[120.61380613806136,0.8330256470320592],[120.60300603006033,0.8549771515405382],[120.61740617406173,0.8988801605574821],[120.6606066060661,0.9681118286226678],[120.68220682206822,0.9917519104010353],[120.68940689406895,0.9968176422106723],[120.70020700207004,0.9917519104010353],[120.71100711007114,0.9833090240516213],[120.72180721807217,0.9765547149720817],[120.73260732607326,0.9799318695118586],[120.73980739807399,0.9883747558612583],[120.74700747007472,1.0103262603697374],[120.75420754207545,1.0204577239890398],[120.76140761407618,1.025523455798691],[120.7830078300783,1.0322777648782164],[120.7938079380794,1.0373434966878676],[120.80100801008012,1.052540692116807],[120.80460804608049,1.0677378875457464],[120.79740797407976,1.1302152465314066],[120.80100801008012,1.1420352874205975],[120.80100801008012,1.1471010192302344],[120.80100801008012,1.1521667510398856],[120.80820808208085,1.162298214659188],[120.81540815408152,1.1724296782784762],[120.81900819008189,1.1741182555483647],[120.82620826208262,1.1960697600568437],[120.82620826208262,1.2146441100255458],[120.82620826208262,1.2534813872328527],[120.81900819008189,1.2906300871702712],[120.82260822608225,1.3092044371389733],[120.83340833408334,1.3260902098378011],[120.84420844208444,1.3277787871076896],[120.86580865808656,1.3244016325679269],[120.87300873008729,1.3260902098378011],[120.88380883808838,1.3311559416474523],[120.90900909009093,1.3531074461559314],[120.90540905409057,1.3244016325679269],[120.90900909009093,1.3108930144088617],[120.91980919809197,1.315958746218513],[120.93780937809379,1.3379102507269778],[120.94860948609488,1.342975982536629],[120.96660966609664,1.3463531370763917],[121.06021060210605,1.3277787871076896],[121.08181081810818,1.3311559416474523],[121.13221132211322,1.3142701689486245],[121.15741157411577,1.3024501280594478],[121.18261182611826,1.2720557372015548],[121.26541265412658,1.2298413054544852],[121.31941319413193,1.2534813872328527],[121.33741337413375,1.2568585417726155],[121.38061380613806,1.2568585417726155],[121.39861398613988,1.2619242735822667],[121.42381423814237,1.277121469011206],[121.44181441814419,1.294007241710034],[121.45261452614528,1.2973843962497966],[121.46341463414637,1.2923186644401454],[121.47061470614705,1.2821872008208572],[121.47061470614705,1.2703671599316806],[121.47061470614705,1.2568585417726155],[121.46701467014674,1.246727078153313],[121.45981459814601,1.2433499236135503],[121.43461434614346,1.2349070372641364],[121.4310143101431,1.2332184599942622],[121.4310143101431,1.2264641509147225],[121.43821438214383,1.2112669554857831],[121.44181441814419,1.2028240691363692],[121.44541445414455,1.1926926055170668],[121.44541445414455,1.1876268737074298],[121.44541445414455,1.1791839873580159],[121.44901449014492,1.167363946468825],[121.46701467014674,1.1471010192302344],[121.47061470614705,1.1369695556109463],[121.48141481414814,1.1200837829121184],[121.52821528215281,1.0829350829747],[121.54621546215463,1.0728036193553976],[121.58581585815858,1.060983578466221],[121.63261632616326,1.0626721557361094],[121.92781927819277,1.0981322784036394],[121.94221942219423,1.091377969324114],[121.95661956619568,1.0457863830372816],[121.97101971019714,1.0289006103384537],[121.9890198901989,1.022146301258914],[122.01062010620109,1.0238348785288025],[122.02862028620285,1.033966342148105],[122.05022050220504,1.0592950011963325],[122.06462064620649,1.0643607330059837],[122.08622086220862,1.060983578466221],[122.15102151021512,1.0373434966878676],[122.17622176221761,1.0356549194179792],[122.19062190621906,1.0322777648782164],[122.19782197821979,1.0272120330685652],[122.22302223022234,1.0120148376396259],[122.23382233822338,1.0103262603697374],[122.24462244622447,1.0103262603697374],[122.26622266222665,1.0153919921793886],[122.27702277022769,1.017080569449277],[122.28062280622805,1.0153919921793886],[122.29142291422914,1.0103262603697374],[122.29502295022951,1.0103262603697374],[122.29862298622987,1.0120148376396259],[122.30942309423097,1.0204577239890398],[122.31302313023133,1.0238348785288025],[122.32742327423273,1.0238348785288025],[122.37422374223746,1.0103262603697374],[122.39582395823959,1.0103262603697374],[122.44262442624427,1.022146301258914],[122.45342453424536,1.0204577239890398],[122.48582485824858,0.9968176422106723],[122.52542525425253,0.9799318695118586],[122.56502565025653,0.9714889831624447],[122.6226262262623,0.9664232513527935],[122.64422644226443,0.9596689422732538],[122.66222662226625,0.9478489013840772],[122.66942669426697,0.9309631286852493],[122.68022680226801,0.9191430877960727],[122.7018270182702,0.9090116241767845],[122.73782737827378,0.8938144287478309],[122.74862748627487,0.8870601196683054],[122.75222752227523,0.8803058105887658],[122.7558275582756,0.8752400787791288],[122.77022770227705,0.8735515015092403],[122.77742777427773,0.8701743469694776],[122.78102781027809,0.8566657288104125],[122.80622806228064,0.8482228424609985],[122.83142831428313,0.8245827606826452],[122.84942849428495,0.8178284516031056],[122.8890288902889,0.8482228424609985],[122.90702907029072,0.8532885742706497],[122.91782917829181,0.8600428833501752],[122.93942939429394,0.907323046906896],[122.9430294302943,0.9123887787165472],[122.9538295382954,0.9208316650659611],[122.95742957429576,0.9275859741454866],[122.95742957429576,0.9461603241142029],[122.96102961029612,0.9579803650033796],[122.96822968229685,0.9630460968130308],[122.98982989829898,0.9613575195431423],[123.00423004230043,0.9596689422732538],[123.0726307263073,0.9343402832250121],[123.09423094230942,0.9292745514153751],[123.09783097830979,0.9292745514153751],[123.11223112231124,0.9309631286852493],[123.13383133831337,0.9394060150346633],[123.17703177031774,0.9225202423358354],[123.19143191431914,0.9275859741454866],[123.18783187831878,0.937717437764789],[123.18063180631805,0.9596689422732538],[123.18783187831878,0.973177560432319],[123.20943209432096,0.9596689422732538],[123.22743227432278,0.9495374786539656],[123.25623256232564,0.9613575195431423],[123.27423274232746,0.9495374786539656],[123.27783277832782,0.9394060150346633],[123.27783277832782,0.9292745514153751],[123.28143281432813,0.9225202423358354],[123.29223292232922,0.9140773559864215],[123.30303303033031,0.9123887787165472],[123.33183331833317,0.9123887787165472],[123.34263342633426,0.9140773559864215],[123.35343353433535,0.9174545105261984],[123.36063360633608,0.9242088196057239],[123.36783367833681,0.9275859741454866],[123.38223382233821,0.9275859741454866],[123.38943389433894,0.9242088196057239],[123.39663396633966,0.9174545105261984],[123.40383403834039,0.91576593325631],[123.41823418234185,0.9208316650659611],[123.44343443434434,0.9022573150972448],[123.51903519035193,0.8870601196683054],[123.55143551435515,0.8701743469694776],[123.56223562235624,0.8667971924297149],[123.59823598235982,0.8819943878586542],[123.61263612636128,0.8870601196683054],[123.6306363063631,0.8819943878586542],[123.67383673836741,0.8600428833501752],[123.69183691836918,0.8532885742706497],[123.83223832238326,0.8330256470320592],[123.90063900639007,0.8397799561115846],[123.91143911439116,0.8380913788417104],[123.92943929439298,0.8313370697621707],[123.93663936639365,0.8330256470320592],[123.94743947439474,0.8380913788417104],[123.9510395103951,0.8465342651911243],[123.94743947439474,0.8532885742706497],[123.93663936639365,0.8583543060803009],[123.9510395103951,0.8684857696995891],[123.99063990639905,0.8803058105887658],[124.00864008640087,0.8988801605574821],[124.12024120241205,0.9394060150346633],[124.15264152641527,0.9461603241142029],[124.16704167041672,0.9562917877334911],[124.19224192241921,0.9833090240516213],[124.22464224642249,0.9985062194805607],[124.28944289442893,1.017080569449277],[124.31464314643148,1.0373434966878676],[124.32904329043294,1.0711150420855233],[124.3470434704347,1.140346710150709],[124.36144361443615,1.167363946468825],[124.37224372243725,1.1774954100881274],[124.39024390243901,1.1859382964375413],[124.40824408244083,1.1926926055170668],[124.42624426244265,1.1960697600568437],[124.49464494644945,1.1926926055170668],[124.51264512645128,1.1960697600568437],[124.52344523445237,1.2011354918664807],[124.5306453064531,1.2078898009460204],[124.53784537845382,1.2146441100255458],[124.54864548645486,1.2163326872954343],[124.55584555845559,1.2112669554857831],[124.55944559445595,1.2011354918664807],[124.56664566645668,1.1926926055170668],[124.57744577445777,1.1876268737074298],[124.59544595445954,1.1960697600568437],[124.60624606246063,1.2146441100255458],[124.61344613446136,1.2382841918038991],[124.61704617046172,1.2568585417726155],[124.60624606246063,1.2737443144714433],[124.59184591845917,1.2788100462810945],[124.55224552245522,1.277121469011206],[124.53424534245346,1.2889415099003827],[124.53424534245346,1.3142701689486245],[124.54144541445413,1.342975982536629],[124.54864548645486,1.3598617552354568],[124.60264602646026,1.400387609712638],[124.60984609846099,1.4105190733319404],[124.62064620646208,1.4172733824114658],[124.69264692646925,1.4020761869825265],[124.7178471784718,1.4054533415222892],[124.73224732247326,1.4155848051415916],[124.75744757447575,1.4459791959994703],[124.77544775447757,1.4544220823488843],[124.81504815048152,1.461176391428424],[124.8366483664837,1.4696192777778379],[124.8510485104851,1.4898822050164284],[124.84384843848437,1.5084565549851305],[124.82944829448297,1.5270309049538469],[124.82224822248224,1.548982409462326],[124.82584825848261,1.5726224912406792],[124.8366483664837,1.589508263939507],[124.93744937449378,1.6654942410842324],[124.94464944649445,1.6790028592432833],[124.94824948249482,1.6823800137830602],[124.969849698497,1.6739371274336463],[124.97344973449736,1.6790028592432833],[124.969849698497,1.712774404640939],[124.97344973449736,1.7229058682602414],[124.98424984249846,1.7313487546096553],[125.00585005850058,1.7414802182289435],[125.0238502385024,1.7448573727687204],[125.0346503465035,1.7330373318795296],[125.0346503465035,1.6925114774023484],[125.04185041850417,1.6806914365131718],[125.06345063450635,1.6739371274336463],[125.08145081450817,1.6739371274336463],[125.14625146251461,1.6823800137830602],[125.17505175051753,1.6790028592432833],[125.17865178651789,1.6671828183541066],[125.16425164251643,1.6266569638769255],[125.1678516785168,1.5844425321298559],[125.18945189451898,1.5608024503515026],[125.21465214652147,1.5439166776526747],[125.23985239852402,1.5236537504140841],[125.25065250652506,1.4848164732067772],[125.2218522185222,1.4594878141585355],[125.17865178651789,1.4409134641898333],[125.14265142651425,1.4206505369512428],[125.1138511385114,1.3851904142836986],[125.09585095850957,1.3497302916161686],[125.0346503465035,1.175806832818239],[124.98784987849882,1.0930665465939882],[124.95544955449554,1.0542292693866955],[124.91944919449196,1.0204577239890398],[124.9158491584916,1.0137034149095001],[124.9050490504905,0.9883747558612583],[124.9050490504905,0.9799318695118586],[124.89784897848978,0.973177560432319],[124.86184861848619,0.9546032104636168],[124.82944829448297,0.9461603241142029],[124.82224822248224,0.9410945923045517],[124.81504815048152,0.9309631286852493],[124.80064800648006,0.9056344696370076],[124.78984789847897,0.9005687378273706],[124.76824768247684,0.8955030060177194],[124.74664746647466,0.8819943878586542],[124.71064710647107,0.8448456879212358],[124.67824678246785,0.8212056061428825],[124.6638466384664,0.8060084107139289],[124.6530465304653,0.7773025971259244],[124.63864638646385,0.7587282471572223],[124.63504635046354,0.7469082062680457],[124.63504635046354,0.7317110108390921],[124.63504635046354,0.7249567017595666],[124.62424624246245,0.7080709290607388],[124.5882458824588,0.6776765382028458],[124.58104581045814,0.6574136109642552],[124.57384573845741,0.6489707246148413],[124.57024570245704,0.6388392609955531],[124.57384573845741,0.6303963746461392],[124.58104581045814,0.6202649110268368],[124.58104581045814,0.6135106019473113],[124.58104581045814,0.594936251978595],[124.57744577445777,0.5915590974388323],[124.55584555845559,0.5932476747087065],[124.54864548645486,0.5915590974388323],[124.5450454504545,0.5881819428990696],[124.50184501845018,0.5341474702628233],[124.49824498244982,0.5189502748338697],[124.51264512645128,0.5105073884844558],[124.51264512645128,0.5037530794049303],[124.49464494644945,0.49699877032540485],[124.48384483844842,0.4834901521663397],[124.4658446584466,0.44803002949879556],[124.44064440644405,0.4564729158482095],[124.41544415444156,0.44803002949879556],[124.39384393843937,0.43452141133974465],[124.37224372243725,0.427767102260205],[124.35064350643506,0.422701370450568],[124.3218432184322,0.3990612886722005],[124.19944199441994,0.3737326296239587],[124.1490414904149,0.370355475084196],[124.10944109441095,0.3872412477830238],[124.09864098640986,0.3787983614336099],[124.069840698407,0.35178112511549386],[124.0410404104041,0.3585354341950193],[124.03384033840342,0.3585354341950193],[124.02304023040233,0.3551582796552566],[124.00504005040051,0.34164966149619147],[123.99783997839978,0.33827250695642874],[123.93303933039334,0.3365839296865403],[123.91143911439116,0.3315181978768891],[123.86823868238685,0.31800957971783816],[123.85743857438575,0.3163210024479497],[123.82503825038253,0.31800957971783816],[123.80703807038071,0.3112552706382985],[123.78903789037889,0.3011238070190103],[123.78183781837822,0.2977466524792476],[123.77103771037713,0.3028123842888846],[123.75663756637567,0.30787811609853577],[123.74583745837458,0.3112552706382985],[123.72423724237245,0.30956669336842424],[123.68823688236881,0.29436949793947065],[123.65583655836559,0.2876151888599452],[123.64863648636486,0.28086087978041974],[123.63423634236341,0.26566368435146615],[123.62703627036274,0.2673522616213546],[123.61623616236164,0.2724179934310058],[123.58383583835837,0.2977466524792476],[123.56943569435697,0.3028123842888846],[123.46503465034652,0.31294384790818697],[123.44343443434434,0.3112552706382985],[123.40743407434076,0.3011238070190103],[123.38943389433894,0.2977466524792476],[123.29223292232922,0.30787811609853577],[123.259832598326,0.3213867342576009],[123.24543245432454,0.3213867342576009],[123.23823238232382,0.3247638887973636],[123.23463234632345,0.32814104333712635],[123.22743227432278,0.34333823876607994],[123.22023220232205,0.3450268160359542],[123.21663216632169,0.3534697023853681],[123.19143191431914,0.39061840232278655],[123.18783187831878,0.3939955568625493],[123.16623166231665,0.392306979592675],[123.16263162631628,0.3973727114023262],[123.16263162631628,0.40074986594208895],[123.13383133831337,0.44803002949879556],[123.09063090630906,0.4936216157856279],[123.0726307263073,0.515573120294107],[123.06903069030693,0.515573120294107],[123.05463054630548,0.5003759248651676],[123.03303033030329,0.49193303851575365],[122.97902979029789,0.4834901521663397],[122.83142831428313,0.49193303851575365],[122.73782737827378,0.48180157489645126],[122.69462694626947,0.4834901521663397],[122.68382683826837,0.4885558839759909],[122.66222662226625,0.515573120294107],[122.65142651426515,0.5240160066435209],[122.65502655026552,0.4936216157856279],[122.65142651426515,0.480112997626577],[122.64062640626406,0.4750472658169258],[122.6226262262623,0.47673584308681427],[122.60822608226084,0.480112997626577],[122.59742597425975,0.4902444612458652],[122.5830258302583,0.4936216157856279],[122.56502565025653,0.49699877032540485],[122.32382323823242,0.49699877032540485],[122.31302313023133,0.4953101930555164],[122.29142291422914,0.485178729436214],[122.28422284222842,0.4834901521663397],[122.20862208622088,0.4834901521663397],[122.19782197821979,0.4834901521663397],[122.1870218702187,0.480112997626577],[122.1726217262173,0.4716701112771631],[122.16542165421657,0.4699815340072746],[122.14382143821439,0.4716701112771631],[122.10422104221044,0.480112997626577],[122.03942039420394,0.48180157489645126],[122.02142021420218,0.47673584308681427],[122.00342003420036,0.4547843385783352],[121.98541985419854,0.44803002949879556],[121.89181891818919,0.4362099886096189],[121.84141841418415,0.43452141133974465],[121.8018180181802,0.4260785249903307],[121.78741787417874,0.427767102260205],[121.78021780217802,0.4328328340698562],[121.73341733417334,0.5003759248651676],[121.71541715417158,0.515573120294107],[121.69021690216903,0.5240160066435209],[121.67581675816757,0.5240160066435209],[121.64341643416435,0.5172616975639954],[121.63621636216362,0.515573120294107],[121.62541625416253,0.5223274293736466],[121.61821618216186,0.5307703157230605],[121.61101611016113,0.5409017793423487],[121.60021600216004,0.5510332429616511],[121.59661596615967,0.5392132020724603],[121.58941589415895,0.5324588929929348],[121.57501575015749,0.5307703157230605],[121.55701557015573,0.5307703157230605],[121.54621546215463,0.5341474702628233],[121.53541535415354,0.5392132020724603],[121.52821528215281,0.537524624802586],[121.51741517415178,0.5240160066435209],[121.51381513815141,0.5105073884844558],[121.51381513815141,0.49699877032540485],[121.50661506615069,0.48686730670610245],[121.4958149581496,0.4834901521663397],[121.47781477814777,0.48180157489645126],[121.46701467014674,0.480112997626577],[121.45261452614528,0.4750472658169258],[121.44181441814419,0.4699815340072746],[121.42741427414273,0.48180157489645126],[121.41301413014133,0.4834901521663397],[121.39861398613988,0.47842442035668853],[121.3626136261363,0.47335868854703733],[121.34101341013411,0.46322722492774915],[121.33021330213302,0.4615386476578607],[121.31941319413193,0.4649158021976234],[121.2978129781298,0.47842442035668853],[121.2870128701287,0.4834901521663397],[121.26181261812621,0.48180157489645126],[121.22221222212221,0.4666043794675119],[121.20061200612008,0.4615386476578607],[121.1790117901179,0.4615386476578607],[121.1646116461165,0.45816149311809795],[121.15021150211504,0.449718606768684],[121.13581135811359,0.43452141133974465],[121.1250112501125,0.4176356386409168],[121.11781117811177,0.41088132956137713],[121.10701107011073,0.4075041750216144],[121.09981099811,0.4075041750216144],[121.06381063810642,0.41425848410115407],[121.0458104581046,0.41932421591079105],[121.02061020610205,0.4412757204192701],[121.00621006210065,0.44803002949879556],[120.98820988209883,0.4463414522289213],[120.95580955809561,0.4311442567999677],[120.89100891008911,0.422701370450568],[120.87660876608766,0.42438994772044225],[120.86220862208626,0.43452141133974465],[120.85500855008553,0.4412757204192701],[120.85140851408516,0.4564729158482095],[120.8478084780848,0.4615386476578607],[120.84060840608407,0.4649158021976234],[120.80820808208085,0.4699815340072746],[120.80460804608049,0.4716701112771631],[120.80100801008012,0.480112997626577],[120.79740797407976,0.48686730670610245],[120.79020790207903,0.4902444612458652],[120.77580775807758,0.4885558839759909],[120.76140761407618,0.48180157489645126],[120.75060750607508,0.4834901521663397],[120.7290072900729,0.4936216157856279],[120.70020700207004,0.5240160066435209],[120.67860678606786,0.5307703157230605],[120.50220502205025,0.5290817384531721],[120.48780487804879,0.5240160066435209],[120.4086040860409,0.485178729436214],[120.39060390603908,0.4834901521663397],[120.37620376203762,0.47842442035668853],[120.36180361803616,0.4649158021976234],[120.35100351003513,0.4514071840385725],[120.34020340203404,0.4412757204192701],[120.31500315003149,0.422701370450568],[120.27180271802717,0.3787983614336099],[120.2142021420214,0.2926809206695964],[120.1566015660157,0.22851498441404772],[120.13500135001351,0.1913662844766293],[120.12780127801278,0.1812348208573411],[120.12060120601205,0.14577469818979694],[120.11700117001169,0.137331811840383],[120.10260102601029,0.11706888460179243],[120.09900099000993,0.09680595736320186],[120.09540095400956,0.0512143710763695],[120.08460084600847,0.00562278478953715],[120.07380073800738,-0.016328719718941898],[120.06300063000629,-0.034903069687644006],[120.0270002700027,-0.06192030600577425],[120.02340023400234,-0.07036319235518818],[120.02340023400234,-0.08218323324436483],[120.02340023400234,-0.1075118922926066],[120.01980019800197,-0.15310347857943896],[120.01260012600125,-0.175054983087918],[120.00180001800021,-0.19194075578674585],[119.99459994599948,-0.2088265284855737],[119.99819998199985,-0.23415518753381548],[120.01980019800197,-0.36417563731477287],[120.02340023400234,-0.38443856455336345],[120.05220052200525,-0.4198986872209076],[120.05940059400598,-0.44185019172938667],[120.05580055800561,-0.45198165534867485],[120.04860048600489,-0.4722445825872654],[120.04500045000452,-0.4823760462065678],[120.04860048600489,-0.4941960870957445],[120.05580055800561,-0.5178361688740978],[120.07380073800738,-0.6140850732574137],[120.08820088200883,-0.6579880822743718],[120.24300243002432,-0.8876345909784078],[120.25740257402578,-0.8994546318675987],[120.30420304203045,-0.9315375999953659],[120.32580325803258,-0.9382919090748914],[120.34740347403476,-0.9281604454556032],[120.36900369003689,-0.9112746727567753],[120.38700387003871,-0.9011432091374729],[120.4122041220412,-0.9045203636772357],[120.42660426604266,-0.9197175591061892],[120.43380433804339,-0.9399804863447798],[120.44820448204484,-0.9602434135833704],[120.45540455404557,-0.9653091453930216],[120.46620466204661,-0.9686862999327843],[120.48780487804879,-0.9703748772026586],[120.49860498604988,-0.9754406090123098],[120.50940509405098,-0.9872606499014864],[120.51660516605165,-1.010900731679854],[120.58140581405814,-1.1054610587932814],[120.58500585005851,-1.117281099682458],[120.58860588605887,-1.1291011405716347],[120.58500585005851,-1.1375440269210486],[120.57780577805778,-1.1459869132704625],[120.57420574205742,-1.1544297996198765],[120.57420574205742,-1.1628726859692904],[120.57420574205742,-1.1763813041283555],[120.56700567005669,-1.2017099631765973],[120.56700567005669,-1.2152185813356624],[120.57420574205742,-1.227038622224839],[120.62100621006209,-1.2810730948610853],[120.63180631806318,-1.2996474448297874],[120.63900639006391,-1.341861876576857],[120.649806498065,-1.3638133810853361],[120.6606066060661,-1.3840763083239267],[120.6750067500675,-1.394207771943229],[120.73620736207363,-1.3671905356250988],[120.73620736207363,-1.3604362265455734],[120.80460804608049,-1.3435504538467455],[120.82980829808298,-1.3401732993069828],[120.83340833408334,-1.3452390311166198],[120.82620826208262,-1.3773219992444012],[120.83340833408334,-1.3840763083239267],[120.84420844208444,-1.389142040133578],[120.86940869408693,-1.394207771943229],[120.89100891008911,-1.3958963492131033],[120.95940959409597,-1.3874534628636894],[120.97740977409774,-1.3823877310540382],[120.98820988209883,-1.380699153784164],[120.99900999009992,-1.3857648855938152],[121.02421024210241,-1.40771639010228],[121.03141031410314,-1.416159276451694],[121.07461074610745,-1.4212250082613451],[121.10701107011073,-1.4060278128324057],[121.13221132211322,-1.3790105765142755],[121.1682116821168,-1.323287526608155],[121.17541175411753,-1.3047131766394386],[121.1790117901179,-1.2675644767020202],[121.18981189811899,-1.2219728904151879],[121.19701197011972,-1.2033985404464715],[121.20781207812081,-1.191578499557295],[121.22221222212221,-1.174692726858467],[121.24021240212403,-1.1611841086994161],[121.25461254612549,-1.1544297996198765],[121.26541265412658,-1.1493640678102253],[121.27621276212761,-1.1324782951113974],[121.29061290612907,-1.1003953269836302],[121.31941319413193,-1.0666237815859745],[121.37341373413733,-1.0210321952991421],[121.4310143101431,-0.9332261772652402],[121.45261452614528,-0.9062089409471241],[121.49941499414996,-0.8589287773904033],[121.51741517415178,-0.8504858910409894],[121.53541535415354,-0.8471087365012266],[121.57861578615785,-0.8471087365012266],[121.58581585815858,-0.8420430046915754],[121.58581585815858,-0.8336001183421615],[121.58581585815858,-0.8217800774529849],[121.58941589415895,-0.813337191103571],[121.59661596615967,-0.8082714592939197],[121.62181621816217,-0.7998285729445058],[121.6290162901629,-0.7981399956746316],[121.63981639816399,-0.8015171502143943],[121.64701647016471,-0.804894304754157],[121.65421654216544,-0.8099600365638082],[121.66141661416617,-0.813337191103571],[121.66141661416617,-0.8724373955494684],[121.66141661416617,-0.8876345909784078],[121.69021690216903,-0.9095860954868868],[121.70101701017012,-0.923094713645952],[121.70821708217085,-0.9315375999953659],[121.71541715417158,-0.9349147545351286],[121.79821798217984,-0.9349147545351286],[121.84501845018451,-0.9416690636146541],[121.88821888218882,-0.9518005272339565],[121.92781927819277,-0.9551776817737192],[121.96381963819641,-0.9433576408845425],[121.9998199982,-0.9214061363760635],[122.01782017820182,-0.9163404045664123],[122.04302043020431,-0.914651827296538],[122.06462064620649,-0.9197175591061892],[122.08622086220862,-0.9264718681857147],[122.10422104221044,-0.9264718681857147],[122.12942129421293,-0.9095860954868868],[122.14022140221402,-0.8876345909784078],[122.15462154621548,-0.8538630455807521],[122.15822158221584,-0.8200915001831106],[122.15462154621548,-0.7981399956746316],[122.19422194221943,-0.7694341820866271],[122.20862208622088,-0.7643684502769759],[122.41022410224105,-0.7576141411974504],[122.449824498245,-0.7508598321179107],[122.48582485824858,-0.7491712548480365],[122.5578255782558,-0.7677456048167386],[122.59382593825939,-0.7643684502769759],[122.60102601026011,-0.7609912957372131],[122.60462604626048,-0.7559255639275619],[122.6118261182612,-0.7525484093877992],[122.6226262262623,-0.7508598321179107],[122.6370263702637,-0.7542369866576735],[122.65502655026552,-0.7677456048167386],[122.68382683826837,-0.7761884911661525],[122.69822698226983,-0.7846313775155664],[122.71622716227165,-0.7930742638649804],[122.73782737827378,-0.7913856865951061],[122.78822788227882,-0.7744999138962783],[122.91422914229145,-0.7626798730070874],[122.92862928629285,-0.7593027184673247],[122.9430294302943,-0.7508598321179107],[122.96102961029612,-0.7373512139588598],[122.96102961029612,-0.7305969048793202],[122.89622896228963,-0.717088286720255],[122.89262892628926,-0.712022554910618],[122.88542885428853,-0.7002025140214272],[122.88182881828817,-0.6951367822117902],[122.86742867428677,-0.6934482049419017],[122.78102781027809,-0.6866938958623763],[122.76662766627669,-0.6833167413226136],[122.75222752227523,-0.6765624322430739],[122.74142741427414,-0.66811954589366],[122.73422734227341,-0.6579880822743718],[122.73422734227341,-0.6478566186550694],[122.75222752227523,-0.6411023095755439],[122.76662766627669,-0.6495451959249579],[122.78102781027809,-0.6461680413851809],[122.80622806228064,-0.6275936914164788],[122.81342813428137,-0.6225279596068276],[122.81702817028173,-0.6157736505273022],[122.82422824228246,-0.6123964959875394],[122.83862838628386,-0.6208393823369533],[122.84582845828459,-0.6191508050670649],[122.85302853028531,-0.6157736505273022],[122.85662856628568,-0.610707918717651],[122.9430294302943,-0.6056421869079998],[122.96462964629649,-0.5988878778284743],[122.97542975429758,-0.6073307641778882],[122.99342993429934,-0.6073307641778882],[123.01143011430116,-0.6039536096381255],[123.02583025830262,-0.5988878778284743],[123.03663036630365,-0.5904449914790604],[123.05103051030511,-0.5668049097007071],[123.0618306183062,-0.5583620233512931],[123.07623076230766,-0.5566734460814047],[123.23823238232382,-0.5701820642404698],[123.27423274232746,-0.5836906823995207],[123.34263342633426,-0.6208393823369533],[123.40383403834039,-0.6427908868454182],[123.41823418234185,-0.6546109277345948],[123.40743407434076,-0.66811954589366],[123.40383403834039,-0.6731852777033112],[123.40743407434076,-0.6782510095129624],[123.41463414634148,-0.6866938958623763],[123.41823418234185,-0.6934482049419017],[123.41823418234185,-0.7018910912913157],[123.42543425434258,-0.7086454003708411],[123.43263432634325,-0.7103339776407296],[123.44343443434434,-0.7103339776407296],[123.43983439834398,-0.7305969048793202],[123.45423454234543,-0.7576141411974504],[123.43983439834398,-0.7930742638649804],[123.44343443434434,-0.8336001183421615],[123.43623436234361,-0.8538630455807521],[123.41103411034112,-0.8808802818988823],[123.40023400234003,-0.8943889000579475],[123.38943389433894,-0.9838834953617237],[123.38223382233821,-1.0041464226003143],[123.35343353433535,-1.0396065452678585],[123.31023310233104,-1.051426586157035],[123.27063270632709,-1.0446722770775096],[123.23823238232382,-1.0244093498389049],[123.20943209432096,-0.9838834953617237],[123.20223202232023,-0.9771291862821982],[123.1950319503195,-0.9703748772026586],[123.14823148231483,-0.9349147545351286],[123.14823148231483,-0.923094713645952],[123.15543155431556,-0.8977660545977102],[123.15543155431556,-0.8876345909784078],[123.15183151831519,-0.8724373955494684],[123.1410314103141,-0.862305931930166],[123.11943119431197,-0.8437315819614639],[123.09783097830979,-0.83528869561205],[123.0618306183062,-0.8808802818988823],[123.04023040230402,-0.8808802818988823],[123.0078300783008,-0.8943889000579475],[122.91782917829181,-0.8994546318675987],[122.8746287462875,-0.9095860954868868],[122.83862838628386,-0.8994546318675987],[122.81342813428137,-0.9247832909158262],[122.77022770227705,-1.0193436180292679],[122.75942759427596,-1.0345408134582073],[122.73422734227341,-1.0632466270462118],[122.73062730627305,-1.0700009361257514],[122.72702727027269,-1.0784438224751511],[122.72702727027269,-1.086886708824565],[122.72342723427238,-1.0970181724438675],[122.71982719827201,-1.108838213333044],[122.71262712627129,-1.1139039451426953],[122.7018270182702,-1.117281099682458],[122.6910269102691,-1.1206582542222208],[122.66222662226625,-1.1426097587306998],[122.64782647826479,-1.1594955314295277],[122.6370263702637,-1.2067756949862485],[122.6262262622626,-1.2185957358754251],[122.58662586625866,-1.2371700858441272],[122.57222572225726,-1.2523672812730808],[122.52902529025289,-1.3165332175286153],[122.51102511025113,-1.3266646811479177],[122.5038250382504,-1.3334189902274431],[122.50022500225003,-1.3435504538467455],[122.49662496624967,-1.3536819174660337],[122.48222482224821,-1.3756334219745128],[122.47862478624785,-1.380699153784164],[122.40662406624068,-1.446553667309587],[122.38142381423813,-1.4786366354373541],[122.3706237062371,-1.4921452535964193],[122.3058230582306,-1.5242282217241865],[122.23382233822338,-1.57488553982067],[122.20142201422016,-1.6035913534086745],[122.18342183421834,-1.613722817027977],[122.1726217262173,-1.6103456624882142],[122.15822158221584,-1.6002141988689118],[122.14382143821439,-1.5934598897893864],[122.12582125821257,-1.596837044329149],[122.08262082620826,-1.6170999715677397],[122.06462064620649,-1.6204771261075024],[122.0538205382054,-1.6204771261075024],[122.03582035820358,-1.613722817027977],[122.02502025020249,-1.613722817027977],[122.01782017820182,-1.6187885488376281],[122.01422014220145,-1.6238542806472651],[122.01062010620109,-1.6289200124569163],[122.00702007020072,-1.6356743215364418],[121.97461974619745,-1.6559372487750466],[121.95301953019532,-1.6643801351244605],[121.94221942219423,-1.662691557854572],[121.9206192061921,-1.6728230214738744],[121.90261902619028,-1.6762001760136371],[121.86301863018633,-1.6694458669340975],[121.8558185581856,-1.6880202169028138],[121.84861848618488,-1.689708794172688],[121.83061830618306,-1.701528835061879],[121.81981819818202,-1.7082831441414044],[121.80901809018093,-1.7099717214112928],[121.79821798217984,-1.7184146077607068],[121.79101791017911,-1.7369889577294089],[121.78021780217802,-1.772449080396953],[121.75501755017552,-1.8332378621127248],[121.74061740617407,-1.8619436757007293],[121.71901719017194,-1.8889609120188595],[121.69381693816939,-1.9075352619875616],[121.66141661416617,-1.9210438801466267],[121.6290162901629,-1.9277981892261522],[121.56421564215646,-1.931175343765915],[121.55341553415536,-1.9294867664960407],[121.5390153901539,-1.922732457416501],[121.53541535415354,-1.9159781483369756],[121.53181531815318,-1.90922383925745],[121.51021510215105,-1.8838951802092083],[121.50301503015032,-1.8771408711296687],[121.4958149581496,-1.873763716589906],[121.49221492214923,-1.8720751393200317],[121.45621456214565,-1.8602550984308408],[121.44541445414455,-1.8416807484621387],[121.44541445414455,-1.8247949757633108],[121.44181441814419,-1.8129749348741342],[121.4166141661417,-1.8062206257945945],[121.36981369813697,-1.8062206257945945],[121.36621366213666,-1.8028434712548318],[121.35541355413557,-1.785957698556004],[121.34821348213484,-1.7792033894764785],[121.31221312213125,-1.7825805440162412],[121.2978129781298,-1.816352089413897],[121.30501305013053,-1.84674648027179],[121.34101341013411,-1.8399921711922502],[121.34461344613447,-1.8551893666212038],[121.34101341013411,-1.8754522938597944],[121.33021330213302,-1.8974037983682734],[121.32661326613265,-1.9193553028767383],[121.33021330213302,-1.9277981892261522],[121.33741337413375,-1.9379296528454546],[121.34101341013411,-1.9463725391948685],[121.34101341013411,-1.9919641254817009],[121.3518135181352,-1.983521239132287],[121.3626136261363,-1.975078352782873],[121.36981369813697,-1.966635466433459],[121.37341373413733,-1.9565040028141567],[121.38061380613806,-1.9429953846551058],[121.38421384213842,-1.9294867664960407],[121.38781387813879,-1.917666725606864],[121.40221402214024,-1.90922383925745],[121.41301413014133,-1.9277981892261522],[121.43461434614346,-1.9801440845925242],[121.46701467014674,-2.000407011831115],[121.47781477814777,-2.0206699390697054],[121.49221492214923,-2.0358671344986448],[121.51021510215105,-2.032489979958882],[121.53541535415354,-2.0595072162770123],[121.55341553415536,-2.133804616151849],[121.57501575015749,-2.1625104297398536],[121.61821618216186,-2.177707625168793],[121.66141661416617,-2.1760190478989188],[121.70101701017012,-2.1810847797085557],[121.74061740617407,-2.2114791705664487],[121.76581765817662,-2.2418735614243417],[121.82341823418233,-2.287465147711174],[121.84861848618488,-2.3212366931088297],[121.86301863018633,-2.358385393046248],[121.87381873818737,-2.380336897554713],[121.87381873818737,-2.3989112475234293],[121.8810188101881,-2.4141084429523687],[121.93141931419314,-2.463077183778964],[121.96381963819641,-2.5188002336850985],[121.97821978219781,-2.5542603563526427],[122.01062010620109,-2.5930976335599354],[122.01782017820182,-2.6150491380684144],[122.01782017820182,-2.635312065307005],[122.01422014220145,-2.6809036515938374],[122.01422014220145,-2.692723692483014],[122.06102061020613,-2.745069587849386],[122.08262082620826,-2.763643937818088],[122.10062100621008,-2.770398246897628],[122.13662136621366,-2.775463978707265],[122.14742147421475,-2.7788411332470417],[122.15102151021512,-2.7822182877868045],[122.15102151021512,-2.794038328675981],[122.16182161821621,-2.7991040604856323],[122.16902169021694,-2.8007926377555066],[122.17622176221761,-2.8075469468350462],[122.18342183421834,-2.8227441422639856],[122.1870218702187,-2.846384224042339],[122.19422194221943,-2.8666471512809295],[122.20862208622088,-2.8750900376303434],[122.24462244622447,-2.8750900376303434],[122.26622266222665,-2.8784671921701204],[122.28782287822878,-2.8885986557894086],[122.31302313023133,-2.9274359329967155],[122.29502295022951,-2.964584632934134],[122.26982269822702,-3.0017333328715523],[122.28062280622805,-3.0388820328089707],[122.28782287822878,-3.043947764618622],[122.31302313023133,-3.06083353731745],[122.3850238502385,-3.131753782652524],[122.39582395823959,-3.133442359922398],[122.40662406624068,-3.128376628112747],[122.42102421024214,-3.1199337417633473],[122.43182431824317,-3.114868009953696],[122.43542435424354,-3.128376628112747],[122.4390243902439,-3.140196669001938],[122.44622446224463,-3.1486395553513518],[122.45702457024572,-3.1570824417007657],[122.46782467824681,-3.1486395553513518],[122.47142471424718,-3.150328132621226],[122.47142471424718,-3.1621481735104027],[122.46422464224645,-3.1773453689393563],[122.46062460624609,-3.180722523479119],[122.44262442624427,-3.18578825528877],[122.43542435424354,-3.190853987098407],[122.43542435424354,-3.1959197189080584],[122.43542435424354,-3.211116914337012],[122.43542435424354,-3.2178712234165374],[122.43182431824317,-3.2347569961153653],[122.43182431824317,-3.243199882464779],[122.42822428224281,-3.246577037004542],[122.41742417424177,-3.2448884597346535],[122.41742417424177,-3.243199882464779],[122.41382413824141,-3.238134150655128],[122.40302403024032,-3.2313798415756025],[122.39582395823959,-3.229691264305714],[122.38862388623886,-3.2313798415756025],[122.3850238502385,-3.2347569961153653],[122.38142381423813,-3.238134150655128],[122.35622356223564,-3.2178712234165374],[122.33822338223382,-3.238134150655128],[122.32022320223206,-3.2567085006238443],[122.29502295022951,-3.312431550529965],[122.30222302223024,-3.3411373641179694],[122.3166231662317,-3.3445145186577463],[122.359823598236,-3.3630888686264484],[122.37422374223746,-3.3715317549758623],[122.38142381423813,-3.391794682214453],[122.3850238502385,-3.418811918532583],[122.37782377823777,-3.4390748457711737],[122.359823598236,-3.4373862685012853],[122.3706237062371,-3.4255662276121086],[122.36342363423637,-3.413746186722932],[122.34542345423455,-3.405303300373518],[122.32742327423273,-3.4036147231036296],[122.33102331023309,-3.3934832594843414],[122.33462334623346,-3.3901061049445786],[122.32382323823242,-3.374908909515625],[122.30942309423097,-3.3681546004360996],[122.29502295022951,-3.364777445896337],[122.28062280622805,-3.356334559546923],[122.27702277022769,-3.366466023166211],[122.27342273422738,-3.3765974867855135],[122.26622266222665,-3.3816632185951647],[122.2518225182252,-3.3765974867855135],[122.25542255422556,-3.3951718367542156],[122.26262262622629,-3.4103690321831692],[122.26982269822702,-3.422189073072346],[122.28422284222842,-3.4340091139615225],[122.29142291422914,-3.4508948866603504],[122.29142291422914,-3.471157813898941],[122.28422284222842,-3.49310931840742],[122.26622266222665,-3.5235037092652988],[122.26262262622629,-3.52856944107495],[122.25542255422556,-3.533635172884601],[122.24462244622447,-3.5403894819641266],[122.23382233822338,-3.5437666365039036],[122.21222212222125,-3.550520945583429],[122.20142201422016,-3.5572752546629545],[122.19782197821979,-3.572472450091908],[122.20502205022052,-3.594423954600373],[122.22662226622265,-3.629884077267917],[122.23382233822338,-3.643392695426982],[122.2518225182252,-3.656901313586033],[122.26982269822702,-3.665344199935447],[122.29142291422914,-3.670409931745098],[122.3058230582306,-3.6754756635547494],[122.3166231662317,-3.6889842817138145],[122.32382323823242,-3.704181477142754],[122.33462334623346,-3.717690095301819],[122.35622356223564,-3.7278215589211072],[122.37782377823777,-3.7295101361909957],[122.42102421024214,-3.7244444043813445],[122.44262442624427,-3.731198713460884],[122.45342453424536,-3.7463959088898235],[122.47142471424718,-3.7869217633670047],[122.52902529025289,-3.8645963177816043],[122.54702547025471,-3.8781049359406694],[122.5686256862569,-3.8831706677503206],[122.6370263702637,-3.8831706677503206],[122.64782647826479,-3.884859245020209],[122.65502655026552,-3.889924976829846],[122.66222662226625,-3.8966792859093857],[122.66942669426697,-3.9084993267985624],[122.66582665826661,-3.9186307904178506],[122.64782647826479,-3.9253850994973902],[122.6370263702637,-3.9304508313070414],[122.63342633426333,-3.9355165631166784],[122.6226262262623,-3.9524023358155063],[122.6118261182612,-3.955779490355283],[122.58662586625866,-3.9574680676251575],[122.56502565025653,-3.964222376704683],[122.55062550625507,-3.9709766857842226],[122.55422554225544,-3.976042417593874],[122.60102601026011,-3.9794195721336365],[122.6226262262623,-3.9844853039432877],[122.64062640626406,-3.9929281902927016],[122.65502655026552,-4.0064368084517525],[122.66222662226625,-4.02332258115058],[122.66582665826661,-4.041896931119297],[122.66222662226625,-4.084111362866366],[122.66582665826661,-4.102685712835068],[122.67662676626765,-4.122948640073659],[122.68742687426874,-4.138145835502613],[122.70542705427056,-4.14321156731225],[122.70902709027092,-4.139834412772487],[122.70902709027092,-4.131391526423073],[122.71262712627129,-4.122948640073659],[122.71262712627129,-4.114505753724245],[122.73782737827378,-4.129702949153199],[122.77742777427773,-4.136457258232724],[122.81702817028173,-4.138145835502613],[122.84222842228422,-4.12801437188331],[122.78822788227882,-4.073979899247064],[122.77382773827742,-4.048651240198822],[122.80622806228064,-4.040208353849408],[122.84582845828459,-4.057094126548236],[122.87102871028713,-4.09255424921578],[122.89262892628926,-4.136457258232724],[122.90702907029072,-4.195557462678622],[122.91062910629108,-4.217508967187101],[122.90702907029072,-4.236083317155803],[122.89262892628926,-4.266477708013696],[122.89262892628926,-4.286740635252286],[122.90342903429035,-4.328955066999356],[122.90702907029072,-4.369480921476537],[122.89982899828999,-4.388055271445253],[122.88542885428853,-4.396498157794667],[122.86742867428677,-4.39987531233443],[122.86022860228604,-4.410006775953718],[122.85302853028531,-4.423515394112783],[122.84222842228422,-4.438712589541723],[122.82782827828277,-4.420138239573021],[122.75942759427596,-4.369480921476537],[122.72342723427238,-4.332332221539119],[122.69822698226983,-4.3188236033800536],[122.66942669426697,-4.313757871570402],[122.68022680226801,-4.334020798809007],[122.72342723427238,-4.3728580760163],[122.72702727027269,-4.381300962365714],[122.73782737827378,-4.39987531233443],[122.7450274502745,-4.410006775953718],[122.74862748627487,-4.411695353223607],[122.76302763027633,-4.408318198683844],[122.76662766627669,-4.410006775953718],[122.77022770227705,-4.416761085033258],[122.77022770227705,-4.420138239573021],[122.76662766627669,-4.423515394112783],[122.76662766627669,-4.430269703192309],[122.77022770227705,-4.4420897440815],[122.77382773827742,-4.450532630430914],[122.77382773827742,-4.469106980399616],[122.77022770227705,-4.479238444018918],[122.75942759427596,-4.484304175828555],[122.7450274502745,-4.485992753098444],[122.73422734227341,-4.482615598558681],[122.71262712627129,-4.452221207700788],[122.69822698226983,-4.452221207700788],[122.69822698226983,-4.457286939510439],[122.69822698226983,-4.465729825859853],[122.70542705427056,-4.4724841349393785],[122.6910269102691,-4.484304175828555],[122.68382683826837,-4.480927021288792],[122.66942669426697,-4.4589755167803276],[122.66942669426697,-4.431958280462197],[122.64062640626406,-4.408318198683844],[122.59742597425975,-4.396498157794667],[122.56502565025653,-4.4066296214139555],[122.53262532625325,-4.428581125922435],[122.49662496624967,-4.43533543500196],[122.46422464224645,-4.430269703192309],[122.43182431824317,-4.416761085033258],[122.39222392223922,-4.438712589541723],[122.34902349023491,-4.452221207700788],[122.3058230582306,-4.46235267132009],[122.2410224102241,-4.465729825859853],[122.23382233822338,-4.467418403129727],[122.22662226622265,-4.4724841349393785],[122.20862208622088,-4.484304175828555],[122.19782197821979,-4.489369907638206],[122.17622176221761,-4.496124216717746],[122.15822158221584,-4.509632834876797],[122.15462154621548,-4.513009989416574],[122.11502115021153,-4.518075721226211],[122.1078210782108,-4.519764298496099],[122.08622086220862,-4.543404380274453],[122.06462064620649,-4.5822416574817595],[122.04662046620467,-4.626144666498703],[122.03942039420394,-4.663293366436122],[122.04302043020431,-4.70719637545308],[122.06102061020613,-4.74265649812061],[122.08262082620826,-4.76967373443874],[122.1078210782108,-4.793313816217093],[122.11142111421117,-4.795002393486982],[122.12942129421293,-4.800068125296619],[122.12942129421293,-4.808511011646033],[122.11142111421117,-4.813576743455684],[122.08982089820898,-4.8372168252340515],[122.07902079020789,-4.8422825570436885],[122.0538205382054,-4.843971134313577],[122.01062010620109,-4.854102597932865],[121.99261992619927,-4.855791175202754],[121.88821888218882,-4.845659711583465],[121.87021870218706,-4.840593979773814],[121.84141841418415,-4.822019629805098],[121.82341823418233,-4.813576743455684],[121.80901809018093,-4.813576743455684],[121.79101791017911,-4.818642475265335],[121.76941769417698,-4.822019629805098],[121.75141751417516,-4.8152653207255725],[121.74421744217443,-4.8152653207255725],[121.74061740617407,-4.825396784344861],[121.73341733417334,-4.828773938884638],[121.72621726217261,-4.8321510934244],[121.71541715417158,-4.835528247964163],[121.70461704617048,-4.835528247964163],[121.68661686616866,-4.822019629805098],[121.65781657816581,-4.786559507137568],[121.63981639816399,-4.779805198058028],[121.62541625416253,-4.7764280435182656],[121.56781567815682,-4.752787961739912],[121.55341553415536,-4.744345075390498],[121.50301503015032,-4.675113407325313],[121.49941499414996,-4.663293366436122],[121.4958149581496,-4.6616047891662475],[121.49221492214923,-4.6616047891662475],[121.48861488614887,-4.6616047891662475],[121.4850148501485,-4.656539057356596],[121.47781477814777,-4.622767511958941],[121.48141481414814,-4.580553080211871],[121.49941499414996,-4.499501371257509],[121.52101521015209,-4.440401166811611],[121.52821528215281,-4.398186735064542],[121.53181531815318,-4.355972303317472],[121.52821528215281,-4.278297748902872],[121.53181531815318,-4.247903358044979],[121.53181531815318,-4.237771894425691],[121.53541535415354,-4.231017585346152],[121.54621546215463,-4.225951853536515],[121.56061560615609,-4.225951853536515],[121.56421564215646,-4.23270616261604],[121.56061560615609,-4.242837626235328],[121.55341553415536,-4.252969089854631],[121.58581585815858,-4.236083317155803],[121.61821618216186,-4.166851649090617],[121.6290162901629,-4.087488517406129],[121.59301593015931,-4.040208353849408],[121.55341553415536,-4.021634003880706],[121.4310143101431,-3.999682499372227],[121.35541355413557,-3.96759953124446],[121.3518135181352,-3.9574680676251575],[121.33741337413375,-3.9439594494660923],[121.33381333813338,-3.933827985846804],[121.33021330213302,-3.9236965222275018],[121.32661326613265,-3.911876481338325],[121.31221312213125,-3.8966792859093857],[121.2978129781298,-3.8865478222900833],[121.28341283412834,-3.889924976829846],[121.27261272612725,-3.89836786317926],[121.25461254612549,-3.903433594988911],[121.24741247412476,-3.8949907086394973],[121.25101251012512,-3.8747277814009067],[121.26181261812621,-3.8510876996225534],[121.26541265412658,-3.8342019269237255],[121.25461254612549,-3.815627576955009],[121.24021240212403,-3.8071846906055953],[121.20061200612008,-3.8071846906055953],[121.17541175411753,-3.8038075360658326],[121.16101161011613,-3.7953646497164186],[121.10341103411037,-3.7295101361909957],[120.89460894608948,-3.5387009046942524],[120.87300873008729,-3.498175050217071],[120.86940869408693,-3.4694692366290525],[120.86940869408693,-3.457649195739876],[120.86940869408693,-3.445829154850699],[120.88020880208802,-3.42387765034222],[120.88020880208802,-3.413746186722932],[120.89100891008911,-3.38841752767469],[120.90900909009093,-3.3681546004360996],[120.93060930609306,-3.347891673197509],[120.94860948609488,-3.3276287459589184],[120.96660966609664,-3.285414314211849],[120.97740977409774,-3.2668399642431325],[120.99540995409956,-3.260085655163607],[121.00621006210065,-3.2567085006238443],[121.01701017010168,-3.251642768814193],[121.02421024210241,-3.243199882464779],[121.02421024210241,-3.2347569961153653],[121.03141031410314,-3.2263141097659513],[121.03861038610387,-3.2212483779563],[121.05301053010533,-3.216182646146649],[121.06021060210605,-3.211116914337012],[121.06741067410672,-3.194231141638184],[121.07461074610745,-3.140196669001938],[121.07461074610745,-3.114868009953696],[121.06741067410672,-3.0912279281753285],[121.06381063810642,-3.079407887286152],[121.05661056610569,-3.0743421554765007],[121.04941049410496,-3.065899269127101],[121.05301053010533,-3.049013496428273],[121.06741067410672,-3.021996260110143],[121.06741067410672,-3.0084876419510778],[121.07821078210782,-2.9899132919823757],[121.08181081810818,-2.978093251093199],[121.07821078210782,-2.9358788193461294],[121.08541085410855,-2.925747355726827],[121.08901089010891,-2.903795851218362],[121.08181081810818,-2.8717128830905807],[121.07101071010709,-2.85144995585199],[121.06021060210605,-2.8615814194712925],[121.05301053010533,-2.8615814194712925],[121.04941049410496,-2.85144995585199],[121.04221042210423,-2.824432719533874],[121.03141031410314,-2.8143012559145717],[121.02421024210241,-2.8227441422639856],[121.01701017010168,-2.843007069502576],[121.01341013410138,-2.8480728013122274],[121.00261002610029,-2.8480728013122274],[120.9918099180992,-2.841318492232702],[120.98820988209883,-2.832875605883288],[120.98460984609846,-2.824432719533874],[120.9918099180992,-2.810924101374809],[121.00621006210065,-2.8075469468350462],[121.02061020610205,-2.802481215025395],[121.02421024210241,-2.7788411332470417],[121.04221042210423,-2.7839068650566787],[121.05301053010533,-2.7771525559771533],[121.06741067410672,-2.7518238969289115],[121.07101071010709,-2.7552010514686742],[121.07461074610745,-2.7568896287385627],[121.07821078210782,-2.7568896287385627],[121.08181081810818,-2.758578206008437],[121.04941049410496,-2.6994780015625537],[121.0350103501035,-2.6893465379432513],[121.0350103501035,-2.6859693834034886],[121.02781027810278,-2.679215074323963],[121.01701017010168,-2.665706456164898],[121.00621006210065,-2.660640724355247],[120.88380883808838,-2.6420663743865305],[120.87300873008729,-2.643754951656419],[120.86220862208626,-2.6471321061961817],[120.85500855008553,-2.6454435289263074],[120.84420844208444,-2.6386892198467677],[120.83340833408334,-2.6285577562274796],[120.82260822608225,-2.62180344714794],[120.81180811808122,-2.618426292608177],[120.80100801008012,-2.6150491380684144],[120.77580775807758,-2.6150491380684144],[120.76140761407618,-2.62180344714794],[120.74700747007472,-2.630246333497354],[120.73260732607326,-2.635312065307005],[120.71100711007114,-2.6370006425768935],[120.69660696606968,-2.6420663743865305],[120.64260642606428,-2.670772187974549],[120.62820628206282,-2.674149342514312],[120.60300603006033,-2.675837919784186],[120.58500585005851,-2.682592228863726],[120.57420574205742,-2.6961008470227767],[120.56700567005669,-2.7129866197216046],[120.55980559805602,-2.731560969690321],[120.5418054180542,-2.7467581651192603],[120.29340293402936,-2.903795851218362],[120.25380253802541,-2.9358788193461294],[120.23220232202323,-2.9510760147750688],[120.20340203402037,-2.9578303238546084],[120.2106021060211,-2.969650364743785],[120.2250022500225,-2.988224714712487],[120.22860228602286,-3.0017333328715523],[120.23220232202323,-3.013553373760729],[120.23580235802359,-3.027061991919794],[120.23940239402395,-3.035504878269208],[120.24660246602468,-3.0388820328089707],[120.26100261002614,-3.0507020736981474],[120.27540275402754,-3.1030479690645194],[120.28620286202863,-3.1216223190332215],[120.2790027900279,-3.1249994735729842],[120.27540275402754,-3.1300652053826354],[120.26460264602645,-3.141885246271812],[120.28620286202863,-3.1621481735104027],[120.30780307803082,-3.1739682143995935],[120.35460354603549,-3.190853987098407],[120.38340383403835,-3.2094283370671235],[120.38700387003871,-3.2144940688767747],[120.39060390603908,-3.2229369552261886],[120.39420394203944,-3.2364455733852537],[120.40140401404017,-3.251642768814193],[120.4086040860409,-3.260085655163607],[120.42660426604266,-3.2567085006238443],[120.4230042300423,-3.2668399642431325],[120.4086040860409,-3.2837257369419603],[120.40140401404017,-3.2972343551010255],[120.40500405004053,-3.3073658187203137],[120.4086040860409,-3.3191858596095045],[120.4086040860409,-3.3293173232287927],[120.40140401404017,-3.3462030959276206],[120.39420394203944,-3.3816632185951647],[120.3978039780398,-3.391794682214453],[120.40500405004053,-3.4120576094530435],[120.4086040860409,-3.42387765034222],[120.4086040860409,-3.4340091139615225],[120.40140401404017,-3.449206309390462],[120.3978039780398,-3.501552204756834],[120.40140401404017,-3.518437977455662],[120.41940419404193,-3.564029563742494],[120.4230042300423,-3.5826039137111962],[120.4230042300423,-3.6670327772053355],[120.42660426604266,-3.673787086284861],[120.44460444604448,-3.690672858983689],[120.44820448204484,-3.7295101361909957],[120.43020430204302,-3.766658836128414],[120.38700387003871,-3.827447617844186],[120.37260372603726,-3.8612191632418416],[120.35820358203586,-3.8949907086394973],[120.35460354603549,-3.9304508313070414],[120.35100351003513,-4.100997135565194],[120.35460354603549,-4.116194330994134],[120.37620376203762,-4.153343030931552],[120.37980379803798,-4.166851649090617],[120.37980379803798,-4.207377503567798],[120.37980379803798,-4.217508967187101],[120.37620376203762,-4.237771894425691],[120.37260372603726,-4.249591935314868],[120.37620376203762,-4.263100553473933],[120.38700387003871,-4.293494944331812],[120.38700387003871,-4.328955066999356],[120.36180361803616,-4.386366694175365],[120.36900369003689,-4.425203971382672],[120.39060390603908,-4.452221207700788],[120.40140401404017,-4.4724841349393785],[120.3978039780398,-4.489369907638206],[120.39420394203944,-4.506255680337034],[120.39420394203944,-4.531584339385276],[120.3978039780398,-4.556912998433518],[120.40140401404017,-4.573798771132346],[120.41580415804157,-4.592373121101048],[120.44460444604448,-4.626144666498703],[120.44820448204484,-4.646407593737294],[120.44820448204484,-4.656539057356596],[120.43740437404375,-4.66498194370601],[120.41940419404193,-4.68017913913495],[120.41580415804157,-4.688622025484364],[120.3978039780398,-4.786559507137568],[120.39420394203944,-4.810199588915921],[120.38700387003871,-4.828773938884638],[120.36540365403653,-4.835528247964163],[120.3438034380344,-4.8372168252340515],[120.32580325803258,-4.8422825570436885],[120.30780307803082,-4.870988370631693],[120.30780307803082,-4.992565934063251],[120.28260282602827,-5.110766342955046],[120.27540275402754,-5.134406424733399],[120.26460264602645,-5.149603620162338],[120.30780307803082,-5.2120809791479985],[120.31500315003149,-5.228966751846826],[120.32940329403294,-5.269492606324022],[120.33660336603367,-5.283001224483073],[120.37980379803798,-5.337035697119319],[120.38700387003871,-5.3522328925482725],[120.39060390603908,-5.372495819786863],[120.43380433804339,-5.527844928616062],[120.43740437404375,-5.564993628553495],[120.44100441004412,-5.573436514902895],[120.45900459004594,-5.602142328490913],[120.46260462604624,-5.620716678459615],[120.45900459004594,-5.625782410269267],[120.43020430204302,-5.61396236938009],[120.41580415804157,-5.617339523919853],[120.37980379803798,-5.5768136694426715],[120.37260372603726,-5.564993628553495],[120.37260372603726,-5.553173587664304],[120.35460354603549,-5.522779196806425],[120.34740347403476,-5.514336310457011],[120.32220322203221,-5.50927057864736],[120.29700297002972,-5.519402042266648],[120.27180271802717,-5.5329106604257134],[120.25020250202505,-5.541353546775127],[120.20700207002074,-5.548107855854667],[120.19980199802,-5.549796433124541],[120.17460174601746,-5.568370783093258],[120.1566015660157,-5.5768136694426715],[120.11700117001169,-5.588633710331848],[120.09900099000993,-5.595388019411374],[120.09540095400956,-5.5903222876017225],[120.08820088200883,-5.588633710331848],[120.07380073800738,-5.588633710331848],[120.00900009000094,-5.578502246712546],[119.99819998199985,-5.57174793763302],[119.98739987399875,-5.564993628553495],[119.9621996219962,-5.563305051283606],[119.93339933399335,-5.564993628553495],[119.91539915399153,-5.568370783093258],[119.89739897398977,-5.580190823982434],[119.85779857798582,-5.620716678459615],[119.85059850598509,-5.630848142078918],[119.84699846998473,-5.652799646587383],[119.84339843398436,-5.661242532936797],[119.82179821798218,-5.679816882905513],[119.80739807398078,-5.6916369237946896],[119.77139771397714,-5.701768387413992],[119.72459724597246,-5.703456964683866],[119.67779677796779,-5.696702655604341],[119.64899648996493,-5.678128305635624],[119.64539645396457,-5.659553955666922],[119.6417964179642,-5.637602451158443],[119.63459634596347,-5.617339523919853],[119.60939609396092,-5.608896637570439],[119.59139591395916,-5.620716678459615],[119.58059580595807,-5.6426681829680945],[119.56979569795698,-5.65617680112716],[119.55179551795521,-5.6426681829680945],[119.54819548195485,-5.632536719348792],[119.54819548195485,-5.608896637570439],[119.54459544595449,-5.595388019411374],[119.53739537395376,-5.5852565557920855],[119.53019530195303,-5.580190823982434],[119.51939519395194,-5.57174793763302],[119.51579515795157,-5.558239319473955],[119.50139501395017,-5.556550742204081],[119.47259472594726,-5.561616474013718],[119.4545945459455,-5.573436514902895],[119.4689946899469,-5.595388019411374],[119.44739447394477,-5.595388019411374],[119.43299432994331,-5.588633710331848],[119.42579425794258,-5.573436514902895],[119.42219422194222,-5.55148501039443],[119.42579425794258,-5.541353546775127],[119.43299432994331,-5.5329106604257134],[119.43659436594368,-5.521090619536537],[119.43299432994331,-5.510959155917249],[119.42579425794258,-5.500827692297946],[119.41499414994149,-5.48225334232923],[119.37899378993791,-5.433284601502635],[119.36099360993609,-5.396135901565216],[119.35379353793542,-5.355610047088035],[119.36099360993609,-5.308329883531314],[119.36819368193682,-5.276246915403547],[119.37539375393754,-5.2120809791479985],[119.37899378993791,-5.191818051909408],[119.39339393393936,-5.156357929241878],[119.40419404194046,-5.124274961114111],[119.40779407794076,-5.115832074764697],[119.41859418594186,-5.109077765685157],[119.43659436594368,-5.098946302065869],[119.44739447394477,-5.092191992986329],[119.4581945819458,-5.073617643017627],[119.46539465394653,-5.055043293048911],[119.4689946899469,-5.019583170381381],[119.48339483394835,-4.985811624983725],[119.51939519395194,-4.916579956918525],[119.52659526595266,-4.882808411520884],[119.49059490594908,-4.7544765390097865],[119.49779497794981,-4.717327839072368],[119.50139501395017,-4.713950684532605],[119.51939519395194,-4.703819220913317],[119.52659526595266,-4.698753489103666],[119.53739537395376,-4.666670520975899],[119.54099540995412,-4.653161902816834],[119.58419584195843,-4.578864502941997],[119.59139591395916,-4.563667307513043],[119.60579605796062,-4.420138239573021],[119.62379623796238,-4.352595148777709],[119.62739627396274,-4.313757871570402],[119.62739627396274,-4.303626407951114],[119.62019620196202,-4.286740635252286],[119.62019620196202,-4.276609171632984],[119.61659616596165,-4.264789130743807],[119.60219602196025,-4.251280512584742],[119.59859598595989,-4.242837626235328],[119.60579605796062,-4.222574698996738],[119.62379623796238,-4.183737421789445],[119.62739627396274,-4.163474494550854],[119.62019620196202,-4.121260062803785],[119.61299612996129,-4.112817176454371],[119.60939609396092,-4.10775144464472],[119.60579605796062,-4.104374290104957],[119.60939609396092,-4.09255424921578],[119.61659616596165,-4.077357053786827],[119.62019620196202,-4.0672255901675385],[119.62019620196202,-4.057094126548236],[119.62019620196202,-4.038519776579534],[119.62019620196202,-4.026699735690343],[119.6417964179642,-3.9929281902927016],[119.64539645396457,-3.977730994863748],[119.63099630996311,-3.972665263054097],[119.60579605796062,-3.976042417593874],[119.60219602196025,-3.986173881213162],[119.59859598595989,-4.004748231181878],[119.59499594995953,-4.026699735690343],[119.5877958779588,-4.008125385721641],[119.58419584195843,-3.9709766857842226],[119.56619566195661,-3.9405822949263296],[119.51939519395194,-3.8257590405743116],[119.49779497794981,-3.79367607244653],[119.48699486994872,-3.7548387952392375],[119.4581945819458,-3.7143129407620563],[119.4545945459455,-3.700804322602991],[119.4689946899469,-3.670409931745098],[119.48339483394835,-3.6146868818389777],[119.49419494194944,-3.59780110914015],[119.50859508595084,-3.577538181901545],[119.51579515795157,-3.5623409864726057],[119.51219512195121,-3.5471437910436663],[119.49779497794981,-3.4947978956772943],[119.49419494194944,-3.488043586597769],[119.48699486994872,-3.4829778547881176],[119.46539465394653,-3.4779121229784664],[119.4581945819458,-3.471157813898941],[119.43299432994331,-3.4745349684387037],[119.40419404194046,-3.4610263502796386],[119.37179371793718,-3.4424520003109365],[119.34659346593469,-3.43063195942176],[119.31059310593105,-3.4255662276121086],[119.29619296192965,-3.427254804881997],[119.29259292592928,-3.4340091139615225],[119.28539285392856,-3.445829154850699],[119.24579245792461,-3.476223545708592],[119.23139231392315,-3.484666432058006],[119.20979209792097,-3.4897321638676573],[119.1917919179192,-3.4863550093278803],[119.17739177391775,-3.4812892775182434],[119.15939159391593,-3.4779121229784664],[119.14139141391416,-3.4812892775182434],[119.11619116191162,-3.4998636274869455],[119.09819098190985,-3.5049293592965967],[119.02619026190263,-3.509995091106248],[118.99738997389977,-3.5251922865351872],[119.00459004590044,-3.558963831932843],[118.99378993789941,-3.5572752546629545],[118.97938979389795,-3.542078059234015],[118.96858968589686,-3.5403894819641266],[118.96138961389613,-3.545455213773778],[118.9505895058951,-3.5690952955521453],[118.939789397894,-3.5741610273617823],[118.92538925389255,-3.5657181410123684],[118.91818918189182,-3.5471437910436663],[118.87858878588787,-3.4424520003109365],[118.86058860588605,-3.4120576094530435],[118.84978849788502,-3.3901061049445786],[118.84258842588429,-3.3681546004360996],[118.83898838988392,-3.347891673197509],[118.84258842588429,-3.3293173232287927],[118.84978849788502,-3.312431550529965],[118.85338853388532,-3.295545777831137],[118.83538835388356,-3.260085655163607],[118.82458824588247,-3.1925425643682956],[118.81738817388174,-3.172279637129705],[118.81018810188101,-3.1621481735104027],[118.80298802988028,-3.1570824417007657],[118.79218792187925,-3.1520167098911145],[118.78138781387815,-3.1435738235417006],[118.77778777787779,-3.131753782652524],[118.77418774187743,-3.1216223190332215],[118.7669876698767,-3.1030479690645194],[118.76338763387633,-3.0912279281753285],[118.7669876698767,-3.084473619095803],[118.78498784987852,-3.0642106918572125],[118.79218792187925,-3.06083353731745],[118.79938799387998,-3.062522114587324],[118.8209882098821,-3.070965000936738],[118.83538835388356,-3.0743421554765007],[118.84978849788502,-3.0675878463969752],[118.85338853388532,-3.05407922823791],[118.85698856988569,-2.973027519283548],[118.86418864188641,-2.942633128425655],[118.88218882188823,-2.9240587784569527],[118.8857888578886,-2.9105501602978876],[118.88938889388896,-2.881844346709883],[118.8857888578886,-2.8700243058207064],[118.88218882188823,-2.8615814194712925],[118.87138871388714,-2.854827110391753],[118.86058860588605,-2.8480728013122274],[118.83538835388356,-2.841318492232702],[118.81378813788137,-2.8446956467724647],[118.77058770587706,-2.8615814194712925],[118.77058770587706,-2.8396299149628135],[118.75978759787597,-2.797415483215744],[118.7561875618756,-2.775463978707265],[118.75978759787597,-2.7653325150879766],[118.77418774187743,-2.745069587849386],[118.77778777787779,-2.7349381242300836],[118.77778777787779,-2.6893465379432513],[118.78138781387815,-2.6724607652444234],[118.79218792187925,-2.6505092607359444],[118.80658806588065,-2.630246333497354],[118.8209882098821,-2.62180344714794],[118.84258842588429,-2.626869178957591],[118.85698856988569,-2.6420663743865305],[118.87138871388714,-2.6538864152757213],[118.89298892988933,-2.6555749925455956],[118.91458914589145,-2.64882068346607],[118.95778957789577,-2.618426292608177],[118.98298982989832,-2.5981633653695866],[119.00459004590044,-2.5846547472105215],[119.01539015390154,-2.577900438130996],[119.02259022590226,-2.5677689745116936],[119.02979029790299,-2.5323088518441637],[119.04779047790481,-2.512045924605573],[119.06579065790658,-2.503603038256159],[119.0837908379084,-2.4951601519067452],[119.13419134191344,-2.454634297429564],[119.14139141391416,-2.442814256540373],[119.1377913779138,-2.380336897554713],[119.13059130591307,-2.3550082385064712],[119.12699126991271,-2.2553821795833926],[119.13059130591307,-2.243562138694216],[119.1377913779138,-2.2317420978050393],[119.14139141391416,-2.2165449023761],[119.13419134191344,-2.203036284217035],[119.17019170191702,-2.1490018115807885],[119.18459184591848,-2.120295997992784],[119.2169921699217,-2.010538475450403],[119.23499234992352,-1.9818326618623985],[119.26379263792637,-1.9632583118936964],[119.28899288992892,-1.9581925800840452],[119.30339303393038,-1.961569734623808],[119.31779317793178,-1.966635466433459],[119.3357933579336,-1.9700126209732218],[119.34659346593469,-1.9598811573539336],[119.35379353793542,-1.9345524983056919],[119.36819368193682,-1.84674648027179],[119.36819368193682,-1.8332378621127248],[119.36459364593645,-1.8281721303030736],[119.36099360993609,-1.8247949757633108],[119.35019350193505,-1.816352089413897],[119.3357933579336,-1.7977777394451806],[119.32859328593287,-1.780891966746367],[119.30699306993068,-1.6947745259823392],[119.30699306993068,-1.6525600942352696],[119.31059310593105,-1.6306085897268048],[119.32859328593287,-1.5934598897893864],[119.33219332193323,-1.5731969625507816],[119.31059310593105,-1.503965294485596],[119.30339303393038,-1.4938338308663077],[119.29619296192965,-1.4110935446420427],[119.29619296192965,-1.4060278128324057],[119.29619296192965,-1.399273503752866],[119.29979299793001,-1.3874534628636894],[119.30699306993068,-1.380699153784164],[119.32859328593287,-1.3604362265455734],[119.33219332193323,-1.350304762926271],[119.33219332193323,-1.3300418356876804],[119.31419314193141,-1.284450249400848],[119.31419314193141,-1.2456129721935412],[119.32859328593287,-1.2152185813356624],[119.35019350193505,-1.1898899222874206],[119.37539375393754,-1.16962699504883],[119.38259382593827,-1.1578069541596392],[119.389793897939,-1.1459869132704625],[119.40059400594009,-1.1341668723812859],[119.41139411394113,-1.1291011405716347],[119.42939429394295,-1.1240354087619977],[119.4437944379444,-1.1122153678728068],[119.4545945459455,-1.0970181724438675],[119.4581945819458,-1.0581808952365606],[119.47259472594726,-1.0210321952991421],[119.48339483394835,-0.9636205681231331],[119.49059490594908,-0.9467347954243053],[119.50139501395017,-0.9315375999953659],[119.50859508595084,-0.9180289818363008],[119.51939519395194,-0.8775031273591196],[119.52659526595266,-0.8606173546602918],[119.53739537395376,-0.8504858910409894],[119.56619566195661,-0.8336001183421615],[119.57339573395734,-0.8302229638023988],[119.5877958779588,-0.8200915001831106],[119.59859598595989,-0.7947628411348688],[119.60219602196025,-0.7913856865951061],[119.63459634596347,-0.777877068436041],[119.68139681396815,-0.7373512139588598],[119.65979659796596,-0.712022554910618],[119.65619656196566,-0.7069568231009669],[119.65979659796596,-0.6968253594816645],[119.67059670596706,-0.6883824731322505],[119.69219692196924,-0.6782510095129624],[119.70299702997033,-0.6664309686237857],[119.72459724597246,-0.6394137323056555],[119.73539735397355,-0.6343480004960043],[119.73539735397355,-0.6411023095755439],[119.74979749797501,-0.6782510095129624],[119.75699756997574,-0.7035796685612041],[119.79299792997932,-0.777877068436041],[119.81099810998109,-0.8336001183421615],[119.82539825398254,-0.8589287773904033],[119.84699846998473,-0.8741259728193569]]],[[[100.94680946809467,1.8259090817230827],[100.9432094320943,1.8411062771520221],[100.94680946809467,1.861369204390627],[100.94680946809467,1.8833207088990918],[100.93600936009364,1.9052722134075708],[100.92520925209254,1.9221579861063987],[100.91440914409145,1.9441094906148777],[100.90720907209072,1.98970107690171],[100.8856088560886,2.0369812404584167],[100.82440824408246,2.1163443721429047],[100.80280802808028,2.161935958429737],[100.79920799207991,2.209216121986458],[100.81360813608137,2.249741976463639],[100.84240842408423,2.280136367321532],[100.8856088560886,2.298710717290234],[100.90720907209072,2.298710717290234],[101.05121051210511,2.2919564082107087],[101.05841058410584,2.280136367321532],[101.05481054810548,2.241299090114225],[101.06561065610657,2.219347585605746],[101.18081180811811,2.145050185730909],[101.29961299612995,2.047112704077719],[101.31761317613177,2.02516119956924],[101.3248132481325,2.0015211177908867],[101.32841328413286,1.9812581905522961],[101.3248132481325,1.9390437588052265],[101.32841328413286,1.9170922542967475],[101.35001350013499,1.8596806271207384],[101.3788137881379,1.773563186356725],[101.39681396813967,1.7364144864193065],[101.42561425614258,1.7093972501011763],[101.49401494014938,1.6790028592432833],[101.53001530015302,1.6705599728938694],[101.56601566015661,1.65536277746493],[101.59121591215916,1.65536277746493],[101.67401674016742,1.6688713956239951],[101.710017100171,1.6705599728938694],[101.74961749617495,1.6621170865444554],[101.77841778417786,1.6435427365757533],[102.02322023220233,1.4375363096500564],[102.11682116821169,1.386878991553587],[102.14202142021423,1.3581731779655826],[102.15282152821527,1.3108930144088617],[102.1456214562146,1.2737443144714433],[102.1456214562146,1.2484156554232015],[102.15642156421563,1.236595614534025],[102.17442174421745,1.2315298827243737],[102.18882188821891,1.2180212645653086],[102.19602196021964,1.1994469145966065],[102.19962199621995,1.1808725646278901],[102.19242192421927,1.1048865874831648],[102.19242192421927,1.0660493102758721],[102.20682206822067,1.0238348785288025],[102.23922239222395,0.9816204467817329],[102.32202322023221,0.9174545105261984],[102.42642426424266,0.8043198334440547],[102.46242462424624,0.7739254425861617],[102.50922509225092,0.7502853608078084],[102.5308253082531,0.7418424744583945],[102.55242552425523,0.7384653199186317],[102.5956259562596,0.7367767426487433],[102.61722617226172,0.7384653199186317],[102.649626496265,0.7485967835379199],[102.66762667626676,0.7502853608078084],[102.7828278282783,0.7317110108390921],[102.87642876428765,0.7266452790294409],[102.91962919629196,0.7080709290607388],[102.95202952029524,0.6759879609329715],[103.05643056430563,0.5577875520411766],[103.08523085230854,0.515573120294107],[103.09243092430927,0.4699815340072746],[103.07443074430745,0.44296429768915857],[103.03843038430387,0.4210127931806795],[102.96282962829628,0.3872412477830238],[102.91962919629196,0.35684685692513085],[102.89802898028984,0.3450268160359542],[102.8620286202862,0.3365839296865403],[102.74682746827472,0.2774837252406428],[102.73242732427326,0.26566368435146615],[102.71442714427144,0.2572207980020522],[102.64602646026464,0.24202360257311284],[102.62802628026282,0.23358071622369891],[102.62082620826209,0.2302035616839362],[102.61362613626136,0.22176067533452226],[102.59202592025923,0.1863005526669781],[102.58122581225814,0.1812348208573411],[102.55602556025559,0.1863005526669781],[102.53802538025383,0.19980917082604321],[102.50202502025019,0.23695787076346164],[102.48762487624879,0.24202360257311284],[102.45882458824588,0.24708933438276404],[102.43722437224375,0.2487779116526383],[102.43002430024302,0.24708933438276404],[102.44082440824411,0.2386464480333501],[102.44802448024484,0.23695787076346164],[102.47322473224733,0.23695787076346164],[102.48042480424806,0.23358071622369891],[102.48762487624879,0.22851498441404772],[102.49482494824952,0.21669494352487106],[102.51642516425164,0.19305486174651776],[102.54522545225456,0.16941477996815024],[102.57762577625778,0.15928331634886206],[102.61362613626136,0.17448051177780144],[102.61722617226172,0.1812348208573411],[102.62802628026282,0.1964320162862805],[102.63162631626318,0.20149774809593168],[102.64602646026464,0.2099406344453456],[102.66762667626676,0.21838352079475953],[102.67842678426786,0.225137829874285],[102.69642696426968,0.23189213895381044],[102.74322743227435,0.22682640714417346],[102.76482764827648,0.22851498441404772],[102.81882818828188,0.2538436434622895],[102.88722887228874,0.26059795254181495],[102.9016290162902,0.2673522616213546],[102.97362973629737,0.31294384790818697],[102.99162991629919,0.31800957971783816],[103.00603006030059,0.3247638887973636],[103.05643056430563,0.3737326296239587],[103.07443074430745,0.3821755159733726],[103.09963099631,0.392306979592675],[103.12123121231213,0.3973727114023262],[103.14283142831431,0.40074986594208895],[103.1680316803168,0.4075041750216144],[103.18243182431826,0.4260785249903307],[103.20043200432008,0.4699815340072746],[103.2220322203222,0.4885558839759909],[103.27963279632797,0.4986873475952791],[103.30843308433083,0.5138845430242327],[103.33723337233374,0.5324588929929348],[103.36243362433623,0.5358360475326975],[103.39123391233915,0.5307703157230605],[103.420034200342,0.515573120294107],[103.48123481234813,0.48180157489645126],[103.54243542435427,0.43452141133974465],[103.58923589235894,0.37710978416372143],[103.6072360723607,0.3112552706382985],[103.6180361803618,0.3298296206070148],[103.62523625236253,0.339961084226303],[103.63603636036362,0.3450268160359542],[103.64683646836471,0.3450268160359542],[103.65403654036544,0.339961084226303],[103.66483664836647,0.334895352416666],[103.69003690036902,0.3264524660672521],[103.71163711637115,0.3112552706382985],[103.72963729637297,0.2926809206695964],[103.74403744037443,0.2774837252406428],[103.75843758437583,0.2386464480333501],[103.8016380163802,0.03432859837754165],[103.80883808838087,0.024197134758239258],[103.81243812438123,0.019131402948602272],[103.81243812438123,0.008999939329299877],[103.8016380163802,-0.007885833369527973],[103.7908379083791,-0.01295156517917917],[103.78003780037801,-0.01295156517917917],[103.75483754837552,-0.0112629879092907],[103.6720367203672,-0.018017296988816156],[103.66483664836647,-0.021394451528593095],[103.66483664836647,-0.0399688014972952],[103.65763657636575,-0.0450345333069464],[103.64323643236435,-0.04672311057683487],[103.63603636036362,-0.04841168784670913],[103.62883628836289,-0.04841168784670913],[103.62163621636216,-0.0450345333069464],[103.61083610836107,-0.036591646957532475],[103.60003600036003,-0.016328719718941898],[103.5928359283593,-0.0112629879092907],[103.58563585635858,-0.0112629879092907],[103.57843578435785,-0.014640142449053428],[103.56763567635676,-0.018017296988816156],[103.5640356403564,-0.024771606068355823],[103.56763567635676,-0.034903069687644006],[103.57483574835749,-0.036591646957532475],[103.58203582035821,-0.038280224227420945],[103.58563585635858,-0.0450345333069464],[103.58563585635858,-0.053477419656360325],[103.58203582035821,-0.06360888327566272],[103.57843578435785,-0.0737403468949509],[103.58563585635858,-0.09569185140342995],[103.57483574835749,-0.10413473775284388],[103.55683556835567,-0.11088904683236933],[103.54243542435427,-0.11426620137213206],[103.50643506435063,-0.11426620137213206],[103.49563495634959,-0.117643355911909],[103.48843488434886,-0.1311519740709599],[103.4848348483485,-0.1598577876589644],[103.46683466834668,-0.18349786943733193],[103.44163441634419,-0.20207221940603404],[103.41283412834127,-0.21726941483498763],[103.30123301233016,-0.2375323420735782],[103.26883268832688,-0.2577952693121688],[103.2868328683287,-0.2577952693121688],[103.31563315633156,-0.26286100112182],[103.33363333633338,-0.26454957839169424],[103.3516335163352,-0.25948384658204304],[103.38043380433805,-0.2476638056928664],[103.39843398433987,-0.24428665115310366],[103.42363423634237,-0.23415518753381548],[103.45963459634595,-0.2189579921048619],[103.48843488434886,-0.21220368302533643],[103.50283502835032,-0.23077803299403854],[103.49563495634959,-0.25441811477240606],[103.45603456034559,-0.28818966017006176],[103.44883448834491,-0.3152068964881778],[103.43803438034382,-0.33715840099665684],[103.40923409234091,-0.3489784418858335],[103.34443344433447,-0.36079848277501014],[103.34443344433447,-0.3675527918545356],[103.38043380433805,-0.3810614100136007],[103.40203402034024,-0.38443856455336345],[103.41643416434164,-0.377684255473838],[103.4308343083431,-0.37430710093407527],[103.48123481234813,-0.37430710093407527],[103.49203492034923,-0.3759956782039495],[103.50283502835032,-0.377684255473838],[103.51003510035099,-0.3827499872834892],[103.52083520835208,-0.3911928736329031],[103.53163531635317,-0.39794718271242857],[103.55323553235536,-0.39963575998231704],[103.58923589235894,-0.4249644190305588],[103.60003600036003,-0.43678445991973547],[103.5928359283593,-0.45704738715832605],[103.57483574835749,-0.47562173712702815],[103.54603546035463,-0.4891303552860933],[103.51723517235172,-0.49926181890539567],[103.41643416434164,-0.5178361688740978],[103.40203402034024,-0.5093932825246839],[103.39123391233915,-0.49081893255598175],[103.37323373233733,-0.4486045008089121],[103.38043380433805,-0.514459014334335],[103.38403384033842,-0.522901900683749],[103.40563405634055,-0.5414762506524653],[103.41283412834127,-0.5516077142717535],[103.41643416434164,-0.5752477960501068],[103.40923409234091,-0.6056421869079998],[103.39483394833951,-0.63265942322613],[103.37323373233733,-0.6478566186550694],[103.37323373233733,-0.6546109277345948],[103.38763387633878,-0.6664309686237857],[103.38403384033842,-0.6816281640527251],[103.36963369633696,-0.6934482049419017],[103.34443344433447,-0.6951367822117902],[103.3552335523355,-0.712022554910618],[103.37683376833769,-0.7272197503395574],[103.39843398433987,-0.7390397912287341],[103.43443434434346,-0.7457941003082595],[103.43803438034382,-0.7457941003082595],[103.45243452434528,-0.7508598321179107],[103.46323463234631,-0.7576141411974504],[103.46683466834668,-0.7677456048167386],[103.46323463234631,-0.7829428002456922],[103.44883448834491,-0.7998285729445058],[103.44163441634419,-0.813337191103571],[103.4848348483485,-0.804894304754157],[103.50643506435063,-0.804894304754157],[103.52803528035281,-0.8167143456433337],[103.5388353883539,-0.8302229638023988],[103.55323553235536,-0.8606173546602918],[103.5640356403564,-0.8741259728193569],[103.56763567635676,-0.8758145500892311],[103.58203582035821,-0.8741259728193569],[103.58563585635858,-0.8741259728193569],[103.58563585635858,-0.8775031273591196],[103.58923589235894,-0.8859460137085335],[103.5928359283593,-0.8876345909784078],[103.60003600036003,-0.8943889000579475],[103.6036360363604,-0.9028317864073614],[103.61443614436143,-0.9112746727567753],[103.63603636036362,-0.9197175591061892],[103.63963639636398,-0.9281604454556032],[103.64323643236435,-0.9382919090748914],[103.65043650436508,-0.9433576408845425],[103.69003690036902,-0.9484233726941937],[103.70443704437048,-0.9602434135833704],[103.7260372603726,-0.9855720726316122],[103.74043740437406,-0.9906378044412634],[103.76203762037619,-0.9923263817111376],[103.78003780037801,-0.9990806907906773],[103.79443794437947,-1.0092121544099655],[103.80523805238056,-1.0244093498389049],[103.81963819638196,-1.0632466270462118],[103.83043830438305,-1.0733780906655142],[103.83763837638378,-1.0328522361883188],[103.8556385563856,-1.0142778862196167],[103.87723877238773,-0.9990806907906773],[103.89883898838991,-0.9906378044412634],[103.94203942039422,-0.9821949180918494],[103.95643956439568,-0.9771291862821982],[104.02124021240212,-1.0075235771400912],[104.03924039240394,-1.0210321952991421],[104.05724057240576,-1.0277865043786818],[104.1076410764108,-1.029475081648556],[104.12564125641256,-1.0311636589184445],[104.19044190441906,-1.068312358855863],[104.21204212042119,-1.0733780906655142],[104.25524255242556,-1.0564923179666863],[104.26244262442623,-1.0497380088871466],[104.320043200432,-1.0328522361883188],[104.37764377643776,-1.0311636589184445],[104.38124381243813,-1.0412951225377327],[104.41004410044104,-1.1291011405716347],[104.39924399243995,-1.191578499557295],[104.40284402844031,-1.2304157767646018],[104.41004410044104,-1.262498744892369],[104.41364413644135,-1.2726302085116714],[104.44604446044463,-1.3047131766394386],[104.44964449644499,-1.3165332175286153],[104.45684456844572,-1.3790105765142755],[104.45324453244535,-1.5309825308037261],[104.46404464044639,-1.5731969625507816],[104.47844478444784,-1.6154113942978512],[104.5180451804518,-1.6880202169028138],[104.53244532445325,-1.7336118031896461],[104.53244532445325,-1.7403661122691716],[104.53604536045361,-1.7606290395077622],[104.53604536045361,-1.772449080396953],[104.53244532445325,-1.7842691212861297],[104.5180451804518,-1.8095977803343715],[104.51084510845112,-1.8214178212235481],[104.48924489244894,-1.8602550984308408],[104.48204482044821,-1.8822066029393199],[104.48564485644857,-1.8974037983682734],[104.48564485644857,-1.9109124165273244],[104.49644496444967,-1.9362410755755661],[104.51444514445143,-1.9193553028767383],[104.52884528845289,-1.8670094075103805],[104.53604536045361,-1.8535007893513153],[104.56484564845647,-1.856877943891078],[104.58644586445865,-1.8771408711296687],[104.60444604446047,-1.8990923756381477],[104.62244622446224,-1.90922383925745],[104.6368463684637,-1.9210438801466267],[104.62964629646297,-1.9497496937346313],[104.61524615246151,-1.9784555073226358],[104.60444604446047,-1.9953412800214636],[104.59364593645938,-2.0037841663708775],[104.58644586445865,-2.0122270527202915],[104.59004590045902,-2.018981361799817],[104.60444604446047,-2.018981361799817],[104.61884618846187,-2.010538475450403],[104.64404644046442,-1.9818326618623985],[104.65484654846551,-1.9700126209732218],[104.65844658446588,-1.9902755482118124],[104.66204662046624,-2.0122270527202915],[104.66204662046624,-2.0308014026889936],[104.67644676446764,-2.0392442890384075],[104.680046800468,-2.040932866308296],[104.68364683646837,-2.0426214435781844],[104.68724687246873,-2.0443100208480587],[104.6908469084691,-2.045998598117947],[104.69444694446946,-2.0443100208480587],[104.69804698046983,-2.0392442890384075],[104.70164701647019,-2.0341785572287705],[104.70524705247055,-2.032489979958882],[104.70884708847092,-2.0291128254191193],[104.73044730447305,-2.0122270527202915],[104.77364773647736,-1.997029857291352],[104.81324813248136,-2.0088498981805287],[104.84924849248495,-2.0375557117685332],[104.87444874448744,-2.079770143515603],[104.88164881648817,-2.125361729802435],[104.87444874448744,-2.164199007009728],[104.86004860048604,-2.199659129677272],[104.82764827648276,-2.2469392932339787],[104.7556475564756,-2.3296795794582437],[104.7448474484745,-2.3414996203474203],[104.72684726847268,-2.344876774887183],[104.68364683646837,-2.3465653521570715],[104.67284672846728,-2.3516310839667085],[104.65844658446588,-2.3651397021257736],[104.62244622446224,-2.3870912066342527],[104.60444604446047,-2.402288402063192],[104.67644676446764,-2.371894011205299],[104.70884708847092,-2.370205433935425],[104.73044730447305,-2.4090427111427175],[104.73044730447305,-2.4529457201596756],[104.72684726847268,-2.4782743792079174],[104.71244712447128,-2.512045924605573],[104.71244712447128,-2.5576375108924054],[104.70884708847092,-2.5745232835912333],[104.69804698046983,-2.582966169940647],[104.680046800468,-2.591409056290061],[104.66204662046624,-2.5981633653695866],[104.64404644046442,-2.6015405199093493],[104.63324633246333,-2.604917674449112],[104.60444604446047,-2.626869178957591],[104.56844568445683,-2.657263569815484],[104.55044550445507,-2.6842808061336],[104.53604536045361,-2.7197409288011443],[104.53604536045361,-2.758578206008437],[104.53604536045361,-2.7568896287385627],[104.53244532445325,-2.761955360548214],[104.53244532445325,-2.772086824167502],[104.5468454684547,-2.7602667832783254],[104.56124561245616,-2.7383152787698464],[104.57564575645756,-2.714675196991493],[104.57924579245793,-2.692723692483014],[104.58644586445865,-2.6775264970540746],[104.60084600846011,-2.6640178788950095],[104.63324633246333,-2.6420663743865305],[104.70164701647019,-2.6099834062587632],[104.73044730447305,-2.591409056290061],[104.75204752047523,-2.561014665432168],[104.770047700477,-2.4951601519067452],[104.770047700477,-2.473208647398266],[104.76644766447663,-2.4293056383813223],[104.770047700477,-2.4141084429523687],[104.78444784447845,-2.3955340929836666],[104.81684816848167,-2.3651397021257736],[104.83124831248313,-2.344876774887183],[104.84564845648458,-2.3026623431401134],[104.8636486364864,-2.2891537249810483],[104.88164881648817,-2.2840879931714113],[104.89964899648999,-2.2925308795208252],[104.91044910449108,-2.312793806759416],[104.91044910449108,-2.3381224658076576],[104.91044910449108,-2.3600739703161224],[104.92844928449284,-2.375271165745076],[104.9320493204932,-2.3516310839667085],[104.9428494284943,-2.336433888537769],[104.95724957249575,-2.327991002188355],[104.97884978849788,-2.3263024249184667],[105.00045000450007,-2.331368156728118],[105.01485014850152,-2.344876774887183],[105.02925029250292,-2.358385393046248],[105.04365043650438,-2.366828279395662],[105.05445054450547,-2.366828279395662],[105.0760507605076,-2.361762547586011],[105.08685086850869,-2.361762547586011],[105.09765097650978,-2.3651397021257736],[105.11205112051124,-2.3769597430149503],[105.1156511565116,-2.380336897554713],[105.13725137251373,-2.3769597430149503],[105.20205202052023,-2.3482539294269458],[105.22365223652235,-2.3431881976172946],[105.24525245252454,-2.3431881976172946],[105.27045270452703,-2.3465653521570715],[105.30645306453067,-2.3685168566655364],[105.33165331653316,-2.3735825884751875],[105.37845378453784,-2.375271165745076],[105.46845468454683,-2.388779783904127],[105.5116551165512,-2.3904683611740154],[105.53325533255332,-2.3955340929836666],[105.55125551255514,-2.402288402063192],[105.55125551255514,-2.4090427111427175],[105.54765547655478,-2.4090427111427175],[105.54045540455405,-2.4090427111427175],[105.53685536855369,-2.4090427111427175],[105.54765547655478,-2.4208627520319084],[105.56205562055624,-2.415797020222257],[105.580055800558,-2.402288402063192],[105.59085590855909,-2.3955340929836666],[105.60885608856091,-2.3955340929836666],[105.62325623256231,-2.402288402063192],[105.6340563405634,-2.415797020222257],[105.6340563405634,-2.442814256540373],[105.63045630456304,-2.4647657610488523],[105.61245612456128,-2.5052916155260334],[105.60885608856091,-2.528931697304401],[105.60885608856091,-2.5525717790827542],[105.61245612456128,-2.5745232835912333],[105.61965619656195,-2.594786210829824],[105.62685626856268,-2.6150491380684144],[105.63765637656377,-2.630246333497354],[105.65565655656559,-2.64882068346607],[105.67365673656735,-2.6623293016251353],[105.70245702457026,-2.670772187974549],[105.72405724057239,-2.6809036515938374],[105.73485734857348,-2.682592228863726],[105.75645756457567,-2.682592228863726],[105.76725767257676,-2.6842808061336],[105.7780577805778,-2.6893465379432513],[105.79605796057962,-2.7248066606107955],[105.79245792457925,-2.8615814194712925],[105.81045810458107,-2.898730119408711],[105.83925839258393,-2.930813087536478],[105.87885878858788,-2.9510760147750688],[105.92205922059219,-2.9578303238546084],[105.93285932859328,-2.95614174658472],[105.9508595085951,-2.9510760147750688],[105.9616596165962,-2.9510760147750688],[105.9760597605976,-2.9527645920449572],[105.99045990459905,-2.961207478394371],[106.00126001260014,-2.964584632934134],[106.0156601566016,-2.969650364743785],[106.030060300603,-2.983158982902836],[106.04446044460445,-3.0118647964908547],[106.05526055260555,-3.0473249191583847],[106.05526055260555,-3.128376628112747],[106.05886058860591,-3.1705910598598166],[106.06246062460627,-3.1790339462092305],[106.07686076860767,-3.2009854507177096],[106.08046080460804,-3.211116914337012],[106.08046080460804,-3.2229369552261886],[106.07326073260731,-3.2448884597346535],[106.07326073260731,-3.255019923353956],[106.06246062460627,-3.2668399642431325],[105.99765997659978,-3.300611509640788],[105.9616596165962,-3.3293173232287927],[105.92925929259292,-3.364777445896337],[105.90045900459006,-3.4069918776433923],[105.88245882458824,-3.4508948866603504],[105.82125821258211,-3.6720985090149867],[105.82485824858247,-3.7109357862222794],[105.85005850058502,-3.743018754350061],[105.93285932859328,-3.802118958795944],[105.9508595085951,-3.8342019269237255],[105.95445954459547,-3.8696620495912555],[105.93645936459365,-3.9101879040684366],[105.87165871658715,-4.004748231181878],[105.86085860858611,-4.0368311993096455],[105.85365853658539,-4.070602744707301],[105.8320583205832,-4.139834412772487],[105.82845828458284,-4.158408762741203],[105.81405814058144,-4.2394604716955655],[105.81405814058144,-4.273232017093221],[105.8176581765818,-4.3002492534113514],[105.82845828458284,-4.323889335189705],[105.84645846458466,-4.352595148777709],[105.85725857258575,-4.381300962365714],[105.85365853658539,-4.403252466874193],[105.86805868058684,-4.411695353223607],[105.87885878858788,-4.425203971382672],[105.89325893258933,-4.4589755167803276],[105.8968589685897,-4.455598362240551],[105.8968589685897,-4.453909784970676],[105.90045900459006,-4.452221207700788],[105.90765907659079,-4.469106980399616],[105.90045900459006,-4.511321412146685],[105.90765907659079,-4.546781534814215],[105.90405904059043,-4.565355884782932],[105.89325893258933,-4.585618812021522],[105.88965889658897,-4.60250458472035],[105.88965889658897,-4.619390357419178],[105.90405904059043,-4.6700476755156615],[105.88965889658897,-4.678490561865075],[105.88245882458824,-4.6970649118337775],[105.86805868058684,-4.781493775327917],[105.86805868058684,-4.825396784344861],[105.87165871658715,-4.849036866123228],[105.90765907659079,-4.909825647839],[105.91125911259115,-4.943597193236656],[105.8968589685897,-4.975680161364423],[105.87885878858788,-5.007763129492204],[105.86805868058684,-5.041534674889846],[105.86085860858611,-5.125963538383985],[105.86805868058684,-5.2120809791479985],[105.86445864458648,-5.255983988164957],[105.83925839258393,-5.337035697119319],[105.8320583205832,-5.382627283406151],[105.83925839258393,-5.468744724170179],[105.83565835658356,-5.492384805948532],[105.82485824858247,-5.531222083155839],[105.8320583205832,-5.592010864871611],[105.8320583205832,-5.6342252966186805],[105.82845828458284,-5.654488223857271],[105.81045810458107,-5.696702655604341],[105.80685806858071,-5.71865416011282],[105.79245792457925,-5.796328714527419],[105.78165781657816,-5.828411682655187],[105.7636576365764,-5.855428918973317],[105.73485734857348,-5.890889041640847],[105.73125731257312,-5.895954773450498],[105.72045720457203,-5.887511887101084],[105.72045720457203,-5.848674609893777],[105.71325713257136,-5.831788837194949],[105.68085680856808,-5.818280219035898],[105.60165601656018,-5.8098373326864845],[105.58725587255873,-5.791262982717768],[105.580055800558,-5.713588428303169],[105.56925569255691,-5.679816882905513],[105.54405544055442,-5.657865378397034],[105.54045540455405,-5.662931110206685],[105.52965529655296,-5.674751151095862],[105.5260552605526,-5.678128305635624],[105.51525515255156,-5.678128305635624],[105.50805508055083,-5.673062573825987],[105.5008550085501,-5.666308264746448],[105.49365493654938,-5.6646196874765735],[105.48285482854828,-5.659553955666922],[105.45045450454506,-5.624093832999378],[105.39645396453966,-5.5818794012523085],[105.37485374853748,-5.558239319473955],[105.31005310053104,-5.465367569630402],[105.28125281252812,-5.4451046423918115],[105.2488524885249,-5.458613260550877],[105.24525245252454,-5.478876187789467],[105.25605256052563,-5.517713464996774],[105.2488524885249,-5.537976392235365],[105.2488524885249,-5.541353546775127],[105.23805238052381,-5.568370783093258],[105.23445234452345,-5.57174793763302],[105.23085230852308,-5.5768136694426715],[105.22005220052199,-5.575125092172783],[105.20205202052023,-5.568370783093258],[105.18045180451804,-5.580190823982434],[105.18045180451804,-5.597076596681262],[105.19125191251914,-5.617339523919853],[105.1948519485195,-5.640979605698206],[105.1948519485195,-5.667996842016336],[105.19845198451986,-5.678128305635624],[105.20565205652059,-5.686571191985038],[105.21285212852132,-5.693325501064578],[105.21645216452168,-5.698391232874215],[105.20205202052023,-5.706834119223629],[105.17685176851768,-5.715277005573043],[105.15525155251555,-5.727097046462234],[105.15885158851592,-5.742294241891173],[105.17685176851768,-5.750737128240587],[105.20205202052023,-5.75411428278035],[105.21645216452168,-5.759180014590001],[105.20205202052023,-5.77437721001894],[105.1840518405184,-5.782820096368354],[105.16245162451628,-5.786197250908117],[105.130051300513,-5.7878858281780055],[105.11925119251191,-5.782820096368354],[105.07245072450723,-5.745671396430936],[104.89964899648999,-5.671373996556099],[104.83844838448385,-5.624093832999378],[104.79164791647918,-5.608896637570439],[104.770047700477,-5.592010864871611],[104.70884708847092,-5.526156351346188],[104.69804698046983,-5.516024887726886],[104.680046800468,-5.507582001377472],[104.64404644046442,-5.4974505377581835],[104.62244622446224,-5.490696228678644],[104.6116461164612,-5.478876187789467],[104.60444604446047,-5.478876187789467],[104.60804608046084,-5.483941919599118],[104.6116461164612,-5.499139115028058],[104.58644586445865,-5.499139115028058],[104.56844568445683,-5.500827692297946],[104.55044550445507,-5.50927057864736],[104.53244532445325,-5.5244677740762995],[104.52884528845289,-5.539664969505253],[104.53244532445325,-5.559927896743844],[104.68724687246873,-5.808148755416596],[104.69804698046983,-5.8452974553540145],[104.70164701647019,-5.887511887101084],[104.71244712447128,-5.909463391609563],[104.71604716047159,-5.92128343249874],[104.71244712447128,-5.928037741578265],[104.69804698046983,-5.929726318848154],[104.56124561245616,-5.928037741578265],[104.55404554045543,-5.919594855228851],[104.5576455764558,-5.884134732561321],[104.55404554045543,-5.860494650782954],[104.54324543245434,-5.841920300814252],[104.48924489244894,-5.796328714527419],[104.47844478444784,-5.789574405447894],[104.46404464044639,-5.782820096368354],[104.45684456844572,-5.772688632749066],[104.44964449644499,-5.752425705510461],[104.38484384843849,-5.6916369237946896],[104.36684366843667,-5.684882614715164],[104.29844298442987,-5.6426681829680945],[104.29124291242914,-5.625782410269267],[104.31284312843127,-5.605519483030676],[104.30204302043023,-5.5852565557920855],[104.25884258842592,-5.539664969505253],[104.23724237242374,-5.527844928616062],[104.22644226442264,-5.5244677740762995],[104.21564215642155,-5.522779196806425],[104.20844208442088,-5.521090619536537],[104.19404194041942,-5.514336310457011],[104.19044190441906,-5.505893424107597],[104.18324183241833,-5.494073383218421],[104.1760417604176,-5.483941919599118],[104.14364143641438,-5.473810455979816],[104.12564125641256,-5.461990415090639],[104.11124111241111,-5.4467932196617],[104.03924039240394,-5.3572986243579095],[103.99243992439926,-5.313395615340966],[103.9888398883989,-5.296509842642138],[103.99963999639999,-5.276246915403547],[104.00324003240036,-5.262738297244482],[103.99243992439926,-5.245852524545654],[103.97443974439744,-5.232343906386603],[103.96363963639635,-5.225589597307064],[103.94203942039422,-5.222212442767301],[103.92043920439204,-5.223901020037189],[103.90243902439028,-5.218835288227538],[103.89523895238955,-5.20194951552871],[103.89883898838991,-5.191818051909408],[103.90963909639095,-5.171555124670817],[103.91323913239131,-5.159735083781641],[103.91323913239131,-5.13947215654305],[103.91323913239131,-5.131029270193636],[103.90963909639095,-5.122586383844222],[103.89163891638918,-5.104012033875506],[103.83403834038342,-5.068551911207976],[103.80883808838087,-5.041534674889846],[103.7908379083791,-5.031403211270558],[103.77283772837728,-5.026337479460906],[103.74763747637479,-5.026337479460906],[103.7368373683737,-5.022960324921144],[103.7260372603726,-5.016206015841604],[103.7260372603726,-5.007763129492204],[103.7368373683737,-4.977368738634311],[103.73323733237333,-4.97230300682466],[103.7260372603726,-4.968925852284897],[103.71883718837188,-4.962171543205358],[103.70443704437048,-4.955417234125832],[103.69363693636939,-4.9520400795860695],[103.6828368283683,-4.955417234125832],[103.6720367203672,-4.962171543205358],[103.65403654036544,-4.9790573159041855],[103.62883628836289,-4.935154306887242],[103.6180361803618,-4.919957111458302],[103.5928359283593,-4.909825647839],[103.58563585635858,-4.909825647839],[103.56043560435603,-4.909825647839],[103.55323553235536,-4.908137070569111],[103.549635496355,-4.904759916029349],[103.549635496355,-4.901382761489586],[103.54243542435427,-4.898005606949823],[103.53523535235354,-4.889562720600409],[103.51723517235172,-4.876054102441344],[103.51003510035099,-4.869299793361819],[103.49923499234995,-4.8642340615521675],[103.48843488434886,-4.859168329742516],[103.4740347403474,-4.855791175202754],[103.46323463234631,-4.855791175202754],[103.44883448834491,-4.859168329742516],[103.43803438034382,-4.865922638822056],[103.42363423634237,-4.870988370631693],[103.41283412834127,-4.869299793361819],[103.40923409234091,-4.860856907012405],[103.39483394833951,-4.813576743455684],[103.38763387633878,-4.80513385710627],[103.37683376833769,-4.798379548026745],[103.35883358833587,-4.786559507137568],[103.34443344433447,-4.800068125296619],[103.33003330033301,-4.793313816217093],[103.31563315633156,-4.7764280435182656],[103.30483304833047,-4.734213611771196],[103.28323283232834,-4.715639261802494],[103.17163171631717,-4.6177017801492894],[103.04923049230496,-4.543404380274453],[102.91962919629196,-4.492747062177969],[102.90522905229051,-4.47754986674903],[102.89082890828911,-4.440401166811611],[102.87642876428765,-4.420138239573021],[102.70002700027004,-4.2698548625534585],[102.52722527225274,-4.1516544536616635],[102.36522365223652,-4.026699735690343],[102.34002340023403,-4.011502540261404],[102.31122311223112,-3.991239613022813],[102.29322293222936,-3.9659109539745714],[102.28242282422826,-3.9304508313070414],[102.28962289622899,-3.915253635878088],[102.30762307623075,-3.884859245020209],[102.31122311223112,-3.8645963177816043],[102.30402304023039,-3.8443333905430137],[102.27522275222753,-3.810561845145358],[102.26442264422644,-3.79367607244653],[102.26082260822608,-3.7818560315573535],[102.26082260822608,-3.7717245679380653],[102.26442264422644,-3.7649702588585257],[102.26442264422644,-3.758215949779],[102.25722257222571,-3.7463959088898235],[102.25002250022499,-3.7379530225404096],[102.24642246422468,-3.7278215589211072],[102.24282242822431,-3.7143129407620563],[102.23922239222395,-3.678852818094512],[102.23562235622359,-3.6585898908559216],[102.22122221222213,-3.643392695426982],[102.06642066420665,-3.550520945583429],[101.87561875618758,-3.4205004958024574],[101.63801638016383,-3.2499541915443046],[101.61281612816128,-3.224625532496063],[101.58401584015843,-3.1773453689393563],[101.56601566015661,-3.1621481735104027],[101.41841418414185,-2.9274359329967155],[101.40761407614076,-2.885221501249646],[101.32841328413286,-2.740003856039735],[101.29961299612995,-2.7079208879119676],[101.26361263612637,-2.682592228863726],[101.17721177211774,-2.6420663743865305],[101.1412114121141,-2.616737715338303],[101.10521105211052,-2.58634332448041],[101.0188101881019,-2.468142915588615],[100.92160921609218,-2.3330567339980064],[100.83880838808392,-2.167576161549505],[100.83520835208355,-2.159133275200091],[100.83160831608319,-2.1405589252313746],[100.84600846008459,-2.1186074207228955],[100.87840878408787,-2.079770143515603],[100.8856088560886,-2.0375557117685332],[100.88200882008823,-1.9953412800214636],[100.87120871208714,-1.953126848274394],[100.86400864008641,-1.9126009937972128],[100.85680856808568,-1.8923380665586222],[100.84240842408423,-1.8703865620501432],[100.78480784807851,-1.816352089413897],[100.77760777607779,-1.8062206257945945],[100.77040770407706,-1.7960891621753063],[100.76320763207633,-1.772449080396953],[100.72000720007202,-1.698151680522102],[100.66960669606698,-1.6390514760762187],[100.65520655206552,-1.6170999715677397],[100.64440644406443,-1.5934598897893864],[100.63720637206376,-1.5512454580423167],[100.6336063360634,-1.5073424490253586],[100.6228062280623,-1.4972109854060704],[100.58320583205835,-1.460062285468652],[100.5688056880569,-1.4431765127698242],[100.57600576005763,-1.438110780960173],[100.57960579605799,-1.4313564718806475],[100.58320583205835,-1.416159276451694],[100.57240572405726,-1.40771639010228],[100.5688056880569,-1.40771639010228],[100.57240572405726,-1.4043392355625173],[100.57600576005763,-1.3975849264829918],[100.58320583205835,-1.394207771943229],[100.57600576005763,-1.3553704947359222],[100.5688056880569,-1.3300418356876804],[100.56160561605617,-1.319910372068378],[100.54000540005399,-1.314844640258741],[100.50040500405004,-1.2895159812104993],[100.47880478804791,-1.2827616721309596],[100.47520475204755,-1.2776959403213226],[100.46440464404645,-1.2675644767020202],[100.45720457204573,-1.2641873221622575],[100.45720457204573,-1.2658758994321317],[100.45360453604536,-1.2692530539719087],[100.450004500045,-1.2726302085116714],[100.4248042480425,-1.2760073630514341],[100.41400414004141,-1.2743187857815457],[100.40680406804069,-1.2641873221622575],[100.41040410404105,-1.2591215903526063],[100.4248042480425,-1.243924394923667],[100.43200432004323,-1.2337929313043645],[100.43200432004323,-1.2287271994947133],[100.43200432004323,-1.2067756949862485],[100.42840428404287,-1.1932670768271834],[100.38520385203856,-1.1544297996198765],[100.3708037080371,-1.1611841086994161],[100.36720367203674,-1.1510526450801137],[100.36720367203674,-1.1341668723812859],[100.3708037080371,-1.1206582542222208],[100.37440374403747,-1.117281099682458],[100.37800378003783,-1.1155925224125838],[100.3816038160382,-1.1122153678728068],[100.38520385203856,-1.103772481523393],[100.3816038160382,-1.0970181724438675],[100.3708037080371,-1.0733780906655142],[100.3816038160382,-1.068312358855863],[100.39240392403923,-1.0666237815859745],[100.40320403204032,-1.068312358855863],[100.41400414004141,-1.0733780906655142],[100.41760417604178,-1.0649352043161002],[100.41760417604178,-1.0564923179666863],[100.41760417604178,-1.0480494316172724],[100.41400414004141,-1.0396065452678585],[100.39240392403923,-1.0412951225377327],[100.3816038160382,-1.0311636589184445],[100.35280352803528,-0.9771291862821982],[100.34560345603455,-0.9095860954868868],[100.32760327603279,-0.8589287773904033],[100.30240302403024,-0.8167143456433337],[100.15840158401585,-0.66811954589366],[100.13320133201336,-0.6343480004960043],[100.09000090000899,-0.5566734460814047],[100.03600036000358,-0.487441778016219],[100,-0.45704738715832605],[99.9315993159932,-0.4097672236016052],[99.9207992079921,-0.39794718271242857],[99.90999909999101,-0.3759956782039495],[99.88839888398883,-0.3574213282352474],[99.84519845198452,-0.33209266918700564],[99.82359823598239,-0.3135183192182893],[99.8127981279813,-0.2949439692495872],[99.80919809198093,-0.27299246474110817],[99.80919809198093,-0.2476638056928664],[99.80559805598057,-0.2274008784542758],[99.79839798397984,-0.21558083756509916],[99.78759787597875,-0.20713795121568523],[99.77679776797771,-0.19531791032650858],[99.76599765997662,-0.18180929216744346],[99.75879758797589,-0.16830067400837834],[99.75519755197553,-0.15479205584932743],[99.75519755197553,-0.13790628315049958],[99.75879758797589,-0.11595477864202053],[99.76239762397626,-0.09569185140342995],[99.76599765997662,-0.07542892416483937],[99.76239762397626,-0.051788842386471856],[99.7479974799748,-0.02983733787800702],[99.69039690396903,0.02081998021847653],[99.63279632796326,0.08160876193426247],[99.61119611196114,0.09849453463307611],[99.53559535595355,0.14070896638014574],[99.48879488794887,0.15590616180909933],[99.44919449194492,0.16097189361873632],[99.4275942759428,0.16097189361873632],[99.40959409594097,0.16434904815851326],[99.39159391593915,0.1711033572380387],[99.37719377193775,0.18798912993686656],[99.35559355593557,0.225137829874285],[99.34119341193411,0.2386464480333501],[99.31599315993162,0.24202360257311284],[99.2979929799298,0.23695787076346164],[99.26199261992622,0.2200720980646338],[99.2439924399244,0.21669494352487106],[99.2331923319233,0.21669494352487106],[99.22239222392227,0.2200720980646338],[99.21159211592118,0.225137829874285],[99.20439204392045,0.23189213895381044],[99.19359193591936,0.2437121798430013],[99.189991899919,0.24540075711287557],[99.18279182791827,0.2437121798430013],[99.16839168391687,0.24202360257311284],[99.16119161191614,0.24540075711287557],[99.14319143191432,0.2589093752719407],[99.13959139591395,0.2622865298117034],[99.13959139591395,0.27410657070088007],[99.15399153991541,0.2876151888599452],[99.15759157591577,0.2977466524792476],[99.15759157591577,0.3196981569877124],[99.14679146791468,0.33320677514677755],[99.13239132391323,0.339961084226303],[99.1107911079111,0.3450268160359542],[99.12879128791286,0.392306979592675],[99.13239132391323,0.4125699068312656],[99.12879128791286,0.485178729436214],[99.12159121591219,0.5088188112145815],[99.1107911079111,0.5240160066435209],[99.09999099991,0.5138845430242327],[99.09639096390964,0.5307703157230605],[99.10359103591037,0.5780504792797672],[99.09999099991,0.6016905610581205],[99.08919089190891,0.6219534882967253],[99.07119071190715,0.6303963746461392],[99.04959049590497,0.6202649110268368],[99.03879038790387,0.6506593018847298],[99.0459904599046,0.740153897188506],[99.04239042390424,0.7773025971259244],[99.00639006390065,0.819517028872994],[98.99558995589956,0.8245827606826452],[98.9811898118981,0.8313370697621707],[98.97758977589774,0.8465342651911243],[98.9811898118981,0.8870601196683054],[98.97758977589774,0.9208316650659611],[98.91638916389167,1.1167066283723557],[98.85158851588517,1.277121469011206],[98.84078840788408,1.3007615507895594],[98.83718837188371,1.3108930144088617],[98.83718837188371,1.32102447802815],[98.84438844388444,1.3328445189173408],[98.84438844388444,1.3463531370763917],[98.84078840788408,1.356484600695694],[98.79758797587976,1.3986990324427637],[98.78678786787867,1.413896227871703],[98.77598775987764,1.4510449278091215],[98.76878768787691,1.474685009587489],[98.76878768787691,1.4932593595561912],[98.76518765187654,1.4983250913658424],[98.75798757987582,1.5050794004453678],[98.74718747187472,1.5084565549851305],[98.73638736387363,1.510145132255019],[98.7291872918729,1.5152108640646702],[98.7255872558726,1.5236537504140841],[98.72198721987223,1.545605254922549],[98.71118711187114,1.5641796048912653],[98.71118711187114,1.5692453367009165],[98.7255872558726,1.5726224912406792],[98.73278732787327,1.5692453367009165],[98.739987399874,1.5641796048912653],[98.74358743587436,1.5557367185418514],[98.74718747187472,1.548982409462326],[98.75438754387545,1.5354737913032608],[98.76518765187654,1.548982409462326],[98.78678786787867,1.5861311093997443],[98.79758797587976,1.5996397275587952],[98.81918819188195,1.6199026547974],[98.82278822788231,1.6300341184166882],[98.82278822788231,1.6671828183541066],[98.81918819188195,1.6823800137830602],[98.80478804788049,1.6891343228625857],[98.78678786787867,1.6908229001324742],[98.78318783187831,1.699265786481888],[98.78318783187831,1.7110858273710647],[98.78318783187831,1.7296601773397668],[98.77238772387727,1.7482345273084832],[98.76158761587618,1.7634317227374225],[98.7255872558726,1.792137536325427],[98.7147871478715,1.7853832272459016],[98.71118711187114,1.778628918166362],[98.71118711187114,1.7634317227374225],[98.7147871478715,1.7634317227374225],[98.7255872558726,1.756677413657897],[98.7255872558726,1.7499231045783574],[98.72198721987223,1.7397916409590692],[98.72198721987223,1.7330373318795296],[98.71118711187114,1.7262830228000041],[98.68958689586896,1.7364144864193065],[98.65718657186574,1.7634317227374225],[98.57438574385748,1.888386440708743],[98.53478534785347,1.9356666042654638],[98.44478444784448,1.9913896541715843],[98.42678426784266,1.998143963251124],[98.4087840878409,2.0015211177908867],[98.38718387183872,2.003209695060761],[98.36558365583659,2.003209695060761],[98.3547835478355,2.003209695060761],[98.35118351183513,2.006586849600538],[98.34758347583477,2.0217840450294773],[98.34758347583477,2.0285383541090027],[98.34038340383404,2.033604085918654],[98.32958329583295,2.038669817728305],[98.31158311583118,2.0403583949981794],[98.289982899829,2.0369812404584167],[98.26838268382687,2.038669817728305],[98.26118261182614,2.0488012813475933],[98.25758257582578,2.074129940395835],[98.24318243182432,2.0876385585549],[98.2107821078211,2.1095900630633793],[98.15318153181533,2.156870226620086],[98.08838088380884,2.1957075038273928],[97.9839798397984,2.244676244653988],[97.95517955179554,2.271693480972118],[97.93357933579335,2.2700049037022296],[97.87957879578795,2.249741976463639],[97.86517865178655,2.248053399193765],[97.8507785077851,2.2514305537335275],[97.82917829178291,2.2649391718925784],[97.81837818378187,2.258184862813053],[97.81117811178115,2.263250594622704],[97.80397803978042,2.271693480972118],[97.79317793177933,2.2784477900516436],[97.7859778597786,2.2784477900516436],[97.76797767977683,2.2733820582419924],[97.75717757177574,2.271693480972118],[97.74277742777429,2.2818249445914063],[97.7067770677707,2.345990880846955],[97.67797677976779,2.376385271704848],[97.66357663576639,2.3915824671337873],[97.65997659976603,2.411845394372378],[97.65997659976603,2.52666864872441],[97.64557645576457,2.668509139394544],[97.60957609576099,2.8491869072719993],[97.60237602376026,2.866072679970827],[97.59157591575917,2.874515566320241],[97.57717577175771,2.8762041435901153],[97.5339753397534,2.888024184479306],[97.48357483574836,2.913352843527548],[97.4655746557466,2.9201071526070734],[97.44037440374404,2.921795729876962],[97.42237422374222,2.9285500389564874],[97.40437404374046,2.9437472343854267],[97.33237332373324,3.0315532524193287],[97.31437314373147,3.0619476432772217],[97.29997299973002,3.094030611404989],[97.28557285572856,3.178459474899128],[97.2711727117271,3.213919597566658],[97.23877238772388,3.2375596793450256],[97.20637206372066,3.2409368338847884],[97.18117181171812,3.2460025656944396],[97.17037170371702,3.2544454520438535],[97.16677166771666,3.2679540702029044],[97.0191701917019,3.5229292379551964],[97.00117001170014,3.5465693197335497],[96.92196921969219,3.605669524179447],[96.90396903969042,3.6343753377674517],[96.89316893168933,3.666458305895219],[96.88236882368824,3.6816555013241725],[96.87156871568715,3.6900983876735864],[96.86436864368642,3.6917869649434607],[96.84276842768429,3.7069841603724143],[96.83916839168393,3.7120498921820513],[96.82836828368283,3.7171156239917025],[96.81756817568174,3.720492778531465],[96.80676806768071,3.723869933071242],[96.7779677796778,3.7424442830399443],[96.75996759967603,3.749198592119484],[96.55836558365587,3.745821437579707],[96.51876518765187,3.754264323929121],[96.47916479164792,3.7779044057074884],[96.42876428764288,3.825184569264195],[96.27756277562776,4.026125264380241],[96.21276212762126,4.093668355175552],[96.20916209162095,4.100422664255078],[96.20196201962023,4.115619859684017],[96.19836198361986,4.120685591493668],[96.19116191161913,4.125751323303319],[96.17676176761768,4.132505632382845],[96.16596165961658,4.137571364192496],[96.15876158761591,4.140948518732259],[96.14796147961482,4.142637096002147],[96.13356133561336,4.140948518732259],[96.129961299613,4.137571364192496],[96.12636126361264,4.135882786922622],[96.11556115561154,4.147702827811798],[96.0651606516065,4.2051144549878074],[96.0507605076051,4.213557341337221],[96.02916029160292,4.216934495876984],[96.0111601116011,4.225377382226398],[95.90315903159035,4.345266368388067],[95.8131581315813,4.433072386421969],[95.80595805958063,4.446581004581034],[95.7591575915759,4.483729704518453],[95.72675726757268,4.531009868075174],[95.65475654756551,4.579978608901769],[95.61515615156151,4.628947349728364],[95.60075600756011,4.635701658807889],[95.57555575555756,4.634013081538015],[95.56475564755647,4.637390236077778],[95.5611556115561,4.645833122427192],[95.56475564755647,4.650898854236843],[95.5719557195572,4.661030317856131],[95.57555575555756,4.666096049665782],[95.5719557195572,4.674538936015196],[95.56835568355683,4.674538936015196],[95.5611556115561,4.674538936015196],[95.55395553955543,4.676227513285085],[95.52515525155252,4.696490440523675],[95.51435514355143,4.713376213222503],[95.48915489154894,4.762344954049098],[95.46755467554675,4.789362190367214],[95.46035460354602,4.797805076716628],[95.44235442354426,4.811313694875693],[95.43515435154353,4.816379426685344],[95.4279542795428,4.8265108903046325],[95.42435424354244,4.831576622114284],[95.42435424354244,4.836642353923935],[95.42435424354244,4.846773817543237],[95.41715417154171,4.861971012972177],[95.40635406354062,4.8872996720204185],[95.39915399153995,4.910939753798772],[95.38475384753849,4.934579835577125],[95.38115381153813,4.959908494625367],[95.3487534875349,5.037583049039981],[95.33795337953381,5.05278024446892],[95.32355323553236,5.069666017167748],[95.31275312753127,5.086551789866576],[95.30555305553054,5.103437562565404],[95.29835298352987,5.116946180724469],[95.28035280352805,5.122011912534106],[95.29835298352987,5.15071772612211],[95.30195301953023,5.172669230630589],[95.29115291152914,5.191243580599306],[95.27315273152732,5.211506507837896],[95.2551525515255,5.223326548727073],[95.24795247952483,5.231769435076487],[95.24435244352446,5.241900898695789],[95.24435244352446,5.25540951685484],[95.2407524075241,5.270606712283794],[95.23355233552337,5.28242675317297],[95.22275222752228,5.2874924849826215],[95.19755197551979,5.2925582167922585],[95.20475204752046,5.307755412221212],[95.22275222752228,5.326329762189914],[95.23355233552337,5.3449041121586305],[95.23355233552337,5.36010130758757],[95.24435244352446,5.378675657556286],[95.25155251552519,5.395561430255114],[95.2551525515255,5.410758625684053],[95.24795247952483,5.4242672438431185],[95.23355233552337,5.451284480161235],[95.24435244352446,5.4597273665106485],[95.23715237152373,5.473235984669714],[95.22275222752228,5.4901217573685415],[95.22635226352264,5.505318952797481],[95.20475204752046,5.534024766385485],[95.19755197551979,5.545844807274662],[95.21195211952119,5.572862043592792],[95.22275222752228,5.579616352672318],[95.23715237152373,5.574550620862681],[95.25155251552519,5.579616352672318],[95.25875258752586,5.5779277754024434],[95.26955269552695,5.574550620862681],[95.28035280352805,5.574550620862681],[95.28755287552877,5.5779277754024434],[95.30555305553054,5.591436393561494],[95.31635316353163,5.598190702641034],[95.33435334353345,5.611699320800099],[95.34515345153454,5.615076475339862],[95.35955359553594,5.616765052609736],[95.37035370353703,5.621830784419387],[95.41355413554135,5.648848020737518],[95.43155431554317,5.653913752547155],[95.44955449554499,5.648848020737518],[95.47835478354784,5.623519361689276],[95.4927549275493,5.611699320800099],[95.50355503555039,5.6049450117205595],[95.51075510755106,5.603256434450685],[95.52155521555216,5.610010743530211],[95.53235532355325,5.621830784419387],[95.57555575555756,5.63196224803869],[95.61155611556114,5.6268965162290385],[95.76275762757626,5.576239198132555],[95.83835838358385,5.528959034575848],[95.85635856358567,5.522204725496309],[95.87435874358744,5.520516148226434],[95.88875888758889,5.5120732618770205],[95.89595895958962,5.493498911908304],[95.90315903159035,5.451284480161235],[95.9319593195932,5.414135780223816],[96.05436054360547,5.312821144030849],[96.08676086760869,5.295935371332035],[96.12636126361264,5.28242675317297],[96.29196291962921,5.258786671394603],[96.3027630276303,5.253720939584966],[96.34596345963462,5.231769435076487],[96.36036360363607,5.225015125996961],[96.40716407164075,5.216572239647547],[96.42876428764288,5.218260816917422],[96.4467644676447,5.228392280536724],[96.46476464764646,5.2351465896162495],[96.48636486364865,5.230080857806598],[96.50796507965083,5.218260816917422],[96.5259652596526,5.211506507837896],[96.5691656916569,5.208129353298133],[96.65196651966522,5.216572239647547],[96.68436684366844,5.225015125996961],[96.78516785167852,5.260475248664491],[96.82836828368283,5.280738175903082],[96.84996849968502,5.277361021363319],[96.89316893168933,5.26216382593438],[96.90756907569079,5.26216382593438],[96.92196921969219,5.268918135013905],[96.97236972369723,5.273983866823556],[97.029970299703,5.252032362315077],[97.07317073170731,5.238523744156012],[97.10917109171095,5.214883662377659],[97.1487714877149,5.197997889678831],[97.16677166771666,5.174357807900478],[97.17757177571775,5.160849189741413],[97.19557195571957,5.15747203520165],[97.22797227972279,5.145651994312473],[97.26757267572674,5.155783457931761],[97.49797497974981,5.252032362315077],[97.52677526775267,5.241900898695789],[97.66357663576639,5.073043171707511],[97.82917829178291,4.937956990116902],[97.87237872378722,4.919382640148186],[97.8939789397894,4.905874021989121],[97.90837908379086,4.888988249290293],[97.95517955179554,4.80793654033593],[97.96237962379627,4.789362190367214],[97.97677976779767,4.706621904142963],[97.9839798397984,4.677916090554959],[98.00558005580058,4.634013081538015],[98.00918009180094,4.6238816179187125],[98.00558005580058,4.598552958870471],[97.99837998379985,4.569847145282466],[97.99117991179912,4.552961372583638],[97.99837998379985,4.546207063504113],[98.0271802718027,4.552961372583638],[98.0379803798038,4.551272795313764],[98.04878048780489,4.539452754424573],[98.05238052380525,4.552961372583638],[98.05958059580598,4.554649949853527],[98.07758077580775,4.546207063504113],[98.07758077580775,4.541141331694462],[98.08118081180811,4.536075599884811],[98.08838088380884,4.532698445345048],[98.09558095580957,4.532698445345048],[98.10638106381066,4.537764177154699],[98.11358113581139,4.539452754424573],[98.13878138781388,4.534387022614936],[98.16038160381606,4.52256698172576],[98.17478174781746,4.503992631757043],[98.18558185581855,4.483729704518453],[98.19278192781928,4.483729704518453],[98.19638196381965,4.488795436328104],[98.20358203582038,4.493861168137741],[98.20718207182074,4.497238322677518],[98.21798217982183,4.485418281788327],[98.23958239582396,4.4567124682003225],[98.25398253982542,4.443203850041272],[98.26838268382687,4.433072386421969],[98.27558275582754,4.424629500072555],[98.2791827918279,4.416186613723141],[98.28278282782827,4.365529295626658],[98.26838268382687,4.292920473021709],[98.26838268382687,4.287854741212058],[98.26478264782651,4.211868764067333],[98.26478264782651,4.203425877717919],[98.23958239582396,4.189917259558868],[98.19638196381965,4.1747200641299145],[98.18558185581855,4.169654332320263],[98.17838178381783,4.157834291431087],[98.17838178381783,4.142637096002147],[98.17838178381783,4.1088655506044915],[98.20358203582038,4.132505632382845],[98.21798217982183,4.144325673272036],[98.2359823598236,4.149391405081673],[98.23958239582396,4.154457136891324],[98.25758257582578,4.171342909590152],[98.26118261182614,4.17303148686004],[98.26478264782651,4.178097218669677],[98.30078300783009,4.088602623365901],[98.30438304383046,4.080159737016487],[98.36198361983622,4.0869140460960125],[98.38358383583835,4.0869140460960125],[98.40518405184054,4.078471159746599],[98.44118441184412,4.058208232508008],[98.4627846278463,4.053142500698357],[98.4771847718477,4.046388191618831],[98.49878498784989,4.014305223491064],[98.50958509585098,4.004173759871762],[98.52758527585274,4.0024851826018875],[98.54558545585456,4.00586233714165],[98.55638556385566,4.000796605331999],[98.56718567185675,3.9670250599343433],[98.57798577985778,3.953516441775278],[98.5959859598596,3.94338497815599],[98.61038610386106,3.9366306690764503],[98.67518675186756,3.9146791645679855],[98.70038700387005,3.8758418873606786],[98.70038700387005,3.833627455613609],[98.71118711187114,3.80323306475573],[98.79758797587976,3.7255585103411164],[98.89478894788948,3.6816555013241725],[98.95598955989561,3.67152403770487],[98.97758977589774,3.658015419545805],[99.00999009990102,3.63606391503734],[99.02799027990278,3.6293096059578005],[99.05319053190533,3.622555296878275],[99.07479074790751,3.60904667871921],[99.09999099991,3.582029442401094],[99.1791917919179,3.5465693197335497],[99.26919269192695,3.4840919607478895],[99.36639366393666,3.4081059836031784],[99.38439384393843,3.3996630972537645],[99.42039420394207,3.3912202109043506],[99.43479434794347,3.3827773245549366],[99.45279452794529,3.3608258200464576],[99.47799477994784,3.345628624617518],[99.48879488794887,3.335497160998216],[99.4959949599496,3.310168501949974],[99.50679506795069,3.296659883790909],[99.52839528395288,3.271331224742667],[99.55719557195573,3.244313988424551],[99.58959589595895,3.2274282157257232],[99.68679686796867,3.205476711217244],[99.71919719197194,3.1919680930581933],[99.7371973719737,3.1885909385184164],[99.75159751597516,3.1801480521690024],[99.78039780397808,3.121047847723119],[99.83439834398342,3.07207910689651],[99.85239852398524,3.046750447848268],[99.85959859598597,3.011290325180738],[99.88839888398883,3.0180446342602636],[99.90999909999101,2.9994702842915615],[99.9315993159932,2.975830202513208],[99.95679956799569,2.962321584354143],[99.97839978399787,2.948812966195078],[99.98919989199891,2.9150414207974222],[99.99639996399964,2.7985295891755158],[99.99639996399964,2.7850209710164506],[99.98919989199891,2.7715123528573997],[99.97839978399787,2.759692311968209],[99.97119971199714,2.746183693809158],[99.96759967599678,2.7276093438404416],[99.96399963999642,2.7191664574910277],[99.95319953199532,2.7039692620620883],[99.95319953199532,2.6955263757126744],[99.96039960399605,2.6870834893632605],[99.96759967599678,2.6837063348234977],[99.97839978399787,2.6820177575536093],[99.98559985599854,2.6786406030138465],[99.99279992799927,2.668509139394544],[99.99279992799927,2.663443407584907],[99.98919989199891,2.6600662530451302],[99.98919989199891,2.6550005212354932],[100.00720007200073,2.6212289758378375],[100.00720007200073,2.609408934948661],[100.00720007200073,2.602654625869121],[100.01440014400146,2.600966048599247],[100.02160021600218,2.6077203576787724],[100.02880028800291,2.617851821298075],[100.02520025200255,2.6246061303776003],[100.01800018000182,2.6313604394571257],[100.01440014400146,2.6381147485366654],[100.01440014400146,2.671886293934321],[100.01080010800109,2.6786406030138465],[99.98199981999824,2.697214952982563],[99.97479974799751,2.7022806847922],[99.98559985599854,2.7191664574910277],[100.01800018000182,2.7309864983802044],[100.0540005400054,2.7276093438404416],[100.07560075600759,2.688772066633149],[100.07920079200795,2.675263448474084],[100.07560075600759,2.6482462121559536],[100.07560075600759,2.6347375939969027],[100.09000090000899,2.600966048599247],[100.09000090000899,2.5908345849799446],[100.09720097200972,2.570571657741354],[100.10800108001081,2.545242998693112],[100.12600126001263,2.530045803264173],[100.13680136801366,2.5384886896135868],[100.13680136801366,2.5519973077726377],[100.12240122401226,2.587457430440182],[100.1188011880119,2.6043432031390097],[100.1188011880119,2.644869057616191],[100.12240122401226,2.663443407584907],[100.12960129601299,2.6820177575536093],[100.14400144001439,2.6955263757126744],[100.15840158401585,2.7039692620620883],[100.18000180001803,2.7090349938717395],[100.20160201602016,2.7090349938717395],[100.21240212402125,2.7056578393319626],[100.21240212402125,2.697214952982563],[100.21240212402125,2.6870834893632605],[100.21600216002162,2.6786406030138465],[100.22320223202235,2.6735748712041953],[100.24120241202411,2.66682056212467],[100.24840248402484,2.6617548303150187],[100.2520025200252,2.6550005212354932],[100.25560255602556,2.627983284917363],[100.25920259202593,2.619540398567949],[100.26640266402666,2.602654625869121],[100.27000270002702,2.59758889405947],[100.27360273602739,2.5908345849799446],[100.29880298802988,2.5722602350112425],[100.30960309603097,2.5688830804714655],[100.31320313203133,2.56212877139194],[100.31320313203133,2.5553744623124146],[100.31320313203133,2.553685885042526],[100.3816038160382,2.354433767196369],[100.40680406804069,2.3122193354492993],[100.4356043560436,2.2733820582419924],[100.50760507605077,2.1990846583671555],[100.56160561605617,2.156870226620086],[100.61920619206194,2.12985299030197],[100.66600666006661,2.134918722111621],[100.78840788407888,2.0488012813475933],[100.81360813608137,2.0403583949981794],[100.83160831608319,2.016718313219826],[100.84240842408423,2.011652581410175],[100.85680856808568,1.9998325405209982],[100.87120871208714,1.9728153042028822],[100.8856088560886,1.9407323360751008],[100.89280892808927,1.918780831566636],[100.89640896408963,1.8866978634388545],[100.90720907209072,1.8563034725809757],[100.92160921609218,1.8343519680724967],[100.94680946809467,1.8259090817230827]]],[[[119.27819278192783,5.3449041121586305],[119.27459274592746,5.322952607650151],[119.26739267392674,5.289181062252496],[119.26379263792637,5.272295289553668],[119.2709927099271,5.2267037032668355],[119.26739267392674,5.201375044218594],[119.24579245792461,5.181112116980003],[119.19539195391957,5.128766221613645],[119.15579155791556,5.106814717105166],[118.97218972189722,5.039271626309855],[118.78498784987852,4.985237153673609],[118.74898748987493,4.963285649165144],[118.72738727387275,4.953154185545841],[118.7021870218702,4.946399876466316],[118.68058680586807,4.9447112991964275],[118.66618666186662,4.94808845373619],[118.6337863378634,4.961597071895255],[118.60498604986049,4.964974226435018],[118.58338583385836,4.971728535514558],[118.57258572585727,4.971728535514558],[118.56178561785617,4.9666628037049065],[118.52938529385295,4.9447112991964275],[118.50778507785077,4.931202681037362],[118.50058500585004,4.931202681037362],[118.48618486184864,4.941334144656665],[118.47898478984791,4.94808845373619],[118.4609846098461,4.978482844594083],[118.42858428584287,5.019008699071264],[118.39618396183965,5.034205894500218],[118.37458374583747,5.040960203579743],[118.36738367383674,5.035894471770092],[118.35658356583565,5.039271626309855],[118.33498334983352,5.025763008150804],[118.30618306183061,4.998745771832674],[118.29538295382957,5.003811503642325],[118.29178291782921,5.000434349102562],[118.28818288182885,4.99030288548326],[118.29178291782921,4.978482844594083],[118.2521825218252,4.986925730943497],[118.21618216182162,4.964974226435018],[118.16218162181622,4.902496867449358],[118.14418144181445,4.890676826560181],[118.13698136981372,4.882233940210767],[118.13338133381336,4.872102476591465],[118.13338133381336,4.860282435702288],[118.14058140581409,4.855216703892651],[118.14418144181445,4.853528126622763],[118.17298172981731,4.836642353923935],[118.17658176581767,4.831576622114284],[118.1837818378184,4.8214451584949956],[118.1945819458195,4.792739344906991],[118.21978219782198,4.755590644969573],[118.24498244982453,4.723507676841791],[118.27738277382775,4.694801863253787],[118.31338313383134,4.669473204205545],[118.32418324183243,4.657653163316368],[118.33498334983352,4.650898854236843],[118.34218342183425,4.649210276966954],[118.35298352983529,4.649210276966954],[118.37458374583747,4.645833122427192],[118.3817838178382,4.642455967887429],[118.38538385383856,4.637390236077778],[118.39258392583929,4.618815886109061],[118.39618396183965,4.612061577029536],[118.40338403384033,4.60530726795001],[118.41058410584105,4.6019301134102335],[118.42858428584287,4.59348722706082],[118.43218432184324,4.612061577029536],[118.44298442984433,4.615438731569299],[118.4609846098461,4.610372999759647],[118.47538475384755,4.6019301134102335],[118.48618486184864,4.588421495251183],[118.489784897849,4.5749128770921175],[118.48618486184864,4.563092836202941],[118.47178471784719,4.549584218043876],[118.46818468184682,4.537764177154699],[118.47898478984791,4.525944136265522],[118.489784897849,4.51581267264622],[118.49698496984973,4.5090583635666945],[118.5041850418504,4.502304054487155],[118.52218522185223,4.512435518106457],[118.55098550985508,4.532698445345048],[118.56178561785617,4.527632713535397],[118.58698586985872,4.524255558995634],[118.60138601386012,4.519189827185983],[118.59418594185945,4.505681209026932],[118.60498604986049,4.4871068590582155],[118.64458644586449,4.443203850041272],[118.64458644586449,4.436449540961732],[118.63738637386376,4.426318077342444],[118.62658626586267,4.419563768262904],[118.61578615786158,4.421252345532793],[118.60858608586085,4.426318077342444],[118.59058590585909,4.4296952318822065],[118.59778597785981,4.412809459183379],[118.59418594185945,4.397612263754439],[118.58338583385836,4.384103645595374],[118.57258572585727,4.373972181976072],[118.55818558185581,4.3638407183567836],[118.54378543785441,4.360463563817021],[118.5041850418504,4.362152141086895],[118.48618486184864,4.358774986547132],[118.45378453784537,4.350332100197718],[118.4357843578436,4.346954945657956],[118.39258392583929,4.346954945657956],[118.36738367383674,4.350332100197718],[118.35298352983529,4.362152141086895],[118.33858338583389,4.343577791118193],[118.33138331383316,4.338512059308542],[118.24138241382417,4.3131834002603],[118.16218162181622,4.3064290911807745],[118.13698136981372,4.297986204831361],[118.00378003780037,4.2321316913059235],[117.98217982179824,4.230443114036049],[117.92097920979211,4.249017464004751],[117.90297902979029,4.252394618544528],[117.89217892178925,4.257460350354165],[117.85257852578525,4.292920473021709],[117.83817838178385,4.301363359371123],[117.83097830978312,4.304740513910886],[117.82377823778239,4.3064290911807745],[117.82017820178203,4.309806245720537],[117.8129781297813,4.330069172959128],[117.80937809378094,4.333446327498891],[117.79497794977954,4.335134904768779],[117.76257762577626,4.346954945657956],[117.73737737377377,4.352020677467607],[117.73017730177304,4.35539783200737],[117.70857708577086,4.370595027436309],[117.69777697776976,4.387480800135137],[117.68697686976873,4.407743727373727],[117.67257672576727,4.426318077342444],[117.65457654576545,4.424629500072555],[117.63297632976332,4.409432304643616],[117.6149761497615,4.392546531944788],[117.60417604176041,4.382415068325486],[117.61137611376114,4.373972181976072],[117.62937629376296,4.362152141086895],[117.63297632976332,4.350332100197718],[117.63297632976332,4.309806245720537],[117.63657636576369,4.299674782101235],[117.65097650976509,4.2844775866722955],[117.65457654576545,4.272657545783119],[117.64737647376472,4.260837504893928],[117.64017640176405,4.25070604127464],[117.61857618576187,4.237197423115575],[117.61137611376114,4.230443114036049],[117.60777607776078,4.222000227686635],[117.60057600576005,4.215245918607096],[117.60057600576005,4.206803032257682],[117.60417604176041,4.201737300448045],[117.61857618576187,4.184851527749217],[117.6257762577626,4.176408641399803],[117.61857618576187,4.178097218669677],[117.60777607776078,4.176408641399803],[117.56817568175683,4.159522868700975],[117.55377553775537,4.151079982351561],[117.52857528575288,4.127439900573208],[117.51777517775179,4.122374168763557],[117.5069750697507,4.124062746033431],[117.3737737377374,4.169654332320263],[117.3737737377374,4.164588600510626],[117.37737377373776,4.154457136891324],[117.38097380973812,4.149391405081673],[117.38817388173885,4.142637096002147],[117.39537395373952,4.1392599414623845],[117.40257402574025,4.135882786922622],[117.40617406174061,4.125751323303319],[117.40257402574025,4.120685591493668],[117.39537395373952,4.1088655506044915],[117.39537395373952,4.098734086985189],[117.40977409774098,4.093668355175552],[117.43137431374316,4.091979777905664],[117.44937449374493,4.088602623365901],[117.46737467374675,4.080159737016487],[117.47457474574747,4.066651118857422],[117.46737467374675,4.053142500698357],[117.46737467374675,4.043011037079069],[117.47817478174784,4.039633882539306],[117.48897488974893,4.043011037079069],[117.49977499774997,4.049765346158594],[117.51057510575106,4.053142500698357],[117.52137521375215,4.049765346158594],[117.6149761497615,3.956893596315055],[117.62937629376296,3.9467621326957527],[117.66177661776618,3.9400078236162273],[117.679776797768,3.9332535145366876],[117.69057690576909,3.921433473647511],[117.68697686976873,3.9096134327583343],[117.67257672576727,3.8977933918691576],[117.65097650976509,3.894416237329395],[117.62937629376296,3.9011705464089204],[117.58977589775901,3.926499205457162],[117.57177571775719,3.9332535145366876],[117.52497524975252,3.9366306690764503],[117.52497524975252,3.929876359996925],[117.55377553775537,3.926499205457162],[117.57897578975792,3.9146791645679855],[117.60417604176041,3.896104814599269],[117.62217622176223,3.8792190419004413],[117.63657636576369,3.872464732820916],[117.65097650976509,3.8758418873606786],[117.66897668976691,3.8792190419004413],[117.68337683376836,3.882596196440204],[117.69057690576909,3.8792190419004413],[117.71937719377195,3.860644691931739],[117.72657726577268,3.850513228312437],[117.77697776977772,3.7998559102159533],[117.78057780577808,3.7880358693267766],[117.78417784177844,3.7795929829773627],[117.77697776977772,3.7745272511677115],[117.7589775897759,3.7728386738978372],[117.70137701377013,3.7779044057074884],[117.71577715777158,3.7643957875484233],[117.7337773377734,3.7525757466592466],[117.77697776977772,3.737378551230293],[117.81657816578166,3.7306242421507676],[117.83097830978312,3.7221813558013537],[117.82737827378276,3.7036070058326374],[117.81657816578166,3.6951641194832376],[117.78777787777881,3.67827834678441],[117.77697776977772,3.6681468831651074],[117.76257762577626,3.644506801386754],[117.7481774817748,3.6377524923072144],[117.65097650976509,3.6276210286879262],[117.62937629376296,3.6326867604975774],[117.58617586175865,3.6512611104662795],[117.56817568175683,3.6546382650060423],[117.54657546575464,3.6647697286253447],[117.53217532175324,3.6850326558639352],[117.52497524975252,3.7086727376422886],[117.5069750697507,3.735689973960419],[117.5069750697507,3.7475100148495954],[117.50337503375033,3.7694615193580745],[117.49977499774997,3.7762158284376],[117.48897488974893,3.7829701375171254],[117.46737467374675,3.793101601136428],[117.4817748177482,3.7711500966279488],[117.4817748177482,3.7643957875484233],[117.4925749257493,3.7069841603724143],[117.49977499774997,3.693475542213349],[117.51417514175142,3.674901192244633],[117.52497524975252,3.649572533196391],[117.52497524975252,3.6259324514180378],[117.51057510575106,3.6073581014493357],[117.4961749617496,3.60904667871921],[117.44937449374493,3.6293096059578005],[117.43137431374316,3.6343753377674517],[117.30177301773017,3.6326867604975774],[117.21897218972191,3.647883955926517],[117.08937089370897,3.6461953786566283],[117.0569705697057,3.6326867604975774],[117.0317703177032,3.5938494832902705],[117.05337053370533,3.60904667871921],[117.08217082170825,3.6158009877987496],[117.11457114571147,3.6208667196083866],[117.16857168571687,3.6208667196083866],[117.20097200972009,3.6158009877987496],[117.21537215372155,3.6022923696396845],[117.20457204572045,3.5769637105914427],[117.20097200972009,3.5550122060829636],[117.21177211772118,3.529683547034722],[117.22617226172264,3.50435488798648],[117.2441724417244,3.490846269827429],[117.25137251372513,3.485780538017778],[117.29097290972913,3.477337651668364],[117.30537305373053,3.46889476531895],[117.31257312573126,3.460451878969536],[117.32697326973272,3.436811797191183],[117.34497344973448,3.446943260810471],[117.3737737377374,3.4486318380803596],[117.40617406174061,3.445254683540597],[117.4277742777428,3.436811797191183],[117.43497434974353,3.4351232199212944],[117.44217442174426,3.4351232199212944],[117.44577445774456,3.4351232199212944],[117.44937449374493,3.4266803335718805],[117.44937449374493,3.397974519983876],[117.44577445774456,3.384465901824811],[117.44217442174426,3.3726458609356342],[117.43497434974353,3.3642029745862203],[117.42417424174243,3.3608258200464576],[117.41337413374134,3.3557600882368064],[117.40617406174061,3.345628624617518],[117.39537395373952,3.327054274648802],[117.38817388173885,3.3202999655692764],[117.37737377373776,3.3135456564897368],[117.37017370173703,3.305102770140323],[117.36657366573667,3.2949713065210346],[117.3629736297363,3.2544454520438535],[117.35937359373594,3.244313988424551],[117.34497344973448,3.230805370265486],[117.33417334173345,3.2324939475353744],[117.31257312573126,3.2510682975040766],[117.28017280172804,3.262888338393253],[117.27297272972731,3.2645769156631417],[117.26577265772659,3.261199761123379],[117.26577265772659,3.2544454520438535],[117.26937269372695,3.244313988424551],[117.26937269372695,3.2341825248052487],[117.28017280172804,3.222362483916072],[117.35217352173521,3.1835252067087794],[117.37017370173703,3.1767708976292397],[117.38817388173885,3.1750823203593654],[117.43137431374316,3.1750823203593654],[117.45297452974529,3.1717051658195885],[117.45657456574565,3.159885124930412],[117.45297452974529,3.1446879295014725],[117.45657456574565,3.1278021568026446],[117.4817748177482,3.1007849204845144],[117.52137521375215,3.09909634321464],[117.56457564575646,3.102473497754403],[117.60417604176041,3.094030611404989],[117.61857618576187,3.085587725055575],[117.62217622176223,3.0788334159760495],[117.62217622176223,3.07207910689651],[117.62937629376296,3.063636220547096],[117.63297632976332,3.0518161796579193],[117.62937629376296,3.041684716038631],[117.61857618576187,3.0349304069590914],[117.60777607776078,3.0315532524193287],[117.60057600576005,3.0247989433398033],[117.57537575375756,2.992715975212022],[117.56457564575646,2.984273088862608],[117.57897578975792,2.979207357052971],[117.60057600576005,2.980895934322845],[117.62217622176223,2.9859616661324964],[117.63657636576369,2.9944045524819103],[117.65457654576545,2.997781707021673],[117.67617676176764,2.9859616661324964],[117.68697686976873,2.970764470703557],[117.68337683376836,2.962321584354143],[117.66897668976691,2.9589444298143803],[117.62937629376296,2.9420586571155525],[117.61137611376114,2.9369929253059013],[117.54297542975434,2.9285500389564874],[117.54297542975434,2.921795729876962],[117.56817568175683,2.921795729876962],[117.64017640176405,2.9082871117178968],[117.73737737377377,2.901532802638357],[117.72657726577268,2.8863356072094177],[117.70497704977049,2.8795812981298923],[117.679776797768,2.8728269890503526],[117.66537665376654,2.8643841027009387],[117.6257762577626,2.8373668663828226],[117.61857618576187,2.825546825493646],[117.63297632976332,2.812038207334581],[117.67257672576727,2.7985295891755158],[117.71577715777158,2.7934638573658646],[117.75177751777517,2.7850209710164506],[117.78417784177844,2.7580037346983346],[117.79137791377917,2.742806539269395],[117.79497794977954,2.7225436120307904],[117.80217802178021,2.6566890985053675],[117.80577805778057,2.6381147485366654],[117.81657816578166,2.6212289758378375],[117.82737827378276,2.6077203576787724],[117.8669786697867,2.5722602350112425],[117.88137881378816,2.5519973077726377],[117.97857978579788,2.465879867008624],[117.98937989379897,2.455748403389336],[118.0001800018,2.433796898880857],[118.00738007380073,2.425354012531443],[118.02538025380255,2.381451003514485],[118.03618036180364,2.3645652308156713],[118.04338043380437,2.381451003514485],[118.0649806498065,2.3662538080855455],[118.08298082980832,2.337547994497541],[118.09738097380978,2.3037764490998853],[118.10098100981008,2.2784477900516436],[118.09018090180905,2.2615620173528157],[118.05778057780577,2.219347585605746],[118.04338043380437,2.209216121986458],[117.97497974979751,2.19233034928763],[117.95697956979569,2.1821988856683276],[117.94257942579429,2.1636245356996255],[117.93897938979393,2.143361608461035],[117.93537935379356,2.1247872584923186],[117.91377913779138,2.1062129085236165],[117.91377913779138,2.0927042903645514],[117.88137881378816,2.096081444904314],[117.82737827378276,2.1062129085236165],[117.84537845378458,2.0876385585549],[117.88137881378816,2.0673756313163096],[117.89937899378992,2.050489858617482],[117.85977859778598,2.038669817728305],[117.82377823778239,2.0369812404584167],[117.79137791377917,2.038669817728305],[117.75537755377553,2.047112704077719],[117.74097740977413,2.0454241268078306],[117.75177751777517,2.0319155086487797],[117.76617766177662,2.02516119956924],[117.80217802178021,2.0217840450294773],[117.82017820178203,2.016718313219826],[117.83097830978312,2.0048982723306494],[117.84537845378458,1.9913896541715843],[117.85617856178561,1.9829467678221704],[117.8669786697867,1.98970107690171],[117.87417874178743,1.98970107690171],[117.87417874178743,1.9474866451546404],[117.87057870578707,1.9255351406461614],[117.86337863378634,1.9154036770268732],[117.85617856178561,1.9086493679473335],[117.85617856178561,1.8968293270581569],[117.86337863378634,1.8866978634388545],[117.87057870578707,1.879943554359329],[117.88137881378816,1.8816321316292175],[117.88497884978852,1.8833207088990918],[117.89217892178925,1.8731892452798036],[117.90297902979029,1.85799204985085],[117.91017910179102,1.8360405453423851],[117.92457924579247,1.8191547726435573],[117.94617946179466,1.8124004635640176],[117.96417964179642,1.809023309024255],[117.98217982179824,1.800580422674841],[117.9965799657997,1.792137536325427],[118.0109801098011,1.7836946499760131],[118.03618036180364,1.7853832272459016],[118.04698046980474,1.7836946499760131],[118.05058050580504,1.7752517636265992],[118.05058050580504,1.761743145467534],[118.04698046980474,1.751611681848246],[118.04698046980474,1.743168795498832],[118.05418054180541,1.7330373318795296],[118.12618126181263,1.65536277746493],[118.1837818378184,1.6317226956865767],[118.27018270182703,1.5624910276213768],[118.30978309783097,1.5422281003827862],[118.35298352983529,1.5337852140333723],[118.3709837098371,1.5219651731441957],[118.39258392583929,1.4966365140959539],[118.41778417784178,1.4915707822863027],[118.42498424984251,1.4865050504766657],[118.41778417784178,1.4729964323176006],[118.40338403384033,1.461176391428424],[118.39978399783996,1.4544220823488843],[118.40338403384033,1.4459791959994703],[118.41418414184142,1.4409134641898333],[118.43938439384397,1.4409134641898333],[118.450184501845,1.4358477323801822],[118.450184501845,1.4290934233006425],[118.45378453784537,1.403764764252415],[118.45738457384573,1.395321877903001],[118.46458464584646,1.395321877903001],[118.47538475384755,1.4020761869825265],[118.49338493384937,1.395321877903001],[118.52218522185223,1.373370373394522],[118.53658536585368,1.3699932188547592],[118.58338583385836,1.3666160643149965],[118.61218612186121,1.351418868886043],[118.67338673386735,1.2804986235509688],[118.7129871298713,1.263612850852141],[118.73098730987311,1.2534813872328527],[118.75258752587524,1.2298413054544852],[118.77778777787779,1.2011354918664807],[118.78498784987852,1.1808725646278901],[118.78138781387815,1.1774954100881274],[118.77418774187743,1.175806832818239],[118.7669876698767,1.1724296782784762],[118.76338763387633,1.1639867919290623],[118.79938799387998,1.1504781737699972],[118.81018810188101,1.140346710150709],[118.82458824588247,1.1200837829121184],[118.85698856988569,1.0576064239264582],[118.87138871388714,1.0559178466565697],[118.87858878588787,1.0559178466565697],[118.88938889388896,1.0576064239264582],[118.89298892988933,1.0626721557361094],[118.90738907389073,1.0761807738951603],[118.91458914589145,1.0778693511650488],[118.93258932589328,1.0761807738951603],[118.98658986589868,1.0576064239264582],[119.00099000990014,1.0474749603071558],[119.00459004590044,1.0373434966878676],[119.00459004590044,1.025523455798691],[118.99738997389977,1.0153919921793886],[118.99738997389977,1.003571951290212],[119.00099000990014,0.9985062194805607],[119.00459004590044,0.995129064940798],[119.01179011790117,0.9883747558612583],[119.01179011790117,0.9765547149720817],[119.00459004590044,0.9630460968130308],[118.97218972189722,0.9360288604949005],[118.95778957789577,0.9123887787165472],[118.939789397894,0.9022573150972448],[118.86418864188641,0.8684857696995891],[118.84978849788502,0.8566657288104125],[118.84258842588429,0.8296484924922964],[118.82818828188283,0.8178284516031056],[118.81378813788137,0.8093855652537059],[118.79938799387998,0.8043198334440547],[118.78498784987852,0.8043198334440547],[118.77418774187743,0.8060084107139289],[118.76338763387633,0.8093855652537059],[118.7417874178742,0.8228941834127568],[118.71658716587166,0.827959915222408],[118.70578705787057,0.8364028015718219],[118.6877868778688,0.8465342651911243],[118.66258662586625,0.8465342651911243],[118.64098640986413,0.8397799561115846],[118.58338583385836,0.8144512970633428],[118.57618576185763,0.8076969879838174],[118.56538565385654,0.8043198334440547],[118.55458554585545,0.8076969879838174],[118.54378543785441,0.8144512970633428],[118.53298532985332,0.8178284516031056],[118.5149851498515,0.8212056061428825],[118.47178471784719,0.8380913788417104],[118.42858428584287,0.8397799561115846],[118.41778417784178,0.8364028015718219],[118.41058410584105,0.8212056061428825],[118.40338403384033,0.8144512970633428],[118.39258392583929,0.8076969879838174],[118.38538385383856,0.8043198334440547],[118.36738367383674,0.8110741425235801],[118.35658356583565,0.8228941834127568],[118.34578345783461,0.8397799561115846],[118.33138331383316,0.8532885742706497],[118.3169831698317,0.8583543060803009],[118.18738187381877,0.8752400787791288],[118.129781297813,0.8938144287478309],[118.09738097380978,0.9090116241767845],[118.06858068580686,0.9292745514153751],[118.04338043380437,0.9546032104636168],[118.02898028980292,0.9849976013214956],[118.00378003780037,1.0508521148469185],[117.98937989379897,1.0778693511650488],[117.97497974979751,1.0880008147843512],[117.93537935379356,1.1082637420229418],[117.92817928179284,1.1167066283723557],[117.92457924579247,1.1251495147217696],[117.91377913779138,1.1251495147217696],[117.90297902979029,1.1200837829121184],[117.89217892178925,1.1133294738325787],[117.89217892178925,1.1048865874831648],[117.89217892178925,1.0947551238638766],[117.90297902979029,1.0778693511650488],[117.93537935379356,1.0390320739577419],[117.93897938979393,1.0322777648782164],[117.97497974979751,0.9833090240516213],[117.97857978579788,0.9664232513527935],[117.9857798577986,0.9258973968756123],[117.99297992979933,0.9107002014466588],[117.9965799657997,0.907323046906896],[118.00378003780037,0.8938144287478309],[118.00738007380073,0.8921258514779566],[118.01458014580146,0.8887486969381797],[118.01818018180182,0.8870601196683054],[118.02538025380255,0.8735515015092403],[118.02898028980292,0.8583543060803009],[118.03258032580328,0.8431571106513474],[118.03618036180364,0.8212056061428825],[118.03258032580328,0.8009426789042919],[118.02178021780219,0.7908112152849895],[118.00378003780037,0.7891226380151011],[117.99297992979933,0.7891226380151011],[117.98217982179824,0.7908112152849895],[117.97497974979751,0.7992541016344035],[117.96417964179642,0.8178284516031056],[117.95697956979569,0.8245827606826452],[117.94617946179466,0.8313370697621707],[117.93897938979393,0.8364028015718219],[117.92817928179284,0.8380913788417104],[117.91377913779138,0.8397799561115846],[117.90297902979029,0.8380913788417104],[117.89577895778962,0.8330256470320592],[117.88857888578889,0.827959915222408],[117.88497884978852,0.8245827606826452],[117.84897848978488,0.8245827606826452],[117.83097830978312,0.819517028872994],[117.8129781297813,0.8110741425235801],[117.78777787777881,0.792499792554878],[117.7445774457745,0.740153897188506],[117.73017730177304,0.7148252381402642],[117.72657726577268,0.652347879154604],[117.71937719377195,0.6371506837256646],[117.69417694176946,0.6168877564870741],[117.68697686976873,0.6067562928677717],[117.68337683376836,0.5966248292484835],[117.679776797768,0.5746733247400044],[117.67617676176764,0.564541861120702],[117.61857618576187,0.5020645021350418],[117.61137611376114,0.47842442035668853],[117.6149761497615,0.4699815340072746],[117.6257762577626,0.44465287495903283],[117.6257762577626,0.43452141133974465],[117.61857618576187,0.42438994772044225],[117.60777607776078,0.4176356386409168],[117.59697596975968,0.4125699068312656],[117.58617586175865,0.4075041750216144],[117.56817568175683,0.3889298250529123],[117.55377553775537,0.3500925478456054],[117.51777517775179,0.2909923433997079],[117.51417514175142,0.28086087978041974],[117.51417514175142,0.27579514797076854],[117.51777517775179,0.27072941616111734],[117.52497524975252,0.2622865298117034],[117.52497524975252,0.24202360257311284],[117.52137521375215,0.225137829874285],[117.51417514175142,0.21162921171521987],[117.4925749257493,0.18967770720675503],[117.48537485374857,0.17954624358745264],[117.4817748177482,0.16603762542838751],[117.4817748177482,0.15421758453921086],[117.48897488974893,0.15084042999944813],[117.49977499774997,0.15084042999944813],[117.51057510575106,0.14915185272955966],[117.51777517775179,0.14070896638014574],[117.5069750697507,0.13226608003073181],[117.48537485374857,0.12551177095120636],[117.47457474574747,0.1187574618716809],[117.47097470974711,0.10862599825237851],[117.47097470974711,0.10187168917285305],[117.47457474574747,0.09511738009331339],[117.47457474574747,0.0849859164740252],[117.47457474574747,0.07485445285472281],[117.47457474574747,0.06978872104507161],[117.47457474574747,0.06472298923543462],[117.47457474574747,0.05796868015589496],[117.4817748177482,0.05459152561613223],[117.4925749257493,0.05459152561613223],[117.4961749617496,0.0512143710763695],[117.48897488974893,0.03770575291730438],[117.49977499774997,0.03264002110765318],[117.51057510575106,0.025885712028127728],[117.51777517775179,0.015754248408825333],[117.52497524975252,0.002245630249774422],[117.52857528575288,-0.019705874258704625],[117.52857528575288,-0.03152591514788128],[117.52857528575288,-0.038280224227420945],[117.52497524975252,-0.04165737876718367],[117.51417514175142,-0.05854315146601152],[117.5069750697507,-0.07036319235518818],[117.4961749617496,-0.08049465597447636],[117.48897488974893,-0.08556038778412756],[117.48537485374857,-0.09231469686366722],[117.47097470974711,-0.12946339680108565],[117.46377463774638,-0.14466059223002503],[117.46017460174602,-0.1851864467072062],[117.45657456574565,-0.20544937394579676],[117.43497434974353,-0.23922091934345247],[117.43497434974353,-0.26454957839169424],[117.44217442174426,-0.2814353510905221],[117.45657456574565,-0.30845258740865233],[117.47457474574747,-0.33040409191711717],[117.48537485374857,-0.33546982372676837],[117.4961749617496,-0.3337812464568941],[117.4961749617496,-0.35066701915572196],[117.4925749257493,-0.3726185236641868],[117.48897488974893,-0.3878157190931404],[117.46737467374675,-0.4114558008714937],[117.45657456574565,-0.4266529963004331],[117.46017460174602,-0.4384730371896097],[117.46737467374675,-0.45704738715832605],[117.46377463774638,-0.48068746893667935],[117.45297452974529,-0.5009503961752699],[117.44217442174426,-0.5178361688740978],[117.44217442174426,-0.5245904779536374],[117.47457474574747,-0.5093932825246839],[117.59697596975968,-0.42327584176067035],[117.6149761497615,-0.4148329554112564],[117.62937629376296,-0.41821010995101915],[117.64017640176405,-0.43678445991973547],[117.63297632976332,-0.44691592353902365],[117.61857618576187,-0.45704738715832605],[117.61137611376114,-0.46717885077761423],[117.60417604176041,-0.47562173712702815],[117.57177571775719,-0.48575320074633055],[117.55737557375573,-0.49081893255598175],[117.55377553775537,-0.5026389734451584],[117.58977589775901,-0.5110818597945723],[117.60057600576005,-0.5212133234138605],[117.59697596975968,-0.5600506006211674],[117.59337593375938,-0.5752477960501068],[117.57897578975792,-0.5921335687489346],[117.57897578975792,-0.5971993005585858],[117.57537575375756,-0.5988878778284743],[117.54297542975434,-0.6005764550983486],[117.53577535775361,-0.602265032368237],[117.52857528575288,-0.6073307641778882],[117.52857528575288,-0.6140850732574137],[117.54657546575464,-0.6191508050670649],[117.56457564575646,-0.6225279596068276],[117.57537575375756,-0.6292822686863531],[117.57177571775719,-0.6478566186550694],[117.5609756097561,-0.6579880822743718],[117.54657546575464,-0.6664309686237857],[117.53937539375397,-0.6748738549731996],[117.550175501755,-0.690071050402139],[117.53937539375397,-0.6951367822117902],[117.52857528575288,-0.6934482049419017],[117.49977499774997,-0.690071050402139],[117.48537485374857,-0.6934482049419017],[117.4817748177482,-0.7002025140214272],[117.48897488974893,-0.7069568231009669],[117.49977499774997,-0.7103339776407296],[117.52137521375215,-0.712022554910618],[117.57537575375756,-0.7272197503395574],[117.60417604176041,-0.7305969048793202],[117.6149761497615,-0.7339740594190829],[117.62217622176223,-0.7424169457684968],[117.6257762577626,-0.7559255639275619],[117.6257762577626,-0.7711227593565013],[117.62217622176223,-0.7812542229758037],[117.6149761497615,-0.7863199547854549],[117.58617586175865,-0.7930742638649804],[117.57177571775719,-0.7913856865951061],[117.56457564575646,-0.7913856865951061],[117.55737557375573,-0.7964514184047431],[117.54297542975434,-0.8082714592939197],[117.53937539375397,-0.813337191103571],[117.48897488974893,-0.7981399956746316],[117.4925749257493,-0.8285343865325245],[117.45657456574565,-0.8200915001831106],[117.44937449374493,-0.8437315819614639],[117.45297452974529,-0.865683086469943],[117.44577445774456,-0.8775031273591196],[117.4277742777428,-0.8808802818988823],[117.41337413374134,-0.8741259728193569],[117.39177391773921,-0.8487973137711151],[117.38097380973812,-0.8386658501518127],[117.3737737377374,-0.8555516228506406],[117.3629736297363,-0.8791917046289939],[117.34857348573485,-0.8960774773278217],[117.33777337773381,-0.9011432091374729],[117.33417334173345,-0.8910117455181847],[117.33057330573308,-0.8775031273591196],[117.33057330573308,-0.8504858910409894],[117.32697326973272,-0.8420430046915754],[117.30177301773017,-0.8167143456433337],[117.28017280172804,-0.8099600365638082],[117.26577265772659,-0.8285343865325245],[117.25857258572586,-0.8589287773904033],[117.2549725497255,-0.8842574364386451],[117.25137251372513,-0.9095860954868868],[117.23337233372337,-0.9247832909158262],[117.19377193771936,-0.9484233726941937],[117.1649716497165,-0.9821949180918494],[117.06417064170643,-1.1223468314921092],[117.03897038970393,-1.1375440269210486],[117.0317703177032,-1.1594955314295277],[117.02817028170284,-1.1848241904777694],[117.02457024570248,-1.2033985404464715],[117.00657006570066,-1.2169071586055367],[116.98496984969853,-1.2304157767646018],[116.95616956169562,-1.24054724038389],[116.85176851768517,-1.2641873221622575],[116.83016830168305,-1.2658758994321317],[116.81936819368195,-1.2608101676224948],[116.81576815768159,-1.2473015494634296],[116.81936819368195,-1.2202843131452994],[116.83016830168305,-1.2033985404464715],[116.83016830168305,-1.1949556540970576],[116.81936819368195,-1.1898899222874206],[116.81216812168122,-1.1932670768271834],[116.8049680496805,-1.2017099631765973],[116.79776797767977,-1.2169071586055367],[116.7941679416794,-1.2033985404464715],[116.7941679416794,-1.1713155723187043],[116.78696786967873,-1.1594955314295277],[116.74736747367473,-1.1105267906029326],[116.74376743767436,-1.0851981315546908],[116.75816758167582,-1.0244093498389049],[116.74376743767436,-1.0244093498389049],[116.72936729367296,-1.0446722770775096],[116.72216722167224,-1.0716895133956257],[116.71496714967151,-1.1240354087619977],[116.71856718567187,-1.1358554496511744],[116.75096750967509,-1.16962699504883],[116.75816758167582,-1.1814470359380067],[116.75816758167582,-1.1882013450175322],[116.75456754567546,-1.1932670768271834],[116.75096750967509,-1.2033985404464715],[116.7365673656737,-1.2152185813356624],[116.7365673656737,-1.2202843131452994],[116.77616776167764,-1.2337929313043645],[116.779767797678,-1.2371700858441272],[116.78336783367837,-1.2371700858441272],[116.78696786967873,-1.2388586631140157],[116.79056790567904,-1.243924394923667],[116.79056790567904,-1.248990126733304],[116.79056790567904,-1.254055858542955],[116.779767797678,-1.2743187857815457],[116.76536765367655,-1.2878274039406108],[116.76176761767618,-1.2979588675599132],[116.76896768967691,-1.3435504538467455],[116.76176761767618,-1.3655019583552104],[116.740167401674,-1.3739448447046243],[116.71856718567187,-1.3773219992444012],[116.61056610566106,-1.4212250082613451],[116.56736567365675,-1.446553667309587],[116.53856538565384,-1.4820137899771169],[116.53856538565384,-1.525916798994075],[116.54576545765457,-1.5411139944230143],[116.5529655296553,-1.5512454580423167],[116.56016560165602,-1.5630654989314934],[116.56376563765639,-1.583328426170084],[116.55656556565566,-1.6069685079484373],[116.53856538565384,-1.6221657033773909],[116.51696516965171,-1.6339857442665675],[116.43056430564309,-1.6593144033148093],[116.39096390963908,-1.684643062363051],[116.34416344163441,-1.6964631032522277],[116.32616326163264,-1.7032174123317532],[116.27216272162724,-1.7488089986185855],[116.26496264962651,-1.7623176167776506],[116.23256232562329,-1.77751481220659],[116.2217622176222,-1.7893348530957809],[116.24336243362433,-1.8062206257945945],[116.26136261362615,-1.807909203064483],[116.28656286562864,-1.8062206257945945],[116.30816308163082,-1.8011548939849575],[116.31896318963192,-1.7893348530957809],[116.32256322563228,-1.7825805440162412],[116.32976329763301,-1.77751481220659],[116.35136351363514,-1.772449080396953],[116.35856358563586,-1.772449080396953],[116.36576365763659,-1.77751481220659],[116.37296372963732,-1.7792033894764785],[116.37296372963732,-1.77751481220659],[116.38016380163805,-1.7673833485873018],[116.38016380163805,-1.7656947713174134],[116.40176401764018,-1.7640061940475391],[116.42336423364236,-1.7656947713174134],[116.44136441364412,-1.7758262349367158],[116.44856448564485,-1.7960891621753063],[116.43416434164345,-1.8214178212235481],[116.41256412564127,-1.84674648027179],[116.45216452164522,-1.8838951802092083],[116.46656466564667,-1.9075352619875616],[116.45216452164522,-1.9581925800840452],[116.46296462964631,-2.0206699390697054],[116.45936459364594,-2.0426214435781844],[116.43776437764376,-2.0662615253565377],[116.42696426964272,-2.076392988975826],[116.35856358563586,-2.0932787616746538],[116.33696336963368,-2.1084759571036074],[116.31176311763119,-2.128738884342198],[116.29376293762937,-2.150690388850677],[116.28296282962833,-2.169264738819379],[116.290162901629,-2.169264738819379],[116.33696336963368,-2.145624657041026],[116.36936369363696,-2.137181770691612],[116.38736387363872,-2.1523789661205512],[116.39456394563945,-2.191216243327858],[116.4089640896409,-2.203036284217035],[116.43776437764376,-2.1979705524073836],[116.49896498964989,-2.169264738819379],[116.51696516965171,-2.1658875842796164],[116.53136531365317,-2.169264738819379],[116.53136531365317,-2.177707625168793],[116.53496534965353,-2.194593397867621],[116.5421654216542,-2.2097905932965602],[116.5529655296553,-2.2064134387567975],[116.56736567365675,-2.1979705524073836],[116.58176581765821,-2.1878390887880954],[116.59976599765997,-2.1844619342483185],[116.6069660696607,-2.1929048205977324],[116.60336603366034,-2.224987788725514],[116.57456574565748,-2.363451124855885],[116.53856538565384,-2.512045924605573],[116.51696516965171,-2.5542603563526427],[116.48096480964813,-2.561014665432168],[116.4737647376474,-2.547506047273103],[116.46656466564667,-2.5272431200345125],[116.45936459364594,-2.506980192795922],[116.44496444964449,-2.498537306446508],[116.419764197642,-2.4968487291766195],[116.40536405364054,-2.498537306446508],[116.40176401764018,-2.5002258837163964],[116.39096390963908,-2.5086687700658103],[116.38736387363872,-2.512045924605573],[116.38016380163805,-2.512045924605573],[116.37296372963732,-2.5086687700658103],[116.36936369363696,-2.506980192795922],[116.36576365763659,-2.5052916155260334],[116.33336333363337,-2.5103573473356846],[116.32256322563228,-2.512045924605573],[116.31176311763119,-2.51711165641521],[116.30456304563046,-2.525554542764624],[116.30456304563046,-2.5356860063839264],[116.30816308163082,-2.539063160923689],[116.32256322563228,-2.547506047273103],[116.32256322563228,-2.5677689745116936],[116.29736297362973,-2.608294828988889],[116.31176311763119,-2.6150491380684144],[116.34056340563404,-2.5660803972418194],[116.36576365763659,-2.555948933622517],[116.38376383763841,-2.5576375108924054],[116.39456394563945,-2.5745232835912333],[116.39096390963908,-2.5897204790201727],[116.36936369363696,-2.6336234880371165],[116.36576365763659,-2.652197838005833],[116.36936369363696,-2.824432719533874],[116.36576365763659,-2.8615814194712925],[116.35136351363514,-2.895352964868948],[116.33336333363337,-2.925747355726827],[116.28656286562864,-2.986536137442613],[116.26496264962651,-3.005110487411315],[116.24336243362433,-3.0084876419510778],[116.22896228962293,-3.0017333328715523],[116.21816218162184,-2.9848475601727245],[116.21456214562147,-2.939255973885892],[116.21096210962111,-2.930813087536478],[116.20736207362074,-2.9223702011870643],[116.20016200162001,-2.915615892107539],[116.18216182161825,-2.908861583027999],[116.17496174961752,-2.903795851218362],[116.16416164161643,-2.8885986557894086],[116.16056160561607,-2.8666471512809295],[116.15336153361534,-2.8446956467724647],[116.15336153361534,-2.824432719533874],[116.14976149761497,-2.81598983318446],[116.14616146161461,-2.81598983318446],[116.13896138961388,-2.8227441422639856],[116.13176131761321,-2.8345641831531623],[116.13536135361352,-2.8396299149628135],[116.13896138961388,-2.8582042649315156],[116.13896138961388,-2.868335728550818],[116.13176131761321,-2.890287233059297],[116.11736117361176,-2.9105501602978876],[116.11016110161103,-2.930813087536478],[116.12456124561248,-2.9544531693148315],[116.12816128161285,-2.966273210204008],[116.12096120961212,-2.9764046738233105],[116.11016110161103,-2.986536137442613],[116.10656106561066,-2.9983561783317896],[116.11016110161103,-3.0067990646812035],[116.11736117361176,-3.005110487411315],[116.13176131761321,-2.9983561783317896],[116.16056160561607,-3.0034219101414408],[116.1677616776168,-3.0152419510306174],[116.1677616776168,-3.030439146459557],[116.17856178561789,-3.0507020736981474],[116.19296192961929,-3.0642106918572125],[116.25416254162542,-3.1081137008741564],[116.26856268562688,-3.1249994735729842],[116.26496264962651,-3.136819514462161],[116.21816218162184,-3.1469509780814633],[116.17856178561789,-3.1621481735104027],[116.1677616776168,-3.1570824417007657],[116.16416164161643,-3.172279637129705],[116.18216182161825,-3.207739759797235],[116.18936189361892,-3.2313798415756025],[116.18216182161825,-3.2567085006238443],[116.1677616776168,-3.2651513869732582],[116.14976149761497,-3.2702171187828952],[116.12456124561248,-3.2803485824021976],[116.12816128161285,-3.2651513869732582],[116.13536135361352,-3.255019923353956],[116.14256142561425,-3.251642768814193],[116.15336153361534,-3.260085655163607],[116.16056160561607,-3.2533313460840674],[116.1677616776168,-3.2448884597346535],[116.17136171361716,-3.2263141097659513],[116.1569615696157,-3.2263141097659513],[116.12456124561248,-3.238134150655128],[116.11016110161103,-3.246577037004542],[116.09936099360993,-3.2651513869732582],[116.08496084960848,-3.3073658187203137],[116.0237602376024,-3.4120576094530435],[116.00936009360095,-3.4508948866603504],[115.99855998559985,-3.5403894819641266],[115.98775987759876,-3.5826039137111962],[115.96615966159663,-3.6096211500293265],[115.94815948159481,-3.6146868818389777],[115.88335883358837,-3.6146868818389777],[115.85815858158583,-3.6197526136486147],[115.83655836558364,-3.63326123180768],[115.7969579695797,-3.670409931745098],[115.75735757357575,-3.6974271680632285],[115.58455584555844,-3.7801674542874792],[115.31455314553148,-3.8831706677503206],[115.05895058950591,-3.986173881213162],[114.87534875348757,-4.070602744707301],[114.71334713347136,-4.17022880363038],[114.66294662946632,-4.183737421789445],[114.62334623346237,-4.17022880363038],[114.60534605346055,-4.133080103692961],[114.60894608946091,-4.089177094676003],[114.63054630546304,-4.013191117531292],[114.61254612546128,-3.9270736767672645],[114.60534605346055,-3.854464854162316],[114.61254612546128,-3.6839185499041633],[114.59814598145982,-3.638326963617331],[114.53694536945369,-3.564029563742494],[114.52254522545229,-3.520126554725536],[114.52254522545229,-3.476223545708592],[114.55134551345515,-3.347891673197509],[114.52974529745296,-3.358023136816797],[114.5117451174512,-3.3681546004360996],[114.5009450094501,-3.383351795865039],[114.48654486544865,-3.488043586597769],[114.47574475744756,-3.4998636274869455],[114.45054450544507,-3.498175050217071],[114.41094410944112,-3.484666432058006],[114.3677436774368,-3.4593377730097643],[114.28854288542885,-3.42387765034222],[114.27054270542709,-3.413746186722932],[114.26334263342636,-3.396860414024104],[114.26694266942673,-3.378286064055388],[114.2741427414274,-3.3630888686264484],[114.29214292142922,-3.356334559546923],[114.30294302943031,-3.3462030959276206],[114.32454324543244,-3.2803485824021976],[114.34974349743499,-3.2482656142744304],[114.36054360543608,-3.2347569961153653],[114.36414364143644,-3.211116914337012],[114.32454324543244,-3.2482656142744304],[114.28854288542885,-3.3056772414504394],[114.2489424894249,-3.3597117140866857],[114.18774187741877,-3.3816632185951647],[114.15174151741519,-3.378286064055388],[114.12654126541264,-3.3681546004360996],[114.10854108541088,-3.347891673197509],[114.10494104941051,-3.3141201277998533],[114.12294122941228,-3.216182646146649],[114.11934119341197,-3.190853987098407],[114.11214112141124,-3.199296873447821],[114.10854108541088,-3.207739759797235],[114.09774097740979,-3.2533313460840674],[114.09774097740979,-3.2752828505925464],[114.09414094140942,-3.2803485824021976],[114.07974079740796,-3.2904800460215],[114.04374043740438,-3.356334559546923],[113.97893978939788,-3.3850403731349274],[113.94653946539466,-3.3951718367542156],[113.88533885338853,-3.43063195942176],[113.81333813338136,-3.4559606184700016],[113.71253712537128,-3.4728463911688294],[113.63333633336333,-3.4559606184700016],[113.6261362613626,-3.3816632185951647],[113.6369363693637,-3.3411373641179694],[113.64413644136442,-3.2989229323708997],[113.64053640536406,-3.2567085006238443],[113.61893618936193,-3.18578825528877],[113.6117361173612,-3.1739682143995935],[113.59373593735938,-3.1705910598598166],[113.50733507335076,-3.1705910598598166],[113.48573485734858,-3.1739682143995935],[113.46773467734681,-3.1840996780188817],[113.45333453334536,-3.199296873447821],[113.44613446134463,-3.2212483779563],[113.4389343893439,-3.238134150655128],[113.42453424534244,-3.246577037004542],[113.36693366933673,-3.2533313460840674],[113.35253352533528,-3.2499541915443046],[113.34533345333455,-3.238134150655128],[113.34533345333455,-3.2144940688767747],[113.33813338133382,-3.2009854507177096],[113.33093330933309,-3.1824111007490075],[113.31653316533169,-3.1689024825899423],[113.30213302133023,-3.1621481735104027],[113.34533345333455,-3.246577037004542],[113.35253352533528,-3.2719056960527837],[113.29853298532987,-3.2144940688767747],[113.28413284132841,-3.2043626052574723],[113.25533255332556,-3.1874768325586444],[113.2409324093241,-3.1773453689393563],[113.23013230132301,-3.163836750780291],[113.22293222932228,-3.150328132621226],[113.21573215732161,-3.133442359922398],[113.20853208532088,-3.1030479690645194],[113.20133201332015,-3.092916505445217],[113.18333183331833,-3.0777193100162776],[113.15813158131584,-3.0642106918572125],[113.12933129331293,-3.0557678055077986],[113.10053100531007,-3.0422591873487335],[113.03573035730358,-2.9223702011870643],[113.03573035730358,-2.9932904465221384],[113.03213032130321,-3.0084876419510778],[113.02493024930249,-3.0169305283004917],[113.01773017730176,-3.0371934555390823],[113.00693006930072,-3.0473249191583847],[113.00333003330036,-3.0473249191583847],[112.99252992529927,-3.045636341888496],[112.9889298892989,-3.0473249191583847],[112.98172981729817,-3.049013496428273],[112.97452974529745,-3.057456382777687],[112.96372963729641,-3.0692764236668637],[112.94932949329495,-3.0861621963656916],[112.94212942129423,-3.106425123604282],[112.94932949329495,-3.1249994735729842],[112.96012960129605,-3.1385080917320494],[112.96732967329672,-3.1435738235417006],[112.97812978129781,-3.150328132621226],[112.9889298892989,-3.1520167098911145],[113.01053010530109,-3.1537052871609887],[113.02133021330212,-3.1570824417007657],[113.02133021330212,-3.1621481735104027],[112.66852668526684,-3.38841752767469],[112.63972639726398,-3.4171233412626947],[112.6181261812618,-3.42387765034222],[112.58212582125822,-3.415434763992806],[112.57492574925749,-3.4205004958024574],[112.57132571325712,-3.43063195942176],[112.5641256412564,-3.4373862685012853],[112.55692556925572,-3.4424520003109365],[112.54612546125463,-3.444140577580825],[112.52452524525245,-3.4373862685012853],[112.39132391323915,-3.339448786848095],[112.34812348123484,-3.3225630141492672],[112.30132301323016,-3.3141201277998533],[112.20412204122044,-3.3293173232287927],[112.11772117721176,-3.3816632185951647],[111.97371973719737,-3.5251922865351872],[111.93051930519306,-3.558963831932843],[111.90531905319057,-3.572472450091908],[111.88731887318875,-3.5707838728220196],[111.86931869318693,-3.5606524092027314],[111.82251822518225,-3.545455213773778],[111.8081180811808,-3.533635172884601],[111.8081180811808,-3.511683668376122],[111.82971829718298,-3.4677806593591782],[111.8369183691837,-3.4475177321205877],[111.84411844118443,-3.3850403731349274],[111.84411844118443,-3.36140029135656],[111.81531815318152,-3.190853987098407],[111.81891818918189,-3.145262400811575],[111.83331833318334,-3.06083353731745],[111.82251822518225,-3.01861910557038],[111.76131761317612,-2.907173005758125],[111.75411754117545,-2.868335728550818],[111.75411754117545,-2.824432719533874],[111.75051750517508,-2.821055564994097],[111.74331743317435,-2.8176784104543344],[111.73611736117363,-2.8126126786446832],[111.73251732517326,-2.8041697922952693],[111.73611736117363,-2.7839068650566787],[111.75411754117545,-2.7568896287385627],[111.75411754117545,-2.7383152787698464],[111.73971739717399,-2.7467581651192603],[111.72171721717217,-2.758578206008437],[111.71091710917108,-2.7737754014373905],[111.70731707317071,-2.78897259686633],[111.71091710917108,-2.8345641831531623],[111.71451714517144,-2.8480728013122274],[111.70731707317071,-2.859892842201404],[111.70011700117004,-2.868335728550818],[111.68931689316895,-2.873401460360469],[111.68571685716859,-2.8784671921701204],[111.68211682116822,-2.8835329239797574],[111.67851678516786,-2.8885986557894086],[111.67131671316713,-2.895352964868948],[111.67131671316713,-2.903795851218362],[111.6749167491675,-2.9105501602978876],[111.68211682116822,-2.9139273148376503],[111.68571685716859,-2.917304469377413],[111.69651696516968,-2.925747355726827],[111.70011700117004,-2.9274359329967155],[111.7037170371704,-2.9325016648063666],[111.70731707317071,-2.939255973885892],[111.7037170371704,-2.9443217056955433],[111.69291692916931,-2.942633128425655],[111.69291692916931,-2.947698860235306],[111.649716497165,-2.961207478394371],[111.5849158491585,-3.0084876419510778],[111.57051570515705,-3.0152419510306174],[111.55251552515529,-3.01861910557038],[111.53451534515347,-3.0118647964908547],[111.52731527315274,-2.996667601061901],[111.52011520115201,-2.978093251093199],[111.51291512915128,-2.964584632934134],[111.48411484114843,-2.9409445511557806],[111.44811448114484,-2.9291245102665897],[111.36171361713616,-2.9223702011870643],[111.32571325713258,-2.925747355726827],[111.29691296912972,-2.9358788193461294],[111.05931059310592,-3.06083353731745],[110.98730987309875,-3.087850773635566],[110.94410944109444,-3.0912279281753285],[110.9081090810908,-3.0827850418259146],[110.82530825308254,-3.0371934555390823],[110.80730807308072,-3.0338163009993195],[110.77130771307714,-3.0321277237294453],[110.75330753307531,-3.0253734146499056],[110.75690756907568,-3.0118647964908547],[110.76410764107641,-2.994979023792027],[110.7749077490775,-2.9848475601727245],[110.80370803708036,-2.9595189011244827],[110.83610836108363,-2.9443217056955433],[110.87210872108722,-2.9358788193461294],[110.95490954909548,-2.900418696678585],[110.96570965709657,-2.900418696678585],[110.95490954909548,-2.8784671921701204],[110.93330933309335,-2.8835329239797574],[110.89730897308976,-2.9105501602978876],[110.87930879308794,-2.917304469377413],[110.8289082890829,-2.934190242076241],[110.81090810908108,-2.9358788193461294],[110.79290792907932,-2.9443217056955433],[110.77850778507786,-2.9595189011244827],[110.69930699306997,-3.062522114587324],[110.66330663306633,-3.0810964645560404],[110.6309063090631,-3.05407922823791],[110.62730627306274,-3.0422591873487335],[110.63450634506347,-3.0388820328089707],[110.6417064170642,-3.0371934555390823],[110.64530645306456,-3.0287505691896683],[110.6417064170642,-3.01861910557038],[110.63810638106384,-2.994979023792027],[110.63450634506347,-2.974716096553422],[110.6309063090631,-2.9510760147750688],[110.61650616506165,-2.9105501602978876],[110.5877058770588,-2.876778614900232],[110.54810548105485,-2.868335728550818],[110.50850508505084,-2.8750900376303434],[110.4041040410404,-2.920681623917176],[110.29970299702995,-2.9983561783317896],[110.26370263702637,-3.0034219101414408],[110.23850238502388,-2.973027519283548],[110.22410224102242,-2.930813087536478],[110.2061020610206,-2.895352964868948],[110.22050220502206,-2.876778614900232],[110.23850238502388,-2.846384224042339],[110.2457024570246,-2.8143012559145717],[110.2457024570246,-2.785595442326567],[110.22770227702279,-2.741692433309609],[110.22410224102242,-2.701166578832428],[110.21330213302133,-2.6690836107046607],[110.21330213302133,-2.652197838005833],[110.20250202502024,-2.640377797116656],[110.16650166501665,-2.6319349107672423],[110.15570155701556,-2.62180344714794],[110.15930159301593,-2.6116719835286517],[110.18090180901811,-2.5897204790201727],[110.18450184501847,-2.577900438130996],[110.19890198901987,-2.5525717790827542],[110.23130231302315,-2.555948933622517],[110.26370263702637,-2.555948933622517],[110.28170281702819,-2.5188002336850985],[110.2457024570246,-2.539063160923689],[110.22050220502206,-2.5323088518441637],[110.20250202502024,-2.5086687700658103],[110.15930159301593,-2.4360599474608478],[110.15570155701556,-2.41917417476202],[110.15570155701556,-2.3769597430149503],[110.14130141301416,-2.2891537249810483],[110.13050130501307,-2.2688907977424577],[110.11970119701198,-2.2587593341231695],[110.10530105301052,-2.25200502504363],[110.0981009810098,-2.235119252344802],[110.09450094500949,-2.2148563251062114],[110.09450094500949,-2.1979705524073836],[110.10530105301052,-2.1540675433904397],[110.11970119701198,-2.11185311164337],[110.13050130501307,-2.0696386798963005],[110.12330123301234,-2.0257356708793566],[110.09450094500949,-1.9598811573539336],[110.09090090900912,-1.9497496937346313],[110.07650076500767,-1.922732457416501],[110.06570065700657,-1.917666725606864],[110.03330033300335,-1.90922383925745],[109.98649986499868,-1.8838951802092083],[109.96849968499686,-1.8822066029393199],[109.9540995409954,-1.873763716589906],[109.90369903699036,-1.8264835530331993],[109.90729907299072,-1.8231063984934224],[109.91809918099182,-1.816352089413897],[109.92529925299255,-1.8129749348741342],[109.91449914499145,-1.807909203064483],[109.91089910899109,-1.799466316715069],[109.90729907299072,-1.7893348530957809],[109.91089910899109,-1.7792033894764785],[109.92169921699218,-1.769071925857176],[109.96849968499686,-1.7437432668089343],[109.98289982899831,-1.7386775349992973],[109.9936999369994,-1.7302346486498834],[110.00450004500044,-1.711660298681167],[110.03330033300335,-1.6458057851557442],[110.03690036900372,-1.627231435187042],[110.04050040500408,-1.5596883443917307],[110.06930069300694,-1.4330450491505218],[110.06930069300694,-1.389142040133578],[110.06210062100621,-1.3469276083865083],[110.04410044100445,-1.3047131766394386],[110.02970029700299,-1.2861388266707365],[110.01170011700117,-1.2776959403213226],[109.98649986499868,-1.2743187857815457],[109.9648996489965,-1.2658758994321317],[109.94689946899467,-1.2506787040031924],[109.95049950499504,-1.2304157767646018],[109.92889928899291,-1.2236614676850763],[109.92169921699218,-1.2017099631765973],[109.92529925299255,-1.174692726858467],[109.93609936099364,-1.1274125633017604],[109.93609936099364,-1.1122153678728068],[109.92169921699218,-1.103772481523393],[109.90009900099,-1.1003953269836302],[109.89289892898933,-1.098706749713756],[109.87129871298714,-1.086886708824565],[109.86049860498605,-1.0851981315546908],[109.83529835298356,-1.086886708824565],[109.82449824498246,-1.0750666679353884],[109.81009810098101,-1.0446722770775096],[109.78489784897852,-1.0328522361883188],[109.77409774097742,-1.0193436180292679],[109.75969759697597,-0.9906378044412634],[109.7416974169742,-0.9669977226628959],[109.73449734497348,-0.9534891045038449],[109.73089730897311,-0.9315375999953659],[109.73449734497348,-0.9180289818363008],[109.7416974169742,-0.9078975182169984],[109.75249752497524,-0.8994546318675987],[109.75969759697597,-0.8876345909784078],[109.7668976689767,-0.8741259728193569],[109.76329763297633,-0.87074881827958],[109.73449734497348,-0.8791917046289939],[109.72369723697238,-0.8893231682482963],[109.72009720097202,-0.9045203636772357],[109.71649716497166,-0.9264718681857147],[109.71289712897129,-0.9467347954243053],[109.7020970209702,-0.9602434135833704],[109.67689676896771,-0.9838834953617237],[109.6480964809648,-0.9669977226628959],[109.63009630096303,-0.9518005272339565],[109.6228962289623,-0.9518005272339565],[109.61569615696158,-0.9551776817737192],[109.60489604896048,-0.9568662590436077],[109.59769597695976,-0.9484233726941937],[109.58329583295836,-0.8943889000579475],[109.55809558095581,-0.8775031273591196],[109.52569525695259,-0.862305931930166],[109.489694896949,-0.8521744683108778],[109.43929439294396,-0.8454201592313524],[109.42849428494287,-0.8471087365012266],[109.42129421294214,-0.8504858910409894],[109.41409414094142,-0.8606173546602918],[109.41409414094142,-0.8673716637398172],[109.42129421294214,-0.8741259728193569],[109.42489424894251,-0.8842574364386451],[109.41769417694178,-0.9028317864073614],[109.40689406894069,-0.9112746727567753],[109.39249392493929,-0.9112746727567753],[109.37449374493747,-0.9095860954868868],[109.33489334893352,-0.8893231682482963],[109.32769327693279,-0.8842574364386451],[109.32049320493206,-0.8825688591687708],[109.28449284492848,-0.8639945092000545],[109.27369273692739,-0.8538630455807521],[109.24489244892447,-0.6951367822117902],[109.2520925209252,-0.6782510095129624],[109.2628926289263,-0.66811954589366],[109.27729277292775,-0.6698081231635484],[109.29889298892988,-0.6850053185924878],[109.31329313293134,-0.6951367822117902],[109.3816938169382,-0.6951367822117902],[109.39969399693996,-0.7035796685612041],[109.42849428494287,-0.725531173069669],[109.45729457294573,-0.7322854821492086],[109.46089460894609,-0.7339740594190829],[109.46809468094682,-0.7373512139588598],[109.47889478894791,-0.7373512139588598],[109.50049500495004,-0.7305969048793202],[109.51129511295113,-0.725531173069669],[109.50769507695077,-0.717088286720255],[109.49689496894968,-0.7137111321804923],[109.47169471694718,-0.717088286720255],[109.46089460894609,-0.7137111321804923],[109.44289442894433,-0.6866938958623763],[109.4356943569436,-0.6782510095129624],[109.41409414094142,-0.6647423913538972],[109.38889388893892,-0.6546109277345948],[109.37809378093783,-0.6529223504647206],[109.36369363693638,-0.6512337731948321],[109.35649356493565,-0.6478566186550694],[109.35649356493565,-0.6411023095755439],[109.36009360093601,-0.6394137323056555],[109.36729367293674,-0.6343480004960043],[109.36369363693638,-0.6309708459562415],[109.36009360093601,-0.6242165368767161],[109.35649356493565,-0.6208393823369533],[109.35649356493565,-0.6140850732574137],[109.37449374493747,-0.6140850732574137],[109.40689406894069,-0.6208393823369533],[109.42489424894251,-0.6208393823369533],[109.42489424894251,-0.6140850732574137],[109.39969399693996,-0.5971993005585858],[109.37449374493747,-0.5870678369392976],[109.34569345693455,-0.5836906823995207],[109.27729277292775,-0.5853792596694092],[109.2628926289263,-0.5921335687489346],[109.25569255692557,-0.5887564142091719],[109.2520925209252,-0.5820021051296465],[109.23409234092344,-0.5769363733199953],[109.23049230492308,-0.5701820642404698],[109.22689226892271,-0.5634277551609301],[109.22329223292235,-0.5583620233512931],[109.21609216092162,-0.553296291541642],[109.21249212492125,-0.5516077142717535],[109.20889208892089,-0.5516077142717535],[109.1980919809198,-0.5516077142717535],[109.18729187291876,-0.553296291541642],[109.18009180091804,-0.5566734460814047],[109.1728917289173,-0.5566734460814047],[109.15849158491585,-0.5482305597319908],[109.14049140491409,-0.5279676324934002],[109.129691296913,-0.5161475916042235],[109.12249122491227,-0.49926181890539567],[109.10449104491045,-0.4097672236016052],[109.10089100891008,-0.36924136912442407],[109.10089100891008,-0.36079848277501014],[109.11169111691117,-0.3591099055051217],[109.13689136891372,-0.36079848277501014],[109.10449104491045,-0.3135183192182893],[109.09009090090905,-0.2865010829001733],[109.10089100891008,-0.26454957839169424],[109.10089100891008,-0.2577952693121688],[109.09009090090905,-0.2527295375025176],[109.07569075690759,-0.2510409602326291],[109.06849068490686,-0.25441811477240606],[109.06849068490686,-0.2713038874712339],[109.05049050490504,-0.2611724238519315],[109.04689046890468,-0.24597522842299213],[109.05049050490504,-0.22908945572416428],[109.06129061290613,-0.21726941483498763],[109.07209072090723,-0.21220368302533643],[109.08649086490868,-0.20713795121568523],[109.1188911889119,-0.2037607966759225],[109.14769147691476,-0.20544937394579676],[109.17649176491767,-0.21220368302533643],[109.20169201692016,-0.22233514664462461],[109.21969219692198,-0.2375323420735782],[109.22329223292235,-0.2375323420735782],[109.21969219692198,-0.22233514664462461],[109.1980919809198,-0.20038364213615978],[109.19089190891913,-0.18856360124696891],[109.18729187291876,-0.17674356035779226],[109.19089190891913,-0.13790628315049958],[109.18729187291876,-0.08218323324436483],[109.18009180091804,-0.055165996926248795],[109.16209162091621,-0.023083028798467353],[109.15849158491585,-0.009574410639416442],[109.15489154891549,0.02081998021847653],[109.16209162091621,0.03432859837754165],[109.1728917289173,0.03432859837754165],[109.1980919809198,0.024197134758239258],[109.29889298892988,0.010688516599188347],[109.28089280892812,0.027574289298016197],[109.2376923769238,0.05796868015589496],[109.17649176491767,0.10693742098249004],[109.16569165691658,0.11200315279214124],[109.10089100891008,0.2437121798430013],[109.04689046890468,0.2876151888599452],[109.03249032490328,0.2926809206695964],[109.01449014490146,0.2960580752093591],[108.95328953289533,0.3011238070190103],[108.92808928089283,0.31463242517807544],[108.9208892088921,0.339961084226303],[108.9316893168932,0.38048693870349837],[108.94248942489423,0.4075041750216144],[108.9460894608946,0.422701370450568],[108.9460894608946,0.44465287495903283],[108.93888938889393,0.4649158021976234],[108.91368913689138,0.5037530794049303],[108.91008910089101,0.5307703157230605],[108.91368913689138,0.5409017793423487],[108.92808928089283,0.5628532838508278],[108.9316893168932,0.5746733247400044],[108.9316893168932,0.6168877564870741],[108.92808928089283,0.6405278382654274],[108.91728917289174,0.6607907655040179],[108.8776887768878,0.7148252381402642],[108.8776887768878,0.7232681244896781],[108.88488884888852,0.7333995881089805],[108.88848888488889,0.7536625153475711],[108.88128881288816,0.7773025971259244],[108.85608856088561,0.8110741425235801],[108.85608856088561,0.8330256470320592],[108.86328863288634,0.8414685333814731],[108.8776887768878,0.8549771515405382],[108.8920889208892,0.8684857696995891],[108.90648906489065,0.8735515015092403],[108.92448924489247,0.8752400787791288],[108.94248942489423,0.8836829651285427],[108.95328953289533,0.8971915832875936],[108.96408964089642,0.9140773559864215],[108.98208982089824,0.9562917877334911],[108.98208982089824,0.995129064940798],[108.92808928089283,1.140346710150709],[108.92448924489247,1.1639867919290623],[108.9316893168932,1.1774954100881274],[108.95328953289533,1.1842497191676529],[108.99288992889927,1.1876268737074298],[109.03249032490328,1.1994469145966065],[109.10809108091081,1.228152728184611],[109.1440914409144,1.25010423269309],[109.15849158491585,1.2653014281220294],[109.21609216092162,1.3362216734571035],[109.22689226892271,1.3581731779655826],[109.24489244892447,1.3801246824740474],[109.26649266492666,1.395321877903001],[109.26649266492666,1.4020761869825265],[109.24129241292417,1.403764764252415],[109.22689226892271,1.3885675688234613],[109.21609216092162,1.3699932188547592],[109.20169201692016,1.3598617552354568],[109.18729187291876,1.3497302916161686],[109.16569165691658,1.3024501280594478],[109.15129151291512,1.2923186644401454],[109.14769147691476,1.28556435536062],[109.1440914409144,1.2737443144714433],[109.13689136891372,1.2619242735822667],[109.12609126091263,1.2568585417726155],[109.11529115291154,1.255169964502727],[109.10449104491045,1.2484156554232015],[109.08649086490868,1.236595614534025],[109.0648906489065,1.2298413054544852],[109.0108901089011,1.2247755736448482],[108.9856898568986,1.2163326872954343],[108.98928989289897,1.246727078153313],[109.00729007290073,1.2737443144714433],[109.039690396904,1.3193359007582757],[109.0540905409054,1.351418868886043],[109.06129061290613,1.3835018370138101],[109.06129061290613,1.4983250913658424],[109.07209072090723,1.5337852140333723],[109.09729097290972,1.5608024503515026],[109.2520925209252,1.6688713956239951],[109.27369273692739,1.6942000546722369],[109.30249302493024,1.7533002591181344],[109.32049320493206,1.778628918166362],[109.33849338493388,1.7972032681350782],[109.34209342093425,1.8022689999447294],[109.34209342093425,1.8039575772146037],[109.34569345693455,1.8056461544844922],[109.34929349293492,1.809023309024255],[109.34929349293492,1.8157776181037804],[109.34569345693455,1.8191547726435573],[109.34209342093425,1.8191547726435573],[109.33849338493388,1.8191547726435573],[109.33489334893352,1.8157776181037804],[109.28809288092884,1.778628918166362],[109.28809288092884,1.7955146908651898],[109.29889298892988,1.8073347317543806],[109.31329313293134,1.8174661953736688],[109.32769327693279,1.8326633908026082],[109.33489334893352,1.849549163501436],[109.33489334893352,1.8681235134701524],[109.33489334893352,1.901895058867808],[109.34209342093425,1.9356666042654638],[109.36009360093601,1.9474866451546404],[109.42489424894251,1.9559295315040544],[109.56169561695617,1.98970107690171],[109.57969579695799,1.998143963251124],[109.59409594095939,2.008275426870412],[109.60489604896048,2.0217840450294773],[109.6336963369634,2.074129940395835],[109.64449644496443,2.082572826745249],[109.65169651696516,2.065687054046421],[109.65169651696516,2.0437355495379563],[109.66249662496625,2.003209695060761],[109.66249662496625,1.9829467678221704],[109.65889658896589,1.967749572393231],[109.65529655296552,1.9525523769642916],[109.65529655296552,1.937355181535338],[109.66249662496625,1.9154036770268732],[109.69129691296916,1.8731892452798036],[109.71289712897129,1.8546148953110873],[109.73089730897311,1.8394176998821479],[109.79209792097924,1.814089040833906],[109.82809828098283,1.7904489590555528],[109.87129871298714,1.773563186356725],[109.8856988569886,1.7600545681976598],[109.90009900099,1.743168795498832],[109.91449914499145,1.7077086728312878],[109.92889928899291,1.6925114774023484],[109.94329943299437,1.6891343228625857],[109.99009990099904,1.6908229001324742],[110.00450004500044,1.6925114774023484],[110.0189001890019,1.7009543637517623],[110.04050040500408,1.7026429410216508],[110.16650166501665,1.7026429410216508],[110.18090180901811,1.699265786481888],[110.19890198901987,1.685757168322823],[110.21330213302133,1.6823800137830602],[110.2169021690217,1.6840685910529345],[110.23130231302315,1.6975772092119996],[110.23850238502388,1.7026429410216508],[110.24930249302491,1.7060200955614135],[110.25290252902528,1.7060200955614135],[110.260102601026,1.7026429410216508],[110.28530285302855,1.6756257047035206],[110.29250292502928,1.6739371274336463],[110.29610296102965,1.6908229001324742],[110.30690306903068,1.7026429410216508],[110.30690306903068,1.7093972501011763],[110.30690306903068,1.7161515591807017],[110.30330303303032,1.7262830228000041],[110.29970299702995,1.7296601773397668],[110.29970299702995,1.761743145467534],[110.29970299702995,1.770186031816948],[110.31410314103141,1.792137536325427],[110.32850328503287,1.8022689999447294],[110.34290342903432,1.7972032681350782],[110.350103501035,1.7684974545470737],[110.36090360903609,1.756677413657897],[110.36450364503645,1.7499231045783574],[110.36450364503645,1.743168795498832],[110.36090360903609,1.7296601773397668],[110.36450364503645,1.7229058682602414],[110.36810368103681,1.7161515591807017],[110.37170371703718,1.7093972501011763],[110.37530375303754,1.7060200955614135],[110.38250382503827,1.7026429410216508],[110.389703897039,1.699265786481888],[110.40050400504003,1.6975772092119996],[110.42210422104222,1.6958886319421111],[110.43290432904331,1.699265786481888],[110.4437044370444,1.7195287137204787],[110.47250472504726,1.7296601773397668],[110.49050490504908,1.7397916409590692],[110.50850508505084,1.7414802182289435],[110.51930519305193,1.7229058682602414],[110.50850508505084,1.7077086728312878],[110.50130501305011,1.6942000546722369],[110.49410494104944,1.677314281973409],[110.49410494104944,1.6587399320046927],[110.49050490504908,1.6502970456552788],[110.47250472504726,1.6317226956865767],[110.46530465304653,1.6199026547974],[110.49410494104944,1.6317226956865767],[110.50490504905048,1.633411272956451],[110.51930519305193,1.6266569638769255],[110.53010530105303,1.616525500257623],[110.53370533705339,1.6047054593684464],[110.53730537305375,1.5962625730190325],[110.54810548105485,1.5928854184792698],[110.55530555305552,1.5945739957491583],[110.5769057690577,1.6047054593684464],[110.5877058770588,1.606394036638335],[110.6021060210602,1.6013283048286837],[110.64530645306456,1.5793768003202047],[110.70290702907027,1.5624910276213768],[110.72810728107282,1.5472938321924374],[110.73890738907392,1.5236537504140841],[110.73170731707319,1.4983250913658424],[110.71730717307173,1.4814393186670145],[110.67770677706778,1.4561106596187727],[110.67770677706778,1.4493563505392473],[110.70290702907027,1.4493563505392473],[110.72450724507246,1.45273350507901],[110.74250742507428,1.4628649686982982],[110.76410764107641,1.479750741397126],[110.7749077490775,1.4983250913658424],[110.77130771307714,1.518588018604433],[110.76770767707677,1.5354737913032608],[110.76770767707677,1.5523595640020886],[110.79290792907932,1.5726224912406792],[110.839708397084,1.5658681821611538],[110.92610926109262,1.5304080594936096],[110.96930969309693,1.5033908231754936],[111.04491044910452,1.4274048460307682],[111.0809108091081,1.4020761869825265],[111.14211142111424,1.3716817961246335],[111.15291152911533,1.3666160643149965],[111.17811178111782,1.3699932188547592],[111.21051210512104,1.3885675688234613],[111.23211232112322,1.395321877903001],[111.26451264512644,1.3818132597439359],[111.30051300513009,1.351418868886043],[111.34011340113403,1.3328445189173408],[111.38331383313835,1.3531074461559314],[111.36531365313652,1.3547960234258056],[111.34011340113403,1.364927487045108],[111.32571325713258,1.3666160643149965],[111.32211322113221,1.373370373394522],[111.31131311313112,1.4020761869825265],[111.30411304113045,1.4071419187921776],[111.289712897129,1.4105190733319404],[111.26091260912608,1.4206505369512428],[111.24651246512468,1.4206505369512428],[111.23571235712359,1.4172733824114658],[111.19971199712,1.4020761869825265],[111.17811178111782,1.400387609712638],[111.15651156511564,1.4054533415222892],[111.14211142111424,1.4172733824114658],[111.12771127711278,1.4324705778404194],[111.10971109711096,1.444290618729596],[111.06651066510665,1.4628649686982982],[111.04851048510488,1.4763735868573633],[111.03051030510306,1.5236537504140841],[111.01251012510124,1.5422281003827862],[111.00531005310052,1.5557367185418514],[111.00531005310052,1.5844425321298559],[111.00531005310052,1.5928854184792698],[111.01971019710197,1.6266569638769255],[111.0269102691027,1.663805663814344],[111.03771037710379,1.677314281973409],[111.09531095310956,1.6874457455926972],[111.11691116911169,1.6891343228625857],[111.13851138511387,1.6823800137830602],[111.14931149311496,1.663805663814344],[111.16371163711636,1.6401655820359906],[111.17811178111782,1.6266569638769255],[111.20331203312037,1.6367884274962279],[111.2141121411214,1.6401655820359906],[111.22851228512286,1.6300341184166882],[111.24651246512468,1.6215912320672743],[111.26811268112681,1.6266569638769255],[111.24651246512468,1.633411272956451],[111.23931239312395,1.6384770047661021],[111.22131221312213,1.6519856229251673],[111.21051210512104,1.6519856229251673],[111.20331203312037,1.6519856229251673],[111.18171181711818,1.6570513547348185],[111.17451174511746,1.6570513547348185],[111.17451174511746,1.6587399320046927],[111.17091170911709,1.6722485501637578],[111.160111601116,1.6874457455926972],[111.15651156511564,1.6925114774023484],[111.15291152911533,1.6958886319421111],[111.13491134911351,1.699265786481888],[111.13131131311314,1.7026429410216508],[111.12771127711278,1.7060200955614135],[111.10251102511029,1.7465459500385947],[111.09891098910992,1.7600545681976598],[111.09531095310956,1.7752517636265992],[111.10251102511029,1.7803174954362504],[111.12411124111242,1.7853832272459016],[111.13131131311314,1.792137536325427],[111.12771127711278,1.7972032681350782],[111.11331113311132,1.8073347317543806],[111.10971109711096,1.8157776181037804],[111.11331113311132,1.8360405453423851],[111.12051120511205,1.8546148953110873],[111.14211142111424,1.888386440708743],[111.17451174511746,1.9525523769642916],[111.20331203312037,2.0454241268078306],[111.20691206912068,2.069064208586198],[111.21051210512104,2.074129940395835],[111.2249122491225,2.072441363125961],[111.24291242912432,2.065687054046421],[111.26811268112681,2.0673756313163096],[111.24291242912432,2.0893271358247887],[111.23931239312395,2.112967217603142],[111.25371253712541,2.126475835762207],[111.27171271712717,2.1247872584923186],[111.29331293312936,2.118032949412793],[111.32931329313294,2.1095900630633793],[111.33651336513367,2.112967217603142],[111.35091350913513,2.121410103952556],[111.3581135811358,2.1281644130320814],[111.37611376113762,2.153493072080323],[111.37971379713798,2.161935958429737],[111.36891368913689,2.170378844779151],[111.3581135811358,2.1670016902393883],[111.34731347313476,2.1551816493502116],[111.34011340113403,2.1315415675718583],[111.32931329313294,2.1281644130320814],[111.31851318513185,2.1332301448417326],[111.289712897129,2.1501159175405604],[111.27171271712717,2.153493072080323],[111.19971199712,2.143361608461035],[111.18531185311855,2.145050185730909],[111.17811178111782,2.1551816493502116],[111.17811178111782,2.178821731128565],[111.18531185311855,2.1940189265575185],[111.19971199712,2.210904699256332],[111.22131221312213,2.2210361628756345],[111.23931239312395,2.2159704310659833],[111.22851228512286,2.2345447810346997],[111.21051210512104,2.2429876673841136],[111.19251192511928,2.2463648219238763],[111.18531185311855,2.2531191310034018],[111.18531185311855,2.271693480972118],[111.19971199712,2.3189736445288247],[111.20691206912068,2.3882053125940246],[111.22131221312213,2.416911126182029],[111.24651246512468,2.435485476150731],[111.25371253712541,2.4185997034519175],[111.26811268112681,2.411845394372378],[111.30051300513009,2.4000253534832012],[111.31131311313112,2.3915824671337873],[111.33651336513367,2.35949949900602],[111.34731347313476,2.3527451899264804],[111.35091350913513,2.351056612656606],[111.3581135811358,2.3443023035770665],[111.36531365313652,2.3409251490373038],[111.37251372513725,2.3426137263071922],[111.40491404914053,2.3645652308156713],[111.41571415714157,2.367942385355434],[111.44811448114484,2.373008117165071],[111.45531455314557,2.3713195398951967],[111.47331473314733,2.3578109217361316],[111.49491494914952,2.345990880846955],[111.48411484114843,2.3645652308156713],[111.4661146611466,2.384828158054262],[111.43371433714339,2.4152225489121406],[111.4229142291423,2.4270425898013173],[111.4121141211412,2.469257021548387],[111.40491404914053,2.4844542169773405],[111.43731437314375,2.482765639707452],[111.46251462514624,2.474322753358038],[111.48771487714879,2.474322753358038],[111.50571505715061,2.491208526056866],[111.51291512915128,2.487831371517103],[111.51291512915128,2.4861427942472147],[111.51651516515165,2.487831371517103],[111.52011520115201,2.491208526056866],[111.49851498514988,2.49965141240628],[111.46251462514624,2.508094298755694],[111.44451444514448,2.518225762374996],[111.43371433714339,2.5283572259942844],[111.4229142291423,2.540177266883461],[111.41571415714157,2.5553744623124146],[111.41931419314193,2.579014544090768],[111.43371433714339,2.641491903076428],[111.44091440914411,2.680329180283735],[111.44811448114484,2.693837798442786],[111.45891458914588,2.7056578393319626],[111.5309153091531,2.7613808892380973],[111.63891638916391,2.8289239800334087],[111.67131671316713,2.842432598192474],[111.8621186211862,2.8812698753997665],[112.01332013320132,2.8863356072094177],[112.2977229772298,2.9606330070842546],[112.57492574925749,3.033241829689217],[112.72612726127261,3.0653247978169844],[112.78732787327874,3.090653456865226],[112.8017280172802,3.090653456865226],[112.97452974529745,3.1446879295014725],[113.00693006930072,3.1615737022003003],[113.06093060930613,3.2189853293763093],[113.08253082530825,3.2561340293137278],[113.0681306813068,3.279774111092081],[113.07533075330753,3.288216997441495],[113.10413104131044,3.305102770140323],[113.15093150931511,3.3473172018873925],[113.1617316173162,3.354071510966932],[113.16533165331657,3.362514397316346],[113.20133201332015,3.414860292682704],[113.27693276932769,3.4840919607478895],[113.2949329493295,3.5111091970660198],[113.29853298532987,3.5195520834154337],[113.30213302133023,3.5279949697648476],[113.30213302133023,3.5499464742733124],[113.30933309333096,3.560077937892615],[113.33093330933309,3.5769637105914427],[113.33813338133382,3.583718019670968],[113.34533345333455,3.5938494832902705],[113.39213392133922,3.647883955926517],[113.41373413734141,3.688409810403698],[113.42453424534244,3.7120498921820513],[113.42453424534244,3.7340013966905303],[113.43533435334353,3.7525757466592466],[113.45333453334536,3.7694615193580745],[113.4929349293493,3.793101601136428],[113.73773737737378,4.000796605331999],[113.94653946539466,4.274346123052993],[113.96813968139685,4.321626286609714],[113.96093960939612,4.362152141086895],[113.98253982539825,4.394235109214662],[113.99333993339934,4.436449540961732],[113.99333993339934,4.483729704518453],[113.96813968139685,4.57829003163188],[113.97533975339752,4.595175804330708],[114.00054000540007,4.6019301134102335],[114.25254252542527,4.59348722706082],[114.3281432814328,4.606995845219885],[114.39654396543966,4.645833122427192],[114.49374493744938,4.6812932450947216],[114.52974529745296,4.693113285983912],[114.55134551345515,4.715064790492377],[114.5657456574566,4.743770604080382],[114.60174601746019,4.779230726747926],[114.72414724147245,4.875479631131242],[114.76014760147604,4.899119712909595],[114.92934929349292,5.000434349102562],[115.05895058950591,5.0544688217388085],[115.0841508415084,5.057845976278571],[115.10215102151022,5.049403089929157],[115.10215102151022,5.037583049039981],[115.08775087750877,5.025763008150804],[115.05895058950591,5.012254389991739],[115.04815048150482,4.998745771832674],[115.03375033750336,4.959908494625367],[115.030150301503,4.94808845373619],[115.02295022950233,4.934579835577125],[114.99054990549905,4.904185444719246],[114.98334983349832,4.888988249290293],[114.99414994149942,4.894053981099944],[115.00135001350014,4.900808290179484],[115.00855008550087,4.907562599259009],[115.0157501575016,4.916005485608423],[115.02295022950233,4.895742558369832],[115.02295022950233,4.8569052811625255],[115.030150301503,4.8214451584949956],[115.04815048150482,4.801182231256405],[115.06615066150664,4.813002272145582],[115.08775087750877,4.8349537766540465],[115.10935109351095,4.846773817543237],[115.13095130951308,4.851839549352874],[115.13095130951308,4.863659590242065],[115.12375123751241,4.878856785671005],[115.11655116551168,4.895742558369832],[115.12015120151204,4.904185444719246],[115.12375123751241,4.907562599259009],[115.13455134551344,4.9092511765288975],[115.14535145351454,4.9092511765288975],[115.16335163351636,4.907562599259009],[115.17775177751781,4.9092511765288975],[115.18855188551885,4.9176940628783115],[115.19935199351994,4.951465608275953],[115.21015210152103,4.959908494625367],[115.22455224552249,4.958219917355493],[115.23535235352352,4.9447112991964275],[115.23895238952389,4.937956990116902],[115.24255242552425,4.936268412847014],[115.26415264152644,4.936268412847014],[115.27495274952753,4.934579835577125],[115.28575285752856,4.931202681037362],[115.29295292952929,4.926136949227711],[115.30375303753038,4.905874021989121],[115.3217532175322,4.900808290179484],[115.34335343353433,4.899119712909595],[115.35775357753579,4.902496867449358],[115.36855368553688,4.910939753798772],[115.40455404554046,4.9447112991964275],[115.40815408154083,4.949777031006079],[115.44775447754478,4.985237153673609],[115.48015480154805,5.025763008150804],[115.49095490954909,5.0325173172303295],[115.51255512555127,5.035894471770092],[115.5305553055531,5.044337358119506],[115.54855548555486,5.056157399008683],[115.55575555755559,5.067977439897859],[115.56295562955631,5.083174635326813],[115.57015570155704,5.123700489803994],[115.57015570155704,5.160849189741413],[115.5737557375574,5.1692920760908265],[115.58455584555844,5.189555003329417],[115.59175591755917,5.197997889678831],[115.60255602556026,5.2047521987583565],[115.60615606156063,5.211506507837896],[115.5989559895599,5.225015125996961],[115.55935559355595,5.208129353298133],[115.52335523355237,5.208129353298133],[115.49095490954909,5.223326548727073],[115.4009540095401,5.299312525871798],[115.39735397353974,5.309443989491086],[115.4009540095401,5.3178868758405],[115.4009540095401,5.32464118492004],[115.39015390153901,5.326329762189914],[115.38655386553864,5.32464118492004],[115.36495364953652,5.307755412221212],[115.36135361353615,5.319575453110389],[115.36135361353615,5.333084071269454],[115.36855368553688,5.349969843968282],[115.37575375753761,5.382052812096049],[115.38295382953828,5.395561430255114],[115.39015390153901,5.405692893874402],[115.39375393753937,5.412447202953942],[115.40455404554046,5.4242672438431185],[115.4549545495455,5.454661634700997],[115.46935469354696,5.474924561939602],[115.48015480154805,5.4901217573685415],[115.54855548555486,5.540779075465025],[115.58455584555844,5.616765052609736],[115.60615606156063,5.6353394025784525],[115.62055620556208,5.613387898069973],[115.58455584555844,5.549221961814439],[115.60615606156063,5.520516148226434],[115.60975609756099,5.530647611845723],[115.61335613356135,5.557664848163853],[115.62055620556208,5.567796311783141],[115.6529565295653,5.5390904981951365],[115.67455674556749,5.528959034575848],[115.76095760957611,5.523893302766197],[115.78975789757897,5.525581880036071],[115.81855818558188,5.534024766385485],[115.84735847358473,5.559353425433727],[115.87615876158765,5.599879279910908],[115.89415894158941,5.643782288927866],[115.9049590495905,5.6843081434050475],[115.9157591575916,5.728211152422006],[115.91935919359196,5.746785502390708],[115.93015930159305,5.763671275089536],[115.94455944559445,5.775491315978712],[116.03456034560344,5.824460056805307],[116.05256052560526,5.843034406774024],[116.05616056160562,5.864985911282503],[116.05976059760599,5.910577497569335],[116.06696066960671,5.930840424807926],[116.12816128161285,6.030466483731004],[116.14256142561425,6.072680915478074],[116.12456124561248,6.103075306335953],[116.1029610296103,6.094632419986539],[116.09576095760957,6.108141038145604],[116.10656106561066,6.12671538811432],[116.13536135361352,6.136846851733608],[116.15336153361534,6.146978315352911],[116.20016200162001,6.217898560687985],[116.2217622176222,6.236472910656687],[116.2361623616236,6.243227219736227],[116.25056250562506,6.246604374275989],[116.26496264962651,6.241538642466338],[116.27936279362797,6.234784333386813],[116.290162901629,6.233095756116924],[116.29736297362973,6.243227219736227],[116.29376293762937,6.275310187863994],[116.27936279362797,6.278687342403757],[116.26136261362615,6.268555878784468],[116.2361623616236,6.26686730151458],[116.2361623616236,6.271933033324231],[116.26496264962651,6.2871302287531705],[116.27936279362797,6.304016001451998],[116.28296282962833,6.307393155991761],[116.290162901629,6.30908173326165],[116.31176311763119,6.307393155991761],[116.31896318963192,6.314147465071301],[116.32256322563228,6.3175246196110635],[116.32256322563228,6.322590351420715],[116.32976329763301,6.354673319548482],[116.33336333363337,6.359739051358133],[116.33696336963368,6.368181937707547],[116.34776347763477,6.380001978596724],[116.43776437764376,6.447545069392035],[116.45216452164522,6.4627422648209745],[116.47016470164704,6.47625088298004],[116.4881648816488,6.4846937693294535],[116.50256502565026,6.494825232948742],[116.50976509765098,6.516776737457221],[116.50976509765098,6.535351087425923],[116.51336513365135,6.553925437394639],[116.52056520565208,6.5691226328235786],[116.53496534965353,6.57418836463323],[116.5529655296553,6.587696982792295],[116.61416614166143,6.670437269016546],[116.62856628566288,6.685634464445485],[116.63936639366392,6.69914308260455],[116.64656646566465,6.7177174325732665],[116.64656646566465,6.743046091621508],[116.64656646566465,6.77681763701915],[116.64656646566465,6.786949100638452],[116.65016650166501,6.793703409717978],[116.66456664566647,6.810589182416805],[116.66816668166683,6.820720646036108],[116.66456664566647,6.859557923243415],[116.66816668166683,6.876443695942228],[116.69696696966969,6.8899523141012935],[116.70416704167042,6.905149509530247],[116.71496714967151,6.94398678673754],[116.71496714967151,6.965938291246019],[116.71856718567187,6.976069754865321],[116.7257672576726,6.979446909405084],[116.72936729367296,6.982824063944847],[116.740167401674,6.998021259373786],[116.74736747367473,7.009841300262963],[116.75456754567546,7.018284186612377],[116.76536765367655,7.025038495691916],[116.77616776167764,7.0267270729617906],[116.779767797678,7.023349918422028],[116.79056790567904,6.9997098366436745],[116.83376833768341,6.972692600325544],[116.83736837368377,6.962561136706256],[116.85176851768517,6.8899523141012935],[116.83376833768341,6.900083777720596],[116.82296822968232,6.903460932260359],[116.81936819368195,6.900083777720596],[116.81216812168122,6.8680008095928144],[116.81216812168122,6.8629350777831775],[116.82296822968232,6.852803614163875],[116.83736837368377,6.847737882354224],[116.85176851768517,6.83929499600481],[116.8589685896859,6.817343491496345],[116.85536855368554,6.778506214289038],[116.84456844568444,6.751488977970922],[116.81216812168122,6.704208814414201],[116.7941679416794,6.670437269016546],[116.779767797678,6.626534259999602],[116.78336783367837,6.591074137332058],[116.82296822968232,6.580942673712769],[116.84456844568444,6.592762714601946],[116.86256862568627,6.611337064570648],[116.87336873368736,6.628222837269476],[116.88416884168845,6.63666572361889],[116.89496894968948,6.641731455428541],[116.94176941769416,6.683945887175611],[116.97416974169744,6.707585968953964],[116.98136981369817,6.721094587113029],[116.98496984969853,6.754866132510685],[116.9885698856989,6.759931864320322],[116.99576995769957,6.76162044159021],[117.0029700297003,6.766686173399862],[117.01737017370175,6.793703409717978],[117.05337053370533,6.830852109655396],[117.0569705697057,6.84604930508435],[117.05337053370533,6.86631223232294],[117.02817028170284,6.910215241339884],[117.0317703177032,6.930478168578475],[117.03897038970393,6.9422982094676655],[117.0461704617046,6.94398678673754],[117.0569705697057,6.940609632197777],[117.06777067770679,6.937232477658014],[117.07497074970752,6.940609632197777],[117.08217082170825,6.949052518547191],[117.08577085770861,6.955806827626716],[117.08217082170825,6.959183982166493],[117.07497074970752,6.96424971397613],[117.07137071370715,6.974381177595433],[117.07497074970752,6.986201218484609],[117.07857078570788,6.992955527564135],[117.08937089370897,6.994644104834023],[117.10017100171001,6.991266950294261],[117.1109711097111,6.987889795754498],[117.11817118171183,6.986201218484609],[117.12897128971292,6.991266950294261],[117.14337143371432,7.003086991183437],[117.15057150571505,7.003086991183437],[117.15777157771578,6.998021259373786],[117.18297182971833,6.987889795754498],[117.19017190171905,6.986201218484609],[117.19377193771936,6.981135486674958],[117.24777247772477,6.950741095817079],[117.25137251372513,6.945675364007428],[117.2549725497255,6.937232477658014],[117.25857258572586,6.9203467049591865],[117.25137251372513,6.873066541402466],[117.24777247772477,6.8629350777831775],[117.23337233372337,6.856180768703638],[117.229772297723,6.837606418734936],[117.229772297723,6.817343491496345],[117.23697236972373,6.800457718797517],[117.27297272972731,6.753177555240796],[117.27657276572768,6.736291782541969],[117.28017280172804,6.673814423556308],[117.2837728377284,6.6569286508574805],[117.29457294572944,6.63666572361889],[117.3089730897309,6.628222837269476],[117.34857348573485,6.6299114145393645],[117.3629736297363,6.624845682729713],[117.37737377373776,6.613025641840537],[117.39897398973989,6.589385560062183],[117.42417424174243,6.565745478283816],[117.44217442174426,6.552236860124751],[117.46017460174602,6.547171128315114],[117.47457474574747,6.552236860124751],[117.48537485374857,6.562368323744053],[117.51057510575106,6.602894178221234],[117.52497524975252,6.621468528189951],[117.53217532175324,6.621468528189951],[117.53577535775361,6.606271332760997],[117.53937539375397,6.5775655191729925],[117.54297542975434,6.5775655191729925],[117.56457564575646,6.553925437394639],[117.5609756097561,6.555614014664528],[117.55737557375573,6.5505482828548764],[117.55737557375573,6.545482551045225],[117.55737557375573,6.540416819235574],[117.5609756097561,6.5387282419657],[117.57537575375756,6.535351087425923],[117.57897578975792,6.533662510156049],[117.59337593375938,6.5201538919969835],[117.60417604176041,6.515088160187332],[117.6149761497615,6.513399582917458],[117.62937629376296,6.5201538919969835],[117.64017640176405,6.521842469266872],[117.65097650976509,6.516776737457221],[117.67617676176764,6.4897595011390905],[117.68697686976873,6.472873728440277],[117.69417694176946,6.450922223931798],[117.70137701377013,6.450922223931798],[117.70497704977049,6.459365110281212],[117.71217712177122,6.464430842090863],[117.71577715777158,6.4627422648209745],[117.72297722977231,6.457676533011323],[117.72657726577268,6.450922223931798],[117.72657726577268,6.444167914852258],[117.72657726577268,6.43403645123297],[117.73017730177304,6.423904987613668],[117.7337773377734,6.413773523994379],[117.74097740977413,6.3968877512955515],[117.7445774457745,6.390133442216012],[117.74097740977413,6.380001978596724],[117.7337773377734,6.37155909224731],[117.73017730177304,6.363116205897896],[117.73737737377377,6.336098969579766],[117.73017730177304,6.270244456054343],[117.72297722977231,6.255047260625403],[117.70857708577086,6.253358683355515],[117.67617676176764,6.258424415165166],[117.65457654576545,6.253358683355515],[117.63657636576369,6.239850065196464],[117.60777607776078,6.214521406148222],[117.60057600576005,6.197635633449394],[117.60417604176041,6.182438438020441],[117.6257762577626,6.157109778972199],[117.64377643776442,6.118272501764906],[117.65817658176582,6.111518192685367],[117.66177661776618,6.10645246087573],[117.66177661776618,6.096320997256427],[117.66537665376654,6.087878110907013],[117.66537665376654,6.079435224557599],[117.66177661776618,6.067615183668423],[117.65457654576545,6.059172297319009],[117.64377643776442,6.055795142779246],[117.63657636576369,6.052417988239483],[117.63297632976332,6.040597947350292],[117.64017640176405,6.023712174651479],[117.65457654576545,6.020335020111702],[117.66897668976691,6.013580711032176],[117.67617676176764,5.988252051983935],[117.66897668976691,5.973054856554995],[117.65457654576545,5.957857661126042],[117.61857618576187,5.937594733887451],[117.4925749257493,5.8953803021403814],[117.46737467374675,5.868363065822265],[117.48537485374857,5.871740220362028],[117.54297542975434,5.89706887941027],[117.56817568175683,5.902134611219921],[117.64017640176405,5.903823188489795],[117.70857708577086,5.912266074839209],[117.75537755377553,5.905511765759684],[117.77337773377735,5.907200343029572],[117.78057780577808,5.919020383918749],[117.77337773377735,5.944349042966991],[117.78057780577808,5.951103352046516],[117.79137791377917,5.949414774776628],[117.80577805778057,5.946037620236865],[117.82017820178203,5.944349042966991],[117.83817838178385,5.946037620236865],[117.88497884978852,5.954480506586279],[117.89217892178925,5.961234815665819],[117.89937899378992,5.9747434338248695],[117.91377913779138,5.986563474714046],[117.94257942579429,6.0051378246827625],[117.97497974979751,6.047352256429832],[117.99297992979933,6.05748372004912],[117.9965799657997,6.0625494518587715],[118.00378003780037,6.06423802912866],[118.01818018180182,6.060860874588897],[118.05058050580504,6.025400751921353],[118.05418054180541,6.016957865571939],[118.05418054180541,6.0051378246827625],[118.05418054180541,5.9966949383333485],[118.07218072180723,5.986563474714046],[118.07218072180723,5.9747434338248695],[118.07218072180723,5.954480506586279],[118.07578075780759,5.930840424807926],[118.1189811898119,5.875117374901791],[118.12618126181263,5.87005164309214],[118.12618126181263,5.863297334012614],[118.09738097380978,5.824460056805307],[118.07938079380796,5.816017170455893],[118.05778057780577,5.809262861376368],[118.03618036180364,5.807574284106494],[118.01818018180182,5.814328593186019],[118.0001800018,5.809262861376368],[117.93897938979393,5.814328593186019],[117.92097920979211,5.809262861376368],[117.91017910179102,5.797442820487191],[117.91017910179102,5.783934202328126],[117.91737917379174,5.778868470518475],[117.92097920979211,5.7721141614389495],[117.95337953379533,5.69443960702435],[117.96057960579606,5.68768529794481],[117.96417964179642,5.685996720674936],[117.97137971379715,5.689373875214699],[117.98217982179824,5.691062452484587],[117.9965799657997,5.696128184294224],[118.03618036180364,5.7147025342629405],[118.05418054180541,5.718079688802703],[118.06138061380614,5.716391111532815],[118.06858068580686,5.707948225183401],[118.07938079380796,5.704571070643638],[118.08658086580868,5.706259647913527],[118.09738097380978,5.711325379723178],[118.10818108181081,5.713013956993052],[118.11538115381154,5.707948225183401],[118.12618126181263,5.6927510297544615],[118.13338133381336,5.689373875214699],[118.14418144181445,5.69443960702435],[118.15138151381512,5.704571070643638],[118.15138151381512,5.7147025342629405],[118.14778147781476,5.724833997882229],[118.15498154981549,5.7417197705810565],[118.15858158581585,5.748474079660596],[118.16578165781658,5.75691696601001],[118.16578165781658,5.763671275089536],[118.15858158581585,5.782245625058252],[118.16218162181622,5.794065665947429],[118.17658176581767,5.805885706836605],[118.21978219782198,5.809262861376368],[118.2629826298263,5.827837211345084],[118.28458284582848,5.822771479535433],[118.33498334983352,5.795754243217303],[118.34218342183425,5.794065665947429],[118.34578345783461,5.79913139775708],[118.35658356583565,5.810951438646256],[118.36378363783638,5.814328593186019],[118.37458374583747,5.809262861376368],[118.38538385383856,5.804197129566717],[118.39258392583929,5.800819975026954],[118.41058410584105,5.795754243217303],[118.51138511385113,5.7366540387714196],[118.54738547385477,5.707948225183401],[118.56178561785617,5.699505338834001],[118.579785797858,5.691062452484587],[118.59418594185945,5.682619566135173],[118.60138601386012,5.669110947976108],[118.59418594185945,5.658979484356806],[118.58698586985872,5.653913752547155],[118.58338583385836,5.650536598007392],[118.579785797858,5.645470866197755],[118.5689856898569,5.58974781629162],[118.56178561785617,5.567796311783141],[118.55818558185581,5.5475333845445505],[118.56538565385654,5.525581880036071],[118.57258572585727,5.525581880036071],[118.58338583385836,5.550910539084313],[118.58698586985872,5.56273057997349],[118.59418594185945,5.571173466322904],[118.60138601386012,5.581304929942206],[118.59778597785981,5.608322166260322],[118.60138601386012,5.618453629879625],[118.63018630186303,5.637027979848341],[118.65178651786516,5.637027979848341],[118.66978669786698,5.623519361689276],[118.71658716587166,5.566107734513267],[118.73818738187384,5.5475333845445505],[118.75258752587524,5.540779075465025],[118.78138781387815,5.535713343655374],[118.79938799387998,5.522204725496309],[118.81378813788137,5.501941798257718],[118.8209882098821,5.478301716479365],[118.82818828188283,5.483367448289002],[118.8317883178832,5.488433180098653],[118.8317883178832,5.495187489178193],[118.8317883178832,5.505318952797481],[118.87858878588787,5.469858830129951],[118.89658896588969,5.4647930983203],[118.91818918189182,5.454661634700997],[118.93618936189364,5.434398707462407],[118.939789397894,5.412447202953942],[118.92178921789218,5.4023157393346395],[118.93258932589328,5.393872852985226],[118.94698946989473,5.388807121175574],[118.9649896498965,5.388807121175574],[118.97578975789759,5.395561430255114],[118.97938979389795,5.409070048414165],[118.97218972189722,5.419201512033467],[118.97218972189722,5.427644398382881],[118.98298982989832,5.436087284732295],[119.0081900819008,5.436087284732295],[119.05499054990548,5.410758625684053],[119.08739087390876,5.409070048414165],[119.16299162991629,5.446218748351583],[119.18819188191884,5.451284480161235],[119.2061920619206,5.442841593811821],[119.22059220592206,5.427644398382881],[119.24219242192424,5.395561430255114],[119.26379263792637,5.373609925746635],[119.27459274592746,5.361789884857458],[119.27819278192783,5.3449041121586305]]],[[[126.56826568265683,7.300276590682799],[126.57906579065792,7.295210858873148],[126.61146611466114,7.276636508904431],[126.61866618666187,7.276636508904431],[126.61146611466114,7.258062158935729],[126.58986589865901,7.225979190807948],[126.58266582665829,7.20909341810912],[126.57906579065792,7.200650531759706],[126.5718657186572,7.198961954489832],[126.56466564665647,7.195584799950069],[126.55746557465574,7.192207645410306],[126.55026550265507,7.183764759060892],[126.52866528665288,7.129730286424646],[126.52146521465215,7.119598822805344],[126.4926649266493,7.089204431947451],[126.47466474664748,7.0655643501690975],[126.46746467464675,7.038547113850967],[126.46746467464675,7.003086991183437],[126.45306453064529,6.982824063944847],[126.41706417064171,6.979446909405084],[126.37746377463776,6.987889795754498],[126.3486634866349,6.9997098366436745],[126.32346323463236,6.9777583321351955],[126.3090630906309,6.949052518547191],[126.30186301863017,6.918658127689298],[126.30186301863017,6.893329468641056],[126.3090630906309,6.88150942775188],[126.33426334263345,6.857869345973526],[126.34506345063454,6.849426459624112],[126.3486634866349,6.834229264195173],[126.3486634866349,6.812277759686694],[126.3486634866349,6.793703409717978],[126.33786337863381,6.786949100638452],[126.3090630906309,6.798769141527629],[126.29106291062914,6.825786377845759],[126.26946269462695,6.8899523141012935],[126.24426244262446,6.918658127689298],[126.21186211862118,6.933855323118252],[126.19026190261906,6.925412436768838],[126.19386193861942,6.883198005021768],[126.18666186661869,6.883198005021768],[126.18306183061833,6.8899523141012935],[126.17226172261724,6.903460932260359],[126.16866168661687,6.883198005021768],[126.17946179461796,6.861246500513289],[126.19386193861942,6.840983573274698],[126.20826208262082,6.8055234506071685],[126.22626226262264,6.790326255178215],[126.24426244262446,6.77681763701915],[126.2550625506255,6.766686173399862],[126.25866258662586,6.7447346688913825],[126.24426244262446,6.704208814414201],[126.229862298623,6.616402796380299],[126.22626226262264,6.4694965739005],[126.21186211862118,6.390133442216012],[126.20466204662046,6.298950269642347],[126.20106201062009,6.283753074213408],[126.18666186661869,6.2871302287531705],[126.18306183061833,6.300638846912236],[126.17946179461796,6.351296165008719],[126.1758617586176,6.363116205897896],[126.13986139861402,6.386756287676249],[126.13626136261365,6.395199174025663],[126.13626136261365,6.40701921491484],[126.13986139861402,6.420527833073905],[126.13626136261365,6.430659296693207],[126.11466114661147,6.477939460249914],[126.10026100261001,6.493136655678867],[126.0966609666097,6.513399582917458],[126.08226082260825,6.640042878158653],[126.08586085860861,6.66368295993702],[126.0966609666097,6.724471741652792],[126.0966609666097,6.746423246161271],[126.08586085860861,6.781883368828801],[126.08226082260825,6.80383487333728],[126.08226082260825,6.830852109655396],[126.07866078660788,6.842672150544587],[126.06786067860679,6.847737882354224],[126.0426604266043,6.856180768703638],[126.02106021060212,6.86631223232294],[125.98505985059853,6.9203467049591865],[125.9778597785978,6.938921054927889],[125.98505985059853,6.986201218484609],[125.98505985059853,7.0064641457232],[125.97425974259744,7.028415650231679],[125.91665916659167,7.085827277407688],[125.90225902259021,7.101024472836627],[125.89865898658985,7.116221668265581],[125.89145891458918,7.156747522742762],[125.85185851858517,7.2546850043959665],[125.84825848258481,7.293522281603259],[125.85185851858517,7.315473786111738],[125.85185851858517,7.335736713350329],[125.8446584465845,7.350933908779268],[125.83025830258305,7.354311063319045],[125.82665826658268,7.355999640588919],[125.80865808658086,7.350933908779268],[125.74745747457473,7.308719477032213],[125.68625686256865,7.274947931634557],[125.67545675456756,7.264816468015255],[125.66825668256683,7.256373581665841],[125.65745657456574,7.237799231697139],[125.65385653856538,7.21584772718866],[125.6610566105661,7.149993213663237],[125.65745657456574,7.129730286424646],[125.65385653856538,7.119598822805344],[125.64665646656465,7.107778781916167],[125.64305643056434,7.099335895566753],[125.63945639456398,7.089204431947451],[125.60345603456034,7.055432886549795],[125.57465574655748,7.038547113850967],[125.54225542255426,7.0301042275015675],[125.50985509855099,7.014907032072614],[125.48825488254886,6.979446909405084],[125.4846548465485,6.935543900388126],[125.48105481054813,6.913592395879661],[125.47025470254704,6.903460932260359],[125.42345423454236,6.849426459624112],[125.40185401854018,6.812277759686694],[125.38745387453878,6.768374750669736],[125.38025380253805,6.721094587113029],[125.37665376653769,6.673814423556308],[125.38025380253805,6.6569286508574805],[125.39465394653945,6.618091373650188],[125.39825398253981,6.597828446411583],[125.40545405454054,6.589385560062183],[125.42345423454236,6.582631250982644],[125.43425434254345,6.587696982792295],[125.43065430654309,6.616402796380299],[125.46665466654667,6.59445129187182],[125.50985509855099,6.5387282419657],[125.53505535055353,6.513399582917458],[125.5530555305553,6.525219623806635],[125.57465574655748,6.516776737457221],[125.58905589055894,6.499890964758393],[125.59625596255961,6.481316614789677],[125.59625596255961,6.442479337582384],[125.59985599855997,6.42728214215343],[125.62865628656289,6.366493360437659],[125.63945639456398,6.3529847422785934],[125.64305643056434,6.3445418559291795],[125.64665646656465,6.332721815040003],[125.64305643056434,6.310770310531538],[125.64665646656465,6.298950269642347],[125.65025650256501,6.292195960562822],[125.65745657456574,6.280375919673645],[125.70785707857078,6.1503554698926735],[125.71145711457115,6.131781119923971],[125.71145711457115,6.111518192685367],[125.70785707857078,6.089566688176902],[125.69705697056969,6.070992338208185],[125.69345693456938,6.060860874588897],[125.70065700657005,6.040597947350292],[125.69705697056969,6.030466483731004],[125.69345693456938,6.02202359738159],[125.68625686256865,5.993317783793586],[125.66825668256683,5.949414774776628],[125.59625596255961,5.86160875674274],[125.4990549905499,5.726522575152117],[125.43785437854382,5.618453629879625],[125.419854198542,5.598190702641034],[125.40185401854018,5.581304929942206],[125.38745387453878,5.574550620862681],[125.37305373053732,5.572862043592792],[125.32265322653228,5.576239198132555],[125.30825308253083,5.579616352672318],[125.3010530105301,5.591436393561494],[125.3010530105301,5.670799525245982],[125.29385293852937,5.691062452484587],[125.2866528665287,5.706259647913527],[125.27945279452797,5.716391111532815],[125.26505265052651,5.723145420612354],[125.24345243452433,5.724833997882229],[125.23625236252366,5.728211152422006],[125.2326523265233,5.7366540387714196],[125.22905229052293,5.746785502390708],[125.22545225452257,5.75691696601001],[125.2218522185222,5.767048429629298],[125.21105211052111,5.7721141614389495],[125.20025200252002,5.775491315978712],[125.19305193051929,5.778868470518475],[125.18225182251825,5.79913139775708],[125.18585185851862,5.814328593186019],[125.19305193051929,5.8295257886149585],[125.20025200252002,5.844722984043912],[125.20025200252002,5.8599201794728515],[125.20745207452075,5.876805952171679],[125.22545225452257,5.903823188489795],[125.26505265052651,5.949414774776628],[125.27945279452797,5.979809165634521],[125.27945279452797,6.018646442841828],[125.2758527585276,6.035532215540655],[125.26145261452615,6.072680915478074],[125.26145261452615,6.0845009563672505],[125.25065250652506,6.0929438427166644],[125.23985239852402,6.094632419986539],[125.22905229052293,6.094632419986539],[125.19305193051929,6.094632419986539],[125.17865178651789,6.10645246087573],[125.1678516785168,6.111518192685367],[125.1570515705157,6.108141038145604],[125.1570515705157,6.09969815179619],[125.1570515705157,6.074369492747948],[125.15345153451534,6.06423802912866],[125.14625146251461,6.050729410969595],[125.1138511385114,5.952791929316405],[125.0886508865089,5.885248838521093],[125.07065070650708,5.86160875674274],[125.0490504905049,5.86160875674274],[125.00225002250022,5.871740220362028],[124.96264962649627,5.858231602202963],[124.93744937449378,5.863297334012614],[124.8366483664837,5.912266074839209],[124.81144811448115,5.919020383918749],[124.76824768247684,5.937594733887451],[124.75744757447575,5.937594733887451],[124.74304743047429,5.937594733887451],[124.73224732247326,5.937594733887451],[124.70704707047071,5.946037620236865],[124.64224642246421,5.984874897444172],[124.63504635046354,5.978120588364646],[124.60624606246063,5.991629206523697],[124.59544595445954,5.998383515603237],[124.59184591845917,6.0051378246827625],[124.5882458824588,6.015269288302065],[124.5846458464585,6.02202359738159],[124.57744577445777,6.025400751921353],[124.56304563045632,6.030466483731004],[124.42264422644229,6.109829615415492],[124.36864368643688,6.133469697193846],[124.24624246242462,6.185815592560218],[124.22824228242285,6.197635633449394],[124.2030420304203,6.221275715227748],[124.18864188641885,6.239850065196464],[124.17784177841781,6.276998765133882],[124.16344163441636,6.29388453783271],[124.09864098640986,6.364804783167784],[124.07344073440737,6.401953483105203],[124.05544055440555,6.437413605772733],[124.0410404104041,6.488070923869216],[124.0410404104041,6.510022428377695],[124.03384033840342,6.530285355616286],[124.03384033840342,6.5421053965054625],[124.03744037440373,6.547171128315114],[124.05184051840519,6.548859705584988],[124.05544055440555,6.552236860124751],[124.05544055440555,6.55899116920429],[124.05544055440555,6.646797187238192],[124.05184051840519,6.668748691746657],[124.03384033840342,6.731226050732317],[124.03744037440373,6.758243287050448],[124.0410404104041,6.778506214289038],[124.03744037440373,6.800457718797517],[124.0158401584016,6.808900605146931],[124.0158401584016,6.8055234506071685],[124.00504005040051,6.790326255178215],[123.99783997839978,6.785260523368564],[123.99423994239942,6.788637677908341],[123.99423994239942,6.792014832448103],[123.99063990639905,6.793703409717978],[123.98343983439838,6.7970805642577545],[123.97623976239765,6.80383487333728],[123.96903969039693,6.812277759686694],[123.96543965439656,6.820720646036108],[123.96543965439656,6.8325406869252845],[123.97263972639729,6.851115036894001],[123.97263972639729,6.859557923243415],[123.97623976239765,6.965938291246019],[123.98703987039869,7.014907032072614],[124.03024030240306,7.1145330909956925],[124.05184051840519,7.136484595504172],[124.069840698407,7.141550327313823],[124.09144091440913,7.153370368202999],[124.13104131041314,7.177010449981353],[124.16704167041672,7.20909341810912],[124.18504185041854,7.225979190807948],[124.19584195841958,7.252996427126078],[124.2138421384214,7.269882199824906],[124.22104221042213,7.280013663444194],[124.22104221042213,7.288456549793608],[124.22104221042213,7.3205395179213895],[124.22104221042213,7.345868176969631],[124.22464224642249,7.366131104208222],[124.24624246242462,7.40327980414564],[124.23184231842322,7.415099845034817],[124.21744217442176,7.415099845034817],[124.18864188641885,7.410034113225166],[124.17424174241745,7.415099845034817],[124.16704167041672,7.431985617733645],[124.16344163441636,7.440428504083059],[124.15264152641527,7.44549423589271],[124.14184141841417,7.460691431321649],[124.0950409504095,7.562006067514616],[124.06624066240664,7.6025319219917975],[124.01944019440197,7.6329263128496905],[124.01224012240124,7.634614890119565],[123.95823958239583,7.673452167326872],[123.91143911439116,7.698780826375113],[123.90423904239043,7.692026517295574],[123.88623886238861,7.698780826375113],[123.86463864638648,7.70384655818475],[123.86103861038612,7.70384655818475],[123.8178381783818,7.705535135454639],[123.79263792637926,7.71060086726429],[123.77823778237786,7.724109485423355],[123.72423724237245,7.795029730758429],[123.70263702637027,7.810226926187369],[123.68103681036814,7.81529265799702],[123.65943659436596,7.816981235266894],[123.61623616236164,7.833867007965722],[123.60903609036092,7.8355555852356105],[123.58743587435873,7.838932739775373],[123.52263522635229,7.8355555852356105],[123.50463504635047,7.832178430695848],[123.47943479434798,7.822046967076545],[123.4578345783458,7.811915503457243],[123.44343443434434,7.801784039837955],[123.4470344703447,7.766323917170411],[123.47583475834762,7.739306680852295],[123.49743497434974,7.708912289994402],[123.48663486634865,7.663320703707569],[123.47583475834762,7.653189240088281],[123.46503465034652,7.643057776468979],[123.45423454234543,7.636303467389453],[123.44343443434434,7.6295491583099135],[123.40743407434076,7.622794849230388],[123.40023400234003,7.619417694690625],[123.39663396633966,7.610974808341211],[123.39663396633966,7.600843344721909],[123.39663396633966,7.578891840213444],[123.3930339303393,7.575514685673667],[123.37143371433717,7.587334726562858],[123.36063360633608,7.589023303832732],[123.35343353433535,7.5721375311339045],[123.36783367833681,7.551874603895314],[123.38583385833857,7.533300253926612],[123.39663396633966,7.516414481227784],[123.40383403834039,7.4927743994494165],[123.41823418234185,7.479265781290351],[123.43623436234361,7.467445740401175],[123.45063450634507,7.452248544972235],[123.4578345783458,7.431985617733645],[123.4578345783458,7.408345535955291],[123.45063450634507,7.388082608716687],[123.43983439834398,7.372885413287747],[123.43263432634325,7.3695082587479845],[123.41823418234185,7.372885413287747],[123.38943389433894,7.394836917796226],[123.35703357033572,7.410034113225166],[123.34263342633426,7.420165576844468],[123.3138331383314,7.450559967702347],[123.30303303033031,7.467445740401175],[123.28863288632886,7.477577204020477],[123.28503285032849,7.482642935830128],[123.28503285032849,7.504594440338593],[123.28503285032849,7.513037326688007],[123.28143281432813,7.519791635767547],[123.26343263432636,7.526545944847072],[123.24543245432454,7.524857367577198],[123.22743227432278,7.516414481227784],[123.21663216632169,7.502905863068719],[123.21303213032132,7.489397244909654],[123.19863198631987,7.482642935830128],[123.18423184231841,7.48095435856024],[123.16983169831701,7.486020090369891],[123.1410314103141,7.513037326688007],[123.1266312663127,7.531611676656723],[123.12303123031234,7.5501860266254255],[123.1266312663127,7.5721375311339045],[123.1410314103141,7.5805804174833185],[123.15903159031592,7.582268994753207],[123.17703177031774,7.589023303832732],[123.18783187831878,7.60590907653156],[123.18783187831878,7.626172003770151],[123.17703177031774,7.643057776468979],[123.15183151831519,7.649812085548504],[123.1410314103141,7.661632126437695],[123.13383133831337,7.686960785485937],[123.13383133831337,7.713978021804053],[123.130231302313,7.732552371772769],[123.11943119431197,7.740995258122183],[123.10863108631088,7.732552371772769],[123.09783097830979,7.713978021804053],[123.08343083430833,7.695403671835351],[123.05823058230584,7.666697858247332],[123.05103051030511,7.654877817358155],[123.05103051030511,7.644746353738867],[123.05463054630548,7.634614890119565],[123.05463054630548,7.622794849230388],[123.05103051030511,7.617729117420737],[123.03663036630365,7.609286231071323],[123.03303033030329,7.60590907653156],[123.03303033030329,7.599154767452035],[123.03663036630365,7.594089035642384],[123.04023040230402,7.590711881102621],[123.04023040230402,7.582268994753207],[123.03303033030329,7.563694644784491],[123.01863018630189,7.541743140276012],[123.01143011430116,7.528234522116961],[123.01143011430116,7.513037326688007],[123.01143011430116,7.482642935830128],[123.0078300783008,7.472511472210826],[122.9970299702997,7.467445740401175],[122.98982989829898,7.470822894940952],[122.98622986229861,7.475888626750589],[122.97542975429758,7.479265781290351],[122.97542975429758,7.48095435856024],[122.95022950229503,7.486020090369891],[122.9430294302943,7.499528708528956],[122.92862928629285,7.538365985736249],[122.91782917829181,7.546808872085663],[122.90702907029072,7.5434317175459],[122.89262892628926,7.531611676656723],[122.88182881828817,7.518103058497658],[122.8746287462875,7.50797159487837],[122.8746287462875,7.4927743994494165],[122.8782287822878,7.4843315131000026],[122.8782287822878,7.475888626750589],[122.8638286382864,7.4657571631313004],[122.85302853028531,7.460691431321649],[122.83862838628386,7.459002854051761],[122.8206282062821,7.459002854051761],[122.80622806228064,7.4657571631313004],[122.81342813428137,7.477577204020477],[122.809828098281,7.486020090369891],[122.80262802628027,7.489397244909654],[122.79902799027991,7.489397244909654],[122.79902799027991,7.487708667639765],[122.79542795427955,7.486020090369891],[122.78822788227882,7.4843315131000026],[122.78822788227882,7.486020090369891],[122.78462784627845,7.491085822179542],[122.78822788227882,7.496151553989179],[122.79182791827918,7.499528708528956],[122.79542795427955,7.499528708528956],[122.79182791827918,7.5231687903073095],[122.79542795427955,7.534988831196486],[122.809828098281,7.538365985736249],[122.82782827828277,7.528234522116961],[122.83142831428313,7.5501860266254255],[122.82422824228246,7.563694644784491],[122.81342813428137,7.577203262943556],[122.80622806228064,7.592400458372495],[122.79902799027991,7.654877817358155],[122.79542795427955,7.671763590056983],[122.80262802628027,7.68358363094616],[122.809828098281,7.70384655818475],[122.81342813428137,7.725798062693229],[122.81342813428137,7.742683835392057],[122.80262802628027,7.757881030820997],[122.78102781027809,7.759569608090885],[122.73782737827378,7.754503876281234],[122.73062730627305,7.761258185360774],[122.71622716227165,7.781521112599364],[122.70542705427056,7.78827542167889],[122.65862658626588,7.78827542167889],[122.65142651426515,7.786586844409015],[122.62982629826297,7.776455380789713],[122.61902619026193,7.7747668035198245],[122.59742597425975,7.761258185360774],[122.51102511025113,7.695403671835351],[122.48582485824858,7.666697858247332],[122.44262442624427,7.609286231071323],[122.43542435424354,7.590711881102621],[122.43182431824317,7.578891840213444],[122.45342453424536,7.573826108403793],[122.47142471424718,7.5805804174833185],[122.48582485824858,7.578891840213444],[122.48582485824858,7.553563181165202],[122.47862478624785,7.540054563006137],[122.46782467824681,7.5231687903073095],[122.45342453424536,7.50797159487837],[122.44262442624427,7.499528708528956],[122.449824498245,7.534988831196486],[122.449824498245,7.540054563006137],[122.4390243902439,7.541743140276012],[122.42822428224281,7.533300253926612],[122.42102421024214,7.519791635767547],[122.41742417424177,7.509660172148244],[122.40662406624068,7.499528708528956],[122.359823598236,7.472511472210826],[122.34902349023491,7.452248544972235],[122.35262352623528,7.430297040463756],[122.3706237062371,7.410034113225166],[122.37782377823777,7.391459763256464],[122.37422374223746,7.372885413287747],[122.36342363423637,7.362753949668459],[122.34542345423455,7.332359558810566],[122.33462334623346,7.323916672461152],[122.32382323823242,7.323916672461152],[122.31302313023133,7.323916672461152],[122.29862298622987,7.3205395179213895],[122.28062280622805,7.295210858873148],[122.26622266222665,7.249619272586315],[122.2518225182252,7.165190409092176],[122.24822248222483,7.117910245535455],[122.24462244622447,7.099335895566753],[122.20142201422016,7.041924268390744],[122.16902169021694,6.952429673086954],[122.15462154621548,6.9287895913086],[122.1330213302133,6.913592395879661],[122.12222122221226,6.900083777720596],[122.1186211862119,6.896706623180833],[122.09702097020971,6.896706623180833],[122.08622086220862,6.900083777720596],[122.03942039420394,6.916969550419424],[121.96021960219605,6.957495404896605],[121.93861938619386,6.979446909405084],[121.89901899018992,7.0571214638196835],[121.89901899018992,7.139861750043934],[121.9350193501935,7.217536304458534],[122.00702007020072,7.280013663444194],[122.03942039420394,7.295210858873148],[122.04662046620467,7.300276590682799],[122.05022050220504,7.307030899762324],[122.0538205382054,7.3171623633816125],[122.05022050220504,7.3256052497310264],[122.04302043020431,7.328982404270803],[122.03222032220322,7.339113867890092],[122.03582035820358,7.366131104208222],[122.04662046620467,7.410034113225166],[122.04662046620467,7.442117081352933],[122.04662046620467,7.452248544972235],[122.0538205382054,7.464068585861412],[122.06462064620649,7.48095435856024],[122.06822068220686,7.489397244909654],[122.06822068220686,7.513037326688007],[122.07902079020789,7.528234522116961],[122.08982089820898,7.538365985736249],[122.1078210782108,7.546808872085663],[122.1186211862119,7.556940335704965],[122.13662136621366,7.573826108403793],[122.14742147421475,7.589023303832732],[122.11502115021153,7.6025319219917975],[122.11142111421117,7.6211062719605],[122.12222122221226,7.656566394628044],[122.12222122221226,7.700469403644988],[122.1186211862119,7.722420908153467],[122.10422104221044,7.732552371772769],[122.09702097020971,7.744372412661946],[122.10422104221044,7.771389648980062],[122.12942129421293,7.81529265799702],[122.21582215822161,7.921673025999624],[122.2410224102241,7.965576035016582],[122.2518225182252,7.9807732304455214],[122.26262262622629,7.989216116794935],[122.29142291422914,8.009479044033526],[122.32382323823242,8.01792193038294],[122.359823598236,8.039873434891419],[122.4390243902439,8.066890671209535],[122.46422464224645,8.070267825749298],[122.47862478624785,8.061824939399884],[122.48222482224821,8.070267825749298],[122.48942489424894,8.075333557558949],[122.49662496624967,8.075333557558949],[122.5038250382504,8.068579248479423],[122.52182521825222,8.077022134828837],[122.60102601026011,8.092219330257777],[122.6370263702637,8.109105102956605],[122.65142651426515,8.11585941203613],[122.66942669426697,8.149630957433786],[122.68022680226801,8.16482815286274],[122.68382683826837,8.154696689243437],[122.6910269102691,8.131056607465084],[122.71262712627129,8.119236566575907],[122.73422734227341,8.11585941203613],[122.75942759427596,8.11585941203613],[122.85662856628568,8.132745184734958],[122.86742867428677,8.141188071084372],[122.8782287822878,8.144565225624135],[122.90342903429035,8.144565225624135],[122.91422914229145,8.146253802894023],[122.92502925029254,8.149630957433786],[122.94662946629467,8.161450998322962],[123.00423004230043,8.208731161879683],[123.01503015030153,8.232371243658037],[123.00063000630007,8.250945593626753],[122.96462964629649,8.274585675405106],[122.96102961029612,8.281339984484646],[122.95742957429576,8.301602911723236],[122.95742957429576,8.308357220802762],[122.96462964629649,8.313422952612413],[122.98262982629825,8.32524299350159],[122.98622986229861,8.32524299350159],[122.98622986229861,8.330308725311241],[122.99342993429934,8.335374457120892],[122.9970299702997,8.342128766200418],[122.9970299702997,8.353948807089594],[122.9970299702997,8.364080270708897],[122.99342993429934,8.386031775217361],[122.99342993429934,8.397851816106552],[123.00063000630007,8.41473758880538],[123.02223022230226,8.445131979663259],[123.02583025830262,8.462017752362087],[123.02943029430293,8.473837793251263],[123.04023040230402,8.490723565950091],[123.05463054630548,8.504232184109156],[123.06903069030693,8.514363647728459],[123.08343083430833,8.519429379538096],[123.15903159031592,8.531249420427287],[123.1950319503195,8.541380884046575],[123.21303213032132,8.541380884046575],[123.21663216632169,8.538003729506812],[123.22383223832242,8.524495111347747],[123.23103231032309,8.521117956807984],[123.24183241832418,8.519429379538096],[123.29943299432995,8.524495111347747],[123.31743317433177,8.53293799769716],[123.33183331833317,8.546446615856226],[123.34623346233462,8.57008669763458],[123.34983349833499,8.576841006714119],[123.36423364233644,8.624121170270826],[123.37143371433717,8.634252633890128],[123.38583385833857,8.63762978842989],[123.3930339303393,8.635941211160002],[123.39663396633966,8.63256405662024],[123.40383403834039,8.629186902080477],[123.41103411034112,8.630875479350365],[123.41463414634148,8.634252633890128],[123.42903429034294,8.644384097509416],[123.43623436234361,8.649449829319067],[123.43263432634325,8.661269870208244],[123.40023400234003,8.698418570145662],[123.3930339303393,8.710238611034839],[123.38943389433894,8.718681497384253],[123.39663396633966,8.723747229193904],[123.41103411034112,8.727124383733667],[123.42543425434258,8.727124383733667],[123.43263432634325,8.72205865192403],[123.43623436234361,8.72205865192403],[123.46143461434616,8.706861456495076],[123.47943479434798,8.6950414156059],[123.49023490234902,8.691664261066137],[123.50103501035011,8.693352838336025],[123.5118351183512,8.698418570145662],[123.51543515435156,8.647761252049179],[123.52263522635229,8.622432593000951],[123.54063540635406,8.624121170270826],[123.54423544235442,8.620744015731063],[123.54783547835478,8.619055438461174],[123.56223562235624,8.613989706651537],[123.56943569435697,8.61061255211176],[123.57303573035733,8.603858243032235],[123.58023580235806,8.583595315793644],[123.5910359103591,8.592038202143058],[123.5910359103591,8.602169665762347],[123.5910359103591,8.612301129381649],[123.59463594635946,8.624121170270826],[123.60183601836019,8.63256405662024],[123.61623616236164,8.651138406588956],[123.60183601836019,8.662958447478132],[123.61623616236164,8.671401333827546],[123.63423634236341,8.668024179287784],[123.6306363063631,8.651138406588956],[123.709837098371,8.63256405662024],[123.72423724237245,8.627498324810588],[123.73143731437318,8.619055438461174],[123.73863738637385,8.602169665762347],[123.74583745837458,8.602169665762347],[123.75303753037531,8.61061255211176],[123.76023760237604,8.607235397571998],[123.76743767437677,8.588661047603296],[123.7638376383764,8.588661047603296],[123.77823778237786,8.556578079475514],[123.78183781837822,8.551512347665877],[123.78543785437853,8.538003729506812],[123.8286382863829,8.487346411410329],[123.8430384303843,8.451886288742799],[123.85743857438575,8.409671856995729],[123.86463864638648,8.364080270708897],[123.86823868238685,8.242502707277339],[123.88623886238861,8.18509108010133],[123.8826388263883,8.16482815286274],[123.87183871838721,8.153008111973548],[123.76743767437677,8.058447784860121],[123.74583745837458,8.048316321240833],[123.70263702637027,8.046627743970944],[123.68463684636845,8.036496280351642],[123.67743677436778,8.011167621303414],[123.67743677436778,8.009479044033526],[123.67743677436778,7.999347580414224],[123.67023670236705,7.9807732304455214],[123.67023670236705,7.968953189556345],[123.67383673836741,7.967264612286456],[123.67743677436778,7.963887457746694],[123.68823688236881,7.968953189556345],[123.70263702637027,7.97570749863587],[123.70623706237063,7.9807732304455214],[123.74223742237422,8.001036157684112],[123.87543875438757,8.105727948416842],[123.88623886238861,8.109105102956605],[123.9078390783908,8.112482257496367],[123.92223922239225,8.12261372111567],[123.94383943839438,8.149630957433786],[123.96903969039693,8.168205307402502],[124.00144001440015,8.181713925561567],[124.03744037440373,8.190156811910981],[124.15624156241563,8.190156811910981],[124.19944199441994,8.196911120990507],[124.23184231842322,8.212108316419446],[124.24264242642425,8.225616934578511],[124.25704257042571,8.256011325436404],[124.27144271442717,8.271208520865343],[124.27504275042753,8.281339984484646],[124.27144271442717,8.291471448103934],[124.26424264242644,8.301602911723236],[124.26064260642607,8.311734375342525],[124.26064260642607,8.32524299350159],[124.26424264242644,8.333685879851004],[124.27504275042753,8.350571652549831],[124.27504275042753,8.353948807089594],[124.27144271442717,8.364080270708897],[124.27504275042753,8.369146002518534],[124.2786427864279,8.374211734328185],[124.28224282242826,8.379277466137836],[124.28584285842862,8.384343197947487],[124.29664296642966,8.404606125186078],[124.30024300243002,8.41473758880538],[124.30024300243002,8.451886288742799],[124.30744307443075,8.473837793251263],[124.3218432184322,8.514363647728459],[124.34344343443433,8.5481351931261],[124.37224372243725,8.581906738523756],[124.40464404644047,8.607235397571998],[124.44424444244441,8.624121170270826],[124.46944469444696,8.624121170270826],[124.47664476644769,8.613989706651537],[124.47664476644769,8.598792511222584],[124.48024480244806,8.583595315793644],[124.48384483844842,8.581906738523756],[124.50904509045091,8.576841006714119],[124.50904509045091,8.57515242944423],[124.51624516245164,8.57515242944423],[124.52704527045273,8.571775274904468],[124.54144541445413,8.561643811285165],[124.57024570245704,8.52787226588751],[124.58104581045814,8.521117956807984],[124.5990459904599,8.516052224998333],[124.65664656646567,8.514363647728459],[124.64944649446494,8.495789297759742],[124.64224642246421,8.475526370521152],[124.63504635046354,8.453574866012673],[124.63504635046354,8.431623361504194],[124.64224642246421,8.431623361504194],[124.64944649446494,8.458640597822324],[124.6638466384664,8.475526370521152],[124.68184681846822,8.482280679600677],[124.71064710647107,8.47214921598139],[124.7178471784718,8.480592102330803],[124.73224732247326,8.494100720489854],[124.73584735847362,8.495789297759742],[124.75024750247502,8.499166452299505],[124.75384753847538,8.500855029569394],[124.75384753847538,8.505920761379045],[124.75024750247502,8.51267507045857],[124.74664746647466,8.517740802268222],[124.74664746647466,8.521117956807984],[124.75024750247502,8.551512347665877],[124.75384753847538,8.561643811285165],[124.75744757447575,8.568398120364705],[124.76824768247684,8.586972470333407],[124.7718477184772,8.59710393395271],[124.7718477184772,8.615678283921412],[124.75024750247502,8.651138406588956],[124.74664746647466,8.671401333827546],[124.75024750247502,8.693352838336025],[124.76464764647648,8.705172879225202],[124.77544775447757,8.716992920114379],[124.78624786247866,8.733878692813207],[124.77904779047793,8.752453042781909],[124.77904779047793,8.774404547290388],[124.78624786247866,8.818307556307332],[124.78624786247866,8.90442499707136],[124.77904779047793,8.948328006088303],[124.7826478264783,8.97196808786667],[124.78984789847897,8.990542437835373],[124.80064800648006,9.000673901454675],[124.80784807848079,9.00911678780409],[124.82224822248224,9.014182519613726],[124.83304833048334,9.010805365073963],[124.84384843848437,9.004051055994438],[124.85464854648546,9.004051055994438],[124.86544865448656,9.0074282105342],[124.87624876248765,9.0074282105342],[124.89424894248941,9.00236247872455],[124.9158491584916,8.993919592375136],[124.93024930249305,8.982099551485959],[124.93744937449378,8.970279510596782],[124.94824948249482,8.961836624247368],[125.02745027450277,8.917933615230424],[125.0346503465035,8.911179306150885],[125.05625056250562,8.88247349256288],[125.07425074250745,8.872342028943578],[125.09225092250921,8.84025906081581],[125.10665106651066,8.830127597196523],[125.11745117451176,8.830127597196523],[125.13905139051394,8.843636215355573],[125.16065160651607,8.850390524435113],[125.17505175051753,8.860521988054401],[125.18585185851862,8.875719183483355],[125.19665196651965,8.96014804697748],[125.19305193051929,8.98041097421607],[125.18945189451898,8.985476706025722],[125.18225182251825,8.992231015105261],[125.17865178651789,8.997296746914898],[125.17865178651789,9.0074282105342],[125.17865178651789,9.019248251423377],[125.18945189451898,9.039511178661968],[125.19305193051929,9.051331219551145],[125.19305193051929,9.06483983771021],[125.19305193051929,9.07159414678975],[125.20025200252002,9.078348455869275],[125.20745207452075,9.086791342218689],[125.21825218252184,9.088479919488563],[125.22545225452257,9.078348455869275],[125.23985239852402,9.054708374090922],[125.26865268652688,9.015871096883615],[125.29025290252906,9.000673901454675],[125.31185311853119,8.993919592375136],[125.37665376653769,8.990542437835373],[125.419854198542,8.982099551485959],[125.44145441454418,8.98041097421607],[125.46305463054631,8.985476706025722],[125.51705517055171,9.015871096883615],[125.5278552785528,9.026002560502917],[125.53505535055353,9.04964264228127],[125.54225542255426,9.083414187678926],[125.54225542255426,9.18979455568153],[125.5386553865539,9.206680328380358],[125.53145531455317,9.21681179199966],[125.52425524255244,9.226943255618949],[125.52065520655208,9.238763296508125],[125.52065520655208,9.248894760127428],[125.52065520655208,9.265780532826255],[125.52065520655208,9.27422341917567],[125.51705517055171,9.284354882794958],[125.50985509855099,9.302929232763674],[125.50265502655026,9.32994646908179],[125.4846548465485,9.362029437209571],[125.47745477454777,9.390735250797576],[125.4738547385474,9.39917813714699],[125.46665466654667,9.404243868956641],[125.46665466654667,9.407621023496404],[125.46665466654667,9.439703991624171],[125.46665466654667,9.444769723433822],[125.46305463054631,9.459966918862762],[125.44145441454418,9.515689968768896],[125.43785437854382,9.525821432388184],[125.43425434254345,9.546084359626775],[125.39825398253981,9.681170541217398],[125.39825398253981,9.6997448911861],[125.40185401854018,9.716630663884928],[125.40545405454054,9.733516436583756],[125.45585455854558,9.812879568268244],[125.45945459454595,9.823011031887546],[125.47025470254704,9.809502413728481],[125.48825488254886,9.792616641029653],[125.50625506255062,9.779108022870588],[125.5386553865539,9.770665136521174],[125.56745567455675,9.757156518362123],[125.58905589055894,9.755467941092235],[125.58545585455857,9.730139282043993],[125.5926559265593,9.703122045725877],[125.60345603456034,9.672727654867984],[125.61065610656107,9.647398995819742],[125.62145621456216,9.630513223120914],[125.64305643056434,9.611938873152212],[125.6718567185672,9.600118832263021],[125.69345693456938,9.603495986802798],[125.68985689856902,9.600118832263021],[125.68985689856902,9.596741677723259],[125.68985689856902,9.593364523183496],[125.68625686256865,9.589987368643733],[125.69705697056969,9.589987368643733],[125.70425704257042,9.584921636834082],[125.71145711457115,9.576478750484668],[125.72225722257224,9.574790173214794],[125.74385743857442,9.578167327754556],[125.75465754657546,9.576478750484668],[125.77265772657728,9.554527245976189],[125.779857798578,9.547772936896664],[125.7906579065791,9.546084359626775],[125.84825848258481,9.537641473277361],[125.86625866258663,9.527510009658073],[125.90225902259021,9.49711561880018],[125.90945909459094,9.493738464260417],[125.9238592385924,9.493738464260417],[125.93465934659349,9.492049886990529],[125.93825938259386,9.483607000641115],[125.94185941859422,9.475164114291715],[125.94905949059489,9.463344073402524],[125.95265952659526,9.453212609783236],[125.96345963459635,9.471786959751938],[125.96705967059671,9.480229846101352],[125.97425974259744,9.480229846101352],[125.97425974259744,9.463344073402524],[125.97065970659708,9.45490118705311],[125.96705967059671,9.446458300703696],[125.95985959859598,9.439703991624171],[125.94905949059489,9.43463825981452],[125.92025920259204,9.426195373465106],[125.91305913059131,9.417752487115692],[125.90945909459094,9.404243868956641],[125.91665916659167,9.395800982607227],[125.92745927459276,9.389046673527687],[125.93825938259386,9.383980941718036],[125.95625956259562,9.382292364448162],[125.96705967059671,9.383980941718036],[125.99225992259926,9.397489559877101],[125.99225992259926,9.358652282669809],[125.99585995859962,9.324880737272153],[126.01026010260102,9.29448634641426],[126.0570605706057,9.245517605587665],[126.06426064260643,9.242140451047902],[126.07506075060752,9.238763296508125],[126.08946089460898,9.240451873778014],[126.1110611106111,9.250583337397316],[126.14346143461438,9.260714801016604],[126.17946179461796,9.297863500954023],[126.20106201062009,9.307994964573325],[126.21906219062191,9.306306387303437],[126.22626226262264,9.291109191874497],[126.21906219062191,9.272534841905781],[126.20106201062009,9.240451873778014],[126.19386193861942,9.21681179199966],[126.18666186661869,9.171220205712828],[126.18666186661869,9.139137237585047],[126.17946179461796,9.093545651298214],[126.18306183061833,9.081725610409038],[126.19386193861942,9.076659878599386],[126.20826208262082,9.076659878599386],[126.21546215462155,9.073282724059624],[126.22266222662228,9.063151260440335],[126.23346233462337,9.039511178661968],[126.2406624066241,9.027691137772791],[126.31266312663126,8.956770892437717],[126.32346323463236,8.934819387929238],[126.32346323463236,8.922999347040061],[126.33426334263345,8.884162069832769],[126.33066330663308,8.870653451673704],[126.33066330663308,8.860521988054401],[126.34506345063454,8.853767678974876],[126.34146341463418,8.845324792625462],[126.33786337863381,8.836881906276048],[126.33426334263345,8.836881906276048],[126.32706327063272,8.813241824497695],[126.31626316263163,8.787913165449453],[126.29826298262986,8.767650238210862],[126.27666276662768,8.760895929131323],[126.2406624066241,8.73556727008308],[126.23346233462337,8.733878692813207],[126.23346233462337,8.718681497384253],[126.2406624066241,8.710238611034839],[126.26226262262622,8.698418570145662],[126.26226262262622,8.693352838336025],[126.25866258662586,8.689975683796249],[126.2550625506255,8.688287106526374],[126.2550625506255,8.684909951986612],[126.2406624066241,8.689975683796249],[126.229862298623,8.691664261066137],[126.20826208262082,8.693352838336025],[126.19746197461978,8.688287106526374],[126.17226172261724,8.669712756557658],[126.13986139861402,8.654515561128719],[126.11826118261183,8.630875479350365],[126.1110611106111,8.607235397571998],[126.12906129061292,8.586972470333407],[126.14706147061474,8.541380884046575],[126.15786157861578,8.52787226588751],[126.16866168661687,8.526183688617635],[126.20106201062009,8.52787226588751],[126.21906219062191,8.521117956807984],[126.229862298623,8.521117956807984],[126.2406624066241,8.52787226588751],[126.21906219062191,8.539692306776686],[126.21546215462155,8.5481351931261],[126.21906219062191,8.55488950220564],[126.23346233462337,8.55488950220564],[126.24426244262446,8.549823770395989],[126.25866258662586,8.546446615856226],[126.26946269462695,8.55488950220564],[126.29106291062914,8.544758038586338],[126.35586355863558,8.53462657496705],[126.35586355863558,8.536315152236924],[126.35946359463594,8.539692306776686],[126.3630636306363,8.541380884046575],[126.37026370263703,8.541380884046575],[126.37026370263703,8.539692306776686],[126.3738637386374,8.531249420427287],[126.38106381063812,8.517740802268222],[126.40266402664025,8.502543606839268],[126.40626406264062,8.49241214321998],[126.39906399063995,8.478903525060915],[126.40266402664025,8.475526370521152],[126.40626406264062,8.4704606387115],[126.40986409864098,8.46539490690185],[126.38466384663849,8.467083484171738],[126.3738637386374,8.463706329631975],[126.37026370263703,8.455263443282561],[126.36666366663667,8.431623361504194],[126.37026370263703,8.428246206964431],[126.38466384663849,8.431623361504194],[126.38826388263885,8.41473758880538],[126.38106381063812,8.396163238836664],[126.35586355863558,8.364080270708897],[126.35226352263521,8.362391693439008],[126.34146341463418,8.355637384359483],[126.33426334263345,8.347194498010069],[126.33786337863381,8.343817343470306],[126.34506345063454,8.338751611660655],[126.35586355863558,8.311734375342525],[126.36666366663667,8.304980066263],[126.38106381063812,8.301602911723236],[126.38826388263885,8.293160025373822],[126.37746377463776,8.26783136632558],[126.34506345063454,8.230682666388162],[126.33786337863381,8.213796893689334],[126.34506345063454,8.195222543720618],[126.3630636306363,8.186779657371204],[126.37746377463776,8.191845389180855],[126.39186391863922,8.20028827553027],[126.42426424264244,8.210419739149572],[126.46026460264602,8.24081413000745],[126.46386463864638,8.230682666388162],[126.45666456664566,8.144565225624135],[126.45306453064529,8.129368030195195],[126.45666456664566,8.11585941203613],[126.46746467464675,8.09559648479754],[126.44226442264426,8.082087866638489],[126.43146431464316,8.044939166701056],[126.43506435064353,8.006101889493763],[126.45306453064529,7.9807732304455214],[126.43506435064353,7.962198880476805],[126.39546395463958,7.933493066888801],[126.38466384663849,7.911541562380336],[126.38466384663849,7.899721521491145],[126.38466384663849,7.886212903332094],[126.39186391863922,7.8575070897440895],[126.40626406264062,7.833867007965722],[126.42426424264244,7.81529265799702],[126.45666456664566,7.796718308028304],[126.46026460264602,7.791652576218652],[126.46386463864638,7.781521112599364],[126.48906489064893,7.74606098993182],[126.51066510665106,7.732552371772769],[126.5610656106561,7.727486639963118],[126.58266582665829,7.719043753613704],[126.57546575465756,7.697092249105225],[126.5718657186572,7.675140744596746],[126.56826568265683,7.626172003770151],[126.5718657186572,7.604220499261672],[126.59346593465938,7.553563181165202],[126.6006660066601,7.506283017608482],[126.60786607866078,7.4843315131000026],[126.60786607866078,7.4657571631313004],[126.59706597065974,7.44549423589271],[126.58626586265865,7.437051349543296],[126.57546575465756,7.433674195003519],[126.56466564665647,7.425231308654105],[126.56466564665647,7.410034113225166],[126.56826568265683,7.406656958685403],[126.58986589865901,7.389771185986575],[126.58266582665829,7.367819681478096],[126.57906579065792,7.3205395179213895],[126.56826568265683,7.300276590682799]]],[[[122.29862298622987,18.404360717431416],[122.3166231662317,18.3773434811133],[122.32382323823242,18.336817626636105],[122.32022320223206,18.29291461761916],[122.3058230582306,18.25070018587209],[122.28782287822878,18.218617217744324],[122.26262262622629,18.186534249616557],[122.24822248222483,18.171337054187603],[122.21222212222125,18.149385549679124],[122.17982179821797,18.12067973609112],[122.1726217262173,18.113925427011594],[122.16902169021694,18.10041680885253],[122.16902169021694,18.088596767963352],[122.1726217262173,18.08015388161394],[122.17622176221761,18.071710995264525],[122.17622176221761,18.06326810891511],[122.17622176221761,18.029496563517455],[122.18342183421834,17.9957250181198],[122.18342183421834,17.983904977230623],[122.14022140221402,17.79816147754353],[122.14022140221402,17.788030013924228],[122.14382143821439,17.766078509415763],[122.14382143821439,17.75763562306635],[122.13662136621366,17.744127004907284],[122.13662136621366,17.73737269582776],[122.14022140221402,17.73061838674822],[122.15462154621548,17.71542119131928],[122.15462154621548,17.706978304969866],[122.15822158221584,17.619172286935964],[122.16182161821621,17.593843627887722],[122.19422194221943,17.519546228012885],[122.19782197821979,17.494217568964643],[122.20502205022052,17.475643218995927],[122.22302223022234,17.452003137217574],[122.2410224102241,17.426674478169332],[122.23742237422374,17.40134581912109],[122.24462244622447,17.391214355501802],[122.24462244622447,17.374328582802974],[122.2518225182252,17.36081996464391],[122.26262262622629,17.354065655564384],[122.26622266222665,17.355754232834258],[122.26982269822702,17.359131387374035],[122.27702277022769,17.36081996464391],[122.28782287822878,17.36081996464391],[122.3058230582306,17.34393419194508],[122.31302313023133,17.34055703740532],[122.32742327423273,17.34055703740532],[122.35262352623528,17.35068850102462],[122.36702367023673,17.354065655564384],[122.38142381423813,17.347311346484844],[122.38862388623886,17.316916955626965],[122.40302403024032,17.306785492007663],[122.39942399423995,17.32873699651614],[122.41382413824141,17.31860553289684],[122.43542435424354,17.291588296578723],[122.44262442624427,17.26625963753048],[122.42462424624244,17.279768255689547],[122.41382413824141,17.28314541022931],[122.41022410224105,17.274702523879895],[122.41022410224105,17.26119390572083],[122.42102421024214,17.232488092132826],[122.42462424624244,17.22066805124365],[122.42102421024214,17.205470855814696],[122.41022410224105,17.175076464956817],[122.41022410224105,17.16156784679775],[122.41742417424177,17.146370651368812],[122.44262442624427,17.127796301400096],[122.449824498245,17.11428768324103],[122.45342453424536,17.119353415050682],[122.46062460624609,17.122730569590445],[122.46422464224645,17.127796301400096],[122.48222482224821,17.122730569590445],[122.48942489424894,17.132862033209747],[122.50022500225003,17.139616342289273],[122.51822518225185,17.127796301400096],[122.52902529025289,17.109221951431394],[122.52902529025289,17.090647601462678],[122.52182521825222,17.072073251493975],[122.50742507425076,17.055187478795148],[122.5038250382504,17.046744592445734],[122.50022500225003,17.034924551556543],[122.49662496624967,17.023104510667366],[122.48942489424894,17.01803877885773],[122.48222482224821,17.012973047048078],[122.47142471424718,16.98933296526971],[122.46062460624609,16.91165841085511],[122.46422464224645,16.894772638156283],[122.449824498245,16.86437824729839],[122.42102421024214,16.795146579233204],[122.37422374223746,16.714094870278842],[122.36342363423637,16.685389056690838],[122.34542345423455,16.643174624943768],[122.33822338223382,16.63135458405459],[122.32382323823242,16.616157388625638],[122.29862298622987,16.565500070529154],[122.28782287822878,16.546925720560452],[122.2518225182252,16.519908484242322],[122.24462244622447,16.509777020623034],[122.23742237422374,16.504711288813382],[122.23382233822338,16.49457982519408],[122.23382233822338,16.486136938844666],[122.23022230222301,16.465874011606076],[122.23022230222301,16.46080827979644],[122.21222212222125,16.448988238907248],[122.20502205022052,16.435479620748197],[122.20502205022052,16.423659579859006],[122.21582215822161,16.394953766271],[122.22302223022234,16.408462384430067],[122.22662226622265,16.415216693509606],[122.23022230222301,16.415216693509606],[122.22662226622265,16.38144514811195],[122.19062190621906,16.317279211856402],[122.19782197821979,16.29195055280816],[122.21582215822161,16.3071477482371],[122.23022230222301,16.31896778912629],[122.23022230222301,16.305459170967225],[122.20502205022052,16.263244739220156],[122.20502205022052,16.258179007410504],[122.20502205022052,16.242981811981565],[122.20502205022052,16.23622750290204],[122.19782197821979,16.23453892563215],[122.18342183421834,16.23116177109239],[122.17622176221761,16.2294731938225],[122.15102151021512,16.195701648424844],[122.11502115021153,16.168684412106728],[122.08262082620826,16.13660144397896],[122.07902079020789,16.134912866709072],[122.07542075420753,16.133224289439184],[122.07182071820722,16.12646998035966],[122.07182071820722,16.119715671280133],[122.07182071820722,16.11127278493072],[122.07182071820722,16.10451847585118],[122.07182071820722,16.09945274404153],[122.06102061020613,16.077501239533063],[122.01782017820182,16.05217258048482],[121.99621996219963,16.03190965324623],[121.99261992619927,16.038663962325757],[122.01062010620109,16.065681198643887],[122.02142021420218,16.08425554861259],[122.02502025020249,16.10451847585118],[122.03222032220322,16.116338516740356],[122.08262082620826,16.148421484868138],[122.08622086220862,16.163618680297077],[122.09342093420935,16.18725876207543],[122.10062100621008,16.20752168931402],[122.1330213302133,16.226096039282737],[122.14022140221402,16.244670389251453],[122.13662136621366,16.261556161950267],[122.1078210782108,16.263244739220156],[122.08622086220862,16.25480185287074],[122.07902079020789,16.241293234711677],[122.07542075420753,16.22440746201285],[122.07182071820722,16.205833112044147],[122.06822068220686,16.190635916615207],[122.05022050220504,16.180504452995905],[122.01062010620109,16.168684412106728],[121.95301953019532,16.139978598518724],[121.93861938619386,16.134912866709072],[121.90261902619028,16.12984713489942],[121.8666186661867,16.119715671280133],[121.8558185581856,16.11127278493072],[121.84501845018451,16.09945274404153],[121.83061830618306,16.091009857692114],[121.79821798217984,16.082566971342715],[121.78741787417874,16.077501239533063],[121.77661776617765,16.072435507723412],[121.76941769417698,16.075812662263175],[121.76221762217625,16.079189816802938],[121.75141751417516,16.077501239533063],[121.6830168301683,16.02177818962693],[121.67941679416793,16.009958148737752],[121.64341643416435,15.96943229426057],[121.59301593015931,15.944103635212329],[121.57861578615785,15.932283594323152],[121.56781567815682,15.915397821624325],[121.56061560615609,15.895134894385734],[121.55341553415536,15.852920462638664],[121.55341553415536,15.829280380860297],[121.57141571415713,15.793820258192767],[121.57501575015749,15.773557330954176],[121.58581585815858,15.765114444604762],[121.60741607416077,15.763425867334874],[121.63261632616326,15.756671558255348],[121.64341643416435,15.736408631016758],[121.63621636216362,15.722900012857693],[121.59301593015931,15.673931272031098],[121.61101611016113,15.670554117491335],[121.61821618216186,15.667176962951558],[121.6290162901629,15.660422653872033],[121.58941589415895,15.640159726633442],[121.57501575015749,15.626651108474377],[121.56781567815682,15.609765335775549],[121.56061560615609,15.591190985806847],[121.549815498155,15.575993790377893],[121.4958149581496,15.53209078136095],[121.48861488614887,15.520270740471773],[121.47781477814777,15.456104804216224],[121.47421474214741,15.437530454247522],[121.46341463414637,15.422333258818568],[121.42741427414273,15.373364517991973],[121.40941409414097,15.378430249801625],[121.39861398613988,15.383495981611276],[121.39141391413915,15.378430249801625],[121.38061380613806,15.353101590753383],[121.38061380613806,15.30751000446655],[121.39141391413915,15.26698414998937],[121.41301413014133,15.231524027321825],[121.44181441814419,15.209572522813346],[121.46701467014674,15.196063904654295],[121.48141481414814,15.18255528649523],[121.48861488614887,15.163980936526514],[121.50661506615069,15.06266630033356],[121.51381513815141,15.050846259444384],[121.52821528215281,15.040714795825082],[121.56061560615609,14.990057477728598],[121.56781567815682,14.97317170502977],[121.57141571415713,14.946154468711654],[121.58221582215822,14.919137232393524],[121.59661596615967,14.89549715061517],[121.6146161461615,14.873545646106692],[121.61101611016113,14.870168491566929],[121.60021600216004,14.861725605217515],[121.59301593015931,14.86003702794764],[121.63621636216362,14.811068287121032],[121.64341643416435,14.800936823501743],[121.65061650616508,14.79249393715233],[121.71181711817121,14.745213773595609],[121.72621726217261,14.73001657816667],[121.72621726217261,14.719885114547367],[121.70821708217085,14.716507960007604],[121.6722167221672,14.714819382737716],[121.65061650616508,14.709753650928079],[121.6290162901629,14.702999341848539],[121.6146161461615,14.689490723689488],[121.60741607416077,14.674293528260534],[121.60741607416077,14.63039051924359],[121.61101611016113,14.611816169274874],[121.64701647016471,14.491927183113205],[121.65061650616508,14.456467060445675],[121.66141661416617,14.417629783238368],[121.6686166861669,14.40074401053954],[121.6830168301683,14.385546815110601],[121.72621726217261,14.346709537903294],[121.73341733417334,14.328135187934578],[121.7370173701737,14.314626569775527],[121.73341733417334,14.280855024377871],[121.7370173701737,14.272412138028457],[121.75501755017552,14.25552636532963],[121.75861758617589,14.247083478980215],[121.75861758617589,14.230197706281388],[121.75141751417516,14.215000510852448],[121.74421744217443,14.203180469963257],[121.73341733417334,14.194737583613858],[121.73341733417334,14.187983274534318],[121.74421744217443,14.17785181091503],[121.78021780217802,14.125505915548658],[121.84861848618488,14.078225751991951],[121.91701917019174,14.008994083926751],[121.9350193501935,13.995485465767686],[122.08622086220862,13.938073838591677],[122.23022230222301,13.90599087046391],[122.23382233822338,13.933008106782026],[122.22302223022234,13.951582456750742],[122.18342183421834,13.98873115668816],[122.20142201422016,13.993796888497812],[122.29502295022951,13.970156806719459],[122.29862298622987,13.971845383989333],[122.29862298622987,13.985354002148398],[122.29502295022951,14.002239774847226],[122.29862298622987,14.007305506656877],[122.31302313023133,14.01068266119664],[122.31302313023133,14.015748393006291],[122.29142291422914,14.022502702085816],[122.2518225182252,14.068094288372649],[122.23382233822338,14.078225751991951],[122.20862208622088,14.08835721561124],[122.1870218702187,14.110308720119718],[122.16902169021694,14.139014533707723],[122.16182161821621,14.167720347295727],[122.1726217262173,14.160966038216202],[122.17622176221761,14.15590030640655],[122.17622176221761,14.147457420057137],[122.18342183421834,14.147457420057137],[122.18342183421834,14.169408924565616],[122.19422194221943,14.184606119994555],[122.23022230222301,14.201491892693383],[122.24462244622447,14.196426160883732],[122.24822248222483,14.21331193358256],[122.24822248222483,14.236952015360913],[122.2518225182252,14.250460633519978],[122.26262262622629,14.247083478980215],[122.26622266222665,14.226820551741625],[122.26262262622629,14.203180469963257],[122.25902259022592,14.187983274534318],[122.26622266222665,14.179540388184904],[122.26982269822702,14.167720347295727],[122.26982269822702,14.154211729136662],[122.27342273422738,14.140703110977611],[122.26982269822702,14.137325956437834],[122.27342273422738,14.132260224628197],[122.28062280622805,14.125505915548658],[122.28422284222842,14.125505915548658],[122.28782287822878,14.130571647358309],[122.29142291422914,14.13563737916796],[122.29502295022951,14.140703110977611],[122.29862298622987,14.12888307008842],[122.29862298622987,14.117063029199244],[122.29862298622987,14.091734370151002],[122.32022320223206,14.100177256500416],[122.33462334623346,14.113685874659481],[122.34542345423455,14.130571647358309],[122.34902349023491,14.154211729136662],[122.34542345423455,14.160966038216202],[122.33102331023309,14.181228965454793],[122.32742327423273,14.187983274534318],[122.33102331023309,14.199803315423495],[122.33822338223382,14.208246201772909],[122.34542345423455,14.206557624503034],[122.34902349023491,14.194737583613858],[122.35622356223564,14.194737583613858],[122.35622356223564,14.204869047233146],[122.35622356223564,14.211623356312671],[122.35262352623528,14.218377665392211],[122.34902349023491,14.221754819931974],[122.36702367023673,14.221754819931974],[122.37782377823777,14.2285091290115],[122.37782377823777,14.24032916990069],[122.36702367023673,14.25383778805974],[122.36702367023673,14.262280674409155],[122.38142381423813,14.292675065267048],[122.38862388623886,14.304495106156224],[122.39582395823959,14.29098648799716],[122.40302403024032,14.29605221980681],[122.41382413824141,14.309560837965876],[122.41742417424177,14.324758033394815],[122.43182431824317,14.31800372431529],[122.44622446224463,14.324758033394815],[122.45702457024572,14.336578074283992],[122.47142471424718,14.346709537903294],[122.48222482224821,14.346709537903294],[122.4930249302493,14.341643806093643],[122.51822518225185,14.324758033394815],[122.51462514625149,14.329823765204466],[122.5038250382504,14.346709537903294],[122.52902529025289,14.348398115173183],[122.57582575825757,14.329823765204466],[122.60102601026011,14.324758033394815],[122.59742597425975,14.31124941523575],[122.60462604626048,14.301117951616462],[122.61542615426157,14.299429374346573],[122.6226262262623,14.31124941523575],[122.6262262622626,14.29605221980681],[122.63342633426333,14.285920756187522],[122.64422644226443,14.284232178917634],[122.65142651426515,14.297740797076699],[122.67662676626765,14.294363642536936],[122.6910269102691,14.29098648799716],[122.67302673026734,14.316315147045401],[122.67302673026734,14.339955228823769],[122.68022680226801,14.350086692443057],[122.69822698226983,14.33826665155388],[122.70542705427056,14.346709537903294],[122.71262712627129,14.329823765204466],[122.72342723427238,14.316315147045401],[122.73422734227341,14.312937992505638],[122.75222752227523,14.331512342474355],[122.7558275582756,14.326446610664703],[122.76302763027633,14.321380878855052],[122.77022770227705,14.31800372431529],[122.78462784627845,14.316315147045401],[122.78462784627845,14.314626569775527],[122.78462784627845,14.309560837965876],[122.78822788227882,14.304495106156224],[122.80262802628027,14.287609333457397],[122.809828098281,14.284232178917634],[122.82422824228246,14.284232178917634],[122.85302853028531,14.279166447107983],[122.8746287462875,14.265657828948918],[122.90342903429035,14.2285091290115],[122.90342903429035,14.223443397201862],[122.90342903429035,14.216689088122322],[122.90342903429035,14.211623356312671],[122.90702907029072,14.208246201772909],[122.92142921429217,14.208246201772909],[122.92502925029254,14.206557624503034],[122.93222932229321,14.201491892693383],[122.9538295382954,14.167720347295727],[122.96462964629649,14.159277460946313],[123.00423004230043,14.118751606469132],[123.01143011430116,14.105242988310067],[123.02223022230226,14.111997297389593],[123.03303033030329,14.10862014284983],[123.04383043830438,14.098488679230542],[123.04743047430475,14.084980061071477],[123.04383043830438,14.069782865642537],[123.03663036630365,14.057962824753346],[123.02943029430293,14.042765629324407],[123.03303033030329,14.022502702085816],[123.05463054630548,14.002239774847226],[123.07983079830797,13.98873115668816],[123.08343083430833,13.973533961259221],[123.07983079830797,13.927942374972389],[123.0870308703087,13.900925138654259],[123.0870308703087,13.894170829574733],[123.08343083430833,13.88403936595543],[123.07623076230766,13.882350788685557],[123.06903069030693,13.87897363414578],[123.0618306183062,13.872219325066254],[123.05463054630548,13.862087861446966],[123.04743047430475,13.82156200696977],[123.04743047430475,13.811430543350482],[123.05103051030511,13.775970420682938],[123.06543065430657,13.755707493444348],[123.0870308703087,13.742198875285283],[123.10863108631088,13.721935948046692],[123.11583115831161,13.721935948046692],[123.13743137431373,13.732067411665994],[123.16263162631628,13.733755988935869],[123.21303213032132,13.728690257126232],[123.22383223832242,13.730378834396106],[123.25623256232564,13.743887452555171],[123.26703267032673,13.748953184364822],[123.30303303033031,13.789479038842003],[123.30663306633068,13.80129907973118],[123.31023310233104,13.808053388810706],[123.3138331383314,13.814807697890245],[123.3138331383314,13.819873429699896],[123.30663306633068,13.833382047858947],[123.29583295832958,13.870530747796366],[123.28143281432813,13.892482252304845],[123.28143281432813,13.90599087046391],[123.3138331383314,13.929630952242263],[123.31743317433177,13.934696684051914],[123.3246332463325,13.939762415861566],[123.33183331833317,13.95327103402063],[123.33543335433353,13.96846822944957],[123.33543335433353,13.981976847608635],[123.3246332463325,13.971845383989333],[123.3138331383314,13.94145099313144],[123.30303303033031,13.934696684051914],[123.28863288632886,13.934696684051914],[123.28143281432813,13.936385261321803],[123.23463234632345,13.963402497639919],[123.22383223832242,13.975222538529096],[123.21663216632169,13.992108311227923],[123.22743227432278,14.000551197577337],[123.24543245432454,14.007305506656877],[123.25263252632527,14.014059815736402],[123.23823238232382,14.022502702085816],[123.259832598326,14.03094558843523],[123.26343263432636,14.042765629324407],[123.25263252632527,14.068094288372649],[123.259832598326,14.0731600201823],[123.28143281432813,14.06640571110276],[123.3138331383314,14.051208515673821],[123.3138331383314,14.057962824753346],[123.31023310233104,14.059651402023235],[123.29943299432995,14.071471442912411],[123.32823328233286,14.069782865642537],[123.33543335433353,14.071471442912411],[123.33543335433353,14.078225751991951],[123.32823328233286,14.096800101960653],[123.33183331833317,14.100177256500416],[123.34623346233462,14.09342294742089],[123.35343353433535,14.079914329261825],[123.36063360633608,14.042765629324407],[123.34623346233462,14.039388474784644],[123.34263342633426,14.027568433895468],[123.34623346233462,14.015748393006291],[123.35343353433535,14.012371238466514],[123.37143371433717,14.029257011165342],[123.3786337863379,14.034322742974993],[123.38943389433894,14.037699897514756],[123.38583385833857,14.03094558843523],[123.37503375033754,14.01068266119664],[123.38583385833857,14.014059815736402],[123.38943389433894,14.015748393006291],[123.39663396633966,14.01068266119664],[123.3930339303393,13.992108311227923],[123.41103411034112,13.965091074909807],[123.40383403834039,13.94820530221098],[123.41103411034112,13.939762415861566],[123.41463414634148,13.929630952242263],[123.41823418234185,13.917810911353087],[123.41823418234185,13.90599087046391],[123.42543425434258,13.90599087046391],[123.42903429034294,13.919499488622975],[123.43623436234361,13.929630952242263],[123.44343443434434,13.94145099313144],[123.44343443434434,13.961713920370045],[123.46503465034652,13.956648188560393],[123.47943479434798,13.949893879480854],[123.48663486634865,13.939762415861566],[123.49383493834938,13.92118806589285],[123.53703537035369,13.924565220432612],[123.61263612636128,13.897547984114496],[123.68103681036814,13.88403936595543],[123.71343713437136,13.934696684051914],[123.73503735037349,13.897547984114496],[123.7638376383764,13.86377643871684],[123.80343803438035,13.838447779668599],[123.87543875438757,13.808053388810706],[123.87903879038794,13.804676234270943],[123.87903879038794,13.80129907973118],[123.8826388263883,13.797921925191417],[123.8970389703897,13.794544770651655],[123.91863918639189,13.794544770651655],[123.93303933039334,13.791167616111892],[123.93663936639365,13.784413307032352],[123.9510395103951,13.755707493444348],[123.96903969039693,13.740510298015408],[123.97263972639729,13.728690257126232],[123.96543965439656,13.715181638967167],[123.94743947439474,13.728690257126232],[123.94383943839438,13.733755988935869],[123.93663936639365,13.742198875285283],[123.93303933039334,13.742198875285283],[123.92943929439298,13.73882172074552],[123.92583925839261,13.728690257126232],[123.91143911439116,13.735444566205757],[123.89343893438934,13.740510298015408],[123.86103861038612,13.742198875285283],[123.85023850238503,13.733755988935869],[123.83583835838357,13.715181638967167],[123.8178381783818,13.69660728899845],[123.79623796237962,13.688164402649036],[123.77823778237786,13.691541557188813],[123.74223742237422,13.710115907157515],[123.68823688236881,13.71855879350693],[123.66663666636668,13.71855879350693],[123.65583655836559,13.711804484427404],[123.64863648636486,13.70336159807799],[123.62703627036274,13.710115907157515],[123.60543605436055,13.72362452531658],[123.58743587435873,13.728690257126232],[123.56943569435697,13.72362452531658],[123.55863558635588,13.710115907157515],[123.52983529835302,13.627375620933265],[123.52623526235266,13.605424116424786],[123.53343533435333,13.603735539154911],[123.54063540635406,13.600358384615134],[123.53703537035369,13.595292652805497],[123.53343533435333,13.590226920995846],[123.53343533435333,13.585161189186195],[123.53343533435333,13.575029725566907],[123.53703537035369,13.563209684677716],[123.54423544235442,13.559832530137953],[123.55143551435515,13.563209684677716],[123.56223562235624,13.57165257102713],[123.59463594635946,13.529438139280074],[123.59823598235982,13.524372407470423],[123.60543605436055,13.51592952112101],[123.66663666636668,13.485535130263116],[123.68103681036814,13.470337934834177],[123.70623706237063,13.426434925817219],[123.709837098371,13.423057771277456],[123.72423724237245,13.414614884928042],[123.72423724237245,13.409549153118391],[123.72423724237245,13.399417689499103],[123.72783727837282,13.390974803149689],[123.73143731437318,13.362268989561684],[123.74223742237422,13.340317485053205],[123.76023760237604,13.323431712354378],[123.77823778237786,13.316677403274852],[123.79623796237962,13.308234516925438],[123.80703807038071,13.286283012416959],[123.82143821438217,13.242380003400015],[123.82503825038253,13.260954353368717],[123.83583835838357,13.255888621559066],[123.84663846638466,13.242380003400015],[123.85743857438575,13.22887138524095],[123.78903789037889,13.232248539780713],[123.76743767437677,13.223805653431299],[123.76023760237604,13.198476994383057],[123.75663756637567,13.18159122168423],[123.75303753037531,13.168082603525164],[123.74943749437494,13.154573985366113],[123.75303753037531,13.13937678993716],[123.77103771037713,13.110670976349155],[123.76743767437677,13.098850935459978],[123.74583745837458,13.092096626380453],[123.74583745837458,13.085342317300913],[123.74943749437494,13.0768994309515],[123.74943749437494,13.071833699141862],[123.74583745837458,13.063390812792449],[123.76743767437677,13.053259349173146],[123.7746377463775,13.051570771903258],[123.78903789037889,13.051570771903258],[123.79623796237962,13.054947926443035],[123.81423814238144,13.068456544602086],[123.8178381783818,13.071833699141862],[123.85743857438575,13.119113862698569],[123.86103861038612,13.127556749047983],[123.86463864638648,13.135999635397397],[123.87183871838721,13.142753944476922],[123.8826388263883,13.1461310990167],[123.89343893438934,13.142753944476922],[123.90423904239043,13.129245326317871],[123.91503915039152,13.125868171778109],[123.92583925839261,13.125868171778109],[123.93303933039334,13.122491017238332],[123.93663936639365,13.117425285428695],[123.93663936639365,13.10898239907928],[123.94383943839438,13.107293821809392],[123.97983979839802,13.098850935459978],[123.99063990639905,13.092096626380453],[124.00864008640087,13.080276585491276],[124.02304023040233,13.066767967332211],[124.0266402664027,13.054947926443035],[124.069840698407,13.016110649235728],[124.0806408064081,13.009356340156202],[124.09144091440913,13.01948780377549],[124.11304113041132,13.060013658252672],[124.11664116641168,13.075210853681625],[124.12744127441277,13.078588008221388],[124.1490414904149,13.073522276411737],[124.17424174241745,13.063390812792449],[124.18504185041854,13.056636503712909],[124.18864188641885,13.039750731014081],[124.18504185041854,13.021176381045379],[124.17784177841781,13.009356340156202],[124.16344163441636,13.016110649235728],[124.15264152641527,13.000913453806788],[124.14544145441454,12.989093412917597],[124.13824138241381,12.962076176599481],[124.12024120241205,12.924927476662063],[124.11664116641168,12.916484590312649],[124.12024120241205,12.90128739488371],[124.1346413464135,12.877647313105342],[124.14184141841417,12.815169954119682],[124.14184141841417,12.79659560415098],[124.13104131041314,12.67670661798931],[124.12384123841241,12.661509422560357],[124.0950409504095,12.642935072591655],[124.08784087840877,12.62942645443259],[124.09144091440913,12.612540681733762],[124.0950409504095,12.60240921811446],[124.0950409504095,12.593966331765046],[124.0806408064081,12.583834868145757],[124.08784087840877,12.577080559066232],[124.0950409504095,12.556817631827627],[124.08424084240846,12.553440477287864],[124.06624066240664,12.541620436398688],[124.05544055440555,12.536554704589037],[124.0410404104041,12.536554704589037],[124.00864008640087,12.536554704589037],[123.98343983439838,12.546686168208339],[123.95823958239583,12.568637672716818],[123.93303933039334,12.612540681733762],[123.93303933039334,12.622672145353064],[123.92943929439298,12.624360722622939],[123.92223922239225,12.620983568083176],[123.91503915039152,12.619294990813287],[123.90063900639007,12.636180763512115],[123.87903879038794,12.64462364986153],[123.87183871838721,12.659820845290483],[123.86463864638648,12.680083772529073],[123.8430384303843,12.715543895196603],[123.8430384303843,12.735806822435194],[123.84663846638466,12.756069749673784],[123.85023850238503,12.77633267691239],[123.8430384303843,12.801661335960631],[123.8286382863829,12.81179279957992],[123.81423814238144,12.818547108659445],[123.79263792637926,12.83205572681851],[123.8178381783818,12.83205572681851],[123.83943839438393,12.83881003589805],[123.85383853838539,12.8523186540571],[123.86463864638648,12.872581581295691],[123.87543875438757,12.867515849486054],[123.88983889838897,12.850630076787226],[123.8970389703897,12.845564344977575],[123.9078390783908,12.842187190437812],[123.91143911439116,12.842187190437812],[123.91863918639189,12.843875767707686],[123.92943929439298,12.845564344977575],[123.94023940239401,12.848941499517338],[123.94383943839438,12.855695808596877],[123.94383943839438,12.865827272216166],[123.94743947439474,12.875958735835468],[123.95823958239583,12.87933589037523],[123.96903969039693,12.877647313105342],[123.97983979839802,12.87427015856558],[123.98703987039869,12.872581581295691],[124.00144001440015,12.87933589037523],[124.01944019440197,12.89453308580417],[124.03024030240306,12.911418858502998],[124.03384033840342,12.929993208471714],[124.0266402664027,12.955321867519956],[124.00504005040051,12.962076176599481],[123.95823958239583,12.953633290250067],[123.94023940239401,12.95701044478983],[123.91143911439116,12.972207640218784],[123.89343893438934,12.975584794758547],[123.8826388263883,12.967141908409133],[123.87543875438757,12.946878981170542],[123.86823868238685,12.926616053931937],[123.86463864638648,12.913107435772886],[123.83943839438393,12.887778776724645],[123.82143821438217,12.877647313105342],[123.79983799837999,12.870893004025817],[123.78903789037889,12.865827272216166],[123.78543785437853,12.864138694946277],[123.77823778237786,12.867515849486054],[123.76743767437677,12.875958735835468],[123.7638376383764,12.87933589037523],[123.75663756637567,12.87427015856558],[123.74583745837458,12.857384385866752],[123.73863738637385,12.8523186540571],[123.73503735037349,12.850630076787226],[123.73143731437318,12.845564344977575],[123.72423724237245,12.845564344977575],[123.72063720637209,12.85907296313664],[123.71343713437136,12.872581581295691],[123.72423724237245,12.875958735835468],[123.73143731437318,12.882713044914993],[123.73143731437318,12.889467353994519],[123.72063720637209,12.892844508534296],[123.69543695436954,12.891155931264407],[123.69183691836918,12.889467353994519],[123.69543695436954,12.882713044914993],[123.6990369903699,12.87427015856558],[123.6990369903699,12.864138694946277],[123.67743677436778,12.884401622184882],[123.68823688236881,12.904664549423472],[123.70263702637027,12.926616053931937],[123.6990369903699,12.931681785741588],[123.69183691836918,12.928304631201826],[123.68103681036814,12.926616053931937],[123.67023670236705,12.924927476662063],[123.66303663036632,12.916484590312649],[123.66303663036632,12.908041703963235],[123.65583655836559,12.899598817613821],[123.64863648636486,12.891155931264407],[123.64863648636486,12.886090199454756],[123.6450364503645,12.886090199454756],[123.63423634236341,12.886090199454756],[123.61623616236164,12.889467353994519],[123.60543605436055,12.892844508534296],[123.59823598235982,12.896221663074058],[123.56943569435697,12.928304631201826],[123.55863558635588,12.938436094821128],[123.54063540635406,12.948567558440416],[123.52983529835302,12.951944712980179],[123.52263522635229,12.953633290250067],[123.5118351183512,12.95701044478983],[123.50463504635047,12.965453331139244],[123.48663486634865,12.985716258377835],[123.46863468634689,12.995847721997137],[123.45063450634507,13.029619267394793],[123.43983439834398,13.036373576474318],[123.41823418234185,13.039750731014081],[123.40023400234003,13.043127885553844],[123.38583385833857,13.044816462823732],[123.36063360633608,13.036373576474318],[123.33183331833317,13.01948780377549],[123.31023310233104,13.012733494695965],[123.29943299432995,13.01948780377549],[123.29583295832958,13.036373576474318],[123.28863288632886,13.054947926443035],[123.28503285032849,13.071833699141862],[123.29223292232922,13.085342317300913],[123.27783277832782,13.120802439968458],[123.30663306633068,13.198476994383057],[123.29943299432995,13.235625694320476],[123.28503285032849,13.254200044289192],[123.24903249032491,13.279528703337434],[123.23103231032309,13.298103053306136],[123.22743227432278,13.30654593965555],[123.22383223832242,13.321743135084489],[123.21663216632169,13.331874598703791],[123.19143191431914,13.358891835021922],[123.19863198631987,13.385909071340038],[123.18783187831878,13.419680616737693],[123.16983169831701,13.448386430325698],[123.14463144631446,13.461895048484763],[123.11943119431197,13.468649357564288],[123.06543065430657,13.502420902961944],[123.03663036630365,13.50917521204147],[123.01863018630189,13.510863789311358],[122.9970299702997,13.52099525293066],[122.98262982629825,13.522683830200535],[122.97182971829722,13.527749562010186],[122.94662946629467,13.549701066518665],[122.88542885428853,13.593604075535609],[122.87102871028713,13.59866980734526],[122.86022860228604,13.605424116424786],[122.82782827828277,13.642572816362204],[122.81342813428137,13.65439285725138],[122.8638286382864,13.694918711728576],[122.81342813428137,13.748953184364822],[122.78822788227882,13.769216111603413],[122.75942759427596,13.784413307032352],[122.75942759427596,13.777658997952827],[122.75222752227523,13.784413307032352],[122.75942759427596,13.791167616111892],[122.77022770227705,13.791167616111892],[122.76662766627669,13.799610502461306],[122.75222752227523,13.809741966080594],[122.73782737827378,13.818184852430008],[122.69822698226983,13.826627738779422],[122.6910269102691,13.831693470589073],[122.68022680226801,13.82156200696977],[122.66582665826661,13.819873429699896],[122.65142651426515,13.826627738779422],[122.64422644226443,13.838447779668599],[122.64422644226443,13.84351351147825],[122.65142651426515,13.848579243287901],[122.65502655026552,13.853644975097552],[122.65142651426515,13.862087861446966],[122.6226262262623,13.892482252304845],[122.6118261182612,13.899236561384384],[122.59742597425975,13.904302293194021],[122.5830258302583,13.90599087046391],[122.57942579425793,13.912745179543435],[122.57942579425793,13.9262537977025],[122.57222572225726,13.934696684051914],[122.56142561425617,13.927942374972389],[122.55422554225544,13.938073838591677],[122.54342543425435,13.95327103402063],[122.53982539825398,13.958336765830268],[122.53622536225362,13.961713920370045],[122.51462514625149,13.934696684051914],[122.46062460624609,13.938073838591677],[122.43542435424354,13.946516724941091],[122.41742417424177,13.961713920370045],[122.41382413824141,13.94820530221098],[122.42102421024214,13.933008106782026],[122.43542435424354,13.919499488622975],[122.44622446224463,13.914433756813324],[122.449824498245,13.90599087046391],[122.50022500225003,13.838447779668599],[122.51102511025113,13.819873429699896],[122.50742507425076,13.808053388810706],[122.5038250382504,13.792856193381766],[122.5038250382504,13.772593266143176],[122.51102511025113,13.735444566205757],[122.48942489424894,13.740510298015408],[122.48582485824858,13.721935948046692],[122.4930249302493,13.67634436175986],[122.49662496624967,13.652704279981506],[122.51462514625149,13.630752775473027],[122.55062550625507,13.595292652805497],[122.6226262262623,13.553078221058428],[122.6370263702637,13.537881025629474],[122.63342633426333,13.52099525293066],[122.60822608226084,13.531126716549949],[122.5686256862569,13.563209684677716],[122.57222572225726,13.548012489248777],[122.59742597425975,13.507486634771595],[122.64422644226443,13.456829316675112],[122.65502655026552,13.439943543976284],[122.66222662226625,13.419680616737693],[122.67302673026734,13.379154762260512],[122.67662676626765,13.342006062323094],[122.67662676626765,13.301480207845898],[122.68022680226801,13.289660166956722],[122.68382683826837,13.282905857877196],[122.68742687426874,13.276151548797657],[122.6910269102691,13.269397239718131],[122.6910269102691,13.24913431247954],[122.6910269102691,13.237314271590364],[122.6910269102691,13.22887138524095],[122.68382683826837,13.225494230701187],[122.67662676626765,13.22211707616141],[122.66582665826661,13.218739921621648],[122.66222662226625,13.211985612542122],[122.65142651426515,13.200165571652946],[122.62982629826297,13.188345530763769],[122.60462604626048,13.178214067144467],[122.58662586625866,13.174836912604704],[122.57222572225726,13.184968376223992],[122.5038250382504,13.239002848860238],[122.50742507425076,13.259265776098829],[122.51822518225185,13.294725898766373],[122.51822518225185,13.309923094195312],[122.50022500225003,13.367334721371321],[122.40302403024032,13.495666593882419],[122.39942399423995,13.502420902961944],[122.39942399423995,13.51592952112101],[122.39582395823959,13.522683830200535],[122.37422374223746,13.541258180169251],[122.3706237062371,13.549701066518665],[122.34182341823418,13.561521107407842],[122.33462334623346,13.575029725566907],[122.32022320223206,13.59191549826572],[122.25902259022592,13.59191549826572],[122.25902259022592,13.605424116424786],[122.2410224102241,13.612178425504325],[122.20862208622088,13.6138670027742],[122.19422194221943,13.622309889123613],[122.19062190621906,13.630752775473027],[122.1870218702187,13.647638548171855],[122.17982179821797,13.657770011791158],[122.1726217262173,13.666212898140571],[122.1186211862119,13.752330338904585],[122.09342093420935,13.78103615249259],[122.06102061020613,13.804676234270943],[122.0538205382054,13.784413307032352],[122.03942039420394,13.789479038842003],[122.02142021420218,13.802987657001069],[122.00702007020072,13.811430543350482],[121.9890198901989,13.809741966080594],[121.98541985419854,13.811430543350482],[121.94941949419496,13.845202088748138],[121.93861938619386,13.851956397827664],[121.92421924219241,13.855333552367426],[121.91341913419137,13.857022129637315],[121.90261902619028,13.860399284177078],[121.8810188101881,13.877285056875905],[121.87021870218706,13.88572794322532],[121.85941859418597,13.89079367503497],[121.82701827018269,13.899236561384384],[121.81261812618129,13.914433756813324],[121.8018180181802,13.933008106782026],[121.78741787417874,13.94820530221098],[121.77661776617765,13.94820530221098],[121.74061740617407,13.961713920370045],[121.72621726217261,13.96846822944957],[121.71901719017194,13.954959611290505],[121.70101701017012,13.944828147671217],[121.69741697416976,13.931319529512152],[121.69021690216903,13.9262537977025],[121.64341643416435,13.914433756813324],[121.63621636216362,13.909368025003673],[121.62181621816217,13.894170829574733],[121.6146161461615,13.892482252304845],[121.59661596615967,13.897547984114496],[121.58941589415895,13.897547984114496],[121.57861578615785,13.887416520495194],[121.549815498155,13.87897363414578],[121.53181531815318,13.865465015986729],[121.52461524615245,13.862087861446966],[121.51741517415178,13.860399284177078],[121.49941499414996,13.858710706907189],[121.4958149581496,13.858710706907189],[121.4850148501485,13.851956397827664],[121.45621456214565,13.819873429699896],[121.43461434614346,13.796233347921529],[121.44181441814419,13.727001679856343],[121.43461434614346,13.701673020808101],[121.44541445414455,13.701673020808101],[121.45261452614528,13.699984443538213],[121.46341463414637,13.694918711728576],[121.43461434614346,13.662835743600795],[121.4310143101431,13.657770011791158],[121.38781387813879,13.666212898140571],[121.37341373413733,13.667901475410446],[121.35541355413557,13.657770011791158],[121.2978129781298,13.615555580044088],[121.27981279812798,13.595292652805497],[121.26181261812621,13.600358384615134],[121.24741247412476,13.608801270964548],[121.2438124381244,13.612178425504325],[121.21861218612185,13.623998466393502],[121.20421204212045,13.625687043663376],[121.18621186211863,13.627375620933265],[121.1790117901179,13.629064198203153],[121.1682116821168,13.63412993001279],[121.15741157411577,13.639195661822441],[121.14301143011431,13.64088423909233],[121.1106111061111,13.632441352742916],[121.09621096210964,13.627375620933265],[121.08181081810818,13.61893273458385],[121.07101071010709,13.622309889123613],[121.0458104581046,13.627375620933265],[121.03861038610387,13.632441352742916],[121.0350103501035,13.642572816362204],[121.03861038610387,13.647638548171855],[121.04221042210423,13.652704279981506],[121.0458104581046,13.664524320870683],[121.04941049410496,13.688164402649036],[121.05301053010533,13.705050175347864],[121.05301053010533,13.721935948046692],[121.03861038610387,13.75908464798411],[121.0350103501035,13.762461802523873],[121.01701017010168,13.775970420682938],[121.00261002610029,13.78103615249259],[120.9918099180992,13.784413307032352],[120.9810098100981,13.78103615249259],[120.9018090180902,13.693230134458688],[120.89460894608948,13.688164402649036],[120.88740887408875,13.693230134458688],[120.88380883808838,13.705050175347864],[120.88020880208802,13.71687021623704],[120.88380883808838,13.721935948046692],[120.89460894608948,13.727001679856343],[120.89820898208984,13.73882172074552],[120.9018090180902,13.750641761634697],[120.90540905409057,13.755707493444348],[120.91980919809197,13.757396070714236],[120.9270092700927,13.762461802523873],[120.93060930609306,13.770904688873287],[120.93060930609306,13.784413307032352],[120.9126091260913,13.799610502461306],[120.90900909009093,13.804676234270943],[120.90900909009093,13.81649627516012],[120.9126091260913,13.836759202398724],[120.9162091620916,13.848579243287901],[120.9162091620916,13.865465015986729],[120.9126091260913,13.882350788685557],[120.90540905409057,13.895859406844608],[120.89460894608948,13.90599087046391],[120.87660876608766,13.912745179543435],[120.78660786607867,13.922876643162738],[120.74700747007472,13.933008106782026],[120.72540725407254,13.934696684051914],[120.70380703807041,13.927942374972389],[120.69660696606968,13.914433756813324],[120.70020700207004,13.895859406844608],[120.71460714607144,13.875596479606017],[120.72180721807217,13.855333552367426],[120.70380703807041,13.851956397827664],[120.6606066060661,13.858710706907189],[120.65340653406537,13.845202088748138],[120.65700657006573,13.826627738779422],[120.6642066420664,13.806364811540831],[120.67140671406713,13.78610188430224],[120.6642066420664,13.775970420682938],[120.649806498065,13.784413307032352],[120.62820628206282,13.811430543350482],[120.62100621006209,13.846890666018012],[120.61740617406173,13.931319529512152],[120.60300603006033,13.96846822944957],[120.61740617406173,13.971845383989333],[120.62820628206282,13.981976847608635],[120.63540635406355,13.992108311227923],[120.63180631806318,13.997174043037575],[120.62100621006209,14.002239774847226],[120.61740617406173,14.017436970276165],[120.62100621006209,14.076537174722063],[120.62100621006209,14.103554411040179],[120.60660606606069,14.125505915548658],[120.58140581405814,14.132260224628197],[120.58140581405814,14.140703110977611],[120.5958059580596,14.147457420057137],[120.5958059580596,14.157588883676425],[120.58860588605887,14.166031770025839],[120.57420574205742,14.174474656375253],[120.58140581405814,14.174474656375253],[120.58860588605887,14.176163233645141],[120.60300603006033,14.181228965454793],[120.60300603006033,14.187983274534318],[120.58860588605887,14.199803315423495],[120.5958059580596,14.218377665392211],[120.61380613806136,14.236952015360913],[120.62100621006209,14.25383778805974],[120.62820628206282,14.269034983488694],[120.64260642606428,14.277477869838108],[120.68220682206822,14.284232178917634],[120.69660696606968,14.289297910727285],[120.71460714607144,14.297740797076699],[120.72540725407254,14.309560837965876],[120.7290072900729,14.321380878855052],[120.73620736207363,14.326446610664703],[120.76140761407618,14.336578074283992],[120.76860768607685,14.341643806093643],[120.79020790207903,14.375415351491299],[120.87660876608766,14.45815563771555],[120.88740887408875,14.4632213695252],[120.89820898208984,14.4632213695252],[120.91980919809197,14.461532792255312],[120.9270092700927,14.464909946795089],[120.94500945009452,14.483484296763791],[120.97020970209701,14.502058646732507],[120.9810098100981,14.515567264891558],[120.98460984609846,14.534141614860275],[120.9810098100981,14.557781696638628],[120.95940959409597,14.591553242036284],[120.94860948609488,14.613504746544763],[120.94140941409415,14.654030601021944],[120.93780937809379,14.667539219181009],[120.90540905409057,14.706376496388302],[120.9018090180902,14.718196537277493],[120.89460894608948,14.724950846357018],[120.8478084780848,14.743525196325734],[120.84420844208444,14.748590928135371],[120.84420844208444,14.755345237214911],[120.84060840608407,14.760410969024548],[120.82980829808298,14.763788123564325],[120.73260732607326,14.767165278104088],[120.67140671406713,14.777296741723376],[120.6642066420664,14.778985318993264],[120.65700657006573,14.780673896263153],[120.64260642606428,14.787428205342678],[120.63180631806318,14.795871091692092],[120.62820628206282,14.807691132581269],[120.62820628206282,14.841462677978924],[120.62820628206282,14.858348450677752],[120.62100621006209,14.873545646106692],[120.62100621006209,14.839774100709036],[120.62100621006209,14.831331214359622],[120.61740617406173,14.82795405981986],[120.60660606606069,14.817822596200571],[120.60300603006033,14.824576905280097],[120.59940599405996,14.826265482549985],[120.59220592205924,14.817822596200571],[120.60660606606069,14.885365686995868],[120.60300603006033,14.900562882424822],[120.58500585005851,14.902251459694696],[120.57780577805778,14.883677109725994],[120.57420574205742,14.838085523439162],[120.55260552605529,14.849905564328338],[120.54540545405456,14.836396946169273],[120.54540545405456,14.826265482549985],[120.54540545405456,14.787428205342678],[120.53820538205383,14.72326226908713],[120.53820538205383,14.702999341848539],[120.57780577805778,14.659096332831595],[120.58140581405814,14.648964869212293],[120.57780577805778,14.637144828323116],[120.57420574205742,14.621947632894177],[120.59220592205924,14.551027387559103],[120.59940599405996,14.50543580127227],[120.58860588605887,14.466598524064963],[120.56340563405632,14.441269865016721],[120.52740527405274,14.434515555937196],[120.51660516605165,14.437892710476959],[120.50940509405098,14.441269865016721],[120.50220502205025,14.44295844228661],[120.49140491404916,14.441269865016721],[120.48780487804879,14.437892710476959],[120.48780487804879,14.431138401397433],[120.48060480604806,14.424384092317894],[120.46620466204661,14.421006937778131],[120.46260462604624,14.424384092317894],[120.45900459004594,14.431138401397433],[120.45540455404557,14.439581287746847],[120.4086040860409,14.451401328636024],[120.40140401404017,14.456467060445675],[120.38340383403835,14.480107142224028],[120.37620376203762,14.508812955812033],[120.37980379803798,14.56791316025793],[120.37620376203762,14.601684705655586],[120.36900369003689,14.620259055624288],[120.32580325803258,14.647276291942418],[120.31500315003149,14.640521982862879],[120.30420304203045,14.640521982862879],[120.29700297002972,14.64558771467253],[120.29340293402936,14.654030601021944],[120.28620286202863,14.654030601021944],[120.25380253802541,14.697933610038888],[120.24300243002432,14.73001657816667],[120.26100261002614,14.743525196325734],[120.27180271802717,14.746902350865497],[120.26460264602645,14.755345237214911],[120.24300243002432,14.767165278104088],[120.24660246602468,14.777296741723376],[120.25380253802541,14.787428205342678],[120.26460264602645,14.795871091692092],[120.27180271802717,14.804313978041506],[120.2790027900279,14.802625400771618],[120.28260282602827,14.806002555311395],[120.289802898029,14.814445441660794],[120.29340293402936,14.826265482549985],[120.27540275402754,14.82795405981986],[120.26820268202681,14.829642637089748],[120.26460264602645,14.834708368899399],[120.26460264602645,14.846528409788576],[120.26100261002614,14.851594141598227],[120.25380253802541,14.853282718868101],[120.23940239402395,14.851594141598227],[120.22860228602286,14.86003702794764],[120.22140221402213,14.873545646106692],[120.2106021060211,14.880299955186231],[120.19620196201964,14.866791337027166],[120.19980199802,14.843151255248813],[120.19620196201964,14.807691132581269],[120.18900189001891,14.775608164453502],[120.17460174601746,14.757033814484785],[120.16020160201606,14.757033814484785],[120.14220142201424,14.760410969024548],[120.12780127801278,14.767165278104088],[120.12060120601205,14.773919587183613],[120.11700117001169,14.78573962807279],[120.0918009180092,14.794182514422204],[120.0810008100081,14.804313978041506],[120.08820088200883,14.807691132581269],[120.0918009180092,14.811068287121032],[120.09540095400956,14.817822596200571],[120.09900099000993,14.826265482549985],[120.09540095400956,14.822888328010208],[120.0810008100081,14.817822596200571],[120.05580055800561,14.893808573345282],[120.04860048600489,14.9309572732827],[120.05580055800561,15.02214044585638],[120.05220052200525,15.06266630033356],[120.01980019800197,15.206195368273583],[120.00900009000094,15.214638254622997],[120.00180001800021,15.219703986432648],[120.00180001800021,15.22983545005195],[120.00540005400057,15.246721222750779],[120.00540005400057,15.268672727259244],[120.00180001800021,15.277115613608657],[119.98019980199803,15.30751000446655],[119.9621996219962,15.341281549864206],[119.95499954999553,15.356478745293145],[119.89739897398977,15.410513217929392],[119.88659886598867,15.429087567898108],[119.89019890198904,15.437530454247522],[119.9045990459905,15.445973340596936],[119.90819908199086,15.452727649676461],[119.90819908199086,15.461170536025875],[119.90819908199086,15.4679248451054],[119.90099900999013,15.483122040534354],[119.9189991899919,15.471301999645178],[119.94059940599408,15.476367731454815],[119.9585995859959,15.491564926883768],[119.9621996219962,15.513516431392233],[119.9621996219962,15.521959317741647],[119.9585995859959,15.528713626821187],[119.95139951399517,15.535467935900712],[119.9477994779948,15.5371565131706],[119.94419944199444,15.542222244980238],[119.94059940599408,15.554042285869428],[119.93699936999371,15.565862326758605],[119.92979929799299,15.57261663583813],[119.92619926199262,15.569239481298368],[119.92259922599226,15.559108017679065],[119.9045990459905,15.596256717616484],[119.90099900999013,15.609765335775549],[119.9045990459905,15.621585376664726],[119.9189991899919,15.646914035712967],[119.92259922599226,15.660422653872033],[119.9189991899919,15.690817044729926],[119.90099900999013,15.704325662888976],[119.88299882998831,15.717834281048042],[119.86859868598685,15.743162940096283],[119.89019890198904,15.748228671905935],[119.8937989379894,15.763425867334874],[119.88659886598867,15.805640299081944],[119.89019890198904,15.822526071780771],[119.89739897398977,15.83772326720971],[119.89739897398977,15.852920462638664],[119.8937989379894,15.873183389877255],[119.87939879398795,15.915397821624325],[119.86859868598685,15.935660748862915],[119.85419854198545,15.94916936702198],[119.8289982899829,15.955923676101506],[119.81099810998109,15.94241505794244],[119.80019800198005,15.927217862513501],[119.7857978579786,15.928906439783376],[119.78219782197823,15.925529285243613],[119.77139771397714,15.915397821624325],[119.75699756997574,15.944103635212329],[119.75699756997574,16.058926889564347],[119.76059760597605,16.075812662263175],[119.7749977499775,16.118027094010245],[119.77859778597787,16.138290021248835],[119.7749977499775,16.14673290759825],[119.76059760597605,16.16193010302719],[119.75699756997574,16.17206156664649],[119.75699756997574,16.204144534774258],[119.75699756997574,16.215964575663435],[119.7749977499775,16.280130511918983],[119.78219782197823,16.322344943666053],[119.78939789397896,16.342607870904644],[119.80019800198005,16.357805066333583],[119.81099810998109,16.367936529952885],[119.81819818198181,16.367936529952885],[119.8289982899829,16.366247952682997],[119.83259832598327,16.367936529952885],[119.85059850598509,16.378067993572174],[119.85419854198545,16.38144514811195],[119.86859868598685,16.384822302651713],[119.89019890198904,16.388199457191476],[119.91539915399153,16.38144514811195],[119.92619926199262,16.364559375413123],[119.92619926199262,16.344296448174532],[119.90099900999013,16.25142469833098],[119.91539915399153,16.242981811981565],[119.9585995859959,16.23116177109239],[119.96939969399693,16.226096039282737],[119.97659976599766,16.217653152933323],[120.00540005400057,16.18894733934532],[120.01620016200161,16.182193030265793],[120.0378003780038,16.182193030265793],[120.04860048600489,16.180504452995905],[120.06300063000629,16.17375014391638],[120.0810008100081,16.155175793947663],[120.08820088200883,16.15686437121755],[120.0918009180092,16.153487216677775],[120.09900099000993,16.08932128042224],[120.10620106201065,16.06905835318365],[120.12060120601205,16.055549735024584],[120.13860138601387,16.045418271405282],[120.18540185401855,16.033598230516105],[120.20700207002074,16.03190965324623],[120.22860228602286,16.036975385055868],[120.24660246602468,16.04879542594506],[120.25740257402578,16.05217258048482],[120.29340293402936,16.055549735024584],[120.30780307803082,16.045418271405282],[120.30060300603009,16.016712457817277],[120.31140311403112,16.02684392143658],[120.32220322203221,16.04879542594506],[120.3330033300333,16.058926889564347],[120.34020340203404,16.055549735024584],[120.35100351003513,16.05217258048482],[120.36180361803616,16.055549735024584],[120.36900369003689,16.065681198643887],[120.36180361803616,16.072435507723412],[120.34740347403476,16.070746930453524],[120.3330033300333,16.065681198643887],[120.32580325803258,16.065681198643887],[120.32940329403294,16.079189816802938],[120.36540365403653,16.107895630390942],[120.37260372603726,16.123092825819896],[120.37980379803798,16.134912866709072],[120.3978039780398,16.153487216677775],[120.40140401404017,16.165307257566965],[120.40140401404017,16.205833112044147],[120.3978039780398,16.2294731938225],[120.38700387003871,16.25142469833098],[120.35460354603549,16.29195055280816],[120.35460354603549,16.27168762556957],[120.34740347403476,16.280130511918983],[120.3438034380344,16.285196243728635],[120.33660336603367,16.29195055280816],[120.31140311403112,16.455742547986787],[120.30060300603009,16.49457982519408],[120.30780307803082,16.545237143290564],[120.29700297002972,16.56887722506893],[120.28260282602827,16.592517306847284],[120.27540275402754,16.611091656815987],[120.28620286202863,16.62122312043529],[120.28620286202863,16.616157388625638],[120.289802898029,16.614468811355763],[120.29700297002972,16.614468811355763],[120.30780307803082,16.614468811355763],[120.30780307803082,16.62122312043529],[120.30060300603009,16.633043161324466],[120.30420304203045,16.654994665832945],[120.30780307803082,16.676946170341424],[120.32580325803258,16.712406293008954],[120.32220322203221,16.734357797517433],[120.31500315003149,16.756309302025898],[120.31140311403112,16.778260806534377],[120.31500315003149,16.800212311042856],[120.31500315003149,16.80865519739227],[120.31860318603185,16.818786661011558],[120.32580325803258,16.83060670190075],[120.3330033300333,16.837361010980274],[120.34020340203404,16.842426742789925],[120.35100351003513,16.85086962913934],[120.42660426604266,16.962315728951594],[120.43380433804339,16.982578656190185],[120.43740437404375,17.007907315238427],[120.41580415804157,17.180142196766468],[120.41580415804157,17.18351935130623],[120.40500405004053,17.19871654673517],[120.40140401404017,17.207159433084584],[120.40140401404017,17.222356628513523],[120.4122041220412,17.264571060260593],[120.4086040860409,17.321982687436602],[120.4122041220412,17.32873699651614],[120.43020430204302,17.347311346484844],[120.43740437404375,17.359131387374035],[120.44100441004412,17.367574273723434],[120.44460444604448,17.377705737342737],[120.44460444604448,17.38783720096204],[120.43380433804339,17.42329732362957],[120.40140401404017,17.497594723504406],[120.40140401404017,17.519546228012885],[120.35820358203586,17.529677691632173],[120.34020340203404,17.538120577981587],[120.3330033300333,17.556694927950304],[120.35460354603549,17.67827249138186],[120.36180361803616,17.686715377731275],[120.38340383403835,17.690092532271038],[120.40140401404017,17.696846841350563],[120.4122041220412,17.712044036779517],[120.41580415804157,17.73061838674822],[120.41580415804157,17.744127004907284],[120.4086040860409,17.759324200336223],[120.3978039780398,17.7711442412254],[120.39060390603908,17.781275704844703],[120.3978039780398,17.796472900273642],[120.4230042300423,17.823490136591772],[120.42660426604266,17.83868733202071],[120.43020430204302,17.86063883652919],[120.42660426604266,17.90285326827626],[120.42660426604266,17.916361886435325],[120.45180451804521,17.948444854563093],[120.47340473404734,17.992347863580036],[120.4770047700477,18.004167904469213],[120.4770047700477,18.02105367716804],[120.4770047700477,18.04300518167652],[120.47340473404734,18.064956686185],[120.46620466204661,18.076776727074176],[120.46980469804697,18.09028534523324],[120.52740527405274,18.20342002231537],[120.52380523805238,18.201731445045496],[120.52020520205201,18.206797176855147],[120.51660516605165,18.211862908664784],[120.51660516605165,18.216928640474435],[120.52020520205201,18.2203057950142],[120.52380523805238,18.221994372284087],[120.5310053100531,18.223682949553975],[120.5310053100531,18.227060104093738],[120.53460534605347,18.240568722252803],[120.56700567005669,18.29291461761916],[120.57780577805778,18.324997585746928],[120.58500585005851,18.363834862954235],[120.58500585005851,18.406049294701305],[120.57420574205742,18.443197994638723],[120.56340563405632,18.47021523095684],[120.55980559805602,18.487101003655667],[120.57060570605705,18.50229819908462],[120.59220592205924,18.52256112632321],[120.61020610206106,18.53775832175215],[120.62820628206282,18.541135476291913],[120.67140671406713,18.5326925899425],[120.68940689406895,18.534381167212388],[120.73620736207363,18.549578362641327],[120.75420754207545,18.55295551718109],[120.77220772207721,18.561398403530504],[120.77580775807758,18.58166133076911],[120.77580775807758,18.603612835277573],[120.77940779407794,18.62218718524629],[120.7938079380794,18.635695803405355],[120.81180811808122,18.644138689754755],[120.83340833408334,18.645827267024643],[120.85140851408516,18.639072957945118],[120.86580865808656,18.6204986079764],[120.89100891008911,18.57997275349922],[120.90900909009093,18.566464135340155],[120.9270092700927,18.566464135340155],[120.94860948609488,18.571529867149806],[120.96300963009634,18.58166133076911],[120.97020970209701,18.59010421711851],[120.97740977409774,18.598547103467922],[121.01701017010168,18.61712145343664],[121.03141031410314,18.62218718524629],[121.04221042210423,18.62218718524629],[121.06381063810642,18.6204986079764],[121.07461074610745,18.62218718524629],[121.08181081810818,18.62725291705594],[121.09621096210964,18.63738438067523],[121.10701107011073,18.64245011248488],[121.11781117811177,18.639072957945118],[121.1250112501125,18.634007226135466],[121.13581135811359,18.630630071595704],[121.16101161011613,18.628941494325815],[121.17181171811717,18.625564339786052],[121.1790117901179,18.61712145343664],[121.18261182611826,18.608678567087225],[121.18981189811899,18.6019242580077],[121.24021240212403,18.57828417622933],[121.26541265412658,18.55464409445098],[121.3626136261363,18.505675353624383],[121.3770137701377,18.49554389000508],[121.39141391413915,18.487101003655667],[121.42381423814237,18.47696954003638],[121.49941499414996,18.429689376479658],[121.50661506615069,18.426312221939895],[121.52101521015209,18.424623644670007],[121.52461524615245,18.422935067400132],[121.53181531815318,18.416180758320593],[121.5390153901539,18.40773787197118],[121.54621546215463,18.399294985621765],[121.59301593015931,18.384097790192826],[121.6146161461615,18.358769131144584],[121.6290162901629,18.331751894826468],[121.65061650616508,18.31317754485775],[121.65061650616508,18.319931853937277],[121.63621636216362,18.33512904936623],[121.63621636216362,18.35539197660482],[121.64341643416435,18.368900594763886],[121.66141661416617,18.36552344022411],[121.6722167221672,18.35539197660482],[121.85221852218524,18.28784888580951],[121.89541895418955,18.279405999460096],[121.91701917019174,18.279405999460096],[121.97461974619745,18.286160308539635],[121.98541985419854,18.291226040349272],[122.03942039420394,18.319931853937277],[122.07902079020789,18.379032058383174],[122.08982089820898,18.389163522002477],[122.11142111421117,18.39254067654224],[122.1186211862119,18.402672140161542],[122.12222122221226,18.436443685559183],[122.14742147421475,18.507363930894257],[122.15462154621548,18.51918397178345],[122.19782197821979,18.52256112632321],[122.21942219422198,18.52256112632321],[122.23382233822338,18.51580681724367],[122.24462244622447,18.500609621814732],[122.24822248222483,18.46008376733755],[122.2518225182252,18.443197994638723],[122.25902259022592,18.43306653101942],[122.28782287822878,18.409426449241067],[122.29862298622987,18.404360717431416]]],[[[32.97812978129781,31.082198859710715],[32.974529745297474,31.087264591520366],[32.97092970929711,31.087264591520366],[32.97812978129781,31.09064174606013],[32.981729817298174,31.09064174606013],[32.98532985329854,31.083887436980604],[32.9889298892989,31.0737559733613],[32.97812978129781,31.082198859710715]]],[[[131.65871658716588,32.47696368463383],[131.65511655116552,32.45670075739524],[131.67311673116734,32.441503561966286],[131.68751687516874,32.421240634727695],[131.66231662316625,32.406043439298756],[131.65151651516516,32.400977707489105],[131.64071640716406,32.39928913021923],[131.63351633516334,32.395911975679454],[131.62991629916303,32.38746908933004],[131.6227162271623,32.360451853011924],[131.61911619116194,32.33681177123357],[131.61551615516157,32.33174603942392],[131.6119161191612,32.33005746215403],[131.60111601116012,32.323303153074505],[131.5939159391594,32.303040225835915],[131.579515795158,32.254071485009305],[131.56151561515617,32.218611362341775],[131.55071550715508,32.16964262151518],[131.52911529115295,32.10716526252952],[131.49671496714967,32.01260493541609],[131.45711457114572,31.906224567413474],[131.44631446314463,31.87751875382547],[131.449914499145,31.858944403856754],[131.44631446314463,31.847124362967577],[131.45711457114572,31.821795703919335],[131.46791467914682,31.804909931220507],[131.49671496714967,31.796467044871108],[131.4931149311493,31.786335581251805],[131.4787147871479,31.771138385822866],[131.47511475114754,31.762695499473452],[131.449914499145,31.651249399661182],[131.45711457114572,31.620855008803304],[131.4247142471425,31.598903504294825],[131.41031410314105,31.58539488613576],[131.40671406714068,31.57019769070682],[131.40311403114032,31.56850911343693],[131.39231392313923,31.54824618619834],[131.3851138511385,31.539803299848927],[131.3851138511385,31.526294681689862],[131.38871388713886,31.521228949880225],[131.39231392313923,31.516163218070574],[131.39231392313923,31.51278606353081],[131.39231392313923,31.490834559022332],[131.38871388713886,31.48576882721268],[131.37791377913783,31.473948786323504],[131.37431374313746,31.46719447724398],[131.36351363513637,31.419914313687258],[131.359913599136,31.409782850067955],[131.34551345513455,31.394585654639016],[131.3419134191342,31.386142768289602],[131.3419134191342,31.379388459210077],[131.33831338313382,31.372634150130537],[131.3311133111331,31.3675684183209],[131.3275132751328,31.370945572860663],[131.32391323913242,31.372634150130537],[131.3167131671317,31.374322727400425],[131.32391323913242,31.38107703647995],[131.32391323913242,31.384454191019728],[131.32391323913242,31.38783134555949],[131.28431284312842,31.38276561374984],[131.26631266312666,31.38107703647995],[131.24831248312483,31.38783134555949],[131.24471244712447,31.396274231908905],[131.24471244712447,31.411471427337844],[131.24471244712447,31.421602890957146],[131.23751237512374,31.42835720003667],[131.21951219512198,31.446931550005388],[131.21231212312125,31.455374436354802],[131.2087120871209,31.455374436354802],[131.20151201512016,31.457063013624676],[131.17991179911797,31.451997281815025],[131.1619116191162,31.463817322704216],[131.15111151111512,31.47057163178374],[131.12951129511293,31.468883054513853],[131.1079110791108,31.463817322704216],[131.07191071910722,31.45030870454515],[131.05751057510577,31.44017724092585],[131.04671046710467,31.426668622766783],[131.02871028710285,31.401339963718556],[131.01431014310145,31.36250268651125],[131.02511025110255,31.354059800161835],[131.06111061110613,31.34561691381242],[131.08271082710826,31.338862604732896],[131.10431104311044,31.328731141113593],[131.1079110791108,31.316911100224416],[131.10431104311044,31.310156791144877],[131.08271082710826,31.296648172985826],[131.0755107551076,31.281450977556872],[131.09351093510935,31.276385245747235],[131.12591125911263,31.288205286636412],[131.1331113311133,31.279762400286998],[131.06111061110613,31.225727927650752],[131.03231032310322,31.227416504920626],[131.00711007110073,31.2206621958411],[131.00711007110073,31.20039926860251],[130.99630996309963,31.186890650443445],[130.97830978309787,31.156496259585552],[130.96750967509678,31.141299064156613],[130.9567095670957,31.131167600537324],[130.94230942309423,31.121036136918022],[130.92430924309247,31.112593250568608],[130.90630906309065,31.107527518758957],[130.87030870308706,31.09570747786978],[130.8451084510845,31.09064174606013],[130.81990819908202,31.087264591520366],[130.7911079110791,31.077133127901064],[130.77310773107735,31.065313087011887],[130.76590765907662,31.056870200662473],[130.72630726307267,31.046738737043185],[130.6939069390694,31.01803292345518],[130.67950679506794,31.004524305296115],[130.6579065790658,31.002835728026227],[130.66510665106654,31.068690241551664],[130.69030690306903,31.09064174606013],[130.72990729907298,31.11090467329872],[130.74430744307443,31.121036136918022],[130.76590765907662,31.186890650443445],[130.75510755107553,31.203776423142273],[130.78030780307802,31.24261370034958],[130.7911079110791,31.274696668477347],[130.79830798307984,31.32535398657383],[130.79470794707947,31.343928336542533],[130.78390783907838,31.372634150130537],[130.76950769507698,31.40302854098843],[130.7479074790748,31.435111509116197],[130.70470704707049,31.458751590894565],[130.6939069390694,31.48576882721268],[130.70470704707049,31.52798325895975],[130.6939069390694,31.546557608928467],[130.63630636306362,31.55500049527788],[130.61830618306186,31.563443381627295],[130.61110611106113,31.566820536167057],[130.59670596705968,31.573574845246583],[130.58950589505895,31.58539488613576],[130.6147061470615,31.61241212245389],[130.63630636306362,31.622543586073178],[130.66150661506617,31.61747785426354],[130.68670686706866,31.619166431533415],[130.7119071190712,31.614100699723764],[130.7227072270723,31.597214927024936],[130.71910719107194,31.57019769070682],[130.7227072270723,31.563443381627295],[130.7371073710737,31.560066227087518],[130.7479074790748,31.560066227087518],[130.7587075870759,31.563443381627295],[130.7767077670777,31.580329154326108],[130.79830798307984,31.61241212245389],[130.80910809108093,31.651249399661182],[130.80550805508057,31.686709522328727],[130.7767077670777,31.71034960410708],[130.7371073710737,31.708661026837206],[130.68670686706866,31.725546799536033],[130.64350643506435,31.71541533591673],[130.6147061470615,31.681643790519075],[130.61110611106113,31.671512326899787],[130.60750607506077,31.646183667851545],[130.6039060390604,31.63774078150213],[130.57510575105755,31.610723545184],[130.56790567905682,31.600592081564713],[130.55710557105573,31.566820536167057],[130.54270542705427,31.541491877118816],[130.52830528305282,31.51278606353081],[130.51750517505178,31.472260209053616],[130.51750517505178,31.453685859084914],[130.52110521105215,31.431734354576434],[130.549905499055,31.374322727400425],[130.56430564305646,31.333796872923244],[130.57510575105755,31.315222522954528],[130.58950589505895,31.306779636605114],[130.6039060390604,31.301713904795463],[130.62190621906223,31.276385245747235],[130.66150661506617,31.271319513937584],[130.66150661506617,31.25781089577852],[130.65070650706508,31.224039350380863],[130.64710647106472,31.207153577682035],[130.639906399064,31.186890650443445],[130.62190621906223,31.17844776409403],[130.6039060390604,31.171693455014506],[130.58590585905858,31.154807682315678],[130.57510575105755,31.166627723204854],[130.56430564305646,31.166627723204854],[130.549905499055,31.16325056866509],[130.53550535505354,31.161561991395203],[130.52110521105215,31.168316300474743],[130.51750517505178,31.17507060955427],[130.51750517505178,31.190267804983208],[130.5067050670507,31.212219309491687],[130.4959049590496,31.227416504920626],[130.45270452704528,31.249368009429105],[130.2979029790298,31.254433741238756],[130.27630276302762,31.252745163968868],[130.24750247502476,31.244302277619454],[130.22230222302227,31.245990854889342],[130.21150211502118,31.26118805031828],[130.2079020790208,31.279762400286998],[130.20430204302045,31.293271018446063],[130.19350193501936,31.315222522954528],[130.1791017910179,31.327042563843705],[130.189901899019,31.327042563843705],[130.2079020790208,31.32535398657383],[130.2079020790208,31.337174027463007],[130.19710197101972,31.354059800161835],[130.17190171901723,31.377699881940188],[130.13950139501395,31.39796280917878],[130.11790117901182,31.40809427279808],[130.14670146701468,31.419914313687258],[130.1539015390154,31.421602890957146],[130.16110161101614,31.421602890957146],[130.17550175501754,31.416537159147495],[130.18270182701826,31.416537159147495],[130.19710197101972,31.411471427337844],[130.21510215102154,31.391208500099253],[130.22950229502294,31.38107703647995],[130.2439024390244,31.40471711825832],[130.29430294302944,31.4452429727355],[130.30510305103053,31.477325940863267],[130.31590315903162,31.49252313629222],[130.32670326703266,31.52967183622964],[130.33390333903338,31.561754804357406],[130.32310323103235,31.587083463405648],[130.33750337503375,31.60734639064424],[130.33750337503375,31.625920740612955],[130.32670326703266,31.64280651331177],[130.2979029790298,31.6698237496299],[130.25830258302585,31.720481067726382],[130.24750247502476,31.728923954075796],[130.20070200702008,31.754252613124038],[130.18270182701826,31.759318344933675],[130.18270182701826,31.76776123128309],[130.17190171901723,31.789712735791568],[130.18270182701826,31.826861435728986],[130.189901899019,31.8353043220784],[130.22230222302227,31.825172858459112],[130.23670236702367,31.82010712664946],[130.2079020790208,31.843747208427814],[130.19710197101972,31.858944403856754],[130.21510215102154,31.885961640174884],[130.2187021870219,31.929864649191828],[130.21510215102154,31.950127576430432],[130.20430204302045,31.972079080938897],[130.19350193501936,31.98052196728831],[130.189901899019,31.985587699097962],[130.17550175501754,31.999096317257028],[130.17190171901723,32.01767066722573],[130.18630186301863,32.026113553575144],[130.20430204302045,32.04806505808362],[130.20430204302045,32.073393717131864],[130.1791017910179,32.093656644370455],[130.2079020790208,32.120673880688585],[130.24750247502476,32.134182498847636],[130.27990279902798,32.10041095344998],[130.2979029790298,32.10547668525963],[130.31950319503198,32.1189853034187],[130.33030330303302,32.129116767038],[130.33390333903338,32.135871076117525],[130.34470344703448,32.161199735165766],[130.34470344703448,32.16288831243564],[130.34830348303484,32.16626546697542],[130.35550355503557,32.16964262151518],[130.35910359103593,32.17301977605494],[130.35910359103593,32.18652839421401],[130.35910359103593,32.18990554875377],[130.4311043110431,32.25744863954908],[130.4419044190442,32.282777298597324],[130.44550445504456,32.28784303040696],[130.45630456304565,32.2945973394865],[130.459904599046,32.29966307129614],[130.46350463504638,32.30979453491544],[130.459904599046,32.318237421264854],[130.459904599046,32.32668030761427],[130.4707047070471,32.34694323485286],[130.47790477904778,32.34863181212275],[130.50310503105032,32.32668030761427],[130.51390513905142,32.338500348503445],[130.51390513905142,32.35032038939262],[130.51030510305105,32.379026202980626],[130.51390513905142,32.385780512060165],[130.5391053910539,32.416174902918044],[130.5607056070561,32.42630636653735],[130.57150571505719,32.45163502558559],[130.56790567905682,32.47696368463383],[130.549905499055,32.49216088006277],[130.55710557105573,32.50229234368207],[130.57150571505719,32.505669498221835],[130.60030600306004,32.505669498221835],[130.58950589505895,32.5191781163809],[130.56790567905682,32.53437531180984],[130.56430564305646,32.546195352699016],[130.57150571505719,32.55463823904843],[130.639906399064,32.6069841344148],[130.6579065790658,32.62386990711363],[130.6687066870669,32.64919856616186],[130.639906399064,32.64750998889198],[130.47790477904778,32.62218132984374],[130.459904599046,32.615427020764216],[130.44910449104492,32.62218132984374],[130.45630456304565,32.635689948002806],[130.47430474304747,32.64750998889198],[130.54270542705427,32.67621580247999],[130.56430564305646,32.693101575178815],[130.57510575105755,32.698167306988466],[130.5931059310593,32.69647872971858],[130.60750607506077,32.70154446152823],[130.6147061470615,32.7032330387981],[130.6255062550626,32.7032330387981],[130.6255062550626,32.71167592514752],[130.61110611106113,32.71674165695717],[130.60030600306004,32.72687312057647],[130.5931059310593,32.73869316146565],[130.5931059310593,32.748824625084936],[130.5931059310593,32.755578934164475],[130.59670596705968,32.762333243244],[130.61110611106113,32.775841861403066],[130.6147061470615,32.78090759321272],[130.61110611106113,32.78597332502237],[130.60750607506077,32.78935047956213],[130.6039060390604,32.79610478864166],[130.5931059310593,32.81636771588025],[130.51750517505178,32.86871361124662],[130.4707047070471,32.9092394657238],[130.4419044190442,32.92443666115274],[130.43470434704346,32.94132243385157],[130.42750427504274,33.00717694737699],[130.42750427504274,33.05107995639395],[130.42030420304206,33.06965430636265],[130.42390423904243,33.083162924521716],[130.42030420304206,33.08822865633137],[130.4167041670417,33.09160581087113],[130.40950409504097,33.09329438814102],[130.4059040590406,33.09329438814102],[130.39870398703988,33.09498296541089],[130.38070380703806,33.10849158356996],[130.3735037350374,33.11524589264948],[130.36630366303666,33.127065933538674],[130.36630366303666,33.135508819888074],[130.36630366303666,33.140574551697725],[130.33750337503375,33.14395170623749],[130.31590315903162,33.14901743804714],[130.30150301503016,33.14901743804714],[130.29070290702907,33.14901743804714],[130.25830258302585,33.17941182890503],[130.24030240302403,33.187854715254446],[130.2187021870219,33.15914890166644],[130.1791017910179,33.135508819888074],[130.15030150301504,33.11186873810972],[130.12870128701286,33.120311624459134],[130.13230132301322,33.10173727449043],[130.14670146701468,33.084851501791604],[130.16110161101614,33.05445711093371],[130.20430204302045,32.99197975194805],[130.22230222302227,32.97509397924922],[130.2187021870219,32.95483105201063],[130.20430204302045,32.95145389747087],[130.20430204302045,32.92950239296239],[130.189901899019,32.915993774803326],[130.1647016470165,32.9092394657238],[130.15030150301504,32.895730847564735],[130.1359013590136,32.88897653848521],[130.11430114301146,32.880533652135796],[130.10710107101073,32.875467920326145],[130.1215012150122,32.86871361124662],[130.13230132301322,32.855204993087554],[130.1539015390154,32.84169637492849],[130.1791017910179,32.84169637492849],[130.19350193501936,32.84507352946825],[130.2439024390244,32.875467920326145],[130.3087030870309,32.875467920326145],[130.3411034110341,32.85689357035743],[130.3519035190352,32.833253488579075],[130.3735037350374,32.792727634101894],[130.3735037350374,32.78090759321272],[130.3771037710377,32.74713604781506],[130.3735037350374,32.73869316146565],[130.35550355503557,32.71674165695717],[130.3519035190352,32.7032330387981],[130.35910359103593,32.688035843369164],[130.3411034110341,32.66777291613057],[130.30510305103053,32.650887143431746],[130.26910269102694,32.650887143431746],[130.25830258302585,32.64413283435222],[130.25830258302585,32.63231279346303],[130.2547025470255,32.625558484383504],[130.23670236702367,32.62218132984374],[130.2331023310233,32.610361288954564],[130.22230222302227,32.60529555714491],[130.19710197101972,32.603606979875025],[130.18270182701826,32.59178693898585],[130.1647016470165,32.59347551625574],[130.17190171901723,32.603606979875025],[130.16830168301686,32.61880417530398],[130.1539015390154,32.625558484383504],[130.14670146701468,32.63400137073292],[130.12870128701286,32.64075567981244],[130.12870128701286,32.66101860705105],[130.12870128701286,32.6846586888294],[130.14310143101432,32.68128153428964],[130.1539015390154,32.68634726609929],[130.16830168301686,32.698167306988466],[130.1791017910179,32.70492161606799],[130.189901899019,32.713364502417406],[130.20070200702008,32.72349596603671],[130.21150211502118,32.733627429655996],[130.2079020790208,32.75220177962471],[130.19710197101972,32.75726751143435],[130.18630186301863,32.762333243244],[130.18270182701826,32.76908755232354],[130.18630186301863,32.77415328413318],[130.189901899019,32.78428474775248],[130.1791017910179,32.792727634101894],[130.14670146701468,32.79610478864166],[130.13950139501395,32.78935047956213],[130.1251012510125,32.78935047956213],[130.09270092700928,32.79441621137178],[130.06390063900642,32.78428474775248],[130.04950049500496,32.7724647068633],[130.03150031500314,32.75895608870424],[130.00990009900102,32.75389035689459],[129.9918999189992,32.74713604781506],[129.97029970299707,32.7437588932753],[129.96309963099634,32.75220177962471],[129.96309963099634,32.762333243244],[129.95949959499598,32.76402182051389],[129.94869948699488,32.75726751143435],[129.9558995589956,32.74544747054517],[129.94149941499415,32.728561697846345],[129.91629916299166,32.698167306988466],[129.9018990189902,32.68128153428964],[129.89469894698948,32.66270718432092],[129.8730987309873,32.64919856616186],[129.85509855098553,32.64075567981244],[129.84069840698407,32.63906710254257],[129.8370983709837,32.63231279346303],[129.83349833498335,32.615427020764216],[129.80829808298085,32.5968526707955],[129.78669786697867,32.583344052636434],[129.7830978309783,32.573212589017146],[129.77589775897758,32.57658974355691],[129.76149761497618,32.57996689809667],[129.7506975069751,32.573212589017146],[129.739897398974,32.568146857207495],[129.73269732697327,32.58165547536656],[129.7506975069751,32.59178693898585],[129.76149761497618,32.59516409352561],[129.77589775897758,32.60022982533526],[129.7830978309783,32.6069841344148],[129.7938979389794,32.63231279346303],[129.8046980469805,32.64750998889198],[129.81549815498158,32.66270718432092],[129.81909819098195,32.677904379749876],[129.81549815498158,32.68297011155951],[129.8046980469805,32.677904379749876],[129.79749797497976,32.6846586888294],[129.79749797497976,32.69141299790893],[129.80829808298085,32.69479015244869],[129.81549815498158,32.70154446152823],[129.82629826298262,32.70492161606799],[129.83349833498335,32.69479015244869],[129.84429844298444,32.70154446152823],[129.8586985869859,32.72518454330658],[129.82269822698225,32.72180738876682],[129.82269822698225,32.735316006925885],[129.8046980469805,32.7724647068633],[129.7938979389794,32.78090759321272],[129.7830978309783,32.78428474775248],[129.77949779497794,32.791039056832005],[129.77589775897758,32.80285909772118],[129.7722977229772,32.81467913861037],[129.75429754297545,32.818056293150136],[129.74349743497436,32.80961340680072],[129.73269732697327,32.80623625226096],[129.72189721897217,32.82649917949955],[129.69669696696968,32.840007797658615],[129.6858968589686,32.855204993087554],[129.67869678696786,32.87040218851649],[129.6750967509675,32.880533652135796],[129.6750967509675,32.89235369302497],[129.66789667896683,32.90417373391415],[129.6606966069661,32.91430519753345],[129.65349653496537,32.922748083882865],[129.6390963909639,32.92612523842263],[129.6318963189632,32.95651962928052],[129.6318963189632,32.978471133788986],[129.64629646296464,32.99029117467816],[129.65349653496537,33.00379979283723],[129.649896498965,33.01730841099629],[129.65349653496537,33.03419418369512],[129.6606966069661,33.03925991550477],[129.66429664296646,33.06965430636265],[129.68229682296823,33.09329438814102],[129.72189721897217,33.07978576998195],[129.73629736297363,33.05952284274336],[129.73629736297363,33.057834265473474],[129.73269732697327,33.04939137912406],[129.73629736297363,33.0460142245843],[129.74349743497436,33.05107995639395],[129.7506975069751,33.057834265473474],[129.75429754297545,33.05445711093371],[129.75789757897581,33.047702801854186],[129.75429754297545,33.040948492774646],[129.739897398974,33.01899698826618],[129.73629736297363,33.00379979283723],[129.739897398974,32.99029117467816],[129.7506975069751,32.995356906487814],[129.76509765097654,33.01730841099629],[129.79749797497976,33.01055410191677],[129.81189811898122,32.995356906487814],[129.82269822698225,32.980159711058874],[129.81549815498158,32.97171682470946],[129.81549815498158,32.96158536109016],[129.81549815498158,32.937945279311805],[129.81549815498158,32.922748083882865],[129.80829808298085,32.91430519753345],[129.80109801098013,32.92443666115274],[129.7938979389794,32.94807674293111],[129.78669786697867,32.94807674293111],[129.79029790297903,32.91261662026356],[129.8046980469805,32.902485156644275],[129.80829808298085,32.88559938394545],[129.7938979389794,32.875467920326145],[129.81549815498158,32.86364787943697],[129.82269822698225,32.85858214762732],[129.82989829898298,32.8501392612779],[129.84069840698407,32.84507352946825],[129.84429844298444,32.838319220388726],[129.85149851498517,32.84169637492849],[129.85509855098553,32.84676210673814],[129.869498694987,32.853516415817666],[129.8730987309873,32.860270724897205],[129.8838988389884,32.875467920326145],[129.93429934299343,32.860270724897205],[129.98829988299883,32.84169637492849],[130.0027000270003,32.84507352946825],[129.98469984699847,32.86364787943697],[129.93069930699306,32.92950239296239],[129.93069930699306,32.958208206550395],[129.9378993789938,32.97171682470946],[129.94869948699488,32.995356906487814],[129.94509945099452,33.015619833726404],[129.9126991269913,33.035882760964995],[129.88029880298802,33.062899997283125],[129.85149851498517,33.05445711093371],[129.83349833498335,33.042637070044535],[129.82269822698225,33.042637070044535],[129.82269822698225,33.062899997283125],[129.79749797497976,33.078097192712065],[129.78669786697867,33.07134288363254],[129.77589775897758,33.057834265473474],[129.76149761497618,33.057834265473474],[129.74709747097472,33.06627715182289],[129.74349743497436,33.07640861544219],[129.73269732697327,33.10173727449043],[129.739897398974,33.10173727449043],[129.7506975069751,33.098360119950655],[129.74709747097472,33.11693446991937],[129.74709747097472,33.125377356268785],[129.76149761497618,33.13044308807844],[129.75789757897581,33.13888597442785],[129.74709747097472,33.13888597442785],[129.7290972909729,33.12200020172902],[129.72189721897217,33.13213166534831],[129.72189721897217,33.145640283507376],[129.72189721897217,33.15914890166644],[129.71109711097114,33.162526056206204],[129.71109711097114,33.140574551697725],[129.70749707497077,33.11862304718926],[129.7038970389704,33.11186873810972],[129.69669696696968,33.11355731537961],[129.68229682296823,33.11524589264948],[129.6750967509675,33.103425851760306],[129.66789667896683,33.10173727449043],[129.6606966069661,33.127065933538674],[129.68229682296823,33.13044308807844],[129.6858968589686,33.14226312896761],[129.68229682296823,33.1523945925869],[129.6750967509675,33.160837478936315],[129.66429664296646,33.16590321074597],[129.65349653496537,33.17096894255562],[129.65709657096573,33.17941182890503],[129.65709657096573,33.18447756071468],[129.65349653496537,33.18954329252432],[129.64629646296464,33.197986178873734],[129.6390963909639,33.1929204470641],[129.62829628296282,33.19123186979421],[129.6174961749618,33.19460902433397],[129.59949599495997,33.208117642493036],[129.58869588695887,33.2114947970328],[129.56349563495638,33.2114947970328],[129.5526955269553,33.225003415191864],[129.56349563495638,33.25539780604976],[129.56709567095675,33.272283578748585],[129.57429574295742,33.27734931055822],[129.58149581495815,33.27566073328835],[129.59229592295924,33.28410361963776],[129.58869588695887,33.28916935144741],[129.5850958509585,33.30098939233659],[129.57069570695705,33.32125231957518],[129.57789577895778,33.348269555893296],[129.58149581495815,33.370221060401775],[129.59229592295924,33.38035252402108],[129.6210962109621,33.36008959678247],[129.64269642696428,33.36177817405236],[129.67149671496713,33.39892687398978],[129.67869678696786,33.390483987640366],[129.6750967509675,33.36177817405236],[129.70029700297005,33.35333528770295],[129.74349743497436,33.365155328592124],[129.80829808298085,33.348269555893296],[129.81549815498158,33.33138378319447],[129.81909819098195,33.30436654687635],[129.82629826298262,33.29423508325705],[129.8370983709837,33.285792196907636],[129.85149851498517,33.280726465098],[129.8478984789848,33.29423508325705],[129.84069840698407,33.31618658776553],[129.8478984789848,33.348269555893296],[129.8586985869859,33.36684390586201],[129.869498694987,33.37866394675119],[129.86229862298626,33.390483987640366],[129.869498694987,33.397238296719905],[129.81549815498158,33.42594411030791],[129.79749797497976,33.44451846027661],[129.78669786697867,33.454649923895914],[129.79749797497976,33.468158542054965],[129.8046980469805,33.48166716021403],[129.81909819098195,33.48504431475379],[129.8370983709837,33.46646996478509],[129.84069840698407,33.454649923895914],[129.8478984789848,33.44282988300674],[129.86229862298626,33.43776415119709],[129.8730987309873,33.44282988300674],[129.86589865898662,33.45633850116579],[129.84429844298444,33.48166716021403],[129.8370983709837,33.51375012834181],[129.85509855098553,33.532324478310514],[129.85149851498517,33.552587405549104],[129.869498694987,33.53907878739004],[129.88749887498875,33.53570163285028],[129.90909909099094,33.54752167373945],[129.94149941499415,33.532324478310514],[129.95949959499598,33.51206155107192],[129.9558995589956,33.50361866472251],[129.94509945099452,33.490110046563444],[129.94149941499415,33.479978582944156],[129.95229952299525,33.473224273864616],[129.96309963099634,33.48335573748392],[129.9666996669967,33.473224273864616],[129.9666996669967,33.46309281024533],[129.97389973899737,33.454649923895914],[129.98829988299883,33.44958419208626],[130.01710017100174,33.4462070375465],[130.02790027900278,33.45127276935615],[130.03870038700387,33.46140423297544],[130.0459004590046,33.48504431475379],[130.0567005670057,33.495175778373095],[130.08550085500855,33.50699581926227],[130.10350103501037,33.51206155107192],[130.11430114301146,33.50868439653216],[130.1251012510125,33.515438705611686],[130.12870128701286,33.51881586015145],[130.14310143101432,33.52050443742134],[130.15750157501577,33.52557016923099],[130.16830168301686,33.5340130555804],[130.17550175501754,33.54752167373945],[130.16110161101614,33.54583309646958],[130.12870128701286,33.54076736465993],[130.1215012150122,33.542455941929816],[130.11790117901182,33.557653137358756],[130.1107011070111,33.559341714628644],[130.09630096300964,33.56103029189852],[130.09270092700928,33.56609602370817],[130.09270092700928,33.572850332787695],[130.09990099901,33.58129321913711],[130.1107011070111,33.58973610548652],[130.11790117901182,33.59142468275641],[130.12870128701286,33.59142468275641],[130.13950139501395,33.594801837296174],[130.15750157501577,33.60662187818535],[130.1539015390154,33.61844191907453],[130.16110161101614,33.63026195996372],[130.17190171901723,33.62857338269383],[130.18270182701826,33.62857338269383],[130.189901899019,33.63026195996372],[130.19710197101972,33.63363911450348],[130.20430204302045,33.640393423583006],[130.2079020790208,33.66572208263125],[130.22230222302227,33.65896777355172],[130.2331023310233,33.65390204174207],[130.23670236702367,33.64377057812277],[130.22590225902258,33.635327691773355],[130.2331023310233,33.61844191907453],[130.2439024390244,33.611687609995],[130.25110251102512,33.60831045545524],[130.2727027270273,33.611687609995],[130.27630276302762,33.60324472364559],[130.26550265502658,33.58804752821665],[130.2727027270273,33.582981796407],[130.2871028710287,33.57622748732746],[130.29070290702907,33.57453891005758],[130.29430294302944,33.579604641867235],[130.30150301503016,33.579604641867235],[130.30510305103053,33.58467037367687],[130.31590315903162,33.59817899183594],[130.33030330303302,33.59817899183594],[130.35910359103593,33.59649041456606],[130.3735037350374,33.60324472364559],[130.39150391503915,33.60493330091548],[130.39870398703988,33.61675334180465],[130.40230402304024,33.63026195996372],[130.4059040590406,33.65052488720231],[130.40230402304024,33.65896777355172],[130.39870398703988,33.66909923717101],[130.38070380703806,33.65896777355172],[130.3627036270363,33.64545915539266],[130.34830348303484,33.640393423583006],[130.33750337503375,33.64714773266253],[130.32310323103235,33.65221346447218],[130.31950319503198,33.65896777355172],[130.3087030870309,33.655590619011946],[130.29430294302944,33.66403350536136],[130.29070290702907,33.68091927806019],[130.29430294302944,33.6893621644096],[130.30510305103053,33.68767358713973],[130.31230312303126,33.672476391710774],[130.32310323103235,33.66572208263125],[130.34470344703448,33.662344928091485],[130.3879038790388,33.677542123520425],[130.40230402304024,33.6893621644096],[130.4167041670417,33.70287078256867],[130.42750427504274,33.71300224618797],[130.44550445504456,33.718067977997606],[130.45270452704528,33.72819944161691],[130.46710467104674,33.74339663704585],[130.4707047070471,33.76365956428444],[130.46710467104674,33.780545336983266],[130.45630456304565,33.782233914253155],[130.44910449104492,33.79067680060257],[130.44910449104492,33.802496841491745],[130.45270452704528,33.8075625733014],[130.46350463504638,33.81093972784116],[130.4707047070471,33.817694036920685],[130.47790477904778,33.824448346000224],[130.48870488704887,33.8548427368581],[130.4959049590496,33.84808842777858],[130.5067050670507,33.849777005048466],[130.53190531905318,33.86159704593764],[130.5391053910539,33.87003993228706],[130.54270542705427,33.87679424136658],[130.549905499055,33.880171395906345],[130.56430564305646,33.88354855044612],[130.61110611106113,33.880171395906345],[130.63270632706326,33.88185997317623],[130.65430654306545,33.89705716860517],[130.6831068310683,33.93420586854259],[130.6939069390694,33.93758302308237],[130.70470704707049,33.93927160035224],[130.71550715507158,33.93758302308237],[130.72990729907298,33.93251729127272],[130.75510755107553,33.94433733216189],[130.7911079110791,33.94433733216189],[130.82710827108275,33.93927160035224],[130.81990819908202,33.92069725038354],[130.83430834308342,33.92576298219318],[130.86310863108633,33.92576298219318],[130.87030870308706,33.913942941304],[130.8811088110881,33.8953685913353],[130.89550895508955,33.88861428225576],[130.91350913509137,33.891991436795536],[130.92430924309247,33.89874574587506],[130.94230942309423,33.91732009584376],[130.94950949509496,33.93758302308237],[130.97830978309787,33.95784595032096],[131.00711007110073,33.96628883667037],[131.01791017910182,33.95615737305107],[131.01431014310145,33.93589444581248],[131.00711007110073,33.922385827653414],[131.00351003510036,33.91732009584376],[131.00351003510036,33.91056578676424],[130.99270992709927,33.89705716860517],[131.00351003510036,33.886925704985885],[130.9999099991,33.87341708682682],[130.98550985509854,33.87341708682682],[130.9891098910989,33.864974200477405],[130.9891098910989,33.85653131412799],[130.98550985509854,33.84808842777858],[130.97830978309787,33.843022695968926],[130.9639096390964,33.83289123234964],[130.96030960309605,33.81938261419057],[130.96030960309605,33.81600545965081],[130.96750967509678,33.81262830511105],[130.98550985509854,33.80925115057127],[131.00711007110073,33.81262830511105],[131.00351003510036,33.77885675971339],[131.00711007110073,33.77210245063385],[131.0107101071011,33.74677379158561],[131.02151021510218,33.72651086434702],[131.05031050310504,33.682607855330076],[131.0647106471065,33.65390204174207],[131.08271082710826,33.635327691773355],[131.10431104311044,33.62350765088418],[131.1187111871119,33.62688480542394],[131.14751147511475,33.621819073614304],[131.1871118711187,33.61675334180465],[131.21951219512198,33.60831045545524],[131.25551255512556,33.60493330091548],[131.28431284312842,33.582981796407],[131.32391323913242,33.58129321913711],[131.36711367113674,33.57453891005758],[131.41751417514178,33.58129321913711],[131.4247142471425,33.58973610548652],[131.4607146071461,33.61675334180465],[131.47511475114754,33.63195053723359],[131.48231482314822,33.65221346447218],[131.50031500315004,33.66741065990114],[131.52191521915222,33.67585354625055],[131.55071550715508,33.68091927806019],[131.57231572315726,33.68091927806019],[131.59031590315902,33.682607855330076],[131.60831608316084,33.677542123520425],[131.62631626316266,33.66741065990114],[131.6479164791648,33.66909923717101],[131.6659166591666,33.66741065990114],[131.6911169111691,33.642082000852895],[131.7127171271713,33.60493330091548],[131.7307173071731,33.579604641867235],[131.73791737917378,33.56103029189852],[131.74151741517414,33.53907878739004],[131.7307173071731,33.51206155107192],[131.73791737917378,33.48504431475379],[131.72711727117274,33.46309281024533],[131.70911709117092,33.432698419387435],[131.70551705517056,33.40905833760908],[131.69831698316983,33.40568118306932],[131.67311673116734,33.41581264668861],[131.65871658716588,33.42256695576813],[131.64071640716406,33.41581264668861],[131.6371163711637,33.40230402852954],[131.6371163711637,33.3871068331006],[131.63351633516334,33.37359821494154],[131.60831608316084,33.36853248313189],[131.60111601116012,33.365155328592124],[131.59751597515975,33.349958133163184],[131.57591575915762,33.34658097862342],[131.5579155791558,33.34658097862342],[131.5471154711547,33.35164671043307],[131.53271532715326,33.36684390586201],[131.50751507515076,33.36346675132225],[131.49671496714967,33.33982666954388],[131.51111511115113,33.27397215601846],[131.52911529115295,33.260463537859394],[131.5471154711547,33.25539780604976],[131.6119161191612,33.25370922877987],[131.65511655116552,33.272283578748585],[131.69831698316983,33.25370922877987],[131.70911709117092,33.270595001478696],[131.76311763117633,33.25370922877987],[131.8207182071821,33.243577765160566],[131.84951849518495,33.25202065150998],[131.88551885518854,33.26890642420881],[131.90351903519036,33.265529269669045],[131.88191881918823,33.23682345608104],[131.87111871118714,33.21487195157256],[131.87111871118714,33.19967475614362],[131.8639186391864,33.1929204470641],[131.84951849518495,33.187854715254446],[131.8315183151832,33.16928036528573],[131.82791827918282,33.1523945925869],[131.809918099181,33.127065933538674],[131.84231842318422,33.11355731537961],[131.86751867518677,33.12875451080855],[131.89991899919,33.12875451080855],[131.91071910719108,33.125377356268785],[131.88551885518854,33.110180160839846],[131.86751867518677,33.09498296541089],[131.8639186391864,33.083162924521716],[131.88191881918823,33.0747200381723],[131.8891188911889,33.07978576998195],[131.90711907119072,33.078097192712065],[131.91431914319145,33.06965430636265],[131.9287192871929,33.067965729092776],[131.93231932319327,33.07978576998195],[131.93591935919358,33.09160581087113],[131.9431194311943,33.09329438814102],[131.95031950319503,33.07640861544219],[131.95751957519576,33.067965729092776],[131.96831968319685,33.06121142001324],[131.97551975519758,33.05952284274336],[131.98631986319862,33.062899997283125],[131.98991989919898,33.06965430636265],[131.9971199711997,33.09160581087113],[132.01512015120153,33.064588574553014],[132.0079200792008,33.05107995639395],[131.9827198271983,33.0460142245843],[131.94671946719467,33.047702801854186],[131.9287192871929,33.047702801854186],[131.92151921519218,33.02912845188547],[131.90711907119072,33.01224267918664],[131.90351903519036,32.98353686559864],[131.91431914319145,32.97678255651911],[131.93591935919358,32.959896783820284],[131.95031950319503,32.959896783820284],[131.95751957519576,32.94469958839133],[131.96831968319685,32.94807674293111],[131.97911979119795,32.94976532020098],[131.98631986319862,32.94807674293111],[131.98991989919898,32.94132243385157],[131.9971199711997,32.93963385658169],[132.01152011520117,32.94469958839133],[132.01152011520117,32.93963385658169],[132.01512015120153,32.93456812477204],[132.02232022320226,32.936256702041916],[132.03312033120335,32.95145389747087],[132.0619206192062,32.94638816566122],[132.07992079920803,32.943011011121456],[132.0835208352084,32.932879547502154],[132.06552065520657,32.936256702041916],[132.04392043920438,32.9278138156925],[132.02592025920262,32.92443666115274],[131.99351993519934,32.90417373391415],[131.9827198271983,32.88897653848521],[131.98631986319862,32.88222222940567],[131.9971199711997,32.87884507486591],[132.00072000720007,32.87209076578638],[131.98991989919898,32.855204993087554],[131.9827198271983,32.84845068400803],[131.97191971919722,32.84507352946825],[131.9647196471965,32.838319220388726],[131.9539195391954,32.828187756769424],[131.96831968319685,32.82649917949955],[131.9971199711997,32.82987633403931],[132.00432004320044,32.82481060222966],[131.9971199711997,32.811301984070596],[131.97911979119795,32.79948194318142],[131.96111961119612,32.792727634101894],[131.94671946719467,32.792727634101894],[131.9287192871929,32.777530438672954],[131.88191881918823,32.78259617048259],[131.8747187471875,32.762333243244],[131.8747187471875,32.735316006925885],[131.87111871118714,32.73193885238612],[131.87111871118714,32.72687312057647],[131.86751867518677,32.72349596603671],[131.8639186391864,32.72011881149693],[131.86031860318604,32.71843023422706],[131.85671856718568,32.70154446152823],[131.85671856718568,32.68634726609929],[131.84951849518495,32.68128153428964],[131.8351183511835,32.698167306988466],[131.8207182071821,32.7032330387981],[131.81711817118173,32.68972442063905],[131.7991179911799,32.68128153428964],[131.78831788317882,32.66270718432092],[131.77391773917742,32.65426429797151],[131.77031770317706,32.64919856616186],[131.7667176671767,32.64413283435222],[131.7667176671767,32.64244425708233],[131.77031770317706,32.63906710254257],[131.77031770317706,32.63231279346303],[131.7667176671767,32.62049275257385],[131.74871748717487,32.59347551625574],[131.7451174511745,32.588409784446085],[131.7307173071731,32.583344052636434],[131.70911709117092,32.5867212071762],[131.70551705517056,32.58165547536656],[131.69831698316983,32.56476970266773],[131.68391683916838,32.53437531180984],[131.68391683916838,32.52255527092066],[131.69471694716947,32.510735230031486],[131.7127171271713,32.51242380730136],[131.71991719917202,32.5090466527616],[131.73791737917378,32.49216088006277],[131.71631716317165,32.47358653009407],[131.69471694716947,32.468520798284416],[131.68031680316807,32.47358653009407],[131.65871658716588,32.47696368463383]]],[[[133.4227342273423,34.44584478131705],[133.4119341193412,34.423893276808585],[133.33993339933403,34.34790729966386],[133.32553325533257,34.33608725877468],[133.29673296732966,34.324267217885506],[133.28233282332826,34.32089006334573],[133.27153271532717,34.32257864061562],[133.26433264332644,34.33102152696503],[133.27153271532717,34.339464413314445],[133.28233282332826,34.34284156785421],[133.29673296732966,34.3445301451241],[133.3039330393304,34.34959587693375],[133.31473314733148,34.36648164963256],[133.3039330393304,34.37830169052175],[133.28233282332826,34.38336742233139],[133.2571325713257,34.381678845061515],[133.2571325713257,34.39012173141093],[133.27513275132753,34.401941772300106],[133.2679326793268,34.42051612226881],[133.24633246332462,34.42727043134835],[133.22833228332286,34.376613113251864],[133.2139321393214,34.3631044950928],[133.19593195931958,34.35297303147351],[133.18153181531818,34.341152990584334],[133.2031320313203,34.32764437242527],[133.21033210332104,34.30738144518668],[133.2031320313203,34.28880709521796],[133.18513185131854,34.28036420886855],[133.17793177931782,34.282052786138436],[133.16713167131672,34.292184249757725],[133.159931599316,34.29387282702761],[133.15633156331563,34.292184249757725],[133.14553145531454,34.282052786138436],[133.1239312393124,34.276987054328785],[133.10233102331023,34.256724127090195],[133.0915309153092,34.25334697255043],[133.07713077130774,34.26010128162996],[133.069930699307,34.276987054328785],[133.07353073530737,34.317512908805966],[133.07713077130774,34.317512908805966],[133.08793087930883,34.32595579515538],[133.10233102331023,34.3445301451241],[133.11313113131132,34.35128445420362],[133.11673116731168,34.34284156785421],[133.11673116731168,34.32595579515538],[133.11313113131132,34.3141357542662],[133.1347313473135,34.317512908805966],[133.1491314913149,34.35128445420362],[133.16713167131672,34.354661608743385],[133.16713167131672,34.3631044950928],[133.15273152731527,34.3732359587121],[133.1347313473135,34.381678845061515],[133.1239312393124,34.38505599960128],[133.11313113131132,34.38336742233139],[133.10233102331023,34.38505599960128],[133.0915309153092,34.39012173141093],[133.0807308073081,34.381678845061515],[133.08433084330846,34.35128445420362],[133.05913059130592,34.33271010423492],[133.01953019530197,34.32257864061562],[132.91152911529116,34.3141357542662],[132.8827288272883,34.3040042906469],[132.8539285392854,34.28711851794809],[132.83592835928363,34.31075859972644],[132.8179281792818,34.3040042906469],[132.79992799928,34.28374136340831],[132.77832778327786,34.27360989978902],[132.7639276392764,34.27023274524926],[132.7639276392764,34.26347843616972],[132.77112771127713,34.25334697255043],[132.77832778327786,34.24321550893113],[132.77112771127713,34.234772622581715],[132.75672756727568,34.23308404531184],[132.72792727927282,34.23139546804195],[132.70272702727027,34.2263297362323],[132.6559265592656,34.199312499914186],[132.62712627126274,34.1976239226443],[132.62352623526237,34.20268965445395],[132.619926199262,34.209443963533474],[132.61632616326165,34.21619827261301],[132.61272612726128,34.21788684988289],[132.60552605526055,34.21619827261301],[132.59832598325983,34.21282111807324],[132.59832598325983,34.2077553862636],[132.59472594725946,34.20437823172382],[132.5659256592566,34.192558190834646],[132.55512555125551,34.192558190834646],[132.54432544325442,34.20437823172382],[132.55872558725588,34.21788684988289],[132.55152551525515,34.23139546804195],[132.5335253352534,34.24490408620102],[132.5227252272523,34.27023274524926],[132.50832508325084,34.28374136340831],[132.50472504725047,34.28711851794809],[132.50472504725047,34.30062713610714],[132.50832508325084,34.30907002245655],[132.50832508325084,34.31582433153609],[132.50472504725047,34.32764437242527],[132.5119251192512,34.32933294969514],[132.5227252272523,34.334398681504794],[132.52992529925302,34.334398681504794],[132.52632526325266,34.34621872239397],[132.51912519125193,34.35297303147351],[132.49752497524975,34.3631044950928],[132.47952479524798,34.354661608743385],[132.46152461524616,34.34959587693375],[132.43992439924398,34.34959587693375],[132.4039240392404,34.36817022690245],[132.38232382323827,34.36648164963256],[132.34632346323463,34.34959587693375],[132.3139231392314,34.32764437242527],[132.22392223922242,34.23814977712148],[132.23112231122315,34.22464115896243],[132.23832238322382,34.20437823172382],[132.24192241922418,34.18918103629488],[132.24192241922418,34.167229531786404],[132.23832238322382,34.14190087273816],[132.22752227522278,34.131769409118874],[132.21312213122133,34.12501510003935],[132.20232202322023,34.10812932734052],[132.19872198721987,34.06422631832356],[132.20952209522096,34.025389041116256],[132.21312213122133,33.989928918448726],[132.1807218072181,33.95784595032096],[132.15552155521556,33.949403063971545],[132.1411214112141,33.94602590943178],[132.13392133921343,33.93758302308237],[132.13392133921343,33.913942941304],[132.13752137521374,33.8953685913353],[132.15912159121592,33.85653131412799],[132.16272162721629,33.84133411869905],[132.14832148321483,33.829514077809876],[132.10512105121052,33.80925115057127],[132.07632076320766,33.787299646062806],[132.05472054720548,33.7771681824435],[132.04032040320402,33.77547960517363],[132.04392043920438,33.79405395514233],[132.06552065520657,33.8075625733014],[132.06912069120693,33.81093972784116],[132.07632076320766,33.8261369232701],[132.07992079920803,33.83457980961951],[132.0871208712087,33.824448346000224],[132.0979209792098,33.824448346000224],[132.10872108721088,33.829514077809876],[132.11232112321125,33.844711273238815],[132.10872108721088,33.86328562320752],[132.0979209792098,33.87172850955693],[132.0871208712087,33.87848281863647],[132.07632076320766,33.886925704985885],[132.05832058320584,33.8953685913353],[131.99351993519934,33.913942941304],[131.97191971919722,33.91732009584376],[131.96831968319685,33.92069725038354],[131.9431194311943,33.95109164124142],[131.93231932319327,33.95615737305107],[131.90351903519036,33.96628883667037],[131.89271892718926,33.97135456848001],[131.87111871118714,33.98824034117884],[131.85311853118532,33.99837180479814],[131.8351183511835,33.99499465025838],[131.81351813518137,33.97135456848001],[131.82791827918282,33.97135456848001],[131.82791827918282,33.964600259400484],[131.79191791917918,33.964600259400484],[131.78111781117815,33.969665991210135],[131.77751777517778,33.98655176390896],[131.80631806318064,34.005126113877665],[131.82431824318246,34.02032330930662],[131.82431824318246,34.027077618386144],[131.81351813518137,34.02876619565603],[131.7991179911799,34.03720908200545],[131.74151741517414,34.05578343197415],[131.7019170191702,34.04396339108497],[131.68751687516874,34.047340545624735],[131.6767167671677,34.04058623654521],[131.64431644316443,34.02876619565603],[131.63351633516334,34.027077618386144],[131.60471604716048,34.027077618386144],[131.60111601116012,34.03045477292591],[131.59751597515975,34.03552050473556],[131.5939159391594,34.03720908200545],[131.58671586715866,34.027077618386144],[131.5939159391594,34.01525757749697],[131.59751597515975,34.00343753660779],[131.5939159391594,33.991617495718614],[131.579515795158,33.98655176390896],[131.57231572315726,33.984863186639075],[131.5687156871569,33.98655176390896],[131.56511565115653,33.989928918448726],[131.56511565115653,33.99668322752825],[131.56151561515617,34.005126113877665],[131.5579155791558,34.005126113877665],[131.55071550715508,34.0017489593379],[131.55071550715508,34.00006038206803],[131.51831518315186,34.00850326841744],[131.51111511115113,34.011880422957205],[131.4931149311493,34.02876619565603],[131.48231482314822,34.032143350195796],[131.46791467914682,34.027077618386144],[131.47511475114754,34.01863473203673],[131.47511475114754,34.01356900022708],[131.46791467914682,34.006814691147554],[131.45711457114572,34.00006038206803],[131.45711457114572,33.99330607298849],[131.45351453514536,33.989928918448726],[131.45351453514536,33.98655176390896],[131.449914499145,33.98148603209931],[131.44271442714427,33.97810887755955],[131.43551435514354,33.97979745482942],[131.42831428314287,33.98655176390896],[131.4247142471425,33.99330607298849],[131.42111421114214,34.00006038206803],[131.4139141391414,33.989928918448726],[131.41031410314105,33.9831746093692],[131.40311403114032,33.98148603209931],[131.39231392313923,33.98655176390896],[131.40311403114032,34.00006038206803],[131.40311403114032,34.016946154766856],[131.39951399513996,34.032143350195796],[131.38871388713886,34.03889765927532],[131.38151381513813,34.03383192746567],[131.35631356313564,33.989928918448726],[131.3311133111331,33.96291168213061],[131.32031320313206,33.95278021851131],[131.27351273512738,33.927451559463066],[131.25911259112593,33.9240744049233],[131.24831248312483,33.93758302308237],[131.2411124111241,33.93420586854259],[131.23391233912338,33.93251729127272],[131.2267122671227,33.93420586854259],[131.22311223112234,33.94096017762213],[131.21951219512198,33.95109164124142],[131.21591215912161,33.95109164124142],[131.2087120871209,33.947714486701656],[131.20151201512016,33.94433733216189],[131.20151201512016,33.942648754892005],[131.19431194311943,33.93758302308237],[131.1871118711187,33.93251729127272],[131.17991179911797,33.93082871400283],[131.1727117271173,33.93420586854259],[131.16911169111694,33.942648754892005],[131.1619116191162,33.95278021851131],[131.1619116191162,33.964600259400484],[131.16551165511657,33.9730431457499],[131.16551165511657,33.97642030028966],[131.15831158311585,33.97810887755955],[131.12231122311226,34.00006038206803],[131.10431104311044,34.03045477292591],[131.07191071910722,34.03720908200545],[131.03591035910358,34.047340545624735],[131.01431014310145,34.01525757749697],[130.96750967509678,33.97135456848001],[130.93150931509314,33.94602590943178],[130.92790927909283,33.922385827653414],[130.91710917109174,33.913942941304],[130.89910899108992,33.9240744049233],[130.89550895508955,33.93251729127272],[130.8811088110881,33.93758302308237],[130.8811088110881,33.95109164124142],[130.89910899108992,33.949403063971545],[130.909909099091,33.9730431457499],[130.90630906309065,33.984863186639075],[130.91350913509137,34.00006038206803],[130.91710917109174,34.01019184568732],[130.91350913509137,34.02201188657649],[130.90630906309065,34.02876619565603],[130.91350913509137,34.054094854704275],[130.90270902709028,34.06591489559345],[130.8775087750878,34.067603472863325],[130.87390873908743,34.07773493648263],[130.87030870308706,34.09124355464169],[130.86310863108633,34.10137501826098],[130.86310863108633,34.11319505915016],[130.87390873908743,34.12839225457911],[130.88470884708846,34.1385237181984],[130.89910899108992,34.14527802727794],[130.909909099091,34.15372091362735],[130.9207092070921,34.17060668632618],[130.92430924309247,34.18411530448523],[130.9207092070921,34.192558190834646],[130.91710917109174,34.199312499914186],[130.909909099091,34.22464115896243],[130.89550895508955,34.24490408620102],[130.89550895508955,34.256724127090195],[130.8919089190892,34.26010128162996],[130.8775087750878,34.27023274524926],[130.87030870308706,34.278675631598674],[130.87390873908743,34.28711851794809],[130.8811088110881,34.29387282702761],[130.88470884708846,34.30062713610714],[130.88830888308883,34.33102152696503],[130.8919089190892,34.34284156785421],[130.89910899108992,34.354661608743385],[130.909909099091,34.35128445420362],[130.92790927909283,34.34959587693375],[130.94230942309423,34.35128445420362],[130.94950949509496,34.35803876328315],[130.95310953109532,34.361415917822924],[130.99630996309963,34.36985880417234],[131.0107101071011,34.376613113251864],[131.03231032310322,34.381678845061515],[131.01791017910182,34.39349888595069],[131.00351003510036,34.39349888595069],[130.9639096390964,34.40025319503022],[130.9567095670957,34.403630349569994],[130.94950949509496,34.39518746322058],[130.9459094590946,34.3918103086808],[130.9351093510935,34.39518746322058],[130.93870938709387,34.40700750410976],[130.94950949509496,34.41882754499893],[130.96030960309605,34.42727043134835],[130.9747097470975,34.439090472237524],[130.9891098910989,34.43571331769776],[131.00351003510036,34.42558185407846],[130.9999099991,34.41545039045917],[131.0107101071011,34.41038465864952],[131.02151021510218,34.40869608137963],[131.03591035910358,34.41038465864952],[131.05031050310504,34.41545039045917],[131.06111061110613,34.42051612226881],[131.0755107551076,34.42558185407846],[131.10071100711008,34.41376181318928],[131.11511115111153,34.41038465864952],[131.1331113311133,34.412073235919394],[131.14031140311403,34.37830169052175],[131.15471154711548,34.36985880417234],[131.1727117271173,34.36817022690245],[131.17991179911797,34.37830169052175],[131.19071190711907,34.39349888595069],[131.1727117271173,34.41038465864952],[131.16911169111694,34.417138967729045],[131.1727117271173,34.42895900861822],[131.19431194311943,34.42558185407846],[131.2087120871209,34.42895900861822],[131.23391233912338,34.43402474042787],[131.2519125191252,34.437401894967635],[131.26631266312666,34.42727043134835],[131.28071280712805,34.40869608137963],[131.26631266312666,34.40869608137963],[131.2519125191252,34.41882754499893],[131.2411124111241,34.42051612226881],[131.23031230312301,34.417138967729045],[131.22311223112234,34.40869608137963],[131.21591215912161,34.396876040490454],[131.21231212312125,34.38336742233139],[131.2087120871209,34.36985880417234],[131.21591215912161,34.37154738144221],[131.23031230312301,34.37999026779163],[131.23751237512374,34.381678845061515],[131.28431284312842,34.38336742233139],[131.32391323913242,34.39349888595069],[131.33471334713346,34.41545039045917],[131.36351363513637,34.41545039045917],[131.4139141391414,34.423893276808585],[131.4139141391414,34.45428766766646],[131.4247142471425,34.46610770855564],[131.45711457114572,34.48974779033401],[131.4607146071461,34.499879253953296],[131.45351453514536,34.51845360392201],[131.4607146071461,34.52351933573166],[131.48231482314822,34.526896490271426],[131.52191521915222,34.55222514931967],[131.53631536315362,34.56573376747873],[131.55071550715508,34.58093096290767],[131.55431554315544,34.59275100379685],[131.5579155791558,34.61470250830533],[131.56511565115653,34.61976824011498],[131.58671586715866,34.61807966284509],[131.59751597515975,34.6163910855752],[131.5939159391594,34.624833971924616],[131.5939159391594,34.641719744623444],[131.59751597515975,34.66029409459216],[131.61551615516157,34.66535982640181],[131.62991629916303,34.65860551732227],[131.65511655116552,34.65353978551262],[131.66951669516698,34.661982671862035],[131.67311673116734,34.67042555821145],[131.68031680316807,34.6754912900211],[131.7127171271713,34.67211413548134],[131.7451174511745,34.6754912900211],[131.79191791917918,34.6856227536404],[131.82431824318246,34.69744279452958],[131.84231842318422,34.70588568087899],[131.85671856718568,34.71432856722841],[131.8639186391864,34.73796864900676],[131.86751867518677,34.746411535356174],[131.8747187471875,34.75992015351524],[131.89631896318963,34.763297308055],[131.89991899919,34.77005161713453],[131.92511925119254,34.78862596710324],[131.95751957519576,34.8122660488816],[131.9971199711997,34.83759470792984],[132.02232022320226,34.86630052151784],[132.03312033120335,34.876431985137145],[132.05472054720548,34.87305483059738],[132.0619206192062,34.88487487148656],[132.0619206192062,34.90682637599504],[132.11232112321125,34.94228649866257],[132.13032130321307,34.959172271361396],[132.15912159121592,34.976058044060224],[132.2167221672217,35.01320674399764],[132.2347223472235,35.03515824850612],[132.2707227072271,35.04022398031576],[132.29232292322922,35.04866686666517],[132.31752317523177,35.06217548482424],[132.32832328323286,35.09256987568213],[132.35712357123572,35.11114422565083],[132.3787237872379,35.1246528438099],[132.38952389523894,35.1347843074292],[132.38592385923863,35.14491577104849],[132.4039240392404,35.16011296647744],[132.40752407524076,35.17531016190638],[132.4687246872469,35.2124588618438],[132.49752497524975,35.23272178908239],[132.52992529925302,35.24454182997157],[132.5335253352534,35.25805044813063],[132.55152551525515,35.26311617994028],[132.5767257672577,35.27324764355957],[132.619926199262,35.28506768444876],[132.63792637926383,35.29519914806805],[132.65232652326523,35.31208492076688],[132.66312663126632,35.328970693465706],[132.67032670326705,35.35429935251395],[132.67392673926742,35.37287370248265],[132.67392673926742,35.38469374337184],[132.67032670326705,35.39989093880078],[132.65232652326523,35.406645247880306],[132.6307263072631,35.42015386603937],[132.62352623526237,35.43028532965867],[132.63432634326347,35.44041679327796],[132.6559265592656,35.443793947817724],[132.68112681126814,35.448859679627375],[132.70272702727027,35.448859679627375],[132.73512735127355,35.448859679627375],[132.74952749527495,35.45223683416714],[132.7531275312753,35.455613988706915],[132.74592745927458,35.464056875056315],[132.72432724327246,35.470811184135854],[132.73512735127355,35.47249976140573],[132.7531275312753,35.47756549321538],[132.7747277472775,35.48094264775514],[132.80352803528035,35.49445126591421],[132.83592835928363,35.506271306803384],[132.86472864728648,35.511337038613036],[132.92232922329225,35.513025615882924],[132.94752947529474,35.518091347692575],[132.96912969129693,35.51640277042269],[132.9727297272973,35.54173142947093],[132.9907299072991,35.54510858401069],[133.0159301593016,35.54004285220104],[133.03393033930342,35.54679716128058],[133.04113041130415,35.56199435670952],[133.0519305193052,35.573814397598696],[133.06633066330664,35.58056870667822],[133.0807308073081,35.575502974868584],[133.0915309153092,35.58732301575776],[133.0915309153092,35.600831633916826],[133.1059310593106,35.59745447937705],[133.12033120331205,35.58563443848787],[133.14193141931423,35.57043724305893],[133.15633156331563,35.56199435670952],[133.1887318873189,35.57212582032882],[133.20673206732067,35.57212582032882],[133.2247322473225,35.58225728394811],[133.23193231932322,35.57888012940835],[133.2247322473225,35.568748665789045],[133.22833228332286,35.56537151124928],[133.23913239132395,35.56368293397941],[133.24633246332462,35.56706008851917],[133.2679326793268,35.573814397598696],[133.28593285932862,35.575502974868584],[133.30753307533075,35.57719155213846],[133.32553325533257,35.568748665789045],[133.31113311133112,35.56199435670952],[133.30033300333002,35.558617202169756],[133.28593285932862,35.553551470360105],[133.27153271532717,35.55017431582034],[133.2571325713257,35.53666569766128],[133.25353253532535,35.533288543121515],[133.25353253532535,35.52146850223234],[133.26073260732608,35.50964846134316],[133.26433264332644,35.496139843184096],[133.2931329313293,35.48094264775514],[133.32913329133294,35.4657454523262],[133.36153361533616,35.46067972051655],[133.37953379533798,35.455613988706915],[133.4011340113401,35.45392541143703],[133.41913419134193,35.45730256597679],[133.4407344073441,35.491074111374445],[133.49113491134915,35.50964846134316],[133.52713527135273,35.52315707950221],[133.58113581135814,35.533288543121515],[133.63153631536318,35.52146850223234],[133.73233732337326,35.50289415226362],[133.91233912339123,35.5147141931528],[134.00954009540095,35.53666569766128],[134.0347403474035,35.51977992496245],[134.17514175141753,35.53666569766128],[134.23634236342366,35.54679716128058],[134.26154261542615,35.553551470360105],[134.28314283142834,35.56537151124928],[134.29394293942943,35.58563443848787],[134.34434344343447,35.594077324837286],[134.35154351543514,35.594077324837286],[134.36234362343623,35.595765902107175],[134.3767437674377,35.610963097536114],[134.41274412744127,35.62109456115542],[134.46674466744668,35.637980333854244],[134.49914499144995,35.653177529283184],[134.5387453874539,35.6717518792519],[134.58914589145894,35.65993183836271],[134.6467464674647,35.66499757017236],[134.68994689946902,35.663308992902486],[134.76554765547655,35.66668614744225],[134.79794797947983,35.66499757017236],[134.81234812348123,35.6616204156326],[134.8339483394834,35.65655468382295],[134.84114841148414,35.64473464293377],[134.86274862748627,35.658243261092835],[134.8807488074881,35.65655468382295],[134.88434884348845,35.64642322020366],[134.8987489874899,35.64980037474342],[134.91674916749167,35.64473464293377],[134.92754927549277,35.64135748839401],[134.9455494554946,35.65486610655307],[134.9527495274953,35.658243261092835],[134.96354963549635,35.6616204156326],[134.95994959949599,35.673440456521774],[134.9887498874989,35.6903262292206],[135.01035010350103,35.6903262292206],[135.02835028350285,35.693703383760365],[135.04635046350467,35.70214627010978],[135.0859508595086,35.725786351888146],[135.08235082350825,35.7392949700472],[135.1327513275133,35.751115010936374],[135.18315183151833,35.75955789728579],[135.20835208352082,35.762935051825565],[135.22635226352264,35.77306651544485],[135.2515525155252,35.757869320015914],[135.26235262352623,35.7392949700472],[135.27675276752768,35.73085208369778],[135.29115291152914,35.71227773372908],[135.30555305553054,35.688637651950714],[135.30555305553054,35.6717518792519],[135.29835298352987,35.658243261092835],[135.28035280352805,35.66837472471212],[135.25875258752586,35.65655468382295],[135.24795247952483,35.636291756584356],[135.2407524075241,35.62278313842529],[135.23355233552337,35.61434025207588],[135.20475204752051,35.58732301575776],[135.1867518675187,35.56537151124928],[135.1867518675187,35.54510858401069],[135.1975519755198,35.54004285220104],[135.20835208352082,35.54173142947093],[135.20835208352082,35.558617202169756],[135.22275222752228,35.568748665789045],[135.23355233552337,35.583945861218],[135.24795247952483,35.59238874756741],[135.25515255152555,35.57043724305893],[135.2659526595266,35.56706008851917],[135.26955269552695,35.56368293397941],[135.26235262352623,35.55692862489987],[135.2515525155252,35.55692862489987],[135.2407524075241,35.558617202169756],[135.23715237152373,35.54173142947093],[135.30195301953023,35.513025615882924],[135.31635316353163,35.518091347692575],[135.32355323553236,35.5248456567721],[135.33435334353345,35.50795988407327],[135.3307533075331,35.49445126591421],[135.32355323553236,35.486008379564794],[135.31635316353163,35.46743402959609],[135.31275312753127,35.45899114324668],[135.319953199532,35.4471711023575],[135.3307533075331,35.45392541143703],[135.34155341553418,35.470811184135854],[135.35235352353527,35.48769695683468],[135.37035370353703,35.486008379564794],[135.39555395553958,35.475876915945506],[135.4027540275403,35.48263122502503],[135.4027540275403,35.506271306803384],[135.3739537395374,35.50120557499375],[135.3487534875349,35.50964846134316],[135.33795337953381,35.53666569766128],[135.35955359553594,35.553551470360105],[135.3739537395374,35.55692862489987],[135.4027540275403,35.558617202169756],[135.4171541715417,35.56199435670952],[135.42435424354244,35.57043724305893],[135.43515435154353,35.58056870667822],[135.4387543875439,35.590700170297524],[135.4639546395464,35.6025202111867],[135.45675456754566,35.58732301575776],[135.45315453154535,35.57212582032882],[135.47115471154711,35.56537151124928],[135.4819548195482,35.558617202169756],[135.47835478354784,35.5434200067408],[135.4819548195482,35.533288543121515],[135.47835478354784,35.526534234041975],[135.47835478354784,35.52315707950221],[135.48915489154894,35.52146850223234],[135.49635496354966,35.52315707950221],[135.5035550355504,35.531599965851626],[135.51075510755106,35.548485738550454],[135.51075510755106,35.52991138858175],[135.5071550715507,35.511337038613036],[135.51075510755106,35.49782842045397],[135.52875528755288,35.49276268864433],[135.55755557555574,35.491074111374445],[135.56835568355683,35.49276268864433],[135.57555575555756,35.496139843184096],[135.59715597155974,35.50458272953351],[135.60435604356047,35.51640277042269],[135.6259562595626,35.531599965851626],[135.64755647556478,35.5434200067408],[135.6691566915669,35.53497712039139],[135.66555665556655,35.52991138858175],[135.64035640356406,35.52146850223234],[135.63315633156333,35.49276268864433],[135.62235622356224,35.486008379564794],[135.64395643956442,35.48094264775514],[135.69795697956982,35.491074111374445],[135.72315723157232,35.491074111374445],[135.73755737557377,35.49951699772386],[135.74835748357486,35.513025615882924],[135.74835748357486,35.533288543121515],[135.71955719557195,35.52146850223234],[135.70875708757086,35.54004285220104],[135.6907569075691,35.54510858401069],[135.70515705157055,35.56199435670952],[135.73755737557377,35.57043724305893],[135.74835748357486,35.56368293397941],[135.7555575555756,35.548485738550454],[135.77715777157772,35.55017431582034],[135.79515795157954,35.531599965851626],[135.80955809558094,35.526534234041975],[135.8347583475835,35.53497712039139],[135.8239582395824,35.538354274931166],[135.81675816758167,35.54679716128058],[135.80235802358027,35.568748665789045],[135.80595805958063,35.575502974868584],[135.81675816758167,35.57719155213846],[135.82755827558276,35.568748665789045],[135.83835838358385,35.573814397598696],[135.85635856358567,35.57888012940835],[135.8527585275853,35.58563443848787],[135.84555845558458,35.59238874756741],[135.83835838358385,35.59914305664694],[135.8347583475835,35.612651674806],[135.83115831158312,35.617717406615654],[135.81675816758167,35.631226024774705],[135.8131581315813,35.64304606566388],[135.8239582395824,35.64473464293377],[135.84195841958422,35.63291460204459],[135.8527585275853,35.62447171569518],[135.8671586715867,35.617717406615654],[135.90315903159035,35.62447171569518],[135.91035910359102,35.61434025207588],[135.9211592115921,35.60758594299635],[135.93915939159393,35.617717406615654],[135.94995949959502,35.62953744750483],[135.97155971559715,35.62616029296507],[135.98235982359824,35.631226024774705],[135.98235982359824,35.64304606566388],[135.96435964359642,35.65486610655307],[135.97155971559715,35.67681761106154],[135.97515975159752,35.6903262292206],[135.97155971559715,35.70214627010978],[135.95715957159575,35.700457692839905],[135.95715957159575,35.72916350642791],[135.98235982359824,35.7392949700472],[136.01836018360183,35.76462362909544],[136.03276032760328,35.74604927912674],[136.03276032760328,35.73760639277732],[136.039960399604,35.72240919734837],[136.04716047160474,35.70383484737967],[136.04356043560438,35.69201480649049],[136.03276032760328,35.69201480649049],[136.02556025560256,35.680194765601314],[136.04356043560438,35.67006330198201],[136.04716047160474,35.658243261092835],[136.06876068760687,35.6616204156326],[136.0759607596076,35.678506188331426],[136.08316083160832,35.68357192014108],[136.08316083160832,35.6903262292206],[136.08316083160832,35.70383484737967],[136.09396093960942,35.715654888268844],[136.09396093960942,35.72409777461826],[136.09396093960942,35.74267212458696],[136.10116101161015,35.75955789728579],[136.10116101161015,35.776443669984616],[136.0867608676087,35.79501801995333],[136.0759607596076,35.81190379265216],[136.06876068760687,35.825412410811225],[136.04716047160474,35.838921028970276],[136.0111601116011,35.87100399709806],[135.99315993159934,35.88451261525711],[135.9967599675997,35.91321842884511],[135.99315993159934,35.93516993335359],[135.97155971559715,35.960498592401834],[135.95715957159575,35.97231863329101],[135.96435964359642,35.99933586960914],[135.9859598595986,36.01115591049832],[136.00036000360006,36.02466452865738],[136.01836018360183,36.05674749678515],[136.03276032760328,36.0803875785635],[136.04356043560438,36.110781969421396],[136.09396093960942,36.16143928751788],[136.10836108361087,36.18507936929623],[136.1191611916119,36.20027656472517],[136.13356133561336,36.22391664650354],[136.1191611916119,36.245868151012004],[136.12276122761227,36.252622460091544],[136.14436144361446,36.25431103736142],[136.16236162361622,36.252622460091544],[136.19836198361986,36.26444250098072],[136.27756277562776,36.32185412815673],[136.29916299162994,36.34718278720497],[136.34596345963462,36.36575713717369],[136.3819638196382,36.39108579622193],[136.42876428764288,36.433300227968985],[136.64116641166413,36.662946736673035],[136.6879668796688,36.73048982746835],[136.75996759967603,36.87064174086861],[136.7671676716767,36.88921609083732],[136.7671676716767,36.912856172615676],[136.75996759967603,36.9196104816952],[136.74916749167494,36.92636479077474],[136.7527675276753,36.934807677124155],[136.75996759967603,36.95169344982298],[136.7671676716767,36.98039926341099],[136.75996759967603,37.00066219064958],[136.7419674196742,37.01417080880864],[136.73116731167312,37.0479423542063],[136.72036720367203,37.054696663285824],[136.71676716767166,37.0766481677943],[136.72756727567275,37.12730548589079],[136.72036720367203,37.142502681319726],[136.709567095671,37.14925699039925],[136.6987669876699,37.14756841312938],[136.69516695166953,37.13574837224019],[136.67716677166771,37.137436949510075],[136.669966699667,37.14925699039925],[136.67356673566735,37.17627422671738],[136.68076680766808,37.19822573122585],[136.69156691566917,37.215111503924675],[136.70596705967063,37.22862012208374],[136.6987669876699,37.23875158570304],[136.71316713167136,37.25057162659222],[136.72756727567275,37.26914597656092],[136.73476734767348,37.284343171989875],[136.7239672396724,37.297851790148925],[136.72036720367203,37.324869026467056],[136.74916749167494,37.35864057186471],[136.78516785167852,37.37383776729365],[136.8427684276843,37.39916642634189],[136.88236882368824,37.40760931269131],[136.90396903969042,37.39916642634189],[136.93636936369364,37.39916642634189],[137.04437044370445,37.44813516716849],[137.0731707317073,37.45320089897814],[137.09117091170913,37.47346382621673],[137.1127711277113,37.486972444375795],[137.2567725677257,37.52412114431321],[137.29637296372965,37.53087545339274],[137.33957339573396,37.51736683523369],[137.35037350373506,37.50554679434451],[137.34317343173433,37.486972444375795],[137.3467734677347,37.47515240348662],[137.35757357573578,37.466709517137204],[137.35757357573578,37.45320089897814],[137.35037350373506,37.44644658989861],[137.3251732517325,37.439692280819074],[137.30717307173074,37.439692280819074],[137.28557285572856,37.44306943535885],[137.2675726757268,37.43631512627931],[137.25317253172534,37.429560817199786],[137.2459724597246,37.41436362177083],[137.23877238772388,37.38059207637319],[137.24957249572498,37.35695199459482],[137.2675726757268,37.35526341732495],[137.26397263972643,37.340066221895995],[137.26397263972643,37.326557603736944],[137.2567725677257,37.31473756284775],[137.23877238772388,37.3012289446887],[137.23157231572316,37.29278605833929],[137.20997209972103,37.29278605833929],[137.16677166771672,37.3012289446887],[137.10917109171095,37.282654594719986],[137.09117091170913,37.26070309021151],[137.06957069570694,37.23875158570304],[137.06957069570694,37.21848865846445],[137.05517055170554,37.21004577211504],[137.03357033570336,37.20498004030539],[137.02637026370263,37.19147142214632],[137.0155701557016,37.184717113066796],[136.97956979569796,37.19653715395597],[136.9615696156962,37.20666861757526],[136.94716947169474,37.21680008119456],[136.95796957969583,37.22862012208374],[136.9615696156962,37.23537443116328],[136.9507695076951,37.23368585389339],[136.94356943569437,37.22524296754398],[136.92916929169292,37.221865813004214],[136.92556925569255,37.2134229266548],[136.91476914769152,37.19822573122585],[136.89316893168933,37.17289707217762],[136.87876878768787,37.1441912585896],[136.8967689676897,37.139125526779964],[136.89316893168933,37.117174022271485],[136.8859688596886,37.11041971319196],[136.86796867968678,37.11041971319196],[136.86796867968678,37.08846820868348],[136.8607686076861,37.0766481677943],[136.8751687516875,37.069893858714764],[136.89316893168933,37.07327101325454],[136.91476914769152,37.08171389960394],[136.93276932769328,37.080025322334066],[136.9615696156962,37.05131950874606],[136.97956979569796,37.04625377693641],[137.0047700477005,37.054696663285824],[137.02277022770227,37.095222517763005],[137.03717037170372,37.101976826842545],[137.04797047970482,37.09859967230277],[137.05517055170554,37.080025322334066],[137.04797047970482,37.02261369515806],[137.05517055170554,36.96689064525192],[137.02637026370263,36.93818483166392],[137.02637026370263,36.914544749885565],[136.98676986769868,36.87064174086861],[137.0047700477005,36.83518161820108],[137.05157051570518,36.81154153642271],[137.08037080370804,36.789590031914244],[137.1271712717127,36.77608141375518],[137.15597155971562,36.76088421832624],[137.19557195571957,36.75750706378646],[137.24237242372425,36.764261372866],[137.29997299973002,36.75750706378646],[137.33237332373324,36.762572795596114],[137.35037350373506,36.782835722834704],[137.38277382773828,36.79972149553353],[137.39357393573937,36.82673873185166],[137.40797407974082,36.845313081820365],[137.4115741157412,36.86219885451919],[137.41877418774192,36.877396049948146],[137.41517415174155,36.89765897718674],[137.4259742597426,36.92129905896509],[137.44757447574477,36.93311909985427],[137.4979749797498,36.955070604362746],[137.5879758797588,36.970267799791685],[137.68157681576815,36.98715357249051],[137.80757807578078,37.03105658150747],[137.89757897578977,37.05807381782559],[137.99837998379985,37.11041971319196],[138.05238052380525,37.13068264043055],[138.07758077580775,37.14925699039925],[138.09918099180993,37.17120849490773],[138.16398163981643,37.16107703128843],[138.20718207182074,37.16951991763784],[138.24318243182432,37.18302853579691],[138.32598325983258,37.23030869935363],[138.43758437584376,37.32149187192729],[138.54918549185493,37.37721492183341],[138.57798577985778,37.402543580881655],[138.5959859598596,37.43462654900944],[138.62118621186215,37.47684098075649],[138.6607866078661,37.52412114431321],[138.71838718387187,37.564646998790394],[138.74718747187472,37.596729966918176],[138.76518765187654,37.633878666855594],[138.80838808388086,37.76052196209679],[138.82638826388268,37.79767066203421],[138.8587885878859,37.8280650528921],[138.93078930789306,37.87534521644882],[139.06039060390606,37.946265461783895],[139.06759067590679,37.95470834813331],[139.09279092790928,37.95470834813331],[139.13239132391323,37.95808550267307],[139.21519215192154,37.99016847080084],[139.24039240392403,38.003677088959904],[139.30519305193053,38.0425143661672],[139.40959409594097,38.13200896147099],[139.42399423994243,38.15058331143969],[139.43119431194316,38.169157661408406],[139.46359463594638,38.37516408833409],[139.47439474394747,38.41231278827151],[139.49239492394923,38.454527220018576],[139.52839528395288,38.50856169265482],[139.57879578795792,38.60649917430803],[139.60039600396004,38.6487136060551],[139.6255962559626,38.680796574182864],[139.71559715597158,38.7449625104384],[139.7479974799748,38.778734055836054],[139.77319773197735,38.81757133304336],[139.81639816398166,38.94083747374479],[139.8559985599856,39.03202064631846],[139.8667986679867,39.06241503717635],[139.87399873998743,39.097875159843895],[139.88119881198816,39.11476093254272],[139.8919989199892,39.133335282511425],[139.89559895598956,39.15190963248014],[139.89919899198992,39.194124064227196],[139.90279902799028,39.22451845508509],[139.91719917199174,39.26166715502251],[139.9315993159932,39.28699581407075],[139.96399963999642,39.298815854959926],[139.99639996399964,39.32752166854793],[140.02160021600218,39.40688480023242],[140.04680046800468,39.50482228188562],[140.05760057600577,39.69732009065224],[140.05760057600577,39.727714481510134],[140.03960039600395,39.7699289132572],[140.03960039600395,39.79356899503556],[140.0288002880029,39.82396338589345],[140.00360003600036,39.850980622211566],[139.96759967599678,39.879686435799584],[139.9207992079921,39.89826078576829],[139.8775987759878,39.893195053958635],[139.86319863198634,39.88306359033935],[139.8559985599856,39.87124354945017],[139.84519845198452,39.86111208583087],[139.82719827198275,39.857734931291105],[139.7587975879759,39.857734931291105],[139.75159751597516,39.86617781764052],[139.7371973719737,39.89150647668876],[139.72999729997304,39.90332651757794],[139.70839708397085,39.92358944481653],[139.7047970479705,39.94554094932501],[139.71919719197194,39.95229525840453],[139.70119701197012,39.96073814475395],[139.69759697596976,39.98775538107208],[139.70119701197012,40.00632973104078],[139.74439744397444,39.982689649262426],[139.8019980199802,39.962426722023835],[139.8235982359824,39.96073814475395],[139.8667986679867,39.9843782265323],[139.90279902799028,40.018149771929956],[139.97839978399787,40.12621871720245],[139.99279992799927,40.170121726219406],[139.9891998919989,40.190384653458],[140.00360003600036,40.222467621585764],[140.0108001080011,40.23597623974483],[140.02160021600218,40.33391372139802],[140.02520025200255,40.35417664863661],[140.0108001080011,40.367685266795675],[140,40.37781673041498],[139.96399963999642,40.40314538946322],[139.9459994599946,40.41834258489216],[139.94239942399423,40.43522835759099],[139.9459994599946,40.477442789338056],[139.94239942399423,40.521345798355],[139.94239942399423,40.54498588013337],[139.9315993159932,40.555117343752656],[139.92799927999283,40.57031453918161],[139.91359913599138,40.58551173461055],[139.8775987759878,40.58382315734066],[139.8559985599856,40.5905774664202],[139.85959859598597,40.6091518163889],[139.88119881198816,40.62603758908773],[139.89919899198992,40.64292336178656],[139.92439924399247,40.64630051632632],[139.93879938799387,40.66994059810469],[139.96039960399605,40.6783834844541],[139.97119971199714,40.69358067988304],[139.98559985599854,40.717220761661395],[139.99639996399964,40.742549420709636],[140.04680046800468,40.76787807975788],[140.06840068400686,40.76618950248799],[140.09360093600935,40.74930372978916],[140.1080010800108,40.744237997979525],[140.12240122401226,40.744237997979525],[140.14040140401403,40.74930372978916],[140.15480154801548,40.76112377067835],[140.1980019800198,40.786452429726594],[140.21960219602198,40.77800954337718],[140.2412024120241,40.78307527518682],[140.25920259202593,40.794895316075994],[140.27000270002702,40.81178108877482],[140.2952029520295,40.87425844776048],[140.30960309603097,40.93673580674614],[140.3168031680317,40.95362157944497],[140.3168031680317,40.97895023849321],[140.32040320403206,40.9992131657318],[140.32040320403206,41.02791897931981],[140.32400324003243,41.02791897931981],[140.3420034200342,41.004278897541454],[140.34920349203492,40.99752458846193],[140.36360363603637,40.99245885665228],[140.3708037080371,40.98570454757275],[140.3816038160382,40.989081702112514],[140.37440374403747,41.01272178389087],[140.3708037080371,41.02116467024028],[140.37800378003783,41.02791897931981],[140.38520385203856,41.029607556589696],[140.3960039600396,41.02623040204993],[140.40680406804069,41.02623040204993],[140.40320403204032,41.03467328839935],[140.39960399603996,41.039739020209],[140.37800378003783,41.03805044293911],[140.36720367203674,41.03805044293911],[140.34920349203492,41.03805044293911],[140.34560345603455,41.044804752018635],[140.3420034200342,41.049870483828286],[140.33480334803352,41.044804752018635],[140.3276032760328,41.04142759747887],[140.32400324003243,41.044804752018635],[140.32400324003243,41.07013341106688],[140.32040320403206,41.08364202922594],[140.29880298802988,41.11065926554407],[140.2808028080281,41.119102151893486],[140.26640266402666,41.12079072916336],[140.24840248402484,41.12416788370312],[140.24480244802447,41.134299347322425],[140.25560255602556,41.13936507913208],[140.2808028080281,41.14105365640195],[140.30240302403024,41.1359879245923],[140.32040320403206,41.149496542751365],[140.3276032760328,41.171448047259844],[140.33120331203315,41.191710974498434],[140.3276032760328,41.20184243811774],[140.33120331203315,41.211973901737025],[140.33120331203315,41.23730256078527],[140.3420034200342,41.24574544713468],[140.33840338403382,41.259254065293746],[140.3420034200342,41.26600837437327],[140.360003600036,41.254188333484095],[140.37800378003783,41.24405686986479],[140.39240392403923,41.24067971532503],[140.41040410404105,41.22548251989609],[140.4356043560436,41.19846528357796],[140.4608046080461,41.18326808814902],[140.48240482404827,41.18326808814902],[140.51120511205113,41.19846528357796],[140.5256052560526,41.22041678808644],[140.5472054720547,41.22548251989609],[140.5940059400594,41.22041678808644],[140.6336063360634,41.1950881290382],[140.64440644406443,41.171448047259844],[140.63720637206376,41.144430810941714],[140.6336063360634,41.11572499735371],[140.63000630006303,41.10559353373442],[140.63000630006303,41.093773492845244],[140.63720637206376,41.071821988336765],[140.64080640806407,41.04142759747887],[140.65520655206552,41.00765605208122],[140.67320673206734,40.89620995226896],[140.7020070200702,40.85399552052189],[140.75240752407524,40.83542117055319],[140.79920799207991,40.83879832509295],[140.8316083160832,40.86750413868096],[140.85320853208532,40.884389911379785],[140.87120871208714,40.91478430223768],[140.8640086400864,40.9215386113172],[140.8640086400864,40.93335865220638],[140.86760867608677,40.941801538555794],[140.87120871208714,40.945178693095556],[140.8640086400864,40.946867270365445],[140.85320853208532,40.945178693095556],[140.8460084600846,40.946867270365445],[140.83880838808392,40.95362157944497],[140.84960849608495,40.95699873398475],[140.86040860408605,40.95699873398475],[140.86040860408605,40.96544162033415],[140.86040860408605,40.97219592941369],[140.87120871208714,40.97726166122334],[140.86760867608677,40.98401597030286],[140.87120871208714,40.989081702112514],[140.88200882008823,41.00765605208122],[140.88920889208896,41.01103320662099],[140.90360903609036,41.009344629351105],[140.91440914409145,40.99583601119204],[140.939609396094,40.994147433922166],[140.95040950409503,40.99077027938239],[140.95760957609576,40.97726166122334],[140.9648096480965,40.968818774873924],[140.9828098280983,40.96037588852451],[140.9828098280983,40.95362157944497],[140.97920979209795,40.951933002175096],[140.97560975609758,40.946867270365445],[140.97560975609758,40.93842438401603],[140.97920979209795,40.93504722947627],[140.99000990009904,40.93504722947627],[141.01161011610117,40.92998149766662],[141.03321033210335,40.91816145677744],[141.04761047610475,40.91478430223768],[141.05841058410584,40.91647287950755],[141.06921069210694,40.9114071476979],[141.0728107281073,40.899587106808724],[141.0836108361084,40.88607848864967],[141.09441094410943,40.88101275684002],[141.11241112411125,40.87256987049061],[141.1268112681127,40.87256987049061],[141.14841148411483,40.87932417957013],[141.1628116281163,40.89114422045931],[141.18441184411847,40.9114071476979],[141.22761227612278,40.987393124842626],[141.2348123481235,41.01609893843063],[141.24201242012424,41.08195345195605],[141.2492124921249,41.09883922465488],[141.24561245612455,41.107282111004295],[141.25281252812528,41.119102151893486],[141.26361263612637,41.12585646097301],[141.2708127081271,41.1359879245923],[141.27801278012782,41.154562274561016],[141.2708127081271,41.18495666541891],[141.25641256412564,41.211973901737025],[141.2348123481235,41.23730256078527],[141.2060120601206,41.2643197971034],[141.18441184411847,41.27782841526245],[141.1628116281163,41.27782841526245],[141.1520115201152,41.2643197971034],[141.14481144811447,41.25587691075398],[141.1376113761138,41.24743402440457],[141.1376113761138,41.24236829259492],[141.14481144811447,41.24236829259492],[141.14841148411483,41.24912260167444],[141.15561155611556,41.254188333484095],[141.15921159211592,41.25587691075398],[141.15921159211592,41.252499756214206],[141.15561155611556,41.24743402440457],[141.14841148411483,41.23561398351539],[141.11241112411125,41.21366247900691],[141.09441094410943,41.21028532446715],[141.0728107281073,41.196776706308086],[141.05841058410584,41.18326808814902],[141.03321033210335,41.18664524268878],[141.00441004410044,41.1950881290382],[140.99360993609935,41.19339955176832],[140.97920979209795,41.196776706308086],[140.9648096480965,41.190022397228546],[140.94680946809467,41.17313662452973],[140.90720907209072,41.17313662452973],[140.88920889208896,41.16300516091043],[140.8748087480875,41.16638231545019],[140.8640086400864,41.16469373818032],[140.82800828008283,41.1461193882116],[140.81360813608137,41.129233615512774],[140.79920799207991,41.129233615512774],[140.7668076680767,41.144430810941714],[140.7668076680767,41.18495666541891],[140.7668076680767,41.196776706308086],[140.7776077760778,41.206908169927374],[140.78480784807851,41.23561398351539],[140.78120781207815,41.252499756214206],[140.7920079200792,41.27782841526245],[140.79920799207991,41.30315707431069],[140.80280802808028,41.321731424279406],[140.80280802808028,41.33017431062882],[140.81360813608137,41.336928619708345],[140.82440824408246,41.363945856026476],[140.82800828008283,41.38758593780483],[140.83520835208355,41.41798032866272],[140.85320853208532,41.4298003695519],[140.8856088560886,41.46694906948932],[140.89640896408963,41.47539195583873],[140.90000900009,41.48045768764838],[140.90720907209072,41.50072061488697],[140.90720907209072,41.51254065577615],[140.90000900009,41.524360696665326],[140.90360903609036,41.52773785120509],[140.90720907209072,41.53786931482439],[140.91440914409145,41.546312201173805],[140.92520925209254,41.53280358301474],[140.95040950409503,41.52267211939544],[140.9648096480965,41.50916350123639],[140.97920979209795,41.49734346034721],[140.99360993609935,41.49058915126767],[141.00441004410044,41.48721199672791],[141.02241022410226,41.483834842188145],[141.06561065610657,41.48045768764838],[141.10881108811088,41.463571914949554],[141.14121141211416,41.43317752409166],[141.15921159211592,41.41629175139283],[141.1808118081181,41.40616028777353],[141.18441184411847,41.39771740142413],[141.1952119521195,41.38758593780483],[141.2348123481235,41.36732301056624],[141.27441274412746,41.35381439240717],[141.31761317613177,41.35381439240717],[141.350013500135,41.3605687014867],[141.38241382413827,41.37238874237589],[141.41121411214112,41.39096309234459],[141.4328143281433,41.40616028777353],[141.4472144721447,41.41798032866272],[141.46161461614616,41.4298003695519],[141.46521465214653,41.426423215012136],[141.46521465214653,41.419668905932596],[141.46161461614616,41.41291459685307],[141.46521465214653,41.40447171050366],[141.46161461614616,41.401094555963894],[141.45441454414544,41.39602882415424],[141.45441454414544,41.39265166961448],[141.46161461614616,41.38758593780483],[141.4580145801458,41.37745447418553],[141.4436144361444,41.36563443329635],[141.44001440014404,41.35043723786741],[141.4328143281433,41.33017431062882],[141.42201422014222,41.31328853792999],[141.40761407614076,41.25587691075398],[141.4040140401404,41.23054825170574],[141.4040140401404,41.22041678808644],[141.389613896139,41.16131658364054],[141.39321393213936,41.13767650186219],[141.39681396813967,41.127545038242886],[141.39321393213936,41.11572499735371],[141.39321393213936,41.10221637919466],[141.39681396813967,41.092084915575356],[141.38601386013863,41.029607556589696],[141.389613896139,40.97726166122334],[141.389613896139,40.93335865220638],[141.39321393213936,40.9215386113172],[141.4040140401404,40.81684682058447],[141.42201422014222,40.72566364801081],[141.43641436414367,40.66994059810469],[141.4688146881469,40.59395462095996],[141.48321483214835,40.57369169372137],[141.49041490414908,40.561871652832195],[141.51921519215193,40.53823157105383],[141.5336153361534,40.5314772619743],[141.5480154801548,40.5314772619743],[141.55881558815588,40.539920148323716],[141.5768157681577,40.54160872559359],[141.58041580415806,40.53316583924418],[141.5876158761588,40.521345798355],[141.62361623616238,40.50108287111641],[141.68121681216815,40.450425553019926],[141.69201692016924,40.44198266667051],[141.7208172081721,40.41327685308251],[141.72441724417246,40.39301392584392],[141.74241742417428,40.3845710394945],[141.7532175321753,40.369373844065564],[141.75681756817568,40.35924238044626],[141.77121771217713,40.33391372139802],[141.7748177481775,40.327159412318494],[141.77841778417786,40.31533937142932],[141.7856178561786,40.3068964850799],[141.80361803618035,40.290010712381076],[141.8288182881829,40.25117343517377],[141.84321843218436,40.22584477612553],[141.83601836018363,40.21402473523635],[141.82521825218254,40.21064758069659],[141.81441814418145,40.202204694347174],[141.81081810818108,40.19207323072787],[141.81441814418145,40.18363034437846],[141.82521825218254,40.17518745802906],[141.8540185401854,40.166744571679644],[141.86481864818649,40.159990262600104],[141.87561875618758,40.13972733536151],[141.86481864818649,40.12790729447234],[141.84681846818467,40.11439867631327],[141.83601836018363,40.09413574907468],[141.84321843218436,40.07049566729633],[141.8540185401854,40.055298471867374],[141.9188191881919,40.00801830831067],[141.92961929619298,40.004641153770905],[141.94041940419407,40.00126399923113],[141.9512195121951,39.99619826742149],[141.95481954819547,39.97424676291301],[141.95841958419584,39.96411529929371],[141.9620196201962,39.95398383567442],[141.95841958419584,39.94385237205512],[141.94401944019444,39.93203233116594],[141.94401944019444,39.92527802208642],[141.9512195121951,39.9067036721177],[141.95841958419584,39.89826078576829],[141.96561965619657,39.89150647668876],[141.9728197281973,39.88306359033935],[141.97641976419766,39.852669199481454],[141.98001980019802,39.83916058132239],[142.00162001620015,39.77837179960662],[142.0052200522005,39.773306067796966],[142.0052200522005,39.768240335987315],[142.0052200522005,39.7597974496379],[142.00882008820088,39.753043140558376],[142.0052200522005,39.74460025420896],[141.99441994419948,39.73446879058967],[141.99081990819911,39.7310916360499],[141.9836198361984,39.70745155427154],[141.98001980019802,39.66185996798471],[141.98001980019802,39.648351349825646],[141.96561965619657,39.62639984531718],[141.9620196201962,39.61120264988823],[141.96561965619657,39.59769403172916],[142.01242012420124,39.63653130893647],[142.0376203762038,39.63821988620636],[142.03042030420306,39.629776999856944],[142.03042030420306,39.623022690777404],[142.03042030420306,39.61795695896777],[142.0376203762038,39.61120264988823],[142.0268202682027,39.5943168771894],[142.03042030420306,39.58418541357011],[142.05922059220592,39.56223390906163],[142.06282062820628,39.560545331791744],[142.06642066420665,39.55716817725198],[142.070020700207,39.550413868172456],[142.070020700207,39.54028240455315],[142.06642066420665,39.53690525001339],[142.05922059220592,39.53352809547363],[142.05562055620555,39.52677378639409],[142.0520205202052,39.523396631854325],[142.0160201602016,39.487936509186795],[141.99801998019979,39.481182200107256],[141.96561965619657,39.47105073648797],[141.9512195121951,39.460919272868665],[141.96921969219693,39.44403350016984],[141.99801998019979,39.445722077439726],[142.01962019620197,39.45923069559879],[142.03042030420306,39.47780504556749],[142.0376203762038,39.48455935464703],[142.0520205202052,39.47780504556749],[142.05922059220592,39.465985004678316],[142.04482044820452,39.460919272868665],[142.04122041220415,39.45416496378914],[142.0376203762038,39.440656345630074],[142.0376203762038,39.42377057293125],[142.03042030420306,39.41701626385172],[142.00882008820088,39.41532768658183],[142.00162001620015,39.41363910931196],[141.99081990819911,39.41363910931196],[141.98001980019802,39.41195053204207],[141.9728197281973,39.40688480023242],[141.9512195121951,39.39168760480348],[141.94041940419407,39.384933295723954],[141.96561965619657,39.37480183210465],[141.95481954819547,39.361293213945586],[141.92601926019262,39.34609601851665],[141.90441904419043,39.33089882308771],[141.92601926019262,39.32414451400817],[141.94761947619475,39.33089882308771],[141.96561965619657,39.341030286706996],[141.98001980019802,39.3511617503263],[141.9836198361984,39.32752166854793],[141.9620196201962,39.31232447311899],[141.91521915219153,39.29543870042016],[141.92241922419225,39.29037296861051],[141.92961929619298,39.28361865953099],[141.93321933219335,39.27517577318157],[141.92601926019262,39.27517577318157],[141.9080190801908,39.27517577318157],[141.90081900819007,39.27517577318157],[141.8972189721897,39.26166715502251],[141.90081900819007,39.24815853686344],[141.93321933219335,39.24815853686344],[141.94761947619475,39.24984711413333],[141.94761947619475,39.24815853686344],[141.94761947619475,39.22789560962485],[141.92961929619298,39.21269841419591],[141.90081900819007,39.2042555278465],[141.87921879218794,39.20763268238626],[141.8828188281883,39.19243548695732],[141.8936189361894,39.18736975514767],[141.92601926019262,39.18736975514767],[141.91521915219153,39.17048398244884],[141.8936189361894,39.15866394155967],[141.86841868418685,39.153598209750015],[141.84321843218436,39.15190963248014],[141.86121861218612,39.138401014321076],[141.9080190801908,39.10969520073307],[141.91161911619116,39.097875159843895],[141.89001890018903,39.08943227349448],[141.83601836018363,39.10462946892342],[141.8180181801818,39.091120850764355],[141.86121861218612,39.07254650079565],[141.8720187201872,39.06241503717635],[141.86121861218612,39.05903788263659],[141.84681846818467,39.0573493053667],[141.83601836018363,39.055660728096825],[141.82161821618217,39.0573493053667],[141.82161821618217,39.048906419017285],[141.83241832418327,39.04384068720765],[141.84681846818467,39.035397800858235],[141.8540185401854,39.02526633723893],[141.84681846818467,39.02188918269917],[141.80721807218072,39.028643491778695],[141.76761767617677,39.02526633723893],[141.74601746017458,39.02695491450882],[141.72801728017282,39.03708637812811],[141.72801728017282,39.02188918269917],[141.73521735217355,39.01006914180999],[141.74241742417428,38.99993767819069],[141.74961749617495,38.988117637301514],[141.73521735217355,38.9898062145714],[141.72801728017282,38.988117637301514],[141.71361713617137,38.97460901914245],[141.72801728017282,38.9695432873328],[141.73521735217355,38.9611004009834],[141.73161731617319,38.950968937364095],[141.71721717217173,38.94759178282433],[141.70281702817027,38.950968937364095],[141.69201692016924,38.95941182371351],[141.68121681216815,38.971231864602686],[141.67401674016742,38.98136332822199],[141.6848168481685,38.986429060031625],[141.69201692016924,38.99487194638104],[141.65241652416523,38.99656052365093],[141.63801638016383,38.98474048276175],[141.6416164161642,38.96447755552316],[141.64521645216456,38.92226312377609],[141.67041670416705,38.873294382949496],[141.67401674016742,38.85134287844102],[141.65241652416523,38.86485149660008],[141.64881648816487,38.86991722840972],[141.64521645216456,38.883425846568784],[141.6416164161642,38.888491578378435],[141.63801638016383,38.8918687329182],[141.6308163081631,38.89018015564832],[141.62361623616238,38.88680300110855],[141.61641616416165,38.88511442383867],[141.59841598415983,38.88511442383867],[141.5876158761588,38.88173726929891],[141.58401584015843,38.873294382949496],[141.58401584015843,38.85472003298078],[141.5876158761588,38.83445710574219],[141.5876158761588,38.826014219392775],[141.5876158761588,38.81925991031325],[141.57321573215734,38.805751292154184],[141.53001530015302,38.78042263310594],[141.5228152281523,38.768602592216766],[141.5336153361534,38.763536860407115],[141.53721537215375,38.75678255132759],[141.5480154801548,38.741585355898636],[141.5660156601566,38.728076737739585],[141.57321573215734,38.71794527412028],[141.5660156601566,38.70274807869134],[141.55881558815588,38.699370924151566],[141.55521555215552,38.70274807869134],[141.5480154801548,38.70781381050098],[141.54441544415448,38.70781381050098],[141.53721537215375,38.70443665596122],[141.52641526415266,38.68923946053228],[141.51561515615157,38.68417372872263],[141.49041490414908,38.6774194196431],[141.47961479614798,38.67235368783345],[141.46161461614616,38.66053364694427],[141.46161461614616,38.65546791513462],[141.47241472414726,38.64533645151532],[141.4868148681487,38.64027071970568],[141.5336153361534,38.638582142435794],[141.5336153361534,38.63182783335627],[141.52641526415266,38.618319215197204],[141.51921519215193,38.603122019768264],[141.5120151201512,38.59805628795861],[141.4688146881469,38.56935047437061],[141.48321483214835,38.55753043348143],[141.49761497614975,38.54233323805248],[141.51561515615157,38.53557892897295],[141.53001530015302,38.54908754713202],[141.54081540815412,38.533890351703064],[141.5480154801548,38.518693156274125],[141.5480154801548,38.5018073835753],[141.54441544415448,38.48154445633671],[141.53001530015302,38.48323303360658],[141.5228152281523,38.48998734268612],[141.51921519215193,38.498430229035534],[141.51561515615157,38.50856169265482],[141.5012150121501,38.46972441544753],[141.49401494014944,38.461281529098116],[141.5012150121501,38.45790437455835],[141.50481504815048,38.454527220018576],[141.50481504815048,38.451150065478814],[141.50841508415084,38.44608433366916],[141.48321483214835,38.441018601859525],[141.47241472414726,38.435952870049874],[141.4688146881469,38.429198560970335],[141.47601476014762,38.419067097351046],[141.47601476014762,38.408935633731744],[141.47601476014762,38.40218132465222],[141.4868148681487,38.392049861032916],[141.49761497614975,38.398804170112456],[141.51921519215193,38.40218132465222],[141.53721537215375,38.398804170112456],[141.5480154801548,38.38529555195339],[141.5336153361534,38.39036128376304],[141.51921519215193,38.39036128376304],[141.50841508415084,38.38529555195339],[141.5012150121501,38.371786933794326],[141.52641526415266,38.35996689290515],[141.53001530015302,38.33970396566656],[141.53001530015302,38.31775246115808],[141.54441544415448,38.30255526572914],[141.53721537215375,38.2958009566496],[141.52641526415266,38.267095143061596],[141.51921519215193,38.27047229760137],[141.49041490414908,38.29242380210984],[141.48321483214835,38.2958009566496],[141.4688146881469,38.2958009566496],[141.46161461614616,38.29917811118938],[141.46161461614616,38.3059324202689],[141.46161461614616,38.31268672934843],[141.4688146881469,38.31775246115808],[141.4688146881469,38.32281819296773],[141.4580145801458,38.331261079317144],[141.42561425614258,38.34308112020632],[141.42921429214294,38.34983542928586],[141.44001440014404,38.371786933794326],[141.42921429214294,38.38022982014374],[141.41841418414185,38.38022982014374],[141.41121411214112,38.378541242873865],[141.39681396813967,38.37685266560398],[141.38601386013863,38.38022982014374],[141.37521375213754,38.38529555195339],[141.35361353613536,38.40218132465222],[141.33201332013323,38.408935633731744],[141.30321303213032,38.40724705646187],[141.23121231212315,38.393738438302805],[141.20241202412024,38.38529555195339],[141.1808118081181,38.371786933794326],[141.17361173611738,38.34814685201597],[141.17361173611738,38.32450677023762],[141.17001170011702,38.32281819296773],[141.1520115201152,38.32281819296773],[141.14841148411483,38.329572502047256],[141.13041130411307,38.371786933794326],[141.12321123211234,38.366721201984674],[141.1160111601116,38.3650326247148],[141.10521105211052,38.366721201984674],[141.0980109801098,38.371786933794326],[141.08001080010803,38.36165547017504],[141.06561065610657,38.346458274746084],[141.05481054810548,38.329572502047256],[141.04761047610475,38.309309574808665],[141.05841058410584,38.31437530661832],[141.06921069210694,38.31437530661832],[141.08001080010803,38.310998152078554],[141.0836108361084,38.30255526572914],[141.08001080010803,38.294112379379726],[141.0728107281073,38.289046647570075],[141.0620106201062,38.283980915760424],[141.05121051210511,38.27891518395079],[141.0188101881019,38.24514363855313],[140.98640986409868,38.206306361345824],[140.96840968409686,38.170846238678294],[140.92520925209254,38.049268675246736],[140.91800918009181,38.00705424349967],[140.91800918009181,37.9648398117526],[140.93240932409327,37.89223098914765],[140.93240932409327,37.88885383460787],[140.95760957609576,37.85001655740058],[140.99360993609935,37.799359239304096],[141.00441004410044,37.76389911663655],[141.0080100801008,37.7503904984775],[141.0188101881019,37.7402590348582],[141.02241022410226,37.72675041669913],[141.02241022410226,37.70648748946054],[141.0188101881019,37.69804460311113],[141.0080100801008,37.68453598495206],[141.0080100801008,37.679470253142426],[141.01161011610117,37.67271594406289],[141.02601026010262,37.65751874863395],[141.029610296103,37.647387285014645],[141.04041040410408,37.37721492183341],[141.03681036810372,37.345131953705646],[141.01521015210153,37.27083455383081],[141.01521015210153,37.24044016297292],[141.0080100801008,37.226931544813866],[141.0080100801008,37.13405979497031],[141.00441004410044,37.122239754081136],[140.98640986409868,37.090156785953354],[140.97560975609758,37.00235076791947],[140.96120961209613,36.96689064525192],[140.92520925209254,36.93818483166392],[140.91800918009181,36.93649625439403],[140.89280892808927,36.93143052258439],[140.86040860408605,36.914544749885565],[140.83520835208355,36.907790440806025],[140.8208082080821,36.894281822646974],[140.81360813608137,36.8909046681072],[140.80280802808028,36.88583893629756],[140.80280802808028,36.87401889540837],[140.80280802808028,36.85713312270954],[140.79560795607955,36.84700165909025],[140.7920079200792,36.83687019547095],[140.75240752407524,36.78452430010459],[140.74160741607415,36.767638527405765],[140.69480694806947,36.6173551503862],[140.63720637206376,36.5396805959716],[140.6228062280623,36.50590905057395],[140.60840608406085,36.433300227968985],[140.6120061200612,36.418103032540046],[140.6228062280623,36.37926575533274],[140.62640626406267,36.3640685599038],[140.61560615606157,36.33705132358568],[140.579605796058,36.3049683554579],[140.56520565205653,36.28301685094944],[140.56520565205653,36.245868151012004],[140.579605796058,36.16143928751788],[140.60840608406085,36.09558477399246],[140.64440644406443,36.012844487768206],[140.78840788407888,35.8085266381124],[140.8316083160832,35.761246474555676],[140.84240842408423,35.74267212458696],[140.85320853208532,35.73760639277732],[140.86040860408605,35.735917815507435],[140.8640086400864,35.73422923823756],[140.8748087480875,35.72916350642791],[140.87840878408787,35.720720620078495],[140.86760867608677,35.69708053830013],[140.86040860408605,35.68694907468084],[140.8460084600846,35.69539196103025],[140.83880838808392,35.70383484737967],[140.82800828008283,35.713966310998956],[140.80280802808028,35.70890057918932],[140.77040770407706,35.69708053830013],[140.72000720007202,35.68188334287119],[140.71640716407165,35.698769115570016],[140.66240662406625,35.688637651950714],[140.59760597605975,35.651488952013295],[140.48240482404827,35.56537151124928],[140.4248042480425,35.491074111374445],[140.38520385203856,35.381316588832064],[140.40680406804069,35.328970693465706],[140.4140041400414,35.301953457147576],[140.40320403204032,35.25973902540052],[140.39960399603996,35.2225903254631],[140.39240392403923,35.19726166641486],[140.37800378003783,35.17699873917627],[140.34920349203492,35.18037589371603],[140.33120331203315,35.15842438920755],[140.33480334803352,35.141538616508726],[140.32040320403206,35.12971857561955],[140.30240302403024,35.13309573015931],[140.2952029520295,35.14660434831838],[140.27720277202775,35.13140715288942],[140.2520025200252,35.1347843074292],[140.23760237602374,35.11283280292072],[140.20160201602016,35.11452138019061],[140.15480154801548,35.11789853473037],[140.13320133201336,35.12296426654002],[140.10440104401044,35.09763560749178],[140.10080100801008,35.0756841029833],[140.0756007560076,35.058798330284475],[140.0540005400054,35.058798330284475],[140.02160021600218,35.038535403045884],[139.9891998919989,35.01996105307717],[139.98199981999824,35.00814101218799],[139.9747997479975,34.98956666221929],[139.96399963999642,34.976058044060224],[139.96399963999642,34.959172271361396],[139.96039960399605,34.94059792139268],[139.95319953199532,34.9287778805035],[139.94239942399423,34.918646416884215],[139.92799927999283,34.90682637599504],[139.89919899198992,34.90344922145526],[139.88119881198816,34.90176064418539],[139.87039870398706,34.90513779872515],[139.8559985599856,34.90176064418539],[139.84159841598415,34.9000720669155],[139.8379983799838,34.90513779872515],[139.8235982359824,34.911892107804675],[139.8235982359824,34.92202357142398],[139.8235982359824,34.93553218958304],[139.80919809198093,34.94397507593246],[139.78039780397808,34.954106539551745],[139.75519755197553,34.95579511682163],[139.75159751597516,34.96423800317105],[139.75159751597516,34.976058044060224],[139.76599765997662,34.976058044060224],[139.78399783997838,34.974369466790336],[139.79479794797948,34.97268088952046],[139.80919809198093,34.976058044060224],[139.81999819998202,34.981123775869875],[139.82719827198275,34.98956666221929],[139.84159841598415,34.99125523948916],[139.85959859598597,34.98618950767951],[139.8667986679867,34.99125523948916],[139.87039870398706,34.99969812583858],[139.8667986679867,35.01320674399764],[139.8559985599856,35.021649630347056],[139.83439834398342,35.02671536215671],[139.83439834398342,35.036846825775996],[139.84519845198452,35.0469782893953],[139.84879848798488,35.058798330284475],[139.84879848798488,35.06892979390378],[139.8379983799838,35.08750414387248],[139.83439834398342,35.099324184761656],[139.8379983799838,35.1347843074292],[139.81999819998202,35.15842438920755],[139.8235982359824,35.17024443009673],[139.81999819998202,35.18544162552567],[139.8235982359824,35.198950243684735],[139.85239852398524,35.21414743911369],[139.8667986679867,35.224278902732976],[139.8667986679867,35.246230407241455],[139.84879848798488,35.2715590662897],[139.84879848798488,35.293510570798176],[139.80919809198093,35.30533061168735],[139.78039780397808,35.31377349803677],[139.78039780397808,35.318839229846404],[139.8019980199802,35.31715065257653],[139.8235982359824,35.328970693465706],[139.8235982359824,35.34754504343442],[139.8379983799838,35.3593650843236],[139.84519845198452,35.37625085702243],[139.8919989199892,35.364430816133236],[139.90639906399065,35.3779394342923],[139.90639906399065,35.393136629721255],[139.89919899198992,35.423531020579134],[139.91359913599138,35.433662484198436],[139.94239942399423,35.44210537054785],[139.96039960399605,35.455613988706915],[139.98199981999824,35.45899114324668],[140.00720007200073,35.47418833867562],[140.02160021600218,35.491074111374445],[140.0432004320043,35.513025615882924],[140.07200072000722,35.5434200067408],[140.090000900009,35.54004285220104],[140.09720097200972,35.555240047629994],[140.10080100801008,35.56706008851917],[140.08640086400862,35.56706008851917],[140.08280082800832,35.58563443848787],[140.07920079200795,35.60420878845659],[140.0648006480065,35.616028829345765],[140.04680046800468,35.631226024774705],[140.03240032400328,35.64135748839401],[140.00720007200073,35.65993183836271],[139.99639996399964,35.65655468382295],[139.98199981999824,35.66837472471212],[139.94959949599496,35.6717518792519],[139.9207992079921,35.6616204156326],[139.93879938799387,35.636291756584356],[139.91359913599138,35.62447171569518],[139.89559895598956,35.61434025207588],[139.8919989199892,35.62278313842529],[139.88119881198816,35.62447171569518],[139.87039870398706,35.631226024774705],[139.86319863198634,35.631226024774705],[139.84879848798488,35.637980333854244],[139.84159841598415,35.62953744750483],[139.8379983799838,35.61434025207588],[139.8235982359824,35.62278313842529],[139.81999819998202,35.637980333854244],[139.80559805598057,35.637980333854244],[139.8019980199802,35.61940598388553],[139.78759787597875,35.6025202111867],[139.77319773197735,35.617717406615654],[139.7767977679777,35.64135748839401],[139.76599765997662,35.653177529283184],[139.7587975879759,35.631226024774705],[139.76959769597698,35.600831633916826],[139.78399783997838,35.58056870667822],[139.78399783997838,35.568748665789045],[139.79839798397984,35.54004285220104],[139.78759787597875,35.526534234041975],[139.78759787597875,35.513025615882924],[139.78759787597875,35.511337038613036],[139.7767977679777,35.50120557499375],[139.74439744397444,35.48431980229492],[139.71559715597158,35.464056875056315],[139.68679686796867,35.46067972051655],[139.66519665196654,35.46743402959609],[139.65079650796508,35.464056875056315],[139.64359643596435,35.45392541143703],[139.66159661596618,35.4471711023575],[139.679596795968,35.43872821600809],[139.68679686796867,35.43197390692855],[139.6831968319683,35.41846528876948],[139.68679686796867,35.39989093880078],[139.67599675996763,35.40157951607067],[139.65079650796508,35.41002240242007],[139.63639636396363,35.40157951607067],[139.64359643596435,35.388070897911604],[139.6579965799658,35.37625085702243],[139.65439654396545,35.33910215708501],[139.65079650796508,35.32728211619582],[139.65079650796508,35.31039634349699],[139.64719647196472,35.29857630260781],[139.6579965799658,35.28675626171864],[139.66519665196654,35.29857630260781],[139.67599675996763,35.29182199352829],[139.6939969399694,35.268181911749934],[139.73359733597334,35.26480475721016],[139.74439744397444,35.24960756178122],[139.72639726397267,35.23272178908239],[139.72999729997304,35.22934463454263],[139.72999729997304,35.225967480002865],[139.73359733597334,35.2225903254631],[139.72639726397267,35.20739313003415],[139.69039690396903,35.20908170730404],[139.66519665196654,35.19388451187508],[139.66159661596618,35.178687316446144],[139.6687966879669,35.16011296647744],[139.679596795968,35.14998150285814],[139.68679686796867,35.13985003923884],[139.67599675996763,35.136472884699074],[139.66519665196654,35.1347843074292],[139.639996399964,35.13985003923884],[139.6255962559626,35.13140715288942],[139.6147961479615,35.1347843074292],[139.61119611196114,35.141538616508726],[139.6147961479615,35.1533586573979],[139.6147961479615,35.17362158463649],[139.60039600396004,35.2023273982245],[139.6255962559626,35.2124588618438],[139.61839618396186,35.219213170923325],[139.6039960399604,35.224278902732976],[139.59679596795968,35.23947609816193],[139.56799567995682,35.268181911749934],[139.56799567995682,35.27662479809935],[139.5607956079561,35.28675626171864],[139.549995499955,35.288444838988525],[139.54279542795427,35.308707766227116],[139.52839528395288,35.301953457147576],[139.5067950679507,35.303642034417464],[139.4851948519485,35.3002648798777],[139.46719467194674,35.31377349803677],[139.41319413194134,35.318839229846404],[139.33039330393308,35.303642034417464],[139.28359283592835,35.29688772533794],[139.2331923319233,35.28506768444876],[139.18279182791827,35.26311617994028],[139.14679146791468,35.23441036635228],[139.14319143191432,35.183753048255795],[139.15759157591577,35.136472884699074],[139.1215912159122,35.14998150285814],[139.0891908919089,35.10945564838096],[139.07839078390788,35.0756841029833],[139.0747907479075,35.053732598474824],[139.10719107191073,35.04866686666517],[139.09999099991,35.03009251669647],[139.09639096390964,35.011518166727754],[139.08559085590855,34.9980095485687],[139.09999099991,34.974369466790336],[139.13239132391323,34.96592658044092],[139.14319143191432,34.94228649866257],[139.14679146791468,34.90513779872515],[139.13959139591395,34.871366253327494],[139.11799117991183,34.86798909878773],[139.09999099991,34.856169057898555],[139.0891908919089,34.84266043973949],[139.08559085590855,34.829151821580425],[139.0747907479075,34.808888894341834],[139.06039060390606,34.792003121643006],[139.05319053190533,34.77849450348394],[139.04239042390424,34.76836303986465],[139.02799027990284,34.76498588532489],[139.01719017190175,34.75485442170559],[139.00999009990102,34.746411535356174],[138.99918999189993,34.73290291719711],[139.0027900279003,34.72108287630793],[138.99558995589956,34.71432856722841],[138.98838988389883,34.70081994906934],[138.98478984789847,34.683934176370514],[138.98838988389883,34.66535982640181],[138.9919899198992,34.65016263097286],[138.9811898118981,34.64509689916321],[138.97398973989743,34.64509689916321],[138.96318963189634,34.651851208242746],[138.94158941589416,34.66029409459216],[138.89478894788948,34.62821112646439],[138.86238862388626,34.61301393103544],[138.83358833588335,34.59612815833661],[138.81918819188195,34.60288246741615],[138.8047880478805,34.61301393103544],[138.7939879398794,34.626522549194505],[138.77238772387727,34.646785476433095],[138.77958779587794,34.66367124913192],[138.77238772387727,34.67042555821145],[138.76518765187654,34.6754912900211],[138.75798757987582,34.67886844456086],[138.7507875078751,34.68224559910064],[138.74718747187472,34.69068848545004],[138.74718747187472,34.709262835418755],[138.74358743587436,34.729525762657346],[138.75798757987582,34.73796864900676],[138.76158761587618,34.74810011262606],[138.77598775987764,34.751477267165825],[138.75798757987582,34.78187165802372],[138.74718747187472,34.813954626151485],[138.75798757987582,34.829151821580425],[138.76158761587618,34.84603759427925],[138.76158761587618,34.849414748819015],[138.76158761587618,34.869677676057606],[138.75438754387545,34.87980913967691],[138.76158761587618,34.89331775783597],[138.77598775987764,34.90513779872515],[138.79038790387904,34.90682637599504],[138.77958779587794,34.92202357142398],[138.77238772387727,34.932155035043266],[138.76518765187654,34.95579511682163],[138.76158761587618,34.97943519859999],[138.77598775987764,35.00307528037834],[138.78678786787867,35.02671536215671],[138.82638826388268,35.02333820761693],[138.85518855188553,35.018272475807294],[138.87678876788772,35.01996105307717],[138.89478894788948,35.01996105307717],[138.90918909189094,35.03009251669647],[138.85518855188553,35.079061257523065],[138.8371883718837,35.099324184761656],[138.8047880478805,35.121275689270135],[138.74358743587436,35.1347843074292],[138.69678696786968,35.13816146196896],[138.66438664386646,35.126341421079786],[138.63558635586355,35.116209957460484],[138.5851858518585,35.11452138019061],[138.5527855278553,35.09594703022189],[138.52758527585274,35.05035544393506],[138.4987849878499,35.031781093966345],[138.49518495184952,35.001386703108466],[138.50598505985062,34.99125523948916],[138.50598505985062,35.011518166727754],[138.52038520385207,35.01996105307717],[138.5311853118531,35.016583898537405],[138.51318513185134,34.97943519859999],[138.46998469984703,34.959172271361396],[138.43038430384303,34.94397507593246],[138.40158401584017,34.932155035043266],[138.3655836558366,34.91695783961433],[138.3547835478355,34.90344922145526],[138.34758347583477,34.88825202602632],[138.33678336783368,34.87474340786726],[138.32958329583295,34.854480480628666],[138.32958329583295,34.84603759427925],[138.34038340383404,34.82577466704066],[138.32598325983258,34.807200317071946],[138.31518315183155,34.79875743072253],[138.29358293582936,34.76498588532489],[138.25038250382505,34.73965722627665],[138.21438214382147,34.71263998995852],[138.19998199982,34.66029409459216],[138.19278192781928,34.641719744623444],[138.19998199982,34.62145681738485],[138.2251822518225,34.6163910855752],[138.23958239582396,34.60288246741615],[138.23238232382323,34.59443958106674],[138.18918189181892,34.60119389014626],[138.0487804878049,34.65522836278251],[137.96597965979663,34.667048403671686],[137.8939789397894,34.667048403671686],[137.79317793177933,34.64003116735357],[137.68517685176852,34.67042555821145],[137.59517595175953,34.67717986729099],[137.54837548375485,34.67717986729099],[137.4259742597426,34.667048403671686],[137.33957339573396,34.646785476433095],[137.14157141571417,34.589373849257086],[137.0947709477095,34.59275100379685],[137.04437044370445,34.58093096290767],[137.029970299703,34.579242385637784],[137.0155701557016,34.579242385637784],[137.02277022770227,34.59106242652696],[137.029970299703,34.5978167356065],[137.0407704077041,34.61807966284509],[137.05157051570518,34.646785476433095],[137.0731707317073,34.66535982640181],[137.10197101971022,34.63834259008368],[137.10557105571058,34.631588281004156],[137.10917109171095,34.624833971924616],[137.11997119971198,34.63327685827403],[137.11997119971198,34.63834259008368],[137.1379713797138,34.64509689916321],[137.15237152371526,34.651851208242746],[137.16677166771672,34.6569169400524],[137.19917199171994,34.673802712751225],[137.24237242372425,34.69744279452958],[137.26037260372607,34.704197103609104],[137.2819728197282,34.731214339927234],[137.29997299973002,34.72783718538747],[137.29997299973002,34.70757425814887],[137.29637296372965,34.69068848545004],[137.30357303573038,34.688999908180165],[137.3107731077311,34.70588568087899],[137.3107731077311,34.72614860811758],[137.33237332373324,34.72108287630793],[137.33957339573396,34.72614860811758],[137.3107731077311,34.736280071736886],[137.32157321573214,34.75485442170559],[137.3251732517325,34.766674462594764],[137.32157321573214,34.773428771674304],[137.29637296372965,34.79706885345266],[137.27837278372783,34.808888894341834],[137.2675726757268,34.80382316253218],[137.2459724597246,34.808888894341834],[137.22437224372243,34.81564320342136],[137.20637206372066,34.80213458526231],[137.19557195571957,34.807200317071946],[137.1919719197192,34.78862596710324],[137.18837188371884,34.77005161713453],[137.17037170371702,34.763297308055],[137.17037170371702,34.78356023529359],[137.15597155971562,34.78187165802372],[137.14157141571417,34.78862596710324],[137.11997119971198,34.78862596710324],[137.10197101971022,34.78524881256348],[137.08757087570876,34.77680592621407],[137.0731707317073,34.78524881256348],[137.05157051570518,34.77680592621407],[137.029970299703,34.78018308075383],[137.0191701917019,34.78356023529359],[137.00117001170014,34.80213458526231],[136.9939699396994,34.808888894341834],[136.9759697596976,34.82577466704066],[136.95796957969583,34.83252897612019],[136.9615696156962,34.85785763516843],[136.98316983169832,34.898383489645624],[136.97956979569796,34.92371214869385],[136.96876968769686,34.911892107804675],[136.95796957969583,34.88487487148656],[136.939969399694,34.86123478970819],[136.93276932769328,34.84603759427925],[136.92556925569255,34.82746324431055],[136.91476914769152,34.77511734894418],[136.92556925569255,34.763297308055],[136.93636936369364,34.746411535356174],[136.9615696156962,34.734591494467],[136.97236972369723,34.71263998995852],[136.97236972369723,34.69575421725969],[136.94716947169474,34.69913137179945],[136.91476914769152,34.710951412688644],[136.87876878768787,34.72783718538747],[136.85716857168575,34.73965722627665],[136.84636846368466,34.7531658444357],[136.8427684276843,34.76836303986465],[136.85356853568538,34.786937389833355],[136.85716857168575,34.80551173980207],[136.86436864368648,34.82070893523101],[136.86436864368648,34.835906130659964],[136.85716857168575,34.856169057898555],[136.8427684276843,34.871366253327494],[136.82836828368283,34.871366253327494],[136.8211682116821,34.89500633510585],[136.8211682116821,34.92033499415409],[136.8211682116821,34.938909344122806],[136.82476824768247,34.954106539551745],[136.8319683196832,34.97268088952046],[136.8427684276843,34.98956666221929],[136.85716857168575,35.00814101218799],[136.86436864368648,35.02502678488682],[136.87876878768787,35.043601134855535],[136.88236882368824,35.07061837117365],[136.8859688596886,35.08919272114237],[136.87156871568715,35.09256987568213],[136.85716857168575,35.06217548482424],[136.84996849968502,35.04022398031576],[136.8427684276843,35.06048690755436],[136.8427684276843,35.0756841029833],[136.82836828368283,35.079061257523065],[136.83916839168393,35.031781093966345],[136.81396813968144,35.02671536215671],[136.81036810368107,35.04866686666517],[136.79956799567998,35.04866686666517],[136.79956799567998,35.02333820761693],[136.7779677796778,35.01996105307717],[136.7527675276753,35.02671536215671],[136.74556745567457,35.02333820761693],[136.7239672396724,35.02671536215671],[136.68076680766808,35.001386703108466],[136.65916659166595,34.98450093040964],[136.64836648366486,34.969303734980684],[136.64836648366486,34.96254942590116],[136.6447664476645,34.95241796228187],[136.64116641166413,34.94735223047222],[136.6447664476645,34.94228649866257],[136.66276662766631,34.94059792139268],[136.6447664476645,34.93046645777339],[136.64836648366486,34.911892107804675],[136.63756637566377,34.88825202602632],[136.61596615966158,34.85279190335878],[136.56556565565654,34.80044600799242],[136.53316533165332,34.76498588532489],[136.5259652596526,34.72108287630793],[136.52236522365223,34.70250852633923],[136.51876518765187,34.68055702183075],[136.52236522365223,34.6754912900211],[136.53316533165332,34.66029409459216],[136.5367653676537,34.6569169400524],[136.54756547565478,34.651851208242746],[136.54396543965441,34.64003116735357],[136.54036540365405,34.626522549194505],[136.54036540365405,34.6163910855752],[136.55116551165514,34.60119389014626],[136.5691656916569,34.59612815833661],[136.61236612366127,34.59612815833661],[136.6339663396634,34.59106242652696],[136.64836648366486,34.579242385637784],[136.66276662766631,34.56573376747873],[136.67716677166771,34.55391372658954],[136.7527675276753,34.51338787211236],[136.80316803168034,34.49481352214366],[136.81396813968144,34.486370635794245],[136.82476824768247,34.48974779033401],[136.83916839168393,34.48974779033401],[136.85356853568538,34.486370635794245],[136.8607686076861,34.479616326714705],[136.86796867968678,34.46779628582553],[136.87156871568715,34.45766482220624],[136.8751687516875,34.44753335858694],[136.88236882368824,34.437401894967635],[136.8967689676897,34.43402474042787],[136.9075690756908,34.43402474042787],[136.91476914769152,34.43402474042787],[136.92556925569255,34.423893276808585],[136.92556925569255,34.412073235919394],[136.91836918369182,34.376613113251864],[136.90396903969042,34.381678845061515],[136.89316893168933,34.381678845061515],[136.88236882368824,34.37830169052175],[136.8751687516875,34.36985880417234],[136.87876878768787,34.3631044950928],[136.8859688596886,34.35635018601327],[136.8967689676897,34.354661608743385],[136.91116911169115,34.354661608743385],[136.89316893168933,34.34284156785421],[136.88956889568897,34.33608725877468],[136.88236882368824,34.32764437242527],[136.88956889568897,34.317512908805966],[136.8967689676897,34.30062713610714],[136.90036900369006,34.282052786138436],[136.8967689676897,34.26685559070948],[136.8859688596886,34.26010128162996],[136.84996849968502,34.249969818010655],[136.83556835568356,34.24659266347089],[136.81756817568174,34.24828124074078],[136.79596795967961,34.25334697255043],[136.77436774367743,34.261789858899846],[136.77436774367743,34.27360989978902],[136.7887678876789,34.276987054328785],[136.81036810368107,34.27360989978902],[136.82836828368283,34.26685559070948],[136.8427684276843,34.26010128162996],[136.83916839168393,34.26685559070948],[136.83916839168393,34.2752984770589],[136.83556835568356,34.28036420886855],[136.84996849968502,34.27360989978902],[136.85716857168575,34.29387282702761],[136.84636846368466,34.30738144518668],[136.82836828368283,34.312447176996315],[136.8067680676807,34.30738144518668],[136.81036810368107,34.30062713610714],[136.81036810368107,34.297249981567376],[136.8067680676807,34.29387282702761],[136.8067680676807,34.28711851794809],[136.77436774367743,34.30738144518668],[136.75636756367567,34.2955614042975],[136.72756727567275,34.29049567248785],[136.70236702367026,34.2955614042975],[136.709567095671,34.31075859972644],[136.7239672396724,34.33102152696503],[136.70596705967063,34.334398681504794],[136.67716677166771,34.32595579515538],[136.64836648366486,34.3141357542662],[136.66636666366662,34.30907002245655],[136.66636666366662,34.297249981567376],[136.6555665556656,34.2854299406782],[136.6231662316623,34.2752984770589],[136.6087660876609,34.26516701343961],[136.5907659076591,34.26347843616972],[136.57276572765727,34.28036420886855],[136.5691656916569,34.27360989978902],[136.56556565565654,34.271921322519134],[136.56196561965623,34.26854416797937],[136.56196561965623,34.26010128162996],[136.53316533165332,34.271921322519134],[136.52236522365223,34.27360989978902],[136.51876518765187,34.261789858899846],[136.5115651156512,34.25165839528054],[136.50436504365047,34.24659266347089],[136.5151651516515,34.229706890772064],[136.50436504365047,34.229706890772064],[136.4719647196472,34.23814977712148],[136.42876428764288,34.214509695343125],[136.41796417964179,34.20437823172382],[136.38556385563857,34.20437823172382],[136.33516335163353,34.18411530448523],[136.29916299162994,34.15372091362735],[136.29556295562958,34.12501510003935],[136.30996309963103,34.11826079095981],[136.3171631716317,34.114883636420046],[136.32076320763207,34.10812932734052],[136.31356313563134,34.094620709181456],[136.30996309963103,34.089554977371805],[136.29916299162994,34.08617782283204],[136.2919629196292,34.08280066829228],[136.28476284762849,34.08111209102239],[136.2739627396274,34.08617782283204],[136.259562595626,34.104752172800744],[136.25236252362527,34.10812932734052],[136.24516245162454,34.10306359553087],[136.23076230762308,34.08280066829228],[136.219962199622,34.074357781942865],[136.219962199622,34.067603472863325],[136.23436234362345,34.067603472863325],[136.24516245162454,34.06422631832356],[136.2487624876249,34.05578343197415],[136.25236252362527,34.04396339108497],[136.27036270362703,34.02876619565603],[136.28116281162812,34.016946154766856],[136.27756277562776,34.011880422957205],[136.2739627396274,34.006814691147554],[136.2739627396274,33.97979745482942],[136.2739627396274,33.97135456848001],[136.259562595626,33.96628883667037],[136.2487624876249,33.97135456848001],[136.2379623796238,33.9831746093692],[136.23076230762308,33.99330607298849],[136.219962199622,33.98148603209931],[136.2055620556206,33.97135456848001],[136.2055620556206,33.964600259400484],[136.22716227162272,33.96122310486072],[136.23436234362345,33.947714486701656],[136.22716227162272,33.93758302308237],[136.21276212762126,33.94433733216189],[136.2055620556206,33.927451559463066],[136.19836198361986,33.92069725038354],[136.16596165961658,33.91563151857389],[136.1587615876159,33.913942941304],[136.15156151561519,33.90550005495459],[136.14436144361446,33.89368001406541],[136.13716137161373,33.89030285952565],[136.12636126361264,33.89030285952565],[136.1047610476105,33.891991436795536],[136.06876068760687,33.8463998505087],[136.01836018360183,33.73326517342656],[135.99315993159934,33.68598500986984],[135.98955989559897,33.682607855330076],[135.98235982359824,33.65221346447218],[135.96075960759606,33.642082000852895],[135.95715957159575,33.62519622815407],[135.93555935559357,33.61675334180465],[135.93915939159393,33.60324472364559],[135.96075960759606,33.593113260026286],[135.94635946359466,33.577916064597346],[135.91395913959138,33.54752167373945],[135.89595895958962,33.542455941929816],[135.88515885158853,33.52894732377075],[135.82755827558276,33.51375012834181],[135.80955809558094,33.5053072419924],[135.7987579875799,33.495175778373095],[135.78435784357845,33.473224273864616],[135.79155791557918,33.452961346626026],[135.7879578795788,33.44114130573685],[135.77355773557736,33.44451846027661],[135.7591575915759,33.432698419387435],[135.7555575555756,33.45127276935615],[135.769957699577,33.468158542054965],[135.76635766357663,33.48166716021403],[135.6691566915669,33.490110046563444],[135.6367563675637,33.495175778373095],[135.48915489154894,33.54076736465993],[135.44595445954462,33.55089882827923],[135.40995409954098,33.57453891005758],[135.39915399153995,33.582981796407],[135.38835388353885,33.594801837296174],[135.38835388353885,33.60831045545524],[135.39195391953922,33.61844191907453],[135.38115381153813,33.637016269043244],[135.3739537395374,33.64377057812277],[135.37035370353703,33.64545915539266],[135.35955359553594,33.65390204174207],[135.34155341553418,33.657279196281834],[135.32715327153272,33.6707878144409],[135.34155341553418,33.69442789621925],[135.37755377553776,33.697805050759015],[135.4027540275403,33.70118220529878],[135.39195391953922,33.71300224618797],[135.34155341553418,33.745085214315736],[135.319953199532,33.75352810066515],[135.31275312753127,33.76534814155433],[135.2947529475295,33.76365956428444],[135.2659526595266,33.780545336983266],[135.23355233552337,33.782233914253155],[135.229952299523,33.79911968695198],[135.1975519755198,33.81431688238092],[135.17235172351724,33.83795696415929],[135.15435154351547,33.87510566409671],[135.11835118351183,33.89368001406541],[135.10035100351007,33.89030285952565],[135.06435064350643,33.885237127715996],[135.0571505715057,33.880171395906345],[135.06075060750607,33.89030285952565],[135.0679506795068,33.89705716860517],[135.0571505715057,33.902122900414824],[135.06435064350643,33.90550005495459],[135.0787507875079,33.90550005495459],[135.0787507875079,33.91900867311365],[135.0679506795068,33.93082871400283],[135.0859508595086,33.942648754892005],[135.10035100351007,33.954468795781196],[135.0967509675097,33.95953452759083],[135.0787507875079,33.95953452759083],[135.07515075150752,33.97810887755955],[135.09315093150934,33.991617495718614],[135.11475114751147,33.99330607298849],[135.12915129151293,33.99837180479814],[135.15435154351547,34.01019184568732],[135.16155161551615,34.025389041116256],[135.16155161551615,34.03889765927532],[135.15435154351547,34.04902912289462],[135.1327513275133,34.05747200924404],[135.1111511115111,34.06591489559345],[135.09315093150934,34.067603472863325],[135.11475114751147,34.10137501826098],[135.11835118351183,34.10306359553087],[135.12555125551256,34.10644075007063],[135.12915129151293,34.10812932734052],[135.12915129151293,34.11319505915016],[135.12915129151293,34.12163794549957],[135.1219512195122,34.136835140928525],[135.14715147151475,34.1385237181984],[135.1867518675187,34.13514656365864],[135.19035190351906,34.150343759087576],[135.17955179551797,34.16554095451653],[135.1651516515165,34.187492459024995],[135.14715147151475,34.18580388175512],[135.13635136351365,34.22801831350219],[135.11835118351183,34.24152693166124],[135.09315093150934,34.26010128162996],[135.06075060750607,34.26685559070948],[135.07155071550716,34.2854299406782],[135.10395103951043,34.317512908805966],[135.20835208352082,34.34284156785421],[135.25515255152555,34.376613113251864],[135.28035280352805,34.396876040490454],[135.319953199532,34.42895900861822],[135.35235352353527,34.46779628582553],[135.3739537395374,34.484682058524356],[135.3739537395374,34.50832214030271],[135.3739537395374,34.51845360392201],[135.39195391953922,34.52351933573166],[135.39915399153995,34.53365079935095],[135.40995409954098,34.54040510843049],[135.41355413554135,34.55729088112932],[135.41355413554135,34.579242385637784],[135.4171541715417,34.60963677649568],[135.40635406354062,34.63496543554392],[135.4027540275403,34.65860551732227],[135.41355413554135,34.69237706271993],[135.39915399153995,34.6856227536404],[135.38115381153813,34.68055702183075],[135.3631536315363,34.688999908180165],[135.34155341553418,34.709262835418755],[135.31635316353163,34.70757425814887],[135.28755287552877,34.70588568087899],[135.28755287552877,34.68055702183075],[135.25515255152555,34.67717986729099],[135.25515255152555,34.70081994906934],[135.2191521915219,34.69068848545004],[135.2407524075241,34.65016263097286],[135.2119521195212,34.65522836278251],[135.20475204752051,34.67717986729099],[135.1867518675187,34.6754912900211],[135.18315183151833,34.651851208242746],[135.1111511115111,34.64003116735357],[135.0787507875079,34.62821112646439],[135.04635046350467,34.624833971924616],[135.01755017550175,34.641719744623444],[134.9779497794978,34.641719744623444],[134.95994959949599,34.64340832189333],[134.93834938349386,34.667048403671686],[134.90594905949058,34.67717986729099],[134.88794887948882,34.69068848545004],[134.8339483394834,34.72108287630793],[134.8015480154802,34.731214339927234],[134.7619476194762,34.756542998975476],[134.74394743947443,34.766674462594764],[134.69714697146975,34.77680592621407],[134.56754567545676,34.766674462594764],[134.56034560345603,34.76836303986465],[134.5531455314553,34.771740194404416],[134.549545495455,34.773428771674304],[134.54234542345426,34.77005161713453],[134.5387453874539,34.766674462594764],[134.53154531545317,34.763297308055],[134.52434524345244,34.75992015351524],[134.52074520745208,34.75992015351524],[134.50634506345062,34.76160873078511],[134.4955449554496,34.76498588532489],[134.49194491944922,34.773428771674304],[134.49194491944922,34.786937389833355],[134.4847448474485,34.78524881256348],[134.47754477544777,34.78187165802372],[134.4739447394474,34.77680592621407],[134.47034470344704,34.77005161713453],[134.47034470344704,34.76160873078511],[134.46674466744668,34.76160873078511],[134.4631446314463,34.76160873078511],[134.45594455944558,34.75992015351524],[134.4307443074431,34.731214339927234],[134.42354423544236,34.72614860811758],[134.4091440914409,34.72614860811758],[134.39834398343987,34.731214339927234],[134.39114391143914,34.73796864900676],[134.38034380343805,34.73965722627665],[134.36954369543696,34.736280071736886],[134.35874358743587,34.72783718538747],[134.35154351543514,34.71601714449828],[134.3551435514355,34.70588568087899],[134.32634326343265,34.704197103609104],[134.2759427594276,34.71601714449828],[134.24714247142475,34.71770572176817],[134.2219422194222,34.72783718538747],[134.20754207542075,34.72783718538747],[134.21834218342184,34.71263998995852],[134.22554225542257,34.70757425814887],[134.27954279542797,34.69744279452958],[134.27234272342724,34.69575421725969],[134.25074250742506,34.694065639989816],[134.2435424354244,34.69068848545004],[134.22554225542257,34.667048403671686],[134.2219422194222,34.66367124913192],[134.2111421114211,34.661982671862035],[134.1967419674197,34.651851208242746],[134.1787417874179,34.648474053702984],[134.17154171541716,34.646785476433095],[134.15354153541534,34.63665401281379],[134.16074160741607,34.631588281004156],[134.17154171541716,34.631588281004156],[134.1787417874179,34.631588281004156],[134.18954189541898,34.63665401281379],[134.1787417874179,34.61470250830533],[134.14634146341467,34.5978167356065],[134.1139411394114,34.58599669471732],[134.08514085140854,34.58093096290767],[134.07074070740708,34.58599669471732],[134.0491404914049,34.604571044686026],[134.02754027540277,34.60963677649568],[133.99513995139955,34.60794819922579],[133.9807398073981,34.606259621955914],[133.95553955539555,34.59275100379685],[133.93753937539378,34.5876852719872],[133.9267392673927,34.57755380836791],[133.93033930339305,34.56066803566908],[133.94113941139415,34.55560230385943],[133.9591395913959,34.564045190208844],[133.98433984339846,34.589373849257086],[134.00234002340022,34.59443958106674],[134.02034020340204,34.59612815833661],[134.0347403474035,34.59275100379685],[134.0455404554046,34.58093096290767],[134.0455404554046,34.564045190208844],[134.0347403474035,34.55222514931967],[134.01674016740168,34.543782262970254],[134.0059400594006,34.53365079935095],[134.0059400594006,34.53027364481119],[134.00954009540095,34.5285850675413],[134.01314013140131,34.520142181191886],[133.98433984339846,34.5285850675413],[133.96633966339664,34.506633563032835],[133.95553955539555,34.474550594905054],[133.93753937539378,34.4509105131267],[133.85833858338583,34.46273055401588],[133.82233822338225,34.46273055401588],[133.8259382593826,34.437401894967635],[133.7935379353794,34.44246762677729],[133.77913779137793,34.46273055401588],[133.76833768337684,34.48805921306412],[133.74313743137435,34.506633563032835],[133.73593735937362,34.501567831223184],[133.7287372873729,34.506633563032835],[133.72513725137253,34.51676502665212],[133.72513725137253,34.526896490271426],[133.7179371793718,34.520142181191886],[133.69993699936998,34.52520791300154],[133.68553685536858,34.520142181191886],[133.67113671136713,34.5100107175726],[133.64233642336427,34.501567831223184],[133.59553595535954,34.48299348125447],[133.5847358473585,34.47623917217494],[133.5847358473585,34.46948486309542],[133.57753577535777,34.46273055401588],[133.57033570335705,34.459353399476115],[133.54873548735486,34.45766482220624],[133.5415354153542,34.45259909039659],[133.53793537935383,34.449221935856826],[133.5307353073531,34.44584478131705],[133.46953469534697,34.423893276808585],[133.5091350913509,34.46273055401588],[133.52353523535237,34.48299348125447],[133.50193501935019,34.49143636760388],[133.49113491134915,34.48974779033401],[133.46953469534697,34.47623917217494],[133.4551345513455,34.47286201763518],[133.42993429934302,34.47286201763518],[133.41913419134193,34.46779628582553],[133.41553415534156,34.4509105131267],[133.4227342273423,34.44584478131705]]],[[[145.76725767257676,43.386861425345955],[145.78165781657816,43.386861425345955],[145.81405814058144,43.37841853899653],[145.82485824858247,43.373352807186876],[145.8176581765818,43.364909920837476],[145.81045810458107,43.3615327662977],[145.7888578885789,43.359844189027825],[145.7780577805778,43.35646703448805],[145.76005760057603,43.33620410724947],[145.74565745657458,43.332826952709695],[145.709657096571,43.32607264363017],[145.6988569885699,43.32269548909039],[145.68445684456844,43.310875448201216],[145.67365673656735,43.30749829366147],[145.6448564485645,43.31256402547112],[145.63045630456304,43.30918687093134],[145.619656196562,43.30412113912169],[145.61605616056164,43.29398967550239],[145.60525605256055,43.283858211883086],[145.580055800558,43.265283861914384],[145.57285572855727,43.256840975564984],[145.5656556565566,43.24670951194568],[145.55845558455587,43.221380852897425],[145.55125551255514,43.20956081200825],[145.54405544055442,43.20280650292872],[145.51885518855192,43.17578926661059],[145.52965529655296,43.16903495753107],[145.51885518855192,43.16565780299132],[145.49725497254974,43.16734638026119],[145.47925479254792,43.172412112070845],[145.45405454054543,43.18423215296002],[145.4360543605436,43.18254357569015],[145.4036540365404,43.17578926661059],[145.3028530285303,43.17410068934072],[145.28125281252812,43.16565780299132],[145.259652596526,43.14877203029249],[145.23085230852308,43.14032914394306],[145.15525155251555,43.13188625759366],[145.13725137251373,43.12850910305389],[145.12645126451264,43.12006621670449],[145.1192511925119,43.10655759854541],[145.12285122851227,43.087983248576705],[145.13365133651337,43.08460609403693],[145.1516515165152,43.08460609403693],[145.16965169651695,43.079540362227306],[145.15885158851592,43.07109747587788],[145.14805148051482,43.066031744068226],[145.11205112051124,43.06434316679835],[145.10845108451088,43.0592774349887],[145.1048510485105,43.052523125909175],[145.09765097650978,43.04408023955975],[145.0760507605076,43.03394877594047],[145.0508505085051,43.03394877594047],[145.00405004050043,43.04408023955975],[145.0220502205022,43.020440157781394],[145.02925029250292,43.00862011689222],[145.0220502205022,42.99680007600304],[145.01485014850152,42.990045766923515],[145.00045000450007,42.98666861238374],[144.9320493204932,42.97822572603434],[144.89964899649,42.97991430330421],[144.8672486724867,42.98835718965361],[144.84204842048422,43.00693153962234],[144.84204842048422,43.017063003241645],[144.84204842048422,43.02888304413082],[144.83844838448385,43.04070308502],[144.82044820448203,43.04408023955975],[144.809648096481,43.04576881682965],[144.80244802448027,43.04576881682965],[144.7988479884799,43.047457394099524],[144.79164791647918,43.04408023955975],[144.78444784447845,43.04070308502],[144.77364773647736,43.02719446686092],[144.76644766447663,43.02381731232117],[144.75924759247596,43.01875158051152],[144.74844748447487,43.00693153962234],[144.73764737647377,42.99173434419339],[144.7340473404734,42.97991430330421],[144.74124741247414,42.96471710787526],[144.7556475564756,42.954585644255985],[144.770047700477,42.94445418063668],[144.78444784447845,42.93432271701738],[144.74124741247414,42.92419125339808],[144.6008460084601,42.949519912446334],[144.52164521645216,42.94445418063668],[144.49644496444967,42.932634139747506],[144.4640446404464,42.93769987155716],[144.39204392043922,42.95627422152586],[144.38124381243813,42.96133995333551],[144.3740437404374,42.96978283968491],[144.36684366843667,42.97822572603434],[144.3632436324363,42.990045766923515],[144.359643596436,43.00017723054282],[144.34524345243454,43.003554385082566],[144.32364323643236,43.00186580781269],[144.18324183241833,42.976537148764436],[144.0428404284043,42.92587983066798],[143.88803888038882,42.84482812171359],[143.7908379083791,42.7570221036797],[143.63963639636398,42.660773199296386],[143.5748357483575,42.60336157212038],[143.44883448834491,42.45476677237069],[143.34803348033483,42.31968059078008],[143.330033300333,42.27746615903301],[143.32643326433265,42.23018599547629],[143.33723337233374,42.17277436830028],[143.33723337233374,42.1508228637918],[143.33723337233374,42.12887135928334],[143.330033300333,42.10691985477486],[143.30483304833052,42.02586814582048],[143.29403294032943,42.00560521858189],[143.26523265232652,41.98703086861319],[143.25443254432548,41.94143928232636],[143.24003240032403,41.92793066416729],[143.22563225632257,41.93299639597694],[143.20403204032044,41.94650501413601],[143.18243182431826,41.96170220956495],[143.17163171631717,41.971833673184236],[143.16443164431644,41.99040802315295],[143.13923139231395,42.01067095039154],[143.1140311403114,42.02755672309037],[142.9592295922959,42.10523127750497],[142.75762757627575,42.15757717287134],[142.54522545225456,42.25044892271488],[142.45882458824588,42.270711849953486],[142.28242282422826,42.36696075433679],[142.22122221222213,42.41255234062362],[142.16722167221673,42.45983250418034],[142.06282062820628,42.46996396779964],[141.98001980019802,42.510489822276824],[141.92601926019262,42.557769985833545],[141.9080190801908,42.56621287218296],[141.88641886418867,42.56959002672272],[141.8180181801818,42.5999844175806],[141.72441724417246,42.61687019027943],[141.63801638016383,42.615181613009554],[141.5480154801548,42.60167299485049],[141.42921429214294,42.56452429491307],[141.26361263612637,42.468275390529755],[141.2348123481235,42.458143926910466],[141.2168121681217,42.4446353087514],[141.20241202412024,42.44125815421164],[141.1916119161192,42.43956957694175],[141.1808118081181,42.43788099967186],[141.17001170011702,42.432815267862225],[141.09081090810912,42.39228941338503],[141.0728107281073,42.37709221795609],[141.01521015210153,42.31630343624032],[141.00081000810007,42.30448339535113],[140.99000990009904,42.301106240811365],[140.97560975609758,42.29941766354149],[140.9648096480965,42.301106240811365],[140.9540095400954,42.30448339535113],[140.94680946809467,42.30954912716078],[140.93600936009364,42.31968059078008],[140.93240932409327,42.328123477129495],[140.93600936009364,42.333189208939146],[140.97560975609758,42.326434899859606],[140.9828098280983,42.32981205439937],[140.98640986409868,42.33994351801867],[140.97560975609758,42.3466978270982],[140.94680946809467,42.35345213617774],[140.92520925209254,42.36527217706691],[140.91800918009181,42.37202648614644],[140.9108091080911,42.38046937249585],[140.90000900009,42.420995226973034],[140.73440734407347,42.56452429491307],[140.6876068760688,42.57972149034201],[140.66240662406625,42.57972149034201],[140.59760597605975,42.571278603992596],[140.5256052560526,42.5814100676119],[140.50040500405004,42.57972149034201],[140.45720457204573,42.56452429491307],[140.41760417604178,42.53750705859494],[140.3816038160382,42.50542409046717],[140.32400324003243,42.432815267862225],[140.30240302403024,42.39228941338503],[140.28800288002878,42.35007498163796],[140.2808028080281,42.30448339535113],[140.29160291602915,42.258891809064295],[140.32040320403206,42.23356315001607],[140.4248042480425,42.19303729553887],[140.45720457204573,42.17277436830028],[140.52920529205295,42.11198558658451],[140.5472054720547,42.10523127750497],[140.57240572405726,42.10860843204475],[140.60840608406085,42.11705131839416],[140.67320673206734,42.1221170502038],[140.69480694806947,42.125494204743575],[140.7128071280713,42.133937091092974],[140.77400774007742,42.10185412296521],[140.78840788407888,42.07483688664709],[140.83880838808392,42.02417956855061],[140.85320853208532,42.01067095039154],[140.89280892808927,41.99209660042284],[140.90720907209072,41.978587982263775],[140.97560975609758,41.91442204600823],[140.99360993609935,41.90260200511905],[141.01161011610117,41.894159118769636],[141.03321033210335,41.889093386959985],[141.05841058410584,41.88740480969011],[141.0836108361084,41.88233907788046],[141.10521105211052,41.87220761426116],[141.18441184411847,41.81817314162491],[141.19881198811987,41.79959879165621],[141.1916119161192,41.791155905306795],[141.14481144811447,41.78609017349714],[141.12321123211234,41.77933586441762],[141.10521105211052,41.770892978068204],[141.0440104401044,41.72361281451148],[141.0080100801008,41.71179277362231],[140.96120961209613,41.72192423724161],[140.8748087480875,41.75907293717903],[140.82440824408246,41.770892978068204],[140.77400774007742,41.770892978068204],[140.7308073080731,41.75063005082961],[140.70920709207093,41.74556431901996],[140.69840698406983,41.75907293717903],[140.70560705607056,41.77427013260797],[140.72360723607238,41.78271301895738],[140.73440734407347,41.79284448257668],[140.72720727207275,41.811418832545385],[140.70920709207093,41.82492745070445],[140.68400684006843,41.8299931825141],[140.6588065880659,41.826616027974325],[140.64080640806407,41.81479598708515],[140.63000630006303,41.79791021438632],[140.61560615606157,41.754007205369376],[140.60480604806048,41.73543285540066],[140.54360543605435,41.71179277362231],[140.53640536405368,41.70503846454278],[140.52200522005222,41.69828415546324],[140.47160471604718,41.686464114574065],[140.45360453604536,41.681398382764414],[140.43200432004323,41.644249682826995],[140.44280442804427,41.56319797387263],[140.43200432004323,41.53111500574485],[140.39960399603996,41.51254065577615],[140.27360273602739,41.482146264918256],[140.25920259202593,41.47201480129897],[140.2412024120241,41.456817605870015],[140.2268022680227,41.43824325590131],[140.21960219602198,41.41798032866272],[140.2088020880209,41.401094555963894],[140.1836018360184,41.40447171050366],[140.13680136801366,41.421357483202485],[140.12600126001263,41.419668905932596],[140.1080010800108,41.414603174122945],[140.10080100801008,41.41291459685307],[140.090000900009,41.41629175139283],[140.06120061200613,41.43148894682177],[140.05040050400504,41.43486610136155],[140.03960039600395,41.443308987710964],[140.0288002880029,41.461883337679666],[140.01440014400146,41.50240919215685],[139.98199981999824,41.55982081933287],[139.97839978399787,41.581772323841335],[139.98559985599854,41.603723828349814],[140.00360003600036,41.63411821920771],[140.01800018000182,41.69659557819337],[140.07200072000722,41.7607615144489],[140.08280082800832,41.80128736892608],[140.08640086400862,41.80466452346586],[140.1080010800108,41.80297594619597],[140.1188011880119,41.80466452346586],[140.12600126001263,41.81479598708515],[140.129601296013,41.82323887343456],[140.129601296013,41.84519037794304],[140.129601296013,41.851944687022566],[140.12600126001263,41.86038757337198],[140.12240122401226,41.86545330518163],[140.12600126001263,41.87051903699128],[140.13320133201336,41.875584768800934],[140.1440014400144,41.8789619233407],[140.14760147601476,41.89078196422987],[140.14760147601476,41.9076677369287],[140.15120151201512,41.91442204600823],[140.1440014400144,41.92961924143718],[140.14040140401403,41.94819359140588],[140.13680136801366,41.9667679413746],[140.1440014400144,41.98196513680354],[140.11160111601117,42.01067095039154],[140.06120061200613,42.07990261845673],[140.0288002880029,42.10523127750497],[139.92799927999283,42.139002822902626],[139.909999099991,42.15588859560145],[139.909999099991,42.160954327411105],[139.90279902799028,42.166020059220756],[139.88479884798846,42.19472587280876],[139.87399873998743,42.19979160461841],[139.84519845198452,42.208234490967826],[139.79839798397984,42.23525172728594],[139.78759787597875,42.24707176817512],[139.7767977679777,42.270711849953486],[139.76599765997662,42.31123770443067],[139.77319773197735,42.32981205439937],[139.78399783997838,42.35007498163796],[139.82719827198275,42.40242087700433],[139.8379983799838,42.42437238151281],[139.84879848798488,42.46996396779964],[139.84879848798488,42.51386697681659],[139.83439834398342,42.588164376691424],[139.84519845198452,42.62700165389873],[139.8775987759878,42.66415035383615],[139.91719917199174,42.677658971995214],[140.01440014400146,42.68103612653498],[140.03960039600395,42.68610185834463],[140.0540005400054,42.69454474469404],[140.09720097200972,42.733382021901335],[140.10440104401044,42.738447753710986],[140.11520115201154,42.74182490825075],[140.12600126001263,42.74351348552064],[140.13680136801366,42.7468906400604],[140.1440014400144,42.7570221036797],[140.16920169201694,42.79585938088701],[140.1836018360184,42.80936799904606],[140.20160201602016,42.81443373085571],[140.22320223202235,42.80092511269666],[140.24480244802447,42.77221929910864],[140.25920259202593,42.760399258219465],[140.2808028080281,42.7570221036797],[140.30240302403024,42.77053072183875],[140.30960309603097,42.79248222634723],[140.31320313203133,42.816122308125586],[140.32040320403206,42.82625377174489],[140.33840338403382,42.83469665809429],[140.35280352803528,42.85327100806302],[140.37800378003783,42.8937968625402],[140.39240392403923,42.90899405796915],[140.4608046080461,42.95965137606561],[140.5040050400504,42.97991430330421],[140.52200522005222,42.99680007600304],[140.5256052560526,43.01537442597174],[140.51840518405186,43.030571621400696],[140.50040500405004,43.04576881682965],[140.4932049320493,43.0677203213381],[140.48600486004864,43.082917516767054],[140.4392043920439,43.13357483486354],[140.40680406804069,43.16059207118167],[140.36720367203674,43.18254357569015],[140.33840338403382,43.21124938927815],[140.3276032760328,43.25008666648546],[140.360003600036,43.324384066360295],[140.41040410404105,43.324384066360295],[140.4356043560436,43.327761220900044],[140.45360453604536,43.33958126178922],[140.45720457204573,43.34802414813865],[140.4608046080461,43.35815561175795],[140.46440464404645,43.368287075377225],[140.47160471604718,43.373352807186876],[140.48600486004864,43.371664229917],[140.50040500405004,43.364909920837476],[140.51120511205113,43.35646703448805],[140.51840518405186,43.3530898799483],[140.53640536405368,43.34802414813865],[140.61920619206194,43.30074398458191],[140.63720637206376,43.28892394369274],[140.66960669606698,43.26021813010473],[140.6876068760688,43.248398089215556],[140.75960759607597,43.22306943016733],[140.77040770407706,43.2163151210878],[140.78480784807851,43.20111792565885],[140.79560795607955,43.1960521938492],[140.810008100081,43.19267503930942],[140.9108091080911,43.204495080198626],[140.99000990009904,43.22644658470708],[141.01161011610117,43.229823739246854],[141.02241022410226,43.22306943016733],[141.01161011610117,43.21124938927815],[141.00441004410044,43.19267503930942],[141.02241022410226,43.17578926661059],[141.03321033210335,43.172412112070845],[141.06921069210694,43.16903495753107],[141.11241112411125,43.15552633937202],[141.13401134011343,43.15214918483224],[141.15561155611556,43.14370629848284],[141.17001170011702,43.14032914394306],[141.18801188011884,43.142017721212966],[141.20241202412024,43.14370629848284],[141.22761227612278,43.15383776210214],[141.30321303213032,43.19774077111907],[141.37161371613718,43.25008666648546],[141.39681396813967,43.28048105734334],[141.42201422014222,43.31762975728074],[141.44001440014404,43.3615327662977],[141.44001440014404,43.40712435258453],[141.42561425614258,43.43414158890266],[141.37161371613718,43.49661894788832],[141.36081360813608,43.52363618420645],[141.36081360813608,43.54389911144503],[141.37521375213754,43.56078488414386],[141.389613896139,43.57935923411256],[141.37161371613718,43.618196511319866],[141.36441364413645,43.62832797493917],[141.3680136801368,43.64690232490787],[141.34281342813432,43.69080533392483],[141.3356133561336,43.71275683843331],[141.34281342813432,43.73133118840201],[141.35721357213572,43.75497127018036],[141.38601386013863,43.792119970117795],[141.40041400414003,43.80394001100697],[141.42561425614258,43.814071474626274],[141.4472144721447,43.822514360975674],[141.49041490414908,43.827580092785325],[141.50841508415084,43.83264582459498],[141.52641526415266,43.841088710944376],[141.58401584015843,43.87486025634203],[141.61641616416165,43.90356606993004],[141.6416164161642,43.93733761532769],[141.65961659616596,43.98461777888443],[141.6668166681667,44.02514363336161],[141.67041670416705,44.067358065108664],[141.6560165601656,44.27674164657412],[141.6668166681667,44.31220176924165],[141.74601746017458,44.42364786905392],[141.79281792817932,44.597571327851824],[141.79641796417962,44.64147433686878],[141.78201782017823,44.76474047757023],[141.7532175321753,44.8846294637319],[141.7208172081721,44.95554970906696],[141.5876158761588,45.16493329053242],[141.57321573215734,45.2071477222795],[141.58401584015843,45.25105073129643],[141.59121591215916,45.257805040375985],[141.60921609216092,45.27637939034469],[141.61641616416165,45.284822276694086],[141.62361623616238,45.29664231758326],[141.62361623616238,45.30508520393269],[141.62721627216274,45.315216667551994],[141.64881648816487,45.34054532660022],[141.64881648816487,45.35743109929905],[141.63801638016383,45.38951406742683],[141.63801638016383,45.404711262855756],[141.63801638016383,45.42159703555458],[141.64881648816487,45.43679423098354],[141.6668166681667,45.45030284914259],[141.67761677616778,45.44354854006306],[141.6848168481685,45.43679423098354],[141.6848168481685,45.42497419009436],[141.68841688416887,45.41146557193531],[141.69201692016924,45.40302268558588],[141.70281702817027,45.40133410831601],[141.72801728017282,45.40808841739553],[141.7748177481775,45.413154149205184],[141.82161821618217,45.423285612824486],[141.85761857618576,45.440171385523314],[141.86841868418685,45.44354854006306],[141.87561875618758,45.448614271872714],[141.87561875618758,45.46043431276189],[141.87561875618758,45.47394293092097],[141.87921879218794,45.484074394540244],[141.8936189361894,45.50096016723907],[141.9188191881919,45.516157362668025],[141.94401944019444,45.521223094477676],[141.9620196201962,45.5094030535885],[141.97641976419766,45.480697240000495],[141.98721987219875,45.46887719911132],[142.00162001620015,45.46381146730167],[142.0160201602016,45.45536858095224],[142.05562055620555,45.40133410831601],[142.09522095220956,45.372628294728],[142.18162181621818,45.32534813117127],[142.22122221222213,45.30001947212304],[142.53802538025383,45.01802706805262],[142.61362613626136,44.9032038137006],[142.63162631626318,44.88294088646202],[142.6640266402664,44.866055113763196],[142.71442714427144,44.806954909317284],[142.90882908829087,44.64822864594831],[142.94122941229415,44.63472002778926],[142.9808298082981,44.58575128696265],[143.04203042030423,44.55535689610477],[143.11763117631176,44.496256691658886],[143.20403204032044,44.447287950832276],[143.22563225632257,44.442222219022625],[143.24003240032403,44.437156487212974],[143.27963279632797,44.406762096355095],[143.2976329763298,44.39494205546592],[143.3408334083341,44.38649916911649],[143.3516335163352,44.38143343730684],[143.36963369633696,44.35103904644896],[143.36963369633696,44.34597331463931],[143.3948339483395,44.322333232860956],[143.4056340563406,44.317267501051305],[143.55323553235536,44.25310156479577],[143.77643776437765,44.188935628540236],[143.77643776437765,44.18218131946068],[143.6936369363694,44.19062420581011],[143.67923679236793,44.18218131946068],[143.68643686436866,44.175427010381156],[143.70803708037084,44.15854123768233],[143.71523715237151,44.1517869286028],[143.72963729637297,44.112949651395496],[143.7368373683737,44.11801538320515],[143.74403744037443,44.121392537744924],[143.75843758437588,44.10957249685575],[143.76923769237692,44.1045067650461],[143.78363783637838,44.10112961050632],[143.93123931239313,44.099441033236445],[143.93843938439386,44.09606387869667],[143.96723967239672,44.11970396047502],[143.98163981639817,44.129835424094324],[143.9996399964,44.1332125786341],[144.11844118441184,44.129835424094324],[144.15444154441548,44.11801538320515],[144.17244172441724,44.10619534231597],[144.17244172441724,44.102818187776194],[144.15804158041584,44.10112961050632],[144.14004140041402,44.09268672415692],[144.12564125641256,44.08086668326774],[144.10404104041044,44.031897942441134],[144.14004140041402,44.02007790155196],[144.15444154441548,44.02007790155196],[144.1652416524165,44.02514363336161],[144.1760417604176,44.03527509698091],[144.19044190441906,44.050472292409836],[144.1976419764198,44.067358065108664],[144.20124201242015,44.08255526053762],[144.21564215642155,44.11126107412562],[144.24444244442446,44.11970396047502],[144.26244262442623,44.107883919585845],[144.25524255242556,44.07917810599784],[144.26964269642696,44.04878371513996],[144.27684276842768,44.036963674250785],[144.2948429484295,44.031897942441134],[144.30204302043023,44.023455056091734],[144.320043200432,43.99137208796395],[144.32724327243272,43.98461777888443],[144.33804338043382,43.979552047074776],[144.37764377643776,43.95591196529642],[144.39564395643959,43.95084623348677],[144.43164431644317,43.94240334713734],[144.5720457204572,43.925517574438516],[144.74124741247414,43.91538611081924],[144.7880478804788,43.92214041989877],[144.83124831248313,43.94240334713734],[144.94644946449466,44.03358651971101],[145.03645036450365,44.11126107412562],[145.04725047250474,44.121392537744924],[145.1192511925119,44.15516408314258],[145.16605166051664,44.19062420581011],[145.1840518405184,44.19568993761976],[145.20205202052023,44.205821401239064],[145.2488524885249,44.27167591476447],[145.28845288452885,44.2986931510826],[145.31005310053104,44.31557892378143],[145.31725317253176,44.33584185102001],[145.32445324453244,44.34259616009956],[145.33165331653316,44.34597331463931],[145.34245342453426,44.34597331463931],[145.34965349653498,44.32571038740073],[145.3676536765368,44.30207030562238],[145.37485374853748,44.29193884200308],[145.3712537125371,44.24803583298612],[145.34965349653498,44.210887133048686],[145.29205292052922,44.15516408314258],[145.27765277652776,44.1332125786341],[145.27045270452703,44.085932415077394],[145.259652596526,44.06904664237857],[145.16965169651695,43.98461777888443],[145.14445144451446,43.952534810756646],[145.12285122851227,43.917074688089116],[145.1048510485105,43.87992598815168],[145.1156511565116,43.863040215452855],[145.10845108451088,43.84277728821428],[145.09765097650978,43.822514360975674],[145.09045090450905,43.800562856467195],[145.0760507605076,43.78536566103827],[145.07245072450723,43.77523419741897],[145.07245072450723,43.76172557925992],[145.0760507605076,43.75328269291049],[145.1156511565116,43.68742817938505],[145.130051300513,43.672230983956126],[145.1948519485195,43.61988508858977],[145.20925209252096,43.60637647043069],[145.220052200522,43.58949069773186],[145.22725227252272,43.569227770493285],[145.22725227252272,43.547276265984806],[145.23085230852308,43.54052195690528],[145.24525245252454,43.53039049328598],[145.25245252452527,43.51350472058715],[145.26325263252636,43.4898646388088],[145.29205292052922,43.40543577531466],[145.31005310053104,43.36659849810735],[145.34605346053462,43.332826952709695],[145.3928539285393,43.305809716391565],[145.36045360453608,43.30074398458191],[145.29925299252994,43.34126983905912],[145.27045270452703,43.346335570868746],[145.259652596526,43.337892684519346],[145.259652596526,43.327761220900044],[145.26325263252636,43.31594118001087],[145.28125281252812,43.31256402547112],[145.29925299252994,43.30918687093134],[145.3136531365314,43.302432561851816],[145.32085320853207,43.29567825277229],[145.3028530285303,43.292301098232514],[145.32085320853207,43.27710390280356],[145.34965349653498,43.265283861914384],[145.3820538205382,43.25852955283486],[145.46845468454688,43.25346382102521],[145.49365493654938,43.24502093467581],[145.51885518855192,43.229823739246854],[145.52245522455223,43.24164378013603],[145.5116551165512,43.248398089215556],[145.5008550085501,43.256840975564984],[145.49725497254974,43.270349593724035],[145.50445504455047,43.27710390280356],[145.54045540455405,43.302432561851816],[145.58365583655836,43.33620410724947],[145.59445594455946,43.342958416329],[145.619656196562,43.34802414813865],[145.6340563405634,43.3530898799483],[145.64125641256413,43.359844189027825],[145.6448564485645,43.36659849810735],[145.64845648456486,43.373352807186876],[145.66285662856632,43.3801071162664],[145.67725677256772,43.381795693536304],[145.7240572405724,43.3801071162664],[145.73125731257312,43.381795693536304],[145.74565745657458,43.39192715715558],[145.74925749257494,43.39361573442548],[145.75645756457567,43.39361573442548],[145.76005760057603,43.390238579885704],[145.7636576365764,43.38855000261583],[145.76725767257676,43.386861425345955]]],[[[-52.62712627126271,47.52725289109833],[-52.61632616326163,47.52218715928868],[-52.61632616326163,47.512055695669375],[-52.62712627126271,47.485038459351244],[-52.64152641526415,47.48672703662115],[-52.659526595265945,47.481661304811496],[-52.69192691926919,47.46477553211267],[-52.659526595265945,47.44620118214394],[-52.655926559265595,47.43775829579454],[-52.66312663126631,47.42424967763549],[-52.67392673926739,47.41242963674631],[-52.70272702727027,47.392166709507705],[-52.709927099270985,47.38372382315828],[-52.71712717127171,47.36852662772935],[-52.731527315273155,47.33306650506182],[-52.73872738727387,47.32124646417262],[-52.75312753127531,47.31449215509309],[-52.785527855278545,47.31111500055334],[-52.79992799927999,47.307737846013566],[-52.79272792727927,47.302672114203915],[-52.781927819278195,47.29929495966417],[-52.7711277112771,47.29929495966417],[-52.760327603276025,47.29929495966417],[-52.76752767527675,47.289163496044864],[-52.781927819278195,47.28240918696534],[-52.81432814328143,47.27396630061591],[-52.80352803528035,47.258769105186985],[-52.807128071280715,47.25032621883756],[-52.81432814328143,47.24357190975803],[-52.82152821528214,47.21993182797968],[-52.832328323283235,47.20304605528085],[-52.835928359283585,47.18447170531212],[-52.83952839528395,47.177717396232595],[-52.84672846728466,47.174340241692846],[-52.84672846728466,47.16589735534342],[-52.85392853928539,47.133814387215665],[-52.861128611286105,47.115240037246934],[-52.86832868328683,47.10173141908788],[-52.882728827288275,47.09666568727823],[-52.91872918729187,47.093288532738455],[-52.936729367293665,47.08822280092883],[-52.886328863288625,47.07471418276975],[-52.86832868328683,47.07471418276975],[-52.85032850328503,47.0696484509601],[-52.84672846728466,47.0612055646107],[-52.857528575285755,47.05613983280105],[-52.87552875528755,47.0595169873408],[-52.87192871928718,47.0510741009914],[-52.86832868328683,47.04263121464197],[-52.861128611286105,47.03756548283235],[-52.85392853928539,47.0324997510227],[-52.85392853928539,47.02574544194317],[-52.88992889928899,47.00717109197444],[-52.89352893528935,46.995351051085265],[-52.882728827288275,46.97846527838644],[-52.8971289712897,46.973399546576786],[-52.8971289712897,46.96664523749726],[-52.89352893528935,46.959890928417735],[-52.886328863288625,46.95820235114786],[-52.882728827288275,46.95144804206831],[-52.911529115291145,46.91261076486103],[-52.91512915129151,46.89065926035255],[-52.92592925929259,46.86870775584407],[-52.9331293312933,46.84675625133559],[-52.92952929529295,46.82649332409699],[-52.936729367293665,46.81636186047771],[-52.936729367293665,46.80285324231863],[-52.94032940329403,46.79103320142946],[-52.961929619296185,46.78259031508006],[-52.97272972729726,46.76570454238123],[-52.97992979929799,46.758950233301704],[-53.00873008730086,46.75388450149205],[-53.00873008730086,46.75219592422215],[-53.03033030330303,46.73531015152332],[-53.06633066330663,46.666078483458136],[-53.09153091530915,46.64919271075931],[-53.14193141931419,46.62892978352073],[-53.17793177931779,46.625552628980955],[-53.19233192331923,46.62724120625083],[-53.21033210332102,46.63568409260026],[-53.23193231932319,46.65425844256896],[-53.25353253532535,46.682964256156964],[-53.26793267932679,46.715047224284746],[-53.264332643326426,46.7386873060631],[-53.28233282332823,46.73362157425345],[-53.300333003330024,46.7201129560944],[-53.325533255332545,46.69478429704614],[-53.33273332733327,46.69309571977627],[-53.33633336333362,46.701538606125695],[-53.34353343533435,46.71167006974497],[-53.347133471334715,46.71673580155462],[-53.35793357933579,46.71335864701487],[-53.372333723337235,46.70491576066544],[-53.39033390333903,46.682964256156964],[-53.38313383133831,46.69816145158592],[-53.35433354333543,46.7386873060631],[-53.372333723337235,46.73531015152332],[-53.39033390333903,46.723490110634145],[-53.41553415534155,46.69816145158592],[-53.43353433534335,46.688029987966615],[-53.44073440734407,46.68127567888709],[-53.447934479344795,46.66438990618826],[-53.45873458734587,46.65932417437861],[-53.473134731347315,46.655947019838834],[-53.48033480334803,46.652569865299085],[-53.51993519935199,46.62892978352073],[-53.55593555935559,46.61879831990143],[-53.58833588335882,46.625552628980955],[-53.624336243362436,46.655947019838834],[-53.627936279362785,46.66270132891839],[-53.63513635136351,46.68634141069674],[-53.63513635136351,46.69478429704614],[-53.63513635136351,46.71167006974497],[-53.61713617136171,46.74037588333297],[-53.60633606336063,46.75557307876193],[-53.602736027360265,46.76401596511133],[-53.602736027360265,46.77583600600053],[-53.60633606336063,46.785967469619806],[-53.60993609936099,46.79778751050898],[-53.599135991359915,46.812984705937936],[-53.5631356313563,46.84675625133559],[-53.552335523355225,46.865330601304294],[-53.54513545135451,46.87883921946337],[-53.498334983349835,46.88728210581277],[-53.48393483934839,46.902479301241726],[-53.498334983349835,46.89910214670195],[-53.53073530735307,46.8940364148923],[-53.54513545135451,46.8855935285429],[-53.60993609936099,46.81467328320781],[-53.63513635136351,46.799476087778885],[-53.64233642336423,46.79609893323911],[-53.64593645936459,46.80116466504876],[-53.63873638736386,46.82818190136689],[-53.63513635136351,46.83831336498619],[-53.627936279362785,46.848444828605466],[-53.62073620736207,46.85857629222477],[-53.61353613536134,46.86870775584407],[-53.60633606336063,46.8957249921622],[-53.599135991359915,46.905856455781475],[-53.548735487354875,46.927807960289954],[-53.51993519935199,46.94469373298878],[-53.51993519935199,46.96495666022739],[-53.53073530735307,46.95313661933821],[-53.54153541535415,46.94469373298878],[-53.55593555935559,46.94131657844903],[-53.56673566735667,46.94300515571891],[-53.5631356313563,46.95313661933821],[-53.5631356313563,46.96157950568761],[-53.5631356313563,46.97002239203704],[-53.56673566735667,46.97846527838644],[-53.573935739357395,46.97846527838644],[-53.577535775357745,46.97171096930691],[-53.58833588335882,46.95313661933821],[-53.59193591935919,46.94975946479843],[-53.599135991359915,46.95144804206831],[-53.60993609936099,46.95313661933821],[-53.61353613536134,46.95820235114786],[-53.61353613536134,46.968333814767135],[-53.599135991359915,46.986908164735866],[-53.60993609936099,46.99197389654552],[-53.64233642336423,46.98521958746596],[-53.624336243362436,47.01392540105397],[-53.60633606336063,47.035876905562446],[-53.577535775357745,47.0595169873408],[-53.57033570335703,47.07302560549988],[-53.58113581135811,47.08146849184928],[-53.5631356313563,47.09835426454811],[-53.51273512735126,47.12368292359636],[-53.498334983349835,47.13550296448554],[-53.51633516335163,47.13550296448554],[-53.523535235352355,47.14394585083494],[-53.527135271352705,47.155765891724116],[-53.51993519935199,47.169274509883195],[-53.53433534335343,47.16758593261329],[-53.55593555935559,47.15745446899402],[-53.57033570335703,47.155765891724116],[-53.573935739357395,47.16252020080367],[-53.5631356313563,47.19291459166155],[-53.55953559535595,47.204734632550725],[-53.59553595535955,47.14563442810484],[-53.61713617136171,47.11861719178671],[-53.649536495364956,47.10848572816741],[-53.63513635136351,47.14563442810484],[-53.627936279362785,47.155765891724116],[-53.64233642336423,47.15238873718437],[-53.649536495364956,47.147323005374716],[-53.65673656736567,47.13888011902529],[-53.66393663936638,47.128748655406014],[-53.678336783367826,47.09159995546858],[-53.68193681936819,47.08991137819871],[-53.69633696336963,47.084845646389056],[-53.703537035370346,47.07809133730953],[-53.69633696336963,47.0696484509601],[-53.703537035370346,47.0612055646107],[-53.725137251372516,47.04600836918175],[-53.735937359373594,47.044319791911875],[-53.75753757537575,47.04263121464197],[-53.76833768337683,47.03925406010222],[-53.775537755377556,47.0324997510227],[-53.81873818738187,46.96326808295751],[-53.825938259382596,46.95820235114786],[-53.861938619386194,46.94807088752856],[-53.86913869138691,46.94300515571891],[-53.87273872738727,46.937939423909256],[-53.876338763387636,46.91767649667068],[-53.88353883538835,46.90923361032125],[-53.890738907389064,46.9041678785116],[-53.912339123391234,46.892347837622424],[-53.93393933939339,46.8855935285429],[-53.941139411394104,46.87883921946337],[-53.941139411394104,46.86870775584407],[-53.94833948339483,46.85857629222477],[-53.955539555395546,46.85351056041512],[-53.991539915399144,46.848444828605466],[-54.00234002340022,46.843379096795815],[-54.02754027540274,46.821427592287364],[-54.041940419404185,46.812984705937936],[-54.04914049140491,46.807918974128285],[-54.05994059940599,46.80623039685841],[-54.07434074340743,46.80623039685841],[-54.08154081540815,46.80623039685841],[-54.092340923409225,46.80116466504876],[-54.09954099540995,46.80116466504876],[-54.1031410314103,46.80285324231863],[-54.113941139411395,46.81129612866806],[-54.117541175411745,46.812984705937936],[-54.17154171541715,46.821427592287364],[-54.18594185941859,46.82649332409699],[-54.189541895418955,46.82818190136689],[-54.189541895418955,46.83324763317654],[-54.19674196741967,46.86364202403442],[-54.19674196741967,46.8855935285429],[-54.193141931419305,46.90754503305138],[-54.18594185941859,46.927807960289954],[-54.164341643416435,46.96495666022739],[-54.16074160741607,46.973399546576786],[-54.15714157141571,46.995351051085265],[-54.14994149941499,47.00548251470457],[-54.113941139411395,47.04263121464197],[-54.09954099540995,47.0595169873408],[-54.041940419404185,47.1794059735025],[-54.02394023940239,47.20135747801095],[-54.02034020340203,47.209800364360376],[-54.016740167401665,47.22330898251943],[-54.00954009540095,47.23344044613873],[-54.00234002340022,47.23850617794838],[-53.9519395193952,47.231751868868855],[-53.930339303393026,47.235129023408604],[-53.94473944739447,47.24188333248816],[-53.96993969939699,47.25032621883756],[-53.987939879398795,47.262146259726734],[-53.99513995139951,47.272277723346036],[-53.99873998739987,47.280720609695436],[-53.99873998739987,47.30436069147382],[-53.99513995139951,47.31786930963287],[-53.987939879398795,47.31955788690274],[-53.96993969939699,47.31449215509309],[-53.96993969939699,47.31280357782322],[-53.97353973539735,47.30942642328344],[-53.97713977139772,47.307737846013566],[-53.962739627396274,47.302672114203915],[-53.937539375393754,47.30436069147382],[-53.92313923139231,47.31280357782322],[-53.92313923139231,47.32800077325217],[-53.89433894338943,47.33982081414135],[-53.88353883538835,47.34826370049075],[-53.876338763387636,47.36177231864983],[-53.901539015390156,47.36177231864983],[-53.915939159391584,47.3634608959197],[-53.912339123391234,47.373592359539],[-53.89433894338943,47.392166709507705],[-53.876338763387636,47.405675327666756],[-53.854738547385466,47.414118214016185],[-53.80793807938079,47.42424967763549],[-53.80793807938079,47.43100398671501],[-53.829538295382946,47.42931540944511],[-53.836738367383674,47.43100398671501],[-53.84753847538475,47.43775829579454],[-53.851138511385116,47.44282402760419],[-53.84753847538475,47.44451260487406],[-53.901539015390156,47.43100398671501],[-53.90873908739087,47.43438114125476],[-53.912339123391234,47.44282402760419],[-53.91953919539195,47.44788975941384],[-53.92313923139231,47.454644068493366],[-53.91953919539195,47.46139837757289],[-53.90873908739087,47.47321841846207],[-53.905139051390506,47.47997272754159],[-53.905139051390506,47.48841561389102],[-53.89793897938979,47.503612809319975],[-53.887138871388714,47.517121427479026],[-53.887138871388714,47.52725289109833],[-53.905139051390506,47.534007200177854],[-53.890738907389064,47.57791020919481],[-53.89433894338943,47.59817313643339],[-53.905139051390506,47.61674748640209],[-53.90873908739087,47.61674748640209],[-53.91953919539195,47.60830460005269],[-53.92313923139231,47.609993177322565],[-53.926739267392676,47.61337033186234],[-53.930339303393026,47.62012464094187],[-53.93393933939339,47.62519037275152],[-53.941139411394104,47.63532183637082],[-53.94473944739447,47.64883045452987],[-53.94473944739447,47.664027649958825],[-53.941139411394104,47.67415911357813],[-53.94833948339483,47.68091342265765],[-53.96993969939699,47.74339078164331],[-53.96993969939699,47.748456513452965],[-53.966339663396624,47.75183366799271],[-53.966339663396624,47.756899399802364],[-53.96993969939699,47.761965131612016],[-53.97353973539735,47.76534228615179],[-53.980739807398066,47.761965131612016],[-53.987939879398795,47.75858797707224],[-53.991539915399144,47.75858797707224],[-54.00234002340022,47.770408017961415],[-54.00954009540095,47.7940480997398],[-54.013140131401315,47.80755671789885],[-54.00594005940059,47.8210653360579],[-54.041940419404185,47.8024909860892],[-54.05994059940599,47.80080240881932],[-54.07434074340743,47.81431102697837],[-54.07434074340743,47.8210653360579],[-54.07074070740707,47.82613106786755],[-54.063540635406355,47.82781964513745],[-54.05994059940599,47.82781964513745],[-54.063540635406355,47.832885376947075],[-54.067140671406705,47.841328263296504],[-54.07074070740707,47.851459726915806],[-54.07794077940778,47.85652545872546],[-54.08154081540815,47.86327976780498],[-54.08154081540815,47.87509980869416],[-54.092340923409225,47.86327976780498],[-54.09954099540995,47.83795110875673],[-54.11034110341103,47.82781964513745],[-54.12474124741247,47.82781964513745],[-54.142741427414265,47.83626253148685],[-54.164341643416435,47.854836881455554],[-54.167941679416785,47.859902613265206],[-54.167941679416785,47.87172265415438],[-54.17154171541715,47.87509980869416],[-54.17874178741786,47.87847696323391],[-54.20394203942038,47.88354269504356],[-54.265142651426515,47.903805622282164],[-54.25434254342542,47.886919849583336],[-54.23274232742327,47.881854117773685],[-54.21114211142111,47.87847696323391],[-54.19674196741967,47.87003407688451],[-54.193141931419305,47.85314830418568],[-54.19674196741967,47.832885376947075],[-54.22554225542255,47.77209659523132],[-54.25074250742507,47.729882163484234],[-54.27954279542794,47.69779919535648],[-54.31194311943119,47.70117634989623],[-54.32634326343263,47.70961923624566],[-54.32994329943298,47.69611061808658],[-54.32274322743227,47.667404804498574],[-54.32634326343263,47.64714187726],[-54.351543515435154,47.61843606367199],[-54.3551435514355,47.604927445512914],[-54.36234362343623,47.59141882735386],[-54.394743947439466,47.55933585922608],[-54.41274412744127,47.53063004563808],[-54.427144271442714,47.517121427479026],[-54.45954459544595,47.5002356547802],[-54.455944559445584,47.49348134570067],[-54.455944559445584,47.49179276843077],[-54.452344523445234,47.48841561389102],[-54.445144451444506,47.485038459351244],[-54.43794437944379,47.5002356547802],[-54.430744307443064,47.48672703662115],[-54.42354423544235,47.47152984119219],[-54.416344163441636,47.45970980030302],[-54.401944019440194,47.45126691395359],[-54.43794437944379,47.42931540944511],[-54.452344523445234,47.42424967763549],[-54.445144451444506,47.43775829579454],[-54.445144451444506,47.449578336683714],[-54.452344523445234,47.454644068493366],[-54.466744667446676,47.45126691395359],[-54.477544775447754,47.44282402760419],[-54.495544955449546,47.41580679128606],[-54.506345063450624,47.40229817312701],[-54.49914499144991,47.39892101858723],[-54.491944919449196,47.39892101858723],[-54.48474484744847,47.40229817312701],[-54.481144811448104,47.41074105947641],[-54.47394473944739,47.40229817312701],[-54.506345063450624,47.3820352458884],[-54.52434524345243,47.37696951407875],[-54.527945279452794,47.38372382315828],[-54.578345783457834,47.360083741379924],[-54.607146071460704,47.351640855030524],[-54.61434614346143,47.36852662772935],[-54.61074610746107,47.37696951407875],[-54.57474574745747,47.39554386404748],[-54.43794437944379,47.55595870468633],[-54.41274412744127,47.601550290973165],[-54.41274412744127,47.604927445512914],[-54.416344163441636,47.609993177322565],[-54.43434434344343,47.59310740462374],[-54.47394473944739,47.54920439560681],[-54.502745027450274,47.53063004563808],[-54.542345423454236,47.46815268665242],[-54.603546035460354,47.41074105947641],[-54.657546575465744,47.38541240042818],[-54.66474664746647,47.37528093680888],[-54.671946719467186,47.38034666861853],[-54.67554675546755,47.38541240042818],[-54.679146791467915,47.392166709507705],[-54.679146791467915,47.40229817312701],[-54.68994689946899,47.39892101858723],[-54.69714697146971,47.392166709507705],[-54.704347043470435,47.38541240042818],[-54.71154711547115,47.37528093680888],[-54.704347043470435,47.373592359539],[-54.704347043470435,47.370215204999226],[-54.70074700747007,47.36683805045948],[-54.69714697146971,47.36177231864983],[-54.71154711547115,47.356706586840176],[-54.72234722347223,47.356706586840176],[-54.729547295472955,47.36177231864983],[-54.733147331473305,47.37528093680888],[-54.74754747547475,47.36683805045948],[-54.758347583475825,47.3634608959197],[-54.76914769147692,47.36683805045948],[-54.77274772747727,47.38372382315828],[-54.79794797947979,47.373592359539],[-54.808748087480865,47.370215204999226],[-54.82314823148231,47.36852662772935],[-54.79434794347944,47.39385528677758],[-54.783547835478345,47.41074105947641],[-54.78714787147871,47.42424967763549],[-54.80154801548015,47.422561100365584],[-54.81234812348123,47.40736390493666],[-54.82674826748267,47.37528093680888],[-54.84114841148411,47.38372382315828],[-54.84114841148411,47.39723244131736],[-54.833948339483385,47.41074105947641],[-54.82314823148231,47.42424967763549],[-54.83754837548375,47.419183945825836],[-54.84834848348483,47.40736390493666],[-54.86634866348663,47.38034666861853],[-54.880748807488075,47.36683805045948],[-54.909549095490945,47.34657512322087],[-54.92394923949239,47.3347550823317],[-54.92754927549275,47.32631219598227],[-54.92754927549275,47.31955788690274],[-54.92754927549275,47.31111500055334],[-54.93834938349383,47.30436069147382],[-54.96714967149671,47.28747491877499],[-54.97434974349743,47.28578634150509],[-54.98874988749887,47.280720609695436],[-55.00315003150031,47.26552341426651],[-55.02835028350283,47.23850617794838],[-55.03915039150391,47.218243250709776],[-55.035550355503545,47.21148894163025],[-55.02115021150212,47.2081117870905],[-55.01395013950139,47.19460316893142],[-55.01755017550175,47.18447170531212],[-55.02835028350283,47.17265166442294],[-55.03915039150391,47.16252020080367],[-55.05355053550535,47.155765891724116],[-55.07515075150751,47.15745446899402],[-55.07515075150751,47.16758593261329],[-55.067950679506794,47.18447170531212],[-55.07155071550714,47.20135747801095],[-55.08955089550895,47.2064232098206],[-55.107551075510756,47.1979803234712],[-55.12555125551255,47.182783128042246],[-55.136351363513626,47.169274509883195],[-55.096750967509664,47.17096308715307],[-55.08955089550895,47.169274509883195],[-55.082350823508236,47.15914304626389],[-55.085950859508586,47.14901158264459],[-55.08955089550895,47.13888011902529],[-55.08955089550895,47.128748655406014],[-55.07155071550714,47.09497711000836],[-55.07515075150751,47.08146849184928],[-55.10395103951039,47.08146849184928],[-55.10035100351003,47.07640276003963],[-55.096750967509664,47.06458271915045],[-55.096750967509664,47.0595169873408],[-55.136351363513626,47.04769694645162],[-55.147151471514704,47.03756548283235],[-55.15075150751507,47.01561397832387],[-55.15435154351543,47.01223682378409],[-55.16515165151651,47.01561397832387],[-55.172351723517224,47.022368287403395],[-55.17955179551795,47.02574544194317],[-55.17955179551795,47.03756548283235],[-55.172351723517224,47.0612055646107],[-55.172351723517224,47.06795987369023],[-55.17955179551795,47.07471418276975],[-55.19035190351903,47.07471418276975],[-55.197551975519744,47.0696484509601],[-55.20115201152011,47.06289414188058],[-55.20115201152011,47.05613983280105],[-55.193951939519394,47.0324997510227],[-55.19035190351903,47.022368287403395],[-55.193951939519394,47.000416782894916],[-55.20115201152011,46.98015385565634],[-55.211952119521186,46.96495666022739],[-55.233552335523356,46.95820235114786],[-55.22995229952299,46.93625084663938],[-55.25155251552515,46.919365073940554],[-55.283952839528396,46.90754503305138],[-55.312753127531266,46.902479301241726],[-55.35955359553596,46.90923361032125],[-55.370353703537035,46.90923361032125],[-55.370353703537035,46.8957249921622],[-55.35955359553596,46.883904951273024],[-55.35955359553596,46.875462064923596],[-55.38475384753848,46.86870775584407],[-55.41715417154171,46.867019178574196],[-55.45315453154531,46.875462064923596],[-55.474754747547465,46.897413569432075],[-55.46395463954639,46.93118511482973],[-55.51075510755108,46.919365073940554],[-55.525155251552505,46.92105365121043],[-55.52875528755287,46.94300515571891],[-55.5359553595536,46.93456226936948],[-55.5359553595536,46.92611938302008],[-55.53955539555395,46.91598791940078],[-55.54315543155431,46.90923361032125],[-55.550355503555025,46.90079072397185],[-55.55395553955539,46.902479301241726],[-55.55755557555575,46.90754503305138],[-55.56115561155612,46.90923361032125],[-55.575555755557545,46.90754503305138],[-55.58275582755827,46.905856455781475],[-55.58995589955899,46.902479301241726],[-55.597155971559715,46.897413569432075],[-55.61515615156151,46.88221637400312],[-55.651156511565105,46.86870775584407],[-55.66915669156691,46.86364202403442],[-55.68355683556835,46.861953446764545],[-55.71595715957159,46.870396333113945],[-55.73035730357303,46.86870775584407],[-55.74115741157411,46.85519913768502],[-55.751957519575186,46.86364202403442],[-55.777157771577706,46.86870775584407],[-55.823958239582396,46.86870775584407],[-55.852758527585266,46.870396333113945],[-55.90675906759067,46.88728210581277],[-55.949959499594996,46.9041678785116],[-55.96795967959679,46.91767649667068],[-55.98235982359823,46.932873692099605],[-55.985959859598594,46.946382310258684],[-55.978759787597866,46.97002239203704],[-55.96435964359644,46.98859674200574],[-55.924759247592476,47.01899113286362],[-55.88875888758888,47.0595169873408],[-55.87075870758707,47.07471418276975],[-55.84555845558455,47.08146849184928],[-55.82035820358203,47.084845646389056],[-55.784357843578434,47.10173141908788],[-55.76275762757628,47.10848572816741],[-55.73755737557376,47.106797150897535],[-55.68355683556835,47.09497711000836],[-55.66915669156691,47.09835426454811],[-55.651156511565105,47.106797150897535],[-55.58275582755827,47.115240037246934],[-55.525155251552505,47.133814387215665],[-55.496354963549635,47.13550296448554],[-55.48555485554856,47.14056869629519],[-55.47835478354783,47.15070015991449],[-55.46755467554675,47.164208778073544],[-55.46395463954639,47.17265166442294],[-55.46035460354604,47.18109455077237],[-55.45315453154531,47.18447170531212],[-55.44235442354423,47.18616028258202],[-55.43155431554315,47.191226014391674],[-55.395553955539555,47.218243250709776],[-55.370353703537035,47.22837471432908],[-55.34155341553415,47.24694906429778],[-55.319953199531994,47.25539195064721],[-55.30195301953019,47.267211991536385],[-55.287552875528746,47.28578634150509],[-55.287552875528746,47.29591780512439],[-55.287552875528746,47.31786930963287],[-55.287552875528746,47.32800077325217],[-55.283952839528396,47.33982081414135],[-55.269552695526954,47.36177231864983],[-55.26595265952659,47.3719037822691],[-55.26595265952659,47.39554386404748],[-55.25515255152551,47.41074105947641],[-55.183151831518316,47.45970980030302],[-55.16515165151651,47.46815268665242],[-55.12915129151291,47.47321841846207],[-55.107551075510756,47.48334988208137],[-55.096750967509664,47.485038459351244],[-55.060750607506066,47.485038459351244],[-55.04635046350464,47.485038459351244],[-55.031950319503196,47.490104191160896],[-55.00315003150031,47.50192423205007],[-54.985149851498505,47.50698996385972],[-54.956349563495635,47.50698996385972],[-54.94914949149491,47.5103671183995],[-54.95274952749527,47.5289414683682],[-54.94194941949419,47.534007200177854],[-54.905949059490595,47.534007200177854],[-54.89154891548915,47.53569577744773],[-54.85194851948519,47.55933585922608],[-54.84474844748448,47.57115590011526],[-54.84114841148411,47.588041672814086],[-54.86274862748627,47.57284447738516],[-54.869948699487,47.57115590011526],[-54.87714877148771,47.58128736373456],[-54.86634866348663,47.588041672814086],[-54.85194851948519,47.606616022782816],[-54.84114841148411,47.61674748640209],[-54.830348303483035,47.62181321821174],[-54.779947799477995,47.64038756818047],[-54.75114751147511,47.64545329999012],[-54.74034740347403,47.650519031799746],[-54.72234722347223,47.66233907268892],[-54.71154711547115,47.667404804498574],[-54.69714697146971,47.67078195903835],[-54.71874718747188,47.675847690848],[-54.754747547475475,47.67078195903835],[-54.77274772747727,47.67078195903835],[-54.76554765547655,47.6842905771974],[-54.82674826748267,47.64376472272022],[-54.89154891548915,47.61843606367199],[-54.96354963549635,47.604927445512914],[-55.07155071550714,47.59817313643339],[-55.08955089550895,47.601550290973165],[-55.07875078750787,47.61843606367199],[-55.04635046350464,47.642076145450346],[-55.031950319503196,47.6572733408793],[-55.02835028350283,47.67415911357813],[-55.02115021150212,47.685979154467304],[-54.95274952749527,47.75183366799271],[-54.94194941949419,47.76871944069154],[-54.93834938349383,47.78729379066024],[-54.985149851498505,47.75014509072284],[-55.057150571505716,47.658961918149174],[-55.10395103951039,47.62181321821174],[-55.093150931509314,47.59986171370326],[-55.107551075510756,47.58466451827434],[-55.132751327513276,47.58297594100446],[-55.15075150751507,47.601550290973165],[-55.15075150751507,47.61337033186234],[-55.143551435514354,47.631944681831044],[-55.12915129151291,47.664027649958825],[-55.147151471514704,47.650519031799746],[-55.168751687516874,47.64038756818047],[-55.193951939519394,47.637010413640695],[-55.233552335523356,47.6555847636094],[-55.258752587525876,47.66065049541905],[-55.309153091530916,47.664027649958825],[-55.312753127531266,47.6657162272287],[-55.31635316353163,47.667404804498574],[-55.323553235532344,47.67078195903835],[-55.33075330753307,47.67078195903835],[-55.33075330753307,47.66909338176848],[-55.33075330753307,47.664027649958825],[-55.33435334353344,47.658961918149174],[-55.34155341553415,47.6555847636094],[-55.363153631536306,47.65389618633952],[-55.363153631536306,47.6572733408793],[-55.363153631536306,47.667404804498574],[-55.36675366753667,47.672470536308225],[-55.370353703537035,47.675847690848],[-55.373953739537384,47.677536268117876],[-55.37755377553775,47.68091342265765],[-55.37755377553775,47.685979154467304],[-55.373953739537384,47.68935630900705],[-55.370353703537035,47.691044886276956],[-55.370353703537035,47.694422040816704],[-55.363153631536306,47.699487772626355],[-55.35235352353523,47.70624208170588],[-55.348753487534864,47.71130781351553],[-55.363153631536306,47.71806212259506],[-55.35955359553596,47.72312785440471],[-55.35595355953559,47.73157074075414],[-55.36675366753667,47.73157074075414],[-55.373953739537384,47.729882163484234],[-55.38475384753848,47.72481643167458],[-55.39195391953919,47.71806212259506],[-55.38475384753848,47.71468496805531],[-55.38115381153811,47.70961923624566],[-55.37755377553775,47.70455350443601],[-55.38115381153811,47.70117634989623],[-55.39195391953919,47.69779919535648],[-55.399153991539904,47.69611061808658],[-55.40275402754027,47.70117634989623],[-55.409954099541,47.71130781351553],[-55.41715417154171,47.71806212259506],[-55.42795427954279,47.71975069986496],[-55.43155431554315,47.71468496805531],[-55.42795427954279,47.68260199992753],[-55.43155431554315,47.672470536308225],[-55.44235442354423,47.66065049541905],[-55.46395463954639,47.64038756818047],[-55.471154711547115,47.62687895002139],[-55.46035460354604,47.61674748640209],[-55.445954459544595,47.61843606367199],[-55.43515435154352,47.63025610456117],[-55.41715417154171,47.63363325910092],[-55.395553955539555,47.61674748640209],[-55.42795427954279,47.59479598189364],[-55.43155431554315,47.588041672814086],[-55.424354243542425,47.58466451827434],[-55.39195391953919,47.59479598189364],[-55.39195391953919,47.588041672814086],[-55.40275402754027,47.58297594100446],[-55.40275402754027,47.57791020919481],[-55.399153991539904,47.57284447738516],[-55.395553955539555,47.56777874557551],[-55.41715417154171,47.534007200177854],[-55.40275402754027,47.5204985820188],[-55.40635406354063,47.50192423205007],[-55.420754207542075,47.48334988208137],[-55.43875438754387,47.47152984119219],[-55.46035460354604,47.46477553211267],[-55.521555215552155,47.46477553211267],[-55.525155251552505,47.46139837757289],[-55.55395553955539,47.44451260487406],[-55.56115561155612,47.43438114125476],[-55.575555755557545,47.40905248220653],[-55.58275582755827,47.40229817312701],[-55.597155971559715,47.39892101858723],[-55.600756007560065,47.405675327666756],[-55.597155971559715,47.42424967763549],[-55.600756007560065,47.43944687306441],[-55.597155971559715,47.44620118214394],[-55.58995589955899,47.45126691395359],[-55.58995589955899,47.45802122303314],[-55.61155611556116,47.454644068493366],[-55.64395643956439,47.43944687306441],[-55.66555665556655,47.43775829579454],[-55.65835658356583,47.44451260487406],[-55.64395643956439,47.45126691395359],[-55.63675636756368,47.45802122303314],[-55.61155611556116,47.5002356547802],[-55.60435604356043,47.50698996385972],[-55.58995589955899,47.512055695669375],[-55.600756007560065,47.52725289109833],[-55.61875618756187,47.54245008652725],[-55.63675636756368,47.54582724106703],[-55.651156511565105,47.52725289109833],[-55.64395643956439,47.5289414683682],[-55.63675636756368,47.5289414683682],[-55.63315633156331,47.52725289109833],[-55.622356223562235,47.52725289109833],[-55.62955629556295,47.5188100047489],[-55.64035640356403,47.50698996385972],[-55.65475654756547,47.49685850024042],[-55.66555665556655,47.49179276843077],[-55.676356763567625,47.49516992297055],[-55.68715687156872,47.5002356547802],[-55.697956979569796,47.50698996385972],[-55.71235712357124,47.50698996385972],[-55.70515705157051,47.49348134570067],[-55.70515705157051,47.490104191160896],[-55.697956979569796,47.485038459351244],[-55.71595715957159,47.476595573001845],[-55.733957339573394,47.46815268665242],[-55.75555755557555,47.46139837757289],[-55.773557735577356,47.45802122303314],[-55.76275762757628,47.476595573001845],[-55.76275762757628,47.48672703662115],[-55.76635766357663,47.49179276843077],[-55.76995769957699,47.503612809319975],[-55.76635766357663,47.51543285020915],[-55.759157591575914,47.52725289109833],[-55.751957519575186,47.54076150925738],[-55.76995769957699,47.53063004563808],[-55.7879578795788,47.51374427293925],[-55.79515795157951,47.49348134570067],[-55.7879578795788,47.47828415027172],[-55.80595805958059,47.46139837757289],[-55.82035820358203,47.46477553211267],[-55.83835838358384,47.47321841846207],[-55.85635856358563,47.47828415027172],[-55.87075870758707,47.47321841846207],[-55.89235892358923,47.46139837757289],[-55.90675906759067,47.44788975941384],[-55.91755917559175,47.43775829579454],[-55.91755917559175,47.45802122303314],[-55.89235892358923,47.47828415027172],[-55.834758347583474,47.512055695669375],[-55.76995769957699,47.57284447738516],[-55.748357483574836,47.588041672814086],[-55.759157591575914,47.58635309554421],[-55.78075780757807,47.57622163192491],[-55.79155791557915,47.574533054655035],[-55.798757987579876,47.569467322845384],[-55.809558095580954,47.55933585922608],[-55.81675816758167,47.55595870468633],[-55.81675816758167,47.56777874557551],[-55.834758347583474,47.566090168305635],[-55.849158491584916,47.55764728195621],[-55.877958779587786,47.534007200177854],[-55.89235892358923,47.54076150925738],[-55.9139591395914,47.53231862290798],[-55.935559355593554,47.5188100047489],[-55.949959499594996,47.512055695669375],[-55.97155971559715,47.5103671183995],[-56.01836018360183,47.5002356547802],[-56.10476104761047,47.46646410938254],[-56.11916119161191,47.46815268665242],[-56.162361623616235,47.49179276843077],[-56.16956169561695,47.503612809319975],[-56.15156151561516,47.5204985820188],[-56.13356133561335,47.525564313828426],[-56.04716047160471,47.53569577744773],[-55.93915939159392,47.56777874557551],[-55.928359283592826,47.56777874557551],[-55.91755917559175,47.566090168305635],[-55.910359103591034,47.56777874557551],[-55.90675906759067,47.57115590011526],[-55.903159031590306,47.574533054655035],[-55.899558995589956,47.579598786464686],[-55.88155881558815,47.58466451827434],[-55.86355863558636,47.59817313643339],[-55.852758527585266,47.601550290973165],[-55.83115831158311,47.60323886824304],[-55.809558095580954,47.609993177322565],[-55.7879578795788,47.61843606367199],[-55.74115741157411,47.64545329999012],[-55.723157231572316,47.650519031799746],[-55.697956979569796,47.65389618633952],[-55.62955629556295,47.677536268117876],[-55.651156511565105,47.68260199992753],[-55.67995679956799,47.67922484538775],[-55.733957339573394,47.664027649958825],[-55.81315813158132,47.62519037275152],[-55.84195841958419,47.62181321821174],[-55.86715867158671,47.628567527291295],[-55.89595895958959,47.64038756818047],[-55.9139591395914,47.658961918149174],[-55.91755917559175,47.6842905771974],[-55.903159031590306,47.699487772626355],[-55.827558275582746,47.73832504983366],[-55.834758347583474,47.74339078164331],[-55.83835838358384,47.748456513452965],[-55.84195841958419,47.75183366799271],[-55.83835838358384,47.75858797707224],[-55.82035820358203,47.77209659523132],[-55.81675816758167,47.77716232704097],[-55.81675816758167,47.79573667700967],[-55.81315813158132,47.79911383154945],[-55.802358023580226,47.80080240881932],[-55.802358023580226,47.80755671789885],[-55.823958239582396,47.8210653360579],[-55.81675816758167,47.83963968602663],[-55.79515795157951,47.85821403599533],[-55.773557735577356,47.87003407688451],[-55.79515795157951,47.87847696323391],[-55.784357843578434,47.895362735932736],[-55.759157591575914,47.91224850863156],[-55.74115741157411,47.92406854952077],[-55.75555755557555,47.94602005402922],[-55.76635766357663,47.95446294037865],[-55.78075780757807,47.957840094918396],[-55.773557735577356,47.93251143587017],[-55.784357843578434,47.922379972250866],[-55.80595805958059,47.913937085901466],[-55.827558275582746,47.89705131320264],[-55.81675816758167,47.88860842685321],[-55.82035820358203,47.88016554050381],[-55.834758347583474,47.86327976780498],[-55.84555845558455,47.83626253148685],[-55.849158491584916,47.810933872438625],[-55.859958599585994,47.79067094520002],[-55.885158851588514,47.77716232704097],[-55.96795967959679,47.76027655434214],[-55.98955989559896,47.75183366799271],[-56.00756007560075,47.74001362710354],[-56.05076050760508,47.70455350443601],[-56.05796057960579,47.699487772626355],[-56.07236072360723,47.69779919535648],[-56.10116101161012,47.699487772626355],[-56.111961119611195,47.70455350443601],[-56.09756097560975,47.71130781351553],[-56.09756097560975,47.71806212259506],[-56.10476104761047,47.726505008944486],[-56.09396093960939,47.74339078164331],[-56.07236072360723,47.761965131612016],[-56.054360543605426,47.78053948158072],[-56.09036090360904,47.756899399802364],[-56.10116101161012,47.76027655434214],[-56.11556115561156,47.78053948158072],[-56.137161371613715,47.82613106786755],[-56.15156151561516,47.841328263296504],[-56.15516155161551,47.82613106786755],[-56.14796147961479,47.810933872438625],[-56.137161371613715,47.7940480997398],[-56.12996129961299,47.77716232704097],[-56.13356133561335,47.75521082253249],[-56.140761407614065,47.74170220437341],[-56.17316173161731,47.71806212259506],[-56.15876158761587,47.71806212259506],[-56.15156151561516,47.712996390785406],[-56.14436144361443,47.70624208170588],[-56.137161371613715,47.69779919535648],[-56.14796147961479,47.68766773173718],[-56.162361623616235,47.6842905771974],[-56.17676176761768,47.68260199992753],[-56.191161911619105,47.677536268117876],[-56.17676176761768,47.672470536308225],[-56.17316173161731,47.67078195903835],[-56.17676176761768,47.6657162272287],[-56.17676176761768,47.66233907268892],[-56.18036180361803,47.658961918149174],[-56.18396183961839,47.6555847636094],[-56.15876158761587,47.642076145450346],[-56.165961659616585,47.637010413640695],[-56.18036180361803,47.63025610456117],[-56.19476194761947,47.63025610456117],[-56.19836198361983,47.64038756818047],[-56.2019620196202,47.64883045452987],[-56.212762127621275,47.6555847636094],[-56.21996219962199,47.6555847636094],[-56.22716227162272,47.64714187726],[-56.23436234362343,47.631944681831044],[-56.25596255962559,47.62687895002139],[-56.30276302763028,47.628567527291295],[-56.29916299162991,47.64545329999012],[-56.29916299162991,47.6657162272287],[-56.29916299162991,47.685979154467304],[-56.288362883628835,47.69779919535648],[-56.30276302763028,47.70624208170588],[-56.30636306363063,47.71975069986496],[-56.30996309963099,47.75183366799271],[-56.313563135631355,47.73832504983366],[-56.317163171631705,47.721439277134834],[-56.32076320763207,47.707930658975755],[-56.33516335163351,47.70455350443601],[-56.33516335163351,47.69779919535648],[-56.313563135631355,47.685979154467304],[-56.30996309963099,47.66065049541905],[-56.32076320763207,47.63363325910092],[-56.33516335163351,47.61674748640209],[-56.36036360363603,47.60830460005269],[-56.389163891638916,47.606616022782816],[-56.464764647646476,47.61168175459247],[-56.49716497164971,47.62012464094187],[-56.515165151651516,47.62181321821174],[-56.565565655656556,47.61674748640209],[-56.67356673566735,47.62687895002139],[-56.69876698766987,47.62181321821174],[-56.68436684366843,47.61168175459247],[-56.651966519665194,47.59986171370326],[-56.63756637566375,47.588041672814086],[-56.66276662766627,47.58128736373456],[-56.669966699666986,47.57791020919481],[-56.677166771667714,47.57791020919481],[-56.70956709567095,47.588041672814086],[-56.720367203672026,47.59479598189364],[-56.745567455674546,47.62519037275152],[-56.752767527675275,47.637010413640695],[-56.75996759967599,47.63025610456117],[-56.76716767167672,47.62181321821174],[-56.752767527675275,47.61168175459247],[-56.745567455674546,47.596484559163514],[-56.73116731167312,47.58128736373456],[-56.7059670596706,47.574533054655035],[-56.7059670596706,47.56777874557551],[-56.72396723967239,47.561024436495984],[-56.777967779677795,47.534007200177854],[-56.79236792367924,47.53063004563808],[-56.803168031680315,47.539072931987505],[-56.81036810368103,47.539072931987505],[-56.81756817568176,47.53569577744773],[-56.82476824768247,47.534007200177854],[-56.84996849968499,47.53231862290798],[-56.85716857168572,47.53738435471763],[-56.84996849968499,47.55427012741643],[-56.87156871568715,47.54582724106703],[-56.89316893168932,47.547515818336905],[-56.91836918369184,47.55764728195621],[-56.93636936369363,47.57115590011526],[-56.9579695796958,47.58297594100446],[-56.98316983169832,47.58635309554421],[-57.119971199712,47.56777874557551],[-57.13437134371344,47.569467322845384],[-57.14517145171452,47.57284447738516],[-57.15957159571596,47.57791020919481],[-57.17037170371704,47.58466451827434],[-57.166771667716674,47.58973025008399],[-57.14877148771487,47.59986171370326],[-57.14517145171452,47.609993177322565],[-57.16317163171631,47.631944681831044],[-57.17037170371704,47.637010413640695],[-57.19557195571956,47.59817313643339],[-57.206372063720636,47.59479598189364],[-57.22077220772208,47.596484559163514],[-57.242372423724234,47.601550290973165],[-57.256772567725676,47.59986171370326],[-57.28917289172891,47.588041672814086],[-57.31437314373143,47.58297594100446],[-57.32517325173251,47.58635309554421],[-57.335973359733586,47.59479598189364],[-57.343173431734314,47.60830460005269],[-57.33957339573395,47.61843606367199],[-57.332373323733236,47.62519037275152],[-57.32877328773287,47.63363325910092],[-57.332373323733236,47.642076145450346],[-57.33957339573395,47.64376472272022],[-57.35037350373503,47.63869899091057],[-57.368373683736834,47.63532183637082],[-57.37557375573755,47.63025610456117],[-57.382773827738276,47.628567527291295],[-57.38997389973899,47.63025610456117],[-57.4079740797408,47.63532183637082],[-57.418774187741874,47.637010413640695],[-57.50517505175051,47.631944681831044],[-57.5339753397534,47.637010413640695],[-57.5339753397534,47.64376472272022],[-57.53037530375303,47.64714187726],[-57.53037530375303,47.650519031799746],[-57.544775447754475,47.64714187726],[-57.55557555575555,47.642076145450346],[-57.56637566375663,47.63532183637082],[-57.58077580775807,47.62519037275152],[-57.62757627576275,47.601550290973165],[-57.645576455764555,47.60323886824304],[-57.65637656376563,47.609993177322565],[-57.66717667176671,47.63363325910092],[-57.68157681576815,47.64038756818047],[-57.721177211772115,47.65389618633952],[-57.73557735577356,47.6555847636094],[-57.749977499775,47.650519031799746],[-57.75717757177571,47.63869899091057],[-57.75717757177571,47.62519037275152],[-57.76797767977679,47.61674748640209],[-57.7859778597786,47.631944681831044],[-57.78957789577895,47.637010413640695],[-57.796777967779676,47.63532183637082],[-57.807578075780754,47.628567527291295],[-57.81477814778147,47.628567527291295],[-57.82917829178291,47.637010413640695],[-57.83637836378364,47.64545329999012],[-57.847178471784716,47.65220760906965],[-57.86517865178651,47.6555847636094],[-57.87957879578795,47.6555847636094],[-57.91917919179191,47.650519031799746],[-57.90477904779047,47.67922484538775],[-57.89397893978939,47.691044886276956],[-57.883178831788314,47.69779919535648],[-57.91557915579155,47.69779919535648],[-57.92637926379264,47.694422040816704],[-57.92997929979299,47.68935630900705],[-57.933579335793354,47.68260199992753],[-57.94077940779407,47.677536268117876],[-57.95517955179551,47.672470536308225],[-58.00558005580055,47.677536268117876],[-58.009180091800914,47.68260199992753],[-58.02718027180272,47.694422040816704],[-58.04158041580415,47.69779919535648],[-58.059580595805954,47.675847690848],[-58.073980739807396,47.67415911357813],[-58.084780847808474,47.68091342265765],[-58.07038070380703,47.691044886276956],[-58.07038070380703,47.69779919535648],[-58.09918099180992,47.694422040816704],[-58.18918189181892,47.672470536308225],[-58.21438214382144,47.66065049541905],[-58.22878228782288,47.6555847636094],[-58.24318243182431,47.658961918149174],[-58.27918279182792,47.675847690848],[-58.29358293582935,47.67415911357813],[-58.30078300783008,47.6657162272287],[-58.32958329583295,47.64714187726],[-58.34038340383404,47.642076145450346],[-58.35478354783547,47.64883045452987],[-58.35478354783547,47.664027649958825],[-58.34758347583475,47.677536268117876],[-58.34038340383404,47.6842905771974],[-58.336783367833675,47.68935630900705],[-58.31518315183152,47.72819358621436],[-58.30438304383043,47.73663647256379],[-58.289982899829,47.74339078164331],[-58.27558275582756,47.75014509072284],[-58.261182611826115,47.75183366799271],[-58.32238322383223,47.75014509072284],[-58.35118351183512,47.74001362710354],[-58.37278372783727,47.71806212259506],[-58.387183871838715,47.675847690848],[-58.40158401584016,47.65389618633952],[-58.42678426784268,47.637010413640695],[-58.43398433984339,47.637010413640695],[-58.4519845198452,47.64545329999012],[-58.46998469984699,47.65220760906965],[-58.487984879848796,47.65220760906965],[-58.50958509585095,47.642076145450346],[-58.51678516785168,47.65389618633952],[-58.523985239852394,47.66233907268892],[-58.53118531185311,47.6657162272287],[-58.5419854198542,47.664027649958825],[-58.52758527585276,47.650519031799746],[-58.53478534785347,47.64545329999012],[-58.57078570785707,47.642076145450346],[-58.5779857798578,47.63532183637082],[-58.60318603186032,47.62012464094187],[-58.62838628386284,47.61168175459247],[-58.639186391863916,47.62519037275152],[-58.64638646386463,47.62687895002139],[-58.7039870398704,47.601550290973165],[-58.76878768787688,47.596484559163514],[-58.919989199892,47.601550290973165],[-58.952389523895235,47.59141882735386],[-58.96318963189631,47.58128736373456],[-58.97038970389704,47.58128736373456],[-58.977589775897755,47.58635309554421],[-58.98838988389883,47.588041672814086],[-58.99918999189991,47.58466451827434],[-59.02079020790208,47.57622163192491],[-59.03159031590316,47.574533054655035],[-59.11079110791107,47.561024436495984],[-59.14679146791468,47.561024436495984],[-59.16479164791647,47.56440159103573],[-59.189991899918994,47.57791020919481],[-59.204392043920436,47.57791020919481],[-59.215192151921514,47.574533054655035],[-59.22599225992259,47.574533054655035],[-59.240392403924034,47.58297594100446],[-59.24759247592476,47.59479598189364],[-59.254792547925476,47.604927445512914],[-59.27279272792728,47.609993177322565],[-59.28719287192871,47.609993177322565],[-59.30159301593015,47.61337033186234],[-59.30879308793088,47.62181321821174],[-59.30159301593015,47.637010413640695],[-59.31239312393123,47.66233907268892],[-59.30879308793088,47.699487772626355],[-59.29439294392944,47.734947895293885],[-59.28359283592836,47.75858797707224],[-59.31239312393123,47.761965131612016],[-59.32679326793267,47.77378517250119],[-59.330393303933036,47.7940480997398],[-59.330393303933036,47.81768818151815],[-59.33759337593375,47.8227539133278],[-59.35919359193592,47.832885376947075],[-59.366393663936634,47.83795110875673],[-59.366393663936634,47.84808257237603],[-59.369993699937,47.854836881455554],[-59.39879398793987,47.88016554050381],[-59.40239402394023,47.886919849583336],[-59.405994059940596,47.89705131320264],[-59.40239402394023,47.908871354091815],[-59.39519395193952,47.91562566317134],[-59.38439384393844,47.92069139498099],[-59.37719377193771,47.92744570406052],[-59.366393663936634,47.930822858600294],[-59.355593555935556,47.93251143587017],[-59.3339933399334,47.930822858600294],[-59.31959319593196,47.93420001314004],[-59.31239312393123,47.94264289948947],[-59.30879308793088,47.95446294037865],[-59.30159301593015,47.96459440399795],[-59.240392403924034,48.01525172209443],[-59.16839168391684,48.05915473111136],[-59.002790027900275,48.123320667366926],[-58.97038970389704,48.14189501733563],[-58.90918909189091,48.19930664451164],[-58.85518855188552,48.216192417210465],[-58.84078840788408,48.22801245809964],[-58.81558815588156,48.25334111714787],[-58.79758797587975,48.265161158037046],[-58.739987399873996,48.29386697162508],[-58.72198721987219,48.305687012514255],[-58.68238682386823,48.344524289721534],[-58.67878678786788,48.35296717607096],[-58.675186751867514,48.37323010330954],[-58.6679866798668,48.38336156692884],[-58.65718657186571,48.38673872146862],[-58.63558635586355,48.390115876008366],[-58.62838628386284,48.39349303054814],[-58.599585995859954,48.42051026686627],[-58.57078570785707,48.44077319410485],[-58.53478534785347,48.45428181226393],[-58.49518495184951,48.45765896680368],[-58.49518495184951,48.45090465772415],[-58.523985239852394,48.44077319410485],[-58.55278552785528,48.434018885025324],[-58.5779857798578,48.42388742140602],[-58.60318603186032,48.403624494167445],[-58.58518585185851,48.40531307143732],[-58.53478534785347,48.42388742140602],[-58.487984879848796,48.434018885025324],[-58.47358473584735,48.4373960395651],[-58.45918459184591,48.44921608045428],[-58.43398433984339,48.47961047131216],[-58.41958419584195,48.493119089471236],[-58.40518405184051,48.496496244010984],[-58.34038340383404,48.510004862170064],[-58.30798307983079,48.51169343943994],[-58.289982899829,48.51338201670981],[-58.27198271982719,48.52013632578934],[-58.27558275582756,48.52689063486889],[-58.289982899829,48.531956366678514],[-58.311583115831155,48.53364494394842],[-58.37638376383764,48.52520205759899],[-58.412384123841235,48.51507059397969],[-58.43398433984339,48.49987339855076],[-58.44838448384483,48.51338201670981],[-58.46998469984699,48.51507059397969],[-58.52038520385203,48.50662770763029],[-58.5419854198542,48.51169343943994],[-58.574385743857434,48.537022098488166],[-58.59598595985959,48.54715356210747],[-58.7039870398704,48.55390787118699],[-58.725587255872554,48.55221929391712],[-58.83718837188371,48.52520205759899],[-58.93798937989379,48.51675917124959],[-59.03159031590316,48.52013632578934],[-59.078390783907835,48.51507059397969],[-59.23679236792367,48.47285616223263],[-59.26199261992619,48.47285616223263],[-59.25839258392584,48.47961047131216],[-59.24759247592476,48.49143051220133],[-59.240392403924034,48.49987339855076],[-59.23319233192332,48.51338201670981],[-59.23679236792367,48.523513480329115],[-59.22599225992259,48.54039925302794],[-59.2079920799208,48.555596448456896],[-59.11439114391143,48.60963092109313],[-58.97038970389704,48.675485434618565],[-58.80478804788048,48.77173433900188],[-58.76878768787688,48.78017722535128],[-58.79038790387904,48.759914298112705],[-58.81558815588156,48.73627421633432],[-58.84078840788408,48.719388443635495],[-58.86958869588696,48.71263413455597],[-58.88758887588875,48.70250267093667],[-58.919989199892,48.678862589158314],[-58.94878948789487,48.65184535284018],[-58.95958959589595,48.62989384833173],[-58.95958959589595,48.616385230172654],[-58.952389523895235,48.607942343823254],[-58.927189271892715,48.59612230293408],[-58.89838898388983,48.585990839314775],[-58.89838898388983,48.57923653023525],[-58.89838898388983,48.55728502572677],[-58.89118891188912,48.55390787118699],[-58.876788767887675,48.564039334806296],[-58.85518855188552,48.585990839314775],[-58.84798847988479,48.59612230293408],[-58.84798847988479,48.607942343823254],[-58.851588515885155,48.63664815741126],[-58.84438844388444,48.63664815741126],[-58.84078840788408,48.607942343823254],[-58.84078840788408,48.59781088020395],[-58.83718837188371,48.58767941658465],[-58.82278822788227,48.57923653023525],[-58.81198811988119,48.57079364388582],[-58.7939879398794,48.56572791207617],[-58.765187651876516,48.56235075753642],[-58.73278732787327,48.564039334806296],[-58.714787147871476,48.56741648934607],[-58.68598685986859,48.60118803474373],[-58.67878678786788,48.643402466490784],[-58.67878678786788,48.68561689823784],[-58.6679866798668,48.72614275271505],[-58.624786247862474,48.77511149354163],[-58.61038610386103,48.81057161620916],[-58.59238592385924,48.82745738890799],[-58.55638556385563,48.85616320249599],[-58.549185491854914,48.86460608884542],[-58.54558545585455,48.871360397924946],[-58.53478534785347,48.88993474789365],[-58.52758527585276,48.915263406941904],[-58.52038520385203,48.92708344783108],[-58.513185131851316,48.93046060237083],[-58.50238502385024,49.00644657951557],[-58.45558455584555,49.0419067021831],[-58.44478444784447,49.05710389761205],[-58.41958419584195,49.116204102057935],[-58.39798397983979,49.13646702929654],[-58.36918369183691,49.14997564745559],[-58.361983619836195,49.151664224725465],[-58.34758347583475,49.14490991564594],[-58.34758347583475,49.13140129748689],[-58.35478354783547,49.116204102057935],[-58.37278372783727,49.10944979297841],[-58.34398343983439,49.10944979297841],[-58.34398343983439,49.102695483898884],[-58.35838358383583,49.094252597549456],[-58.36558365583656,49.08412113393018],[-58.36918369183691,49.07230109304098],[-58.35838358383583,49.0621696294217],[-58.34398343983439,49.0604810521518],[-58.30798307983079,49.07230109304098],[-58.29358293582935,49.07398967031088],[-58.21438214382144,49.07398967031088],[-58.17478174781748,49.067235361231354],[-58.14598145981459,49.04697243399275],[-58.09918099180992,48.996315115896266],[-58.07038070380703,48.97942934319744],[-57.91917919179191,48.96254357049861],[-57.883178831788314,48.97267503411791],[-57.908379083790834,48.982806497737215],[-58.009180091800914,48.982806497737215],[-58.04518045180451,48.996315115896266],[-58.059580595805954,49.00813515678544],[-58.09558095580955,49.026709506754145],[-58.10638106381063,49.03684097037345],[-58.12438124381244,49.07398967031088],[-58.13158131581315,49.08749828846993],[-58.135181351813515,49.094252597549456],[-58.13878138781388,49.10607263843863],[-58.135181351813515,49.12633556567724],[-58.1279812798128,49.13477845202664],[-58.109981099810994,49.13477845202664],[-58.059580595805954,49.12802414294711],[-58.0019800198002,49.13646702929654],[-57.933579335793354,49.12633556567724],[-57.9119791197912,49.129712720217015],[-57.90117901179012,49.138155606566414],[-57.85077850778508,49.18374719285325],[-57.857978579785794,49.192190079202675],[-57.89397893978939,49.165172842884544],[-57.91557915579155,49.15504137926524],[-57.94077940779407,49.151664224725465],[-57.96957969579695,49.15504137926524],[-57.96957969579695,49.165172842884544],[-57.95157951579516,49.17699288377372],[-57.92637926379264,49.18374719285325],[-57.92637926379264,49.192190079202675],[-58.023580235802356,49.156729956535116],[-58.08118081180811,49.14659849291584],[-58.109981099810994,49.170238574694196],[-58.09918099180992,49.18205861558337],[-58.01638016380163,49.178681461043595],[-57.99117991179911,49.18712434739302],[-57.96597965979659,49.20401012009185],[-57.92637926379264,49.24622455183891],[-57.947979479794796,49.241158820029256],[-57.98757987579876,49.2259616246003],[-58.009180091800914,49.21920731552078],[-58.034380343803434,49.2175187382509],[-58.13878138781388,49.227650201870205],[-58.19278192781927,49.24284739729913],[-58.21438214382144,49.25297886091843],[-58.22878228782288,49.268176056347386],[-58.235982359823595,49.285061829046214],[-58.235982359823595,49.303636179014916],[-58.22878228782288,49.37117926981023],[-58.210782107821075,49.410016547017534],[-58.185581855818555,49.44209951514529],[-58.13878138781388,49.48431394689237],[-58.09198091980919,49.51470833775025],[-58.059580595805954,49.526528378639426],[-58.023580235802356,49.55354561495756],[-58.0019800198002,49.561988501306985],[-57.96597965979659,49.56029992403708],[-57.94077940779407,49.548479883147905],[-57.91917919179191,49.53159411044908],[-57.9119791197912,49.5096426059406],[-57.9119791197912,49.48431394689237],[-57.908379083790834,49.458985287844115],[-57.897578975789756,49.43872236060554],[-57.872378723787236,49.43027947425611],[-57.897578975789756,49.47418248327307],[-57.897578975789756,49.49275683324177],[-57.872378723787236,49.50626545140085],[-57.84357843578435,49.50626545140085],[-57.81837818378183,49.49444541051167],[-57.78957789577895,49.47924821508272],[-57.76077760777608,49.46573959692367],[-57.73557735577356,49.46067386511402],[-57.70317703177031,49.458985287844115],[-57.69957699576996,49.46236244238389],[-57.71397713977139,49.472493906003194],[-57.796777967779676,49.5096426059406],[-57.81837818378183,49.5299055331792],[-57.821978219782196,49.561988501306985],[-57.832778327783274,49.55185703768768],[-57.84357843578435,49.5383484195286],[-57.85437854378543,49.52821695590933],[-57.872378723787236,49.526528378639426],[-57.8759787597876,49.53159411044908],[-57.883178831788314,49.54172557406838],[-57.89037890378903,49.55185703768768],[-57.89037890378903,49.55861134676721],[-57.89397893978939,49.56705423311661],[-57.90477904779047,49.575497119466036],[-57.92637926379264,49.58900573762509],[-57.922779227792276,49.59238289216486],[-57.922779227792276,49.597448623974515],[-57.91917919179191,49.59913720124439],[-57.91917919179191,49.60420293305404],[-57.94437944379443,49.61433439667334],[-57.95157951579516,49.64472878753122],[-57.947979479794796,49.68018891019875],[-57.94077940779407,49.70551756924701],[-57.9119791197912,49.752797732803714],[-57.897578975789756,49.76799492823267],[-57.89037890378903,49.77306066004232],[-57.872378723787236,49.78319212366159],[-57.86517865178651,49.788257855471244],[-57.86157861578616,49.7950121645508],[-57.86157861578616,49.80514362817007],[-57.857978579785794,49.8135865145195],[-57.85077850778508,49.8220294008689],[-57.85077850778508,49.833849441758076],[-57.82557825578256,49.86255525534608],[-57.81117811178112,49.896326800743736],[-57.77517775177752,49.92840976887152],[-57.76077760777608,49.945295541570346],[-57.73197731977319,50.00608432328613],[-57.69957699576996,50.043233023223536],[-57.659976599766,50.10908753674897],[-57.60957609576096,50.16649916392498],[-57.60237602376023,50.181696359353936],[-57.60237602376023,50.203647863862386],[-57.595175951759515,50.22391079110099],[-57.569975699756995,50.26781380011795],[-57.53757537575375,50.30833965459513],[-57.52677526775267,50.33029115910361],[-57.52317523175232,50.35393124088196],[-57.52317523175232,50.35561981815184],[-57.52677526775267,50.35730839542171],[-57.52677526775267,50.36068554996149],[-57.53037530375303,50.36743985904101],[-57.52677526775267,50.37081701358079],[-57.52317523175232,50.372505590850665],[-57.51597515975159,50.37419416812054],[-57.51237512375123,50.38939136354949],[-57.494374943749435,50.42485148621702],[-57.469174691746915,50.448491567995376],[-57.46557465574655,50.45862303161468],[-57.46197461974619,50.475508804313506],[-57.45837458374584,50.48226311339303],[-57.443974439744395,50.492394577012334],[-57.40437404374043,50.519411813330464],[-57.386373863738626,50.54980620418834],[-57.37557375573755,50.58020059504625],[-57.35397353973539,50.60721783136435],[-57.317973179731794,50.617349294983654],[-57.23877238772387,50.60046352228483],[-57.19917199171991,50.59708636774508],[-57.16317163171631,50.613972140443906],[-57.155971559715596,50.62579218133308],[-57.166771667716674,50.62916933587283],[-57.23877238772387,50.617349294983654],[-57.256772567725676,50.617349294983654],[-57.27477274772747,50.62410360406318],[-57.27477274772747,50.630857913142734],[-57.267572675726754,50.630857913142734],[-57.256772567725676,50.630857913142734],[-57.24957249572495,50.63423506768248],[-57.23877238772387,50.63761222222226],[-57.25317253172531,50.65112084038131],[-57.29997299972999,50.649432263111436],[-57.310773107731066,50.66800661308014],[-57.32157321573216,50.68658096304884],[-57.35037350373503,50.69164669485849],[-57.382773827738276,50.69164669485849],[-57.39717397173972,50.69840100393802],[-57.39717397173972,50.70853246755732],[-57.386373863738626,50.715286776636844],[-57.357573575735756,50.7220410857164],[-57.35037350373503,50.72541824025615],[-57.343173431734314,50.72710681752602],[-57.335973359733586,50.72541824025615],[-57.335973359733586,50.715286776636844],[-57.32877328773287,50.71359819936697],[-57.285572855728546,50.720352508446496],[-57.23877238772387,50.733861126605575],[-57.21357213572135,50.7507468993044],[-57.206372063720636,50.75412405384415],[-57.19557195571956,50.75412405384415],[-57.166771667716674,50.75243547657428],[-57.155971559715596,50.75750120838393],[-57.13797137971379,50.77100982654298],[-57.09117091170911,50.78789559924181],[-57.06957069570696,50.801404217400886],[-57.06237062370623,50.809847103750286],[-57.05157051570515,50.82842145371899],[-57.04077040770407,50.836864340068416],[-57.01557015570155,50.85206153549734],[-56.9939699396994,50.867258730926295],[-56.98676986769867,50.87401304000582],[-56.97596975969759,50.880767349085346],[-56.97236972369723,50.894275967244425],[-56.97236972369723,50.91285031721313],[-56.96516965169651,50.914538894483],[-56.954369543695435,50.90947316267338],[-56.93996939969399,50.91116173994325],[-56.92556925569255,50.91791604902278],[-56.93276932769328,50.92804751264208],[-56.93996939969399,50.93311324445173],[-56.96156961569615,50.93986755353126],[-56.97236972369723,50.93142466718183],[-56.979569795697955,50.93480182172161],[-56.98676986769867,50.94155613080113],[-56.9939699396994,50.94999901715056],[-56.98316983169832,50.956753326230086],[-56.96156961569615,50.96688478984939],[-56.97596975969759,50.97363909892891],[-57.01557015570155,50.97195052165904],[-57.03357033570336,50.98039340800844],[-57.03717037170371,50.98545913981809],[-57.04437044370444,51.00234491251692],[-57.04797047970479,51.00741064432657],[-57.05877058770588,51.014164953406095],[-57.06597065970659,51.019230685215746],[-57.07677076770767,51.02091926248562],[-57.09117091170911,51.02091926248562],[-57.06957069570696,51.027673571565145],[-57.01197011970119,51.02091926248562],[-57.004770047700475,51.01247637613622],[-56.9939699396994,50.99727918070727],[-56.979569795697955,50.987147717087964],[-56.9579695796958,50.99727918070727],[-56.91836918369184,51.00909922159644],[-56.90036900369003,51.01754210794587],[-56.903969039690395,51.036116457914574],[-56.92196921969219,51.0428707669941],[-56.96156961569615,51.046247921533876],[-56.979569795697955,51.054690807883276],[-56.93996939969399,51.054690807883276],[-56.903969039690395,51.0614451169628],[-56.87516875168751,51.07833088966163],[-56.86436864368643,51.11379101232916],[-56.853568535685355,51.11885674413881],[-56.81036810368103,51.13067678502799],[-56.79596795967959,51.13743109410754],[-56.78876788767887,51.14925113499672],[-56.78876788767887,51.161071175885894],[-56.81036810368103,51.19315414401365],[-56.78156781567816,51.206662762172726],[-56.77436774367743,51.201597030363075],[-56.76716767167672,51.1999084530932],[-56.745567455674546,51.1999084530932],[-56.75636756367564,51.21172849398238],[-56.76716767167672,51.22185995760165],[-56.79596795967959,51.24043430757038],[-56.78516785167851,51.24887719391978],[-56.76716767167672,51.26069723480896],[-56.75996759967599,51.267451543888484],[-56.745567455674546,51.29615735747652],[-56.73836738367383,51.30628882109579],[-56.720367203672026,51.31979743925487],[-56.666366663666636,51.35019183011275],[-56.493564935649346,51.41266918909841],[-56.443164431644306,51.42111207544784],[-56.392763927639265,51.424489229987586],[-56.37836378363784,51.43124353906711],[-56.33516335163351,51.45826077538524],[-56.317163171631705,51.46670366173467],[-56.237962379623795,51.481900857163595],[-56.22716227162272,51.49034374351302],[-56.216362163621625,51.5021637844022],[-56.191161911619105,51.5106066707516],[-56.10476104761047,51.52918102072033],[-56.086760867608675,51.535935329799855],[-56.061560615606155,51.55282110249868],[-56.01836018360183,51.57308402973726],[-56.003960039600386,51.576461184277036],[-55.89235892358923,51.62711850237352],[-55.885158851588514,51.61698703875422],[-55.86715867158671,51.611921306944566],[-55.852758527585266,51.61529846148434],[-55.83835838358384,51.62205277056387],[-55.823958239582396,51.62374134783374],[-55.877958779587786,51.571395452467385],[-55.88155881558815,51.55282110249868],[-55.84195841958419,51.55619825703843],[-55.86355863558636,51.52749244345043],[-55.88875888758888,51.5004752071323],[-55.874358743587436,51.495409475322674],[-55.85635856358563,51.495409475322674],[-55.823958239582396,51.5004752071323],[-55.751957519575186,51.5004752071323],[-55.71955719557195,51.49372089805277],[-55.67995679956799,51.48021227989372],[-55.64395643956439,51.473457970814195],[-55.60795607956079,51.48021227989372],[-55.625956259562585,51.486966588973246],[-55.6619566195662,51.4920323207829],[-55.67995679956799,51.5004752071323],[-55.68355683556835,51.513983825291376],[-55.68355683556835,51.52749244345043],[-55.68715687156872,51.53762390706973],[-55.73755737557376,51.55450967976856],[-55.73035730357303,51.576461184277036],[-55.71235712357124,51.584904070626436],[-55.726757267572665,51.55619825703843],[-55.701557015570145,51.566329720657734],[-55.65835658356583,51.60010126605539],[-55.63315633156331,51.61023272967469],[-55.64395643956439,51.598412688785515],[-55.647556475564755,51.593346956975864],[-55.647556475564755,51.58828122516621],[-55.64035640356403,51.584904070626436],[-55.63675636756368,51.579838338816785],[-55.62955629556295,51.571395452467385],[-55.61155611556116,51.566329720657734],[-55.58995589955899,51.566329720657734],[-55.575555755557545,51.56970687519751],[-55.57915579155791,51.57308402973726],[-55.58275582755827,51.57477260700716],[-55.58635586355864,51.57477260700716],[-55.58995589955899,51.576461184277036],[-55.53235532355323,51.60010126605539],[-55.51435514355143,51.60347842059517],[-55.47835478354783,51.593346956975864],[-55.47835478354783,51.57814976154691],[-55.471154711547115,51.579838338816785],[-55.46755467554675,51.58659264789634],[-55.46395463954639,51.58996980243609],[-55.42795427954279,51.58659264789634],[-55.409954099541,51.579838338816785],[-55.40275402754027,51.56295256611796],[-55.41715417154171,51.55113252522878],[-55.43875438754387,51.55450967976856],[-55.45675456754567,51.56126398884808],[-55.471154711547115,51.56295256611796],[-55.46395463954639,51.55450967976856],[-55.43875438754387,51.539312484339604],[-55.43155431554315,51.539312484339604],[-55.43155431554315,51.52749244345043],[-55.43875438754387,51.51567240256125],[-55.445954459544595,51.50554093894195],[-55.45675456754567,51.5004752071323],[-55.48555485554856,51.508918093481725],[-55.5359553595536,51.508918093481725],[-55.521555215552155,51.49709805259255],[-55.49275492754927,51.48358943443347],[-55.48195481954819,51.47514654808407],[-55.45315453154531,51.48021227989372],[-55.45675456754567,51.46332650719489],[-55.471154711547115,51.43968642541654],[-55.471154711547115,51.424489229987586],[-55.48195481954819,51.41266918909841],[-55.49275492754927,51.389029107320056],[-55.499954999549985,51.37720906643088],[-55.51435514355143,51.36876618008145],[-55.525155251552505,51.37214333462123],[-55.53235532355323,51.38058622097063],[-55.55755557555575,51.39071768458993],[-55.56475564755647,51.39071768458993],[-55.56835568355683,51.38058622097063],[-55.571955719557195,51.36707760281158],[-55.56835568355683,51.36032329373205],[-55.55755557555575,51.356946139192274],[-55.55395553955539,51.3552575619224],[-55.55755557555575,51.35019183011275],[-55.56475564755647,51.3451260983031],[-55.571955719557195,51.34343752103322],[-55.59355593555935,51.34343752103322],[-55.600756007560065,51.3451260983031],[-55.60795607956079,51.35019183011275],[-55.61155611556116,51.34006036649345],[-55.60795607956079,51.32824032560427],[-55.60435604356043,51.31642028471509],[-55.597155971559715,51.30966597563557],[-55.61875618756187,51.30460024382592],[-55.64035640356403,51.31473170744522],[-55.6619566195662,51.329928902874144],[-55.68715687156872,51.3366832119537],[-55.80595805958059,51.35188040738262],[-55.86715867158671,51.34343752103322],[-55.88875888758888,51.34343752103322],[-55.89595895958959,51.34681467557297],[-55.903159031590306,51.35019183011275],[-55.924759247592476,51.3637004482718],[-55.935559355593554,51.36876618008145],[-55.953559535595346,51.370454757351354],[-55.94635946359463,51.3653890255417],[-55.93915939159392,51.35019183011275],[-55.96795967959679,51.34681467557297],[-55.98955989559896,51.35863471646218],[-56.011160111601114,51.3738319118911],[-56.036360363603634,51.383963375510405],[-56.036360363603634,51.37552048916098],[-56.036360363603634,51.370454757351354],[-56.039960399604,51.3637004482718],[-56.039960399604,51.356946139192274],[-56.05076050760508,51.36707760281158],[-56.061560615606155,51.370454757351354],[-56.0759607596076,51.37214333462123],[-56.09036090360904,51.370454757351354],[-56.09036090360904,51.3637004482718],[-56.086760867608675,51.35863471646218],[-56.09396093960939,51.334994634683795],[-56.09756097560975,51.32317459379462],[-56.07956079560795,51.321486016524744],[-56.03276032760327,51.31473170744522],[-56.02196021960219,51.30966597563557],[-56.01476014760148,51.27927158477769],[-56.01476014760148,51.27589443023791],[-56.01836018360183,51.26914012115839],[-56.029160291602906,51.267451543888484],[-56.036360363603634,51.26576296661861],[-56.04716047160471,51.267451543888484],[-56.039960399604,51.26069723480896],[-56.01476014760148,51.24718861664991],[-56.029160291602906,51.24381146211013],[-56.061560615606155,51.24043430757038],[-56.0759607596076,51.23367999849086],[-56.039960399604,51.22185995760165],[-56.01836018360183,51.2184828030619],[-56.01476014760148,51.21341707125225],[-56.011160111601114,51.206662762172726],[-56.00756007560075,51.1999084530932],[-55.98235982359823,51.169514062235294],[-55.96435964359644,51.15938259861599],[-55.94635946359463,51.15769402134612],[-55.953559535595346,51.174579794044945],[-55.960759607596074,51.17795694858472],[-55.95715957159571,51.179645525854596],[-55.95715957159571,51.18471125766425],[-55.95715957159571,51.19146556674377],[-55.960759607596074,51.1999084530932],[-55.910359103591034,51.201597030363075],[-55.88875888758888,51.210039916712475],[-55.86715867158671,51.223548534871554],[-55.849158491584916,51.23030284395108],[-55.773557735577356,51.22017138033178],[-55.76275762757628,51.21679422579203],[-55.751957519575186,51.210039916712475],[-55.73035730357303,51.196531298553424],[-55.71955719557195,51.18471125766425],[-55.71955719557195,51.179645525854596],[-55.726757267572665,51.17795694858472],[-55.733957339573394,51.171202639505196],[-55.73755737557376,51.166136907695545],[-55.74115741157411,51.15431686680637],[-55.73755737557376,51.14249682591719],[-55.723157231572316,51.13743109410754],[-55.71955719557195,51.13236536229789],[-55.723157231572316,51.11885674413881],[-55.733957339573394,51.10534812597976],[-55.74115741157411,51.09690523963033],[-55.733957339573394,51.08339662147128],[-55.74475744757447,51.06988800331223],[-55.76275762757628,51.05975653969293],[-55.78075780757807,51.054690807883276],[-55.7879578795788,51.05975653969293],[-55.79515795157951,51.06651084877245],[-55.80595805958059,51.06988800331223],[-55.809558095580954,51.05975653969293],[-55.80595805958059,51.049625076073625],[-55.79515795157951,51.0428707669941],[-55.784357843578434,51.03780503518445],[-55.773557735577356,51.036116457914574],[-55.809558095580954,51.00741064432657],[-55.81675816758167,50.99727918070727],[-55.82035820358203,50.987147717087964],[-55.827558275582746,50.978704830738565],[-55.834758347583474,50.97195052165904],[-55.834758347583474,50.96688478984939],[-55.827558275582746,50.960130480769834],[-55.823958239582396,50.951687594420434],[-55.81675816758167,50.93142466718183],[-55.83115831158311,50.92635893537221],[-55.83835838358384,50.93480182172161],[-55.84195841958419,50.94662186261078],[-55.849158491584916,50.95337617169031],[-55.859958599585994,50.94831043988066],[-55.86715867158671,50.93311324445173],[-55.874358743587436,50.91791604902278],[-55.87075870758707,50.90440743086373],[-55.86355863558636,50.90947316267338],[-55.85635856358563,50.91116173994325],[-55.852758527585266,50.90947316267338],[-55.84195841958419,50.90440743086373],[-55.85635856358563,50.89934169905408],[-55.86715867158671,50.89089881270465],[-55.874358743587436,50.87907877181547],[-55.877958779587786,50.86388157638655],[-55.89235892358923,50.897653121784174],[-55.903159031590306,50.897653121784174],[-55.924759247592476,50.88414450362512],[-55.93915939159392,50.87063588546607],[-55.960759607596074,50.835175762798514],[-56.00756007560075,50.78789559924181],[-56.029160291602906,50.77100982654298],[-56.03276032760327,50.76763267200323],[-56.05076050760508,50.75750120838393],[-56.06516065160652,50.73554970387545],[-56.07956079560795,50.720352508446496],[-56.10476104761047,50.72710681752602],[-56.09756097560975,50.733861126605575],[-56.09396093960939,50.742304012954975],[-56.09036090360904,50.7507468993044],[-56.09036090360904,50.76087836292368],[-56.10836108361083,50.7507468993044],[-56.11916119161191,50.75412405384415],[-56.137161371613715,50.774386981082756],[-56.12636126361264,50.796338485591235],[-56.12276122761227,50.801404217400886],[-56.13356133561335,50.83011003098889],[-56.12636126361264,50.85543869003712],[-56.111961119611195,50.880767349085346],[-56.10476104761047,50.90440743086373],[-56.12996129961299,50.902718853593825],[-56.14796147961479,50.89258738997455],[-56.162361623616235,50.87907877181547],[-56.17316173161731,50.85712726730699],[-56.15156151561516,50.85543869003712],[-56.14436144361443,50.84193007187807],[-56.14436144361443,50.82166714463946],[-56.15156151561516,50.801404217400886],[-56.15516155161551,50.796338485591235],[-56.17316173161731,50.777764135622505],[-56.16956169561695,50.77269840381285],[-56.15876158761587,50.764255517463454],[-56.15876158761587,50.76087836292368],[-56.15876158761587,50.755812631114054],[-56.165961659616585,50.74568116749475],[-56.165961659616585,50.7406154356851],[-56.162361623616235,50.720352508446496],[-56.15876158761587,50.706843890287445],[-56.14796147961479,50.69502384939827],[-56.12996129961299,50.684892385778966],[-56.10476104761047,50.68320380850909],[-56.09396093960939,50.679826653969315],[-56.10116101161012,50.66800661308014],[-56.12636126361264,50.64267795403191],[-56.137161371613715,50.63761222222226],[-56.140761407614065,50.63423506768248],[-56.187561875618755,50.59877494501495],[-56.21996219962199,50.583577749586],[-56.23436234362343,50.57006913142695],[-56.241562415624145,50.532920431489515],[-56.24876248762487,50.527854699679864],[-56.32076320763207,50.527854699679864],[-56.32076320763207,50.519411813330464],[-56.29556295562955,50.51434608152081],[-56.27396273962739,50.51265750425094],[-56.266762667626665,50.50590319517141],[-56.28116281162811,50.48732884520268],[-56.313563135631355,50.45862303161468],[-56.34956349563495,50.4383601043761],[-56.367563675636745,50.42485148621702],[-56.39636396363963,50.38770278627962],[-56.41076410764107,50.377571322660316],[-56.42876428764288,50.37588274539044],[-56.43596435964359,50.38263705446997],[-56.443164431644306,50.39107994081937],[-56.4539645396454,50.39783424989892],[-56.500765007650074,50.39107994081937],[-56.48276482764827,50.37419416812054],[-56.450364503645034,50.37081701358079],[-56.42876428764288,50.36237412723136],[-56.43236432364323,50.32860258183371],[-56.443164431644306,50.30496250005535],[-56.46116461164611,50.27794526373722],[-56.48276482764827,50.25430518195887],[-56.50796507965079,50.24079656379982],[-56.50436504365044,50.21884505929134],[-56.52236522365223,50.19689355478286],[-56.60516605166052,50.1361047730671],[-56.615966159661596,50.13103904125745],[-56.63036630366304,50.13103904125745],[-56.644766447664466,50.1344161957972],[-56.65916659166591,50.1361047730671],[-56.67356673566735,50.13103904125745],[-56.64836648366483,50.119219000368275],[-56.641166411664116,50.10908753674897],[-56.644766447664466,50.09895607312967],[-56.666366663666636,50.08207030043084],[-56.71316713167131,50.051675909572964],[-56.727567275672754,50.04154444595366],[-56.73836738367383,50.02634725052471],[-56.77436774367743,49.95036127338],[-56.78156781567816,49.93516407795104],[-56.78156781567816,49.918278305252215],[-56.76716767167672,49.931786923411295],[-56.74916749167491,49.94867269611012],[-56.727567275672754,49.9588041597294],[-56.720367203672026,49.94867269611012],[-56.72396723967239,49.931786923411295],[-56.7419674196742,49.89463822347386],[-56.7419674196742,49.882818182584685],[-56.7419674196742,49.877752450775034],[-56.75636756367564,49.87268671896538],[-56.76356763567635,49.86762098715573],[-56.76716767167672,49.86424383261598],[-56.77076770767707,49.85411236899668],[-56.76716767167672,49.84904663718703],[-56.76356763567635,49.84566948264725],[-56.75996759967599,49.842292328107504],[-56.76716767167672,49.83047228721833],[-56.777967779677795,49.81865224632915],[-56.79236792367924,49.80852078270985],[-56.803168031680315,49.80176647363032],[-56.88236882368824,49.771372082772416],[-56.903969039690395,49.75448631007359],[-56.88596885968859,49.749420578263965],[-56.828368283682835,49.74604342372419],[-56.81396813968139,49.74266626918441],[-56.81036810368103,49.73422338283501],[-56.79956799567995,49.73253480556514],[-56.78516785167851,49.73253480556514],[-56.78156781567816,49.72915765102536],[-56.78156781567816,49.69707468289758],[-56.78516785167851,49.69200895108793],[-56.78516785167851,49.681877487468654],[-56.81396813968139,49.62277728302274],[-56.82476824768247,49.59238289216486],[-56.828368283682835,49.58225142854556],[-56.85716857168572,49.548479883147905],[-56.83916839168391,49.55692276949733],[-56.82116821168211,49.570431387656384],[-56.79596795967959,49.60420293305404],[-56.7419674196742,49.6565488284204],[-56.72396723967239,49.690320373818054],[-56.59796597965979,49.811897937249626],[-56.57276572765727,49.82709513267855],[-56.569165691656906,49.8321608644882],[-56.565565655656556,49.84060375083763],[-56.55836558365583,49.847358059917156],[-56.54756547565475,49.85411236899668],[-56.518765187651866,49.86424383261598],[-56.48636486364863,49.89294964620399],[-56.468364683646826,49.89801537801364],[-56.425164251642514,49.84566948264725],[-56.417964179641785,49.85242379172681],[-56.42156421564215,49.87099814169551],[-56.42876428764288,49.88619533712446],[-56.425164251642514,49.90308110982329],[-56.40356403564036,49.918278305252215],[-56.39636396363963,49.91152399617269],[-56.363963639636395,49.89801537801364],[-56.37116371163711,49.91996688252212],[-56.38196381963819,49.93347550068117],[-56.38556385563855,49.94698411884022],[-56.338763387633875,50.01790436417531],[-56.317163171631705,50.03985586868379],[-56.291962919629185,50.04829875503319],[-56.27036270362703,50.060118795922364],[-56.241562415624145,50.10739895947907],[-56.17676176761768,50.141170504876726],[-56.162361623616235,50.149613391226154],[-56.14796147961479,50.15636770030568],[-56.13356133561335,50.158056277575554],[-56.11556115561156,50.158056277575554],[-56.11916119161191,50.1529905457659],[-56.12276122761227,50.14285908214663],[-56.12276122761227,50.13779335033698],[-56.10836108361083,50.13779335033698],[-56.09396093960939,50.132727618527326],[-56.09396093960939,50.127661886717675],[-56.10836108361083,50.1242847321779],[-56.09756097560975,50.11246469128872],[-56.08316083160831,50.105710382209196],[-56.06516065160652,50.095578918589894],[-56.061560615606155,50.08207030043084],[-56.06876068760687,50.070250259541666],[-56.09756097560975,50.04661017776331],[-56.10836108361083,50.034790136874136],[-56.12996129961299,49.989198550587304],[-56.137161371613715,49.97400135515835],[-56.14796147961479,49.9604927369993],[-56.191161911619105,49.92503261433174],[-56.15516155161551,49.93347550068117],[-56.12276122761227,49.95542700518965],[-56.07236072360723,50.01115005509578],[-56.05796057960579,50.01790436417531],[-56.011160111601114,50.03141298233436],[-55.99675996759967,50.03141298233436],[-55.99315993159931,50.016215786905406],[-56.003960039600386,50.00101859147648],[-56.036360363603634,49.979067086968],[-56.003960039600386,49.972312777888476],[-55.98235982359823,49.994264282396955],[-55.97155971559715,50.02634725052471],[-55.960759607596074,50.04154444595366],[-55.924759247592476,50.038167291413885],[-55.89235892358923,50.03141298233436],[-55.86355863558636,50.016215786905406],[-55.84195841958419,49.99257570512705],[-55.849158491584916,49.99257570512705],[-55.84195841958419,49.98244424150778],[-55.802358023580226,49.95711558245952],[-55.798757987579876,49.95542700518965],[-55.79155791557915,49.95711558245952],[-55.784357843578434,49.9588041597294],[-55.777157771577706,49.95542700518965],[-55.773557735577356,49.94867269611012],[-55.76995769957699,49.94191838703057],[-55.76635766357663,49.93854123249082],[-55.74475744757447,49.931786923411295],[-55.723157231572316,49.931786923411295],[-55.71235712357124,49.93516407795104],[-55.701557015570145,49.94191838703057],[-55.69075690756907,49.95204985064987],[-55.68355683556835,49.9588041597294],[-55.69075690756907,49.967247046078825],[-55.66555665556655,49.975689932428224],[-55.61155611556116,49.972312777888476],[-55.58275582755827,49.97400135515835],[-55.571955719557195,49.97737850969813],[-55.49275492754927,50.01452720963553],[-55.49275492754927,50.007772900556006],[-55.471154711547115,49.979067086968],[-55.46395463954639,49.96218131426917],[-55.46395463954639,49.945295541570346],[-55.47835478354783,49.93009834614139],[-55.496354963549635,49.91996688252212],[-55.51795517955179,49.913212573442564],[-55.53955539555395,49.91152399617269],[-55.575555755557545,49.90139253255339],[-55.647556475564755,49.85917810080633],[-55.69075690756907,49.84904663718703],[-55.71595715957159,49.8220294008689],[-55.809558095580954,49.80176647363032],[-55.960759607596074,49.74097769191454],[-55.97155971559715,49.73928911464466],[-55.98235982359823,49.744354846454314],[-55.99315993159931,49.75110915553384],[-56.000360003600036,49.752797732803714],[-56.01476014760148,49.73928911464466],[-56.003960039600386,49.725780496485584],[-56.02196021960219,49.71396045559641],[-56.06876068760687,49.69876326016748],[-56.061560615606155,49.68356606473853],[-56.09036090360904,49.66330313749992],[-56.15156151561516,49.63122016937217],[-56.15876158761587,49.62277728302274],[-56.165961659616585,49.61433439667334],[-56.16956169561695,49.60082577851426],[-56.17316173161731,49.58562858308534],[-56.165961659616585,49.57380854219616],[-56.15156151561516,49.58562858308534],[-56.12276122761227,49.61602297394322],[-56.09756097560975,49.637974478451696],[-56.039960399604,49.673434601119226],[-55.96795967959679,49.70214041470723],[-55.95715957159571,49.70551756924701],[-55.93915939159392,49.70551756924701],[-55.924759247592476,49.708894723786756],[-55.910359103591034,49.71396045559641],[-55.89595895958959,49.71902618740606],[-55.89235892358923,49.71227187832653],[-55.89235892358923,49.71058330105666],[-55.88875888758888,49.70551756924701],[-55.90675906759067,49.700451837437356],[-55.94275942759427,49.68863179654818],[-55.960759607596074,49.6852546420084],[-55.960759607596074,49.67850033292888],[-55.94275942759427,49.67850033292888],[-55.924759247592476,49.68356606473853],[-55.910359103591034,49.68863179654818],[-55.89595895958959,49.69876326016748],[-55.89235892358923,49.68863179654818],[-55.874358743587436,49.68863179654818],[-55.834758347583474,49.69200895108793],[-55.83835838358384,49.6852546420084],[-55.84555845558455,49.67850033292888],[-55.852758527585266,49.673434601119226],[-55.859958599585994,49.67174602384935],[-55.86715867158671,49.668368869309575],[-55.87075870758707,49.659925982960175],[-55.874358743587436,49.65148309661075],[-55.877958779587786,49.64304021026135],[-55.88875888758888,49.63459732391192],[-55.93915939159392,49.60926866486369],[-55.928359283592826,49.59913720124439],[-55.9139591395914,49.59407146943474],[-55.877958779587786,49.59576004670461],[-55.899558995589956,49.561988501306985],[-55.93915939159392,49.53665984225873],[-55.98235982359823,49.5197740695599],[-56.02556025560256,49.513019760480375],[-56.036360363603634,49.5096426059406],[-56.054360543605426,49.49613398778155],[-56.061560615606155,49.49275683324177],[-56.0759607596076,49.491068255971896],[-56.07956079560795,49.48769110143212],[-56.07956079560795,49.47924821508272],[-56.086760867608675,49.46911675146342],[-56.11916119161191,49.44209951514529],[-56.12996129961299,49.428590896986236],[-56.12276122761227,49.428590896986236],[-56.10116101161012,49.43872236060554],[-56.061560615606155,49.445476669685064],[-55.99315993159931,49.48431394689237],[-55.953559535595346,49.499511142321325],[-55.86355863558636,49.5197740695599],[-55.82035820358203,49.521462646829775],[-55.773557735577356,49.513019760480375],[-55.78075780757807,49.49782256505142],[-55.7879578795788,49.49275683324177],[-55.76635766357663,49.49444541051167],[-55.759157591575914,49.49275683324177],[-55.751957519575186,49.48937967870202],[-55.74475744757447,49.48769110143212],[-55.73035730357303,49.4826253696225],[-55.71955719557195,49.47587106054294],[-55.73035730357303,49.472493906003194],[-55.74115741157411,49.47418248327307],[-55.748357483574836,49.47587106054294],[-55.75555755557555,49.47587106054294],[-55.76635766357663,49.472493906003194],[-55.76635766357663,49.47080532873332],[-55.76995769957699,49.464051019653766],[-55.78075780757807,49.45729671057424],[-55.7879578795788,49.45223097876459],[-55.76635766357663,49.44885382422484],[-55.733957339573394,49.45391955603449],[-55.67995679956799,49.472493906003194],[-55.68355683556835,49.458985287844115],[-55.69435694356943,49.44041093787541],[-55.697956979569796,49.42521374244649],[-55.67995679956799,49.423525165176585],[-55.672756727567275,49.42521374244649],[-55.672756727567275,49.41677085609706],[-55.67995679956799,49.40832796974766],[-55.67995679956799,49.396507928858455],[-55.672756727567275,49.38637646523918],[-55.65835658356583,49.382999310699404],[-55.64395643956439,49.38975361977893],[-55.63675636756368,49.40326223793801],[-55.63315633156331,49.41677085609706],[-55.625956259562585,49.428590896986236],[-55.58275582755827,49.472493906003194],[-55.55395553955539,49.48937967870202],[-55.521555215552155,49.49275683324177],[-55.550355503555025,49.450542401494715],[-55.56475564755647,49.42521374244649],[-55.56115561155612,49.41170512428741],[-55.56835568355683,49.39988508339823],[-55.571955719557195,49.388065042509055],[-55.571955719557195,49.374556424350004],[-55.56835568355683,49.36273638346083],[-55.54315543155431,49.382999310699404],[-55.53235532355323,49.396507928858455],[-55.52875528755287,49.40832796974766],[-55.525155251552505,49.423525165176585],[-55.521555215552155,49.43534520606576],[-55.51075510755108,49.44378809241519],[-55.49275492754927,49.445476669685064],[-55.496354963549635,49.44885382422484],[-55.496354963549635,49.45223097876459],[-55.496354963549635,49.455608133304366],[-55.499954999549985,49.458985287844115],[-55.49275492754927,49.46911675146342],[-55.48555485554856,49.47924821508272],[-55.474754747547465,49.46067386511402],[-55.46395463954639,49.46573959692367],[-55.45315453154531,49.480936792352594],[-55.445954459544595,49.49275683324177],[-55.42795427954279,49.499511142321325],[-55.370353703537035,49.50626545140085],[-55.37755377553775,49.49275683324177],[-55.363153631536306,49.49613398778155],[-55.35595355953559,49.499511142321325],[-55.348753487534864,49.49275683324177],[-55.409954099541,49.44209951514529],[-55.43155431554315,49.43027947425611],[-55.43155431554315,49.42521374244649],[-55.399153991539904,49.43196805152601],[-55.34155341553415,49.458985287844115],[-55.31635316353163,49.45223097876459],[-55.33075330753307,49.44378809241519],[-55.395553955539555,49.38637646523918],[-55.43155431554315,49.36949069254035],[-55.445954459544595,49.355982074381274],[-55.420754207542075,49.3644249607307],[-55.39195391953919,49.36949069254035],[-55.373953739537384,49.36273638346083],[-55.38475384753848,49.3357191471427],[-55.36675366753667,49.352604919841525],[-55.348753487534864,49.38131073342953],[-55.33075330753307,49.40326223793801],[-55.31635316353163,49.40495081520788],[-55.33075330753307,49.38975361977893],[-55.312753127531266,49.388065042509055],[-55.287552875528746,49.401573660668106],[-55.287552875528746,49.38975361977893],[-55.294752947529474,49.37117926981023],[-55.309153091530916,49.366113538000576],[-55.323553235532344,49.36273638346083],[-55.34155341553415,49.355982074381274],[-55.33435334353344,49.34922776530175],[-55.32715327153271,49.339096301682446],[-55.319953199531994,49.32727626079327],[-55.31635316353163,49.31545621990409],[-55.309153091530916,49.31714479717397],[-55.30555305553055,49.31883337444387],[-55.30195301953019,49.32221052898362],[-55.309153091530916,49.3357191471427],[-55.30555305553055,49.345850610762],[-55.298352983529824,49.352604919841525],[-55.26595265952659,49.361047806190925],[-55.25155251552515,49.3728678470801],[-55.244352443524434,49.38468788796928],[-55.237152371523706,49.38975361977893],[-55.237152371523706,49.39481935158858],[-55.26595265952659,49.42521374244649],[-55.273152731527304,49.437033783335664],[-55.273152731527304,49.45223097876459],[-55.273152731527304,49.46911675146342],[-55.26595265952659,49.47924821508272],[-55.31635316353163,49.534971264988855],[-55.287552875528746,49.534971264988855],[-55.273152731527304,49.540036996798506],[-55.258752587525876,49.548479883147905],[-55.22995229952299,49.53665984225873],[-55.219152191521914,49.5299055331792],[-55.233552335523356,49.521462646829775],[-55.22635226352263,49.51470833775025],[-55.219152191521914,49.5096426059406],[-55.208352083520836,49.507954028670724],[-55.197551975519744,49.50626545140085],[-55.20115201152011,49.513019760480375],[-55.208352083520836,49.52821695590933],[-55.211952119521186,49.534971264988855],[-55.193951939519394,49.540036996798506],[-55.17595175951759,49.54679130587803],[-55.15435154351543,49.548479883147905],[-55.136351363513626,49.540036996798506],[-55.15075150751507,49.540036996798506],[-55.15075150751507,49.534971264988855],[-55.13995139951399,49.526528378639426],[-55.12915129151291,49.513019760480375],[-55.12555125551255,49.499511142321325],[-55.121951219512184,49.4826253696225],[-55.12915129151291,49.46573959692367],[-55.13995139951399,49.455608133304366],[-55.157951579515796,49.445476669685064],[-55.172351723517224,49.43027947425611],[-55.161551615516146,49.418459433366934],[-55.172351723517224,49.401573660668106],[-55.186751867518666,49.39144219704883],[-55.197551975519744,49.40495081520788],[-55.211952119521186,49.38975361977893],[-55.22635226352263,49.36780211527045],[-55.22995229952299,49.3441620334921],[-55.219152191521914,49.31714479717397],[-55.219152191521914,49.276618942696786],[-55.222752227522264,49.26479890180761],[-55.233552335523356,49.254667438188335],[-55.244352443524434,49.249601706378684],[-55.26595265952659,49.24453597456903],[-55.294752947529474,49.232715933679856],[-55.30555305553055,49.22427304733043],[-55.31635316353163,49.21245300644125],[-55.319953199531994,49.20232154282195],[-55.33075330753307,49.192190079202675],[-55.36675366753667,49.17192715196407],[-55.370353703537035,49.16348426561464],[-55.363153631536306,49.16010711107489],[-55.33435334353344,49.16010711107489],[-55.323553235532344,49.156729956535116],[-55.34155341553415,49.12295841113746],[-55.319953199531994,49.12295841113746],[-55.312753127531266,49.11451552478806],[-55.312753127531266,49.10100690662898],[-55.323553235532344,49.08749828846993],[-55.337953379533786,49.075678247580754],[-55.36675366753667,49.0604810521518],[-55.38475384753848,49.04697243399275],[-55.370353703537035,49.05034958853253],[-55.33435334353344,49.06892393850123],[-55.319953199531994,49.07398967031088],[-55.30555305553055,49.075678247580754],[-55.27675276752767,49.07398967031088],[-55.258752587525876,49.080743979390405],[-55.183151831518316,49.12295841113746],[-55.183151831518316,49.129712720217015],[-55.208352083520836,49.12633556567724],[-55.258752587525876,49.10438406116876],[-55.27675276752767,49.10607263843863],[-55.287552875528746,49.12633556567724],[-55.283952839528396,49.14997564745559],[-55.269552695526954,49.17192715196407],[-55.25515255152551,49.18374719285325],[-55.25515255152551,49.192190079202675],[-55.283952839528396,49.18543577012312],[-55.287552875528746,49.18374719285325],[-55.287552875528746,49.19387865647255],[-55.28035280352803,49.20401012009185],[-55.273152731527304,49.21076442917138],[-55.262352623526226,49.21245300644125],[-55.247952479524784,49.21583016098103],[-55.22995229952299,49.22258447006055],[-55.197551975519744,49.23947024275938],[-55.05355053550535,49.295193292665516],[-55.060750607506066,49.30194760174504],[-55.05355053550535,49.30870191082457],[-55.07515075150751,49.334030569872795],[-55.07875078750787,49.347539188031874],[-55.082350823508236,49.36273638346083],[-55.06435064350643,49.35091634257162],[-55.042750427504274,49.3357191471427],[-55.02835028350283,49.32896483806317],[-55.01395013950139,49.34922776530175],[-54.9959499594996,49.298570447205265],[-54.99234992349923,49.28337325177634],[-54.99954999549995,49.268176056347386],[-55.01395013950139,49.254667438188335],[-55.04635046350464,49.232715933679856],[-55.035550355503545,49.23102735640995],[-55.01755017550175,49.236093088219604],[-54.99954999549995,49.24791312910878],[-54.985149851498505,49.25973316999796],[-54.959949599495985,49.295193292665516],[-54.94554945549456,49.30025902447517],[-54.92034920349204,49.30194760174504],[-54.91674916749167,49.298570447205265],[-54.91674916749167,49.290127560855865],[-54.91314913149131,49.28337325177634],[-54.89874898748987,49.27999609723656],[-54.89154891548915,49.28337325177634],[-54.880748807488075,49.28843898358596],[-54.87354873548735,49.29688186993539],[-54.869948699487,49.30532475628479],[-54.86274862748627,49.33740772441257],[-54.86634866348663,49.34247345622222],[-54.884348843488425,49.345850610762],[-54.88794887948879,49.35091634257162],[-54.88794887948879,49.36273638346083],[-54.884348843488425,49.37624500161988],[-54.87714877148771,49.38637646523918],[-54.86634866348663,49.396507928858455],[-54.855548555485555,49.40663939247776],[-54.84834848348483,49.41170512428741],[-54.833948339483385,49.410016547017534],[-54.830348303483035,49.40326223793801],[-54.833948339483385,49.382999310699404],[-54.833948339483385,49.32389910625352],[-54.830348303483035,49.31545621990409],[-54.833948339483385,49.30532475628479],[-54.830348303483035,49.28675040631609],[-54.81594815948159,49.27493036542691],[-54.79074790747907,49.290127560855865],[-54.783547835478345,49.30025902447517],[-54.779947799477995,49.30701333355469],[-54.779947799477995,49.325587683523395],[-54.779947799477995,49.33740772441257],[-54.77274772747727,49.347539188031874],[-54.76554765547655,49.3542934971114],[-54.754747547475475,49.355982074381274],[-54.758347583475825,49.347539188031874],[-54.758347583475825,49.339096301682446],[-54.758347583475825,49.32896483806317],[-54.754747547475475,49.32221052898362],[-54.7439474394744,49.320521951713744],[-54.73674736747367,49.32727626079327],[-54.733147331473305,49.34247345622222],[-54.72594725947259,49.35091634257162],[-54.71874718747188,49.36273638346083],[-54.71154711547115,49.36949069254035],[-54.704347043470435,49.374556424350004],[-54.68634686346863,49.37962215615963],[-54.679146791467915,49.382999310699404],[-54.671946719467186,49.388065042509055],[-54.66834668346684,49.39481935158858],[-54.657546575465744,49.41170512428741],[-54.653946539465394,49.41339370155728],[-54.65034650346503,49.41339370155728],[-54.646746467464666,49.415082278827185],[-54.64314643146432,49.42183658790671],[-54.646746467464666,49.428590896986236],[-54.646746467464666,49.43365662879589],[-54.65034650346503,49.43027947425611],[-54.63594635946359,49.44716524695494],[-54.58554585545855,49.48937967870202],[-54.56034560345603,49.51639691502015],[-54.545945459454586,49.5299055331792],[-54.531545315453144,49.534971264988855],[-54.50994509945099,49.53665984225873],[-54.470344703447026,49.54679130587803],[-54.452344523445234,49.548479883147905],[-54.445144451444506,49.543414151338254],[-54.495544955449546,49.5096426059406],[-54.49914499144991,49.50457687413095],[-54.506345063450624,49.47587106054294],[-54.50994509945099,49.47080532873332],[-54.53514535145351,49.445476669685064],[-54.51354513545135,49.458985287844115],[-54.48474484744847,49.47080532873332],[-54.452344523445234,49.477559637812845],[-54.430744307443064,49.472493906003194],[-54.445144451444506,49.46067386511402],[-54.455944559445584,49.44885382422484],[-54.45954459544595,49.43534520606576],[-54.445144451444506,49.42521374244649],[-54.47394473944739,49.40495081520788],[-54.481144811448104,49.39988508339823],[-54.48474484744847,49.37962215615963],[-54.48834488344883,49.36780211527045],[-54.481144811448104,49.36273638346083],[-54.45954459544595,49.355982074381274],[-54.455944559445584,49.339096301682446],[-54.46314463144631,49.31883337444387],[-54.48474484744847,49.27830751996669],[-54.48474484744847,49.268176056347386],[-54.477544775447754,49.26986463361726],[-54.47394473944739,49.28337325177634],[-54.46314463144631,49.30025902447517],[-54.441544415444156,49.31376764263422],[-54.416344163441636,49.32389910625352],[-54.39834398343983,49.3357191471427],[-54.416344163441636,49.35091634257162],[-54.40914409144091,49.37117926981023],[-54.391143911439116,49.39144219704883],[-54.37314373143731,49.42183658790671],[-54.34794347943479,49.428590896986236],[-54.30114301143011,49.43027947425611],[-54.30474304743046,49.415082278827185],[-54.290342903429035,49.41339370155728],[-54.25794257942579,49.42521374244649],[-54.25794257942579,49.40832796974766],[-54.24714247142471,49.40663939247776],[-54.218342183421825,49.41677085609706],[-54.22554225542255,49.40326223793801],[-54.23634236342363,49.39144219704883],[-54.239942399423995,49.37793357888975],[-54.23274232742327,49.36273638346083],[-54.22194221942219,49.37624500161988],[-54.218342183421825,49.38975361977893],[-54.21114211142111,49.401573660668106],[-54.19674196741967,49.41170512428741],[-54.18234182341823,49.393130774318706],[-54.17874178741786,49.382999310699404],[-54.17514175141751,49.382999310699404],[-54.16074160741607,49.39988508339823],[-54.14994149941499,49.418459433366934],[-54.14634146341463,49.437033783335664],[-54.139141391413915,49.45223097876459],[-54.08514085140851,49.464051019653766],[-54.08154081540815,49.46236244238389],[-54.07794077940778,49.455608133304366],[-54.067140671406705,49.46067386511402],[-54.05994059940599,49.46911675146342],[-54.05994059940599,49.472493906003194],[-54.04914049140491,49.477559637812845],[-54.04554045540455,49.480936792352594],[-54.041940419404185,49.480936792352594],[-54.03114031140311,49.46911675146342],[-54.02034020340203,49.464051019653766],[-53.99513995139951,49.46236244238389],[-53.98433984339843,49.458985287844115],[-53.99873998739987,49.45729671057424],[-54.041940419404185,49.43872236060554],[-54.016740167401665,49.43196805152601],[-53.9519395193952,49.44885382422484],[-53.92313923139231,49.45223097876459],[-53.90873908739087,49.445476669685064],[-53.87273872738727,49.42183658790671],[-53.85833858338583,49.41677085609706],[-53.84393843938439,49.415082278827185],[-53.804338043380426,49.40326223793801],[-53.79353793537935,49.396507928858455],[-53.77193771937719,49.39988508339823],[-53.753937539375386,49.393130774318706],[-53.725137251372516,49.37624500161988],[-53.678336783367826,49.366113538000576],[-53.66393663936638,49.35935922892105],[-53.678336783367826,49.34922776530175],[-53.65673656736567,49.33234199260292],[-53.624336243362436,49.32727626079327],[-53.59553595535955,49.32389910625352],[-53.58113581135811,49.31883337444387],[-53.58113581135811,49.31039048809444],[-53.577535775357745,49.30701333355469],[-53.573935739357395,49.30532475628479],[-53.56673566735667,49.30194760174504],[-53.5631356313563,49.30025902447517],[-53.552335523355225,49.30194760174504],[-53.548735487354875,49.30194760174504],[-53.54513545135451,49.298570447205265],[-53.548735487354875,49.290127560855865],[-53.548735487354875,49.28675040631609],[-53.53433534335343,49.28337325177634],[-53.523535235352355,49.27999609723656],[-53.50553505535055,49.27999609723656],[-53.49113491134911,49.28675040631609],[-53.476734767347665,49.268176056347386],[-53.46953469534695,49.263110324537735],[-53.45873458734587,49.25973316999796],[-53.45873458734587,49.25297886091843],[-53.45513455134551,49.24284739729913],[-53.49113491134911,49.21920731552078],[-53.49113491134911,49.1989443882822],[-53.501935019350185,49.1972558110123],[-53.51993519935199,49.19387865647255],[-53.53073530735307,49.192190079202675],[-53.54153541535415,49.18712434739302],[-53.54153541535415,49.178681461043595],[-53.53433534335343,49.16348426561464],[-53.53793537935378,49.156729956535116],[-53.55593555935559,49.13984418383629],[-53.55953559535595,49.13308987475676],[-53.56673566735667,49.12633556567724],[-53.577535775357745,49.12802414294711],[-53.60633606336063,49.13646702929654],[-53.60993609936099,49.13308987475676],[-53.61713617136171,49.12633556567724],[-53.62073620736207,49.11789267932781],[-53.624336243362436,49.10944979297841],[-53.61713617136171,49.10607263843863],[-53.602736027360265,49.102695483898884],[-53.59193591935919,49.09931832935911],[-53.58113581135811,49.08749828846993],[-53.58113581135811,49.067235361231354],[-53.58833588335882,49.0520381658024],[-53.60993609936099,49.04359527945297],[-53.79353793537935,49.026709506754145],[-53.836738367383674,49.0334638158337],[-53.840338403384024,49.03008666129392],[-53.83313833138331,49.023332352214396],[-53.82233822338223,49.01657804313487],[-53.811538115381154,49.013200888595094],[-53.74313743137431,49.01657804313487],[-53.725137251372516,49.013200888595094],[-53.74673746737467,48.99800369316614],[-53.779137791377906,48.987872229546866],[-53.80793807938079,48.98111792046731],[-53.836738367383674,48.97942934319744],[-53.851138511385116,48.98111792046731],[-53.876338763387636,48.99293796135649],[-53.88353883538835,48.99293796135649],[-53.89793897938979,48.98111792046731],[-53.887138871388714,48.97098645684804],[-53.854738547385466,48.95916641595886],[-53.811538115381154,48.93552633418048],[-53.811538115381154,48.93046060237083],[-53.825938259382596,48.928772025100955],[-53.851138511385116,48.91357482967203],[-53.861938619386194,48.91019767513225],[-53.92313923139231,48.91695198421178],[-53.937539375393754,48.91188625240213],[-53.94833948339483,48.90344336605273],[-53.962739627396274,48.8966890569732],[-53.97713977139772,48.8966890569732],[-53.962739627396274,48.8865575933539],[-53.937539375393754,48.8865575933539],[-53.88353883538835,48.8966890569732],[-53.88353883538835,48.88993474789365],[-53.95913959139591,48.86967182065507],[-53.97713977139772,48.85616320249599],[-53.966339663396624,48.84265458433694],[-53.97713977139772,48.835900275257416],[-53.99513995139951,48.83421169798754],[-54.02754027540274,48.835900275257416],[-54.041940419404185,48.83421169798754],[-54.07794077940778,48.82070307982846],[-54.13554135541355,48.82070307982846],[-54.14634146341463,48.81732592528871],[-54.17154171541715,48.80550588439954],[-54.18594185941859,48.800440152589886],[-54.17874178741786,48.79199726624046],[-54.18234182341823,48.78355437989106],[-54.18594185941859,48.77848864808141],[-54.19674196741967,48.773422916271755],[-54.19674196741967,48.76666860719223],[-54.164341643416435,48.77173433900188],[-54.02034020340203,48.81563734801881],[-54.00594005940059,48.81394877074894],[-53.991539915399144,48.80550588439954],[-53.991539915399144,48.795374420780234],[-53.99873998739987,48.78524295716093],[-54.013140131401315,48.773422916271755],[-53.991539915399144,48.768357184462104],[-53.96993969939699,48.773422916271755],[-53.962739627396274,48.781865802621155],[-53.97713977139772,48.78862011170071],[-53.94473944739447,48.82408023436824],[-53.89433894338943,48.84096600706707],[-53.84393843938439,48.839277429797164],[-53.800738007380076,48.81394877074894],[-53.829538295382946,48.80212872985976],[-53.85833858338583,48.79875157531998],[-53.915939159391584,48.800440152589886],[-53.901539015390156,48.79030868897058],[-53.901539015390156,48.77848864808141],[-53.901539015390156,48.76666860719223],[-53.890738907389064,48.759914298112705],[-53.876338763387636,48.76329145265245],[-53.86913869138691,48.773422916271755],[-53.85833858338583,48.78017722535128],[-53.840338403384024,48.773422916271755],[-53.876338763387636,48.7480942572235],[-53.89793897938979,48.7396513708741],[-53.92313923139231,48.7396513708741],[-53.96993969939699,48.751471411763276],[-53.99513995139951,48.75315998903315],[-54.02034020340203,48.746405679953625],[-54.02034020340203,48.7396513708741],[-53.966339663396624,48.73627421633432],[-53.94473944739447,48.72783132998492],[-53.94473944739447,48.71263413455597],[-53.93393933939339,48.70419124820657],[-53.937539375393754,48.69405978458727],[-53.94833948339483,48.683928320967965],[-53.9519395193952,48.670419702808914],[-53.941139411394104,48.66028823918961],[-53.926739267392676,48.656911084649835],[-53.90873908739087,48.653533930110086],[-53.89433894338943,48.65015677557031],[-53.89433894338943,48.643402466490784],[-53.912339123391234,48.63833673468113],[-53.930339303393026,48.62989384833173],[-53.89433894338943,48.63158242560161],[-53.79353793537935,48.678862589158314],[-53.79353793537935,48.68561689823784],[-53.87273872738727,48.67379685734866],[-53.915939159391584,48.67210828007879],[-53.91953919539195,48.68730547550774],[-53.905139051390506,48.70081409366679],[-53.86913869138691,48.72276559817527],[-53.836738367383674,48.7497828344934],[-53.836738367383674,48.74302852541388],[-53.854738547385466,48.70419124820657],[-53.750337503375036,48.71263413455597],[-53.74673746737467,48.69912551639692],[-53.725137251372516,48.697436939127044],[-53.714337143371424,48.69574836185714],[-53.703537035370346,48.69068263004749],[-53.710737107371074,48.683928320967965],[-53.714337143371424,48.68055116642822],[-53.72153721537215,48.678862589158314],[-53.728737287372866,48.67379685734866],[-53.73233732337323,48.66535397099926],[-53.725137251372516,48.66028823918961],[-53.714337143371424,48.65859966191974],[-53.703537035370346,48.66028823918961],[-53.653136531365305,48.683928320967965],[-53.63873638736386,48.69405978458727],[-53.63153631536315,48.69912551639692],[-53.61713617136171,48.69912551639692],[-53.60633606336063,48.69574836185714],[-53.602736027360265,48.68730547550774],[-53.602736027360265,48.67717401188844],[-53.60993609936099,48.67379685734866],[-53.61713617136171,48.67210828007879],[-53.624336243362436,48.66704254826914],[-53.64233642336423,48.65522250737996],[-53.660336603366034,48.64677962103056],[-53.678336783367826,48.643402466490784],[-53.71793717937179,48.64171388922091],[-53.786337863378634,48.62313953925218],[-53.829538295382946,48.59612230293408],[-53.84753847538475,48.591056571124426],[-53.88353883538835,48.591056571124426],[-53.905139051390506,48.58936799385455],[-53.92313923139231,48.580925107505124],[-53.93393933939339,48.57079364388582],[-53.94473944739447,48.558973602996645],[-53.95913959139591,48.54715356210747],[-53.94473944739447,48.54208783029782],[-53.930339303393026,48.54884213937734],[-53.915939159391584,48.56066218026652],[-53.905139051390506,48.56741648934607],[-53.710737107371074,48.56066218026652],[-53.73233732337323,48.55390787118699],[-53.775537755377556,48.550530716647245],[-53.79353793537935,48.54039925302794],[-53.786337863378634,48.537022098488166],[-53.775537755377556,48.537022098488166],[-53.76833768337683,48.53871067575807],[-53.76833768337683,48.54039925302794],[-53.750337503375036,48.53026778940864],[-53.74313743137431,48.523513480329115],[-53.750337503375036,48.52013632578934],[-53.75753757537575,48.51675917124959],[-53.786337863378634,48.50325055309051],[-53.804338043380426,48.49987339855076],[-53.836738367383674,48.49818482128086],[-53.865538655386544,48.493119089471236],[-53.89433894338943,48.48467620312181],[-53.92313923139231,48.47285616223263],[-53.980739807398066,48.44077319410485],[-54.00954009540095,48.42895315321567],[-54.041940419404185,48.42388742140602],[-54.07794077940778,48.42895315321567],[-54.092340923409225,48.430641730485576],[-54.11034110341103,48.42388742140602],[-54.14634146341463,48.398558762357794],[-54.164341643416435,48.390115876008366],[-54.15354153541534,48.38505014419874],[-54.142741427414265,48.37829583511919],[-54.13554135541355,48.368164371499915],[-54.13554135541355,48.354655753340836],[-54.088740887408875,48.40193591689757],[-54.067140671406705,48.41037880324697],[-54.04554045540455,48.41037880324697],[-54.00234002340022,48.40531307143732],[-53.97713977139772,48.41037880324697],[-53.901539015390156,48.45765896680368],[-53.854738547385466,48.474544739502505],[-53.815138151381504,48.46441327588323],[-53.829538295382946,48.44921608045428],[-53.876338763387636,48.41037880324697],[-53.879938799387986,48.38842729873849],[-53.87273872738727,48.37323010330954],[-53.854738547385466,48.368164371499915],[-53.836738367383674,48.376607257849315],[-53.851138511385116,48.38336156692884],[-53.84393843938439,48.39518160781802],[-53.815138151381504,48.417133112326496],[-53.811538115381154,48.42388742140602],[-53.804338043380426,48.43233030775545],[-53.800738007380076,48.44077319410485],[-53.79353793537935,48.44415034864463],[-53.779137791377906,48.4475275031844],[-53.775537755377556,48.45428181226393],[-53.775537755377556,48.46441327588323],[-53.76833768337683,48.47623331677241],[-53.74313743137431,48.49987339855076],[-53.699936999369996,48.528579212138766],[-53.65673656736567,48.54715356210747],[-53.624336243362436,48.54039925302794],[-53.63513635136351,48.531956366678514],[-53.653136531365305,48.523513480329115],[-53.66393663936638,48.51338201670981],[-53.649536495364956,48.51507059397969],[-53.63513635136351,48.51338201670981],[-53.624336243362436,48.50831628490016],[-53.61713617136171,48.49987339855076],[-53.699936999369996,48.4559703895338],[-53.714337143371424,48.4458389259145],[-53.725137251372516,48.43233030775545],[-53.71793717937179,48.42388742140602],[-53.69633696336963,48.4357074622952],[-53.674736747367476,48.44415034864463],[-53.653136531365305,48.44921608045428],[-53.63153631536315,48.45090465772415],[-53.624336243362436,48.46272469861333],[-53.58833588335882,48.52689063486889],[-53.58113581135811,48.52689063486889],[-53.577535775357745,48.51338201670981],[-53.577535775357745,48.50325055309051],[-53.58833588335882,48.47961047131216],[-53.57033570335703,48.488053357661585],[-53.55953559535595,48.49143051220133],[-53.548735487354875,48.493119089471236],[-53.61713617136171,48.41037880324697],[-53.59553595535955,48.42051026686627],[-53.55953559535595,48.4475275031844],[-53.54153541535415,48.46441327588323],[-53.53073530735307,48.45765896680368],[-53.51993519935199,48.46272469861333],[-53.50553505535055,48.48636478039168],[-53.501935019350185,48.49143051220133],[-53.501935019350185,48.50831628490016],[-53.498334983349835,48.51338201670981],[-53.49113491134911,48.51507059397969],[-53.48033480334803,48.51169343943994],[-53.476734767347665,48.51169343943994],[-53.46953469534695,48.531956366678514],[-53.46593465934659,48.537022098488166],[-53.45873458734587,48.54039925302794],[-53.45873458734587,48.54377640756769],[-53.45873458734587,48.55221929391712],[-53.46233462334622,48.564039334806296],[-53.46593465934659,48.57079364388582],[-53.46593465934659,48.585990839314775],[-53.46233462334622,48.5927451483943],[-53.44433444334443,48.59781088020395],[-53.44073440734407,48.60456518928348],[-53.44073440734407,48.611319498363],[-53.4371343713437,48.616385230172654],[-53.422734227342275,48.62313953925218],[-53.41553415534155,48.62313953925218],[-53.38313383133831,48.616385230172654],[-53.35433354333543,48.61469665290278],[-53.34353343533435,48.613008075632905],[-53.30753307533075,48.58936799385455],[-53.300333003330024,48.57923653023525],[-53.31833318333183,48.55221929391712],[-53.3111331113311,48.54884213937734],[-53.29313293132931,48.55221929391712],[-53.27873278732787,48.56066218026652],[-53.27873278732787,48.550530716647245],[-53.275132751327504,48.54039925302794],[-53.26793267932679,48.531956366678514],[-53.26073260732606,48.52689063486889],[-53.24273242732427,48.52689063486889],[-53.239132391323906,48.53364494394842],[-53.23553235532354,48.54377640756769],[-53.23193231932319,48.55390787118699],[-53.213932139321386,48.56741648934607],[-53.17793177931779,48.58936799385455],[-53.163531635316346,48.60118803474373],[-53.170731707317074,48.60963092109313],[-53.15993159931598,48.62482811652208],[-53.15273152731527,48.63158242560161],[-53.14193141931419,48.63664815741126],[-53.13113131131311,48.64002531195101],[-53.10953109531094,48.64002531195101],[-53.098730987309864,48.64677962103056],[-53.098730987309864,48.65015677557031],[-53.08433084330842,48.69912551639692],[-53.07713077130771,48.70419124820657],[-53.069930699306994,48.70081409366679],[-53.073530735307344,48.69068263004749],[-53.06633066330663,48.68055116642822],[-53.05553055530555,48.67717401188844],[-53.044730447304474,48.675485434618565],[-53.03393033930338,48.670419702808914],[-53.02673026730267,48.66028823918961],[-53.019530195301954,48.64002531195101],[-53.012330123301226,48.62989384833173],[-52.98352983529834,48.60456518928348],[-52.97992979929799,48.591056571124426],[-53.00513005130051,48.57585937569547],[-53.00153001530015,48.57079364388582],[-52.99072990729907,48.558973602996645],[-52.98352983529834,48.55390787118699],[-52.997929979299784,48.54715356210747],[-53.01593015930159,48.54208783029782],[-53.02673026730267,48.53533352121829],[-53.03393033930338,48.523513480329115],[-53.03393033930338,48.51675917124959],[-53.044730447304474,48.49987339855076],[-53.048330483304824,48.493119089471236],[-53.048330483304824,48.48467620312181],[-53.048330483304824,48.461036121343454],[-53.0591305913059,48.4357074622952],[-53.08433084330842,48.417133112326496],[-53.14193141931419,48.39687018508792],[-53.15633156331563,48.38842729873849],[-53.18153181531815,48.36141006242036],[-53.188731887318866,48.354655753340836],[-53.221132211322114,48.354655753340836],[-53.239132391323906,48.35972148515049],[-53.271532715327155,48.381672989658966],[-53.28593285932858,48.38505014419874],[-53.31473314733147,48.38336156692884],[-53.325533255332545,48.376607257849315],[-53.33273332733327,48.37491868057944],[-53.33633336333362,48.37998441238909],[-53.33993339933399,48.38673872146862],[-53.347133471334715,48.38842729873849],[-53.35433354333543,48.38673872146862],[-53.36153361533614,48.38336156692884],[-53.35433354333543,48.35972148515049],[-53.38673386733866,48.305687012514255],[-53.36873368733687,48.29386697162508],[-53.38673386733866,48.28542408527565],[-53.44433444334443,48.28542408527565],[-53.45873458734587,48.27698119892625],[-53.46953469534695,48.256718271687646],[-53.49113491134911,48.248275385338246],[-53.54153541535415,48.23983249898882],[-53.548735487354875,48.23476676717917],[-53.573935739357395,48.211126685400814],[-53.60993609936099,48.189175180892335],[-53.62073620736207,48.180732294542935],[-53.63873638736386,48.16891225365376],[-53.66393663936638,48.167223676383855],[-53.6891368913689,48.17060083092363],[-53.753937539375386,48.19255233543211],[-53.775537755377556,48.19761806724176],[-53.804338043380426,48.19761806724176],[-53.84393843938439,48.19086375816221],[-53.854738547385466,48.19592948997186],[-53.865538655386544,48.20774953086104],[-53.87273872738727,48.21956957175021],[-53.876338763387636,48.22632388082977],[-53.905139051390506,48.23645534444904],[-53.926739267392676,48.23645534444904],[-53.941139411394104,48.22632388082977],[-53.94473944739447,48.20099522178151],[-53.941139411394104,48.17735514000316],[-53.93393933939339,48.158780790034456],[-53.926739267392676,48.14189501733563],[-53.915939159391584,48.123320667366926],[-53.912339123391234,48.09461485377892],[-53.905139051390506,48.08448339015962],[-53.804338043380426,48.07435192654032],[-53.725137251372516,48.082794812889716],[-53.685536855368554,48.08110623561984],[-53.66393663936638,48.060843308381266],[-53.725137251372516,48.04058038114266],[-53.786337863378634,48.02707176298361],[-53.854738547385466,48.02707176298361],[-53.90873908739087,48.03889180387279],[-53.92313923139231,48.033826072063135],[-53.90873908739087,48.020317453904056],[-53.887138871388714,48.01525172209443],[-53.840338403384024,48.011874567554656],[-53.81873818738187,48.00849741301488],[-53.79713797137971,48.001743103935354],[-53.775537755377556,48.00005452666548],[-53.739537395373944,48.01694029936431],[-53.685536855368554,48.020317453904056],[-53.66393663936638,48.028760340253484],[-53.627936279362785,48.04902326749206],[-53.60993609936099,48.05408899930171],[-53.61713617136171,48.03889180387279],[-53.624336243362436,48.033826072063135],[-53.62073620736207,48.00512025847513],[-53.64593645936459,47.966282981267824],[-53.69633696336963,47.89705131320264],[-53.72153721537215,47.90211704501229],[-53.786337863378634,47.903805622282164],[-53.786337863378634,47.89705131320264],[-53.753937539375386,47.895362735932736],[-53.725137251372516,47.89029700412311],[-53.728737287372866,47.87003407688451],[-53.73233732337323,47.84301684056638],[-53.739537395373944,47.81768818151815],[-53.764737647376464,47.80755671789885],[-53.77193771937719,47.80080240881932],[-53.779137791377906,47.78560521339037],[-53.789937899378984,47.77378517250119],[-53.804338043380426,47.77716232704097],[-53.82233822338223,47.79067094520002],[-53.829538295382946,47.79911383154945],[-53.836738367383674,47.810933872438625],[-53.84393843938439,47.824442490597676],[-53.86913869138691,47.84301684056638],[-53.89433894338943,47.85821403599533],[-53.915939159391584,47.86327976780498],[-53.930339303393026,47.85314830418568],[-53.876338763387636,47.82781964513745],[-53.876338763387636,47.80755671789885],[-53.85833858338583,47.80080240881932],[-53.854738547385466,47.78560521339037],[-53.854738547385466,47.76703086342167],[-53.84393843938439,47.75858797707224],[-53.83313833138331,47.75183366799271],[-53.829538295382946,47.734947895293885],[-53.83313833138331,47.721439277134834],[-53.854738547385466,47.71806212259506],[-53.84753847538475,47.70624208170588],[-53.80793807938079,47.677536268117876],[-53.79353793537935,47.664027649958825],[-53.764737647376464,47.62519037275152],[-53.739537395373944,47.62012464094187],[-53.72153721537215,47.64376472272022],[-53.70713707137071,47.675847690848],[-53.685536855368554,47.691044886276956],[-53.66753667536675,47.6842905771974],[-53.66753667536675,47.66909338176848],[-53.68193681936819,47.65389618633952],[-53.6891368913689,47.642076145450346],[-53.703537035370346,47.62012464094187],[-53.70713707137071,47.61674748640209],[-53.710737107371074,47.609993177322565],[-53.710737107371074,47.59817313643339],[-53.703537035370346,47.588041672814086],[-53.69273692736927,47.59141882735386],[-53.685536855368554,47.59817313643339],[-53.68193681936819,47.59817313643339],[-53.67113671136711,47.59479598189364],[-53.67113671136711,47.58973025008399],[-53.66753667536675,47.57791020919481],[-53.660336603366034,47.569467322845384],[-53.65673656736567,47.57791020919481],[-53.65673656736567,47.579598786464686],[-53.653136531365305,47.57622163192491],[-53.649536495364956,47.569467322845384],[-53.649536495364956,47.561024436495984],[-53.653136531365305,47.552581550146556],[-53.67113671136711,47.52725289109833],[-53.65673656736567,47.534007200177854],[-53.63153631536315,47.55595870468633],[-53.624336243362436,47.561024436495984],[-53.61713617136171,47.55933585922608],[-53.61353613536134,47.55595870468633],[-53.60993609936099,47.54920439560681],[-53.60993609936099,47.544138663797156],[-53.60633606336063,47.539072931987505],[-53.59553595535955,47.54076150925738],[-53.58833588335882,47.544138663797156],[-53.58113581135811,47.54582724106703],[-53.552335523355225,47.539072931987505],[-53.548735487354875,47.544138663797156],[-53.548735487354875,47.561024436495984],[-53.548735487354875,47.57284447738516],[-53.552335523355225,47.58128736373456],[-53.552335523355225,47.588041672814086],[-53.53433534335343,47.59479598189364],[-53.552335523355225,47.61168175459247],[-53.55953559535595,47.623501795481644],[-53.55593555935559,47.628567527291295],[-53.54153541535415,47.628567527291295],[-53.53433534335343,47.62687895002139],[-53.51273512735126,47.61674748640209],[-53.51633516335163,47.631944681831044],[-53.51273512735126,47.64376472272022],[-53.50913509135091,47.6555847636094],[-53.51993519935199,47.67078195903835],[-53.501935019350185,47.672470536308225],[-53.48753487534874,47.68260199992753],[-53.48033480334803,47.69273346354683],[-53.48033480334803,47.69779919535648],[-53.49113491134911,47.70286492716613],[-53.498334983349835,47.71637354532518],[-53.501935019350185,47.73157074075414],[-53.498334983349835,47.74676793618306],[-53.48753487534874,47.76027655434214],[-53.476734767347665,47.76534228615179],[-53.46953469534695,47.77209659523132],[-53.46593465934659,47.79067094520002],[-53.45873458734587,47.805868140628974],[-53.44073440734407,47.8210653360579],[-53.44433444334443,47.82781964513745],[-53.42993429934299,47.8497711496459],[-53.41913419134191,47.86159119053511],[-53.40833408334083,47.87003407688451],[-53.39393393933939,47.87509980869416],[-53.38313383133831,47.87678838596403],[-53.35433354333543,47.87003407688451],[-53.35433354333543,47.87509980869416],[-53.36513365133651,47.886919849583336],[-53.36153361533614,47.90042846774239],[-53.350733507335065,47.913937085901466],[-53.33993339933399,47.92744570406052],[-53.32913329133291,47.94095432221957],[-53.31473314733147,47.974725867617224],[-53.30393303933039,47.9882344857763],[-53.275132751327504,48.01694029936431],[-53.26793267932679,48.020317453904056],[-53.249932499324984,48.01862887663418],[-53.239132391323906,48.020317453904056],[-53.22833228332283,48.02538318571371],[-53.221132211322114,48.03213749479326],[-53.213932139321386,48.03889180387279],[-53.1851318513185,48.042268958412535],[-53.18153181531815,48.047334690222186],[-53.17793177931779,48.05408899930171],[-53.170731707317074,48.060843308381266],[-53.149131491314904,48.064220462921014],[-53.13113131131311,48.055777576571614],[-53.11673116731167,48.04564611295231],[-53.098730987309864,48.04058038114266],[-53.08073080730807,48.04395753568244],[-53.062730627306266,48.05240042203184],[-53.04113041130411,48.06253188565114],[-53.03033030330303,48.07097477200054],[-52.99072990729907,48.1064348946681],[-52.95112951129511,48.153715058224805],[-52.936729367293665,48.167223676383855],[-52.92232922329222,48.17060083092363],[-52.90072900729007,48.16046936730433],[-52.86472864728647,48.123320667366926],[-52.835928359283585,48.11318920374762],[-52.835928359283585,48.104746317398195],[-52.84672846728466,48.09799200831867],[-52.857528575285755,48.09461485377892],[-52.90432904329043,48.09461485377892],[-52.91512915129151,48.08954912196927],[-52.92232922329222,48.082794812889716],[-52.92592925929259,48.07435192654032],[-52.92952929529295,48.06759761746079],[-52.94752947529474,48.05408899930171],[-52.95472954729547,48.04564611295231],[-52.95832958329582,48.037203226602884],[-52.95832958329582,48.01694029936431],[-52.96552965529655,48.001743103935354],[-52.97992979929799,47.9865459085064],[-52.997929979299784,47.971348713077475],[-53.037530375303746,47.94770863129912],[-53.05193051930519,47.93251143587017],[-53.062730627306266,47.913937085901466],[-53.0591305913059,47.886919849583336],[-53.062730627306266,47.87003407688451],[-53.069930699306994,47.85314830418568],[-53.087930879308786,47.83457395421698],[-53.123931239312384,47.80755671789885],[-53.14193141931419,47.79067094520002],[-53.149131491314904,47.76871944069154],[-53.15273152731527,47.76365370888189],[-53.163531635316346,47.756899399802364],[-53.170731707317074,47.75014509072284],[-53.18153181531815,47.74676793618306],[-53.1851318513185,47.74507935891319],[-53.195931959319594,47.74001362710354],[-53.20313203132031,47.73832504983366],[-53.20673206732067,47.73663647256379],[-53.20313203132031,47.729882163484234],[-53.19233192331923,47.72481643167458],[-53.163531635316346,47.71806212259506],[-53.174331743317424,47.70455350443601],[-53.1851318513185,47.691044886276956],[-53.174331743317424,47.69611061808658],[-53.16713167131671,47.69779919535648],[-53.15993159931598,47.69273346354683],[-53.15633156331563,47.6842905771974],[-53.170731707317074,47.67415911357813],[-53.195931959319594,47.64376472272022],[-53.213932139321386,47.637010413640695],[-53.23193231932319,47.63363325910092],[-53.25353253532535,47.62519037275152],[-53.26073260732606,47.61337033186234],[-53.25353253532535,47.601550290973165],[-53.24273242732427,47.60830460005269],[-53.22833228332283,47.61337033186234],[-53.21753217532175,47.615058909132216],[-53.20313203132031,47.61674748640209],[-53.21753217532175,47.604927445512914],[-53.24273242732427,47.59310740462374],[-53.25353253532535,47.58128736373456],[-53.23193231932319,47.58297594100446],[-53.21033210332102,47.58973025008399],[-53.170731707317074,47.609993177322565],[-53.18153181531815,47.59310740462374],[-53.20673206732067,47.57791020919481],[-53.23553235532354,47.566090168305635],[-53.25713257132571,47.561024436495984],[-53.26073260732606,47.55933585922608],[-53.25353253532535,47.55427012741643],[-53.239132391323906,47.54920439560681],[-53.22833228332283,47.54582724106703],[-53.21753217532175,47.547515818336905],[-53.1851318513185,47.561024436495984],[-53.18153181531815,47.52387573655855],[-53.1851318513185,47.512055695669375],[-53.188731887318866,47.50192423205007],[-53.195931959319594,47.49348134570067],[-53.20313203132031,47.485038459351244],[-53.20313203132031,47.47152984119219],[-53.188731887318866,47.47997272754159],[-53.174331743317424,47.49179276843077],[-53.163531635316346,47.5002356547802],[-53.149131491314904,47.5002356547802],[-53.15273152731527,47.490104191160896],[-53.15273152731527,47.48672703662115],[-53.149131491314904,47.47828415027172],[-53.18153181531815,47.45126691395359],[-53.195931959319594,47.43775829579454],[-53.188731887318866,47.43100398671501],[-53.16713167131671,47.43438114125476],[-53.15633156331563,47.441135450334315],[-53.145531455314554,47.44451260487406],[-53.120331203312034,47.43775829579454],[-53.12753127531275,47.42087252309571],[-53.13113131131311,47.41749536855593],[-53.113131131311306,47.43100398671501],[-53.07713077130771,47.46984126392232],[-53.037530375303746,47.485038459351244],[-52.97272972729726,47.52725289109833],[-52.911529115291145,47.55595870468633],[-52.89352893528935,47.57115590011526],[-52.87552875528755,47.588041672814086],[-52.861128611286105,47.60830460005269],[-52.85032850328503,47.63025610456117],[-52.84312843128431,47.650519031799746],[-52.81792817928179,47.74339078164331],[-52.79992799927999,47.788982367930146],[-52.7711277112771,47.80080240881932],[-52.76392763927639,47.79573667700967],[-52.756727567275675,47.77885090431084],[-52.75312753127531,47.77378517250119],[-52.709927099270985,47.761965131612016],[-52.70272702727027,47.75521082253249],[-52.69912699126991,47.71468496805531],[-52.69912699126991,47.70286492716613],[-52.71712717127171,47.67078195903835],[-52.709927099270985,47.66233907268892],[-52.69192691926919,47.66065049541905],[-52.66672666726667,47.664027649958825],[-52.655926559265595,47.66065049541905],[-52.655926559265595,47.65220760906965],[-52.655926559265595,47.60323886824304],[-52.66312663126631,47.58635309554421],[-52.69192691926919,47.55427012741643],[-52.67752677526775,47.561024436495984],[-52.67032670326702,47.547515818336905],[-52.659526595265945,47.53738435471763],[-52.6451264512645,47.5289414683682],[-52.62712627126271,47.52725289109833]]],[[[-128.8038880388804,52.70105364601892],[-128.82548825488254,52.672347832430916],[-128.8578885788858,52.658839214271836],[-128.89028890288904,52.66052779154171],[-128.92628926289262,52.672347832430916],[-129.0162901629016,52.716250841447845],[-129.04509045090452,52.734825191416576],[-129.0558905589056,52.7415795004961],[-129.05229052290522,52.74495665503585],[-129.04869048690486,52.74833380957563],[-129.04149041490416,52.751710964115404],[-129.0378903789038,52.75508811865515],[-129.0378903789038,52.76184242773468],[-129.06309063090632,52.7685967368142],[-129.07749077490774,52.778728200433505],[-129.10269102691026,52.805745436751636],[-129.109891098911,52.82094263218059],[-129.12069120691206,52.84458271395894],[-129.12429124291242,52.868222795737296],[-129.1170911709117,52.8783542593566],[-129.0918909189092,52.87497710481682],[-129.03069030690307,52.85809133211799],[-129.0162901629016,52.859779909387896],[-129.0270902709027,52.868222795737296],[-129.07029070290702,52.89186287751565],[-129.0378903789038,52.90537149567473],[-129.00549005490055,52.92732300018318],[-128.98748987489876,52.93407730926273],[-128.96588965889657,52.966160277390486],[-128.94788947889478,52.974603163739914],[-128.94788947889478,52.99824324551827],[-128.91548915489153,53.01681759548697],[-128.83628836288364,53.03539194545567],[-128.85068850688506,53.0522777181545],[-128.87588875888758,53.072540645393104],[-128.90468904689047,53.08942641809193],[-128.93348933489335,53.099557881711235],[-128.96228962289624,53.11813223167994],[-129.0162901629016,53.14514946799807],[-129.01269012690128,53.13332942710889],[-129.01269012690128,53.12488654075946],[-129.0090900909009,53.11813223167994],[-129.00189001890018,53.11137792260041],[-128.99828998289982,53.10631219079076],[-128.99468994689948,53.099557881711235],[-128.99108991089912,53.09618072717146],[-128.98028980289803,53.104623613520886],[-128.96948969489694,53.10631219079076],[-128.96228962289624,53.104623613520886],[-128.95868958689587,53.10124645898111],[-128.94788947889478,53.09280357263168],[-128.92268922689226,53.080983531742504],[-128.90828908289083,53.07422922266298],[-128.89028890288904,53.0539662954244],[-128.8830888308883,53.04721198634485],[-128.8650886508865,53.042146254535226],[-128.8650886508865,53.03539194545567],[-128.90468904689047,53.0337033681858],[-128.92268922689226,53.03032621364605],[-128.94068940689408,53.02188332729662],[-128.94788947889478,53.01681759548697],[-128.96588965889657,53.00330897732792],[-128.9730897308973,52.99486609097849],[-128.97668976689766,52.98980035916884],[-128.9838898388984,52.974603163739914],[-128.98748987489876,52.96784885466039],[-129.01269012690128,52.94589735015191],[-129.0558905589056,52.917191536563905],[-129.0990909909099,52.903682918404826],[-129.12069120691206,52.922257268373556],[-129.12429124291242,52.93238873199283],[-129.16029160291603,52.930700154722956],[-129.17829178291782,52.93745446380248],[-129.18549185491855,52.94927450469166],[-129.18909189091892,52.96953743193026],[-129.19269192691928,53.00499755459779],[-129.18909189091892,53.023571904566495],[-129.1710917109171,53.04721198634485],[-129.16749167491673,53.06072060450393],[-129.16029160291603,53.07422922266298],[-129.14229142291424,53.08267210901241],[-129.12789127891278,53.080983531742504],[-129.12069120691206,53.07085206812323],[-129.0918909189092,53.08773784082206],[-129.07749077490774,53.11137792260041],[-129.07749077490774,53.13670658164864],[-129.07749077490774,53.162035240696895],[-129.0810908109081,53.18736389974512],[-129.0810908109081,53.2008725179042],[-129.06669066690665,53.21438113606325],[-129.06309063090632,53.23126690876208],[-129.06669066690665,53.24984125873078],[-129.07029070290702,53.26166129961996],[-129.07749077490774,53.273481340509136],[-129.08829088290884,53.281924226858564],[-129.08829088290884,53.290367113207964],[-129.07749077490774,53.30218715409714],[-129.06309063090632,53.30725288590679],[-129.04149041490416,53.31063004044657],[-129.01989019890198,53.31063004044657],[-128.97668976689766,53.295432845017615],[-128.90468904689047,53.29374426774774],[-128.86868868688686,53.27179276323926],[-128.79668796687966,53.219446867872904],[-128.7030870308703,53.17385528158607],[-128.6778867788678,53.16541239523664],[-128.63468634686348,53.16372381796677],[-128.62028620286202,53.15528093161734],[-128.5878858788588,53.113066499870285],[-128.58428584285843,53.108000768060634],[-128.58068580685807,53.10124645898111],[-128.53748537485376,53.02019475002675],[-128.52668526685267,52.98135747281944],[-128.5230852308523,52.93407730926273],[-128.5230852308523,52.89186287751565],[-128.5338853388534,52.84627129122882],[-128.56628566285661,52.743268077765975],[-128.56988569885698,52.738202345956324],[-128.58428584285843,52.7415795004961],[-128.5770857708577,52.70105364601892],[-128.58428584285843,52.68585645058997],[-128.6058860588606,52.66559352335136],[-128.59868598685986,52.667282100621264],[-128.59148591485916,52.66559352335136],[-128.58428584285843,52.66390494608149],[-128.5770857708577,52.658839214271836],[-128.58068580685807,52.648707750652534],[-128.5878858788588,52.623379091604306],[-128.5950859508595,52.61493620525488],[-128.6058860588606,52.61155905071513],[-128.7030870308703,52.61155905071513],[-128.72468724687246,52.60818189617535],[-128.74988749887498,52.59805043255605],[-128.7570875708757,52.6031161643657],[-128.74628746287462,52.62169051433443],[-128.73908739087392,52.63857628703326],[-128.73548735487356,52.65546205973209],[-128.73548735487356,52.672347832430916],[-128.73548735487356,52.69092218239962],[-128.74628746287462,52.72638230506715],[-128.74988749887498,52.74495665503585],[-128.74268742687428,52.76353100500458],[-128.71748717487174,52.79561397313233],[-128.71388713887137,52.81249974583116],[-128.71028710287104,52.836139827609514],[-128.7030870308703,52.84795986849869],[-128.68868688686888,52.854714177578245],[-128.67428674286742,52.86484564119752],[-128.65268652686527,52.90874865021448],[-128.6490864908649,52.915502959294],[-128.64548645486454,52.93407730926273],[-128.64548645486454,52.95434023650131],[-128.64548645486454,52.95940596831096],[-128.65268652686527,52.966160277390486],[-128.66348663486633,52.97122600920014],[-128.67428674286742,52.97122600920014],[-128.6778867788678,52.96447170012061],[-128.67068670686706,52.92732300018318],[-128.67068670686706,52.90874865021448],[-128.68508685086852,52.898617186595175],[-128.7030870308703,52.903682918404826],[-128.71748717487174,52.912125804754254],[-128.7318873188732,52.91888011383378],[-128.74988749887498,52.91381438202413],[-128.73548735487356,52.90030576386508],[-128.72828728287283,52.876665682086696],[-128.72828728287283,52.854714177578245],[-128.74628746287462,52.84458271395894],[-128.7570875708757,52.83445125033964],[-128.7642876428764,52.81249974583116],[-128.76788767887678,52.7685967368142],[-128.77868778687787,52.729759459606925],[-128.77868778687787,52.71456226417797],[-128.76068760687608,52.68754502785984],[-128.7570875708757,52.67741356424054],[-128.76068760687608,52.66897067789114],[-128.77148771487714,52.66559352335136],[-128.78228782287823,52.67065925516101],[-128.78948789487896,52.67910214151044],[-128.79668796687966,52.69092218239962],[-128.8038880388804,52.70105364601892]]],[[[-130.25110251102512,53.89318919855609],[-130.2331023310233,53.89825493036574],[-130.19710197101972,53.91682928033444],[-130.18270182701826,53.91345212579469],[-130.15750157501574,53.89825493036574],[-130.1071010710107,53.879680580397036],[-130.08190081900818,53.861106230428334],[-130.0711007110071,53.85604049861868],[-130.03870038700387,53.85097476680903],[-130.03150031500314,53.847597612269254],[-130.02790027900278,53.839154725919855],[-130.01710017100172,53.83240041684033],[-129.99549995499956,53.8239575304909],[-129.93429934299343,53.781743098743846],[-129.90189901899018,53.77330021239442],[-129.89109891098911,53.76654590331489],[-129.87669876698766,53.75134870788594],[-129.8658986589866,53.74628297607629],[-129.84069840698407,53.73952866699676],[-129.82989829898298,53.73615151245701],[-129.77589775897758,53.68887134890028],[-129.76869768697688,53.6770513080111],[-129.76149761497615,53.670296998931576],[-129.6750967509675,53.59262244451696],[-129.53469534695347,53.50819358102285],[-129.52389523895238,53.49975069467342],[-129.51669516695168,53.48793065378425],[-129.53469534695347,53.482864921974596],[-129.5490954909549,53.482864921974596],[-129.56709567095672,53.48455349924447],[-129.61749617496176,53.49975069467342],[-129.62829628296282,53.496373540133646],[-129.6390963909639,53.48117634470472],[-129.61749617496176,53.48455349924447],[-129.61029610296103,53.48793065378425],[-129.58869588695887,53.474422035625196],[-129.559895598956,53.47104488108542],[-129.49869498694986,53.474422035625196],[-129.4770947709477,53.46766772654564],[-129.45189451894518,53.45247053111672],[-129.42669426694266,53.43558475841789],[-129.41229412294123,53.41869898571906],[-129.40149401494014,53.398436058480456],[-129.3690936909369,53.38323886305153],[-129.33669336693367,53.36128735854305],[-129.34749347493474,53.327515813145396],[-129.32589325893258,53.295432845017615],[-129.32949329493294,53.26334987688983],[-129.3618936189362,53.24477552692113],[-129.37989379893799,53.28023564958866],[-129.39789397893978,53.292055690477866],[-129.39069390693908,53.308941463176694],[-129.4050940509405,53.33258154495505],[-129.43029430294303,53.335958699494796],[-129.44109441094412,53.31569577225622],[-129.4590945909459,53.295432845017615],[-129.47349473494734,53.29712142228749],[-129.50229502295022,53.317384349526094],[-129.5130951309513,53.31063004044657],[-129.50949509495095,53.29712142228749],[-129.50229502295022,53.281924226858564],[-129.50229502295022,53.268415608699485],[-129.48069480694807,53.24477552692113],[-129.48429484294843,53.224512599682555],[-129.49869498694986,53.21606971333313],[-129.52389523895238,53.2278897542223],[-129.54549545495456,53.217758290603],[-129.56709567095672,53.21606971333313],[-129.5850958509585,53.224512599682555],[-129.59229592295924,53.24477552692113],[-129.6030960309603,53.25659556781031],[-129.64629646296464,53.295432845017615],[-129.66069660696607,53.308941463176694],[-129.65349653496534,53.31063004044657],[-129.64269642696428,53.31569577225622],[-129.6390963909639,53.317384349526094],[-129.6750967509675,53.330892967685145],[-129.6750967509675,53.3376472767647],[-129.66069660696607,53.344401585844224],[-129.67149671496713,53.349467317653875],[-129.6858968589686,53.344401585844224],[-129.70029700297002,53.33933585403457],[-129.71469714697147,53.3376472767647],[-129.72549725497254,53.34102443130445],[-129.76149761497615,53.3646645130828],[-129.76509765097651,53.36973024489245],[-129.76149761497615,53.37648455397198],[-129.76149761497615,53.38323886305153],[-129.76509765097651,53.384927440321405],[-129.79749797497976,53.37817313124188],[-129.80829808298083,53.384927440321405],[-129.82269822698225,53.40519036755998],[-129.82989829898298,53.411944676639536],[-129.82269822698225,53.44065049022754],[-129.81909819098192,53.45922484019624],[-129.82269822698225,53.47104488108542],[-129.83349833498335,53.47273345835529],[-129.85149851498514,53.46766772654564],[-129.87669876698766,53.46597914927577],[-129.89829898298984,53.477799190164944],[-129.89469894698948,53.48793065378425],[-129.87669876698766,53.52001362191203],[-129.8730987309873,53.536899394610856],[-129.87669876698766,53.553785167309684],[-129.88749887498875,53.562228053659084],[-129.90549905499054,53.56391663092896],[-129.9270992709927,53.562228053659084],[-129.91989919899197,53.572359517278386],[-129.9090990909909,53.57742524908804],[-129.88749887498875,53.58417955816756],[-129.91269912699127,53.59599959905674],[-129.9270992709927,53.59599959905674],[-129.94149941499415,53.59093386724709],[-129.94149941499415,53.59768817632661],[-129.93429934299343,53.60106533086639],[-129.91269912699127,53.61119679448569],[-129.9378993789938,53.61963968083509],[-129.95589955899558,53.60950821721579],[-129.96669966699667,53.59262244451696],[-129.98469984699847,53.58417955816756],[-130.03150031500314,53.580802403627786],[-130.04950049500496,53.58755671270734],[-130.05670056700566,53.607819639945916],[-130.0351003510035,53.63145972172427],[-129.97749977499774,53.643279762613446],[-129.91629916299163,53.643279762613446],[-129.88029880298802,53.63145972172427],[-129.8730987309873,53.6399026080737],[-129.90189901899018,53.6584769580424],[-129.94509945099452,53.66354268985205],[-129.9918999189992,53.660165535312274],[-130.03150031500314,53.65341122623275],[-130.05670056700566,53.6399026080737],[-130.07470074700745,53.638214030803795],[-130.09270092700928,53.64665691715322],[-130.09630096300964,53.661854112582176],[-130.09270092700928,53.692248503440055],[-130.09990099901,53.70744569886901],[-130.16830168301684,53.727708626107585],[-130.20070200702008,53.73108578064736],[-130.21150211502115,53.73615151245701],[-130.2151021510215,53.754725862425715],[-130.21150211502115,53.77161163512454],[-130.20430204302042,53.785120253283594],[-130.20430204302042,53.80200602598242],[-130.2151021510215,53.817203221411376],[-130.22950229502294,53.825646107760775],[-130.29070290702907,53.83746614864995],[-130.27630276302762,53.87123769404761],[-130.26910269102692,53.88643488947656],[-130.25110251102512,53.89318919855609]]],[[[142.5308253082531,54.29675916605805],[142.53802538025383,54.29675916605805],[142.5308253082531,54.293382011518304],[142.520025200252,54.284939125168876],[142.520025200252,54.276496238819476],[142.52722527225274,54.266364775200174],[142.5308253082531,54.25285615704112],[142.5416254162542,54.23765896161217],[142.57042570425705,54.23428180707239],[142.58842588425887,54.24779042523147],[142.57042570425705,54.276496238819476],[142.58842588425887,54.279873393359225],[142.610026100261,54.27480766154957],[142.62802628026282,54.26805335247005],[142.63522635226354,54.266364775200174],[142.649626496265,54.283250547899],[142.64602646026464,54.29000485697853],[142.63522635226354,54.29675916605805],[142.62442624426245,54.31026778421713],[142.62442624426245,54.32715355691596],[142.63522635226354,54.333907865995485],[142.6532265322653,54.338973597805136],[142.67122671226713,54.34910506142441],[142.67842678426786,54.35923652504371],[142.68562685626858,54.369367988663015],[142.68562685626858,54.37949945228232],[142.6748267482675,54.391319493171494],[142.6748267482675,54.404828111330545],[142.68202682026822,54.41664815221972],[142.68922689226895,54.423402461299276],[142.70362703627035,54.426779615839024],[142.72162721627217,54.42509103856915],[142.73242732427326,54.42171388402937],[142.75042750427508,54.40313953406067],[142.75762757627575,54.39469664771124],[142.76482764827648,54.37105656593289],[142.7720277202772,54.36261367958349],[142.7936279362794,54.347416484154536],[142.80442804428043,54.338973597805136],[142.81882818828188,54.301824897867704],[142.84402844028443,54.279873393359225],[142.89442894428947,54.24610184796157],[142.9592295922959,54.17011587081686],[143.00243002430028,54.13465574814933],[143.01323013230132,54.119458552720374],[143.00963009630095,54.09075273913237],[142.99882998829992,54.067112657354016],[142.98802988029882,54.04684973011541],[142.97362973629737,54.02827538014671],[142.93762937629378,53.99112668020928],[142.9268292682927,53.97592948478035],[142.9052290522905,53.91176354852482],[142.9016290162902,53.901632084905515],[142.8908289082891,53.89318919855609],[142.88722887228874,53.89318919855609],[142.88002880028802,53.89487777582599],[142.8728287282873,53.89487777582599],[142.86562865628656,53.89318919855609],[142.8620286202862,53.888123466746435],[142.85842858428583,53.883057734936784],[142.85122851228516,53.87123769404761],[142.89802898028984,53.87630342585726],[142.9160291602916,53.874614848587385],[142.93402934029342,53.85772907588856],[142.93402934029342,53.84928618953916],[142.94122941229415,53.8239575304909],[142.94842948429488,53.81044891233185],[142.97362973629737,53.754725862425715],[142.99522995229955,53.71757716248828],[143.00243002430028,53.700691389789455],[142.95562955629555,53.781743098743846],[142.9268292682927,53.82902326230055],[142.89802898028984,53.8239575304909],[142.8908289082891,53.8138260668716],[142.9016290162902,53.790185985093245],[142.9052290522905,53.76654590331489],[142.91242912429124,53.76148017150524],[142.94122941229415,53.749660130616064],[142.96282962829628,53.69900281251958],[142.98802988029882,53.69393708070993],[142.96642966429664,53.6669198443918],[143.00243002430028,53.6669198443918],[143.01683016830168,53.660165535312274],[143.02763027630277,53.64665691715322],[143.02043020430204,53.643279762613446],[143.01323013230132,53.638214030803795],[143.00243002430028,53.63145972172427],[142.99522995229955,53.62639398991462],[143.01323013230132,53.61795110356522],[143.05283052830532,53.607819639945916],[143.07083070830708,53.59768817632661],[143.060030600306,53.589245289977214],[143.0456304563046,53.58586813543744],[143.03123031230314,53.58586813543744],[143.01683016830168,53.59093386724709],[143.01323013230132,53.58249098089769],[143.0060300603006,53.575736671818134],[142.99882998829992,53.572359517278386],[142.98802988029882,53.57067094000851],[142.98802988029882,53.562228053659084],[143.00243002430028,53.55716232184943],[143.03123031230314,53.540276549150605],[143.04203042030423,53.536899394610856],[143.05643056430563,53.53858797188073],[143.09243092430927,53.56053947638921],[143.09963099631,53.553785167309684],[143.11043110431103,53.536899394610856],[143.12123121231213,53.518325044642125],[143.1248312483125,53.504816426483075],[143.12843128431285,53.496373540133646],[143.13203132031322,53.48624207651437],[143.13203132031322,53.477799190164944],[143.1248312483125,53.46766772654564],[143.1140311403114,53.46597914927577],[143.09963099631,53.47273345835529],[143.08163081630818,53.474422035625196],[143.07083070830708,53.46091341746612],[143.07083070830708,53.44909337657694],[143.0780307803078,53.442339067497414],[143.0888308883089,53.43896191295764],[143.09603096030963,53.433896181147986],[143.10323103231036,53.42714187206846],[143.10683106831067,53.42545329479859],[143.11043110431103,53.420387562988935],[143.11043110431103,53.406878944829884],[143.10683106831067,53.40012463575036],[143.09963099631,53.393370326670805],[143.09243092430927,53.388304594861154],[143.09243092430927,53.38155028578163],[143.09963099631,53.37817313124188],[143.11043110431103,53.37817313124188],[143.11763117631176,53.379861708511754],[143.1572315723157,53.39505890394071],[143.1680316803168,53.398436058480456],[143.18243182431826,53.398436058480456],[143.1968319683197,53.388304594861154],[143.2112321123211,53.362975935812926],[143.24723247232475,53.25659556781031],[143.25443254432548,53.21606971333313],[143.27963279632797,53.17216670431617],[143.29043290432907,53.15190377707759],[143.29403294032943,53.08436068628228],[143.30123301233016,53.06747491358345],[143.3120331203312,53.04890056361475],[143.31563315633156,53.028637636376146],[143.31923319233192,52.98135747281944],[143.32643326433265,52.93576588653261],[143.33723337233374,52.91381438202413],[143.34803348033483,52.895240032055426],[143.35883358833587,52.87159995027707],[143.3516335163352,52.849648445768594],[143.32643326433265,52.80912259129141],[143.33363333633338,52.78548250951303],[143.33723337233374,52.7601538504648],[143.33723337233374,52.70443080055867],[143.32643326433265,52.62169051433443],[143.330033300333,52.6031161643657],[143.32643326433265,52.587918968936776],[143.30483304833052,52.471407137314856],[143.2976329763298,52.45452136461603],[143.2760327603276,52.42074981921837],[143.25083250832512,52.39035542836049],[143.22563225632257,52.36164961477249],[143.19323193231935,52.33632095572423],[143.20403204032044,52.381912542011065],[143.20763207632075,52.395421160170145],[143.20403204032044,52.40555262378945],[143.20043200432008,52.41568408740872],[143.1968319683197,52.42581555102802],[143.20763207632075,52.4393241691871],[143.22563225632257,52.4477670555365],[143.24003240032403,52.4477670555365],[143.25443254432548,52.4477670555365],[143.26523265232652,52.44945563280638],[143.27243272432725,52.462964250965456],[143.26163261632615,52.471407137314856],[143.23643236432366,52.48153860093416],[143.2436324363244,52.48829291001368],[143.2868328683287,52.5659674644283],[143.29043290432907,52.577787505317474],[143.29043290432907,52.586230391666874],[143.29403294032943,52.591296123476525],[143.29043290432907,52.5946732780163],[143.2760327603276,52.59805043255605],[143.26883268832688,52.59805043255605],[143.26163261632615,52.59805043255605],[143.25443254432548,52.5946732780163],[143.25083250832512,52.591296123476525],[143.25083250832512,52.587918968936776],[143.25083250832512,52.56259030988852],[143.24723247232475,52.55921315534877],[143.2436324363244,52.55752457807887],[143.23643236432366,52.55752457807887],[143.23643236432366,52.55245884626922],[143.23643236432366,52.547393114459595],[143.24003240032403,52.54401595991982],[143.24003240032403,52.542327382649944],[143.22923229232293,52.51868730087159],[143.19323193231935,52.47309571458476],[143.1788317883179,52.44607847826663],[143.16443164431644,52.403864046519544],[143.16083160831607,52.39204400563037],[143.12843128431285,52.35827246023271],[143.11763117631176,52.338009532994135],[143.12843128431285,52.32618949210496],[143.14643146431467,52.32787806937483],[143.16083160831607,52.34476384207366],[143.1680316803168,52.34476384207366],[143.1680316803168,52.332943801184484],[143.1788317883179,52.31436945121578],[143.17523175231753,52.305926564866354],[143.1680316803168,52.29410652397718],[143.1680316803168,52.283975060357875],[143.17163171631717,52.275532174008475],[143.17163171631717,52.26877786492895],[143.1572315723157,52.20292335140351],[143.15003150031504,52.12018306517925],[143.14643146431467,52.12018306517925],[143.1248312483125,52.145511724227504],[143.1140311403114,52.15226603330703],[143.11043110431103,52.14888887876725],[143.11043110431103,52.1353802606082],[143.10683106831067,52.1252487969889],[143.10323103231036,52.11342875609972],[143.09603096030963,52.10498586975032],[143.13923139231395,52.08978867432137],[143.13203132031322,52.07965721070207],[143.13203132031322,52.06783716981289],[143.13923139231395,52.04926281984419],[143.13923139231395,52.03744277895501],[143.13563135631358,52.030688469875486],[143.13923139231395,52.02393416079596],[143.15003150031504,52.012114119906755],[143.16083160831607,51.99522834720793],[143.16083160831607,51.97834257450913],[143.15003150031504,51.968211110889825],[143.1248312483125,51.96652253361992],[143.13203132031322,51.95639107000065],[143.1428314283143,51.92430810187287],[143.15003150031504,51.919242370063216],[143.16443164431644,51.914176638253565],[143.16443164431644,51.90235659736439],[143.16083160831607,51.887159401935435],[143.16443164431644,51.873650783776384],[143.17523175231753,51.86689647469686],[143.19323193231935,51.85845358834743],[143.21483214832148,51.85507643380768],[143.2220322203222,51.86014216561733],[143.22563225632257,51.873650783776384],[143.2328323283233,51.887159401935435],[143.24003240032403,51.892225133745086],[143.25443254432548,51.83650208383898],[143.3120331203312,51.753761797614715],[143.31923319233192,51.70648163405801],[143.2976329763298,51.71323594313753],[143.2760327603276,51.69972732497848],[143.26163261632615,51.67777582047],[143.25083250832512,51.642315697802445],[143.24003240032403,51.62205277056387],[143.23643236432366,51.61360988421444],[143.23643236432366,51.601789843325264],[143.24003240032403,51.58152691608669],[143.24003240032403,51.56970687519751],[143.23643236432366,51.557886834308334],[143.22563225632257,51.53762390706973],[143.2220322203222,51.530869597990204],[143.22563225632257,51.522426711640776],[143.2328323283233,51.5122952480215],[143.24003240032403,51.50722951621185],[143.27243272432725,51.5207381343709],[143.2976329763298,51.517360979831125],[143.31923319233192,51.508918093481725],[143.33723337233374,51.508918093481725],[143.34803348033483,51.52411528891068],[143.34443344433447,51.549443947958906],[143.33363333633338,51.57308402973726],[143.32643326433265,51.58321549335656],[143.32643326433265,51.593346956975864],[143.33363333633338,51.61529846148434],[143.34803348033483,51.63556138872292],[143.3660336603366,51.64569285234222],[143.37323373233733,51.63724996599282],[143.38043380433805,51.61698703875422],[143.38403384033842,51.579838338816785],[143.3948339483395,51.56464114338786],[143.44883448834491,51.508918093481725],[143.4632346323463,51.47008081627442],[143.4740347403474,51.34343752103322],[143.4416344163442,51.36707760281158],[143.42723427234273,51.370454757351354],[143.41643416434164,51.36876618008145],[143.38043380433805,51.35019183011275],[143.38763387633878,51.34343752103322],[143.40203402034024,51.3366832119537],[143.41283412834127,51.329928902874144],[143.43443434434346,51.321486016524744],[143.43443434434346,51.31642028471509],[143.43443434434346,51.313043130175345],[143.43443434434346,51.30966597563557],[143.44523445234455,51.30460024382592],[143.45603456034564,51.30122308928614],[143.46683466834668,51.29615735747652],[143.4740347403474,51.28940304839696],[143.47763477634777,51.28096016204756],[143.47763477634777,51.264074389348735],[143.4848348483485,51.25394292572943],[143.47763477634777,51.250565771189684],[143.47763477634777,51.24718861664991],[143.4740347403474,51.24043430757038],[143.48123481234813,51.23874573030048],[143.48843488434886,51.23536857576073],[143.4956349563496,51.23367999849086],[143.49203492034923,51.228614266681205],[143.4848348483485,51.21341707125225],[143.51723517235172,51.22017138033178],[143.52083520835208,51.24718861664991],[143.510035100351,51.28096016204756],[143.4956349563496,51.30966597563557],[143.52083520835208,51.28433731658731],[143.5388353883539,51.24043430757038],[143.58563585635858,51.01078779886632],[143.67923679236793,50.73723828114532],[143.70083700837012,50.60552925409448],[143.7908379083791,50.310028231865004],[143.80883808838092,50.2728795319276],[143.90963909639095,50.15130196849603],[144.00324003240036,50.01283863236566],[144.0428404284043,49.89801537801364],[144.0788407884079,49.83722659629785],[144.08964089640898,49.80514362817007],[144.11844118441184,49.76799492823267],[144.12564125641256,49.74773200099406],[144.1328413284133,49.66161456023005],[144.13644136441366,49.63966305572157],[144.1508415084151,49.62277728302274],[144.1652416524165,49.605891510323914],[144.22284222842228,49.53328268771898],[144.230042300423,49.51639691502015],[144.21924219242192,49.46236244238389],[144.22284222842228,49.43872236060554],[144.2840428404284,49.249601706378684],[144.3848438484385,49.07230109304098],[144.41004410044104,49.03852954764335],[144.44244442444426,49.013200888595094],[144.66564665646655,48.88993474789365],[144.68364683646837,48.87304897519482],[144.6908469084691,48.86460608884542],[144.69444694446946,48.85616320249599],[144.69444694446946,48.835900275257416],[144.69804698046983,48.82576881163811],[144.70524705247055,48.803817307129634],[144.70884708847092,48.79368584351033],[144.70524705247055,48.781865802621155],[144.6908469084691,48.768357184462104],[144.68724687246873,48.75653714357293],[144.69444694446946,48.716011289095746],[144.7016470164702,48.688994052777616],[144.72324723247232,48.67210828007879],[144.74124741247414,48.65859966191974],[144.7556475564756,48.643402466490784],[144.73044730447305,48.63833673468113],[144.69804698046983,48.643402466490784],[144.67644676446764,48.656911084649835],[144.680046800468,48.678862589158314],[144.66204662046624,48.70081409366679],[144.65844658446588,48.724454175445146],[144.6548465484655,48.7497828344934],[144.6476464764648,48.78017722535128],[144.63324633246333,48.808883038939285],[144.5036450364504,48.94903495233956],[144.47844478444784,48.95916641595886],[144.47124471244712,48.964232147768485],[144.44604446044463,48.991249384086615],[144.43524435244353,48.99969227043604],[144.4172441724417,49.00644657951557],[144.38124381243813,49.013200888595094],[144.36684366843667,49.01995519767462],[144.32724327243272,49.05541532034215],[144.31644316443163,49.05710389761205],[144.30204302043023,49.0621696294217],[144.29124291242914,49.06892393850123],[144.28044280442805,49.07905540212053],[144.27324273242732,49.089186865739805],[144.26244262442623,49.11282694751819],[144.25524255242556,49.12295841113746],[144.24444244442446,49.13140129748689],[144.10044100441007,49.23102735640995],[144.05724057240576,49.25297886091843],[144.00684006840072,49.26986463361726],[143.70083700837012,49.30532475628479],[143.69003690036902,49.312079065364344],[143.68643686436866,49.32221052898362],[143.72963729637297,49.3357191471427],[143.49923499234995,49.34922776530175],[143.48123481234813,49.352604919841525],[143.4632346323463,49.36273638346083],[143.44523445234455,49.37962215615963],[143.42723427234273,49.393130774318706],[143.40203402034024,49.39988508339823],[143.30123301233016,49.40495081520788],[143.2760327603276,49.401573660668106],[143.2580325803258,49.393130774318706],[143.25083250832512,49.3728678470801],[143.26523265232652,49.35935922892105],[143.3120331203312,49.34247345622222],[143.31923319233192,49.34078487895235],[143.32643326433265,49.34247345622222],[143.330033300333,49.34078487895235],[143.330033300333,49.33234199260292],[143.330033300333,49.32896483806317],[143.32283322833229,49.32727626079327],[143.31923319233192,49.32389910625352],[143.32283322833229,49.31883337444387],[143.330033300333,49.31376764263422],[143.34443344433447,49.31545621990409],[143.35523355233556,49.320521951713744],[143.3660336603366,49.32221052898362],[143.6180361803618,49.32389910625352],[143.66843668436684,49.31545621990409],[143.63963639636398,49.30532475628479],[143.36963369633696,49.298570447205265],[143.17523175231753,49.24622455183891],[143.14643146431467,49.232715933679856],[143.07083070830708,49.18543577012312],[143.03843038430387,49.156729956535116],[143.00963009630095,49.12295841113746],[142.98442984429846,49.08243255666028],[142.97362973629737,49.045283856722875],[142.97722977229773,49.00644657951557],[142.98802988029882,48.95916641595886],[142.98802988029882,48.91695198421178],[142.970029700297,48.87811470700447],[142.91962919629196,48.80719446166941],[142.88722887228874,48.73627421633432],[142.7936279362794,48.56235075753642],[142.72162721627217,48.4086902259771],[142.65682656826567,48.2702268898467],[142.61362613626136,48.19086375816221],[142.54882548825492,48.020317453904056],[142.54522545225456,48.01356314482453],[142.5416254162542,48.011874567554656],[142.53802538025383,48.01018599028478],[142.53442534425346,48.001743103935354],[142.53802538025383,48.00005452666548],[142.5416254162542,47.9966773721257],[142.54882548825492,47.99498879485583],[142.54882548825492,47.9882344857763],[142.54882548825492,47.94770863129912],[142.53802538025383,47.92069139498099],[142.53442534425346,47.91055993136169],[142.53442534425346,47.89029700412311],[142.54522545225456,47.76703086342167],[142.59202592025923,47.642076145450346],[142.63162631626318,47.58128736373456],[142.74682746827472,47.44451260487406],[142.739627396274,47.44620118214394],[142.71442714427144,47.44451260487406],[142.71442714427144,47.43775829579454],[142.72162721627217,47.43100398671501],[142.73602736027362,47.42424967763549],[142.76122761227612,47.43100398671501],[142.78642786427866,47.427626832175235],[142.81522815228152,47.419183945825836],[142.88002880028802,47.38878955496793],[142.91242912429124,47.365149473189575],[143.01683016830168,47.253703373377334],[143.0240302403024,47.235129023408604],[143.0240302403024,47.21148894163025],[143.04203042030423,47.14901158264459],[143.04203042030423,47.128748655406014],[143.03123031230314,47.08315706911918],[143.03123031230314,47.071337028230005],[143.07083070830708,47.01899113286362],[143.10323103231036,46.94807088752856],[143.10683106831067,46.927807960289954],[143.11043110431103,46.905856455781475],[143.12123121231213,46.88728210581277],[143.12123121231213,46.875462064923596],[143.09603096030963,46.875462064923596],[143.10683106831067,46.865330601304294],[143.12123121231213,46.856887714954894],[143.13923139231395,46.85519913768502],[143.15003150031504,46.87377348765372],[143.16443164431644,46.87208491038385],[143.17523175231753,46.861953446764545],[143.17163171631717,46.848444828605466],[143.15003150031504,46.840001942256066],[143.11763117631176,46.84169051952594],[143.0888308883089,46.83831336498619],[143.08523085230854,46.812984705937936],[143.09243092430927,46.80285324231863],[143.10683106831067,46.79272177869936],[143.12123121231213,46.78427889234993],[143.13563135631358,46.77921316054028],[143.13923139231395,46.77414742873063],[143.16083160831607,46.7386873060631],[143.1680316803168,46.71673580155462],[143.17163171631717,46.70829291520522],[143.18603186031862,46.70491576066544],[143.20403204032044,46.70660433793532],[143.22563225632257,46.715047224284746],[143.24003240032403,46.71673580155462],[143.25443254432548,46.715047224284746],[143.28323283232834,46.70660433793532],[143.2976329763298,46.70491576066544],[143.30843308433083,46.701538606125695],[143.330033300333,46.68634141069674],[143.3408334083341,46.682964256156964],[143.3660336603366,46.68634141069674],[143.38043380433805,46.69478429704614],[143.39123391233915,46.70829291520522],[143.38403384033842,46.72517868790405],[143.36963369633696,46.7386873060631],[143.34803348033483,46.7488187696824],[143.32283322833229,46.75557307876193],[143.2868328683287,46.76232738784145],[143.25443254432548,46.77583600600053],[143.24003240032403,46.77921316054028],[143.22923229232293,46.780901737810154],[143.20403204032044,46.777524583270406],[143.19323193231935,46.77921316054028],[143.1788317883179,46.79272177869936],[143.17163171631717,46.812984705937936],[143.1788317883179,46.83324763317654],[143.1968319683197,46.840001942256066],[143.21843218432184,46.834936210446415],[143.2976329763298,46.80116466504876],[143.31923319233192,46.79609893323911],[143.3948339483395,46.794410355969234],[143.420034200342,46.799476087778885],[143.42723427234273,46.81467328320781],[143.43803438034382,46.83155905590664],[143.45603456034564,46.848444828605466],[143.47763477634777,46.82818190136689],[143.49923499234995,46.80116466504876],[143.510035100351,46.77077027419088],[143.51723517235172,46.742064460602876],[143.51723517235172,46.679587101617216],[143.52083520835208,46.64919271075931],[143.53523535235354,46.617109742631555],[143.53523535235354,46.60697827901225],[143.53163531635317,46.598535392662825],[143.5280352803528,46.5917810835833],[143.52443524435245,46.585026774503774],[143.5280352803528,46.57827246542425],[143.53523535235354,46.56645242453507],[143.549635496355,46.505663642819286],[143.5748357483575,46.44825201564328],[143.57843578435785,46.4178576247854],[143.55683556835572,46.39590612027692],[143.5748357483575,46.389151811197394],[143.61083610836107,46.38408607938774],[143.62523625236253,46.37395461576844],[143.5928359283593,46.353691688529835],[143.58203582035821,46.345248802180436],[143.57843578435785,46.33511733856113],[143.5748357483575,46.309788679512906],[143.57123571235712,46.2996572158936],[143.5640356403564,46.29459148408395],[143.55323553235536,46.2895257522743],[143.54243542435427,46.28446002046465],[143.53523535235354,46.27601713411525],[143.53523535235354,46.26588567049595],[143.52443524435245,46.23886843417782],[143.510035100351,46.22198266147899],[143.47763477634777,46.18989969335124],[143.47043470434704,46.17301392065241],[143.47763477634777,46.10715940712697],[143.4740347403474,46.08689647988837],[143.46683466834668,46.08014217080884],[143.45963459634595,46.07676501626909],[143.45243452434528,46.07001070718954],[143.44523445234455,46.046370625411186],[143.4416344163442,46.03623916179191],[143.43803438034382,46.02779627544248],[143.4308343083431,46.02441912090271],[143.420034200342,46.03623916179191],[143.41643416434164,46.059879243570265],[143.41283412834127,46.08520790261849],[143.41283412834127,46.10209367531732],[143.42363423634237,46.11560229347637],[143.42723427234273,46.127422334365576],[143.420034200342,46.14768526160415],[143.420034200342,46.15950530249333],[143.42363423634237,46.16963676611263],[143.42723427234273,46.179768229731934],[143.42723427234273,46.20340831151029],[143.420034200342,46.223671238748864],[143.38403384033842,46.31654298859243],[143.38043380433805,46.33680591583101],[143.33723337233374,46.40941473843597],[143.3516335163352,46.43305482021432],[143.34803348033483,46.45331774745293],[143.33723337233374,46.470203520151756],[143.330033300333,46.48877787012046],[143.33723337233374,46.497220756469886],[143.34803348033483,46.495532179199984],[143.36243362433623,46.492155024660235],[143.37323373233733,46.492155024660235],[143.38043380433805,46.49890933373976],[143.3948339483395,46.532680879137416],[143.36963369633696,46.55632096091577],[143.34443344433447,46.563075269995295],[143.2760327603276,46.55969811545555],[143.3120331203312,46.52592657005789],[143.30483304833052,46.514106529168714],[143.29043290432907,46.51748368370846],[143.2580325803258,46.54281234275672],[143.23643236432366,46.56645242453507],[143.2220322203222,46.5732067336146],[143.1968319683197,46.5833381972339],[143.18243182431826,46.5917810835833],[143.16083160831607,46.598535392662825],[143.06723067230672,46.58840392904355],[142.99882998829992,46.5934696608532],[142.96282962829628,46.6019125472026],[142.93402934029342,46.61542116536165],[142.9052290522905,46.60528970174238],[142.8260282602826,46.5934696608532],[142.79722797227976,46.595158238123076],[142.7720277202772,46.610355433552],[142.7540275402754,46.639061247140035],[142.73602736027362,46.69816145158592],[142.7288272882729,46.7285558424438],[142.72522725227253,46.74037588333297],[142.71082710827108,46.745441615142624],[142.70002700027004,46.742064460602876],[142.68922689226895,46.7285558424438],[142.68202682026822,46.72517868790405],[142.6532265322653,46.72517868790405],[142.61722617226172,46.718424378824494],[142.5308253082531,46.682964256156964],[142.45882458824588,46.630618360790606],[142.40482404824047,46.55294380637599],[142.32562325623257,46.389151811197394],[142.28242282422826,46.32667445221173],[142.27522275222753,46.309788679512906],[142.27522275222753,46.2996572158936],[142.26082260822608,46.26588567049595],[142.250022500225,46.19158827062111],[142.250022500225,46.179768229731934],[142.24642246422468,46.16794818884276],[142.2356223562236,46.14937383887403],[142.2356223562236,46.13924237525475],[142.22842228422286,46.117290870746274],[142.2140221402214,46.09871652077754],[142.2032220322203,46.08014217080884],[142.20682206822067,46.059879243570265],[142.2032220322203,46.05143635722084],[142.2032220322203,46.03117342998226],[142.19602196021964,46.02104196636296],[142.1888218882189,46.019353389093084],[142.1348213482135,46.005844770934004],[142.12042120421205,45.99233615277495],[142.10962109621096,45.95012172102787],[142.09522095220956,45.90284155747116],[142.08442084420847,45.90115298020129],[142.07362073620737,45.90959586655069],[142.0520205202052,45.916350175630214],[142.04122041220415,45.92479306197964],[142.00162001620015,45.978827534615874],[141.94041940419407,46.02441912090271],[141.93321933219335,46.03623916179191],[141.9368193681937,46.09871652077754],[141.90081900819007,46.279394288655],[141.88641886418867,46.318231565862305],[141.83601836018363,46.416169047515496],[141.8288182881829,46.44994059291315],[141.81441814418145,46.53774661094707],[141.8180181801818,46.57996104269412],[141.82161821618217,46.6019125472026],[141.82521825218254,46.610355433552],[141.839618396184,46.625552628980955],[141.85041850418503,46.64412697894966],[141.86481864818649,46.67114421526779],[141.88641886418867,46.73193299698357],[142.05562055620555,47.05445125553118],[142.05922059220592,47.08146849184928],[142.06282062820628,47.10848572816741],[142.06282062820628,47.13888011902529],[142.05562055620555,47.169274509883195],[142.04482044820452,47.204734632550725],[142.0268202682027,47.231751868868855],[141.9836198361984,47.28240918696534],[141.97641976419766,47.297606382394264],[141.97641976419766,47.31111500055334],[141.98721987219875,47.34150939141122],[141.99081990819911,47.356706586840176],[141.99081990819911,47.370215204999226],[141.98721987219875,47.38034666861853],[141.97641976419766,47.392166709507705],[141.9620196201962,47.41580679128606],[141.95481954819547,47.44620118214394],[141.9512195121951,47.481661304811496],[141.9620196201962,47.59141882735386],[141.96561965619657,47.61168175459247],[142.00162001620015,47.664027649958825],[142.0052200522005,47.675847690848],[142.0052200522005,47.685979154467304],[142.0052200522005,47.69779919535648],[142.01242012420124,47.707930658975755],[142.0268202682027,47.72312785440471],[142.03402034020343,47.73325931802401],[142.0376203762038,47.74339078164331],[142.04122041220415,47.75014509072284],[142.06282062820628,47.78053948158072],[142.0916209162092,47.854836881455554],[142.1060210602106,47.87509980869416],[142.13842138421387,47.89029700412311],[142.17802178021782,47.930822858600294],[142.1888218882189,47.944331476759345],[142.19242192421927,47.966282981267824],[142.1708217082171,48.09799200831867],[142.16722167221673,48.1148777810175],[142.17442174421745,48.15202648095493],[142.13842138421387,48.31750705340343],[142.1348213482135,48.33439282610226],[142.09522095220956,48.39687018508792],[141.9188191881919,48.60963092109313],[141.8720187201872,48.688994052777616],[141.85761857618576,48.73458563906445],[141.85761857618576,48.773422916271755],[141.92241922419225,48.835900275257416],[141.92961929619298,48.839277429797164],[141.95841958419584,48.85616320249599],[141.96561965619657,48.862917511575546],[141.96921969219693,48.87304897519482],[141.96561965619657,48.884869016084],[141.9620196201962,48.8966890569732],[141.9620196201962,48.90344336605273],[141.96561965619657,48.915263406941904],[141.9728197281973,48.92201771602143],[141.99081990819911,48.933837756910606],[141.99801998019979,48.942280643260034],[142.00162001620015,48.96592072503839],[142.00882008820088,48.98449507500709],[142.0160201602016,49.01995519767462],[142.02322023220233,49.0419067021831],[142.0376203762038,49.0621696294217],[142.02322023220233,49.09931832935911],[142.0376203762038,49.13477845202664],[142.05922059220592,49.16686142015442],[142.07722077220774,49.1989443882822],[142.0808208082081,49.21583016098103],[142.07722077220774,49.232715933679856],[142.06282062820628,49.31545621990409],[142.08802088020883,49.37624500161988],[142.09522095220956,49.410016547017534],[142.12042120421205,49.44716524695494],[142.12402124021241,49.46236244238389],[142.12762127621278,49.5011997195912],[142.14202142021423,49.56874281038651],[142.1492214922149,49.62277728302274],[142.15642156421563,49.659925982960175],[142.160021600216,49.67850033292888],[142.15282152821527,49.73422338283501],[142.15282152821527,49.78994643274115],[142.15282152821527,49.82540655540868],[142.14202142021423,49.860866678076206],[142.12402124021241,49.89801537801364],[142.13122131221314,49.89801537801364],[142.1348213482135,49.904769687093165],[142.14202142021423,49.91490115071247],[142.1456214562146,49.92165545979199],[142.1456214562146,49.926721191601644],[142.13842138421387,49.93685265522092],[142.13842138421387,49.94191838703057],[142.14202142021423,49.953738427919745],[142.15642156421563,49.9689356233487],[142.160021600216,49.975689932428224],[142.15642156421563,50.01452720963553],[142.160021600216,50.02803582779461],[142.16722167221673,50.04829875503319],[142.17442174421745,50.087136032240494],[142.15642156421563,50.239107986529945],[142.1348213482135,50.2914538818963],[142.1456214562146,50.30833965459513],[142.1492214922149,50.32691400456383],[142.1492214922149,50.345488354532534],[142.1456214562146,50.364062704501265],[142.13842138421387,50.37925989993019],[142.1168211682117,50.4180971771375],[142.09882098820987,50.43329437256645],[142.04482044820452,50.527854699679864],[142.04122041220415,50.551494781458246],[142.0520205202052,50.57175770869682],[142.05562055620555,50.581889172316124],[142.05922059220592,50.595397790475175],[142.05562055620555,50.617349294983654],[142.06282062820628,50.657875149460835],[142.0916209162092,50.71359819936697],[142.1060210602106,50.78114129016228],[142.10242102421023,50.78958417651168],[142.09882098820987,50.799715640130984],[142.09522095220956,50.809847103750286],[142.09522095220956,50.82166714463946],[142.10242102421023,50.83011003098889],[142.12402124021241,50.85206153549734],[142.12762127621278,50.85712726730699],[142.12762127621278,50.86050442184677],[142.12402124021241,50.88414450362512],[142.12762127621278,50.894275967244425],[142.19962199621995,50.960130480769834],[142.2248222482225,50.99052487162774],[142.250022500225,51.03105072610492],[142.2680226802268,51.07495373512188],[142.2680226802268,51.112102435059285],[142.2680226802268,51.13574251683764],[142.25362253622535,51.15938259861599],[142.17442174421745,51.259008657539084],[142.16722167221673,51.277583007507786],[142.16722167221673,51.286025893857214],[142.17802178021782,51.29784593474639],[142.18162181621818,51.30628882109579],[142.17802178021782,51.31473170744522],[142.17442174421745,51.31810886198497],[142.1708217082171,51.31979743925487],[142.16722167221673,51.32317459379462],[142.160021600216,51.33161748014405],[142.11322113221132,51.37214333462123],[142.07722077220774,51.419423498177935],[142.09882098820987,51.44306357995629],[142.07722077220774,51.47176939354429],[141.94401944019444,51.55957541157821],[141.93321933219335,51.56970687519751],[141.93321933219335,51.57477260700716],[141.9368193681937,51.579838338816785],[141.94041940419407,51.598412688785515],[141.94041940419407,51.60516699786504],[141.94041940419407,51.611921306944566],[141.92601926019262,51.61698703875422],[141.88641886418867,51.61023272967469],[141.86841868418685,51.611921306944566],[141.85041850418503,51.63724996599282],[141.8180181801818,51.67271008866035],[141.70281702817027,51.723367406756836],[141.68841688416887,51.74700748853519],[141.7532175321753,51.72843313856649],[141.7856178561786,51.72505598402671],[141.79641796417962,51.72167882948693],[141.80721807218072,51.72167882948693],[141.8180181801818,51.726744561296584],[141.82161821618217,51.73687602491589],[141.82161821618217,51.74363033399541],[141.8180181801818,51.75038464307494],[141.81081810818108,51.75545037488459],[141.81081810818108,51.80610769298107],[141.76041760417604,51.83650208383898],[141.6956169561696,51.856765011077556],[141.63801638016383,51.883782247395686],[141.67401674016742,51.91248806098369],[141.67761677616778,51.95301391546087],[141.65241652416523,52.03237704714536],[141.64881648816487,52.052639974383965],[141.64521645216456,52.06783716981289],[141.64521645216456,52.08472294251172],[141.65241652416523,52.10498586975032],[141.65961659616596,52.11174017882985],[141.67761677616778,52.1269373742588],[141.6848168481685,52.13031452879855],[141.68841688416887,52.1353802606082],[141.6992169921699,52.16577465146608],[141.65961659616596,52.216431969562564],[141.67041670416705,52.26033497857952],[141.67401674016742,52.275532174008475],[141.66321663216632,52.2924179467073],[141.65241652416523,52.305926564866354],[141.6416164161642,52.31774660575553],[141.65241652416523,52.33969811026401],[141.65241652416523,52.34982957388331],[141.65241652416523,52.368403923852014],[141.6560165601656,52.37515823293154],[141.65961659616596,52.381912542011065],[141.75681756817568,52.444389900996725],[141.78201782017823,52.46802998277511],[141.79281792817932,52.48322717820403],[141.80361803618035,52.51868730087159],[141.81441814418145,52.53219591903064],[141.8180181801818,52.54063880538004],[141.8180181801818,52.550770268999344],[141.8180181801818,52.55921315534877],[141.82521825218254,52.56259030988852],[141.8288182881829,52.5659674644283],[141.84321843218436,52.591296123476525],[141.83601836018363,52.591296123476525],[141.81081810818108,52.59805043255605],[141.81081810818108,52.6031161643657],[141.83601836018363,52.63351055522361],[141.84321843218436,52.66897067789114],[141.84321843218436,52.7415795004961],[141.85041850418503,52.76184242773468],[141.86841868418685,52.79392539586246],[141.8720187201872,52.81756547764081],[141.8720187201872,52.82263120945046],[141.86481864818649,52.83951698214929],[141.86481864818649,52.85133702303847],[141.86481864818649,52.859779909387896],[141.8720187201872,52.8783542593566],[141.8720187201872,52.8884857229759],[141.87561875618758,52.895240032055426],[141.89001890018903,52.912125804754254],[141.8936189361894,52.922257268373556],[141.89001890018903,52.94420877288201],[141.8936189361894,52.956028813771184],[141.8972189721897,52.96447170012061],[141.9188191881919,52.99824324551827],[141.92961929619298,53.02019475002675],[141.92241922419225,53.03876909999545],[141.9188191881919,53.045523409074974],[141.91521915219153,53.05734344996415],[141.91161911619116,53.07422922266298],[141.9080190801908,53.07929495447263],[141.89001890018903,53.09786930444133],[141.87921879218794,53.11982080894981],[141.84681846818467,53.14683804526794],[141.83601836018363,53.15865808615712],[141.83241832418327,53.16878954977642],[141.83601836018363,53.17723243612582],[141.83601836018363,53.18567532247525],[141.83601836018363,53.197495363364425],[141.83601836018363,53.2093154042536],[141.83241832418327,53.217758290603],[141.80361803618035,53.27179276323926],[141.80361803618035,53.28530138139831],[141.8180181801818,53.30218715409714],[141.80721807218072,53.31231861771644],[141.80721807218072,53.322450081335745],[141.81081810818108,53.330892967685145],[141.81081810818108,53.3376472767647],[141.80001800018,53.34777874038397],[141.76761767617677,53.371418822162326],[141.79641796417962,53.38661601759128],[141.88641886418867,53.411944676639536],[141.94401944019444,53.450781953846814],[141.95841958419584,53.455847685656465],[142.00882008820088,53.46091341746612],[142.09522095220956,53.49468496286377],[142.24282242822431,53.5301450855313],[142.22842228422286,53.52001362191203],[142.2356223562236,53.5115707355626],[142.24642246422468,53.49975069467342],[142.25362253622535,53.48793065378425],[142.25362253622535,53.474422035625196],[142.24282242822431,53.46429057200589],[142.24282242822431,53.45415910838659],[142.25362253622535,53.44065049022754],[142.24282242822431,53.43220760387811],[142.2356223562236,53.420387562988935],[142.23922239222395,53.406878944829884],[142.250022500225,53.393370326670805],[142.26442264422644,53.379861708511754],[142.28602286022863,53.371418822162326],[142.30762307623075,53.3663530903527],[142.32562325623257,53.3646645130828],[142.34722347223476,53.3663530903527],[142.39402394023944,53.37817313124188],[142.43362433624338,53.37817313124188],[142.4552245522455,53.379861708511754],[142.520025200252,53.420387562988935],[142.53442534425346,53.44571622203719],[142.56322563225632,53.48793065378425],[142.57762577625778,53.49975069467342],[142.62442624426245,53.526767930991554],[142.64242642426427,53.526767930991554],[142.66042660426604,53.5217021991819],[142.6748267482675,53.518325044642125],[142.68562685626858,53.5301450855313],[142.66762667626676,53.55209659003978],[142.62802628026282,53.56898236273861],[142.5848258482585,53.575736671818134],[142.54882548825492,53.57067094000851],[142.52722527225274,53.55040801276991],[142.51282512825128,53.545342280960256],[142.50922509225092,53.56053947638921],[142.50922509225092,53.56391663092896],[142.50922509225092,53.59093386724709],[142.51282512825128,53.594311021786865],[142.49842498424988,53.616262526295344],[142.49122491224915,53.638214030803795],[142.49842498424988,53.6584769580424],[142.51642516425164,53.67198557620145],[142.53442534425346,53.6770513080111],[142.54882548825492,53.67367415347135],[142.56682566825668,53.6686084216617],[142.58842588425887,53.6669198443918],[142.60282602826027,53.670296998931576],[142.62442624426245,53.6770513080111],[142.64242642426427,53.68211703982075],[142.65682656826567,53.6770513080111],[142.67842678426786,53.651722648962874],[142.69642696426968,53.638214030803795],[142.7180271802718,53.6399026080737],[142.80082800828012,53.697314235249706],[142.80442804428043,53.70744569886901],[142.80442804428043,53.71757716248828],[142.79722797227976,53.72939720337746],[142.79722797227976,53.73784008972689],[142.79002790027903,53.78343167601372],[142.78642786427866,53.8053831805222],[142.77562775627757,53.8239575304909],[142.739627396274,53.84590903499938],[142.71442714427144,53.80876033506195],[142.6928269282693,53.75303728515584],[142.6748267482675,53.714200007948534],[142.66042660426604,53.70913427613888],[142.61362613626136,53.69562565797983],[142.60282602826027,53.697314235249706],[142.60642606426063,53.70913427613888],[142.6208262082621,53.727708626107585],[142.63162631626318,53.75641443969559],[142.67842678426786,53.817203221411376],[142.7072270722707,53.86448338496808],[142.7180271802718,53.906697816715166],[142.7072270722707,53.94891224846222],[142.66762667626676,53.9894381029394],[142.58842588425887,54.04516115284554],[142.54522545225456,54.089064161862495],[142.4660246602466,54.146475789038504],[142.45162451624515,54.16673871627708],[142.42642426424266,54.21064172529404],[142.40842408424083,54.230904652532644],[142.38322383223834,54.25285615704112],[142.34722347223476,54.271430507009825],[142.28242282422826,54.29675916605805],[142.28242282422826,54.30351347513758],[142.3040230402304,54.301824897867704],[142.3436234362344,54.28156197062913],[142.36522365223652,54.276496238819476],[142.44442444424448,54.26974192973992],[142.4660246602466,54.2731190842797],[142.5308253082531,54.29675916605805]]],[[[-6.1038610386103755,53.49468496286377],[-6.111061110611104,53.48624207651437],[-6.1254612546125315,53.469356303815545],[-6.13266132661326,53.46091341746612],[-6.139861398613988,53.47104488108542],[-6.15786157861578,53.47273345835529],[-6.179461794617936,53.469356303815545],[-6.193861938619392,53.46091341746612],[-6.129061290612896,53.442339067497414],[-6.1254612546125315,53.43220760387811],[-6.1218612186121675,53.420387562988935],[-6.114661146611468,53.411944676639536],[-6.114661146611468,53.41025609936963],[-6.1218612186121675,53.40181321302023],[-6.1254612546125315,53.398436058480456],[-6.111061110611104,53.393370326670805],[-6.067860678606792,53.39168174940093],[-6.049860498604971,53.384927440321405],[-6.0606606066060635,53.36804166762258],[-6.075060750607491,53.3663530903527],[-6.089460894608948,53.3747959767021],[-6.1038610386103755,53.37817313124188],[-6.10746107461074,53.38155028578163],[-6.118261182611832,53.38999317213106],[-6.1218612186121675,53.393370326670805],[-6.13266132661326,53.39168174940093],[-6.150661506615052,53.38661601759128],[-6.15786157861578,53.384927440321405],[-6.215462154621548,53.357910204003275],[-6.219062190621912,53.34777874038397],[-6.211862118621184,53.33933585403457],[-6.186661866618664,53.32413865860562],[-6.168661686616872,53.30556430863692],[-6.154261542615416,53.29880999955739],[-6.1254612546125315,53.295432845017615],[-6.118261182611832,53.290367113207964],[-6.10746107461074,53.28867853593809],[-6.096660966609647,53.28530138139831],[-6.096660966609647,53.27685849504891],[-6.1038610386103755,53.27010418596939],[-6.1038610386103755,53.265038454159736],[-6.10746107461074,53.24308694965126],[-6.1038610386103755,53.229578331492206],[-6.1002610026100115,53.21438113606325],[-6.089460894608948,53.20424967244395],[-6.0786607866078555,53.19580678609455],[-6.071460714607127,53.183986745205374],[-6.0786607866078555,53.16541239523664],[-6.064260642606428,53.15359235434747],[-6.031860318603179,53.11137792260041],[-6.031860318603179,53.108000768060634],[-6.031860318603179,53.10631219079076],[-6.0354603546035435,53.10631219079076],[-6.0354603546035435,53.104623613520886],[-6.031860318603179,53.08773784082206],[-6.0354603546035435,53.064097759043676],[-6.0390603906039075,53.04045767726532],[-6.046260462604607,53.0252604818364],[-6.049860498604971,53.010063286407444],[-6.0390603906039075,52.993177513708616],[-5.995859958599567,52.96447170012061],[-5.9922599225992315,52.957717391041086],[-6.006660066600659,52.95434023650131],[-6.010260102601023,52.94927450469166],[-6.021060210602087,52.930700154722956],[-6.028260282602815,52.92732300018318],[-6.0390603906039075,52.91888011383378],[-6.071460714607127,52.87159995027707],[-6.064260642606428,52.86484564119752],[-6.10746107461074,52.83951698214929],[-6.118261182611832,52.83107409579986],[-6.129061290612896,52.81587690037094],[-6.154261542615416,52.7685967368142],[-6.1470614706146876,52.74664523230575],[-6.150661506615052,52.7415795004961],[-6.168661686616872,52.716250841447845],[-6.215462154621548,52.66559352335136],[-6.219062190621912,52.64701917338266],[-6.219062190621912,52.631821977953706],[-6.20826208262082,52.6031161643657],[-6.204662046620456,52.587918968936776],[-6.20826208262082,52.54570453718969],[-6.222662226622248,52.528818764490865],[-6.28386283862838,52.466341405505204],[-6.301863018630172,52.45452136461603],[-6.316263162631628,52.4477670555365],[-6.33426334263342,52.43425843737745],[-6.355863558635576,52.408929778329195],[-6.3666636666366685,52.39373258290027],[-6.3666636666366685,52.37515823293154],[-6.363063630636304,52.35827246023271],[-6.3666636666366685,52.34476384207366],[-6.373863738637368,52.351518151153186],[-6.381063810638096,52.35658388296284],[-6.3882638826388245,52.35827246023271],[-6.449464494644928,52.35658388296284],[-6.467464674646749,52.359961037502615],[-6.463864638646385,52.37853538747132],[-6.471064710647113,52.37515823293154],[-6.481864818648177,52.373469655661665],[-6.489064890648905,52.368403923852014],[-6.496264962649633,52.365026769312266],[-6.496264962649633,52.35827246023271],[-6.481864818648177,52.35489530569296],[-6.467464674646749,52.346452419343535],[-6.456664566645657,52.33632095572423],[-6.449464494644928,52.32281233756518],[-6.456664566645657,52.31268087394588],[-6.424264242642408,52.30761514213623],[-6.413464134641345,52.29917225578683],[-6.4098640986409805,52.289040792167526],[-6.395463954639553,52.297483678516954],[-6.373863738637368,52.32281233756518],[-6.373863738637368,52.31605802848566],[-6.3882638826388245,52.29579510124705],[-6.370263702637033,52.2721550194687],[-6.319863198631992,52.240072051340945],[-6.348663486634848,52.19785761959386],[-6.35946359463594,52.186037578704685],[-6.370263702637033,52.17928326962516],[-6.377463774637732,52.177594692355285],[-6.3882638826388245,52.17928326962516],[-6.399063990639888,52.186037578704685],[-6.399063990639888,52.191103310514336],[-6.3882638826388245,52.19448046505411],[-6.381063810638096,52.207989083213164],[-6.381063810638096,52.21136623775291],[-6.395463954639553,52.213054815022815],[-6.399063990639888,52.21136623775291],[-6.4098640986409805,52.20292335140351],[-6.420664206642073,52.19616904232399],[-6.424264242642408,52.19448046505411],[-6.467464674646749,52.19279188778421],[-6.467464674646749,52.199546196863736],[-6.449464494644928,52.199546196863736],[-6.463864638646385,52.207989083213164],[-6.471064710647113,52.20630050594329],[-6.489064890648905,52.199546196863736],[-6.535865358653581,52.19279188778421],[-6.579065790657893,52.177594692355285],[-6.597065970659713,52.17928326962516],[-6.622266222662233,52.19616904232399],[-6.640266402664025,52.20292335140351],[-6.7158671586715855,52.216431969562564],[-6.787867878678782,52.20967766048304],[-6.8058680586805735,52.213054815022815],[-6.8058680586805735,52.21980912410234],[-6.791467914679146,52.22487485591199],[-6.777067770677689,52.23331774226139],[-6.766267662676626,52.24513778315057],[-6.7626676266762615,52.262023555849396],[-6.777067770677689,52.25020351496022],[-6.791467914679146,52.240072051340945],[-6.813068130681302,52.235006319531294],[-6.831068310683094,52.240072051340945],[-6.838268382683822,52.235006319531294],[-6.838268382683822,52.226563433181866],[-6.838268382683822,52.22318627864212],[-6.834668346683458,52.21980912410234],[-6.838268382683822,52.213054815022815],[-6.8274682746827295,52.218120546832466],[-6.823868238682394,52.21980912410234],[-6.82026820268203,52.21980912410234],[-6.82026820268203,52.20630050594329],[-6.823868238682394,52.199546196863736],[-6.831068310683094,52.19279188778421],[-6.823868238682394,52.19279188778421],[-6.82026820268203,52.19279188778421],[-6.82026820268203,52.186037578704685],[-6.8274682746827295,52.186037578704685],[-6.831068310683094,52.186037578704685],[-6.823868238682394,52.17928326962516],[-6.89586895868959,52.15226603330703],[-6.906669066690654,52.145511724227504],[-6.917469174691746,52.13369168333833],[-6.931869318693174,52.1252487969889],[-6.949869498694994,52.13031452879855],[-6.939069390693902,52.14382314695763],[-6.92826928269281,52.150577456037155],[-6.913869138691382,52.155643187846806],[-6.90306903069029,52.16239749692633],[-6.90306903069029,52.172528960545634],[-6.92106921069211,52.213054815022815],[-6.92826928269281,52.21980912410234],[-6.935469354693538,52.22825201045174],[-6.949869498694994,52.23669489680117],[-6.957069570695694,52.240072051340945],[-6.97146971469715,52.24682636042047],[-6.985869858698578,52.278909328548224],[-6.99666996669967,52.289040792167526],[-6.993069930699306,52.27722075127835],[-6.993069930699306,52.26708928765905],[-6.989469894698942,52.262023555849396],[-6.989469894698942,52.25189209223012],[-6.985869858698578,52.24682636042047],[-6.97146971469715,52.22994058772164],[-6.967869678696786,52.21980912410234],[-6.982269822698214,52.19616904232399],[-6.97866978669785,52.186037578704685],[-6.95346953469533,52.186037578704685],[-6.95346953469533,52.17928326962516],[-6.97146971469715,52.17084038327573],[-7.000270002700034,52.14720030149738],[-7.018270182701826,52.13875741514798],[-7.039870398703982,52.1353802606082],[-7.083070830708294,52.13369168333833],[-7.10467104671045,52.13031452879855],[-7.101071010710115,52.14213456968773],[-7.072270722707231,52.16577465146608],[-7.093870938709387,52.172528960545634],[-7.10467104671045,52.172528960545634],[-7.119071190711907,52.172528960545634],[-7.119071190711907,52.16577465146608],[-7.115471154711543,52.16239749692633],[-7.1118711187111785,52.159020342386555],[-7.108271082710814,52.155643187846806],[-7.10467104671045,52.15226603330703],[-7.115471154711543,52.1539546105769],[-7.12987129871297,52.15733176511668],[-7.137071370713699,52.159020342386555],[-7.147871478714791,52.155643187846806],[-7.1550715507154905,52.150577456037155],[-7.162271622716219,52.14382314695763],[-7.165871658716583,52.13875741514798],[-7.187471874718739,52.13200310606845],[-7.205472054720531,52.13200310606845],[-7.245072450724507,52.13875741514798],[-7.435874358743575,52.1252487969889],[-7.5042750427504075,52.10329729248042],[-7.54027540275402,52.0982315606708],[-7.547475474754748,52.09485440613102],[-7.551075510755112,52.08978867432137],[-7.554675546755448,52.08472294251172],[-7.56547565475654,52.08303436524184],[-7.572675726757268,52.088100097051495],[-7.576275762757632,52.09485440613102],[-7.579875798757968,52.101608715210546],[-7.583475834758332,52.10498586975032],[-7.601476014760152,52.101608715210546],[-7.619476194761944,52.09147725159124],[-7.630276302763008,52.07965721070207],[-7.626676266762672,52.06277143800324],[-7.61587615876158,52.06952574708279],[-7.601476014760152,52.07121432435267],[-7.583475834758332,52.06783716981289],[-7.554675546755448,52.061082860733364],[-7.547475474754748,52.05939428346349],[-7.543875438754384,52.05432855165384],[-7.551075510755112,52.04250851076466],[-7.583475834758332,52.02899989260558],[-7.587075870758696,51.998605501747704],[-7.59067590675906,51.99185119266818],[-7.597875978759788,51.9884740381284],[-7.608676086760852,51.9884740381284],[-7.61587615876158,51.98340830631875],[-7.633876338763372,51.976653997239225],[-7.687876878768776,51.980031151779],[-7.709477094770932,51.97327684269948],[-7.71667716677166,51.9597682245404],[-7.71667716677166,51.949636760921095],[-7.723877238772388,51.94457102911147],[-7.828278282782833,51.95301391546087],[-7.831878318783168,51.95807964727052],[-7.8354783547835325,51.96652253361992],[-7.839078390783897,51.976653997239225],[-7.849878498784989,51.980031151779],[-7.853478534785353,51.976653997239225],[-7.853478534785353,51.97496541996935],[-7.853478534785353,51.951325338191],[-7.8570785707856885,51.94288245184157],[-7.871478714787145,51.92937383368252],[-7.885878858788573,51.919242370063216],[-7.900279002790029,51.91248806098369],[-7.921879218792185,51.91248806098369],[-7.893078930789301,51.89560228828486],[-7.882278822788209,51.892225133745086],[-7.893078930789301,51.88209367012581],[-7.914679146791457,51.87533936104626],[-7.954279542795433,51.870273629236635],[-8.008280082800809,51.85507643380768],[-8.022680226802265,51.843256392918505],[-8.004680046800473,51.829747774759426],[-8.019080190801901,51.824682042949775],[-8.094680946809461,51.8145505793305],[-8.13428134281341,51.8044191157112],[-8.195481954819542,51.80104196117142],[-8.224282242822426,51.802730538441324],[-8.23508235082349,51.802730538441324],[-8.245882458824582,51.802730538441324],[-8.249482494824946,51.80610769298107],[-8.249482494824946,51.8128620020606],[-8.242282422824218,51.81792773387025],[-8.231482314823154,51.821304888410026],[-8.224282242822426,51.8229934656799],[-8.224282242822426,51.82805919748955],[-8.231482314823154,51.83650208383898],[-8.217082170821698,51.838190661108854],[-8.20268202682027,51.8415678156486],[-8.188281882818814,51.848322124728156],[-8.173881738817386,51.856765011077556],[-8.181081810818114,51.86014216561733],[-8.188281882818814,51.86183074288721],[-8.191881918819178,51.86351932015708],[-8.20268202682027,51.86351932015708],[-8.195481954819542,51.87702793831616],[-8.191881918819178,51.88040509285591],[-8.181081810818114,51.883782247395686],[-8.188281882818814,51.89391371101499],[-8.195481954819542,51.89560228828486],[-8.20268202682027,51.892225133745086],[-8.20988209882097,51.883782247395686],[-8.224282242822426,51.89053655647521],[-8.242282422824218,51.892225133745086],[-8.28548285482853,51.892225133745086],[-8.28548285482853,51.89897944282464],[-8.292682926829258,51.90404517463426],[-8.31068310683105,51.900668020094514],[-8.32868328683287,51.89560228828486],[-8.346683466834662,51.892225133745086],[-8.389883898838974,51.89391371101499],[-8.407884078840794,51.892225133745086],[-8.42948429484295,51.883782247395686],[-8.397083970839702,51.87702793831616],[-8.35388353883539,51.873650783776384],[-8.32868328683287,51.86183074288721],[-8.346683466834662,51.829747774759426],[-8.31068310683105,51.83143635202933],[-8.299882998829986,51.829747774759426],[-8.299882998829986,51.8229934656799],[-8.30348303483035,51.8229934656799],[-8.30348303483035,51.816239156600375],[-8.296282962829622,51.811173424790724],[-8.292682926829258,51.80948484752085],[-8.307083070830714,51.807796270250975],[-8.314283142831414,51.80610769298107],[-8.317883178831778,51.802730538441324],[-8.28548285482853,51.802730538441324],[-8.30348303483035,51.785844765742496],[-8.30348303483035,51.78246761120272],[-8.30348303483035,51.77740187939307],[-8.299882998829986,51.77233614758342],[-8.296282962829622,51.76558183850389],[-8.30348303483035,51.758827529424366],[-8.33588335883357,51.73518744764601],[-8.346683466834662,51.72505598402671],[-8.371883718837182,51.71492452040741],[-8.41148411484113,51.70985878859776],[-8.422284222842222,51.704793056788105],[-8.43668436684365,51.69297301589893],[-8.440284402844014,51.70310447951823],[-8.45468454684547,51.71154736586766],[-8.472684726847262,51.71661309767728],[-8.483484834848355,51.71323594313753],[-8.469084690846898,51.70648163405801],[-8.465484654846534,51.69466159316883],[-8.469084690846898,51.68453012954953],[-8.483484834848355,51.67777582047],[-8.490684906849054,51.69803874770858],[-8.51228512285121,51.70648163405801],[-8.559085590855915,51.70648163405801],[-8.559085590855915,51.69972732497848],[-8.548285482854823,51.696350170438706],[-8.526685266852667,51.69466159316883],[-8.515885158851574,51.69297301589893],[-8.508685086850875,51.69972732497848],[-8.501485014850147,51.69972732497848],[-8.497884978849783,51.69297301589893],[-8.497884978849783,51.6862187068194],[-8.50508505085051,51.682841552279655],[-8.515885158851574,51.67946439773988],[-8.519485194851939,51.67777582047],[-8.53748537485373,51.65413573869162],[-8.53748537485373,51.649070006882],[-8.53748537485373,51.63724996599282],[-8.533885338853395,51.62205277056387],[-8.53028530285303,51.61023272967469],[-8.544685446854459,51.61867561602409],[-8.559085590855915,51.63724996599282],[-8.573485734857343,51.64569285234222],[-8.58788587885877,51.64569285234222],[-8.63828638286381,51.63724996599282],[-8.757087570875711,51.64569285234222],[-8.742687426874255,51.63556138872292],[-8.728287282872827,51.63049565691327],[-8.688686886868851,51.63049565691327],[-8.688686886868851,51.62374134783374],[-8.695886958869579,51.620364193293995],[-8.703087030870307,51.61698703875422],[-8.681486814868151,51.61023272967469],[-8.692286922869215,51.60516699786504],[-8.699486994869943,51.59672411151561],[-8.699486994869943,51.58828122516621],[-8.695886958869579,51.576461184277036],[-8.735487354873555,51.579838338816785],[-8.742687426874255,51.576461184277036],[-8.749887498874983,51.579838338816785],[-8.757087570875711,51.58659264789634],[-8.764287642876411,51.58996980243609],[-8.800288002880023,51.58996980243609],[-8.811088110881116,51.59165837970599],[-8.82188821888218,51.59503553424574],[-8.825488254882544,51.59503553424574],[-8.832688326883272,51.58996980243609],[-8.854288542885428,51.59672411151561],[-8.868688686886856,51.584904070626436],[-8.879488794887948,51.56801829792761],[-8.886688866888676,51.55619825703843],[-8.92268922689226,51.54775537068903],[-8.929889298892988,51.54606679341913],[-8.933489334893352,51.535935329799855],[-8.940689406894052,51.53762390706973],[-8.951489514895144,51.544378216149255],[-8.951489514895144,51.549443947958906],[-8.958689586895872,51.55113252522878],[-8.980289802898028,51.56126398884808],[-8.991089910899092,51.56295256611796],[-9.001890018900184,51.56295256611796],[-9.016290162901612,51.55619825703843],[-9.07389073890738,51.549443947958906],[-9.084690846908472,51.55282110249868],[-9.109891098910992,51.56126398884808],[-9.120691206912056,51.56295256611796],[-9.120691206912056,51.55619825703843],[-9.117091170911692,51.55450967976856],[-9.106291062910628,51.549443947958906],[-9.117091170911692,51.53762390706973],[-9.127891278912784,51.52918102072033],[-9.142291422914212,51.52411528891068],[-9.160291602916033,51.522426711640776],[-9.185491854918553,51.52580386618055],[-9.192691926919252,51.52411528891068],[-9.189091890918917,51.513983825291376],[-9.189091890918917,51.508918093481725],[-9.203492034920345,51.50722951621185],[-9.210692106921073,51.5021637844022],[-9.214292142921437,51.49372089805277],[-9.2250922509225,51.486966588973246],[-9.235892358923593,51.486966588973246],[-9.243092430924293,51.48865516624312],[-9.253892538925385,51.49034374351302],[-9.264692646926477,51.486966588973246],[-9.264692646926477,51.49372089805277],[-9.268292682926813,51.49878662986242],[-9.268292682926813,51.5021637844022],[-9.271892718927177,51.508918093481725],[-9.30069300693006,51.49709805259255],[-9.30069300693006,51.48865516624312],[-9.307893078930789,51.486966588973246],[-9.315093150931517,51.486966588973246],[-9.322293222932217,51.48358943443347],[-9.336693366933673,51.476835125353944],[-9.347493474934737,51.473457970814195],[-9.379893798937985,51.473457970814195],[-9.369093690936893,51.478523702623846],[-9.361893618936193,51.48358943443347],[-9.354693546935465,51.49034374351302],[-9.347493474934737,51.5004752071323],[-9.361893618936193,51.495409475322674],[-9.372693726937257,51.4920323207829],[-9.376293762937621,51.495409475322674],[-9.369093690936893,51.508918093481725],[-9.35829358293583,51.517360979831125],[-9.333093330933309,51.52749244345043],[-9.318693186931853,51.53424675252995],[-9.322293222932217,51.53762390706973],[-9.325893258932581,51.53762390706973],[-9.325893258932581,51.539312484339604],[-9.325893258932581,51.54268963887938],[-9.336693366933673,51.53762390706973],[-9.369093690936893,51.52580386618055],[-9.372693726937257,51.51904955710103],[-9.379893798937985,51.5122952480215],[-9.401494014940141,51.5004752071323],[-9.412294122941233,51.5106066707516],[-9.412294122941233,51.5207381343709],[-9.405094050940505,51.53255817526008],[-9.401494014940141,51.54606679341913],[-9.40869408694087,51.55282110249868],[-9.426694266942661,51.557886834308334],[-9.444694446944453,51.55957541157821],[-9.455494554945545,51.55619825703843],[-9.448294482944817,51.544378216149255],[-9.477094770947701,51.53424675252995],[-9.549095490954898,51.52580386618055],[-9.552695526955262,51.5207381343709],[-9.552695526955262,51.5122952480215],[-9.556295562955626,51.508918093481725],[-9.574295742957418,51.508918093481725],[-9.581495814958146,51.508918093481725],[-9.599495994959938,51.49709805259255],[-9.61029610296103,51.49372089805277],[-9.628296282962822,51.49372089805277],[-9.628296282962822,51.503852361672074],[-9.64269642696425,51.51567240256125],[-9.657096570965706,51.5207381343709],[-9.664296642966434,51.5122952480215],[-9.71829718297181,51.48021227989372],[-9.71109711097111,51.47514654808407],[-9.707497074970746,51.47514654808407],[-9.703897038970382,51.473457970814195],[-9.772297722977214,51.45319504357559],[-9.76869768697685,51.46501508446477],[-9.779497794977942,51.46163792992502],[-9.808298082980826,51.446440734496065],[-9.81189811898119,51.45319504357559],[-9.81909819098189,51.446440734496065],[-9.81909819098189,51.45826077538524],[-9.815498154981555,51.46332650719489],[-9.81189811898119,51.46670366173467],[-9.81189811898119,51.473457970814195],[-9.822698226982254,51.47514654808407],[-9.826298262982618,51.478523702623846],[-9.833498334983346,51.486966588973246],[-9.81189811898119,51.4920323207829],[-9.79389793897937,51.5004752071323],[-9.757897578975786,51.522426711640776],[-9.739897398973994,51.52918102072033],[-9.703897038970382,51.535935329799855],[-9.682296822968226,51.54268963887938],[-9.664296642966434,51.55113252522878],[-9.621096210962094,51.58321549335656],[-9.603096030960302,51.59165837970599],[-9.56709567095669,51.601789843325264],[-9.545495454954533,51.61023272967469],[-9.59229592295921,51.61360988421444],[-9.78669786697867,51.55282110249868],[-9.847898478984774,51.549443947958906],[-9.804698046980462,51.566329720657734],[-9.797497974979734,51.56970687519751],[-9.78669786697867,51.57308402973726],[-9.779497794977942,51.58321549335656],[-9.76869768697685,51.59165837970599],[-9.732697326973266,51.60010126605539],[-9.606696066960666,51.642315697802445],[-9.595895958959574,51.655824315961524],[-9.563495634956354,51.6575128932314],[-9.523895238952377,51.67102151139045],[-9.487894878948794,51.6760872432001],[-9.45909459094591,51.68453012954953],[-9.455494554945545,51.69972732497848],[-9.451894518945181,51.704793056788105],[-9.448294482944817,51.71154736586766],[-9.444694446944453,51.71323594313753],[-9.444694446944453,51.71999025221706],[-9.455494554945545,51.72505598402671],[-9.473494734947337,51.718301674947185],[-9.49149491494913,51.71492452040741],[-9.513095130951314,51.72505598402671],[-9.520295202952013,51.72505598402671],[-9.523895238952377,51.726744561296584],[-9.527495274952742,51.73012171583636],[-9.523895238952377,51.74363033399541],[-9.523895238952377,51.74700748853519],[-9.531095310953106,51.75207322034484],[-9.54189541895417,51.75545037488459],[-9.549095490954898,51.758827529424366],[-9.55989559895599,51.762204683964114],[-9.556295562955626,51.74869606580506],[-9.556295562955626,51.740253179455664],[-9.556295562955626,51.73012171583636],[-9.545495454954533,51.71999025221706],[-9.56709567095669,51.71661309767728],[-9.577895778957782,51.70985878859776],[-9.606696066960666,51.69297301589893],[-9.628296282962822,51.68453012954953],[-9.646296462964614,51.68115297500975],[-9.714697146971474,51.6760872432001],[-9.747097470974694,51.6676443568507],[-9.873098730987294,51.655824315961524],[-9.916299162991635,51.64400427507235],[-9.930699306993063,51.63724996599282],[-9.930699306993063,51.633872811453045],[-9.930699306993063,51.63049565691327],[-9.934299342993427,51.62711850237352],[-9.93789937899379,51.62374134783374],[-9.941499414994155,51.62205277056387],[-10.006300063000623,51.60854415240479],[-10.027900279002779,51.59672411151561],[-10.038700387003871,51.598412688785515],[-10.060300603006027,51.60347842059517],[-10.071100711007091,51.60347842059517],[-10.117901179011795,51.60010126605539],[-10.139501395013951,51.593346956975864],[-10.157501575015743,51.58321549335656],[-10.161101611016107,51.58996980243609],[-10.15390153901538,51.593346956975864],[-10.15390153901538,51.60010126605539],[-10.15390153901538,51.60516699786504],[-10.150301503015015,51.61023272967469],[-10.143101431014315,51.61360988421444],[-10.074700747007455,51.62542992510362],[-10.060300603006027,51.63049565691327],[-10.060300603006027,51.63556138872292],[-10.060300603006027,51.63724996599282],[-10.063900639006391,51.63724996599282],[-10.067500675006755,51.63724996599282],[-10.063900639006391,51.649070006882],[-10.071100711007091,51.6575128932314],[-10.085500855008547,51.65920147050127],[-10.099900999009975,51.65920147050127],[-10.089100891008911,51.67102151139045],[-10.067500675006755,51.67439866593023],[-10.024300243002415,51.67271008866035],[-10.002700027000259,51.67777582047],[-9.955899558995583,51.70648163405801],[-9.955899558995583,51.71323594313753],[-9.999099990999895,51.71323594313753],[-9.981099810998103,51.731810293106236],[-9.948699486994855,51.74700748853519],[-9.916299162991635,51.75713895215449],[-9.88749887498875,51.762204683964114],[-9.891098910989115,51.75713895215449],[-9.898298982989814,51.74700748853519],[-9.901899018990179,51.74194175672554],[-9.883898838988387,51.74363033399541],[-9.86949869498693,51.74869606580506],[-9.855098550985502,51.758827529424366],[-9.855098550985502,51.775713302123194],[-9.840698406984075,51.76895899304367],[-9.822698226982254,51.767270415773766],[-9.78669786697867,51.76895899304367],[-9.78669786697867,51.775713302123194],[-9.79389793897937,51.775713302123194],[-9.81189811898119,51.78246761120272],[-9.81189811898119,51.78753334301237],[-9.801098010980098,51.794287652091896],[-9.775897758977578,51.8128620020606],[-9.754297542975422,51.81961631114015],[-9.74349743497433,51.8331249292992],[-9.73629736297363,51.83650208383898],[-9.729097290972902,51.838190661108854],[-9.703897038970382,51.83650208383898],[-9.671496714967134,51.843256392918505],[-9.613896138961394,51.86351932015708],[-9.581495814958146,51.870273629236635],[-9.581495814958146,51.87702793831616],[-9.653496534965342,51.87196220650651],[-9.757897578975786,51.846633547458254],[-9.775897758977578,51.83987923837873],[-9.78669786697867,51.8331249292992],[-9.790297902979034,51.82637062021968],[-9.826298262982618,51.82637062021968],[-9.840698406984075,51.8229934656799],[-9.833498334983346,51.816239156600375],[-9.86229862298623,51.8044191157112],[-9.873098730987294,51.802730538441324],[-9.873098730987294,51.807796270250975],[-9.86949869498693,51.81792773387025],[-9.86949869498693,51.8229934656799],[-9.883898838988387,51.8229934656799],[-9.891098910989115,51.81961631114015],[-9.89469894698945,51.8145505793305],[-9.901899018990179,51.80948484752085],[-9.91269912699127,51.807796270250975],[-9.93789937899379,51.8044191157112],[-9.948699486994855,51.802730538441324],[-9.991899918999195,51.780779033932845],[-10.017100171001715,51.77402472485332],[-10.038700387003871,51.78246761120272],[-10.060300603006027,51.76895899304367],[-10.085500855008547,51.75545037488459],[-10.110701107011067,51.745318911265315],[-10.135901359013587,51.74194175672554],[-10.12870128701286,51.753761797614715],[-10.225902259022575,51.78246761120272],[-10.186301863018628,51.789221920282245],[-10.175501755017535,51.8128620020606],[-10.193501935019356,51.83987923837873],[-10.233102331023304,51.851699279267905],[-10.247502475024731,51.84494497018838],[-10.272702727027252,51.821304888410026],[-10.283502835028344,51.816239156600375],[-10.294302943029436,51.8128620020606],[-10.326703267032656,51.794287652091896],[-10.341103411034112,51.78753334301237],[-10.348303483034812,51.80104196117142],[-10.333903339033384,51.829747774759426],[-10.341103411034112,51.843256392918505],[-10.35550355503554,51.84494497018838],[-10.377103771037696,51.84494497018838],[-10.387903879038788,51.846633547458254],[-10.38070380703806,51.856765011077556],[-10.38070380703806,51.86183074288721],[-10.384303843038424,51.86351932015708],[-10.387903879038788,51.86351932015708],[-10.387903879038788,51.86858505196673],[-10.384303843038424,51.870273629236635],[-10.384303843038424,51.873650783776384],[-10.38070380703806,51.87702793831616],[-10.384303843038424,51.878716515586035],[-10.391503915039152,51.87702793831616],[-10.395103951039516,51.87702793831616],[-10.395103951039516,51.883782247395686],[-10.362703627036268,51.887159401935435],[-10.27990279902798,51.905733751904165],[-10.261902619026188,51.905733751904165],[-10.25470254702546,51.909110906443914],[-10.251102511025096,51.91586521552347],[-10.251102511025096,51.92261952460299],[-10.25470254702546,51.92599667914274],[-10.269102691026916,51.93106241095239],[-10.276302763027616,51.941193874571695],[-10.287102871028708,51.951325338191],[-10.3051030510305,51.95301391546087],[-10.3051030510305,51.9597682245404],[-10.294302943029436,51.96483395635005],[-10.269102691026916,51.9698996881597],[-10.258302583025824,51.97327684269948],[-10.265502655026552,51.9884740381284],[-10.243902439024396,51.99522834720793],[-10.218702187021876,51.998605501747704],[-10.193501935019356,52.01042554263688],[-10.12870128701286,52.02899989260558],[-10.031500315003143,52.04081993349476],[-9.991899918999195,52.05601712892371],[-9.97029970299701,52.08978867432137],[-9.963099630996311,52.08978867432137],[-9.963099630996311,52.07121432435267],[-9.955899558995583,52.06446001527314],[-9.941499414994155,52.06277143800324],[-9.927099270992699,52.06277143800324],[-9.930699306993063,52.07121432435267],[-9.909099090990907,52.13031452879855],[-9.876698766987658,52.12018306517925],[-9.847898478984774,52.11849448790937],[-9.772297722977214,52.1252487969889],[-9.779497794977942,52.128625951528676],[-9.78669786697867,52.1353802606082],[-9.79389793897937,52.13875741514798],[-9.757897578975786,52.15226603330703],[-9.955899558995583,52.145511724227504],[-9.94509945099449,52.1252487969889],[-9.948699486994855,52.11342875609972],[-9.955899558995583,52.10836302429007],[-9.959499594995947,52.1252487969889],[-9.97029970299701,52.13200310606845],[-9.984699846998467,52.1353802606082],[-9.999099990999895,52.13875741514798],[-10.027900279002779,52.14044599241785],[-10.161101611016107,52.11849448790937],[-10.186301863018628,52.110051601559974],[-10.197101971019691,52.115117333369625],[-10.207902079020784,52.1252487969889],[-10.218702187021876,52.13031452879855],[-10.22950229502294,52.128625951528676],[-10.233102331023304,52.12187164244915],[-10.240302403024032,52.12018306517925],[-10.269102691026916,52.1353802606082],[-10.27990279902798,52.137068837878076],[-10.3051030510305,52.13031452879855],[-10.3051030510305,52.1252487969889],[-10.297902979029772,52.1252487969889],[-10.287102871028708,52.123560219719025],[-10.272702727027252,52.11849448790937],[-10.272702727027252,52.11174017882985],[-10.297902979029772,52.115117333369625],[-10.344703447034476,52.1252487969889],[-10.369903699036996,52.1252487969889],[-10.366303663036632,52.11849448790937],[-10.362703627036268,52.115117333369625],[-10.35550355503554,52.11174017882985],[-10.377103771037696,52.11174017882985],[-10.416704167041672,52.09992013794067],[-10.438304383043828,52.0982315606708],[-10.459904599045984,52.10329729248042],[-10.467104671046712,52.115117333369625],[-10.470704707047076,52.13200310606845],[-10.477904779047776,52.15226603330703],[-10.470704707047076,52.155643187846806],[-10.452704527045256,52.16577465146608],[-10.452704527045256,52.172528960545634],[-10.459904599045984,52.17928326962516],[-10.449104491044892,52.18941473324446],[-10.427504275042736,52.19616904232399],[-10.409504095040944,52.199546196863736],[-10.416704167041672,52.186037578704685],[-10.395103951039516,52.17421753781551],[-10.38070380703806,52.172528960545634],[-10.373503735037332,52.17590611508538],[-10.369903699036996,52.18434900143481],[-10.373503735037332,52.191103310514336],[-10.373503735037332,52.19785761959386],[-10.362703627036268,52.20630050594329],[-10.369903699036996,52.21136623775291],[-10.377103771037696,52.213054815022815],[-10.366303663036632,52.22825201045174],[-10.35550355503554,52.23162916499152],[-10.341103411034112,52.23162916499152],[-10.319503195031956,52.235006319531294],[-10.308703087030864,52.24176062861082],[-10.287102871028708,52.2637121331193],[-10.276302763027616,52.26877786492895],[-10.171901719017171,52.28735221489765],[-10.157501575015743,52.278909328548224],[-10.168301683016836,52.240072051340945],[-10.164701647016471,52.235006319531294],[-10.099900999009975,52.240072051340945],[-10.071100711007091,52.25189209223012],[-10.04590045900457,52.26877786492895],[-10.035100351003507,52.2907293694374],[-10.060300603006027,52.30930371940613],[-10.024300243002415,52.30930371940613],[-10.013500135001351,52.305926564866354],[-10.017100171001715,52.29579510124705],[-10.013500135001351,52.282286483088],[-10.013500135001351,52.26540071038917],[-10.009900099000987,52.253580669499996],[-9.99549995499953,52.248514937690345],[-9.977499774997739,52.24682636042047],[-9.948699486994855,52.23838347407104],[-9.91269912699127,52.23331774226139],[-9.873098730987294,52.23331774226139],[-9.858698586985867,52.23838347407104],[-9.83709837098371,52.253580669499996],[-9.826298262982618,52.25864640130965],[-9.81189811898119,52.25526924676987],[-9.81909819098189,52.25189209223012],[-9.826298262982618,52.248514937690345],[-9.808298082980826,52.24176062861082],[-9.73629736297363,52.248514937690345],[-9.754297542975422,52.25864640130965],[-9.76869768697685,52.26033497857952],[-9.797497974979734,52.262023555849396],[-9.833498334983346,52.2721550194687],[-9.847898478984774,52.275532174008475],[-9.86229862298623,52.26877786492895],[-9.86949869498693,52.27384359673857],[-9.876698766987658,52.278909328548224],[-9.880298802988023,52.28735221489765],[-9.880298802988023,52.29579510124705],[-9.86949869498693,52.289040792167526],[-9.858698586985867,52.283975060357875],[-9.847898478984774,52.283975060357875],[-9.833498334983346,52.289040792167526],[-9.847898478984774,52.29410652397718],[-9.855098550985502,52.29579510124705],[-9.86229862298623,52.29579510124705],[-9.86229862298623,52.30423798759648],[-9.851498514985138,52.30423798759648],[-9.826298262982618,52.30930371940613],[-9.83709837098371,52.32618949210496],[-9.833498334983346,52.37515823293154],[-9.851498514985138,52.38528969655084],[-9.905499054990543,52.39204400563037],[-9.930699306993063,52.400486891979796],[-9.948699486994855,52.41230693286897],[-9.934299342993427,52.42074981921837],[-9.916299162991635,52.42581555102802],[-9.847898478984774,52.4291927055678],[-9.750697506975058,52.45620994188593],[-9.73629736297363,52.462964250965456],[-9.721897218972174,52.47647286912451],[-9.703897038970382,52.48322717820403],[-9.678696786967862,52.48322717820403],[-9.649896498964978,52.47816144639438],[-9.63549635496355,52.47309571458476],[-9.639096390963914,52.48660433274381],[-9.649896498964978,52.493358641823335],[-9.66789667896677,52.49504721909321],[-9.682296822968226,52.49504721909321],[-9.678696786967862,52.50011295090286],[-9.675096750967498,52.50517868271251],[-9.678696786967862,52.51024441452216],[-9.682296822968226,52.515310146331814],[-9.682296822968226,52.52206445541134],[-9.675096750967498,52.528818764490865],[-9.671496714967134,52.533884496300516],[-9.675096750967498,52.54570453718969],[-9.671496714967134,52.55245884626922],[-9.649896498964978,52.57103319623795],[-9.64269642696425,52.56765604169817],[-9.63549635496355,52.569344618968046],[-9.628296282962822,52.5744103507777],[-9.61749617496173,52.577787505317474],[-9.577895778957782,52.57103319623795],[-9.498694986949857,52.57103319623795],[-9.487894878948794,52.56765604169817],[-9.480694806948065,52.56427888715842],[-9.469894698946973,52.56259030988852],[-9.45909459094591,52.5659674644283],[-9.451894518945181,52.57272177350782],[-9.448294482944817,52.5760989280476],[-9.437494374943753,52.577787505317474],[-9.361893618936193,52.5760989280476],[-9.35829358293583,52.5760989280476],[-9.351093510935101,52.5744103507777],[-9.336693366933673,52.577787505317474],[-9.271892718927177,52.577787505317474],[-9.235892358923593,52.58116465985725],[-9.221492214922137,52.586230391666874],[-9.207092070920709,52.5946732780163],[-9.192691926919252,52.59973900982595],[-9.070290702907016,52.623379091604306],[-9.052290522905224,52.631821977953706],[-9.045090450904496,52.62000193706453],[-9.027090270902704,52.618313359794655],[-9.005490054900548,52.62000193706453],[-8.991089910899092,52.62506766887418],[-8.983889838898392,52.63013340068383],[-8.980289802898028,52.640264864303134],[-8.969489694896936,52.648707750652534],[-8.958689586895872,52.65208490519231],[-8.785887858878596,52.66559352335136],[-8.749887498874983,52.672347832430916],[-8.767887678876775,52.672347832430916],[-8.832688326883272,52.68923360512974],[-8.868688686886856,52.69261075966949],[-8.933489334893352,52.68754502785984],[-8.951489514895144,52.68923360512974],[-8.962289622896236,52.694299336939366],[-8.962289622896236,52.69936506874902],[-8.94788947889478,52.70611937782854],[-8.94788947889478,52.71456226417797],[-8.955089550895508,52.72300515052737],[-8.951489514895144,52.734825191416576],[-8.955089550895508,52.74495665503585],[-8.969489694896936,52.74833380957563],[-8.962289622896236,52.756776695925026],[-8.951489514895144,52.770285314084106],[-8.944289442894416,52.77535104589376],[-8.969489694896936,52.770285314084106],[-9.001890018900184,52.7601538504648],[-9.02349023490234,52.74664523230575],[-9.027090270902704,52.734825191416576],[-9.059490594905952,52.69598791420927],[-9.145891458914576,52.623379091604306],[-9.167491674916732,52.618313359794655],[-9.253892538925385,52.61155905071513],[-9.261092610926113,52.60818189617535],[-9.27549275492754,52.5946732780163],[-9.286292862928633,52.591296123476525],[-9.297092970929697,52.58960754620665],[-9.311493114931153,52.591296123476525],[-9.322293222932217,52.59298470074643],[-9.333093330933309,52.59805043255605],[-9.318693186931853,52.60649331890548],[-9.293492934929333,52.61493620525488],[-9.279092790927905,52.62506766887418],[-9.279092790927905,52.63857628703326],[-9.311493114931153,52.62675624614408],[-9.38349383493835,52.613247627985004],[-9.43389433894339,52.61155905071513],[-9.455494554945545,52.61493620525488],[-9.477094770947701,52.62000193706453],[-9.48429484294843,52.62844482341396],[-9.49149491494913,52.63351055522361],[-9.523895238952377,52.63688770976336],[-9.538295382953834,52.645330596112785],[-9.53469534695347,52.66052779154171],[-9.545495454954533,52.667282100621264],[-9.581495814958146,52.66559352335136],[-9.581495814958146,52.658839214271836],[-9.570695706957054,52.65715063700196],[-9.563495634956354,52.653773482462185],[-9.556295562955626,52.64701917338266],[-9.552695526955262,52.63857628703326],[-9.628296282962822,52.618313359794655],[-9.671496714967134,52.61155905071513],[-9.69309693096929,52.604804741635604],[-9.703897038970382,52.5946732780163],[-9.707497074970746,52.57947608258735],[-9.714697146971474,52.577787505317474],[-9.721897218972174,52.582853237127125],[-9.729097290972902,52.584541814397],[-9.757897578975786,52.57272177350782],[-9.93789937899379,52.55752457807887],[-9.93789937899379,52.56259030988852],[-9.91989919899197,52.56765604169817],[-9.876698766987658,52.586230391666874],[-9.822698226982254,52.5946732780163],[-9.621096210962094,52.71456226417797],[-9.624696246962458,52.71793941871775],[-9.628296282962822,52.72807088233702],[-9.61749617496173,52.7314480368768],[-9.603096030960302,52.738202345956324],[-9.59229592295921,52.7415795004961],[-9.581495814958146,52.743268077765975],[-9.549095490954898,52.7415795004961],[-9.538295382953834,52.7415795004961],[-9.520295202952013,52.74664523230575],[-9.50949509495095,52.74833380957563],[-9.498694986949857,52.751710964115404],[-9.495094950949493,52.76184242773468],[-9.49149491494913,52.773662468623854],[-9.48429484294843,52.78210535497328],[-9.487894878948794,52.787171086782934],[-9.487894878948794,52.78885966405281],[-9.48429484294843,52.79561397313233],[-9.49149491494913,52.80236828221186],[-9.480694806948065,52.80743401402151],[-9.469894698946973,52.81249974583116],[-9.45909459094591,52.82094263218059],[-9.451894518945181,52.83107409579986],[-9.444694446944453,52.83951698214929],[-9.441094410944117,52.84795986849869],[-9.437494374943753,52.85302560030834],[-9.430294302943025,52.85809133211799],[-9.430294302943025,52.86484564119752],[-9.426694266942661,52.8783542593566],[-9.365493654936557,52.91381438202413],[-9.354693546935465,52.93407730926273],[-9.372693726937257,52.93745446380248],[-9.451894518945181,52.93407730926273],[-9.477094770947701,52.94083161834226],[-9.448294482944817,52.957717391041086],[-9.437494374943753,52.966160277390486],[-9.40869408694087,52.99655466824839],[-9.397893978939777,53.00330897732792],[-9.387093870938713,53.00837470913757],[-9.394293942939413,53.015129018217095],[-9.340293402934037,53.077606377202756],[-9.318693186931853,53.09111499536181],[-9.304293042930425,53.108000768060634],[-9.289892898928997,53.12995227256911],[-9.271892718927177,53.14683804526794],[-9.25029250292502,53.15190377707759],[-9.228692286922865,53.143460890728164],[-9.181891818918189,53.11644365441006],[-9.160291602916033,53.11137792260041],[-9.138691386913877,53.11475507714016],[-9.120691206912056,53.12319796348959],[-9.095490954909536,53.126575118029336],[-9.07389073890738,53.11813223167994],[-9.070290702907016,53.135018004378765],[-9.084690846908472,53.143460890728164],[-9.127891278912784,53.15190377707759],[-9.127891278912784,53.15865808615712],[-9.070290702907016,53.16541239523664],[-9.052290522905224,53.162035240696895],[-9.02349023490234,53.14683804526794],[-9.005490054900548,53.14514946799807],[-9.005490054900548,53.15190377707759],[-9.045090450904496,53.16541239523664],[-9.045090450904496,53.17385528158607],[-9.02349023490234,53.167100972506546],[-9.009090090900912,53.16541239523664],[-8.99828998289982,53.17385528158607],[-8.987489874898756,53.17723243612582],[-8.980289802898028,53.175543858855946],[-8.983889838898392,53.16541239523664],[-8.9730897308973,53.15865808615712],[-8.962289622896236,53.15190377707759],[-8.951489514895144,53.148526622537815],[-8.937089370893716,53.14514946799807],[-8.944289442894416,53.16541239523664],[-8.951489514895144,53.17385528158607],[-8.955089550895508,53.1806095906656],[-8.944289442894416,53.19580678609455],[-8.929889298892988,53.205938249713824],[-8.893888938889376,53.22113544514278],[-8.904689046890468,53.22113544514278],[-8.92268922689226,53.21606971333313],[-8.933489334893352,53.21438113606325],[-9.030690306903068,53.21606971333313],[-9.045090450904496,53.22113544514278],[-9.027090270902704,53.2278897542223],[-8.983889838898392,53.23464406330183],[-8.962289622896236,53.23464406330183],[-8.962289622896236,53.24139837238138],[-8.991089910899092,53.24139837238138],[-8.991089910899092,53.24815268146091],[-8.980289802898028,53.25321841327056],[-8.955089550895508,53.25828414508021],[-8.944289442894416,53.26166129961996],[-8.944289442894416,53.268415608699485],[-9.02349023490234,53.27516991777904],[-9.041490414904132,53.273481340509136],[-9.077490774907744,53.26334987688983],[-9.401494014940141,53.24815268146091],[-9.43389433894339,53.238021217841606],[-9.448294482944817,53.23126690876208],[-9.469894698946973,53.2278897542223],[-9.513095130951314,53.2278897542223],[-9.53469534695347,53.23464406330183],[-9.545495454954533,53.24308694965126],[-9.552695526955262,53.25321841327056],[-9.56709567095669,53.26166129961996],[-9.545495454954533,53.27854707231879],[-9.556295562955626,53.290367113207964],[-9.570695706957054,53.290367113207964],[-9.581495814958146,53.27179276323926],[-9.58509585095851,53.24984125873078],[-9.595895958959574,53.238021217841606],[-9.613896138961394,53.23633264057173],[-9.628296282962822,53.24815268146091],[-9.628296282962822,53.254906990540434],[-9.61029610296103,53.27685849504891],[-9.61749617496173,53.32076150406587],[-9.595895958959574,53.330892967685145],[-9.595895958959574,53.32920439041527],[-9.58509585095851,53.32413865860562],[-9.577895778957782,53.32413865860562],[-9.574295742957418,53.325827235875494],[-9.56709567095669,53.335958699494796],[-9.563495634956354,53.3376472767647],[-9.55989559895599,53.34102443130445],[-9.599495994959938,53.3646645130828],[-9.588695886958874,53.37310739943223],[-9.552695526955262,53.384927440321405],[-9.588695886958874,53.38661601759128],[-9.606696066960666,53.384927440321405],[-9.621096210962094,53.37817313124188],[-9.61029610296103,53.3663530903527],[-9.606696066960666,53.349467317653875],[-9.613896138961394,53.33427012222492],[-9.63549635496355,53.330892967685145],[-9.653496534965342,53.34102443130445],[-9.646296462964614,53.35959878127315],[-9.639096390963914,53.37817313124188],[-9.639096390963914,53.384927440321405],[-9.64269642696425,53.38661601759128],[-9.649896498964978,53.39168174940093],[-9.653496534965342,53.393370326670805],[-9.657096570965706,53.388304594861154],[-9.671496714967134,53.37817313124188],[-9.68589685896859,53.3747959767021],[-9.69309693096929,53.36804166762258],[-9.703897038970382,53.35115589492375],[-9.729097290972902,53.325827235875494],[-9.74349743497433,53.31400719498632],[-9.790297902979034,53.30218715409714],[-9.808298082980826,53.30218715409714],[-9.822698226982254,53.31400719498632],[-9.84429844298441,53.32413865860562],[-9.88749887498875,53.317384349526094],[-9.901899018990179,53.32413865860562],[-9.898298982989814,53.327515813145396],[-9.891098910989115,53.34102443130445],[-9.891098910989115,53.35115589492375],[-9.88749887498875,53.35959878127315],[-9.880298802988023,53.362975935812926],[-9.873098730987294,53.3646645130828],[-9.858698586985867,53.3646645130828],[-9.840698406984075,53.36804166762258],[-9.801098010980098,53.384927440321405],[-9.78669786697867,53.393370326670805],[-9.78669786697867,53.398436058480456],[-9.81909819098189,53.398436058480456],[-9.81909819098189,53.406878944829884],[-9.797497974979734,53.411944676639536],[-9.797497974979734,53.41869898571906],[-9.815498154981555,53.41869898571906],[-9.826298262982618,53.41701040844919],[-9.847898478984774,53.406878944829884],[-9.847898478984774,53.40012463575036],[-9.858698586985867,53.39505890394071],[-9.876698766987658,53.39505890394071],[-9.880298802988023,53.406878944829884],[-9.876698766987658,53.415321831179284],[-9.855098550985502,53.42376471752871],[-9.847898478984774,53.433896181147986],[-9.858698586985867,53.43220760387811],[-9.86949869498693,53.42714187206846],[-9.876698766987658,53.42207614025881],[-9.883898838988387,53.41869898571906],[-9.89469894698945,53.42207614025881],[-9.901899018990179,53.42545329479859],[-9.91269912699127,53.42545329479859],[-9.923499234992335,53.41869898571906],[-9.927099270992699,53.41025609936963],[-9.923499234992335,53.398436058480456],[-9.923499234992335,53.38999317213106],[-9.934299342993427,53.384927440321405],[-9.94509945099449,53.384927440321405],[-9.963099630996311,53.379861708511754],[-10.002700027000259,53.379861708511754],[-10.013500135001351,53.38155028578163],[-10.024300243002415,53.384927440321405],[-10.035100351003507,53.393370326670805],[-10.042300423004235,53.40181321302023],[-10.049500495004935,53.41025609936963],[-10.063900639006391,53.411944676639536],[-10.10350103501034,53.40856752209976],[-10.12870128701286,53.41025609936963],[-10.143101431014315,53.41869898571906],[-10.150301503015015,53.415321831179284],[-10.157501575015743,53.41363325390941],[-10.175501755017535,53.411944676639536],[-10.168301683016836,53.42883044933836],[-10.157501575015743,53.43896191295764],[-10.143101431014315,53.44571622203719],[-10.121501215012131,53.447404799307066],[-10.081900819008183,53.442339067497414],[-10.067500675006755,53.44402764476729],[-10.053100531005299,53.45415910838659],[-10.053100531005299,53.46091341746612],[-10.063900639006391,53.46260199473602],[-10.074700747007455,53.46597914927577],[-10.081900819008183,53.47273345835529],[-10.085500855008547,53.48117634470472],[-10.063900639006391,53.47948776743485],[-10.042300423004235,53.47273345835529],[-10.02070020700205,53.47104488108542],[-10.013500135001351,53.48117634470472],[-10.031500315003143,53.47948776743485],[-10.071100711007091,53.48455349924447],[-10.107101071010703,53.49468496286377],[-10.12870128701286,53.50819358102285],[-10.12870128701286,53.51494789010238],[-10.135901359013587,53.526767930991554],[-10.143101431014315,53.53858797188073],[-10.15390153901538,53.54365370369038],[-10.182701827018263,53.53858797188073],[-10.193501935019356,53.53858797188073],[-10.20430204302042,53.54365370369038],[-10.1791017910179,53.55547374457956],[-10.157501575015743,53.55547374457956],[-10.132301323013223,53.55040801276991],[-10.107101071010703,53.55040801276991],[-10.110701107011067,53.553785167309684],[-10.114301143011431,53.56560520819886],[-10.114301143011431,53.57067094000851],[-10.071100711007091,53.57067094000851],[-10.024300243002415,53.562228053659084],[-10.02070020700205,53.55885089911931],[-10.006300063000623,53.54365370369038],[-9.99549995499953,53.54703085823013],[-9.981099810998103,53.55885089911931],[-9.97029970299701,53.562228053659084],[-10.031500315003143,53.58755671270734],[-10.04590045900457,53.599376753596516],[-10.009900099000987,53.60444248540614],[-9.930699306993063,53.599376753596516],[-9.901899018990179,53.60444248540614],[-9.86949869498693,53.61795110356522],[-9.855098550985502,53.61795110356522],[-9.84429844298441,53.616262526295344],[-9.822698226982254,53.60613106267604],[-9.775897758977578,53.60106533086639],[-9.696696966969654,53.59768817632661],[-9.696696966969654,53.60444248540614],[-9.714697146971474,53.60950821721579],[-9.783097830978306,53.60613106267604],[-9.826298262982618,53.616262526295344],[-9.909099090990907,53.64665691715322],[-9.923499234992335,53.69055992617018],[-9.916299162991635,53.71251143067863],[-9.905499054990543,53.727708626107585],[-9.898298982989814,53.74459439880641],[-9.909099090990907,53.76148017150524],[-9.898298982989814,53.76654590331489],[-9.86229862298623,53.76992305785467],[-9.833498334983346,53.776677366934194],[-9.81189811898119,53.77836594420407],[-9.801098010980098,53.78005452147394],[-9.790297902979034,53.7868088305535],[-9.783097830978306,53.7868088305535],[-9.76149761497615,53.78005452147394],[-9.750697506975058,53.776677366934194],[-9.56709567095669,53.79694029417277],[-9.56709567095669,53.803694603252325],[-9.581495814958146,53.8053831805222],[-9.621096210962094,53.817203221411376],[-9.61749617496173,53.81889179868125],[-9.613896138961394,53.82226895322103],[-9.606696066960666,53.8239575304909],[-9.599495994959938,53.8239575304909],[-9.599495994959938,53.83071183957043],[-9.606696066960666,53.839154725919855],[-9.595895958959574,53.847597612269254],[-9.55989559895599,53.86448338496808],[-9.56709567095669,53.866171962237985],[-9.588695886958874,53.87123769404761],[-9.577895778957782,53.87630342585726],[-9.574295742957418,53.883057734936784],[-9.56709567095669,53.88981204401634],[-9.56709567095669,53.89994350763561],[-9.574295742957418,53.89825493036574],[-9.577895778957782,53.89825493036574],[-9.581495814958146,53.896566353095864],[-9.588695886958874,53.89318919855609],[-9.613896138961394,53.89825493036574],[-9.757897578975786,53.89994350763561],[-9.855098550985502,53.866171962237985],[-9.909099090990907,53.85941765315843],[-9.94509945099449,53.879680580397036],[-9.930699306993063,53.88474631220669],[-9.923499234992335,53.91345212579469],[-9.909099090990907,53.92020643487422],[-9.91269912699127,53.93033789849352],[-9.91269912699127,53.93371505303327],[-9.909099090990907,53.94046936211282],[-9.909099090990907,53.94722367119235],[-9.916299162991635,53.94722367119235],[-9.916299162991635,53.95397798027187],[-9.86949869498693,53.9607322893514],[-9.858698586985867,53.959043712081524],[-9.83709837098371,53.94891224846222],[-9.822698226982254,53.94722367119235],[-9.81189811898119,53.942157939382696],[-9.808298082980826,53.91851785760434],[-9.797497974979734,53.91345212579469],[-9.78669786697867,53.91682928033444],[-9.78669786697867,53.923583589413994],[-9.790297902979034,53.93540363030317],[-9.78669786697867,53.94722367119235],[-9.79389793897937,53.952289403002],[-9.804698046980462,53.9607322893514],[-9.81189811898119,53.96579802116105],[-9.826298262982618,53.96748659843092],[-9.826298262982618,53.9607322893514],[-9.81909819098189,53.95397798027187],[-9.829898298982982,53.95566655754175],[-9.83709837098371,53.964109443891175],[-9.851498514985138,53.98774952566953],[-9.847898478984774,53.99281525747918],[-9.847898478984774,53.99788098928883],[-9.855098550985502,54.00294672109848],[-9.86229862298623,54.00294672109848],[-9.876698766987658,54.00125814382858],[-9.880298802988023,54.004635298368356],[-9.883898838988387,54.01138960744788],[-9.891098910989115,54.01645533925753],[-9.898298982989814,54.02489822560693],[-9.901899018990179,54.040095421035886],[-9.898298982989814,54.05529261646484],[-9.88749887498875,54.06035834827449],[-9.873098730987294,54.062046925544365],[-9.86229862298623,54.070489811893765],[-9.876698766987658,54.075555543703416],[-9.876698766987658,54.08062127551307],[-9.865898658986595,54.08737558459259],[-9.855098550985502,54.09075273913237],[-9.86229862298623,54.097507048211895],[-9.833498334983346,54.11270424364085],[-9.84429844298441,54.1177699754505],[-9.855098550985502,54.1177699754505],[-9.880298802988023,54.11270424364085],[-9.880298802988023,54.10426135729142],[-9.880298802988023,54.10088420275167],[-9.883898838988387,54.09919562548177],[-9.89469894698945,54.097507048211895],[-9.89469894698945,54.09075273913237],[-9.88749887498875,54.09075273913237],[-9.916299162991635,54.070489811893765],[-9.94509945099449,54.06542408008414],[-9.97029970299701,54.07893269824319],[-9.991899918999195,54.10426135729142],[-9.97029970299701,54.10426135729142],[-9.927099270992699,54.11270424364085],[-9.909099090990907,54.1177699754505],[-9.93789937899379,54.13127859360955],[-9.952299522995219,54.14141005722885],[-9.955899558995583,54.15323009811803],[-9.948699486994855,54.151541520848156],[-9.93789937899379,54.14816436630838],[-9.930699306993063,54.146475789038504],[-9.941499414994155,54.15829582992768],[-9.977499774997739,54.18024733443616],[-9.963099630996311,54.17518160262651],[-9.952299522995219,54.17518160262651],[-9.941499414994155,54.17855875716626],[-9.93789937899379,54.187001643515686],[-9.988299882998831,54.21233030256391],[-10.009900099000987,54.21908461164347],[-10.024300243002415,54.20726457075426],[-10.009900099000987,54.19713310713499],[-10.017100171001715,54.18869022078556],[-10.035100351003507,54.18531306624581],[-10.053100531005299,54.187001643515686],[-10.042300423004235,54.17687017989638],[-10.038700387003871,54.173493025356635],[-10.038700387003871,54.16673871627708],[-10.053100531005299,54.16842729354698],[-10.067500675006755,54.16673871627708],[-10.085500855008547,54.159984407197555],[-10.085500855008547,54.15323009811803],[-10.074700747007455,54.14985294357825],[-10.067500675006755,54.14478721176863],[-10.067500675006755,54.124524284530025],[-10.074700747007455,54.124524284530025],[-10.096300963009611,54.1177699754505],[-10.081900819008183,54.11270424364085],[-10.067500675006755,54.10426135729142],[-10.067500675006755,54.09412989367215],[-10.085500855008547,54.09075273913237],[-10.10350103501034,54.092441316402244],[-10.117901179011795,54.09581847094202],[-10.125101251012495,54.10594993456132],[-10.12870128701286,54.124524284530025],[-10.121501215012131,54.1363443254192],[-10.099900999009975,54.16505013900721],[-10.096300963009611,54.17687017989638],[-10.092700927009275,54.195444529865085],[-10.081900819008183,54.20388741621451],[-10.071100711007091,54.208953148024165],[-10.060300603006027,54.222461766183216],[-10.092700927009275,54.222461766183216],[-10.10350103501034,54.22583892072299],[-10.114301143011431,54.23428180707239],[-10.096300963009611,54.235970384342295],[-10.085500855008547,54.244413270691695],[-10.081900819008183,54.257921888850746],[-10.074700747007455,54.26974192973992],[-10.063900639006391,54.27480766154957],[-10.017100171001715,54.29000485697853],[-10.013500135001351,54.29507058878818],[-10.013500135001351,54.30013632059783],[-10.006300063000623,54.30351347513758],[-9.999099990999895,54.30351347513758],[-9.991899918999195,54.30013632059783],[-9.988299882998831,54.29507058878818],[-9.988299882998831,54.28831627970865],[-9.984699846998467,54.283250547899],[-9.97029970299701,54.276496238819476],[-9.955899558995583,54.271430507009825],[-9.93789937899379,54.271430507009825],[-9.923499234992335,54.276496238819476],[-9.916299162991635,54.26805335247005],[-9.905499054990543,54.2646761979303],[-9.898298982989814,54.2646761979303],[-9.88749887498875,54.26974192973992],[-9.88749887498875,54.266364775200174],[-9.88749887498875,54.2646761979303],[-9.88749887498875,54.2629876206604],[-9.880298802988023,54.2629876206604],[-9.901899018990179,54.23765896161217],[-9.927099270992699,54.22752749799287],[-9.952299522995219,54.22921607526274],[-9.977499774997739,54.24272469342182],[-9.984699846998467,54.222461766183216],[-9.966699666996675,54.217396034373564],[-9.94509945099449,54.21570745710369],[-9.927099270992699,54.21064172529404],[-9.909099090990907,54.20388741621451],[-9.89469894698945,54.21233030256391],[-9.883898838988387,54.222461766183216],[-9.86949869498693,54.22752749799287],[-9.880298802988023,54.24103611615192],[-9.876698766987658,54.25623331158087],[-9.858698586985867,54.26974192973992],[-9.84429844298441,54.276496238819476],[-9.822698226982254,54.2731190842797],[-9.78669786697867,54.257921888850746],[-9.765097650976514,54.25623331158087],[-9.772297722977214,54.2646761979303],[-9.779497794977942,54.26974192973992],[-9.797497974979734,54.276496238819476],[-9.797497974979734,54.283250547899],[-9.790297902979034,54.28662770243875],[-9.779497794977942,54.28662770243875],[-9.757897578975786,54.283250547899],[-9.775897758977578,54.29000485697853],[-9.829898298982982,54.29675916605805],[-9.840698406984075,54.306890629677355],[-9.84429844298441,54.32208782510631],[-9.84429844298441,54.328842134185834],[-9.78669786697867,54.337285020535234],[-9.765097650976514,54.33559644326536],[-9.725497254972538,54.320399247836406],[-9.707497074970746,54.31702209329666],[-9.53469534695347,54.31026778421713],[-9.523895238952377,54.311956361487006],[-9.505895058950586,54.31702209329666],[-9.495094950949493,54.31702209329666],[-9.48429484294843,54.315333516026755],[-9.473494734947337,54.306890629677355],[-9.462694626946274,54.30351347513758],[-9.38349383493835,54.29675916605805],[-9.376293762937621,54.298447743327955],[-9.361893618936193,54.30351347513758],[-9.351093510935101,54.30857920694723],[-9.343893438934373,54.31364493875688],[-9.333093330933309,54.31871067056653],[-9.322293222932217,54.31702209329666],[-9.27549275492754,54.30520205240748],[-9.268292682926813,54.30351347513758],[-9.261092610926113,54.30013632059783],[-9.253892538925385,54.28156197062913],[-9.246692466924657,54.276496238819476],[-9.228692286922865,54.27818481608935],[-9.217892178921772,54.279873393359225],[-9.217892178921772,54.283250547899],[-9.210692106921073,54.27480766154957],[-9.210692106921073,54.26805335247005],[-9.210692106921073,54.25961046612065],[-9.217892178921772,54.25623331158087],[-9.217892178921772,54.249479002501346],[-9.196291962919616,54.24272469342182],[-9.196291962919616,54.23428180707239],[-9.214292142921437,54.22752749799287],[-9.210692106921073,54.217396034373564],[-9.160291602916033,54.19206737532534],[-9.14949149491494,54.18024733443616],[-9.142291422914212,54.16505013900721],[-9.142291422914212,54.146475789038504],[-9.135091350913513,54.146475789038504],[-9.135091350913513,54.16336156173733],[-9.131491314913148,54.17855875716626],[-9.127891278912784,54.19375595259521],[-9.135091350913513,54.20726457075426],[-9.113491134911357,54.214018879833816],[-9.091890918909172,54.22583892072299],[-9.07389073890738,54.24610184796157],[-9.066690666906652,54.2731190842797],[-9.052290522905224,54.29000485697853],[-9.016290162901612,54.2916934342484],[-8.955089550895508,54.283250547899],[-8.951489514895144,54.284939125168876],[-8.944289442894416,54.28831627970865],[-8.940689406894052,54.29000485697853],[-8.926289262892624,54.284939125168876],[-8.911889118891196,54.27818481608935],[-8.893888938889376,54.27480766154957],[-8.87228872288722,54.2646761979303],[-8.857888578885792,54.2629876206604],[-8.807488074880752,54.2629876206604],[-8.785887858878596,54.266364775200174],[-8.764287642876411,54.276496238819476],[-8.739087390873891,54.2646761979303],[-8.677886778867787,54.271430507009825],[-8.649086490864903,54.2629876206604],[-8.641886418864175,54.25285615704112],[-8.63828638286381,54.24272469342182],[-8.634686346863475,54.23259322980252],[-8.605886058860591,54.22583892072299],[-8.595085950859499,54.21908461164347],[-8.573485734857343,54.20051026167474],[-8.559085590855915,54.20726457075426],[-8.544685446854459,54.208953148024165],[-8.51228512285121,54.20726457075426],[-8.51228512285121,54.214018879833816],[-8.526685266852667,54.21908461164347],[-8.544685446854459,54.222461766183216],[-8.559085590855915,54.22752749799287],[-8.566285662856615,54.23934753888204],[-8.573485734857343,54.24610184796157],[-8.58788587885877,54.25285615704112],[-8.605886058860591,54.25623331158087],[-8.620286202862019,54.25623331158087],[-8.620286202862019,54.2629876206604],[-8.61308613086129,54.26805335247005],[-8.602286022860227,54.279873393359225],[-8.595085950859499,54.283250547899],[-8.569885698856979,54.276496238819476],[-8.559085590855915,54.27480766154957],[-8.551885518855187,54.279873393359225],[-8.541085410854095,54.284939125168876],[-8.469084690846898,54.276496238819476],[-8.48708487084869,54.28831627970865],[-8.50508505085051,54.29675916605805],[-8.523085230852303,54.301824897867704],[-8.541085410854095,54.30351347513758],[-8.56268562685625,54.30351347513758],[-8.569885698856979,54.30520205240748],[-8.573485734857343,54.31364493875688],[-8.566285662856615,54.32377640237618],[-8.55548555485555,54.32208782510631],[-8.53028530285303,54.31026778421713],[-8.51228512285121,54.31702209329666],[-8.519485194851939,54.32715355691596],[-8.541085410854095,54.333907865995485],[-8.56268562685625,54.337285020535234],[-8.659886598865995,54.337285020535234],[-8.667086670866695,54.34066217507501],[-8.667086670866695,54.35248221596419],[-8.66348663486633,54.35923652504371],[-8.652686526865267,54.36599083412324],[-8.641886418864175,54.37105656593289],[-8.61308613086129,54.37612229774254],[-8.497884978849783,54.423402461299276],[-8.47988479884799,54.426779615839024],[-8.472684726847262,54.4301567703788],[-8.472684726847262,54.4385996567282],[-8.469084690846898,54.4571740066969],[-8.465484654846534,54.47574835666563],[-8.458284582845835,54.472371202125856],[-8.451084510845106,54.46055116123668],[-8.447484474844742,54.45548542942703],[-8.443884438844378,54.453796852157154],[-8.443884438844378,54.44704254307763],[-8.415084150841494,54.458862583966805],[-8.382683826838274,54.46899404758611],[-8.299882998829986,54.47743693393551],[-8.289082890828894,54.47912551120538],[-8.242282422824218,54.49769986117411],[-8.20988209882097,54.502765592983735],[-8.20988209882097,54.50951990206329],[-8.242282422824218,54.50951990206329],[-8.256682566825674,54.51458563387294],[-8.271082710827102,54.52302852022234],[-8.217082170821698,54.55004575654047],[-8.217082170821698,54.57030868377905],[-8.173881738817386,54.5939487655574],[-8.173881738817386,54.619277424605656],[-8.163081630816293,54.61590027006588],[-8.155881558815594,54.61083453825623],[-8.148681486814866,54.60745738371648],[-8.137881378813773,54.605768806446605],[-8.12708127081271,54.63785177457436],[-8.119881198811981,54.646294660923786],[-8.123481234812346,54.64798323819366],[-8.123481234812346,54.649671815463535],[-8.12708127081271,54.649671815463535],[-8.12708127081271,54.65304897000331],[-8.145081450814502,54.64291750638401],[-8.166681666816658,54.636163197304484],[-8.23508235082349,54.62940888822496],[-8.271082710827102,54.61252311552613],[-8.292682926829258,54.605768806446605],[-8.292682926829258,54.61252311552613],[-8.281882818828194,54.62096600187553],[-8.281882818828194,54.62940888822496],[-8.28548285482853,54.636163197304484],[-8.30348303483035,54.63954035184426],[-8.317883178831778,54.636163197304484],[-8.343083430834298,54.61590027006588],[-8.368283682836818,54.60914596098635],[-8.415084150841494,54.578751570128475],[-8.42948429484295,54.57199726104895],[-8.440284402844014,54.5669315292393],[-8.458284582845835,54.565242951969395],[-8.458284582845835,54.57030868377905],[-8.433084330843315,54.587194456477874],[-8.418684186841858,54.5956373428273],[-8.397083970839702,54.59732592009718],[-8.38628386283861,54.605768806446605],[-8.38628386283861,54.619277424605656],[-8.400684006840066,54.62940888822496],[-8.415084150841494,54.619277424605656],[-8.422284222842222,54.619277424605656],[-8.418684186841858,54.641228929114135],[-8.433084330843315,54.641228929114135],[-8.447484474844742,54.627720310955056],[-8.458284582845835,54.60914596098635],[-8.46188461884617,54.60239165190683],[-8.472684726847262,54.60745738371648],[-8.483484834848355,54.61590027006588],[-8.48708487084869,54.62265457914543],[-8.483484834848355,54.627720310955056],[-8.48708487084869,54.63109746549483],[-8.494284942849418,54.63278604276471],[-8.501485014850147,54.63278604276471],[-8.51228512285121,54.627720310955056],[-8.515885158851574,54.62603173368518],[-8.541085410854095,54.62603173368518],[-8.551885518855187,54.62265457914543],[-8.56268562685625,54.60914596098635],[-8.577085770857707,54.61083453825623],[-8.598685986859863,54.619277424605656],[-8.674286742867423,54.619277424605656],[-8.688686886868851,54.62603173368518],[-8.681486814868151,54.636163197304484],[-8.692286922869215,54.641228929114135],[-8.775087750877503,54.65980327908284],[-8.793087930879295,54.65980327908284],[-8.789487894878931,54.663180433622614],[-8.785887858878596,54.66655758816236],[-8.782287822878232,54.66993474270214],[-8.778687786877867,54.67331189724189],[-8.778687786877867,54.68006620632144],[-8.789487894878931,54.68513193813109],[-8.79668796687966,54.69188624721062],[-8.79668796687966,54.698640556290144],[-8.782287822878232,54.70201771082992],[-8.767887678876775,54.70201771082992],[-8.753487534875347,54.70539486536967],[-8.74628746287462,54.7138377517191],[-8.74628746287462,54.725657792608274],[-8.731887318873191,54.7324121016878],[-8.66348663486633,54.76280649254568],[-8.63828638286381,54.76787222435533],[-8.53748537485373,54.766183647085455],[-8.483484834848355,54.75605218346615],[-8.458284582845835,54.75605218346615],[-8.458284582845835,54.76280649254568],[-8.526685266852667,54.77293795616498],[-8.544685446854459,54.78306941978428],[-8.53028530285303,54.788135151593934],[-8.483484834848355,54.78982372886381],[-8.472684726847262,54.78644657432403],[-8.46188461884617,54.774626533434855],[-8.443884438844378,54.76280649254568],[-8.425884258842586,54.75774076073603],[-8.407884078840794,54.76280649254568],[-8.46188461884617,54.793200883403586],[-8.497884978849783,54.801643769752985],[-8.533885338853395,54.81684096518194],[-8.559085590855915,54.81852954245181],[-8.55548555485555,54.82697242880121],[-8.548285482854823,54.83034958334099],[-8.53748537485373,54.83034958334099],[-8.526685266852667,54.832038160610864],[-8.515885158851574,54.83541531515064],[-8.501485014850147,54.84723535603982],[-8.490684906849054,54.85230108784947],[-8.472684726847262,54.84048104696029],[-8.447484474844742,54.83879246969042],[-8.400684006840066,54.84385820150004],[-8.346683466834662,54.832038160610864],[-8.325083250832506,54.832038160610864],[-8.325083250832506,54.83879246969042],[-8.343083430834298,54.84048104696029],[-8.364683646836454,54.84554677876994],[-8.382683826838274,54.855678242389246],[-8.37908379083791,54.872564015088045],[-8.368283682836818,54.88100690143747],[-8.32868328683287,54.877629746897696],[-8.314283142831414,54.8793183241676],[-8.325083250832506,54.886072633247124],[-8.33588335883357,54.90295840594595],[-8.350283502835026,54.9080241377556],[-8.368283682836818,54.9080241377556],[-8.375483754837546,54.9080241377556],[-8.37908379083791,54.90295840594595],[-8.37908379083791,54.89620409686643],[-8.37908379083791,54.88944978778687],[-8.37908379083791,54.886072633247124],[-8.407884078840794,54.887761210517],[-8.433084330843315,54.90126982867608],[-8.451084510845106,54.921532755914654],[-8.46188461884617,54.94010710588336],[-8.451084510845106,54.94686141496291],[-8.440284402844014,54.94348426042313],[-8.433084330843315,54.93841852861348],[-8.418684186841858,54.935041374073705],[-8.40428404284043,54.935041374073705],[-8.389883898838974,54.93841852861348],[-8.368283682836818,54.948549992232785],[-8.397083970839702,54.95530430131231],[-8.418684186841858,54.96881291947136],[-8.458284582845835,54.99583015578949],[-8.458284582845835,55.00258446486902],[-8.447484474844742,55.00765019667867],[-8.43668436684365,55.00933877394857],[-8.425884258842586,55.00933877394857],[-8.415084150841494,55.00258446486902],[-8.40428404284043,55.01271592848832],[-8.400684006840066,55.016093083028096],[-8.407884078840794,55.016093083028096],[-8.40428404284043,55.03129027845702],[-8.393483934839338,55.032978855726924],[-8.38628386283861,55.032978855726924],[-8.375483754837546,55.03635601026667],[-8.35388353883539,55.059996092045026],[-8.346683466834662,55.06506182385468],[-8.339483394833934,55.05830751477515],[-8.33588335883357,55.0346674329968],[-8.325083250832506,55.02960170118715],[-8.321483214832142,55.0346674329968],[-8.314283142831414,55.0532417829655],[-8.30348303483035,55.05830751477515],[-8.317883178831778,55.087013328363156],[-8.321483214832142,55.10558767833186],[-8.314283142831414,55.11234198741141],[-8.30348303483035,55.11909629649094],[-8.289082890828894,55.149490687348816],[-8.27828278282783,55.16131072823799],[-8.263882638826374,55.16131072823799],[-8.206282062820634,55.14611353280907],[-8.188281882818814,55.149490687348816],[-8.155881558815594,55.157933573698244],[-8.141481414814137,55.16131072823799],[-8.148681486814866,55.15117926461869],[-8.155881558815594,55.144424955539165],[-8.15948159481593,55.139359223729514],[-8.163081630816293,55.12922776011024],[-8.155881558815594,55.12416202830059],[-8.145081450814502,55.130916337380114],[-8.116281162811617,55.15455641915847],[-8.055080550805513,55.17650792366695],[-8.033480334803329,55.1815736554766],[-8.022680226802265,55.18832796455612],[-8.011880118801173,55.20521373725495],[-8.00108001080011,55.220410932683905],[-7.975879758797589,55.22209950995378],[-7.950679506795069,55.2102794690646],[-7.957879578795769,55.198459428175426],[-8.004680046800473,55.1815736554766],[-8.004680046800473,55.17481934639707],[-7.961479614796133,55.18663938728625],[-7.954279542795433,55.184950810016346],[-7.950679506795069,55.17988507820672],[-7.932679326793249,55.17988507820672],[-7.918279182791821,55.184950810016346],[-7.907479074790729,55.18832796455612],[-7.896678966789665,55.17481934639707],[-7.896678966789665,55.16806503731752],[-7.900279002790029,55.15624499642834],[-7.889478894788937,55.157933573698244],[-7.875078750787509,55.16468788277777],[-7.860678606786053,55.16806503731752],[-7.864278642786417,55.157933573698244],[-7.871478714787145,55.15117926461869],[-7.882278822788209,55.14780211007894],[-7.896678966789665,55.14611353280907],[-7.896678966789665,55.139359223729514],[-7.875078750787509,55.14104780099942],[-7.864278642786417,55.13767064645964],[-7.8570785707856885,55.139359223729514],[-7.846278462784625,55.14611353280907],[-7.8354783547835325,55.16468788277777],[-7.839078390783897,55.17650792366695],[-7.860678606786053,55.19508227363565],[-7.867878678786781,55.21534520087425],[-7.849878498784989,55.22716524176343],[-7.824678246782469,55.23898528265261],[-7.799477994779949,55.255871055351435],[-7.795877958779585,55.25080532354178],[-7.7922779227792205,55.24911674627191],[-7.8138781387813765,55.201836582715174],[-7.817478174781741,55.19508227363565],[-7.8138781387813765,55.193393696365774],[-7.810278102781012,55.18832796455612],[-7.806678066780648,55.184950810016346],[-7.799477994779949,55.1815736554766],[-7.788677886778856,55.1815736554766],[-7.781477814778128,55.18663938728625],[-7.7706777067770645,55.18832796455612],[-7.756277562775608,55.184950810016346],[-7.738277382773816,55.17650792366695],[-7.71667716677166,55.166376460047644],[-7.709477094770932,55.157933573698244],[-7.705877058770568,55.15286784188859],[-7.698676986769868,55.14104780099942],[-7.695076950769504,55.13260491464999],[-7.695076950769504,55.12585060557046],[-7.702277022770232,55.108964832871635],[-7.702277022770232,55.09883336925233],[-7.695076950769504,55.10727625560176],[-7.677076770767712,55.13429349191989],[-7.673476734767348,55.139359223729514],[-7.669876698766984,55.14780211007894],[-7.673476734767348,55.162999305507896],[-7.684276842768412,55.17819650093682],[-7.687876878768776,55.184950810016346],[-7.69147691476914,55.19508227363565],[-7.695076950769504,55.206902314524825],[-7.702277022770232,55.218722355414],[-7.71667716677166,55.22209950995378],[-7.723877238772388,55.21534520087425],[-7.720277202772024,55.2001480054453],[-7.71667716677166,55.184950810016346],[-7.709477094770932,55.17481934639707],[-7.723877238772388,55.17650792366695],[-7.731077310773088,55.1815736554766],[-7.74187741877418,55.18832796455612],[-7.7490774907749085,55.19508227363565],[-7.777877778777793,55.2001480054453],[-7.7922779227792205,55.20521373725495],[-7.788677886778856,55.218722355414],[-7.759877598775972,55.25080532354178],[-7.759877598775972,55.255871055351435],[-7.723877238772388,55.25249390081166],[-7.709477094770932,55.255871055351435],[-7.673476734767348,55.27444540532014],[-7.662676626766256,55.27613398259001],[-7.644676446764464,55.27275682805026],[-7.633876338763372,55.26262536443096],[-7.626676266762672,55.25249390081166],[-7.61587615876158,55.24911674627191],[-7.612276122761216,55.24067385992248],[-7.612276122761216,55.225476664493556],[-7.61587615876158,55.2102794690646],[-7.619476194761944,55.20521373725495],[-7.61587615876158,55.19677085090555],[-7.601476014760152,55.190016541826],[-7.572675726757268,55.1815736554766],[-7.572675726757268,55.16975361458742],[-7.56547565475654,55.15624499642834],[-7.551075510755112,55.144424955539165],[-7.54027540275402,55.139359223729514],[-7.5294752947529275,55.13260491464999],[-7.525875258752592,55.11571914195116],[-7.533075330753292,55.09883336925233],[-7.54027540275402,55.09207906017281],[-7.554675546755448,55.09039048290293],[-7.569075690756904,55.08363617382341],[-7.587075870758696,55.07181613293423],[-7.6410764107641,55.04986462842575],[-7.6410764107641,55.0431103193462],[-7.579875798757968,55.04986462842575],[-7.561875618756176,55.0447988966161],[-7.572675726757268,55.02284739210762],[-7.583475834758332,55.016093083028096],[-7.633876338763372,54.99583015578949],[-7.66627666276662,54.96881291947136],[-7.680676806768048,54.962058610391836],[-7.680676806768048,54.953615724042436],[-7.662676626766256,54.95868145585209],[-7.644676446764464,54.96543576493161],[-7.547475474754748,55.01778166029797],[-7.536675366753656,55.019470237567845],[-7.5294752947529275,55.03129027845702],[-7.5078750787507715,55.03635601026667],[-7.4862748627486155,55.03973316480645],[-7.468274682746824,55.0431103193462],[-7.457474574745731,55.05661893750528],[-7.450274502745032,55.07181613293423],[-7.453874538745367,55.087013328363156],[-7.471874718747188,55.09207906017281],[-7.479074790747887,55.09714479198246],[-7.471874718747188,55.10558767833186],[-7.4646746467464595,55.11909629649094],[-7.4646746467464595,55.14273637826929],[-7.468274682746824,55.144424955539165],[-7.511475114751136,55.1815736554766],[-7.533075330753292,55.1917051190959],[-7.54027540275402,55.198459428175426],[-7.543875438754384,55.20521373725495],[-7.551075510755112,55.21534520087425],[-7.551075510755112,55.225476664493556],[-7.525875258752592,55.23729670538273],[-7.5150751507515,55.25418247808156],[-7.5150751507515,55.27444540532014],[-7.525875258752592,55.28964260074909],[-7.5078750787507715,55.28964260074909],[-7.493474934749344,55.28457686893944],[-7.479074790747887,55.28457686893944],[-7.4646746467464595,55.28964260074909],[-7.4646746467464595,55.29301975528884],[-7.4646746467464595,55.296396909828616],[-7.468274682746824,55.29808548709849],[-7.468274682746824,55.30315121890814],[-7.450274502745032,55.29470833255874],[-7.428674286742847,55.28626544620931],[-7.407074070740691,55.28626544620931],[-7.367473674736743,55.30990552798767],[-7.345873458734587,55.31497125979732],[-7.327873278732795,55.30821695071779],[-7.313473134731339,55.28964260074909],[-7.331473314733131,55.28964260074909],[-7.338673386733859,55.28964260074909],[-7.320673206732067,55.282888291669565],[-7.299072990729911,55.27613398259001],[-7.277472774727755,55.27613398259001],[-7.255872558725571,55.28457686893944],[-7.320673206732067,55.31328268252744],[-7.349473494734951,55.33523418703592],[-7.353073530735287,55.358874268814276],[-7.378273782737807,55.367317155163704],[-7.392673926739263,55.37407146424323],[-7.3998739987399915,55.380825773322755],[-7.385473854738535,55.385891505132406],[-7.367473674736743,55.3842029278625],[-7.331473314733131,55.37238288697333],[-7.263072630726299,55.358874268814276],[-7.248672486724871,55.3571856915444],[-7.209072090720895,55.345365650655225],[-7.194671946719467,55.33861134157567],[-7.144271442714427,55.29301975528884],[-7.12987129871297,55.28626544620931],[-7.07947079470793,55.27275682805026],[-7.043470434704346,55.269379673510485],[-6.99666996669967,55.25755963262131],[-6.975069750697514,55.24911674627191],[-6.95346953469533,55.25418247808156],[-6.939069390693902,55.23898528265261],[-6.942669426694266,55.218722355414],[-6.97146971469715,55.20859089179473],[-7.000270002700034,55.20521373725495],[-7.032670326703254,55.19677085090555],[-7.065070650706502,55.184950810016346],[-7.101071010710115,55.16468788277777],[-7.1334713347133345,55.15624499642834],[-7.158671586715855,55.15117926461869],[-7.173071730717311,55.14273637826929],[-7.216272162721623,55.108964832871635],[-7.230672306723051,55.09207906017281],[-7.245072450724507,55.073504710204105],[-7.248672486724871,55.07012755566433],[-7.255872558725571,55.04986462842575],[-7.241472414724143,55.04986462842575],[-7.194671946719467,55.05830751477515],[-7.176671766717675,55.05661893750528],[-7.1334713347133345,55.0431103193462],[-7.101071010710115,55.041421742076324],[-7.065070650706502,55.0431103193462],[-7.05427054270541,55.04817605115585],[-7.032670326703254,55.06506182385468],[-7.018270182701826,55.07181613293423],[-7.018270182701826,55.08363617382341],[-7.011070110701098,55.10221052379211],[-6.99666996669967,55.11909629649094],[-6.985869858698578,55.12585060557046],[-6.975069750697514,55.135982069189765],[-6.967869678696786,55.17988507820672],[-6.964269642696422,55.19508227363565],[-6.94626946269463,55.19508227363565],[-6.90306903069029,55.17819650093682],[-6.885068850688498,55.17481934639707],[-6.755467554675533,55.17819650093682],[-6.640266402664025,55.20859089179473],[-6.571865718657193,55.211968046334476],[-6.553865538655373,55.218722355414],[-6.539465394653945,55.23054239630318],[-6.521465214652153,55.24067385992248],[-6.499864998649969,55.247428169002006],[-6.4746647466474485,55.24911674627191],[-6.438664386643865,55.23560812811283],[-6.417064170641709,55.23223097357308],[-6.377463774637732,55.24573959173213],[-6.352263522635212,55.242362437192384],[-6.255062550625496,55.2102794690646],[-6.240662406624068,55.20859089179473],[-6.219062190621912,55.2102794690646],[-6.179461794617936,55.220410932683905],[-6.161461614616144,55.22209950995378],[-6.1218612186121675,55.21703377814413],[-6.1002610026100115,55.211968046334476],[-6.093060930609312,55.20521373725495],[-6.085860858608584,55.201836582715174],[-6.046260462604607,55.17819650093682],[-6.0354603546035435,55.16806503731752],[-6.0390603906039075,55.11234198741141],[-6.046260462604607,55.095456214712584],[-6.0606606066060635,55.073504710204105],[-6.053460534605335,55.06506182385468],[-6.0354603546035435,55.0633732465848],[-6.0174601746017515,55.06506182385468],[-6.003060030600295,55.0633732465848],[-5.988659886598867,55.059996092045026],[-5.974259742597411,55.0532417829655],[-5.967059670596711,55.0431103193462],[-5.970659706597047,55.0262245466474],[-5.988659886598867,54.989075846709966],[-5.985059850598503,54.98232153763044],[-5.956259562595619,54.97894438309066],[-5.931059310593099,54.970501496741264],[-5.905859058590579,54.95868145585209],[-5.887858878588787,54.94010710588336],[-5.880658806588059,54.93335279680383],[-5.873458734587331,54.918155601374906],[-5.869858698586967,54.90971271502548],[-5.862658626586267,54.9063355604857],[-5.848258482584811,54.8978926741363],[-5.837458374583747,54.89282694232665],[-5.830258302583019,54.88438405597725],[-5.819458194581927,54.87425259235795],[-5.812258122581227,54.86243255146877],[-5.812258122581227,54.84892393330969],[-5.801458014580135,54.82021811972169],[-5.776257762577615,54.81177523337229],[-5.743857438574366,54.80502092429276],[-5.72225722257221,54.78306941978428],[-5.715057150571511,54.78306941978428],[-5.733057330573303,54.80502092429276],[-5.797857978579771,54.84385820150004],[-5.783457834578343,54.86243255146877],[-5.7510575105750945,54.85736681965912],[-5.72225722257221,54.84048104696029],[-5.700657006570054,54.82528385153134],[-5.689856898568991,54.793200883403586],[-5.693456934569326,54.76449506981555],[-5.7078570785707825,54.7425435653071],[-5.7294572945729385,54.72903494714802],[-5.758257582575823,54.72059206079862],[-5.819458194581927,54.71046059717932],[-5.844658446584447,54.70201771082992],[-5.869858698586967,54.68682051540097],[-5.891458914589151,54.671623319972014],[-5.913059130591307,54.646294660923786],[-5.927459274592735,54.63278604276471],[-5.916659166591671,54.627720310955056],[-5.909459094590943,54.619277424605656],[-5.909459094590943,54.61083453825623],[-5.905859058590579,54.605768806446605],[-5.895058950589487,54.6040802291767],[-5.887858878588787,54.60914596098635],[-5.880658806588059,54.61590027006588],[-5.869858698586967,54.62265457914543],[-5.848258482584811,54.64291750638401],[-5.837458374583747,54.649671815463535],[-5.805058050580499,54.65980327908284],[-5.769057690576886,54.67500047451179],[-5.74745747457473,54.68006620632144],[-5.733057330573303,54.676689051781665],[-5.715057150571511,54.66993474270214],[-5.693456934569326,54.668246165432265],[-5.574655746557454,54.68006620632144],[-5.567455674556726,54.676689051781665],[-5.556655566555662,54.663180433622614],[-5.54585545855457,54.65980327908284],[-5.535055350553506,54.65811470181296],[-5.535055350553506,54.65136039273344],[-5.531455314553142,54.64291750638401],[-5.531455314553142,54.63278604276471],[-5.51345513455135,54.59732592009718],[-5.502655026550258,54.583817301938126],[-5.484654846548466,54.5770629928586],[-5.477454774547738,54.57030868377905],[-5.473854738547374,54.529782829301865],[-5.47025470254701,54.516274211142814],[-5.43785437854379,54.48756839755481],[-5.430654306543062,54.48587982028491],[-5.43785437854379,54.47574835666563],[-5.43785437854379,54.47068262485598],[-5.434254342543426,54.46561689304633],[-5.434254342543426,54.46055116123668],[-5.43785437854379,54.45548542942703],[-5.459454594545946,54.436911079458326],[-5.46305463054631,54.42509103856915],[-5.455854558545582,54.40820526587032],[-5.459454594545946,54.391319493171494],[-5.47025470254701,54.38456518409197],[-5.484654846548466,54.377810875012415],[-5.48825488254883,54.369367988663015],[-5.473854738547374,54.35923652504371],[-5.48825488254883,54.35417079323406],[-5.502655026550258,54.338973597805136],[-5.517055170551686,54.337285020535234],[-5.527855278552778,54.34572790688466],[-5.53865538655387,54.35923652504371],[-5.54585545855457,54.37949945228232],[-5.560255602556026,54.382876606822066],[-5.57105571055709,54.391319493171494],[-5.578255782557818,54.40313953406067],[-5.578255782557818,54.41327099767997],[-5.57105571055709,54.42509103856915],[-5.549455494554934,54.44197681126798],[-5.542255422554206,54.4571740066969],[-5.54585545855457,54.489256974824684],[-5.556655566555662,54.51120847933316],[-5.574655746557454,54.529782829301865],[-5.64665646656465,54.5669315292393],[-5.67185671856717,54.5770629928586],[-5.700657006570054,54.5770629928586],[-5.700657006570054,54.57030868377905],[-5.693456934569326,54.56186579742965],[-5.69705697056969,54.551734333810344],[-5.704257042570418,54.543291447460945],[-5.715057150571511,54.53653713838139],[-5.700657006570054,54.53653713838139],[-5.689856898568991,54.53147140657177],[-5.682656826568262,54.52640567476212],[-5.675456754567534,54.52302852022234],[-5.635856358563586,54.521339942952466],[-5.625056250562494,54.516274211142814],[-5.643056430564286,54.51289705660304],[-5.6646566465664705,54.50951990206329],[-5.67185671856717,54.50614274752351],[-5.63945639456395,54.49601128390421],[-5.643056430564286,54.48419124301503],[-5.643056430564286,54.472371202125856],[-5.63945639456395,54.46392831577646],[-5.625056250562494,54.46055116123668],[-5.625056250562494,54.4571740066969],[-5.628656286562858,54.453796852157154],[-5.632256322563222,54.44704254307763],[-5.625056250562494,54.440288233998075],[-5.653856538565378,54.38963091590162],[-5.661056610566106,54.37949945228232],[-5.69705697056969,54.36261367958349],[-5.7078570785707825,54.35248221596419],[-5.668256682566806,54.360925102313615],[-5.62145621456213,54.37612229774254],[-5.578255782557818,54.382876606822066],[-5.549455494554934,54.36599083412324],[-5.542255422554206,54.32715355691596],[-5.553055530555298,54.298447743327955],[-5.578255782557818,54.276496238819476],[-5.61425614256143,54.25623331158087],[-5.617856178561766,54.254544734311],[-5.628656286562858,54.25623331158087],[-5.632256322563222,54.25623331158087],[-5.63945639456395,54.23428180707239],[-5.64665646656465,54.23259322980252],[-5.657456574565742,54.22921607526274],[-5.6646566465664705,54.230904652532644],[-5.668256682566806,54.23934753888204],[-5.679056790567898,54.24610184796157],[-5.736657366573667,54.249479002501346],[-5.779857798577979,54.24610184796157],[-5.823058230582291,54.23765896161217],[-5.841058410584111,54.23428180707239],[-5.862658626586267,54.230904652532644],[-5.866258662586631,54.21908461164347],[-5.866258662586631,54.18362448897591],[-5.866258662586631,54.18024733443616],[-5.869858698586967,54.16167298446743],[-5.873458734587331,54.13972147995898],[-5.884258842588423,54.12114712999025],[-5.895058950589487,54.10426135729142],[-5.913059130591307,54.09075273913237],[-5.952659526595255,54.07893269824319],[-5.985059850598503,54.05866977100459],[-6.028260282602815,54.040095421035886],[-6.0390603906039075,54.03671826649611],[-6.0786607866078555,54.035029689226235],[-6.096660966609647,54.03671826649611],[-6.114661146611468,54.04347257557566],[-6.114661146611468,54.05022688465519],[-6.093060930609312,54.05529261646484],[-6.085860858608584,54.056981193734714],[-6.161461614616144,54.07386696643354],[-6.175861758617572,54.07386696643354],[-6.186661866618664,54.092441316402244],[-6.211862118621184,54.09919562548177],[-6.244262442624432,54.09919562548177],[-6.262262622626224,54.10426135729142],[-6.269462694626952,54.097507048211895],[-6.20826208262082,54.062046925544365],[-6.190261902619028,54.056981193734714],[-6.1830618306183,54.05360403919494],[-6.168661686616872,54.040095421035886],[-6.165061650616508,54.03671826649611],[-6.143461434614352,54.035029689226235],[-6.13266132661326,54.03334111195636],[-6.1254612546125315,54.029963957416584],[-6.10746107461074,54.013078184717756],[-6.111061110611104,54.00125814382858],[-6.143461434614352,53.977618062050226],[-6.161461614616144,53.97424090751048],[-6.186661866618664,53.9793066393201],[-6.20826208262082,53.98774952566953],[-6.222662226622248,53.99619241201893],[-6.237062370623704,53.994503834749054],[-6.305463054630536,54.01138960744788],[-6.35946359463594,54.01645533925753],[-6.35946359463594,54.008012452908105],[-6.348663486634848,54.00294672109848],[-6.352263522635212,53.994503834749054],[-6.3666636666366685,53.98099521659],[-6.373863738637368,53.964109443891175],[-6.377463774637732,53.93540363030317],[-6.377463774637732,53.91682928033444],[-6.373863738637368,53.89994350763561],[-6.352263522635212,53.88136915766691],[-6.316263162631628,53.87123769404761],[-6.244262442624432,53.86448338496808],[-6.244262442624432,53.85772907588856],[-6.255062550625496,53.839154725919855],[-6.255062550625496,53.82226895322103],[-6.244262442624432,53.80707175779207],[-6.222662226622248,53.79694029417277],[-6.244262442624432,53.781743098743846],[-6.247862478624768,53.75641443969559],[-6.244262442624432,53.72939720337746],[-6.240662406624068,53.68549419436053],[-6.237062370623704,53.670296998931576],[-6.229862298622976,53.656788380772525],[-6.222662226622248,53.64665691715322],[-6.211862118621184,53.6399026080737],[-6.197461974619728,53.634836876264046],[-6.186661866618664,53.629771144454395],[-6.168661686616872,53.60613106267604],[-6.143461434614352,53.594311021786865],[-6.111061110611104,53.58586813543744],[-6.093060930609312,53.57742524908804],[-6.085860858608584,53.567293785468735],[-6.0786607866078555,53.55547374457956],[-6.075060750607491,53.540276549150605],[-6.0822608226082195,53.526767930991554],[-6.1002610026100115,53.509882158292726],[-6.1038610386103755,53.5031278492132],[-6.1038610386103755,53.49468496286377]]],[[[-130.96030960309602,55.58514362297856],[-130.9459094590946,55.58345504570869],[-130.94230942309423,55.57332358208939],[-130.95310953109532,55.56488069573996],[-130.97470974709748,55.571635004819484],[-130.97470974709748,55.53448630488208],[-130.9783097830978,55.51591195491338],[-130.98190981909818,55.5024033367543],[-130.9783097830978,55.4939604504049],[-130.9783097830978,55.48551756405547],[-130.98190981909818,55.47707467770607],[-130.98190981909818,55.465254636816894],[-130.9711097110971,55.443303132308415],[-130.96750967509675,55.43486024595899],[-130.96750967509675,55.42304020506981],[-130.96750967509675,55.39602296875171],[-130.9711097110971,55.385891505132406],[-130.9783097830978,55.38758008240228],[-130.9891098910989,55.39940012329146],[-131.00351003510036,55.412908741450536],[-131.01431014310143,55.41797447326016],[-131.02871028710285,55.40953158691076],[-131.03231032310322,55.40108870056133],[-131.02871028710285,55.39095723694206],[-131.02151021510215,55.38251435059263],[-131.0179101791018,55.37238288697333],[-131.0179101791018,55.353808537004625],[-131.02511025110252,55.34198849611545],[-131.03591035910358,55.33016845522627],[-131.0431104311043,55.31159410525757],[-131.0539105391054,55.27275682805026],[-131.06471064710647,55.260936787161086],[-131.08631086310862,55.24911674627191],[-131.1079110791108,55.23898528265261],[-131.1151111511115,55.23560812811283],[-131.12951129511293,55.23560812811283],[-131.13671136711366,55.23223097357308],[-131.14031140311403,55.22209950995378],[-131.1439114391144,55.2102794690646],[-131.14751147511475,55.201836582715174],[-131.19071190711907,55.184950810016346],[-131.23391233912338,55.2001480054453],[-131.27351273512735,55.225476664493556],[-131.3131131311313,55.23560812811283],[-131.25551255512556,55.27106825078039],[-131.23391233912338,55.291331178018964],[-131.2159121591216,55.318348414337095],[-131.21231212312122,55.323414146146746],[-131.2087120871209,55.345365650655225],[-131.20511205112052,55.350431382464876],[-131.20151201512016,55.353808537004625],[-131.1979119791198,55.358874268814276],[-131.19431194311943,55.36900573243358],[-131.19431194311943,55.38758008240228],[-131.1979119791198,55.39940012329146],[-131.2087120871209,55.40615443237098],[-131.23031230312301,55.40615443237098],[-131.22311223112231,55.39264581421193],[-131.24471244712447,55.394334391481806],[-131.269912699127,55.385891505132406],[-131.28431284312842,55.37069430970345],[-131.27351273512735,55.34874280519497],[-131.26271262712626,55.3284798779564],[-131.26271262712626,55.30990552798767],[-131.27711277112772,55.291331178018964],[-131.29871298712987,55.27613398259001],[-131.3239132391324,55.26769109624061],[-131.35271352713528,55.26262536443096],[-131.40311403114032,55.26262536443096],[-131.42831428314284,55.26769109624061],[-131.449914499145,55.277822559859914],[-131.46431464314642,55.29301975528884],[-131.45351453514536,55.31159410525757],[-131.43191431914317,55.32003699160697],[-131.40311403114032,55.323414146146746],[-131.38151381513813,55.33016845522627],[-131.37431374313744,55.34874280519497],[-131.37071370713707,55.36056284608415],[-131.3671136711367,55.37069430970345],[-131.35631356313564,55.37744861878298],[-131.34551345513455,55.380825773322755],[-131.3311133111331,55.380825773322755],[-131.3239132391324,55.3842029278625],[-131.3131131311313,55.39940012329146],[-131.27711277112772,55.429794514149336],[-131.269912699127,55.446680286848164],[-131.28071280712805,55.465254636816894],[-131.28431284312842,55.47200894589642],[-131.2951129511295,55.514223377643475],[-131.29871298712987,55.52604341853265],[-131.3311133111331,55.568257850279736],[-131.33831338313382,55.58007789116891],[-131.3419134191342,55.630735209265396],[-131.34911349113491,55.64593240469435],[-131.36351363513634,55.64255525015457],[-131.37071370713707,55.61891516837622],[-131.36351363513634,55.58683220024844],[-131.32751327513276,55.5024033367543],[-131.32031320313203,55.4753861004362],[-131.3239132391324,55.446680286848164],[-131.3419134191342,55.41797447326016],[-131.34911349113491,55.40953158691076],[-131.37431374313744,55.39264581421193],[-131.38151381513813,55.385891505132406],[-131.3959139591396,55.3656285778938],[-131.41031410314105,55.35211995973475],[-131.42471424714248,55.34367707338532],[-131.4607146071461,55.331857032496146],[-131.45351453514536,55.34367707338532],[-131.42831428314284,55.36394000062393],[-131.4211142111421,55.375760041513104],[-131.42831428314284,55.39264581421193],[-131.4391143911439,55.40615443237098],[-131.45351453514536,55.416285895990285],[-131.4607146071461,55.42810593687946],[-131.4679146791468,55.45850032773737],[-131.45711457114572,55.483828986785596],[-131.4211142111421,55.5311091503423],[-131.4391143911439,55.5311091503423],[-131.46431464314642,55.5226662639929],[-131.48951489514894,55.5125348003736],[-131.50751507515076,55.49902618221455],[-131.51831518315183,55.48045183224582],[-131.51471514715146,55.46018890500724],[-131.50751507515076,55.43992597776864],[-131.49671496714967,55.421351627799936],[-131.4679146791468,55.389268659672155],[-131.46431464314642,55.37238288697333],[-131.47871478714788,55.34874280519497],[-131.50751507515076,55.31159410525757],[-131.52551525515256,55.29977406436839],[-131.55071550715508,55.296396909828616],[-131.57231572315723,55.304839796178044],[-131.61551615516154,55.33354560976605],[-131.66231662316622,55.34367707338532],[-131.68391683916838,55.353808537004625],[-131.72351723517235,55.380825773322755],[-131.72351723517235,55.3842029278625],[-131.73071730717308,55.394334391481806],[-131.73431734317342,55.39940012329146],[-131.78831788317882,55.42810593687946],[-131.809918099181,55.44499170957829],[-131.82071820718207,55.46356605954699],[-131.809918099181,55.47707467770607],[-131.71631716317162,55.51760053218325],[-131.70551705517056,55.527731995802554],[-131.68751687516874,55.54292919123148],[-131.67671676716768,55.54968350031103],[-131.66591665916658,55.55137207758091],[-131.65151651516516,55.54968350031103],[-131.64431644316443,55.55643780939056],[-131.6191161911619,55.595275086597866],[-131.629916299163,55.603717972947265],[-131.68031680316804,55.61047228202679],[-131.69831698316983,55.61553801383644],[-131.70911709117092,55.62904663199552],[-131.70911709117092,55.64593240469435],[-131.70551705517056,55.661129600123274],[-131.69471694716947,55.674638218282354],[-131.6911169111691,55.67970395009198],[-131.68751687516874,55.68308110463175],[-131.68031680316804,55.68645825917153],[-131.66951669516695,55.688146836441405],[-131.63351633516334,55.68645825917153],[-131.62631626316264,55.688146836441405],[-131.62631626316264,55.693212568251056],[-131.62631626316264,55.71178691821976],[-131.62271622716227,55.71854122729928],[-131.61551615516154,55.723606959108935],[-131.60831608316084,55.72191838183906],[-131.59751597515975,55.71685265002941],[-131.5939159391594,55.715164072759535],[-131.53631536315362,55.723606959108935],[-131.51831518315183,55.728672690918586],[-131.51831518315183,55.737115577268014],[-131.53271532715326,55.737115577268014],[-131.57951579515796,55.728672690918586],[-131.629916299163,55.73373842272824],[-131.6479164791648,55.728672690918586],[-131.6911169111691,55.70503260914023],[-131.70551705517056,55.710098340949884],[-131.70911709117092,55.74049273180776],[-131.69471694716947,55.75231277269694],[-131.66231662316622,55.76075565904637],[-131.629916299163,55.76750996812589],[-131.5111151111511,55.77426427720542],[-131.48231482314822,55.782707163554846],[-131.48951489514894,55.79283862717412],[-131.5111151111511,55.799592936253674],[-131.51831518315183,55.808035822603074],[-131.5219152191522,55.81985586349225],[-131.52911529115292,55.8249215953019],[-131.53991539915398,55.8249215953019],[-131.54351543515435,55.8147901316826],[-131.55431554315544,55.799592936253674],[-131.57951579515796,55.79283862717412],[-131.60471604716048,55.78946147263437],[-131.62631626316264,55.782707163554846],[-131.64431644316443,55.79283862717412],[-131.67671676716768,55.799592936253674],[-131.68751687516874,55.81141297714285],[-131.68751687516874,55.83167590438143],[-131.66951669516695,55.840118790730855],[-131.47151471514715,55.83167590438143],[-131.43551435514354,55.84518452254051],[-131.45711457114572,55.85193883162003],[-131.53271532715326,55.85193883162003],[-131.5471154711547,55.85869314069956],[-131.56151561515614,55.875578913398385],[-131.57231572315723,55.89246468609721],[-131.57951579515796,55.90766188152617],[-131.51471514715146,55.90935045879604],[-131.49671496714967,55.91441619060569],[-131.48591485914858,55.91948192241534],[-131.47151471514715,55.93130196330452],[-131.4607146071461,55.93467911784427],[-131.44631446314463,55.93467911784427],[-131.40311403114032,55.92792480876474],[-131.36351363513634,55.93636769511417],[-131.3239132391324,55.95494204508287],[-131.28071280712805,55.965073508702176],[-131.23751237512374,55.95494204508287],[-131.2087120871209,55.94481058146357],[-131.17991179911797,55.92285907695509],[-131.0431104311043,55.791150049904246],[-131.04671046710467,55.76582139085602],[-131.02151021510215,55.74218130907764],[-130.96750967509675,55.701655454600456],[-130.96750967509675,55.69490114552093],[-130.96750967509675,55.6780153728221],[-130.96390963909639,55.67126106374258],[-130.93870938709387,55.65099813650397],[-130.9351093510935,55.64255525015457],[-130.93870938709387,55.62398090018587],[-130.9567095670957,55.60034081840749],[-130.96030960309602,55.58514362297856]]],[[[-3.3246332463324677,56.365266321664365],[-3.3102331023310114,56.356823435314965],[-3.2922329223292195,56.35344628077519],[-3.252632526325243,56.35344628077519],[-3.231032310323087,56.356823435314965],[-3.187831878318775,56.370332053474016],[-3.148231482314827,56.37539778528367],[-2.9502295022950307,56.4311208351898],[-2.9394293942939385,56.43787514426933],[-2.9322293222932103,56.44800660788863],[-2.9106291062910543,56.45644949423803],[-2.8854288542885342,56.4581380715079],[-2.8674286742867423,56.45138376242838],[-2.8494284942849504,56.441252298809076],[-2.813428134281338,56.441252298809076],[-2.802628026280246,56.427743680650025],[-2.802628026280246,56.40916933068132],[-2.809828098280974,56.39059498071259],[-2.8206282062820662,56.37539778528367],[-2.838628386283858,56.365266321664365],[-2.813428134281338,56.365266321664365],[-2.809828098280974,56.36357774439449],[-2.80622806228061,56.34838054896554],[-2.802628026280246,56.34500339442576],[-2.791827918279182,56.343314817155886],[-2.78102781027809,56.34162623988601],[-2.77382773827739,56.33993766261614],[-2.770227702277026,56.33318335353658],[-2.6766267662676455,56.32811762172693],[-2.6550265502654895,56.32136331264741],[-2.6226262262622697,56.30447753994858],[-2.6118261182611775,56.30110038540883],[-2.575825758257565,56.28421461271],[-2.575825758257565,56.27746030363048],[-2.6298262982629694,56.24875449004247],[-2.64782647826479,56.22849156280387],[-2.67302673026731,56.22173725372434],[-2.719827198271986,56.21667152191469],[-2.784627846278454,56.191342862866435],[-2.80622806228061,56.187965708326686],[-2.83142831428313,56.191342862866435],[-2.8926289262892624,56.20822863556526],[-2.9394293942939385,56.209917212835165],[-2.9646296462964585,56.204851481025514],[-2.9754297542975507,56.19809717194599],[-2.9826298262982505,56.18965428559656],[-3.0366303663036547,56.16770278108808],[-3.090630906309059,56.13224265842055],[-3.108631086310851,56.1271769266109],[-3.1266312663126428,56.12211119480125],[-3.137431374313735,56.11197973118195],[-3.151831518315163,56.07820818578432],[-3.162631626316255,56.06469956762524],[-3.177031770317683,56.057945258545715],[-3.2490324903249075,56.05625668127584],[-3.2670326703266994,56.05119094946619],[-3.3030330303302833,56.03768233130711],[-3.3426334263342596,56.027550867687836],[-3.3822338223382076,56.02417371314806],[-3.421834218342184,56.02417371314806],[-3.583835838358368,56.05119094946619],[-3.6702367023670206,56.05119094946619],[-3.7098370983709685,56.057945258545715],[-3.745837458374581,56.071453876704766],[-3.745837458374581,56.07314245397467],[-3.7818378183781647,56.09171680394337],[-3.803438034380349,56.106913999372324],[-3.817838178381777,56.11197973118195],[-3.835838358383569,56.11197973118195],[-3.835838358383569,56.106913999372324],[-3.778237782377829,56.08327391759394],[-3.767437674376737,56.07483103124454],[-3.7602376023760087,56.07314245397467],[-3.727837278372789,56.03768233130711],[-3.7206372063720607,56.030928022227585],[-3.7134371343713326,56.02923944495771],[-3.6918369183691766,56.030928022227585],[-3.6882368823688125,56.030928022227585],[-3.6810368103680844,56.02586229041793],[-3.6738367383673847,56.01910798133841],[-3.6666366663666565,56.01235367225888],[-3.6558365583655643,56.01066509498901],[-3.5982359823598244,56.017419404068534],[-3.5766357663576684,56.017419404068534],[-3.4038340383403636,55.9904021677504],[-3.3570335703356875,55.9904021677504],[-3.3426334263342596,55.99377932229018],[-3.3318333183331674,55.99377932229018],[-3.3210332103321036,55.98533643594075],[-3.3030330303302833,55.97689354959135],[-3.123031230312307,55.97013924051183],[-3.115831158311579,55.96676208597205],[-3.097830978309787,55.9515648905431],[-3.090630906309059,55.94818773600335],[-3.0798307983079667,55.946499158733445],[-3.0150301503014987,55.94987631327322],[-2.9394293942939385,55.97013924051183],[-2.9178291782917825,55.9802707041311],[-2.8998289982899905,55.995467899560055],[-2.88182881828817,56.008976517719105],[-2.85662856628565,56.01066509498901],[-2.8638286382863782,56.022485135878185],[-2.8674286742867423,56.027550867687836],[-2.8710287102871064,56.030928022227585],[-2.853028530285286,56.03937090857701],[-2.8242282422824303,56.05963383581559],[-2.802628026280246,56.06469956762524],[-2.6334263342633335,56.057945258545715],[-2.6154261542615416,56.052879526736064],[-2.5866258662586574,56.030928022227585],[-2.5686256862568655,56.02417371314806],[-2.5794257942579293,56.00728794044923],[-2.5830258302582934,56.00222220863958],[-2.5686256862568655,56.000533631369706],[-2.5434254342543454,56.00222220863958],[-2.529025290252889,55.99715647682993],[-2.525425254252525,56.000533631369706],[-2.5146251462514613,56.00559936317936],[-2.507425074250733,56.01066509498901],[-2.4930249302493053,56.00222220863958],[-2.453424534245329,55.98533643594075],[-2.413824138241381,55.97858212686123],[-2.3526235262352486,55.94818773600335],[-2.3094230942309366,55.93467911784427],[-2.147421474214724,55.91779334514544],[-2.13662136621366,55.91441619060569],[-2.133021330213296,55.905973304256264],[-2.129421294212932,55.897530417906864],[-2.129421294212932,55.889087531557436],[-2.122221222212204,55.88739895428756],[-2.100621006210048,55.88233322247791],[-2.079020790207892,55.86882460431886],[-2.0214202142021236,55.8046586680633],[-2.01062010620106,55.791150049904246],[-1.8774187741877313,55.69490114552093],[-1.8630186301863034,55.67126106374258],[-1.8522185221852112,55.6594410228534],[-1.8306183061830552,55.65099813650397],[-1.8270182701826911,55.64424382742445],[-1.823418234182327,55.63580094107505],[-1.8162181621816273,55.63242378653527],[-1.8054180541805351,55.634112363805144],[-1.801818018180171,55.639178095614795],[-1.794617946179443,55.64424382742445],[-1.7910179101791073,55.64593240469435],[-1.780217802178015,55.64593240469435],[-1.7694176941769229,55.64255525015457],[-1.755017550175495,55.634112363805144],[-1.7478174781747668,55.61891516837622],[-1.7694176941769229,55.61891516837622],[-1.7694176941769229,55.612160859296694],[-1.755017550175495,55.60878370475692],[-1.7226172261722468,55.61384943656657],[-1.6974169741697267,55.612160859296694],[-1.6326163261632587,55.58514362297856],[-1.6326163261632587,55.57838931389904],[-1.6362163621636228,55.571635004819484],[-1.6362163621636228,55.56488069573996],[-1.6290162901628946,55.55643780939056],[-1.6182161821618024,55.54968350031103],[-1.6326163261632587,55.54461776850138],[-1.6326163261632587,55.53786345942183],[-1.6218162181621665,55.53448630488208],[-1.6038160381603745,55.52435484126278],[-1.6038160381603745,55.51760053218325],[-1.6110161101611027,55.50746906856395],[-1.6074160741607386,55.5024033367543],[-1.5966159661596464,55.500714759484424],[-1.5894158941589467,55.49564902767477],[-1.5858158581585826,55.483828986785596],[-1.5822158221582185,55.416285895990285],[-1.5822158221582185,55.40615443237098],[-1.5894158941589467,55.39095723694206],[-1.5894158941589467,55.385891505132406],[-1.5894158941589467,55.375760041513104],[-1.5822158221582185,55.3554971142745],[-1.5570155701556985,55.3284798779564],[-1.5570155701556985,55.31159410525757],[-1.5570155701556985,55.30652837344792],[-1.5606156061560625,55.30146264163827],[-1.5606156061560625,55.29808548709849],[-1.5642156421564266,55.29301975528884],[-1.5714157141571263,55.28626544620931],[-1.5678156781567623,55.27951113712979],[-1.5642156421564266,55.27275682805026],[-1.5606156061560625,55.26600251897074],[-1.5570155701556985,55.255871055351435],[-1.5426154261542422,55.24405101446226],[-1.5210152101520862,55.228853819033304],[-1.5282152821528143,55.21703377814413],[-1.5246152461524503,55.2102794690646],[-1.5138151381513865,55.20521373725495],[-1.5066150661506583,55.19508227363565],[-1.5102151021510224,55.184950810016346],[-1.5174151741517221,55.17650792366695],[-1.5210152101520862,55.16806503731752],[-1.5174151741517221,55.157933573698244],[-1.4994149941499302,55.14104780099942],[-1.495814958149566,55.13429349191989],[-1.492214922149202,55.11234198741141],[-1.4850148501485023,55.09207906017281],[-1.4814148141481382,55.08532475109328],[-1.4778147781477742,55.08363617382341],[-1.4634146341463463,55.08025901928363],[-1.4598145981459822,55.078570442013756],[-1.4598145981459822,55.07519328747398],[-1.4562145621456182,55.06675040112458],[-1.4382143821438262,55.0431103193462],[-1.427414274142734,55.032978855726924],[-1.42381423814237,55.024535969377496],[-1.4202142021420059,55.011027351218445],[-1.4130141301413062,55.00089588759914],[-1.402214022140214,54.99583015578949],[-1.3986139861398499,54.99245300124974],[-1.3698136981369657,54.975567228550915],[-1.362613626136266,54.96543576493161],[-1.362613626136266,54.95868145585209],[-1.362613626136266,54.953615724042436],[-1.362613626136266,54.948549992232785],[-1.362613626136266,54.926598487724306],[-1.359013590135902,54.916467024105],[-1.3518135181351738,54.913089869565255],[-1.3554135541355379,54.90464698321583],[-1.2978129781297696,54.779692265244506],[-1.2762127621276136,54.74760929711675],[-1.2402124021240013,54.7222806380685],[-1.2258122581225734,54.71552632898897],[-1.1718117181171692,54.70201771082992],[-1.1718117181171692,54.69357482448049],[-1.1934119341193252,54.69357482448049],[-1.1934119341193252,54.68850909267084],[-1.1898118981189612,54.68682051540097],[-1.1862118621186255,54.68006620632144],[-1.1826118261182614,54.671623319972014],[-1.1790117901178974,54.66486901089249],[-1.1718117181171692,54.65811470181296],[-1.164611646116441,54.65304897000331],[-1.1718117181171692,54.64460608365388],[-1.1826118261182614,54.63954035184426],[-1.2078120781207815,54.63278604276471],[-1.2042120421204174,54.62603173368518],[-1.2006120061200534,54.62096600187553],[-1.1934119341193252,54.619277424605656],[-1.1826118261182614,54.619277424605656],[-1.1790117901178974,54.62096600187553],[-1.1790117901178974,54.62434315641531],[-1.1754117541175333,54.62603173368518],[-1.1718117181171692,54.62603173368518],[-1.1682116821168052,54.62434315641531],[-1.164611646116441,54.619277424605656],[-1.164611646116441,54.614211692796005],[-1.164611646116441,54.61252311552613],[-1.1538115381153773,54.61252311552613],[-1.1466114661146491,54.619277424605656],[-1.139411394113921,54.646294660923786],[-1.121411214112129,54.63278604276471],[-1.1034110341103371,54.62434315641531],[-1.0854108541085452,54.62096600187553],[-1.0422104221042048,54.61758884733578],[-0.9918099180991646,54.59732592009718],[-0.7866078660786684,54.56017722015977],[-0.5634056340563234,54.47743693393551],[-0.5346053460534677,54.46055116123668],[-0.5238052380523754,54.44704254307763],[-0.5202052020520114,54.4385996567282],[-0.5238052380523754,54.4301567703788],[-0.5202052020520114,54.4200253067595],[-0.5094050940509476,54.41158242041007],[-0.47700477004769937,54.396385224981145],[-0.4626046260462431,54.38963091590162],[-0.4482044820448152,54.37274514320279],[-0.4302043020430233,54.34910506142441],[-0.4194041940419311,54.32377640237618],[-0.4194041940419311,54.30351347513758],[-0.415804158041567,54.29675916605805],[-0.4086040860408673,54.29000485697853],[-0.40140401404013915,54.284939125168876],[-0.39060390603904693,54.283250547899],[-0.394203942039411,54.2731190842797],[-0.3978039780397751,54.26974192973992],[-0.39060390603904693,54.2646761979303],[-0.36900369003689093,54.24779042523147],[-0.3618036180361628,54.24272469342182],[-0.32220322203221485,54.235970384342295],[-0.31140311403112264,54.230904652532644],[-0.30060300603005885,54.22415034345309],[-0.2754027540275388,54.217396034373564],[-0.26820268202681063,54.20726457075426],[-0.2610026100260825,54.181935911706034],[-0.2610026100260825,54.17687017989638],[-0.23220232202322677,54.159984407197555],[-0.10980109801096205,54.13127859360955],[-0.07380073800737819,54.11270424364085],[-0.16380163801636627,54.083998430052844],[-0.19620196201961448,54.062046925544365],[-0.2178021780217705,54.02320964833706],[-0.19620196201961448,53.994503834749054],[-0.16740167401673034,53.92864932122362],[-0.1494014940149384,53.89994350763561],[-0.04500045000449404,53.80200602598242],[0.13500135001351055,53.643279762613446],[0.1494014940149384,53.60950821721579],[0.13860138601387462,53.57742524908804],[0.13140131401314648,53.57404809454826],[0.10980109801099047,53.562228053659084],[0.13140131401314648,53.594311021786865],[0.13500135001351055,53.61119679448569],[0.12060120601205426,53.61795110356522],[0.09900099000989826,53.62301683537487],[0.055800558005586254,53.64159118534357],[0.03420034200343025,53.64665691715322],[0.01620016200163832,53.643279762613446],[-0.02340023400233804,53.62808256718452],[-0.04500045000449404,53.62639398991462],[-0.07020070200701412,53.62639398991462],[-0.09180091800917012,53.63145972172427],[-0.11340113401132612,53.638214030803795],[-0.13140131401314648,53.64665691715322],[-0.22500225002249863,53.719265739758185],[-0.2610026100260825,53.73615151245701],[-0.2970029700296948,53.73952866699676],[-0.3042030420304229,53.73952866699676],[-0.4302043020430233,53.714200007948534],[-0.4482044820448152,53.714200007948534],[-0.5094050940509476,53.714200007948534],[-0.5454054540545314,53.70913427613888],[-0.5526055260552596,53.71082285340876],[-0.5778057780577797,53.72602004883771],[-0.5778057780577797,53.727708626107585],[-0.635406354063548,53.732774357917236],[-0.657006570065704,53.727708626107585],[-0.725407254072536,53.700691389789455],[-0.7182071820718079,53.69900281251958],[-0.7074070740707441,53.69562565797983],[-0.700207002070016,53.692248503440055],[-0.6930069300692878,53.687182771630404],[-0.67860678606786,53.70237996705936],[-0.6498064980649758,53.71082285340876],[-0.6210062100620917,53.71251143067863],[-0.5958059580595716,53.70744569886901],[-0.5562055620556237,53.69055992617018],[-0.5454054540545314,53.68380561709063],[-0.5310053100531036,53.6770513080111],[-0.5130051300512832,53.68211703982075],[-0.48780487804876316,53.69393708070993],[-0.307803078030787,53.714200007948534],[-0.27900279002790285,53.70744569886901],[-0.2610026100260825,53.687182771630404],[-0.18900189001888634,53.61963968083509],[-0.14580145801457434,53.60613106267604],[-0.11340113401132612,53.58417955816756],[-0.09540095400953419,53.57742524908804],[-0.0594005940059219,53.57404809454826],[-0.04500045000449404,53.57067094000851],[0.0018000180001820354,53.53521081734095],[0.09540095400953419,53.48793065378425],[0.11340113401135454,53.482864921974596],[0.13500135001351055,53.48117634470472],[0.15300153001530248,53.47611061289507],[0.16740167401675876,53.46429057200589],[0.1710017100170944,53.45753626292637],[0.17460174601745848,53.447404799307066],[0.17460174601745848,53.43727333568776],[0.18180181801818662,53.433896181147986],[0.18900189001891476,53.43220760387811],[0.2178021780217989,53.41869898571906],[0.21060210602107077,53.411944676639536],[0.2286022860228627,53.40519036755998],[0.24660246602465463,53.39168174940093],[0.25740257402574684,53.3747959767021],[0.2610026100261109,53.36128735854305],[0.3438034380343993,53.22620117695243],[0.35460354603546307,53.189052477015],[0.35820358203582714,53.14514946799807],[0.33660336603367114,53.09280357263168],[0.329403294032943,53.086049263552155],[0.3186031860318792,53.08436068628228],[0.30060300603005885,53.080983531742504],[0.2826028260282669,53.07422922266298],[0.19260192601927884,53.02019475002675],[0.17460174601745848,53.015129018217095],[0.16020160201603062,53.00837470913757],[0.08100081000810633,52.939143041072356],[0.059400594005950325,52.925634422913305],[0.03780037800379432,52.91888011383378],[0.02340023400233804,52.912125804754254],[0.009000090000910177,52.898617186595175],[0.009000090000910177,52.886797145706],[0.04140041400415839,52.885108568436124],[0.09180091800919854,52.89186287751565],[0.1062010620106264,52.890174300245775],[0.13500135001351055,52.87497710481682],[0.14580145801457434,52.87159995027707],[0.1710017100170944,52.86146848665777],[0.22140221402213456,52.814188323101064],[0.24660246602465463,52.79561397313233],[0.264602646026475,52.80405685948176],[0.286202862028631,52.805745436751636],[0.3258032580325789,52.80236828221186],[0.3402034020340352,52.797302550402236],[0.36900369003691935,52.773662468623854],[0.3834038340383472,52.7685967368142],[0.3834038340383472,52.77535104589376],[0.37980379803798314,52.79054824132268],[0.3978039780397751,52.80912259129141],[0.4266042660426592,52.827696941260115],[0.43740437404375143,52.841205559419166],[0.4446044460444796,52.86484564119752],[0.45540455404554336,52.89186287751565],[0.4734047340473353,52.917191536563905],[0.4842048420484275,52.93407730926273],[0.5202052020520398,52.956028813771184],[0.5706057060570799,52.96953743193026],[0.6246062460624557,52.97629174100979],[0.6714067140671602,52.974603163739914],[0.6642066420664321,52.98135747281944],[0.6858068580685881,52.98642320462909],[0.7074070740707441,52.983046050089314],[0.7290072900729001,52.97798031827966],[0.7506075060750561,52.974603163739914],[0.8370083700837085,52.974603163739914],[0.8766087660876565,52.96784885466039],[0.9198091980919969,52.95434023650131],[0.970209702097037,52.947585927421784],[1.013410134101349,52.95940596831096],[1.0026100261002568,52.96447170012061],[0.991809918099193,52.96784885466039],[0.9774097740977368,52.96784885466039],[0.966609666096673,52.96784885466039],[0.966609666096673,52.974603163739914],[1.2762127621276136,52.92901157745308],[1.3950139501395142,52.89186287751565],[1.643416434164351,52.77535104589376],[1.672216722167235,52.75508811865515],[1.6974169741697551,52.7314480368768],[1.715417154171547,52.68416787332009],[1.733417334173339,52.653773482462185],[1.7478174781747953,52.62506766887418],[1.7406174061740671,52.6031161643657],[1.7478174781747953,52.587918968936776],[1.7478174781747953,52.569344618968046],[1.7478174781747953,52.53219591903064],[1.7694176941769513,52.48660433274381],[1.7658176581765872,52.47647286912451],[1.755017550175495,52.46802998277511],[1.729817298172975,52.41568408740872],[1.729817298172975,52.40555262378945],[1.7262172621726393,52.39710973744002],[1.6830168301682988,52.324500914835056],[1.650616506165079,52.289040792167526],[1.6398163981639868,52.282286483088],[1.6290162901628946,52.270466442198824],[1.6290162901628946,52.24513778315057],[1.6326163261632587,52.199546196863736],[1.625416254162559,52.180971846895034],[1.6074160741607386,52.145511724227504],[1.6038160381603745,52.128625951528676],[1.5894158941589467,52.101608715210546],[1.5858158581585826,52.08641151978162],[1.5822158221582185,52.08134578797197],[1.5030150301502943,52.061082860733364],[1.4886148861488664,52.04926281984419],[1.4706147061470745,52.05601712892371],[1.4670146701467104,52.04757424257431],[1.4634146341463463,52.03575420168514],[1.4562145621456182,52.02899989260558],[1.4490144901449185,52.025622738065834],[1.4238142381423984,52.00198265628748],[1.3554135541355379,51.954702492730746],[1.344613446134474,51.94288245184157],[1.3338133381333819,51.93950529730182],[1.2654126541265498,51.99353976993805],[1.2366123661236657,52.00029407901758],[1.1862118621186255,52.025622738065834],[1.1574115741157414,52.02899989260558],[1.1574115741157414,52.02224558352606],[1.1934119341193536,52.00029407901758],[1.2150121501215096,51.99185119266818],[1.2618126181261857,51.98509688358865],[1.2690126901269139,51.981719729048876],[1.2762127621276136,51.976653997239225],[1.2762127621276136,51.9614568018103],[1.272612726127278,51.95639107000065],[1.2510125101250935,51.9597682245404],[1.2402124021240297,51.95807964727052],[1.2186121861218737,51.954702492730746],[1.2042120421204174,51.95301391546087],[1.1934119341193536,51.954702492730746],[1.1646116461164695,51.96652253361992],[1.1430114301143135,51.96652253361992],[1.0962109621096374,51.95639107000065],[1.0674106741067533,51.95301391546087],[1.0962109621096374,51.946259606381346],[1.2618126181261857,51.93950529730182],[1.2834128341283417,51.946259606381346],[1.2798127981279777,51.927685256412644],[1.2006120061200818,51.87702793831616],[1.2114121141211456,51.87196220650651],[1.2294122941229375,51.86689647469686],[1.2654126541265498,51.86351932015708],[1.2762127621276136,51.870273629236635],[1.2834128341283417,51.88040509285591],[1.2870128701287058,51.88209367012581],[1.2870128701287058,51.86014216561733],[1.2762127621276136,51.84494497018838],[1.2186121861218737,51.811173424790724],[1.1682116821168336,51.79091049755215],[1.1358113581135854,51.78246761120272],[1.0638106381063892,51.775713302123194],[1.0458104581045973,51.77740187939307],[1.0386103861038691,51.78246761120272],[1.0206102061020772,51.802730538441324],[0.988209882098829,51.829747774759426],[0.9810098100981008,51.843256392918505],[0.9774097740977368,51.824682042949775],[0.9630096300963089,51.8145505793305],[0.923409234092361,51.802730538441324],[0.8946089460894768,51.78415618847259],[0.8874088740887487,51.78246761120272],[0.8874088740887487,51.77740187939307],[0.8838088380883846,51.76389326123402],[0.8802088020880205,51.75207322034484],[0.8730087300873208,51.74700748853519],[0.8622086220862286,51.745318911265315],[0.8442084420844367,51.73687602491589],[0.8370083700837085,51.73349887037611],[0.8226082260822807,51.73349887037611],[0.8010080100800963,51.740253179455664],[0.7902079020790325,51.74194175672554],[0.7686076860768765,51.740253179455664],[0.7218072180722004,51.72843313856649],[0.700207002070016,51.71999025221706],[0.7146071460714722,51.71492452040741],[0.7326073260732642,51.71323594313753],[0.7506075060750561,51.70817021132788],[0.7614076140761483,51.69297301589893],[0.7902079020790325,51.70985878859776],[0.8514085140851364,51.718301674947185],[0.8838088380883846,51.726744561296584],[0.9126091260912688,51.74194175672554],[0.9306093060930607,51.74363033399541],[0.945009450094517,51.73349887037611],[0.948609486094881,51.72505598402671],[0.945009450094517,51.71492452040741],[0.9414094140941529,51.70817021132788],[0.9378093780937888,51.70648163405801],[0.9414094140941529,51.69803874770858],[0.945009450094517,51.691284438629054],[0.9522095220952167,51.67777582047],[0.9414094140941529,51.67271008866035],[0.9378093780937888,51.664267202310924],[0.9378093780937888,51.64062712053257],[0.9342093420934248,51.63556138872292],[0.9270092700926966,51.63049565691327],[0.9126091260912688,51.62374134783374],[0.9378093780937888,51.62542992510362],[0.948609486094881,51.62205277056387],[0.9522095220952167,51.61698703875422],[0.923409234092361,51.58828122516621],[0.8730087300873208,51.55957541157821],[0.8298082980829804,51.54268963887938],[0.8154081540815525,51.53762390706973],[0.7722077220772405,51.52749244345043],[0.6930069300693162,51.535935329799855],[0.6642066420664321,51.53424675252995],[0.6642066420664321,51.535935329799855],[0.6498064980649758,51.535935329799855],[0.6462064620646402,51.535935329799855],[0.6426064260642761,51.53424675252995],[0.6246062460624557,51.522426711640776],[0.6102061020610279,51.51904955710103],[0.5958059580596,51.51904955710103],[0.5814058140581437,51.517360979831125],[0.5706057060570799,51.508918093481725],[0.5526055260552596,51.517360979831125],[0.5490054900548955,51.517360979831125],[0.5238052380523754,51.517360979831125],[0.45540455404554336,51.50554093894195],[0.4518045180451793,51.49878662986242],[0.4482044820448152,51.48865516624312],[0.4410044100441155,51.476835125353944],[0.4302043020430233,51.46670366173467],[0.41580415804159543,51.46163792992502],[0.3978039780397751,51.45826077538524],[0.3834038340383472,51.45319504357559],[0.4482044820448152,51.459949352655116],[0.45540455404554336,51.46332650719489],[0.4626046260462715,51.47008081627442],[0.4662046620466356,51.476835125353944],[0.46980469804699965,51.48021227989372],[0.5346053460534677,51.4920323207829],[0.6966069660696803,51.476835125353944],[0.7110071100711082,51.47008081627442],[0.7218072180722004,51.45657219811537],[0.7218072180722004,51.446440734496065],[0.7146071460714722,51.441375002686414],[0.6930069300693162,51.43968642541654],[0.657006570065704,51.44475215722619],[0.6426064260642761,51.44475215722619],[0.6102061020610279,51.424489229987586],[0.5742057420574156,51.419423498177935],[0.5562055620556237,51.41266918909841],[0.5634056340563518,51.405914880018884],[0.5706057060570799,51.39916057093936],[0.5778057780577797,51.39409483912971],[0.5850058500585078,51.39071768458993],[0.6714067140671602,51.39071768458993],[0.7146071460714722,51.383963375510405],[0.70380703807038,51.39578341639958],[0.700207002070016,51.40929203455863],[0.70380703807038,51.419423498177935],[0.725407254072536,51.419423498177935],[0.7290072900729001,51.405914880018884],[0.7398073980739923,51.38734053005018],[0.7542075420754202,51.37214333462123],[0.7650076500765124,51.3637004482718],[0.9774097740977368,51.348503252842875],[1.0998109981100015,51.3738319118911],[1.4238142381423984,51.392406261859804],[1.4490144901449185,51.38227479824053],[1.4382143821438262,51.35019183011275],[1.4346143461434622,51.34343752103322],[1.431014310143098,51.33837178922357],[1.4238142381423984,51.33330605741392],[1.4202142021420343,51.329928902874144],[1.384213842138422,51.329928902874144],[1.3770137701376939,51.326551748334396],[1.380613806138058,51.30460024382592],[1.387813878138786,51.28771447112709],[1.405814058140578,51.26069723480896],[1.4130141301413062,51.22185995760165],[1.405814058140578,51.18302268039437],[1.384213842138422,51.15093971226659],[1.3554135541355379,51.13067678502799],[1.2906129061290699,51.117168166868936],[1.2618126181261857,51.103659548709885],[1.2510125101250935,51.10197097143998],[1.2294122941229375,51.103659548709885],[1.2186121861218737,51.10028239417011],[1.2078120781207815,51.09521666236046],[1.2006120061200818,51.08677377601106],[1.1934119341193536,51.08339662147128],[1.1718117181171976,51.076642312391755],[1.1070110701107012,51.076642312391755],[1.0854108541085452,51.07326515785198],[1.0674106741067533,51.06482227150258],[1.027810278102777,51.041182189724225],[0.9774097740977368,50.99390202616749],[0.966609666096673,50.98208198527831],[0.970209702097037,50.956753326230086],[0.9810098100981008,50.91791604902278],[0.945009450094517,50.90947316267338],[0.8694086940869568,50.924670358102304],[0.8010080100800963,50.93986755353126],[0.7614076140761483,50.93142466718183],[0.6642066420664321,50.87063588546607],[0.6246062460624557,50.858815844576895],[0.4086040860408673,50.83011003098889],[0.36900369003691935,50.818289990099686],[0.3654036540365553,50.818289990099686],[0.35460354603546307,50.809847103750286],[0.3438034380343993,50.799715640130984],[0.3438034380343993,50.79464990832133],[0.307803078030787,50.78114129016228],[0.2718027180271747,50.747369744764626],[0.23220232202322677,50.747369744764626],[0.21420214202143484,50.7490583220345],[0.16740167401675876,50.7591897856538],[0.15660156601566655,50.76087836292368],[0.12060120601205426,50.76087836292368],[0.11340113401135454,50.764255517463454],[0.09540095400953419,50.774386981082756],[0.07740077400774226,50.77945271289241],[0.03420034200343025,50.78114129016228],[0.01620016200163832,50.78451844470206],[-0.17460174601745848,50.82842145371899],[-0.2070020700207067,50.831798608258765],[-0.21060210602104235,50.83011003098889],[-0.23220232202322677,50.82166714463946],[-0.26820268202681063,50.831798608258765],[-0.3978039780397751,50.801404217400886],[-0.5706057060570515,50.801404217400886],[-0.7326073260732642,50.76763267200323],[-0.7398073980739639,50.769321249273105],[-0.7506075060750561,50.774386981082756],[-0.7578075780757842,50.777764135622505],[-0.768607686076848,50.774386981082756],[-0.7722077220772121,50.76594409473333],[-0.765007650076484,50.747369744764626],[-0.7722077220772121,50.73723828114532],[-0.790207902079004,50.7304839720658],[-0.8118081180811885,50.73554970387545],[-0.9054090540905406,50.77269840381285],[-0.9126091260912403,50.777764135622505],[-0.9054090540905406,50.78789559924181],[-0.8910089100890843,50.79464990832133],[-0.8622086220862286,50.801404217400886],[-0.8622086220862286,50.80815852648041],[-0.8730087300872924,50.81322425829006],[-0.8946089460894484,50.82504429917924],[-0.9054090540905406,50.83011003098889],[-0.9090090900909047,50.826732876449114],[-0.9234092340923326,50.82166714463946],[-0.9306093060930607,50.82335572190934],[-0.9198091980919685,50.836864340068416],[-0.9306093060930607,50.840241494608165],[-0.9378093780937604,50.84361864914794],[-0.9702097020970086,50.84699580368772],[-0.9954099540995287,50.84699580368772],[-1.0026100261002568,50.84699580368772],[-1.0206102061020488,50.84361864914794],[-1.035010350103505,50.826732876449114],[-1.0422104221042048,50.801404217400886],[-1.056610566105661,50.782829867432156],[-1.0818108181081811,50.78114129016228],[-1.1034110341103371,50.79464990832133],[-1.092610926109245,50.81322425829006],[-1.074610746107453,50.83011003098889],[-1.0674106741067249,50.84361864914794],[-1.0890108901088809,50.85037295822747],[-1.1502115021150132,50.84699580368772],[-1.164611646116441,50.84361864914794],[-1.1286112861128572,50.82504429917924],[-1.1250112501124931,50.818289990099686],[-1.121411214112129,50.799715640130984],[-1.1250112501124931,50.78789559924181],[-1.139411394113921,50.78114129016228],[-1.1502115021150132,50.78114129016228],[-1.1682116821168052,50.78620702197193],[-1.1862118621186255,50.79296133105146],[-1.1934119341193252,50.79802706286111],[-1.2006120061200534,50.80815852648041],[-1.2330123301233016,50.818289990099686],[-1.2546125461254576,50.831798608258765],[-1.2870128701287058,50.83855291733829],[-1.3014130141301337,50.84361864914794],[-1.3194131941319256,50.85712726730699],[-1.337413374133746,50.872324462735946],[-1.44901449014489,50.91285031721313],[-1.467014670146682,50.91791604902278],[-1.467014670146682,50.91116173994325],[-1.4562145621456182,50.90947316267338],[-1.4382143821438262,50.90103027632395],[-1.42381423814237,50.89934169905408],[-1.402214022140214,50.880767349085346],[-1.3230132301322897,50.82504429917924],[-1.3158131581315615,50.81153568102016],[-1.3158131581315615,50.799715640130984],[-1.3410134101340816,50.79464990832133],[-1.402214022140214,50.791272753781584],[-1.4202142021420059,50.78789559924181],[-1.4130141301413062,50.78451844470206],[-1.405814058140578,50.78114129016228],[-1.405814058140578,50.774386981082756],[-1.44901449014489,50.769321249273105],[-1.4778147781477742,50.764255517463454],[-1.4886148861488664,50.75750120838393],[-1.492214922149202,50.75750120838393],[-1.5246152461524503,50.76087836292368],[-1.5570155701556985,50.72372966298627],[-1.5606156061560625,50.71866393117662],[-1.5822158221582185,50.7220410857164],[-1.6038160381603745,50.73217254933567],[-1.6722167221672066,50.7406154356851],[-1.6938169381693626,50.7406154356851],[-1.715417154171547,50.73554970387545],[-1.755017550175495,50.7220410857164],[-1.773017730177287,50.720352508446496],[-1.798217982179807,50.72372966298627],[-1.8342183421834193,50.72710681752602],[-1.8558185581855753,50.72710681752602],[-1.8774187741877313,50.7220410857164],[-1.8954189541895232,50.71697535390675],[-1.8954189541895232,50.715286776636844],[-1.9134191341913436,50.706843890287445],[-1.9278192781927714,50.69671242666814],[-1.9386193861938636,50.69164669485849],[-1.9458194581945634,50.69840100393802],[-1.9458194581945634,50.70853246755732],[-1.9494194941949274,50.71359819936697],[-1.9890198901989038,50.720352508446496],[-2.014220142201424,50.71866393117662],[-2.0214202142021236,50.720352508446496],[-2.0250202502024877,50.72372966298627],[-2.0250202502024877,50.72541824025615],[-2.032220322203216,50.73723828114532],[-2.039420394203944,50.7406154356851],[-2.0466204662046437,50.73554970387545],[-2.082620826208256,50.69840100393802],[-2.068220682206828,50.70008958120792],[-2.057420574205736,50.70346673574767],[-2.0466204662046437,50.706843890287445],[-2.03582035820358,50.71359819936697],[-2.014220142201424,50.68826954031874],[-2.0034200342003317,50.68151523123919],[-1.9854198541985397,50.67813807669944],[-1.9674196741967478,50.67813807669944],[-1.9530195301952915,50.676449499429566],[-1.9458194581945634,50.66800661308014],[-1.9530195301952915,50.65112084038131],[-1.9386193861938636,50.64605510857166],[-1.9314193141931355,50.644366531301785],[-1.9674196741967478,50.617349294983654],[-1.9638196381963837,50.6021520995547],[-1.9854198541985397,50.59708636774508],[-2.064620646206464,50.595397790475175],[-2.082620826208256,50.59708636774508],[-2.158221582215816,50.62072644952343],[-2.341823418234185,50.63423506768248],[-2.3778237782377687,50.64774368584156],[-2.3994239942399247,50.64605510857166],[-2.435424354243537,50.63761222222226],[-2.446224462244629,50.62748075860296],[-2.460624606246057,50.60721783136435],[-2.464224642246421,50.5852663268559],[-2.457024570245693,50.5751348632366],[-2.431824318243173,50.57006913142695],[-2.428224282242809,50.55824909053777],[-2.439024390243901,50.54136331783894],[-2.453424534245329,50.527854699679864],[-2.460624606246057,50.527854699679864],[-2.460624606246057,50.5650033996173],[-2.482224822248213,50.590332058665524],[-2.694626946269466,50.693335272128394],[-2.8638286382863782,50.733861126605575],[-2.8890288902888983,50.733861126605575],[-2.9466294662946666,50.72541824025615],[-2.9610296102960945,50.72372966298627],[-2.9970299702997067,50.70853246755732],[-3.022230222302227,50.706843890287445],[-3.0582305823058107,50.71359819936697],[-3.072630726307267,50.71022104482719],[-3.094230942309423,50.69840100393802],[-3.097830978309787,50.69671242666814],[-3.115831158311579,50.68826954031874],[-3.1266312663126428,50.684892385778966],[-3.137431374313735,50.68658096304884],[-3.155431554315527,50.69164669485849],[-3.166231662316619,50.693335272128394],[-3.184231842318411,50.68995811758862],[-3.2202322023220233,50.68151523123919],[-3.2598325983259713,50.67476092215966],[-3.2706327063270635,50.66462945854036],[-3.2814328143281273,50.65112084038131],[-3.2958329583295836,50.63761222222226],[-3.3678336783367797,50.617349294983654],[-3.3894338943389357,50.617349294983654],[-3.4074340743407276,50.62072644952343],[-3.421834218342184,50.62916933587283],[-3.4326343263432477,50.644366531301785],[-3.447034470344704,50.66800661308014],[-3.450634506345068,50.67307234488979],[-3.4542345423454037,50.67307234488979],[-3.4542345423454037,50.67476092215966],[-3.457834578345768,50.67813807669944],[-3.465034650346496,50.67813807669944],[-3.46863468634686,50.676449499429566],[-3.46863468634686,50.671383767619915],[-3.46863468634686,50.666318035810264],[-3.4542345423454037,50.657875149460835],[-3.44343443434434,50.62410360406318],[-3.4326343263432477,50.61059498590413],[-3.450634506345068,50.59877494501495],[-3.46863468634686,50.5852663268559],[-3.483034830348288,50.56838055415707],[-3.49383493834938,50.54811762691847],[-3.504635046350444,50.52110039060034],[-3.504635046350444,50.50083746336176],[-3.486634866348652,50.45862303161468],[-3.508235082350808,50.45862303161468],[-3.533435334353328,50.45524587707493],[-3.5478354783547843,50.4468029907255],[-3.555035550355484,50.43160579529655],[-3.5478354783547843,50.41640859986762],[-3.533435334353328,50.4096542907881],[-3.486634866348652,50.41134286805797],[-3.486634866348652,50.404588558978446],[-3.497434974349744,50.38770278627962],[-3.497434974349744,50.38432563173984],[-3.508235082350808,50.38263705446997],[-3.515435154351536,50.37925989993019],[-3.5190351903519,50.37419416812054],[-3.5262352623526283,50.350554086342186],[-3.540635406354056,50.34379977726266],[-3.555035550355484,50.34717693180244],[-3.5694356943569403,50.35561981815184],[-3.5766357663576684,50.33366831364336],[-3.5982359823598244,50.32522542729396],[-3.6198361983619805,50.32184827275418],[-3.6306363063630442,50.31171680913488],[-3.6378363783637724,50.29483103643605],[-3.6486364863648646,50.274568109197475],[-3.6522365223652287,50.25092802741912],[-3.6450364503645005,50.225599368370865],[-3.6594365943659284,50.220533636561214],[-3.702637026370269,50.21377932748169],[-3.7170371703716967,50.212090750211814],[-3.7386373863738527,50.21546790475156],[-3.7602376023760087,50.22222221383112],[-3.774637746377465,50.22222221383112],[-3.789037890378893,50.212090750211814],[-3.825038250382505,50.23404225472029],[-3.882638826388245,50.279633841007126],[-3.9510395103951055,50.31847111821443],[-3.9618396183961693,50.32184827275418],[-3.9690396903968974,50.32015969548431],[-3.9942399423994175,50.31171680913488],[-4.00504005040051,50.310028231865004],[-4.012240122401209,50.306651077325256],[-4.023040230402302,50.296519613705954],[-4.033840338403365,50.29483103643605],[-4.044640446404458,50.296519613705954],[-4.05544055440555,50.2998967682457],[-4.069840698406978,50.310028231865004],[-4.066240662406614,50.31340538640478],[-4.06264062640625,50.32184827275418],[-4.084240842408406,50.32691400456383],[-4.109441094410926,50.337045468183135],[-4.120241202412018,50.35224266361209],[-4.10584105841059,50.37081701358079],[-4.141841418414174,50.369128436310916],[-4.152641526415266,50.37081701358079],[-4.167041670416694,50.37588274539044],[-4.170641706417058,50.38263705446997],[-4.174241742417422,50.39107994081937],[-4.185041850418486,50.40121140443867],[-4.192241922419214,50.4180971771375],[-4.185041850418486,50.43160579529655],[-4.170641706417058,50.44511441345563],[-4.159841598415966,50.45862303161468],[-4.177841778417786,50.45355729980503],[-4.18864188641885,50.45355729980503],[-4.199441994419942,50.45862303161468],[-4.203042030420306,50.45186872253515],[-4.203042030420306,50.448491567995376],[-4.21384213842137,50.44173725891585],[-4.221042210422098,50.4383601043761],[-4.235442354423526,50.4383601043761],[-4.235442354423526,50.43160579529655],[-4.221042210422098,50.426540063486925],[-4.217442174421734,50.41640859986762],[-4.221042210422098,50.404588558978446],[-4.228242282422826,50.39783424989892],[-4.242642426424254,50.394457095359144],[-4.28944289442893,50.39783424989892],[-4.271442714427138,50.38263705446997],[-4.217442174421734,50.38770278627962],[-4.192241922419214,50.377571322660316],[-4.228242282422826,50.37081701358079],[-4.228242282422826,50.364062704501265],[-4.221042210422098,50.36575128177114],[-4.199441994419942,50.364062704501265],[-4.20664206642067,50.35561981815184],[-4.18144181441815,50.35561981815184],[-4.18144181441815,50.350554086342186],[-4.192241922419214,50.34717693180244],[-4.199441994419942,50.342111199992786],[-4.199441994419942,50.33535689091326],[-4.192241922419214,50.32860258183371],[-4.192241922419214,50.32184827275418],[-4.21384213842137,50.323536850024055],[-4.224642246422462,50.33535689091326],[-4.235442354423526,50.34886550907231],[-4.253442534425346,50.35561981815184],[-4.336243362433606,50.37081701358079],[-4.383043830438311,50.36743985904101],[-4.455044550445507,50.33873404545301],[-4.494644946449455,50.32860258183371],[-4.660246602466032,50.32184827275418],[-4.660246602466032,50.32015969548431],[-4.663846638466367,50.31847111821443],[-4.667446674466731,50.315093963674656],[-4.6746467464674595,50.315093963674656],[-4.685446854468552,50.342111199992786],[-4.692646926469251,50.34379977726266],[-4.6998469984699796,50.34042262272288],[-4.707047070470708,50.337045468183135],[-4.710647106471072,50.33535689091326],[-4.732247322473228,50.33535689091326],[-4.753847538475384,50.33029115910361],[-4.764647646476448,50.32184827275418],[-4.753847538475384,50.310028231865004],[-4.753847538475384,50.301585345515605],[-4.761047610476112,50.29820819097583],[-4.771847718477176,50.2914538818963],[-4.779047790477904,50.28469957281678],[-4.782647826478268,50.27794526373722],[-4.782647826478268,50.2711909546577],[-4.77544775447754,50.26443664557817],[-4.77544775447754,50.261059491038395],[-4.789847898478968,50.24248514106969],[-4.789847898478968,50.23573083199017],[-4.80064800648006,50.22897652291064],[-4.8510485104851,50.23404225472029],[-4.869048690486892,50.22897652291064],[-4.887048870488712,50.21546790475156],[-4.905049050490504,50.20871359567204],[-4.948249482494816,50.19858213205276],[-4.959049590495908,50.190139245703335],[-5.00225002250022,50.1445476594165],[-5.013050130501313,50.15636770030568],[-5.020250202502012,50.19182782297321],[-5.034650346503469,50.19858213205276],[-5.052650526505261,50.19520497751299],[-5.052650526505261,50.18676209116356],[-5.052650526505261,50.17494205027438],[-5.063450634506353,50.16481058665511],[-5.063450634506353,50.158056277575554],[-5.059850598505989,50.154679123035805],[-5.041850418504168,50.1445476594165],[-5.052650526505261,50.1445476594165],[-5.059850598505989,50.14285908214663],[-5.0706507065070525,50.13779335033698],[-5.081450814508145,50.132727618527326],[-5.081450814508145,50.1259733094478],[-5.081450814508145,50.11753042309837],[-5.085050850508509,50.10908753674897],[-5.0922509225092085,50.105710382209196],[-5.124651246512457,50.095578918589894],[-5.113851138511393,50.097267495859796],[-5.106651066510665,50.095578918589894],[-5.0922509225092085,50.08882460951037],[-5.088650886508873,50.08882460951037],[-5.074250742507417,50.09051318678027],[-5.0706507065070525,50.08882460951037],[-5.0670506705066884,50.08544745497062],[-5.063450634506353,50.07193883681154],[-5.059850598505989,50.06856168227179],[-5.056250562505625,50.060118795922364],[-5.0706507065070525,50.04154444595366],[-5.099450994509937,50.01452720963553],[-5.106651066510665,50.01283863236566],[-5.128251282512821,50.016215786905406],[-5.139051390513913,50.01452720963553],[-5.146251462514613,50.01115005509578],[-5.175051750517497,49.9875099733174],[-5.189451894518953,49.96386989153905],[-5.189451894518953,49.9588041597294],[-5.200252002520017,49.96218131426917],[-5.211052110521109,49.967247046078825],[-5.239852398523965,49.9875099733174],[-5.243452434524329,49.99257570512705],[-5.250652506525057,49.99933001420658],[-5.254252542525421,50.01283863236566],[-5.250652506525057,50.02128151871506],[-5.254252542525421,50.02803582779461],[-5.261452614526149,50.038167291413885],[-5.286652866528669,50.06687310500189],[-5.304653046530461,50.08038172316097],[-5.322653226532253,50.08882460951037],[-5.383853838538386,50.10739895947907],[-5.4234542345423336,50.11246469128872],[-5.459454594545946,50.1259733094478],[-5.473854738547374,50.13103904125745],[-5.49545495454953,50.12935046398755],[-5.52065520655205,50.1242847321779],[-5.542255422554206,50.114153268558624],[-5.542255422554206,50.09895607312967],[-5.535055350553506,50.08207030043084],[-5.54585545855457,50.06856168227179],[-5.56385563855639,50.060118795922364],[-5.578255782557818,50.05505306411271],[-5.617856178561766,50.04661017776331],[-5.668256682566806,50.043233023223536],[-5.704257042570418,50.051675909572964],[-5.715057150571511,50.08207030043084],[-5.704257042570418,50.08375887770072],[-5.69705697056969,50.08544745497062],[-5.693456934569326,50.08882460951037],[-5.693456934569326,50.095578918589894],[-5.69705697056969,50.100644650399545],[-5.700657006570054,50.10402180493932],[-5.700657006570054,50.10233322766945],[-5.7078570785707825,50.122596154908024],[-5.7078570785707825,50.132727618527326],[-5.704257042570418,50.13779335033698],[-5.704257042570418,50.141170504876726],[-5.6862568625686265,50.16143343211533],[-5.675456754567534,50.16481058665511],[-5.64665646656465,50.17156489573463],[-5.581855818558182,50.19520497751299],[-5.549455494554934,50.203647863862386],[-5.509855098550986,50.21884505929134],[-5.48825488254883,50.220533636561214],[-5.459454594545946,50.20027070932264],[-5.43785437854379,50.19351640024311],[-5.416254162541605,50.20195928659251],[-5.4018540185401775,50.217156482021466],[-5.394653946539449,50.22728794564077],[-5.394653946539449,50.23573083199017],[-5.38745387453875,50.24079656379982],[-5.351453514535137,50.24079656379982],[-5.315453154531525,50.25430518195887],[-5.200252002520017,50.33029115910361],[-5.164251642516433,50.34717693180244],[-5.149851498514977,50.350554086342186],[-5.146251462514613,50.35561981815184],[-5.146251462514613,50.36743985904101],[-5.146251462514613,50.37925989993019],[-5.153451534515341,50.399522827168795],[-5.142651426514249,50.404588558978446],[-5.128251282512821,50.404588558978446],[-5.121051210512093,50.404588558978446],[-5.0490504905048965,50.4282286407568],[-5.0490504905048965,50.434982949836325],[-5.038250382503833,50.448491567995376],[-5.031050310503105,50.48732884520268],[-5.0274502745027405,50.50759177244129],[-5.023850238502376,50.524477545140115],[-5.016650166501648,50.537986163299166],[-4.995049950499492,50.54811762691847],[-4.973449734497336,50.54811762691847],[-4.966249662496608,50.551494781458246],[-4.955449554495544,50.56162624507752],[-4.948249482494816,50.56162624507752],[-4.941049410494088,50.55656051326787],[-4.937449374493752,50.54474047237869],[-4.933849338493388,50.53123185421964],[-4.933849338493388,50.519411813330464],[-4.92664926649266,50.52278896787024],[-4.923049230492296,50.524477545140115],[-4.919449194491932,50.527854699679864],[-4.90144901449014,50.52110039060034],[-4.861848618486192,50.519411813330464],[-4.843848438484372,50.51434608152081],[-4.854648546485464,50.527854699679864],[-4.872648726487256,50.53460900875942],[-4.905049050490504,50.54136331783894],[-4.923049230492296,50.554871935997994],[-4.919449194491932,50.56331482234742],[-4.915849158491568,50.57175770869682],[-4.919449194491932,50.583577749586],[-4.919449194491932,50.58864348139565],[-4.894248942489412,50.5852663268559],[-4.822248222482216,50.58864348139565],[-4.793447934479332,50.595397790475175],[-4.77544775447754,50.61059498590413],[-4.764647646476448,50.62748075860296],[-4.75024750247502,50.644366531301785],[-4.753847538475384,50.65956372673074],[-4.75024750247502,50.66969519035001],[-4.743047430474292,50.67476092215966],[-4.728647286472864,50.67307234488979],[-4.6566465664656675,50.711909622097096],[-4.645846458464575,50.72372966298627],[-4.638646386463847,50.7406154356851],[-4.620646206462055,50.75412405384415],[-4.577445774457743,50.774386981082756],[-4.548645486454859,50.809847103750286],[-4.555845558455587,50.897653121784174],[-4.545045450454495,50.93986755353126],[-4.537845378453767,50.94831043988066],[-4.523445234452339,50.97195052165904],[-4.527045270452703,50.98039340800844],[-4.530645306453067,50.99390202616749],[-4.530645306453067,51.00909922159644],[-4.527045270452703,51.014164953406095],[-4.437044370443687,51.014164953406095],[-4.426244262442623,51.01247637613622],[-4.404644046440467,51.00234491251692],[-4.397443974439739,51.000656335247044],[-4.336243362433606,50.99727918070727],[-4.318243182431814,51.000656335247044],[-4.3038430384303865,51.00741064432657],[-4.235442354423526,51.054690807883276],[-4.228242282422826,51.0614451169628],[-4.224642246422462,51.06651084877245],[-4.217442174421734,51.07326515785198],[-4.20664206642067,51.076642312391755],[-4.21384213842137,51.08677377601106],[-4.224642246422462,51.11379101232916],[-4.228242282422826,51.12054532140871],[-4.23184231842319,51.12729963048824],[-4.249842498424982,51.14249682591719],[-4.25704257042571,51.15093971226659],[-4.221042210422098,51.14925113499672],[-4.21384213842137,51.15093971226659],[-4.20664206642067,51.16275975315577],[-4.210242102421006,51.17289121677507],[-4.217442174421734,51.18133410312447],[-4.228242282422826,51.18639983493412],[-4.228242282422826,51.19315414401365],[-4.152641526415266,51.21172849398238],[-3.9690396903968974,51.22185995760165],[-3.933039330393285,51.231991421220954],[-3.911439114391129,51.23367999849086],[-3.839438394383933,51.23367999849086],[-3.817838178381777,51.23536857576073],[-3.7854378543785288,51.24718861664991],[-3.767437674376737,51.24718861664991],[-3.6414364143641365,51.2269256894113],[-3.558635586355848,51.228614266681205],[-3.4326343263432477,51.210039916712475],[-3.4038340383403636,51.19146556674377],[-3.3858338583385716,51.18639983493412],[-3.2706327063270635,51.1897769894739],[-3.1986319863198673,51.20328560763295],[-3.162631626316255,51.206662762172726],[-3.097830978309787,51.204974184902824],[-3.0582305823058107,51.2083513394426],[-3.0294302943029265,51.22017138033178],[-3.022230222302227,51.21341707125225],[-3.0366303663036547,51.1999084530932],[-3.022230222302227,51.19315414401365],[-3.0042300423004065,51.21341707125225],[-3.000630006300071,51.22017138033178],[-3.000630006300071,51.23367999849086],[-3.000630006300071,51.24043430757038],[-3.0042300423004065,51.24550003938003],[-3.0078300783007705,51.25394292572943],[-3.0078300783007705,51.29278020293674],[-3.0114301143011346,51.31135455290544],[-3.022230222302227,51.32317459379462],[-3.0042300423004065,51.31979743925487],[-2.9934299342993427,51.321486016524744],[-2.9898298982989786,51.33161748014405],[-2.9862298622986145,51.34681467557297],[-2.9790297902978864,51.3552575619224],[-2.9646296462964585,51.3653890255417],[-2.9610296102960945,51.3738319118911],[-2.9754297542975507,51.383963375510405],[-2.9538295382953663,51.39916057093936],[-2.9214292142921465,51.39409483912971],[-2.8854288542885342,51.41773492090806],[-2.817028170281702,51.473457970814195],[-2.7990279902799102,51.481900857163595],[-2.78102781027809,51.48865516624312],[-2.759427594275934,51.4920323207829],[-2.737827378273778,51.49372089805277],[-2.716227162271622,51.49878662986242],[-2.694626946269466,51.5122952480215],[-2.6082260822608134,51.606855575134915],[-2.6010260102600853,51.611921306944566],[-2.5902259022590215,51.61360988421444],[-2.5794257942579293,51.61867561602409],[-2.575825758257565,51.62711850237352],[-2.575825758257565,51.63556138872292],[-2.5686256862568655,51.64569285234222],[-2.5614256142561374,51.65413573869162],[-2.5578255782557733,51.65920147050127],[-2.500225002250005,51.696350170438706],[-2.464224642246421,51.72505598402671],[-2.446224462244629,51.731810293106236],[-2.406624066240653,51.74194175672554],[-2.388623886238861,51.75038464307494],[-2.3814238142381328,51.762204683964114],[-2.385023850238497,51.77402472485332],[-2.3994239942399247,51.78246761120272],[-2.4030240302402888,51.76389326123402],[-2.421024210242109,51.753761797614715],[-2.442624426244265,51.74869606580506],[-2.464224642246421,51.74700748853519],[-2.482224822248213,51.74363033399541],[-2.4966249662496693,51.731810293106236],[-2.507425074250733,51.718301674947185],[-2.5218252182521894,51.70648163405801],[-2.5830258302582934,51.68115297500975],[-2.5902259022590215,51.6760872432001],[-2.6010260102600853,51.66595577958083],[-2.6658266582665817,51.61698703875422],[-2.694626946269466,51.59672411151561],[-2.712627126271258,51.58659264789634],[-2.759427594275934,51.579838338816785],[-2.7990279902799102,51.56295256611796],[-2.817028170281702,51.55619825703843],[-2.860228602286014,51.54606679341913],[-2.9430294302943025,51.54268963887938],[-2.9574295742957304,51.54606679341913],[-2.9646296462964585,51.55282110249868],[-2.9682296822968226,51.55957541157821],[-2.9754297542975507,51.56295256611796],[-2.9826298262982505,51.557886834308334],[-3.0114301143011346,51.53762390706973],[-3.0150301503014987,51.530869597990204],[-3.072630726307267,51.508918093481725],[-3.0762307623076026,51.50722951621185],[-3.090630906309059,51.50554093894195],[-3.1050310503104868,51.49709805259255],[-3.130231302313007,51.48021227989372],[-3.133831338313371,51.476835125353944],[-3.141031410314099,51.46501508446477],[-3.144631446314463,51.459949352655116],[-3.151831518315163,51.45657219811537],[-3.166231662316619,51.45657219811537],[-3.1734317343173473,51.45319504357559],[-3.159031590315891,51.43124353906711],[-3.166231662316619,51.410980611828535],[-3.184231842318411,51.397471993669456],[-3.202232022320203,51.40084914820923],[-3.2202322023220233,51.40253772547911],[-3.2886328863288554,51.383963375510405],[-3.540635406354056,51.39916057093936],[-3.558635586355848,51.405914880018884],[-3.5766357663576684,51.42111207544784],[-3.605436054360524,51.446440734496065],[-3.6630366303662925,51.476835125353944],[-3.6774367743677487,51.476835125353944],[-3.6954369543695407,51.47176939354429],[-3.7170371703716967,51.478523702623846],[-3.7386373863738527,51.49034374351302],[-3.749437494374945,51.5004752071323],[-3.749437494374945,51.50554093894195],[-3.749437494374945,51.50722951621185],[-3.745837458374581,51.50722951621185],[-3.7422374223742167,51.508918093481725],[-3.749437494374945,51.52749244345043],[-3.753037530375309,51.53255817526008],[-3.7602376023760087,51.54606679341913],[-3.771037710377101,51.56295256611796],[-3.7818378183781647,51.576461184277036],[-3.789037890378893,51.58152691608669],[-3.8070380703806848,51.58996980243609],[-3.817838178381777,51.59672411151561],[-3.832238322383205,51.61529846148434],[-3.843038430384297,51.62205277056387],[-3.8538385383853893,51.62374134783374],[-3.886238862388609,51.62205277056387],[-3.9618396183961693,51.61529846148434],[-3.9762397623976256,51.611921306944566],[-3.9906399063990534,51.606855575134915],[-3.9978399783997816,51.60010126605539],[-4.001440014400146,51.59165837970599],[-3.9906399063990534,51.58152691608669],[-3.9834398343983253,51.571395452467385],[-3.9762397623976256,51.56295256611796],[-4.0158401584015735,51.56295256611796],[-4.0158401584015735,51.55957541157821],[-4.019440194401938,51.55619825703843],[-4.026640266402666,51.55450967976856],[-4.03024030240303,51.55957541157821],[-4.03024030240303,51.56295256611796],[-4.0374403744037295,51.566329720657734],[-4.048240482404822,51.56801829792761],[-4.051840518405186,51.56970687519751],[-4.05544055440555,51.566329720657734],[-4.066240662406614,51.557886834308334],[-4.069840698406978,51.55619825703843],[-4.077040770407706,51.55619825703843],[-4.08784087840877,51.56126398884808],[-4.11304113041129,51.566329720657734],[-4.120241202412018,51.566329720657734],[-4.13104131041311,51.56295256611796],[-4.141841418414174,51.55619825703843],[-4.15624156241563,51.54606679341913],[-4.167041670416694,51.54268963887938],[-4.177841778417786,51.544378216149255],[-4.18864188641885,51.549443947958906],[-4.195841958419578,51.549443947958906],[-4.199441994419942,51.539312484339604],[-4.21384213842137,51.539312484339604],[-4.271442714427138,51.55450967976856],[-4.28944289442893,51.55619825703843],[-4.293042930429294,51.55957541157821],[-4.296642966429658,51.56126398884808],[-4.296642966429658,51.56970687519751],[-4.278642786427866,51.57814976154691],[-4.2822428224282305,51.58828122516621],[-4.28944289442893,51.601789843325264],[-4.28944289442893,51.61698703875422],[-4.25704257042571,51.62374134783374],[-4.253442534425346,51.62711850237352],[-4.242642426424254,51.6389385432627],[-4.235442354423526,51.64569285234222],[-4.228242282422826,51.63724996599282],[-4.235442354423526,51.63724996599282],[-4.235442354423526,51.63049565691327],[-4.228242282422826,51.628807079643394],[-4.221042210422098,51.62374134783374],[-4.18864188641885,51.63049565691327],[-4.13824138241381,51.63218423418317],[-4.091440914409134,51.64062712053257],[-4.069840698406978,51.66257862504105],[-4.069840698406978,51.669332934120575],[-4.069840698406978,51.67439866593023],[-4.069840698406978,51.6760872432001],[-4.077040770407706,51.67777582047],[-4.08784087840877,51.669332934120575],[-4.095040950409498,51.664267202310924],[-4.10584105841059,51.664267202310924],[-4.145441454414538,51.6676443568507],[-4.199441994419942,51.6862187068194],[-4.21384213842137,51.67946439773988],[-4.293042930429294,51.67271008866035],[-4.31464314643145,51.67777582047],[-4.3434434344343344,51.691284438629054],[-4.3650436504364905,51.70817021132788],[-4.379443794437947,51.726744561296584],[-4.336243362433606,51.723367406756836],[-4.318243182431814,51.72505598402671],[-4.311043110431086,51.73349887037611],[-4.329043290432907,51.73349887037611],[-4.3470434704346985,51.73518744764601],[-4.361443614436126,51.74363033399541],[-4.372243722437219,51.75545037488459],[-4.3686436864368545,51.75713895215449],[-4.361443614436126,51.76389326123402],[-4.357843578435791,51.77233614758342],[-4.357843578435791,51.78246761120272],[-4.3650436504364905,51.789221920282245],[-4.372243722437219,51.785844765742496],[-4.379443794437947,51.775713302123194],[-4.3866438664386465,51.77233614758342],[-4.393843938439375,51.76389326123402],[-4.397443974439739,51.762204683964114],[-4.408244082440831,51.76389326123402],[-4.419044190441895,51.767270415773766],[-4.426244262442623,51.775713302123194],[-4.444244442444415,51.77402472485332],[-4.447844478444779,51.76558183850389],[-4.440644406444051,51.75713895215449],[-4.426244262442623,51.74700748853519],[-4.462244622446207,51.73518744764601],[-4.498244982449819,51.73518744764601],[-4.573845738457379,51.74194175672554],[-4.602646026460263,51.73856460218576],[-4.638646386463847,51.73349887037611],[-4.645846458464575,51.731810293106236],[-4.6782467824678236,51.71661309767728],[-4.681846818468188,51.69297301589893],[-4.689046890468887,51.691284438629054],[-4.692646926469251,51.68959586135918],[-4.692646926469251,51.6862187068194],[-4.692646926469251,51.67777582047],[-4.710647106471072,51.65075858415187],[-4.721447214472136,51.65244716142175],[-4.735847358473592,51.65920147050127],[-4.743047430474292,51.655824315961524],[-4.757447574475748,51.64569285234222],[-4.847448474484736,51.64569285234222],[-4.861848618486192,51.64400427507235],[-4.879848798487984,51.63724996599282],[-4.887048870488712,51.63049565691327],[-4.894248942489412,51.620364193293995],[-4.905049050490504,51.61360988421444],[-4.923049230492296,51.60854415240479],[-4.930249302493024,51.598412688785515],[-4.941049410494088,51.59672411151561],[-4.944649446494452,51.598412688785515],[-4.955449554495544,51.60347842059517],[-5.020250202502012,51.61529846148434],[-5.0454504545045324,51.62711850237352],[-5.038250382503833,51.63724996599282],[-5.052650526505261,51.6575128932314],[-5.099450994509937,51.664267202310924],[-5.121051210512093,51.67777582047],[-5.113851138511393,51.68453012954953],[-5.038250382503833,51.67777582047],[-5.038250382503833,51.68115297500975],[-5.041850418504168,51.68959586135918],[-5.041850418504168,51.69297301589893],[-5.0274502745027405,51.69297301589893],[-5.00225002250022,51.68790728408928],[-4.987849878498793,51.6862187068194],[-4.973449734497336,51.68790728408928],[-4.941049410494088,51.69972732497848],[-4.894248942489412,51.70648163405801],[-4.869048690486892,51.71661309767728],[-4.858248582485828,51.718301674947185],[-4.843848438484372,51.71323594313753],[-4.843848438484372,51.71999025221706],[-4.872648726487256,51.73856460218576],[-4.879848798487984,51.762204683964114],[-4.861848618486192,51.78246761120272],[-4.82584825848258,51.78753334301237],[-4.82584825848258,51.79597622936177],[-4.836648366483672,51.79091049755215],[-4.865448654486528,51.78246761120272],[-4.923049230492296,51.780779033932845],[-4.933849338493388,51.775713302123194],[-4.915849158491568,51.775713302123194],[-4.905049050490504,51.77064757031354],[-4.90144901449014,51.762204683964114],[-4.905049050490504,51.74700748853519],[-4.890648906489048,51.73856460218576],[-4.894248942489412,51.72843313856649],[-4.912249122491232,51.718301674947185],[-4.987849878498793,51.70648163405801],[-5.009450094500949,51.70648163405801],[-5.149851498514977,51.718301674947185],[-5.167851678516769,51.71323594313753],[-5.157051570515705,51.69803874770858],[-5.167851678516769,51.68959586135918],[-5.182251822518225,51.68959586135918],[-5.182251822518225,51.69972732497848],[-5.182251822518225,51.70648163405801],[-5.229052290522901,51.73012171583636],[-5.250652506525057,51.73349887037611],[-5.229052290522901,51.73349887037611],[-5.214652146521445,51.73518744764601],[-5.203852038520381,51.740253179455664],[-5.189451894518953,51.75038464307494],[-5.175051750517497,51.758827529424366],[-5.142651426514249,51.76389326123402],[-5.124651246512457,51.76895899304367],[-5.110251102511029,51.77909045666294],[-5.106651066510665,51.78753334301237],[-5.113851138511393,51.8128620020606],[-5.113851138511393,51.82805919748955],[-5.117451174511729,51.843256392918505],[-5.124651246512457,51.856765011077556],[-5.139051390513913,51.86351932015708],[-5.146251462514613,51.856765011077556],[-5.164251642516433,51.86689647469686],[-5.203852038520381,51.870273629236635],[-5.221852218522173,51.87702793831616],[-5.236252362523629,51.870273629236635],[-5.290252902529005,51.86351932015708],[-5.3118531185311895,51.86351932015708],[-5.304653046530461,51.86689647469686],[-5.297452974529733,51.870273629236635],[-5.297452974529733,51.87702793831616],[-5.301053010530097,51.88209367012581],[-5.301053010530097,51.88547082466556],[-5.301053010530097,51.88884797920534],[-5.290252902529005,51.892225133745086],[-5.290252902529005,51.89897944282464],[-5.297452974529733,51.91079948371382],[-5.290252902529005,51.91755379279334],[-5.254252542525421,51.919242370063216],[-5.232652326523265,51.92261952460299],[-5.203852038520381,51.94288245184157],[-5.189451894518953,51.946259606381346],[-5.160651606516069,51.949636760921095],[-5.121051210512093,51.9597682245404],[-5.088650886508873,51.976653997239225],[-5.085050850508509,52.00198265628748],[-5.0706507065070525,52.00198265628748],[-5.0706507065070525,52.00873696536701],[-5.081450814508145,52.01380269717666],[-5.081450814508145,52.02055700625618],[-5.0706507065070525,52.025622738065834],[-5.052650526505261,52.02899989260558],[-5.0274502745027405,52.02731131533571],[-5.016650166501648,52.025622738065834],[-4.9626496264962725,52.00704838809713],[-4.941049410494088,52.00704838809713],[-4.912249122491232,52.01549127444653],[-4.919449194491932,52.02899989260558],[-4.90144901449014,52.025622738065834],[-4.861848618486192,52.017179851716406],[-4.840248402484008,52.01549127444653],[-4.833048330483308,52.01886842898631],[-4.833048330483308,52.02899989260558],[-4.836648366483672,52.04081993349476],[-4.836648366483672,52.04926281984419],[-4.829448294482944,52.052639974383965],[-4.797047970479696,52.05601712892371],[-4.779047790477904,52.06446001527314],[-4.764647646476448,52.07628005616232],[-4.7394473944739275,52.101608715210546],[-4.721447214472136,52.11342875609972],[-4.707047070470708,52.11342875609972],[-4.6746467464674595,52.0982315606708],[-4.6746467464674595,52.1269373742588],[-4.638646386463847,52.13875741514798],[-4.512645126451247,52.1353802606082],[-4.501845018450183,52.13875741514798],[-4.494644946449455,52.14382314695763],[-4.491044910449091,52.150577456037155],[-4.483844838448391,52.155643187846806],[-4.455044550445507,52.16239749692633],[-4.433444334443351,52.17084038327573],[-4.415444154441531,52.180971846895034],[-4.3866438664386465,52.20292335140351],[-4.372243722437219,52.20967766048304],[-4.354243542435427,52.21136623775291],[-4.332643326433271,52.213054815022815],[-4.31464314643145,52.216431969562564],[-4.195841958419578,52.278909328548224],[-4.13824138241381,52.32956664664471],[-4.109441094410926,52.365026769312266],[-4.095040950409498,52.38866685109062],[-4.08784087840877,52.430881282837674],[-4.08064080640807,52.45283278734615],[-4.066240662406614,52.47309571458476],[-4.05544055440555,52.48829291001368],[-4.06264062640625,52.49673579636311],[-4.06264062640625,52.50855583725229],[-4.06264062640625,52.520375878141465],[-4.05544055440555,52.528818764490865],[-4.048240482404822,52.53050734176077],[-4.026640266402666,52.52375303268121],[-4.0158401584015735,52.52206445541134],[-3.9978399783997816,52.525441609951116],[-3.9474394743947414,52.54908169172947],[-3.9474394743947414,52.55752457807887],[-3.9762397623976256,52.555836000808995],[-4.026640266402666,52.54570453718969],[-4.051840518405186,52.542327382649944],[-4.069840698406978,52.550770268999344],[-4.11304113041129,52.587918968936776],[-4.123841238412382,52.6031161643657],[-4.123841238412382,52.62844482341396],[-4.10584105841059,52.653773482462185],[-4.084240842408406,52.672347832430916],[-4.066240662406614,52.680790718780315],[-4.06264062640625,52.68247929605019],[-4.0590405904058855,52.69598791420927],[-4.05544055440555,52.70105364601892],[-4.051840518405186,52.702742223288794],[-4.041040410404094,52.70443080055867],[-4.001440014400146,52.72469372779727],[-3.9870398703986893,52.734825191416576],[-4.0158401584015735,52.73313661414667],[-4.03024030240303,52.72469372779727],[-4.048240482404822,52.721316573257496],[-4.123841238412382,52.778728200433505],[-4.145441454414538,52.80236828221186],[-4.149041490414902,52.81249974583116],[-4.145441454414538,52.82094263218059],[-4.127441274412746,52.82431978672034],[-4.116641166411654,52.83107409579986],[-4.120241202412018,52.84627129122882],[-4.127441274412746,52.86146848665777],[-4.13104131041311,52.868222795737296],[-4.13104131041311,52.88173141389635],[-4.13104131041311,52.8884857229759],[-4.123841238412382,52.89355145478552],[-4.06264062640625,52.91888011383378],[-4.069840698406978,52.920568691103654],[-4.073440734407342,52.922257268373556],[-4.077040770407706,52.92732300018318],[-4.08784087840877,52.91888011383378],[-4.102241022410226,52.91381438202413],[-4.109441094410926,52.915502959294],[-4.120241202412018,52.92732300018318],[-4.145441454414538,52.915502959294],[-4.170641706417058,52.91381438202413],[-4.228242282422826,52.91888011383378],[-4.300243002430022,52.90537149567473],[-4.318243182431814,52.898617186595175],[-4.336243362433606,52.89186287751565],[-4.408244082440831,52.89186287751565],[-4.426244262442623,52.886797145706],[-4.447844478444779,52.876665682086696],[-4.480244802448027,52.85133702303847],[-4.476644766447663,52.84795986849869],[-4.476644766447663,52.84458271395894],[-4.491044910449091,52.83782840487942],[-4.501845018450183,52.82600836399024],[-4.501845018450183,52.814188323101064],[-4.487444874448727,52.80236828221186],[-4.501845018450183,52.79561397313233],[-4.509045090450911,52.792236818592585],[-4.516245162451611,52.78885966405281],[-4.527045270452703,52.79054824132268],[-4.541445414454131,52.800679704941984],[-4.563045630456287,52.805745436751636],[-4.584645846458471,52.814188323101064],[-4.595445954459535,52.81756547764081],[-4.606246062460627,52.81587690037094],[-4.613446134461327,52.81081116856129],[-4.620646206462055,52.805745436751636],[-4.627846278462783,52.80236828221186],[-4.649446494464939,52.79899112767211],[-4.703447034470344,52.80236828221186],[-4.7178471784717715,52.797302550402236],[-4.732247322473228,52.787171086782934],[-4.746647466474656,52.78379393224316],[-4.761047610476112,52.78885966405281],[-4.753847538475384,52.79899112767211],[-4.75024750247502,52.80236828221186],[-4.753847538475384,52.80912259129141],[-4.75024750247502,52.814188323101064],[-4.735847358473592,52.83107409579986],[-4.595445954459535,52.92901157745308],[-4.581045810458107,52.93407730926273],[-4.563045630456287,52.93407730926273],[-4.545045450454495,52.93745446380248],[-4.523445234452339,52.94420877288201],[-4.444244442444415,52.98135747281944],[-4.422644226442259,53.00330897732792],[-4.357843578435791,53.028637636376146],[-4.350643506435063,53.042146254535226],[-4.3470434704346985,53.05903202723405],[-4.3434434344343344,53.10124645898111],[-4.33984339843397,53.113066499870285],[-4.332643326433271,53.11644365441006],[-4.329043290432907,53.11475507714016],[-4.3254432544325425,53.108000768060634],[-4.3218432184321784,53.10124645898111],[-4.311043110431086,53.10968934533051],[-4.3038430384303865,53.121509386219714],[-4.3038430384303865,53.12488654075946],[-4.26424264242641,53.15528093161734],[-4.253442534425346,53.15865808615712],[-4.235442354423526,53.16372381796677],[-4.221042210422098,53.175543858855946],[-4.199441994419942,53.2008725179042],[-4.177841778417786,53.217758290603],[-4.152641526415266,53.2278897542223],[-4.123841238412382,53.232955486031955],[-4.091440914409134,53.23464406330183],[-4.08064080640807,53.232955486031955],[-4.073440734407342,53.23126690876208],[-4.066240662406614,53.229578331492206],[-4.05544055440555,53.23464406330183],[-4.033840338403365,53.24139837238138],[-4.008640086400845,53.24477552692113],[-3.9762397623976256,53.26166129961996],[-3.864638646386453,53.28867853593809],[-3.832238322383205,53.28867853593809],[-3.843038430384297,53.30725288590679],[-3.871838718387181,53.325827235875494],[-3.8790387903879093,53.3376472767647],[-3.861038610386089,53.335958699494796],[-3.839438394383933,53.33258154495505],[-3.821438214382141,53.325827235875494],[-3.810638106381049,53.317384349526094],[-3.789037890378893,53.32413865860562],[-3.767437674376737,53.31907292679597],[-3.749437494374945,53.30725288590679],[-3.7314373143731245,53.292055690477866],[-3.7170371703716967,53.286989958668215],[-3.6018360183601885,53.28867853593809],[-3.562235622356212,53.29374426774774],[-3.371433714337144,53.35115589492375],[-3.3318333183331674,53.35115589492375],[-3.2922329223292195,53.34102443130445],[-3.2706327063270635,53.330892967685145],[-3.2634326343263353,53.32076150406587],[-3.2490324903249075,53.31231861771644],[-3.123031230312307,53.26166129961996],[-3.108631086310851,53.25152983600066],[-3.094230942309423,53.23970979511148],[-3.087030870308695,53.23464406330183],[-3.0834308343083308,53.238021217841606],[-3.0834308343083308,53.25828414508021],[-3.0834308343083308,53.27516991777904],[-3.094230942309423,53.286989958668215],[-3.112231122311215,53.30218715409714],[-3.133831338313371,53.33427012222492],[-3.169831698316983,53.362975935812926],[-3.184231842318411,53.37648455397198],[-3.187831878318775,53.393370326670805],[-3.177031770317683,53.40350179029011],[-3.159031590315891,53.40856752209976],[-3.115831158311579,53.411944676639536],[-3.094230942309423,53.41701040844919],[-3.0582305823058107,53.43558475841789],[-3.0366303663036547,53.433896181147986],[-3.0114301143011346,53.41701040844919],[-2.9538295382953663,53.32413865860562],[-2.9358293582935744,53.308941463176694],[-2.9106291062910543,53.29712142228749],[-2.88182881828817,53.28867853593809],[-2.8494284942849504,53.28867853593809],[-2.8494284942849504,53.290367113207964],[-2.8494284942849504,53.295432845017615],[-2.8458284582845863,53.300498576827266],[-2.838628386283858,53.30218715409714],[-2.827828278282766,53.30218715409714],[-2.813428134281338,53.29712142228749],[-2.80622806228061,53.29712142228749],[-2.788227882278818,53.29712142228749],[-2.77382773827739,53.300498576827266],[-2.74862748627487,53.308941463176694],[-2.7522275222752057,53.322450081335745],[-2.7522275222752057,53.330892967685145],[-2.741427414274142,53.33933585403457],[-2.734227342273414,53.344401585844224],[-2.7270272702726857,53.34271300857432],[-2.716227162271622,53.34271300857432],[-2.7090270902708937,53.3460901631141],[-2.69822698226983,53.35115589492375],[-2.712627126271258,53.352844472193624],[-2.763027630276298,53.344401585844224],[-2.77382773827739,53.34102443130445],[-2.78102781027809,53.325827235875494],[-2.7990279902799102,53.32076150406587],[-2.809828098280974,53.322450081335745],[-2.8422284222842222,53.32413865860562],[-2.8854288542885342,53.33427012222492],[-2.9250292502925106,53.349467317653875],[-2.9574295742957304,53.36973024489245],[-2.9790297902978864,53.393370326670805],[-3.097830978309787,53.54365370369038],[-3.1014310143101227,53.55885089911931],[-3.097830978309787,53.572359517278386],[-3.087030870308695,53.58755671270734],[-3.022230222302227,53.65341122623275],[-2.9682296822968226,53.69393708070993],[-2.9610296102960945,53.697314235249706],[-2.9502295022950307,53.70744569886901],[-2.9106291062910543,53.72433147156784],[-2.8998289982899905,53.73615151245701],[-2.9862298622986145,53.73615151245701],[-3.022230222302227,53.74628297607629],[-3.047430474304747,53.76992305785467],[-3.0546305463054466,53.803694603252325],[-3.043830438304383,53.87799200312716],[-3.0582305823058107,53.906697816715166],[-3.0402304023040188,53.923583589413994],[-3.0186301863018628,53.932026475763394],[-2.9250292502925106,53.952289403002],[-2.9106291062910543,53.95397798027187],[-2.8962289622896265,53.94722367119235],[-2.8890288902888983,53.945535093922445],[-2.8854288542885342,53.950600825732096],[-2.88182881828817,53.95735513481165],[-2.8746287462874704,53.96242086662127],[-2.8638286382863782,53.96579802116105],[-2.85662856628565,53.96748659843092],[-2.8710287102871064,53.9793066393201],[-2.835028350283494,53.999569566558705],[-2.83142831428313,54.01645533925753],[-2.8458284582845863,54.008012452908105],[-2.8638286382863782,54.004635298368356],[-2.8962289622896265,54.00294672109848],[-2.8998289982899905,54.004635298368356],[-2.9178291782917825,54.026586802876835],[-2.9178291782917825,54.035029689226235],[-2.9106291062910543,54.040095421035886],[-2.8998289982899905,54.04516115284554],[-2.8926289262892624,54.05022688465519],[-2.8710287102871064,54.07217838916367],[-2.860228602286014,54.08062127551307],[-2.827828278282766,54.089064161862495],[-2.813428134281338,54.09919562548177],[-2.795427954279546,54.124524284530025],[-2.813428134281338,54.13972147995898],[-2.835028350283494,54.16842729354698],[-2.8494284942849504,54.18531306624581],[-2.853028530285286,54.19375595259521],[-2.83142831428313,54.19882168440486],[-2.809828098280974,54.21233030256391],[-2.795427954279546,54.22921607526274],[-2.795427954279546,54.249479002501346],[-2.802628026280246,54.249479002501346],[-2.80622806228061,54.23428180707239],[-2.8206282062820662,54.222461766183216],[-2.8494284942849504,54.20726457075426],[-2.8854288542885342,54.195444529865085],[-2.903429034290326,54.187001643515686],[-2.9142291422914184,54.17687017989638],[-2.9214292142921465,54.16167298446743],[-2.9394293942939385,54.154918675387904],[-2.9826298262982505,54.15323009811803],[-2.9970299702997067,54.159984407197555],[-3.0114301143011346,54.173493025356635],[-3.0186301863018628,54.19037879805546],[-3.0078300783007705,54.20051026167474],[-3.0150301503014987,54.21233030256391],[-3.025830258302591,54.22077318891334],[-3.0366303663036547,54.22583892072299],[-3.047430474304747,54.222461766183216],[-3.043830438304383,54.208953148024165],[-3.047430474304747,54.19375595259521],[-3.0546305463054466,54.181935911706034],[-3.0582305823058107,54.17011587081686],[-3.0618306183061748,54.16167298446743],[-3.090630906309059,54.13972147995898],[-3.108631086310851,54.1177699754505],[-3.119431194311943,54.10932708910107],[-3.144631446314463,54.10088420275167],[-3.148231482314827,54.089064161862495],[-3.144631446314463,54.075555543703416],[-3.144631446314463,54.06373550281424],[-3.180631806318047,54.092441316402244],[-3.191431914319139,54.097507048211895],[-3.205832058320567,54.09919562548177],[-3.2202322023220233,54.10088420275167],[-3.231032310323087,54.10594993456132],[-3.2418324183241793,54.11270424364085],[-3.2382323823238153,54.1279014390698],[-3.231032310323087,54.14478721176863],[-3.234632346323451,54.159984407197555],[-3.2490324903249075,54.16673871627708],[-3.2490324903249075,54.173493025356635],[-3.2166321663216593,54.18024733443616],[-3.205832058320567,54.208953148024165],[-3.209432094320931,54.24272469342182],[-3.205832058320567,54.2629876206604],[-3.2238322383223874,54.257921888850746],[-3.231032310323087,54.24779042523147],[-3.2418324183241793,54.222461766183216],[-3.231032310323087,54.20219883894464],[-3.2454324543245434,54.19713310713499],[-3.2706327063270635,54.19882168440486],[-3.2850328503284913,54.19713310713499],[-3.3066330663306474,54.19206737532534],[-3.3282332823328034,54.20557599348439],[-3.3642336423364156,54.24272469342182],[-3.3930339303393,54.2646761979303],[-3.4074340743407276,54.27818481608935],[-3.414634146341456,54.293382011518304],[-3.4110341103410917,54.301824897867704],[-3.4074340743407276,54.31026778421713],[-3.4038340383403636,54.31871067056653],[-3.4110341103410917,54.33221928872558],[-3.414634146341456,54.342350752344885],[-3.414634146341456,54.34572790688466],[-3.439834398343976,54.35248221596419],[-3.475834758347588,54.39300807044137],[-3.497434974349744,54.40651668860045],[-3.5910359103590963,54.48250266574516],[-3.6090360903608882,54.48756839755481],[-3.6126361263612523,54.49094555209456],[-3.6234362343623445,54.50614274752351],[-3.6342363423634083,54.51289705660304],[-3.6270362703627086,54.51965136568256],[-3.6162361623616164,54.52809425203199],[-3.6126361263612523,54.529782829301865],[-3.5910359103590963,54.565242951969395],[-3.562235622356212,54.64291750638401],[-3.529835298352964,54.68850909267084],[-3.515435154351536,54.712149174449195],[-3.508235082350808,54.7222806380685],[-3.5010350103501082,54.725657792608274],[-3.479434794347924,54.730723524417925],[-3.46863468634686,54.73578925622755],[-3.4542345423454037,54.744232142576976],[-3.439834398343976,54.761117915275804],[-3.4326343263432477,54.779692265244506],[-3.439834398343976,54.79826661521321],[-3.4074340743407276,54.855678242389246],[-3.3894338943389357,54.88269547870735],[-3.3642336423364156,54.899581251406175],[-3.3462334623346237,54.90295840594595],[-3.3318333183331674,54.8978926741363],[-3.3210332103321036,54.88944978778687],[-3.3066330663306474,54.886072633247124],[-3.2958329583295836,54.886072633247124],[-3.256232562325607,54.899581251406175],[-3.2670326703266994,54.9063355604857],[-3.3174331743317396,54.91984417864478],[-3.2922329223292195,54.93672995134361],[-3.277832778327763,54.94348426042313],[-3.213032130321295,54.953615724042436],[-3.202232022320203,54.95192714677253],[-3.1950319503195033,54.948549992232785],[-3.187831878318775,54.94517283769301],[-3.180631806318047,54.94010710588336],[-3.141031410314099,54.93335279680383],[-3.123031230312307,54.93335279680383],[-3.0402304023040188,54.94686141496291],[-3.022230222302227,54.953615724042436],[-3.090630906309059,54.953615724042436],[-3.090630906309059,54.962058610391836],[-3.072630726307267,54.96374718766174],[-3.0546305463054466,54.96881291947136],[-3.0402304023040188,54.97219007401114],[-3.022230222302227,54.96881291947136],[-3.022230222302227,54.975567228550915],[-3.047430474304747,54.98232153763044],[-3.051030510305111,54.98232153763044],[-3.133831338313371,54.96881291947136],[-3.4542345423454037,54.98232153763044],[-3.472234722347224,54.984010114900315],[-3.486634866348652,54.989075846709966],[-3.5010350103501082,54.99245300124974],[-3.515435154351536,54.989075846709966],[-3.511835118351172,54.98738726944009],[-3.511835118351172,54.98569869217019],[-3.508235082350808,54.98232153763044],[-3.5262352623526283,54.97725580582079],[-3.540635406354056,54.98063296036054],[-3.5694356943569403,54.99583015578949],[-3.583835838358368,54.96881291947136],[-3.5766357663576684,54.956992878582184],[-3.5694356943569403,54.93672995134361],[-3.5694356943569403,54.916467024105],[-3.5694356943569403,54.899581251406175],[-3.580235802358004,54.88438405597725],[-3.5982359823598244,54.877629746897696],[-3.6918369183691766,54.88269547870735],[-3.7170371703716967,54.88100690143747],[-3.7386373863738527,54.859055396928994],[-3.810638106381049,54.86580970600852],[-3.8070380703806848,54.86074397419887],[-3.803438034380349,54.859055396928994],[-3.810638106381049,54.855678242389246],[-3.821438214382141,54.855678242389246],[-3.825038250382505,54.86074397419887],[-3.832238322383205,54.86580970600852],[-3.821438214382141,54.8793183241676],[-3.814238142381413,54.877629746897696],[-3.810638106381049,54.872564015088045],[-3.810638106381049,54.8793183241676],[-3.814238142381413,54.88269547870735],[-3.817838178381777,54.886072633247124],[-3.828638286382869,54.87425259235795],[-3.843038430384297,54.86580970600852],[-3.839438394383933,54.855678242389246],[-3.835838358383569,54.85230108784947],[-3.843038430384297,54.850612510579595],[-3.857438574385725,54.84385820150004],[-3.825038250382505,54.82528385153134],[-3.832238322383205,54.82021811972169],[-3.886238862388609,54.806709501562636],[-3.9654396543965333,54.77124937889511],[-4.012240122401209,54.76787222435533],[-4.044640446404458,54.769560801625204],[-4.044640446404458,54.77631511070476],[-4.048240482404822,54.77800368797463],[-4.051840518405186,54.77800368797463],[-4.051840518405186,54.779692265244506],[-4.05544055440555,54.78306941978428],[-4.051840518405186,54.78475799705416],[-4.051840518405186,54.78982372886381],[-4.048240482404822,54.78982372886381],[-4.051840518405186,54.79995519248311],[-4.048240482404822,54.81346381064216],[-4.048240482404822,54.823595274261464],[-4.06264062640625,54.82697242880121],[-4.06264062640625,54.832038160610864],[-4.077040770407706,54.823595274261464],[-4.091440914409134,54.81008665610241],[-4.095040950409498,54.793200883403586],[-4.084240842408406,54.77631511070476],[-4.123841238412382,54.77293795616498],[-4.174241742417422,54.79151230613368],[-4.210242102421006,54.82697242880121],[-4.199441994419942,54.86580970600852],[-4.21384213842137,54.86074397419887],[-4.23904239042389,54.842169624230166],[-4.25704257042571,54.83879246969042],[-4.271442714427138,54.83879246969042],[-4.3470434704346985,54.86074397419887],[-4.357843578435791,54.86580970600852],[-4.3650436504364905,54.872564015088045],[-4.375843758437583,54.886072633247124],[-4.379443794437947,54.8978926741363],[-4.3866438664386465,54.90464698321583],[-4.404644046440467,54.9080241377556],[-4.408244082440831,54.90295840594595],[-4.415444154441531,54.89282694232665],[-4.422644226442259,54.88100690143747],[-4.426244262442623,54.8691868605483],[-4.415444154441531,54.84554677876994],[-4.408244082440831,54.832038160610864],[-4.404644046440467,54.82528385153134],[-4.3866438664386465,54.823595274261464],[-4.372243722437219,54.82190669699159],[-4.357843578435791,54.81684096518194],[-4.3470434704346985,54.806709501562636],[-4.3434434344343344,54.79488946067346],[-4.354243542435427,54.78306941978428],[-4.357843578435791,54.77124937889511],[-4.3434434344343344,54.75605218346615],[-4.357843578435791,54.7425435653071],[-4.354243542435427,54.72059206079862],[-4.3470434704346985,54.70201771082992],[-4.354243542435427,54.69357482448049],[-4.361443614436126,54.69188624721062],[-4.3650436504364905,54.68682051540097],[-4.372243722437219,54.681754783591316],[-4.383043830438311,54.68006620632144],[-4.404644046440467,54.681754783591316],[-4.426244262442623,54.68682051540097],[-4.451444514445143,54.698640556290144],[-4.462244622446207,54.70201771082992],[-4.498244982449819,54.70032913356002],[-4.505445054450547,54.70539486536967],[-4.563045630456287,54.75605218346615],[-4.595445954459535,54.774626533434855],[-4.714247142471407,54.81852954245181],[-4.761047610476112,54.82528385153134],[-4.782647826478268,54.83372673788077],[-4.80064800648006,54.86074397419887],[-4.822248222482216,54.86580970600852],[-4.858248582485828,54.86580970600852],[-4.883448834488348,54.86074397419887],[-4.905049050490504,54.850612510579595],[-4.92664926649266,54.837103892420515],[-4.941049410494088,54.82528385153134],[-4.948249482494816,54.815152387912036],[-4.955449554495544,54.81008665610241],[-4.955449554495544,54.80502092429276],[-4.955449554495544,54.79826661521321],[-4.95184951849518,54.788135151593934],[-4.948249482494816,54.77800368797463],[-4.941049410494088,54.76787222435533],[-4.930249302493024,54.76280649254568],[-4.923049230492296,54.752675028926376],[-4.912249122491232,54.72903494714802],[-4.894248942489412,54.703706288099795],[-4.869048690486892,54.690197669940716],[-4.865448654486528,54.681754783591316],[-4.872648726487256,54.663180433622614],[-4.872648726487256,54.654737547273186],[-4.872648726487256,54.649671815463535],[-4.858248582485828,54.63278604276471],[-4.879848798487984,54.636163197304484],[-4.923049230492296,54.649671815463535],[-4.944649446494452,54.65304897000331],[-4.955449554495544,54.65980327908284],[-4.959049590495908,54.67500047451179],[-4.959049590495908,54.69188624721062],[-4.948249482494816,54.70201771082992],[-4.955449554495544,54.707083442639544],[-4.959049590495908,54.7138377517191],[-4.959049590495908,54.72059206079862],[-4.955449554495544,54.72903494714802],[-4.973449734497336,54.72903494714802],[-4.980649806498064,54.7324121016878],[-4.987849878498793,54.73578925622755],[-4.991449914499128,54.744232142576976],[-4.998649986499856,54.75774076073603],[-5.00225002250022,54.77124937889511],[-5.013050130501313,54.77631511070476],[-5.034650346503469,54.78306941978428],[-5.128251282512821,54.84892393330969],[-5.157051570515705,54.8793183241676],[-5.175051750517497,54.91477844683513],[-5.182251822518225,54.953615724042436],[-5.178651786517861,54.99076442397984],[-5.171451714517133,55.00933877394857],[-5.157051570515705,55.016093083028096],[-5.135451354513549,55.016093083028096],[-5.124651246512457,55.016093083028096],[-5.121051210512093,55.019470237567845],[-5.113851138511393,55.03129027845702],[-5.106651066510665,55.0262245466474],[-5.095850958509573,55.01440450575819],[-5.0922509225092085,55.00933877394857],[-5.077850778507781,54.99583015578949],[-5.0706507065070525,54.98569869217019],[-5.063450634506353,54.975567228550915],[-5.063450634506353,54.96374718766174],[-5.0670506705066884,54.94010710588336],[-5.059850598505989,54.93166421953396],[-5.0490504905048965,54.91984417864478],[-5.031050310503105,54.91140129229535],[-5.013050130501313,54.90971271502548],[-4.995049950499492,54.91984417864478],[-4.991449914499128,54.92490991045443],[-4.987849878498793,54.92828706499418],[-4.987849878498793,54.935041374073705],[-5.023850238502376,54.975567228550915],[-5.031050310503105,54.98569869217019],[-5.031050310503105,54.99414157851962],[-5.034650346503469,54.99583015578949],[-5.0454504545045324,55.01440450575819],[-5.0490504905048965,55.0262245466474],[-5.0490504905048965,55.04817605115585],[-5.0490504905048965,55.0549303602354],[-5.041850418504168,55.06506182385468],[-5.0274502745027405,55.08870190563306],[-5.020250202502012,55.10221052379211],[-5.016650166501648,55.122473451030686],[-5.009450094500949,55.14104780099942],[-4.987849878498793,55.15286784188859],[-4.948249482494816,55.16806503731752],[-4.883448834488348,55.218722355414],[-4.87624876248762,55.220410932683905],[-4.869048690486892,55.22209950995378],[-4.865448654486528,55.225476664493556],[-4.865448654486528,55.23560812811283],[-4.865448654486528,55.24067385992248],[-4.840248402484008,55.27444540532014],[-4.836648366483672,55.28457686893944],[-4.836648366483672,55.29301975528884],[-4.840248402484008,55.31497125979732],[-4.836648366483672,55.32510272341662],[-4.833048330483308,55.331857032496146],[-4.80064800648006,55.3554971142745],[-4.782647826478268,55.36394000062393],[-4.771847718477176,55.36900573243358],[-4.768247682476812,55.37913719605288],[-4.757447574475748,55.402777277831234],[-4.75024750247502,55.41459731872041],[-4.7178471784717715,55.429794514149336],[-4.649446494464939,55.448368864118066],[-4.627846278462783,55.46863179135664],[-4.617046170461691,55.49564902767477],[-4.627846278462783,55.519289109453126],[-4.649446494464939,55.53786345942183],[-4.685446854468552,55.54461776850138],[-4.667446674466731,55.56150354120021],[-4.667446674466731,55.563192118470084],[-4.671046710467095,55.58514362297856],[-4.692646926469251,55.60540655021714],[-4.721447214472136,55.61891516837622],[-4.77544775447754,55.63242378653527],[-4.807848078480788,55.634112363805144],[-4.818648186481852,55.63748951834492],[-4.811448114481152,55.64593240469435],[-4.811448114481152,55.65437529104375],[-4.869048690486892,55.67632679555223],[-4.90144901449014,55.69152399098118],[-4.919449194491932,55.70840976367998],[-4.87624876248762,55.73542699999811],[-4.861848618486192,55.75737850450659],[-4.865448654486528,55.791150049904246],[-4.872648726487256,55.80297009079342],[-4.87624876248762,55.81141297714285],[-4.883448834488348,55.821544440762125],[-4.887048870488712,55.86375887250921],[-4.887048870488712,55.86544744977908],[-4.894248942489412,55.89246468609721],[-4.887048870488712,55.91948192241534],[-4.872648726487256,55.93636769511417],[-4.8510485104851,55.94818773600335],[-4.818648186481852,55.95494204508287],[-4.80064800648006,55.95831919962262],[-4.786247862478632,55.95663062235275],[-4.721447214472136,55.93974484965392],[-4.707047070470708,55.938056272384046],[-4.692646926469251,55.941433426923794],[-4.671046710467095,55.932990540574394],[-4.505445054450547,55.91948192241534],[-4.480244802448027,55.92792480876474],[-4.591845918459171,55.941433426923794],[-4.6314463144631475,55.946499158733445],[-4.6746467464674595,55.9616963541624],[-4.7250472504725,55.99884505409983],[-4.764647646476448,56.00728794044923],[-4.782647826478268,56.017419404068534],[-4.80064800648006,56.030928022227585],[-4.811448114481152,56.044436640386664],[-4.822248222482216,56.07314245397467],[-4.82584825848258,56.07820818578432],[-4.840248402484008,56.079896763054194],[-4.843848438484372,56.07314245397467],[-4.843848438484372,56.063010990355366],[-4.836648366483672,56.05119094946619],[-4.789847898478968,56.01066509498901],[-4.779047790477904,55.99209074502028],[-4.786247862478632,55.98364785867088],[-4.804248042480424,55.981959281401004],[-4.829448294482944,55.981959281401004],[-4.8510485104851,55.98871359048053],[-4.861848618486192,56.00222220863958],[-4.865448654486528,56.02079655860828],[-4.865448654486528,56.057945258545715],[-4.865448654486528,56.066388144895114],[-4.82584825848258,56.12379977207115],[-4.753847538475384,56.187965708326686],[-4.75024750247502,56.20316290375561],[-4.753847538475384,56.20654005829539],[-4.764647646476448,56.20147432648574],[-4.779047790477904,56.191342862866435],[-4.836648366483672,56.12379977207115],[-4.8510485104851,56.11197973118195],[-4.872648726487256,56.11197973118195],[-4.879848798487984,56.120422617531375],[-4.879848798487984,56.150817008389254],[-4.883448834488348,56.16432562654833],[-4.894248942489412,56.17445709016761],[-4.908649086490868,56.177834244707384],[-4.919449194491932,56.16770278108808],[-4.908649086490868,56.14912843111938],[-4.894248942489412,56.115356885721724],[-4.887048870488712,56.079896763054194],[-4.890648906489048,56.06469956762524],[-4.90144901449014,56.06132241308549],[-4.905049050490504,56.05456810400594],[-4.90144901449014,56.03430517676736],[-4.90144901449014,56.01404224952876],[-4.897848978489776,56.000533631369706],[-4.894248942489412,55.9904021677504],[-4.905049050490504,55.98533643594075],[-4.923049230492296,55.98871359048053],[-4.937449374493752,55.99377932229018],[-4.955449554495544,55.99715647682993],[-4.955449554495544,55.9904021677504],[-4.941049410494088,55.987025013210626],[-4.930249302493024,55.981959281401004],[-4.919449194491932,55.973516395051576],[-4.912249122491232,55.9616963541624],[-4.915849158491568,55.94818773600335],[-4.92664926649266,55.938056272384046],[-4.937449374493752,55.92961338603462],[-4.948249482494816,55.92117049968522],[-4.95184951849518,55.90935045879604],[-4.955449554495544,55.89921899517674],[-4.959049590495908,55.89077610882734],[-4.969849698496972,55.88064464520804],[-4.9842498424984285,55.870513181588734],[-4.995049950499492,55.870513181588734],[-5.0274502745027405,55.87389033612851],[-5.041850418504168,55.884021799747785],[-5.056250562505625,55.911039036065915],[-5.0670506705066884,55.938056272384046],[-5.0706507065070525,55.95831919962262],[-5.110251102511029,55.98871359048053],[-5.117451174511729,56.00222220863958],[-5.124651246512457,56.01066509498901],[-5.139051390513913,56.00222220863958],[-5.124651246512457,55.987025013210626],[-5.085050850508509,55.93130196330452],[-5.077850778507781,55.911039036065915],[-5.085050850508509,55.90090757244661],[-5.106651066510665,55.90428472698639],[-5.171451714517133,55.93636769511417],[-5.182251822518225,55.94818773600335],[-5.182251822518225,55.97013924051183],[-5.189451894518953,55.9616963541624],[-5.200252002520017,55.94818773600335],[-5.207452074520745,55.93467911784427],[-5.207452074520745,55.924547654224966],[-5.211052110521109,55.91779334514544],[-5.243452434524329,55.89246468609721],[-5.218252182521809,55.86544744977908],[-5.207452074520745,55.848561677080255],[-5.200252002520017,55.83167590438143],[-5.218252182521809,55.83167590438143],[-5.261452614526149,55.84518452254051],[-5.297452974529733,55.85193883162003],[-5.308253082530825,55.86038171796943],[-5.3118531185311895,55.88571037701769],[-5.319053190531889,55.889087531557436],[-5.326253262532617,55.89077610882734],[-5.3334533345333455,55.89584184063696],[-5.3370533705337095,55.90428472698639],[-5.340653406534045,55.91272761333579],[-5.3370533705337095,55.93130196330452],[-5.3370533705337095,55.93974484965392],[-5.326253262532617,55.94987631327322],[-5.322653226532253,55.95831919962262],[-5.326253262532617,55.96676208597205],[-5.3370533705337095,55.99715647682993],[-5.3118531185311895,56.01235367225888],[-5.203852038520381,56.1187340402615],[-5.146251462514613,56.133931235690426],[-5.103051030510301,56.150817008389254],[-5.095850958509573,56.15757131746878],[-5.059850598505989,56.20316290375561],[-5.041850418504168,56.21667152191469],[-5.013050130501313,56.22680298553399],[-4.973449734497336,56.23693444915327],[-4.941049410494088,56.25213164458222],[-4.919449194491932,56.27746030363048],[-4.937449374493752,56.27070599455092],[-4.973449734497336,56.24875449004247],[-4.991449914499128,56.24368875823282],[-5.031050310503105,56.24200018096292],[-5.0490504905048965,56.23693444915327],[-5.063450634506353,56.22849156280387],[-5.074250742507417,56.21667152191469],[-5.099450994509937,56.18121139924716],[-5.110251102511029,56.17445709016761],[-5.229052290522901,56.128865503880775],[-5.3118531185311895,56.057945258545715],[-5.319053190531889,56.05456810400594],[-5.3370533705337095,56.05456810400594],[-5.344253442534409,56.05119094946619],[-5.344253442534409,56.04612521765654],[-5.351453514535137,56.03261659949749],[-5.3550535505355015,56.01910798133841],[-5.3586535865358655,56.02079655860828],[-5.369453694536929,56.008976517719105],[-5.391053910539085,56.00559936317936],[-5.416254162541605,56.00728794044923],[-5.434254342543426,56.01066509498901],[-5.434254342543426,56.01573082679866],[-5.434254342543426,56.02417371314806],[-5.43785437854379,56.02923944495771],[-5.4450544505444896,56.027550867687836],[-5.448654486544854,56.022485135878185],[-5.448654486544854,56.01573082679866],[-5.448654486544854,56.008976517719105],[-5.455854558545582,55.95494204508287],[-5.452254522545218,55.953253467813],[-5.43785437854379,55.94818773600335],[-5.430654306543062,55.94818773600335],[-5.4198541985419695,55.92792480876474],[-5.416254162541605,55.91610476787557],[-5.416254162541605,55.90766188152617],[-5.41265412654127,55.89921899517674],[-5.4018540185401775,55.89246468609721],[-5.4018540185401775,55.88739895428756],[-5.405454054540542,55.88739895428756],[-5.405454054540542,55.88064464520804],[-5.4018540185401775,55.878956067938134],[-5.394653946539449,55.87389033612851],[-5.3982539825398135,55.87220175885861],[-5.4018540185401775,55.86882460431886],[-5.405454054540542,55.86544744977908],[-5.351453514535137,55.83167590438143],[-5.326253262532617,55.808035822603074],[-5.319053190531889,55.782707163554846],[-5.326253262532617,55.76919854539577],[-5.3370533705337095,55.76244423631624],[-5.373053730537293,55.755689927236716],[-5.38745387453875,55.750624195427065],[-5.434254342543426,55.720229804569186],[-5.4450544505444896,55.71178691821976],[-5.452254522545218,55.69996687733058],[-5.459454594545946,55.688146836441405],[-5.46305463054631,55.67970395009198],[-5.466654666546646,55.66281817739315],[-5.47025470254701,55.65437529104375],[-5.491854918549166,55.64424382742445],[-5.48825488254883,55.6408666728847],[-5.484654846548466,55.63580094107505],[-5.481054810548102,55.63242378653527],[-5.484654846548466,55.61047228202679],[-5.473854738547374,55.603717972947265],[-5.46305463054631,55.60202939567739],[-5.455854558545582,55.59189793205809],[-5.459454594545946,55.57838931389904],[-5.477454774547738,55.57501215935926],[-5.48825488254883,55.568257850279736],[-5.481054810548102,55.54968350031103],[-5.502655026550258,55.52604341853265],[-5.509855098550986,55.51760053218325],[-5.509855098550986,55.51084622310373],[-5.509855098550986,55.492271873134996],[-5.509855098550986,55.483828986785596],[-5.51345513455135,55.483828986785596],[-5.517055170551686,55.48551756405547],[-5.524255242552414,55.48214040951572],[-5.54585545855457,55.448368864118066],[-5.560255602556026,55.43486024595899],[-5.585455854558546,55.42810593687946],[-5.585455854558546,55.421351627799936],[-5.57105571055709,55.42304020506981],[-5.56385563855639,55.41966305053006],[-5.553055530555298,55.41459731872041],[-5.542255422554206,55.40615443237098],[-5.527855278552778,55.3842029278625],[-5.527855278552778,55.380825773322755],[-5.51345513455135,55.37407146424323],[-5.524255242552414,55.358874268814276],[-5.556655566555662,55.331857032496146],[-5.574655746557454,55.32172556887684],[-5.592655926559246,55.31328268252744],[-5.617856178561766,55.30652837344792],[-5.63945639456395,55.30315121890814],[-5.650256502565014,55.304839796178044],[-5.668256682566806,55.31159410525757],[-5.682656826568262,55.31159410525757],[-5.689856898568991,55.30821695071779],[-5.715057150571511,55.29977406436839],[-5.725857258572574,55.296396909828616],[-5.754657546575459,55.29808548709849],[-5.7726577265772505,55.30146264163827],[-5.783457834578343,55.31328268252744],[-5.7942579425794065,55.3571856915444],[-5.797857978579771,55.37913719605288],[-5.790657906579071,55.39940012329146],[-5.761857618576187,55.411220164180634],[-5.725857258572574,55.438237400498764],[-5.715057150571511,55.448368864118066],[-5.715057150571511,55.46863179135664],[-5.718657186571846,55.492271873134996],[-5.72225722257221,55.514223377643475],[-5.7078570785707825,55.54292919123148],[-5.711457114571147,55.55137207758091],[-5.718657186571846,55.55812638666043],[-5.72225722257221,55.56488069573996],[-5.718657186571846,55.57501215935926],[-5.693456934569326,55.60540655021714],[-5.67185671856717,55.6408666728847],[-5.668256682566806,55.661129600123274],[-5.682656826568262,55.674638218282354],[-5.625056250562494,55.69996687733058],[-5.617856178561766,55.71178691821976],[-5.61425614256143,55.72529553637881],[-5.599855998559974,55.74218130907764],[-5.581855818558182,55.75737850450659],[-5.567455674556726,55.764132813586116],[-5.53865538655387,55.77088712266564],[-5.506255062550622,55.78946147263437],[-5.473854738547374,55.816478708952474],[-5.455854558545582,55.84518452254051],[-5.553055530555298,55.78439574082472],[-5.58905589055891,55.76750996812589],[-5.599855998559974,55.764132813586116],[-5.61425614256143,55.764132813586116],[-5.607056070560702,55.777641431745195],[-5.632256322563222,55.782707163554846],[-5.64665646656465,55.78777289536447],[-5.661056610566106,55.79790435898377],[-5.668256682566806,55.81141297714285],[-5.668256682566806,55.83843021346095],[-5.675456754567534,55.84518452254051],[-5.632256322563222,55.88233322247791],[-5.625056250562494,55.889087531557436],[-5.617856178561766,55.902596149716516],[-5.603456034560338,55.91441619060569],[-5.585455854558546,55.92285907695509],[-5.57105571055709,55.93467911784427],[-5.592655926559246,55.92792480876474],[-5.628656286562858,55.905973304256264],[-5.653856538565378,55.897530417906864],[-5.67185671856717,55.88739895428756],[-5.682656826568262,55.88739895428756],[-5.6862568625686265,55.89415326336709],[-5.693456934569326,55.90428472698639],[-5.69705697056969,55.91610476787557],[-5.585455854558546,56.01235367225888],[-5.578255782557818,56.02417371314806],[-5.581855818558182,56.02923944495771],[-5.578255782557818,56.03261659949749],[-5.57105571055709,56.03768233130711],[-5.585455854558546,56.04105948584689],[-5.59625596255961,56.035993754037236],[-5.610656106561066,56.02923944495771],[-5.625056250562494,56.02417371314806],[-5.632256322563222,56.00559936317936],[-5.675456754567534,55.97689354959135],[-5.675456754567534,55.95494204508287],[-5.689856898568991,55.938056272384046],[-5.693456934569326,55.93467911784427],[-5.704257042570418,55.93636769511417],[-5.7078570785707825,55.9431220041937],[-5.704257042570418,55.94987631327322],[-5.700657006570054,55.95494204508287],[-5.69705697056969,55.981959281401004],[-5.661056610566106,56.022485135878185],[-5.585455854558546,56.084962494863845],[-5.581855818558182,56.08833964940359],[-5.581855818558182,56.093405381213245],[-5.578255782557818,56.09678253575302],[-5.57105571055709,56.098471113022896],[-5.56385563855639,56.098471113022896],[-5.556655566555662,56.09509395848312],[-5.549455494554934,56.093405381213245],[-5.549455494554934,56.09171680394337],[-5.549455494554934,56.090028226673496],[-5.53865538655387,56.08665107213372],[-5.531455314553142,56.08665107213372],[-5.531455314553142,56.09171680394337],[-5.535055350553506,56.098471113022896],[-5.542255422554206,56.10184826756267],[-5.54585545855457,56.10522542210242],[-5.549455494554934,56.106913999372324],[-5.556655566555662,56.12211119480125],[-5.560255602556026,56.13055408115068],[-5.553055530555298,56.1373083902302],[-5.524255242552414,56.16601420381821],[-5.517055170551686,56.17445709016761],[-5.509855098550986,56.187965708326686],[-5.53865538655387,56.182899976517035],[-5.56385563855639,56.16770278108808],[-5.581855818558182,56.150817008389254],[-5.607056070560702,56.14068554476998],[-5.599855998559974,56.160948472008556],[-5.585455854558546,56.18121139924716],[-5.57105571055709,56.19978574921586],[-5.549455494554934,56.21667152191469],[-5.560255602556026,56.23018014007374],[-5.54585545855457,56.240311603693044],[-5.524255242552414,56.24706591277257],[-5.506255062550622,56.25044306731235],[-5.49545495454953,56.253820221852095],[-5.491854918549166,56.26057453093165],[-5.499054990549894,56.267328840011174],[-5.51345513455135,56.27070599455092],[-5.553055530555298,56.2639516854714],[-5.56385563855639,56.26057453093165],[-5.57105571055709,56.253820221852095],[-5.581855818558182,56.24875449004247],[-5.592655926559246,56.25044306731235],[-5.59625596255961,56.258885953661746],[-5.59625596255961,56.27070599455092],[-5.585455854558546,56.29096892178953],[-5.57105571055709,56.32811762172693],[-5.56385563855639,56.34162623988601],[-5.542255422554206,56.35344628077519],[-5.524255242552414,56.34669197169566],[-5.499054990549894,56.34838054896554],[-5.448654486544854,56.36020058985471],[-5.448654486544854,56.365266321664365],[-5.473854738547374,56.365266321664365],[-5.517055170551686,56.356823435314965],[-5.53865538655387,56.36020058985471],[-5.517055170551686,56.392283557982495],[-5.509855098550986,56.400726444331895],[-5.499054990549894,56.40410359887167],[-5.484654846548466,56.40748075341142],[-5.477454774547738,56.41254648522107],[-5.481054810548102,56.4209893715705],[-5.455854558545582,56.441252298809076],[-5.4234542345423336,56.449695185158504],[-5.322653226532253,56.454760916968155],[-5.243452434524329,56.44294087607898],[-5.207452074520745,56.44631803061873],[-5.182251822518225,56.459826648777806],[-5.117451174511729,56.50710681233451],[-5.085050850508509,56.54932124408157],[-5.063450634506353,56.56451843951052],[-5.085050850508509,56.557764130430996],[-5.099450994509937,56.54425551227192],[-5.110251102511029,56.525681162303215],[-5.124651246512457,56.51048396687429],[-5.167851678516769,56.490221039635685],[-5.189451894518953,56.468269535127206],[-5.200252002520017,56.46151522604768],[-5.243452434524329,56.459826648777806],[-5.351453514535137,56.47333526693686],[-5.3766537665376575,56.4581380715079],[-5.394653946539449,56.46489238058746],[-5.409054090540906,56.503729657794736],[-5.4234542345423336,56.50035250325499],[-5.434254342543426,56.49190961690556],[-5.455854558545582,56.46995811239708],[-5.47025470254701,56.47502384420673],[-5.434254342543426,56.52399258503334],[-5.427054270542698,56.53750120319239],[-5.405454054540542,56.52399258503334],[-5.3802538025380215,56.51892685322369],[-5.3550535505355015,56.51892685322369],[-5.3370533705337095,56.52399258503334],[-5.290252902529005,56.54425551227192],[-5.265052650526485,56.55100982135147],[-5.254252542525421,56.55607555316112],[-5.243452434524329,56.56451843951052],[-5.275852758527577,56.55438697589122],[-5.286652866528669,56.552698398621345],[-5.308253082530825,56.552698398621345],[-5.3118531185311895,56.552698398621345],[-5.326253262532617,56.54425551227192],[-5.3370533705337095,56.54256693500204],[-5.3586535865358655,56.53243547138274],[-5.373053730537293,56.530746894112866],[-5.383853838538386,56.53412404865264],[-5.4018540185401775,56.54425551227192],[-5.41265412654127,56.54425551227192],[-5.41265412654127,56.552698398621345],[-5.409054090540906,56.55607555316112],[-5.4018540185401775,56.557764130430996],[-5.3982539825398135,56.561141284970745],[-5.391053910539085,56.566207016780396],[-5.391053910539085,56.574649903129824],[-5.38745387453875,56.57802705766957],[-5.36225362253623,56.60673287125758],[-5.351453514535137,56.61348718033713],[-5.3118531185311895,56.63375010757571],[-5.304653046530461,56.64050441665523],[-5.297452974529733,56.64725872573479],[-5.319053190531889,56.65401303481431],[-5.319053190531889,56.66076734389384],[-5.308253082530825,56.664144498433615],[-5.286652866528669,56.67427596205289],[-5.261452614526149,56.672587384783014],[-5.247052470524693,56.67427596205289],[-5.218252182521809,56.68947315748184],[-5.196651966519653,56.68947315748184],[-5.153451534515341,56.68103027113244],[-5.131851318513185,56.68440742567219],[-5.0922509225092085,56.699604621101145],[-5.013050130501313,56.70973608472045],[-4.995049950499492,56.71649039379997],[-5.160651606516069,56.69622746656137],[-5.239852398523965,56.71649039379997],[-5.239852398523965,56.7232447028795],[-5.229052290522901,56.73675332103855],[-5.221852218522173,56.7418190528482],[-5.153451534515341,56.78234490732538],[-5.135451354513549,56.79923068002421],[-5.121051210512093,56.81780502999294],[-5.178651786517861,56.789099216404935],[-5.185851858518589,56.78065633005551],[-5.193051930519289,56.77390202097598],[-5.203852038520381,56.76883628916633],[-5.214652146521445,56.76545913462655],[-5.225452254522537,56.76377055735668],[-5.232652326523265,56.7603934028169],[-5.236252362523629,56.75363909373738],[-5.239852398523965,56.74519620738798],[-5.243452434524329,56.73675332103855],[-5.254252542525421,56.721556125609624],[-5.268652686526849,56.713113239260196],[-5.283052830528305,56.70973608472045],[-5.301053010530097,56.708047507450544],[-5.308253082530825,56.70635893018067],[-5.319053190531889,56.69791604383127],[-5.340653406534045,56.69285031202162],[-5.347853478534773,56.68778458021197],[-5.3586535865358655,56.67427596205289],[-5.38745387453875,56.65570161208419],[-5.405454054540542,56.64894730300466],[-5.4234542345423336,56.64725872573479],[-5.434254342543426,56.642192993925136],[-5.448654486544854,56.62530722122631],[-5.459454594545946,56.62024148941666],[-5.47025470254701,56.61855291214678],[-5.481054810548102,56.61348718033713],[-5.491854918549166,56.60673287125758],[-5.535055350553506,56.57296132585995],[-5.599855998559974,56.52905831684299],[-5.668256682566806,56.498663925985085],[-5.675456754567534,56.49697534871521],[-5.682656826568262,56.50035250325499],[-5.693456934569326,56.51386112141404],[-5.704257042570418,56.517238275953815],[-5.72225722257221,56.51892685322369],[-5.740257402574031,56.52399258503334],[-5.758257582575823,56.530746894112866],[-5.769057690576886,56.53750120319239],[-5.754657546575459,56.55438697589122],[-5.7510575105750945,56.56282986224065],[-5.74745747457473,56.57127274859005],[-5.758257582575823,56.57127274859005],[-5.7942579425794065,56.54256693500204],[-5.855458554585539,56.55100982135147],[-6.003060030600295,56.61855291214678],[-6.010260102601023,56.62699579849618],[-6.006660066600659,56.642192993925136],[-5.999459994599931,56.650635880274535],[-5.985059850598503,56.65232445754441],[-5.934659346593463,56.65401303481431],[-5.898658986589851,56.650635880274535],[-5.866258662586631,56.642192993925136],[-5.837458374583747,56.62699579849618],[-5.830258302583019,56.63375010757571],[-5.855458554585539,56.64388157119501],[-5.866258662586631,56.650635880274535],[-5.866258662586631,56.66076734389384],[-5.758257582575823,56.70129319837102],[-5.736657366573667,56.70298177564089],[-5.67185671856717,56.68440742567219],[-5.64665646656465,56.68103027113244],[-5.592655926559246,56.68271884840232],[-5.56385563855639,56.68778458021197],[-5.542255422554206,56.69622746656137],[-5.635856358563586,56.68947315748184],[-5.657456574565742,56.69116173475172],[-5.7078570785707825,56.708047507450544],[-5.7510575105750945,56.71480181653007],[-5.859058590585903,56.68103027113244],[-5.895058950589487,56.67427596205289],[-5.905859058590579,56.67427596205289],[-5.920259202592007,56.677653116592666],[-5.941859418594191,56.686096002942065],[-5.956259562595619,56.68947315748184],[-6.024660246602451,56.686096002942065],[-6.1002610026100115,56.69622746656137],[-6.1254612546125315,56.69622746656137],[-6.143461434614352,56.68440742567219],[-6.161461614616144,56.677653116592666],[-6.186661866618664,56.68103027113244],[-6.20826208262082,56.68778458021197],[-6.222662226622248,56.69622746656137],[-6.229862298622976,56.70129319837102],[-6.23346233462334,56.70635893018067],[-6.237062370623704,56.713113239260196],[-6.237062370623704,56.71986754833972],[-6.23346233462334,56.72831043468915],[-6.229862298622976,56.72831043468915],[-6.222662226622248,56.726621857419275],[-6.215462154621548,56.72999901195902],[-6.193861938619392,56.748573361927726],[-6.179461794617936,56.75532767100728],[-6.028260282602815,56.76377055735668],[-6.0138601386013875,56.767147711896456],[-5.981459814598139,56.78234490732538],[-5.963459634596347,56.784033484595284],[-5.949059490594891,56.78234490732538],[-5.938259382593827,56.77727917551573],[-5.927459274592735,56.770524866436205],[-5.913059130591307,56.76377055735668],[-5.862658626586267,56.75026193919763],[-5.851858518585175,56.74688478465785],[-5.851858518585175,56.75870482554703],[-5.859058590585903,56.76883628916633],[-5.869858698586967,56.775590598245856],[-5.887858878588787,56.77727917551573],[-5.887858878588787,56.784033484595284],[-5.873458734587331,56.78572206186516],[-5.862658626586267,56.78572206186516],[-5.851858518585175,56.78234490732538],[-5.837458374583747,56.77727917551573],[-5.823058230582291,56.78741063913503],[-5.801458014580135,56.792476370944684],[-5.776257762577615,56.78741063913503],[-5.758257582575823,56.784033484595284],[-5.830258302583019,56.80598498910376],[-5.851858518585175,56.81780502999294],[-5.851858518585175,56.829625070882116],[-5.837458374583747,56.83637937996164],[-5.733057330573303,56.84482226631104],[-5.693456934569326,56.854953729930344],[-5.661056610566106,56.873528079899046],[-5.67185671856717,56.87690523443882],[-5.693456934569326,56.87521665716895],[-5.7078570785707825,56.8701509253593],[-5.725857258572574,56.85326515266047],[-5.743857438574366,56.854953729930344],[-5.783457834578343,56.860019461739995],[-5.776257762577615,56.8701509253593],[-5.736657366573667,56.89379100713765],[-5.779857798577979,56.8988567389473],[-5.873458734587331,56.887036698058125],[-5.920259202592007,56.89379100713765],[-5.887858878588787,56.8988567389473],[-5.851858518585175,56.900545316217176],[-5.851858518585175,56.9072996252967],[-5.859058590585903,56.91067677983648],[-5.880658806588059,56.922496820725655],[-5.862658626586267,56.93431686161483],[-5.851858518585175,56.95457978885344],[-5.841058410584111,56.97821987063179],[-5.830258302583019,56.99679422060049],[-5.815858158581591,57.01030283875954],[-5.787057870578707,57.020434302378845],[-5.754657546575459,57.02718861145837],[-5.7294572945729385,57.02381145691862],[-5.718657186571846,57.0170571478391],[-5.700657006570054,56.998482797870366],[-5.689856898568991,56.99003991152097],[-5.675456754567534,56.98328560244144],[-5.657456574565742,56.979908447901664],[-5.625056250562494,56.976531293361916],[-5.57105571055709,56.98328560244144],[-5.524255242552414,56.99679422060049],[-5.524255242552414,57.00354852968002],[-5.53865538655387,57.00185995241014],[-5.556655566555662,56.99679422060049],[-5.57105571055709,56.993417066060715],[-5.585455854558546,56.99679422060049],[-5.607056070560702,56.98835133425109],[-5.628656286562858,56.99172848879084],[-5.650256502565014,57.00017137514027],[-5.67185671856717,57.00354852968002],[-5.6862568625686265,57.01030283875954],[-5.682656826568262,57.02212287964875],[-5.679056790567898,57.0356314978078],[-5.700657006570054,57.0440743841572],[-5.711457114571147,57.0440743841572],[-5.733057330573303,57.03900865234755],[-5.743857438574366,57.03732007507767],[-5.7510575105750945,57.04069722961745],[-5.769057690576886,57.04914011596685],[-5.779857798577979,57.05251727050663],[-5.790657906579071,57.05927157958615],[-5.776257762577615,57.07615735228498],[-5.733057330573303,57.104863165872985],[-5.72225722257221,57.11668320676216],[-5.715057150571511,57.12006036130194],[-5.704257042570418,57.12006036130194],[-5.675456754567534,57.118371784032036],[-5.6646566465664705,57.12343751584169],[-5.64665646656465,57.13019182492124],[-5.62145621456213,57.12343751584169],[-5.578255782557818,57.10655174314286],[-5.556655566555662,57.09979743406333],[-5.459454594545946,57.09979743406333],[-5.455854558545582,57.10317458860311],[-5.448654486544854,57.109928897682636],[-5.430654306543062,57.109928897682636],[-5.41265412654127,57.10824032041276],[-5.405454054540542,57.10655174314286],[-5.4018540185401775,57.10655174314286],[-5.4018540185401775,57.11330605222241],[-5.4198541985419695,57.12006036130194],[-5.502655026550258,57.11330605222241],[-5.527855278552778,57.10824032041276],[-5.542255422554206,57.10655174314286],[-5.549455494554934,57.109928897682636],[-5.574655746557454,57.12850324765134],[-5.585455854558546,57.13356897946099],[-5.668256682566806,57.14707759762004],[-5.682656826568262,57.15720906123934],[-5.675456754567534,57.17578341120807],[-5.63945639456395,57.202800647526175],[-5.625056250562494,57.216309265685254],[-5.643056430564286,57.23319503838408],[-5.62145621456213,57.251769388352784],[-5.578255782557818,57.26696658378174],[-5.542255422554206,57.270343738321486],[-5.509855098550986,57.256835120162435],[-5.481054810548102,57.23657219292383],[-5.4450544505444896,57.22306357476478],[-5.405454054540542,57.229817883844305],[-5.405454054540542,57.23657219292383],[-5.448654486544854,57.24163792473348],[-5.459454594545946,57.24670365654313],[-5.473854738547374,57.26190085197209],[-5.484654846548466,57.26865516105161],[-5.491854918549166,57.270343738321486],[-5.502655026550258,57.27709804740101],[-5.48825488254883,57.292295242829965],[-5.46305463054631,57.305803860989016],[-5.4414544145441255,57.31255817006857],[-5.4414544145441255,57.319312479148095],[-5.466654666546646,57.32437821095775],[-5.481054810548102,57.31593532460832],[-5.49545495454953,57.30411528371914],[-5.506255062550622,57.297360974639616],[-5.524255242552414,57.29567239736974],[-5.560255602556026,57.28216377921066],[-5.578255782557818,57.27709804740101],[-5.599855998559974,57.278786624670914],[-5.635856358563586,57.28891808829019],[-5.657456574565742,57.29060666556009],[-5.700657006570054,57.283852356480566],[-5.72225722257221,57.283852356480566],[-5.7294572945729385,57.297360974639616],[-5.725857258572574,57.30073812917939],[-5.700657006570054,57.332821097307146],[-5.693456934569326,57.3378868291168],[-5.67185671856717,57.34464113819632],[-5.6646566465664705,57.349706870005974],[-5.653856538565378,57.354772601815625],[-5.64665646656465,57.349706870005974],[-5.643056430564286,57.34295256092645],[-5.635856358563586,57.33957540638667],[-5.61425614256143,57.341263983656575],[-5.502655026550258,57.37165837451445],[-5.455854558545582,57.39360987902293],[-5.448654486544854,57.42231569261094],[-5.466654666546646,57.42400426988081],[-5.491854918549166,57.408807074451886],[-5.53865538655387,57.37334695178433],[-5.56385563855639,57.363215488165054],[-5.585455854558546,57.36490406543493],[-5.610656106561066,57.37165837451445],[-5.63945639456395,57.37334695178433],[-5.61425614256143,57.381789838133756],[-5.607056070560702,57.38854414721328],[-5.610656106561066,57.39698703356268],[-5.617856178561766,57.41049565172176],[-5.617856178561766,57.417249960801286],[-5.625056250562494,57.417249960801286],[-5.63945639456395,57.408807074451886],[-5.7078570785707825,57.35983833362528],[-5.733057330573303,57.35308402454575],[-5.783457834578343,57.3480182927361],[-5.808658086580863,57.354772601815625],[-5.826658266582655,57.39360987902293],[-5.823058230582291,57.39360987902293],[-5.815858158581591,57.39529845629281],[-5.812258122581227,57.39867561083258],[-5.812258122581227,57.40036418810246],[-5.812258122581227,57.403741342642235],[-5.823058230582291,57.412184228991634],[-5.826658266582655,57.41556138353141],[-5.826658266582655,57.42907000169046],[-5.823058230582291,57.43582431076999],[-5.812258122581227,57.44257861984951],[-5.823058230582291,57.44595577438929],[-5.851858518585175,57.45102150619894],[-5.859058590585903,57.452710083468816],[-5.862658626586267,57.46284154708812],[-5.869858698586967,57.48141589705682],[-5.873458734587331,57.493235937946],[-5.869858698586967,57.501678824295425],[-5.855458554585539,57.51856459699425],[-5.851858518585175,57.523630328803904],[-5.851858518585175,57.53882752423283],[-5.851858518585175,57.550647565122006],[-5.848258482584811,57.559090451471434],[-5.830258302583019,57.559090451471434],[-5.833858338583383,57.564156183281085],[-5.837458374583747,57.57428764690039],[-5.837458374583747,57.57935337871004],[-5.823058230582291,57.58273053324979],[-5.805058050580499,57.58104195597991],[-5.787057870578707,57.57597622417026],[-5.733057330573303,57.54558183331238],[-5.715057150571511,57.53882752423283],[-5.7078570785707825,57.542204678772606],[-5.689856898568991,57.528696060613555],[-5.682656826568262,57.523630328803904],[-5.650256502565014,57.51181028791473],[-5.63945639456395,57.51181028791473],[-5.64665646656465,57.51687601972438],[-5.64665646656465,57.521941751534],[-5.650256502565014,57.52700748334365],[-5.653856538565378,57.532073215153304],[-5.581855818558182,57.53882752423283],[-5.53865538655387,57.533761792423206],[-5.517055170551686,57.53545036969308],[-5.51345513455135,57.542204678772606],[-5.542255422554206,57.55571329693166],[-5.58905589055891,57.56077902874131],[-5.632256322563222,57.55740187420156],[-5.661056610566106,57.54389325604248],[-5.693456934569326,57.56584476055096],[-5.689856898568991,57.569221915090736],[-5.682656826568262,57.57935337871004],[-5.715057150571511,57.58273053324979],[-5.733057330573303,57.59792772867874],[-5.743857438574366,57.61819065591732],[-5.761857618576187,57.63338785134627],[-5.779857798577979,57.63676500588605],[-5.7942579425794065,57.63845358315592],[-5.805058050580499,57.6418307376957],[-5.812258122581227,57.65533935585475],[-5.805058050580499,57.667159396743926],[-5.783457834578343,57.6789794376331],[-5.790657906579071,57.689110901252405],[-5.790657906579071,57.69586521033193],[-5.754657546575459,57.70768525122111],[-5.733057330573303,57.70768525122111],[-5.704257042570418,57.69079947852228],[-5.693456934569326,57.69079947852228],[-5.682656826568262,57.69924236487171],[-5.675456754567534,57.70937382849098],[-5.6862568625686265,57.711062405760885],[-5.693456934569326,57.716128137570536],[-5.69705697056969,57.72288244665006],[-5.7078570785707825,57.72963675572959],[-5.72225722257221,57.733013910269364],[-5.805058050580499,57.74314537388864],[-5.808658086580863,57.754965414777814],[-5.801458014580135,57.78029407382607],[-5.805058050580499,57.79211411471525],[-5.801458014580135,57.80055700106465],[-5.808658086580863,57.82081992830325],[-5.812258122581227,57.83263996919243],[-5.808658086580863,57.844460010081605],[-5.801458014580135,57.85290289643103],[-5.790657906579071,57.86134578278043],[-5.776257762577615,57.86810009185996],[-5.7510575105750945,57.87316582366961],[-5.725857258572574,57.87316582366961],[-5.69705697056969,57.86978866912986],[-5.675456754567534,57.85965720551056],[-5.679056790567898,57.84614858735148],[-5.675456754567534,57.82757423738278],[-5.668256682566806,57.8073113101442],[-5.661056610566106,57.79211411471525],[-5.650256502565014,57.781982651095944],[-5.635856358563586,57.773539764746545],[-5.62145621456213,57.77016261020677],[-5.607056070560702,57.77016261020677],[-5.61425614256143,57.77522834201642],[-5.617856178561766,57.78029407382607],[-5.625056250562494,57.79211411471525],[-5.61425614256143,57.79211411471525],[-5.603456034560338,57.79042553744537],[-5.585455854558546,57.78535980563572],[-5.592655926559246,57.80393415560442],[-5.585455854558546,57.81913135103338],[-5.585455854558546,57.830951391922554],[-5.599855998559974,57.84614858735148],[-5.635856358563586,57.866411514590084],[-5.650256502565014,57.87823155547926],[-5.63945639456395,57.88836301909856],[-5.64665646656465,57.88836301909856],[-5.650256502565014,57.89005159636844],[-5.653856538565378,57.89511732817809],[-5.643056430564286,57.903560214527516],[-5.62145621456213,57.920445987226344],[-5.61425614256143,57.928888873575744],[-5.599855998559974,57.91875740995644],[-5.58905589055891,57.91538025541669],[-5.549455494554934,57.91538025541669],[-5.556655566555662,57.88836301909856],[-5.527855278552778,57.86810009185996],[-5.48825488254883,57.85628005097078],[-5.455854558545582,57.85290289643103],[-5.459454594545946,57.85965720551056],[-5.448654486544854,57.86978866912986],[-5.43785437854379,57.898494482717865],[-5.427054270542698,57.90862594633714],[-5.416254162541605,57.90862594633714],[-5.369453694536929,57.89680590544796],[-5.3550535505355015,57.89174017363831],[-5.326253262532617,57.87316582366961],[-5.293852938529369,57.86134578278043],[-5.221852218522173,57.84614858735148],[-5.236252362523629,57.86134578278043],[-5.247052470524693,57.866411514590084],[-5.275852758527577,57.87485440093948],[-5.319053190531889,57.898494482717865],[-5.383853838538386,57.91369167814679],[-5.394653946539449,57.91875740995644],[-5.394653946539449,57.92382314176609],[-5.3982539825398135,57.92551171903597],[-5.3982539825398135,57.928888873575744],[-5.394653946539449,57.93564318265527],[-5.38745387453875,57.93564318265527],[-5.3802538025380215,57.93226602811552],[-5.373053730537293,57.93057745084562],[-5.365853658536565,57.942397491734795],[-5.347853478534773,57.937331759925144],[-5.319053190531889,57.91538025541669],[-5.297452974529733,57.90862594633714],[-5.286652866528669,57.90862594633714],[-5.268652686526849,57.91369167814679],[-5.257852578525785,57.91538025541669],[-5.243452434524329,57.91369167814679],[-5.221852218522173,57.903560214527516],[-5.211052110521109,57.901871637257614],[-5.200252002520017,57.898494482717865],[-5.160651606516069,57.87823155547926],[-5.121051210512093,57.86810009185996],[-5.0922509225092085,57.841082855541856],[-5.0706507065070525,57.83263996919243],[-5.077850778507781,57.83770570100208],[-5.085050850508509,57.84783716462138],[-5.088650886508873,57.857968628240684],[-5.0922509225092085,57.86472293732021],[-5.095850958509573,57.871477246399735],[-5.196651966519653,57.91706883268657],[-5.221852218522173,57.92213456449622],[-5.221852218522173,57.928888873575744],[-5.200252002520017,57.928888873575744],[-5.193051930519289,57.93564318265527],[-5.196651966519653,57.947463223544446],[-5.203852038520381,57.960971841703525],[-5.218252182521809,57.96603757351318],[-5.250652506525057,57.969414728052925],[-5.261452614526149,57.97616903713245],[-5.293852938529369,57.9812347689421],[-5.3334533345333455,58.00825200526023],[-5.3586535865358655,58.01162915980001],[-5.3586535865358655,58.01331773706988],[-5.3550535505355015,58.01500631433976],[-5.351453514535137,58.01669489160963],[-5.365853658536565,58.02851493249884],[-5.38745387453875,58.031892087038585],[-5.427054270542698,58.031892087038585],[-5.4234542345423336,58.03526924157836],[-5.4234542345423336,58.03864639611811],[-5.4198541985419695,58.04202355065789],[-5.41265412654127,58.045400705197636],[-5.41265412654127,58.05215501427719],[-5.448654486544854,58.08423798240494],[-5.427054270542698,58.09774660056402],[-5.391053910539085,58.09268086875437],[-5.365853658536565,58.06566363243624],[-5.344253442534409,58.07579509605554],[-5.322653226532253,58.072417941515766],[-5.301053010530097,58.07072936424589],[-5.275852758527577,58.085926559674846],[-5.283052830528305,58.085926559674846],[-5.279452794527941,58.09605802329412],[-5.279452794527941,58.10618948691342],[-5.283052830528305,58.11294379599295],[-5.290252902529005,58.121386682342376],[-5.275852758527577,58.121386682342376],[-5.275852758527577,58.1281409914219],[-5.297452974529733,58.13489530050143],[-5.283052830528305,58.13996103231108],[-5.254252542525421,58.143338186850855],[-5.243452434524329,58.148403918660506],[-5.243452434524329,58.15515822774003],[-5.275852758527577,58.15515822774003],[-5.290252902529005,58.156846805009906],[-5.304653046530461,58.16191253681956],[-5.297452974529733,58.16866684589908],[-5.304653046530461,58.17373257770873],[-5.3118531185311895,58.17710973224851],[-5.322653226532253,58.18048688678826],[-5.329853298532981,58.18217546405816],[-5.329853298532981,58.187241195867784],[-5.326253262532617,58.19906123675699],[-5.322653226532253,58.20243839129674],[-5.3370533705337095,58.20243839129674],[-5.347853478534773,58.20750412310639],[-5.394653946539449,58.24465282304382],[-5.391053910539085,58.26153859574262],[-5.3766537665376575,58.2649157502824],[-5.351453514535137,58.25816144120287],[-5.3118531185311895,58.24296424577392],[-5.293852938529369,58.241275668504045],[-5.275852758527577,58.24296424577392],[-5.236252362523629,58.25816144120287],[-5.214652146521445,58.26153859574262],[-5.193051930519289,58.25985001847275],[-5.171451714517133,58.25140713212335],[-5.164251642516433,58.25816144120287],[-5.153451534515341,58.2649157502824],[-5.139051390513913,58.26998148209205],[-5.128251282512821,58.271670059361924],[-5.110251102511029,58.268292904822175],[-5.081450814508145,58.254784286663096],[-5.0670506705066884,58.25140713212335],[-5.016650166501648,58.25309570939322],[-5.00225002250022,58.25140713212335],[-4.933849338493388,58.22270131853534],[-4.944649446494452,58.23283278215462],[-4.955449554495544,58.23958709123417],[-4.980649806498064,58.25140713212335],[-4.969849698496972,58.256472863933],[-4.941049410494088,58.25985001847275],[-4.92664926649266,58.2649157502824],[-4.991449914499128,58.271670059361924],[-5.009450094500949,58.271670059361924],[-5.016650166501648,58.268292904822175],[-5.031050310503105,58.25985001847275],[-5.038250382503833,58.25816144120287],[-5.0490504905048965,58.25985001847275],[-5.0706507065070525,58.26998148209205],[-5.081450814508145,58.271670059361924],[-5.095850958509573,58.276735791171575],[-5.124651246512457,58.30037587294993],[-5.135451354513549,58.30544160475958],[-5.139051390513913,58.308818759299356],[-5.157051570515705,58.32401595472828],[-5.160651606516069,58.32739310926806],[-5.167851678516769,58.339213150157235],[-5.171451714517133,58.34596745923676],[-5.171451714517133,58.35441034558619],[-5.153451534515341,58.35441034558619],[-5.164251642516433,58.36454180920549],[-5.164251642516433,58.374673272824765],[-5.157051570515705,58.38480473644407],[-5.146251462514613,58.39493620006337],[-5.146251462514613,58.40000193187302],[-5.146251462514613,58.40675624095255],[-5.146251462514613,58.4118219727622],[-5.142651426514249,58.415199127301975],[-5.135451354513549,58.41351055003207],[-5.121051210512093,58.41013339549232],[-5.117451174511729,58.40844481822242],[-5.056250562505625,58.38649331371394],[-5.016650166501648,58.388181890983844],[-5.0454504545045324,58.40000193187302],[-5.052650526505261,58.40675624095255],[-5.0490504905048965,58.415199127301975],[-5.056250562505625,58.4219534363815],[-5.0670506705066884,58.41688770457185],[-5.077850778507781,58.415199127301975],[-5.085050850508509,58.41351055003207],[-5.099450994509937,58.415199127301975],[-5.099450994509937,58.4219534363815],[-5.088650886508873,58.4219534363815],[-5.085050850508509,58.4219534363815],[-5.085050850508509,58.428707745461026],[-5.0922509225092085,58.4303963227309],[-5.095850958509573,58.432084900000774],[-5.106651066510665,58.437150631810425],[-5.0490504905048965,58.45403640450925],[-5.023850238502376,58.44728209542973],[-4.995049950499492,58.437150631810425],[-5.106651066510665,58.48780794990691],[-5.106651066510665,58.50638229987564],[-5.103051030510301,58.51482518622504],[-5.095850958509573,58.518202340764816],[-5.041850418504168,58.535088113463644],[-5.0274502745027405,58.54353099981304],[-5.016650166501648,58.558728195242],[-5.023850238502376,58.558728195242],[-5.016650166501648,58.580679699750476],[-5.013050130501313,58.60094262698905],[-5.0058500585005845,58.61782839968788],[-4.987849878498793,58.62795986330718],[-4.858248582485828,58.61276266787823],[-4.836648366483672,58.60431978152883],[-4.818648186481852,58.59249974063965],[-4.818648186481852,58.58743400883],[-4.811448114481152,58.57223681340105],[-4.807848078480788,58.558728195242],[-4.804248042480424,58.558728195242],[-4.804248042480424,58.548596731622695],[-4.807848078480788,58.54015384527327],[-4.811448114481152,58.53171095892387],[-4.818648186481852,58.52495664984434],[-4.80064800648006,58.53171095892387],[-4.793447934479332,58.54184242254317],[-4.789847898478968,58.55197388616247],[-4.789847898478968,58.562105349781746],[-4.786247862478632,58.5773025452107],[-4.77544775447754,58.584056854290225],[-4.771847718477176,58.59081116336975],[-4.77544775447754,58.60769693606858],[-4.757447574475748,58.59925404971918],[-4.728647286472864,58.5773025452107],[-4.710647106471072,58.57223681340105],[-4.681846818468188,58.562105349781746],[-4.671046710467095,58.558728195242],[-4.660246602466032,58.55535104070222],[-4.660246602466032,58.54690815435282],[-4.663846638466367,58.53846526800339],[-4.667446674466731,58.53171095892387],[-4.6782467824678236,58.52326807257447],[-4.714247142471407,58.50638229987564],[-4.732247322473228,58.48105364082738],[-4.75024750247502,58.46079071358881],[-4.761047610476112,58.44728209542973],[-4.743047430474292,58.4489706726996],[-4.681846818468188,58.48443079536716],[-4.6746467464674595,58.48780794990691],[-4.667446674466731,58.50300514533586],[-4.649446494464939,58.50975945441539],[-4.6314463144631475,58.51482518622504],[-4.613446134461327,58.52495664984434],[-4.602646026460263,58.54184242254317],[-4.595445954459535,58.56041677251187],[-4.584645846458471,58.57392539067092],[-4.559445594455951,58.580679699750476],[-4.516245162451611,58.575613967940825],[-4.476644766447663,58.56548250432152],[-4.426244262442623,58.54690815435282],[-4.426244262442623,58.53846526800339],[-4.426244262442623,58.535088113463644],[-4.429844298442987,58.535088113463644],[-4.426244262442623,58.52495664984434],[-4.451444514445143,58.50975945441539],[-4.465844658446571,58.491185104446686],[-4.476644766447663,58.47092217720808],[-4.494644946449455,58.4489706726996],[-4.476644766447663,58.45403640450925],[-4.462244622446207,58.46247929085868],[-4.433444334443351,58.48443079536716],[-4.433444334443351,58.48780794990691],[-4.433444334443351,58.49287368171656],[-4.433444334443351,58.49625083625634],[-4.429844298442987,58.49793941352621],[-4.426244262442623,58.499627990796085],[-4.3866438664386465,58.521579495304564],[-4.383043830438311,58.52495664984434],[-4.3434434344343344,58.53846526800339],[-4.318243182431814,58.54521957708292],[-4.307443074430751,58.54690815435282],[-4.285842858428566,58.54353099981304],[-4.25704257042571,58.52833380438409],[-4.235442354423526,58.52495664984434],[-4.249842498424982,58.53171095892387],[-4.23904239042389,58.53677669073352],[-4.23184231842319,58.54184242254317],[-4.228242282422826,58.548596731622695],[-4.221042210422098,58.55197388616247],[-4.210242102421006,58.553662463432346],[-4.192241922419214,58.548596731622695],[-4.177841778417786,58.54690815435282],[-4.167041670416694,58.548596731622695],[-4.159841598415966,58.562105349781746],[-4.149041490414902,58.56548250432152],[-4.109441094410926,58.56548250432152],[-4.091440914409134,58.562105349781746],[-4.08064080640807,58.562105349781746],[-4.069840698406978,58.56548250432152],[-4.06264062640625,58.57223681340105],[-4.048240482404822,58.589122586099876],[-4.041040410404094,58.59249974063965],[-4.03024030240303,58.59418831790953],[-4.03024030240303,58.5958768951794],[-4.026640266402666,58.59249974063965],[-4.008640086400845,58.57392539067092],[-4.00504005040051,58.570548236131174],[-3.9798397983979896,58.57223681340105],[-3.8970389703897013,58.56548250432152],[-3.810638106381049,58.57223681340105],[-3.767437674376737,58.584056854290225],[-3.6990369903699047,58.611074090608355],[-3.6594365943659284,58.62120555422766],[-3.5982359823598244,58.62795986330718],[-3.5658356583565762,58.62627128603731],[-3.5442354423544202,58.62120555422766],[-3.5514355143551484,58.616139822418006],[-3.555035550355484,58.61445124514813],[-3.533435334353328,58.60263120425893],[-3.504635046350444,58.60263120425893],[-3.447034470344704,58.61445124514813],[-3.3930339303393,58.60094262698905],[-3.3642336423364156,58.60094262698905],[-3.349833498334988,58.62120555422766],[-3.3678336783367797,58.624582708767406],[-3.3858338583385716,58.63133701784696],[-3.4038340383403636,58.641468481466234],[-3.414634146341456,58.65497709962531],[-3.3894338943389357,58.67186287232414],[-3.375033750337508,58.67692860413379],[-3.3570335703356875,58.67524002686389],[-3.3534335343353234,58.67017429505424],[-3.3534335343353234,58.660042831434964],[-3.3462334623346237,58.651599945085536],[-3.3390333903338956,58.64822279054576],[-3.3102331023310114,58.64822279054576],[-3.2454324543245434,58.65835425416506],[-3.205832058320567,58.66173140870484],[-3.151831518315163,58.641468481466234],[-3.119431194311943,58.641468481466234],[-3.0546305463054466,58.64822279054576],[-3.0186301863018628,58.63977990419636],[-3.025830258302591,58.62289413149753],[-3.043830438304383,58.60094262698905],[-3.047430474304747,58.58743400883],[-3.0618306183061748,58.57899112248057],[-3.0762307623076026,58.56041677251187],[-3.0834308343083308,58.55197388616247],[-3.112231122311215,58.53846526800339],[-3.119431194311943,58.53171095892387],[-3.130231302313007,58.513136608955165],[-3.130231302313007,58.49625083625634],[-3.119431194311943,58.48443079536716],[-3.097830978309787,58.477676486287635],[-3.0834308343083308,58.477676486287635],[-3.072630726307267,58.48105364082738],[-3.065430654306539,58.48274221809726],[-3.0582305823058107,58.477676486287635],[-3.0546305463054466,58.46585644539843],[-3.0582305823058107,58.45741355904903],[-3.065430654306539,58.450659249969505],[-3.0762307623076026,58.4489706726996],[-3.087030870308695,58.41351055003207],[-3.130231302313007,58.369607541015114],[-3.184231842318411,58.32908168653793],[-3.2202322023220233,58.30544160475958],[-3.2634326343263353,58.29193298660053],[-3.349833498334988,58.276735791171575],[-3.3858338583385716,58.2649157502824],[-3.439834398343976,58.236209936694394],[-3.447034470344704,58.22607847307509],[-3.4542345423454037,58.210881277646166],[-3.472234722347224,58.19399550494734],[-3.515435154351536,58.16866684589908],[-3.7350373503734886,58.072417941515766],[-3.810638106381049,58.05215501427719],[-3.828638286382869,58.04202355065789],[-3.835838358383569,58.031892087038585],[-3.846638466384661,58.01162915980001],[-3.850238502385025,58.00318627345058],[-3.861038610386089,57.99812054164093],[-3.886238862388609,57.991366232561404],[-3.9186391863918573,57.98798907802163],[-3.9798397983979896,57.964348996243274],[-3.9906399063990534,57.960971841703525],[-3.9978399783997816,57.95421753262397],[-4.001440014400146,57.94577464627457],[-4.001440014400146,57.93564318265527],[-4.019440194401938,57.94070891446492],[-4.023040230402302,57.942397491734795],[-4.0158401584015735,57.94915180081435],[-4.03024030240303,57.9525289553541],[-4.05544055440555,57.95421753262397],[-4.084240842408406,57.964348996243274],[-4.08784087840877,57.960971841703525],[-4.08784087840877,57.9525289553541],[-4.077040770407706,57.942397491734795],[-4.06264062640625,57.937331759925144],[-4.03024030240303,57.93564318265527],[-4.0158401584015735,57.93226602811552],[-4.008640086400845,57.92720029630587],[-3.9870398703986893,57.90862594633714],[-4.008640086400845,57.89005159636844],[-4.012240122401209,57.879920132749135],[-4.008640086400845,57.86810009185996],[-4.026640266402666,57.86810009185996],[-4.05544055440555,57.87485440093948],[-4.069840698406978,57.87485440093948],[-4.08064080640807,57.86978866912986],[-4.098640986409862,57.857968628240684],[-4.10584105841059,57.85290289643103],[-4.134641346413446,57.85459147370091],[-4.18864188641885,57.86978866912986],[-4.217442174421734,57.87485440093948],[-4.300243002430022,57.86303436005031],[-4.3218432184321784,57.871477246399735],[-4.354243542435427,57.89511732817809],[-4.372243722437219,57.90524879179739],[-4.393843938439375,57.90862594633714],[-4.33984339843397,57.866411514590084],[-4.307443074430751,57.85121431916113],[-4.267842678426774,57.84614858735148],[-4.228242282422826,57.857968628240684],[-4.20664206642067,57.85965720551056],[-4.192241922419214,57.849525741891256],[-4.174241742417422,57.83939427827195],[-4.149041490414902,57.82926281465265],[-4.134641346413446,57.830951391922554],[-4.13824138241381,57.84614858735148],[-4.073440734407342,57.822508505573126],[-4.041040410404094,57.817442773763474],[-3.9834398343983253,57.84277143281173],[-3.9510395103951055,57.83770570100208],[-3.933039330393285,57.8258856601129],[-3.9474394743947414,57.81237704195382],[-3.915039150391493,57.8073113101442],[-3.8790387903879093,57.817442773763474],[-3.843038430384297,57.8343285464623],[-3.814238142381413,57.85628005097078],[-3.799837998379985,57.866411514590084],[-3.7854378543785288,57.86472293732021],[-3.778237782377829,57.85628005097078],[-3.7818378183781647,57.83939427827195],[-3.789037890378893,57.830951391922554],[-3.9258392583925854,57.73470248753924],[-3.9474394743947414,57.724571023919935],[-3.9762397623976256,57.702619519411456],[-3.9870398703986893,57.69586521033193],[-4.008640086400845,57.69417663306206],[-4.023040230402302,57.697553787601805],[-4.03024030240303,57.70768525122111],[-4.0158401584015735,57.72288244665006],[-4.044640446404458,57.738079642078986],[-4.077040770407706,57.72963675572959],[-4.15624156241563,57.692488055792154],[-4.167041670416694,57.689110901252405],[-4.192241922419214,57.689110901252405],[-4.260642606426046,57.6789794376331],[-4.278642786427866,57.68066801490298],[-4.293042930429294,57.68066801490298],[-4.3038430384303865,57.6688479740138],[-4.307443074430751,57.65533935585475],[-4.3254432544325425,57.648585046775224],[-4.33984339843397,57.64520789223545],[-4.404644046440467,57.60974776956792],[-4.4118441184411665,57.60299346048839],[-4.419044190441895,57.59286199686909],[-4.429844298442987,57.577664801440136],[-4.422644226442259,57.57597622417026],[-4.408244082440831,57.58273053324979],[-4.379443794437947,57.58948484232931],[-4.3650436504364905,57.59792772867874],[-4.350643506435063,57.60805919229804],[-4.33984339843397,57.61650207864744],[-4.329043290432907,57.626633542266745],[-4.2822428224282305,57.6418307376957],[-4.246242462424618,57.66378224220415],[-4.203042030420306,57.675602283093326],[-4.192241922419214,57.675602283093326],[-4.18144181441815,57.67222512855358],[-4.170641706417058,57.66378224220415],[-4.120241202412018,57.657027933124624],[-4.095040950409498,57.6587165103945],[-4.08064080640807,57.66547081947405],[-4.069840698406978,57.67222512855358],[-4.023040230402302,57.68742232398253],[-4.008640086400845,57.689110901252405],[-4.00504005040051,57.675602283093326],[-4.026640266402666,57.65533935585475],[-4.05544055440555,57.635076428616145],[-4.084240842408406,57.62325638772697],[-4.120241202412018,57.59286199686909],[-4.116641166411654,57.58779626505944],[-4.11304113041129,57.58441911051966],[-4.109441094410926,57.58104195597991],[-4.10584105841059,57.57935337871004],[-4.152641526415266,57.577664801440136],[-4.170641706417058,57.57091049236061],[-4.18864188641885,57.559090451471434],[-4.177841778417786,57.54895898785213],[-4.185041850418486,57.54895898785213],[-4.20664206642067,57.55233614239191],[-4.26424264242641,57.55233614239191],[-4.26424264242641,57.54389325604248],[-4.235442354423526,57.54558183331238],[-4.221042210422098,57.54389325604248],[-4.20664206642067,57.53882752423283],[-4.224642246422462,57.515187442454476],[-4.23904239042389,57.50505597883517],[-4.249842498424982,57.49830166975565],[-4.21384213842137,57.49154736067612],[-4.195841958419578,57.49154736067612],[-4.174241742417422,57.49830166975565],[-4.15624156241563,57.50843313337495],[-4.149041490414902,57.515187442454476],[-4.149041490414902,57.51856459699425],[-4.127441274412746,57.51856459699425],[-4.116641166411654,57.521941751534],[-4.098640986409862,57.537138946962955],[-4.084240842408406,57.54389325604248],[-4.066240662406614,57.550647565122006],[-4.051840518405186,57.55233614239191],[-4.033840338403365,57.55740187420156],[-4.048240482404822,57.567533337820834],[-4.084240842408406,57.586107687789564],[-4.05544055440555,57.58441911051966],[-3.9654396543965333,57.59286199686909],[-3.868238682386817,57.58779626505944],[-3.835838358383569,57.59286199686909],[-3.6846368463684485,57.653650778584876],[-3.6234362343623445,57.662093664934275],[-3.6342363423634083,57.6502736240451],[-3.6378363783637724,57.64689646950532],[-3.6450364503645005,57.6418307376957],[-3.6342363423634083,57.635076428616145],[-3.6198361983619805,57.63676500588605],[-3.605436054360524,57.640142160425796],[-3.5910359103590963,57.6418307376957],[-3.6126361263612523,57.6688479740138],[-3.5730357303573044,57.6604050876644],[-3.555035550355484,57.6604050876644],[-3.537035370353692,57.662093664934275],[-3.5226352263522642,57.667159396743926],[-3.504635046350444,57.6789794376331],[-3.497434974349744,57.69079947852228],[-3.5010350103501082,57.702619519411456],[-3.490234902349016,57.71275098303076],[-3.483034830348288,57.71443956030063],[-3.472234722347224,57.711062405760885],[-3.461434614346132,57.70937382849098],[-3.447034470344704,57.71275098303076],[-3.421834218342184,57.72119386938016],[-3.4074340743407276,57.72288244665006],[-3.2850328503284913,57.72119386938016],[-3.209432094320931,57.69417663306206],[-3.0798307983079667,57.6688479740138],[-3.0366303663036547,57.6688479740138],[-2.9934299342993427,57.675602283093326],[-2.9322293222932103,57.69924236487171],[-2.9178291782917825,57.702619519411456],[-2.759427594275934,57.702619519411456],[-2.7522275222752057,57.70093094214158],[-2.741427414274142,57.69079947852228],[-2.7306273062730497,57.689110901252405],[-2.719827198271986,57.69079947852228],[-2.712627126271258,57.69417663306206],[-2.7018270182701656,57.69417663306206],[-2.694626946269466,57.689110901252405],[-2.6586265862658536,57.697553787601805],[-2.5722257222572296,57.68066801490298],[-2.5434254342543454,57.68235659217288],[-2.525425254252525,57.6688479740138],[-2.5182251822518253,57.6705365512837],[-2.511025110251097,57.67729086036323],[-2.4966249662496693,57.68235659217288],[-2.478624786247849,57.68066801490298],[-2.431824318243173,57.6688479740138],[-2.4246242462424448,57.675602283093326],[-2.417424174241745,57.67391370582345],[-2.410224102241017,57.6688479740138],[-2.3994239942399247,57.6688479740138],[-2.385023850238497,57.67222512855358],[-2.370623706237069,57.68066801490298],[-2.3598235982359768,57.68235659217288],[-2.341823418234185,57.675602283093326],[-2.3274232742327285,57.67391370582345],[-2.3238232382323645,57.6789794376331],[-2.320223202232029,57.684045169442754],[-2.3130231302313007,57.689110901252405],[-2.3058230582305725,57.69417663306206],[-2.2950229502295088,57.69586521033193],[-2.2734227342273243,57.69417663306206],[-2.2302223022230123,57.6789794376331],[-2.2086220862208563,57.675602283093326],[-2.1834218342183362,57.6789794376331],[-2.125821258212568,57.702619519411456],[-2.107821078210776,57.70430809668133],[-1.9962199621996035,57.702619519411456],[-1.9962199621996035,57.69924236487171],[-1.9926199261992679,57.69079947852228],[-1.9818198181981757,57.68066801490298],[-1.9746197461974475,57.675602283093326],[-1.9602196021960197,57.67391370582345],[-1.9458194581945634,57.68235659217288],[-1.9314193141931355,57.68235659217288],[-1.9242192421924074,57.6789794376331],[-1.9134191341913436,57.66547081947405],[-1.8306183061830552,57.613124924107666],[-1.819818198181963,57.59623915140884],[-1.8162181621816273,57.577664801440136],[-1.8126181261812633,57.56077902874131],[-1.794617946179443,57.54389325604248],[-1.794617946179443,57.53882752423283],[-1.801818018180171,57.52531890607378],[-1.7910179101791073,57.515187442454476],[-1.7622176221762231,57.49830166975565],[-1.776617766177651,57.496613092485774],[-1.7838178381783791,57.488170206136346],[-1.780217802178015,57.479727319786946],[-1.773017730177287,57.47635016524717],[-1.758617586175859,57.47297301070742],[-1.7658176581765872,57.46790727889777],[-1.7874178741787432,57.45608723800859],[-1.8306183061830552,57.425692847150685],[-1.8486184861848471,57.408807074451886],[-1.8486184861848471,57.39360987902293],[-1.9530195301952915,57.341263983656575],[-1.9818198181981757,57.319312479148095],[-2.043020430204308,57.22644072930453],[-2.068220682206828,57.17409483393817],[-2.075420754207528,57.153831906699594],[-2.0718207182071637,57.13525755673086],[-2.053820538205372,57.126814670381464],[-2.0502205022050077,57.118371784032036],[-2.064620646206464,57.09979743406333],[-2.154621546215452,57.020434302378845],[-2.1870218702187003,56.984974179711315],[-2.201422014220128,56.949514057043785],[-2.197821978219764,56.94107117069436],[-2.1906219062190644,56.93431686161483],[-2.1870218702187003,56.927562552535306],[-2.1870218702187003,56.914053934376255],[-2.1906219062190644,56.908988202566604],[-2.2086220862208563,56.895479584407525],[-2.2122221222212204,56.890413852597874],[-2.2194221942219485,56.87183950262917],[-2.2338223382233764,56.86170803900987],[-2.2698226982269887,56.846510843580944],[-2.2950229502295088,56.824559339072465],[-2.320223202232029,56.80091925729411],[-2.3346233462334567,56.79078779367481],[-2.392223922239225,56.770524866436205],[-2.410224102241017,56.762081980086805],[-2.4246242462424448,56.7519505164675],[-2.435424354243537,56.740130475578326],[-2.439024390243901,56.735064743768675],[-2.453424534245329,56.69116173475172],[-2.464224642246421,56.67934169386254],[-2.478624786247849,56.66921023024324],[-2.485824858248577,56.65401303481431],[-2.485824858248577,56.645570148464884],[-2.482224822248213,56.63206153030583],[-2.482224822248213,56.62699579849618],[-2.485824858248577,56.62024148941666],[-2.503825038250369,56.60842144852748],[-2.5146251462514613,56.59153567582865],[-2.529025290252889,56.58140421220935],[-2.6226262262622697,56.54256693500204],[-2.6406264062640616,56.522304007763466],[-2.6622266222662176,56.51386112141404],[-2.69822698226983,56.503729657794736],[-2.7090270902708937,56.495286771445336],[-2.7270272702726857,56.46995811239708],[-2.737827378273778,56.46658095785733],[-2.745027450274506,56.46995811239708],[-2.7522275222752057,56.47333526693686],[-2.763027630276298,56.47502384420673],[-2.8206282062820662,56.47164668966698],[-3.0546305463054466,56.45138376242838],[-3.0618306183061748,56.45138376242838],[-3.097830978309787,56.441252298809076],[-3.133831338313371,56.427743680650025],[-3.2382323823238153,56.36695489893424],[-3.2814328143281273,56.35851201258484],[-3.3246332463324677,56.365266321664365]]],[[[-14.563945639456392,66.3852838411483],[-14.610746107461068,66.36333233663981],[-14.787147871478709,66.32956079124216],[-14.866348663486633,66.3059207094638],[-14.959949599495985,66.2957892458445],[-14.992349923499233,66.28565778222523],[-15.01395013950139,66.2687720095264],[-14.98874988749887,66.26539485498662],[-14.977949779497777,66.26032912317697],[-14.974349743497442,66.25188623682757],[-14.967149671496713,66.25019765955767],[-14.945549455494557,66.23162330958897],[-14.941949419494193,66.22655757777932],[-14.934749347493465,66.22149184596967],[-14.93834938349383,66.20967180508049],[-14.952749527495257,66.19278603238166],[-14.959949599495985,66.18603172330214],[-15.057150571505701,66.14888302336473],[-15.071550715507158,66.14550586882496],[-15.136351363513626,66.14381729155508],[-15.161551615516146,66.13368582793578],[-15.179551795517938,66.1117343234273],[-15.147151471514718,66.101602859808],[-15.132751327513262,66.09822570526825],[-15.075150751507522,66.09653712799835],[-15.060750607506066,66.08978281891882],[-15.057150571505701,66.07120846895012],[-15.067950679506794,66.06783131441034],[-15.085950859508586,66.05938842806094],[-15.096750967509678,66.05601127352116],[-15.075150751507522,66.04925696444164],[-14.96354963549635,66.04756838717176],[-14.898748987489881,66.03574834628259],[-14.851948519485177,66.03743692355246],[-14.769147691476917,66.06783131441034],[-14.718747187471877,66.07120846895012],[-14.69714697146972,66.06614273714047],[-14.675546755467536,66.05601127352116],[-14.664746647466472,66.04081407809224],[-14.657546575465744,66.01886257358376],[-14.650346503465016,66.00704253269458],[-14.635946359463588,66.00197680088493],[-14.625146251462496,66.00197680088493],[-14.617946179461796,65.99691106907528],[-14.614346143461432,65.98677960545598],[-14.60354603546034,65.96313952367763],[-14.60354603546034,65.95300806005832],[-14.607146071460704,65.94963090551857],[-14.617946179461796,65.94287659643902],[-14.625146251462496,65.93949944189927],[-14.625146251462496,65.93443371008962],[-14.62154621546216,65.92430224647032],[-14.625146251462496,65.91923651466067],[-14.64674646746468,65.89559643288231],[-14.650346503465016,65.88884212380279],[-14.661146611466108,65.88377639199314],[-14.725947259472576,65.85000484659548],[-14.801548015480137,65.828053342087],[-14.823148231482321,65.81623330119783],[-14.819548195481957,65.79765895122912],[-14.841148411484113,65.78415033307004],[-14.891548915489153,65.76051025129169],[-14.862748627486269,65.7621988285616],[-14.833948339483385,65.770641714911],[-14.787147871478709,65.79597037395925],[-14.8051480514805,65.77570744672065],[-14.833948339483385,65.75375594221217],[-14.844748447484477,65.73518159224346],[-14.808748087480865,65.72842728316394],[-14.772747727477281,65.73180443770369],[-14.693546935469357,65.75037878767242],[-14.481144811448104,65.77570744672065],[-14.40194401944018,65.79259321941947],[-14.362343623436232,65.79597037395925],[-14.329943299432983,65.78246175580017],[-14.373143731437295,65.74024732405312],[-14.398343983439815,65.73011586043381],[-14.39474394743948,65.72167297408438],[-14.387543875438752,65.71323008773498],[-14.383943839438388,65.70985293319521],[-14.380343803438024,65.70647577865546],[-14.355143551435503,65.69972146957593],[-14.2939429394294,65.6828356968771],[-14.27594275942758,65.6727042332578],[-14.329943299432983,65.66594992417828],[-14.358743587435868,65.65581846055898],[-14.383943839438388,65.63048980151072],[-14.434344343443428,65.60516114246249],[-14.455944559445584,65.58320963795401],[-14.531545315453144,65.54606093801661],[-14.5459454594546,65.53255231985753],[-14.556745567455664,65.5173551244286],[-14.563945639456392,65.50046935172978],[-14.549545495454936,65.50891223807918],[-14.52794527945278,65.53086374258766],[-14.517145171451716,65.5359294743973],[-14.506345063450624,65.53761805166718],[-14.473944739447376,65.55281524709613],[-14.463144631446312,65.55956955617566],[-14.44514445144452,65.57476675160461],[-14.31914319143192,65.6524413060192],[-14.297542975429735,65.65919561509872],[-14.272342723427215,65.65581846055898],[-14.19314193141932,65.63217837878062],[-14.207542075420747,65.64062126513002],[-14.236342363423631,65.6541298832891],[-14.247142471424695,65.66426134690838],[-14.027540275402743,65.61022687427214],[-13.998739987399858,65.60853829700227],[-13.890738907389078,65.62035833789145],[-13.872738727387258,65.61866976062154],[-13.85833858338583,65.61360402881189],[-13.851138511385102,65.60178398792272],[-13.851138511385102,65.59165252430344],[-13.854738547385466,65.58489821522389],[-13.869138691386894,65.58320963795401],[-13.869138691386894,65.57645532887449],[-13.836738367383674,65.57814390614436],[-13.825938259382582,65.57476675160461],[-13.815138151381518,65.56970101979496],[-13.815138151381518,65.56294671071544],[-13.815138151381518,65.55281524709613],[-13.822338223382218,65.54099520620696],[-13.815138151381518,65.5342408971274],[-13.804338043380426,65.52917516531778],[-13.786337863378634,65.52242085623823],[-13.739537395373958,65.55112666982623],[-13.714337143371438,65.55788097890579],[-13.685536855368554,65.55450382436601],[-13.678336783367826,65.55112666982623],[-13.678336783367826,65.5443723607467],[-13.678336783367826,65.53930662893706],[-13.678336783367826,65.5359294743973],[-13.671136711367097,65.5342408971274],[-13.65673656736567,65.5359294743973],[-13.649536495364941,65.5359294743973],[-13.617136171361722,65.51904370169848],[-13.609936099360993,65.51397796988883],[-13.60633606336063,65.49202646538035],[-13.620736207362057,65.4785178472213],[-13.642336423364242,65.468386383602],[-13.649536495364941,65.45994349725257],[-13.649536495364941,65.45318918817304],[-13.638736387363878,65.43461483820434],[-13.635136351363514,65.42617195185491],[-13.642336423364242,65.42279479731516],[-13.678336783367826,65.41097475642599],[-13.667536675366762,65.40590902461634],[-13.667536675366762,65.3974661382669],[-13.671136711367097,65.38902325191751],[-13.671136711367097,65.37720321102833],[-13.703537035370346,65.36707174740903],[-13.797137971379698,65.37382605648855],[-13.836738367383674,65.36369459286925],[-13.811538115381154,65.35525170651985],[-13.73233732337323,65.34343166563067],[-13.728737287372866,65.32654589293185],[-13.753937539375386,65.31641442931254],[-13.78273782737827,65.30966012023302],[-13.83313833138331,65.30966012023302],[-13.854738547385466,65.30628296569324],[-13.897938979389778,65.29615150207397],[-13.980739807398066,65.28939719299441],[-14.005940059400587,65.28264288391489],[-13.991539915399159,65.27251142029559],[-13.83313833138331,65.29784007934384],[-13.78273782737827,65.29615150207397],[-13.689136891368918,65.30628296569324],[-13.65673656736567,65.3029058111535],[-13.60633606336063,65.28939719299441],[-13.58113581135811,65.27757715210524],[-13.573935739357381,65.26575711121606],[-13.566735667356681,65.26069137940641],[-13.591935919359202,65.25224849305701],[-13.63153631536315,65.22523125673888],[-13.653136531365305,65.22016552492923],[-13.779137791377906,65.20665690677018],[-13.915939159391598,65.20665690677018],[-13.973539735397338,65.19990259769065],[-14.03474034740347,65.19990259769065],[-14.002340023400222,65.18977113407135],[-13.887138871388714,65.19990259769065],[-13.73233732337323,65.19314828861113],[-13.663936639366398,65.19990259769065],[-13.627936279362785,65.19990259769065],[-13.617136171361722,65.19652544315088],[-13.620736207362057,65.18977113407135],[-13.635136351363514,65.17795109318217],[-13.638736387363878,65.17288536137252],[-13.638736387363878,65.16781962956287],[-13.638736387363878,65.1644424750231],[-13.642336423364242,65.15937674321347],[-13.68193681936819,65.15093385686404],[-13.714337143371438,65.15093385686404],[-13.746737467374658,65.14417954778452],[-13.746737467374658,65.13742523870499],[-13.667536675366762,65.14417954778452],[-13.649536495364941,65.13742523870499],[-13.649536495364941,65.13067092962547],[-13.660336603366034,65.13067092962547],[-13.671136711367097,65.12729377508569],[-13.678336783367826,65.12222804327604],[-13.685536855368554,65.11716231146639],[-13.653136531365305,65.11716231146639],[-13.645936459364577,65.11547373419651],[-13.635136351363514,65.11040800238686],[-13.63153631536315,65.10534227057721],[-13.627936279362785,65.10365369330734],[-13.617136171361722,65.10703084784708],[-13.599135991359901,65.12053946600616],[-13.591935919359202,65.12391662054591],[-13.591935919359202,65.12729377508569],[-13.559535595355953,65.15093385686404],[-13.519935199351977,65.17288536137252],[-13.516335163351641,65.15768816594357],[-13.516335163351641,65.13573666143509],[-13.519935199351977,65.11547373419651],[-13.527135271352705,65.10365369330734],[-13.527135271352705,65.09689938422781],[-13.509135091350913,65.09014507514826],[-13.501935019350185,65.08170218879886],[-13.509135091350913,65.06988214790968],[-13.527135271352705,65.05468495248073],[-13.548735487354861,65.0479306434012],[-13.588335883358837,65.04286491159155],[-13.609936099360993,65.03442202524215],[-13.591935919359202,65.02091340708307],[-13.58113581135811,65.01247052073367],[-13.584735847358473,65.00740478892402],[-13.599135991359901,65.00402763438424],[-13.63153631536315,64.99051901622519],[-13.645936459364577,64.98714186168542],[-13.717937179371802,64.99389617076494],[-13.78273782737827,64.98883043895532],[-13.800738007380062,64.99389617076494],[-13.811538115381154,65.00402763438424],[-13.818738187381854,65.01753625254332],[-13.829538295382946,65.0293562934325],[-13.847538475384738,65.03442202524215],[-13.861938619386194,65.0377991797819],[-13.894338943389414,65.04624206613133],[-13.948339483394818,65.05468495248073],[-14.002340023400222,65.07832503425908],[-14.03474034740347,65.08339076606873],[-14.027540275402743,65.07157072517955],[-14.016740167401679,65.06312783883016],[-14.005940059400587,65.0580621070205],[-13.995139951399494,65.05468495248073],[-14.031140311403107,65.0377991797819],[-14.232742327423267,65.03442202524215],[-14.232742327423267,65.0276677161626],[-13.919539195391934,65.01415909800355],[-13.90873908739087,65.01078194346377],[-13.894338943389414,65.00233905711437],[-13.879938799387986,64.99389617076494],[-13.876338763387622,64.98376470714567],[-13.869138691386894,64.97869897533602],[-13.822338223382218,64.96012462536731],[-13.717937179371802,64.93986169812871],[-13.699936999369982,64.92466450269976],[-13.739537395373958,64.9111558845407],[-13.789937899378998,64.91453303908048],[-13.876338763387622,64.93310738904918],[-13.977139771397702,64.92466450269976],[-14.038340383403835,64.93648454358893],[-14.056340563405627,64.93310738904918],[-13.995139951399494,64.91453303908048],[-13.851138511385102,64.9010244209214],[-13.786337863378634,64.87738433914305],[-13.779137791377906,64.8723186073334],[-13.771937719377178,64.8621871437141],[-13.768337683376842,64.8537442573647],[-13.779137791377906,64.85036710282492],[-13.793537935379334,64.84698994828517],[-13.818738187381854,64.83348133012609],[-13.83313833138331,64.83010417558634],[-13.937539375393754,64.84698994828517],[-13.966339663396639,64.835169907396],[-13.85833858338583,64.81659555742726],[-13.840338403384038,64.80984124834774],[-13.840338403384038,64.79802120745856],[-13.869138691386894,64.79464405291878],[-13.980739807398066,64.79633263018869],[-14.013140131401315,64.80308693926821],[-14.020340203402014,64.79802120745856],[-14.027540275402743,64.79464405291878],[-14.049140491404899,64.78788974383926],[-14.049140491404899,64.78113543475973],[-14.016740167401679,64.7642496620609],[-14.002340023400222,64.7541181984416],[-13.987939879398795,64.74060958028255],[-14.002340023400222,64.73723242574277],[-14.049140491404899,64.72034665304395],[-14.272342723427215,64.70008372580537],[-14.304743047430463,64.70346088034512],[-14.32634326343262,64.71021518942467],[-14.340743407434076,64.7169694985042],[-14.36954369543696,64.7558067757115],[-14.39474394743948,64.76593823933078],[-14.419944199442,64.78957832110916],[-14.434344343443428,64.79464405291878],[-14.513545135451352,64.80308693926821],[-14.50274502745026,64.79633263018869],[-14.491944919449196,64.79464405291878],[-14.47034470344704,64.79464405291878],[-14.455944559445584,64.78957832110916],[-14.455944559445584,64.77944685748986],[-14.463144631446312,64.76931539387056],[-14.466744667446676,64.76087250752113],[-14.45234452344522,64.75242962117173],[-14.398343983439815,64.74060958028255],[-14.383943839438388,64.74060958028255],[-14.383943839438388,64.73385527120303],[-14.383943839438388,64.72034665304395],[-14.373143731437295,64.70514945761502],[-14.35154351543514,64.69164083945594],[-14.340743407434076,64.68488653037642],[-14.290342903429035,64.67813222129689],[-14.26874268742688,64.66968933494746],[-14.279542795427943,64.65786929405829],[-14.27594275942758,64.65111498497876],[-14.441544415444156,64.67644364402702],[-14.491944919449196,64.65786929405829],[-14.47754477544774,64.64942640770889],[-14.437944379443792,64.64098352135946],[-14.416344163441636,64.63085205774019],[-14.409144091440908,64.61903201685101],[-14.409144091440908,64.61058913050158],[-14.419944199442,64.60214624415218],[-14.437944379443792,64.59708051234253],[-14.57114571145712,64.59708051234253],[-14.585545855458548,64.59032620326298],[-14.57114571145712,64.57681758510392],[-14.5531455314553,64.56499754421475],[-14.542345423454236,64.56668612148462],[-14.531545315453144,64.55486608059545],[-14.509945099450988,64.5498003487858],[-14.491944919449196,64.54811177151592],[-14.488344883448832,64.55655465786535],[-14.44514445144452,64.5599318124051],[-14.383943839438388,64.60045766688228],[-14.35154351543514,64.61058913050158],[-14.347943479434775,64.60552339869193],[-14.362343623436232,64.59370335780275],[-14.45234452344522,64.54642319424605],[-14.466744667446676,64.53460315335687],[-14.47034470344704,64.52616026700744],[-14.473944739447376,64.50420876249896],[-14.47754477544774,64.49745445341944],[-14.509945099450988,64.47212579437121],[-14.513545135451352,64.4619943307519],[-14.513545135451352,64.45692859894226],[-14.509945099450988,64.45355144440248],[-14.509945099450988,64.44679713532295],[-14.509945099450988,64.4417314035133],[-14.517145171451716,64.43835424897355],[-14.52074520745208,64.43666567170365],[-14.524345243452416,64.43497709443378],[-14.52794527945278,64.42822278535425],[-14.531545315453144,64.4231570535446],[-14.542345423454236,64.40795985811565],[-14.5459454594546,64.4045827035759],[-14.650346503465016,64.39951697176625],[-14.72234722347224,64.38938550814694],[-14.74754747547476,64.38431977633729],[-14.70434704347042,64.39951697176625],[-14.614346143461432,64.40964843538555],[-14.567545675456756,64.41809132173495],[-14.592745927459276,64.42484563081447],[-14.70434704347042,64.4332885171639],[-14.711547115471149,64.43159993989403],[-14.715147151471513,64.42822278535425],[-14.711547115471149,64.4147141671952],[-14.715147151471513,64.41133701265542],[-14.72234722347224,64.40964843538555],[-14.743947439474397,64.39951697176625],[-14.758347583475825,64.39782839449637],[-14.761947619476189,64.3944512399566],[-14.783547835478345,64.37756546725777],[-14.794347943479437,64.37249973544812],[-14.848348483484841,64.35730254001919],[-14.869948699486997,64.34717107639989],[-14.891548915489153,64.33535103551071],[-14.905949059490581,64.32184241735163],[-14.898748987489881,64.33366245824081],[-14.895148951489517,64.33872819005046],[-14.891548915489153,64.34379392186011],[-14.891548915489153,64.35054823093964],[-14.898748987489881,64.35054823093964],[-14.905949059490581,64.34041676732036],[-14.920349203492037,64.33028530370106],[-14.93834938349383,64.32521957189141],[-14.949149491494921,64.32184241735163],[-14.952749527495257,64.31846526281188],[-14.949149491494921,64.31171095373233],[-14.941949419494193,64.3049566446528],[-14.931149311493101,64.30157949011306],[-14.909549095490945,64.30326806738293],[-14.902349023490217,64.3049566446528],[-14.891548915489153,64.30833379919258],[-14.887948879488789,64.29482518103353],[-14.877148771487697,64.28131656287445],[-14.898748987489881,64.28131656287445],[-14.931149311493101,64.26443079017562],[-14.949149491494921,64.26105363563588],[-14.995949959499598,64.26274221290575],[-15.017550175501754,64.2661193674455],[-15.035550355503545,64.27456225379493],[-15.067950679506794,64.29144802649375],[-15.085950859508586,64.29820233557328],[-15.107551075510742,64.30157949011306],[-15.11475114751147,64.29820233557328],[-15.132751327513262,64.28469371741423],[-15.143551435514354,64.28131656287445],[-15.154351543515418,64.28300514014433],[-15.168751687516874,64.2863822946841],[-15.179551795517938,64.28807087195398],[-15.193951939519394,64.28131656287445],[-15.179551795517938,64.27456225379493],[-15.19035190351903,64.26949652198527],[-15.201152011520122,64.2678079447154],[-15.226352263522642,64.2678079447154],[-15.208352083520822,64.29482518103353],[-15.208352083520822,64.30157949011306],[-15.237152371523706,64.29820233557328],[-15.255152551525498,64.29820233557328],[-15.262352623526226,64.3049566446528],[-15.26595265952659,64.32015384008176],[-15.276752767527682,64.33028530370106],[-15.29115291152911,64.33366245824081],[-15.301953019530202,64.32859672643116],[-15.301953019530202,64.32184241735163],[-15.294752947529474,64.31677668554198],[-15.287552875528746,64.31339953100223],[-15.283952839528382,64.3049566446528],[-15.280352803528018,64.29482518103353],[-15.294752947529474,64.29989091284315],[-15.323553235532358,64.30326806738293],[-15.337953379533786,64.30833379919258],[-15.337953379533786,64.3150881082721],[-15.327153271532723,64.32859672643116],[-15.34155341553415,64.35054823093964],[-15.36675366753667,64.36912258090837],[-15.388353883538826,64.37756546725777],[-15.409954099540982,64.38769693087707],[-15.449554495544959,64.3944512399566],[-15.474754747547479,64.39782839449637],[-15.456754567545659,64.39107408541682],[-15.420754207542075,64.3860083536072],[-15.402754027540283,64.38094262179754],[-15.39195391953919,64.36912258090837],[-15.373953739537399,64.34548249912999],[-15.363153631536306,64.33703961278059],[-15.370353703537035,64.33197388097093],[-15.381153811538098,64.33028530370106],[-15.388353883538826,64.33197388097093],[-15.399153991539919,64.33703961278059],[-15.399153991539919,64.32859672643116],[-15.377553775537763,64.32184241735163],[-15.373953739537399,64.30664522192271],[-15.381153811538098,64.28807087195398],[-15.399153991539919,64.27456225379493],[-15.420754207542075,64.2678079447154],[-15.478354783547843,64.27456225379493],[-15.499954999549999,64.2678079447154],[-15.485554855548543,64.26274221290575],[-15.471154711547115,64.26105363563588],[-15.438754387543867,64.26105363563588],[-15.463954639546387,64.25092217201657],[-15.528755287552883,64.24079070839727],[-15.586355863558623,64.2391021311274],[-15.647556475564755,64.2289706675081],[-15.672756727567275,64.21883920388879],[-15.67635676356764,64.22390493569844],[-15.68355683556834,64.2289706675081],[-15.687156871568703,64.23403639931774],[-15.712357123571223,64.21715062661892],[-15.80235802358024,64.18506765849114],[-15.719557195571952,64.19688769938031],[-15.697956979569796,64.19182196757066],[-15.73395733957338,64.18000192668148],[-15.993159931599308,64.14454180401395],[-16.02916029160292,64.129344608585],[-15.982359823598216,64.129344608585],[-15.982359823598216,64.12427887677538],[-16.04356043560435,64.100638794997],[-16.065160651606504,64.09726164045725],[-16.075960759607597,64.09388448591747],[-16.11196111961118,64.07531013594877],[-16.133561335613336,64.06855582686924],[-16.14436144361443,64.06349009505959],[-16.151561515615157,64.05504720871016],[-16.16236162361622,64.06517867232947],[-16.173161731617313,64.06686724959934],[-16.18036180361804,64.06180151778972],[-16.191161911619105,64.05504720871016],[-16.191161911619105,64.04829289963064],[-16.18036180361804,64.04829289963064],[-16.18036180361804,64.04153859055111],[-16.23796237962378,64.02296424058241],[-16.259562595625937,64.02127566331251],[-16.2559625596256,64.03478428147159],[-16.309963099630977,64.01789850877276],[-16.335163351633497,64.0027013133438],[-16.349563495634953,63.98750411791485],[-16.335163351633497,63.98581554064498],[-16.32076320763207,63.99088127245463],[-16.309963099630977,63.997635581534155],[-16.335163351633497,63.9739954997558],[-16.349563495634953,63.9655526134064],[-16.42156421564215,63.93853537708827],[-16.47196471964719,63.904763831690616],[-16.500765007650074,63.89800952261109],[-16.48996489964898,63.899698099880965],[-16.475564755647554,63.904763831690616],[-16.46476464764646,63.913206718040016],[-16.461164611646097,63.92502675892919],[-16.612366123661218,63.869303709023086],[-16.745567455674546,63.85241793632426],[-16.767167671676702,63.85410651359413],[-16.78156781567816,63.86254939994356],[-16.77436774367743,63.85748366813391],[-16.767167671676702,63.85241793632426],[-16.75636756367564,63.850729359054355],[-16.74916749167491,63.84904078178448],[-16.767167671676702,63.84397504997483],[-16.78156781567816,63.842286472704956],[-16.777967779677795,63.83215500908565],[-16.78156781567816,63.8186463909266],[-16.785167851678523,63.806826350037426],[-16.795967959679587,63.801760618227775],[-16.79956799567995,63.80513777276752],[-16.803168031680315,63.81189208184708],[-16.803168031680315,63.82540070000613],[-16.80676806768068,63.828777854545905],[-16.82476824768247,63.83553216362543],[-16.860768607686083,63.859172245403784],[-16.871568715687147,63.86254939994356],[-16.885968859688603,63.86592655448331],[-16.896768967689667,63.86254939994356],[-16.896768967689667,63.85410651359413],[-16.896768967689667,63.83890931816518],[-16.896768967689667,63.82033496819648],[-16.896768967689667,63.8085149273073],[-16.90036900369003,63.801760618227775],[-16.91476914769146,63.80513777276752],[-16.918369183691823,63.81358065911695],[-16.911169111691123,63.83890931816518],[-16.91476914769146,63.84904078178448],[-16.921969219692187,63.859172245403784],[-16.929169291692915,63.86592655448331],[-16.93276932769328,63.859172245403784],[-16.93276932769328,63.83384358635553],[-16.936369363693643,63.82033496819648],[-16.93996939969398,63.8085149273073],[-16.92556925569255,63.8000720409579],[-16.929169291692915,63.793317731878346],[-16.947169471694707,63.788252000068695],[-16.9651696516965,63.788252000068695],[-16.954369543695435,63.810203504577174],[-16.954369543695435,63.82033496819648],[-16.961569615696163,63.828777854545905],[-16.9579695796958,63.837220740895305],[-16.954369543695435,63.84059789543508],[-16.95076950769507,63.842286472704956],[-16.93996939969398,63.84566362724473],[-16.93996939969398,63.850729359054355],[-16.943569435694343,63.85579509086401],[-16.947169471694707,63.85579509086401],[-16.93996939969398,63.88281232718214],[-16.93996939969398,63.89800952261109],[-16.943569435694343,63.904763831690616],[-16.947169471694707,63.90814098623039],[-16.9579695796958,63.91658387257979],[-16.968769687696863,63.91996102711957],[-16.97596975969759,63.91489529530992],[-16.97596975969759,63.88956663626166],[-16.97596975969759,63.877746595372486],[-16.9651696516965,63.869303709023086],[-16.98316983169832,63.86254939994356],[-17.00117001170011,63.864237977213435],[-17.019170191701903,63.86254939994356],[-17.029970299702995,63.84904078178448],[-17.01557015570154,63.83890931816518],[-17.011970119701203,63.827089277276],[-17.004770047700475,63.8169578136567],[-16.986769867698683,63.8085149273073],[-17.004770047700475,63.798383463688],[-17.044370443704423,63.793317731878346],[-17.11637116371162,63.79500630914825],[-17.130771307713076,63.79669488641812],[-17.16677166771666,63.8085149273073],[-17.181171811718116,63.80513777276752],[-17.19197191971918,63.798383463688],[-17.202772027720272,63.798383463688],[-17.206372063720636,63.815269236386825],[-17.328773287732872,63.78149769098917],[-17.4691746917469,63.76123476375059],[-17.559175591755917,63.75110330013129],[-17.548375483754825,63.75785760921082],[-17.54477544775446,63.766300495560245],[-17.54477544775446,63.77812053644942],[-17.548375483754825,63.788252000068695],[-17.555575555755553,63.77305480463977],[-17.56997569975698,63.76292334102047],[-17.584375843758437,63.76123476375059],[-17.598775987759865,63.76798907283012],[-17.5951759517595,63.76123476375059],[-17.5951759517595,63.75954618648069],[-17.5951759517595,63.75785760921082],[-17.591575915759165,63.75448045467104],[-17.591575915759165,63.74603756832164],[-17.7211772117721,63.70551171384446],[-17.710377103771037,63.72746321835294],[-17.685176851768517,63.739283259242114],[-17.65277652776527,63.74603756832164],[-17.623976239762385,63.74603756832164],[-17.623976239762385,63.75448045467104],[-17.692376923769245,63.76967765009999],[-17.7139771397714,63.78149769098917],[-17.7211772117721,63.76798907283012],[-17.717577175771765,63.76292334102047],[-17.7139771397714,63.75448045467104],[-17.73917739177392,63.74603756832164],[-17.76437764377644,63.747726145591514],[-17.78957789577896,63.752791877401165],[-17.818378183781846,63.75448045467104],[-17.79677796777966,63.74603756832164],[-17.79677796777966,63.74097183651199],[-17.82197821978218,63.74097183651199],[-17.832778327783274,63.739283259242114],[-17.843578435784366,63.73252895016259],[-17.861578615786158,63.73759468197224],[-17.87957879578795,63.730840372892686],[-17.893978939789406,63.72070890927341],[-17.89757897578974,63.70888886838421],[-17.90477904779047,63.69200309568541],[-17.919179191791926,63.67849447752633],[-17.937179371793718,63.67511732298658],[-17.95517955179551,63.685248786605854],[-17.965979659796602,63.676805900256454],[-17.973179731797302,63.668363013907026],[-17.965979659796602,63.659920127557626],[-17.951579515795146,63.65823155028775],[-17.937179371793718,63.659920127557626],[-17.919179191791926,63.67005159117693],[-17.901179011790106,63.6717401684468],[-17.825578255782546,63.66667443663715],[-17.79677796777966,63.6717401684468],[-17.839978399784002,63.63459146850937],[-17.865178651786522,63.624460004890096],[-17.893978939789406,63.63121431396962],[-17.890378903789042,63.632902891239496],[-17.886778867788678,63.632902891239496],[-17.886778867788678,63.63628004577927],[-17.926379263792626,63.63628004577927],[-17.926379263792626,63.627837159429845],[-17.951579515795146,63.627837159429845],[-17.969579695796966,63.622771427620194],[-17.95517955179551,63.624460004890096],[-17.947979479794782,63.62108285035032],[-17.944379443794446,63.614328541270794],[-17.947979479794782,63.60250850038162],[-17.87237872378722,63.60419707765149],[-17.857978579785794,63.60926280946114],[-17.883178831788314,63.57549126406349],[-17.919179191791926,63.54509687320561],[-17.965979659796602,63.52314536869713],[-18.066780667806682,63.50119386418865],[-18.13158131581315,63.47924235968017],[-18.19638196381962,63.472488050600646],[-18.228782287822867,63.49275097783922],[-18.21438214382144,63.50119386418865],[-18.185581855818555,63.50457101872843],[-18.178381783817827,63.51132532780795],[-18.1639816398164,63.521456791427255],[-18.149581495814942,63.52652252323688],[-18.117181171811723,63.52821110050678],[-18.117181171811723,63.534965409586306],[-18.14598145981458,63.534965409586306],[-18.199981999819983,63.52652252323688],[-18.228782287822867,63.52821110050678],[-18.2971829718297,63.54678545047548],[-18.31518315183152,63.54847402774536],[-18.311583115831155,63.54171971866583],[-18.318783187831883,63.54003114139596],[-18.32238322383222,63.538342564126054],[-18.325983259832583,63.534965409586306],[-18.31518315183152,63.52821110050678],[-18.293582935829363,63.51132532780795],[-18.286382863828635,63.507948173268176],[-18.275582755827543,63.50119386418865],[-18.27198271982718,63.4876852460296],[-18.268382683826843,63.472488050600646],[-18.26478264782648,63.46573374152112],[-18.225182251822503,63.46573374152112],[-18.199981999819983,63.46573374152112],[-18.18198181981819,63.46404516425122],[-18.39798397983978,63.44884796882229],[-18.520385203852044,63.42183073250416],[-18.732787327873268,63.396502073455935],[-18.78318783187831,63.39819065072581],[-18.973989739897405,63.42520788704394],[-19.056790567905665,63.41507642342464],[-19.08559085590855,63.418453577964385],[-19.074790747907485,63.418453577964385],[-19.067590675906757,63.42014215523429],[-19.063990639906393,63.42520788704394],[-19.099990999910005,63.42858504158369],[-19.117991179911797,63.431962196123465],[-19.132391323913225,63.43871650520299],[-19.15399153991538,63.42520788704394],[-19.28719287192871,63.43871650520299],[-19.301593015930166,63.440405082472864],[-19.351993519935206,63.458979432441595],[-19.434794347943466,63.46573374152112],[-19.549995499955003,63.50119386418865],[-19.711997119971187,63.521456791427255],[-19.744397443974435,63.534965409586306],[-19.729997299973007,63.534965409586306],[-19.72279722797228,63.54003114139596],[-19.72279722797228,63.543408295935706],[-19.737197371973707,63.54847402774536],[-19.7479974799748,63.54847402774536],[-19.76599765997659,63.543408295935706],[-19.776797767977683,63.54171971866583],[-19.8739987399874,63.54847402774536],[-19.870398703987036,63.543408295935706],[-19.769597695976955,63.534965409586306],[-20.032400324003248,63.54171971866583],[-20.05040050400504,63.55522833682488],[-20.054000540005404,63.55353975955501],[-20.05760057600577,63.551851182285134],[-20.061200612006104,63.55016260501526],[-20.064800648006468,63.54847402774536],[-20.068400684006832,63.55353975955501],[-20.072000720007196,63.55353975955501],[-20.079200792007924,63.55522833682488],[-20.072000720007196,63.54171971866583],[-20.147601476014756,63.54003114139596],[-20.187201872018704,63.54509687320561],[-20.338403384033825,63.60250850038162],[-20.35280352803528,63.60926280946114],[-20.338403384033825,63.60419707765149],[-20.324003240032397,63.60250850038162],[-20.306003060030605,63.60419707765149],[-20.29160291602915,63.60926280946114],[-20.30240302403024,63.61095138673102],[-20.32760327603276,63.61601711854067],[-20.338403384033825,63.61601711854067],[-20.33480334803346,63.632902891239496],[-20.331203312033125,63.63628004577927],[-20.349203492034917,63.624460004890096],[-20.36720367203671,63.619394273080445],[-20.3852038520385,63.62108285035032],[-20.406804068040685,63.63121431396962],[-20.406804068040685,63.63628004577927],[-20.374403744037437,63.63121431396962],[-20.3852038520385,63.64641150939855],[-20.40320403204032,63.654854395747975],[-20.424804248042477,63.6616087048275],[-20.44280442804427,63.6717401684468],[-20.457204572045725,63.68862594114563],[-20.46800468004679,63.70044598203481],[-20.47880478804788,63.70720029111433],[-20.5040050400504,63.70551171384446],[-20.5040050400504,63.69875740476493],[-20.46800468004679,63.676805900256454],[-20.450004500044997,63.659920127557626],[-20.43560435604354,63.64472293212867],[-20.500405004050037,63.6717401684468],[-20.532805328053286,63.68862594114563],[-20.550805508055078,63.712266022923984],[-20.547205472054713,63.71395460019386],[-20.53640536405362,63.71902033200351],[-20.54360543605435,63.72408606381316],[-20.558005580055806,63.74097183651199],[-20.52920529205292,63.75448045467104],[-20.496804968049673,63.76292334102047],[-20.432004320043205,63.76798907283012],[-20.399603996039957,63.76123476375059],[-20.345603456034553,63.73421752743246],[-20.30960309603094,63.73252895016259],[-20.32760327603276,63.74266041378186],[-20.35280352803528,63.76123476375059],[-20.36720367203671,63.76798907283012],[-20.44280442804427,63.788252000068695],[-20.41040410404102,63.81189208184708],[-20.406804068040685,63.82202354546635],[-20.41040410404102,63.83553216362543],[-20.421204212042113,63.84059789543508],[-20.432004320043205,63.83553216362543],[-20.42840428404284,63.828777854545905],[-20.42840428404284,63.82202354546635],[-20.439204392043905,63.81189208184708],[-20.482404824048245,63.788252000068695],[-20.5112051120511,63.77305480463977],[-20.52920529205292,63.76461191829034],[-20.55440554405544,63.76123476375059],[-20.56160561605614,63.75616903194094],[-20.565205652056505,63.747726145591514],[-20.56160561605614,63.73590610470234],[-20.565205652056505,63.725774641083035],[-20.572405724057234,63.71564317746376],[-20.576005760057598,63.71395460019386],[-20.622806228062274,63.725774641083035],[-20.666006660066586,63.74266041378186],[-20.702007020070198,63.74941472286142],[-20.77040770407703,63.774743381909644],[-20.705607056070562,63.774743381909644],[-20.69480694806947,63.77136622736987],[-20.66960669606695,63.76123476375059],[-20.655206552065522,63.76123476375059],[-20.651606516065158,63.766300495560245],[-20.640806408064066,63.76798907283012],[-20.60480604806048,63.76798907283012],[-20.60480604806048,63.774743381909644],[-20.633606336063366,63.774743381909644],[-20.633606336063366,63.78149769098917],[-20.630006300063002,63.78149769098917],[-20.622806228062274,63.78149769098917],[-20.61920619206191,63.78149769098917],[-20.61920619206191,63.788252000068695],[-20.691206912069106,63.779809113719296],[-20.716407164071626,63.78149769098917],[-20.716407164071626,63.788252000068695],[-20.680406804068042,63.806826350037426],[-20.673206732067314,63.837220740895305],[-20.684006840068406,63.864237977213435],[-20.723607236072354,63.869303709023086],[-20.723607236072354,63.86254939994356],[-20.69480694806947,63.85748366813391],[-20.698406984069834,63.84397504997483],[-20.716407164071626,63.828777854545905],[-20.756007560075602,63.80513777276752],[-20.777607776077758,63.79669488641812],[-20.806408064080642,63.79500630914825],[-20.831608316083162,63.801760618227775],[-20.82080820808207,63.78487484552895],[-20.817208172081706,63.78149769098917],[-20.860408604086047,63.8000720409579],[-20.950409504095035,63.827089277276],[-21.076410764107635,63.84904078178448],[-21.119611196111947,63.86254939994356],[-21.144811448114467,63.86761513175318],[-21.170011700116987,63.87605801810261],[-21.188011880118808,63.891255213531565],[-21.184411844118443,63.899698099880965],[-21.184411844118443,63.90814098623039],[-21.195211952119507,63.931781068008746],[-21.116011160111583,63.93009249073884],[-21.07281072810727,63.93346964527862],[-21.044010440104387,63.9452896861678],[-21.119611196111947,63.9452896861678],[-21.166411664116623,63.957109727056974],[-21.184411844118443,63.95879830432685],[-21.234812348123484,63.953732572517225],[-21.245612456124547,63.948666840707574],[-21.25641256412564,63.94360110889792],[-21.288812888128888,63.92840391346897],[-21.29961299612995,63.92502675892919],[-21.29961299612995,63.91827244984967],[-21.24921249212491,63.90814098623039],[-21.220412204122027,63.899698099880965],[-21.209612096120964,63.88450090445201],[-21.23121231212312,63.88956663626166],[-21.27441274412743,63.891255213531565],[-21.321213212132108,63.88956663626166],[-21.35001350013499,63.88450090445201],[-21.364413644136448,63.87436944083274],[-21.353613536135356,63.85579509086401],[-21.35721357213572,63.85579509086401],[-21.360813608136084,63.85410651359413],[-21.364413644136448,63.85241793632426],[-21.368013680136784,63.84904078178448],[-21.65961659616596,63.83215500908565],[-21.695616956169545,63.842286472704956],[-21.728017280172793,63.859172245403784],[-21.76041760417604,63.86761513175318],[-21.79281792817929,63.87099228629296],[-21.958419584195838,63.84397504997483],[-22.00162001620015,63.842286472704956],[-22.016020160201606,63.84397504997483],[-22.066420664206646,63.83553216362543],[-22.33642336423364,63.86254939994356],[-22.358023580235795,63.85579509086401],[-22.376023760237587,63.84397504997483],[-22.394023940239407,63.83553216362543],[-22.415624156241563,63.842286472704956],[-22.401224012240107,63.84904078178448],[-22.426424264242627,63.84904078178448],[-22.46242462424624,63.83890931816518],[-22.494824948249487,63.83384358635553],[-22.51282512825128,63.82540070000613],[-22.523625236252343,63.82202354546635],[-22.534425344253435,63.82202354546635],[-22.63162631626315,63.82540070000613],[-22.653226532265307,63.82202354546635],[-22.660426604266036,63.8186463909266],[-22.6640266402664,63.815269236386825],[-22.671226712267128,63.810203504577174],[-22.678426784267828,63.8085149273073],[-22.692826928269284,63.81189208184708],[-22.70722707227071,63.82540070000613],[-22.718027180271804,63.828777854545905],[-22.710827108271076,63.83890931816518],[-22.703627036270348,63.84566362724473],[-22.696426964269648,63.85241793632426],[-22.696426964269648,63.86254939994356],[-22.700027000269984,63.87436944083274],[-22.70722707227071,63.87943517264236],[-22.718027180271804,63.88281232718214],[-22.728827288272868,63.891255213531565],[-22.71442714427144,63.90138667715084],[-22.696426964269648,63.93853537708827],[-22.685626856268556,63.9452896861678],[-22.642426424264244,63.9452896861678],[-22.635226352263516,63.948666840707574],[-22.63882638826388,63.95879830432685],[-22.649626496264943,63.95879830432685],[-22.671226712267128,63.95204399524732],[-22.692826928269284,63.9554211497871],[-22.71442714427144,63.962175458866625],[-22.728827288272868,63.9739954997558],[-22.736027360273596,63.994258426994406],[-22.721627216272168,64.01283277696311],[-22.718027180271804,64.02127566331251],[-22.718027180271804,64.03309570420168],[-22.718027180271804,64.05335863144029],[-22.718027180271804,64.06180151778972],[-22.718027180271804,64.07024440413912],[-22.71442714427144,64.07868729048855],[-22.703627036270348,64.08544159956807],[-22.68922689226892,64.09050733137772],[-22.674826748267463,64.08713017683795],[-22.646026460264608,64.07193298140899],[-22.610026100260995,64.06180151778972],[-22.58122581225811,64.04322716782099],[-22.559625596255955,64.01958708604263],[-22.545225452254527,63.994258426994406],[-22.559625596255955,63.994258426994406],[-22.541625416254163,63.98243838610523],[-22.520025200252007,63.97906123156545],[-22.419224192241927,63.97737265429558],[-22.397623976239743,63.97906123156545],[-22.37962379623795,63.98750411791485],[-22.394023940239407,63.994258426994406],[-22.38682386823868,64.0027013133438],[-22.372423724237223,64.00945562242333],[-22.36162361623616,64.01452135423298],[-22.34722347223473,64.01789850877276],[-22.29682296822969,64.02127566331251],[-22.26082260822608,64.03309570420168],[-22.250022500224986,64.03478428147159],[-22.239222392223922,64.03309570420168],[-22.214022140221402,64.02296424058241],[-22.199621996219946,64.02127566331251],[-22.174421744217426,64.02465281785229],[-22.124021240212386,64.04322716782099],[-22.041220412204126,64.05167005417042],[-22.012420124201242,64.06011294051982],[-21.990819908199086,64.07531013594877],[-21.980019800197994,64.07024440413912],[-21.97641976419763,64.06855582686924],[-21.96921969219693,64.07193298140899],[-21.9620196201962,64.07531013594877],[-21.9620196201962,64.0820644450283],[-21.980019800197994,64.09050733137772],[-22.005220052200514,64.09726164045725],[-22.030420304203034,64.100638794997],[-22.04482044820449,64.09726164045725],[-22.034020340203398,64.11245883588617],[-22.008820088200878,64.1209017222356],[-21.983619836198358,64.1209017222356],[-21.9620196201962,64.11752456769582],[-21.972819728197265,64.11583599042595],[-21.990819908199086,64.10908168134642],[-21.972819728197265,64.10570452680665],[-21.95121951219511,64.10401594953677],[-21.933219332193318,64.10570452680665],[-21.915219152191526,64.10908168134642],[-21.915219152191526,64.11752456769582],[-21.93681936819368,64.11752456769582],[-21.922419224192225,64.12259029950548],[-21.915219152191526,64.12427887677538],[-21.97641976419763,64.1496075358236],[-22.012420124201242,64.15636184490313],[-22.04482044820449,64.158050422173],[-22.016020160201606,64.16818188579231],[-21.864818648186485,64.15636184490313],[-21.857618576185757,64.15298469036338],[-21.854018540185393,64.14791895855373],[-21.846818468184665,64.14454180401395],[-21.814418144181445,64.13609891766455],[-21.80001800017999,64.13778749493443],[-21.78561785617856,64.14454180401395],[-21.796417964179625,64.14285322674408],[-21.807218072180717,64.14454180401395],[-21.81801818018181,64.14623038128383],[-21.82521825218251,64.15129611309348],[-21.814418144181445,64.15973899944291],[-21.807218072180717,64.16142757671278],[-21.80001800017999,64.16480473125256],[-21.81801818018181,64.17155904033208],[-21.79281792817929,64.17662477214174],[-21.756817568175677,64.17155904033208],[-21.74241742417425,64.17155904033208],[-21.72441724417243,64.17155904033208],[-21.702817028170273,64.19182196757066],[-21.738817388173885,64.18337908122126],[-21.756817568175677,64.18169050395139],[-21.764017640176405,64.18844481303091],[-21.756817568175677,64.20026485392009],[-21.74241742417425,64.20701916299961],[-21.710017100171,64.21377347207914],[-21.728017280172793,64.21883920388879],[-21.76041760417604,64.22052778115867],[-21.789217892178925,64.21883920388879],[-21.814418144181445,64.21377347207914],[-21.807218072180717,64.23065924477797],[-21.81801818018181,64.2374135538575],[-21.8360183601836,64.24079070839727],[-21.864818648186485,64.2391021311274],[-21.87561875618755,64.2374135538575],[-21.882818828188277,64.23572497658762],[-21.890018900189006,64.23065924477797],[-21.929619296192953,64.23403639931774],[-21.90081900819007,64.24416786293705],[-21.890018900189006,64.25261074928645],[-21.89361893618937,64.2678079447154],[-21.832418324183237,64.2863822946841],[-21.803618036180353,64.30157949011306],[-21.782017820178197,64.31846526281188],[-21.764017640176405,64.33872819005046],[-21.753217532175313,64.34548249912999],[-21.738817388173885,64.35054823093964],[-21.71721717217173,64.35223680820954],[-21.670416704167025,64.34885965366976],[-21.652416524165233,64.34885965366976],[-21.67401674016739,64.35223680820954],[-21.681216812168117,64.35730254001919],[-21.688416884168845,64.35730254001919],[-21.64881648816487,64.37081115817824],[-21.627216272162713,64.3758768899879],[-21.602016020160193,64.37756546725777],[-21.46521465214653,64.36236827182881],[-21.443614436144344,64.36405684909872],[-21.425614256142552,64.3758768899879],[-21.414814148141488,64.38431977633729],[-21.4580145801458,64.37249973544812],[-21.48321483214832,64.37756546725777],[-21.48321483214832,64.38431977633729],[-21.472414724147228,64.38431977633729],[-21.46521465214653,64.3860083536072],[-21.450814508145072,64.39107408541682],[-21.447214472144708,64.39613981722647],[-21.450814508145072,64.39613981722647],[-21.454414544145436,64.39613981722647],[-21.454414544145436,64.39782839449637],[-21.450814508145072,64.39782839449637],[-21.630816308163077,64.40289412630602],[-21.71721717217173,64.3944512399566],[-21.79281792817929,64.36405684909872],[-21.796417964179625,64.36067969455894],[-21.80001800017999,64.35392538547941],[-21.803618036180353,64.34885965366976],[-21.814418144181445,64.34379392186011],[-21.821618216182145,64.34041676732036],[-21.839618396183965,64.33703961278059],[-21.85041850418503,64.33703961278059],[-21.864818648186485,64.33366245824081],[-21.91161911619116,64.32015384008176],[-21.92601926019259,64.31171095373233],[-21.9620196201962,64.2965137583034],[-22.008820088200878,64.29989091284315],[-22.098820988209866,64.3150881082721],[-22.098820988209866,64.32184241735163],[-22.059220592205918,64.33366245824081],[-22.01962019620197,64.35054823093964],[-21.983619836198358,64.37081115817824],[-21.9620196201962,64.3758768899879],[-21.940419404194046,64.37081115817824],[-21.922419224192225,64.37925404452764],[-21.879218792187913,64.38431977633729],[-21.86121861218612,64.39107408541682],[-21.947619476194745,64.3944512399566],[-21.97641976419763,64.39107408541682],[-21.99441994419945,64.38431977633729],[-22.012420124201242,64.38263119906742],[-22.02682026820267,64.38769693087707],[-22.04482044820449,64.4045827035759],[-22.030420304203034,64.4147141671952],[-22.030420304203034,64.42653420808438],[-22.030420304203034,64.44004282624343],[-22.023220232202306,64.45524002167238],[-22.016020160201606,64.45692859894226],[-22.005220052200514,64.45355144440248],[-22.00162001620015,64.45355144440248],[-21.99441994419945,64.4704372171013],[-21.990819908199086,64.47888010345073],[-21.97641976419763,64.49238872160979],[-21.97641976419763,64.50420876249896],[-21.95121951219511,64.51434022611826],[-21.8360183601836,64.53966888516652],[-21.778417784177833,64.5413574624364],[-21.782017820178197,64.5498003487858],[-21.79281792817929,64.55486608059545],[-21.803618036180353,64.55655465786535],[-21.81801818018181,64.55655465786535],[-21.81801818018181,64.56162038967497],[-21.80001800017999,64.5700632760244],[-21.764017640176405,64.59201478053288],[-21.728017280172793,64.5987690896124],[-21.713617136171365,64.6072119759618],[-21.702817028170273,64.61058913050158],[-21.688416884168845,64.61227770777145],[-21.64881648816487,64.61058913050158],[-21.652416524165233,64.59201478053288],[-21.630816308163077,64.59032620326298],[-21.605616056160557,64.5886376259931],[-21.59121591215913,64.5785061623738],[-21.580415804158037,64.57175185329427],[-21.497614976149748,64.5700632760244],[-21.512015120151204,64.57512900783405],[-21.54801548015479,64.57344043056418],[-21.56601566015661,64.57512900783405],[-21.580415804158037,64.58188331691358],[-21.602016020160193,64.5987690896124],[-21.620016200161984,64.60383482142205],[-21.580415804158037,64.61058913050158],[-21.580415804158037,64.6173434395811],[-21.681216812168117,64.6173434395811],[-21.681216812168117,64.62409774866063],[-21.62361623616235,64.63929494408958],[-21.605616056160557,64.64773783043901],[-21.59121591215913,64.64942640770889],[-21.512015120151204,64.64436067589924],[-21.512015120151204,64.65111498497876],[-21.587615876158765,64.65786929405829],[-21.612816128161285,64.65786929405829],[-21.677616776167753,64.63254063501006],[-21.702817028170273,64.63085205774019],[-21.702817028170273,64.63760636681971],[-21.677616776167753,64.64942640770889],[-21.66681666816669,64.65618071678841],[-21.65961659616596,64.66631218040772],[-21.702817028170273,64.64773783043901],[-21.713617136171365,64.64436067589924],[-21.720817208172065,64.63929494408958],[-21.728017280172793,64.61565486231123],[-21.738817388173885,64.61058913050158],[-21.74961749617495,64.6072119759618],[-21.79281792817929,64.59032620326298],[-21.84321843218433,64.58188331691358],[-21.86121861218612,64.57512900783405],[-21.854018540185393,64.56162038967497],[-21.882818828188277,64.56668612148462],[-21.91161911619116,64.56330896694487],[-21.96921969219693,64.5413574624364],[-21.99441994419945,64.52953742154722],[-22.008820088200878,64.52447168973757],[-22.023220232202306,64.52784884427734],[-22.034020340203398,64.53798030789662],[-22.034020340203398,64.54811177151592],[-22.01962019620197,64.5700632760244],[-22.037620376203762,64.56668612148462],[-22.048420484204826,64.55486608059545],[-22.05202052020519,64.53966888516652],[-22.05202052020519,64.52447168973757],[-22.055620556205554,64.51940595792792],[-22.080820808208074,64.50083160795921],[-22.084420844208438,64.49238872160979],[-22.084420844208438,64.48394583526039],[-22.084420844208438,64.47888010345073],[-22.091620916209166,64.47212579437121],[-22.12762127621275,64.47212579437121],[-22.134821348213478,64.46874863983143],[-22.138421384213842,64.46537148529168],[-22.14562145621457,64.4619943307519],[-22.156421564215634,64.46030575348203],[-22.163621636216362,64.46030575348203],[-22.181621816218154,64.46368290802178],[-22.199621996219946,64.47212579437121],[-22.214022140221402,64.48563441253026],[-22.224822248222466,64.50083160795921],[-22.232022320223194,64.49407729887969],[-22.239222392223922,64.49070014433991],[-22.24642246422465,64.48901156707004],[-22.257222572225714,64.48732298980013],[-22.242822428224287,64.49914303068931],[-22.232022320223194,64.51602880338814],[-22.22842228422283,64.52953742154722],[-22.23562235622356,64.5413574624364],[-22.232022320223194,64.54304603970627],[-22.224822248222466,64.54811177151592],[-22.232022320223194,64.5514889260557],[-22.239222392223922,64.55486608059545],[-22.24642246422465,64.55655465786535],[-22.257222572225714,64.55655465786535],[-22.25362253622535,64.5599318124051],[-22.242822428224287,64.5700632760244],[-22.242822428224287,64.57512900783405],[-22.289622896228963,64.56162038967497],[-22.318423184231847,64.55486608059545],[-22.340023400234003,64.55655465786535],[-22.358023580235795,64.56837469875452],[-22.365223652236523,64.58526047145335],[-22.36162361623616,64.60045766688228],[-22.34722347223473,64.61058913050158],[-22.34722347223473,64.6173434395811],[-22.365223652236523,64.6173434395811],[-22.376023760237587,64.62578632593053],[-22.38682386823868,64.63422921227993],[-22.390423904239043,64.63760636681971],[-22.40482404824047,64.64098352135946],[-22.419224192241927,64.64773783043901],[-22.433624336243355,64.65618071678841],[-22.440824408244083,64.66631218040772],[-22.419224192241927,64.66124644859806],[-22.390423904239043,64.64942640770889],[-22.365223652236523,64.64267209862936],[-22.340023400234003,64.65111498497876],[-22.36162361623616,64.65111498497876],[-22.35442354423543,64.66293502586794],[-22.343623436234367,64.66968933494746],[-22.332823328233275,64.67475506675711],[-22.318423184231847,64.67813222129689],[-22.32922329223291,64.68488653037642],[-22.332823328233275,64.68488653037642],[-22.332823328233275,64.69164083945594],[-22.217622176221766,64.7169694985042],[-22.188821888218882,64.73385527120303],[-22.188821888218882,64.74060958028255],[-22.250022500224986,64.7169694985042],[-22.282422824228235,64.71021518942467],[-22.314823148231483,64.7068380348849],[-22.343623436234367,64.69839514853547],[-22.372423724237223,64.68488653037642],[-22.401224012240107,64.67644364402702],[-22.422824228242263,64.68488653037642],[-22.408424084240835,64.68995226218607],[-22.37962379623795,64.7068380348849],[-22.36162361623616,64.7152809212343],[-22.350823508235067,64.72372380758372],[-22.340023400234003,64.73385527120303],[-22.34722347223473,64.74060958028255],[-22.33642336423364,64.74229815755243],[-22.332823328233275,64.7456753120922],[-22.318423184231847,64.7541181984416],[-22.343623436234367,64.76593823933078],[-22.372423724237223,64.76931539387056],[-22.43722437224372,64.76762681660068],[-22.422824228242263,64.78113543475973],[-22.440824408244083,64.78113543475973],[-22.43722437224372,64.79126689837904],[-22.415624156241563,64.81152982561761],[-22.408424084240835,64.82334986650679],[-22.419224192241927,64.82166128923691],[-22.426424264242627,64.81828413469717],[-22.43722437224372,64.81152982561761],[-22.440824408244083,64.80308693926821],[-22.448024480244783,64.81152982561761],[-22.45522455224551,64.81490698015739],[-22.466024660246603,64.81490698015739],[-22.476824768247667,64.80984124834774],[-22.476824768247667,64.80308693926821],[-22.53082530825307,64.80984124834774],[-22.548825488254863,64.80646409380799],[-22.577625776257747,64.79126689837904],[-22.592025920259204,64.78788974383926],[-22.592025920259204,64.78113543475973],[-22.584825848258475,64.77944685748986],[-22.566825668256683,64.77438112568021],[-22.65682656826567,64.76593823933078],[-22.68202682026819,64.77438112568021],[-22.65682656826567,64.77269254841033],[-22.646026460264608,64.77438112568021],[-22.63882638826388,64.77775828021996],[-22.642426424264244,64.78282401202961],[-22.649626496264943,64.79126689837904],[-22.6640266402664,64.79970978472844],[-22.671226712267128,64.80308693926821],[-22.779227792277908,64.80308693926821],[-22.761227612276116,64.79464405291878],[-22.710827108271076,64.78113543475973],[-22.710827108271076,64.77438112568021],[-22.736027360273596,64.77438112568021],[-22.782827828278272,64.79295547564891],[-22.811628116281156,64.79464405291878],[-22.804428044280428,64.79464405291878],[-22.93042930429303,64.79970978472844],[-23.04923049230493,64.79970978472844],[-23.189631896318957,64.80477551653809],[-23.247232472324725,64.83010417558634],[-23.30123301233013,64.83179275285622],[-23.398433984339846,64.82334986650679],[-23.398433984339846,64.81997271196704],[-23.416434164341638,64.80646409380799],[-23.423634236342366,64.80308693926821],[-23.43443434434343,64.79802120745856],[-23.445234452344522,64.79464405291878],[-23.456034560345586,64.79295547564891],[-23.574835748357486,64.80984124834774],[-23.564035640356394,64.81321840288751],[-23.549635496354966,64.81659555742726],[-23.538835388353874,64.81659555742726],[-23.556835568355666,64.81997271196704],[-23.59283592835928,64.81152982561761],[-23.625236252362527,64.79464405291878],[-23.62883628836289,64.77438112568021],[-23.646836468364683,64.75074104390185],[-23.675636756367567,64.74060958028255],[-23.747637476374763,64.74060958028255],[-23.76923769237692,64.73723242574277],[-23.81243812438123,64.7271009621235],[-23.834038340383387,64.7254123848536],[-23.90603906039061,64.74398673482233],[-23.92043920439204,64.7541181984416],[-23.934839348393467,64.7558067757115],[-23.94563945639456,64.76087250752113],[-23.949239492394923,64.77775828021996],[-23.95643956439565,64.78620116656938],[-23.999639996399964,64.81659555742726],[-24.017640176401756,64.83179275285622],[-24.032040320403212,64.84867852555504],[-24.060840608406068,64.8908929573021],[-24.053640536405368,64.89933584365153],[-24.032040320403212,64.88920438003223],[-24.01404014040139,64.892581534572],[-23.978039780397808,64.91284446181058],[-23.960039600395987,64.91791019362023],[-23.848438484384843,64.9297302345094],[-23.826838268382687,64.9297302345094],[-23.747637476374763,64.90609015273105],[-23.639636396363954,64.89933584365153],[-23.62883628836289,64.9010244209214],[-23.61083610836107,64.91453303908048],[-23.600036000360006,64.91791019362023],[-23.56043560435603,64.91791019362023],[-23.549635496354966,64.92128734816],[-23.513635136351354,64.94661600720823],[-23.470434704347042,64.95168173901789],[-23.380433804338026,64.94492742993836],[-23.380433804338026,64.95337031628776],[-23.387633876338754,64.95674747082754],[-23.391233912339118,64.95843604809741],[-23.391233912339118,64.96181320263719],[-23.394833948339482,64.96687893444684],[-23.35163351633517,64.96856751171671],[-23.340833408334078,64.96181320263719],[-23.348033480334806,64.94492742993836],[-23.33363333633335,64.94155027539858],[-23.32643326433265,64.94661600720823],[-23.315633156331558,64.95337031628776],[-23.304833048330465,64.95337031628776],[-23.30123301233013,64.94323885266849],[-23.30123301233013,64.9297302345094],[-23.297632976329766,64.92297592542988],[-23.279632796327945,64.93310738904918],[-23.261632616326153,64.92635307996966],[-23.24363243632436,64.9297302345094],[-23.229232292322905,64.93986169812871],[-23.22563225632257,64.94999316174801],[-23.229232292322905,64.96012462536731],[-23.236432364323633,64.97194466625649],[-23.240032400323997,64.98714186168542],[-23.236432364323633,65.0006504798445],[-23.211232112321113,65.01753625254332],[-23.1680316803168,65.02091340708307],[-23.085230852308513,65.01415909800355],[-23.096030960309605,65.00233905711437],[-23.10683106831067,64.99558474803484],[-23.135631356313553,64.98714186168542],[-23.13203132031319,64.98207612987576],[-23.128431284312825,64.97363324352636],[-23.139231392313917,64.97194466625649],[-23.146431464314645,64.96856751171671],[-23.153631536315345,64.96181320263719],[-23.160831608316073,64.95337031628776],[-23.10683106831067,64.91791019362023],[-23.114031140311397,64.93310738904918],[-23.114031140311397,64.94661600720823],[-23.110431104311033,64.95674747082754],[-23.09963099630997,64.96687893444684],[-23.09243092430924,64.96856751171671],[-23.07443074430745,64.97025608898659],[-23.06723067230672,64.97363324352636],[-23.060030600305993,64.97869897533602],[-23.052830528305265,64.99220759349507],[-23.04923049230493,64.99727332530472],[-23.020430204302045,65.01247052073367],[-22.99162991629916,65.01415909800355],[-22.96642966429664,65.00402763438424],[-22.94122941229412,64.98714186168542],[-22.926829268292664,64.99727332530472],[-22.905229052290508,65.00402763438424],[-22.844028440284404,65.0090933661939],[-22.786427864278636,65.0276677161626],[-22.800828008280064,65.03273344797225],[-22.87282872828729,65.0276677161626],[-22.87282872828729,65.03442202524215],[-22.833228332283312,65.03948775705177],[-22.757627576275752,65.07157072517955],[-22.718027180271804,65.0766364569892],[-22.721627216272168,65.07157072517955],[-22.728827288272868,65.06988214790968],[-22.71442714427144,65.0665049933699],[-22.696426964269648,65.06312783883016],[-22.696426964269648,65.05468495248073],[-22.696426964269648,65.05299637521085],[-22.696426964269648,65.04961922067108],[-22.710827108271076,65.04117633432168],[-22.73962739627396,65.03273344797225],[-22.750427504275024,65.0276677161626],[-22.73962739627396,65.02597913889272],[-22.721627216272168,65.02597913889272],[-22.703627036270348,65.0293562934325],[-22.68922689226892,65.03442202524215],[-22.68202682026819,65.01584767527342],[-22.674826748267463,65.00740478892402],[-22.642426424264244,65.0006504798445],[-22.595625956259568,64.98376470714567],[-22.58122581225811,64.98038755260589],[-22.58122581225811,64.98714186168542],[-22.592025920259204,64.99051901622519],[-22.602826028260267,64.99558474803484],[-22.628026280262787,65.01415909800355],[-22.602826028260267,65.0293562934325],[-22.584825848258475,65.03442202524215],[-22.566825668256683,65.03442202524215],[-22.56322563225632,65.0479306434012],[-22.545225452254527,65.05299637521085],[-22.46242462424624,65.05130779794098],[-22.37962379623795,65.0580621070205],[-22.24642246422465,65.0479306434012],[-22.156421564215634,65.0276677161626],[-22.14562145621457,65.03104487070237],[-22.131221312213114,65.03948775705177],[-22.12042120421205,65.04117633432168],[-22.04482044820449,65.04117633432168],[-22.02682026820267,65.0377991797819],[-22.005220052200514,65.03104487070237],[-21.983619836198358,65.0276677161626],[-21.980019800197994,65.0276677161626],[-21.9620196201962,65.03442202524215],[-21.93681936819368,65.0276677161626],[-21.82521825218251,65.03442202524215],[-21.80001800017999,65.04455348886142],[-21.80001800017999,65.0563735297506],[-21.81801818018181,65.0665049933699],[-21.846818468184665,65.06988214790968],[-21.8360183601836,65.08170218879886],[-21.82521825218251,65.08676792060851],[-21.81081810818108,65.08845649787838],[-21.79281792817929,65.09689938422781],[-21.778417784177833,65.10871942511699],[-21.738817388173885,65.15937674321347],[-21.73521735217352,65.19314828861113],[-21.76761767617677,65.20834548404005],[-21.81081810818108,65.20665690677018],[-21.839618396183965,65.19314828861113],[-21.839618396183965,65.18639397953157],[-21.832418324183237,65.18639397953157],[-21.832418324183237,65.17795109318217],[-21.983619836198358,65.12391662054591],[-22.034020340203398,65.11547373419651],[-22.318423184231847,65.13911381597487],[-22.390423904239043,65.16275389775322],[-22.401224012240107,65.166131052293],[-22.40482404824047,65.1644424750231],[-22.419224192241927,65.16106532048335],[-22.51282512825128,65.15431101140382],[-22.5380253802538,65.15937674321347],[-22.55602556025559,65.16950820683275],[-22.541625416254163,65.17288536137252],[-22.51282512825128,65.1762625159123],[-22.491224912249123,65.18639397953157],[-22.484024840248395,65.18132824772192],[-22.476824768247667,65.17795109318217],[-22.45522455224551,65.17795109318217],[-22.45522455224551,65.18639397953157],[-22.48042480424803,65.19314828861113],[-22.50562505625055,65.19314828861113],[-22.552425524255227,65.18639397953157],[-22.541625416254163,65.19990259769065],[-22.523625236252343,65.21509979311958],[-22.491224912249123,65.23367414308831],[-22.444424444244447,65.24380560670758],[-22.426424264242627,65.25224849305701],[-22.43002430024299,65.26744568848596],[-22.415624156241563,65.27082284302571],[-22.37962379623795,65.26744568848596],[-22.368823688236887,65.27251142029559],[-22.340023400234003,65.29615150207397],[-22.31122311223112,65.30459438842337],[-22.199621996219946,65.31810300658242],[-22.106021060210594,65.34849739744033],[-22.07002070020701,65.36707174740903],[-22.005220052200514,65.38058036556808],[-21.983619836198358,65.39240040645728],[-21.98721987219872,65.39240040645728],[-21.990819908199086,65.39408898372716],[-21.990819908199086,65.3974661382669],[-21.97641976419763,65.3974661382669],[-21.95121951219511,65.38564609737773],[-21.93681936819368,65.38564609737773],[-21.94401944019441,65.40084329280668],[-21.947619476194745,65.40590902461634],[-21.88641886418864,65.42110622004529],[-21.756817568175677,65.43799199274412],[-21.720817208172065,65.44812345636339],[-21.695616956169545,65.45318918817304],[-21.79281792817929,65.43968057001399],[-21.82521825218251,65.43968057001399],[-21.897218972189705,65.44643487909352],[-21.958419584195838,65.43968057001399],[-21.97641976419763,65.43968057001399],[-21.958419584195838,65.45487776544294],[-21.93681936819368,65.46669780633212],[-21.972819728197265,65.48189500176105],[-21.983619836198358,65.49202646538035],[-21.990819908199086,65.5072236608093],[-22.00162001620015,65.50384650626953],[-22.016020160201606,65.50215792899965],[-22.030420304203034,65.50046935172978],[-22.04482044820449,65.50046935172978],[-22.041220412204126,65.4869607335707],[-22.048420484204826,65.48189500176105],[-22.062820628206282,65.48358357903095],[-22.073620736207346,65.4869607335707],[-22.080820808208074,65.49709219719],[-22.10242102421023,65.52073227896835],[-22.113221132211322,65.52917516531778],[-22.109621096210958,65.51228939261895],[-22.109621096210958,65.49709219719],[-22.12042120421205,65.48527215630082],[-22.134821348213478,65.47345211541165],[-22.15282152821527,65.46500922906222],[-22.163621636216362,65.46163207452247],[-22.17082170821709,65.45994349725257],[-22.174421744217426,65.45487776544294],[-22.181621816218154,65.44643487909352],[-22.188821888218882,65.43630341547421],[-22.199621996219946,65.43292626093447],[-22.23562235622356,65.43123768366456],[-22.25362253622535,65.43292626093447],[-22.282422824228235,65.45150061090317],[-22.340023400234003,65.47345211541165],[-22.383223832238315,65.48358357903095],[-22.38682386823868,65.49202646538035],[-22.368823688236887,65.5072236608093],[-22.34722347223473,65.51397796988883],[-22.23562235622356,65.52410943350813],[-22.188821888218882,65.53761805166718],[-22.163621636216362,65.54099520620696],[-22.15282152821527,65.54606093801661],[-22.149221492214906,65.55619240163588],[-22.149221492214906,65.56801244252506],[-22.149221492214906,65.57645532887449],[-22.138421384213842,65.58320963795401],[-22.12762127621275,65.58996394703354],[-22.106021060210594,65.59671825611306],[-22.134821348213478,65.59334110157332],[-22.21042210422104,65.54943809255636],[-22.242822428224287,65.53761805166718],[-22.275222752227506,65.53086374258766],[-22.34722347223473,65.52917516531778],[-22.34722347223473,65.5359294743973],[-22.30402304023039,65.54774951528648],[-22.293222932229327,65.55450382436601],[-22.293222932229327,65.56294671071544],[-22.31122311223112,65.56125813344553],[-22.325623256232547,65.55619240163588],[-22.35442354423543,65.54099520620696],[-22.372423724237223,65.53761805166718],[-22.38682386823868,65.54268378347683],[-22.397623976239743,65.54774951528648],[-22.415624156241563,65.54943809255636],[-22.415624156241563,65.54099520620696],[-22.40482404824047,65.5342408971274],[-22.408424084240835,65.52410943350813],[-22.422824228242263,65.5173551244286],[-22.48042480424803,65.5072236608093],[-22.494824948249487,65.51060081534905],[-22.50562505625055,65.52917516531778],[-22.50562505625055,65.5443723607467],[-22.502025020250187,65.55788097890579],[-22.502025020250187,65.56970101979496],[-22.51282512825128,65.58658679249379],[-22.534425344253435,65.62204691516132],[-22.545225452254527,65.6338669560505],[-22.559625596255955,65.6254240697011],[-22.55602556025559,65.61866976062154],[-22.559625596255955,65.60853829700227],[-22.55602556025559,65.59840683338297],[-22.541625416254163,65.57645532887449],[-22.541625416254163,65.56801244252506],[-22.545225452254527,65.56125813344553],[-22.566825668256683,65.54268378347683],[-22.577625776257747,65.5359294743973],[-22.58842588425884,65.5359294743973],[-22.602826028260267,65.54606093801661],[-22.624426244262423,65.56463528798531],[-22.63162631626315,65.56632386525519],[-22.63882638826388,65.53930662893706],[-22.646026460264608,65.53255231985753],[-22.65682656826567,65.52748658804788],[-22.667626676266764,65.52917516531778],[-22.678426784267828,65.53255231985753],[-22.685626856268556,65.54099520620696],[-22.70722707227071,65.57138959706484],[-22.710827108271076,65.58827536976366],[-22.703627036270348,65.60516114246249],[-22.68202682026819,65.6237354924312],[-22.692826928269284,65.62880122424085],[-22.696426964269648,65.62880122424085],[-22.700027000269984,65.6254240697011],[-22.710827108271076,65.6237354924312],[-22.736027360273596,65.63217837878062],[-22.754027540275388,65.63217837878062],[-22.757627576275752,65.63048980151072],[-22.76482764827648,65.6237354924312],[-22.76482764827648,65.61866976062154],[-22.754027540275388,65.59671825611306],[-22.743227432274324,65.58489821522389],[-22.718027180271804,65.5072236608093],[-22.73242732427323,65.50215792899965],[-22.746827468274688,65.50384650626953],[-22.768427684276844,65.5072236608093],[-22.786427864278636,65.5072236608093],[-22.786427864278636,65.51397796988883],[-22.779227792277908,65.52242085623823],[-22.782827828278272,65.52917516531778],[-22.797227972279728,65.5342408971274],[-22.808028080280792,65.5359294743973],[-22.844028440284404,65.53086374258766],[-22.854828548285468,65.53255231985753],[-22.854828548285468,65.54099520620696],[-22.862028620286196,65.54099520620696],[-22.887228872288716,65.54099520620696],[-22.887228872288716,65.54943809255636],[-22.862028620286196,65.55956955617566],[-22.818828188281884,65.58489821522389],[-22.793627936279364,65.58996394703354],[-22.800828008280064,65.60178398792272],[-22.818828188281884,65.60853829700227],[-22.854828548285468,65.61866976062154],[-22.858428584285832,65.59502967884319],[-22.880028800287988,65.57645532887449],[-22.905229052290508,65.56632386525519],[-22.926829268292664,65.57307817433471],[-22.934029340293392,65.58489821522389],[-22.937629376293756,65.59671825611306],[-22.94122941229412,65.60684971973237],[-22.952029520295184,65.61022687427214],[-22.95562955629555,65.60347256519262],[-22.959229592295912,65.57138959706484],[-22.962829628296276,65.56294671071544],[-22.984429844298432,65.55112666982623],[-23.045630456304565,65.5443723607467],[-23.07443074430745,65.53761805166718],[-23.128431284312825,65.54943809255636],[-23.15723157231571,65.56294671071544],[-23.153631536315345,65.57645532887449],[-23.153631536315345,65.58320963795401],[-23.18243182431823,65.57645532887449],[-23.20043200432005,65.55619240163588],[-23.20043200432005,65.5342408971274],[-23.18243182431823,65.52242085623823],[-23.18243182431823,65.51397796988883],[-23.196831968319685,65.50891223807918],[-23.21843218432184,65.49371504265022],[-23.23283232832327,65.4869607335707],[-23.247232472324725,65.48527215630082],[-23.315633156331558,65.48864931084057],[-23.340833408334078,65.49371504265022],[-23.35883358833587,65.49540361992013],[-23.373233732337326,65.49878077445987],[-23.38403384033839,65.5055350835394],[-23.394833948339482,65.51397796988883],[-23.40203402034021,65.51397796988883],[-23.40923409234091,65.51397796988883],[-23.412834128341274,65.51228939261895],[-23.423634236342366,65.5072236608093],[-23.420034200342002,65.5072236608093],[-23.416434164341638,65.5055350835394],[-23.40923409234091,65.50046935172978],[-23.438034380343794,65.49540361992013],[-23.492034920349198,65.4785178472213],[-23.625236252362527,65.46669780633212],[-23.657636576365746,65.47345211541165],[-23.657636576365746,65.46163207452247],[-23.66123661236611,65.45825491998269],[-23.66843668436684,65.45656634271282],[-23.675636756367567,65.45318918817304],[-23.715237152371515,65.42617195185491],[-23.898838988389883,65.40422044734646],[-23.942039420394195,65.40759760188621],[-23.985239852398507,65.41941764277539],[-23.985239852398507,65.42617195185491],[-23.978039780397808,65.43461483820434],[-23.98163981639817,65.44136914728387],[-23.992439924399235,65.44812345636339],[-24.003240032400328,65.45318918817304],[-23.985239852398507,65.45318918817304],[-23.978039780397808,65.45150061090317],[-23.97083970839708,65.44643487909352],[-23.967239672396715,65.46500922906222],[-23.985239852398507,65.47345211541165],[-24.010440104401027,65.47345211541165],[-24.017640176401756,65.45994349725257],[-24.042840428404276,65.47514069268152],[-24.19764197641976,65.50046935172978],[-24.48204482044821,65.48864931084057],[-24.518045180451793,65.49202646538035],[-24.53964539645395,65.5072236608093],[-24.496444964449637,65.51904370169848],[-24.47484474844748,65.52748658804788],[-24.46404464044639,65.53761805166718],[-24.453244532445325,65.54606093801661],[-24.392043920439193,65.56125813344553],[-24.3740437404374,65.56970101979496],[-24.370443704437037,65.58489821522389],[-24.370443704437037,65.60347256519262],[-24.366843668436672,65.61866976062154],[-24.334443344433453,65.62711264697097],[-24.316443164431632,65.63555553332037],[-24.302043020430204,65.63893268786015],[-24.276842768427684,65.63724411059027],[-24.179641796417968,65.61191545154202],[-24.150841508415084,65.61022687427214],[-24.136441364413628,65.60684971973237],[-24.078840788407888,65.57645532887449],[-24.042840428404276,65.56632386525519],[-23.97083970839708,65.55788097890579],[-23.95643956439565,65.54943809255636],[-23.93843938439383,65.53761805166718],[-23.924039240392403,65.52917516531778],[-23.891638916389155,65.52242085623823],[-23.86283862838627,65.52242085623823],[-23.80523805238053,65.5359294743973],[-23.852038520385207,65.5342408971274],[-23.877238772387727,65.53761805166718],[-23.89523895238952,65.54099520620696],[-23.909639096390947,65.55112666982623],[-23.924039240392403,65.56294671071544],[-23.942039420394195,65.57307817433471],[-23.960039600395987,65.57645532887449],[-24.010440104401027,65.60009541065284],[-24.035640356403547,65.61866976062154],[-24.068040680406796,65.63724411059027],[-24.086040860408588,65.65075272874932],[-23.934839348393467,65.63893268786015],[-23.83763837638375,65.61360402881189],[-23.80523805238053,65.61022687427214],[-23.826838268382687,65.6254240697011],[-23.852038520385207,65.63893268786015],[-23.88083880838809,65.64737557420955],[-23.924039240392403,65.6541298832891],[-23.978039780397808,65.66932707871803],[-24.02124021240212,65.67608138779755],[-24.04644046440464,65.68452427414698],[-24.078840788407888,65.70647577865546],[-24.1220412204122,65.74024732405312],[-24.125641256412564,65.75375594221217],[-24.1220412204122,65.76557598310134],[-24.125641256412564,65.77739602399052],[-24.136441364413628,65.7892160648797],[-24.093240932409316,65.80441326030865],[-24.050040500405004,65.80272468303878],[-23.62883628836289,65.70647577865546],[-23.6180361803618,65.70141004684581],[-23.600036000360006,65.68621285141685],[-23.574835748357486,65.67776996506745],[-23.56763567635676,65.6727042332578],[-23.556835568355666,65.6541298832891],[-23.56043560435603,65.6439984196698],[-23.571235712357122,65.63217837878062],[-23.57843578435785,65.61866976062154],[-23.56043560435603,65.61360402881189],[-23.538835388353874,65.62204691516132],[-23.499234992349926,65.64568699693967],[-23.492034920349198,65.64062126513002],[-23.47763477634777,65.63217837878062],[-23.466834668346678,65.64062126513002],[-23.412834128341274,65.63555553332037],[-23.387633876338754,65.63893268786015],[-23.387633876338754,65.64568699693967],[-23.398433984339846,65.64737557420955],[-23.40203402034021,65.64906415147945],[-23.40923409234091,65.65919561509872],[-23.391233912339118,65.65919561509872],[-23.348033480334806,65.6727042332578],[-23.330033300332985,65.6727042332578],[-23.315633156331558,65.6727042332578],[-23.297632976329766,65.6727042332578],[-23.286832868328673,65.67945854233733],[-23.405634056340546,65.67439281052768],[-23.45963459634595,65.6828356968771],[-23.499234992349926,65.69296716049638],[-23.51003510035099,65.69972146957593],[-23.52803528035281,65.71154151046511],[-23.538835388353874,65.72336155135429],[-23.52803528035281,65.72842728316394],[-23.466834668346678,65.74024732405312],[-23.45243452434525,65.73687016951334],[-23.438034380343794,65.73180443770369],[-23.355233552335505,65.73687016951334],[-23.330033300332985,65.74531305586277],[-23.30843308433083,65.74869021040251],[-23.265232652326517,65.74193590132299],[-23.24363243632436,65.74024732405312],[-23.22563225632257,65.74869021040251],[-23.236432364323633,65.75375594221217],[-23.24363243632436,65.75544451948204],[-23.25083250832509,65.75544451948204],[-23.25083250832509,65.76051025129169],[-23.204032040320385,65.77401886945077],[-23.189631896318957,65.78246175580017],[-23.24363243632436,65.77908460126042],[-23.27603276032761,65.77233029218087],[-23.31923319233192,65.75713309675194],[-23.589235892358914,65.76051025129169],[-23.64323643236432,65.76895313764112],[-23.675636756367567,65.78246175580017],[-23.72963729637297,65.77401886945077],[-23.740437404374035,65.77908460126042],[-23.75483754837549,65.7892160648797],[-23.81243812438123,65.81623330119783],[-23.84483844838448,65.84325053751596],[-23.866438664386635,65.87533350564371],[-23.86283862838627,65.90572789650162],[-23.81963819638196,65.9259908237402],[-23.801638016380167,65.9259908237402],[-23.7440374403744,65.91248220558114],[-23.66843668436684,65.90572789650162],[-23.650436504365047,65.90066216469197],[-23.6180361803618,65.88377639199314],[-23.600036000360006,65.87871066018349],[-23.582035820358186,65.87702208291361],[-23.517235172351718,65.88546496926301],[-23.394833948339482,65.86351346475453],[-23.355233552335505,65.86351346475453],[-23.28323283232831,65.84325053751596],[-23.24363243632436,65.83649622843643],[-23.211232112321113,65.84325053751596],[-23.2940329403294,65.85507057840513],[-23.31923319233192,65.86857919656418],[-23.40203402034021,65.87026777383409],[-23.42723427234273,65.87702208291361],[-23.474034740347406,65.89559643288231],[-23.57843578435785,65.90572789650162],[-23.600036000360006,65.91248220558114],[-23.65403654036541,65.94287659643902],[-23.682836828368266,65.94963090551857],[-23.697236972369723,65.95807379186797],[-23.71883718837188,65.96145094640775],[-23.76203762037619,65.98002529637645],[-23.80523805238053,66.0036653781548],[-23.81243812438123,66.01210826450423],[-23.81243812438123,66.04250265536211],[-23.808838088380867,66.05769985079107],[-23.790837908379075,66.07120846895012],[-23.751237512375127,66.07627420075977],[-23.700837008370087,66.07120846895012],[-23.517235172351718,66.02730545993316],[-23.466834668346678,66.02055115085363],[-23.430834308343066,66.02899403720306],[-23.423634236342366,66.01379684177411],[-23.412834128341274,66.00028822361503],[-23.394833948339482,65.99184533726563],[-23.373233732337326,65.98846818272585],[-23.373233732337326,65.9935339145355],[-23.391233912339118,66.00535395542468],[-23.423634236342366,66.03574834628259],[-23.441634416344158,66.04250265536211],[-23.466834668346678,66.04419123263199],[-23.513635136351354,66.05432269625129],[-23.53523535235351,66.05601127352116],[-23.546035460354602,66.05938842806094],[-23.57843578435785,66.07627420075977],[-23.63603636036359,66.09822570526825],[-23.66843668436684,66.11680005523695],[-23.63603636036359,66.12862009612613],[-23.549635496354966,66.1319972506659],[-23.48483484834847,66.12693151885625],[-23.394833948339482,66.09822570526825],[-23.420034200342002,66.10666859161765],[-23.45963459634595,66.13368582793578],[-23.481234812348106,66.13875155974543],[-23.57843578435785,66.13706298247556],[-23.600036000360006,66.14550586882496],[-23.600036000360006,66.15226017790448],[-23.589235892358914,66.159014486984],[-23.574835748357486,66.16914595060331],[-23.56043560435603,66.17590025968283],[-23.549635496354966,66.17758883695274],[-23.542435424354238,66.17927741422261],[-23.50283502835029,66.18096599149249],[-23.48483484834847,66.18603172330214],[-23.48483484834847,66.19954034146119],[-23.45963459634595,66.20460607327084],[-23.304833048330465,66.18603172330214],[-23.204032040320385,66.15563733244426],[-23.171631716317165,66.15226017790448],[-23.153631536315345,66.14550586882496],[-23.128431284312825,66.130308673396],[-23.110431104311033,66.1117343234273],[-23.114031140311397,66.09822570526825],[-23.10683106831067,66.07627420075977],[-23.05643056430563,66.10835716888752],[-23.038430384303837,66.1117343234273],[-23.027630276302745,66.10835716888752],[-23.01683016830168,66.1032914370779],[-23.00603006030059,66.08978281891882],[-22.984429844298432,66.07965135529952],[-22.984429844298432,66.0745856234899],[-22.984429844298432,66.05938842806094],[-22.977229772297704,66.04419123263199],[-22.977229772297704,66.03405976901269],[-22.984429844298432,66.02561688266329],[-22.99882998829989,66.01379684177411],[-23.00603006030059,66.01210826450423],[-23.04923049230493,65.97664814183668],[-23.060030600305993,65.9665166782174],[-23.052830528305265,65.9665166782174],[-23.03123031230311,65.98171387364633],[-22.977229772297704,66.00873110996446],[-22.95562955629555,66.02223972812351],[-22.952029520295184,66.03068261447294],[-22.944829448294485,66.03912550082234],[-22.94122941229412,66.04587980990186],[-22.93042930429303,66.04925696444164],[-22.9160291602916,66.04587980990186],[-22.908829088290872,66.03912550082234],[-22.894428944289444,66.01548541904398],[-22.89802898028981,66.01041968723433],[-22.901629016290144,66.00704253269458],[-22.887228872288716,66.01379684177411],[-22.87282872828729,66.02223972812351],[-22.854828548285468,66.02899403720306],[-22.84042840428404,66.02223972812351],[-22.858428584285832,65.99859964634516],[-22.880028800287988,65.9749595645668],[-22.908829088290872,65.9563852145981],[-22.94122941229412,65.9462537509788],[-22.901629016290144,65.94794232824867],[-22.883628836288352,65.95131948278845],[-22.869228692286924,65.95976236913785],[-22.84762847628477,65.98677960545598],[-22.833228332283312,66.00197680088493],[-22.82242822428225,66.00535395542468],[-22.808028080280792,65.97833671910658],[-22.81522815228152,65.94963090551857],[-22.826028260282584,65.9259908237402],[-22.818828188281884,65.91248220558114],[-22.786427864278636,65.95976236913785],[-22.786427864278636,65.9834024509162],[-22.782827828278272,66.00873110996446],[-22.775627756277544,66.03237119174281],[-22.76482764827648,66.04925696444164],[-22.757627576275752,66.05601127352116],[-22.750427504275024,66.05769985079107],[-22.68202682026819,66.05601127352116],[-22.674826748267463,66.05263411898142],[-22.674826748267463,66.03912550082234],[-22.667626676266764,66.03068261447294],[-22.65682656826567,66.02561688266329],[-22.620826208262088,66.00873110996446],[-22.584825848258475,65.98171387364633],[-22.577625776257747,65.97833671910658],[-22.577625776257747,65.97327098729693],[-22.58122581225811,65.95131948278845],[-22.584825848258475,65.94118801916915],[-22.592025920259204,65.93105655554984],[-22.599225992259903,65.9259908237402],[-22.599225992259903,65.92261366920044],[-22.592025920259204,65.91923651466067],[-22.646026460264608,65.86013631021478],[-22.65682656826567,65.84156196024608],[-22.649626496264943,65.83311907389665],[-22.635226352263516,65.83480765116653],[-22.610026100260995,65.87364492837384],[-22.545225452254527,65.9462537509788],[-22.5380253802538,65.9665166782174],[-22.5380253802538,65.9749595645668],[-22.516425164251643,65.9749595645668],[-22.502025020250187,65.9665166782174],[-22.491224912249123,65.95131948278845],[-22.476824768247667,65.93949944189927],[-22.469624696246967,65.93949944189927],[-22.46242462424624,65.94118801916915],[-22.458824588245875,65.94118801916915],[-22.448024480244783,65.93274513281975],[-22.451624516245147,65.92430224647032],[-22.45522455224551,65.9175479373908],[-22.45522455224551,65.91079362831127],[-22.440824408244083,65.90572789650162],[-22.440824408244083,65.91079362831127],[-22.43722437224372,65.92092509193054],[-22.43002430024299,65.9276794010101],[-22.422824228242263,65.9259908237402],[-22.422824228242263,65.91923651466067],[-22.43002430024299,65.88546496926301],[-22.43722437224372,65.87364492837384],[-22.458824588245875,65.85507057840513],[-22.469624696246967,65.84325053751596],[-22.469624696246967,65.83649622843643],[-22.43002430024299,65.8466276920557],[-22.394023940239407,65.90235074196184],[-22.36162361623616,65.91248220558114],[-22.36162361623616,65.91923651466067],[-22.37962379623795,65.92936797827997],[-22.394023940239407,65.94794232824867],[-22.401224012240107,65.96989383275715],[-22.408424084240835,65.98846818272585],[-22.422824228242263,66.00197680088493],[-22.440824408244083,66.01548541904398],[-22.46242462424624,66.02561688266329],[-22.484024840248395,66.02899403720306],[-22.473224732247303,66.04250265536211],[-22.469624696246967,66.05432269625129],[-22.46242462424624,66.06614273714047],[-22.448024480244783,66.07627420075977],[-22.43002430024299,66.07965135529952],[-22.4120241202412,66.07965135529952],[-22.394023940239407,66.08471708710917],[-22.37962379623795,66.09822570526825],[-22.401224012240107,66.09653712799835],[-22.451624516245147,66.08640566437907],[-22.469624696246967,66.07965135529952],[-22.48762487624876,66.07627420075977],[-22.570425704257048,66.0931599734586],[-22.628026280262787,66.11680005523695],[-22.86562865628656,66.159014486984],[-22.937629376293756,66.18940887784191],[-22.977229772297704,66.23500046412875],[-22.93042930429303,66.24682050501792],[-22.782827828278272,66.26201770044685],[-22.750427504275024,66.26201770044685],[-22.646026460264608,66.2485090822878],[-22.617226172261724,66.2485090822878],[-22.60642606426063,66.24682050501792],[-22.602826028260267,66.24344335047815],[-22.599225992259903,66.2383776186685],[-22.592025920259204,66.23500046412875],[-22.566825668256683,66.22318042323957],[-22.552425524255227,66.22149184596967],[-22.5380253802538,66.22655757777932],[-22.545225452254527,66.23162330958897],[-22.548825488254863,66.23500046412875],[-22.559625596255955,66.2485090822878],[-22.509225092250915,66.2485090822878],[-22.484024840248395,66.25188623682757],[-22.440824408244083,66.26539485498662],[-22.390423904239043,66.2670834322565],[-22.368823688236887,66.27552631860593],[-22.502025020250187,66.2670834322565],[-22.545225452254527,66.27552631860593],[-22.56322563225632,66.28396920495533],[-22.559625596255955,66.28565778222523],[-22.545225452254527,66.28565778222523],[-22.527225272252707,66.29241209130475],[-22.516425164251643,66.30085497765415],[-22.502025020250187,66.3059207094638],[-22.48762487624876,66.30929786400358],[-22.469624696246967,66.30929786400358],[-22.469624696246967,66.31605217308311],[-22.491224912249123,66.32280648216263],[-22.50562505625055,66.31942932762288],[-22.545225452254527,66.30254355492406],[-22.595625956259568,66.29241209130475],[-22.653226532265307,66.28903493676498],[-22.700027000269984,66.29410066857463],[-22.710827108271076,66.2957892458445],[-22.710827108271076,66.3059207094638],[-22.703627036270348,66.31436359581323],[-22.68202682026819,66.32280648216263],[-22.678426784267828,66.33124936851206],[-22.674826748267463,66.35151229575064],[-22.667626676266764,66.35657802756029],[-22.65682656826567,66.36333233663981],[-22.60642606426063,66.37177522298924],[-22.649626496264943,66.36839806844947],[-22.685626856268556,66.35826660483016],[-22.76482764827648,66.32449505943251],[-22.782827828278272,66.31942932762288],[-22.82242822428225,66.31605217308311],[-22.836828368283676,66.32280648216263],[-22.829628296282948,66.33631510032171],[-22.811628116281156,66.34982371848076],[-22.800828008280064,66.35657802756029],[-22.800828008280064,66.36502091390972],[-22.833228332283312,66.35826660483016],[-22.851228512285104,66.35320087302054],[-22.869228692286924,66.34475798667111],[-22.908829088290872,66.31436359581323],[-22.9160291602916,66.31267501854333],[-22.94122941229412,66.30085497765415],[-23.09963099630997,66.31774075035298],[-23.139231392313917,66.32787221397228],[-23.1680316803168,66.34306940940124],[-23.18243182431823,66.34813514121089],[-23.189631896318957,66.35488945029041],[-23.17523175231753,66.36502091390972],[-23.139231392313917,66.36502091390972],[-23.088830888308877,66.35826660483016],[-23.045630456304565,66.35995518210007],[-23.02403024030241,66.39203815022782],[-23.052830528305265,66.39372672749772],[-23.085230852308513,66.403858191117],[-23.114031140311397,66.41736680927607],[-23.135631356313553,66.432564004705],[-23.103231032310305,66.4426954683243],[-23.07443074430745,66.43762973651465],[-23.0420304203042,66.42580969562547],[-23.013230132301317,66.41905538654595],[-23.020430204302045,66.43087542743513],[-23.02403024030241,66.43594115924478],[-23.03123031230311,66.44100689105443],[-22.92322923229233,66.44776120013395],[-22.9160291602916,66.44607262286408],[-22.908829088290872,66.4426954683243],[-22.901629016290144,66.43087542743513],[-22.894428944289444,66.42580969562547],[-22.87282872828729,66.4241211183556],[-22.86562865628656,66.43087542743513],[-22.869228692286924,66.44100689105443],[-22.883628836288352,66.44607262286408],[-22.901629016290144,66.44944977740383],[-22.952029520295184,66.46633555010266],[-22.851228512285104,66.46633555010266],[-22.833228332283312,66.46464697283278],[-22.797227972279728,66.44944977740383],[-22.750427504275024,66.4426954683243],[-22.71442714427144,66.4241211183556],[-22.696426964269648,66.41905538654595],[-22.671226712267128,66.42074396381582],[-22.63162631626315,66.43931831378455],[-22.60642606426063,66.44607262286408],[-22.610026100260995,66.44944977740383],[-22.61362613626136,66.45958124102313],[-22.574025740257383,66.46633555010266],[-22.541625416254163,66.45620408648338],[-22.509225092250915,66.44100689105443],[-22.440824408244083,66.42749827289538],[-22.426424264242627,66.42749827289538],[-22.422824228242263,66.44100689105443],[-22.43002430024299,66.44944977740383],[-22.45522455224551,66.45789266375326],[-22.46242462424624,66.46633555010266],[-22.43002430024299,66.46464697283278],[-22.401224012240107,66.4528269319436],[-22.376023760237587,66.432564004705],[-22.368823688236887,66.40892392292665],[-22.350823508235067,66.39372672749772],[-22.268022680226807,66.37515237752899],[-22.242822428224287,66.35657802756029],[-22.257222572225714,66.34644656394099],[-22.24642246422465,66.34138083213134],[-22.20322203222031,66.33800367759159],[-22.20322203222031,66.32956079124216],[-22.22122221222213,66.33293794578194],[-22.22842228422283,66.32787221397228],[-22.22842228422283,66.31942932762288],[-22.22842228422283,66.30929786400358],[-22.224822248222466,66.30423213219393],[-22.217622176221766,66.2974778231144],[-22.214022140221402,66.28903493676498],[-22.22842228422283,66.28228062768545],[-22.22842228422283,66.27552631860593],[-22.217622176221766,66.2687720095264],[-22.20322203222031,66.27383774133605],[-22.188821888218882,66.27890347314568],[-22.17082170821709,66.28228062768545],[-22.156421564215634,66.28228062768545],[-22.14562145621457,66.27890347314568],[-22.138421384213842,66.27214916406615],[-22.12762127621275,66.2687720095264],[-22.12042120421205,66.27552631860593],[-22.106021060210594,66.2873463594951],[-22.088020880208802,66.28903493676498],[-22.080820808208074,66.28228062768545],[-22.088020880208802,66.2687720095264],[-22.016020160201606,66.27214916406615],[-21.998019980199786,66.2687720095264],[-21.98721987219872,66.27383774133605],[-21.980019800197994,66.27552631860593],[-21.96921969219693,66.27214916406615],[-21.9620196201962,66.2687720095264],[-21.958419584195838,66.26539485498662],[-21.922419224192225,66.24175477320827],[-21.929619296192953,66.23331188685884],[-21.990819908199086,66.21304895962027],[-21.97641976419763,66.20967180508049],[-21.965619656196566,66.21304895962027],[-21.95121951219511,66.21811469142992],[-21.93681936819368,66.22149184596967],[-21.922419224192225,66.21980326869979],[-21.87561875618755,66.20460607327084],[-21.86121861218612,66.19616318692144],[-21.854018540185393,66.19278603238166],[-21.84321843218433,66.19278603238166],[-21.821618216182145,66.19785176419131],[-21.814418144181445,66.19954034146119],[-21.74961749617495,66.18603172330214],[-21.753217532175313,66.18265456876239],[-21.756817568175677,66.17252310514309],[-21.738817388173885,66.16745737333343],[-21.731617316173157,66.15563733244426],[-21.731617316173157,66.14381729155508],[-21.74241742417425,66.13875155974543],[-21.738817388173885,66.1319972506659],[-21.731617316173157,66.1218657870466],[-21.731617316173157,66.11680005523695],[-21.728017280172793,66.11848863250682],[-21.728017280172793,66.101602859808],[-21.72441724417243,66.0830285098393],[-21.71721717217173,66.07627420075977],[-21.702817028170273,66.07120846895012],[-21.688416884168845,66.07120846895012],[-21.670416704167025,66.07627420075977],[-21.652416524165233,66.07796277802964],[-21.64161641616417,66.07120846895012],[-21.638016380163805,66.05601127352116],[-21.64881648816487,66.04419123263199],[-21.65961659616596,66.03237119174281],[-21.66681666816669,66.02223972812351],[-21.656016560165597,66.02392830539341],[-21.638016380163805,66.02730545993316],[-21.627216272162713,66.03405976901269],[-21.620016200161984,66.03912550082234],[-21.620016200161984,66.05601127352116],[-21.620016200161984,66.06276558260069],[-21.64161641616417,66.0830285098393],[-21.627216272162713,66.08978281891882],[-21.594815948159464,66.09653712799835],[-21.54801548015479,66.09822570526825],[-21.54081540815409,66.09484855072847],[-21.537215372153725,66.08640566437907],[-21.530015300152996,66.07965135529952],[-21.526415264152632,66.07627420075977],[-21.50841508415084,66.07289704621999],[-21.522815228152268,66.06445415987059],[-21.54081540815409,66.05769985079107],[-21.551615516155152,66.05601127352116],[-21.55881558815588,66.04587980990186],[-21.555215552155516,66.03912550082234],[-21.53361533615336,66.02561688266329],[-21.50841508415084,66.01717399631386],[-21.400414004140032,66.02899403720306],[-21.371613716137148,66.02561688266329],[-21.35001350013499,66.02055115085363],[-21.3320133201332,66.00873110996446],[-21.317613176131744,65.98846818272585],[-21.4580145801458,65.98171387364633],[-21.486814868148684,65.97327098729693],[-21.59121591215913,65.95976236913785],[-21.605616056160557,65.95976236913785],[-21.587615876158765,65.9462537509788],[-21.55881558815588,65.94794232824867],[-21.504815048150476,65.95976236913785],[-21.411214112141124,65.96820525548728],[-21.378813788137876,65.95976236913785],[-21.393213932139304,65.95131948278845],[-21.436414364143644,65.93949944189927],[-21.436414364143644,65.93274513281975],[-21.328413284132836,65.94456517370892],[-21.303213032130316,65.9361222873595],[-21.288812888128888,65.91585936012092],[-21.285212852128524,65.89897358742209],[-21.296012960129588,65.88546496926301],[-21.32481324813247,65.87871066018349],[-21.278012780127796,65.86351346475453],[-21.278012780127796,65.85675915567501],[-21.328413284132836,65.8094789921183],[-21.346413464134628,65.79597037395925],[-21.375213752137512,65.78415033307004],[-21.476014760147592,65.76895313764112],[-21.476014760147592,65.76051025129169],[-21.454414544145436,65.76051025129169],[-21.418414184141824,65.76388740583147],[-21.400414004140032,65.76051025129169],[-21.346413464134628,65.74700163313264],[-21.3320133201332,65.74024732405312],[-21.414814148141488,65.69972146957593],[-21.443614436144344,65.6912785832265],[-21.580415804158037,65.69296716049638],[-21.587615876158765,65.69803289230603],[-21.605616056160557,65.70985293319521],[-21.60921609216092,65.71323008773498],[-21.630816308163077,65.71998439681451],[-21.64881648816487,65.73180443770369],[-21.65961659616596,65.74700163313264],[-21.65961659616596,65.75544451948204],[-21.68481684816848,65.76895313764112],[-21.71721717217173,65.77570744672065],[-21.74961749617495,65.77570744672065],[-21.778417784177833,65.76895313764112],[-21.756817568175677,65.76726456037122],[-21.710017100171,65.75544451948204],[-21.695616956169545,65.74869021040251],[-21.69201692016921,65.74531305586277],[-21.67401674016739,65.72842728316394],[-21.66681666816669,65.72842728316394],[-21.66681666816669,65.71491866500486],[-21.66681666816669,65.70816435592533],[-21.677616776167753,65.70141004684581],[-21.688416884168845,65.69296716049638],[-21.67401674016739,65.68621285141685],[-21.663216632166325,65.6811471196072],[-21.65961659616596,65.67608138779755],[-21.656016560165597,65.6625727696385],[-21.645216452164505,65.65581846055898],[-21.63441634416344,65.65075272874932],[-21.627216272162713,65.64906415147945],[-21.60921609216092,65.6423098423999],[-21.443614436144344,65.6439984196698],[-21.414814148141488,65.63724411059027],[-21.400414004140032,65.6237354924312],[-21.411214112141124,65.61191545154202],[-21.461614616146164,65.57814390614436],[-21.48321483214832,65.56970101979496],[-21.48321483214832,65.56294671071544],[-21.43281432814328,65.57307817433471],[-21.371613716137148,65.59671825611306],[-21.321213212132108,65.60178398792272],[-21.29961299612995,65.55956955617566],[-21.321213212132108,65.52242085623823],[-21.371613716137148,65.4869607335707],[-21.429214292142916,65.46163207452247],[-21.476014760147592,65.45318918817304],[-21.476014760147592,65.44643487909352],[-21.375213752137512,65.46332065179234],[-21.335613356133564,65.4768292699514],[-21.314013140131408,65.48020642449117],[-21.292412924129223,65.4785178472213],[-21.278012780127796,65.47345211541165],[-21.24921249212491,65.45318918817304],[-21.213212132121328,65.43799199274412],[-21.202412024120235,65.42786052912481],[-21.209612096120964,65.41097475642599],[-21.195211952119507,65.40759760188621],[-21.191611916119143,65.40084329280668],[-21.195211952119507,65.39071182918738],[-21.195211952119507,65.37720321102833],[-21.188011880118808,65.35525170651985],[-21.188011880118808,65.3400545110909],[-21.191611916119143,65.31979158385232],[-21.191611916119143,65.30966012023302],[-21.15561155611556,65.25731422486666],[-21.141211412114103,65.24718276124736],[-21.144811448114467,65.24549418397748],[-21.144811448114467,65.24380560670758],[-21.14841148411483,65.24042845216783],[-21.126811268112675,65.2319855658184],[-21.108811088110883,65.21509979311958],[-21.09801098010979,65.19652544315088],[-21.10521105211052,65.17795109318217],[-21.10521105211052,65.17288536137252],[-21.090810908109063,65.166131052293],[-21.083610836108363,65.16781962956287],[-21.07281072810727,65.17288536137252],[-21.065610656106543,65.18639397953157],[-21.080010800108,65.21003406130993],[-21.083610836108363,65.22691983400875],[-21.087210872108727,65.23367414308831],[-21.094410944109427,65.24380560670758],[-21.112411124111247,65.25900280213654],[-21.119611196111947,65.26744568848596],[-21.10521105211052,65.27926572937514],[-21.09801098010979,65.28264288391489],[-21.101611016110155,65.29108577026432],[-21.09801098010979,65.29784007934384],[-21.087210872108727,65.3029058111535],[-21.080010800108,65.30797154296314],[-21.07281072810727,65.32485731566197],[-21.07281072810727,65.33836593382102],[-21.094410944109427,65.41435191096573],[-21.09801098010979,65.44474630182364],[-21.087210872108727,65.45994349725257],[-21.05481054810548,65.45150061090317],[-21.033210332103323,65.43461483820434],[-21.00441004410044,65.39240040645728],[-20.975609756097555,65.36707174740903],[-20.968409684096827,65.3603174383295],[-20.961209612096127,65.35356312924998],[-20.92880928809288,65.34849739744033],[-20.914409144091422,65.34343166563067],[-20.907209072090723,65.3501859747102],[-20.932409324093243,65.37382605648855],[-20.957609576095763,65.40422044734646],[-20.975609756097555,65.43799199274412],[-20.982809828098283,65.46669780633212],[-20.986409864098647,65.49033788811047],[-20.986409864098647,65.5072236608093],[-20.982809828098283,65.52242085623823],[-20.97920979209792,65.52748658804788],[-20.968409684096827,65.5359294743973],[-20.961209612096127,65.54099520620696],[-20.950409504095035,65.56970101979496],[-20.94680946809467,65.57645532887449],[-20.918009180091786,65.60178398792272],[-20.806408064080642,65.63893268786015],[-20.74520745207451,65.6727042332578],[-20.723607236072354,65.67608138779755],[-20.705607056070562,65.67945854233733],[-20.691206912069106,65.6828356968771],[-20.68760687606874,65.69296716049638],[-20.676806768067678,65.69465573776628],[-20.666006660066586,65.6912785832265],[-20.648006480064794,65.67945854233733],[-20.64440644406443,65.67945854233733],[-20.630006300063002,65.67945854233733],[-20.626406264062638,65.67945854233733],[-20.622806228062274,65.67101565598793],[-20.626406264062638,65.66763850144815],[-20.630006300063002,65.66763850144815],[-20.633606336063366,65.66426134690838],[-20.640806408064066,65.6254240697011],[-20.640806408064066,65.60516114246249],[-20.633606336063366,65.58996394703354],[-20.64440644406443,65.57307817433471],[-20.648006480064794,65.55619240163588],[-20.6372063720637,65.5443723607467],[-20.61200612006118,65.54943809255636],[-20.622806228062274,65.56801244252506],[-20.622806228062274,65.58320963795401],[-20.608406084060846,65.59165252430344],[-20.58680586805866,65.58320963795401],[-20.576005760057598,65.57645532887449],[-20.576005760057598,65.57307817433471],[-20.576005760057598,65.56632386525519],[-20.572405724057234,65.55450382436601],[-20.576005760057598,65.54774951528648],[-20.57960579605796,65.54099520620696],[-20.57960579605796,65.5359294743973],[-20.576005760057598,65.5359294743973],[-20.558005580055806,65.53086374258766],[-20.550805508055078,65.52917516531778],[-20.54360543605435,65.52073227896835],[-20.540005400053985,65.51397796988883],[-20.53640536405362,65.5072236608093],[-20.525605256052557,65.50046935172978],[-20.5112051120511,65.49709219719],[-20.500405004050037,65.49540361992013],[-20.489604896048945,65.49371504265022],[-20.475204752047517,65.49540361992013],[-20.471604716047153,65.49540361992013],[-20.45360453604536,65.50215792899965],[-20.446404464044633,65.51228939261895],[-20.439204392043905,65.52748658804788],[-20.42840428404284,65.54943809255636],[-20.439204392043905,65.55281524709613],[-20.45360453604536,65.56632386525519],[-20.464404644046425,65.56970101979496],[-20.500405004050037,65.56801244252506],[-20.51840518405183,65.56970101979496],[-20.52920529205292,65.57645532887449],[-20.496804968049673,65.58152106068414],[-20.464404644046425,65.58320963795401],[-20.45360453604536,65.58489821522389],[-20.424804248042477,65.59502967884319],[-20.41040410404102,65.59671825611306],[-20.399603996039957,65.58658679249379],[-20.40320403204032,65.54268378347683],[-20.388803888038865,65.52917516531778],[-20.39240392403923,65.5443723607467],[-20.381603816038165,65.55619240163588],[-20.374403744037437,65.56801244252506],[-20.388803888038865,65.58320963795401],[-20.374403744037437,65.59671825611306],[-20.345603456034553,65.6152926060818],[-20.32760327603276,65.62711264697097],[-20.324003240032397,65.63555553332037],[-20.324003240032397,65.65075272874932],[-20.31680316803167,65.65919561509872],[-20.30960309603094,65.6625727696385],[-20.29160291602915,65.6625727696385],[-20.270002700026993,65.66426134690838],[-20.29160291602915,65.66763850144815],[-20.306003060030605,65.67945854233733],[-20.30960309603094,65.69296716049638],[-20.295202952029513,65.69972146957593],[-20.280802808028085,65.70309862411568],[-20.270002700026993,65.71323008773498],[-20.26640266402663,65.72842728316394],[-20.262802628026265,65.74531305586277],[-20.270002700026993,65.770641714911],[-20.29160291602915,65.79428179668935],[-20.31680316803167,65.81285614665805],[-20.338403384033825,65.82298761027735],[-20.338403384033825,65.82974191935688],[-20.313203132031305,65.83987338297618],[-20.324003240032397,65.87026777383409],[-20.349203492034917,65.90235074196184],[-20.3852038520385,65.93781086462937],[-20.39240392403923,65.9462537509788],[-20.399603996039957,65.98171387364633],[-20.406804068040685,65.99691106907528],[-20.41760417604175,66.01041968723433],[-20.432004320043205,66.02055115085363],[-20.450004500044997,66.02899403720306],[-20.432004320043205,66.03912550082234],[-20.421204212042113,66.05432269625129],[-20.414004140041385,66.07120846895012],[-20.42840428404284,66.0830285098393],[-20.406804068040685,66.0914713961887],[-20.3852038520385,66.0931599734586],[-20.34200342003419,66.08978281891882],[-20.331203312033125,66.0914713961887],[-20.313203132031305,66.09991428253812],[-20.306003060030605,66.1032914370779],[-20.29160291602915,66.10498001434777],[-20.255602556025565,66.1032914370779],[-20.237602376023744,66.10835716888752],[-20.20160201602016,66.12693151885625],[-20.18360183601837,66.1319972506659],[-20.136801368013664,66.12355436431648],[-20.1260012600126,66.12355436431648],[-20.115201152011508,66.12355436431648],[-20.093600936009352,66.1319972506659],[-20.086400864008624,66.11004574615743],[-20.072000720007196,66.09653712799835],[-20.054000540005404,66.08978281891882],[-20.028800288002884,66.0830285098393],[-20.036000360003584,66.07627420075977],[-20.028800288002884,66.07120846895012],[-20.018000180001792,66.06445415987059],[-20.010800108001064,66.04925696444164],[-19.996399963999636,66.03405976901269],[-19.953199531995324,66.00197680088493],[-19.94959949599496,65.99184533726563],[-19.945999459994596,65.9850910281861],[-19.938799387993868,65.97833671910658],[-19.927999279992804,65.9749595645668],[-19.931599315993168,65.97158241002703],[-19.938799387993868,65.96313952367763],[-19.94239942399423,65.95976236913785],[-19.920799207992076,65.94794232824867],[-19.895598955989556,65.9361222873595],[-19.877598775987764,65.92430224647032],[-19.881198811988128,65.90572789650162],[-19.863198631986307,65.89897358742209],[-19.809198091980903,65.89390785561244],[-19.769597695976955,65.88377639199314],[-19.755197551975527,65.88377639199314],[-19.744397443974435,65.88208781472326],[-19.733597335973343,65.87533350564371],[-19.726397263972643,65.87195635110396],[-19.711997119971187,65.87195635110396],[-19.708397083970823,65.87026777383409],[-19.701197011970123,65.86351346475453],[-19.701197011970123,65.85675915567501],[-19.69759697596976,65.85000484659548],[-19.693996939969395,65.84325053751596],[-19.67239672396724,65.82298761027735],[-19.66519665196651,65.81623330119783],[-19.661596615966147,65.80272468303878],[-19.657996579965783,65.77570744672065],[-19.650796507965083,65.76557598310134],[-19.629196291962927,65.75206736494229],[-19.578795787957887,65.74700163313264],[-19.557195571955702,65.73349301497359],[-19.549995499955003,65.75544451948204],[-19.542795427954275,65.7621988285616],[-19.51399513995139,65.76051025129169],[-19.510395103951026,65.75882167402182],[-19.4959949599496,65.75037878767242],[-19.48879488794887,65.74869021040251],[-19.477994779947807,65.74700163313264],[-19.449194491944922,65.74700163313264],[-19.456394563945622,65.74531305586277],[-19.46359463594635,65.74193590132299],[-19.467194671946714,65.73687016951334],[-19.46359463594635,65.72842728316394],[-19.456394563945622,65.72842728316394],[-19.43839438394383,65.73349301497359],[-19.427594275942766,65.74024732405312],[-19.416794167941674,65.75375594221217],[-19.405994059940582,65.78246175580017],[-19.398793987939882,65.81116756938818],[-19.398793987939882,65.83649622843643],[-19.405994059940582,65.86013631021478],[-19.42039420394204,65.88546496926301],[-19.449194491944922,65.91923651466067],[-19.452794527945287,65.9259908237402],[-19.510395103951026,65.95300806005832],[-19.510395103951026,65.95976236913785],[-19.506795067950662,65.96989383275715],[-19.499594995949963,65.97833671910658],[-19.485194851948506,65.98171387364633],[-19.467194671946714,65.9834024509162],[-19.449194491944922,65.98846818272585],[-19.427594275942766,65.99691106907528],[-19.41319413194131,66.00704253269458],[-19.423994239942402,66.01379684177411],[-19.434794347943466,66.02223972812351],[-19.441994419944194,66.03068261447294],[-19.452794527945287,66.05263411898142],[-19.452794527945287,66.05601127352116],[-19.449194491944922,66.05938842806094],[-19.43839438394383,66.06614273714047],[-19.42039420394204,66.07627420075977],[-19.36279362793627,66.08809424164895],[-19.22959229592294,66.09822570526825],[-19.182791827918265,66.0830285098393],[-19.157591575915745,66.08133993256942],[-19.16119161191611,66.09822570526825],[-19.150391503915046,66.101602859808],[-19.143191431914317,66.1032914370779],[-19.13599135991359,66.10498001434777],[-19.125191251912526,66.1032914370779],[-19.12879128791286,66.09991428253812],[-19.132391323913225,66.08978281891882],[-19.11079110791107,66.08640566437907],[-19.07839078390782,66.07289704621999],[-19.056790567905665,66.07120846895012],[-19.07119071190712,66.0745856234899],[-19.07839078390782,66.08133993256942],[-19.08559085590855,66.08809424164895],[-19.092790927909277,66.09822570526825],[-19.08559085590855,66.09822570526825],[-19.08559085590855,66.1032914370779],[-19.089190891908913,66.10498001434777],[-19.099990999910005,66.11004574615743],[-19.10359103591034,66.1117343234273],[-19.10359103591034,66.11680005523695],[-19.09639096390964,66.12524294158635],[-19.08559085590855,66.14719444609483],[-19.07839078390782,66.159014486984],[-19.067590675906757,66.16408021879366],[-19.03519035190351,66.17758883695274],[-18.94518945189452,66.19109745511179],[-18.912789127891273,66.18434314603226],[-18.919989199892,66.15226017790448],[-18.90198901989018,66.15563733244426],[-18.887588875888753,66.16408021879366],[-18.865988659886597,66.18603172330214],[-18.86958869588696,66.19616318692144],[-18.873188731887325,66.19954034146119],[-18.855188551885504,66.20460607327084],[-18.82638826388262,66.20291749600096],[-18.77598775987758,66.19278603238166],[-18.78318783187831,66.17758883695274],[-18.8011880118801,66.15732590971413],[-18.804788047880464,66.14212871428518],[-18.7939879398794,66.14212871428518],[-18.721987219872204,66.17252310514309],[-18.69318693186932,66.16914595060331],[-18.6679866798668,66.15732590971413],[-18.646386463864644,66.14550586882496],[-18.628386283862824,66.13875155974543],[-18.621186211862124,66.1319972506659],[-18.631986319863188,66.11511147796708],[-18.660786607866072,66.08978281891882],[-18.646386463864644,66.08978281891882],[-18.631986319863188,66.0914713961887],[-18.61758617586176,66.09484855072847],[-18.610386103861032,66.101602859808],[-18.595985959859604,66.10498001434777],[-18.585185851858512,66.09991428253812],[-18.570785707857084,66.0931599734586],[-18.55998559985599,66.08978281891882],[-18.545585455854564,66.0830285098393],[-18.53478534785347,66.06445415987059],[-18.527585275852744,66.04419123263199],[-18.51678516785168,66.02899403720306],[-18.53478534785347,66.00028822361503],[-18.5419854198542,65.98171387364633],[-18.538385383853836,65.9749595645668],[-18.469984699847004,65.9665166782174],[-18.4231842318423,65.9546966373282],[-18.34758347583474,65.94963090551857],[-18.336783367833675,65.9462537509788],[-18.325983259832583,65.93949944189927],[-18.311583115831155,65.92261366920044],[-18.286382863828635,65.91585936012092],[-18.279182791827907,65.90403931923174],[-18.275582755827543,65.89390785561244],[-18.26478264782648,65.88039923745336],[-18.26478264782648,65.87533350564371],[-18.261182611826115,65.87195635110396],[-18.253982539825387,65.87026777383409],[-18.23238232382323,65.87195635110396],[-18.225182251822503,65.87195635110396],[-18.217982179821803,65.86857919656418],[-18.20718207182071,65.85507057840513],[-18.20718207182071,65.8466276920557],[-18.20718207182071,65.8196104557376],[-18.203582035820347,65.80779041484843],[-18.185581855818555,65.7892160648797],[-18.178381783817827,65.78246175580017],[-18.178381783817827,65.74024732405312],[-18.178381783817827,65.73349301497359],[-18.167581675816763,65.73180443770369],[-18.13878138781388,65.71323008773498],[-18.091980919809203,65.69296716049638],[-18.095580955809538,65.67945854233733],[-18.091980919809203,65.6625727696385],[-18.08118081180811,65.64737557420955],[-18.06318063180632,65.64568699693967],[-18.052380523805226,65.65750703782885],[-18.052380523805226,65.67608138779755],[-18.059580595805954,65.69465573776628],[-18.070380703807018,65.70647577865546],[-18.077580775807746,65.70985293319521],[-18.099180991809902,65.71660724227476],[-18.10638106381063,65.71998439681451],[-18.109981099810994,65.73180443770369],[-18.10638106381063,65.73855874678321],[-18.102781027810266,65.74193590132299],[-18.099180991809902,65.74869021040251],[-18.099180991809902,65.75713309675194],[-18.099180991809902,65.76388740583147],[-18.102781027810266,65.77233029218087],[-18.099180991809902,65.78246175580017],[-18.091980919809203,65.78583891033995],[-18.073980739807382,65.79259321941947],[-18.070380703807018,65.79597037395925],[-18.06318063180632,65.81454472392795],[-18.066780667806682,65.82974191935688],[-18.099180991809902,65.87871066018349],[-18.099180991809902,65.88039923745336],[-18.099180991809902,65.89559643288231],[-18.099180991809902,65.89897358742209],[-18.10638106381063,65.89897358742209],[-18.11358113581136,65.89728501015219],[-18.117181171811723,65.89897358742209],[-18.13878138781388,65.91585936012092],[-18.14598145981458,65.91923651466067],[-18.14598145981458,65.92092509193054],[-18.149581495814942,65.92261366920044],[-18.153181531815306,65.92430224647032],[-18.15678156781567,65.9259908237402],[-18.160381603816035,65.92430224647032],[-18.1711817118171,65.91417078285102],[-18.174781747817462,65.91248220558114],[-18.185581855818555,65.91585936012092],[-18.217982179821803,65.93274513281975],[-18.228782287822867,65.93949944189927],[-18.217982179821803,65.95300806005832],[-18.22158221582214,65.9665166782174],[-18.235982359823595,65.97664814183668],[-18.26478264782648,65.9850910281861],[-18.28278282782827,66.00535395542468],[-18.2971829718297,66.01548541904398],[-18.2971829718297,66.02223972812351],[-18.289982899829,66.02223972812351],[-18.289982899829,66.02899403720306],[-18.31518315183152,66.05769985079107],[-18.329583295832947,66.1032914370779],[-18.32238322383222,66.1505716006346],[-18.2971829718297,66.17927741422261],[-18.28278282782827,66.18265456876239],[-18.192781927819283,66.17927741422261],[-18.18198181981819,66.17590025968283],[-18.15678156781567,66.16745737333343],[-18.142381423814243,66.16576879606356],[-18.099180991809902,66.16745737333343],[-18.084780847808474,66.16576879606356],[-18.084780847808474,66.16239164152378],[-18.084780847808474,66.16070306425391],[-18.08838088380884,66.16070306425391],[-18.091980919809203,66.159014486984],[-18.052380523805226,66.14888302336473],[-17.95517955179551,66.16070306425391],[-17.911979119791198,66.15226017790448],[-17.90477904779047,66.14381729155508],[-17.893978939789406,66.12524294158635],[-17.886778867788678,66.11680005523695],[-17.875978759787586,66.11511147796708],[-17.832778327783274,66.11680005523695],[-17.81477814778148,66.11342290069717],[-17.785977859778598,66.09484855072847],[-17.76437764377644,66.08978281891882],[-17.75357753577535,66.08471708710917],[-17.7139771397714,66.06107700533082],[-17.699576995769945,66.04925696444164],[-17.685176851768517,66.02055115085363],[-17.674376743767425,66.00704253269458],[-17.641976419764205,65.99691106907528],[-17.623976239762385,65.98677960545598],[-17.598775987759865,65.9665166782174],[-17.56277562775628,65.92430224647032],[-17.548375483754825,65.91248220558114],[-17.54477544775446,65.93105655554984],[-17.555575555755553,65.9462537509788],[-17.566375663756645,65.95976236913785],[-17.57717577175771,65.9749595645668],[-17.559175591755917,65.97327098729693],[-17.533975339753397,65.97664814183668],[-17.51237512375124,65.98171387364633],[-17.49437494374942,65.98846818272585],[-17.5879758797588,65.9850910281861],[-17.609576095760957,65.9935339145355],[-17.45117451174511,65.99522249180541],[-17.440374403744045,65.99015675999576],[-17.433174331743317,65.97833671910658],[-17.41877418774186,65.95976236913785],[-17.41157411574116,65.95976236913785],[-17.407974079740796,65.96820525548728],[-17.407974079740796,65.9749595645668],[-17.41157411574116,65.98171387364633],[-17.41877418774186,65.98846818272585],[-17.41877418774186,65.9935339145355],[-17.407974079740796,65.99859964634516],[-17.39357393573934,66.00535395542468],[-17.389973899739005,66.01717399631386],[-17.39357393573934,66.02899403720306],[-17.37557375573755,66.03743692355246],[-17.36837368373682,66.04250265536211],[-17.364773647736484,66.04925696444164],[-17.364773647736484,66.05432269625129],[-17.364773647736484,66.07120846895012],[-17.364773647736484,66.0830285098393],[-17.350373503735028,66.09653712799835],[-17.325173251732508,66.11004574615743],[-17.296372963729624,66.12017720977673],[-17.271172711727104,66.12355436431648],[-17.26037260372604,66.130308673396],[-17.256772567725676,66.14212871428518],[-17.253172531725312,66.15394875517435],[-17.26037260372604,66.159014486984],[-17.271172711727104,66.16070306425391],[-17.263972639726404,66.16914595060331],[-17.245972459724584,66.18265456876239],[-17.2171721717217,66.19447460965156],[-17.155971559715596,66.20291749600096],[-17.145171451714504,66.22149184596967],[-17.119971199711983,66.21136038235039],[-17.019170191701903,66.20629465054074],[-16.993969939699383,66.19954034146119],[-16.99036990369902,66.19954034146119],[-16.972369723697227,66.18096599149249],[-16.93276932769328,66.13875155974543],[-16.93276932769328,66.13368582793578],[-16.93276932769328,66.130308673396],[-16.93276932769328,66.12862009612613],[-16.93276932769328,66.12355436431648],[-16.947169471694707,66.12355436431648],[-16.947169471694707,66.11680005523695],[-16.936369363693643,66.11342290069717],[-16.921969219692187,66.1117343234273],[-16.911169111691123,66.1117343234273],[-16.896768967689667,66.11680005523695],[-16.903969039690395,66.11848863250682],[-16.918369183691823,66.12355436431648],[-16.88236882368824,66.13537440520565],[-16.75636756367564,66.14888302336473],[-16.720367203672026,66.14550586882496],[-16.73836738367382,66.14550586882496],[-16.752767527675275,66.14212871428518],[-16.767167671676702,66.13875155974543],[-16.78156781567816,66.1319972506659],[-16.770767707677066,66.12693151885625],[-16.752767527675275,66.11342290069717],[-16.745567455674546,66.11511147796708],[-16.72396723967239,66.13368582793578],[-16.713167131671298,66.14212871428518],[-16.69876698766987,66.14550586882496],[-16.67356673566735,66.13368582793578],[-16.651966519665194,66.11511147796708],[-16.63036630366304,66.101602859808],[-16.59796597965979,66.09822570526825],[-16.59796597965979,66.1032914370779],[-16.63036630366304,66.11342290069717],[-16.644766447664466,66.12017720977673],[-16.65556655566556,66.12693151885625],[-16.662766627666258,66.1404401370153],[-16.662766627666258,66.1505716006346],[-16.666366663666622,66.159014486984],[-16.687966879668778,66.16576879606356],[-16.641166411664102,66.17927741422261],[-16.57276572765727,66.18772030057201],[-16.529565295652958,66.19954034146119],[-16.507965079650802,66.19954034146119],[-16.59796597965979,66.17758883695274],[-16.62316623166231,66.16576879606356],[-16.536765367653658,66.17927741422261],[-16.5151651516515,66.17927741422261],[-16.48996489964898,66.17083452787318],[-16.453964539645398,66.14719444609483],[-16.425164251642514,66.14550586882496],[-16.425164251642514,66.15226017790448],[-16.461164611646097,66.16745737333343],[-16.479164791647918,66.17758883695274],[-16.486364863648618,66.18940887784191],[-16.482764827648282,66.20460607327084],[-16.47196471964719,66.21811469142992],[-16.457564575645762,66.22824615504922],[-16.43956439564394,66.23500046412875],[-16.43956439564394,66.2383776186685],[-16.43956439564394,66.2400661959384],[-16.435964359643577,66.24513192774805],[-16.428764287642878,66.25357481409745],[-16.42156421564215,66.26201770044685],[-16.417964179641785,66.27214916406615],[-16.42156421564215,66.2873463594951],[-16.428764287642878,66.2957892458445],[-16.43956439564394,66.30254355492406],[-16.453964539645398,66.31774075035298],[-16.457564575645762,66.32111790489276],[-16.46476464764646,66.32280648216263],[-16.47196471964719,66.32280648216263],[-16.475564755647554,66.32787221397228],[-16.479164791647918,66.33631510032171],[-16.479164791647918,66.34475798667111],[-16.479164791647918,66.34982371848076],[-16.507965079650802,66.35995518210007],[-16.5151651516515,66.36670949117959],[-16.507965079650802,66.3852838411483],[-16.511565115651138,66.3852838411483],[-16.52236522365223,66.3852838411483],[-16.518765187651866,66.38866099568807],[-16.511565115651138,66.3954153047676],[-16.507965079650802,66.39879245930737],[-16.5151651516515,66.40216961384712],[-16.518765187651866,66.40723534565677],[-16.529565295652958,66.41905538654595],[-16.507965079650802,66.41905538654595],[-16.507965079650802,66.42580969562547],[-16.525965259652594,66.43594115924478],[-16.543965439654386,66.46802412737256],[-16.57276572765727,66.48153274553161],[-16.565565655656542,66.49504136369066],[-16.543965439654386,66.50686140457987],[-16.52236522365223,66.50854998184974],[-16.5151651516515,66.50179567277021],[-16.5151651516515,66.49504136369066],[-16.511565115651138,66.48828705461113],[-16.500765007650074,66.48828705461113],[-16.49716497164971,66.49166420915091],[-16.493564935649346,66.50179567277021],[-16.486364863648618,66.51023855911961],[-16.475564755647554,66.51530429092927],[-16.44676446764467,66.52037002273892],[-16.428764287642878,66.52037002273892],[-16.428764287642878,66.51192713638949],[-16.435964359643577,66.50010709550031],[-16.43236432364324,66.49166420915091],[-16.42156421564215,66.48490990007139],[-16.410764107641057,66.48153274553161],[-16.41436414364142,66.48659847734126],[-16.41436414364142,66.49166420915091],[-16.41436414364142,66.49504136369066],[-16.417964179641785,66.50179567277021],[-16.403564035640358,66.50348425004009],[-16.374763747637473,66.51361571365939],[-16.36396363963638,66.51530429092927],[-16.349563495634953,66.51023855911961],[-16.33876338763386,66.50179567277021],[-16.327963279632797,66.49672994096056],[-16.309963099630977,66.49504136369066],[-16.324363243632433,66.48828705461113],[-16.33156331563316,66.48828705461113],[-16.31356313563134,66.48153274553161],[-16.29556295562955,66.48322132280148],[-16.273962739627393,66.48659847734126],[-16.27036270362703,66.48828705461113],[-16.27036270362703,66.49504136369066],[-16.2559625596256,66.50179567277021],[-16.248762487624873,66.51192713638949],[-16.234362343623417,66.51868144546904],[-16.234362343623417,66.51530429092927],[-16.227162271622717,66.50348425004009],[-16.216362163621625,66.50179567277021],[-16.20556205562056,66.50854998184974],[-16.19476194761947,66.52712433181844],[-16.18756187561874,66.5321900636281],[-16.165961659616585,66.53556721816787],[-16.1371613716137,66.53556721816787],[-16.07956079560796,66.52543575454857],[-16.06876068760687,66.52881290908832],[-16.021960219602192,66.53725579543774],[-15.939159391593904,66.50348425004009],[-15.892358923589228,66.49504136369066],[-15.90315903159032,66.48659847734126],[-15.921159211592112,66.48153274553161],[-15.931959319593176,66.47477843645208],[-15.939159391593904,66.45958124102313],[-15.92835928359284,66.46126981829303],[-15.924759247592476,66.45958124102313],[-15.924759247592476,66.45451550921348],[-15.946359463594632,66.44607262286408],[-15.942759427594268,66.4443840455942],[-15.931959319593176,66.43594115924478],[-15.924759247592476,66.432564004705],[-15.939159391593904,66.4241211183556],[-15.924759247592476,66.42243254108573],[-15.888758887588864,66.42580969562547],[-15.849158491584916,66.42243254108573],[-15.831158311583124,66.42580969562547],[-15.831158311583124,66.42074396381582],[-15.83475834758346,66.41061250019655],[-15.83475834758346,66.4055467683869],[-15.741157411574108,66.4055467683869],[-15.723157231572316,66.40216961384712],[-15.705157051570524,66.3954153047676],[-15.697956979569796,66.38697241841817],[-15.697956979569796,66.3768409547989],[-15.697956979569796,66.37177522298924],[-15.679956799568004,66.34475798667111],[-15.719557195571952,66.31267501854333],[-15.744757447574472,66.29916640038428],[-15.773557735577356,66.28903493676498],[-15.762757627576264,66.27552631860593],[-15.748357483574836,66.28059205041558],[-15.737557375573743,66.2772148958758],[-15.723157231572316,66.27214916406615],[-15.690756907569067,66.26539485498662],[-15.687156871568703,66.2586405459071],[-15.690756907569067,66.2485090822878],[-15.697956979569796,66.23500046412875],[-15.68355683556834,66.22824615504922],[-15.611556115561143,66.22655757777932],[-15.57555575555756,66.23331188685884],[-15.564755647556467,66.23331188685884],[-15.557555575555739,66.22824615504922],[-15.55035550355504,66.22149184596967],[-15.543155431554311,66.22149184596967],[-15.539555395553947,66.22318042323957],[-15.528755287552883,66.22655757777932],[-15.525155251552519,66.21642611416002],[-15.521555215552155,66.20798322781062],[-15.510755107551063,66.20122891873109],[-15.481954819548179,66.19616318692144],[-15.453154531545323,66.18265456876239],[-15.420754207542075,66.17252310514309],[-15.399153991539919,66.159014486984],[-15.381153811538098,66.1505716006346],[-15.355953559535578,66.159014486984],[-15.363153631536306,66.16070306425391],[-15.36675366753667,66.16239164152378],[-15.370353703537035,66.16576879606356],[-15.352353523535243,66.17083452787318],[-15.34155341553415,66.18265456876239],[-15.330753307533058,66.19785176419131],[-15.330753307533058,66.21811469142992],[-15.334353343533422,66.2383776186685],[-15.337953379533786,66.25188623682757],[-15.330753307533058,66.26201770044685],[-15.301953019530202,66.2687720095264],[-15.179551795517938,66.2687720095264],[-15.107551075510742,66.27890347314568],[-15.103951039510378,66.28565778222523],[-15.103951039510378,66.2957892458445],[-15.096750967509678,66.30254355492406],[-15.024750247502482,66.32111790489276],[-15.01395013950139,66.33462652305181],[-15.006750067500661,66.34982371848076],[-14.992349923499233,66.36164375936994],[-14.952749527495257,66.3768409547989],[-14.923949239492401,66.3852838411483],[-14.841148411484113,66.39203815022782],[-14.815948159481593,66.38866099568807],[-14.776347763477617,66.37515237752899],[-14.75474754747546,66.37177522298924],[-14.563945639456392,66.3852838411483]]],[[[-180,65.0665049933699],[-180,68.98231568222789],[-179.7119971199712,68.91814974597236],[-179.5787957879579,68.90801828235305],[-179.54279542795427,68.90970685962293],[-179.5139951399514,68.9215269005121],[-179.53559535595355,68.93165836413141],[-179.54279542795427,68.94010125048081],[-179.54639546395464,68.94854413683024],[-179.5391953919539,68.96374133225919],[-179.52119521195212,68.96374133225919],[-179.50319503195033,68.95867560044954],[-179.4851948519485,68.95192129137001],[-179.47079470794708,68.94010125048081],[-179.44919449194492,68.9130840141627],[-179.43839438394383,68.9029525505434],[-179.41679416794167,68.89619824146388],[-179.38439384393843,68.87931246876505],[-179.35559355593557,68.87086958241562],[-179.3339933399334,68.85904954152645],[-179.34839348393484,68.85736096425657],[-179.36279362793627,68.8556723869867],[-179.35559355593557,68.84385234609752],[-179.35559355593557,68.83709803701797],[-179.35559355593557,68.82865515066857],[-179.3267932679327,68.82527799612879],[-179.31959319593196,68.81176937796974],[-179.2619926199262,68.80332649162031],[-179.20439204392045,68.81008080069986],[-179.1719917199172,68.80839222342996],[-179.16839168391684,68.79994933708056],[-179.1287912879129,68.78812929619139],[-179.07479074790749,68.78981787346126],[-178.93438934389343,68.77124352349256],[-178.84438844388444,68.75266917352383],[-178.6787867878679,68.6800603509189],[-178.59958599585997,68.64291165098146],[-178.51678516785168,68.60238579650428],[-178.48438484384843,68.59225433288498],[-178.51318513185132,68.58718860107533],[-178.54558545585456,68.59225433288498],[-178.63558635586355,68.63784591917181],[-178.65358653586537,68.64460022825133],[-178.6859868598686,68.66148600095016],[-178.72558725587257,68.67499461910924],[-178.73638736387363,68.66992888729959],[-178.72558725587257,68.65979742368029],[-178.71838718387184,68.64628880552124],[-178.7219872198722,68.63278018736216],[-178.7111871118711,68.62264872374288],[-178.71838718387184,68.60745152831393],[-178.71478714787148,68.59563148742475],[-178.71838718387184,68.58381144653558],[-178.7111871118711,68.56861425110662],[-178.70038700387005,68.5517284784078],[-178.70038700387005,68.5432855920584],[-178.67158671586716,68.53653128297884],[-178.61758617586176,68.52471124208967],[-178.4591845918459,68.50951404666074],[-178.4267842678427,68.50107116031131],[-178.36918369183692,68.47911965580283],[-178.33678336783368,68.47574250126308],[-178.27558275582757,68.47911965580283],[-178.2467824678247,68.47574250126308],[-178.18918189181892,68.4537909967546],[-178.04158041580416,68.42846233770635],[-178.019980199802,68.41664229681717],[-178.00558005580055,68.37105071053034],[-177.99117991179912,68.35247636056164],[-177.96957969579697,68.34065631967246],[-177.95157951579515,68.33727916513268],[-177.9659796597966,68.33052485605316],[-177.99837998379985,68.30350761973506],[-178.05958059580595,68.27649038341693],[-178.0739807398074,68.26635891979763],[-178.0739807398074,68.2596046107181],[-178.05958059580595,68.25622745617832],[-177.99837998379985,68.25622745617832],[-177.98037980379803,68.2596046107181],[-177.9659796597966,68.2697360743374],[-177.96957969579697,68.27649038341693],[-177.96957969579697,68.28493326976633],[-177.9659796597966,68.28999900157598],[-177.9551795517955,68.29506473338563],[-177.90837908379083,68.30350761973506],[-177.89037890378904,68.30350761973506],[-177.87597875978759,68.30519619700493],[-177.8579785797858,68.31363908335433],[-177.8219782197822,68.32714770151341],[-177.7319773197732,68.32545912424351],[-177.7031770317703,68.34403347421224],[-177.9551795517955,68.42170802862682],[-178.2071820718207,68.49938258304144],[-178.2467824678247,68.50444831485109],[-178.29718297182973,68.51795693301014],[-178.31878318783188,68.53146555116922],[-178.3439834398344,68.53484270570897],[-178.35478354783547,68.53653128297884],[-178.3619836198362,68.54666274659814],[-178.36918369183692,68.55341705567767],[-178.37638376383765,68.55679421021745],[-178.04158041580416,68.46054530583413],[-177.71037710377104,68.36260782418094],[-177.66717667176673,68.33559058786281],[-177.49797497974978,68.29337615611576],[-177.49077490774908,68.29168757884585],[-177.60237602376023,68.30857335154468],[-177.63477634776348,68.30350761973506],[-177.63477634776348,68.2984418879254],[-177.6311763117631,68.2883104243061],[-177.62757627576275,68.28324469249645],[-177.76437764377644,68.26298176525785],[-177.74997749977499,68.25285030163857],[-177.71037710377104,68.24778456982892],[-177.6779767797678,68.22921021986019],[-177.63837638376384,68.22583306532044],[-177.62397623976238,68.21401302443127],[-177.63477634776348,68.20557013808184],[-177.63837638376384,68.19881582900231],[-177.63477634776348,68.19543867446254],[-177.62397623976238,68.19375009719266],[-177.60957609576096,68.19712725173244],[-177.4619746197462,68.24609599255902],[-177.39357393573937,68.2494731470988],[-177.33957339573396,68.24440741528915],[-177.20277202772027,68.20557013808184],[-177.1739717397174,68.19881582900231],[-177.1919719197192,68.19712725173244],[-177.23877238772388,68.20725871535174],[-177.26037260372604,68.21063586989149],[-177.2639726397264,68.20219298354209],[-177.2531725317253,68.19037294265291],[-177.22437224372243,68.17348716995409],[-177.23877238772388,68.16842143814443],[-177.24597245972458,68.16673286087453],[-177.21717217172173,68.13971562455643],[-177.1667716677167,68.13802704728653],[-177.0659706597066,68.15322424271548],[-177.09837098370983,68.16166712906491],[-177.10917109171092,68.16673286087453],[-177.07677076770767,68.16504428360466],[-176.93636936369364,68.1211412745877],[-176.8211682116821,68.08736972919004],[-176.61956619566195,68.02658094747429],[-176.56556565565657,68.00969517477546],[-176.59436594365943,68.00631802023568],[-176.7239672396724,68.03840098836346],[-176.71676716767166,68.02658094747429],[-176.75276752767527,68.01476090658511],[-176.7779677796778,68.00125228842603],[-176.77436774367743,67.99280940207663],[-176.7887678876789,67.97930078391755],[-176.78156781567816,67.96748074302837],[-176.70236702367023,67.94890639305967],[-176.6627666276663,67.93370919763072],[-176.57276572765727,67.92188915674154],[-176.55476554765548,67.91682342493192],[-176.54036540365405,67.89487192042344],[-176.50076500765007,67.88811761134389],[-176.40716407164072,67.89487192042344],[-176.3819638196382,67.89318334315354],[-176.2379623796238,67.89824907496319],[-176.20916209162093,67.90162622950297],[-176.28836288362885,67.92188915674154],[-176.35676356763568,67.94215208398015],[-176.4251642516425,67.9657921657585],[-176.489964899649,67.97930078391755],[-176.52956529565296,67.99112082480676],[-176.53316533165332,68.00294086569593],[-176.39996399964,67.96748074302837],[-176.2739627396274,67.9286434658211],[-176.0867608676087,67.88474045680414],[-175.98235982359824,67.86110037502579],[-175.9211592115921,67.85096891140648],[-175.92835928359284,67.84590317959683],[-176.0039600396004,67.85434606594626],[-176.0471604716047,67.85265748867636],[-176.08316083160832,67.83239456143778],[-176.11556115561154,67.80706590238952],[-176.13716137161373,67.77667151153165],[-176.10116101161012,67.75978573883282],[-176.0651606516065,67.74796569794364],[-176.0471604716047,67.73614565705446],[-176.06876068760687,67.72770277070504],[-176.0939609396094,67.72939134797494],[-176.17676176761768,67.72939134797494],[-176.23436234362345,67.72601419343516],[-176.2991629916299,67.72432561616529],[-176.3279632796328,67.70912842073633],[-176.34236342363423,67.69561980257728],[-176.28476284762849,67.6922426480375],[-176.26676266762667,67.66860256625915],[-176.20556205562056,67.6449624844808],[-176.12276122761227,67.62638813451207],[-176.0219602196022,67.63145386632172],[-175.97515975159752,67.63820817540127],[-175.92475924759248,67.63820817540127],[-175.88155881558816,67.62976528905185],[-175.88515885158853,67.61287951635302],[-175.91035910359105,67.60274805273372],[-175.91395913959138,67.58755085730479],[-175.8671586715867,67.58417370276501],[-175.769957699577,67.57910797095536],[-175.73755737557374,67.58248512549514],[-175.72675726757268,67.56897650733606],[-175.71235712357122,67.57910797095536],[-175.68355683556837,67.58923943457467],[-175.6691566915669,67.60443663000362],[-175.67275672756728,67.61794524816267],[-175.7087570875709,67.6246995572422],[-175.72675726757268,67.63989675267115],[-175.76635766357663,67.65171679356033],[-175.83115831158312,67.65171679356033],[-175.87435874358744,67.6449624844808],[-175.8959589595896,67.65002821629045],[-175.88875888758886,67.66522541171938],[-175.87435874358744,67.6821111844182],[-175.84915849158492,67.70406268892668],[-175.88875888758886,67.71925988435564],[-175.949959499595,67.72601419343516],[-176.00756007560076,67.72263703889539],[-176.01116011160113,67.72770277070504],[-175.9211592115921,67.74796569794364],[-175.85275852758528,67.76822862518222],[-175.8347583475835,67.77836008880152],[-175.82035820358203,67.79693443877022],[-175.8239582395824,67.81213163419918],[-175.51435514355143,67.72263703889539],[-175.38115381153813,67.68717691622786],[-175.28755287552875,67.66691398898928],[-175.2659526595266,67.65847110263985],[-175.26235262352623,67.64665106175067],[-175.29475294752947,67.6449624844808],[-175.31275312753127,67.6348310208615],[-175.29835298352984,67.62132240270245],[-175.2911529115291,67.6061252072735],[-175.25515255152553,67.58586228003489],[-175.24075240752407,67.57404223914571],[-175.2479524795248,67.55884504371679],[-175.22635226352264,67.54533642555771],[-175.12555125551256,67.49974483927087],[-175.14355143551435,67.50143341654075],[-175.2191521915219,67.53351638466853],[-175.22635226352264,67.53182780739866],[-175.21555215552155,67.52000776650948],[-175.2047520475205,67.50481057108053],[-175.19035190351903,67.49467910746122],[-175.19755197551976,67.48117048930217],[-175.18675186751867,67.47272760295274],[-175.19035190351903,67.45584183025392],[-175.19035190351903,67.44402178936474],[-175.17235172351724,67.43557890301534],[-175.1831518315183,67.43051317120569],[-175.2119521195212,67.42882459393581],[-175.23355233552334,67.42713601666591],[-175.24075240752407,67.41700455304664],[-175.24075240752407,67.40518451215746],[-175.2479524795248,67.39505304853816],[-175.34875348753488,67.38323300764898],[-175.36675366753667,67.35790434860073],[-175.31275312753127,67.34439573044168],[-175.2911529115291,67.34439573044168],[-175.25875258752586,67.3427071531718],[-175.22635226352264,67.3410185759019],[-175.18675186751867,67.33932999863202],[-175.15795157951578,67.33764142136215],[-175.13275132751326,67.3427071531718],[-175.1039510395104,67.34946146225133],[-175.07515075150752,67.35621577133085],[-175.049950499505,67.36465865768025],[-175.02475024750248,67.37479012129955],[-175.0139501395014,67.38661016218873],[-175.01035010350103,67.39336447126826],[-174.99234992349923,67.40518451215746],[-174.99234992349923,67.41531597577674],[-174.9671496714967,67.42544743939604],[-174.9851498514985,67.43895605755509],[-175.02115021150212,67.45246467571417],[-175.0571505715057,67.46090756206357],[-175.0787507875079,67.48117048930217],[-174.96354963549635,67.44571036663464],[-174.92754927549277,67.42713601666591],[-174.9131491314913,67.41362739850686],[-174.92034920349204,67.39843020307791],[-174.9131491314913,67.38154443037908],[-174.88074880748806,67.38661016218873],[-174.84834848348484,67.38492158491886],[-174.8051480514805,67.36465865768025],[-174.77634776347765,67.32919853501272],[-174.75474754747546,67.3038698759645],[-174.7979479794798,67.29880414415484],[-174.8159481594816,67.29542698961507],[-174.8411484114841,67.29036125780542],[-174.83754837548375,67.28191837145602],[-174.8591485914859,67.27516406237649],[-174.8591485914859,67.26334402148731],[-174.85554855548554,67.25827828967766],[-174.85554855548554,67.25321255786801],[-174.87714877148773,67.24476967151858],[-174.86274862748627,67.23463820789931],[-174.88074880748806,67.22957247608966],[-174.88074880748806,67.22112958974023],[-174.89154891548915,67.21099812612093],[-174.87714877148773,67.195800930692],[-174.88434884348843,67.18060373526305],[-174.88434884348843,67.15527507621482],[-174.8879488794888,67.13670072624609],[-174.89154891548915,67.12150353081717],[-174.90594905949058,67.10461775811834],[-174.9131491314913,67.08773198541951],[-174.90234902349025,67.0674690581809],[-174.89874898748988,67.05396044002185],[-174.90594905949058,67.03707466732303],[-174.8879488794888,67.02525462643385],[-174.8591485914859,67.01174600827477],[-174.869948699487,66.9999259673856],[-174.8519485194852,66.97797446287711],[-174.80874808748086,66.96615442198794],[-174.79074790747907,66.93913718566984],[-174.70074700747008,66.91718568116136],[-174.7259472594726,66.91380852662158],[-174.75834758347582,66.90874279481193],[-174.7619476194762,66.89861133119263],[-174.75474754747546,66.88847986757335],[-174.7331473314733,66.87665982668418],[-174.72954729547297,66.8631512085251],[-174.72234722347224,66.84288828128652],[-174.70794707947078,66.82262535404791],[-174.70794707947078,66.79898527226956],[-174.69714697146972,66.77872234503096],[-174.68634686346863,66.76183657233213],[-174.68634686346863,66.73313075874412],[-174.70794707947078,66.7179335633152],[-174.71154711547115,66.7466393769032],[-174.7619476194762,66.75339368598273],[-174.77274772747728,66.7466393769032],[-174.7979479794798,66.73988506782368],[-174.81234812348123,66.73144218147425],[-174.82314823148232,66.72299929512485],[-174.83394833948338,66.7078020996959],[-174.85554855548554,66.69935921334647],[-174.89154891548915,66.69598205880672],[-174.90594905949058,66.68585059518742],[-174.9419494194942,66.68753917245729],[-174.97434974349744,66.68247344064764],[-174.97074970749708,66.66558766794881],[-174.92754927549277,66.65207904978976],[-174.90234902349025,66.64363616344036],[-174.87354873548736,66.62843896801141],[-174.8591485914859,66.62168465893188],[-174.8591485914859,66.6098646180427],[-174.8051480514805,66.59297884534388],[-174.70074700747008,66.5997331544234],[-174.6071460714607,66.57440449537515],[-174.5279452794528,66.54569868178714],[-174.46674466744668,66.54063294997749],[-174.43434434344343,66.5321900636281],[-174.43074430744306,66.50179567277021],[-174.39474394743948,66.47477843645208],[-174.41634416344164,66.47477843645208],[-174.45954459544595,66.45958124102313],[-174.4631446314463,66.44607262286408],[-174.45954459544595,66.41905538654595],[-174.46674466744668,66.40216961384712],[-174.45594455944558,66.37177522298924],[-174.43434434344343,66.35657802756029],[-174.39114391143912,66.35488945029041],[-174.39114391143912,66.33800367759159],[-174.41634416344164,66.34813514121089],[-174.4379443794438,66.34306940940124],[-174.45594455944558,66.32449505943251],[-174.4379443794438,66.31098644127346],[-174.4631446314463,66.28059205041558],[-174.41274412744127,66.27046058679628],[-174.3551435514355,66.2772148958758],[-174.30474304743046,66.30254355492406],[-174.29754297542976,66.32618363670241],[-174.29754297542976,66.34306940940124],[-174.36954369543696,66.33800367759159],[-174.29754297542976,66.35488945029041],[-174.27234272342724,66.37177522298924],[-174.23634236342363,66.38866099568807],[-174.16434164341644,66.39879245930737],[-174.16434164341644,66.4156782320062],[-174.15354153541534,66.43087542743513],[-174.16434164341644,66.44776120013395],[-174.2219422194222,66.4443840455942],[-174.22554225542257,66.4528269319436],[-174.20394203942038,66.47308985918221],[-174.16434164341644,66.45958124102313],[-174.1319413194132,66.45789266375326],[-174.08154081540815,66.46802412737256],[-174.01674016740168,66.4714012819123],[-173.969939699397,66.46295839556291],[-173.95193951939518,66.44607262286408],[-173.97353973539737,66.42580969562547],[-173.9771397713977,66.4055467683869],[-173.96273962739627,66.39372672749772],[-173.95193951939518,66.38359526387842],[-173.9339393393934,66.36670949117959],[-173.9339393393934,66.35320087302054],[-173.93033930339303,66.34138083213134],[-173.95193951939518,66.33800367759159],[-173.9771397713977,66.32956079124216],[-174.00234002340022,66.31942932762288],[-174.02034020340204,66.3059207094638],[-174.0311403114031,66.28565778222523],[-174.02034020340204,66.2687720095264],[-174.0311403114031,66.25188623682757],[-174.0311403114031,66.23668904139862],[-174.01674016740168,66.21980326869979],[-173.9987399873999,66.21980326869979],[-173.969939699397,66.22824615504922],[-173.95553955539555,66.24682050501792],[-173.93033930339303,66.26370627771675],[-173.88353883538835,66.28228062768545],[-173.81513815138152,66.29410066857463],[-173.79713797137973,66.30760928673368],[-173.84753847538477,66.31774075035298],[-173.88713887138871,66.31774075035298],[-173.89433894338944,66.33631510032171],[-173.85833858338583,66.34475798667111],[-173.82233822338225,66.34306940940124],[-173.7719377193772,66.34475798667111],[-173.73953739537396,66.35320087302054],[-173.70353703537035,66.37008664571934],[-173.7179371793718,66.39879245930737],[-173.71433714337144,66.41061250019655],[-173.69273692736928,66.4241211183556],[-173.69273692736928,66.43931831378455],[-173.71433714337144,66.4443840455942],[-173.72873728737287,66.45620408648338],[-173.81153811538115,66.4714012819123],[-173.8079380793808,66.48828705461113],[-173.8331383313833,66.50686140457987],[-173.87633876338762,66.51530429092927],[-173.9159391593916,66.51868144546904],[-173.94833948339485,66.51868144546904],[-173.9771397713977,66.52881290908832],[-174.02754027540274,66.52881290908832],[-174.059940599406,66.52881290908832],[-174.09954099540997,66.53725579543774],[-174.1247412474125,66.54569868178714],[-174.1571415714157,66.5321900636281],[-174.21474214742148,66.5608958772161],[-174.26514265142652,66.56596160902575],[-174.19674196741968,66.5896016908041],[-174.08154081540815,66.61493034985236],[-174.02754027540274,66.62675039074153],[-173.969939699397,66.64870189524999],[-173.93033930339303,66.66727624521872],[-173.92313923139233,66.68753917245729],[-173.9339393393934,66.70611352242602],[-173.93753937539375,66.72468787239472],[-173.9339393393934,66.73988506782368],[-173.93033930339303,66.75170510871286],[-173.9339393393934,66.7652137268719],[-173.9339393393934,66.78041092230086],[-173.94833948339485,66.79223096319004],[-173.94473944739448,66.81080531315874],[-173.95553955539555,66.82769108585757],[-173.96633966339664,66.84626543582627],[-173.98073980739807,66.86483978579497],[-174.0059400594006,66.88510271303358],[-174.0239402394024,66.90029990846253],[-174.01674016740168,66.91380852662158],[-174.01674016740168,66.92900572205053],[-174.01674016740168,66.94758007201924],[-174.02754027540274,66.96108869017829],[-174.059940599406,66.97628588560724],[-174.11034110341103,66.97628588560724],[-174.16074160741607,66.98135161741689],[-174.18954189541896,66.97966304014702],[-174.239942399424,66.97122015379759],[-174.2507425074251,66.97628588560724],[-174.20394203942038,66.9914830810362],[-174.1859418594186,67.00836885373502],[-174.18954189541896,67.02694320370372],[-174.23274232742327,67.03538609005312],[-174.2831428314283,67.04720613094233],[-174.4091440914409,67.02694320370372],[-174.4739447394474,67.01850031735432],[-174.49554495544956,67.02187747189407],[-174.3551435514355,67.06071474910138],[-174.39834398343984,67.06240332637125],[-174.55674556745566,67.03538609005312],[-174.6179461794618,67.04045182186277],[-174.61074610746107,67.06071474910138],[-174.57474574745748,67.0776005218002],[-174.19674196741968,67.08097767633998],[-173.9051390513905,67.08097767633998],[-173.75033750337502,67.07422336726043],[-173.6531365313653,67.08773198541951],[-173.6459364593646,67.11643779900751],[-173.60633606336063,67.10630633538821],[-173.54873548735486,67.09110913995926],[-173.48033480334803,67.07928909907008],[-173.44793447934478,67.07422336726043],[-173.4551345513455,67.06915763545078],[-173.48033480334803,67.06915763545078],[-173.49473494734949,67.06240332637125],[-173.49473494734949,67.04382897640255],[-173.46233462334624,67.0303203582435],[-173.429934299343,67.03369751278325],[-173.42633426334262,67.04720613094233],[-173.429934299343,67.06240332637125],[-173.4119341193412,67.07591194453033],[-173.39033390333904,67.07928909907008],[-173.2859328593286,67.0674690581809],[-173.1419314193142,67.05227186275195],[-173.06993069930698,67.04382897640255],[-173.08073080730807,67.0387632445929],[-173.09873098730986,67.03538609005312],[-173.1491314913149,67.03369751278325],[-173.20673206732067,67.0387632445929],[-173.23553235532356,67.05058328548208],[-173.24633246332462,67.05227186275195],[-173.27153271532714,67.05227186275195],[-173.2751327513275,67.04551755367243],[-173.26433264332644,67.0387632445929],[-173.26073260732608,67.0303203582435],[-173.2571325713257,67.02187747189407],[-173.22833228332283,67.01681174008442],[-173.19593195931958,67.01512316281455],[-173.14553145531454,67.00499169919524],[-173.1419314193142,66.9999259673856],[-173.14553145531454,66.98641734922654],[-173.17073170731706,66.98304019468677],[-173.19953199531994,66.98810592649642],[-173.23913239132392,66.98810592649642],[-173.2679326793268,66.98810592649642],[-173.29673296732966,66.98135161741689],[-173.3039330393304,66.96615442198794],[-173.31113311133112,66.95095722655901],[-173.30033300333002,66.93576003113006],[-173.28953289532896,66.93069429932041],[-173.29673296732966,66.9205628357011],[-173.30753307533075,66.91380852662158],[-173.30753307533075,66.90367706300228],[-173.28953289532896,66.893545599383],[-173.2679326793268,66.87834840395405],[-173.29673296732966,66.87159409487452],[-173.32193321933218,66.86146263125522],[-173.31833318333184,66.8445768585564],[-173.31833318333184,66.83106824039734],[-173.3039330393304,66.82262535404791],[-173.24273242732428,66.82769108585757],[-173.18153181531815,66.82600250858769],[-173.1419314193142,66.82431393131779],[-173.10233102331023,66.83782254947687],[-173.0879308793088,66.84626543582627],[-173.09873098730986,66.8530197449058],[-173.12393123931238,66.85808547671544],[-173.159931599316,66.86483978579497],[-173.1779317793178,66.87159409487452],[-173.17433174331742,66.8834141357637],[-173.17433174331742,66.893545599383],[-173.17433174331742,66.9019884857324],[-173.2139321393214,66.90367706300228],[-173.22473224732246,66.91043137208183],[-173.20673206732067,66.91887425843123],[-173.159931599316,66.91549710389145],[-173.15273152731527,66.93407145386018],[-173.159931599316,66.95095722655901],[-173.16353163531636,66.96108869017829],[-173.15273152731527,66.96953157652771],[-173.12033120331202,66.97290873106749],[-173.08433084330844,66.98304019468677],[-173.07353073530734,66.99317165830607],[-173.06273062730628,66.98979450376629],[-173.06993069930698,66.97628588560724],[-173.0771307713077,66.96784299925784],[-173.06633066330664,66.95264580382889],[-173.0519305193052,66.93407145386018],[-172.99432994329942,66.91718568116136],[-172.88632886328864,66.90367706300228],[-172.7819278192782,66.893545599383],[-172.6667266672667,66.88510271303358],[-172.61632616326165,66.8918570221131],[-172.60552605526055,66.90705421754205],[-172.61632616326165,66.92225141297101],[-172.56952569525694,66.9205628357011],[-172.55152551525515,66.90874279481193],[-172.50472504725047,66.90367706300228],[-172.41112411124112,66.91718568116136],[-172.36072360723608,66.93238287659028],[-172.49752497524975,66.97797446287711],[-172.6559265592656,66.9914830810362],[-172.84672846728466,67.0100574310049],[-172.92952929529295,67.02187747189407],[-172.95832958329584,67.01850031735432],[-172.99432994329942,67.0100574310049],[-173.0231302313023,67.01343458554467],[-173.0339303393034,67.02356604916395],[-173.02673026730267,67.03538609005312],[-172.98712987129872,67.0387632445929],[-172.78912789127892,67.03200893551337],[-172.73512735127352,67.02356604916395],[-172.64152641526414,67.01343458554467],[-172.40752407524076,66.98641734922654],[-172.1951219512195,66.96108869017829],[-172.05472054720548,66.95095722655901],[-171.98271982719828,66.95940011290841],[-171.92871928719288,66.96615442198794],[-171.9431194311943,66.97290873106749],[-171.93231932319324,66.97966304014702],[-171.89631896318963,66.97122015379759],[-171.8891188911889,66.96108869017829],[-171.82071820718207,66.95095722655901],[-171.78471784717848,66.95264580382889],[-171.719917199172,66.95095722655901],[-171.64071640716406,66.92900572205053],[-171.629916299163,66.90874279481193],[-171.66951669516695,66.89692275392275],[-171.69471694716947,66.88003698122392],[-171.66951669516695,66.84964259036605],[-171.629916299163,66.82937966312744],[-171.56151561515614,66.80911673588886],[-171.42471424714248,66.77534519049121],[-171.39231392313923,66.77872234503096],[-171.35271352713528,66.77196803595143],[-171.33111331113312,66.7449507996333],[-171.37431374313744,66.73481933601403],[-171.38871388713886,66.71455640877542],[-171.36351363513634,66.67403055429824],[-171.27351273512735,66.64025900890059],[-171.07911079110792,66.56765018629562],[-170.98550985509854,66.5423215272474],[-170.90990909909098,66.51530429092927],[-170.87750877508776,66.51530429092927],[-170.85950859508594,66.51023855911961],[-170.82710827108272,66.49166420915091],[-170.79470794707947,66.48322132280148],[-170.75870758707586,66.46464697283278],[-170.74070740707407,66.45958124102313],[-170.72990729907298,66.45451550921348],[-170.70470704707049,66.43087542743513],[-170.6651066510665,66.41736680927607],[-170.63270632706326,66.39879245930737],[-170.58230582305822,66.36164375936994],[-170.56430564305643,66.35320087302054],[-170.4959049590496,66.34475798667111],[-170.38430384303842,66.31605217308311],[-170.40230402304024,66.30760928673368],[-170.4311043110431,66.30254355492406],[-170.4851048510485,66.29410066857463],[-170.5139051390514,66.28396920495533],[-170.52110521105212,66.27046058679628],[-170.52110521105212,66.25526339136732],[-170.5391053910539,66.23500046412875],[-170.58950589505895,66.23668904139862],[-170.65430654306545,66.2485090822878],[-170.62550625506256,66.23500046412875],[-170.59670596705968,66.22486900050944],[-170.51030510305102,66.22486900050944],[-170.48870488704887,66.24344335047815],[-170.45990459904598,66.2586405459071],[-170.4311043110431,66.27214916406615],[-170.39150391503915,66.28565778222523],[-170.3519035190352,66.29241209130475],[-170.3159031590316,66.29241209130475],[-170.27270272702728,66.29072351403488],[-170.2151021510215,66.27552631860593],[-170.18270182701826,66.26539485498662],[-170.15390153901538,66.2485090822878],[-170.14310143101432,66.22318042323957],[-170.1071010710107,66.19278603238166],[-170.12870128701286,66.18096599149249],[-170.1611016110161,66.17758883695274],[-170.20430204302042,66.17421168241296],[-170.2331023310233,66.18603172330214],[-170.2619026190262,66.17927741422261],[-170.2871028710287,66.17927741422261],[-170.33750337503375,66.18603172330214],[-170.22230222302224,66.14888302336473],[-170.1359013590136,66.13875155974543],[-170.11430114301143,66.14888302336473],[-170.08550085500855,66.16914595060331],[-170.0459004590046,66.16914595060331],[-169.97389973899737,66.14550586882496],[-169.94869948699488,66.14550586882496],[-169.92349923499233,66.1505716006346],[-169.91629916299163,66.16408021879366],[-169.93429934299343,66.17083452787318],[-169.97029970299704,66.18096599149249],[-170.01350013500135,66.18940887784191],[-170.04230042300424,66.19278603238166],[-169.9918999189992,66.18940887784191],[-169.95229952299522,66.18434314603226],[-169.90549905499054,66.16914595060331],[-169.8118981189812,66.15732590971413],[-169.71829718297184,66.1319972506659],[-169.70749707497075,66.1319972506659],[-169.70029700297002,66.12862009612613],[-169.70029700297002,66.1218657870466],[-169.70029700297002,66.11511147796708],[-169.67869678696786,66.101602859808],[-169.65349653496534,66.08471708710917],[-169.64269642696428,66.06783131441034],[-169.6570965709657,66.05601127352116],[-169.67869678696786,66.03743692355246],[-169.69669696696968,66.02223972812351],[-169.71829718297184,66.00535395542468],[-169.77589775897758,66.00704253269458],[-169.82629826298262,66.0036653781548],[-169.8658986589866,66.02223972812351],[-169.89109891098911,66.04250265536211],[-169.9810998109981,66.03912550082234],[-170.0531005310053,66.02055115085363],[-170.14310143101432,66.0036653781548],[-170.23670236702367,65.9546966373282],[-170.3411034110341,65.9361222873595],[-170.37350373503736,65.9259908237402],[-170.42750427504274,65.90741647377149],[-170.51030510305102,65.87026777383409],[-170.60750607506074,65.86182488748466],[-170.62550625506256,65.85000484659548],[-170.60030600306004,65.8466276920557],[-170.56430564305643,65.85338200113526],[-170.53190531905318,65.85338200113526],[-170.51750517505175,65.82974191935688],[-170.52110521105212,65.81623330119783],[-170.57150571505716,65.76051025129169],[-170.53550535505354,65.73180443770369],[-170.53190531905318,65.71998439681451],[-170.5391053910539,65.70478720138556],[-170.54270542705427,65.69972146957593],[-170.54270542705427,65.69465573776628],[-170.53550535505354,65.6912785832265],[-170.53190531905318,65.68621285141685],[-170.53190531905318,65.67945854233733],[-170.48870488704887,65.67101565598793],[-170.52110521105212,65.6423098423999],[-170.53550535505354,65.61866976062154],[-170.58950589505895,65.60516114246249],[-170.66870668706687,65.60009541065284],[-170.8739087390874,65.6237354924312],[-170.8919089190892,65.62880122424085],[-170.89910899108992,65.64906415147945],[-171.05031050310504,65.68621285141685],[-171.14751147511475,65.69465573776628],[-171.1691116911169,65.71323008773498],[-171.20871208712086,65.75037878767242],[-171.26631266312663,65.77233029218087],[-171.3851138511385,65.8179218784677],[-171.46431464314642,65.83311907389665],[-171.46071460714606,65.8196104557376],[-171.43551435514354,65.79597037395925],[-171.41751417514175,65.77570744672065],[-171.39951399513996,65.75713309675194],[-171.38871388713886,65.74531305586277],[-171.31671316713167,65.73349301497359],[-171.33111331113312,65.72842728316394],[-171.3419134191342,65.72673870589404],[-171.37071370713707,65.72842728316394],[-171.35991359913598,65.70985293319521],[-171.3419134191342,65.69972146957593],[-171.30231302313024,65.68621285141685],[-171.26271262712626,65.65581846055898],[-171.24471244712447,65.65075272874932],[-171.16551165511655,65.64737557420955],[-171.14751147511475,65.6423098423999],[-171.08271082710826,65.6338669560505],[-171.04671046710467,65.62204691516132],[-171.03231032310322,65.59840683338297],[-171.02511025110252,65.58320963795401],[-170.98190981909818,65.59165252430344],[-170.9711097110971,65.55112666982623],[-170.97470974709748,65.51060081534905],[-171.01071010710106,65.48864931084057],[-171.03951039510395,65.46669780633212],[-171.15831158311582,65.48020642449117],[-171.19071190711907,65.49709219719],[-171.2519125191252,65.52242085623823],[-171.40311403114032,65.52073227896835],[-171.55431554315544,65.51060081534905],[-171.90351903519036,65.45994349725257],[-172.03312033120332,65.47514069268152],[-171.809918099181,65.48864931084057],[-171.7451174511745,65.50046935172978],[-171.77751777517776,65.51228939261895],[-171.86031860318604,65.51904370169848],[-171.95751957519576,65.5173551244286],[-171.98991989919898,65.53761805166718],[-172.0259202592026,65.54774951528648],[-172.06552065520654,65.55788097890579],[-172.07272072720727,65.56294671071544],[-172.09432094320942,65.56801244252506],[-172.11232112321125,65.54606093801661],[-172.14472144721447,65.53761805166718],[-172.16992169921699,65.52748658804788],[-172.19872198721987,65.53761805166718],[-172.259922599226,65.54606093801661],[-172.26352263522637,65.55619240163588],[-172.23472234722348,65.56801244252506],[-172.2059220592206,65.58152106068414],[-172.22752227522275,65.59671825611306],[-172.2671226712267,65.61022687427214],[-172.3211232112321,65.62204691516132],[-172.29592295922959,65.63555553332037],[-172.27072270722707,65.64737557420955],[-172.28872288722886,65.66594992417828],[-172.3391233912339,65.6541298832891],[-172.35352353523535,65.6727042332578],[-172.36432364323645,65.67608138779755],[-172.40032400324003,65.6811471196072],[-172.4291242912429,65.67945854233733],[-172.46512465124653,65.68621285141685],[-172.68472684726848,65.70478720138556],[-172.75672756727568,65.68959000595663],[-172.78912789127892,65.68790142868676],[-172.8251282512825,65.6912785832265],[-172.86112861128612,65.69972146957593],[-172.8251282512825,65.67101565598793],[-172.76752767527674,65.66426134690838],[-172.65952659526596,65.6727042332578],[-172.67032670326702,65.6625727696385],[-172.68472684726848,65.6524413060192],[-172.6739267392674,65.6237354924312],[-172.64152641526414,65.61866976062154],[-172.58032580325803,65.61191545154202],[-172.48312483124832,65.60684971973237],[-172.38952389523894,65.58152106068414],[-172.37872378723787,65.56294671071544],[-172.38952389523894,65.5443723607467],[-172.39672396723967,65.52748658804788],[-172.34632346323463,65.50215792899965],[-172.32472324723247,65.4869607335707],[-172.3211232112321,65.46500922906222],[-172.3859238592386,65.4785178472213],[-172.4147241472415,65.4768292699514],[-172.4291242912429,65.47007496087187],[-172.42552425524255,65.46332065179234],[-172.39672396723967,65.45656634271282],[-172.38952389523894,65.44474630182364],[-172.38952389523894,65.43292626093447],[-172.35712357123572,65.42279479731516],[-172.26352263522637,65.41772906550551],[-172.16992169921699,65.44474630182364],[-172.1231212312123,65.48358357903095],[-172.09432094320942,65.48358357903095],[-172.16272162721629,65.42110622004529],[-172.19152191521914,65.35187455198007],[-172.20232202322023,65.32485731566197],[-172.18432184321844,65.29784007934384],[-172.18072180721808,65.26406853394619],[-172.1879218792188,65.24211702943771],[-172.21672216722166,65.23873987489796],[-172.2491224912249,65.23367414308831],[-172.2779227792278,65.25393707032688],[-172.30672306723068,65.26744568848596],[-172.34272342723426,65.27419999756549],[-172.3751237512375,65.27588857483536],[-172.40032400324003,65.27251142029559],[-172.4471244712447,65.26406853394619],[-172.5119251192512,65.26069137940641],[-172.529925299253,65.25731422486666],[-172.55152551525515,65.25055991578714],[-172.57672576725767,65.24718276124736],[-172.6379263792638,65.26913426575584],[-172.6667266672667,65.27588857483536],[-172.68112681126811,65.27419999756549],[-172.69192691926918,65.26913426575584],[-172.6991269912699,65.25900280213654],[-172.70272702727027,65.24718276124736],[-172.69552695526954,65.23536272035818],[-172.68472684726848,65.23029698854853],[-172.6667266672667,65.22860841127866],[-172.55152551525515,65.20665690677018],[-172.4579245792458,65.22016552492923],[-172.36432364323645,65.20834548404005],[-172.31032310323104,65.22016552492923],[-172.28152281522816,65.21003406130993],[-172.20232202322023,65.21678837038948],[-172.16632166321662,65.17795109318217],[-172.16992169921699,65.15262243413392],[-172.20232202322023,65.13235950689534],[-172.22752227522275,65.13235950689534],[-172.25632256322564,65.13742523870499],[-172.25272252722527,65.13573666143509],[-172.24192241922418,65.12391662054591],[-172.22752227522275,65.10027653876756],[-172.21672216722166,65.09014507514826],[-172.1951219512195,65.08339076606873],[-172.18072180721808,65.09014507514826],[-172.16992169921699,65.09858796149769],[-172.15552155521556,65.10365369330734],[-172.08712087120873,65.09352222968803],[-172.079920799208,65.0766364569892],[-172.09432094320942,65.04961922067108],[-172.17352173521735,65.01753625254332],[-172.22032220322203,64.98376470714567],[-172.32472324723247,64.94830458447811],[-172.47232472324723,64.92128734816],[-172.49752497524975,64.91791019362023],[-172.53712537125372,64.92635307996966],[-172.55872558725588,64.92466450269976],[-172.60552605526055,64.90271299819128],[-172.6271262712627,64.89933584365153],[-172.65952659526596,64.8908929573021],[-172.6991269912699,64.87738433914305],[-172.72072720727206,64.8621871437141],[-172.7639276392764,64.83854706193574],[-172.80712807128072,64.84698994828517],[-172.90072900729007,64.85880998917435],[-173.00153001530015,64.85543283463457],[-173.05553055530555,64.83854706193574],[-173.06273062730628,64.80984124834774],[-173.08073080730807,64.78113543475973],[-173.16353163531636,64.7642496620609],[-173.159931599316,64.75918393025125],[-173.05913059130592,64.76931539387056],[-173.0051300513005,64.79633263018869],[-172.97632976329763,64.81321840288751],[-172.92232922329222,64.82166128923691],[-172.86472864728648,64.81659555742726],[-172.80712807128072,64.80308693926821],[-172.77832778327783,64.79295547564891],[-172.74952749527495,64.76256108479103],[-172.75672756727568,64.73385527120303],[-172.81072810728108,64.7254123848536],[-172.83232832328324,64.71021518942467],[-172.85752857528576,64.69839514853547],[-172.89352893528934,64.69332941672585],[-172.94752947529474,64.6882636849162],[-173.00873008730088,64.67475506675711],[-173.04113041130412,64.65955787132819],[-173.04113041130412,64.64604925316911],[-172.97632976329763,64.65449213951854],[-172.89352893528934,64.66462360313784],[-172.86112861128612,64.66293502586794],[-172.8431284312843,64.64942640770889],[-172.87192871928718,64.62747490320041],[-172.91152911529116,64.59539193507263],[-172.96552965529656,64.57175185329427],[-172.96552965529656,64.56162038967497],[-172.90072900729007,64.56330896694487],[-172.86472864728648,64.5785061623738],[-172.84672846728466,64.59370335780275],[-172.81432814328144,64.61227770777145],[-172.7819278192782,64.60552339869193],[-172.74592745927458,64.60214624415218],[-172.72072720727206,64.59708051234253],[-172.67032670326702,64.59370335780275],[-172.65232652326523,64.59032620326298],[-172.62352623526235,64.57681758510392],[-172.46512465124653,64.55824323513522],[-172.45432454324543,64.54811177151592],[-172.45072450724507,64.53291457608697],[-172.43992439924398,64.51434022611826],[-172.41112411124112,64.48901156707004],[-172.22032220322203,64.40795985811565],[-172.32472324723247,64.40964843538555],[-172.3859238592386,64.40795985811565],[-172.43992439924398,64.39951697176625],[-172.48672486724868,64.38769693087707],[-172.54432544325442,64.3758768899879],[-172.5911259112591,64.37081115817824],[-172.64152641526414,64.39107408541682],[-172.65232652326523,64.39276266268672],[-172.68112681126811,64.40289412630602],[-172.709927099271,64.39951697176625],[-172.71352713527136,64.41809132173495],[-172.71352713527136,64.4434199807832],[-172.73512735127352,64.45017428986273],[-172.76752767527674,64.45861717621213],[-172.7639276392764,64.46874863983143],[-172.7711277112771,64.48056868072061],[-172.78552785527856,64.48901156707004],[-172.80352803528035,64.49576587614956],[-172.81432814328144,64.50420876249896],[-172.8431284312843,64.49745445341944],[-172.88272882728828,64.49407729887969],[-172.93312933129332,64.48394583526039],[-173.01233012330124,64.4619943307519],[-172.979929799298,64.43835424897355],[-172.91512915129152,64.45017428986273],[-172.8359283592836,64.45355144440248],[-172.78912789127892,64.43835424897355],[-172.78912789127892,64.41640274446507],[-172.81432814328144,64.39782839449637],[-172.81792817928178,64.36236827182881],[-172.81792817928178,64.34041676732036],[-172.82152821528214,64.32015384008176],[-172.85032850328503,64.3049566446528],[-172.87552875528755,64.30157949011306],[-172.88632886328864,64.30326806738293],[-172.91872918729186,64.33872819005046],[-172.9511295112951,64.33872819005046],[-172.9511295112951,64.31171095373233],[-172.92952929529295,64.28975944922388],[-172.92232922329222,64.26443079017562],[-173.00873008730088,64.25936505836597],[-173.1059310593106,64.24079070839727],[-173.2211322113221,64.26949652198527],[-173.27153271532714,64.28807087195398],[-173.36873368733688,64.28469371741423],[-173.37953379533795,64.3150881082721],[-173.36513365133652,64.34210534459024],[-173.36513365133652,64.36574542636859],[-173.30753307533075,64.38938550814694],[-173.2751327513275,64.43159993989403],[-173.26433264332644,64.44679713532295],[-173.2751327513275,64.4518628671326],[-173.30033300333002,64.45017428986273],[-173.31113311133112,64.4518628671326],[-173.3039330393304,64.46874863983143],[-173.3039330393304,64.48563441253026],[-173.30033300333002,64.50252018522909],[-173.2859328593286,64.52109453519779],[-173.30033300333002,64.53798030789662],[-173.30753307533075,64.54473461697614],[-173.31833318333184,64.54811177151592],[-173.33633336333364,64.5514889260557],[-173.339933399334,64.55824323513522],[-173.339933399334,64.56668612148462],[-173.35073350733506,64.58526047145335],[-173.35433354333543,64.59201478053288],[-173.36153361533616,64.59539193507263],[-173.39033390333904,64.5987690896124],[-173.39753397533974,64.60383482142205],[-173.41553415534156,64.6173434395811],[-173.41553415534156,64.59708051234253],[-173.39753397533974,64.56499754421475],[-173.36873368733688,64.53291457608697],[-173.35433354333543,64.50758591703874],[-173.3579335793358,64.48056868072061],[-173.37593375933758,64.46030575348203],[-173.36513365133652,64.4231570535446],[-173.38673386733868,64.3944512399566],[-173.4551345513455,64.36405684909872],[-173.50553505535055,64.34379392186011],[-173.5991359913599,64.33028530370106],[-173.6351363513635,64.33197388097093],[-173.68553685536855,64.34885965366976],[-173.8331383313833,64.38094262179754],[-173.86913869138692,64.3944512399566],[-173.9879398793988,64.4130255899253],[-174.0239402394024,64.4434199807832],[-174.02754027540274,64.4704372171013],[-174.03834038340383,64.49576587614956],[-174.0419404194042,64.52784884427734],[-174.07074070740708,64.5498003487858],[-174.14634146341464,64.5700632760244],[-174.17874178741786,64.58526047145335],[-174.239942399424,64.59539193507263],[-174.2831428314283,64.6072119759618],[-174.32634326343265,64.62578632593053],[-174.3479434794348,64.64436067589924],[-174.30114301143013,64.65111498497876],[-174.2831428314283,64.65111498497876],[-174.30474304743046,64.66631218040772],[-174.3479434794348,64.66968933494746],[-174.42714427144273,64.66631218040772],[-174.46674466744668,64.66968933494746],[-174.65394653946538,64.7254123848536],[-174.65754657546574,64.74060958028255],[-174.65034650346504,64.7541181984416],[-174.63954639546395,64.78451258929951],[-174.59274592745928,64.81659555742726],[-174.6071460714607,64.85712141190444],[-174.65394653946538,64.89764726638165],[-174.68274682746826,64.9010244209214],[-174.70434704347042,64.87063003006352],[-174.689946899469,64.835169907396],[-174.72234722347224,64.80646409380799],[-174.79434794347944,64.80308693926821],[-174.84834848348484,64.80139836199834],[-174.89874898748988,64.79802120745856],[-174.9131491314913,64.83010417558634],[-174.92034920349204,64.85543283463457],[-174.95274952749529,64.8621871437141],[-174.97074970749708,64.84698994828517],[-174.9671496714967,64.82503844377669],[-174.9671496714967,64.80308693926821],[-174.9779497794978,64.78282401202961],[-174.98874988749887,64.76593823933078],[-175.0571505715057,64.75918393025125],[-175.16155161551615,64.76593823933078],[-175.3019530195302,64.77438112568021],[-175.3631536315363,64.78788974383926],[-175.40995409954098,64.77100397114043],[-175.4567545675457,64.79802120745856],[-175.41355413554135,64.80646409380799],[-175.35235352353524,64.82672702104657],[-175.36675366753667,64.84698994828517],[-175.40275402754028,64.84192421647552],[-175.43875438754387,64.83348133012609],[-175.4819548195482,64.8436127937454],[-175.4819548195482,64.8621871437141],[-175.49635496354963,64.87569576187317],[-175.53955539555395,64.87569576187317],[-175.54675546755468,64.88413864822257],[-175.5611556115561,64.892581534572],[-175.5827558275583,64.90440157546118],[-175.62235622356224,64.91453303908048],[-175.62955629556296,64.92128734816],[-175.70155701557016,64.93141881177928],[-175.77355773557736,64.93986169812871],[-175.77355773557736,64.95843604809741],[-175.78795787957878,64.97194466625649],[-175.84915849158492,64.99051901622519],[-175.86355863558634,64.99896190257459],[-175.84555845558455,65.01415909800355],[-175.76635766357663,65.0377991797819],[-175.77355773557736,65.06312783883016],[-175.8131581315813,65.0766364569892],[-175.80955809558097,65.08676792060851],[-175.78075780757808,65.10365369330734],[-175.7411574115741,65.12391662054591],[-175.7339573395734,65.14755670232427],[-175.74835748357484,65.17119678410265],[-175.7951579515795,65.18301682499182],[-175.88155881558816,65.25900280213654],[-175.87075870758707,65.28433146118479],[-175.86355863558634,65.29952865661372],[-175.88875888758886,65.33667735655115],[-175.89235892358923,65.37551463375846],[-175.91035910359105,65.40253187007656],[-175.95715957159572,65.42279479731516],[-175.97875978759788,65.43461483820434],[-176.04356043560435,65.45150061090317],[-176.0867608676087,65.45656634271282],[-176.1839618396184,65.46332065179234],[-176.34956349563495,65.50046935172978],[-176.62676626766267,65.54268378347683],[-176.9759697596976,65.60853829700227],[-177.06957069570694,65.58996394703354],[-177.16317163171632,65.56801244252506],[-177.24597245972458,65.53930662893706],[-177.30717307173072,65.48864931084057],[-177.41517415174152,65.44136914728387],[-177.74997749977499,65.44136914728387],[-178.019980199802,65.44136914728387],[-178.28278282782827,65.44474630182364],[-178.46278462784628,65.47345211541165],[-178.5059850598506,65.49540361992013],[-178.52758527585277,65.51060081534905],[-178.5311853118531,65.52242085623823],[-178.52038520385204,65.5359294743973],[-178.51318513185132,65.5443723607467],[-178.49518495184952,65.56125813344553],[-178.50238502385025,65.57814390614436],[-178.49518495184952,65.60347256519262],[-178.4591845918459,65.62035833789145],[-178.46278462784628,65.6423098423999],[-178.44478444784448,65.6625727696385],[-178.41238412384124,65.6811471196072],[-178.42318423184233,65.71323008773498],[-178.47358473584737,65.74869021040251],[-178.51318513185132,65.7621988285616],[-178.58878588785888,65.73011586043381],[-178.62838628386285,65.73011586043381],[-178.649986499865,65.76895313764112],[-178.63558635586355,65.77570744672065],[-178.64638646386464,65.7807731785303],[-178.6571865718657,65.78246175580017],[-178.68238682386823,65.78246175580017],[-178.69318693186932,65.78415033307004],[-178.70038700387005,65.7892160648797],[-178.7039870398704,65.79597037395925],[-178.7507875078751,65.83649622843643],[-178.76518765187652,65.8466276920557],[-178.87318873188732,65.89390785561244],[-178.9019890198902,65.91923651466067],[-178.86958869588696,65.93781086462937],[-178.89478894788948,65.97664814183668],[-178.97758977589777,66.04925696444164],[-178.9559895598956,66.04756838717176],[-178.93438934389343,66.04081407809224],[-178.89478894788948,66.02223972812351],[-178.83358833588335,66.00535395542468],[-178.81558815588156,65.99691106907528],[-178.79758797587976,65.9935339145355],[-178.72558725587257,65.99184533726563],[-178.6859868598686,66.01210826450423],[-178.6679866798668,66.04756838717176],[-178.70038700387005,66.07627420075977],[-178.68238682386823,66.101602859808],[-178.61758617586176,66.10666859161765],[-178.559985599856,66.1032914370779],[-178.52758527585277,66.11848863250682],[-178.49518495184952,66.1404401370153],[-178.51318513185132,66.15563733244426],[-178.52758527585277,66.17083452787318],[-178.5059850598506,66.19109745511179],[-178.49158491584916,66.21136038235039],[-178.50238502385025,66.21980326869979],[-178.52758527585277,66.22486900050944],[-178.52038520385204,66.24682050501792],[-178.53838538385384,66.2687720095264],[-178.5311853118531,66.27383774133605],[-178.52038520385204,66.28228062768545],[-178.50238502385025,66.29916640038428],[-178.4987849878499,66.30929786400358],[-178.50238502385025,66.31605217308311],[-178.50958509585095,66.32449505943251],[-178.51318513185132,66.33462652305181],[-178.46278462784628,66.36839806844947],[-178.47718477184773,66.38359526387842],[-178.50238502385025,66.38021810933864],[-178.52038520385204,66.37346380025912],[-178.5419854198542,66.36164375936994],[-178.53838538385384,66.35151229575064],[-178.56358563585636,66.35488945029041],[-178.60318603186033,66.35995518210007],[-178.60318603186033,66.34644656394099],[-178.60678606786067,66.33462652305181],[-178.61038610386103,66.32449505943251],[-178.61038610386103,66.31098644127346],[-178.62118621186212,66.2957892458445],[-178.66438664386644,66.2586405459071],[-178.7219872198722,66.20967180508049],[-178.7507875078751,66.19109745511179],[-178.78678786787867,66.16745737333343],[-178.89478894788948,66.14888302336473],[-178.9811898118981,66.159014486984],[-179.0459904599046,66.19954034146119],[-179.0639906399064,66.21304895962027],[-179.1179911799118,66.24344335047815],[-179.1287912879129,66.25188623682757],[-179.12159121591216,66.27046058679628],[-179.0891908919089,66.29241209130475],[-179.08199081990819,66.3059207094638],[-179.09639096390964,66.34644656394099],[-179.12519125191253,66.38866099568807],[-179.16479164791647,66.4139896547363],[-179.19719197191972,66.39879245930737],[-179.17919179191793,66.37346380025912],[-179.17559175591757,66.34475798667111],[-179.17919179191793,66.31605217308311],[-179.1719917199172,66.28903493676498],[-179.24759247592476,66.29241209130475],[-179.29079290792907,66.29916640038428],[-179.32319323193232,66.32449505943251],[-179.4239942399424,66.34475798667111],[-179.39159391593915,66.2957892458445],[-179.37359373593736,66.28903493676498],[-179.33759337593375,66.28228062768545],[-179.3267932679327,66.27552631860593],[-179.30879308793087,66.25188623682757],[-179.29079290792907,66.2299347323191],[-179.21879218792188,66.18265456876239],[-179.25119251192513,66.14550586882496],[-179.30879308793087,66.12524294158635],[-179.42039420394204,66.11848863250682],[-179.57519575195752,66.1117343234273],[-179.66159661596615,66.12693151885625],[-179.67959679596797,66.13537440520565],[-179.69039690396903,66.14212871428518],[-179.67959679596797,66.14550586882496],[-179.58959589595895,66.14381729155508],[-179.5787957879579,66.14888302336473],[-179.58239582395825,66.159014486984],[-179.62919629196293,66.16914595060331],[-179.68319683196833,66.18772030057201],[-179.6939969399694,66.18434314603226],[-179.70839708397085,66.16239164152378],[-179.76959769597696,66.1032914370779],[-179.78039780397805,66.07627420075977],[-179.78759787597875,66.03237119174281],[-179.7911979119791,66.02055115085363],[-179.8019980199802,66.01210826450423],[-179.81279812798127,66.0036653781548],[-179.81639816398163,65.99691106907528],[-179.81639816398163,65.9834024509162],[-179.82719827198272,65.9462537509788],[-179.82719827198272,65.93443371008962],[-179.7659976599766,65.8196104557376],[-179.75159751597516,65.799347528499],[-179.72279722797228,65.7807731785303],[-179.45639456394565,65.67439281052768],[-179.39159391593915,65.65919561509872],[-179.27639276392765,65.63048980151072],[-179.30879308793087,65.60684971973237],[-179.30159301593017,65.58320963795401],[-179.31959319593196,65.57476675160461],[-179.2619926199262,65.53255231985753],[-179.2979929799298,65.50046935172978],[-179.36279362793627,65.468386383602],[-179.40239402394025,65.45150061090317],[-179.4131941319413,65.43799199274412],[-179.46359463594635,65.41772906550551],[-179.49959499594996,65.39577756099703],[-179.48879488794887,65.36538317013915],[-179.4851948519485,65.3501859747102],[-179.52119521195212,65.32992304747162],[-179.5139951399514,65.30797154296314],[-179.52119521195212,65.27757715210524],[-179.52479524795248,65.23536272035818],[-179.58959589595895,65.20159117496053],[-179.62559625596256,65.16781962956287],[-179.66159661596615,65.14080239324474],[-179.69039690396903,65.14249097051464],[-179.74079740797407,65.14249097051464],[-179.77679776797768,65.12729377508569],[-179.80559805598057,65.10871942511699],[-179.8307983079831,65.09183365241816],[-179.87759877598776,65.08001361152898],[-179.89919899198992,65.07325930244943],[-179.93519935199353,65.0665049933699],[-180,65.0665049933699]]],[[[-100.87120871208712,69.80802996720053],[-100.87840878408784,69.7827013081523],[-100.89640896408964,69.76074980364382],[-100.9180091800918,69.74724118548474],[-100.94680946809468,69.74217545367512],[-100.94680946809468,69.73542114459556],[-100.92160921609216,69.72022394916664],[-100.92520925209251,69.69996102192803],[-100.96480964809648,69.6645008992605],[-100.97920979209792,69.66281232199063],[-101.05121051210511,69.66787805380025],[-101.07641076410764,69.66112374472073],[-101.09081090810908,69.66112374472073],[-101.11241112411123,69.66787805380025],[-101.13761137611375,69.68138667195933],[-101.1520115201152,69.69151813557863],[-101.15921159211592,69.68982955830873],[-101.16281162811627,69.68476382649908],[-101.16641166411664,69.68138667195933],[-101.25641256412564,69.66787805380025],[-101.2960129601296,69.67125520834003],[-101.32841328413284,69.67969809468946],[-101.35721357213572,69.69658386738826],[-101.37881378813788,69.72191252643651],[-101.37881378813788,69.73204399005581],[-101.42921429214292,69.76750411272334],[-101.46521465214651,69.82491573989935],[-101.47241472414724,69.83167004897888],[-101.4580145801458,69.8485558216777],[-101.42561425614255,69.87895021253561],[-101.42561425614255,69.90090171704406],[-101.440014400144,69.90934460339349],[-101.4580145801458,69.90596744885372],[-101.47601476014759,69.89414740796454],[-101.55161551615515,69.79789850358122],[-101.5660156601566,69.76750411272334],[-101.56961569615696,69.74555260821487],[-101.5840158401584,69.73035541278591],[-101.6380163801638,69.69489529011838],[-101.65241652416523,69.68138667195933],[-101.6740167401674,69.6459265492918],[-101.68481684816848,69.65605801291107],[-101.68841688416884,69.6645008992605],[-101.68841688416884,69.6729437856099],[-101.69561695616956,69.68138667195933],[-101.70641706417064,69.69151813557863],[-101.85041850418504,69.74724118548474],[-101.86481864818649,69.75061834002452],[-101.87921879218791,69.74555260821487],[-101.90081900819008,69.73542114459556],[-101.91881918819188,69.73204399005581],[-101.93681936819368,69.73879829913534],[-101.980019800198,69.77425842180287],[-102.00162001620016,69.78776703996195],[-102.01242012420124,69.79452134904147],[-102.02322023220232,69.80465281266078],[-102.02322023220232,69.80802996720053],[-102.02322023220232,69.82153858535958],[-102.03042030420303,69.84686724440783],[-102.04842048420484,69.85531013075723],[-102.070020700207,69.85193297621748],[-102.10962109621096,69.83504720351866],[-102.1240212402124,69.83167004897888],[-102.15642156421563,69.83167004897888],[-102.16362163621636,69.83673578078853],[-102.17442174421744,69.84517866713796],[-102.1780217802178,69.85531013075723],[-102.1780217802178,69.86206443983679],[-102.16722167221673,69.88401594434524],[-102.1780217802178,69.90259029431397],[-102.20322203222032,69.91609891247302],[-102.22482224822248,69.92116464428267],[-102.25362253622536,69.91272175793327],[-102.25362253622536,69.89414740796454],[-102.23562235622356,69.85362155348736],[-102.29682296822968,69.85362155348736],[-102.32562325623256,69.84686724440783],[-102.34722347223472,69.83167004897888],[-102.31842318423183,69.81816143081983],[-102.30762307623075,69.80802996720053],[-102.29682296822968,69.79789850358122],[-102.30762307623075,69.78776703996195],[-102.3220232202322,69.77594699907274],[-102.33642336423364,69.76750411272334],[-102.34722347223472,69.76412695818357],[-102.37242372423724,69.76412695818357],[-102.3760237602376,69.76750411272334],[-102.36882368823687,69.77594699907274],[-102.36522365223652,69.7911441945017],[-102.37242372423724,69.80296423539087],[-102.38322383223831,69.81309569901018],[-102.39402394023939,69.81816143081983],[-102.40122401224012,69.80802996720053],[-102.40122401224012,69.79283277177157],[-102.40482404824049,69.78438988542217],[-102.4120241202412,69.77932415361252],[-102.42642426424264,69.77763557634265],[-102.43362433624335,69.77932415361252],[-102.45162451624516,69.78776703996195],[-102.46242462424624,69.7911441945017],[-102.47322473224732,69.7911441945017],[-102.4840248402484,69.78945561723182],[-102.49122491224912,69.78776703996195],[-102.52362523625236,69.76074980364382],[-102.5380253802538,69.7539954945643],[-102.58122581225813,69.74386403094499],[-102.5920259202592,69.74217545367512],[-102.60282602826028,69.74555260821487],[-102.62082620826207,69.7539954945643],[-102.64242642426424,69.76074980364382],[-102.66042660426604,69.76750411272334],[-102.67122671226711,69.76919268999322],[-102.6820268202682,69.75568407183417],[-102.61362613626136,69.71346964008708],[-102.57762577625776,69.69827244465816],[-102.48762487624876,69.68982955830873],[-102.49122491224912,69.66787805380025],[-102.50922509225092,69.6357950856725],[-102.49482494824947,69.60033496300497],[-102.5020250202502,69.59526923119532],[-102.50562505625057,69.59189207665554],[-102.50922509225092,69.58851492211576],[-102.51642516425164,69.58513776757601],[-102.51642516425164,69.58007203576636],[-102.51282512825128,69.56825199487719],[-102.50922509225092,69.56487484033741],[-102.5380253802538,69.55474337671814],[-102.57042570425703,69.54798906763858],[-102.63522635226352,69.54461191309883],[-102.69282692826928,69.55136622217836],[-102.71442714427144,69.55136622217836],[-102.78282782827829,69.5361690267494],[-102.81882818828188,69.53954618128918],[-102.87282872828727,69.55980910852776],[-103.00963009630097,69.58176061303624],[-103.0240302403024,69.59189207665554],[-103.08883088830888,69.59526923119532],[-103.15723157231572,69.6172207357038],[-103.2220322203222,69.64761512656167],[-103.26883268832688,69.68138667195933],[-103.29763297632977,69.69489529011838],[-103.32283322833229,69.68982955830873],[-103.3480334803348,69.68138667195933],[-103.38043380433804,69.68138667195933],[-103.38763387633875,69.68645240376898],[-103.39483394833948,69.69489529011838],[-103.40563405634056,69.70333817646781],[-103.420034200342,69.70840390827746],[-103.4380343803438,69.70840390827746],[-103.48843488434883,69.69489529011838],[-103.47763477634776,69.67632094014968],[-103.48483484834848,69.65943516745085],[-103.510035100351,69.61890931297367],[-103.44883448834489,69.61384358116402],[-103.32643326433264,69.57331772668684],[-103.2220322203222,69.55474337671814],[-103.18963189631896,69.53279187220966],[-103.16443164431644,69.50239748135175],[-103.13563135631357,69.45005158598539],[-103.12483124831247,69.43992012236609],[-103.1140311403114,69.44160869963599],[-103.0960309603096,69.45849447233482],[-103.09243092430924,69.47369166776375],[-103.0960309603096,69.49564317227222],[-103.09963099630995,69.51590609951083],[-103.08523085230853,69.52266040859035],[-103.060030600306,69.52097183132048],[-103.0420304203042,69.51590609951083],[-103.02763027630276,69.50239748135175],[-103.01683016830168,69.48213455411317],[-103.01323013230132,69.47369166776375],[-103.01323013230132,69.45680589506492],[-103.00963009630097,69.44836300871552],[-103.0060300603006,69.44160869963599],[-102.99522995229952,69.42978865874682],[-102.9880298802988,69.42134577239739],[-102.99882998829987,69.40952573150821],[-103.0240302403024,69.37744276338043],[-103.03843038430384,69.36562272249125],[-103.02043020430204,69.34367121798277],[-103.01683016830168,69.32678544528395],[-103.0240302403024,69.27950528172724],[-103.03843038430384,69.25755377721876],[-103.07443074430743,69.24066800451993],[-103.19323193231932,69.21027361366205],[-103.20763207632076,69.20183072731263],[-103.21483214832148,69.19169926369335],[-103.21483214832148,69.1866335318837],[-103.21123211232113,69.17987922280417],[-103.20763207632076,69.17143633645475],[-103.21123211232113,69.15961629556557],[-103.21843218432184,69.14948483194627],[-103.21843218432184,69.14104194559687],[-103.21123211232113,69.12922190470769],[-103.19683196831969,69.12077901835826],[-103.18243182431824,69.11571328654861],[-103.1680316803168,69.11740186381851],[-103.15363153631536,69.12584475016791],[-103.150031500315,69.13428763651734],[-103.14283142831428,69.1562391410258],[-103.1320313203132,69.1663706046451],[-103.12123121231213,69.17481349099452],[-103.08523085230853,69.19169926369335],[-103.04563045630456,69.20183072731263],[-103.02043020430204,69.22040507728136],[-102.94842948429483,69.29807963169594],[-102.93042930429304,69.30652251804537],[-102.8980289802898,69.31834255893455],[-102.88362883628837,69.32847402255385],[-102.880028800288,69.33860548617315],[-102.880028800288,69.35042552706233],[-102.87642876428764,69.3622455679515],[-102.86562865628656,69.36562272249125],[-102.8620286202862,69.36731129976116],[-102.85482854828548,69.3706884543009],[-102.84762847628475,69.37406560884068],[-102.8440284402844,69.37575418611056],[-102.8440284402844,69.38419707245998],[-102.83682836828368,69.38757422699973],[-102.70362703627036,69.39095138153951],[-102.66762667626676,69.40445999969856],[-102.6280262802628,69.41290288604799],[-102.54882548825488,69.41290288604799],[-102.51642516425164,69.42810008147691],[-102.4840248402484,69.470314513224],[-102.46242462424624,69.48044597684327],[-102.38322383223831,69.48382313138305],[-102.34722347223472,69.4888888631927],[-102.3040230402304,69.50239748135175],[-102.28242282422823,69.50408605862165],[-102.21762217622177,69.49057744046257],[-102.08442084420844,69.4888888631927],[-102.05562055620555,69.48382313138305],[-101.96921969219692,69.44160869963599],[-101.94041940419405,69.42134577239739],[-101.94761947619476,69.40614857696843],[-102.03762037620376,69.35717983614185],[-102.12042120421204,69.36731129976116],[-102.160021600216,69.35886841341173],[-102.17442174421744,69.3521141043322],[-102.16722167221673,69.34535979525268],[-102.17442174421744,69.34535979525268],[-102.17082170821708,69.32678544528395],[-102.17442174421744,69.31834255893455],[-102.160021600216,69.31834255893455],[-102.13842138421384,69.32847402255385],[-102.12762127621276,69.3318511770936],[-102.10962109621096,69.3335397543635],[-102.1060210602106,69.3318511770936],[-102.10242102421024,69.32509686801407],[-102.09522095220952,69.31496540439477],[-102.070020700207,69.30314536350559],[-102.04842048420484,69.29639105442607],[-102.03762037620376,69.28794816807667],[-102.05562055620555,69.26599666356819],[-102.07722077220772,69.24742231359949],[-102.09162091620917,69.24066800451993],[-102.1060210602106,69.24573373632958],[-102.13122131221311,69.26261950902841],[-102.15642156421563,69.27612812718749],[-102.18162181621815,69.28288243626702],[-102.21042210422104,69.27950528172724],[-102.23562235622356,69.26261950902841],[-102.22482224822248,69.25755377721876],[-102.21762217622177,69.24911089086936],[-102.2140221402214,69.24066800451993],[-102.22122221222212,69.22884796363076],[-102.21042210422104,69.2237822318211],[-102.18162181621815,69.21702792274158],[-102.16722167221673,69.2153393454717],[-102.15642156421563,69.21196219093193],[-102.13842138421384,69.1950764182331],[-102.11682116821169,69.1866335318837],[-102.09162091620917,69.18325637734392],[-102.06642066420665,69.18832210915357],[-102.05922059220592,69.21196219093193],[-102.04842048420484,69.22884796363076],[-102.02322023220232,69.24235658178983],[-101.99441994419944,69.25079946813923],[-101.94761947619476,69.26093093175854],[-101.9260192601926,69.26093093175854],[-101.9080190801908,69.25417662267901],[-101.890018900189,69.23897942725006],[-101.8540185401854,69.21871650001145],[-101.81081810818108,69.20858503639218],[-101.77121771217712,69.19338784096323],[-101.75681756817568,69.15961629556557],[-101.76761767617676,69.12246759562817],[-101.79641796417964,69.09376178204013],[-101.86481864818649,69.04479304121355],[-101.8540185401854,69.03466157759425],[-101.8360183601836,69.02790726851472],[-101.8180181801818,69.0194643821653],[-101.81081810818108,69.00595576400625],[-101.82161821618216,68.99582430038694],[-101.84681846818468,68.98906999130742],[-101.96561965619657,68.96880706406884],[-101.99081990819909,68.97387279587846],[-102.00882008820088,68.98231568222789],[-102.02322023220232,68.99075856857729],[-102.03762037620376,68.99920145492672],[-102.05562055620555,69.00257860946647],[-102.07722077220772,68.99920145492672],[-102.09522095220952,68.99075856857729],[-102.12762127621276,68.96880706406884],[-102.14922149221492,68.95698702317964],[-102.16722167221673,68.95360986863989],[-102.2140221402214,68.95529844590976],[-102.31122311223112,68.94010125048081],[-102.33642336423364,68.94516698229046],[-102.38322383223831,68.95698702317964],[-102.40842408424083,68.95529844590976],[-102.39762397623976,68.94010125048081],[-102.38682386823868,68.92659263232176],[-102.39402394023939,68.91646116870245],[-102.40842408424083,68.90801828235305],[-102.42282422824228,68.90126397327353],[-102.45162451624516,68.89619824146388],[-102.46242462424624,68.88944393238435],[-102.47322473224732,68.87931246876505],[-102.48762487624876,68.87255815968552],[-102.52362523625236,68.86580385060597],[-102.63522635226352,68.86580385060597],[-102.64242642426424,68.86918100514575],[-102.69642696426963,68.89113250965423],[-102.72882728827288,68.89788681873375],[-102.75042750427504,68.89957539600363],[-102.76482764827648,68.8928210869241],[-102.75042750427504,68.87593531422527],[-102.72522725227252,68.85904954152645],[-102.70362703627036,68.85229523244692],[-102.71442714427144,68.84047519155774],[-102.7360273602736,68.83372088247822],[-102.82962829628296,68.83034372793844],[-102.84762847628475,68.82696657339869],[-102.9160291602916,68.80501506889021],[-102.96642966429664,68.79826075981069],[-103.01323013230132,68.80163791435044],[-103.07083070830708,68.81852368704926],[-103.11043110431105,68.82527799612879],[-103.12123121231213,68.82865515066857],[-103.1320313203132,68.83540945974809],[-103.13923139231392,68.83878661428787],[-103.16443164431644,68.84216376882762],[-103.330033300333,68.83203230520832],[-103.3480334803348,68.82358941885892],[-103.36243362433623,68.81345795523961],[-103.3660336603366,68.80163791435044],[-103.35163351633516,68.78981787346126],[-103.3840338403384,68.78306356438173],[-103.41643416434164,68.78306356438173],[-103.44883448834489,68.78981787346126],[-103.49923499234993,68.80670364616009],[-103.5460354603546,68.82696657339869],[-103.56763567635676,68.83203230520832],[-103.5820358203582,68.82865515066857],[-103.60723607236072,68.82021226431914],[-103.6180361803618,68.81683510977939],[-103.71883718837188,68.82696657339869],[-103.76563765637655,68.83878661428787],[-103.78363783637836,68.84047519155774],[-103.83043830438304,68.83878661428787],[-103.86643866438664,68.84216376882762],[-103.92763927639277,68.86242669606622],[-103.96363963639637,68.86580385060597],[-104.06444064440645,68.8556723869867],[-104.10044100441004,68.85904954152645],[-104.19764197641976,68.88100104603492],[-104.22284222842228,68.8928210869241],[-104.23364233642336,68.90126397327353],[-104.23724237242372,68.90632970508318],[-104.23724237242372,68.9113954368928],[-104.2480424804248,68.92828120959163],[-104.2480424804248,68.93503551867119],[-104.25524255242553,68.94178982775071],[-104.26244262442624,68.94854413683024],[-104.30564305643057,68.94010125048081],[-104.29844298442984,68.92996978686153],[-104.27684276842768,68.91814974597236],[-104.26964269642696,68.90632970508318],[-104.30564305643057,68.90801828235305],[-104.36684366843669,68.92996978686153],[-104.4460444604446,68.94178982775071],[-104.46044460444604,68.93672409594106],[-104.4640446404464,68.92996978686153],[-104.46764467644677,68.91646116870245],[-104.47484474844748,68.90970685962293],[-104.52884528845289,68.8742467369554],[-104.59364593645937,68.8641152733361],[-104.860048600486,68.88100104603492],[-105.12285122851229,68.89619824146388],[-105.15525155251552,68.9029525505434],[-105.19845198451985,68.92996978686153],[-105.22365223652237,68.94178982775071],[-105.2560525605256,68.95192129137001],[-105.27765277652776,68.95529844590976],[-105.24885248852489,68.95698702317964],[-105.22365223652237,68.96374133225919],[-105.19845198451985,68.97387279587846],[-105.18045180451804,68.9924471458472],[-105.14805148051481,69.00257860946647],[-105.06525065250652,68.98738141403754],[-105.03285032850329,69.00257860946647],[-105.04725047250473,69.01439865035567],[-105.05085050850508,69.01608722762555],[-104.96444964449644,69.0295958457846],[-104.91764917649176,69.0481701957533],[-104.91764917649176,69.07518743207143],[-104.93924939249392,69.08531889569073],[-104.97164971649717,69.09376178204013],[-105.07965079650796,69.10558182292934],[-105.10125101251012,69.10558182292934],[-105.12645126451264,69.09207320477026],[-105.10485104851048,69.09207320477026],[-105.0760507605076,69.08700747296061],[-105.05445054450544,69.07856458661121],[-105.040050400504,69.06505596845213],[-105.21285212852128,69.08025316388108],[-105.2560525605256,69.09376178204013],[-105.45765457654576,69.10051609111969],[-105.46845468454684,69.10558182292934],[-105.490054900549,69.12584475016791],[-105.50445504455044,69.13597621378722],[-105.53325533255332,69.15117340921617],[-105.54765547655477,69.15455056375592],[-105.8860588605886,69.1765020682644],[-105.92925929259292,69.1663706046451],[-105.96885968859688,69.14948483194627],[-105.98325983259832,69.1477962546764],[-106.00486004860048,69.1477962546764],[-106.07326073260732,69.15961629556557],[-106.20286202862029,69.14948483194627],[-106.32886328863289,69.17819064553427],[-106.41166411664116,69.18832210915357],[-106.41526415264153,69.19338784096323],[-106.41526415264153,69.2052078818524],[-106.4080640806408,69.22547080909101],[-106.40086400864008,69.23729084998018],[-106.38646386463864,69.24573373632958],[-106.29286292862929,69.27106239537784],[-106.27486274862748,69.28794816807667],[-106.2820628206282,69.31496540439477],[-106.28926289262893,69.32003113620442],[-106.30006300063,69.32509686801407],[-106.31086310863108,69.33016259982372],[-106.31446314463145,69.3419826407129],[-106.32166321663216,69.38588564972986],[-106.32166321663216,69.39770569061903],[-106.31806318063181,69.40108284515881],[-106.31806318063181,69.40445999969856],[-106.33246332463324,69.41459146331786],[-106.35046350463504,69.42303434966726],[-106.3720637206372,69.42810008147691],[-106.39366393663937,69.43316581328656],[-106.41526415264153,69.43485439055644],[-106.44046440464405,69.44160869963599],[-106.51246512465124,69.4888888631927],[-106.54486544865448,69.50070890408188],[-106.58446584465844,69.50408605862165],[-106.62046620466204,69.4973317495421],[-106.66366663666636,69.470314513224],[-106.6960669606696,69.45849447233482],[-106.70686706867069,69.45174016325527],[-106.7140671406714,69.44836300871552],[-106.73206732067321,69.44836300871552],[-106.74286742867429,69.44498585417574],[-106.74286742867429,69.43992012236609],[-106.74286742867429,69.43316581328656],[-106.74286742867429,69.42641150420704],[-106.74646746467464,69.41121430877809],[-106.74646746467464,69.39939426788891],[-106.74646746467464,69.3892628042696],[-106.750067500675,69.37913134065033],[-106.76806768067681,69.37575418611056],[-106.92286922869228,69.3706884543009],[-106.96246962469624,69.3622455679515],[-106.99126991269912,69.34535979525268],[-106.99126991269912,69.32678544528395],[-106.95886958869589,69.29639105442607],[-106.9480694806948,69.26430808629829],[-106.94086940869408,69.25417662267901],[-106.92646926469264,69.23897942725006],[-106.92646926469264,69.22715938636088],[-106.93726937269372,69.2153393454717],[-106.95166951669516,69.2052078818524],[-106.96246962469624,69.20183072731263],[-107.02727027270272,69.19845357277288],[-107.0380703807038,69.18832210915357],[-107.03447034470345,69.17819064553427],[-107.02727027270272,69.16299345010535],[-107.02727027270272,69.15286198648604],[-107.04527045270453,69.1562391410258],[-107.10647106471065,69.16299345010535],[-107.16767167671676,69.13766479105709],[-107.27207272072721,69.0583016593726],[-107.33327333273333,69.02621869124485],[-107.47367473674737,68.9924471458472],[-107.88047880478804,68.95529844590976],[-107.94167941679416,68.94178982775071],[-108.23328233282332,68.93334694140128],[-108.32688326883269,68.95192129137001],[-108.53928539285393,68.94685555956036],[-108.56808568085681,68.93503551867119],[-108.54648546485464,68.9215269005121],[-108.53568535685356,68.91477259143258],[-108.53208532085321,68.90632970508318],[-108.53928539285393,68.89619824146388],[-108.550085500855,68.8843782005747],[-108.56448564485645,68.87593531422527],[-108.60408604086041,68.86749242787587],[-108.66888668886689,68.83709803701797],[-108.8020880208802,68.79319502800104],[-108.86688866888669,68.78475214165161],[-108.92088920889209,68.75435775079373],[-108.95328953289533,68.74253770990455],[-109.02889028890289,68.7273405144756],[-109.34569345693457,68.6986347008876],[-109.62289622896229,68.64122307371159],[-109.78489784897849,68.63278018736216],[-109.90369903699036,68.63953449644171],[-109.98649986499865,68.62602587828263],[-110.15930159301593,68.63278018736216],[-110.22770227702277,68.62771445555254],[-110.29250292502925,68.60576295104406],[-110.34650346503464,68.5804342919958],[-110.37530375303753,68.57705713745605],[-110.40050400504005,68.58887717834523],[-110.4221042210422,68.60407437377415],[-110.44370443704437,68.61082868285371],[-110.56970569705697,68.61927156920311],[-110.60570605706057,68.61758299193323],[-110.65970659706596,68.58887717834523],[-110.69210692106921,68.58550002380545],[-110.76050760507604,68.58550002380545],[-110.98010980109801,68.54835132386805],[-111.04131041310413,68.56354851929697],[-111.02691026910269,68.5719914056464],[-111.00531005310053,68.57874571472593],[-110.84690846908468,68.59563148742475],[-110.85050850508505,68.60238579650428],[-110.86850868508685,68.6091401055838],[-110.89010890108901,68.61251726012358],[-111.01971019710197,68.60238579650428],[-111.08091080910809,68.58550002380545],[-111.10971109711097,68.5804342919958],[-111.36171361713618,68.58718860107533],[-111.41931419314193,68.57874571472593],[-111.37251372513725,68.5618599420271],[-111.25731257312573,68.55848278748732],[-111.20691206912069,68.55003990113792],[-111.250112501125,68.51964551028004],[-111.34731347313473,68.52133408754992],[-111.53091530915309,68.5432855920584],[-111.8909189091891,68.52977697389932],[-112.24732247322473,68.51626835574027],[-112.26532265322653,68.51795693301014],[-112.27972279722798,68.52302266481979],[-112.29772297722977,68.52471124208967],[-112.33372333723337,68.51120262393061],[-112.35172351723517,68.50782546939084],[-112.39132391323913,68.50275973758121],[-112.58212582125822,68.50951404666074],[-112.60372603726037,68.50782546939084],[-112.61452614526145,68.50275973758121],[-112.65052650526505,68.47911965580283],[-112.65772657726578,68.47574250126308],[-112.66852668526685,68.47236534672331],[-112.69372693726937,68.47405392399318],[-112.74772747727476,68.46392246037391],[-112.89892898928989,68.47574250126308],[-113.24453244532445,68.4537909967546],[-113.28413284132841,68.46054530583413],[-113.3021330213302,68.47574250126308],[-113.29853298532986,68.49093969669201],[-113.26253262532624,68.50275973758121],[-113.2121321213212,68.50444831485109],[-113.06453064530645,68.48925111942214],[-113.03933039330393,68.49431685123179],[-113.050130501305,68.50951404666074],[-113.10413104131041,68.53653128297884],[-113.14013140131401,68.54835132386805],[-113.2229322293223,68.5618599420271],[-113.28053280532805,68.5821228692657],[-113.3489334893349,68.59225433288498],[-113.36333363333632,68.59732006469463],[-113.38853388533884,68.61589441466333],[-113.39573395733957,68.61927156920311],[-113.4209342093421,68.62771445555254],[-113.44253442534425,68.64628880552124],[-113.45333453334533,68.66824031002972],[-113.43893438934388,68.68681465999842],[-113.45333453334533,68.70201185542737],[-113.47133471334713,68.71383189631655],[-113.55053550535506,68.74422628717443],[-113.56493564935649,68.75266917352383],[-113.57933579335793,68.7661777916829],[-113.59733597335973,68.77799783257208],[-113.6369363693637,68.78981787346126],[-113.65493654936549,68.79994933708056],[-113.66933669336693,68.81514653250949],[-113.6729367293673,68.82696657339869],[-113.66213662136622,68.83540945974809],[-113.63333633336333,68.83878661428787],[-113.61893618936189,68.8455409233674],[-113.63333633336333,68.86073811879635],[-113.66933669336693,68.8826896233048],[-113.68013680136801,68.89788681873375],[-113.6729367293673,68.90970685962293],[-113.6369363693637,68.92659263232176],[-113.61173611736118,68.94516698229046],[-113.59373593735937,68.95023271410011],[-113.57933579335793,68.95867560044954],[-113.57213572135721,68.96542990952906],[-113.57213572135721,68.96880706406884],[-113.58293582935829,68.97724995041824],[-113.58293582935829,68.99582430038694],[-113.57573575735758,69.01777580489542],[-113.56853568535685,69.0295958457846],[-113.6369363693637,69.0295958457846],[-113.62613626136262,69.04310446394368],[-113.6009360093601,69.04648161848343],[-113.55053550535506,69.04479304121355],[-113.56853568535685,69.05661308210273],[-113.6369363693637,69.07687600934133],[-113.65133651336514,69.08869605023051],[-113.65493654936549,69.09545035931004],[-113.66213662136622,69.11064755473896],[-113.66573665736657,69.11909044108839],[-113.66573665736657,69.12077901835826],[-113.66933669336693,69.12246759562817],[-113.6729367293673,69.12584475016791],[-113.6729367293673,69.13259905924744],[-113.66933669336693,69.13259905924744],[-113.6369363693637,69.13935336832697],[-113.69093690936909,69.1562391410258],[-113.70173701737018,69.16299345010535],[-113.69813698136981,69.17312491372462],[-113.69093690936909,69.1765020682644],[-113.68733687336874,69.18325637734392],[-113.69453694536945,69.1950764182331],[-113.6729367293673,69.1950764182331],[-113.63333633336333,69.18325637734392],[-113.50733507335073,69.17481349099452],[-113.53973539735397,69.19001068642345],[-113.58293582935829,69.20183072731263],[-113.88533885338853,69.23053654090066],[-113.89613896138961,69.23729084998018],[-113.92133921339213,69.25248804540911],[-113.94293942939429,69.25924235448866],[-114.02214022140221,69.24911089086936],[-114.13374133741337,69.25079946813923],[-114.20574205742057,69.26599666356819],[-114.23814238142381,69.28119385899711],[-114.2561425614256,69.28288243626702],[-114.39654396543965,69.28794816807667],[-114.85734857348574,69.25248804540911],[-114.90054900549005,69.26261950902841],[-114.92574925749257,69.27781670445736],[-114.94014940149401,69.28119385899711],[-115.0049500495005,69.28457101353689],[-115.03015030150301,69.28119385899711],[-115.04815048150482,69.27275097264771],[-115.07695076950769,69.25417662267901],[-115.11295112951129,69.24573373632958],[-115.18855188551885,69.24235658178983],[-115.58095580955809,69.27106239537784],[-115.97335973359733,69.29976820896584],[-115.98775987759878,69.30652251804537],[-116.00216002160022,69.3132768271249],[-116.0129601296013,69.32171971347432],[-116.0309603096031,69.33016259982372],[-116.05256052560526,69.33522833163337],[-116.14616146161461,69.34029406344303],[-116.43056430564306,69.40445999969856],[-116.52776527765278,69.41459146331786],[-116.63216632166322,69.46187162687457],[-116.62136621366213,69.47706882230352],[-116.59976599765997,69.48551170865292],[-116.55656556565566,69.49564317227222],[-116.57096570965709,69.50577463589153],[-116.5889658896589,69.51421752224093],[-116.60336603366034,69.52266040859035],[-116.61056610566106,69.5361690267494],[-116.58536585365854,69.54461191309883],[-116.58176581765818,69.55474337671814],[-116.59616596165961,69.56318626306754],[-116.62136621366213,69.57162914941696],[-116.76176761767618,69.57838345849649],[-116.75096750967509,69.56825199487719],[-116.70776707767078,69.55136622217836],[-116.7329673296733,69.54461191309883],[-116.76176761767618,69.54967764490848],[-116.81216812168122,69.57500630395671],[-116.90576905769058,69.59189207665554],[-116.92736927369273,69.60540069481459],[-116.86976869768696,69.62059789024354],[-116.84816848168481,69.63241793113272],[-116.85536855368554,69.64761512656167],[-116.8589685896859,69.6543694356412],[-116.87336873368733,69.66112374472073],[-116.920169201692,69.66787805380025],[-116.9669696696967,69.68476382649908],[-117.0569705697057,69.69489529011838],[-117.09657096570965,69.70502675373768],[-117.14337143371434,69.73204399005581],[-117.21177211772118,69.75230691729439],[-117.2369723697237,69.75568407183417],[-117.25137251372513,69.76412695818357],[-117.26577265772657,69.7827013081523],[-117.27297272972729,69.80296423539087],[-117.27657276572765,69.81478427628005],[-117.28377283772838,69.829981471709],[-117.32697326973269,69.86881874891631],[-117.36657366573665,69.91609891247302],[-117.3809738097381,69.95155903514055],[-117.39897398973989,69.9667562305695],[-117.44217442174421,69.98870773507798],[-117.41337413374134,70.01572497139611],[-117.38817388173882,70.03429932136481],[-117.35937359373594,70.04611936225399],[-117.2981729817298,70.05625082587329],[-117.19377193771938,70.09171094854082],[-116.96336963369635,70.12885964847825],[-116.74376743767436,70.14574542117705],[-116.50976509765098,70.16263119387588],[-116.0309603096031,70.22004282105192],[-115.63855638556386,70.24874863463992],[-115.23175231752317,70.26394583006885],[-115.05175051750517,70.28083160276768],[-114.76374763747637,70.29096306638698],[-114.5081450814508,70.31460314816533],[-114.18414184141841,70.3162917254352],[-114.04014040140402,70.28083160276768],[-113.64413644136441,70.26225725279897],[-113.47853478534785,70.28420875730745],[-113.21933219332193,70.2605686755291],[-112.99252992529925,70.2318628619411],[-112.96732967329673,70.23692859375075],[-112.98172981729817,70.24706005737002],[-112.98892988929889,70.2504372119098],[-112.96372963729637,70.25381436644955],[-112.86292862928629,70.24368290283027],[-112.83052830528305,70.2318628619411],[-112.58572585725857,70.19977989381331],[-112.54972549725497,70.19977989381331],[-112.52092520925208,70.20822278016271],[-112.53532535325353,70.21497708924227],[-112.58212582125822,70.2217313983218],[-112.5569255692557,70.23861717102062],[-112.52812528125281,70.24537148010015],[-112.46332463324633,70.24368290283027],[-112.44892448924489,70.24199432556037],[-112.41652416524165,70.2318628619411],[-112.40212402124021,70.2301742846712],[-112.35892358923589,70.23692859375075],[-112.34452344523444,70.23692859375075],[-112.34452344523444,70.24368290283027],[-112.39132391323913,70.2504372119098],[-112.37332373323733,70.26225725279897],[-112.3409234092341,70.26732298460863],[-112.1681216812168,70.26732298460863],[-112.13932139321393,70.27745444822793],[-112.27252272522725,70.28420875730745],[-112.30852308523085,70.2977173754665],[-112.26172261722617,70.30953741635568],[-111.93771937719377,70.26394583006885],[-111.83691836918369,70.27407729368815],[-111.7181171811718,70.26225725279897],[-111.6389163891639,70.28083160276768],[-111.5489154891549,70.27070013914837],[-111.52371523715237,70.27070013914837],[-111.46971469714697,70.28252018003758],[-111.44451444514445,70.29096306638698],[-111.47691476914768,70.29940595273641],[-111.55971559715597,70.29434022092676],[-111.58851588515886,70.31291457089546],[-111.56331563315634,70.31798030270511],[-111.5129151291513,70.32304603451476],[-111.48771487714878,70.33148892086416],[-111.51651516515165,70.35175184810277],[-111.56691566915669,70.36019473445216],[-111.80811808118081,70.35175184810277],[-111.87651876518765,70.36694904353169],[-111.96291962919629,70.37539192988112],[-111.98091980919808,70.37876908442087],[-112.01332013320133,70.39396627984982],[-112.05652056520564,70.4074748980089],[-112.07092070920709,70.41422920708843],[-112.07452074520745,70.42098351616795],[-112.08172081720816,70.43786928886678],[-112.08532085320853,70.4446235979463],[-112.12132121321213,70.48008372061383],[-112.14292142921428,70.49359233877291],[-112.17172171721717,70.50372380239219],[-112.19692196921969,70.50541237966209],[-112.26172261722617,70.50372380239219],[-112.27972279722798,70.50541237966209],[-112.33012330123302,70.52398672963079],[-112.35172351723517,70.52398672963079],[-112.39132391323913,70.51216668874162],[-112.41292412924129,70.51047811147174],[-112.42372423724237,70.51723242055127],[-112.4309243092431,70.52736388417057],[-112.43812438124381,70.5341181932501],[-112.45612456124562,70.53749534778984],[-112.47052470524704,70.5341181932501],[-112.49932499324993,70.52060957509102],[-112.51732517325173,70.51723242055127],[-112.53892538925389,70.51892099782114],[-112.58572585725857,70.52736388417057],[-112.63972639726397,70.55100396594892],[-112.6829268292683,70.5628240068381],[-112.72612726127261,70.56957831591762],[-112.81972819728198,70.57464404772728],[-112.8449284492845,70.56957831591762],[-112.86652866528665,70.5425610795995],[-112.88812888128881,70.54762681140915],[-112.9241292412924,70.56620116137785],[-113.05373053730537,70.58984124315623],[-113.0861308613086,70.6101041703948],[-113.10773107731077,70.61854705674423],[-113.12933129331293,70.61685847947433],[-113.17973179731797,70.60672701585506],[-113.19413194131941,70.6101041703948],[-113.20493204932049,70.62023563401411],[-113.2121321213212,70.63036709763341],[-113.20853208532085,70.64049856125268],[-113.20853208532085,70.64725287033224],[-113.36333363333632,70.64725287033224],[-113.41373413734136,70.65400717941176],[-113.48933489334892,70.6810244157299],[-113.50373503735037,70.68440157026964],[-113.51453514535145,70.6810244157299],[-113.52173521735217,70.67595868392024],[-113.52173521735217,70.67089295211059],[-113.52173521735217,70.66413864303107],[-113.52533525335254,70.65738433395151],[-113.56133561335614,70.64387571579246],[-113.6009360093601,70.65063002487199],[-113.6369363693637,70.66582722030094],[-113.68733687336874,70.67764726119012],[-113.71973719737197,70.69115587934917],[-113.98973989739898,70.71648453839742],[-114.03654036540365,70.7097302293179],[-114.14454144541445,70.67258152938047],[-114.18414184141841,70.66751579757081],[-114.34614346143461,70.68609014753955],[-114.39654396543965,70.67933583845999],[-114.50454504545046,70.64387571579246],[-114.87174871748718,70.62867852036351],[-115.04455044550446,70.60334986131528],[-115.24255242552425,70.61179274766468],[-115.49455494554945,70.5999727067755],[-115.51255512555126,70.59659555223575],[-115.5449554495545,70.5813983568068],[-115.55935559355594,70.57970977953693],[-115.58095580955809,70.57970977953693],[-115.72855728557285,70.60672701585506],[-116.03816038160382,70.57970977953693],[-116.18576185761857,70.59828412950563],[-116.20736207362074,70.60672701585506],[-116.20376203762038,70.61685847947433],[-116.16776167761677,70.62023563401411],[-116.18936189361894,70.63374425217316],[-116.23256232562326,70.64049856125268],[-116.58176581765818,70.63374425217316],[-116.65016650166501,70.61348132493458],[-116.68256682566826,70.60841559312493],[-116.98856988569887,70.6016612840454],[-117.2369723697237,70.62023563401411],[-117.33057330573305,70.60334986131528],[-117.35217352173521,70.61348132493458],[-117.3449734497345,70.62023563401411],[-117.37377373773737,70.62867852036351],[-117.51417514175142,70.62023563401411],[-117.51777517775177,70.61854705674423],[-117.51777517775177,70.61348132493458],[-117.51777517775177,70.60841559312493],[-117.51777517775177,70.60672701585506],[-117.53577535775358,70.60334986131528],[-117.550175501755,70.6016612840454],[-117.58617586175862,70.60672701585506],[-117.69777697776978,70.63543282944306],[-117.73737737377374,70.66245006576116],[-117.70857708577086,70.69453303388894],[-117.73377733777338,70.71310738385765],[-117.76977769777697,70.7283045792866],[-117.80937809378094,70.74012462017578],[-117.87417874178742,70.7485675065252],[-118.18738187381874,70.83975067909887],[-118.27378273782737,70.87858795630615],[-118.32058320583207,70.90729376989415],[-118.41058410584105,70.97483686068946],[-118.42138421384215,70.99003405611842],[-118.38538385383853,71.0221170242462],[-118.09378093780938,71.09641442412104],[-117.79857798577986,71.17071182399587],[-117.47457474574745,71.1859090194248],[-117.09657096570965,71.24332064660084],[-116.89856898568985,71.23994349206106],[-116.85176851768517,71.24838637841046],[-116.81936819368192,71.26358357383941],[-116.82296822968229,71.26527215110929],[-116.83376833768338,71.27033788291894],[-116.83736837368374,71.27033788291894],[-116.8049680496805,71.29060081015754],[-116.31176311763117,71.35138959187333],[-116.26856268562685,71.3632096327625],[-116.1029610296103,71.37671825092156],[-116.07776077760778,71.36658678730225],[-116.1749617496175,71.3530781691432],[-116.15336153361534,71.34632386006368],[-116.12816128161282,71.34632386006368],[-116.09936099360993,71.34970101460343],[-116.0489604896049,71.3632096327625],[-115.76455764557646,71.36827536457213],[-115.72855728557285,71.38684971454086],[-115.78615786157862,71.39360402362038],[-115.90495904959049,71.39360402362038],[-116.06696066960669,71.42062125993851],[-116.20736207362074,71.42568699174817],[-116.21456214562146,71.43581845536744],[-116.18936189361894,71.44426134171687],[-116.0489604896049,71.44426134171687],[-115.74295742957429,71.51011585524228],[-115.7609576095761,71.49660723708323],[-115.75015750157502,71.48478719619405],[-115.72855728557285,71.48309861892417],[-115.61335613356134,71.4982958143531],[-115.58455584555846,71.4898529280037],[-115.5989559895599,71.48478719619405],[-115.56655566555665,71.471278578035],[-115.48735487354874,71.46790142349522],[-115.41895418954189,71.45101565079639],[-115.38655386553866,71.45945853714582],[-115.35415354153541,71.471278578035],[-115.32535325353253,71.47634430984462],[-115.20655206552065,71.48309861892417],[-115.14535145351454,71.50505012343265],[-115.05535055350553,71.52531305067123],[-115.10935109351094,71.53544451429053],[-115.29655296552966,71.49660723708323],[-115.42975429754297,71.4898529280037],[-115.49815498154982,71.49491865981335],[-115.55575555755557,71.51011585524228],[-115.55575555755557,71.51687016432183],[-115.45495454954549,71.53037878248088],[-115.45495454954549,71.53882166883028],[-115.60975609756098,71.55570744152911],[-115.82215822158221,71.54895313244958],[-115.8869588695887,71.53037878248088],[-115.98055980559805,71.5270016279411],[-116.04536045360453,71.51518158705193],[-116.13536135361353,71.5084272779724],[-116.18576185761857,71.499984391623],[-116.5529655296553,71.4797214643844],[-116.63576635766358,71.45439280533617],[-116.7329673296733,71.45439280533617],[-116.81936819368192,71.43244130082769],[-116.92376923769237,71.42737556901804],[-117.04977049770497,71.43750703263734],[-117.07137071370713,71.43244130082769],[-117.08937089370893,71.42568699174817],[-117.13257132571326,71.41724410539874],[-117.16857168571686,71.41217837358909],[-117.20457204572045,71.40373548723969],[-117.22617226172261,71.40204690996978],[-117.29097290972909,71.40542406450956],[-117.36657366573665,71.38853829181073],[-117.39177391773917,71.38684971454086],[-117.41337413374134,71.38853829181073],[-117.41697416974169,71.39529260089026],[-117.40977409774098,71.40373548723969],[-117.40257402574025,71.42906414628791],[-117.38457384573846,71.44426134171687],[-117.3809738097381,71.45270422806627],[-117.39177391773917,71.45945853714582],[-117.47457474574745,71.45608138260604],[-117.46377463774638,71.46452426895544],[-117.45657456574565,71.46790142349522],[-117.44937449374493,71.4695900007651],[-117.46737467374673,71.48478719619405],[-117.49977499774997,71.49491865981335],[-117.53577535775358,71.50167296889288],[-117.56457564575646,71.50336154616275],[-117.5609756097561,71.499984391623],[-117.5609756097561,71.49660723708323],[-117.55737557375573,71.49323008254345],[-117.550175501755,71.4898529280037],[-117.58257582575825,71.48141004165427],[-117.61137611376114,71.47634430984462],[-117.62937629376293,71.47296715530487],[-117.6329763297633,71.46283569168557],[-117.62217622176222,71.45270422806627],[-117.60777607776078,71.44932707352652],[-117.53577535775358,71.44932707352652],[-117.49977499774997,71.44088418717709],[-117.48177481774817,71.42062125993851],[-117.49257492574925,71.40711264177943],[-117.51057510575106,71.39191544635051],[-117.53577535775358,71.38009540546133],[-117.550175501755,71.37334109638178],[-117.70857708577086,71.38684971454086],[-117.70137701377013,71.39360402362038],[-117.71577715777158,71.40373548723969],[-117.72657726577265,71.40373548723969],[-117.7409774097741,71.39866975543003],[-117.76977769777697,71.38009540546133],[-117.78417784177842,71.37502967365168],[-117.79857798577986,71.37334109638178],[-117.84177841778418,71.37671825092156],[-117.88137881378813,71.38516113727096],[-117.89937899378994,71.38684971454086],[-118.16218162181622,71.37840682819143],[-118.24138241382414,71.39360402362038],[-118.30978309783097,71.43244130082769],[-118.30978309783097,71.4695900007651],[-118.25218252182522,71.50167296889288],[-118.12618126181262,71.53882166883028],[-117.93177931779317,71.54557597790983],[-117.78417784177842,71.528690205211],[-117.7589775897759,71.53882166883028],[-117.82017820178201,71.55233028698936],[-117.83817838178382,71.55908459606889],[-117.76257762577626,71.56077317333876],[-117.69057690576906,71.55401886425923],[-117.67257672576726,71.55908459606889],[-117.65457654576545,71.57259321422794],[-117.69057690576906,71.58272467784724],[-117.77337773377734,71.58610183238702],[-117.8129781297813,71.59285614146654],[-117.82377823778238,71.60298760508584],[-117.83097830978309,71.60636475962559],[-117.89577895778957,71.6164962232449],[-117.90657906579065,71.61480764597502],[-117.9209792097921,71.61311906870515],[-117.92817928179281,71.60974191416537],[-117.92817928179281,71.60467618235572],[-117.93177931779317,71.60129902781594],[-117.94257942579426,71.59961045054607],[-117.95697956979569,71.60298760508584],[-117.96777967779678,71.61143049143524],[-117.96777967779678,71.62156195505455],[-117.96057960579606,71.6350705732136],[-117.94257942579426,71.64351345956302],[-117.8669786697867,71.64182488229315],[-117.69417694176941,71.66884211861125],[-117.7229772297723,71.67728500496068],[-118.07578075780758,71.6654649640715],[-118.13338133381333,71.65026776864255],[-118.18018180181801,71.6266276868642],[-118.1729817298173,71.6080533368955],[-118.20538205382053,71.59792187327619],[-118.2989829898299,71.59116756419667],[-118.35658356583565,71.59285614146654],[-118.37458374583746,71.59116756419667],[-118.41058410584105,71.57934752330749],[-118.42858428584286,71.57934752330749],[-118.42138421384215,71.59116756419667],[-118.39978399783998,71.60298760508584],[-118.39258392583926,71.61311906870515],[-118.39978399783998,71.62493910959432],[-118.41418414184142,71.63169341867385],[-118.45738457384573,71.64182488229315],[-118.4609846098461,71.65364492318233],[-118.48978489784898,71.65871065499198],[-118.54378543785438,71.66208780953173],[-118.59058590585906,71.67053069588115],[-118.60498604986049,71.66884211861125],[-118.61578615786158,71.6637763868016],[-118.63378633786337,71.65026776864255],[-118.64458644586446,71.64857919137268],[-118.65898658986589,71.65026776864255],[-118.6769867698677,71.65871065499198],[-118.68778687786877,71.66208780953173],[-118.83178831788317,71.66208780953173],[-118.86418864188641,71.65871065499198],[-118.85338853388534,71.64857919137268],[-118.86418864188641,71.63844772775337],[-118.87858878588786,71.63000484140397],[-118.8929889298893,71.62493910959432],[-118.90738907389073,71.61987337778467],[-118.90018900189003,71.60974191416537],[-118.8929889298893,71.60298760508584],[-118.86778867788678,71.59285614146654],[-118.88938889388893,71.58272467784724],[-118.92538925389255,71.58947898692676],[-118.99738997389974,71.6164962232449],[-119.01179011790117,71.61987337778467],[-119.03339033390333,71.62156195505455],[-119.05139051390515,71.6266276868642],[-119.05859058590585,71.63844772775337],[-119.09459094590946,71.66884211861125],[-119.10179101791019,71.68910504584986],[-119.11979119791198,71.73638520940656],[-119.13059130591306,71.75495955937527],[-119.13779137791377,71.773533909344],[-119.13059130591306,71.79717399112235],[-119.10899108991089,71.8393884228694],[-119.10179101791019,71.88160285461649],[-119.0909909099091,71.89848862731532],[-119.07659076590767,71.9187515545539],[-119.0549905499055,71.93563732725272],[-118.9469894698947,71.99136037715886],[-118.82458824588247,72.03864054071556],[-118.7489874898749,72.05383773614452],[-118.71658716587166,72.07241208611322],[-118.70938709387093,72.08085497246265],[-118.70578705787057,72.09098643608195],[-118.70938709387093,72.10111789970122],[-118.72378723787239,72.10787220878078],[-118.70578705787057,72.12644655874948],[-118.6769867698677,72.1416437541784],[-118.57618576185762,72.17879245411584],[-118.4429844298443,72.18216960865561],[-118.12618126181262,72.22776119494245],[-118.10458104581045,72.24802412218102],[-118.12618126181262,72.30881290389681],[-118.1729817298173,72.33920729475469],[-118.24138241382414,72.34596160383421],[-118.42858428584286,72.34596160383421],[-118.4969849698497,72.36453595380294],[-118.51858518585186,72.36791310834269],[-118.54018540185402,72.37297884015234],[-118.56538565385654,72.3881760355813],[-118.5869858698587,72.40843896281987],[-118.59418594185942,72.42870189005848],[-118.5689856898569,72.47767063088509],[-118.51138511385113,72.50975359901284],[-118.28458284582845,72.58911673069733],[-118.24858248582485,72.59418246250698],[-118.23778237782378,72.59755961704676],[-118.2269822698227,72.60600250339616],[-118.20538205382053,72.62457685336486],[-118.1909819098191,72.63470831698416],[-118.16938169381694,72.64146262606369],[-118.12618126181262,72.64821693514324],[-118.03978039780398,72.67185701692159],[-118.00378003780037,72.67354559419147],[-117.8669786697867,72.70225140777947],[-117.80937809378094,72.737711530447],[-117.5969759697597,72.79850031216279],[-117.54657546575466,72.83058328029057],[-117.48177481774817,72.85253478479905],[-117.45657456574565,72.86773198022797],[-117.39897398973989,72.90656925743528],[-117.37017370173702,72.91838929832446],[-117.20817208172082,72.92345503013411],[-117.1109711097111,72.94540653464259],[-116.89496894968948,72.96735803915107],[-116.64296642966428,73.03490112994638],[-116.59256592565924,73.0602297889946],[-116.49536495364953,73.06191836626448],[-116.45576455764558,73.0703612526139],[-116.43776437764377,73.07542698442356],[-116.31896318963189,73.09400133439226],[-116.20016200162001,73.11932999344049],[-116.00936009360093,73.14128149794897],[-115.76455764557646,73.1868730842358],[-115.57015570155701,73.20207027966475],[-115.39735397353974,73.23415324779253],[-115.3829538295383,73.24090755687206],[-115.36855368553685,73.24935044322146],[-115.35055350553505,73.25779332957089],[-115.33255332553325,73.26285906138054],[-115.31815318153181,73.26454763865041],[-115.23175231752317,73.26454763865041],[-115.20655206552065,73.26961337046006],[-115.12735127351273,73.29494202950829],[-114.90774907749078,73.32027068855655],[-114.73854738547385,73.36586227484338],[-114.67734677346773,73.37768231573256],[-114.58374583745837,73.38443662481208],[-114.40734407344073,73.34728792487468],[-114.26334263342633,73.33546788398547],[-114.19494194941949,73.30845064766737],[-114.02214022140221,73.21220174328406],[-113.98253982539825,73.17674162061653],[-113.96453964539646,73.15647869337792],[-113.95733957339573,73.13959292067909],[-113.96093960939609,73.12270714798026],[-114.00414004140042,73.07204982988378],[-114.00774007740077,73.06360694353438],[-114.00774007740077,73.0517869026452],[-114.00414004140042,73.04334401629578],[-114.00414004140042,73.03490112994638],[-114.00774007740077,73.02645824359695],[-114.0149401494015,73.01801535724755],[-114.03654036540365,73.00619531635837],[-114.04374043740437,72.99775243000894],[-114.04014040140402,72.99775243000894],[-114.04374043740437,72.9842438118499],[-114.04734047340473,72.97242377096072],[-114.0509405094051,72.97073519369081],[-114.04014040140402,72.95553799826189],[-114.02934029340294,72.94540653464259],[-114.02574025740257,72.93527507102328],[-114.02934029340294,72.91670072105458],[-114.03294032940329,72.91163498924493],[-114.04374043740437,72.90656925743528],[-114.05454054540544,72.89981494835575],[-114.05814058140581,72.88799490746658],[-114.05454054540544,72.87786344384727],[-114.0509405094051,72.87110913476775],[-114.03654036540365,72.86097767114845],[-113.98973989739898,72.83902616663997],[-113.9681396813968,72.82382897121101],[-113.98253982539825,72.80863177578209],[-114.02214022140221,72.79850031216279],[-114.24174241742418,72.79174600308326],[-114.25254252542526,72.78836884854348],[-114.28134281342813,72.76472876676513],[-114.33534335343353,72.75628588041573],[-114.35694356943569,72.74615441679643],[-114.34614346143461,72.72758006682773],[-114.34254342543426,72.7191371804783],[-114.3389433894339,72.7005628305096],[-114.33534335343353,72.69380852143007],[-114.31374313743137,72.68536563508064],[-114.2669426694267,72.69549709869995],[-114.24894248942489,72.68874278962042],[-114.27054270542705,72.68705421235052],[-114.31374313743137,72.67354559419147],[-114.40374403744038,72.65665982149264],[-114.42534425344253,72.64821693514324],[-114.45774457744577,72.63133116244441],[-114.47214472144721,72.62457685336486],[-114.60534605346054,72.60769108066603],[-114.59814598145981,72.60769108066603],[-114.58374583745837,72.60431392612628],[-114.57294572945729,72.59924819431663],[-114.55134551345513,72.58742815342745],[-114.55854558545585,72.57054238072863],[-114.54774547745477,72.56716522618885],[-114.51174511745117,72.5739195352684],[-114.40734407344073,72.55872233983945],[-114.36054360543605,72.55872233983945],[-114.3389433894339,72.5637880716491],[-114.32094320943209,72.5924938852371],[-114.29934299342993,72.59755961704676],[-114.2561425614256,72.6009367715865],[-114.12654126541265,72.63639689425406],[-113.88533885338853,72.66172555330229],[-113.89973899738997,72.64821693514324],[-113.85653856538565,72.63639689425406],[-113.80253802538026,72.63977404879381],[-113.55773557735577,72.6988742532397],[-113.50733507335073,72.70225140777947],[-113.55773557735577,72.67185701692159],[-113.68013680136801,72.63808547152394],[-113.73413734137341,72.61444538974558],[-113.71253712537126,72.60769108066603],[-113.68373683736837,72.60769108066603],[-113.65853658536585,72.61275681247568],[-113.6369363693637,72.62119969882511],[-113.62973629736297,72.62626543063476],[-113.62613626136262,72.63301973971429],[-113.61893618936189,72.63977404879381],[-113.61173611736118,72.64146262606369],[-113.58653586535866,72.64483978060346],[-113.47853478534785,72.66679128511194],[-113.43893438934388,72.68536563508064],[-113.43893438934388,72.7106942941289],[-113.4281342813428,72.72251433501808],[-113.4209342093421,72.72758006682773],[-113.41373413734136,72.73095722136748],[-113.44253442534425,72.75122014860608],[-113.55773557735577,72.75459730314583],[-113.60453604536045,72.76135161222535],[-113.60453604536045,72.77823738492418],[-113.57213572135721,72.79850031216279],[-113.48213482134821,72.84071474390984],[-113.39213392133921,72.91163498924493],[-113.19413194131941,72.9926866981993],[-113.01413014130141,73.01632677997765],[-112.94212942129421,73.00450673908847],[-112.85932859328594,73.00450673908847],[-112.84132841328413,73.00112958454872],[-112.80532805328053,72.98762096638964],[-112.79092790927909,72.9842438118499],[-112.53532535325353,72.96060373007154],[-112.37332373323733,72.91501214378471],[-112.27972279722798,72.9031921028955],[-112.07812078120782,72.89812637108588],[-112.00972009720097,72.88124059838705],[-111.92331923319233,72.87110913476775],[-111.880118801188,72.8559119393388],[-111.71451714517146,72.83058328029057],[-111.64611646116461,72.81032035305196],[-111.55251552515524,72.80694319851219],[-111.50571505715057,72.79512315762301],[-111.48411484114841,72.78330311673383],[-111.4661146611466,72.77148307584466],[-111.4661146611466,72.76810592130491],[-111.4661146611466,72.75628588041573],[-111.4661146611466,72.75122014860608],[-111.45531455314553,72.74953157133618],[-111.42651426514264,72.7478429940663],[-111.39051390513904,72.74108868498678],[-111.30771307713077,72.737711530447],[-111.22131221312213,72.72420291228795],[-111.22491224912248,72.709005716859],[-111.22851228512285,72.70225140777947],[-111.23211232112321,72.69718567596982],[-111.2141121411214,72.68536563508064],[-111.21051210512105,72.67354559419147],[-111.21771217712177,72.66003697603242],[-111.24651246512465,72.62795400790463],[-111.25371253712537,72.61444538974558],[-111.2609126091261,72.58742815342745],[-111.26811268112681,72.57898526707802],[-111.28971289712896,72.56547664891897],[-111.49491494914949,72.51144217628274],[-111.48051480514805,72.50637644447309],[-111.45891458914589,72.50468786720319],[-111.44451444514445,72.50131071266344],[-111.43731437314374,72.49117924904414],[-111.44811448114481,72.48442493996461],[-111.56331563315634,72.44052193094765],[-111.85491854918548,72.38142172650177],[-111.88731887318873,72.36791310834269],[-111.90531905319052,72.34596160383421],[-111.8909189091891,72.34596160383421],[-111.87291872918729,72.34258444929446],[-111.8441184411844,72.32907583113538],[-111.82251822518225,72.32401009932576],[-111.79371793717937,72.32401009932576],[-111.74691746917469,72.33245298567516],[-111.68931689316894,72.35609306745351],[-111.66051660516605,72.35947022199329],[-111.64611646116461,72.34089587202459],[-111.66051660516605,72.32401009932576],[-111.72171721717217,72.30205859481728],[-111.72171721717217,72.2885499766582],[-111.72171721717217,72.27166420395938],[-111.74331743317433,72.25477843126055],[-111.77211772117721,72.23789265856172],[-111.78651786517865,72.2226954631328],[-111.77211772117721,72.21087542224362],[-111.7541175411754,72.20749826770384],[-111.73611736117361,72.21256399951349],[-111.71091710917109,72.2311383494822],[-111.70731707317073,72.23958123583162],[-111.70731707317073,72.24633554491115],[-111.70371703717036,72.25308985399067],[-111.68211682116821,72.26828704941963],[-111.66411664116642,72.29192713119798],[-111.64971649716497,72.29530428573776],[-111.61731617316173,72.29192713119798],[-111.60291602916028,72.29192713119798],[-111.5921159211592,72.29530428573776],[-111.56331563315634,72.30881290389681],[-111.48051480514805,72.32401009932576],[-111.41931419314193,72.34596160383421],[-111.43731437314374,72.35440449018364],[-111.46251462514626,72.35102733564386],[-111.50571505715057,72.34089587202459],[-111.55611556115561,72.33920729475469],[-111.57771577715776,72.34427302656434],[-111.59571595715957,72.35440449018364],[-111.60651606516065,72.36284737653304],[-111.61011610116101,72.36791310834269],[-111.60291602916028,72.37297884015234],[-111.58851588515886,72.38142172650177],[-111.57411574115741,72.3881760355813],[-111.53091530915309,72.39999607647047],[-111.47691476914768,72.40506180828012],[-111.44091440914409,72.41181611735965],[-111.40851408514085,72.4270133127886],[-111.37971379713797,72.44727624002718],[-111.34731347313473,72.46247343545613],[-111.29691296912969,72.47091632180553],[-111.24291242912429,72.47091632180553],[-111.20691206912069,72.464162012726],[-111.2141121411214,72.45571912637661],[-111.22131221312213,72.45065339456696],[-111.23931239312392,72.44221050821753],[-111.34371343713437,72.42363615824883],[-111.36891368913689,72.40843896281987],[-111.35091350913508,72.40675038555],[-111.3041130411304,72.40843896281987],[-111.28251282512825,72.40168465374035],[-111.35811358113581,72.37129026288247],[-111.3761137611376,72.35440449018364],[-111.35091350913508,72.34765018110411],[-111.33291332913329,72.35271591291377],[-111.31851318513185,72.36453595380294],[-111.29331293312933,72.37466741742222],[-111.27891278912789,72.37466741742222],[-111.23931239312392,72.37129026288247],[-111.22491224912248,72.36791310834269],[-111.22131221312213,72.36115879926317],[-111.20331203312033,72.34427302656434],[-111.20331203312033,72.34089587202459],[-111.14211142111421,72.33920729475469],[-111.11691116911169,72.33245298567516],[-111.0881108811088,72.31894436751611],[-111.06291062910628,72.30037001754738],[-111.04851048510484,72.2902385539281],[-111.02691026910269,72.28517282211845],[-111.03051030510305,72.31387863570646],[-111.0521105211052,72.33414156294504],[-111.07371073710736,72.35440449018364],[-111.0881108811088,72.37466741742222],[-111.08451084510845,72.40843896281987],[-111.0521105211052,72.42194758097895],[-111.01251012510124,72.43039046732835],[-110.98010980109801,72.45065339456696],[-111.00171001710017,72.464162012726],[-110.99450994509945,72.47260489907544],[-110.96930969309693,72.47935920815496],[-110.94050940509405,72.48273636269471],[-110.78930789307893,72.47767063088509],[-110.81450814508145,72.49962213539354],[-110.82890828908289,72.50975359901284],[-110.8361083610836,72.52495079444179],[-110.72810728107281,72.57054238072863],[-110.70290702907029,72.57898526707802],[-110.67770677706777,72.57898526707802],[-110.62370623706236,72.55872233983945],[-110.59130591305913,72.5536566080298],[-110.52650526505265,72.55196803075992],[-110.48690486904869,72.55872233983945],[-110.47970479704797,72.55534518529967],[-110.48330483304832,72.54521372168037],[-110.49050490504905,72.53845941260084],[-110.59130591305913,72.51313075355262],[-110.60210602106021,72.50468786720319],[-110.5949059490595,72.49455640358391],[-110.56970569705697,72.48273636269471],[-110.54450544505445,72.47429347634531],[-110.52650526505265,72.47091632180553],[-110.5121051210512,72.46922774453566],[-110.45450454504545,72.46078485818626],[-110.42930429304293,72.45234197183683],[-110.38970389703897,72.44389908548743],[-110.36450364503645,72.43376762186813],[-110.33570335703357,72.4270133127886],[-110.30690306903068,72.435456199138],[-110.48690486904869,72.48104778542483],[-110.53370533705336,72.50468786720319],[-110.51570515705157,72.51650790809236],[-110.48690486904869,72.52495079444179],[-110.4581045810458,72.52832794898154],[-110.43650436504365,72.52663937171167],[-110.42930429304293,72.52832794898154],[-110.4221042210422,72.53339368079119],[-110.40770407704076,72.54859087622015],[-110.39330393303933,72.55703376256957],[-110.37890378903789,72.55872233983945],[-110.35010350103501,72.55872233983945],[-110.32490324903249,72.55534518529967],[-110.28530285302853,72.53677083533097],[-110.23850238502385,72.52832794898154],[-110.16290162901629,72.47935920815496],[-110.10890108901089,72.46078485818626],[-110.08370083700837,72.45740770364648],[-110.080100801008,72.4540305491067],[-110.05850058500585,72.43883335367778],[-110.05130051300513,72.43883335367778],[-110.01170011700117,72.45740770364648],[-110.00450004500044,72.45740770364648],[-109.97929979299792,72.46247343545613],[-109.86409864098641,72.4455876627573],[-109.83529835298353,72.435456199138],[-109.80649806498064,72.43039046732835],[-109.78129781297812,72.435456199138],[-109.80289802898028,72.45065339456696],[-109.98649986499865,72.48949067177426],[-110.00450004500044,72.49624498085379],[-110.04050040500405,72.51144217628274],[-110.260102601026,72.55872233983945],[-110.23490234902349,72.57054238072863],[-110.19890198901989,72.5722309579985],[-110.09810098100981,72.56041091710932],[-110.00450004500044,72.52326221717192],[-110.00090000900009,72.52157363990202],[-109.88569885698857,72.49117924904414],[-109.84969849698497,72.48949067177426],[-109.81729817298172,72.49286782631401],[-109.78849788497885,72.50468786720319],[-109.79929799297993,72.51144217628274],[-109.8280982809828,72.53339368079119],[-109.83889838898389,72.53845941260084],[-109.85689856898568,72.54014798987075],[-109.87489874898749,72.54521372168037],[-109.91089910899109,72.55872233983945],[-109.93249932499324,72.57560811253828],[-109.94329943299432,72.5924938852371],[-109.95769957699576,72.60769108066603],[-110.00450004500044,72.62795400790463],[-110.06210062100621,72.65159408968299],[-110.10170101701017,72.66341413057216],[-110.13770137701377,72.65834839876251],[-110.17370173701737,72.64821693514324],[-110.22050220502204,72.64652835787334],[-110.26730267302673,72.65497124422276],[-110.29250292502925,72.67523417146134],[-110.19530195301952,72.68029990327099],[-110.170101701017,72.68874278962042],[-110.19530195301952,72.70562856231925],[-110.2061020610206,72.71744860320842],[-110.19890198901989,72.72758006682773],[-110.11970119701196,72.7292686440976],[-110.0441004410044,72.72082575774817],[-110.00450004500044,72.7106942941289],[-109.87489874898749,72.67523417146134],[-109.83889838898389,72.67185701692159],[-109.82089820898209,72.67185701692159],[-109.81729817298172,72.67861132600112],[-109.82449824498245,72.68536563508064],[-109.8460984609846,72.69549709869995],[-109.85689856898568,72.70225140777947],[-109.83889838898389,72.71407144866865],[-109.81729817298172,72.71744860320842],[-109.77409774097741,72.71744860320842],[-109.79929799297993,72.73095722136748],[-109.91089910899109,72.73433437590725],[-109.95049950499505,72.74108868498678],[-109.99369993699936,72.75459730314583],[-110.00450004500044,72.75459730314583],[-110.05130051300513,72.76304018949526],[-110.10530105301052,72.76304018949526],[-110.14850148501485,72.75459730314583],[-110.18810188101881,72.74277726225665],[-110.22770227702277,72.737711530447],[-110.25290252902529,72.7394001077169],[-110.26730267302673,72.74277726225665],[-110.26370263702637,72.74953157133618],[-110.23850238502385,72.7579744576856],[-110.20250202502025,72.76304018949526],[-110.18090180901808,72.76810592130491],[-110.170101701017,72.77823738492418],[-110.17370173701737,72.79174600308326],[-110.19890198901989,72.79850031216279],[-110.2061020610206,72.80863177578209],[-110.23130231302312,72.82382897121101],[-110.48330483304832,72.83902616663997],[-110.53010530105301,72.84915763025927],[-110.56970569705697,72.86773198022797],[-110.60930609306092,72.90150352562563],[-110.63090630906309,72.91501214378471],[-110.68130681306813,72.92852076194376],[-110.71730717307173,72.94540653464259],[-110.74610746107462,72.96566946188116],[-110.75330753307533,72.9842438118499],[-110.73530735307352,73.00112958454872],[-110.70290702907029,73.00957247089812],[-110.38970389703897,73.0028181618186],[-110.07650076500765,72.99606385273907],[-110.00450004500044,72.9842438118499],[-109.90369903699036,72.97073519369081],[-109.88929889298893,72.96398088461129],[-109.8820988209882,72.95553799826189],[-109.8820988209882,72.94709511191246],[-109.88569885698857,72.94202938010281],[-109.8820988209882,72.93696364829316],[-109.85329853298532,72.92176645286423],[-109.82449824498245,72.92345503013411],[-109.75969759697597,72.93696364829316],[-109.68769687696877,72.93020933921363],[-109.62289622896229,72.91670072105458],[-109.64449644496445,72.89981494835575],[-109.72729727297273,72.89643779381598],[-109.75249752497525,72.88124059838705],[-109.37449374493745,72.77148307584466],[-109.38529385293853,72.766417344035],[-109.40329403294032,72.75122014860608],[-109.18369183691837,72.766417344035],[-109.1620916209162,72.76135161222535],[-109.12969129691297,72.7478429940663],[-109.11529115291152,72.74446583952655],[-109.12969129691297,72.74108868498678],[-109.14409144091441,72.737711530447],[-109.15489154891549,72.73433437590725],[-109.16569165691656,72.72420291228795],[-109.05769057690577,72.68874278962042],[-108.94608946089461,72.67354559419147],[-108.94248942489425,72.66510270784207],[-108.95688956889569,72.65834839876251],[-109.03249032490325,72.64821693514324],[-109.02169021690217,72.63470831698416],[-109.02529025290252,72.62457685336486],[-109.03969039690396,72.61444538974558],[-109.0540905409054,72.60769108066603],[-109.0360903609036,72.59587103977685],[-109.02529025290252,72.59418246250698],[-109.03249032490325,72.58911673069733],[-109.04329043290433,72.57729668980815],[-109.04689046890469,72.5739195352684],[-109.02169021690217,72.56885380345875],[-108.93528935289352,72.57898526707802],[-108.86688866888669,72.57054238072863],[-108.84168841688417,72.5739195352684],[-108.85248852488525,72.5823624216178],[-108.86328863288632,72.58742815342745],[-108.88848888488884,72.59418246250698],[-108.86688866888669,72.60600250339616],[-108.67248672486724,72.57729668980815],[-108.6328863288633,72.56547664891897],[-108.61488614886149,72.54859087622015],[-108.61128611286112,72.53001652625144],[-108.59688596885968,72.51650790809236],[-108.58968589685897,72.50299928993331],[-108.59328593285933,72.48442493996461],[-108.60408604086041,72.47767063088509],[-108.61848618486185,72.47260489907544],[-108.62928629286293,72.46585058999591],[-108.63648636486364,72.4540305491067],[-108.63648636486364,72.44389908548743],[-108.64728647286472,72.42363615824883],[-108.65448654486545,72.39324176739095],[-108.65808658086581,72.378044571962],[-108.66168661686616,72.36115879926317],[-108.65808658086581,72.34089587202459],[-108.64368643686437,72.32569867659564],[-108.60768607686077,72.30205859481728],[-108.58968589685897,72.2885499766582],[-108.53568535685356,72.20243253589419],[-108.53208532085321,72.19567822681466],[-108.53568535685356,72.16866099049653],[-108.53568535685356,72.15852952687723],[-108.53928539285393,72.14839806325796],[-108.51768517685177,72.1416437541784],[-108.48528485284852,72.13826659963865],[-108.460084600846,72.1433323314483],[-108.45648456484565,72.16190668141701],[-108.44208442084421,72.16359525868688],[-108.42768427684277,72.16021810414713],[-108.41328413284133,72.15515237233748],[-108.40248402484025,72.14839806325796],[-108.40968409684096,72.1416437541784],[-108.41688416884169,72.13657802236878],[-108.42768427684277,72.13488944509888],[-108.43848438484385,72.13488944509888],[-108.43848438484385,72.12813513601935],[-108.41328413284133,72.12644655874948],[-108.40608406084061,72.11631509513018],[-108.40248402484025,72.09942932243135],[-108.39528395283952,72.0859207042723],[-108.39888398883988,72.06734635430357],[-108.40248402484025,72.05890346795417],[-108.39528395283952,72.04539484979512],[-108.39888398883988,72.02682049982639],[-108.41688416884169,71.98967179988898],[-108.35208352083521,71.99304895442873],[-108.31968319683196,71.98967179988898],[-108.29448294482944,71.9761631817299],[-108.32688326883269,71.94239163633225],[-108.34128341283413,71.93563732725272],[-108.31608316083161,71.93563732725272],[-108.25488254882549,71.96434314084073],[-108.22248222482224,71.96940887265038],[-108.19008190081901,71.96265456357085],[-108.19008190081901,71.9491459454118],[-108.22248222482224,71.91199724547437],[-108.24768247682476,71.89848862731532],[-108.27648276482765,71.89004574096589],[-108.29448294482944,71.88160285461649],[-108.28008280082801,71.86133992737788],[-108.26928269282692,71.85627419556823],[-108.25488254882549,71.85120846375858],[-108.24768247682476,71.84614273194896],[-108.24768247682476,71.83263411378988],[-108.25128251282513,71.82250265017058],[-108.28728287282873,71.79886256839222],[-108.26568265682657,71.7836653729633],[-108.24048240482405,71.773533909344],[-108.2080820808208,71.76677960026447],[-108.18288182881828,71.76509102299457],[-108.17568175681757,71.76171386845482],[-108.1720817208172,71.75327098210539],[-108.1720817208172,71.74482809575599],[-108.17568175681757,71.73807378667647],[-108.19008190081901,71.73300805486681],[-108.24768247682476,71.72287659124751],[-108.19728197281972,71.70599081854868],[-108.09648096480964,71.72287659124751],[-108.0460804608046,71.71612228216799],[-108.01728017280172,71.70261366400891],[-107.9920799207992,71.6840393140402],[-107.97767977679777,71.66039923226185],[-107.98487984879849,71.6350705732136],[-107.91647916479164,71.63169341867385],[-107.85527855278552,71.60974191416537],[-107.83367833678336,71.6080533368955],[-107.81567815678156,71.61311906870515],[-107.80487804878048,71.61311906870515],[-107.79047790477904,71.6164962232449],[-107.76527765277652,71.61480764597502],[-107.740077400774,71.61818480051477],[-107.72567725677257,71.6350705732136],[-107.78687786877869,71.6637763868016],[-107.80127801278013,71.66884211861125],[-107.81927819278192,71.67053069588115],[-107.83367833678336,71.67897358223055],[-107.83727837278373,71.69248220038963],[-107.83367833678336,71.70936797308843],[-107.80127801278013,71.73469663213669],[-107.75447754477544,71.72794232305716],[-107.70767707677076,71.71105655035834],[-107.6680766807668,71.70767939581856],[-107.6320763207632,71.72794232305716],[-107.59967599675997,71.75327098210539],[-107.56367563675637,71.77522248661387],[-107.52047520475205,71.7836653729633],[-107.25047250472504,71.80561687747175],[-107.27927279272792,71.81912549563083],[-107.31167311673117,71.82756838198023],[-107.37647376473764,71.83263411378988],[-107.39807398073981,71.83769984559953],[-107.44127441274412,71.86133992737788],[-107.47367473674737,71.86978281372731],[-107.46647466474664,71.87653712280684],[-107.44127441274412,71.88666858642614],[-107.43047430474304,71.88666858642614],[-107.3440734407344,71.87147139099719],[-107.30807308073081,71.87484854553696],[-107.27207272072721,71.88498000915624],[-107.25047250472504,71.90186578185507],[-107.27207272072721,71.90862009093462],[-107.33327333273333,71.91537440001414],[-107.39447394473945,71.9288830181732],[-107.4160741607416,71.9288830181732],[-107.41247412474125,71.94408021360215],[-107.41247412474125,71.96096598630098],[-107.42327423274233,71.9778517589998],[-107.44127441274412,71.98291749080946],[-107.48087480874808,71.98798322261908],[-107.56367563675637,72.00655757258781],[-107.60327603276032,72.01162330439746],[-107.61767617676176,72.01837761347699],[-107.63567635676357,72.03695196344569],[-107.65007650076501,72.05890346795417],[-107.65727657276572,72.07241208611322],[-107.64647646476465,72.08254354973252],[-107.62127621276213,72.0859207042723],[-107.6140761407614,72.09774074516147],[-107.62127621276213,72.10280647697112],[-107.65007650076501,72.1146265178603],[-107.66447664476644,72.12138082693983],[-107.65367653676536,72.12138082693983],[-107.63567635676357,72.12813513601935],[-107.77967779677796,72.1416437541784],[-107.77247772477725,72.15515237233748],[-107.77607776077761,72.16359525868688],[-107.78327783277832,72.17203814503631],[-107.78687786877869,72.17879245411584],[-107.78687786877869,72.22776119494245],[-107.7940779407794,72.2514012767208],[-107.81567815678156,72.26490989487985],[-107.84087840878408,72.27841851303893],[-107.8660786607866,72.29530428573776],[-107.86247862478625,72.30543574935703],[-107.83727837278373,72.30712432662693],[-107.80847808478084,72.30374717208716],[-107.77247772477725,72.2885499766582],[-107.75087750877509,72.28348424484855],[-107.72567725677257,72.2885499766582],[-107.71847718477184,72.30205859481728],[-107.73287732877328,72.32738725386551],[-107.77247772477725,72.33920729475469],[-107.81567815678156,72.34933875837399],[-107.8480784807848,72.36115879926317],[-107.81567815678156,72.36791310834269],[-107.80487804878048,72.37466741742222],[-107.80487804878048,72.3881760355813],[-107.81927819278192,72.3966189219307],[-107.85167851678517,72.40337323101025],[-107.8660786607866,72.41181611735965],[-107.87327873278733,72.435456199138],[-107.80847808478084,72.44221050821753],[-107.78687786877869,72.464162012726],[-107.84087840878408,72.46585058999591],[-107.89487894878948,72.47429347634531],[-107.94167941679416,72.48949067177426],[-107.98487984879849,72.51819648536227],[-107.87687876878769,72.52495079444179],[-107.8840788407884,72.53677083533097],[-107.89127891278912,72.54690229895027],[-107.88767887678877,72.55872233983945],[-107.87687876878769,72.5739195352684],[-107.90207902079021,72.59418246250698],[-107.93447934479344,72.60769108066603],[-108.01368013680137,72.62119969882511],[-108.00288002880029,72.63133116244441],[-107.98847988479885,72.63470831698416],[-107.97407974079741,72.63639689425406],[-107.95967959679597,72.64146262606369],[-108.01368013680137,72.66341413057216],[-108.02448024480245,72.68029990327099],[-108.00648006480064,72.70225140777947],[-108.01728017280172,72.71238287139877],[-108.03888038880389,72.72420291228795],[-108.04968049680497,72.73433437590725],[-108.07488074880749,72.74953157133618],[-108.0820808208082,72.75966303495548],[-108.07128071280712,72.76472876676513],[-108.05688056880568,72.77654880765431],[-108.06768067680676,72.80018888943266],[-108.10008100081001,72.84071474390984],[-108.12888128881289,72.86097767114845],[-108.13968139681397,72.87110913476775],[-108.14328143281432,72.88799490746658],[-108.12528125281253,72.89643779381598],[-108.10728107281072,72.90150352562563],[-108.10368103681037,72.91163498924493],[-108.1180811808118,72.92176645286423],[-108.15408154081541,72.93696364829316],[-108.16488164881649,72.94371795737271],[-108.16848168481684,72.95891515280164],[-108.16128161281613,72.97073519369081],[-108.15048150481505,72.97917808004024],[-108.1360813608136,72.9842438118499],[-108.16848168481684,73.00619531635837],[-108.22608226082261,73.03490112994638],[-108.23328233282332,73.04334401629578],[-108.22608226082261,73.04672117083555],[-108.19008190081901,73.04503259356565],[-108.1720817208172,73.04672117083555],[-108.15768157681576,73.0517869026452],[-108.26568265682657,73.10244422074166],[-108.2980829808298,73.13452718886944],[-108.25848258482584,73.17674162061653],[-108.16488164881649,73.20544743420453],[-108.06768067680676,73.2071360114744],[-107.86967869678696,73.19025023877558],[-107.90567905679056,73.21220174328406],[-108.05328053280533,73.23753040233228],[-108.07128071280712,73.24428471141181],[-108.10368103681037,73.25948190684076],[-108.1180811808118,73.26961337046006],[-108.12168121681216,73.27467910226972],[-108.12168121681216,73.28818772042877],[-108.12168121681216,73.29325345223842],[-108.12888128881289,73.2966306067782],[-108.14688146881468,73.30169633858785],[-108.15768157681576,73.30676207039747],[-108.12528125281253,73.3152049567469],[-108.01368013680137,73.31351637947702],[-108.03168031680316,73.32702499763607],[-108.06768067680676,73.34222219306503],[-108.08928089280893,73.3540422339542],[-108.01368013680137,73.3540422339542],[-107.7940779407794,73.32702499763607],[-107.66087660876609,73.32871357490595],[-107.52047520475205,73.29494202950829],[-107.45567455674556,73.28818772042877],[-107.33687336873369,73.24935044322146],[-107.29367293672937,73.24090755687206],[-107.26847268472685,73.22739893871298],[-107.22887228872288,73.21895605236358],[-107.17127171271713,73.19531597058523],[-107.0740707407074,73.1784301978864],[-107.0380703807038,73.1784301978864],[-107.01287012870128,73.1970045478551],[-107.03447034470345,73.21051316601415],[-107.1280712807128,73.24428471141181],[-107.09567095670957,73.25948190684076],[-107.08487084870849,73.27130194772994],[-107.08847088470884,73.28649914315889],[-107.06327063270632,73.28818772042877],[-107.02727027270272,73.30169633858785],[-107.00567005670057,73.30676207039747],[-106.99486994869949,73.3050734931276],[-106.95886958869589,73.29831918404807],[-106.9480694806948,73.30000776131794],[-106.91566915669156,73.31351637947702],[-106.87246872468724,73.3152049567469],[-106.8220682206822,73.31013922493725],[-106.77526775267752,73.2966306067782],[-106.74286742867429,73.27974483407937],[-106.70326703267033,73.24428471141181],[-106.67446674466744,73.22908751598288],[-106.56286562865628,73.21389032055393],[-106.54126541265413,73.22064462963345],[-106.53766537665376,73.22739893871298],[-106.53766537665376,73.23246467052263],[-106.53766537665376,73.23753040233228],[-106.52686526865268,73.23753040233228],[-106.5160651606516,73.23753040233228],[-106.50526505265053,73.23415324779253],[-106.49446494464945,73.22908751598288],[-106.48366483664836,73.22402178417323],[-106.47646476464764,73.21389032055393],[-106.47646476464764,73.1970045478551],[-106.46926469264693,73.19025023877558],[-106.45846458464584,73.18518450696592],[-106.42246422464224,73.17505304334662],[-106.40446404464045,73.15479011610805],[-106.38286382863828,73.14803580702849],[-106.33966339663397,73.14128149794897],[-106.2820628206282,73.11764141617061],[-106.26766267662677,73.11426426163086],[-106.26046260462604,73.11088710709109],[-106.2460624606246,73.09231275712239],[-106.23526235262352,73.08724702531273],[-106.18126181261812,73.08218129350308],[-106.0480604806048,73.05347547991508],[-106.00846008460084,73.04840974810543],[-105.96165961659617,73.0517869026452],[-105.95085950859509,73.05685263445483],[-105.94005940059401,73.06191836626448],[-105.92925929259292,73.06529552080426],[-105.90045900459005,73.05854121172473],[-105.850058500585,73.0602297889946],[-105.82845828458284,73.0517869026452],[-105.82845828458284,73.0315239754066],[-105.8320583205832,73.0129496254379],[-105.81765817658176,73.00450673908847],[-105.79965799657997,72.99944100727882],[-105.75285752857528,72.97580092550047],[-105.60525605256052,72.95047226645224],[-105.64125641256412,72.93696364829316],[-105.62325623256233,72.92683218467388],[-105.580055800558,72.91501214378471],[-105.56565565655656,72.90825783470515],[-105.55845558455584,72.90150352562563],[-105.54765547655477,72.89306063927623],[-105.54045540455404,72.88630633019667],[-105.5260552605526,72.88124059838705],[-105.53325533255332,72.8744862893075],[-105.54045540455404,72.86942055749785],[-105.54765547655477,72.86773198022797],[-105.55845558455584,72.86773198022797],[-105.55845558455584,72.86097767114845],[-105.52965529655296,72.86097767114845],[-105.49365493654936,72.8559119393388],[-105.46485464854648,72.8457804757195],[-105.43605436054361,72.83396043483032],[-105.38925389253892,72.79850031216279],[-105.36765367653676,72.79174600308326],[-105.37485374853749,72.78499169400374],[-105.3820538205382,72.77992596219408],[-105.40005400054001,72.77148307584466],[-105.35325353253532,72.75966303495548],[-105.33165331653316,72.75122014860608],[-105.31725317253172,72.737711530447],[-105.34965349653497,72.7292686440976],[-105.36765367653676,72.72758006682773],[-105.3820538205382,72.73095722136748],[-105.38925389253892,72.73433437590725],[-105.41085410854109,72.74953157133618],[-105.43605436054361,72.75966303495548],[-105.45765457654576,72.77654880765431],[-105.48285482854828,72.78668027127361],[-105.51165511655117,72.77823738492418],[-105.42885428854288,72.73095722136748],[-105.43965439654396,72.72420291228795],[-105.44685446854469,72.7191371804783],[-105.45045450454505,72.71238287139877],[-105.45765457654576,72.70225140777947],[-105.35685356853568,72.67354559419147],[-105.31365313653136,72.66679128511194],[-105.29925299252993,72.66172555330229],[-105.28845288452884,72.65497124422276],[-105.28485284852849,72.64483978060346],[-105.2920529205292,72.63808547152394],[-105.3460534605346,72.62119969882511],[-105.3280532805328,72.60937965793593],[-105.31725317253172,72.59755961704676],[-105.31005310053101,72.58067384434793],[-105.31725317253172,72.55872233983945],[-105.24885248852489,72.55196803075992],[-105.23085230852308,72.54521372168037],[-105.23445234452345,72.54183656714062],[-105.24525245252453,72.53170510352132],[-105.2380523805238,72.52832794898154],[-105.22725227252272,72.52157363990202],[-105.22365223652237,72.51819648536227],[-105.24885248852489,72.50131071266344],[-105.2380523805238,72.49117924904414],[-105.19485194851949,72.48442493996461],[-105.20565205652056,72.46078485818626],[-105.20925209252093,72.4540305491067],[-105.22365223652237,72.45065339456696],[-105.24525245252453,72.4540305491067],[-105.26325263252632,72.46078485818626],[-105.28485284852849,72.46247343545613],[-105.30645306453064,72.45740770364648],[-105.27765277652776,72.44052193094765],[-105.23445234452345,72.39999607647047],[-105.20925209252093,72.38142172650177],[-105.15525155251552,72.35609306745351],[-105.13725137251372,72.34427302656434],[-105.13365133651337,72.33583014021494],[-105.130051300513,72.32063294478598],[-105.12645126451264,72.31219005843656],[-105.12285122851229,72.30543574935703],[-105.09045090450904,72.27841851303893],[-105.0580505805058,72.2615327403401],[-105.04365043650436,72.2514012767208],[-105.02565025650256,72.22607261767254],[-105.01485014850148,72.21425257678337],[-104.97884978849788,72.20580969043397],[-104.9680496804968,72.19398964954479],[-104.96084960849608,72.17879245411584],[-104.96084960849608,72.16190668141701],[-104.97884978849788,72.14839806325796],[-105.02565025650256,72.133200867829],[-105.040050400504,72.1146265178603],[-105.02205022050221,72.10787220878078],[-105.01125011250112,72.09605216789157],[-105.01125011250112,72.0842321270024],[-105.02565025650256,72.07241208611322],[-105.00765007650077,72.06903493157347],[-104.96444964449644,72.06565777703369],[-104.950049500495,72.05890346795417],[-104.93924939249392,72.05046058160474],[-104.92844928449284,72.02850907709629],[-104.92484924849248,72.02513192255651],[-104.90684906849069,72.01837761347699],[-104.88524885248852,72.00149184077816],[-104.8420484204842,71.94576879087202],[-104.83124831248313,71.93226017271297],[-104.82764827648276,71.91537440001414],[-104.82764827648276,71.89173431823579],[-104.81324813248132,71.86133992737788],[-104.7880478804788,71.84445415467906],[-104.7520475204752,71.83601126832966],[-104.68724687246872,71.82925695925013],[-104.66924669246693,71.82419122744048],[-104.65484654846549,71.8123711865513],[-104.65124651246512,71.80392830020187],[-104.64764647646476,71.7921082593127],[-104.64044640446404,71.7819767956934],[-104.62964629646297,71.77859964115365],[-104.6080460804608,71.773533909344],[-104.58284582845828,71.76002529118492],[-104.54324543245433,71.72963090032704],[-104.53964539645396,71.72118801397764],[-104.53244532445324,71.70430224127881],[-104.52524525245252,71.69585935492938],[-104.51084510845108,71.68572789131008],[-104.4820448204482,71.6739078504209],[-104.38124381243813,71.59961045054607],[-104.36684366843669,71.57765894603759],[-104.37044370443704,71.55739601879901],[-104.40644406444063,71.51011585524228],[-104.3920439204392,71.49323008254345],[-104.37044370443704,71.48141004165427],[-104.320043200432,71.4695900007651],[-104.34164341643417,71.43750703263734],[-104.34524345243452,71.42230983720839],[-104.3380433804338,71.40373548723969],[-104.29844298442984,71.38009540546133],[-104.2840428404284,71.3632096327625],[-104.28044280442805,71.34970101460343],[-104.30564305643057,71.34632386006368],[-104.40644406444063,71.36658678730225],[-104.43524435244352,71.36658678730225],[-104.4640446404464,71.35983247822273],[-104.48564485644856,71.34801243733355],[-104.49644496444964,71.32606093282507],[-104.4820448204482,71.29904369650694],[-104.45684456844567,71.27540361472859],[-104.43884438844388,71.24838637841046],[-104.46044460444604,71.21292625574293],[-104.47844478444784,71.19772906031397],[-104.54324543245433,71.16058036037657],[-104.60084600846008,71.1487603194874],[-104.6260462604626,71.13862885586809],[-104.64764647646476,71.12005450589939],[-104.63684636846368,71.11330019681986],[-104.62244622446224,71.10316873320056],[-104.60444604446045,71.08290580596196],[-104.590045900459,71.07277434234268],[-104.30564305643057,70.97314828341959],[-104.23364233642336,70.96470539707019],[-104.20124201242012,70.95457393345089],[-104.14724147241472,70.92755669713276],[-104.10404104041041,70.89885088354475],[-104.02484024840248,70.78402762919274],[-103.99963999639996,70.76207612468426],[-103.97083970839708,70.75025608379508],[-103.93843938439385,70.7485675065252],[-103.87723877238773,70.75025608379508],[-103.85923859238592,70.7485675065252],[-103.84483844838448,70.74350177471555],[-103.77643776437765,70.71310738385765],[-103.75123751237513,70.70635307477812],[-103.71523715237151,70.69115587934917],[-103.69363693636936,70.67764726119012],[-103.66123661236612,70.66751579757081],[-103.64683646836468,70.66076148849129],[-103.60003600036,70.62023563401411],[-103.57123571235712,70.60503843858515],[-103.53883538835387,70.5999727067755],[-103.30843308433084,70.59828412950563],[-103.27243272432725,70.5915298204261],[-103.24723247232473,70.57464404772728],[-103.22923229232292,70.56113542956822],[-103.18243182431824,70.5425610795995],[-103.13923139231392,70.51047811147174],[-102.96642966429664,70.49359233877291],[-102.92682926829268,70.49865807058256],[-102.91962919629196,70.51723242055127],[-102.94482944829448,70.53242961598019],[-103.03123031230312,70.53749534778984],[-103.060030600306,70.54762681140915],[-103.08163081630816,70.55944685229832],[-103.10683106831068,70.56620116137785],[-103.12483124831247,70.57633262499715],[-103.1320313203132,70.59659555223575],[-103.13563135631357,70.61179274766468],[-103.14283142831428,70.63205567490328],[-103.150031500315,70.64894144760211],[-103.16083160831609,70.66076148849129],[-103.1320313203132,70.68271299299977],[-103.08523085230853,70.67764726119012],[-102.9880298802988,70.65063002487199],[-102.95922959229593,70.63543282944306],[-102.94482944829448,70.62023563401411],[-102.92322923229231,70.61348132493458],[-102.88722887228872,70.60672701585506],[-102.85842858428585,70.59659555223575],[-102.84042840428404,70.5813983568068],[-102.84042840428404,70.55944685229832],[-102.85482854828548,70.5341181932501],[-102.85122851228512,70.51554384328139],[-102.72162721627215,70.49359233877291],[-102.70002700027,70.48683802969336],[-102.65682656826569,70.48346087515361],[-102.62082620826207,70.46488652518491],[-102.55962559625596,70.45644363883548],[-102.48762487624876,70.434492134327],[-102.40842408424083,70.4260492479776],[-102.250022500225,70.37370335261124],[-102.19242192421925,70.33317749813403],[-102.18522185221852,70.33148892086416],[-102.17082170821708,70.33148892086416],[-102.15282152821528,70.33655465267381],[-102.13842138421384,70.34330896175334],[-102.12762127621276,70.34499753902324],[-102.10962109621096,70.33486607540394],[-102.09522095220952,70.32473461178463],[-102.08082080820807,70.31966887997498],[-102.04482044820448,70.31291457089546],[-101.95121951219512,70.2690115618785],[-101.91881918819188,70.26394583006885],[-101.8540185401854,70.26225725279897],[-101.82161821618216,70.27238871641828],[-101.81081810818108,70.30109453000628],[-101.78921789217893,70.30616026181593],[-101.6920169201692,70.30953741635568],[-101.66321663216632,70.30109453000628],[-101.64881648816488,70.29265164365685],[-101.63081630816308,70.28420875730745],[-101.60921609216092,70.2791430254978],[-101.59481594815948,70.27745444822793],[-101.5840158401584,70.27238871641828],[-101.59481594815948,70.2605686755291],[-101.62721627216271,70.24368290283027],[-101.64521645216452,70.22510855286154],[-101.64881648816488,70.20484562562297],[-101.6380163801638,70.18458269838436],[-101.62361623616236,70.16431977114578],[-101.5840158401584,70.132236803018],[-101.55521555215552,70.11703960758905],[-101.530015300153,70.1136624530493],[-101.51921519215192,70.11535103031918],[-101.50841508415084,70.1237939166686],[-101.50121501215011,70.12717107120835],[-101.49041490414903,70.12885964847825],[-101.4220142201422,70.12717107120835],[-101.40041400414003,70.13392538028788],[-101.39321393213932,70.1508111529867],[-101.37521375213751,70.17613981203496],[-101.3320133201332,70.17107408022531],[-101.25641256412564,70.14067968936743],[-101.23841238412383,70.13730253482765],[-101.22761227612276,70.13899111209753],[-101.20961209612096,70.14743399844696],[-101.15921159211592,70.15418830752648],[-101.14481144811448,70.16094261660601],[-101.12681126811268,70.17107408022531],[-101.11961119611196,70.18458269838436],[-101.12681126811268,70.19471416200366],[-101.0980109801098,70.19977989381331],[-101.0620106201062,70.19640273927354],[-101.02241022410225,70.18627127565426],[-100.99720997209972,70.17445123476509],[-100.97920979209792,70.16094261660601],[-100.97560975609755,70.14743399844696],[-100.97920979209792,70.132236803018],[-100.99360993609936,70.09846525762035],[-100.99720997209972,70.08833379400104],[-100.990009900099,70.07820233038177],[-100.94680946809468,70.04274220771421],[-100.92520925209251,70.01741354866598],[-100.93240932409324,70.01572497139611],[-100.94680946809468,70.01065923958646],[-100.93240932409324,69.99377346688763],[-100.92880928809288,69.9853305805382],[-100.92520925209251,69.9751991169189],[-100.93240932409324,69.96169049875985],[-100.95760957609576,69.94987045787067],[-100.96120961209611,69.9380504169815],[-100.95760957609576,69.92454179882245],[-100.9540095400954,69.91778748974289],[-100.94320943209432,69.91441033520314],[-100.92520925209251,69.91441033520314],[-100.91080910809107,69.91103318066337],[-100.90000900009,69.90427887158384],[-100.89280892808928,69.89583598523444],[-100.88560885608855,69.88739309888501],[-100.88920889208892,69.87050732618619],[-100.87120871208712,69.80802996720053]]],[[[51.41031410314105,71.80561687747175],[51.40311403114032,71.86978281372731],[51.43911439114393,71.94239163633225],[51.500315003150035,72.0048689953179],[51.56151561515617,72.04539484979512],[51.55431554315544,72.05214915887464],[51.608316083160844,72.09098643608195],[51.74871748717487,72.1230694042097],[51.84231842318425,72.15852952687723],[51.86751867518677,72.15852952687723],[51.95751957519576,72.1146265178603],[51.97191971919719,72.10956078605065],[51.98991989919901,72.10787220878078],[52.05472054720548,72.10787220878078],[52.04752047520475,72.0842321270024],[52.06552065520657,72.07410066338312],[52.09072090720909,72.075789240653],[52.11592115921161,72.10787220878078],[52.15192151921519,72.12138082693983],[52.187921879218806,72.12982371328923],[52.20952209522096,72.12813513601935],[52.19872198721987,72.11124936332052],[52.19152191521917,72.10111789970122],[52.187921879218806,72.09267501335182],[52.19872198721987,72.08254354973252],[52.21672216722169,72.0859207042723],[52.238322383223846,72.09098643608195],[52.259922599226,72.08929785881205],[52.295922959229614,72.07410066338312],[52.3319233192332,72.07072350884334],[52.36792367923681,72.075789240653],[52.41112411124112,72.0859207042723],[52.389523895238966,72.09267501335182],[52.38232382323824,72.104495054241],[52.389523895238966,72.11800367240005],[52.41112411124112,72.12813513601935],[52.396723967239694,72.13488944509888],[52.3859238592386,72.1433323314483],[52.371523715237174,72.1517752177977],[52.36792367923681,72.16190668141701],[52.38232382323824,72.17203814503631],[52.414724147241486,72.16866099049653],[52.465124651246526,72.15515237233748],[52.48312483124832,72.15684094960736],[52.490324903249046,72.16359525868688],[52.48312483124832,72.17372672230618],[52.40032400324003,72.2226954631328],[52.42552425524255,72.2311383494822],[52.44352443524437,72.22776119494245],[52.48312483124832,72.20918684497371],[52.479524795247954,72.21425257678337],[52.465124651246526,72.2311383494822],[52.472324723247254,72.2328269267521],[52.48312483124832,72.2412698131015],[52.490324903249046,72.24464696764127],[52.479524795247954,72.25477843126055],[52.465124651246526,72.2615327403401],[52.447124471244734,72.26322131760998],[52.429124291242914,72.26490989487985],[52.414724147241486,72.2699756266895],[52.41112411124112,72.2801070903088],[52.414724147241486,72.2885499766582],[52.429124291242914,72.2885499766582],[52.465124651246526,72.27504135849915],[52.547925479254815,72.26490989487985],[52.58752587525876,72.26490989487985],[52.5839258392584,72.26659847214972],[52.573125731257335,72.27504135849915],[52.56592565925661,72.27841851303893],[52.59472594725949,72.2902385539281],[52.67032670326705,72.30712432662693],[52.68472684726848,72.32232152205586],[52.67032670326705,72.34596160383421],[52.598325983259855,72.35609306745351],[52.580325803258035,72.37466741742222],[52.648726487264895,72.35440449018364],[52.72432724327243,72.34596160383421],[52.86832868328685,72.34596160383421],[52.84672846728469,72.35440449018364],[52.77832778327783,72.35440449018364],[52.71352713527136,72.36622453107282],[52.68832688326884,72.36791310834269],[52.70272702727027,72.38648745831142],[52.69192691926921,72.39999607647047],[52.673926739267415,72.41350469462952],[52.66312663126632,72.42870189005848],[52.68472684726848,72.44727624002718],[52.78552785527856,72.4455876627573],[52.82152821528217,72.45065339456696],[52.76032760327604,72.47429347634531],[52.72792727927279,72.47935920815496],[52.681126811268115,72.47091632180553],[52.681126811268115,72.47935920815496],[52.68832688326884,72.48949067177426],[52.699126991269935,72.49793355812366],[52.71352713527136,72.50637644447309],[52.731527315273155,72.51144217628274],[52.74592745927461,72.51144217628274],[52.756727567275675,72.50468786720319],[52.832328323283235,72.51144217628274],[52.86832868328685,72.51819648536227],[52.86832868328685,72.53845941260084],[52.882728827288275,72.54859087622015],[52.92952929529295,72.55872233983945],[52.92592925929259,72.5620994943792],[52.907929079290795,72.5739195352684],[52.95472954729547,72.57729668980815],[52.99792997929981,72.58742815342745],[53.07713077130771,72.59418246250698],[53.10233102331023,72.6009367715865],[52.915129151291524,72.59755961704676],[52.7639276392764,72.56041091710932],[52.72432724327243,72.55872233983945],[52.73512735127352,72.57729668980815],[52.75312753127531,72.5924938852371],[52.77112771127713,72.6026253488564],[52.807128071280715,72.60937965793593],[52.81072810728108,72.61444538974558],[52.81072810728108,72.61951112155523],[52.79992799927999,72.62626543063476],[52.78552785527856,72.62626543063476],[52.73872738727388,72.62119969882511],[52.75312753127531,72.63808547152394],[52.77832778327783,72.64821693514324],[52.97992979929799,72.67523417146134],[53.01233012330124,72.67354559419147],[53.109531095310956,72.64990551241311],[53.217532175321764,72.64821693514324],[53.19593195931961,72.65665982149264],[53.0879308793088,72.66510270784207],[53.00513005130051,72.68367705781077],[52.79272792727929,72.6819884805409],[52.74592745927461,72.67185701692159],[52.57672576725767,72.67016843965169],[52.547925479254815,72.67523417146134],[52.529925299252994,72.68536563508064],[52.50112501125011,72.70393998504935],[52.479524795247954,72.7106942941289],[52.42552425524255,72.71238287139877],[52.396723967239694,72.71744860320842],[52.37512375123751,72.73095722136748],[52.39312393123933,72.75122014860608],[52.41832418324185,72.75459730314583],[52.447124471244734,72.75290872587595],[52.46872468724689,72.76135161222535],[52.472324723247254,72.76979449857478],[52.479524795247954,72.79005742581339],[52.48312483124832,72.79850031216279],[52.50112501125011,72.80863177578209],[52.555125551255514,72.82382897121101],[52.59472594725949,72.85253478479905],[52.61632616326165,72.86266624841832],[53.02673026730267,72.92514360740398],[53.30753307533075,72.87786344384727],[53.34713347133473,72.87786344384727],[53.38313383133831,72.88799490746658],[53.33633336333364,72.8947492165461],[53.293132931329325,72.90825783470515],[53.318333183331845,72.91501214378471],[53.39033390333904,72.90825783470515],[53.38313383133831,72.91670072105458],[53.38313383133831,72.92007787559433],[53.393933939339405,72.93020933921363],[53.36153361533616,72.94034080283294],[53.23193231932319,72.93696364829316],[53.17073170731709,72.94878368918233],[53.141931419314204,72.96229230734141],[53.13833138331384,72.98086665731012],[53.141931419314204,72.98930954365954],[53.13833138331384,72.99606385273907],[53.13833138331384,73.0028181618186],[53.141931419314204,73.011261048168],[53.15273152731527,73.01463820270777],[53.192331923319244,73.01801535724755],[53.38313383133831,73.011261048168],[53.36153361533616,73.01801535724755],[53.318333183331845,73.02645824359695],[53.30033300333005,73.03321255267647],[53.28953289532896,73.0416554390259],[53.27873278732787,73.05347547991508],[53.267932679326805,73.06191836626448],[53.25713257132571,73.06529552080426],[53.185131851318516,73.0703612526139],[53.15273152731527,73.08049271623321],[53.12033120331205,73.10075564347179],[53.15273152731527,73.10582137528144],[53.159931599315996,73.11257568436096],[53.16353163531636,73.12439572525014],[53.159931599315996,73.14128149794897],[53.15633156331563,73.14634722975862],[53.15633156331563,73.15141296156827],[53.17073170731709,73.16154442518757],[53.18873188731888,73.17336446607675],[53.32193321933221,73.22064462963345],[53.368733687336885,73.22739893871298],[53.4119341193412,73.24090755687206],[53.43353433534335,73.24428471141181],[53.53433534335343,73.22908751598288],[53.55953559535595,73.23415324779253],[53.65673656736567,73.27467910226972],[53.753937539375414,73.29831918404807],[53.861938619386194,73.30169633858785],[54.07794077940781,73.27299052499981],[54.189541895418955,73.27299052499981],[54.32634326343265,73.30845064766737],[54.398343983439844,73.3152049567469],[54.41274412744127,73.32195926582642],[54.44514445144452,73.34053361579512],[54.53154531545317,73.37599373846268],[54.58554585545858,73.38612520208196],[54.69354693546936,73.39119093389161],[54.76914769147692,73.41145386113021],[54.81594815948159,73.41314243840009],[54.869948699487,73.42496247928926],[54.934749347493494,73.42496247928926],[55.12555125551256,73.39456808843138],[55.30555305553057,73.33884503852525],[55.489154891548935,73.32027068855655],[55.75915759157593,73.32871357490595],[55.80955809558097,73.31351637947702],[55.80955809558097,73.31013922493725],[55.805958059580604,73.2966306067782],[55.80955809558097,73.29325345223842],[55.816758167581696,73.28987629769864],[56.12636126361264,73.25948190684076],[56.435964359643606,73.23077609325276],[56.4539645396454,73.22402178417323],[56.46476464764649,73.2172674750937],[56.47916479164792,73.20375885693463],[56.486364863648646,73.1970045478551],[56.55836558365584,73.16661015699722],[56.579965799658,73.15141296156827],[56.58356583565836,73.12946145705979],[56.54756547565478,73.12101857071039],[56.17676176761768,73.09400133439226],[55.80955809558097,73.06529552080426],[55.84555845558455,73.05685263445483],[56.11556115561157,73.06191836626448],[56.385563855638566,73.06867267534403],[56.46476464764649,73.0517869026452],[56.42876428764288,73.02645824359695],[56.37836378363784,73.00619531635837],[56.3207632076321,72.99606385273907],[56.22716227162272,73.00957247089812],[55.924759247592476,72.98930954365954],[55.8779587795878,72.97917808004024],[55.64395643956439,72.97242377096072],[55.615156151561536,72.96398088461129],[55.63675636756369,72.96229230734141],[55.68355683556837,72.95216084372211],[55.705157051570524,72.95047226645224],[55.816758167581696,72.95722657553176],[55.97155971559715,72.94034080283294],[56.11556115561157,72.96904661642094],[56.21276212762129,72.97748950277034],[56.25236252362524,72.97242377096072],[56.2559625596256,72.95891515280164],[56.21996219962202,72.90825783470515],[56.23796237962381,72.89812637108588],[56.23796237962381,72.88292917565693],[56.21996219962202,72.85253478479905],[56.21996219962202,72.8474690529894],[56.21996219962202,72.82889470302067],[56.21996219962202,72.82720612575079],[56.209162091620925,72.82214039394114],[56.17676176761768,72.81707466213149],[56.17316173161731,72.80863177578209],[56.13716137161373,72.78161453946396],[56.06156061560617,72.77823738492418],[55.867158671586736,72.80187746670256],[55.73755737557377,72.78499169400374],[55.672756727567275,72.78499169400374],[55.50355503555036,72.80863177578209],[55.48195481954821,72.80525462124231],[55.43155431554317,72.78499169400374],[55.60435604356044,72.78499169400374],[55.715957159571616,72.75290872587595],[55.80955809558097,72.7579744576856],[55.85995859958601,72.73602295317713],[55.94635946359463,72.66847986238182],[55.76275762757629,72.67523417146134],[55.647556475564755,72.70393998504935],[55.615156151561536,72.69718567596982],[55.71955719557195,72.65159408968299],[55.723157231572316,72.63808547152394],[55.690756907569096,72.62795400790463],[55.622356223562235,72.62119969882511],[55.63315633156333,72.60769108066603],[55.647556475564755,72.59418246250698],[55.68355683556837,72.5739195352684],[55.66915669156691,72.5620994943792],[55.61875618756187,72.54183656714062],[55.597155971559715,72.53845941260084],[55.55035550355504,72.54183656714062],[55.52875528755288,72.55027945349002],[55.489154891548935,72.57560811253828],[55.45675456754569,72.5823624216178],[55.26595265952659,72.58742815342745],[55.44955449554496,72.5637880716491],[55.463954639546415,72.53845941260084],[55.50355503555036,72.5350822580611],[55.54315543155431,72.52663937171167],[55.5539555395554,72.51988506263214],[55.5539555395554,72.51313075355262],[55.539555395553975,72.49793355812366],[55.539555395553975,72.48780209450436],[55.539555395553975,72.47767063088509],[55.53595535955361,72.47260489907544],[55.521555215552155,72.47091632180553],[55.43515435154353,72.47091632180553],[55.37755377553776,72.45909628091636],[55.35955359553597,72.46078485818626],[55.337953379533815,72.464162012726],[55.15075150751508,72.46247343545613],[55.11475114751147,72.45065339456696],[55.319953199531994,72.44389908548743],[55.35235352353524,72.43714477640788],[55.37755377553776,72.435456199138],[55.44235442354423,72.44389908548743],[55.463954639546415,72.435456199138],[55.46755467554675,72.4270133127886],[55.46755467554675,72.41350469462952],[55.471154711547115,72.40168465374035],[55.48555485554857,72.39493034466082],[55.48195481954821,72.38479888104152],[55.47475474754748,72.37129026288247],[55.46755467554675,72.35778164472342],[55.46035460354605,72.35102733564386],[55.388353883538855,72.31387863570646],[55.37755377553776,72.30205859481728],[55.40275402754028,72.28517282211845],[55.51075510755109,72.2598441630702],[55.521555215552155,72.23620408129185],[55.56835568355683,72.20918684497371],[55.57555575555756,72.19905538135444],[55.564755647556495,72.18216960865561],[55.54315543155431,72.17203814503631],[55.49275492754927,72.15852952687723],[55.4279542795428,72.11969224966995],[55.40275402754028,72.1146265178603],[55.388353883538855,72.10787220878078],[55.363153631536335,72.07747781792287],[55.34155341553415,72.06565777703369],[55.4279542795428,72.06396919976382],[55.45315453154532,72.05890346795417],[55.43515435154353,72.04708342706499],[55.39915399153992,72.03019765436616],[55.38475384753849,72.01837761347699],[55.37755377553776,72.00824614985768],[55.370353703537035,71.9964261089685],[55.363153631536335,71.9862946453492],[55.34875348753488,71.9761631817299],[55.363153631536335,71.97278602719015],[55.3739537395374,71.96434314084073],[55.38475384753849,71.95421167722145],[55.39195391953919,71.94239163633225],[55.35595355953561,71.94239163633225],[55.2479524795248,71.95590025449133],[55.25875258752589,71.94239163633225],[55.24075240752407,71.93732590452262],[55.229952299523006,71.93394874998285],[55.22635226352264,71.9288830181732],[55.39915399153992,71.92212870909367],[55.413554135541375,71.9204401318238],[55.44235442354423,71.9103086682045],[55.496354963549635,71.90186578185507],[55.50715507155073,71.89848862731532],[55.51075510755109,71.89342289550567],[55.51075510755109,71.88835716369601],[55.514355143551455,71.88329143188636],[55.52875528755288,71.86302850464776],[55.52875528755288,71.85458561829836],[55.521555215552155,71.84614273194896],[55.521555215552155,71.83263411378988],[55.52875528755288,71.78535395023317],[55.55035550355504,71.74820525029574],[55.622356223562235,71.68235073677033],[55.672756727567275,71.61143049143524],[55.7519575195752,71.55739601879901],[55.80955809558097,71.53037878248088],[55.831158311583124,71.51518158705193],[55.88875888758889,71.45270422806627],[55.91755917559178,71.43244130082769],[55.98595985959861,71.40542406450956],[56.01476014760149,71.38684971454086],[56.02556025560256,71.36996394184203],[56.05076050760508,71.32099520101542],[56.05436054360544,71.30242085104672],[56.07236072360723,71.28046934653824],[56.10476104761048,71.25851784202976],[56.342363423634254,71.1572032058368],[56.579965799658,71.05588856964386],[56.64836648366486,71.01367413789677],[56.78876788767889,70.96808255160994],[56.83916839168393,70.95963966526054],[56.86436864368645,70.95288535618099],[56.878768787687875,70.94444246983159],[56.91836918369185,70.9140480789737],[56.93636936369364,70.90729376989415],[56.97596975969762,70.89716230627488],[57.03717037170372,70.87014506995675],[57.062370623706244,70.86170218360732],[57.130771307713076,70.8566364517977],[57.22797227972279,70.83806210182897],[57.26757267572677,70.82117632913014],[57.31077310773108,70.80935628824096],[57.465574655746565,70.81779917459039],[57.47997479974799,70.78909336100239],[57.63837638376384,70.72999315655647],[57.55557555575555,70.72661600201673],[57.5267752677527,70.72999315655647],[57.47997479974799,70.74519035198543],[57.45837458374584,70.7485675065252],[57.43317433174332,70.74350177471555],[57.45837458374584,70.72492742474682],[57.50517505175051,70.71648453839742],[57.53757537575376,70.70466449750825],[57.5267752677527,70.6810244157299],[57.48717487174872,70.66751579757081],[57.48717487174872,70.66582722030094],[57.47277472774729,70.64725287033224],[57.45837458374584,70.63712140671294],[57.440374403744045,70.63036709763341],[57.41877418774189,70.62698994309363],[57.39717397173973,70.62698994309363],[57.39717397173973,70.62023563401411],[57.41157411574116,70.62023563401411],[57.42597425974262,70.61854705674423],[57.440374403744045,70.61348132493458],[57.45117451174514,70.60672701585506],[57.26037260372604,70.62867852036351],[57.06957069570697,70.67258152938047],[57.04437044370445,70.67595868392024],[57.022770227702296,70.67427010665034],[57.0119701197012,70.67258152938047],[56.98676986769868,70.66076148849129],[56.96876968769689,70.65907291122141],[56.903969039690395,70.66751579757081],[56.821168211682135,70.6995987656986],[56.777967779677795,70.71141880658777],[56.74196741967421,70.70297592023834],[56.752767527675275,70.69284445661907],[56.76716767167673,70.68609014753955],[56.795967959679615,70.67427010665034],[56.83916839168393,70.65063002487199],[56.853568535685355,70.64725287033224],[57.03717037170372,70.62698994309363],[57.05877058770588,70.62867852036351],[57.112771127711284,70.64049856125268],[57.14157141571417,70.64049856125268],[57.15237152371523,70.63880998398281],[57.163171631716324,70.63374425217316],[57.16677166771669,70.63036709763341],[57.16677166771669,70.62530136582376],[57.16677166771669,70.61854705674423],[57.17037170371705,70.61348132493458],[57.213572135721364,70.5999727067755],[57.30357303573035,70.58646408861645],[57.34317343173433,70.5712668931875],[57.32157321573217,70.56451258410797],[57.29637296372965,70.56451258410797],[57.00837008370084,70.60334986131528],[56.720367203672055,70.64049856125268],[56.64116641166413,70.66920437484072],[56.59796597965982,70.67427010665034],[56.612366123661246,70.65907291122141],[56.64116641166413,70.64725287033224],[56.6987669876699,70.63374425217316],[56.651966519665194,70.63036709763341],[56.58356583565836,70.64218713852259],[56.525965259652594,70.66582722030094],[56.493564935649374,70.69453303388894],[56.50436504365044,70.70466449750825],[56.51516515165153,70.72492742474682],[56.52236522365226,70.72999315655647],[56.561965619656206,70.73337031109625],[56.579965799658,70.7384360429059],[56.576365763657634,70.7468789292553],[56.551165511655114,70.75363323833483],[56.475564755647554,70.75025608379508],[56.45756457564576,70.74519035198543],[56.450364503645034,70.73505888836613],[56.443164431644334,70.72323884747695],[56.43236432364324,70.71479596112755],[56.410764107641086,70.71310738385765],[56.31356313563137,70.72661600201673],[56.27036270362706,70.74012462017578],[56.24876248762487,70.74350177471555],[56.22356223562235,70.74181319744565],[56.21636216362165,70.736747465636],[56.21996219962202,70.72999315655647],[56.23796237962381,70.72155027020708],[56.259562595625965,70.7181731156673],[56.284762847628485,70.71648453839742],[56.30636306363064,70.71310738385765],[56.3207632076321,70.70297592023834],[56.19836198361983,70.7097302293179],[56.21276212762129,70.69622161115882],[56.24156241562417,70.68777872480942],[56.30276302763028,70.6810244157299],[56.284762847628485,70.67089295211059],[56.26316263162633,70.66751579757081],[56.21996219962202,70.66751579757081],[56.23796237962381,70.65231860214189],[56.27036270362706,70.64725287033224],[56.360363603636046,70.64725287033224],[56.37836378363784,70.65063002487199],[56.3819638196382,70.66076148849129],[56.37476374763747,70.66582722030094],[56.342363423634254,70.67427010665034],[56.3279632796328,70.6810244157299],[56.43236432364324,70.67595868392024],[56.48276482764828,70.66413864303107],[56.525965259652594,70.64049856125268],[56.486364863648646,70.64218713852259],[56.46476464764649,70.63880998398281],[56.4539645396454,70.62698994309363],[56.58356583565836,70.61348132493458],[56.64116641166413,70.59828412950563],[56.65556655566556,70.58984124315623],[56.65556655566556,70.5813983568068],[56.644766447664495,70.57464404772728],[56.601566015660154,70.56788973864775],[56.543965439654414,70.54931538867902],[56.51516515165153,70.5442496568694],[56.475564755647554,70.54762681140915],[56.39996399963999,70.56451258410797],[56.500765007650074,70.55775827502845],[56.46476464764649,70.5712668931875],[56.46476464764649,70.57970977953693],[56.48996489964901,70.5729554704574],[56.51516515165153,70.56957831591762],[56.54036540365405,70.5712668931875],[56.561965619656206,70.57970977953693],[56.53316533165332,70.59659555223575],[56.500765007650074,70.5999727067755],[56.42876428764288,70.59321839769598],[56.35316353163532,70.59828412950563],[56.28116281162812,70.61348132493458],[56.158761587615885,70.65738433395151],[56.09036090360905,70.66920437484072],[56.03996039960401,70.64725287033224],[56.158761587615885,70.62867852036351],[56.17676176761768,70.6101041703948],[56.16596165961661,70.59490697496585],[56.129961299613,70.59659555223575],[56.03996039960401,70.62361278855388],[55.96435964359645,70.66076148849129],[55.92835928359284,70.67089295211059],[55.84555845558455,70.68440157026964],[55.80955809558097,70.69453303388894],[55.85275852758528,70.65063002487199],[55.99315993159934,70.61854705674423],[56.04716047160471,70.58477551134658],[56.02196021960219,70.5729554704574],[55.99675996759967,70.57970977953693],[55.97155971559715,70.5915298204261],[55.94635946359463,70.5999727067755],[55.931959319593204,70.59659555223575],[55.90315903159032,70.58477551134658],[55.88515885158853,70.58477551134658],[55.87075870758707,70.58984124315623],[55.86355863558637,70.59490697496585],[55.85995859958601,70.6016612840454],[55.849158491584916,70.60672701585506],[55.816758167581696,70.61348132493458],[55.7519575195752,70.60841559312493],[55.71955719557195,70.61179274766468],[55.6259562595626,70.63374425217316],[55.60435604356044,70.64725287033224],[55.62955629556296,70.63880998398281],[55.665556655566576,70.62867852036351],[55.697956979569796,70.62023563401411],[55.72675726757268,70.62698994309363],[55.697956979569796,70.64725287033224],[55.74475744757447,70.63712140671294],[55.791557915579176,70.63374425217316],[55.798757987579876,70.64387571579246],[55.78435784357845,70.66920437484072],[55.75915759157593,70.69453303388894],[55.73755737557377,70.708041652048],[55.66915669156691,70.71648453839742],[55.62955629556296,70.736747465636],[55.60795607956081,70.73168173382638],[55.60075600756008,70.72155027020708],[55.615156151561536,70.71479596112755],[55.65475654756548,70.71141880658777],[55.69435694356943,70.69791018842872],[55.72675726757268,70.67764726119012],[55.748357483574836,70.64725287033224],[55.71235712357125,70.67427010665034],[55.66195661956621,70.6894673020793],[55.496354963549635,70.71310738385765],[55.471154711547115,70.72323884747695],[55.445954459544595,70.74350177471555],[55.4279542795428,70.75025608379508],[55.40635406354065,70.75025608379508],[55.40635406354065,70.736747465636],[55.363153631536335,70.7181731156673],[55.34875348753488,70.70297592023834],[55.38475384753849,70.70297592023834],[55.420754207542075,70.69622161115882],[55.45315453154532,70.6810244157299],[55.471154711547115,70.65400717941176],[55.45315453154532,70.65907291122141],[55.420754207542075,70.6810244157299],[55.40635406354065,70.6894673020793],[55.395553955539555,70.68777872480942],[55.34875348753488,70.6810244157299],[55.29115291152911,70.6894673020793],[55.27315273152732,70.68609014753955],[55.25155251552516,70.67933583845999],[55.23355233552337,70.66582722030094],[55.237152371523734,70.65063002487199],[55.287552875528775,70.62023563401411],[55.294752947529474,70.60672701585506],[55.27675276752768,70.61179274766468],[55.27315273152732,70.60672701585506],[55.27315273152732,70.59490697496585],[55.26595265952659,70.58477551134658],[55.22635226352264,70.58477551134658],[55.20835208352085,70.5813983568068],[55.211952119521214,70.56620116137785],[55.161551615516174,70.5526925432188],[55.111151111511134,70.5712668931875],[55.05715057150573,70.59828412950563],[54.9959499594996,70.61685847947433],[54.98874988749887,70.62192421128398],[54.98874988749887,70.63036709763341],[54.985149851498534,70.63374425217316],[54.96714967149671,70.63712140671294],[54.93114931149313,70.63712140671294],[54.91314913149131,70.64049856125268],[54.902349023490245,70.64556429306234],[54.88074880748809,70.65569575668164],[54.869948699487,70.66076148849129],[54.801548015480165,70.66751579757081],[54.77994779947801,70.67258152938047],[54.76194761947622,70.6810244157299],[54.7439474394744,70.69115587934917],[54.725947259472605,70.70297592023834],[54.70794707947081,70.72155027020708],[54.70794707947081,70.73337031109625],[54.71514715147151,70.74350177471555],[54.71154711547118,70.7570103928746],[54.68994689946899,70.76714185649391],[54.58914589145891,70.77896189738308],[54.549545495454964,70.80260197916144],[54.53154531545317,70.81273344278074],[54.51354513545135,70.82624206093979],[54.53154531545317,70.80935628824096],[54.56034560345606,70.79247051554213],[54.567545675456756,70.77727332011321],[54.50634506345065,70.78740478373248],[54.491944919449196,70.78402762919274],[54.491944919449196,70.765453279224],[54.48834488344883,70.7485675065252],[54.47754477544777,70.736747465636],[54.650346503465045,70.69453303388894],[54.63594635946362,70.69453303388894],[54.62874628746289,70.69284445661907],[54.62154621546216,70.6894673020793],[54.66114661146614,70.67933583845999],[54.69714697146972,70.67595868392024],[54.73314733147333,70.66920437484072],[54.76914769147692,70.64725287033224],[54.63594635946362,70.66076148849129],[54.57114571145712,70.67427010665034],[54.5459454594546,70.68609014753955],[54.5459454594546,70.70297592023834],[54.524345243452444,70.7097302293179],[54.47754477544777,70.71310738385765],[54.45234452344525,70.7181731156673],[54.308343083430856,70.77389616557343],[54.28674286742867,70.77727332011321],[54.26874268742688,70.77220758830356],[54.26874268742688,70.76376470195413],[54.27954279542797,70.75363323833483],[54.2939429394294,70.74350177471555],[54.26154261542615,70.72999315655647],[54.22554225542257,70.72999315655647],[54.189541895418955,70.7384360429059],[54.157141571415735,70.75363323833483],[54.14274142741428,70.7570103928746],[54.08514085140851,70.74350177471555],[54.04554045540456,70.7485675065252],[54.005940059400615,70.7570103928746],[53.854738547385494,70.82286490640004],[53.84033840338404,70.82286490640004],[53.83313833138331,70.81442202005061],[53.84033840338404,70.80766771097109],[53.89073890738908,70.78402762919274],[53.872738727387286,70.78571620646261],[53.854738547385494,70.78909336100239],[53.822338223382246,70.80260197916144],[53.797137971379726,70.80597913370121],[53.74313743137432,70.79922482462166],[53.7179371793718,70.79922482462166],[53.703537035370374,70.80260197916144],[53.6639366393664,70.82117632913014],[53.63873638736388,70.82961921547957],[53.58473584735847,70.83130779274944],[53.55953559535595,70.83975067909887],[53.56313563135632,70.84312783363862],[53.56673566735668,70.85325929725792],[53.545135451354525,70.8549478745278],[53.5379353793538,70.84481641090849],[53.5379353793538,70.82793063820966],[53.54873548735489,70.81273344278074],[53.5379353793538,70.80429055643131],[53.519935199352005,70.81948775186027],[53.45873458734587,70.82286490640004],[53.40833408334083,70.84988214271814],[53.368733687336885,70.86001360633745],[53.30033300333005,70.86676791541697],[53.49113491134912,70.8735222244965],[53.50913509135091,70.87014506995675],[53.519935199352005,70.87014506995675],[53.53073530735307,70.8752108017664],[53.54153541535416,70.88196511084593],[53.552335523355254,70.88703084265558],[53.577535775357774,70.88871941992545],[53.595535955359566,70.88196511084593],[53.645936459364606,70.84819356544827],[53.671136711367126,70.83806210182897],[53.68913689136892,70.83468494728922],[53.703537035370374,70.8465049881784],[53.685536855368554,70.8566364517977],[53.67473674736749,70.8735222244965],[53.67473674736749,70.89040799719533],[53.685536855368554,70.90729376989415],[53.70713707137071,70.92586811986288],[53.728737287372894,70.93599958348216],[53.73953739537396,70.94781962437136],[53.72513725137253,70.96808255160994],[53.671136711367126,71.00523125154737],[53.54873548735489,71.04575710602455],[53.49113491134912,71.07277434234268],[53.494734947349485,71.0778400741523],[53.50193501935021,71.09472584685113],[53.5379353793538,71.08628296050173],[53.58473584735847,71.07952865142221],[53.678336783367854,71.0778400741523],[53.6639366393664,71.09303726958126],[53.678336783367854,71.09979157866078],[53.696336963369646,71.09810300139091],[53.72513725137253,71.08797153777161],[53.74313743137432,71.08459438323186],[53.78273782737827,71.08628296050173],[53.80073800738009,71.08628296050173],[53.905139051390535,71.05419999237395],[53.937539375393754,71.0592657241836],[53.83313833138331,71.10992304228009],[53.80793807938079,71.13356312405844],[53.94113941139412,71.14369458767774],[54.00954009540095,71.14031743313797],[54.06714067140672,71.12005450589939],[53.980739807398095,71.13187454678857],[53.937539375393754,71.13018596951869],[53.9159391593916,71.10654588774031],[53.937539375393754,71.10148015593069],[53.99873998739989,71.10654588774031],[54.07794077940781,71.09979157866078],[54.232742327423296,71.12005450589939],[54.24354243542436,71.12343166043914],[54.239942399423995,71.13018596951869],[54.22554225542257,71.13694027859822],[54.21114211142111,71.14031743313797],[54.19314193141932,71.13862885586809],[54.157141571415735,71.13018596951869],[54.139141391413915,71.12680881497892],[54.063540635406355,71.13694027859822],[54.02034020340204,71.14707174221752],[53.99153991539916,71.16058036037657],[54.005940059400615,71.16226893764645],[54.01674016740168,71.16902324672597],[54.02394023940241,71.1774661330754],[54.03474034740347,71.1859090194248],[54.04914049140493,71.18928617396458],[54.0959409594096,71.18928617396458],[54.056340563405655,71.20954910120318],[54.081540815408175,71.21123767847305],[54.12834128341285,71.20786052393328],[54.164341643416435,71.20954910120318],[54.139141391413915,71.21292625574293],[54.09234092340924,71.23150060571163],[54.063540635406355,71.23656633752128],[54.0419404194042,71.23318918298153],[54.02394023940241,71.2247462966321],[53.99153991539916,71.19941763758388],[53.969939699397,71.1859090194248],[53.94473944739448,71.17577755580552],[53.9159391593916,71.17408897853562],[53.89433894338944,71.1859090194248],[53.872738727387286,71.19941763758388],[53.85113851138513,71.2061719466634],[53.80073800738009,71.20954910120318],[53.81513815138152,71.19941763758388],[53.829538295382974,71.1859090194248],[53.83313833138331,71.17071182399587],[53.822338223382246,71.1572032058368],[53.797137971379726,71.15551462856692],[53.73233732337323,71.17240040126575],[53.703537035370374,71.17408897853562],[53.7179371793718,71.1859090194248],[53.72513725137253,71.18928617396458],[53.70713707137071,71.1960404830441],[53.66753667536676,71.20110621485375],[53.64953649536497,71.2061719466634],[53.627936279362814,71.20786052393328],[53.577535775357774,71.19941763758388],[53.55593555935559,71.2061719466634],[53.54153541535416,71.2163034102827],[53.50913509135091,71.2247462966321],[53.46233462334624,71.25514068749001],[53.45153451534517,71.26358357383941],[53.57393573935741,71.29397796469729],[53.595535955359566,71.30242085104672],[53.60633606336063,71.3226837782853],[53.653136531365334,71.34801243733355],[53.6639366393664,71.36996394184203],[53.68193681936819,71.39866975543003],[53.72513725137253,71.41048979631921],[53.887138871388714,71.42230983720839],[53.92673926739269,71.43581845536744],[53.95193951939521,71.46283569168557],[53.91953919539196,71.4695900007651],[53.90153901539017,71.471278578035],[53.879938799388015,71.46452426895544],[53.829538295382974,71.43581845536744],[53.577535775357774,71.3902268690806],[53.552335523355254,71.37840682819143],[53.5379353793538,71.35983247822273],[53.545135451354525,71.31761804647567],[53.48753487534876,71.3041094283166],[53.4119341193412,71.31255231466602],[53.36153361533616,71.3328152419046],[53.35793357933579,71.33956955098412],[53.35073350733509,71.35983247822273],[53.34713347133473,71.36658678730225],[53.31473314733148,71.39360402362038],[53.24993249932501,71.45608138260604],[53.267932679326805,71.45776995987592],[53.30753307533075,71.46790142349522],[53.32193321933221,71.47296715530487],[53.32913329133291,71.4797214643844],[53.32913329133291,71.48478719619405],[53.32913329133291,71.4898529280037],[53.33273332733327,71.49660723708323],[53.35793357933579,71.51518158705193],[53.444334443344445,71.54557597790983],[53.36513365133652,71.56921605968819],[53.34713347133473,71.56752748241831],[53.20673206732067,71.51011585524228],[53.17433174331745,71.48816435073383],[53.141931419314204,71.46283569168557],[53.14913149131493,71.44088418717709],[53.134731347313476,71.42568699174817],[53.11313113131132,71.42230983720839],[53.10233102331023,71.43244130082769],[53.09873098730989,71.45270422806627],[53.084330843308436,71.46452426895544],[53.04833048330485,71.48478719619405],[53.05553055530555,71.4982958143531],[53.04833048330485,71.50167296889288],[53.03033030330303,71.499984391623],[53.01233012330124,71.49323008254345],[53.008730087300876,71.48309861892417],[53.01953019530197,71.47296715530487],[53.03753037530376,71.46283569168557],[53.04833048330485,71.45608138260604],[53.03753037530376,71.442572764447],[53.015930159301604,71.442572764447],[52.990729907299084,71.44594991898674],[52.97272972729729,71.442572764447],[52.96912969129693,71.42906414628791],[52.97272972729729,71.41386695085899],[52.96912969129693,71.40542406450956],[52.94392943929441,71.40880121904934],[52.92952929529295,71.41048979631921],[52.90432904329043,71.39191544635051],[52.882728827288275,71.39360402362038],[52.86832868328685,71.40204690996978],[52.86112861128612,71.41386695085899],[52.857528575285755,71.42737556901804],[52.86472864728648,71.43919560990722],[52.85392853928539,71.45776995987592],[52.82152821528217,71.4695900007651],[52.79632796327965,71.46452426895544],[52.82152821528217,71.42906414628791],[52.7639276392764,71.43244130082769],[52.73872738727388,71.442572764447],[52.731527315273155,71.46621284622535],[52.71712717127173,71.4898529280037],[52.68832688326884,71.48647577346392],[52.63432634326344,71.46283569168557],[52.60912609126092,71.46790142349522],[52.61632616326165,71.48647577346392],[52.6379263792638,71.5084272779724],[52.648726487264895,71.52531305067123],[52.64512645126453,71.54557597790983],[52.623526235262375,71.55908459606889],[52.573125731257335,71.57597036876771],[52.56232562325624,71.59285614146654],[52.56232562325624,71.62831626413407],[52.547925479254815,71.6350705732136],[52.51912519125193,71.62831626413407],[52.5119251192512,71.61143049143524],[52.5119251192512,71.58947898692676],[52.497524975249775,71.56583890514841],[52.46872468724689,71.55570744152911],[52.3859238592386,71.54895313244958],[52.36792367923681,71.53544451429053],[52.37512375123751,71.51349300978205],[52.389523895238966,71.499984391623],[52.403924039240394,71.4898529280037],[52.414724147241486,71.47634430984462],[52.378723787237874,71.48141004165427],[52.328323283232834,71.49323008254345],[52.28152281522816,71.51349300978205],[52.259922599226,71.53882166883028],[52.270722707227094,71.57259321422794],[52.26712267122673,71.58779040965689],[52.245522455224574,71.58272467784724],[52.195121951219534,71.55739601879901],[52.17352173521735,71.54895313244958],[52.14112141121413,71.54557597790983],[52.162721627216285,71.5185587415917],[52.20232202322023,71.50167296889288],[52.245522455224574,71.49154150527357],[52.277922779227794,71.47634430984462],[52.14112141121413,71.48478719619405],[52.05472054720548,71.47634430984462],[51.961119611196125,71.4797214643844],[51.91431914319145,71.46621284622535],[51.860318603186045,71.45608138260604],[51.83871838718389,71.45608138260604],[51.82071820718207,71.4611471144157],[51.809918099181004,71.4695900007651],[51.79911799117991,71.47803288711452],[51.784717847178484,71.48647577346392],[51.709117091170924,71.51687016432183],[51.683916839168404,71.52531305067123],[51.601116011160116,71.5371330915604],[51.550715507155076,71.56077317333876],[51.532715327153284,71.56583890514841],[51.53631536315365,71.57597036876771],[51.550715507155076,71.59454471873642],[51.55431554315544,71.60298760508584],[51.550715507155076,71.61311906870515],[51.53631536315365,71.62325053232442],[51.532715327153284,71.63169341867385],[51.525515255152555,71.64689061410277],[51.46791467914679,71.69248220038963],[51.46431464314645,71.70261366400891],[51.46791467914679,71.70599081854868],[51.47151471514715,71.71105655035834],[51.45711457114572,71.72287659124751],[51.44271442714427,71.72963090032704],[51.4319143191432,71.73300805486681],[51.424714247142475,71.73638520940656],[51.41751417514175,71.75158240483552],[51.41031410314105,71.76509102299457],[51.40671406714068,71.7819767956934],[51.41031410314105,71.80561687747175]]],[[[-72.94932949329493,66.73481933601403],[-72.97452974529745,66.76014799506225],[-73.0069300693007,66.77872234503096],[-73.0069300693007,66.81755962223826],[-72.96372963729637,66.86652836306487],[-72.91332913329133,66.90874279481193],[-72.87732877328773,66.92731714478063],[-72.88452884528844,66.92731714478063],[-72.88452884528844,66.92900572205053],[-72.88452884528844,66.93238287659028],[-72.86292862928629,66.95264580382889],[-72.82692826928269,67.01850031735432],[-72.80172801728017,67.04214039913268],[-72.73692736927369,67.0674690581809],[-72.6721267212672,67.08097767633998],[-72.47772477724777,67.08773198541951],[-72.41292412924129,67.09955202630869],[-72.35172351723517,67.11981495354726],[-72.29052290522905,67.16202938529435],[-72.27972279722796,67.16878369437387],[-72.27612276122761,67.18060373526305],[-72.27612276122761,67.18904662161248],[-72.28332283322833,67.20930954885105],[-72.28332283322833,67.22112958974023],[-72.26892268922688,67.24476967151858],[-72.24732247322473,67.25996686694754],[-72.19332193321932,67.27516406237649],[-72.31572315723157,67.30555845323437],[-72.36972369723696,67.3308871122826],[-72.35892358923589,67.36465865768025],[-72.36972369723696,67.37310154402968],[-72.39852398523985,67.41362739850686],[-72.42732427324273,67.44064463482499],[-72.43452434524345,67.45584183025392],[-72.43452434524345,67.47441618022265],[-72.50652506525064,67.50143341654075],[-72.48852488524885,67.51494203469983],[-72.43452434524345,67.53182780739866],[-72.42732427324273,67.54364784828783],[-72.43092430924308,67.55377931190714],[-72.44172441724417,67.55715646644688],[-72.4561245612456,67.55884504371679],[-72.4669246692467,67.56391077552641],[-72.47412474124741,67.57235366187584],[-72.48852488524885,67.59092801184454],[-72.49572495724956,67.59768232092406],[-72.48132481324812,67.61794524816267],[-72.49572495724956,67.62976528905185],[-72.52452524525245,67.63820817540127],[-72.5929259292593,67.63989675267115],[-72.59652596525964,67.6432739072109],[-72.60012600126001,67.65002821629045],[-72.60372603726037,67.65847110263985],[-72.61092610926109,67.6635368344495],[-72.64332643326433,67.6719797207989],[-72.66132661326613,67.68548833895798],[-72.6721267212672,67.70237411165681],[-72.66492664926649,67.72263703889539],[-72.64692646926468,67.73107992524481],[-72.59652596525964,67.74458854340386],[-72.5929259292593,67.75472000702317],[-72.59652596525964,67.76654004791234],[-72.60012600126001,67.77667151153165],[-72.60732607326072,67.78680297515095],[-72.61812618126181,67.79524586150035],[-72.63252632526324,67.80368874784978],[-72.64692646926468,67.8087544796594],[-72.66132661326613,67.8104430569293],[-72.67572675726757,67.81382021146905],[-72.69012690126901,67.8205745205486],[-72.71532715327153,67.83746029324743],[-72.73692736927369,67.84928033413661],[-72.74052740527405,67.85603464321613],[-72.73332733327332,67.86616610683544],[-72.7621276212762,67.87967472499449],[-72.78732787327873,67.87292041591496],[-72.81252812528125,67.85772322048601],[-72.83772837728377,67.85096891140648],[-72.85572855728557,67.86110037502579],[-72.88812888128881,67.89656049769332],[-72.91332913329133,67.90669196131262],[-72.90252902529025,67.91682342493192],[-72.87732877328773,67.93370919763072],[-72.89892898928989,67.93539777490062],[-72.9241292412924,67.93202062036084],[-72.94572945729458,67.93202062036084],[-72.93852938529385,67.9472178157898],[-72.90972909729096,67.95903785667898],[-72.90612906129061,67.96072643394885],[-72.90612906129061,67.97085789756815],[-72.90612906129061,67.97930078391755],[-72.90972909729096,67.98774367026698],[-72.91332913329133,67.9944979793465],[-72.90972909729096,68.00462944296581],[-72.90252902529025,68.01307232931521],[-72.89892898928989,68.02320379293451],[-72.90252902529025,68.02658094747429],[-72.90972909729096,68.02995810201404],[-72.91692916929169,68.03333525655381],[-72.92052920529206,68.04008956563334],[-72.91692916929169,68.04346672017311],[-72.91332913329133,68.04853245198277],[-72.91332913329133,68.05190960652251],[-72.91332913329133,68.05697533833217],[-72.9241292412924,68.07048395649124],[-72.94932949329493,68.09750119280935],[-72.960129601296,68.11100981096843],[-72.97452974529745,68.13971562455643],[-72.98892988929889,68.17348716995409],[-72.98892988929889,68.19037294265291],[-72.99252992529925,68.22583306532044],[-72.99612996129962,68.23596452893975],[-73.0069300693007,68.24271883801927],[-73.01773017730177,68.24440741528915],[-73.03213032130321,68.2410302607494],[-73.04293042930429,68.23596452893975],[-73.04653046530466,68.22921021986019],[-73.03933039330393,68.22076733351079],[-73.03573035730356,68.21232444716136],[-73.050130501305,68.20219298354209],[-73.07173071730718,68.20725871535174],[-73.09333093330933,68.22245591078067],[-73.11853118531185,68.23258737439997],[-73.14373143731437,68.21739017897102],[-73.15093150931509,68.21739017897102],[-73.16533165331653,68.23765310620962],[-73.1761317613176,68.24271883801927],[-73.19053190531905,68.2393416834795],[-73.20133201332013,68.23765310620962],[-73.21573215732157,68.23596452893975],[-73.22653226532265,68.24271883801927],[-73.21573215732157,68.24271883801927],[-73.20493204932049,68.24609599255902],[-73.19773197731978,68.25453887890845],[-73.19413194131941,68.26635891979763],[-73.20133201332013,68.27480180614702],[-73.21573215732157,68.2781789606868],[-73.23013230132301,68.2781789606868],[-73.24093240932409,68.27986753795668],[-73.25533255332553,68.28493326976633],[-73.28773287732876,68.28999900157598],[-73.3021330213302,68.28999900157598],[-73.31293312933128,68.28662184703623],[-73.32733327333273,68.27986753795668],[-73.3381333813338,68.27311322887715],[-73.33453334533345,68.2697360743374],[-73.32373323733236,68.26635891979763],[-73.32733327333273,68.2596046107181],[-73.34173341733417,68.25285030163857],[-73.35253352533525,68.2494731470988],[-73.36333363333632,68.24778456982892],[-73.3741337413374,68.2494731470988],[-73.3849338493385,68.25285030163857],[-73.41733417334173,68.27142465160728],[-73.44253442534425,68.27649038341693],[-73.49653496534965,68.27649038341693],[-73.47853478534785,68.28662184703623],[-73.46053460534606,68.29168757884585],[-73.44253442534425,68.29506473338563],[-73.42453424534244,68.2967533106555],[-73.4209342093421,68.30013046519528],[-73.41373413734136,68.31363908335433],[-73.41373413734136,68.31701623789411],[-73.40653406534065,68.32039339243386],[-73.37773377733777,68.32377054697363],[-73.34173341733417,68.32039339243386],[-73.32733327333273,68.32208196970376],[-73.30573305733057,68.33052485605316],[-73.29853298532984,68.33221343332306],[-73.29133291332913,68.33559058786281],[-73.29493294932949,68.34572205148211],[-73.3021330213302,68.35416493783151],[-73.31653316533165,68.35923066964116],[-73.29853298532984,68.37442786507012],[-73.26973269732697,68.38118217414964],[-73.2121321213212,68.37949359687977],[-73.25533255332553,68.39469079230872],[-73.28053280532805,68.39975652411835],[-73.31653316533165,68.39975652411835],[-73.3021330213302,68.38793648322917],[-73.29493294932949,68.3862479059593],[-73.31293312933128,68.38118217414964],[-73.33453334533345,68.38118217414964],[-73.35253352533525,68.37611644233999],[-73.35973359733597,68.36260782418094],[-73.35253352533525,68.34403347421224],[-73.35613356133561,68.33559058786281],[-73.37053370533705,68.33221343332306],[-73.43173431734317,68.33559058786281],[-73.4641346413464,68.33390201059294],[-73.48213482134821,68.32377054697363],[-73.47853478534785,68.32377054697363],[-73.46773467734677,68.31701623789411],[-73.53613536135362,68.2883104243061],[-73.57213572135721,68.2781789606868],[-73.61173611736118,68.27649038341693],[-73.61173611736118,68.2697360743374],[-73.60453604536045,68.26635891979763],[-73.60093600936008,68.26298176525785],[-73.590135901359,68.25622745617832],[-73.61893618936189,68.2494731470988],[-73.6261362613626,68.25285030163857],[-73.63333633336333,68.25622745617832],[-73.6369363693637,68.26129318798797],[-73.64053640536405,68.26298176525785],[-73.68733687336874,68.27649038341693],[-73.65133651336512,68.29337615611576],[-73.64053640536405,68.2967533106555],[-73.62253622536225,68.29506473338563],[-73.60813608136081,68.29168757884585],[-73.59733597335973,68.29337615611576],[-73.58293582935829,68.30350761973506],[-73.64053640536405,68.31026192881458],[-73.70173701737016,68.31026192881458],[-73.72693726937268,68.31363908335433],[-73.83133831338313,68.34403347421224],[-73.84573845738457,68.34909920602189],[-73.86733867338673,68.37611644233999],[-73.88533885338853,68.38962506049907],[-73.90693906939069,68.39975652411835],[-73.94653946539465,68.41326514227742],[-73.93213932139321,68.4250851831666],[-73.91053910539105,68.433528069516],[-73.89253892538925,68.44703668767508],[-73.8781387813878,68.48418538761248],[-73.86013860138601,68.49769400577156],[-73.83853838538386,68.50613689212096],[-73.81693816938169,68.50951404666074],[-73.7629376293763,68.51120262393061],[-73.73773737737378,68.51964551028004],[-73.73053730537305,68.53990843751862],[-73.74133741337413,68.54666274659814],[-73.81693816938169,68.5703028283765],[-73.75933759337593,68.5821228692657],[-73.74493744937449,68.58887717834523],[-73.72333723337233,68.61420583739346],[-73.71973719737197,68.61589441466333],[-73.73413734137341,68.62602587828263],[-73.76653766537665,68.62602587828263],[-73.82413824138241,68.61927156920311],[-73.82413824138241,68.62602587828263],[-73.73413734137341,68.64628880552124],[-73.70893708937089,68.65979742368029],[-73.77373773737737,68.66655173275981],[-73.79533795337953,68.66655173275981],[-73.78813788137882,68.67499461910924],[-73.77733777337772,68.6800603509189],[-73.75573755737557,68.68681465999842],[-73.83853838538386,68.69525754634782],[-73.8889388893889,68.71383189631655],[-73.95013950139501,68.70538900996712],[-73.98253982539825,68.707077587237],[-73.98973989739898,68.71552047358642],[-73.99693996939969,68.72396335993582],[-74.00774007740077,68.73071766901538],[-74.03654036540365,68.72058620539607],[-74.08694086940869,68.72227478266595],[-74.09774097740977,68.72396335993582],[-74.12294122941229,68.73409482355513],[-74.1409414094141,68.73578340082503],[-74.16974169741697,68.72902909174547],[-74.18774187741877,68.72902909174547],[-74.16614166141662,68.707077587237],[-74.15894158941589,68.70201185542737],[-74.14814148141481,68.69694612361772],[-74.09774097740977,68.69356896907794],[-74.08334083340833,68.6901918145382],[-74.04374043740437,68.66655173275981],[-74.04374043740437,68.66486315548994],[-74.04734047340473,68.65979742368029],[-74.04374043740437,68.65473169187064],[-74.02934029340292,68.65135453733089],[-74.02574025740257,68.64797738279111],[-74.0149401494015,68.63953449644171],[-74.02214022140221,68.63615734190194],[-74.02214022140221,68.63278018736216],[-73.99693996939969,68.62771445555254],[-73.97893978939788,68.61589441466333],[-73.93933939339394,68.58550002380545],[-73.89613896138961,68.5703028283765],[-73.88533885338853,68.56354851929697],[-73.88533885338853,68.55510563294757],[-73.8889388893889,68.54835132386805],[-73.89613896138961,68.54497416932827],[-73.91053910539105,68.52302266481979],[-73.93933939339394,68.50782546939084],[-73.98613986139861,68.49600542850166],[-74.01854018540185,68.49769400577156],[-74.02574025740257,68.50782546939084],[-74.0149401494015,68.51964551028004],[-74.0041400414004,68.53653128297884],[-74.14814148141481,68.52977697389932],[-74.19854198541985,68.51795693301014],[-74.22014220142201,68.51626835574027],[-74.22014220142201,68.52977697389932],[-74.2561425614256,68.53990843751862],[-74.37134371343713,68.5432855920584],[-74.38574385743857,68.54835132386805],[-74.39294392943928,68.55679421021745],[-74.40014400144001,68.56692567383675],[-74.40374403744038,68.5703028283765],[-74.41454414544145,68.57367998291627],[-74.43614436144361,68.58718860107533],[-74.44694446944469,68.59225433288498],[-74.50454504545046,68.5990086419645],[-74.52254522545225,68.61082868285371],[-74.52974529745298,68.63615734190194],[-74.53334533345333,68.65304311460076],[-74.53694536945369,68.66486315548994],[-74.55134551345513,68.67161746456947],[-74.57294572945729,68.67330604183937],[-74.59454594545944,68.6800603509189],[-74.66654666546665,68.71552047358642],[-74.70974709747097,68.72565193720573],[-74.72054720547204,68.73578340082503],[-74.72054720547204,68.7560463280636],[-74.72054720547204,68.76955494622266],[-74.7169471694717,68.7746206780323],[-74.61974619746196,68.78475214165161],[-74.59454594545944,68.79150645073113],[-74.58014580145802,68.80163791435044],[-74.55134551345513,68.82527799612879],[-74.57294572945729,68.84216376882762],[-74.61254612546125,68.85060665517705],[-74.65574655746558,68.85060665517705],[-74.68814688146881,68.8455409233674],[-74.68454684546845,68.83540945974809],[-74.6809468094681,68.83203230520832],[-74.69894698946989,68.83203230520832],[-74.7169471694717,68.83034372793844],[-74.73494734947349,68.82527799612879],[-74.74934749347493,68.81683510977939],[-74.7169471694717,68.81683510977939],[-74.68814688146881,68.82021226431914],[-74.65934659346593,68.81852368704926],[-74.6341463414634,68.80332649162031],[-74.64854648546485,68.79150645073113],[-74.82494824948249,68.77630925530221],[-74.83574835748357,68.77968640984196],[-74.83574835748357,68.78644071892148],[-74.83574835748357,68.79319502800104],[-74.8429484294843,68.79657218254079],[-74.89334893348934,68.79657218254079],[-74.95814958149582,68.81176937796974],[-74.98334983349834,68.81176937796974],[-74.95454954549545,68.82190084158904],[-74.8789487894879,68.82527799612879],[-74.84654846548464,68.83203230520832],[-74.85374853748537,68.83878661428787],[-74.78894788947889,68.8539838097168],[-74.72054720547204,68.85904954152645],[-74.69894698946989,68.8641152733361],[-74.68454684546845,68.87931246876505],[-74.6809468094681,68.89619824146388],[-74.70254702547025,68.90632970508318],[-74.68814688146881,68.91646116870245],[-74.68454684546845,68.91983832324223],[-74.67374673746737,68.9215269005121],[-74.70254702547025,68.93672409594106],[-74.75654756547566,68.94010125048081],[-74.89694896948969,68.91477259143258],[-75.04455044550446,68.90632970508318],[-75.02295022950229,68.91477259143258],[-74.87174871748716,68.93334694140128],[-74.84654846548464,68.94010125048081],[-74.89334893348934,68.94685555956036],[-75.00135001350013,68.92828120959163],[-75.04455044550446,68.93503551867119],[-74.86094860948609,68.96880706406884],[-74.9329493294933,68.96205275498929],[-74.97974979749797,68.95023271410011],[-75.0049500495005,68.94685555956036],[-75.02295022950229,68.95529844590976],[-75.01215012150121,68.96711848679894],[-74.94014940149401,68.99751287765685],[-74.92574925749257,69.0008900321966],[-74.72774727747277,69.02284153670507],[-74.78534785347853,69.00426718673637],[-74.80334803348033,68.99582430038694],[-74.78534785347853,68.99582430038694],[-74.74574745747456,69.00595576400625],[-74.72414724147241,69.00933291854602],[-74.6809468094681,69.00764434127612],[-74.65574655746558,69.0110214958159],[-74.64134641346413,69.02284153670507],[-74.65214652146521,69.04141588667378],[-74.66654666546665,69.0481701957533],[-74.70974709747097,69.0498587730232],[-74.72774727747277,69.05492450483285],[-74.78174781747818,69.07856458661121],[-74.81054810548105,69.08363031842086],[-74.82854828548285,69.08025316388108],[-74.85014850148501,69.07518743207143],[-74.88974889748897,69.07012170026178],[-74.93654936549365,69.05661308210273],[-74.94734947349473,69.0498587730232],[-74.96174961749617,69.0498587730232],[-74.9689496894969,69.04479304121355],[-74.98694986949869,69.02621869124485],[-74.99774997749977,69.0211529594352],[-75.03735037350373,69.01439865035567],[-75.05175051750517,69.00933291854602],[-75.04095040950409,68.99582430038694],[-75.04095040950409,68.98569283676764],[-75.05535055350553,68.97893852768811],[-75.06975069750698,68.97556137314837],[-75.0589505895059,68.95529844590976],[-75.07335073350733,68.93503551867119],[-75.10575105751057,68.90970685962293],[-75.11655116551165,68.8928210869241],[-75.13815138151381,68.88944393238435],[-75.18855188551885,68.8928210869241],[-75.20295202952029,68.89619824146388],[-75.24255242552425,68.9215269005121],[-75.29655296552966,68.93503551867119],[-75.36495364953649,68.97218421860859],[-75.37935379353793,68.97556137314837],[-75.39735397353974,68.98400425949777],[-75.4261542615426,69.00764434127612],[-75.44055440554405,69.01608722762555],[-75.4621546215462,69.02284153670507],[-75.48735487354872,69.02284153670507],[-75.5089550895509,69.01777580489542],[-75.53055530555305,69.00933291854602],[-75.57015570155701,68.98569283676764],[-75.56295562955628,68.97049564133872],[-75.49815498154982,68.93503551867119],[-75.54855548555486,68.90632970508318],[-75.60615606156061,68.88606677784458],[-75.73215732157321,68.86242669606622],[-75.80775807758077,68.83709803701797],[-75.93375933759337,68.82527799612879],[-75.95535955359553,68.81852368704926],[-76.00216002160022,68.78812929619139],[-76.02376023760237,68.77630925530221],[-76.32616326163262,68.6986347008876],[-76.53856538565385,68.67499461910924],[-76.62496624966249,68.68174892818877],[-76.68256682566825,68.72902909174547],[-76.67176671766717,68.7661777916829],[-76.57456574565745,68.82021226431914],[-76.53856538565385,68.85229523244692],[-76.53496534965349,68.88100104603492],[-76.55656556565565,68.88606677784458],[-76.59256592565926,68.8843782005747],[-76.62496624966249,68.89619824146388],[-76.6429664296643,68.91646116870245],[-76.65376653766538,68.93165836413141],[-76.64656646566465,68.94685555956036],[-76.62856628566286,68.96880706406884],[-76.63936639366393,68.98062710495802],[-76.6429664296643,68.99920145492672],[-76.63936639366393,69.01608722762555],[-76.62496624966249,69.02284153670507],[-76.61056610566105,69.02453011397495],[-76.56376563765637,69.03803873213403],[-76.42336423364233,69.0599902366425],[-76.16056160561605,69.04479304121355],[-76.13176131761317,69.03803873213403],[-76.08496084960849,69.01439865035567],[-76.05976059760597,69.00933291854602],[-75.99135991359913,69.0110214958159],[-75.98055980559805,69.01439865035567],[-75.96255962559626,69.02284153670507],[-75.89055890558905,69.04648161848343],[-75.82575825758258,69.05661308210273],[-75.81135811358114,69.08363031842086],[-75.78255782557825,69.08869605023051],[-75.7141571415714,69.09207320477026],[-75.64935649356494,69.08531889569073],[-75.62055620556205,69.08869605023051],[-75.59535595355953,69.10220466838956],[-75.59535595355953,69.10895897746909],[-75.60255602556025,69.12922190470769],[-75.60615606156061,69.13597621378722],[-75.60255602556025,69.14441910013662],[-75.57735577355773,69.15117340921617],[-75.57015570155701,69.1562391410258],[-75.5989559895599,69.21871650001145],[-75.59535595355953,69.22884796363076],[-75.60255602556025,69.23560227271028],[-75.68895688956889,69.28625959080676],[-75.75015750157502,69.3048339407755],[-75.80775807758077,69.32678544528395],[-75.87615876158762,69.34367121798277],[-75.90855908559085,69.34535979525268],[-75.91575915759157,69.34873694979242],[-75.94455944559445,69.36393414522138],[-75.95175951759518,69.36899987703103],[-75.96255962559626,69.37406560884068],[-76.05256052560526,69.38419707245998],[-76.16776167761677,69.41459146331786],[-76.2181621816218,69.41796861785761],[-76.35856358563585,69.40108284515881],[-76.3909639096391,69.40614857696843],[-76.40536405364054,69.41796861785761],[-76.41256412564125,69.43485439055644],[-76.4269642696427,69.45511731779504],[-76.45216452164522,69.4686259359541],[-76.60336603366034,69.52941471766988],[-76.62856628566286,69.54630049036871],[-76.63576635766357,69.57162914941696],[-76.61776617766178,69.59189207665554],[-76.58536585365853,69.60371211754472],[-76.5529655296553,69.61384358116402],[-76.47016470164701,69.65774659018098],[-76.45216452164522,69.66112374472073],[-76.38376383763837,69.6459265492918],[-76.33336333363333,69.64254939475202],[-76.2289622896229,69.61890931297367],[-76.2109621096211,69.61890931297367],[-76.2109621096211,69.6256636220532],[-76.2289622896229,69.63748366294237],[-76.2181621816218,69.64930370383155],[-76.18216182161821,69.66787805380025],[-76.36216362163621,69.67125520834003],[-76.38736387363873,69.67632094014968],[-76.40176401764018,69.68814098103886],[-76.39816398163981,69.69658386738826],[-76.40176401764018,69.7016495991979],[-76.41616416164162,69.7016495991979],[-76.44856448564485,69.69320671284851],[-76.58536585365853,69.69489529011838],[-76.62136621366213,69.68814098103886],[-76.63936639366393,69.6746323628798],[-76.54216542165422,69.67632094014968],[-76.53136531365313,69.6729437856099],[-76.5169651696517,69.66787805380025],[-76.53496534965349,69.64761512656167],[-76.5529655296553,69.63241793113272],[-76.57456574565745,69.62397504478332],[-76.60696606966069,69.61890931297367],[-76.61416614166141,69.62059789024354],[-76.62496624966249,69.6256636220532],[-76.63576635766357,69.62735219932307],[-76.6429664296643,69.62228646751342],[-76.64656646566465,69.61890931297367],[-76.6429664296643,69.61384358116402],[-76.63936639366393,69.60877784935437],[-76.6429664296643,69.60202354027484],[-76.68256682566825,69.57162914941696],[-76.70416704167042,69.56487484033741],[-76.83376833768337,69.57669488122659],[-76.88056880568806,69.59020349938567],[-76.8841688416884,69.59695780846519],[-76.87336873368733,69.61215500389415],[-76.86256862568625,69.61890931297367],[-76.83016830168302,69.6256636220532],[-76.81936819368194,69.63241793113272],[-76.84456844568446,69.62397504478332],[-76.90576905769058,69.62228646751342],[-76.95256952569525,69.60033496300497],[-76.98496984969849,69.59695780846519],[-77.01377013770137,69.60033496300497],[-77.03897038970389,69.60540069481459],[-77.04617046170462,69.61384358116402],[-77.04617046170462,69.62228646751342],[-77.04977049770497,69.63072935386285],[-77.06057060570605,69.63241793113272],[-77.11457114571145,69.6256636220532],[-77.13617136171361,69.62904077659297],[-77.20457204572045,69.6459265492918],[-77.17937179371793,69.6746323628798],[-77.13617136171361,69.68645240376898],[-77.04617046170462,69.68814098103886],[-77.03537035370353,69.69151813557863],[-77.01737017370174,69.70502675373768],[-77.00657006570066,69.70840390827746],[-76.99576995769958,69.70671533100756],[-76.98496984969849,69.69658386738826],[-76.97416974169741,69.69489529011838],[-76.95256952569525,69.69827244465816],[-76.92016920169202,69.71515821735699],[-76.90216902169021,69.71515821735699],[-76.90936909369093,69.70502675373768],[-76.92016920169202,69.69658386738826],[-76.94176941769418,69.68138667195933],[-76.87336873368733,69.68645240376898],[-76.83376833768337,69.69489529011838],[-76.79416794167942,69.72191252643651],[-76.79416794167942,69.72528968097629],[-76.79416794167942,69.73373256732569],[-76.79056790567905,69.74217545367512],[-76.78336783367833,69.75061834002452],[-76.81576815768157,69.75906122637392],[-76.85176851768517,69.7539954945643],[-76.8841688416884,69.75568407183417],[-76.90216902169021,69.77763557634265],[-76.88776887768877,69.801275658121],[-76.84816848168481,69.80802996720053],[-76.79416794167942,69.80802996720053],[-76.7581675816758,69.81816143081983],[-76.77616776167761,69.83673578078853],[-76.8049680496805,69.83335862624878],[-76.83736837368373,69.82491573989935],[-76.87336873368733,69.81816143081983],[-77.07137071370714,69.81816143081983],[-77.07137071370714,69.82491573989935],[-77.03177031770318,69.8384243580584],[-77.01377013770137,69.84686724440783],[-76.99576995769958,69.86037586256688],[-77.04977049770497,69.85699870802713],[-77.07857078570785,69.85362155348736],[-77.10017100171001,69.84517866713796],[-77.13257132571326,69.82491573989935],[-77.15057150571505,69.81816143081983],[-77.19737197371974,69.83335862624878],[-77.29457294572946,69.83673578078853],[-77.31257312573125,69.84180151259818],[-77.29097290972909,69.86713017164641],[-77.11817118171182,69.90765602612362],[-77.01377013770137,69.9194760670128],[-76.97776977769777,69.94142757152127],[-77.06777067770678,69.93636183971162],[-77.21537215372153,69.90596744885372],[-77.23697236972369,69.89752456250432],[-77.25857258572586,69.89245883069466],[-77.30537305373053,69.89245883069466],[-77.32337323373234,69.88401594434524],[-77.35577355773557,69.87388448072596],[-77.49257492574925,69.86206443983679],[-77.51057510575106,69.84517866713796],[-77.6329763297633,69.82491573989935],[-77.60417604176041,69.8198500080897],[-77.58977589775897,69.8198500080897],[-77.53577535775358,69.83167004897888],[-77.51777517775177,69.83167004897888],[-77.50337503375033,69.82491573989935],[-77.51777517775177,69.81816143081983],[-77.49977499774998,69.8097185444704],[-77.46017460174602,69.801275658121],[-77.44217442174421,69.7911441945017],[-77.46017460174602,69.7911441945017],[-77.51777517775177,69.79789850358122],[-77.51777517775177,69.772569844533],[-77.54657546575466,69.7539954945643],[-77.58257582575825,69.74386403094499],[-77.61497614976149,69.74217545367512],[-77.64017640176401,69.75737264910404],[-77.65097650976509,69.77932415361252],[-77.66177661776618,69.80465281266078],[-77.68337683376834,69.82491573989935],[-77.6689766897669,69.85531013075723],[-77.67257672576726,69.89921313977419],[-77.68337683376834,69.94311614879115],[-77.69057690576905,69.97013338510928],[-77.69777697776978,69.99377346688763],[-77.69057690576905,70.01741354866598],[-77.6761767617676,70.03936505317446],[-77.6689766897669,70.06131655768294],[-77.6689766897669,70.09002237127095],[-77.6761767617676,70.11197387577943],[-77.69777697776978,70.15418830752648],[-77.68337683376834,70.18289412111449],[-77.70497704977049,70.20146847108319],[-77.74097740977409,70.21497708924227],[-77.77337773377734,70.23355143921097],[-77.79137791377913,70.24874863463992],[-77.79857798577986,70.2504372119098],[-77.80577805778057,70.24874863463992],[-77.82737827378273,70.24368290283027],[-77.8489784897849,70.24537148010015],[-77.87777877778777,70.2605686755291],[-77.89217892178921,70.26394583006885],[-77.93177931779317,70.25719152098932],[-78.01818018180181,70.22848570740132],[-78.05418054180541,70.2217313983218],[-78.06858068580685,70.22510855286154],[-78.12258122581225,70.2504372119098],[-78.15858158581585,70.25550294371945],[-78.19818198181981,70.25719152098932],[-78.19818198181981,70.2504372119098],[-78.18018180181801,70.24537148010015],[-78.15138151381514,70.2318628619411],[-78.1369813698137,70.2301742846712],[-78.13338133381333,70.22510855286154],[-78.14058140581406,70.21666566651214],[-78.14778147781477,70.20653420289284],[-78.15138151381514,70.20146847108319],[-78.21618216182162,70.20484562562297],[-78.24138241382414,70.21328851197237],[-78.23058230582305,70.2301742846712],[-78.2989829898299,70.2217313983218],[-78.30978309783097,70.21835424378202],[-78.32058320583205,70.20484562562297],[-78.33138331383313,70.20146847108319],[-78.34938349383494,70.20484562562297],[-78.3889838898389,70.21666566651214],[-78.40698406984069,70.21666566651214],[-78.40338403384034,70.21835424378202],[-78.39618396183961,70.2301742846712],[-78.42858428584286,70.25719152098932],[-78.4609846098461,70.2791430254978],[-78.54018540185402,70.31291457089546],[-78.52938529385294,70.31460314816533],[-78.50778507785077,70.31798030270511],[-78.49698496984969,70.31798030270511],[-78.48978489784898,70.31966887997498],[-78.4789847898479,70.32980034359429],[-78.47178471784717,70.33148892086416],[-78.42858428584286,70.32980034359429],[-78.40698406984069,70.33148892086416],[-78.3889838898389,70.33824322994369],[-78.48618486184861,70.35512900264251],[-78.53658536585365,70.35681757991242],[-78.57978579785798,70.34499753902324],[-78.5869858698587,70.33824322994369],[-78.57978579785798,70.33486607540394],[-78.55818558185581,70.31798030270511],[-78.58338583385833,70.31460314816533],[-78.66258662586625,70.35344042537264],[-78.65538655386554,70.36019473445216],[-78.6409864098641,70.37370335261124],[-78.63378633786337,70.38045766169077],[-78.68418684186841,70.37876908442087],[-78.69858698586985,70.38214623896064],[-78.74178741787418,70.42773782524748],[-78.74898748987489,70.44124644340653],[-78.74538745387453,70.45644363883548],[-78.77418774187741,70.4547550615656],[-78.83178831788318,70.44631217521618],[-78.86058860588605,70.45644363883548],[-78.87138871388713,70.47501798880418],[-78.88218882188822,70.48177229788374],[-78.8929889298893,70.48008372061383],[-78.89658896588965,70.47332941153431],[-78.90378903789038,70.45644363883548],[-78.90738907389074,70.44800075248608],[-78.8929889298893,70.44293502067643],[-78.88578885788857,70.434492134327],[-78.87858878588786,70.4243606707077],[-78.86778867788678,70.41422920708843],[-78.89658896588965,70.41760636162817],[-78.91818918189182,70.42942640251735],[-78.93978939789397,70.4446235979463],[-78.9649896498965,70.45644363883548],[-78.9829898298983,70.45982079337526],[-79.02619026190261,70.45644363883548],[-79.03339033390334,70.45813221610535],[-79.07299072990729,70.47670656607409],[-79.04779047790477,70.49021518423314],[-79.06219062190621,70.48852660696326],[-79.07659076590765,70.49021518423314],[-79.0909909099091,70.49528091604279],[-79.10179101791017,70.50372380239219],[-79.08379083790838,70.50203522512231],[-79.06939069390694,70.50541237966209],[-79.05139051390513,70.51047811147174],[-79.04059040590406,70.51723242055127],[-79.04779047790477,70.52567530690067],[-79.05859058590586,70.53074103871032],[-79.06939069390694,70.53242961598019],[-79.08019080190802,70.53074103871032],[-79.08019080190802,70.53749534778984],[-78.92538925389253,70.53918392505975],[-78.88218882188822,70.55100396594892],[-78.90378903789038,70.55775827502845],[-78.95778957789578,70.55438112048867],[-78.97218972189721,70.55775827502845],[-78.97578975789757,70.55606969775857],[-78.9829898298983,70.55438112048867],[-78.99018990189902,70.55606969775857],[-78.99738997389973,70.55775827502845],[-78.99738997389973,70.56620116137785],[-78.95778957789578,70.56957831591762],[-78.88218882188822,70.5999727067755],[-78.84258842588426,70.5999727067755],[-78.82818828188282,70.59321839769598],[-78.81738817388174,70.58477551134658],[-78.81018810188101,70.57633262499715],[-78.79938799387993,70.56620116137785],[-78.78138781387814,70.55606969775857],[-78.75978759787597,70.5526925432188],[-78.71658716587166,70.55100396594892],[-78.76338763387633,70.56451258410797],[-78.78498784987849,70.57633262499715],[-78.79938799387993,70.6101041703948],[-78.81738817388174,70.62361278855388],[-78.8389883898839,70.63543282944306],[-78.8569885698857,70.64049856125268],[-78.86418864188641,70.63880998398281],[-78.86778867788678,70.63374425217316],[-78.87498874988749,70.62867852036351],[-78.88578885788857,70.62698994309363],[-78.93618936189361,70.62698994309363],[-78.95778957789578,70.63036709763341],[-78.97938979389794,70.63880998398281],[-78.99378993789938,70.65063002487199],[-79.00459004590046,70.66751579757081],[-78.99738997389973,70.67427010665034],[-79.01539015390154,70.68271299299977],[-79.03339033390334,70.6810244157299],[-79.12339123391233,70.64725287033224],[-79.13779137791377,70.63712140671294],[-79.14859148591485,70.63374425217316],[-79.15579155791558,70.63205567490328],[-79.15939159391594,70.62867852036351],[-79.15579155791558,70.62023563401411],[-79.1269912699127,70.61348132493458],[-79.02259022590225,70.63036709763341],[-79.01179011790117,70.63036709763341],[-79.00459004590046,70.62698994309363],[-79.00459004590046,70.61854705674423],[-79.00819008190082,70.61516990220446],[-79.01539015390154,70.61179274766468],[-79.02259022590225,70.6101041703948],[-79.03339033390334,70.59490697496585],[-79.04059040590406,70.58815266588633],[-79.05139051390513,70.57970977953693],[-79.09819098190981,70.55775827502845],[-79.11259112591125,70.54762681140915],[-79.11619116191162,70.5425610795995],[-79.12339123391233,70.52736388417057],[-79.1269912699127,70.52398672963079],[-79.14139141391414,70.52060957509102],[-79.16299162991629,70.52229815236092],[-79.17739177391773,70.51723242055127],[-79.14139141391414,70.51047811147174],[-79.1449914499145,70.50710095693196],[-79.14859148591485,70.50372380239219],[-79.14859148591485,70.50034664785244],[-79.15579155791558,70.49696949331266],[-79.14859148591485,70.47501798880418],[-79.1449914499145,70.46488652518491],[-79.14859148591485,70.45644363883548],[-79.15939159391594,70.44293502067643],[-79.17379173791737,70.4361807115969],[-79.18819188191881,70.43280355705713],[-79.19899198991989,70.4243606707077],[-79.21339213392133,70.42098351616795],[-79.23139231392314,70.4243606707077],[-79.26379263792637,70.43786928886678],[-79.28539285392854,70.44293502067643],[-79.32859328593285,70.44293502067643],[-79.34659346593466,70.44800075248608],[-79.33579335793358,70.4547550615656],[-79.32499324993249,70.45306648429573],[-79.31779317793178,70.44800075248608],[-79.3069930699307,70.44800075248608],[-79.29259292592926,70.4547550615656],[-79.29619296192962,70.45982079337526],[-79.29979299792997,70.46488652518491],[-79.3069930699307,70.47332941153431],[-79.29619296192962,70.49359233877291],[-79.27459274592745,70.50541237966209],[-79.24579245792458,70.51554384328139],[-79.22419224192241,70.53074103871032],[-79.22779227792277,70.5341181932501],[-79.2349923499235,70.54087250232962],[-79.23859238592385,70.5442496568694],[-79.2349923499235,70.54931538867902],[-79.23139231392314,70.55775827502845],[-79.2529925299253,70.55775827502845],[-79.31419314193141,70.5442496568694],[-79.30339303393033,70.54087250232962],[-79.29619296192962,70.53749534778984],[-79.28539285392854,70.53074103871032],[-79.27819278192781,70.52398672963079],[-79.29619296192962,70.51385526601149],[-79.3069930699307,70.49865807058256],[-79.31779317793178,70.48346087515361],[-79.3429934299343,70.47670656607409],[-79.35739357393574,70.48008372061383],[-79.38979389793897,70.49359233877291],[-79.40779407794078,70.49696949331266],[-79.42579425794257,70.49190376150301],[-79.41859418594186,70.48177229788374],[-79.40419404194041,70.46995225699456],[-79.38979389793897,70.463197947915],[-79.40779407794078,70.43955786613665],[-79.41499414994149,70.43786928886678],[-79.43659436594366,70.44124644340653],[-79.47979479794797,70.45644363883548],[-79.5049950499505,70.46150937064513],[-79.53739537395374,70.4446235979463],[-79.57339573395734,70.4361807115969],[-79.58779587795878,70.42773782524748],[-79.59139591395913,70.41085205254865],[-79.58059580595805,70.39903201165947],[-79.56619566195661,70.39058912531007],[-79.4689946899469,70.37032619807147],[-79.45819458194582,70.36357188899194],[-79.45099450994509,70.35344042537264],[-79.43659436594366,70.35512900264251],[-79.42219422194222,70.36188331172204],[-79.41499414994149,70.36694904353169],[-79.37539375393753,70.37370335261124],[-79.33219332193322,70.3686376208016],[-79.28899288992889,70.35512900264251],[-79.26019260192602,70.33824322994369],[-79.22419224192241,70.32135745724486],[-79.17739177391773,70.31122599362558],[-79.1269912699127,70.30953741635568],[-79.08739087390873,70.31798030270511],[-79.08379083790838,70.34162038448346],[-79.04779047790477,70.34330896175334],[-78.97218972189721,70.32473461178463],[-78.94698946989469,70.31460314816533],[-78.92538925389253,70.30278310727616],[-78.86778867788678,70.25550294371945],[-78.7669876698767,70.19133700746391],[-78.75618756187562,70.18289412111449],[-78.75258752587526,70.17107408022531],[-78.75258752587526,70.1423682666373],[-78.75258752587526,70.13392538028788],[-78.74538745387453,70.12717107120835],[-78.73458734587345,70.11872818485895],[-78.7309873098731,70.1136624530493],[-78.7309873098731,70.10690814396978],[-78.73818738187381,70.09171094854082],[-78.73818738187381,70.08157948492152],[-78.73818738187381,70.07820233038177],[-78.7309873098731,70.07313659857212],[-78.70938709387093,70.06131655768294],[-78.69498694986949,70.05625082587329],[-78.69138691386914,70.05118509406364],[-78.68778687786877,70.04780793952386],[-78.68778687786877,70.04443078498412],[-78.68418684186841,70.04105363044434],[-78.68418684186841,70.03767647590456],[-78.66978669786697,70.02247928047564],[-78.66618666186662,70.01403639412621],[-78.66618666186662,69.99883919869728],[-78.66258662586625,69.9768876941888],[-78.66618666186662,69.9667562305695],[-78.69858698586985,69.93129610790197],[-78.71658716587166,69.92116464428267],[-78.73818738187381,69.91441033520314],[-78.75978759787597,69.90934460339349],[-78.77778777787778,69.90765602612362],[-78.78498784987849,69.90427887158384],[-78.79578795787957,69.88570452161514],[-78.79938799387993,69.87895021253561],[-78.82818828188282,69.87895021253561],[-78.84258842588426,69.88063878980549],[-78.87138871388713,69.89077025342479],[-78.88938889388893,69.89414740796454],[-79.15939159391594,69.88908167615489],[-79.4329943299433,69.88401594434524],[-79.68139681396814,69.8485558216777],[-79.71379713797138,69.86206443983679],[-79.72819728197281,69.87219590345606],[-79.7569975699757,69.88063878980549],[-79.77139771397714,69.88739309888501],[-79.78579785797858,69.89752456250432],[-79.79659796597966,69.92285322155254],[-79.80739807398074,69.93467326244172],[-79.81819818198181,69.94480472606102],[-79.83619836198362,69.95324761241045],[-79.85419854198541,69.96000192148998],[-79.86859868598685,69.96337907602972],[-79.8829988299883,69.9667562305695],[-79.89379893798937,69.9768876941888],[-79.90459904599045,69.98364200326833],[-79.92259922599226,69.98026484872855],[-79.98019980199801,69.95155903514055],[-80.01260012600126,69.94480472606102],[-80.04140041400413,69.95493618968032],[-80.0450004500045,69.9667562305695],[-80.05220052200522,69.97013338510928],[-80.0450004500045,69.98195342599846],[-80.03420034200342,69.9954620441575],[-80.06660066600665,70.00390493050693],[-80.20340203402034,70.01065923958646],[-80.24660246602465,70.00728208504668],[-80.26460264602646,70.00390493050693],[-80.28980289802898,69.99039631234785],[-80.2970029700297,69.98870773507798],[-80.36540365403654,69.99377346688763],[-80.5490054900549,70.04780793952386],[-80.82620826208262,70.05625082587329],[-80.89820898208981,70.07313659857212],[-80.93780937809377,70.07144802130222],[-80.96660966609666,70.0663822894926],[-81.00981009810097,70.06300513495282],[-81.04581045810458,70.06975944403234],[-81.06021060210601,70.0950881030806],[-81.0710107101071,70.09846525762035],[-81.13581135811357,70.0849566394613],[-81.15741157411574,70.08664521673117],[-81.20421204212042,70.09677668035047],[-81.56421564215641,70.10859672123965],[-81.60741607416074,70.12041676212883],[-81.7010170101701,70.13392538028788],[-81.73341733417334,70.13392538028788],[-81.7550175501755,70.13054822574813],[-81.76221762217622,70.1221053393987],[-81.7550175501755,70.11197387577943],[-81.7370173701737,70.0950881030806],[-81.68661686616866,70.074825175842],[-81.5750157501575,70.06807086676247],[-81.53181531815318,70.05118509406364],[-81.45981459814598,70.02416785774551],[-81.45261452614525,70.01741354866598],[-81.4490144901449,70.01065923958646],[-81.44541445414454,70.00559350777681],[-81.4310143101431,70.00390493050693],[-81.39861398613986,70.01065923958646],[-81.33741337413373,70.03767647590456],[-81.30861308613086,70.03429932136481],[-81.19341193411934,70.00052777596716],[-81.16461164611646,69.98364200326833],[-81.15741157411574,69.97351053964903],[-81.14661146611466,69.94987045787067],[-81.13941139411394,69.9380504169815],[-81.1250112501125,69.92960753063207],[-81.08541085410853,69.9194760670128],[-81.0530105301053,69.90259029431397],[-80.98460984609845,69.88739309888501],[-80.82620826208262,69.80296423539087],[-80.77940779407794,69.79283277177157],[-80.76860768607686,69.7827013081523],[-80.77220772207721,69.76919268999322],[-80.77940779407794,69.75568407183417],[-80.79380793807938,69.74724118548474],[-80.83340833408333,69.73373256732569],[-80.93060930609306,69.71515821735699],[-80.95220952209522,69.71515821735699],[-80.96660966609666,69.71853537189673],[-80.97020970209702,69.72528968097629],[-80.96660966609666,69.73035541278591],[-80.95220952209522,69.73542114459556],[-81.08181081810818,69.76750411272334],[-81.12141121411214,69.7911441945017],[-81.15741157411574,69.8198500080897],[-81.17541175411753,69.82829289443913],[-81.22581225812257,69.83335862624878],[-81.27621276212761,69.84517866713796],[-81.30141301413013,69.85362155348736],[-81.3410134101341,69.87557305799584],[-81.35541355413554,69.88063878980549],[-81.3770137701377,69.88570452161514],[-81.44181441814418,69.91441033520314],[-81.48861488614885,69.92623037609232],[-81.55341553415533,69.9279189533622],[-81.57861578615785,69.93298468517185],[-81.5930159301593,69.94311614879115],[-81.5930159301593,69.9566247669502],[-81.56781567815678,69.97013338510928],[-81.60021600216002,69.9768876941888],[-81.72621726217263,69.97013338510928],[-81.75141751417515,69.97351053964903],[-81.90981909819098,70.03767647590456],[-81.9350193501935,70.04105363044434],[-81.94581945819458,70.04443078498412],[-81.94941949419494,70.04780793952386],[-81.95301953019529,70.05118509406364],[-81.95661956619566,70.05456224860339],[-81.96021960219602,70.05793940314317],[-82.11862118621185,70.11703960758905],[-82.1690216902169,70.1221053393987],[-82.19062190621906,70.12717107120835],[-82.23382233822338,70.14574542117705],[-82.25182251822518,70.14743399844696],[-82.28782287822878,70.1423682666373],[-82.30582305823057,70.1423682666373],[-82.33462334623346,70.15925403933613],[-82.35622356223561,70.16431977114578],[-82.44262442624427,70.17276265749518],[-82.46782467824679,70.17951696657471],[-82.48582485824858,70.18458269838436],[-82.50742507425073,70.18964843019401],[-82.55422554225542,70.18627127565426],[-82.57222572225722,70.19133700746391],[-82.60462604626046,70.20991135743262],[-82.84582845828459,70.25719152098932],[-82.92142921429215,70.29096306638698],[-82.96462964629646,70.30278310727616],[-83.00423004230042,70.30953741635568],[-83.04743047430473,70.31291457089546],[-82.86382863828638,70.23692859375075],[-82.84222842228422,70.2318628619411],[-82.8350283502835,70.2301742846712],[-82.83142831428314,70.22510855286154],[-82.82062820628207,70.21159993470249],[-82.81342813428134,70.20822278016271],[-82.79182791827918,70.20484562562297],[-82.74142741427414,70.20991135743262],[-82.71982719827199,70.20822278016271],[-82.66222662226622,70.19133700746391],[-82.24462244622445,70.1136624530493],[-82.12942129421293,70.06975944403234],[-82.05742057420574,70.05962798041304],[-81.9710197101971,70.01065923958646],[-81.96741967419673,70.00559350777681],[-81.9710197101971,70.00052777596716],[-81.96741967419673,69.99715062142738],[-81.95661956619566,69.9954620441575],[-81.94221942219421,69.9954620441575],[-81.9350193501935,69.9954620441575],[-81.89541895418954,69.9751991169189],[-81.87741877418773,69.97013338510928],[-81.77661776617767,69.96337907602972],[-81.7370173701737,69.95155903514055],[-81.71181711817118,69.93467326244172],[-81.76581765817657,69.90765602612362],[-81.76581765817657,69.90090171704406],[-81.75861758617586,69.89752456250432],[-81.74061740617405,69.88739309888501],[-81.74061740617405,69.87895021253561],[-81.75861758617586,69.87557305799584],[-81.8090180901809,69.89245883069466],[-81.83061830618306,69.88739309888501],[-81.85581855818558,69.88739309888501],[-81.85581855818558,69.87895021253561],[-81.85581855818558,69.86544159437653],[-81.96381963819638,69.84517866713796],[-81.97461974619746,69.86881874891631],[-81.99621996219962,69.87726163526571],[-82.0250202502025,69.87388448072596],[-82.04662046620466,69.86544159437653],[-82.07542075420754,69.84180151259818],[-82.08262082620826,69.8384243580584],[-82.1150211502115,69.83504720351866],[-82.12942129421293,69.83167004897888],[-82.14382143821437,69.82491573989935],[-82.12942129421293,69.82322716262948],[-82.12582125821258,69.81816143081983],[-82.1330213302133,69.78945561723182],[-82.13662136621366,69.78607846269205],[-82.25542255422553,69.80634138993065],[-82.30222302223022,69.80465281266078],[-82.30222302223022,69.8114071217403],[-82.29142291422914,69.81309569901018],[-82.28062280622805,69.81478427628005],[-82.26982269822697,69.8198500080897],[-82.2590225902259,69.82491573989935],[-82.2770227702277,69.829981471709],[-82.2950229502295,69.83167004897888],[-82.3130231302313,69.829981471709],[-82.32742327423274,69.82491573989935],[-82.32742327423274,69.83167004897888],[-82.2950229502295,69.83673578078853],[-82.23382233822338,69.82829289443913],[-82.20502205022049,69.83167004897888],[-82.32742327423274,69.85868728529701],[-82.39582395823957,69.86375301710666],[-82.42462424624246,69.8485558216777],[-82.44262442624427,69.84349008986806],[-82.64422644226443,69.89414740796454],[-82.66222662226622,69.90934460339349],[-82.69822698226982,69.92285322155254],[-82.73062730627306,69.92623037609232],[-82.73782737827378,69.91441033520314],[-82.77742777427774,69.9194760670128],[-82.84582845828459,69.94311614879115],[-82.91062910629105,69.95324761241045],[-83.00063000630006,69.98870773507798],[-83.00783007830078,69.99039631234785],[-83.01863018630186,69.98870773507798],[-83.02943029430294,69.98870773507798],[-83.03663036630365,69.99208488961773],[-83.04023040230402,69.99715062142738],[-83.04383043830438,70.00390493050693],[-83.04383043830438,70.00897066231656],[-83.0510305103051,70.01065923958646],[-83.13743137431373,70.00390493050693],[-83.14463144631446,70.00559350777681],[-83.15543155431554,70.01403639412621],[-83.16623166231662,70.01741354866598],[-83.17343173431733,70.01572497139611],[-83.23463234632347,70.00390493050693],[-83.2490324903249,70.00390493050693],[-83.25263252632526,70.01403639412621],[-83.2670326703267,70.01572497139611],[-83.34983349833497,69.98364200326833],[-83.48663486634867,69.97351053964903],[-83.5730357303573,69.95324761241045],[-83.67383673836738,69.9464933033309],[-84.02664026640267,69.97857627145868],[-84.05544055440554,69.98870773507798],[-84.0770407704077,69.9870191578081],[-84.36864368643685,69.9870191578081],[-84.53424534245342,70.01065923958646],[-84.69624696246962,70.00728208504668],[-84.73944739447394,70.02079070320576],[-84.81864818648187,70.03092216682504],[-84.83304833048331,70.03598789863469],[-84.84744847448474,70.04949651679377],[-84.87264872648726,70.07820233038177],[-84.8150481504815,70.08833379400104],[-84.78984789847898,70.10015383489022],[-84.78984789847898,70.1136624530493],[-84.81144811448114,70.11872818485895],[-84.84024840248402,70.11028529850952],[-84.89064890648906,70.08157948492152],[-84.95184951849518,70.0663822894926],[-85.14625146251463,70.0849566394613],[-85.15345153451534,70.08664521673117],[-85.17145171451715,70.09677668035047],[-85.17865178651786,70.09846525762035],[-85.1930519305193,70.09846525762035],[-85.22545225452254,70.09171094854082],[-85.27225272252723,70.0933995258107],[-85.34065340653406,70.10859672123965],[-85.36945369453694,70.10859672123965],[-85.4450544505445,70.09677668035047],[-85.5170551705517,70.10521956669987],[-85.80145801458015,70.10015383489022],[-85.85545855458554,70.09002237127095],[-85.87345873458735,70.07144802130222],[-85.85185851858519,70.04949651679377],[-85.82665826658267,70.04949651679377],[-85.79425794257942,70.05962798041304],[-85.61065610656107,70.07820233038177],[-85.53865538655386,70.06131655768294],[-85.48825488254882,70.05793940314317],[-85.40545405454054,70.03936505317446],[-85.34785347853479,70.03261074409494],[-85.23625236252362,69.9954620441575],[-85.25425254252542,69.98870773507798],[-85.59265592655926,70.01741354866598],[-85.7330573305733,69.9954620441575],[-85.78345783457834,69.9954620441575],[-86.02466024660247,70.05456224860339],[-86.26946269462694,70.1136624530493],[-86.52146521465214,70.2301742846712],[-86.55026550265502,70.23692859375075],[-86.55386553865539,70.24706005737002],[-86.55386553865539,70.27238871641828],[-86.55746557465574,70.30109453000628],[-86.57546575465754,70.31798030270511],[-86.55746557465574,70.32811176632441],[-86.55386553865539,70.34330896175334],[-86.56466564665647,70.35512900264251],[-86.58986589865899,70.35850615718229],[-86.58986589865899,70.36694904353169],[-86.57546575465754,70.37370335261124],[-86.51786517865179,70.41760636162817],[-86.49626496264962,70.42942640251735],[-86.3630636306363,70.45306648429573],[-86.3270632706327,70.463197947915],[-86.29826298262982,70.47670656607409],[-86.29106291062911,70.49359233877291],[-86.31266312663126,70.50710095693196],[-86.34146341463415,70.52060957509102],[-86.37026370263702,70.52736388417057],[-86.39186391863919,70.52398672963079],[-86.35226352263523,70.50203522512231],[-86.33786337863378,70.49021518423314],[-86.37026370263702,70.47670656607409],[-86.38826388263882,70.47164083426443],[-86.40626406264062,70.46995225699456],[-86.40626406264062,70.46488652518491],[-86.40986409864098,70.463197947915],[-86.4710647106471,70.44968932975596],[-86.50346503465035,70.43786928886678],[-86.55746557465574,70.42942640251735],[-86.58266582665826,70.42773782524748],[-86.6330663306633,70.39396627984982],[-86.6330663306633,70.39058912531007],[-86.63666636666366,70.38552339350042],[-86.64026640266403,70.38214623896064],[-86.66546665466655,70.38045766169077],[-86.67266672666726,70.37201477534134],[-86.66546665466655,70.35681757991242],[-86.6510665106651,70.33824322994369],[-86.64026640266403,70.32473461178463],[-86.85986859868598,70.32473461178463],[-86.8850688506885,70.33486607540394],[-86.89946899468994,70.35850615718229],[-86.85986859868598,70.3686376208016],[-86.7770677706777,70.37539192988112],[-86.7410674106741,70.3872119707703],[-86.79146791467915,70.3956548571197],[-86.9030690306903,70.38552339350042],[-86.9390693906939,70.4074748980089],[-86.87066870668707,70.4074748980089],[-86.89226892268923,70.42267209343782],[-86.96786967869679,70.42267209343782],[-86.9930699306993,70.434492134327],[-86.9750697506975,70.44124644340653],[-86.93546935469354,70.44968932975596],[-86.92106921069211,70.45644363883548],[-86.92106921069211,70.463197947915],[-86.9750697506975,70.47332941153431],[-87.03267032670327,70.46826367972466],[-87.1370713707137,70.44124644340653],[-87.13347133471335,70.4159177843583],[-87.16947169471695,70.40409774346912],[-87.24867248672486,70.39396627984982],[-87.24147241472414,70.38214623896064],[-87.2270722707227,70.38045766169077],[-87.20187201872018,70.3872119707703],[-87.04707047070471,70.38383481623052],[-87.0110701107011,70.37370335261124],[-86.9750697506975,70.35344042537264],[-86.98226982269823,70.34162038448346],[-86.98586985869858,70.33148892086416],[-86.98226982269823,70.32135745724486],[-86.96786967869679,70.31798030270511],[-86.9750697506975,70.31460314816533],[-86.98946989469894,70.2977173754665],[-86.98226982269823,70.29602879819663],[-86.97866978669786,70.29265164365685],[-86.9750697506975,70.29096306638698],[-87.00387003870038,70.28252018003758],[-87.4250742507425,70.31460314816533],[-87.48987489874898,70.32811176632441],[-87.78147781477814,70.33148892086416],[-87.78867788677887,70.32811176632441],[-87.79587795877958,70.32135745724486],[-87.79947799477995,70.31460314816533],[-87.79227792277922,70.31291457089546],[-87.6410764107641,70.29940595273641],[-87.61227612276123,70.29096306638698],[-87.61227612276123,70.28420875730745],[-87.7670776707767,70.24874863463992],[-87.85347853478534,70.23861717102062],[-87.93267932679326,70.2504372119098],[-87.93267932679326,70.25212578917967],[-87.9290792907929,70.25550294371945],[-87.92547925479255,70.2605686755291],[-87.92187921879218,70.26394583006885],[-87.93987939879399,70.26732298460863],[-88.02988029880298,70.29434022092676],[-88.14868148681487,70.29940595273641],[-88.19548195481954,70.3162917254352],[-88.24228242282423,70.32473461178463],[-88.26388263882639,70.33148892086416],[-88.22788227882279,70.35006327083286],[-88.21708217082171,70.35344042537264],[-88.19548195481954,70.35344042537264],[-88.19548195481954,70.35006327083286],[-88.19548195481954,70.34162038448346],[-88.19548195481954,70.33824322994369],[-88.16668166681667,70.33486607540394],[-88.08388083880838,70.33824322994369],[-88.06228062280623,70.33486607540394],[-88.00108001080011,70.30447168454603],[-87.97227972279723,70.30109453000628],[-87.93987939879399,70.30278310727616],[-87.87867878678786,70.31798030270511],[-87.90387903879038,70.32811176632441],[-87.95787957879578,70.33486607540394],[-88.14148141481415,70.3956548571197],[-88.33588335883358,70.4260492479776],[-88.40428404284043,70.45137790702583],[-88.41868418684186,70.44968932975596],[-88.42948429484295,70.4446235979463],[-88.44388443884438,70.44124644340653],[-88.69228692286923,70.46488652518491],[-88.76788767887679,70.48346087515361],[-88.90828908289083,70.5442496568694],[-88.92988929889299,70.56113542956822],[-89.00189001890018,70.63374425217316],[-89.00189001890018,70.64218713852259],[-89.00549005490055,70.65063002487199],[-89.00909009090091,70.66076148849129],[-89.02349023490234,70.66751579757081],[-89.0630906309063,70.6810244157299],[-89.07029070290703,70.68609014753955],[-89.07029070290703,70.69284445661907],[-89.07749077490774,70.6995987656986],[-89.08469084690847,70.70297592023834],[-89.09189091890919,70.70297592023834],[-89.13149131491315,70.7181731156673],[-89.17109171091711,70.72661600201673],[-89.29709297092971,70.77727332011321],[-89.33309333093331,70.79922482462166],[-89.36549365493654,70.81948775186027],[-89.41589415894158,70.87858795630615],[-89.44829448294483,70.90729376989415],[-89.42669426694266,70.9224909653231],[-89.40149401494014,70.92586811986288],[-89.37629376293762,70.92586811986288],[-89.32229322293223,70.93937673802193],[-89.20709207092071,70.94275389256171],[-89.20709207092071,70.94950820164124],[-89.21429214292142,70.94950820164124],[-89.21429214292142,70.95626251072076],[-89.19629196291963,70.96132824253041],[-89.1890918909189,70.96301681980029],[-89.20349203492034,70.97483686068946],[-89.2250922509225,70.98327974703889],[-89.32949329493294,71.00354267427747],[-89.46629466294662,71.05588856964386],[-89.48789487894878,71.0592657241836],[-89.50589505895059,71.06433145599325],[-89.53829538295382,71.08628296050173],[-89.55629556295563,71.09303726958126],[-89.22869228692286,71.0778400741523],[-89.20709207092071,71.06602003326313],[-89.21429214292142,71.06264287872338],[-89.21789217892179,71.05757714691373],[-89.22149221492215,71.05251141510408],[-89.17469174691746,71.03731421967512],[-89.1530915309153,71.03393706513538],[-89.12789127891278,71.03224848786547],[-88.91908919089191,71.05251141510408],[-88.9010890108901,71.0508228378342],[-88.86868868688687,71.04237995148478],[-88.83988839888399,71.03731421967512],[-88.80748807488075,71.03900279694503],[-88.74988749887498,71.0491342605643],[-88.64188641886419,71.05419999237395],[-88.62028620286202,71.05251141510408],[-88.57348573485734,71.03900279694503],[-88.45828458284582,71.03562564240525],[-88.41148411484114,71.02718275605585],[-88.37188371883718,71.01029698335702],[-88.36468364683647,71.0018540970076],[-88.3610836108361,70.98159116976899],[-88.35388353883539,70.97314828341959],[-88.3430834308343,70.96301681980029],[-88.3250832508325,70.95795108799064],[-87.8930789307893,70.93599958348216],[-87.81387813878139,70.95288535618099],[-87.7850778507785,70.95626251072076],[-87.72387723877239,70.95457393345089],[-87.70947709477095,70.95963966526054],[-87.68787687876879,70.96132824253041],[-87.62667626676266,70.95795108799064],[-87.58707587075871,70.94781962437136],[-87.52947529475294,70.95626251072076],[-87.36027360273603,70.94950820164124],[-87.37827378273782,70.94950820164124],[-87.36027360273603,70.94950820164124],[-87.34587345873459,70.95795108799064],[-87.32787327873278,70.98665690157864],[-87.30627306273063,71.0018540970076],[-87.2810728107281,71.00860840608712],[-87.2270722707227,71.01029698335702],[-87.05787057870579,70.99003405611842],[-87.0290702907029,70.99003405611842],[-87.00387003870038,70.99678836519794],[-87.05067050670506,71.01029698335702],[-87.33147331473315,71.03900279694503],[-87.33147331473315,71.04406852875465],[-87.33147331473315,71.0491342605643],[-87.33867338673386,71.05251141510408],[-87.34587345873459,71.0508228378342],[-87.36747367473674,71.04575710602455],[-87.37107371073711,71.04575710602455],[-87.39267392673926,71.0491342605643],[-87.40347403474034,71.05588856964386],[-87.41427414274142,71.06433145599325],[-87.4250742507425,71.07277434234268],[-87.50427504275042,71.07952865142221],[-87.5150751507515,71.08290580596196],[-87.54027540275402,71.09472584685113],[-87.65187651876518,71.11836592862952],[-87.68067680676806,71.12005450589939],[-87.69147691476914,71.12680881497892],[-87.74907749077491,71.14031743313797],[-87.83907839078391,71.1859090194248],[-87.84987849878499,71.19435190577423],[-87.85347853478534,71.20279479212363],[-87.82827828278282,71.22136914209236],[-87.82467824678247,71.23150060571163],[-87.83187831878318,71.23994349206106],[-87.84627846278462,71.24332064660084],[-87.82467824678247,71.25514068749001],[-87.81747817478174,71.25682926475989],[-87.86427864278643,71.27540361472859],[-87.92187921879218,71.27033788291894],[-88.02268022680227,71.23656633752128],[-88.06588065880659,71.21292625574293],[-88.08028080280802,71.20954910120318],[-88.10548105481054,71.21292625574293],[-88.1810818108181,71.22981202844176],[-88.51228512285122,71.24669780114058],[-88.61668616686167,71.23656633752128],[-89.01629016290163,71.26696072837919],[-89.41589415894158,71.29904369650694],[-89.81189811898119,71.32943808736485],[-89.85149851498515,71.33956955098412],[-89.88029880298802,71.35138959187333],[-89.89829898298983,71.3632096327625],[-89.91269912699127,71.37840682819143],[-89.92349923499235,71.40035833269991],[-89.93069930699306,71.40711264177943],[-89.95229952299523,71.41048979631921],[-89.96309963099631,71.41555552812886],[-89.96669966699666,71.41893268266861],[-89.96669966699666,71.42568699174817],[-89.9810998109981,71.44594991898674],[-89.98829988299883,71.45101565079639],[-90.00270002700027,71.45608138260604],[-89.99549995499954,71.46621284622535],[-89.99189991899918,71.46790142349522],[-89.9810998109981,71.4695900007651],[-89.98829988299883,71.49491865981335],[-89.99189991899918,71.50673870070253],[-90.00990009900099,71.51687016432183],[-89.97389973899739,71.5185587415917],[-89.95589955899558,71.52362447340136],[-89.95949959499595,71.53544451429053],[-89.98829988299883,71.56583890514841],[-89.99189991899918,71.57597036876771],[-90.0351003510035,71.58610183238702],[-90.04590045900459,71.59623329600632],[-90.03870038700387,71.60467618235572],[-89.99549995499954,71.60974191416537],[-89.98829988299883,71.6164962232449],[-89.99189991899918,71.62325053232442],[-90.00270002700027,71.63000484140397],[-90.00270002700027,71.6350705732136],[-89.97749977499775,71.65871065499198],[-89.90189901899019,71.68066215950043],[-89.87309873098731,71.70261366400891],[-89.88029880298802,71.70936797308843],[-89.83349833498335,71.72287659124751],[-89.8190981909819,71.73300805486681],[-89.83349833498335,71.74313951848609],[-89.83349833498335,71.75158240483552],[-89.82269822698227,71.75158240483552],[-89.79749797497975,71.75833671391504],[-89.79749797497975,71.76509102299457],[-89.82989829898298,71.76677960026447],[-89.85869858698587,71.77522248661387],[-89.91269912699127,71.79886256839222],[-89.90549905499054,71.80055114566213],[-89.88029880298802,71.8123711865513],[-89.89829898298983,71.81912549563083],[-89.93789937899379,71.81743691836093],[-89.95229952299523,71.82250265017058],[-89.95949959499595,71.83263411378988],[-89.95589955899558,71.84107700013931],[-89.95589955899558,71.84783130921883],[-89.95589955899558,71.85289704102848],[-89.96669966699666,71.85965135010801],[-90.00270002700027,71.86809423645741],[-90.00990009900099,71.87822570007671],[-90.01350013500135,71.89004574096589],[-90.02430024300243,71.89342289550567],[-90.03870038700387,71.89511147277554],[-90.10350103501035,71.91706297728402],[-90.11790117901178,71.9288830181732],[-90.09990099900999,71.94576879087202],[-90.08910089100891,71.9491459454118],[-90.07830078300783,71.95083452268167],[-90.05670056700566,71.9491459454118],[-90.05310053100531,71.95083452268167],[-90.04950049500495,71.95421167722145],[-90.04950049500495,71.95927740903107],[-90.04590045900459,71.96265456357085],[-90.00990009900099,71.98460606807933],[-89.99549995499954,71.98967179988898],[-90.00630006300062,72.00655757258781],[-90.00990009900099,72.01162330439746],[-89.99549995499954,72.01837761347699],[-90.00270002700027,72.02513192255651],[-89.97029970299702,72.03864054071556],[-89.99909999099991,72.06565777703369],[-89.99189991899918,72.07241208611322],[-89.76149761497615,72.1247579814796],[-89.73629736297363,72.12813513601935],[-89.71469714697146,72.1230694042097],[-89.6930969309693,72.1146265178603],[-89.67149671496715,72.1129379405904],[-89.65349653496534,72.12813513601935],[-89.6570965709657,72.13995517690853],[-89.59949599495995,72.1517752177977],[-89.57789577895778,72.16190668141701],[-89.58509585095851,72.17879245411584],[-89.61749617496174,72.18554676319536],[-89.68229682296823,72.18216960865561],[-89.67509675096751,72.18216960865561],[-89.77229772297723,72.16190668141701],[-89.79389793897938,72.16359525868688],[-89.83349833498335,72.17879245411584],[-89.90189901899019,72.18892391773514],[-89.90189901899019,72.19567822681466],[-89.89829898298983,72.21087542224362],[-89.90189901899019,72.21762973132314],[-89.91269912699127,72.2311383494822],[-89.92709927099271,72.2412698131015],[-89.96309963099631,72.25815558580032],[-89.93789937899379,72.26490989487985],[-89.93429934299343,72.2699756266895],[-89.95229952299523,72.30712432662693],[-89.95589955899558,72.31219005843656],[-89.95229952299523,72.33414156294504],[-89.93789937899379,72.34765018110411],[-89.90549905499054,72.37129026288247],[-89.8910989109891,72.378044571962],[-89.85149851498515,72.38648745831142],[-89.83709837098371,72.39493034466082],[-89.83349833498335,72.40337323101025],[-89.83349833498335,72.40506180828012],[-89.84069840698406,72.40506180828012],[-89.89829898298983,72.4168818491693],[-89.91269912699127,72.4253247355187],[-89.90189901899019,72.44221050821753],[-89.89829898298983,72.43883335367778],[-89.88749887498875,72.42870189005848],[-89.88029880298802,72.4270133127886],[-89.84789847898479,72.42363615824883],[-89.78669786697867,72.42363615824883],[-89.7830978309783,72.42870189005848],[-89.86949869498694,72.43039046732835],[-89.88389883898839,72.43207904459825],[-89.88749887498875,72.44052193094765],[-89.88749887498875,72.44896481729708],[-89.87309873098731,72.4540305491067],[-89.81549815498154,72.45909628091636],[-89.80109801098011,72.46585058999591],[-89.79029790297902,72.47429347634531],[-89.7830978309783,72.48442493996461],[-89.77589775897759,72.50806502174296],[-89.77229772297723,72.52157363990202],[-89.77229772297723,72.52832794898154],[-89.7830978309783,72.53845941260084],[-89.78669786697867,72.55027945349002],[-89.78669786697867,72.5620994943792],[-89.7830978309783,72.5739195352684],[-89.75429754297542,72.6110682352058],[-89.73629736297363,72.62119969882511],[-89.71109711097111,72.62964258517451],[-89.68229682296823,72.63301973971429],[-89.66069660696607,72.63470831698416],[-89.61389613896138,72.62119969882511],[-89.58869588695886,72.61613396701546],[-89.5670956709567,72.62457685336486],[-89.54909549095491,72.63977404879381],[-89.54909549095491,72.64821693514324],[-89.56349563495634,72.66172555330229],[-89.54549545495455,72.66847986238182],[-89.49149491494914,72.66341413057216],[-89.46989469894699,72.66847986238182],[-89.49869498694987,72.68536563508064],[-89.5670956709567,72.7005628305096],[-89.58509585095851,72.72420291228795],[-89.57789577895778,72.73264579863735],[-89.57069570695707,72.74446583952655],[-89.56349563495634,72.75628588041573],[-89.55269552695526,72.76472876676513],[-89.57069570695707,72.78499169400374],[-89.57789577895778,72.79174600308326],[-89.55989559895599,72.78836884854348],[-89.50229502295022,72.78499169400374],[-89.48429484294843,72.78161453946396],[-89.42669426694266,72.76472876676513],[-89.40869408694087,72.76304018949526],[-89.36549365493654,72.766417344035],[-89.34389343893439,72.76472876676513],[-89.31149311493115,72.75459730314583],[-89.29349293492935,72.75290872587595],[-89.27549275492754,72.7579744576856],[-89.28269282692827,72.76304018949526],[-89.28989289892898,72.77823738492418],[-89.2790927909279,72.77992596219408],[-89.26829268292683,72.78330311673383],[-89.26109261092611,72.78668027127361],[-89.25029250292502,72.79174600308326],[-89.27189271892719,72.79343458035314],[-89.33309333093331,72.80525462124231],[-89.37269372693727,72.80694319851219],[-89.39429394293943,72.81200893032184],[-89.41229412294122,72.82382897121101],[-89.41229412294122,72.83058328029057],[-89.40869408694087,72.8373375893701],[-89.40149401494014,72.84071474390984],[-89.39429394293943,72.8474690529894],[-89.37989379893799,72.85928909387857],[-89.37989379893799,72.86097767114845],[-89.33669336693367,72.87279771203762],[-89.32229322293223,72.88292917565693],[-89.33309333093331,72.8947492165461],[-89.30429304293042,72.90994641197506],[-89.29709297092971,72.92007787559433],[-89.29709297092971,72.93696364829316],[-89.30789307893079,72.94709511191246],[-89.34029340293402,72.95891515280164],[-89.35469354693547,72.96735803915107],[-89.3618936189362,72.98086665731012],[-89.35469354693547,72.9926866981993],[-89.34029340293402,73.00450673908847],[-89.32589325893258,73.011261048168],[-89.30069300693006,73.01801535724755],[-89.2790927909279,73.0230810890572],[-89.25389253892538,73.0230810890572],[-89.22869228692286,73.01970393451742],[-89.23229232292323,73.01463820270777],[-89.23589235892359,73.0129496254379],[-89.2430924309243,73.011261048168],[-89.2250922509225,73.00957247089812],[-89.21429214292142,73.0129496254379],[-89.21789217892179,73.01970393451742],[-89.23589235892359,73.02814682086682],[-89.31149311493115,73.04672117083555],[-89.30429304293042,73.04672117083555],[-89.31149311493115,73.0517869026452],[-89.30069300693006,73.06191836626448],[-89.27549275492754,73.07204982988378],[-89.26469264692646,73.08049271623321],[-89.25749257492575,73.08724702531273],[-89.25029250292502,73.10582137528144],[-89.2430924309243,73.11426426163086],[-89.21789217892179,73.13115003432969],[-89.1890918909189,73.13959292067909],[-89.12429124291242,73.14803580702849],[-89.13869138691386,73.14803580702849],[-89.18189181891819,73.15479011610805],[-89.17469174691746,73.16661015699722],[-89.16029160291603,73.1784301978864],[-89.14589145891459,73.1868730842358],[-89.11349113491134,73.19193881604545],[-89.10629106291063,73.1970045478551],[-89.10269102691026,73.20375885693463],[-89.09189091890919,73.21051316601415],[-89.04149041490415,73.21895605236358],[-88.9370893708937,73.20882458874428],[-88.88668886688866,73.2172674750937],[-88.90828908289083,73.2257103614431],[-88.95868958689587,73.22233320690336],[-88.98028980289803,73.2257103614431],[-89.03429034290343,73.24090755687206],[-89.05229052290522,73.25103902049136],[-88.96228962289622,73.28987629769864],[-88.91548915489155,73.30169633858785],[-88.86148861488614,73.30676207039747],[-88.85068850688506,73.30338491585772],[-88.83268832688327,73.29494202950829],[-88.82188821888218,73.29325345223842],[-88.74988749887498,73.29325345223842],[-88.6490864908649,73.28143341134924],[-88.62028620286202,73.28649914315889],[-88.6490864908649,73.2966306067782],[-88.83268832688327,73.3236478430963],[-88.85788857888579,73.3337793067156],[-88.84348843488435,73.34728792487468],[-88.78228782287823,73.36586227484338],[-88.76068760687606,73.37768231573256],[-88.72468724687246,73.40301097478078],[-88.68868688686887,73.42327390201939],[-88.58788587885878,73.45366829287727],[-88.51948519485194,73.4604226019568],[-88.49788497884978,73.46717691103635],[-88.4870848708487,73.47393122011587],[-88.4870848708487,73.4806855291954],[-88.47988479884799,73.4891284155448],[-88.47268472684726,73.49588272462435],[-88.45468454684547,73.50263703370388],[-88.41508415084151,73.52627711548223],[-87.99387993879938,73.6562975652632],[-87.85347853478534,73.68331480158133],[-87.76347763477635,73.71708634697899],[-87.58707587075871,73.73734927421756],[-87.43587435874359,73.76605508780557],[-87.2990729907299,73.77112081961522],[-87.13347133471335,73.803203787743],[-86.87786877868778,73.81840098317193],[-86.71586715867159,73.84710679675993],[-86.55746557465574,73.85554968310936],[-86.37386373863738,73.84710679675993],[-86.01746017460174,73.85554968310936],[-85.74745747457474,73.831909601331],[-85.27225272252723,73.81840098317193],[-85.23985239852398,73.82684386952135],[-85.21825218252182,73.82008956044183],[-85.10665106651066,73.8116466740924],[-84.88344883448835,73.74748073783687],[-84.83664836648366,73.74579216056699],[-84.8510485104851,73.73903785148744],[-84.87624876248762,73.71033203789943],[-84.8870488704887,73.70526630608978],[-84.91224912249122,73.69513484247051],[-84.95184951849518,73.66811760615238],[-85.2110521105211,73.59719736081729],[-85.47385473854739,73.52627711548223],[-85.5530555305553,73.5195228064027],[-85.57825578255782,73.51276849732318],[-85.66465664656646,73.45704544741704],[-85.74025740257402,73.44353682925797],[-86.03186031860318,73.30169633858785],[-86.12906129061291,73.23246467052263],[-86.2190621906219,73.14803580702849],[-86.24786247862478,73.12946145705979],[-86.29106291062911,73.11595283890074],[-86.29466294662946,73.10413279801156],[-86.28746287462874,73.09231275712239],[-86.28386283862838,73.08724702531273],[-86.29106291062911,73.07711556169343],[-86.30186301863019,73.0703612526139],[-86.33066330663306,73.0602297889946],[-86.33066330663306,73.04503259356565],[-86.38466384663846,73.01970393451742],[-86.40626406264062,73.00450673908847],[-86.4710647106471,72.95891515280164],[-86.61146611466114,72.89306063927623],[-86.67266672666726,72.8474690529894],[-86.69426694266943,72.82551754848092],[-86.69786697866978,72.81538608486161],[-86.70866708667086,72.76979449857478],[-86.71226712267122,72.76135161222535],[-86.73026730267303,72.74277726225665],[-86.73746737467374,72.73095722136748],[-86.73386733867338,72.71744860320842],[-86.67986679866799,72.68367705781077],[-86.70506705067051,72.66847986238182],[-86.67986679866799,72.64652835787334],[-86.3270632706327,72.50299928993331],[-86.26586265862659,72.46585058999591],[-86.24066240662407,72.42194758097895],[-86.2550625506255,72.39493034466082],[-86.28026280262802,72.378044571962],[-86.3090630906309,72.36622453107282],[-86.33426334263342,72.35102733564386],[-86.35586355863558,72.33414156294504],[-86.40266402664027,72.30543574935703],[-86.42426424264242,72.2885499766582],[-86.43146431464314,72.27672993576903],[-86.4350643506435,72.26828704941963],[-86.43866438664386,72.24464696764127],[-86.46026460264602,72.20412111316406],[-86.45666456664566,72.19230107227489],[-86.43866438664386,72.17710387684596],[-86.4350643506435,72.16866099049653],[-86.44586445864458,72.12813513601935],[-86.43866438664386,72.1129379405904],[-86.4350643506435,72.09942932243135],[-86.4350643506435,72.07241208611322],[-86.43146431464314,72.05890346795417],[-86.42066420664206,72.03188623163604],[-86.42066420664206,72.02175476801673],[-86.40986409864098,72.00655757258781],[-86.3810638106381,71.99811468623838],[-86.35226352263523,71.99473753169863],[-86.33426334263342,71.9862946453492],[-86.33066330663306,71.9761631817299],[-86.33066330663306,71.96434314084073],[-86.3270632706327,71.95083452268167],[-86.3090630906309,71.93563732725272],[-86.2550625506255,71.90524293639484],[-86.24066240662407,71.89342289550567],[-86.19026190261903,71.84107700013931],[-86.12906129061291,71.79379683658257],[-86.1110611106111,71.7836653729633],[-86.08946089460895,71.77859964115365],[-86.04266042660426,71.773533909344],[-86.02826028260283,71.76509102299457],[-86.01026010260102,71.75158240483552],[-85.96345963459635,71.73976236394634],[-85.94185941859418,71.72625374578726],[-85.92745927459275,71.71274512762821],[-85.84825848258482,71.67053069588115],[-85.8230582305823,71.66208780953173],[-85.79425794257942,71.65702207772208],[-85.7690576905769,71.6553335004522],[-85.75825758257582,71.65195634591242],[-85.72585725857259,71.63844772775337],[-85.72585725857259,71.62493910959432],[-85.72585725857259,71.61818480051477],[-85.72225722257222,71.61311906870515],[-85.67545675456755,71.59116756419667],[-85.57465574655747,71.56583890514841],[-85.52785527855278,71.54557597790983],[-85.5170551705517,71.53544451429053],[-85.50625506255062,71.52362447340136],[-85.49545495454954,71.51518158705193],[-85.4810548105481,71.51011585524228],[-85.4270542705427,71.51687016432183],[-85.41625416254162,71.51518158705193],[-85.41265412654126,71.5084272779724],[-85.41625416254162,71.50167296889288],[-85.41265412654126,71.49660723708323],[-85.3910539105391,71.48816435073383],[-85.37305373053731,71.48816435073383],[-85.32985329853298,71.4898529280037],[-85.3190531905319,71.48647577346392],[-85.3010530105301,71.47296715530487],[-85.28665286652866,71.4695900007651],[-85.24705247052471,71.4695900007651],[-85.22545225452254,71.46790142349522],[-85.20745207452075,71.46283569168557],[-85.20385203852038,71.45945853714582],[-85.20385203852038,71.45608138260604],[-85.20385203852038,71.45270422806627],[-85.20025200252002,71.44932707352652],[-85.18585185851857,71.44426134171687],[-85.02385023850238,71.44088418717709],[-84.95904959049591,71.42906414628791],[-84.94824948249482,71.42399841447826],[-84.93384933849339,71.41386695085899],[-84.9230492304923,71.40373548723969],[-84.91944919449195,71.3902268690806],[-84.9230492304923,71.38009540546133],[-84.9410494104941,71.36827536457213],[-84.94464944649447,71.35645532368295],[-84.94464944649447,71.34463528279377],[-84.93744937449374,71.3429467055239],[-84.9230492304923,71.34463528279377],[-84.9050490504905,71.34632386006368],[-84.8870488704887,71.3429467055239],[-84.87264872648726,71.33619239644437],[-84.85464854648546,71.31592946920577],[-84.83664836648366,71.28722365561777],[-84.85824858248583,71.27540361472859],[-85.1930519305193,71.29904369650694],[-85.27585275852758,71.28553507834789],[-85.25425254252542,71.27033788291894],[-85.2290522905229,71.27033788291894],[-85.17145171451715,71.27709219199846],[-85.17145171451715,71.27033788291894],[-85.20385203852038,71.26527215110929],[-85.2650526505265,71.24838637841046],[-85.29745297452975,71.24332064660084],[-85.41625416254162,71.25345211022011],[-85.45225452254522,71.24332064660084],[-85.47025470254702,71.22981202844176],[-85.45225452254522,71.22812345117188],[-85.41625416254162,71.22981202844176],[-85.39465394653946,71.22643487390201],[-85.3910539105391,71.20786052393328],[-85.40545405454054,71.19772906031397],[-85.4270542705427,71.19435190577423],[-85.43425434254343,71.20279479212363],[-85.45585455854558,71.21123767847305],[-85.47025470254702,71.20954910120318],[-85.48465484654847,71.20110621485375],[-85.49905499054991,71.1859090194248],[-85.5170551705517,71.17915471034527],[-85.54225542255422,71.18084328761518],[-85.70065700657007,71.20954910120318],[-85.72585725857259,71.20786052393328],[-85.79425794257942,71.18928617396458],[-85.83745837458375,71.18928617396458],[-85.88065880658806,71.1774661330754],[-85.91305913059131,71.18253186488505],[-85.94545945459454,71.18084328761518],[-85.97425974259743,71.17577755580552],[-85.98865988659887,71.16395751491635],[-86.01746017460174,71.14538316494762],[-86.16506165061651,71.10654588774031],[-86.21546215462155,71.09979157866078],[-86.21186211862118,71.09472584685113],[-86.20826208262082,71.08290580596196],[-86.20826208262082,71.0778400741523],[-86.3090630906309,71.05588856964386],[-86.3450634506345,71.05251141510408],[-86.38466384663846,71.05419999237395],[-86.3990639906399,71.05251141510408],[-86.40266402664027,71.0491342605643],[-86.41346413464134,71.0406913742149],[-86.42066420664206,71.03731421967512],[-86.49626496264962,71.03731421967512],[-86.80226802268022,71.00016551973772],[-86.81666816668167,70.99003405611842],[-86.82386823868238,70.99003405611842],[-86.66186661866618,70.97652543795937],[-86.28386283862838,71.00691982881725],[-86.2550625506255,71.01536271516665],[-86.22266222662226,71.0204284469763],[-86.19746197461974,71.03393706513538],[-86.16506165061651,71.0406913742149],[-86.12186121861218,71.05588856964386],[-85.88425884258842,71.10485731047044],[-85.81945819458194,71.14200601040787],[-85.7690576905769,71.1487603194874],[-85.54585545855458,71.15551462856692],[-85.52785527855278,71.1588917831067],[-85.50265502655026,71.17071182399587],[-85.48465484654847,71.17577755580552],[-85.1930519305193,71.15382605129705],[-85.19665196651967,71.15044889675727],[-85.19665196651967,71.1487603194874],[-85.20025200252002,71.14707174221752],[-85.18225182251823,71.14031743313797],[-85.16785167851678,71.14369458767774],[-85.1570515705157,71.15044889675727],[-85.14625146251463,71.15382605129705],[-85.08865088650886,71.15382605129705],[-85.11025110251101,71.16564609218622],[-85.1210512105121,71.17240040126575],[-85.12465124651246,71.18253186488505],[-85.0130501305013,71.16226893764645],[-84.98784987849878,71.1673346694561],[-85.0130501305013,71.17915471034527],[-85.02745027450274,71.18253186488505],[-85.04185041850418,71.18253186488505],[-85.04185041850418,71.18928617396458],[-84.97344973449734,71.1960404830441],[-84.95184951849518,71.19266332850435],[-84.92664926649266,71.17577755580552],[-84.91224912249122,71.17408897853562],[-84.89784897848978,71.17915471034527],[-84.8870488704887,71.1774661330754],[-84.8690486904869,71.17071182399587],[-84.85824858248583,71.1588917831067],[-84.8510485104851,71.15044889675727],[-84.85464854648546,71.14031743313797],[-84.86544865448654,71.12174308316926],[-84.87264872648726,71.11330019681986],[-84.87624876248762,71.0778400741523],[-84.87624876248762,71.07277434234268],[-84.89424894248943,71.07446291961256],[-84.95904959049591,71.10316873320056],[-84.98064980649806,71.10823446501021],[-85.14625146251463,71.09303726958126],[-85.14625146251463,71.08628296050173],[-84.95904959049591,71.0778400741523],[-84.96624966249662,71.06602003326313],[-84.97344973449734,71.05588856964386],[-84.98424984249843,71.05251141510408],[-84.9950499504995,71.0592657241836],[-85.00225002250022,71.05588856964386],[-85.00945009450095,71.05251141510408],[-85.00585005850058,71.04237995148478],[-85.00945009450095,71.03224848786547],[-84.97344973449734,71.0305599105956],[-84.94464944649447,71.01873986970642],[-84.93024930249302,71.00016551973772],[-84.93744937449374,70.97652543795937],[-84.95184951849518,70.96808255160994],[-84.96624966249662,70.96132824253041],[-84.9770497704977,70.95119677891111],[-84.98064980649806,70.93599958348216],[-84.96624966249662,70.92417954259298],[-84.94464944649447,70.9224909653231],[-84.9050490504905,70.92755669713276],[-84.80064800648006,70.92755669713276],[-84.7970479704797,70.93262242894241],[-84.79344793447935,70.94444246983159],[-84.78624786247862,70.95795108799064],[-84.7790477904779,70.96301681980029],[-84.7610476104761,70.96639397434006],[-84.75384753847538,70.97652543795937],[-84.75384753847538,71.00016551973772],[-84.7610476104761,71.0119855606269],[-84.7790477904779,71.01873986970642],[-84.78624786247862,71.02380560151607],[-84.77544775447754,71.03731421967512],[-84.81144811448114,71.05588856964386],[-84.82224822248222,71.06602003326313],[-84.82944829448294,71.08628296050173],[-84.82584825848258,71.09979157866078],[-84.80784807848079,71.12849739224879],[-84.80424804248042,71.14031743313797],[-84.80064800648006,71.17408897853562],[-84.7970479704797,71.18422044215492],[-84.78264782647827,71.1960404830441],[-84.75384753847538,71.20448336939353],[-84.69264692646927,71.21292625574293],[-84.66384663846638,71.22305771936223],[-84.75744757447575,71.25851784202976],[-84.7970479704797,71.28722365561777],[-84.78984789847898,71.31930662374555],[-84.75744757447575,71.36827536457213],[-84.73944739447394,71.38009540546133],[-84.7610476104761,71.40711264177943],[-84.73944739447394,71.42399841447826],[-84.69984699846998,71.43244130082769],[-84.59184591845919,71.43919560990722],[-84.54864548645486,71.44932707352652],[-84.5270452704527,71.47296715530487],[-84.53424534245342,71.49323008254345],[-84.55584555845559,71.53544451429053],[-84.5630456304563,71.55570744152911],[-84.57744577445774,71.56246175060866],[-84.61344613446134,71.56921605968819],[-84.64584645846458,71.58441325511711],[-84.65664656646567,71.61311906870515],[-84.64584645846458,71.62325053232442],[-84.60264602646026,71.64857919137268],[-84.62064620646206,71.6654649640715],[-84.63144631446315,71.67221927315103],[-84.64584645846458,71.6755964276908],[-84.71424714247142,71.68235073677033],[-84.87264872648726,71.6755964276908],[-84.86544865448654,71.66715354134138],[-84.86184861848618,71.66039923226185],[-84.85464854648546,71.65702207772208],[-84.84384843848439,71.6553335004522],[-84.85464854648546,71.64013630502325],[-84.8690486904869,71.63338199594372],[-84.89064890648906,71.63338199594372],[-85.25785257852579,71.66884211861125],[-85.32625326253262,71.68572789131008],[-85.45585455854558,71.75833671391504],[-85.52785527855278,71.7718453320741],[-85.52065520655206,71.77859964115365],[-85.53865538655386,71.7836653729633],[-85.56745567455674,71.78535395023317],[-85.58185581855818,71.7921082593127],[-85.45225452254522,71.802239722932],[-85.44145441454414,71.80561687747175],[-85.43785437854378,71.81405976382118],[-85.44865448654487,71.82925695925013],[-85.4630546305463,71.8393884228694],[-85.49185491854918,71.85120846375858],[-85.54945549455495,71.88666858642614],[-85.56385563855638,71.89342289550567],[-85.55665556655566,71.90186578185507],[-85.57465574655747,71.90693151366472],[-85.65025650256503,71.9204401318238],[-85.74745747457474,71.9491459454118],[-86.0210602106021,71.98460606807933],[-86.04266042660426,71.99473753169863],[-86.04986049860499,72.00655757258781],[-86.04986049860499,72.01500045893721],[-86.04626046260462,72.01837761347699],[-86.03186031860318,72.01668903620711],[-86.02466024660247,72.01500045893721],[-86.0210602106021,72.00824614985768],[-86.01386013860139,71.99811468623838],[-85.99585995859958,71.98967179988898],[-85.97785977859779,71.98460606807933],[-85.95985959859598,71.98291749080946],[-85.9670596705967,71.99473753169863],[-85.98145981459814,72.00318041804803],[-85.98865988659887,72.0048689953179],[-85.9850598505985,72.01668903620711],[-85.9850598505985,72.02175476801673],[-85.98865988659887,72.03188623163604],[-85.97065970659706,72.03019765436616],[-85.95265952659527,72.02850907709629],[-85.93825938259383,72.02682049982639],[-85.92025920259202,72.03188623163604],[-85.92745927459275,72.03188623163604],[-85.87345873458735,72.03188623163604],[-85.72225722257222,72.01162330439746],[-85.73665736657367,72.02175476801673],[-85.77265772657726,72.02682049982639],[-85.78345783457834,72.03864054071556],[-85.74025740257402,72.05214915887464],[-85.61425614256142,72.05890346795417],[-85.5710557105571,72.05721489068429],[-85.55665556655566,72.06059204522404],[-85.50985509855099,72.07747781792287],[-85.49905499054991,72.07916639519277],[-85.49545495454954,72.0859207042723],[-85.50985509855099,72.09942932243135],[-85.54225542255422,72.12138082693983],[-85.54225542255422,72.12813513601935],[-85.46665466654666,72.12813513601935],[-85.43425434254343,72.13657802236878],[-85.41625416254162,72.13826659963865],[-85.39825398253983,72.13488944509888],[-85.41265412654126,72.15008664052783],[-85.4450544505445,72.16359525868688],[-85.47745477454774,72.17372672230618],[-85.50985509855099,72.17541529957606],[-85.49905499054991,72.19736680408454],[-85.50265502655026,72.21425257678337],[-85.51345513455134,72.22776119494245],[-85.54225542255422,72.23620408129185],[-85.51345513455134,72.23958123583162],[-85.45225452254522,72.22100688586289],[-85.41985419854198,72.21762973132314],[-85.43425434254343,72.23451550402197],[-85.45225452254522,72.24464696764127],[-85.47745477454774,72.2497126994509],[-85.50265502655026,72.2514012767208],[-85.47745477454774,72.26659847214972],[-85.43785437854378,72.26490989487985],[-85.36225362253622,72.2514012767208],[-85.34425344253442,72.2514012767208],[-85.29745297452975,72.26490989487985],[-85.27585275852758,72.26322131760998],[-85.23985239852398,72.25646700853045],[-85.22185221852219,72.25815558580032],[-85.23985239852398,72.2514012767208],[-85.23265232652327,72.23789265856172],[-85.21825218252182,72.23620408129185],[-85.20025200252002,72.23958123583162],[-85.18585185851857,72.24464696764127],[-85.18585185851857,72.2514012767208],[-85.1930519305193,72.2514012767208],[-85.18225182251823,72.2598441630702],[-85.16065160651605,72.2615327403401],[-85.11385113851138,72.25815558580032],[-85.09945099450994,72.25477843126055],[-85.09225092250922,72.24802412218102],[-85.09585095850959,72.2412698131015],[-85.11025110251101,72.23620408129185],[-85.11025110251101,72.2311383494822],[-85.07065070650707,72.2311383494822],[-85.05625056250562,72.23789265856172],[-85.05625056250562,72.2514012767208],[-85.03465034650347,72.25477843126055],[-85.01665016650166,72.2514012767208],[-84.99864998649986,72.24633554491115],[-84.95544955449554,72.2412698131015],[-84.91224912249122,72.22607261767254],[-84.89064890648906,72.2226954631328],[-84.87624876248762,72.2226954631328],[-84.86184861848618,72.21931830859302],[-84.84744847448474,72.21256399951349],[-84.84384843848439,72.19905538135444],[-84.83664836648366,72.19398964954479],[-84.68184681846819,72.14502090871818],[-84.60624606246063,72.13826659963865],[-84.57744577445774,72.12813513601935],[-84.55944559445594,72.1247579814796],[-84.52344523445234,72.12138082693983],[-84.5090450904509,72.11800367240005],[-84.46584465844658,72.09605216789157],[-84.4550445504455,72.09267501335182],[-84.44784447844478,72.08929785881205],[-84.42624426244262,72.06903493157347],[-84.4190441904419,72.06228062249394],[-84.40464404644047,72.05890346795417],[-84.3650436504365,72.05890346795417],[-84.35424354243543,72.05721489068429],[-84.33984339843398,72.04708342706499],[-84.31824318243181,72.04201769525534],[-84.28584285842858,72.02850907709629],[-84.27144271442714,72.02513192255651],[-84.2570425704257,72.01500045893721],[-84.24624246242462,71.99304895442873],[-84.2390423904239,71.9677202953805],[-84.23184231842318,71.95252309995155],[-84.20664206642066,71.9390144817925],[-84.1850418504185,71.9390144817925],[-84.17064170641706,71.95083452268167],[-84.17784177841779,71.9761631817299],[-84.17064170641706,71.9778517589998],[-84.1670416704167,71.97954033626968],[-84.16344163441634,71.98122891353955],[-84.15984159841598,71.98291749080946],[-84.1670416704167,71.98967179988898],[-84.18144181441814,72.00655757258781],[-84.19224192241921,72.01162330439746],[-84.16344163441634,72.02513192255651],[-84.18144181441814,72.02850907709629],[-84.24624246242462,72.05552631341439],[-84.31464314643146,72.06565777703369],[-84.33264332643326,72.07072350884334],[-84.34344343443433,72.07747781792287],[-84.38664386643866,72.11124936332052],[-84.39744397443974,72.11800367240005],[-84.41184411844118,72.12138082693983],[-84.39384393843937,72.12644655874948],[-84.37584375843758,72.13488944509888],[-84.48384483844838,72.1416437541784],[-84.59184591845919,72.16190668141701],[-84.60984609846098,72.16866099049653],[-84.74664746647466,72.2311383494822],[-84.71064710647106,72.22944977221232],[-84.6890468904689,72.2311383494822],[-84.6710467104671,72.23620408129185],[-84.6890468904689,72.24464696764127],[-84.71064710647106,72.24633554491115],[-84.75384753847538,72.24464696764127],[-84.77184771847718,72.24633554491115],[-84.8150481504815,72.26490989487985],[-84.91224912249122,72.2801070903088],[-84.93744937449374,72.29192713119798],[-84.92664926649266,72.2986814402775],[-84.8870488704887,72.31050148116668],[-84.87624876248762,72.31556721297633],[-84.87264872648726,72.32232152205586],[-84.8150481504815,72.35778164472342],[-84.78264782647827,72.36284737653304],[-84.57024570245702,72.35440449018364],[-84.53064530645307,72.35778164472342],[-84.43344433444334,72.38142172650177],[-84.4550445504455,72.38648745831142],[-84.53424534245342,72.36791310834269],[-84.82584825848258,72.37973314923187],[-84.86544865448654,72.36791310834269],[-84.87264872648726,72.37297884015234],[-84.87624876248762,72.38142172650177],[-84.87624876248762,72.40168465374035],[-84.85464854648546,72.40506180828012],[-84.82584825848258,72.40675038555],[-84.80424804248042,72.41012754008977],[-84.78984789847898,72.42194758097895],[-84.80424804248042,72.42194758097895],[-84.77544775447754,72.44727624002718],[-84.76824768247683,72.46078485818626],[-84.7790477904779,72.46247343545613],[-84.82944829448294,72.4455876627573],[-84.89064890648906,72.43714477640788],[-85.02025020250203,72.40168465374035],[-85.01665016650166,72.3966189219307],[-85.0130501305013,72.37973314923187],[-85.00945009450095,72.37466741742222],[-85.07785077850778,72.37635599469212],[-85.09585095850959,72.37129026288247],[-85.1210512105121,72.35609306745351],[-85.13185131851318,72.35440449018364],[-85.14625146251463,72.36115879926317],[-85.14265142651426,72.37129026288247],[-85.13545135451353,72.378044571962],[-85.12825128251282,72.38142172650177],[-85.11745117451174,72.38142172650177],[-85.11745117451174,72.3881760355813],[-85.34425344253442,72.41350469462952],[-85.45225452254522,72.45065339456696],[-85.51345513455134,72.464162012726],[-85.54585545855458,72.48442493996461],[-85.5530555305553,72.49117924904414],[-85.56025560255603,72.50468786720319],[-85.5710557105571,72.51819648536227],[-85.58545585455855,72.52495079444179],[-85.59265592655926,72.52663937171167],[-85.60345603456034,72.53339368079119],[-85.61425614256142,72.54014798987075],[-85.61785617856178,72.54521372168037],[-85.61425614256142,72.55534518529967],[-85.60345603456034,72.55872233983945],[-85.49545495454954,72.56547664891897],[-85.47385473854739,72.5739195352684],[-85.47385473854739,72.57898526707802],[-85.57825578255782,72.5823624216178],[-85.63225632256322,72.59418246250698],[-85.70425704257042,72.63470831698416],[-85.70785707857078,72.63808547152394],[-85.70425704257042,72.64652835787334],[-85.6970569705697,72.65834839876251],[-85.69345693456934,72.66510270784207],[-85.68985689856898,72.69211994416017],[-85.68985689856898,72.70393998504935],[-85.70065700657007,72.71744860320842],[-85.69345693456934,72.71744860320842],[-85.70065700657007,72.72251433501808],[-85.7150571505715,72.737711530447],[-85.70425704257042,72.74615441679643],[-85.70065700657007,72.75459730314583],[-85.6970569705697,72.76304018949526],[-85.70065700657007,72.77148307584466],[-85.69345693456934,72.77148307584466],[-85.69345693456934,72.78499169400374],[-85.68625686256863,72.79850031216279],[-85.67545675456755,72.81200893032184],[-85.66465664656646,72.82720612575079],[-85.67545675456755,72.84240332117975],[-85.66825668256682,72.85253478479905],[-85.65745657456574,72.86097767114845],[-85.65385653856538,72.87110913476775],[-85.6610566105661,72.8846177529268],[-85.67185671856718,72.88968348473645],[-85.68265682656826,72.89306063927623],[-85.67185671856718,72.90825783470515],[-85.65745657456574,72.91670072105458],[-85.61425614256142,72.93696364829316],[-85.60345603456034,72.94709511191246],[-85.59265592655926,72.96229230734141],[-85.5710557105571,72.97242377096072],[-85.54225542255422,72.97580092550047],[-85.3190531905319,72.96229230734141],[-85.16065160651605,72.94878368918233],[-84.91944919449195,72.89812637108588],[-84.45864458644586,72.84071474390984],[-84.37224372243722,72.81200893032184],[-84.30744307443074,72.80356604397244],[-84.2570425704257,72.78836884854348],[-84.1310413104131,72.77823738492418],[-83.99063990639907,72.74953157133618],[-83.95463954639546,72.7579744576856],[-84.0770407704077,72.78836884854348],[-84.2390423904239,72.80187746670256],[-84.62064620646206,72.9048806801654],[-84.71784717847179,72.91163498924493],[-84.91584915849158,72.96229230734141],[-84.94464944649447,72.96398088461129],[-85.08865088650886,72.9842438118499],[-85.08505085050851,72.98593238911977],[-85.06345063450634,72.99099812092942],[-85.08145081450814,73.01632677997765],[-85.11745117451174,73.03321255267647],[-85.1570515705157,73.03490112994638],[-85.18585185851857,73.01970393451742],[-85.17145171451715,73.011261048168],[-85.5350553505535,73.02645824359695],[-85.52785527855278,73.0416554390259],[-85.4630546305463,73.11257568436096],[-85.44145441454414,73.12946145705979],[-85.41625416254162,73.14128149794897],[-85.39465394653946,73.13959292067909],[-85.37665376653766,73.13283861159957],[-85.36945369453694,73.12608430252004],[-85.34785347853479,73.10413279801156],[-85.33345333453335,73.09400133439226],[-85.20745207452075,73.05854121172473],[-85.12465124651246,73.0517869026452],[-85.14985149851498,73.07204982988378],[-85.21465214652146,73.11088710709109],[-85.22545225452254,73.13115003432969],[-85.1750517505175,73.1497243842984],[-85.0310503105031,73.13621576613932],[-84.87984879848798,73.10244422074166],[-84.73224732247323,73.08724702531273],[-84.45864458644586,73.06191836626448],[-84.19584195841958,73.04672117083555],[-84.00144001440015,73.03827828448613],[-83.8610386103861,73.03658970721625],[-83.70623706237062,72.99606385273907],[-83.65583655836558,72.9926866981993],[-83.63783637836379,72.9842438118499],[-83.6630366303663,73.0028181618186],[-83.78183781837818,73.03321255267647],[-83.77463774637746,73.039966861756],[-83.79623796237962,73.04672117083555],[-83.91863918639186,73.06360694353438],[-84.16344163441634,73.0703612526139],[-84.24264242642425,73.08893560258261],[-84.4910449104491,73.11595283890074],[-84.57024570245702,73.11426426163086],[-85.02025020250203,73.20375885693463],[-85.11385113851138,73.20375885693463],[-85.1570515705157,73.20882458874428],[-85.1930519305193,73.23077609325276],[-85.1750517505175,73.24090755687206],[-85.16065160651605,73.25441617503111],[-85.14985149851498,73.26961337046006],[-85.14625146251463,73.28987629769864],[-85.13545135451353,73.31013922493725],[-85.11385113851138,73.32195926582642],[-84.83664836648366,73.38950235662173],[-84.7970479704797,73.39119093389161],[-84.7610476104761,73.38274804754221],[-84.73584735847358,73.37092800665303],[-84.68544685446854,73.32702499763607],[-84.66024660246602,73.31013922493725],[-84.63144631446315,73.30000776131794],[-84.60264602646026,73.29494202950829],[-84.57024570245702,73.29325345223842],[-84.51624516245163,73.27805625680946],[-84.4550445504455,73.24766186595159],[-84.39744397443974,73.22402178417323],[-84.34344343443433,73.23077609325276],[-84.3830438304383,73.25779332957089],[-84.57384573845738,73.32195926582642],[-84.5990459904599,73.33546788398547],[-84.5990459904599,73.35066507941443],[-84.5990459904599,73.36417369757348],[-84.6170461704617,73.37599373846268],[-84.64224642246423,73.38612520208196],[-84.65664656646567,73.39456808843138],[-84.60264602646026,73.41483101566996],[-84.24264242642425,73.47393122011587],[-84.18144181441814,73.47730837465562],[-83.78183781837818,73.43678252017844],[-83.76023760237602,73.42833963382904],[-83.7350373503735,73.41483101566996],[-83.72063720637206,73.40132239751091],[-83.73863738637387,73.39456808843138],[-83.7170371703717,73.36755085211325],[-83.6990369903699,73.3439107703349],[-83.67743677436773,73.32195926582642],[-83.6450364503645,73.3050734931276],[-83.62343623436234,73.30000776131794],[-83.60543605436054,73.30169633858785],[-83.59463594635946,73.31013922493725],[-83.59463594635946,73.32702499763607],[-83.61263612636127,73.3439107703349],[-83.63063630636306,73.3523536566843],[-83.64143641436414,73.36079654303373],[-83.6450364503645,73.3810594702723],[-83.63783637836379,73.39794524297113],[-83.63063630636306,73.40976528386034],[-83.63063630636306,73.42327390201939],[-83.64143641436414,73.44015967471822],[-83.66663666636666,73.45535687014717],[-84.00864008640086,73.50432561097375],[-83.98343983439834,73.52289996094245],[-83.64143641436414,73.59550878354742],[-83.54783547835478,73.5988859380872],[-83.3570335703357,73.64278894710412],[-83.16263162631626,73.6664290288825],[-83.13023130231302,73.6664290288825],[-83.05823058230582,73.64954325618368],[-83.02943029430294,73.65967471980295],[-83.00423004230042,73.67824906977168],[-82.89622896228963,73.70695488335969],[-82.86742867428674,73.72721781059826],[-82.85662856628566,73.73228354240791],[-82.83142831428314,73.73734927421756],[-82.44262442624427,73.73059496513804],[-82.05022050220502,73.73734927421756],[-81.87741877418773,73.72215207878861],[-81.52821528215281,73.71539776970909],[-81.47421474214742,73.70526630608978],[-81.45261452614525,73.68669195612108],[-81.45261452614525,73.6664290288825],[-81.4490144901449,73.65967471980295],[-81.43821438214381,73.64954325618368],[-81.42381423814238,73.6377232152945],[-81.40941409414094,73.63096890621495],[-81.34461344613446,73.61070597897637],[-81.25821258212582,73.56680296995941],[-81.24741247412474,73.55836008361001],[-81.22941229412294,73.53978573364128],[-81.2150121501215,73.51783422913283],[-81.21141211412113,73.49419414735445],[-81.21141211412113,73.4891284155448],[-81.20421204212042,73.48575126100505],[-81.20061200612005,73.48406268373517],[-81.1970119701197,73.4806855291954],[-81.1970119701197,73.47730837465562],[-81.20421204212042,73.46548833376644],[-81.20421204212042,73.46379975649657],[-81.19341193411934,73.43509394290857],[-81.18621186211861,73.42665105655914],[-81.18261182611826,73.41483101566996],[-81.18261182611826,73.36923942938313],[-81.18621186211861,73.3540422339542],[-81.20781207812078,73.33040215217585],[-81.2150121501215,73.32702499763607],[-81.21861218612186,73.32195926582642],[-81.21861218612186,73.29325345223842],[-81.18621186211861,73.26454763865041],[-81.13221132211322,73.24766186595159],[-80.64260642606426,73.16998731153697],[-80.62100621006209,73.1598558479177],[-80.57420574205742,73.12439572525014],[-80.5490054900549,73.09400133439226],[-80.57060570605705,73.06867267534403],[-80.59580595805957,73.04672117083555],[-80.58140581405814,73.02645824359695],[-80.59940599405994,73.0129496254379],[-80.64260642606426,72.99606385273907],[-80.6570065700657,72.97748950277034],[-80.64620646206461,72.97073519369081],[-80.6390063900639,72.96229230734141],[-80.63540635406353,72.95047226645224],[-80.6390063900639,72.94034080283294],[-80.6390063900639,72.92852076194376],[-80.62460624606246,72.91838929832446],[-80.59580595805957,72.90825783470515],[-80.56340563405634,72.89137206200633],[-80.5310053100531,72.8559119393388],[-80.50580505805058,72.84071474390984],[-80.4590045900459,72.82720612575079],[-80.36540365403654,72.81876323940139],[-80.32220322203221,72.80525462124231],[-80.30780307803077,72.79850031216279],[-80.2790027900279,72.77148307584466],[-80.27180271802717,72.76135161222535],[-80.26820268202681,72.74953157133618],[-80.2610026100261,72.74108868498678],[-80.24660246602465,72.737711530447],[-80.26820268202681,72.72589148955782],[-80.30060300603006,72.71576002593852],[-80.36540365403654,72.7106942941289],[-80.37620376203762,72.70731713958912],[-80.40860408604085,72.68874278962042],[-80.45180451804518,72.67692274873124],[-80.46260462604626,72.67185701692159],[-80.4770047700477,72.66003697603242],[-80.49500495004949,72.64821693514324],[-80.51660516605166,72.63808547152394],[-80.53460534605345,72.63470831698416],[-80.55980559805597,72.62795400790463],[-80.55260552605526,72.6110682352058],[-80.52740527405274,72.57898526707802],[-80.75780757807578,72.52495079444179],[-80.90180901809018,72.464162012726],[-80.95220952209522,72.45740770364648],[-80.98460984609845,72.44389908548743],[-81.04941049410493,72.38648745831142],[-81.0890108901089,72.37466741742222],[-81.09261092610926,72.37129026288247],[-81.10341103411034,72.35778164472342],[-81.11781117811178,72.34933875837399],[-81.13221132211322,72.34765018110411],[-81.15021150211501,72.34765018110411],[-81.16461164611646,72.34596160383421],[-81.1790117901179,72.34089587202459],[-81.18981189811898,72.33245298567516],[-81.18981189811898,72.32063294478598],[-81.18621186211861,72.30543574935703],[-81.20421204212042,72.29192713119798],[-81.22941229412294,72.28517282211845],[-81.28701287012869,72.27841851303893],[-81.38421384213842,72.24464696764127],[-81.31221312213121,72.24464696764127],[-81.24021240212402,72.2615327403401],[-80.88740887408873,72.435456199138],[-80.86580865808658,72.44221050821753],[-80.8190081900819,72.44221050821753],[-80.79740797407973,72.44727624002718],[-80.74340743407434,72.46753916726578],[-80.55620556205562,72.51481933082249],[-80.53820538205382,72.51481933082249],[-80.52020520205201,72.50975359901284],[-80.50580505805058,72.49793355812366],[-80.50220502205022,72.48949067177426],[-80.49860498604986,72.46753916726578],[-80.49500495004949,72.46078485818626],[-80.49500495004949,72.45065339456696],[-80.50220502205022,72.43883335367778],[-80.52380523805238,72.41857042643917],[-80.52740527405274,72.41012754008977],[-80.52380523805238,72.39999607647047],[-80.51660516605166,72.38986461285117],[-80.5130051300513,72.38142172650177],[-80.57780577805778,72.37466741742222],[-80.6390063900639,72.35778164472342],[-80.75060750607506,72.30881290389681],[-80.83340833408333,72.2598441630702],[-80.8550085500855,72.2311383494822],[-80.83340833408333,72.20918684497371],[-80.86580865808658,72.19905538135444],[-80.97020970209702,72.20412111316406],[-80.75780757807578,72.1416437541784],[-80.73620736207361,72.1416437541784],[-80.71460714607146,72.13657802236878],[-80.67860678606786,72.12138082693983],[-80.61740617406174,72.10956078605065],[-80.57060570605705,72.09098643608195],[-80.5670056700567,72.08254354973252],[-80.58140581405814,72.06903493157347],[-80.6030060300603,72.06396919976382],[-80.68580685806857,72.075789240653],[-80.75780757807578,72.104495054241],[-81.02781027810278,72.09267501335182],[-81.0170101701017,72.09098643608195],[-81.00621006210062,72.0859207042723],[-80.99900999009989,72.08085497246265],[-80.99180991809918,72.07241208611322],[-81.01341013410133,72.06565777703369],[-81.0890108901089,72.05214915887464],[-81.0530105301053,72.04032911798546],[-81.00261002610026,72.03695196344569],[-80.95580955809558,72.03695196344569],[-80.84060840608406,72.05383773614452],[-80.80820808208081,72.04708342706499],[-80.8010080100801,72.01837761347699],[-80.80460804608046,72.01500045893721],[-80.81540815408154,72.01500045893721],[-80.82620826208262,72.01162330439746],[-80.82980829808298,72.00149184077816],[-80.82620826208262,71.99473753169863],[-80.82260822608225,71.98460606807933],[-80.82260822608225,71.97954033626968],[-80.82260822608225,71.9677202953805],[-80.82620826208262,71.9575888317612],[-80.84420844208442,71.9390144817925],[-80.87660876608766,71.92381728636354],[-80.9630096300963,71.90862009093462],[-80.98460984609845,71.88835716369601],[-80.83340833408333,71.90862009093462],[-80.7650076500765,71.93732590452262],[-80.75780757807578,71.98291749080946],[-80.66420664206642,72.00655757258781],[-80.5670056700567,72.01331188166733],[-80.54540545405453,72.01837761347699],[-80.51660516605166,72.03019765436616],[-80.4590045900459,72.03526338617581],[-80.39780397803978,72.05046058160474],[-80.35460354603546,72.07410066338312],[-80.36540365403654,72.11124936332052],[-80.3870038700387,72.1230694042097],[-80.4410044100441,72.13995517690853],[-80.46620466204662,72.15515237233748],[-80.48420484204841,72.18048103138571],[-80.47340473404734,72.19230107227489],[-80.45180451804518,72.19567822681466],[-80.41940419404193,72.19567822681466],[-80.4050040500405,72.19230107227489],[-80.37980379803798,72.17879245411584],[-80.36540365403654,72.17541529957606],[-80.3510035100351,72.17710387684596],[-80.34020340203402,72.18048103138571],[-80.3150031500315,72.18892391773514],[-80.30780307803077,72.19567822681466],[-80.30420304203042,72.20243253589419],[-80.2970029700297,72.20749826770384],[-80.28620286202862,72.20918684497371],[-80.27180271802717,72.20749826770384],[-80.2610026100261,72.20412111316406],[-80.25020250202502,72.20412111316406],[-80.23940239402394,72.20918684497371],[-80.27180271802717,72.2311383494822],[-80.30780307803077,72.25815558580032],[-80.28260282602825,72.2885499766582],[-80.24660246602465,72.30037001754738],[-80.20340203402034,72.29530428573776],[-80.16380163801638,72.28179566757868],[-80.07020070200701,72.21256399951349],[-80.03060030600305,72.20074395862432],[-80.01260012600126,72.18723534046526],[-80.00540005400053,72.18216960865561],[-79.99459994599945,72.18048103138571],[-79.96939969399693,72.17541529957606],[-79.9369993699937,72.16528383595679],[-79.67779677796777,72.12813513601935],[-79.69579695796958,72.14670948598805],[-79.73179731797318,72.15684094960736],[-79.83979839798397,72.16697241322666],[-79.92979929799297,72.19567822681466],[-80.03420034200342,72.24633554491115],[-80.0450004500045,72.25477843126055],[-80.06660066600665,72.27841851303893],[-80.15660156601565,72.31050148116668],[-80.1710017100171,72.32569867659564],[-80.16020160201602,72.33920729475469],[-80.04860048600486,72.3983074992006],[-79.92619926199262,72.41012754008977],[-79.87579875798758,72.42870189005848],[-79.86139861398614,72.44727624002718],[-79.86139861398614,72.46247343545613],[-79.86859868598685,72.47598205361518],[-79.86859868598685,72.49117924904414],[-79.85059850598506,72.50299928993331],[-79.81819818198181,72.50637644447309],[-79.78939789397893,72.50299928993331],[-79.76419764197641,72.49793355812366],[-79.77859778597785,72.48611351723449],[-79.78579785797858,72.48442493996461],[-79.7749977499775,72.47767063088509],[-79.76059760597606,72.47598205361518],[-79.74979749797498,72.47935920815496],[-79.74259742597425,72.48780209450436],[-79.73179731797318,72.48949067177426],[-79.71739717397173,72.48442493996461],[-79.70299702997029,72.47767063088509],[-79.69219692196921,72.47091632180553],[-79.71019710197102,72.45740770364648],[-79.74259742597425,72.44727624002718],[-79.76779767797677,72.435456199138],[-79.77139771397714,72.41519327189943],[-79.75339753397533,72.40168465374035],[-79.65619656196561,72.37466741742222],[-79.65979659796598,72.3696016856126],[-79.66339663396634,72.36622453107282],[-79.6669966699667,72.36284737653304],[-79.67059670596706,72.36115879926317],[-79.6489964899649,72.35947022199329],[-79.6309963099631,72.35440449018364],[-79.6129961299613,72.34596160383421],[-79.5949959499595,72.34089587202459],[-79.60939609396094,72.33076440840529],[-79.62379623796238,72.30881290389681],[-79.63459634596346,72.30037001754738],[-79.65619656196561,72.2885499766582],[-79.73899738997389,72.26659847214972],[-79.7569975699757,72.25815558580032],[-79.7749977499775,72.24802412218102],[-79.77859778597785,72.23620408129185],[-79.76779767797677,72.2226954631328],[-79.74259742597425,72.21762973132314],[-79.71379713797138,72.21762973132314],[-79.69579695796958,72.2226954631328],[-79.71019710197102,72.23620408129185],[-79.69579695796958,72.24464696764127],[-79.6489964899649,72.25815558580032],[-79.62379623796238,72.2699756266895],[-79.60579605796057,72.27504135849915],[-79.58779587795878,72.27841851303893],[-79.54459544595446,72.27504135849915],[-79.5229952299523,72.2699756266895],[-79.50859508595086,72.2615327403401],[-79.5049950499505,72.25308985399067],[-79.49779497794978,72.23451550402197],[-79.49419494194942,72.22776119494245],[-79.47619476194761,72.20243253589419],[-79.46539465394653,72.19398964954479],[-79.45099450994509,72.19567822681466],[-79.44739447394474,72.20412111316406],[-79.45099450994509,72.21594115405327],[-79.45459454594545,72.22776119494245],[-79.46179461794618,72.23451550402197],[-79.4689946899469,72.2412698131015],[-79.48339483394834,72.26322131760998],[-79.49059490594905,72.27166420395938],[-79.5049950499505,72.27672993576903],[-79.53379533795338,72.28517282211845],[-79.54459544595446,72.29192713119798],[-79.51219512195122,72.2986814402775],[-79.49059490594905,72.30037001754738],[-79.49059490594905,72.30374717208716],[-79.49419494194942,72.30712432662693],[-79.49059490594905,72.31219005843656],[-79.49059490594905,72.31556721297633],[-79.4869948699487,72.32232152205586],[-79.48339483394834,72.32569867659564],[-79.47619476194761,72.32907583113538],[-79.45459454594545,72.33245298567516],[-79.42579425794257,72.34765018110411],[-79.38979389793897,72.35778164472342],[-79.36459364593645,72.37297884015234],[-79.36819368193682,72.39493034466082],[-79.33219332193322,72.40168465374035],[-79.28179281792818,72.39493034466082],[-79.1269912699127,72.34258444929446],[-79.0909909099091,72.32401009932576],[-79.04419044190442,72.2885499766582],[-79.02619026190261,72.28348424484855],[-78.97218972189721,72.28517282211845],[-78.95778957789578,72.28348424484855],[-78.95058950589505,72.27504135849915],[-78.96138961389613,72.2615327403401],[-78.97218972189721,72.25477843126055],[-78.97938979389794,72.2497126994509],[-78.98658986589865,72.24464696764127],[-78.9829898298983,72.2311383494822],[-78.97938979389794,72.22100688586289],[-78.94338943389434,72.19567822681466],[-78.9829898298983,72.17034956776644],[-79.00459004590046,72.15515237233748],[-79.01179011790117,72.13826659963865],[-79.01539015390154,72.1230694042097],[-79.02979029790298,72.0859207042723],[-79.04059040590406,72.07241208611322],[-79.05859058590586,72.06228062249394],[-79.11619116191162,72.03526338617581],[-79.14139141391414,72.00655757258781],[-79.20979209792098,71.98967179988898],[-79.23139231392314,71.9761631817299],[-79.17379173791737,71.9575888317612],[-79.15219152191521,71.95590025449133],[-79.13059130591306,71.95927740903107],[-79.0909909099091,71.97278602719015],[-79.06579065790658,71.9761631817299],[-78.72018720187201,71.92381728636354],[-78.59058590585906,71.86978281372731],[-78.54378543785438,71.86133992737788],[-78.50418504185042,71.87484854553696],[-78.52578525785258,71.88498000915624],[-78.5689856898569,71.89342289550567],[-78.59058590585906,71.90524293639484],[-78.59778597785977,71.91199724547437],[-78.59778597785977,71.91706297728402],[-78.59418594185942,71.92381728636354],[-78.59418594185942,71.93226017271297],[-78.60138601386014,71.94239163633225],[-78.61938619386194,71.9474573681419],[-78.75978759787597,71.95927740903107],[-78.81738817388174,71.97278602719015],[-78.86058860588605,71.98967179988898],[-78.89658896588965,72.00318041804803],[-78.91458914589145,72.01331188166733],[-78.91458914589145,72.03188623163604],[-78.90738907389074,72.04201769525534],[-78.90018900189001,72.04708342706499],[-78.88938889388893,72.05046058160474],[-78.88218882188822,72.05890346795417],[-78.87858878588786,72.06734635430357],[-78.87498874988749,72.075789240653],[-78.87498874988749,72.0842321270024],[-78.87498874988749,72.09267501335182],[-78.87138871388713,72.09774074516147],[-78.86418864188641,72.10280647697112],[-78.86058860588605,72.10618363151087],[-78.87498874988749,72.12982371328923],[-78.87858878588786,72.15008664052783],[-78.87858878588786,72.15852952687723],[-78.87498874988749,72.16866099049653],[-78.8569885698857,72.17372672230618],[-78.83178831788318,72.17203814503631],[-78.50418504185042,72.10111789970122],[-78.46818468184682,72.07747781792287],[-78.43938439384394,72.04539484979512],[-78.3889838898389,71.96940887265038],[-78.38538385383853,71.94070305906237],[-78.20898208982089,71.82419122744048],[-78.12258122581225,71.8123711865513],[-78.0469804698047,71.78704252750305],[-77.95337953379533,71.773533909344],[-77.91017910179102,71.7718453320741],[-77.91017910179102,71.77859964115365],[-77.94257942579425,71.7819767956934],[-78.00738007380073,71.802239722932],[-78.0649806498065,71.80899403201153],[-78.1729817298173,71.85120846375858],[-78.2269822698227,71.89173431823579],[-78.24858248582485,71.90186578185507],[-78.2989829898299,71.91706297728402],[-78.31338313383134,71.9288830181732],[-78.30978309783097,71.9491459454118],[-78.28098280982809,71.9575888317612],[-78.17658176581766,71.97278602719015],[-78.15498154981549,71.97278602719015],[-78.1369813698137,71.96603171811063],[-78.1369813698137,71.96265456357085],[-78.1369813698137,71.95590025449133],[-78.1369813698137,71.9491459454118],[-78.13338133381333,71.94239163633225],[-78.09378093780937,71.92381728636354],[-78.03618036180362,71.90355435912497],[-77.98937989379894,71.87991427734659],[-77.97857978579785,71.84783130921883],[-77.93177931779317,71.82419122744048],[-77.82017820178201,71.80392830020187],[-77.76977769777697,71.77859964115365],[-77.75537755377553,71.75664813664517],[-77.74817748177482,71.75158240483552],[-77.74097740977409,71.7819767956934],[-77.73017730177301,71.79548541385248],[-77.71577715777157,71.80730545474165],[-77.69777697776978,71.8123711865513],[-77.71217712177122,71.81912549563083],[-77.73377733777338,71.8208140729007],[-77.76977769777697,71.81912549563083],[-77.78777787777878,71.82250265017058],[-77.81657816578165,71.83094553652],[-77.85977859778598,71.83601126832966],[-77.88857888578886,71.84445415467906],[-77.91737917379173,71.85458561829836],[-77.94257942579425,71.86809423645741],[-78.01818018180181,71.9187515545539],[-78.09018090180902,71.94239163633225],[-78.10818108181081,71.95590025449133],[-78.09738097380973,71.9677202953805],[-78.12618126181262,71.9761631817299],[-78.18738187381874,71.98291749080946],[-78.25938259382593,71.9761631817299],[-78.29538295382953,71.9761631817299],[-78.32778327783278,71.98967179988898],[-78.33858338583386,72.0048689953179],[-78.3529835298353,72.05214915887464],[-78.36378363783638,72.06734635430357],[-78.37458374583746,72.0842321270024],[-78.3889838898389,72.09774074516147],[-78.40338403384034,72.10787220878078],[-78.42858428584286,72.11969224966995],[-78.4609846098461,72.12813513601935],[-78.55818558185581,72.13826659963865],[-78.61938619386194,72.15852952687723],[-78.68418684186841,72.16528383595679],[-78.84978849788497,72.21762973132314],[-78.87498874988749,72.2311383494822],[-78.8029880298803,72.2497126994509],[-78.7669876698767,72.26490989487985],[-78.75258752587526,72.28517282211845],[-78.75978759787597,72.2986814402775],[-78.77778777787778,72.30374717208716],[-78.79938799387993,72.30712432662693],[-78.81378813788137,72.31219005843656],[-78.81738817388174,72.32232152205586],[-78.81378813788137,72.33245298567516],[-78.8029880298803,72.33751871748481],[-78.78858788587885,72.34089587202459],[-78.73818738187381,72.33245298567516],[-78.71658716587166,72.33245298567516],[-78.63378633786337,72.35440449018364],[-78.6049860498605,72.35778164472342],[-78.5689856898569,72.35609306745351],[-78.53658536585365,72.34596160383421],[-78.51138511385113,72.32569867659564],[-78.52218522185221,72.32401009932576],[-78.52938529385294,72.31894436751611],[-78.54018540185402,72.30543574935703],[-78.52578525785258,72.2902385539281],[-78.52938529385294,72.2801070903088],[-78.53298532985329,72.26828704941963],[-78.53298532985329,72.2514012767208],[-78.51858518585186,72.23451550402197],[-78.50058500585006,72.22776119494245],[-78.4789847898479,72.22438404040267],[-78.45738457384573,72.21762973132314],[-78.45738457384573,72.19398964954479],[-78.42858428584286,72.17879245411584],[-78.39618396183961,72.17710387684596],[-78.39258392583926,72.18554676319536],[-78.39978399783998,72.19061249500501],[-78.41418414184142,72.19736680408454],[-78.42138421384213,72.20412111316406],[-78.42138421384213,72.20580969043397],[-78.41778417784178,72.21087542224362],[-78.41418414184142,72.21762973132314],[-78.41418414184142,72.2226954631328],[-78.42858428584286,72.2311383494822],[-78.47538475384754,72.24464696764127],[-78.45738457384573,72.28348424484855],[-78.45738457384573,72.29699286300763],[-78.47178471784717,72.31894436751611],[-78.41058410584105,72.32907583113538],[-78.02178021780217,72.2801070903088],[-78.00738007380073,72.2699756266895],[-78.02538025380254,72.2514012767208],[-77.94617946179461,72.26322131760998],[-77.91377913779138,72.26490989487985],[-77.78417784177842,72.24464696764127],[-77.69057690576905,72.21594115405327],[-77.65457654576545,72.19398964954479],[-77.6689766897669,72.16866099049653],[-77.65457654576545,72.16021810414713],[-77.64017640176401,72.15515237233748],[-77.62577625776257,72.14839806325796],[-77.62217622176222,72.13826659963865],[-77.62577625776257,72.12982371328923],[-77.65097650976509,72.1129379405904],[-77.66177661776618,72.10787220878078],[-77.66177661776618,72.10111789970122],[-77.64017640176401,72.10280647697112],[-77.61857618576185,72.1129379405904],[-77.60057600576005,72.1247579814796],[-77.58617586175862,72.1416437541784],[-77.60417604176041,72.15515237233748],[-77.61497614976149,72.16359525868688],[-77.62217622176222,72.17541529957606],[-77.58977589775897,72.18385818592549],[-77.29817298172982,72.18892391773514],[-77.25857258572586,72.18385818592549],[-77.17937179371793,72.16021810414713],[-76.99576995769958,72.13488944509888],[-77.13257132571326,72.17203814503631],[-77.2729727297273,72.19567822681466],[-77.54657546575466,72.19905538135444],[-77.62577625776257,72.22776119494245],[-77.6869768697687,72.23620408129185],[-77.82737827378273,72.27841851303893],[-77.94257942579425,72.29192713119798],[-78.00018000180002,72.31050148116668],[-78.2269822698227,72.33751871748481],[-78.53298532985329,72.4253247355187],[-78.55458554585546,72.4455876627573],[-78.5509855098551,72.46585058999591],[-78.54378543785438,72.48611351723449],[-78.55818558185581,72.51144217628274],[-78.53658536585365,72.51481933082249],[-78.45738457384573,72.55534518529967],[-78.45018450184502,72.5620994943792],[-78.45018450184502,72.57898526707802],[-78.4429844298443,72.58742815342745],[-78.42858428584286,72.59418246250698],[-78.41058410584105,72.59418246250698],[-78.39258392583926,72.5924938852371],[-78.37458374583746,72.59418246250698],[-78.18738187381874,72.65328266695286],[-78.02538025380254,72.67523417146134],[-78.01458014580146,72.67861132600112],[-77.98937989379894,72.69380852143007],[-77.97857978579785,72.6988742532397],[-77.79857798577986,72.70393998504935],[-77.7229772297723,72.72758006682773],[-77.65457654576545,72.737711530447],[-77.60057600576005,72.75628588041573],[-77.24417244172442,72.74953157133618],[-76.88776887768877,72.74277726225665],[-76.78336783367833,72.7292686440976],[-76.68976689766897,72.69718567596982],[-76.67536675366753,72.68874278962042],[-76.66456664566645,72.67861132600112],[-76.65736657366573,72.66679128511194],[-76.66096660966609,72.65834839876251],[-76.68256682566825,72.65497124422276],[-76.65376653766538,72.63808547152394],[-76.19656196561965,72.59924819431663],[-76.16776167761677,72.5908053079672],[-76.15336153361534,72.57898526707802],[-76.15336153361534,72.56716522618885],[-76.16056160561605,72.55534518529967],[-76.16776167761677,72.54690229895027],[-76.16776167761677,72.53845941260084],[-76.16056160561605,72.52832794898154],[-76.12816128161282,72.49117924904414],[-76.1029610296103,72.47935920815496],[-76.08136081360813,72.47935920815496],[-76.03816038160382,72.49117924904414],[-76.04176041760417,72.49962213539354],[-76.07056070560705,72.54690229895027],[-76.07056070560705,72.55534518529967],[-76.03816038160382,72.5620994943792],[-76.00576005760057,72.58067384434793],[-75.99135991359913,72.58742815342745],[-75.94095940959409,72.5924938852371],[-75.73575735757358,72.5823624216178],[-75.64215642156421,72.5637880716491],[-75.56655566555665,72.55703376256957],[-75.5449554495545,72.55196803075992],[-75.4729547295473,72.53001652625144],[-75.19935199351993,72.49793355812366],[-75.19215192151921,72.49286782631401],[-75.19215192151921,72.48104778542483],[-75.19575195751958,72.46753916726578],[-75.19575195751958,72.45740770364648],[-75.19215192151921,72.45571912637661],[-75.16695166951669,72.435456199138],[-75.15615156151561,72.42025900370905],[-75.15255152551525,72.41519327189943],[-75.06975069750698,72.35778164472342],[-75.0589505895059,72.33751871748481],[-75.04095040950409,72.32232152205586],[-74.96534965349653,72.27672993576903],[-74.94014940149401,72.25815558580032],[-74.99774997749977,72.23451550402197],[-75.01935019350194,72.21931830859302],[-75.02655026550265,72.21762973132314],[-75.03015030150301,72.21594115405327],[-75.03015030150301,72.21087542224362],[-75.03015030150301,72.20749826770384],[-75.03015030150301,72.20412111316406],[-75.06255062550625,72.18723534046526],[-75.24615246152462,72.12813513601935],[-75.28215282152821,72.1247579814796],[-75.47655476554765,72.14670948598805],[-75.63855638556385,72.14502090871818],[-76.02736027360274,72.08929785881205],[-76.06696066960669,72.075789240653],[-76.08496084960849,72.05552631341439],[-76.09576095760957,72.03526338617581],[-76.12096120961209,72.00993472712756],[-76.15336153361534,71.98967179988898],[-76.1749617496175,71.9761631817299],[-76.28296282962829,71.94576879087202],[-76.31536315363154,71.92550586363342],[-76.35856358563585,71.88835716369601],[-76.40176401764018,71.87147139099719],[-76.41616416164162,71.86133992737788],[-76.38376383763837,71.85120846375858],[-76.35856358563585,71.85627419556823],[-76.33336333363333,71.86978281372731],[-76.28296282962829,71.91199724547437],[-76.25416254162542,71.93057159544307],[-76.18936189361894,71.95590025449133],[-76.11736117361173,71.97447460446003],[-76.08496084960849,71.98967179988898],[-76.05976059760597,72.01162330439746],[-76.03456034560345,72.04370627252521],[-76.02376023760237,72.05214915887464],[-76.00576005760057,72.05890346795417],[-75.65655656556565,72.1247579814796],[-75.51255512555124,72.1247579814796],[-75.24255242552425,72.0842321270024],[-75.2209522095221,72.06903493157347],[-75.24615246152462,72.05046058160474],[-75.29655296552966,72.04032911798546],[-75.53775537755376,72.02006619074686],[-75.58455584555846,72.0048689953179],[-75.60615606156061,71.98967179988898],[-75.62415624156242,71.97278602719015],[-75.63135631356313,71.95083452268167],[-75.6349563495635,71.92550586363342],[-75.63855638556385,71.9103086682045],[-75.64935649356494,71.90355435912497],[-75.66375663756637,71.90017720458519],[-75.67455674556746,71.89342289550567],[-75.68535685356854,71.88498000915624],[-75.69255692556925,71.86978281372731],[-75.70335703357033,71.86133992737788],[-75.69255692556925,71.84276557740918],[-75.70695706957069,71.82925695925013],[-75.75015750157502,71.80561687747175],[-75.76455764557645,71.79548541385248],[-75.80415804158041,71.75833671391504],[-75.87255872558725,71.72625374578726],[-76.02376023760237,71.71781085943786],[-76.09936099360993,71.70261366400891],[-76.09936099360993,71.69585935492938],[-76.05976059760597,71.69754793219926],[-75.99495994959949,71.70936797308843],[-75.93015930159301,71.70261366400891],[-75.86535865358653,71.70767939581856],[-75.83295832958329,71.71443370489808],[-75.80415804158041,71.72625374578726],[-75.78615786157862,71.73976236394634],[-75.7141571415714,71.79548541385248],[-75.6709567095671,71.81743691836093],[-75.65295652956529,71.83263411378988],[-75.64935649356494,71.84276557740918],[-75.64575645756457,71.85965135010801],[-75.64215642156421,71.86809423645741],[-75.6349563495635,71.87653712280684],[-75.59175591755917,71.90524293639484],[-75.57375573755738,71.9187515545539],[-75.56655566555665,71.93563732725272],[-75.57375573755738,71.95252309995155],[-75.57375573755738,71.9677202953805],[-75.5521555215552,71.98291749080946],[-75.50175501755017,72.00318041804803],[-75.4621546215462,72.00993472712756],[-75.32535325353253,72.0048689953179],[-75.29295292952929,72.0048689953179],[-75.24255242552425,72.01162330439746],[-75.19575195751958,72.02344334528664],[-75.16335163351633,72.04201769525534],[-75.15615156151561,72.05046058160474],[-75.14535145351454,72.07410066338312],[-75.13815138151381,72.08254354973252],[-75.12735127351273,72.09098643608195],[-75.10575105751057,72.104495054241],[-75.0949509495095,72.11124936332052],[-75.06255062550625,72.12813513601935],[-75.01935019350194,72.133200867829],[-74.97614976149761,72.13151229055913],[-74.89334893348934,72.11124936332052],[-74.60534605346054,72.09942932243135],[-74.31734317343174,72.08929785881205],[-74.27774277742778,72.08085497246265],[-74.25254252542526,72.08085497246265],[-74.24174241742418,72.07916639519277],[-74.23814238142381,72.075789240653],[-74.22734227342274,72.06396919976382],[-74.22014220142201,72.05890346795417],[-74.17334173341733,72.03188623163604],[-74.13734137341373,71.99304895442873],[-74.11934119341193,71.9677202953805],[-74.12294122941229,71.95590025449133],[-74.19494194941949,71.9288830181732],[-74.20934209342093,71.91537440001414],[-74.20574205742057,71.9103086682045],[-74.19494194941949,71.90524293639484],[-74.18054180541804,71.89342289550567],[-74.1769417694177,71.88666858642614],[-74.17334173341733,71.87653712280684],[-74.17334173341733,71.86471708191766],[-74.19494194941949,71.85627419556823],[-74.21654216542166,71.83769984559953],[-74.25254252542526,71.82250265017058],[-74.26334263342633,71.81912549563083],[-74.31734317343174,71.81912549563083],[-74.41454414544145,71.80561687747175],[-74.46854468544684,71.80899403201153],[-74.49014490144901,71.8123711865513],[-74.51894518945188,71.81912549563083],[-74.52254522545225,71.82250265017058],[-74.52614526145261,71.82756838198023],[-74.53334533345333,71.83094553652],[-74.5441454414544,71.83263411378988],[-74.55134551345513,71.83263411378988],[-74.56934569345692,71.82756838198023],[-74.57654576545765,71.82587980471035],[-74.57294572945729,71.81743691836093],[-74.55854558545585,71.80730545474165],[-74.55134551345513,71.79886256839222],[-74.57294572945729,71.7921082593127],[-74.62694626946269,71.7836653729633],[-74.65214652146521,71.77522248661387],[-74.66654666546665,71.76509102299457],[-74.69174691746917,71.74651667302587],[-74.70974709747097,71.73976236394634],[-74.74214742147421,71.73300805486681],[-74.81054810548105,71.73469663213669],[-74.84654846548464,71.72963090032704],[-74.90414904149041,71.71274512762821],[-74.92574925749257,71.70936797308843],[-75.05175051750517,71.72287659124751],[-75.35055350553505,71.70092508673903],[-75.37935379353793,71.69248220038963],[-75.39375393753937,71.6755964276908],[-75.08415084150842,71.70261366400891],[-75.00855008550086,71.69923650946916],[-74.9689496894969,71.69079362311973],[-74.94014940149401,71.6755964276908],[-74.94014940149401,71.66208780953173],[-74.95814958149582,71.65195634591242],[-75.17055170551706,71.60129902781594],[-75.26415264152641,71.56246175060866],[-75.41535415354153,71.52531305067123],[-75.39375393753937,71.5185587415917],[-75.3109531095311,71.54557597790983],[-75.20295202952029,71.55401886425923],[-75.04455044550446,71.60636475962559],[-74.92574925749257,71.61987337778467],[-74.89694896948969,71.62493910959432],[-74.88254882548826,71.63169341867385],[-74.87534875348753,71.63844772775337],[-74.85734857348574,71.65871065499198],[-74.8429484294843,71.6654649640715],[-74.79974799747997,71.6840393140402],[-74.7169471694717,71.70092508673903],[-74.69534695346952,71.70261366400891],[-74.6809468094681,71.69923650946916],[-74.66294662946629,71.69079362311973],[-74.64854648546485,71.67897358223055],[-74.64134641346413,71.66884211861125],[-74.6341463414634,71.66039923226185],[-74.6341463414634,71.6553335004522],[-74.66294662946629,71.62493910959432],[-74.67734677346773,71.60974191416537],[-74.69174691746917,71.60298760508584],[-74.72054720547204,71.59116756419667],[-74.73134731347314,71.58272467784724],[-74.74574745747456,71.57765894603759],[-74.78894788947889,71.57090463695806],[-74.7961479614796,71.56246175060866],[-74.8069480694807,71.55401886425923],[-74.83214832148322,71.54895313244958],[-75.01935019350194,71.54219882337006],[-75.05535055350553,71.528690205211],[-75.08055080550805,71.51349300978205],[-75.13455134551346,71.49323008254345],[-75.15255152551525,71.4695900007651],[-75.12735127351273,71.471278578035],[-75.10575105751057,71.48309861892417],[-75.08775087750877,71.4982958143531],[-75.06615066150661,71.51011585524228],[-75.02655026550265,71.52024731886158],[-74.8429484294843,71.52362447340136],[-74.82134821348212,71.51349300978205],[-74.82494824948249,71.4898529280037],[-74.8429484294843,71.47803288711452],[-74.90414904149041,71.45945853714582],[-74.92934929349293,71.45608138260604],[-74.81054810548105,71.45270422806627],[-74.74574745747456,71.44088418717709],[-74.7169471694717,71.41893268266861],[-74.70974709747097,71.40373548723969],[-74.70614706147062,71.39529260089026],[-74.70614706147062,71.38684971454086],[-74.72054720547204,71.37671825092156],[-74.73494734947349,71.37334109638178],[-74.76374763747637,71.36827536457213],[-74.77814778147781,71.36658678730225],[-74.78534785347853,71.36489821003238],[-74.79254792547925,71.35814390095285],[-74.7961479614796,71.34970101460343],[-74.79974799747997,71.3429467055239],[-74.83574835748357,71.32099520101542],[-74.86094860948609,71.30917516012624],[-74.87534875348753,71.30579800558647],[-74.88974889748897,71.29904369650694],[-74.91854918549186,71.27033788291894],[-74.93654936549365,71.26358357383941],[-74.95094950949509,71.26189499656954],[-74.97974979749797,71.25176353295024],[-75.00135001350013,71.24163206933093],[-75.0049500495005,71.23825491479118],[-75.00855008550086,71.23318918298153],[-75.01215012150121,71.22643487390201],[-75.03375033750338,71.2146148330128],[-75.07695076950769,71.20448336939353],[-75.09855098550985,71.1960404830441],[-75.07695076950769,71.18422044215492],[-75.04455044550446,71.1875975966947],[-74.89334893348934,71.24669780114058],[-74.85734857348574,71.26696072837919],[-74.82494824948249,71.29228938742742],[-74.75294752947529,71.3226837782853],[-74.72054720547204,71.34463528279377],[-74.670146701467,71.36489821003238],[-74.63054630546306,71.3902268690806],[-74.63054630546306,71.41893268266861],[-74.66294662946629,71.44088418717709],[-74.70254702547025,71.45776995987592],[-74.73134731347314,71.47803288711452],[-74.74214742147421,71.51349300978205],[-74.72774727747277,71.54388740063993],[-74.69534695346952,71.55233028698936],[-74.65214652146521,71.55401886425923],[-74.61974619746196,71.55908459606889],[-74.60174601746017,71.57090463695806],[-74.53694536945369,71.6452020368329],[-74.53334533345333,71.6553335004522],[-74.52254522545225,71.66208780953173],[-74.50454504545046,71.66884211861125],[-74.4181441814418,71.67053069588115],[-74.31734317343174,71.70936797308843],[-74.29574295742957,71.72794232305716],[-74.28134281342813,71.73469663213669],[-74.13734137341373,71.74313951848609],[-74.12654126541265,71.74313951848609],[-74.11934119341193,71.74145094121621],[-74.10854108541085,71.73807378667647],[-74.10134101341013,71.73300805486681],[-74.10134101341013,71.72794232305716],[-74.10494104941048,71.72287659124751],[-74.10854108541085,71.71949943670774],[-74.11214112141121,71.71274512762821],[-74.11934119341193,71.68741646857998],[-74.1409414094141,71.67053069588115],[-74.16974169741697,71.65702207772208],[-74.23094230942309,71.6367591504835],[-74.24534245342453,71.62493910959432],[-74.24894248942489,71.6080533368955],[-74.24894248942489,71.58272467784724],[-74.23454234542345,71.56583890514841],[-74.20574205742057,71.55064170971949],[-74.16974169741697,71.54219882337006],[-74.14454144541445,71.53882166883028],[-74.19854198541985,71.58947898692676],[-74.21654216542166,71.62156195505455],[-74.18774187741877,71.6350705732136],[-74.14454144541445,71.64013630502325],[-74.11214112141121,71.65195634591242],[-74.08694086940869,71.6739078504209],[-74.06534065340654,71.70261366400891],[-73.99693996939969,71.75495955937527],[-73.90693906939069,71.77522248661387],[-73.71973719737197,71.77859964115365],[-73.70173701737016,71.773533909344],[-73.68733687336874,71.75833671391504],[-73.68013680136801,71.74145094121621],[-73.68733687336874,71.72963090032704],[-73.68733687336874,71.72287659124751],[-73.68013680136801,71.72287659124751],[-73.65853658536585,71.75833671391504],[-73.62253622536225,71.7718453320741],[-73.59733597335973,71.7634024457247],[-73.60813608136081,71.73300805486681],[-73.6261362613626,71.71949943670774],[-73.64773647736477,71.70936797308843],[-73.77013770137701,71.6654649640715],[-73.79173791737917,71.66208780953173],[-73.80253802538024,71.65871065499198],[-73.80253802538024,71.65026776864255],[-73.7989379893799,71.64182488229315],[-73.79533795337953,71.6350705732136],[-73.80613806138061,71.62831626413407],[-73.81693816938169,71.62493910959432],[-73.8781387813878,71.6164962232449],[-73.88533885338853,71.60974191416537],[-73.8889388893889,71.59792187327619],[-73.89973899738997,71.57934752330749],[-73.91413914139142,71.57090463695806],[-73.95733957339573,71.55739601879901],[-73.97533975339753,71.54557597790983],[-73.98253982539825,71.53037878248088],[-73.98973989739898,71.51518158705193],[-74.00054000540005,71.50167296889288],[-74.0149401494015,71.4898529280037],[-74.00774007740077,71.48478719619405],[-74.00054000540005,71.4797214643844],[-73.98973989739898,71.47803288711452],[-73.98253982539825,71.47634430984462],[-73.99693996939969,71.4611471144157],[-74.02214022140221,71.4611471144157],[-74.07614076140761,71.4695900007651],[-74.10134101341013,71.46621284622535],[-74.15894158941589,71.45101565079639],[-74.18774187741877,71.44932707352652],[-74.19134191341914,71.442572764447],[-74.25974259742597,71.43075272355779],[-74.31734317343174,71.41555552812886],[-74.29214292142922,71.40880121904934],[-74.25254252542526,71.41555552812886],[-74.18054180541804,71.43581845536744],[-74.02934029340292,71.442572764447],[-74.02934029340292,71.43581845536744],[-74.04734047340473,71.42568699174817],[-74.06174061740617,71.41386695085899],[-74.06894068940689,71.39698117816016],[-74.06534065340654,71.38009540546133],[-74.06894068940689,71.3632096327625],[-74.06534065340654,71.34801243733355],[-74.07254072540725,71.33788097371425],[-74.11934119341193,71.33112666463472],[-74.18054180541804,71.31255231466602],[-74.18054180541804,71.30579800558647],[-74.130141301413,71.30748658285637],[-74.10134101341013,71.30579800558647],[-74.09054090540906,71.2956665419672],[-74.09774097740977,71.28215792380811],[-74.10854108541085,71.27371503745871],[-74.12654126541265,71.26864930564906],[-74.15534155341552,71.24500922387071],[-74.21654216542166,71.21799198755258],[-74.24174241742418,71.20954910120318],[-74.24174241742418,71.20279479212363],[-74.18774187741877,71.21968056482245],[-74.0041400414004,71.32606093282507],[-73.99693996939969,71.3328152419046],[-73.99333993339933,71.3429467055239],[-74.0041400414004,71.35983247822273],[-74.00774007740077,71.36996394184203],[-73.95373953739536,71.43244130082769],[-73.93933939339394,71.43750703263734],[-73.92133921339213,71.44088418717709],[-73.91053910539105,71.44426134171687],[-73.89973899738997,71.45608138260604],[-73.89973899738997,71.46452426895544],[-73.89973899738997,71.47296715530487],[-73.90333903339032,71.48309861892417],[-73.89613896138961,71.49323008254345],[-73.87453874538745,71.5084272779724],[-73.86733867338673,71.5185587415917],[-73.86733867338673,71.528690205211],[-73.86733867338673,71.53544451429053],[-73.84933849338493,71.54219882337006],[-73.81693816938169,71.55233028698936],[-73.75933759337593,71.57934752330749],[-73.72693726937268,71.58947898692676],[-73.68733687336874,71.59285614146654],[-73.65133651336512,71.59116756419667],[-73.62253622536225,71.58272467784724],[-73.56493564935649,71.55908459606889],[-73.57933579335793,71.54388740063993],[-73.60093600936008,71.53206735975076],[-73.61893618936189,71.51687016432183],[-73.61173611736118,71.48647577346392],[-73.62253622536225,71.4695900007651],[-73.65493654936549,71.442572764447],[-73.63333633336333,71.43581845536744],[-73.60453604536045,71.40711264177943],[-73.58653586535866,71.40204690996978],[-73.58653586535866,71.39529260089026],[-73.64053640536405,71.35983247822273],[-73.60813608136081,71.3632096327625],[-73.55413554135541,71.37671825092156],[-73.52533525335252,71.38009540546133],[-73.51813518135181,71.38516113727096],[-73.5109351093511,71.41555552812886],[-73.50373503735037,71.42906414628791],[-73.48573485734858,71.43581845536744],[-73.46053460534606,71.442572764447],[-73.43893438934388,71.44426134171687],[-73.4281342813428,71.43919560990722],[-73.4209342093421,71.42062125993851],[-73.41013410134101,71.40880121904934],[-73.39213392133921,71.39866975543003],[-73.37773377733777,71.38684971454086],[-73.4209342093421,71.37671825092156],[-73.44613446134461,71.37502967365168],[-73.46773467734677,71.37334109638178],[-73.48213482134821,71.37334109638178],[-73.49293492934929,71.3716525191119],[-73.50373503735037,71.36658678730225],[-73.50733507335073,71.35983247822273],[-73.50733507335073,71.35476674641308],[-73.50373503735037,71.34801243733355],[-73.50733507335073,71.3429467055239],[-73.52173521735217,71.33112666463472],[-73.57213572135721,71.31592946920577],[-73.63333633336333,71.28553507834789],[-73.66213662136622,71.26696072837919],[-73.68733687336874,71.24332064660084],[-73.68013680136801,71.23825491479118],[-73.68013680136801,71.23150060571163],[-73.68373683736837,71.2247462966321],[-73.68733687336874,71.2163034102827],[-73.68013680136801,71.20954910120318],[-73.68733687336874,71.20110621485375],[-73.70533705337053,71.1859090194248],[-73.7161371613716,71.17408897853562],[-73.7161371613716,71.16226893764645],[-73.71253712537126,71.13525170132834],[-73.7161371613716,71.12005450589939],[-73.74853748537485,71.08966011504148],[-73.85653856538565,71.07615149688243],[-73.89973899738997,71.0592657241836],[-73.88173881738817,71.05251141510408],[-73.86733867338673,71.05588856964386],[-73.85293852938528,71.06264287872338],[-73.83853838538386,71.06602003326313],[-73.7629376293763,71.0693971878029],[-73.72693726937268,71.07446291961256],[-73.69453694536945,71.08628296050173],[-73.66573665736657,71.10654588774031],[-73.66573665736657,71.13018596951869],[-73.66933669336693,71.15382605129705],[-73.65853658536585,71.18253186488505],[-73.65493654936549,71.18928617396458],[-73.6369363693637,71.2061719466634],[-73.63333633336333,71.21292625574293],[-73.6261362613626,71.22643487390201],[-73.62253622536225,71.23318918298153],[-73.60813608136081,71.24163206933093],[-73.55053550535504,71.27033788291894],[-73.54333543335433,71.27878076926837],[-73.53973539735397,71.28553507834789],[-73.53253532535325,71.29060081015754],[-73.50013500135,71.29397796469729],[-73.46773467734677,71.30073227377684],[-73.45333453334533,71.30579800558647],[-73.43893438934388,71.3142408919359],[-73.4281342813428,71.3226837782853],[-73.4281342813428,71.3328152419046],[-73.44253442534425,71.34632386006368],[-73.31653316533165,71.33956955098412],[-73.25533255332553,71.32943808736485],[-73.1761317613176,71.30748658285637],[-73.16893168931689,71.3041094283166],[-73.16893168931689,71.2956665419672],[-73.16173161731616,71.29060081015754],[-73.11853118531185,71.29735511923707],[-73.08253082530825,71.28891223288767],[-73.06453064530645,71.28215792380811],[-73.050130501305,71.27033788291894],[-73.22653226532265,71.24669780114058],[-73.27693276932769,71.22305771936223],[-73.26253262532624,71.21123767847305],[-73.24813248132482,71.19435190577423],[-73.24093240932409,71.17408897853562],[-73.24093240932409,71.15382605129705],[-73.26973269732697,71.12680881497892],[-73.29133291332913,71.09979157866078],[-73.32733327333273,71.08290580596196],[-73.4281342813428,71.05419999237395],[-73.45333453334533,71.03224848786547],[-73.43533435334353,71.02549417878595],[-73.3849338493385,70.99003405611842],[-73.37773377733777,70.98327974703889],[-73.37053370533705,71.0018540970076],[-73.40293402934029,71.02549417878595],[-73.39933399333992,71.04575710602455],[-73.3741337413374,71.05757714691373],[-73.28773287732876,71.07108576507278],[-73.26973269732697,71.08966011504148],[-73.26253262532624,71.10485731047044],[-73.24093240932409,71.11836592862952],[-73.20133201332013,71.14031743313797],[-73.18333183331833,71.15551462856692],[-73.16893168931689,71.17071182399587],[-73.17253172531726,71.1774661330754],[-73.18333183331833,71.1960404830441],[-73.18693186931868,71.2061719466634],[-73.16893168931689,71.22812345117188],[-73.12933129331293,71.23318918298153],[-73.05373053730537,71.22981202844176],[-73.03213032130321,71.23318918298153],[-73.01053010530104,71.24163206933093],[-72.99612996129962,71.25345211022011],[-72.98172981729817,71.27033788291894],[-72.9709297092971,71.28722365561777],[-72.96372963729637,71.3041094283166],[-72.960129601296,71.31930662374555],[-72.960129601296,71.33619239644437],[-72.96372963729637,71.35814390095285],[-72.97452974529745,71.37502967365168],[-72.98532985329852,71.38853829181073],[-72.99612996129962,71.40711264177943],[-72.93492934929348,71.41893268266861],[-72.81252812528125,71.41893268266861],[-72.7549275492755,71.43581845536744],[-72.76932769327694,71.4611471144157],[-72.77652776527765,71.471278578035],[-72.79092790927909,71.47634430984462],[-72.80172801728017,71.4797214643844],[-72.81972819728198,71.48816435073383],[-72.83052830528305,71.4982958143531],[-72.83772837728377,71.51011585524228],[-72.82332823328233,71.51518158705193],[-72.76932769327694,71.5185587415917],[-72.63972639726397,71.54557597790983],[-72.61812618126181,71.57259321422794],[-72.61452614526145,71.58779040965689],[-72.61092610926109,71.60974191416537],[-72.60732607326072,71.62156195505455],[-72.60012600126001,71.6367591504835],[-72.58932589325893,71.65026776864255],[-72.58572585725857,71.6553335004522],[-72.54972549725497,71.6654649640715],[-72.510125101251,71.65871065499198],[-72.47412474124741,71.64689061410277],[-72.19692196921969,71.61143049143524],[-71.91971919719197,71.57428179149784],[-71.78291782917829,71.53544451429053],[-71.58131581315813,71.51518158705193],[-71.54531545315453,71.50505012343265],[-71.52731527315272,71.4898529280037],[-71.51291512915128,71.48816435073383],[-71.41931419314193,71.45608138260604],[-71.42651426514264,71.44088418717709],[-71.43371433714337,71.43581845536744],[-71.38691386913868,71.41386695085899],[-71.2861128611286,71.38516113727096],[-71.14571145711457,71.29397796469729],[-71.11691116911169,71.27033788291894],[-71.15291152911529,71.24332064660084],[-71.23931239312392,71.2146148330128],[-71.29331293312933,71.18422044215492],[-71.32931329313293,71.17408897853562],[-71.34371343713437,71.1673346694561],[-71.38331383313833,71.13356312405844],[-71.4229142291423,71.09303726958126],[-71.44451444514445,71.07277434234268],[-71.46971469714697,71.06602003326313],[-71.62091620916209,71.07277434234268],[-71.71091710917109,71.09641442412104],[-71.86211862118621,71.11330019681986],[-71.89091890918908,71.11161161954996],[-71.99171991719916,71.08966011504148],[-72.04572045720457,71.08459438323186],[-72.07092070920709,71.0778400741523],[-72.09972099720997,71.06770861053303],[-72.11052110521105,71.05757714691373],[-72.11772117721176,71.0491342605643],[-72.11412114121141,71.0406913742149],[-72.10332103321034,71.0305599105956],[-72.09972099720997,71.0204284469763],[-72.10692106921069,71.01705129243655],[-72.11772117721176,71.01367413789677],[-72.1321213212132,71.00691982881725],[-72.17172171721717,70.97145970614972],[-72.18252182521825,70.96639397434006],[-72.26892268922688,70.95626251072076],[-72.29772297722977,70.94781962437136],[-72.32292322923229,70.92755669713276],[-72.31212312123121,70.91067092443393],[-72.31932319323192,70.89716230627488],[-72.33732337323373,70.8853422653857],[-72.35532355323552,70.87858795630615],[-72.74772747727476,70.82793063820966],[-72.77652776527765,70.81779917459039],[-72.47772477724777,70.83806210182897],[-72.30492304923048,70.8735222244965],[-72.27612276122761,70.87183364722662],[-72.23292232922329,70.8566364517977],[-72.18612186121861,70.84819356544827],[-72.17172171721717,70.84481641090849],[-72.16452164521645,70.83975067909887],[-72.16452164521645,70.82961921547957],[-72.1681216812168,70.82624206093979],[-72.17532175321753,70.82455348366992],[-72.18252182521825,70.82117632913014],[-72.19692196921969,70.81104486551084],[-72.27252272522725,70.77558474284331],[-72.31572315723157,70.76038754741438],[-72.33732337323373,70.7570103928746],[-72.330123301233,70.74350177471555],[-72.32292322923229,70.736747465636],[-72.31572315723157,70.72999315655647],[-72.36612366123661,70.6894673020793],[-72.3841238412384,70.6810244157299],[-72.48852488524885,70.65063002487199],[-72.5821258212582,70.64556429306234],[-72.62532625326253,70.63374425217316],[-72.60732607326072,70.62867852036351],[-72.5929259292593,70.63036709763341],[-72.57492574925749,70.63374425217316],[-72.55692556925568,70.63374425217316],[-72.56052560525605,70.62867852036351],[-72.57132571325712,70.61348132493458],[-72.54972549725497,70.61348132493458],[-72.53172531725316,70.61685847947433],[-72.51372513725137,70.62530136582376],[-72.49932499324993,70.63712140671294],[-72.47772477724777,70.64725287033224],[-72.39132391323913,70.65400717941176],[-72.35892358923589,70.66245006576116],[-72.32652326523265,70.67427010665034],[-72.30132301323013,70.6894673020793],[-72.27612276122761,70.7097302293179],[-72.23292232922329,70.7485675065252],[-72.21132211322113,70.765453279224],[-71.95211952119521,70.79078193827226],[-71.82251822518225,70.82793063820966],[-71.72891728917288,70.83806210182897],[-71.5921159211592,70.8735222244965],[-71.32211322113221,70.88703084265558],[-71.30051300513004,70.8853422653857],[-71.2141121411214,70.8549478745278],[-71.19611196111961,70.85325929725792],[-71.17451174511744,70.8566364517977],[-71.18171181711817,70.86676791541697],[-71.25371253712537,70.90053946081463],[-71.27171271712717,70.90560519262428],[-71.28971289712896,70.90729376989415],[-71.28251282512825,70.9224909653231],[-71.27531275312752,70.93262242894241],[-71.24651246512465,70.94613104710146],[-71.23571235712356,70.95457393345089],[-71.22851228512285,70.96301681980029],[-71.22491224912248,70.97145970614972],[-71.22131221312213,70.98327974703889],[-71.20331203312033,71.00691982881725],[-71.1781117811178,71.02549417878595],[-71.14931149311492,71.03731421967512],[-70.98370983709837,71.07108576507278],[-70.86130861308612,71.10823446501021],[-70.78570785707856,71.11498877408974],[-70.71370713707137,71.10316873320056],[-70.6381063810638,71.0778400741523],[-70.620106201062,71.0693971878029],[-70.58770587705877,71.03393706513538],[-70.58050580505805,71.02549417878595],[-70.57690576905769,71.0018540970076],[-70.57330573305732,70.9934112106582],[-70.53010530105301,70.95963966526054],[-70.51570515705157,70.93768816075206],[-70.52290522905228,70.9140480789737],[-70.54450544505444,70.89716230627488],[-70.71370713707137,70.83975067909887],[-70.72450724507245,70.82961921547957],[-70.73890738907389,70.80935628824096],[-70.7461074610746,70.79922482462166],[-70.74970749707497,70.75532181560473],[-70.80730807308073,70.72492742474682],[-71.06651066510665,70.67595868392024],[-71.10251102511025,70.66076148849129],[-71.12051120511205,70.64218713852259],[-71.13131131311313,70.62192421128398],[-71.14211142111421,70.60503843858515],[-71.16371163711636,70.5915298204261],[-71.21051210512104,70.5813983568068],[-71.26451264512644,70.58308693407668],[-71.52731527315272,70.62023563401411],[-71.57771577715776,70.61348132493458],[-71.58851588515884,70.60841559312493],[-71.59571595715957,70.60334986131528],[-71.59571595715957,70.59490697496585],[-71.58851588515884,70.5813983568068],[-71.57771577715776,70.56957831591762],[-71.58491584915849,70.55775827502845],[-71.5921159211592,70.54762681140915],[-71.60291602916028,70.54087250232962],[-71.72891728917288,70.49696949331266],[-71.73611736117361,70.48852660696326],[-71.74331743317433,70.48177229788374],[-71.73971739717396,70.45982079337526],[-71.74691746917469,70.44968932975596],[-71.76491764917648,70.44293502067643],[-71.89091890918908,70.44293502067643],[-71.93411934119341,70.4361807115969],[-71.96651966519664,70.42098351616795],[-71.93771937719377,70.41422920708843],[-71.81171811718117,70.434492134327],[-71.73971739717396,70.42773782524748],[-71.72891728917288,70.4260492479776],[-71.72891728917288,70.41929493889808],[-71.74331743317433,70.35681757991242],[-71.76851768517685,70.32811176632441],[-71.80451804518044,70.30953741635568],[-71.85131851318513,70.2977173754665],[-71.82251822518225,70.29434022092676],[-71.78651786517865,70.30109453000628],[-71.7541175411754,70.31460314816533],[-71.67131671316713,70.37370335261124],[-71.6749167491675,70.39058912531007],[-71.6641166411664,70.41422920708843],[-71.63891638916388,70.45644363883548],[-71.64251642516425,70.45982079337526],[-71.65331653316532,70.46657510245478],[-71.66051660516605,70.46995225699456],[-71.55971559715597,70.51554384328139],[-71.50931509315093,70.54593823413927],[-71.51651516515165,70.57970977953693],[-71.48411484114841,70.58477551134658],[-71.45171451714516,70.58646408861645],[-71.41931419314193,70.58308693407668],[-71.39051390513904,70.5712668931875],[-71.44091440914409,70.55775827502845],[-71.41931419314193,70.5526925432188],[-71.34371343713437,70.56620116137785],[-71.31491314913148,70.5628240068381],[-71.25371253712537,70.54762681140915],[-71.22491224912248,70.5442496568694],[-71.20331203312033,70.5442496568694],[-71.18171181711817,70.5425610795995],[-71.16731167311673,70.53580677051997],[-71.16371163711636,70.51723242055127],[-71.24291242912429,70.41760636162817],[-71.26091260912608,70.3872119707703],[-71.27531275312752,70.34330896175334],[-71.28971289712896,70.33655465267381],[-71.31131311313112,70.33148892086416],[-71.32211322113221,70.31798030270511],[-71.31851318513185,70.30447168454603],[-71.3041130411304,70.29265164365685],[-71.27531275312752,70.27070013914837],[-71.31131311313112,70.22510855286154],[-71.32571325713256,70.21666566651214],[-71.37251372513725,70.19471416200366],[-71.36891368913689,70.18120554384461],[-71.3761137611376,70.16938550295544],[-71.39411394113941,70.16263119387588],[-71.4121141211412,70.16094261660601],[-71.41931419314193,70.15756546206626],[-71.43371433714337,70.13561395755778],[-71.44091440914409,70.12717107120835],[-71.430114301143,70.132236803018],[-71.4229142291423,70.13392538028788],[-71.40491404914049,70.13392538028788],[-71.41931419314193,70.11703960758905],[-71.5021150211502,70.0849566394613],[-71.51291512915128,70.07313659857212],[-71.53451534515345,70.03936505317446],[-71.54171541715417,70.02416785774551],[-71.52371523715237,70.02754501228529],[-71.50931509315093,70.03767647590456],[-71.48051480514805,70.06469371222269],[-71.45531455314553,70.08157948492152],[-71.35451354513545,70.1237939166686],[-71.340113401134,70.132236803018],[-71.33291332913329,70.14574542117705],[-71.32211322113221,70.16769692568553],[-71.31131311313112,70.18795985292414],[-71.29331293312933,70.20315704835309],[-71.24651246512465,70.2217313983218],[-71.24651246512465,70.23355143921097],[-71.21771217712177,70.2605686755291],[-71.21051210512104,70.27070013914837],[-71.21771217712177,70.27745444822793],[-71.22851228512285,70.28252018003758],[-71.23211232112321,70.29434022092676],[-71.22851228512285,70.30447168454603],[-71.19251192511925,70.33148892086416],[-71.19611196111961,70.33148892086416],[-71.19611196111961,70.33993180721359],[-71.19251192511925,70.35344042537264],[-71.1781117811178,70.36694904353169],[-71.16731167311673,70.3872119707703],[-71.15651156511565,70.3973434343896],[-71.14931149311492,70.40072058892935],[-71.14211142111421,70.405786320739],[-71.1349113491135,70.42942640251735],[-71.12771127711277,70.43786928886678],[-71.07731077310773,70.49021518423314],[-71.06291062910628,70.51047811147174],[-71.07011070110701,70.51723242055127],[-71.0521105211052,70.52398672963079],[-71.00531005310053,70.52398672963079],[-70.98730987309872,70.53074103871032],[-71.00171001710017,70.53749534778984],[-71.05571055710557,70.55100396594892],[-71.04131041310413,70.56957831591762],[-71.02691026910269,70.57970977953693],[-71.01251012510124,70.5915298204261],[-71.0089100891009,70.61685847947433],[-70.98370983709837,70.63374425217316],[-70.84330843308433,70.64725287033224],[-70.69210692106921,70.70297592023834],[-70.64530645306452,70.71141880658777],[-70.63090630906309,70.7181731156673],[-70.620106201062,70.72492742474682],[-70.61650616506165,70.72999315655647],[-70.55530555305553,70.74181319744565],[-70.5121051210512,70.74181319744565],[-70.4941049410494,70.7468789292553],[-70.44730447304472,70.76883043376378],[-70.39690396903968,70.78402762919274],[-70.23490234902349,70.80091340189156],[-69.91449914499145,70.88027653357605],[-69.87489874898749,70.8836536881158],[-69.81729817298172,70.87689937903627],[-69.79929799297993,70.8735222244965],[-69.78129781297812,70.86676791541697],[-69.77409774097741,70.8566364517977],[-69.77769777697776,70.84819356544827],[-69.7920979209792,70.83975067909887],[-69.79569795697957,70.82961921547957],[-69.80649806498064,70.81442202005061],[-69.86769867698676,70.77727332011321],[-69.95769957699576,70.73505888836613],[-70.2061020610206,70.65738433395151],[-70.28170281702816,70.64218713852259],[-70.40770407704076,70.64218713852259],[-70.44730447304472,70.63543282944306],[-70.47970479704797,70.61348132493458],[-70.46890468904688,70.6016612840454],[-70.46170461704617,70.59659555223575],[-70.45450454504545,70.59321839769598],[-70.45090450904509,70.5729554704574],[-70.40410404104041,70.54087250232962],[-70.40050400504005,70.52736388417057],[-70.4221042210422,70.51216668874162],[-70.4941049410494,70.49021518423314],[-70.4941049410494,70.48346087515361],[-70.47610476104761,70.47839514334396],[-70.45450454504545,70.47839514334396],[-70.36090360903609,70.50034664785244],[-70.31050310503105,70.50372380239219],[-70.32850328503285,70.53918392505975],[-70.35370353703537,70.55944685229832],[-70.38250382503824,70.57970977953693],[-70.41130411304113,70.60672701585506],[-70.39330393303932,70.61516990220446],[-70.37530375303753,70.61685847947433],[-70.32850328503285,70.61348132493458],[-70.19170191701916,70.62023563401411],[-70.10170101701017,70.61179274766468],[-70.07650076500765,70.61348132493458],[-70.06210062100621,70.63205567490328],[-70.05130051300513,70.63543282944306],[-70.04770047700477,70.61685847947433],[-70.04050040500405,70.59659555223575],[-70.02250022500225,70.6101041703948],[-69.97929979299792,70.65400717941176],[-69.95769957699576,70.66076148849129],[-69.90009900099001,70.66751579757081],[-69.85689856898568,70.6894673020793],[-69.80289802898028,70.68271299299977],[-69.77409774097741,70.6894673020793],[-69.78489784897849,70.69115587934917],[-69.81009810098101,70.70297592023834],[-69.78129781297812,70.71986169293717],[-69.7560975609756,70.71479596112755],[-69.71289712897129,70.6894673020793],[-69.68049680496804,70.68609014753955],[-69.6660966609666,70.69284445661907],[-69.65889658896589,70.708041652048],[-69.65169651696516,70.72999315655647],[-69.63729637296373,70.7485675065252],[-69.61569615696156,70.76376470195413],[-69.59049590495904,70.77389616557343],[-69.47169471694717,70.79078193827226],[-69.40329403294032,70.79078193827226],[-69.40689406894069,70.78065047465296],[-69.41049410494105,70.77727332011321],[-69.27369273692736,70.78740478373248],[-69.20169201692016,70.77896189738308],[-69.1260912609126,70.73337031109625],[-69.09729097290972,70.72323884747695],[-68.73008730087301,70.65400717941176],[-68.36288362883629,70.58477551134658],[-68.33768337683377,70.5712668931875],[-68.2980829808298,70.55775827502845],[-68.29088290882909,70.55438112048867],[-68.28368283682836,70.5425610795995],[-68.280082800828,70.52905246144044],[-68.280082800828,70.51723242055127],[-68.28728287282873,70.50710095693196],[-68.2980829808298,70.49696949331266],[-68.34488344883448,70.46995225699456],[-68.35928359283592,70.46488652518491],[-68.37368373683736,70.463197947915],[-68.38448384483844,70.45813221610535],[-68.39168391683917,70.434492134327],[-68.40248402484025,70.42773782524748],[-68.43488434884348,70.42267209343782],[-68.44568445684456,70.4074748980089],[-68.44568445684456,70.39058912531007],[-68.460084600846,70.37370335261124],[-68.48888488884889,70.3686376208016],[-68.52848528485285,70.37876908442087],[-68.56448564485645,70.39396627984982],[-68.58248582485824,70.41085205254865],[-68.57888578885789,70.42098351616795],[-68.55368553685537,70.434492134327],[-68.54648546485464,70.44124644340653],[-68.55368553685537,70.46150937064513],[-68.56808568085681,70.46826367972466],[-68.58968589685897,70.46657510245478],[-68.60768607686076,70.463197947915],[-68.62928629286293,70.4547550615656],[-68.65448654486545,70.44124644340653],[-68.67248672486724,70.42267209343782],[-68.66888668886689,70.40409774346912],[-68.65448654486545,70.38214623896064],[-68.65448654486545,70.36188331172204],[-68.66528665286653,70.34499753902324],[-68.68328683286832,70.33148892086416],[-68.71928719287193,70.32304603451476],[-68.8380883808838,70.31460314816533],[-68.90648906489065,70.2977173754665],[-69.01449014490144,70.30447168454603],[-69.09729097290972,70.28252018003758],[-69.13689136891368,70.2791430254978],[-69.21249212492124,70.28420875730745],[-69.23049230492305,70.28252018003758],[-69.27369273692736,70.27238871641828],[-69.31329313293132,70.26732298460863],[-69.36369363693636,70.25719152098932],[-69.47169471694717,70.24874863463992],[-69.48609486094861,70.2403057482905],[-69.5040950409504,70.22510855286154],[-69.54369543695437,70.21835424378202],[-69.61569615696156,70.21666566651214],[-69.72369723697237,70.18120554384461],[-69.81009810098101,70.16600834841566],[-69.82089820898209,70.16094261660601],[-69.83169831698316,70.15249973025661],[-69.83529835298353,70.14405684390718],[-69.83889838898389,70.13561395755778],[-69.84249842498424,70.12717107120835],[-69.86769867698676,70.10690814396978],[-69.90009900099001,70.0933995258107],[-69.93609936099361,70.08326806219142],[-70.08730087300873,70.06807086676247],[-70.1161011610116,70.05456224860339],[-70.15570155701556,70.04611936225399],[-70.17730177301773,70.03261074409494],[-70.18090180901808,70.02079070320576],[-70.15210152101521,70.01741354866598],[-70.1161011610116,70.02585643501538],[-70.06210062100621,70.05793940314317],[-70.02610026100261,70.06469371222269],[-69.95049950499505,70.05962798041304],[-69.87849878498784,70.04443078498412],[-69.85689856898568,70.03261074409494],[-69.8280982809828,70.01234781685633],[-69.81369813698137,69.99208488961773],[-69.83169831698316,69.98364200326833],[-70.00090000900009,69.9954620441575],[-70.03690036900369,69.99039631234785],[-70.11250112501125,69.97013338510928],[-70.14490144901448,69.97013338510928],[-70.19170191701916,69.9583133442201],[-70.20970209702097,69.9481818806008],[-70.21690216902168,69.9481818806008],[-70.22410224102241,69.94480472606102],[-70.22770227702277,69.9380504169815],[-70.22410224102241,69.93467326244172],[-70.22050220502204,69.92960753063207],[-70.21690216902168,69.92454179882245],[-70.22050220502204,69.92116464428267],[-70.2421024210242,69.90765602612362],[-70.26730267302672,69.90090171704406],[-70.32130321303212,69.89414740796454],[-70.34290342903428,69.88908167615489],[-70.3681036810368,69.87219590345606],[-70.3861038610386,69.86544159437653],[-70.39690396903968,69.86375301710666],[-70.43650436504365,69.86544159437653],[-70.44730447304472,69.86375301710666],[-70.47250472504724,69.84517866713796],[-70.37170371703716,69.84349008986806],[-70.33570335703357,69.85362155348736],[-70.09090090900908,69.95493618968032],[-70.05490054900548,69.96337907602972],[-69.93249932499324,69.96844480783938],[-69.91089910899109,69.96506765329963],[-69.87489874898749,69.95155903514055],[-69.85329853298532,69.95324761241045],[-69.81369813698137,69.96337907602972],[-69.78489784897849,69.96506765329963],[-69.75969759697597,69.97351053964903],[-69.74169741697416,69.9853305805382],[-69.74169741697416,70.00390493050693],[-69.75249752497524,70.01572497139611],[-69.76329763297633,70.02247928047564],[-69.77769777697776,70.02585643501538],[-69.7920979209792,70.03429932136481],[-69.80289802898028,70.04443078498412],[-69.80289802898028,70.04949651679377],[-69.80289802898028,70.06807086676247],[-69.7920979209792,70.0849566394613],[-69.77049770497705,70.10184241216012],[-69.720097200972,70.12717107120835],[-69.68409684096841,70.13899111209753],[-69.20889208892089,70.19302558473379],[-69.15849158491585,70.18795985292414],[-69.07929079290793,70.16938550295544],[-69.0360903609036,70.16769692568553],[-69.01449014490144,70.18795985292414],[-69.11169111691116,70.20146847108319],[-69.12969129691297,70.21666566651214],[-69.10089100891008,70.22004282105192],[-69.0000900009,70.20146847108319],[-68.95688956889569,70.19977989381331],[-68.70488704887049,70.20991135743262],[-68.67968679686797,70.20146847108319],[-68.6760867608676,70.19640273927354],[-68.67248672486724,70.18795985292414],[-68.66888668886689,70.17951696657471],[-68.65448654486545,70.17276265749518],[-68.65088650886509,70.16431977114578],[-68.64368643686437,70.14743399844696],[-68.75888758887588,70.10521956669987],[-68.7480874808748,70.09171094854082],[-68.73368733687336,70.07820233038177],[-68.79128791287913,70.04105363044434],[-68.86328863288632,70.01910212593586],[-69.08649086490864,69.9853305805382],[-69.12249122491224,69.9751991169189],[-69.15849158491585,69.95324761241045],[-69.19449194491945,69.9380504169815],[-69.21969219692197,69.93129610790197],[-69.24849248492484,69.91103318066337],[-69.28449284492845,69.90259029431397],[-69.30969309693097,69.89077025342479],[-69.37449374493744,69.84349008986806],[-69.40689406894069,69.829981471709],[-69.44289442894429,69.82153858535958],[-69.47889478894788,69.81816143081983],[-69.70929709297093,69.84517866713796],[-69.74889748897489,69.84180151259818],[-69.78849788497885,69.83167004897888],[-69.84249842498424,69.80634138993065],[-69.86049860498605,69.79452134904147],[-69.86769867698676,69.7810127308824],[-69.8820988209882,69.75061834002452],[-69.88929889298893,69.73542114459556],[-69.91089910899109,69.72191252643651],[-69.95769957699576,69.70333817646781],[-69.97569975699757,69.69151813557863],[-69.99009990099901,69.67800951741955],[-69.99729997299973,69.67125520834003],[-70.00090000900009,69.66112374472073],[-70.00090000900009,69.65099228110142],[-70.00450004500044,69.6357950856725],[-70.0081000810008,69.6256636220532],[-69.98289982899828,69.6172207357038],[-69.9648996489965,69.6357950856725],[-69.95049950499505,69.66112374472073],[-69.93609936099361,69.6746323628798],[-69.90369903699036,69.68138667195933],[-69.86409864098641,69.69827244465816],[-69.83169831698316,69.72022394916664],[-69.81009810098101,69.74217545367512],[-69.81009810098101,69.75061834002452],[-69.81369813698137,69.7624383809137],[-69.81369813698137,69.772569844533],[-69.7920979209792,69.7810127308824],[-69.76329763297633,69.79958708085113],[-69.74529745297453,69.80465281266078],[-69.60129601296012,69.8114071217403],[-69.55449554495544,69.80465281266078],[-69.5040950409504,69.78607846269205],[-69.48249482494825,69.78438988542217],[-69.38889388893888,69.78438988542217],[-69.36729367293673,69.78945561723182],[-69.21249212492124,69.88739309888501],[-69.1620916209162,69.89752456250432],[-69.10449104491045,69.92116464428267],[-69.01449014490144,69.93467326244172],[-68.94968949689496,69.95324761241045],[-68.9280892808928,69.95493618968032],[-68.78048780487805,69.95155903514055],[-68.70488704887049,69.93467326244172],[-68.69408694086941,69.93636183971162],[-68.69048690486905,69.9481818806008],[-68.6760867608676,69.94480472606102],[-68.66168661686616,69.94142757152127],[-68.65088650886509,69.94311614879115],[-68.63648636486364,69.9481818806008],[-68.64368643686437,69.94987045787067],[-68.64728647286472,69.95324761241045],[-68.65448654486545,69.95493618968032],[-68.66528665286653,69.95493618968032],[-68.6580865808658,69.96506765329963],[-68.6580865808658,69.97351053964903],[-68.66168661686616,69.98026484872855],[-68.67248672486724,69.98364200326833],[-68.65088650886509,69.99039631234785],[-68.63288632886328,69.99039631234785],[-68.61128611286112,69.99208488961773],[-68.57888578885789,70.01572497139611],[-68.54648546485464,70.02585643501538],[-68.5320853208532,70.03767647590456],[-68.55368553685537,70.03767647590456],[-68.56448564485645,70.04443078498412],[-68.56448564485645,70.05287367133351],[-68.54648546485464,70.05793940314317],[-68.53568535685356,70.05625082587329],[-68.51768517685177,70.05287367133351],[-68.46728467284673,70.04949651679377],[-68.460084600846,70.05118509406364],[-68.460084600846,70.05456224860339],[-68.45648456484564,70.06469371222269],[-68.45648456484564,70.06807086676247],[-68.44208442084421,70.07313659857212],[-68.4240842408424,70.07144802130222],[-68.39168391683917,70.06469371222269],[-68.33768337683377,70.06807086676247],[-68.28368283682836,70.0849566394613],[-68.19008190081901,70.12717107120835],[-68.21528215282153,70.13392538028788],[-68.32328323283232,70.1423682666373],[-68.33048330483304,70.14743399844696],[-68.31968319683196,70.15418830752648],[-68.29448294482944,70.16094261660601],[-68.29448294482944,70.16769692568553],[-68.3340833408334,70.16600834841566],[-68.34848348483484,70.17276265749518],[-68.34848348483484,70.18795985292414],[-68.33768337683377,70.19471416200366],[-68.32688326883269,70.19302558473379],[-68.30888308883088,70.18964843019401],[-68.29448294482944,70.18795985292414],[-68.31608316083161,70.20991135743262],[-68.32328323283232,70.22341997559167],[-68.30888308883088,70.2301742846712],[-68.29088290882909,70.23355143921097],[-68.24048240482405,70.2605686755291],[-68.17568175681757,70.28252018003758],[-68.15048150481505,70.29940595273641],[-68.15768157681576,70.31798030270511],[-68.07848078480784,70.32642318905451],[-68.05328053280532,70.32473461178463],[-68.04968049680497,70.32135745724486],[-68.03888038880389,70.30953741635568],[-68.03168031680316,70.30447168454603],[-68.02088020880208,70.29940595273641],[-68.00648006480064,70.29434022092676],[-67.8660786607866,70.2791430254978],[-67.80847808478084,70.26394583006885],[-67.76527765277652,70.24368290283027],[-67.740077400774,70.22848570740132],[-67.58527585275853,70.15925403933613],[-67.54567545675457,70.14743399844696],[-67.49167491674916,70.11535103031918],[-67.47727477274772,70.10184241216012],[-67.44127441274412,70.07989090765165],[-67.43047430474304,70.07144802130222],[-67.42327423274233,70.074825175842],[-67.4160741607416,70.074825175842],[-67.41247412474124,70.07144802130222],[-67.40527405274052,70.06469371222269],[-67.4160741607416,70.06469371222269],[-67.39087390873908,70.05287367133351],[-67.37647376473764,70.04443078498412],[-67.36567365673656,70.03429932136481],[-67.3620736207362,70.02923358955516],[-67.3620736207362,70.02416785774551],[-67.3620736207362,70.01403639412621],[-67.35847358473585,70.01065923958646],[-67.35127351273512,70.00897066231656],[-67.3440734407344,70.00728208504668],[-67.34047340473404,69.99883919869728],[-67.25047250472504,69.96337907602972],[-67.22527225272252,69.9481818806008],[-67.2180721807218,69.92623037609232],[-67.2180721807218,69.88063878980549],[-67.20727207272073,69.86206443983679],[-67.1640716407164,69.82491573989935],[-67.15327153271532,69.80465281266078],[-67.17127171271713,69.7911441945017],[-67.13887138871388,69.7624383809137],[-67.12447124471244,69.74555260821487],[-67.11367113671136,69.72866683551604],[-67.34767347673477,69.71684679462686],[-67.55647556475564,69.74048687640521],[-67.61767617676176,69.75737264910404],[-67.66447664476644,69.76074980364382],[-67.7040770407704,69.77425842180287],[-67.74727747277473,69.7827013081523],[-68.01368013680137,69.77594699907274],[-68.05688056880568,69.76919268999322],[-68.07488074880749,69.76412695818357],[-68.08928089280893,69.75737264910404],[-68.11088110881109,69.74217545367512],[-68.12528125281253,69.73542114459556],[-68.19368193681936,69.72191252643651],[-68.22608226082261,69.71009248554734],[-68.24048240482405,69.68476382649908],[-68.25488254882548,69.66787805380025],[-68.28728287282873,69.65099228110142],[-68.32328323283232,69.63748366294237],[-68.34848348483484,69.63241793113272],[-68.54648546485464,69.63241793113272],[-68.66528665286653,69.64761512656167],[-68.70488704887049,69.6459265492918],[-68.72648726487265,69.6459265492918],[-68.72288722887228,69.64254939475202],[-68.73008730087301,69.64086081748215],[-68.75528755287553,69.63917224021225],[-68.80568805688057,69.62397504478332],[-68.9640896408964,69.60033496300497],[-69.01449014490144,69.58007203576636],[-69.02889028890289,69.57838345849649],[-69.10449104491045,69.57331772668684],[-69.14409144091441,69.56656341760731],[-69.2160921609216,69.54123475855906],[-69.25929259292593,69.53448044947953],[-69.70569705697056,69.57162914941696],[-69.78849788497885,69.56656341760731],[-69.94689946899469,69.5361690267494],[-70.0081000810008,69.54292333582893],[-70.02250022500225,69.5361690267494],[-70.01890018900188,69.52603756313013],[-69.98649986499865,69.52097183132048],[-69.9540995409954,69.52097183132048],[-69.88569885698857,69.5074632131614],[-69.8460984609846,69.51928325405058],[-69.80289802898028,69.5361690267494],[-69.76329763297633,69.54461191309883],[-69.65889658896589,69.55136622217836],[-69.29169291692916,69.5091517904313],[-69.23769237692376,69.51252894497105],[-69.180091800918,69.52434898586023],[-69.14409144091441,69.52266040859035],[-69.13329133291333,69.52603756313013],[-69.11169111691116,69.53448044947953],[-69.09729097290972,69.5361690267494],[-69.04329043290433,69.53448044947953],[-69.01089010890108,69.5361690267494],[-68.95328953289533,69.56656341760731],[-68.76608766087661,69.59189207665554],[-68.5860858608586,69.59020349938567],[-68.45648456484564,69.56656341760731],[-68.39888398883988,69.54798906763858],[-68.00648006480064,69.46187162687457],[-67.91647916479164,69.45511731779504],[-67.87327873278733,69.45849447233482],[-67.79047790477904,69.48044597684327],[-67.59247592475924,69.48044597684327],[-67.54567545675457,69.470314513224],[-67.22887228872288,69.46356020414447],[-66.78966789667896,69.34029406344303],[-66.77526775267752,69.3335397543635],[-66.73926739267392,69.30145678623572],[-66.72486724867248,69.29301389988632],[-66.71046710467104,69.28963674534654],[-66.69246692466925,69.28288243626702],[-66.67086670866708,69.26430808629829],[-66.65646656466565,69.24235658178983],[-66.64926649266492,69.22209365455123],[-66.65286652866529,69.20014215004275],[-66.66726667266673,69.18494495461383],[-66.74286742867429,69.13766479105709],[-66.78246782467825,69.13259905924744],[-66.97686976869768,69.1765020682644],[-67.16047160471604,69.18494495461383],[-67.20367203672036,69.17481349099452],[-67.20367203672036,69.1663706046451],[-67.19647196471965,69.16299345010535],[-67.18567185671856,69.15455056375592],[-67.21087210872108,69.1477962546764],[-67.25047250472504,69.1562391410258],[-67.32247322473225,69.18494495461383],[-67.35487354873548,69.19338784096323],[-67.39447394473945,69.18832210915357],[-67.46647466474664,69.1663706046451],[-67.50967509675097,69.16130487283544],[-67.67887678876788,69.1765020682644],[-67.90207902079021,69.2339136954404],[-67.93447934479344,69.24573373632958],[-67.99927999279993,69.25586519994889],[-68.0460804608046,69.27443954991759],[-68.09648096480964,69.28119385899711],[-68.19728197281972,69.31158824985502],[-68.23688236882369,69.3132768271249],[-68.34488344883448,69.29807963169594],[-68.67968679686797,69.32847402255385],[-69.01449014490144,69.35886841341173],[-69.20889208892089,69.30145678623572],[-69.25929259292593,69.27612812718749],[-69.23409234092341,69.26430808629829],[-69.20169201692016,69.27443954991759],[-69.13689136891368,69.3048339407755],[-69.0000900009,69.33522833163337],[-68.95328953289533,69.33860548617315],[-68.76968769687697,69.32171971347432],[-68.70128701287013,69.3048339407755],[-68.41688416884169,69.27612812718749],[-68.21888218882188,69.28457101353689],[-68.1720817208172,69.27612812718749],[-68.15768157681576,69.26937381810794],[-68.12888128881288,69.24742231359949],[-68.10368103681036,69.23897942725006],[-68.08928089280893,69.22884796363076],[-68.0820808208082,69.22040507728136],[-68.08568085680857,69.2153393454717],[-68.10008100081001,69.21365076820183],[-68.13968139681397,69.20351930458253],[-68.15768157681576,69.20183072731263],[-68.17928179281792,69.20351930458253],[-68.22248222482224,69.21365076820183],[-68.62568625686256,69.23729084998018],[-68.69408694086941,69.2237822318211],[-68.7840878408784,69.2153393454717],[-68.9640896408964,69.2237822318211],[-68.96048960489604,69.22209365455123],[-68.88488884888848,69.20351930458253],[-68.74448744487445,69.20351930458253],[-68.6760867608676,69.21365076820183],[-68.5320853208532,69.21027361366205],[-68.50688506885068,69.20183072731263],[-68.54288542885429,69.18832210915357],[-68.65088650886509,69.1663706046451],[-68.69048690486905,69.14441910013662],[-68.70488704887049,69.13935336832697],[-68.73008730087301,69.13597621378722],[-68.8020880208802,69.13935336832697],[-68.92088920889209,69.12077901835826],[-69.0360903609036,69.12246759562817],[-69.06849068490685,69.11402470927874],[-69.09729097290972,69.09207320477026],[-69.05049050490504,69.09207320477026],[-69.04329043290433,69.09376178204013],[-69.0360903609036,69.10389324565944],[-69.02889028890289,69.10558182292934],[-68.92448924489244,69.10558182292934],[-68.9280892808928,69.09713893657991],[-68.9280892808928,69.09207320477026],[-68.9280892808928,69.09038462750038],[-68.92448924489244,69.08531889569073],[-68.93528935289352,69.07349885480156],[-68.95328953289533,69.03803873213403],[-68.9640896408964,69.0295958457846],[-68.96048960489604,69.02453011397495],[-68.96768967689677,69.0110214958159],[-68.98208982089821,68.99751287765685],[-69.01809018090181,68.96880706406884],[-68.97848978489785,68.97387279587846],[-68.93168931689317,68.99582430038694],[-68.93168931689317,69.02284153670507],[-68.9280892808928,69.02621869124485],[-68.91728917289173,69.03128442305447],[-68.89928899288992,69.04648161848343],[-68.89568895688957,69.0498587730232],[-68.89568895688957,69.05492450483285],[-68.89208892088921,69.06674454572203],[-68.89208892088921,69.07181027753168],[-68.87768877688777,69.08531889569073],[-68.86328863288632,69.09207320477026],[-68.76608766087661,69.11064755473896],[-68.6760867608676,69.11402470927874],[-68.63288632886328,69.13935336832697],[-68.46368463684637,69.17481349099452],[-68.37368373683736,69.17987922280417],[-68.20088200882009,69.14948483194627],[-68.15768157681576,69.1477962546764],[-68.14688146881468,69.14610767740652],[-68.11448114481145,69.13259905924744],[-67.73647736477365,69.0397273094039],[-67.7040770407704,69.02284153670507],[-67.740077400774,69.01271007308577],[-67.95247952479524,69.00595576400625],[-67.97767977679776,68.99582430038694],[-67.96687966879668,68.98231568222789],[-67.99927999279993,68.97218421860859],[-68.04248042480424,68.97218421860859],[-68.24048240482405,69.00595576400625],[-68.39528395283952,69.00764434127612],[-68.43128431284312,68.99751287765685],[-68.46728467284673,68.99582430038694],[-68.47088470884708,68.9924471458472],[-68.47448474484744,68.99075856857729],[-68.48528485284852,68.98400425949777],[-68.48528485284852,68.98231568222789],[-68.49968499684996,68.98062710495802],[-68.5320853208532,68.98906999130742],[-68.550085500855,68.98400425949777],[-68.55368553685537,68.97387279587846],[-68.54648546485464,68.96374133225919],[-68.53568535685356,68.96542990952906],[-68.51768517685177,68.97218421860859],[-68.30168301683017,68.98569283676764],[-68.29448294482944,68.97556137314837],[-68.26928269282692,68.96374133225919],[-68.20448204482044,68.95867560044954],[-68.16128161281613,68.94685555956036],[-68.03888038880389,68.94854413683024],[-68.04968049680497,68.93334694140128],[-68.05328053280532,68.92659263232176],[-68.04968049680497,68.91983832324223],[-68.05688056880568,68.9113954368928],[-68.07488074880749,68.90801828235305],[-68.08928089280893,68.90632970508318],[-68.07128071280712,68.89957539600363],[-68.03168031680316,68.89788681873375],[-68.01368013680137,68.8928210869241],[-68.00288002880028,68.88606677784458],[-67.97407974079741,68.86580385060597],[-67.99927999279993,68.8556723869867],[-68.12888128881288,68.86918100514575],[-68.18288182881828,68.8826896233048],[-68.49248492484925,68.89957539600363],[-68.45648456484564,68.8843782005747],[-68.27648276482765,68.87593531422527],[-68.25848258482584,68.87086958241562],[-68.24048240482405,68.86242669606622],[-68.22248222482224,68.85736096425657],[-68.18288182881828,68.8539838097168],[-68.13248132481324,68.83709803701797],[-67.92727927279273,68.81176937796974],[-67.89127891278912,68.81345795523961],[-67.86967869678696,68.81176937796974],[-67.85527855278552,68.80332649162031],[-67.86967869678696,68.79657218254079],[-67.84447844478444,68.78981787346126],[-67.79767797677977,68.78981787346126],[-67.77247772477725,68.78475214165161],[-67.81927819278192,68.77293210076243],[-67.87687876878769,68.77124352349256],[-68.22248222482224,68.82527799612879],[-68.27648276482765,68.82358941885892],[-68.39888398883988,68.8455409233674],[-68.47448474484744,68.84216376882762],[-68.52848528485285,68.84891807790714],[-68.58248582485824,68.85060665517705],[-68.60768607686076,68.8455409233674],[-68.60768607686076,68.83878661428787],[-68.54288542885429,68.82696657339869],[-68.51048510485104,68.81683510977939],[-68.49248492484925,68.79657218254079],[-68.60408604086041,68.80332649162031],[-68.60408604086041,68.79657218254079],[-68.60048600486004,68.78812929619139],[-68.61848618486185,68.78644071892148],[-68.64728647286472,68.78812929619139],[-68.66528665286653,68.79319502800104],[-68.68688686886868,68.80332649162031],[-68.71568715687157,68.81176937796974],[-68.74448744487445,68.81345795523961],[-68.79128791287913,68.80163791435044],[-68.8380883808838,68.81683510977939],[-68.85968859688596,68.81514653250949],[-68.88848888488884,68.81176937796974],[-68.9640896408964,68.81683510977939],[-68.98928989289892,68.82527799612879],[-69.03969039690396,68.84722950063727],[-69.06129061290612,68.85229523244692],[-69.1620916209162,68.8539838097168],[-69.30249302493024,68.8826896233048],[-69.36369363693636,68.88100104603492],[-69.39609396093961,68.85904954152645],[-69.27009270092701,68.86073811879635],[-69.20169201692016,68.85229523244692],[-69.15129151291512,68.83203230520832],[-69.34929349293492,68.83540945974809],[-69.38169381693817,68.81683510977939],[-68.98928989289892,68.80332649162031],[-68.96048960489604,68.79657218254079],[-68.94608946089461,68.78644071892148],[-68.94968949689496,68.77968640984196],[-68.96048960489604,68.77293210076243],[-68.96048960489604,68.76280063714313],[-68.96768967689677,68.75773490533348],[-68.97848978489785,68.7560463280636],[-68.98928989289892,68.75435775079373],[-69.0000900009,68.7560463280636],[-69.0000900009,68.74929201898408],[-68.97488974889748,68.74253770990455],[-68.94968949689496,68.7459148644443],[-68.90288902889029,68.76280063714313],[-68.87768877688777,68.76786636895278],[-68.75168751687517,68.76111205987326],[-68.66528665286653,68.74253770990455],[-68.54648546485464,68.75266917352383],[-68.5140851408514,68.74253770990455],[-68.4960849608496,68.73409482355513],[-68.40248402484025,68.73578340082503],[-68.21168211682117,68.71552047358642],[-68.14328143281432,68.70201185542737],[-68.13248132481324,68.69694612361772],[-68.12888128881288,68.69188039180807],[-68.12168121681216,68.68850323726829],[-68.11088110881109,68.68681465999842],[-68.0460804608046,68.68681465999842],[-68.0460804608046,68.68174892818877],[-68.09648096480964,68.66655173275981],[-68.09648096480964,68.67330604183937],[-68.11088110881109,68.67161746456947],[-68.1720817208172,68.67330604183937],[-68.14688146881468,68.66486315548994],[-68.09648096480964,68.65979742368029],[-68.07488074880749,68.64628880552124],[-68.10728107281072,68.62940303282241],[-68.14688146881468,68.63784591917181],[-68.19008190081901,68.65135453733089],[-68.22608226082261,68.65979742368029],[-68.280082800828,68.65135453733089],[-68.35928359283592,68.62940303282241],[-68.39168391683917,68.63109161009228],[-68.64368643686437,68.66486315548994],[-68.72648726487265,68.65304311460076],[-68.7480874808748,68.65304311460076],[-68.76608766087661,68.65304311460076],[-68.7840878408784,68.64291165098146],[-68.78768787687876,68.63953449644171],[-68.8020880208802,68.63278018736216],[-68.8020880208802,68.62940303282241],[-68.8020880208802,68.62264872374288],[-68.8020880208802,68.61927156920311],[-68.82728827288273,68.61251726012358],[-68.88128881288813,68.61251726012358],[-68.90288902889029,68.60576295104406],[-68.88488884888848,68.60238579650428],[-68.84528845288453,68.59394291015488],[-68.82728827288273,68.59225433288498],[-68.79848798487984,68.59225433288498],[-68.76608766087661,68.59732006469463],[-68.73728737287372,68.61082868285371],[-68.71928719287193,68.61589441466333],[-68.69768697686976,68.62940303282241],[-68.68328683286832,68.63278018736216],[-68.62928629286293,68.63953449644171],[-68.48528485284852,68.62264872374288],[-68.47808478084781,68.61927156920311],[-68.47448474484744,68.61251726012358],[-68.47808478084781,68.60576295104406],[-68.48168481684816,68.6006972192344],[-68.48888488884889,68.59732006469463],[-68.50688506885068,68.59563148742475],[-68.54648546485464,68.58718860107533],[-68.71568715687157,68.58381144653558],[-68.75888758887588,68.5703028283765],[-68.460084600846,68.56354851929697],[-68.44208442084421,68.56861425110662],[-68.43488434884348,68.57536856018615],[-68.42768427684277,68.58550002380545],[-68.42048420484204,68.59394291015488],[-68.4060840608406,68.6006972192344],[-68.37728377283773,68.6006972192344],[-68.35208352083521,68.5990086419645],[-68.3340833408334,68.59394291015488],[-68.21528215282153,68.58887717834523],[-68.19728197281972,68.57536856018615],[-68.19008190081901,68.5703028283765],[-68.14328143281432,68.57874571472593],[-68.12888128881288,68.5719914056464],[-68.12888128881288,68.56523709656688],[-68.13248132481324,68.55848278748732],[-68.12888128881288,68.55003990113792],[-68.1180811808118,68.5415970147885],[-68.11088110881109,68.53990843751862],[-68.10008100081001,68.5415970147885],[-68.08568085680857,68.5432855920584],[-68.02448024480245,68.5432855920584],[-68.02088020880208,68.5415970147885],[-68.01728017280172,68.5331541284391],[-68.01368013680137,68.52977697389932],[-68.00288002880028,68.52977697389932],[-67.9920799207992,68.52977697389932],[-67.97407974079741,68.53653128297884],[-67.94887948879489,68.55510563294757],[-67.93447934479344,68.56017136475722],[-67.91647916479164,68.55003990113792],[-67.91647916479164,68.5432855920584],[-67.92727927279273,68.53653128297884],[-67.93087930879308,68.52808839662944],[-67.91647916479164,68.50444831485109],[-67.91287912879129,68.48080823307274],[-67.90567905679056,68.47236534672331],[-67.90927909279092,68.45547957402448],[-67.94527945279452,68.41664229681717],[-67.95967959679597,68.39975652411835],[-67.94167941679416,68.404822255928],[-67.92367923679237,68.41326514227742],[-67.90927909279092,68.42170802862682],[-67.89487894878948,68.433528069516],[-67.89127891278912,68.44534811040518],[-67.88047880478804,68.47236534672331],[-67.8660786607866,68.49769400577156],[-67.8660786607866,68.50951404666074],[-67.86967869678696,68.52133408754992],[-67.86967869678696,68.53653128297884],[-67.85887858878588,68.55003990113792],[-67.8480784807848,68.54835132386805],[-67.83367833678336,68.5415970147885],[-67.81567815678156,68.53653128297884],[-67.70047700477005,68.55341705567767],[-67.66447664476644,68.56523709656688],[-67.64287642876428,68.56354851929697],[-67.62127621276213,68.55848278748732],[-67.6140761407614,68.55341705567767],[-67.60687606876068,68.54666274659814],[-67.59247592475924,68.5432855920584],[-67.54927549275493,68.55003990113792],[-67.53487534875349,68.55003990113792],[-67.52047520475205,68.54835132386805],[-67.5060750607506,68.5432855920584],[-67.49167491674916,68.52977697389932],[-67.53847538475384,68.51120262393061],[-67.5960759607596,68.50613689212096],[-67.62847628476284,68.49262827396191],[-67.60327603276032,68.4537909967546],[-67.60327603276032,68.43859380132565],[-67.61047610476105,68.4250851831666],[-67.61767617676176,68.41326514227742],[-67.62127621276213,68.39975652411835],[-67.61767617676176,68.3862479059593],[-67.60687606876068,68.38455932868942],[-67.5960759607596,68.38793648322917],[-67.56007560075601,68.41664229681717],[-67.54927549275493,68.42846233770635],[-67.54567545675457,68.4436595331353],[-67.54927549275493,68.45716815129438],[-67.56727567275672,68.47574250126308],[-67.57447574475745,68.48925111942214],[-67.54927549275493,68.49262827396191],[-67.45927459274593,68.48925111942214],[-67.43407434074341,68.49600542850166],[-67.41967419674197,68.49769400577156],[-67.40527405274052,68.49262827396191],[-67.39447394473945,68.47911965580283],[-67.38727387273872,68.47574250126308],[-67.37647376473764,68.47574250126308],[-67.37647376473764,68.49262827396191],[-67.35487354873548,68.50107116031131],[-67.32967329673296,68.50107116031131],[-67.30807308073081,68.49600542850166],[-67.30087300873008,68.48587396488239],[-67.29367293672937,68.47236534672331],[-67.28647286472864,68.45885672856426],[-67.27207272072721,68.4537909967546],[-67.26127261272612,68.46392246037391],[-67.2540725407254,68.48080823307274],[-67.24327243272432,68.49093969669201],[-67.22167221672217,68.47911965580283],[-67.21447214472144,68.46392246037391],[-67.21087210872108,68.45210241948473],[-67.20727207272073,68.4436595331353],[-67.18927189271892,68.433528069516],[-67.18927189271892,68.42846233770635],[-67.27207272072721,68.433528069516],[-67.31527315273152,68.43015091497625],[-67.34047340473404,68.41326514227742],[-67.12447124471244,68.41326514227742],[-67.110071100711,68.42001945135695],[-67.10287102871028,68.42846233770635],[-67.09927099270992,68.44703668767508],[-67.09567095670957,68.4537909967546],[-67.11367113671136,68.46729961491366],[-67.12447124471244,68.47405392399318],[-67.1280712807128,68.48249681034261],[-67.06327063270632,68.47574250126308],[-67.00927009270092,68.45716815129438],[-66.98766987669876,68.4436595331353],[-66.96966969669697,68.44197095586543],[-66.930069300693,68.4537909967546],[-66.86166861668616,68.46729961491366],[-66.79326793267933,68.46561103764378],[-66.66366663666636,68.44028237859555],[-66.66366663666636,68.433528069516],[-66.72846728467285,68.42846233770635],[-66.76446764467644,68.43183949224613],[-66.78966789667896,68.43183949224613],[-66.8040680406804,68.42339660589673],[-66.80046800468004,68.4065108331979],[-66.82926829268293,68.40819941046777],[-66.86166861668616,68.41833087408708],[-66.89406894068941,68.42170802862682],[-66.92286922869228,68.41326514227742],[-66.91926919269193,68.39300221503882],[-66.94086940869408,68.37949359687977],[-66.96966969669697,68.36936213326047],[-67.02367023670236,68.36091924691107],[-67.05247052470524,68.36260782418094],[-67.11367113671136,68.37273928780024],[-67.18567185671856,68.39300221503882],[-67.33327333273333,68.40144510138825],[-67.37287372873729,68.39300221503882],[-67.40167401674016,68.3963793695786],[-67.4160741607416,68.39300221503882],[-67.41247412474124,68.39131363776895],[-67.41247412474124,68.38962506049907],[-67.40887408874089,68.3862479059593],[-67.44127441274412,68.37611644233999],[-67.7940779407794,68.33727916513268],[-67.83727837278373,68.32377054697363],[-67.85527855278552,68.31532766062423],[-67.86967869678696,68.30350761973506],[-67.87687876878769,68.28324469249645],[-67.86967869678696,68.2680474970675],[-67.85167851678517,68.26129318798797],[-67.82647826478265,68.2697360743374],[-67.82647826478265,68.27480180614702],[-67.81927819278192,68.29337615611576],[-67.81927819278192,68.2967533106555],[-67.80847808478084,68.2984418879254],[-67.75087750877509,68.31701623789411],[-67.72567725677257,68.32039339243386],[-67.64647646476465,68.31870481516398],[-67.56727567275672,68.33727916513268],[-67.54927549275493,68.34403347421224],[-67.53847538475384,68.34403347421224],[-67.52767527675276,68.34403347421224],[-67.53487534875349,68.33221343332306],[-67.54927549275493,68.32883627878329],[-67.56367563675636,68.32545912424351],[-67.57447574475745,68.31701623789411],[-67.58167581675816,68.30350761973506],[-67.5780757807578,68.29506473338563],[-67.57447574475745,68.28662184703623],[-67.57447574475745,68.27649038341693],[-67.5960759607596,68.26467034252775],[-67.69687696876969,68.2494731470988],[-67.69327693276932,68.2494731470988],[-67.69327693276932,68.24609599255902],[-67.69687696876969,68.24271883801927],[-67.68247682476824,68.2410302607494],[-67.63567635676357,68.2494731470988],[-67.5780757807578,68.25285030163857],[-67.56007560075601,68.25622745617832],[-67.54927549275493,68.26129318798797],[-67.5420754207542,68.2697360743374],[-67.53487534875349,68.28999900157598],[-67.5420754207542,68.29168757884585],[-67.5420754207542,68.2967533106555],[-67.5420754207542,68.30350761973506],[-67.53487534875349,68.30857335154468],[-67.41967419674197,68.34572205148211],[-67.40527405274052,68.35585351510142],[-67.35487354873548,68.35754209237129],[-67.32967329673296,68.34909920602189],[-67.33687336873368,68.32377054697363],[-67.31527315273152,68.32545912424351],[-67.30087300873008,68.33221343332306],[-67.27207272072721,68.35078778329176],[-67.25767257672577,68.35754209237129],[-67.23967239672396,68.35923066964116],[-67.2180721807218,68.36091924691107],[-67.19647196471965,68.35923066964116],[-67.03087030870309,68.32714770151341],[-67.01287012870128,68.31701623789411],[-67.06687066870668,68.3068847742748],[-67.23967239672396,68.2967533106555],[-67.2360723607236,68.29506473338563],[-67.22527225272252,68.28999900157598],[-67.22527225272252,68.28493326976633],[-67.22887228872288,68.28324469249645],[-67.23247232472325,68.28324469249645],[-67.23967239672396,68.28324469249645],[-67.27927279272792,68.27480180614702],[-67.31527315273152,68.25453887890845],[-67.33687336873368,68.22583306532044],[-67.3260732607326,68.18699578811314],[-67.35487354873548,68.16335570633478],[-67.38367383673837,68.15491281998536],[-67.4520745207452,68.15322424271548],[-67.4880748807488,68.15828997452513],[-67.52767527675276,68.16842143814443],[-67.56367563675636,68.17517574722396],[-67.60327603276032,68.16673286087453],[-67.56367563675636,68.15322424271548],[-67.39807398073981,68.12789558366725],[-67.380073800738,68.12958416093713],[-67.36567365673656,68.13633847001665],[-67.35127351273512,68.14646993363596],[-67.31527315273152,68.15660139725526],[-67.30087300873008,68.16673286087453],[-67.30807308073081,68.17348716995409],[-67.29727297272973,68.18024147903361],[-67.28647286472864,68.18699578811314],[-67.27567275672756,68.19543867446254],[-67.27567275672756,68.20388156081196],[-67.28287282872829,68.21232444716136],[-67.28647286472864,68.22076733351079],[-67.290072900729,68.2308987971301],[-67.29367293672937,68.24271883801927],[-67.13527135271352,68.28324469249645],[-67.12087120871209,68.28999900157598],[-67.06687066870668,68.2967533106555],[-67.02727027270272,68.2967533106555],[-67.0020700207002,68.29337615611576],[-66.99126991269912,68.28999900157598],[-66.98766987669876,68.2883104243061],[-66.98046980469805,68.28324469249645],[-66.97686976869768,68.2781789606868],[-66.94446944469445,68.27311322887715],[-66.89766897668976,68.2596046107181],[-66.78966789667896,68.2494731470988],[-66.76446764467644,68.24271883801927],[-66.77526775267752,68.23427595166984],[-66.77526775267752,68.22752164259032],[-66.77526775267752,68.22076733351079],[-66.77886778867789,68.21401302443127],[-66.78966789667896,68.20725871535174],[-66.81126811268112,68.20050440627219],[-66.8220682206822,68.19375009719266],[-66.83646836468364,68.17855290176374],[-66.84366843668437,68.16166712906491],[-66.84366843668437,68.14478135636608],[-66.82566825668256,68.1329613154769],[-66.84726847268472,68.11945269731783],[-66.95886958869588,68.07554968830087],[-66.96966969669697,68.06035249287194],[-66.96966969669697,68.03671241109359],[-66.95886958869588,68.02658094747429],[-66.95166951669516,68.01982663839476],[-66.94446944469445,68.01644948385498],[-66.930069300693,68.01982663839476],[-66.930069300693,68.02826952474416],[-66.92646926469264,68.04008956563334],[-66.92286922869228,68.05022102925264],[-66.90486904869049,68.0654182246816],[-66.8220682206822,68.102566924619],[-66.79326793267933,68.11100981096843],[-66.77526775267752,68.11100981096843],[-66.76446764467644,68.11438696550817],[-66.750067500675,68.131272738207],[-66.73926739267392,68.13971562455643],[-66.7140671406714,68.14815851090583],[-66.69246692466925,68.14478135636608],[-66.6780667806678,68.1329613154769],[-66.67086670866708,68.11100981096843],[-66.67086670866708,68.1126983882383],[-66.6780667806678,68.10932123369852],[-66.68166681666817,68.10594407915877],[-66.68526685266852,68.10087834734912],[-66.68166681666817,68.09918977007925],[-66.68166681666817,68.09750119280935],[-66.6780667806678,68.0941240382696],[-66.6780667806678,68.08736972919004],[-66.6780667806678,68.05022102925264],[-66.68886688866888,68.03164667928394],[-66.70326703267033,68.01476090658511],[-66.72126721267212,67.99956371115616],[-66.73926739267392,67.98943224753685],[-66.69966699666996,67.99280940207663],[-66.66726667266673,68.00800659750558],[-66.64566645666456,68.03164667928394],[-66.63126631266313,68.10763265642865],[-66.60966609666096,68.13464989274678],[-66.58086580865809,68.14815851090583],[-66.54126541265413,68.15322424271548],[-66.34686346863468,68.13633847001665],[-66.31446314463145,68.12958416093713],[-66.33246332463324,68.09581261553947],[-66.38286382863828,68.08736972919004],[-66.47646476464764,68.08568115192017],[-66.47646476464764,68.07723826557077],[-66.390063900639,68.07048395649124],[-66.30006300063,68.09074688372982],[-66.28566285662856,68.09074688372982],[-66.24966249662496,68.08568115192017],[-66.23886238862389,68.08230399738042],[-66.23886238862389,68.073861111031],[-66.23886238862389,68.0654182246816],[-66.23886238862389,68.05697533833217],[-66.22806228062281,68.04008956563334],[-66.21726217262172,68.03333525655381],[-66.18486184861848,68.02320379293451],[-66.18486184861848,68.01644948385498],[-66.21366213662137,68.00462944296581],[-66.29286292862928,67.9944979793465],[-66.32886328863289,67.9759236293778],[-66.35406354063541,67.94046350671027],[-66.36126361263612,67.93370919763072],[-66.37566375663756,67.93033204309097],[-66.38646386463864,67.92020057947167],[-66.4080640806408,67.89993765223309],[-66.39726397263972,67.88980618861379],[-66.40086400864008,67.87798614772461],[-66.41526415264153,67.86954326137518],[-66.42966429664297,67.86616610683544],[-66.50166501665016,67.86278895229566],[-66.63846638466384,67.88642903407401],[-66.6960669606696,67.88980618861379],[-66.74646746467464,67.87967472499449],[-66.72126721267212,67.87123183864506],[-66.67086670866708,67.86785468410531],[-66.62766627666277,67.85603464321613],[-66.57366573665736,67.85265748867636],[-66.54846548465484,67.84083744778718],[-66.51246512465124,67.829017406898],[-66.42246422464224,67.83577171597753],[-66.39726397263972,67.81719736600883],[-66.40446404464045,67.79693443877022],[-66.390063900639,67.7817372433413],[-66.36846368463684,67.7817372433413],[-66.35406354063541,67.8104430569293],[-66.35406354063541,67.8188859432787],[-66.35766357663576,67.82395167508835],[-66.36126361263612,67.829017406898],[-66.36486364863649,67.83408313870765],[-66.36846368463684,67.84252602505705],[-66.36486364863649,67.8475917568667],[-66.35766357663576,67.85265748867636],[-66.35406354063541,67.85772322048601],[-66.34686346863468,67.87123183864506],[-66.3360633606336,67.88136330226436],[-66.3360633606336,67.89149476588366],[-66.34326343263432,67.90669196131262],[-66.32166321663216,67.91513484766202],[-66.29646296462964,67.9472178157898],[-66.27846278462785,67.96072643394885],[-66.2640626406264,67.9657921657585],[-66.23526235262352,67.96241501121875],[-66.22446224462244,67.96410358848863],[-66.20286202862029,67.9759236293778],[-66.1920619206192,67.97930078391755],[-66.13086130861308,67.9860550929971],[-66.11286112861129,67.99280940207663],[-66.0660606606066,68.01138375204533],[-66.01926019260192,68.02658094747429],[-65.96885968859688,68.03333525655381],[-65.95445954459544,68.04177814290321],[-65.95085950859509,68.05697533833217],[-65.95085950859509,68.0839925746503],[-65.94365943659436,68.10425550188887],[-65.94365943659436,68.11100981096843],[-65.94725947259472,68.11945269731783],[-65.9580595805958,68.12789558366725],[-65.96165961659617,68.13633847001665],[-65.96165961659617,68.14646993363596],[-65.94725947259472,68.16504428360466],[-65.92925929259292,68.16504428360466],[-65.90765907659076,68.15491281998536],[-65.89325893258932,68.14309277909618],[-65.87165871658716,68.1211412745877],[-65.8680586805868,68.11100981096843],[-65.87885878858788,68.10087834734912],[-65.9040590405904,68.08568115192017],[-65.89325893258932,68.0839925746503],[-65.88245882458824,68.0839925746503],[-65.87525875258753,68.08736972919004],[-65.8680586805868,68.09074688372982],[-65.85365853658536,68.08061542011052],[-65.86085860858608,68.07048395649124],[-65.89325893258932,68.05359818379242],[-65.91125911259113,68.03164667928394],[-65.9220592205922,68.02151521566464],[-65.93285932859328,68.01644948385498],[-66.03366033660336,67.96072643394885],[-66.03366033660336,67.95397212486932],[-66.02646026460265,67.95397212486932],[-66.01566015660156,67.94384066125002],[-65.96165961659617,67.91513484766202],[-65.94365943659436,67.89993765223309],[-65.94725947259472,67.87292041591496],[-65.96525965259652,67.85434606594626],[-65.99045990459904,67.83577171597753],[-66.00486004860048,67.81719736600883],[-66.00486004860048,67.80706590238952],[-65.99765997659976,67.78849155242082],[-65.99765997659976,67.77667151153165],[-66.00486004860048,67.76316289337257],[-66.02646026460265,67.74121138886412],[-66.03366033660336,67.72770277070504],[-66.030060300603,67.70912842073633],[-66.01926019260192,67.69055407076763],[-66.0120601206012,67.6719797207989],[-66.02646026460265,67.6534053708302],[-66.0120601206012,67.63651959813137],[-65.9940599405994,67.63651959813137],[-65.98685986859869,67.64833963902055],[-65.99765997659976,67.66691398898928],[-65.97605976059761,67.6821111844182],[-65.96165961659617,67.70237411165681],[-65.95085950859509,67.72770277070504],[-65.940059400594,67.77836008880152],[-65.94365943659436,67.78680297515095],[-65.95445954459544,67.80031159331],[-65.9580595805958,67.81719736600883],[-65.94725947259472,67.829017406898],[-65.89325893258932,67.8475917568667],[-65.81045810458104,67.86447752956553],[-65.79965799657997,67.86954326137518],[-65.7960579605796,67.87460899318484],[-65.79245792457924,67.88305187953426],[-65.78885788857887,67.88980618861379],[-65.77085770857708,67.89824907496319],[-65.76725767257672,67.91006911585237],[-65.77085770857708,67.92357773401145],[-65.7780577805778,67.93370919763072],[-65.79245792457924,67.94384066125002],[-65.8140581405814,67.9573492794091],[-65.82845828458284,67.96916932029828],[-65.81045810458104,67.97423505210793],[-65.79245792457924,67.97423505210793],[-65.77445774457745,67.96916932029828],[-65.760057600576,67.96916932029828],[-65.7420574205742,67.97254647483803],[-65.69885698856989,67.98943224753685],[-65.65565655656556,67.99787513388628],[-65.51885518855188,67.9944979793465],[-65.50445504455044,67.99618655661638],[-65.47925479254792,68.00125228842603],[-65.4720547205472,68.00294086569593],[-65.45045450454504,67.99787513388628],[-65.44685446854469,67.9944979793465],[-65.4540545405454,67.94890639305967],[-65.46485464854648,67.9269548885512],[-65.51885518855188,67.85772322048601],[-65.52965529655296,67.8391488705173],[-65.53685536855369,67.829017406898],[-65.55125551255512,67.82395167508835],[-65.56205562055621,67.8205745205486],[-65.58725587255873,67.80706590238952],[-65.61245612456125,67.80031159331],[-65.6160561605616,67.7901801296907],[-65.60885608856088,67.77836008880152],[-65.60165601656016,67.76991720245212],[-65.580055800558,67.75640858429304],[-65.51525515255152,67.73276850251469],[-65.46485464854648,67.72263703889539],[-65.44325443254432,67.70912842073633],[-65.42165421654217,67.6922426480375],[-65.41085410854109,67.6736682980688],[-65.37125371253713,67.60781378454337],[-65.36045360453605,67.59768232092406],[-65.33165331653316,67.60105947546384],[-65.32445324453244,67.60950236181324],[-65.3640536405364,67.69055407076763],[-65.36765367653676,67.70406268892668],[-65.3820538205382,67.71925988435564],[-65.51885518855188,67.76654004791234],[-65.5440554405544,67.7800486660714],[-65.55125551255512,67.79355728423047],[-65.53685536855369,67.80200017057987],[-65.51165511655117,67.8104430569293],[-65.49725497254973,67.81719736600883],[-65.490054900549,67.82395167508835],[-65.47925479254792,67.84421460232696],[-65.42525425254252,67.90331480677284],[-65.4180541805418,67.91344627039214],[-65.38565385653857,67.93033204309097],[-65.37485374853748,67.93370919763072],[-65.2920529205292,67.94046350671027],[-65.18045180451804,67.96748074302837],[-65.15165151651516,67.98943224753685],[-65.1840518405184,68.01644948385498],[-65.16965169651696,68.03164667928394],[-65.1480514805148,68.02995810201404],[-65.12645126451264,68.02489237020441],[-65.10845108451085,68.02320379293451],[-65.09765097650975,68.02658094747429],[-65.09045090450904,68.03164667928394],[-65.08685086850868,68.03840098836346],[-65.07965079650796,68.04346672017311],[-65.05445054450544,68.05190960652251],[-65.02565025650256,68.05697533833217],[-64.96444964449644,68.05190960652251],[-64.84924849248492,68.01813806112486],[-64.78084780847809,68.00800659750558],[-64.74844748447484,68.00125228842603],[-64.71964719647195,67.9843665157272],[-64.75924759247592,67.9657921657585],[-64.88884888848888,67.94046350671027],[-65.01485014850148,67.94890639305967],[-65.06525065250652,67.93370919763072],[-65.03645036450364,67.92526631128132],[-64.97164971649715,67.92526631128132],[-64.94284942849428,67.91344627039214],[-65.00765007650077,67.86954326137518],[-65.04725047250471,67.85096891140648],[-65.08325083250833,67.84421460232696],[-65.08325083250833,67.8475917568667],[-65.09765097650975,67.86278895229566],[-65.10845108451085,67.86616610683544],[-65.1120511205112,67.85772322048601],[-65.1120511205112,67.84590317959683],[-65.10845108451085,67.84421460232696],[-65.14085140851408,67.8104430569293],[-65.1480514805148,67.79693443877022],[-65.13725137251372,67.79693443877022],[-65.12645126451264,67.80031159331],[-65.0760507605076,67.82564025235823],[-65.06165061650616,67.829017406898],[-65.040050400504,67.83070598416788],[-65.02925029250292,67.82732882962813],[-65.01845018450184,67.8188859432787],[-65.01485014850148,67.80537732511965],[-65.01125011250112,67.79355728423047],[-65.01845018450184,67.78342582061117],[-65.03645036450364,67.7800486660714],[-65.04725047250471,67.77667151153165],[-65.040050400504,67.76316289337257],[-65.07965079650796,67.75134285248339],[-65.12285122851227,67.74627712067377],[-65.16245162451624,67.73614565705446],[-65.19485194851949,67.70743984346646],[-65.2020520205202,67.69730837984716],[-65.2020520205202,67.6837997616881],[-65.2020520205202,67.65678252536998],[-65.19485194851949,67.6432739072109],[-65.17685176851768,67.63989675267115],[-65.1660516605166,67.6449624844808],[-65.16965169651696,67.66015967990973],[-65.15165151651516,67.6736682980688],[-65.1480514805148,67.69055407076763],[-65.13725137251372,67.70743984346646],[-65.11565115651156,67.72263703889539],[-65.09765097650975,67.72601419343516],[-65.06525065250652,67.72601419343516],[-65.04725047250471,67.72770277070504],[-65.03645036450364,67.73107992524481],[-65.02925029250292,67.73445707978456],[-65.0220502205022,67.73783423432434],[-65.01845018450184,67.74121138886412],[-65.01485014850148,67.74796569794364],[-65.01845018450184,67.75472000702317],[-65.01845018450184,67.75809716156294],[-65.01845018450184,67.76316289337257],[-65.0040500405004,67.76991720245212],[-64.950049500495,67.77667151153165],[-64.93564935649356,67.78342582061117],[-64.92484924849248,67.78849155242082],[-64.9140491404914,67.79355728423047],[-64.8960489604896,67.79693443877022],[-64.87444874448744,67.79524586150035],[-64.83484834848348,67.78511439788105],[-64.81684816848168,67.78342582061117],[-64.81324813248132,67.77836008880152],[-64.80964809648096,67.75472000702317],[-64.8060480604806,67.74796569794364],[-64.81684816848168,67.72939134797494],[-64.8240482404824,67.71419415254599],[-64.83484834848348,67.70237411165681],[-64.860048600486,67.7006855343869],[-64.860048600486,67.69393122530738],[-64.82764827648276,67.69393122530738],[-64.79524795247951,67.69730837984716],[-64.77364773647736,67.71081699800621],[-64.76644766447664,67.73783423432434],[-64.76284762847628,67.76147431610269],[-64.75564755647557,67.7817372433413],[-64.7520475204752,67.80200017057987],[-64.75924759247592,67.82395167508835],[-64.74124741247412,67.83070598416788],[-64.72324723247232,67.82564025235823],[-64.70884708847088,67.8205745205486],[-64.69084690846908,67.81719736600883],[-64.680046800468,67.8188859432787],[-64.66564665646656,67.82732882962813],[-64.65484654846549,67.83070598416788],[-64.62244622446224,67.83408313870765],[-64.6080460804608,67.83239456143778],[-64.50364503645037,67.80706590238952],[-64.45684456844567,67.78849155242082],[-64.45684456844567,67.76316289337257],[-64.40284402844028,67.771605779722],[-64.37764377643776,67.771605779722],[-64.36684366843669,67.75809716156294],[-64.37044370443704,67.75134285248339],[-64.39564395643956,67.72770277070504],[-64.39564395643956,67.72432561616529],[-64.39564395643956,67.71925988435564],[-64.39564395643956,67.71588272981586],[-64.39924399243992,67.71419415254599],[-64.48924489244892,67.71081699800621],[-64.54324543245433,67.70237411165681],[-64.59724597245972,67.68717691622786],[-64.64044640446404,67.66691398898928],[-64.62244622446224,67.66691398898928],[-64.4460444604446,67.69561980257728],[-64.39564395643956,67.69730837984716],[-64.3740437404374,67.7006855343869],[-64.3560435604356,67.70912842073633],[-64.33084330843307,67.72939134797494],[-64.31284312843128,67.73445707978456],[-64.29124291242913,67.72939134797494],[-64.26244262442624,67.71419415254599],[-64.23364233642336,67.69561980257728],[-64.21564215642157,67.68042260714833],[-64.20844208442084,67.6534053708302],[-64.22284222842228,67.63651959813137],[-64.25164251642516,67.62638813451207],[-64.2840428404284,67.6246995572422],[-64.25524255242551,67.6162566708928],[-64.22644226442264,67.61456809362289],[-64.10764107641076,67.62132240270245],[-64.07524075240752,67.61794524816267],[-64.07164071640716,67.60443663000362],[-64.07884078840787,67.58923943457467],[-64.09684096840968,67.56897650733606],[-64.1040410404104,67.55040215736736],[-64.07524075240752,67.54364784828783],[-64.05364053640535,67.54195927101796],[-64.04284042840428,67.53689353920831],[-64.04644046440464,67.53013923012875],[-64.06444064440645,67.52338492104923],[-64.07524075240752,67.52169634377935],[-64.10044100441004,67.52338492104923],[-64.10764107641076,67.52000776650948],[-64.10764107641076,67.50481057108053],[-64.11844118441184,67.50143341654075],[-64.2480424804248,67.469350448413],[-64.2660426604266,67.46766187114312],[-64.44244442444425,67.48117048930217],[-64.38844388443884,67.46259613933347],[-64.32724327243272,67.45415325298404],[-64.20484204842047,67.45415325298404],[-64.09684096840968,67.46766187114312],[-64.04644046440464,67.46766187114312],[-63.9960399603996,67.45415325298404],[-63.963639636396366,67.42038170758639],[-63.94923949239492,67.40180735761768],[-63.94923949239492,67.38492158491886],[-63.942039420394195,67.3612815031405],[-63.95283952839527,67.3427071531718],[-63.97803978039779,67.3325756895525],[-64.00324003240031,67.3308871122826],[-63.92043920439204,67.31906707139342],[-63.90963909639096,67.30724703050424],[-63.9240392403924,67.29542698961507],[-63.95643956439564,67.29880414415484],[-64.01764017640176,67.31062418504402],[-64.3920439204392,67.33595284409225],[-64.76284762847628,67.36297008041038],[-64.79884798847988,67.3511500395212],[-64.35964359643596,67.3038698759645],[-64.25884258842588,67.30555845323437],[-64.230042300423,67.29542698961507],[-64.28764287642876,67.27178690783671],[-64.34884348843488,67.25490113513789],[-64.3920439204392,67.24983540332823],[-64.52524525245252,67.26165544421741],[-64.7880478804788,67.22112958974023],[-64.82044820448203,67.20762097158118],[-64.77364773647736,67.19748950796188],[-64.72684726847268,67.20255523977153],[-64.63684636846368,67.22788389881975],[-64.57564575645756,67.23632678516918],[-64.29844298442984,67.23801536243906],[-64.01044010440104,67.28191837145602],[-63.98523985239852,67.28191837145602],[-63.963639636396366,67.27516406237649],[-63.999639996399964,67.22957247608966],[-64.02124021240212,67.21268670339083],[-64.05364053640535,67.20762097158118],[-64.08964089640897,67.20930954885105],[-64.14724147241472,67.2228181670101],[-64.16524165241653,67.21944101247036],[-64.20484204842047,67.20762097158118],[-64.6080460804608,67.14007788078587],[-64.66564665646656,67.11643779900751],[-64.6980469804698,67.08435483087973],[-64.69444694446945,67.0201888946242],[-64.70164701647016,67.00836885373502],[-64.67284672846728,67.00499169919524],[-64.65844658446584,67.00668027646512],[-64.64404644046441,67.01174600827477],[-64.63324633246332,67.02187747189407],[-64.62964629646297,67.02694320370372],[-64.61164611646116,67.0776005218002],[-64.6080460804608,67.08435483087973],[-64.59724597245972,67.09448629449903],[-64.5720457204572,67.10630633538821],[-64.56124561245612,67.11474922173761],[-64.5360453604536,67.12994641716656],[-64.49644496444964,67.13838930351599],[-64.34884348843488,67.14514361259552],[-64.29124291242913,67.1569636534847],[-64.24084240842409,67.16371796256422],[-64.140041400414,67.18735804434257],[-63.963639636396366,67.18735804434257],[-63.94563945639456,67.19073519888235],[-63.93123931239312,67.195800930692],[-63.916839168391675,67.2042438170414],[-63.89883898838988,67.23463820789931],[-63.888038880388805,67.24139251697883],[-63.88083880838808,67.24139251697883],[-63.84843848438484,67.23463820789931],[-63.78363783637836,67.24139251697883],[-63.77643776437763,67.23801536243906],[-63.765637656376555,67.22450674428],[-63.75843758437584,67.21775243520048],[-63.7440374403744,67.21775243520048],[-63.690036900368995,67.23463820789931],[-63.56763567635676,67.24476967151858],[-63.50643506435064,67.24139251697883],[-63.448834488344886,67.22788389881975],[-63.452434524345236,67.21606385793058],[-63.4560345603456,67.20086666250165],[-63.4560345603456,67.17722658072327],[-63.463234632346314,67.16878369437387],[-63.538835388353874,67.11137206719786],[-63.66843668436684,67.06240332637125],[-63.736837368373685,67.04720613094233],[-63.76923769237692,67.02525462643385],[-63.80163801638015,66.99317165830607],[-63.79443794437944,66.98135161741689],[-63.77283772837728,66.96108869017829],[-63.76923769237692,66.98472877195667],[-63.765637656376555,67.00330312192537],[-63.75843758437584,67.01681174008442],[-63.736837368373685,67.0286317809736],[-63.67563675636755,67.05227186275195],[-63.549635496354966,67.07084621272068],[-63.4920349203492,67.09110913995926],[-63.438034380343794,67.12150353081717],[-63.398433984339846,67.1569636534847],[-63.398433984339846,67.16878369437387],[-63.412834128341274,67.18060373526305],[-63.420034200342,67.19748950796188],[-63.412834128341274,67.21775243520048],[-63.333633336333364,67.28191837145602],[-63.297632976329766,67.30555845323437],[-63.28683286832867,67.31062418504402],[-63.26523265232652,67.3123127623139],[-63.21123211232111,67.3038698759645],[-63.2040320403204,67.29880414415484],[-63.20763207632076,67.28867268053554],[-63.222032220322205,67.28022979418614],[-63.23283232832328,67.27516406237649],[-63.247232472324725,67.27347548510659],[-63.29043290432904,67.25490113513789],[-63.29043290432904,67.24814682605836],[-63.2580325803258,67.24814682605836],[-63.222032220322205,67.25658971240776],[-63.18603186031859,67.27347548510659],[-63.1680316803168,67.29542698961507],[-63.18963189631896,67.30555845323437],[-63.21123211232111,67.31737849412355],[-63.16443164431644,67.33764142136215],[-63.11763117631176,67.3308871122826],[-63.070830708307085,67.3123127623139],[-63.02763027630276,67.3038698759645],[-63.00243002430024,67.28867268053554],[-62.98082980829808,67.25490113513789],[-62.97722977229772,67.22112958974023],[-63.00963009630095,67.20086666250165],[-63.0420304203042,67.17384942618352],[-63.06003060030599,67.1654065398341],[-63.250832508325075,67.13163499443644],[-63.26883268832688,67.12319210808704],[-63.27963279632796,67.11137206719786],[-63.28323283232832,67.09955202630869],[-63.276032760327595,67.09110913995926],[-63.272432724327246,67.0860434081496],[-63.22923229232292,67.03707466732303],[-63.222032220322205,67.01681174008442],[-63.222032220322205,66.9999259673856],[-63.22923229232292,66.98641734922654],[-63.23643236432363,66.97459730833737],[-63.28323283232832,66.94758007201924],[-63.348033480334806,66.93576003113006],[-63.47043470434704,66.92731714478063],[-63.524435244352446,66.91718568116136],[-63.549635496354966,66.90705421754205],[-63.564035640356394,66.8918570221131],[-63.564035640356394,66.88679129030345],[-63.553235532355316,66.8732826721444],[-63.553235532355316,66.86821694033475],[-63.55683556835568,66.85639689944557],[-63.564035640356394,66.84795401309617],[-63.585635856358564,66.83782254947687],[-63.614436144361434,66.82937966312744],[-63.7080370803708,66.82262535404791],[-63.77283772837728,66.83275681766722],[-63.80523805238052,66.83106824039734],[-63.81963819638196,66.81755962223826],[-63.57123571235712,66.80911673588886],[-63.528035280352796,66.81755962223826],[-63.502835028350276,66.82600250858769],[-63.488434884348834,66.83444539493709],[-63.48123481234812,66.83951112674674],[-63.477634776347756,66.84626543582627],[-63.477634776347756,66.8530197449058],[-63.49563495634956,66.87159409487452],[-63.49563495634956,66.87834840395405],[-63.4920349203492,66.88510271303358],[-63.4920349203492,66.89523417665288],[-63.488434884348834,66.90536564027218],[-63.477634776347756,66.91043137208183],[-63.46683466834668,66.9121199493517],[-63.4560345603456,66.9121199493517],[-63.44163441634416,66.91043137208183],[-63.434434344343444,66.90705421754205],[-63.423634236342366,66.88003698122392],[-63.41643416434164,66.83782254947687],[-63.41643416434164,66.80405100407921],[-63.423634236342366,66.77196803595143],[-63.4560345603456,66.7078020996959],[-63.427234272342716,66.7078020996959],[-63.412834128341274,66.71117925423565],[-63.402034020340196,66.72131071785495],[-63.384033840338404,66.73819649055378],[-63.373233732337326,66.75339368598273],[-63.348033480334806,66.79054238592013],[-63.33723337233371,66.80573958134909],[-63.330033300333,66.83782254947687],[-63.34443344433444,66.86821694033475],[-63.348033480334806,66.89016844484323],[-63.297632976329766,66.90029990846253],[-63.23283232832328,66.90367706300228],[-63.2040320403204,66.90874279481193],[-63.12843128431284,66.93744860839993],[-62.998829988299875,66.94926864928911],[-62.99162991629916,66.95433438109876],[-62.98442984429843,66.96277726744819],[-62.97722977229772,66.96784299925784],[-62.944829448294485,66.97290873106749],[-62.90522905229052,66.97290873106749],[-62.86562865628656,66.96953157652771],[-62.84042840428404,66.96108869017829],[-62.844028440284404,66.94420291747946],[-62.844028440284404,66.91718568116136],[-62.836828368283676,66.88679129030345],[-62.8260282602826,66.86483978579497],[-62.822428224282234,66.82769108585757],[-62.822428224282234,66.80067384953944],[-62.82962829628296,66.79054238592013],[-62.83322833228331,66.78547665411051],[-62.85842858428583,66.7550822632526],[-62.86562865628656,66.73819649055378],[-62.86562865628656,66.72975360420438],[-62.86562865628656,66.71962214058507],[-62.86562865628656,66.7078020996959],[-62.85842858428583,66.7078020996959],[-62.87642876428764,66.69091632699707],[-62.898028980289794,66.67234197702837],[-62.912429124291236,66.65545620432954],[-62.90162901629016,66.63857043163071],[-62.887228872288716,66.65207904978976],[-62.844028440284404,66.66896482248859],[-62.822428224282234,66.68247344064764],[-62.822428224282234,66.69091632699707],[-62.82962829628296,66.71117925423565],[-62.83322833228331,66.72131071785495],[-62.8260282602826,66.72806502693447],[-62.80442804428044,66.73988506782368],[-62.797227972279714,66.74832795417308],[-62.80442804428044,66.74832795417308],[-62.786427864278636,66.76859088141168],[-62.768427684276844,66.77703376776108],[-62.75042750427504,66.78885380865026],[-62.743227432274324,66.81418246769852],[-62.746827468274674,66.81924819950814],[-62.77562775627756,66.84119970401662],[-62.77562775627756,66.85133116763592],[-62.75762757627575,66.86821694033475],[-62.75042750427504,66.87834840395405],[-62.7540275402754,66.88679129030345],[-62.768427684276844,66.9019884857324],[-62.772027720277194,66.9121199493517],[-62.768427684276844,66.9205628357011],[-62.76482764827648,66.92900572205053],[-62.746827468274674,66.94251434020958],[-62.72882728827288,66.95095722655901],[-62.696426964269634,66.94758007201924],[-62.68202682026819,66.94926864928911],[-62.6640266402664,66.95433438109876],[-62.60642606426063,66.95433438109876],[-62.58122581225811,66.94926864928911],[-62.556025560255605,66.93913718566984],[-62.534425344253435,66.92562856751076],[-62.51282512825128,66.90874279481193],[-62.505625056250565,66.893545599383],[-62.5020250202502,66.85639689944557],[-62.49842498424984,66.8445768585564],[-62.46962469624695,66.83106824039734],[-62.43722437224372,66.82769108585757],[-62.4120241202412,66.81755962223826],[-62.40122401224012,66.78547665411051],[-62.329223292232925,66.7365079132839],[-62.31122311223112,66.72806502693447],[-62.304023040230405,66.73313075874412],[-62.29682296822968,66.7449507996333],[-62.29322293222931,66.75845941779238],[-62.29322293222931,66.76859088141168],[-62.30042300423004,66.77703376776108],[-62.340023400234,66.79729669499969],[-62.35082350823508,66.80573958134909],[-62.36882368823687,66.82769108585757],[-62.379623796237965,66.83782254947687],[-62.41562415624156,66.84288828128652],[-62.42642426424264,66.84964259036605],[-62.42282422824228,66.86483978579497],[-62.44082440824408,66.90029990846253],[-62.433624336243355,66.9019884857324],[-62.42642426424264,66.90874279481193],[-62.42282422824228,66.9121199493517],[-62.42642426424264,66.92900572205053],[-62.408424084240835,66.93407145386018],[-62.36162361623616,66.93238287659028],[-62.3220232202322,66.93744860839993],[-62.282422824228235,66.94589149474936],[-62.27162271622716,66.96108869017829],[-62.27522275222752,66.98135161741689],[-62.29682296822968,67.02187747189407],[-62.28962289622896,67.03369751278325],[-62.282422824228235,67.04214039913268],[-62.27162271622716,67.04720613094233],[-62.257222572225714,67.05058328548208],[-62.250022500225,67.0488947082122],[-62.232022320223194,67.04382897640255],[-62.221222212222116,67.04214039913268],[-62.21042210422104,67.04382897640255],[-62.203222032220324,67.04551755367243],[-62.181621816218154,67.05227186275195],[-62.14202142021419,67.06071474910138],[-62.09162091620915,67.0590261718315],[-62.04122041220411,67.05058328548208],[-62.005220052200514,67.03707466732303],[-62.0340203402034,67.01343458554467],[-62.04842048420484,66.99823739011572],[-62.05922059220592,66.98135161741689],[-62.05922059220592,66.97290873106749],[-62.06282062820628,66.95264580382889],[-62.06642066420663,66.94589149474936],[-62.07362073620736,66.93913718566984],[-62.095220952209516,66.92731714478063],[-62.106021060210594,66.91887425843123],[-62.08442084420844,66.9121199493517],[-62.05922059220592,66.90874279481193],[-62.0340203402034,66.90874279481193],[-62.01602016020159,66.9121199493517],[-61.95481954819547,66.96277726744819],[-61.944019440194396,66.96953157652771],[-61.926019260192604,66.97459730833737],[-61.9080190801908,66.97628588560724],[-61.83961839618395,66.97459730833737],[-61.843218432184315,66.96615442198794],[-61.86481864818647,66.94589149474936],[-61.84681846818468,66.93744860839993],[-61.82521825218252,66.94082576293971],[-61.80001800018,66.94926864928911],[-61.77841778417783,66.95433438109876],[-61.75321753217531,66.95095722655901],[-61.73881738817387,66.94420291747946],[-61.73521735217352,66.93238287659028],[-61.7460174601746,66.91549710389145],[-61.79641796417964,66.893545599383],[-61.92961929619295,66.90536564027218],[-61.99081990819907,66.89523417665288],[-62.00882008820088,66.88003698122392],[-61.9980199801998,66.87159409487452],[-61.980019800197994,66.8732826721444],[-61.93681936819368,66.8918570221131],[-61.80361803618035,66.88847986757335],[-61.77841778417783,66.8834141357637],[-61.75681756817568,66.8817255584938],[-61.69921699216992,66.893545599383],[-61.60561605616056,66.87159409487452],[-61.62721627216271,66.84626543582627],[-61.65961659616596,66.83444539493709],[-61.72801728017279,66.83106824039734],[-61.66321663216631,66.81080531315874],[-61.504815048150476,66.80573958134909],[-61.44721447214472,66.76859088141168],[-61.46881468814688,66.76183657233213],[-61.45081450814507,66.75170510871286],[-61.40761407614076,66.74832795417308],[-61.389613896138954,66.73819649055378],[-61.360813608136084,66.71286783150555],[-61.29961299612995,66.67740770883802],[-61.278012780127796,66.65376762705964],[-61.26721267212672,66.63181612255119],[-61.288812888128874,66.6183075043921],[-61.285212852128524,66.61493034985236],[-61.27441274412743,66.6081760407728],[-61.27081270812708,66.60479888623306],[-61.28161281612816,66.5997331544234],[-61.31761317613176,66.59129026807398],[-61.34641346413464,66.5794702271848],[-61.360813608136084,66.57609307264505],[-61.37521375213751,66.57778164991493],[-61.386013860138604,66.5794702271848],[-61.39681396813968,66.5811588044547],[-61.414814148141474,66.57609307264505],[-61.41841418414184,66.57271591810527],[-61.429214292142916,66.5608958772161],[-61.43281432814328,66.55583014540645],[-61.440014400143994,66.54569868178714],[-61.57681576815767,66.5507644135968],[-61.59841598415984,66.55583014540645],[-61.616416164161635,66.56596160902575],[-61.62361623616236,66.57440449537515],[-61.62721627216271,66.58622453626433],[-61.63441634416344,66.59804457715353],[-61.64521645216452,66.6081760407728],[-61.73521735217352,66.64701331798011],[-61.77481774817748,66.65545620432954],[-61.86481864818647,66.65883335886929],[-61.90441904419043,66.66896482248859],[-61.95481954819547,66.68753917245729],[-61.9980199801998,66.69935921334647],[-62.030420304203034,66.68753917245729],[-62.01602016020159,66.67234197702837],[-62.026820268202684,66.65883335886929],[-62.04842048420484,66.64870189524999],[-62.18882188821888,66.63181612255119],[-62.18882188821888,66.62506181347163],[-62.1240212402124,66.6098646180427],[-62.0880208802088,66.6098646180427],[-62.06282062820628,66.62168465893188],[-62.0340203402034,66.64025900890059],[-62.005220052200514,66.64870189524999],[-61.97281972819728,66.64870189524999],[-61.82161821618216,66.62843896801141],[-61.792817928179275,66.61493034985236],[-61.77481774817748,66.5997331544234],[-61.666816668166675,66.52543575454857],[-61.641616416164155,66.51361571365939],[-61.60561605616056,66.50517282730996],[-61.591215912159115,66.49841851823044],[-61.58041580415804,66.48828705461113],[-61.58041580415804,66.47815559099183],[-61.59481594815948,66.46971270464243],[-61.61281612816127,66.46464697283278],[-61.64881648816488,66.45958124102313],[-61.70641706417064,66.46295839556291],[-61.72441724417244,66.45958124102313],[-61.73521735217352,66.45451550921348],[-61.76401764017639,66.43594115924478],[-61.77841778417783,66.432564004705],[-61.79641796417964,66.4342525819749],[-61.82521825218252,66.4443840455942],[-61.83961839618395,66.44607262286408],[-61.87561875618756,66.44607262286408],[-61.88281882818828,66.4443840455942],[-61.893618936189355,66.43594115924478],[-61.90081900819008,66.432564004705],[-61.99081990819907,66.41905538654595],[-61.99081990819907,66.41230107746642],[-61.95841958419584,66.403858191117],[-61.926019260192604,66.4055467683869],[-61.86481864818647,66.41905538654595],[-61.566015660156594,66.41905538654595],[-61.5480154801548,66.4156782320062],[-61.540815408154074,66.40892392292665],[-61.53361533615336,66.40048103657725],[-61.52281522815228,66.39203815022782],[-61.47601476014759,66.38021810933864],[-61.461614616146164,66.37177522298924],[-61.4940149401494,66.36670949117959],[-61.540815408154074,66.34982371848076],[-61.566015660156594,66.34475798667111],[-61.57681576815767,66.34475798667111],[-61.60561605616056,66.35151229575064],[-61.620016200162,66.34982371848076],[-61.63081630816308,66.34644656394099],[-61.64881648816488,66.33462652305181],[-61.65961659616596,66.32956079124216],[-61.68841688416883,66.32956079124216],[-61.75321753217531,66.34138083213134],[-61.78561785617856,66.33800367759159],[-61.80721807218072,66.32449505943251],[-61.82881828818287,66.30760928673368],[-61.85041850418504,66.2957892458445],[-61.87561875618756,66.28903493676498],[-61.93321933219332,66.28903493676498],[-61.951219512195124,66.29241209130475],[-61.980019800197994,66.30085497765415],[-62.01602016020159,66.30760928673368],[-62.05922059220592,66.32618363670241],[-62.080820808208074,66.32956079124216],[-62.095220952209516,66.32787221397228],[-62.11322113221132,66.31942932762288],[-62.127621276212764,66.31605217308311],[-62.196021960219596,66.31605217308311],[-62.21042210422104,66.32449505943251],[-62.221222212222116,66.33969225486146],[-62.22482224822248,66.35826660483016],[-62.23562235622356,66.37177522298924],[-62.221222212222116,66.39710388203747],[-62.250022500225,66.40723534565677],[-62.3220232202322,66.40892392292665],[-62.33642336423364,66.4156782320062],[-62.3760237602376,66.41905538654595],[-62.41562415624156,66.42580969562547],[-62.49122491224912,66.42580969562547],[-62.60642606426063,66.4426954683243],[-62.6280262802628,66.44100689105443],[-62.62082620826207,66.42749827289538],[-62.610026100260995,66.4156782320062],[-62.60642606426063,66.40892392292665],[-62.6280262802628,66.4055467683869],[-62.64962649626496,66.40892392292665],[-62.671226712267114,66.4156782320062],[-62.692826928269284,66.41736680927607],[-62.71442714427144,66.41230107746642],[-62.692826928269284,66.40048103657725],[-62.65322653226532,66.39034957295794],[-62.61362613626136,66.38697241841817],[-62.58842588425884,66.3954153047676],[-62.56682566825668,66.40723534565677],[-62.530825308253085,66.41061250019655],[-62.49842498424984,66.40892392292665],[-62.47682476824768,66.39879245930737],[-62.46962469624695,66.37008664571934],[-62.41922419224191,66.34306940940124],[-62.354423544235445,66.32111790489276],[-62.31842318423183,66.30254355492406],[-62.340023400234,66.29916640038428],[-62.40122401224012,66.27552631860593],[-62.480424804248045,66.2670834322565],[-62.5740257402574,66.23668904139862],[-62.617226172261724,66.2299347323191],[-62.63882638826388,66.22318042323957],[-62.6640266402664,66.21980326869979],[-62.68922689226892,66.22655757777932],[-62.692826928269284,66.23668904139862],[-62.743227432274324,66.24682050501792],[-62.76482764827648,66.25526339136732],[-62.761227612276116,66.2586405459071],[-62.75762757627575,66.2687720095264],[-62.768427684276844,66.27046058679628],[-62.77562775627756,66.27552631860593],[-62.77922779227792,66.28228062768545],[-62.78282782827827,66.28903493676498],[-62.78282782827827,66.2957892458445],[-62.77922779227792,66.29916640038428],[-62.77922779227792,66.30423213219393],[-62.790027900279,66.31605217308311],[-62.81522815228152,66.32787221397228],[-62.84042840428404,66.33462652305181],[-62.894428944289444,66.33800367759159],[-62.894428944289444,66.32956079124216],[-62.869228692286924,66.31942932762288],[-62.847628476284754,66.30760928673368],[-62.811628116281156,66.27552631860593],[-62.818828188281884,66.2687720095264],[-62.80082800828008,66.24513192774805],[-62.77562775627756,66.23331188685884],[-62.75042750427504,66.22486900050944],[-62.72522725227252,66.20967180508049],[-62.70002700027,66.19785176419131],[-62.660426604266036,66.19954034146119],[-62.5380253802538,66.22655757777932],[-62.52362523625236,66.22486900050944],[-62.5020250202502,66.20967180508049],[-62.49482494824947,66.20629465054074],[-62.45162451624516,66.19616318692144],[-62.379623796237965,66.18603172330214],[-62.358023580235795,66.18603172330214],[-62.358023580235795,66.16914595060331],[-62.32562325623256,66.16070306425391],[-62.13842138421384,66.15394875517435],[-62.106021060210594,66.14550586882496],[-62.152821528215284,66.1319972506659],[-62.170821708217076,66.12017720977673],[-62.152821528215284,66.1032914370779],[-62.127621276212764,66.09822570526825],[-62.06642066420663,66.10498001434777],[-62.03762037620376,66.1032914370779],[-62.03762037620376,66.09822570526825],[-62.04842048420484,66.09653712799835],[-62.05922059220592,66.0931599734586],[-62.070020700206996,66.08978281891882],[-62.077220772207724,66.0830285098393],[-62.04122041220411,66.08471708710917],[-62.026820268202684,66.0830285098393],[-62.00882008820088,66.07627420075977],[-62.03762037620376,66.06951989168024],[-62.09162091620915,66.06614273714047],[-62.11322113221132,66.05601127352116],[-62.09882098820988,66.05094554171151],[-62.08442084420844,66.04756838717176],[-61.994419944199436,66.05094554171151],[-61.980019800197994,66.04587980990186],[-61.95841958419584,66.03068261447294],[-61.95481954819547,66.02055115085363],[-61.96561965619655,66.01548541904398],[-62.02322023220232,66.02223972812351],[-62.055620556205554,66.01886257358376],[-62.11322113221132,66.00028822361503],[-62.14202142021419,66.00535395542468],[-62.170821708217076,66.01210826450423],[-62.19962199621996,66.01041968723433],[-62.304023040230405,65.98171387364633],[-62.31842318423183,65.98171387364633],[-62.332823328233275,65.9850910281861],[-62.358023580235795,65.99859964634516],[-62.36882368823687,66.00197680088493],[-62.383223832238315,66.00704253269458],[-62.39762397623976,66.01548541904398],[-62.4120241202412,66.02223972812351],[-62.44082440824408,66.01210826450423],[-62.46242462424624,66.01548541904398],[-62.49842498424984,66.02899403720306],[-62.52722527225272,66.03574834628259],[-62.62442624426244,66.02899403720306],[-62.63882638826388,66.03068261447294],[-62.67482674826748,66.03912550082234],[-62.68922689226892,66.04587980990186],[-62.70722707227071,66.05094554171151],[-62.72882728827288,66.04587980990186],[-62.746827468274674,66.03912550082234],[-62.76482764827648,66.03574834628259],[-62.786427864278636,66.03743692355246],[-62.80802808028079,66.04419123263199],[-62.8260282602826,66.05432269625129],[-62.844028440284404,66.06614273714047],[-62.85482854828548,66.0830285098393],[-62.86562865628656,66.11680005523695],[-62.880028800288,66.1319972506659],[-62.923229232292314,66.1505716006346],[-62.973629736297354,66.1505716006346],[-63.06723067230672,66.12355436431648],[-63.049230492304915,66.11680005523695],[-63.024030240302395,66.11680005523695],[-62.9520295202952,66.12862009612613],[-62.94122941229412,66.12862009612613],[-62.92682926829268,66.12355436431648],[-62.919629196291964,66.11848863250682],[-62.898028980289794,66.09822570526825],[-62.887228872288716,66.06951989168024],[-62.872828728287274,66.05094554171151],[-62.847628476284754,66.03912550082234],[-62.83322833228331,66.02561688266329],[-62.822428224282234,66.02223972812351],[-62.530825308253085,66.00704253269458],[-62.51282512825128,66.00028822361503],[-62.49482494824947,65.9834024509162],[-62.47682476824768,65.97327098729693],[-62.4480244802448,65.97833671910658],[-62.430024300243005,65.97833671910658],[-62.408424084240835,65.96820525548728],[-62.39402394023939,65.95131948278845],[-62.38682386823868,65.93274513281975],[-62.455224552245525,65.9259908237402],[-62.44442444424443,65.91923651466067],[-62.433624336243355,65.91248220558114],[-62.41922419224191,65.90741647377149],[-62.40122401224012,65.90572789650162],[-62.379623796237965,65.91248220558114],[-62.36882368823687,65.91417078285102],[-62.358023580235795,65.91248220558114],[-62.358023580235795,65.90403931923174],[-62.36522365223652,65.89728501015219],[-62.36882368823687,65.89221927834254],[-62.37242372423724,65.89221927834254],[-62.37242372423724,65.87533350564371],[-62.36882368823687,65.86857919656418],[-62.36162361623616,65.86182488748466],[-62.307623076230755,65.82974191935688],[-62.29322293222931,65.82298761027735],[-62.30042300423004,65.81116756938818],[-62.31842318423183,65.81116756938818],[-62.354423544235445,65.81623330119783],[-62.36882368823687,65.81454472392795],[-62.40122401224012,65.80441326030865],[-62.509225092250915,65.79259321941947],[-62.5380253802538,65.80272468303878],[-62.52362523625236,65.81623330119783],[-62.5380253802538,65.8179218784677],[-62.54882548825488,65.81623330119783],[-62.556025560255605,65.81285614665805],[-62.56682566825668,65.8094789921183],[-62.58122581225811,65.80779041484843],[-62.64602646026459,65.81116756938818],[-62.710827108271076,65.828053342087],[-62.718027180271804,65.83143049662678],[-62.73242732427323,65.8466276920557],[-62.743227432274324,65.85338200113526],[-62.7540275402754,65.86013631021478],[-62.768427684276844,65.86351346475453],[-62.77922779227792,65.86351346475453],[-62.793627936279364,65.86689061929431],[-62.797227972279714,65.87364492837384],[-62.797227972279714,65.88208781472326],[-62.80442804428044,65.89221927834254],[-62.8260282602826,65.90066216469197],[-62.85122851228512,65.90741647377149],[-62.869228692286924,65.90741647377149],[-62.86562865628656,65.89897358742209],[-62.872828728287274,65.89221927834254],[-62.872828728287274,65.88884212380279],[-62.872828728287274,65.88546496926301],[-62.82962829628296,65.86857919656418],[-62.811628116281156,65.86351346475453],[-62.81522815228152,65.86013631021478],[-62.818828188281884,65.85675915567501],[-62.818828188281884,65.85338200113526],[-62.8260282602826,65.85000484659548],[-62.8260282602826,65.84325053751596],[-62.80802808028079,65.83987338297618],[-62.743227432274324,65.81285614665805],[-62.72882728827288,65.81285614665805],[-62.70002700027,65.81623330119783],[-62.67482674826748,65.80779041484843],[-62.610026100260995,65.77570744672065],[-62.58122581225811,65.76895313764112],[-62.57042570425703,65.7621988285616],[-62.5740257402574,65.74869021040251],[-62.58122581225811,65.73349301497359],[-62.58842588425884,65.72336155135429],[-62.60282602826028,65.72336155135429],[-62.65322653226532,65.73349301497359],[-62.68922689226892,65.74531305586277],[-62.8260282602826,65.76726456037122],[-62.847628476284754,65.76895313764112],[-62.818828188281884,65.73180443770369],[-62.78282782827827,65.71998439681451],[-62.68922689226892,65.71323008773498],[-62.671226712267114,65.70647577865546],[-62.642426424264244,65.68452427414698],[-62.59922599225992,65.67439281052768],[-62.59562595625955,65.66426134690838],[-62.60282602826028,65.65075272874932],[-62.61362613626136,65.63893268786015],[-62.617226172261724,65.62204691516132],[-62.635226352263516,65.60009541065284],[-62.65682656826567,65.58827536976366],[-62.67482674826748,65.60347256519262],[-62.65322653226532,65.63048980151072],[-62.67482674826748,65.63893268786015],[-62.710827108271076,65.6338669560505],[-62.72882728827288,65.62035833789145],[-62.72522725227252,65.60009541065284],[-62.73242732427323,65.59334110157332],[-62.746827468274674,65.58996394703354],[-62.768427684276844,65.59165252430344],[-62.786427864278636,65.59502967884319],[-62.80082800828008,65.60178398792272],[-62.818828188281884,65.61022687427214],[-62.8260282602826,65.61698118335167],[-62.8260282602826,65.62880122424085],[-62.83322833228331,65.63217837878062],[-62.844028440284404,65.63217837878062],[-62.85122851228512,65.6338669560505],[-62.85482854828548,65.63724411059027],[-62.85842858428583,65.64568699693967],[-62.862028620286196,65.6541298832891],[-62.86562865628656,65.69634431503616],[-62.87642876428764,65.72336155135429],[-62.90162901629016,65.74700163313264],[-62.93042930429304,65.76051025129169],[-62.96282962829628,65.75544451948204],[-62.93402934029339,65.74193590132299],[-62.919629196291964,65.73349301497359],[-62.9160291602916,65.72336155135429],[-62.912429124291236,65.69803289230603],[-62.90882908829087,65.6727042332578],[-62.898028980289794,65.65075272874932],[-62.898028980289794,65.64062126513002],[-62.90522905229052,65.62711264697097],[-62.95922959229591,65.58996394703354],[-62.99162991629916,65.58827536976366],[-63.00243002430024,65.59334110157332],[-63.00963009630095,65.61022687427214],[-63.00963009630095,65.61866976062154],[-63.00963009630095,65.62711264697097],[-63.01323013230132,65.63555553332037],[-63.16083160831607,65.64906415147945],[-63.1680316803168,65.64568699693967],[-63.16083160831607,65.63217837878062],[-63.196831968319685,65.6338669560505],[-63.21483214832148,65.64906415147945],[-63.23283232832328,65.67101565598793],[-63.250832508325075,65.69296716049638],[-63.30483304833048,65.72336155135429],[-63.330033300333,65.74193590132299],[-63.34083340833408,65.76557598310134],[-63.351633516335156,65.78246175580017],[-63.43083430834308,65.8466276920557],[-63.448834488344886,65.87364492837384],[-63.459634596345964,65.90741647377149],[-63.477634776347756,65.93274513281975],[-63.502835028350276,65.93949944189927],[-63.50643506435064,65.93781086462937],[-63.510035100351004,65.9361222873595],[-63.513635136351354,65.93274513281975],[-63.51723517235172,65.9259908237402],[-63.510035100351004,65.9259908237402],[-63.51723517235172,65.91923651466067],[-63.510035100351004,65.90741647377149],[-63.513635136351354,65.89728501015219],[-63.53163531635316,65.87871066018349],[-63.484834848348484,65.85000484659548],[-63.412834128341274,65.7621988285616],[-63.3660336603366,65.73349301497359],[-63.373233732337326,65.72842728316394],[-63.387633876338754,65.71323008773498],[-63.376833768337676,65.70647577865546],[-63.3660336603366,65.69634431503616],[-63.35523355233552,65.68452427414698],[-63.348033480334806,65.6727042332578],[-63.376833768337676,65.6727042332578],[-63.463234632346314,65.68621285141685],[-63.578435784357836,65.67945854233733],[-63.59283592835928,65.66932707871803],[-63.603636036360356,65.66594992417828],[-63.62163621636216,65.67439281052768],[-63.711637116371165,65.6828356968771],[-63.72243722437224,65.67945854233733],[-63.715237152371515,65.66932707871803],[-63.690036900368995,65.65581846055898],[-63.664836648366474,65.64906415147945],[-63.585635856358564,65.65919561509872],[-63.560435604356044,65.6541298832891],[-63.52083520835208,65.63555553332037],[-63.499234992349926,65.63217837878062],[-63.384033840338404,65.63893268786015],[-63.3660336603366,65.6338669560505],[-63.348033480334806,65.62204691516132],[-63.31923319233192,65.59671825611306],[-63.322833228332286,65.59502967884319],[-63.326433264332636,65.59334110157332],[-63.333633336333364,65.59165252430344],[-63.34083340833408,65.58996394703354],[-63.333633336333364,65.57983248341426],[-63.333633336333364,65.57645532887449],[-63.351633516335156,65.54606093801661],[-63.3660336603366,65.53761805166718],[-63.48123481234812,65.52917516531778],[-63.49563495634956,65.5342408971274],[-63.513635136351354,65.5443723607467],[-63.553235532355316,65.58320963795401],[-63.56763567635676,65.59165252430344],[-63.5820358203582,65.59502967884319],[-63.60723607236072,65.59671825611306],[-63.60723607236072,65.58996394703354],[-63.60003600036001,65.58827536976366],[-63.585635856358564,65.58320963795401],[-63.585635856358564,65.57645532887449],[-63.589235892358914,65.56970101979496],[-63.585635856358564,65.56294671071544],[-63.57123571235712,65.54943809255636],[-63.59643596435964,65.55281524709613],[-63.60723607236072,65.55281524709613],[-63.62163621636216,65.54943809255636],[-63.60003600036001,65.53255231985753],[-63.54243542435424,65.52242085623823],[-63.524435244352446,65.50046935172978],[-63.53163531635316,65.48527215630082],[-63.51723517235172,65.48189500176105],[-63.488434884348834,65.4869607335707],[-63.452434524345236,65.4869607335707],[-63.438034380343794,65.48527215630082],[-63.29043290432904,65.43968057001399],[-63.29043290432904,65.43292626093447],[-63.31203312033119,65.43292626093447],[-63.351633516335156,65.43968057001399],[-63.373233732337326,65.43968057001399],[-63.398433984339846,65.43292626093447],[-63.409234092340924,65.43292626093447],[-63.423634236342366,65.43292626093447],[-63.57123571235712,65.47345211541165],[-63.628836288362876,65.48020642449117],[-63.6540365403654,65.46669780633212],[-63.463234632346314,65.40590902461634],[-63.40563405634056,65.40253187007656],[-63.387633876338754,65.3974661382669],[-63.524435244352446,65.39240040645728],[-63.524435244352446,65.38564609737773],[-63.463234632346314,65.38564609737773],[-63.463234632346314,65.37720321102833],[-63.474034740347406,65.3788917882982],[-63.48123481234812,65.37720321102833],[-63.499234992349926,65.3704489019488],[-63.47043470434704,65.3603174383295],[-63.47043470434704,65.35694028378973],[-63.44523445234452,65.35356312924998],[-63.373233732337326,65.32992304747162],[-63.384033840338404,65.3130372747728],[-63.387633876338754,65.30797154296314],[-63.362433624336234,65.30966012023302],[-63.351633516335156,65.30628296569324],[-63.34083340833408,65.3029058111535],[-63.3660336603366,65.29615150207397],[-63.41643416434164,65.30121723388362],[-63.44163441634416,65.29615150207397],[-63.4560345603456,65.28433146118479],[-63.44523445234452,65.27926572937514],[-63.427234272342716,65.27419999756549],[-63.409234092340924,65.26744568848596],[-63.398433984339846,65.27251142029559],[-63.387633876338754,65.27588857483536],[-63.362433624336234,65.27588857483536],[-63.351633516335156,65.27251142029559],[-63.34443344433444,65.26406853394619],[-63.34083340833408,65.25731422486666],[-63.351633516335156,65.25393707032688],[-63.40563405634056,65.25393707032688],[-63.434434344343444,65.25055991578714],[-63.4560345603456,65.24042845216783],[-63.434434344343444,65.2319855658184],[-63.348033480334806,65.22691983400875],[-63.322833228332286,65.22185410219913],[-63.31203312033119,65.21003406130993],[-63.31923319233192,65.19821402042075],[-63.34083340833408,65.19314828861113],[-63.348033480334806,65.194836865881],[-63.362433624336234,65.2032797522304],[-63.373233732337326,65.20665690677018],[-63.38043380433804,65.2049683295003],[-63.409234092340924,65.19990259769065],[-63.49563495634956,65.20159117496053],[-63.51723517235172,65.19314828861113],[-63.434434344343444,65.17288536137252],[-63.44523445234452,65.16781962956287],[-63.459634596345964,65.166131052293],[-63.47043470434704,65.1644424750231],[-63.484834848348484,65.166131052293],[-63.448834488344886,65.15768816594357],[-63.373233732337326,65.15431101140382],[-63.34083340833408,65.14417954778452],[-63.35523355233552,65.12729377508569],[-63.38043380433804,65.11885088873626],[-63.409234092340924,65.11209657965674],[-63.434434344343444,65.10365369330734],[-63.423634236342366,65.10027653876756],[-63.41643416434164,65.09352222968803],[-63.412834128341274,65.08676792060851],[-63.40563405634056,65.08339076606873],[-63.39483394833948,65.08170218879886],[-63.376833768337676,65.07157072517955],[-63.3660336603366,65.06988214790968],[-63.387633876338754,65.06143926156025],[-63.412834128341274,65.05975068429038],[-63.463234632346314,65.06312783883016],[-63.463234632346314,65.05468495248073],[-63.387633876338754,65.04961922067108],[-63.387633876338754,65.04117633432168],[-63.40563405634056,65.03273344797225],[-63.423634236342366,65.03273344797225],[-63.44163441634416,65.03611060251203],[-63.47043470434704,65.03442202524215],[-63.459634596345964,65.01584767527342],[-63.4560345603456,65.00740478892402],[-63.474034740347406,64.99727332530472],[-63.53163531635316,64.97363324352636],[-63.524435244352446,64.97025608898659],[-63.510035100351004,64.96181320263719],[-63.502835028350276,64.96012462536731],[-63.524435244352446,64.94830458447811],[-63.535235352353524,64.93986169812871],[-63.538835388353874,64.93310738904918],[-63.535235352353524,64.92466450269976],[-63.528035280352796,64.91284446181058],[-63.524435244352446,64.90271299819128],[-63.535235352353524,64.89933584365153],[-63.589235892358914,64.90271299819128],[-63.6540365403654,64.91791019362023],[-63.639636396363954,64.92466450269976],[-63.636036360363605,64.93141881177928],[-63.64323643236432,64.93817312085883],[-63.661236612366125,64.94492742993836],[-63.62163621636216,64.95674747082754],[-63.603636036360356,64.96519035717694],[-63.60723607236072,64.98038755260589],[-63.603636036360356,64.99389617076494],[-63.614436144361434,65.00233905711437],[-63.628836288362876,65.00402763438424],[-63.64323643236432,64.99727332530472],[-63.65763657636576,64.98883043895532],[-63.70083700837007,64.98038755260589],[-63.736837368373685,64.96856751171671],[-63.75483754837548,64.96519035717694],[-63.765637656376555,64.97701039806611],[-63.77283772837728,64.97869897533602],[-63.82683826838267,64.98714186168542],[-63.82683826838267,64.99389617076494],[-63.81963819638196,64.99727332530472],[-63.816038160381595,65.0006504798445],[-63.816038160381595,65.00402763438424],[-63.812438124381245,65.00740478892402],[-63.816038160381595,65.00740478892402],[-63.82683826838267,65.00740478892402],[-63.82683826838267,65.01415909800355],[-63.765637656376555,65.01415909800355],[-63.76923769237692,65.0192248298132],[-63.77283772837728,65.02091340708307],[-63.7440374403744,65.03104487070237],[-63.6540365403654,65.04117633432168],[-63.68283682836828,65.05130779794098],[-63.71883718837188,65.0563735297506],[-63.75483754837548,65.05299637521085],[-63.780037800378,65.0377991797819],[-63.80883808838088,65.0293562934325],[-63.84483844838448,65.03104487070237],[-63.870038700387,65.04455348886142],[-63.866438664386635,65.06988214790968],[-63.88443884438844,65.08676792060851],[-63.88083880838808,65.10365369330734],[-63.862838628386285,65.12222804327604],[-63.80163801638015,65.1644424750231],[-63.790837908379075,65.17963967045205],[-63.80883808838088,65.18639397953157],[-63.83043830438304,65.18639397953157],[-63.85563855638556,65.18301682499182],[-63.87363873638736,65.1745739386424],[-63.88443884438844,65.14249097051464],[-63.891638916389155,65.14080239324474],[-63.89883898838988,65.14249097051464],[-63.90243902439023,65.14417954778452],[-63.94923949239492,65.11040800238686],[-63.967239672396715,65.10196511603743],[-63.992439924399235,65.09858796149769],[-64.01764017640176,65.10365369330734],[-64.05724057240572,65.12053946600616],[-64.07164071640716,65.12053946600616],[-64.07884078840787,65.10027653876756],[-64.08244082440824,65.0766364569892],[-64.09324093240932,65.06143926156025],[-64.11124111241112,65.05299637521085],[-64.13644136441364,65.04961922067108],[-64.15444154441543,65.05468495248073],[-64.2120421204212,65.09689938422781],[-64.20124201242012,65.10196511603743],[-64.19764197641976,65.10365369330734],[-64.19764197641976,65.11040800238686],[-64.21924219242192,65.10871942511699],[-64.24084240842409,65.10196511603743],[-64.25884258842588,65.09689938422781],[-64.27684276842768,65.10365369330734],[-64.25524255242551,65.11885088873626],[-64.20844208442084,65.16275389775322],[-64.17964179641795,65.1762625159123],[-64.11124111241112,65.18977113407135],[-64.07884078840787,65.19990259769065],[-64.07884078840787,65.20665690677018],[-64.11484114841149,65.20834548404005],[-64.22644226442264,65.19990259769065],[-64.23724237242372,65.19652544315088],[-64.25164251642516,65.18132824772192],[-64.26244262442624,65.17795109318217],[-64.27684276842768,65.1762625159123],[-64.29484294842948,65.17119678410265],[-64.320043200432,65.15937674321347],[-64.320043200432,65.15262243413392],[-64.32724327243272,65.15093385686404],[-64.33444334443344,65.15431101140382],[-64.34524345243452,65.1762625159123],[-64.3740437404374,65.17963967045205],[-64.38124381243811,65.18977113407135],[-64.38124381243811,65.19652544315088],[-64.3920439204392,65.21678837038948],[-64.39564395643956,65.22691983400875],[-64.39564395643956,65.23705129762806],[-64.39564395643956,65.24718276124736],[-64.3920439204392,65.25393707032688],[-64.38844388443884,65.26069137940641],[-64.37764377643776,65.26575711121606],[-64.35244352443524,65.28095430664501],[-64.3380433804338,65.29615150207397],[-64.34884348843488,65.3029058111535],[-64.36684366843669,65.29615150207397],[-64.38484384843848,65.28433146118479],[-64.39924399243992,65.27926572937514],[-64.40284402844028,65.28770861572454],[-64.410044100441,65.28770861572454],[-64.3920439204392,65.30459438842337],[-64.3380433804338,65.33330020201137],[-64.32724327243272,65.34680882017045],[-64.25164251642516,65.39240040645728],[-64.25164251642516,65.3974661382669],[-64.2660426604266,65.40590902461634],[-64.25524255242551,65.41097475642599],[-64.2480424804248,65.41604048823564],[-64.24084240842409,65.42279479731516],[-64.23724237242372,65.43292626093447],[-64.2840428404284,65.43123768366456],[-64.29844298442984,65.42279479731516],[-64.29124291242913,65.40590902461634],[-64.30564305643055,65.40084329280668],[-64.33444334443344,65.39240040645728],[-64.34884348843488,65.38564609737773],[-64.35244352443524,65.3704489019488],[-64.35244352443524,65.3603174383295],[-64.3560435604356,65.35356312924998],[-64.3740437404374,65.34343166563067],[-64.42084420844208,65.33667735655115],[-64.43524435244352,65.32992304747162],[-64.4460444604446,65.31979158385232],[-64.46764467644677,65.29108577026432],[-64.47844478444784,65.28264288391489],[-64.47844478444784,65.27588857483536],[-64.45684456844567,65.24211702943771],[-64.46044460444604,65.20665690677018],[-64.50364503645037,65.14417954778452],[-64.5360453604536,65.10871942511699],[-64.55764557645576,65.09352222968803],[-64.56484564845648,65.10027653876756],[-64.5720457204572,65.12560519781582],[-64.590045900459,65.13067092962547],[-64.61524615246152,65.12560519781582],[-64.64044640446404,65.12391662054591],[-64.64044640446404,65.13067092962547],[-64.63324633246332,65.13235950689534],[-64.62244622446224,65.13573666143509],[-64.61524615246152,65.13742523870499],[-64.62244622446224,65.14755670232427],[-64.63324633246332,65.15262243413392],[-64.64044640446404,65.15768816594357],[-64.61884618846189,65.18301682499182],[-64.61524615246152,65.19314828861113],[-64.6260462604626,65.194836865881],[-64.64044640446404,65.19314828861113],[-64.64764647646476,65.18808255680148],[-64.65124651246512,65.18132824772192],[-64.65844658446584,65.1745739386424],[-64.68724687246872,65.16950820683275],[-64.71244712447124,65.16106532048335],[-64.73044730447305,65.15937674321347],[-64.71964719647195,65.1762625159123],[-64.71244712447124,65.18977113407135],[-64.70164701647016,65.19990259769065],[-64.68364683646836,65.20665690677018],[-64.71244712447124,65.22016552492923],[-64.7160471604716,65.22691983400875],[-64.70164701647016,65.23705129762806],[-64.69084690846908,65.24211702943771],[-64.6620466204662,65.24718276124736],[-64.64764647646476,65.24718276124736],[-64.64764647646476,65.25393707032688],[-64.69084690846908,65.25224849305701],[-64.70524705247053,65.25731422486666],[-64.70884708847088,65.27082284302571],[-64.7160471604716,65.27419999756549],[-64.72324723247232,65.27588857483536],[-64.73764737647376,65.27588857483536],[-64.74484744847447,65.27588857483536],[-64.7520475204752,65.27082284302571],[-64.76644766447664,65.25393707032688],[-64.79884798847988,65.24042845216783],[-64.83124831248313,65.24380560670758],[-64.86724867248672,65.25900280213654],[-64.90324903249032,65.28264288391489],[-64.85284852848528,65.28264288391489],[-64.86364863648636,65.29277434753419],[-64.8780487804878,65.29784007934384],[-64.89244892448924,65.29784007934384],[-64.91044910449104,65.3029058111535],[-64.91044910449104,65.30797154296314],[-64.8960489604896,65.30797154296314],[-64.8780487804878,65.31641442931254],[-64.83484834848348,65.3214801611222],[-64.82044820448203,65.32992304747162],[-64.80964809648096,65.32654589293185],[-64.77724777247772,65.31641442931254],[-64.75924759247592,65.31641442931254],[-64.71964719647195,65.32823447020172],[-64.68364683646836,65.34343166563067],[-64.79164791647916,65.3501859747102],[-64.89244892448924,65.33667735655115],[-64.9140491404914,65.34343166563067],[-64.88884888848888,65.35525170651985],[-64.81684816848168,65.3687603246789],[-64.7520475204752,65.39240040645728],[-64.67644676446764,65.40084329280668],[-64.64044640446404,65.41097475642599],[-64.61884618846189,65.42617195185491],[-64.6080460804608,65.43123768366456],[-64.50724507245071,65.43292626093447],[-64.48924489244892,65.42954910639469],[-64.47484474844748,65.42448337458504],[-64.45684456844567,65.42110622004529],[-64.44244442444425,65.42617195185491],[-64.43164431644315,65.43799199274412],[-64.410044100441,65.48020642449117],[-64.42084420844208,65.4869607335707],[-64.43884438844388,65.4869607335707],[-64.44964449644496,65.4785178472213],[-64.45684456844567,65.46332065179234],[-64.4640446404464,65.4498120336333],[-64.48564485644856,65.44136914728387],[-64.50724507245071,65.44136914728387],[-64.52524525245252,65.44643487909352],[-64.51804518045181,65.44812345636339],[-64.49644496444964,65.45318918817304],[-64.49644496444964,65.45994349725257],[-64.61884618846189,65.45318918817304],[-64.63684636846368,65.46332065179234],[-64.64044640446404,65.47007496087187],[-64.65844658446584,65.46332065179234],[-64.67284672846728,65.45150061090317],[-64.67644676446764,65.44643487909352],[-64.69444694446945,65.43799199274412],[-64.70884708847088,65.43461483820434],[-64.74484744847447,65.43292626093447],[-64.79524795247951,65.42110622004529],[-64.81324813248132,65.41941764277539],[-64.87084870848707,65.42786052912481],[-64.88524885248852,65.42279479731516],[-64.95364953649536,65.40759760188621],[-64.98964989649896,65.39408898372716],[-64.98244982449825,65.37720321102833],[-65.01125011250112,65.3687603246789],[-65.04365043650436,65.37382605648855],[-65.07245072450723,65.38902325191751],[-65.08685086850868,65.3974661382669],[-65.130051300513,65.42448337458504],[-65.14445144451444,65.43630341547421],[-65.1480514805148,65.44812345636339],[-65.14445144451444,65.46163207452247],[-65.14445144451444,65.47345211541165],[-65.16965169651696,65.4869607335707],[-65.14445144451444,65.49878077445987],[-65.11565115651156,65.50384650626953],[-65.02565025650256,65.51060081534905],[-64.92844928449284,65.52917516531778],[-64.93564935649356,65.53761805166718],[-64.93564935649356,65.54099520620696],[-64.9320493204932,65.54606093801661],[-64.91044910449104,65.55450382436601],[-64.90324903249032,65.55619240163588],[-64.8960489604896,65.55450382436601],[-64.89244892448924,65.55450382436601],[-64.88884888848888,65.55956955617566],[-64.88884888848888,65.56463528798531],[-64.88884888848888,65.56632386525519],[-64.88164881648817,65.56970101979496],[-64.86364863648636,65.58320963795401],[-64.85284852848528,65.58658679249379],[-64.8420484204842,65.58996394703354],[-64.83124831248313,65.58827536976366],[-64.8060480604806,65.58320963795401],[-64.79164791647916,65.58320963795401],[-64.79884798847988,65.59165252430344],[-64.83484834848348,65.60684971973237],[-64.83484834848348,65.61191545154202],[-64.83844838448384,65.62204691516132],[-64.83844838448384,65.6338669560505],[-64.83124831248313,65.63893268786015],[-64.7340473404734,65.64568699693967],[-64.70884708847088,65.65075272874932],[-64.70884708847088,65.65919561509872],[-64.83124831248313,65.66426134690838],[-64.85284852848528,65.66088419236863],[-64.87084870848707,65.65075272874932],[-64.9680496804968,65.55956955617566],[-64.98964989649896,65.54774951528648],[-65.02565025650256,65.54606093801661],[-65.0940509405094,65.54943809255636],[-65.15165151651516,65.5443723607467],[-65.18045180451804,65.54606093801661],[-65.20925209252093,65.55450382436601],[-65.22365223652235,65.56632386525519],[-65.21285212852128,65.57307817433471],[-65.19125191251912,65.58320963795401],[-65.1840518405184,65.60009541065284],[-65.19485194851949,65.60347256519262],[-65.2920529205292,65.56125813344553],[-65.31365313653136,65.55619240163588],[-65.3280532805328,65.56125813344553],[-65.34245342453424,65.58320963795401],[-65.32445324453244,65.58658679249379],[-65.31005310053101,65.59165252430344],[-65.29925299252992,65.60009541065284],[-65.30645306453064,65.61022687427214],[-65.30285302853028,65.62880122424085],[-65.26685266852668,65.63893268786015],[-65.22365223652235,65.63893268786015],[-65.17685176851768,65.63048980151072],[-65.11925119251192,65.63893268786015],[-65.10845108451085,65.6439984196698],[-65.10485104851048,65.6727042332578],[-65.09045090450904,65.67945854233733],[-65.05085050850508,65.68452427414698],[-64.97884978849788,65.70647577865546],[-64.93564935649356,65.71323008773498],[-64.860048600486,65.71154151046511],[-64.8240482404824,65.71491866500486],[-64.79164791647916,65.72842728316394],[-64.8240482404824,65.73687016951334],[-65.00045000450004,65.72505012862416],[-65.06525065250652,65.71323008773498],[-65.09045090450904,65.70478720138556],[-65.14085140851408,65.67776996506745],[-65.15885158851589,65.6625727696385],[-65.1840518405184,65.65750703782885],[-65.4540545405454,65.67945854233733],[-65.45045450454504,65.68959000595663],[-65.40005400054,65.74869021040251],[-65.38565385653857,65.76388740583147],[-65.37845378453784,65.77401886945077],[-65.37485374853748,65.78246175580017],[-65.38565385653857,65.78752748760982],[-65.40005400054,65.78583891033995],[-65.41445414454144,65.77908460126042],[-65.44325443254432,65.75882167402182],[-65.46485464854648,65.74531305586277],[-65.490054900549,65.74024732405312],[-65.50445504455044,65.75544451948204],[-65.50445504455044,65.76726456037122],[-65.49365493654936,65.77908460126042],[-65.47925479254792,65.79597037395925],[-65.45765457654576,65.83311907389665],[-65.45045450454504,65.84325053751596],[-65.37485374853748,65.89053070107266],[-65.36045360453605,65.90235074196184],[-65.35325353253532,65.91417078285102],[-65.33525335253353,65.92092509193054],[-65.28485284852849,65.9276794010101],[-65.2560525605256,65.93781086462937],[-65.21285212852128,65.94287659643902],[-65.15525155251552,65.96145094640775],[-65.130051300513,65.9665166782174],[-65.13365133651337,65.9665166782174],[-65.10845108451085,65.96820525548728],[-65.06165061650616,65.9834024509162],[-64.96084960849608,66.00028822361503],[-64.93924939249392,66.00704253269458],[-64.91044910449104,66.00535395542468],[-64.8060480604806,65.9749595645668],[-64.81324813248132,65.9749595645668],[-64.79164791647916,65.97327098729693],[-64.77364773647736,65.96989383275715],[-64.75564755647557,65.96820525548728],[-64.73764737647376,65.9749595645668],[-64.74844748447484,65.9834024509162],[-64.76284762847628,65.99184533726563],[-64.78084780847809,65.99859964634516],[-64.81324813248132,66.00535395542468],[-64.83844838448384,66.02392830539341],[-64.85284852848528,66.02899403720306],[-64.85284852848528,66.03574834628259],[-64.82764827648276,66.05094554171151],[-64.79884798847988,66.0745856234899],[-64.77724777247772,66.1032914370779],[-64.76644766447664,66.1319972506659],[-64.75564755647557,66.16576879606356],[-64.74124741247412,66.19954034146119],[-64.7160471604716,66.22486900050944],[-64.64044640446404,66.24344335047815],[-64.56124561245612,66.28565778222523],[-64.51804518045181,66.2957892458445],[-64.47484474844748,66.29916640038428],[-64.43164431644315,66.31098644127346],[-64.38844388443884,66.32787221397228],[-64.35244352443524,66.34982371848076],[-64.37044370443704,66.35320087302054],[-64.38124381243811,66.34982371848076],[-64.38844388443884,66.34306940940124],[-64.39564395643956,66.33800367759159],[-64.40644406444063,66.33293794578194],[-64.41364413644136,66.33124936851206],[-64.42084420844208,66.32956079124216],[-64.4280442804428,66.33293794578194],[-64.43524435244352,66.34138083213134],[-64.43884438844388,66.34475798667111],[-64.45324453244532,66.34306940940124],[-64.46764467644677,66.34138083213134],[-64.52884528845289,66.31942932762288],[-64.54324543245433,66.31774075035298],[-64.56124561245612,66.31605217308311],[-64.57924579245793,66.31267501854333],[-64.61524615246152,66.29916640038428],[-64.70884708847088,66.28228062768545],[-64.76644766447664,66.25526339136732],[-64.79524795247951,66.23500046412875],[-64.81324813248132,66.21304895962027],[-64.8060480604806,66.21304895962027],[-64.81324813248132,66.20798322781062],[-64.82044820448203,66.20460607327084],[-64.82764827648276,66.20291749600096],[-64.83484834848348,66.19954034146119],[-64.83484834848348,66.19616318692144],[-64.83844838448384,66.18940887784191],[-64.85284852848528,66.16408021879366],[-64.860048600486,66.1505716006346],[-64.85644856448565,66.14212871428518],[-64.84924849248492,66.12017720977673],[-64.87084870848707,66.10666859161765],[-64.92124921249211,66.09822570526825],[-64.950049500495,66.07965135529952],[-64.96444964449644,66.07627420075977],[-65.0220502205022,66.07796277802964],[-65.03645036450364,66.07289704621999],[-65.0580505805058,66.06107700533082],[-65.2020520205202,66.02899403720306],[-65.2380523805238,66.02392830539341],[-65.25245252452524,66.03237119174281],[-65.2560525605256,66.03743692355246],[-65.26685266852668,66.04081407809224],[-65.28845288452884,66.04250265536211],[-65.2920529205292,66.03743692355246],[-65.29925299252992,66.01548541904398],[-65.30645306453064,66.00704253269458],[-65.31725317253172,66.0036653781548],[-65.36045360453605,65.9935339145355],[-65.3820538205382,65.9850910281861],[-65.39285392853928,65.98171387364633],[-65.75285752857528,65.97158241002703],[-65.82485824858249,65.9563852145981],[-65.86085860858608,65.95300806005832],[-65.90045900459005,65.95300806005832],[-65.92565925659257,65.95976236913785],[-65.940059400594,65.97664814183668],[-65.94365943659436,66.01210826450423],[-65.94725947259472,66.02223972812351],[-65.9580595805958,66.03237119174281],[-65.96525965259652,66.04081407809224],[-65.96165961659617,66.05263411898142],[-65.94725947259472,66.05938842806094],[-65.92925929259292,66.06445415987059],[-65.91845918459184,66.0745856234899],[-65.9220592205922,66.08978281891882],[-65.9040590405904,66.09653712799835],[-65.86085860858608,66.09991428253812],[-65.83925839258391,66.1032914370779],[-65.67365673656737,66.16914595060331],[-65.63765637656377,66.17252310514309],[-65.63045630456304,66.18940887784191],[-65.61965619656196,66.20122891873109],[-65.59085590855908,66.21136038235039],[-65.55845558455584,66.23500046412875],[-65.55125551255512,66.24513192774805],[-65.5440554405544,66.25526339136732],[-65.53685536855369,66.2772148958758],[-65.52965529655296,66.28565778222523],[-65.51525515255152,66.2974778231144],[-65.4720547205472,66.31605217308311],[-65.48645486454865,66.32111790489276],[-65.52245522455225,66.31774075035298],[-65.54045540455404,66.32280648216263],[-65.48645486454865,66.33969225486146],[-65.46845468454684,66.35320087302054],[-65.47925479254792,66.37177522298924],[-65.47925479254792,66.3768409547989],[-65.4720547205472,66.38190668660854],[-65.4720547205472,66.3852838411483],[-65.47925479254792,66.39203815022782],[-65.49365493654936,66.38866099568807],[-65.50445504455044,66.3768409547989],[-65.51525515255152,66.36164375936994],[-65.51885518855188,66.34644656394099],[-65.52245522455225,66.34306940940124],[-65.52965529655296,66.33969225486146],[-65.53685536855369,66.33800367759159],[-65.55125551255512,66.33462652305181],[-65.55485554855548,66.32956079124216],[-65.56925569255692,66.28228062768545],[-65.57645576455764,66.27214916406615],[-65.59085590855908,66.25695196863722],[-65.68085680856808,66.19109745511179],[-65.69525695256952,66.18603172330214],[-65.73485734857348,66.18265456876239],[-65.7780577805778,66.17252310514309],[-65.8320583205832,66.1505716006346],[-65.84285842858428,66.14212871428518],[-65.86085860858608,66.13537440520565],[-65.91125911259113,66.12355436431648],[-65.93645936459365,66.11680005523695],[-65.9580595805958,66.11511147796708],[-66.0120601206012,66.11680005523695],[-66.14886148861488,66.1404401370153],[-66.15246152461525,66.14550586882496],[-66.15246152461525,66.15226017790448],[-66.1560615606156,66.159014486984],[-66.19566195661956,66.17421168241296],[-66.20286202862029,66.17927741422261],[-66.20286202862029,66.18096599149249],[-66.20286202862029,66.18603172330214],[-66.20646206462064,66.19447460965156],[-66.21366213662137,66.20291749600096],[-66.25686256862568,66.22318042323957],[-66.26046260462604,66.22655757777932],[-66.25686256862568,66.22655757777932],[-66.25686256862568,66.22486900050944],[-66.25326253262533,66.22149184596967],[-66.2460624606246,66.23162330958897],[-66.23166231662316,66.24344335047815],[-66.21366213662137,66.25019765955767],[-66.19566195661956,66.24175477320827],[-66.1920619206192,66.24175477320827],[-66.1740617406174,66.26539485498662],[-66.14886148861488,66.28903493676498],[-66.23526235262352,66.25357481409745],[-66.2820628206282,66.24175477320827],[-66.31446314463145,66.26201770044685],[-66.31086310863108,66.27383774133605],[-66.32526325263252,66.2687720095264],[-66.36126361263612,66.25526339136732],[-66.38286382863828,66.26201770044685],[-66.40086400864008,66.27552631860593],[-66.42246422464224,66.28059205041558],[-66.4440644406444,66.2687720095264],[-66.41526415264153,66.25695196863722],[-66.38646386463864,66.24175477320827],[-66.3720637206372,66.22486900050944],[-66.390063900639,66.20629465054074],[-66.4260642606426,66.20122891873109],[-66.47646476464764,66.20460607327084],[-66.51966519665196,66.21811469142992],[-66.54126541265413,66.24513192774805],[-66.54846548465484,66.2670834322565],[-66.54846548465484,66.28228062768545],[-66.53766537665376,66.28903493676498],[-66.48366483664836,66.2772148958758],[-66.47646476464764,66.27890347314568],[-66.48006480064801,66.28903493676498],[-66.48366483664836,66.30254355492406],[-66.49086490864909,66.31267501854333],[-66.50166501665016,66.31605217308311],[-66.5160651606516,66.32111790489276],[-66.50526505265053,66.32787221397228],[-66.47286472864728,66.34475798667111],[-66.47286472864728,66.34982371848076],[-66.54126541265413,66.34644656394099],[-66.570065700657,66.35151229575064],[-66.57366573665736,66.37177522298924],[-66.55566555665557,66.38190668660854],[-66.4440644406444,66.40216961384712],[-66.43686436864368,66.40723534565677],[-66.4440644406444,66.4139896547363],[-66.45846458464584,66.41905538654595],[-66.47286472864728,66.41905538654595],[-66.50166501665016,66.40892392292665],[-66.5160651606516,66.4055467683869],[-66.5340653406534,66.403858191117],[-66.56646566465665,66.39710388203747],[-66.59166591665917,66.38697241841817],[-66.6240662406624,66.37177522298924],[-66.61686616866169,66.37177522298924],[-66.69246692466925,66.37008664571934],[-66.73206732067321,66.37346380025912],[-66.76446764467644,66.3852838411483],[-66.73206732067321,66.39034957295794],[-66.70686706867069,66.403858191117],[-66.69246692466925,66.42749827289538],[-66.6780667806678,66.45958124102313],[-66.70326703267033,66.45789266375326],[-66.7140671406714,66.44944977740383],[-66.71766717667177,66.43762973651465],[-66.73926739267392,66.432564004705],[-66.76086760867608,66.43594115924478],[-66.7860678606786,66.4426954683243],[-66.80766807668077,66.4528269319436],[-66.8220682206822,66.46633555010266],[-66.79326793267933,66.47477843645208],[-66.79326793267933,66.49841851823044],[-66.8040680406804,66.52543575454857],[-66.82566825668256,66.5423215272474],[-66.82566825668256,66.53725579543774],[-66.83646836468364,66.53556721816787],[-66.85086850868508,66.53725579543774],[-66.86166861668616,66.5423215272474],[-66.74646746467464,66.57271591810527],[-66.72486724867248,66.59129026807398],[-66.76446764467644,66.5997331544234],[-66.84726847268472,66.5896016908041],[-66.89046890468904,66.59804457715353],[-66.96966969669697,66.63012754528128],[-67.01287012870128,66.64194758617046],[-67.05967059670596,66.64532474071024],[-67.05967059670596,66.63857043163071],[-66.88326883268832,66.56933876356553],[-66.91566915669156,66.55414156813657],[-66.96246962469624,66.54063294997749],[-67.00567005670057,66.53556721816787],[-67.03447034470344,66.5423215272474],[-67.0380703807038,66.53556721816787],[-67.04167041670416,66.53050148635822],[-67.04527045270453,66.52712433181844],[-67.04887048870488,66.52205860000879],[-67.0740707407074,66.53387864089797],[-67.10287102871028,66.53894437270762],[-67.13527135271352,66.53725579543774],[-67.1640716407164,66.52881290908832],[-67.1640716407164,66.52205860000879],[-67.0920709207092,66.51868144546904],[-67.08127081270813,66.51192713638949],[-67.09567095670957,66.49335278642079],[-67.1280712807128,66.48659847734126],[-67.16767167671676,66.48828705461113],[-67.18927189271892,66.49504136369066],[-67.20007200072,66.51023855911961],[-67.19287192871928,66.52543575454857],[-67.19647196471965,66.53725579543774],[-67.28287282872829,66.5524529908667],[-67.31167311673116,66.56258445448597],[-67.33687336873368,66.57609307264505],[-67.32967329673296,66.59297884534388],[-67.35127351273512,66.59804457715353],[-67.40887408874089,66.59129026807398],[-67.43407434074341,66.57778164991493],[-67.44847448474485,66.57440449537515],[-67.46287462874628,66.5811588044547],[-67.50967509675097,66.6183075043921],[-67.51687516875168,66.62168465893188],[-67.52767527675276,66.62506181347163],[-67.5420754207542,66.62506181347163],[-67.55647556475564,66.62168465893188],[-67.54927549275493,66.61324177258246],[-67.52767527675276,66.59804457715353],[-67.52047520475205,66.57609307264505],[-67.53847538475384,66.5710273408354],[-67.56727567275672,66.57609307264505],[-67.58887588875888,66.58453595899445],[-67.59967599675997,66.59129026807398],[-67.6140761407614,66.59635599988363],[-67.6320763207632,66.59804457715353],[-67.65007650076501,66.59804457715353],[-67.64647646476465,66.59297884534388],[-67.64287642876428,66.58284738172458],[-67.63567635676357,66.57609307264505],[-67.69327693276932,66.58284738172458],[-67.7220772207722,66.58284738172458],[-67.74727747277473,66.56933876356553],[-67.7040770407704,66.55920729994622],[-67.380073800738,66.54907583632692],[-67.3620736207362,66.5423215272474],[-67.30447304473044,66.5321900636281],[-67.28647286472864,66.52543575454857],[-67.27207272072721,66.51530429092927],[-67.26847268472685,66.49841851823044],[-67.25047250472504,66.47646701372196],[-67.17487174871748,66.45451550921348],[-67.14247142471424,66.44100689105443],[-67.16047160471604,66.432564004705],[-67.16047160471604,66.4241211183556],[-67.14967149671496,66.4055467683869],[-67.14607146071461,66.39203815022782],[-67.14607146071461,66.37852953206877],[-67.15687156871569,66.36839806844947],[-67.17847178471784,66.36502091390972],[-67.20007200072,66.37177522298924],[-67.23247232472325,66.39879245930737],[-67.2540725407254,66.4055467683869],[-67.3620736207362,66.41230107746642],[-67.3620736207362,66.41905538654595],[-67.35127351273512,66.41905538654595],[-67.34767347673477,66.42074396381582],[-67.33687336873368,66.42580969562547],[-67.35127351273512,66.432564004705],[-67.36927369273693,66.4342525819749],[-67.40887408874089,66.432564004705],[-67.39447394473945,66.41230107746642],[-67.3620736207362,66.39372672749772],[-67.32247322473225,66.38190668660854],[-67.30087300873008,66.3768409547989],[-67.28287282872829,66.37008664571934],[-67.22887228872288,66.35826660483016],[-67.20367203672036,66.35657802756029],[-67.18927189271892,66.35151229575064],[-67.14247142471424,66.32787221397228],[-67.1280712807128,66.31605217308311],[-67.14607146071461,66.30254355492406],[-67.17487174871748,66.30254355492406],[-67.23247232472325,66.30929786400358],[-67.25767257672577,66.30254355492406],[-67.27927279272792,66.28903493676498],[-67.30447304473044,66.28059205041558],[-67.33687336873368,66.28903493676498],[-67.36927369273693,66.31436359581323],[-67.38367383673837,66.31774075035298],[-67.39087390873908,66.29916640038428],[-67.39807398073981,66.2957892458445],[-67.41967419674197,66.3059207094638],[-67.44127441274412,66.31942932762288],[-67.4520745207452,66.32956079124216],[-67.44487444874449,66.33293794578194],[-67.44127441274412,66.33631510032171],[-67.44127441274412,66.33969225486146],[-67.43767437674376,66.34475798667111],[-67.48087480874808,66.35320087302054],[-67.49167491674916,66.35657802756029],[-67.49527495274953,66.36670949117959],[-67.49527495274953,66.3768409547989],[-67.49887498874989,66.3852838411483],[-67.51327513275132,66.39203815022782],[-67.52767527675276,66.38697241841817],[-67.54567545675457,66.3954153047676],[-67.57447574475745,66.41905538654595],[-67.58167581675816,66.41230107746642],[-67.59247592475924,66.41905538654595],[-67.62847628476284,66.42749827289538],[-67.64287642876428,66.432564004705],[-67.6320763207632,66.4426954683243],[-67.62847628476284,66.44607262286408],[-67.65367653676536,66.44607262286408],[-67.70047700477005,66.43762973651465],[-67.80127801278013,66.45789266375326],[-67.82287822878229,66.46633555010266],[-67.83367833678336,66.48153274553161],[-67.84447844478444,66.51530429092927],[-67.85887858878588,66.52205860000879],[-67.8660786607866,66.51868144546904],[-67.86967869678696,66.50854998184974],[-67.87687876878769,66.49841851823044],[-67.89127891278912,66.49504136369066],[-67.90207902079021,66.49841851823044],[-67.92367923679237,66.51530429092927],[-67.93807938079381,66.52205860000879],[-67.98487984879849,66.51361571365939],[-67.9920799207992,66.50854998184974],[-67.98487984879849,66.50010709550031],[-67.96687966879668,66.50010709550031],[-67.95247952479524,66.49841851823044],[-67.94527945279452,66.48490990007139],[-67.93807938079381,66.47984416826174],[-67.90567905679056,66.46971270464243],[-67.87687876878769,66.46464697283278],[-67.86967869678696,66.45620408648338],[-67.8660786607866,66.4443840455942],[-67.86247862478625,66.432564004705],[-67.85887858878588,66.42243254108573],[-67.85527855278552,66.41736680927607],[-67.85167851678517,66.4139896547363],[-67.84087840878408,66.4055467683869],[-67.80127801278013,66.39034957295794],[-67.78327783277832,66.3768409547989],[-67.76167761677617,66.36502091390972],[-67.7580775807758,66.36164375936994],[-67.7580775807758,66.34813514121089],[-67.7580775807758,66.33631510032171],[-67.75087750877509,66.32787221397228],[-67.740077400774,66.32280648216263],[-67.740077400774,66.31605217308311],[-67.71127711277113,66.30423213219393],[-67.7040770407704,66.29241209130475],[-67.71127711277113,66.2772148958758],[-67.7220772207722,66.2670834322565],[-67.75447754477544,66.25526339136732],[-67.73287732877328,66.24513192774805],[-67.68607686076861,66.2400661959384],[-67.67167671676717,66.23331188685884],[-67.67167671676717,66.23162330958897],[-67.67887678876788,66.22655757777932],[-67.64287642876428,66.22318042323957],[-67.56007560075601,66.18603172330214],[-67.48087480874808,66.17421168241296],[-67.48447484474845,66.16576879606356],[-67.48447484474845,66.159014486984],[-67.48087480874808,66.15563733244426],[-67.47727477274772,66.15394875517435],[-67.470074700747,66.15226017790448],[-67.43407434074341,66.13875155974543],[-67.31167311673116,66.11848863250682],[-67.29367293672937,66.1117343234273],[-67.28647286472864,66.09822570526825],[-67.27927279272792,66.07965135529952],[-67.26847268472685,66.06276558260069],[-67.25767257672577,66.05601127352116],[-67.24687246872469,66.05432269625129],[-67.22887228872288,66.04419123263199],[-67.2180721807218,66.04250265536211],[-67.1640716407164,66.04250265536211],[-67.1640716407164,66.03574834628259],[-67.23247232472325,66.01210826450423],[-67.27207272072721,66.0036653781548],[-67.31527315273152,66.00197680088493],[-67.30087300873008,65.99691106907528],[-67.27207272072721,65.99184533726563],[-67.25767257672577,65.98846818272585],[-67.25047250472504,65.98171387364633],[-67.24327243272432,65.9665166782174],[-67.23967239672396,65.95976236913785],[-67.22527225272252,65.95131948278845],[-67.20727207272073,65.94287659643902],[-67.18927189271892,65.9361222873595],[-67.17127171271713,65.93274513281975],[-67.18567185671856,65.91585936012092],[-67.20727207272073,65.91417078285102],[-67.26847268472685,65.92936797827997],[-67.31527315273152,65.9259908237402],[-67.33327333273333,65.92092509193054],[-67.3440734407344,65.91923651466067],[-67.35127351273512,65.92261366920044],[-67.3620736207362,65.92936797827997],[-67.37287372873729,65.93443371008962],[-67.38727387273872,65.93781086462937],[-67.39807398073981,65.93949944189927],[-67.40167401674016,65.94118801916915],[-67.40527405274052,65.94456517370892],[-67.40527405274052,65.9462537509788],[-67.40887408874089,65.9462537509788],[-67.4160741607416,65.94456517370892],[-67.4160741607416,65.94118801916915],[-67.4160741607416,65.93781086462937],[-67.4160741607416,65.93274513281975],[-67.44847448474485,65.90235074196184],[-67.47367473674737,65.89390785561244],[-67.51687516875168,65.91079362831127],[-67.54567545675457,65.91079362831127],[-67.60327603276032,65.90572789650162],[-67.6140761407614,65.90572789650162],[-67.62487624876249,65.90910505104137],[-67.63567635676357,65.91417078285102],[-67.64647646476465,65.92261366920044],[-67.65727657276572,65.9276794010101],[-67.68967689676896,65.92936797827997],[-67.7040770407704,65.93274513281975],[-67.72927729277292,65.95976236913785],[-67.74727747277473,65.9665166782174],[-67.75447754477544,65.94963090551857],[-67.74727747277473,65.93781086462937],[-67.73287732877328,65.92430224647032],[-67.7040770407704,65.90572789650162],[-67.7040770407704,65.89897358742209],[-67.75087750877509,65.89728501015219],[-67.77247772477725,65.89221927834254],[-67.79047790477904,65.88208781472326],[-67.80847808478084,65.87871066018349],[-67.92367923679237,65.90403931923174],[-67.93447934479344,65.91585936012092],[-67.93807938079381,65.93105655554984],[-67.94527945279452,65.9462537509788],[-67.95967959679597,65.9563852145981],[-67.97767977679776,65.9648281009475],[-67.98847988479885,65.97327098729693],[-67.98487984879849,65.98846818272585],[-68.02448024480245,65.99522249180541],[-68.03168031680316,66.00197680088493],[-68.03168031680316,66.01041968723433],[-68.01728017280172,66.03405976901269],[-68.01368013680137,66.04587980990186],[-68.01728017280172,66.04925696444164],[-68.02088020880208,66.05094554171151],[-68.02448024480245,66.05432269625129],[-68.0280802808028,66.05938842806094],[-68.02448024480245,66.06614273714047],[-68.02448024480245,66.06951989168024],[-68.02088020880208,66.07120846895012],[-68.02088020880208,66.07289704621999],[-67.97407974079741,66.0830285098393],[-67.9920799207992,66.09484855072847],[-68.07848078480784,66.12017720977673],[-68.13968139681397,66.12693151885625],[-68.21528215282153,66.14550586882496],[-68.24048240482405,66.159014486984],[-68.2440824408244,66.17590025968283],[-68.25128251282513,66.19785176419131],[-68.25848258482584,66.21811469142992],[-68.27288272882728,66.22655757777932],[-68.30528305283052,66.22655757777932],[-68.33048330483304,66.22318042323957],[-68.34128341283413,66.20967180508049],[-68.33048330483304,66.18603172330214],[-68.34488344883448,66.18265456876239],[-68.37368373683736,66.18265456876239],[-68.39888398883988,66.18603172330214],[-68.40968409684096,66.19616318692144],[-68.41328413284133,66.21304895962027],[-68.43488434884348,66.25357481409745],[-68.44568445684456,66.2687720095264],[-68.45648456484564,66.27890347314568],[-68.47448474484744,66.29072351403488],[-68.4960849608496,66.29916640038428],[-68.5140851408514,66.30254355492406],[-68.52488524885248,66.2974778231144],[-68.51768517685177,66.28228062768545],[-68.49248492484925,66.25526339136732],[-68.47808478084781,66.24344335047815],[-68.47088470884708,66.23668904139862],[-68.47088470884708,66.22655757777932],[-68.48168481684816,66.21980326869979],[-68.4960849608496,66.21304895962027],[-68.5140851408514,66.20798322781062],[-68.52488524885248,66.20629465054074],[-68.82728827288273,66.20122891873109],[-68.84888848888488,66.19278603238166],[-68.72648726487265,66.18096599149249],[-68.7120871208712,66.17252310514309],[-68.69048690486905,66.17421168241296],[-68.6760867608676,66.17758883695274],[-68.66888668886689,66.18265456876239],[-68.65088650886509,66.18772030057201],[-68.63288632886328,66.18434314603226],[-68.61128611286112,66.17590025968283],[-68.59688596885968,66.17252310514309],[-68.58248582485824,66.17421168241296],[-68.57528575285752,66.17590025968283],[-68.56808568085681,66.18096599149249],[-68.55728557285572,66.18940887784191],[-68.54288542885429,66.19447460965156],[-68.48528485284852,66.19278603238166],[-68.49248492484925,66.19278603238166],[-68.460084600846,66.18772030057201],[-68.44208442084421,66.18434314603226],[-68.42768427684277,66.17590025968283],[-68.40248402484025,66.14888302336473],[-68.3880838808388,66.13537440520565],[-68.3340833408334,66.1218657870466],[-68.2620826208262,66.08133993256942],[-68.21888218882188,66.07627420075977],[-68.22248222482224,66.07796277802964],[-68.21888218882188,66.0830285098393],[-68.24048240482405,66.09991428253812],[-68.25848258482584,66.1117343234273],[-68.25128251282513,66.11511147796708],[-68.24048240482405,66.11680005523695],[-68.22968229682296,66.11511147796708],[-68.21888218882188,66.1117343234273],[-68.21888218882188,66.11680005523695],[-68.22248222482224,66.12862009612613],[-68.20088200882009,66.12862009612613],[-68.15048150481505,66.11680005523695],[-68.13248132481324,66.10835716888752],[-68.10368103681036,66.08640566437907],[-68.09648096480964,66.0830285098393],[-68.0820808208082,66.07796277802964],[-68.0460804608046,66.0830285098393],[-68.0280802808028,66.07627420075977],[-68.03888038880389,66.07289704621999],[-68.04968049680497,66.06614273714047],[-68.06768067680676,66.04925696444164],[-68.05328053280532,66.02392830539341],[-68.05328053280532,66.00704253269458],[-68.06408064080641,65.99522249180541],[-68.0820808208082,65.98171387364633],[-68.09648096480964,65.9850910281861],[-68.10008100081001,65.99184533726563],[-68.10008100081001,66.00028822361503],[-68.09648096480964,66.00704253269458],[-68.12528125281253,66.02730545993316],[-68.15768157681576,66.03405976901269],[-68.19008190081901,66.02730545993316],[-68.21168211682117,66.00704253269458],[-68.15768157681576,65.99691106907528],[-68.12888128881288,65.98677960545598],[-68.11448114481145,65.9665166782174],[-68.14688146881468,65.9665166782174],[-68.17568175681757,65.97327098729693],[-68.280082800828,66.01717399631386],[-68.30528305283052,66.03068261447294],[-68.32688326883269,66.04587980990186],[-68.3340833408334,66.04925696444164],[-68.34488344883448,66.04587980990186],[-68.34848348483484,66.03912550082234],[-68.34488344883448,66.03237119174281],[-68.30528305283052,65.99691106907528],[-68.280082800828,65.98171387364633],[-68.21888218882188,65.9665166782174],[-68.19008190081901,65.95300806005832],[-68.21528215282153,65.94794232824867],[-68.23328233282332,65.95131948278845],[-68.27288272882728,65.9665166782174],[-68.29448294482944,65.9665166782174],[-68.31608316083161,65.96145094640775],[-68.33048330483304,65.94963090551857],[-68.3340833408334,65.93274513281975],[-68.31248312483125,65.91248220558114],[-68.26928269282692,65.91248220558114],[-68.19008190081901,65.9259908237402],[-68.19368193681936,65.92092509193054],[-68.19008190081901,65.91585936012092],[-68.18648186481865,65.91079362831127],[-68.17568175681757,65.90572789650162],[-68.1720817208172,65.91079362831127],[-68.15768157681576,65.92936797827997],[-68.14688146881468,65.93274513281975],[-68.1360813608136,65.9259908237402],[-68.1360813608136,65.91248220558114],[-68.14688146881468,65.89897358742209],[-68.15768157681576,65.89221927834254],[-68.1540815408154,65.88039923745336],[-68.16128161281613,65.87195635110396],[-68.17568175681757,65.86689061929431],[-68.19008190081901,65.86351346475453],[-68.12888128881288,65.83649622843643],[-68.09288092880928,65.83649622843643],[-68.0820808208082,65.83311907389665],[-68.09648096480964,65.82298761027735],[-68.10728107281072,65.8196104557376],[-68.15768157681576,65.81623330119783],[-68.20448204482044,65.80272468303878],[-68.20448204482044,65.79597037395925],[-68.12528125281253,65.79765895122912],[-68.09648096480964,65.79597037395925],[-68.03888038880389,65.78246175580017],[-68.00648006480064,65.7807731785303],[-67.98127981279812,65.79259321941947],[-67.95967959679597,65.79765895122912],[-67.90207902079021,65.79259321941947],[-67.88767887678877,65.799347528499],[-67.88047880478804,65.8196104557376],[-67.86247862478625,65.82636476481713],[-67.83727837278373,65.82467618754725],[-67.81567815678156,65.81623330119783],[-67.830078300783,65.8094789921183],[-67.83367833678336,65.799347528499],[-67.830078300783,65.7892160648797],[-67.81567815678156,65.78246175580017],[-67.84447844478444,65.7621988285616],[-67.92367923679237,65.75713309675194],[-67.95967959679597,65.74024732405312],[-67.95247952479524,65.72505012862416],[-67.97407974079741,65.70985293319521],[-67.96687966879668,65.69972146957593],[-67.94887948879489,65.69634431503616],[-67.92727927279273,65.69803289230603],[-67.90567905679056,65.70141004684581],[-67.88767887678877,65.70647577865546],[-67.8840788407884,65.70141004684581],[-67.87687876878769,65.69803289230603],[-67.87327873278733,65.6912785832265],[-67.86967869678696,65.68621285141685],[-67.8840788407884,65.67945854233733],[-67.88767887678877,65.66763850144815],[-67.88047880478804,65.6541298832891],[-67.86967869678696,65.64568699693967],[-67.87327873278733,65.63555553332037],[-67.8840788407884,65.62711264697097],[-67.89847898478985,65.62035833789145],[-67.90927909279092,65.61866976062154],[-67.92727927279273,65.62035833789145],[-67.96687966879668,65.63893268786015],[-67.9920799207992,65.6338669560505],[-67.97047970479704,65.62204691516132],[-67.91647916479164,65.60347256519262],[-67.94527945279452,65.59165252430344],[-67.9560795607956,65.58996394703354],[-67.96687966879668,65.59165252430344],[-67.97047970479704,65.59671825611306],[-67.97407974079741,65.60178398792272],[-67.97767977679776,65.60347256519262],[-67.99567995679956,65.60009541065284],[-68.06048060480605,65.56970101979496],[-68.04248042480424,65.56463528798531],[-68.02448024480245,65.56294671071544],[-68.010080100801,65.56463528798531],[-67.99567995679956,65.57307817433471],[-67.98487984879849,65.57814390614436],[-67.97047970479704,65.57814390614436],[-67.9560795607956,65.57307817433471],[-67.95247952479524,65.56294671071544],[-67.96327963279633,65.54943809255636],[-68.01368013680137,65.5055350835394],[-68.03168031680316,65.49540361992013],[-68.03168031680316,65.4869607335707],[-68.01728017280172,65.4869607335707],[-68.00288002880028,65.49371504265022],[-67.98847988479885,65.50384650626953],[-67.97407974079741,65.5173551244286],[-67.90567905679056,65.55450382436601],[-67.88047880478804,65.57645532887449],[-67.86967869678696,65.58320963795401],[-67.85167851678517,65.58658679249379],[-67.80847808478084,65.58658679249379],[-67.7940779407794,65.58996394703354],[-67.7940779407794,65.60009541065284],[-67.77607776077761,65.61698118335167],[-67.75447754477544,65.63217837878062],[-67.73647736477365,65.63893268786015],[-67.54567545675457,65.6625727696385],[-67.51687516875168,65.65919561509872],[-67.49527495274953,65.64906415147945],[-67.4880748807488,65.64568699693967],[-67.48087480874808,65.6541298832891],[-67.47727477274772,65.66594992417828],[-67.470074700747,65.6727042332578],[-67.45567455674556,65.67945854233733],[-67.43407434074341,65.6811471196072],[-67.39447394473945,65.67945854233733],[-67.40527405274052,65.67945854233733],[-67.36927369273693,65.67439281052768],[-67.27207272072721,65.64568699693967],[-67.27207272072721,65.63217837878062],[-67.2540725407254,65.60853829700227],[-67.26487264872648,65.60347256519262],[-67.28287282872829,65.60178398792272],[-67.34047340473404,65.58320963795401],[-67.34047340473404,65.57645532887449],[-67.32967329673296,65.57138959706484],[-67.29727297272973,65.56294671071544],[-67.28287282872829,65.56294671071544],[-67.27567275672756,65.55956955617566],[-67.27207272072721,65.55112666982623],[-67.26487264872648,65.54268378347683],[-67.25767257672577,65.5359294743973],[-67.34047340473404,65.5443723607467],[-67.37647376473764,65.54268378347683],[-67.4160741607416,65.52917516531778],[-67.40167401674016,65.52242085623823],[-67.39087390873908,65.52073227896835],[-67.34047340473404,65.52242085623823],[-67.32967329673296,65.5173551244286],[-67.3260732607326,65.5072236608093],[-67.34767347673477,65.50215792899965],[-67.43407434074341,65.50384650626953],[-67.45927459274593,65.5072236608093],[-67.45927459274593,65.50046935172978],[-67.380073800738,65.4785178472213],[-67.35487354873548,65.46669780633212],[-67.3440734407344,65.45825491998269],[-67.34047340473404,65.45318918817304],[-67.33687336873368,65.4498120336333],[-67.32247322473225,65.45318918817304],[-67.30807308073081,65.45825491998269],[-67.30087300873008,65.46669780633212],[-67.290072900729,65.47176353814177],[-67.27207272072721,65.47345211541165],[-67.26127261272612,65.47176353814177],[-67.23967239672396,65.46332065179234],[-67.22527225272252,65.45994349725257],[-67.20727207272073,65.45994349725257],[-67.13887138871388,65.47007496087187],[-67.11367113671136,65.47007496087187],[-67.08487084870848,65.468386383602],[-67.05967059670596,65.45994349725257],[-67.05967059670596,65.45318918817304],[-67.10647106471065,65.44474630182364],[-67.11367113671136,65.43968057001399],[-67.10287102871028,65.43630341547421],[-67.07047070470705,65.43630341547421],[-67.05967059670596,65.43292626093447],[-67.05967059670596,65.42448337458504],[-67.07767077670776,65.40590902461634],[-67.08127081270813,65.39577756099703],[-67.0920709207092,65.38058036556808],[-67.11727117271172,65.3704489019488],[-67.14607146071461,65.36538317013915],[-67.31527315273152,65.36707174740903],[-67.3260732607326,65.35525170651985],[-67.4160741607416,65.3501859747102],[-67.40527405274052,65.33667735655115],[-67.38727387273872,65.32823447020172],[-67.36567365673656,65.32316873839207],[-67.3440734407344,65.32316873839207],[-67.33327333273333,65.32316873839207],[-67.3260732607326,65.32485731566197],[-67.31887318873189,65.32654589293185],[-67.31527315273152,65.32992304747162],[-67.30807308073081,65.33667735655115],[-67.30087300873008,65.34680882017045],[-67.29367293672937,65.35356312924998],[-67.28287282872829,65.35694028378973],[-67.24327243272432,65.3501859747102],[-67.1640716407164,65.31979158385232],[-67.12087120871209,65.31641442931254],[-67.15327153271532,65.28602003845467],[-67.16767167671676,65.26913426575584],[-67.16047160471604,65.26069137940641],[-67.14967149671496,65.26406853394619],[-67.12447124471244,65.27588857483536],[-67.12087120871209,65.27251142029559],[-67.11367113671136,65.26406853394619],[-67.110071100711,65.26069137940641],[-67.09927099270992,65.26069137940641],[-67.08127081270813,65.25393707032688],[-67.08127081270813,65.24718276124736],[-67.13527135271352,65.24718276124736],[-67.15687156871569,65.24042845216783],[-67.17127171271713,65.22691983400875],[-67.15327153271532,65.23029698854853],[-67.13887138871388,65.2319855658184],[-67.1280712807128,65.22860841127866],[-67.11367113671136,65.22016552492923],[-67.12087120871209,65.21003406130993],[-67.11367113671136,65.2032797522304],[-67.09927099270992,65.2032797522304],[-67.07047070470705,65.21847694765935],[-67.04887048870488,65.223542679469],[-67.02727027270272,65.223542679469],[-67.01287012870128,65.22016552492923],[-67.01647016470164,65.21003406130993],[-67.02007020070201,65.20665690677018],[-66.99486994869949,65.20159117496053],[-66.97326973269732,65.21003406130993],[-66.93726937269372,65.24042845216783],[-66.93726937269372,65.21678837038948],[-66.95166951669516,65.12898235235556],[-66.96246962469624,65.11040800238686],[-67.03087030870309,65.11378515692664],[-67.05247052470524,65.11040800238686],[-67.07047070470705,65.10027653876756],[-67.0920709207092,65.07494787971933],[-67.110071100711,65.06988214790968],[-67.110071100711,65.06312783883016],[-67.08487084870848,65.06481641610003],[-67.02007020070201,65.08339076606873],[-66.99486994869949,65.08676792060851],[-66.9660696606966,65.08676792060851],[-66.95166951669516,65.08001361152898],[-66.9660696606966,65.06312783883016],[-66.95886958869588,65.06312783883016],[-66.90486904869049,65.07157072517955],[-66.88686886868868,65.08170218879886],[-66.89766897668976,65.10365369330734],[-66.83646836468364,65.14586812505439],[-66.82566825668256,65.15093385686404],[-66.80046800468004,65.15768816594357],[-66.750067500675,65.18132824772192],[-66.72486724867248,65.18639397953157],[-66.72486724867248,65.17795109318217],[-66.73566735667356,65.16950820683275],[-66.74646746467464,65.1559995886737],[-66.75366753667537,65.14249097051464],[-66.76086760867608,65.13067092962547],[-66.75726757267573,65.11547373419651],[-66.80766807668077,65.10196511603743],[-66.82566825668256,65.09014507514826],[-66.79326793267933,65.09014507514826],[-66.81126811268112,65.06312783883016],[-66.89046890468904,65.0665049933699],[-66.91566915669156,65.04961922067108],[-66.86526865268652,65.04117633432168],[-66.85086850868508,65.03611060251203],[-66.82926829268293,65.04117633432168],[-66.76086760867608,65.06988214790968],[-66.77166771667716,65.05130779794098],[-66.77886778867789,65.04286491159155],[-66.7860678606786,65.03442202524215],[-66.77886778867789,65.03442202524215],[-66.77526775267752,65.03104487070237],[-66.77166771667716,65.0293562934325],[-66.76446764467644,65.0276677161626],[-66.77526775267752,65.02429056162285],[-66.77886778867789,65.01584767527342],[-66.77886778867789,65.00740478892402],[-66.77166771667716,65.0006504798445],[-66.76086760867608,64.99896190257459],[-66.75366753667537,65.00402763438424],[-66.74646746467464,65.00740478892402],[-66.73926739267392,64.99389617076494],[-66.74286742867429,64.96856751171671],[-66.77166771667716,64.95674747082754],[-66.83286832868329,64.94492742993836],[-66.750067500675,64.93141881177928],[-66.72486724867248,64.91791019362023],[-66.73206732067321,64.90271299819128],[-66.73926739267392,64.892581534572],[-66.750067500675,64.88413864822257],[-66.76446764467644,64.87738433914305],[-66.76446764467644,64.87063003006352],[-66.74646746467464,64.86556429825387],[-66.73566735667356,64.8537442573647],[-66.73566735667356,64.83685848466587],[-66.73926739267392,64.82334986650679],[-66.72846728467285,64.81997271196704],[-66.72126721267212,64.81321840288751],[-66.71766717667177,64.80477551653809],[-66.72486724867248,64.79464405291878],[-66.70686706867069,64.78957832110916],[-66.6960669606696,64.78788974383926],[-66.70326703267033,64.78451258929951],[-66.70686706867069,64.77775828021996],[-66.71046710467104,64.77438112568021],[-66.70686706867069,64.77100397114043],[-66.70686706867069,64.76931539387056],[-66.6960669606696,64.76762681660068],[-66.68166681666817,64.76762681660068],[-66.63486634866348,64.78113543475973],[-66.64926649266492,64.79295547564891],[-66.66726667266673,64.79970978472844],[-66.68526685266852,64.80984124834774],[-66.69246692466925,64.82672702104657],[-66.68886688866888,64.84698994828517],[-66.68526685266852,64.863875720984],[-66.65286652866529,64.93310738904918],[-66.64926649266492,64.94999316174801],[-66.64926649266492,64.97025608898659],[-66.65646656466565,64.98714186168542],[-66.69246692466925,65.01753625254332],[-66.6960669606696,65.03442202524215],[-66.68166681666817,65.04455348886142],[-66.59526595265952,65.02597913889272],[-66.57366573665736,65.01584767527342],[-66.56286562865628,65.01415909800355],[-66.54846548465484,65.01415909800355],[-66.53766537665376,65.01415909800355],[-66.5340653406534,65.00740478892402],[-66.5340653406534,64.99389617076494],[-66.54126541265413,64.96519035717694],[-66.53766537665376,64.95843604809741],[-66.50526505265053,64.98376470714567],[-66.49446494464944,64.98714186168542],[-66.48366483664836,64.98545328441554],[-66.47646476464764,64.97701039806611],[-66.48006480064801,64.96856751171671],[-66.4980649806498,64.94492742993836],[-66.48006480064801,64.93648454358893],[-66.45486454864549,64.9297302345094],[-66.3720637206372,64.9195987708901],[-66.36126361263612,64.92466450269976],[-66.36846368463684,64.94492742993836],[-66.34686346863468,64.94492742993836],[-66.3360633606336,64.93479596631906],[-66.32526325263252,64.92128734816],[-66.30726307263072,64.91284446181058],[-66.31446314463145,64.90440157546118],[-66.30726307263072,64.90440157546118],[-66.3180631806318,64.89427011184188],[-66.32166321663216,64.88413864822257],[-66.3180631806318,64.87400718460327],[-66.30726307263072,64.87063003006352],[-66.29286292862928,64.87569576187317],[-66.28566285662856,64.88413864822257],[-66.2820628206282,64.89595868911175],[-66.27126271262712,64.90440157546118],[-66.2460624606246,64.90609015273105],[-66.210062100621,64.89764726638165],[-66.14886148861488,64.87063003006352],[-66.16326163261633,64.8621871437141],[-66.1740617406174,64.85036710282492],[-66.18486184861848,64.835169907396],[-66.19566195661956,64.82334986650679],[-66.18126181261812,64.81321840288751],[-66.18126181261812,64.79633263018869],[-66.18846188461885,64.78113543475973],[-66.20646206462064,64.77438112568021],[-66.34326343263432,64.77438112568021],[-66.32166321663216,64.76087250752113],[-66.2820628206282,64.75749535298138],[-66.210062100621,64.76087250752113],[-66.22086220862208,64.74905246663195],[-66.21726217262172,64.74060958028255],[-66.21366213662137,64.73385527120303],[-66.210062100621,64.7254123848536],[-66.210062100621,64.71359234396442],[-66.21366213662137,64.70514945761502],[-66.21726217262172,64.69164083945594],[-66.17046170461704,64.68319795310654],[-66.1560615606156,64.70852661215477],[-66.14886148861488,64.74398673482233],[-66.12366123661236,64.76931539387056],[-66.10206102061021,64.80815267107786],[-66.09126091260912,64.81659555742726],[-66.07326073260732,64.82166128923691],[-66.01926019260192,64.85712141190444],[-66.00846008460084,64.83179275285622],[-66.0120601206012,64.80646409380799],[-66.01926019260192,64.78282401202961],[-66.03726037260373,64.7642496620609],[-66.0480604806048,64.74229815755243],[-66.04086040860408,64.71865807577407],[-66.02286022860228,64.7068380348849],[-65.99765997659976,64.71359234396442],[-66.00486004860048,64.72203523031385],[-66.0120601206012,64.73892100301268],[-66.0120601206012,64.7541181984416],[-66.00126001260013,64.76087250752113],[-65.99045990459904,64.76256108479103],[-65.97965979659796,64.76762681660068],[-65.96885968859688,64.76931539387056],[-65.9580595805958,64.76762681660068],[-65.95085950859509,64.75918393025125],[-65.95085950859509,64.75074104390185],[-65.95445954459544,64.74229815755243],[-65.95445954459544,64.73723242574277],[-65.90765907659076,64.67813222129689],[-65.86445864458643,64.66293502586794],[-65.850058500585,64.65449213951854],[-65.83925839258391,64.64604925316911],[-65.82125821258212,64.63760636681971],[-65.80685806858068,64.63760636681971],[-65.79965799657997,64.65111498497876],[-65.80685806858068,64.65786929405829],[-65.85365853658536,64.68488653037642],[-65.87885878858788,64.70852661215477],[-65.89685896858968,64.73216669393312],[-65.89325893258932,64.75074104390185],[-65.85365853658536,64.7541181984416],[-65.85365853658536,64.76087250752113],[-65.87525875258753,64.76762681660068],[-65.90045900459005,64.77944685748986],[-65.92565925659257,64.79464405291878],[-65.93645936459365,64.80984124834774],[-65.9220592205922,64.80815267107786],[-65.90765907659076,64.80984124834774],[-65.89325893258932,64.81659555742726],[-65.88965889658895,64.83010417558634],[-65.93285932859328,64.86049856644422],[-65.95085950859509,64.88413864822257],[-65.94365943659436,64.892581534572],[-65.91845918459184,64.88751580276235],[-65.88965889658895,64.87738433914305],[-65.87165871658716,64.86894145279362],[-65.8680586805868,64.86894145279362],[-65.85365853658536,64.87063003006352],[-65.85365853658536,64.8723186073334],[-65.85365853658536,64.87738433914305],[-65.84645846458464,64.88076149368283],[-65.83925839258391,64.88413864822257],[-65.8320583205832,64.88413864822257],[-65.82485824858249,64.8824500709527],[-65.81765817658176,64.87907291641292],[-65.81045810458104,64.87400718460327],[-65.7960579605796,64.86556429825387],[-65.78885788857887,64.86556429825387],[-65.78165781657816,64.8621871437141],[-65.7780577805778,64.84698994828517],[-65.79245792457924,64.80984124834774],[-65.77445774457745,64.80477551653809],[-65.76365763657637,64.81659555742726],[-65.74925749257493,64.83348133012609],[-65.73845738457385,64.84698994828517],[-65.71685716857168,64.8436127937454],[-65.68805688056881,64.83010417558634],[-65.670056700567,64.81152982561761],[-65.670056700567,64.79802120745856],[-65.70965709657096,64.77944685748986],[-65.72765727657276,64.76762681660068],[-65.73845738457385,64.74736388936208],[-65.73845738457385,64.73385527120303],[-65.73125731257312,64.72203523031385],[-65.70965709657096,64.69164083945594],[-65.70245702457024,64.69164083945594],[-65.70245702457024,64.7541181984416],[-65.64485644856448,64.77269254841033],[-65.58365583655836,64.75749535298138],[-65.55845558455584,64.71359234396442],[-65.56565565655656,64.71021518942467],[-65.58365583655836,64.70514945761502],[-65.58725587255873,64.70008372580537],[-65.58725587255873,64.69164083945594],[-65.58365583655836,64.68488653037642],[-65.57645576455764,64.67982079856677],[-65.57285572855729,64.67813222129689],[-65.580055800558,64.65955787132819],[-65.58725587255873,64.64942640770889],[-65.6160561605616,64.63422921227993],[-65.6520565205652,64.6072119759618],[-65.670056700567,64.60383482142205],[-65.71325713257133,64.60383482142205],[-65.73485734857348,64.60045766688228],[-65.75285752857528,64.59032620326298],[-65.73485734857348,64.58357189418345],[-65.7240572405724,64.57512900783405],[-65.71685716857168,64.56162038967497],[-65.71685716857168,64.5413574624364],[-65.7240572405724,64.52447168973757],[-65.72765727657276,64.51602880338814],[-65.7240572405724,64.50589733976886],[-65.7060570605706,64.49070014433991],[-65.69165691656916,64.48732298980013],[-65.6160561605616,64.50083160795921],[-65.50445504455044,64.50083160795921],[-65.5080550805508,64.49576587614956],[-65.51525515255152,64.48563441253026],[-65.51885518855188,64.48056868072061],[-65.49365493654936,64.47550294891096],[-65.45765457654576,64.48732298980013],[-65.42165421654217,64.50758591703874],[-65.40005400054,64.52447168973757],[-65.38925389253892,64.52784884427734],[-65.34965349653496,64.52953742154722],[-65.34245342453424,64.52784884427734],[-65.33885338853388,64.51265164884839],[-65.34965349653496,64.50083160795921],[-65.40005400054,64.47212579437121],[-65.41085410854109,64.4619943307519],[-65.41445414454144,64.44848571259286],[-65.40725407254072,64.44510855805308],[-65.38925389253892,64.45355144440248],[-65.3640536405364,64.47212579437121],[-65.35685356853568,64.47550294891096],[-65.33885338853388,64.48394583526039],[-65.33525335253353,64.48732298980013],[-65.32445324453244,64.48563441253026],[-65.30645306453064,64.47550294891096],[-65.29925299252992,64.47212579437121],[-65.28845288452884,64.4704372171013],[-65.2740527405274,64.47212579437121],[-65.27045270452705,64.47550294891096],[-65.27765277652776,64.48732298980013],[-65.2740527405274,64.50420876249896],[-65.27045270452705,64.51265164884839],[-65.26685266852668,64.52109453519779],[-65.2560525605256,64.52784884427734],[-65.23085230852308,64.53291457608697],[-65.220052200522,64.53798030789662],[-65.21285212852128,64.5413574624364],[-65.20565205652056,64.53629173062674],[-65.2020520205202,64.52616026700744],[-65.20565205652056,64.51771738065804],[-65.23085230852308,64.49576587614956],[-65.2380523805238,64.48732298980013],[-65.20565205652056,64.49238872160979],[-65.14445144451444,64.51602880338814],[-65.11565115651156,64.51434022611826],[-65.12645126451264,64.50420876249896],[-65.1660516605166,64.48732298980013],[-65.17685176851768,64.48056868072061],[-65.16245162451624,64.47381437164108],[-65.10125101251012,64.48056868072061],[-65.09045090450904,64.48563441253026],[-65.07965079650796,64.47888010345073],[-65.0760507605076,64.46537148529168],[-65.07245072450723,64.44848571259286],[-65.07965079650796,64.42991136262413],[-65.0940509405094,64.41977989900482],[-65.15525155251552,64.40627128084577],[-65.2380523805238,64.40627128084577],[-65.24885248852488,64.39951697176625],[-65.26685266852668,64.38431977633729],[-65.19845198451983,64.36574542636859],[-65.17685176851768,64.34717107639989],[-65.19485194851949,64.3150881082721],[-65.22725227252272,64.29989091284315],[-65.27045270452705,64.29482518103353],[-65.5260552605526,64.32859672643116],[-65.5440554405544,64.32859672643116],[-65.56205562055621,64.32521957189141],[-65.59445594455944,64.3150881082721],[-65.65925659256592,64.31002237646246],[-65.65565655656556,64.30833379919258],[-65.65565655656556,64.3049566446528],[-65.65565655656556,64.30157949011306],[-65.4720547205472,64.30833379919258],[-65.43605436054361,64.3049566446528],[-65.41445414454144,64.28807087195398],[-65.43965439654396,64.29482518103353],[-65.45045450454504,64.2965137583034],[-65.46485464854648,64.29482518103353],[-65.45765457654576,64.28975944922388],[-65.4540545405454,64.28300514014433],[-65.44325443254432,64.2779394083347],[-65.43605436054361,64.27456225379493],[-65.46845468454684,64.2661193674455],[-65.53685536855369,64.26274221290575],[-65.56565565655656,64.25429932655632],[-65.54765547655477,64.24585644020692],[-65.5260552605526,64.24416786293705],[-65.35685356853568,64.25429932655632],[-65.34245342453424,64.25261074928645],[-65.33885338853388,64.2475450174768],[-65.3460534605346,64.2391021311274],[-65.36045360453605,64.23403639931774],[-65.36045360453605,64.22728209023822],[-65.29565295652957,64.22728209023822],[-65.26325263252632,64.21883920388879],[-65.24525245252453,64.19857627665021],[-65.28845288452884,64.19688769938031],[-65.30645306453064,64.19351054484056],[-65.37845378453784,64.16311615398266],[-65.39645396453965,64.158050422173],[-65.39645396453965,64.15129611309348],[-65.34965349653496,64.15129611309348],[-65.33525335253353,64.15467326763326],[-65.29925299252992,64.17493619487183],[-65.2920529205292,64.17831334941161],[-65.26325263252632,64.18169050395139],[-65.25245252452524,64.17831334941161],[-65.19485194851949,64.15129611309348],[-65.19845198451983,64.1411646494742],[-65.18765187651876,64.13778749493443],[-65.16245162451624,64.14454180401395],[-65.16245162451624,64.13609891766455],[-65.16965169651696,64.13441034039465],[-65.1840518405184,64.12427887677538],[-65.1660516605166,64.11921314496573],[-65.130051300513,64.11414741315608],[-65.11565115651156,64.10908168134642],[-65.19485194851949,64.07531013594877],[-65.11925119251192,64.08375302229817],[-65.0760507605076,64.08375302229817],[-65.05445054450544,64.06855582686924],[-65.07245072450723,64.06686724959934],[-65.130051300513,64.04829289963064],[-65.17685176851768,64.04322716782099],[-65.22365223652235,64.04153859055111],[-65.21285212852128,64.02802997239206],[-65.19485194851949,64.02127566331251],[-65.07965079650796,64.01452135423298],[-65.06885068850688,64.01452135423298],[-65.040050400504,64.02127566331251],[-64.92124921249211,64.01452135423298],[-64.92844928449284,63.99932415880406],[-64.93924939249392,63.989192695184755],[-64.96444964449644,63.97230692248593],[-64.92124921249211,63.97906123156545],[-64.89964899648996,63.984126963375104],[-64.88164881648817,63.994258426994406],[-64.85284852848528,64.01620993150289],[-64.83484834848348,64.02296424058241],[-64.79524795247951,64.03140712693181],[-64.78444784447844,64.03140712693181],[-64.770047700477,64.02802997239206],[-64.76284762847628,64.02127566331251],[-64.76284762847628,64.01452135423298],[-64.76284762847628,64.00945562242333],[-64.7520475204752,64.00776704515346],[-64.7340473404734,64.01620993150289],[-64.7160471604716,64.03478428147159],[-64.69444694446945,64.04660432236076],[-64.67284672846728,64.03816143601134],[-64.66564665646656,64.03309570420168],[-64.6620466204662,64.02802997239206],[-64.6620466204662,64.02127566331251],[-64.6620466204662,64.01114419969323],[-64.65844658446584,64.00101273607393],[-64.64044640446404,63.99088127245463],[-64.63684636846368,63.98243838610523],[-64.64764647646476,63.975684077025676],[-64.79884798847988,63.9368467998184],[-64.81684816848168,63.92840391346897],[-64.83484834848348,63.91658387257979],[-64.8960489604896,63.89800952261109],[-64.88524885248852,63.88112374991226],[-64.89244892448924,63.86761513175318],[-64.91044910449104,63.86086082267366],[-64.92844928449284,63.85579509086401],[-64.9680496804968,63.85241793632426],[-64.97884978849788,63.84566362724473],[-64.98964989649896,63.828777854545905],[-64.97524975249752,63.80513777276752],[-64.95364953649536,63.788252000068695],[-64.92844928449284,63.77812053644942],[-64.76284762847628,63.74941472286142],[-64.70524705247053,63.76292334102047],[-64.6980469804698,63.75785760921082],[-64.68724687246872,63.74941472286142],[-64.67644676446764,63.74097183651199],[-64.54324543245433,63.68693736387576],[-64.52164521645216,63.668363013907026],[-64.50364503645037,63.64472293212867],[-64.51804518045181,63.624460004890096],[-64.52524525245252,63.614328541270794],[-64.5360453604536,63.60926280946114],[-64.56484564845648,63.61601711854067],[-64.57924579245793,63.614328541270794],[-64.58644586445864,63.60250850038162],[-64.56484564845648,63.59575419130209],[-64.54324543245433,63.58224557314301],[-64.53964539645396,63.570425532253836],[-64.55764557645576,63.561982645904436],[-64.54684546845468,63.55522833682488],[-64.5360453604536,63.54509687320561],[-64.52884528845289,63.53327683231643],[-64.52524525245252,63.51807963688748],[-64.52524525245252,63.50119386418865],[-64.52884528845289,63.49106240056935],[-64.5360453604536,63.48261951421995],[-64.5540455404554,63.472488050600646],[-64.52164521645216,63.46235658698134],[-64.50364503645037,63.44378223701264],[-64.50724507245071,63.42183073250416],[-64.53244532445324,63.40325638253546],[-64.56124561245612,63.39987922799568],[-64.6080460804608,63.42183073250416],[-64.63684636846368,63.418453577964385],[-64.60444604446045,63.38468203256673],[-64.52164521645216,63.37623914621733],[-64.50364503645037,63.34584475535945],[-64.50364503645037,63.33571329174015],[-64.50724507245071,63.32389325085097],[-64.51084510845108,63.31376178723167],[-64.52524525245252,63.30869605542202],[-64.55044550445504,63.31038463269189],[-64.57564575645756,63.32220467358107],[-64.60084600846008,63.32895898266062],[-64.6260462604626,63.320516096311195],[-64.59364593645937,63.307007478152144],[-64.51804518045181,63.298564591802716],[-64.48564485644856,63.28843312818344],[-64.49284492844929,63.28336739637379],[-64.51444514445144,63.27830166456414],[-64.52524525245252,63.27492451002436],[-64.53244532445324,63.26817020094484],[-64.53244532445324,63.25972731459541],[-64.5360453604536,63.254661582785786],[-64.5540455404554,63.252973005515884],[-64.56484564845648,63.254661582785786],[-64.57924579245793,63.25972731459541],[-64.590045900459,63.263104469135186],[-64.6080460804608,63.25972731459541],[-64.61524615246152,63.254661582785786],[-64.62244622446224,63.24790727370623],[-64.62964629646297,63.24284154189661],[-64.64044640446404,63.23946438735683],[-64.65124651246512,63.24284154189661],[-64.65844658446584,63.249595850976135],[-64.66564665646656,63.258038737325535],[-64.66924669246693,63.263104469135186],[-64.67644676446764,63.271547355484614],[-64.70524705247053,63.27661308729424],[-64.7160471604716,63.28167881910389],[-64.71964719647195,63.28843312818344],[-64.71964719647195,63.29687601453284],[-64.71964719647195,63.30363032361237],[-64.73044730447305,63.312073209961795],[-64.770047700477,63.32895898266062],[-64.76644766447664,63.34415617808955],[-64.77364773647736,63.355976218978725],[-64.77364773647736,63.3677962598679],[-64.75924759247592,63.382993455296855],[-64.79164791647916,63.39312491891616],[-64.79884798847988,63.39819065072581],[-64.80244802448024,63.40325638253546],[-64.8060480604806,63.42014215523429],[-64.8420484204842,63.4859966687597],[-64.83844838448384,63.48937382329947],[-64.83484834848348,63.49275097783922],[-64.83484834848348,63.49781670964887],[-64.83844838448384,63.50457101872843],[-64.8420484204842,63.507948173268176],[-64.84564845648455,63.50963675053805],[-64.85284852848528,63.51807963688748],[-64.87084870848707,63.538342564126054],[-64.89244892448924,63.551851182285134],[-64.9320493204932,63.57211410952371],[-64.94284942849428,63.58899988222254],[-64.94284942849428,63.59913134584184],[-64.93564935649356,63.61263996400092],[-64.93564935649356,63.622771427620194],[-64.94284942849428,63.632902891239496],[-64.950049500495,63.63796862304915],[-65.00045000450004,63.65654297301785],[-65.05445054450544,63.67005159117693],[-65.07965079650796,63.685248786605854],[-65.09045090450904,63.69706882749503],[-65.11925119251192,63.73590610470234],[-65.13725137251372,63.74941472286142],[-65.18765187651876,63.76461191829034],[-65.20925209252093,63.78149769098917],[-65.19485194851949,63.78149769098917],[-65.1480514805148,63.774743381909644],[-65.17325173251731,63.793317731878346],[-65.19845198451983,63.80344919549765],[-65.22725227252272,63.8085149273073],[-65.25965259652597,63.8085149273073],[-65.28845288452884,63.81358065911695],[-65.30285302853028,63.81189208184708],[-65.30285302853028,63.80513777276752],[-65.2920529205292,63.79669488641812],[-65.20925209252093,63.75448045467104],[-65.19125191251912,63.73590610470234],[-65.17685176851768,63.72915179562281],[-65.16245162451624,63.725774641083035],[-65.13725137251372,63.717331754733635],[-65.12285122851227,63.69875740476493],[-65.10845108451085,63.67511732298658],[-65.0940509405094,63.65823155028775],[-65.04725047250471,63.632902891239496],[-65.00045000450004,63.61601711854067],[-64.99324993249932,63.61263996400092],[-64.9860498604986,63.60250850038162],[-64.98244982449825,63.59406561403219],[-64.9860498604986,63.58899988222254],[-65.05445054450544,63.57549126406349],[-65.09765097650975,63.55016260501526],[-65.08685086850868,63.516391059617604],[-65.0580505805058,63.48261951421995],[-65.0580505805058,63.45222512336204],[-65.07965079650796,63.445470814282515],[-65.13365133651337,63.44378223701264],[-65.1480514805148,63.431962196123465],[-65.10125101251012,63.431962196123465],[-65.04725047250471,63.43871650520299],[-65.0580505805058,63.42520788704394],[-65.07965079650796,63.41676500069451],[-65.12285122851227,63.40325638253546],[-65.08325083250833,63.39987922799568],[-65.04725047250471,63.40325638253546],[-65.01125011250112,63.40156780526556],[-64.97164971649715,63.37286199167755],[-64.95364953649536,63.36441910532815],[-64.94644946449463,63.3593533735185],[-64.94284942849428,63.35259906443898],[-64.94284942849428,63.3390904462799],[-64.93924939249392,63.33233613720037],[-64.9320493204932,63.320516096311195],[-64.9140491404914,63.29687601453284],[-64.91044910449104,63.28843312818344],[-64.9140491404914,63.285055973643665],[-64.91764917649176,63.27830166456414],[-64.92124921249211,63.27492451002436],[-64.90324903249032,63.23946438735683],[-64.9320493204932,63.24284154189661],[-64.95364953649536,63.254661582785786],[-64.98964989649896,63.28843312818344],[-65.01125011250112,63.298564591802716],[-65.03645036450364,63.31038463269189],[-65.06165061650616,63.31713894177145],[-65.07245072450723,63.30869605542202],[-65.05445054450544,63.30194174634249],[-65.0040500405004,63.27492451002436],[-65.02925029250292,63.249595850976135],[-65.07245072450723,63.263104469135186],[-65.11565115651156,63.285055973643665],[-65.1480514805148,63.28843312818344],[-65.10845108451085,63.24621869643636],[-65.09765097650975,63.23946438735683],[-65.0040500405004,63.23946438735683],[-64.97884978849788,63.227644346467656],[-64.97524975249752,63.2124471510387],[-64.98964989649896,63.200627110149526],[-65.01125011250112,63.2023156874194],[-65.02925029250292,63.21075857376883],[-65.05445054450544,63.21920146011823],[-65.0760507605076,63.21920146011823],[-65.08685086850868,63.20569284195918],[-65.0760507605076,63.2040042646893],[-65.04725047250471,63.192184223800126],[-65.05445054450544,63.187118491990475],[-65.0580505805058,63.18542991472057],[-65.0580505805058,63.17867560564105],[-64.9320493204932,63.1837413374507],[-64.88884888848888,63.173609873831396],[-64.860048600486,63.17192129656152],[-64.87084870848707,63.16178983294222],[-64.88164881648817,63.15841267840247],[-64.8960489604896,63.15672410113257],[-64.90324903249032,63.15334694659282],[-64.8960489604896,63.14490406024339],[-64.88164881648817,63.14152690570364],[-64.82044820448203,63.14152690570364],[-64.8060480604806,63.138149751163866],[-64.79164791647916,63.129706864814466],[-64.78444784447844,63.11957540119516],[-64.77724777247772,63.10775536030599],[-64.770047700477,63.10100105122646],[-64.7520475204752,63.102689628496336],[-64.78084780847809,63.09424674214691],[-64.8420484204842,63.10100105122646],[-64.86724867248672,63.09593531941681],[-64.8420484204842,63.08242670125773],[-64.77724777247772,63.07398381490833],[-64.76644766447664,63.05540946493963],[-64.770047700477,63.04190084678055],[-64.77724777247772,63.04190084678055],[-64.79164791647916,63.05034373312998],[-64.80244802448024,63.05540946493963],[-64.81324813248132,63.05034373312998],[-64.8060480604806,63.04190084678055],[-64.79164791647916,63.03176938316125],[-64.77724777247772,63.026703651351625],[-64.77724777247772,63.01994934227207],[-64.7880478804788,63.01488361046242],[-64.7880478804788,63.00644072411302],[-64.78084780847809,62.999686415033494],[-64.770047700477,62.99293210595397],[-64.770047700477,62.986177796874415],[-64.7880478804788,62.981112065064764],[-64.82764827648276,62.977734910525015],[-64.84924849248492,62.972669178715364],[-64.82764827648276,62.96591486963584],[-64.78084780847809,62.95916056055631],[-64.75924759247592,62.950717674206885],[-64.7340473404734,62.928766169698406],[-64.71964719647195,62.92201186061888],[-64.70884708847088,62.93552047877793],[-64.7160471604716,62.950717674206885],[-64.71244712447124,62.955783406016536],[-64.70164701647016,62.95916056055631],[-64.69444694446945,62.95747198328641],[-64.6260462604626,62.91188039699958],[-64.64044640446404,62.89668320157065],[-64.6620466204662,62.89668320157065],[-64.70164701647016,62.90343751065018],[-64.72324723247232,62.9000603561104],[-64.73044730447305,62.8899288924911],[-64.74124741247412,62.879797428871825],[-64.7520475204752,62.86966596525252],[-64.78444784447844,62.86460023344287],[-64.88884888848888,62.86966596525252],[-64.91764917649176,62.879797428871825],[-64.94644946449463,62.89499462430075],[-65.01485014850148,62.91188039699958],[-65.0580505805058,62.93552047877793],[-65.08685086850868,62.94734051966714],[-65.10125101251012,62.95916056055631],[-65.10485104851048,62.96929202417559],[-65.10845108451085,62.981112065064764],[-65.11565115651156,62.99293210595397],[-65.130051300513,62.999686415033494],[-65.1480514805148,62.981112065064764],[-65.14445144451444,62.96591486963584],[-65.13365133651337,62.94902909693701],[-65.12285122851227,62.92538901515866],[-65.14445144451444,62.93214332423818],[-65.1840518405184,62.95409482874666],[-65.23445234452345,62.964226292365964],[-65.24885248852488,62.97942348779489],[-65.2560525605256,62.99630926049372],[-65.27045270452705,63.00644072411302],[-65.28485284852849,62.98448921960454],[-65.25245252452524,62.95916056055631],[-65.20565205652056,62.937209056047834],[-65.1840518405184,62.92201186061888],[-65.18765187651876,62.910191819729704],[-65.19845198451983,62.90343751065018],[-65.2020520205202,62.89499462430075],[-65.19125191251912,62.87642027433205],[-65.17685176851768,62.866288810712746],[-65.12285122851227,62.83589441985487],[-65.09045090450904,62.80043429718734],[-65.0760507605076,62.79367998810781],[-65.06525065250652,62.78692567902826],[-65.02565025650256,62.75146555636073],[-65.01845018450184,62.74302267001133],[-65.01485014850148,62.7345797836619],[-65.00765007650077,62.73120262912215],[-64.99684996849967,62.72951405185225],[-64.98964989649896,62.7261368973125],[-64.9860498604986,62.7160054336932],[-64.9860498604986,62.705873970073895],[-64.9860498604986,62.697431083724496],[-64.98244982449825,62.692365351914844],[-64.97524975249752,62.67716815648589],[-64.96084960849608,62.66197096105694],[-64.94644946449463,62.65015092016776],[-64.92844928449284,62.643396611088235],[-64.93924939249392,62.63157657019906],[-64.95364953649536,62.63326514746893],[-64.97164971649715,62.64001945654849],[-64.98964989649896,62.643396611088235],[-64.98964989649896,62.62819941565928],[-65.00765007650077,62.61469079750023],[-65.07965079650796,62.58429640664235],[-65.10845108451085,62.575853520292924],[-65.13725137251372,62.57078778848327],[-65.16965169651696,62.5690992112134],[-65.20925209252093,62.5792306748327],[-65.24525245252453,62.60624791115083],[-65.29925299252992,62.678856733755765],[-65.26685266852668,62.697431083724496],[-65.30285302853028,62.69911966099437],[-65.31725317253172,62.697431083724496],[-65.33525335253353,62.692365351914844],[-65.3280532805328,62.67716815648589],[-65.33525335253353,62.67210242467624],[-65.3460534605346,62.67547957921602],[-65.35325353253532,62.683922465565416],[-65.35685356853568,62.697431083724496],[-65.34965349653496,62.70756254734377],[-65.31725317253172,62.7447112472812],[-65.29565295652957,62.759908442710156],[-65.24525245252453,62.78017136994873],[-65.2740527405274,62.78861425629816],[-65.34245342453424,62.77510563813908],[-65.37485374853748,62.78692567902826],[-65.3640536405364,62.80212287445721],[-65.36045360453605,62.81563149261626],[-65.35685356853568,62.825762956235565],[-65.33885338853388,62.82914011077534],[-65.29565295652957,62.825762956235565],[-65.2740527405274,62.82745153350544],[-65.25245252452524,62.83589441985487],[-65.27765277652776,62.839271574394644],[-65.30285302853028,62.84096015166452],[-65.32445324453244,62.84433730620427],[-65.34245342453424,62.85615734709347],[-65.34245342453424,62.86797738798265],[-65.34245342453424,62.888240315221225],[-65.33525335253353,62.90681466518993],[-65.3280532805328,62.91863470607913],[-65.3460534605346,62.92538901515866],[-65.36765367653676,62.893306047030876],[-65.40005400054,62.82914011077534],[-65.40725407254072,62.82745153350544],[-65.41445414454144,62.82407437896569],[-65.42525425254252,62.82069722442591],[-65.43605436054361,62.822385801695816],[-65.43965439654396,62.82745153350544],[-65.43965439654396,62.83758299712474],[-65.44325443254432,62.84602588347417],[-65.45765457654576,62.84940303801392],[-65.46125461254613,62.84433730620427],[-65.4720547205472,62.82745153350544],[-65.47925479254792,62.822385801695816],[-65.52965529655296,62.82914011077534],[-65.56205562055621,62.82069722442591],[-65.60525605256052,62.825762956235565],[-65.64125641256412,62.84264872893439],[-65.65565655656556,62.87304311979227],[-65.66285662856629,62.891617469761],[-65.66285662856629,62.9000603561104],[-65.66645666456664,62.91188039699958],[-65.67365673656737,62.910191819729704],[-65.68805688056881,62.89668320157065],[-65.7060570605706,62.9000603561104],[-65.72045720457204,62.90681466518993],[-65.75285752857528,62.92538901515866],[-65.7420574205742,62.942274787857485],[-65.7240572405724,62.95916056055631],[-65.68805688056881,62.986177796874415],[-65.69885698856989,62.99293210595397],[-65.69165691656916,62.99630926049372],[-65.68805688056881,62.99630926049372],[-65.68445684456844,62.999686415033494],[-65.69165691656916,63.00644072411302],[-65.7060570605706,63.01657218773232],[-65.70965709657096,63.01994934227207],[-65.71325713257133,63.03008080589137],[-65.70965709657096,63.04190084678055],[-65.71325713257133,63.05203231039985],[-65.7240572405724,63.05540946493963],[-65.73845738457385,63.048655155860075],[-65.75285752857528,63.03345796043115],[-65.75645756457564,63.01488361046242],[-65.74925749257493,62.99630926049372],[-65.7420574205742,62.97604633325514],[-65.76725767257672,62.96253771509606],[-65.81765817658176,62.94902909693701],[-65.82845828458284,62.928766169698406],[-65.81045810458104,62.915257551539355],[-65.78885788857887,62.90343751065018],[-65.7780577805778,62.88655173795135],[-65.78885788857887,62.87304311979227],[-65.80685806858068,62.883174583411574],[-65.83925839258391,62.91188039699958],[-65.87525875258753,62.928766169698406],[-65.8860588605886,62.93214332423818],[-65.92925929259292,62.923700437888755],[-65.94365943659436,62.92538901515866],[-65.96525965259652,62.937209056047834],[-65.95445954459544,62.950717674206885],[-65.91125911259113,62.972669178715364],[-65.8860588605886,63.00306356957324],[-65.87885878858788,63.00644072411302],[-65.8680586805868,63.008129301382894],[-65.84285842858428,63.02163791954197],[-65.83565835658356,63.026703651351625],[-65.83565835658356,63.03345796043115],[-65.8680586805868,63.03176938316125],[-65.89685896858968,63.02332649681185],[-65.9580595805958,62.999686415033494],[-65.9580595805958,62.99293210595397],[-65.95445954459544,62.991243528684066],[-65.94725947259472,62.98448921960454],[-65.94365943659436,62.97942348779489],[-66.00126001260013,62.981112065064764],[-66.030060300603,62.986177796874415],[-66.05166051660517,62.999686415033494],[-66.06246062460625,63.00644072411302],[-66.0660606606066,63.01488361046242],[-66.07326073260732,63.02163791954197],[-66.07326073260732,63.03008080589137],[-66.0660606606066,63.03176938316125],[-66.05886058860588,63.040212269510675],[-66.05166051660517,63.05034373312998],[-66.05886058860588,63.05540946493963],[-66.08046080460804,63.048655155860075],[-66.09846098460984,63.0385236922408],[-66.11646116461164,63.035146537701024],[-66.14166141661416,63.0469665785902],[-66.14886148861488,63.06047519674925],[-66.1560615606156,63.07904954671798],[-66.16326163261633,63.09424674214691],[-66.18126181261812,63.102689628496336],[-66.20646206462064,63.10775536030599],[-66.25686256862568,63.13139544208434],[-66.2820628206282,63.13646117389399],[-66.28926289262893,63.129706864814466],[-66.2640626406264,63.111132514845735],[-66.21726217262172,63.089181010337256],[-66.21366213662137,63.08073812398786],[-66.210062100621,63.070606660368554],[-66.210062100621,63.05203231039985],[-66.20646206462064,63.040212269510675],[-66.19566195661956,63.03345796043115],[-66.18486184861848,63.03008080589137],[-66.15246152461525,63.01150645592267],[-66.10566105661056,62.99630926049372],[-66.08766087660877,62.97942348779489],[-66.09486094860948,62.977734910525015],[-66.10206102061021,62.97435775598524],[-66.10926109261092,62.972669178715364],[-66.10566105661056,62.95240625147676],[-66.13086130861308,62.94396336512736],[-66.16326163261633,62.94396336512736],[-66.1920619206192,62.950717674206885],[-66.210062100621,62.96760344690571],[-66.22086220862208,62.97604633325514],[-66.23886238862389,62.97942348779489],[-66.2460624606246,62.977734910525015],[-66.26046260462604,62.97435775598524],[-66.26766267662676,62.972669178715364],[-66.27486274862748,62.97604633325514],[-66.27846278462785,62.98280064233467],[-66.27846278462785,62.98955495141419],[-66.27846278462785,62.99293210595397],[-66.30726307263072,62.99799783776359],[-66.36846368463684,62.99630926049372],[-66.39726397263972,62.999686415033494],[-66.41886418864188,63.008129301382894],[-66.4620646206462,63.035146537701024],[-66.47646476464764,63.0469665785902],[-66.47286472864728,63.06047519674925],[-66.50166501665016,63.06385235128903],[-66.51966519665196,63.07736096944808],[-66.5160651606516,63.089181010337256],[-66.49086490864909,63.089181010337256],[-66.50166501665016,63.097623896686684],[-66.52686526865268,63.12295255573491],[-66.56646566465665,63.15165836932292],[-66.57366573665736,63.165166987481996],[-66.5520655206552,63.187118491990475],[-66.54846548465484,63.19893853287965],[-66.56286562865628,63.21582430557848],[-66.58086580865809,63.227644346467656],[-66.61686616866169,63.24621869643636],[-66.63126631266313,63.25635016005566],[-66.64926649266492,63.26479304640506],[-66.67086670866708,63.271547355484614],[-66.68886688866888,63.28167881910389],[-66.69246692466925,63.30194174634249],[-66.68166681666817,63.312073209961795],[-66.64926649266492,63.3407790235498],[-66.63486634866348,63.355976218978725],[-66.64206642066421,63.355976218978725],[-66.63846638466384,63.36441910532815],[-66.63846638466384,63.37117341440768],[-66.64206642066421,63.374550568947456],[-66.65286652866529,63.37623914621733],[-66.66366663666636,63.37286199167755],[-66.66726667266673,63.3677962598679],[-66.66726667266673,63.35766479624863],[-66.67086670866708,63.3492219098992],[-66.68886688866888,63.334024714470274],[-66.72846728467285,63.30869605542202],[-66.73926739267392,63.293498859993065],[-66.73206732067321,63.27830166456414],[-66.71766717667177,63.26479304640506],[-66.65646656466565,63.23777581008696],[-66.63126631266313,63.23271007827731],[-66.6240662406624,63.22933292373753],[-66.60966609666096,63.21582430557848],[-66.60246602466025,63.2124471510387],[-66.61686616866169,63.18036418291095],[-66.6240662406624,63.165166987481996],[-66.60606606066061,63.15503552386269],[-66.59166591665917,63.13983832843374],[-66.58446584465844,63.13646117389399],[-66.58086580865809,63.133084019354214],[-66.5880658806588,63.111132514845735],[-66.5880658806588,63.102689628496336],[-66.58086580865809,63.097623896686684],[-66.570065700657,63.09593531941681],[-66.55926559265592,63.09255816487703],[-66.55926559265592,63.08242670125773],[-66.56646566465665,63.07736096944808],[-66.60246602466025,63.067229505828806],[-66.6240662406624,63.07398381490833],[-66.660066600666,63.097623896686684],[-66.68526685266852,63.102689628496336],[-66.67446674466744,63.08749243306738],[-66.660066600666,63.07398381490833],[-66.64566645666456,63.062163774019155],[-66.62766627666277,63.05203231039985],[-66.570065700657,63.03008080589137],[-66.5520655206552,63.01994934227207],[-66.54486544865448,63.004752146843146],[-66.5520655206552,62.99630926049372],[-66.56646566465665,62.99799783776359],[-66.59886598865988,63.01994934227207],[-66.65646656466565,63.040212269510675],[-66.65646656466565,63.03345796043115],[-66.64926649266492,63.03345796043115],[-66.64926649266492,63.026703651351625],[-66.67446674466744,63.0283922286215],[-66.6960669606696,63.0385236922408],[-66.75726757267573,63.08242670125773],[-66.76806768067681,63.09086958760716],[-66.77166771667716,63.09931247395656],[-66.76806768067681,63.11957540119516],[-66.76446764467644,63.13139544208434],[-66.76806768067681,63.13646117389399],[-66.77886778867789,63.14152690570364],[-66.77886778867789,63.15165836932292],[-66.77166771667716,63.16178983294222],[-66.76446764467644,63.165166987481996],[-66.76446764467644,63.1837413374507],[-66.76806768067681,63.19049564653022],[-66.8040680406804,63.236087232817056],[-66.81126811268112,63.254661582785786],[-66.80766807668077,63.27492451002436],[-66.83286832868329,63.271547355484614],[-66.84726847268472,63.25128442824601],[-66.84726847268472,63.22933292373753],[-66.83646836468364,63.21920146011823],[-66.81486814868148,63.21075857376883],[-66.8040680406804,63.18880706926035],[-66.81126811268112,63.165166987481996],[-66.83286832868329,63.14996979205304],[-66.86166861668616,63.15165836932292],[-66.88686886868868,63.16178983294222],[-66.90846908469084,63.17867560564105],[-66.92646926469264,63.195561378339875],[-66.9480694806948,63.209069996498954],[-67.0020700207002,63.227644346467656],[-67.02007020070201,63.23946438735683],[-67.02007020070201,63.26141589186531],[-66.99486994869949,63.271547355484614],[-66.9660696606966,63.27830166456414],[-66.95166951669516,63.290121705453316],[-66.96246962469624,63.30363032361237],[-66.9840698406984,63.31038463269189],[-67.00567005670057,63.320516096311195],[-67.00567005670057,63.342467600819674],[-66.98046980469805,63.377927723487204],[-66.97326973269732,63.396502073455935],[-66.99486994869949,63.40325638253546],[-67.01287012870128,63.40325638253546],[-67.01647016470164,63.39819065072581],[-67.01647016470164,63.39143634164628],[-67.02727027270272,63.37117341440768],[-67.0380703807038,63.342467600819674],[-67.0380703807038,63.33571329174015],[-67.0380703807038,63.32389325085097],[-67.01287012870128,63.28843312818344],[-67.0380703807038,63.28336739637379],[-67.11367113671136,63.28843312818344],[-67.13167131671317,63.29181028272319],[-67.1640716407164,63.315450364501544],[-67.18567185671856,63.320516096311195],[-67.18567185671856,63.315450364501544],[-67.1640716407164,63.307007478152144],[-67.15327153271532,63.29518743726297],[-67.15327153271532,63.285055973643665],[-67.17847178471784,63.28167881910389],[-67.20007200072,63.28843312818344],[-67.23967239672396,63.320516096311195],[-67.34047340473404,63.374550568947456],[-67.35847358473585,63.388059187106506],[-67.37287372873729,63.404944959805334],[-67.38367383673837,63.42520788704394],[-67.38727387273872,63.45222512336204],[-67.39087390873908,63.458979432441595],[-67.40167401674016,63.46573374152112],[-67.4160741607416,63.467422318790994],[-67.42327423274233,63.46573374152112],[-67.41967419674197,63.45560227790182],[-67.4160741607416,63.437027927933116],[-67.4160741607416,63.42520788704394],[-67.40887408874089,63.42520788704394],[-67.41967419674197,63.41338784615476],[-67.42327423274233,63.41507642342464],[-67.43047430474304,63.42014215523429],[-67.4520745207452,63.42689646431381],[-67.47727477274772,63.437027927933116],[-67.4880748807488,63.43871650520299],[-67.50247502475024,63.44209365974277],[-67.50247502475024,63.45222512336204],[-67.50247502475024,63.46404516425122],[-67.5060750607506,63.472488050600646],[-67.53847538475384,63.49275097783922],[-67.54927549275493,63.5062595959983],[-67.53487534875349,63.521456791427255],[-67.56007560075601,63.53665398685618],[-67.59247592475924,63.54509687320561],[-67.61767617676176,63.55860549136466],[-67.62847628476284,63.58562272768279],[-67.64287642876428,63.60250850038162],[-67.67167671676717,63.61770569581054],[-67.68967689676896,63.632902891239496],[-67.67167671676717,63.65823155028775],[-67.69687696876969,63.654854395747975],[-67.74367743677436,63.63965720031902],[-67.76527765277652,63.63628004577927],[-67.78687786877869,63.64472293212867],[-67.79047790477904,63.663297282097375],[-67.7940779407794,63.685248786605854],[-67.80847808478084,63.69875740476493],[-67.81927819278192,63.69369167295528],[-67.82647826478265,63.69200309568541],[-67.83367833678336,63.695380250225156],[-67.84087840878408,63.70551171384446],[-67.84087840878408,63.72408606381316],[-67.8660786607866,63.74097183651199],[-67.92367923679237,63.76798907283012],[-67.91647916479164,63.744348991051766],[-67.86967869678696,63.71395460019386],[-67.8660786607866,63.70213455930468],[-67.86967869678696,63.68693736387576],[-67.85167851678517,63.6717401684468],[-67.81567815678156,63.6514772412082],[-67.80487804878048,63.62952573669975],[-67.81927819278192,63.592377036762315],[-67.81207812078121,63.57211410952371],[-67.80487804878048,63.561982645904436],[-67.79047790477904,63.54171971866583],[-67.78327783277832,63.53158825504653],[-67.71847718477184,63.472488050600646],[-67.68607686076861,63.43365077339334],[-67.67167671676717,63.39481349618603],[-67.69687696876969,63.369484837137804],[-67.73287732877328,63.369484837137804],[-67.78687786877869,63.396502073455935],[-67.81927819278192,63.40325638253546],[-67.82647826478265,63.40832211434511],[-67.83367833678336,63.41676500069451],[-67.84447844478444,63.43533935066321],[-67.86247862478625,63.45560227790182],[-67.86967869678696,63.46404516425122],[-67.94527945279452,63.507948173268176],[-68.00288002880028,63.52652252323688],[-68.01728017280172,63.538342564126054],[-68.03528035280353,63.54678545047548],[-68.07488074880749,63.54847402774536],[-68.09288092880928,63.55860549136466],[-68.10368103681036,63.57380268679361],[-68.11088110881109,63.58899988222254],[-68.12168121681216,63.60250850038162],[-68.1360813608136,63.60926280946114],[-68.12888128881288,63.587311304952664],[-68.14328143281432,63.58224557314301],[-68.16128161281613,63.58562272768279],[-68.1720817208172,63.592377036762315],[-68.18288182881828,63.605885654921366],[-68.22968229682296,63.597442768571966],[-68.24768247682476,63.60926280946114],[-68.22608226082261,63.61770569581054],[-68.22248222482224,63.63121431396962],[-68.23328233282332,63.64810008666845],[-68.25848258482584,63.67849447752633],[-68.26928269282692,63.690314518415505],[-68.28728287282873,63.69875740476493],[-68.31608316083161,63.69875740476493],[-68.31608316083161,63.69200309568541],[-68.29088290882909,63.663297282097375],[-68.280082800828,63.64472293212867],[-68.28728287282873,63.63628004577927],[-68.31248312483125,63.63965720031902],[-68.36288362883629,63.654854395747975],[-68.3880838808388,63.65823155028775],[-68.39888398883988,63.663297282097375],[-68.41328413284133,63.67849447752633],[-68.42768427684277,63.695380250225156],[-68.43128431284312,63.70888886838421],[-68.44208442084421,63.71564317746376],[-68.48528485284852,63.73590610470234],[-68.4960849608496,63.74097183651199],[-68.50688506885068,63.74097183651199],[-68.52848528485285,63.74603756832164],[-68.53928539285393,63.74603756832164],[-68.54288542885429,63.744348991051766],[-68.53928539285393,63.739283259242114],[-68.53928539285393,63.73421752743246],[-68.54288542885429,63.73252895016259],[-68.57528575285752,63.73252895016259],[-68.73008730087301,63.77643195917952],[-68.7480874808748,63.779809113719296],[-68.74448744487445,63.76798907283012],[-68.73728737287372,63.76292334102047],[-68.71568715687157,63.752791877401165],[-68.7120871208712,63.74603756832164],[-68.71568715687157,63.73590610470234],[-68.72648726487265,63.73252895016259],[-68.73728737287372,63.73421752743246],[-68.74448744487445,63.74097183651199],[-68.77328773287732,63.730840372892686],[-68.88488884888848,63.74941472286142],[-68.91368913689136,63.75785760921082],[-68.9280892808928,63.76123476375059],[-68.99288992889929,63.76123476375059],[-68.99648996489965,63.74941472286142],[-68.98928989289892,63.74097183651199],[-68.92088920889209,63.70551171384446],[-68.88488884888848,63.676805900256454],[-68.82728827288273,63.6514772412082],[-68.81648816488165,63.63628004577927],[-68.81288812888128,63.624460004890096],[-68.84528845288453,63.62108285035032],[-68.86328863288632,63.60926280946114],[-68.84888848888488,63.60419707765149],[-68.83088830888309,63.59913134584184],[-68.79848798487984,63.59575419130209],[-68.78768787687876,63.59068845949244],[-68.77688776887769,63.578868418603264],[-68.76968769687697,63.565359800444185],[-68.75888758887588,63.55522833682488],[-68.71568715687157,63.52652252323688],[-68.68688686886868,63.51301390507783],[-68.64368643686437,63.50119386418865],[-68.58248582485824,63.472488050600646],[-68.550085500855,63.44884796882229],[-68.5140851408514,63.44378223701264],[-68.44568445684456,63.445470814282515],[-68.45288452884529,63.43365077339334],[-68.46728467284673,63.43027361885356],[-68.49968499684996,63.431962196123465],[-68.49248492484925,63.42183073250416],[-68.44928449284492,63.39143634164628],[-68.40248402484025,63.37623914621733],[-68.38088380883808,63.361041950788376],[-68.33768337683377,63.32220467358107],[-68.30168301683017,63.312073209961795],[-68.29088290882909,63.30363032361237],[-68.280082800828,63.29518743726297],[-68.27288272882728,63.28843312818344],[-68.27648276482765,63.285055973643665],[-68.28368283682836,63.279990241834014],[-68.28728287282873,63.27323593275449],[-68.28728287282873,63.26648162367496],[-68.280082800828,63.26141589186531],[-68.2620826208262,63.25972731459541],[-68.2440824408244,63.252973005515884],[-68.21528215282153,63.24115296462671],[-68.20448204482044,63.23271007827731],[-68.2080820808208,63.21920146011823],[-68.21888218882188,63.2124471510387],[-68.23328233282332,63.21075857376883],[-68.24768247682476,63.2124471510387],[-68.22968229682296,63.19893853287965],[-68.19008190081901,63.19049564653022],[-68.17568175681757,63.182052760180824],[-68.15768157681576,63.168544142021744],[-68.14688146881468,63.160101255672345],[-68.13248132481324,63.15841267840247],[-68.11088110881109,63.15672410113257],[-68.06048060480605,63.16685556475187],[-68.01368013680137,63.15165836932292],[-67.94527945279452,63.14321548297352],[-67.91647916479164,63.14321548297352],[-67.92727927279273,63.13477259662412],[-67.93807938079381,63.129706864814466],[-67.94527945279452,63.124641133004815],[-67.9560795607956,63.10437820576621],[-67.98487984879849,63.075672392178205],[-67.97047970479704,63.067229505828806],[-67.94887948879489,63.06891808309868],[-67.92727927279273,63.07736096944808],[-67.90927909279092,63.089181010337256],[-67.91647916479164,63.106066783036084],[-67.89487894878948,63.11788682392529],[-67.86247862478625,63.11957540119516],[-67.79767797677977,63.089181010337256],[-67.7580775807758,63.089181010337256],[-67.67887678876788,63.102689628496336],[-67.6320763207632,63.102689628496336],[-67.61047610476105,63.097623896686684],[-67.60327603276032,63.08242670125773],[-67.61047610476105,63.067229505828806],[-67.6320763207632,63.06047519674925],[-67.71487714877148,63.06047519674925],[-67.73287732877328,63.05540946493963],[-67.740077400774,63.043589424050424],[-67.74727747277473,63.035146537701024],[-67.78687786877869,63.02332649681185],[-67.80127801278013,63.01488361046242],[-67.76527765277652,63.01488361046242],[-67.77247772477725,63.00137499230337],[-67.76527765277652,62.991243528684066],[-67.75447754477544,62.986177796874415],[-67.740077400774,62.986177796874415],[-67.740077400774,62.97942348779489],[-67.75087750877509,62.977734910525015],[-67.76167761677617,62.97435775598524],[-67.76887768877688,62.96929202417559],[-67.77247772477725,62.95916056055631],[-67.74367743677436,62.95747198328641],[-67.72567725677257,62.95747198328641],[-67.71487714877148,62.96253771509606],[-67.71487714877148,62.97098060144549],[-67.71847718477184,62.98280064233467],[-67.72927729277292,62.99293210595397],[-67.740077400774,62.999686415033494],[-67.67527675276753,63.0283922286215],[-67.66447664476644,63.040212269510675],[-67.63927639276392,63.040212269510675],[-67.6140761407614,63.035146537701024],[-67.59247592475924,63.0368351149709],[-67.57087570875709,63.05203231039985],[-67.55647556475564,63.053720887669726],[-67.53847538475384,63.04527800132033],[-67.51687516875168,63.03176938316125],[-67.5060750607506,63.01994934227207],[-67.50967509675097,63.008129301382894],[-67.52767527675276,62.999686415033494],[-67.55647556475564,62.99462068322384],[-67.5780757807578,62.99293210595397],[-67.59967599675997,62.98955495141419],[-67.62847628476284,62.981112065064764],[-67.65007650076501,62.96929202417559],[-67.64287642876428,62.95916056055631],[-67.66447664476644,62.95240625147676],[-67.67167671676717,62.94734051966714],[-67.67887678876788,62.93889763331771],[-67.67527675276753,62.928766169698406],[-67.6680766807668,62.92538901515866],[-67.66087660876609,62.923700437888755],[-67.65727657276572,62.92538901515866],[-67.65727657276572,62.91863470607913],[-67.64287642876428,62.93383190150806],[-67.58887588875888,62.95747198328641],[-67.56727567275672,62.972669178715364],[-67.54927549275493,62.964226292365964],[-67.52767527675276,62.96929202417559],[-67.47727477274772,62.986177796874415],[-67.46287462874628,62.986177796874415],[-67.44127441274412,62.98448921960454],[-67.42327423274233,62.97942348779489],[-67.39807398073981,62.96760344690571],[-67.39447394473945,62.964226292365964],[-67.39807398073981,62.955783406016536],[-67.41247412474124,62.94396336512736],[-67.4160741607416,62.94058621058758],[-67.42327423274233,62.93889763331771],[-67.41967419674197,62.937209056047834],[-67.4160741607416,62.937209056047834],[-67.4160741607416,62.93552047877793],[-67.4160741607416,62.93214332423818],[-67.39087390873908,62.93889763331771],[-67.37287372873729,62.94058621058758],[-67.35487354873548,62.937209056047834],[-67.29367293672937,62.9000603561104],[-67.27207272072721,62.893306047030876],[-67.24687246872469,62.8899288924911],[-67.24687246872469,62.883174583411574],[-67.36927369273693,62.862911656173],[-67.36927369273693,62.85615734709347],[-67.32247322473225,62.85446876982357],[-67.30087300873008,62.85615734709347],[-67.27927279272792,62.862911656173],[-67.28647286472864,62.85615734709347],[-67.25047250472504,62.874731697062174],[-67.22167221672217,62.8814860061417],[-67.19647196471965,62.87642027433205],[-67.17487174871748,62.85446876982357],[-67.19287192871928,62.839271574394644],[-67.22167221672217,62.82745153350544],[-67.24687246872469,62.81563149261626],[-67.22887228872288,62.81563149261626],[-67.19287192871928,62.825762956235565],[-67.18567185671856,62.825762956235565],[-67.17487174871748,62.81563149261626],[-67.15687156871569,62.817320069886165],[-67.12087120871209,62.82914011077534],[-67.10287102871028,62.81563149261626],[-67.0920709207092,62.80550002899699],[-67.08847088470884,62.79705714264756],[-67.0920709207092,62.78692567902826],[-67.11727117271172,62.768351329059556],[-67.12087120871209,62.759908442710156],[-67.10647106471065,62.76159701998003],[-67.07767077670776,62.77341706086921],[-67.0380703807038,62.77341706086921],[-67.0380703807038,62.768351329059556],[-67.04167041670416,62.768351329059556],[-67.04527045270453,62.768351329059556],[-67.04887048870488,62.76666275178968],[-67.04167041670416,62.76666275178968],[-67.04167041670416,62.76497417451978],[-67.04887048870488,62.759908442710156],[-67.02367023670236,62.7447112472812],[-67.01647016470164,62.73795693820168],[-67.01647016470164,62.72951405185225],[-67.02727027270272,62.719382588232946],[-67.05967059670596,62.697431083724496],[-67.05247052470524,62.692365351914844],[-67.01647016470164,62.700808238264244],[-66.98046980469805,62.70249681553412],[-66.90846908469084,62.697431083724496],[-66.91926919269193,62.69405392918472],[-66.95886958869588,62.683922465565416],[-66.97326973269732,62.678856733755765],[-66.9840698406984,62.67210242467624],[-67.00567005670057,62.656905229247286],[-66.98046980469805,62.656905229247286],[-66.76086760867608,62.683922465565416],[-66.72486724867248,62.670413847406365],[-66.73926739267392,62.66703669286659],[-66.75366753667537,62.66028238378706],[-66.76446764467644,62.65015092016776],[-66.77166771667716,62.63664230200871],[-66.68886688866888,62.65015092016776],[-66.67086670866708,62.643396611088235],[-66.68166681666817,62.638330879278584],[-66.71766717667177,62.629887992929184],[-66.70686706867069,62.621445106579756],[-66.6960669606696,62.616379374770105],[-66.68166681666817,62.61469079750023],[-66.65646656466565,62.62313368384966],[-66.63846638466384,62.621445106579756],[-66.6240662406624,62.616379374770105],[-66.60966609666096,62.616379374770105],[-66.61326613266132,62.613002220230356],[-66.61326613266132,62.60962506569058],[-66.61686616866169,62.60624791115083],[-66.6240662406624,62.602870756611054],[-66.60606606066061,62.58260782937245],[-66.5520655206552,62.560656324864],[-66.54126541265413,62.53701624308562],[-66.52686526865268,62.518441893116915],[-66.4980649806498,62.513376161307264],[-66.48006480064801,62.504933274957864],[-66.4980649806498,62.477916038639734],[-66.49446494464944,62.46271884321078],[-66.5160651606516,62.43739018416255],[-66.51246512465124,62.42388156600347],[-66.4980649806498,62.420504411463725],[-66.47646476464764,62.428947297813124],[-66.45486454864549,62.43907876143243],[-66.44046440464405,62.44414449324208],[-66.35766357663576,62.4508988023216],[-66.35406354063541,62.447521647781855],[-66.36486364863649,62.43739018416255],[-66.39726397263972,62.42388156600347],[-66.32886328863289,62.390110020605846],[-66.3360633606336,62.37997855698654],[-66.34686346863468,62.37828997971664],[-66.35766357663576,62.37828997971664],[-66.390063900639,62.371535670637115],[-66.39726397263972,62.36815851609737],[-66.4080640806408,62.35971562974794],[-66.41526415264153,62.35464989793829],[-66.4440644406444,62.35633847520819],[-66.4620646206462,62.35464989793829],[-66.46926469264692,62.35633847520819],[-66.47646476464764,62.35633847520819],[-66.47646476464764,62.35296132066841],[-66.47646476464764,62.34620701158889],[-66.47646476464764,62.34114127977924],[-66.47286472864728,62.336075547969585],[-66.42966429664297,62.32087835254063],[-66.34326343263432,62.27022103444415],[-66.30726307263072,62.273598188983925],[-66.34686346863468,62.309058311651455],[-66.36486364863649,62.33269839342981],[-66.34326343263432,62.34114127977924],[-66.30366303663037,62.35127274339854],[-66.28566285662856,62.349584166128636],[-66.27486274862748,62.34282985704911],[-66.25686256862568,62.32932123889006],[-66.2460624606246,62.32087835254063],[-66.23886238862389,62.34114127977924],[-66.23166231662316,62.349584166128636],[-66.22446224462244,62.349584166128636],[-66.210062100621,62.34114127977924],[-66.20646206462064,62.33776412523946],[-66.20646206462064,62.331009816159934],[-66.20286202862029,62.32425550708041],[-66.18486184861848,62.31918977527076],[-66.16686166861668,62.31074688892136],[-66.1560615606156,62.30736973438158],[-66.15966159661596,62.303992579841804],[-66.16326163261633,62.29892684803218],[-66.16686166861668,62.29386111622253],[-66.17046170461704,62.287106807142976],[-66.1560615606156,62.273598188983925],[-66.1560615606156,62.27022103444415],[-66.1560615606156,62.265155302634525],[-66.15246152461525,62.25502383901522],[-66.1560615606156,62.2482695299357],[-66.16686166861668,62.2567124162851],[-66.18486184861848,62.265155302634525],[-66.21366213662137,62.268532457174274],[-66.2640626406264,62.2668438799044],[-66.18126181261812,62.241515220856144],[-66.05886058860588,62.22800660269709],[-66.04086040860408,62.23982664358627],[-66.0480604806048,62.23982664358627],[-66.01926019260192,62.24995810720557],[-65.98685986859869,62.241515220856144],[-65.92925929259292,62.20436652091874],[-65.92925929259292,62.197612211839214],[-66.0120601206012,62.17397213006086],[-66.03726037260373,62.16046351190178],[-66.0480604806048,62.15033204828248],[-66.05166051660517,62.14526631647283],[-66.05526055260552,62.1385120073933],[-66.05166051660517,62.126691966504126],[-66.0480604806048,62.1199376574246],[-66.030060300603,62.09798615291612],[-66.030060300603,62.091231843836596],[-66.03726037260373,62.08110038021729],[-66.04086040860408,62.07603464840764],[-66.04446044460444,62.07434607113777],[-66.05886058860588,62.07434607113777],[-66.0840608406084,62.08447753475707],[-66.08766087660877,62.08447753475707],[-66.09126091260912,62.08954326656672],[-66.120061200612,62.08785468929682],[-66.12726127261273,62.08785468929682],[-66.15966159661596,62.12500338923425],[-66.17766177661777,62.135134852853554],[-66.20286202862029,62.11656050288482],[-66.19926199261992,62.113183348345075],[-66.1920619206192,62.1098061938053],[-66.18486184861848,62.1098061938053],[-66.1740617406174,62.118249080154726],[-66.17046170461704,62.113183348345075],[-66.16686166861668,62.10642903926555],[-66.16326163261633,62.10305188472577],[-66.10926109261092,62.050705989359415],[-66.10206102061021,62.04226310300999],[-66.10206102061021,62.03044306212081],[-66.10566105661056,62.023688753041284],[-66.13446134461344,62.01693444396176],[-66.14166141661416,62.01355728942198],[-66.120061200612,62.00680298034246],[-66.08766087660877,62.001737248532805],[-66.0660606606066,61.996671516723154],[-66.05886058860588,61.98485147583398],[-66.04446044460444,61.9628999713255],[-66.04086040860408,61.957834239515876],[-66.02646026460265,61.957834239515876],[-66.00126001260013,61.966277125865275],[-65.98685986859869,61.961211394055624],[-65.98685986859869,61.952768507706224],[-65.98685986859869,61.94263704408692],[-65.98685986859869,61.934194157737494],[-65.96525965259652,61.92743984865797],[-65.95445954459544,61.91899696230857],[-65.94725947259472,61.908865498689266],[-65.95085950859509,61.89704545780009],[-65.97245972459724,61.88691399418079],[-66.03366033660336,61.88860257145066],[-66.0480604806048,61.88015968510126],[-66.06246062460625,61.87509395329161],[-66.17046170461704,61.876782530561485],[-66.27486274862748,61.85820818059278],[-66.3360633606336,61.87509395329161],[-66.40446404464045,61.876782530561485],[-66.43686436864368,61.88353683964101],[-66.48726487264872,61.898734035069964],[-66.50886508865088,61.90211118960974],[-66.54126541265413,61.903799766879615],[-66.55566555665557,61.90717692141939],[-66.58086580865809,61.925751271388094],[-66.59166591665917,61.930817003197745],[-66.60246602466025,61.92743984865797],[-66.61686616866169,61.92406269411822],[-66.62766627666277,61.92068553957844],[-66.64206642066421,61.92406269411822],[-66.66366663666636,61.93757131227727],[-66.65646656466565,61.94770277589657],[-66.61686616866169,61.9645885485954],[-66.63486634866348,61.97134285767493],[-66.6780667806678,61.9645885485954],[-66.6960669606696,61.9645885485954],[-66.70326703267033,61.96965428040505],[-66.71046710467104,61.97640858948458],[-66.72126721267212,61.988228630373754],[-66.72846728467285,61.9916057849135],[-66.750067500675,62.00004867126293],[-66.750067500675,62.00342582580271],[-66.74646746467464,62.01355728942198],[-66.77526775267752,62.01693444396176],[-66.85446854468545,62.020311598501536],[-66.91926919269193,62.04395168027989],[-66.94446944469445,62.04732883481964],[-66.92286922869228,62.037197371200335],[-66.91566915669156,62.03382021666059],[-66.93726937269372,62.015245866691885],[-66.96966969669697,62.023688753041284],[-67.02367023670236,62.05408314389916],[-67.0380703807038,62.050705989359415],[-67.07047070470705,62.037197371200335],[-67.08847088470884,62.03382021666059],[-67.10647106471065,62.037197371200335],[-67.12447124471244,62.04395168027989],[-67.22527225272252,62.09798615291612],[-67.2360723607236,62.1013633074559],[-67.24687246872469,62.10305188472577],[-67.24687246872469,62.09798615291612],[-67.2540725407254,62.08447753475707],[-67.25767257672577,62.08110038021729],[-67.31887318873189,62.072657493867894],[-67.3260732607326,62.077723225677545],[-67.32967329673296,62.086166112026945],[-67.33327333273333,62.099674730185995],[-67.34047340473404,62.113183348345075],[-67.34767347673477,62.12331481196438],[-67.32967329673296,62.12500338923425],[-67.32967329673296,62.13344627558365],[-67.33687336873368,62.140200584663205],[-67.40167401674016,62.15033204828248],[-67.49167491674916,62.14526631647283],[-67.52407524075241,62.15033204828248],[-67.54927549275493,62.16721782098131],[-67.58167581675816,62.180726439140386],[-67.6140761407614,62.175660707330735],[-67.64287642876428,62.16384066644156],[-67.67527675276753,62.15708635736203],[-67.75447754477544,62.16384066644156],[-67.83367833678336,62.17734928460061],[-67.830078300783,62.18579217095004],[-67.82647826478265,62.19254648002956],[-67.81567815678156,62.19592363456931],[-67.80847808478084,62.197612211839214],[-67.80847808478084,62.20436652091874],[-67.81927819278192,62.20943225272839],[-67.830078300783,62.20943225272839],[-67.8480784807848,62.20436652091874],[-67.8480784807848,62.202677943648865],[-67.85887858878588,62.19423505729944],[-67.86247862478625,62.19085790275969],[-67.87327873278733,62.19085790275969],[-67.88767887678877,62.19592363456931],[-67.98127981279812,62.211120829998265],[-68.00648006480064,62.211120829998265],[-68.03168031680316,62.20774367545849],[-68.0460804608046,62.20774367545849],[-68.06048060480605,62.211120829998265],[-68.06408064080641,62.21449798453804],[-68.06768067680676,62.22125229361757],[-68.07488074880749,62.22800660269709],[-68.0820808208082,62.23138375723687],[-68.08928089280893,62.22969517996697],[-68.10368103681036,62.22125229361757],[-68.11088110881109,62.21787513907779],[-68.55368553685537,62.24995810720557],[-68.61128611286112,62.265155302634525],[-68.62928629286293,62.2752867662538],[-68.6580865808658,62.2854182298731],[-68.67968679686797,62.28879538441288],[-68.71568715687157,62.30230400257193],[-68.72648726487265,62.30736973438158],[-68.72648726487265,62.314124043461106],[-68.7120871208712,62.32087835254063],[-68.70488704887049,62.32087835254063],[-68.70488704887049,62.327632661620186],[-68.81648816488165,62.34114127977924],[-68.82368823688236,62.349584166128636],[-68.82728827288273,62.366469938827464],[-68.8380883808838,62.37997855698654],[-68.86328863288632,62.38335571152629],[-68.88128881288813,62.366469938827464],[-68.89208892088921,62.363092784287716],[-68.90288902889029,62.363092784287716],[-68.91728917289173,62.36815851609737],[-68.93168931689317,62.37322424790702],[-68.94248942489425,62.37997855698654],[-68.96048960489604,62.38673286606607],[-69.00369003690037,62.37660140244677],[-69.02889028890289,62.37997855698654],[-69.1980919809198,62.44414449324208],[-69.2880928809288,62.49311323406869],[-69.30969309693097,62.540393397625394],[-69.31689316893168,62.540393397625394],[-69.27729277292772,62.61806795204001],[-69.28089280892809,62.62313368384966],[-69.29169291692916,62.62819941565928],[-69.3060930609306,62.629887992929184],[-69.31329313293132,62.59949360207128],[-69.32049320493205,62.59273929299175],[-69.32769327693276,62.58429640664235],[-69.3420934209342,62.57416494302305],[-69.34929349293492,62.5690992112134],[-69.35649356493565,62.55727917032422],[-69.36009360093601,62.548836283974794],[-69.36369363693636,62.540393397625394],[-69.3780937809378,62.53363908854587],[-69.38529385293853,62.540393397625394],[-69.38889388893888,62.545459129435045],[-69.38529385293853,62.55221343851457],[-69.38889388893888,62.560656324864],[-69.39609396093961,62.56572205667362],[-69.40329403294032,62.5690992112134],[-69.40689406894069,62.575853520292924],[-69.41049410494105,62.585984983912226],[-69.41049410494105,62.59611644753153],[-69.40689406894069,62.60118217934118],[-69.40689406894069,62.60455933388093],[-69.4140941409414,62.613002220230356],[-69.42489424894248,62.61806795204001],[-69.46089460894609,62.629887992929184],[-69.45369453694536,62.61806795204001],[-69.44649446494465,62.611313642960454],[-69.43929439294392,62.60455933388093],[-69.43209432094321,62.59611644753153],[-69.43209432094321,62.58429640664235],[-69.43569435694357,62.575853520292924],[-69.43569435694357,62.567410633943524],[-69.42489424894248,62.560656324864],[-69.44649446494465,62.553902015784445],[-69.46089460894609,62.56403347940375],[-69.47169471694717,62.580919252102575],[-69.48249482494825,62.5876735611821],[-69.50049500495004,62.59273929299175],[-69.52209522095221,62.60455933388093],[-69.55089550895508,62.63326514746893],[-69.58689586895869,62.656905229247286],[-69.59049590495904,62.66703669286659],[-69.56889568895689,62.678856733755765],[-69.54369543695437,62.68223388829554],[-69.47169471694717,62.678856733755765],[-69.47169471694717,62.683922465565416],[-69.47889478894788,62.68729962010519],[-69.48609486094861,62.697431083724496],[-69.45369453694536,62.697431083724496],[-69.43929439294392,62.700808238264244],[-69.43209432094321,62.71262827915342],[-69.49329493294933,62.71262827915342],[-69.53289532895329,62.70756254734377],[-69.55089550895508,62.70925112461367],[-69.56889568895689,62.719382588232946],[-69.53649536495365,62.73964551547155],[-69.50049500495004,62.74639982455108],[-69.41769417694177,62.74639982455108],[-69.40329403294032,62.74808840182098],[-69.39249392493925,62.75146555636073],[-69.38529385293853,62.75821986544025],[-69.38889388893888,62.76666275178968],[-69.40689406894069,62.77003990632943],[-69.46089460894609,62.759908442710156],[-69.47889478894788,62.763285597249904],[-69.49329493294933,62.77003990632943],[-69.50769507695077,62.77510563813908],[-69.54729547295473,62.76497417451978],[-69.56529565295652,62.76666275178968],[-69.61209612096121,62.78523710175838],[-69.61929619296193,62.78861425629816],[-69.62649626496264,62.790302833568035],[-69.63729637296373,62.78692567902826],[-69.63729637296373,62.78185994721861],[-69.63729637296373,62.763285597249904],[-69.64089640896408,62.759908442710156],[-69.65529655296552,62.75653128817038],[-69.68049680496804,62.74639982455108],[-69.69849698496985,62.74639982455108],[-69.68049680496804,62.78017136994873],[-69.720097200972,62.78354852448851],[-69.76329763297633,62.79367998810781],[-69.79929799297993,62.80887718353674],[-69.83529835298353,62.82914011077534],[-69.84249842498424,62.82407437896569],[-69.84969849698497,62.822385801695816],[-69.84249842498424,62.81394291534639],[-69.82089820898209,62.790302833568035],[-69.80649806498064,62.78185994721861],[-69.7920979209792,62.77848279267886],[-69.77769777697776,62.77172848359933],[-69.76689766897668,62.759908442710156],[-69.77049770497705,62.75821986544025],[-69.78129781297812,62.7531541336306],[-69.77769777697776,62.74977697909085],[-69.76689766897668,62.73795693820168],[-69.75969759697597,62.732891206392026],[-69.78129781297812,62.73120262912215],[-69.7920979209792,62.736268360931774],[-69.81369813698137,62.75653128817038],[-69.8280982809828,62.76497417451978],[-69.84249842498424,62.76497417451978],[-69.87849878498784,62.759908442710156],[-69.89649896498965,62.763285597249904],[-69.91089910899109,62.77341706086921],[-69.93969939699397,62.80043429718734],[-69.97569975699757,62.77510563813908],[-69.99729997299973,62.76666275178968],[-70.06930069300692,62.74808840182098],[-70.08370083700837,62.74639982455108],[-70.10170101701017,62.74808840182098],[-70.14490144901448,62.75821986544025],[-70.16290162901629,62.759908442710156],[-70.2421024210242,62.754842710900505],[-70.26730267302672,62.759908442710156],[-70.33930339303393,62.790302833568035],[-70.3681036810368,62.79367998810781],[-70.38250382503824,62.80043429718734],[-70.42570425704257,62.82914011077534],[-70.4581045810458,62.83758299712474],[-70.47250472504724,62.84433730620427],[-70.48330483304832,62.852780192553695],[-70.48690486904869,62.85953450163322],[-70.4941049410494,62.866288810712746],[-70.50850508505084,62.86966596525252],[-70.53370533705336,62.86966596525252],[-70.68490684906848,62.8899288924911],[-70.80010800108,62.893306047030876],[-70.82890828908289,62.90343751065018],[-70.82890828908289,62.89668320157065],[-70.8829088290883,62.91188039699958],[-70.89730897308972,62.91863470607913],[-70.86850868508685,62.928766169698406],[-70.80010800108,62.92707759242853],[-70.76770767707677,62.93214332423818],[-70.80370803708037,62.93383190150806],[-70.87570875708757,62.94734051966714],[-70.91170911709116,62.950717674206885],[-70.95490954909549,62.94396336512736],[-71.02691026910269,62.95409482874666],[-71.04131041310413,62.95916056055631],[-71.04131041310413,62.96591486963584],[-71.01971019710197,62.96929202417559],[-70.95490954909549,62.964226292365964],[-70.94050940509405,62.972669178715364],[-70.94410944109441,62.98786637414432],[-70.95490954909549,62.99799783776359],[-70.95850958509585,63.008129301382894],[-70.93330933309333,63.01994934227207],[-70.94770947709476,63.03345796043115],[-70.96570965709657,63.035146537701024],[-70.99090990909909,63.03008080589137],[-71.0089100891009,63.01994934227207],[-71.0089100891009,63.013195033192545],[-71.0089100891009,63.004752146843146],[-71.0089100891009,62.99630926049372],[-71.02331023310232,62.99293210595397],[-71.03051030510305,62.99293210595397],[-71.0521105211052,62.98786637414432],[-71.11331113311132,62.98280064233467],[-71.14211142111421,62.98448921960454],[-71.15651156511565,62.99293210595397],[-71.15651156511565,63.004752146843146],[-71.14571145711457,63.018260765002196],[-71.13131131311313,63.0283922286215],[-71.12051120511205,63.03345796043115],[-71.03051030510305,63.026703651351625],[-71.02331023310232,63.03008080589137],[-71.0089100891009,63.048655155860075],[-71.00171001710017,63.05540946493963],[-70.99090990909909,63.05878661947938],[-70.96930969309693,63.06385235128903],[-70.95850958509585,63.067229505828806],[-70.95490954909549,63.07398381490833],[-70.95490954909549,63.084115278527634],[-70.95130951309513,63.09255816487703],[-70.94050940509405,63.09931247395656],[-70.91530915309153,63.102689628496336],[-70.89370893708937,63.10944393757586],[-70.86490864908649,63.11619824665539],[-70.8361083610836,63.12801828754456],[-70.82170821708216,63.129706864814466],[-70.82170821708216,63.13477259662412],[-70.82530825308253,63.138149751163866],[-70.82890828908289,63.14321548297352],[-70.86490864908649,63.13983832843374],[-70.89010890108901,63.129706864814466],[-70.91170911709116,63.11957540119516],[-70.92250922509224,63.11619824665539],[-70.93330933309333,63.11619824665539],[-70.93330933309333,63.12126397846504],[-70.93690936909368,63.129706864814466],[-70.94410944109441,63.138149751163866],[-70.95130951309513,63.14321548297352],[-70.93690936909368,63.14828121478317],[-70.90810908109081,63.15672410113257],[-70.89730897308972,63.165166987481996],[-70.9261092610926,63.17192129656152],[-70.96570965709657,63.16347841021212],[-70.9981099810998,63.14321548297352],[-70.9981099810998,63.11957540119516],[-70.99090990909909,63.106066783036084],[-71.00531005310053,63.09593531941681],[-71.01971019710197,63.08580385579751],[-71.03051030510305,63.07904954671798],[-71.10971109711097,63.075672392178205],[-71.13131131311313,63.08073812398786],[-71.13851138511384,63.089181010337256],[-71.14571145711457,63.097623896686684],[-71.15291152911529,63.102689628496336],[-71.160111601116,63.097623896686684],[-71.19611196111961,63.06385235128903],[-71.19971199711996,63.05540946493963],[-71.20691206912069,63.01657218773232],[-71.21771217712177,63.008129301382894],[-71.23571235712356,63.00644072411302],[-71.26091260912608,63.0098178786528],[-71.27531275312752,63.01488361046242],[-71.27531275312752,63.01994934227207],[-71.25371253712537,63.026703651351625],[-71.26091260912608,63.035146537701024],[-71.2861128611286,63.043589424050424],[-71.30771307713077,63.0469665785902],[-71.37251372513725,63.048655155860075],[-71.40131401314012,63.05540946493963],[-71.42651426514264,63.075672392178205],[-71.40851408514085,63.084115278527634],[-71.39411394113941,63.10100105122646],[-71.39051390513904,63.11619824665539],[-71.40851408514085,63.12295255573491],[-71.41571415714157,63.12126397846504],[-71.44091440914409,63.111132514845735],[-71.44811448114481,63.106066783036084],[-71.45891458914589,63.10437820576621],[-71.49851498514985,63.12295255573491],[-71.55971559715597,63.12801828754456],[-71.61731617316173,63.14321548297352],[-71.68931689316892,63.173609873831396],[-71.71451714517144,63.17867560564105],[-71.70731707317073,63.18880706926035],[-71.69291692916929,63.192184223800126],[-71.66051660516605,63.192184223800126],[-71.66051660516605,63.19893853287965],[-71.70731707317073,63.21920146011823],[-71.75051750517505,63.227644346467656],[-71.76131761317613,63.23271007827731],[-71.75051750517505,63.24284154189661],[-71.73611736117361,63.24790727370623],[-71.66771667716677,63.24790727370623],[-71.64971649716497,63.252973005515884],[-71.64971649716497,63.263104469135186],[-71.67131671316713,63.271547355484614],[-71.76851768517685,63.25972731459541],[-71.76851768517685,63.26648162367496],[-71.76131761317613,63.26817020094484],[-71.73971739717396,63.27492451002436],[-71.76491764917648,63.28336739637379],[-71.76851768517685,63.293498859993065],[-71.76131761317613,63.30531890088227],[-71.76851768517685,63.320516096311195],[-71.79731797317973,63.33740186901002],[-71.82251822518225,63.3492219098992],[-71.77211772117721,63.347533332629325],[-71.74691746917469,63.3492219098992],[-71.72891728917288,63.355976218978725],[-71.73251732517325,63.35766479624863],[-71.74691746917469,63.36273052805828],[-71.74691746917469,63.38130487802698],[-71.76131761317613,63.40325638253546],[-71.77931779317792,63.41507642342464],[-71.79731797317973,63.40325638253546],[-71.8009180091801,63.39143634164628],[-71.82611826118261,63.388059187106506],[-71.93771937719377,63.39481349618603],[-71.96291962919629,63.40325638253546],[-71.97731977319773,63.42858504158369],[-71.98811988119881,63.431962196123465],[-71.99891998919989,63.42858504158369],[-72.00252002520025,63.42183073250416],[-72.00252002520025,63.40325638253546],[-72.0061200612006,63.39819065072581],[-72.01692016920168,63.39819065072581],[-72.08172081720816,63.40325638253546],[-72.08532085320853,63.40663353707521],[-72.08172081720816,63.41169926888486],[-72.07452074520745,63.41676500069451],[-72.06372063720637,63.418453577964385],[-72.06372063720637,63.42520788704394],[-72.09252092520924,63.42689646431381],[-72.12492124921249,63.437027927933116],[-72.14292142921428,63.44884796882229],[-72.12492124921249,63.45222512336204],[-72.09972099720997,63.45053654609217],[-72.08532085320853,63.44715939155239],[-72.07812078120782,63.44209365974277],[-72.07092070920709,63.431962196123465],[-72.05652056520564,63.437027927933116],[-72.03492034920349,63.45222512336204],[-72.02052020520205,63.453913700631944],[-71.96651966519664,63.445470814282515],[-71.87291872918729,63.445470814282515],[-71.68571685716857,63.42520788704394],[-71.61371613716136,63.42689646431381],[-71.58131581315813,63.43533935066321],[-71.56331563315632,63.45222512336204],[-71.57411574115741,63.46404516425122],[-71.55251552515524,63.472488050600646],[-71.41931419314193,63.4876852460296],[-71.39771397713977,63.499505286918776],[-71.40131401314012,63.502882441458524],[-71.40851408514085,63.50963675053805],[-71.4121141211412,63.51301390507783],[-71.38331383313833,63.52821110050678],[-71.31851318513185,63.54003114139596],[-71.27891278912789,63.565359800444185],[-71.27531275312752,63.57211410952371],[-71.27891278912789,63.57717984133336],[-71.28971289712896,63.583934150412915],[-71.28971289712896,63.58899988222254],[-71.27891278912789,63.59913134584184],[-71.26091260912608,63.60250850038162],[-71.22851228512285,63.60250850038162],[-71.25371253712537,63.61601711854067],[-71.28971289712896,63.619394273080445],[-71.32211322113221,63.60926280946114],[-71.33651336513364,63.58562272768279],[-71.33291332913329,63.57717984133336],[-71.33291332913329,63.57211410952371],[-71.33651336513364,63.56873695498396],[-71.38691386913868,63.56704837771409],[-71.40491404914049,63.56873695498396],[-71.41931419314193,63.57549126406349],[-71.37251372513725,63.59913134584184],[-71.36531365313652,63.60926280946114],[-71.36891368913689,63.62614858215997],[-71.37971379713797,63.632902891239496],[-71.40131401314012,63.63628004577927],[-71.41931419314193,63.63628004577927],[-71.40851408514085,63.62108285035032],[-71.40491404914049,63.61601711854067],[-71.41931419314193,63.61263996400092],[-71.430114301143,63.61095138673102],[-71.45891458914589,63.60926280946114],[-71.45531455314553,63.59913134584184],[-71.44811448114481,63.597442768571966],[-71.44091440914409,63.59575419130209],[-71.44091440914409,63.58899988222254],[-71.4661146611466,63.583934150412915],[-71.51291512915128,63.58055699587314],[-71.56331563315632,63.58224557314301],[-71.58491584915849,63.592377036762315],[-71.57411574115741,63.62108285035032],[-71.5489154891549,63.627837159429845],[-71.51651516515165,63.62614858215997],[-71.48771487714876,63.63121431396962],[-71.50571505715057,63.6430343548588],[-71.57051570515705,63.6430343548588],[-71.58491584915849,63.654854395747975],[-71.58131581315813,63.6616087048275],[-71.57051570515705,63.6717401684468],[-71.57051570515705,63.681871632066105],[-71.56691566915669,63.690314518415505],[-71.55611556115561,63.69875740476493],[-71.54531545315453,63.703823136574584],[-71.53451534515345,63.70551171384446],[-71.53451534515345,63.712266022923984],[-71.5489154891549,63.712266022923984],[-71.57051570515705,63.70213455930468],[-71.58491584915849,63.69875740476493],[-71.59571595715957,63.70213455930468],[-71.59571595715957,63.70888886838421],[-71.58851588515884,63.71564317746376],[-71.58491584915849,63.71902033200351],[-71.60651606516065,63.72408606381316],[-71.6281162811628,63.72408606381316],[-71.64611646116461,63.72070890927341],[-71.66051660516605,63.70888886838421],[-71.66051660516605,63.69875740476493],[-71.6281162811628,63.67511732298658],[-71.61731617316173,63.66498585936728],[-71.61731617316173,63.6514772412082],[-71.62451624516245,63.649788663938324],[-71.65691656916569,63.65823155028775],[-71.65691656916569,63.659920127557626],[-71.67851678516784,63.676805900256454],[-71.72171721717217,63.69200309568541],[-71.72171721717217,63.69875740476493],[-71.70011700117001,63.70044598203481],[-71.69291692916929,63.71395460019386],[-71.68931689316892,63.72915179562281],[-71.67851678516784,63.74097183651199],[-71.69651696516965,63.752791877401165],[-71.72171721717217,63.73590610470234],[-71.7541175411754,63.69200309568541],[-71.76131761317613,63.69706882749503],[-71.76491764917648,63.70044598203481],[-71.77211772117721,63.70551171384446],[-71.77571775717757,63.712266022923984],[-71.76491764917648,63.72915179562281],[-71.77571775717757,63.74603756832164],[-71.82611826118261,63.779809113719296],[-71.83691836918369,63.78318626825907],[-71.85131851318513,63.788252000068695],[-71.89451894518945,63.7899405773386],[-71.90531905319052,63.79500630914825],[-71.90171901719017,63.798383463688],[-71.89091890918908,63.806826350037426],[-71.88371883718837,63.8085149273073],[-71.92331923319233,63.82033496819648],[-71.95931959319593,63.806826350037426],[-71.98811988119881,63.78149769098917],[-72.00972009720097,63.75448045467104],[-72.00252002520025,63.75110330013129],[-71.99531995319953,63.74603756832164],[-71.97371973719737,63.75448045467104],[-71.94851948519485,63.77305480463977],[-71.9269192691927,63.774743381909644],[-71.93051930519304,63.76798907283012],[-71.93411934119341,63.76123476375059],[-71.91251912519125,63.75785760921082],[-71.86571865718656,63.766300495560245],[-71.8441184411844,63.76123476375059],[-71.85491854918548,63.752791877401165],[-71.86931869318693,63.725774641083035],[-71.87291872918729,63.71902033200351],[-71.89091890918908,63.71564317746376],[-71.89451894518945,63.70551171384446],[-71.89091890918908,63.69369167295528],[-71.87651876518765,63.685248786605854],[-71.90171901719017,63.67511732298658],[-71.9161191611916,63.663297282097375],[-71.93051930519304,63.654854395747975],[-71.95211952119521,63.65823155028775],[-71.96651966519664,63.654854395747975],[-71.97371973719737,63.654854395747975],[-71.97371973719737,63.66498585936728],[-71.970119701197,63.67005159117693],[-71.96291962919629,63.67342874571668],[-71.95571955719556,63.67511732298658],[-71.94491944919449,63.681871632066105],[-71.93051930519304,63.68693736387576],[-71.9269192691927,63.69369167295528],[-71.93771937719377,63.70888886838421],[-71.95211952119521,63.72239748654329],[-71.96291962919629,63.725774641083035],[-72.02412024120241,63.676805900256454],[-72.0421204212042,63.67005159117693],[-72.05652056520564,63.685248786605854],[-72.04932049320493,63.69706882749503],[-72.0529205292053,63.71057744565411],[-72.05652056520564,63.72408606381316],[-72.06372063720637,63.73252895016259],[-72.07452074520745,63.74097183651199],[-72.08172081720816,63.73421752743246],[-72.09252092520924,63.725774641083035],[-72.11412114121141,63.71902033200351],[-72.1321213212132,63.72408606381316],[-72.14652146521465,63.73421752743246],[-72.17532175321753,63.75785760921082],[-72.18972189721897,63.774743381909644],[-72.20052200522005,63.779809113719296],[-72.21132211322113,63.77812053644942],[-72.2149221492215,63.76967765009999],[-72.2149221492215,63.75785760921082],[-72.21132211322113,63.747726145591514],[-72.20772207722077,63.74097183651199],[-72.21852218522184,63.72239748654329],[-72.22212222122221,63.712266022923984],[-72.21852218522184,63.70044598203481],[-72.2149221492215,63.676805900256454],[-72.23292232922329,63.67511732298658],[-72.31932319323192,63.67849447752633],[-72.32292322923229,63.685248786605854],[-72.32292322923229,63.744348991051766],[-72.33732337323373,63.75448045467104],[-72.36612366123661,63.75448045467104],[-72.36612366123661,63.76123476375059],[-72.34452344523444,63.77305480463977],[-72.330123301233,63.779809113719296],[-72.31932319323192,63.78149769098917],[-72.30132301323013,63.77812053644942],[-72.26172261722617,63.76461191829034],[-72.24732247322473,63.76798907283012],[-72.26172261722617,63.779809113719296],[-72.27252272522725,63.79500630914825],[-72.27252272522725,63.8085149273073],[-72.2581225812258,63.815269236386825],[-72.25092250922509,63.823712122736254],[-72.22212222122221,63.869303709023086],[-72.20412204122042,63.877746595372486],[-72.18612186121861,63.88281232718214],[-72.15012150121501,63.88450090445201],[-72.1321213212132,63.886189481721914],[-72.0889208892089,63.91151814077014],[-72.16092160921609,63.89800952261109],[-72.18612186121861,63.89800952261109],[-72.20772207722077,63.90138667715084],[-72.22572225722257,63.90814098623039],[-72.23292232922329,63.91996102711957],[-72.22212222122221,63.931781068008746],[-72.24012240122401,63.95879830432685],[-72.26532265322653,63.940223954358146],[-72.26892268922688,63.931781068008746],[-72.27252272522725,63.93009249073884],[-72.27252272522725,63.92840391346897],[-72.27612276122761,63.92502675892919],[-72.27612276122761,63.91827244984967],[-72.27252272522725,63.91151814077014],[-72.2581225812258,63.90138667715084],[-72.25452254522544,63.89800952261109],[-72.2581225812258,63.88450090445201],[-72.27252272522725,63.88450090445201],[-72.29052290522905,63.89294379080144],[-72.30852308523085,63.904763831690616],[-72.32652326523265,63.87436944083274],[-72.35172351723517,63.85748366813391],[-72.38052380523804,63.84566362724473],[-72.40572405724056,63.828777854545905],[-72.38052380523804,63.8186463909266],[-72.36972369723696,63.810203504577174],[-72.36612366123661,63.798383463688],[-72.36972369723696,63.78487484552895],[-72.37692376923769,63.78318626825907],[-72.40572405724056,63.788252000068695],[-72.47412474124741,63.78656342279882],[-72.51372513725137,63.7899405773386],[-72.53532535325353,63.801760618227775],[-72.52092520925208,63.806826350037426],[-72.47412474124741,63.810203504577174],[-72.45972459724597,63.82202354546635],[-72.48852488524885,63.827089277276],[-72.57492574925749,63.85241793632426],[-72.59652596525964,63.86761513175318],[-72.62172621726216,63.86254939994356],[-72.64332643326433,63.85410651359413],[-72.66492664926649,63.85579509086401],[-72.63972639726397,63.88112374991226],[-72.63972639726397,63.89463236807131],[-72.65412654126541,63.90982956350027],[-72.66492664926649,63.931781068008746],[-72.62892628926289,63.940223954358146],[-72.61092610926109,63.95035541797745],[-72.60372603726037,63.962175458866625],[-72.60732607326072,63.97230692248593],[-72.61092610926109,63.98074980883533],[-72.61452614526145,63.989192695184755],[-72.61092610926109,64.00101273607393],[-72.5929259292593,64.02802997239206],[-72.61092610926109,64.03140712693181],[-72.65412654126541,64.01452135423298],[-72.66852668526685,64.01789850877276],[-72.67932679326793,64.03309570420168],[-72.6721267212672,64.04491574509089],[-72.66492664926649,64.05842436324994],[-72.65772657726576,64.07868729048855],[-72.66492664926649,64.08375302229817],[-72.6721267212672,64.08881875410782],[-72.68292682926828,64.08881875410782],[-72.68652686526865,64.07868729048855],[-72.69012690126901,64.06011294051982],[-72.69372693726937,64.04153859055111],[-72.69732697326972,64.03309570420168],[-72.70452704527045,64.02465281785229],[-72.70452704527045,64.01620993150289],[-72.70452704527045,64.01114419969323],[-72.69012690126901,64.00438989061368],[-72.67932679326793,64.0027013133438],[-72.66852668526685,63.997635581534155],[-72.65772657726576,63.98750411791485],[-72.6721267212672,63.97906123156545],[-72.68652686526865,63.97230692248593],[-72.70092700927009,63.967241190676276],[-72.71532715327153,63.9655526134064],[-72.73332733327332,63.97061834521605],[-72.74052740527405,63.97737265429558],[-72.74052740527405,63.989192695184755],[-72.74772747727476,64.00101273607393],[-72.78012780127801,64.01620993150289],[-72.85572855728557,64.02296424058241],[-72.88452884528844,64.03478428147159],[-72.87372873728737,64.03985001328124],[-72.86652866528665,64.04153859055111],[-72.85932859328592,64.04153859055111],[-72.85932859328592,64.04829289963064],[-72.87372873728737,64.05167005417042],[-72.92052920529206,64.04998147690051],[-72.93492934929348,64.05504720871016],[-72.94212942129421,64.06855582686924],[-72.93492934929348,64.07699871321864],[-72.92052920529206,64.08544159956807],[-72.90612906129061,64.09050733137772],[-72.89532895328954,64.09050733137772],[-72.88452884528844,64.09050733137772],[-72.87372873728737,64.09388448591747],[-72.87372873728737,64.10570452680665],[-72.87732877328773,64.11583599042595],[-72.88452884528844,64.11752456769582],[-72.89172891728917,64.11921314496573],[-72.89892898928989,64.12427887677538],[-72.90252902529025,64.1411646494742],[-72.90252902529025,64.15467326763326],[-72.90612906129061,64.16480473125256],[-72.92052920529206,64.17831334941161],[-72.93852938529385,64.18675623576104],[-72.96372963729637,64.19182196757066],[-73.01413014130141,64.19182196757066],[-73.05733057330573,64.18169050395139],[-73.07893078930789,64.18337908122126],[-73.0861308613086,64.19857627665021],[-73.07533075330753,64.20870774026949],[-73.06093060930608,64.21715062661892],[-73.05373053730537,64.2289706675081],[-73.06453064530645,64.2475450174768],[-73.11133111331112,64.25598790382622],[-73.12213122131222,64.26443079017562],[-73.1329313293133,64.2678079447154],[-73.12573125731257,64.2762508310648],[-73.12213122131222,64.27962798560458],[-73.11493114931149,64.28131656287445],[-73.10413104131041,64.28131656287445],[-73.12933129331293,64.29144802649375],[-73.21573215732157,64.29989091284315],[-73.22653226532265,64.32521957189141],[-73.23373233732337,64.33366245824081],[-73.24453244532445,64.33535103551071],[-73.25533255332553,64.32859672643116],[-73.24813248132482,64.32184241735163],[-73.2589325893259,64.31339953100223],[-73.27333273332734,64.31339953100223],[-73.30933309333093,64.3150881082721],[-73.30933309333093,64.30833379919258],[-73.29133291332913,64.3049566446528],[-73.27333273332734,64.29144802649375],[-73.26973269732697,64.27456225379493],[-73.28413284132841,64.26105363563588],[-73.30933309333093,64.25598790382622],[-73.34173341733417,64.25936505836597],[-73.37053370533705,64.2678079447154],[-73.3849338493385,64.28131656287445],[-73.38853388533884,64.28975944922388],[-73.3849338493385,64.31002237646246],[-73.39573395733957,64.33028530370106],[-73.39213392133921,64.33535103551071],[-73.37773377733777,64.34379392186011],[-73.37053370533705,64.34548249912999],[-73.35973359733597,64.34717107639989],[-73.34893348933488,64.35054823093964],[-73.34533345333453,64.36067969455894],[-73.34173341733417,64.36574542636859],[-73.3381333813338,64.37418831271799],[-73.33453334533345,64.38094262179754],[-73.32733327333273,64.38431977633729],[-73.32013320133201,64.38094262179754],[-73.30573305733057,64.36912258090837],[-73.29493294932949,64.36405684909872],[-73.28413284132841,64.36236827182881],[-73.27333273332734,64.36405684909872],[-73.26613266132661,64.36912258090837],[-73.26613266132661,64.37081115817824],[-73.27693276932769,64.3758768899879],[-73.32013320133201,64.39951697176625],[-73.34173341733417,64.4045827035759],[-73.35973359733597,64.39951697176625],[-73.3741337413374,64.3758768899879],[-73.39213392133921,64.37081115817824],[-73.41733417334173,64.37418831271799],[-73.48213482134821,64.4045827035759],[-73.44973449734496,64.4417314035133],[-73.4281342813428,64.45355144440248],[-73.41013410134101,64.44848571259286],[-73.3849338493385,64.43835424897355],[-73.35253352533525,64.4417314035133],[-73.32733327333273,64.45524002167238],[-73.3021330213302,64.47212579437121],[-73.32373323733236,64.47888010345073],[-73.34533345333453,64.47381437164108],[-73.36693366933669,64.46537148529168],[-73.38853388533884,64.46030575348203],[-73.41733417334173,64.46537148529168],[-73.41733417334173,64.47719152618086],[-73.39933399333992,64.49070014433991],[-73.29133291332913,64.52447168973757],[-73.27333273332734,64.52784884427734],[-73.26973269732697,64.53122599881709],[-73.2589325893259,64.5514889260557],[-73.25533255332553,64.55824323513522],[-73.24813248132482,64.56499754421475],[-73.20133201332013,64.5700632760244],[-73.17973179731797,64.57512900783405],[-73.17253172531726,64.58188331691358],[-73.16893168931689,64.59032620326298],[-73.16533165331653,64.59708051234253],[-73.16893168931689,64.6089005532317],[-73.1761317613176,64.61565486231123],[-73.18333183331833,64.61396628504136],[-73.20133201332013,64.60045766688228],[-73.2229322293223,64.59201478053288],[-73.24813248132482,64.5886376259931],[-73.26973269732697,64.59708051234253],[-73.27693276932769,64.60383482142205],[-73.27693276932769,64.6089005532317],[-73.27333273332734,64.61396628504136],[-73.27693276932769,64.62409774866063],[-73.28413284132841,64.64098352135946],[-73.28773287732876,64.64773783043901],[-73.29493294932949,64.65280356224864],[-73.29853298532984,64.66293502586794],[-73.3021330213302,64.66631218040772],[-73.30933309333093,64.66631218040772],[-73.31293312933128,64.66293502586794],[-73.31653316533165,64.65955787132819],[-73.32013320133201,64.65786929405829],[-73.33093330933309,64.65618071678841],[-73.3381333813338,64.65111498497876],[-73.34533345333453,64.64436067589924],[-73.35253352533525,64.63760636681971],[-73.33093330933309,64.61903201685101],[-73.30933309333093,64.59370335780275],[-73.3021330213302,64.56499754421475],[-73.31293312933128,64.53798030789662],[-73.33093330933309,64.53122599881709],[-73.42453424534244,64.51771738065804],[-73.44613446134461,64.51096307157852],[-73.4641346413464,64.50758591703874],[-73.48213482134821,64.51434022611826],[-73.46773467734677,64.52953742154722],[-73.46773467734677,64.54642319424605],[-73.47493474934748,64.5599318124051],[-73.48933489334892,64.5700632760244],[-73.48933489334892,64.57512900783405],[-73.47493474934748,64.57512900783405],[-73.46053460534606,64.57175185329427],[-73.44973449734496,64.56668612148462],[-73.4209342093421,64.5514889260557],[-73.41373413734136,64.55317750332557],[-73.40293402934029,64.55824323513522],[-73.39573395733957,64.56162038967497],[-73.39573395733957,64.56499754421475],[-73.44253442534425,64.58188331691358],[-73.45333453334533,64.59201478053288],[-73.45333453334533,64.5987690896124],[-73.44613446134461,64.60214624415218],[-73.4281342813428,64.60383482142205],[-73.44973449734496,64.61565486231123],[-73.47493474934748,64.61396628504136],[-73.51453514535145,64.59708051234253],[-73.53613536135362,64.59201478053288],[-73.56493564935649,64.59201478053288],[-73.58293582935829,64.59708051234253],[-73.57933579335793,64.61058913050158],[-73.58653586535866,64.62578632593053],[-73.60453604536045,64.64267209862936],[-73.62253622536225,64.65955787132819],[-73.64773647736477,64.66631218040772],[-73.66933669336693,64.66462360313784],[-73.6729367293673,64.65618071678841],[-73.66573665736657,64.64436067589924],[-73.65853658536585,64.62747490320041],[-73.66213662136622,64.61396628504136],[-73.66933669336693,64.60383482142205],[-73.68013680136801,64.59370335780275],[-73.68733687336874,64.58188331691358],[-73.66573665736657,64.5801947396437],[-73.64773647736477,64.57512900783405],[-73.66573665736657,64.56330896694487],[-73.74853748537485,64.55655465786535],[-73.74853748537485,64.55317750332557],[-73.74853748537485,64.54811177151592],[-73.74853748537485,64.54304603970627],[-73.7521375213752,64.5413574624364],[-73.75933759337593,64.54304603970627],[-73.77373773737737,64.54811177151592],[-73.78093780937809,64.54811177151592],[-73.79173791737917,64.5514889260557],[-73.80973809738097,64.56668612148462],[-73.83853838538386,64.57512900783405],[-73.87093870938709,64.60383482142205],[-73.89253892538925,64.61058913050158],[-73.92133921339213,64.6089005532317],[-73.93213932139321,64.60383482142205],[-73.93573935739357,64.59032620326298],[-73.9249392493925,64.58357189418345],[-73.88533885338853,64.57512900783405],[-73.89253892538925,64.55486608059545],[-73.8781387813878,64.5413574624364],[-73.86013860138601,64.53122599881709],[-73.85293852938528,64.51771738065804],[-73.84573845738457,64.50420876249896],[-73.82773827738276,64.49914303068931],[-73.80973809738097,64.49745445341944],[-73.79533795337953,64.49238872160979],[-73.80253802538024,64.50083160795921],[-73.79533795337953,64.49576587614956],[-73.79173791737917,64.49238872160979],[-73.78813788137882,64.48732298980013],[-73.78453784537845,64.48056868072061],[-73.79533795337953,64.47212579437121],[-73.80613806138061,64.46706006256156],[-73.81693816938169,64.46874863983143],[-73.8421384213842,64.48732298980013],[-73.85653856538565,64.49576587614956],[-73.87453874538745,64.49914303068931],[-73.88533885338853,64.49238872160979],[-73.88173881738817,64.48563441253026],[-73.87453874538745,64.47381437164108],[-73.87453874538745,64.46368290802178],[-73.89613896138961,64.46030575348203],[-73.91413914139142,64.4619943307519],[-73.94293942939429,64.47719152618086],[-73.96093960939609,64.48056868072061],[-73.95733957339573,64.45692859894226],[-73.96453964539646,64.4417314035133],[-73.9681396813968,64.42822278535425],[-73.93933939339394,64.41133701265542],[-73.95013950139501,64.4045827035759],[-73.96453964539646,64.39782839449637],[-73.98973989739898,64.39107408541682],[-73.98973989739898,64.38431977633729],[-73.98973989739898,64.3758768899879],[-73.98973989739898,64.35730254001919],[-73.98973989739898,64.34041676732036],[-73.99693996939969,64.32859672643116],[-74.0149401494015,64.32690814916128],[-74.03654036540365,64.33535103551071],[-74.05814058140581,64.34041676732036],[-74.07614076140761,64.32859672643116],[-74.07254072540725,64.33703961278059],[-74.08334083340833,64.33366245824081],[-74.10134101341013,64.33535103551071],[-74.11574115741158,64.34041676732036],[-74.11214112141121,64.35054823093964],[-74.130141301413,64.35561396274929],[-74.14814148141481,64.35561396274929],[-74.16254162541625,64.35899111728907],[-74.17334173341733,64.37081115817824],[-74.13374133741337,64.36912258090837],[-74.11574115741158,64.37081115817824],[-74.09774097740977,64.37756546725777],[-74.10494104941048,64.38431977633729],[-74.10854108541085,64.39276266268672],[-74.11214112141121,64.4045827035759],[-74.07974079740796,64.41977989900482],[-74.10134101341013,64.43666567170365],[-74.14814148141481,64.4518628671326],[-74.17334173341733,64.46537148529168],[-74.0941409414094,64.46030575348203],[-74.07254072540725,64.44004282624343],[-74.05454054540544,64.43497709443378],[-74.04374043740437,64.44679713532295],[-74.0509405094051,64.46874863983143],[-74.12654126541265,64.5413574624364],[-74.08334083340833,64.53629173062674],[-74.00054000540005,64.51602880338814],[-73.95373953739536,64.51434022611826],[-73.95373953739536,64.52109453519779],[-73.97533975339753,64.53460315335687],[-73.99693996939969,64.54304603970627],[-74.09054090540906,64.56837469875452],[-74.10134101341013,64.5700632760244],[-74.15174151741518,64.56499754421475],[-74.16614166141662,64.5700632760244],[-74.16614166141662,64.57512900783405],[-74.130141301413,64.59032620326298],[-74.0041400414004,64.58188331691358],[-74.01854018540185,64.60045766688228],[-74.07254072540725,64.62072059412088],[-74.08334083340833,64.64098352135946],[-74.07974079740796,64.64773783043901],[-74.06894068940689,64.66800075767759],[-74.06174061740617,64.69164083945594],[-74.05454054540544,64.7152809212343],[-74.0509405094051,64.7254123848536],[-74.06534065340654,64.73723242574277],[-74.08334083340833,64.74905246663195],[-74.10134101341013,64.75242962117173],[-74.11934119341193,64.74736388936208],[-74.12654126541265,64.73216669393312],[-74.10854108541085,64.70514945761502],[-74.11934119341193,64.68488653037642],[-74.130141301413,64.68150937583667],[-74.15174151741518,64.68657510764629],[-74.16614166141662,64.68488653037642],[-74.18774187741877,64.66800075767759],[-74.20214202142022,64.66462360313784],[-74.21654216542166,64.67813222129689],[-74.22734227342274,64.66800075767759],[-74.23094230942309,64.65618071678841],[-74.23094230942309,64.64436067589924],[-74.2129421294213,64.61903201685101],[-74.21654216542166,64.6089005532317],[-74.24174241742418,64.58188331691358],[-74.27774277742778,64.6072119759618],[-74.29214292142922,64.62240917139076],[-74.29214292142922,64.63422921227993],[-74.27054270542705,64.64436067589924],[-74.26334263342633,64.65111498497876],[-74.2669426694267,64.66124644859806],[-74.27414274142741,64.66968933494746],[-74.28854288542885,64.67644364402702],[-74.29934299342993,64.68319795310654],[-74.31014310143101,64.68488653037642],[-74.32454324543245,64.67813222129689],[-74.32454324543245,64.64267209862936],[-74.3389433894339,64.63085205774019],[-74.36054360543605,64.63422921227993],[-74.40014400144001,64.65955787132819],[-74.42174421744217,64.66631218040772],[-74.40734407344073,64.64773783043901],[-74.38934389343893,64.62747490320041],[-74.36414364143641,64.6089005532317],[-74.34614346143461,64.59708051234253],[-74.36774367743676,64.57681758510392],[-74.39294392943928,64.57681758510392],[-74.4181441814418,64.59032620326298],[-74.43614436144361,64.61058913050158],[-74.42174421744217,64.61396628504136],[-74.41454414544145,64.62072059412088],[-74.41454414544145,64.62747490320041],[-74.4289442894429,64.63085205774019],[-74.44334443344432,64.62916348047028],[-74.47574475744757,64.61903201685101],[-74.49734497344973,64.6173434395811],[-74.52614526145261,64.62072059412088],[-74.54054540545405,64.62578632593053],[-74.55134551345513,64.63085205774019],[-74.5549455494555,64.63760636681971],[-74.55854558545585,64.65786929405829],[-74.56574565745657,64.66631218040772],[-74.58014580145802,64.67306648948724],[-74.62694626946269,64.68488653037642],[-74.64134641346413,64.6967065712656],[-74.65934659346593,64.70852661215477],[-74.70974709747097,64.74060958028255],[-74.69534695346952,64.74736388936208],[-74.68814688146881,64.75242962117173],[-74.68814688146881,64.75749535298138],[-74.68454684546845,64.76256108479103],[-74.67734677346773,64.76256108479103],[-74.66654666546665,64.76087250752113],[-74.65934659346593,64.76087250752113],[-74.65214652146521,64.77100397114043],[-74.64854648546485,64.78113543475973],[-74.64134641346413,64.79126689837904],[-74.60534605346054,64.80308693926821],[-74.56934569345692,64.84192421647552],[-74.5549455494555,64.84867852555504],[-74.51174511745117,64.83685848466587],[-74.48654486544865,64.83685848466587],[-74.48294482944829,64.85036710282492],[-74.50094500945009,64.8621871437141],[-74.56214562145621,64.863875720984],[-74.57654576545765,64.87738433914305],[-74.56574565745657,64.88076149368283],[-74.55854558545585,64.88413864822257],[-74.54774547745477,64.88920438003223],[-74.5441454414544,64.89933584365153],[-74.56934569345692,64.89764726638165],[-74.64494644946448,64.90440157546118],[-74.65934659346593,64.89933584365153],[-74.65574655746558,64.88920438003223],[-74.64494644946448,64.87738433914305],[-74.64134641346413,64.863875720984],[-74.66294662946629,64.86894145279362],[-74.72414724147241,64.863875720984],[-74.74214742147421,64.85712141190444],[-74.73854738547385,64.84530137101527],[-74.72054720547204,64.82334986650679],[-74.70974709747097,64.80308693926821],[-74.70974709747097,64.79126689837904],[-74.7169471694717,64.77775828021996],[-74.73134731347314,64.77269254841033],[-74.74574745747456,64.77606970295008],[-74.79254792547925,64.80139836199834],[-74.8069480694807,64.80646409380799],[-74.82134821348212,64.80984124834774],[-74.82494824948249,64.80477551653809],[-74.82854828548285,64.79633263018869],[-74.83934839348393,64.78620116656938],[-74.85374853748537,64.78113543475973],[-74.86814868148682,64.78282401202961],[-74.90414904149041,64.79802120745856],[-74.9221492214922,64.80308693926821],[-74.97254972549725,64.80477551653809],[-74.99054990549905,64.80308693926821],[-74.96534965349653,64.77438112568021],[-74.92574925749257,64.76593823933078],[-74.88254882548826,64.76256108479103],[-74.85014850148501,64.75074104390185],[-74.8429484294843,64.74398673482233],[-74.8429484294843,64.73216669393312],[-74.83934839348393,64.7254123848536],[-74.83214832148322,64.72034665304395],[-74.82134821348212,64.71359234396442],[-74.81414814148141,64.71021518942467],[-74.7961479614796,64.70008372580537],[-74.74934749347493,64.69501799399572],[-74.72774727747277,64.6882636849162],[-74.5909459094591,64.63085205774019],[-74.46854468544684,64.56162038967497],[-74.50454504545046,64.54642319424605],[-74.52254522545225,64.5413574624364],[-74.5441454414544,64.5413574624364],[-74.59814598145981,64.5498003487858],[-74.62694626946269,64.54811177151592],[-74.64494644946448,64.53460315335687],[-74.58374583745837,64.53291457608697],[-74.5549455494555,64.52447168973757],[-74.53694536945369,64.50758591703874],[-74.55854558545585,64.50083160795921],[-74.57294572945729,64.50758591703874],[-74.58734587345873,64.51602880338814],[-74.60534605346054,64.52109453519779],[-74.61974619746196,64.51602880338814],[-74.61614616146161,64.50589733976886],[-74.60894608946089,64.49407729887969],[-74.59814598145981,64.48732298980013],[-74.57654576545765,64.47888010345073],[-74.53334533345333,64.47550294891096],[-74.51174511745117,64.46874863983143],[-74.50454504545046,64.4619943307519],[-74.52254522545225,64.45692859894226],[-74.53694536945369,64.44848571259286],[-74.53694536945369,64.43159993989403],[-74.55854558545585,64.42822278535425],[-74.5909459094591,64.42991136262413],[-74.61254612546125,64.42653420808438],[-74.61254612546125,64.41133701265542],[-74.65934659346593,64.4045827035759],[-74.68454684546845,64.39782839449637],[-74.6809468094681,64.38431977633729],[-74.6809468094681,64.37756546725777],[-74.71334713347133,64.38263119906742],[-74.75654756547566,64.40120554903612],[-74.79254792547925,64.4045827035759],[-74.78894788947889,64.39951697176625],[-74.78534785347853,64.38938550814694],[-74.78174781747818,64.38431977633729],[-74.81414814148141,64.3860083536072],[-74.85014850148501,64.39613981722647],[-74.8861488614886,64.41133701265542],[-74.91134911349113,64.42822278535425],[-74.92574925749257,64.43497709443378],[-74.94374943749438,64.42991136262413],[-74.95814958149582,64.4231570535446],[-74.97254972549725,64.41809132173495],[-74.99054990549905,64.4231570535446],[-75.01935019350194,64.4417314035133],[-75.11295112951129,64.46537148529168],[-75.14175141751417,64.48563441253026],[-75.15615156151561,64.49407729887969],[-75.1741517415174,64.49238872160979],[-75.18855188551885,64.48225725799048],[-75.18135181351813,64.47550294891096],[-75.16335163351633,64.4704372171013],[-75.15255152551525,64.46537148529168],[-75.14895148951489,64.4518628671326],[-75.15975159751598,64.44848571259286],[-75.17775177751777,64.45017428986273],[-75.19575195751958,64.44679713532295],[-75.18855188551885,64.43835424897355],[-75.19935199351993,64.4332885171639],[-75.21015210152102,64.43159993989403],[-75.2209522095221,64.4332885171639],[-75.22815228152281,64.43835424897355],[-75.23895238952389,64.45524002167238],[-75.24255242552425,64.46030575348203],[-75.24975249752497,64.4619943307519],[-75.26415264152641,64.46368290802178],[-75.3109531095311,64.48056868072061],[-75.32535325353253,64.48732298980013],[-75.35775357753577,64.51096307157852],[-75.36855368553685,64.51434022611826],[-75.40095400954009,64.51940595792792],[-75.45495454954549,64.53798030789662],[-75.48735487354872,64.5413574624364],[-75.54135541355413,64.5413574624364],[-75.56655566555665,64.5514889260557],[-75.57015570155701,64.57512900783405],[-75.61695616956169,64.56668612148462],[-75.66375663756637,64.56837469875452],[-75.70695706957069,64.5785061623738],[-75.79335793357933,64.6173434395811],[-75.81855818558185,64.62240917139076],[-75.84375843758437,64.61396628504136],[-75.840158401584,64.60214624415218],[-75.82215822158221,64.5886376259931],[-75.80055800558006,64.5801947396437],[-75.78255782557825,64.57512900783405],[-75.78255782557825,64.5700632760244],[-75.81495814958149,64.5700632760244],[-75.82575825758258,64.56837469875452],[-75.840158401584,64.56162038967497],[-75.82935829358293,64.5599318124051],[-75.82575825758258,64.55317750332557],[-75.82215822158221,64.54304603970627],[-75.81495814958149,64.53122599881709],[-75.80055800558006,64.52447168973757],[-75.77895778957789,64.51940595792792],[-75.73935739357393,64.51434022611826],[-75.69615696156961,64.48732298980013],[-75.66015660156602,64.47719152618086],[-75.64575645756457,64.4704372171013],[-75.6349563495635,64.46030575348203],[-75.63855638556385,64.45524002167238],[-75.64575645756457,64.4518628671326],[-75.65295652956529,64.4518628671326],[-75.66015660156602,64.4518628671326],[-75.65295652956529,64.4518628671326],[-75.67815678156781,64.45524002167238],[-75.72135721357213,64.47212579437121],[-75.74295742957429,64.46537148529168],[-75.72135721357213,64.45524002167238],[-75.69615696156961,64.44679713532295],[-75.71055710557106,64.4417314035133],[-75.7249572495725,64.44510855805308],[-75.75015750157502,64.46030575348203],[-75.86535865358653,64.48901156707004],[-75.89415894158941,64.49238872160979],[-75.9229592295923,64.48732298980013],[-75.91215912159122,64.48225725799048],[-75.89775897758977,64.48225725799048],[-75.8869588695887,64.48056868072061],[-75.85815858158581,64.46706006256156],[-75.8509585095851,64.46537148529168],[-75.840158401584,64.4619943307519],[-75.81135811358114,64.44510855805308],[-75.7969579695797,64.43835424897355],[-75.80415804158041,64.43497709443378],[-75.81135811358114,64.4332885171639],[-75.81855818558185,64.43159993989403],[-75.82575825758258,64.43159993989403],[-75.81855818558185,64.43159993989403],[-75.80775807758077,64.42146847627473],[-75.7141571415714,64.38431977633729],[-75.73575735757358,64.37249973544812],[-75.77175771757717,64.37418831271799],[-75.83295832958329,64.38431977633729],[-75.83655836558366,64.37925404452764],[-75.840158401584,64.37249973544812],[-75.84735847358473,64.36743400363846],[-75.86175861758618,64.37756546725777],[-75.90495904959049,64.38769693087707],[-75.91935919359193,64.38938550814694],[-75.93375933759337,64.3860083536072],[-75.94815948159481,64.37756546725777],[-75.95175951759518,64.40795985811565],[-75.9769597695977,64.40627128084577],[-76.02736027360274,64.38431977633729],[-76.04536045360453,64.37925404452764],[-76.05616056160561,64.37249973544812],[-76.07056070560705,64.36574542636859],[-76.0921609216092,64.37081115817824],[-76.09936099360993,64.37756546725777],[-76.1029610296103,64.3860083536072],[-76.11016110161101,64.39107408541682],[-76.12816128161282,64.39107408541682],[-76.12096120961209,64.39107408541682],[-76.1749617496175,64.37756546725777],[-76.16416164161642,64.37756546725777],[-76.15696156961569,64.3758768899879],[-76.14976149761497,64.37418831271799],[-76.14256142561425,64.37081115817824],[-76.16776167761677,64.35561396274929],[-76.23256232562325,64.36912258090837],[-76.28656286562865,64.35054823093964],[-76.35136351363514,64.36236827182881],[-76.38016380163802,64.35730254001919],[-76.3549635496355,64.34717107639989],[-76.32256322563225,64.32184241735163],[-76.29736297362973,64.3150881082721],[-76.23616236162361,64.32184241735163],[-76.20736207362073,64.31846526281188],[-76.18936189361894,64.30157949011306],[-76.31896318963189,64.28131656287445],[-76.35136351363514,64.29144802649375],[-76.38016380163802,64.30833379919258],[-76.41976419764197,64.32015384008176],[-76.4629646296463,64.32353099462154],[-76.48816488164881,64.3150881082721],[-76.47376473764737,64.31002237646246],[-76.44496444964449,64.31002237646246],[-76.4269642696427,64.30833379919258],[-76.41616416164162,64.30326806738293],[-76.39456394563945,64.29144802649375],[-76.38016380163802,64.28807087195398],[-76.40536405364054,64.27456225379493],[-76.45576455764558,64.26949652198527],[-76.49536495364953,64.2779394083347],[-76.50256502565026,64.30157949011306],[-76.55656556565565,64.30833379919258],[-76.56736567365674,64.30157949011306],[-76.57456574565745,64.29989091284315],[-76.58176581765817,64.30833379919258],[-76.58536585365853,64.31171095373233],[-76.59256592565926,64.31339953100223],[-76.59616596165961,64.3150881082721],[-76.60696606966069,64.31171095373233],[-76.62856628566286,64.28807087195398],[-76.63936639366393,64.28300514014433],[-76.68976689766897,64.28131656287445],[-76.68256682566825,64.29144802649375],[-76.68256682566825,64.29482518103353],[-76.71136711367113,64.3049566446528],[-76.72936729367294,64.2965137583034],[-76.72936729367294,64.2762508310648],[-76.7149671496715,64.25429932655632],[-76.71856718567186,64.24079070839727],[-76.70776707767077,64.23234782204787],[-76.68976689766897,64.2289706675081],[-76.67176671766717,64.22728209023822],[-76.65736657366573,64.22052778115867],[-76.65736657366573,64.20870774026949],[-76.66816668166682,64.19688769938031],[-76.68976689766897,64.19182196757066],[-76.70776707767077,64.19351054484056],[-76.74376743767438,64.20364200845984],[-76.76536765367653,64.20533058572974],[-76.84816848168481,64.20533058572974],[-76.83016830168302,64.21377347207914],[-76.81216812168121,64.21883920388879],[-76.82296822968229,64.22559351296832],[-76.82656826568265,64.22559351296832],[-76.83376833768337,64.22728209023822],[-76.82656826568265,64.23403639931774],[-76.86256862568625,64.23572497658762],[-76.89856898568985,64.24416786293705],[-76.96336963369633,64.27456225379493],[-76.98136981369814,64.2576764810961],[-77.01737017370174,64.25936505836597],[-77.08577085770857,64.28131656287445],[-77.11457114571145,64.2965137583034],[-77.13257132571326,64.30157949011306],[-77.13977139771397,64.29144802649375],[-77.15057150571505,64.28469371741423],[-77.22257222572226,64.27456225379493],[-77.35217352173521,64.24079070839727],[-77.3809738097381,64.2475450174768],[-77.3809738097381,64.25429932655632],[-77.36657366573665,64.2762508310648],[-77.37017370173702,64.28131656287445],[-77.37737377373773,64.28300514014433],[-77.39177391773917,64.29313660376363],[-77.40257402574025,64.29482518103353],[-77.41337413374133,64.29482518103353],[-77.42417424174242,64.29144802649375],[-77.4349743497435,64.28975944922388],[-77.44937449374494,64.29482518103353],[-77.43137431374313,64.30157949011306],[-77.39537395373954,64.30664522192271],[-77.3809738097381,64.3150881082721],[-77.40617406174061,64.32690814916128],[-77.41337413374133,64.32859672643116],[-77.42057420574206,64.32690814916128],[-77.42777427774277,64.32184241735163],[-77.4349743497435,64.3150881082721],[-77.54657546575466,64.3150881082721],[-77.54657546575466,64.32184241735163],[-77.51777517775177,64.33366245824081],[-77.49257492574925,64.35054823093964],[-77.51057510575106,64.35730254001919],[-77.55737557375573,64.35730254001919],[-77.64017640176401,64.38769693087707],[-77.65457654576545,64.39107408541682],[-77.66177661776618,64.37756546725777],[-77.65097650976509,64.35392538547941],[-77.64737647376474,64.33197388097093],[-77.67977679776797,64.32184241735163],[-77.68337683376834,64.32521957189141],[-77.69057690576905,64.33535103551071],[-77.69417694176941,64.33703961278059],[-77.7229772297723,64.34379392186011],[-77.73377733777338,64.34210534459024],[-77.74097740977409,64.34210534459024],[-77.74817748177482,64.34041676732036],[-77.7589775897759,64.34379392186011],[-77.76257762577626,64.34717107639989],[-77.76977769777697,64.36067969455894],[-77.77337773377734,64.36405684909872],[-77.85257852578525,64.37081115817824],[-77.87057870578705,64.37756546725777],[-77.91017910179102,64.4045827035759],[-77.89577895778957,64.40795985811565],[-77.87057870578705,64.4045827035759],[-77.85977859778598,64.4045827035759],[-77.85257852578525,64.40795985811565],[-77.83817838178382,64.4147141671952],[-77.83097830978309,64.42146847627473],[-77.83817838178382,64.42484563081447],[-77.88137881378813,64.42484563081447],[-77.92817928179281,64.41809132173495],[-77.95337953379533,64.41133701265542],[-77.96417964179642,64.41133701265542],[-77.97137971379713,64.4147141671952],[-77.98937989379894,64.4231570535446],[-78.00018000180002,64.42484563081447],[-78.0109801098011,64.42822278535425],[-78.01818018180181,64.43497709443378],[-78.01818018180181,64.4434199807832],[-78.0109801098011,64.44679713532295],[-78.00378003780037,64.44679713532295],[-77.97137971379713,64.46030575348203],[-77.97137971379713,64.46537148529168],[-78.0469804698047,64.49576587614956],[-78.07578075780758,64.51771738065804],[-78.0649806498065,64.53460315335687],[-78.0649806498065,64.5413574624364],[-78.08658086580866,64.5498003487858],[-78.14418144181441,64.55655465786535],[-78.16938169381693,64.5700632760244],[-78.1729817298173,64.57175185329427],[-78.18378183781837,64.5801947396437],[-78.18378183781837,64.58694904872323],[-78.1729817298173,64.59032620326298],[-78.12978129781297,64.59032620326298],[-78.12978129781297,64.59708051234253],[-78.14778147781477,64.60214624415218],[-78.16218162181622,64.6089005532317],[-78.16938169381693,64.62072059412088],[-78.16218162181622,64.63760636681971],[-78.16938169381693,64.64604925316911],[-78.17658176581766,64.64942640770889],[-78.18738187381874,64.65280356224864],[-78.19818198181981,64.65111498497876],[-78.1909819098191,64.67137791221737],[-78.18378183781837,64.68150937583667],[-78.15498154981549,64.70008372580537],[-78.18738187381874,64.70852661215477],[-78.2989829898299,64.7068380348849],[-78.27018270182701,64.7152809212343],[-78.18378183781837,64.7254123848536],[-78.18738187381874,64.72878953939338],[-78.1909819098191,64.73047811666325],[-78.18738187381874,64.73216669393312],[-78.18378183781837,64.73385527120303],[-78.18738187381874,64.75242962117173],[-78.1729817298173,64.76762681660068],[-78.15138151381514,64.77775828021996],[-78.12978129781297,64.78113543475973],[-78.12258122581225,64.78451258929951],[-78.11538115381154,64.79126689837904],[-78.11538115381154,64.79970978472844],[-78.11898118981189,64.80308693926821],[-78.12258122581225,64.80477551653809],[-78.11898118981189,64.80984124834774],[-78.11538115381154,64.81321840288751],[-78.10818108181081,64.81659555742726],[-78.07218072180721,64.81659555742726],[-78.07578075780758,64.82841559831644],[-78.07218072180721,64.83854706193574],[-78.0649806498065,64.85036710282492],[-78.07218072180721,64.85880998917435],[-78.08658086580866,64.86894145279362],[-78.1009810098101,64.87400718460327],[-78.11898118981189,64.87738433914305],[-78.12618126181262,64.88582722549245],[-78.13338133381333,64.90440157546118],[-78.14418144181441,64.94661600720823],[-78.14418144181441,64.95168173901789],[-78.14418144181441,64.95674747082754],[-78.13338133381333,64.96687893444684],[-78.11898118981189,64.97363324352636],[-78.09018090180902,64.98207612987576],[-78.06858068580685,64.99558474803484],[-78.0469804698047,65.00402763438424],[-78.02178021780217,65.01753625254332],[-77.98937989379894,65.02260198435297],[-77.97857978579785,65.0276677161626],[-77.9749797497975,65.03104487070237],[-77.9749797497975,65.0377991797819],[-77.9749797497975,65.04455348886142],[-77.97137971379713,65.04961922067108],[-77.96417964179642,65.05130779794098],[-77.89217892178921,65.0681935706398],[-77.87777877778777,65.06988214790968],[-77.81657816578165,65.09183365241816],[-77.7589775897759,65.09689938422781],[-77.70497704977049,65.11040800238686],[-77.6761767617676,65.12053946600616],[-77.65817658176582,65.13404808416522],[-77.62937629376293,65.14924527959417],[-77.59337593375933,65.15093385686404],[-77.51777517775177,65.14417954778452],[-77.48537485374854,65.14755670232427],[-77.43137431374313,65.16275389775322],[-77.37737377373773,65.16781962956287],[-77.35217352173521,65.1762625159123],[-77.33057330573305,65.18639397953157],[-77.31257312573125,65.19990259769065],[-77.3809738097381,65.24718276124736],[-77.43857438574385,65.27419999756549],[-77.46737467374673,65.29615150207397],[-77.49977499774998,65.31472585204267],[-77.51417514175141,65.32654589293185],[-77.5069750697507,65.33667735655115],[-77.4709747097471,65.37551463375846],[-77.45657456574565,65.38564609737773],[-77.31257312573125,65.36200601559938],[-77.29097290972909,65.38058036556808],[-77.31257312573125,65.3974661382669],[-77.40617406174061,65.43799199274412],[-77.4349743497435,65.45994349725257],[-77.39177391773917,65.47345211541165],[-77.23697236972369,65.47345211541165],[-77.24417244172442,65.47007496087187],[-77.25137251372513,65.468386383602],[-77.26217262172621,65.46669780633212],[-77.2729727297273,65.46669780633212],[-77.2729727297273,65.45994349725257],[-77.19377193771938,65.45487776544294],[-77.12177121771218,65.43968057001399],[-77.11817118171182,65.42448337458504],[-77.08937089370893,65.41604048823564],[-76.9669696696967,65.41097475642599],[-76.95616956169562,65.41604048823564],[-76.94896948969489,65.42786052912481],[-76.9309693096931,65.43292626093447],[-76.83016830168302,65.43123768366456],[-76.81216812168121,65.42617195185491],[-76.77976779767798,65.40759760188621],[-76.7689676896769,65.40590902461634],[-76.67536675366753,65.41097475642599],[-76.39816398163981,65.3501859747102],[-76.12096120961209,65.28770861572454],[-76.09576095760957,65.28602003845467],[-76.04176041760417,65.28602003845467],[-76.01656016560165,65.28264288391489],[-75.99135991359913,65.26406853394619],[-75.98415984159841,65.26069137940641],[-75.93375933759337,65.26069137940641],[-75.91215912159122,65.25731422486666],[-75.86895868958689,65.24380560670758],[-75.82215822158221,65.23873987489796],[-75.7969579695797,65.2319855658184],[-75.77535775357754,65.223542679469],[-75.75735757357573,65.2134112158497],[-75.7609576095761,65.20834548404005],[-75.77175771757717,65.19314828861113],[-75.75375753757537,65.18808255680148],[-75.74655746557465,65.1762625159123],[-75.74295742957429,65.1644424750231],[-75.73935739357393,65.15937674321347],[-75.65295652956529,65.14417954778452],[-75.5989559895599,65.12560519781582],[-75.56295562955628,65.12222804327604],[-75.52335523355234,65.11040800238686],[-75.45135451354513,65.07832503425908],[-75.44055440554405,65.0665049933699],[-75.43335433354333,65.0479306434012],[-75.41895418954189,65.03104487070237],[-75.41535415354153,65.01584767527342],[-75.44055440554405,65.00740478892402],[-75.43335433354333,65.0006504798445],[-75.41535415354153,64.98038755260589],[-75.4261542615426,64.97194466625649],[-75.44055440554405,64.96519035717694],[-75.45495454954549,64.96181320263719],[-75.48375483754837,64.95674747082754],[-75.50175501755017,64.94492742993836],[-75.51615516155161,64.93986169812871],[-75.55575555755557,64.93986169812871],[-75.63135631356313,64.95337031628776],[-75.66735667356673,64.94492742993836],[-75.65295652956529,64.93648454358893],[-75.63855638556385,64.92804165723953],[-75.60615606156061,64.91791019362023],[-75.61335613356133,64.91791019362023],[-75.60615606156061,64.90777873000093],[-75.60255602556025,64.8824500709527],[-75.5989559895599,64.87063003006352],[-75.58095580955809,64.85712141190444],[-75.55935559355594,64.8537442573647],[-75.49095490954909,64.85712141190444],[-75.48015480154801,64.8537442573647],[-75.46935469354693,64.85036710282492],[-75.45855458554585,64.8436127937454],[-75.45855458554585,64.84023563920562],[-75.4621546215462,64.83685848466587],[-75.4621546215462,64.82672702104657],[-75.46935469354693,64.81321840288751],[-75.48375483754837,64.80815267107786],[-75.52335523355234,64.80984124834774],[-75.52335523355234,64.80477551653809],[-75.52335523355234,64.80308693926821],[-75.51975519755197,64.80308693926821],[-75.51615516155161,64.80308693926821],[-75.52695526955269,64.79802120745856],[-75.53415534155342,64.79464405291878],[-75.53775537755376,64.78788974383926],[-75.53055530555305,64.78788974383926],[-75.53775537755376,64.78113543475973],[-75.5089550895509,64.77606970295008],[-75.48015480154801,64.77606970295008],[-75.45135451354513,64.77100397114043],[-75.4261542615426,64.7541181984416],[-75.43335433354333,64.7541181984416],[-75.43335433354333,64.74736388936208],[-75.41895418954189,64.74736388936208],[-75.40095400954009,64.74229815755243],[-75.39375393753937,64.73385527120303],[-75.40815408154081,64.7254123848536],[-75.37935379353793,64.72203523031385],[-75.33255332553325,64.72372380758372],[-75.29655296552966,64.73385527120303],[-75.29295292952929,64.75074104390185],[-75.30735307353073,64.75918393025125],[-75.33615336153362,64.77269254841033],[-75.3469534695347,64.78113543475973],[-75.35415354153541,64.79295547564891],[-75.35775357753577,64.80477551653809],[-75.35775357753577,64.82334986650679],[-75.35415354153541,64.83010417558634],[-75.36855368553685,64.835169907396],[-75.37215372153722,64.835169907396],[-75.36855368553685,64.85205568009482],[-75.36135361353614,64.86556429825387],[-75.35055350553505,64.87738433914305],[-75.33975339753397,64.88413864822257],[-75.35055350553505,64.892581534572],[-75.35775357753577,64.9010244209214],[-75.35415354153541,64.91284446181058],[-75.3469534695347,64.92466450269976],[-75.36855368553685,64.92466450269976],[-75.38655386553866,64.9195987708901],[-75.44415444154441,64.8824500709527],[-75.45855458554585,64.87738433914305],[-75.46935469354693,64.87738433914305],[-75.49455494554945,64.8824500709527],[-75.5089550895509,64.88413864822257],[-75.54135541355413,64.87907291641292],[-75.55575555755557,64.87907291641292],[-75.57015570155701,64.88413864822257],[-75.54855548555486,64.89427011184188],[-75.48375483754837,64.90440157546118],[-75.48375483754837,64.91791019362023],[-75.46935469354693,64.93817312085883],[-75.44415444154441,64.95168173901789],[-75.41535415354153,64.95843604809741],[-75.38655386553866,64.96012462536731],[-75.39375393753937,64.98207612987576],[-75.37215372153722,64.98545328441554],[-75.32175321753218,64.97363324352636],[-75.28215282152821,64.95843604809741],[-75.26415264152641,64.95674747082754],[-75.27135271352714,64.97363324352636],[-75.28215282152821,64.98207612987576],[-75.29295292952929,64.99051901622519],[-75.28935289352893,65.0006504798445],[-75.27495274952749,65.0090933661939],[-75.26055260552606,65.0090933661939],[-75.24615246152462,65.01415909800355],[-75.24255242552425,65.0377991797819],[-75.23535235352354,65.0563735297506],[-75.21735217352173,65.06312783883016],[-75.20295202952029,65.0665049933699],[-75.19575195751958,65.07325930244943],[-75.19575195751958,65.09521080695791],[-75.19935199351993,65.10534227057721],[-75.21375213752137,65.11040800238686],[-75.25335253352533,65.10871942511699],[-75.26055260552606,65.09858796149769],[-75.26415264152641,65.08339076606873],[-75.26415264152641,65.0665049933699],[-75.27135271352714,65.04961922067108],[-75.28575285752858,65.03442202524215],[-75.30735307353073,65.02597913889272],[-75.33975339753397,65.01753625254332],[-75.35055350553505,65.01078194346377],[-75.36135361353614,65.00740478892402],[-75.37935379353793,65.01415909800355],[-75.38655386553866,65.02260198435297],[-75.40095400954009,65.05299637521085],[-75.40815408154081,65.06312783883016],[-75.4369543695437,65.08676792060851],[-75.49815498154982,65.12560519781582],[-75.52695526955269,65.14755670232427],[-75.56295562955628,65.16950820683275],[-75.64575645756457,65.1847054022617],[-75.68175681756817,65.19990259769065],[-75.69255692556925,65.19145971134122],[-75.70695706957069,65.18808255680148],[-75.71775717757177,65.19145971134122],[-75.72855728557285,65.19990259769065],[-75.72135721357213,65.2032797522304],[-75.71775717757177,65.2049683295003],[-75.7141571415714,65.21003406130993],[-75.71055710557106,65.2134112158497],[-75.75015750157502,65.23705129762806],[-75.80055800558006,65.25055991578714],[-75.90855908559085,65.26069137940641],[-75.89775897758977,65.27082284302571],[-75.89775897758977,65.27926572937514],[-75.90855908559085,65.28602003845467],[-75.93375933759337,65.29108577026432],[-75.94095940959409,65.29952865661372],[-75.94095940959409,65.3113486975029],[-75.94815948159481,65.32316873839207],[-75.7141571415714,65.30797154296314],[-75.70335703357033,65.3113486975029],[-75.67815678156781,65.32316873839207],[-75.66375663756637,65.32485731566197],[-75.65655656556565,65.3316116247415],[-75.64575645756457,65.33836593382102],[-75.64215642156421,65.34343166563067],[-75.62055620556205,65.34343166563067],[-75.60255602556025,65.33498877928125],[-75.5989559895599,65.3214801611222],[-75.61335613356133,65.30797154296314],[-75.58455584555846,65.28602003845467],[-75.54855548555486,65.27757715210524],[-75.30375303753037,65.26744568848596],[-75.21375213752137,65.25393707032688],[-75.19215192151921,65.25562564759676],[-75.14895148951489,65.26575711121606],[-75.1309513095131,65.26744568848596],[-75.10575105751057,65.27926572937514],[-75.08415084150842,65.3029058111535],[-75.07335073350733,65.32823447020172],[-75.08415084150842,65.34343166563067],[-75.09855098550985,65.37720321102833],[-75.10575105751057,65.38902325191751],[-75.10935109351094,65.39408898372716],[-75.10575105751057,65.39577756099703],[-75.08415084150842,65.3974661382669],[-75.06615066150661,65.3974661382669],[-74.97974979749797,65.3788917882982],[-74.9689496894969,65.37720321102833],[-74.96174961749617,65.38058036556808],[-74.94734947349473,65.38902325191751],[-74.93654936549365,65.39240040645728],[-74.87174871748716,65.3974661382669],[-74.85374853748537,65.39577756099703],[-74.82134821348212,65.38733467464763],[-74.79974799747997,65.38564609737773],[-74.78534785347853,65.38733467464763],[-74.77094770947708,65.39071182918738],[-74.75654756547566,65.3974661382669],[-74.74934749347493,65.40928617915611],[-74.74574745747456,65.42617195185491],[-74.73494734947349,65.43292626093447],[-74.7169471694717,65.43968057001399],[-74.70974709747097,65.43292626093447],[-74.68454684546845,65.43292626093447],[-74.67374673746737,65.43123768366456],[-74.67374673746737,65.42617195185491],[-74.67374673746737,65.41941764277539],[-74.68454684546845,65.41604048823564],[-74.70974709747097,65.40590902461634],[-74.6809468094681,65.40084329280668],[-74.66654666546665,65.39577756099703],[-74.65934659346593,65.38564609737773],[-74.670146701467,65.38564609737773],[-74.6809468094681,65.38395752010786],[-74.68814688146881,65.38226894283798],[-74.69534695346952,65.37720321102833],[-74.66294662946629,65.3501859747102],[-74.60894608946089,65.33667735655115],[-74.55134551345513,65.33330020201137],[-74.50454504545046,65.34343166563067],[-74.43254432544325,65.38058036556808],[-74.41094410944109,65.39071182918738],[-74.36414364143641,65.40253187007656],[-74.34614346143461,65.41097475642599],[-74.32454324543245,65.45150061090317],[-74.30654306543065,65.47176353814177],[-74.28854288542885,65.48020642449117],[-74.1769417694177,65.4869607335707],[-74.15174151741518,65.49540361992013],[-74.17334173341733,65.5055350835394],[-74.18414184141841,65.51397796988883],[-74.18774187741877,65.52242085623823],[-74.18054180541804,65.52917516531778],[-74.14454144541445,65.52917516531778],[-74.13374133741337,65.53255231985753],[-74.11934119341193,65.53761805166718],[-74.10494104941048,65.53761805166718],[-74.07614076140761,65.5359294743973],[-74.0509405094051,65.5359294743973],[-74.04374043740437,65.5359294743973],[-74.04014040140402,65.53255231985753],[-74.02934029340292,65.52242085623823],[-73.98253982539825,65.5072236608093],[-73.95733957339573,65.5072236608093],[-73.91413914139142,65.53255231985753],[-73.88173881738817,65.5359294743973],[-73.77733777337772,65.52410943350813],[-73.73773737737378,65.5173551244286],[-73.74133741337413,65.51228939261895],[-73.74133741337413,65.49878077445987],[-73.73413734137341,65.4869607335707],[-73.7161371613716,65.47514069268152],[-73.69093690936909,65.46500922906222],[-73.6729367293673,65.45994349725257],[-73.64773647736477,65.46163207452247],[-73.59373593735937,65.4768292699514],[-73.57573575735756,65.47007496087187],[-73.55413554135541,65.45994349725257],[-73.52533525335252,65.45318918817304],[-73.49653496534965,65.45318918817304],[-73.47493474934748,65.45994349725257],[-73.50373503735037,65.48020642449117],[-73.49653496534965,65.48864931084057],[-73.49653496534965,65.49371504265022],[-73.50013500135,65.49878077445987],[-73.5109351093511,65.50046935172978],[-73.50373503735037,65.50046935172978],[-73.53613536135362,65.52917516531778],[-73.590135901359,65.58827536976366],[-73.63333633336333,65.61022687427214],[-73.63333633336333,65.61866976062154],[-73.62253622536225,65.62204691516132],[-73.61173611736118,65.62880122424085],[-73.60813608136081,65.63893268786015],[-73.61173611736118,65.65075272874932],[-73.6261362613626,65.6625727696385],[-73.64413644136441,65.66426134690838],[-73.66213662136622,65.6625727696385],[-73.68013680136801,65.66426134690838],[-73.68733687336874,65.66932707871803],[-73.69453694536945,65.67776996506745],[-73.70173701737016,65.68959000595663],[-73.70173701737016,65.69972146957593],[-73.69453694536945,65.71491866500486],[-73.68733687336874,65.71998439681451],[-73.65493654936549,65.71998439681451],[-73.66933669336693,65.73011586043381],[-73.68733687336874,65.73687016951334],[-73.70173701737016,65.74700163313264],[-73.70893708937089,65.76557598310134],[-73.7161371613716,65.77401886945077],[-73.78453784537845,65.79597037395925],[-73.82413824138241,65.81454472392795],[-73.84573845738457,65.82129903300748],[-73.89973899738997,65.82636476481713],[-73.95013950139501,65.83987338297618],[-73.97533975339753,65.84325053751596],[-74.01134011340113,65.85507057840513],[-74.07974079740796,65.90741647377149],[-74.130141301413,65.92430224647032],[-74.18054180541804,65.95300806005832],[-74.20574205742057,65.98002529637645],[-74.22014220142201,65.99184533726563],[-74.24174241742418,65.9935339145355],[-74.23454234542345,65.9935339145355],[-74.42174421744217,66.0830285098393],[-74.45774457744577,66.1117343234273],[-74.47214472144721,66.1319972506659],[-74.47214472144721,66.14888302336473],[-74.45774457744577,66.16239164152378],[-74.42174421744217,66.18772030057201],[-74.34614346143461,66.22655757777932],[-74.08334083340833,66.30085497765415],[-74.0509405094051,66.31942932762288],[-74.03654036540365,66.32449505943251],[-74.02574025740257,66.32956079124216],[-74.01134011340113,66.32956079124216],[-74.00054000540005,66.33462652305181],[-73.97533975339753,66.35151229575064],[-73.96093960939609,66.35657802756029],[-73.94653946539465,66.35826660483016],[-73.90693906939069,66.35657802756029],[-73.91053910539105,66.36670949117959],[-73.91413914139142,66.37177522298924],[-73.89973899738997,66.38021810933864],[-73.88533885338853,66.3852838411483],[-73.85653856538565,66.39203815022782],[-73.81333813338134,66.41061250019655],[-73.78093780937809,66.41905538654595],[-73.7161371613716,66.45958124102313],[-73.45693456934569,66.5507644135968],[-73.43173431734317,66.56427303175587],[-73.41013410134101,66.6081760407728],[-73.38853388533884,66.63012754528128],[-73.36333363333632,66.64701331798011],[-73.34533345333453,66.65883335886929],[-73.33093330933309,66.66389909067894],[-73.27333273332734,66.67740770883802],[-73.23733237332372,66.69091632699707],[-73.19053190531905,66.6976706360766],[-73.12933129331293,66.72131071785495],[-73.0969309693097,66.72806502693447],[-73.01053010530104,66.7263764496646],[-72.94932949329493,66.73481933601403]]],[[[-115.32535325353253,73.5093913427834],[-115.31815318153181,73.48743983827492],[-115.32175321753218,73.4806855291954],[-115.33255332553325,73.47730837465562],[-115.35055350553505,73.47730837465562],[-115.40095400954009,73.46717691103635],[-115.41535415354153,73.4604226019568],[-115.45135451354513,73.43509394290857],[-115.45855458554585,73.43002821109891],[-115.53775537755378,73.42496247928926],[-115.55575555755557,73.41989674747961],[-115.59175591755917,73.40469955205069],[-115.75375753757537,73.35741938849395],[-115.98055980559805,73.3253364203662],[-116.2181621816218,73.28481056588902],[-116.45936459364594,73.26117048411064],[-116.50256502565026,73.23753040233228],[-116.71136711367114,73.20207027966475],[-116.76896768967688,73.1784301978864],[-116.79056790567905,73.17336446607675],[-116.85176851768517,73.16661015699722],[-116.90576905769058,73.14128149794897],[-116.9849698496985,73.11932999344049],[-117.14697146971469,73.09400133439226],[-117.20097200972009,73.0703612526139],[-117.21537215372153,73.06529552080426],[-117.39177391773917,73.05516405718495],[-117.6869768697687,72.98086665731012],[-117.76257762577626,72.97242377096072],[-117.87417874178742,72.93020933921363],[-117.98937989379894,72.9048806801654],[-118.04338043380434,72.88630633019667],[-118.23778237782378,72.85760051660867],[-118.43218432184321,72.80863177578209],[-118.4609846098461,72.79512315762301],[-118.48618486184861,72.77486023038443],[-118.52218522185223,72.7579744576856],[-118.57258572585727,72.75122014860608],[-118.71658716587166,72.74953157133618],[-118.7669876698767,72.7394001077169],[-118.90378903789038,72.68874278962042],[-119.12339123391234,72.63639689425406],[-119.1449914499145,72.63470831698416],[-119.16299162991629,72.62964258517451],[-119.17379173791738,72.61782254428533],[-119.17739177391773,72.6026253488564],[-119.18459184591845,72.5908053079672],[-119.18819188191881,72.57898526707802],[-119.1809918099181,72.55196803075992],[-119.1809918099181,72.53845941260084],[-119.19539195391954,72.53001652625144],[-119.23499234992349,72.51481933082249],[-119.24939249392494,72.50468786720319],[-119.24579245792458,72.48611351723449],[-119.26379263792637,72.47260489907544],[-119.28539285392853,72.46247343545613],[-119.3069930699307,72.45065339456696],[-119.31419314193141,72.43376762186813],[-119.3249932499325,72.40843896281987],[-119.32859328593285,72.38479888104152],[-119.31419314193141,72.37466741742222],[-119.30339303393033,72.3696016856126],[-119.31419314193141,72.36115879926317],[-119.32859328593285,72.35102733564386],[-119.33939339393393,72.34596160383421],[-119.38619386193861,72.33583014021494],[-119.43659436594365,72.31894436751611],[-119.65259652596527,72.27335278122928],[-119.77139771397714,72.22944977221232],[-119.80739807398074,72.2226954631328],[-119.8289982899829,72.2226954631328],[-119.9009990099901,72.2311383494822],[-119.92619926199262,72.2311383494822],[-119.97659976599766,72.22438404040267],[-120.17460174601746,72.23620408129185],[-120.19620196201961,72.24464696764127],[-120.13860138601386,72.25477843126055],[-120.12780127801278,72.26490989487985],[-120.1530015300153,72.27166420395938],[-120.19260192601925,72.27335278122928],[-120.22860228602286,72.27166420395938],[-120.25380253802538,72.2615327403401],[-120.2610026100261,72.2412698131015],[-120.24300243002429,72.2311383494822],[-120.19620196201961,72.21762973132314],[-120.18180181801819,72.20412111316406],[-120.17820178201782,72.19061249500501],[-120.17460174601746,72.17879245411584],[-120.1530015300153,72.1517752177977],[-120.1530015300153,72.13995517690853],[-120.15660156601567,72.12813513601935],[-120.16740167401673,72.1146265178603],[-120.19620196201961,72.0842321270024],[-120.30780307803079,72.01837761347699],[-120.34740347403473,71.99980326350828],[-120.39420394203941,71.98460606807933],[-120.43380433804339,71.96434314084073],[-120.45900459004591,71.9288830181732],[-120.41220412204122,71.90017720458519],[-120.3870038700387,71.88160285461649],[-120.39060390603906,71.87484854553696],[-120.4050040500405,71.86302850464776],[-120.4050040500405,71.8393884228694],[-120.40860408604087,71.8123711865513],[-120.40860408604087,71.7921082593127],[-120.41940419404193,71.76509102299457],[-120.4230042300423,71.74989382756564],[-120.41220412204122,71.73638520940656],[-120.39060390603906,71.71274512762821],[-120.38340383403835,71.70092508673903],[-120.38340383403835,71.69248220038963],[-120.3870038700387,71.68235073677033],[-120.4050040500405,71.6637763868016],[-120.4230042300423,71.6350705732136],[-120.51660516605166,71.54388740063993],[-120.63540635406355,71.49154150527357],[-120.7650076500765,71.47296715530487],[-120.99180991809918,71.42906414628791],[-121.20421204212042,71.41048979631921],[-121.42381423814237,71.38009540546133],[-121.60741607416074,71.40204690996978],[-121.54621546215462,71.42062125993851],[-121.5390153901539,71.43075272355779],[-121.56781567815678,71.45270422806627],[-121.60381603816037,71.46452426895544],[-121.65061650616505,71.4695900007651],[-121.70101701017009,71.46790142349522],[-121.7370173701737,71.45945853714582],[-121.85581855818558,71.40711264177943],[-121.93141931419314,71.35983247822273],[-121.98181981819818,71.34632386006368],[-122.0610206102061,71.29904369650694],[-122.12222122221222,71.27033788291894],[-122.15462154621545,71.26189499656954],[-122.23382233822338,71.25345211022011],[-122.32022320223203,71.23318918298153],[-122.4030240302403,71.22643487390201],[-122.62982629826298,71.17577755580552],[-122.67302673026731,71.1487603194874],[-122.69822698226983,71.13862885586809],[-122.7270272702727,71.11330019681986],[-122.75222752227522,71.09979157866078],[-122.79902799027991,71.08797153777161],[-123.10143101431015,71.08459438323186],[-123.14823148231483,71.09303726958126],[-123.25623256232562,71.13018596951869],[-123.35343353433535,71.18253186488505],[-123.43623436234361,71.24838637841046],[-123.5550355503555,71.39866975543003],[-123.62343623436234,71.46283569168557],[-123.67023670236702,71.49491865981335],[-123.7170371703717,71.52193589613148],[-123.7350373503735,71.5270016279411],[-123.79623796237962,71.53882166883028],[-123.8070380703807,71.54219882337006],[-123.81783817838178,71.55233028698936],[-123.83583835838358,71.57259321422794],[-123.94023940239401,71.65364492318233],[-124.06624066240661,71.70092508673903],[-124.36144361443614,71.75327098210539],[-124.66024660246603,71.80392830020187],[-124.87264872648726,71.85627419556823],[-124.96984969849699,71.89004574096589],[-125.23265232652327,71.94070305906237],[-125.25425254252542,71.95590025449133],[-125.02745027450274,71.96265456357085],[-125.01305013050131,71.95927740903107],[-124.98064980649806,71.94576879087202],[-124.96624966249662,71.94239163633225],[-124.94824948249482,71.94408021360215],[-124.9410494104941,71.9491459454118],[-124.94464944649447,71.9575888317612],[-124.95904959049591,71.96603171811063],[-125.00585005850058,71.97954033626968],[-125.27225272252721,71.98122891353955],[-125.56745567455675,71.97447460446003],[-125.79065790657907,71.9491459454118],[-125.8770587705877,71.96434314084073],[-125.80865808658086,71.9761631817299],[-125.78345783457834,71.98798322261908],[-125.76185761857619,72.00318041804803],[-125.74025740257403,72.02513192255651],[-125.72945729457294,72.05890346795417],[-125.72585725857257,72.06903493157347],[-125.71865718657186,72.07916639519277],[-125.71865718657186,72.09267501335182],[-125.7330573305733,72.10956078605065],[-125.7510575105751,72.11631509513018],[-125.79425794257942,72.1146265178603],[-125.7510575105751,72.14839806325796],[-125.68985689856899,72.16866099049653],[-125.6250562505625,72.17710387684596],[-125.5710557105571,72.17541529957606],[-125.5710557105571,72.18216960865561],[-125.62865628656286,72.18554676319536],[-125.65745657456574,72.19398964954479],[-125.65745657456574,72.20918684497371],[-125.66465664656647,72.21256399951349],[-125.67185671856718,72.21762973132314],[-125.6790567905679,72.2311383494822],[-125.67185671856718,72.23789265856172],[-125.6610566105661,72.25477843126055],[-125.65025650256501,72.25815558580032],[-125.5710557105571,72.24802412218102],[-125.54945549455493,72.25477843126055],[-125.50265502655026,72.27504135849915],[-125.4918549185492,72.27841851303893],[-125.4810548105481,72.28517282211845],[-125.4810548105481,72.30037001754738],[-125.48825488254883,72.31050148116668],[-125.50265502655026,72.30205859481728],[-125.51705517055171,72.29361570846785],[-125.52785527855278,72.29192713119798],[-125.53145531455314,72.2986814402775],[-125.52785527855278,72.31219005843656],[-125.52065520655206,72.32232152205586],[-125.50985509855099,72.33245298567516],[-125.48825488254883,72.34596160383421],[-125.47385473854737,72.35271591291377],[-125.43785437854379,72.36115879926317],[-125.42345423454233,72.36791310834269],[-125.41625416254163,72.37466741742222],[-125.39105391053911,72.40168465374035],[-125.40185401854018,72.40675038555],[-125.4270542705427,72.41012754008977],[-125.43785437854379,72.41519327189943],[-125.41625416254163,72.42194758097895],[-125.34425344253442,72.42194758097895],[-125.36225362253623,72.43883335367778],[-125.3550535505355,72.44896481729708],[-125.30825308253083,72.464162012726],[-125.31185311853119,72.47935920815496],[-125.29745297452973,72.48949067177426],[-125.25785257852579,72.49962213539354],[-125.22185221852217,72.50468786720319],[-125.1750517505175,72.51819648536227],[-125.05985059850599,72.56547664891897],[-125.0310503105031,72.56885380345875],[-124.97344973449734,72.56547664891897],[-124.95184951849518,72.56885380345875],[-124.9770497704977,72.5924938852371],[-124.96624966249662,72.60769108066603],[-125.03825038250383,72.60937965793593],[-125.07065070650705,72.61782254428533],[-125.1030510305103,72.63470831698416],[-125.08145081450814,72.63977404879381],[-125.05985059850599,72.63977404879381],[-125.03825038250383,72.64315120333359],[-125.02745027450274,72.65497124422276],[-125.03465034650347,72.65665982149264],[-125.0490504905049,72.66172555330229],[-125.05625056250562,72.66172555330229],[-125.04545045450453,72.67354559419147],[-125.02745027450274,72.67185701692159],[-125.00585005850058,72.66847986238182],[-124.98784987849879,72.66847986238182],[-124.97344973449734,72.67523417146134],[-124.96264962649627,72.6819884805409],[-124.94464944649447,72.70225140777947],[-124.95904959049591,72.709005716859],[-125.02025020250203,72.70225140777947],[-125.00945009450095,72.71744860320842],[-124.98784987849879,72.73095722136748],[-124.97344973449734,72.74446583952655],[-124.9770497704977,72.76135161222535],[-124.98784987849879,72.76979449857478],[-125.00585005850058,72.77992596219408],[-125.01665016650166,72.78836884854348],[-125.02025020250203,72.79681173489291],[-125.02385023850238,72.81707466213149],[-125.02745027450274,72.82720612575079],[-125.03825038250383,72.83227185756044],[-125.08145081450814,72.84071474390984],[-125.10665106651066,72.85422336206892],[-125.11745117451174,72.86266624841832],[-125.1138511385114,72.86773198022797],[-125.09945099450994,72.87110913476775],[-125.08505085050851,72.87955202111715],[-125.0670506705067,72.8846177529268],[-125.03465034650347,72.87279771203762],[-124.99144991449914,72.86942055749785],[-124.9770497704977,72.86435482568822],[-124.95184951849518,72.85760051660867],[-124.77544775447754,72.8947492165461],[-124.70704707047071,72.88799490746658],[-124.57744577445774,72.90825783470515],[-124.52344523445234,72.92345503013411],[-124.4910449104491,72.92514360740398],[-124.47664476644766,72.93358649375341],[-124.48024480244803,72.94034080283294],[-124.5270452704527,72.95722657553176],[-124.51984519845197,72.96229230734141],[-124.49824498244982,72.97411234823059],[-124.49464494644945,72.97748950277034],[-124.50184501845018,72.9842438118499],[-124.51624516245163,72.98593238911977],[-124.5450454504545,72.9842438118499],[-124.56664566645667,72.98762096638964],[-124.59544595445954,72.99437527546917],[-124.62064620646206,73.00619531635837],[-124.63864638646386,73.01970393451742],[-124.62424624246242,73.02645824359695],[-124.71784717847179,73.02645824359695],[-124.70344703447034,73.01463820270777],[-124.69984699846998,73.011261048168],[-124.7250472504725,73.00957247089812],[-124.75384753847538,73.01801535724755],[-124.8510485104851,73.06360694353438],[-124.86544865448654,73.07542698442356],[-124.85824858248583,73.09062417985248],[-124.8510485104851,73.09568991166213],[-124.82224822248222,73.10582137528144],[-124.8150481504815,73.11088710709109],[-124.81144811448115,73.12101857071039],[-124.80424804248042,73.12946145705979],[-124.7970479704797,73.13790434340922],[-124.78624786247863,73.14128149794897],[-124.66744667446675,73.15479011610805],[-124.64224642246423,73.16998731153697],[-124.64944649446494,73.17167588880687],[-124.66024660246603,73.17505304334662],[-124.66744667446675,73.1784301978864],[-124.6710467104671,73.18349592969605],[-124.6710467104671,73.19362739331532],[-124.66744667446675,73.1970045478551],[-124.65664656646567,73.19869312512498],[-124.64944649446494,73.20375885693463],[-124.5990459904599,73.23921897960219],[-124.58464584645847,73.24428471141181],[-124.57384573845738,73.25103902049136],[-124.54144541445415,73.29831918404807],[-124.4910449104491,73.3439107703349],[-124.46944469444693,73.3523536566843],[-124.4190441904419,73.36417369757348],[-124.40464404644047,73.37430516119278],[-124.40464404644047,73.38950235662173],[-124.4370443704437,73.40638812932056],[-124.44424444244441,73.41989674747961],[-124.43344433444335,73.42833963382904],[-124.40824408244083,73.43847109744834],[-124.30744307443075,73.4604226019568],[-124.2930429304293,73.46717691103635],[-124.31464314643146,73.47730837465562],[-124.27864278642787,73.48406268373517],[-124.18144181441815,73.48406268373517],[-124.15624156241563,73.50432561097375],[-124.17064170641706,73.50432561097375],[-124.15264152641527,73.5195228064027],[-124.09144091440913,73.52627711548223],[-124.06624066240661,73.53978573364128],[-124.06984069840698,73.54485146545093],[-124.07344073440734,73.57018012449919],[-124.06984069840698,73.57862301084859],[-124.04824048240482,73.58706589719802],[-124.0410404104041,73.59382020627754],[-124.05184051840519,73.60057451535707],[-124.06624066240661,73.61070597897637],[-124.0770407704077,73.62252601986555],[-124.08064080640807,73.6360346380246],[-124.07344073440734,73.65292041072342],[-124.05544055440555,73.66136329707285],[-124.01224012240122,73.66811760615238],[-123.91863918639186,73.69682341974038],[-123.86463864638645,73.69682341974038],[-123.8430384303843,73.70188915155003],[-123.82863828638287,73.71708634697899],[-123.85023850238503,73.72890638786816],[-123.82863828638287,73.74410358329709],[-123.77463774637746,73.76605508780557],[-123.79263792637926,73.78125228323452],[-123.82143821438214,73.81502382863218],[-123.8430384303843,73.82684386952135],[-123.88263882638826,73.83866391041053],[-124.14544145441454,73.85048395129971],[-124.1850418504185,73.86399256945876],[-124.21384213842138,73.87918976488771],[-124.22464224642246,73.89100980577689],[-124.2210422104221,73.90282984666607],[-124.19584195841958,73.92309277390467],[-124.21024210242102,73.92646992844442],[-124.2390423904239,73.9399785466035],[-124.24624246242462,73.94673285568302],[-124.26064260642606,73.96193005111198],[-124.26784267842677,73.96361862838185],[-124.27864278642787,73.96530720565173],[-124.30744307443075,73.97543866927103],[-124.35424354243543,73.98388155562043],[-124.36144361443614,73.98894728743008],[-124.34344343443433,73.99232444196986],[-124.35424354243543,74.00752163739881],[-124.39024390243902,74.03116171917716],[-124.38304383043831,74.03960460552656],[-124.40464404644047,74.05311322368564],[-124.44424444244441,74.06493326457482],[-124.46584465844658,74.07337615092422],[-124.45144451444514,74.08013046000374],[-124.46224462244622,74.09363907816282],[-124.4730447304473,74.10883627359175],[-124.45144451444514,74.10714769632187],[-124.44064440644406,74.11052485086165],[-124.43344433444335,74.11896773721105],[-124.44064440644406,74.13585350990988],[-124.44784447844478,74.14767355079906],[-124.46224462244622,74.15442785987858],[-124.47664476644766,74.15949359168823],[-124.4910449104491,74.16624790076779],[-124.49824498244982,74.17806794165696],[-124.49824498244982,74.18819940527624],[-124.50184501845018,74.19833086889554],[-124.51264512645126,74.20677375524497],[-124.53064530645307,74.21690521886424],[-124.53064530645307,74.22197095067389],[-124.52344523445234,74.22703668248354],[-124.51984519845197,74.23885672337272],[-124.5450454504545,74.26587395969085],[-124.58104581045811,74.2709396915005],[-124.66384663846638,74.26587395969085],[-124.69264692646927,74.27600542331015],[-124.6710467104671,74.2895140414692],[-124.60264602646026,74.31315412324756],[-124.64944649446494,74.32497416413673],[-124.75024750247502,74.31653127778733],[-124.78624786247863,74.33341705048616],[-124.75744757447575,74.34861424591512],[-124.68184681846819,74.35199140045486],[-124.40824408244083,74.37394290496334],[-124.23184231842319,74.38407436858265],[-124.12024120241202,74.37563148223322],[-124.10224102241023,74.38238579131277],[-124.10584105841059,74.3992715640116],[-124.08784087840878,74.40433729582122],[-123.73143731437314,74.41278018217065],[-123.68463684636846,74.4262888003297],[-123.47583475834759,74.4262888003297],[-123.30303303033031,74.44992888210805],[-122.98622986229861,74.45161745937796],[-122.62262622626227,74.46343750026713],[-122.39582395823959,74.47863469569606],[-122.1150211502115,74.49720904566479],[-121.78741787417874,74.54280063195162],[-121.58221582215822,74.55630925011067],[-121.4310143101431,74.53098059106244],[-121.27621276212761,74.53266916833232],[-121.25821258212582,74.53098059106244],[-121.21141211412115,74.51240624109371],[-121.13221132211322,74.51071766382384],[-121.00981009810098,74.47019180934666],[-120.98460984609846,74.45161745937796],[-120.9810098100981,74.44486315029843],[-120.97740977409774,74.42291164578995],[-120.97020970209701,74.42122306852005],[-120.93420934209342,74.42291164578995],[-120.54540545405453,74.35199140045486],[-120.15660156601567,74.2793825778499],[-119.98019980199803,74.2709396915005],[-119.94059940599405,74.26249680515107],[-119.85779857798578,74.23716814610285],[-119.56619566195661,74.23885672337272],[-119.51939519395194,74.23041383702332],[-119.55539555395553,74.2236595279438],[-119.62739627396274,74.2321024142932],[-119.66339663396633,74.22534810521367],[-119.6489964899649,74.19495371435579],[-119.6849968499685,74.16624790076779],[-119.81819818198181,74.10377054178213],[-119.8289982899829,74.09195050089292],[-119.83259832598326,74.06999899638447],[-119.82179821798218,74.05480180095552],[-119.79659796597966,74.04298176006634],[-119.76419764197641,74.03453887371691],[-119.73539735397354,74.03285029644704],[-119.73179731797318,74.04635891460609],[-119.73899738997389,74.05649037822539],[-119.74979749797498,74.0666218418447],[-119.7569975699757,74.076753305464],[-119.74619746197462,74.09701623270257],[-119.7209972099721,74.11052485086165],[-119.62019620196202,74.13416493264],[-119.58059580595805,74.15611643714848],[-119.54099540995409,74.18313367346661],[-119.50859508595086,74.21352806432449],[-119.47979479794797,74.22534810521367],[-119.44379443794438,74.22534810521367],[-119.37539375393754,74.21690521886424],[-119.23859238592385,74.22703668248354],[-119.1449914499145,74.20846233251484],[-119.12339123391234,74.20170802343532],[-119.10899108991089,74.18482225073649],[-119.09819098190982,74.16455932349788],[-119.10179101791019,74.1527392826087],[-119.13419134191341,74.12909920083035],[-119.09459094590946,74.12572204629058],[-119.07659076590767,74.12065631448095],[-119.06579065790658,74.10883627359175],[-119.06939069390694,74.09026192362305],[-119.08379083790837,74.08181903727365],[-119.11979119791198,74.07337615092422],[-119.14139141391414,74.06831041911457],[-119.14859148591486,74.05986753276517],[-119.16299162991629,74.03285029644704],[-119.17019170191702,74.02271883282774],[-119.17739177391773,74.01427594647834],[-119.18459184591845,74.00414448285903],[-119.18819188191881,73.99232444196986],[-119.14859148591486,73.99570159650963],[-119.06939069390694,74.01934167828799],[-119.02619026190263,74.01934167828799],[-118.99738997389974,74.00921021466868],[-118.98298982989829,74.00752163739881],[-118.9649896498965,74.01258736920846],[-118.95058950589507,74.01765310101808],[-118.9289892898929,74.03453887371691],[-118.90738907389073,74.05311322368564],[-118.87858878588786,74.076753305464],[-118.86058860588605,74.0851961918134],[-118.8209882098821,74.09026192362305],[-118.80658806588065,74.10208196451222],[-118.79578795787958,74.12741062356048],[-118.81738817388174,74.13923066444966],[-118.84978849788499,74.14767355079906],[-118.8749887498875,74.16287074622801],[-118.8821888218882,74.17300220984731],[-118.8821888218882,74.17806794165696],[-118.8749887498875,74.18313367346661],[-118.86058860588605,74.18988798254614],[-118.8389883898839,74.19495371435579],[-118.79218792187922,74.20001944616541],[-118.72378723787239,74.22028237340402],[-118.62658626586266,74.22703668248354],[-118.55458554585546,74.2422338779125],[-118.45738457384573,74.24729960972215],[-118.40338403384034,74.25743107334145],[-118.0649806498065,74.2810711551198],[-117.7409774097741,74.25743107334145],[-117.41697416974169,74.2321024142932],[-117.14337143371434,74.15949359168823],[-116.86616866168661,74.0868847690833],[-116.62496624966249,73.99401301923973],[-116.38736387363873,73.90114126939619],[-116.36216362163621,73.88594407396724],[-116.32976329763298,73.86905830126841],[-116.24696246962469,73.86061541491901],[-116.18216182161822,73.82684386952135],[-115.9769597695977,73.76605508780557],[-115.9229592295923,73.73059496513804],[-115.73575735757358,73.68331480158133],[-115.64575645756457,73.67656049250178],[-115.62055620556205,73.66811760615238],[-115.60975609756098,73.66305187434273],[-115.58455584555846,73.64110036983425],[-115.57015570155701,73.63434606075472],[-115.53415534155342,73.62590317440532],[-115.49455494554945,73.60226309262694],[-115.40095400954009,73.56680296995941],[-115.35775357753577,73.54147431091118],[-115.33255332553325,73.52458853821236],[-115.32535325353253,73.5093913427834]]],[[[56.98676986769868,74.68970685443142],[56.972369723697255,74.68970685443142],[56.94356943569437,74.70659262713025],[56.89316893168933,74.71334693620977],[56.83916839168393,74.70996978167],[56.777967779677795,74.69308400897117],[56.752767527675275,74.69308400897117],[56.7059670596706,74.69814974078082],[56.626766267662674,74.69308400897117],[56.601566015660154,74.69814974078082],[56.587165871658726,74.70490404986035],[56.56556565565657,74.72685555436883],[56.54756547565478,74.738675595258],[56.52956529565296,74.74711848160743],[56.511565115651166,74.75218421341708],[56.486364863648646,74.75387279068696],[56.450364503645034,74.7488070588773],[56.42876428764288,74.7488070588773],[56.417964179641814,74.75387279068696],[56.425164251642514,74.76231567703636],[56.500765007650074,74.79271006789426],[56.46476464764649,74.79946437697379],[56.2019620196202,74.78933291335449],[55.93915939159393,74.78089002700509],[55.88515885158853,74.78764433608461],[55.831158311583124,74.79946437697379],[55.816758167581696,74.80790726332319],[55.816758167581696,74.81803872694249],[55.83475834758349,74.83154734510157],[55.88515885158853,74.8467445405305],[56.21276212762129,74.8855818177378],[56.543965439654414,74.92441909494511],[56.594365943659454,74.94299344491381],[56.61596615966161,74.94468202218368],[56.66276662766629,74.94468202218368],[56.677166771667714,74.94805917672346],[56.67356673566738,74.95819064034276],[56.65556655566556,74.96832210396207],[56.637566375663766,74.97169925850181],[56.587165871658726,74.96663352669216],[56.54036540365405,74.95312490853311],[56.51516515165153,74.94805917672346],[56.43236432364324,74.95819064034276],[56.410764107641086,74.95481348580299],[56.367563675636774,74.93961629037406],[56.35676356763568,74.94130486764394],[56.3819638196382,74.96494494942229],[56.29556295562958,74.96494494942229],[56.317163171631734,74.96832210396207],[56.38916389163893,74.9936507630103],[56.443164431644334,75.0037822266296],[56.46476464764649,75.012225112979],[56.46476464764649,75.0223565765983],[56.443164431644334,75.0324880402176],[56.42156421564218,75.03755377202725],[56.39636396363966,75.03586519475735],[56.33876338763389,75.02573373113808],[56.18036180361804,75.02066799932842],[56.06516065160653,74.99702791755007],[55.90315903159032,74.99196218574042],[55.87075870758707,74.99702791755007],[55.86355863558637,75.0037822266296],[55.892358923589256,75.0223565765983],[55.892358923589256,75.0324880402176],[55.94635946359463,75.07470247196466],[55.93555935559357,75.07639104923456],[55.91395913959141,75.08652251285383],[55.90315903159032,75.08821109012374],[55.83475834758349,75.08821109012374],[55.748357483574836,75.07470247196466],[55.72675726757268,75.08145678104418],[55.73755737557377,75.08652251285383],[55.741157411574136,75.09496539920326],[55.74475744757447,75.10171970828279],[55.748357483574836,75.10847401736231],[55.75915759157593,75.11353974917196],[55.78435784357845,75.12198263552139],[55.79515795157951,75.12873694460092],[55.798757987579876,75.13549125368044],[55.80235802358024,75.1506884491094],[55.80955809558097,75.15744275818892],[55.823958239582396,75.16250848999857],[55.856358563585644,75.16250848999857],[55.87075870758707,75.16419706726845],[55.881558815588164,75.1692627990781],[55.906759067590684,75.19121430358658],[55.91755917559178,75.1979686126661],[56.03636036360365,75.2182315399047],[56.07236072360723,75.2182315399047],[56.10476104761048,75.21147723082515],[56.09756097560975,75.2081000762854],[56.08676086760869,75.20134576720588],[56.083160831608325,75.1979686126661],[56.11556115561157,75.1878371490468],[56.158761587615885,75.18614857177693],[56.2019620196202,75.1895257263167],[56.234362343623445,75.1979686126661],[56.21636216362165,75.18108283996727],[56.158761587615885,75.16757422180822],[56.13716137161373,75.15744275818892],[56.17316173161731,75.1506884491094],[56.21276212762129,75.15237702637927],[56.28836288362885,75.17095137634797],[56.33876338763389,75.1895257263167],[56.35676356763568,75.19121430358658],[56.37116371163714,75.1878371490468],[56.37836378363784,75.18445999450705],[56.3819638196382,75.1777056854275],[56.4539645396454,75.11860548098161],[56.47196471964722,75.08821109012374],[56.4467644676447,75.06794816288513],[56.52956529565296,75.07807962650443],[56.612366123661246,75.10678544009244],[56.79236792367925,75.1979686126661],[56.88236882368824,75.22329727171433],[56.896768967689695,75.23005158079388],[56.90756907569076,75.24018304441316],[56.91116911169112,75.25538023984211],[56.89316893168933,75.28070889889037],[56.846368463684655,75.28915178523977],[56.759967599676,75.28746320796989],[56.73476734767348,75.29590609431929],[56.75636756367564,75.31785759882777],[56.83556835568356,75.3550062987652],[57.047970479704816,75.39890930778213],[57.073170731707336,75.39553215324239],[57.148771487714896,75.37864638054356],[57.42597425974262,75.37526922600378],[57.42237422374225,75.36176060784473],[57.43317433174332,75.35669487603508],[57.47277472774729,75.3533177214953],[57.55557555575555,75.3347433715266],[57.742777427774286,75.32798906244707],[57.73557735577356,75.33136621698682],[57.72117721177213,75.34149768060612],[57.724777247772494,75.3448748351459],[57.72837728377286,75.35162914422543],[57.73197731977319,75.3550062987652],[57.72117721177213,75.35838345330495],[57.68157681576815,75.37189207146403],[57.67077670776709,75.37864638054356],[57.667176671766725,75.41072934867131],[57.667176671766725,75.41748365775086],[57.641976419764205,75.43943516225931],[57.60957609576096,75.44450089406897],[57.57357573575737,75.44281231679909],[57.541175411754125,75.45125520314852],[57.54477544775449,75.46645239857745],[57.5339753397534,75.47827243946662],[57.50157501575018,75.49853536670523],[57.56277562775628,75.5204868712137],[58.052380523805255,75.57789849838971],[58.14238142381424,75.57452134384994],[58.1639816398164,75.57789849838971],[58.185581855818555,75.58802996200902],[58.19638196381965,75.60322715743794],[58.178381783817855,75.62011293013677],[58.14598145981461,75.6285558164862],[57.95517955179554,75.62349008467655],[57.926379263792654,75.6285558164862],[57.944379443794446,75.6555730528043],[57.98037980379806,75.67245882550313],[58.019980199802006,75.68090171185256],[58.25758257582578,75.69272175274173],[58.30798307983082,75.70285321636104],[58.40158401584017,75.70960752544056],[58.45918459184594,75.72818187540926],[58.60318603186033,75.73324760721891],[58.59238592385924,75.74169049356834],[58.5347853478535,75.76026484353704],[58.57438574385745,75.7737734616961],[58.61038610386106,75.78221634804552],[58.721987219872204,75.79234781166483],[58.72558725587257,75.804167852554],[58.72558725587257,75.81936504798293],[58.75078750787509,75.832873666142],[58.93078930789309,75.86833378880954],[59.13599135991362,75.86495663426976],[59.22959229592297,75.88690813877824],[59.24759247592476,75.88859671604811],[59.30519305193053,75.88859671604811],[59.333993339933414,75.89197387058789],[59.359193591935934,75.90379391147707],[59.35559355593557,75.90379391147707],[59.35559355593557,75.91054822055659],[59.35559355593557,75.91730252963612],[59.359193591935934,75.92405683871567],[59.366393663936634,75.92743399325542],[59.391593915939154,75.93587687960485],[59.39879398793988,75.93756545687472],[59.7479974799748,75.9308111477952],[59.77679776797768,75.93418830233495],[59.827198271982724,75.94769692049402],[59.902799027990284,75.95782838411333],[60,75.98653419770133],[60.046800468004676,75.99328850678086],[60.3240032400324,75.99835423859051],[60.34920349203492,76.00510854767003],[60.34560345603458,76.01692858855921],[60.32760327603276,76.02368289763874],[60.29880298802988,76.02874862944839],[60.08280082800829,76.03719151579782],[60.06120061200613,76.04225724760744],[60.04320043200434,76.05407728849664],[60.08280082800829,76.06927448392557],[60.26640266402666,76.10980033840275],[60.55440554405544,76.1165546474823],[60.83880838808389,76.12330895656183],[60.817208172081735,76.11148891567265],[60.792007920079215,76.106423183863],[60.766807668076694,76.1047346065931],[60.482404824048245,76.02706005217851],[60.46800468004682,76.01355143401943],[60.53640536405365,76.02030574309899],[60.558005580055806,76.02030574309899],[60.55080550805508,76.01355143401943],[60.60480604806048,75.99835423859051],[60.66960669606698,75.9966656613206],[60.734407344073446,76.00510854767003],[60.784807848078486,76.02706005217851],[60.78840788407885,76.03212578398816],[60.79560795607958,76.04732297941709],[60.80280802808028,76.05407728849664],[60.817208172081735,76.06083159757617],[60.89640896408966,76.06927448392557],[60.96480964809649,76.06589732938582],[61.08721087210873,76.08447167935452],[61.11241112411125,76.0962917202437],[61.144811448114496,76.1165546474823],[61.15561155611556,76.12837468837148],[61.14841148411486,76.1435718838004],[61.119611196111975,76.15201477014983],[60.9468094680947,76.14019472926066],[60.92160921609218,76.1435718838004],[60.90000900009002,76.15708050195948],[60.92880928809288,76.17565485192819],[60.993609936099375,76.19929493370654],[61.02241022410226,76.21786928367524],[60.993609936099375,76.23137790183432],[60.99720997209974,76.24657509726325],[61.01521015210153,76.2617722926922],[61.044010440104415,76.27359233358138],[61.07641076410766,76.2803466426609],[61.18081180811808,76.2803466426609],[61.48321483214832,76.29385526081998],[61.55881558815588,76.28372379720068],[61.5840158401584,76.28710095174046],[61.60561605616056,76.29554383808986],[61.62001620016201,76.30567530170916],[61.638016380163805,76.31242961078868],[61.67401674016742,76.31580676532846],[61.7028170281703,76.31411818805856],[61.71721717217173,76.31074103351881],[61.74601746017461,76.29554383808986],[61.75681756817568,76.29385526081998],[61.90441904419046,76.29385526081998],[61.92601926019262,76.29723241535973],[61.98001980019802,76.26346086996207],[62.09522095220953,76.2533294063428],[62.38322383223834,76.2719037563115],[62.4048240482405,76.26346086996207],[62.4048240482405,76.2516408290729],[62.39402394023941,76.24150936545362],[62.37962379623798,76.23137790183432],[62.37242372423725,76.22124643821502],[62.39042390423904,76.19760635643667],[62.426424264242655,76.18747489281736],[62.46962469624697,76.18409773827759],[62.502025020250215,76.17734342919806],[62.50562505625058,76.18916347008724],[62.51282512825128,76.19760635643667],[62.5380253802538,76.20942639732584],[62.55602556025562,76.21955786094514],[62.559625596255984,76.21955786094514],[62.57042570425705,76.21786928367524],[62.62442624426245,76.20773782005597],[62.64962649626497,76.20942639732584],[62.64602646026461,76.23137790183432],[62.67482674826749,76.24150936545362],[62.779227792277936,76.27021517904163],[62.811628116281184,76.27021517904163],[62.844028440284404,76.2617722926922],[62.86562865628656,76.24657509726325],[62.85122851228513,76.23475505637407],[62.84762847628477,76.23137790183432],[62.919629196291964,76.23137790183432],[62.90162901629017,76.21786928367524],[62.95562955629558,76.20773782005597],[63.171631716317165,76.2431979427235],[63.222032220322205,76.26346086996207],[63.46323463234634,76.28710095174046],[63.4848348483485,76.29216668355008],[63.52803528035281,76.31749534259833],[63.556835568355694,76.32256107440799],[63.62163621636216,76.32424965167786],[63.64683646836468,76.33269253802729],[63.6720367203672,76.34113542437669],[63.69363693636936,76.34788973345621],[63.71883718837188,76.34957831072612],[63.859238592385935,76.34113542437669],[63.934839348393496,76.36308692888517],[63.95643956439565,76.36308692888517],[63.97083970839708,76.35802119707552],[63.9888398883989,76.34788973345621],[64.01404014040142,76.32593822894773],[64.03564035640358,76.31580676532846],[64.0608406084061,76.31242961078868],[64.08964089640898,76.31242961078868],[64.16524165241654,76.32424965167786],[64.26244262442626,76.35464404253574],[64.3128431284313,76.36308692888517],[64.40644406444065,76.35970977434539],[64.43524435244353,76.36308692888517],[64.44964449644496,76.37152981523457],[64.46764467644678,76.39179274247317],[64.47484474844748,76.3985470515527],[64.52524525245252,76.40192420609247],[64.6260462604626,76.37490696977434],[64.67644676446764,76.38334985612374],[64.65484654846549,76.39348131974305],[64.65484654846549,76.40530136063222],[64.66924669246694,76.4188099787913],[64.6908469084691,76.43063001968048],[64.71964719647198,76.4458272151094],[64.7448474484745,76.44920436964918],[64.8060480604806,76.45089294691905],[64.79164791647918,76.46777871961788],[64.78444784447845,76.47115587415766],[64.82764827648276,76.48466449231671],[64.98604986049861,76.50155026501554],[65.03285032850329,76.50155026501554],[65.0688506885069,76.49479595593601],[65.07245072450726,76.47791018323719],[65.10125101251015,76.46946729688779],[65.13365133651337,76.46946729688779],[65.16965169651698,76.47453302869741],[65.22725227252275,76.49310737866614],[65.33885338853389,76.51337030590471],[65.35325353253535,76.52181319225414],[65.3820538205382,76.54714185130237],[65.40365403654039,76.55896189219155],[65.48645486454865,76.5741590876205],[65.61245612456125,76.58091339670003],[65.99045990459905,76.53363323314332],[65.99765997659978,76.53363323314332],[66.03366033660336,76.54714185130237],[66.01566015660157,76.55727331492167],[65.99765997659978,76.5657162012711],[65.97605976059762,76.57247051035063],[65.9580595805958,76.5741590876205],[65.94005940059401,76.57922481943015],[65.93285932859328,76.58935628304945],[65.92565925659258,76.6028649012085],[65.91845918459185,76.61299636482781],[65.88965889658897,76.63663644660616],[65.85365853658539,76.65183364203511],[65.7708577085771,76.67209656927369],[65.7528575285753,76.682228032893],[65.760057600576,76.69404807378217],[65.78165781657816,76.7024909601316],[65.8248582485825,76.70924526921112],[65.88965889658897,76.739639660069],[65.94365943659437,76.7497711236883],[66.10926109261092,76.75314827822805],[66.15246152461526,76.76327974184736],[66.23526235262352,76.79536270997514],[66.27846278462786,76.80211701905466],[66.3288632886329,76.80042844178479],[66.35046350463506,76.80549417359444],[66.37206372063721,76.81900279175349],[66.38646386463864,76.83588856445232],[66.39366393663937,76.84264287353184],[66.40806408064083,76.84939718261137],[66.4620646206462,76.86121722350055],[66.57006570065701,76.86459437804032],[66.62406624066242,76.8764144189295],[66.63126631266314,76.88148015073915],[66.63846638466384,76.89330019162833],[66.64206642066421,76.8966773461681],[66.6528665286653,76.90005450070785],[66.87966879668798,76.9236945824862],[66.91926919269193,76.94395750972481],[66.94446944469445,76.94902324153446],[67.2108721087211,76.95240039607424],[67.3440734407344,76.98617194147187],[67.39807398073981,76.98617194147187],[67.47727477274773,77.0047462914406],[67.5888758887589,77.01318917779],[68.03528035280354,76.99799198236107],[68.15768157681578,76.96759759150316],[68.29448294482947,76.95915470515376],[68.46368463684638,76.96590901423329],[68.51408514085142,76.95240039607424],[68.48528485284854,76.94058035518503],[68.47808478084781,76.93213746883563],[68.4888848888489,76.92538315975611],[68.56808568085683,76.92538315975611],[68.59328593285935,76.92031742794646],[68.62568625686256,76.90005450070785],[68.67248672486727,76.87979157346928],[68.69048690486906,76.8764144189295],[68.75168751687517,76.87979157346928],[68.78408784087841,76.87810299619937],[68.80928809288093,76.86966010984997],[68.78408784087841,76.85615149169092],[68.76248762487626,76.84264287353184],[68.7588875888759,76.82744567810292],[68.78768787687878,76.81224848267397],[68.89928899288995,76.79873986451491],[68.93168931689317,76.78691982362571],[68.89928899288995,76.76159116457748],[68.89208892088922,76.74808254641843],[68.90288902889029,76.73288535098948],[68.93168931689317,76.71937673283043],[69.00369003690037,76.71599957829065],[69.03249032490325,76.71262242375087],[68.89568895688959,76.67885087835322],[68.85608856088561,76.65689937384477],[68.84888848888491,76.65014506476521],[68.84528845288455,76.63325929206638],[68.83808838088382,76.62650498298686],[68.78768787687878,76.58935628304945],[68.90288902889029,76.57922481943015],[68.9388893888939,76.56740477854098],[68.90288902889029,76.55220758311202],[68.74808748087483,76.50999315136497],[68.62208622086223,76.45258152418896],[68.550085500855,76.42894144241058],[68.51408514085142,76.42387571060095],[68.43848438484386,76.42387571060095],[68.4168841688417,76.4171214015214],[68.40608406084061,76.40698993790213],[68.40968409684098,76.40023562882257],[68.42048420484207,76.39685847428282],[68.43848438484386,76.39685847428282],[68.39168391683918,76.36646408342492],[68.34488344883451,76.34957831072612],[68.20808208082082,76.33100396075739],[68.1828818288183,76.32256107440799],[68.17928179281793,76.31411818805856],[68.21168211682118,76.30736387897903],[68.30168301683017,76.30398672443926],[68.32688326883269,76.29385526081998],[68.28728287282874,76.2820352199308],[67.9128791287913,76.25839513815242],[67.60327603276033,76.19760635643667],[67.54207542075423,76.19929493370654],[67.36567365673659,76.16721196557876],[67.14607146071461,76.1047346065931],[66.98046980469806,76.09460314297382],[66.80766807668078,76.06252017484604],[66.68526685266855,76.06083159757617],[66.60606606066062,76.03550293852791],[66.52326523265234,76.02368289763874],[66.42966429664298,75.99835423859051],[66.29286292862929,75.9966656613206],[66.22806228062282,75.97302557954225],[66.17766177661778,75.96120553865308],[65.6988569885699,75.90885964328672],[65.21645216452166,75.85482517065049],[65.1228512285123,75.81936504798293],[65.07965079650796,75.80754500709375],[65.02925029250292,75.8024792752841],[64.8888488884889,75.80923358436362],[64.60084600846008,75.7653305753467],[64.30924309243093,75.72311614359961],[64.10404104041041,75.71973898905986],[64.07884078840789,75.71467325725021],[64.03204032040321,75.69609890728151],[63.85563855638557,75.66908167096338],[63.76203762037622,75.64206443464525],[63.708037080370815,75.63531012556572],[63.71883718837188,75.64881874372477],[63.72603726037261,75.65895020734408],[63.72603726037261,75.6673930936935],[63.71523715237154,75.67752455731278],[63.70083700837009,75.68090171185256],[63.67563675636757,75.68259028912243],[63.66123661236614,75.68765602093208],[63.67563675636757,75.70454179363091],[63.64683646836468,75.71973898905986],[63.6180361803618,75.71973898905986],[63.55323553235533,75.71129610271043],[63.59283592835928,75.70791894817069],[63.61443614436146,75.70285321636104],[63.62163621636216,75.69103317547186],[63.6108361083611,75.68090171185256],[63.52083520835208,75.63193297102595],[63.481234812348134,75.62517866194642],[63.44163441634416,75.62180150740667],[63.304833048330494,75.58802996200902],[63.222032220322205,75.58802996200902],[63.171631716317165,75.57958707565959],[63.05283052830529,75.58971853927889],[63.03123031230314,75.58802996200902],[62.736027360273624,75.5187982939438],[62.62082620826209,75.51542113940405],[62.27162271622717,75.43943516225931],[62.224822248222495,75.43605800771957],[62.1528215282153,75.45463235768827],[62.09522095220953,75.44450089406897],[62.07002070020701,75.44618947133887],[62.048420484204854,75.44956662587862],[62.03042030420306,75.44956662587862],[62.01242012420124,75.44112373952922],[61.99441994419945,75.42761512137014],[61.85401854018542,75.38033495781343],[61.84681846818469,75.36176060784473],[61.81081810818108,75.35669487603508],[61.73161731617316,75.38033495781343],[61.69561695616957,75.37526922600378],[61.713617136171365,75.36007203057483],[61.7028170281703,75.34825198968565],[61.65961659616596,75.32798906244707],[61.66681666816669,75.3246119079073],[61.688416884168845,75.314480444288],[61.67401674016742,75.30941471247837],[61.64521645216453,75.30434898066872],[61.63441634416344,75.29928324885907],[61.64161641616417,75.29590609431929],[61.64521645216453,75.29084036250964],[61.65241652416526,75.27902032162046],[61.60561605616056,75.27902032162046],[61.58041580415804,75.27564316708072],[61.55881558815588,75.26720028073129],[61.54801548015482,75.25706881711199],[61.54081540815409,75.24693735349271],[61.53361533615336,75.23849446714328],[61.51921519215193,75.23005158079388],[61.48321483214832,75.22329727171433],[61.44001440014401,75.22498584898423],[61.404014040140396,75.23680588987341],[61.378813788137876,75.26044597165176],[61.386013860138604,75.27057743527106],[61.386013860138604,75.28070889889037],[61.38961389613897,75.29084036250964],[61.386013860138604,75.29928324885907],[61.378813788137876,75.30941471247837],[61.36801368013681,75.314480444288],[61.36801368013681,75.32292333063742],[61.378813788137876,75.3347433715266],[61.278012780127824,75.32798906244707],[61.296012960129616,75.30097182612894],[61.29241292412925,75.27902032162046],[61.270812708127096,75.26382312619154],[61.10881108811088,75.1979686126661],[61.03681036810369,75.1878371490468],[60.968409684096855,75.17095137634797],[60.83160831608316,75.15237702637927],[60.81360813608137,75.14562271729974],[60.79920799207994,75.12029405825149],[60.784807848078486,75.11522832644184],[60.7488074880749,75.10847401736231],[60.77400774007742,75.09327682193339],[60.79560795607958,75.09158824466348],[60.80280802808028,75.08652251285383],[60.78840788407885,75.06457100834538],[60.766807668076694,75.04430808110678],[60.7488074880749,75.0324880402176],[60.72360723607238,75.02742230840795],[60.630006300063,75.02742230840795],[60.590405904059054,75.03417661748747],[60.5688056880569,75.04599665837665],[60.5688056880569,75.0611938538056],[60.57960579605796,75.07807962650443],[60.59400594005942,75.09158824466348],[60.61200612006121,75.10171970828279],[60.59400594005942,75.11353974917196],[60.57240572405726,75.11860548098161],[60.507605076050766,75.11353974917196],[60.49320493204934,75.11016259463221],[60.489604896048974,75.10340828555266],[60.5040050400504,75.09496539920326],[60.4428044280443,75.06794816288513],[60.44640446404466,75.06457100834538],[60.450004500045,75.05781669926583],[60.45360453604536,75.05443954472608],[60.43920439204393,75.04768523564655],[60.43560435604357,75.04599665837665],[60.46800468004682,75.0324880402176],[60.44640446404466,75.01897942205855],[60.41760417604178,75.01053653570912],[60.26640266402666,74.99196218574042],[60.23400234002341,74.99196218574042],[60.255602556025565,75.00209364935972],[60.26280262802629,75.00547080389947],[60.23400234002341,75.01897942205855],[60.11160111601117,74.99196218574042],[59.927999279992804,75.00547080389947],[59.95679956799569,74.99027360847052],[60.01080010800109,74.98014214485124],[60.3168031680317,74.97338783577169],[60.6228062280623,74.96832210396207],[60.68760687606877,74.92441909494511],[60.66240662406625,74.91259905405593],[60.590405904059054,74.8754503541185],[60.56160561605617,74.8670074677691],[60.3240032400324,74.85518742687992],[60.22320223202232,74.86363031322932],[60.19440194401946,74.85518742687992],[60.20880208802089,74.84336738599075],[60.230402304023045,74.83323592237144],[60.255602556025565,74.82479303602202],[60.27360273602736,74.82141588148227],[60.29880298802988,74.81972730421236],[60.3240032400324,74.81466157240274],[60.35280352803528,74.80453010878344],[60.3708037080371,74.79271006789426],[60.331203312033125,74.767381408846],[60.27720277202772,74.75049563614718],[59.93519935199353,74.72516697709895],[59.902799027990284,74.7285441316387],[59.845198451984515,74.74205274979778],[59.81639816398166,74.74542990433753],[59.72279722797228,74.74205274979778],[59.693996939969395,74.74711848160743],[59.62919629196293,74.77582429519543],[59.560795607956095,74.78595575881474],[59.510395103951055,74.79946437697379],[59.53919539195394,74.78764433608461],[59.60039600396004,74.75387279068696],[59.6219962199622,74.73529844071825],[59.643596435964355,74.72685555436883],[59.769597695976955,74.72516697709895],[59.78039780397805,74.72178982255917],[59.78399783997841,74.71672409074952],[59.787597875978776,74.71165835893987],[59.79119791197914,74.70828120440012],[59.79839798397984,74.70490404986035],[59.837998379983816,74.69646116351095],[59.85959859598597,74.6913954317013],[59.8739987399874,74.67619823627234],[59.8739987399874,74.66775534992294],[59.8739987399874,74.64749242268434],[59.877598775987764,74.63904953633494],[59.8739987399874,74.62891807271563],[59.852398523985244,74.62216376363611],[59.80919809198093,74.61709803182646],[59.794797947979475,74.61034372274693],[59.769597695976955,74.59514652731798],[59.75519755197553,74.58670364096855],[59.70839708397085,74.58163790915893],[59.60039600396004,74.59683510458785],[59.517595175951755,74.62216376363611],[59.43119431194313,74.65593530903377],[59.37359373593736,74.66606677265304],[59.315993159931594,74.68970685443142],[59.225992259922606,74.71165835893987],[59.157591575915774,74.738675595258],[59.12159121591216,74.74711848160743],[59.08919089190894,74.738675595258],[59.11439114391146,74.72178982255917],[59.225992259922606,74.68126396808199],[59.26919269192692,74.65762388630364],[59.290792907929074,74.64242669087469],[59.233192331923334,74.64073811360481],[59.20439204392045,74.64580384541446],[59.182791827918294,74.65931246357351],[59.16119161191614,74.66775534992294],[59.132391323913254,74.66606677265304],[59.10359103591037,74.65762388630364],[59.08199081990821,74.64918099995421],[59.19359193591936,74.63060664998551],[59.22239222392224,74.61540945455658],[59.207992079920814,74.60527799093728],[59.182791827918294,74.57826075461915],[59.16479164791647,74.56644071372997],[59.132391323913254,74.55124351830102],[59.12879128791289,74.54111205468172],[59.14679146791468,74.5259148592528],[59.107191071910734,74.50902908655397],[59.09279092790928,74.49552046839489],[59.09279092790928,74.48201185023584],[59.1107911079111,74.47525754115631],[59.12879128791289,74.47188038661653],[59.14319143191432,74.46343750026713],[59.13959139591398,74.45161745937796],[59.14679146791468,74.44486315029843],[58.8659886598866,74.45668319118761],[58.74358743587436,74.47863469569606],[58.739987399873996,74.48032327296596],[58.739987399873996,74.49383189112501],[58.73638736387366,74.49720904566479],[58.71838718387184,74.50396335474431],[58.45198451984521,74.54280063195162],[58.185581855818555,74.58163790915893],[58.18198181981822,74.57657217734928],[58.178381783817855,74.56644071372997],[58.17478174781749,74.56137498192032],[58.26838268382684,74.53266916833232],[58.41958419584196,74.51409481836362],[58.42678426784269,74.51240624109371],[58.42678426784269,74.50902908655397],[58.42678426784269,74.50058620020454],[58.42678426784269,74.49720904566479],[58.47358473584737,74.47356896388644],[58.639186391863916,74.42291164578995],[58.62478624786249,74.41278018217065],[58.570785707857084,74.3891401003923],[58.631986319863216,74.36043428680429],[58.657186571865736,74.34017135956569],[58.65358653586537,74.31315412324756],[58.671586715867164,74.30977696870781],[58.71118711187114,74.30639981416803],[58.72918729187293,74.2996455050885],[58.70758707587078,74.28613688692946],[58.739987399873996,74.27262826877038],[58.72558725587257,74.26756253696072],[58.69318693186932,74.2608082278812],[58.67878678786789,74.2523653415318],[58.69318693186932,74.2523653415318],[58.70398703987041,74.2506767642619],[58.71838718387184,74.24561103245227],[58.72918729187293,74.23885672337272],[58.5347853478535,74.23885672337272],[58.631986319863216,74.22703668248354],[58.6607866078661,74.21690521886424],[58.50958509585098,74.21690521886424],[58.52758527585277,74.20170802343532],[58.54918549185493,74.19495371435579],[58.570785707857084,74.19157655981601],[58.59238592385924,74.18482225073649],[58.55998559985602,74.17469078711719],[58.531185311853136,74.17131363257741],[58.49878498784989,74.17300220984731],[58.46638466384664,74.17637936438706],[58.44118441184412,74.18482225073649],[58.39798397983981,74.20339660070519],[58.37638376383765,74.20339660070519],[58.34038340383404,74.18988798254614],[58.33318333183334,74.19326513708589],[58.329583295832975,74.21352806432449],[58.31878318783188,74.22703668248354],[58.29358293582936,74.22197095067389],[58.26478264782648,74.20677375524497],[58.24678246782469,74.18988798254614],[58.30078300783009,74.16118216895813],[58.37638376383765,74.14936212806896],[58.520385203852044,74.14936212806896],[58.48438484384846,74.13247635537013],[58.38358383583838,74.14091924171953],[58.3439834398344,74.12909920083035],[58.34038340383404,74.12234489175083],[58.34038340383404,74.10039338724235],[58.336783367833675,74.09363907816282],[58.32238322383225,74.08857334635317],[58.30798307983082,74.0868847690833],[58.30078300783009,74.09363907816282],[58.304383043830455,74.10883627359175],[58.26838268382684,74.12572204629058],[58.21438214382144,74.1426078189894],[58.160381603816035,74.15105070533883],[58.13878138781388,74.13923066444966],[58.14598145981461,74.12909920083035],[58.1567815678157,74.1240334690207],[58.17118171181713,74.1155905826713],[58.17478174781749,74.10208196451222],[58.160381603816035,74.09026192362305],[58.09918099180993,74.05986753276517],[58.1639816398164,74.05649037822539],[58.19998199982001,74.04635891460609],[58.21438214382144,74.02947314190726],[58.21438214382144,74.01596452374821],[58.21438214382144,74.00921021466868],[58.203582035820375,74.00583306012891],[58.18198181981822,74.00583306012891],[58.16758167581676,74.00245590558916],[58.12438124381245,73.9872587101602],[58.109981099810994,73.98557013289033],[58.0307803078031,74.00414448285903],[57.92997929979302,74.00752163739881],[57.81477814778148,74.04129318279647],[57.75357753577538,74.04635891460609],[57.73917739177392,74.05142464641574],[57.724777247772494,74.05649037822539],[57.62397623976241,74.12065631448095],[57.55917559175592,74.17975651892684],[57.53037530375303,74.19157655981601],[57.48717487174872,74.19326513708589],[57.41157411574116,74.18482225073649],[57.48357483574836,74.14598497352918],[57.51237512375124,74.1240334690207],[57.5339753397534,74.09363907816282],[57.47637476374766,74.07337615092422],[57.32877328773287,74.09195050089292],[57.26037260372604,74.08013046000374],[57.5267752677527,74.06493326457482],[57.54837548375485,74.06155611003504],[57.56997569975701,74.05311322368564],[57.60957609576096,74.02947314190726],[57.87957879578798,73.93491281479385],[57.9119791197912,73.91633846482515],[57.857978579785794,73.9112727330155],[57.832778327783274,73.90620700120584],[57.81117811178112,73.89607553758654],[57.832778327783274,73.88763265123714],[57.883178831788314,73.88425549669736],[57.9047790477905,73.87581261034794],[57.9047790477905,73.86568114672866],[57.9047790477905,73.85386110583948],[57.908379083790834,73.84372964222018],[57.933579335793354,73.84204106495031],[57.926379263792654,73.831909601331],[57.92997929979302,73.8217781377117],[57.93717937179372,73.81333525136228],[57.944379443794446,73.80658094228275],[57.749977499775014,73.72552923332839],[57.7139771397714,73.72384065605851],[57.68157681576815,73.72890638786816],[57.62757627576278,73.74579216056699],[57.62037620376205,73.75085789237662],[57.60597605976059,73.76943224234535],[57.591575915759165,73.77956370596465],[57.5339753397534,73.79644947866348],[57.48717487174872,73.82008956044183],[57.39357393573937,73.84541821949006],[56.97596975969762,73.86736972399854],[56.55476554765548,73.88932122850701],[56.6339663396634,73.86399256945876],[56.93276932769328,73.85386110583948],[57.09477094770949,73.8302210240611],[57.181171811718116,73.8302210240611],[57.22077220772209,73.82515529225148],[57.35037350373506,73.82684386952135],[57.37197371973721,73.80995809682253],[57.382773827738276,73.79476090139357],[57.490774907749085,73.75423504691639],[57.49797497974981,73.74748073783687],[57.50157501575018,73.73397211967782],[57.50877508775088,73.72721781059826],[57.58077580775807,73.70864346062956],[57.591575915759165,73.70357772881991],[57.5879758797588,73.6934462652006],[57.5879758797588,73.6850033788512],[57.59517595175953,73.67656049250178],[57.60957609576096,73.67149476069216],[57.616776167761685,73.66811760615238],[57.60237602376026,73.65292041072342],[57.59517595175953,73.64447752437403],[57.591575915759165,73.6360346380246],[57.60597605976059,73.63096890621495],[57.60237602376026,73.62252601986555],[57.58437584375844,73.61408313351612],[57.56997569975701,73.60732882443659],[57.32877328773287,73.57355727903894],[57.3359733597336,73.56849154722929],[57.35037350373506,73.55329435180036],[57.01917019170193,73.58368874265824],[56.78876788767889,73.67656049250178],[56.752767527675275,73.68331480158133],[56.73476734767348,73.67993764704156],[56.720367203672055,73.66811760615238],[56.745567455674575,73.64785467891377],[56.81756817568177,73.62928032894507],[56.84996849968502,73.61408313351612],[56.828368283682835,73.60732882443659],[56.79956799567998,73.60564024716672],[56.745567455674575,73.60732882443659],[56.78876788767889,73.59550878354742],[56.878768787687875,73.60057451535707],[56.921969219692215,73.59550878354742],[57.080370803708036,73.53640857910153],[57.209972099721,73.51783422913283],[57.238772387723884,73.5093913427834],[57.24597245972461,73.50263703370388],[57.25317253172531,73.4908169928147],[57.25317253172531,73.48406268373517],[57.24597245972461,73.47730837465562],[57.24237242372425,73.46886548830622],[57.25317253172531,73.45704544741704],[57.231572315723156,73.45704544741704],[57.199171991719936,73.45366829287727],[57.17757177571775,73.44184825198809],[57.17757177571775,73.42327390201939],[56.9579695796958,73.34053361579512],[56.90756907569076,73.3152049567469],[56.88956889568897,73.31351637947702],[56.88236882368824,73.31689353401677],[56.86436864368645,73.3337793067156],[56.85716857168572,73.34053361579512],[56.81396813968141,73.35741938849395],[56.78876788767889,73.36417369757348],[56.76716767167673,73.36586227484338],[56.74916749167494,73.36079654303373],[56.74196741967421,73.34728792487468],[56.745567455674575,73.3337793067156],[56.759967599676,73.32702499763607],[56.795967959679615,73.32027068855655],[56.73836738367385,73.29325345223842],[56.72396723967242,73.28312198861911],[56.720367203672055,73.27299052499981],[56.73116731167312,73.26623621592029],[56.74916749167494,73.25948190684076],[56.759967599676,73.25103902049136],[56.73116731167312,73.24428471141181],[56.68796687966881,73.24259613414193],[56.644766447664495,73.24766186595159],[56.579965799658,73.26117048411064],[56.11916119161194,73.28987629769864],[56.07956079560796,73.30338491585772],[56.04716047160471,73.33040215217585],[56.032760327603285,73.37092800665303],[56.01476014760149,73.41314243840009],[55.97155971559715,73.43847109744834],[55.91755917559178,73.44860256106762],[55.87075870758707,73.43678252017844],[55.93555935559357,73.41820817020974],[55.97155971559715,73.40301097478078],[55.98595985959861,73.38443662481208],[55.98595985959861,73.37599373846268],[55.97155971559715,73.34728792487468],[55.975159751597516,73.33209072944572],[55.982359823598244,73.33040215217585],[55.97875978759788,73.33040215217585],[55.96075960759609,73.32027068855655],[55.924759247592476,73.31182780220712],[55.892358923589256,73.31689353401677],[55.82035820358203,73.34053361579512],[55.773557735577356,73.34728792487468],[55.43515435154353,73.33209072944572],[55.02115021150212,73.44353682925797],[54.89874898748988,73.44860256106762],[54.77994779947801,73.43678252017844],[54.66114661146614,73.40638812932056],[54.567545675456756,73.40807670659044],[54.473944739447404,73.39119093389161],[54.2939429394294,73.3337793067156],[54.25074250742509,73.32871357490595],[54.03474034740347,73.37430516119278],[54.06714067140672,73.39794524297113],[54.131941319413215,73.40976528386034],[54.27594275942761,73.41483101566996],[54.2939429394294,73.41820817020974],[54.30114301143013,73.42665105655914],[54.30114301143013,73.43340536563869],[54.30474304743049,73.44015967471822],[54.308343083430856,73.44522540652787],[54.315543155431556,73.45029113833752],[54.33714337143371,73.4604226019568],[54.416344163441636,73.47730837465562],[54.315543155431556,73.46886548830622],[54.27954279542797,73.4705540655761],[54.18594185941859,73.4908169928147],[54.20394203942041,73.50432561097375],[54.542345423454236,73.61070597897637],[54.6107461074611,73.61577171078602],[54.67914679146793,73.62928032894507],[54.71154711547118,73.64110036983425],[54.78354783547837,73.65967471980295],[54.94194941949419,73.6647404516126],[55.04635046350464,73.69851199701026],[55.08955089550895,73.70526630608978],[55.34875348753488,73.71708634697899],[55.31635316353163,73.72552923332839],[55.28395283952841,73.72552923332839],[55.25155251552516,73.72046350151874],[54.96354963549635,73.71708634697899],[54.93114931149313,73.71033203789943],[54.88074880748809,73.68838053339098],[54.85554855548557,73.68331480158133],[54.826748267482685,73.69006911066086],[54.86274862748627,73.71877492424886],[54.869948699487,73.73228354240791],[54.84834848348484,73.73059496513804],[54.81234812348126,73.72046350151874],[54.79074790747907,73.71708634697899],[54.725947259472605,73.71708634697899],[54.66474664746647,73.70526630608978],[54.53154531545317,73.70357772881991],[54.491944919449196,73.69682341974038],[54.46314463144631,73.67993764704156],[54.434344343443456,73.65967471980295],[54.40194401944021,73.64110036983425],[54.36954369543696,73.63265748348485],[54.2939429394294,73.62421459713542],[54.26154261542615,73.61408313351612],[54.27594275942761,73.60395166989684],[54.27954279542797,73.60057451535707],[54.12114121141212,73.6174602880559],[54.07434074340745,73.6090174017065],[54.05274052740529,73.61070597897637],[54.005940059400615,73.62083744259567],[53.96633966339664,73.62590317440532],[53.94833948339485,73.63096890621495],[53.930339303393055,73.64110036983425],[53.937539375393754,73.64278894710412],[53.95913959139591,73.64954325618368],[53.94113941139412,73.65460898799333],[53.905139051390535,73.65798614253308],[53.89073890738908,73.66305187434273],[53.879938799388015,73.66811760615238],[53.854738547385494,73.68331480158133],[53.761137611376114,73.72046350151874],[53.73233732337323,73.72721781059826],[53.66753667536676,73.73566069694769],[53.64233642336424,73.74579216056699],[53.63153631536315,73.75930077872604],[53.63153631536315,73.76943224234535],[53.63873638736388,73.78125228323452],[53.64233642336424,73.79644947866348],[53.653136531365334,73.8116466740924],[53.678336783367854,73.80826951955265],[53.72513725137253,73.78631801504417],[53.75753757537575,73.77956370596465],[53.797137971379726,73.77618655142487],[53.86913869138692,73.77787512869475],[54.081540815408175,73.83359817860088],[54.063540635406355,73.84879537402983],[54.07794077940781,73.86230399218888],[54.106741067410695,73.87243545580819],[54.16074160741607,73.88087834215759],[54.25434254342545,73.91633846482515],[54.315543155431556,73.93153566025407],[54.45234452344525,73.9484214329529],[54.62874628746289,73.95179858749268],[54.725947259472605,73.9771272465409],[54.78714787147874,73.96699578292163],[54.801548015480165,73.97037293746138],[54.801548015480165,73.98557013289033],[54.76914769147692,73.99570159650963],[54.70434704347045,74.00583306012891],[54.63954639546395,74.00245590558916],[54.60714607146073,74.00583306012891],[54.58914589145891,74.01934167828799],[54.60354603546037,74.01934167828799],[54.6107461074611,74.02271883282774],[54.67914679146793,74.06831041911457],[54.69354693546936,74.07337615092422],[54.71514715147151,74.076753305464],[55.01755017550175,74.17300220984731],[55.154351543515446,74.18819940527624],[55.18315183151833,74.18651082800636],[55.20115201152012,74.18144509619671],[55.25155251552516,74.16118216895813],[55.28035280352805,74.15442785987858],[55.39195391953919,74.14091924171953],[55.48555485554857,74.14936212806896],[55.81315813158133,74.10039338724235],[55.841958419584216,74.10039338724235],[55.86355863558637,74.105459119052],[55.87075870758707,74.12065631448095],[55.856358563585644,74.12909920083035],[55.780757807578084,74.14767355079906],[55.68355683556837,74.1527392826087],[55.63315633156333,74.16287074622801],[55.622356223562235,74.18988798254614],[55.237152371523734,74.24561103245227],[55.14715147151472,74.2422338779125],[55.129151291512926,74.24561103245227],[55.11475114751147,74.24898818699202],[55.08955089550895,74.2608082278812],[55.07515075150752,74.26587395969085],[55.093150931509314,74.2709396915005],[55.12555125551256,74.2709396915005],[55.143551435514354,74.27262826877038],[55.143551435514354,74.27431684604028],[55.143551435514354,74.2793825778499],[55.14715147151472,74.28444830965955],[55.15075150751508,74.28613688692946],[55.186751867518694,74.29289119600898],[55.20835208352085,74.30133408235838],[55.229952299523006,74.3080883914379],[55.2479524795248,74.30471123689816],[55.26595265952659,74.29289119600898],[55.262352623526255,74.2895140414692],[55.25875258752589,74.28275973238968],[55.255152551525526,74.2793825778499],[55.287552875528775,74.27431684604028],[55.40275402754028,74.28613688692946],[55.52875528755288,74.28275973238968],[55.56835568355683,74.28782546419933],[55.6259562595626,74.30471123689816],[55.65835658356585,74.30471123689816],[55.68355683556837,74.27262826877038],[55.70875708757089,74.2709396915005],[55.73395733957341,74.2793825778499],[55.748357483574836,74.29626835054873],[55.730357303573044,74.30471123689816],[55.66195661956621,74.33003989594638],[55.63675636756369,74.33341705048616],[55.61875618756187,74.33172847321629],[55.60795607956081,74.32666274140664],[55.59355593555935,74.32497416413673],[55.57555575555756,74.32835131867651],[55.52875528755288,74.34692566864521],[55.44955449554496,74.35367997772477],[55.29835298352984,74.35536855499464],[55.262352623526255,74.36043428680429],[55.23355233552337,74.37563148223322],[55.34875348753488,74.43304310940923],[55.388353883538855,74.44486315029843],[55.50715507155073,74.44486315029843],[55.61875618756187,74.46512607753701],[55.66195661956621,74.46006034572736],[55.90315903159032,74.46006034572736],[55.949959499594996,74.46850323207678],[55.97155971559715,74.47188038661653],[56.03996039960401,74.46512607753701],[56.10476104761048,74.47694611842618],[56.26316263162633,74.48032327296596],[56.28116281162812,74.48538900477561],[56.28836288362885,74.49214331385514],[56.27756277562776,74.50058620020454],[56.2559625596256,74.50565193201419],[56.234362343623445,74.50565193201419],[56.19116191161913,74.49720904566479],[56.01476014760149,74.49214331385514],[56.02916029160292,74.50227477747444],[56.04716047160471,74.51071766382384],[56.06516065160653,74.51747197290337],[56.083160831608325,74.51916055017327],[55.975159751597516,74.54617778649137],[55.867158671586736,74.55293209557092],[55.81315813158133,74.54786636376127],[55.70875708757089,74.52253770471302],[55.65835658356585,74.51916055017327],[55.697956979569796,74.54280063195162],[55.705157051570524,74.54955494103115],[55.697956979569796,74.5546206728408],[55.66915669156691,74.57150644553963],[55.65835658356585,74.57488360007937],[55.49995499955,74.56644071372997],[55.56115561155613,74.61372087728668],[55.5539555395554,74.62216376363611],[55.54315543155431,74.62385234090598],[55.53235532355325,74.63060664998551],[55.521555215552155,74.63904953633494],[55.521555215552155,74.64918099995421],[55.52875528755288,74.65424673176386],[55.61155611556117,74.67619823627234],[55.68355683556837,74.67957539081212],[55.755557555575564,74.6913954317013],[55.87075870758707,74.68295254535187],[55.867158671586736,74.67450965900247],[55.86355863558637,74.67113250446269],[55.89595895958959,74.66100104084342],[56.385563855638566,74.72178982255917],[56.417964179641814,74.7201012452893],[56.417964179641814,74.70490404986035],[56.4539645396454,74.70321547259047],[56.55476554765548,74.68295254535187],[56.98676986769868,74.68970685443142]]],[[[-40.523805238052375,82.57367412751373],[-40.22860228602286,82.5669198184342],[-40.20700207002071,82.56185408662455],[-40.21780217802177,82.55003404573537],[-40.20340203402034,82.5382140048462],[-40.12420124201242,82.50950819125819],[-40.005400054000546,82.48924526401959],[-40.030600306003066,82.47573664586054],[-40.05940059400592,82.46560518224123],[-40.08460084600844,82.45040798681228],[-40.081000810008106,82.42676790503393],[-40.055800558005586,82.411570709605],[-39.92259922599226,82.38624205055675],[-39.92619926199262,82.382864896017],[-39.929799297992986,82.3727334323977],[-39.803798037980386,82.36260196877839],[-39.76779767797677,82.37611058693744],[-39.75699756997568,82.39637351417605],[-39.76419764197641,82.4098821323351],[-39.7821978219782,82.4200135959544],[-39.80739807398072,82.42676790503393],[-39.85779857798576,82.43521079138335],[-39.879398793987946,82.44534225500266],[-39.87579875798758,82.46898233678101],[-39.854198541985426,82.48249095494006],[-39.760597605976045,82.50275388217867],[-39.778597785977865,82.51288534579794],[-39.861398613986125,82.51626250033772],[-39.962199621996206,82.5382140048462],[-39.994599945999454,82.55341120027515],[-40.00900009000088,82.56354266389442],[-40.00900009000088,82.57367412751373],[-39.994599945999454,82.58380559113303],[-39.97659976599766,82.59055990021255],[-39.95859958599584,82.59731420929208],[-39.9009990099901,82.6040685183716],[-39.879398793987946,82.61082282745116],[-39.86859868598685,82.61926571380056],[-39.86859868598685,82.63108575468974],[-39.879398793987946,82.64290579557891],[-39.904599045990466,82.65979156827774],[-39.9081990819908,82.66654587735727],[-39.9081990819908,82.67161160916692],[-39.911799117991166,82.67667734097657],[-39.92259922599226,82.68174307278622],[-39.95139951399514,82.6935631136754],[-40.31860318603185,82.73071181361283],[-40.57780577805778,82.71720319545375],[-40.81180811808119,82.75435189539118],[-40.9270092700927,82.75941762720083],[-40.97740977409774,82.77461482262976],[-41.44181441814419,82.78474628624906],[-41.90981909819098,82.79487774986836],[-42.374223742237405,82.80500921348766],[-42.84222842228422,82.81514067710697],[-43.30663306633065,82.82527214072624],[-43.774637746377465,82.83540360434554],[-44.23904239042389,82.84553506796485],[-44.70704707047071,82.85566653158415],[-44.76824768247681,82.86579799520342],[-44.829448294482944,82.8894380769818],[-45.06345063450635,82.91307815876016],[-45.06345063450635,82.9080124269505],[-44.86544865448653,82.87255230428298],[-44.86544865448653,82.86579799520342],[-44.96624966249661,82.84553506796485],[-45.3010530105301,82.8607322633938],[-45.635856358563586,82.87761803609263],[-45.6790567905679,82.87255230428298],[-45.668256682566835,82.86242084066367],[-45.661056610566106,82.8607322633938],[-45.65385653856538,82.8590436861239],[-45.65385653856538,82.85228937704437],[-45.97425974259741,82.84215791342507],[-46.03186031860318,82.8506007997745],[-46.09306093060931,82.84891222250462],[-46.15066150661505,82.8607322633938],[-46.55746557465574,82.89281523152155],[-46.55386553865537,82.89956954060108],[-46.54666546665467,82.90632384968063],[-46.539465394653945,82.91138958149025],[-46.52866528665285,82.91307815876016],[-46.57186571865719,82.92320962237946],[-46.75546755467553,82.94009539507829],[-46.84546845468455,82.96035832231686],[-46.892268922689226,82.96204689958674],[-46.84546845468455,82.97555551774582],[-46.413464134641345,82.94853828142769],[-45.98145981459814,82.92152104510956],[-46.22626226262261,82.98062124955547],[-46.70146701467013,83.00257275406395],[-46.67986679866797,83.01945852676278],[-46.64386643866439,83.0245242585724],[-46.51786517865179,83.02114710403265],[-46.49986499864997,83.02958999038205],[-46.51066510665106,83.05154149489053],[-46.43146431464314,83.06167295850983],[-46.111061110611104,83.06167295850983],[-46.078660786607855,83.07855873120866],[-46.03906039060391,83.09713308117736],[-45.97065970659705,83.09713308117736],[-45.89865898658985,83.08531304028818],[-45.78345783457834,83.0532300721604],[-45.45225452254522,83.02114710403265],[-45.12105121051209,82.987375558635],[-45.07785077850778,82.96204689958674],[-45.08865088650887,82.95360401323734],[-45.1030510305103,82.94853828142769],[-45.11025110251103,82.94178397234816],[-45.106651066510665,82.93502966326864],[-44.73584735847359,82.96880120866629],[-44.32904329043291,82.95360401323734],[-43.92223922239222,82.93671824053851],[-43.515435154351536,82.92152104510956],[-43.48663486634865,82.91307815876016],[-43.48663486634865,82.9164553132999],[-43.48663486634865,82.91983246783968],[-43.45423454234543,82.9164553132999],[-43.364233642336416,82.92152104510956],[-43.364233642336416,82.92658677691921],[-43.80343803438035,82.95529259050721],[-44.242642426424254,82.98230982682534],[-44.68184681846819,83.00932706314347],[-45.12105121051209,83.03634429946158],[-45.131851318513185,83.04309860854113],[-45.11745117451173,83.05154149489053],[-45.13905139051391,83.05660722670018],[-45.17865178651786,83.0549186494303],[-45.20025200252002,83.05829580397005],[-45.20025200252002,83.05998438123996],[-45.20025200252002,83.06505011304961],[-45.20025200252002,83.07011584485923],[-45.20385203852038,83.07180442212913],[-45.21105211052111,83.07180442212913],[-45.22545225452254,83.07687015393878],[-45.32985329853298,83.08193588574841],[-45.484654846548466,83.11064169933644],[-45.517055170551714,83.12246174022562],[-45.517055170551714,83.13597035838467],[-45.484654846548466,83.14610182200397],[-45.44505445054449,83.15454470835337],[-45.40545405454054,83.15792186289315],[-45.38025380253802,83.1528561310835],[-45.40185401854018,83.14947897654372],[-45.40185401854018,83.14103609019432],[-45.38745387453875,83.13090462657502],[-45.365853658536594,83.12583889476537],[-45.2290522905229,83.13597035838467],[-45.15345153451534,83.1629875947028],[-45.131851318513185,83.16636474924255],[-45.11385113851139,83.16467617197267],[-45.07785077850778,83.1528561310835],[-44.7250472504725,83.10557596752679],[-44.67824678246782,83.11233027660631],[-44.696246962469615,83.11908458568584],[-44.71424714247141,83.12583889476537],[-44.69264692646925,83.12752747203527],[-44.671046710467095,83.13259320384489],[-44.671046710467095,83.13934751292445],[-44.69264692646925,83.13934751292445],[-44.71064710647107,83.1427246674642],[-44.746647466474656,83.1528561310835],[-44.70704707047071,83.1714304810522],[-44.645846458464575,83.17480763559197],[-44.19584195841958,83.15116755381362],[-43.749437494374945,83.12583889476537],[-43.75303753037531,83.12583889476537],[-43.73143731437315,83.12077316295571],[-43.699036990369905,83.11739600841597],[-43.66663666636666,83.11908458568584],[-43.65223652236523,83.12921604930514],[-43.63783637836377,83.13597035838467],[-43.24543245432454,83.11739600841597],[-42.84942849428495,83.09882165844724],[-42.878228782287806,83.11064169933644],[-43.25263252632527,83.14103609019432],[-43.62703627036271,83.1714304810522],[-44.001440014400146,83.2018248719101],[-43.63063630636307,83.20351344917998],[-43.25983259832597,83.20689060371973],[-42.89262892628926,83.20857918098963],[-42.89262892628926,83.21533349006916],[-43.04023040230402,83.21195633552938],[-43.08343083430833,83.22208779914868],[-42.979029790297886,83.2288421082282],[-42.979029790297886,83.23559641730776],[-43.321033210332104,83.23559641730776],[-43.321033210332104,83.24235072638729],[-43.2670326703267,83.24572788092703],[-43.24903249032491,83.24910503546681],[-43.25623256232561,83.25585934454634],[-43.25983259832597,83.25585934454634],[-43.25983259832597,83.26261365362586],[-42.96462964629646,83.27274511724517],[-42.66582665826658,83.2811880035946],[-42.5110251102511,83.25079361273669],[-42.47862478624785,83.23897357184751],[-42.43542435424354,83.2288421082282],[-42.11862118621187,83.24235072638729],[-42.02502025020249,83.22377637641856],[-41.92421924219241,83.21702206733903],[-41.83421834218342,83.19844771737033],[-41.74061740617407,83.19507056283055],[-41.704617046170455,83.17480763559197],[-41.88461884618846,83.12246174022562],[-41.931419314193136,83.09206734936771],[-41.66861668616684,83.13934751292445],[-41.36621366213663,83.11908458568584],[-41.12501125011249,83.06167295850983],[-41.02061020610205,83.0549186494303],[-40.739807398073964,83.0059499086037],[-40.689406894068924,82.98568698136512],[-40.271802718027175,82.97893267228557],[-39.854198541985426,82.97048978593617],[-39.43659436594365,82.96204689958674],[-39.00459004590044,82.89956954060108],[-39.01179011790117,82.8978809633312],[-39.02619026190263,82.8894380769818],[-39.03339033390333,82.88606092244203],[-39.00459004590044,82.85566653158415],[-38.96138961389613,82.83540360434554],[-38.86778867788678,82.81345209983706],[-38.680586805868046,82.79318917259849],[-38.6409864098641,82.76954909082014],[-38.65178651786516,82.76448335901048],[-38.65178651786516,82.75941762720083],[-38.64458644586446,82.75266331812131],[-38.637386373863734,82.74928616358153],[-38.61578615786158,82.74590900904175],[-38.59058590585906,82.74759758631166],[-38.547385473854746,82.75604047266106],[-38.60138601386012,82.77630339989966],[-38.586985869858694,82.78474628624906],[-38.56538565385654,82.79318917259849],[-38.49338493384934,82.81514067710697],[-38.478984789847885,82.82189498618649],[-38.478984789847885,82.8320264498058],[-38.6409864098641,82.82527214072624],[-38.74178741787418,82.83371502707567],[-38.7669876698767,82.84722364523472],[-38.77778777787776,82.85228937704437],[-38.781387813878126,82.85735510885402],[-38.78498784987849,82.86579799520342],[-38.78498784987849,82.89956954060108],[-38.82458824588247,82.9164553132999],[-38.914589145891455,82.93502966326864],[-38.91098910989109,82.93502966326864],[-38.93618936189361,82.94516112688791],[-39.00819008190081,82.94853828142769],[-39.12339123391234,82.97217836320604],[-39.148591485914864,82.98230982682534],[-39.12699126991271,82.9958184449844],[-39.09819098190982,83.00426133133382],[-38.6409864098641,83.0059499086037],[-38.18738187381874,83.0059499086037],[-37.73017730177301,83.00763848587357],[-37.272972729727286,83.00932706314347],[-37.316173161731626,83.01776994949287],[-37.406174061740614,83.01945852676278],[-37.59337593375932,83.04141003127123],[-37.98217982179821,83.04309860854113],[-38.370983709837105,83.044787185811],[-38.75978759787597,83.04647576308088],[-38.79938799387995,83.05829580397005],[-38.78498784987849,83.06842726758936],[-38.320583205832065,83.08531304028818],[-37.859778597785976,83.10388739025689],[-37.39537395373952,83.12246174022562],[-36.93456934569346,83.14103609019432],[-36.88056880568806,83.1528561310835],[-36.90216902169021,83.15961044016302],[-37.265772657726586,83.15623328562327],[-37.62937629376293,83.1528561310835],[-37.54657546575464,83.15961044016302],[-37.52497524975249,83.16805332651245],[-37.58977589775898,83.17818479013172],[-37.910179101791016,83.18831625375103],[-37.99657996579964,83.1815619446715],[-38.025380253802524,83.18831625375103],[-37.96417964179642,83.19507056283055],[-37.942579425794264,83.2018248719101],[-38.23058230582305,83.2018248719101],[-38.51858518585186,83.2018248719101],[-38.68418684186841,83.20857918098963],[-38.70938709387093,83.21871064460893],[-38.730987309873086,83.23221926276798],[-38.86058860588605,83.25585934454634],[-38.831788317883166,83.26936796270539],[-38.79578795787958,83.27612227178494],[-38.723787237872386,83.27781084905482],[-38.730987309873086,83.28625373540422],[-38.738187381873814,83.29469662175364],[-38.74898748987491,83.2997623535633],[-38.75978759787597,83.30482808537295],[-38.74538745387454,83.3082052399127],[-38.712987129871294,83.31158239445247],[-38.698586985869866,83.31158239445247],[-38.698586985869866,83.318336703532],[-38.72738727387272,83.318336703532],[-38.7669876698767,83.32509101261152],[-38.80298802988028,83.3369110535007],[-38.8281882818828,83.35210824892965],[-38.8209882098821,83.3571739807393],[-38.79938799387995,83.37237117616826],[-38.78498784987849,83.37912548524778],[-38.738187381873814,83.39432268067671],[-38.806588065880646,83.40614272156591],[-38.86778867788678,83.42809422607436],[-38.838988389883895,83.43653711242379],[-38.79938799387995,83.43991426696354],[-38.756187561875606,83.43822568969367],[-38.69138691386914,83.42471707153462],[-38.252182521825205,83.39263410340683],[-37.8129781297813,83.35886255800918],[-37.73737737377374,83.37237117616826],[-37.8129781297813,83.40276556702614],[-37.98217982179821,83.41289703064544],[-38.061380613806136,83.43484853515392],[-38.025380253802524,83.44329142150332],[-37.917379173791744,83.4551114623925],[-37.924579245792444,83.46693150328167],[-37.935379353793536,83.4753743896311],[-37.949779497794964,83.48044012144075],[-37.96417964179642,83.48212869871062],[-37.917379173791744,83.49901447140945],[-37.58617586175862,83.50745735775885],[-37.20097200972009,83.47199723509132],[-36.812168121681225,83.43484853515392],[-36.76536765367652,83.41965133972496],[-36.72216722167221,83.39769983521649],[-36.704167041670416,83.39263410340683],[-36.44856448564485,83.36223971254896],[-36.401764017640176,83.37237117616826],[-36.59976599765997,83.39432268067671],[-36.610566105661064,83.40445414429601],[-36.635766357663584,83.41120845337554],[-36.69696696966969,83.41458560791531],[-36.64656646566465,83.42809422607436],[-36.484564845648464,83.43484853515392],[-36.534965349653504,83.45173430785275],[-36.85536855368554,83.48044012144075],[-36.90216902169021,83.49563731686968],[-36.786967869678705,83.4939487395998],[-36.75096750967509,83.5040802032191],[-36.76536765367652,83.50745735775885],[-36.78336783367834,83.50914593502876],[-36.812168121681225,83.50914593502876],[-36.786967869678705,83.52772028499746],[-36.740167401674,83.53785174861676],[-36.23976239762396,83.53785174861676],[-35.74295742957429,83.53785174861676],[-35.24255242552425,83.53785174861676],[-34.97254972549726,83.57162329401442],[-34.70254702547024,83.60539483941207],[-34.67734677346772,83.60370626214217],[-34.62694626946268,83.59188622125299],[-34.60534605346052,83.58175475763369],[-34.590945909459094,83.57162329401442],[-34.57654576545764,83.56149183039511],[-34.565745657456574,83.55136036677581],[-34.54414544145442,83.54460605769629],[-34.52254522545226,83.54291748042641],[-34.49734497344974,83.54291748042641],[-34.47934479344792,83.54967178950594],[-34.46134461344613,83.55811467585534],[-34.4541445414454,83.56993471674451],[-34.45054450544504,83.58006618036381],[-34.44334443344434,83.58850906671324],[-34.42174421744218,83.59695195306264],[-34.39654396543966,83.6020176848723],[-34.364143641436414,83.60370626214217],[-34.331743317433165,83.59864053033252],[-34.306543065430645,83.58850906671324],[-34.30294302943028,83.57668902582404],[-34.29934299342992,83.56486898493486],[-34.29574295742958,83.55473752131559],[-34.25254252542524,83.54629463496616],[-34.20934209342093,83.52772028499746],[-33.946539465394636,83.48550585325037],[-33.93933939339394,83.4753743896311],[-33.93573935739357,83.46693150328167],[-33.92493924939248,83.46186577147202],[-33.83133831338313,83.46186577147202],[-33.78453784537845,83.47030865782145],[-33.74133741337414,83.48888300779015],[-33.788137881378816,83.50070304867933],[-34.00774007740077,83.52940886226733],[-34.05094050940508,83.54122890315651],[-34.08694086940869,83.56486898493486],[-34.079740797407965,83.56824613947464],[-34.07254072540724,83.57162329401442],[-34.01134011340113,83.58682048944334],[-33.62973629736297,83.59864053033252],[-33.251732517325166,83.6104605712217],[-32.870128701287,83.6222806121109],[-32.4921249212492,83.63410065300008],[-32.40932409324094,83.61890345757112],[-32.20772207722078,83.61383772576147],[-32.20772207722078,83.60539483941207],[-32.2329223292233,83.60539483941207],[-32.279722797227976,83.59864053033252],[-32.304923049230496,83.59188622125299],[-32.29772297722977,83.59188622125299],[-32.28332283322834,83.58513191217347],[-32.29052290522904,83.58175475763369],[-32.304923049230496,83.57162329401442],[-32.027720277202775,83.59019764398312],[-31.750517505175054,83.60877199395182],[-31.631716317163153,83.59019764398312],[-31.196111961119612,83.58682048944334],[-30.760507605076043,83.58344333490359],[-30.6489064890649,83.6020176848723],[-30.18810188101881,83.57837760309394],[-29.72729727297272,83.55642609858546],[-29.26649266492663,83.53447459407698],[-29.262892628926295,83.5310974395372],[-29.24849248492484,83.5310974395372],[-29.237692376923775,83.5310974395372],[-29.22329223292232,83.52772028499746],[-29.212492124921255,83.52434313045768],[-29.237692376923775,83.51927739864803],[-29.262892628926295,83.50914593502876],[-29.212492124921255,83.48719443052028],[-29.14769147691476,83.47706296690097],[-29.079290792907926,83.47875154417085],[-29.028890288902886,83.48888300779015],[-29.046890468904678,83.50576878048898],[-29.054090540905406,83.50914593502876],[-28.62928629286293,83.5226545531878],[-28.557285572855733,83.5142116668384],[-28.514085140851392,83.48888300779015],[-28.67248672486724,83.4753743896311],[-28.77328773287732,83.48719443052028],[-28.827288272882726,83.48719443052028],[-28.92448924489244,83.4753743896311],[-28.884888848888494,83.46355434874192],[-28.560885608856097,83.41965133972496],[-28.150481504815048,83.43484853515392],[-28.222482224822244,83.43484853515392],[-28.373683736837364,83.4551114623925],[-28.44568445684456,83.4551114623925],[-28.384483844838456,83.47199723509132],[-27.92727927279273,83.44160284423344],[-27.47367473674737,83.41289703064544],[-27.016470164701644,83.38419121705743],[-26.562865628656283,83.35548540346943],[-26.105661056610558,83.32677958988143],[-25.648456484564832,83.29807377629342],[-25.68085680856808,83.27949942632469],[-25.72045720457203,83.26936796270539],[-25.835658356583565,83.25923649908611],[-25.91485914859149,83.24066214911738],[-25.968859688596893,83.23390784003786],[-26.019260192601934,83.21533349006916],[-26.076860768607673,83.20857918098963],[-26.541265412654127,83.2018248719101],[-27.009270092700916,83.19338198556068],[-27.47367473674737,83.18662767648115],[-27.938079380793795,83.17987336740163],[-28.406084060840612,83.1731190583221],[-28.870488704887038,83.16636474924255],[-29.338493384933855,83.15792186289315],[-29.80289802898028,83.15116755381362],[-30.270902709027098,83.14441324473407],[-30.735307353073523,83.13765893565454],[-30.890108901089008,83.10557596752679],[-31.314913149131485,83.09037877209784],[-31.739717397173962,83.07518157666888],[-32.160921609216075,83.06167295850983],[-32.236522365223635,83.07687015393878],[-32.34812348123481,83.08362446301831],[-32.445324453244524,83.10557596752679],[-32.9421294212942,83.13259320384489],[-33.4389343893439,83.15961044016302],[-33.48213482134821,83.14610182200397],[-33.341733417334154,83.13934751292445],[-33.23733237332374,83.11570743114606],[-33.132931329313294,83.1342817811148],[-32.81972819728196,83.10051023571714],[-32.506525065250656,83.06505011304961],[-32.488524885248836,83.05829580397005],[-32.481324813248136,83.044787185811],[-32.4921249212492,83.03803287673148],[-32.95292952929529,83.02283568130252],[-33.050130501305006,83.00257275406395],[-33.47133471334712,82.98906413590487],[-33.89253892538926,82.97555551774582],[-34.31014310143101,82.96204689958674],[-34.73134731347312,82.94684970415781],[-35.1489514895149,82.93334108599873],[-35.57015570155701,82.91983246783968],[-35.62055620556205,82.9080124269505],[-35.54135541355413,82.89450380879146],[-35.37215372153722,82.90125811787098],[-35.296552965529656,82.89281523152155],[-35.32175321753218,82.88437234517215],[-35.42255422554226,82.86748657247333],[-35.42615426154262,82.8590436861239],[-35.43335433354332,82.84722364523472],[-35.44775447754478,82.83878075888532],[-35.42615426154262,82.83033787253589],[-35.4009540095401,82.82527214072624],[-35.4009540095401,82.81851783164672],[-35.48375483754836,82.80332063621776],[-35.53055530555304,82.78812344078884],[-35.55215552155522,82.76617193628036],[-35.5269552695527,82.7509747408514],[-35.46935469354693,82.74590900904175],[-35.37575375753758,82.74928616358153],[-35.39735397353974,82.76279478174058],[-35.41895418954189,82.77292624535988],[-35.42615426154262,82.78305770897919],[-35.39375393753937,82.79825490440814],[-35.29295292952929,82.81176352256719],[-35.26415264152641,82.82527214072624],[-35.30015300153002,82.83878075888532],[-35.310953109531084,82.84553506796485],[-35.28935289352893,82.85397795431425],[-34.9509495094951,82.90463527241073],[-34.48654486544865,82.91307815876016],[-34.02574025740256,82.91983246783968],[-33.84213842138422,82.88606092244203],[-33.8169381693817,82.8691751497432],[-33.80613806138061,82.84215791342507],[-33.820538205382036,82.82189498618649],[-33.93573935739357,82.79825490440814],[-33.88533885338853,82.79487774986836],[-33.72333723337232,82.81682925437684],[-33.687336873368736,82.83540360434554],[-33.6981369813698,82.85397795431425],[-33.73053730537305,82.89112665425168],[-33.737737377373776,82.9080124269505],[-33.70893708937089,82.92489819964933],[-33.60093600936008,82.94516112688791],[-33.12933129331293,82.96711263139639],[-33.050130501305006,82.98230982682534],[-32.6109261092611,82.98568698136512],[-32.17532175321753,82.98906413590487],[-32.160921609216075,82.9958184449844],[-31.826118261182614,82.99412986771452],[-31.754117541175418,82.98399840409522],[-31.739717397173962,82.97893267228557],[-31.72171721717217,82.97048978593617],[-31.714517145171442,82.95866974504699],[-31.728917289172898,82.94853828142769],[-31.725317253172534,82.94516112688791],[-31.72171721717217,82.94178397234816],[-31.714517145171442,82.93840681780839],[-31.692916929169286,82.93165250872886],[-31.6641166411664,82.93165250872886],[-31.61371613716136,82.93840681780839],[-31.59571595715957,82.94347254961804],[-31.592115921159206,82.94853828142769],[-31.592115921159206,82.95698116777712],[-31.584915849158477,82.96880120866629],[-31.548915489154894,82.99244129044465],[-31.505715057150553,83.00088417679405],[-31.46251462514624,83.0059499086037],[-31.390513905139045,83.02114710403265],[-31.012510125101244,83.04647576308088],[-30.634506345063443,83.07180442212913],[-30.252902529025278,83.09713308117736],[-30.098100981009793,83.12583889476537],[-29.637296372963732,83.11570743114606],[-29.180091800918007,83.10557596752679],[-28.719287192871917,83.09544450390749],[-28.26208262082619,83.08531304028818],[-28.251282512825128,83.06167295850983],[-28.200882008820088,83.04985291762065],[-28.14328143281432,83.04816434035078],[-28.10368103681037,83.05154149489053],[-27.948879488794887,83.08193588574841],[-27.49167491674916,83.07687015393878],[-27.38007380073799,83.05998438123996],[-26.998469984699852,83.0633615357797],[-26.616866168661687,83.06673869031948],[-26.548465484654855,83.08531304028818],[-26.105661056610558,83.11233027660631],[-25.66285662856629,83.13934751292445],[-25.22005220052199,83.16805332651245],[-25.02565025650256,83.15623328562327],[-24.84204842048419,83.11233027660631],[-24.946449464494634,83.10388739025689],[-24.971649716497154,83.09206734936771],[-24.978849788497882,83.07855873120866],[-24.971649716497154,83.06842726758936],[-24.906849068490686,83.04309860854113],[-24.78444784447845,83.02790141311218],[-24.770047700476994,83.0245242585724],[-24.75924759247593,83.01776994949287],[-24.755647556475566,83.01101564041335],[-24.7520475204752,83.00426133133382],[-24.7520475204752,82.9975070222543],[-24.762847628476266,82.9958184449844],[-24.788047880478786,82.99244129044465],[-24.896048960489594,82.95529259050721],[-25.09405094050939,82.91138958149025],[-25.115651156511547,82.90294669514086],[-25.130051300513003,82.89281523152155],[-25.130051300513003,82.88099519063238],[-25.108451084510847,82.87255230428298],[-25.148051480514795,82.85228937704437],[-25.58725587255873,82.78981201805871],[-25.904059040590397,82.78305770897919],[-25.87165871658715,82.77461482262976],[-25.767257672576733,82.76786051355023],[-25.68805688056881,82.77630339989966],[-25.583655836558364,82.76954909082014],[-25.515255152551532,82.78643486351896],[-25.16965169651695,82.82527214072624],[-24.824048240482398,82.86242084066367],[-24.478444784447845,82.89956954060108],[-24.251642516425164,82.88606092244203],[-24.060840608406068,82.90463527241073],[-24.03924039240391,82.90970100422038],[-23.9960399603996,82.9164553132999],[-23.934839348393467,82.9164553132999],[-23.873638736387363,82.9080124269505],[-23.841238412384115,82.89281523152155],[-23.88803888038879,82.89112665425168],[-23.98163981639817,82.87424088155285],[-24.024840248402484,82.87255230428298],[-24.003240032400328,82.84891222250462],[-23.91323913239131,82.82189498618649],[-23.88083880838809,82.79825490440814],[-23.91323913239131,82.77968055443941],[-23.98883988839887,82.77123766809001],[-24.024840248402484,82.76279478174058],[-23.798037980379803,82.77461482262976],[-23.765637656376555,82.78305770897919],[-23.73683736837367,82.79825490440814],[-23.747637476374763,82.81345209983706],[-23.726037260372607,82.82527214072624],[-23.66123661236611,82.83878075888532],[-23.38403384033839,82.85228937704437],[-23.211232112321113,82.83878075888532],[-23.17523175231753,82.82527214072624],[-23.17523175231753,82.80332063621776],[-23.103231032310305,82.79150059532859],[-22.934029340293392,82.79825490440814],[-22.869228692286924,82.76617193628036],[-22.844028440284404,82.75941762720083],[-22.750427504275024,82.77123766809001],[-22.692826928269284,82.76954909082014],[-22.6640266402664,82.77461482262976],[-22.646026460264608,82.78643486351896],[-22.649626496264943,82.80332063621776],[-22.566825668256683,82.79656632713824],[-22.401224012240107,82.76448335901048],[-22.192421924219246,82.74759758631166],[-22.124021240212386,82.72733465907305],[-22.05202052020519,82.71551461818387],[-21.91161911619116,82.71044888637422],[-21.879218792187913,82.7036945772947],[-21.81801818018181,82.70200600002482],[-21.78561785617856,82.69694026821517],[-21.78561785617856,82.68005449551634],[-21.62361623616235,82.67161160916692],[-21.476014760147592,82.64121721830904],[-21.339213392133928,82.62602002288008],[-21.32481324813247,82.61757713653068],[-21.317613176131744,82.60575709564151],[-21.32481324813247,82.59900278656198],[-21.35721357213572,82.58380559113303],[-21.371613716137148,82.57367412751373],[-21.404014040140396,82.55509977754502],[-21.450814508145072,82.5466568911956],[-21.537215372153725,82.54327973665585],[-21.839618396183965,82.48417953220994],[-22.142021420214206,82.46222802770149],[-22.307623076230755,82.42676790503393],[-22.27882278822787,82.41832501868453],[-22.217622176221766,82.40650497779535],[-22.19602196021961,82.39299635963627],[-22.224822248222466,82.37948774147722],[-22.43722437224372,82.34065046426991],[-22.905229052290508,82.32376469157109],[-23.36963369633696,82.30856749614213],[-23.83763837638375,82.2933703007132],[-23.88803888038879,82.27817310528425],[-24.384843848438493,82.26804164166495],[-24.881648816488166,82.25622160077577],[-25.37845378453784,82.2444015598866],[-25.875258752587513,82.23258151899742],[-26.372063720637215,82.22076147810824],[-26.868868688686888,82.20894143721907],[-27.36567365673656,82.19712139632989],[-27.862478624786235,82.18530135544071],[-28.359283592835936,82.17348131455154],[-28.859688596885974,82.16334985093224],[-29.356493564935647,82.15152981004306],[-29.85329853298532,82.13970976915388],[-29.874898748987476,82.14308692369363],[-29.907299072990725,82.16334985093224],[-29.92889928899288,82.16672700547201],[-30.224102241022393,82.17010416001176],[-30.393303933039334,82.19543281906002],[-30.735307353073523,82.20218712813954],[-31.077310773107712,82.20894143721907],[-31.415714157141565,82.21569574629859],[-31.581315813158113,82.22076147810824],[-31.624516245162454,82.20894143721907],[-31.178111781117792,82.19543281906002],[-30.73170731707316,82.18192420090094],[-30.28890288902889,82.17010416001176],[-30.2061020610206,82.15659554185271],[-30.090900909009093,82.15152981004306],[-30.033300333003325,82.14139834642376],[-30.015300153001533,82.13464403734423],[-29.990099900999013,82.11944684191528],[-29.972099720997193,82.11269253283575],[-29.90369903699036,82.0991839146767],[-29.943299432994337,82.08567529651762],[-30.317703177031774,82.05865806019952],[-30.69210692106921,82.03332940115126],[-31.066510665106648,82.00631216483313],[-31.102511025110232,81.99786927848373],[-31.127711277112752,81.99786927848373],[-31.138511385113844,81.99618070121386],[-31.149311493114936,81.99111496940421],[-31.163711637116364,81.97929492851503],[-31.170911709117092,81.97591777397525],[-31.224912249122497,81.96747488762583],[-31.498514985149853,81.96409773308608],[-31.775717757177574,81.9607205785463],[-31.80451804518046,81.94721196038725],[-31.840518405184042,81.93876907403782],[-31.91251912519124,81.93876907403782],[-31.9881198811988,81.9235718786089],[-32.07452074520745,81.93032618768842],[-32.564125641256396,81.88304602413172],[-32.67932679326793,81.85265163327381],[-32.78012780127801,81.84083159238463],[-32.79092790927908,81.83745443784488],[-32.798127981279805,81.82901155149546],[-32.80532805328053,81.8138143560665],[-32.81252812528126,81.79355142882793],[-32.8161281612816,81.77497707885922],[-32.8089280892809,81.76146846070014],[-32.78732787327874,81.75133699708084],[-32.72972729727297,81.75133699708084],[-32.70812708127082,81.74458268800132],[-32.70092700927009,81.73276264711214],[-32.70452704527045,81.71925402895309],[-32.71892718927188,81.69223679263496],[-32.66852668526684,81.677039597206],[-32.6109261092611,81.67366244266626],[-32.50292502925029,81.68379390628556],[-32.14652146521465,81.68210532901566],[-32.14292142921428,81.70574541079401],[-32.13212132121322,81.72431976076274],[-32.110521105211035,81.73613980165192],[-31.934119341193394,81.79355142882793],[-31.678516785167858,81.8340772833051],[-31.24291242912429,81.84927447873406],[-30.803708037080355,81.86447167416298],[-30.69930699306994,81.88304602413172],[-30.59130591305913,81.88135744686181],[-30.486904869048686,81.90330895137029],[-30.11250112501125,81.92019472406912],[-30.065700657006573,81.93032618768842],[-29.788497884978852,81.94890053765712],[-29.77769777697776,81.94721196038725],[-29.75969759697597,81.93876907403782],[-29.748897488974876,81.93708049676795],[-29.56889568895687,81.94383480584747],[-29.56889568895687,81.91006326044982],[-29.565295652956536,81.89655464229077],[-29.55089550895508,81.88980033321124],[-29.34209342093419,81.90330895137029],[-29.31689316893167,81.91175183771972],[-29.30969309693097,81.91850614679925],[-29.302493024930243,81.92694903314865],[-29.295292952929515,81.93539191949807],[-29.29169291692915,81.94721196038725],[-29.29169291692915,81.9607205785463],[-29.288092880928815,81.96409773308608],[-29.280892808928087,81.96747488762583],[-29.27369273692736,81.96916346489573],[-29.24129241292411,81.9708520421656],[-29.03969039690395,81.99955785575361],[-28.784087840878414,81.99955785575361],[-28.668886688866877,82.01306647391269],[-28.55368553685537,82.00800074210304],[-28.39528395283952,82.03164082388139],[-28.334083340833416,82.03164082388139],[-28.247682476824764,82.02319793753196],[-28.19368193681936,82.02826366934161],[-27.938079380793795,82.02488651480186],[-27.819278192781923,82.05696948292962],[-27.761677616776154,82.06203521473927],[-27.311673116731157,82.05190375111997],[-26.865268652686524,82.04177228750069],[-26.415264152641527,82.02995224661149],[-25.96525965259653,82.01982078299221],[-25.518855188551868,82.00968931937291],[-25.06885068850687,81.99786927848373],[-24.618846188461873,81.98773781486443],[-24.63324633246333,81.96916346489573],[-24.680046800468006,81.9421462285776],[-24.698046980469798,81.92526045587877],[-24.654846548465486,81.91006326044982],[-24.6260462604626,81.87966886959194],[-24.61524615246151,81.84083159238463],[-24.64044640446403,81.8053714697171],[-24.654846548465486,81.7952400060978],[-24.672846728467277,81.78848569701827],[-24.705247052470526,81.78173138793875],[-25.108451084510847,81.73951695619166],[-25.511655116551168,81.69899110171448],[-25.911259112591125,81.6584652472373],[-26.314463144631446,81.61625081549025],[-26.462064620646203,81.57403638374316],[-26.606066060660595,81.56052776558411],[-26.70326703267031,81.54195341561541],[-26.72126721267213,81.53182195199611],[-26.699666996669947,81.53182195199611],[-26.49446494464945,81.51493617929728],[-26.47646476464763,81.5115590247575],[-26.465664656646567,81.5031161384081],[-26.46926469264693,81.49129609751893],[-26.498064980649815,81.47103317028032],[-26.505265052650515,81.45752455212127],[-26.48366483664836,81.45245882031162],[-26.44406444064441,81.43388447034292],[-26.422464224642255,81.42881873853327],[-26.386463864638642,81.42713016126336],[-26.001260012600113,81.49467325205867],[-25.616056160561612,81.56052776558411],[-25.47925479254792,81.55715061104434],[-25.004050040500402,81.6010536200613],[-24.528845288452885,81.64664520634813],[-24.496444964449637,81.64326805180835],[-24.46404464044639,81.63651374272882],[-24.435244352443533,81.63313658818907],[-24.402844028440285,81.64157947453847],[-24.359643596435973,81.66353097904695],[-24.31284312843127,81.67535101993613],[-24.03924039240391,81.71081114260366],[-23.765637656376555,81.74627126527122],[-23.474034740347406,81.71418829714344],[-23.405634056340546,81.71925402895309],[-23.373233732337326,81.72769691530249],[-23.355233552335505,81.74120553346157],[-23.32643326433265,81.7766656561291],[-23.30843308433083,81.79186285155805],[-23.32643326433265,81.79861716063758],[-23.322833228332286,81.81212577879663],[-23.337233372333714,81.83576586057498],[-23.330033300332985,81.85265163327381],[-23.340833408334078,81.85602878781359],[-23.355233552335505,81.86447167416298],[-23.362433624336234,81.87291456051241],[-23.35883358833587,81.88304602413172],[-23.348033480334806,81.88811175594137],[-23.286832868328673,81.90162037410042],[-23.265232652326517,81.91850614679925],[-23.272432724327246,81.9337033422282],[-23.312033120331193,81.96578631035595],[-23.23283232832327,81.9894263921343],[-23.229232292322905,81.99786927848373],[-23.229232292322905,82.00462358756326],[-23.22563225632257,82.01137789664278],[-23.196831968319685,82.02150936026209],[-23.15723157231571,82.02488651480186],[-23.085230852308513,82.02319793753196],[-23.09243092430924,82.01644362845244],[-23.114031140311397,82.00800074210304],[-23.12483124831249,82.00293501029338],[-23.088830888308877,82.00462358756326],[-23.05643056430563,82.00968931937291],[-22.95562955629555,82.04177228750069],[-22.56322563225632,82.05190375111997],[-22.17082170821709,82.06203521473927],[-21.778417784177833,82.07216667835857],[-21.389613896138968,82.08398671924775],[-21.328413284132836,82.07723241016822],[-21.292412924129223,82.06372379200914],[-21.119611196111947,81.97760635124513],[-21.090810908109063,81.95734342400655],[-21.069210692106907,81.9337033422282],[-21.058410584105843,81.9134404149896],[-21.05481054810548,81.90162037410042],[-21.062010620106207,81.89148891048112],[-21.087210872108727,81.86109451962324],[-21.090810908109063,81.85771736508346],[-21.087210872108727,81.84252016965453],[-21.080010800108,81.83576586057498],[-21.069210692106907,81.83070012876533],[-21.05481054810548,81.82056866514606],[-21.051210512105115,81.8138143560665],[-21.040410404104023,81.7952400060978],[-21.026010260102595,81.77159992431945],[-21.026010260102595,81.7665341925098],[-21.02961029610296,81.76146846070014],[-21.033210332103323,81.74458268800132],[-21.040410404104023,81.73276264711214],[-21.080010800108,81.72431976076274],[-21.087210872108727,81.71249971987356],[-21.090810908109063,81.69392536990483],[-21.10521105211052,81.67197386539638],[-21.12321123211231,81.65339951542765],[-21.152011520115195,81.64326805180835],[-21.144811448114467,81.63651374272882],[-21.162811628116287,81.62300512456977],[-21.19881198811987,81.57403638374316],[-21.238412384123848,81.53857626107563],[-21.25641256412564,81.51831333383706],[-21.53361533615336,81.41362154310431],[-21.814418144181445,81.31061832964147],[-22.055620556205554,81.27853536151369],[-22.080820808208074,81.26840389789442],[-22.091620916209166,81.26840389789442],[-22.09522095220953,81.25658385700521],[-22.098820988209866,81.2194351570678],[-22.109621096210958,81.2194351570678],[-22.15282152821527,81.2093036934485],[-22.181621816218154,81.20423796163885],[-22.242822428224287,81.20423796163885],[-22.257222572225714,81.20254938436898],[-22.268022680226807,81.19579507528945],[-22.27162271622717,81.18566361167015],[-22.275222752227506,81.17384357078097],[-22.275222752227506,81.16033495262192],[-22.27162271622717,81.15020348900262],[-22.444424444244447,81.12487482995436],[-22.559625596255955,81.11980909814471],[-22.570425704257048,81.11643194360497],[-22.577625776257747,81.10798905725554],[-22.58122581225811,81.09448043909649],[-22.58122581225811,81.08603755274706],[-22.584825848258475,81.08097182093744],[-22.599225992259903,81.07421751185788],[-22.6640266402664,81.06408604823861],[-23.10683106831067,80.92224555756846],[-23.13203132031319,80.91717982575881],[-23.178831788317865,80.91886840302868],[-23.265232652326517,80.8969168985202],[-23.27603276032761,80.89016258944068],[-23.26883268832688,80.87665397128163],[-23.25803258032579,80.86989966220207],[-23.22563225632257,80.8597681985828],[-23.214832148321477,80.8496367349635],[-23.214832148321477,80.83443953953454],[-23.22563225632257,80.82261949864537],[-23.26883268832688,80.80066799413689],[-23.30843308433083,80.79222510778749],[-23.362433624336234,80.77365075781879],[-23.50283502835029,80.7516992533103],[-23.492034920349198,80.74325636696088],[-23.466834668346678,80.73650205788135],[-23.45963459634595,80.72974774880183],[-23.45963459634595,80.71623913064275],[-23.474034740347406,80.70779624429335],[-23.607236072360706,80.684156162515],[-23.67923679236793,80.68246758524512],[-23.715237152371515,80.67740185343547],[-23.852038520385207,80.63687599895826],[-23.884438844388427,80.61830164898956],[-23.898838988389883,80.60141587629073],[-23.884438844388427,80.5862186808618],[-23.866438664386635,80.58284152632203],[-23.556835568355666,80.64700746257756],[-23.247232472324725,80.712861976103],[-23.15003150031501,80.71623913064275],[-23.09243092430924,80.72805917153195],[-23.07443074430745,80.7516992533103],[-23.110431104311033,80.76183071692958],[-23.12483124831249,80.76351929419948],[-23.103231032310305,80.78378222143806],[-23.060030600305993,80.79560226232724],[-22.934029340293392,80.81417661229597],[-22.912429124291236,80.82430807591524],[-22.912429124291236,80.8395052713442],[-22.92322923229233,80.85132531223337],[-22.98082980829807,80.87327681674185],[-22.97362973629737,80.88003112582138],[-22.746827468274688,80.93068844391786],[-22.30402304023039,80.96277141204564],[-22.289622896228963,80.96783714385529],[-22.275222752227506,80.97459145293482],[-22.264422644226443,80.986411493824],[-22.239222392223922,81.01680588468187],[-22.232022320223194,81.02018303922165],[-22.20322203222031,81.0252487710313],[-22.084420844208438,81.01005157560235],[-22.02682026820267,81.01174015287222],[-21.958419584195838,81.02187161649152],[-21.947619476194745,81.02693734830117],[-21.93681936819368,81.0353802346506],[-21.929619296192953,81.0539545846193],[-21.922419224192225,81.06408604823861],[-21.897218972189705,81.07759466639766],[-21.80001800017999,81.08772613001696],[-21.461614616146164,81.16708926170145],[-21.386013860138604,81.19410649801955],[-21.364413644136448,81.2008608070991],[-20.950409504095035,81.23632092976663],[-20.860408604086047,81.28022393878359],[-20.756007560075602,81.29035540240287],[-20.723607236072354,81.30386402056195],[-20.716407164071626,81.31399548418125],[-20.712807128071262,81.34101272049935],[-20.705607056070562,81.35114418411865],[-20.691206912069106,81.35958707046808],[-20.270002700026993,81.45077024304175],[-19.852398523985244,81.54364199288528],[-19.834398343983423,81.55546203377446],[-20.05040050400504,81.58754500190224],[-20.036000360003584,81.59767646552152],[-20.010800108001064,81.60443077460107],[-19.877598775987764,81.62300512456977],[-19.945999459994596,81.64664520634813],[-19.931599315993168,81.66015382450718],[-19.902799027990284,81.67028528812648],[-19.708397083970823,81.69561394717473],[-19.643596435964355,81.69054821536508],[-19.643596435964355,81.6584652472373],[-19.643596435964355,81.648333783618],[-19.63999639996399,81.63651374272882],[-19.632796327963263,81.63144801091917],[-19.6219962199622,81.6297594336493],[-19.38799387993879,81.63482516545895],[-19.315993159931594,81.6213165472999],[-19.290792907929074,81.61962797003],[-19.290792907929074,81.6111850836806],[-19.26199261992619,81.6111850836806],[-19.15399153991538,81.62469370183965],[-19.08559085590855,81.62469370183965],[-19.024390243902445,81.61962797003],[-18.999189991899925,81.6111850836806],[-18.98478984789847,81.60949650641072],[-19.006390063900625,81.59598788825164],[-19.247592475924762,81.55546203377446],[-19.27999279992798,81.54195341561541],[-19.290792907929074,81.53351052926598],[-19.294392943929438,81.52506764291658],[-19.297992979929802,81.51493617929728],[-19.301593015930166,81.5031161384081],[-19.3051930519305,81.49805040659845],[-19.315993159931594,81.48791894297915],[-19.319593195931958,81.48116463389962],[-19.330393303933022,81.46259028393092],[-19.333993339933386,81.45752455212127],[-19.373593735937362,81.42881873853327],[-19.467194671946714,81.40517865675491],[-19.503195031950327,81.37816142043678],[-19.459994599945986,81.374784265897],[-19.06039060390603,81.43895020215257],[-18.657186571865708,81.5031161384081],[-18.52398523985238,81.50649329294785],[-18.47358473584734,81.49973898386833],[-18.419584195841963,81.48116463389962],[-18.369183691836923,81.4744103248201],[-18.21438214382144,81.4828532111695],[-17.976779767797666,81.44739308850197],[-17.958779587795874,81.44063877942244],[-17.915579155791562,81.41531012037419],[-17.85437854378543,81.40349007948501],[-17.832778327783274,81.40349007948501],[-17.818378183781846,81.41024438856456],[-17.82197821978218,81.42375300672362],[-17.861578615786158,81.46596743847067],[-17.850778507785066,81.46765601574057],[-17.62037620376202,81.43050731580314],[-17.60237602376023,81.42375300672362],[-17.559175591755917,81.39335861586574],[-17.54477544775446,81.38998146132596],[-17.505175051750513,81.38829288405609],[-17.465574655746565,81.39167003859583],[-17.39357393573934,81.40855581129466],[-17.145171451714504,81.41362154310431],[-17.15237152371523,81.42544158399349],[-17.163171631716324,81.43388447034292],[-17.19197191971918,81.44739308850197],[-17.199171991719908,81.4541473975815],[-17.209972099721,81.46090170666102],[-17.213572135721364,81.47103317028032],[-17.220772207722064,81.48116463389962],[-17.19197191971918,81.4845417884394],[-17.01557015570154,81.4845417884394],[-16.99036990369902,81.4929846747888],[-16.9579695796958,81.50649329294785],[-16.92556925569255,81.51662475656715],[-16.835568355683563,81.52337906564668],[-16.81396813968138,81.53688768380576],[-16.835568355683563,81.55039630196481],[-16.87516875168751,81.55377345650459],[-16.986769867698683,81.55377345650459],[-17.037170371703724,81.56221634285399],[-17.047970479704787,81.56221634285399],[-17.044370443704423,81.56559349739376],[-17.029970299702995,81.58079069282269],[-17.019170191701903,81.58416784736247],[-17.00117001170011,81.58923357917212],[-16.97596975969759,81.5926107337119],[-16.93276932769328,81.58923357917212],[-16.91476914769146,81.59092215644199],[-16.90036900369003,81.59598788825164],[-16.853568535685355,81.61962797003],[-16.8391683916839,81.62469370183965],[-16.727567275672754,81.63144801091917],[-16.579965799657998,81.61625081549025],[-16.475564755647554,81.62469370183965],[-16.461164611646097,81.6297594336493],[-16.450364503645034,81.6398908972686],[-16.46476464764646,81.648333783618],[-16.54036540365402,81.68379390628556],[-16.518765187651866,81.69054821536508],[-16.500765007650074,81.70574541079401],[-16.48996489964898,81.72769691530249],[-16.486364863648618,81.74964841981097],[-16.15516155161552,81.75640272889049],[-16.14436144361443,81.77328850158932],[-16.1371613716137,81.78341996520862],[-16.126361263612637,81.7867971197484],[-15.942759427594268,81.77328850158932],[-15.845558455584552,81.78173138793875],[-15.823958239582396,81.79017427428815],[-15.82755827558276,81.80030573790745],[-15.823958239582396,81.81212577879663],[-15.816758167581668,81.8239458196858],[-15.805958059580604,81.82901155149546],[-15.791557915579148,81.83238870603523],[-15.543155431554311,81.83576586057498],[-15.29115291152911,81.83914301511476],[-15.237152371523706,81.83238870603523],[-15.24075240752407,81.82901155149546],[-15.244352443524434,81.82732297422558],[-15.255152551525498,81.8239458196858],[-15.208352083520822,81.8155029333364],[-14.776347763477617,81.8138143560665],[-14.347943479434775,81.8138143560665],[-13.919539195391934,81.81212577879663],[-13.487534875348757,81.76315703797005],[-13.055530555305552,81.71587687441331],[-12.91872918729186,81.72263118349284],[-12.803528035280351,81.71418829714344],[-12.695526955269543,81.69223679263496],[-12.569525695256942,81.69561394717473],[-12.29952299522995,81.66690813358673],[-12.025920259202593,81.63651374272882],[-11.867518675186744,81.59767646552152],[-11.745117451174508,81.55039630196481],[-11.734317343173416,81.54364199288528],[-11.709117091170896,81.51662475656715],[-11.694716947169468,81.50818187021775],[-11.680316803168012,81.50480471567798],[-11.431914319143175,81.49129609751893],[-11.377913779137799,81.47609890208997],[-11.395913959139591,81.46090170666102],[-11.6371163711637,81.38829288405609],[-11.903519035190357,81.35958707046808],[-12.166321663216621,81.33256983414995],[-12.187921879218777,81.32581552507042],[-12.195121951219505,81.31906121599087],[-12.216722167221661,81.30217544329204],[-12.227522275222753,81.29542113421252],[-12.245522455224545,81.28866682513299],[-12.285122851228493,81.28191251605347],[-12.432724327243278,81.24138666157629],[-12.490324903249018,81.23294377522686],[-12.533525335253358,81.22281231160758],[-12.52632526325263,81.20423796163885],[-12.529925299252994,81.19241792074968],[-12.537125371253694,81.18735218894003],[-12.839528395283935,81.13669487084354],[-13.141931419314176,81.08772613001696],[-13.156331563315632,81.08772613001696],[-13.18873188731888,81.09279186182661],[-13.203132031320308,81.09279186182661],[-13.28953289532896,81.06408604823861],[-13.307533075330753,81.0539545846193],[-13.32193321933218,81.043823121],[-13.336333363333637,81.02693734830117],[-13.343533435334336,81.02187161649152],[-13.354333543335429,81.02018303922165],[-13.685536855368554,81.00160868925295],[-14.077940779407783,81.02018303922165],[-14.5531455314553,80.98978864836377],[-14.491944919449196,80.96952572112517],[-14.203942039420383,80.91380267121903],[-14.131941319413187,80.8867854349009],[-14.157141571415707,80.84119384861407],[-14.200342003420019,80.81924234410562],[-14.2939429394294,80.78378222143806],[-14.62154621546216,80.74663352150066],[-14.725947259472576,80.7516992533103],[-15.021150211502118,80.73312490334158],[-15.319953199531994,80.71455055337287],[-15.337953379533786,80.71117339883313],[-15.359553595535942,80.69766478067405],[-15.395553955539555,80.65882750346674],[-15.420754207542075,80.64869603984747],[-15.838358383583824,80.64363030803781],[-16.252362523625237,80.63687599895826],[-16.35676356763568,80.65713892619686],[-16.709567095670963,80.66051608073664],[-17.062370623706244,80.66220465800652],[-17.087570875708764,80.66727038981617],[-17.170371703717024,80.70948482156322],[-17.202772027720272,80.71961628518252],[-17.238772387723884,80.7229934397223],[-17.4619746197462,80.71623913064275],[-17.44397443974438,80.67909043070534],[-17.440374403744045,80.65376177165709],[-17.458374583745837,80.64025315349804],[-17.616776167761685,80.64869603984747],[-17.836378363783638,80.62843311260886],[-18.066780667806682,80.5760872172425],[-18.32238322383222,80.5575128672738],[-18.59238592385924,80.57271006270273],[-18.95238952389522,80.63181026714864],[-19.164791647916473,80.63518742168839],[-19.23679236792367,80.64869603984747],[-19.47079470794708,80.6655818125463],[-19.84879848798488,80.61661307171968],[-20.223202232022317,80.5659557536232],[-20.514805148051465,80.56426717635333],[-20.810008100081006,80.56257859908342],[-20.84600846008459,80.5575128672738],[-20.824408244082434,80.5456928263846],[-20.799207992079914,80.54062709457497],[-20.406804068040685,80.53893851730507],[-20.3780037800378,80.53556136276532],[-20.36000360003598,80.52542989914602],[-20.35280352803528,80.51192128098697],[-20.35280352803528,80.49503550828814],[-20.35280352803528,80.46126396289048],[-20.298802988029877,80.46632969470014],[-20.223202232022317,80.49672408555801],[-19.855998559985608,80.5659557536232],[-19.48879488794887,80.63518742168839],[-19.02079020790208,80.58959583540155],[-18.963189631896313,80.5760872172425],[-18.84438844388444,80.57271006270273],[-18.678786787867864,80.54062709457497],[-18.39798397983978,80.52374132187614],[-18.117181171811723,80.50516697190741],[-18.05598055980559,80.49165835374836],[-17.681576815768153,80.50178981736767],[-17.31077310773108,80.51192128098697],[-16.896768967689667,80.58284152632203],[-16.860768607686083,80.58115294905215],[-16.82476824768247,80.57271006270273],[-16.69876698766987,80.52880705368577],[-16.44676446764467,80.47983831285919],[-16.11916119161191,80.45788680835071],[-15.795157951579512,80.4376238811121],[-15.755557555575564,80.4190495311434],[-15.787957879578784,80.40385233571448],[-16.27036270362703,80.29071765863233],[-16.284762847628457,80.29071765863233],[-16.299162991629913,80.29409481317208],[-16.309963099630977,80.29916054498173],[-16.34596345963459,80.32280062676008],[-16.360363603636017,80.32786635856974],[-16.374763747637473,80.32617778129986],[-16.3891638916389,80.31942347222034],[-16.399963999639994,80.30929200860103],[-16.403564035640358,80.29578339044198],[-16.39636396363963,80.28396334955278],[-16.378363783637838,80.27552046320338],[-16.342363423634225,80.26707757685395],[-16.327963279632797,80.26201184504433],[-16.37116371163711,80.2434374950756],[-16.3819638196382,80.23837176326595],[-16.385563855638537,80.2349946087262],[-16.44676446764467,80.21979741329724],[-16.846368463684627,80.20291164059842],[-16.88956889568894,80.19109159970924],[-17.123571235712348,80.18264871335984],[-17.256772567725676,80.21473168148759],[-17.289172891728924,80.21810883602737],[-17.580775807758073,80.18940302243936],[-17.87237872378722,80.16069720885136],[-18.268382683826843,80.18096013608994],[-18.664386643866436,80.20122306332854],[-18.772387723877245,80.22148599056712],[-19.024390243902445,80.23668318599607],[-19.1791917919179,80.26876615412385],[-19.474394743947443,80.26032326777442],[-19.636396363963627,80.22148599056712],[-19.726397263972643,80.16238578612123],[-19.780397803978047,80.1455000134224],[-20.172801728017276,80.10497415894523],[-20.172801728017276,80.0965312725958],[-19.992799927999272,80.0880883862464],[-19.967599675996752,80.08302265443675],[-19.989199891998908,80.0695140362777],[-20.054000540005404,80.04249679995957],[-20.079200792007924,80.03743106814991],[-20.194401944019432,80.03405391361014],[-20.22680226802268,80.02392244999086],[-20.15120151201512,80.01210240910169],[-20.07560075600756,79.99015090459321],[-20.35280352803528,79.88545911386046],[-20.388803888038865,79.86350760935198],[-20.41040410404102,79.85506472300258],[-20.41760417604175,79.84831041392306],[-20.424804248042477,79.83986752757363],[-20.35280352803528,79.81960460033505],[-20.115201152011508,79.8229817548748],[-20.10080100801008,79.82129317760493],[-20.090000900008988,79.8145388685254],[-20.08280082800829,79.8044074049061],[-20.079200792007924,79.79258736401692],[-20.07560075600756,79.78414447766752],[-20.07560075600756,79.77401301404822],[-20.068400684006832,79.76388155042892],[-20.046800468004676,79.75037293226987],[-19.996399963999636,79.74699577773009],[-19.97479974799748,79.73855289138069],[-19.971199711997116,79.72504427322161],[-19.971199711997116,79.71153565506256],[-19.978399783997844,79.69971561417339],[-19.97479974799748,79.6862069960143],[-19.967599675996752,79.67945268693478],[-19.953199531995324,79.67945268693478],[-19.931599315993168,79.68451841874443],[-19.84879848798488,79.68282984147456],[-19.82359823598236,79.69127272782396],[-19.81639816398163,79.69971561417339],[-19.805598055980568,79.71997854141196],[-19.794797947979475,79.72842142776139],[-19.783997839978383,79.73179858230114],[-19.485194851948506,79.77401301404822],[-19.46359463594635,79.77401301404822],[-19.44559445594456,79.76894728223857],[-19.369993699936998,79.74530720046022],[-19.258392583925826,79.72504427322161],[-19.207992079920785,79.70815850052279],[-19.20439204392042,79.69464988236373],[-19.215192151921514,79.69296130509383],[-19.22959229592294,79.6862069960143],[-19.247592475924762,79.6676326460456],[-19.258392583925826,79.66087833696608],[-19.384393843938426,79.62372963702865],[-19.377193771937726,79.60684386432982],[-19.36279362793627,79.58995809163099],[-19.351993519935206,79.57476089620206],[-19.351993519935206,79.55112081442371],[-19.366393663936634,79.54605508261406],[-19.405994059940582,79.5207264235658],[-19.456394563945622,79.50552922813688],[-19.47079470794708,79.49539776451758],[-19.485194851948506,79.48020056908862],[-19.499594995949963,79.43967471461144],[-19.510395103951026,79.42447751918249],[-19.56439564395643,79.38564024197518],[-19.57159571595716,79.373820201086],[-19.560795607956067,79.36706589200648],[-19.506795067950662,79.35693442838718],[-19.492394923949234,79.35018011930765],[-19.477994779947807,79.34004865568835],[-19.467194671946714,79.32822861479917],[-19.467194671946714,79.31471999664012],[-19.47079470794708,79.3062771102907],[-19.492394923949234,79.28432560578224],[-19.510395103951026,79.25561979219424],[-19.52119521195212,79.24717690584481],[-19.56439564395643,79.21340536044715],[-19.58959589595895,79.20158531955798],[-19.600396003960043,79.19145385593868],[-19.603996039960407,79.1796338150495],[-19.58959589595895,79.18469954685915],[-19.557195571955702,79.20665105136763],[-19.503195031950327,79.23366828768576],[-19.431194311943102,79.27925987397259],[-19.405994059940582,79.28770276032199],[-19.348393483934842,79.28601418305212],[-19.319593195931958,79.29107991486177],[-19.3051930519305,79.3079656875606],[-19.308793087930866,79.31471999664012],[-19.31239312393123,79.32991719206908],[-19.315993159931594,79.3366715011486],[-19.315993159931594,79.34342581022813],[-19.315993159931594,79.35018011930765],[-19.31239312393123,79.35693442838718],[-19.31239312393123,79.3653773147366],[-19.301593015930166,79.37550877835591],[-19.290792907929074,79.38564024197518],[-19.276392763927646,79.39239455105474],[-19.26199261992619,79.39070597378483],[-19.26199261992619,79.38226308743543],[-19.247592475924762,79.37550877835591],[-19.23679236792367,79.36706589200648],[-19.22959229592294,79.3552458511173],[-19.225992259922606,79.34004865568835],[-19.225992259922606,79.31471999664012],[-19.225992259922606,79.3079656875606],[-19.22959229592294,79.29952280121117],[-19.23679236792367,79.29107991486177],[-19.240392403924034,79.28263702851234],[-19.240392403924034,79.27250556489307],[-19.22959229592294,79.27419414216294],[-19.207992079920785,79.28770276032199],[-19.193591935919358,79.29276849213164],[-19.1791917919179,79.29276849213164],[-19.164791647916473,79.29107991486177],[-19.150391503915046,79.28601418305212],[-19.139591395913953,79.28094845124247],[-19.139591395913953,79.27757129670269],[-19.13599135991359,79.27081698762316],[-19.13599135991359,79.26743983308342],[-18.937989379893793,79.26068552400386],[-18.873188731887325,79.23704544222551],[-18.880388803888025,79.22522540133633],[-18.887588875888753,79.22184824679658],[-18.948789487894885,79.22691397860623],[-18.97758977589774,79.22015966952668],[-18.991989919899197,79.21509393771703],[-19.00279002790026,79.20665105136763],[-19.00279002790026,79.19314243320858],[-18.99558995589956,79.1796338150495],[-18.966789667896677,79.15937088781092],[-18.955989559895585,79.14923942419162],[-18.991989919899197,79.1509280014615],[-19.067590675906757,79.14417369238197],[-19.10359103591034,79.15261657873137],[-19.13599135991359,79.16781377416032],[-19.15399153991538,79.1711909287001],[-19.1719917199172,79.1711909287001],[-19.189991899918994,79.16274804235067],[-19.200792007920086,79.14923942419162],[-19.21159211592115,79.11715645606384],[-19.22959229592294,79.09689352882526],[-19.26199261992619,79.09689352882526],[-19.323193231932322,79.11377930152409],[-19.355593555935542,79.11715645606384],[-19.380793807938062,79.11209072425419],[-19.43839438394383,79.08676206520596],[-19.467194671946714,79.08507348793609],[-19.52119521195212,79.11209072425419],[-19.549995499955003,79.11377930152409],[-19.567995679956795,79.10533641517466],[-19.600396003960043,79.08338491066618],[-19.61479614796147,79.07663060158666],[-19.632796327963263,79.07325344704691],[-19.69759697596976,79.07663060158666],[-19.737197371973707,79.07494202431678],[-19.755197551975527,79.06987629250713],[-19.76599765997659,79.06481056069748],[-19.801998019980203,79.04623621072878],[-19.877598775987764,79.0327275925697],[-19.909999099990983,79.01753039714077],[-19.906399063990648,78.99389031536242],[-19.888398883988827,78.97869311993347],[-19.783997839978383,78.93141295637676],[-19.769597695976955,78.91621576094781],[-19.76599765997659,78.8976414109791],[-19.776797767977683,78.88075563828028],[-19.794797947979475,78.8689355973911],[-19.881198811988128,78.83685262926332],[-19.92439924399244,78.82840974291389],[-20.237602376023744,78.82672116564402],[-20.331203312033125,78.8385412065332],[-20.41040410404102,78.8588041337718],[-20.44280442804427,78.86049271104167],[-20.6372063720637,78.83516405199344],[-20.651606516065158,78.8300983201838],[-20.601206012060118,78.80983539294519],[-20.57960579605796,78.79463819751626],[-20.56880568805687,78.77606384754753],[-20.68760687606874,78.76762096119813],[-20.950409504095035,78.78281815662706],[-20.97200972009719,78.77944100208731],[-20.97920979209792,78.76762096119813],[-20.92160921609215,78.74735803395953],[-20.856808568085683,78.71865222037152],[-20.842408424084226,78.71527506583178],[-20.860408604086047,78.70514360221247],[-21.094410944109427,78.67306063408469],[-21.191611916119143,78.64435482049669],[-21.2060120601206,78.63253477960751],[-20.889208892088902,78.62746904779786],[-20.864008640086382,78.62240331598821],[-20.842408424084226,78.60889469782916],[-20.849608496084954,78.59200892513033],[-20.867608676086746,78.57681172970138],[-20.889208892088902,78.5649916888122],[-21.04761047610475,78.50420290709641],[-21.065610656106543,78.48900571166749],[-21.07281072810727,78.47380851623853],[-21.076410764107635,78.45523416626983],[-21.087210872108727,78.43665981630113],[-21.108811088110883,78.41470831179265],[-21.227612276122755,78.36067383915639],[-21.296012960129588,78.29988505744063],[-21.29961299612995,78.29313074836108],[-21.303213032130316,78.28468786201168],[-21.29961299612995,78.26949066658273],[-21.288812888128888,78.25598204842368],[-21.263612636126368,78.23234196664532],[-21.238412384123848,78.18506180308859],[-21.267212672126703,78.16142172131023],[-21.368013680136784,78.1445359486114],[-21.353613536135356,78.13271590772223],[-21.32481324813247,78.11245298048365],[-21.317613176131744,78.0972557850547],[-21.321213212132108,78.0769928578161],[-21.342813428134264,78.06686139419682],[-21.389613896138968,78.06010708511727],[-21.630816308163077,77.9976297261316],[-21.64881648816487,77.98749826251233],[-21.64161641616417,77.9790553761629],[-21.562415624156245,77.94697240803512],[-21.54801548015479,77.9317752126062],[-21.544415444154424,77.91151228536759],[-21.55881558815588,77.89800366720854],[-21.580415804158037,77.88787220358924],[-21.620016200161984,77.87605216270006],[-21.778417784177833,77.85241208092171],[-21.803618036180353,77.85241208092171],[-21.814418144181445,77.85072350365184],[-21.821618216182145,77.84228061730241],[-21.81801818018181,77.83552630822288],[-21.80001800017999,77.81864053552405],[-21.796417964179625,77.81019764917463],[-21.803618036180353,77.80682049463488],[-21.846818468184665,77.78149183558662],[-21.857618576185757,77.77136037196735],[-21.86841868418685,77.74940886745887],[-21.87561875618755,77.73927740383957],[-21.90081900819007,77.72576878568051],[-21.92601926019259,77.71563732206121],[-21.95121951219511,77.70212870390213],[-21.965619656196566,77.67848862212378],[-21.64881648816487,77.6582256948852],[-21.494014940149384,77.67342289031413],[-21.479614796147956,77.67173431304425],[-21.447214472144708,77.66329142669485],[-21.454414544145436,77.65315996307555],[-21.59841598415983,77.56197679050189],[-21.605616056160557,77.55015674961271],[-21.59121591215913,77.54846817234281],[-21.576815768157672,77.55015674961271],[-21.562415624156245,77.55353390415246],[-21.551615516155152,77.55859963596211],[-21.519215192151904,77.58392829501037],[-21.353613536135356,77.66329142669485],[-21.292412924129223,77.67511146758403],[-21.3320133201332,77.6768000448539],[-21.378813788137876,77.68862008574308],[-21.40761407614076,77.71226016752144],[-21.400414004140032,77.74940886745887],[-21.375213752137512,77.77642610377697],[-20.961209612096127,77.9706124898135],[-20.936009360093607,77.97398964435325],[-20.759607596075966,77.9706124898135],[-20.396003960039593,77.89293793539889],[-20.028800288002884,77.8135748037144],[-19.960399603996024,77.79162329920592],[-19.657996579965783,77.76122890834804],[-19.355593555935542,77.73252309476004],[-19.294392943929438,77.71394874479131],[-19.251192511925126,77.70888301298169],[-19.193591935919358,77.69030866301296],[-19.1791917919179,77.68862008574308],[-19.143191431914317,77.68693150847321],[-19.125191251912526,77.68355435393343],[-19.114391143911433,77.6768000448539],[-19.07119071190712,77.65147138580565],[-19.02079020790208,77.63458561310685],[-18.991989919899197,77.6193884176779],[-18.97758977589774,77.61601126313812],[-18.99558995589956,77.59912549043929],[-19.03519035190351,77.59574833589954],[-19.11079110791107,77.59743691316942],[-19.132391323913225,77.59237118135977],[-19.25479254792546,77.54340244053316],[-19.359193591935906,77.52651666783433],[-19.384393843938426,77.5298938223741],[-19.41319413194131,77.54340244053316],[-19.71559715597155,77.61769984040802],[-20.021600216002156,77.69199724028286],[-20.093600936009352,77.70212870390213],[-20.2592025920259,77.68862008574308],[-20.338403384033825,77.66160284942495],[-20.356403564035645,77.65991427215508],[-20.82080820808207,77.65315996307555],[-20.810008100081006,77.63120845856707],[-20.774007740077394,77.61769984040802],[-20.345603456034553,77.55522248142236],[-20.27720277202772,77.53327097691388],[-20.27720277202772,77.5298938223741],[-20.27720277202772,77.52651666783433],[-20.27720277202772,77.52313951329458],[-20.27720277202772,77.5197623587548],[-20.338403384033825,77.51638520421506],[-20.406804068040685,77.52313951329458],[-20.471604716047153,77.51807378148493],[-20.482404824048245,77.51469662694515],[-20.464404644046425,77.5113194724054],[-20.446404464044633,77.50287658605598],[-20.44280442804427,77.48936796789692],[-20.45360453604536,77.47754792700775],[-20.46800468004679,77.47417077246797],[-20.540005400053985,77.47923650427762],[-20.817208172081706,77.52820524510423],[-20.892808928089266,77.5298938223741],[-20.925209252092515,77.52313951329458],[-20.918009180091786,77.50963089513553],[-20.900009000089995,77.50287658605598],[-20.856808568085683,77.49781085424632],[-20.82080820808207,77.48767939062705],[-20.5112051120511,77.4539078452294],[-20.20160201602016,77.42182487710161],[-20.180001800018005,77.41507056802209],[-20.169201692016912,77.40493910440279],[-20.18360183601837,77.39649621805339],[-20.464404644046425,77.3829875998943],[-20.49320493204931,77.3745447135449],[-20.5040050400504,77.36272467265573],[-20.471604716047153,77.35934751811595],[-20.230402304023045,77.372856136275],[-19.978399783997844,77.35765894084608],[-19.726397263972643,77.34077316814725],[-19.650796507965083,77.30869020001947],[-19.629196291962927,77.30362446820982],[-19.492394923949234,77.29349300459054],[-19.46359463594635,77.28167296370134],[-19.452794527945287,77.26309861373264],[-19.441994419944194,77.2090641410964],[-19.398793987939882,77.21919560471568],[-19.380793807938062,77.2175070274458],[-19.272792727927282,77.1888012138578],[-19.251192511925126,77.1888012138578],[-19.175591755917566,77.19217836839758],[-19.125191251912526,77.19048979112767],[-19.092790927909277,77.18373548204815],[-19.074790747907485,77.18204690477828],[-19.063990639906393,77.18711263658793],[-19.08559085590855,77.20399840928675],[-19.09639096390964,77.21075271836628],[-19.107191071910705,77.21581845017593],[-19.107191071910705,77.22257275925546],[-19.10359103591034,77.22594991379523],[-19.099990999910005,77.22932706833498],[-19.09639096390964,77.23439280014463],[-19.09639096390964,77.23945853195428],[-19.092790927909277,77.27491865462181],[-19.08559085590855,77.30362446820982],[-19.081990819908185,77.31882166363877],[-19.03519035190351,77.32051024090865],[-18.83358833588335,77.29180442732064],[-18.62478624786246,77.29349300459054],[-18.563585635856356,77.2884272727809],[-18.53478534785347,77.28167296370134],[-18.50958509585095,77.26985292281216],[-18.462784627846275,77.24114710922416],[-18.444784447844484,77.23439280014463],[-18.361983619836195,77.22088418198558],[-18.325983259832583,77.2090641410964],[-18.2971829718297,77.1786697502385],[-18.268382683826843,77.12801243214201],[-18.25758257582575,77.10099519582391],[-18.25758257582575,77.07228938223591],[-18.268382683826843,77.0148777550599],[-18.27198271982718,76.9946148278213],[-18.25758257582575,76.94733466426459],[-18.25758257582575,76.93213746883563],[-18.26478264782648,76.92031742794646],[-18.300783007830063,76.89330019162833],[-18.311583115831155,76.87979157346928],[-18.33318333183331,76.84939718261137],[-18.34758347583474,76.83588856445232],[-18.379983799837987,76.81900279175349],[-18.45918459184591,76.80887132813419],[-18.487984879848796,76.78523124635583],[-18.495184951849524,76.77341120546666],[-18.49878498784986,76.75990258730761],[-18.502385023850223,76.74808254641843],[-18.50958509585095,76.74132823733888],[-18.527585275852744,76.74132823733888],[-18.5491854918549,76.74808254641843],[-18.585185851858512,76.76665689638713],[-18.613986139861396,76.77678836000644],[-18.62478624786246,76.77678836000644],[-18.635586355863552,76.76665689638713],[-18.639186391863916,76.75314827822805],[-18.635586355863552,76.73457392825935],[-18.628386283862824,76.7008023828617],[-18.678786787867864,76.72444246464005],[-18.729187291872904,76.75145970095818],[-18.75798757987579,76.75990258730761],[-18.811988119881192,76.76496831911726],[-18.837188371883713,76.77509978273653],[-18.85878858788587,76.78523124635583],[-18.880388803888025,76.79198555543536],[-18.97038970389704,76.80549417359444],[-18.98478984789847,76.81055990540409],[-19.031590315903145,76.83251140991254],[-19.063990639906393,76.83757714172219],[-19.391593915939154,76.83082283264267],[-19.44559445594456,76.8392657189921],[-19.46359463594635,76.84602002807162],[-19.510395103951026,76.87472584165963],[-19.52119521195212,76.87810299619937],[-19.582395823958223,76.87303726438975],[-19.64719647196472,76.87810299619937],[-19.895598955989556,76.92538315975611],[-20.223202232022317,76.93044889156576],[-20.24120241202411,76.92876031429586],[-20.27720277202772,76.92031742794646],[-20.31680316803167,76.91694027340668],[-20.514805148051465,76.94564608699469],[-20.590405904059025,76.94058035518503],[-20.583205832058326,76.92876031429586],[-20.583205832058326,76.92031742794646],[-20.590405904059025,76.9152516961368],[-20.74520745207451,76.88823445981868],[-20.756007560075602,76.88485730527893],[-20.781207812078122,76.87303726438975],[-20.792007920079186,76.86966010984997],[-20.806408064080642,76.87134868711985],[-20.87840878408784,76.8865458825488],[-21.036810368103687,76.90174307797776],[-21.35001350013499,76.8865458825488],[-21.504815048150476,76.90343165524763],[-21.731617316173157,76.89161161435845],[-21.713617136171365,76.87810299619937],[-21.681216812168117,76.87472584165963],[-21.587615876158765,76.87472584165963],[-21.436414364143644,76.85952864623067],[-21.069210692106907,76.87303726438975],[-21.011610116101167,76.86966010984997],[-20.925209252092515,76.84602002807162],[-20.892808928089266,76.84264287353184],[-20.806408064080642,76.85108575988127],[-20.777607776077758,76.84264287353184],[-20.943209432094307,76.82744567810292],[-21.044010440104387,76.79367413270526],[-21.069210692106907,76.78860840089561],[-21.094410944109427,76.78691982362571],[-21.108811088110883,76.79029697816549],[-21.141211412114103,76.79873986451491],[-21.177211772117715,76.80211701905466],[-21.184411844118443,76.80549417359444],[-21.18081180811808,76.80887132813419],[-21.24921249212491,76.81224848267397],[-21.285212852128524,76.80718275086431],[-21.314013140131408,76.79367413270526],[-21.285212852128524,76.78523124635583],[-21.220412204122027,76.78860840089561],[-21.195211952119507,76.78016551454618],[-21.29961299612995,76.76665689638713],[-21.317613176131744,76.75652543276783],[-21.328413284132836,76.74639396914853],[-21.497614976149748,76.69573665105204],[-21.66681666816669,76.68391661016287],[-21.63441634416344,76.66871941473394],[-21.59841598415983,76.65689937384477],[-21.62361623616235,76.64676791022546],[-21.65961659616596,76.64507933295556],[-21.731617316173157,76.65689937384477],[-21.81801818018181,76.69573665105204],[-21.828818288182873,76.7008023828617],[-21.84321843218433,76.71768815556052],[-21.854018540185393,76.72444246464005],[-21.890018900189006,76.74132823733888],[-21.92601926019259,76.76496831911726],[-21.95121951219511,76.77509978273653],[-22.066420664206646,76.79705128724501],[-22.09522095220953,76.80549417359444],[-22.15282152821527,76.84433145080175],[-22.174421744217426,76.85108575988127],[-22.19602196021961,76.85615149169092],[-22.264422644226443,76.85952864623067],[-22.469624696246967,76.83588856445232],[-22.469624696246967,76.8291342553728],[-22.433624336243355,76.82744567810292],[-22.397623976239743,76.82069136902336],[-22.383223832238315,76.81224848267397],[-22.37962379623795,76.80718275086431],[-22.383223832238315,76.80042844178479],[-22.37962379623795,76.79367413270526],[-22.365223652236523,76.78185409181609],[-22.32202322023221,76.76496831911726],[-22.307623076230755,76.75314827822805],[-22.358023580235795,76.74132823733888],[-22.53082530825307,76.75314827822805],[-22.646026460264608,76.74639396914853],[-22.703627036270348,76.7295081964497],[-22.743227432274324,76.69911380559182],[-22.721627216272168,76.682228032893],[-22.692826928269284,76.67209656927369],[-22.6640266402664,76.66534226019417],[-22.516425164251643,76.66534226019417],[-22.48762487624876,76.65352221930499],[-22.476824768247667,76.64845648749534],[-22.466024660246603,76.64339075568569],[-22.46242462424624,76.63832502387604],[-22.48042480424803,76.63157071479651],[-22.51282512825128,76.62143925117721],[-22.520025200252007,76.61637351936756],[-22.509225092250915,76.6028649012085],[-22.45522455224551,76.58091339670003],[-22.43722437224372,76.56740477854098],[-22.440824408244083,76.55727331492167],[-22.433624336243355,76.55051900584215],[-22.401224012240107,76.54207611949272],[-22.332823328233275,76.51674746044449],[-22.32202322023221,76.51505888317462],[-22.307623076230755,76.51505888317462],[-22.293222932229327,76.51505888317462],[-22.2860228602286,76.52012461498427],[-22.2860228602286,76.52856750133367],[-22.293222932229327,76.53363323314332],[-22.300423004230026,76.53701038768307],[-22.325623256232547,76.55220758311202],[-22.325623256232547,76.55896189219155],[-22.31122311223112,76.56740477854098],[-22.32202322023221,76.57078193308072],[-22.32922329223291,76.5741590876205],[-22.33642336423364,76.58091339670003],[-22.340023400234003,76.58935628304945],[-22.30402304023039,76.5944220148591],[-22.264422644226443,76.60455347847838],[-22.217622176221766,76.62988213752664],[-22.18522185221852,76.64001360114594],[-22.14562145621457,76.64507933295556],[-22.10242102421023,76.64507933295556],[-22.066420664206646,76.63663644660616],[-22.084420844208438,76.63157071479651],[-22.091620916209166,76.62988213752664],[-22.066420664206646,76.61637351936756],[-21.93681936819368,76.62312782844711],[-21.86841868418685,76.61130778755793],[-21.803618036180353,76.58935628304945],[-21.832418324183237,76.57753624216028],[-21.965619656196566,76.5657162012711],[-22.005220052200514,76.55727331492167],[-22.088020880208802,76.5555847376518],[-22.05202052020519,76.54207611949272],[-22.005220052200514,76.53025607860354],[-21.958419584195838,76.53025607860354],[-21.93681936819368,76.54714185130237],[-21.882818828188277,76.5657162012711],[-21.81081810818108,76.56065046946145],[-21.67401674016739,76.5268789240638],[-22.012420124201242,76.48297591504684],[-22.037620376203762,76.46609014234801],[-21.832418324183237,76.47622160596731],[-21.76041760417604,76.49479595593601],[-21.72441724417243,76.49986168774566],[-21.681216812168117,76.49141880139624],[-21.69921699216991,76.46946729688779],[-21.746017460174585,76.44920436964918],[-21.79281792817929,76.43738432876],[-22.14562145621457,76.43907290602988],[-22.22842228422283,76.44920436964918],[-22.264422644226443,76.46271298780823],[-22.30402304023039,76.48297591504684],[-22.34722347223473,76.49986168774566],[-22.43722437224372,76.49986168774566],[-22.415624156241563,76.48973022412636],[-22.35442354423543,76.46609014234801],[-22.383223832238315,76.44920436964918],[-22.422824228242263,76.4458272151094],[-22.50562505625055,76.45089294691905],[-22.4120241202412,76.42556428787083],[-22.37962379623795,76.42387571060095],[-22.282422824228235,76.43400717422023],[-22.188821888218882,76.41205566971178],[-21.90081900819007,76.42894144241058],[-21.612816128161285,76.4458272151094],[-21.5840158401584,76.44245006056966],[-21.576815768157672,76.43738432876],[-21.5840158401584,76.42894144241058],[-21.605616056160557,76.4171214015214],[-21.569615696156944,76.39685847428282],[-21.56601566015661,76.38503843339365],[-21.620016200161984,76.35633261980564],[-21.645216452164505,76.33606969256704],[-21.65961659616596,76.31580676532846],[-21.66681666816669,76.29385526081998],[-21.681216812168117,76.27359233358138],[-21.695616956169545,76.2617722926922],[-21.702817028170273,76.25501798361267],[-21.69921699216991,76.2516408290729],[-21.652416524165233,76.23813221091385],[-21.54801548015479,76.2246235927548],[-21.447214472144708,76.24488651999337],[-21.40761407614076,76.24657509726325],[-21.40761407614076,76.2533294063428],[-21.418414184141824,76.2533294063428],[-21.454414544145436,76.26008371542233],[-21.436414364143644,76.2820352199308],[-21.400414004140032,76.29216668355008],[-21.35721357213572,76.29385526081998],[-21.32481324813247,76.28710095174046],[-21.346413464134628,76.2820352199308],[-21.40761407614076,76.27359233358138],[-21.35721357213572,76.26346086996207],[-21.119611196111947,76.28541237447055],[-21.087210872108727,76.27865806539103],[-20.918009180091786,76.22124643821502],[-20.79560795607955,76.20942639732584],[-20.77040770407703,76.20098351097641],[-20.698406984069834,76.16721196557876],[-20.673206732067314,76.16383481103901],[-20.615606156061546,76.16383481103901],[-20.583205832058326,76.16045765649923],[-20.558005580055806,76.15032619287993],[-20.583205832058326,76.14188330653053],[-20.673206732067314,76.13681757472088],[-20.655206552065522,76.12330895656183],[-20.48600486004858,76.1435718838004],[-20.43560435604354,76.13681757472088],[-20.421204212042113,76.13681757472088],[-20.421204212042113,76.1435718838004],[-20.457204572045725,76.14526046107031],[-20.558005580055806,76.17058912011854],[-20.6372063720637,76.17734342919806],[-20.648006480064794,76.18072058373784],[-20.66960669606695,76.19422920189689],[-20.676806768067678,76.19760635643667],[-20.87120871208711,76.23137790183432],[-20.885608856088567,76.23982078818372],[-20.892808928089266,76.24488651999337],[-20.900009000089995,76.25501798361267],[-20.907209072090723,76.26514944723198],[-20.982809828098283,76.25670656088255],[-21.011610116101167,76.26008371542233],[-21.062010620106207,76.28878952901033],[-21.087210872108727,76.29385526081998],[-21.062010620106207,76.31074103351881],[-21.026010260102595,76.31749534259833],[-20.892808928089266,76.30736387897903],[-20.691206912069106,76.25839513815242],[-20.58680586805866,76.24657509726325],[-20.489604896048945,76.2229350154849],[-20.306003060030605,76.22800074729454],[-20.230402304023045,76.24657509726325],[-19.938799387993868,76.25839513815242],[-19.84879848798488,76.24488651999337],[-19.762397623976227,76.20436066551619],[-19.69759697596976,76.1435718838004],[-19.668796687966875,76.13681757472088],[-19.67239672396724,76.12668611110158],[-19.72279722797228,76.0760287930051],[-19.719197191971915,76.07096306119547],[-19.71559715597155,76.06083159757617],[-19.755197551975527,76.05745444303639],[-19.827198271982724,76.06589732938582],[-19.996399963999636,76.06252017484604],[-20.270002700026993,75.99159992951098],[-20.702007020070198,75.98991135224108],[-21.134011340113403,75.9882227749712],[-21.56601566015661,75.98484562043143],[-21.612816128161285,75.97471415681215],[-21.656016560165597,75.97133700227238],[-21.702817028170273,75.97471415681215],[-21.807218072180717,75.99328850678086],[-21.839618396183965,76.00510854767003],[-21.897218972189705,76.04225724760744],[-21.922419224192225,76.04732297941709],[-21.954819548195474,76.04056867033756],[-21.95121951219511,76.03381436125804],[-21.95121951219511,76.02874862944839],[-21.947619476194745,76.02368289763874],[-21.940419404194046,76.02030574309899],[-21.972819728197265,76.00173139313026],[-21.983619836198358,75.99328850678086],[-21.96921969219693,75.9882227749712],[-21.908019080190797,75.98653419770133],[-21.915219152191526,75.98653419770133],[-21.904419044190433,75.98315704316155],[-21.89361893618937,75.97640273408203],[-21.88641886418864,75.9696484250025],[-21.879218792187913,75.96458269319285],[-21.864818648186485,75.9595169613832],[-21.84321843218433,75.95782838411333],[-21.57321573215731,75.96120553865308],[-21.29961299612995,75.96458269319285],[-20.936009360093607,75.96458269319285],[-20.572405724057234,75.96289411592298],[-20.49320493204931,75.9493854977639],[-20.446404464044633,75.94769692049402],[-20.331203312033125,75.92405683871567],[-19.935199351993504,75.93418830233495],[-19.7479974799748,75.88859671604811],[-19.643596435964355,75.82780793433236],[-19.629196291962927,75.81767647071305],[-19.57159571595716,75.77883919350575],[-19.4959949599496,75.75688768899727],[-19.344793447934478,75.73324760721891],[-19.373593735937362,75.72480472086951],[-19.481594815948142,75.73831333902856],[-19.549995499955003,75.73662476175869],[-19.575195751957523,75.72649329813939],[-19.56439564395643,75.70454179363091],[-19.611196111961107,75.68427886639233],[-19.593195931959315,75.66908167096338],[-19.503195031950327,75.64375301191512],[-19.52119521195212,75.62517866194642],[-19.503195031950327,75.60998146651747],[-19.441994419944194,75.58802996200902],[-19.416794167941674,75.57620992111984],[-19.39519395193952,75.55932414842101],[-19.380793807938062,75.54074979845228],[-19.377193771937726,75.5204868712137],[-19.373593735937362,75.51204398486428],[-19.373593735937362,75.5002239439751],[-19.373593735937362,75.47489528492687],[-19.369993699936998,75.4613866667678],[-19.351993519935206,75.43605800771957],[-19.344793447934478,75.42423796683039],[-19.341193411934114,75.41072934867131],[-19.341193411934114,75.40228646232191],[-19.344793447934478,75.39553215324239],[-19.355593555935542,75.38540068962308],[-19.36279362793627,75.3735806487339],[-19.366393663936634,75.34656341241578],[-19.366393663936634,75.3347433715266],[-19.38799387993879,75.27902032162046],[-19.402394023940246,75.25200308530233],[-19.427594275942766,75.22498584898423],[-19.46359463594635,75.1979686126661],[-19.485194851948506,75.1878371490468],[-19.528395283952847,75.1777056854275],[-19.575195751957523,75.1489998718395],[-19.58959589595895,75.14224556275997],[-19.881198811988128,75.1489998718395],[-19.909999099990983,75.15575418091905],[-19.963999639996388,75.1777056854275],[-20.003600036000364,75.18614857177693],[-20.003600036000364,75.19121430358658],[-20,75.19965718993598],[-20.003600036000364,75.20472292174563],[-20.014400144001428,75.20978865355528],[-20.028800288002884,75.21316580809506],[-20.039600396003948,75.2165429626348],[-20.05040050400504,75.22498584898423],[-20.02520025200252,75.23174015806376],[-20.018000180001792,75.24018304441316],[-20.021600216002156,75.24693735349271],[-20.021600216002156,75.25538023984211],[-20.007200072000728,75.26551170346141],[-19.985599855998544,75.27226601254094],[-19.94959949599496,75.27902032162046],[-19.967599675996752,75.29252893977954],[-19.992799927999272,75.30097182612894],[-20.064800648006468,75.31110328974825],[-20.14040140401403,75.33643194879647],[-20.169201692016912,75.34149768060612],[-20.306003060030605,75.33643194879647],[-20.40320403204032,75.31279186701812],[-20.66960669606695,75.29252893977954],[-20.712807128071262,75.29928324885907],[-20.85320853208532,75.34656341241578],[-21.026010260102595,75.36851491692425],[-21.162811628116287,75.40566361686169],[-21.19881198811987,75.42086081229061],[-21.216812168121663,75.45463235768827],[-21.238412384123848,75.47827243946662],[-21.285212852128524,75.49515821216545],[-21.670416704167025,75.59309569381864],[-21.965619656196566,75.63193297102595],[-22.264422644226443,75.66908167096338],[-22.282422824228235,75.66063878461395],[-22.27882278822787,75.65219589826455],[-22.26082260822608,75.64544158918503],[-21.92601926019259,75.58296423019937],[-21.59121591215913,75.52217544848358],[-21.40761407614076,75.45800951222805],[-21.443614436144344,75.44956662587862],[-21.922419224192225,75.48333817127627],[-22.397623976239743,75.51542113940405],[-22.46242462424624,75.53399548937276],[-22.469624696246967,75.54074979845228],[-22.469624696246967,75.54243837572218],[-22.466024660246603,75.54750410753181],[-22.469624696246967,75.55425841661136],[-22.476824768247667,75.56101272569089],[-22.491224912249123,75.55932414842101],[-22.50562505625055,75.55088126207158],[-22.50562505625055,75.53906122118241],[-22.498424984249823,75.52724118029323],[-22.46242462424624,75.50866683032453],[-22.116821168211686,75.48333817127627],[-21.77481774817747,75.45800951222805],[-21.429214292142916,75.43099227590992],[-21.400414004140032,75.42423796683039],[-21.386013860138604,75.41579508048096],[-21.353613536135356,75.3820235350833],[-21.314013140131408,75.3634491851146],[-20.97920979209792,75.314480444288],[-20.94680946809467,75.2975946715892],[-20.885608856088567,75.27902032162046],[-20.849608496084954,75.25706881711199],[-20.831608316083162,75.25031450803246],[-20.651606516065158,75.22498584898423],[-20.56160561605614,75.1979686126661],[-20.51840518405183,75.14224556275997],[-20.691206912069106,75.12535979006114],[-20.99720997209971,75.14224556275997],[-21.07281072810727,75.12535979006114],[-21.18081180811808,75.12198263552139],[-21.580415804158037,75.0037822266296],[-21.76041760417604,74.9852078766609],[-21.771217712177105,74.98689645393077],[-21.803618036180353,74.99871649481994],[-21.8360183601836,75.00547080389947],[-21.846818468184665,75.00884795843925],[-21.857618576185757,75.01560226751877],[-21.864818648186485,75.02066799932842],[-21.86841868418685,75.02911088567782],[-21.86841868418685,75.0426195038369],[-21.88641886418864,75.06625958561526],[-21.92601926019259,75.08314535831408],[-22.34722347223473,75.1692627990781],[-22.43722437224372,75.17095137634797],[-22.4120241202412,75.15406560364914],[-22.343623436234367,75.14562271729974],[-22.27882278822787,75.12873694460092],[-22.14562145621457,75.10847401736231],[-21.940419404194046,75.05443954472608],[-21.954819548195474,75.03755377202725],[-21.972819728197265,75.02742230840795],[-22.01962019620197,75.01897942205855],[-21.998019980199786,75.012225112979],[-21.929619296192953,75.00547080389947],[-21.915219152191526,75.00209364935972],[-21.86841868418685,74.97845356758134],[-21.76761767617677,74.95987921761264],[-21.66681666816669,74.95819064034276],[-21.50841508415084,74.98014214485124],[-21.116011160111583,75.09158824466348],[-21.02961029610296,75.08821109012374],[-20.936009360093607,75.07132531742491],[-20.838808388083862,75.06794816288513],[-20.730807308073082,75.07639104923456],[-20.676806768067678,75.07470247196466],[-20.626406264062638,75.0611938538056],[-20.630006300063002,75.05950527653573],[-20.640806408064066,75.05443954472608],[-20.640806408064066,75.02404515386817],[-20.712807128071262,74.98014214485124],[-20.72000720007199,74.96156779488251],[-20.69480694806947,74.93961629037406],[-20.68760687606874,74.92779624948486],[-20.680406804068042,74.91766478586558],[-20.684006840068406,74.89740185862698],[-20.691206912069106,74.88727039500768],[-20.723607236072354,74.87207319957875],[-20.752407524075238,74.8653188904992],[-20.763207632076302,74.8568760041498],[-20.763207632076302,74.83999023145097],[-20.759607596075966,74.83154734510157],[-20.74520745207451,74.82141588148227],[-20.723607236072354,74.80790726332319],[-20.651606516065158,74.77413571792553],[-20.615606156061546,74.75218421341708],[-20.608406084060846,74.73529844071825],[-20.622806228062274,74.72685555436883],[-20.66240662406622,74.71841266801943],[-20.691206912069106,74.6998383180507],[-20.792007920079186,74.66606677265304],[-21.09801098010979,74.6728210817326],[-21.119611196111947,74.66606677265304],[-21.094410944109427,74.65424673176386],[-21.040410404104023,74.64749242268434],[-20.702007020070198,74.64749242268434],[-20.673206732067314,74.65086957722411],[-20.640806408064066,74.66606677265304],[-20.590405904059025,74.66944392719282],[-20.522005220052193,74.68464112262177],[-20.349203492034917,74.67113250446269],[-20.20160201602016,74.67957539081212],[-20.154801548015485,74.67619823627234],[-20.072000720007196,74.66268961811329],[-20.054000540005404,74.65762388630364],[-20.02520025200252,74.63904953633494],[-20.014400144001428,74.63567238179516],[-20.007200072000728,74.63398380452529],[-19.981999819998208,74.62385234090598],[-19.971199711997116,74.62216376363611],[-19.935199351993504,74.62891807271563],[-19.89199891998919,74.62722949544576],[-19.870398703987036,74.62216376363611],[-19.84159841598415,74.5934579500481],[-19.79839798397984,74.58670364096855],[-19.719197191971915,74.58670364096855],[-19.708397083970823,74.5917693727782],[-19.643596435964355,74.62216376363611],[-19.57159571595716,74.64242669087469],[-19.531995319953182,74.64918099995421],[-19.449194491944922,74.68295254535187],[-19.402394023940246,74.68970685443142],[-19.355593555935542,74.68464112262177],[-19.308793087930866,74.67113250446269],[-19.269192691926918,74.64918099995421],[-19.308793087930866,74.61372087728668],[-19.31239312393123,74.59852368185776],[-19.290792907929074,74.58163790915893],[-19.31239312393123,74.57150644553963],[-19.38799387993879,74.56137498192032],[-19.355593555935542,74.55630925011067],[-19.315993159931594,74.55968640465045],[-19.27999279992798,74.55968640465045],[-19.26199261992619,74.53942347741184],[-19.269192691926918,74.53773490014197],[-19.27999279992798,74.5343577456022],[-19.283592835928346,74.53266916833232],[-19.269192691926918,74.52253770471302],[-19.251192511925126,74.51916055017327],[-19.215192151921514,74.51916055017327],[-19.12159121591216,74.50565193201419],[-19.0459904599046,74.50396335474431],[-19.006390063900625,74.49889762293466],[-18.973989739897405,74.48370042750571],[-19.006390063900625,74.47525754115631],[-19.0459904599046,74.45837176845748],[-19.07839078390782,74.43810884121888],[-19.08559085590855,74.4161573367104],[-19.10359103591034,74.4161573367104],[-19.150391503915046,74.41109160490078],[-19.168391683916838,74.40602587309112],[-19.1791917919179,74.3975829867417],[-19.175591755917566,74.39251725493205],[-19.168391683916838,74.38576294585252],[-19.164791647916473,74.37563148223322],[-19.1719917199172,74.35874570953439],[-19.18639186391863,74.34861424591512],[-19.348393483934842,74.28613688692946],[-19.359193591935906,74.2793825778499],[-19.366393663936634,74.26925111423063],[-19.373593735937362,74.26756253696072],[-19.625596255962563,74.23885672337272],[-19.913599135991348,74.25911965061132],[-20.20160201602016,74.2793825778499],[-20.223202232022317,74.29626835054873],[-20.219602196021953,74.30302265962828],[-20.21600216002159,74.3080883914379],[-20.212402124021224,74.31146554597768],[-20.21600216002159,74.31990843232711],[-20.219602196021953,74.32159700959699],[-20.230402304023045,74.33003989594638],[-20.237602376023744,74.33341705048616],[-20.237602376023744,74.34523709137534],[-20.237602376023744,74.36550001861394],[-20.24120241202411,74.37563148223322],[-20.255602556025565,74.38407436858265],[-20.280802808028085,74.3975829867417],[-20.306003060030605,74.41446875944052],[-20.331203312033125,74.4262888003297],[-20.356403564035645,74.44486315029843],[-20.374403744037437,74.44824030483818],[-20.388803888038865,74.4465517275683],[-20.439204392043905,74.436420263949],[-20.450004500044997,74.436420263949],[-20.45360453604536,74.43979741848878],[-20.464404644046425,74.45330603664783],[-20.46800468004679,74.45668319118761],[-20.496804968049673,74.46006034572736],[-20.558005580055806,74.45161745937796],[-20.58680586805866,74.45161745937796],[-20.655206552065522,74.46512607753701],[-20.8280082800828,74.45161745937796],[-21.25641256412564,74.47356896388644],[-21.494014940149384,74.46006034572736],[-21.569615696156944,74.4465517275683],[-21.627216272162713,74.4465517275683],[-21.807218072180717,74.47863469569606],[-21.821618216182145,74.48876615931536],[-21.828818288182873,74.49720904566479],[-21.84321843218433,74.51916055017327],[-21.85041850418503,74.52929201379254],[-21.87561875618755,74.54617778649137],[-22.04482044820449,74.60021225912763],[-22.080820808208074,74.60358941366738],[-22.113221132211322,74.5934579500481],[-22.07722077220771,74.57657217734928],[-21.940419404194046,74.53266916833232],[-21.933219332193318,74.52929201379254],[-21.92601926019259,74.52253770471302],[-21.915219152191526,74.50734050928409],[-21.87561875618755,74.47525754115631],[-21.803618036180353,74.44824030483818],[-21.78561785617856,74.44486315029843],[-21.771217712177105,74.43810884121888],[-21.76761767617677,74.4262888003297],[-21.76761767617677,74.41446875944052],[-21.79281792817929,74.40602587309112],[-21.80001800017999,74.3975829867417],[-21.814418144181445,74.38238579131277],[-21.828818288182873,74.37563148223322],[-21.9620196201962,74.33510562775604],[-22.05202052020519,74.31990843232711],[-22.206822068220674,74.32159700959699],[-22.300423004230026,74.30302265962828],[-22.43722437224372,74.31990843232711],[-22.458824588245875,74.31821985505721],[-22.469624696246967,74.31315412324756],[-22.466024660246603,74.3080883914379],[-22.415624156241563,74.30471123689816],[-22.34722347223473,74.28613688692946],[-22.167221672216726,74.2996455050885],[-22.07002070020701,74.29457977327885],[-22.037620376203762,74.2523653415318],[-22.059220592205918,74.2321024142932],[-22.098820988209866,74.21352806432449],[-22.138421384213842,74.20170802343532],[-22.192421924219246,74.19326513708589],[-22.239222392223922,74.17975651892684],[-22.264422644226443,74.17637936438706],[-22.30402304023039,74.17637936438706],[-22.32202322023221,74.17131363257741],[-22.340023400234003,74.16287074622801],[-22.31122311223112,74.15611643714848],[-22.239222392223922,74.16962505530753],[-22.21042210422104,74.16962505530753],[-22.192421924219246,74.16287074622801],[-22.17802178021779,74.15105070533883],[-22.156421564215634,74.12909920083035],[-22.174421744217426,74.11221342813153],[-22.22842228422283,74.10208196451222],[-22.332823328233275,74.09363907816282],[-22.415624156241563,74.10208196451222],[-22.476824768247667,74.08857334635317],[-22.48762487624876,74.08013046000374],[-22.476824768247667,74.06999899638447],[-22.45522455224551,74.06493326457482],[-22.34722347223473,74.0581789554953],[-22.2860228602286,74.03960460552656],[-22.106021060210594,74.02609598736751],[-22.113221132211322,74.02609598736751],[-22.088020880208802,74.02440741009764],[-22.030420304203034,74.01258736920846],[-21.98721987219872,73.99907875104938],[-21.98721987219872,73.99401301923973],[-21.99441994419945,73.9872587101602],[-22.005220052200514,73.97037293746138],[-21.990819908199086,73.96699578292163],[-21.98721987219872,73.96193005111198],[-21.98721987219872,73.95348716476255],[-21.998019980199786,73.94335570114325],[-21.965619656196566,73.9298470829842],[-21.89361893618937,73.91633846482515],[-21.86121861218612,73.90282984666607],[-21.86841868418685,73.89607553758654],[-21.814418144181445,73.84710679675993],[-21.8360183601836,73.8217781377117],[-21.839618396183965,73.81671240590205],[-21.839618396183965,73.80995809682253],[-21.832418324183237,73.79813805593335],[-21.832418324183237,73.7930723241237],[-21.8360183601836,73.78631801504417],[-21.85041850418503,73.77956370596465],[-21.854018540185393,73.7728093968851],[-21.854018540185393,73.76098935599592],[-21.85041850418503,73.74748073783687],[-21.846818468184665,73.73566069694769],[-21.8360183601836,73.73228354240791],[-21.832418324183237,73.72721781059826],[-21.832418324183237,73.71539776970909],[-21.832418324183237,73.6934462652006],[-21.8360183601836,73.68331480158133],[-21.84321843218433,73.6748719152319],[-21.846818468184665,73.6664290288825],[-21.839618396183965,73.6562975652632],[-21.828818288182873,73.65123183345355],[-21.80001800017999,73.66305187434273],[-21.789217892178925,73.65967471980295],[-21.76761767617677,73.6562975652632],[-21.746017460174585,73.66811760615238],[-21.702817028170273,73.69682341974038],[-21.710017100171,73.71370919243921],[-21.72441724417243,73.72721781059826],[-21.756817568175677,73.75085789237662],[-21.753217532175313,73.75254646964652],[-21.74961749617495,73.75423504691639],[-21.746017460174585,73.75592362418627],[-21.74241742417425,73.75930077872604],[-21.74961749617495,73.76267793326582],[-21.753217532175313,73.76943224234535],[-21.756817568175677,73.77956370596465],[-21.756817568175677,73.78969516958392],[-21.756817568175677,73.7930723241237],[-21.764017640176405,73.8015152104731],[-21.764017640176405,73.80658094228275],[-21.76041760417604,73.80995809682253],[-21.753217532175313,73.81840098317193],[-21.74961749617495,73.82346671498158],[-21.753217532175313,73.831909601331],[-21.76041760417604,73.8403524876804],[-21.764017640176405,73.84879537402983],[-21.76041760417604,73.85892683764914],[-21.756817568175677,73.86568114672866],[-21.764017640176405,73.87412403307806],[-21.782017820178197,73.88594407396724],[-21.789217892178925,73.89438696031667],[-21.796417964179625,73.90282984666607],[-21.80001800017999,73.90958415574559],[-21.814418144181445,73.91633846482515],[-21.828818288182873,73.91802704209502],[-21.86841868418685,73.9197156193649],[-21.882818828188277,73.92646992844442],[-21.88641886418864,73.93491281479385],[-21.86841868418685,73.9501100102228],[-21.872018720187185,73.96024147384207],[-21.879218792187913,73.9686843601915],[-21.890018900189006,73.97206151473125],[-21.915219152191526,73.9771272465409],[-21.91161911619116,73.98219297835055],[-21.908019080190797,73.98557013289033],[-21.908019080190797,73.98894728743008],[-21.90081900819007,73.99232444196986],[-21.908019080190797,74.01596452374821],[-21.872018720187185,74.03453887371691],[-21.78561785617856,74.05311322368564],[-21.59121591215913,74.0581789554953],[-21.137611376113767,73.97206151473125],[-20.68760687606874,73.88594407396724],[-20.36720367203671,73.89607553758654],[-20.320403204032033,73.89100980577689],[-20.295202952029513,73.88594407396724],[-20.27720277202772,73.87581261034794],[-20.273602736027357,73.86399256945876],[-20.270002700026993,73.85386110583948],[-20.26640266402663,73.84541821949006],[-20.248402484024837,73.84204106495031],[-20.2592025920259,73.831909601331],[-20.270002700026993,73.82853244679123],[-20.280802808028085,73.82346671498158],[-20.288002880028785,73.79813805593335],[-20.298802988029877,73.79138374685382],[-20.30960309603094,73.78631801504417],[-20.406804068040685,73.7829408605044],[-20.450004500044997,73.774497974155],[-20.482404824048245,73.75930077872604],[-20.471604716047153,73.74916931510674],[-20.457204572045725,73.74241500602722],[-20.44280442804427,73.73903785148744],[-20.42840428404284,73.73734927421756],[-20.42840428404284,73.73228354240791],[-20.489604896048945,73.73397211967782],[-20.522005220052193,73.72890638786816],[-20.52920529205292,73.71033203789943],[-20.525605256052557,73.70357772881991],[-20.500405004050037,73.68669195612108],[-20.49320493204931,73.68162622431143],[-20.482404824048245,73.66305187434273],[-20.475204752047517,73.65460898799333],[-20.46800468004679,73.65123183345355],[-20.464404644046425,73.6461661016439],[-20.46080460804606,73.6360346380246],[-20.46800468004679,73.6275917516752],[-20.475204752047517,73.62421459713542],[-20.482404824048245,73.61914886532577],[-20.47880478804788,73.61070597897637],[-20.482404824048245,73.59719736081729],[-20.522005220052193,73.57186870176906],[-20.522005220052193,73.55667150634011],[-20.489604896048945,73.54485146545093],[-20.41040410404102,73.54654004272084],[-20.3852038520385,73.53640857910153],[-20.381603816038165,73.51783422913283],[-20.399603996039957,73.49588272462435],[-20.42840428404284,73.47730837465562],[-20.450004500044997,73.46548833376644],[-20.54360543605435,73.44860256106762],[-20.910809108091087,73.45366829287727],[-21.28161281612816,73.45704544741704],[-21.454414544145436,73.48743983827492],[-21.544415444154424,73.4908169928147],[-21.620016200161984,73.45704544741704],[-21.60921609216092,73.45704544741704],[-21.605616056160557,73.45535687014717],[-21.576815768157672,73.44015967471822],[-21.555215552155516,73.42496247928926],[-21.551615516155152,73.40807670659044],[-21.57321573215731,73.39456808843138],[-21.59841598415983,73.39119093389161],[-21.652416524165233,73.39287951116151],[-21.702817028170273,73.3810594702723],[-21.778417784177833,73.37430516119278],[-21.9620196201962,73.3337793067156],[-22.106021060210594,73.27974483407937],[-22.206822068220674,73.25441617503111],[-22.314823148231483,73.25103902049136],[-22.635226352263516,73.28987629769864],[-22.95562955629555,73.32871357490595],[-23.013230132301317,73.3439107703349],[-23.096030960309605,73.35066507941443],[-23.114031140311397,73.3540422339542],[-23.222032220322205,73.39963382024104],[-23.448834488344886,73.43678252017844],[-23.48483484834847,73.44691398379774],[-23.549635496354966,73.47899695192552],[-23.58563585635855,73.4908169928147],[-23.81963819638196,73.54654004272084],[-23.89523895238952,73.57693443357871],[-23.916839168391675,73.58368874265824],[-23.967239672396715,73.58875447446789],[-23.98883988839887,73.59719736081729],[-23.9960399603996,73.60732882443659],[-24.01404014040139,73.63096890621495],[-24.024840248402484,73.65123183345355],[-24.024840248402484,73.68669195612108],[-24.032040320403212,73.69682341974038],[-24.01404014040139,73.71877492424886],[-23.98163981639817,73.72384065605851],[-23.916839168391675,73.71708634697899],[-23.765637656376555,73.72384065605851],[-23.690036900368995,73.71033203789943],[-23.571235712357122,73.71708634697899],[-23.517235172351718,73.71033203789943],[-23.430834308343066,73.68838053339098],[-23.391233912339118,73.67149476069216],[-23.34443344433444,73.65798614253308],[-23.128431284312825,73.63265748348485],[-22.844028440284404,73.56004866087989],[-22.660426604266036,73.54822861999071],[-22.61362613626136,73.56173723814976],[-22.491224912249123,73.57186870176906],[-22.368823688236887,73.60732882443659],[-22.174421744217426,73.6275917516752],[-22.21042210422104,73.63265748348485],[-22.32922329223291,73.62590317440532],[-22.376023760237587,73.61408313351612],[-22.43722437224372,73.61408313351612],[-22.610026100260995,73.57355727903894],[-22.800828008280064,73.56680296995941],[-22.86562865628656,73.57862301084859],[-22.937629376293756,73.6174602880559],[-23.139231392313917,73.6562975652632],[-23.1680316803168,73.6562975652632],[-23.160831608316073,73.6562975652632],[-23.55323553235533,73.73566069694769],[-23.826838268382687,73.73734927421756],[-23.86283862838627,73.74410358329709],[-23.89523895238952,73.75592362418627],[-24.00684006840069,73.8116466740924],[-24.032040320403212,73.82008956044183],[-24.060840608406068,73.82008956044183],[-24.168841688416876,73.803203787743],[-24.2480424804248,73.78125228323452],[-24.262442624426228,73.77787512869475],[-24.32364323643236,73.7829408605044],[-24.341643416434152,73.77787512869475],[-24.334443344433453,73.75254646964652],[-24.34884348843488,73.74241500602722],[-24.377643776437765,73.73734927421756],[-24.410044100441013,73.72721781059826],[-24.435244352443533,73.71202061516934],[-24.446044460444597,73.69513484247051],[-24.471244712447117,73.6562975652632],[-24.3740437404374,73.56004866087989],[-24.39924399243992,73.54654004272084],[-24.42444424444244,73.54147431091118],[-24.45684456844569,73.54147431091118],[-24.94284942849427,73.61239455624624],[-24.98604986049861,73.62928032894507],[-24.996849968499674,73.64447752437403],[-24.978849788497882,73.6664290288825],[-24.96804968049679,73.6850033788512],[-24.97524975249752,73.70188915155003],[-24.996849968499674,73.71708634697899],[-25.17685176851768,73.74916931510674],[-25.34605346053459,73.82008956044183],[-25.360453604536048,73.8217781377117],[-25.410854108541088,73.82008956044183],[-25.42165421654215,73.82008956044183],[-25.42885428854288,73.82346671498158],[-25.436054360543608,73.82853244679123],[-25.439654396543972,73.83359817860088],[-25.443254432544308,73.83866391041053],[-25.44685446854467,73.84204106495031],[-25.50445504455044,73.90789557847572],[-25.518855188551868,73.91633846482515],[-25.544055440554388,73.92309277390467],[-25.623256232562312,73.93660139206372],[-25.673656736567352,73.95686431930233],[-25.691656916569173,73.95686431930233],[-25.702457024570236,73.95517574203242],[-25.72045720457203,73.9501100102228],[-25.734857348573485,73.9399785466035],[-25.73845738457385,73.9298470829842],[-25.727657276572756,73.91802704209502],[-25.590855908559092,73.86736972399854],[-25.562055620556208,73.84541821949006],[-25.572855728557272,73.82684386952135],[-25.551255512555116,73.8116466740924],[-25.457654576545764,73.78631801504417],[-25.385653856538568,73.75592362418627],[-25.292052920529187,73.74410358329709],[-25.08685086850869,73.69682341974038],[-25.09405094050939,73.69006911066086],[-25.08685086850869,73.67318333796203],[-25.08685086850869,73.66305187434273],[-25.097650976509755,73.64785467891377],[-25.108451084510847,73.64278894710412],[-25.11205112051121,73.6377232152945],[-25.09405094050939,73.62083744259567],[-25.058050580505807,73.60226309262694],[-25.007650076500767,73.58706589719802],[-24.852848528485282,73.56680296995941],[-24.84204842048419,73.56511439268954],[-24.83484834848349,73.55498292907023],[-24.69084690846907,73.53134284729188],[-24.680046800468006,73.52458853821236],[-24.687246872468705,73.5093913427834],[-24.70164701647016,73.49757130189423],[-24.719647196471954,73.49250557008457],[-25.004050040500402,73.48237410646527],[-25.292052920529187,73.47393122011587],[-25.49725497254971,73.40301097478078],[-25.47925479254792,73.39625666570126],[-25.439654396543972,73.40132239751091],[-25.425254252542516,73.39456808843138],[-25.439654396543972,73.38443662481208],[-25.443254432544308,73.37092800665303],[-25.436054360543608,73.36079654303373],[-25.436054360543608,73.3540422339542],[-25.4540545405454,73.34559934760478],[-25.569255692556908,73.32702499763607],[-25.7060570605706,73.27299052499981],[-25.76365763657637,73.25948190684076],[-25.878858788587877,73.25610475230098],[-25.96525965259653,73.24259613414193],[-26.14886148861487,73.24090755687206],[-26.177661776617754,73.24766186595159],[-26.32526325263251,73.31689353401677],[-26.404464044640434,73.33884503852525],[-26.487264872648723,73.34728792487468],[-26.505265052650515,73.3439107703349],[-26.54486544865449,73.32871357490595],[-26.562865628656283,73.32702499763607],[-26.642066420664207,73.3253364203662],[-26.825668256682548,73.34222219306503],[-27.17127171271713,73.44522540652787],[-27.22887228872287,73.48743983827492],[-27.261272612726117,73.49757130189423],[-27.333273332733313,73.49757130189423],[-27.34767347673477,73.49419414735445],[-27.39807398073981,73.4705540655761],[-27.434074340743393,73.46379975649657],[-27.44847448474485,73.45704544741704],[-27.459274592745913,73.44353682925797],[-27.38007380073799,73.44691398379774],[-27.34047340473404,73.44353682925797],[-27.286472864728637,73.41145386113021],[-27.12807128071279,73.3540422339542],[-26.915669156691564,73.32702499763607],[-26.922869228692292,73.32702499763607],[-26.904869048690472,73.3236478430963],[-26.85446854468543,73.30676207039747],[-26.832868328683276,73.30338491585772],[-26.76086760867608,73.30676207039747],[-26.447664476644775,73.27974483407937],[-26.40086400864007,73.26285906138054],[-26.397263972639735,73.23753040233228],[-26.411664116641163,73.23246467052263],[-26.537665376653763,73.22739893871298],[-26.580865808658075,73.2172674750937],[-26.598865988659895,73.21051316601415],[-26.606066060660595,73.20207027966475],[-26.613266132661323,73.19362739331532],[-26.616866168661687,73.18011877515627],[-26.624066240662415,73.17505304334662],[-26.667266672666727,73.1598558479177],[-26.714067140671403,73.13452718886944],[-26.75366753667535,73.13452718886944],[-26.865268652686524,73.15141296156827],[-26.915669156691564,73.16661015699722],[-26.99486994869949,73.17505304334662],[-27.04527045270453,73.1868730842358],[-27.08847088470884,73.19025023877558],[-27.19647196471965,73.18180735242615],[-27.232472324723233,73.19025023877558],[-27.39807398073981,73.16323300245745],[-27.603276032760334,73.16661015699722],[-27.671676716767166,73.1598558479177],[-27.72567725677257,73.13452718886944],[-27.67527675276753,73.12270714798026],[-27.47367473674737,73.13283861159957],[-27.43047430474303,73.12777287978992],[-27.40527405274051,73.11088710709109],[-27.412474124741237,73.08049271623321],[-27.40527405274051,73.07373840715366],[-27.412474124741237,73.06529552080426],[-27.36567365673656,73.0129496254379],[-27.362073620736197,73.0028181618186],[-27.369273692736925,72.99099812092942],[-27.38007380073799,72.98255523457999],[-27.437674376743757,72.95722657553176],[-27.50607506075059,72.94709511191246],[-27.527675276752774,72.93696364829316],[-27.484474844748433,72.92514360740398],[-27.44127441274412,72.93696364829316],[-27.401674016740174,72.95384942099199],[-27.326073260732613,72.96904661642094],[-27.318873188731885,72.98086665731012],[-27.32247322473225,73.02983539813673],[-27.318873188731885,73.03827828448613],[-27.311673116731157,73.04840974810543],[-27.29727297272973,73.06360694353438],[-27.293672936729365,73.07373840715366],[-27.300873008730093,73.08218129350308],[-27.308073080730793,73.08893560258261],[-27.31527315273152,73.09737848893204],[-27.29727297272973,73.11426426163086],[-27.261272612726117,73.12777287978992],[-27.149671496714973,73.14803580702849],[-26.706867068670675,73.10244422074166],[-26.65286652866527,73.10244422074166],[-26.60246602466023,73.11764141617061],[-26.490864908649087,73.18349592969605],[-26.44406444064441,73.1970045478551],[-25.99765997659975,73.20207027966475],[-25.886058860588605,73.19025023877558],[-25.72045720457203,73.13790434340922],[-25.385653856538568,73.11088710709109],[-25.05085050850508,73.08386987077296],[-25.047250472504714,73.07542698442356],[-25.04365043650435,73.06360694353438],[-25.040050400503986,73.0517869026452],[-25.029250292502923,73.04503259356565],[-24.98604986049861,73.02645824359695],[-25.007650076500767,72.99775243000894],[-25.040050400503986,72.98593238911977],[-25.0760507605076,72.97748950277034],[-25.13725137251373,72.94034080283294],[-25.16965169651695,72.93020933921363],[-25.26325263252633,72.91838929832446],[-25.27765277652776,72.9133235665148],[-25.292052920529187,72.90656925743528],[-25.30285302853028,72.89812637108588],[-25.32085320853207,72.89306063927623],[-25.69525695256951,72.9031921028955],[-25.73845738457385,72.89643779381598],[-25.778057780577797,72.87786344384727],[-25.803258032580317,72.86097767114845],[-25.87165871658715,72.83058328029057],[-25.99045990459905,72.79681173489291],[-26.0840608406084,72.78161453946396],[-26.177661776617754,72.77823738492418],[-26.26766267662677,72.78499169400374],[-26.598865988659895,72.86266624841832],[-26.782467824678236,72.87279771203762],[-27.10287102871027,72.82551754848092],[-27.149671496714973,72.82551754848092],[-27.27207272072721,72.85928909387857],[-27.318873188731885,72.86266624841832],[-27.35487354873547,72.86097767114845],[-27.387273872738717,72.8457804757195],[-27.362073620736197,72.83396043483032],[-27.149671496714973,72.80356604397244],[-27.12087120871209,72.81200893032184],[-27.099270992709933,72.80863177578209],[-26.944469444694448,72.82889470302067],[-26.699666996669947,72.83227185756044],[-26.52686526865267,72.79343458035314],[-26.50166501665015,72.79343458035314],[-26.465664656646567,72.79005742581339],[-26.397263972639735,72.77148307584466],[-26.541265412654127,72.74615441679643],[-26.67086670866709,72.74108868498678],[-26.71046710467104,72.72758006682773],[-26.76086760867608,72.71744860320842],[-26.77886778867787,72.71744860320842],[-26.72126721267213,72.70393998504935],[-26.35046350463503,72.74446583952655],[-26.307263072630718,72.73095722136748],[-26.32526325263251,72.709005716859],[-26.361263612636122,72.64821693514324],[-26.386463864638642,72.62795400790463],[-26.45126451264511,72.59924819431663],[-26.480064800647995,72.57898526707802],[-26.46926469264693,72.57729668980815],[-26.436864368643683,72.57898526707802],[-26.404464044640434,72.58742815342745],[-26.231662316623158,72.6904313668903],[-26.210062100621002,72.71407144866865],[-26.177661776617754,72.72589148955782],[-26.09126091260913,72.71576002593852],[-25.88245882458824,72.74108868498678],[-25.850058500584993,72.7579744576856],[-25.709657096570965,72.79512315762301],[-25.652056520565196,72.82045181667127],[-25.608856088560884,72.83227185756044],[-25.522455224552232,72.84071474390984],[-25.475654756547556,72.83396043483032],[-25.38925389253893,72.80525462124231],[-25.342453424534227,72.79850031216279],[-25.256052560525603,72.81200893032184],[-25.230852308523083,72.80525462124231],[-25.223652236522355,72.79850031216279],[-25.21285212852129,72.77823738492418],[-25.205652056520563,72.77148307584466],[-25.2020520205202,72.76472876676513],[-25.18765187651877,72.75966303495548],[-25.148051480514795,72.75122014860608],[-25.06885068850687,72.75122014860608],[-25.05085050850508,72.7478429940663],[-25.01845018450183,72.73433437590725],[-25.00045000450004,72.73095722136748],[-24.849248492484918,72.72420291228795],[-24.83484834848349,72.72082575774817],[-24.79164791647915,72.70225140777947],[-24.71604716047159,72.68705421235052],[-24.698046980469798,72.67523417146134],[-24.73404734047341,72.65665982149264],[-24.74124741247411,72.64652835787334],[-24.73404734047341,72.63133116244441],[-24.723247232472318,72.62119969882511],[-24.71604716047159,72.6110682352058],[-24.712447124471225,72.6026253488564],[-24.723247232472318,72.59418246250698],[-24.723247232472318,72.58742815342745],[-24.70884708847089,72.58742815342745],[-24.69084690846907,72.58573957615758],[-24.67644676446764,72.57898526707802],[-24.662046620466185,72.5739195352684],[-24.67644676446764,72.56041091710932],[-24.68364683646837,72.55534518529967],[-24.69084690846907,72.55196803075992],[-24.669246692466913,72.54521372168037],[-24.622446224462237,72.55703376256957],[-24.60084600846008,72.55196803075992],[-24.611646116461145,72.53339368079119],[-24.6260462604626,72.52663937171167],[-24.647646476464757,72.52326221717192],[-24.70164701647016,72.50806502174296],[-24.770047700476994,72.49793355812366],[-24.888848888488866,72.46922774453566],[-25.133651336513367,72.435456199138],[-25.522455224552232,72.42870189005848],[-25.911259112591125,72.42194758097895],[-25.911259112591125,72.41519327189943],[-25.878858788587877,72.40843896281987],[-25.734857348573485,72.39155319012104],[-25.425254252542516,72.40506180828012],[-25.34605346053459,72.39493034466082],[-25.31365313653137,72.39493034466082],[-25.28845288452885,72.38986461285117],[-25.299252992529915,72.37466741742222],[-25.42885428854288,72.27504135849915],[-25.457654576545764,72.2598441630702],[-25.490054900549012,72.23789265856172],[-25.49725497254971,72.2311383494822],[-25.49725497254971,72.21931830859302],[-25.49725497254971,72.20412111316406],[-25.486454864548648,72.18892391773514],[-25.464854648546492,72.16190668141701],[-25.47925479254792,72.1517752177977],[-25.511655116551168,72.13657802236878],[-25.526055260552596,72.12813513601935],[-25.508055080550804,72.1230694042097],[-25.482854828548284,72.1247579814796],[-25.457654576545764,72.12982371328923],[-25.414454144541452,72.1416437541784],[-25.40365403654036,72.14839806325796],[-25.39645396453963,72.15852952687723],[-25.39645396453963,72.17541529957606],[-25.400054000539996,72.18723534046526],[-25.407254072540724,72.19398964954479],[-25.407254072540724,72.20243253589419],[-25.40365403654036,72.21762973132314],[-25.392853928539267,72.22944977221232],[-25.37845378453784,72.23789265856172],[-25.367653676536747,72.24802412218102],[-25.374853748537475,72.26490989487985],[-25.342453424534227,72.28517282211845],[-25.26325263252633,72.31894436751611],[-25.209252092520927,72.35609306745351],[-25.180451804518043,72.36622453107282],[-25.04365043650435,72.38311030377164],[-25.01845018450183,72.38142172650177],[-25.01125011250113,72.3881760355813],[-24.924849248492478,72.40168465374035],[-24.852848528485282,72.43207904459825],[-24.827648276482762,72.435456199138],[-24.806048060480606,72.43207904459825],[-24.762847628476266,72.41181611735965],[-24.737647376473745,72.40843896281987],[-24.723247232472318,72.41012754008977],[-24.68364683646837,72.42194758097895],[-24.669246692466913,72.42194758097895],[-24.629646296462965,72.41519327189943],[-24.546845468454677,72.42363615824883],[-24.518045180451793,72.41519327189943],[-24.44964449644496,72.37129026288247],[-24.341643416434152,72.33245298567516],[-24.276842768427684,72.31894436751611],[-24.237242372423708,72.32569867659564],[-24.244442444424436,72.32907583113538],[-24.266042660426592,72.34089587202459],[-24.233642336423372,72.33751871748481],[-24.075240752407524,72.27841851303893],[-24.04644046440464,72.27166420395938],[-23.942039420394195,72.27166420395938],[-23.93123931239313,72.26828704941963],[-23.898838988389883,72.2598441630702],[-23.870038700387,72.25646700853045],[-23.83763837638375,72.25815558580032],[-23.816038160381595,72.25308985399067],[-23.80523805238053,72.2311383494822],[-23.823238232382323,72.22776119494245],[-23.84483844838448,72.22776119494245],[-23.86283862838627,72.22944977221232],[-23.873638736387363,72.23620408129185],[-23.88083880838809,72.2328269267521],[-23.88803888038879,72.2311383494822],[-23.89523895238952,72.2311383494822],[-23.884438844388427,72.22100688586289],[-23.870038700387,72.21762973132314],[-23.79443794437944,72.21762973132314],[-23.776437764377647,72.2226954631328],[-23.78003780037801,72.23620408129185],[-23.76203762037619,72.24464696764127],[-23.7440374403744,72.23620408129185],[-23.72963729637297,72.22438404040267],[-23.71163711637115,72.21762973132314],[-23.715237152371515,72.20749826770384],[-23.71883718837188,72.20412111316406],[-23.71163711637115,72.18216960865561],[-23.808838088380867,72.13488944509888],[-23.81963819638196,72.1146265178603],[-23.808838088380867,72.11124936332052],[-23.790837908379075,72.1129379405904],[-23.758437584375827,72.12138082693983],[-23.690036900368995,72.14839806325796],[-23.657636576365746,72.15515237233748],[-23.621636216362162,72.15684094960736],[-23.59283592835928,72.1517752177977],[-23.57843578435785,72.14670948598805],[-23.10683106831067,72.06734635430357],[-23.085230852308513,72.05890346795417],[-23.10683106831067,72.04032911798546],[-23.135631356313553,72.03188623163604],[-23.1680316803168,72.02682049982639],[-23.196831968319685,72.01837761347699],[-23.14283142831428,72.00149184077816],[-23.114031140311397,71.9964261089685],[-23.088830888308877,72.00149184077816],[-23.060030600305993,72.01162330439746],[-23.034830348303473,72.01500045893721],[-23.00603006030059,72.01162330439746],[-22.934029340293392,71.99304895442873],[-22.68202682026819,71.9575888317612],[-22.617226172261724,71.93563732725272],[-22.55602556025559,71.92550586363342],[-22.523625236252343,71.91537440001414],[-22.516425164251643,71.90862009093462],[-22.502025020250187,71.90017720458519],[-22.502025020250187,71.89004574096589],[-22.520025200252007,71.88160285461649],[-22.545225452254527,71.87484854553696],[-22.6640266402664,71.86133992737788],[-22.728827288272868,71.84445415467906],[-22.736027360273596,71.81912549563083],[-22.782827828278272,71.7921082593127],[-22.962829628296276,71.74820525029574],[-23.060030600305993,71.71274512762821],[-23.10683106831067,71.68572789131008],[-23.135631356313553,71.6553335004522],[-23.128431284312825,71.64857919137268],[-23.12483124831249,71.63169341867385],[-23.085230852308513,71.63000484140397],[-23.013230132301317,71.64182488229315],[-22.99162991629916,71.64689061410277],[-22.94842948429485,71.6654649640715],[-22.912429124291236,71.67221927315103],[-22.880028800287988,71.69248220038963],[-22.86562865628656,71.69585935492938],[-22.829628296282948,71.70092508673903],[-22.574025740257383,71.76846817753434],[-22.53082530825307,71.7718453320741],[-22.45522455224551,71.79379683658257],[-22.415624156241563,71.79717399112235],[-22.408424084240835,71.7718453320741],[-22.426424264242627,71.75327098210539],[-22.46242462424624,71.73638520940656],[-22.498424984249823,71.72287659124751],[-22.534425344253435,71.71443370489808],[-22.545225452254527,71.70092508673903],[-22.552425524255227,71.69585935492938],[-22.56322563225632,71.69417077765951],[-22.584825848258475,71.69079362311973],[-22.642426424264244,71.6755964276908],[-22.653226532265307,71.66884211861125],[-22.65682656826567,71.65026776864255],[-22.63162631626315,71.60974191416537],[-22.63882638826388,71.58947898692676],[-22.635226352263516,71.58103610057736],[-22.617226172261724,71.57428179149784],[-22.595625956259568,71.57428179149784],[-22.58122581225811,71.58610183238702],[-22.577625776257747,71.59792187327619],[-22.58122581225811,71.60467618235572],[-22.58842588425884,71.6080533368955],[-22.599225992259903,71.60636475962559],[-22.599225992259903,71.61311906870515],[-22.577625776257747,71.61480764597502],[-22.552425524255227,71.62156195505455],[-22.50562505625055,71.63844772775337],[-22.48042480424803,71.64182488229315],[-22.422824228242263,71.6266276868642],[-22.394023940239407,71.6266276868642],[-22.397623976239743,71.63169341867385],[-22.397623976239743,71.63338199594372],[-22.397623976239743,71.6367591504835],[-22.401224012240107,71.64182488229315],[-22.383223832238315,71.65871065499198],[-22.343623436234367,71.67053069588115],[-22.318423184231847,71.68235073677033],[-22.30402304023039,71.69754793219926],[-22.307623076230755,71.70599081854868],[-22.31122311223112,71.71443370489808],[-22.307623076230755,71.72963090032704],[-22.293222932229327,71.73469663213669],[-22.214022140221402,71.75664813664517],[-22.18522185221852,71.76002529118492],[-22.160021600215998,71.75664813664517],[-22.142021420214206,71.74313951848609],[-22.160021600215998,71.72287659124751],[-22.138421384213842,71.71612228216799],[-21.89361893618937,71.74313951848609],[-21.904419044190433,71.73638520940656],[-21.915219152191526,71.72963090032704],[-21.940419404194046,71.72287659124751],[-21.947619476194745,71.71105655035834],[-21.972819728197265,71.70430224127881],[-22.023220232202306,71.70261366400891],[-21.990819908199086,71.68910504584986],[-22.012420124201242,71.6739078504209],[-22.07722077220771,71.67053069588115],[-22.188821888218882,71.64857919137268],[-22.217622176221766,71.6350705732136],[-22.156421564215634,71.61987337778467],[-22.113221132211322,71.61987337778467],[-22.098820988209866,71.61311906870515],[-22.149221492214906,71.58947898692676],[-22.275222752227506,71.59623329600632],[-22.332823328233275,71.59116756419667],[-22.35442354423543,71.58610183238702],[-22.426424264242627,71.58610183238702],[-22.448024480244783,71.58103610057736],[-22.491224912249123,71.55739601879901],[-22.509225092250915,71.55233028698936],[-22.509225092250915,71.54388740063993],[-22.53082530825307,71.49660723708323],[-22.534425344253435,71.48478719619405],[-22.534425344253435,71.47465573257475],[-22.53082530825307,71.46452426895544],[-22.498424984249823,71.42568699174817],[-22.494824948249487,71.41217837358909],[-22.491224912249123,71.39360402362038],[-22.491224912249123,71.38684971454086],[-22.498424984249823,71.3817839827312],[-22.502025020250187,71.37840682819143],[-22.498424984249823,71.36658678730225],[-22.491224912249123,71.35983247822273],[-22.46242462424624,71.34632386006368],[-22.448024480244783,71.33956955098412],[-22.46242462424624,71.32606093282507],[-22.466024660246603,71.31761804647567],[-22.469624696246967,71.29904369650694],[-22.466024660246603,71.29904369650694],[-22.458824588245875,71.29397796469729],[-22.45522455224551,71.28722365561777],[-22.458824588245875,71.28553507834789],[-22.466024660246603,71.28215792380811],[-22.469624696246967,71.27709219199846],[-22.476824768247667,71.26358357383941],[-22.43722437224372,71.25682926475989],[-22.394023940239407,71.25682926475989],[-22.35442354423543,71.27033788291894],[-22.340023400234003,71.30242085104672],[-22.332823328233275,71.31930662374555],[-22.332823328233275,71.32943808736485],[-22.343623436234367,71.3328152419046],[-22.358023580235795,71.33619239644437],[-22.36162361623616,71.3429467055239],[-22.35442354423543,71.35645532368295],[-22.307623076230755,71.41555552812886],[-22.2860228602286,71.43075272355779],[-22.131221312213114,71.49154150527357],[-22.106021060210594,71.49660723708323],[-22.055620556205554,71.49660723708323],[-22.005220052200514,71.4898529280037],[-21.983619836198358,71.48141004165427],[-21.9620196201962,71.4695900007651],[-21.940419404194046,71.46283569168557],[-21.922419224192225,71.4695900007651],[-21.929619296192953,71.47803288711452],[-21.93681936819368,71.48647577346392],[-21.94401944019441,71.49323008254345],[-21.954819548195474,71.49660723708323],[-21.90081900819007,71.4898529280037],[-21.882818828188277,71.49323008254345],[-21.89361893618937,71.51687016432183],[-21.86841868418685,71.51349300978205],[-21.84321843218433,71.49154150527357],[-21.81801818018181,71.4898529280037],[-21.81081810818108,71.49660723708323],[-21.807218072180717,71.50505012343265],[-21.80001800017999,71.51349300978205],[-21.78561785617856,71.51687016432183],[-21.77481774817747,71.51518158705193],[-21.764017640176405,71.5084272779724],[-21.756817568175677,71.499984391623],[-21.74961749617495,71.4898529280037],[-21.778417784177833,71.47634430984462],[-21.84321843218433,71.4611471144157],[-21.87561875618755,71.44932707352652],[-21.8360183601836,71.44088418717709],[-21.756817568175677,71.44932707352652],[-21.71721717217173,71.442572764447],[-21.738817388173885,71.43412987809756],[-21.796417964179625,71.42737556901804],[-21.81801818018181,71.42906414628791],[-21.81801818018181,71.42062125993851],[-21.695616956169545,71.41724410539874],[-21.66681666816669,71.40204690996978],[-21.69201692016921,71.39866975543003],[-21.738817388173885,71.38347256000108],[-21.814418144181445,71.37671825092156],[-21.839618396183965,71.36996394184203],[-21.854018540185393,71.35983247822273],[-21.857618576185757,71.34801243733355],[-21.846818468184665,71.34632386006368],[-21.828818288182873,71.34970101460343],[-21.81081810818108,71.35645532368295],[-21.789217892178925,71.3632096327625],[-21.71721717217173,71.35983247822273],[-21.731617316173157,71.3530781691432],[-21.76041760417604,71.34463528279377],[-21.782017820178197,71.32943808736485],[-21.796417964179625,71.3243723555552],[-21.81801818018181,71.31930662374555],[-21.796417964179625,71.31930662374555],[-21.731617316173157,71.3328152419046],[-21.605616056160557,71.3328152419046],[-21.605616056160557,71.32606093282507],[-21.9620196201962,71.27033788291894],[-21.94401944019441,71.26358357383941],[-21.904419044190433,71.26189499656954],[-21.88641886418864,71.25682926475989],[-21.88641886418864,71.25007495568036],[-21.89361893618937,71.25007495568036],[-21.915219152191526,71.24332064660084],[-21.890018900189006,71.23656633752128],[-21.86121861218612,71.23994349206106],[-21.8360183601836,71.25176353295024],[-21.814418144181445,71.26696072837919],[-21.796417964179625,71.27033788291894],[-21.76761767617677,71.26527215110929],[-21.738817388173885,71.25514068749001],[-21.72441724417243,71.24332064660084],[-21.74241742417425,71.23825491479118],[-21.74961749617495,71.23656633752128],[-21.74961749617495,71.22981202844176],[-21.72441724417243,71.22812345117188],[-21.702817028170273,71.21799198755258],[-21.65961659616596,71.18928617396458],[-21.677616776167753,71.17408897853562],[-21.69201692016921,71.15213747402714],[-21.713617136171365,71.13862885586809],[-21.74241742417425,71.14369458767774],[-21.78561785617856,71.18084328761518],[-21.81081810818108,71.19435190577423],[-21.846818468184665,71.1960404830441],[-21.8360183601836,71.18253186488505],[-21.82521825218251,71.16902324672597],[-21.821618216182145,71.1572032058368],[-21.832418324183237,71.14707174221752],[-21.803618036180353,71.14538316494762],[-21.71721717217173,71.12005450589939],[-21.74961749617495,71.10992304228009],[-22.12042120421205,71.07615149688243],[-22.160021600215998,71.06770861053303],[-22.332823328233275,71.0592657241836],[-22.29682296822969,71.04237995148478],[-21.96921969219693,71.06602003326313],[-21.88641886418864,71.05757714691373],[-21.86841868418685,71.06602003326313],[-21.87561875618755,71.07277434234268],[-21.85041850418503,71.07446291961256],[-21.807218072180717,71.08459438323186],[-21.78561785617856,71.08628296050173],[-21.728017280172793,71.08459438323186],[-21.695616956169545,71.07952865142221],[-21.67401674016739,71.06602003326313],[-21.677616776167753,71.05588856964386],[-21.681216812168117,71.04237995148478],[-21.677616776167753,71.0305599105956],[-21.65961659616596,71.02380560151607],[-21.677616776167753,71.01705129243655],[-21.74241742417425,71.00354267427747],[-21.771217712177105,70.99847694246782],[-21.832418324183237,70.99509978792807],[-21.88641886418864,70.97990259249912],[-21.990819908199086,70.97652543795937],[-21.990819908199086,70.96808255160994],[-21.915219152191526,70.96301681980029],[-21.72441724417243,70.9934112106582],[-21.695616956169545,70.98327974703889],[-21.76761767617677,70.96132824253041],[-21.80001800017999,70.94444246983159],[-21.79281792817929,70.92755669713276],[-21.731617316173157,70.95457393345089],[-21.695616956169545,70.96301681980029],[-21.66681666816669,70.95626251072076],[-21.702817028170273,70.94275389256171],[-21.66681666816669,70.93768816075206],[-21.602016020160193,70.96470539707019],[-21.57321573215731,70.95626251072076],[-21.612816128161285,70.92924527440263],[-21.713617136171365,70.89040799719533],[-21.756817568175677,70.86676791541697],[-21.746017460174585,70.85832502906757],[-21.71721717217173,70.84312783363862],[-21.706417064170637,70.83975067909887],[-21.69921699216991,70.8363735245591],[-21.706417064170637,70.82961921547957],[-21.72441724417243,70.81779917459039],[-21.73521735217352,70.80429055643131],[-21.746017460174585,70.80091340189156],[-21.82521825218251,70.79922482462166],[-21.846818468184665,70.80091340189156],[-21.88641886418864,70.81273344278074],[-21.90081900819007,70.81273344278074],[-21.904419044190433,70.81273344278074],[-21.91161911619116,70.81442202005061],[-21.929619296192953,70.81273344278074],[-21.91161911619116,70.79584767008191],[-21.882818828188277,70.78571620646261],[-21.85041850418503,70.77896189738308],[-21.821618216182145,70.77727332011321],[-21.782017820178197,70.77896189738308],[-21.66681666816669,70.80260197916144],[-21.652416524165233,70.80260197916144],[-21.638016380163805,70.80091340189156],[-21.63441634416344,70.79584767008191],[-21.63441634416344,70.77896189738308],[-21.64161641616417,70.77389616557343],[-21.66681666816669,70.77051901103366],[-21.71721717217173,70.75194466106495],[-21.73521735217352,70.75025608379508],[-21.76761767617677,70.75025608379508],[-21.782017820178197,70.7468789292553],[-21.79281792817929,70.736747465636],[-21.76761767617677,70.736747465636],[-21.746017460174585,70.74181319744565],[-21.72441724417243,70.74350177471555],[-21.702817028170273,70.736747465636],[-21.66681666816669,70.7468789292553],[-21.61641616416165,70.74350177471555],[-21.57321573215731,70.72999315655647],[-21.544415444154424,70.7097302293179],[-21.764017640176405,70.7097302293179],[-21.764017640176405,70.70297592023834],[-21.74241742417425,70.69622161115882],[-21.630816308163077,70.69115587934917],[-21.605616056160557,70.68440157026964],[-21.580415804158037,70.67427010665034],[-21.594815948159464,70.66920437484072],[-21.61641616416165,70.66582722030094],[-21.656016560165597,70.66751579757081],[-21.64881648816487,70.65907291122141],[-21.64161641616417,70.65231860214189],[-21.620016200161984,70.64049856125268],[-21.645216452164505,70.63374425217316],[-21.756817568175677,70.63374425217316],[-21.74961749617495,70.62867852036351],[-21.746017460174585,70.62530136582376],[-21.738817388173885,70.61348132493458],[-21.764017640176405,70.60503843858515],[-21.771217712177105,70.58984124315623],[-21.76041760417604,70.57802120226705],[-21.731617316173157,70.57970977953693],[-21.677616776167753,70.59659555223575],[-21.652416524165233,70.5999727067755],[-21.620016200161984,70.59321839769598],[-21.620016200161984,70.58477551134658],[-21.67401674016739,70.5712668931875],[-21.652416524165233,70.5628240068381],[-21.56601566015661,70.55775827502845],[-21.551615516155152,70.54593823413927],[-21.54081540815409,70.5425610795995],[-21.51561515615157,70.5526925432188],[-21.501215012150112,70.5526925432188],[-21.486814868148684,70.54931538867902],[-21.476014760147592,70.5442496568694],[-21.537215372153725,70.49696949331266],[-21.55881558815588,70.48683802969336],[-21.602016020160193,70.46995225699456],[-21.638016380163805,70.4446235979463],[-21.663216632166325,70.4361807115969],[-21.69201692016921,70.42942640251735],[-21.753217532175313,70.42773782524748],[-21.764017640176405,70.42773782524748],[-21.789217892178925,70.4361807115969],[-21.79281792817929,70.43955786613665],[-21.839618396183965,70.43280355705713],[-21.940419404194046,70.39058912531007],[-21.990819908199086,70.3973434343896],[-22.00162001620015,70.41085205254865],[-21.98721987219872,70.4260492479776],[-21.954819548195474,70.44800075248608],[-21.94401944019441,70.463197947915],[-21.94401944019441,70.46995225699456],[-21.95121951219511,70.47501798880418],[-22.023220232202306,70.49865807058256],[-22.07722077220771,70.50203522512231],[-22.131221312213114,70.49359233877291],[-22.282422824228235,70.44631217521618],[-22.340023400234003,70.43955786613665],[-22.37962379623795,70.44800075248608],[-22.401224012240107,70.46488652518491],[-22.415624156241563,70.49696949331266],[-22.419224192241927,70.5341181932501],[-22.408424084240835,70.56620116137785],[-22.415624156241563,70.5712668931875],[-22.408424084240835,70.57970977953693],[-22.440824408244083,70.63880998398281],[-22.448024480244783,70.64556429306234],[-22.466024660246603,70.65738433395151],[-22.473224732247303,70.66582722030094],[-22.473224732247303,70.67089295211059],[-22.469624696246967,70.67595868392024],[-22.466024660246603,70.71141880658777],[-22.444424444244447,70.76883043376378],[-22.440824408244083,70.78402762919274],[-22.43722437224372,70.79415909281204],[-22.43002430024299,70.81104486551084],[-22.426424264242627,70.83130779274944],[-22.43002430024299,70.8465049881784],[-22.448024480244783,70.8549478745278],[-22.48042480424803,70.8549478745278],[-22.509225092250915,70.85157071998805],[-22.53082530825307,70.8465049881784],[-22.574025740257383,70.82624206093979],[-22.577625776257747,70.81779917459039],[-22.58122581225811,70.80597913370121],[-22.584825848258475,70.79922482462166],[-22.602826028260267,70.78233905192283],[-22.60642606426063,70.77051901103366],[-22.602826028260267,70.75869897014448],[-22.584825848258475,70.74350177471555],[-22.599225992259903,70.736747465636],[-22.649626496264943,70.72323884747695],[-22.642426424264244,70.71479596112755],[-22.649626496264943,70.70635307477812],[-22.649626496264943,70.70128734296847],[-22.646026460264608,70.69791018842872],[-22.63882638826388,70.69284445661907],[-22.635226352263516,70.68440157026964],[-22.63882638826388,70.67764726119012],[-22.646026460264608,70.67089295211059],[-22.649626496264943,70.66413864303107],[-22.642426424264244,70.65063002487199],[-22.624426244262423,70.63880998398281],[-22.58842588425884,70.62361278855388],[-22.58122581225811,70.61348132493458],[-22.574025740257383,70.5999727067755],[-22.566825668256683,70.58477551134658],[-22.566825668256683,70.5712668931875],[-22.570425704257048,70.55775827502845],[-22.577625776257747,70.54762681140915],[-22.58122581225811,70.53749534778984],[-22.58122581225811,70.52398672963079],[-22.58842588425884,70.51047811147174],[-22.599225992259903,70.47501798880418],[-22.610026100260995,70.45982079337526],[-22.63162631626315,70.4446235979463],[-22.660426604266036,70.43786928886678],[-23.01683016830168,70.43955786613665],[-23.096030960309605,70.4260492479776],[-23.34443344433444,70.44124644340653],[-23.682836828368266,70.5442496568694],[-23.747637476374763,70.5526925432188],[-23.808838088380867,70.56957831591762],[-23.93123931239313,70.61348132493458],[-24.02124021240212,70.65907291122141],[-24.068040680406796,70.6894673020793],[-24.078840788407888,70.71479596112755],[-24.086040860408588,70.71479596112755],[-24.093240932409316,70.7181731156673],[-24.09684096840968,70.72323884747695],[-24.100441004410044,70.73337031109625],[-24.111241112411108,70.75194466106495],[-24.165241652416512,70.78740478373248],[-24.183241832418332,70.80429055643131],[-24.208442084420852,70.86170218360732],[-24.215642156421552,70.89885088354475],[-24.22284222842228,70.9140480789737],[-24.226442264422644,70.93093385167253],[-24.22284222842228,70.95626251072076],[-24.19764197641976,70.99509978792807],[-24.194041940419396,71.0119855606269],[-24.212042120421188,71.02718275605585],[-24.22284222842228,71.03562564240525],[-24.226442264422644,71.04406852875465],[-24.23004230042301,71.0508228378342],[-24.237242372423708,71.0592657241836],[-24.266042660426592,71.08121722869208],[-24.428044280442805,71.16395751491635],[-24.50724507245073,71.19097475123445],[-24.568445684456833,71.21799198755258],[-24.58284582845829,71.22812345117188],[-24.586445864458625,71.24163206933093],[-24.572045720457197,71.26358357383941],[-24.60084600846008,71.27033788291894],[-24.636846368463665,71.26864930564906],[-24.669246692466913,71.27202646018884],[-24.68364683646837,71.28891223288767],[-24.672846728467277,71.30073227377684],[-24.61524615246151,71.33956955098412],[-24.636846368463665,71.3615210554926],[-24.672846728467277,71.35645532368295],[-24.70884708847089,71.34125812825403],[-24.744847448474474,71.3328152419046],[-24.798847988479878,71.3328152419046],[-24.80964809648097,71.33112666463472],[-24.820448204482034,71.31761804647567],[-24.827648276482762,71.31255231466602],[-24.849248492484918,71.30748658285637],[-24.870848708487074,71.3041094283166],[-24.89244892448923,71.30579800558647],[-24.91044910449105,71.31255231466602],[-24.91044910449105,71.31761804647567],[-24.928449284492842,71.31930662374555],[-24.964449644496426,71.31930662374555],[-24.982449824498246,71.31761804647567],[-25.01845018450183,71.30748658285637],[-25.03645036450365,71.30579800558647],[-25.097650976509755,71.3041094283166],[-25.122851228512275,71.31086373739612],[-25.173251732517315,71.34632386006368],[-25.234452344523447,71.3632096327625],[-25.266852668526667,71.37334109638178],[-25.29565295652955,71.40035833269991],[-25.306453064530643,71.40711264177943],[-25.342453424534227,71.42399841447826],[-25.35325353253532,71.43244130082769],[-25.37845378453784,71.44594991898674],[-25.439654396543972,71.44932707352652],[-25.461254612546128,71.45945853714582],[-25.47925479254792,71.4695900007651],[-25.526055260552596,71.48309861892417],[-25.544055440554388,71.49323008254345],[-25.558455584555844,71.5084272779724],[-25.576455764557636,71.52024731886158],[-25.598055980559792,71.53037878248088],[-25.623256232562312,71.53882166883028],[-25.641256412564132,71.54219882337006],[-25.698856988569872,71.53882166883028],[-25.742057420574213,71.54557597790983],[-25.760057600576005,71.54557597790983],[-25.767257672576733,71.55064170971949],[-25.828458284582837,71.55908459606889],[-25.83925839258393,71.56246175060866],[-25.850058500584993,71.56752748241831],[-25.860858608586085,71.57090463695806],[-25.875258752587513,71.57259321422794],[-25.954459544595437,71.56583890514841],[-25.994059940599413,71.56752748241831],[-26.076860768607673,71.58610183238702],[-26.112861128611286,71.58441325511711],[-26.19206192061921,71.57259321422794],[-26.27486274862747,71.57090463695806],[-26.31806318063181,71.57765894603759],[-26.354063540635394,71.59623329600632],[-26.38286382863828,71.63169341867385],[-26.40086400864007,71.64182488229315],[-26.42606426064259,71.64182488229315],[-26.43326433264332,71.6367591504835],[-26.44406444064441,71.63169341867385],[-26.454864548645475,71.62325053232442],[-26.45846458464584,71.6164962232449],[-26.46926469264693,71.57597036876771],[-26.50166501665015,71.55908459606889],[-26.598865988659895,71.54726455517971],[-26.7860678606786,71.54726455517971],[-26.814868148681484,71.55908459606889],[-26.876068760687588,71.56583890514841],[-26.93726937269372,71.58103610057736],[-27.156871568715673,71.66884211861125],[-27.174871748717493,71.67897358223055],[-27.210872108721077,71.72287659124751],[-27.210872108721077,71.72794232305716],[-27.210872108721077,71.72963090032704],[-27.20367203672035,71.72963090032704],[-27.22167221672217,71.74482809575599],[-27.326073260732613,71.78028821842352],[-27.36567365673656,71.7819767956934],[-27.383673836738353,71.78704252750305],[-27.419674196741965,71.80392830020187],[-27.462874628746277,71.8106826092814],[-27.614076140761398,71.86640565918754],[-27.621276212762126,71.88160285461649],[-27.603276032760334,71.90186578185507],[-27.880478804788055,71.97954033626968],[-27.930879308793095,72.00993472712756],[-27.945279452794523,72.0048689953179],[-27.96687966879668,71.98291749080946],[-27.98487984879847,71.9778517589998],[-28.006480064800655,71.9761631817299],[-28.06768067680676,71.9778517589998],[-28.125281252812528,71.98967179988898],[-28.190081900818996,71.9964261089685],[-28.208082080820816,71.99811468623838],[-28.330483304833052,72.05214915887464],[-28.460084600846017,72.08254354973252],[-28.557285572855733,72.1230694042097],[-28.586085860858617,72.13151229055913],[-28.618486184861837,72.13488944509888],[-28.632886328863293,72.13151229055913],[-28.640086400863993,72.1230694042097],[-28.643686436864357,72.1146265178603],[-28.650886508865085,72.10787220878078],[-28.665286652866513,72.10280647697112],[-28.694086940869397,72.09774074516147],[-28.70488704887049,72.09267501335182],[-28.70488704887049,72.0859207042723],[-28.67248672486724,72.08085497246265],[-28.607686076860773,72.08929785881205],[-28.575285752857525,72.08254354973252],[-28.55368553685537,72.075789240653],[-28.460084600846017,72.06228062249394],[-28.359283592835936,72.00655757258781],[-28.40248402484025,71.99136037715886],[-28.467284672846716,71.9778517589998],[-28.488884888848872,71.95927740903107],[-28.456484564845653,71.9390144817925],[-28.157681576815776,71.92381728636354],[-27.862478624786235,71.90862009093462],[-27.822878228782287,71.89680005004541],[-27.80127801278013,71.87484854553696],[-27.85167851678517,71.87991427734659],[-27.945279452794523,71.89848862731532],[-27.9920799207992,71.90186578185507],[-28.006480064800655,71.89680005004541],[-28.024480244802447,71.88835716369601],[-28.03528035280351,71.87822570007671],[-28.031680316803175,71.87484854553696],[-27.96687966879668,71.87147139099719],[-27.65007650076501,71.79548541385248],[-27.32967329673295,71.71949943670774],[-27.333273332733313,71.70936797308843],[-27.358473584735833,71.68572789131008],[-27.36567365673656,71.6755964276908],[-27.37287372873729,71.6654649640715],[-27.38007380073799,71.65702207772208],[-27.39087390873908,71.64857919137268],[-27.408874088740873,71.64182488229315],[-27.45567455674555,71.64013630502325],[-27.63207632076319,71.65195634591242],[-27.686076860768594,71.64857919137268],[-27.812078120781194,71.61143049143524],[-27.855278552785535,71.60636475962559],[-27.938079380793795,71.6266276868642],[-27.981279812798135,71.63000484140397],[-28.006480064800655,71.61311906870515],[-27.948879488794887,71.60636475962559],[-27.930879308793095,71.59961045054607],[-27.963279632796315,71.58947898692676],[-28.391683916839156,71.57259321422794],[-28.474484744847445,71.58610183238702],[-28.492484924849236,71.57934752330749],[-28.492484924849236,71.57765894603759],[-28.488884888848872,71.57597036876771],[-28.488884888848872,71.57259321422794],[-28.492484924849236,71.56583890514841],[-28.42048420484204,71.54895313244958],[-28.164881648816475,71.56077317333876],[-27.90927909279091,71.57090463695806],[-27.80127801278013,71.59623329600632],[-27.711277112771114,71.60129902781594],[-27.65007650076501,71.61311906870515],[-27.387273872738717,71.59285614146654],[-27.12087120871209,71.57259321422794],[-27.13887138871388,71.55570744152911],[-27.167671676716765,71.54388740063993],[-27.250472504725053,71.528690205211],[-27.308073080730793,71.5270016279411],[-27.32967329673295,71.51687016432183],[-27.218072180721805,71.48141004165427],[-27.20367203672035,71.48141004165427],[-27.200072000720013,71.49323008254345],[-27.174871748717493,71.5084272779724],[-27.124471244712453,71.52024731886158],[-27.034470344703436,71.53037878248088],[-26.980469804698032,71.528690205211],[-26.814868148681484,71.50336154616275],[-26.764467644676444,71.50673870070253],[-26.742867428674288,71.50336154616275],[-26.706867068670675,71.48478719619405],[-26.688866888668883,71.48141004165427],[-26.523265232652335,71.48816435073383],[-26.447664476644775,71.51011585524228],[-26.321663216632174,71.49660723708323],[-26.26766267662677,71.5084272779724],[-26.156061560615598,71.4898529280037],[-26.10926109261092,71.4898529280037],[-26.012060120601205,71.50336154616275],[-25.803258032580317,71.4898529280037],[-25.727657276572756,71.47465573257475],[-25.65565655656556,71.442572764447],[-25.590855908559092,71.40373548723969],[-25.55485554855548,71.38684971454086],[-25.522455224552232,71.38009540546133],[-25.461254612546128,71.3817839827312],[-25.443254432544308,71.38009540546133],[-25.436054360543608,71.37502967365168],[-25.42885428854288,71.36658678730225],[-25.42165421654215,71.35814390095285],[-25.410854108541088,71.3530781691432],[-25.414454144541452,71.33788097371425],[-25.418054180541787,71.28553507834789],[-25.42885428854288,71.27371503745871],[-25.50445504455044,71.23487776025141],[-25.511655116551168,71.2163034102827],[-25.544055440554388,71.2163034102827],[-25.709657096570965,71.26189499656954],[-25.749257492574912,71.26527215110929],[-25.78165781657816,71.25682926475989],[-25.73845738457385,71.23656633752128],[-25.594455944559428,71.1960404830441],[-25.580055800558,71.18928617396458],[-25.601656016560156,71.16902324672597],[-25.68085680856808,71.15551462856692],[-25.709657096570965,71.14369458767774],[-25.724057240572392,71.13525170132834],[-25.785257852578525,71.12680881497892],[-25.84645846458463,71.10823446501021],[-25.91485914859149,71.10148015593069],[-25.936459364593645,71.09472584685113],[-25.9580595805958,71.08628296050173],[-25.986859868598685,71.0693971878029],[-26.001260012600113,71.06264287872338],[-26.019260192601934,71.0592657241836],[-26.094860948609494,71.0592657241836],[-26.170461704617054,71.04575710602455],[-26.231662316623158,71.04575710602455],[-26.253262532625314,71.0406913742149],[-26.264062640626406,71.03562564240525],[-26.285662856628562,71.01367413789677],[-26.30006300062999,71.00691982881725],[-26.339663396633966,71.00523125154737],[-26.354063540635394,71.00016551973772],[-26.386463864638642,70.98496832430877],[-26.42606426064259,70.97483686068946],[-26.82926829268291,70.93599958348216],[-27.15327153271531,70.94950820164124],[-27.25407254072539,70.93599958348216],[-27.50607506075059,70.94275389256171],[-27.51687516875168,70.95626251072076],[-27.552875528755294,70.99509978792807],[-27.57447574475745,71.01029698335702],[-27.740077400774,71.10316873320056],[-27.754477544775455,71.11330019681986],[-27.761677616776154,71.12680881497892],[-27.76527765277652,71.13862885586809],[-27.772477724777247,71.14707174221752],[-27.786877868778674,71.15382605129705],[-27.804878048780495,71.1572032058368],[-27.822878228782287,71.15213747402714],[-27.83367833678335,71.14538316494762],[-27.848078480784807,71.14031743313797],[-27.905679056790575,71.14031743313797],[-27.923679236792367,71.13356312405844],[-27.912879128791275,71.11498877408974],[-27.869678696786963,71.08966011504148],[-27.848078480784807,71.07277434234268],[-27.812078120781194,71.03562564240525],[-27.79047790477904,71.0221170242462],[-27.73287732877327,71.01367413789677],[-27.696876968769686,71.00523125154737],[-27.664476644766438,70.99172263338829],[-27.639276392763918,70.97652543795937],[-27.617676176761762,70.95457393345089],[-27.635676356763554,70.94444246983159],[-27.704077040770414,70.94275389256171],[-27.743677436774362,70.94613104710146],[-27.84087840878408,70.97652543795937],[-27.956079560795615,70.97652543795937],[-27.974079740797407,70.97990259249912],[-28.00288002880029,70.9934112106582],[-28.01728017280172,70.99678836519794],[-28.05328053280533,70.99509978792807],[-28.182881828818296,70.97483686068946],[-28.229682296822972,70.97652543795937],[-28.247682476824764,70.97990259249912],[-28.276482764827648,70.9934112106582],[-28.290882908829076,70.99678836519794],[-28.362883628836272,70.99003405611842],[-28.398883988839884,70.98159116976899],[-28.409684096840977,70.96808255160994],[-28.107281072810736,70.93937673802193],[-28.06768067680676,70.9224909653231],[-28.06048060480603,70.8937851517351],[-28.013680136801355,70.8937851517351],[-28.00288002880029,70.89716230627488],[-27.9920799207992,70.89885088354475],[-27.920079200792003,70.88196511084593],[-27.920079200792003,70.86845649268687],[-27.93447934479343,70.85325929725792],[-27.95247952479525,70.83975067909887],[-27.974079740797407,70.81611059732049],[-27.995679956799563,70.765453279224],[-28.01008010080099,70.74012462017578],[-28.04248042480424,70.71310738385765],[-28.150481504815048,70.64725287033224],[-28.190081900818996,70.63374425217316],[-28.240482404824036,70.62698994309363],[-28.337683376833752,70.62698994309363],[-28.337683376833752,70.62023563401411],[-28.316083160831596,70.60841559312493],[-28.290882908829076,70.6016612840454],[-28.240482404824036,70.5999727067755],[-28.240482404824036,70.59321839769598],[-28.265682656826556,70.58646408861645],[-28.308883088830896,70.56451258410797],[-28.362883628836272,70.55606969775857],[-28.416884168841676,70.54087250232962],[-28.44568445684456,70.53749534778984],[-28.517685176851757,70.54087250232962],[-28.542885428854277,70.53749534778984],[-28.55368553685537,70.53242961598019],[-28.582485824858253,70.52060957509102],[-28.59688596885968,70.51723242055127],[-28.715687156871553,70.52398672963079],[-29.036090360903614,70.48008372061383],[-29.061290612906134,70.46657510245478],[-29.075690756907562,70.463197947915],[-29.17289172891728,70.47164083426443],[-29.1980919809198,70.46826367972466],[-29.22329223292232,70.46150937064513],[-29.23409234092341,70.44800075248608],[-29.23409234092341,70.44631217521618],[-29.23409234092341,70.44124644340653],[-29.187291872918735,70.42773782524748],[-29.180091800918007,70.42098351616795],[-29.180091800918007,70.41254062981852],[-29.19089190891907,70.4074748980089],[-29.1980919809198,70.40240916619925],[-29.205292052920527,70.39396627984982],[-29.111691116911175,70.39396627984982],[-29.03249032490325,70.41254062981852],[-29.003690036900366,70.41422920708843],[-28.978489784897846,70.41929493889808],[-28.935289352893534,70.44293502067643],[-28.910089100891014,70.44800075248608],[-28.88128881288813,70.45137790702583],[-28.787687876878778,70.46995225699456],[-28.575285752857525,70.47501798880418],[-28.542885428854277,70.47839514334396],[-28.492484924849236,70.50541237966209],[-28.460084600846017,70.50710095693196],[-28.39528395283952,70.50372380239219],[-28.280082800828012,70.51047811147174],[-28.290882908829076,70.50203522512231],[-28.298082980829804,70.49696949331266],[-28.308883088830896,70.49528091604279],[-28.323283232832324,70.49696949331266],[-28.316083160831596,70.48514945242349],[-28.308883088830896,70.48008372061383],[-28.301683016830168,70.47670656607409],[-28.305283052830532,70.47164083426443],[-28.326883268832688,70.45137790702583],[-28.341283412834116,70.4446235979463],[-28.348483484834844,70.434492134327],[-28.337683376833752,70.41760636162817],[-28.326883268832688,70.4074748980089],[-28.272882728827284,70.38383481623052],[-28.233282332823336,70.37201477534134],[-28.10368103681037,70.3872119707703],[-28.04248042480424,70.38552339350042],[-27.614076140761398,70.42098351616795],[-27.182071820718193,70.45644363883548],[-27.06327063270632,70.44293502067643],[-26.904869048690472,70.4547550615656],[-26.800468004680027,70.48008372061383],[-26.742867428674288,70.48346087515361],[-26.530465304653035,70.47501798880418],[-26.48366483664836,70.46150937064513],[-26.321663216632174,70.38045766169077],[-26.339663396633966,70.3686376208016],[-26.364863648636486,70.36019473445216],[-26.386463864638642,70.35512900264251],[-26.447664476644775,70.35175184810277],[-26.454864548645475,70.34499753902324],[-26.45126451264511,70.33148892086416],[-26.699666996669947,70.29096306638698],[-26.724867248672467,70.2892744891171],[-26.85446854468543,70.30109453000628],[-26.933669336693356,70.32642318905451],[-26.973269732697332,70.32811176632441],[-27.02007020070201,70.3078488390858],[-27.081270812708112,70.2977173754665],[-27.13887138871388,70.27238871641828],[-27.174871748717493,70.26394583006885],[-27.257672576725753,70.25719152098932],[-27.293672936729365,70.2504372119098],[-27.394473944739445,70.19809131654344],[-27.412474124741237,70.18458269838436],[-27.434074340743393,70.17613981203496],[-27.704077040770414,70.13561395755778],[-27.779677796777975,70.10859672123965],[-27.819278192781923,70.09846525762035],[-27.905679056790575,70.09171094854082],[-28.107281072810736,70.14405684390718],[-28.254882548825492,70.14574542117705],[-28.26208262082619,70.14067968936743],[-28.316083160831596,70.13561395755778],[-28.424084240842404,70.0933995258107],[-28.481684816848173,70.0849566394613],[-28.575285752857525,70.10015383489022],[-28.589685896858953,70.09171094854082],[-28.582485824858253,70.074825175842],[-28.560885608856097,70.05962798041304],[-28.535685356853577,70.04780793952386],[-28.514085140851392,70.04443078498412],[-28.44568445684456,70.05118509406364],[-28.362883628836272,70.05118509406364],[-28.226082260822608,70.07144802130222],[-28.10368103681037,70.07144802130222],[-28.07848078480785,70.06469371222269],[-28.031680316803175,70.03092216682504],[-27.999279992799927,70.02247928047564],[-27.97767977679777,70.01403639412621],[-27.96687966879668,70.01065923958646],[-27.956079560795615,70.01065923958646],[-27.930879308793095,70.01741354866598],[-27.862478624786235,70.02079070320576],[-27.804878048780495,70.03936505317446],[-27.596075960759606,70.06131655768294],[-27.552875528755294,70.05962798041304],[-27.52407524075241,70.04780793952386],[-27.520475204752046,70.03767647590456],[-27.520475204752046,70.02585643501538],[-27.527675276752774,70.00390493050693],[-27.527675276752774,69.99039631234785],[-27.52407524075241,69.98195342599846],[-27.51687516875168,69.9751991169189],[-27.50607506075059,69.97013338510928],[-27.47367473674737,69.96000192148998],[-27.34047340473404,69.97182196237915],[-27.308073080730793,69.9768876941888],[-27.282872828728273,69.99208488961773],[-27.18927189271892,70.08833379400104],[-27.17847178471783,70.10353098943],[-27.185671856718557,70.11028529850952],[-27.192871928719285,70.11535103031918],[-27.200072000720013,70.12717107120835],[-27.192871928719285,70.13730253482765],[-27.182071820718193,70.14574542117705],[-27.17847178471783,70.15418830752648],[-27.185671856718557,70.16769692568553],[-27.10287102871027,70.20315704835309],[-27.074070740707413,70.20822278016271],[-27.027270272702708,70.20146847108319],[-27.005670056700552,70.20146847108319],[-26.980469804698032,70.20822278016271],[-26.908469084690836,70.24874863463992],[-26.883268832688316,70.25719152098932],[-26.843668436684368,70.2605686755291],[-26.63486634866348,70.2504372119098],[-26.60966609666096,70.24368290283027],[-26.537665376653763,70.21159993470249],[-26.32526325263251,70.19809131654344],[-26.27486274862747,70.21159993470249],[-26.235262352623522,70.22679713013144],[-25.98325983259832,70.27745444822793],[-25.90765907659076,70.3078488390858],[-25.464854648546492,70.37876908442087],[-25.436054360543608,70.39058912531007],[-25.360453604536048,70.39903201165947],[-25.306453064530643,70.41254062981852],[-25.248852488524875,70.41422920708843],[-25.21285212852129,70.40916347527877],[-25.2020520205202,70.39903201165947],[-25.23805238052381,70.38045766169077],[-25.27765277652776,70.37370335261124],[-25.360453604536048,70.37201477534134],[-25.39645396453963,70.35850615718229],[-25.274052740527395,70.35850615718229],[-25.28845288452885,70.35175184810277],[-25.3280532805328,70.33824322994369],[-25.335253352533528,70.32811176632441],[-25.33885338853389,70.32473461178463],[-25.349653496534955,70.31460314816533],[-25.35325353253532,70.30278310727616],[-25.342453424534227,70.2875859118472],[-25.342453424534227,70.28420875730745],[-25.331653316533163,70.2791430254978],[-25.324453244532435,70.27745444822793],[-25.234452344523447,70.27745444822793],[-25.22005220052199,70.2791430254978],[-25.21285212852129,70.28589733457733],[-25.205652056520563,70.29434022092676],[-25.198451984519835,70.30447168454603],[-25.184051840518407,70.31291457089546],[-25.058050580505807,70.36188331172204],[-25.032850328503287,70.36694904353169],[-25.00045000450004,70.36526046626182],[-24.96084960849609,70.35850615718229],[-24.924849248492478,70.34499753902324],[-24.91044910449105,70.32811176632441],[-24.906849068490686,70.3162917254352],[-24.899648996489958,70.30616026181593],[-24.888848888488866,70.29940595273641],[-24.874448744487438,70.2977173754665],[-24.863648636486346,70.30109453000628],[-24.86004860048601,70.3078488390858],[-24.86004860048601,70.31291457089546],[-24.856448564485646,70.31798030270511],[-24.820448204482034,70.32473461178463],[-24.78444784447845,70.3162917254352],[-24.748447484474838,70.30447168454603],[-24.680046800468006,70.29265164365685],[-24.611646116461145,70.2690115618785],[-24.586445864458625,70.27070013914837],[-24.568445684456833,70.2605686755291],[-24.485644856448573,70.24706005737002],[-24.478444784447845,70.2403057482905],[-24.47484474844748,70.23355143921097],[-24.47484474844748,70.22679713013144],[-24.471244712447117,70.2217313983218],[-24.46404464044639,70.22004282105192],[-24.428044280442805,70.2217313983218],[-24.219242192421916,70.20822278016271],[-24.179641796417968,70.19640273927354],[-24.035640356403547,70.18458269838436],[-24.01404014040139,70.17782838930484],[-23.999639996399964,70.16600834841566],[-23.985239852398507,70.15925403933613],[-23.967239672396715,70.15587688479636],[-23.924039240392403,70.15249973025661],[-23.91323913239131,70.14912257571683],[-23.89523895238952,70.13899111209753],[-23.86283862838627,70.13392538028788],[-23.798037980379803,70.1508111529867],[-23.758437584375827,70.14405684390718],[-23.733237332373307,70.13561395755778],[-23.65403654036541,70.13392538028788],[-23.62883628836289,70.13054822574813],[-23.582035820358186,70.11703960758905],[-23.56043560435603,70.1136624530493],[-23.164431644316437,70.1136624530493],[-22.768427684276844,70.1136624530493],[-22.372423724237223,70.11535103031918],[-22.343623436234367,70.1237939166686],[-22.289622896228963,70.13054822574813],[-22.21042210422104,70.14912257571683],[-22.109621096210958,70.15587688479636],[-22.09522095220953,70.1508111529867],[-22.080820808208074,70.13899111209753],[-22.07722077220771,70.13054822574813],[-22.088020880208802,70.12717107120835],[-22.106021060210594,70.11872818485895],[-22.15282152821527,70.08157948492152],[-22.160021600215998,70.07144802130222],[-22.242822428224287,70.03767647590456],[-22.29682296822969,70.00052777596716],[-22.33642336423364,69.99039631234785],[-22.37962379623795,69.97182196237915],[-22.401224012240107,69.97182196237915],[-22.415624156241563,69.98364200326833],[-22.419224192241927,69.9954620441575],[-22.43002430024299,70.00559350777681],[-22.444424444244447,70.01065923958646],[-22.466024660246603,70.01234781685633],[-22.473224732247303,70.01065923958646],[-22.476824768247667,69.99883919869728],[-22.476824768247667,69.98870773507798],[-22.484024840248395,69.98195342599846],[-22.491224912249123,69.9768876941888],[-22.50562505625055,69.9751991169189],[-22.548825488254863,69.97857627145868],[-22.56322563225632,69.97013338510928],[-22.566825668256683,69.94480472606102],[-22.58122581225811,69.93973899425137],[-22.736027360273596,69.9464933033309],[-22.761227612276116,69.94142757152127],[-22.779227792277908,69.9279189533622],[-22.800828008280064,69.93467326244172],[-22.797227972279728,69.94311614879115],[-22.793627936279364,69.9481818806008],[-22.786427864278636,69.95155903514055],[-22.779227792277908,69.95493618968032],[-22.804428044280428,69.95493618968032],[-22.854828548285468,69.96337907602972],[-22.880028800287988,69.96337907602972],[-22.894428944289444,69.9583133442201],[-22.912429124291236,69.95155903514055],[-22.92322923229233,69.94142757152127],[-22.93042930429303,69.93129610790197],[-22.9160291602916,69.91609891247302],[-22.883628836288352,69.91103318066337],[-22.797227972279728,69.90427887158384],[-22.779227792277908,69.90090171704406],[-22.772027720277208,69.89414740796454],[-22.775627756277544,69.89077025342479],[-22.804428044280428,69.87895021253561],[-22.829628296282948,69.88908167615489],[-22.9160291602916,69.89414740796454],[-22.934029340293392,69.90090171704406],[-22.970029700297005,69.9279189533622],[-23.00603006030059,69.94311614879115],[-23.038430384303837,69.94480472606102],[-23.06723067230672,69.93636183971162],[-23.09243092430924,69.92116464428267],[-23.045630456304565,69.89414740796454],[-23.038430384303837,69.88401594434524],[-23.045630456304565,69.87388448072596],[-23.06723067230672,69.87050732618619],[-23.196831968319685,69.88063878980549],[-23.240032400323997,69.87726163526571],[-23.279632796327945,69.86037586256688],[-23.26883268832688,69.85868728529701],[-23.247232472324725,69.85362155348736],[-22.977229772297704,69.84180151259818],[-22.934029340293392,69.82153858535958],[-22.919629196291964,69.8198500080897],[-22.908829088290872,69.81309569901018],[-22.9160291602916,69.79789850358122],[-22.92322923229233,69.7911441945017],[-22.99882998829989,69.76581553545347],[-23.03123031230311,69.7624383809137],[-23.10683106831067,69.77088126726312],[-23.178831788317865,69.78776703996195],[-23.20763207632075,69.80296423539087],[-23.261632616326153,69.8401129353283],[-23.297632976329766,69.85362155348736],[-23.33363333633335,69.86206443983679],[-23.36963369633696,69.86037586256688],[-23.387633876338754,69.85193297621748],[-23.387633876338754,69.8485558216777],[-23.373233732337326,69.84517866713796],[-23.35163351633517,69.84517866713796],[-23.337233372333714,69.84180151259818],[-23.31923319233192,69.82829289443913],[-23.290432904329037,69.81647285354995],[-23.272432724327246,69.79620992631135],[-23.254432544325425,69.77425842180287],[-23.25083250832509,69.76412695818357],[-23.24363243632436,69.7539954945643],[-23.25083250832509,69.75230691729439],[-23.348033480334806,69.7624383809137],[-23.40923409234091,69.75061834002452],[-23.632436324363226,69.73204399005581],[-23.93123931239313,69.75568407183417],[-23.909639096390947,69.74555260821487],[-23.70443704437045,69.71853537189673],[-23.67923679236793,69.70671533100756],[-23.664836648366474,69.68982955830873],[-23.657636576365746,69.67125520834003],[-23.646836468364683,69.65605801291107],[-23.625236252362527,69.6459265492918],[-23.57843578435785,69.63241793113272],[-23.57843578435785,69.6256636220532],[-23.6180361803618,69.6172207357038],[-23.69363693636936,69.61384358116402],[-23.72963729637297,69.60540069481459],[-23.72963729637297,69.60033496300497],[-23.650436504365047,69.59864638573507],[-23.621636216362162,69.59189207665554],[-23.646836468364683,69.56487484033741],[-23.690036900368995,69.54630049036871],[-23.81243812438123,69.51252894497105],[-23.93843938439383,69.5361690267494],[-23.949239492394923,69.54798906763858],[-23.952839528395288,69.56318626306754],[-23.96363963639635,69.57838345849649],[-23.98163981639817,69.59020349938567],[-24.003240032400328,69.59358065392541],[-24.017640176401756,69.58682634484589],[-24.024840248402484,69.56825199487719],[-24.03924039240391,69.55812053125788],[-24.06444064440643,69.55812053125788],[-24.258842588425892,69.58513776757601],[-24.309243092430933,69.60202354027484],[-24.334443344433453,69.60540069481459],[-24.35604356043561,69.60033496300497],[-24.208442084420852,69.55474337671814],[-24.143641436414356,69.55136622217836],[-24.11484114841147,69.54461191309883],[-24.100441004410044,69.53279187220966],[-24.086040860408588,69.51928325405058],[-24.075240752407524,69.50239748135175],[-24.075240752407524,69.48551170865292],[-24.082440824408252,69.47538024503365],[-24.107641076410772,69.47200309049387],[-24.154441544415448,69.47538024503365],[-24.14724147241472,69.46356020414447],[-24.143641436414356,69.45849447233482],[-24.136441364413628,69.45511731779504],[-24.150841508415084,69.44836300871552],[-24.150841508415084,69.44160869963599],[-24.136441364413628,69.43823154509622],[-24.107641076410772,69.43147723601669],[-24.093240932409316,69.42810008147691],[-24.107641076410772,69.41796861785761],[-24.132841328413292,69.41796861785761],[-24.258842588425892,69.44160869963599],[-24.266042660426592,69.44836300871552],[-24.341643416434152,69.44329727690587],[-24.366843668436672,69.44836300871552],[-24.341643416434152,69.43485439055644],[-24.345243452434516,69.41796861785761],[-24.366843668436672,69.40108284515881],[-24.417244172441713,69.3706884543009],[-24.44964449644496,69.3622455679515],[-24.478444784447845,69.3622455679515],[-24.510845108451065,69.37237703157078],[-24.510845108451065,69.37913134065033],[-24.471244712447117,69.38588564972986],[-24.492844928449273,69.39095138153951],[-24.579245792457925,69.38588564972986],[-24.662046620466185,69.39939426788891],[-24.68364683646837,69.40783715423834],[-24.687246872468705,69.41290288604799],[-24.698046980469798,69.42978865874682],[-24.70884708847089,69.43485439055644],[-24.73404734047341,69.43316581328656],[-24.74124741247411,69.42978865874682],[-24.737647376473745,69.42134577239739],[-24.744847448474474,69.41459146331786],[-24.748447484474838,69.41121430877809],[-24.748447484474838,69.40952573150821],[-24.75924759247593,69.40783715423834],[-24.7520475204752,69.40108284515881],[-24.71604716047159,69.38250849519008],[-24.67644676446764,69.37237703157078],[-24.644046440464393,69.35549125887198],[-24.61524615246151,69.31834255893455],[-24.629646296462965,69.31834255893455],[-24.669246692466913,69.3132768271249],[-24.70164701647016,69.30314536350559],[-24.744847448474474,69.30145678623572],[-24.76644766447663,69.29807963169594],[-24.76644766447663,69.28963674534654],[-24.737647376473745,69.28457101353689],[-24.647646476464757,69.28963674534654],[-24.6260462604626,69.28794816807667],[-24.61524615246151,69.27950528172724],[-24.61524615246151,69.26937381810794],[-24.636846368463665,69.25586519994889],[-24.67644676446764,69.24404515905971],[-24.813248132481306,69.24235658178983],[-24.813248132481306,69.24911089086936],[-24.806048060480606,69.25079946813923],[-24.802448024480242,69.25248804540911],[-24.798847988479878,69.25417662267901],[-24.79164791647915,69.25586519994889],[-24.79164791647915,69.26261950902841],[-24.81684816848167,69.26093093175854],[-24.906849068490686,69.26599666356819],[-24.950049500495,69.28119385899711],[-25.0760507605076,69.30145678623572],[-25.10125101251012,69.29807963169594],[-25.10125101251012,69.3048339407755],[-25.115651156511547,69.29639105442607],[-25.191251912519107,69.28288243626702],[-25.209252092520927,69.27612812718749],[-25.216452164521627,69.26937381810794],[-25.209252092520927,69.26261950902841],[-25.198451984519835,69.24911089086936],[-25.259652596525967,69.25248804540911],[-25.274052740527395,69.24911089086936],[-25.281252812528123,69.23729084998018],[-25.27045270452703,69.23222511817053],[-25.065250652506506,69.22884796363076],[-25.0760507605076,69.22884796363076],[-25.022050220502194,69.22547080909101],[-25.00045000450004,69.21702792274158],[-24.98604986049861,69.20183072731263],[-24.99324993249931,69.19338784096323],[-24.996849968499674,69.1866335318837],[-24.996849968499674,69.1765020682644],[-24.99324993249931,69.1663706046451],[-25.022050220502194,69.15961629556557],[-25.08685086850869,69.1579277182957],[-25.115651156511547,69.1477962546764],[-25.097650976509755,69.14104194559687],[-25.079650796507963,69.13597621378722],[-25.058050580505807,69.13259905924744],[-25.040050400503986,69.13259905924744],[-25.0760507605076,69.11064755473896],[-25.14445144451443,69.11064755473896],[-25.21285212852129,69.12246759562817],[-25.25245252452524,69.13935336832697],[-25.248852488524875,69.14610767740652],[-25.256052560525603,69.14610767740652],[-25.281252812528123,69.13935336832697],[-25.3280532805328,69.13259905924744],[-25.292052920529187,69.11571328654861],[-25.241652416524147,69.07856458661121],[-25.21285212852129,69.06505596845213],[-25.223652236522355,69.04648161848343],[-25.241652416524147,69.03803873213403],[-25.292052920529187,69.03803873213403],[-25.292052920529187,69.0295958457846],[-25.284852848528487,69.0295958457846],[-25.284852848528487,69.02284153670507],[-25.317253172531707,69.02621869124485],[-25.35325353253532,69.03803873213403],[-25.37125371253711,69.05323592756295],[-25.349653496534955,69.06505596845213],[-25.47925479254792,69.06505596845213],[-25.58725587255873,69.09713893657991],[-25.619656196561948,69.10051609111969],[-25.65565655656556,69.09207320477026],[-25.55485554855548,69.04648161848343],[-25.547655476554752,69.03297300032438],[-25.580055800558,69.0211529594352],[-25.65565655656556,69.00933291854602],[-25.616056160561612,68.99920145492672],[-25.49725497254971,69.00257860946647],[-25.464854648546492,68.99413572311707],[-25.44685446854467,68.98062710495802],[-25.450454504545036,68.96711848679894],[-25.486454864548648,68.96205275498929],[-25.63765637656377,68.96880706406884],[-25.702457024570236,68.96205275498929],[-25.702457024570236,68.95867560044954],[-25.71325713257133,68.94010125048081],[-25.716857168571693,68.93503551867119],[-25.68805688056881,68.92659263232176],[-25.598055980559792,68.9215269005121],[-25.576455764557636,68.91477259143258],[-25.58725587255873,68.90126397327353],[-25.626856268562676,68.87593531422527],[-25.666456664566653,68.87086958241562],[-25.78885788857889,68.88775535511445],[-25.82125821258211,68.87255815968552],[-25.77085770857707,68.85904954152645],[-25.785257852578525,68.8556723869867],[-25.810458104581045,68.85229523244692],[-25.82125821258211,68.84891807790714],[-25.8320583205832,68.84722950063727],[-25.84645846458463,68.84722950063727],[-25.853658536585357,68.84722950063727],[-25.842858428584293,68.83878661428787],[-25.842858428584293,68.83203230520832],[-25.943659436594373,68.78981787346126],[-26.06606066060661,68.78137498711186],[-26.09126091260913,68.78644071892148],[-26.10926109261092,68.79319502800104],[-26.156061560615598,68.78475214165161],[-26.177661776617754,68.78644071892148],[-26.19206192061921,68.79150645073113],[-26.235262352623522,68.79319502800104],[-26.253262532625314,68.78981787346126],[-26.264062640626406,68.78812929619139],[-26.26766267662677,68.78475214165161],[-26.285662856628562,68.77293210076243],[-26.289262892628926,68.76448921441303],[-26.285662856628562,68.75942348260338],[-26.278462784627834,68.75435775079373],[-26.27486274862747,68.74929201898408],[-26.26766267662677,68.74422628717443],[-26.260462604626042,68.74253770990455],[-26.253262532625314,68.73916055536478],[-26.253262532625314,68.72902909174547],[-26.256862568625678,68.72396335993582],[-26.26766267662677,68.72227478266595],[-26.278462784627834,68.72058620539607],[-26.289262892628926,68.72227478266595],[-26.289262892628926,68.71552047358642],[-26.26766267662677,68.71552047358642],[-26.285662856628562,68.69525754634782],[-26.32526325263251,68.67837177364899],[-26.415264152641527,68.65810884641041],[-26.45126451264511,68.65810884641041],[-26.465664656646567,68.65979742368029],[-26.47646476464763,68.66655173275981],[-26.49446494464945,68.67837177364899],[-26.505265052650515,68.68174892818877],[-26.5340653406534,68.6800603509189],[-26.606066060660595,68.65810884641041],[-26.642066420664207,68.65304311460076],[-26.67806678066779,68.65642026914054],[-26.706867068670675,68.66655173275981],[-26.717667176671767,68.6800603509189],[-26.692466924669247,68.70201185542737],[-26.742867428674288,68.70538900996712],[-26.843668436684368,68.63784591917181],[-26.915669156691564,68.65304311460076],[-26.955269552695512,68.64797738279111],[-26.991269912699124,68.63615734190194],[-27.01287012870128,68.62602587828263],[-27.01287012870128,68.61589441466333],[-27.005670056700552,68.59563148742475],[-27.009270092700916,68.59225433288498],[-27.023670236702372,68.58887717834523],[-27.048870488704893,68.5804342919958],[-27.056070560705592,68.57874571472593],[-27.142471424714245,68.59225433288498],[-27.160471604716037,68.6006972192344],[-27.182071820718193,68.6091401055838],[-27.24687246872469,68.60576295104406],[-27.29727297272973,68.61251726012358],[-27.32247322473225,68.6091401055838],[-27.336873368733677,68.6006972192344],[-27.31527315273152,68.58550002380545],[-27.261272612726117,68.5703028283765],[-27.232472324723233,68.5618599420271],[-27.218072180721805,68.5432855920584],[-27.23967239672396,68.53990843751862],[-27.275672756727573,68.5432855920584],[-27.31527315273152,68.53484270570897],[-27.45567455674555,68.53990843751862],[-27.527675276752774,68.55003990113792],[-27.527675276752774,68.55679421021745],[-27.51687516875168,68.5618599420271],[-27.495274952749526,68.5719914056464],[-27.488074880748798,68.57874571472593],[-27.58167581675815,68.57874571472593],[-27.610476104761034,68.56861425110662],[-27.63207632076319,68.55003990113792],[-27.65727657276571,68.53484270570897],[-27.722077220772206,68.54497416932827],[-27.75087750877509,68.53484270570897],[-27.75807758077579,68.52302266481979],[-27.603276032760334,68.49600542850166],[-27.63207632076319,68.48080823307274],[-27.743677436774362,68.47743107853296],[-27.779677796777975,68.46898819218356],[-27.812078120781194,68.47911965580283],[-27.88407884078839,68.49431685123179],[-27.912879128791275,68.51289120120049],[-27.92727927279273,68.53484270570897],[-27.93447934479343,68.55510563294757],[-27.948879488794887,68.56861425110662],[-27.981279812798135,68.5703028283765],[-28.020880208802083,68.56354851929697],[-28.024480244802447,68.55003990113792],[-28.01728017280172,68.52977697389932],[-28.024480244802447,68.50613689212096],[-28.024480244802447,68.49600542850166],[-28.006480064800655,68.47067676945343],[-28.01008010080099,68.45716815129438],[-28.020880208802083,68.4537909967546],[-28.03528035280351,68.46054530583413],[-28.05328053280533,68.47574250126308],[-28.06768067680676,68.46561103764378],[-28.07848078480785,68.4537909967546],[-28.09288092880928,68.4436595331353],[-28.11088110881107,68.44028237859555],[-28.125281252812528,68.44534811040518],[-28.16848168481684,68.46392246037391],[-28.21888218882188,68.49431685123179],[-28.265682656826556,68.50107116031131],[-28.355683556835572,68.50275973758121],[-28.34488344883448,68.49600542850166],[-28.312483124831232,68.48756254215226],[-28.29448294482944,68.48249681034261],[-28.283682836828376,68.47405392399318],[-28.254882548825492,68.44703668767508],[-28.254882548825492,68.44028237859555],[-28.29448294482944,68.42677376043648],[-28.44568445684456,68.44703668767508],[-28.506885068850693,68.44703668767508],[-28.4960849608496,68.42339660589673],[-28.506885068850693,68.41326514227742],[-28.52848528485285,68.41157656500755],[-28.550085500855005,68.41326514227742],[-28.575285752857525,68.41326514227742],[-28.59688596885968,68.4065108331979],[-28.614886148861473,68.39806794684847],[-28.636486364863657,68.39300221503882],[-28.636486364863657,68.3862479059593],[-28.62928629286293,68.38455932868942],[-28.618486184861837,68.37949359687977],[-28.611286112861137,68.37949359687977],[-28.632886328863293,68.36260782418094],[-28.661686616866177,68.36091924691107],[-28.791287912879113,68.38118217414964],[-28.82368823688236,68.38118217414964],[-28.841688416884153,68.37273928780024],[-28.84888848888488,68.35416493783151],[-28.852488524885246,68.32883627878329],[-28.949689496894962,68.35923066964116],[-28.98208982089821,68.36260782418094],[-28.98208982089821,68.34403347421224],[-29.00729007290073,68.34741062875199],[-29.10809108091081,68.38118217414964],[-29.126091260912602,68.39131363776895],[-29.14769147691476,68.39806794684847],[-29.17289172891728,68.39975652411835],[-29.194491944919434,68.39300221503882],[-29.201692016920163,68.37949359687977],[-29.1980919809198,68.36598497872069],[-29.180091800918007,68.35078778329176],[-29.154891548915487,68.34234489694234],[-29.129691296912966,68.33727916513268],[-29.111691116911175,68.33052485605316],[-29.097290972909718,68.31026192881458],[-29.136891368913695,68.27986753795668],[-29.162091620916215,68.2680474970675],[-29.19089190891907,68.26298176525785],[-29.20889208892089,68.27142465160728],[-29.277292772927723,68.32039339243386],[-29.280892808928087,68.32377054697363],[-29.295292952929515,68.31870481516398],[-29.331293312933127,68.31026192881458],[-29.33489334893349,68.30350761973506],[-29.34209342093419,68.29168757884585],[-29.345693456934555,68.26129318798797],[-29.356493564935647,68.2494731470988],[-29.38529385293853,68.24609599255902],[-29.446494464944635,68.26298176525785],[-29.47529475294752,68.2494731470988],[-29.446494464944635,68.2393416834795],[-29.396093960939595,68.22414448805057],[-29.378093780937803,68.20725871535174],[-29.378093780937803,68.20050440627219],[-29.406894068940687,68.21232444716136],[-29.44289442894427,68.21739017897102],[-29.51129511295113,68.22245591078067],[-29.52569525695256,68.22414448805057],[-29.5760957609576,68.24271883801927],[-29.612096120961212,68.24778456982892],[-29.62649626496264,68.25453887890845],[-29.637296372963732,68.26298176525785],[-29.633696336963368,68.27311322887715],[-29.612096120961212,68.2967533106555],[-29.680496804968044,68.28999900157598],[-29.694896948969472,68.29337615611576],[-29.730897308973084,68.30181904246516],[-29.774097740977396,68.30857335154468],[-29.781297812978124,68.31870481516398],[-29.781297812978124,68.33221343332306],[-29.781297812978124,68.34741062875199],[-29.78489784897849,68.36936213326047],[-29.792097920979216,68.3778050196099],[-29.806498064980644,68.37949359687977],[-29.820898208982072,68.3862479059593],[-29.83529835298353,68.39806794684847],[-29.842498424984257,68.40988798773765],[-29.85329853298532,68.4149537195473],[-29.871298712987112,68.41326514227742],[-29.896498964989632,68.3963793695786],[-29.90369903699036,68.39300221503882],[-29.939699396993973,68.3862479059593],[-29.972099720997193,68.38455932868942],[-29.990099900999013,68.37949359687977],[-30.00450004500044,68.36936213326047],[-30.008100081000805,68.34741062875199],[-30.022500225002233,68.33559058786281],[-30.047700477004753,68.33052485605316],[-30.069300693006937,68.32039339243386],[-30.06210062100621,68.2967533106555],[-30.044100441004417,68.28493326976633],[-29.993699936999377,68.26298176525785],[-29.98649986499865,68.25622745617832],[-29.993699936999377,68.25116172436867],[-30.01170011700117,68.24609599255902],[-30.03690036900369,68.24271883801927],[-30.051300513005117,68.24271883801927],[-30.076500765007637,68.24271883801927],[-30.134101341013405,68.26298176525785],[-30.166501665016654,68.2697360743374],[-30.198901989019873,68.27142465160728],[-30.274502745027434,68.26635891979763],[-30.303303033030318,68.25622745617832],[-30.28890288902889,68.24271883801927],[-30.260102601026006,68.24271883801927],[-30.202502025020237,68.2494731470988],[-30.177301773017717,68.24609599255902],[-30.148501485014833,68.23765310620962],[-30.123301233012313,68.22414448805057],[-30.10530105301052,68.20725871535174],[-30.101701017010157,68.20388156081196],[-30.10530105301052,68.19712725173244],[-30.101701017010157,68.18868436538301],[-30.098100981009793,68.18024147903361],[-30.090900909009093,68.17686432449383],[-30.072900729007273,68.17348716995409],[-30.065700657006573,68.17011001541431],[-30.008100081000805,68.12620700639735],[-30.02970029700296,68.11776412004795],[-30.05490054900548,68.11100981096843],[-30.090900909009093,68.12451842912748],[-30.10530105301052,68.12620700639735],[-30.116101161011613,68.1228298518576],[-30.126901269012677,68.11607554277808],[-30.13770137701377,68.10932123369852],[-30.144901449014498,68.10425550188887],[-30.16290162901629,68.102566924619],[-30.21330213302133,68.11100981096843],[-30.23130231302312,68.10932123369852],[-30.260102601026006,68.09918977007925],[-30.274502745027434,68.09750119280935],[-30.33930339303393,68.09918977007925],[-30.36450364503645,68.10763265642865],[-30.393303933039334,68.12620700639735],[-30.404104041040398,68.13802704728653],[-30.407704077040762,68.14815851090583],[-30.404104041040398,68.17011001541431],[-30.393303933039334,68.19881582900231],[-30.393303933039334,68.21401302443127],[-30.400504005040034,68.22245591078067],[-30.458104581045802,68.22414448805057],[-30.670506705067055,68.2579160334482],[-30.81810818108181,68.25622745617832],[-30.79290792907929,68.2410302607494],[-30.494104941049414,68.18530721084326],[-30.476104761047594,68.17348716995409],[-30.461704617046166,68.131272738207],[-30.450904509045074,68.11438696550817],[-30.44730447304474,68.09750119280935],[-30.461704617046166,68.08568115192017],[-30.436504365043646,68.07892684284064],[-30.418504185041854,68.07048395649124],[-30.450904509045074,68.06204107014182],[-30.49050490504905,68.06035249287194],[-30.530105301053,68.0654182246816],[-30.55530555305552,68.07723826557077],[-30.551705517055154,68.08230399738042],[-30.54810548105482,68.0839925746503],[-30.54090540905409,68.08568115192017],[-30.569705697056975,68.08230399738042],[-30.620106201062015,68.06710680195147],[-30.645306453064535,68.06372964741169],[-30.684906849068483,68.06372964741169],[-30.69930699306994,68.0654182246816],[-30.71730717307173,68.07554968830087],[-30.72450724507246,68.07723826557077],[-30.760507605076043,68.08568115192017],[-30.7749077490775,68.08568115192017],[-30.810908109081083,68.07217253376112],[-30.821708217082175,68.07048395649124],[-30.872108721087216,68.07723826557077],[-30.897308973089736,68.07892684284064],[-30.91890918909189,68.07048395649124],[-30.911709117091164,68.06710680195147],[-30.89370893708937,68.05697533833217],[-30.911709117091164,68.04515529744299],[-30.990909909099088,68.05528676106229],[-31.00891008910088,68.04684387471286],[-31.016110161101608,68.04177814290321],[-31.037710377103764,68.04853245198277],[-31.066510665106648,68.06372964741169],[-31.080910809108076,68.06372964741169],[-31.088110881108804,68.06372964741169],[-31.091710917109168,68.06035249287194],[-31.095310953109532,68.05190960652251],[-31.106111061110596,68.05190960652251],[-31.124111241112416,68.05697533833217],[-31.14211142111421,68.06035249287194],[-31.19251192511925,68.07723826557077],[-31.4121141211412,68.11776412004795],[-31.455314553145513,68.1329613154769],[-31.430114301142993,68.14478135636608],[-31.397713977139773,68.14815851090583],[-31.33651336513364,68.14646993363596],[-31.365313653136525,68.15828997452513],[-31.404914049140473,68.16335570633478],[-31.440914409144085,68.159978551795],[-31.473314733147333,68.15322424271548],[-31.484114841148397,68.1515356654456],[-31.498514985149853,68.14478135636608],[-31.502115021150217,68.13464989274678],[-31.49491494914949,68.11776412004795],[-31.476914769147697,68.10932123369852],[-31.430114301142993,68.102566924619],[-31.4121141211412,68.09074688372982],[-31.43731437314372,68.08230399738042],[-31.46971469714697,68.07723826557077],[-31.581315813158113,68.07723826557077],[-31.602916029160298,68.08230399738042],[-31.624516245162454,68.09750119280935],[-31.62091620916209,68.10087834734912],[-31.62091620916209,68.102566924619],[-31.617316173161726,68.10425550188887],[-31.692916929169286,68.09918977007925],[-31.700117001170014,68.10425550188887],[-31.703717037170378,68.11438696550817],[-31.710917109171078,68.131272738207],[-31.714517145171442,68.1329613154769],[-31.714517145171442,68.14646993363596],[-31.714517145171442,68.1515356654456],[-31.700117001170014,68.16673286087453],[-31.68931689316892,68.17686432449383],[-31.682116821168194,68.18193005630349],[-31.685716857168558,68.18530721084326],[-31.700117001170014,68.19375009719266],[-31.714517145171442,68.19881582900231],[-31.728917289172898,68.19881582900231],[-31.739717397173962,68.20219298354209],[-31.74691746917469,68.21401302443127],[-31.732517325173234,68.21401302443127],[-31.714517145171442,68.21739017897102],[-31.703717037170378,68.22414448805057],[-31.707317073170714,68.23596452893975],[-31.692916929169286,68.2410302607494],[-31.67131671316713,68.23765310620962],[-31.653316533165338,68.2308987971301],[-31.577715777157778,68.22583306532044],[-31.548915489154894,68.22752164259032],[-31.527315273152738,68.23596452893975],[-31.54531545315453,68.24609599255902],[-31.566915669156685,68.25285030163857],[-31.592115921159206,68.25622745617832],[-31.901719017190175,68.2697360743374],[-31.91251912519124,68.2680474970675],[-31.93771937719376,68.2579160334482],[-31.94851948519485,68.25622745617832],[-31.970119701197007,68.25622745617832],[-31.991719917199163,68.2596046107181],[-32.009720097200955,68.2697360743374],[-32.01692016920168,68.28662184703623],[-32.02412024120241,68.2967533106555],[-32.06732067320672,68.31870481516398],[-32.078120781207815,68.33221343332306],[-32.078120781207815,68.34741062875199],[-32.07452074520745,68.35754209237129],[-32.078120781207815,68.36767355599059],[-32.09972099720997,68.37949359687977],[-32.14652146521465,68.38962506049907],[-32.15732157321574,68.39806794684847],[-32.160921609216075,68.42001945135695],[-32.153721537215375,68.43183949224613],[-32.13212132121322,68.46054530583413],[-32.12492124921249,68.47574250126308],[-32.15012150121501,68.48587396488239],[-32.16452164521644,68.48587396488239],[-32.178921789217895,68.47574250126308],[-32.22212222122221,68.43183949224613],[-32.236522365223635,68.42339660589673],[-32.254522545225456,68.42001945135695],[-32.31572315723156,68.4436595331353],[-32.330123301233016,68.4537909967546],[-32.32292322923229,68.46392246037391],[-32.304923049230496,68.49600542850166],[-32.337323373233716,68.51626835574027],[-32.344523445234444,68.52302266481979],[-32.34812348123481,68.5331541284391],[-32.35172351723517,68.55341705567767],[-32.3589235892359,68.56354851929697],[-32.369723697236964,68.57874571472593],[-32.40932409324094,68.61589441466333],[-32.42732427324273,68.62602587828263],[-32.45972459724598,68.63109161009228],[-32.488524885248836,68.62433730101276],[-32.50292502925029,68.60576295104406],[-32.495724957249564,68.57874571472593],[-32.47772477724777,68.56354851929697],[-32.45252452524525,68.5517284784078],[-32.42372423724237,68.54497416932827],[-32.39852398523985,68.5432855920584],[-32.420124201242004,68.53821986024874],[-32.42732427324273,68.50951404666074],[-32.456124561245616,68.50275973758121],[-32.538925389253876,68.50444831485109],[-32.571325713257124,68.50951404666074],[-32.50292502925029,68.42846233770635],[-32.45972459724598,68.39806794684847],[-32.405724057240576,68.37949359687977],[-32.2941229412294,68.35585351510142],[-32.2329223292233,68.35923066964116],[-32.20772207722078,68.34741062875199],[-32.19332193321932,68.32883627878329],[-32.18252182521826,68.30857335154468],[-32.16452164521644,68.2967533106555],[-32.160921609216075,68.27986753795668],[-32.07092070920709,68.19375009719266],[-32.08892088920888,68.18699578811314],[-32.1141211412114,68.19206151992279],[-32.135721357213555,68.20050440627219],[-32.22212222122221,68.22076733351079],[-32.39132391323912,68.22921021986019],[-32.438124381243796,68.2410302607494],[-32.45252452524525,68.2393416834795],[-32.45252452524525,68.23427595166984],[-32.45252452524525,68.21570160170114],[-32.45252452524525,68.20725871535174],[-32.44172441724416,68.19881582900231],[-32.42372423724237,68.19543867446254],[-32.40932409324094,68.19712725173244],[-32.380523805238056,68.21232444716136],[-32.3589235892359,68.21401302443127],[-32.31572315723156,68.20725871535174],[-32.178921789217895,68.16673286087453],[-32.186121861218595,68.16335570633478],[-32.19332193321932,68.15322424271548],[-32.103321033210335,68.159978551795],[-32.052920529205295,68.15491281998536],[-32.03132031320314,68.13633847001665],[-32.02412024120241,68.1228298518576],[-32.002520025200255,68.10425550188887],[-31.995319953199527,68.09074688372982],[-31.995319953199527,68.08230399738042],[-32.002520025200255,68.07554968830087],[-32.002520025200255,68.0654182246816],[-31.995319953199527,68.05022102925264],[-32.01692016920168,68.05190960652251],[-32.078120781207815,68.06372964741169],[-32.09252092520924,68.06204107014182],[-32.12492124921249,68.05022102925264],[-32.14652146521465,68.05022102925264],[-32.13932139321392,68.03840098836346],[-32.12492124921249,68.03164667928394],[-32.09252092520924,68.02320379293451],[-32.09612096120961,68.01138375204533],[-32.1069210692107,68.00462944296581],[-32.11772117721176,67.99956371115616],[-32.103321033210335,68.00125228842603],[-32.07092070920709,68.00294086569593],[-32.08172081720818,67.98774367026698],[-32.09612096120961,67.97930078391755],[-32.1069210692107,67.97085789756815],[-32.1069210692107,67.95397212486932],[-32.09252092520924,67.94552923851992],[-32.04932049320493,67.94046350671027],[-32.034920349203475,67.9269548885512],[-32.05652056520566,67.9269548885512],[-32.110521105211035,67.93370919763072],[-32.1069210692107,67.9286434658211],[-32.103321033210335,67.91175769312227],[-32.09972099720997,67.90669196131262],[-32.128521285212855,67.90669196131262],[-32.15732157321574,67.9185120022018],[-32.178921789217895,67.92188915674154],[-32.186121861218595,67.89656049769332],[-32.17172171721717,67.89149476588366],[-32.14652146521465,67.87460899318484],[-32.12492124921249,67.85941179775588],[-32.13932139321392,67.85096891140648],[-32.27252272522725,67.86278895229566],[-32.30852308523086,67.88136330226436],[-32.330123301233016,67.88642903407401],[-32.420124201242004,67.87292041591496],[-32.520925209252084,67.87292041591496],[-32.54252542525424,67.86785468410531],[-32.546125461254604,67.85772322048601],[-32.53532535325354,67.84421460232696],[-32.520925209252084,67.83070598416788],[-32.5569255692557,67.8188859432787],[-32.64332643326432,67.8087544796594],[-32.67932679326793,67.79693443877022],[-32.66852668526684,67.7817372433413],[-32.67932679326793,67.76991720245212],[-32.697326973269725,67.76147431610269],[-32.76932769327692,67.74121138886412],[-32.77652776527765,67.73614565705446],[-32.78372783727838,67.72939134797494],[-32.79092790927908,67.72432561616529],[-32.81972819728196,67.71925988435564],[-32.84132841328412,67.70912842073633],[-32.898928989289885,67.7006855343869],[-32.92772927729277,67.68886549349773],[-33.05373053730537,67.68548833895798],[-33.132931329313294,67.7006855343869],[-33.158131581315814,67.70237411165681],[-33.1869318693187,67.7006855343869],[-33.201332013320126,67.69393122530738],[-33.208532085320854,67.67704545260855],[-33.201332013320126,67.6635368344495],[-33.17973179731797,67.65678252536998],[-33.16173161731618,67.6534053708302],[-33.10413104131041,67.65171679356033],[-33.075330753307526,67.64665106175067],[-33.057330573305734,67.63314244359162],[-33.0681306813068,67.62976528905185],[-33.09333093330932,67.61456809362289],[-33.09693096930968,67.60781378454337],[-33.10413104131041,67.59937089819397],[-33.11853118531184,67.59430516638432],[-33.132931329313294,67.59092801184454],[-33.14373143731436,67.58755085730479],[-33.1869318693187,67.55715646644688],[-33.208532085320854,67.54702500282758],[-33.233732337323374,67.54364784828783],[-33.26973269732696,67.54195927101796],[-33.284132841328415,67.54364784828783],[-33.32373323733236,67.56222219825653],[-33.33813338133382,67.56391077552641],[-33.366933669336674,67.55209073463723],[-33.359733597335975,67.53351638466853],[-33.334533345333455,67.51831918923958],[-33.309333093330935,67.5081877256203],[-33.34533345333452,67.4879247983817],[-33.29853298532984,67.49467910746122],[-33.276932769327686,67.49299053019135],[-33.26973269732696,67.4777933347624],[-33.28053280532805,67.46428471660334],[-33.30213302133021,67.45246467571417],[-33.34533345333452,67.44064463482499],[-33.34533345333452,67.43389032574547],[-33.28053280532805,67.41869313031651],[-33.26973269732696,67.41362739850686],[-33.27333273332732,67.40011878034781],[-33.28773287732878,67.39505304853816],[-33.30213302133021,67.39336447126826],[-33.3129331293313,67.38829873945863],[-33.33093330933309,67.36803581222003],[-33.34533345333452,67.3612815031405],[-33.36333363333634,67.35790434860073],[-33.39573395733956,67.35621577133085],[-33.41373413734138,67.35959292587063],[-33.42093420934208,67.3714129667598],[-33.40653406534065,67.3798558531092],[-33.417334173341715,67.38998731672851],[-33.435334353343535,67.39336447126826],[-33.4461344613446,67.38323300764898],[-33.45693456934569,67.38154443037908],[-33.510935109351095,67.38492158491886],[-33.50733507335073,67.38154443037908],[-33.50373503735037,67.37816727583933],[-33.50373503735037,67.37479012129955],[-33.50373503735037,67.3714129667598],[-33.52533525335252,67.37310154402968],[-33.55053550535504,67.37816727583933],[-33.57573575735756,67.3798558531092],[-33.59733597335972,67.3714129667598],[-33.5649356493565,67.35790434860073],[-33.568535685356835,67.35621577133085],[-33.568535685356835,67.35452719406098],[-33.5721357213572,67.3511500395212],[-33.54693546935468,67.34608430771155],[-33.42093420934208,67.33764142136215],[-33.42093420934208,67.3308871122826],[-33.435334353343535,67.3308871122826],[-33.47493474934748,67.32413280320307],[-33.47493474934748,67.31737849412355],[-33.45333453334533,67.31568991685367],[-33.435334353343535,67.3123127623139],[-33.42813428134281,67.3038698759645],[-33.442534425344235,67.29036125780542],[-33.42813428134281,67.27516406237649],[-33.38133381333813,67.26165544421741],[-33.366933669336674,67.24814682605836],[-33.485734857348575,67.23463820789931],[-33.55053550535504,67.23463820789931],[-33.5649356493565,67.23801536243906],[-33.57573575735756,67.24308109424871],[-33.58293582935829,67.24983540332823],[-33.593735937359355,67.25490113513789],[-33.60093600936008,67.25490113513789],[-33.60813608136081,67.25321255786801],[-33.669336693366915,67.2228181670101],[-33.669336693366915,67.21775243520048],[-33.65493654936549,67.21099812612093],[-33.59013590135902,67.22112958974023],[-33.5721357213572,67.21944101247036],[-33.51453514535146,67.20086666250165],[-33.53253532535325,67.17722658072327],[-33.54693546935468,67.167095117104],[-33.54693546935468,67.15865223075457],[-33.51453514535146,67.14514361259552],[-33.536135361353615,67.13163499443644],[-33.54693546935468,67.12150353081717],[-33.55053550535504,67.11137206719786],[-33.54693546935468,67.10461775811834],[-33.536135361353615,67.09617487176891],[-33.52893528935289,67.08773198541951],[-33.536135361353615,67.0776005218002],[-33.54693546935468,67.0776005218002],[-33.593735937359355,67.09786344903878],[-33.60813608136081,67.09955202630869],[-33.65493654936549,67.09786344903878],[-33.64773647736476,67.09786344903878],[-33.662136621366216,67.09617487176891],[-33.67293672936728,67.08942056268938],[-33.68373683736837,67.08097767633998],[-33.687336873368736,67.0674690581809],[-33.694536945369435,67.0573375945616],[-33.712537125371256,67.05227186275195],[-33.8169381693817,67.04045182186277],[-33.85653856538565,67.0303203582435],[-33.88173881738817,67.01512316281455],[-33.838538385383856,67.0100574310049],[-33.79893798937988,67.0201888946242],[-33.762937629376296,67.02525462643385],[-33.73053730537305,67.0016145446555],[-33.73413734137341,66.9999259673856],[-33.73053730537305,66.99486023557594],[-33.752137521375204,66.98810592649642],[-33.97533975339752,66.99486023557594],[-33.95733957339573,66.98641734922654],[-33.89253892538926,66.96784299925784],[-33.88533885338853,66.97122015379759],[-33.863738637386376,66.95940011290841],[-33.86013860138601,66.95433438109876],[-33.888938889388896,66.94589149474936],[-33.91773917739178,66.94926864928911],[-33.946539465394636,66.95771153563854],[-33.97533975339752,66.96108869017829],[-34.00054000540004,66.95433438109876],[-33.99333993339934,66.94420291747946],[-33.971739717397156,66.93407145386018],[-33.946539465394636,66.92731714478063],[-33.95733957339573,66.91718568116136],[-33.98253982539825,66.90029990846253],[-33.98973989739898,66.8918570221131],[-34.0149401494015,66.8530197449058],[-34.01854018540186,66.83951112674674],[-34.0149401494015,66.82769108585757],[-34.004140041400404,66.80911673588886],[-33.996939969399676,66.79391954045991],[-33.98973989739898,66.78716523138038],[-33.97533975339752,66.78209949957073],[-33.96093960939609,66.78209949957073],[-33.946539465394636,66.78378807684061],[-33.93573935739357,66.78041092230086],[-33.93573935739357,66.76859088141168],[-33.946539465394636,66.75170510871286],[-33.971739717397156,66.74326222236343],[-33.98973989739898,66.7466393769032],[-33.98253982539825,66.76859088141168],[-34.02574025740256,66.77703376776108],[-34.03654036540365,66.78209949957073],[-34.04734047340472,66.79223096319004],[-34.05814058140581,66.80236242680934],[-34.0689406894069,66.80911673588886],[-34.08694086940869,66.80911673588886],[-34.079740797407965,66.79729669499969],[-34.05814058140581,66.76183657233213],[-34.04734047340472,66.7550822632526],[-34.04734047340472,66.75170510871286],[-34.05094050940508,66.7449507996333],[-34.05814058140581,66.74157364509355],[-34.0689406894069,66.7449507996333],[-34.079740797407965,66.7550822632526],[-34.09054090540906,66.76014799506225],[-34.09774097740976,66.76183657233213],[-34.08694086940869,66.72131071785495],[-34.11574115741158,66.70949067696577],[-34.16614166141662,66.71455640877542],[-34.155341553415525,66.70104779061637],[-34.15894158941589,66.69935921334647],[-34.16254162541625,66.69598205880672],[-34.16614166141662,66.69429348153685],[-34.1481414814148,66.68078486337777],[-34.15174151741516,66.67234197702837],[-34.180541805418045,66.65883335886929],[-34.1949419494195,66.65039047251989],[-34.20934209342093,66.63857043163071],[-34.22014220142202,66.62675039074153],[-34.21654216542166,66.6183075043921],[-34.256142561425605,66.58453595899445],[-34.27054270542706,66.57609307264505],[-34.29214292142922,66.57271591810527],[-34.30294302943028,66.5794702271848],[-34.29934299342992,66.59297884534388],[-34.27774277742776,66.62168465893188],[-34.2669426694267,66.65039047251989],[-34.25974259742597,66.66221051340906],[-34.25974259742597,66.67403055429824],[-34.27054270542706,66.68247344064764],[-34.28854288542885,66.68416201791754],[-34.306543065430645,66.67234197702837],[-34.29934299342992,66.65714478159941],[-34.306543065430645,66.64363616344036],[-34.356943569435686,66.60479888623306],[-34.37134371343714,66.59635599988363],[-34.38574385743857,66.61661892712223],[-34.39654396543966,66.63012754528128],[-34.40374403744036,66.64532474071024],[-34.389343893438934,66.67571913156812],[-34.389343893438934,66.69260490426694],[-34.39654396543966,66.7078020996959],[-34.407344073440726,66.72131071785495],[-34.41814418144182,66.75001653144295],[-34.432544325443246,66.7365079132839],[-34.439744397443974,66.70949067696577],[-34.432544325443246,66.69429348153685],[-34.432544325443246,66.68753917245729],[-34.47574475744756,66.65545620432954],[-34.490144901449014,66.65039047251989],[-34.515345153451534,66.64532474071024],[-34.52974529745296,66.63857043163071],[-34.49374493744938,66.63857043163071],[-34.47574475744756,66.63181612255119],[-34.46134461344613,66.6183075043921],[-34.47574475744756,66.6098646180427],[-34.508145081450806,66.60311030896315],[-34.52254522545226,66.59804457715353],[-34.50094500945008,66.57778164991493],[-34.432544325443246,66.56258445448597],[-34.407344073440726,66.5423215272474],[-34.45054450544504,66.5237471772787],[-34.46134461344613,66.51530429092927],[-34.47214472144722,66.50854998184974],[-34.5189451894519,66.51192713638949],[-34.53694536945369,66.50179567277021],[-34.54414544145442,66.48490990007139],[-34.54774547745478,66.46464697283278],[-34.558545585455846,66.44944977740383],[-34.580145801458,66.44607262286408],[-34.583745837458366,66.44100689105443],[-34.59814598145982,66.43931831378455],[-34.641346413464134,66.44100689105443],[-34.659346593465926,66.43762973651465],[-34.67374673746738,66.4342525819749],[-34.70254702547024,66.41905538654595],[-34.70254702547024,66.41230107746642],[-34.68814688146881,66.41230107746642],[-34.68094680946808,66.41736680927607],[-34.67014670146702,66.42243254108573],[-34.659346593465926,66.42580969562547],[-34.64854648546486,66.42580969562547],[-34.63054630546304,66.42074396381582],[-34.62334623346234,66.41905538654595],[-34.62334623346234,66.41230107746642],[-34.63054630546304,66.39710388203747],[-34.6449464494645,66.38021810933864],[-34.65574655746556,66.37177522298924],[-34.67014670146702,66.37177522298924],[-34.68454684546845,66.3768409547989],[-34.71334713347133,66.40216961384712],[-34.72414724147242,66.40723534565677],[-34.73134731347312,66.40048103657725],[-34.73494734947349,66.38866099568807],[-34.73134731347312,66.3768409547989],[-34.73134731347312,66.35657802756029],[-34.72054720547206,66.35320087302054],[-34.716947169471695,66.34982371848076],[-34.716947169471695,66.34475798667111],[-34.76374763747637,66.34306940940124],[-34.77454774547746,66.33462652305181],[-34.78534785347853,66.32449505943251],[-34.79614796147962,66.31605217308311],[-34.81414814148141,66.31605217308311],[-34.83574835748357,66.32111790489276],[-34.842948429484295,66.32787221397228],[-34.83934839348393,66.32956079124216],[-34.8321483214832,66.33293794578194],[-34.8249482494825,66.33800367759159],[-34.8249482494825,66.34644656394099],[-34.82854828548284,66.35320087302054],[-34.83934839348393,66.35826660483016],[-34.85014850148502,66.35657802756029],[-34.86094860948609,66.35320087302054],[-34.87174871748718,66.34982371848076],[-34.93654936549365,66.34475798667111],[-34.92934929349292,66.34475798667111],[-34.93294932949328,66.34306940940124],[-34.943749437494375,66.34475798667111],[-34.93294932949328,66.33462652305181],[-34.91494914949149,66.32618363670241],[-34.90774907749076,66.31605217308311],[-34.92574925749258,66.30085497765415],[-34.94734947349474,66.29241209130475],[-34.97254972549726,66.28903493676498],[-35.12375123751238,66.33631510032171],[-35.134551345513444,66.34475798667111],[-35.120151201512016,66.35657802756029],[-35.11295112951129,66.37346380025912],[-35.109351093510924,66.39203815022782],[-35.10575105751056,66.40892392292665],[-35.11295112951129,66.42074396381582],[-35.13095130951308,66.41736680927607],[-35.16335163351633,66.39879245930737],[-35.16695166951669,66.3954153047676],[-35.17415174151742,66.38021810933864],[-35.177751777517784,66.3768409547989],[-35.19935199351994,66.3768409547989],[-35.20655206552064,66.37515237752899],[-35.21735217352173,66.37177522298924],[-35.22455224552246,66.35826660483016],[-35.220952209522096,66.34306940940124],[-35.220952209522096,66.33124936851206],[-35.235352353523524,66.32280648216263],[-35.228152281522796,66.31267501854333],[-35.21735217352173,66.30929786400358],[-35.202952029520304,66.31098644127346],[-35.18855188551885,66.30929786400358],[-35.134551345513444,66.28903493676498],[-35.05895058950588,66.27383774133605],[-35.03735037350373,66.26201770044685],[-35.06615066150661,66.24344335047815],[-35.120151201512016,66.23668904139862],[-35.21735217352173,66.24175477320827],[-35.35055350553506,66.28228062768545],[-35.386553865538644,66.28903493676498],[-35.41895418954189,66.28903493676498],[-35.43335433354332,66.29072351403488],[-35.44775447754478,66.2957892458445],[-35.44055440554405,66.30423213219393],[-35.43335433354332,66.31436359581323],[-35.436954369543685,66.32618363670241],[-35.44415444154441,66.32956079124216],[-35.45855458554584,66.32787221397228],[-35.47655476554766,66.32111790489276],[-35.50535505355052,66.30254355492406],[-35.50175501755018,66.29916640038428],[-35.49815498154982,66.28903493676498],[-35.588155881558805,66.28903493676498],[-35.6061560615606,66.2974778231144],[-35.62775627756278,66.32956079124216],[-35.64935649356494,66.33800367759159],[-35.66735667356673,66.34138083213134],[-35.68535685356852,66.35320087302054],[-35.7321573215732,66.38866099568807],[-35.75375753757538,66.39879245930737],[-35.77535775357754,66.40723534565677],[-35.796957969579694,66.41230107746642],[-35.796957969579694,66.41905538654595],[-35.78255782557824,66.4241211183556],[-35.764557645576446,66.42580969562547],[-35.746557465574654,66.42918685016525],[-35.73575735757356,66.44100689105443],[-35.814958149581486,66.43594115924478],[-35.83295832958328,66.4426954683243],[-35.8509585095851,66.43762973651465],[-35.87975879758798,66.41905538654595],[-35.872558725587254,66.41905538654595],[-35.86895868958689,66.41230107746642],[-35.85455854558546,66.403858191117],[-35.83295832958328,66.3954153047676],[-35.814958149581486,66.39203815022782],[-35.80415804158042,66.38697241841817],[-35.7789577895779,66.36839806844947],[-35.76095760957608,66.36164375936994],[-35.73575735757356,66.34644656394099],[-35.7249572495725,66.34475798667111],[-35.70695706957068,66.34644656394099],[-35.69615696156961,66.34475798667111],[-35.68535685356852,66.33800367759159],[-35.67815678156782,66.33124936851206],[-35.67815678156782,66.32449505943251],[-35.68175681756816,66.31605217308311],[-35.67455674556746,66.30929786400358],[-35.688956889568885,66.2974778231144],[-35.70695706957068,66.2873463594951],[-35.74295742957429,66.27552631860593],[-35.74295742957429,66.2687720095264],[-35.67455674556746,66.27552631860593],[-35.65655656556564,66.27552631860593],[-35.64215642156421,66.27046058679628],[-35.613356133561325,66.2586405459071],[-35.5989559895599,66.25526339136732],[-35.562955629556285,66.25188623682757],[-35.55215552155522,66.2485090822878],[-35.55215552155522,66.24175477320827],[-35.588155881558805,66.23162330958897],[-35.67095670956709,66.22486900050944],[-35.70335703357034,66.20629465054074],[-35.638556385563845,66.21304895962027],[-35.62415624156242,66.20967180508049],[-35.61695616956169,66.19954034146119],[-35.60975609756096,66.18940887784191],[-35.59535595355953,66.18096599149249],[-35.58455584555844,66.16914595060331],[-35.57735577355774,66.15563733244426],[-35.57375573755738,66.14550586882496],[-35.57375573755738,66.13368582793578],[-35.588155881558805,66.12017720977673],[-35.58455584555844,66.1117343234273],[-35.60975609756096,66.1117343234273],[-35.63135631356312,66.11511147796708],[-35.64575645756457,66.12693151885625],[-35.64215642156421,66.14550586882496],[-35.64935649356494,66.14888302336473],[-35.65655656556564,66.15394875517435],[-35.66735667356673,66.16576879606356],[-35.67095670956709,66.16914595060331],[-35.67455674556746,66.18265456876239],[-35.67455674556746,66.18603172330214],[-35.69615696156961,66.19447460965156],[-35.721357213572134,66.19954034146119],[-35.746557465574654,66.19954034146119],[-35.764557645576446,66.19278603238166],[-35.75015750157502,66.18265456876239],[-35.71775717757177,66.17927741422261],[-35.70335703357034,66.17252310514309],[-35.69975699756998,66.16576879606356],[-35.688956889568885,66.13875155974543],[-35.71055710557104,66.12355436431648],[-35.746557465574654,66.12355436431648],[-35.81855818558185,66.1319972506659],[-35.847358473584734,66.14381729155508],[-35.88695886958868,66.14212871428518],[-35.91935919359193,66.12862009612613],[-35.940959409594086,66.1032914370779],[-35.915759157591566,66.10666859161765],[-35.865358653586526,66.11511147796708],[-35.840158401584006,66.11680005523695],[-35.7321573215732,66.09653712799835],[-35.71775717757177,66.08978281891882],[-35.75735757357572,66.07965135529952],[-35.80415804158042,66.07627420075977],[-35.88335883358832,66.08978281891882],[-35.90855908559084,66.08978281891882],[-35.90855908559084,66.0830285098393],[-35.897758977589774,66.0830285098393],[-35.890558905589046,66.08133993256942],[-35.87975879758798,66.07627420075977],[-35.915759157591566,66.07796277802964],[-35.93375933759336,66.0745856234899],[-35.940959409594086,66.06276558260069],[-35.922959229592294,66.06276558260069],[-35.890558905589046,66.05601127352116],[-35.872558725587254,66.05601127352116],[-35.872558725587254,66.04925696444164],[-35.88695886958868,66.04925696444164],[-35.897758977589774,66.04925696444164],[-35.9121591215912,66.04587980990186],[-35.922959229592294,66.04250265536211],[-35.922959229592294,66.03574834628259],[-35.915759157591566,66.03237119174281],[-35.90135901359014,66.02561688266329],[-35.89415894158941,66.02223972812351],[-35.89415894158941,66.01548541904398],[-35.98775987759876,65.9850910281861],[-36.04536045360453,65.9749595645668],[-36.04536045360453,65.9665166782174],[-36.041760417604166,65.9648281009475],[-36.0309603096031,65.95976236913785],[-36.074160741607415,65.9361222873595],[-36.08856088560884,65.93274513281975],[-36.1029610296103,65.93443371008962],[-36.13176131761318,65.9462537509788],[-36.15336153361534,65.94287659643902],[-36.174961749617495,65.9361222873595],[-36.200162001620015,65.93274513281975],[-36.225362253622535,65.93949944189927],[-36.20376203762038,65.96145094640775],[-36.19656196561965,65.9749595645668],[-36.20376203762038,65.98171387364633],[-36.23976239762396,65.95976236913785],[-36.26136261362612,65.95131948278845],[-36.27216272162721,65.96313952367763],[-36.26496264962648,65.9749595645668],[-36.25416254162542,65.99015675999576],[-36.250562505625055,66.00197680088493],[-36.26136261362612,66.00704253269458],[-36.27216272162721,66.00535395542468],[-36.290162901629,65.99184533726563],[-36.29736297362973,65.98846818272585],[-36.31176311763116,65.98677960545598],[-36.34776347763477,65.98846818272585],[-36.34776347763477,65.98171387364633],[-36.34056340563404,65.98002529637645],[-36.31896318963189,65.9749595645668],[-36.32976329763298,65.96145094640775],[-36.326163261632615,65.94118801916915],[-36.33336333363334,65.9259908237402],[-36.32976329763298,65.91923651466067],[-36.326163261632615,65.91248220558114],[-36.3621636216362,65.91585936012092],[-36.38016380163802,65.92936797827997],[-36.383763837638384,65.95300806005832],[-36.38736387363872,66.01548541904398],[-36.383763837638384,66.04081407809224],[-36.36936369363693,66.06107700533082],[-36.34056340563404,66.07627420075977],[-36.35856358563586,66.0914713961887],[-36.38736387363872,66.08978281891882],[-36.44856448564485,66.07627420075977],[-36.52056520565205,66.08471708710917],[-36.552965529655296,66.0830285098393],[-36.58176581765818,66.07120846895012],[-36.567365673656724,66.06276558260069],[-36.54936549365493,66.05601127352116],[-36.53136531365314,66.05094554171151],[-36.51336513365132,66.04925696444164],[-36.502565025650256,66.05094554171151],[-36.491764917649164,66.05263411898142],[-36.484564845648464,66.05432269625129],[-36.477364773647736,66.04925696444164],[-36.477364773647736,66.04419123263199],[-36.4809648096481,66.04081407809224],[-36.4881648816488,66.03574834628259],[-36.52056520565205,65.99015675999576],[-36.534965349653504,65.9850910281861],[-36.68256682566826,65.95976236913785],[-36.740167401674,65.9361222873595],[-36.761767617676185,65.93274513281975],[-36.90936909369094,65.93274513281975],[-36.894968949689485,65.91923651466067],[-36.87696876968769,65.9175479373908],[-36.85176851768517,65.92092509193054],[-36.82656826568265,65.91923651466067],[-36.84816848168481,65.88715354653291],[-36.8589685896859,65.87871066018349],[-36.88056880568806,65.86857919656418],[-36.988569885698865,65.84156196024608],[-37.013770137701385,65.83987338297618],[-37.03177031770318,65.84325053751596],[-37.04257042570424,65.85507057840513],[-37.02457024570245,65.87195635110396],[-37.038970389703906,65.88546496926301],[-37.03177031770318,65.88377639199314],[-37.02817028170281,65.88546496926301],[-37.03177031770318,65.89390785561244],[-37.04257042570424,65.90235074196184],[-37.06057060570606,65.91248220558114],[-37.06057060570606,65.91585936012092],[-37.064170641706426,65.92936797827997],[-37.06777067770676,65.93274513281975],[-37.07497074970749,65.9361222873595],[-37.089370893708946,65.93949944189927],[-37.096570965709645,65.94287659643902],[-37.096570965709645,65.95976236913785],[-37.08217082170822,65.98002529637645],[-37.06057060570606,65.99859964634516],[-37.05337053370533,66.01210826450423],[-37.04977049770497,66.02223972812351],[-37.03537035370354,66.04081407809224],[-37.03177031770318,66.05263411898142],[-37.038970389703906,66.06107700533082],[-37.04977049770497,66.06445415987059],[-37.06777067770676,66.06445415987059],[-37.07857078570785,66.06276558260069],[-37.096570965709645,66.05094554171151],[-37.10377103771037,66.03237119174281],[-37.10017100171001,66.01210826450423],[-37.08577085770858,65.9935339145355],[-37.10377103771037,65.98846818272585],[-37.121771217712165,65.99691106907528],[-37.139771397713986,66.00873110996446],[-37.15777157771578,66.01548541904398],[-37.16857168571684,66.00873110996446],[-37.15777157771578,65.99522249180541],[-37.128971289712894,65.9665166782174],[-37.14337143371432,65.9546966373282],[-37.16137161371614,65.9462537509788],[-37.146971469714686,65.9361222873595],[-37.13257132571326,65.91923651466067],[-37.121771217712165,65.90572789650162],[-37.13617136171362,65.89897358742209],[-37.2369723697237,65.90572789650162],[-37.2369723697237,65.89897358742209],[-37.12537125371253,65.86857919656418],[-37.08577085770858,65.86351346475453],[-37.096570965709645,65.8381848057063],[-37.114571145711466,65.81623330119783],[-37.13617136171362,65.80441326030865],[-37.16857168571684,65.80272468303878],[-37.19377193771936,65.8094789921183],[-37.21897218972188,65.82298761027735],[-37.2441724417244,65.83143049662678],[-37.272972729727286,65.82974191935688],[-37.272972729727286,65.82298761027735],[-37.21177211772118,65.80272468303878],[-37.18657186571866,65.7892160648797],[-37.17577175771757,65.78415033307004],[-37.16137161371614,65.78246175580017],[-37.1829718297183,65.77401886945077],[-37.21177211772118,65.77570744672065],[-37.46377463774638,65.85675915567501],[-37.55377553775537,65.90572789650162],[-37.57537575375753,65.91248220558114],[-37.64017640176402,65.9259908237402],[-37.67977679776797,65.9462537509788],[-37.69057690576906,65.9462537509788],[-37.6941769417694,65.94287659643902],[-37.70137701377013,65.92430224647032],[-37.70497704977049,65.91923651466067],[-37.72297722977228,65.91248220558114],[-37.766177661776624,65.91079362831127],[-37.78777787777878,65.90572789650162],[-37.80217802178021,65.89390785561244],[-37.816578165781664,65.88377639199314],[-37.83097830978309,65.87871066018349],[-37.85257852578525,65.88546496926301],[-37.85257852578525,65.89221927834254],[-37.83817838178382,65.89559643288231],[-37.82377823778236,65.90910505104137],[-37.816578165781664,65.92261366920044],[-37.80577805778057,65.93274513281975],[-37.79497794977948,65.93781086462937],[-37.76977769777696,65.9462537509788],[-37.758977589775895,65.95300806005832],[-37.75177751777517,65.95976236913785],[-37.7409774097741,65.9749595645668],[-37.73017730177301,65.98171387364633],[-37.77697776977769,65.99184533726563],[-37.791377913779144,66.00028822361503],[-37.77697776977769,66.01548541904398],[-37.78777787777878,66.01717399631386],[-37.80217802178021,66.02223972812351],[-37.8129781297813,66.02899403720306],[-37.809378093780936,66.03912550082234],[-37.79857798577984,66.04925696444164],[-37.758977589775895,66.06614273714047],[-37.733777337773375,66.0745856234899],[-37.64737647376472,66.07120846895012],[-37.66177661776618,66.07627420075977],[-37.63657636576366,66.10498001434777],[-37.6221762217622,66.11342290069717],[-37.60057600576005,66.11680005523695],[-37.557375573755735,66.1117343234273],[-37.54657546575464,66.11342290069717],[-37.54657546575464,66.12017720977673],[-37.55377553775537,66.1319972506659],[-37.55377553775537,66.13537440520565],[-37.557375573755735,66.14212871428518],[-37.5609756097561,66.1505716006346],[-37.5609756097561,66.159014486984],[-37.55377553775537,66.16745737333343],[-37.54657546575464,66.17252310514309],[-37.53937539375394,66.17590025968283],[-37.49257492574924,66.20629465054074],[-37.47097470974708,66.21642611416002],[-37.43857438574386,66.22486900050944],[-37.31257312573126,66.2974778231144],[-37.290972909729106,66.29916640038428],[-37.25137251372513,66.2957892458445],[-37.229772297722974,66.2974778231144],[-37.20817208172082,66.30254355492406],[-37.16857168571684,66.31605217308311],[-37.16857168571684,66.32280648216263],[-37.19377193771936,66.33969225486146],[-37.215372153721546,66.34644656394099],[-37.39177391773916,66.32280648216263],[-37.42057420574204,66.32787221397228],[-37.456574565745655,66.34644656394099],[-37.48537485374854,66.34982371848076],[-37.51057510575106,66.34475798667111],[-37.55377553775537,66.32618363670241],[-37.57537575375753,66.32449505943251],[-37.6149761497615,66.32956079124216],[-37.6941769417694,66.35151229575064],[-37.75537755377553,66.35995518210007],[-37.80217802178021,66.37515237752899],[-37.820178201782,66.3852838411483],[-37.83097830978309,66.39879245930737],[-37.83817838178382,66.41061250019655],[-37.84897848978488,66.44100689105443],[-37.85257852578525,66.4443840455942],[-37.859778597785976,66.44100689105443],[-37.86337863378634,66.43087542743513],[-37.866978669786704,66.41905538654595],[-37.866978669786704,66.41230107746642],[-37.86337863378634,66.38866099568807],[-37.86337863378634,66.3852838411483],[-37.874178741787404,66.3768409547989],[-37.89577895778956,66.37346380025912],[-37.924579245792444,66.37177522298924],[-37.935379353793536,66.3768409547989],[-37.942579425794264,66.38021810933864],[-37.949779497794964,66.38359526387842],[-37.95697956979569,66.38359526387842],[-37.95697956979569,66.38697241841817],[-37.95697956979569,66.39203815022782],[-38.000180001800004,66.38866099568807],[-38.09738097380972,66.39372672749772],[-38.13338133381333,66.38190668660854],[-38.14058140581406,66.36839806844947],[-38.144181441814425,66.35995518210007],[-38.14058140581406,66.34138083213134],[-37.758977589775895,66.2957892458445],[-37.7409774097741,66.28903493676498],[-37.708577085770855,66.27383774133605],[-37.69057690576906,66.2687720095264],[-37.69057690576906,66.26201770044685],[-37.74457744577444,66.22824615504922],[-37.766177661776624,66.22149184596967],[-37.78777787777878,66.21980326869979],[-37.80577805778057,66.22486900050944],[-37.8129781297813,66.23331188685884],[-37.79857798577984,66.24175477320827],[-37.79857798577984,66.2485090822878],[-37.90297902979029,66.24175477320827],[-37.92817928179281,66.24513192774805],[-37.95337953379533,66.25188623682757],[-37.974979749797484,66.25357481409745],[-37.99657996579964,66.24175477320827],[-37.942579425794264,66.22655757777932],[-37.90657906579065,66.20629465054074],[-37.87057870578704,66.20798322781062],[-37.85257852578525,66.19954034146119],[-37.88137881378813,66.18603172330214],[-37.86337863378634,66.18265456876239],[-37.86337863378634,66.17590025968283],[-37.874178741787404,66.16576879606356],[-37.88857888578886,66.159014486984],[-37.899378993789924,66.15563733244426],[-37.92097920979208,66.15563733244426],[-37.93177931779317,66.15226017790448],[-37.9389793897939,66.14719444609483],[-37.95337953379533,66.12693151885625],[-37.967779677796784,66.11848863250682],[-37.985779857798576,66.11004574615743],[-38.00378003780037,66.10498001434777],[-38.03258032580325,66.1032914370779],[-38.05418054180541,66.09822570526825],[-38.0649806498065,66.09822570526825],[-38.0721807218072,66.09991428253812],[-38.07938079380793,66.10666859161765],[-38.08298082980829,66.11342290069717],[-38.086580865808656,66.11680005523695],[-38.10818108181081,66.11511147796708],[-38.11178111781118,66.10498001434777],[-38.10458104581045,66.0931599734586],[-38.086580865808656,66.0830285098393],[-38.068580685806864,66.07965135529952],[-38.01458014580146,66.08133993256942],[-37.97857978579785,66.0914713961887],[-37.967779677796784,66.08809424164895],[-37.960579605796056,66.07627420075977],[-37.95697956979569,66.05938842806094],[-37.967779677796784,66.05094554171151],[-37.98937989379894,66.04587980990186],[-38.00378003780037,66.03912550082234],[-37.99657996579964,66.02899403720306],[-37.99657996579964,66.01041968723433],[-37.98937989379894,65.99184533726563],[-37.985779857798576,65.97158241002703],[-37.985779857798576,65.94963090551857],[-38.000180001800004,65.93781086462937],[-38.02898028980289,65.9276794010101],[-38.061380613806136,65.92092509193054],[-38.07938079380793,65.91923651466067],[-38.075780757807564,65.93105655554984],[-38.068580685806864,65.9462537509788],[-38.0721807218072,65.96145094640775],[-38.08298082980829,65.9665166782174],[-38.09018090180902,65.96313952367763],[-38.11538115381154,65.94963090551857],[-38.12978129781297,65.9462537509788],[-38.12978129781297,65.95300806005832],[-38.12978129781297,65.95976236913785],[-38.12978129781297,65.9648281009475],[-38.13338133381333,65.9665166782174],[-38.14778147781476,65.9648281009475],[-38.15498154981549,65.95976236913785],[-38.169381693816945,65.97158241002703],[-38.18378183781837,65.97158241002703],[-38.1909819098191,65.9648281009475],[-38.18378183781837,65.9462537509788],[-38.17298172981728,65.94287659643902],[-38.14778147781476,65.93443371008962],[-38.14058140581406,65.92936797827997],[-38.144181441814425,65.92092509193054],[-38.14778147781476,65.91417078285102],[-38.15858158581585,65.90741647377149],[-38.16578165781658,65.90572789650162],[-38.270182701827025,65.90572789650162],[-38.3169831698317,65.91417078285102],[-38.35658356583565,65.93949944189927],[-38.345783457834585,65.9462537509788],[-38.34218342183422,65.95807379186797],[-38.345783457834585,65.96989383275715],[-38.370983709837105,65.98002529637645],[-38.38538385383853,66.00197680088493],[-38.39258392583926,66.00704253269458],[-38.403384033840325,66.01041968723433],[-38.428584285842845,66.02055115085363],[-38.4429844298443,66.02223972812351],[-38.46818468184682,66.02055115085363],[-38.47538475384752,66.01886257358376],[-38.48618486184861,66.01548541904398],[-38.453784537845365,65.98171387364633],[-38.450184501845,65.9665166782174],[-38.453784537845365,65.95131948278845],[-38.45738457384573,65.93781086462937],[-38.46098460984609,65.9259908237402],[-38.450184501845,65.91248220558114],[-38.43218432184321,65.90235074196184],[-38.29178291782918,65.86182488748466],[-38.27378273782736,65.85000484659548],[-38.27378273782736,65.8466276920557],[-38.28098280982809,65.83649622843643],[-38.23778237782378,65.83480765116653],[-38.12258122581224,65.81623330119783],[-38.10458104581045,65.81116756938818],[-38.100981009810084,65.799347528499],[-38.10458104581045,65.78415033307004],[-38.11178111781118,65.77233029218087],[-38.126181261812604,65.76895313764112],[-38.1909819098191,65.77570744672065],[-38.18378183781837,65.76726456037122],[-38.169381693816945,65.75544451948204],[-38.16218162181622,65.74869021040251],[-38.16578165781658,65.74869021040251],[-38.17298172981728,65.74869021040251],[-38.176581765817645,65.74869021040251],[-38.169381693816945,65.73855874678321],[-38.16578165781658,65.73518159224346],[-38.16578165781658,65.73011586043381],[-38.18378183781837,65.71323008773498],[-38.18378183781837,65.70985293319521],[-38.18378183781837,65.70309862411568],[-38.18018180181801,65.69465573776628],[-38.176581765817645,65.68621285141685],[-38.194581945819465,65.68790142868676],[-38.20898208982089,65.69296716049638],[-38.22338223382232,65.70141004684581],[-38.23778237782378,65.70647577865546],[-38.25938259382593,65.70478720138556],[-38.244982449824505,65.69296716049638],[-38.22338223382232,65.6811471196072],[-38.20898208982089,65.67608138779755],[-38.219782197821985,65.64568699693967],[-38.244982449824505,65.63724411059027],[-38.28098280982809,65.64062126513002],[-38.31338313383134,65.65075272874932],[-38.3169831698317,65.65750703782885],[-38.327783277832765,65.65919561509872],[-38.36018360183601,65.65919561509872],[-38.370983709837105,65.65750703782885],[-38.38538385383853,65.6524413060192],[-38.396183961839625,65.65075272874932],[-38.39978399783996,65.6541298832891],[-38.41418414184142,65.6625727696385],[-38.41778417784178,65.66426134690838],[-38.43218432184321,65.65750703782885],[-38.43938439384394,65.62035833789145],[-38.450184501845,65.60347256519262],[-38.46098460984609,65.59840683338297],[-38.47538475384752,65.59502967884319],[-38.48978489784898,65.59334110157332],[-38.50058500585004,65.59671825611306],[-38.50778507785077,65.60347256519262],[-38.50778507785077,65.61022687427214],[-38.50778507785077,65.61866976062154],[-38.504185041850405,65.62711264697097],[-38.496984969849706,65.6524413060192],[-38.478984789847885,65.6625727696385],[-38.453784537845365,65.66932707871803],[-38.428584285842845,65.67945854233733],[-38.453784537845365,65.68452427414698],[-38.49338493384934,65.67608138779755],[-38.511385113851134,65.67945854233733],[-38.5149851498515,65.68452427414698],[-38.522185221852226,65.69972146957593],[-38.52578525785256,65.70647577865546],[-38.536585365853654,65.70985293319521],[-38.54378543785438,65.70647577865546],[-38.54018540185402,65.69972146957593],[-38.53298532985329,65.69296716049638],[-38.54378543785438,65.67945854233733],[-38.55098550985508,65.6727042332578],[-38.554585545855446,65.66426134690838],[-38.55098550985508,65.65919561509872],[-38.547385473854746,65.6524413060192],[-38.54378543785438,65.6439984196698],[-38.547385473854746,65.63893268786015],[-38.561785617856174,65.63555553332037],[-38.5761857618576,65.63893268786015],[-38.59418594185942,65.64568699693967],[-38.60138601386012,65.65075272874932],[-38.597785977859786,65.65750703782885],[-38.586985869858694,65.67945854233733],[-38.604986049860486,65.6828356968771],[-38.630186301863006,65.68452427414698],[-38.64458644586446,65.6811471196072],[-38.637386373863734,65.6727042332578],[-38.637386373863734,65.66426134690838],[-38.687786877868774,65.6625727696385],[-38.7021870218702,65.66426134690838],[-38.72018720187202,65.67608138779755],[-38.73458734587345,65.68790142868676],[-38.75258752587524,65.69296716049638],[-38.77418774187743,65.68621285141685],[-38.781387813878126,65.66426134690838],[-38.75258752587524,65.64737557420955],[-38.70938709387093,65.63555553332037],[-38.67698676986768,65.63217837878062],[-38.66618666186662,65.6338669560505],[-38.65898658986589,65.63724411059027],[-38.65178651786516,65.63893268786015],[-38.6409864098641,65.63217837878062],[-38.630186301863006,65.63048980151072],[-38.62658626586264,65.62711264697097],[-38.630186301863006,65.61360402881189],[-38.62658626586264,65.61022687427214],[-38.60858608586085,65.58996394703354],[-38.60138601386012,65.57814390614436],[-38.60858608586085,65.56970101979496],[-38.61938619386194,65.57138959706484],[-38.655386553865526,65.58658679249379],[-38.66978669786698,65.58996394703354],[-38.75978759787597,65.58996394703354],[-38.781387813878126,65.59165252430344],[-38.813788137881374,65.61191545154202],[-38.831788317883166,65.61866976062154],[-38.84258842588426,65.61698118335167],[-38.85338853388532,65.61191545154202],[-38.864188641886415,65.60684971973237],[-38.88218882188821,65.57814390614436],[-38.91098910989109,65.56801244252506],[-38.9469894698947,65.56970101979496],[-38.97218972189722,65.58320963795401],[-38.96138961389613,65.58489821522389],[-38.95778957789577,65.58658679249379],[-38.95778957789577,65.58827536976366],[-38.95058950589507,65.58996394703354],[-38.98298982989829,65.58658679249379],[-39.015390153901535,65.57983248341426],[-39.0729907299073,65.55450382436601],[-39.06939069390694,65.57645532887449],[-39.065790657906575,65.58320963795401],[-39.08379083790837,65.59671825611306],[-39.10899108991089,65.63724411059027],[-39.12339123391234,65.64906415147945],[-39.141391413914135,65.66763850144815],[-39.148591485914864,65.6727042332578],[-39.15939159391593,65.6727042332578],[-39.17019170191702,65.66763850144815],[-39.18099180991808,65.66763850144815],[-39.23499234992349,65.69634431503616],[-39.27819278192783,65.70141004684581],[-39.317793177931776,65.71323008773498],[-39.342993429934296,65.74869021040251],[-39.368193681936816,65.72167297408438],[-39.357393573935724,65.71154151046511],[-39.32859328593287,65.70478720138556],[-39.299792997929984,65.69296716049638],[-39.292592925929256,65.68452427414698],[-39.2709927099271,65.65919561509872],[-39.249392493924944,65.6423098423999],[-39.242192421924216,65.63217837878062],[-39.24579245792458,65.61866976062154],[-39.22779227792279,65.61866976062154],[-39.21339213392133,65.6152926060818],[-39.20259202592027,65.60684971973237],[-39.198991989919904,65.59334110157332],[-39.2061920619206,65.58320963795401],[-39.224192241922424,65.57983248341426],[-39.26019260192601,65.58320963795401],[-39.2709927099271,65.58827536976366],[-39.292592925929256,65.60853829700227],[-39.306993069930684,65.61022687427214],[-39.317793177931776,65.60347256519262],[-39.32139321393214,65.58996394703354],[-39.31419314193141,65.57476675160461],[-39.306993069930684,65.56294671071544],[-39.31419314193141,65.55281524709613],[-39.324993249932504,65.54606093801661],[-39.33579335793357,65.5443723607467],[-39.34659346593466,65.55450382436601],[-39.35379353793539,65.56801244252506],[-39.350193501935024,65.57814390614436],[-39.34659346593466,65.58996394703354],[-39.342993429934296,65.60347256519262],[-39.33939339393393,65.61866976062154],[-39.33939339393393,65.6254240697011],[-39.342993429934296,65.62711264697097],[-39.35379353793539,65.6237354924312],[-39.35379353793539,65.62204691516132],[-39.36099360993609,65.60347256519262],[-39.368193681936816,65.60009541065284],[-39.38979389793897,65.58996394703354],[-39.37899378993791,65.56632386525519],[-39.38619386193861,65.55112666982623],[-39.400594005940064,65.5443723607467],[-39.42219422194222,65.54099520620696],[-39.44739447394474,65.54774951528648],[-39.468994689946896,65.55956955617566],[-39.50499504995051,65.58996394703354],[-39.49779497794978,65.59334110157332],[-39.49059490594905,65.59671825611306],[-39.49059490594905,65.60347256519262],[-39.508595085950844,65.60516114246249],[-39.530195301953,65.61022687427214],[-39.54819548195482,65.62035833789145],[-39.54459544595446,65.63555553332037],[-39.533795337953364,65.6439984196698],[-39.51219512195121,65.6524413060192],[-39.50499504995051,65.65919561509872],[-39.526595265952665,65.66426134690838],[-39.54459544595446,65.65919561509872],[-39.56259562595625,65.64906415147945],[-39.58059580595804,65.64568699693967],[-39.59859598595986,65.6524413060192],[-39.634596345963445,65.67945854233733],[-39.6561965619656,65.68621285141685],[-39.66699666996669,65.68452427414698],[-39.684996849968485,65.67945854233733],[-39.702997029970305,65.6727042332578],[-39.71379713797137,65.66426134690838],[-39.702997029970305,65.65581846055898],[-39.634596345963445,65.6237354924312],[-39.659796597965965,65.61698118335167],[-39.68139681396812,65.6254240697011],[-39.70659706597064,65.63893268786015],[-39.73179731797316,65.64568699693967],[-39.760597605976045,65.64062126513002],[-39.7749977499775,65.62880122424085],[-39.7749977499775,65.6152926060818],[-39.74619746197462,65.60347256519262],[-39.74619746197462,65.59671825611306],[-39.79299792997929,65.59840683338297],[-39.81459814598145,65.59334110157332],[-39.836198361983605,65.58320963795401],[-39.728197281972825,65.56463528798531],[-39.71739717397173,65.55619240163588],[-39.71379713797137,65.5443723607467],[-39.73179731797316,65.5359294743973],[-39.74979749797498,65.5359294743973],[-39.78939789397893,65.55112666982623],[-39.810998109981085,65.55450382436601],[-39.82179821798218,65.54774951528648],[-39.82179821798218,65.53255231985753],[-39.81459814598145,65.5173551244286],[-39.80739807398072,65.5072236608093],[-39.828998289982906,65.50215792899965],[-39.85059850598506,65.50046935172978],[-39.87579875798758,65.5055350835394],[-39.99099990999909,65.55450382436601],[-40.01620016200161,65.57307817433471],[-40.030600306003066,65.57983248341426],[-40.04860048600486,65.58320963795401],[-40.06660066600665,65.58152106068414],[-40.08460084600844,65.57476675160461],[-40.10260102601026,65.56463528798531],[-40.11700117001169,65.55450382436601],[-40.11700117001169,65.54943809255636],[-40.106201062010626,65.54268378347683],[-40.08460084600844,65.53255231985753],[-40.07380073800738,65.52917516531778],[-40.06660066600665,65.51904370169848],[-40.05940059400592,65.51228939261895],[-40.05220052200522,65.5055350835394],[-40.04140041400413,65.50046935172978],[-40.04140041400413,65.49540361992013],[-40.081000810008106,65.50046935172978],[-40.12780127801278,65.51228939261895],[-40.171001710017094,65.51904370169848],[-40.21060210602104,65.5072236608093],[-40.21780217802177,65.5072236608093],[-40.19260192601925,65.48020642449117],[-40.13140131401315,65.45994349725257],[-39.969399693996934,65.43630341547421],[-39.92619926199262,65.43968057001399],[-39.88299882998828,65.43630341547421],[-39.84339843398433,65.41941764277539],[-39.82179821798218,65.42617195185491],[-39.803798037980386,65.42279479731516],[-39.78939789397893,65.41266333369586],[-39.778597785977865,65.3974661382669],[-39.861398613986125,65.41097475642599],[-39.89019890198901,65.40590902461634],[-39.88299882998828,65.37720321102833],[-39.94059940599405,65.3687603246789],[-39.95139951399514,65.3603174383295],[-39.94059940599405,65.35356312924998],[-39.88299882998828,65.32992304747162],[-39.87219872198722,65.31810300658242],[-39.86499864998649,65.30459438842337],[-39.86859868598685,65.29277434753419],[-39.886598865988645,65.28770861572454],[-39.893798937989374,65.28602003845467],[-39.886598865988645,65.28095430664501],[-39.87579875798758,65.27082284302571],[-39.86499864998649,65.26575711121606],[-39.854198541985426,65.26406853394619],[-39.828998289982906,65.26069137940641],[-39.83979839798397,65.28770861572454],[-39.82179821798218,65.28770861572454],[-39.76419764197641,65.26744568848596],[-39.76419764197641,65.26069137940641],[-39.785797857978565,65.26069137940641],[-39.785797857978565,65.25393707032688],[-39.778597785977865,65.25393707032688],[-39.77139771397714,65.25224849305701],[-39.760597605976045,65.24718276124736],[-39.7749977499775,65.24211702943771],[-39.828998289982906,65.24042845216783],[-39.85779857798576,65.23536272035818],[-39.86859868598685,65.23536272035818],[-39.86859868598685,65.24042845216783],[-39.879398793987946,65.24549418397748],[-39.89019890198901,65.25055991578714],[-39.904599045990466,65.25562564759676],[-39.91539915399153,65.25393707032688],[-39.92619926199262,65.24549418397748],[-39.929799297992986,65.2319855658184],[-39.92619926199262,65.22185410219913],[-39.91539915399153,65.2134112158497],[-39.92259922599226,65.20665690677018],[-39.93339933399332,65.19821402042075],[-39.944199441994414,65.19314828861113],[-39.95859958599584,65.19314828861113],[-39.99819998199982,65.19990259769065],[-40.012600126001246,65.19821402042075],[-40.0270002700027,65.19314828861113],[-40.030600306003066,65.18808255680148],[-39.969399693996934,65.17963967045205],[-39.91539915399153,65.166131052293],[-39.944199441994414,65.14924527959417],[-39.9729997299973,65.14586812505439],[-40.030600306003066,65.15093385686404],[-40.09180091800917,65.166131052293],[-40.12420124201242,65.166131052293],[-40.11700117001169,65.14417954778452],[-40.12420124201242,65.13742523870499],[-40.07380073800738,65.12898235235556],[-40.055800558005586,65.12222804327604],[-40.06660066600665,65.11040800238686],[-40.037800378003766,65.10365369330734],[-39.96579965799657,65.10703084784708],[-39.936999369993686,65.09689938422781],[-39.95859958599584,65.09014507514826],[-39.980199801998026,65.09183365241816],[-40.005400054000546,65.09521080695791],[-40.0270002700027,65.09689938422781],[-40.13500135001348,65.08676792060851],[-40.1530015300153,65.08170218879886],[-40.16740167401673,65.07157072517955],[-40.171001710017094,65.05468495248073],[-40.163801638016366,65.04117633432168],[-40.15660156601567,65.0293562934325],[-40.163801638016366,65.02260198435297],[-40.19260192601925,65.0276677161626],[-40.189001890018886,65.03104487070237],[-40.18540185401852,65.04117633432168],[-40.22860228602286,65.03948775705177],[-40.246602466024655,65.03442202524215],[-40.26100261002608,65.02091340708307],[-40.26100261002608,65.00402763438424],[-40.28260282602827,65.0006504798445],[-40.30060300603006,65.0090933661939],[-40.30060300603006,65.02091340708307],[-40.32580325803258,65.04117633432168],[-40.3510035100351,65.06312783883016],[-40.37980379803798,65.08339076606873],[-40.40860408604087,65.09014507514826],[-40.372603726037255,65.05468495248073],[-40.36900369003689,65.0377991797819],[-40.37980379803798,65.03273344797225],[-40.40140401404014,65.03273344797225],[-40.42660426604266,65.0377991797819],[-40.44100441004409,65.04624206613133],[-40.4770047700477,65.07157072517955],[-40.56700567005669,65.10027653876756],[-40.6030060300603,65.12391662054591],[-40.59220592205921,65.13911381597487],[-40.6030060300603,65.14586812505439],[-40.631806318063184,65.14417954778452],[-40.649806498064976,65.14249097051464],[-40.657006570065704,65.13404808416522],[-40.67140671406713,65.11040800238686],[-40.664206642066404,65.10365369330734],[-40.67860678606786,65.09352222968803],[-40.70380703807038,65.05468495248073],[-40.700207002070016,65.0377991797819],[-40.707407074070744,65.0293562934325],[-40.71820718207181,65.0293562934325],[-40.732607326073264,65.04624206613133],[-40.77220772207721,65.06988214790968],[-40.76860768607685,65.07157072517955],[-40.765007650076484,65.07494787971933],[-40.76140761407615,65.07832503425908],[-40.76140761407615,65.08339076606873],[-40.84780847808477,65.09689938422781],[-40.87660876608766,65.09689938422781],[-40.8550085500855,65.0665049933699],[-40.86940869408693,65.06312783883016],[-40.93780937809379,65.08339076606873],[-41.017010170101685,65.08845649787838],[-41.05661056610566,65.10027653876756],[-41.07461074610745,65.12053946600616],[-41.08181081810818,65.13235950689534],[-41.09981099810997,65.13067092962547],[-41.11421114211143,65.12222804327604],[-41.12141121411213,65.11716231146639],[-41.12861128611286,65.10365369330734],[-41.12861128611286,65.09014507514826],[-41.12141121411213,65.08001361152898],[-41.07821078210782,65.0681935706398],[-41.035010350103505,65.0276677161626],[-41.00621006210062,65.01415909800355],[-41.009810098100985,65.00402763438424],[-41.01341013410135,65.0006504798445],[-40.991809918099165,64.99051901622519],[-40.984609846098465,64.97701039806611],[-40.98820988209883,64.96519035717694],[-41.01341013410135,64.96012462536731],[-41.12861128611286,64.98207612987576],[-41.15021150211501,64.97701039806611],[-41.15021150211501,64.96012462536731],[-41.14661146611465,64.95337031628776],[-41.12141121411213,64.93986169812871],[-41.110611106111065,64.9297302345094],[-41.07461074610745,64.88751580276235],[-41.067410674106725,64.8824500709527],[-41.0530105301053,64.87738433914305],[-41.01341013410135,64.87569576187317],[-40.991809918099165,64.8723186073334],[-40.991809918099165,64.863875720984],[-40.966609666096645,64.863875720984],[-40.883808838088385,64.85712141190444],[-40.89460894608945,64.85205568009482],[-40.91980919809197,64.83854706193574],[-40.934209342093425,64.835169907396],[-40.966609666096645,64.83685848466587],[-40.9810098100981,64.835169907396],[-40.991809918099165,64.83010417558634],[-40.883808838088385,64.80984124834774],[-40.87660876608766,64.78788974383926],[-40.790207902079004,64.7456753120922],[-40.765007650076484,64.74060958028255],[-40.732607326073264,64.73892100301268],[-40.70380703807038,64.73385527120303],[-40.68580685806859,64.72034665304395],[-40.69300693006929,64.69164083945594],[-40.62820628206282,64.69164083945594],[-40.6030060300603,64.68319795310654],[-40.59580595805957,64.66124644859806],[-40.59580595805957,64.65618071678841],[-40.59580595805957,64.65280356224864],[-40.599405994059936,64.65111498497876],[-40.606606066060664,64.65111498497876],[-40.61020610206103,64.64942640770889],[-40.61020610206103,64.64267209862936],[-40.6030060300603,64.63085205774019],[-40.599405994059936,64.62072059412088],[-40.59220592205921,64.60383482142205],[-40.59580595805957,64.59708051234253],[-40.58500585005851,64.5801947396437],[-40.57060570605705,64.53291457608697],[-40.55980559805599,64.51434022611826],[-40.61740617406173,64.48394583526039],[-40.63540635406355,64.46706006256156],[-40.606606066060664,64.46030575348203],[-40.57060570605705,64.45692859894226],[-40.40140401404014,64.41640274446507],[-40.38700387003868,64.40795985811565],[-40.372603726037255,64.39613981722647],[-40.36900369003689,64.39276266268672],[-40.36900369003689,64.37418831271799],[-40.36540365403653,64.36574542636859],[-40.35820358203583,64.36236827182881],[-40.35820358203583,64.35899111728907],[-40.36900369003689,64.35054823093964],[-40.38340383403835,64.34548249912999],[-40.4122041220412,64.34210534459024],[-40.423004230042295,64.33703961278059],[-40.43740437404372,64.35223680820954],[-40.45540455404554,64.35899111728907],[-40.48060480604806,64.35730254001919],[-40.498604986049855,64.35054823093964],[-40.50940509405095,64.34210534459024],[-40.51300513005128,64.33535103551071],[-40.51660516605165,64.33028530370106],[-40.53460534605347,64.32859672643116],[-40.549005490054896,64.33197388097093],[-40.55260552605526,64.33872819005046],[-40.549005490054896,64.34885965366976],[-40.54180541805417,64.35730254001919],[-40.54180541805417,64.36405684909872],[-40.606606066060664,64.37418831271799],[-40.61740617406173,64.38094262179754],[-40.624606246062456,64.39276266268672],[-40.639006390063884,64.38938550814694],[-40.66780667806677,64.37756546725777],[-40.682206822068224,64.37925404452764],[-40.707407074070744,64.38938550814694],[-40.71820718207181,64.39107408541682],[-40.732607326073264,64.38769693087707],[-40.757807578075784,64.37925404452764],[-40.77220772207721,64.37756546725777],[-40.76860768607685,64.38431977633729],[-40.801008010080096,64.38938550814694],[-40.83700837008371,64.38094262179754],[-40.93060930609306,64.33366245824081],[-40.966609666096645,64.32521957189141],[-41.07821078210782,64.31171095373233],[-41.337413374133746,64.32859672643116],[-41.33381333813338,64.33197388097093],[-41.32301323013229,64.34379392186011],[-41.351813518135174,64.34885965366976],[-41.45981459814598,64.32859672643116],[-41.503015030150294,64.33028530370106],[-41.52461524615245,64.32690814916128],[-41.53901539015391,64.3049566446528],[-41.56781567815679,64.28131656287445],[-41.56781567815679,64.2661193674455],[-41.553415534155334,64.2576764810961],[-41.53181531815318,64.25429932655632],[-41.463414634146346,64.25429932655632],[-41.445414454144526,64.2475450174768],[-41.44901449014489,64.23065924477797],[-41.45621456214562,64.21883920388879],[-41.452614526145254,64.21377347207914],[-41.39861398613985,64.18169050395139],[-41.387813878138786,64.17831334941161],[-41.085410854108545,64.1496075358236],[-41.060210602106025,64.1411646494742],[-41.04581045810457,64.129344608585],[-41.02421024210241,64.09895021772712],[-41.00621006210062,64.08544159956807],[-40.984609846098465,64.08037586775842],[-40.959409594095945,64.0820644450283],[-40.93780937809379,64.0921959086476],[-40.92340923409233,64.10908168134642],[-40.94500945009449,64.11921314496573],[-40.966609666096645,64.129344608585],[-40.95580955809558,64.1411646494742],[-40.9270092700927,64.15636184490313],[-40.916209162091604,64.16480473125256],[-40.909009090090905,64.158050422173],[-40.88740887408875,64.16649330852243],[-40.76860768607685,64.16480473125256],[-40.76140761407615,64.16311615398266],[-40.750607506075056,64.15298469036338],[-40.74340743407433,64.15129611309348],[-40.73620736207363,64.15298469036338],[-40.7290072900729,64.15636184490313],[-40.72180721807217,64.158050422173],[-40.71100711007111,64.158050422173],[-40.69660696606965,64.1496075358236],[-40.68580685806859,64.1411646494742],[-40.675006750067496,64.13272176312478],[-40.59220592205921,64.1209017222356],[-40.55980559805599,64.10739310407655],[-40.549005490054896,64.08544159956807],[-40.54180541805417,64.06686724959934],[-40.54540545405453,64.05842436324994],[-40.57780577805778,64.05167005417042],[-40.59580595805957,64.04322716782099],[-40.61740617406173,64.03140712693181],[-40.62820628206282,64.02127566331251],[-40.649806498064976,64.01114419969323],[-40.64260642606425,64.00101273607393],[-40.6030060300603,63.97906123156545],[-40.624606246062456,63.967241190676276],[-40.64620646206461,63.9655526134064],[-40.664206642066404,63.97061834521605],[-40.714607146071444,63.994258426994406],[-40.732607326073264,63.994258426994406],[-40.74700747007469,63.97906123156545],[-40.725407254072536,63.9739954997558],[-40.71820718207181,63.97230692248593],[-40.74340743407433,63.962175458866625],[-40.840608406084044,63.95204399524732],[-40.808208082080824,63.93853537708827],[-40.76140761407615,63.93346964527862],[-40.71100711007111,63.935158222548495],[-40.67860678606786,63.9452896861678],[-40.639006390063884,63.93346964527862],[-40.62100621006209,63.92502675892919],[-40.62100621006209,63.91151814077014],[-40.62100621006209,63.904763831690616],[-40.61020610206103,63.891255213531565],[-40.6030060300603,63.886189481721914],[-40.59580595805957,63.88450090445201],[-40.59580595805957,63.87605801810261],[-40.606606066060664,63.86761513175318],[-40.59580595805957,63.85579509086401],[-40.55980559805599,63.83553216362543],[-40.55980559805599,63.828777854545905],[-40.59220592205921,63.82202354546635],[-40.61380613806136,63.806826350037426],[-40.61740617406173,63.793317731878346],[-40.58860588605884,63.788252000068695],[-40.58860588605884,63.78149769098917],[-40.59220592205921,63.779809113719296],[-40.6030060300603,63.774743381909644],[-40.58860588605884,63.76967765009999],[-40.57780577805778,63.75110330013129],[-40.56340563405632,63.74603756832164],[-40.53460534605347,63.74603756832164],[-40.52020520205201,63.74097183651199],[-40.51300513005128,63.725774641083035],[-40.52740527405274,63.69706882749503],[-40.56340563405632,63.685248786605854],[-40.64260642606425,63.685248786605854],[-40.63540635406355,63.69706882749503],[-40.631806318063184,63.70213455930468],[-40.62100621006209,63.70551171384446],[-40.64620646206461,63.71057744565411],[-40.67860678606786,63.71057744565411],[-40.700207002070016,63.70213455930468],[-40.69660696606965,63.676805900256454],[-40.99900999009989,63.70213455930468],[-41.085410854108545,63.72239748654329],[-41.13941139411395,63.74941472286142],[-41.319413194131926,63.77305480463977],[-41.35541355413554,63.78318626825907],[-41.38061380613806,63.798383463688],[-41.40581405814058,63.82202354546635],[-41.413014130141306,63.82540070000613],[-41.420214202142006,63.842286472704956],[-41.42381423814237,63.84904078178448],[-41.43461434614346,63.85579509086401],[-41.445414454144526,63.86086082267366],[-41.45621456214562,63.864237977213435],[-41.47421474214741,63.86254939994356],[-41.488614886148866,63.86086082267366],[-41.49221492214923,63.85748366813391],[-41.488614886148866,63.850729359054355],[-41.4850148501485,63.83890931816518],[-41.49941499414993,63.82202354546635],[-41.53541535415354,63.81189208184708],[-41.596615966159646,63.801760618227775],[-41.62181621816217,63.79500630914825],[-41.629016290162895,63.788252000068695],[-41.62541625416253,63.77812053644942],[-41.61821618216183,63.76967765009999],[-41.60741607416074,63.76292334102047],[-41.59301593015931,63.75616903194094],[-41.58221582215822,63.75448045467104],[-41.56781567815679,63.75448045467104],[-41.54261542615427,63.76461191829034],[-41.53181531815318,63.76798907283012],[-41.470614706147046,63.76798907283012],[-41.44181441814419,63.76292334102047],[-41.395013950139486,63.744348991051766],[-41.337413374133746,63.73590610470234],[-41.24741247412473,63.69875740476493],[-41.218612186121845,63.69369167295528],[-40.966609666096645,63.67511732298658],[-40.909009090090905,63.6616087048275],[-40.88020880208802,63.65823155028775],[-40.840608406084044,63.59575419130209],[-40.891008910089084,63.59575419130209],[-40.87300873008729,63.58055699587314],[-40.84780847808477,63.57211410952371],[-40.82260822608225,63.57211410952371],[-40.801008010080096,63.57549126406349],[-40.79740797407973,63.578868418603264],[-40.790207902079004,63.58224557314301],[-40.77940779407794,63.58562272768279],[-40.76860768607685,63.58899988222254],[-40.76140761407615,63.58899988222254],[-40.750607506075056,63.587311304952664],[-40.74340743407433,63.587311304952664],[-40.732607326073264,63.58899988222254],[-40.73620736207363,63.58224557314301],[-40.74340743407433,63.57549126406349],[-40.76140761407615,63.561982645904436],[-40.74340743407433,63.538342564126054],[-40.750607506075056,63.516391059617604],[-40.77220772207721,63.502882441458524],[-40.801008010080096,63.499505286918776],[-40.82260822608225,63.50963675053805],[-40.83700837008371,63.524833945967],[-40.851408514085136,63.53158825504653],[-40.87660876608766,63.521456791427255],[-40.87660876608766,63.51301390507783],[-40.86220862208623,63.507948173268176],[-40.87660876608766,63.5062595959983],[-40.88740887408875,63.507948173268176],[-40.89820898208981,63.50963675053805],[-40.909009090090905,63.51301390507783],[-40.91980919809197,63.51976821415735],[-40.934209342093425,63.534965409586306],[-40.94500945009449,63.54171971866583],[-40.94500945009449,63.53158825504653],[-40.94500945009449,63.524833945967],[-40.95220952209522,63.51301390507783],[-40.96300963009631,63.51807963688748],[-40.97020970209701,63.52314536869713],[-40.97020970209701,63.529899677776655],[-40.97740977409774,63.538342564126054],[-41.01341013410135,63.565359800444185],[-41.02061020610205,63.561982645904436],[-41.02061020610205,63.55353975955501],[-41.02061020610205,63.54847402774536],[-41.017010170101685,63.54003114139596],[-40.991809918099165,63.521456791427255],[-41.03141031410314,63.51301390507783],[-41.1070110701107,63.524833945967],[-41.143011430114285,63.52821110050678],[-41.12861128611286,63.51301390507783],[-41.1070110701107,63.507948173268176],[-41.06381063810639,63.507948173268176],[-41.04941049410493,63.502882441458524],[-41.017010170101685,63.475865205140394],[-40.99900999009989,63.46573374152112],[-41.017010170101685,63.45053654609217],[-41.04581045810457,63.445470814282515],[-41.07461074610745,63.44715939155239],[-41.09621096210961,63.45222512336204],[-41.11421114211143,63.46066800971147],[-41.193411934119325,63.53158825504653],[-41.21501215012151,63.543408295935706],[-41.26541265412655,63.565359800444185],[-41.27981279812798,63.56873695498396],[-41.287012870128706,63.565359800444185],[-41.287012870128706,63.55522833682488],[-41.28341283412834,63.54678545047548],[-41.28341283412834,63.54003114139596],[-41.287012870128706,63.534965409586306],[-41.269012690126885,63.52652252323688],[-41.22581225812257,63.516391059617604],[-41.20421204212042,63.507948173268176],[-41.193411934119325,63.494439555109125],[-41.1790117901179,63.475865205140394],[-41.17181171811717,63.458979432441595],[-41.17541175411753,63.45222512336204],[-41.15381153811538,63.44715939155239],[-41.1070110701107,63.42858504158369],[-41.08181081810818,63.42520788704394],[-41.035010350103505,63.42520788704394],[-41.017010170101685,63.42183073250416],[-40.99900999009989,63.41169926888486],[-41.01341013410135,63.404944959805334],[-41.03141031410314,63.40325638253546],[-41.06381063810639,63.40325638253546],[-41.08181081810818,63.40156780526556],[-41.11421114211143,63.38974776437638],[-41.12861128611286,63.38974776437638],[-41.168211682116805,63.38974776437638],[-41.1790117901179,63.39481349618603],[-41.18261182611826,63.404944959805334],[-41.19701197011969,63.43365077339334],[-41.20061200612005,63.43871650520299],[-41.22221222212221,63.44715939155239],[-41.29061290612907,63.4876852460296],[-41.326613266132654,63.5147024823477],[-41.377013770137694,63.54171971866583],[-41.402214022140214,63.56029406863453],[-41.413014130141306,63.565359800444185],[-41.4310143101431,63.56704837771409],[-41.326613266132654,63.48261951421995],[-41.287012870128706,63.445470814282515],[-41.25821258212582,63.43027361885356],[-41.24741247412473,63.42014215523429],[-41.24021240212403,63.40325638253546],[-41.39141391413915,63.458979432441595],[-41.438214382143826,63.4859966687597],[-41.488614886148866,63.53158825504653],[-41.49221492214923,63.524833945967],[-41.49221492214923,63.50457101872843],[-41.49941499414993,63.48430809148982],[-41.51381513815139,63.4859966687597],[-41.51381513815139,63.47924235968017],[-41.52461524615245,63.4859966687597],[-41.54261542615427,63.49106240056935],[-41.56421564215643,63.49275097783922],[-41.58221582215822,63.49275097783922],[-41.57501575015749,63.49275097783922],[-41.578615786157854,63.48937382329947],[-41.57501575015749,63.48937382329947],[-41.56781567815679,63.4876852460296],[-41.56061560615606,63.4859966687597],[-41.546215462154606,63.4775537824103],[-41.54261542615427,63.47417662787052],[-41.51381513815139,63.47079947333077],[-41.3590135901359,63.42520788704394],[-41.24741247412473,63.37117341440768],[-41.161011610116105,63.34584475535945],[-41.135811358113585,63.33233613720037],[-41.11421114211143,63.315450364501544],[-41.11421114211143,63.30869605542202],[-41.13221132211322,63.312073209961795],[-41.1790117901179,63.33571329174015],[-41.19701197011969,63.342467600819674],[-41.362613626136266,63.37286199167755],[-41.37341373413733,63.37623914621733],[-41.38061380613806,63.38468203256673],[-41.39141391413915,63.39819065072581],[-41.38421384213842,63.40325638253546],[-41.402214022140214,63.42183073250416],[-41.43461434614346,63.42520788704394],[-41.49941499414993,63.42520788704394],[-41.53181531815318,63.431962196123465],[-41.66861668616684,63.50963675053805],[-41.70101701017009,63.54509687320561],[-41.71541715417155,63.55353975955501],[-41.73341733417334,63.55353975955501],[-41.75861758617586,63.54847402774536],[-41.75861758617586,63.54171971866583],[-41.755017550175495,63.53665398685618],[-41.75141751417513,63.53158825504653],[-41.74781747817477,63.52821110050678],[-41.76941769417692,63.50963675053805],[-41.88461884618846,63.47924235968017],[-41.90261902619025,63.46911089606087],[-41.906219062190615,63.46404516425122],[-41.906219062190615,63.45560227790182],[-41.89901899018989,63.445470814282515],[-41.8630186301863,63.410010691614985],[-41.855818558185575,63.40156780526556],[-41.83421834218342,63.396502073455935],[-41.6830168301683,63.35259906443898],[-41.679416794167935,63.34584475535945],[-41.6830168301683,63.33571329174015],[-41.69021690216903,63.32895898266062],[-41.70101701017009,63.32727040539072],[-41.79101791017911,63.3492219098992],[-41.8090180901809,63.342467600819674],[-41.8090180901809,63.33571329174015],[-41.780217802178015,63.32895898266062],[-41.76581765817659,63.32389325085097],[-41.755017550175495,63.315450364501544],[-41.755017550175495,63.312073209961795],[-41.75861758617586,63.307007478152144],[-41.75861758617586,63.30194174634249],[-41.7370173701737,63.30869605542202],[-41.66861668616684,63.31713894177145],[-41.64341643416435,63.315450364501544],[-41.62181621816217,63.307007478152144],[-41.58941589415895,63.29181028272319],[-41.56781567815679,63.27492451002436],[-41.56781567815679,63.25972731459541],[-41.488614886148866,63.23777581008696],[-41.47421474214741,63.22595576919778],[-41.47421474214741,63.20738141922905],[-41.4850148501485,63.18880706926035],[-41.49221492214923,63.17023271929165],[-41.477814778147774,63.14996979205304],[-41.438214382143826,63.14321548297352],[-41.4310143101431,63.13646117389399],[-41.4310143101431,63.124641133004815],[-41.44181441814419,63.12126397846504],[-41.46701467014671,63.11619824665539],[-41.52461524615245,63.097623896686684],[-41.553415534155334,63.097623896686684],[-41.58221582215822,63.10944393757586],[-41.6110161101611,63.13646117389399],[-41.62181621816217,63.14321548297352],[-41.81981819818196,63.21413572830858],[-41.90981909819098,63.22595576919778],[-42.021420214202124,63.252973005515884],[-42.00342003420033,63.23439865554718],[-41.96741967419675,63.22089003738813],[-41.85941859418594,63.195561378339875],[-41.7370173701737,63.138149751163866],[-41.679416794167935,63.12295255573491],[-41.62181621816217,63.09593531941681],[-41.54981549815497,63.053720887669726],[-41.53901539015391,63.043589424050424],[-41.53541535415354,63.03345796043115],[-41.66501665016651,63.040212269510675],[-41.71541715417155,63.06047519674925],[-41.7442174421744,63.067229505828806],[-41.76581765817659,63.06047519674925],[-41.71901719017188,63.0469665785902],[-41.71181711817118,63.040212269510675],[-41.73341733417334,63.03345796043115],[-41.75861758617586,63.03345796043115],[-41.83781837818378,63.0469665785902],[-41.855818558185575,63.05540946493963],[-41.870218702187,63.07229523763846],[-41.87741877418773,63.089181010337256],[-41.88821888218882,63.09593531941681],[-41.931419314193136,63.102689628496336],[-41.956619566195656,63.10100105122646],[-41.97101971019708,63.089181010337256],[-41.963819638196384,63.08749243306738],[-41.956619566195656,63.084115278527634],[-41.938619386193864,63.075672392178205],[-41.956619566195656,63.06891808309868],[-41.97461974619745,63.07398381490833],[-42.021420214202124,63.10944393757586],[-42.046620466204644,63.14996979205304],[-42.07542075420753,63.1752984511013],[-42.107821078210776,63.195561378339875],[-42.14382143821439,63.20569284195918],[-42.17982179821797,63.20569284195918],[-42.165421654216544,63.195561378339875],[-42.15102151021509,63.17867560564105],[-42.13662136621366,63.15841267840247],[-42.12942129421293,63.14321548297352],[-42.13662136621366,63.12801828754456],[-42.15462154621545,63.12126397846504],[-42.17982179821797,63.11619824665539],[-42.20502205022049,63.10944393757586],[-42.17982179821797,63.097623896686684],[-42.11142111421114,63.09424674214691],[-42.082620826208256,63.089181010337256],[-42.02862028620285,63.062163774019155],[-42.007020070200696,63.0469665785902],[-42.007020070200696,63.026703651351625],[-41.75141751417513,63.01994934227207],[-41.74061740617407,63.01657218773232],[-41.70101701017009,62.99799783776359],[-41.69021690216903,62.99293210595397],[-41.66861668616684,62.99462068322384],[-41.64341643416435,62.99630926049372],[-41.62541625416253,62.99462068322384],[-41.6110161101611,62.97942348779489],[-41.62181621816217,62.97604633325514],[-41.62181621816217,62.96929202417559],[-41.61821618216183,62.96084913782619],[-41.6110161101611,62.950717674206885],[-41.63621636216362,62.928766169698406],[-41.67581675816757,62.91356897426948],[-41.71901719017188,62.91188039699958],[-41.75861758617586,62.92538901515866],[-41.76941769417692,62.937209056047834],[-41.77661776617765,62.93383190150806],[-41.78741787417874,62.91188039699958],[-41.75861758617586,62.883174583411574],[-41.76581765817659,62.883174583411574],[-41.76941769417692,62.8814860061417],[-41.77301773017729,62.87642027433205],[-41.78381783817838,62.8814860061417],[-41.79461794617944,62.8814860061417],[-41.8090180901809,62.879797428871825],[-41.82341823418233,62.87642027433205],[-41.78741787417874,62.86797738798265],[-41.76221762217622,62.85615734709347],[-41.75141751417513,62.84940303801392],[-41.75141751417513,62.84433730620427],[-41.80181801818017,62.839271574394644],[-41.82341823418233,62.83251726531509],[-41.84141841418415,62.82914011077534],[-41.92421924219241,62.84602588347417],[-41.981819818198176,62.84940303801392],[-41.98541985419854,62.852780192553695],[-41.99261992619927,62.862911656173],[-41.99981999819997,62.87304311979227],[-42.01062010620106,62.87642027433205],[-42.021420214202124,62.87304311979227],[-42.01782017820179,62.862911656173],[-42.007020070200696,62.84096015166452],[-42.01782017820179,62.79705714264756],[-42.0610206102061,62.790302833568035],[-42.172621726217244,62.81563149261626],[-42.32022320223203,62.817320069886165],[-42.341823418234185,62.82407437896569],[-42.35262352623525,62.83589441985487],[-42.349023490234885,62.85615734709347],[-42.33462334623346,62.86797738798265],[-42.30942309423094,62.874731697062174],[-42.28422284222842,62.87810885160192],[-42.26262262622626,62.87642027433205],[-42.26262262622626,62.883174583411574],[-42.349023490234885,62.8814860061417],[-42.36342363423634,62.8899288924911],[-42.35262352623525,62.90343751065018],[-42.32742327423273,62.91863470607913],[-42.298622986229844,62.93214332423818],[-42.28062280622805,62.93889763331771],[-42.30582305823057,62.945651942397234],[-42.33822338223382,62.94058621058758],[-42.37062370623707,62.928766169698406],[-42.392223922239225,62.915257551539355],[-42.40302403024029,62.915257551539355],[-42.417424174241745,62.91694612880923],[-42.43182431824317,62.915257551539355],[-42.4390243902439,62.90850324245983],[-42.43542435424354,62.893306047030876],[-42.42822428224281,62.884863160681476],[-42.42822428224281,62.87810885160192],[-42.4390243902439,62.86966596525252],[-42.46062460624606,62.862911656173],[-42.48942489424894,62.861223078903095],[-42.518225182251825,62.866288810712746],[-42.543425434254345,62.87304311979227],[-42.57222572225723,62.879797428871825],[-42.59742597425975,62.8713545425224],[-42.601026010260085,62.85615734709347],[-42.575825758257565,62.84096015166452],[-42.54702547025471,62.83758299712474],[-42.45702457024569,62.84096015166452],[-42.424624246242445,62.83758299712474],[-42.417424174241745,62.82914011077534],[-42.424624246242445,62.81563149261626],[-42.47142471424715,62.78523710175838],[-42.48582485824858,62.77848279267886],[-42.500225002250005,62.78017136994873],[-42.5110251102511,62.78523710175838],[-42.518225182251825,62.795368565377686],[-42.525425254252525,62.80550002899699],[-42.52902529025289,62.812254338076514],[-42.53262532625325,62.817320069886165],[-42.543425434254345,62.822385801695816],[-42.55422554225541,62.82745153350544],[-42.5650256502565,62.82914011077534],[-42.57942579425793,62.825762956235565],[-42.57942579425793,62.81900864715604],[-42.500225002250005,62.7261368973125],[-42.48582485824858,62.697431083724496],[-42.50382503825037,62.70249681553412],[-42.51462514625146,62.71262827915342],[-42.525425254252525,62.72275974277272],[-42.53622536225362,62.732891206392026],[-42.550625506255045,62.73795693820168],[-42.5650256502565,62.74302267001133],[-42.57942579425793,62.74977697909085],[-42.575825758257565,62.759908442710156],[-42.59022590225902,62.76497417451978],[-42.601026010260085,62.76666275178968],[-42.61182611826118,62.76159701998003],[-42.61542615426154,62.74977697909085],[-42.61182611826118,62.7345797836619],[-42.59742597425975,62.7244483200426],[-42.56142561425614,62.71262827915342],[-42.57942579425793,62.69911966099437],[-42.60462604626045,62.68898819737507],[-42.62982629826297,62.683922465565416],[-42.651426514265125,62.683922465565416],[-42.644226442264426,62.69405392918472],[-42.64062640626406,62.70756254734377],[-42.64062640626406,62.72107116550285],[-42.64782647826479,62.7261368973125],[-42.658626586265854,62.73120262912215],[-42.683826838268374,62.77003990632943],[-42.694626946269466,62.77848279267886],[-42.709027090270894,62.78017136994873],[-42.719827198271986,62.77341706086921],[-42.727027270272686,62.759908442710156],[-42.72342723427235,62.75146555636073],[-42.6910269102691,62.71262827915342],[-42.709027090270894,62.692365351914844],[-42.73782737827378,62.692365351914844],[-42.802628026280246,62.705873970073895],[-42.89982899828999,62.70756254734377],[-43.036630366303655,62.7244483200426],[-43.05823058230581,62.736268360931774],[-43.07983079830797,62.74977697909085],[-43.10503105031049,62.759908442710156],[-43.13383133831337,62.76497417451978],[-43.15183151831519,62.759908442710156],[-43.1410314103141,62.74977697909085],[-43.10863108631085,62.7261368973125],[-43.13023130231301,62.71093970188355],[-43.11943119431194,62.700808238264244],[-43.087030870308695,62.69405392918472],[-42.871028710287106,62.67547957921602],[-42.759427594275934,62.643396611088235],[-42.74142741427414,62.643396611088235],[-42.73062730627305,62.64001945654849],[-42.727027270272686,62.63326514746893],[-42.727027270272686,62.62482226111953],[-42.73062730627305,62.62313368384966],[-42.73062730627305,62.61975652930988],[-42.727027270272686,62.616379374770105],[-42.71622716227162,62.607936488420705],[-42.6910269102691,62.59611644753153],[-42.68022680226801,62.5876735611821],[-42.68022680226801,62.59611644753153],[-42.676626766267646,62.60962506569058],[-42.68022680226801,62.616379374770105],[-42.65502655026549,62.616379374770105],[-42.61182611826118,62.629887992929184],[-42.59022590225902,62.62651083838941],[-42.45342453424533,62.58260782937245],[-42.40662406624065,62.57754209756283],[-42.3850238502385,62.57078778848327],[-42.367023670236705,62.55559059305435],[-42.34542345423455,62.51675331584704],[-42.323823238232364,62.504933274957864],[-42.32742327423273,62.50324469768796],[-42.33462334623346,62.49311323406869],[-42.33462334623346,62.482981770449385],[-42.34542345423455,62.47453888409996],[-42.367023670236705,62.46778457502043],[-42.3850238502385,62.46440742048068],[-42.43182431824317,62.477916038639734],[-42.46422464224642,62.49311323406869],[-42.52182521825219,62.53363908854587],[-42.55422554225541,62.540393397625394],[-42.55422554225541,62.53363908854587],[-42.5110251102511,62.509999006767515],[-42.493024930249305,62.49480181133856],[-42.47862478624785,62.477916038639734],[-42.49662496624967,62.47453888409996],[-42.51462514625146,62.477916038639734],[-42.53262532625325,62.482981770449385],[-42.550625506255045,62.48635892498913],[-42.55782557825577,62.482981770449385],[-42.55422554225541,62.477916038639734],[-42.543425434254345,62.46778457502043],[-42.52902529025289,62.46440742048068],[-42.50742507425073,62.46609599775056],[-42.493024930249305,62.46440742048068],[-42.43542435424354,62.4407673387023],[-42.41022410224102,62.43739018416255],[-42.39582395823959,62.4323244523529],[-42.3850238502385,62.4221929887336],[-42.374223742237405,62.41712725692395],[-42.35622356223561,62.42388156600347],[-42.35982359823598,62.42725872054325],[-42.36342363423634,62.43739018416255],[-42.341823418234185,62.442455915972204],[-42.25542255422553,62.43739018416255],[-42.25542255422553,62.434013029622776],[-42.26262262622626,62.42388156600347],[-42.24462244622447,62.41543867965407],[-42.24462244622447,62.40530721603477],[-42.2590225902259,62.393487175145594],[-42.273422734227324,62.38335571152629],[-42.248222482224804,62.38842144333594],[-42.165421654216544,62.390110020605846],[-42.165421654216544,62.38335571152629],[-42.223022230222284,62.36815851609737],[-42.25542255422553,62.363092784287716],[-42.27702277022769,62.37322424790702],[-42.33822338223382,62.37660140244677],[-42.417424174241745,62.393487175145594],[-42.43542435424354,62.4036186387649],[-42.467824678246785,62.41037294784442],[-42.47142471424715,62.41543867965407],[-42.48222482224821,62.42725872054325],[-42.48582485824858,62.43063587508303],[-42.50382503825037,62.4323244523529],[-42.53262532625325,62.42388156600347],[-42.54702547025471,62.42388156600347],[-42.5650256502565,62.428947297813124],[-42.60822608226081,62.45934168867103],[-42.63342633426333,62.46271884321078],[-42.658626586265854,62.46440742048068],[-42.68022680226801,62.46609599775056],[-42.69822698226983,62.477916038639734],[-42.69822698226983,62.482981770449385],[-42.6910269102691,62.49311323406869],[-42.734227342273414,62.50324469768796],[-42.752227522275206,62.50324469768796],[-42.770227702277026,62.48973607952891],[-42.78822788227882,62.48635892498913],[-42.85662856628565,62.513376161307264],[-42.935829358293574,62.515064738577166],[-42.961029610296094,62.523507624926566],[-42.97542975429755,62.52519620219644],[-42.97542975429755,62.509999006767515],[-42.97542975429755,62.491424656798785],[-42.979029790297886,62.477916038639734],[-42.96462964629646,62.47285030683008],[-42.94662946629467,62.47453888409996],[-42.93222932229321,62.477916038639734],[-42.910629106291054,62.477916038639734],[-42.7630276302763,62.4323244523529],[-42.676626766267646,62.393487175145594],[-42.658626586265854,62.38842144333594],[-42.651426514265125,62.38335571152629],[-42.644226442264426,62.37491282517689],[-42.64062640626406,62.36140420701784],[-42.6370263702637,62.35633847520819],[-42.62262622626227,62.34282985704911],[-42.60822608226081,62.336075547969585],[-42.59022590225902,62.33438697069971],[-42.41022410224102,62.349584166128636],[-42.399423994239925,62.34114127977924],[-42.349023490234885,62.32087835254063],[-42.32742327423273,62.31581262073098],[-42.26262262622626,62.314124043461106],[-42.26982269822699,62.29892684803218],[-42.28422284222842,62.29217253895263],[-42.30222302223021,62.28879538441288],[-42.316623166231665,62.28035249806345],[-42.32742327423273,62.2668438799044],[-42.323823238232364,62.26346672536462],[-42.29502295022951,62.260089570824874],[-42.266222662226625,62.246580952665795],[-42.2590225902259,62.22800660269709],[-42.26262262622626,62.206055098188614],[-42.28062280622805,62.184103593680135],[-42.32022320223203,62.15877493463191],[-42.33102331023309,62.15033204828248],[-42.33102331023309,62.1385120073933],[-42.323823238232364,62.135134852853554],[-42.30942309423094,62.13175769831378],[-42.30222302223021,62.12331481196438],[-42.3130231302313,62.10305188472577],[-42.34542345423455,62.09629757564625],[-42.3850238502385,62.09460899837637],[-42.41022410224102,62.08785468929682],[-42.392223922239225,62.077723225677545],[-42.3850238502385,62.07434607113777],[-42.399423994239925,62.06590318478837],[-42.41022410224102,62.055771721169066],[-42.424624246242445,62.050705989359415],[-42.50382503825037,62.04395168027989],[-42.52182521825219,62.04057452574011],[-42.49662496624967,62.03213163939071],[-42.43542435424354,62.02537733031116],[-42.417424174241745,62.01355728942198],[-42.48582485824858,61.98485147583398],[-42.54702547025471,61.95107993043632],[-42.49662496624967,61.94263704408692],[-42.4390243902439,61.966277125865275],[-42.38142381423813,62.00004867126293],[-42.33102331023309,62.020311598501536],[-42.147421474214724,62.023688753041284],[-42.11862118621187,62.00680298034246],[-42.12582125821257,61.98991720764363],[-42.16902169021691,61.9645885485954],[-42.1870218702187,61.930817003197745],[-42.208622086220856,61.92068553957844],[-42.233822338223376,61.91561980776879],[-42.38862388623886,61.92406269411822],[-42.417424174241745,61.92068553957844],[-42.40302403024029,61.91224265322904],[-42.341823418234185,61.89704545780009],[-42.22662226622265,61.88860257145066],[-42.22662226622265,61.88353683964101],[-42.23742237422374,61.88353683964101],[-42.24462244622447,61.881848262371136],[-42.248222482224804,61.87847110783139],[-42.25542255422553,61.87002822148196],[-42.190621906219064,61.87002822148196],[-42.197821978219764,61.86158533513256],[-42.20502205022049,61.85145387151326],[-42.21942219422195,61.83456809881443],[-42.25542255422553,61.8176823261156],[-42.26262262622626,61.810928017036076],[-42.28062280622805,61.792353667067346],[-42.298622986229844,61.778845048908295],[-42.316623166231665,61.76871358528899],[-42.341823418234185,61.76027069893959],[-42.37062370623707,61.75351638986007],[-42.55782557825577,61.73663061716124],[-42.59022590225902,61.738319194431114],[-42.601026010260085,61.74169634897089],[-42.6370263702637,61.76027069893959],[-42.683826838268374,61.77715647163842],[-42.694626946269466,61.783910780717946],[-42.709027090270894,61.7889765125276],[-42.727027270272686,61.79404224433725],[-42.74142741427414,61.7991079761469],[-42.752227522275206,61.82105948065535],[-42.76662766627666,61.82105948065535],[-42.784627846278454,61.8176823261156],[-42.84222842228422,61.797419398877],[-42.860228602286014,61.783910780717946],[-42.871028710287106,61.770402162558895],[-42.85662856628565,61.770402162558895],[-42.76662766627666,61.78728793525772],[-42.619026190261906,61.71130195811298],[-42.593825938259386,61.70454764903346],[-42.42102421024211,61.69948191722381],[-42.3850238502385,61.70454764903346],[-42.32022320223203,61.72649915354194],[-42.28422284222842,61.72818773081181],[-42.25542255422553,61.71130195811298],[-42.38142381423813,61.68766187633463],[-42.392223922239225,61.68259614452498],[-42.399423994239925,61.67415325817558],[-42.392223922239225,61.6606446400165],[-42.3850238502385,61.65726748547675],[-42.35622356223561,61.65726748547675],[-42.33462334623346,61.64882459912732],[-42.32022320223203,61.63700455823815],[-42.323823238232364,61.62518451734897],[-42.349023490234885,61.61505305372967],[-42.374223742237405,61.61674163099957],[-42.424624246242445,61.6336274036984],[-42.45342453424533,61.63531598096827],[-42.41382413824138,61.626873094618844],[-42.392223922239225,61.62011878553932],[-42.37782377823777,61.60829874465014],[-42.467824678246785,61.61505305372967],[-42.4390243902439,61.58634724014166],[-42.42822428224281,61.569461467442835],[-42.43542435424354,61.561018581093435],[-42.52902529025289,61.561018581093435],[-42.61182611826118,61.547509962934356],[-42.6370263702637,61.54919854020426],[-42.683826838268374,61.55933000382353],[-42.86742867428674,61.564395735633184],[-42.94662946629467,61.591412971951314],[-43.00063000630007,61.59985585830074],[-43.05103051030511,61.60323301284049],[-43.08343083430833,61.59479012649109],[-42.96462964629646,61.56270715836331],[-42.94662946629467,61.55088711747413],[-42.93222932229321,61.53062419023553],[-42.853028530285286,61.54413280839461],[-42.79182791827918,61.528935612965654],[-42.52902529025289,61.534001344775305],[-42.53982539825398,61.49685264483787],[-42.54702547025471,61.485032603948696],[-42.52902529025289,61.471523985789645],[-42.52182521825219,61.45294963582094],[-42.5110251102511,61.436063863122115],[-42.47862478624785,61.430998131312464],[-42.467824678246785,61.43437528585221],[-42.4390243902439,61.444506749471515],[-42.424624246242445,61.444506749471515],[-42.417424174241745,61.43944101766186],[-42.40302403024029,61.41580093588351],[-42.417424174241745,61.40229231772446],[-42.43542435424354,61.41242378134376],[-42.45342453424533,61.414112358613636],[-42.467824678246785,61.41073520407386],[-42.47862478624785,61.40229231772446],[-42.48222482224821,61.400603740454585],[-42.493024930249305,61.38371796775576],[-42.500225002250005,61.378652235946106],[-42.50382503825037,61.3769636586762],[-42.50742507425073,61.373586504136455],[-42.500225002250005,61.368520772326804],[-42.500225002250005,61.36176646324728],[-42.52902529025289,61.35670073143763],[-42.57942579425793,61.35501215416775],[-42.593825938259386,61.351634999627976],[-42.60462604626045,61.3482578450882],[-42.60462604626045,61.34150353600867],[-42.58302583025829,61.34150353600867],[-42.57942579425793,61.33474922692915],[-42.59022590225902,61.32630634057972],[-42.60822608226081,61.3212406087701],[-42.67302673026731,61.319552031500194],[-42.6910269102691,61.31448629969054],[-42.676626766267646,61.30773199061102],[-42.66222662226622,61.30435483607127],[-42.64782647826479,61.30097768153149],[-42.62982629826297,61.30097768153149],[-42.62982629826297,61.29422337245197],[-42.709027090270894,61.29253479518209],[-42.85662856628565,61.338126381468925],[-42.93222932229321,61.34150353600867],[-42.96822968229682,61.338126381468925],[-43.20943209432093,61.351634999627976],[-43.24903249032491,61.34150353600867],[-43.22023220232202,61.33137207238937],[-42.885428854288534,61.30942056788092],[-42.77382773827739,61.27902617702301],[-42.77382773827739,61.27227186794349],[-42.80622806228061,61.26720613613384],[-42.845828458284586,61.26720613613384],[-42.885428854288534,61.26382898159406],[-42.90702907029069,61.24525463162536],[-42.795427954279546,61.24694320889526],[-42.770227702277026,61.25538609524466],[-42.74862748627487,61.26889471340371],[-42.719827198271986,61.26889471340371],[-42.66582665826658,61.25876324978444],[-42.658626586265854,61.25876324978444],[-42.66222662226622,61.25538609524466],[-42.66582665826658,61.24525463162536],[-42.64782647826479,61.24525463162536],[-42.64062640626406,61.23850032254583],[-42.63342633426333,61.22836885892653],[-42.619026190261906,61.22499170438678],[-42.60462604626045,61.22330312711688],[-42.593825938259386,61.21823739530723],[-42.58302583025829,61.20979450895783],[-42.575825758257565,61.19797446806865],[-42.734227342273414,61.19797446806865],[-42.74142741427414,61.194597313528874],[-42.75582755827557,61.186154427179474],[-42.759427594275934,61.1844658499096],[-42.770227702277026,61.1844658499096],[-42.79182791827918,61.18953158171922],[-42.820628206282066,61.192908736259],[-42.84942849428495,61.20641735441805],[-42.86382863828638,61.2114830862277],[-42.910629106291054,61.21654881803735],[-42.935829358293574,61.21486024076748],[-42.94662946629467,61.20810593168795],[-42.95742957429573,61.204728777148176],[-43.18063180631805,61.21823739530723],[-43.18063180631805,61.2114830862277],[-43.1410314103141,61.2114830862277],[-42.871028710287106,61.1743343862903],[-42.835028350283494,61.16082576813122],[-42.7630276302763,61.14393999543239],[-42.745027450274506,61.142251418162516],[-42.734227342273414,61.14393999543239],[-42.71622716227162,61.150694304511944],[-42.70542705427053,61.14900572724204],[-42.69822698226983,61.14562857270229],[-42.694626946269466,61.13887426362277],[-42.694626946269466,61.132119954543214],[-42.6910269102691,61.128742800003465],[-42.62982629826297,61.10847987276486],[-42.62982629826297,61.101725563685335],[-42.78102781027809,61.10847987276486],[-42.853028530285286,61.12198849092394],[-42.8890288902889,61.123677068193814],[-42.90702907029069,61.11185702730464],[-42.92502925029251,61.10341414095521],[-43.16983169831698,61.132119954543214],[-43.20583205832057,61.12198849092394],[-43.22383223832239,61.128742800003465],[-43.30303303033031,61.12198849092394],[-43.515435154351536,61.14731714997217],[-43.573035730357304,61.14562857270229],[-43.61263612636125,61.128742800003465],[-43.58023580235803,61.11861133638416],[-43.50823508235081,61.12536564546369],[-43.45783457834577,61.115234181844386],[-43.414634146341456,61.11692275911429],[-43.40023400234003,61.11185702730464],[-43.38583385833857,61.10341414095521],[-43.364233642336416,61.10003698641546],[-43.162631626316255,61.110168450034735],[-43.15903159031589,61.10847987276486],[-43.15543155431553,61.10510271822511],[-43.15183151831519,61.096659831875684],[-43.14823148231483,61.09497125460581],[-43.09783097830979,61.09497125460581],[-43.10503105031049,61.101725563685335],[-43.07623076230763,61.09159410006603],[-43.0150301503015,61.088216945526284],[-42.986229862298615,61.08146263644673],[-43.00063000630007,61.0645768637479],[-43.00783007830077,61.05782255466838],[-43.0150301503015,61.05444540012863],[-42.98982989829898,61.05444540012863],[-42.9430294302943,61.06964259555755],[-42.91422914229142,61.07301975009733],[-42.86382863828638,61.071331172827456],[-42.84222842228422,61.066265441017805],[-42.82422824228243,61.05444540012863],[-42.802628026280246,61.0645768637479],[-42.770227702277026,61.06964259555755],[-42.734227342273414,61.06964259555755],[-42.70542705427053,61.05951113193828],[-42.72342723427235,61.0561339773985],[-42.74142741427414,61.05444540012863],[-42.759427594275934,61.052756822858726],[-42.76662766627666,61.04093678196955],[-42.74862748627487,61.0358710501599],[-42.70542705427053,61.0358710501599],[-42.68742687426874,61.03249389562015],[-42.67302673026731,61.025739586540624],[-42.669426694266946,61.017296700191196],[-42.676626766267646,61.01054239111167],[-42.6910269102691,61.00547665930202],[-42.6910269102691,60.998722350222494],[-42.66582665826658,60.998722350222494],[-42.658626586265854,60.998722350222494],[-42.69822698226983,60.981836577523666],[-42.73782737827378,61.00041092749237],[-42.77382773827739,61.02236243200085],[-42.802628026280246,61.02067385473097],[-42.80622806228061,61.01054239111167],[-42.80622806228061,61.003788082032145],[-42.79902799027991,60.99534519568272],[-42.79182791827918,60.98859088660319],[-42.78822788227882,60.98014800025379],[-42.79182791827918,60.97170511390436],[-42.79902799027991,60.963262227554964],[-42.802628026280246,60.954819341205535],[-42.79182791827918,60.94806503212601],[-42.727027270272686,60.93117925942718],[-42.979029790297886,60.89571913675965],[-42.979029790297886,60.88896482768013],[-43.02583025830259,60.88221051860057],[-43.20943209432093,60.91598206399823],[-43.29943299432995,60.919359218538006],[-43.42903429034291,60.94806503212601],[-43.46143461434613,60.95144218666579],[-43.47583475834759,60.94806503212601],[-43.48303483034829,60.941310723046485],[-43.47943479434795,60.919359218538006],[-43.47583475834759,60.91091633218858],[-43.46863468634686,60.91091633218858],[-43.45783457834577,60.914293486728354],[-43.447034470344704,60.91598206399823],[-43.13383133831337,60.8805219413307],[-43.10503105031049,60.861947591362],[-43.112231122311215,60.86025901409212],[-43.11583115831158,60.85857043682222],[-43.11943119431194,60.85519328228247],[-43.12303123031231,60.84843897320292],[-43.09423094230942,60.856881859552345],[-43.061830618306175,60.85857043682222],[-42.885428854288534,60.84506181866317],[-42.85662856628565,60.834930355043866],[-42.86382863828638,60.82817604596434],[-42.84942849428495,60.821421736884815],[-42.835028350283494,60.82311031415469],[-42.8170281702817,60.82648746869447],[-42.80622806228061,60.82648746869447],[-42.784627846278454,60.824798891424564],[-42.784627846278454,60.81466742780526],[-42.802628026280246,60.80453596418599],[-42.82422824228243,60.799470232376336],[-42.92142921429215,60.79271592329681],[-43.12303123031231,60.82817604596434],[-43.50463504635047,60.84843897320292],[-43.52623526235263,60.84168466412339],[-43.515435154351536,60.83324177777399],[-43.50463504635047,60.829864623234215],[-43.41103411034109,60.82817604596434],[-43.396633966339664,60.824798891424564],[-43.36783367833678,60.81466742780526],[-43.34983349833499,60.81297885053539],[-43.295832958329584,60.81129027326551],[-43.28143281432813,60.80622454145586],[-43.27423274232743,60.799470232376336],[-43.27063270632706,60.79271592329681],[-43.27423274232743,60.78765019148716],[-43.27423274232743,60.78596161421726],[-43.263432634326335,60.780895882407634],[-43.24903249032491,60.77920730513773],[-43.23463234632345,60.78258445967751],[-43.22383223832239,60.789338768757034],[-43.19863198631987,60.79778165510646],[-43.09063090630906,60.799470232376336],[-42.97182971829719,60.78596161421726],[-42.961029610296094,60.78258445967751],[-42.928629286292846,60.767387264248555],[-42.85662856628565,60.75725580062925],[-42.82422824228243,60.745435759740076],[-42.80622806228061,60.745435759740076],[-42.795427954279546,60.74712433700998],[-42.784627846278454,60.74712433700998],[-42.770227702277026,60.7353042961208],[-42.777427774277726,60.726861409771374],[-42.835028350283494,60.68464697802432],[-42.878228782287806,60.66269547351584],[-42.93222932229321,60.65087543262666],[-42.986229862298615,60.64918685535676],[-43.061830618306175,60.66607262805559],[-43.27423274232743,60.67620409167489],[-43.25983259832597,60.66100689624594],[-43.24183241832418,60.655941164436314],[-43.19863198631987,60.655941164436314],[-42.90702907029069,60.620481041768755],[-42.90702907029069,60.62892392811818],[-42.92502925029251,60.63567823719771],[-42.92502925029251,60.642432546277234],[-42.89982899828999,60.64918685535676],[-42.853028530285286,60.67113835986524],[-42.82422824228243,60.677892668944764],[-42.802628026280246,60.68802413256407],[-42.79182791827918,60.68971270983397],[-42.74862748627487,60.68971270983397],[-42.76662766627666,60.67620409167489],[-42.8170281702817,60.65087543262666],[-42.827828278282766,60.639055391737486],[-42.82422824228243,60.61879246449888],[-42.827828278282766,60.612038155419356],[-42.8890288902889,60.60190669180005],[-43.14463144631446,60.60866100087958],[-43.14463144631446,60.60190669180005],[-43.10863108631085,60.59177522818075],[-42.979029790297886,60.593463805450654],[-42.86742867428674,60.579955187291574],[-42.827828278282766,60.579955187291574],[-42.845828458284586,60.5681351464024],[-42.86742867428674,60.5681351464024],[-42.8890288902889,60.571512300942175],[-42.910629106291054,60.57488945548192],[-42.928629286292846,60.56982372367227],[-42.961029610296094,60.55124937370357],[-42.97542975429755,60.54618364189392],[-43.14463144631446,60.54618364189392],[-43.12663126631267,60.52929786919509],[-43.09423094230942,60.52423213738544],[-43.02943029430293,60.52592071465534],[-43.04383043830438,60.50734636468661],[-43.07623076230763,60.50228063287699],[-43.10863108631085,60.50565778741674],[-43.16983169831698,60.527609291925216],[-43.18423184231841,60.53774075554452],[-43.19143191431914,60.549560796433695],[-43.19863198631987,60.552937950973444],[-43.23463234632345,60.544495064624044],[-43.24543245432454,60.54280648735417],[-43.27423274232743,60.558003682783095],[-43.29943299432995,60.558003682783095],[-43.31023310233101,60.54618364189392],[-43.27423274232743,60.52592071465534],[-43.162631626316255,60.495526323797435],[-43.14463144631446,60.47864055109861],[-43.22743227432275,60.47019766474921],[-43.515435154351536,60.53436360100474],[-43.54423544235442,60.544495064624044],[-43.56943569435694,60.559692260053],[-43.64143641436414,60.62723535084831],[-43.66663666636666,60.65425258716641],[-43.66663666636666,60.67620409167489],[-43.67023670236702,60.68971270983397],[-43.67743677436775,60.709975637072546],[-43.68823688236881,60.7234842552316],[-43.70983709837097,60.7150413688822],[-43.71343713437133,60.696467018913495],[-43.70263702637027,60.67282693713514],[-43.68823688236881,60.64918685535676],[-43.62703627036271,60.56982372367227],[-43.61983619836198,60.559692260053],[-43.65943659436593,60.552937950973444],[-43.67743677436775,60.55462652824335],[-43.70983709837097,60.56475799186265],[-44.084240842408406,60.593463805450654],[-44.109441094410926,60.60528384633983],[-44.14544145441454,60.639055391737486],[-44.17064170641706,60.65087543262666],[-44.192241922419214,60.642432546277234],[-44.185041850418486,60.62892392811818],[-44.167041670416694,60.615415309959104],[-44.159841598415966,60.60528384633983],[-44.19944199441994,60.60190669180005],[-44.16344163441633,60.576578032751826],[-44.026640266402666,60.571512300942175],[-43.97263972639726,60.563069414592746],[-43.94383943839438,60.55462652824335],[-43.87903879038791,60.54618364189392],[-43.850238502385025,60.53942933281439],[-43.82863828638287,60.52592071465534],[-43.81783817838178,60.51072351922639],[-43.807038070380685,60.49383774652756],[-43.79623796237962,60.47864055109861],[-43.79623796237962,60.47188624201908],[-43.825038250382505,60.455000469320254],[-43.83583835838357,60.4499347375106],[-43.80343803438035,60.44318042843108],[-43.78543785437853,60.451623314780505],[-43.78183781837819,60.47188624201908],[-43.79623796237962,60.49890347833721],[-43.7710377103771,60.522543560115565],[-43.724237242372425,60.52592071465534],[-43.42903429034291,60.48370628290826],[-43.339033390333896,60.45837762386003],[-43.32823328233283,60.455000469320254],[-43.321033210332104,60.446557582970854],[-43.313833138331375,60.438114696621426],[-43.32463324633247,60.433048964811775],[-43.34263342633426,60.4313603875419],[-43.465034650346496,60.394211687604496],[-43.48663486634865,60.38239164671529],[-43.47943479434795,60.38070306944542],[-43.472234722347224,60.37901449217554],[-43.46143461434613,60.36888302855624],[-43.540635406354056,60.348620101317664],[-43.56943569435694,60.331734328618836],[-43.58023580235803,60.326668596809185],[-43.591035910359096,60.321602864999534],[-43.598235982359824,60.313159978650106],[-43.591035910359096,60.30640566957058],[-43.58023580235803,60.30978282411036],[-43.565835658356576,60.31653713318988],[-43.55503555035551,60.321602864999534],[-43.52983529835299,60.32498001953928],[-43.45423454234543,60.35537441039719],[-43.42543425434255,60.35368583312729],[-43.38223382233821,60.33680006042846],[-43.35703357033569,60.33342290588871],[-43.364233642336416,60.34186579223811],[-43.38583385833857,60.35537441039719],[-43.3930339303393,60.36044014220684],[-43.40023400234003,60.37394876036589],[-43.40023400234003,60.37732591490567],[-43.3930339303393,60.37732591490567],[-43.36783367833678,60.39083453306472],[-43.313833138331375,60.40096599668402],[-43.17703177031771,60.39927741941412],[-43.17343173431735,60.39590026487437],[-43.187831878318775,60.39083453306472],[-43.213032130321295,60.389145955794845],[-43.15543155431553,60.36888302855624],[-43.15183151831519,60.36550587401649],[-43.15543155431553,60.362128719476715],[-43.162631626316255,60.357062987667064],[-43.16983169831698,60.35537441039719],[-43.20583205832057,60.35537441039719],[-43.32463324633247,60.38070306944542],[-43.35703357033569,60.375637337635766],[-43.32823328233283,60.35030867858754],[-43.321033210332104,60.34693152404776],[-43.30663306633065,60.35030867858754],[-43.295832958329584,60.35368583312729],[-43.28143281432813,60.35537441039719],[-43.16623166231662,60.313159978650106],[-43.15183151831519,60.326668596809185],[-43.137431374313735,60.326668596809185],[-43.10503105031049,60.313159978650106],[-43.11583115831158,60.29796278322118],[-43.13383133831337,60.286142742332004],[-43.15183151831519,60.28107701052235],[-43.18063180631805,60.27938843325245],[-43.112231122311215,60.2658798150934],[-43.09063090630906,60.25912550601387],[-43.09783097830979,60.24392831058492],[-43.112231122311215,60.23886257877527],[-43.20943209432093,60.250682619664445],[-43.22743227432275,60.25912550601387],[-43.24903249032491,60.245616887854794],[-43.30303303033031,60.228731115155966],[-43.32823328233283,60.21691107426679],[-43.28503285032849,60.21184534245714],[-43.15543155431553,60.215222496996915],[-43.12303123031231,60.19664814702821],[-43.13383133831337,60.19833672429809],[-43.14463144631446,60.19664814702821],[-43.15543155431553,60.19495956975834],[-43.16623166231662,60.18989383794869],[-43.12303123031231,60.183139528869134],[-43.10863108631085,60.183139528869134],[-43.11943119431194,60.17300806524986],[-43.12303123031231,60.16794233344021],[-43.13023130231301,60.16287660163056],[-43.10863108631085,60.15612229255103],[-43.137431374313735,60.147679406201604],[-43.162631626316255,60.15443371528113],[-43.18423184231841,60.166253756170306],[-43.20583205832057,60.16963091071008],[-43.20583205832057,60.16287660163056],[-43.1950319503195,60.15443371528113],[-43.1950319503195,60.14599082893173],[-43.19863198631987,60.139236519852204],[-43.213032130321295,60.13585936531243],[-43.19863198631987,60.13417078804255],[-43.16983169831698,60.12403932442325],[-43.15543155431553,60.12235074715338],[-43.14823148231483,60.12403932442325],[-43.1410314103141,60.1291050562329],[-43.13023130231301,60.130793633502776],[-43.11583115831158,60.1291050562329],[-43.10503105031049,60.12235074715338],[-43.09423094230942,60.1105307062642],[-43.087030870308695,60.09871066537502],[-43.10143101431015,60.09364493356537],[-43.112231122311215,60.09195635629547],[-43.13023130231301,60.08351346994607],[-43.137431374313735,60.08013631540629],[-43.162631626316255,60.081824892676195],[-43.24903249032491,60.09364493356537],[-43.31023310233101,60.095333510835246],[-43.339033390333896,60.10208781991477],[-43.364233642336416,60.11559643807385],[-43.389433894338936,60.10715355172442],[-43.48663486634865,60.13585936531243],[-43.55503555035551,60.13417078804255],[-43.58743587435873,60.1375479425823],[-43.60543605436055,60.152745138011255],[-43.60543605436055,60.16287660163056],[-43.61263612636125,60.174696642519734],[-43.61983619836198,60.18482810613904],[-43.623436234362345,60.18989383794869],[-43.64143641436414,60.19158241521856],[-43.648636486364865,60.18482810613904],[-43.6450364503645,60.166253756170306],[-43.65943659436593,60.15443371528113],[-43.69543695436954,60.15612229255103],[-43.76023760237601,60.16963091071008],[-43.78183781837819,60.16287660163056],[-43.807038070380685,60.16118802436068],[-43.94023940239401,60.174696642519734],[-43.99063990639905,60.19158241521856],[-44.141841418414174,60.183139528869134],[-44.15624156241563,60.179762374329385],[-44.167041670416694,60.17300806524986],[-44.17064170641706,60.174696642519734],[-44.17424174241742,60.19664814702821],[-44.167041670416694,60.21184534245714],[-44.15624156241563,60.223665383346344],[-44.14544145441454,60.23210826969574],[-43.99423994239942,60.30640566957058],[-43.99423994239942,60.313159978650106],[-44.041040410404094,60.313159978650106],[-44.05544055440555,60.31991428772963],[-44.06264062640625,60.34186579223811],[-44.06264062640625,60.348620101317664],[-44.06264062640625,60.35537441039719],[-44.06264062640625,60.362128719476715],[-44.066240662406614,60.37226018309602],[-44.077040770407706,60.38239164671529],[-44.08784087840877,60.38745737852494],[-44.102241022410226,60.38745737852494],[-44.109441094410926,60.38239164671529],[-44.08784087840877,60.35030867858754],[-44.084240842408406,60.34186579223811],[-44.084240842408406,60.33342290588871],[-44.091440914409134,60.321602864999534],[-44.09864098640986,60.31147140138023],[-44.0950409504095,60.30640566957058],[-44.084240842408406,60.30302851503083],[-44.08784087840877,60.29289705141153],[-44.09864098640986,60.28276558779223],[-44.11304113041129,60.27938843325245],[-44.12384123841238,60.2760112787127],[-44.13824138241381,60.269256969633176],[-44.1490414904149,60.26081408328375],[-44.159841598415966,60.250682619664445],[-44.177841778417786,60.27938843325245],[-44.21384213842137,60.31147140138023],[-44.24984249842498,60.335111483158585],[-44.2750427504275,60.33342290588871],[-44.267842678426774,60.31653713318988],[-44.23184231842319,60.28276558779223],[-44.22464224642246,60.269256969633176],[-44.2210422104221,60.24899404239457],[-44.22464224642246,60.23210826969574],[-44.23904239042389,60.22535396061622],[-44.30384303843039,60.237174001505394],[-44.318243182431814,60.23886257877527],[-44.31464314643145,60.22535396061622],[-44.29664296642966,60.21184534245714],[-44.260642606426046,60.19664814702821],[-44.260642606426046,60.18989383794869],[-44.28944289442893,60.166253756170306],[-44.30744307443075,60.15612229255103],[-44.32904329043291,60.14936798347148],[-44.35424354243543,60.14936798347148],[-44.4010440104401,60.15612229255103],[-44.42624426244262,60.15612229255103],[-44.45864458644587,60.14599082893173],[-44.48024480244803,60.12403932442325],[-44.494644946449455,60.095333510835246],[-44.50184501845018,60.063250542707465],[-44.51624516245161,60.03961046092911],[-44.54864548645486,60.00921607007123],[-44.59184591845917,59.98895314283263],[-44.62424624246242,59.987264565562754],[-44.65664656646567,60.00246176099171],[-44.66744667446673,60.01597037915076],[-44.671046710467095,60.03623330638936],[-44.66384663846637,60.08857920175572],[-44.66744667446673,60.10715355172442],[-44.68904689046889,60.1003992426449],[-44.703447034470344,60.090267779025595],[-44.71064710647107,60.07507058359664],[-44.71424714247141,60.05311907908819],[-44.71424714247141,60.024413265500186],[-44.71424714247141,60.00752749280136],[-44.7250472504725,59.99908460645193],[-44.75744757447575,59.997396029182056],[-44.779047790477904,60.00246176099171],[-44.80064800648006,60.01597037915076],[-44.822248222482216,60.032856151849586],[-44.83664836648367,60.06493911997737],[-44.854648546485464,60.08689062448585],[-44.872648726487256,60.10715355172442],[-44.88704887048871,60.11559643807385],[-44.879848798487984,60.12403932442325],[-44.84384843848437,60.14936798347148],[-44.872648726487256,60.15443371528113],[-44.897848978489776,60.14599082893173],[-44.91944919449193,60.12741647896303],[-44.92664926649266,60.103776397184646],[-44.90864908649087,60.08351346994607],[-44.84384843848437,60.041299038198986],[-44.84384843848437,60.019347533690535],[-44.86904869048689,60.03623330638936],[-44.94104941049409,60.03116757457971],[-44.973449734497336,60.03961046092911],[-44.96264962649627,60.05311907908819],[-44.955449554495544,60.06662769724724],[-44.96984969849697,60.07338200632677],[-44.973449734497336,60.07338200632677],[-44.973449734497336,60.08013631540629],[-44.96984969849697,60.07844773813642],[-44.948249482494816,60.07338200632677],[-44.955449554495544,60.08351346994607],[-44.96984969849697,60.090267779025595],[-45.02025020250201,60.10546497445455],[-45.03825038250383,60.10715355172442],[-45.0490504905049,60.10546497445455],[-45.05265052650526,60.1003992426449],[-45.056250562505625,60.09702208810512],[-45.05985059850599,60.09364493356537],[-45.06705067050669,60.09702208810512],[-45.08865088650887,60.10546497445455],[-45.09945099450994,60.10715355172442],[-45.11745117451173,60.103776397184646],[-45.11385113851139,60.095333510835246],[-45.1030510305103,60.085202047215944],[-45.08865088650887,60.08013631540629],[-45.11025110251103,60.07000485178702],[-45.12825128251282,60.07000485178702],[-45.17145171451713,60.08689062448585],[-45.16065160651607,60.103776397184646],[-45.07065070650705,60.13585936531243],[-45.08865088650887,60.147679406201604],[-45.081450814508145,60.15612229255103],[-45.056250562505625,60.16118802436068],[-44.93384933849339,60.17300806524986],[-44.90864908649087,60.18145095159926],[-44.753847538475384,60.20509103337761],[-44.76104761047611,60.21859965153669],[-44.771847718477176,60.22197680607644],[-44.80064800648006,60.21691107426679],[-44.80784807848079,60.21353391972704],[-44.81864818648185,60.20846818791739],[-44.829448294482944,60.20509103337761],[-44.83664836648367,60.21184534245714],[-44.83664836648367,60.21691107426679],[-44.83304833048331,60.22535396061622],[-44.81504815048149,60.245616887854794],[-44.74304743047429,60.2743227014428],[-44.73584735847359,60.27938843325245],[-44.73584735847359,60.299651360491055],[-44.728647286472864,60.31484855592001],[-44.721447214472136,60.32835717407906],[-44.71064710647107,60.33848863769836],[-44.69264692646925,60.34186579223811],[-44.62784627846278,60.37394876036589],[-44.61704617046169,60.38576880125507],[-44.60984609846099,60.411097460303324],[-44.59184591845917,60.433048964811775],[-44.56304563045629,60.44824616024073],[-44.53064530645307,60.4499347375106],[-44.53424534245343,60.455000469320254],[-44.53424534245343,60.45837762386003],[-44.53784537845377,60.46175477839978],[-44.54144541445413,60.465131932939556],[-44.51264512645125,60.47526339655886],[-44.50184501845018,60.482017705638384],[-44.50184501845018,60.49214916925769],[-44.49104491044909,60.49890347833721],[-44.46584465844657,60.52592071465534],[-44.4730447304473,60.53774075554452],[-44.4730447304473,60.54787221916382],[-44.4730447304473,60.559692260053],[-44.46584465844657,60.5681351464024],[-44.5270452704527,60.49890347833721],[-44.55224552245522,60.49383774652756],[-44.57744577445774,60.48032912836851],[-44.61704617046169,60.44318042843108],[-44.64224642246421,60.40940888303342],[-44.66024660246603,60.39083453306472],[-44.67464674646746,60.38239164671529],[-44.69984699846998,60.37732591490567],[-44.728647286472864,60.36381729674659],[-44.75744757447575,60.34693152404776],[-44.77544775447754,60.326668596809185],[-44.797047970479696,60.29796278322118],[-44.81504815048149,60.28951989687175],[-44.84024840248401,60.286142742332004],[-44.85824858248583,60.277699855982576],[-44.86904869048689,60.26081408328375],[-44.872648726487256,60.24055115604517],[-44.879848798487984,60.22535396061622],[-44.897848978489776,60.21353391972704],[-44.95184951849518,60.19833672429809],[-44.96984969849697,60.19664814702821],[-45.056250562505625,60.201713878837865],[-45.08505085050851,60.19664814702821],[-45.11385113851139,60.17638521978961],[-45.14265142651425,60.15105656074138],[-45.1750517505175,60.13417078804255],[-45.207452074520745,60.14261367439195],[-45.19665196651965,60.15612229255103],[-45.17145171451713,60.17131948797996],[-45.16065160651607,60.183139528869134],[-45.17865178651786,60.179762374329385],[-45.19665196651965,60.174696642519734],[-45.207452074520745,60.17638521978961],[-45.20025200252002,60.19664814702821],[-45.18585185851859,60.21184534245714],[-45.14265142651425,60.250682619664445],[-45.12825128251282,60.25912550601387],[-45.11385113851139,60.26250266055362],[-45.09225092250921,60.28276558779223],[-45.081450814508145,60.286142742332004],[-45.06705067050669,60.28783131960188],[-45.00225002250022,60.31147140138023],[-44.95184951849518,60.31991428772963],[-44.92664926649266,60.326668596809185],[-44.94104941049409,60.34693152404776],[-44.94104941049409,60.36381729674659],[-44.92664926649266,60.38239164671529],[-44.90864908649087,60.39927741941412],[-44.905049050490504,60.40772030576355],[-44.897848978489776,60.42629465573225],[-44.89064890648905,60.43642611935155],[-44.88344883448835,60.44486900570095],[-44.872648726487256,60.455000469320254],[-44.84384843848437,60.47188624201908],[-44.84384843848437,60.47864055109861],[-44.89064890648905,60.46850908747933],[-44.94104941049409,60.465131932939556],[-44.95184951849518,60.47019766474921],[-44.93744937449375,60.48370628290826],[-44.81504815048149,60.55631510551322],[-44.81144811448115,60.56475799186265],[-44.804248042480424,60.56982372367227],[-44.78984789847897,60.57488945548192],[-44.78264782647827,60.579955187291574],[-44.77544775447754,60.59008665091088],[-44.76824768247681,60.612038155419356],[-44.76104761047611,60.620481041768755],[-44.771847718477176,60.655941164436314],[-44.7250472504725,60.68633555529419],[-44.62424624246242,60.731927141581025],[-44.62424624246242,60.7353042961208],[-44.62424624246242,60.736992873390676],[-44.62784627846278,60.736992873390676],[-44.63144631446315,60.73868145066055],[-44.63864638646385,60.73868145066055],[-44.71424714247141,60.7234842552316],[-44.728647286472864,60.7150413688822],[-44.73944739447393,60.69477844164359],[-44.804248042480424,60.68464697802432],[-44.81504815048149,60.67282693713514],[-44.82584825848258,60.639055391737486],[-44.84384843848437,60.60190669180005],[-44.85824858248583,60.5867094963711],[-44.87624876248762,60.56982372367227],[-44.998649986499856,60.490460591987784],[-45.04545045450453,60.47188624201908],[-45.14265142651425,60.45837762386003],[-45.18585185851859,60.44318042843108],[-45.21465214652147,60.438114696621426],[-45.23985239852399,60.4414918511612],[-45.26145261452615,60.451623314780505],[-45.283052830528305,60.465131932939556],[-45.26865268652685,60.47188624201908],[-45.24705247052469,60.47864055109861],[-45.24705247052469,60.48539486017816],[-45.26865268652685,60.49383774652756],[-45.26145261452615,60.50565778741674],[-45.24345243452433,60.514100673766166],[-45.23625236252363,60.522543560115565],[-45.2290522905229,60.53942933281439],[-45.21825218252181,60.55631510551322],[-45.20385203852038,60.56982372367227],[-45.18585185851859,60.57488945548192],[-45.16425164251643,60.5867094963711],[-45.081450814508145,60.64412112354711],[-45.06345063450635,60.66269547351584],[-45.09225092250921,60.655941164436314],[-45.17145171451713,60.620481041768755],[-45.20025200252002,60.633989659927835],[-45.21105211052111,60.63567823719771],[-45.22185221852217,60.633989659927835],[-45.23625236252363,60.62892392811818],[-45.23985239852399,60.62385819630853],[-45.21465214652147,60.615415309959104],[-45.21105211052111,60.60021811453018],[-45.21825218252181,60.585020919101225],[-45.2290522905229,60.57488945548192],[-45.24345243452433,60.585020919101225],[-45.25425254252542,60.59177522818075],[-45.26505265052651,60.59177522818075],[-45.27585275852758,60.579955187291574],[-45.27585275852758,60.576578032751826],[-45.27585275852758,60.56982372367227],[-45.27585275852758,60.56138083732287],[-45.283052830528305,60.552937950973444],[-45.29025290252903,60.549560796433695],[-45.31905319053189,60.54111791008427],[-45.35145351453514,60.53436360100474],[-45.39465394653945,60.51578925103604],[-45.43785437854379,60.509034941956514],[-45.49545495454953,60.49214916925769],[-45.484654846548466,60.50565778741674],[-45.459454594545946,60.52085498284569],[-45.434254342543426,60.53436360100474],[-45.416254162541634,60.53942933281439],[-45.39825398253981,60.54787221916382],[-45.38745387453875,60.56982372367227],[-45.38025380253802,60.59177522818075],[-45.37305373053729,60.60866100087958],[-45.32625326253262,60.633989659927835],[-45.16785167851677,60.67620409167489],[-45.12825128251282,60.701532750723146],[-45.11385113851139,60.718418523421974],[-45.12105121051209,60.7251728325015],[-45.14625146251461,60.72010710069185],[-45.21465214652147,60.68464697802432],[-45.23985239852399,60.677892668944764],[-45.308253082530825,60.67620409167489],[-45.31545315453155,60.68633555529419],[-45.31545315453155,60.70828705980267],[-45.32265322653225,60.7251728325015],[-45.35145351453514,60.7251728325015],[-45.37305373053729,60.70828705980267],[-45.37305373053729,60.68802413256407],[-45.365853658536594,60.66776120532549],[-45.37305373053729,60.64918685535676],[-45.39465394653945,60.64074396900736],[-45.4270542705427,60.63567823719771],[-45.45585455854558,60.62892392811818],[-45.466654666546674,60.60866100087958],[-45.466654666546674,60.58164376456148],[-45.466654666546674,60.57488945548192],[-45.47745477454774,60.56644656913252],[-45.4810548105481,60.571512300942175],[-45.484654846548466,60.58164376456148],[-45.48825488254883,60.588398073641],[-45.50265502655026,60.588398073641],[-45.509855098550986,60.58333234183135],[-45.517055170551714,60.5681351464024],[-45.517055170551714,60.563069414592746],[-45.51345513455135,60.55124937370357],[-45.517055170551714,60.54618364189392],[-45.52065520655205,60.54280648735417],[-45.52785527855278,60.536052178274616],[-45.53865538655387,60.52423213738544],[-45.55665556655566,60.51241209649626],[-45.56385563855639,60.50565778741674],[-45.567455674556754,60.495526323797435],[-45.567455674556754,60.48539486017816],[-45.57105571055709,60.47526339655886],[-45.585455854558546,60.47188624201908],[-45.592655926559274,60.47526339655886],[-45.59625596255961,60.48370628290826],[-45.59625596255961,60.495526323797435],[-45.59625596255961,60.50565778741674],[-45.60345603456034,60.51072351922639],[-45.61425614256143,60.52085498284569],[-45.61425614256143,60.53098644646499],[-45.592655926559274,60.53267502373487],[-45.592655926559274,60.53942933281439],[-45.610656106561066,60.53774075554452],[-45.643056430564314,60.527609291925216],[-45.65745657456574,60.52592071465534],[-45.675456754567534,60.53098644646499],[-45.66465664656647,60.54111791008427],[-45.62145621456213,60.563069414592746],[-45.6070560705607,60.563069414592746],[-45.59625596255961,60.56644656913252],[-45.592655926559274,60.579955187291574],[-45.59625596255961,60.588398073641],[-45.6070560705607,60.59515238272053],[-45.62145621456213,60.60021811453018],[-45.63225632256322,60.60190669180005],[-45.62145621456213,60.588398073641],[-45.625056250562494,60.576578032751826],[-45.63945639456395,60.56982372367227],[-45.68985689856899,60.56644656913252],[-45.700657006570054,60.5681351464024],[-45.70785707857078,60.571512300942175],[-45.72225722257221,60.585020919101225],[-45.7330573305733,60.588398073641],[-45.72945729457294,60.593463805450654],[-45.6790567905679,60.620481041768755],[-45.64665646656465,60.63061250538806],[-45.63225632256322,60.63736681446758],[-45.625056250562494,60.64918685535676],[-45.6790567905679,60.64074396900736],[-45.68625686256863,60.642432546277234],[-45.68625686256863,60.63567823719771],[-45.75465754657546,60.633989659927835],[-45.769057690576915,60.63230108265793],[-45.78705787057871,60.62554677357841],[-45.801458014580135,60.612038155419356],[-45.80865808658086,60.5968409599904],[-45.80865808658086,60.5867094963711],[-45.801458014580135,60.576578032751826],[-45.79785797857977,60.563069414592746],[-45.801458014580135,60.55124937370357],[-45.81585815858159,60.552937950973444],[-45.826658266582655,60.563069414592746],[-45.83025830258302,60.5681351464024],[-45.84825848258481,60.56644656913252],[-45.851858518585175,60.559692260053],[-45.851858518585175,60.55124937370357],[-45.8590585905859,60.53942933281439],[-45.86625866258663,60.522543560115565],[-45.87345873458733,60.51916640557582],[-45.88065880658806,60.51916640557582],[-45.88785887858879,60.52423213738544],[-45.89145891458915,60.52929786919509],[-45.88425884258842,60.53942933281439],[-45.89145891458915,60.55124937370357],[-45.90945909459094,60.571512300942175],[-45.92385923859237,60.576578032751826],[-45.96345963459635,60.576578032751826],[-45.98145981459814,60.579955187291574],[-45.90945909459094,60.60528384633983],[-45.89145891458915,60.615415309959104],[-45.88065880658806,60.61372673268923],[-45.844658446584475,60.62723535084831],[-45.80865808658086,60.63230108265793],[-45.76545765457655,60.65256400989654],[-45.743857438574395,60.655941164436314],[-45.70425704257042,60.66100689624594],[-45.65745657456574,60.67113835986524],[-45.610656106561066,60.68633555529419],[-45.57825578255782,60.70322132799302],[-45.6070560705607,60.71166421434242],[-45.643056430564314,60.701532750723146],[-45.6790567905679,60.68464697802432],[-45.71145711457115,60.67620409167489],[-45.78705787057871,60.677892668944764],[-45.82305823058229,60.682958400754416],[-45.8590585905859,60.69815559618337],[-45.84105841058411,60.70322132799302],[-45.801458014580135,60.701532750723146],[-45.78345783457834,60.70322132799302],[-45.769057690576915,60.71166421434242],[-45.73665736657367,60.731927141581025],[-45.72225722257221,60.73868145066055],[-45.57825578255782,60.767387264248555],[-45.57825578255782,60.772452996058206],[-45.610656106561066,60.772452996058206],[-45.625056250562494,60.77414157332808],[-45.625056250562494,60.77920730513773],[-45.62865628656286,60.78427303694738],[-45.625056250562494,60.78596161421726],[-45.58185581855818,60.799470232376336],[-45.574655746557454,60.799470232376336],[-45.5530555305553,60.80453596418599],[-45.53865538655387,60.816356005075164],[-45.524255242552414,60.829864623234215],[-45.509855098550986,60.84168466412339],[-45.491854918549194,60.84506181866317],[-45.459454594545946,60.85012755047282],[-45.44505445054449,60.85857043682222],[-45.41985419854197,60.88221051860057],[-45.41265412654127,60.883899095870476],[-45.39465394653945,60.88896482768013],[-45.38745387453875,60.892341982219875],[-45.37665376653766,60.89740771402953],[-45.30465304653046,60.90416202310905],[-45.257852578525785,60.90247344583918],[-45.25425254252542,60.90753917764883],[-45.26505265052651,60.919359218538006],[-45.27945279452794,60.93117925942718],[-45.29745297452973,60.93793356850671],[-45.31545315453155,60.932867836697056],[-45.32985329853298,60.92611352761753],[-45.34785347853477,60.922736373077754],[-45.365853658536594,60.93117925942718],[-45.340653406534074,60.94299930031636],[-45.333453334533345,60.94806503212601],[-45.32985329853298,60.95650791847541],[-45.32985329853298,60.968327959364615],[-45.32985329853298,60.98014800025379],[-45.333453334533345,60.985213732063414],[-45.3550535505355,60.99196804114297],[-45.37665376653766,61.003788082032145],[-45.39465394653945,61.01054239111167],[-45.41985419854197,60.998722350222494],[-45.416254162541634,60.990279463873065],[-45.409054090540906,60.985213732063414],[-45.39465394653945,60.97508226844414],[-45.38745387453875,60.963262227554964],[-45.39465394653945,60.95650791847541],[-45.40545405454054,60.95313076393566],[-45.416254162541634,60.94806503212601],[-45.43065430654306,60.93624499123683],[-45.47025470254701,60.91598206399823],[-45.48825488254883,60.9092277549187],[-45.48825488254883,60.88896482768013],[-45.509855098550986,60.8720790549813],[-45.6790567905679,60.79271592329681],[-45.700657006570054,60.77751872786786],[-45.71505715057151,60.77076441878833],[-45.72945729457294,60.767387264248555],[-45.77265772657725,60.764010109708806],[-45.819458194581955,60.75219006881963],[-45.84825848258481,60.75050149154973],[-45.87345873458733,60.75556722335938],[-45.89865898658985,60.772452996058206],[-45.88425884258842,60.780895882407634],[-45.83025830258302,60.799470232376336],[-45.794257942579435,60.81804458234504],[-45.776257762577615,60.824798891424564],[-45.75465754657546,60.82817604596434],[-45.77265772657725,60.843373241393294],[-45.801458014580135,60.84843897320292],[-45.869858698586995,60.84675039593304],[-45.877058770587695,60.84675039593304],[-45.89145891458915,60.84168466412339],[-45.91665916659167,60.829864623234215],[-45.927459274592735,60.82817604596434],[-45.94185941859419,60.834930355043866],[-45.93465934659346,60.834930355043866],[-45.93465934659346,60.84168466412339],[-45.95625956259562,60.83661893231374],[-45.98145981459814,60.821421736884815],[-45.99945999459993,60.802847386916085],[-46.01026010260102,60.78258445967751],[-46.01026010260102,60.74205860520033],[-46.01746017460175,60.731927141581025],[-46.03186031860318,60.72854998704125],[-46.04986049860497,60.7251728325015],[-46.06066060660606,60.72179567796172],[-46.161461614616144,60.731927141581025],[-46.179461794617936,60.736992873390676],[-46.204662046620456,60.74712433700998],[-46.21906219062191,60.76063295516903],[-46.21546215462155,60.77920730513773],[-46.17586175861757,60.79102734602691],[-46.06066060660606,60.79778165510646],[-46.01026010260102,60.83830750958364],[-45.89145891458915,60.87376763225117],[-45.851858518585175,60.89571913675965],[-45.86625866258663,60.9007848685693],[-45.88425884258842,60.89571913675965],[-45.95625956259562,60.86870190044152],[-45.96705967059671,60.870390477711396],[-45.97425974259741,60.87545620952105],[-45.97425974259741,60.8805219413307],[-45.977859778597775,60.88221051860057],[-45.98865988659887,60.88221051860057],[-45.99225992259923,60.883899095870476],[-45.99945999459993,60.88221051860057],[-46.01026010260102,60.87545620952105],[-46.01386013860139,60.870390477711396],[-46.02106021060209,60.856881859552345],[-46.09306093060931,60.81973315961491],[-46.10746107461074,60.82817604596434],[-46.11466114661147,60.824798891424564],[-46.12186121861217,60.81804458234504],[-46.12546125461253,60.81297885053539],[-46.154261542615416,60.807913118725736],[-46.186661866618664,60.80622454145586],[-46.19386193861939,60.81129027326551],[-46.186661866618664,60.821421736884815],[-46.17586175861757,60.829864623234215],[-46.161461614616144,60.834930355043866],[-46.15066150661505,60.83661893231374],[-45.88425884258842,60.93117925942718],[-45.509855098550986,60.981836577523666],[-45.466654666546674,61.00547665930202],[-45.46305463054631,61.01054239111167],[-45.459454594545946,61.0274281638105],[-45.45585455854558,61.03249389562015],[-45.441454414544154,61.04262535923945],[-45.43065430654306,61.04937966831898],[-45.41985419854197,61.052756822858726],[-45.40185401854018,61.05444540012863],[-45.37665376653766,61.05951113193828],[-45.32625326253262,61.088216945526284],[-45.3010530105301,61.09497125460581],[-45.29025290252903,61.09497125460581],[-45.26505265052651,61.101725563685335],[-45.257852578525785,61.10510271822511],[-45.25425254252542,61.11692275911429],[-45.257852578525785,61.12705422273356],[-45.26145261452615,61.13887426362277],[-45.26145261452615,61.14900572724204],[-45.24705247052469,61.164202922670995],[-45.21825218252181,61.177711540830046],[-45.20385203852038,61.192908736259],[-45.21465214652147,61.2114830862277],[-45.24705247052469,61.191220158989125],[-45.283052830528305,61.16082576813122],[-45.29385293852937,61.15576003632157],[-45.308253082530825,61.14562857270229],[-45.34425344253441,61.10510271822511],[-45.365853658536594,61.09497125460581],[-45.38025380253802,61.101725563685335],[-45.40545405454054,61.11861133638416],[-45.42345423454233,61.137185686352865],[-45.434254342543426,61.15238288178182],[-45.434254342543426,61.159137190861344],[-45.441454414544154,61.16082576813122],[-45.44505445054449,61.164202922670995],[-45.448654486544854,61.16589149994087],[-45.44505445054449,61.172645809020395],[-45.434254342543426,61.18108869536982],[-45.434254342543426,61.18784300444935],[-45.43785437854379,61.19797446806865],[-45.448654486544854,61.20641735441805],[-45.473854738547374,61.21823739530723],[-45.50625506255062,61.24694320889526],[-45.51345513455135,61.24694320889526],[-45.517055170551714,61.22836885892653],[-45.51345513455135,61.21992597257713],[-45.50625506255062,61.21486024076748],[-45.50265502655026,61.20641735441805],[-45.52065520655205,61.1827772726397],[-45.52065520655205,61.172645809020395],[-45.517055170551714,61.16082576813122],[-45.491854918549194,61.12536564546369],[-45.48825488254883,61.115234181844386],[-45.48825488254883,61.11354560457451],[-45.484654846548466,61.11185702730464],[-45.484654846548466,61.10847987276486],[-45.48825488254883,61.101725563685335],[-45.491854918549194,61.10003698641546],[-45.542255422554234,61.079774059176856],[-45.617856178561794,61.02067385473097],[-45.643056430564314,61.00716523657189],[-45.776257762577615,60.95988507301519],[-45.79065790657907,60.95819649574531],[-45.8050580505805,60.95988507301519],[-45.826658266582655,60.968327959364615],[-45.84105841058411,60.97170511390436],[-45.96345963459635,60.92949068215731],[-46.03186031860318,60.914293486728354],[-46.07146071460713,60.93793356850671],[-46.04626046260461,60.93793356850671],[-46.03546035460354,60.93793356850671],[-46.04986049860497,60.94806503212601],[-46.06426064260643,60.95144218666579],[-46.078660786607855,60.95313076393566],[-46.09306093060931,60.95819649574531],[-46.10026100261001,60.96663938209471],[-46.10026100261001,60.97508226844414],[-46.09306093060931,60.98352515479354],[-46.04266042660427,60.99196804114297],[-45.94905949059489,61.03249389562015],[-45.776257762577615,61.06288828647803],[-45.74025740257403,61.0645768637479],[-45.70425704257042,61.06795401828768],[-45.6790567905679,61.088216945526284],[-45.7330573305733,61.08652836825638],[-45.76185761857619,61.088216945526284],[-45.776257762577615,61.09834840914556],[-45.76545765457655,61.10510271822511],[-45.70425704257042,61.12198849092394],[-45.71505715057151,61.12536564546369],[-45.725857258572574,61.133808531813116],[-45.7330573305733,61.142251418162516],[-45.718657186571875,61.14731714997217],[-45.68985689856899,61.14900572724204],[-45.66465664656647,61.14731714997217],[-45.65385653856538,61.142251418162516],[-45.643056430564314,61.14393999543239],[-45.62865628656286,61.142251418162516],[-45.617856178561794,61.14562857270229],[-45.617856178561794,61.15576003632157],[-45.62865628656286,61.16082576813122],[-45.693456934569355,61.169268654480646],[-45.725857258572574,61.169268654480646],[-45.73665736657367,61.164202922670995],[-45.751057510575095,61.15238288178182],[-45.76185761857619,61.14562857270229],[-45.77265772657725,61.14731714997217],[-45.77985779857798,61.15238288178182],[-45.79065790657907,61.16251434540112],[-45.776257762577615,61.17940011809995],[-45.78705787057871,61.191220158989125],[-45.83025830258302,61.20979450895783],[-45.869858698586995,61.21823739530723],[-45.87345873458733,61.22330312711688],[-45.869858698586995,61.23174601346631],[-45.86265862658627,61.24187747708561],[-45.844658446584475,61.25200894070488],[-45.79785797857977,61.28746906337244],[-45.77985779857798,61.297600526991715],[-45.73665736657367,61.316174876960446],[-45.71505715057151,61.3212406087701],[-45.71505715057151,61.32799491784962],[-45.76545765457655,61.33474922692915],[-45.79065790657907,61.33474922692915],[-45.81585815858159,61.32799491784962],[-45.86625866258663,61.30773199061102],[-45.88785887858879,61.284091908832664],[-45.88785887858879,61.27902617702301],[-45.92385923859237,61.24187747708561],[-45.93825938259383,61.23343459073618],[-45.95625956259562,61.23343459073618],[-46.00666006660066,61.24356605435548],[-46.03546035460354,61.262140404324185],[-46.04986049860497,61.26551755886396],[-46.06786067860679,61.26382898159406],[-46.111061110611104,61.25200894070488],[-46.111061110611104,61.24525463162536],[-46.08226082260822,61.24187747708561],[-46.028260282602815,61.22836885892653],[-45.98865988659887,61.221614549847004],[-45.97065970659705,61.21486024076748],[-45.95985959859598,61.20641735441805],[-45.95985959859598,61.19797446806865],[-45.9310593105931,61.18953158171922],[-45.895058950589515,61.18784300444935],[-45.86265862658627,61.1844658499096],[-45.83745837458375,61.16251434540112],[-45.83745837458375,61.15238288178182],[-45.84105841058411,61.14056284089264],[-45.84825848258481,61.132119954543214],[-45.86625866258663,61.128742800003465],[-45.952659526595255,61.137185686352865],[-45.94905949059489,61.123677068193814],[-45.93825938259383,61.11354560457451],[-45.927459274592735,61.106791295494986],[-45.91305913059131,61.101725563685335],[-45.91305913059131,61.09497125460581],[-46.003060030600295,61.05951113193828],[-46.03186031860318,61.05444540012863],[-46.10746107461074,61.04937966831898],[-46.14346143461435,61.052756822858726],[-46.17226172261721,61.06795401828768],[-46.16866168661687,61.08315121371663],[-46.179461794617936,61.088216945526284],[-46.262262622626224,61.088216945526284],[-46.280262802628016,61.08483979098651],[-46.29826298262981,61.07301975009733],[-46.280262802628016,61.06964259555755],[-46.229862298622976,61.06795401828768],[-46.211862118621184,61.061199709208154],[-46.17226172261721,61.044313936509326],[-46.15066150661505,61.0375596274298],[-46.136261362613624,61.02911674108037],[-46.11826118261183,61.02405100927072],[-46.12186121861217,61.01560812292132],[-46.13986139861399,61.00547665930202],[-46.15786157861578,60.998722350222494],[-46.20106201062009,60.99196804114297],[-46.22626226262261,60.976770845714015],[-46.237062370623704,60.97845942298389],[-46.24426244262443,60.98352515479354],[-46.25146251462513,60.985213732063414],[-46.25866258662586,60.98859088660319],[-46.255062550625496,60.99703377295262],[-46.24786247862477,61.008853813841796],[-46.25146251462513,61.02236243200085],[-46.25866258662586,61.0358710501599],[-46.26946269462695,61.0460025137792],[-46.28386283862838,61.05444540012863],[-46.3090630906309,61.0460025137792],[-46.31626316263163,61.0460025137792],[-46.32346323463233,61.05106824558885],[-46.34146341463415,61.071331172827456],[-46.355863558635576,61.079774059176856],[-46.37746377463773,61.08483979098651],[-46.413464134641345,61.088216945526284],[-46.406264062640616,61.08146263644673],[-46.381063810638096,61.05951113193828],[-46.381063810638096,61.047691091049074],[-46.39186391863919,61.04093678196955],[-46.406264062640616,61.039248204699675],[-46.42066420664207,61.04093678196955],[-46.44586445864459,61.0561339773985],[-46.45666456664566,61.05951113193828],[-46.46026460264602,61.0460025137792],[-46.45306453064529,61.0375596274298],[-46.413464134641345,61.012230968381544],[-46.44586445864459,61.00041092749237],[-46.45666456664566,60.998722350222494],[-46.46746467464675,61.00209950476224],[-46.489064890648905,61.017296700191196],[-46.49986499864997,61.02067385473097],[-46.54306543065431,61.025739586540624],[-46.55746557465574,61.02236243200085],[-46.57906579065789,61.00547665930202],[-46.55026550265501,60.990279463873065],[-46.54306543065431,60.98014800025379],[-46.55026550265501,60.96495080482484],[-46.54306543065431,60.95144218666579],[-46.55746557465574,60.95650791847541],[-46.60066600666005,60.976770845714015],[-46.615066150661505,60.98690230933332],[-46.6330663306633,60.99196804114297],[-46.65466654666545,60.985213732063414],[-46.640266402664025,60.97508226844414],[-46.589865898658985,60.93117925942718],[-46.57906579065789,60.9092277549187],[-46.59346593465935,60.914293486728354],[-46.60426604266041,60.922736373077754],[-46.62586625866257,60.94468787758623],[-46.62946629466293,60.93117925942718],[-46.63666636666366,60.91260490945848],[-46.65106651066509,60.90247344583918],[-46.66906669066691,60.91260490945848],[-46.6870668706687,60.92442495034766],[-46.73026730267301,60.941310723046485],[-46.748267482674834,60.95144218666579],[-46.74466744667447,60.93793356850671],[-46.73386733867338,60.927802104887405],[-46.715867158671585,60.92104779580788],[-46.70146701467013,60.91598206399823],[-46.70146701467013,60.9092277549187],[-46.72666726667265,60.914293486728354],[-46.773467734677354,60.932867836697056],[-46.798667986679874,60.93793356850671],[-46.8850688506885,60.93793356850671],[-46.87066870668707,60.92442495034766],[-46.80586805868057,60.919359218538006],[-46.78066780667805,60.905850600378955],[-46.76266762667626,60.9007848685693],[-46.73026730267301,60.89403055948975],[-46.70866708667086,60.887276250410224],[-46.723067230672314,60.87545620952105],[-46.71946719467195,60.856881859552345],[-46.748267482674834,60.843373241393294],[-46.80946809468094,60.82817604596434],[-46.823868238682394,60.821421736884815],[-46.85266852668525,60.802847386916085],[-46.86346863468634,60.799470232376336],[-46.942669426694266,60.799470232376336],[-46.942669426694266,60.80622454145586],[-46.91026910269102,60.81466742780526],[-46.89586895868959,60.82311031415469],[-46.8850688506885,60.834930355043866],[-46.949869498694994,60.821421736884815],[-46.97866978669785,60.81973315961491],[-46.967869678696786,60.834930355043866],[-46.88866888668886,60.85857043682222],[-46.84546845468455,60.88221051860057],[-46.89586895868959,60.87545620952105],[-46.931869318693174,60.861947591362],[-46.949869498694994,60.86701332317165],[-46.96066960669606,60.86870190044152],[-46.982269822698214,60.85857043682222],[-47.000270002700034,60.843373241393294],[-47.02187021870219,60.834930355043866],[-47.043470434704346,60.84168466412339],[-47.03987039870398,60.843373241393294],[-47.03987039870398,60.84506181866317],[-47.03627036270362,60.84843897320292],[-47.057870578705774,60.86025901409212],[-47.043470434704346,60.878833364060824],[-47.018270182701826,60.89571913675965],[-46.967869678696786,60.90753917764883],[-46.931869318693174,60.927802104887405],[-46.91386913869138,60.93117925942718],[-46.942669426694266,60.95819649574531],[-46.993069930699306,60.95313076393566],[-47.043470434704346,60.93962214577658],[-47.07947079470793,60.94468787758623],[-47.0650706507065,60.95144218666579],[-47.02187021870219,60.963262227554964],[-47.00387003870037,60.96495080482484],[-47.02907029070289,60.97508226844414],[-47.083070830708294,60.96663938209471],[-47.17307173071731,60.93793356850671],[-47.209072090720895,60.91260490945848],[-47.227072270722715,60.9007848685693],[-47.24867248672487,60.89571913675965],[-47.2630726307263,60.89740771402953],[-47.26667266672666,60.9007848685693],[-47.27027270272703,60.90753917764883],[-47.284672846728455,60.93117925942718],[-47.28827288272882,60.93962214577658],[-47.29187291872918,60.94806503212601],[-47.29907299072991,60.96157365028506],[-47.32067320673207,60.954819341205535],[-47.34587345873459,60.941310723046485],[-47.35667356673565,60.93455641396696],[-47.37107371073711,60.92949068215731],[-47.453874538745396,60.93962214577658],[-47.45747457474573,60.941310723046485],[-47.46467464674646,60.941310723046485],[-47.47187471874719,60.93455641396696],[-47.479074790747916,60.92949068215731],[-47.493474934749344,60.92611352761753],[-47.52587525875259,60.92104779580788],[-47.536675366753656,60.91767064126813],[-47.54747547475475,60.91260490945848],[-47.54747547475475,60.905850600378955],[-47.536675366753656,60.90247344583918],[-47.52227522275223,60.9007848685693],[-47.49707497074971,60.90247344583918],[-47.52587525875259,60.892341982219875],[-47.55827558275581,60.892341982219875],[-47.65907659076589,60.91091633218858],[-47.68427684276841,60.8990962912994],[-47.7058770587706,60.89571913675965],[-47.72747727477275,60.89740771402953],[-47.745477454774544,60.90247344583918],[-47.73467734677345,60.91598206399823],[-47.75267752677527,60.91598206399823],[-47.78147781477816,60.8990962912994],[-47.80667806678068,60.892341982219875],[-47.86067860678605,60.86870190044152],[-47.82467824678247,60.865324745901745],[-47.75267752677527,60.88221051860057],[-47.720277202772024,60.87545620952105],[-47.75627756277564,60.85519328228247],[-47.763477634776336,60.84843897320292],[-47.73467734677345,60.85350470501257],[-47.67707677076771,60.8720790549813],[-47.64827648276483,60.87545620952105],[-47.529475294752956,60.87545620952105],[-47.518675186751864,60.878833364060824],[-47.493474934749344,60.892341982219875],[-47.48267482674825,60.89571913675965],[-47.360273602736015,60.88558767314035],[-47.33147331473313,60.87714478679092],[-47.32427324273243,60.861947591362],[-47.34227342273422,60.851816127742694],[-47.43947439474394,60.82817604596434],[-47.52587525875259,60.83155320050409],[-47.61587615876158,60.821421736884815],[-47.80667806678068,60.829864623234215],[-47.84267842678426,60.83830750958364],[-47.93267932679328,60.84168466412339],[-47.947079470794705,60.84843897320292],[-47.91467914679146,60.87545620952105],[-47.93987939879398,60.88221051860057],[-47.96867968679686,60.87545620952105],[-47.99387993879938,60.86025901409212],[-48.01548015480154,60.84506181866317],[-48.03708037080369,60.829864623234215],[-48.06588065880658,60.824798891424564],[-48.11988119881198,60.82817604596434],[-48.13428134281341,60.824798891424564],[-48.16668166681666,60.81466742780526],[-48.181081810818114,60.81297885053539],[-48.19548195481954,60.81466742780526],[-48.22068220682206,60.81973315961491],[-48.231482314823154,60.81973315961491],[-48.24228242282422,60.824798891424564],[-48.24228242282422,60.834930355043866],[-48.231482314823154,60.843373241393294],[-48.20988209882097,60.85012755047282],[-48.16668166681666,60.86870190044152],[-48.08028080280803,60.88896482768013],[-48.02988029880299,60.914293486728354],[-48.0190801908019,60.91598206399823],[-48.00828008280084,60.914293486728354],[-48.00108001080011,60.9007848685693],[-47.99027990279902,60.89571913675965],[-47.972279722797225,60.9007848685693],[-47.94347943479434,60.914293486728354],[-47.91827918279182,60.92949068215731],[-47.90747907479076,60.941310723046485],[-47.8930789307893,60.94806503212601],[-47.75267752677527,60.97001653663449],[-47.73467734677345,60.97845942298389],[-47.73467734677345,60.99196804114297],[-47.70227702277023,61.003788082032145],[-47.687876878768776,61.00547665930202],[-47.687876878768776,61.012230968381544],[-47.71667716677166,61.017296700191196],[-47.81747817478174,61.00547665930202],[-47.87507875078751,61.00547665930202],[-47.88227882278824,61.00716523657189],[-47.88587885878857,61.008853813841796],[-47.8930789307893,61.017296700191196],[-47.90027900279003,61.02067385473097],[-47.91107911079109,61.01898527746107],[-47.92547925479255,61.01391954565145],[-47.93267932679328,61.012230968381544],[-47.93627936279361,61.01054239111167],[-47.947079470794705,61.00547665930202],[-47.9578795787958,60.99534519568272],[-47.9650796507965,60.99196804114297],[-47.97587975879759,60.990279463873065],[-48.00468004680047,60.99365661841284],[-48.01548015480154,60.998722350222494],[-48.022680226802265,60.998722350222494],[-48.02988029880299,60.99703377295262],[-48.047880478804785,60.98690230933332],[-48.05508055080551,60.985213732063414],[-48.05868058680588,60.98352515479354],[-48.05868058680588,60.97845942298389],[-48.06228062280621,60.97339369117424],[-48.06948069480694,60.97170511390436],[-48.07668076680767,60.97339369117424],[-48.09468094680946,60.98352515479354],[-48.098280982809825,60.985213732063414],[-48.11268112681125,60.981836577523666],[-48.1450814508145,60.968327959364615],[-48.15948159481593,60.96495080482484],[-48.155881558815594,60.968327959364615],[-48.155881558815594,60.97170511390436],[-48.15228152281523,60.97508226844414],[-48.1450814508145,60.97845942298389],[-48.17028170281702,60.98859088660319],[-48.206282062820634,60.99365661841284],[-48.2710827108271,60.998722350222494],[-48.29628296282962,60.99534519568272],[-48.34668346683466,60.98014800025379],[-48.37188371883718,60.97845942298389],[-48.400684006840066,60.98690230933332],[-48.3970839708397,60.998722350222494],[-48.37188371883718,61.00716523657189],[-48.231482314823154,61.0274281638105],[-48.2170821708217,61.02405100927072],[-48.181081810818114,61.012230968381544],[-48.16668166681666,61.01054239111167],[-48.11988119881198,61.012230968381544],[-48.105481054810554,61.01560812292132],[-48.09468094680946,61.02911674108037],[-48.0838808388084,61.03249389562015],[-48.06588065880658,61.03418247289002],[-48.03348033480336,61.044313936509326],[-48.0190801908019,61.0460025137792],[-47.88227882278824,61.03249389562015],[-47.85347853478535,61.0375596274298],[-47.8390783907839,61.04262535923945],[-47.8318783187832,61.05106824558885],[-47.83547835478353,61.05782255466838],[-47.84267842678426,61.06795401828768],[-47.85347853478535,61.07639690463711],[-47.86067860678605,61.08146263644673],[-47.87507875078751,61.07808548190698],[-47.90027900279003,61.06288828647803],[-47.91467914679146,61.05951113193828],[-47.921879218792185,61.0645768637479],[-47.93627936279361,61.088216945526284],[-47.88227882278824,61.106791295494986],[-47.85707857078572,61.12198849092394],[-47.83547835478353,61.15407145905169],[-47.78507785077849,61.177711540830046],[-47.770677706777064,61.191220158989125],[-47.79947799477995,61.18784300444935],[-47.83547835478353,61.16251434540112],[-47.86787867878678,61.15238288178182],[-47.871478714787145,61.14562857270229],[-47.871478714787145,61.137185686352865],[-47.87867878678787,61.128742800003465],[-47.8930789307893,61.123677068193814],[-47.98667986679865,61.10341414095521],[-48.03348033480336,61.101725563685335],[-48.047880478804785,61.09834840914556],[-48.073080730807305,61.088216945526284],[-48.08748087480873,61.088216945526284],[-48.09468094680946,61.09328267733591],[-48.10908109081089,61.10847987276486],[-48.11988119881198,61.115234181844386],[-48.073080730807305,61.14731714997217],[-48.05148051480515,61.169268654480646],[-48.05148051480515,61.1844658499096],[-48.06588065880658,61.17095723175052],[-48.10188101881019,61.14900572724204],[-48.13788137881377,61.132119954543214],[-48.15228152281523,61.13887426362277],[-48.15948159481593,61.15407145905169],[-48.173881738817386,61.16082576813122],[-48.18828188281881,61.16589149994087],[-48.20268202682027,61.169268654480646],[-48.213482134821334,61.17940011809995],[-48.2170821708217,61.186154427179474],[-48.2170821708217,61.2013516226084],[-48.199081990819906,61.20979450895783],[-48.105481054810554,61.23850032254583],[-48.10908109081089,61.248631786165134],[-48.11268112681125,61.25200894070488],[-48.098280982809825,61.25876324978444],[-48.105481054810554,61.26551755886396],[-48.10908109081089,61.27058329067361],[-48.11628116281162,61.27227186794349],[-48.12708127081271,61.27227186794349],[-48.12708127081271,61.27902617702301],[-48.11268112681125,61.28240333156279],[-48.08748087480873,61.297600526991715],[-48.08028080280803,61.30097768153149],[-48.06588065880658,61.302666258801366],[-48.022680226802265,61.31448629969054],[-47.93267932679328,61.319552031500194],[-47.91467914679146,61.32799491784962],[-47.96147961479613,61.3398149587388],[-48.01548015480154,61.33474922692915],[-48.11988119881198,61.30773199061102],[-48.12708127081271,61.3212406087701],[-48.148681486814866,61.3212406087701],[-48.16668166681666,61.31279772242067],[-48.173881738817386,61.297600526991715],[-48.17748177481775,61.275649022483265],[-48.181081810818114,61.262140404324185],[-48.206282062820634,61.24187747708561],[-48.2170821708217,61.23681174527596],[-48.24228242282422,61.23681174527596],[-48.256682566825674,61.23174601346631],[-48.26748267482674,61.21992597257713],[-48.281882818828194,61.18953158171922],[-48.29268292682926,61.177711540830046],[-48.2710827108271,61.17095723175052],[-48.2170821708217,61.142251418162516],[-48.23508235082349,61.133808531813116],[-48.29268292682926,61.128742800003465],[-48.407884078840794,61.133808531813116],[-48.433084330843315,61.142251418162516],[-48.42948429484295,61.14900572724204],[-48.433084330843315,61.15238288178182],[-48.440284402844014,61.15576003632157],[-48.440284402844014,61.16251434540112],[-48.37188371883718,61.169268654480646],[-48.30348303483035,61.1844658499096],[-48.325083250832506,61.191220158989125],[-48.332283322833234,61.191220158989125],[-48.30348303483035,61.204728777148176],[-48.299882998829986,61.2114830862277],[-48.29628296282962,61.221614549847004],[-48.299882998829986,61.226680281656655],[-48.32148321483214,61.21486024076748],[-48.357483574835754,61.199663045338525],[-48.37188371883718,61.19797446806865],[-48.364683646836454,61.2114830862277],[-48.39348393483934,61.204728777148176],[-48.45108451084511,61.17940011809995],[-48.483484834848355,61.177711540830046],[-48.47988479884799,61.18108869536982],[-48.47628476284763,61.191220158989125],[-48.51228512285121,61.18953158171922],[-48.53028530285303,61.191220158989125],[-48.54468544685446,61.19797446806865],[-48.5230852308523,61.21486024076748],[-48.515885158851574,61.22499170438678],[-48.51228512285121,61.23850032254583],[-48.52668526685267,61.23681174527596],[-48.57348573485734,61.2114830862277],[-48.566285662856615,61.221614549847004],[-48.55548555485555,61.23850032254583],[-48.559085590855915,61.24525463162536],[-48.5230852308523,61.25200894070488],[-48.508685086850875,61.25876324978444],[-48.49788497884978,61.27227186794349],[-48.5230852308523,61.27227186794349],[-48.54828548285482,61.26382898159406],[-48.584285842858435,61.23850032254583],[-48.60588605886059,61.21992597257713],[-48.62028620286202,61.2114830862277],[-48.634686346863475,61.2114830862277],[-48.63828638286381,61.21486024076748],[-48.63828638286381,61.23005743619643],[-48.641886418864175,61.23850032254583],[-48.609486094860955,61.26551755886396],[-48.58068580685807,61.28071475429289],[-48.54828548285482,61.28578048610254],[-48.43668436684365,61.29253479518209],[-48.400684006840066,61.30097768153149],[-48.37908379083791,61.31448629969054],[-48.44748447484474,61.31448629969054],[-48.49428494284942,61.30097768153149],[-48.51228512285121,61.30097768153149],[-48.48708487084869,61.34150353600867],[-48.48708487084869,61.3482578450882],[-48.44748447484474,61.35670073143763],[-48.425884258842586,61.3583893087075],[-48.3970839708397,61.3482578450882],[-48.35388353883539,61.34488069054845],[-48.339483394833934,61.3482578450882],[-48.332283322833234,61.3583893087075],[-48.332283322833234,61.37020934959668],[-48.339483394833934,61.37527508140633],[-48.35388353883539,61.368520772326804],[-48.36828368283682,61.37189792686655],[-48.54468544685446,61.382029390485854],[-48.57348573485734,61.38878369956538],[-48.566285662856615,61.40229231772446],[-48.57708577085771,61.400603740454585],[-48.60228602286023,61.39216085410516],[-48.61308613086129,61.39216085410516],[-48.62748627486275,61.39722658591481],[-48.67428674286742,61.395538008644934],[-48.66348663486633,61.409046626803985],[-48.6490864908649,61.422555244963036],[-48.641886418864175,61.436063863122115],[-48.65268652686527,61.444506749471515],[-48.67068670686706,61.43944101766186],[-48.76428764287641,61.39384943137503],[-48.818288182881815,61.38034081321598],[-48.861488614886156,61.378652235946106],[-48.85428854288543,61.40229231772446],[-48.87948879488795,61.40566947226421],[-48.893888938889376,61.40398089499433],[-48.90468904689047,61.39722658591481],[-48.92268922689226,61.38371796775576],[-48.937089370893716,61.373586504136455],[-48.951489514895144,61.36514361778703],[-48.9730897308973,61.36176646324728],[-48.99108991089909,61.36176646324728],[-48.99108991089909,61.368520772326804],[-48.962289622896236,61.38034081321598],[-48.951489514895144,61.38540654502563],[-48.937089370893716,61.39891516318468],[-48.94068940689405,61.40398089499433],[-49.045090450904496,61.39722658591481],[-49.06669066690665,61.40229231772446],[-49.052290522905224,61.40735804953411],[-49.04149041490413,61.41073520407386],[-49.012690126901276,61.41073520407386],[-49.001890018900184,61.414112358613636],[-48.98028980289803,61.42762097677269],[-48.94068940689405,61.43437528585221],[-48.861488614886156,61.458015367630594],[-48.82908829088291,61.46139252217034],[-48.74628746287462,61.458015367630594],[-48.72468724687246,61.46139252217034],[-48.67788677886779,61.47827829486917],[-48.48708487084869,61.5137384175367],[-48.256682566825674,61.53062419023553],[-48.231482314823154,61.547509962934356],[-48.47628476284763,61.534001344775305],[-48.45108451084511,61.542444231124705],[-48.364683646836454,61.55426427201391],[-48.3430834308343,61.56608431290309],[-48.332283322833234,61.58128150833201],[-48.32868328683287,61.596478703760965],[-48.34668346683466,61.60829874465014],[-48.36828368283682,61.60829874465014],[-48.53028530285303,61.54413280839461],[-48.692286922869215,61.523869881156],[-48.76428764287641,61.503606953917426],[-48.80388803888039,61.485032603948696],[-48.87228872288722,61.4867211812186],[-48.901089010890104,61.48165544940895],[-48.926289262892624,61.47321256305952],[-48.99108991089909,61.458015367630594],[-49.01629016290161,61.458015367630594],[-49.012690126901276,61.46814683124987],[-49.00549005490055,61.47490114032942],[-48.994689946899456,61.47827829486917],[-48.98388983889839,61.479966872139045],[-49.00549005490055,61.49178691302825],[-49.037890378903796,61.495164067568],[-49.102691026910264,61.49178691302825],[-49.11349113491136,61.49685264483787],[-49.11349113491136,61.506984108457175],[-49.10629106291063,61.51711557207648],[-49.102691026910264,61.523869881156],[-49.09189091890917,61.528935612965654],[-49.05949059490595,61.534001344775305],[-49.045090450904496,61.54075565385483],[-49.063090630906316,61.539067076584956],[-49.11349113491136,61.547509962934356],[-49.13149131491315,61.54582138566448],[-49.17469174691746,61.54075565385483],[-49.2970929709297,61.561018581093435],[-49.28269282692827,61.56777289017296],[-49.23949239492396,61.58128150833201],[-49.22149221492214,61.582970085601914],[-49.24669246692466,61.58803581741154],[-49.25749257492575,61.591412971951314],[-49.26469264692648,61.60154443557062],[-49.23949239492396,61.60829874465014],[-48.951489514895144,61.58634724014166],[-48.68868688686885,61.61505305372967],[-48.62388623886238,61.63700455823815],[-48.591485914859135,61.63531598096827],[-48.616686166861655,61.645447444587575],[-48.641886418864175,61.6505131763972],[-48.66348663486633,61.64882459912732],[-48.735487354873555,61.62856167188875],[-48.98388983889839,61.60829874465014],[-48.98388983889839,61.61505305372967],[-48.95868958689587,61.618430208269444],[-48.94788947889478,61.62011878553932],[-48.937089370893716,61.62518451734897],[-48.93348933489335,61.63531598096827],[-48.94068940689405,61.6420702900478],[-48.95508955089551,61.64375886731767],[-48.976689766897664,61.63531598096827],[-49.01629016290161,61.63531598096827],[-49.027090270902704,61.631938826428495],[-49.037890378903796,61.626873094618844],[-49.045090450904496,61.623495940079096],[-49.05949059490595,61.62180736280919],[-49.052290522905224,61.62856167188875],[-49.052290522905224,61.631938826428495],[-49.05589055890559,61.63700455823815],[-49.05949059490595,61.645447444587575],[-49.05949059490595,61.67415325817558],[-49.063090630906316,61.68259614452498],[-49.06669066690665,61.68428472179485],[-49.070290702907016,61.68766187633463],[-49.06669066690665,61.69779333995393],[-49.05589055890559,61.70454764903346],[-49.04149041490413,61.707924803573235],[-49.01629016290161,61.71130195811298],[-48.94788947889478,61.73325346262146],[-48.911889118891196,61.738319194431114],[-48.87948879488795,61.72481057627206],[-48.90468904689047,61.751827812590165],[-48.90468904689047,61.765336430749244],[-48.89028890288901,61.77546789436852],[-48.87228872288722,61.792353667067346],[-48.90468904689047,61.78222220344807],[-48.96588965889657,61.74676208078051],[-49.01629016290161,61.73494203989134],[-49.03429034290343,61.72818773081181],[-49.052290522905224,61.72481057627206],[-49.09189091890917,61.73325346262146],[-49.127891278912784,61.72649915354194],[-49.14949149491494,61.72481057627206],[-49.13509135091351,61.738319194431114],[-49.11709117091169,61.751827812590165],[-49.102691026910264,61.76702500801912],[-49.10629106291063,61.78053362617817],[-49.120691206912056,61.79404224433725],[-49.120691206912056,61.810928017036076],[-49.10989109891099,61.827813789734904],[-49.08469084690847,61.841322407893955],[-49.05589055890559,61.84469956243373],[-49.019890198901976,61.84469956243373],[-49.001890018900184,61.84976529424338],[-49.01629016290161,61.87002822148196],[-49.001890018900184,61.87509395329161],[-48.962289622896236,61.876782530561485],[-48.944289442894416,61.88691399418079],[-48.94068940689405,61.89704545780009],[-48.93348933489335,61.91561980776879],[-48.926289262892624,61.930817003197745],[-48.911889118891196,61.93757131227727],[-48.90468904689047,61.939259889547145],[-48.89028890288901,61.94939135316645],[-48.87948879488795,61.95107993043632],[-48.868688686886856,61.952768507706224],[-48.83988839888397,61.957834239515876],[-48.74988749887498,61.957834239515876],[-48.74988749887498,61.9628999713255],[-48.75348753487535,61.966277125865275],[-48.75708757087571,61.97134285767493],[-48.74988749887498,61.97809716675445],[-48.785887858878596,61.9916057849135],[-48.82188821888218,61.993294362183406],[-48.911889118891196,61.9831628985641],[-48.944289442894416,61.97640858948458],[-48.98028980289803,61.9628999713255],[-49.16749167491673,61.85651960332291],[-49.18909189091892,61.83794525335418],[-49.19629196291962,61.814305171575825],[-49.18189181891819,61.78728793525772],[-49.18189181891819,61.78053362617817],[-49.18909189091892,61.770402162558895],[-49.18189181891819,61.76027069893959],[-49.18189181891819,61.751827812590165],[-49.19989199891998,61.73494203989134],[-49.22149221492214,61.72481057627206],[-49.23949239492396,61.71974484446241],[-49.26469264692648,61.72481057627206],[-49.27189271892718,61.729876308081685],[-49.29349293492933,61.74676208078051],[-49.30789307893079,61.75351638986007],[-49.354693546935465,61.76702500801912],[-49.228692286922865,61.876782530561485],[-49.21429214292144,61.88353683964101],[-49.18909189091892,61.89197972599044],[-49.17469174691746,61.89704545780009],[-49.17469174691746,61.903799766879615],[-49.19629196291962,61.90548834414949],[-49.21429214292144,61.90548834414949],[-49.23229232292323,61.903799766879615],[-49.279092790927905,61.88522541691091],[-49.28629286292863,61.88353683964101],[-49.29349293492933,61.87847110783139],[-49.289892898929,61.85989675786266],[-49.29349293492933,61.85651960332291],[-49.304293042930425,61.84976529424338],[-49.31509315093152,61.83456809881443],[-49.329493294932945,61.82105948065535],[-49.34749347493474,61.814305171575825],[-49.38709387093871,61.81261659430595],[-49.405094050940505,61.814305171575825],[-49.42669426694266,61.82105948065535],[-49.4158941589416,61.827813789734904],[-49.43389433894339,61.84807671697348],[-49.42669426694266,61.85989675786266],[-49.379893798937985,61.876782530561485],[-49.39069390693908,61.881848262371136],[-49.39789397893978,61.88353683964101],[-49.40869408694087,61.88353683964101],[-49.40869408694087,61.88860257145066],[-49.39429394293941,61.895356880530215],[-49.39069390693908,61.903799766879615],[-49.39069390693908,61.91561980776879],[-49.38709387093871,61.92406269411822],[-49.37269372693726,61.92743984865797],[-49.34029340293404,61.92743984865797],[-49.32589325893258,61.930817003197745],[-49.34749347493474,61.93757131227727],[-49.38709387093871,61.93250558046762],[-49.40869408694087,61.93757131227727],[-49.38709387093871,61.94601419862667],[-49.34029340293404,61.952768507706224],[-49.30789307893079,61.97134285767493],[-49.289892898929,61.9747200122147],[-49.25029250292502,61.97809716675445],[-49.16029160291603,61.97134285767493],[-49.14229142291421,61.97640858948458],[-49.11349113491136,61.99498293945328],[-49.06669066690665,62.01018013488223],[-48.99108991089909,62.05239456662929],[-48.9730897308973,62.05746029843894],[-48.95868958689587,62.050705989359415],[-48.94068940689405,62.04732883481964],[-48.901089010890104,62.04732883481964],[-48.88308883088831,62.05239456662929],[-48.85428854288543,62.06928033932812],[-48.83988839888397,62.07434607113777],[-48.83988839888397,62.08110038021729],[-48.926289262892624,62.07434607113777],[-48.94788947889478,62.077723225677545],[-48.994689946899456,62.08785468929682],[-49.01629016290161,62.08785468929682],[-48.98028980289803,62.11487192561495],[-48.969489694896936,62.12838054377403],[-48.98388983889839,62.135134852853554],[-49.00909009090091,62.126691966504126],[-49.052290522905224,62.08785468929682],[-49.08109081090811,62.08110038021729],[-49.095490954909536,62.1013633074559],[-49.07389073890738,62.140200584663205],[-49.03429034290343,62.180726439140386],[-49.001890018900184,62.20436652091874],[-49.03069030690307,62.21280940726814],[-49.06669066690665,62.202677943648865],[-49.0990909909099,62.180726439140386],[-49.11709117091169,62.14526631647283],[-49.153091530915304,62.10642903926555],[-49.15669156691567,62.09292042110647],[-49.153091530915304,62.07603464840764],[-49.14949149491494,62.06083745297872],[-49.14949149491494,62.04732883481964],[-49.16749167491673,62.02200017577141],[-49.20709207092071,62.01862302123163],[-49.24669246692466,62.02200017577141],[-49.279092790927905,62.01018013488223],[-49.31149311493115,61.996671516723154],[-49.354693546935465,61.98654005310388],[-49.40149401494014,61.98485147583398],[-49.43749437494375,61.9916057849135],[-49.41949419494193,62.00004867126293],[-49.39429394293941,62.00342582580271],[-49.354693546935465,62.00680298034246],[-49.36549365493656,62.01862302123163],[-49.405094050940505,62.02537733031116],[-49.4230942309423,62.03382021666059],[-49.40149401494014,62.04901741208954],[-49.39069390693908,62.05746029843894],[-49.38709387093871,62.06759176205824],[-49.4158941589416,62.06590318478837],[-49.44109441094412,62.05408314389916],[-49.46269462694627,62.03550879393046],[-49.480694806948065,62.01693444396176],[-49.5418954189542,62.00004867126293],[-49.556295562955626,61.996671516723154],[-49.588695886958874,61.98654005310388],[-49.606696066960666,61.98485147583398],[-49.639096390963914,61.98991720764363],[-49.6750967509675,62.00004867126293],[-49.69309693096932,62.01693444396176],[-49.6678966789668,62.03382021666059],[-49.63549635496355,62.03550879393046],[-49.56709567095672,62.01862302123163],[-49.538295382953834,62.02706590758106],[-49.6030960309603,62.04901741208954],[-49.61749617496176,62.05746029843894],[-49.563495634956354,62.064214607518466],[-49.53469534695347,62.072657493867894],[-49.51669516695168,62.07434607113777],[-49.48429484294843,62.072657493867894],[-49.47349473494734,62.07603464840764],[-49.46269462694627,62.08785468929682],[-49.513095130951314,62.08954326656672],[-49.53469534695347,62.086166112026945],[-49.556295562955626,62.077723225677545],[-49.57429574295742,62.072657493867894],[-49.6030960309603,62.07603464840764],[-49.62469624696246,62.08447753475707],[-49.62829628296282,62.09460899837637],[-49.646296462964614,62.09629757564625],[-49.671496714967134,62.09460899837637],[-49.69309693096932,62.099674730185995],[-49.696696966969654,62.11656050288482],[-49.6750967509675,62.12331481196438],[-49.59949599495994,62.12500338923425],[-49.33309333093331,62.08110038021729],[-49.34749347493474,62.091231843836596],[-49.42669426694266,62.11656050288482],[-49.32589325893258,62.135134852853554],[-49.31509315093152,62.13682343012343],[-49.304293042930425,62.135134852853554],[-49.29349293492933,62.13682343012343],[-49.29349293492933,62.14695489374273],[-49.29349293492933,62.153709202822256],[-49.2970929709297,62.15877493463191],[-49.2970929709297,62.16721782098131],[-49.29349293492933,62.17734928460061],[-49.31509315093152,62.175660707330735],[-49.33309333093331,62.16721782098131],[-49.354693546935465,62.16384066644156],[-49.36909369093689,62.170594975521084],[-49.36189361893619,62.17903786187048],[-49.36189361893619,62.189169325489786],[-49.354693546935465,62.197612211839214],[-49.34749347493474,62.20436652091874],[-49.34749347493474,62.211120829998265],[-49.39069390693908,62.20943225272839],[-49.41229412294123,62.202677943648865],[-49.4230942309423,62.18748074821991],[-49.430294302943025,62.16721782098131],[-49.45189451894518,62.15539778009213],[-49.47349473494734,62.15033204828248],[-49.49509495094949,62.15033204828248],[-49.55989559895599,62.15708635736203],[-49.61029610296103,62.15539778009213],[-49.66069660696607,62.15033204828248],[-49.682296822968226,62.15033204828248],[-49.682296822968226,62.15708635736203],[-49.65349653496534,62.162152089171656],[-49.62829628296282,62.16890639825121],[-49.61029610296103,62.17903786187048],[-49.59229592295924,62.197612211839214],[-49.59229592295924,62.19930078910909],[-49.588695886958874,62.20943225272839],[-49.58509585095851,62.21956371634769],[-49.57429574295742,62.22631802542722],[-49.50949509495095,62.23138375723687],[-49.46989469894697,62.24995810720557],[-49.455494554945545,62.2482695299357],[-49.430294302943025,62.238138066316395],[-49.40149401494014,62.23138375723687],[-49.36909369093689,62.22969517996697],[-49.34029340293404,62.23476091177662],[-49.31509315093152,62.246580952665795],[-49.29349293492933,62.2668438799044],[-49.304293042930425,62.27022103444415],[-49.31149311493115,62.268532457174274],[-49.32229322293222,62.26346672536462],[-49.33309333093331,62.260089570824874],[-49.34389343893437,62.25840099355497],[-49.46989469894697,62.2668438799044],[-49.556295562955626,62.24995810720557],[-49.57429574295742,62.25333526174535],[-49.57069570695705,62.265155302634525],[-49.5418954189542,62.29217253895263],[-49.5418954189542,62.303992579841804],[-49.556295562955626,62.30568115711171],[-49.57429574295742,62.29217253895263],[-49.59229592295924,62.2752867662538],[-49.6030960309603,62.2668438799044],[-49.61029610296103,62.265155302634525],[-49.61029610296103,62.260089570824874],[-49.613896138961394,62.25502383901522],[-49.613896138961394,62.25333526174535],[-49.621096210962094,62.251646684475446],[-49.631896318963186,62.25840099355497],[-49.639096390963914,62.260089570824874],[-49.696696966969654,62.2668438799044],[-49.7938979389794,62.260089570824874],[-49.8010980109801,62.25840099355497],[-49.808298082980826,62.25502383901522],[-49.822698226982254,62.243203798126046],[-49.83349833498335,62.23982664358627],[-49.88749887498875,62.24489237539592],[-49.8550985509855,62.260089570824874],[-49.85869858698587,62.26177814809475],[-49.873098730987294,62.2668438799044],[-49.85869858698587,62.268532457174274],[-49.83349833498335,62.265155302634525],[-49.81909819098192,62.2668438799044],[-49.81189811898119,62.27022103444415],[-49.783097830978306,62.287106807142976],[-49.78669786697867,62.29723827076228],[-49.7938979389794,62.30568115711171],[-49.80469804698046,62.309058311651455],[-49.81909819098192,62.30736973438158],[-49.822698226982254,62.29217253895263],[-49.84429844298444,62.2854182298731],[-49.873098730987294,62.2854182298731],[-49.891098910989115,62.29048396168275],[-49.90189901899018,62.30568115711171],[-49.90549905499054,62.32087835254063],[-49.90189901899018,62.35296132066841],[-49.90909909099091,62.36478136155759],[-49.9270992709927,62.35127274339854],[-49.94509945099452,62.32932123889006],[-49.96309963099631,62.314124043461106],[-49.98829988299883,62.314124043461106],[-50.01350013500135,62.32087835254063],[-50.02790027900278,62.331009816159934],[-50.00990009900099,62.34114127977924],[-50.03870038700387,62.363092784287716],[-50.0531005310053,62.366469938827464],[-50.07830078300782,62.36815851609737],[-50.092700927009275,62.37322424790702],[-50.12150121501216,62.38673286606607],[-50.13230132301322,62.393487175145594],[-50.14670146701468,62.40193006149502],[-50.16110161101611,62.4036186387649],[-50.175501755017535,62.40193006149502],[-50.18990189901899,62.4036186387649],[-50.200702007020055,62.41037294784442],[-50.20790207902078,62.41543867965407],[-50.21150211502115,62.4221929887336],[-50.233102331023304,62.44921022505173],[-50.24750247502473,62.46271884321078],[-50.308703087030864,62.491424656798785],[-50.319503195031956,62.504933274957864],[-50.3051030510305,62.515064738577166],[-50.294302943029436,62.531950511275966],[-50.27990279902798,62.5690992112134],[-50.269102691026916,62.58260782937245],[-50.24030240302403,62.60962506569058],[-50.22950229502294,62.62313368384966],[-50.22230222302224,62.64508518835811],[-50.22230222302224,62.66197096105694],[-50.21510215102151,62.67547957921602],[-50.18990189901899,62.692365351914844],[-50.16470164701647,62.697431083724496],[-50.13590135901359,62.700808238264244],[-50.11430114301143,62.70756254734377],[-50.11430114301143,62.719382588232946],[-50.08550085500855,62.736268360931774],[-50.074700747007455,62.7447112472812],[-50.06390063900639,62.759908442710156],[-50.0531005310053,62.78185994721861],[-50.0459004590046,62.79199141083791],[-50.03510035100351,62.803811451727086],[-50.017100171001715,62.812254338076514],[-49.97749977499774,62.81900864715604],[-49.94509945099452,62.83420584258499],[-49.898298982989814,62.84940303801392],[-49.90549905499054,62.84940303801392],[-49.91269912699127,62.852780192553695],[-49.923499234992335,62.85615734709347],[-49.916299162991635,62.866288810712746],[-49.90189901899018,62.87642027433205],[-49.873098730987294,62.8899288924911],[-49.873098730987294,62.89668320157065],[-49.916299162991635,62.888240315221225],[-49.95949959499595,62.86966596525252],[-50.03870038700387,62.822385801695816],[-50.10350103501034,62.798745719917434],[-50.13590135901359,62.77848279267886],[-50.150301503015015,62.77848279267886],[-50.16110161101611,62.78861425629816],[-50.14670146701468,62.80718860626686],[-50.19710197101972,62.80718860626686],[-50.19710197101972,62.80043429718734],[-50.1719017190172,62.78185994721861],[-50.1791017910179,62.76666275178968],[-50.225902259022575,62.736268360931774],[-50.243902439024396,62.71431685642332],[-50.25470254702546,62.70756254734377],[-50.27270272702725,62.705873970073895],[-50.283502835028344,62.71262827915342],[-50.28710287102871,62.7244483200426],[-50.29790297902977,62.736268360931774],[-50.319503195031956,62.73964551547155],[-50.31230312303123,62.754842710900505],[-50.269102691026916,62.790302833568035],[-50.26550265502655,62.798745719917434],[-50.26550265502655,62.81900864715604],[-50.26190261902619,62.822385801695816],[-50.251102511025096,62.825762956235565],[-50.24750247502473,62.83251726531509],[-50.243902439024396,62.84264872893439],[-50.243902439024396,62.852780192553695],[-50.23670236702367,62.85615734709347],[-50.18270182701826,62.89668320157065],[-50.16110161101611,62.90512608792005],[-50.16110161101611,62.910191819729704],[-50.16470164701647,62.91356897426948],[-50.16110161101611,62.91863470607913],[-50.143101431014315,62.93889763331771],[-49.797497974979734,63.0098178786528],[-49.74349743497436,63.03176938316125],[-49.70389703897038,63.06047519674925],[-49.76869768697688,63.067229505828806],[-49.80469804698046,63.06385235128903],[-49.82989829898298,63.05203231039985],[-49.847898478984774,63.0368351149709],[-50.024300243002415,62.97604633325514],[-50.15390153901538,62.96760344690571],[-50.18270182701826,62.95916056055631],[-50.23670236702367,62.893306047030876],[-50.243902439024396,62.8899288924911],[-50.25470254702546,62.884863160681476],[-50.26550265502655,62.87810885160192],[-50.27270272702725,62.866288810712746],[-50.27270272702725,62.85109161528382],[-50.27990279902798,62.84602588347417],[-50.294302943029436,62.84602588347417],[-50.3051030510305,62.84096015166452],[-50.32310323103229,62.825762956235565],[-50.333903339033384,62.80718860626686],[-50.34830348303481,62.79367998810781],[-50.37350373503733,62.78692567902826],[-50.39150391503915,62.79199141083791],[-50.38070380703806,62.803811451727086],[-50.36270362703627,62.812254338076514],[-50.351903519035176,62.812254338076514],[-50.35550355503554,62.830828688045216],[-50.36270362703627,62.83420584258499],[-50.377103771037696,62.83589441985487],[-50.38790387903879,62.84096015166452],[-50.39150391503915,62.84433730620427],[-50.402304023040216,62.84940303801392],[-50.402304023040216,62.85615734709347],[-50.36630366303663,62.883174583411574],[-50.36630366303663,62.8899288924911],[-50.326703267032656,62.93214332423818],[-50.319503195031956,62.93889763331771],[-50.301503015030136,62.94058621058758],[-50.28710287102871,62.94902909693701],[-50.269102691026916,62.95747198328641],[-50.258302583025824,62.96591486963584],[-50.24030240302403,62.98786637414432],[-50.22950229502294,62.99630926049372],[-50.21510215102151,62.999686415033494],[-50.175501755017535,63.00137499230337],[-50.15750157501574,63.00644072411302],[-50.14670146701468,63.01994934227207],[-50.23670236702367,63.04527800132033],[-50.25470254702546,63.043589424050424],[-50.26190261902619,63.03345796043115],[-50.276302763027616,62.99293210595397],[-50.27990279902798,62.97942348779489],[-50.38070380703806,62.94902909693701],[-50.41670416704167,62.945651942397234],[-50.47070470704708,62.950717674206885],[-50.48150481504814,62.955783406016536],[-50.49230492304923,62.97604633325514],[-50.503105031050296,62.97942348779489],[-50.51750517505175,62.972669178715364],[-50.51390513905139,62.96253771509606],[-50.52470524705245,62.96253771509606],[-50.535505355053544,62.96760344690571],[-50.54990549905497,62.97604633325514],[-50.56430564305643,62.981112065064764],[-50.59670596705968,62.97435775598524],[-50.61470614706147,62.97942348779489],[-50.49230492304923,63.01488361046242],[-50.4959049590496,63.02163791954197],[-50.49950499504993,63.0283922286215],[-50.503105031050296,63.035146537701024],[-50.510305103051024,63.040212269510675],[-50.51390513905139,63.05203231039985],[-50.52470524705245,63.05540946493963],[-50.53910539105391,63.053720887669726],[-50.553505535055336,63.0469665785902],[-50.54630546305464,63.04190084678055],[-50.53910539105391,63.026703651351625],[-50.5571055710557,63.026703651351625],[-50.57870578705786,63.0283922286215],[-50.59670596705968,63.03345796043115],[-50.61470614706147,63.040212269510675],[-50.60030600306001,63.053720887669726],[-50.59310593105931,63.05878661947938],[-50.585905859058585,63.06047519674925],[-50.58950589505895,63.07229523763846],[-50.59670596705968,63.08073812398786],[-50.60750607506074,63.09593531941681],[-50.58950589505895,63.097623896686684],[-50.54630546305464,63.09593531941681],[-50.535505355053544,63.097623896686684],[-50.535505355053544,63.10100105122646],[-50.535505355053544,63.106066783036084],[-50.53190531905318,63.10944393757586],[-50.503105031050296,63.12295255573491],[-50.47070470704708,63.133084019354214],[-50.43830438304383,63.13646117389399],[-50.427504275042736,63.14321548297352],[-50.42390423904237,63.15334694659282],[-50.4311043110431,63.16347841021212],[-50.44910449104489,63.165166987481996],[-50.44910449104489,63.17192129656152],[-50.39870398703985,63.18880706926035],[-50.06030060300603,63.22933292373753],[-50.1071010710107,63.23946438735683],[-50.29790297902977,63.23271007827731],[-50.351903519035176,63.23946438735683],[-50.359103591035904,63.236087232817056],[-50.36630366303663,63.22426719192788],[-50.377103771037696,63.217512882848354],[-50.427504275042736,63.19387280107],[-50.459904599045984,63.18542991472057],[-50.48870488704887,63.1837413374507],[-50.51750517505175,63.192184223800126],[-50.51750517505175,63.19893853287965],[-50.51390513905139,63.200627110149526],[-50.503105031050296,63.20569284195918],[-50.560705607056065,63.22595576919778],[-50.59310593105931,63.231021501007405],[-50.60750607506074,63.21582430557848],[-50.61830618306183,63.20569284195918],[-50.67950679506794,63.217512882848354],[-50.69750697506976,63.2124471510387],[-50.78030780307802,63.2023156874194],[-50.80190801908017,63.195561378339875],[-50.82350823508236,63.17867560564105],[-50.85590855908558,63.16178983294222],[-50.888308883088825,63.14828121478317],[-50.913509135091346,63.14321548297352],[-50.92430924309244,63.146592637513294],[-50.93150931509314,63.15503552386269],[-50.93150931509314,63.16685556475187],[-50.92790927909277,63.17867560564105],[-50.920709207092074,63.18542991472057],[-50.84870848708488,63.217512882848354],[-50.82350823508236,63.22426719192788],[-50.80190801908017,63.23439865554718],[-50.77670776707765,63.252973005515884],[-50.812708127081265,63.25128442824601],[-50.85590855908558,63.23946438735683],[-50.89910899108992,63.222578614658005],[-50.92430924309244,63.2023156874194],[-50.94950949509496,63.18036418291095],[-50.963909639096386,63.17023271929165],[-50.978309783097814,63.165166987481996],[-50.9999099991,63.165166987481996],[-51.039510395103946,63.18036418291095],[-51.05751057510574,63.18542991472057],[-51.053910539105374,63.192184223800126],[-51.05031050310504,63.209069996498954],[-51.039510395103946,63.22595576919778],[-51.028710287102854,63.23271007827731],[-51.01791017910179,63.23439865554718],[-51.003510035100334,63.244530119166484],[-50.99270992709927,63.24621869643636],[-50.98550985509854,63.244530119166484],[-50.978309783097814,63.24115296462671],[-50.971109711097114,63.23777581008696],[-50.963909639096386,63.23946438735683],[-50.95670956709566,63.25128442824601],[-50.97470974709748,63.25635016005566],[-51.014310143101426,63.25972731459541],[-51.03231032310322,63.25635016005566],[-51.04311043110431,63.249595850976135],[-51.053910539105374,63.24621869643636],[-51.07551075510756,63.252973005515884],[-51.0611106111061,63.26817020094484],[-51.046710467104674,63.27323593275449],[-51.02511025110252,63.27661308729424],[-51.003510035100334,63.28843312818344],[-51.021510215102154,63.293498859993065],[-51.071910719107194,63.28843312818344],[-51.089910899108986,63.298564591802716],[-51.097110971109714,63.312073209961795],[-51.10071100711008,63.32895898266062],[-51.097110971109714,63.342467600819674],[-51.08631086310862,63.3492219098992],[-50.83430834308342,63.355976218978725],[-50.84150841508415,63.355976218978725],[-50.49230492304923,63.37117341440768],[-50.477904779047776,63.37623914621733],[-50.47430474304741,63.37961630075711],[-50.459904599045984,63.39481349618603],[-50.452704527045256,63.39819065072581],[-50.27990279902798,63.40325638253546],[-50.333903339033384,63.42183073250416],[-50.402304023040216,63.42520788704394],[-50.46710467104671,63.418453577964385],[-50.553505535055336,63.39312491891616],[-50.75150751507513,63.38637060983663],[-50.77670776707765,63.37623914621733],[-50.787507875078745,63.39312491891616],[-50.80190801908017,63.39819065072581],[-50.81990819908199,63.396502073455935],[-50.84150841508415,63.38974776437638],[-50.84870848708488,63.38637060983663],[-50.85950859508594,63.38130487802698],[-50.86670866708667,63.377927723487204],[-50.87750877508773,63.37623914621733],[-50.89190891908919,63.37623914621733],[-50.92430924309244,63.382993455296855],[-50.963909639096386,63.38130487802698],[-51.0071100711007,63.374550568947456],[-51.05031050310504,63.37117341440768],[-51.08631086310862,63.382993455296855],[-51.0611106111061,63.396502073455935],[-51.039510395103946,63.418453577964385],[-51.01791017910179,63.445470814282515],[-51.003510035100334,63.472488050600646],[-51.028710287102854,63.47417662787052],[-51.046710467104674,63.47079947333077],[-51.0611106111061,63.458979432441595],[-51.064710647106466,63.43533935066321],[-51.07551075510756,63.42014215523429],[-51.097110971109714,63.39987922799568],[-51.11871118711187,63.382993455296855],[-51.13671136711366,63.37623914621733],[-51.172711727117274,63.38130487802698],[-51.165511655116546,63.39987922799568],[-51.147511475114754,63.42014215523429],[-51.13671136711366,63.43533935066321],[-51.165511655116546,63.44715939155239],[-51.20871208712086,63.42858504158369],[-51.223112231122315,63.445470814282515],[-51.179911799117974,63.46235658698134],[-51.16191161911618,63.47417662787052],[-51.14391143911439,63.48937382329947],[-51.1259112591126,63.496128132379],[-51.08631086310862,63.4859966687597],[-51.06831068310683,63.48937382329947],[-51.05751057510574,63.49781670964887],[-51.039510395103946,63.50457101872843],[-50.79470794707947,63.52652252323688],[-50.762307623076225,63.53665398685618],[-50.74430744307443,63.55522833682488],[-50.8091080910809,63.55522833682488],[-51.053910539105374,63.52652252323688],[-51.07551075510756,63.52821110050678],[-51.09351093510935,63.53158825504653],[-51.104311043110414,63.53665398685618],[-51.11871118711187,63.55860549136466],[-51.1331113311133,63.57717984133336],[-51.147511475114754,63.59575419130209],[-51.14391143911439,63.61263996400092],[-51.122311223112234,63.63121431396962],[-51.10071100711008,63.62108285035032],[-51.08271082710826,63.62952573669975],[-51.06831068310683,63.6430343548588],[-51.05751057510574,63.6514772412082],[-51.03231032310322,63.64810008666845],[-50.989109891098906,63.632902891239496],[-50.91710917109171,63.622771427620194],[-50.90990909909098,63.619394273080445],[-50.90990909909098,63.61095138673102],[-50.90630906309062,63.60926280946114],[-50.89910899108992,63.61095138673102],[-50.88470884708846,63.61601711854067],[-50.8811088110881,63.61601711854067],[-50.57510575105749,63.64472293212867],[-50.560705607056065,63.63628004577927],[-50.56430564305643,63.62108285035032],[-50.56430564305643,63.61095138673102],[-50.54630546305464,63.61601711854067],[-50.53190531905318,63.62614858215997],[-50.52110521105212,63.63965720031902],[-50.503105031050296,63.6717401684468],[-50.53190531905318,63.67849447752633],[-50.895508955089554,63.63121431396962],[-50.93150931509314,63.63459146850937],[-51.046710467104674,63.66498585936728],[-51.07551075510756,63.66498585936728],[-51.1259112591126,63.6430343548588],[-51.15831158311582,63.63628004577927],[-51.18351183511834,63.62952573669975],[-51.1871118711187,63.61095138673102],[-51.17631176311764,63.587311304952664],[-51.129511295112934,63.52652252323688],[-51.129511295112934,63.51301390507783],[-51.16191161911618,63.507948173268176],[-51.17631176311764,63.51132532780795],[-51.19431194311943,63.524833945967],[-51.205112051120494,63.52821110050678],[-51.223112231122315,63.529899677776655],[-51.27711277112772,63.54847402774536],[-51.37071370713707,63.55522833682488],[-51.3779137791378,63.55353975955501],[-51.3851138511385,63.55016260501526],[-51.3851138511385,63.543408295935706],[-51.381513815138135,63.534965409586306],[-51.39231392313923,63.534965409586306],[-51.40311403114032,63.534965409586306],[-51.42111421114211,63.54171971866583],[-51.41751417514175,63.55016260501526],[-51.41031410314102,63.556916914094785],[-51.399513995139955,63.56029406863453],[-51.38871388713886,63.561982645904436],[-51.39231392313923,63.56873695498396],[-51.39231392313923,63.57211410952371],[-51.39591395913959,63.57549126406349],[-51.323913239132395,63.614328541270794],[-51.305913059130575,63.63121431396962],[-51.35991359913598,63.622771427620194],[-51.3779137791378,63.62614858215997],[-51.399513995139955,63.641345777588924],[-51.53991539915398,63.685248786605854],[-51.53991539915398,63.69200309568541],[-51.49671496714967,63.70551171384446],[-51.349113491134915,63.71902033200351],[-51.349113491134915,63.725774641083035],[-51.42831428314284,63.73252895016259],[-51.482314823148215,63.72408606381316],[-51.48951489514894,63.71395460019386],[-51.53631536315362,63.70551171384446],[-51.550715507155076,63.70551171384446],[-51.557915579155775,63.71564317746376],[-51.557915579155775,63.730840372892686],[-51.54711547115471,63.744348991051766],[-51.52911529115292,63.76461191829034],[-51.49671496714967,63.779809113719296],[-51.20871208712086,63.815269236386825],[-51.230312303123014,63.82540070000613],[-51.21951219512195,63.837220740895305],[-51.115111151111506,63.877746595372486],[-50.95670956709566,63.91489529530992],[-50.92430924309244,63.931781068008746],[-50.92430924309244,63.93853537708827],[-50.945909459094594,63.931781068008746],[-51.02511025110252,63.92502675892919],[-51.16911169111691,63.891255213531565],[-51.298712987129875,63.828777854545905],[-51.34191341913419,63.8186463909266],[-51.40311403114032,63.81189208184708],[-51.457114571145695,63.8169578136567],[-51.47871478714788,63.842286472704956],[-51.46431464314642,63.85748366813391],[-51.44271442714427,63.85241793632426],[-51.41751417514175,63.84397504997483],[-51.40311403114032,63.842286472704956],[-51.399513995139955,63.859172245403784],[-51.406714067140655,63.87605801810261],[-51.406714067140655,63.88956663626166],[-51.374313743137435,63.891255213531565],[-51.374313743137435,63.89800952261109],[-51.39231392313923,63.90307525442074],[-51.41031410314102,63.91151814077014],[-51.406714067140655,63.93009249073884],[-51.424714247142475,63.93853537708827],[-51.44271442714427,63.94697826343767],[-51.43551435514354,63.9554211497871],[-51.41751417514175,63.95879830432685],[-51.39231392313923,63.95879830432685],[-51.37071370713707,63.96048688159675],[-51.35991359913598,63.97230692248593],[-51.41751417514175,63.98581554064498],[-51.43551435514354,63.98750411791485],[-51.48591485914858,63.9739954997558],[-51.5039150391504,63.97230692248593],[-51.54351543515435,63.97906123156545],[-51.61911619116191,64.00776704515346],[-51.65511655116552,64.01452135423298],[-51.61911619116191,64.03478428147159],[-51.57951579515796,64.04322716782099],[-51.44271442714427,64.03985001328124],[-51.42111421114211,64.03478428147159],[-51.35271352713528,64.01452135423298],[-51.32751327513276,64.01283277696311],[-51.305913059130575,64.02127566331251],[-51.38871388713886,64.05504720871016],[-51.35991359913598,64.06686724959934],[-51.122311223112234,64.09050733137772],[-51.0611106111061,64.07699871321864],[-51.03231032310322,64.07531013594877],[-50.98190981909818,64.09726164045725],[-50.8811088110881,64.09726164045725],[-50.82710827108269,64.11245883588617],[-50.6831068310683,64.17155904033208],[-50.65430654306542,64.17493619487183],[-50.59670596705968,64.16142757671278],[-50.56790567905679,64.158050422173],[-50.4959049590496,64.158050422173],[-50.485104851048504,64.15467326763326],[-50.46350463504635,64.1411646494742],[-50.44910449104489,64.13609891766455],[-50.434704347043464,64.13778749493443],[-50.420304203042036,64.14285322674408],[-50.409504095040944,64.15129611309348],[-50.39870398703985,64.16142757671278],[-50.384303843038424,64.16649330852243],[-50.344703447034476,64.16480473125256],[-50.326703267032656,64.16480473125256],[-50.24030240302403,64.20026485392009],[-50.21150211502115,64.20533058572974],[-50.14670146701468,64.20195343118996],[-50.11430114301143,64.19351054484056],[-50.099900999009975,64.17493619487183],[-50.099900999009975,64.15129611309348],[-50.09630096300964,64.1411646494742],[-50.092700927009275,64.129344608585],[-50.08550085500855,64.12427887677538],[-50.07110071100712,64.11921314496573],[-50.06390063900639,64.11414741315608],[-50.07110071100712,64.10401594953677],[-50.07110071100712,64.09726164045725],[-50.0531005310053,64.10739310407655],[-50.05670056700566,64.1209017222356],[-50.07110071100712,64.13609891766455],[-50.07830078300782,64.14791895855373],[-50.07830078300782,64.16649330852243],[-50.07110071100712,64.18000192668148],[-50.06030060300603,64.19013339030079],[-50.0459004590046,64.19857627665021],[-50.06390063900639,64.21208489480927],[-50.08550085500855,64.21546204934904],[-50.11070110701107,64.21546204934904],[-50.13230132301322,64.21883920388879],[-50.12870128701286,64.22221635842857],[-50.117901179011795,64.23065924477797],[-50.11430114301143,64.23403639931774],[-50.16110161101611,64.24416786293705],[-50.434704347043464,64.19182196757066],[-50.52470524705245,64.18844481303091],[-50.553505535055336,64.17831334941161],[-50.54270542705427,64.20026485392009],[-50.53190531905318,64.21377347207914],[-50.46350463504635,64.2678079447154],[-50.445504455044556,64.2779394083347],[-50.420304203042036,64.28807087195398],[-50.41670416704167,64.30664522192271],[-50.39150391503915,64.32521957189141],[-50.333903339033384,64.35054823093964],[-50.36270362703627,64.35899111728907],[-50.395103951039516,64.35561396274929],[-50.42390423904237,64.34210534459024],[-50.485104851048504,64.29482518103353],[-50.50670506705066,64.28300514014433],[-50.56430564305643,64.26443079017562],[-50.57150571505716,64.26105363563588],[-50.58230582305822,64.25261074928645],[-50.58950589505895,64.24247928566714],[-50.59670596705968,64.23572497658762],[-50.62550625506253,64.23234782204787],[-50.65430654306542,64.22221635842857],[-50.66870668706687,64.21883920388879],[-50.71910719107191,64.22052778115867],[-50.737107371073705,64.21883920388879],[-50.76590765907659,64.20870774026949],[-50.812708127081265,64.17831334941161],[-51.1259112591126,64.1310331858549],[-51.4391143911439,64.0820644450283],[-51.44631446314463,64.08375302229817],[-51.46071460714606,64.09388448591747],[-51.47151471514715,64.09726164045725],[-51.5651156511565,64.09726164045725],[-51.557915579155775,64.10401594953677],[-51.583115831158295,64.10908168134642],[-51.608316083160815,64.1107702586163],[-51.633516335163335,64.11583599042595],[-51.64791647916479,64.129344608585],[-51.629916299163,64.13609891766455],[-51.57951579515796,64.16480473125256],[-51.56151561515614,64.16987046306221],[-51.52191521915219,64.17155904033208],[-51.46071460714606,64.16818188579231],[-51.39231392313923,64.14791895855373],[-51.356313563135615,64.14454180401395],[-51.381513815138135,64.15973899944291],[-51.457114571145695,64.18844481303091],[-51.49311493114931,64.19688769938031],[-51.52911529115292,64.20026485392009],[-51.550715507155076,64.19519912211044],[-51.56871568715687,64.18337908122126],[-51.67311673116731,64.15129611309348],[-51.691116911169104,64.15129611309348],[-51.70551705517056,64.16142757671278],[-51.69831698316983,64.18506765849114],[-51.71271712717126,64.19013339030079],[-51.766717667176664,64.18506765849114],[-51.73071730717308,64.20870774026949],[-51.66231662316622,64.21883920388879],[-51.41391413914138,64.21883920388879],[-51.40311403114032,64.21546204934904],[-51.37071370713707,64.20026485392009],[-51.35271352713528,64.18675623576104],[-51.33471334713346,64.18169050395139],[-51.26631266312663,64.17831334941161],[-51.1331113311133,64.20701916299961],[-51.122311223112234,64.21377347207914],[-51.08271082710826,64.2374135538575],[-51.06831068310683,64.2391021311274],[-51.01071010710106,64.2391021311274],[-50.996309963099634,64.2374135538575],[-50.96750967509675,64.22221635842857],[-50.95310953109529,64.21883920388879],[-50.945909459094594,64.22221635842857],[-50.92430924309244,64.2374135538575],[-50.913509135091346,64.2391021311274],[-50.895508955089554,64.24079070839727],[-50.84870848708488,64.25429932655632],[-50.84870848708488,64.26105363563588],[-50.895508955089554,64.2678079447154],[-50.9999099991,64.25936505836597],[-51.046710467104674,64.28131656287445],[-51.028710287102854,64.28469371741423],[-51.01071010710106,64.29313660376363],[-50.989109891098906,64.31171095373233],[-50.98190981909818,64.3150881082721],[-50.96750967509675,64.32015384008176],[-50.963909639096386,64.32184241735163],[-50.96030960309602,64.33028530370106],[-50.95670956709566,64.33366245824081],[-50.95670956709566,64.33703961278059],[-50.95670956709566,64.34379392186011],[-50.95670956709566,64.34717107639989],[-50.963909639096386,64.35392538547941],[-50.963909639096386,64.36067969455894],[-50.96030960309602,64.36574542636859],[-50.938709387093866,64.37081115817824],[-50.93150931509314,64.37418831271799],[-50.913509135091346,64.39613981722647],[-50.89910899108992,64.40627128084577],[-50.888308883088825,64.41133701265542],[-50.8091080910809,64.42822278535425],[-50.76590765907659,64.42822278535425],[-50.74430744307443,64.40795985811565],[-50.72270722707228,64.39782839449637],[-50.61470614706147,64.37925404452764],[-50.57870578705786,64.38431977633729],[-50.59670596705968,64.3944512399566],[-50.62550625506253,64.40120554903612],[-50.67590675906757,64.4045827035759],[-50.686706867068665,64.41133701265542],[-50.69030690306903,64.42484563081447],[-50.69030690306903,64.44004282624343],[-50.69750697506976,64.4518628671326],[-50.65430654306542,64.43497709443378],[-50.51750517505175,64.4045827035759],[-50.50670506705066,64.4045827035759],[-50.49950499504993,64.40627128084577],[-50.48870488704887,64.40627128084577],[-50.46350463504635,64.39782839449637],[-50.420304203042036,64.39782839449637],[-50.36630366303663,64.38938550814694],[-50.34110341103411,64.39107408541682],[-50.34110341103411,64.4045827035759],[-50.326703267032656,64.40964843538555],[-50.27990279902798,64.4045827035759],[-50.269102691026916,64.40627128084577],[-50.25470254702546,64.40964843538555],[-50.24750247502473,64.41133701265542],[-50.243902439024396,64.4147141671952],[-50.243902439024396,64.41977989900482],[-50.243902439024396,64.42653420808438],[-50.243902439024396,64.43159993989403],[-50.233102331023304,64.4332885171639],[-50.20430204302042,64.43666567170365],[-50.18630186301863,64.44679713532295],[-50.1791017910179,64.44679713532295],[-50.175501755017535,64.44848571259286],[-50.175501755017535,64.45524002167238],[-50.1791017910179,64.46030575348203],[-50.18630186301863,64.4619943307519],[-50.19710197101972,64.46537148529168],[-50.20430204302042,64.46537148529168],[-50.200702007020055,64.4704372171013],[-50.19710197101972,64.47719152618086],[-50.19710197101972,64.48056868072061],[-50.225902259022575,64.47719152618086],[-50.24750247502473,64.4704372171013],[-50.3051030510305,64.44848571259286],[-50.351903519035176,64.43835424897355],[-50.38070380703806,64.42653420808438],[-50.395103951039516,64.42484563081447],[-50.427504275042736,64.42653420808438],[-50.62550625506253,64.46706006256156],[-50.65430654306542,64.48056868072061],[-50.65430654306542,64.48732298980013],[-50.6291062910629,64.49238872160979],[-50.553505535055336,64.51434022611826],[-50.49230492304923,64.52616026700744],[-50.459904599045984,64.53629173062674],[-50.44190441904419,64.55655465786535],[-50.47430474304741,64.54473461697614],[-50.57870578705786,64.53460315335687],[-50.63990639906399,64.52278311246769],[-50.67230672306724,64.52616026700744],[-50.69030690306903,64.54811177151592],[-50.67590675906757,64.55317750332557],[-50.65430654306542,64.56499754421475],[-50.636306363063625,64.5785061623738],[-50.6291062910629,64.59032620326298],[-50.69030690306903,64.5801947396437],[-50.72270722707228,64.5801947396437],[-50.75150751507513,64.59032620326298],[-50.74430744307443,64.59708051234253],[-50.78390783907838,64.60214624415218],[-50.87750877508773,64.58188331691358],[-50.91710917109171,64.60383482142205],[-50.888308883088825,64.61565486231123],[-50.837908379083785,64.64604925316911],[-50.80550805508054,64.65111498497876],[-50.737107371073705,64.64942640770889],[-50.6831068310683,64.63760636681971],[-50.60750607506074,64.63085205774019],[-50.59310593105931,64.63422921227993],[-50.5571055710557,64.65111498497876],[-50.54270542705427,64.65618071678841],[-50.52470524705245,64.66293502586794],[-50.510305103051024,64.66800075767759],[-50.485104851048504,64.65786929405829],[-50.47070470704708,64.65786929405829],[-50.459904599045984,64.66124644859806],[-50.44910449104489,64.66631218040772],[-50.477904779047776,64.67475506675711],[-50.503105031050296,64.67813222129689],[-50.58950589505895,64.66968933494746],[-50.611106111061105,64.67306648948724],[-50.661506615066145,64.68488653037642],[-50.661506615066145,64.69164083945594],[-50.48150481504814,64.71359234396442],[-50.46350463504635,64.71021518942467],[-50.427504275042736,64.6967065712656],[-50.409504095040944,64.69164083945594],[-50.33750337503375,64.68488653037642],[-50.3051030510305,64.67475506675711],[-50.276302763027616,64.65449213951854],[-50.26190261902619,64.63929494408958],[-50.23670236702367,64.58188331691358],[-50.225902259022575,64.56330896694487],[-50.1719017190172,64.50420876249896],[-50.150301503015015,64.48732298980013],[-50.02070020700208,64.4518628671326],[-49.948699486994855,64.42146847627473],[-49.919899198992,64.41640274446507],[-49.891098910989115,64.40627128084577],[-49.86229862298623,64.40289412630602],[-49.847898478984774,64.39951697176625],[-49.707497074970746,64.34885965366976],[-49.65349653496534,64.33535103551071],[-49.59229592295924,64.34379392186011],[-49.58509585095851,64.34379392186011],[-49.595895958959574,64.35899111728907],[-49.62469624696246,64.37081115817824],[-49.657096570965706,64.38094262179754],[-49.682296822968226,64.39107408541682],[-49.682296822968226,64.39782839449637],[-49.682296822968226,64.4231570535446],[-49.72549725497254,64.43497709443378],[-49.815498154981555,64.43835424897355],[-49.847898478984774,64.46030575348203],[-49.88389883898839,64.47719152618086],[-49.89469894698948,64.48056868072061],[-49.919899198992,64.48394583526039],[-50.00630006300062,64.50758591703874],[-50.042300423004235,64.51940595792792],[-50.06390063900639,64.52953742154722],[-50.07110071100712,64.54473461697614],[-50.074700747007455,64.55655465786535],[-50.08550085500855,64.5700632760244],[-50.11070110701107,64.60214624415218],[-50.117901179011795,64.61227770777145],[-50.12150121501216,64.62409774866063],[-50.12150121501216,64.63760636681971],[-50.11430114301143,64.65449213951854],[-50.099900999009975,64.66293502586794],[-50.08550085500855,64.66800075767759],[-50.00990009900099,64.68150937583667],[-49.99549995499956,64.6882636849162],[-49.99549995499956,64.70177230307524],[-50.024300243002415,64.70852661215477],[-50.07830078300782,64.71359234396442],[-50.099900999009975,64.71021518942467],[-50.13590135901359,64.70008372580537],[-50.15390153901538,64.70008372580537],[-50.1719017190172,64.70177230307524],[-50.18990189901899,64.70852661215477],[-50.218702187021876,64.7254123848536],[-50.20430204302042,64.74736388936208],[-50.200702007020055,64.7541181984416],[-50.18990189901899,64.76087250752113],[-50.1719017190172,64.76762681660068],[-50.15390153901538,64.77100397114043],[-50.13950139501395,64.77775828021996],[-50.12870128701286,64.78788974383926],[-50.143101431014315,64.80139836199834],[-50.12870128701286,64.81321840288751],[-49.999099990999895,64.863875720984],[-50.01350013500135,64.8723186073334],[-50.042300423004235,64.863875720984],[-50.074700747007455,64.85036710282492],[-50.099900999009975,64.8436127937454],[-50.16110161101611,64.83854706193574],[-50.19710197101972,64.82841559831644],[-50.21150211502115,64.81321840288751],[-50.22230222302224,64.79633263018869],[-50.24750247502473,64.77438112568021],[-50.276302763027616,64.7558067757115],[-50.294302943029436,64.74736388936208],[-50.31230312303123,64.74736388936208],[-50.319503195031956,64.75074104390185],[-50.326703267032656,64.7558067757115],[-50.33750337503375,64.7642496620609],[-50.34830348303481,64.77100397114043],[-50.35550355503554,64.76931539387056],[-50.36630366303663,64.7642496620609],[-50.38070380703806,64.76087250752113],[-50.53910539105391,64.76931539387056],[-50.560705607056065,64.77438112568021],[-50.57510575105749,64.78620116656938],[-50.585905859058585,64.80308693926821],[-50.60030600306001,64.84023563920562],[-50.60750607506074,64.85543283463457],[-50.6219062190622,64.87063003006352],[-50.66510665106651,64.892581534572],[-50.6831068310683,64.90777873000093],[-50.6831068310683,64.92466450269976],[-50.686706867068665,64.9297302345094],[-50.69030690306903,64.93986169812871],[-50.69750697506976,64.94492742993836],[-50.69030690306903,64.95337031628776],[-50.69390693906939,64.96012462536731],[-50.71910719107191,64.97363324352636],[-50.70470704707046,64.98376470714567],[-50.69750697506976,64.99389617076494],[-50.69390693906939,65.00571621165415],[-50.70470704707046,65.01415909800355],[-50.72630726307261,65.02091340708307],[-50.75150751507513,65.02091340708307],[-50.77670776707765,65.02429056162285],[-50.79110791107911,65.04117633432168],[-50.79110791107911,65.05130779794098],[-50.79110791107911,65.06312783883016],[-50.79470794707947,65.07832503425908],[-50.79830798307984,65.09014507514826],[-50.83430834308342,65.12391662054591],[-50.84150841508415,65.13067092962547],[-50.83070830708306,65.14249097051464],[-50.74430744307443,65.17288536137252],[-50.70470704707046,65.19314828861113],[-50.69030690306903,65.20665690677018],[-50.70110701107009,65.21003406130993],[-50.711907119071185,65.21003406130993],[-50.737107371073705,65.20665690677018],[-50.75150751507513,65.194836865881],[-50.8811088110881,65.15262243413392],[-50.888308883088825,65.15093385686404],[-50.895508955089554,65.1559995886737],[-50.89910899108992,65.16275389775322],[-50.90270902709025,65.16950820683275],[-50.90630906309062,65.17288536137252],[-50.91710917109171,65.1762625159123],[-50.93150931509314,65.18639397953157],[-50.94950949509496,65.2032797522304],[-50.95310953109529,65.2134112158497],[-50.963909639096386,65.22016552492923],[-50.978309783097814,65.22016552492923],[-50.98550985509854,65.2134112158497],[-50.98550985509854,65.20834548404005],[-50.98190981909818,65.20159117496053],[-50.978309783097814,65.194836865881],[-50.97470974709748,65.19314828861113],[-50.96750967509675,65.18977113407135],[-50.96750967509675,65.1847054022617],[-50.971109711097114,65.17795109318217],[-50.971109711097114,65.17288536137252],[-50.95670956709566,65.14924527959417],[-50.94230942309423,65.12898235235556],[-50.91710917109171,65.11547373419651],[-50.888308883088825,65.11040800238686],[-50.895508955089554,65.09858796149769],[-50.90990909909098,65.09521080695791],[-50.94230942309423,65.09014507514826],[-50.94230942309423,65.08339076606873],[-50.89910899108992,65.0766364569892],[-50.8811088110881,65.06988214790968],[-50.8739087390874,65.05299637521085],[-50.8739087390874,65.04455348886142],[-50.8811088110881,65.0276677161626],[-50.8811088110881,65.0090933661939],[-50.888308883088825,64.99220759349507],[-50.888308883088825,64.98376470714567],[-50.86670866708667,64.97869897533602],[-50.83070830708306,64.98714186168542],[-50.762307623076225,65.00402763438424],[-50.72270722707228,64.99389617076494],[-50.737107371073705,64.97532182079624],[-50.71910719107191,64.94492742993836],[-50.737107371073705,64.93310738904918],[-50.72630726307261,64.92804165723953],[-50.71910719107191,64.92128734816],[-50.70830708307082,64.91453303908048],[-50.70470704707046,64.90440157546118],[-50.71910719107191,64.892581534572],[-50.77310773107732,64.87063003006352],[-50.74430744307443,64.863875720984],[-50.70470704707046,64.86049856644422],[-50.66510665106651,64.85205568009482],[-50.64710647106472,64.83348133012609],[-50.65430654306542,64.82166128923691],[-50.66870668706687,64.81490698015739],[-50.686706867068665,64.81152982561761],[-50.70110701107009,64.80646409380799],[-50.70830708307082,64.78957832110916],[-50.69750697506976,64.78282401202961],[-50.661506615066145,64.78113543475973],[-50.636306363063625,64.77100397114043],[-50.64350643506435,64.75918393025125],[-50.66510665106651,64.75074104390185],[-50.69390693906939,64.74736388936208],[-50.70110701107009,64.75242962117173],[-50.70470704707046,64.76087250752113],[-50.70830708307082,64.77100397114043],[-50.71910719107191,64.77438112568021],[-50.73350733507334,64.77100397114043],[-50.8811088110881,64.6967065712656],[-50.90990909909098,64.68488653037642],[-51.064710647106466,64.66631218040772],[-51.07551075510756,64.65280356224864],[-51.0611106111061,64.64773783043901],[-51.03231032310322,64.65111498497876],[-51.01791017910179,64.64773783043901],[-51.01071010710106,64.64098352135946],[-51.01071010710106,64.63422921227993],[-51.021510215102154,64.63085205774019],[-51.14391143911439,64.6173434395811],[-51.197911979119795,64.62409774866063],[-51.21591215912159,64.62409774866063],[-51.179911799117974,64.67137791221737],[-51.16911169111691,64.71190376669455],[-51.147511475114754,64.72372380758372],[-51.122311223112234,64.73047811666325],[-51.10791107911078,64.74060958028255],[-51.09351093510935,64.75918393025125],[-51.07551075510756,64.75749535298138],[-51.05031050310504,64.7541181984416],[-51.02511025110252,64.76087250752113],[-51.03231032310322,64.76256108479103],[-51.053910539105374,64.76762681660068],[-51.05031050310504,64.77100397114043],[-51.04311043110431,64.77775828021996],[-51.039510395103946,64.78113543475973],[-51.064710647106466,64.78788974383926],[-51.10071100711008,64.79295547564891],[-51.13671136711366,64.79295547564891],[-51.2519125191252,64.76087250752113],[-51.27711277112772,64.74736388936208],[-51.29151291512915,64.73216669393312],[-51.30951309513094,64.70852661215477],[-51.32031320313203,64.68319795310654],[-51.32751327513276,64.66124644859806],[-51.33471334713346,64.65280356224864],[-51.349113491134915,64.65111498497876],[-51.36711367113671,64.65111498497876],[-51.3779137791378,64.64773783043901],[-51.41391413914138,64.62072059412088],[-51.42111421114211,64.61058913050158],[-51.43551435514354,64.54473461697614],[-51.4391143911439,64.53460315335687],[-51.44271442714427,64.53122599881709],[-51.449914499144995,64.52109453519779],[-51.457114571145695,64.51096307157852],[-51.482314823148215,64.50252018522909],[-51.48951489514894,64.49407729887969],[-51.49671496714967,64.48225725799048],[-51.5039150391504,64.47212579437121],[-51.575915759157596,64.43835424897355],[-51.601116011160116,64.39951697176625],[-51.629916299163,64.38769693087707],[-51.691116911169104,64.37756546725777],[-51.709117091170896,64.36912258090837],[-51.71271712717126,64.36236827182881],[-51.69831698316983,64.35730254001919],[-51.676716767167676,64.35730254001919],[-51.676716767167676,64.35054823093964],[-51.68751687516874,64.34041676732036],[-51.68751687516874,64.32859672643116],[-51.676716767167676,64.31677668554198],[-51.66231662316622,64.30833379919258],[-51.70551705517056,64.29989091284315],[-51.72351723517235,64.29313660376363],[-51.73791737917378,64.28131656287445],[-51.7631176311763,64.25936505836597],[-51.77391773917739,64.2492335947467],[-51.791917919179184,64.2391021311274],[-51.835118351183496,64.22559351296832],[-51.85671856718568,64.22052778115867],[-51.8819188191882,64.21883920388879],[-51.935919359193576,64.22221635842857],[-51.95031950319503,64.21883920388879],[-51.935919359193576,64.21377347207914],[-51.92871928719288,64.21377347207914],[-51.93951939519394,64.21039631753939],[-51.968319683196825,64.20533058572974],[-52.00072000720007,64.20533058572974],[-52.02952029520294,64.19857627665021],[-52.05112051120511,64.19351054484056],[-52.07272072720727,64.19182196757066],[-52.08352083520835,64.20364200845984],[-52.08352083520835,64.21715062661892],[-52.09792097920979,64.23065924477797],[-52.1051210512105,64.2374135538575],[-52.11592115921158,64.22221635842857],[-52.1411214112141,64.22221635842857],[-52.15192151921519,64.24247928566714],[-52.16272162721627,64.25598790382622],[-52.14832148321483,64.27456225379493],[-52.12672126721267,64.29313660376363],[-52.12312123121231,64.31171095373233],[-52.12672126721267,64.32690814916128],[-52.16272162721627,64.33366245824081],[-52.15552155521554,64.34885965366976],[-52.13752137521375,64.36067969455894],[-52.12312123121231,64.37756546725777],[-52.10872108721087,64.39107408541682],[-52.13752137521375,64.40627128084577],[-52.14832148321483,64.41977989900482],[-52.15912159121591,64.4332885171639],[-52.18072180721806,64.4434199807832],[-52.19152191521914,64.45861717621213],[-52.195121951219505,64.47212579437121],[-52.17352173521735,64.47888010345073],[-52.144721447214465,64.46874863983143],[-52.10872108721087,64.46537148529168],[-52.10152101521015,64.47888010345073],[-52.08712087120871,64.48563441253026],[-52.07272072720727,64.49070014433991],[-52.043920439204385,64.49576587614956],[-52.04032040320402,64.50083160795921],[-52.04752047520475,64.50758591703874],[-52.09072090720906,64.50083160795921],[-52.119521195211945,64.50252018522909],[-52.119521195211945,64.51265164884839],[-52.119521195211945,64.51771738065804],[-52.10872108721087,64.52953742154722],[-52.1411214112141,64.52447168973757],[-52.15552155521554,64.53798030789662],[-52.1411214112141,64.5514889260557],[-52.094320943209425,64.56162038967497],[-52.05832058320583,64.5700632760244],[-52.043920439204385,64.57512900783405],[-52.02952029520294,64.58526047145335],[-52.02232022320223,64.59370335780275],[-52.02232022320223,64.59708051234253],[-52.02592025920259,64.61058913050158],[-52.03672036720367,64.60214624415218],[-52.06552065520654,64.58526047145335],[-52.094320943209425,64.5886376259931],[-52.10872108721087,64.57175185329427],[-52.1411214112141,64.5785061623738],[-52.15192151921519,64.59370335780275],[-52.16632166321662,64.6072119759618],[-52.169921699216985,64.62578632593053],[-52.16272162721627,64.63254063501006],[-52.094320943209425,64.61058913050158],[-52.05112051120511,64.61396628504136],[-52.043920439204385,64.62578632593053],[-52.05832058320583,64.63254063501006],[-52.11232112321123,64.64098352135946],[-52.12312123121231,64.64604925316911],[-52.12672126721267,64.65449213951854],[-52.13032130321302,64.66631218040772],[-52.13392133921339,64.67306648948724],[-52.144721447214465,64.67813222129689],[-52.15552155521554,64.67813222129689],[-52.13392133921339,64.71359234396442],[-52.09792097920979,64.73216669393312],[-52.05832058320583,64.73892100301268],[-52.018720187201865,64.74060958028255],[-51.993519935199345,64.73723242574277],[-51.97911979119792,64.73723242574277],[-51.968319683196825,64.74398673482233],[-51.93951939519394,64.78282401202961],[-51.935919359193576,64.78620116656938],[-51.92151921519215,64.78788974383926],[-51.910719107191056,64.78620116656938],[-51.90351903519036,64.78451258929951],[-51.89631896318963,64.78620116656938],[-51.8891188911889,64.79464405291878],[-51.910719107191056,64.79464405291878],[-51.89631896318963,64.81321840288751],[-51.87471874718747,64.82503844377669],[-51.73791737917378,64.85712141190444],[-51.727117271172716,64.85880998917435],[-51.69831698316983,64.85543283463457],[-51.683916839168376,64.85712141190444],[-51.651516515165156,64.86556429825387],[-51.640716407164064,64.87063003006352],[-51.633516335163335,64.87738433914305],[-51.629916299163,64.88413864822257],[-51.62271622716227,64.88920438003223],[-51.608316083160815,64.8908929573021],[-51.59751597515975,64.88582722549245],[-51.583115831158295,64.86725287552375],[-51.56871568715687,64.863875720984],[-51.54711547115471,64.86556429825387],[-51.532715327153255,64.86894145279362],[-51.51831518315183,64.87907291641292],[-51.500315003150035,64.89427011184188],[-51.482314823148215,64.90777873000093],[-51.4391143911439,64.92804165723953],[-51.42831428314284,64.94323885266849],[-51.41751417514175,64.95674747082754],[-51.38871388713886,64.96856751171671],[-51.35991359913598,64.97701039806611],[-51.31671316713167,64.98376470714567],[-51.29151291512915,64.99389617076494],[-51.26271262712626,65.00740478892402],[-51.24471244712447,65.02091340708307],[-51.273512735127355,65.03273344797225],[-51.29511295112951,65.02429056162285],[-51.32031320313203,65.0090933661939],[-51.35271352713528,65.0006504798445],[-51.40311403114032,65.01078194346377],[-51.42111421114211,65.00740478892402],[-51.431914319143175,64.99896190257459],[-51.424714247142475,64.99558474803484],[-51.38871388713886,64.98714186168542],[-51.457114571145695,64.97194466625649],[-51.475114751147515,64.96350177990706],[-51.48951489514894,64.95337031628776],[-51.583115831158295,64.9111558845407],[-51.66231662316622,64.89427011184188],[-51.701917019170196,64.8908929573021],[-51.691116911169104,64.89427011184188],[-51.683916839168376,64.9010244209214],[-51.676716767167676,64.90777873000093],[-51.66951669516695,64.91791019362023],[-51.68751687516874,64.92128734816],[-51.683916839168376,64.92635307996966],[-51.665916659166584,64.94323885266849],[-51.658716587165856,64.94999316174801],[-51.651516515165156,64.96856751171671],[-51.64791647916479,64.97363324352636],[-51.6371163711637,64.97532182079624],[-51.59031590315902,64.97363324352636],[-51.57951579515796,64.97532182079624],[-51.56871568715687,64.98038755260589],[-51.55431554315544,64.99389617076494],[-51.626316263162636,65.00740478892402],[-51.66231662316622,65.02429056162285],[-51.676716767167676,65.0276677161626],[-51.691116911169104,65.02597913889272],[-51.70551705517056,65.02091340708307],[-51.71271712717126,65.01247052073367],[-51.716317163171624,64.99727332530472],[-51.72351723517235,64.98714186168542],[-51.73071730717308,64.98207612987576],[-51.73791737917378,64.97532182079624],[-51.73071730717308,64.96012462536731],[-51.7631176311763,64.95505889355766],[-51.791917919179184,64.94661600720823],[-51.82071820718207,64.93141881177928],[-51.842318423184224,64.91284446181058],[-51.827918279182796,64.9111558845407],[-51.81351813518134,64.9111558845407],[-51.79911799117991,64.90946730727083],[-51.791917919179184,64.9010244209214],[-51.78831788317882,64.88920438003223],[-51.766717667176664,64.87569576187317],[-51.7559175591756,64.863875720984],[-51.766717667176664,64.86049856644422],[-51.78831788317882,64.85712141190444],[-51.79911799117991,64.85712141190444],[-51.79911799117991,64.863875720984],[-51.784717847178456,64.87063003006352],[-51.817118171181704,64.88751580276235],[-51.83871838718386,64.8908929573021],[-51.853118531185316,64.88751580276235],[-51.87111871118711,64.87569576187317],[-51.867518675186744,64.86556429825387],[-51.86391863918638,64.85543283463457],[-51.867518675186744,64.8436127937454],[-51.87831878318784,64.83685848466587],[-51.93951939519394,64.81659555742726],[-51.94671946719467,64.81490698015739],[-51.97191971919719,64.80984124834774],[-52.01152011520115,64.80984124834774],[-52.06552065520654,64.79633263018869],[-52.08712087120871,64.79464405291878],[-52.1051210512105,64.79802120745856],[-52.09792097920979,64.80646409380799],[-52.06552065520654,64.82334986650679],[-52.00792007920079,64.83348133012609],[-51.98991989919898,64.84023563920562],[-51.98631986319862,64.8436127937454],[-51.97191971919719,64.85712141190444],[-51.943119431194305,64.87738433914305],[-51.9611196111961,64.88413864822257],[-52.00432004320042,64.89595868911175],[-52.02232022320223,64.89933584365153],[-52.03312033120331,64.90440157546118],[-52.043920439204385,64.91791019362023],[-52.05832058320583,64.92297592542988],[-52.07272072720727,64.91284446181058],[-52.043920439204385,64.88076149368283],[-52.07992079920798,64.84867852555504],[-52.18432184321843,64.80308693926821],[-52.195121951219505,64.80815267107786],[-52.21312213122131,64.81321840288751],[-52.22392223922239,64.82166128923691],[-52.21672216722166,64.835169907396],[-52.18072180721806,64.8436127937454],[-52.15552155521554,64.863875720984],[-52.21672216722166,64.88413864822257],[-52.22392223922239,64.89427011184188],[-52.21672216722166,64.9111558845407],[-52.20232202322023,64.9195987708901],[-52.16272162721627,64.92466450269976],[-52.12672126721267,64.93986169812871],[-52.1051210512105,64.94492742993836],[-52.07992079920798,64.94492742993836],[-52.06552065520654,64.94830458447811],[-52.043920439204385,64.95843604809741],[-52.02232022320223,64.96856751171671],[-52.01152011520115,64.98038755260589],[-52.03312033120331,64.98714186168542],[-52.10152101521015,64.98714186168542],[-52.08352083520835,65.0006504798445],[-52.07632076320763,65.01415909800355],[-52.08352083520835,65.02091340708307],[-52.10872108721087,65.02091340708307],[-52.144721447214465,65.00740478892402],[-52.15912159121591,65.00402763438424],[-52.16272162721627,65.01415909800355],[-52.18432184321843,65.02429056162285],[-52.19152191521914,65.0276677161626],[-52.17712177121771,65.03948775705177],[-52.16272162721627,65.04961922067108],[-52.24192241922418,65.06312783883016],[-52.277922779227794,65.07832503425908],[-52.27432274322743,65.10365369330734],[-52.25272252722527,65.11209657965674],[-52.2311223112231,65.11378515692664],[-52.18792187921879,65.11040800238686],[-52.17712177121771,65.10871942511699],[-52.16632166321662,65.10365369330734],[-52.15552155521554,65.10196511603743],[-52.144721447214465,65.10703084784708],[-52.13752137521375,65.11209657965674],[-52.12672126721267,65.11716231146639],[-52.10152101521015,65.12391662054591],[-52.10152101521015,65.13067092962547],[-52.119521195211945,65.13067092962547],[-52.14832148321483,65.12391662054591],[-52.16272162721627,65.12391662054591],[-52.17712177121771,65.12898235235556],[-52.18432184321843,65.13573666143509],[-52.19152191521914,65.15093385686404],[-52.19872198721987,65.15937674321347],[-52.20592205922058,65.16275389775322],[-52.20592205922058,65.16950820683275],[-52.20232202322023,65.17795109318217],[-52.195121951219505,65.1847054022617],[-52.15552155521554,65.19990259769065],[-52.06552065520654,65.27926572937514],[-52.00432004320042,65.31641442931254],[-52.02592025920259,65.31641442931254],[-52.05832058320583,65.30459438842337],[-52.08712087120871,65.28770861572454],[-52.12312123121231,65.25562564759676],[-52.17352173521735,65.223542679469],[-52.19152191521914,65.22016552492923],[-52.20952209522095,65.21172263857983],[-52.2311223112231,65.2049683295003],[-52.25272252722527,65.20159117496053],[-52.27432274322743,65.19990259769065],[-52.295922959229586,65.2032797522304],[-52.31032310323103,65.21003406130993],[-52.31032310323103,65.21678837038948],[-52.29232292322922,65.22016552492923],[-52.26352263522635,65.2319855658184],[-52.22392223922239,65.25900280213654],[-52.19872198721987,65.28433146118479],[-52.21672216722166,65.29615150207397],[-52.195121951219505,65.3113486975029],[-52.195121951219505,65.32485731566197],[-52.20952209522095,65.3316116247415],[-52.2311223112231,65.32992304747162],[-52.24192241922418,65.32485731566197],[-52.2671226712267,65.30797154296314],[-52.277922779227794,65.3029058111535],[-52.31032310323103,65.29277434753419],[-52.321123211232106,65.28770861572454],[-52.331923319233184,65.29952865661372],[-52.33912339123391,65.3130372747728],[-52.33552335523355,65.32823447020172],[-52.328323283232834,65.34343166563067],[-52.34992349923499,65.33667735655115],[-52.36072360723607,65.31810300658242],[-52.36792367923678,65.29615150207397],[-52.378723787237874,65.27926572937514],[-52.42552425524255,65.22691983400875],[-52.44352443524434,65.2134112158497],[-52.457924579245784,65.20834548404005],[-52.46512465124651,65.20665690677018],[-52.48672486724867,65.20665690677018],[-52.5191251912519,65.194836865881],[-52.533525335253344,65.19145971134122],[-52.529925299252994,65.2032797522304],[-52.51192511925119,65.21847694765935],[-52.47592475924759,65.24042845216783],[-52.457924579245784,65.25393707032688],[-52.479524795247954,65.25393707032688],[-52.472324723247226,65.26069137940641],[-52.46152461524615,65.26406853394619],[-52.454324543245434,65.26744568848596],[-52.44352443524434,65.26744568848596],[-52.44352443524434,65.27588857483536],[-52.46512465124651,65.28264288391489],[-52.46512465124651,65.28770861572454],[-52.46152461524615,65.28939719299441],[-52.45072450724507,65.29615150207397],[-52.46872468724686,65.3029058111535],[-52.48672486724867,65.29784007934384],[-52.50112501125011,65.29108577026432],[-52.51192511925119,65.28770861572454],[-52.52632526325263,65.29277434753419],[-52.56592565925659,65.31641442931254],[-52.56592565925659,65.32316873839207],[-52.547925479254786,65.33836593382102],[-52.5191251912519,65.35187455198007],[-52.49032490324903,65.3603174383295],[-52.46512465124651,65.36369459286925],[-52.43632436324363,65.3704489019488],[-52.382323823238224,65.39915471553681],[-52.34992349923499,65.40590902461634],[-52.28872288722887,65.41097475642599],[-52.2311223112231,65.42617195185491],[-52.15192151921519,65.46500922906222],[-52.03672036720367,65.49202646538035],[-51.98271982719828,65.49540361992013],[-51.968319683196825,65.49878077445987],[-51.9539195391954,65.51060081534905],[-51.94671946719467,65.5156665471587],[-51.92151921519215,65.525798010778],[-51.91431914319142,65.52917516531778],[-51.89991899918999,65.53086374258766],[-51.867518675186744,65.54268378347683],[-51.853118531185316,65.54943809255636],[-51.84951849518495,65.55619240163588],[-51.84591845918459,65.56970101979496],[-51.842318423184224,65.57645532887449],[-51.81351813518134,65.58658679249379],[-51.74511745117451,65.58152106068414],[-51.716317163171624,65.58996394703354],[-51.741517415174144,65.59165252430344],[-51.78111781117812,65.60684971973237],[-51.802718027180276,65.61022687427214],[-51.85671856718568,65.60516114246249],[-51.8819188191882,65.60684971973237],[-51.90351903519036,65.6237354924312],[-51.87471874718747,65.6423098423999],[-51.7631176311763,65.67608138779755],[-51.73791737917378,65.67945854233733],[-51.716317163171624,65.69465573776628],[-51.68751687516874,65.70478720138556],[-51.49311493114931,65.74024732405312],[-51.129511295112934,65.76051025129169],[-51.09351093510935,65.75375594221217],[-51.071910719107194,65.75206736494229],[-51.02511025110252,65.76726456037122],[-50.98190981909818,65.76557598310134],[-50.938709387093866,65.75713309675194],[-50.90990909909098,65.74869021040251],[-50.80190801908017,65.70141004684581],[-50.74070740707407,65.6828356968771],[-50.67590675906757,65.67945854233733],[-50.53190531905318,65.69296716049638],[-50.53910539105391,65.69803289230603],[-50.54270542705427,65.70309862411568],[-50.54990549905497,65.70816435592533],[-50.553505535055336,65.71323008773498],[-50.6831068310683,65.70647577865546],[-50.74430744307443,65.69465573776628],[-50.77310773107732,65.69803289230603],[-50.79110791107911,65.71998439681451],[-50.75870758707586,65.72842728316394],[-50.69390693906939,65.72505012862416],[-50.661506615066145,65.72842728316394],[-50.661506615066145,65.73349301497359],[-50.66870668706687,65.73349301497359],[-50.69030690306903,65.74024732405312],[-50.686706867068665,65.75037878767242],[-50.686706867068665,65.75375594221217],[-50.6831068310683,65.75544451948204],[-50.76950769507695,65.76051025129169],[-50.81630816308163,65.75544451948204],[-50.84150841508415,65.74024732405312],[-50.863108631086305,65.75206736494229],[-50.888308883088825,65.76557598310134],[-50.913509135091346,65.77739602399052],[-50.94230942309423,65.78246175580017],[-51.04311043110431,65.77401886945077],[-51.2519125191252,65.79428179668935],[-51.44271442714427,65.77233029218087],[-51.91431914319142,65.6625727696385],[-51.93951939519394,65.66088419236863],[-51.968319683196825,65.67776996506745],[-51.98991989919898,65.6727042332578],[-51.94671946719467,65.63048980151072],[-51.93231932319324,65.60516114246249],[-51.935919359193576,65.57645532887449],[-51.917919179191784,65.56970101979496],[-51.93231932319324,65.55619240163588],[-51.993519935199345,65.52242085623823],[-52.05112051120511,65.51397796988883],[-52.069120691206905,65.50384650626953],[-52.09072090720906,65.49878077445987],[-52.18072180721806,65.50046935172978],[-52.195121951219505,65.49540361992013],[-52.22392223922239,65.46669780633212],[-52.23472234722347,65.45994349725257],[-52.27432274322743,65.44643487909352],[-52.295922959229586,65.44136914728387],[-52.321123211232106,65.43968057001399],[-52.371523715237146,65.44136914728387],[-52.38952389523895,65.43799199274412],[-52.472324723247226,65.39577756099703],[-52.49032490324903,65.39240040645728],[-52.504725047250474,65.3974661382669],[-52.547925479254786,65.43292626093447],[-52.533525335253344,65.44305772455374],[-52.49032490324903,65.46669780633212],[-52.497524975249746,65.47345211541165],[-52.45072450724507,65.50891223807918],[-52.44352443524434,65.5173551244286],[-52.454324543245434,65.52410943350813],[-52.479524795247954,65.5156665471587],[-52.508325083250824,65.50215792899965],[-52.54072540725407,65.48020642449117],[-52.56232562325623,65.47176353814177],[-52.583925839258384,65.47007496087187],[-52.60192601926019,65.47345211541165],[-52.61272612726127,65.49033788811047],[-52.605526055260555,65.49709219719],[-52.56592565925659,65.5072236608093],[-52.598325983259826,65.52242085623823],[-52.609126091260904,65.52917516531778],[-52.573125731257306,65.55788097890579],[-52.522725227252266,65.58827536976366],[-52.479524795247954,65.6237354924312],[-52.472324723247226,65.6727042332578],[-52.50112501125011,65.6541298832891],[-52.52632526325263,65.63217837878062],[-52.53712537125371,65.61191545154202],[-52.547925479254786,65.60178398792272],[-52.558725587255864,65.59671825611306],[-52.573125731257306,65.59334110157332],[-52.58752587525875,65.58658679249379],[-52.60192601926019,65.57645532887449],[-52.61272612726127,65.56632386525519],[-52.61632616326163,65.55956955617566],[-52.61632616326163,65.55281524709613],[-52.61992619926198,65.54943809255636],[-52.630726307263075,65.5443723607467],[-52.64872648726487,65.53930662893706],[-52.655926559265595,65.5359294743973],[-52.66672666726667,65.525798010778],[-52.67392673926739,65.51397796988883],[-52.684726847268465,65.5055350835394],[-52.69912699126991,65.50046935172978],[-52.71712717127171,65.50215792899965],[-52.72072720727206,65.50891223807918],[-52.72432724327243,65.5173551244286],[-52.735127351273505,65.52242085623823],[-52.76752767527675,65.52410943350813],[-52.79272792727927,65.5342408971274],[-52.79992799927999,65.55112666982623],[-52.785527855278545,65.57645532887449],[-52.76752767527675,65.57476675160461],[-52.731527315273155,65.58489821522389],[-52.66312663126631,65.61866976062154],[-52.69552695526954,65.6152926060818],[-52.76752767527675,65.59334110157332],[-52.79992799927999,65.59671825611306],[-52.77472774727747,65.61191545154202],[-52.64872648726487,65.6541298832891],[-52.580325803258035,65.66594992417828],[-52.547925479254786,65.67945854233733],[-52.573125731257306,65.68621285141685],[-52.605526055260555,65.6811471196072],[-52.68832688326883,65.65075272874932],[-52.74592745927458,65.63893268786015],[-52.7711277112771,65.63893268786015],[-52.756727567275675,65.6727042332578],[-52.72072720727206,65.6912785832265],[-52.64152641526415,65.71323008773498],[-52.67752677526775,65.71998439681451],[-52.69192691926919,65.71998439681451],[-52.67752677526775,65.75375594221217],[-52.681126811268115,65.7909046421496],[-52.69192691926919,65.80779041484843],[-52.71712717127171,65.78246175580017],[-52.756727567275675,65.71323008773498],[-52.785527855278545,65.68452427414698],[-52.82512825128251,65.6727042332578],[-52.835928359283585,65.67608138779755],[-52.86472864728647,65.68959000595663],[-52.87552875528755,65.69296716049638],[-52.886328863288625,65.6912785832265],[-52.911529115291145,65.6828356968771],[-53.00153001530015,65.66594992417828],[-53.188731887318866,65.67608138779755],[-53.239132391323906,65.68621285141685],[-53.149131491314904,65.72842728316394],[-53.095130951309514,65.73855874678321],[-53.019530195301954,65.74362447859286],[-52.99072990729907,65.75037878767242],[-52.96552965529655,65.76051025129169],[-52.92592925929259,65.78415033307004],[-52.87552875528755,65.79428179668935],[-52.85392853928539,65.80272468303878],[-52.87912879128791,65.8094789921183],[-52.88992889928899,65.8094789921183],[-52.90432904329043,65.8094789921183],[-52.91512915129151,65.80610183757852],[-52.9331293312933,65.79765895122912],[-53.012330123301226,65.77908460126042],[-53.06633066330663,65.75544451948204],[-53.10953109531094,65.74700163313264],[-53.239132391323906,65.74024732405312],[-53.26073260732606,65.74362447859286],[-53.264332643326426,65.75206736494229],[-53.25353253532535,65.75544451948204],[-53.21753217532175,65.75544451948204],[-53.21033210332102,65.75713309675194],[-53.19233192331923,65.76726456037122],[-53.17793177931779,65.770641714911],[-53.163531635316346,65.7807731785303],[-53.138331383313826,65.78415033307004],[-53.113131131311306,65.79259321941947],[-53.037530375303746,65.80779041484843],[-53.019530195301954,65.81623330119783],[-53.05553055530555,65.81116756938818],[-53.069930699306994,65.8094789921183],[-53.087930879308786,65.81623330119783],[-53.07713077130771,65.82467618754725],[-53.05193051930519,65.85338200113526],[-53.03393033930338,65.86351346475453],[-52.99072990729907,65.86857919656418],[-52.92952929529295,65.88546496926301],[-52.88992889928899,65.89221927834254],[-52.86832868328683,65.88884212380279],[-52.85032850328503,65.88208781472326],[-52.832328323283235,65.87871066018349],[-52.81432814328143,65.88546496926301],[-52.82152821528214,65.89221927834254],[-52.82512825128251,65.89559643288231],[-52.832328323283235,65.89897358742209],[-52.81432814328143,65.91248220558114],[-52.7711277112771,65.9259908237402],[-52.69552695526954,65.93949944189927],[-52.65232652326523,65.93274513281975],[-52.56592565925659,65.89897358742209],[-52.407524075240744,65.87871066018349],[-52.36072360723607,65.87871066018349],[-52.33912339123391,65.87533350564371],[-52.321123211232106,65.86351346475453],[-52.31752317523174,65.85844773294491],[-52.31752317523174,65.84831626932561],[-52.31392313923139,65.84325053751596],[-52.31032310323103,65.83987338297618],[-52.29952299522995,65.83649622843643],[-52.28872288722887,65.8381848057063],[-52.28512285122851,65.8466276920557],[-52.277922779227794,65.86013631021478],[-52.25632256322562,65.86857919656418],[-52.21672216722166,65.87871066018349],[-52.21672216722166,65.88546496926301],[-52.25992259922599,65.89559643288231],[-52.26352263522635,65.91417078285102],[-52.23472234722347,65.9361222873595],[-52.19872198721987,65.95300806005832],[-51.97911979119792,66.0036653781548],[-51.93231932319324,66.0036653781548],[-51.885518855188536,65.99522249180541],[-51.842318423184224,65.98171387364633],[-51.77391773917739,65.94287659643902],[-51.741517415174144,65.93105655554984],[-51.71271712717126,65.93949944189927],[-51.74511745117451,65.9648281009475],[-51.82431824318243,65.99691106907528],[-51.84591845918459,66.00704253269458],[-51.860318603186016,66.02223972812351],[-51.83151831518316,66.04081407809224],[-51.79911799117991,66.05432269625129],[-51.73071730717308,66.07120846895012],[-51.73071730717308,66.07627420075977],[-51.79551795517955,66.07120846895012],[-52.08712087120871,66.00535395542468],[-52.18072180721806,65.99859964634516],[-52.20952209522095,65.99015675999576],[-52.23832238322383,65.9749595645668],[-52.28512285122851,65.91417078285102],[-52.303123031230314,65.90572789650162],[-52.504725047250474,65.90572789650162],[-52.533525335253344,65.90910505104137],[-52.558725587255864,65.92261366920044],[-52.59112591125911,65.94794232824867],[-52.59472594725946,65.95807379186797],[-52.573125731257306,65.9749595645668],[-52.5191251912519,65.9935339145355],[-52.56232562325623,66.00873110996446],[-52.57672576725767,66.00873110996446],[-52.69192691926919,65.96313952367763],[-52.71352713527135,65.95976236913785],[-52.73872738727387,65.96820525548728],[-52.77832778327783,65.99015675999576],[-52.80352803528035,65.99522249180541],[-52.79992799927999,65.98002529637645],[-52.77832778327783,65.9462537509788],[-52.807128071280715,65.9462537509788],[-52.86472864728647,65.92430224647032],[-52.94392943929439,65.90741647377149],[-52.96552965529655,65.89559643288231],[-53.00513005130051,65.89221927834254],[-53.15273152731527,65.86013631021478],[-53.18153181531815,65.86013631021478],[-53.20673206732067,65.86351346475453],[-53.23193231932319,65.87026777383409],[-53.21753217532175,65.88884212380279],[-53.195931959319594,65.89221927834254],[-53.14193141931419,65.88546496926301],[-53.14193141931419,65.88884212380279],[-53.145531455314554,65.89053070107266],[-53.149131491314904,65.89221927834254],[-53.15993159931598,65.89897358742209],[-53.264332643326426,65.91248220558114],[-53.264332643326426,65.91923651466067],[-53.13113131131311,65.95300806005832],[-53.095130951309514,65.9665166782174],[-52.87552875528755,66.02223972812351],[-52.92232922329222,66.03743692355246],[-52.97632976329763,66.02223972812351],[-53.037530375303746,66.00028822361503],[-53.12753127531275,65.98171387364633],[-53.26073260732606,65.93949944189927],[-53.25353253532535,65.9462537509788],[-53.25353253532535,65.95300806005832],[-53.300333003330024,65.9546966373282],[-53.31473314733147,65.95300806005832],[-53.325533255332545,65.94794232824867],[-53.347133471334715,65.93443371008962],[-53.35793357933579,65.93274513281975],[-53.39033390333903,65.9361222873595],[-53.426334263342625,65.9462537509788],[-53.45513455134551,65.96145094640775],[-53.473134731347315,65.98171387364633],[-53.447934479344795,65.9834024509162],[-53.42993429934299,65.99015675999576],[-53.41193411934118,66.00028822361503],[-53.39033390333903,66.00704253269458],[-53.36513365133651,66.01041968723433],[-53.296732967329675,66.00197680088493],[-53.10593105931059,66.02223972812351],[-53.15633156331563,66.03068261447294],[-53.31473314733147,66.01548541904398],[-53.31473314733147,66.02223972812351],[-53.30753307533075,66.02561688266329],[-53.30393303933039,66.02899403720306],[-53.29313293132931,66.03574834628259],[-53.426334263342625,66.02223972812351],[-53.46593465934659,66.03574834628259],[-53.38313383133831,66.07796277802964],[-53.10593105931059,66.15226017790448],[-52.997929979299784,66.17252310514309],[-52.73872738727387,66.26201770044685],[-52.71712717127171,66.29241209130475],[-52.71352713527135,66.31267501854333],[-52.69912699126991,66.32449505943251],[-52.681126811268115,66.33124936851206],[-52.483124831248304,66.38866099568807],[-52.36072360723607,66.44100689105443],[-52.24192241922418,66.44944977740383],[-52.05472054720546,66.48828705461113],[-52.00072000720007,66.48490990007139],[-51.97911979119792,66.48828705461113],[-51.96471964719646,66.50179567277021],[-51.98271982719828,66.50179567277021],[-52.00432004320042,66.50517282730996],[-52.02592025920259,66.51361571365939],[-52.03312033120331,66.52205860000879],[-52.02592025920259,66.53556721816787],[-52.00792007920079,66.54907583632692],[-51.97911979119792,66.56427303175587],[-51.97191971919719,66.5811588044547],[-51.93951939519394,66.60479888623306],[-51.87471874718747,66.64194758617046],[-51.83871838718386,66.65376762705964],[-51.72351723517235,66.67234197702837],[-51.615516155161544,66.70273636788625],[-51.46071460714606,66.70442494515612],[-51.44631446314463,66.7078020996959],[-51.42831428314284,66.72131071785495],[-51.45351453514536,66.72131071785495],[-51.47871478714788,66.72468787239472],[-51.5039150391504,66.73144218147425],[-51.525515255152555,66.74157364509355],[-51.46071460714606,66.76690230414178],[-51.4391143911439,66.77872234503096],[-51.42111421114211,66.78547665411051],[-51.36711367113671,66.79560811772978],[-51.35991359913598,66.80236242680934],[-51.28431284312842,66.8445768585564],[-51.2591125911259,66.85133116763592],[-51.18351183511834,66.85133116763592],[-51.122311223112234,66.83782254947687],[-51.10071100711008,66.83782254947687],[-51.122311223112234,66.8530197449058],[-51.147511475114754,66.86483978579497],[-51.115111151111506,66.88003698122392],[-51.053910539105374,66.8732826721444],[-50.89190891908919,66.82937966312744],[-50.71910719107191,66.83951112674674],[-50.67590675906757,66.84964259036605],[-50.65430654306542,66.85133116763592],[-50.62550625506253,66.84795401309617],[-50.56790567905679,66.83444539493709],[-50.36270362703627,66.82937966312744],[-50.333903339033384,66.8445768585564],[-50.59670596705968,66.85808547671544],[-50.67950679506794,66.87497124941427],[-50.70110701107009,66.86821694033475],[-50.73350733507334,66.85133116763592],[-50.78030780307802,66.85133116763592],[-51.01071010710106,66.90536564027218],[-50.963909639096386,66.93576003113006],[-50.85230852308521,66.95940011290841],[-50.78390783907838,66.98304019468677],[-50.737107371073705,66.98810592649642],[-50.69750697506976,67.00499169919524],[-50.6831068310683,67.00836885373502],[-50.64710647106472,67.0100574310049],[-50.57870578705786,66.99823739011572],[-50.49230492304923,66.99654881284584],[-50.477904779047776,66.99654881284584],[-50.301503015030136,66.99486023557594],[-50.13230132301322,66.96784299925784],[-50.06030060300603,66.96784299925784],[-49.999099990999895,66.98135161741689],[-50.02790027900278,66.9914830810362],[-50.10350103501034,66.99654881284584],[-50.200702007020055,66.9914830810362],[-50.22230222302224,66.99486023557594],[-50.29070290702907,67.01343458554467],[-50.351903519035176,67.01512316281455],[-50.434704347043464,67.00836885373502],[-50.47070470704708,66.9999259673856],[-50.48150481504814,66.9999259673856],[-50.49230492304923,66.9999259673856],[-50.510305103051024,67.0016145446555],[-50.57150571505716,67.01681174008442],[-50.63270632706326,67.01512316281455],[-50.63270632706326,67.02187747189407],[-50.61470614706147,67.02694320370372],[-50.57870578705786,67.0387632445929],[-50.560705607056065,67.04214039913268],[-50.48870488704887,67.04214039913268],[-50.301503015030136,67.06409190364116],[-50.283502835028344,67.07084621272068],[-50.319503195031956,67.07928909907008],[-50.59310593105931,67.04214039913268],[-50.66510665106651,67.0201888946242],[-50.711907119071185,67.01343458554467],[-50.74430744307443,67.00330312192537],[-50.75870758707586,67.0016145446555],[-50.81630816308163,67.0016145446555],[-50.895508955089554,66.99317165830607],[-51.097110971109714,66.93069429932041],[-51.129511295112934,66.92731714478063],[-51.17631176311764,66.92731714478063],[-51.1871118711187,66.92393999024088],[-51.21231212312122,66.90705421754205],[-51.32031320313203,66.88510271303358],[-51.39591395913959,66.84964259036605],[-51.46071460714606,66.84119970401662],[-51.49311493114931,66.83106824039734],[-51.71271712717126,66.72299929512485],[-51.97191971919719,66.66221051340906],[-52.02592025920259,66.62506181347163],[-52.09792097920979,66.54738725905705],[-52.1411214112141,66.51699286819914],[-52.277922779227794,66.48153274553161],[-52.29952299522995,66.48153274553161],[-52.72072720727206,66.34813514121089],[-52.886328863288625,66.2485090822878],[-53.00513005130051,66.19954034146119],[-53.35433354333543,66.1117343234273],[-53.451534515345145,66.1032914370779],[-53.599135991359915,66.12524294158635],[-53.649536495364956,66.12355436431648],[-53.527135271352705,66.15226017790448],[-53.48393483934839,66.15226017790448],[-53.48393483934839,66.159014486984],[-53.66393663936638,66.13875155974543],[-53.63873638736386,66.1505716006346],[-53.60633606336063,66.17083452787318],[-53.58473584735847,66.19109745511179],[-53.58113581135811,66.20629465054074],[-53.58113581135811,66.21304895962027],[-53.53073530735307,66.23331188685884],[-53.473134731347315,66.24344335047815],[-53.325533255332545,66.25019765955767],[-53.120331203312034,66.28903493676498],[-53.21033210332102,66.28228062768545],[-53.289532895328946,66.29072351403488],[-53.31473314733147,66.28903493676498],[-53.375933759337585,66.27046058679628],[-53.476734767347665,66.26201770044685],[-53.498334983349835,66.25526339136732],[-53.498334983349835,66.26201770044685],[-53.527135271352705,66.25357481409745],[-53.56673566735667,66.24682050501792],[-53.602736027360265,66.24513192774805],[-53.624336243362436,66.25188623682757],[-53.65673656736567,66.27552631860593],[-53.65673656736567,66.28565778222523],[-53.64593645936459,66.29241209130475],[-53.63873638736386,66.2974778231144],[-53.63513635136351,66.30254355492406],[-53.649536495364956,66.32111790489276],[-53.6891368913689,66.32787221397228],[-53.69633696336963,66.34644656394099],[-53.69633696336963,66.35826660483016],[-53.6891368913689,66.36502091390972],[-53.685536855368554,66.37008664571934],[-53.678336783367826,66.3768409547989],[-53.66393663936638,66.403858191117],[-53.65673656736567,66.41230107746642],[-53.63513635136351,66.4055467683869],[-53.61713617136171,66.41230107746642],[-53.58473584735847,66.4426954683243],[-53.56673566735667,66.45620408648338],[-53.54513545135451,66.46464697283278],[-53.498334983349835,66.47477843645208],[-53.498334983349835,66.48153274553161],[-53.527135271352705,66.48153274553161],[-53.56673566735667,66.46802412737256],[-53.602736027360265,66.44776120013395],[-53.64233642336423,66.41736680927607],[-53.649536495364956,66.42580969562547],[-53.649536495364956,66.4426954683243],[-53.649536495364956,66.44944977740383],[-53.64233642336423,66.46126981829303],[-53.602736027360265,66.47308985918221],[-53.58833588335882,66.48153274553161],[-53.63513635136351,66.50179567277021],[-53.624336243362436,66.50854998184974],[-53.51993519935199,66.52881290908832],[-53.397533975339755,66.52881290908832],[-53.38673386733866,66.5321900636281],[-53.375933759337585,66.53725579543774],[-53.36873368733687,66.5423215272474],[-53.325533255332545,66.52881290908832],[-53.28593285932858,66.5237471772787],[-53.21033210332102,66.52205860000879],[-53.21033210332102,66.51530429092927],[-53.35433354333543,66.52205860000879],[-53.32913329133291,66.51023855911961],[-53.296732967329675,66.50348425004009],[-53.199531995319944,66.49335278642079],[-53.170731707317074,66.49504136369066],[-53.15633156331563,66.50010709550031],[-53.12753127531275,66.51192713638949],[-52.95112951129511,66.54401010451727],[-52.832328323283235,66.5507644135968],[-52.81432814328143,66.54738725905705],[-52.785527855278545,66.53725579543774],[-52.457924579245784,66.52205860000879],[-52.44352443524434,66.52543575454857],[-52.429124291242914,66.53894437270762],[-52.41472414724147,66.5423215272474],[-52.41472414724147,66.5507644135968],[-52.457924579245784,66.55920729994622],[-52.61632616326163,66.5507644135968],[-52.72432724327243,66.56427303175587],[-52.80352803528035,66.56258445448597],[-52.82152821528214,66.56933876356553],[-52.82152821528214,66.57609307264505],[-52.987129871298706,66.57609307264505],[-53.019530195301954,66.57271591810527],[-53.087930879308786,66.55414156813657],[-53.120331203312034,66.5507644135968],[-53.224732247322464,66.5524529908667],[-53.26793267932679,66.5608958772161],[-53.40833408334083,66.5710273408354],[-53.42993429934299,66.58453595899445],[-53.41553415534155,66.58622453626433],[-53.38673386733866,66.59635599988363],[-53.36873368733687,66.59804457715353],[-53.34353343533435,66.59804457715353],[-53.33273332733327,66.60311030896315],[-53.32913329133291,66.6183075043921],[-53.347133471334715,66.6183075043921],[-53.35433354333543,66.61661892712223],[-53.36153361533614,66.61155319531258],[-53.38673386733866,66.6183075043921],[-53.45513455134551,66.60479888623306],[-53.48393483934839,66.61155319531258],[-53.473134731347315,66.61661892712223],[-53.42993429934299,66.62506181347163],[-53.42993429934299,66.63181612255119],[-53.4371343713437,66.63350469982106],[-53.45873458734587,66.63857043163071],[-53.426334263342625,66.64532474071024],[-53.28593285932858,66.69429348153685],[-53.26073260732606,66.6976706360766],[-53.23553235532354,66.6976706360766],[-53.1851318513185,66.68753917245729],[-53.095130951309514,66.6892277497272],[-53.07713077130771,66.68247344064764],[-53.05553055530555,66.67234197702837],[-52.832328323283235,66.6892277497272],[-52.78912789127891,66.70442494515612],[-52.76752767527675,66.7078020996959],[-52.66672666726667,66.69260490426694],[-52.634326343263425,66.69429348153685],[-52.63792637926379,66.6976706360766],[-52.64152641526415,66.70104779061637],[-52.62712627126271,66.70611352242602],[-52.61272612726127,66.7078020996959],[-52.580325803258035,66.7078020996959],[-52.59112591125911,66.71286783150555],[-52.598325983259826,66.72131071785495],[-52.59472594725946,66.73144218147425],[-52.58752587525875,66.74157364509355],[-52.67032670326702,66.73481933601403],[-52.69192691926919,66.7365079132839],[-52.75312753127531,66.74832795417308],[-52.78912789127891,66.7466393769032],[-52.98352983529834,66.7078020996959],[-53.00513005130051,66.70949067696577],[-53.04113041130411,66.7179335633152],[-53.062730627306266,66.72131071785495],[-53.11673116731167,66.7179335633152],[-53.13473134731346,66.72131071785495],[-53.20313203132031,66.74832795417308],[-53.188731887318866,66.75170510871286],[-53.14193141931419,66.74157364509355],[-53.07713077130771,66.7466393769032],[-53.044730447304474,66.74326222236343],[-53.03033030330303,66.7449507996333],[-53.00513005130051,66.7550822632526],[-52.987129871298706,66.75677084052248],[-52.81432814328143,66.75845941779238],[-52.760327603276025,66.7736566132213],[-52.74592745927458,66.77703376776108],[-52.709927099270985,66.77534519049121],[-52.69552695526954,66.77872234503096],[-52.64872648726487,66.80067384953944],[-52.65232652326523,66.81080531315874],[-52.66672666726667,66.82769108585757],[-52.681126811268115,66.83275681766722],[-52.69552695526954,66.82937966312744],[-52.72432724327243,66.81755962223826],[-52.79272792727927,66.80911673588886],[-52.810728107281065,66.81080531315874],[-52.84672846728466,66.82093677677804],[-52.861128611286105,66.82262535404791],[-52.9331293312933,66.81587104496839],[-53.09153091530915,66.76690230414178],[-53.10593105931059,66.77196803595143],[-53.10233102331023,66.78378807684061],[-53.08433084330842,66.79391954045991],[-53.06633066330663,66.79898527226956],[-53.05193051930519,66.80236242680934],[-53.05193051930519,66.80911673588886],[-53.062730627306266,66.81080531315874],[-53.087930879308786,66.81755962223826],[-53.03393033930338,66.8445768585564],[-53.00153001530015,66.8547083221757],[-52.97272972729726,66.85808547671544],[-52.907929079290795,66.83951112674674],[-52.87552875528755,66.83613397220697],[-52.87552875528755,66.85808547671544],[-52.48672486724867,66.8547083221757],[-52.33912339123391,66.81755962223826],[-52.295922959229586,66.81418246769852],[-52.25272252722527,66.82262535404791],[-52.2311223112231,66.8445768585564],[-52.328323283232834,66.83951112674674],[-52.353523535235354,66.8445768585564],[-52.396723967239666,66.86821694033475],[-52.41112411124111,66.8732826721444],[-52.447124471244706,66.8732826721444],[-52.46512465124651,66.87834840395405],[-52.44352443524434,66.8834141357637],[-52.31032310323103,66.893545599383],[-52.29232292322922,66.90029990846253],[-52.295922959229586,66.90029990846253],[-52.303123031230314,66.90367706300228],[-52.306723067230664,66.90536564027218],[-52.303123031230314,66.91043137208183],[-52.29232292322922,66.92731714478063],[-52.31752317523174,66.92393999024088],[-52.36432364323643,66.91549710389145],[-52.47592475924759,66.91043137208183],[-52.497524975249746,66.91887425843123],[-52.49032490324903,66.92731714478063],[-52.48672486724867,66.93576003113006],[-52.49392493924938,66.94251434020958],[-52.504725047250474,66.94589149474936],[-52.479524795247954,66.96108869017829],[-52.45072450724507,66.97459730833737],[-52.45072450724507,66.98135161741689],[-52.49032490324903,66.97966304014702],[-52.5191251912519,66.96446584471806],[-52.56592565925659,66.92731714478063],[-52.60192601926019,66.9121199493517],[-52.79992799927999,66.8918570221131],[-52.82512825128251,66.89523417665288],[-52.882728827288275,66.9121199493517],[-53.06633066330663,66.9121199493517],[-53.062730627306266,66.92225141297101],[-53.062730627306266,66.92731714478063],[-53.095130951309514,66.93238287659028],[-53.35793357933579,66.9205628357011],[-53.375933759337585,66.91549710389145],[-53.39033390333903,66.91380852662158],[-53.451534515345145,66.91887425843123],[-53.64593645936459,66.9121199493517],[-53.685536855368554,66.91887425843123],[-53.678336783367826,66.92900572205053],[-53.67113671136711,66.93407145386018],[-53.649536495364956,66.93913718566984],[-53.67113671136711,66.94589149474936],[-53.77193771937719,66.95602295836866],[-53.80793807938079,66.97122015379759],[-53.825938259382596,66.97459730833737],[-53.829538295382946,66.97797446287711],[-53.829538295382946,66.98472877195667],[-53.825938259382596,66.9914830810362],[-53.81873818738187,66.99486023557594],[-53.761137611376114,66.99486023557594],[-53.63513635136351,66.98135161741689],[-53.422734227342275,66.99486023557594],[-53.31473314733147,66.98135161741689],[-53.264332643326426,66.98472877195667],[-53.21753217532175,66.99486023557594],[-53.249932499324984,67.00499169919524],[-53.55953559535595,67.01512316281455],[-53.573935739357395,67.01174600827477],[-53.602736027360265,66.99823739011572],[-53.61713617136171,66.99486023557594],[-53.63513635136351,66.99654881284584],[-53.6891368913689,67.01512316281455],[-53.775537755377556,67.01850031735432],[-53.815138151381504,67.02694320370372],[-53.815138151381504,67.05058328548208],[-53.829538295382946,67.06409190364116],[-53.80793807938079,67.07253478999056],[-53.739537395373944,67.0776005218002],[-53.58833588335882,67.07084621272068],[-53.42993429934299,67.09617487176891],[-53.40473404734047,67.10461775811834],[-53.397533975339755,67.11306064446774],[-53.42993429934299,67.11137206719786],[-53.552335523355225,67.09110913995926],[-53.966339663396624,67.0776005218002],[-53.94473944739447,67.09279771722916],[-53.937539375393754,67.09786344903878],[-53.94473944739447,67.09786344903878],[-53.966339663396624,67.10461775811834],[-53.937539375393754,67.11474922173761],[-53.91953919539195,67.11812637627739],[-53.905139051390506,67.11812637627739],[-53.92313923139231,67.12488068535691],[-53.915939159391584,67.12994641716656],[-53.90873908739087,67.13501214897622],[-53.89793897938979,67.13838930351599],[-53.890738907389064,67.13838930351599],[-53.915939159391584,67.14514361259552],[-53.92313923139231,67.14514361259552],[-53.905139051390506,67.15358649894492],[-53.89433894338943,67.15358649894492],[-53.879938799387986,67.15189792167504],[-53.861938619386194,67.15358649894492],[-53.85833858338583,67.1569636534847],[-53.854738547385466,67.16371796256422],[-53.851138511385116,67.17047227164375],[-53.84753847538475,67.17384942618352],[-53.840338403384024,67.1755380034534],[-53.710737107371074,67.19242377615222],[-53.41193411934118,67.195800930692],[-53.38313383133831,67.20762097158118],[-53.40473404734047,67.20762097158118],[-53.451534515345145,67.2143752806607],[-53.53433534335343,67.20930954885105],[-53.5631356313563,67.21099812612093],[-53.58833588335882,67.22112958974023],[-53.55953559535595,67.2329496306294],[-53.51993519935199,67.24139251697883],[-53.48393483934839,67.24476967151858],[-53.41913419134191,67.23126105335953],[-53.38313383133831,67.23463820789931],[-53.31473314733147,67.24814682605836],[-53.073530735307344,67.25490113513789],[-53.05553055530555,67.25827828967766],[-53.023130231302304,67.27178690783671],[-53.00513005130051,67.27516406237649],[-52.92952929529295,67.27009833056684],[-52.886328863288625,67.28022979418614],[-52.85392853928539,67.28529552599576],[-52.82512825128251,67.29373841234519],[-52.580325803258035,67.32413280320307],[-52.558725587255864,67.3224442259332],[-52.5191251912519,67.3123127623139],[-52.497524975249746,67.31062418504402],[-52.479524795247954,67.3123127623139],[-52.46872468724686,67.31737849412355],[-52.46152461524615,67.32413280320307],[-52.45072450724507,67.3308871122826],[-52.41832418324182,67.3410185759019],[-52.2671226712267,67.35621577133085],[-52.19152191521914,67.3714129667598],[-52.14832148321483,67.3714129667598],[-52.04752047520475,67.3427071531718],[-51.55431554315544,67.3308871122826],[-51.48951489514894,67.31568991685367],[-51.46071460714606,67.30218129869459],[-51.4391143911439,67.28698410326567],[-51.41751417514175,67.25996686694754],[-51.41391413914138,67.25152398059811],[-51.41031410314102,67.24308109424871],[-51.374313743137435,67.22788389881975],[-51.30231302313024,67.16202938529435],[-51.27711277112772,67.14683218986539],[-51.24111241112411,67.13670072624609],[-51.17631176311764,67.12488068535691],[-51.140311403114026,67.12488068535691],[-51.003510035100334,67.14345503532562],[-50.938709387093866,67.16202938529435],[-50.89190891908919,67.167095117104],[-50.82710827108269,67.18229231253292],[-50.66870668706687,67.19242377615222],[-50.41670416704167,67.17384942618352],[-50.34830348303481,67.18735804434257],[-50.344703447034476,67.19242377615222],[-50.34830348303481,67.19242377615222],[-50.351903519035176,67.19242377615222],[-50.351903519035176,67.1941123534221],[-50.34830348303481,67.1941123534221],[-50.36630366303663,67.19917808523175],[-50.38070380703806,67.19917808523175],[-50.41670416704167,67.1941123534221],[-50.4311043110431,67.195800930692],[-50.47430474304741,67.20762097158118],[-50.510305103051024,67.22450674428],[-50.52470524705245,67.22788389881975],[-50.83070830708306,67.19917808523175],[-51.11151111511114,67.14007788078587],[-51.18351183511834,67.14514361259552],[-51.21231212312122,67.15527507621482],[-51.23751237512374,67.16878369437387],[-51.30951309513094,67.22112958974023],[-51.36711367113671,67.24645824878849],[-51.38871388713886,67.27009833056684],[-51.41751417514175,67.31400133958377],[-51.4391143911439,67.3308871122826],[-51.46791467914679,67.33764142136215],[-51.48591485914858,67.33932999863202],[-51.507515075150735,67.3427071531718],[-51.52191521915219,67.3511500395212],[-51.51831518315183,67.36465865768025],[-51.5039150391504,67.3714129667598],[-51.26631266312663,67.38492158491886],[-51.190711907119066,67.40687308942734],[-51.15111151111512,67.40856166669721],[-51.1331113311133,67.41362739850686],[-51.115111151111506,67.42713601666591],[-51.54351543515435,67.39336447126826],[-51.97191971919719,67.35959292587063],[-52.01152011520115,67.36465865768025],[-52.11232112321123,67.40180735761768],[-52.14832148321483,67.40687308942734],[-52.429124291242914,67.37647869856943],[-52.483124831248304,67.3612815031405],[-52.51192511925119,67.35790434860073],[-52.573125731257306,67.35790434860073],[-52.61632616326163,67.34608430771155],[-52.86472864728647,67.31400133958377],[-53.113131131311306,67.28022979418614],[-53.23193231932319,67.29542698961507],[-53.221132211322114,67.31062418504402],[-53.1851318513185,67.32919853501272],[-53.170731707317074,67.34439573044168],[-53.188731887318866,67.3427071531718],[-53.249932499324984,67.32750995774285],[-53.296732967329675,67.30724703050424],[-53.34353343533435,67.28022979418614],[-53.38313383133831,67.27347548510659],[-53.50913509135091,67.27347548510659],[-53.59553595535955,67.25490113513789],[-53.674736747367476,67.22788389881975],[-53.76833768337683,67.20593239431128],[-53.80793807938079,67.20762097158118],[-53.80793807938079,67.2143752806607],[-53.77193771937719,67.22788389881975],[-53.79353793537935,67.23463820789931],[-53.851138511385116,67.22788389881975],[-53.876338763387636,67.23463820789931],[-53.86913869138691,67.23970393970893],[-53.861938619386194,67.24308109424871],[-53.851138511385116,67.24645824878849],[-53.840338403384024,67.24814682605836],[-53.840338403384024,67.25490113513789],[-53.861938619386194,67.25658971240776],[-53.88353883538835,67.26165544421741],[-53.876338763387636,67.27685263964636],[-53.861938619386194,67.28360694872589],[-53.85833858338583,67.29204983507532],[-53.87273872738727,67.31906707139342],[-53.865538655386544,67.32413280320307],[-53.836738367383674,67.3308871122826],[-53.85833858338583,67.34946146225133],[-53.851138511385116,67.36634723495015],[-53.82233822338223,67.38154443037908],[-53.79353793537935,67.39167589399838],[-53.800738007380076,67.39505304853816],[-53.82233822338223,67.40687308942734],[-53.804338043380426,67.41869313031651],[-53.78273782737827,67.43051317120569],[-53.75753757537575,67.43726748028521],[-53.739537395373944,67.44064463482499],[-53.728737287372866,67.44402178936474],[-53.714337143371424,67.45584183025392],[-53.703537035370346,67.46090756206357],[-53.69633696336963,67.46259613933347],[-53.674736747367476,67.46090756206357],[-53.627936279362785,67.48623622111182],[-53.577535775357745,67.498056262001],[-53.476734767347665,67.5081877256203],[-53.40833408334083,67.526762075589],[-53.38673386733866,67.53013923012875],[-53.37953379533795,67.53182780739866],[-53.350733507335065,67.54871358009748],[-53.3111331113311,67.56222219825653],[-53.12753127531275,67.59092801184454],[-53.10233102331023,67.59768232092406],[-53.138331383313826,67.6061252072735],[-53.20673206732067,67.58417370276501],[-53.239132391323906,67.59092801184454],[-53.120331203312034,67.6348310208615],[-53.03393033930338,67.6432739072109],[-52.99072990729907,67.6534053708302],[-52.911529115291145,67.68717691622786],[-52.961929619296185,67.68548833895798],[-52.99072990729907,67.68042260714833],[-53.02673026730267,67.66184825717963],[-53.0591305913059,67.65678252536998],[-53.087930879308786,67.65509394810007],[-53.10593105931059,67.66015967990973],[-53.08073080730807,67.68042260714833],[-53.048330483304824,67.69561980257728],[-52.97992979929799,67.71419415254599],[-52.90072900729007,67.72770277070504],[-52.82152821528214,67.72770277070504],[-52.79992799927999,67.72432561616529],[-52.76392763927639,67.71081699800621],[-52.74592745927458,67.70743984346646],[-52.598325983259826,67.71925988435564],[-52.56232562325623,67.72601419343516],[-52.533525335253344,67.74121138886412],[-52.75312753127531,67.73107992524481],[-52.82872828728287,67.74121138886412],[-52.78912789127891,67.74965427521352],[-52.64152641526415,67.75134285248339],[-52.555125551255514,67.76991720245212],[-52.407524075240744,67.76991720245212],[-52.378723787237874,67.76316289337257],[-52.321123211232106,67.74121138886412],[-52.245522455224545,67.73107992524481],[-52.12672126721267,67.7006855343869],[-52.119521195211945,67.69899695711703],[-52.094320943209425,67.69899695711703],[-52.08712087120871,67.7006855343869],[-52.08712087120871,67.70406268892668],[-52.08712087120871,67.71081699800621],[-52.08712087120871,67.71757130708573],[-52.07992079920798,67.72263703889539],[-52.06192061920619,67.72094846162551],[-52.02232022320223,67.70406268892668],[-51.98631986319862,67.69730837984716],[-51.943119431194305,67.6837997616881],[-51.91431914319142,67.67873402987846],[-51.90711907119072,67.67704545260855],[-51.8891188911889,67.67029114352903],[-51.8819188191882,67.6635368344495],[-51.885518855188536,67.65678252536998],[-51.8891188911889,67.65171679356033],[-51.8891188911889,67.6449624844808],[-51.86391863918638,67.63651959813137],[-51.7559175591756,67.63314244359162],[-51.532715327153255,67.66015967990973],[-51.40311403114032,67.65847110263985],[-51.381513815138135,67.66691398898928],[-51.406714067140655,67.6719797207989],[-51.41391413914138,67.6736682980688],[-51.41391413914138,67.68042260714833],[-51.349113491134915,67.67873402987846],[-51.31671316713167,67.67535687533868],[-51.255512555125534,67.65171679356033],[-51.05031050310504,67.60781378454337],[-51.01791017910179,67.59430516638432],[-50.9999099991,67.59092801184454],[-50.96030960309602,67.59261658911441],[-50.945909459094594,67.58755085730479],[-50.9351093510935,67.57910797095536],[-50.888308883088825,67.56391077552641],[-50.80190801908017,67.52169634377935],[-50.77670776707765,67.5166306119697],[-50.75870758707586,67.51494203469983],[-50.74070740707407,67.50987630289018],[-50.711907119071185,67.498056262001],[-50.69390693906939,67.49467910746122],[-50.63270632706326,67.49467910746122],[-50.57870578705786,67.48285906657205],[-50.560705607056065,67.48117048930217],[-50.54270542705427,67.48285906657205],[-50.503105031050296,67.49299053019135],[-50.485104851048504,67.49467910746122],[-50.225902259022575,67.4777933347624],[-50.19710197101972,67.46766187114312],[-50.193501935019356,67.47441618022265],[-50.20430204302042,67.48117048930217],[-50.175501755017535,67.49299053019135],[-50.10350103501034,67.50481057108053],[-50.07110071100712,67.5166306119697],[-50.09630096300964,67.51494203469983],[-50.143101431014315,67.50481057108053],[-50.283502835028344,67.49467910746122],[-50.308703087030864,67.498056262001],[-50.38790387903879,67.5166306119697],[-50.553505535055336,67.50987630289018],[-50.74430744307443,67.54533642555771],[-50.82710827108269,67.58923943457467],[-50.8739087390874,67.59768232092406],[-50.8739087390874,67.60443663000362],[-50.84870848708488,67.60781378454337],[-50.80550805508054,67.62132240270245],[-50.60390603906038,67.64833963902055],[-50.44190441904419,67.69561980257728],[-50.34110341103411,67.71081699800621],[-50.301503015030136,67.73107992524481],[-50.27990279902798,67.73783423432434],[-50.251102511025096,67.73783423432434],[-50.19710197101972,67.72770277070504],[-50.10350103501034,67.72263703889539],[-50.07830078300782,67.71419415254599],[-50.08550085500855,67.71081699800621],[-50.092700927009275,67.70575126619656],[-50.099900999009975,67.69393122530738],[-50.01350013500135,67.6837997616881],[-49.97029970299704,67.68548833895798],[-49.93429934299343,67.7006855343869],[-49.97029970299704,67.70912842073633],[-50.03870038700387,67.72094846162551],[-50.1071010710107,67.74121138886412],[-50.28710287102871,67.74458854340386],[-50.319503195031956,67.74121138886412],[-50.445504455044556,67.70406268892668],[-50.50670506705066,67.69561980257728],[-50.59310593105931,67.66691398898928],[-50.661506615066145,67.65509394810007],[-50.72990729907298,67.6534053708302],[-50.85950859508594,67.63314244359162],[-51.01071010710106,67.6246995572422],[-51.01071010710106,67.63314244359162],[-50.98190981909818,67.6348310208615],[-50.92790927909277,67.6534053708302],[-50.90270902709025,67.66015967990973],[-50.92790927909277,67.66860256625915],[-50.95670956709566,67.66860256625915],[-51.03591035910358,67.65678252536998],[-51.104311043110414,67.66015967990973],[-51.122311223112234,67.6635368344495],[-51.28791287912878,67.71419415254599],[-51.32031320313203,67.71419415254599],[-51.31671316713167,67.72432561616529],[-51.3131131311313,67.73107992524481],[-51.305913059130575,67.73445707978456],[-51.29511295112951,67.73445707978456],[-51.280712807128054,67.73276850251469],[-51.273512735127355,67.72939134797494],[-51.26631266312663,67.72432561616529],[-51.2591125911259,67.72263703889539],[-51.23391233912338,67.72094846162551],[-51.16911169111691,67.72770277070504],[-51.064710647106466,67.71757130708573],[-51.003510035100334,67.72094846162551],[-50.971109711097114,67.74121138886412],[-50.98550985509854,67.74121138886412],[-50.98550985509854,67.74796569794364],[-50.78030780307802,67.77329435699187],[-50.74070740707407,67.7918687069606],[-50.69750697506976,67.80031159331],[-50.661506615066145,67.8205745205486],[-50.63990639906399,67.82395167508835],[-50.41670416704167,67.82226309781848],[-50.351903519035176,67.80368874784978],[-50.33030330303302,67.80368874784978],[-50.3051030510305,67.80706590238952],[-50.28710287102871,67.81382021146905],[-50.283502835028344,67.82395167508835],[-50.26550265502655,67.84421460232696],[-50.3051030510305,67.8391488705173],[-50.359103591035904,67.84083744778718],[-50.41310413104131,67.8475917568667],[-50.45630456304562,67.85772322048601],[-50.44910449104489,67.88136330226436],[-50.46350463504635,67.89487192042344],[-50.49230492304923,67.89993765223309],[-50.51750517505175,67.89318334315354],[-50.510305103051024,67.88980618861379],[-50.4959049590496,67.88136330226436],[-50.49230492304923,67.87967472499449],[-50.52470524705245,67.87292041591496],[-50.59670596705968,67.88305187953426],[-50.6219062190622,67.87967472499449],[-50.63990639906399,67.88811761134389],[-50.75150751507513,67.91006911585237],[-50.78390783907838,67.91175769312227],[-50.81630816308163,67.90331480677284],[-50.83430834308342,67.88642903407401],[-50.812708127081265,67.88642903407401],[-50.812708127081265,67.87967472499449],[-50.87750877508773,67.86616610683544],[-50.888308883088825,67.85772322048601],[-50.8739087390874,67.84928033413661],[-50.84870848708488,67.85096891140648],[-50.80550805508054,67.85772322048601],[-50.76950769507695,67.87292041591496],[-50.7551075510755,67.87460899318484],[-50.72990729907298,67.87292041591496],[-50.66870668706687,67.85096891140648],[-50.64710647106472,67.85096891140648],[-50.70110701107009,67.84083744778718],[-50.71910719107191,67.83070598416788],[-50.70830708307082,67.82395167508835],[-50.84150841508415,67.8188859432787],[-50.86670866708667,67.80368874784978],[-50.82710827108269,67.80368874784978],[-50.85950859508594,67.7918687069606],[-50.895508955089554,67.79355728423047],[-50.93150931509314,67.80200017057987],[-50.95670956709566,67.80368874784978],[-50.971109711097114,67.79693443877022],[-50.989109891098906,67.77667151153165],[-51.003510035100334,67.76991720245212],[-51.021510215102154,67.76822862518222],[-51.07551075510756,67.77667151153165],[-51.10071100711008,67.77329435699187],[-51.14391143911439,67.76485147064247],[-51.16911169111691,67.76316289337257],[-51.1871118711187,67.76485147064247],[-51.23751237512374,67.78342582061117],[-51.23751237512374,67.7901801296907],[-51.19431194311943,67.80368874784978],[-51.17631176311764,67.80368874784978],[-51.20151201512016,67.81213163419918],[-51.22671226712268,67.81719736600883],[-51.248312483124835,67.82564025235823],[-51.2591125911259,67.8475917568667],[-51.273512735127355,67.86447752956553],[-51.349113491134915,67.87292041591496],[-51.36711367113671,67.88642903407401],[-51.33831338313382,67.88642903407401],[-51.223112231122315,67.90331480677284],[-51.07551075510756,67.90838053858249],[-51.064710647106466,67.90331480677284],[-51.053910539105374,67.89656049769332],[-51.028710287102854,67.88305187953426],[-51.01791017910179,67.87967472499449],[-50.99270992709927,67.87967472499449],[-50.97470974709748,67.88642903407401],[-50.97470974709748,67.89993765223309],[-50.99270992709927,67.91344627039214],[-50.98550985509854,67.91513484766202],[-50.971109711097114,67.92020057947167],[-51.046710467104674,67.94046350671027],[-51.039510395103946,67.95228354759945],[-51.039510395103946,67.96410358848863],[-51.046710467104674,67.97085789756815],[-51.0611106111061,67.9759236293778],[-51.039510395103946,67.98098936118745],[-51.24471244712447,67.96916932029828],[-51.26991269912699,67.9573492794091],[-51.28791287912878,67.94384066125002],[-51.3131131311313,67.93202062036084],[-51.34191341913419,67.92357773401145],[-51.36351363513634,67.92020057947167],[-51.39231392313923,67.92188915674154],[-51.40311403114032,67.92526631128132],[-51.43551435514354,67.9370863521705],[-51.47151471514715,67.94046350671027],[-51.49311493114931,67.9472178157898],[-51.5039150391504,67.94384066125002],[-51.550715507155076,67.93877492944037],[-51.57231572315723,67.93370919763072],[-51.56151561515614,67.9185120022018],[-51.507515075150735,67.89993765223309],[-51.48591485914858,67.88980618861379],[-51.47151471514715,67.86616610683544],[-51.45351453514536,67.86110037502579],[-51.41391413914138,67.85941179775588],[-51.39591395913959,67.85603464321613],[-51.33831338313382,67.83746029324743],[-51.323913239132395,67.82395167508835],[-51.349113491134915,67.80368874784978],[-51.38871388713886,67.78342582061117],[-51.399513995139955,67.76991720245212],[-51.381513815138135,67.75472000702317],[-51.381513815138135,67.74796569794364],[-51.424714247142475,67.74965427521352],[-51.44631446314463,67.74627712067377],[-51.475114751147515,67.73107992524481],[-51.49671496714967,67.72770277070504],[-51.51831518315183,67.72939134797494],[-51.532715327153255,67.73445707978456],[-51.5039150391504,67.73952281159421],[-51.47871478714788,67.74965427521352],[-51.47151471514715,67.75809716156294],[-51.49671496714967,67.76316289337257],[-51.51471514715146,67.75978573883282],[-51.55431554315544,67.74796569794364],[-51.56871568715687,67.74965427521352],[-51.583115831158295,67.75303142975329],[-51.59751597515975,67.75303142975329],[-51.61191611916118,67.74458854340386],[-51.629916299163,67.73107992524481],[-51.65511655116552,67.71757130708573],[-51.68031680316804,67.70743984346646],[-51.701917019170196,67.7006855343869],[-51.734317343173416,67.69730837984716],[-51.77031770317703,67.69899695711703],[-51.802718027180276,67.70743984346646],[-51.82071820718207,67.72263703889539],[-51.79911799117991,67.72263703889539],[-51.79911799117991,67.72770277070504],[-51.82431824318243,67.72770277070504],[-51.83871838718386,67.72939134797494],[-51.84951849518495,67.73445707978456],[-51.817118171181704,67.75303142975329],[-51.784717847178456,67.76147431610269],[-51.64431644316443,67.75978573883282],[-51.629916299163,67.76654004791234],[-51.629916299163,67.77667151153165],[-51.64431644316443,67.7817372433413],[-51.66951669516695,67.78342582061117],[-51.691116911169104,67.78849155242082],[-51.73071730717308,67.7901801296907],[-51.80631806318064,67.7817372433413],[-51.82071820718207,67.77667151153165],[-51.83151831518316,67.76991720245212],[-51.84591845918459,67.75809716156294],[-51.860318603186016,67.75303142975329],[-52.2311223112231,67.76991720245212],[-52.26352263522635,67.7800486660714],[-52.29952299522995,67.8104430569293],[-52.331923319233184,67.81719736600883],[-52.34272342723426,67.82226309781848],[-52.331923319233184,67.83239456143778],[-52.31752317523174,67.84252602505705],[-52.295922959229586,67.85603464321613],[-52.23832238322383,67.86616610683544],[-52.22392223922239,67.87123183864506],[-52.195121951219505,67.88305187953426],[-52.15912159121591,67.89149476588366],[-52.14832148321483,67.89318334315354],[-52.13752137521375,67.89149476588366],[-52.13752137521375,67.88642903407401],[-52.144721447214465,67.88136330226436],[-52.15552155521554,67.87967472499449],[-51.92151921519215,67.88642903407401],[-51.90711907119072,67.88980618861379],[-51.87111871118711,67.90331480677284],[-51.827918279182796,67.91006911585237],[-51.7631176311763,67.93033204309097],[-51.73071730717308,67.93370919763072],[-51.665916659166584,67.93370919763072],[-51.629916299163,67.9370863521705],[-51.601116011160116,67.9472178157898],[-51.60471604716048,67.95397212486932],[-51.59751597515975,67.95903785667898],[-51.57231572315723,67.96916932029828],[-51.608316083160815,67.97761220664768],[-51.835118351183496,67.94046350671027],[-51.917919179191784,67.91344627039214],[-51.95031950319503,67.90838053858249],[-52.20592205922058,67.90500338404271],[-52.23832238322383,67.90162622950297],[-52.26352263522635,67.88980618861379],[-52.27432274322743,67.88474045680414],[-52.3931239312393,67.86954326137518],[-52.41112411124111,67.86616610683544],[-52.41832418324182,67.85772322048601],[-52.43992439924399,67.8391488705173],[-52.45072450724507,67.83070598416788],[-52.46512465124651,67.82395167508835],[-52.483124831248304,67.8188859432787],[-52.555125551255514,67.81213163419918],[-52.62712627126271,67.79355728423047],[-52.66312663126631,67.7901801296907],[-52.82512825128251,67.79693443877022],[-52.83952839528395,67.79355728423047],[-52.861128611286105,67.77836008880152],[-52.87552875528755,67.77667151153165],[-52.886328863288625,67.77498293426177],[-52.90072900729007,67.76991720245212],[-52.911529115291145,67.76991720245212],[-52.94392943929439,67.76991720245212],[-53.00513005130051,67.75809716156294],[-53.062730627306266,67.73614565705446],[-53.33273332733327,67.59599374365419],[-53.577535775357745,67.51831918923958],[-53.66753667536675,67.50312199381065],[-53.678336783367826,67.50312199381065],[-53.6891368913689,67.5081877256203],[-53.674736747367476,67.52000776650948],[-53.68193681936819,67.52338492104923],[-53.703537035370346,67.52338492104923],[-53.725137251372516,67.53182780739866],[-53.728737287372866,67.53858211647818],[-53.710737107371074,67.56391077552641],[-53.725137251372516,67.56559935279631],[-53.739537395373944,67.57235366187584],[-53.739537395373944,67.58079654822524],[-53.73233732337323,67.59092801184454],[-53.753937539375386,67.60274805273372],[-53.735937359373594,67.61287951635302],[-53.58833588335882,67.65002821629045],[-53.55953559535595,67.6534053708302],[-53.55953559535595,67.66015967990973],[-53.69633696336963,67.6449624844808],[-53.58833588335882,67.6719797207989],[-53.552335523355225,67.68717691622786],[-53.55953559535595,67.69055407076763],[-53.56673566735667,67.69393122530738],[-53.55593555935559,67.7006855343869],[-53.54513545135451,67.71081699800621],[-53.54153541535415,67.71925988435564],[-53.548735487354875,67.72263703889539],[-53.552335523355225,67.73614565705446],[-53.56673566735667,67.74458854340386],[-53.57033570335703,67.75303142975329],[-53.552335523355225,67.76316289337257],[-53.57033570335703,67.76147431610269],[-53.58833588335882,67.76485147064247],[-53.60633606336063,67.771605779722],[-53.63873638736386,67.7901801296907],[-53.65673656736567,67.79524586150035],[-53.703537035370346,67.79693443877022],[-53.6891368913689,67.81213163419918],[-53.59553595535955,67.83070598416788],[-53.55593555935559,67.8475917568667],[-53.54153541535415,67.85096891140648],[-53.527135271352705,67.85096891140648],[-53.51273512735126,67.84590317959683],[-53.498334983349835,67.84590317959683],[-53.48393483934839,67.85096891140648],[-53.49113491134911,67.85434606594626],[-53.49113491134911,67.85772322048601],[-53.48033480334803,67.85772322048601],[-53.46953469534695,67.85434606594626],[-53.46233462334622,67.84590317959683],[-53.45873458734587,67.83408313870765],[-53.46233462334622,67.8205745205486],[-53.473134731347315,67.81550878873895],[-53.50553505535055,67.81719736600883],[-53.50553505535055,67.8104430569293],[-53.48033480334803,67.80537732511965],[-53.42993429934299,67.81550878873895],[-53.40473404734047,67.81719736600883],[-53.41193411934118,67.8104430569293],[-53.426334263342625,67.80537732511965],[-53.4371343713437,67.80368874784978],[-53.451534515345145,67.80368874784978],[-53.451534515345145,67.79693443877022],[-53.27873278732787,67.80537732511965],[-53.246332463324634,67.82395167508835],[-53.38673386733866,67.82732882962813],[-53.42993429934299,67.83746029324743],[-53.42993429934299,67.84421460232696],[-53.41913419134191,67.85265748867636],[-53.375933759337585,67.86616610683544],[-53.401134011340105,67.87292041591496],[-53.45873458734587,67.87292041591496],[-53.48393483934839,67.87967472499449],[-53.46233462334622,67.89318334315354],[-53.43353433534335,67.89824907496319],[-53.37953379533795,67.89993765223309],[-53.372333723337235,67.89824907496319],[-53.33993339933399,67.88642903407401],[-53.3111331113311,67.88642903407401],[-53.300333003330024,67.88305187953426],[-53.29313293132931,67.87292041591496],[-53.300333003330024,67.86785468410531],[-53.31473314733147,67.86278895229566],[-53.325533255332545,67.85603464321613],[-53.325533255332545,67.8475917568667],[-53.31473314733147,67.84252602505705],[-53.289532895328946,67.83746029324743],[-53.27873278732787,67.83408313870765],[-53.26073260732606,67.83239456143778],[-53.1851318513185,67.83746029324743],[-53.1851318513185,67.84421460232696],[-53.24273242732427,67.84252602505705],[-53.271532715327155,67.84590317959683],[-53.28593285932858,67.85772322048601],[-53.149131491314904,67.89149476588366],[-53.120331203312034,67.89318334315354],[-53.069930699306994,67.88305187953426],[-53.05193051930519,67.88642903407401],[-53.087930879308786,67.90162622950297],[-53.123931239312384,67.91175769312227],[-53.163531635316346,67.91344627039214],[-53.20313203132031,67.90669196131262],[-53.249932499324984,67.89318334315354],[-53.26073260732606,67.89318334315354],[-53.264332643326426,67.89487192042344],[-53.26793267932679,67.89993765223309],[-53.26793267932679,67.90500338404271],[-53.275132751327504,67.90669196131262],[-53.296732967329675,67.90838053858249],[-53.30393303933039,67.91006911585237],[-53.31473314733147,67.91344627039214],[-53.300333003330024,67.91682342493192],[-53.26793267932679,67.9185120022018],[-53.25713257132571,67.92357773401145],[-53.24273242732427,67.93202062036084],[-53.224732247322464,67.93539777490062],[-53.19233192331923,67.93370919763072],[-53.23553235532354,67.94384066125002],[-53.25353253532535,67.94890639305967],[-53.264332643326426,67.96072643394885],[-53.249932499324984,67.96410358848863],[-53.199531995319944,67.96748074302837],[-53.15993159931598,67.96072643394885],[-53.073530735307344,67.9759236293778],[-52.88992889928899,67.98098936118745],[-52.91512915129151,67.98943224753685],[-52.97272972729726,68.00125228842603],[-52.997929979299784,68.00294086569593],[-53.00873008730086,67.99956371115616],[-53.019530195301954,67.99112082480676],[-53.03393033930338,67.98943224753685],[-53.26073260732606,67.98943224753685],[-53.25353253532535,67.99787513388628],[-53.249932499324984,68.00631802023568],[-53.249932499324984,68.01476090658511],[-53.26073260732606,68.02320379293451],[-53.22833228332283,68.02658094747429],[-53.17793177931779,68.04684387471286],[-53.04113041130411,68.06372964741169],[-52.72792727927279,67.96748074302837],[-52.630726307263075,67.96072643394885],[-52.62352623526235,67.95903785667898],[-52.62352623526235,67.9556607021392],[-52.62352623526235,67.95059497032955],[-52.61992619926198,67.9472178157898],[-52.58752587525875,67.94384066125002],[-52.54072540725407,67.95397212486932],[-52.25992259922599,67.94046350671027],[-52.220322203222025,67.9286434658211],[-52.20592205922058,67.9269548885512],[-52.18432184321843,67.9286434658211],[-52.13752137521375,67.93877492944037],[-52.11592115921158,67.94046350671027],[-52.09792097920979,67.94552923851992],[-52.05832058320583,67.9759236293778],[-52.05832058320583,67.98098936118745],[-52.08352083520835,67.98098936118745],[-52.11232112321123,67.9759236293778],[-52.16272162721627,67.9573492794091],[-52.19872198721987,67.95059497032955],[-52.47592475924759,67.96916932029828],[-52.75312753127531,67.9860550929971],[-52.82512825128251,68.00462944296581],[-53.00513005130051,68.07554968830087],[-53.13473134731346,68.10932123369852],[-53.163531635316346,68.12620700639735],[-53.145531455314554,68.13802704728653],[-53.098730987309864,68.1515356654456],[-53.08073080730807,68.159978551795],[-53.095130951309514,68.17179859268418],[-53.113131131311306,68.17855290176374],[-53.13113131131311,68.17855290176374],[-53.149131491314904,68.17348716995409],[-53.15273152731527,68.15660139725526],[-53.17793177931779,68.1498470881757],[-53.239132391323906,68.14646993363596],[-53.26793267932679,68.1329613154769],[-53.28233282332823,68.12958416093713],[-53.296732967329675,68.13633847001665],[-53.296732967329675,68.14478135636608],[-53.28593285932858,68.15322424271548],[-53.275132751327504,68.16166712906491],[-53.264332643326426,68.16673286087453],[-53.28593285932858,68.17011001541431],[-53.32913329133291,68.15660139725526],[-53.350733507335065,68.15322424271548],[-53.45873458734587,68.15322424271548],[-53.30753307533075,68.18699578811314],[-53.15273152731527,68.20050440627219],[-53.113131131311306,68.19881582900231],[-53.07713077130771,68.19206151992279],[-53.00513005130051,68.16673286087453],[-52.97272972729726,68.159978551795],[-52.89352893528935,68.15660139725526],[-52.86832868328683,68.14646993363596],[-52.85032850328503,68.14815851090583],[-52.81792817928179,68.13971562455643],[-52.760327603276025,68.11776412004795],[-52.72792727927279,68.11100981096843],[-52.529925299252994,68.09581261553947],[-52.447124471244706,68.06879537922134],[-52.41472414724147,68.06710680195147],[-52.38952389523895,68.07723826557077],[-52.41472414724147,68.07892684284064],[-52.51192511925119,68.102566924619],[-52.52632526325263,68.10932123369852],[-52.529925299252994,68.11776412004795],[-52.51192511925119,68.12620700639735],[-52.53712537125371,68.1329613154769],[-52.61992619926198,68.12620700639735],[-52.63792637926379,68.12958416093713],[-52.64152641526415,68.13464989274678],[-52.63792637926379,68.1414042018263],[-52.634326343263425,68.14646993363596],[-52.65232652326523,68.1498470881757],[-52.68832688326883,68.15322424271548],[-52.70272702727027,68.159978551795],[-52.69552695526954,68.16504428360466],[-52.69192691926919,68.16673286087453],[-52.69192691926919,68.17348716995409],[-52.71352713527135,68.17855290176374],[-52.75312753127531,68.16842143814443],[-52.77832778327783,68.16673286087453],[-52.7711277112771,68.16673286087453],[-52.79632796327962,68.16504428360466],[-52.79992799927999,68.17517574722396],[-52.79272792727927,68.18868436538301],[-52.77472774727747,68.19375009719266],[-52.72432724327243,68.20050440627219],[-52.709927099270985,68.19881582900231],[-52.67752677526775,68.18868436538301],[-52.66312663126631,68.18699578811314],[-52.583925839258384,68.19037294265291],[-52.555125551255514,68.18699578811314],[-52.472324723247226,68.16166712906491],[-52.44352443524434,68.159978551795],[-52.43992439924399,68.15322424271548],[-52.38952389523895,68.14646993363596],[-52.32472324723247,68.12789558366725],[-52.26352263522635,68.11945269731783],[-52.19872198721987,68.0924354609997],[-52.16272162721627,68.08568115192017],[-52.08712087120871,68.08568115192017],[-52.04752047520475,68.08061542011052],[-51.97551975519755,68.05359818379242],[-51.93231932319324,68.04684387471286],[-51.575915759157596,68.05866391560204],[-51.21591215912159,68.07048395649124],[-51.16911169111691,68.0654182246816],[-51.14391143911439,68.05866391560204],[-51.10791107911078,68.03671241109359],[-51.0611106111061,68.02826952474416],[-50.996309963099634,68.00969517477546],[-50.90270902709025,67.99280940207663],[-50.85950859508594,67.97761220664768],[-50.711907119071185,67.9573492794091],[-50.69030690306903,67.95059497032955],[-50.6831068310683,67.94384066125002],[-50.61830618306183,67.91344627039214],[-50.60390603906038,67.91006911585237],[-50.56790567905679,67.90669196131262],[-50.57150571505716,67.91344627039214],[-50.560705607056065,67.9185120022018],[-50.54630546305464,67.92020057947167],[-50.51750517505175,67.92020057947167],[-50.50670506705066,67.92188915674154],[-50.48870488704887,67.93202062036084],[-50.477904779047776,67.93370919763072],[-50.233102331023304,67.91175769312227],[-50.1791017910179,67.92020057947167],[-50.14670146701468,67.9472178157898],[-50.29790297902977,67.93370919763072],[-50.31230312303123,67.9370863521705],[-50.34110341103411,67.94552923851992],[-50.46350463504635,67.95397212486932],[-50.503105031050296,67.96748074302837],[-50.51750517505175,67.96916932029828],[-50.54630546305464,67.96748074302837],[-50.560705607056065,67.96916932029828],[-50.57150571505716,67.9759236293778],[-50.56430564305643,67.97930078391755],[-50.5571055710557,67.9860550929971],[-50.54990549905497,67.99280940207663],[-50.54630546305464,68.00294086569593],[-50.58950589505895,68.00800659750558],[-50.67950679506794,67.99618655661638],[-50.72270722707228,68.00294086569593],[-50.69750697506976,68.00969517477546],[-50.6831068310683,68.01813806112486],[-50.67950679506794,68.02658094747429],[-50.70470704707046,68.03671241109359],[-50.73350733507334,68.04008956563334],[-50.79470794707947,68.03333525655381],[-50.82710827108269,68.03671241109359],[-50.863108631086305,68.04853245198277],[-50.92790927909277,68.05190960652251],[-50.94230942309423,68.05697533833217],[-50.95310953109529,68.06204107014182],[-50.96750967509675,68.07217253376112],[-50.978309783097814,68.07723826557077],[-50.99270992709927,68.08230399738042],[-51.028710287102854,68.08568115192017],[-51.046710467104674,68.09074688372982],[-51.021510215102154,68.10087834734912],[-50.9351093510935,68.11776412004795],[-50.9351093510935,68.12620700639735],[-50.971109711097114,68.1228298518576],[-51.039510395103946,68.10763265642865],[-51.07551075510756,68.10425550188887],[-51.10071100711008,68.10594407915877],[-51.11151111511114,68.11100981096843],[-51.115111151111506,68.1228298518576],[-51.122311223112234,68.12958416093713],[-51.13671136711366,68.1329613154769],[-51.16911169111691,68.1329613154769],[-51.18351183511834,68.13633847001665],[-51.21591215912159,68.15491281998536],[-51.230312303123014,68.159978551795],[-51.24471244712447,68.15660139725526],[-51.26271262712626,68.1498470881757],[-51.27711277112772,68.14646993363596],[-51.3131131311313,68.16504428360466],[-51.36711367113671,68.17348716995409],[-51.3851138511385,68.18024147903361],[-51.41751417514175,68.19881582900231],[-51.43551435514354,68.20050440627219],[-51.43551435514354,68.20725871535174],[-50.996309963099634,68.18024147903361],[-50.96750967509675,68.18361863357336],[-50.95670956709566,68.18868436538301],[-50.963909639096386,68.19712725173244],[-51.01071010710106,68.21739017897102],[-51.03591035910358,68.22076733351079],[-51.0611106111061,68.22245591078067],[-51.115111151111506,68.21401302443127],[-51.140311403114026,68.21739017897102],[-51.1871118711187,68.24609599255902],[-51.21231212312122,68.2494731470988],[-51.356313563135615,68.24778456982892],[-51.381513815138135,68.25622745617832],[-51.36351363513634,68.26635891979763],[-51.34191341913419,68.2697360743374],[-51.223112231122315,68.27480180614702],[-51.20871208712086,68.27986753795668],[-51.190711907119066,68.2883104243061],[-51.154711547115454,68.29506473338563],[-51.147511475114754,68.30350761973506],[-51.147511475114754,68.30857335154468],[-51.147511475114754,68.31870481516398],[-51.147511475114754,68.32377054697363],[-51.14391143911439,68.33052485605316],[-51.122311223112234,68.35078778329176],[-51.129511295112934,68.35585351510142],[-51.13671136711366,68.35923066964116],[-51.14391143911439,68.36598497872069],[-51.147511475114754,68.37273928780024],[-51.129511295112934,68.37273928780024],[-51.14391143911439,68.37611644233999],[-51.16191161911618,68.37949359687977],[-51.17631176311764,68.38455932868942],[-51.18351183511834,68.3963793695786],[-51.17631176311764,68.40819941046777],[-51.165511655116546,68.4149537195473],[-50.9999099991,68.44703668767508],[-50.94230942309423,68.45041384221483],[-50.92790927909277,68.4537909967546],[-50.8811088110881,68.48249681034261],[-50.85590855908558,68.48925111942214],[-50.82710827108269,68.48249681034261],[-50.84870848708488,68.47743107853296],[-50.86670866708667,68.46898819218356],[-50.84870848708488,68.46729961491366],[-50.81630816308163,68.47405392399318],[-50.787507875078745,68.48418538761248],[-50.77310773107732,68.49600542850166],[-50.84870848708488,68.50782546939084],[-51.230312303123014,68.4149537195473],[-51.32031320313203,68.42001945135695],[-51.42831428314284,68.4065108331979],[-51.46071460714606,68.40819941046777],[-51.53991539915398,68.42846233770635],[-51.56871568715687,68.43015091497625],[-51.59391593915939,68.42677376043648],[-51.64791647916479,68.41326514227742],[-51.61911619116191,68.404822255928],[-51.56151561515614,68.3963793695786],[-51.5111151111511,68.36598497872069],[-51.482314823148215,68.35923066964116],[-51.3131131311313,68.36598497872069],[-51.27711277112772,68.35585351510142],[-51.23391233912338,68.32883627878329],[-51.21951219512195,68.31363908335433],[-51.24471244712447,68.30350761973506],[-51.23391233912338,68.2967533106555],[-51.223112231122315,68.2967533106555],[-51.3131131311313,68.28324469249645],[-51.64791647916479,68.27480180614702],[-51.68031680316804,68.26467034252775],[-51.69831698316983,68.26298176525785],[-51.73071730717308,68.26298176525785],[-51.74871748717487,68.26129318798797],[-51.777517775177756,68.24440741528915],[-51.791917919179184,68.24440741528915],[-51.827918279182796,68.2494731470988],[-52.05472054720546,68.23596452893975],[-52.10152101521015,68.22245591078067],[-52.13752137521375,68.21739017897102],[-52.22752227522275,68.22076733351079],[-52.28152281522814,68.19881582900231],[-52.44352443524434,68.18193005630349],[-52.46872468724686,68.18530721084326],[-52.49032490324903,68.19375009719266],[-52.504725047250474,68.19375009719266],[-52.457924579245784,68.21739017897102],[-52.44352443524434,68.22921021986019],[-52.46512465124651,68.23765310620962],[-52.522725227252266,68.24609599255902],[-52.547925479254786,68.25285030163857],[-52.56232562325623,68.26467034252775],[-52.55152551525515,68.27311322887715],[-52.529925299252994,68.28155611522658],[-52.51192511925119,68.28999900157598],[-52.54432544325442,68.29506473338563],[-52.64152641526415,68.27649038341693],[-52.756727567275675,68.28324469249645],[-52.79632796327962,68.27649038341693],[-52.78912789127891,68.27649038341693],[-52.74232742327423,68.26467034252775],[-52.67032670326702,68.26129318798797],[-52.6451264512645,68.25453887890845],[-52.62712627126271,68.24271883801927],[-52.66672666726667,68.22414448805057],[-52.71352713527135,68.21570160170114],[-52.76392763927639,68.21570160170114],[-52.807128071280715,68.22245591078067],[-52.81432814328143,68.22414448805057],[-52.82512825128251,68.23258737439997],[-52.832328323283235,68.23596452893975],[-52.84672846728466,68.23596452893975],[-52.87192871928718,68.22921021986019],[-52.882728827288275,68.22921021986019],[-52.90072900729007,68.23427595166984],[-52.89352893528935,68.24271883801927],[-52.85392853928539,68.25622745617832],[-52.8971289712897,68.25453887890845],[-52.91872918729187,68.25622745617832],[-52.936729367293665,68.26298176525785],[-52.91872918729187,68.2781789606868],[-52.88992889928899,68.28999900157598],[-52.75312753127531,68.31701623789411],[-52.709927099270985,68.31870481516398],[-52.67752677526775,68.3068847742748],[-52.66672666726667,68.31026192881458],[-52.655926559265595,68.31532766062423],[-52.64152641526415,68.31701623789411],[-52.6451264512645,68.32208196970376],[-52.64872648726487,68.32883627878329],[-52.64872648726487,68.33221343332306],[-52.61632616326163,68.33052485605316],[-52.60192601926019,68.33390201059294],[-52.60192601926019,68.34403347421224],[-52.598325983259826,68.34403347421224],[-52.59112591125911,68.34403347421224],[-52.58752587525875,68.34403347421224],[-52.58752587525875,68.35078778329176],[-52.69192691926919,68.33727916513268],[-52.78912789127891,68.33727916513268],[-52.832328323283235,68.31701623789411],[-53.073530735307344,68.2883104243061],[-53.138331383313826,68.28999900157598],[-53.170731707317074,68.2967533106555],[-53.20313203132031,68.30857335154468],[-53.221132211322114,68.30857335154468],[-53.25713257132571,68.29168757884585],[-53.30753307533075,68.2883104243061],[-53.33993339933399,68.27142465160728],[-53.35433354333543,68.27480180614702],[-53.36513365133651,68.28493326976633],[-53.375933759337585,68.2967533106555],[-53.350733507335065,68.29168757884585],[-53.34353343533435,68.29506473338563],[-53.33633336333362,68.30350761973506],[-53.37953379533795,68.32208196970376],[-53.39033390333903,68.33221343332306],[-53.296732967329675,68.35078778329176],[-53.246332463324634,68.35247636056164],[-53.20313203132031,68.34403347421224],[-53.145531455314554,68.32377054697363],[-53.113131131311306,68.31532766062423],[-53.087930879308786,68.31701623789411],[-53.02673026730267,68.34403347421224],[-52.961929619296185,68.34909920602189],[-52.94752947529474,68.35585351510142],[-52.9331293312933,68.36429640145082],[-52.911529115291145,68.37105071053034],[-52.86832868328683,68.37949359687977],[-52.79992799927999,68.37949359687977],[-52.77832778327783,68.3862479059593],[-52.79272792727927,68.38962506049907],[-52.810728107281065,68.39469079230872],[-52.82152821528214,68.39975652411835],[-52.81432814328143,68.40819941046777],[-52.80352803528035,68.41326514227742],[-52.79272792727927,68.4149537195473],[-52.77832778327783,68.41326514227742],[-52.77472774727747,68.42339660589673],[-52.71712717127171,68.42339660589673],[-52.69552695526954,68.43015091497625],[-52.681126811268115,68.43859380132565],[-52.64152641526415,68.45210241948473],[-52.56592565925659,68.46054530583413],[-52.558725587255864,68.46054530583413],[-52.547925479254786,68.45547957402448],[-52.54072540725407,68.4537909967546],[-52.53712537125371,68.45716815129438],[-52.533525335253344,68.462233883104],[-52.533525335253344,68.46729961491366],[-52.533525335253344,68.46898819218356],[-52.447124471244706,68.462233883104],[-52.421924219242186,68.46898819218356],[-52.479524795247954,68.49600542850166],[-52.41112411124111,68.50782546939084],[-52.38952389523895,68.50951404666074],[-52.41472414724147,68.51795693301014],[-52.447124471244706,68.51795693301014],[-52.573125731257306,68.50444831485109],[-52.609126091260904,68.50782546939084],[-52.64152641526415,68.51626835574027],[-52.61632616326163,68.52639981935957],[-52.19152191521914,68.5719914056464],[-52.18072180721806,68.56692567383675],[-52.17352173521735,68.5618599420271],[-52.16632166321662,68.55679421021745],[-52.15552155521554,68.55003990113792],[-52.144721447214465,68.54666274659814],[-52.13392133921339,68.5432855920584],[-52.119521195211945,68.5432855920584],[-52.10872108721087,68.5432855920584],[-52.11232112321123,68.54835132386805],[-52.11232112321123,68.55003990113792],[-52.11232112321123,68.55341705567767],[-52.11592115921158,68.55679421021745],[-51.96471964719646,68.58718860107533],[-51.885518855188536,68.59225433288498],[-51.81351813518134,68.57874571472593],[-51.84951849518495,68.56861425110662],[-51.96471964719646,68.56354851929697],[-51.96471964719646,68.55679421021745],[-51.91431914319142,68.55679421021745],[-51.91431914319142,68.55003990113792],[-51.92871928719288,68.55003990113792],[-51.93951939519394,68.54666274659814],[-51.94671946719467,68.5432855920584],[-51.95751957519576,68.53653128297884],[-51.93231932319324,68.52977697389932],[-51.86391863918638,68.51626835574027],[-51.842318423184224,68.51964551028004],[-51.82071820718207,68.52808839662944],[-51.802718027180276,68.53484270570897],[-51.7559175591756,68.53653128297884],[-51.6371163711637,68.52302266481979],[-51.56871568715687,68.52471124208967],[-51.532715327153255,68.5432855920584],[-51.532715327153255,68.55510563294757],[-51.51471514715146,68.56354851929697],[-51.48951489514894,68.56692567383675],[-51.47151471514715,68.56354851929697],[-51.47151471514715,68.55679421021745],[-51.5039150391504,68.5432855920584],[-51.5039150391504,68.53653128297884],[-51.457114571145695,68.54666274659814],[-51.41031410314102,68.55003990113792],[-51.37071370713707,68.54497416932827],[-51.35271352713528,68.54835132386805],[-51.34191341913419,68.56354851929697],[-51.40311403114032,68.56354851929697],[-51.40311403114032,68.5703028283765],[-51.3779137791378,68.57874571472593],[-51.34551345513455,68.58550002380545],[-51.3131131311313,68.58550002380545],[-51.28431284312842,68.57874571472593],[-51.298712987129875,68.5703028283765],[-51.147511475114754,68.56354851929697],[-51.122311223112234,68.57874571472593],[-51.129511295112934,68.57874571472593],[-51.147511475114754,68.58550002380545],[-51.09351093510935,68.60407437377415],[-51.07551075510756,68.60576295104406],[-51.07551075510756,68.6006972192344],[-51.07551075510756,68.59225433288498],[-51.08271082710826,68.58381144653558],[-51.09351093510935,68.57874571472593],[-51.053910539105374,68.57874571472593],[-51.03591035910358,68.58381144653558],[-51.03591035910358,68.59394291015488],[-51.04311043110431,68.60576295104406],[-51.04311043110431,68.61758299193323],[-51.03591035910358,68.62771445555254],[-51.021510215102154,68.63278018736216],[-51.0071100711007,68.64291165098146],[-51.02511025110252,68.66317457822007],[-51.07551075510756,68.70201185542737],[-51.05031050310504,68.70201185542737],[-51.02511025110252,68.69525754634782],[-50.96750967509675,68.67161746456947],[-50.94230942309423,68.65304311460076],[-50.93150931509314,68.63615734190194],[-50.92430924309244,68.62940303282241],[-50.913509135091346,68.62602587828263],[-50.8811088110881,68.61927156920311],[-50.863108631086305,68.61927156920311],[-50.85230852308521,68.62940303282241],[-50.85950859508594,68.63784591917181],[-50.8811088110881,68.64628880552124],[-50.888308883088825,68.65304311460076],[-50.87750877508773,68.66317457822007],[-50.82350823508236,68.67330604183937],[-50.80550805508054,68.68174892818877],[-50.90270902709025,68.66992888729959],[-50.92790927909277,68.67330604183937],[-50.92430924309244,68.67837177364899],[-50.92430924309244,68.68174892818877],[-50.920709207092074,68.68343750545864],[-50.91710917109171,68.68681465999842],[-50.92430924309244,68.6986347008876],[-50.9351093510935,68.70032327815747],[-50.94950949509496,68.6986347008876],[-50.963909639096386,68.70201185542737],[-50.971109711097114,68.707077587237],[-50.99270992709927,68.73578340082503],[-50.8811088110881,68.76955494622266],[-50.78390783907838,68.77630925530221],[-50.76590765907659,68.78981787346126],[-50.76590765907659,68.80332649162031],[-50.65430654306542,68.83203230520832],[-50.74430744307443,68.84216376882762],[-50.787507875078745,68.84216376882762],[-50.82710827108269,68.83203230520832],[-50.870308703087034,68.81008080069986],[-50.945909459094594,68.78812929619139],[-51.01791017910179,68.75266917352383],[-51.03231032310322,68.74929201898408],[-51.115111151111506,68.73578340082503],[-51.248312483124835,68.74929201898408],[-51.29151291512915,68.74929201898408],[-51.280712807128054,68.76280063714313],[-51.26271262712626,68.76955494622266],[-51.24471244712447,68.77293210076243],[-51.223112231122315,68.77968640984196],[-51.21231212312122,68.78981787346126],[-51.205112051120494,68.79994933708056],[-51.19431194311943,68.80839222342996],[-51.17631176311764,68.81176937796974],[-51.18351183511834,68.82190084158904],[-51.205112051120494,68.83372088247822],[-51.21591215912159,68.8455409233674],[-51.179911799117974,68.85736096425657],[-51.10071100711008,68.86580385060597],[-51.06831068310683,68.8826896233048],[-51.04311043110431,68.89788681873375],[-50.989109891098906,68.9215269005121],[-50.963909639096386,68.93503551867119],[-50.99270992709927,68.93165836413141],[-51.03231032310322,68.92321547778198],[-51.064710647106466,68.90970685962293],[-51.07551075510756,68.8928210869241],[-51.097110971109714,68.88606677784458],[-51.154711547115454,68.88606677784458],[-51.18351183511834,68.87931246876505],[-51.18351183511834,68.88100104603492],[-51.18351183511834,68.8826896233048],[-51.1871118711187,68.8843782005747],[-51.190711907119066,68.88606677784458],[-51.190711907119066,68.8928210869241],[-51.179911799117974,68.9029525505434],[-51.16911169111691,68.9113954368928],[-51.10791107911078,68.93334694140128],[-51.09351093510935,68.94178982775071],[-51.08631086310862,68.95192129137001],[-51.089910899108986,68.98062710495802],[-51.097110971109714,69.00257860946647],[-51.11151111511114,69.02284153670507],[-51.13671136711366,69.04479304121355],[-51.122311223112234,69.0481701957533],[-51.09351093510935,69.04648161848343],[-51.079110791107894,69.0498587730232],[-51.097110971109714,69.07687600934133],[-51.10791107911078,69.08869605023051],[-51.122311223112234,69.09882751384978],[-51.07551075510756,69.10558182292934],[-51.0611106111061,69.11402470927874],[-51.079110791107894,69.13259905924744],[-50.79110791107911,69.12922190470769],[-50.7479074790748,69.12077901835826],[-50.74430744307443,69.09882751384978],[-50.76950769507695,69.08700747296061],[-50.90270902709025,69.07856458661121],[-50.92790927909277,69.0498587730232],[-50.945909459094594,69.04648161848343],[-50.97470974709748,69.04479304121355],[-50.99270992709927,69.03803873213403],[-50.92430924309244,69.0295958457846],[-50.90270902709025,69.0295958457846],[-50.90270902709025,69.03803873213403],[-50.90990909909098,69.03803873213403],[-50.90990909909098,69.04479304121355],[-50.70110701107009,69.08194174115096],[-50.63270632706326,69.07181027753168],[-50.64350643506435,69.05492450483285],[-50.64710647106472,69.0498587730232],[-50.6291062910629,69.04479304121355],[-50.61470614706147,69.0498587730232],[-50.60030600306001,69.05492450483285],[-50.585905859058585,69.05323592756295],[-50.53910539105391,69.03297300032438],[-50.52470524705245,69.0295958457846],[-50.535505355053544,69.0110214958159],[-50.53910539105391,69.0008900321966],[-50.535505355053544,68.99075856857729],[-50.52470524705245,68.97556137314837],[-50.52470524705245,68.96711848679894],[-50.52470524705245,68.95867560044954],[-50.52470524705245,68.95023271410011],[-50.51390513905139,68.94854413683024],[-50.45630456304562,68.94178982775071],[-50.4311043110431,68.93503551867119],[-50.402304023040216,68.92996978686153],[-50.39150391503915,68.92490405505188],[-50.384303843038424,68.91477259143258],[-50.384303843038424,68.90970685962293],[-50.377103771037696,68.90801828235305],[-50.359103591035904,68.90632970508318],[-50.333903339033384,68.90801828235305],[-50.319503195031956,68.91477259143258],[-50.319503195031956,68.92490405505188],[-50.34110341103411,68.93672409594106],[-50.34830348303481,68.94516698229046],[-50.351903519035176,68.95360986863989],[-50.35550355503554,68.96374133225919],[-50.359103591035904,68.96880706406884],[-50.37350373503733,68.97387279587846],[-50.38790387903879,68.97218421860859],[-50.41670416704167,68.96880706406884],[-50.44190441904419,68.96880706406884],[-50.45630456304562,68.97049564133872],[-50.47070470704708,68.97556137314837],[-50.47430474304741,68.98231568222789],[-50.48150481504814,68.99920145492672],[-50.48870488704887,69.00257860946647],[-50.49230492304923,69.00595576400625],[-50.48870488704887,69.01271007308577],[-50.477904779047776,69.02284153670507],[-50.459904599045984,69.0295958457846],[-50.43830438304383,69.03297300032438],[-50.41670416704167,69.03128442305447],[-50.402304023040216,69.02621869124485],[-50.369903699036996,69.0008900321966],[-50.351903519035176,68.99582430038694],[-50.333903339033384,69.00933291854602],[-50.35550355503554,69.03297300032438],[-50.333903339033384,69.05492450483285],[-50.29790297902977,69.06505596845213],[-50.26550265502655,69.0583016593726],[-50.25470254702546,69.0397273094039],[-50.26190261902619,69.0194643821653],[-50.27990279902798,69.0008900321966],[-50.29790297902977,68.98906999130742],[-50.24750247502473,68.96374133225919],[-50.22230222302224,68.96036417771941],[-50.20430204302042,68.97556137314837],[-50.21150211502115,68.97893852768811],[-50.22230222302224,68.98569283676764],[-50.22950229502294,68.98906999130742],[-50.21510215102151,69.00426718673637],[-50.21150211502115,69.01271007308577],[-50.218702187021876,69.02284153670507],[-50.193501935019356,69.0194643821653],[-50.18270182701826,69.0194643821653],[-50.175501755017535,69.02284153670507],[-50.175501755017535,69.0295958457846],[-50.21150211502115,69.06336739118225],[-50.22230222302224,69.07181027753168],[-50.258302583025824,69.08025316388108],[-50.42390423904237,69.06167881391238],[-50.510305103051024,69.07012170026178],[-50.67590675906757,69.11233613200886],[-50.69030690306903,69.12584475016791],[-50.65430654306542,69.13935336832697],[-50.49230492304923,69.12584475016791],[-50.384303843038424,69.13259905924744],[-50.31590315903159,69.12246759562817],[-50.29790297902977,69.12246759562817],[-50.27270272702725,69.13766479105709],[-50.258302583025824,69.14273052286674],[-50.23670236702367,69.1477962546764],[-50.1791017910179,69.15455056375592],[-50.16110161101611,69.15961629556557],[-50.13950139501395,69.17987922280417],[-50.12870128701286,69.20183072731263],[-50.13590135901359,69.22040507728136],[-50.16470164701647,69.22884796363076],[-50.18270182701826,69.22547080909101],[-50.19710197101972,69.21871650001145],[-50.20790207902078,69.20858503639218],[-50.22230222302224,69.20183072731263],[-50.243902439024396,69.196764995503],[-50.3051030510305,69.1950764182331],[-50.29790297902977,69.1950764182331],[-50.32310323103229,69.1950764182331],[-50.36630366303663,69.20014215004275],[-50.38790387903879,69.20183072731263],[-50.4311043110431,69.1950764182331],[-50.452704527045256,69.196764995503],[-50.47070470704708,69.20858503639218],[-50.44910449104489,69.22547080909101],[-50.44190441904419,69.22884796363076],[-50.452704527045256,69.23222511817053],[-50.45630456304562,69.23560227271028],[-50.46350463504635,69.24235658178983],[-50.452704527045256,69.24742231359949],[-50.452704527045256,69.25248804540911],[-50.459904599045984,69.25417662267901],[-50.47070470704708,69.25586519994889],[-50.459904599045984,69.27106239537784],[-50.46350463504635,69.28288243626702],[-50.47070470704708,69.29301389988632],[-50.47070470704708,69.3048339407755],[-50.452704527045256,69.31496540439477],[-50.39150391503915,69.32509686801407],[-50.36630366303663,69.33860548617315],[-50.4311043110431,69.34704837252255],[-50.48870488704887,69.32847402255385],[-50.60030600306001,69.27612812718749],[-50.560705607056065,69.26768524083806],[-50.54270542705427,69.25755377721876],[-50.54270542705427,69.24573373632958],[-50.553505535055336,69.23729084998018],[-50.56790567905679,69.23053654090066],[-50.59310593105931,69.22209365455123],[-50.59310593105931,69.22040507728136],[-50.59310593105931,69.2153393454717],[-50.60750607506074,69.21702792274158],[-50.64350643506435,69.2153393454717],[-50.661506615066145,69.22209365455123],[-50.64350643506435,69.22884796363076],[-50.64350643506435,69.23560227271028],[-50.686706867068665,69.23222511817053],[-50.76590765907659,69.20183072731263],[-50.83070830708306,69.19169926369335],[-50.870308703087034,69.17819064553427],[-50.888308883088825,69.17481349099452],[-50.913509135091346,69.17312491372462],[-51.003510035100334,69.17987922280417],[-51.01071010710106,69.17987922280417],[-51.01791017910179,69.18494495461383],[-51.02511025110252,69.19001068642345],[-51.03231032310322,69.1950764182331],[-51.09351093510935,69.20183072731263],[-51.115111151111506,69.20689645912228],[-51.115111151111506,69.21196219093193],[-51.079110791107894,69.22884796363076],[-51.08631086310862,69.23222511817053],[-51.097110971109714,69.23897942725006],[-51.10071100711008,69.24235658178983],[-51.08631086310862,69.24742231359949],[-51.07551075510756,69.24742231359949],[-51.046710467104674,69.24235658178983],[-51.03591035910358,69.24742231359949],[-51.021510215102154,69.26599666356819],[-51.01071010710106,69.26937381810794],[-50.938709387093866,69.27275097264771],[-50.86670866708667,69.28288243626702],[-50.89190891908919,69.29807963169594],[-50.95310953109529,69.29976820896584],[-50.97470974709748,69.30821109531524],[-50.989109891098906,69.33016259982372],[-50.971109711097114,69.33860548617315],[-50.90990909909098,69.33860548617315],[-50.913509135091346,69.34873694979242],[-50.91710917109171,69.3521141043322],[-50.89190891908919,69.35380268160208],[-50.85230852308521,69.34029406344303],[-50.83430834308342,69.34535979525268],[-50.89190891908919,69.38588564972986],[-50.895508955089554,69.40108284515881],[-50.8811088110881,69.41121430877809],[-50.85590855908558,69.41628004058774],[-50.84870848708488,69.42810008147691],[-50.84510845108451,69.44160869963599],[-50.85230852308521,69.44667443144564],[-50.85950859508594,69.45005158598539],[-50.86670866708667,69.46187162687457],[-50.75870758707586,69.47538024503365],[-50.711907119071185,69.49057744046257],[-50.686706867068665,69.49226601773248],[-50.661506615066145,69.48551170865292],[-50.6219062190622,69.470314513224],[-50.57510575105749,69.45680589506492],[-50.52470524705245,69.44836300871552],[-50.485104851048504,69.44836300871552],[-50.485104851048504,69.45511731779504],[-50.4959049590496,69.4601830496047],[-50.503105031050296,69.46693735868422],[-50.510305103051024,69.47706882230352],[-50.51750517505175,69.4888888631927],[-50.47070470704708,69.50239748135175],[-50.420304203042036,69.5091517904313],[-50.29070290702907,69.50070890408188],[-50.26190261902619,69.50408605862165],[-50.20430204302042,69.52266040859035],[-50.22950229502294,69.53110329493975],[-50.34110341103411,69.52266040859035],[-50.351903519035176,69.52603756313013],[-50.36270362703627,69.53279187220966],[-50.384303843038424,69.54798906763858],[-50.395103951039516,69.54967764490848],[-50.44910449104489,69.54461191309883],[-50.477904779047776,69.5361690267494],[-50.535505355053544,69.51084036770118],[-50.56790567905679,69.50239748135175],[-50.59310593105931,69.49564317227222],[-50.63990639906399,69.49564317227222],[-50.69030690306903,69.499020326812],[-50.72270722707228,69.5091517904313],[-50.70830708307082,69.51590609951083],[-50.69390693906939,69.5175946767807],[-50.661506615066145,69.5175946767807],[-50.71550715507155,69.52603756313013],[-50.76590765907659,69.51084036770118],[-50.812708127081265,69.49057744046257],[-50.85230852308521,69.48213455411317],[-50.8739087390874,69.49057744046257],[-50.8811088110881,69.5074632131614],[-50.8739087390874,69.52434898586023],[-50.85230852308521,69.53110329493975],[-50.83430834308342,69.53448044947953],[-50.812708127081265,69.54461191309883],[-50.79470794707947,69.55812053125788],[-50.79830798307984,69.57162914941696],[-50.79830798307984,69.58682634484589],[-50.812708127081265,69.60033496300497],[-50.83070830708306,69.61215500389415],[-50.84870848708488,69.6256636220532],[-50.77670776707765,69.65099228110142],[-50.69390693906939,69.6459265492918],[-50.42390423904237,69.59864638573507],[-50.409504095040944,69.60540069481459],[-50.42390423904237,69.61890931297367],[-50.44910449104489,69.63241793113272],[-50.459904599045984,69.6459265492918],[-50.434704347043464,69.6543694356412],[-50.510305103051024,69.6442379720219],[-50.53190531905318,69.6459265492918],[-50.59310593105931,69.66956663107015],[-50.6219062190622,69.6746323628798],[-50.737107371073705,69.66618947653038],[-50.79470794707947,69.67125520834003],[-50.82710827108269,69.7016495991979],[-50.79470794707947,69.72022394916664],[-50.70830708307082,69.73035541278591],[-50.66870668706687,69.73879829913534],[-50.6219062190622,69.76412695818357],[-50.60750607506074,69.7827013081523],[-50.59310593105931,69.7911441945017],[-50.57510575105749,69.78945561723182],[-50.528305283052816,69.77932415361252],[-50.427504275042736,69.77425842180287],[-50.35550355503554,69.76074980364382],[-50.27270272702725,69.76412695818357],[-50.22950229502294,69.75906122637392],[-50.21150211502115,69.75906122637392],[-50.18990189901899,69.76412695818357],[-50.24750247502473,69.77594699907274],[-50.26550265502655,69.78438988542217],[-50.276302763027616,69.7911441945017],[-50.294302943029436,69.81478427628005],[-50.308703087030864,69.82322716262948],[-50.319503195031956,69.82660431716923],[-50.32310323103229,69.83167004897888],[-50.31590315903159,69.84180151259818],[-50.308703087030864,69.8485558216777],[-50.301503015030136,69.85531013075723],[-50.301503015030136,69.86206443983679],[-50.3051030510305,69.87388448072596],[-50.333903339033384,69.89077025342479],[-50.37350373503733,69.89752456250432],[-50.485104851048504,69.90259029431397],[-50.560705607056065,69.91609891247302],[-50.59310593105931,69.9279189533622],[-50.56790567905679,69.9481818806008],[-50.585905859058585,69.95493618968032],[-50.560705607056065,69.9751991169189],[-50.344703447034476,69.97857627145868],[-50.29790297902977,69.9870191578081],[-50.21150211502115,70.01741354866598],[-50.23670236702367,70.03767647590456],[-50.276302763027616,70.04611936225399],[-50.420304203042036,70.03767647590456],[-50.434704347043464,70.04105363044434],[-50.44910449104489,70.05456224860339],[-50.45630456304562,70.05793940314317],[-50.47070470704708,70.05793940314317],[-50.477904779047776,70.05456224860339],[-50.48150481504814,70.04949651679377],[-50.49230492304923,70.04443078498412],[-50.503105031050296,70.04105363044434],[-50.71910719107191,69.99715062142738],[-50.80550805508054,69.99039631234785],[-50.938709387093866,69.96337907602972],[-51.2591125911259,69.96337907602972],[-51.28431284312842,69.97013338510928],[-51.2519125191252,69.97013338510928],[-51.22671226712268,69.97857627145868],[-51.18351183511834,70.00390493050693],[-51.165511655116546,70.00559350777681],[-51.147511475114754,70.00390493050693],[-51.1331113311133,70.00559350777681],[-51.11871118711187,70.01403639412621],[-51.09351093510935,70.03429932136481],[-51.08631086310862,70.03767647590456],[-51.05031050310504,70.03598789863469],[-51.03591035910358,70.03092216682504],[-51.01791017910179,70.02416785774551],[-51.01071010710106,70.01741354866598],[-50.9999099991,70.00728208504668],[-50.99270992709927,69.99883919869728],[-50.98190981909818,69.9954620441575],[-50.85950859508594,70.02416785774551],[-50.89910899108992,70.03936505317446],[-50.98190981909818,70.03261074409494],[-51.01791017910179,70.04443078498412],[-51.01071010710106,70.04443078498412],[-50.99270992709927,70.05118509406364],[-50.99270992709927,70.05793940314317],[-51.03231032310322,70.0663822894926],[-51.21951219512195,70.07313659857212],[-51.24471244712447,70.07144802130222],[-51.2591125911259,70.0663822894926],[-51.26631266312663,70.06131655768294],[-51.28431284312842,70.04443078498412],[-51.381513815138135,69.98870773507798],[-51.4391143911439,69.9667562305695],[-51.47151471514715,69.9751991169189],[-51.55431554315544,69.97351053964903],[-51.57231572315723,69.98364200326833],[-51.56871568715687,69.99039631234785],[-51.54351543515435,70.01234781685633],[-51.532715327153255,70.02416785774551],[-51.53991539915398,70.02754501228529],[-51.550715507155076,70.03092216682504],[-51.5651156511565,70.02923358955516],[-51.608316083160815,70.01741354866598],[-51.626316263162636,70.01572497139611],[-51.835118351183496,70.02247928047564],[-51.92511925119251,70.01065923958646],[-51.968319683196825,70.01065923958646],[-52.01152011520115,70.01910212593586],[-52.06192061920619,70.05118509406364],[-52.07992079920798,70.05118509406364],[-52.10152101521015,70.04611936225399],[-52.19152191521914,70.04105363044434],[-52.277922779227794,70.05625082587329],[-52.29952299522995,70.05793940314317],[-52.303123031230314,70.05625082587329],[-52.31392313923139,70.05287367133351],[-52.321123211232106,70.05118509406364],[-52.328323283232834,70.05287367133351],[-52.34272342723426,70.06300513495282],[-52.378723787237874,70.07313659857212],[-52.46512465124651,70.13392538028788],[-52.50112501125011,70.15249973025661],[-52.5191251912519,70.15925403933613],[-52.54072540725407,70.16094261660601],[-52.55152551525515,70.16600834841566],[-52.56232562325623,70.17613981203496],[-52.56952569525694,70.18795985292414],[-52.57672576725767,70.19809131654344],[-52.609126091260904,70.21666566651214],[-52.92232922329222,70.28589733457733],[-53.23193231932319,70.35344042537264],[-53.53433534335343,70.36694904353169],[-53.840338403384024,70.38045766169077],[-54.02034020340203,70.41254062981852],[-54.07794077940778,70.44968932975596],[-54.113941139411395,70.463197947915],[-54.18594185941859,70.47670656607409],[-54.18594185941859,70.48852660696326],[-54.20034200342003,70.50372380239219],[-54.218342183421825,70.51892099782114],[-54.32634326343263,70.5729554704574],[-54.45954459544595,70.61854705674423],[-54.53874538745387,70.65569575668164],[-54.553145531455314,70.66076148849129],[-54.57474574745747,70.66076148849129],[-54.61074610746107,70.65400717941176],[-54.628746287462874,70.65400717941176],[-54.628746287462874,70.66076148849129],[-54.603546035460354,70.67427010665034],[-54.58914589145891,70.68271299299977],[-54.581945819458184,70.69284445661907],[-54.581945819458184,70.70466449750825],[-54.578345783457834,70.71479596112755],[-54.571145711457106,70.71986169293717],[-54.56034560345603,70.72661600201673],[-54.52434524345243,70.74012462017578],[-54.441544415444156,70.75532181560473],[-54.32634326343263,70.79753624735179],[-54.243542435424345,70.81779917459039],[-54.15714157141571,70.82961921547957],[-53.980739807398066,70.82961921547957],[-53.93393933939339,70.81948775186027],[-53.890738907389064,70.81442202005061],[-53.82233822338223,70.79415909281204],[-53.77193771937719,70.79247051554213],[-53.67113671136711,70.79922482462166],[-53.64593645936459,70.79584767008191],[-53.58113581135811,70.77051901103366],[-53.43353433534335,70.75194466106495],[-53.19233192331923,70.77220758830356],[-52.78912789127891,70.7570103928746],[-52.45072450724507,70.70297592023834],[-52.270722707227065,70.63543282944306],[-52.12312123121231,70.6016612840454],[-52.094320943209425,70.58477551134658],[-52.05112051120511,70.56957831591762],[-51.96471964719646,70.54931538867902],[-51.842318423184224,70.50710095693196],[-51.676716767167676,70.47501798880418],[-51.550715507155076,70.43111497978725],[-51.41031410314102,70.434492134327],[-51.19431194311943,70.40240916619925],[-51.064710647106466,70.36694904353169],[-50.83070830708306,70.35681757991242],[-50.65790657906578,70.32642318905451],[-50.611106111061105,70.32473461178463],[-50.56790567905679,70.33317749813403],[-50.53190531905318,70.35850615718229],[-50.54270542705427,70.37201477534134],[-50.553505535055336,70.38214623896064],[-50.56790567905679,70.38890054804017],[-50.585905859058585,70.39396627984982],[-50.611106111061105,70.3956548571197],[-50.636306363063625,70.39058912531007],[-50.661506615066145,70.39058912531007],[-50.6831068310683,70.40072058892935],[-50.65790657906578,70.41422920708843],[-50.59670596705968,70.44293502067643],[-50.59310593105931,70.463197947915],[-50.57510575105749,70.47501798880418],[-50.51750517505175,70.49865807058256],[-50.503105031050296,70.50034664785244],[-50.503105031050296,70.50541237966209],[-50.4959049590496,70.50878953420184],[-50.49230492304923,70.51385526601149],[-50.49950499504993,70.52398672963079],[-50.50670506705066,70.52736388417057],[-50.528305283052816,70.53580677051997],[-50.53910539105391,70.53749534778984],[-50.560705607056065,70.53242961598019],[-50.60390603906038,70.50878953420184],[-50.64350643506435,70.49696949331266],[-50.65430654306542,70.46995225699456],[-50.66870668706687,70.463197947915],[-50.69390693906939,70.45982079337526],[-50.74430744307443,70.42773782524748],[-50.77310773107732,70.42098351616795],[-50.99270992709927,70.4243606707077],[-51.05751057510574,70.43955786613665],[-51.09351093510935,70.46995225699456],[-50.94230942309423,70.46995225699456],[-50.963909639096386,70.48514945242349],[-51.003510035100334,70.49696949331266],[-51.079110791107894,70.51047811147174],[-51.190711907119066,70.50203522512231],[-51.223112231122315,70.51047811147174],[-51.24111241112411,70.5341181932501],[-51.32751327513276,70.55606969775857],[-51.349113491134915,70.5712668931875],[-51.32031320313203,70.58308693407668],[-51.230312303123014,70.60672701585506],[-51.20871208712086,70.62192421128398],[-51.19431194311943,70.62867852036351],[-51.18351183511834,70.62698994309363],[-51.17631176311764,70.61854705674423],[-51.17631176311764,70.6101041703948],[-51.17631176311764,70.5999727067755],[-51.18351183511834,70.59321839769598],[-51.16191161911618,70.57970977953693],[-51.129511295112934,70.5712668931875],[-51.03591035910358,70.55944685229832],[-50.97470974709748,70.53580677051997],[-50.94230942309423,70.53074103871032],[-50.91710917109171,70.53074103871032],[-50.90630906309062,70.52736388417057],[-50.90270902709025,70.51385526601149],[-50.895508955089554,70.51047811147174],[-50.88470884708846,70.51047811147174],[-50.8739087390874,70.51385526601149],[-50.86670866708667,70.51723242055127],[-50.863108631086305,70.53580677051997],[-50.87750877508773,70.54762681140915],[-50.89910899108992,70.55775827502845],[-50.90990909909098,70.5712668931875],[-50.888308883088825,70.5712668931875],[-50.787507875078745,70.54762681140915],[-50.737107371073705,70.5442496568694],[-50.76590765907659,70.5628240068381],[-50.79830798307984,70.5729554704574],[-50.86670866708667,70.58477551134658],[-50.85590855908558,70.59321839769598],[-50.837908379083785,70.60334986131528],[-50.83430834308342,70.61348132493458],[-50.85230852308521,70.61348132493458],[-50.89190891908919,70.6016612840454],[-50.913509135091346,70.5999727067755],[-50.93150931509314,70.6016612840454],[-50.99270992709927,70.61348132493458],[-50.971109711097114,70.63880998398281],[-50.92790927909277,70.65569575668164],[-50.87750877508773,70.66245006576116],[-50.7551075510755,70.64894144760211],[-50.71910719107191,70.62867852036351],[-50.69750697506976,70.62361278855388],[-50.636306363063625,70.62023563401411],[-50.62550625506253,70.62192421128398],[-50.6219062190622,70.62867852036351],[-50.63270632706326,70.64049856125268],[-50.65430654306542,70.65063002487199],[-50.91710917109171,70.6894673020793],[-51.10071100711008,70.66076148849129],[-51.10071100711008,70.66751579757081],[-51.079110791107894,70.67764726119012],[-51.079110791107894,70.6894673020793],[-51.08631086310862,70.70466449750825],[-51.08631086310862,70.72323884747695],[-51.064710647106466,70.7485675065252],[-51.0611106111061,70.76038754741438],[-51.079110791107894,70.76376470195413],[-51.10071100711008,70.7570103928746],[-51.122311223112234,70.74350177471555],[-51.16911169111691,70.70297592023834],[-51.17631176311764,70.6995987656986],[-51.190711907119066,70.69453303388894],[-51.20871208712086,70.69284445661907],[-51.399513995139955,70.69791018842872],[-51.42831428314284,70.7097302293179],[-51.44631446314463,70.73168173382638],[-51.4391143911439,70.7468789292553],[-51.41751417514175,70.75532181560473],[-51.38871388713886,70.7570103928746],[-51.33831338313382,70.75532181560473],[-51.3131131311313,70.7570103928746],[-51.29151291512915,70.76376470195413],[-51.280712807128054,70.77220758830356],[-51.27711277112772,70.78065047465296],[-51.27711277112772,70.78909336100239],[-51.273512735127355,70.79922482462166],[-51.2591125911259,70.81104486551084],[-51.2519125191252,70.81442202005061],[-51.16911169111691,70.80597913370121],[-51.10071100711008,70.78740478373248],[-51.039510395103946,70.78740478373248],[-51.01071010710106,70.78402762919274],[-50.81990819908199,70.72155027020708],[-50.686706867068665,70.70635307477812],[-50.661506615066145,70.71310738385765],[-50.65070650706505,70.7181731156673],[-50.63990639906399,70.72999315655647],[-50.63270632706326,70.7384360429059],[-50.63990639906399,70.74350177471555],[-50.71550715507155,70.74350177471555],[-50.74070740707407,70.75532181560473],[-50.737107371073705,70.78402762919274],[-50.895508955089554,70.80766771097109],[-50.913509135091346,70.81611059732049],[-50.91710917109171,70.82624206093979],[-50.920709207092074,70.83806210182897],[-50.89910899108992,70.85157071998805],[-50.84870848708488,70.8735222244965],[-50.88470884708846,70.88027653357605],[-50.938709387093866,70.8752108017664],[-50.99270992709927,70.86339076087722],[-51.03231032310322,70.84988214271814],[-51.071910719107194,70.83975067909887],[-51.122311223112234,70.84312783363862],[-51.172711727117274,70.8566364517977],[-51.20871208712086,70.8735222244965],[-51.190711907119066,70.88027653357605],[-51.190711907119066,70.88703084265558],[-51.457114571145695,70.90898234716406],[-51.53631536315362,70.93093385167253],[-51.59031590315902,70.92924527440263],[-51.615516155161544,70.93599958348216],[-51.66231662316622,70.96132824253041],[-51.91431914319142,71.0221170242462],[-51.95751957519576,71.02380560151607],[-51.94671946719467,71.03224848786547],[-51.910719107191056,71.04575710602455],[-51.892718927189264,71.05588856964386],[-51.8819188191882,71.06095430145348],[-51.867518675186744,71.06602003326313],[-51.83151831518316,71.0693971878029],[-51.51831518315183,71.01536271516665],[-51.20871208712086,70.96301681980029],[-50.996309963099634,70.96470539707019],[-50.95670956709566,70.97483686068946],[-50.9351093510935,70.98665690157864],[-50.93150931509314,71.0119855606269],[-50.91710917109171,71.02380560151607],[-51.20151201512016,71.01705129243655],[-51.2519125191252,71.02380560151607],[-51.3131131311313,71.04237995148478],[-51.41751417514175,71.0508228378342],[-51.475114751147515,71.06433145599325],[-51.48591485914858,71.07108576507278],[-51.47151471514715,71.08290580596196],[-51.431914319143175,71.09134869231139],[-51.29151291512915,71.0778400741523],[-51.31671316713167,71.08628296050173],[-51.349113491134915,71.08797153777161],[-51.381513815138135,71.09303726958126],[-51.39591395913959,71.11330019681986],[-51.223112231122315,71.14031743313797],[-51.223112231122315,71.14707174221752],[-51.34191341913419,71.14707174221752],[-51.507515075150735,71.11498877408974],[-51.67311673116731,71.11161161954996],[-51.71271712717126,71.12005450589939],[-51.734317343173416,71.13187454678857],[-51.74511745117451,71.13862885586809],[-51.7631176311763,71.14031743313797],[-51.842318423184224,71.13694027859822],[-51.84951849518495,71.13356312405844],[-51.867518675186744,71.12849739224879],[-51.96471964719646,71.11667735135961],[-52.00432004320042,71.10316873320056],[-52.02592025920259,71.09979157866078],[-52.17712177121771,71.10316873320056],[-52.22392223922239,71.11667735135961],[-52.24192241922418,71.12680881497892],[-52.245522455224545,71.13525170132834],[-52.23472234722347,71.14200601040787],[-52.20952209522095,71.14707174221752],[-52.13752137521375,71.15551462856692],[-52.11592115921158,71.16058036037657],[-52.09792097920979,71.16902324672597],[-52.05832058320583,71.19941763758388],[-52.02592025920259,71.2146148330128],[-51.90351903519036,71.24838637841046],[-51.809918099180976,71.25682926475989],[-51.62271622716227,71.25007495568036],[-51.57231572315723,71.25514068749001],[-51.54711547115471,71.26358357383941],[-51.52911529115292,71.27371503745871],[-51.525515255152555,71.28384650107802],[-51.525515255152555,71.2956665419672],[-51.52911529115292,71.30748658285637],[-51.53631536315362,71.31255231466602],[-51.66951669516695,71.33619239644437],[-51.691116911169104,71.34632386006368],[-51.665916659166584,71.35476674641308],[-51.65511655116552,71.35983247822273],[-51.640716407164064,71.36658678730225],[-51.74871748717487,71.35983247822273],[-52.05112051120511,71.24669780114058],[-52.13392133921339,71.23150060571163],[-52.23472234722347,71.19435190577423],[-52.34272342723426,71.17577755580552],[-52.42552425524255,71.15213747402714],[-52.483124831248304,71.14707174221752],[-52.51552515525155,71.1487603194874],[-52.533525335253344,71.15382605129705],[-52.55152551525515,71.16395751491635],[-52.558725587255864,71.17915471034527],[-52.555125551255514,71.19097475123445],[-52.53712537125371,71.2061719466634],[-52.497524975249746,71.22643487390201],[-52.353523535235354,71.23656633752128],[-52.28872288722887,71.25514068749001],[-52.25992259922599,71.27202646018884],[-52.245522455224545,71.2956665419672],[-52.25992259922599,71.31761804647567],[-52.28152281522814,71.3345038191745],[-52.28872288722887,71.34970101460343],[-52.25632256322562,71.36489821003238],[-52.11592115921158,71.39866975543003],[-52.043920439204385,71.40373548723969],[-52.02952029520294,71.40711264177943],[-51.99711997119971,71.42062125993851],[-51.97911979119792,71.42737556901804],[-51.94671946719467,71.42737556901804],[-51.885518855188536,71.44088418717709],[-51.61191611916118,71.45608138260604],[-51.42111421114211,71.43919560990722],[-51.381513815138135,71.44932707352652],[-51.39591395913959,71.46283569168557],[-51.37071370713707,71.471278578035],[-51.349113491134915,71.48478719619405],[-51.35991359913598,71.49323008254345],[-51.381513815138135,71.49660723708323],[-51.683916839168376,71.51011585524228],[-52.10872108721087,71.44763849625662],[-52.24192241922418,71.40542406450956],[-52.331923319233184,71.39529260089026],[-52.42552425524255,71.3716525191119],[-52.709927099270985,71.39698117816016],[-52.99072990729907,71.42062125993851],[-52.99072990729907,71.42906414628791],[-52.97632976329763,71.43244130082769],[-52.96552965529655,71.43581845536744],[-52.94752947529474,71.44594991898674],[-52.90432904329043,71.45945853714582],[-52.82872828728287,71.4695900007651],[-52.807128071280715,71.47634430984462],[-52.73872738727387,71.51349300978205],[-52.69912699126991,71.52531305067123],[-52.25992259922599,71.57934752330749],[-52.13752137521375,71.57259321422794],[-51.78111781117812,71.60298760508584],[-51.759517595175936,71.60974191416537],[-51.741517415174144,71.61987337778467],[-51.727117271172716,71.63169341867385],[-51.701917019170196,71.65871065499198],[-51.676716767167676,71.67221927315103],[-51.65511655116552,71.69585935492938],[-51.64791647916479,71.71781085943786],[-51.66951669516695,71.72287659124751],[-51.66231662316622,71.72963090032704],[-51.759517595175936,71.72963090032704],[-51.784717847178456,71.72287659124751],[-51.79911799117991,71.72118801397764],[-51.809918099180976,71.71105655035834],[-51.83151831518316,71.68572789131008],[-51.86391863918638,71.6637763868016],[-51.89991899918999,71.65195634591242],[-52.16632166321662,71.61311906870515],[-52.573125731257306,71.63844772775337],[-52.56952569525694,71.65195634591242],[-52.56592565925659,71.6654649640715],[-52.56232562325623,71.67728500496068],[-52.56592565925659,71.68910504584986],[-52.580325803258035,71.69585935492938],[-52.60192601926019,71.69585935492938],[-52.63792637926379,71.6840393140402],[-52.66312663126631,71.67897358223055],[-52.96552965529655,71.69417077765951],[-53.264332643326426,71.70936797308843],[-53.26073260732606,71.70936797308843],[-53.264332643326426,71.71105655035834],[-53.26793267932679,71.71274512762821],[-53.264332643326426,71.71612228216799],[-53.213932139321386,71.73300805486681],[-53.10953109531094,71.7819767956934],[-53.00153001530015,71.79717399112235],[-52.94752947529474,71.8123711865513],[-52.8971289712897,71.83601126832966],[-52.85392853928539,71.86809423645741],[-52.88992889928899,71.87653712280684],[-52.907929079290795,71.88160285461649],[-52.91512915129151,71.89342289550567],[-52.907929079290795,71.91368582274424],[-52.886328863288625,71.92212870909367],[-52.832328323283235,71.9288830181732],[-52.81792817928179,71.9390144817925],[-52.79632796327962,71.96434314084073],[-52.77832778327783,71.9761631817299],[-52.731527315273155,71.99304895442873],[-52.684726847268465,72.0048689953179],[-52.684726847268465,72.01162330439746],[-52.74592745927458,72.02006619074686],[-52.77472774727747,72.01837761347699],[-52.82512825128251,71.9862946453492],[-53.01593015930159,71.93057159544307],[-53.03393033930338,71.9187515545539],[-53.02673026730267,71.90355435912497],[-53.01593015930159,71.88160285461649],[-52.997929979299784,71.86302850464776],[-52.98352983529834,71.85289704102848],[-52.98352983529834,71.84783130921883],[-53.224732247322464,71.8106826092814],[-53.264332643326426,71.79886256839222],[-53.300333003330024,71.7836653729633],[-53.31473314733147,71.77859964115365],[-53.32913329133291,71.77859964115365],[-53.33993339933399,71.773533909344],[-53.350733507335065,71.773533909344],[-53.36513365133651,71.77859964115365],[-53.375933759337585,71.7836653729633],[-53.33633336333362,71.81574834109105],[-53.325533255332545,71.83263411378988],[-53.321933219332195,71.85627419556823],[-53.32913329133291,71.87484854553696],[-53.372333723337235,71.90355435912497],[-53.38673386733866,71.93563732725272],[-53.40473404734047,71.95590025449133],[-53.40833408334083,71.96603171811063],[-53.41193411934118,71.97278602719015],[-53.41553415534155,71.98122891353955],[-53.41553415534155,71.9862946453492],[-53.41553415534155,71.99304895442873],[-53.40833408334083,71.99811468623838],[-53.40473404734047,72.0048689953179],[-53.397533975339755,72.01500045893721],[-53.39393393933939,72.02344334528664],[-53.39033390333903,72.03019765436616],[-53.401134011340105,72.04201769525534],[-53.40833408334083,72.04877200433486],[-53.48033480334803,72.07747781792287],[-53.699936999369996,72.12644655874948],[-53.725137251372516,72.14839806325796],[-53.725137251372516,72.15684094960736],[-53.725137251372516,72.16866099049653],[-53.725137251372516,72.17879245411584],[-53.735937359373594,72.18216960865561],[-53.739537395373944,72.18723534046526],[-53.76833768337683,72.25646700853045],[-53.779137791377906,72.27335278122928],[-53.79353793537935,72.28517282211845],[-53.79713797137971,72.29699286300763],[-53.815138151381504,72.30205859481728],[-53.836738367383674,72.30543574935703],[-53.84753847538475,72.31219005843656],[-53.851138511385116,72.33076440840529],[-53.836738367383674,72.33920729475469],[-53.764737647376464,72.34933875837399],[-53.58113581135811,72.34933875837399],[-53.552335523355225,72.35440449018364],[-53.552335523355225,72.36115879926317],[-53.86913869138691,72.35609306745351],[-53.91953919539195,72.34933875837399],[-53.95913959139591,72.32569867659564],[-53.92313923139231,72.30205859481728],[-53.876338763387636,72.27841851303893],[-53.840338403384024,72.2514012767208],[-53.84753847538475,72.21762973132314],[-53.840338403384024,72.20412111316406],[-53.840338403384024,72.19061249500501],[-53.840338403384024,72.17710387684596],[-53.836738367383674,72.16190668141701],[-53.811538115381154,72.13826659963865],[-53.779137791377906,72.12138082693983],[-53.602736027360265,72.05721489068429],[-53.56673566735667,72.03864054071556],[-53.548735487354875,72.02175476801673],[-53.501935019350185,71.96603171811063],[-53.48753487534874,71.94576879087202],[-53.48393483934839,71.92550586363342],[-53.473134731347315,71.90693151366472],[-53.451534515345145,71.88835716369601],[-53.41193411934118,71.86640565918754],[-53.401134011340105,71.85627419556823],[-53.397533975339755,71.84614273194896],[-53.41193411934118,71.83601126832966],[-53.426334263342625,71.82925695925013],[-53.44073440734407,71.82587980471035],[-53.451534515345145,71.8208140729007],[-53.49113491134911,71.7921082593127],[-53.63873638736386,71.74820525029574],[-53.678336783367826,71.74313951848609],[-53.829538295382946,71.75495955937527],[-53.887138871388714,71.75495955937527],[-53.915939159391584,71.73807378667647],[-53.87273872738727,71.73807378667647],[-53.81873818738187,71.73300805486681],[-53.76833768337683,71.71949943670774],[-53.73233732337323,71.69585935492938],[-53.72153721537215,71.67053069588115],[-53.735937359373594,71.65195634591242],[-53.764737647376464,71.64013630502325],[-53.800738007380076,71.6350705732136],[-53.912339123391234,71.64182488229315],[-53.930339303393026,71.64689061410277],[-53.966339663396624,71.67053069588115],[-53.980739807398066,71.6755964276908],[-53.987939879398795,71.68066215950043],[-53.991539915399144,71.69248220038963],[-54.00234002340022,71.70430224127881],[-54.016740167401665,71.70936797308843],[-54.05994059940599,71.71612228216799],[-54.08154081540815,71.71781085943786],[-54.1031410314103,71.70936797308843],[-54.063540635406355,71.69754793219926],[-54.05274052740526,71.68741646857998],[-54.04554045540455,71.67221927315103],[-54.05274052740526,71.65871065499198],[-54.088740887408875,71.64351345956302],[-54.1031410314103,71.6350705732136],[-54.08154081540815,71.6350705732136],[-54.063540635406355,71.63000484140397],[-54.03474034740347,71.61311906870515],[-53.95913959139591,71.59961045054607],[-53.89433894338943,71.58103610057736],[-53.865538655386544,71.56583890514841],[-53.84753847538475,71.54557597790983],[-53.851138511385116,71.52531305067123],[-53.85833858338583,71.50336154616275],[-53.87273872738727,71.48309861892417],[-53.88353883538835,71.4695900007651],[-53.912339123391234,71.45101565079639],[-53.9519395193952,71.43750703263734],[-54.07794077940778,71.42399841447826],[-54.20394203942038,71.39360402362038],[-54.27234272342723,71.3902268690806],[-54.315543155431556,71.37840682819143],[-54.35874358743587,71.37671825092156],[-54.43434434344343,71.36489821003238],[-54.54954549545495,71.36996394184203],[-54.62514625146251,71.35138959187333],[-54.65034650346503,71.3530781691432],[-54.69714697146971,71.35983247822273],[-54.72234722347223,71.35983247822273],[-54.76554765547655,71.3530781691432],[-54.78714787147871,71.3530781691432],[-54.779947799477995,71.3530781691432],[-54.81594815948159,71.35645532368295],[-54.92754927549275,71.38516113727096],[-54.94554945549456,71.39360402362038],[-54.95274952749527,71.40373548723969],[-54.93834938349383,71.41555552812886],[-54.981549815498155,71.43581845536744],[-55.093150931509314,71.43412987809756],[-55.143551435514354,71.442572764447],[-55.20475204752047,71.48141004165427],[-55.244352443524434,71.49660723708323],[-55.26595265952659,71.48478719619405],[-55.258752587525876,71.47803288711452],[-55.233552335523356,71.45608138260604],[-55.219152191521914,71.44763849625662],[-55.17955179551795,71.43244130082769],[-55.132751327513276,71.40373548723969],[-55.118351183511834,71.38684971454086],[-55.136351363513626,71.38009540546133],[-55.287552875528746,71.3817839827312],[-55.40275402754027,71.40711264177943],[-55.45315453154531,71.43244130082769],[-55.51435514355143,71.44932707352652],[-55.55395553955539,71.48141004165427],[-55.6619566195662,71.59792187327619],[-55.672756727567275,71.61311906870515],[-55.676356763567625,71.63000484140397],[-55.672756727567275,71.63338199594372],[-55.63675636756368,71.6266276868642],[-55.61875618756187,71.62831626413407],[-55.600756007560065,71.63000484140397],[-55.56835568355683,71.64182488229315],[-55.58275582755827,71.64857919137268],[-55.76275762757628,71.6637763868016],[-55.80595805958059,71.67221927315103],[-55.88875888758888,71.67728500496068],[-55.903159031590306,71.68235073677033],[-55.877958779587786,71.70430224127881],[-55.849158491584916,71.72118801397764],[-55.7879578795788,71.74313951848609],[-55.73035730357303,71.75158240483552],[-55.56115561155612,71.74313951848609],[-55.56475564755647,71.74989382756564],[-55.571955719557195,71.76509102299457],[-55.575555755557545,71.7718453320741],[-55.46395463954639,71.802239722932],[-55.424354243542425,71.80561687747175],[-55.283952839528396,71.76846817753434],[-55.258752587525876,71.77859964115365],[-55.29115291152911,71.78535395023317],[-55.370353703537035,71.82587980471035],[-55.37755377553775,71.84951988648871],[-55.35955359553596,71.86978281372731],[-55.33075330753307,71.88329143188636],[-55.30195301953019,71.88835716369601],[-54.85194851948519,71.91368582274424],[-54.556745567455664,72.03357480890591],[-54.527945279452794,72.05383773614452],[-54.51354513545135,72.07916639519277],[-54.517145171451716,72.08254354973252],[-54.52434524345243,72.10111789970122],[-54.52434524345243,72.104495054241],[-54.52434524345243,72.10956078605065],[-54.520745207452066,72.1129379405904],[-54.506345063450624,72.11800367240005],[-54.495544955449546,72.12644655874948],[-54.48474484744847,72.14839806325796],[-54.46314463144631,72.16697241322666],[-54.44874448744487,72.19230107227489],[-54.43794437944379,72.20412111316406],[-54.427144271442714,72.20918684497371],[-54.38394383943839,72.2226954631328],[-54.40914409144091,72.2328269267521],[-54.43434434344343,72.22438404040267],[-54.481144811448104,72.19567822681466],[-54.527945279452794,72.17710387684596],[-54.542345423454236,72.16021810414713],[-54.527945279452794,72.13488944509888],[-54.53874538745387,72.12813513601935],[-54.567545675456756,72.11969224966995],[-54.581945819458184,72.1146265178603],[-54.58914589145891,72.10787220878078],[-54.59994599945999,72.0943635906217],[-54.61074610746107,72.0859207042723],[-54.621546215462146,72.08085497246265],[-54.632346323463224,72.075789240653],[-54.64314643146432,72.07072350884334],[-54.65034650346503,72.05890346795417],[-54.646746467464666,72.04539484979512],[-54.63954639546395,72.03526338617581],[-54.632346323463224,72.02850907709629],[-54.628746287462874,72.02513192255651],[-54.64314643146432,72.01837761347699],[-54.704347043470435,72.01162330439746],[-54.79794797947979,71.97109744992028],[-54.86634866348663,71.95252309995155],[-54.89514895148952,71.9390144817925],[-54.92034920349204,71.93226017271297],[-55.269552695526954,71.92719444090332],[-55.54315543155431,71.98460606807933],[-55.60795607956079,71.98967179988898],[-55.597155971559715,71.99811468623838],[-55.57915579155791,72.0048689953179],[-55.56835568355683,72.01331188166733],[-55.56115561155612,72.02850907709629],[-55.550355503555025,72.03864054071556],[-55.43515435154352,72.05890346795417],[-55.33075330753307,72.05721489068429],[-55.28035280352803,72.06565777703369],[-55.309153091530916,72.075789240653],[-55.409954099541,72.0859207042723],[-55.38475384753848,72.10618363151087],[-55.233552335523356,72.1416437541784],[-55.10035100351003,72.18892391773514],[-55.08955089550895,72.18892391773514],[-55.06435064350643,72.21087542224362],[-54.884348843488425,72.2514012767208],[-54.931149311493115,72.26659847214972],[-54.94554945549456,72.27841851303893],[-54.95274952749527,72.30037001754738],[-54.92394923949239,72.31050148116668],[-54.91314913149131,72.31894436751611],[-54.90234902349023,72.33245298567516],[-54.92034920349204,72.33414156294504],[-54.931149311493115,72.33920729475469],[-54.94194941949419,72.34765018110411],[-54.95274952749527,72.36115879926317],[-54.92394923949239,72.3696016856126],[-54.884348843488425,72.3696016856126],[-54.77634776347763,72.35440449018364],[-54.68634686346863,72.36791310834269],[-54.704347043470435,72.37466741742222],[-54.72594725947259,72.37466741742222],[-54.76554765547655,72.36791310834269],[-54.909549095490945,72.37973314923187],[-54.94554945549456,72.38986461285117],[-54.97434974349743,72.40843896281987],[-54.95274952749527,72.4168818491693],[-54.905949059490595,72.41857042643917],[-54.884348843488425,72.42870189005848],[-54.956349563495635,72.42194758097895],[-55.00315003150031,72.4270133127886],[-55.02115021150212,72.42363615824883],[-55.02115021150212,72.40843896281987],[-55.04635046350464,72.39999607647047],[-55.12915129151291,72.39493034466082],[-55.19035190351903,72.37129026288247],[-55.20475204752047,72.36791310834269],[-55.222752227522264,72.36115879926317],[-55.244352443524434,72.36453595380294],[-55.287552875528746,72.37466741742222],[-55.287552875528746,72.38142172650177],[-55.244352443524434,72.3881760355813],[-55.244352443524434,72.39493034466082],[-55.26595265952659,72.39493034466082],[-55.283952839528396,72.40168465374035],[-55.298352983529824,72.41181611735965],[-55.309153091530916,72.42870189005848],[-55.30195301953019,72.435456199138],[-55.309153091530916,72.44221050821753],[-55.30555305553055,72.46078485818626],[-55.31635316353163,72.47091632180553],[-55.33435334353344,72.47091632180553],[-55.34155341553415,72.46078485818626],[-55.348753487534864,72.44221050821753],[-55.35595355953559,72.42870189005848],[-55.35955359553596,72.41857042643917],[-55.34155341553415,72.40843896281987],[-55.35595355953559,72.40337323101025],[-55.370353703537035,72.40675038555],[-55.38115381153811,72.41350469462952],[-55.395553955539555,72.41519327189943],[-55.41715417154171,72.41181611735965],[-55.46035460354604,72.3983074992006],[-55.48195481954819,72.39493034466082],[-55.52875528755287,72.39999607647047],[-55.571955719557195,72.41012754008977],[-55.651156511565105,72.44221050821753],[-55.651156511565105,72.45065339456696],[-55.51075510755108,72.51481933082249],[-55.47835478354783,72.52495079444179],[-55.46035460354604,72.52663937171167],[-55.409954099541,72.51144217628274],[-55.38835388353883,72.50806502174296],[-55.337953379533786,72.50975359901284],[-55.26595265952659,72.49793355812366],[-55.121951219512184,72.50468786720319],[-54.88794887948879,72.46922774453566],[-54.74034740347403,72.48442493996461],[-54.62514625146251,72.48104778542483],[-54.581945819458184,72.47260489907544],[-54.56034560345603,72.47091632180553],[-54.42354423544235,72.49793355812366],[-54.391143911439116,72.49286782631401],[-54.32274322743227,72.47598205361518],[-54.293942939429385,72.48442493996461],[-54.31194311943119,72.49455640358391],[-54.43794437944379,72.51313075355262],[-54.53874538745387,72.49793355812366],[-54.70074700747007,72.49962213539354],[-54.783547835478345,72.51650790809236],[-54.80154801548015,72.55196803075992],[-54.82314823148231,72.54521372168037],[-54.869948699487,72.51988506263214],[-54.89874898748987,72.51819648536227],[-54.89154891548915,72.51819648536227],[-54.96714967149671,72.51650790809236],[-55.010350103501025,72.52157363990202],[-55.01755017550175,72.5350822580611],[-55.010350103501025,72.54690229895027],[-55.00315003150031,72.55872233983945],[-54.99954999549995,72.57054238072863],[-54.985149851498505,72.57898526707802],[-54.96714967149671,72.58405099888768],[-54.90234902349023,72.59418246250698],[-54.905949059490595,72.59755961704676],[-54.909549095490945,72.60769108066603],[-54.66474664746647,72.61444538974558],[-54.63594635946359,72.62288827609498],[-54.65034650346503,72.63470831698416],[-54.679146791467915,72.63808547152394],[-54.74034740347403,72.62626543063476],[-54.830348303483035,72.63639689425406],[-54.859148591485905,72.64315120333359],[-54.86274862748627,72.65497124422276],[-54.87714877148771,72.66679128511194],[-54.884348843488425,72.66847986238182],[-54.884348843488425,72.67523417146134],[-54.859148591485905,72.67523417146134],[-54.81594815948159,72.66510270784207],[-54.79074790747907,72.66172555330229],[-54.77274772747727,72.66510270784207],[-54.76554765547655,72.67523417146134],[-54.76194761947619,72.68705421235052],[-54.754747547475475,72.69718567596982],[-54.71514715147151,72.70562856231925],[-54.628746287462874,72.68874278962042],[-54.58914589145891,72.69718567596982],[-54.62514625146251,72.71407144866865],[-54.66834668346684,72.72589148955782],[-54.754747547475475,72.737711530447],[-54.733147331473305,72.75290872587595],[-54.66834668346684,72.7478429940663],[-54.63954639546395,72.75459730314583],[-54.61434614346143,72.76810592130491],[-54.527945279452794,72.77823738492418],[-54.53874538745387,72.79174600308326],[-54.56034560345603,72.80018888943266],[-54.58914589145891,72.80187746670256],[-54.607146071460704,72.79512315762301],[-54.628746287462874,72.77823738492418],[-54.733147331473305,72.75966303495548],[-54.86634866348663,72.76472876676513],[-54.90234902349023,72.76979449857478],[-54.92394923949239,72.78499169400374],[-54.82314823148231,72.80356604397244],[-54.805148051480515,72.81369750759174],[-54.71874718747188,72.80525462124231],[-54.657546575465744,72.81369750759174],[-54.628746287462874,72.82214039394114],[-54.603546035460354,72.83396043483032],[-54.628746287462874,72.8373375893701],[-54.65034650346503,72.8457804757195],[-54.671946719467186,72.85760051660867],[-54.68634686346863,72.8744862893075],[-54.68634686346863,72.89981494835575],[-54.729547295472955,72.91838929832446],[-54.81594815948159,72.93696364829316],[-54.79074790747907,72.94540653464259],[-54.783547835478345,72.95216084372211],[-54.78714787147871,72.96398088461129],[-54.79794797947979,72.96735803915107],[-54.84834848348483,72.97073519369081],[-54.830348303483035,72.98255523457999],[-54.79074790747907,72.98593238911977],[-54.779947799477995,72.99775243000894],[-54.81234812348123,73.00788389362825],[-54.84474844748448,73.0129496254379],[-54.87354873548735,73.01463820270777],[-54.981549815498155,72.99944100727882],[-55.02835028350283,72.99775243000894],[-55.05355053550535,73.011261048168],[-55.02115021150212,73.0517869026452],[-55.01395013950139,73.0703612526139],[-55.04635046350464,73.06360694353438],[-55.136351363513626,73.02476966632707],[-55.16515165151651,73.01970393451742],[-55.16515165151651,73.011261048168],[-55.17595175951759,73.01801535724755],[-55.197551975519744,73.03658970721625],[-55.219152191521914,73.0416554390259],[-55.262352623526226,73.04334401629578],[-55.26595265952659,73.04672117083555],[-55.26595265952659,73.0517869026452],[-55.27675276752767,73.0517869026452],[-55.30195301953019,73.04672117083555],[-55.370353703537035,73.04672117083555],[-55.395553955539555,73.0500983253753],[-55.43875438754387,73.06698409807413],[-55.46395463954639,73.07373840715366],[-55.6619566195662,73.05685263445483],[-55.67995679956799,73.0602297889946],[-55.69435694356943,73.0703612526139],[-55.701557015570145,73.07711556169343],[-55.701557015570145,73.08218129350308],[-55.701557015570145,73.08386987077296],[-55.71235712357124,73.08724702531273],[-55.701557015570145,73.09906706620191],[-55.68355683556835,73.11257568436096],[-55.6619566195662,73.12439572525014],[-55.64395643956439,73.12608430252004],[-55.57915579155791,73.11257568436096],[-55.50715507155071,73.10750995255131],[-55.471154711547115,73.10919852982121],[-55.45315453154531,73.11426426163086],[-55.43875438754387,73.12101857071039],[-55.43155431554315,73.12608430252004],[-55.424354243542425,73.14128149794897],[-55.41715417154171,73.14803580702849],[-55.399153991539904,73.15647869337792],[-55.348753487534864,73.16998731153697],[-55.33435334353344,73.18349592969605],[-55.36675366753667,73.18180735242615],[-55.399153991539904,73.1784301978864],[-55.42795427954279,73.17674162061653],[-55.46035460354604,73.19025023877558],[-55.43155431554315,73.1970045478551],[-55.161551615516146,73.18180735242615],[-55.13995139951399,73.19025023877558],[-55.143551435514354,73.21051316601415],[-55.157951579515796,73.2172674750937],[-55.219152191521914,73.22402178417323],[-55.219152191521914,73.22908751598288],[-55.21555215552155,73.23921897960219],[-55.211952119521186,73.24428471141181],[-55.399153991539904,73.24597328868171],[-55.46035460354604,73.25779332957089],[-55.46035460354604,73.26454763865041],[-55.44235442354423,73.26961337046006],[-55.38835388353883,73.30338491585772],[-55.337953379533786,73.30676207039747],[-55.33435334353344,73.30845064766737],[-55.31635316353163,73.32027068855655],[-55.31635316353163,73.32702499763607],[-55.348753487534864,73.3253364203662],[-55.363153631536306,73.32702499763607],[-55.370353703537035,73.3337793067156],[-55.269552695526954,73.38612520208196],[-55.247952479524784,73.39287951116151],[-55.219152191521914,73.37430516119278],[-55.17595175951759,73.3624851203036],[-55.096750967509664,73.3540422339542],[-55.08955089550895,73.36755085211325],[-55.10395103951039,73.37768231573256],[-55.121951219512184,73.38443662481208],[-55.12915129151291,73.39287951116151],[-55.143551435514354,73.40638812932056],[-55.496354963549635,73.46548833376644],[-55.51795517955179,73.47224264284597],[-55.5359553595536,73.48406268373517],[-55.53235532355323,73.48743983827492],[-55.52875528755287,73.49250557008457],[-55.525155251552505,73.49757130189423],[-55.52875528755287,73.50432561097375],[-55.5359553595536,73.51107992005328],[-55.54315543155431,73.51276849732318],[-55.550355503555025,73.51445707459305],[-55.56115561155612,73.51783422913283],[-55.625956259562585,73.56511439268954],[-55.66555665556655,73.58537731992811],[-55.68355683556835,73.57355727903894],[-55.71235712357124,73.56511439268954],[-55.74475744757447,73.57186870176906],[-55.773557735577356,73.58537731992811],[-55.79515795157951,73.60057451535707],[-55.76275762757628,73.61239455624624],[-55.751957519575186,73.61408313351612],[-55.773557735577356,73.6275917516752],[-55.809558095580954,73.62590317440532],[-55.877958779587786,73.61408313351612],[-55.95715957159571,73.62083744259567],[-56.03276032760327,73.6377232152945],[-56.06876068760687,73.65292041072342],[-56.05796057960579,73.65798614253308],[-55.985959859598594,73.6562975652632],[-55.949959499594996,73.65798614253308],[-55.84195841958419,73.68331480158133],[-55.88875888758888,73.69682341974038],[-55.99675996759967,73.67993764704156],[-56.039960399604,73.69006911066086],[-56.039960399604,73.69682341974038],[-56.000360003600036,73.70695488335969],[-55.928359283592826,73.71708634697899],[-55.910359103591034,73.72384065605851],[-55.94635946359463,73.73397211967782],[-55.953559535595346,73.73734927421756],[-55.96435964359644,73.75254646964652],[-55.96795967959679,73.76098935599592],[-55.960759607596074,73.76605508780557],[-55.9139591395914,73.76098935599592],[-55.89235892358923,73.75423504691639],[-55.874358743587436,73.74072642875734],[-55.849158491584916,73.72890638786816],[-55.784357843578434,73.72552923332839],[-55.759157591575914,73.71370919243921],[-55.733957339573394,73.70695488335969],[-55.651156511565105,73.70188915155003],[-55.62955629556295,73.70357772881991],[-55.63675636756368,73.71033203789943],[-55.61155611556116,73.72046350151874],[-55.64395643956439,73.72384065605851],[-55.71595715957159,73.72046350151874],[-55.723157231572316,73.72384065605851],[-55.73755737557376,73.72215207878861],[-55.748357483574836,73.72384065605851],[-55.75555755557555,73.72890638786816],[-55.76635766357663,73.74072642875734],[-55.773557735577356,73.74579216056699],[-55.7879578795788,73.75085789237662],[-55.802358023580226,73.75592362418627],[-55.82035820358203,73.75930077872604],[-55.81315813158132,73.76098935599592],[-55.809558095580954,73.76605508780557],[-55.823958239582396,73.77112081961522],[-55.85635856358563,73.77956370596465],[-55.87075870758707,73.78631801504417],[-55.899558995589956,73.8217781377117],[-55.94635946359463,73.86061541491901],[-55.84195841958419,73.85386110583948],[-55.78075780757807,73.85554968310936],[-55.71955719557195,73.84372964222018],[-55.697956979569796,73.84204106495031],[-55.6619566195662,73.84372964222018],[-55.647556475564755,73.84879537402983],[-55.62955629556295,73.85554968310936],[-55.64395643956439,73.87581261034794],[-55.66915669156691,73.88594407396724],[-55.75555755557555,73.89269838304676],[-55.81675816758167,73.9112727330155],[-55.885158851588514,73.9197156193649],[-55.9139591395914,73.92646992844442],[-55.97155971559715,73.9501100102228],[-56.00756007560075,73.95686431930233],[-56.08316083160831,73.96193005111198],[-56.10836108361083,73.97037293746138],[-56.10476104761047,73.98219297835055],[-56.10476104761047,73.98894728743008],[-56.10836108361083,73.99907875104938],[-56.10116101161012,73.99907875104938],[-56.09036090360904,74.00414448285903],[-56.08316083160831,74.00583306012891],[-56.09036090360904,74.00921021466868],[-56.10116101161012,74.01258736920846],[-56.111961119611195,74.01258736920846],[-56.12276122761227,74.01258736920846],[-56.09756097560975,74.02103025555786],[-55.99315993159931,74.01258736920846],[-55.96435964359644,74.01765310101808],[-55.97155971559715,74.02778456463739],[-55.99675996759967,74.03622745098681],[-56.33156331563315,74.04467033733621],[-56.363963639636395,74.05311322368564],[-56.36036360363603,74.06324468730492],[-56.37476374763747,74.06831041911457],[-56.41076410764107,74.0666218418447],[-56.40356403564036,74.07337615092422],[-56.36036360363603,74.08350761454352],[-56.29916299162991,74.0851961918134],[-56.241562415624145,74.09363907816282],[-56.19836198361983,74.12065631448095],[-56.29916299162991,74.11221342813153],[-56.317163171631705,74.12065631448095],[-56.263162631626315,74.14598497352918],[-56.24876248762487,74.16287074622801],[-56.25956259562595,74.17637936438706],[-56.24516245162451,74.18313367346661],[-56.22356223562235,74.18819940527624],[-56.17316173161731,74.19326513708589],[-56.165961659616585,74.19833086889554],[-56.165961659616585,74.20677375524497],[-56.165961659616585,74.22703668248354],[-56.165961659616585,74.23885672337272],[-56.162361623616235,74.24729960972215],[-56.15516155161551,74.2523653415318],[-56.14436144361443,74.25405391880167],[-56.13356133561335,74.2608082278812],[-56.12636126361264,74.26925111423063],[-56.12276122761227,74.2793825778499],[-56.162361623616235,74.28613688692946],[-56.18036180361803,74.28444830965955],[-56.25596255962559,74.23716814610285],[-56.56196561965619,74.16455932349788],[-56.929169291692915,74.13247635537013],[-57.29637296372964,74.10039338724235],[-57.31437314373143,74.10208196451222],[-57.32157321573216,74.11221342813153],[-57.317973179731794,74.11896773721105],[-57.310773107731066,74.12909920083035],[-57.29997299972999,74.13923066444966],[-57.28917289172891,74.1426078189894],[-57.206372063720636,74.14936212806896],[-57.130771307713076,74.13754208717975],[-57.105571055710556,74.13754208717975],[-57.09117091170911,74.1426078189894],[-57.130771307713076,74.15442785987858],[-57.14877148771487,74.16287074622801],[-57.15957159571596,74.17637936438706],[-57.04077040770407,74.17131363257741],[-57.00117001170011,74.17637936438706],[-56.91116911169111,74.20001944616541],[-56.702367023670234,74.20339660070519],[-56.68796687966879,74.20677375524497],[-56.65916659166591,74.22028237340402],[-56.644766447664466,74.22534810521367],[-56.59796597965979,74.22703668248354],[-56.58356583565835,74.23041383702332],[-56.590765907659076,74.23547956883297],[-56.59796597965979,74.2422338779125],[-56.60516605166052,74.24561103245227],[-56.32076320763207,74.28782546419933],[-56.30276302763028,74.30639981416803],[-56.37116371163711,74.31315412324756],[-56.58356583565835,74.29289119600898],[-56.53676536765367,74.31653127778733],[-56.53316533165331,74.32497416413673],[-56.641166411664116,74.32835131867651],[-56.677166771667714,74.33510562775604],[-56.71316713167131,74.34861424591512],[-56.669966699666986,74.35536855499464],[-56.58356583565835,74.35030282318499],[-56.500765007650074,74.36718859588382],[-56.15516155161551,74.36887717315369],[-56.137161371613715,74.37394290496334],[-56.12996129961299,74.3891401003923],[-56.137161371613715,74.39420583220195],[-56.162361623616235,74.407714450361],[-56.17316173161731,74.40940302763087],[-56.50436504365044,74.4161573367104],[-56.525965259652594,74.41278018217065],[-56.543965439654386,74.407714450361],[-56.56196561965619,74.40433729582122],[-56.75996759967599,74.44486315029843],[-56.79596795967959,74.44486315029843],[-56.79596795967959,74.45161745937796],[-56.61236612366123,74.45161745937796],[-56.29556295562955,74.48370042750571],[-56.16956169561695,74.47694611842618],[-56.14436144361443,74.49214331385514],[-56.241562415624145,74.49720904566479],[-56.25956259562595,74.51240624109371],[-56.25596255962559,74.52929201379254],[-56.23436234362343,74.54111205468172],[-56.191161911619105,74.55293209557092],[-56.22356223562235,74.5630635591902],[-56.42156421564215,74.55293209557092],[-56.43236432364323,74.5546206728408],[-56.464764647646476,74.57150644553963],[-56.47916479164792,74.57488360007937],[-56.515165151651516,74.57657217734928],[-56.57276572765727,74.58839221823845],[-56.590765907659076,74.59514652731798],[-56.60516605166052,74.60865514547703],[-56.53316533165331,74.61709803182646],[-56.500765007650074,74.62722949544576],[-56.47196471964719,74.64242669087469],[-56.47196471964719,74.64918099995421],[-56.702367023670234,74.64411526814459],[-56.76716767167672,74.66268961811329],[-56.75636756367564,74.6728210817326],[-56.76356763567635,74.67957539081212],[-56.803168031680315,74.68295254535187],[-56.82116821168211,74.68970685443142],[-56.85716857168572,74.70828120440012],[-56.878768787687875,74.71165835893987],[-56.92556925569255,74.70659262713025],[-56.95076950769507,74.69814974078082],[-56.96876968769688,74.67450965900247],[-56.99036990369903,74.6728210817326],[-57.01557015570155,74.67788681354224],[-57.02637026370263,74.68970685443142],[-57.01557015570155,74.69814974078082],[-57.029970299702995,74.70321547259047],[-57.06237062370623,74.70659262713025],[-57.07677076770767,74.71165835893987],[-57.06597065970659,74.7201012452893],[-57.055170551705515,74.72516697709895],[-57.04797047970479,74.7302327089086],[-57.03357033570336,74.73192128617848],[-57.055170551705515,74.74542990433753],[-57.09117091170911,74.74542990433753],[-57.15957159571596,74.738675595258],[-57.14877148771487,74.74374132706765],[-57.141571415714154,74.7488070588773],[-57.13437134371344,74.7572499452267],[-57.130771307713076,74.76569283157613],[-57.14517145171452,74.76569283157613],[-57.191971919719194,74.77244714065566],[-57.14517145171452,74.79439864516414],[-57.116371163711634,74.80115295424366],[-57.09477094770948,74.79608722243401],[-57.06957069570696,74.78257860427496],[-57.04437044370444,74.77244714065566],[-57.01917019170192,74.767381408846],[-56.98676986769867,74.76569283157613],[-56.97236972369723,74.767381408846],[-56.96516965169651,74.77244714065566],[-56.9579695796958,74.77920144973518],[-56.94716947169471,74.78595575881474],[-56.93276932769328,74.78933291335449],[-56.903969039690395,74.79271006789426],[-56.8679686796868,74.80621868605331],[-56.84636846368463,74.81128441786296],[-56.79596795967959,74.81466157240274],[-56.81756817568176,74.83661307691119],[-56.853568535685355,74.8484331178004],[-56.98676986769867,74.85518742687992],[-57.00117001170011,74.86869604503897],[-56.9939699396994,74.9041561677065],[-57.01557015570155,74.90753332224628],[-57.05877058770588,74.92273051767523],[-57.0839708397084,74.92441909494511],[-57.292772927729274,74.90753332224628],[-57.317973179731794,74.9142876313258],[-57.32877328773287,74.93455055856441],[-57.33957339573395,74.93792771310416],[-57.37917379173791,74.94130486764394],[-57.38997389973899,74.94468202218368],[-57.39717397173972,74.95650206307289],[-57.42237422374224,74.96325637215241],[-57.55197551975519,74.98014214485124],[-57.66357663576635,75.0139136902489],[-57.695976959769595,75.01897942205855],[-57.847178471784716,75.01897942205855],[-57.87957879578795,75.02742230840795],[-57.89037890378903,75.0426195038369],[-57.90477904779047,75.0510623901863],[-57.973179731797316,75.05950527653573],[-58.05598055980559,75.05950527653573],[-58.09918099180992,75.04768523564655],[-58.12078120781207,75.04599665837665],[-58.14238142381423,75.0510623901863],[-58.160381603816035,75.06794816288513],[-58.14598145981459,75.08314535831408],[-58.12438124381244,75.08989966739361],[-58.07758077580776,75.08821109012374],[-58.08838088380884,75.09665397647314],[-58.10278102781028,75.10171970828279],[-58.13158131581315,75.10847401736231],[-57.94077940779407,75.1506884491094],[-57.922779227792276,75.16419706726845],[-57.94077940779407,75.18108283996727],[-58.01278012780128,75.1979686126661],[-58.16758167581675,75.19628003539623],[-58.24318243182431,75.21147723082515],[-58.24678246782467,75.22836300352398],[-58.27198271982719,75.24018304441316],[-58.32958329583295,75.25200308530233],[-58.32958329583295,75.25538023984211],[-58.32238322383223,75.26720028073129],[-58.39078390783908,75.28408605343012],[-58.42678426784268,75.29928324885907],[-58.437584375843755,75.314480444288],[-58.43038430384303,75.3246119079073],[-58.40878408784087,75.3263004851772],[-58.37278372783727,75.32123475336755],[-58.35118351183512,75.32123475336755],[-58.336783367833675,75.32292333063742],[-58.30438304383043,75.3347433715266],[-58.31518315183152,75.34149768060612],[-58.33318333183331,75.34656341241578],[-58.36558365583656,75.3550062987652],[-58.34758347583475,75.37526922600378],[-58.27558275582756,75.38877784416286],[-58.24678246782467,75.40228646232191],[-58.30078300783008,75.41072934867131],[-58.36918369183691,75.41072934867131],[-58.43038430384303,75.39890930778213],[-58.47718477184772,75.37189207146403],[-58.498784987849874,75.3550062987652],[-58.51678516785168,75.34656341241578],[-58.700387003870034,75.34825198968565],[-58.68598685986859,75.36682633965438],[-58.66078660786607,75.37695780327365],[-58.52758527585276,75.40735219413156],[-58.44478444784447,75.40904077140144],[-58.4159841598416,75.41410650321109],[-58.37638376383764,75.43268085317979],[-58.35118351183512,75.43774658498944],[-58.23958239582396,75.43605800771957],[-58.20718207182071,75.44450089406897],[-58.210782107821075,75.44787804860874],[-58.22158221582215,75.45800951222805],[-58.20718207182071,75.46982955311722],[-58.185581855818555,75.48502674854615],[-58.16758167581675,75.5002239439751],[-58.1639816398164,75.5204868712137],[-58.18918189181892,75.53399548937276],[-58.23238232382323,75.54412695299206],[-58.39438394383943,75.55594699388124],[-58.42678426784268,75.56607845750054],[-58.4159841598416,75.59140711654877],[-58.39078390783908,75.6082928892476],[-58.311583115831155,75.64375301191512],[-58.34038340383404,75.6572616300742],[-58.37998379983799,75.66063878461395],[-58.48438484384843,75.64881874372477],[-58.52038520385203,75.64881874372477],[-58.55638556385563,75.65388447553443],[-58.58518585185851,75.66401593915373],[-58.59598595985959,75.67921313458268],[-58.58158581585815,75.69272175274173],[-58.55278552785528,75.70116463909113],[-58.52758527585276,75.70454179363091],[-58.462784627846275,75.69947606182126],[-58.43038430384303,75.70285321636104],[-58.40518405184051,75.71973898905986],[-58.44838448384483,75.73155902994904],[-58.714787147871476,75.73493618448879],[-58.7939879398794,75.71973898905986],[-59.04239042390424,75.70116463909113],[-59.078390783907835,75.71129610271043],[-59.06399063990639,75.71973898905986],[-59.07119071190712,75.71973898905986],[-59.08559085590855,75.72649329813939],[-59.05679056790568,75.74337907083822],[-59.06759067590676,75.76195342080692],[-59.09999099990999,75.775462038966],[-59.13239132391324,75.775462038966],[-59.2079920799208,75.76026484353704],[-59.24759247592476,75.75857626626717],[-59.28359283592836,75.7653305753467],[-59.23679236792367,75.775462038966],[-59.22239222392224,75.7839049253154],[-59.22239222392224,75.80079069801423],[-59.23679236792367,75.8126107389034],[-59.25839258392584,75.81598789344318],[-59.30159301593015,75.81429931617328],[-59.26919269192692,75.82780793433236],[-59.22239222392224,75.83625082068176],[-59.13959139591395,75.8413165524914],[-59.18279182791828,75.87339952061919],[-59.27279272792728,75.88015382969871],[-59.50319503195031,75.86664521153966],[-59.53919539195391,75.85989090246011],[-59.57159571595716,75.84807086157093],[-59.61479614796147,75.8227422025227],[-59.63999639996399,75.8126107389034],[-59.65079650796507,75.81767647071305],[-59.6579965799658,75.82780793433236],[-59.668796687966875,75.82949651160223],[-59.68319683196832,75.82443077979258],[-59.70119701197011,75.80754500709375],[-59.7119971199712,75.804167852554],[-59.72639726397263,75.80079069801423],[-59.77319773197732,75.80079069801423],[-59.80199801998019,75.80754500709375],[-59.81639816398163,75.81936504798293],[-59.79839798397984,75.8413165524914],[-59.77679776797767,75.85313659338058],[-59.72639726397263,75.87339952061919],[-59.70479704797047,75.88521956150836],[-59.67599675996759,75.89703960239754],[-59.61119611196112,75.90379391147707],[-59.593195931959315,75.91730252963612],[-59.643596435964355,75.92743399325542],[-59.7119971199712,75.96289411592298],[-59.73359733597336,75.9696484250025],[-59.75519755197551,75.97302557954225],[-59.78039780397803,75.9696484250025],[-59.845198451984515,75.94431976595425],[-59.895598955989556,75.94263118868437],[-59.91719917199171,75.9392540341446],[-59.91359913599136,75.92405683871567],[-59.96759967599675,75.92405683871567],[-59.99279992799927,75.92912257052532],[-60.01800018000179,75.93756545687472],[-59.98919989199892,75.96458269319285],[-60.007200072000714,75.97133700227238],[-60.072000720007196,75.97302557954225],[-60.14040140401404,75.98653419770133],[-60.133201332013314,75.9966656613206],[-60.11880118801187,76.00510854767003],[-60.11160111601116,76.01017427947968],[-60.090000900009,76.01355143401943],[-60.122401224012236,76.03212578398816],[-60.460804608046075,76.03381436125804],[-60.45720457204571,76.05407728849664],[-60.47520475204752,76.06420875211592],[-60.50040500405004,76.0675859066557],[-60.52200522005219,76.0675859066557],[-60.53280532805327,76.06420875211592],[-60.54720547205471,76.05070013395687],[-60.55800558005579,76.04394582487734],[-60.572405724057234,76.04056867033756],[-60.60840608406083,76.03719151579782],[-60.63360633606335,76.02368289763874],[-60.68040680406804,76.01355143401943],[-60.70920709207091,76.00004281586038],[-60.72000720007199,75.99835423859051],[-60.73440734407343,75.99835423859051],[-60.74520745207451,76.00173139313026],[-60.7560075600756,76.00679712493991],[-60.76680766807668,76.01692858855921],[-60.78120781207812,76.02537147490861],[-60.81720817208172,76.02706005217851],[-60.83160831608316,76.03381436125804],[-60.8280082800828,76.03888009306769],[-60.81720817208172,76.05407728849664],[-60.838808388083876,76.05407728849664],[-60.8280082800828,76.0760287930051],[-60.824408244082434,76.08109452481474],[-60.90720907209072,76.08109452481474],[-60.89280892808928,76.0962917202437],[-60.84600846008459,76.10304602932322],[-60.83160831608316,76.1148660702124],[-60.849608496084954,76.11824322475218],[-60.85680856808568,76.12668611110158],[-60.849608496084954,76.13850615199075],[-60.83160831608316,76.1435718838004],[-60.87120871208711,76.15876907922936],[-60.925209252092515,76.16552338830888],[-60.975609756097555,76.16552338830888],[-61.06201062010619,76.15201477014983],[-61.10881108811088,76.15370334741971],[-61.2420124201242,76.17734342919806],[-61.41841418414184,76.18072058373784],[-61.48321483214832,76.17058912011854],[-61.6560165601656,76.18240916100771],[-61.75681756817568,76.20267208824632],[-61.77841778417783,76.20436066551619],[-61.85401854018539,76.20267208824632],[-61.868418684186835,76.20942639732584],[-61.90081900819008,76.23137790183432],[-61.94041940419403,76.23982078818372],[-62.02322023220232,76.23982078818372],[-62.11682116821167,76.2246235927548],[-62.16722167221671,76.22124643821502],[-62.196021960219596,76.23982078818372],[-62.181621816218154,76.2431979427235],[-62.145621456214556,76.26008371542233],[-62.178021780217804,76.27528091085125],[-62.221222212222116,76.28541237447055],[-62.26802268022679,76.2904781062802],[-62.304023040230405,76.28541237447055],[-62.340023400234,76.27528091085125],[-62.358023580235795,76.26852660177173],[-62.3760237602376,76.24488651999337],[-62.39762397623976,76.24488651999337],[-62.58122581225811,76.26852660177173],[-62.736027360273596,76.25670656088255],[-62.77562775627756,76.23982078818372],[-62.72882728827288,76.21786928367524],[-62.72882728827288,76.21280355186559],[-62.75762757627575,76.20098351097641],[-62.772027720277194,76.19760635643667],[-62.790027900279,76.19760635643667],[-62.77562775627756,76.21280355186559],[-62.84042840428404,76.22800074729454],[-62.85482854828548,76.23982078818372],[-62.85122851228512,76.2533294063428],[-62.8260282602826,76.26852660177173],[-62.818828188281884,76.2803466426609],[-62.847628476284754,76.30398672443926],[-63.05283052830528,76.34113542437669],[-63.1140311403114,76.34451257891646],[-63.171631716317165,76.36139835161529],[-63.26523265232652,76.35633261980564],[-63.29043290432904,76.35970977434539],[-63.34083340833408,76.37321839250447],[-63.3660336603366,76.37659554704422],[-63.477634776347756,76.37659554704422],[-63.48123481234812,76.37490696977434],[-63.49563495634956,76.36984123796469],[-63.484834848348484,76.33944684710681],[-63.51723517235172,76.31074103351881],[-63.59283592835928,76.27359233358138],[-63.60723607236072,76.2617722926922],[-63.63243632436324,76.23644363364397],[-63.64683646836468,76.2246235927548],[-63.6720367203672,76.21786928367524],[-63.72963729637296,76.21111497459572],[-63.75123751237511,76.19760635643667],[-63.7440374403744,76.19760635643667],[-63.73323733237332,76.19422920189689],[-63.72603726037259,76.18916347008724],[-63.72243722437224,76.18409773827759],[-63.72963729637296,76.17734342919806],[-63.736837368373685,76.17734342919806],[-63.74763747637476,76.17903200646796],[-63.75843758437584,76.17734342919806],[-63.812438124381245,76.15876907922936],[-64.0320403204032,76.13681757472088],[-64.09684096840968,76.14526046107031],[-64.15084150841508,76.17227769738841],[-64.19044190441905,76.21111497459572],[-64.22284222842228,76.26008371542233],[-64.2120421204212,76.2719037563115],[-64.20484204842047,76.27696948812115],[-64.19764197641976,76.2803466426609],[-64.20124201242012,76.28878952901033],[-64.20484204842047,76.29385526081998],[-64.2120421204212,76.29554383808986],[-64.22284222842228,76.29385526081998],[-64.2120421204212,76.30567530170916],[-64.20124201242012,76.31242961078868],[-64.18324183241832,76.31411818805856],[-64.16884168841688,76.31411818805856],[-64.16884168841688,76.32256107440799],[-64.320043200432,76.35295546526586],[-64.4280442804428,76.34957831072612],[-64.41724417244173,76.33775826983691],[-64.38844388443884,76.32087249713808],[-64.3740437404374,76.30736387897903],[-64.38124381243811,76.30567530170916],[-64.38844388443884,76.29723241535973],[-64.39564395643956,76.29385526081998],[-64.3740437404374,76.28878952901033],[-64.37044370443704,76.27528091085125],[-64.38124381243811,76.26008371542233],[-64.40284402844028,76.2533294063428],[-64.42444424444244,76.24826367453315],[-64.4460444604446,76.23982078818372],[-64.4640446404464,76.23475505637407],[-64.50724507245071,76.24657509726325],[-64.5360453604536,76.23982078818372],[-64.55044550445504,76.24150936545362],[-64.61524615246152,76.26852660177173],[-64.64404644046441,76.27359233358138],[-64.67284672846728,76.2719037563115],[-64.69084690846908,76.2533294063428],[-64.68724687246872,76.23475505637407],[-64.66924669246693,76.21618070640537],[-64.64764647646476,76.20267208824632],[-64.60444604446045,76.19422920189689],[-64.57924579245793,76.18409773827759],[-64.57564575645756,76.17565485192819],[-64.60084600846008,76.17058912011854],[-64.65124651246512,76.18409773827759],[-64.68364683646836,76.18578631554749],[-64.6980469804698,76.17396627465831],[-64.68364683646836,76.15708050195948],[-64.59364593645937,76.13681757472088],[-64.64764647646476,76.12330895656183],[-64.6980469804698,76.1249975338317],[-64.74844748447484,76.14019472926066],[-64.79884798847988,76.16045765649923],[-64.85284852848528,76.17565485192819],[-65.02565025650256,76.17734342919806],[-65.01485014850148,76.16552338830888],[-64.9860498604986,76.14863761561006],[-64.97884978849788,76.13681757472088],[-64.97884978849788,76.12668611110158],[-64.97524975249752,76.12330895656183],[-64.97164971649715,76.1148660702124],[-64.97524975249752,76.10980033840275],[-64.98964989649896,76.106423183863],[-65.00045000450004,76.10811176113288],[-65.02565025650256,76.12330895656183],[-65.05085050850508,76.135128997451],[-65.06525065250652,76.13681757472088],[-65.16245162451624,76.13006326564135],[-65.2380523805238,76.13681757472088],[-65.20565205652056,76.17058912011854],[-65.20925209252093,76.18072058373784],[-65.2380523805238,76.18409773827759],[-65.34245342453424,76.17565485192819],[-65.36045360453605,76.16383481103901],[-65.34965349653496,76.16383481103901],[-65.33885338853388,76.16214623376914],[-65.3280532805328,76.15708050195948],[-65.32085320853209,76.15032619287993],[-65.36045360453605,76.13681757472088],[-65.30645306453064,76.09122598843405],[-65.29925299252992,76.0760287930051],[-65.31725317253172,76.06083159757617],[-65.3460534605346,76.05745444303639],[-65.3640536405364,76.05070013395687],[-65.35325353253532,76.02706005217851],[-65.66285662856629,76.04056867033756],[-65.6520565205652,76.04563440214721],[-65.64845648456485,76.04901155668699],[-65.64125641256412,76.06083159757617],[-65.70965709657096,76.06083159757617],[-65.7240572405724,76.06420875211592],[-65.75645756457564,76.077717370275],[-65.77085770857708,76.08109452481474],[-65.86085860858608,76.09291456570392],[-65.88965889658895,76.10304602932322],[-65.85725857258572,76.11993180202205],[-65.7780577805778,76.12837468837148],[-65.75285752857528,76.1435718838004],[-65.74925749257493,76.15370334741971],[-65.75645756457564,76.17565485192819],[-65.75285752857528,76.18409773827759],[-65.73845738457385,76.18916347008724],[-65.71685716857168,76.18578631554749],[-65.70245702457024,76.18578631554749],[-65.68805688056881,76.19760635643667],[-65.73845738457385,76.19929493370654],[-65.760057600576,76.20267208824632],[-65.77085770857708,76.21280355186559],[-65.580055800558,76.22968932456442],[-65.55125551255512,76.23982078818372],[-65.64125641256412,76.26852660177173],[-65.73845738457385,76.27865806539103],[-66.02286022860228,76.26008371542233],[-66.06966069660696,76.26346086996207],[-66.1380613806138,76.28372379720068],[-66.17766177661777,76.28541237447055],[-66.20646206462064,76.27865806539103],[-66.20286202862029,76.2533294063428],[-66.210062100621,76.2533294063428],[-66.21726217262172,76.2246235927548],[-66.2640626406264,76.20942639732584],[-66.35406354063541,76.19085204735714],[-66.3180631806318,76.16721196557876],[-66.3360633606336,76.16214623376914],[-66.37566375663756,76.16214623376914],[-66.4080640806408,76.15032619287993],[-66.38646386463864,76.13850615199075],[-66.36846368463684,76.12668611110158],[-66.36486364863649,76.11148891567265],[-66.38286382863828,76.0962917202437],[-66.41526415264153,76.0861602566244],[-66.51966519665196,76.0962917202437],[-66.5340653406534,76.09966887478348],[-66.55566555665557,76.11824322475218],[-66.56646566465665,76.12330895656183],[-66.58086580865809,76.1249975338317],[-66.62766627666277,76.14694903834018],[-66.660066600666,76.15370334741971],[-66.69966699666996,76.15876907922936],[-66.73566735667356,76.16552338830888],[-66.76086760867608,76.18409773827759],[-66.73566735667356,76.18747489281736],[-66.71046710467104,76.19591777916676],[-66.68526685266852,76.20604924278607],[-66.67086670866708,76.21786928367524],[-66.76086760867608,76.2144921291355],[-66.80766807668077,76.21955786094514],[-66.81486814868148,76.23982078818372],[-66.86526865268652,76.25670656088255],[-66.92646926469264,76.26683802450185],[-67.04887048870488,76.26683802450185],[-67.09567095670957,76.25839513815242],[-67.12447124471244,76.2516408290729],[-67.14247142471424,76.23982078818372],[-67.15687156871569,76.2330664791042],[-67.16047160471604,76.22800074729454],[-67.14967149671496,76.22124643821502],[-67.13887138871388,76.21786928367524],[-67.1280712807128,76.2144921291355],[-67.110071100711,76.21280355186559],[-67.110071100711,76.20436066551619],[-67.15327153271532,76.20098351097641],[-67.25047250472504,76.20436066551619],[-67.29367293672937,76.19085204735714],[-67.28647286472864,76.18409773827759],[-67.29727297272973,76.17903200646796],[-67.30087300873008,76.17565485192819],[-67.30807308073081,76.16383481103901],[-67.08847088470884,76.14694903834018],[-67.0560705607056,76.14019472926066],[-67.03087030870309,76.12668611110158],[-67.01287012870128,76.10304602932322],[-67.02367023670236,76.0962917202437],[-67.03447034470344,76.08953741116417],[-67.05967059670596,76.08109452481474],[-67.03447034470344,76.06420875211592],[-66.79326793267933,76.03043720671826],[-66.74646746467464,76.01692858855921],[-66.68886688866888,76.00679712493991],[-66.61686616866169,75.9780913113519],[-66.55926559265592,75.9696484250025],[-66.51966519665196,75.95445122957355],[-66.4980649806498,75.95107407503377],[-66.48726487264872,75.94769692049402],[-66.46566465664657,75.92743399325542],[-66.45126451264512,75.92405683871567],[-66.48726487264872,75.91054822055659],[-66.56646566465665,75.91730252963612],[-66.74646746467464,75.95782838411333],[-66.94086940869408,75.97471415681215],[-67.02727027270272,75.97302557954225],[-67.04887048870488,75.97471415681215],[-67.09927099270992,75.98991135224108],[-67.43767437674376,76.01186285674956],[-67.77607776077761,76.03381436125804],[-68.11448114481145,76.05745444303639],[-68.18288182881828,76.0760287930051],[-68.38448384483844,76.08109452481474],[-68.3880838808388,76.0760287930051],[-68.40968409684096,76.0760287930051],[-68.43128431284312,76.07940594754487],[-68.47448474484744,76.09122598843405],[-68.54648546485464,76.1047346065931],[-68.56448564485645,76.11148891567265],[-68.56808568085681,76.11824322475218],[-68.56088560885608,76.12330895656183],[-68.53928539285393,76.12837468837148],[-68.43848438484385,76.1435718838004],[-68.47088470884708,76.16214623376914],[-68.52128521285212,76.16721196557876],[-68.79128791287913,76.16721196557876],[-68.74448744487445,76.18409773827759],[-68.76968769687697,76.19254062462701],[-68.82008820088201,76.19591777916676],[-68.93168931689317,76.2246235927548],[-68.91728917289173,76.2431979427235],[-68.92448924489244,76.24657509726325],[-69.10089100891008,76.28372379720068],[-69.15489154891549,76.28710095174046],[-69.20529205292053,76.29892099262963],[-69.29529295292953,76.3006095698995],[-69.38529385293853,76.31411818805856],[-69.54729547295473,76.36308692888517],[-69.61929619296193,76.37152981523457],[-69.63729637296373,76.38334985612374],[-69.62649626496264,76.3901041652033],[-69.61929619296193,76.3985470515527],[-69.61929619296193,76.40698993790213],[-69.62289622896229,76.4171214015214],[-69.60129601296012,76.43231859695035],[-69.5760957609576,76.43738432876],[-69.32769327693276,76.46946729688779],[-69.07929079290793,76.49986168774566],[-68.90288902889029,76.52181319225414],[-68.81648816488165,76.5555847376518],[-68.83448834488344,76.55896189219155],[-68.89568895688957,76.56065046946145],[-68.86688866888669,76.57078193308072],[-68.73368733687336,76.58597912850968],[-68.38088380883808,76.58597912850968],[-68.03168031680316,76.5842905512398],[-68.00288002880028,76.58935628304945],[-67.98487984879849,76.60117632393863],[-67.98487984879849,76.62312782844711],[-68.00648006480064,76.63832502387604],[-68.07128071280712,76.64507933295556],[-68.09648096480964,76.65689937384477],[-68.00288002880028,76.6737851465436],[-67.98487984879849,76.68391661016287],[-68.0820808208082,76.70586811467135],[-68.10368103681036,76.70586811467135],[-68.33768337683377,76.6737851465436],[-68.62568625686256,76.66871941473394],[-68.910089100891,76.66534226019417],[-69.14049140491404,76.68560518743277],[-69.24129241292412,76.67716230108334],[-69.2880928809288,76.682228032893],[-69.3420934209342,76.69573665105204],[-69.630096300963,76.72275388737017],[-69.9180991809918,76.7497711236883],[-69.96129961299613,76.76327974184736],[-70.01170011700117,76.768345473657],[-70.03330033300333,76.77341120546666],[-70.08370083700837,76.79536270997514],[-70.10170101701017,76.80211701905466],[-70.08730087300873,76.82575710083302],[-70.05850058500585,76.84095429626197],[-69.92169921699217,76.8679715325801],[-69.89289892898928,76.88148015073915],[-69.89649896498965,76.90343165524763],[-69.85689856898568,76.9152516961368],[-69.74169741697416,76.96928616877304],[-69.68769687696877,76.98279478693212],[-69.58329583295833,76.98786051874177],[-69.55809558095581,76.9946148278213],[-69.540095400954,77.00643486871047],[-69.72729727297272,77.01656633232977],[-69.7560975609756,77.00981202325025],[-69.75969759697597,76.99292625055142],[-69.82449824498245,76.97604047785259],[-69.90729907299072,76.94226893245494],[-69.96849968499684,76.93044889156576],[-70.05130051300513,76.89161161435845],[-70.40770407704076,76.79705128724501],[-70.52290522905228,76.78691982362571],[-70.54090540905409,76.79198555543536],[-70.55530555305553,76.79367413270526],[-70.56610566105661,76.79705128724501],[-70.57330573305732,76.80380559632454],[-70.5841058410584,76.80887132813419],[-70.59490594905948,76.81224848267397],[-70.60210602106021,76.81224848267397],[-70.64170641706417,76.80211701905466],[-70.65970659706596,76.80211701905466],[-70.82890828908289,76.84264287353184],[-70.84330843308433,76.84939718261137],[-70.83970839708397,76.85615149169092],[-70.81450814508145,76.86966010984997],[-70.84330843308433,76.87472584165963],[-70.90450904509045,76.86459437804032],[-70.92970929709297,76.87303726438975],[-70.94050940509405,76.88148015073915],[-70.98730987309872,76.8966773461681],[-70.95490954909549,76.9068088097874],[-70.82890828908289,76.90343165524763],[-70.8361083610836,76.91187454159703],[-70.69570695706956,76.93213746883563],[-70.67770677706777,76.93889177791516],[-70.80370803708037,76.93213746883563],[-71.08451084510845,76.96590901423329],[-71.07731077310773,76.95915470515376],[-71.12051120511205,76.95071181880434],[-71.09891098910988,76.93213746883563],[-71.34731347313473,76.99123767328152],[-71.38331383313833,77.0233206414093],[-71.37251372513725,77.05878076407683],[-71.34371343713437,77.070600804966],[-71.26091260912608,77.06891222769613],[-71.23571235712356,77.07228938223591],[-71.23211232112321,77.08242084585518],[-71.23571235712356,77.09592946401426],[-71.23211232112321,77.10943808217331],[-71.22131221312213,77.11450381398296],[-71.19971199711996,77.11619239125284],[-71.18891188911888,77.12294670033239],[-71.19251192511925,77.13645531849144],[-71.00171001710017,77.15502966846014],[-70.91170911709116,77.14489820484084],[-70.69930699306992,77.1516525139204],[-70.75330753307533,77.16516113207945],[-70.9261092610926,77.1786697502385],[-70.90450904509045,77.19217836839758],[-70.5121051210512,77.2073755638265],[-70.12330123301233,77.22257275925546],[-69.73449734497345,77.23945853195428],[-69.71289712897129,77.23608137741451],[-69.67689676896768,77.22257275925546],[-69.65889658896589,77.21919560471568],[-69.5760957609576,77.22594991379523],[-69.15129151291512,77.2073755638265],[-68.73008730087301,77.1888012138578],[-68.68688686886868,77.1803583275084],[-68.61848618486185,77.17698117296862],[-68.61488614886149,77.17360401842885],[-68.61848618486185,77.1702268638891],[-68.24768247682476,77.18711263658793],[-67.87687876878769,77.20230983201685],[-67.48087480874808,77.17360401842885],[-67.08487084870848,77.14320962757097],[-67.03087030870309,77.14658678211075],[-66.95166951669516,77.12970100941192],[-66.50886508865088,77.13307816395167],[-66.41166411664116,77.11450381398296],[-66.36126361263612,77.11619239125284],[-66.38286382863828,77.12294670033239],[-66.44046440464405,77.13307816395167],[-66.45126451264512,77.14489820484084],[-66.43686436864368,77.15334109119027],[-66.2460624606246,77.16347255480957],[-66.19926199261992,77.17529259569875],[-66.17046170461704,77.1989326774771],[-66.63846638466384,77.15334109119027],[-67.08847088470884,77.1786697502385],[-67.5420754207542,77.20230983201685],[-67.9920799207992,77.22594991379523],[-68.21528215282153,77.20568698655663],[-68.640086400864,77.23101564560488],[-69.06129061290612,77.25803288192299],[-69.10449104491045,77.27491865462181],[-68.73728737287372,77.3255759727183],[-68.370083700837,77.37623329081478],[-67.90207902079021,77.37961044535456],[-67.43767437674376,77.3829875998943],[-67.10287102871028,77.36947898173526],[-66.77166771667716,77.3559703635762],[-66.50526505265053,77.27829580916159],[-66.26046260462604,77.25127857284346],[-66.22446224462244,77.25296715011334],[-66.19566195661956,77.26141003646276],[-66.24246242462424,77.28336154097124],[-66.4440644406444,77.29349300459054],[-66.4980649806498,77.31206735455925],[-66.54486544865448,77.3357074363376],[-66.58446584465844,77.36947898173526],[-66.60246602466025,77.37623329081478],[-66.59886598865988,77.3829875998943],[-66.66366663666636,77.41844772256184],[-66.5880658806588,77.43195634072092],[-66.20286202862029,77.42520203164139],[-66.12366123661236,77.43364491799079],[-66.0660606606066,77.46572788611857],[-66.08766087660877,77.47754792700775],[-66.09486094860948,77.47923650427762],[-66.0840608406084,77.48430223608727],[-66.05166051660517,77.4927451224367],[-66.06966069660696,77.5011880087861],[-66.09846098460984,77.50625374059575],[-66.11646116461164,77.50963089513553],[-66.12366123661236,77.51638520421506],[-66.1380613806138,77.53158239964398],[-66.14526145261452,77.53495955418376],[-66.1920619206192,77.53833670872353],[-66.21366213662137,77.54509101780306],[-66.23166231662316,77.55522248142236],[-66.21726217262172,77.56197679050189],[-66.18126181261812,77.56366536777176],[-66.16326163261633,77.56873109958141],[-66.1920619206192,77.57717398593081],[-66.30006300063,77.57548540866094],[-66.2640626406264,77.58392829501037],[-66.2460624606246,77.59068260408989],[-66.24246242462424,77.59912549043929],[-66.25686256862568,77.61094553132847],[-66.2820628206282,77.61769984040802],[-66.48366483664836,77.63458561310685],[-66.58446584465844,77.6582256948852],[-66.59886598865988,77.66835715850448],[-66.61326613266132,77.67342289031413],[-66.68526685266852,77.67173431304425],[-66.72486724867248,77.68017719939368],[-66.7140671406714,77.69199724028286],[-66.68526685266852,77.70550585844191],[-66.66366663666636,77.71901447660096],[-66.72126721267212,77.71226016752144],[-66.84726847268472,77.6852429312033],[-67.14247142471424,77.67173431304425],[-67.1640716407164,77.66498000396473],[-67.14247142471424,77.6565371176153],[-67.14967149671496,77.63965134491647],[-67.18567185671856,77.60587979951882],[-67.21447214472144,77.58730544955012],[-67.25047250472504,77.57548540866094],[-67.59247592475924,77.52482809056445],[-67.97407974079741,77.5113194724054],[-68.35568355683556,77.49949943151623],[-68.39168391683917,77.50794231786563],[-68.370083700837,77.54509101780306],[-68.370083700837,77.56704252231154],[-68.39168391683917,77.57548540866094],[-68.4240842408424,77.57886256320072],[-68.52848528485285,77.6092569540586],[-68.64368643686437,77.66329142669485],[-68.68328683286832,77.66835715850448],[-68.73008730087301,77.66835715850448],[-68.81648816488165,77.6582256948852],[-68.61128611286112,77.56535394504164],[-68.59688596885968,77.55184532688259],[-68.59328593285933,77.53495955418376],[-68.61128611286112,77.51807378148493],[-68.640086400864,77.50963089513553],[-68.93168931689317,77.4809250815475],[-69.22329223292232,77.45221926795949],[-69.56529565295652,77.48767939062705],[-69.91089910899109,77.52313951329458],[-70.25650256502564,77.55691105869224],[-70.27450274502745,77.56366536777176],[-70.28890288902889,77.57548540866094],[-70.260102601026,77.57717398593081],[-70.20250202502025,77.59237118135977],[-69.99729997299973,77.62445414948755],[-69.87849878498784,77.6295198812972],[-69.720097200972,77.66498000396473],[-69.63369633696337,77.66835715850448],[-69.51849518495185,77.68693150847321],[-69.49689496894969,77.70212870390213],[-69.52209522095221,77.73252309476004],[-69.47889478894788,77.75447459926852],[-69.50769507695077,77.76122890834804],[-69.540095400954,77.75109744472874],[-69.60129601296012,77.72745736295039],[-69.720097200972,77.70381728117204],[-70.00090000900009,77.69368581755273],[-70.01890018900188,77.69030866301296],[-70.06930069300692,77.67342289031413],[-70.37170371703716,77.6768000448539],[-70.6741067410674,77.68017719939368],[-70.70650706507065,77.69199724028286],[-70.68130681306813,77.70888301298169],[-70.3681036810368,77.76967179469744],[-70.26370263702637,77.81526338098428],[-70.21330213302133,77.82708342187345],[-70.170101701017,77.82708342187345],[-70.14490144901448,77.8220176900638],[-69.99369993699936,77.82877199914336],[-69.9720997209972,77.83552630822288],[-70.06930069300692,77.85747781273136],[-70.28170281702816,77.84734634911206],[-70.37530375303753,77.86254354454101],[-70.41130411304113,77.86254354454101],[-70.4581045810458,77.85747781273136],[-70.54090540905409,77.83552630822288],[-70.64530645306452,77.78824614466618],[-70.67770677706777,77.78149183558662],[-70.99450994509945,77.77642610377697],[-71.31131311313112,77.76967179469744],[-71.430114301143,77.7933118764758],[-71.44091440914409,77.80006618555535],[-71.42651426514264,77.81188622644453],[-71.40851408514085,77.81864053552405],[-71.23931239312392,77.85241208092171],[-71.2141121411214,77.87098643089041],[-71.250112501125,77.88618362631937],[-71.31131311313112,77.88956078085911],[-71.3761137611376,77.88111789450971],[-71.47331473314733,77.86085496727111],[-71.52371523715237,77.85578923546146],[-71.63171631716317,77.86254354454101],[-71.59571595715957,77.89462651266876],[-71.5921159211592,77.90475797628807],[-71.59931599315993,77.9216437489869],[-71.61731617316173,77.92502090352667],[-71.80811808118081,77.90813513082784],[-71.85491854918548,77.89631508993867],[-71.90531905319052,77.88787220358924],[-71.95571955719556,77.89631508993867],[-72.04932049320493,77.92502090352667],[-72.14292142921428,77.93684094441585],[-72.24012240122401,77.93852952168572],[-72.23652236522365,77.9503495625749],[-72.23292232922329,77.95541529438455],[-72.22932229322292,77.9604810261942],[-72.33732337323373,78.00269545794126],[-72.35172351723517,78.01451549883043],[-72.3409234092341,78.02802411698951],[-72.31932319323192,78.03984415787869],[-72.29772297722977,78.04828704422809],[-72.29772297722977,78.05504135330762],[-72.5821258212582,78.06179566238717],[-72.60732607326072,78.06686139419682],[-72.65412654126541,78.09050147597517],[-72.6721267212672,78.0972557850547],[-72.7549275492755,78.10232151686435],[-72.78372783727836,78.107387248674],[-72.85212852128521,78.14115879407166],[-72.89532895328954,78.15466741223071],[-73.05733057330573,78.15804456677049],[-73.02493024930249,78.17830749400906],[-72.98172981729817,78.18168464854884],[-72.89892898928989,78.17155318492954],[-72.81612816128161,78.17661891673919],[-72.73332733327332,78.19181611216811],[-72.7549275492755,78.20363615305732],[-72.81612816128161,78.21883334848624],[-72.81612816128161,78.22727623483567],[-72.78732787327873,78.22727623483567],[-72.7549275492755,78.2340305439152],[-72.76572765727657,78.23909627572485],[-72.77652776527765,78.24078485299472],[-72.79092790927909,78.2424734302646],[-72.80172801728017,78.24078485299472],[-72.77292772927728,78.24753916207425],[-72.7081270812708,78.24585058480437],[-72.67932679326793,78.25429347115377],[-72.69012690126901,78.25429347115377],[-72.69372693726937,78.25767062569355],[-72.7081270812708,78.26780208931285],[-72.66132661326613,78.2914421710912],[-72.5929259292593,78.29650790290086],[-72.45972459724597,78.28806501655143],[-72.50652506525064,78.30495078925026],[-72.85212852128521,78.31508225286956],[-72.81612816128161,78.32352513921899],[-72.81972819728198,78.32690229375874],[-72.82332823328233,78.33027944829851],[-72.82692826928269,78.33365660283826],[-72.83052830528305,78.33703375737804],[-72.82332823328233,78.35054237553709],[-72.81252812528125,78.35898526188652],[-72.80172801728017,78.36236241642627],[-72.7621276212762,78.36573957096604],[-72.63972639726397,78.3910682300143],[-72.60372603726037,78.40457684817335],[-72.58572585725857,78.42483977541193],[-72.65052650526505,78.438348393571],[-72.6721267212672,78.438348393571],[-72.65412654126541,78.45523416626983],[-72.58932589325893,78.46705420715901],[-72.57132571325712,78.48731713439759],[-72.60732607326072,78.48562855712771],[-72.62172621726216,78.48900571166749],[-72.63252632526324,78.49407144347714],[-72.63972639726397,78.50082575255666],[-72.58932589325893,78.52108867979524],[-72.26532265322653,78.53966302976397],[-71.94131941319412,78.55823737973267],[-71.55611556115561,78.64266624322681],[-71.21771217712177,78.64266624322681],[-71.11331113311132,78.62240331598821],[-70.86490864908649,78.61564900690868],[-70.8361083610836,78.61058327509903],[-70.81450814508145,78.59876323420985],[-70.80370803708037,78.59876323420985],[-70.78930789307893,78.61058327509903],[-70.79290792907929,78.6122718523689],[-70.80370803708037,78.61564900690868],[-70.81090810908108,78.61733758417856],[-70.78930789307893,78.64773197503646],[-70.79290792907929,78.65786343865574],[-70.80370803708037,78.67812636589434],[-70.7461074610746,78.69501213859317],[-70.48690486904869,78.71696364310165],[-70.43650436504365,78.72878368399083],[-70.37170371703716,78.72371795218118],[-70.31770317703176,78.73722657034023],[-69.98649986499865,78.75411234303905],[-69.96129961299613,78.76255522938848],[-69.9720997209972,78.76930953846801],[-69.99729997299973,78.77437527027766],[-70.02250022500225,78.77437527027766],[-69.96849968499684,78.79632677478614],[-69.90729907299072,78.80476966113554],[-69.43929439294392,78.80814681567531],[-69.36009360093601,78.79970392932589],[-69.33849338493384,78.80476966113554],[-69.3240932409324,78.81490112475484],[-69.2520925209252,78.84360693834284],[-69.20169201692016,78.85373840196215],[-69.17649176491764,78.86386986558145],[-69.19089190891908,78.87062417466097],[-69.16569165691656,78.87906706101037],[-69.14769147691476,78.88075563828028],[-69.07929079290793,78.86555844285132],[-69.01809018090181,78.8672470201212],[-68.98568985689856,78.86386986558145],[-68.910089100891,78.8402297838031],[-68.88488884888848,78.83685262926332],[-68.78048780487805,78.83685262926332],[-68.80568805688057,78.84698409288262],[-68.85968859688596,78.8588041337718],[-68.88488884888848,78.87062417466097],[-68.88488884888848,78.87400132920072],[-68.88848888488884,78.88582137008993],[-68.89208892088921,78.89088710189955],[-68.89928899288992,78.8959528337092],[-68.91368913689136,78.90101856551885],[-68.9280892808928,78.90439572005863],[-68.93528935289352,78.90270714278876],[-68.96768967689677,78.8976414109791],[-69.14769147691476,78.91621576094781],[-69.17289172891728,78.9246586472972],[-69.14409144091441,78.94998730634546],[-69.10809108091081,78.96349592450451],[-69.03249032490325,78.98038169720334],[-68.53568535685356,79.02766186076005],[-68.03888038880389,79.07663060158666],[-67.7580775807758,79.03779332437935],[-67.67167671676717,79.05467909707818],[-67.73647736477365,79.06649913796736],[-67.74727747277473,79.07663060158666],[-67.73287732877328,79.08845064247583],[-67.71127711277113,79.09520495155536],[-67.52767527675276,79.11040214698431],[-67.49167491674916,79.10533641517466],[-67.47727477274772,79.10702499244454],[-67.47367473674737,79.11377930152409],[-67.48447484474845,79.12053361060362],[-67.49167491674916,79.12222218787349],[-67.49887498874989,79.12728791968314],[-67.5060750607506,79.13910796057232],[-67.22527225272252,79.11546787879396],[-67.17847178471784,79.11715645606384],[-67.18567185671856,79.12728791968314],[-67.19287192871928,79.13235365149279],[-67.2180721807218,79.13910796057232],[-67.19647196471965,79.14417369238197],[-67.18927189271892,79.14586226965184],[-67.19647196471965,79.1509280014615],[-67.1820718207182,79.15768231054102],[-67.16767167671676,79.15768231054102],[-67.13527135271352,79.1509280014615],[-67.12447124471244,79.15261657873137],[-67.11367113671136,79.15599373327115],[-67.10287102871028,79.15599373327115],[-67.08847088470884,79.14586226965184],[-67.0920709207092,79.14417369238197],[-67.10287102871028,79.13910796057232],[-67.110071100711,79.13910796057232],[-67.07767077670776,79.12053361060362],[-67.04167041670416,79.11546787879396],[-67.0020700207002,79.12222218787349],[-66.96966969669697,79.13910796057232],[-66.98046980469805,79.15261657873137],[-66.96246962469624,79.15430515600127],[-66.93366933669336,79.14586226965184],[-66.90846908469084,79.13066507422292],[-66.91566915669156,79.12559934241327],[-66.92286922869228,79.12053361060362],[-66.92646926469264,79.11209072425419],[-66.930069300693,79.10364783790479],[-66.88326883268832,79.11040214698431],[-66.79326793267933,79.14079653784219],[-66.74646746467464,79.14586226965184],[-66.78246782467825,79.12897649695302],[-66.8220682206822,79.11715645606384],[-66.79686796867968,79.11040214698431],[-66.76446764467644,79.11546787879396],[-66.71046710467104,79.13573080603254],[-66.6780667806678,79.14417369238197],[-66.5880658806588,79.14586226965184],[-66.57366573665736,79.1424851151121],[-66.54846548465484,79.12897649695302],[-66.5340653406534,79.12391076514336],[-66.5160651606516,79.12391076514336],[-66.48366483664836,79.13573080603254],[-66.47286472864728,79.13910796057232],[-66.36486364863649,79.1424851151121],[-66.32886328863289,79.13910796057232],[-66.33246332463324,79.13235365149279],[-66.3360633606336,79.11715645606384],[-66.33246332463324,79.11715645606384],[-66.3360633606336,79.11040214698431],[-66.3180631806318,79.10533641517466],[-66.27126271262712,79.10364783790479],[-66.18846188461885,79.11546787879396],[-66.11646116461164,79.10195926063491],[-65.97605976059761,79.10364783790479],[-65.9940599405994,79.12053361060362],[-66.01926019260192,79.12391076514336],[-66.0480604806048,79.12559934241327],[-66.07326073260732,79.13066507422292],[-65.81765817658176,79.12897649695302],[-65.78525785257852,79.13910796057232],[-65.850058500585,79.13741938330244],[-65.88245882458824,79.14079653784219],[-65.89325893258932,79.14923942419162],[-65.90765907659076,79.1509280014615],[-65.88965889658895,79.16612519689045],[-65.85725857258572,79.17794523777962],[-65.69165691656916,79.2083396286375],[-65.66285662856629,79.22015966952668],[-65.67725677256772,79.22015966952668],[-65.69165691656916,79.22184824679658],[-65.70245702457024,79.22860255587611],[-65.70965709657096,79.24042259676528],[-65.670056700567,79.25393121492434],[-65.61965619656196,79.26068552400386],[-65.5440554405544,79.26068552400386],[-65.51885518855188,79.26743983308342],[-65.53685536855369,79.27925987397259],[-65.55125551255512,79.28770276032199],[-65.53685536855369,79.29614564667142],[-65.48285482854828,79.30289995575095],[-65.47925479254792,79.3062771102907],[-65.4720547205472,79.30965426483047],[-65.46485464854648,79.31471999664012],[-65.4540545405454,79.31640857391],[-65.44325443254432,79.31978572844977],[-65.42885428854288,79.33329434660882],[-65.41445414454144,79.3366715011486],[-65.27045270452705,79.35186869657755],[-65.2380523805238,79.36368873746673],[-65.18045180451804,79.37044304654626],[-65.15525155251552,79.37719735562578],[-65.13365133651337,79.39239455105474],[-65.1480514805148,79.39914886013426],[-65.12645126451264,79.41265747829331],[-65.07245072450723,79.42278894191261],[-65.04725047250471,79.43292040553192],[-65.06525065250652,79.43798613734157],[-65.08685086850868,79.43967471461144],[-65.05085050850508,79.4633147963898],[-64.92124921249211,79.48526630089827],[-64.860048600486,79.50721780540675],[-64.83124831248313,79.52748073264533],[-64.82044820448203,79.55280939169359],[-64.82044820448203,79.57982662801172],[-64.8240482404824,79.59840097798042],[-64.83484834848348,79.61190959613947],[-64.860048600486,79.6287953688383],[-64.8960489604896,79.64061540972747],[-64.97524975249752,79.6490582960769],[-65.01125011250112,79.6591897596962],[-64.9860498604986,79.67100980058538],[-64.92844928449284,79.68958415055408],[-64.91044910449104,79.70646992325291],[-64.9680496804968,79.73517573684092],[-65.03285032850329,79.75543866407949],[-65.01485014850148,79.7672587049687],[-64.96444964449644,79.7757015913181],[-64.94284942849428,79.78245590039762],[-65.0040500405004,79.79765309582658],[-65.03645036450364,79.80947313671575],[-65.05445054450544,79.8229817548748],[-64.99684996849967,79.8229817548748],[-64.99684996849967,79.82973606395436],[-65.02925029250292,79.82973606395436],[-65.10125101251012,79.84155610484353],[-65.130051300513,79.84999899119293],[-65.10125101251012,79.85844187754236],[-64.99684996849967,79.86519618662189],[-65.00765007650077,79.87532765024119],[-65.04725047250471,79.89896773201954],[-65.0040500405004,79.9124763501786],[-65.01485014850148,79.92767354560755],[-64.99684996849967,79.9411821637666],[-64.950049500495,79.9597565137353],[-64.97884978849788,79.9800194409739],[-65.07245072450723,80.00872525456191],[-65.04365043650436,80.02392244999086],[-64.69084690846908,80.05093968630896],[-64.34164341643417,80.07964549989697],[-64.12564125641256,80.14381143615253],[-64.08244082440824,80.14718859069228],[-63.90963909639096,80.13199139526336],[-63.816038160381595,80.13874570434288],[-63.780037800378,80.15225432250193],[-64.140041400414,80.15900863158146],[-64.1580415804158,80.16238578612123],[-64.17244172441724,80.17251724974054],[-64.18684186841868,80.18433729062971],[-64.20484204842047,80.19278017697911],[-64.17964179641795,80.22317456783702],[-64.17244172441724,80.23837176326595],[-64.17964179641795,80.25019180415512],[-64.20124201242012,80.2535689586949],[-64.22284222842228,80.25525753596477],[-64.24444244442444,80.2535689586949],[-64.26244262442624,80.2451260723455],[-64.2660426604266,80.23161745418642],[-64.25884258842588,80.21979741329724],[-64.25524255242551,80.21135452694784],[-64.25884258842588,80.20797737240807],[-64.29124291242913,80.19615733151889],[-64.33444334443344,80.14887716796218],[-64.36684366843669,80.13874570434288],[-64.38844388443884,80.1353685498031],[-64.47484474844748,80.10497415894523],[-64.92484924849248,80.07289119081744],[-65.30645306453064,80.0965312725958],[-65.45045450454504,80.0593825726584],[-65.86445864458643,80.01210240910169],[-66.06246062460625,80.02054529545109],[-66.09846098460984,80.03236533634026],[-66.13446134461344,80.05600541811862],[-66.17046170461704,80.07289119081744],[-66.25326253262533,80.08133407716687],[-66.3180631806318,80.10159700440545],[-66.37566375663756,80.10328558167535],[-66.40446404464045,80.108351313485],[-66.41886418864188,80.11341704529463],[-66.43326433264332,80.1167941998344],[-66.44766447664476,80.1167941998344],[-66.50166501665016,80.08471123170662],[-66.5520655206552,80.07457976808735],[-67.04887048870488,80.06107114992827],[-67.08127081270813,80.07626834535722],[-67.0560705607056,80.08302265443675],[-67.06327063270632,80.09484269532592],[-67.10287102871028,80.11172846802475],[-67.12447124471244,80.12523708618383],[-67.12087120871209,80.13199139526336],[-67.08127081270813,80.1455000134224],[-67.110071100711,80.14887716796218],[-67.1640716407164,80.16238578612123],[-67.18927189271892,80.16576294066101],[-67.27567275672756,80.15900863158146],[-67.46287462874628,80.18433729062971],[-67.5060750607506,80.20797737240807],[-67.49167491674916,80.21304310421772],[-67.47727477274772,80.21473168148759],[-67.44487444874449,80.21304310421772],[-67.470074700747,80.22824029964667],[-67.45567455674556,80.23330603145632],[-67.44847448474485,80.2349946087262],[-67.43767437674376,80.2349946087262],[-67.4520745207452,80.2451260723455],[-67.46647466474664,80.2535689586949],[-67.48447484474845,80.26032326777442],[-67.51687516875168,80.26538899958408],[-67.50967509675097,80.2738318859335],[-67.47727477274772,80.28902908136243],[-67.45567455674556,80.30253769952151],[-67.44847448474485,80.31435774041068],[-67.45567455674556,80.32111204949021],[-67.48447484474845,80.32280062676008],[-67.45567455674556,80.34306355399869],[-67.3260732607326,80.36501505850717],[-67.28647286472864,80.36332648123727],[-67.26847268472685,80.36670363577704],[-67.21087210872108,80.38358940847587],[-67.18927189271892,80.38527798574574],[-67.19647196471965,80.38527798574574],[-67.16767167671676,80.38865514028552],[-67.03447034470344,80.41398379933375],[-66.9120691206912,80.45450965381093],[-66.7860678606786,80.46295254016036],[-66.77886778867789,80.46801827197001],[-66.76806768067681,80.47814973558931],[-66.75726757267573,80.48321546739894],[-66.72486724867248,80.48828119920859],[-66.71046710467104,80.49503550828814],[-66.71766717667177,80.49503550828814],[-66.72126721267212,80.49672408555801],[-66.72846728467285,80.49841266282789],[-66.73206732067321,80.50178981736767],[-66.72486724867248,80.50854412644719],[-66.71766717667177,80.51529843552672],[-66.70686706867069,80.5186755900665],[-66.6960669606696,80.52205274460624],[-66.750067500675,80.52036416733637],[-66.77886778867789,80.52374132187614],[-66.79326793267933,80.53218420822554],[-66.78246782467825,80.5456928263846],[-66.75726757267573,80.55244713546415],[-66.45126451264512,80.58115294905215],[-66.14166141661416,80.60817018537026],[-66.10926109261092,80.61661307171968],[-66.09126091260912,80.63181026714864],[-66.0840608406084,80.64700746257756],[-66.07326073260732,80.66051608073664],[-66.05166051660517,80.6655818125463],[-65.78885788857887,80.66389323527639],[-65.5260552605526,80.66389323527639],[-65.49725497254973,80.67233612162582],[-65.69165691656916,80.6942876261343],[-65.70965709657096,80.70441908975357],[-65.69165691656916,80.71623913064275],[-65.62325623256233,80.7314363260717],[-65.37485374853748,80.75507640785005],[-65.12645126451264,80.78040506689831],[-65.0760507605076,80.79391368505736],[-65.05445054450544,80.80404514867666],[-65.05085050850508,80.80742230321641],[-65.05085050850508,80.81248803502606],[-65.05085050850508,80.81924234410562],[-65.04725047250471,80.82430807591524],[-65.040050400504,80.82599665318514],[-65.01845018450184,80.82937380772489],[-65.00765007650077,80.83275096226467],[-65.00045000450004,80.83781669407432],[-64.98964989649896,80.84457100315385],[-64.98244982449825,80.85132531223337],[-65.040050400504,80.8783425485515],[-65.01845018450184,80.89522832125033],[-64.97884978849788,80.90198263032985],[-64.77724777247772,80.9070483621395],[-64.73764737647376,80.91886840302868],[-64.74484744847447,80.92055698029856],[-64.75924759247592,80.92731128937811],[-64.70884708847088,80.94081990753716],[-64.76284762847628,80.94926279388656],[-64.79524795247951,80.95939425750586],[-64.8060480604806,80.97459145293482],[-64.7880478804788,80.98978864836377],[-64.7520475204752,80.9965429574433],[-64.51804518045181,81.0049858437927],[-64.43524435244352,81.02862592557105],[-64.24084240842409,81.02862592557105],[-64.11844118441184,81.04720027553978],[-63.92763927639275,81.05733173915905],[-63.82683826838267,81.11305478906519],[-63.72243722437224,81.13838344811344],[-63.67563675636755,81.1434491799231],[-63.6540365403654,81.14851491173272],[-63.59283592835928,81.15020348900262],[-63.50643506435064,81.13162913903392],[-63.438034380343794,81.09616901636636],[-63.427234272342716,81.05057743007953],[-63.39483394833948,81.02693734830117],[-63.30483304833048,80.95432852569621],[-63.247232472324725,80.92731128937811],[-63.06003060030599,80.87665397128163],[-63.024030240302395,80.85639104404302],[-62.99162991629916,80.82599665318514],[-62.9520295202952,80.80066799413689],[-62.85842858428583,80.78040506689831],[-62.818828188281884,80.76351929419948],[-62.77922779227792,80.75845356238983],[-62.736027360273596,80.78209364416819],[-62.7540275402754,80.79053653051761],[-62.844028440284404,80.79897941686701],[-62.86562865628656,80.80404514867666],[-62.872828728287274,80.81248803502606],[-62.85482854828548,80.82430807591524],[-62.89082890828908,80.83275096226467],[-62.92682926829268,80.84625958042372],[-62.9880298802988,80.88509685763103],[-63.02763027630276,80.90198263032985],[-63.15363153631536,80.93744275299738],[-63.18603186031859,80.95263994842634],[-63.322833228332286,81.0623974709687],[-63.34083340833408,81.08434897547718],[-63.333633336333364,81.10630047998566],[-63.34443344433444,81.12149767541462],[-63.362433624336234,81.13669487084354],[-63.373233732337326,81.15864637535202],[-63.196831968319685,81.19579507528945],[-63.150031500314995,81.21099227071838],[-62.97722977229772,81.2278780434172],[-62.83322833228331,81.22618946614733],[-62.76482764827648,81.21436942525816],[-62.480424804248045,81.20761511617863],[-62.196021960219596,81.1991722298292],[-61.85041850418504,81.12825198449414],[-61.54441544415444,81.06577462550848],[-61.504815048150476,81.07759466639766],[-61.530015300152996,81.09785759363626],[-61.50121501215011,81.10798905725554],[-61.37161371613716,81.11305478906519],[-61.314013140131394,81.12318625268449],[-61.076410764107635,81.11980909814471],[-61.0440104401044,81.1333177163038],[-60.99360993609936,81.14513775719297],[-60.97200972009719,81.14682633446284],[-60.96480964809648,81.14851491173272],[-60.9540095400954,81.1620235298918],[-60.94680946809467,81.16540068443155],[-60.93600936009359,81.16877783897132],[-60.89280892808928,81.16540068443155],[-60.93960939609396,81.18397503440028],[-61.04041040410404,81.20423796163885],[-61.08721087210871,81.22112373433768],[-61.152011520115195,81.25658385700521],[-61.18081180811808,81.27853536151369],[-61.202412024120235,81.30386402056195],[-61.19521195211952,81.3072411751017],[-61.17361173611735,81.31399548418125],[-61.15921159211592,81.317372638721],[-61.2960129601296,81.34945560684878],[-61.310413104131044,81.3646528022777],[-61.2960129601296,81.37140711135726],[-60.838808388083876,81.45921312939115],[-60.80280802808028,81.4727217475502],[-60.774007740077394,81.49129609751893],[-60.788407884078836,81.50818187021775],[-60.84240842408424,81.52506764291658],[-60.94320943209432,81.54364199288528],[-60.99360993609936,81.54533057015516],[-61.02241022410223,81.54870772469494],[-61.03681036810367,81.56052776558411],[-61.03681036810367,81.57572496101307],[-61.04041040410404,81.58247927009259],[-61.051210512105115,81.58754500190224],[-61.19161191611916,81.62807085637942],[-61.260012600126004,81.6685967108566],[-61.34281342813428,81.68041675174578],[-61.378813788137876,81.70067967898439],[-61.386013860138604,81.72094260622296],[-61.454414544145436,81.74458268800132],[-61.436414364143644,81.7665341925098],[-61.411214112141124,81.77497707885922],[-61.28161281612816,81.8155029333364],[-60.90720907209072,81.86447167416298],[-60.53280532805327,81.9134404149896],[-60.48240482404823,81.91175183771972],[-60.43200432004319,81.92019472406912],[-60.38160381603815,81.92019472406912],[-60.334803348033475,81.93032618768842],[-60.06840068400683,81.94721196038725],[-59.75159751597515,81.92526045587877],[-59.60399603996039,81.89317748775099],[-59.369993699937,81.89993179683054],[-59.103591035910355,81.88135744686181],[-58.83718837188371,81.86278309689311],[-58.79038790387904,81.84927447873406],[-58.76878768787688,81.82732297422558],[-58.75798757987579,81.80030573790745],[-58.72918729187292,81.7867971197484],[-58.69678696786967,81.77835423339897],[-58.6679866798668,81.76991134704957],[-58.72918729187292,81.75471415162062],[-58.75438754387544,81.73951695619166],[-58.75438754387544,81.71418829714344],[-58.725587255872554,81.69561394717473],[-58.68238682386823,81.68379390628556],[-58.311583115831155,81.6398908972686],[-57.94077940779407,81.59429931098177],[-57.695976959769595,81.59598788825164],[-57.645576455764555,81.59092215644199],[-57.54117541175411,81.56221634285399],[-57.53757537575375,81.55715061104434],[-57.54117541175411,81.54364199288528],[-57.22077220772208,81.48791894297915],[-57.17757177571775,81.4744103248201],[-57.19917199171991,81.46596743847067],[-57.256772567725676,81.46596743847067],[-57.281972819728196,81.46090170666102],[-57.242372423724234,81.43557304761279],[-57.191971919719194,81.42544158399349],[-56.89676896768967,81.40686723402479],[-56.84276842768428,81.39504719313561],[-56.752767527675275,81.39335861586574],[-56.70956709567095,81.38491572951631],[-56.569165691656906,81.33932414322948],[-56.540365403654036,81.3359469886897],[-56.4539645396454,81.3376355659596],[-56.464764647646476,81.34945560684878],[-56.52236522365223,81.3646528022777],[-56.565565655656556,81.38829288405609],[-56.58356583565835,81.39504719313561],[-57.029970299702995,81.43219589307301],[-57.06597065970659,81.43895020215257],[-57.09837098370983,81.4541473975815],[-57.09477094770948,81.47609890208997],[-57.181171811718116,81.49973898386833],[-57.17037170371704,81.5216904883768],[-57.19917199171991,81.53351052926598],[-57.27477274772747,81.54870772469494],[-57.332373323733236,81.55377345650459],[-57.5339753397534,81.60949650641072],[-57.67797677976779,81.62300512456977],[-57.746377463774635,81.65171093815778],[-58.13878138781388,81.66690813358673],[-58.1279812798128,81.677039597206],[-58.12438124381244,81.68041675174578],[-58.14598145981459,81.69561394717473],[-58.22878228782288,81.71418829714344],[-58.31518315183152,81.74964841981097],[-58.4159841598416,81.8155029333364],[-58.437584375843755,81.81888008787615],[-58.47358473584735,81.83070012876533],[-58.45918459184591,81.84420874692441],[-58.45918459184591,81.85940594235333],[-58.46638466384664,81.87291456051241],[-58.48438484384843,81.87966886959194],[-58.61758617586176,81.89317748775099],[-58.82278822788227,81.92863761041855],[-58.9919899198992,81.9337033422282],[-59.42759427594275,81.97929492851503],[-59.467194671946714,82.00293501029338],[-59.03879038790387,82.05359232838987],[-58.61038610386103,82.10593822375623],[-58.32958329583295,82.10593822375623],[-58.34398343983439,82.11944684191528],[-58.311583115831155,82.12957830553458],[-58.01278012780128,82.14815265550328],[-57.71397713977139,82.16672700547201],[-57.3719737197372,82.17854704636119],[-57.029970299702995,82.18867850998046],[-56.954369543695435,82.2072528599492],[-56.86076860768607,82.20387570540942],[-56.73476734767347,82.2258272099179],[-56.464764647646476,82.2359586735372],[-56.42876428764288,82.23089294172755],[-56.35676356763567,82.2072528599492],[-56.317163171631705,82.20218712813954],[-56.33516335163351,82.19036708725037],[-56.342363423634225,82.18698993271059],[-56.30636306363063,82.16672700547201],[-56.263162631626315,82.16672700547201],[-56.216362163621625,82.17854704636119],[-56.187561875618755,82.19543281906002],[-56.19836198361983,82.20894143721907],[-56.14436144361443,82.2359586735372],[-56.12636126361264,82.23933582807695],[-56.09756097560975,82.25791017804568],[-56.07956079560795,82.2629759098553],[-56.00756007560075,82.2646644871252],[-55.985959859598594,82.2629759098553],[-55.95715957159571,82.2731073734746],[-55.61515615156151,82.26128733258543],[-55.273152731527304,82.24946729169625],[-55.25515255152551,82.24777871442637],[-55.24075240752407,82.24271298261672],[-55.22635226352263,82.2359586735372],[-55.244352443524434,82.22920436445767],[-55.26595265952659,82.22751578718777],[-55.287552875528746,82.22751578718777],[-55.32715327153271,82.2342700962673],[-55.33075330753307,82.23089294172755],[-55.323553235532344,82.21569574629859],[-55.323553235532344,82.21063001448894],[-55.32715327153271,82.2072528599492],[-55.323553235532344,82.20387570540942],[-55.31635316353163,82.19880997359977],[-55.30555305553055,82.19712139632989],[-55.19035190351903,82.18698993271059],[-55.13995139951399,82.16334985093224],[-55.111151111511106,82.15659554185271],[-55.093150931509314,82.17348131455154],[-55.10395103951039,82.18867850998046],[-55.22635226352263,82.21569574629859],[-55.17955179551795,82.22920436445767],[-55.16515165151651,82.2359586735372],[-55.20475204752047,82.25791017804568],[-55.25515255152551,82.2747959507445],[-55.30555305553055,82.28661599163368],[-55.35595355953559,82.28999314617343],[-55.575555755557545,82.2747959507445],[-55.60435604356043,82.2832388370939],[-55.56475564755647,82.29168172344333],[-55.348753487534864,82.30012460979273],[-55.25155251552515,82.32038753703134],[-54.84474844748448,82.34740477334944],[-54.441544415444156,82.3727334323977],[-54.092340923409225,82.32038753703134],[-54.07794077940778,82.31194465068191],[-54.067140671406705,82.3018131870626],[-54.04554045540455,82.28999314617343],[-54.02034020340203,82.28155025982403],[-53.95913959139591,82.2747959507445],[-53.930339303393026,82.26635306439508],[-53.887138871388714,82.2444015598866],[-53.84753847538475,82.23764725080707],[-53.83313833138331,82.23258151899742],[-53.80793807938079,82.21738432356847],[-53.750337503375036,82.19205566452024],[-53.710737107371074,82.18361277817084],[-53.6891368913689,82.17348131455154],[-53.66753667536675,82.15997269639246],[-53.649536495364956,82.15321838731293],[-53.627936279362785,82.14308692369363],[-53.577535775357745,82.12957830553458],[-53.55593555935559,82.11606968737553],[-53.552335523355225,82.10424964648635],[-53.55593555935559,82.07554383289835],[-53.552335523355225,82.06372379200914],[-53.59553595535955,82.05021517385009],[-53.61353613536134,82.03839513296091],[-53.624336243362436,82.02657509207174],[-53.61353613536134,82.01306647391269],[-53.59193591935919,82.00293501029338],[-53.552335523355225,81.98773781486443],[-53.51633516335163,81.9607205785463],[-53.501935019350185,81.93708049676795],[-53.50913509135091,81.91006326044982],[-53.56673566735667,81.83070012876533],[-53.58833588335882,81.81212577879663],[-53.60993609936099,81.80030573790745],[-53.71793717937179,81.76822276977967],[-53.764737647376464,81.74458268800132],[-53.775537755377556,81.73951695619166],[-53.775537755377556,81.73445122438204],[-53.775537755377556,81.72769691530249],[-53.77193771937719,81.71756545168321],[-53.779137791377906,81.71249971987356],[-53.82233822338223,81.70067967898439],[-53.78273782737827,81.68041675174578],[-53.775537755377556,81.67028528812648],[-53.79353793537935,81.66015382450718],[-53.789937899378984,81.65508809269755],[-53.78273782737827,81.64495662907825],[-53.779137791377906,81.6398908972686],[-53.80793807938079,81.58754500190224],[-53.804338043380426,81.56559349739376],[-53.79353793537935,81.55546203377446],[-53.68193681936819,81.52675622018646],[-53.61353613536134,81.51493617929728],[-53.473134731347315,81.50818187021775],[-53.55953559535595,81.52675622018646],[-53.649536495364956,81.53688768380576],[-53.649536495364956,81.54364199288528],[-53.48393483934839,81.55039630196481],[-53.46593465934659,81.56390492012389],[-53.49473494734947,81.57572496101307],[-53.51633516335163,81.59936504279142],[-53.552335523355225,81.65339951542765],[-53.54153541535415,81.67197386539638],[-53.51993519935199,81.68041675174578],[-53.46593465934659,81.68885963809518],[-53.271532715327155,81.76315703797005],[-53.08073080730807,81.7969285833677],[-53.048330483304824,81.81043720152675],[-53.01593015930159,81.8256343969557],[-52.94752947529474,81.85265163327381],[-52.92952929529295,81.86447167416298],[-52.92952929529295,81.88980033321124],[-52.92952929529295,81.90668610591007],[-52.936729367293665,81.92526045587877],[-52.94392943929439,81.94045765130772],[-52.95472954729547,81.95734342400655],[-52.96552965529655,81.9708520421656],[-53.00513005130051,81.99111496940421],[-53.023130231302304,82.00800074210304],[-53.01593015930159,82.02150936026209],[-52.99072990729907,82.03164082388139],[-52.96552965529655,82.03670655569104],[-52.92592925929259,82.04008371023079],[-52.7711277112771,82.03332940115126],[-52.709927099270985,82.01982078299221],[-52.5191251912519,82.00968931937291],[-52.38952389523895,81.9809835057849],[-52.18072180721806,81.97760635124513],[-52.12312123121231,81.9607205785463],[-52.11232112321123,81.95565484673665],[-52.05112051120511,81.9421462285776],[-51.71991719917199,81.9235718786089],[-51.3851138511385,81.9049975286402],[-51.089910899108986,81.85434021054371],[-50.79110791107911,81.80368289244723],[-50.737107371073705,81.78173138793875],[-50.28710287102871,81.72431976076274],[-50.23670236702367,81.70912256533379],[-50.22230222302224,81.70067967898439],[-50.218702187021876,81.69223679263496],[-50.218702187021876,81.6685967108566],[-50.218702187021876,81.66015382450718],[-50.20430204302042,81.648333783618],[-50.18270182701826,81.64326805180835],[-49.919899198992,81.6111850836806],[-49.613896138961394,81.64664520634813],[-49.83709837098371,81.65508809269755],[-49.873098730987294,81.66184240177708],[-49.898298982989814,81.677039597206],[-49.898298982989814,81.68210532901566],[-49.898298982989814,81.68885963809518],[-49.898298982989814,81.69899110171448],[-49.90189901899018,81.70743398806391],[-49.91269912699127,81.71418829714344],[-49.9270992709927,81.71925402895309],[-50.218702187021876,81.75471415162062],[-50.510305103051024,81.79017427428815],[-50.64350643506435,81.83070012876533],[-50.64350643506435,81.83745443784488],[-50.6219062190622,81.84420874692441],[-50.64710647106472,81.85771736508346],[-50.67590675906757,81.86109451962324],[-50.737107371073705,81.85940594235333],[-50.89190891908919,81.87798029232206],[-51.064710647106466,81.9337033422282],[-51.03591035910358,81.95565484673665],[-50.63270632706326,81.92863761041855],[-50.233102331023304,81.89993179683054],[-49.82989829898298,81.87122598324254],[-49.757897578975786,81.88304602413172],[-49.64989649896498,81.88473460140159],[-49.4770947709477,81.92694903314865],[-49.43749437494375,81.92694903314865],[-49.46629466294664,81.94721196038725],[-49.83709837098371,82.01644362845244],[-50.20790207902078,82.08567529651762],[-50.58230582305822,82.15321838731293],[-50.72990729907298,82.21063001448894],[-50.75870758707586,82.2359586735372],[-50.79110791107911,82.29674745525296],[-50.80550805508054,82.31025607341203],[-50.812708127081265,82.34233904153979],[-50.84870848708488,82.36597912331817],[-51.05031050310504,82.4385879459231],[-51.0611106111061,82.44534225500266],[-51.05751057510574,82.45547371862193],[-51.0611106111061,82.47573664586054],[-51.08271082710826,82.47911380040028],[-51.104311043110414,82.48586810947984],[-51.122311223112234,82.49599957309911],[-51.10791107911078,82.50950819125819],[-50.686706867068665,82.49937672763889],[-50.269102691026916,82.48755668674971],[-49.85149851498514,82.47742522313041],[-49.430294302943025,82.46560518224123],[-49.012690126901276,82.45378514135206],[-48.91548915489153,82.43183363684358],[-48.785887858878596,82.3727334323977],[-48.735487354873555,82.35753623696874],[-48.36108361083609,82.31701038249156],[-47.98667986679865,82.2747959507445],[-47.612276122761216,82.23258151899742],[-47.56547565475654,82.21569574629859],[-47.57267572675727,82.21569574629859],[-47.55827558275581,82.20894143721907],[-47.579875798757996,82.19374424179011],[-47.605076050760516,82.18023562363106],[-47.56547565475654,82.16841558274189],[-47.23067230672305,82.17010416001176],[-46.823868238682394,82.1262011509948],[-46.41706417064171,82.08060956470797],[-46.00666006660066,82.03670655569104],[-45.96705967059671,82.01644362845244],[-46.01026010260102,81.99618070121386],[-45.99585995859957,81.98436066032465],[-45.98145981459814,81.97760635124513],[-45.96345963459635,81.97591777397525],[-45.94905949059489,81.97591777397525],[-45.97065970659705,81.9624091558162],[-46.02466024660245,81.9607205785463],[-46.04986049860497,81.95396626946678],[-46.028260282602815,81.94721196038725],[-45.927459274592735,81.94721196038725],[-45.66465664656647,81.90668610591007],[-45.39825398253981,81.86784882870276],[-45.38025380253802,81.85940594235333],[-45.340653406534074,81.8340772833051],[-45.32625326253262,81.83070012876533],[-45.30465304653046,81.82901155149546],[-45.25065250652506,81.81888008787615],[-45.17145171451713,81.79186285155805],[-45.157051570515705,81.79017427428815],[-44.78264782647827,81.7766656561291],[-44.703447034470344,81.7580913061604],[-44.66384663846637,81.75471415162062],[-44.63144631446315,81.76315703797005],[-44.67824678246782,81.7766656561291],[-44.6530465304653,81.7851085424785],[-44.30384303843039,81.8138143560665],[-44.25704257042571,81.83745443784488],[-44.228242282422826,81.83914301511476],[-44.17424174241742,81.83745443784488],[-44.23184231842319,81.84589732419428],[-44.35424354243543,81.84589732419428],[-44.41184411844117,81.85940594235333],[-44.39744397443974,81.86447167416298],[-44.37584375843758,81.86616025143289],[-44.336243362433606,81.86447167416298],[-44.35784357843579,81.86953740597264],[-44.4010440104401,81.87291456051241],[-44.419044190441895,81.87966886959194],[-44.393843938439375,81.88473460140159],[-44.38304383043831,81.88473460140159],[-44.44064440644405,81.89486606502089],[-44.55584555845559,81.88811175594137],[-44.60984609846099,81.89993179683054],[-44.5990459904599,81.90330895137029],[-44.570245702457015,81.90837468317994],[-44.55584555845559,81.9134404149896],[-44.5990459904599,81.9235718786089],[-44.68544685446855,81.92863761041855],[-44.728647286472864,81.94045765130772],[-44.69264692646925,81.94721196038725],[-44.519845198451975,81.93708049676795],[-44.50184501845018,81.94045765130772],[-44.49104491044909,81.94552338311738],[-44.4730447304473,81.9624091558162],[-44.46224462244621,81.96747488762583],[-44.51264512645125,81.98267208305478],[-44.88344883448835,81.97929492851503],[-44.92664926649266,81.99618070121386],[-44.905049050490504,82.00293501029338],[-44.91224912249123,82.01475505118256],[-44.930249302493024,82.03332940115126],[-44.94104941049409,82.04346086477057],[-44.728647286472864,82.04683801931031],[-44.39744397443974,82.10593822375623],[-44.50544505445055,82.1076268010261],[-44.56664566645665,82.1177582646454],[-44.64944649446494,82.15321838731293],[-44.78264782647827,82.18192420090094],[-44.79344793447933,82.19205566452024],[-44.78624786247863,82.20387570540942],[-44.703447034470344,82.25791017804568],[-44.56304563045629,82.2933703007132],[-44.23184231842319,82.32038753703134],[-43.94743947439474,82.30012460979273],[-43.65943659436593,82.27986168255413],[-43.60903609036089,82.26804164166495],[-43.18063180631805,82.26128733258543],[-42.74862748627487,82.2545330235059],[-42.71262712627126,82.24102440534685],[-42.71262712627126,82.24946729169625],[-42.709027090270894,82.2444015598866],[-42.68022680226801,82.2359586735372],[-42.68742687426874,82.23089294172755],[-42.6910269102691,82.2258272099179],[-42.694626946269466,82.22076147810824],[-42.69822698226983,82.21569574629859],[-42.30222302223021,82.21569574629859],[-42.33102331023309,82.23258151899742],[-42.701827018270166,82.2646644871252],[-43.07623076230763,82.29674745525296],[-43.17703177031771,82.27817310528425],[-43.23463234632345,82.27817310528425],[-43.53703537035369,82.31025607341203],[-43.83583835838357,82.34233904153979],[-43.86463864638645,82.35415908242899],[-43.88623886238861,82.3727334323977],[-43.850238502385025,82.38961920509652],[-43.76743767437674,82.39806209144592],[-43.72783727837279,82.40650497779535],[-43.76383763837637,82.41832501868453],[-43.933039330393285,82.43352221411345],[-44.01944019440194,82.45209656408218],[-44.19584195841958,82.46391660497136],[-44.267842678426774,82.48249095494006],[-44.30744307443075,82.48755668674971],[-44.37944379443795,82.48924526401959],[-44.393843938439375,82.48924526401959],[-44.43344433444335,82.49431099582924],[-44.44064440644405,82.49768815036902],[-44.444244442444415,82.50275388217867],[-44.44784447844478,82.50781961398832],[-44.45144451444514,82.50950819125819],[-44.494644946449455,82.51457392306784],[-44.54144541445413,82.52470538668712],[-44.55584555845559,82.53314827303655],[-44.57744577445774,82.55341120027515],[-44.59184591845917,82.56185408662455],[-44.703447034470344,82.58042843659325],[-44.78984789847897,82.58380559113303],[-44.81144811448115,82.58718274567278],[-44.854648546485464,82.60237994110173],[-44.87624876248762,82.60575709564151],[-44.91944919449193,82.60575709564151],[-45.00945009450095,82.61926571380056],[-45.09945099450994,82.64966010465844],[-45.29385293852937,82.67836591824647],[-45.383853838538386,82.68174307278622],[-45.661056610566106,82.72564608180318],[-45.743857438574395,82.75435189539118],[-45.769057690576915,82.76954909082014],[-45.74745747457473,82.77630339989966],[-45.473854738547374,82.77968055443941],[-45.20025200252002,82.78305770897919],[-45.09585095850957,82.79825490440814],[-45.01305013050131,82.78474628624906],[-44.96264962649627,82.76954909082014],[-44.47664476644766,82.76617193628036],[-43.99063990639905,82.76448335901048],[-43.50463504635047,82.76279478174058],[-43.01863018630186,82.7611062044707],[-42.53262532625325,82.75772904993093],[-42.046620466204644,82.75604047266106],[-42.14382143821439,82.72733465907305],[-42.172621726217244,82.70876030910435],[-41.89901899018989,82.67161160916692],[-41.85941859418594,82.66148014554764],[-41.830618306183055,82.64121721830904],[-41.80181801818017,82.61251140472103],[-41.86661866618667,82.57367412751373],[-41.87381873818737,82.55509977754502],[-41.83421834218342,82.53652542757632],[-41.81261812618126,82.52977111849677],[-41.79461794617944,82.52301680941724],[-41.7370173701737,82.48924526401959],[-41.72261722617225,82.48417953220994],[-41.70821708217082,82.48249095494006],[-41.61461614616147,82.47911380040028],[-41.58941589415895,82.48924526401959],[-41.5570155701557,82.53314827303655],[-41.58581585815858,82.55341120027515],[-41.63981639816399,82.57029697297398],[-41.67221672216721,82.5854941684029],[-41.63621636216362,82.59900278656198],[-41.65061650616505,82.60575709564151],[-41.61461614616147,82.63615148649939],[-41.63261632616326,82.65303725919821],[-41.71901719017188,82.6749887637067],[-41.77661776617765,82.70538315456457],[-41.82341823418233,82.71044888637422],[-41.89901899018989,82.72902323634293],[-41.86661866618667,82.74759758631166],[-41.81981819818196,82.75266331812131],[-41.578615786157854,82.74759758631166],[-41.51021510215102,82.7324003908827],[-41.25821258212582,82.7121374636441],[-41.20781207812078,82.70031742275492],[-41.1790117901179,82.68005449551634],[-41.186211862118626,82.6749887637067],[-40.750607506075056,82.61757713653068],[-40.631806318063184,82.5753627047836],[-40.523805238052375,82.57367412751373]]],[[[-68.35568355683556,18.655958730643945],[-68.32688326883269,18.61712145343664],[-68.3340833408334,18.576595598959457],[-68.42768427684277,18.441509417368835],[-68.43488434884348,18.436443685559183],[-68.44208442084421,18.429689376479658],[-68.44568445684456,18.419557912860355],[-68.44208442084421,18.384097790192826],[-68.44568445684456,18.37565490384341],[-68.45648456484564,18.35708055387471],[-68.47088470884708,18.35032624479517],[-68.49248492484925,18.346949090255407],[-68.51768517685177,18.346949090255407],[-68.53568535685356,18.353703399334933],[-68.57528575285752,18.3773434811133],[-68.58968589685897,18.382409212922937],[-68.60408604086041,18.37227774930365],[-68.60408604086041,18.35539197660482],[-68.59688596885968,18.336817626636105],[-68.60768607686076,18.316554699397514],[-68.61848618486185,18.301357503968575],[-68.62568625686256,18.28278315399986],[-68.640086400864,18.22537152682385],[-68.64728647286472,18.21524006320456],[-68.6580865808658,18.21017433139491],[-68.74448744487445,18.20510859958526],[-68.75888758887588,18.21017433139491],[-68.76248762487624,18.24732303133233],[-68.78768787687876,18.29460319488905],[-68.82008820088201,18.341883358445756],[-68.84888848888488,18.37565490384341],[-68.88128881288813,18.395917831082002],[-68.92088920889209,18.41280360378083],[-68.9640896408964,18.41786933559048],[-69.01089010890108,18.399294985621765],[-69.08649086490864,18.395917831082002],[-69.10449104491045,18.399294985621765],[-69.14769147691476,18.41280360378083],[-69.16929169291693,18.416180758320593],[-69.18369183691837,18.421246490130244],[-69.21249212492124,18.444886571908597],[-69.23769237692376,18.44995230371825],[-69.25569255692557,18.446575149178486],[-69.27369273692736,18.43982084009896],[-69.29529295292953,18.43982084009896],[-69.31689316893168,18.44995230371825],[-69.33489334893349,18.431377953749546],[-69.46449464494644,18.422935067400132],[-69.5040950409504,18.409426449241067],[-69.52569525695256,18.40773787197118],[-69.57969579695796,18.444886571908597],[-69.60129601296012,18.4550180355279],[-69.61569615696156,18.456706612797788],[-69.62289622896229,18.448263726448374],[-69.62289622896229,18.436443685559183],[-69.61929619296193,18.426312221939895],[-69.62289622896229,18.416180758320593],[-69.63369633696337,18.41280360378083],[-69.64809648096481,18.41280360378083],[-69.65889658896589,18.416180758320593],[-69.6660966609666,18.419557912860355],[-69.68049680496804,18.446575149178486],[-69.69129691296912,18.45332945825801],[-69.69849698496985,18.456706612797788],[-69.84969849698497,18.471903808226728],[-69.87849878498784,18.471903808226728],[-69.8820988209882,18.47021523095684],[-69.90009900099001,18.466838076417076],[-69.93249932499324,18.451640880988137],[-69.95769957699576,18.43475510828931],[-69.96849968499684,18.431377953749546],[-69.99369993699936,18.422935067400132],[-70.00450004500044,18.41786933559048],[-70.01530015300153,18.411115026510956],[-70.04050040500405,18.39254067654224],[-70.05490054900548,18.367212017493998],[-70.06210062100621,18.336817626636105],[-70.06930069300692,18.32837474028669],[-70.09090090900908,18.318243276667403],[-70.09450094500944,18.30980039031799],[-70.10170101701017,18.299668926698686],[-70.1341013410134,18.269274535840808],[-70.15930159301593,18.242257299522677],[-70.170101701017,18.23212583590339],[-70.17730177301773,18.233814413173263],[-70.20250202502025,18.233814413173263],[-70.22050220502204,18.2304372586335],[-70.23490234902349,18.223682949553975],[-70.24930249302493,18.233814413173263],[-70.27090270902708,18.238880144982915],[-70.39690396903968,18.237191567713026],[-70.41850418504184,18.2304372586335],[-70.46170461704617,18.20848575412502],[-70.48330483304832,18.20342002231537],[-70.55170551705517,18.20342002231537],[-70.56970569705696,18.21017433139491],[-70.56970569705696,18.218617217744324],[-70.56250562505625,18.22537152682385],[-70.55530555305553,18.23212583590339],[-70.5481054810548,18.237191567713026],[-70.55170551705517,18.249011608602217],[-70.55890558905588,18.254077340411854],[-70.56610566105661,18.257454494951617],[-70.57330573305732,18.26758595857092],[-70.59130591305913,18.279405999460096],[-70.59850598505984,18.289537463079398],[-70.59490594905948,18.299668926698686],[-70.58770587705877,18.303046081238463],[-70.58050580505805,18.306423235778226],[-70.57690576905769,18.31317754485775],[-70.57330573305732,18.333440472096342],[-70.56970569705696,18.35539197660482],[-70.57330573305732,18.373966326573523],[-70.58050580505805,18.385786367462714],[-70.60210602106021,18.411115026510956],[-70.61290612906129,18.421246490130244],[-70.6381063810638,18.429689376479658],[-70.65610656106561,18.43306653101942],[-70.68130681306813,18.436443685559183],[-70.70290702907029,18.429689376479658],[-70.71370713707137,18.41280360378083],[-70.710107101071,18.39254067654224],[-70.71370713707137,18.384097790192826],[-70.74250742507425,18.35539197660482],[-70.74970749707497,18.35032624479517],[-70.76050760507604,18.346949090255407],[-70.77130771307712,18.348637667525296],[-70.79290792907929,18.353703399334933],[-70.80370803708037,18.35539197660482],[-70.81090810908108,18.35201482206506],[-70.82530825308253,18.341883358445756],[-70.83250832508325,18.34019478117588],[-70.84690846908468,18.341883358445756],[-70.85050850508505,18.34019478117588],[-70.86130861308612,18.33006331755658],[-70.86130861308612,18.326686163016817],[-70.86850868508685,18.31486612212764],[-70.8721087210872,18.30980039031799],[-70.8721087210872,18.306423235778226],[-70.88650886508864,18.301357503968575],[-70.89010890108901,18.299668926698686],[-70.91890918909189,18.269274535840808],[-70.93330933309333,18.260831649491394],[-70.95490954909549,18.259143072221505],[-70.96570965709657,18.262520226761268],[-70.97290972909728,18.27096311311068],[-70.97650976509765,18.281094576729984],[-70.98370983709837,18.289537463079398],[-70.99450994509945,18.296291772158924],[-71.00531005310053,18.301357503968575],[-71.04851048510484,18.30980039031799],[-71.07011070110701,18.30980039031799],[-71.08451084510845,18.304734658508337],[-71.09171091710917,18.289537463079398],[-71.09171091710917,18.281094576729984],[-71.10251102511025,18.26589738130103],[-71.10251102511025,18.255765917681742],[-71.10251102511025,18.242257299522677],[-71.09531095310953,18.235502990443152],[-71.09171091710917,18.228748681363612],[-71.08451084510845,18.216928640474435],[-71.06651066510665,18.16289416783819],[-71.06291062910628,18.154451281488775],[-71.05931059310593,18.1426312405996],[-71.08091080910809,18.113925427011594],[-71.09891098910988,18.073399572534413],[-71.19251192511925,17.941690545483553],[-71.19971199711996,17.919739040975088],[-71.20331203312033,17.911296154625674],[-71.2141121411214,17.904541845546134],[-71.23211232112321,17.894410381926846],[-71.24651246512465,17.884278918307544],[-71.25371253712537,17.87583603195813],[-71.26091260912608,17.864015991068953],[-71.26811268112681,17.847130218370125],[-71.27531275312752,17.848818795640014],[-71.27891278912789,17.850507372909888],[-71.28251282512825,17.853884527449665],[-71.28251282512825,17.847130218370125],[-71.2861128611286,17.843753063830363],[-71.28971289712896,17.8403759092906],[-71.28251282512825,17.8403759092906],[-71.2861128611286,17.831933022941186],[-71.28971289712896,17.826867291131535],[-71.29691296912969,17.821801559321884],[-71.3041130411304,17.82011298205201],[-71.30771307713077,17.816735827512233],[-71.31491314913148,17.796472900273642],[-71.31851318513185,17.789718591194116],[-71.33291332913329,17.77283281849529],[-71.36531365313652,17.67827249138186],[-71.3761137611376,17.659698141413145],[-71.41571415714157,17.603975091507024],[-71.42651426514264,17.60904082331666],[-71.43731437314372,17.617483709666075],[-71.43731437314372,17.620860864205852],[-71.44451444514445,17.629303750555266],[-71.51651516515165,17.73737269582776],[-71.53091530915309,17.754258468526572],[-71.56691566915669,17.767767086685637],[-71.64611646116461,17.75763562306635],[-71.67851678516784,17.766078509415763],[-71.67131671316713,17.77283281849529],[-71.63891638916388,17.80322720935318],[-71.63171631716317,17.816735827512233],[-71.63171631716317,17.83868733202071],[-71.63531635316353,17.853884527449665],[-71.65331653316532,17.88259034103767],[-71.6641166411664,17.89778753646661],[-71.6641166411664,17.90285326827626],[-71.6641166411664,17.914673309165437],[-71.66051660516605,17.953510586372744],[-71.66771667716677,17.97039635907157],[-71.68211682116821,17.990659286310162],[-71.72171721717217,18.019365099898167],[-71.77571775717757,18.039628027136757],[-71.79371793717937,18.049759490756045],[-71.86211862118621,18.135876931520073],[-71.89451894518945,18.16289416783819],[-71.9269192691927,18.18315709507678],[-72.0061200612006,18.21017433139491],[-72.03852038520385,18.22537152682385],[-72.07092070920709,18.237191567713026],[-72.11052110521105,18.237191567713026],[-72.18972189721897,18.22537152682385],[-72.2941229412294,18.22537152682385],[-72.44172441724417,18.223682949553975],[-72.51732517325173,18.21017433139491],[-72.53892538925389,18.2203057950142],[-72.54972549725497,18.22537152682385],[-72.55692556925568,18.2203057950142],[-72.54972549725497,18.18315709507678],[-72.56052560525605,18.17302563145749],[-72.57132571325712,18.17302563145749],[-72.59652596525964,18.18315709507678],[-72.61452614526145,18.18484567234667],[-72.72972729727297,18.174714208727366],[-72.7549275492755,18.176402785997254],[-72.75132751327513,18.171337054187603],[-72.75132751327513,18.159517013298426],[-72.74772747727476,18.156139858758664],[-72.7621276212762,18.156139858758664],[-72.76932769327694,18.157828436028538],[-72.77652776527765,18.16289416783819],[-72.80532805328053,18.14600839513936],[-72.85932859328592,18.151074126949013],[-72.88452884528844,18.14094266332971],[-72.91332913329133,18.156139858758664],[-72.94572945729458,18.16964847691773],[-72.98532985329852,18.178091363267143],[-73.08973089730897,18.18991140415632],[-73.11853118531185,18.18822282688643],[-73.12573125731257,18.18991140415632],[-73.15453154531545,18.206797176855147],[-73.16173161731616,18.21017433139491],[-73.29493294932949,18.2304372586335],[-73.35613356133561,18.22537152682385],[-73.36333363333632,18.227060104093738],[-73.35973359733597,18.240568722252803],[-73.34533345333453,18.24563445406244],[-73.30933309333093,18.24563445406244],[-73.30933309333093,18.25070018587209],[-73.37773377733777,18.257454494951617],[-73.45693456934569,18.257454494951617],[-73.48213482134821,18.25070018587209],[-73.51453514535145,18.233814413173263],[-73.52533525335252,18.2304372586335],[-73.53253532535325,18.235502990443152],[-73.54333543335433,18.25238876314198],[-73.55053550535504,18.259143072221505],[-73.56493564935649,18.25070018587209],[-73.57213572135721,18.23212583590339],[-73.57933579335793,18.216928640474435],[-73.590135901359,18.223682949553975],[-73.59733597335973,18.223682949553975],[-73.60813608136081,18.216928640474435],[-73.61893618936189,18.221994372284087],[-73.62253622536225,18.235502990443152],[-73.61893618936189,18.25070018587209],[-73.63333633336333,18.24732303133233],[-73.64413644136441,18.2203057950142],[-73.65853658536585,18.21017433139491],[-73.65853658536585,18.223682949553975],[-73.65493654936549,18.235502990443152],[-73.64773647736477,18.259143072221505],[-73.65493654936549,18.25238876314198],[-73.66573665736657,18.238880144982915],[-73.6729367293673,18.2304372586335],[-73.6729367293673,18.233814413173263],[-73.68013680136801,18.235502990443152],[-73.69093690936909,18.237191567713026],[-73.69453694536945,18.235502990443152],[-73.69453694536945,18.23212583590339],[-73.69453694536945,18.227060104093738],[-73.69453694536945,18.223682949553975],[-73.73773737737378,18.18991140415632],[-73.80973809738097,18.159517013298426],[-73.82773827738276,18.1426312405996],[-73.84573845738457,18.113925427011594],[-73.80253802538024,18.071710995264525],[-73.79533795337953,18.056513799835585],[-73.79173791737917,18.036250872596995],[-73.79533795337953,18.029496563517455],[-73.80613806138061,18.026119408977692],[-73.87453874538745,18.026119408977692],[-73.88173881738817,18.02780798624758],[-73.89253892538925,18.032873718057218],[-73.89973899738997,18.039628027136757],[-73.90333903339032,18.053136645295822],[-73.9681396813968,18.14094266332971],[-73.97173971739717,18.144319817869487],[-73.97893978939788,18.14769697240925],[-73.98253982539825,18.149385549679124],[-73.98613986139861,18.1527627042189],[-73.98613986139861,18.156139858758664],[-73.98613986139861,18.159517013298426],[-73.98973989739898,18.16289416783819],[-74.00774007740077,18.179779940537017],[-74.10494104941048,18.24732303133233],[-74.12294122941229,18.255765917681742],[-74.15174151741518,18.260831649491394],[-74.16614166141662,18.26589738130103],[-74.1769417694177,18.27265169038057],[-74.18054180541804,18.28278315399986],[-74.18414184141841,18.29291461761916],[-74.18774187741877,18.296291772158924],[-74.19854198541985,18.296291772158924],[-74.20934209342093,18.299668926698686],[-74.23454234542345,18.30980039031799],[-74.24174241742418,18.31317754485775],[-74.24894248942489,18.306423235778226],[-74.2669426694267,18.31317754485775],[-74.28854288542885,18.304734658508337],[-74.31014310143101,18.29291461761916],[-74.33174331743317,18.286160308539635],[-74.34974349743497,18.289537463079398],[-74.37134371343713,18.297980349428812],[-74.39294392943928,18.3081118130481],[-74.40014400144001,18.316554699397514],[-74.40734407344073,18.32837474028669],[-74.44694446944469,18.346949090255407],[-74.45414454144542,18.36552344022411],[-74.45774457744577,18.384097790192826],[-74.4649446494465,18.39760640835189],[-74.49014490144901,18.429689376479658],[-74.45414454144542,18.47696954003638],[-74.45774457744577,18.482035271846016],[-74.46134461344613,18.492166735465318],[-74.44334443344432,18.503986776354495],[-74.43254432544325,18.549578362641327],[-74.4181441814418,18.55970982626063],[-74.41454414544145,18.56477555807028],[-74.41454414544145,18.576595598959457],[-74.4181441814418,18.59010421711851],[-74.42534425344253,18.596858526198048],[-74.42534425344253,18.608678567087225],[-74.4181441814418,18.61712145343664],[-74.38574385743857,18.635695803405355],[-74.3389433894339,18.65258157610417],[-74.32094320943209,18.655958730643945],[-74.29934299342993,18.650892998834294],[-74.28854288542885,18.650892998834294],[-74.28494284942849,18.659335885183708],[-74.27774277742778,18.666090194263234],[-74.2669426694267,18.669467348802996],[-74.2561425614256,18.671155926072885],[-74.19854198541985,18.667778771533122],[-74.15894158941589,18.659335885183708],[-74.02934029340292,18.603612835277573],[-73.97173971739717,18.6019242580077],[-73.9681396813968,18.60023568073781],[-73.96453964539646,18.593481371658285],[-73.96093960939609,18.59010421711851],[-73.96093960939609,18.583349908038983],[-73.95373953739536,18.583349908038983],[-73.94653946539465,18.586727062578746],[-73.93933939339394,18.588415639848634],[-73.91053910539105,18.573218444419695],[-73.89973899738997,18.568152712610043],[-73.85293852938528,18.566464135340155],[-73.8421384213842,18.56477555807028],[-73.83133831338313,18.55970982626063],[-73.80973809738097,18.5428240535618],[-73.80253802538024,18.53944689902204],[-73.79173791737917,18.53775832175215],[-73.78813788137882,18.541135476291913],[-73.78453784537845,18.544512630831676],[-73.78093780937809,18.546201208101564],[-73.77013770137701,18.544512630831676],[-73.75573755737557,18.53944689902204],[-73.74853748537485,18.53944689902204],[-73.74133741337413,18.541135476291913],[-73.73053730537305,18.551266939911216],[-73.72333723337233,18.55295551718109],[-73.72333723337233,18.55464409445098],[-73.71253712537126,18.569841289879918],[-73.70533705337053,18.573218444419695],[-73.69813698136981,18.573218444419695],[-73.68733687336874,18.573218444419695],[-73.68013680136801,18.573218444419695],[-73.63333633336333,18.586727062578746],[-73.62253622536225,18.588415639848634],[-73.58653586535866,18.57997275349922],[-73.58653586535866,18.561398403530504],[-73.60453604536045,18.549578362641327],[-73.63333633336333,18.55295551718109],[-73.63333633336333,18.546201208101564],[-73.65493654936549,18.55295551718109],[-73.6729367293673,18.556332671720867],[-73.69453694536945,18.55464409445098],[-73.7161371613716,18.546201208101564],[-73.70893708937089,18.5428240535618],[-73.69093690936909,18.534381167212388],[-73.67653676536764,18.531004012672625],[-73.6729367293673,18.524249703593085],[-73.6729367293673,18.51749539451356],[-73.66933669336693,18.509052508164146],[-73.65133651336512,18.500609621814732],[-73.61893618936189,18.505675353624383],[-73.60453604536045,18.498921044544844],[-73.56853568535685,18.51918397178345],[-73.52533525335252,18.524249703593085],[-73.36693366933669,18.51242966270391],[-73.34893348933488,18.507363930894257],[-73.30933309333093,18.488789580925555],[-73.28773287732876,18.483723849115904],[-73.20493204932049,18.487101003655667],[-73.16533165331653,18.483723849115904],[-73.1329313293133,18.47021523095684],[-73.11493114931149,18.46008376733755],[-73.0969309693097,18.4550180355279],[-73.08253082530825,18.45332945825801],[-73.05733057330573,18.458395190067662],[-72.98532985329852,18.47021523095684],[-72.89892898928989,18.44995230371825],[-72.90252902529025,18.43475510828931],[-72.88452884528844,18.438132262829072],[-72.85932859328592,18.446575149178486],[-72.84132841328413,18.446575149178486],[-72.82692826928269,18.441509417368835],[-72.7549275492755,18.429689376479658],[-72.71532715327153,18.438132262829072],[-72.69012690126901,18.46008376733755],[-72.66852668526685,18.49047815819543],[-72.65412654126541,18.525938280862974],[-72.62892628926289,18.55464409445098],[-72.59652596525964,18.561398403530504],[-72.43092430924308,18.546201208101564],[-72.42372423724237,18.549578362641327],[-72.420124201242,18.55295551718109],[-72.420124201242,18.55802124899074],[-72.41652416524165,18.55970982626063],[-72.40932409324093,18.55970982626063],[-72.40572405724056,18.556332671720867],[-72.40572405724056,18.55464409445098],[-72.40212402124021,18.55295551718109],[-72.38052380523804,18.531004012672625],[-72.36972369723696,18.525938280862974],[-72.35532355323552,18.529315435402737],[-72.34452344523444,18.546201208101564],[-72.34452344523444,18.569841289879918],[-72.34452344523444,18.630630071595704],[-72.34452344523444,18.64245011248488],[-72.33732337323373,18.655958730643945],[-72.330123301233,18.66440161699336],[-72.32652326523265,18.671155926072885],[-72.330123301233,18.68297596696206],[-72.3409234092341,18.6897302760416],[-72.3841238412384,18.70999320328019],[-72.39852398523985,18.713370357819954],[-72.420124201242,18.713370357819954],[-72.43452434524345,18.716747512359717],[-72.45252452524525,18.733633285058545],[-72.47052470524704,18.753896212297136],[-72.49212492124921,18.769093407726075],[-72.51372513725137,18.765716253186312],[-72.54972549725497,18.785979180424903],[-72.55692556925568,18.794422066774317],[-72.56772567725677,18.812996416743033],[-72.61812618126181,18.88898239388776],[-72.63252632526324,18.90249101204681],[-72.65052650526505,18.919376784745637],[-72.6721267212672,18.931196825634814],[-72.69012690126901,18.936262557444465],[-72.7081270812708,18.94470544379388],[-72.81252812528125,19.05277438906637],[-72.81972819728198,19.078103048114613],[-72.77652776527765,19.09498882081344],[-72.73692736927369,19.09667739808333],[-72.71532715327153,19.103431707162855],[-72.7081270812708,19.118628902591794],[-72.71172711727117,19.13720325256051],[-72.72612726127261,19.1473347161798],[-72.74412744127441,19.15408902525934],[-72.7621276212762,19.162531911608752],[-72.77292772927728,19.176040529767818],[-72.7981279812798,19.216566384245],[-72.80172801728017,19.231763579673938],[-72.7981279812798,19.23682931148359],[-72.79452794527946,19.238517888753478],[-72.7981279812798,19.240206466023352],[-72.79452794527946,19.245272197833003],[-72.78732787327873,19.253715084182417],[-72.77652776527765,19.27735516596077],[-72.76932769327694,19.285798052310184],[-72.75852758527584,19.290863784119836],[-72.74052740527405,19.2942409386596],[-72.72612726127261,19.295929515929487],[-72.71532715327153,19.2942409386596],[-72.72972729727297,19.31956959770784],[-72.73692736927369,19.326323906787366],[-72.75852758527584,19.328012484057254],[-72.76932769327694,19.336455370406668],[-72.77292772927728,19.355029720375384],[-72.77292772927728,19.37698122488385],[-72.76932769327694,19.388801265773026],[-72.7621276212762,19.3820469566935],[-72.7549275492755,19.37698122488385],[-72.74412744127441,19.375292647613975],[-72.73332733327332,19.375292647613975],[-72.72252722527224,19.38373553396339],[-72.72252722527224,19.390489843042914],[-72.72612726127261,19.398932729392328],[-72.72972729727297,19.42257281117068],[-72.72972729727297,19.425949965710444],[-72.71532715327153,19.42257281117068],[-72.7081270812708,19.420884233900807],[-72.70092700927009,19.414129924821268],[-72.69372693726937,19.40906419301163],[-72.67932679326793,19.40906419301163],[-72.69732697326972,19.44621289294905],[-72.7081270812708,19.451278624758686],[-72.7621276212762,19.454655779298463],[-72.77292772927728,19.463098665647877],[-72.78372783727836,19.476607283806928],[-72.79452794527946,19.49180447923588],[-72.81612816128161,19.505313097394932],[-72.87732877328773,19.532330333713062],[-72.93132931329313,19.562724724570955],[-72.94932949329493,19.567790456380592],[-72.96732967329673,19.574544765460132],[-73.00333003330033,19.603250579048137],[-73.01053010530104,19.60493915631801],[-73.01773017730177,19.601562001778248],[-73.08253082530825,19.62182492901684],[-73.08973089730897,19.623513506286727],[-73.11133111331112,19.62857923809638],[-73.12213122131222,19.62857923809638],[-73.12573125731257,19.62689066082649],[-73.1329313293133,19.62182492901684],[-73.14013140131401,19.6167591972072],[-73.14733147331474,19.615070619937313],[-73.16533165331653,19.618447774477076],[-73.18693186931868,19.62689066082649],[-73.20853208532085,19.638710701715667],[-73.21933219332193,19.64884216533497],[-73.24093240932409,19.630267815366253],[-73.28413284132841,19.625202083556616],[-73.38133381333813,19.630267815366253],[-73.39933399333992,19.635333547175904],[-73.41013410134101,19.635333547175904],[-73.41733417334173,19.640399278985555],[-73.43533435334353,19.658973628954257],[-73.44253442534425,19.66403936076391],[-73.45693456934569,19.672482247113322],[-73.4641346413464,19.692745174351913],[-73.4641346413464,19.713008101590503],[-73.46773467734677,19.724828142479694],[-73.43173431734317,19.77886261511594],[-73.4281342813428,19.790682656005117],[-73.41733417334173,19.790682656005117],[-73.36333363333632,19.81432273778347],[-73.36333363333632,19.821077046862996],[-73.4209342093421,19.821077046862996],[-73.40293402934029,19.832897087752187],[-73.3849338493385,19.83458566502206],[-73.36333363333632,19.832897087752187],[-73.34533345333453,19.83458566502206],[-73.2229322293223,19.886931560388433],[-73.18693186931868,19.912260219436675],[-73.16533165331653,19.937588878484902],[-73.15453154531545,19.92408026032585],[-73.14373143731437,19.920703105786075],[-73.11493114931149,19.92408026032585],[-73.10053100531005,19.920703105786075],[-73.07533075330753,19.912260219436675],[-73.06093060930608,19.910571642166786],[-73.050130501305,19.910571642166786],[-73.04293042930429,19.912260219436675],[-73.02133021330214,19.917325951246312],[-73.0069300693007,19.9190145285162],[-72.99252992529925,19.917325951246312],[-72.97812978129781,19.912260219436675],[-72.96732967329673,19.902128755817373],[-72.960129601296,19.9190145285162],[-72.94212942129421,19.927457414865614],[-72.91692916929169,19.930834569405377],[-72.89892898928989,19.92408026032585],[-72.87372873728737,19.93421172394514],[-72.84132841328413,19.94096603302468],[-72.80532805328053,19.946031764834316],[-72.77652776527765,19.944343187564442],[-72.67572675726757,19.920703105786075],[-72.65052650526505,19.907194487627024],[-72.62892628926289,19.89706302400772],[-72.56772567725677,19.880177251308893],[-72.56412564125641,19.875111519499242],[-72.5461254612546,19.85147143772089],[-72.51732517325173,19.83458566502206],[-72.48852488524885,19.824454201402773],[-72.47412474124741,19.83458566502206],[-72.4561245612456,19.824454201402773],[-72.42732427324273,19.81432273778347],[-72.39852398523985,19.807568428703945],[-72.3841238412384,19.810945583243708],[-72.38052380523804,19.79405981054488],[-72.330123301233,19.75184537879781],[-72.330123301233,19.745091069718285],[-72.33372333723337,19.748468224258048],[-72.35172351723517,19.75184537879781],[-72.33732337323373,19.723139565209806],[-72.33372333723337,19.718073833400155],[-72.31572315723157,19.714696678860392],[-72.31212312123121,19.71638525613028],[-72.31572315723157,19.724828142479694],[-72.30132301323013,19.738336760638745],[-72.30492304923048,19.740025337908634],[-72.31212312123121,19.738336760638745],[-72.31572315723157,19.738336760638745],[-72.31572315723157,19.740025337908634],[-72.31212312123121,19.745091069718285],[-72.31212312123121,19.748468224258048],[-72.30852308523085,19.745091069718285],[-72.30852308523085,19.75184537879781],[-72.31212312123121,19.755222533337573],[-72.31572315723157,19.765353996956875],[-72.30852308523085,19.765353996956875],[-72.2941229412294,19.758599687877336],[-72.27612276122761,19.75691111060746],[-72.2581225812258,19.761976842417113],[-72.24732247322473,19.777174037846052],[-72.24012240122401,19.785616924195466],[-72.21852218522184,19.787305501465354],[-72.20412204122042,19.775485460576164],[-72.2149221492215,19.75184537879781],[-72.19692196921969,19.741713915178522],[-72.1789217892179,19.741713915178522],[-72.13932139321393,19.74677964698816],[-72.13572135721357,19.74677964698816],[-72.1321213212132,19.745091069718285],[-72.12492124921249,19.741713915178522],[-72.11052110521105,19.728205297019457],[-72.09972099720997,19.724828142479694],[-72.06732067320672,19.724828142479694],[-72.05652056520564,19.723139565209806],[-72.0529205292053,19.718073833400155],[-72.04932049320493,19.713008101590503],[-72.0421204212042,19.70963094705074],[-72.02772027720277,19.699499483431453],[-72.01692016920168,19.697810906161564],[-72.00972009720097,19.701188060701327],[-72.0061200612006,19.707942369780866],[-71.99891998919989,19.71638525613028],[-71.98811988119881,19.718073833400155],[-71.970119701197,19.73158245155922],[-71.94131941319412,19.73158245155922],[-71.89091890918908,19.718073833400155],[-71.86571865718656,19.714696678860392],[-71.85851858518585,19.70963094705074],[-71.86211862118621,19.697810906161564],[-71.87291872918729,19.692745174351913],[-71.88371883718837,19.69105659708204],[-71.91251912519125,19.69105659708204],[-71.90171901719017,19.672482247113322],[-71.88371883718837,19.670793669843448],[-71.86571865718656,19.675859401653085],[-71.85131851318513,19.677547978922973],[-71.83331833318333,19.66403936076391],[-71.82251822518225,19.657285051684383],[-71.81531815318152,19.660662206224146],[-71.81171811718117,19.67417082438321],[-71.81171811718117,19.680925133462736],[-71.83691836918369,19.685990865272387],[-71.8441184411844,19.692745174351913],[-71.84771847718477,19.701188060701327],[-71.8441184411844,19.71131952432063],[-71.83691836918369,19.718073833400155],[-71.82611826118261,19.71638525613028],[-71.8009180091801,19.71131952432063],[-71.75771757717577,19.70963094705074],[-71.73971739717396,19.706253792510978],[-71.72171721717217,19.697810906161564],[-71.72531725317253,19.71638525613028],[-71.74331743317433,19.755222533337573],[-71.73971739717396,19.765353996956875],[-71.73971739717396,19.77379688330629],[-71.76851768517685,19.77379688330629],[-71.77211772117721,19.785616924195466],[-71.76131761317613,19.800814119624405],[-71.74331743317433,19.817699892323233],[-71.73971739717396,19.821077046862996],[-71.73611736117361,19.821077046862996],[-71.72531725317253,19.821077046862996],[-71.7181171811718,19.824454201402773],[-71.70731707317073,19.83627424229195],[-71.70011700117001,19.8413399741016],[-71.68931689316892,19.846405705911238],[-71.67851678516784,19.848094283181126],[-71.67131671316713,19.85147143772089],[-71.66051660516605,19.86160290134019],[-71.6641166411664,19.875111519499242],[-71.66771667716677,19.885242983118545],[-71.66051660516605,19.89368586946796],[-71.64971649716497,19.89706302400772],[-71.64251642516425,19.895374446737847],[-71.6281162811628,19.890308714928196],[-71.62091620916209,19.888620137658307],[-71.61731617316173,19.89199729219807],[-71.61011610116101,19.900440178547484],[-71.60651606516065,19.902128755817373],[-71.50571505715057,19.910571642166786],[-71.47691476914768,19.907194487627024],[-71.45171451714516,19.89875160127761],[-71.35811358113581,19.85147143772089],[-71.32931329313293,19.846405705911238],[-71.3041130411304,19.85653716953054],[-71.28251282512825,19.8413399741016],[-71.26811268112681,19.83627424229195],[-71.22491224912248,19.83458566502206],[-71.21051210512104,19.83627424229195],[-71.21051210512104,19.844717128641364],[-71.21051210512104,19.85484859226065],[-71.20331203312033,19.864980055879954],[-71.19251192511925,19.870045787689605],[-71.18171181711817,19.859914324070303],[-71.17091170911709,19.83458566502206],[-71.16371163711636,19.837962819561824],[-71.160111601116,19.843028551371475],[-71.15291152911529,19.849782860451015],[-71.15291152911529,19.85653716953054],[-71.160111601116,19.85822574680043],[-71.16371163711636,19.859914324070303],[-71.16371163711636,19.86160290134019],[-71.16371163711636,19.868357210419717],[-71.14931149311492,19.863291478610066],[-71.1349113491135,19.863291478610066],[-71.1241112411124,19.86666863314983],[-71.10611106111061,19.868357210419717],[-71.09531095310953,19.87680009676913],[-71.07731077310773,19.908883064896898],[-71.06651066510665,19.917325951246312],[-71.0521105211052,19.920703105786075],[-71.01971019710197,19.935900301215028],[-71.00171001710017,19.937588878484902],[-70.98370983709837,19.93421172394514],[-70.96930969309693,19.925768837595726],[-70.9621096210962,19.912260219436675],[-70.96570965709657,19.89706302400772],[-70.94770947709476,19.888620137658307],[-70.94050940509405,19.888620137658307],[-70.94410944109441,19.905505910357135],[-70.94770947709476,19.910571642166786],[-70.89730897308972,19.902128755817373],[-70.8829088290883,19.90381733308726],[-70.85410854108541,19.910571642166786],[-70.84330843308433,19.910571642166786],[-70.83250832508325,19.902128755817373],[-70.78570785707856,19.853160014990777],[-70.78210782107821,19.843028551371475],[-70.78930789307893,19.83458566502206],[-70.74970749707497,19.83458566502206],[-70.73530735307352,19.827831355942536],[-70.69930699306992,19.797436965084643],[-70.66330663306633,19.77886261511594],[-70.62370623706236,19.76704257422675],[-70.58050580505805,19.760288265147224],[-70.51930519305192,19.760288265147224],[-70.5121051210512,19.761976842417113],[-70.50850508505084,19.768731151496638],[-70.49770497704976,19.777174037846052],[-70.48330483304832,19.783928346925578],[-70.47250472504724,19.787305501465354],[-70.43290432904328,19.775485460576164],[-70.37170371703716,19.714696678860392],[-70.33570335703357,19.677547978922973],[-70.32130321303212,19.665727938033797],[-70.29970299702997,19.657285051684383],[-70.28170281702816,19.65221931987473],[-70.23490234902349,19.64715358806508],[-70.19890198901989,19.635333547175904],[-70.13050130501304,19.62182492901684],[-70.1161011610116,19.62182492901684],[-70.10530105301052,19.625202083556616],[-70.09810098100981,19.63364496990603],[-70.06210062100621,19.670793669843448],[-70.04050040500405,19.679236556192862],[-69.98649986499865,19.677547978922973],[-69.96129961299613,19.680925133462736],[-69.94689946899469,19.679236556192862],[-69.93249932499324,19.670793669843448],[-69.89649896498965,19.635333547175904],[-69.88569885698857,19.613382042667425],[-69.88929889298893,19.588053383619183],[-69.90369903699036,19.532330333713062],[-69.88569885698857,19.52388744736365],[-69.87489874898749,19.50700167466482],[-69.87849878498784,19.46141008837799],[-69.87489874898749,19.441147161139398],[-69.86769867698676,19.425949965710444],[-69.80289802898028,19.331389638597017],[-69.77049770497705,19.302683825009012],[-69.76689766897668,19.29930667046925],[-69.73449734497345,19.285798052310184],[-69.71289712897129,19.289175206849947],[-69.67329673296733,19.3043724022789],[-69.65529655296552,19.307749556818663],[-69.60849608496085,19.309438134088538],[-69.59049590495904,19.312815288628315],[-69.56889568895689,19.32125817497773],[-69.540095400954,19.33983252494643],[-69.52929529295292,19.34152110221632],[-69.51849518495185,19.33983252494643],[-69.49689496894969,19.329701061327142],[-69.48249482494825,19.328012484057254],[-69.46089460894609,19.333078215866905],[-69.450094500945,19.33476679313678],[-69.44289442894429,19.33476679313678],[-69.43569435694357,19.333078215866905],[-69.43209432094321,19.329701061327142],[-69.43209432094321,19.32463532951749],[-69.42849428494284,19.31956959770784],[-69.42129421294213,19.32125817497773],[-69.41049410494105,19.328012484057254],[-69.35289352893528,19.3043724022789],[-69.33489334893349,19.2942409386596],[-69.3240932409324,19.31450386589819],[-69.3060930609306,19.331389638597017],[-69.25929259292593,19.355029720375384],[-69.23049230492305,19.363472606724784],[-69.22329223292232,19.351652565835607],[-69.23049230492305,19.328012484057254],[-69.24849248492484,19.29930667046925],[-69.22689226892268,19.292552361389724],[-69.20529205292053,19.292552361389724],[-69.18369183691837,19.29761809319936],[-69.16569165691656,19.307749556818663],[-69.15849158491585,19.285798052310184],[-69.17289172891728,19.267223702341482],[-69.19089190891908,19.25202650691253],[-69.1980919809198,19.2351407342137],[-69.20169201692016,19.216566384245],[-69.2160921609216,19.201369188816045],[-69.23049230492305,19.187860570656994],[-69.2520925209252,19.182794838847343],[-69.33129331293313,19.197992034276282],[-69.41769417694177,19.191237725196757],[-69.43929439294392,19.196303457006408],[-69.47529475294752,19.213189229705236],[-69.60129601296012,19.228386425134175],[-69.61569615696156,19.225009270594413],[-69.62289622896229,19.211500652435348],[-69.62649626496264,19.164220488878627],[-69.63369633696337,19.123694634401446],[-69.630096300963,19.108497438972506],[-69.61929619296193,19.101743129892967],[-69.60849608496085,19.093300243543553],[-69.55449554495544,19.101743129892967],[-69.53289532895329,19.09498882081344],[-69.51129511295113,19.101743129892967],[-69.46449464494644,19.08485735719414],[-69.43929439294392,19.086545934464027],[-69.44649446494465,19.09161166627368],[-69.45369453694536,19.09667739808333],[-69.46089460894609,19.100054552623092],[-69.47169471694717,19.101743129892967],[-69.47169471694717,19.108497438972506],[-69.42129421294213,19.11187459351227],[-69.40329403294032,19.108497438972506],[-69.38529385293853,19.09667739808333],[-69.37449374493744,19.064594429955548],[-69.35649356493565,19.05277438906637],[-69.33849338493384,19.04939723452661],[-69.3060930609306,19.044331502716958],[-69.21249212492124,19.020691420938604],[-69.17289172891728,19.010559957319302],[-69.15849158491585,19.01224853458919],[-69.13689136891368,19.022379998208493],[-69.14409144091441,19.029134307288018],[-69.15849158491585,19.035888616367544],[-69.15849158491585,19.046020079986846],[-69.14049140491404,19.051085811796497],[-69.12249122491224,19.037577193637432],[-69.10449104491045,19.005494225509665],[-69.090090900909,18.99705133916025],[-69.07569075690756,18.993674184620474],[-69.06129061290612,18.988608452810837],[-69.0540905409054,18.976788411921646],[-69.04329043290433,18.98691987554095],[-69.01809018090181,18.99705133916025],[-69.00729007290073,19.005494225509665],[-69.01449014490144,19.01393711185908],[-69.01089010890108,19.015625689128953],[-69.0000900009,19.015625689128953],[-68.99288992889929,19.019002843668716],[-68.98208982089821,19.029134307288018],[-68.97848978489785,19.03251146182778],[-68.97488974889748,19.03251146182778],[-68.93888938889388,19.030822884557892],[-68.91728917289173,19.02744573001813],[-68.89928899288992,19.020691420938604],[-68.88488884888848,19.01224853458919],[-68.88128881288813,19.008871380049428],[-68.88128881288813,19.005494225509665],[-68.88128881288813,19.002117070969888],[-68.87768877688777,18.998739916430125],[-68.85608856088561,18.9919856073506],[-68.85248852488525,18.9919856073506],[-68.81648816488165,18.98523129827106],[-68.79488794887949,18.983542721001186],[-68.78768787687876,18.981854143731297],[-68.7840878408784,18.980165566461423],[-68.77688776887769,18.975099834651772],[-68.76608766087661,18.97003410284212],[-68.75168751687517,18.968345525572246],[-68.74088740887409,18.96496837103247],[-68.6220862208622,18.861965157569628],[-68.58248582485824,18.812996416743033],[-68.52128521285212,18.769093407726075],[-68.47808478084781,18.74038759413807],[-68.46368463684637,18.735321862328433],[-68.460084600846,18.730256130518782],[-68.41328413284133,18.6897302760416],[-68.35568355683556,18.655958730643945]]],[[[-71.91971919719197,41.06506767925724],[-71.93051930519304,41.07857629741629],[-71.90171901719017,41.08533060649583],[-71.87651876518765,41.07519914287653],[-71.85851858518585,41.071821988336765],[-71.86571865718656,41.06169052471746],[-71.88371883718837,41.044804752018635],[-71.93051930519304,41.03805044293911],[-72.00972009720097,41.00765605208122],[-72.0889208892089,40.98401597030286],[-72.16092160921609,40.95531015671486],[-72.21852218522184,40.93335865220638],[-72.31572315723157,40.89620995226896],[-72.37332373323733,40.87594702503037],[-72.40572405724056,40.862438406871306],[-72.44172441724417,40.85568409779178],[-72.45972459724597,40.85230694325202],[-72.44892448924489,40.86750413868096],[-72.44892448924489,40.87932417957013],[-72.45972459724597,40.88607848864967],[-72.48492484924849,40.88776706591955],[-72.49572495724956,40.884389911379785],[-72.49932499324993,40.87594702503037],[-72.49932499324993,40.86581556141107],[-72.49212492124921,40.85568409779178],[-72.49212492124921,40.847241211442366],[-72.50292502925029,40.83879832509295],[-72.54252542525425,40.820223975124236],[-72.60372603726037,40.801649625155534],[-72.70452704527045,40.77632096610729],[-72.72252722527224,40.77125523429764],[-72.73332733327332,40.76956665702777],[-72.73692736927369,40.774632388837404],[-72.73332733327332,40.77800954337718],[-72.72612726127261,40.77800954337718],[-72.67932679326793,40.79151816153623],[-72.65052650526505,40.79827247061577],[-72.66492664926649,40.799961047885645],[-72.67932679326793,40.801649625155534],[-72.70092700927009,40.799961047885645],[-72.72612726127261,40.80840393423506],[-72.74412744127441,40.79658389334588],[-72.76572765727657,40.78307527518682],[-72.80172801728017,40.78307527518682],[-72.82692826928269,40.78982958426636],[-72.81252812528125,40.78138669791694],[-72.81972819728198,40.76787807975788],[-72.8341283412834,40.759435193408464],[-72.85212852128521,40.74930372978916],[-72.87732877328773,40.7459265752494],[-72.88812888128881,40.76618950248799],[-72.90972909729096,40.757746616138576],[-72.92772927729277,40.7560580388687],[-72.94572945729458,40.742549420709636],[-73.01053010530104,40.74930372978916],[-73.02133021330214,40.74761515251929],[-73.03213032130321,40.73072937982046],[-73.05373053730537,40.72904080255057],[-73.08253082530825,40.723975070740934],[-73.10053100531005,40.72059791620116],[-73.11493114931149,40.7273522252807],[-73.12933129331293,40.73072937982046],[-73.14013140131401,40.72566364801081],[-73.14373143731437,40.71553218439152],[-73.14373143731437,40.70540072077222],[-73.15813158131581,40.70033498896257],[-73.17973179731797,40.70540072077222],[-73.2121321213212,40.70540072077222],[-73.23373233732337,40.71384360712163],[-73.24813248132482,40.707089298042106],[-73.26253262532624,40.695269257152916],[-73.27333273332734,40.6868263708035],[-73.31653316533165,40.68344921626374],[-73.37053370533705,40.66318628902515],[-73.40293402934029,40.6581205572155],[-73.50373503735037,40.644611939056446],[-73.56133561335614,40.63785762997691],[-73.6261362613626,40.61421754819855],[-73.64413644136441,40.60408608457925],[-73.65133651336512,40.60070893003949],[-73.66573665736657,40.60408608457925],[-73.65493654936549,40.6091518163889],[-73.65493654936549,40.617594702738316],[-73.66933669336693,40.62603758908773],[-73.69453694536945,40.62097185727808],[-73.71253712537126,40.61084039365879],[-73.70893708937089,40.59564319822984],[-73.60813608136081,40.59395462095996],[-73.57573575735756,40.59395462095996],[-73.58293582935829,40.58382315734066],[-73.70893708937089,40.582134580070786],[-73.7521375213752,40.58551173461055],[-73.76653766537665,40.58888888915031],[-73.81333813338134,40.58382315734066],[-73.89613896138961,40.555117343752656],[-73.93933939339394,40.54160872559359],[-73.93933939339394,40.555117343752656],[-73.84933849338493,40.5804460028009],[-73.78813788137882,40.60070893003949],[-73.77733777337772,40.61084039365879],[-73.77013770137701,40.619283280008204],[-73.77013770137701,40.62266043454797],[-73.78093780937809,40.62941474362749],[-73.7989379893799,40.63785762997691],[-73.81693816938169,40.64630051632632],[-73.83133831338313,40.64798909359621],[-73.85293852938528,40.64292336178656],[-73.86733867338673,40.639546207246795],[-73.8781387813878,40.63616905270703],[-73.88173881738817,40.63110332089738],[-73.89253892538925,40.624349011817856],[-73.89253892538925,40.61421754819855],[-73.88173881738817,40.60070893003949],[-73.8781387813878,40.582134580070786],[-73.89253892538925,40.577068848261135],[-73.89613896138961,40.58382315734066],[-73.91053910539105,40.58382315734066],[-73.9249392493925,40.58382315734066],[-73.93213932139321,40.577068848261135],[-73.94293942939429,40.575380270991246],[-73.98973989739898,40.56862596191172],[-74.0041400414004,40.57031453918161],[-74.01134011340113,40.57875742553101],[-74.00054000540005,40.58382315734066],[-73.99693996939969,40.58888888915031],[-74.0041400414004,40.597331775499725],[-74.02934029340292,40.60577466184914],[-74.04014040140402,40.619283280008204],[-74.03654036540365,40.639546207246795],[-74.02214022140221,40.64967767086608],[-74.01134011340113,40.66487486629504],[-74.0149401494015,40.6783834844541],[-74.00054000540005,40.69020352534328],[-73.99693996939969,40.695269257152916],[-73.98973989739898,40.70033498896257],[-73.97893978939788,40.70540072077222],[-73.9681396813968,40.70877787531198],[-73.96093960939609,40.723975070740934],[-73.95733957339573,40.742549420709636],[-73.92853928539284,40.77294381156753],[-73.90693906939069,40.78814100699647],[-73.88533885338853,40.779698120647055],[-73.87093870938709,40.78307527518682],[-73.86013860138601,40.77632096610729],[-73.82413824138241,40.79658389334588],[-73.77733777337772,40.79151816153623],[-73.75573755737557,40.77125523429764],[-73.74853748537485,40.79151816153623],[-73.7629376293763,40.81009251150495],[-73.75573755737557,40.83204401601343],[-73.74133741337413,40.8337325932833],[-73.73053730537305,40.82360112966401],[-73.72333723337233,40.81178108877482],[-73.7161371613716,40.8050267796953],[-73.70173701737016,40.81009251150495],[-73.69813698136981,40.821912552394124],[-73.70173701737016,40.8337325932833],[-73.73413734137341,40.8438640569026],[-73.73053730537305,40.85399552052189],[-73.71973719737197,40.86581556141107],[-73.70533705337053,40.86750413868096],[-73.6729367293673,40.857372675061654],[-73.66573665736657,40.83879832509295],[-73.65493654936549,40.82360112966401],[-73.64773647736477,40.83035543874354],[-73.65493654936549,40.86750413868096],[-73.63333633336333,40.899587106808724],[-73.56493564935649,40.91478430223768],[-73.52173521735217,40.91816145677744],[-73.5109351093511,40.904652838618375],[-73.51453514535145,40.899587106808724],[-73.52893528935289,40.89114422045931],[-73.53973539735397,40.89452137499909],[-73.55053550535504,40.89114422045931],[-73.53613536135362,40.87932417957013],[-73.5109351093511,40.87763560230026],[-73.5109351093511,40.88607848864967],[-73.50733507335073,40.8928327977292],[-73.49293492934929,40.8928327977292],[-73.49293492934929,40.88101275684002],[-73.47853478534785,40.87763560230026],[-73.47133471334713,40.882701334109896],[-73.47493474934748,40.89114422045931],[-73.46773467734677,40.8928327977292],[-73.46773467734677,40.90127568407861],[-73.48573485734858,40.91816145677744],[-73.49293492934929,40.926604343126854],[-73.48573485734858,40.945178693095556],[-73.46053460534606,40.93673580674614],[-73.43173431734317,40.93335865220638],[-73.44253442534425,40.91478430223768],[-73.43173431734317,40.90802999315814],[-73.4209342093421,40.899587106808724],[-73.40653406534065,40.904652838618375],[-73.38853388533884,40.906341415888264],[-73.37053370533705,40.899587106808724],[-73.35973359733597,40.899587106808724],[-73.35613356133561,40.91478430223768],[-73.35973359733597,40.924915765856966],[-73.37773377733777,40.924915765856966],[-73.39933399333992,40.924915765856966],[-73.41013410134101,40.94011296128592],[-73.40653406534065,40.946867270365445],[-73.40293402934029,40.95362157944497],[-73.39573395733957,40.95362157944497],[-73.38133381333813,40.946867270365445],[-73.3741337413374,40.93673580674614],[-73.35253352533525,40.931670074936505],[-73.32733327333273,40.92998149766662],[-73.29493294932949,40.924915765856966],[-73.26253262532624,40.91309572496779],[-73.24453244532445,40.909718570428026],[-73.23373233732337,40.90802999315814],[-73.2229322293223,40.90802999315814],[-73.17973179731797,40.919850034047315],[-73.15813158131581,40.92998149766662],[-73.14733147331474,40.945178693095556],[-73.15453154531545,40.962064465794384],[-73.13653136531364,40.968818774873924],[-73.11493114931149,40.97388450668356],[-73.10053100531005,40.968818774873924],[-73.10413104131041,40.94855584763533],[-73.08973089730897,40.94855584763533],[-73.08253082530825,40.951933002175096],[-73.07893078930789,40.95868731125462],[-73.0861308613086,40.968818774873924],[-73.07533075330753,40.97219592941369],[-73.050130501305,40.96375304306427],[-73.01053010530104,40.967130197604035],[-72.89892898928989,40.96375304306427],[-72.83052830528305,40.968818774873924],[-72.78012780127801,40.96544162033415],[-72.69732697326972,40.9806388157631],[-72.62892628926289,40.98401597030286],[-72.60732607326072,40.99077027938239],[-72.54252542525425,41.024541824780044],[-72.47052470524704,41.056624792907826],[-72.45252452524525,41.07519914287653],[-72.44532445324452,41.08533060649583],[-72.41292412924129,41.09039633830547],[-72.3841238412384,41.108970688274184],[-72.35892358923589,41.13092219278266],[-72.34452344523444,41.14105365640195],[-72.29052290522905,41.16131658364054],[-72.27612276122761,41.16300516091043],[-72.26172261722617,41.16131658364054],[-72.24732247322473,41.156250851830904],[-72.24012240122401,41.1461193882116],[-72.24732247322473,41.1359879245923],[-72.26172261722617,41.12585646097301],[-72.27612276122761,41.1174135746236],[-72.29052290522905,41.114036420083835],[-72.30492304923048,41.13261077005254],[-72.34452344523444,41.114036420083835],[-72.41292412924129,41.06506767925724],[-72.41652416524165,41.05493621563794],[-72.39852398523985,41.051559061098175],[-72.39132391323913,41.04649332928852],[-72.3841238412384,41.044804752018635],[-72.39132391323913,41.031296133859584],[-72.41292412924129,41.03467328839935],[-72.43092430924308,41.029607556589696],[-72.43812438124381,41.02623040204993],[-72.43812438124381,41.01609893843063],[-72.43452434524345,41.00596747481134],[-72.43452434524345,40.99245885665228],[-72.43812438124381,40.98401597030286],[-72.44532445324452,40.99077027938239],[-72.4561245612456,41.004278897541454],[-72.4669246692467,41.004278897541454],[-72.47412474124741,40.99077027938239],[-72.49572495724956,40.989081702112514],[-72.49932499324993,40.989081702112514],[-72.510125101251,40.98570454757275],[-72.52092520925208,40.98570454757275],[-72.53532535325353,40.97557308395345],[-72.54252542525425,40.967130197604035],[-72.54252542525425,40.95699873398475],[-72.56412564125641,40.94349011582568],[-72.57852578525785,40.93335865220638],[-72.60012600126001,40.92998149766662],[-72.61452614526145,40.92829292039673],[-72.62532625326253,40.90802999315814],[-72.61452614526145,40.909718570428026],[-72.60372603726037,40.90802999315814],[-72.5929259292593,40.906341415888264],[-72.58572585725857,40.899587106808724],[-72.56412564125641,40.91309572496779],[-72.54252542525425,40.909718570428026],[-72.52452524525245,40.9029642613485],[-72.50292502925029,40.89789852953885],[-72.48132481324812,40.89789852953885],[-72.4561245612456,40.909718570428026],[-72.44892448924489,40.919850034047315],[-72.44532445324452,40.931670074936505],[-72.44172441724417,40.94349011582568],[-72.43092430924308,40.946867270365445],[-72.40932409324093,40.95024442490521],[-72.38772387723877,40.97219592941369],[-72.36612366123661,40.994147433922166],[-72.3409234092341,40.9992131657318],[-72.32652326523265,40.9992131657318],[-72.31932319323192,41.00596747481134],[-72.33372333723337,41.031296133859584],[-72.32292322923229,41.03636186566922],[-72.30492304923048,41.03636186566922],[-72.30132301323013,41.02116467024028],[-72.29772297722977,41.00596747481134],[-72.26892268922688,41.00259032027158],[-72.26172261722617,41.01609893843063],[-72.24732247322473,41.01778751570052],[-72.24372243722436,41.029607556589696],[-72.24012240122401,41.03805044293911],[-72.23292232922329,41.044804752018635],[-72.2149221492215,41.039739020209],[-72.18612186121861,41.009344629351105],[-72.18252182521825,41.02791897931981],[-72.1789217892179,41.04649332928852],[-72.1681216812168,41.056624792907826],[-72.15372153721538,41.05493621563794],[-72.12132121321213,41.01778751570052],[-72.11772117721176,41.00765605208122],[-72.11052110521105,41.00090174300169],[-72.0889208892089,41.004278897541454],[-72.04932049320493,41.01778751570052],[-72.01332013320133,41.04142759747887],[-71.99171991719916,41.049870483828286],[-71.97731977319773,41.04311617474876],[-71.95931959319593,41.04649332928852],[-71.95931959319593,41.07013341106688],[-71.94491944919449,41.07351056560664],[-71.93411934119341,41.06506767925724],[-71.91971919719197,41.0583133701777],[-71.91971919719197,41.06506767925724]]],[[[50.26190261902619,45.00958418170322],[50.269102691026916,45.03322426348157],[50.27270272702728,45.056864345259925],[50.276302763027644,45.07206154068888],[50.29070290702907,45.078815849768404],[50.301503015030164,45.08050442703828],[50.30510305103053,45.08050442703828],[50.31230312303123,45.08050442703828],[50.33030330303305,45.08050442703828],[50.33750337503375,45.08219300430818],[50.344703447034476,45.08557015884793],[50.34830348303484,45.08557015884793],[50.351903519035204,45.07375011795875],[50.344703447034476,45.05179861345027],[50.33750337503375,45.043355727100874],[50.33030330303305,45.03828999529122],[50.326703267032684,45.03322426348157],[50.33390333903341,44.994386986274264],[50.32310323103232,44.972435481765785],[50.30510305103053,44.958926863606735],[50.27990279902801,44.95554970906696],[50.26550265502655,44.963992595416386],[50.25830258302585,44.985944099924865],[50.26190261902619,45.00958418170322]]],[[[-96.32076320763207,72.46753916726578],[-96.31716317163172,72.44896481729708],[-96.30636306363063,72.43714477640788],[-96.30276302763028,72.4270133127886],[-96.32076320763207,72.41519327189943],[-96.33876338763388,72.41181611735965],[-96.37836378363784,72.41350469462952],[-96.39996399964,72.41012754008977],[-96.40716407164071,72.40506180828012],[-96.41436414364144,72.3983074992006],[-96.4179641796418,72.39324176739095],[-96.42516425164251,72.3881760355813],[-96.43956439564396,72.378044571962],[-96.46116461164611,72.3696016856126],[-96.46836468364684,72.36791310834269],[-96.49716497164971,72.36791310834269],[-96.50436504365044,72.36622453107282],[-96.51156511565115,72.36284737653304],[-96.51516515165152,72.35778164472342],[-96.51876518765188,72.35440449018364],[-96.66276662766627,72.31894436751611],[-96.68796687966879,72.31725579024621],[-96.7419674196742,72.32569867659564],[-96.87516875168751,72.32569867659564],[-96.84276842768428,72.31219005843656],[-96.71676716767168,72.30037001754738],[-96.64476644766448,72.27841851303893],[-96.60516605166052,72.27166420395938],[-96.58356583565835,72.28517282211845],[-96.57276572765727,72.28179566757868],[-96.56556565565656,72.27841851303893],[-96.55836558365583,72.27166420395938],[-96.55476554765548,72.26490989487985],[-96.56916569165692,72.25815558580032],[-96.6159661596616,72.2514012767208],[-96.59076590765908,72.2412698131015],[-96.57276572765727,72.23789265856172],[-96.55836558365583,72.23958123583162],[-96.53316533165331,72.24464696764127],[-96.53316533165331,72.22438404040267],[-96.5259652596526,72.19736680408454],[-96.51516515165152,72.17034956776644],[-96.50076500765007,72.15515237233748],[-96.50796507965079,72.15515237233748],[-96.489964899649,72.14502090871818],[-96.48636486364863,72.12813513601935],[-96.489964899649,72.10956078605065],[-96.50076500765007,72.09267501335182],[-96.52956529565296,72.08085497246265],[-96.8679686796868,72.04539484979512],[-96.84276842768428,72.03864054071556],[-96.82476824768247,72.03695196344569],[-96.7779677796778,72.03864054071556],[-96.74916749167491,72.03526338617581],[-96.69516695166952,72.02175476801673],[-96.66276662766627,72.01837761347699],[-96.51516515165152,72.04201769525534],[-96.49356493564936,72.02850907709629],[-96.49716497164971,71.9964261089685],[-96.51516515165152,71.97109744992028],[-96.54036540365404,71.95421167722145],[-96.57636576365763,71.9491459454118],[-96.58716587165871,71.95252309995155],[-96.61236612366123,71.96096598630098],[-96.62676626766267,71.96265456357085],[-96.64116641166412,71.96096598630098],[-96.66636666366664,71.95083452268167],[-96.69876698766987,71.94576879087202],[-96.76716767167672,71.92212870909367],[-96.76716767167672,71.91537440001414],[-96.71676716767168,71.90355435912497],[-96.66636666366664,71.91368582274424],[-96.6159661596616,71.92719444090332],[-96.56196561965619,71.93563732725272],[-96.51876518765188,71.93732590452262],[-96.50076500765007,71.93226017271297],[-96.49356493564936,71.91537440001414],[-96.55836558365583,71.8393884228694],[-96.58716587165871,71.8208140729007],[-96.62316623166231,71.80899403201153],[-96.71676716767168,71.79717399112235],[-96.73836738367383,71.79886256839222],[-96.74556745567456,71.81574834109105],[-96.73836738367383,71.82925695925013],[-96.72036720367204,71.83432269105975],[-96.67716677166771,71.8393884228694],[-96.70956709567095,71.85458561829836],[-96.73836738367383,71.85289704102848],[-96.77076770767708,71.84107700013931],[-96.7959679596796,71.82587980471035],[-96.82836828368283,71.8123711865513],[-96.86436864368643,71.80899403201153],[-96.93636936369363,71.8123711865513],[-96.96156961569615,71.80730545474165],[-96.97956979569796,71.79379683658257],[-97.01557015570155,71.75833671391504],[-97.05877058770588,71.73300805486681],[-97.08037080370804,71.71781085943786],[-97.0839708397084,71.70261366400891],[-97.21357213572135,71.66715354134138],[-97.29997299972999,71.65702207772208],[-97.43677436774368,71.61987337778467],[-97.4619746197462,71.61818480051477],[-97.68517685176852,71.61818480051477],[-97.70677706777067,71.62325053232442],[-97.72477724777248,71.63338199594372],[-97.76437764377644,71.6452020368329],[-97.90477904779047,71.65026776864255],[-97.9479794797948,71.65871065499198],[-97.96957969579695,71.66208780953173],[-98.09918099180992,71.64857919137268],[-98.14598145981459,71.64857919137268],[-98.22158221582215,71.65871065499198],[-98.2539825398254,71.67053069588115],[-98.33678336783368,71.71274512762821],[-98.35118351183512,71.72287659124751],[-98.35838358383583,71.73469663213669],[-98.35478354783548,71.73976236394634],[-98.34758347583475,71.74482809575599],[-98.33678336783368,71.79041968204282],[-98.31878318783187,71.8123711865513],[-98.22158221582215,71.87315996826706],[-98.21438214382144,71.88160285461649],[-98.21438214382144,71.89342289550567],[-98.22878228782288,71.89511147277554],[-98.24678246782467,71.89511147277554],[-98.26118261182611,71.90186578185507],[-98.25758257582575,71.90355435912497],[-98.25758257582575,71.90524293639484],[-98.2539825398254,71.90862009093462],[-98.29358293582935,71.90186578185507],[-98.26838268382683,71.87822570007671],[-98.26118261182611,71.86809423645741],[-98.28278282782827,71.86640565918754],[-98.32238322383223,71.86640565918754],[-98.34398343983439,71.86133992737788],[-98.33678336783368,71.86133992737788],[-98.43758437584376,71.80392830020187],[-98.48078480784808,71.76677960026447],[-98.49878498784987,71.72287659124751],[-98.49518495184951,71.71949943670774],[-98.49158491584916,71.71781085943786],[-98.4879848798488,71.71781085943786],[-98.46638466384664,71.72456516851739],[-98.45558455584556,71.72287659124751],[-98.44838448384483,71.71949943670774],[-98.4159841598416,71.71443370489808],[-98.3979839798398,71.70767939581856],[-98.39438394383943,71.70092508673903],[-98.41238412384124,71.69585935492938],[-98.39438394383943,71.67897358223055],[-98.38718387183872,71.6637763868016],[-98.37638376383764,71.65195634591242],[-98.35118351183512,71.64857919137268],[-98.32238322383223,71.64689061410277],[-98.30798307983079,71.64182488229315],[-98.30078300783008,71.63169341867385],[-98.29718297182971,71.61818480051477],[-98.28638286382863,71.61311906870515],[-98.27558275582756,71.61311906870515],[-98.26118261182611,71.60974191416537],[-98.23238232382323,71.59285614146654],[-98.22158221582215,71.59116756419667],[-98.18918189181892,71.58947898692676],[-98.17838178381784,71.58610183238702],[-98.16038160381603,71.56077317333876],[-98.14958149581496,71.55233028698936],[-98.14238142381423,71.54726455517971],[-98.13518135181351,71.54388740063993],[-98.12438124381244,71.54219882337006],[-98.109981099811,71.54557597790983],[-98.10278102781028,71.54051024610018],[-98.05958059580595,71.5371330915604],[-98.04158041580415,71.53037878248088],[-98.05958059580595,71.52193589613148],[-98.09918099180992,71.49491865981335],[-98.13158131581315,71.46621284622535],[-98.17118171181711,71.43919560990722],[-98.18918189181892,71.42568699174817],[-98.21438214382144,71.40880121904934],[-98.31518315183152,71.38684971454086],[-98.40158401584016,71.34632386006368],[-98.41238412384124,71.33956955098412],[-98.44118441184412,71.3345038191745],[-98.50958509585095,71.30242085104672],[-98.5419854198542,71.29228938742742],[-98.66438664386644,71.29904369650694],[-98.70038700387003,71.29228938742742],[-98.69678696786967,71.28891223288767],[-98.69318693186932,71.28046934653824],[-98.69318693186932,71.27709219199846],[-98.71838718387184,71.27202646018884],[-98.72918729187292,71.27202646018884],[-98.739987399874,71.27709219199846],[-98.78678786787867,71.28384650107802],[-98.82638826388263,71.30073227377684],[-98.94518945189452,71.37334109638178],[-98.96678966789668,71.38347256000108],[-98.99558995589956,71.38684971454086],[-99.02079020790208,71.38347256000108],[-99.09279092790928,71.35476674641308],[-99.1179911799118,71.34970101460343],[-99.21159211592115,71.34632386006368],[-99.23679236792367,71.34970101460343],[-99.24039240392403,71.35814390095285],[-99.2439924399244,71.36827536457213],[-99.25119251192511,71.38347256000108],[-99.25839258392584,71.38853829181073],[-99.28359283592836,71.40204690996978],[-99.28719287192871,71.40711264177943],[-99.29079290792907,71.42062125993851],[-99.29439294392944,71.42906414628791],[-99.3159931599316,71.44932707352652],[-99.32319323193232,71.4611471144157],[-99.3159931599316,71.47634430984462],[-99.36639366393663,71.5084272779724],[-99.41319413194131,71.54557597790983],[-99.39519395193952,71.54557597790983],[-99.38439384393844,71.55064170971949],[-99.37359373593736,71.56077317333876],[-99.369993699937,71.57597036876771],[-99.38439384393844,71.58610183238702],[-99.51399513995139,71.60467618235572],[-99.56079560795608,71.61987337778467],[-99.60039600396004,71.64182488229315],[-99.60399603996039,71.66884211861125],[-99.61119611196112,71.67897358223055],[-99.61479614796147,71.68910504584986],[-99.61839618396183,71.69923650946916],[-99.63279632796328,71.70936797308843],[-99.64359643596435,71.71443370489808],[-99.66519665196651,71.71949943670774],[-99.6759967599676,71.72625374578726],[-99.67959679596795,71.73300805486681],[-99.67959679596795,71.73976236394634],[-99.6759967599676,71.74313951848609],[-99.67239672396724,71.74313951848609],[-99.68319683196832,71.75833671391504],[-99.6939969399694,71.76677960026447],[-99.70839708397084,71.773533909344],[-99.7479974799748,71.7819767956934],[-99.76959769597696,71.7836653729633],[-99.78039780397803,71.78704252750305],[-99.80559805598055,71.802239722932],[-99.819998199982,71.80561687747175],[-99.82719827198272,71.8123711865513],[-99.84879848798488,71.84951988648871],[-99.86319863198632,71.85965135010801],[-100.0360003600036,71.86809423645741],[-100.05760057600575,71.87315996826706],[-100.09720097200972,71.88835716369601],[-100.11880118801187,71.89342289550567],[-100.14400144001439,71.92550586363342],[-100.18720187201872,71.94239163633225],[-100.27720277202772,71.96603171811063],[-100.30600306003059,71.9862946453492],[-100.35280352803528,72.02513192255651],[-100.38520385203852,72.03864054071556],[-100.3780037800378,72.03864054071556],[-100.3960039600396,72.04201769525534],[-100.44640446404463,72.05890346795417],[-100.43200432004319,72.06396919976382],[-100.42480424804248,72.07241208611322],[-100.42480424804248,72.08254354973252],[-100.42120421204211,72.09267501335182],[-100.44280442804428,72.09942932243135],[-100.47160471604715,72.09605216789157],[-100.49680496804967,72.09605216789157],[-100.51480514805148,72.12138082693983],[-100.50760507605075,72.12138082693983],[-100.48960489604896,72.12813513601935],[-100.54720547205471,72.13657802236878],[-100.56520565205652,72.1416437541784],[-100.57960579605796,72.15008664052783],[-100.59040590405904,72.16021810414713],[-100.60480604806048,72.16866099049653],[-100.62640626406264,72.16866099049653],[-100.63720637206372,72.18723534046526],[-100.79920799207991,72.21087542224362],[-100.82080820808208,72.20749826770384],[-100.84240842408424,72.19905538135444],[-100.86040860408603,72.19567822681466],[-100.86760867608676,72.19736680408454],[-100.87840878408784,72.20749826770384],[-100.88560885608855,72.20918684497371],[-100.89640896408964,72.20918684497371],[-100.92520925209251,72.20412111316406],[-100.92160921609216,72.19905538135444],[-100.91440914409144,72.18892391773514],[-100.92880928809288,72.19061249500501],[-100.93960939609396,72.18554676319536],[-100.95040950409503,72.17879245411584],[-100.96840968409684,72.17541529957606],[-100.97920979209792,72.17879245411584],[-101.02961029610296,72.20412111316406],[-101.02961029610296,72.21087542224362],[-101.03321033210332,72.21931830859302],[-101.0440104401044,72.22776119494245],[-101.05841058410584,72.23620408129185],[-101.03321033210332,72.2497126994509],[-101.02241022410225,72.2514012767208],[-101.02241022410225,72.25815558580032],[-101.04041040410404,72.2598441630702],[-101.06921069210692,72.25815558580032],[-101.08361083610836,72.26490989487985],[-101.0620106201062,72.27335278122928],[-101.04761047610477,72.27672993576903],[-101.03681036810367,72.27841851303893],[-101.06561065610656,72.2885499766582],[-101.1340113401134,72.29530428573776],[-101.16641166411664,72.30543574935703],[-101.20241202412024,72.32907583113538],[-101.21681216812168,72.33414156294504],[-101.22761227612276,72.33583014021494],[-101.29241292412924,72.32569867659564],[-101.35721357213572,72.30543574935703],[-101.4040140401404,72.2801070903088],[-101.40041400414003,72.2514012767208],[-101.4220142201422,72.24464696764127],[-101.44721447214472,72.24295839037137],[-101.47601476014759,72.24295839037137],[-101.4940149401494,72.2514012767208],[-101.48321483214832,72.2514012767208],[-101.47601476014759,72.25308985399067],[-101.47241472414724,72.25815558580032],[-101.46881468814688,72.26828704941963],[-101.47241472414724,72.27335278122928],[-101.50841508415084,72.28517282211845],[-101.50121501215011,72.28517282211845],[-101.530015300153,72.29530428573776],[-101.60201602016019,72.31050148116668],[-101.63081630816308,72.31219005843656],[-101.65241652416523,72.30712432662693],[-101.6740167401674,72.29699286300763],[-101.69561695616956,72.29192713119798],[-101.71361713617137,72.30037001754738],[-101.70641706417064,72.30543574935703],[-101.71721717217171,72.31219005843656],[-101.72441724417244,72.31050148116668],[-101.73161731617316,72.30712432662693],[-101.74241742417423,72.30543574935703],[-101.77121771217712,72.30712432662693],[-101.7820178201782,72.30881290389681],[-101.83961839618397,72.32569867659564],[-101.85041850418504,72.33245298567516],[-101.86121861218612,72.34258444929446],[-101.8720187201872,72.35102733564386],[-101.87921879218791,72.35778164472342],[-101.89361893618936,72.36115879926317],[-101.89361893618936,72.36453595380294],[-101.89361893618936,72.36622453107282],[-101.88641886418864,72.36791310834269],[-101.89361893618936,72.36791310834269],[-101.87921879218791,72.37297884015234],[-101.8720187201872,72.38142172650177],[-101.87561875618756,72.38986461285117],[-101.89361893618936,72.39493034466082],[-101.86481864818649,72.39999607647047],[-101.79281792817928,72.39324176739095],[-101.77481774817748,72.39493034466082],[-101.79281792817928,72.41181611735965],[-101.83961839618397,72.41519327189943],[-101.91881918819188,72.40843896281987],[-101.91521915219153,72.41181611735965],[-101.9080190801908,72.41857042643917],[-101.9080190801908,72.42194758097895],[-101.91881918819188,72.435456199138],[-101.95121951219512,72.45740770364648],[-101.9620196201962,72.47091632180553],[-101.9080190801908,72.47091632180553],[-101.93321933219332,72.48611351723449],[-101.96561965619657,72.49624498085379],[-102.00162001620016,72.50299928993331],[-102.0340203402034,72.50468786720319],[-102.06642066420665,72.51313075355262],[-102.13842138421384,72.54183656714062],[-102.16722167221673,72.53845941260084],[-102.15642156421563,72.53170510352132],[-102.16362163621636,72.52832794898154],[-102.1960219602196,72.53170510352132],[-102.1960219602196,72.5350822580611],[-102.19962199621996,72.53845941260084],[-102.20682206822067,72.5435251444105],[-102.2140221402214,72.54521372168037],[-102.24282242822429,72.54521372168037],[-102.25722257222571,72.54690229895027],[-102.26442264422644,72.55534518529967],[-102.34362343623435,72.57898526707802],[-102.37962379623796,72.57729668980815],[-102.39402394023939,72.57898526707802],[-102.40122401224012,72.58405099888768],[-102.40842408424083,72.5908053079672],[-102.4120241202412,72.59755961704676],[-102.4120241202412,72.6009367715865],[-102.61362613626136,72.66172555330229],[-102.65682656826569,72.68029990327099],[-102.68922689226892,72.70562856231925],[-102.72882728827288,72.71744860320842],[-102.74322743227432,72.73095722136748],[-102.7360273602736,72.73433437590725],[-102.72882728827288,72.7394001077169],[-102.71442714427144,72.75122014860608],[-102.73242732427325,72.7579744576856],[-102.74322743227432,72.75966303495548],[-102.75042750427504,72.76472876676513],[-102.75762757627577,72.77823738492418],[-102.75762757627577,72.79005742581339],[-102.7540275402754,72.79850031216279],[-102.75042750427504,72.80525462124231],[-102.75762757627577,72.81200893032184],[-102.73242732427325,72.83227185756044],[-102.66762667626676,72.86097767114845],[-102.60282602826028,72.91163498924493],[-102.59562595625955,72.92345503013411],[-102.59562595625955,72.93696364829316],[-102.59562595625955,72.94709511191246],[-102.59562595625955,72.95384942099199],[-102.58842588425884,72.96398088461129],[-102.57762577625776,72.9842438118499],[-102.56682566825668,72.99437527546917],[-102.5560255602556,73.0028181618186],[-102.53082530825309,73.01463820270777],[-102.520025200252,73.0230810890572],[-102.4840248402484,73.0416554390259],[-102.39402394023939,73.04672117083555],[-102.35082350823508,73.0602297889946],[-102.38322383223831,73.06191836626448],[-102.39402394023939,73.06529552080426],[-102.36162361623616,73.0703612526139],[-102.29682296822968,73.06529552080426],[-102.26802268022679,73.07373840715366],[-102.28242282422823,73.08724702531273],[-102.20682206822067,73.0788041389633],[-102.11322113221132,73.08893560258261],[-102.08082080820807,73.08893560258261],[-102.04482044820448,73.08049271623321],[-101.94761947619476,73.09400133439226],[-101.94761947619476,73.08724702531273],[-101.95841958419584,73.08386987077296],[-101.980019800198,73.06529552080426],[-101.9620196201962,73.05347547991508],[-101.94041940419405,73.05347547991508],[-101.9080190801908,73.0602297889946],[-101.90081900819008,73.0416554390259],[-101.88641886418864,73.02983539813673],[-101.86841868418684,73.0230810890572],[-101.84321843218432,73.01970393451742],[-101.82161821618216,73.01801535724755],[-101.80361803618035,73.01970393451742],[-101.7820178201782,73.02476966632707],[-101.77481774817748,73.02476966632707],[-101.7640176401764,73.01970393451742],[-101.76761767617676,73.011261048168],[-101.77481774817748,73.00112958454872],[-101.77841778417783,72.9926866981993],[-101.78921789217893,72.9842438118499],[-101.76041760417604,72.9842438118499],[-101.7460174601746,72.98086665731012],[-101.73521735217352,72.97073519369081],[-101.80001800018,72.97748950277034],[-101.8180181801818,72.97073519369081],[-101.73881738817389,72.92852076194376],[-101.68841688416884,72.91501214378471],[-101.65961659616596,72.90150352562563],[-101.62721627216271,72.89306063927623],[-101.61281612816128,72.90150352562563],[-101.61641616416163,72.91163498924493],[-101.59841598415984,72.92176645286423],[-101.56961569615696,72.92683218467388],[-101.54441544415444,72.92176645286423],[-101.55881558815588,72.92176645286423],[-101.57321573215732,72.92007787559433],[-101.5840158401584,72.91501214378471],[-101.59841598415984,72.90825783470515],[-101.5840158401584,72.90150352562563],[-101.53721537215372,72.88799490746658],[-101.52281522815228,72.88124059838705],[-101.4940149401494,72.85253478479905],[-101.46521465214651,72.83058328029057],[-101.45441454414544,72.81707466213149],[-101.46881468814688,72.80525462124231],[-101.440014400144,72.79512315762301],[-101.39681396813968,72.78330311673383],[-101.35361353613536,72.77823738492418],[-101.32481324813247,72.78499169400374],[-101.33561335613356,72.79174600308326],[-101.35721357213572,72.80018888943266],[-101.36441364413643,72.80525462124231],[-101.33921339213391,72.80694319851219],[-101.31761317613176,72.80018888943266],[-101.2960129601296,72.79174600308326],[-101.2780127801278,72.77823738492418],[-101.29241292412924,72.766417344035],[-101.29961299612995,72.75628588041573],[-101.31041310413104,72.7478429940663],[-101.3320133201332,72.74446583952655],[-101.33921339213391,72.74615441679643],[-101.35721357213572,72.75628588041573],[-101.3680136801368,72.7579744576856],[-101.41481414814147,72.75122014860608],[-101.40041400414003,72.74953157133618],[-101.3320133201332,72.72420291228795],[-101.2960129601296,72.7191371804783],[-101.1340113401134,72.71238287139877],[-101.07281072810729,72.69380852143007],[-101.05481054810548,72.6904313668903],[-101.04041040410404,72.69380852143007],[-101.02241022410225,72.7005628305096],[-101.00441004410044,72.70393998504935],[-100.98280982809828,72.7005628305096],[-100.96480964809648,72.69380852143007],[-100.94680946809468,72.68874278962042],[-100.91080910809107,72.6904313668903],[-100.87480874808747,72.69549709869995],[-100.83880838808388,72.70731713958912],[-100.81000810008099,72.72420291228795],[-100.82440824408243,72.7292686440976],[-100.87120871208712,72.737711530447],[-100.87120871208712,72.74446583952655],[-100.86040860408603,72.74446583952655],[-100.85680856808568,72.74615441679643],[-100.85680856808568,72.75122014860608],[-100.85680856808568,72.7579744576856],[-100.8460084600846,72.76304018949526],[-100.83520835208351,72.76472876676513],[-100.8280082800828,72.76135161222535],[-100.81720817208172,72.7579744576856],[-100.83160831608316,72.7579744576856],[-100.7560075600756,72.75122014860608],[-100.59040590405904,72.7579744576856],[-100.51120511205112,72.75290872587595],[-100.5040050400504,72.75290872587595],[-100.49680496804967,72.75290872587595],[-100.49320493204932,72.74953157133618],[-100.48960489604896,72.74446583952655],[-100.48240482404823,72.75122014860608],[-100.47520475204752,72.74615441679643],[-100.4680046800468,72.74277726225665],[-100.45720457204571,72.7394001077169],[-100.450004500045,72.737711530447],[-100.43200432004319,72.74108868498678],[-100.41760417604176,72.74615441679643],[-100.39240392403924,72.76135161222535],[-100.34920349203492,72.77654880765431],[-100.32760327603276,72.78668027127361],[-100.31680316803168,72.80525462124231],[-100.32760327603276,72.84240332117975],[-100.33480334803347,72.85084620752914],[-100.35640356403563,72.86097767114845],[-100.39960399603996,72.8660434029581],[-100.42120421204211,72.8744862893075],[-100.39240392403924,72.89137206200633],[-100.3960039600396,72.9031921028955],[-100.44640446404463,72.92176645286423],[-100.43560435604356,72.9318979164835],[-100.39240392403924,72.95047226645224],[-100.41760417604176,72.95553799826189],[-100.4860048600486,72.95384942099199],[-100.5040050400504,72.96398088461129],[-100.44640446404463,73.00450673908847],[-100.45360453604536,73.00788389362825],[-100.46080460804608,73.01632677997765],[-100.4680046800468,73.01970393451742],[-100.43560435604356,73.03321255267647],[-100.42120421204211,73.03658970721625],[-100.40680406804067,73.03321255267647],[-100.42120421204211,73.039966861756],[-100.4140041400414,73.039966861756],[-100.39240392403924,73.02814682086682],[-100.39240392403924,73.02645824359695],[-100.38520385203852,73.02814682086682],[-100.3780037800378,73.0315239754066],[-100.37440374403744,73.03658970721625],[-100.37080370803707,73.0416554390259],[-100.36720367203672,73.04672117083555],[-100.360003600036,73.0500983253753],[-100.35280352803528,73.0517869026452],[-100.3420034200342,73.0517869026452],[-100.33120331203311,73.04672117083555],[-100.31680316803168,73.039966861756],[-100.30960309603095,73.03321255267647],[-100.3240032400324,73.0230810890572],[-100.33840338403384,73.01632677997765],[-100.360003600036,73.011261048168],[-100.3780037800378,73.011261048168],[-100.38160381603815,73.011261048168],[-100.38520385203852,73.011261048168],[-100.38880388803888,73.0129496254379],[-100.39240392403924,73.0129496254379],[-100.3960039600396,73.01463820270777],[-100.40680406804067,73.01970393451742],[-100.3960039600396,73.01463820270777],[-100.39240392403924,73.0129496254379],[-100.38880388803888,73.011261048168],[-100.38160381603815,73.011261048168],[-100.38160381603815,73.00957247089812],[-100.4140041400414,72.98762096638964],[-100.41760417604176,72.97917808004024],[-100.39960399603996,72.96398088461129],[-100.37440374403744,72.95216084372211],[-100.3420034200342,72.94202938010281],[-100.31320313203132,72.93865222556306],[-100.28080280802807,72.93696364829316],[-100.30600306003059,72.95047226645224],[-100.29520295202951,72.96229230734141],[-100.27000270002699,72.96060373007154],[-100.25560255602555,72.93358649375341],[-100.26640266402664,72.92345503013411],[-100.31320313203132,72.91838929832446],[-100.33120331203311,72.90825783470515],[-100.33120331203311,72.8947492165461],[-100.32760327603276,72.8846177529268],[-100.31680316803168,72.87786344384727],[-100.30600306003059,72.8744862893075],[-100.20160201602016,72.88124059838705],[-100.13680136801368,72.89643779381598],[-100.08640086400864,72.88799490746658],[-100.0720007200072,72.88799490746658],[-100.06480064800648,72.8947492165461],[-100.06480064800648,72.90150352562563],[-100.06840068400683,72.90656925743528],[-100.07560075600756,72.90994641197506],[-100.07560075600756,72.90825783470515],[-100.07920079200792,72.91501214378471],[-100.08640086400864,72.91670072105458],[-100.090000900009,72.91838929832446],[-100.07560075600756,72.93020933921363],[-100.06840068400683,72.9318979164835],[-100.0360003600036,72.93696364829316],[-100.0360003600036,72.94371795737271],[-100.05760057600575,72.95047226645224],[-100.0540005400054,72.95384942099199],[-100.05040050400504,72.95722657553176],[-100.05040050400504,72.96398088461129],[-100.18000180001799,72.99099812092942],[-100.16920169201691,73.00450673908847],[-100.15120151201512,73.00450673908847],[-100.11160111601116,72.99775243000894],[-100.12240122401224,73.00788389362825],[-100.12960129601295,73.01463820270777],[-100.12240122401224,73.0230810890572],[-100.11160111601116,73.03321255267647],[-100.15120151201512,73.03321255267647],[-100.14760147601476,73.03490112994638],[-100.13320133201331,73.04672117083555],[-100.15480154801547,73.0517869026452],[-100.20520205202051,73.04672117083555],[-100.22680226802268,73.0517869026452],[-100.20160201602016,73.06867267534403],[-100.17280172801728,73.08049271623321],[-100.20880208802087,73.09737848893204],[-100.2880028800288,73.09231275712239],[-100.3240032400324,73.10075564347179],[-100.30960309603095,73.10582137528144],[-100.27720277202772,73.10919852982121],[-100.26280262802628,73.11426426163086],[-100.29520295202951,73.12101857071039],[-100.28080280802807,73.12777287978992],[-100.24480244802447,73.12946145705979],[-100.22680226802268,73.13452718886944],[-100.26280262802628,73.14128149794897],[-100.31320313203132,73.14128149794897],[-100.36360363603636,73.13452718886944],[-100.40680406804067,73.11257568436096],[-100.42480424804248,73.10750995255131],[-100.43920439204392,73.10244422074166],[-100.44640446404463,73.09062417985248],[-100.45720457204571,73.08555844804283],[-100.4860048600486,73.08724702531273],[-100.52920529205292,73.09400133439226],[-100.51840518405184,73.11595283890074],[-100.54720547205471,73.13115003432969],[-100.6120061200612,73.14803580702849],[-100.60120601206012,73.15479011610805],[-100.58680586805868,73.17167588880687],[-100.5760057600576,73.18011877515627],[-100.56520565205652,73.18349592969605],[-100.5220052200522,73.18349592969605],[-100.5220052200522,73.19193881604545],[-100.50760507605075,73.1970045478551],[-100.4680046800468,73.20375885693463],[-100.4860048600486,73.21220174328406],[-100.51120511205112,73.21895605236358],[-100.53280532805327,73.22402178417323],[-100.55800558005579,73.22402178417323],[-100.55800558005579,73.23077609325276],[-100.47520475204752,73.23753040233228],[-100.44640446404463,73.24428471141181],[-100.450004500045,73.24766186595159],[-100.450004500045,73.25441617503111],[-100.45360453604536,73.25779332957089],[-100.42840428404284,73.26623621592029],[-100.38160381603815,73.28987629769864],[-100.35280352803528,73.29325345223842],[-100.36360363603636,73.28649914315889],[-100.35640356403563,73.27467910226972],[-100.3420034200342,73.27299052499981],[-100.30960309603095,73.28481056588902],[-100.29160291602916,73.28481056588902],[-100.27360273602736,73.27974483407937],[-100.24120241202412,73.26454763865041],[-100.21240212402124,73.24597328868171],[-100.1980019800198,73.24090755687206],[-100.18000180001799,73.23753040233228],[-100.10440104401044,73.24428471141181],[-100.12240122401224,73.23584182506241],[-100.13680136801368,73.22402178417323],[-100.03960039600396,73.19362739331532],[-99.99279992799927,73.19025023877558],[-99.81279812798128,73.19531597058523],[-99.76959769597696,73.21051316601415],[-99.819998199982,73.2172674750937],[-99.92439924399244,73.21389032055393],[-99.99639996399964,73.23584182506241],[-100.0540005400054,73.24597328868171],[-100.090000900009,73.26623621592029],[-100.15840158401583,73.29325345223842],[-100.17280172801728,73.30169633858785],[-100.1980019800198,73.32702499763607],[-100.20520205202051,73.3337793067156],[-100.26280262802628,73.3523536566843],[-100.29160291602916,73.3726165839229],[-100.34560345603455,73.39456808843138],[-100.36360363603636,73.39963382024104],[-100.38520385203852,73.39963382024104],[-100.39240392403924,73.39456808843138],[-100.3780037800378,73.3810594702723],[-100.39960399603996,73.37092800665303],[-100.40680406804067,73.36755085211325],[-100.38880388803888,73.3439107703349],[-100.38880388803888,73.34053361579512],[-100.37440374403744,73.33884503852525],[-100.34920349203492,73.33209072944572],[-100.33840338403384,73.32702499763607],[-100.47880478804788,73.3236478430963],[-100.65880658806587,73.28143341134924],[-100.85680856808568,73.26285906138054],[-100.97560975609755,73.28143341134924],[-101.03321033210332,73.30169633858785],[-101.0440104401044,73.31182780220712],[-101.02961029610296,73.32027068855655],[-101.02961029610296,73.32702499763607],[-101.06561065610656,73.3253364203662],[-101.28881288812887,73.36079654303373],[-101.31761317613176,73.37430516119278],[-101.3140131401314,73.39963382024104],[-101.35001350013499,73.41314243840009],[-101.42921429214292,73.41483101566996],[-101.44721447214472,73.41989674747961],[-101.47241472414724,73.43847109744834],[-101.48681486814868,73.44353682925797],[-101.56241562415624,73.45029113833752],[-101.5840158401584,73.45704544741704],[-101.57321573215732,73.4604226019568],[-101.5660156601566,73.4621111792267],[-101.55881558815588,73.4604226019568],[-101.55161551615515,73.45704544741704],[-101.56241562415624,73.46886548830622],[-101.5840158401584,73.47899695192552],[-101.62721627216271,73.4908169928147],[-101.60561605616056,73.49588272462435],[-101.56961569615696,73.4908169928147],[-101.55161551615515,73.4908169928147],[-101.530015300153,73.49588272462435],[-101.52641526415263,73.500948456434],[-101.52281522815228,73.50770276551353],[-101.46881468814688,73.54147431091118],[-101.45441454414544,73.54822861999071],[-101.43641436414364,73.55329435180036],[-101.41841418414184,73.55667150634011],[-101.37881378813788,73.56004866087989],[-101.30321303213032,73.55160577453046],[-101.27081270812708,73.56004866087989],[-101.25641256412564,73.59044305173776],[-101.23121231212312,73.60564024716672],[-100.97920979209792,73.59382020627754],[-100.9180091800918,73.60226309262694],[-100.90000900009,73.60057451535707],[-100.88560885608855,73.59382020627754],[-100.8460084600846,73.56680296995941],[-100.82440824408243,73.56004866087989],[-100.77040770407704,73.54654004272084],[-100.720007200072,73.51276849732318],[-100.71280712807128,73.50432561097375],[-100.7020070200702,73.48575126100505],[-100.69480694806948,73.47730837465562],[-100.65520655206552,73.4621111792267],[-100.55800558005579,73.45366829287727],[-100.5220052200522,73.43678252017844],[-100.51840518405184,73.42327390201939],[-100.48240482404823,73.41145386113021],[-100.43920439204392,73.40807670659044],[-100.42120421204211,73.41989674747961],[-100.43920439204392,73.44015967471822],[-100.48240482404823,73.45873402468692],[-100.59040590405904,73.48406268373517],[-100.60480604806048,73.4992598791641],[-100.60480604806048,73.51783422913283],[-100.58320583205831,73.53640857910153],[-100.57240572405723,73.54316288818106],[-100.55080550805508,73.55836008361001],[-100.54360543605436,73.56680296995941],[-100.54360543605436,73.57693443357871],[-100.55080550805508,73.58368874265824],[-100.55440554405544,73.58875447446789],[-100.55080550805508,73.60057451535707],[-100.61560615606156,73.59719736081729],[-100.6480064800648,73.60057451535707],[-100.67680676806768,73.6174602880559],[-100.69120691206912,73.62421459713542],[-100.71280712807128,73.62421459713542],[-100.73080730807308,73.61914886532577],[-100.74520745207452,73.61070597897637],[-100.75960759607595,73.60564024716672],[-100.78120781207812,73.60732882443659],[-100.80280802808028,73.61239455624624],[-100.82080820808208,73.61408313351612],[-100.87480874808747,73.61914886532577],[-100.90000900009,73.62590317440532],[-100.91440914409144,73.6360346380246],[-100.89280892808928,73.6377232152945],[-100.87840878408784,73.64278894710412],[-100.8640086400864,73.65292041072342],[-100.85680856808568,73.66811760615238],[-100.87840878408784,73.66980618342225],[-100.93600936009359,73.67656049250178],[-101.01521015210152,73.67656049250178],[-101.04761047610477,73.68331480158133],[-101.05841058410584,73.69682341974038],[-101.04761047610477,73.70864346062956],[-101.01521015210152,73.71033203789943],[-101.01521015210152,73.71708634697899],[-101.02961029610296,73.71877492424886],[-101.05121051210511,73.72890638786816],[-101.0620106201062,73.73228354240791],[-101.10521105211052,73.72384065605851],[-101.11961119611196,73.72384065605851],[-101.09441094410944,73.74241500602722],[-101.01161011610115,73.75423504691639],[-100.98280982809828,73.7728093968851],[-101.0080100801008,73.7728093968851],[-101.01881018810188,73.774497974155],[-101.02961029610296,73.77787512869475],[-101.00441004410044,73.803203787743],[-100.96840968409684,73.8116466740924],[-100.88560885608855,73.81333525136228],[-100.88560885608855,73.831909601331],[-100.8640086400864,73.831909601331],[-100.81720817208172,73.82008956044183],[-100.82440824408243,73.82008956044183],[-100.75960759607595,73.81502382863218],[-100.72360723607235,73.81671240590205],[-100.69840698406983,73.8302210240611],[-100.67320673206731,73.84710679675993],[-100.64080640806408,73.85386110583948],[-100.4140041400414,73.84372964222018],[-100.30240302403024,73.80995809682253],[-100.17280172801728,73.79982663320322],[-100.06840068400683,73.7728093968851],[-100.06480064800648,73.76943224234535],[-100.06120061200612,73.76098935599592],[-100.0540005400054,73.75423504691639],[-100.04320043200431,73.74579216056699],[-100.02160021600216,73.73734927421756],[-100.01440014400144,73.74410358329709],[-100.01440014400144,73.75423504691639],[-100.02880028800288,73.76605508780557],[-100.02160021600216,73.7728093968851],[-100,73.7829408605044],[-99.98559985599856,73.79138374685382],[-99.97839978399784,73.79476090139357],[-99.97479974799748,73.79644947866348],[-99.97119971199712,73.8015152104731],[-99.96759967599675,73.80658094228275],[-99.97119971199712,73.80995809682253],[-99.96759967599675,73.81333525136228],[-99.94239942399423,73.82346671498158],[-99.88119881198811,73.83528675587075],[-99.85959859598596,73.84372964222018],[-99.85239852398524,73.85554968310936],[-99.84519845198452,73.87243545580819],[-99.84519845198452,73.88763265123714],[-99.85959859598596,73.89607553758654],[-99.88119881198811,73.89607553758654],[-99.88839888398884,73.89607553758654],[-99.87759877598776,73.86736972399854],[-99.91359913599136,73.88763265123714],[-99.95319953199532,73.87918976488771],[-100.02880028800288,73.84204106495031],[-100.08640086400864,73.831909601331],[-100.26280262802628,73.84204106495031],[-100.25920259202591,73.84541821949006],[-100.25560255602555,73.84879537402983],[-100.2520025200252,73.85217252856958],[-100.24840248402484,73.85554968310936],[-100.26280262802628,73.85892683764914],[-100.27360273602736,73.86061541491901],[-100.30240302403024,73.86061541491901],[-100.27720277202772,73.88932122850701],[-100.24840248402484,73.90958415574559],[-100.21240212402124,73.9197156193649],[-100.15480154801547,73.92646992844442],[-100.11520115201152,73.9399785466035],[-100.09360093600935,73.94335570114325],[-100.02520025200252,73.94504427841315],[-100,73.9501100102228],[-99.8019980199802,73.93660139206372],[-99.80919809198092,73.9298470829842],[-99.82359823598236,73.92309277390467],[-99.83439834398344,73.91296131028537],[-99.8379983799838,73.90282984666607],[-99.83079830798307,73.89607553758654],[-99.8019980199802,73.87750118761784],[-99.78759787597876,73.86736972399854],[-99.77319773197732,73.87750118761784],[-99.75879758797588,73.87243545580819],[-99.729997299973,73.85386110583948],[-99.70119701197012,73.84710679675993],[-99.51399513995139,73.83359817860088],[-99.4959949599496,73.82684386952135],[-99.46359463594635,73.80826951955265],[-99.44559445594456,73.79982663320322],[-99.42759427594275,73.79813805593335],[-99.40959409594096,73.79982663320322],[-99.39159391593915,73.79982663320322],[-99.35559355593556,73.77618655142487],[-99.21879218792188,73.73903785148744],[-99.2079920799208,73.73228354240791],[-99.2079920799208,73.71877492424886],[-99.22239222392224,73.71033203789943],[-99.23679236792367,73.70357772881991],[-99.24759247592476,73.69682341974038],[-99.22959229592296,73.69682341974038],[-99.189991899919,73.69006911066086],[-99.17919179191792,73.69006911066086],[-99.16479164791647,73.69513484247051],[-99.15759157591576,73.70864346062956],[-99.15759157591576,73.72552923332839],[-99.14679146791468,73.74072642875734],[-99.12879128791288,73.75254646964652],[-99.10359103591036,73.75423504691639],[-99.05319053190532,73.75085789237662],[-98.91638916389164,73.7643665105357],[-98.83718837188371,73.76098935599592],[-98.79758797587975,73.73734927421756],[-98.79038790387904,73.73734927421756],[-98.7759877598776,73.75423504691639],[-98.74718747187471,73.7643665105357],[-98.71478714787148,73.77112081961522],[-98.68958689586896,73.7728093968851],[-98.68598685986859,73.7728093968851],[-98.67878678786788,73.77787512869475],[-98.60318603186032,73.78125228323452],[-98.53478534785347,73.79476090139357],[-98.09558095580955,73.81840098317193],[-98.04518045180451,73.83697533314066],[-97.97677976779768,73.84879537402983],[-97.95157951579516,73.86568114672866],[-97.92997929979299,73.88594407396724],[-97.89757897578976,73.90282984666607],[-97.90477904779047,73.90282984666607],[-97.77517775177752,73.9197156193649],[-97.7319773197732,73.90958415574559],[-97.75717757177571,73.89776411485641],[-97.81117811178112,73.88087834215759],[-97.83637836378364,73.86736972399854],[-97.80397803978039,73.85892683764914],[-97.76797767977679,73.86399256945876],[-97.69957699576996,73.88256691942749],[-97.61317613176132,73.89607553758654],[-97.569975699757,73.89438696031667],[-97.4619746197462,73.86568114672866],[-97.26037260372604,73.86061541491901],[-97.1919719197192,73.84710679675993],[-97.15957159571596,73.83528675587075],[-97.06957069570696,73.77112081961522],[-97.04077040770407,73.75930077872604],[-96.98316983169832,73.74916931510674],[-96.9579695796958,73.73734927421756],[-96.94356943569436,73.71370919243921],[-96.939969399694,73.69513484247051],[-96.939969399694,73.68669195612108],[-96.97236972369723,73.66305187434273],[-96.96876968769688,73.64110036983425],[-96.9939699396994,73.62590317440532],[-97.17037170371704,73.58875447446789],[-97.17757177571775,73.57355727903894],[-97.22077220772208,73.55667150634011],[-97.27837278372783,73.55498292907023],[-97.42597425974259,73.58537731992811],[-97.44757447574476,73.58537731992811],[-97.45837458374584,73.57693443357871],[-97.45477454774547,73.56511439268954],[-97.43677436774368,73.54316288818106],[-97.43317433174332,73.53303142456176],[-97.48357483574836,73.52121138367258],[-97.59157591575915,73.54316288818106],[-97.64557645576456,73.53978573364128],[-97.63117631176311,73.52627711548223],[-97.63477634776348,73.51614565186293],[-97.64917649176492,73.50770276551353],[-97.65637656376563,73.49757130189423],[-97.66357663576636,73.4908169928147],[-97.66717667176671,73.48575126100505],[-97.66717667176671,73.48237410646527],[-97.659976599766,73.47393122011587],[-97.64917649176492,73.46548833376644],[-97.63117631176311,73.4604226019568],[-97.61677616776167,73.45704544741704],[-97.59877598775988,73.45704544741704],[-97.55197551975519,73.46717691103635],[-97.4979749797498,73.4891284155448],[-97.4439744397444,73.50263703370388],[-97.39717397173972,73.4908169928147],[-97.40437404374043,73.48406268373517],[-97.37917379173791,73.47393122011587],[-97.34677346773468,73.46886548830622],[-97.22077220772208,73.47730837465562],[-97.18477184771848,73.47224264284597],[-97.16317163171631,73.45029113833752],[-97.18477184771848,73.44353682925797],[-97.25317253172531,73.43678252017844],[-97.23157231572316,73.42833963382904],[-97.18477184771848,73.42158532474951],[-97.16317163171631,73.40807670659044],[-97.17037170371704,73.40807670659044],[-97.16317163171631,73.40638812932056],[-97.14877148771487,73.39456808843138],[-97.15957159571596,73.39119093389161],[-97.16677166771667,73.38612520208196],[-97.17757177571775,73.37430516119278],[-97.17397173971739,73.35910796576385],[-97.1919719197192,73.35066507941443],[-97.22437224372243,73.35066507941443],[-97.26397263972639,73.36755085211325],[-97.29637296372964,73.36586227484338],[-97.5879758797588,73.32027068855655],[-97.66357663576636,73.32027068855655],[-97.65637656376563,73.31182780220712],[-97.67797677976779,73.30845064766737],[-97.7319773197732,73.30676207039747],[-97.82917829178291,73.27805625680946],[-97.85077850778508,73.26454763865041],[-97.85437854378543,73.25779332957089],[-97.85437854378543,73.25103902049136],[-97.8579785797858,73.24259613414193],[-97.86877868778687,73.23584182506241],[-98.18918189181892,73.11595283890074],[-98.23238232382323,73.08893560258261],[-98.34758347583475,73.04334401629578],[-98.40878408784087,73.03658970721625],[-98.49518495184951,73.01801535724755],[-98.51318513185132,73.00450673908847],[-98.47358473584735,73.00112958454872],[-98.45558455584556,72.99606385273907],[-98.44478444784447,72.9842438118499],[-98.44838448384483,72.97917808004024],[-98.47358473584735,72.96398088461129],[-98.44118441184412,72.95216084372211],[-98.43038430384304,72.94371795737271],[-98.43758437584376,72.93358649375341],[-98.44838448384483,72.92345503013411],[-98.4519845198452,72.91163498924493],[-98.4519845198452,72.8846177529268],[-98.44478444784447,72.87279771203762],[-98.43038430384304,72.86266624841832],[-98.4159841598416,72.86097767114845],[-98.41238412384124,72.87110913476775],[-98.40878408784087,72.8846177529268],[-98.40518405184052,72.89643779381598],[-98.39438394383943,72.9048806801654],[-98.38358383583835,72.91163498924493],[-98.31518315183152,72.94371795737271],[-98.26838268382683,72.97748950277034],[-98.22158221582215,72.9926866981993],[-98.1279812798128,73.0129496254379],[-98.09198091980919,73.03321255267647],[-98.0739807398074,73.02476966632707],[-98.05598055980559,73.02645824359695],[-98.01278012780128,73.039966861756],[-97.9839798397984,73.04334401629578],[-97.8759787597876,73.04840974810543],[-97.83637836378364,73.0416554390259],[-97.659976599766,73.03658970721625],[-97.25677256772568,72.96229230734141],[-97.22797227972279,72.93696364829316],[-97.24237242372423,72.93865222556306],[-97.24957249572495,72.93527507102328],[-97.25317253172531,72.92683218467388],[-97.2459724597246,72.91670072105458],[-97.26397263972639,72.88799490746658],[-97.27477274772747,72.87955202111715],[-97.29277292772927,72.8744862893075],[-97.41877418774187,72.86773198022797],[-97.41877418774187,72.86097767114845],[-97.26757267572675,72.85422336206892],[-97.22077220772208,72.84071474390984],[-97.20637206372064,72.83396043483032],[-97.17757177571775,72.81200893032184],[-97.17037170371704,72.80187746670256],[-97.16317163171631,72.78499169400374],[-97.14877148771487,72.78161453946396],[-97.10917109171092,72.78499169400374],[-97.09117091170911,72.78330311673383],[-97.07677076770767,72.77654880765431],[-97.03357033570336,72.74108868498678],[-97.02637026370263,72.7292686440976],[-97.029970299703,72.72420291228795],[-97.11277112771127,72.7005628305096],[-97.12717127171271,72.6904313668903],[-97.18477184771848,72.66847986238182],[-97.17757177571775,72.65328266695286],[-97.17037170371704,72.64821693514324],[-97.17757177571775,72.64821693514324],[-97.18837188371883,72.64315120333359],[-97.1919719197192,72.64146262606369],[-97.18837188371883,72.63977404879381],[-97.17757177571775,72.63470831698416],[-97.19557195571956,72.61444538974558],[-97.15957159571596,72.60769108066603],[-97.10557105571056,72.60769108066603],[-97.06957069570696,72.61444538974558],[-96.93276932769328,72.67523417146134],[-96.70956709567095,72.71407144866865],[-96.65916659166591,72.71407144866865],[-96.63756637566375,72.72082575774817],[-96.60156601566015,72.737711530447],[-96.59796597965979,72.74615441679643],[-96.6159661596616,72.75122014860608],[-96.53676536765367,72.75122014860608],[-96.52956529565296,72.7394001077169],[-96.52236522365223,72.7292686440976],[-96.51516515165152,72.72420291228795],[-96.52956529565296,72.71576002593852],[-96.56916569165692,72.70393998504935],[-96.58716587165871,72.69718567596982],[-96.57276572765727,72.68874278962042],[-96.4539645396454,72.64146262606369],[-96.45756457564575,72.61951112155523],[-96.45036450364503,72.59587103977685],[-96.42876428764288,72.57729668980815],[-96.40356403564036,72.56547664891897],[-96.41436414364144,72.55703376256957],[-96.43236432364323,72.54859087622015],[-96.43956439564396,72.53845941260084],[-96.42516425164251,72.54014798987075],[-96.39996399964,72.54521372168037],[-96.38916389163892,72.54521372168037],[-96.37836378363784,72.54014798987075],[-96.37476374763747,72.53339368079119],[-96.36756367563676,72.52663937171167],[-96.3639636396364,72.51819648536227],[-96.33516335163351,72.49793355812366],[-96.32436324363243,72.48611351723449],[-96.32076320763207,72.46753916726578]]],[[[-97.42597425974259,75.5204868712137],[-97.4079740797408,75.4715181303871],[-97.3719737197372,75.44112373952922],[-97.2819728197282,75.40228646232191],[-97.30357303573035,75.39553215324239],[-97.33237332373324,75.39722073051226],[-97.47277472774728,75.42423796683039],[-97.49437494374943,75.43774658498944],[-97.4979749797498,75.44618947133887],[-97.4979749797498,75.45463235768827],[-97.49437494374943,75.46476382130757],[-97.4979749797498,75.47489528492687],[-97.4979749797498,75.48333817127627],[-97.49077490774907,75.48840390308592],[-97.47997479974799,75.4917810576257],[-97.72477724777248,75.57283276658006],[-97.76077760777608,75.57452134384994],[-97.749977499775,75.54750410753181],[-97.78237782377823,75.54750410753181],[-97.82917829178291,75.55425841661136],[-97.8579785797858,75.54750410753181],[-97.85077850778508,75.53737264391253],[-97.79677796777968,75.52386402575345],[-97.77157771577716,75.50866683032453],[-97.76077760777608,75.5002239439751],[-97.749977499775,75.48840390308592],[-97.74637746377464,75.47489528492687],[-97.75717757177571,75.46645239857745],[-97.77517775177752,75.45969808949792],[-97.78957789577896,75.45800951222805],[-97.81117811178112,75.45969808949792],[-97.8219782197822,75.46476382130757],[-97.83277832778327,75.47320670765697],[-97.84357843578435,75.48502674854615],[-97.84717847178472,75.4900924803558],[-97.84717847178472,75.50360109851488],[-97.85077850778508,75.50697825305463],[-97.86157861578616,75.51204398486428],[-97.92277922779228,75.5187982939438],[-97.94437944379443,75.51710971667393],[-97.95517955179551,75.50697825305463],[-97.94437944379443,75.4917810576257],[-98.01998019980199,75.4917810576257],[-98.04158041580415,75.48502674854615],[-98.01638016380163,75.47827243946662],[-97.96957969579695,75.47827243946662],[-97.94437944379443,75.4715181303871],[-97.97317973179732,75.4630752440377],[-98.02718027180272,75.4613866667678],[-98.05598055980559,75.45800951222805],[-98.01998019980199,75.44956662587862],[-97.94077940779408,75.45463235768827],[-97.80397803978039,75.43436943044969],[-97.77517775177752,75.42423796683039],[-97.78237782377823,75.42254938956049],[-97.7859778597786,75.42086081229061],[-97.78957789577896,75.41917223502074],[-97.79317793177931,75.41748365775086],[-97.80397803978039,75.41410650321109],[-97.81117811178112,75.41410650321109],[-97.81837818378183,75.41579508048096],[-98.03438034380343,75.41579508048096],[-98.06318063180632,75.40228646232191],[-98.02718027180272,75.39384357597248],[-97.88677886778868,75.38033495781343],[-97.87957879578795,75.3735806487339],[-97.89037890378904,75.36682633965438],[-97.9119791197912,75.36176060784473],[-97.99477994779947,75.3550062987652],[-97.99117991179911,75.35838345330495],[-97.99117991179911,75.36007203057483],[-97.98757987579876,75.36176060784473],[-97.98757987579876,75.36851491692425],[-98.01278012780128,75.36682633965438],[-98.05958059580595,75.35669487603508],[-98.08118081180811,75.3550062987652],[-98.06318063180632,75.37526922600378],[-98.09558095580955,75.3735806487339],[-98.12438124381244,75.36851491692425],[-98.14598145981459,75.35669487603508],[-98.1639816398164,75.3347433715266],[-98.15318153181532,75.32967763971695],[-98.14238142381423,75.32798906244707],[-98.11718117181171,75.32798906244707],[-98.13878138781388,75.3347433715266],[-98.12438124381244,75.34149768060612],[-98.10638106381063,75.34318625787603],[-98.08838088380884,75.33812052606638],[-98.07758077580776,75.32798906244707],[-98.08838088380884,75.32123475336755],[-98.10278102781028,75.3161690215579],[-98.11718117181171,75.31279186701812],[-98.13158131581315,75.314480444288],[-98.11718117181171,75.2975946715892],[-98.08838088380884,75.28915178523977],[-98.05598055980559,75.28746320796989],[-98.03438034380343,75.29252893977954],[-98.04158041580415,75.29252893977954],[-98.01278012780128,75.314480444288],[-97.97317973179732,75.33305479425673],[-97.92997929979299,75.33980910333625],[-97.89037890378904,75.32798906244707],[-97.95157951579516,75.314480444288],[-97.94437944379443,75.30772613520847],[-97.96237962379624,75.30266040339882],[-98.0019800198002,75.27902032162046],[-97.93357933579335,75.26720028073129],[-97.9119791197912,75.26720028073129],[-97.9119791197912,75.27395458981081],[-97.92637926379264,75.28746320796989],[-97.91557915579156,75.30097182612894],[-97.89757897578976,75.3060375579386],[-97.8759787597876,75.29252893977954],[-97.88317883178831,75.28746320796989],[-97.85077850778508,75.26551170346141],[-97.76077760777608,75.23849446714328],[-97.7319773197732,75.21147723082515],[-97.77517775177752,75.21316580809506],[-97.79317793177931,75.20978865355528],[-97.80397803978039,75.1979686126661],[-97.76797767977679,75.19121430358658],[-97.6959769597696,75.19290288085645],[-97.65637656376563,75.18277141723715],[-97.67077670776708,75.18445999450705],[-97.67797677976779,75.18277141723715],[-97.68517685176852,75.17095137634797],[-97.61317613176132,75.15406560364914],[-97.59517595175951,75.15744275818892],[-97.61677616776167,75.16419706726845],[-97.61677616776167,75.17095137634797],[-97.60237602376023,75.17095137634797],[-97.5879758797588,75.16588564453832],[-97.57717577175771,75.1591313354588],[-97.569975699757,75.1489998718395],[-97.64197641976419,75.12704836733104],[-97.72837728377283,75.11353974917196],[-97.81117811178112,75.11353974917196],[-98.01278012780128,75.1591313354588],[-98.03438034380343,75.1777056854275],[-98.03438034380343,75.18614857177693],[-98.01998019980199,75.20134576720588],[-98.01998019980199,75.21147723082515],[-98.03438034380343,75.21992011717458],[-98.05958059580595,75.22498584898423],[-98.10278102781028,75.22498584898423],[-98.08118081180811,75.2081000762854],[-98.09198091980919,75.1979686126661],[-98.14958149581496,75.18277141723715],[-98.14238142381423,75.18277141723715],[-98.12438124381244,75.1777056854275],[-98.14238142381423,75.17095137634797],[-98.14958149581496,75.17095137634797],[-98.13158131581315,75.15406560364914],[-98.10278102781028,75.1405569854901],[-98.02718027180272,75.12029405825149],[-97.99117991179911,75.11691690371174],[-97.97317973179732,75.11185117190209],[-97.96597965979659,75.10509686282256],[-97.95877958779587,75.08989966739361],[-97.95157951579516,75.08483393558396],[-97.94437944379443,75.07301389469478],[-97.94437944379443,75.05275096745618],[-97.95157951579516,75.0324880402176],[-97.95877958779587,75.01897942205855],[-97.97677976779768,75.0139136902489],[-98.03438034380343,75.02573373113808],[-98.39438394383943,75.00715938116934],[-98.75078750787507,74.98858503120064],[-98.79038790387904,74.99871649481994],[-98.74718747187471,75.012225112979],[-98.77238772387723,75.01897942205855],[-98.829988299883,75.01053653570912],[-98.85518855188552,75.01897942205855],[-98.84438844388444,75.02573373113808],[-98.84798847988479,75.02911088567782],[-98.85878858788588,75.03755377202725],[-98.86238862388623,75.03924234929713],[-98.85158851588515,75.0510623901863],[-98.84438844388444,75.05275096745618],[-98.83718837188371,75.05443954472608],[-98.85878858788588,75.06457100834538],[-98.9019890198902,75.06625958561526],[-98.94158941589416,75.0611938538056],[-98.96678966789668,75.04599665837665],[-98.94158941589416,75.03079946294773],[-98.93798937989379,75.01729084478865],[-98.95238952389523,75.00884795843925],[-99.37359373593736,74.98858503120064],[-99.4059940599406,74.99871649481994],[-99.39879398793988,75.00209364935972],[-99.37719377193771,75.012225112979],[-99.39159391593915,75.02911088567782],[-99.37719377193771,75.04768523564655],[-99.29439294392944,75.09665397647314],[-99.279992799928,75.11016259463221],[-99.28359283592836,75.12198263552139],[-99.30519305193052,75.13211409914067],[-99.33039330393304,75.12198263552139],[-99.37359373593736,75.08483393558396],[-99.38799387993879,75.07639104923456],[-99.44559445594456,75.0611938538056],[-99.48879488794887,75.03586519475735],[-99.49959499594996,75.0324880402176],[-99.48879488794887,75.01560226751877],[-99.4419944199442,75.00547080389947],[-99.42759427594275,74.99196218574042],[-99.47799477994779,74.99702791755007],[-99.4959949599496,74.9936507630103],[-99.52839528395283,74.98351929939099],[-99.64719647196472,74.97676499031147],[-99.98919989199892,74.99533934028017],[-100.33120331203311,75.0139136902489],[-100.36720367203672,75.0223565765983],[-100.39240392403924,75.03924234929713],[-100.39960399603996,75.05950527653573],[-100.3960039600396,75.07470247196466],[-100.38880388803888,75.08821109012374],[-100.38520385203852,75.10509686282256],[-100.38880388803888,75.12029405825149],[-100.3960039600396,75.13042552187079],[-100.43200432004319,75.1489998718395],[-100.41760417604176,75.15575418091905],[-100.40680406804067,75.15744275818892],[-100.39960399603996,75.15744275818892],[-100.39960399603996,75.16419706726845],[-100.45360453604536,75.18108283996727],[-100.51480514805148,75.1878371490468],[-100.53640536405364,75.19290288085645],[-100.55080550805508,75.20472292174563],[-100.48960489604896,75.2266744262541],[-100.41760417604176,75.23511731260353],[-100.01800018000179,75.23005158079388],[-99.98559985599856,75.23849446714328],[-100.01080010800108,75.24693735349271],[-100.06120061200612,75.24524877622281],[-100.11520115201152,75.25369166257224],[-100.17280172801728,75.25369166257224],[-100.2520025200252,75.26382312619154],[-100.35280352803528,75.25706881711199],[-100.40680406804067,75.27395458981081],[-100.36360363603636,75.27902032162046],[-100.32040320403203,75.28070889889037],[-100.28080280802807,75.28915178523977],[-100.24840248402484,75.314480444288],[-100.5040050400504,75.29252893977954],[-100.53640536405364,75.2975946715892],[-100.67680676806768,75.33643194879647],[-100.74880748807487,75.3448748351459],[-100.78120781207812,75.3550062987652],[-100.76320763207632,75.3634491851146],[-100.6480064800648,75.38371211235321],[-100.62640626406264,75.3820235350833],[-100.60480604806048,75.37526922600378],[-100.62640626406264,75.37526922600378],[-100.68040680406804,75.36851491692425],[-100.7020070200702,75.36176060784473],[-100.66960669606696,75.3533177214953],[-100.62280622806227,75.34994056695555],[-100.58680586805868,75.3533177214953],[-100.5760057600576,75.36851491692425],[-100.50040500405004,75.36682633965438],[-100.46080460804608,75.37020349419413],[-100.42480424804248,75.3820235350833],[-100.45360453604536,75.38877784416286],[-100.51480514805148,75.39384357597248],[-100.53640536405364,75.40904077140144],[-100.5220052200522,75.40904077140144],[-100.56880568805688,75.42761512137014],[-100.61920619206192,75.43268085317979],[-100.720007200072,75.43099227590992],[-100.720007200072,75.43774658498944],[-100.38160381603815,75.44787804860874],[-100.03960039600396,75.45800951222805],[-100.00720007200071,75.4715181303871],[-100.30960309603095,75.47827243946662],[-100.22320223202232,75.4900924803558],[-100.03960039600396,75.47996101673652],[-99.95319953199532,75.49853536670523],[-100.28080280802807,75.5204868712137],[-100.28080280802807,75.52724118029323],[-99.83079830798307,75.54750410753181],[-99.8559985599856,75.55425841661136],[-99.93519935199352,75.54750410753181],[-100.01800018000179,75.55425841661136],[-100.04320043200431,75.55425841661136],[-100.04320043200431,75.56101272569089],[-99.99279992799927,75.56101272569089],[-99.79839798397984,75.58802996200902],[-99.75159751597516,75.58971853927889],[-99.70479704797047,75.59478427108854],[-99.66519665196651,75.61673577559702],[-99.86319863198632,75.61673577559702],[-99.86319863198632,75.62349008467655],[-99.84879848798488,75.62517866194642],[-99.80919809198092,75.63531012556572],[-99.819998199982,75.65050732099468],[-99.82359823598236,75.6555730528043],[-99.39159391593915,75.67077024823325],[-98.95958959589596,75.68427886639233],[-98.91278912789127,75.69103317547186],[-98.89478894788948,75.69947606182126],[-98.90558905589056,75.70960752544056],[-98.93078930789308,75.71467325725021],[-99.2979929799298,75.69609890728151],[-99.66519665196651,75.67752455731278],[-99.63999639996399,75.68765602093208],[-99.55719557195572,75.69778748455138],[-99.88839888398884,75.68259028912243],[-100.22320223202232,75.6673930936935],[-100.27360273602736,75.65219589826455],[-100.30240302403024,75.65050732099468],[-100.35280352803528,75.6555730528043],[-100.47880478804788,75.64206443464525],[-100.55440554405544,75.65050732099468],[-100.80640806408064,75.63193297102595],[-101.0620106201062,75.61504719832712],[-101.10161101611016,75.60322715743794],[-101.1160111601116,75.60153858016807],[-101.1520115201152,75.60153858016807],[-101.23121231212312,75.58802996200902],[-101.28881288812887,75.59140711654877],[-101.36081360813608,75.57789849838971],[-101.39321393213932,75.58802996200902],[-101.37161371613716,75.59478427108854],[-101.40761407614076,75.60660431197772],[-101.45081450814507,75.6082928892476],[-101.75681756817568,75.57789849838971],[-102.06282062820628,75.54750410753181],[-102.20682206822067,75.55425841661136],[-102.40122401224012,75.54074979845228],[-102.63162631626317,75.49853536670523],[-102.66762667626676,75.50360109851488],[-102.66762667626676,75.52724118029323],[-102.68562685626856,75.53737264391253],[-102.71082710827108,75.54074979845228],[-102.76122761227612,75.54074979845228],[-102.77562775627756,75.54581553026193],[-102.76482764827648,75.55594699388124],[-102.72882728827288,75.57452134384994],[-102.75762757627577,75.58634138473911],[-102.84762847628475,75.5998500028982],[-102.87282872828727,75.60998146651747],[-102.880028800288,75.6184243528669],[-102.86922869228692,75.62517866194642],[-102.8440284402844,75.63362154829585],[-102.82242822428223,75.6369987028356],[-102.80082800828008,75.63362154829585],[-102.76842768427684,75.62349008467655],[-102.7360273602736,75.61673577559702],[-102.63162631626317,75.61673577559702],[-102.6460264602646,75.6268672392163],[-102.68562685626856,75.63024439375607],[-102.70362703627036,75.63531012556572],[-102.69282692826928,75.64037585737537],[-102.68562685626856,75.64544158918503],[-102.67482674826748,75.64881874372477],[-102.66762667626676,75.65050732099468],[-102.68922689226892,75.67752455731278],[-102.67122671226711,75.67921313458268],[-102.63882638826388,75.68934459820196],[-102.62082620826207,75.69103317547186],[-102.5740257402574,75.68934459820196],[-102.54882548825488,75.69103317547186],[-102.53082530825309,75.69778748455138],[-102.54162541625416,75.70623037090078],[-102.5560255602556,75.70960752544056],[-102.57042570425703,75.71129610271043],[-102.58482584825848,75.71129610271043],[-102.56322563225632,75.72480472086951],[-102.52362523625236,75.72987045267917],[-102.24642246422464,75.72480472086951],[-102.1060210602106,75.69778748455138],[-102.07362073620736,75.69778748455138],[-102.00882008820088,75.70454179363091],[-102.00882008820088,75.71129610271043],[-102.03762037620376,75.70960752544056],[-102.06642066420665,75.70454179363091],[-102.09162091620917,75.70285321636104],[-102.12042120421204,75.71129610271043],[-102.09882098820988,75.71805041178996],[-102.09162091620917,75.71973898905986],[-102.11682116821169,75.73831333902856],[-102.20682206822067,75.73662476175869],[-102.23562235622356,75.74506764810809],[-102.22122221222212,75.75857626626717],[-102.09162091620917,75.78728207985517],[-102.12042120421204,75.79910212074435],[-102.32562325623256,75.7839049253154],[-102.34722347223472,75.78728207985517],[-102.36522365223652,75.80079069801423],[-102.37242372423724,75.81092216163353],[-102.36162361623616,75.81936504798293],[-102.34362343623435,75.83793939795166],[-102.33642336423364,75.8413165524914],[-102.31842318423183,75.84638228430106],[-102.28242282422823,75.86495663426976],[-102.26082260822608,75.87002236607941],[-101.83241832418324,75.90548248874694],[-101.8180181801818,75.90379391147707],[-101.80361803618035,75.89535102512767],[-101.7820178201782,75.87339952061919],[-101.76761767617676,75.87002236607941],[-101.75321753217531,75.86833378880954],[-101.70641706417064,75.85482517065049],[-101.63441634416344,75.84638228430106],[-101.57681576815767,75.82780793433236],[-101.4940149401494,75.81429931617328],[-101.45441454414544,75.81429931617328],[-101.4580145801458,75.8126107389034],[-101.46161461614616,75.80923358436362],[-101.46521465214651,75.80585642982388],[-101.46881468814688,75.80079069801423],[-101.46521465214651,75.79234781166483],[-101.46161461614616,75.78728207985517],[-101.46521465214651,75.78052777077562],[-101.47601476014759,75.7737734616961],[-101.44721447214472,75.76364199807679],[-101.41481414814147,75.75688768899727],[-101.27441274412743,75.74506764810809],[-101.260012600126,75.74844480264787],[-101.24921249212491,75.75351053445752],[-101.23841238412383,75.76026484353704],[-101.22761227612276,75.7653305753467],[-101.1520115201152,75.7839049253154],[-100.98640986409863,75.79065923439492],[-100.91440914409144,75.81429931617328],[-101.05121051210511,75.80754500709375],[-101.02961029610296,75.80079069801423],[-101.06561065610656,75.79065923439492],[-101.14841148411485,75.79065923439492],[-101.22761227612276,75.77883919350575],[-101.35721357213572,75.78052777077562],[-101.35361353613536,75.79065923439492],[-101.32841328413284,75.81092216163353],[-101.32841328413284,75.81767647071305],[-101.35001350013499,75.83625082068176],[-101.37161371613716,75.85144801611071],[-101.41481414814147,75.86157947973001],[-101.50841508415084,75.85651374792036],[-101.55161551615515,75.87002236607941],[-101.54441544415444,75.88521956150836],[-101.55161551615515,75.89703960239754],[-101.56961569615696,75.90717106601684],[-101.5840158401584,75.91392537509637],[-101.59121591215911,75.92405683871567],[-101.56961569615696,75.93587687960485],[-101.48681486814868,75.9595169613832],[-101.42561425614255,75.96627127046273],[-101.40041400414003,75.97471415681215],[-101.3680136801368,75.9966656613206],[-101.35361353613536,75.99835423859051],[-101.33921339213391,76.00004281586038],[-101.32841328413284,76.00510854767003],[-101.3140131401314,76.01186285674956],[-101.30321303213032,76.02030574309899],[-101.34281342813428,76.02199432036886],[-101.41481414814147,76.00341997040016],[-101.710017100171,75.98991135224108],[-101.77841778417783,76.00341997040016],[-101.84321843218432,76.02706005217851],[-101.89721897218972,76.06420875211592],[-101.9080190801908,76.08784883389427],[-101.90441904419043,76.106423183863],[-101.88641886418864,76.12162037929193],[-101.86481864818649,76.13344042018113],[-101.84681846818468,76.13850615199075],[-101.80721807218072,76.14863761561006],[-101.78921789217893,76.15708050195948],[-101.75681756817568,76.17903200646796],[-101.74241742417423,76.18409773827759],[-101.54441544415444,76.21111497459572],[-101.3860138601386,76.2533294063428],[-101.78561785617856,76.21786928367524],[-101.80721807218072,76.22124643821502],[-101.85041850418504,76.22968932456442],[-102.10242102421024,76.22124643821502],[-102.16722167221673,76.23982078818372],[-102.13842138421384,76.24826367453315],[-102.09882098820988,76.2516408290729],[-102.06642066420665,76.25839513815242],[-102.05922059220592,76.2803466426609],[-102.07722077220772,76.29385526081998],[-102.11682116821169,76.29723241535973],[-102.1960219602196,76.29385526081998],[-102.17082170821708,76.3006095698995],[-102.08442084420844,76.31242961078868],[-102.0520205202052,76.32256107440799],[-102.04842048420484,76.32931538348751],[-102.09882098820988,76.34957831072612],[-102.06282062820628,76.35633261980564],[-101.98721987219872,76.35633261980564],[-101.95481954819547,76.36984123796469],[-101.980019800198,76.37659554704422],[-102.0340203402034,76.38503843339365],[-102.05922059220592,76.39685847428282],[-102.0340203402034,76.41205566971178],[-102.00522005220051,76.4188099787913],[-101.96921969219692,76.42049855606118],[-101.9440194401944,76.42556428787083],[-101.84681846818468,76.45427010145883],[-101.81081810818108,76.45933583326848],[-101.41481414814147,76.43738432876],[-101.40041400414003,76.43231859695035],[-101.37161371613716,76.42049855606118],[-101.32121321213212,76.41374424698165],[-101.30681306813068,76.41036709244187],[-101.21681216812168,76.36984123796469],[-101.08721087210871,76.34282400164656],[-101.05841058410584,76.32762680621764],[-101.06921069210692,76.32593822894773],[-101.08361083610836,76.31918391986821],[-101.09081090810908,76.31074103351881],[-101.0980109801098,76.3006095698995],[-101.09081090810908,76.3006095698995],[-101.12681126811268,76.26008371542233],[-101.13041130411304,76.24488651999337],[-101.10521105211052,76.23982078818372],[-100.96120961209611,76.23137790183432],[-100.8460084600846,76.21111497459572],[-100.75240752407524,76.18072058373784],[-100.71640716407164,76.17396627465831],[-100.70560705607056,76.16552338830888],[-100.69480694806948,76.15708050195948],[-100.68760687606876,76.15032619287993],[-100.65160651606516,76.14188330653053],[-100.63360633606335,76.13681757472088],[-100.62640626406264,76.12330895656183],[-100.71640716407164,76.106423183863],[-100.74160741607416,76.0962917202437],[-100.42120421204211,76.12330895656183],[-100.45720457204571,76.10135745205335],[-100.62640626406264,76.08784883389427],[-100.62640626406264,76.08109452481474],[-100.35280352803528,76.06589732938582],[-100.30960309603095,76.04394582487734],[-100.29520295202951,76.03550293852791],[-100.20520205202051,75.99497708405073],[-100.19440194401943,75.9882227749712],[-100.18000180001799,75.97133700227238],[-100.16920169201691,75.96289411592298],[-100.14400144001439,75.95782838411333],[-100.0720007200072,75.95107407503377],[-100.08280082800827,75.93587687960485],[-100.10440104401044,75.92912257052532],[-100.12960129601295,75.92574541598555],[-100.15120151201512,75.91730252963612],[-100.12960129601295,75.91054822055659],[-100.10080100801008,75.90885964328672],[-100.06840068400683,75.9122367978265],[-100.01440014400144,75.92574541598555],[-100,75.92743399325542],[-99.98559985599856,75.92405683871567],[-99.9819998199982,75.9206796841759],[-99.97479974799748,75.9122367978265],[-99.97119971199712,75.90548248874694],[-99.9819998199982,75.90041675693732],[-99.9819998199982,75.89366244785776],[-99.97839978399784,75.88690813877824],[-99.97479974799748,75.88353098423849],[-99.96039960399604,75.87508809788906],[-99.9459994599946,75.87508809788906],[-99.92079920799208,75.88353098423849],[-99.86679866798667,75.90717106601684],[-99.72279722797228,75.91730252963612],[-99.7119971199712,75.91899110690602],[-99.68319683196832,75.93587687960485],[-99.66879668796687,75.93756545687472],[-99.63999639996399,75.93756545687472],[-99.60399603996039,75.94263118868437],[-99.59319593195931,75.94600834322415],[-99.58959589595895,75.95445122957355],[-99.5859958599586,75.96289411592298],[-99.57159571595716,75.96627127046273],[-99.55359553595535,75.96458269319285],[-99.52119521195212,75.95782838411333],[-99.49239492394923,75.9595169613832],[-99.4419944199442,75.97302557954225],[-99.49239492394923,75.98315704316155],[-99.819998199982,75.95107407503377],[-99.86319863198632,75.93756545687472],[-99.86679866798667,75.9493854977639],[-99.87759877598776,75.95107407503377],[-99.88839888398884,75.95107407503377],[-99.90279902799028,75.95445122957355],[-99.90279902799028,75.96458269319285],[-99.89559895598956,75.97133700227238],[-99.88119881198811,75.97640273408203],[-99.87039870398704,75.9780913113519],[-99.89199891998919,75.98991135224108],[-99.91359913599136,75.98991135224108],[-99.93879938799388,75.9882227749712],[-99.9639996399964,75.99159992951098],[-99.96759967599675,75.99497708405073],[-99.96759967599675,76.00004281586038],[-99.97119971199712,76.00510854767003],[-99.97839978399784,76.01017427947968],[-99.99279992799927,76.01355143401943],[-100.0360003600036,76.01355143401943],[-100.02160021600216,76.01692858855921],[-100.01080010800108,76.02199432036886],[-100,76.03043720671826],[-99.99279992799927,76.04056867033756],[-100.06120061200612,76.04225724760744],[-100.08280082800827,76.05238871122674],[-100.10440104401044,76.0760287930051],[-100.1080010800108,76.0861602566244],[-100.11160111601116,76.0962917202437],[-100.11520115201152,76.10304602932322],[-100.12960129601295,76.10980033840275],[-100.1980019800198,76.12668611110158],[-100.21960219602195,76.13681757472088],[-100.11880118801187,76.13681757472088],[-100.12240122401224,76.14526046107031],[-100.1260012600126,76.15032619287993],[-100.08280082800827,76.16045765649923],[-100.03960039600396,76.15876907922936],[-99.95319953199532,76.1435718838004],[-99.80919809198092,76.13850615199075],[-99.72279722797228,76.1249975338317],[-99.68319683196832,76.12330895656183],[-99.55719557195572,76.14526046107031],[-99.459994599946,76.15032619287993],[-99.41679416794167,76.16383481103901],[-99.70119701197012,76.14188330653053],[-99.72639726397264,76.14526046107031],[-99.76239762397624,76.15876907922936],[-99.77679776797768,76.16214623376914],[-99.88119881198811,76.17227769738841],[-99.97119971199712,76.20267208824632],[-99.99279992799927,76.20436066551619],[-100.16920169201691,76.19085204735714],[-100.47880478804788,76.2330664791042],[-100.51120511205112,76.24995225180302],[-100.49680496804967,76.27021517904163],[-100.44280442804428,76.28372379720068],[-100.07560075600756,76.27359233358138],[-100.07560075600756,76.2803466426609],[-100.090000900009,76.2803466426609],[-100.13320133201331,76.28710095174046],[-100.1260012600126,76.29385526081998],[-100.19440194401943,76.3006095698995],[-100.2160021600216,76.30736387897903],[-100.17640176401764,76.31749534259833],[-100.14040140401404,76.3090524562489],[-100.10080100801008,76.29385526081998],[-100.06480064800648,76.28710095174046],[-99.89559895598956,76.27696948812115],[-99.84519845198452,76.28710095174046],[-99.99639996399964,76.29892099262963],[-100.02160021600216,76.30736387897903],[-100,76.3090524562489],[-99.94959949599496,76.31580676532846],[-99.9279992799928,76.32256107440799],[-99.95679956799567,76.32931538348751],[-100.02880028800288,76.32593822894773],[-100.06480064800648,76.32762680621764],[-100.18000180001799,76.36308692888517],[-100.16920169201691,76.36984123796469],[-100.13680136801368,76.38334985612374],[-100.16560165601656,76.38166127885387],[-100.22320223202232,76.36984123796469],[-100.24840248402484,76.36984123796469],[-100.32040320403203,76.3884155879334],[-100.67680676806768,76.38166127885387],[-100.96480964809648,76.47959876050706],[-100.98640986409863,76.50661599682519],[-100.73080730807308,76.53194465587345],[-100.7020070200702,76.54038754222285],[-100.70920709207091,76.54376469676262],[-100.71640716407164,76.54714185130237],[-100.72360723607235,76.5538961603819],[-100.72720727207272,76.56065046946145],[-100.70920709207091,76.5640276240012],[-100.65160651606516,76.58091339670003],[-100.57960579605796,76.58766770577955],[-100.42480424804248,76.62988213752664],[-100.38520385203852,76.62988213752664],[-100.33120331203311,76.64507933295556],[-100.27000270002699,76.65014506476521],[-99.85239852398524,76.60961921028803],[-99.83079830798307,76.61130778755793],[-99.76599765997659,76.63325929206638],[-99.74079740797407,76.63663644660616],[-99.63999639996399,76.63663644660616],[-99.58959589595895,76.62819356025676],[-99.549995499955,76.60961921028803],[-99.57879578795787,76.60117632393863],[-99.65079650796508,76.60624205574828],[-99.68679686796868,76.6028649012085],[-99.52479524795248,76.59104486031933],[-99.29079290792907,76.50323884228544],[-99.25479254792548,76.49986168774566],[-99.25479254792548,76.50661599682519],[-99.26199261992619,76.50661599682519],[-99.26199261992619,76.51337030590471],[-99.19719197191972,76.51674746044449],[-99.16479164791647,76.51337030590471],[-99.13959139591395,76.49986168774566],[-99.22239222392224,76.48297591504684],[-99.25839258392584,76.46946729688779],[-99.24039240392403,76.4475157923793],[-99.15759157591576,76.41543282425152],[-99.1179911799118,76.40698993790213],[-99.07119071190712,76.40361278336235],[-99.07119071190712,76.41036709244187],[-99.11079110791107,76.42894144241058],[-99.12879128791288,76.44245006056966],[-99.13959139591395,76.45427010145883],[-99.12159121591216,76.46440156507813],[-99.0459904599046,76.4559586787287],[-99.02079020790208,76.45933583326848],[-99.03519035190351,76.45933583326848],[-99.03519035190351,76.46609014234801],[-99.01359013590135,76.47115587415766],[-98.97758977589775,76.47284445142753],[-98.95238952389523,76.46777871961788],[-98.95238952389523,76.45089294691905],[-98.93078930789308,76.43907290602988],[-98.90558905589056,76.43569575149013],[-98.85158851588515,76.43738432876],[-98.85158851588515,76.4458272151094],[-98.86238862388623,76.44413863783953],[-98.87318873188731,76.4458272151094],[-98.89118891188912,76.45089294691905],[-98.85518855188552,76.46609014234801],[-98.87678876788767,76.47959876050706],[-98.90558905589056,76.49310737866614],[-98.93438934389344,76.50323884228544],[-98.95958959589596,76.50661599682519],[-98.97398973989739,76.50999315136497],[-98.98118981189812,76.51843603771437],[-98.98838988389883,76.5268789240638],[-98.99558995589956,76.53363323314332],[-99.009990099901,76.53701038768307],[-99.04239042390424,76.53701038768307],[-99.05679056790568,76.54038754222285],[-99.04239042390424,76.55220758311202],[-99.03879038790387,76.56233904673132],[-99.04239042390424,76.57247051035063],[-99.05679056790568,76.58091339670003],[-99.0459904599046,76.58091339670003],[-99.03519035190351,76.58091339670003],[-99.02439024390243,76.5842905512398],[-99.01359013590135,76.58935628304945],[-99.01719017190172,76.59104486031933],[-99.02439024390243,76.59948774666873],[-99.0279902799028,76.6028649012085],[-98.97398973989739,76.61637351936756],[-98.90558905589056,76.62481640571698],[-98.83358833588336,76.62312782844711],[-98.78318783187832,76.60961921028803],[-98.77958779587796,76.58935628304945],[-98.75078750787507,76.5826019739699],[-98.72558725587255,76.58935628304945],[-98.73278732787328,76.61637351936756],[-98.6139861398614,76.61130778755793],[-98.54918549185491,76.61468494209768],[-98.50958509585095,76.63663644660616],[-98.53118531185312,76.64339075568569],[-98.5419854198542,76.64339075568569],[-98.53118531185312,76.64845648749534],[-98.51678516785168,76.65183364203511],[-98.4879848798488,76.65014506476521],[-98.4879848798488,76.65689937384477],[-98.56358563585636,76.66534226019417],[-98.67878678786788,76.65014506476521],[-98.7759877598776,76.65014506476521],[-98.829988299883,76.65858795111464],[-98.85518855188552,76.67716230108334],[-98.45558455584556,76.682228032893],[-98.42678426784268,76.67716230108334],[-98.40878408784087,76.66703083746404],[-98.40878408784087,76.65858795111464],[-98.43038430384304,76.64170217841581],[-98.43398433984339,76.62988213752664],[-98.42318423184231,76.62481640571698],[-98.33318333183331,76.60624205574828],[-98.22878228782288,76.59948774666873],[-98.17838178381784,76.59104486031933],[-98.14958149581496,76.58935628304945],[-98.27918279182792,76.58091339670003],[-98.29358293582935,76.5842905512398],[-98.34398343983439,76.59611059212898],[-98.40518405184052,76.59611059212898],[-98.36918369183691,76.57078193308072],[-98.32238322383223,76.5640276240012],[-98.2719827198272,76.5640276240012],[-98.22878228782288,76.55896189219155],[-98.19638196381963,76.54883042857227],[-98.18558185581855,76.54714185130237],[-98.17838178381784,76.55051900584215],[-98.17478174781748,76.5538961603819],[-98.17118171181711,76.55896189219155],[-98.15678156781567,76.56065046946145],[-98.13518135181351,76.55727331492167],[-98.09918099180992,76.53701038768307],[-98.0739807398074,76.53363323314332],[-97.80757807578075,76.51674746044449],[-97.66357663576636,76.48635306958661],[-97.68157681576815,76.47453302869741],[-97.69957699576996,76.46609014234801],[-97.68877688776888,76.4559586787287],[-97.67437674376744,76.4458272151094],[-97.66357663576636,76.43231859695035],[-97.66717667176671,76.42049855606118],[-97.68517685176852,76.41205566971178],[-97.7139771397714,76.40530136063222],[-97.7319773197732,76.39516989701295],[-97.7319773197732,76.38334985612374],[-97.73557735577356,76.37828412431412],[-97.74637746377464,76.36139835161529],[-97.74637746377464,76.35295546526586],[-97.75357753577535,76.34451257891646],[-97.77877778777787,76.32931538348751],[-97.78957789577896,76.32256107440799],[-97.77157771577716,76.31749534259833],[-97.73557735577356,76.31411818805856],[-97.72117721177212,76.30736387897903],[-97.72477724777248,76.30229814716938],[-97.72837728377283,76.29216668355008],[-97.7319773197732,76.28710095174046],[-97.71037710377104,76.27021517904163],[-97.55557555575555,76.22631217002467],[-97.52677526775267,76.21111497459572],[-97.50517505175051,76.19085204735714],[-97.51237512375124,76.19085204735714],[-97.50157501575015,76.15708050195948],[-97.50157501575015,76.1435718838004],[-97.51597515975159,76.12668611110158],[-97.53037530375303,76.1165546474823],[-97.569975699757,76.09966887478348],[-97.58077580775807,76.08953741116417],[-97.5879758797588,76.07940594754487],[-97.59157591575915,76.05238871122674],[-97.59157591575915,76.04394582487734],[-97.59517595175951,76.03381436125804],[-97.60237602376023,76.02706005217851],[-97.61317613176132,76.02030574309899],[-97.62037620376204,76.01355143401943],[-97.62757627576275,75.99328850678086],[-97.63477634776348,75.98991135224108],[-97.64557645576456,75.9882227749712],[-97.65277652776527,75.98146846589168],[-97.65637656376563,75.97471415681215],[-97.64917649176492,75.96627127046273],[-97.64557645576456,75.9595169613832],[-97.65277652776527,75.95107407503377],[-97.64557645576456,75.9409426114145],[-97.63837638376384,75.93249972506507],[-97.62037620376204,75.91392537509637],[-97.57357573575736,75.88353098423849],[-97.569975699757,75.86495663426976],[-97.5879758797588,75.84975943884083],[-97.64557645576456,75.82443077979258],[-97.65277652776527,75.81767647071305],[-97.659976599766,75.80923358436362],[-97.66717667176671,75.8024792752841],[-97.73917739177392,75.78221634804552],[-97.80037800378004,75.77715061623587],[-97.89757897578976,75.76026484353704],[-97.94077940779408,75.74506764810809],[-97.89757897578976,75.73662476175869],[-97.67077670776708,75.72649329813939],[-97.65637656376563,75.72142756632974],[-97.62037620376204,75.70791894817069],[-97.60237602376023,75.70454179363091],[-97.42597425974259,75.69778748455138],[-97.37917379173791,75.67921313458268],[-97.3719737197372,75.67414740277303],[-97.3719737197372,75.65895020734408],[-97.37917379173791,75.65388447553443],[-97.38637386373864,75.65219589826455],[-97.39717397173972,75.64375301191512],[-97.4079740797408,75.6268672392163],[-97.4079740797408,75.60998146651747],[-97.41157411574116,75.57452134384994],[-97.41157411574116,75.57620992111984],[-97.4079740797408,75.57283276658006],[-97.40437404374043,75.56776703477041],[-97.40437404374043,75.56438988023064],[-97.4079740797408,75.55932414842101],[-97.41157411574116,75.55594699388124],[-97.41877418774187,75.55425841661136],[-97.42597425974259,75.5289297575631],[-97.42597425974259,75.5204868712137]]],[[[-105.39645396453965,75.67414740277303],[-105.39285392853928,75.6657045164236],[-105.38925389253892,75.65895020734408],[-105.38925389253892,75.65388447553443],[-105.39645396453965,75.64375301191512],[-105.41085410854109,75.63193297102595],[-105.44685446854469,75.62349008467655],[-105.46485464854648,75.61673577559702],[-105.47565475654756,75.59816142562829],[-105.48285482854828,75.58127565292946],[-105.49365493654936,75.56607845750054],[-105.51885518855188,75.55425841661136],[-105.54045540455404,75.55088126207158],[-105.59085590855908,75.55088126207158],[-105.68805688056881,75.52724118029323],[-105.68805688056881,75.5204868712137],[-105.68085680856808,75.5187982939438],[-105.67365673656737,75.51542113940405],[-105.66285662856629,75.50697825305463],[-105.68445684456844,75.50528967578475],[-105.73125731257312,75.5002239439751],[-105.74925749257493,75.4917810576257],[-105.71685716857168,75.48333817127627],[-105.61965619656196,75.4816495940064],[-105.59445594455944,75.46476382130757],[-105.60885608856088,75.4613866667678],[-105.64485644856448,75.44112373952922],[-105.66285662856629,75.43268085317979],[-105.70965709657096,75.41917223502074],[-105.70965709657096,75.41072934867131],[-105.68085680856808,75.39384357597248],[-105.66645666456664,75.38540068962308],[-105.65565655656556,75.37695780327365],[-105.6520565205652,75.36851491692425],[-105.66285662856629,75.3550062987652],[-105.68085680856808,75.34656341241578],[-105.7060570605706,75.34318625787603],[-105.72045720457204,75.33812052606638],[-105.71685716857168,75.32798906244707],[-105.73485734857348,75.314480444288],[-105.81045810458104,75.29928324885907],[-105.8680586805868,75.27057743527106],[-105.8860588605886,75.26720028073129],[-105.89685896858968,75.25875739438189],[-105.94005940059401,75.21485438536493],[-105.92925929259292,75.2064114990155],[-105.83925839258393,75.18277141723715],[-105.87525875258753,75.17601710815762],[-105.88965889658897,75.16757422180822],[-105.8860588605886,75.15406560364914],[-105.89325893258932,75.14562271729974],[-106.0120601206012,75.13380267641057],[-106.0480604806048,75.12367121279127],[-106.05886058860588,75.11691690371174],[-106.07326073260732,75.10509686282256],[-106.08046080460804,75.09327682193339],[-106.06606066060661,75.08821109012374],[-106.02286022860228,75.08145678104418],[-106.00486004860048,75.07301389469478],[-105.99765997659976,75.0611938538056],[-106.00846008460084,75.05612812199595],[-106.38286382863828,75.02911088567782],[-106.76086760867608,75.0037822266296],[-106.77166771667716,74.99871649481994],[-106.77886778867789,74.99533934028017],[-106.78246782467825,74.99027360847052],[-106.78246782467825,74.98689645393077],[-106.7860678606786,74.9852078766609],[-107.00567005670057,74.92441909494511],[-107.23247232472325,74.91935336313546],[-107.31527315273152,74.93455055856441],[-107.51327513275133,74.94299344491381],[-107.68607686076861,74.98183072212112],[-107.68967689676896,74.99871649481994],[-107.7220772207722,75.01560226751877],[-107.72567725677257,75.0223565765983],[-107.71847718477184,75.0324880402176],[-107.68967689676896,75.03924234929713],[-107.68247682476824,75.0510623901863],[-107.69327693276932,75.07639104923456],[-107.71487714877148,75.09158824466348],[-107.74367743677436,75.10003113101291],[-107.77247772477725,75.10171970828279],[-107.78687786877869,75.09496539920326],[-107.77967779677796,75.09327682193339],[-107.76527765277652,75.08821109012374],[-107.77247772477725,75.07470247196466],[-107.75447754477544,75.06457100834538],[-107.74367743677436,75.05275096745618],[-107.77247772477725,75.03417661748747],[-107.85527855278552,75.0139136902489],[-107.93807938079381,75.00547080389947],[-107.92727927279273,75.00715938116934],[-107.920079200792,75.00884795843925],[-107.91647916479164,75.012225112979],[-107.93087930879308,75.01729084478865],[-107.9560795607956,75.02066799932842],[-107.97767977679777,75.02066799932842],[-107.9920799207992,75.012225112979],[-107.99567995679956,75.00040507208982],[-107.9920799207992,74.99533934028017],[-107.96327963279633,74.98858503120064],[-107.94887948879489,74.97169925850181],[-107.96687966879668,74.96156779488251],[-108.01728017280172,74.94974775399334],[-107.99927999279993,74.94637059945359],[-107.96327963279633,74.94299344491381],[-107.94527945279452,74.93623913583428],[-107.97047970479704,74.92948482675476],[-108.05688056880568,74.93623913583428],[-108.41688416884169,74.91766478586558],[-108.4960849608496,74.93455055856441],[-108.52128521285212,74.93623913583428],[-108.53928539285393,74.94130486764394],[-108.56808568085681,74.95987921761264],[-108.80568805688057,74.9852078766609],[-108.80568805688057,74.99196218574042],[-108.51048510485104,74.97845356758134],[-108.54648546485464,75.012225112979],[-108.59688596885968,75.03924234929713],[-108.65088650886509,75.05443954472608],[-108.82368823688236,75.07132531742491],[-108.92448924489244,75.05443954472608],[-108.94248942489425,75.04599665837665],[-108.94968949689496,75.040930926567],[-108.97128971289713,75.01897942205855],[-108.96048960489604,75.01897942205855],[-108.95328953289533,75.01729084478865],[-108.94608946089461,75.012225112979],[-108.93888938889388,75.00547080389947],[-109.03249032490325,75.00547080389947],[-108.99288992889929,74.99196218574042],[-109.07569075690756,74.98858503120064],[-109.35649356493565,74.94637059945359],[-109.38169381693817,74.93623913583428],[-109.39969399693997,74.92273051767523],[-109.41049410494105,74.90922189951615],[-109.40329403294032,74.90922189951615],[-109.38889388893888,74.9041561677065],[-109.42849428494284,74.89909043589685],[-109.53289532895329,74.8670074677691],[-109.58329583295833,74.85856458141967],[-109.8820988209882,74.87038462230885],[-109.99729997299973,74.85349884961002],[-110.00450004500044,74.85181027234015],[-110.01890018900188,74.8484331178004],[-110.05490054900548,74.82985876783167],[-110.06930069300692,74.82310445875214],[-110.08730087300873,74.82817019056179],[-110.080100801008,74.83492449964132],[-110.08730087300873,74.83999023145097],[-110.15570155701556,74.82817019056179],[-110.30690306903068,74.85181027234015],[-110.37530375303753,74.83999023145097],[-110.36810368103681,74.8383016541811],[-110.36090360903609,74.83661307691119],[-110.35730357303572,74.83492449964132],[-110.37170371703716,74.83492449964132],[-110.38250382503824,74.83323592237144],[-110.41130411304113,74.82817019056179],[-110.41130411304113,74.82141588148227],[-110.33930339303393,74.80790726332319],[-110.31410314103141,74.80790726332319],[-110.3429034290343,74.79608722243401],[-110.60210602106021,74.78595575881474],[-110.64530645306453,74.79439864516414],[-110.66690666906669,74.79102149062436],[-110.67050670506706,74.77244714065566],[-110.65970659706596,74.7589385224966],[-110.63450634506344,74.74542990433753],[-110.58770587705877,74.72516697709895],[-110.61650616506165,74.70490404986035],[-110.77490774907749,74.68295254535187],[-110.8361083610836,74.65593530903377],[-110.85770857708577,74.65086957722411],[-110.95130951309513,74.64580384541446],[-110.95850958509585,74.63904953633494],[-110.96570965709657,74.63060664998551],[-110.98010980109801,74.62216376363611],[-111.00171001710017,74.61709803182646],[-111.07371073710736,74.61540945455658],[-111.15651156511565,74.5934579500481],[-111.22851228512285,74.5934579500481],[-111.25371253712537,74.58670364096855],[-111.3041130411304,74.5630635591902],[-111.32211322113221,74.56137498192032],[-111.41211412114122,74.56981786826975],[-111.57411574115741,74.53266916833232],[-111.65691656916569,74.50058620020454],[-111.94851948519485,74.47525754115631],[-112.24012240122401,74.44824030483818],[-112.30852308523085,74.42966595486948],[-112.38772387723877,74.42460022305983],[-112.43812438124381,74.41278018217065],[-112.6361263612636,74.41278018217065],[-113.02493024930249,74.39589440947182],[-113.21933219332193,74.40433729582122],[-113.45333453334533,74.41953449125018],[-113.69453694536945,74.44486315029843],[-113.76653766537665,74.47188038661653],[-114.17334173341733,74.56644071372997],[-114.17334173341733,74.57150644553963],[-114.17334173341733,74.5731950228095],[-114.16974169741697,74.5731950228095],[-114.16614166141662,74.57488360007937],[-114.19134191341914,74.57657217734928],[-114.3929439294393,74.63904953633494],[-114.43254432544325,74.65762388630364],[-114.43974439744397,74.66944392719282],[-114.43974439744397,74.68295254535187],[-114.42174421744217,74.70321547259047],[-114.39654396543965,74.71503551347965],[-114.31014310143101,74.73192128617848],[-114.23454234542345,74.7589385224966],[-113.97173971739717,74.80790726332319],[-113.82773827738278,74.81466157240274],[-113.75213752137522,74.83492449964132],[-113.62613626136262,74.84336738599075],[-113.49653496534965,74.83999023145097],[-113.4209342093421,74.8568760041498],[-113.33453334533345,74.86194173595945],[-113.2589325893259,74.8484331178004],[-113.21933219332193,74.84505596326062],[-113.19413194131941,74.86194173595945],[-113.2589325893259,74.8771389313884],[-113.33093330933309,74.88220466319802],[-113.30573305733057,74.88895897227758],[-113.29493294932949,74.88895897227758],[-113.28413284132841,74.88895897227758],[-113.20853208532085,74.89064754954745],[-113.18693186931868,74.8957132813571],[-113.17973179731797,74.90077901316675],[-113.16533165331653,74.91766478586558],[-113.11133111331112,74.94130486764394],[-113.01413014130141,74.95312490853311],[-112.96012960129602,74.96663352669216],[-112.7981279812798,74.9852078766609],[-112.69732697326972,74.98014214485124],[-112.54972549725497,74.99871649481994],[-112.27252272522725,74.99871649481994],[-112.06372063720637,75.00715938116934],[-111.90891908919089,74.99702791755007],[-111.77571775717757,74.9852078766609],[-111.67131671316713,75.0037822266296],[-111.58491584915849,75.00715938116934],[-111.55611556115561,75.012225112979],[-111.5021150211502,75.03924234929713],[-111.48051480514805,75.04599665837665],[-111.50571505715057,75.05950527653573],[-111.55611556115561,75.04768523564655],[-111.57771577715776,75.0611938538056],[-111.54171541715417,75.07301389469478],[-111.50931509315093,75.07132531742491],[-111.44091440914409,75.0611938538056],[-111.40131401314012,75.06288243107548],[-111.28971289712896,75.08821109012374],[-111.3041130411304,75.09834255374301],[-111.32211322113221,75.10509686282256],[-111.34371343713437,75.10847401736231],[-111.36531365313652,75.10847401736231],[-111.340113401134,75.11522832644184],[-111.29331293312933,75.10678544009244],[-111.26811268112681,75.10847401736231],[-111.2609126091261,75.11185117190209],[-111.2609126091261,75.11522832644184],[-111.2609126091261,75.12029405825149],[-111.2609126091261,75.12198263552139],[-111.19251192511925,75.13549125368044],[-111.16371163711636,75.13549125368044],[-111.15291152911529,75.13886840822022],[-111.13131131311313,75.14731129456962],[-111.09891098910988,75.15237702637927],[-111.02691026910269,75.1777056854275],[-111.07011070110701,75.19121430358658],[-111.0521105211052,75.19628003539623],[-111.02331023310232,75.20303434447575],[-111.00531005310053,75.21147723082515],[-111.01251012510124,75.2182315399047],[-110.99090990909909,75.22498584898423],[-110.93690936909368,75.22329727171433],[-110.91890918909189,75.23174015806376],[-110.92250922509224,75.24356019895293],[-110.95130951309513,75.25200308530233],[-111.10251102511025,75.27395458981081],[-111.24291242912429,75.26720028073129],[-111.250112501125,75.26044597165176],[-111.27531275312752,75.23342873533363],[-111.28971289712896,75.22160869444446],[-111.31131311313113,75.20978865355528],[-111.37251372513725,75.1878371490468],[-111.430114301143,75.1793942626974],[-111.48771487714878,75.16419706726845],[-111.52011520115201,75.16419706726845],[-111.57411574115741,75.17095137634797],[-111.59931599315993,75.17095137634797],[-111.62451624516245,75.16419706726845],[-111.57411574115741,75.15575418091905],[-111.56331563315634,75.1489998718395],[-111.67851678516784,75.1489998718395],[-111.70011700117001,75.1591313354588],[-111.73251732517325,75.18445999450705],[-111.7541175411754,75.19121430358658],[-111.7649176491765,75.1895257263167],[-111.77211772117721,75.18614857177693],[-111.77931779317792,75.18108283996727],[-111.89811898118981,75.1405569854901],[-111.92331923319233,75.13717983095032],[-112.06012060120601,75.1489998718395],[-112.2149221492215,75.12873694460092],[-112.34452344523444,75.12198263552139],[-112.41652416524165,75.12873694460092],[-112.47412474124741,75.1489998718395],[-112.45252452524525,75.1591313354588],[-112.4309243092431,75.16419706726845],[-112.36252362523625,75.17432853088775],[-112.31212312123121,75.19459145812633],[-112.2941229412294,75.20472292174563],[-112.31932319323192,75.21147723082515],[-112.39132391323913,75.21147723082515],[-112.39132391323913,75.2182315399047],[-112.36252362523625,75.2182315399047],[-112.35172351723517,75.21992011717458],[-112.33732337323373,75.22498584898423],[-112.39132391323913,75.24356019895293],[-112.40572405724058,75.24524877622281],[-112.420124201242,75.24187162168306],[-112.44172441724417,75.23342873533363],[-112.45972459724597,75.22329727171433],[-112.4669246692467,75.21147723082515],[-112.45972459724597,75.20978865355528],[-112.44892448924489,75.2081000762854],[-112.43812438124381,75.20472292174563],[-112.4309243092431,75.1979686126661],[-112.43812438124381,75.1878371490468],[-112.44892448924489,75.18277141723715],[-112.58932589325893,75.18277141723715],[-112.61812618126181,75.19121430358658],[-112.63252632526326,75.19965718993598],[-112.63972639726397,75.2081000762854],[-112.63252632526326,75.21992011717458],[-112.61812618126181,75.22498584898423],[-112.60372603726037,75.23005158079388],[-112.5929259292593,75.23511731260353],[-112.59652596525964,75.25031450803246],[-112.62172621726216,75.26382312619154],[-112.65412654126541,75.27564316708072],[-112.67932679326793,75.27902032162046],[-112.6721267212672,75.27564316708072],[-112.66492664926649,75.27395458981081],[-112.66492664926649,75.26720028073129],[-112.70092700927009,75.26213454892164],[-112.71532715327153,75.24862593076259],[-112.72612726127261,75.23005158079388],[-112.74052740527405,75.20472292174563],[-112.70812708127082,75.1878371490468],[-112.69732697326972,75.18108283996727],[-112.69372693726937,75.17263995361787],[-112.70092700927009,75.15406560364914],[-112.70092700927009,75.14224556275997],[-112.72972729727297,75.14224556275997],[-112.85572855728557,75.11016259463221],[-113.02133021330214,75.09496539920326],[-113.05373053730537,75.09665397647314],[-113.08253082530825,75.10847401736231],[-113.12213122131222,75.14224556275997],[-113.13653136531364,75.1489998718395],[-113.16173161731616,75.11185117190209],[-113.17973179731797,75.09496539920326],[-113.20493204932049,75.08821109012374],[-113.3489334893349,75.08145678104418],[-113.44613446134461,75.08483393558396],[-113.62253622536225,75.06794816288513],[-113.64773647736477,75.07132531742491],[-113.65133651336514,75.06794816288513],[-113.65493654936549,75.06457100834538],[-113.66573665736657,75.0611938538056],[-113.88533885338853,75.05781669926583],[-113.95733957339573,75.07470247196466],[-113.95373953739538,75.12198263552139],[-113.93933939339394,75.13886840822022],[-113.92853928539286,75.14393414002984],[-113.91413914139142,75.1489998718395],[-113.64413644136441,75.19121430358658],[-113.68013680136801,75.1979686126661],[-113.7161371613716,75.19628003539623],[-113.86733867338673,75.1692627990781],[-113.90693906939069,75.1692627990781],[-113.93933939339394,75.18277141723715],[-113.87453874538745,75.25031450803246],[-113.83493834938349,75.30097182612894],[-113.81333813338134,75.3246119079073],[-113.78453784537845,75.33980910333625],[-113.68013680136801,75.36007203057483],[-113.6009360093601,75.36513776238448],[-113.52893528935289,75.38708926689296],[-113.37413374133742,75.41579508048096],[-113.32373323733238,75.41748365775086],[-113.32373323733238,75.42423796683039],[-113.34533345333453,75.41748365775086],[-113.4209342093421,75.42423796683039],[-113.46053460534606,75.41917223502074],[-113.4749347493475,75.42254938956049],[-113.4749347493475,75.43774658498944],[-113.51813518135181,75.41917223502074],[-113.87453874538745,75.3735806487339],[-113.89973899738997,75.37526922600378],[-113.92133921339213,75.38877784416286],[-113.9681396813968,75.42930369864004],[-114.03654036540365,75.46645239857745],[-114.06894068940689,75.47489528492687],[-114.09054090540906,75.45800951222805],[-114.07614076140761,75.45463235768827],[-114.07614076140761,75.44450089406897],[-114.08694086940869,75.43436943044969],[-114.09054090540906,75.42423796683039],[-114.08694086940869,75.40904077140144],[-114.07974079740796,75.40228646232191],[-114.06894068940689,75.39722073051226],[-114.05454054540544,75.38540068962308],[-114.04734047340473,75.36682633965438],[-114.05814058140581,75.34656341241578],[-114.09054090540906,75.314480444288],[-114.11934119341193,75.27395458981081],[-114.12654126541265,75.26551170346141],[-114.15534155341552,75.24187162168306],[-114.19494194941949,75.22498584898423],[-114.25254252542526,75.2266744262541],[-114.31014310143101,75.24018304441316],[-114.34974349743497,75.26044597165176],[-114.35334353343534,75.26382312619154],[-114.34974349743497,75.27564316708072],[-114.34974349743497,75.27902032162046],[-114.36054360543605,75.28408605343012],[-114.49374493744938,75.30434898066872],[-114.51174511745117,75.3161690215579],[-114.54774547745477,75.31279186701812],[-114.5909459094591,75.2975946715892],[-114.61614616146161,75.28408605343012],[-114.61614616146161,75.27226601254094],[-114.60174601746017,75.26888885800116],[-114.58014580145802,75.26720028073129],[-114.54774547745477,75.27395458981081],[-114.44694446944469,75.26382312619154],[-114.42534425344253,75.25875739438189],[-114.41094410944109,75.24862593076259],[-114.38574385743857,75.2182315399047],[-114.35694356943569,75.20303434447575],[-114.32454324543245,75.19459145812633],[-114.3029430294303,75.18108283996727],[-114.31014310143101,75.15744275818892],[-114.33174331743317,75.13717983095032],[-114.3821438214382,75.10847401736231],[-114.40374403744038,75.09158824466348],[-114.43974439744397,75.06794816288513],[-114.69894698946989,75.01897942205855],[-114.95814958149582,74.97001068123194],[-115.0589505895059,74.96663352669216],[-115.15615156151561,74.98351929939099],[-115.18135181351813,74.99196218574042],[-115.19575195751958,75.00209364935972],[-115.20655206552065,75.01729084478865],[-115.21375213752137,75.03924234929713],[-115.22455224552245,75.0611938538056],[-115.22455224552245,75.06794816288513],[-115.21375213752137,75.08145678104418],[-115.19935199351993,75.08821109012374],[-115.1849518495185,75.09327682193339],[-115.1741517415174,75.10003113101291],[-115.18135181351813,75.10847401736231],[-115.1849518495185,75.12535979006114],[-115.20295202952029,75.1506884491094],[-115.23175231752317,75.17432853088775],[-115.26415264152641,75.18277141723715],[-115.25335253352533,75.16588564453832],[-115.27495274952749,75.1489998718395],[-115.40455404554045,75.10340828555266],[-115.44775447754478,75.10003113101291],[-115.52335523355234,75.12535979006114],[-115.65295652956529,75.1506884491094],[-115.66735667356673,75.1489998718395],[-115.66735667356673,75.1405569854901],[-115.65295652956529,75.12873694460092],[-115.63855638556386,75.12367121279127],[-115.60615606156061,75.12198263552139],[-115.59175591755917,75.11522832644184],[-115.60615606156061,75.10509686282256],[-115.58815588155882,75.08483393558396],[-115.55575555755557,75.0611938538056],[-115.53775537755378,75.03924234929713],[-115.5449554495545,75.03924234929713],[-115.54855548555486,75.01560226751877],[-115.58455584555846,74.99533934028017],[-115.62775627756277,74.98014214485124],[-115.66015660156602,74.97169925850181],[-115.71415714157142,74.97001068123194],[-115.92655926559266,74.99702791755007],[-116.02376023760237,75.02573373113808],[-116.16776167761677,75.040930926567],[-116.25416254162542,75.0611938538056],[-116.25416254162542,75.06794816288513],[-116.14256142561425,75.08314535831408],[-116.08496084960849,75.09834255374301],[-116.04536045360453,75.12873694460092],[-116.08136081360814,75.12704836733104],[-116.26856268562685,75.10003113101291],[-116.30816308163082,75.10340828555266],[-116.3369633696337,75.11522832644184],[-116.2829628296283,75.14224556275997],[-116.25056250562506,75.16250848999857],[-116.24696246962469,75.18108283996727],[-116.25056250562506,75.1895257263167],[-116.24696246962469,75.19965718993598],[-116.24336243362433,75.2081000762854],[-116.25776257762578,75.21147723082515],[-116.46656466564664,75.18445999450705],[-116.52056520565205,75.1895257263167],[-116.54576545765457,75.18445999450705],[-116.59616596165961,75.17095137634797],[-116.61056610566106,75.16419706726845],[-116.6681666816668,75.12704836733104],[-116.68616686166862,75.12198263552139],[-116.76896768967688,75.12198263552139],[-116.89496894968948,75.14224556275997],[-116.95256952569525,75.16250848999857],[-116.9669696696967,75.16081991272867],[-116.98856988569887,75.1489998718395],[-117.01737017370174,75.1489998718395],[-117.51057510575106,75.20134576720588],[-117.59337593375933,75.2266744262541],[-117.64737647376474,75.23680588987341],[-117.67257672576726,75.24524877622281],[-117.6869768697687,75.26044597165176],[-117.6689766897669,75.26720028073129],[-117.66177661776618,75.27395458981081],[-117.65457654576545,75.27902032162046],[-117.65817658176582,75.28239747616024],[-117.6761767617676,75.29252893977954],[-117.65097650976509,75.3060375579386],[-117.61857618576185,75.31279186701812],[-117.55737557375573,75.314480444288],[-117.57537575375753,75.33643194879647],[-117.55377553775537,75.35838345330495],[-117.30537305373053,75.45800951222805],[-117.20097200972009,75.47996101673652],[-116.82656826568265,75.47996101673652],[-116.44856448564485,75.47827243946662],[-116.36936369363693,75.48840390308592],[-116.14976149761497,75.47658386219675],[-116.04176041760417,75.48502674854615],[-115.58815588155882,75.58802996200902],[-115.26415264152641,75.60153858016807],[-115.28575285752858,75.62011293013677],[-115.28215282152821,75.6268672392163],[-115.27135271352714,75.64037585737537],[-115.25335253352533,75.64881874372477],[-115.11295112951129,75.68765602093208],[-115.0229502295023,75.6944103300116],[-115.00135001350013,75.69778748455138],[-115.05175051750517,75.70960752544056],[-115.37215372153722,75.66063878461395],[-115.69615696156961,75.64544158918503],[-115.77535775357754,75.6268672392163],[-115.98415984159841,75.61167004378737],[-116.1029610296103,75.58634138473911],[-116.11736117361173,75.57789849838971],[-116.47736477364774,75.57620992111984],[-116.83736837368374,75.57620992111984],[-117.19737197371973,75.57620992111984],[-117.24057240572405,75.58296423019937],[-117.24777247772477,75.6082928892476],[-117.22977229772297,75.63362154829585],[-116.9669696696967,75.76195342080692],[-116.88416884168842,75.78897065712505],[-116.52416524165241,75.804167852554],[-116.16056160561605,75.81936504798293],[-115.80055800558006,75.83456224341188],[-115.78615786157862,75.8413165524914],[-115.77535775357754,75.85313659338058],[-115.7609576095761,75.86157947973001],[-115.74295742957429,75.85820232519023],[-115.72855728557285,75.85482517065049],[-115.57735577355773,75.83456224341188],[-115.22815228152281,75.85144801611071],[-114.87534875348753,75.86664521153966],[-114.82854828548285,75.88015382969871],[-114.8069480694807,75.89197387058789],[-114.81414814148141,75.90210533420719],[-114.83574835748357,75.90885964328672],[-114.85734857348574,75.91054822055659],[-115.27855278552785,75.89872817966742],[-115.69615696156961,75.88690813877824],[-115.7609576095761,75.89535102512767],[-116.20376203762038,75.86833378880954],[-116.2181621816218,75.87002236607941],[-116.22176221762217,75.87677667515894],[-116.24336243362433,75.87002236607941],[-116.70776707767078,75.89872817966742],[-116.72216722167221,75.90885964328672],[-116.7329673296733,75.9206796841759],[-116.73656736567366,75.93756545687472],[-116.72936729367294,75.95445122957355],[-116.7149671496715,75.96120553865308],[-116.61776617766176,75.97640273408203],[-116.55656556565566,75.9780913113519],[-116.48456484564846,75.97133700227238],[-116.4629646296463,75.9780913113519],[-116.47736477364774,75.99159992951098],[-116.51696516965168,76.00173139313026],[-116.53136531365314,76.01355143401943],[-116.52056520565205,76.01524001128934],[-116.49536495364953,76.02706005217851],[-116.5421654216542,76.03550293852791],[-116.65736657366574,76.02030574309899],[-116.70056700567005,76.04056867033756],[-116.70776707767078,76.05070013395687],[-116.70416704167042,76.05745444303639],[-116.68616686166862,76.0760287930051],[-116.64656646566465,76.10135745205335],[-116.64656646566465,76.10811176113288],[-116.62856628566286,76.11993180202205],[-116.61056610566106,76.12330895656183],[-116.5889658896589,76.1249975338317],[-116.57096570965709,76.12837468837148],[-116.5529655296553,76.14019472926066],[-116.5421654216542,76.15032619287993],[-116.52776527765278,76.16045765649923],[-116.16416164161642,76.20436066551619],[-115.94815948159481,76.20267208824632],[-115.84015840158402,76.18578631554749],[-115.6709567095671,76.18072058373784],[-115.45135451354513,76.18747489281736],[-115.15975159751598,76.16721196557876],[-115.04455044550446,76.16383481103901],[-115.04095040950409,76.15876907922936],[-114.95094950949509,76.16383481103901],[-114.82854828548285,76.14863761561006],[-114.70974709747097,76.15370334741971],[-114.66654666546665,76.16383481103901],[-114.70614706147062,76.17396627465831],[-114.79614796147962,76.16721196557876],[-114.8789487894879,76.17734342919806],[-114.97614976149761,76.17734342919806],[-115.04095040950409,76.20773782005597],[-115.27855278552785,76.23644363364397],[-115.53055530555305,76.23644363364397],[-115.77895778957789,76.23813221091385],[-115.87615876158762,76.2533294063428],[-115.89415894158941,76.26008371542233],[-115.91575915759158,76.2820352199308],[-115.92655926559266,76.28710095174046],[-115.90855908559085,76.29892099262963],[-115.8509585095851,76.32256107440799],[-115.86175861758618,76.33269253802729],[-115.89775897758977,76.34282400164656],[-115.91215912159122,76.34957831072612],[-115.87615876158762,76.36308692888517],[-115.51255512555126,76.4559586787287],[-115.0229502295023,76.47959876050706],[-114.98334983349834,76.48635306958661],[-114.90414904149041,76.51674746044449],[-114.87174871748718,76.52012461498427],[-114.69894698946989,76.52012461498427],[-114.71334713347133,76.50999315136497],[-114.74574745747458,76.49986168774566],[-114.76374763747637,76.49310737866614],[-114.45054450544505,76.50155026501554],[-114.20574205742057,76.47115587415766],[-114.15894158941589,76.45933583326848],[-114.13374133741337,76.4458272151094],[-114.11574115741158,76.43063001968048],[-114.09054090540906,76.3901041652033],[-114.11934119341193,76.36984123796469],[-114.10494104941048,76.36308692888517],[-114.12294122941229,76.35633261980564],[-114.1409414094141,76.35464404253574],[-114.18054180541804,76.35633261980564],[-114.16974169741697,76.34451257891646],[-114.15174151741518,76.33944684710681],[-114.11214112141121,76.34113542437669],[-114.11934119341193,76.33775826983691],[-114.13734137341373,76.32256107440799],[-114.13734137341373,76.31749534259833],[-114.13374133741337,76.31580676532846],[-114.12654126541265,76.31411818805856],[-114.13374133741337,76.31411818805856],[-114.08334083340833,76.29385526081998],[-114.00774007740077,76.27359233358138],[-113.98613986139861,76.25670656088255],[-114.00054000540005,76.2431979427235],[-114.03294032940329,76.2330664791042],[-114.06534065340654,76.21786928367524],[-114.02574025740257,76.21280355186559],[-113.99333993339933,76.19929493370654],[-113.96453964539646,76.19085204735714],[-113.87453874538745,76.20604924278607],[-113.71253712537126,76.20436066551619],[-113.56853568535685,76.23475505637407],[-113.51813518135181,76.23982078818372],[-113.46773467734677,76.23813221091385],[-113.44253442534425,76.24150936545362],[-113.39933399333994,76.25839513815242],[-113.35613356133561,76.26683802450185],[-113.21933219332193,76.26514944723198],[-113.17973179731797,76.25501798361267],[-113.15813158131581,76.2533294063428],[-112.99252992529925,76.27359233358138],[-112.90972909729098,76.26346086996207],[-112.87012870128702,76.24995225180302],[-112.84852848528485,76.22800074729454],[-112.83052830528305,76.21955786094514],[-112.7549275492755,76.22124643821502],[-112.7549275492755,76.21280355186559],[-112.7549275492755,76.20436066551619],[-112.61812618126181,76.20604924278607],[-112.54252542525425,76.18747489281736],[-112.46332463324633,76.18072058373784],[-112.4309243092431,76.17058912011854],[-112.42732427324273,76.17058912011854],[-112.44892448924489,76.16214623376914],[-112.48132481324814,76.15539192468958],[-112.50292502925029,76.14526046107031],[-112.49932499324993,76.12330895656183],[-112.52452524525245,76.12162037929193],[-112.51372513725137,76.10980033840275],[-112.44892448924489,76.07940594754487],[-112.43812438124381,76.06927448392557],[-112.4309243092431,76.06083159757617],[-112.420124201242,76.05070013395687],[-112.36612366123661,76.03381436125804],[-112.11772117721176,76.01186285674956],[-111.85491854918548,75.95276265230368],[-111.76851768517685,75.94769692049402],[-111.74691746917469,75.93756545687472],[-111.72531725317253,75.91730252963612],[-111.78291782917829,75.90041675693732],[-112.07452074520745,75.87508809788906],[-112.18612186121861,75.84807086157093],[-112.16092160921609,75.83962797522153],[-112.13932139321393,75.83456224341188],[-112.20772207722077,75.8227422025227],[-112.22572225722257,75.81429931617328],[-112.19692196921969,75.80754500709375],[-112.16092160921609,75.80754500709375],[-112.0889208892089,75.82105362525283],[-112.07812078120782,75.82780793433236],[-112.06372063720637,75.83456224341188],[-112.0529205292053,75.83962797522153],[-112.03492034920349,75.8413165524914],[-112.02052020520205,75.83962797522153],[-111.99531995319953,75.83456224341188],[-111.98091980919808,75.83456224341188],[-111.99531995319953,75.8311850888721],[-112.02412024120241,75.82611935706245],[-112.03492034920349,75.82105362525283],[-111.94851948519485,75.80754500709375],[-111.9269192691927,75.81092216163353],[-111.88731887318873,75.82611935706245],[-111.86571865718658,75.82949651160223],[-111.45891458914589,75.8413165524914],[-111.44811448114481,75.83793939795166],[-111.45531455314553,75.82780793433236],[-111.47691476914768,75.81936504798293],[-111.49491494914949,75.81429931617328],[-111.57411574115741,75.81936504798293],[-111.59571595715957,75.81429931617328],[-111.45891458914589,75.78897065712505],[-111.43371433714337,75.7653305753467],[-111.44091440914409,75.76364199807679],[-111.44811448114481,75.75857626626717],[-111.45171451714516,75.75013337991774],[-111.44811448114481,75.74169049356834],[-111.43371433714337,75.73662476175869],[-111.3869138691387,75.74000191629844],[-111.36891368913689,75.73324760721891],[-111.36171361713618,75.71467325725021],[-111.3761137611376,75.70454179363091],[-111.39771397713977,75.6944103300116],[-111.41211412114122,75.67752455731278],[-111.40131401314012,75.6758359800429],[-111.39051390513904,75.66908167096338],[-111.37971379713797,75.66232736188385],[-111.3761137611376,75.65388447553443],[-111.37971379713797,75.64375301191512],[-111.41211412114122,75.61673577559702],[-111.39771397713977,75.61504719832712],[-111.38331383313833,75.6082928892476],[-111.35091350913508,75.57958707565959],[-111.33651336513365,75.57452134384994],[-111.29331293312933,75.57452134384994],[-111.29331293312933,75.56776703477041],[-111.30051300513004,75.56438988023064],[-111.30771307713077,75.55932414842101],[-111.32211322113221,75.54750410753181],[-111.29691296912969,75.54581553026193],[-111.28251282512825,75.54074979845228],[-111.27891278912789,75.53737264391253],[-111.27891278912789,75.53399548937276],[-111.27891278912789,75.53061833483298],[-111.27531275312752,75.52724118029323],[-111.250112501125,75.52217544848358],[-111.22851228512285,75.52217544848358],[-111.21051210512105,75.52555260302336],[-111.01251012510124,75.53061833483298],[-110.85770857708577,75.55763557115111],[-110.5121051210512,75.57283276658006],[-110.42930429304293,75.55932414842101],[-110.42570425704257,75.55594699388124],[-110.42570425704257,75.55088126207158],[-110.42570425704257,75.54412695299206],[-110.41850418504185,75.53906122118241],[-110.2169021690217,75.53568406664263],[-110.15930159301593,75.54750410753181],[-110.11610116101161,75.54074979845228],[-110.06930069300692,75.54750410753181],[-110.00450004500044,75.54412695299206],[-109.51489514895148,75.52217544848358],[-109.02529025290252,75.49853536670523],[-108.93888938889388,75.47827243946662],[-108.910089100891,75.47827243946662],[-108.89568895688957,75.4917810576257],[-108.90288902889029,75.49515821216545],[-108.9280892808928,75.53061833483298],[-108.94968949689496,75.54243837572218],[-109.01089010890108,75.54750410753181],[-109.03249032490325,75.55425841661136],[-108.99288992889929,75.56776703477041],[-108.94608946089461,75.56945561204029],[-108.85608856088561,75.56101272569089],[-108.85608856088561,75.56776703477041],[-108.86688866888669,75.56945561204029],[-108.87768877688777,75.57283276658006],[-108.88848888488884,75.57958707565959],[-108.89568895688957,75.58802996200902],[-108.88128881288813,75.5998500028982],[-108.84528845288453,75.61167004378737],[-108.83448834488344,75.62349008467655],[-108.90648906489065,75.6657045164236],[-108.93888938889388,75.67752455731278],[-108.93528935289352,75.68090171185256],[-108.93168931689317,75.68259028912243],[-108.92448924489244,75.68427886639233],[-108.8740887408874,75.68090171185256],[-108.84888848888488,75.68259028912243],[-108.82728827288273,75.69103317547186],[-108.85608856088561,75.69947606182126],[-108.95688956889569,75.70454179363091],[-108.98208982089821,75.71636183452009],[-108.99288992889929,75.71973898905986],[-109.01089010890108,75.72142756632974],[-109.06849068490685,75.71973898905986],[-109.06489064890648,75.72311614359961],[-109.06489064890648,75.73493618448879],[-109.06129061290612,75.73831333902856],[-109.10089100891008,75.75013337991774],[-109.40689406894069,75.77883919350575],[-109.46449464494644,75.7940363889347],[-109.45009450094501,75.7940363889347],[-109.40329403294032,75.80079069801423],[-109.69129691296912,75.80754500709375],[-109.68049680496804,75.81767647071305],[-109.64449644496445,75.82611935706245],[-109.630096300963,75.83456224341188],[-109.64809648096481,75.8413165524914],[-109.68769687696877,75.8413165524914],[-109.70569705697056,75.84807086157093],[-109.68409684096841,75.85989090246011],[-109.65889658896589,75.87002236607941],[-109.67329673296733,75.87508809788906],[-109.70209702097021,75.88015382969871],[-109.72729727297273,75.88184240696859],[-109.74529745297453,75.88015382969871],[-109.78849788497885,75.86495663426976],[-109.80289802898028,75.86326805699989],[-109.83889838898389,75.87171094334929],[-109.89289892898928,75.85144801611071],[-109.95049950499505,75.85989090246011],[-110.00450004500044,75.87846525242884],[-110.05490054900548,75.89703960239754],[-110.00450004500044,75.9122367978265],[-109.97569975699757,75.91899110690602],[-109.68409684096841,75.94769692049402],[-109.65169651696517,75.95613980684342],[-109.58689586895869,75.98315704316155],[-109.540095400954,75.99328850678086],[-109.43209432094321,76.00341997040016],[-109.38889388893888,76.02030574309899],[-109.4248942489425,76.03212578398816],[-109.43929439294392,76.03381436125804],[-109.39969399693997,76.04056867033756],[-109.2988929889299,76.03888009306769],[-109.27369273692737,76.05407728849664],[-109.30249302493024,76.05576586576652],[-109.36009360093601,76.0675859066557],[-109.38889388893888,76.0675859066557],[-109.38529385293853,76.07940594754487],[-109.38169381693817,76.08278310208465],[-109.38169381693817,76.08784883389427],[-109.32769327693276,76.09798029751357],[-109.30969309693097,76.10304602932322],[-109.32409324093241,76.1148660702124],[-109.34569345693457,76.12162037929193],[-109.36729367293673,76.12668611110158],[-109.42129421294213,76.14188330653053],[-109.48969489694896,76.15201477014983],[-109.51849518495185,76.16383481103901],[-109.52209522095221,76.16721196557876],[-109.51849518495185,76.17227769738841],[-109.51849518495185,76.17734342919806],[-109.52569525695257,76.18409773827759],[-109.54369543695437,76.18916347008724],[-109.69849698496985,76.19422920189689],[-109.72369723697237,76.20436066551619],[-109.71289712897129,76.20436066551619],[-109.69849698496985,76.20604924278607],[-109.68769687696877,76.21111497459572],[-109.68409684096841,76.21786928367524],[-109.69489694896949,76.2246235927548],[-109.83169831698316,76.24150936545362],[-109.87129871298713,76.23982078818372],[-109.90369903699036,76.23137790183432],[-109.90009900099001,76.2246235927548],[-109.88569885698857,76.20773782005597],[-109.8820988209882,76.20436066551619],[-109.89289892898928,76.19760635643667],[-109.91089910899109,76.19591777916676],[-109.92529925299253,76.19929493370654],[-110.00450004500044,76.22631217002467],[-110.14850148501485,76.27696948812115],[-110.38250382503824,76.3006095698995],[-110.37530375303753,76.31411818805856],[-110.3429034290343,76.32931538348751],[-110.32850328503285,76.34113542437669],[-110.3429034290343,76.34620115618634],[-110.35730357303572,76.34957831072612],[-110.36810368103681,76.35295546526586],[-110.37530375303753,76.36308692888517],[-110.36450364503645,76.37152981523457],[-110.36810368103681,76.379972701584],[-110.38250382503824,76.38672701066352],[-110.39690396903968,76.39685847428282],[-110.3861038610386,76.40192420609247],[-110.38250382503824,76.41036709244187],[-110.37890378903789,76.42049855606118],[-110.38250382503824,76.43063001968048],[-110.36450364503645,76.43231859695035],[-110.35730357303572,76.43063001968048],[-110.36090360903609,76.43063001968048],[-110.32130321303212,76.42894144241058],[-110.11250112501125,76.45427010145883],[-110.04770047700477,76.47622160596731],[-110.0081000810008,76.48635306958661],[-110.00450004500044,76.48635306958661],[-109.9180991809918,76.48635306958661],[-109.87849878498784,76.49648453320589],[-109.86049860498605,76.49817311047579],[-109.80649806498064,76.49141880139624],[-109.77049770497705,76.49986168774566],[-109.70569705697056,76.5268789240638],[-109.73449734497345,76.5353218104132],[-109.84969849698497,76.53363323314332],[-109.84969849698497,76.54038754222285],[-109.8280982809828,76.54376469676262],[-109.80289802898028,76.55220758311202],[-109.77769777697776,76.56233904673132],[-109.75969759697597,76.5741590876205],[-109.76689766897668,76.57922481943015],[-109.77409774097741,76.5842905512398],[-109.78129781297812,76.59611059212898],[-109.65169651696517,76.58935628304945],[-109.65529655296552,76.5944220148591],[-109.65889658896589,76.60961921028803],[-109.66249662496625,76.61637351936756],[-109.57969579695796,76.62988213752664],[-109.55449554495544,76.62988213752664],[-109.56169561695617,76.65521079657486],[-109.5508955089551,76.67547372381347],[-109.53289532895329,76.68898234197252],[-109.50769507695077,76.69911380559182],[-109.49329493294933,76.72275388737017],[-109.43929439294392,76.739639660069],[-109.33489334893349,76.75990258730761],[-109.33849338493384,76.76327974184736],[-109.34569345693457,76.77003405092688],[-109.34929349293493,76.77341120546666],[-109.32409324093241,76.78860840089561],[-109.30249302493024,76.79536270997514],[-109.2520925209252,76.80211701905466],[-109.20169201692016,76.82069136902336],[-109.17649176491764,76.82237994629327],[-109.18369183691837,76.82237994629327],[-109.00729007290073,76.8291342553728],[-108.93528935289352,76.81731421448362],[-108.90288902889029,76.81562563721371],[-108.82008820088201,76.83419998718244],[-108.81288812888128,76.8392657189921],[-108.80928809288092,76.85277433715115],[-108.79488794887949,76.86121722350055],[-108.77688776887769,76.86459437804032],[-108.75888758887588,76.86290580077045],[-108.7480874808748,76.85952864623067],[-108.72648726487265,76.84264287353184],[-108.66888668886689,76.82406852356314],[-108.65088650886509,76.81393705994384],[-108.66888668886689,76.80042844178479],[-108.68688686886868,76.78354266908596],[-108.69048690486905,76.77172262819678],[-108.66888668886689,76.76665689638713],[-108.53208532085321,76.76665689638713],[-108.48528485284852,76.75652543276783],[-108.44928449284492,76.73288535098948],[-108.44568445684456,76.7024909601316],[-108.46728467284673,76.68560518743277],[-108.53928539285393,76.66365368292429],[-108.57528575285752,76.64676791022546],[-108.59688596885968,76.64339075568569],[-108.64728647286472,76.65352221930499],[-108.6760867608676,76.65352221930499],[-108.73368733687336,76.64339075568569],[-108.69048690486905,76.60793063301816],[-108.68688686886868,76.6028649012085],[-108.66168661686616,76.59779916939885],[-108.62928629286293,76.57922481943015],[-108.60768607686077,76.5741590876205],[-108.56088560885608,76.57078193308072],[-108.53928539285393,76.56233904673132],[-108.53208532085321,76.54714185130237],[-108.550085500855,76.53869896495297],[-108.60768607686077,76.53025607860354],[-108.62928629286293,76.52012461498427],[-108.60408604086041,76.51505888317462],[-108.54648546485464,76.52012461498427],[-108.52488524885248,76.51337030590471],[-108.56808568085681,76.50323884228544],[-108.5860858608586,76.49310737866614],[-108.58968589685897,76.48297591504684],[-108.56808568085681,76.47115587415766],[-108.51048510485104,76.46946729688779],[-108.48528485284852,76.45933583326848],[-108.51768517685177,76.44920436964918],[-108.5860858608586,76.44245006056966],[-108.61488614886149,76.42387571060095],[-108.58968589685897,76.41036709244187],[-108.56088560885608,76.41036709244187],[-108.52848528485285,76.41543282425152],[-108.50328503285033,76.41374424698165],[-108.47088470884708,76.40698993790213],[-108.34128341283413,76.40192420609247],[-108.31968319683196,76.39685847428282],[-108.2620826208262,76.37152981523457],[-108.2440824408244,76.35970977434539],[-108.23688236882369,76.35633261980564],[-108.22248222482224,76.35464404253574],[-108.19008190081901,76.35464404253574],[-108.17568175681757,76.34957831072612],[-108.19008190081901,76.34788973345621],[-108.20088200882009,76.34620115618634],[-108.21528215282153,76.34282400164656],[-108.22248222482224,76.33606969256704],[-108.0820808208082,76.28710095174046],[-108.0820808208082,76.2803466426609],[-108.12888128881289,76.2803466426609],[-108.12888128881289,76.27359233358138],[-108.11448114481145,76.27359233358138],[-108.13968139681397,76.25839513815242],[-108.21168211682117,76.26683802450185],[-108.23328233282332,76.2533294063428],[-108.21528215282153,76.23982078818372],[-108.08928089280893,76.2246235927548],[-108.12168121681216,76.20942639732584],[-108.33768337683377,76.18578631554749],[-108.37728377283773,76.17396627465831],[-108.40968409684096,76.15032619287993],[-108.39528395283952,76.13175184291123],[-108.41328413284133,76.11993180202205],[-108.43848438484385,76.11148891567265],[-108.45648456484565,76.10304602932322],[-108.43848438484385,76.09798029751357],[-108.40248402484025,76.0962917202437],[-108.38088380883809,76.08784883389427],[-108.40968409684096,76.08278310208465],[-108.44928449284492,76.07096306119547],[-108.48168481684817,76.05576586576652],[-108.49968499684996,76.04056867033756],[-108.35568355683557,76.05407728849664],[-108.16128161281613,76.04732297941709],[-108.03888038880389,76.0675859066557],[-107.88767887678877,76.0675859066557],[-107.85887858878588,76.06589732938582],[-107.72927729277292,76.03888009306769],[-107.71847718477184,76.03381436125804],[-107.70047700477005,76.02199432036886],[-107.68967689676896,76.01524001128934],[-107.65007650076501,76.00510854767003],[-107.63927639276392,75.98991135224108],[-107.65007650076501,75.97302557954225],[-107.67527675276753,75.96458269319285],[-107.7040770407704,75.96120553865308],[-107.7940779407794,75.9308111477952],[-107.77967779677796,75.92574541598555],[-107.75087750877509,75.92236826144577],[-107.73647736477365,75.91730252963612],[-107.78687786877869,75.90210533420719],[-107.89847898478985,75.90041675693732],[-107.94527945279452,75.87677667515894],[-107.94167941679416,75.87171094334929],[-107.93807938079381,75.86833378880954],[-107.93807938079381,75.86664521153966],[-107.93807938079381,75.86157947973001],[-107.97047970479704,75.85989090246011],[-107.99927999279993,75.84469370703118],[-108.0460804608046,75.80754500709375],[-108.03888038880389,75.804167852554],[-108.01728017280172,75.7940363889347],[-108.02448024480245,75.78728207985517],[-107.97767977679777,75.78052777077562],[-107.920079200792,75.79065923439492],[-107.8660786607866,75.81092216163353],[-107.81927819278192,75.83456224341188],[-107.77247772477725,75.87002236607941],[-107.75447754477544,75.87846525242884],[-107.7220772207722,75.88521956150836],[-107.36567365673656,75.91899110690602],[-107.29727297272973,75.9122367978265],[-107.21447214472144,75.91561395236624],[-107.14967149671496,75.89872817966742],[-107.07767077670776,75.89872817966742],[-107.04527045270453,75.88859671604811],[-107.08127081270813,75.87677667515894],[-107.09567095670957,75.87002236607941],[-107.09927099270992,75.86326805699989],[-107.10287102871028,75.84807086157093],[-107.10647106471065,75.8413165524914],[-107.07767077670776,75.81598789344318],[-107.0380703807038,75.80754500709375],[-106.99486994869949,75.80585642982388],[-106.95526955269553,75.7940363889347],[-106.97326973269732,75.7940363889347],[-107.0020700207002,75.79065923439492],[-107.02367023670236,75.7839049253154],[-107.03447034470345,75.7737734616961],[-107.02367023670236,75.76701915261657],[-106.95166951669516,75.75182195718762],[-106.9660696606966,75.73493618448879],[-106.96246962469624,75.70960752544056],[-106.94446944469445,75.68596744366221],[-106.930069300693,75.67077024823325],[-106.91566915669156,75.66063878461395],[-106.89766897668976,75.65050732099468],[-106.87966879668797,75.64881874372477],[-106.8760687606876,75.66401593915373],[-106.87966879668797,75.67245882550313],[-106.89406894068941,75.67752455731278],[-106.90486904869049,75.68427886639233],[-106.90126901269012,75.69778748455138],[-106.90846908469085,75.69778748455138],[-106.89766897668976,75.71467325725021],[-106.89046890468904,75.73155902994904],[-106.87966879668797,75.746756225378],[-106.86166861668616,75.76026484353704],[-106.88326883268833,75.7653305753467],[-106.81846818468185,75.78559350258527],[-106.75366753667537,75.79572496620457],[-106.61326613266132,75.80079069801423],[-106.66366663666636,75.81429931617328],[-106.86166861668616,75.82611935706245],[-106.88686886868868,75.83793939795166],[-106.89046890468904,75.85820232519023],[-106.87246872468724,75.88521956150836],[-106.86886868868689,75.90210533420719],[-106.88326883268833,75.9206796841759],[-106.89046890468904,75.9409426114145],[-106.8760687606876,75.96458269319285],[-106.840068400684,75.98146846589168],[-106.71766717667177,76.01524001128934],[-106.69966699666996,76.02368289763874],[-106.65646656466565,76.05070013395687],[-106.63126631266313,76.05914302030627],[-106.60606606066061,76.06083159757617],[-106.33966339663397,76.06083159757617],[-106.05166051660517,76.02537147490861],[-105.760057600576,75.98991135224108],[-105.60525605256052,75.93756545687472],[-105.51165511655117,75.89028529331802],[-105.46485464854648,75.85820232519023],[-105.44325443254432,75.82105362525283],[-105.46485464854648,75.80079069801423],[-105.45765457654576,75.78221634804552],[-105.42165421654217,75.74506764810809],[-105.46485464854648,75.73324760721891],[-105.44325443254432,75.72649329813939],[-105.4180541805418,75.71129610271043],[-105.40365403654036,75.6944103300116],[-105.39645396453965,75.67414740277303]]],[[[-79.5589955899559,74.99196218574042],[-79.53739537395374,74.97676499031147],[-79.4869948699487,74.95650206307289],[-79.44019440194401,74.92273051767523],[-79.33579335793358,74.9041561677065],[-79.35739357393574,74.8855818177378],[-79.39339393393934,74.8754503541185],[-79.81459814598145,74.83492449964132],[-79.87579875798758,74.81803872694249],[-79.90819908199082,74.81466157240274],[-79.94779947799478,74.81803872694249],[-80.15660156601565,74.86025315868957],[-80.16740167401673,74.86363031322932],[-80.1710017100171,74.86869604503897],[-80.1710017100171,74.8754503541185],[-80.16020160201602,74.89064754954745],[-80.14580145801457,74.9058447449764],[-80.14580145801457,74.92104194040533],[-80.1710017100171,74.93623913583428],[-80.19620196201961,74.94299344491381],[-80.20700207002069,74.93455055856441],[-80.20340203402034,74.91597620859568],[-80.1890018900189,74.8957132813571],[-80.23940239402394,74.8771389313884],[-80.2610026100261,74.87882750865828],[-80.28620286202862,74.8957132813571],[-80.2790027900279,74.8957132813571],[-80.29340293402933,74.91597620859568],[-80.30060300603006,74.93455055856441],[-80.31140311403114,74.94130486764394],[-80.39780397803978,74.9142876313258],[-80.41220412204122,74.90246759043663],[-80.3870038700387,74.88220466319802],[-80.35460354603546,74.87038462230885],[-80.10260102601026,74.82817019056179],[-80.10260102601026,74.82141588148227],[-80.10980109801098,74.81972730421236],[-80.11340113401134,74.81803872694249],[-80.12420124201242,74.81466157240274],[-80.11700117001169,74.80959584059309],[-80.10620106201061,74.79777579970391],[-80.10260102601026,74.79271006789426],[-80.1350013500135,74.78257860427496],[-80.21420214202142,74.77582429519543],[-80.24660246602465,74.7589385224966],[-80.1530015300153,74.73360986344835],[-80.12780127801278,74.71841266801943],[-80.1530015300153,74.70659262713025],[-80.18180181801817,74.70321547259047],[-80.20340203402034,74.69814974078082],[-80.21060210602106,74.67619823627234],[-80.18540185401854,74.66606677265304],[-80.17820178201782,74.66268961811329],[-80.18180181801817,74.65931246357351],[-80.19620196201961,74.64242669087469],[-80.15660156601565,74.63736095906503],[-80.16020160201602,74.62385234090598],[-80.19260192601925,74.61034372274693],[-80.23220232202321,74.6019008363975],[-80.21780217802177,74.58670364096855],[-80.26460264602646,74.57826075461915],[-80.4230042300423,74.58670364096855],[-80.44820448204482,74.58670364096855],[-80.46980469804697,74.58163790915893],[-80.5130051300513,74.56812929099985],[-80.54180541805418,74.5630635591902],[-80.82980829808298,74.57150644553963],[-81.11421114211142,74.57826075461915],[-81.31941319413194,74.56137498192032],[-81.43821438214381,74.5259148592528],[-81.51021510215102,74.51747197290337],[-81.56061560615606,74.50058620020454],[-81.62181621816218,74.50058620020454],[-81.7370173701737,74.46681465480688],[-81.78741787417874,74.45837176845748],[-81.84861848618486,74.46512607753701],[-81.88461884618846,74.46343750026713],[-81.9710197101971,74.47694611842618],[-82.06822068220681,74.47694611842618],[-82.19422194221941,74.50058620020454],[-82.22662226622266,74.51071766382384],[-82.4210242102421,74.51916055017327],[-82.4210242102421,74.52084912744314],[-82.4030240302403,74.5259148592528],[-82.38862388623886,74.5343577456022],[-82.38142381423813,74.54617778649137],[-82.39582395823957,74.5647521364601],[-82.4210242102421,74.5731950228095],[-82.44982449824498,74.57150644553963],[-82.47142471424714,74.56137498192032],[-82.46782467824679,74.55968640465045],[-82.4570245702457,74.55293209557092],[-82.46422464224642,74.54786636376127],[-82.47142471424714,74.54280063195162],[-82.47862478624786,74.53942347741184],[-82.57582575825758,74.51578339563349],[-82.60462604626046,74.51240624109371],[-82.64422644226443,74.51578339563349],[-82.68022680226802,74.52422628198292],[-82.69822698226982,74.5259148592528],[-82.74142741427414,74.52253770471302],[-82.92142921429215,74.55124351830102],[-82.95022950229502,74.5647521364601],[-83.08343083430834,74.63904953633494],[-83.11583115831158,74.66944392719282],[-83.13023130231302,74.70828120440012],[-83.12663126631266,74.7201012452893],[-83.11943119431194,74.73698701798813],[-83.1050310503105,74.75218421341708],[-83.09423094230942,74.7589385224966],[-83.05823058230582,74.76400425430626],[-83.03663036630365,74.77582429519543],[-83.04023040230402,74.78764433608461],[-83.08343083430834,74.79271006789426],[-83.07983079830798,74.81635014967262],[-83.09783097830977,74.82817019056179],[-83.12663126631266,74.83154734510157],[-83.18783187831878,74.82479303602202],[-83.3570335703357,74.8568760041498],[-83.42543425434253,74.88727039500768],[-83.49023490234902,74.90922189951615],[-83.5550355503555,74.89909043589685],[-83.56223562235623,74.89233612681733],[-83.55863558635586,74.88727039500768],[-83.5550355503555,74.88051608592815],[-83.52263522635226,74.84505596326062],[-83.5010350103501,74.82985876783167],[-83.47223472234722,74.81635014967262],[-83.4110341103411,74.79946437697379],[-83.3570335703357,74.79102149062436],[-83.33183331833318,74.78257860427496],[-83.3210332103321,74.76231567703636],[-83.33183331833318,74.74711848160743],[-83.38943389433894,74.70490404986035],[-83.38223382233822,74.69814974078082],[-83.39663396633966,74.68464112262177],[-83.4290342903429,74.67450965900247],[-83.4470344703447,74.66268961811329],[-83.43983439834398,74.65593530903377],[-83.45783457834578,74.63229522725541],[-83.4650346503465,74.6120323000168],[-83.47223472234722,74.59514652731798],[-83.49383493834938,74.57826075461915],[-83.51543515435154,74.57150644553963],[-83.56223562235623,74.5647521364601],[-83.60183601836017,74.54955494103115],[-83.61983619836198,74.54617778649137],[-83.64143641436414,74.54617778649137],[-83.68463684636846,74.5546206728408],[-84.04464044640446,74.54280063195162],[-84.14544145441454,74.51747197290337],[-84.2570425704257,74.50734050928409],[-84.50184501845018,74.51240624109371],[-84.61344613446134,74.50227477747444],[-84.63864638646386,74.50902908655397],[-84.65664656646567,74.51747197290337],[-84.67464674646746,74.52422628198292],[-84.69624696246962,74.5259148592528],[-84.7430474304743,74.52253770471302],[-84.84384843848439,74.50396335474431],[-84.91584915849158,74.51240624109371],[-84.91944919449195,74.51578339563349],[-84.93024930249302,74.5259148592528],[-84.93744937449374,74.5360463228721],[-84.94464944649447,74.55630925011067],[-84.95904959049591,74.56137498192032],[-84.9770497704977,74.56644071372997],[-84.98784987849878,74.57488360007937],[-84.98784987849878,74.58501506369868],[-84.9770497704977,74.6019008363975],[-84.97344973449734,74.6120323000168],[-84.9770497704977,74.62216376363611],[-84.9950499504995,74.64918099995421],[-84.96264962649626,74.66268961811329],[-84.95544955449554,74.68126396808199],[-84.97344973449734,74.69646116351095],[-85.00945009450095,74.70490404986035],[-85.00225002250022,74.68295254535187],[-85.02025020250203,74.66944392719282],[-85.05265052650526,74.65762388630364],[-85.07785077850778,74.64242669087469],[-85.05625056250562,74.63060664998551],[-85.0490504905049,74.6204751863662],[-85.05265052650526,74.60696656820716],[-85.06345063450634,74.58670364096855],[-85.05625056250562,74.5833264864288],[-85.0490504905049,74.57994933188903],[-85.04185041850418,74.56644071372997],[-85.04545045450455,74.56644071372997],[-85.05625056250562,74.56137498192032],[-85.0490504905049,74.55630925011067],[-85.04185041850418,74.5444892092215],[-85.03465034650347,74.53942347741184],[-85.07065070650707,74.51240624109371],[-85.12465124651246,74.49889762293466],[-85.18585185851857,74.49383189112501],[-85.33345333453335,74.49552046839489],[-85.35865358653587,74.50565193201419],[-85.36585365853658,74.51747197290337],[-85.36585365853658,74.52422628198292],[-85.36225362253622,74.53266916833232],[-85.36225362253622,74.54617778649137],[-85.37665376653766,74.55968640465045],[-85.41265412654126,74.57826075461915],[-85.4270542705427,74.58670364096855],[-85.47025470254702,74.66268961811329],[-85.4810548105481,74.67450965900247],[-85.49545495454954,74.68295254535187],[-85.51345513455134,74.68801827716152],[-85.5350553505535,74.68970685443142],[-85.54585545855458,74.68464112262177],[-85.5350553505535,74.67113250446269],[-85.54225542255422,74.66944392719282],[-85.54945549455495,74.66437819538316],[-85.55665556655566,74.66268961811329],[-85.5350553505535,74.65762388630364],[-85.53145531455314,74.64580384541446],[-85.53145531455314,74.63229522725541],[-85.52785527855278,74.61540945455658],[-85.52425524255243,74.6019008363975],[-85.48465484654847,74.5546206728408],[-85.4810548105481,74.54617778649137],[-85.48825488254882,74.53773490014197],[-85.53145531455314,74.51578339563349],[-85.5530555305553,74.50734050928409],[-85.60345603456034,74.49720904566479],[-85.86265862658627,74.49045473658526],[-86.12546125461255,74.48370042750571],[-86.08226082260822,74.53773490014197],[-86.07866078660787,74.54955494103115],[-86.10386103861039,74.5647521364601],[-86.15426154261543,74.58163790915893],[-86.17946179461794,74.5934579500481],[-86.16146161461614,74.60021225912763],[-86.15426154261543,74.60865514547703],[-86.16146161461614,74.61709803182646],[-86.17946179461794,74.62216376363611],[-86.2010620106201,74.6204751863662],[-86.22266222662226,74.61372087728668],[-86.2370623706237,74.6019008363975],[-86.22986229862298,74.58501506369868],[-86.22266222662226,74.5546206728408],[-86.25146251462515,74.52760343652267],[-86.29106291062911,74.50734050928409],[-86.31626316263163,74.49720904566479],[-86.3810638106381,74.48707758204549],[-86.44226442264423,74.49045473658526],[-86.66186661866618,74.53773490014197],[-86.71226712267122,74.55799782738055],[-86.71946719467195,74.58163790915893],[-86.7410674106741,74.58163790915893],[-86.75546755467555,74.58670364096855],[-86.76266762667626,74.59852368185776],[-86.74826748267482,74.61540945455658],[-86.76266762667626,74.61878660909633],[-86.7770677706777,74.62216376363611],[-86.78786787867878,74.62216376363611],[-86.80226802268022,74.62216376363611],[-86.80226802268022,74.61540945455658],[-86.79146791467915,74.59852368185776],[-86.79866798667986,74.5731950228095],[-86.80226802268022,74.54955494103115],[-86.78066780667807,74.53942347741184],[-86.73746737467374,74.52929201379254],[-86.6510665106651,74.48538900477561],[-86.60426604266043,74.47863469569606],[-86.60426604266043,74.47188038661653],[-86.91026910269102,74.46512607753701],[-86.93546935469354,74.46850323207678],[-87.00387003870038,74.49720904566479],[-87.00747007470075,74.50396335474431],[-87.00747007470075,74.51071766382384],[-87.01467014670146,74.51409481836362],[-87.0290702907029,74.50902908655397],[-87.03987039870398,74.50227477747444],[-87.04347043470435,74.49552046839489],[-87.03987039870398,74.49045473658526],[-87.0290702907029,74.48370042750571],[-87.05067050670506,74.47694611842618],[-87.07227072270723,74.47356896388644],[-87.1190711907119,74.47188038661653],[-87.11187111871118,74.47188038661653],[-87.25947259472595,74.46850323207678],[-87.33507335073351,74.48370042750571],[-87.37107371073711,74.5259148592528],[-87.33147331473315,74.52929201379254],[-87.31347313473134,74.5360463228721],[-87.29547295472955,74.54617778649137],[-87.36747367473674,74.5444892092215],[-87.40347403474034,74.53773490014197],[-87.43227432274323,74.51916055017327],[-87.43947439474394,74.51071766382384],[-87.44667446674467,74.49889762293466],[-87.45387453874538,74.48876615931536],[-87.46467464674646,74.48370042750571],[-87.5510755107551,74.47188038661653],[-87.54387543875438,74.47188038661653],[-87.64467644676446,74.45837176845748],[-87.69867698676987,74.46006034572736],[-87.73827738277383,74.47525754115631],[-87.74907749077491,74.48370042750571],[-87.75267752677526,74.48876615931536],[-87.74907749077491,74.50902908655397],[-87.75627756277562,74.51916055017327],[-87.77067770677706,74.51916055017327],[-87.84267842678426,74.49045473658526],[-87.87867878678786,74.48201185023584],[-88.05868058680586,74.47694611842618],[-88.11268112681127,74.48538900477561],[-88.15228152281523,74.50565193201419],[-88.1450814508145,74.50902908655397],[-88.14868148681487,74.51240624109371],[-88.17028170281702,74.50565193201419],[-88.20988209882098,74.48707758204549],[-88.24228242282423,74.48201185023584],[-88.51948519485194,74.50058620020454],[-88.53388533885338,74.50902908655397],[-88.54828548285482,74.52084912744314],[-88.5590855908559,74.53942347741184],[-88.56628566285663,74.5546206728408],[-88.56628566285663,74.5647521364601],[-88.56268562685626,74.5731950228095],[-88.54468544685446,74.61540945455658],[-88.53388533885338,74.63060664998551],[-88.51588515885159,74.63567238179516],[-88.50508505085051,74.64242669087469],[-88.47628476284763,74.66944392719282],[-88.44748447484474,74.68970685443142],[-88.4330843308433,74.7015268953206],[-88.42948429484295,74.71334693620977],[-88.4330843308433,74.72516697709895],[-88.42228422284222,74.72685555436883],[-88.41508415084151,74.73192128617848],[-88.41148411484114,74.73698701798813],[-88.41508415084151,74.74542990433753],[-88.40788407884078,74.75218421341708],[-88.41148411484114,74.7589385224966],[-88.4330843308433,74.76569283157613],[-88.29628296282962,74.77244714065566],[-88.29628296282962,74.77920144973518],[-88.32148321483214,74.78595575881474],[-88.43668436684366,74.78595575881474],[-88.4510845108451,74.78764433608461],[-88.47628476284763,74.79271006789426],[-88.4870848708487,74.79271006789426],[-88.48348483484834,74.80790726332319],[-88.47628476284763,74.81972730421236],[-88.46188461884618,74.82985876783167],[-88.44748447484474,74.83492449964132],[-88.45828458284582,74.8467445405305],[-88.52668526685267,74.89909043589685],[-88.54108541085411,74.9041561677065],[-88.57348573485734,74.9041561677065],[-88.5770857708577,74.8957132813571],[-88.56628566285663,74.88051608592815],[-88.54468544685446,74.85518742687992],[-88.55548555485555,74.84167880872084],[-88.5770857708577,74.82985876783167],[-88.62028620286202,74.82141588148227],[-88.6130861308613,74.82985876783167],[-88.6130861308613,74.83999023145097],[-88.61668616686167,74.8484331178004],[-88.62748627486275,74.85518742687992],[-88.64548645486454,74.85856458141967],[-88.65988659886598,74.85181027234015],[-88.6850868508685,74.82310445875214],[-88.6850868508685,74.81803872694249],[-88.68868688686887,74.81297299513284],[-88.69588695886958,74.80790726332319],[-88.70668706687067,74.80284153151356],[-88.72468724687246,74.79777579970391],[-88.73548735487354,74.79271006789426],[-88.74628746287462,74.78595575881474],[-88.75348753487535,74.77582429519543],[-88.75708757087571,74.76569283157613],[-88.75348753487535,74.75556136795683],[-88.74628746287462,74.73529844071825],[-88.76428764287643,74.71503551347965],[-88.80388803888039,74.68970685443142],[-88.81828818288183,74.67957539081212],[-88.83268832688327,74.67113250446269],[-88.8470884708847,74.66437819538316],[-88.86868868688687,74.66268961811329],[-88.88308883088831,74.66606677265304],[-88.89028890288903,74.67450965900247],[-88.88668886688866,74.68464112262177],[-88.87948879488795,74.68970685443142],[-88.88668886688866,74.69814974078082],[-88.90468904689047,74.70996978167],[-88.91548915489155,74.71841266801943],[-88.91908919089191,74.72685555436883],[-88.91908919089191,74.73192128617848],[-88.91548915489155,74.73529844071825],[-88.91548915489155,74.738675595258],[-88.91188911889118,74.75556136795683],[-88.90828908289083,74.76569283157613],[-88.91188911889118,74.77582429519543],[-88.91908919089191,74.78595575881474],[-88.94068940689407,74.79439864516414],[-89.01629016290163,74.81466157240274],[-89.07749077490774,74.83661307691119],[-89.0990909909099,74.83999023145097],[-89.08469084690847,74.81972730421236],[-89.0630906309063,74.80284153151356],[-89.03789037890378,74.79102149062436],[-89.00909009090091,74.78595575881474],[-89.03789037890378,74.7403641725279],[-89.05949059490595,74.72178982255917],[-89.08469084690847,74.7201012452893],[-89.10629106291063,74.72685555436883],[-89.15669156691567,74.73360986344835],[-89.2430924309243,74.7572499452267],[-89.27189271892719,74.7589385224966],[-89.25029250292502,74.75049563614718],[-89.20709207092071,74.72178982255917],[-89.11349113491134,74.69646116351095],[-89.0990909909099,74.68632969989164],[-89.10269102691026,74.66775534992294],[-89.1170911709117,74.64242669087469],[-89.13509135091351,74.6204751863662],[-89.14589145891459,74.60865514547703],[-89.19629196291963,74.58839221823845],[-89.24669246692467,74.5833264864288],[-89.38349383493835,74.58839221823845],[-89.39429394293943,74.58501506369868],[-89.4050940509405,74.57826075461915],[-89.41589415894158,74.56137498192032],[-89.42309423094231,74.55630925011067],[-89.43389433894339,74.55293209557092],[-89.57789577895778,74.54617778649137],[-89.57069570695707,74.55293209557092],[-89.59589595895959,74.55799782738055],[-89.61749617496174,74.5546206728408],[-89.66789667896678,74.54111205468172],[-89.70029700297003,74.5360463228721],[-89.80829808298083,74.53942347741184],[-89.91989919899198,74.52760343652267],[-89.94869948699487,74.53266916833232],[-89.95949959499595,74.5444892092215],[-89.97389973899739,74.57488360007937],[-89.9810998109981,74.58501506369868],[-90.00990009900099,74.59008079550833],[-90.03150031500314,74.58670364096855],[-90.06390063900639,74.56644071372997],[-90.08910089100891,74.55799782738055],[-90.11070110701107,74.5546206728408],[-90.37350373503735,74.6019008363975],[-90.3231032310323,74.61878660909633],[-90.31230312303123,74.62891807271563],[-90.47430474304743,74.60527799093728],[-90.56430564305643,74.60865514547703],[-90.7011070110701,74.64580384541446],[-90.72990729907299,74.66268961811329],[-90.7371073710737,74.67619823627234],[-90.74430744307443,74.6913954317013],[-90.75150751507515,74.70659262713025],[-90.76230762307623,74.71841266801943],[-90.7371073710737,74.72347839982908],[-90.72630726307263,74.7285441316387],[-90.72270722707226,74.738675595258],[-90.73350733507334,74.73698701798813],[-90.74070740707407,74.73529844071825],[-90.75510755107551,74.738675595258],[-90.7731077310773,74.73192128617848],[-90.82350823508234,74.7302327089086],[-90.84510845108451,74.72516697709895],[-90.85590855908559,74.71841266801943],[-90.8631086310863,74.71165835893987],[-90.86670866708667,74.70321547259047],[-90.87390873908738,74.69814974078082],[-90.90630906309063,74.68632969989164],[-90.9459094590946,74.68801827716152],[-91.0251102511025,74.70490404986035],[-90.99270992709927,74.738675595258],[-90.89550895508955,74.76062709976648],[-90.84870848708486,74.78257860427496],[-90.81630816308163,74.81803872694249],[-90.80190801908019,74.82310445875214],[-90.76950769507695,74.82817019056179],[-90.75510755107551,74.83492449964132],[-90.74790747907478,74.85012169507027],[-90.75150751507515,74.86363031322932],[-90.75870758707586,74.87376177684862],[-90.75510755107551,74.88220466319802],[-90.7731077310773,74.88727039500768],[-90.78750787507875,74.88895897227758],[-90.819908199082,74.88895897227758],[-90.81270812708127,74.88895897227758],[-90.84150841508415,74.88220466319802],[-90.8631086310863,74.87038462230885],[-90.90270902709027,74.83999023145097],[-91.10071100711006,74.75218421341708],[-91.11871118711187,74.7488070588773],[-91.13671136711366,74.75218421341708],[-91.1511115111151,74.75556136795683],[-91.16911169111691,74.7589385224966],[-91.18351183511835,74.7572499452267],[-91.21951219512195,74.74542990433753],[-91.23031230312303,74.738675595258],[-91.22671226712266,74.72516697709895],[-91.21231212312122,74.71672409074952],[-91.19431194311943,74.71165835893987],[-91.18351183511835,74.70490404986035],[-91.17991179911799,74.68801827716152],[-91.11871118711187,74.64918099995421],[-91.10071100711006,74.62891807271563],[-91.28431284312843,74.63567238179516],[-91.2771127711277,74.64242669087469],[-91.30591305913059,74.66268961811329],[-91.28071280712807,74.67788681354224],[-91.29511295112951,74.70490404986035],[-91.33111331113311,74.7201012452893],[-91.37431374313744,74.70490404986035],[-91.34911349113491,74.69814974078082],[-91.33831338313382,74.68801827716152],[-91.33831338313382,74.67619823627234],[-91.34551345513455,74.66268961811329],[-91.3671136711367,74.64918099995421],[-91.39591395913959,74.64242669087469],[-91.51471514715146,74.64411526814459],[-91.63351633516335,74.66437819538316],[-91.68751687516875,74.68295254535187],[-91.67311673116731,74.68970685443142],[-91.63351633516335,74.6998383180507],[-91.61911619116191,74.71165835893987],[-91.66591665916658,74.72685555436883],[-91.71631716317162,74.73192128617848],[-91.81351813518135,74.72516697709895],[-91.79911799117991,74.70659262713025],[-91.82071820718207,74.7015268953206],[-91.8531185311853,74.70490404986035],[-91.88191881918819,74.71165835893987],[-91.8639186391864,74.72347839982908],[-91.80631806318063,74.738675595258],[-91.86031860318603,74.75218421341708],[-91.86031860318603,74.74542990433753],[-91.91071910719107,74.7589385224966],[-92.01872018720186,74.77751287246531],[-92.06192061920619,74.80284153151356],[-92.06552065520656,74.81635014967262],[-92.05472054720546,74.82817019056179],[-92.0331203312033,74.8484331178004],[-92.02592025920259,74.85181027234015],[-92.01872018720186,74.85181027234015],[-92.01512015120151,74.85518742687992],[-92.01152011520115,74.8653188904992],[-92.01152011520115,74.87376177684862],[-92.01152011520115,74.87882750865828],[-92.00432004320042,74.88895897227758],[-92.01152011520115,74.89740185862698],[-92.01512015120151,74.90246759043663],[-92.01512015120151,74.9058447449764],[-92.01152011520115,74.90922189951615],[-92.02592025920259,74.92104194040533],[-92.04392043920438,74.92779624948486],[-92.07992079920798,74.93623913583428],[-92.04752047520475,74.94805917672346],[-92.06192061920619,74.96325637215241],[-92.1951219512195,75.02404515386817],[-92.22392223922239,75.0324880402176],[-92.22392223922239,75.03924234929713],[-92.20952209522095,75.040930926567],[-92.20232202322023,75.04599665837665],[-92.20232202322023,75.05612812199595],[-92.20232202322023,75.06794816288513],[-92.21672216722168,75.06794816288513],[-92.22752227522275,75.06794816288513],[-92.2311223112231,75.07470247196466],[-92.22392223922239,75.08145678104418],[-92.21312213122131,75.08145678104418],[-92.20232202322023,75.08145678104418],[-92.15552155521554,75.09665397647314],[-92.05472054720546,75.08821109012374],[-92.01152011520115,75.10171970828279],[-92.09072090720908,75.12198263552139],[-92.1159211592116,75.13549125368044],[-92.05832058320583,75.14731129456962],[-92.05472054720546,75.15406560364914],[-92.07272072720727,75.1591313354588],[-92.23832238322383,75.1405569854901],[-92.28152281522814,75.1405569854901],[-92.32832328323283,75.1489998718395],[-92.32472324723247,75.16588564453832],[-92.34272342723428,75.17095137634797],[-92.3679236792368,75.17263995361787],[-92.38952389523895,75.1777056854275],[-92.38592385923859,75.18108283996727],[-92.38232382323822,75.19121430358658],[-92.41112411124111,75.19459145812633],[-92.47232472324723,75.21485438536493],[-92.50472504725047,75.2182315399047],[-92.4939249392494,75.23005158079388],[-92.46512465124651,75.24187162168306],[-92.45792457924578,75.25200308530233],[-92.45792457924578,75.26382312619154],[-92.46152461524615,75.27733174435059],[-92.47232472324723,75.29252893977954],[-92.43992439924399,75.32967763971695],[-92.42912429124291,75.34149768060612],[-92.40752407524074,75.3533177214953],[-92.35352353523535,75.36513776238448],[-92.32832328323283,75.37526922600378],[-92.36072360723607,75.38033495781343],[-92.43272432724326,75.37189207146403],[-92.46152461524615,75.37526922600378],[-92.38232382323822,75.45632093495814],[-92.29952299522995,75.51204398486428],[-92.25632256322562,75.52555260302336],[-92.23832238322383,75.53399548937276],[-92.20952209522095,75.55088126207158],[-92.1951219512195,75.55594699388124],[-92.08712087120871,75.57114418931019],[-92.04392043920438,75.58127565292946],[-92.00432004320042,75.60153858016807],[-92.02592025920259,75.60998146651747],[-92.07272072720727,75.6184243528669],[-92.07992079920798,75.6285558164862],[-92.0691206912069,75.64037585737537],[-92.01152011520115,75.66401593915373],[-92.02952029520294,75.66908167096338],[-92.04392043920438,75.67752455731278],[-92.05832058320583,75.69272175274173],[-92.1519215192152,75.72987045267917],[-92.17712177121771,75.75182195718762],[-92.16992169921699,75.75857626626717],[-92.11952119521195,75.79234781166483],[-92.11232112321123,75.8024792752841],[-92.1051210512105,75.81429931617328],[-92.10152101521015,75.82949651160223],[-92.1159211592116,75.86157947973001],[-92.12672126721267,75.87339952061919],[-92.14832148321483,75.88521956150836],[-92.18432184321843,75.89535102512767],[-92.26712267122672,75.89872817966742],[-92.41112411124111,75.92574541598555],[-92.43992439924399,75.9409426114145],[-92.45072450724507,75.95782838411333],[-92.46152461524615,75.96289411592298],[-92.47592475924759,75.96458269319285],[-92.51192511925119,75.96627127046273],[-92.529925299253,75.9696484250025],[-92.54432544325444,75.9780913113519],[-92.54072540725407,75.98991135224108],[-92.55512555125551,76.00173139313026],[-92.5731257312573,76.01017427947968],[-92.59472594725948,76.01355143401943],[-92.61992619926198,76.01524001128934],[-92.63072630726307,76.02030574309899],[-92.63432634326342,76.05407728849664],[-92.63792637926379,76.06083159757617],[-92.6451264512645,76.0760287930051],[-92.64872648726487,76.08109452481474],[-92.6451264512645,76.0861602566244],[-92.63792637926379,76.09798029751357],[-92.63432634326342,76.10304602932322],[-92.6451264512645,76.11993180202205],[-92.66672666726667,76.135128997451],[-92.68832688326883,76.14526046107031],[-92.7351273512735,76.15370334741971],[-92.76032760327602,76.16552338830888],[-92.77832778327783,76.18072058373784],[-92.78552785527854,76.20098351097641],[-92.79992799927999,76.2144921291355],[-92.83592835928359,76.2246235927548],[-92.92592925929259,76.23644363364397],[-93.00513005130051,76.2803466426609],[-93.04833048330482,76.29554383808986],[-93.069930699307,76.30567530170916],[-93.08073080730807,76.32256107440799],[-93.07353073530734,76.32424965167786],[-93.05193051930519,76.33606969256704],[-93.05553055530555,76.34113542437669],[-93.05913059130592,76.34451257891646],[-93.06273062730627,76.34620115618634],[-93.06633066330663,76.34957831072612],[-93.05913059130592,76.34957831072612],[-93.12753127531275,76.36984123796469],[-93.20673206732067,76.37490696977434],[-93.28953289532895,76.36984123796469],[-93.59193591935919,76.29892099262963],[-93.67113671136711,76.3006095698995],[-93.65673656736567,76.30567530170916],[-93.63153631536315,76.31074103351881],[-93.62073620736207,76.31411818805856],[-93.63513635136351,76.32762680621764],[-93.67833678336783,76.32762680621764],[-93.69633696336963,76.32256107440799],[-93.71793717937179,76.31411818805856],[-93.75393753937539,76.2904781062802],[-93.76473764737646,76.28710095174046],[-93.7359373593736,76.27359233358138],[-93.6639366393664,76.27021517904163],[-93.63513635136351,76.26008371542233],[-93.70353703537035,76.2516408290729],[-93.84393843938439,76.27021517904163],[-93.9411394113941,76.2617722926922],[-94.00954009540095,76.26514944723198],[-94.0671406714067,76.26008371542233],[-94.18594185941859,76.28372379720068],[-94.60354603546035,76.27359233358138],[-94.66474664746647,76.28710095174046],[-94.64674646746467,76.29216668355008],[-94.64314643146432,76.29385526081998],[-94.66114661146611,76.30567530170916],[-94.66834668346684,76.30736387897903],[-94.66474664746647,76.31411818805856],[-94.74754747547475,76.31411818805856],[-94.75834758347582,76.31074103351881],[-94.80154801548015,76.28372379720068],[-94.84834848348483,76.26852660177173],[-94.99954999549995,76.2533294063428],[-95.01755017550175,76.24488651999337],[-95.04275042750427,76.22968932456442],[-95.06075060750607,76.2246235927548],[-95.08595085950859,76.22631217002467],[-95.16515165151651,76.23982078818372],[-95.39195391953919,76.23982078818372],[-95.38475384753848,76.24826367453315],[-95.38475384753848,76.2533294063428],[-95.38475384753848,76.25839513815242],[-95.39195391953919,76.26683802450185],[-95.38475384753848,76.28372379720068],[-95.3739537395374,76.29892099262963],[-95.35955359553596,76.30567530170916],[-95.29115291152911,76.28878952901033],[-95.10035100351003,76.30736387897903],[-95.07515075150751,76.31411818805856],[-95.07155071550716,76.31918391986821],[-95.07515075150751,76.32256107440799],[-95.07515075150751,76.32762680621764],[-95.0319503195032,76.33438111529716],[-94.88074880748808,76.33438111529716],[-94.84114841148411,76.32256107440799],[-94.84834848348483,76.31918391986821],[-94.85554855548556,76.31580676532846],[-94.86274862748627,76.30736387897903],[-94.84474844748448,76.30736387897903],[-94.82674826748267,76.3090524562489],[-94.81234812348123,76.31580676532846],[-94.80154801548015,76.32762680621764],[-94.84114841148411,76.33944684710681],[-95.12555125551255,76.36815266069482],[-95.1579515795158,76.35633261980564],[-95.17595175951759,76.34957831072612],[-95.19755197551976,76.35464404253574],[-95.2371523715237,76.37152981523457],[-95.25155251552515,76.37490696977434],[-95.26955269552695,76.37828412431412],[-95.30195301953019,76.37659554704422],[-95.31275312753127,76.37490696977434],[-95.34155341553415,76.36308692888517],[-95.39915399153992,76.35802119707552],[-95.43155431554315,76.35970977434539],[-95.45315453154531,76.36984123796469],[-95.4459544595446,76.38166127885387],[-95.42075420754207,76.3884155879334],[-95.39195391953919,76.39179274247317],[-95.37755377553775,76.39685847428282],[-95.42075420754207,76.40023562882257],[-95.55395553955539,76.38334985612374],[-95.8239582395824,76.3985470515527],[-95.84555845558455,76.40361278336235],[-95.89595895958959,76.42218713333105],[-95.97515975159752,76.43569575149013],[-96.039960399604,76.46271298780823],[-96.10836108361083,76.49986168774566],[-96.08316083160831,76.51843603771437],[-96.05796057960579,76.52350176952402],[-95.79515795157951,76.52181319225414],[-95.75915759157591,76.5268789240638],[-95.72315723157232,76.53869896495297],[-95.60435604356043,76.5944220148591],[-95.58995589955899,76.60961921028803],[-95.62235622356224,76.60793063301816],[-95.64755647556476,76.6028649012085],[-95.7519575195752,76.55896189219155],[-95.78435784357843,76.5538961603819],[-95.80235802358024,76.56065046946145],[-95.80235802358024,76.56740477854098],[-95.82755827558275,76.56909335581085],[-95.91755917559175,76.5555847376518],[-96.02556025560256,76.5555847376518],[-96.02196021960219,76.5657162012711],[-96.01476014760148,76.57247051035063],[-96.00396003960039,76.57753624216028],[-95.99315993159931,76.58091339670003],[-96.0291602916029,76.58935628304945],[-96.10476104761047,76.57922481943015],[-96.14076140761408,76.5842905512398],[-96.1659616596166,76.5927334375892],[-96.17316173161731,76.59779916939885],[-96.18036180361803,76.60624205574828],[-96.19476194761947,76.61468494209768],[-96.24516245162451,76.62312782844711],[-96.2379623796238,76.62650498298686],[-96.22716227162272,76.63663644660616],[-96.37116371163711,76.63832502387604],[-96.4179641796418,76.64845648749534],[-96.44676446764467,76.66027652838451],[-96.46116461164611,76.66871941473394],[-96.46476464764648,76.68053945562312],[-96.47556475564755,76.69067091924242],[-96.50076500765007,76.69573665105204],[-96.68076680766808,76.710933846481],[-96.76716767167672,76.69911380559182],[-96.87156871568716,76.7024909601316],[-96.92556925569255,76.71599957829065],[-96.96516965169651,76.739639660069],[-96.93636936369363,76.739639660069],[-96.90036900369003,76.74639396914853],[-96.8679686796868,76.7582140100377],[-96.84276842768428,76.77341120546666],[-96.86076860768607,76.77341120546666],[-96.88236882368824,76.77847693727631],[-96.90036900369003,76.78691982362571],[-96.9039690396904,76.80211701905466],[-96.88956889568895,76.81224848267397],[-96.8679686796868,76.81393705994384],[-96.81756817568176,76.80718275086431],[-96.7959679596796,76.79705128724501],[-96.78876788767887,76.79367413270526],[-96.77436774367743,76.79367413270526],[-96.75276752767527,76.79536270997514],[-96.7419674196742,76.79367413270526],[-96.67716677166771,76.77341120546666],[-96.69156691566916,76.76327974184736],[-96.68076680766808,76.75652543276783],[-96.66276662766627,76.75483685549796],[-96.64476644766448,76.75314827822805],[-96.57276572765727,76.76665689638713],[-96.53676536765367,76.77003405092688],[-96.50796507965079,76.75990258730761],[-96.50796507965079,76.76665689638713],[-96.40716407164071,76.74639396914853],[-96.34956349563495,76.74639396914853],[-96.30996309963099,76.75990258730761],[-96.32436324363243,76.76327974184736],[-96.37476374763747,76.75990258730761],[-96.39276392763928,76.76327974184736],[-96.42516425164251,76.77172262819678],[-96.49356493564936,76.78016551454618],[-96.51516515165152,76.78016551454618],[-96.56556565565656,76.77341120546666],[-96.58356583565835,76.77341120546666],[-96.58356583565835,76.78016551454618],[-96.56196561965619,76.78354266908596],[-96.50796507965079,76.78691982362571],[-96.50796507965079,76.79367413270526],[-96.5259652596526,76.80211701905466],[-96.51876518765188,76.80549417359444],[-96.51156511565115,76.80887132813419],[-96.49356493564936,76.80887132813419],[-96.47916479164792,76.80549417359444],[-96.45756457564575,76.79536270997514],[-96.44676446764467,76.79367413270526],[-96.34236342363424,76.79873986451491],[-96.31356313563136,76.80887132813419],[-96.59796597965979,76.84095429626197],[-96.6159661596616,76.84939718261137],[-96.68436684366843,76.8662829553102],[-96.71316713167131,76.86966010984997],[-96.78516785167851,76.8662829553102],[-96.82116821168212,76.87134868711985],[-96.84996849968499,76.89161161435845],[-96.86436864368643,76.91694027340668],[-96.84996849968499,76.93044889156576],[-96.77076770767708,76.94226893245494],[-96.71316713167131,76.93889177791516],[-96.65916659166591,76.95240039607424],[-96.69876698766987,76.96422043696342],[-96.7419674196742,76.97097474604294],[-96.82836828368283,76.97266332331282],[-96.81756817568176,76.98279478693212],[-96.80316803168031,76.98617194147187],[-96.76716767167672,76.98617194147187],[-96.77436774367743,76.98617194147187],[-96.47916479164792,76.97266332331282],[-96.48636486364863,76.95915470515376],[-96.47196471964719,76.95915470515376],[-96.46476464764648,76.96253185969351],[-96.46116461164611,76.96928616877304],[-96.4539645396454,76.97266332331282],[-96.39636396363963,76.98110620966224],[-96.37836378363784,76.98954909601164],[-96.34956349563495,76.99292625055142],[-96.30636306363063,76.98617194147187],[-96.26676266762668,76.98786051874177],[-96.24516245162451,77.00643486871047],[-96.30996309963099,77.00643486871047],[-96.30996309963099,77.01318917779],[-96.30276302763028,77.01318917779],[-96.32076320763207,77.02500921867917],[-96.36756367563676,77.02838637321895],[-96.38916389163892,77.0334521050286],[-96.00036000360004,77.05033787772743],[-95.89235892358923,77.070600804966],[-95.76995769957699,77.07735511404556],[-95.66555665556655,77.0621579186166],[-95.42435424354244,77.0621579186166],[-95.40275402754027,77.05709218680695],[-95.35595355953559,77.0435835686479],[-95.30915309153092,77.03851783683825],[-95.2371523715237,77.01318917779],[-95.19035190351903,77.0047462914406],[-95.00315003150031,76.99630340509117],[-94.95634956349564,76.98279478693212],[-94.93114931149312,76.97941763239234],[-94.50634506345064,76.97097474604294],[-94.49914499144991,76.96590901423329],[-94.49554495544955,76.95915470515376],[-94.49554495544955,76.95408897334411],[-94.49914499144991,76.94902324153446],[-94.49914499144991,76.94564608699469],[-94.48834488344883,76.93720320064529],[-94.47394473944739,76.92876031429586],[-94.4559445594456,76.92031742794646],[-94.44154441544416,76.91862885067658],[-94.30834308343083,76.92200600521633],[-94.26514265142652,76.91187454159703],[-94.25794257942579,76.9068088097874],[-94.25794257942579,76.90174307797776],[-94.25434254342544,76.8966773461681],[-94.24354243542435,76.89330019162833],[-94.23274232742327,76.88992303708858],[-94.1139411394114,76.88823445981868],[-94.03834038340383,76.9051202325175],[-94.00594005940059,76.92538315975611],[-93.98433984339843,76.93213746883563],[-93.96273962739627,76.93720320064529],[-93.91953919539195,76.93889177791516],[-93.82233822338223,76.92200600521633],[-93.69993699937,76.92031742794646],[-93.67113671136711,76.9152516961368],[-93.64233642336423,76.90174307797776],[-93.61713617136171,76.87979157346928],[-93.58473584735847,76.86121722350055],[-93.50553505535055,76.84939718261137],[-93.46233462334624,76.82744567810292],[-93.42993429934299,76.82406852356314],[-93.41553415534155,76.82237994629327],[-93.40833408334083,76.81731421448362],[-93.39393393933939,76.80380559632454],[-93.39033390333903,76.80211701905466],[-93.33633336333364,76.79536270997514],[-93.2859328593286,76.78016551454618],[-93.30033300333002,76.77341120546666],[-93.30033300333002,76.76665689638713],[-93.27153271532715,76.75314827822805],[-93.25713257132571,76.74808254641843],[-93.24273242732427,76.74639396914853],[-93.20673206732067,76.75314827822805],[-93.1959319593196,76.75314827822805],[-93.18513185131852,76.739639660069],[-93.17793177931779,76.71937673283043],[-93.17793177931779,76.68053945562312],[-93.18873188731887,76.66703083746404],[-93.26073260732608,76.62650498298686],[-93.26073260732608,76.62143925117721],[-93.26073260732608,76.6028649012085],[-93.26433264332643,76.59611059212898],[-93.28233282332823,76.58766770577955],[-93.30033300333002,76.57922481943015],[-93.31113311133112,76.56909335581085],[-93.30033300333002,76.5555847376518],[-93.33633336333364,76.53701038768307],[-93.42273422734227,76.51505888317462],[-93.46593465934659,76.49986168774566],[-93.47673476734766,76.48973022412636],[-93.4839348393484,76.48635306958661],[-93.50193501935019,76.48128733777696],[-93.63153631536315,76.4559586787287],[-93.65673656736567,76.4458272151094],[-93.61353613536136,76.41543282425152],[-93.55953559535595,76.39516989701295],[-93.50553505535055,76.3901041652033],[-93.45873458734587,76.41036709244187],[-93.5271352713527,76.41036709244187],[-93.55953559535595,76.41374424698165],[-93.58113581135811,76.43063001968048],[-93.50553505535055,76.45427010145883],[-93.37953379533795,76.46777871961788],[-93.36153361533616,76.47115587415766],[-93.35073350733506,76.47791018323719],[-93.33273332733327,76.49310737866614],[-93.31833318333183,76.49986168774566],[-93.26433264332643,76.51674746044449],[-93.24633246332463,76.52350176952402],[-93.23553235532356,76.53194465587345],[-93.22473224732246,76.55051900584215],[-93.21753217532175,76.5555847376518],[-93.18513185131852,76.55896189219155],[-93.15273152731527,76.56740477854098],[-93.09513095130951,76.59611059212898],[-93.09873098730986,76.59948774666873],[-93.1131311313113,76.61637351936756],[-93.08073080730807,76.62819356025676],[-92.95112951129511,76.62988213752664],[-92.91872918729187,76.62143925117721],[-92.81432814328143,76.61637351936756],[-92.72432724327243,76.59779916939885],[-92.69192691926919,76.59611059212898],[-92.52272522725227,76.62143925117721],[-92.46152461524615,76.61637351936756],[-92.40032400324003,76.60117632393863],[-92.3679236792368,76.59948774666873],[-92.33552335523355,76.6028649012085],[-92.23472234722347,76.62312782844711],[-92.15552155521554,76.61975067390733],[-92.01152011520115,76.65689937384477],[-92.00432004320042,76.66365368292429],[-91.72351723517235,76.67885087835322],[-91.44271442714427,76.69404807378217],[-91.14031140311403,76.67209656927369],[-91.09351093510935,76.66027652838451],[-91.01071010710106,76.65689937384477],[-90.92070920709207,76.64339075568569],[-90.87750877508775,76.62819356025676],[-90.84150841508415,76.60624205574828],[-90.80550805508055,76.58766770577955],[-90.57150571505714,76.5640276240012],[-90.53190531905318,76.55051900584215],[-90.49590495904958,76.5268789240638],[-90.50670506705066,76.52012461498427],[-90.51390513905139,76.51505888317462],[-90.5211052110521,76.50999315136497],[-90.53190531905318,76.50661599682519],[-90.51750517505175,76.49479595593601],[-90.50310503105031,76.49141880139624],[-90.47070470704706,76.48635306958661],[-90.49230492304923,76.46777871961788],[-90.65430654306543,76.4559586787287],[-90.92430924309242,76.48635306958661],[-90.94950949509494,76.49648453320589],[-90.97830978309783,76.51337030590471],[-91.00351003510035,76.52012461498427],[-91.0251102511025,76.49986168774566],[-91.02151021510215,76.49817311047579],[-91.01071010710106,76.49310737866614],[-91.0719107191072,76.48128733777696],[-91.14391143911439,76.48128733777696],[-91.34911349113491,76.51674746044449],[-91.5651156511565,76.50661599682519],[-91.5651156511565,76.49986168774566],[-91.51831518315183,76.49648453320589],[-91.47151471514715,76.48635306958661],[-91.45351453514535,76.47959876050706],[-91.41751417514175,76.46440156507813],[-91.39951399513996,76.45933583326848],[-90.9891098910989,76.45089294691905],[-90.96030960309602,76.43907290602988],[-90.95310953109531,76.43738432876],[-90.80550805508055,76.43400717422023],[-90.72990729907299,76.42049855606118],[-90.63990639906399,76.4171214015214],[-90.57870578705787,76.39179274247317],[-90.5571055710557,76.39348131974305],[-90.51030510305102,76.40698993790213],[-90.4491044910449,76.41205566971178],[-90.06390063900639,76.37490696977434],[-89.68229682296823,76.33775826983691],[-89.29709297092971,76.3006095698995],[-89.29349293492935,76.29892099262963],[-89.28989289892898,76.2904781062802],[-89.28269282692827,76.28710095174046],[-89.21789217892179,76.26683802450185],[-89.19269192691927,76.24826367453315],[-89.20709207092071,76.2246235927548],[-89.22149221492215,76.2229350154849],[-89.25029250292502,76.22631217002467],[-89.26469264692646,76.2246235927548],[-89.27189271892719,76.22124643821502],[-89.28269282692827,76.20942639732584],[-89.28989289892898,76.20436066551619],[-89.31149311493115,76.19760635643667],[-89.37989379893799,76.18409773827759],[-89.73989739897398,76.18240916100771],[-90.09630096300963,76.18072058373784],[-90.45630456304562,76.17734342919806],[-90.42750427504275,76.16214623376914],[-90.09630096300963,76.15032619287993],[-90.04950049500495,76.13681757472088],[-90.09270092700926,76.1249975338317],[-90.1431014310143,76.12837468837148],[-90.23670236702367,76.1435718838004],[-90.69750697506974,76.17058912011854],[-91.16191161911618,76.19760635643667],[-91.23751237512374,76.2246235927548],[-91.6119161191612,76.26683802450185],[-91.58671586715867,76.25670656088255],[-91.5291152911529,76.2533294063428],[-91.50031500315004,76.2516408290729],[-91.46791467914679,76.24150936545362],[-91.27351273512735,76.21111497459572],[-91.25911259112591,76.20098351097641],[-91.26991269912699,76.18916347008724],[-91.35271352713526,76.17734342919806],[-91.35631356313563,76.17058912011854],[-91.41031410314103,76.15708050195948],[-91.41031410314103,76.15032619287993],[-91.3671136711367,76.14526046107031],[-91.24471244712447,76.16383481103901],[-90.78750787507875,76.13175184291123],[-90.74070740707407,76.12330895656183],[-90.69030690306903,76.12330895656183],[-90.66870668706687,76.1148660702124],[-90.6831068310683,76.11148891567265],[-90.71550715507155,76.11148891567265],[-90.72990729907299,76.10811176113288],[-90.7371073710737,76.10304602932322],[-90.74070740707407,76.09798029751357],[-90.74070740707407,76.09122598843405],[-90.74430744307443,76.08784883389427],[-90.7731077310773,76.077717370275],[-90.80190801908019,76.07434021573522],[-90.86670866708667,76.0760287930051],[-90.86670866708667,76.0675859066557],[-90.71910719107191,76.05576586576652],[-90.68670686706866,76.06420875211592],[-90.65790657906578,76.077717370275],[-90.62190621906218,76.08784883389427],[-90.55350553505535,76.0962917202437],[-90.18990189901899,76.0675859066557],[-90.22950229502295,76.04225724760744],[-90.29070290702907,76.03212578398816],[-90.69750697506974,76.03381436125804],[-91.10431104311043,76.03381436125804],[-91.16191161911618,76.02030574309899],[-91.11151111511114,76.01186285674956],[-90.9891098910989,76.02030574309899],[-90.94230942309423,76.00679712493991],[-90.97470974709746,75.9966656613206],[-91.03951039510395,76.00004281586038],[-91.0719107191072,75.99328850678086],[-91.05031050310502,75.98484562043143],[-90.99990999909998,75.97471415681215],[-90.97830978309783,75.97302557954225],[-90.95670956709567,75.96627127046273],[-90.9459094590946,75.95445122957355],[-90.9459094590946,75.94263118868437],[-90.96750967509675,75.93756545687472],[-91.01071010710106,75.93587687960485],[-91.10431104311043,75.91899110690602],[-91.14751147511475,75.90379391147707],[-91.14031140311403,75.89366244785776],[-91.12591125911258,75.88184240696859],[-91.12231122311223,75.87002236607941],[-91.12951129511295,75.84469370703118],[-91.12951129511295,75.83625082068176],[-91.10791107911079,75.84807086157093],[-91.10791107911079,75.8413165524914],[-91.08631086310862,75.84975943884083],[-91.06831068310683,75.87508809788906],[-91.05391053910539,75.88353098423849],[-91.0611106111061,75.89366244785776],[-91.06471064710647,75.89703960239754],[-91.04311043110431,75.90379391147707],[-90.93150931509315,75.92405683871567],[-90.85230852308523,75.95445122957355],[-90.83430834308342,75.96627127046273],[-90.8091080910809,75.99159992951098],[-90.79830798307982,75.99835423859051],[-90.7731077310773,76.00173139313026],[-90.73350733507334,75.99835423859051],[-90.69750697506974,75.98991135224108],[-90.67590675906759,75.9780913113519],[-90.70830708307082,75.9780913113519],[-90.72270722707226,75.97471415681215],[-90.7371073710737,75.96458269319285],[-90.7011070110701,75.95613980684342],[-90.66150661506614,75.9595169613832],[-90.55350553505535,75.98653419770133],[-90.51030510305102,75.98653419770133],[-90.46710467104671,75.98315704316155],[-90.42750427504275,75.97302557954225],[-90.45630456304562,75.96120553865308],[-90.48870488704887,75.95276265230368],[-90.51750517505175,75.9409426114145],[-90.53190531905318,75.91730252963612],[-90.51750517505175,75.89872817966742],[-90.49230492304923,75.90548248874694],[-90.43470434704346,75.93587687960485],[-90.3591035910359,75.9493854977639],[-90.34830348303483,75.95445122957355],[-90.33750337503375,75.9696484250025],[-90.31590315903159,75.97471415681215],[-90.24390243902438,75.9696484250025],[-90.22950229502295,75.96289411592298],[-90.1971019710197,75.94431976595425],[-90.17550175501755,75.9392540341446],[-90.11430114301143,75.93756545687472],[-90.11070110701107,75.95445122957355],[-90.08190081900818,75.97977988862178],[-90.07830078300783,75.99328850678086],[-90.04950049500495,76.01017427947968],[-90.00630006300062,76.01861716582908],[-89.96309963099631,76.01524001128934],[-89.92709927099271,76.00679712493991],[-89.9450994509945,76.00004281586038],[-89.95949959499595,75.9882227749712],[-89.95949959499595,75.97640273408203],[-89.94149941499414,75.97302557954225],[-89.84789847898479,75.9679598477326],[-89.82989829898298,75.96120553865308],[-89.8190981909819,75.9493854977639],[-89.80829808298083,75.9392540341446],[-89.79749797497975,75.93249972506507],[-89.77589775897759,75.92574541598555],[-89.68949689496894,75.90379391147707],[-89.71109711097111,75.88184240696859],[-89.76869768697686,75.84300512976128],[-89.7830978309783,75.82105362525283],[-89.77589775897759,75.81936504798293],[-89.75789757897579,75.80754500709375],[-89.76149761497615,75.804167852554],[-89.77589775897759,75.7940363889347],[-89.7650976509765,75.79065923439492],[-89.74709747097471,75.78897065712505],[-89.7290972909729,75.79065923439492],[-89.71469714697146,75.7940363889347],[-89.70749707497075,75.80079069801423],[-89.68229682296823,75.82105362525283],[-89.66789667896678,75.8227422025227],[-89.61749617496174,75.83962797522153],[-89.59949599495995,75.8413165524914],[-89.57789577895778,75.83962797522153],[-89.55989559895599,75.84300512976128],[-89.55269552695526,75.85482517065049],[-89.62109621096211,75.85482517065049],[-89.61389613896138,75.85989090246011],[-89.60669606696067,75.86157947973001],[-89.59949599495995,75.86326805699989],[-89.58869588695886,75.86157947973001],[-89.5130951309513,75.85989090246011],[-89.4410944109441,75.84807086157093],[-89.31869318693187,75.80754500709375],[-89.19629196291963,75.79572496620457],[-89.17109171091711,75.7839049253154],[-89.16389163891638,75.7653305753467],[-89.16749167491675,75.75013337991774],[-89.19269192691927,75.72649329813939],[-89.20709207092071,75.71129610271043],[-89.23589235892359,75.66401593915373],[-89.25749257492575,75.63868728010547],[-89.25749257492575,75.63531012556572],[-89.27189271892719,75.63193297102595],[-89.30789307893079,75.6369987028356],[-89.4050940509405,75.61673577559702],[-89.64629646296463,75.62180150740667],[-89.66429664296642,75.60660431197772],[-89.69669696696967,75.59309569381864],[-89.73269732697327,75.58465280746924],[-89.76149761497615,75.58127565292946],[-89.71109711097111,75.57283276658006],[-89.59949599495995,75.59309569381864],[-89.54549545495455,75.57452134384994],[-89.58149581495815,75.56438988023064],[-89.66789667896678,75.56945561204029],[-89.70749707497075,75.56101272569089],[-89.67509675096751,75.54919268480171],[-89.54189541895418,75.55425841661136],[-89.50949509495095,75.55932414842101],[-89.44829448294483,75.58296423019937],[-89.41589415894158,75.58802996200902],[-89.20709207092071,75.58634138473911],[-89.1890918909189,75.57789849838971],[-89.17109171091711,75.56270130296076],[-89.14589145891459,75.52724118029323],[-89.13869138691386,75.52217544848358],[-89.10989109891099,75.51710971667393],[-89.10629106291063,75.50866683032453],[-89.10629106291063,75.49853536670523],[-89.10269102691026,75.48840390308592],[-89.07749077490774,75.4816495940064],[-88.99468994689947,75.47320670765697],[-88.98028980289803,75.46814097584735],[-88.98748987489874,75.44956662587862],[-88.96948969489695,75.43774658498944],[-88.94068940689407,75.43268085317979],[-88.91908919089191,75.43099227590992],[-88.76428764287643,75.43774658498944],[-88.76428764287643,75.44787804860874],[-88.74988749887498,75.4715181303871],[-88.75348753487535,75.4816495940064],[-88.78948789487895,75.52724118029323],[-88.81468814688147,75.55088126207158],[-88.9010890108901,75.6082928892476],[-88.80388803888039,75.6285558164862],[-88.75708757087571,75.64544158918503],[-88.75708757087571,75.67752455731278],[-88.7210872108721,75.68596744366221],[-88.6850868508685,75.68259028912243],[-88.6130861308613,75.66401593915373],[-88.58068580685807,75.65895020734408],[-88.48348483484834,75.6082928892476],[-88.33228332283322,75.56101272569089],[-88.22428224282243,75.54581553026193],[-88.20268202682027,75.53399548937276],[-88.1990819908199,75.5187982939438],[-88.20988209882098,75.51373256213418],[-88.24228242282423,75.51204398486428],[-88.28908289082891,75.5002239439751],[-88.30348303483035,75.49853536670523],[-88.30348303483035,75.4917810576257],[-88.24588245882458,75.47827243946662],[-88.22788227882279,75.4715181303871],[-88.22788227882279,75.47827243946662],[-88.21348213482135,75.47320670765697],[-88.20268202682027,75.47827243946662],[-88.19188191881919,75.48502674854615],[-88.1810818108181,75.4917810576257],[-87.99387993879938,75.53399548937276],[-88.00108001080011,75.53399548937276],[-87.99387993879938,75.53906122118241],[-87.9830798307983,75.54412695299206],[-87.96867968679686,75.54750410753181],[-87.95427954279542,75.54750410753181],[-87.96147961479615,75.54750410753181],[-87.74907749077491,75.58127565292946],[-87.66987669876698,75.56945561204029],[-87.63387633876339,75.55594699388124],[-87.63027630276302,75.53737264391253],[-87.61587615876158,75.52386402575345],[-87.52587525875258,75.49684678943535],[-87.49707497074971,75.4917810576257],[-87.51147511475115,75.47489528492687],[-87.54387543875438,75.46476382130757],[-87.57627576275762,75.45969808949792],[-87.6050760507605,75.45800951222805],[-87.6050760507605,75.45125520314852],[-87.5150751507515,75.44956662587862],[-87.46827468274682,75.45632093495814],[-87.43227432274323,75.4715181303871],[-87.4250742507425,75.5002239439751],[-87.45387453874538,75.51710971667393],[-87.48987489874898,75.5289297575631],[-87.50787507875079,75.54412695299206],[-87.50787507875079,75.56101272569089],[-87.50067500675006,75.56607845750054],[-87.46107461074611,75.56776703477041],[-87.44667446674467,75.57283276658006],[-87.41427414274142,75.58634138473911],[-87.40347403474034,75.58802996200902],[-87.39987399873998,75.59309569381864],[-87.39267392673926,75.60153858016807],[-87.38187381873819,75.61167004378737],[-87.36387363873638,75.61673577559702],[-87.26667266672666,75.62349008467655],[-87.11187111871118,75.59478427108854],[-87.09747097470975,75.58802996200902],[-87.09027090270902,75.57958707565959],[-87.08667086670866,75.57114418931019],[-87.07587075870758,75.56101272569089],[-87.06147061470614,75.55088126207158],[-86.7770677706777,75.47658386219675],[-86.5790657906579,75.47827243946662],[-86.51786517865179,75.46814097584735],[-86.39546395463954,75.43099227590992],[-86.3630636306363,75.43099227590992],[-86.39186391863919,75.41410650321109],[-86.42066420664206,75.40566361686169],[-86.61866618666187,75.36851491692425],[-86.40266402664027,75.37695780327365],[-86.19746197461974,75.41579508048096],[-85.99225992259922,75.42254938956049],[-85.81585815858158,75.40904077140144],[-85.52065520655206,75.40228646232191],[-85.52065520655206,75.40904077140144],[-85.54225542255422,75.41410650321109],[-85.54945549455495,75.41410650321109],[-85.55665556655566,75.40904077140144],[-85.58185581855818,75.41917223502074],[-85.79065790657906,75.43099227590992],[-85.83385833858338,75.43943516225931],[-85.90945909459094,75.46645239857745],[-86.1110611106111,75.48502674854615],[-86.12546125461255,75.4900924803558],[-86.14346143461434,75.5002239439751],[-86.15066150661507,75.50866683032453],[-86.13986139861399,75.51204398486428],[-86.09666096660966,75.51710971667393],[-86.01026010260102,75.53568406664263],[-85.7150571505715,75.55763557115111],[-85.59265592655926,75.59647284835842],[-85.52785527855278,75.60153858016807],[-85.56385563855638,75.58296423019937],[-85.56745567455674,75.57283276658006],[-85.54585545855458,75.56776703477041],[-85.45945459454595,75.56101272569089],[-85.38745387453874,75.57283276658006],[-85.22545225452254,75.56101272569089],[-85.22545225452254,75.56776703477041],[-85.29745297452975,75.57452134384994],[-85.32265322653227,75.57452134384994],[-85.3190531905319,75.57958707565959],[-85.3190531905319,75.58127565292946],[-85.3010530105301,75.58802996200902],[-85.29385293852938,75.58802996200902],[-85.2830528305283,75.58802996200902],[-85.29025290252902,75.59309569381864],[-85.29745297452975,75.59478427108854],[-85.29745297452975,75.60153858016807],[-85.21465214652146,75.60153858016807],[-85.20025200252002,75.60491573470784],[-85.1930519305193,75.61167004378737],[-85.18945189451894,75.62011293013677],[-85.17865178651786,75.6285558164862],[-85.16065160651605,75.63193297102595],[-85.09585095850959,75.6285558164862],[-85.07425074250742,75.63193297102595],[-85.03465034650347,75.64037585737537],[-85.0130501305013,75.64375301191512],[-85.0130501305013,75.65050732099468],[-85.0310503105031,75.65388447553443],[-85.04545045450455,75.6555730528043],[-84.80424804248042,75.6555730528043],[-84.57744577445774,75.62349008467655],[-84.50184501845018,75.63531012556572],[-84.53784537845378,75.64375301191512],[-84.62064620646206,75.64375301191512],[-84.65664656646567,75.65050732099468],[-84.63864638646386,75.66063878461395],[-84.64224642246423,75.67077024823325],[-84.66384663846638,75.69103317547186],[-84.28944289442894,75.71298467998034],[-84.21024210242102,75.75351053445752],[-84.17784177841779,75.76364199807679],[-84.01944019440194,75.77208488442622],[-83.9330393303933,75.8024792752841],[-83.91863918639186,75.81429931617328],[-83.98343983439834,75.82105362525283],[-84.00144001440015,75.82949651160223],[-83.83943839438395,75.81429931617328],[-83.7350373503735,75.82611935706245],[-83.6990369903699,75.82105362525283],[-83.71343713437135,75.81598789344318],[-83.7530375303753,75.80754500709375],[-83.6810368103681,75.79234781166483],[-83.5190351903519,75.79910212074435],[-83.4290342903429,75.75519911172739],[-83.39663396633966,75.74844480264787],[-83.2670326703267,75.74337907083822],[-83.19863198631985,75.75519911172739],[-83.17343173431733,75.75519911172739],[-83.11943119431194,75.74000191629844],[-83.09063090630906,75.74000191629844],[-82.62622626226262,75.82105362525283],[-82.53982539825398,75.82105362525283],[-82.50382503825038,75.82949651160223],[-82.41742417424175,75.82949651160223],[-82.33102331023309,75.84300512976128],[-81.92421924219242,75.8227422025227],[-81.51741517415174,75.80079069801423],[-81.11421114211142,75.77883919350575],[-81.09981099810997,75.7737734616961],[-81.09621096210962,75.76026484353704],[-81.1070110701107,75.75519911172739],[-81.1250112501125,75.74169049356834],[-81.13581135811357,75.73831333902856],[-81.15381153811538,75.73662476175869],[-81.16821168211682,75.73155902994904],[-81.24021240212402,75.6944103300116],[-81.28701287012869,75.66401593915373],[-81.2510125101251,75.65388447553443],[-81.17541175411753,75.6572616300742],[-81.13941139411394,75.65388447553443],[-81.09981099810997,75.64375301191512],[-81.0170101701017,75.6369987028356],[-80.75780757807578,75.64881874372477],[-80.50220502205022,75.66232736188385],[-80.46620466204662,75.6555730528043],[-80.4590045900459,75.65388447553443],[-80.45180451804518,75.64544158918503],[-80.44460444604445,75.64375301191512],[-80.41580415804158,75.6369987028356],[-80.33660336603366,75.63868728010547],[-80.22140221402213,75.6184243528669],[-80.17820178201782,75.60153858016807],[-80.10980109801098,75.59478427108854],[-80.07740077400774,75.58634138473911],[-80.05940059400594,75.56776703477041],[-80.07020070200701,75.56607845750054],[-80.07740077400774,75.56270130296076],[-80.08460084600846,75.55594699388124],[-80.08820088200882,75.54750410753181],[-80.05220052200522,75.54412695299206],[-79.98019980199801,75.54919268480171],[-79.95139951399514,75.54074979845228],[-79.99459994599945,75.52386402575345],[-80.34020340203402,75.48333817127627],[-80.37620376203762,75.46476382130757],[-80.01260012600126,75.46814097584735],[-79.6489964899649,75.46982955311722],[-79.5949959499595,75.45969808949792],[-79.57339573395734,75.45125520314852],[-79.6309963099631,75.4529437804184],[-79.65979659796598,75.44956662587862],[-79.68139681396814,75.43774658498944],[-79.62739627396273,75.41072934867131],[-79.5949959499595,75.40228646232191],[-79.5589955899559,75.39722073051226],[-79.51939519395194,75.39553215324239],[-79.50139501395013,75.39215499870261],[-79.49059490594905,75.3820235350833],[-79.49419494194942,75.36851491692425],[-79.5049950499505,75.36176060784473],[-79.51939519395194,75.36007203057483],[-79.53379533795338,75.3550062987652],[-79.52659526595265,75.3533177214953],[-79.51579515795157,75.34994056695555],[-79.51219512195122,75.34825198968565],[-79.53379533795338,75.32798906244707],[-79.59859598595986,75.31954617609765],[-79.61659616596165,75.30434898066872],[-79.59139591395913,75.28915178523977],[-79.44379443794438,75.28746320796989],[-79.45099450994509,75.27564316708072],[-79.45459454594545,75.27226601254094],[-79.49779497794978,75.25875739438189],[-79.51219512195122,75.25200308530233],[-79.51579515795157,75.23005158079388],[-79.60579605796057,75.1979686126661],[-79.62739627396273,75.18108283996727],[-79.74979749797498,75.17095137634797],[-79.80019800198002,75.17601710815762],[-79.81459814598145,75.1777056854275],[-79.82539825398254,75.17601710815762],[-79.83259832598326,75.17263995361787],[-79.83619836198362,75.1692627990781],[-79.83619836198362,75.16419706726845],[-79.8469984699847,75.15575418091905],[-79.86499864998649,75.15237702637927],[-79.90459904599045,75.1489998718395],[-79.92259922599226,75.14731129456962],[-79.9369993699937,75.1405569854901],[-79.94779947799478,75.13380267641057],[-79.95859958599586,75.12198263552139],[-79.96219962199622,75.11185117190209],[-79.96219962199622,75.10340828555266],[-79.96939969399693,75.09665397647314],[-80.28620286202862,75.06288243107548],[-80.32220322203221,75.04430808110678],[-80.34380343803437,75.03924234929713],[-80.44460444604445,75.03924234929713],[-80.3510035100351,75.0139136902489],[-80.32220322203221,75.00209364935972],[-80.28620286202862,74.9936507630103],[-80.21060210602106,74.9936507630103],[-80.17820178201782,74.9852078766609],[-80.25740257402573,74.97676499031147],[-80.27540275402754,74.96832210396207],[-80.27540275402754,74.95650206307289],[-80.25020250202502,74.95312490853311],[-80.19620196201961,74.95819064034276],[-80.13860138601386,74.97001068123194],[-80.10620106201061,74.97338783577169],[-80.08100081000809,74.96832210396207],[-80.05940059400594,74.96156779488251],[-80.0450004500045,74.96325637215241],[-80.03060030600305,74.97338783577169],[-80.01980019800197,74.9852078766609],[-80.0270002700027,74.9852078766609],[-79.77859778597785,75.0324880402176],[-79.74259742597425,75.0324880402176],[-79.64179641796417,75.01897942205855],[-79.59139591395913,75.02066799932842],[-79.5049950499505,74.99871649481994],[-79.53379533795338,74.99871649481994],[-79.54819548195482,74.99702791755007],[-79.5589955899559,74.99196218574042]]],[[[-96.62316623166231,80.04418537722944],[-96.66636666366664,80.04418537722944],[-96.72036720367204,80.05431684084874],[-96.77436774367743,80.07289119081744],[-96.80316803168031,80.0965312725958],[-96.78156781567816,80.09990842713557],[-96.77076770767708,80.11341704529463],[-96.75996759967599,80.12861424072358],[-96.74916749167491,80.14043428161276],[-96.70956709567095,80.14887716796218],[-96.3639636396364,80.14212285888263],[-96.01836018360183,80.07120261354757],[-95.70515705157051,80.05769399538852],[-95.66915669156691,80.04925110903909],[-95.67635676356764,80.04925110903909],[-95.46755467554675,80.04756253176922],[-95.16875168751687,80.03405391361014],[-94.95994959949599,80.04587395449934],[-94.84474844748448,80.04587395449934],[-94.42354423544235,79.98170801824378],[-94.38394383943839,79.9884623273233],[-94.42354423544235,80.00703667729204],[-94.44874448744487,80.01210240910169],[-94.50274502745027,80.01885671818121],[-94.56034560345603,80.03911964541979],[-94.64674646746467,80.05093968630896],[-94.75114751147511,80.08639980897652],[-94.80874808748086,80.08977696351627],[-94.80874808748086,80.0965312725958],[-94.54594545945459,80.15732005431158],[-94.08874088740887,80.17927155882006],[-94.10674106741067,80.18771444516949],[-94.4919449194492,80.20797737240807],[-94.50274502745027,80.21979741329724],[-94.54234542345424,80.2248631451069],[-94.58554585545855,80.22655172237677],[-94.6179461794618,80.22317456783702],[-94.69354693546936,80.18771444516949],[-94.95994959949599,80.14212285888263],[-95.40275402754027,80.1269256634537],[-95.65475654756547,80.17758298155019],[-95.6979569795698,80.17927155882006],[-95.67635676356764,80.19278017697911],[-95.55755557555575,80.20966594967794],[-95.33795337953379,80.20966594967794],[-95.28035280352803,80.21979741329724],[-95.23355233552336,80.24174891780572],[-95.26235262352623,80.25019180415512],[-95.30195301953019,80.2451260723455],[-95.37755377553775,80.22824029964667],[-95.56115561155612,80.22824029964667],[-95.57555575555756,80.23161745418642],[-95.59715597155972,80.2451260723455],[-95.61155611556116,80.24850322688525],[-95.88155881558815,80.19953448605867],[-95.96795967959679,80.20122306332854],[-96.32076320763207,80.26201184504433],[-96.56916569165692,80.27552046320338],[-96.56196561965619,80.2822747722829],[-96.48276482764827,80.31098058587091],[-96.46476464764648,80.32280062676008],[-96.489964899649,80.32955493583961],[-96.57636576365763,80.32955493583961],[-96.68436684366843,80.34306355399869],[-96.63396633966339,80.36501505850717],[-96.57276572765727,80.35994932669752],[-96.51516515165152,80.34812928580834],[-96.45756457564575,80.34306355399869],[-96.4539645396454,80.35657217215774],[-96.42156421564215,80.35657217215774],[-96.3279632796328,80.33968639945891],[-96.24876248762487,80.33630924491916],[-96.21996219962199,80.34306355399869],[-96.26316263162632,80.35994932669752],[-96.2811628116281,80.36501505850717],[-96.25596255962559,80.37345794485657],[-96.1659616596166,80.38527798574574],[-96.14076140761408,80.381900831206],[-96.10116101161012,80.3903437175554],[-95.949959499595,80.39203229482527],[-95.80955809558095,80.37008079031682],[-95.66915669156691,80.3717693675867],[-95.56475564755647,80.35319501761799],[-95.43875438754387,80.34306355399869],[-95.4459544595446,80.35319501761799],[-95.46395463954639,80.36501505850717],[-95.47115471154711,80.3717693675867],[-95.46755467554675,80.37345794485657],[-95.45315453154531,80.37852367666622],[-95.48555485554856,80.3903437175554],[-95.56475564755647,80.3903437175554],[-95.68715687156872,80.40385233571448],[-95.73035730357303,80.41567237660365],[-95.79155791557915,80.45113249927118],[-96.05796057960579,80.48152689012906],[-96.10116101161012,80.49503550828814],[-95.96435964359644,80.51023270371707],[-95.95355953559535,80.51360985825684],[-95.93915939159392,80.52205274460624],[-95.93195931959319,80.53556136276532],[-95.92115921159211,80.54231567184485],[-95.9031590315903,80.54231567184485],[-95.97155971559715,80.55244713546415],[-96.00756007560075,80.56426717635333],[-96.02556025560256,80.5845301035919],[-95.6259562595626,80.59128441267143],[-95.29475294752947,80.58790725813168],[-95.05355053550535,80.60310445356063],[-94.98154981549816,80.60310445356063],[-94.76194761947619,80.56933290816298],[-94.57474574745747,80.5558242900039],[-94.28674286742867,80.5659557536232],[-94.0311403114031,80.54906998092437],[-94.01674016740166,80.55244713546415],[-94.00234002340024,80.5575128672738],[-93.9879398793988,80.5575128672738],[-93.96993969939699,80.5558242900039],[-93.95913959139591,80.54906998092437],[-93.96993969939699,80.54231567184485],[-93.93393933939339,80.52205274460624],[-93.88353883538835,80.52036416733637],[-93.78633786337863,80.52880705368577],[-93.78633786337863,80.5372499400352],[-94.00594005940059,80.59128441267143],[-94.37674376743767,80.61661307171968],[-94.52074520745207,80.6047930308305],[-94.54234542345424,80.60817018537026],[-94.56034560345603,80.61492449444981],[-94.57834578345783,80.62843311260886],[-94.59994599945999,80.64194173076791],[-94.65754657546576,80.65207319438721],[-94.67554675546755,80.6655818125463],[-94.6539465394654,80.684156162515],[-94.62154621546215,80.6925990488644],[-94.34794347943479,80.70104193521382],[-94.07434074340743,80.70779624429335],[-94.12834128341284,80.72805917153195],[-94.25434254342544,80.7229934397223],[-94.31554315543156,80.72805917153195],[-94.31554315543156,80.73481348061148],[-94.31194311943119,80.74663352150066],[-94.33354333543335,80.7500106760404],[-94.38754387543875,80.74832209877053],[-94.47394473944739,80.7314363260717],[-94.4919449194492,80.73481348061148],[-94.51354513545135,80.72637059426205],[-94.69354693546936,80.73481348061148],[-95.02475024750247,80.77196218054888],[-95.03915039150391,80.78209364416819],[-94.89874898748987,80.79560226232724],[-94.85554855548556,80.80911088048632],[-94.88794887948879,80.81924234410562],[-94.92754927549275,80.81924234410562],[-95.13995139951399,80.79729083959714],[-95.49995499955,80.80742230321641],[-95.53235532355323,80.82430807591524],[-95.51795517955179,80.8310623849948],[-95.52515525155252,80.83781669407432],[-95.48195481954819,80.8496367349635],[-95.1939519395194,80.87158823947198],[-95.15075150751507,80.88509685763103],[-95.43515435154352,80.8884740121708],[-95.48555485554856,80.90535978486963],[-95.29835298352984,80.94757421661669],[-95.26955269552695,80.96108283477577],[-95.23355233552336,81.015117307412],[-95.16875168751687,81.02862592557105],[-95.03915039150391,81.0353802346506],[-94.90234902349023,81.06408604823861],[-94.86274862748627,81.06408604823861],[-94.54594545945459,81.0336916573807],[-94.5279452794528,81.0252487710313],[-94.50994509945099,81.02187161649152],[-94.47394473944739,81.02187161649152],[-94.4559445594456,81.015117307412],[-94.50634506345064,80.9965429574433],[-94.51354513545135,80.98810007109387],[-94.50274502745027,80.97796860747457],[-94.48474484744847,80.97290287566494],[-94.44874448744487,80.96783714385529],[-94.40914409144091,80.96952572112517],[-94.36954369543695,80.97459145293482],[-94.33354333543335,80.98472291655412],[-94.30114301143011,81.00160868925295],[-94.30114301143011,81.01342873014212],[-94.27954279542796,81.01849446195178],[-94.25074250742507,81.01680588468187],[-94.21474214742148,81.0049858437927],[-94.18234182341823,81.0049858437927],[-94.149941499415,81.01005157560235],[-94.12834128341284,81.015117307412],[-94.10674106741067,81.03031450284095],[-93.93753937539375,81.0235601937614],[-93.93753937539375,81.02862592557105],[-94.07434074340743,81.04213454373013],[-94.03834038340383,81.05226600734943],[-93.90873908739087,81.04213454373013],[-93.96993969939699,81.05733173915905],[-94.17154171541715,81.06408604823861],[-94.18234182341823,81.06577462550848],[-94.2039420394204,81.07590608912778],[-94.23634236342363,81.07928324366753],[-94.27234272342723,81.08941470728683],[-94.34434344343443,81.09785759363626],[-94.35874358743587,81.10461190271579],[-94.34074340743408,81.11136621179531],[-94.30114301143011,81.12318625268449],[-94.1571415714157,81.09785759363626],[-93.82233822338223,81.10461190271579],[-93.4911349113491,81.06915178004826],[-93.4911349113491,81.07759466639766],[-93.50193501935019,81.07928324366753],[-93.50553505535055,81.08097182093744],[-93.51993519935199,81.09110328455671],[-93.31473314733147,81.08603755274706],[-93.15633156331563,81.09785759363626],[-93.17073170731707,81.09954617090614],[-93.17793177931779,81.10292332544589],[-93.18153181531815,81.10461190271579],[-93.16713167131671,81.10967763452544],[-93.13833138331383,81.11474336633509],[-93.12033120331203,81.11812052087484],[-93.13473134731348,81.12825198449414],[-93.1491314913149,81.13162913903392],[-93.16713167131671,81.1333177163038],[-93.18153181531815,81.1333177163038],[-93.159931599316,81.14513775719297],[-93.12393123931238,81.15020348900262],[-93.09873098730986,81.15695779808215],[-93.10953109531096,81.17722072532075],[-93.14553145531455,81.1907293434798],[-93.21753217532175,81.1907293434798],[-93.25353253532535,81.2008608070991],[-93.22473224732246,81.21268084798828],[-93.21753217532175,81.21436942525816],[-93.57753577535775,81.22450088887746],[-93.77553775537756,81.20761511617863],[-93.91953919539195,81.2093036934485],[-94.16794167941678,81.22281231160758],[-94.33354333543335,81.24307523884616],[-94.39474394743947,81.26164958881486],[-94.38034380343804,81.28022393878359],[-94.35874358743587,81.29373255694264],[-94.25074250742507,81.32243837053065],[-94.24354243542435,81.32919267961017],[-94.25434254342544,81.3359469886897],[-94.26874268742687,81.34270129776925],[-94.27954279542796,81.34438987503913],[-94.24354243542435,81.36127564773795],[-94.18954189541896,81.3663413795476],[-93.92673926739268,81.35789849319818],[-93.6639366393664,81.33932414322948],[-93.59553595535955,81.317372638721],[-93.55953559535595,81.31061832964147],[-93.56673566735667,81.30386402056195],[-93.55233552335523,81.3089297523716],[-93.52353523535236,81.31568406145112],[-93.50913509135091,81.317372638721],[-93.49833498334984,81.32074979326077],[-93.48753487534876,81.3275041023403],[-93.4839348393484,81.33425841141982],[-93.49473494734947,81.3376355659596],[-93.51273512735128,81.34101272049935],[-93.53433534335343,81.35114418411865],[-93.55233552335523,81.3646528022777],[-93.56673566735667,81.37984999770666],[-93.54873548735488,81.38491572951631],[-93.5271352713527,81.38660430678618],[-93.25713257132571,81.37309568862713],[-93.09513095130951,81.3477670295789],[-92.77472774727747,81.317372638721],[-92.70632706327063,81.30217544329204],[-92.48672486724867,81.28528967059324],[-92.37152371523715,81.26333816608476],[-92.23832238322383,81.25658385700521],[-91.82791827918278,81.1620235298918],[-91.79911799117991,81.15864637535202],[-91.80991809918099,81.15020348900262],[-91.83511835118351,81.13669487084354],[-91.84591845918459,81.12487482995436],[-91.81351813518135,81.11305478906519],[-91.79911799117991,81.10292332544589],[-91.78471784717847,81.09110328455671],[-91.81351813518135,81.08266039820731],[-91.91431914319143,81.08434897547718],[-91.91431914319143,81.07759466639766],[-91.70911709117091,81.03875738919035],[-91.52551525515256,80.97796860747457],[-91.52551525515256,80.96277141204564],[-91.5291152911529,80.95432852569621],[-91.52551525515256,80.94588563934681],[-91.51111511115111,80.93744275299738],[-91.4859148591486,80.92562271210821],[-91.43191431914319,80.90873693940938],[-91.359913599136,80.90029405305998],[-91.3239132391324,80.88340828036115],[-91.25911259112591,80.84119384861407],[-91.23751237512374,80.83443953953454],[-91.19071190711907,80.82937380772489],[-91.16911169111691,80.82430807591524],[-91.14751147511475,80.81248803502606],[-91.14751147511475,80.80742230321641],[-91.1511115111151,80.80066799413689],[-91.15471154711547,80.79053653051761],[-91.12951129511295,80.76520787146936],[-91.08991089910899,80.74832209877053],[-90.70830708307082,80.7027305124837],[-90.61470614706147,80.65545034892699],[-90.60750607506074,80.65376177165709],[-90.59310593105931,80.65207319438721],[-90.61830618306183,80.63181026714864],[-90.75150751507515,80.5946615672112],[-90.76590765907659,80.5760872172425],[-90.72990729907299,80.5659557536232],[-90.67950679506795,80.56426717635333],[-90.63990639906399,80.56933290816298],[-90.5751057510575,80.56426717635333],[-90.56430564305643,80.57439863997263],[-90.55350553505535,80.57946437178225],[-90.49230492304923,80.56257859908342],[-90.00630006300062,80.54231567184485],[-89.9450994509945,80.51529843552672],[-89.92349923499235,80.51023270371707],[-89.90549905499054,80.50854412644719],[-89.77589775897759,80.46464111743023],[-89.73989739897398,80.47139542650976],[-89.74709747097471,80.48321546739894],[-89.81189811898119,80.51529843552672],[-89.83349833498335,80.52880705368577],[-89.71469714697146,80.5372499400352],[-89.6570965709657,80.53049563095567],[-89.63189631896319,80.53218420822554],[-89.62829628296282,80.54231567184485],[-89.32589325893258,80.5372499400352],[-89.05949059490595,80.46801827197001],[-89.09549095490955,80.4477553447314],[-89.10989109891099,80.44268961292175],[-89.22869228692286,80.41567237660365],[-89.25749257492575,80.39878660390482],[-89.21429214292142,80.39372087209517],[-89.12069120691207,80.4089180675241],[-89.07749077490774,80.39878660390482],[-89.12069120691207,80.37008079031682],[-89.13149131491315,80.35488359488787],[-89.10629106291063,80.34306355399869],[-89.12789127891278,80.32955493583961],[-89.16389163891638,80.31942347222034],[-89.26109261092611,80.30422627679138],[-89.25749257492575,80.28902908136243],[-89.23589235892359,80.2738318859335],[-89.16029160291603,80.23330603145632],[-89.04149041490415,80.19446875424902],[-88.60228602286023,80.11848277710428],[-88.56988569885698,80.1066627362151],[-88.53748537485374,80.09990842713557],[-88.49428494284942,80.0982198498657],[-88.44748447484474,80.10328558167535],[-88.41508415084151,80.11172846802475],[-88.47268472684726,80.1353685498031],[-88.48348483484834,80.1455000134224],[-88.39348393483934,80.14212285888263],[-88.27468274682747,80.12185993164405],[-88.24588245882458,80.1066627362151],[-88.1450814508145,80.0965312725958],[-88.1450814508145,80.10328558167535],[-88.17748177481775,80.11003989075488],[-88.31788317883178,80.15900863158146],[-88.40068400684007,80.17589440428029],[-88.42588425884259,80.19278017697911],[-88.37908379083791,80.19278017697911],[-88.33228332283322,80.18602586789959],[-88.29268292682927,80.17420582701041],[-88.27468274682747,80.17420582701041],[-88.25668256682566,80.18602586789959],[-88.31068310683106,80.21135452694784],[-88.50868508685086,80.22148599056712],[-88.5950859508595,80.23837176326595],[-88.62028620286202,80.24850322688525],[-88.62748627486275,80.2535689586949],[-88.63828638286382,80.2637004223142],[-88.64548645486454,80.26876615412385],[-88.67788677886779,80.28058619501303],[-88.71028710287102,80.28902908136243],[-88.65628656286563,80.32111204949021],[-88.6490864908649,80.33968639945891],[-88.68148681486815,80.36163790396739],[-88.68148681486815,80.37683509939635],[-88.64548645486454,80.39709802663492],[-88.5950859508595,80.41229522206388],[-88.54108541085411,80.42242668568318],[-88.49428494284942,80.43593530384223],[-88.4690846908469,80.439312458382],[-88.08388083880838,80.42580384022293],[-87.70227702277022,80.41229522206388],[-87.67347673476735,80.40385233571448],[-87.65547655476554,80.38865514028552],[-87.62307623076231,80.34644070853844],[-87.61227612276123,80.32786635856974],[-87.61947619476194,80.29071765863233],[-87.61227612276123,80.26876615412385],[-87.59427594275942,80.25019180415512],[-87.57987579875798,80.24006034053585],[-87.57267572675727,80.22824029964667],[-87.57627576275762,80.19953448605867],[-87.57627576275762,80.19784590878876],[-87.5690756907569,80.19446875424902],[-87.56547565475654,80.19109159970924],[-87.5690756907569,80.18264871335984],[-87.57627576275762,80.17927155882006],[-87.58707587075871,80.17927155882006],[-87.60867608676087,80.17927155882006],[-87.63027630276302,80.17589440428029],[-87.66987669876698,80.16238578612123],[-88.02628026280263,80.13874570434288],[-88.06228062280623,80.12523708618383],[-88.04428044280442,80.12017135437418],[-88.00828008280082,80.1167941998344],[-87.99027990279903,80.11172846802475],[-87.99387993879938,80.0982198498657],[-87.98667986679867,80.09484269532592],[-87.97227972279723,80.09315411805605],[-87.96147961479615,80.08977696351627],[-87.95787957879578,80.08639980897652],[-87.95427954279542,80.08133407716687],[-87.9470794707947,80.07457976808735],[-87.93627936279363,80.06782545900779],[-87.90027900279003,80.0593825726584],[-87.86427864278643,80.0593825726584],[-87.71307713077131,80.07964549989697],[-87.23787237872378,80.07120261354757],[-87.20187201872018,80.03911964541979],[-87.1910719107191,80.02392244999086],[-87.16947169471695,80.00872525456191],[-87.12627126271262,79.9884623273233],[-87.03627036270362,79.96651082281485],[-87.00747007470075,79.95300220465577],[-87.03627036270362,79.93949358649672],[-87.1010710107101,79.93611643195695],[-87.16227162271622,79.92429639106777],[-87.19827198271983,79.92429639106777],[-87.23067230672306,79.91923065925812],[-87.28467284672847,79.88377053659059],[-87.31347313473134,79.87363907297129],[-87.43947439474394,79.86181903208211],[-87.47187471874719,79.85337614573271],[-87.48987489874898,79.83649037303388],[-87.43947439474394,79.83649037303388],[-87.34587345873459,79.84324468211341],[-87.03267032670327,79.9124763501786],[-86.98946989469894,79.91585350471837],[-86.96066960669606,79.90909919563885],[-86.97146971469715,79.88208195932071],[-87.05067050670506,79.81622744579528],[-87.0650706507065,79.7942759412868],[-87.0650706507065,79.77907874585787],[-87.06147061470614,79.76219297315905],[-87.05787057870579,79.73855289138069],[-87.06867068670687,79.72504427322161],[-87.12987129871298,79.67269837785526],[-87.13347133471335,79.66932122331548],[-87.12987129871298,79.65581260515643],[-87.1370713707137,79.6490582960769],[-87.15867158671587,79.6389268324576],[-87.18747187471874,79.62710679156842],[-87.41067410674107,79.58995809163099],[-87.44667446674467,79.56969516439241],[-87.4430744307443,79.56125227804299],[-87.4430744307443,79.55280939169359],[-87.45027450274502,79.54436650534416],[-87.46107461074611,79.53592361899476],[-87.40347403474034,79.51734926902606],[-87.34227342273422,79.50890638267663],[-87.2810728107281,79.5122835372164],[-87.21987219872199,79.53254646445498],[-87.20547205472054,79.54267792807428],[-87.17307173071731,79.56800658712254],[-87.15867158671587,79.57644947347194],[-87.12627126271262,79.58489235982134],[-86.98946989469894,79.60346670979007],[-86.84546845468455,79.59333524617077],[-86.82026820268203,79.58489235982134],[-86.82746827468274,79.56631800985264],[-86.83826838268382,79.54943223715381],[-86.82026820268203,79.54605508261406],[-86.79506795067951,79.55112081442371],[-86.7770677706777,79.55618654623333],[-86.7770677706777,79.55787512350324],[-86.7770677706777,79.56631800985264],[-86.7770677706777,79.56969516439241],[-86.76986769867699,79.56969516439241],[-86.69426694266943,79.56969516439241],[-86.71226712267122,79.59164666890089],[-86.74826748267482,79.60346670979007],[-86.81666816668167,79.61697532794912],[-86.71946719467195,79.64230398699738],[-86.61866618666187,79.65243545061665],[-86.3090630906309,79.647369718807],[-86.2550625506255,79.6389268324576],[-86.16506165061651,79.60515528705994],[-86.08226082260822,79.58320378255146],[-86.04266042660426,79.56969516439241],[-86.0570605706057,79.56294085531289],[-86.06426064260643,79.56294085531289],[-86.0570605706057,79.55618654623333],[-86.04986049860499,79.55112081442371],[-86.04266042660426,79.54774365988393],[-86.06066060660606,79.54098935080441],[-86.08946089460895,79.53423504172488],[-86.13986139861399,79.52916930991523],[-86.13986139861399,79.52241500083571],[-86.12186121861218,79.5207264235658],[-86.08226082260822,79.5122835372164],[-86.06786067860678,79.50721780540675],[-86.06786067860678,79.50552922813688],[-86.06786067860678,79.50046349632723],[-86.06786067860678,79.49539776451758],[-86.06426064260643,79.49033203270793],[-86.05346053460535,79.48695487816815],[-86.04626046260462,79.4835777236284],[-86.03906039060391,79.4818891463585],[-86.02826028260283,79.48020056908862],[-86.06066060660606,79.47513483727897],[-86.13626136261362,79.47175768273922],[-86.16506165061651,79.45993764185005],[-86.12546125461255,79.4447404464211],[-86.06786067860678,79.43629756007167],[-86.01026010260102,79.43967471461144],[-85.97065970659706,79.45656048731027],[-85.94545945459454,79.4818891463585],[-85.9310593105931,79.49033203270793],[-85.8950589505895,79.49877491905733],[-85.89145891458914,79.5105949599465],[-85.89865898658987,79.53592361899476],[-85.86265862658627,79.59333524617077],[-85.7870578705787,79.61697532794912],[-85.6970569705697,79.618663905219],[-85.62505625056251,79.60346670979007],[-85.56385563855638,79.57982662801172],[-85.54945549455495,79.56969516439241],[-85.54225542255422,79.55787512350324],[-85.53865538655386,79.54774365988393],[-85.5350553505535,79.54098935080441],[-85.52065520655206,79.53254646445498],[-85.45225452254522,79.50552922813688],[-85.41985419854198,79.48864345543805],[-85.40545405454054,79.4633147963898],[-85.39465394653946,79.4531833327705],[-85.32625326253262,79.43798613734157],[-85.30465304653046,79.42785467372227],[-85.2650526505265,79.40590316921379],[-85.24705247052471,79.39746028286439],[-85.1030510305103,79.37213162381613],[-85.05625056250562,79.35693442838718],[-85.00225002250022,79.32991719206908],[-84.93744937449374,79.3062771102907],[-84.91944919449195,79.29614564667142],[-84.91224912249122,79.27081698762316],[-84.94824948249482,79.26068552400386],[-85.19665196651967,79.23366828768576],[-85.24705247052471,79.22015966952668],[-85.29385293852938,79.19651958774833],[-85.31545315453154,79.19314243320858],[-85.40545405454054,79.19145385593868],[-85.45585455854558,79.17456808323985],[-85.50985509855099,79.16612519689045],[-85.63225632256322,79.16274804235067],[-85.67545675456755,79.14923942419162],[-86.08946089460895,79.10871356971444],[-86.50346503465035,79.06818771523726],[-86.5610656106561,79.04961336526853],[-86.55026550265502,79.03948190164925],[-86.5610656106561,79.02766186076005],[-86.58626586265862,79.00739893352147],[-86.58626586265862,79.00233320171182],[-86.59346593465935,78.98544742901299],[-86.5970659706597,78.98038169720334],[-86.6150661506615,78.97362738812382],[-86.74826748267482,78.95843019269486],[-86.7770677706777,78.96180734723464],[-86.80946809468094,78.97362738812382],[-86.91026910269102,79.01921897441065],[-86.92466924669246,79.03103901529983],[-86.94266942669427,79.05974482888783],[-86.95346953469534,79.0631219834276],[-86.96786967869679,79.06481056069748],[-86.98226982269823,79.0614334061577],[-86.98946989469894,79.05130194253843],[-86.98946989469894,79.02766186076005],[-87.00027000270002,79.00064462444195],[-87.00027000270002,78.99051316082264],[-86.98586985869858,78.96856165631417],[-86.98586985869858,78.96011876996477],[-86.98586985869858,78.95505303815511],[-86.98586985869858,78.94998730634546],[-86.9750697506975,78.94154441999603],[-86.94986949869498,78.92803580183698],[-86.9390693906939,78.91790433821768],[-87.03627036270362,78.87400132920072],[-87.22347223472235,78.82165543383437],[-87.30987309873099,78.80983539294519],[-87.33867338673386,78.79294962024636],[-87.39267392673926,78.75411234303905],[-87.49707497074971,78.71020933402212],[-87.52947529475294,78.6933235613233],[-87.52947529475294,78.68825782951365],[-87.52947529475294,78.683192097704],[-87.5330753307533,78.67643778862447],[-87.53667536675367,78.67137205681482],[-87.55467554675546,78.66461774773529],[-87.62307623076231,78.64604339776656],[-87.64827648276483,78.64266624322681],[-87.67347673476735,78.64604339776656],[-87.8570785707857,78.6933235613233],[-87.88947889478895,78.70683217948235],[-87.91467914679147,78.72709510672095],[-87.9830798307983,78.79294962024636],[-87.99747997479975,78.81152397021506],[-88.00108001080011,78.83178689745367],[-87.99027990279903,78.8571155565019],[-87.95427954279542,78.9060842973285],[-87.95787957879578,78.92972437910686],[-87.99027990279903,78.96011876996477],[-87.9830798307983,78.96349592450451],[-87.97947979479794,78.96687307904429],[-87.97587975879759,78.96687307904429],[-87.95787957879578,78.97193881085394],[-87.88587885878859,78.98207027447322],[-87.79587795877958,79.00739893352147],[-87.80667806678066,79.01584181987087],[-87.81747817478174,79.02090755168052],[-87.82827828278282,79.02597328349017],[-87.83907839078391,79.02766186076005],[-87.81027810278103,79.03948190164925],[-87.77427774277743,79.04961336526853],[-87.74547745477454,79.0614334061577],[-87.72747727477274,79.08338491066618],[-87.76347763477635,79.08845064247583],[-87.80667806678066,79.07831917885653],[-87.87867878678786,79.04454763345888],[-87.8930789307893,79.0344161698396],[-87.90027900279003,79.0242847062203],[-87.90747907479074,79.01584181987087],[-87.9290792907929,79.00908751079135],[-88.12708127081271,79.0057103562516],[-88.17388173881739,78.9955788926323],[-88.20988209882098,78.97362738812382],[-88.21708217082171,78.95336446088521],[-88.20988209882098,78.93816726545629],[-88.19548195481954,78.92297007002733],[-88.18828188281883,78.90439572005863],[-88.19188191881919,78.88413279282003],[-88.21708217082171,78.8486726701525],[-88.22788227882279,78.8300983201838],[-88.22788227882279,78.80476966113554],[-88.22068220682206,78.78281815662706],[-88.20628206282062,78.76424380665836],[-88.1450814508145,78.70683217948235],[-88.13788137881379,78.68656925224377],[-88.15948159481594,78.67812636589434],[-88.32148321483214,78.67306063408469],[-88.35748357483574,78.65786343865574],[-88.3430834308343,78.65448628411599],[-88.33228332283322,78.65448628411599],[-88.3250832508325,78.65786343865574],[-88.3250832508325,78.65110912957621],[-88.27828278282783,78.66461774773529],[-88.06588065880659,78.66292917046539],[-88.02268022680227,78.65448628411599],[-87.97947979479794,78.63928908868704],[-87.93267932679326,78.61733758417856],[-87.90747907479074,78.59538607967008],[-87.90027900279003,78.57343457516163],[-87.9110791107911,78.55317164792302],[-88.00828008280082,78.49407144347714],[-88.04068040680407,78.47887424804819],[-88.22788227882279,78.46367705261923],[-88.27828278282783,78.47718567077831],[-88.54468544685446,78.59032034786046],[-88.54828548285482,78.5936975024002],[-88.55188551885519,78.60551754328938],[-88.5590855908559,78.61058327509903],[-88.56988569885698,78.6122718523689],[-88.6130861308613,78.61058327509903],[-88.76788767887679,78.61733758417856],[-88.78588785887858,78.61564900690868],[-88.80388803888039,78.61058327509903],[-88.76428764287643,78.59876323420985],[-88.75708757087571,78.58863177059055],[-88.77868778687787,78.57681172970138],[-88.76428764287643,78.57343457516163],[-88.75348753487535,78.56836884335198],[-88.74988749887498,78.55992595700255],[-88.75708757087571,78.54810591611337],[-88.59868598685986,78.45861132080958],[-88.5770857708577,78.4467912799204],[-88.55188551885519,78.43328266176135],[-88.54108541085411,78.41639688906253],[-88.5590855908559,78.3910682300143],[-88.56988569885698,78.380936766395],[-88.67428674286742,78.32352513921899],[-88.67788677886779,78.31677083013943],[-88.68148681486815,78.29819648017073],[-88.68868688686887,78.28806501655143],[-88.69588695886958,78.2813107074719],[-88.70668706687067,78.27455639839238],[-88.71388713887139,78.26780208931285],[-88.7210872108721,78.23740769845497],[-88.73548735487354,78.2154561939465],[-88.77148771487714,78.18506180308859],[-88.8110881108811,78.16479887585001],[-88.85428854288543,78.15973314404036],[-88.99828998289982,78.16986460765966],[-89.04869048690486,78.18168464854884],[-89.24669246692467,78.2627363575032],[-89.28629286292863,78.29481932563098],[-89.3150931509315,78.30832794379003],[-89.32949329493294,78.31845940740934],[-89.34029340293402,78.33196802556839],[-89.3510935109351,78.33872233464791],[-89.37989379893799,78.35054237553709],[-89.49149491494914,78.37587103458534],[-89.50589505895059,78.38262534366487],[-89.53469534695347,78.40288827090347],[-89.55269552695526,78.41133115725287],[-89.62109621096211,78.42990550722158],[-89.64629646296463,78.43328266176135],[-89.6570965709657,78.43497123903123],[-89.80469804698046,78.50420290709641],[-89.81549815498154,78.51264579344584],[-89.83709837098371,78.53797445249407],[-89.84789847898479,78.5464173388435],[-89.90189901899019,78.56161453427245],[-89.95589955899558,78.59707465693998],[-89.94869948699487,78.6038289660195],[-89.97389973899739,78.6122718523689],[-90.00630006300062,78.61396042963881],[-90.03870038700387,78.61058327509903],[-90.06750067500674,78.60551754328938],[-90.08550085500855,78.5936975024002],[-90.08190081900818,78.56836884335198],[-90.09990099900999,78.56161453427245],[-90.09270092700926,78.54979449338325],[-90.07830078300783,78.54135160703385],[-90.04950049500495,78.5278429888748],[-90.06390063900639,78.51771152525549],[-90.06030060300603,78.50926863890606],[-90.0279002790028,78.48731713439759],[-90.00990009900099,78.48225140258796],[-90.00270002700027,78.48056282531806],[-89.99909999099991,78.47380851623853],[-89.99909999099991,78.46874278442888],[-89.99549995499954,78.46536562988913],[-89.9810998109981,78.46536562988913],[-89.98829988299883,78.4484798571903],[-89.97749977499775,78.44003697084088],[-89.78669786697867,78.39782253909382],[-89.59949599495995,78.28468786201168],[-89.58869588695886,78.27624497566225],[-89.5670956709567,78.23740769845497],[-89.54189541895418,78.22052192575615],[-89.47349473494735,78.18675038035849],[-89.45549455494555,78.16479887585001],[-89.49509495094951,78.15635598950058],[-89.53469534695347,78.15297883496083],[-89.57429574295743,78.15466741223071],[-89.61389613896138,78.16311029858011],[-89.62469624696247,78.16817603038976],[-89.63549635496355,78.17493033946931],[-89.64269642696426,78.18337322581871],[-89.64629646296463,78.19519326670789],[-89.65349653496534,78.20870188486694],[-89.66429664296642,78.21714477121637],[-89.69669696696967,78.2238990802959],[-89.71469714697146,78.22558765756577],[-89.90189901899019,78.22052192575615],[-89.93789937899379,78.22896481210554],[-89.95949959499595,78.2441620075345],[-89.95589955899558,78.26780208931285],[-90.04590045900459,78.30495078925026],[-90.13950139501395,78.32521371648886],[-90.33030330303303,78.33703375737804],[-90.53910539105391,78.32352513921899],[-90.70470704707047,78.33534518010816],[-90.75150751507515,78.32352513921899],[-90.70470704707047,78.30495078925026],[-90.59310593105931,78.2914421710912],[-90.37350373503735,78.28806501655143],[-90.32670326703267,78.27455639839238],[-90.35550355503555,78.26442493477307],[-90.36990369903698,78.25598204842368],[-90.37350373503735,78.24078485299472],[-90.36270362703627,78.22727623483567],[-90.34110341103411,78.21714477121637],[-90.30150301503015,78.20532473032719],[-90.27630276302763,78.18675038035849],[-90.28710287102871,78.16817603038976],[-90.31950319503194,78.15129025769093],[-90.35190351903519,78.1445359486114],[-90.60390603906039,78.15466741223071],[-90.88470884708846,78.1445359486114],[-91.18351183511835,78.17493033946931],[-91.60471604716047,78.19012753489824],[-91.76671766717666,78.23065338937542],[-91.82071820718207,78.23571912118507],[-91.86031860318603,78.2441620075345],[-91.96831968319682,78.23065338937542],[-91.99351993519934,78.21714477121637],[-92.00432004320042,78.21207903940672],[-92.02592025920259,78.21039046213684],[-92.06552065520656,78.2154561939465],[-92.1159211592116,78.22727623483567],[-92.1951219512195,78.26104778023333],[-92.18792187921879,78.27624497566225],[-92.20232202322023,78.2829992847418],[-92.30672306723066,78.2829992847418],[-92.32832328323283,78.28806501655143],[-92.29592295922959,78.30495078925026],[-92.21312213122131,78.30832794379003],[-92.17712177121771,78.31508225286956],[-92.22032220322203,78.33196802556839],[-92.2779227792278,78.32859087102864],[-92.38952389523895,78.30832794379003],[-92.50472504725047,78.31339367559968],[-92.61272612726127,78.33703375737804],[-92.60552605526055,78.35223095280699],[-92.60192601926019,78.35729668461664],[-92.62352623526235,78.36573957096604],[-92.67752677526775,78.36911672550582],[-92.82152821528214,78.40119969363357],[-92.87192871928718,78.40457684817335],[-92.95112951129511,78.43665981630113],[-92.99072990729907,78.46536562988913],[-92.96912969129691,78.48900571166749],[-92.93672936729367,78.49744859801689],[-92.87552875528755,78.49576002074701],[-92.87912879128791,78.49913717528679],[-92.88272882728828,78.50758006163619],[-92.62712627126271,78.49407144347714],[-92.63432634326342,78.49407144347714],[-92.55872558725586,78.49407144347714],[-92.51912519125192,78.49913717528679],[-92.49032490324903,78.51433437071572],[-92.56592565925659,78.52108867979524],[-92.54432544325444,78.5278429888748],[-92.51912519125192,78.5278429888748],[-92.47232472324723,78.52108867979524],[-92.15552155521554,78.53459729795432],[-91.84231842318422,78.54979449338325],[-91.7271172711727,78.53966302976397],[-91.69831698316983,78.53290872068442],[-91.6551165511655,78.52953156614467],[-91.63711637116371,78.5464173388435],[-91.64791647916479,78.5649916888122],[-91.68391683916839,78.56668026608207],[-91.7379173791738,78.55992595700255],[-92.1951219512195,78.5852546160508],[-92.6559265592656,78.6122718523689],[-92.73152731527315,78.62915762506773],[-92.81072810728107,78.63760051141716],[-92.85032850328503,78.63591193414729],[-92.9079290792908,78.62578047052799],[-92.92952929529295,78.62409189325811],[-92.93672936729367,78.62240331598821],[-92.93672936729367,78.61902616144846],[-92.93672936729367,78.61396042963881],[-92.9439294392944,78.61058327509903],[-92.97632976329763,78.6038289660195],[-93.21753217532175,78.59032034786046],[-93.28233282332823,78.59538607967008],[-93.34713347133471,78.60889469782916],[-93.47313473134732,78.65110912957621],[-93.47313473134732,78.65786343865574],[-93.44433444334443,78.65786343865574],[-93.37233372333723,78.66968347954494],[-93.34713347133471,78.67812636589434],[-93.37233372333723,78.68825782951365],[-93.52353523535236,78.67643778862447],[-93.5379353793538,78.67812636589434],[-93.55233552335523,78.683192097704],[-93.58113581135811,78.69670071586305],[-93.6531365313653,78.70852075675222],[-93.76113761137611,78.75411234303905],[-93.81153811538115,78.76762096119813],[-93.7791377913779,78.78281815662706],[-93.56673566735667,78.78619531116684],[-93.16353163531635,78.74060372488],[-93.06633066330663,78.74229230214988],[-93.05193051930519,78.74566945668965],[-93.04113041130411,78.75242376576918],[-93.04473044730447,78.76086665211861],[-93.03753037530375,78.76762096119813],[-93.08073080730807,78.77775242481744],[-93.30753307533075,78.80476966113554],[-93.36873368733687,78.81996685656449],[-93.54873548735488,78.8385412065332],[-93.77193771937719,78.83178689745367],[-93.87633876338764,78.83347547472354],[-93.9051390513905,78.84698409288262],[-93.93033930339303,78.8672470201212],[-93.95913959139591,78.88244421555015],[-93.99153991539914,78.89426425643933],[-94.06354063540635,78.90270714278876],[-94.27234272342723,78.96856165631417],[-94.29394293942939,78.98713600628287],[-94.21114211142111,79.00739893352147],[-94.02034020340203,79.02597328349017],[-93.93033930339303,79.042859056189],[-93.80793807938079,79.04792478799865],[-93.68553685536855,79.05974482888783],[-93.64593645936459,79.05467909707818],[-93.62793627936279,79.05467909707818],[-93.609936099361,79.05636767434808],[-93.59553595535955,79.0631219834276],[-93.57753577535775,79.08338491066618],[-93.46953469534695,79.12053361060362],[-93.46593465934659,79.13910796057232],[-93.43353433534335,79.15599373327115],[-93.38313383133831,79.16612519689045],[-93.32913329133291,79.1711909287001],[-93.22833228332283,79.1711909287001],[-93.08433084330844,79.15261657873137],[-93.00153001530015,79.15937088781092],[-92.83952839528395,79.14586226965184],[-92.8179281792818,79.14923942419162],[-92.77472774727747,79.1610594650808],[-92.74952749527495,79.16443661962057],[-92.52632526325263,79.16781377416032],[-92.28872288722887,79.15261657873137],[-91.88191881918819,79.16274804235067],[-91.57591575915758,79.1796338150495],[-91.37431374313744,79.19483101047845],[-91.2411124111241,79.19314243320858],[-90.97110971109711,79.20496247409775],[-90.7011070110701,79.2184710922568],[-90.52830528305283,79.22015966952668],[-90.38790387903879,79.23873401949541],[-90.36630366303663,79.24717690584481],[-90.37350373503735,79.24717690584481],[-90.41670416704167,79.26068552400386],[-90.76230762307623,79.24886548311468],[-91.04311043110431,79.25224263765446],[-91.35631356313563,79.23029113314598],[-91.74511745117451,79.21678251498693],[-91.88551885518855,79.22015966952668],[-92.08712087120871,79.20665105136763],[-92.3571235712357,79.22522540133633],[-92.62712627126271,79.24548832857494],[-92.67032670326702,79.25393121492434],[-92.69552695526954,79.26743983308342],[-92.67032670326702,79.27419414216294],[-92.60192601926019,79.30458853302082],[-92.56592565925659,79.30965426483047],[-92.13392133921339,79.30289995575095],[-92.13392133921339,79.30965426483047],[-92.15912159121591,79.31471999664012],[-92.16992169921699,79.31640857391],[-92.18432184321843,79.31640857391],[-92.16632166321664,79.31978572844977],[-92.14112141121412,79.32147430571965],[-92.11952119521195,79.3180971511799],[-92.08352083520835,79.30289995575095],[-92.06192061920619,79.30121137848107],[-91.91431914319143,79.30289995575095],[-91.84951849518495,79.31471999664012],[-91.82791827918278,79.31640857391],[-91.83151831518315,79.31640857391],[-91.65871658716587,79.33498292387873],[-91.49671496714967,79.33498292387873],[-91.16911169111691,79.35355727384743],[-91.14751147511475,79.36368873746673],[-91.14751147511475,79.35693442838718],[-91.14751147511475,79.35862300565708],[-91.14391143911439,79.36200016019683],[-91.14031140311403,79.3653773147366],[-91.13311133111331,79.36368873746673],[-91.13671136711366,79.36706589200648],[-91.14391143911439,79.373820201086],[-91.14751147511475,79.37719735562578],[-91.12591125911258,79.38901739651496],[-91.12231122311223,79.39239455105474],[-91.16191161911618,79.39577170559448],[-91.33111331113311,79.37888593289566],[-91.46071460714607,79.37888593289566],[-91.74511745117451,79.36368873746673],[-91.80631806318063,79.345114387498],[-91.83151831518315,79.34342581022813],[-92.05112051120511,79.35355727384743],[-92.16992169921699,79.35186869657755],[-92.40032400324003,79.37044304654626],[-92.4939249392494,79.3653773147366],[-92.54792547925479,79.36875446927635],[-92.58032580325803,79.38395166470531],[-92.56232562325623,79.39070597378483],[-92.49752497524975,79.39914886013426],[-92.42192421924219,79.41772321010296],[-92.40032400324003,79.41941178737284],[-92.34992349923499,79.41772321010296],[-92.28152281522814,79.42954325099214],[-92.2311223112231,79.43292040553192],[-92.24912249122491,79.44980617823074],[-92.28872288722887,79.45824906458014],[-92.60552605526055,79.44980617823074],[-92.84672846728466,79.41265747829331],[-92.92232922329222,79.41603463283309],[-92.95832958329584,79.42447751918249],[-93.05193051930519,79.48020056908862],[-93.06633066330663,79.48526630089827],[-93.08793087930879,79.48695487816815],[-93.11673116731167,79.48526630089827],[-93.13473134731348,79.4835777236284],[-93.14553145531455,79.47682341454885],[-93.14553145531455,79.46669195092957],[-93.13473134731348,79.45824906458014],[-93.10953109531096,79.44980617823074],[-93.08433084330844,79.43460898280179],[-93.02673026730267,79.40759174648366],[-93.00513005130051,79.39239455105474],[-93.09153091530915,79.37044304654626],[-93.39033390333903,79.34342581022813],[-93.37233372333723,79.3552458511173],[-93.31473314733147,79.37719735562578],[-93.26433264332643,79.40759174648366],[-93.23553235532356,79.41772321010296],[-93.2391323913239,79.43123182826201],[-93.25713257132571,79.44305186915122],[-93.27153271532715,79.45149475550062],[-93.29673296732967,79.4548719100404],[-93.3219332193322,79.45149475550062],[-93.34353343533435,79.4447404464211],[-93.37593375933758,79.42954325099214],[-93.4119341193412,79.41941178737284],[-93.42633426334262,79.40928032375356],[-93.43713437134372,79.39577170559448],[-93.4479344793448,79.38732881924508],[-93.49473494734947,79.36031158292695],[-93.50553505535055,79.35693442838718],[-93.52353523535236,79.3552458511173],[-93.5739357393574,79.35693442838718],[-93.62793627936279,79.3653773147366],[-93.6531365313653,79.36706589200648],[-93.67473674736748,79.35693442838718],[-93.6639366393664,79.35018011930765],[-93.66753667536675,79.34849154203778],[-93.68553685536855,79.34342581022813],[-93.67113671136711,79.33836007841848],[-93.65673656736567,79.3366715011486],[-93.64233642336423,79.33160576933895],[-93.62793627936279,79.32316288298952],[-93.66033660336603,79.31134284210034],[-93.72153721537215,79.30289995575095],[-93.78633786337863,79.28094845124247],[-93.93033930339303,79.25899694673399],[-94.04554045540455,79.26068552400386],[-94.13554135541355,79.27925987397259],[-94.15354153541536,79.28094845124247],[-94.21114211142111,79.27419414216294],[-94.19674196741967,79.28263702851234],[-94.17514175141751,79.2893913375919],[-94.16074160741607,79.2978342239413],[-94.16794167941678,79.31303141937025],[-94.16434164341644,79.32485146025942],[-94.14274142741426,79.3366715011486],[-94.00954009540095,79.37213162381613],[-93.87273872738727,79.39239455105474],[-93.84033840338402,79.39239455105474],[-93.84033840338402,79.39914886013426],[-94.09234092340922,79.39239455105474],[-94.48114481144812,79.42616609645239],[-94.51354513545135,79.41941178737284],[-94.49914499144991,79.41265747829331],[-94.4919449194492,79.40421459194391],[-94.48834488344883,79.39577170559448],[-94.49914499144991,79.38395166470531],[-94.48474484744847,79.37888593289566],[-94.47394473944739,79.38226308743543],[-94.45954459544595,79.38901739651496],[-94.44874448744487,79.39239455105474],[-94.43074430744308,79.38901739651496],[-94.41634416344164,79.38564024197518],[-94.38754387543875,79.37044304654626],[-94.43434434344343,79.3653773147366],[-94.53154531545316,79.34173723295825],[-94.95994959949599,79.29107991486177],[-94.98154981549816,79.27250556489307],[-95.00315003150031,79.26743983308342],[-95.11835118351183,79.28094845124247],[-95.21195211952119,79.28094845124247],[-95.2371523715237,79.28770276032199],[-95.22995229952299,79.29614564667142],[-95.21555215552155,79.30289995575095],[-95.20475204752047,79.3079656875606],[-95.19035190351903,79.30965426483047],[-95.19035190351903,79.31640857391],[-95.22275222752228,79.31471999664012],[-95.25875258752588,79.3180971511799],[-95.29115291152911,79.32485146025942],[-95.319953199532,79.3366715011486],[-95.29835298352984,79.34173723295825],[-95.27675276752767,79.34173723295825],[-95.25155251552515,79.33836007841848],[-95.22995229952299,79.33160576933895],[-95.21195211952119,79.32991719206908],[-95.19755197551976,79.33498292387873],[-95.16515165151651,79.35018011930765],[-95.17955179551795,79.35693442838718],[-95.28035280352803,79.35862300565708],[-95.29115291152911,79.36200016019683],[-95.28035280352803,79.37044304654626],[-95.2839528395284,79.38057451016556],[-95.29115291152911,79.38564024197518],[-95.29835298352984,79.39070597378483],[-95.30915309153092,79.39239455105474],[-95.29835298352984,79.39408312832461],[-95.28035280352803,79.40590316921379],[-95.35235352353523,79.40590316921379],[-95.38475384753848,79.39914886013426],[-95.39195391953919,79.37719735562578],[-95.56475564755647,79.39070597378483],[-95.64755647556476,79.39408312832461],[-95.66915669156691,79.40252601467401],[-95.6979569795698,79.40759174648366],[-95.75555755557555,79.40590316921379],[-95.78075780757807,79.41941178737284],[-95.77355773557736,79.42110036464274],[-95.7519575195752,79.42616609645239],[-95.77355773557736,79.43123182826201],[-95.78075780757807,79.43292040553192],[-95.7519575195752,79.43798613734157],[-95.6979569795698,79.43967471461144],[-95.66915669156691,79.44642902369097],[-95.70875708757087,79.46500337365967],[-95.71955719557195,79.46669195092957],[-95.7339573395734,79.46838052819945],[-95.76635766357663,79.47513483727897],[-95.78075780757807,79.48020056908862],[-95.75915759157591,79.4818891463585],[-95.73755737557376,79.48526630089827],[-95.71955719557195,79.49370918724767],[-95.70515705157051,79.50721780540675],[-95.72315723157232,79.52241500083571],[-95.7339573395734,79.5308578871851],[-95.73755737557376,79.54267792807428],[-95.6979569795698,79.54436650534416],[-95.61155611556116,79.55956370077311],[-95.16875168751687,79.58489235982134],[-94.72594725947259,79.6102210188696],[-94.63594635946359,79.63554967791782],[-94.34074340743408,79.6862069960143],[-94.329943299433,79.69633845963361],[-94.33354333543335,79.70646992325291],[-94.35514355143552,79.72504427322161],[-94.36234362343623,79.73348715957104],[-94.30834308343083,79.74699577773009],[-94.29394293942939,79.75881581861927],[-94.30114301143011,79.7757015913181],[-94.3191431914319,79.78414447766752],[-94.34434344343443,79.78752163220727],[-94.36954369543695,79.78414447766752],[-94.38754387543875,79.7757015913181],[-94.38394383943839,79.77401301404822],[-94.36954369543695,79.76894728223857],[-94.41634416344164,79.75206150953974],[-94.57474574745747,79.74361862319032],[-94.58914589145891,79.73686431411079],[-94.60354603546035,79.71828996414209],[-94.61434614346143,79.71153565506256],[-94.69354693546936,79.70646992325291],[-94.71874718747188,79.70140419144326],[-94.76914769147692,79.68282984147456],[-95.14355143551435,79.65581260515643],[-95.1939519395194,79.647369718807],[-95.52515525155252,79.65074687334678],[-95.85275852758527,79.65243545061665],[-96.13356133561335,79.73686431411079],[-96.18036180361803,79.74193004592044],[-96.21996219962199,79.74024146865057],[-96.2379623796238,79.74361862319032],[-96.25236252362524,79.75543866407949],[-96.25236252362524,79.76894728223857],[-96.24876248762487,79.77907874585787],[-96.25236252362524,79.78921020947715],[-96.26676266762668,79.79934167309645],[-96.28476284762847,79.80609598217598],[-96.40716407164071,79.83142464122423],[-96.49356493564936,79.83649037303388],[-96.46836468364684,79.84831041392306],[-96.41436414364144,79.85506472300258],[-96.38916389163892,79.86519618662189],[-96.43596435964359,79.87026191843154],[-96.5439654396544,79.84831041392306],[-96.58716587165871,79.85675330027246],[-96.58356583565835,79.86519618662189],[-96.59076590765908,79.87195049570141],[-96.59796597965979,79.87701622751106],[-96.60876608766087,79.88208195932071],[-96.6159661596616,79.88545911386046],[-96.59796597965979,79.89559057747977],[-96.579965799658,79.90234488655929],[-96.56196561965619,79.90572204109907],[-96.50796507965079,79.90741061836894],[-96.47916479164792,79.9124763501786],[-96.40716407164071,79.9124763501786],[-96.37836378363784,79.90572204109907],[-96.38916389163892,79.88545911386046],[-96.3639636396364,79.88714769113037],[-96.30996309963099,79.90234488655929],[-96.2811628116281,79.90572204109907],[-96.16956169561695,79.9040334638292],[-96.13716137161371,79.9124763501786],[-96.20916209162091,79.93442785468707],[-96.55836558365583,79.94793647284612],[-96.59436594365944,79.9597565137353],[-96.6159661596616,79.97326513189438],[-96.6519665196652,80.00197094548238],[-96.67716677166771,80.01547956364143],[-96.64476644766448,80.02729960453061],[-96.38916389163892,80.04925110903909],[-96.56556565565656,80.05262826357887],[-96.62316623166231,80.04418537722944]]],[[[-61.08721087210871,82.33051900065061],[-61.08721087210871,82.30687891887226],[-61.09801098010979,82.27986168255413],[-61.11961119611196,82.25791017804568],[-61.14121141211412,82.24946729169625],[-61.15921159211592,82.24609013715647],[-61.314013140131394,82.19712139632989],[-61.67041670416704,82.16841558274189],[-62.030420304203034,82.13970976915388],[-61.994419944199436,82.12957830553458],[-61.91161911619116,82.12451257372493],[-61.8720187201872,82.11269253283575],[-61.91521915219151,82.0974953374068],[-62.001620016200164,82.08736387378752],[-62.08442084420844,82.0603466374694],[-62.257222572225714,82.02319793753196],[-62.39042390423904,82.01644362845244],[-62.47682476824768,82.02319793753196],[-62.49842498424984,82.01982078299221],[-62.51282512825128,82.01306647391269],[-62.51282512825128,82.00631216483313],[-62.49122491224912,82.00293501029338],[-62.51642516425164,81.98773781486443],[-62.77922779227792,81.95058911492703],[-63.045630456304565,81.9134404149896],[-63.03843038430384,81.9134404149896],[-63.11763117631176,81.91175183771972],[-63.51723517235172,81.85434021054371],[-63.92043920439204,81.79861716063758],[-64.1220412204122,81.80368289244723],[-64.28764287642876,81.83070012876533],[-64.32724327243272,81.83070012876533],[-64.30924309243092,81.81888008787615],[-64.1220412204122,81.76991134704957],[-64.14724147241472,81.75302557435074],[-64.18684186841868,81.74458268800132],[-64.3020430204302,81.73782837892179],[-64.3740437404374,81.72431976076274],[-64.78084780847809,81.73107406984226],[-64.88164881648817,81.75302557435074],[-64.92124921249211,81.7580913061604],[-65.04725047250471,81.74964841981097],[-65.37485374853748,81.76315703797005],[-65.3640536405364,81.75977988343027],[-65.35685356853568,81.75471415162062],[-65.34965349653496,81.74964841981097],[-65.34245342453424,81.74120553346157],[-65.36045360453605,81.73445122438204],[-65.70245702457024,81.71418829714344],[-66.0480604806048,81.69392536990483],[-66.00486004860048,81.68379390628556],[-65.8680586805868,81.69392536990483],[-65.7060570605706,81.68041675174578],[-65.34245342453424,81.69392536990483],[-65.37485374853748,81.68041675174578],[-65.85725857258572,81.62807085637942],[-65.92925929259292,81.6398908972686],[-65.94725947259472,81.65339951542765],[-66.00126001260013,81.65508809269755],[-66.15246152461525,81.62807085637942],[-66.390063900639,81.61962797003],[-66.6240662406624,81.62300512456977],[-67.0740707407074,81.6111850836806],[-67.37287372873729,81.60274219733117],[-67.67167671676717,81.5926107337119],[-67.94167941679416,81.57910211555281],[-68.21168211682117,81.56390492012389],[-68.57888578885789,81.61625081549025],[-68.94248942489425,81.6685967108566],[-69.30969309693097,81.72094260622296],[-69.2520925209252,81.70067967898439],[-68.82008820088201,81.63313658818907],[-68.3880838808388,81.56728207466364],[-68.35568355683556,81.54364199288528],[-68.85608856088561,81.55039630196481],[-68.85608856088561,81.54364199288528],[-68.57888578885789,81.51662475656715],[-68.14328143281432,81.53519910653586],[-67.70767707677076,81.55377345650459],[-67.26847268472685,81.57065922920341],[-66.96246962469624,81.55208487923468],[-66.660066600666,81.53182195199611],[-66.60966609666096,81.51662475656715],[-66.65286652866529,81.49973898386833],[-66.9480694806948,81.47609890208997],[-67.11367113671136,81.4642788612008],[-67.28287282872829,81.44232735669232],[-67.66447664476644,81.40855581129466],[-68.0460804608046,81.37309568862713],[-68.14328143281432,81.35114418411865],[-68.25488254882548,81.34438987503913],[-68.44208442084421,81.31061832964147],[-68.57528575285752,81.30386402056195],[-68.56808568085681,81.30386402056195],[-68.6220862208622,81.29373255694264],[-68.73368733687336,81.29204397967277],[-68.81648816488165,81.27684678424382],[-68.87768877688777,81.27853536151369],[-68.93528935289352,81.26840389789442],[-69.02169021690216,81.26164958881486],[-69.42489424894248,81.27684678424382],[-69.47169471694717,81.26164958881486],[-69.43569435694357,81.25151812519559],[-69.35289352893528,81.25151812519559],[-69.31689316893168,81.24138666157629],[-69.36729367293673,81.23969808430641],[-69.57969579695796,81.21268084798828],[-69.69849698496985,81.21268084798828],[-69.92529925299253,81.18735218894003],[-70.16650166501664,81.19410649801955],[-70.21330213302133,81.1805978798605],[-70.06930069300692,81.1620235298918],[-69.63729637296373,81.1805978798605],[-69.66249662496625,81.1721549935111],[-69.74169741697416,81.16033495262192],[-69.81729817298172,81.14176060265319],[-70.00090000900009,81.11643194360497],[-70.01890018900188,81.10630047998566],[-69.63369633696337,81.13838344811344],[-69.53289532895329,81.17384357078097],[-69.48249482494825,81.18397503440028],[-69.05769057690577,81.21774657979793],[-68.63288632886328,81.25151812519559],[-68.21168211682117,81.28360109332334],[-67.78687786877869,81.317372638721],[-67.77967779677796,81.32074979326077],[-67.49167491674916,81.3477670295789],[-67.20367203672036,81.374784265897],[-66.83646836468364,81.39673577040548],[-66.52686526865268,81.42206442945374],[-66.21726217262172,81.4457045112321],[-65.9580595805958,81.4642788612008],[-65.73485734857348,81.4929846747888],[-65.24525245252453,81.5115590247575],[-64.93564935649356,81.53519910653586],[-64.54684546845468,81.55039630196481],[-64.53244532445324,81.54701914742506],[-64.52164521645216,81.53857626107563],[-64.51084510845108,81.52844479745633],[-64.49644496444964,81.52000191110693],[-64.46044460444604,81.50649329294785],[-64.4460444604446,81.49636182932858],[-64.43524435244352,81.48116463389962],[-64.44964449644496,81.47103317028032],[-64.46764467644677,81.46090170666102],[-64.69084690846908,81.38998146132596],[-65.11565115651156,81.33256983414995],[-65.40005400054,81.27009247516429],[-65.57645576455764,81.25151812519559],[-65.670056700567,81.25658385700521],[-65.87165871658716,81.22956662068711],[-65.99045990459904,81.2278780434172],[-66.10566105661056,81.19748365255933],[-66.2460624606246,81.17890930259063],[-66.27126271262712,81.1620235298918],[-66.29646296462964,81.1518920662725],[-66.46566465664657,81.12149767541462],[-66.48006480064801,81.11305478906519],[-66.51246512465124,81.09110328455671],[-66.53046530465305,81.08266039820731],[-66.67086670866708,81.04044596646023],[-66.87246872468724,81.01342873014212],[-67.2360723607236,80.94081990753716],[-67.56367563675636,80.94588563934681],[-67.61047610476105,80.93406559845764],[-67.59247592475924,80.92224555756846],[-67.53487534875349,80.8986054757901],[-67.56727567275672,80.88340828036115],[-67.60687606876068,80.87158823947198],[-67.68247682476824,80.8580796213129],[-67.77967779677796,80.8580796213129],[-67.83367833678336,80.85470246677315],[-67.86247862478625,80.83781669407432],[-67.84447844478444,80.82937380772489],[-67.85527855278552,80.82261949864537],[-67.92727927279273,80.81248803502606],[-67.98487984879849,80.79729083959714],[-68.280082800828,80.7601421396597],[-68.40248402484025,80.7213048624524],[-68.47448474484744,80.71117339883313],[-68.5860858608586,80.68246758524512],[-68.65448654486545,80.67571327616557],[-68.77328773287732,80.63856457622816],[-68.97128971289713,80.61830164898956],[-68.95328953289533,80.60817018537026],[-68.93528935289352,80.6047930308305],[-68.89208892088921,80.6047930308305],[-68.92448924489244,80.58284152632203],[-69.13329133291333,80.53556136276532],[-69.16929169291693,80.52205274460624],[-69.2160921609216,80.48828119920859],[-69.26649266492664,80.47139542650976],[-69.28089280892809,80.46126396289048],[-69.28449284492845,80.45113249927118],[-69.29169291692916,80.439312458382],[-69.29889298892988,80.43086957203258],[-69.33129331293313,80.4089180675241],[-69.37449374493744,80.39709802663492],[-69.6660966609666,80.35488359488787],[-69.98649986499865,80.35657217215774],[-70.31050310503105,80.35826074942761],[-70.2961029610296,80.37514652212644],[-70.23850238502385,80.40385233571448],[-70.22050220502204,80.4190495311434],[-70.27090270902708,80.45282107654106],[-70.33570335703357,80.47646115831941],[-70.78930789307893,80.57102148543285],[-70.80730807308073,80.57102148543285],[-70.82530825308253,80.56764433089307],[-70.82890828908289,80.5558242900039],[-70.81810818108181,80.54906998092437],[-70.77490774907749,80.53893851730507],[-70.72090720907208,80.53387278549542],[-70.68130681306813,80.52542989914602],[-70.58050580505805,80.48659262193871],[-70.5121051210512,80.47308400377966],[-70.47970479704797,80.46126396289048],[-70.45450454504545,80.43593530384223],[-70.44730447304472,80.43255814930248],[-70.42930429304293,80.43086957203258],[-70.37170371703716,80.41229522206388],[-70.44010440104401,80.39709802663492],[-70.4581045810458,80.38527798574574],[-70.46890468904688,80.3717693675867],[-70.47250472504724,80.35826074942761],[-70.46530465304653,80.34812928580834],[-70.44730447304472,80.34306355399869],[-70.45450454504545,80.34306355399869],[-70.01530015300153,80.28396334955278],[-69.95769957699576,80.26201184504433],[-69.99729997299973,80.2434374950756],[-70.08370083700837,80.22992887691655],[-70.15930159301593,80.19278017697911],[-70.20970209702097,80.18771444516949],[-70.47970479704797,80.19784590878876],[-70.7461074610746,80.20797737240807],[-71.09891098910988,80.18602586789959],[-71.35451354513545,80.15225432250193],[-71.5021150211502,80.12185993164405],[-71.73611736117361,80.11848277710428],[-71.84051840518404,80.13874570434288],[-71.85491854918548,80.14212285888263],[-71.90531905319052,80.17251724974054],[-71.93411934119341,80.18096013608994],[-71.99891998919989,80.19109159970924],[-72.16452164521645,80.19446875424902],[-72.33372333723337,80.22992887691655],[-72.38052380523804,80.22824029964667],[-72.420124201242,80.21304310421772],[-72.02412024120241,80.15056574523206],[-71.93051930519304,80.12185993164405],[-71.89811898118981,80.11848277710428],[-71.89811898118981,80.11172846802475],[-72.10692106921069,80.08639980897652],[-72.39132391323913,80.08977696351627],[-72.39132391323913,80.08302265443675],[-72.32292322923229,80.08302265443675],[-72.3409234092341,80.07457976808735],[-72.34812348123481,80.07120261354757],[-72.35892358923589,80.0695140362777],[-72.3409234092341,80.06275972719817],[-72.1681216812168,80.05600541811862],[-71.84051840518404,80.06275972719817],[-71.71451714517144,80.07457976808735],[-71.52371523715237,80.06782545900779],[-71.32571325713256,80.09146554078617],[-71.00531005310053,80.12185993164405],[-70.64890648906488,80.14212285888263],[-70.60570605706057,80.12861424072358],[-70.58770587705877,80.11848277710428],[-70.56250562505625,80.11003989075488],[-70.53730537305373,80.10497415894523],[-70.51570515705157,80.10328558167535],[-70.50490504905049,80.0982198498657],[-70.49770497704976,80.07289119081744],[-70.48690486904869,80.06275972719817],[-70.53010530105301,80.04418537722944],[-70.63450634506344,80.04080822268969],[-70.67770677706777,80.01547956364143],[-70.67050670506704,80.00872525456191],[-70.70650706507065,79.99183948186308],[-71.04131041310413,79.96651082281485],[-71.3761137611376,79.94287074103647],[-71.41571415714157,79.9310507001473],[-71.44811448114481,79.91585350471837],[-71.45891458914589,79.89896773201954],[-71.430114301143,79.88714769113037],[-71.1781117811178,79.91585350471837],[-70.91170911709116,79.89221342294002],[-70.93330933309333,79.88039338205081],[-70.99090990909909,79.85506472300258],[-71.00171001710017,79.83986752757363],[-71.01971019710197,79.8229817548748],[-71.0881108811088,79.81622744579528],[-71.09171091710917,79.80103025036632],[-71.14211142111421,79.78921020947715],[-71.38331383313833,79.76219297315905],[-71.48411484114841,79.73855289138069],[-71.94131941319412,79.70140419144326],[-72.02052020520205,79.68451841874443],[-72.12852128521286,79.68114126420465],[-72.23292232922329,79.66256691423595],[-72.39132391323913,79.6862069960143],[-72.62892628926289,79.67945268693478],[-72.92052920529206,79.70984707779266],[-72.94932949329493,79.72166711868186],[-72.94572945729458,79.74193004592044],[-72.960129601296,79.75206150953974],[-72.99972999729997,79.76219297315905],[-73.01413014130141,79.76894728223857],[-73.02853028530285,79.77907874585787],[-73.03573035730356,79.78921020947715],[-73.04653046530466,79.79765309582658],[-73.06453064530645,79.80103025036632],[-73.06453064530645,79.80947313671575],[-72.94212942129421,79.80778455944588],[-72.90612906129061,79.81622744579528],[-72.93132931329313,79.8229817548748],[-73.19053190531905,79.8229817548748],[-73.3849338493385,79.83817895030376],[-73.81333813338134,79.8229817548748],[-73.86373863738638,79.83649037303388],[-73.83853838538386,79.84662183665318],[-73.80613806138061,79.84999899119293],[-73.74133741337413,79.84999899119293],[-73.77013770137701,79.86519618662189],[-74.22734227342274,79.89559057747977],[-74.32454324543245,79.87363907297129],[-74.58374583745837,79.86181903208211],[-74.84654846548464,79.84999899119293],[-74.79254792547925,79.84493325938328],[-74.76734767347673,79.83817895030376],[-74.77094770947708,79.8229817548748],[-74.69534695346952,79.79765309582658],[-74.670146701467,79.7959645185567],[-74.35334353343534,79.80947313671575],[-73.9681396813968,79.7858330549374],[-73.58293582935829,79.76050439588914],[-73.48213482134821,79.76050439588914],[-73.3849338493385,79.7757015913181],[-73.35253352533525,79.76894728223857],[-73.37773377733777,79.7571272413494],[-73.3849338493385,79.75543866407949],[-73.38133381333813,79.74699577773009],[-73.36333363333632,79.73517573684092],[-73.35973359733597,79.72673285049149],[-73.35973359733597,79.71660138687221],[-73.3381333813338,79.70984707779266],[-73.29133291332913,79.70140419144326],[-73.29493294932949,79.69296130509383],[-73.26613266132661,79.68282984147456],[-73.20133201332013,79.67100980058538],[-73.17253172531726,79.6591897596962],[-73.16533165331653,79.64399256426725],[-73.16173161731616,79.62541821429855],[-73.16893168931689,79.60853244159972],[-73.18693186931868,79.59671240071054],[-73.14733147331474,79.58489235982134],[-73.1329313293133,79.57982662801172],[-73.12573125731257,79.57476089620206],[-73.12573125731257,79.56631800985264],[-73.12933129331293,79.55956370077311],[-73.13653136531364,79.55618654623333],[-73.14733147331474,79.55280939169359],[-73.17253172531726,79.5393007735345],[-73.18693186931868,79.53592361899476],[-73.20493204932049,79.53423504172488],[-73.31653316533165,79.50890638267663],[-73.4641346413464,79.50046349632723],[-73.59373593735937,79.50721780540675],[-73.73413734137341,79.49539776451758],[-73.79533795337953,79.5105949599465],[-73.90333903339032,79.55449796896346],[-73.96453964539646,79.56294085531289],[-74.0041400414004,79.54267792807428],[-73.98613986139861,79.5308578871851],[-73.97173971739717,79.51903784629593],[-73.95013950139501,79.48695487816815],[-73.96093960939609,79.47175768273922],[-73.99333993339933,79.45824906458014],[-74.02934029340292,79.44980617823074],[-74.28134281342813,79.43967471461144],[-74.39294392943928,79.45149475550062],[-74.69534695346952,79.44980617823074],[-74.78894788947889,79.47513483727897],[-74.91494914949149,79.48864345543805],[-74.94734947349473,79.5021520735971],[-74.94014940149401,79.5021520735971],[-74.92934929349293,79.50721780540675],[-74.95814958149582,79.51566069175615],[-74.99774997749977,79.51397211448628],[-75.03375033750338,79.50552922813688],[-75.06615066150661,79.49370918724767],[-75.05535055350553,79.48526630089827],[-75.01575015750157,79.47513483727897],[-75.00855008550086,79.47175768273922],[-75.00855008550086,79.46669195092957],[-75.00855008550086,79.46162621911992],[-74.99414994149942,79.45824906458014],[-74.9689496894969,79.44642902369097],[-74.9221492214922,79.43629756007167],[-74.90774907749078,79.42954325099214],[-74.88974889748897,79.42110036464274],[-74.88974889748897,79.41603463283309],[-74.90774907749078,79.40590316921379],[-74.96174961749617,79.38057451016556],[-75.02655026550265,79.373820201086],[-75.51255512555124,79.39577170559448],[-75.62415624156242,79.41941178737284],[-75.64935649356494,79.42954325099214],[-75.67455674556746,79.43460898280179],[-75.70335703357033,79.41941178737284],[-75.69615696156961,79.41265747829331],[-75.75735757357573,79.41434605556319],[-75.78615786157862,79.41941178737284],[-75.80415804158041,79.43292040553192],[-75.7969579695797,79.43967471461144],[-75.80055800558006,79.4447404464211],[-75.80775807758077,79.44980617823074],[-75.81855818558185,79.4531833327705],[-75.84375843758437,79.4531833327705],[-75.91575915759157,79.43123182826201],[-75.96255962559626,79.42785467372227],[-76.00936009360093,79.43629756007167],[-76.19656196561965,79.49370918724767],[-76.62136621366213,79.50721780540675],[-77.04617046170462,79.52241500083571],[-77.06777067770678,79.52579215537546],[-77.11097110971109,79.54436650534416],[-77.13257132571326,79.54943223715381],[-77.15057150571505,79.54605508261406],[-77.16497164971649,79.54098935080441],[-77.17937179371793,79.5308578871851],[-77.19377193771938,79.51903784629593],[-77.19017190171901,79.50890638267663],[-77.16857168571686,79.50046349632723],[-77.12537125371253,79.49370918724767],[-76.94536945369454,79.49370918724767],[-76.85536855368554,79.4818891463585],[-76.7581675816758,79.49370918724767],[-76.57816578165782,79.47513483727897],[-76.44856448564485,79.4835777236284],[-76.19296192961929,79.47006910546932],[-76.14256142561425,79.44642902369097],[-76.18936189361894,79.43629756007167],[-76.20736207362073,79.42954325099214],[-76.19296192961929,79.42110036464274],[-76.1749617496175,79.41265747829331],[-76.16416164161642,79.40252601467401],[-76.15336153361534,79.39577170559448],[-76.00936009360093,79.37044304654626],[-75.90855908559085,79.3653773147366],[-75.87975879758797,79.35693442838718],[-75.91575915759157,79.3468029647679],[-76.15336153361534,79.3366715011486],[-76.23616236162361,79.34849154203778],[-76.53496534965349,79.35186869657755],[-76.83376833768337,79.3552458511173],[-76.86256862568625,79.35018011930765],[-76.87336873368733,79.35018011930765],[-76.88776887768877,79.35355727384743],[-76.91296912969129,79.36200016019683],[-76.94896948969489,79.36706589200648],[-77.08577085770857,79.40590316921379],[-77.10377103771037,79.41603463283309],[-77.10737107371074,79.42447751918249],[-77.11097110971109,79.43629756007167],[-77.11457114571145,79.45656048731027],[-77.12537125371253,79.46838052819945],[-77.15057150571505,79.46838052819945],[-77.19017190171901,79.4548719100404],[-77.24417244172442,79.44980617823074],[-77.35217352173521,79.46500337365967],[-77.40257402574025,79.4531833327705],[-77.3809738097381,79.43629756007167],[-77.31617316173161,79.39914886013426],[-77.28017280172801,79.38901739651496],[-77.26577265772657,79.38057451016556],[-77.24057240572405,79.36031158292695],[-77.22257222572226,79.35018011930765],[-77.17937179371793,79.34173723295825],[-77.16137161371613,79.32991719206908],[-77.1829718297183,79.32991719206908],[-77.22617226172261,79.32485146025942],[-77.5069750697507,79.34004865568835],[-77.78777787777878,79.35355727384743],[-77.88137881378813,79.37044304654626],[-77.92457924579246,79.37044304654626],[-77.98937989379894,79.36706589200648],[-78.05778057780577,79.35693442838718],[-78.05778057780577,79.35018011930765],[-77.83457834578346,79.3180971511799],[-77.6329763297633,79.32147430571965],[-77.36657366573665,79.28094845124247],[-77.32697326973269,79.26743983308342],[-77.36657366573665,79.26068552400386],[-77.45657456574565,79.26068552400386],[-77.49617496174962,79.24717690584481],[-77.08937089370893,79.26743983308342],[-76.78336783367833,79.27925987397259],[-76.51336513365133,79.26068552400386],[-76.30456304563046,79.26406267854364],[-76.20736207362073,79.27757129670269],[-76.15336153361534,79.27588271943281],[-75.94815948159481,79.23704544222551],[-75.64575645756457,79.23535686495563],[-75.33975339753397,79.23366828768576],[-75.05175051750517,79.23029113314598],[-74.79974799747997,79.24379975130506],[-74.46854468544684,79.22691397860623],[-74.49374493744936,79.21171678317728],[-74.59454594545944,79.19483101047845],[-74.78174781747818,79.19314243320858],[-74.82494824948249,79.1796338150495],[-74.77814778147781,79.15937088781092],[-74.65934659346593,79.16612519689045],[-74.61254612546125,79.1509280014615],[-74.62694626946269,79.14755084692175],[-74.63774637746377,79.14417369238197],[-74.66654666546665,79.14586226965184],[-74.65574655746558,79.13404222876267],[-74.63054630546306,79.12728791968314],[-74.56574565745657,79.12053361060362],[-74.55134551345513,79.11377930152409],[-74.54054540545405,79.10364783790479],[-74.52614526145261,79.09520495155536],[-74.47934479344794,79.08507348793609],[-74.45414454144542,79.07663060158666],[-74.43974439744397,79.0631219834276],[-74.44694446944469,79.04961336526853],[-74.46854468544684,79.04117047891913],[-74.49374493744936,79.03610474710948],[-74.79254792547925,79.04792478799865],[-75.08775087750877,79.03103901529983],[-75.50535505355053,79.07494202431678],[-75.75735757357573,79.08338491066618],[-75.76455764557645,79.08676206520596],[-75.76815768157681,79.09689352882526],[-75.77535775357754,79.10195926063491],[-75.78615786157862,79.10364783790479],[-75.89415894158941,79.10364783790479],[-75.85815858158581,79.11715645606384],[-75.86535865358653,79.12053361060362],[-75.87975879758797,79.12728791968314],[-75.8869588695887,79.13066507422292],[-75.87975879758797,79.13741938330244],[-75.87255872558725,79.14079653784219],[-75.86175861758618,79.14417369238197],[-75.85455854558545,79.14586226965184],[-75.85455854558545,79.15261657873137],[-75.85815858158581,79.15430515600127],[-75.85815858158581,79.1509280014615],[-75.89415894158941,79.1695023514302],[-76.08856088560886,79.20496247409775],[-76.34416344163441,79.20327389682785],[-76.59976599765997,79.20327389682785],[-76.98496984969849,79.19145385593868],[-77.20817208172082,79.1998967422881],[-77.69417694176941,79.1982081650182],[-78.18378183781837,79.19483101047845],[-78.22338223382233,79.18807670139893],[-78.25578255782557,79.1711909287001],[-78.21258212582126,79.15937088781092],[-78.15858158581585,79.16274804235067],[-78.05778057780577,79.1796338150495],[-77.70497704977049,79.1695023514302],[-77.35577355773557,79.15937088781092],[-77.0029700297003,79.14923942419162],[-76.74016740167401,79.14923942419162],[-76.49536495364953,79.13404222876267],[-76.13176131761317,79.12391076514336],[-76.13536135361353,79.12053361060362],[-76.1389613896139,79.11715645606384],[-76.1389613896139,79.11377930152409],[-76.14256142561425,79.11040214698431],[-76.09936099360993,79.10364783790479],[-76.08496084960849,79.10364783790479],[-76.11376113761138,79.08507348793609],[-76.16776167761677,79.07663060158666],[-76.38736387363873,79.07663060158666],[-76.70776707767077,79.09013921974571],[-76.9669696696967,79.07325344704691],[-77.15777157771578,79.071564869777],[-77.53217532175321,79.0242847062203],[-77.61497614976149,79.0344161698396],[-77.69777697776978,79.03610474710948],[-77.71937719377193,79.042859056189],[-77.76977769777697,79.06481056069748],[-77.79137791377913,79.06987629250713],[-78.09738097380973,79.08507348793609],[-78.33138331383313,79.08507348793609],[-78.61218612186121,79.07663060158666],[-78.89658896588965,79.06987629250713],[-78.86778867788678,79.0614334061577],[-78.4249842498425,79.05974482888783],[-78.16938169381693,79.05805625161796],[-77.91377913779138,79.05636767434808],[-77.76617766177661,79.03610474710948],[-77.73377733777338,79.0242847062203],[-77.70137701377013,79.00739893352147],[-77.73737737377374,79.0057103562516],[-77.95697956979569,78.96011876996477],[-77.97857978579785,78.94154441999603],[-78.14058140581406,78.8773784837405],[-78.21618216182162,78.8300983201838],[-78.28098280982809,78.80645823840544],[-78.2989829898299,78.79632677478614],[-78.27018270182701,78.77437527027766],[-78.2269822698227,78.77268669300778],[-78.18018180181801,78.78281815662706],[-78.15138151381514,78.79970392932589],[-78.12618126181262,78.82165543383437],[-78.06138061380614,78.8571155565019],[-77.82017820178201,78.94661015180569],[-77.71937719377193,78.97025023358404],[-77.22617226172261,79.0040217789817],[-76.73296732967329,79.03610474710948],[-76.25776257762577,79.00908751079135],[-75.77895778957789,78.98207027447322],[-75.72135721357213,78.96687307904429],[-75.74295742957429,78.96180734723464],[-75.7969579695797,78.93141295637676],[-75.82935829358293,78.92634722456711],[-76.26856268562685,78.90439572005863],[-76.44136441364414,78.87062417466097],[-76.45936459364593,78.86049271104167],[-76.45936459364593,78.8486726701525],[-76.43416434164341,78.84698409288262],[-76.39456394563945,78.85036124742237],[-76.25776257762577,78.87906706101037],[-75.84735847358473,78.88075563828028],[-75.74295742957429,78.8976414109791],[-75.5521555215552,78.8875099473598],[-75.30375303753037,78.88413279282003],[-75.07335073350733,78.86218128831155],[-74.91494914949149,78.85373840196215],[-74.8789487894879,78.83685262926332],[-74.88254882548826,78.83347547472354],[-74.8861488614886,78.82165543383437],[-74.81414814148141,78.83347547472354],[-74.77454774547745,78.83516405199344],[-74.75654756547566,78.81996685656449],[-74.77814778147781,78.80476966113554],[-74.87534875348753,78.79463819751626],[-74.90774907749078,78.78788388843671],[-74.87174871748716,78.78281815662706],[-74.78534785347853,78.78281815662706],[-74.76374763747637,78.76762096119813],[-74.81414814148141,78.7507351884993],[-74.83214832148322,78.74735803395953],[-74.81054810548105,78.73553799307035],[-74.74574745747456,78.71527506583178],[-74.72054720547204,78.711897911292],[-74.75294752947529,78.70007787040282],[-74.81414814148141,78.70345502494257],[-74.84654846548464,78.69838929313295],[-74.86454864548645,78.68825782951365],[-74.86454864548645,78.67643778862447],[-74.85374853748537,78.66799490227504],[-74.83214832148322,78.65786343865574],[-74.8429484294843,78.65279770684612],[-74.85014850148501,78.64773197503646],[-74.86094860948609,78.64604339776656],[-74.87174871748716,78.64435482049669],[-74.8429484294843,78.63253477960751],[-74.8069480694807,78.62746904779786],[-74.77454774547745,78.62578047052799],[-74.74214742147421,78.62915762506773],[-74.7169471694717,78.62746904779786],[-74.68454684546845,78.61733758417856],[-74.6341463414634,78.59032034786046],[-74.80334803348033,78.58863177059055],[-75.00855008550086,78.53797445249407],[-75.03015030150301,78.53459729795432],[-75.1849518495185,78.54135160703385],[-75.39735397353974,78.51602294798562],[-75.76455764557645,78.52615441160489],[-76.13176131761317,78.5362858752242],[-76.49896498964989,78.54810591611337],[-76.58176581765817,78.53290872068442],[-76.63576635766357,78.53122014341454],[-76.66096660966609,78.5278429888748],[-76.68616686166861,78.51940010252537],[-76.68976689766897,78.51264579344584],[-76.67536675366753,78.50926863890606],[-76.28296282962829,78.51940010252537],[-76.14976149761497,78.50758006163619],[-76.12816128161282,78.50082575255666],[-76.11376113761138,78.49069428893736],[-76.10656106561065,78.48056282531806],[-76.09576095760957,78.47043136169876],[-76.07776077760778,78.46536562988913],[-75.59175591755917,78.42146262087218],[-75.10935109351094,78.37587103458534],[-75.08775087750877,78.36405099369617],[-75.07335073350733,78.35054237553709],[-75.05535055350553,78.34041091191781],[-75.03015030150301,78.33703375737804],[-75.06975069750698,78.31508225286956],[-75.12015120151202,78.30495078925026],[-75.21735217352173,78.30157363471051],[-75.31455314553145,78.31170509832981],[-75.36855368553685,78.30663936652016],[-75.41175411754118,78.26780208931285],[-75.44775447754478,78.24753916207425],[-75.51615516155161,78.21883334848624],[-75.57015570155701,78.20701330759707],[-75.62775627756277,78.20025899851754],[-75.90855908559085,78.2238990802959],[-76.19296192961929,78.24753916207425],[-76.35856358563585,78.23234196664532],[-76.60336603366034,78.25598204842368],[-76.63576635766357,78.25429347115377],[-76.68976689766897,78.2424734302646],[-76.88776887768877,78.2238990802959],[-76.91656916569166,78.20701330759707],[-76.87696876968769,78.19181611216811],[-76.82296822968229,78.18506180308859],[-76.72216722167221,78.18506180308859],[-76.7149671496715,78.18337322581871],[-76.69696696966969,78.17493033946931],[-76.68976689766897,78.17155318492954],[-76.64656646566465,78.17324176219941],[-76.61056610566105,78.16479887585001],[-76.29376293762937,78.15297883496083],[-76.18936189361894,78.13271590772223],[-75.93015930159301,78.1344044849921],[-75.66735667356673,78.13778163953188],[-75.61695616956169,78.13102733045235],[-75.58095580955809,78.11245298048365],[-75.5881558815588,78.09556720778482],[-75.68895688956889,78.05672993057752],[-75.68175681756817,78.04828704422809],[-75.840158401584,78.00100688067138],[-75.90135901359014,77.96723533527373],[-75.93375933759337,77.95879244892433],[-75.96975969759697,77.96554675800385],[-75.97335973359733,77.9790553761629],[-75.98775987759878,77.98412110797256],[-76.09936099360993,77.99594114886173],[-76.12816128161282,78.00776118975091],[-76.17856178561786,78.01789265337021],[-76.23256232562325,78.02126980790999],[-76.4629646296463,77.99087541705208],[-76.47736477364774,77.98412110797256],[-76.49896498964989,77.96216960346408],[-76.53856538565385,77.94528383076525],[-76.74736747367473,77.93346378987607],[-76.88056880568806,77.90475797628807],[-77.06417064170641,77.91488943990737],[-77.15417154171541,77.94866098530503],[-77.51777517775177,77.94528383076525],[-77.88137881378813,77.9419066762255],[-78.21618216182162,78.00269545794126],[-78.27018270182701,77.98749826251233],[-78.27018270182701,77.98074395343278],[-78.22338223382233,77.98074395343278],[-78.20178201782018,77.97736679889303],[-78.18378183781837,77.96554675800385],[-78.37818378183782,77.93684094441585],[-78.40698406984069,77.92670948079655],[-78.42858428584286,77.91151228536759],[-78.41418414184142,77.90138082174829],[-78.36018360183601,77.89124935812902],[-78.34578345783457,77.88280647177959],[-78.3349833498335,77.87605216270006],[-78.32058320583205,77.87098643089041],[-78.2989829898299,77.87098643089041],[-78.30618306183061,77.87098643089041],[-78.28098280982809,77.86423212181089],[-78.15498154981549,77.86423212181089],[-78.1369813698137,77.85916639000123],[-78.14058140581406,77.84228061730241],[-77.98217982179821,77.81695195825418],[-77.94977949779498,77.7950004537457],[-77.96417964179642,77.7950004537457],[-77.95697956979569,77.78655756739627],[-77.94257942579425,77.76122890834804],[-77.96417964179642,77.75447459926852],[-77.97137971379713,77.75447459926852],[-77.96417964179642,77.75447459926852],[-78.00738007380073,77.74603171291909],[-78.05058050580506,77.73252309476004],[-78.03258032580325,77.73083451749014],[-78.0109801098011,77.72408020841061],[-77.98937989379894,77.71394874479131],[-77.98577985779858,77.70212870390213],[-78.00738007380073,77.69199724028286],[-78.05778057780577,77.68862008574308],[-78.07938079380793,77.67848862212378],[-78.02538025380254,77.66835715850448],[-77.91377913779138,77.67511146758403],[-77.85977859778598,77.6582256948852],[-77.85617856178561,77.65484854034543],[-77.85257852578525,77.65147138580565],[-77.85257852578525,77.64133992218638],[-77.8489784897849,77.63289703583695],[-77.83097830978309,77.6295198812972],[-77.75537755377553,77.6278313040273],[-77.73737737377374,77.62107699494777],[-77.71577715777157,77.6092569540586],[-77.73737737377374,77.6008140677092],[-77.91017910179102,77.56873109958141],[-77.95697956979569,77.56535394504164],[-77.9749797497975,77.56028821323198],[-77.98577985779858,77.54846817234281],[-77.97857978579785,77.54171386326328],[-77.94257942579425,77.51300804967528],[-78.01818018180181,77.4724821951981],[-78.19818198181981,77.45221926795949],[-78.27738277382774,77.43195634072092],[-78.23058230582305,77.40493910440279],[-78.25218252182522,77.38636475443408],[-78.28818288182882,77.37792186808466],[-78.50058500585006,77.3644132499256],[-78.69138691386914,77.31882166363877],[-78.7669876698767,77.31037877728934],[-78.84258842588426,77.315444509099],[-78.75258752587526,77.35934751811595],[-78.72378723787237,77.37623329081478],[-78.74538745387453,77.3829875998943],[-78.77058770587705,77.38467617716421],[-78.82098820988209,77.3829875998943],[-78.84258842588426,77.37792186808466],[-78.8929889298893,77.36103609538583],[-78.9289892898929,77.35259320903643],[-78.97578975789757,77.3255759727183],[-79.0009900099001,77.3171330863689],[-79.0549905499055,77.31206735455925],[-79.13419134191342,77.29180442732064],[-79.38979389793897,77.3070016227496],[-79.64539645396454,77.32219881817855],[-79.84339843398433,77.31206735455925],[-79.94779947799478,77.28336154097124],[-79.9729997299973,77.27998438643147],[-80.19620196201961,77.28673869551099],[-80.30060300603006,77.30193589093994],[-80.39060390603906,77.29518158186042],[-80.46260462604626,77.3070016227496],[-80.55260552605526,77.31037877728934],[-80.6390063900639,77.3255759727183],[-80.77940779407794,77.3357074363376],[-80.97380973809737,77.37961044535456],[-81.01341013410133,77.3829875998943],[-81.0170101701017,77.38636475443408],[-81.03141031410314,77.39987337259313],[-81.03861038610385,77.40493910440279],[-81.03141031410314,77.40493910440279],[-81.2150121501215,77.41844772256184],[-81.29781297812978,77.43702207253057],[-81.30861308613086,77.44208780434022],[-81.32661326613265,77.45897357703905],[-81.36261362613625,77.47585934973787],[-81.39861398613986,77.48936796789692],[-81.43821438214381,77.49781085424632],[-81.49581495814958,77.5011880087861],[-81.54261542615426,77.5113194724054],[-81.56421564215641,77.51300804967528],[-81.58221582215822,77.51638520421506],[-81.58581585815858,77.52482809056445],[-81.57861578615785,77.53495955418376],[-81.56781567815678,77.54002528599341],[-81.58941589415893,77.55522248142236],[-81.67221672216722,77.56873109958141],[-81.67221672216722,77.57548540866094],[-81.63981639816397,77.57548540866094],[-81.62181621816218,77.57717398593081],[-81.60741607416074,77.58223971774046],[-81.63981639816397,77.59912549043929],[-81.82341823418234,77.62445414948755],[-81.84861848618486,77.63627419037672],[-81.83421834218342,77.6582256948852],[-81.85581855818558,77.67342289031413],[-81.88461884618846,77.6852429312033],[-81.9170191701917,77.69030866301296],[-81.93861938619386,77.6852429312033],[-81.9350193501935,77.6768000448539],[-81.93861938619386,77.67342289031413],[-81.94221942219421,77.67173431304425],[-81.94581945819458,77.66498000396473],[-81.94581945819458,77.65484854034543],[-81.94221942219421,77.65315996307555],[-81.92781927819277,77.6295198812972],[-81.90981909819098,77.61769984040802],[-81.89541895418954,77.6092569540586],[-81.87741877418773,77.60419122224894],[-81.80541805418054,77.59743691316942],[-81.78381783817838,77.58561687228024],[-81.7730177301773,77.57717398593081],[-81.74421744217442,77.56028821323198],[-81.69381693816938,77.54002528599341],[-81.67221672216722,77.52313951329458],[-81.67581675816758,77.50456516332588],[-81.70461704617045,77.4826136588174],[-81.72981729817297,77.46910504065832],[-81.74061740617405,77.46066215430892],[-81.74781747817478,77.44884211341974],[-81.7370173701737,77.43533349526066],[-81.71541715417153,77.42857918618114],[-81.67221672216722,77.42182487710161],[-81.57861578615785,77.39311906351361],[-81.48141481414814,77.37623329081478],[-81.20781207812078,77.3745447135449],[-81.18261182611826,77.36272467265573],[-81.17181171811718,77.33233028179782],[-81.20061200612005,77.32388739544842],[-81.52461524615246,77.3070016227496],[-81.84861848618486,77.29011585005077],[-82.1510215102151,77.315444509099],[-82.19782197821978,77.30193589093994],[-82.02142021420214,77.26647576827241],[-81.94221942219421,77.26141003646276],[-81.9170191701917,77.25296715011334],[-81.90621906219062,77.24452426376394],[-81.89541895418954,77.22594991379523],[-81.88461884618846,77.21919560471568],[-81.89541895418954,77.2090641410964],[-81.90261902619025,77.2073755638265],[-81.90981909819098,77.20568698655663],[-81.89181891818917,77.18204690477828],[-81.85941859418594,77.1702268638891],[-81.81981819818198,77.16516113207945],[-81.75141751417515,77.16684970934932],[-81.62181621816218,77.20230983201685],[-81.52461524615246,77.2090641410964],[-81.47781477814777,77.22257275925546],[-81.10341103411034,77.28673869551099],[-80.73980739807398,77.25972145919289],[-80.37620376203762,77.23101564560488],[-80.32580325803258,77.21919560471568],[-80.31860318603185,77.2175070274458],[-80.14580145801457,77.21075271836628],[-80.11340113401134,77.20568698655663],[-80.14580145801457,77.1888012138578],[-80.23940239402394,77.16853828661922],[-80.2790027900279,77.12463527760227],[-80.37620376203762,77.10099519582391],[-80.40860408604085,77.08242084585518],[-80.37260372603726,77.07397795950578],[-80.32220322203221,77.08073226858531],[-80.0270002700027,77.1888012138578],[-79.71739717397173,77.24283568649406],[-79.4329943299433,77.23776995468441],[-79.3429934299343,77.21919560471568],[-79.24939249392493,77.21581845017593],[-79.20259202592025,77.2073755638265],[-79.10539105391054,77.17529259569875],[-79.0549905499055,77.16853828661922],[-79.03339033390334,77.15671824573002],[-79.04059040590406,77.1499639366505],[-79.04779047790477,77.14320962757097],[-79.0549905499055,77.13983247303119],[-79.06579065790658,77.13814389576132],[-79.0189901899019,77.11788096852274],[-79.00819008190082,77.10437235036366],[-79.02619026190261,77.09086373220461],[-79.09459094590946,77.07566653677566],[-79.34659346593466,76.97941763239234],[-79.3789937899379,76.95746612788386],[-79.38619386193862,76.95577755061399],[-79.39339393393934,76.95240039607424],[-79.39339393393934,76.94226893245494],[-79.38979389793897,76.93044889156576],[-79.37539375393753,76.92538315975611],[-79.11979119791198,76.93044889156576],[-79.10179101791017,76.92707173702598],[-79.08019080190802,76.92538315975611],[-79.0189901899019,76.93889177791516],[-78.97938979389794,76.94058035518503],[-78.90378903789038,76.93382604610551],[-78.86778867788678,76.9236945824862],[-78.87498874988749,76.91862885067658],[-78.88218882188822,76.91187454159703],[-78.88938889388893,76.9068088097874],[-78.90738907389074,76.90174307797776],[-78.90738907389074,76.8949887688982],[-78.90738907389074,76.88823445981868],[-78.90738907389074,76.88316872800903],[-78.94338943389434,76.8662829553102],[-78.95418954189542,76.8578400689608],[-78.9649896498965,76.84264287353184],[-78.72018720187201,76.82744567810292],[-78.69498694986949,76.84264287353184],[-78.7129871298713,76.86290580077045],[-78.72378723787237,76.88316872800903],[-78.62658626586266,76.88316872800903],[-78.59418594185942,76.88823445981868],[-78.56538565385654,76.8966773461681],[-78.56538565385654,76.90343165524763],[-78.5689856898569,76.91187454159703],[-78.56538565385654,76.93213746883563],[-78.53298532985329,76.95408897334411],[-78.42858428584286,76.96253185969351],[-78.3889838898389,76.97266332331282],[-78.39618396183961,76.97604047785259],[-78.41058410584105,76.98279478693212],[-78.41418414184142,76.98617194147187],[-78.39978399783998,76.99799198236107],[-78.38538385383853,77.0047462914406],[-78.36738367383674,77.00643486871047],[-78.34578345783457,77.00643486871047],[-78.33138331383313,77.01318917779],[-78.13338133381333,77.02500921867917],[-78.09018090180902,77.0233206414093],[-77.91377913779138,76.96590901423329],[-77.88857888578886,76.94902324153446],[-77.88857888578886,76.93720320064529],[-77.89937899378994,76.92707173702598],[-77.90297902979029,76.91862885067658],[-77.89577895778957,76.91187454159703],[-77.85257852578525,76.90005450070785],[-77.83457834578346,76.89161161435845],[-77.89577895778957,76.86966010984997],[-77.87057870578705,76.85952864623067],[-77.79857798577986,76.84939718261137],[-77.71577715777157,76.82237994629327],[-77.75537755377553,76.80887132813419],[-77.77337773377734,76.80042844178479],[-77.78417784177842,76.78691982362571],[-77.79137791377913,76.77678836000644],[-77.78777787777878,76.768345473657],[-77.78417784177842,76.75990258730761],[-77.77697776977769,76.74639396914853],[-77.76617766177661,76.73457392825935],[-77.76617766177661,76.72781961917983],[-77.78057780577805,76.72444246464005],[-77.78777787777878,76.72275388737017],[-77.79857798577986,76.71768815556052],[-77.80577805778057,76.710933846481],[-77.8129781297813,76.70586811467135],[-77.8129781297813,76.68729376470264],[-77.80217802178021,76.67716230108334],[-77.76977769777697,76.66365368292429],[-77.82737827378273,76.64170217841581],[-77.88857888578886,76.63325929206638],[-78.0109801098011,76.63663644660616],[-78.03258032580325,76.63325929206638],[-78.08658086580866,76.61468494209768],[-78.10458104581045,76.60624205574828],[-78.12258122581225,76.59104486031933],[-78.16938169381693,76.57584766489038],[-78.1909819098191,76.56065046946145],[-78.15858158581585,76.55051900584215],[-78.14778147781477,76.54207611949272],[-78.14058140581406,76.5268789240638],[-78.35658356583565,76.49817311047579],[-78.38178381783817,76.48635306958661],[-78.36738367383674,76.46609014234801],[-78.50058500585006,76.45933583326848],[-78.56538565385654,76.47115587415766],[-78.62298622986229,76.49986168774566],[-78.60138601386014,76.50830457409506],[-78.59418594185942,76.51337030590471],[-78.5869858698587,76.52012461498427],[-78.59418594185942,76.5268789240638],[-78.60138601386014,76.5353218104132],[-78.60858608586085,76.54376469676262],[-78.61578615786158,76.5555847376518],[-78.56538565385654,76.56065046946145],[-78.56538565385654,76.56740477854098],[-78.68418684186841,76.56740477854098],[-78.74178741787418,76.57753624216028],[-78.77418774187741,76.57753624216028],[-78.79938799387993,76.56740477854098],[-78.79218792187922,76.56740477854098],[-78.81378813788137,76.55220758311202],[-78.8569885698857,76.53025607860354],[-78.87498874988749,76.51337030590471],[-78.91818918189182,76.46609014234801],[-78.93618936189361,76.45089294691905],[-78.96858968589686,76.43569575149013],[-79.00819008190082,76.42387571060095],[-79.14859148591485,76.41543282425152],[-79.17019170191702,76.41036709244187],[-79.1809918099181,76.40361278336235],[-79.19539195391954,76.39516989701295],[-79.19539195391954,76.3901041652033],[-79.17739177391773,76.3901041652033],[-79.17739177391773,76.38334985612374],[-79.20619206192062,76.37828412431412],[-79.24579245792458,76.36139835161529],[-79.26739267392674,76.34113542437669],[-79.2529925299253,76.32256107440799],[-79.29259292592926,76.30229814716938],[-79.34659346593466,76.29723241535973],[-79.50139501395013,76.31749534259833],[-79.55179551795517,76.31749534259833],[-79.82179821798218,76.2719037563115],[-80.09540095400953,76.22800074729454],[-80.1890018900189,76.24657509726325],[-80.23940239402394,76.24488651999337],[-80.37980379803798,76.21786928367524],[-80.4230042300423,76.20098351097641],[-80.44460444604445,76.19760635643667],[-80.58860588605886,76.20098351097641],[-80.61020610206101,76.19760635643667],[-80.62460624606246,76.18916347008724],[-80.64980649806498,76.16890054284866],[-80.66780667806678,76.16383481103901],[-80.79020790207902,76.16383481103901],[-80.8550085500855,76.17227769738841],[-80.88740887408873,76.17227769738841],[-80.93780937809377,76.14694903834018],[-81.0710107101071,76.12837468837148],[-81.08181081810818,76.13681757472088],[-81.08181081810818,76.15032619287993],[-81.06741067410674,76.16383481103901],[-81.04221042210422,76.17565485192819],[-80.95940959409593,76.19085204735714],[-80.95940959409593,76.19760635643667],[-80.99180991809918,76.20436066551619],[-81.06381063810637,76.20773782005597],[-81.09621096210962,76.21786928367524],[-81.0530105301053,76.22968932456442],[-81.04221042210422,76.23644363364397],[-81.04221042210422,76.2431979427235],[-81.04581045810458,76.2516408290729],[-81.03861038610385,76.26008371542233],[-81.02781027810278,76.26514944723198],[-80.95940959409593,76.27528091085125],[-80.95220952209522,76.2820352199308],[-80.89460894608946,76.33606969256704],[-80.88020880208802,76.34113542437669],[-80.8550085500855,76.34620115618634],[-80.82620826208262,76.35802119707552],[-80.79740797407973,76.37152981523457],[-80.77580775807758,76.38672701066352],[-80.77220772207721,76.42049855606118],[-80.82620826208262,76.43569575149013],[-80.89460894608946,76.4475157923793],[-80.94140941409414,76.46271298780823],[-80.97020970209702,76.47959876050706],[-80.99900999009989,76.48635306958661],[-81.02781027810278,76.48804164685649],[-81.09621096210962,76.50155026501554],[-81.21861218612186,76.49986168774566],[-81.20781207812078,76.50999315136497],[-81.17541175411753,76.53363323314332],[-81.20781207812078,76.5640276240012],[-81.24741247412474,76.55051900584215],[-81.29061290612906,76.52181319225414],[-81.31941319413194,76.50661599682519],[-81.34821348213482,76.50155026501554],[-81.40221402214021,76.48297591504684],[-81.53901539015389,76.47284445142753],[-81.9350193501935,76.49479595593601],[-82.05742057420574,76.51674746044449],[-82.08262082620826,76.5268789240638],[-82.0430204302043,76.54714185130237],[-82.01422014220142,76.5741590876205],[-82.00342003420033,76.57922481943015],[-81.99261992619925,76.58091339670003],[-81.98541985419854,76.5842905512398],[-81.99261992619925,76.59611059212898],[-82.0610206102061,76.61637351936756],[-82.02142021420214,76.61975067390733],[-81.90261902619025,76.65014506476521],[-81.85581855818558,76.65183364203511],[-81.83061830618306,76.65521079657486],[-81.81261812618126,76.66703083746404],[-81.80541805418054,76.67040799200382],[-81.79461794617946,76.67209656927369],[-81.78381783817838,76.6737851465436],[-81.78021780217802,76.68053945562312],[-81.78381783817838,76.68898234197252],[-81.7910179101791,76.69067091924242],[-81.79821798217982,76.69067091924242],[-81.89181891818917,76.66871941473394],[-82.17622176221762,76.62988213752664],[-82.2770227702277,76.63494786933629],[-82.32382323823238,76.64339075568569],[-82.44622446224461,76.6923594965123],[-82.46062460624606,76.7008023828617],[-82.4930249302493,76.73288535098948],[-82.50742507425073,76.739639660069],[-82.55422554225542,76.75652543276783],[-82.5650256502565,76.76496831911726],[-82.57582575825758,76.77509978273653],[-82.59022590225902,76.78354266908596],[-82.64782647826478,76.79536270997514],[-82.68742687426874,76.81055990540409],[-82.73062730627306,76.82069136902336],[-82.77382773827738,76.81393705994384],[-82.74142741427414,76.80887132813419],[-82.69822698226982,76.79705128724501],[-82.65862658626585,76.78016551454618],[-82.6370263702637,76.75990258730761],[-82.65142651426514,76.75314827822805],[-82.62622626226262,76.74470539187865],[-82.57942579425794,76.73457392825935],[-82.55422554225542,76.72444246464005],[-82.56142561425614,76.6923594965123],[-82.5110251102511,76.66196510565439],[-82.38142381423813,76.61975067390733],[-82.2950229502295,76.61468494209768],[-82.08262082620826,76.56740477854098],[-82.20862208622086,76.54207611949272],[-82.22662226622266,76.52012461498427],[-82.21222212222122,76.50155026501554],[-82.1330213302133,76.4559586787287],[-82.13662136621366,76.43907290602988],[-82.17262172621726,76.42387571060095],[-82.28062280622805,76.40023562882257],[-82.53982539825398,76.39516989701295],[-82.80262802628026,76.3901041652033],[-82.8170281702817,76.39685847428282],[-82.8530285302853,76.41374424698165],[-83.00063000630006,76.43569575149013],[-83.10143101431014,76.46609014234801],[-83.09783097830977,76.47791018323719],[-83.0870308703087,76.48635306958661],[-83.06183061830617,76.49986168774566],[-83.07623076230762,76.50661599682519],[-83.08343083430834,76.51505888317462],[-83.0870308703087,76.52519034679389],[-83.07623076230762,76.53363323314332],[-83.1050310503105,76.57753624216028],[-83.11583115831158,76.58935628304945],[-83.12663126631266,76.5944220148591],[-83.19143191431914,76.60624205574828],[-83.19863198631985,76.60961921028803],[-83.19863198631985,76.61130778755793],[-83.19863198631985,76.61975067390733],[-83.19863198631985,76.62312782844711],[-83.22383223832237,76.63325929206638],[-83.37143371433714,76.66871941473394],[-83.38943389433894,76.67716230108334],[-83.38583385833859,76.68560518743277],[-83.40383403834038,76.70755669194122],[-83.40383403834038,76.71937673283043],[-83.39663396633966,76.7295081964497],[-83.38223382233822,76.739639660069],[-83.3570335703357,76.75314827822805],[-83.38223382233822,76.76159116457748],[-83.40023400234001,76.76159116457748],[-83.42183421834218,76.75483685549796],[-83.4470344703447,76.74301681460878],[-83.51543515435154,76.72275388737017],[-83.52623526235261,76.70924526921112],[-83.5190351903519,76.6923594965123],[-83.5010350103501,76.68053945562312],[-83.40383403834038,76.65352221930499],[-83.39663396633966,76.64845648749534],[-83.38583385833859,76.63325929206638],[-83.3750337503375,76.62650498298686],[-83.34983349833497,76.61468494209768],[-83.29223292232922,76.59948774666873],[-83.2670326703267,76.58935628304945],[-83.25263252632526,76.57753624216028],[-83.24543245432454,76.56740477854098],[-83.24543245432454,76.53701038768307],[-83.23823238232382,76.51843603771437],[-83.21663216632166,76.51168172863484],[-83.1950319503195,76.50661599682519],[-83.18423184231843,76.49648453320589],[-83.1950319503195,76.48973022412636],[-83.23463234632347,76.46946729688779],[-83.24543245432454,76.45933583326848],[-83.23823238232382,76.45427010145883],[-83.23463234632347,76.45258152418896],[-83.22383223832237,76.45089294691905],[-83.2130321303213,76.4475157923793],[-83.18423184231843,76.43063001968048],[-83.22383223832237,76.41205566971178],[-83.27783277832778,76.40698993790213],[-83.69543695436954,76.43063001968048],[-83.71343713437135,76.43569575149013],[-83.72063720637206,76.43738432876],[-83.72423724237242,76.44413863783953],[-83.72783727837277,76.44920436964918],[-83.73143731437314,76.4559586787287],[-83.7350373503735,76.45933583326848],[-83.77823778237781,76.47622160596731],[-83.87183871838718,76.48635306958661],[-83.8970389703897,76.50661599682519],[-84.00144001440015,76.53194465587345],[-84.05184051840519,76.5538961603819],[-84.04824048240482,76.5741590876205],[-84.08064080640806,76.61975067390733],[-84.10224102241023,76.63494786933629],[-84.2390423904239,76.66027652838451],[-84.2930429304293,76.66365368292429],[-84.3290432904329,76.65014506476521],[-84.30384303843039,76.64001360114594],[-84.27144271442714,76.63157071479651],[-84.21384213842138,76.62312782844711],[-84.19584195841958,76.61806209663746],[-84.19584195841958,76.60624205574828],[-84.2030420304203,76.5927334375892],[-84.24624246242462,76.5454532740325],[-84.24984249842498,76.53701038768307],[-84.23184231842318,76.52519034679389],[-84.18864188641886,76.50155026501554],[-84.17784177841779,76.48635306958661],[-84.18864188641886,76.48128733777696],[-84.19224192241921,76.47284445142753],[-84.19584195841958,76.46440156507813],[-84.19944199441994,76.45933583326848],[-84.21744217442173,76.45089294691905],[-84.23544235442354,76.4475157923793],[-84.54864548645486,76.43400717422023],[-84.6350463504635,76.43907290602988],[-84.71784717847179,76.45427010145883],[-84.7970479704797,76.47791018323719],[-84.80064800648006,76.50323884228544],[-84.84384843848439,76.5353218104132],[-84.90144901449014,76.56233904673132],[-84.98784987849878,76.58597912850968],[-85.0130501305013,76.58766770577955],[-85.03465034650347,76.5741590876205],[-85.04185041850418,76.5640276240012],[-85.04545045450455,76.53363323314332],[-85.05625056250562,76.52012461498427],[-85.03465034650347,76.51168172863484],[-85.02025020250203,76.49986168774566],[-85.01665016650166,76.48635306958661],[-85.02745027450274,76.47115587415766],[-85.01665016650166,76.45933583326848],[-85.00225002250022,76.45258152418896],[-84.98784987849878,76.44920436964918],[-84.9770497704977,76.44076148329978],[-84.95904959049591,76.42894144241058],[-84.9410494104941,76.42218713333105],[-84.6710467104671,76.38166127885387],[-84.4010440104401,76.33944684710681],[-84.3830438304383,76.32931538348751],[-84.38664386643866,76.31580676532846],[-84.41184411844118,76.3090524562489],[-84.80784807848079,76.29723241535973],[-85.20385203852038,76.28372379720068],[-85.2290522905229,76.2904781062802],[-85.23265232652327,76.29554383808986],[-85.23265232652327,76.3006095698995],[-85.23265232652327,76.30567530170916],[-85.23625236252362,76.31074103351881],[-85.25065250652506,76.31580676532846],[-85.43425434254343,76.30736387897903],[-85.4630546305463,76.31411818805856],[-85.52065520655206,76.33100396075739],[-85.54945549455495,76.33606969256704],[-85.58545585455855,76.33606969256704],[-85.72225722257222,76.35464404253574],[-85.86265862658627,76.35633261980564],[-85.99945999459995,76.37659554704422],[-86.0750607506075,76.36984123796469],[-86.2190621906219,76.37490696977434],[-86.28386283862838,76.38672701066352],[-86.34866348663486,76.3884155879334],[-86.37746377463775,76.39685847428282],[-86.37026370263702,76.39685847428282],[-86.40626406264062,76.40698993790213],[-86.41346413464134,76.41036709244187],[-86.41706417064171,76.4171214015214],[-86.41346413464134,76.42218713333105],[-86.41346413464134,76.42894144241058],[-86.41346413464134,76.43738432876],[-86.42066420664206,76.45933583326848],[-86.41706417064171,76.47115587415766],[-86.40626406264062,76.48297591504684],[-86.2370623706237,76.50830457409506],[-86.20826208262082,76.5268789240638],[-86.23346233462334,76.54883042857227],[-86.40266402664027,76.5842905512398],[-86.51786517865179,76.62650498298686],[-86.5790657906579,76.64170217841581],[-86.6330663306633,76.63663644660616],[-86.3090630906309,76.5353218104132],[-86.30186301863019,76.5268789240638],[-86.31986319863198,76.52012461498427],[-86.59346593465935,76.48128733777696],[-86.61866618666187,76.47959876050706],[-86.64386643866439,76.47791018323719],[-86.65826658266582,76.46609014234801],[-86.6330663306633,76.46102441053836],[-86.63666636666366,76.44920436964918],[-86.68346683466834,76.408678515172],[-86.71226712267122,76.36308692888517],[-86.71586715867159,76.35633261980564],[-86.71946719467195,76.35126688799599],[-86.7230672306723,76.34788973345621],[-86.75186751867518,76.35464404253574],[-86.79146791467915,76.35633261980564],[-86.8490684906849,76.36984123796469],[-87.09387093870939,76.38166127885387],[-87.12987129871298,76.3901041652033],[-87.1550715507155,76.40361278336235],[-87.14427144271443,76.41205566971178],[-87.12267122671227,76.42049855606118],[-87.12267122671227,76.43400717422023],[-87.15147151471514,76.44920436964918],[-87.39987399873998,76.4559586787287],[-87.43227432274323,76.46609014234801],[-87.40347403474034,76.48466449231671],[-87.39267392673926,76.49648453320589],[-87.39627396273963,76.50999315136497],[-87.42147421474215,76.52181319225414],[-87.48627486274863,76.53363323314332],[-87.50067500675006,76.54714185130237],[-87.48267482674827,76.55051900584215],[-87.47547475474754,76.56233904673132],[-87.46827468274682,76.57753624216028],[-87.46107461074611,76.58935628304945],[-87.48627486274863,76.60117632393863],[-87.52587525875258,76.61468494209768],[-87.56187561875619,76.61975067390733],[-87.58347583475835,76.60961921028803],[-87.58347583475835,76.6028649012085],[-87.57987579875798,76.59779916939885],[-87.57267572675727,76.5927334375892],[-87.5690756907569,76.58935628304945],[-87.57627576275762,76.56740477854098],[-87.58347583475835,76.5555847376518],[-87.59427594275942,76.5454532740325],[-87.59427594275942,76.53701038768307],[-87.57627576275762,76.52856750133367],[-87.50787507875079,76.51337030590471],[-87.49707497074971,76.50323884228544],[-87.50427504275042,76.49479595593601],[-87.54747547475475,76.46946729688779],[-87.54747547475475,76.44920436964918],[-87.51147511475115,76.43569575149013],[-87.43227432274323,76.42387571060095],[-87.43227432274323,76.4188099787913],[-87.43587435874359,76.41543282425152],[-87.43947439474394,76.41036709244187],[-87.43227432274323,76.40361278336235],[-87.45027450274502,76.39685847428282],[-87.50067500675006,76.38334985612374],[-87.4790747907479,76.379972701584],[-87.45027450274502,76.37321839250447],[-87.4070740707407,76.35633261980564],[-87.42867428674286,76.34957831072612],[-87.45027450274502,76.35126688799599],[-87.54027540275402,76.37152981523457],[-87.56187561875619,76.37152981523457],[-87.58347583475835,76.36984123796469],[-87.57987579875798,76.36477550615504],[-87.57627576275762,76.35464404253574],[-87.5690756907569,76.34957831072612],[-87.63027630276302,76.33606969256704],[-87.70587705877058,76.33944684710681],[-87.77787777877778,76.36139835161529],[-87.81747817478174,76.40361278336235],[-87.8030780307803,76.40361278336235],[-87.81747817478174,76.41543282425152],[-87.83547835478355,76.4171214015214],[-87.87867878678786,76.41036709244187],[-87.87147871478714,76.40023562882257],[-87.86427864278643,76.39685847428282],[-87.87867878678786,76.39179274247317],[-87.8930789307893,76.37490696977434],[-87.90027900279003,76.36984123796469],[-87.91827918279182,76.36477550615504],[-88.40428404284043,76.39348131974305],[-88.4330843308433,76.40361278336235],[-88.41868418684186,76.4188099787913],[-88.40068400684007,76.42556428787083],[-88.37908379083791,76.42894144241058],[-88.35748357483574,76.43738432876],[-88.37188371883718,76.43738432876],[-88.37908379083791,76.44245006056966],[-88.38988389883899,76.4559586787287],[-88.40068400684007,76.46102441053836],[-88.41508415084151,76.46271298780823],[-88.44028440284403,76.46609014234801],[-88.38268382683826,76.47959876050706],[-88.35748357483574,76.48973022412636],[-88.36468364683647,76.49986168774566],[-88.35388353883539,76.51843603771437],[-88.37188371883718,76.52856750133367],[-88.40068400684007,76.53701038768307],[-88.42228422284222,76.54714185130237],[-88.42228422284222,76.5538961603819],[-88.42588425884259,76.5741590876205],[-88.42588425884259,76.5826019739699],[-88.44028440284403,76.5927334375892],[-88.45468454684547,76.59779916939885],[-88.4690846908469,76.60117632393863],[-88.50868508685086,76.61468494209768],[-88.51948519485194,76.62143925117721],[-88.5230852308523,76.63325929206638],[-88.51588515885159,76.63832502387604],[-88.4870848708487,76.65014506476521],[-88.48348483484834,76.66027652838451],[-88.49428494284942,76.682228032893],[-88.54108541085411,76.70755669194122],[-88.55188551885519,76.72275388737017],[-88.55188551885519,76.739639660069],[-88.4870848708487,76.768345473657],[-88.48348483484834,76.77678836000644],[-88.48348483484834,76.80211701905466],[-88.49068490684907,76.81731421448362],[-88.50868508685086,76.82406852356314],[-88.53748537485374,76.81731421448362],[-88.55548555485555,76.80887132813419],[-88.56988569885698,76.79705128724501],[-88.60228602286023,76.77003405092688],[-88.63108631086311,76.75483685549796],[-88.68868688686887,76.73288535098948],[-88.71028710287102,76.71262242375087],[-88.67428674286742,76.7008023828617],[-88.58428584285842,76.63663644660616],[-88.59148591485915,76.63663644660616],[-88.5950859508595,76.62481640571698],[-88.65988659886598,76.6028649012085],[-88.62028620286202,76.58766770577955],[-88.5770857708577,76.58766770577955],[-88.53028530285303,76.58091339670003],[-88.49788497884978,76.54714185130237],[-88.51228512285122,76.53869896495297],[-88.51228512285122,76.52856750133367],[-88.50508505085051,76.51674746044449],[-88.4870848708487,76.50661599682519],[-88.58428584285842,76.46777871961788],[-88.62028620286202,76.43738432876],[-88.59868598685986,76.41036709244187],[-88.61668616686167,76.40361278336235],[-88.64188641886419,76.40192420609247],[-88.66708667086671,76.40192420609247],[-88.68868688686887,76.40698993790213],[-88.69588695886958,76.41543282425152],[-88.69228692286923,76.42387571060095],[-88.68148681486815,76.43738432876],[-88.67068670686706,76.45933583326848],[-88.65628656286563,76.47453302869741],[-88.64188641886419,76.48297591504684],[-88.6130861308613,76.48635306958661],[-88.62748627486275,76.49479595593601],[-88.68148681486815,76.52350176952402],[-88.67788677886779,76.53869896495297],[-88.66708667086671,76.54883042857227],[-88.65268652686527,76.55727331492167],[-88.63828638286382,76.56065046946145],[-88.65988659886598,76.57922481943015],[-88.6850868508685,76.5927334375892],[-88.71028710287102,76.60117632393863],[-88.73548735487354,76.59611059212898],[-88.7390873908739,76.59104486031933],[-88.74268742687427,76.5842905512398],[-88.74268742687427,76.57078193308072],[-88.74988749887498,76.5640276240012],[-88.79668796687966,76.5555847376518],[-88.77868778687787,76.5353218104132],[-88.78948789487895,76.52181319225414],[-88.83268832688327,76.49986168774566],[-88.79668796687966,76.48466449231671],[-88.78588785887858,76.47453302869741],[-88.78948789487895,76.45933583326848],[-88.80748807488075,76.4475157923793],[-88.88668886688866,76.43063001968048],[-88.89388893888939,76.42556428787083],[-88.89388893888939,76.4188099787913],[-88.89748897488974,76.41374424698165],[-88.91188911889118,76.41036709244187],[-88.99468994689947,76.41205566971178],[-89.01989019890199,76.4171214015214],[-89.03429034290343,76.42556428787083],[-89.03069030690307,76.43738432876],[-89.04509045090451,76.45089294691905],[-89.06669066690667,76.4475157923793],[-89.10269102691026,76.42894144241058],[-89.13509135091351,76.42387571060095],[-89.17109171091711,76.42387571060095],[-89.20709207092071,76.42894144241058],[-89.23589235892359,76.43738432876],[-89.25389253892538,76.4559586787287],[-89.26109261092611,76.45933583326848],[-89.41589415894158,76.49141880139624],[-89.43389433894339,76.49986168774566],[-89.43029430294303,76.50999315136497],[-89.41589415894158,76.51843603771437],[-89.4050940509405,76.52856750133367],[-89.41229412294122,76.54376469676262],[-89.42309423094231,76.55727331492167],[-89.4410944109441,76.56909335581085],[-89.46269462694626,76.57584766489038],[-89.48429484294843,76.57078193308072],[-89.52029520295203,76.54883042857227],[-89.54549545495455,76.54207611949272],[-89.59949599495995,76.56065046946145],[-89.6570965709657,76.5657162012711],[-89.68229682296823,76.5741590876205],[-89.66429664296642,76.57922481943015],[-89.63189631896319,76.5826019739699],[-89.62109621096211,76.58935628304945],[-89.61389613896138,76.59779916939885],[-89.61749617496174,76.60455347847838],[-89.62109621096211,76.61130778755793],[-89.62109621096211,76.61637351936756],[-89.59949599495995,76.62819356025676],[-89.44829448294483,76.65858795111464],[-89.42669426694266,76.67040799200382],[-89.41949419494195,76.68729376470264],[-89.42669426694266,76.69742522832195],[-89.44469444694447,76.70755669194122],[-89.45549455494555,76.72444246464005],[-89.43749437494374,76.72613104190995],[-89.4050940509405,76.73288535098948],[-89.3870938709387,76.73288535098948],[-89.39069390693906,76.73626250552925],[-89.39789397893979,76.73795108279913],[-89.40869408694087,76.739639660069],[-89.40149401494014,76.739639660069],[-89.42309423094231,76.74301681460878],[-89.45189451894518,76.7497711236883],[-89.46989469894699,76.76327974184736],[-89.46989469894699,76.78016551454618],[-89.48429484294843,76.79873986451491],[-89.49149491494914,76.80718275086431],[-89.50229502295022,76.81393705994384],[-89.50229502295022,76.82744567810292],[-89.50949509495095,76.83757714172219],[-89.53829538295382,76.85615149169092],[-89.47349473494735,76.88148015073915],[-88.99828998289982,76.95577755061399],[-88.97668976689766,76.97266332331282],[-88.99468994689947,76.97772905512247],[-88.9910899108991,76.98110620966224],[-88.7210872108721,77.0148777550599],[-88.64188641886419,77.04527214591778],[-88.53388533885338,77.07397795950578],[-88.50148501485015,77.07566653677566],[-88.45828458284582,77.07397795950578],[-88.41868418684186,77.07904369131543],[-88.39348393483934,77.10268377309379],[-88.42948429484295,77.09930661855401],[-88.54468544685446,77.10268377309379],[-88.49428494284942,77.11450381398296],[-88.39348393483934,77.11956954579261],[-88.29268292682927,77.13645531849144],[-88.13428134281342,77.12970100941192],[-88.13428134281342,77.12294670033239],[-88.14148141481415,77.12294670033239],[-88.15228152281523,77.12294670033239],[-88.16668166681667,77.11619239125284],[-88.13068130681306,77.10943808217331],[-87.86427864278643,77.13814389576132],[-87.77427774277743,77.12801243214201],[-87.6770767707677,77.13814389576132],[-87.64467644676446,77.13307816395167],[-87.61947619476194,77.11619239125284],[-87.61587615876158,77.10099519582391],[-87.58707587075871,77.09761804128414],[-87.47547475474754,77.11112665944319],[-87.38187381873819,77.10606092763356],[-87.33867338673386,77.11619239125284],[-87.46107461074611,77.12970100941192],[-87.46107461074611,77.13814389576132],[-87.39267392673926,77.16853828661922],[-87.36027360273603,77.17698117296862],[-87.08307083070831,77.1888012138578],[-87.02187021870219,77.1786697502385],[-87.0290702907029,77.1702268638891],[-87.00747007470075,77.16853828661922],[-86.97866978669786,77.16853828661922],[-86.95706957069571,77.16516113207945],[-86.95346953469534,77.1516525139204],[-86.92106921069211,77.13983247303119],[-86.87066870668707,77.13138958668179],[-86.82386823868238,77.12970100941192],[-86.79146791467915,77.13814389576132],[-86.8670686706867,77.16178397753967],[-86.89226892268923,77.16516113207945],[-86.89226892268923,77.1702268638891],[-86.60426604266043,77.1786697502385],[-86.67626676266762,77.19386694566745],[-86.82746827468274,77.1803583275084],[-86.89946899468994,77.19048979112767],[-86.92826928269282,77.19724410020723],[-87.13347133471335,77.21412987290606],[-87.15867158671587,77.20568698655663],[-87.14427144271443,77.1989326774771],[-87.18027180271802,77.20062125474698],[-87.19827198271983,77.20399840928675],[-87.21627216272162,77.21244129563615],[-87.20187201872018,77.21412987290606],[-87.14427144271443,77.23945853195428],[-87.12627126271262,77.24452426376394],[-87.00747007470075,77.26141003646276],[-86.93546935469354,77.25972145919289],[-86.91386913869138,77.26647576827241],[-86.95346953469534,77.27660723189172],[-86.9930699306993,77.28167296370134],[-87.16947169471695,77.27491865462181],[-87.21627216272162,77.28167296370134],[-87.24867248672486,77.30869020001947],[-87.19467194671947,77.31375593182912],[-87.09387093870939,77.34246174541713],[-87.04347043470435,77.34921605449665],[-86.93186931869319,77.34246174541713],[-86.83106831068311,77.3559703635762],[-86.8490684906849,77.3644132499256],[-87.12267122671227,77.36947898173526],[-87.34947349473494,77.33401885906773],[-87.68067680676806,77.35259320903643],[-87.72027720277202,77.36947898173526],[-87.70227702277022,77.39649621805339],[-87.72387723877239,77.39987337259313],[-87.75267752677526,77.40831625894256],[-87.77427774277743,77.42182487710161],[-87.78147781477814,77.43871064980044],[-87.75627756277562,77.45728499976914],[-87.66987669876698,77.46741646338845],[-87.64827648276483,77.48599081335715],[-87.65187651876518,77.49612227697645],[-87.66627666276662,77.50287658605598],[-87.68787687876879,77.51300804967528],[-87.69147691476914,77.5214509360247],[-87.6950769507695,77.53495955418376],[-87.70227702277022,77.54002528599341],[-87.71667716677166,77.54677959507293],[-87.78147781477814,77.54846817234281],[-87.8210782107821,77.55184532688259],[-87.83547835478355,77.55859963596211],[-87.85347853478534,77.56873109958141],[-87.84267842678426,77.56873109958141],[-87.83187831878318,77.56873109958141],[-87.8210782107821,77.57210825412119],[-87.81027810278103,77.57548540866094],[-87.82467824678247,77.58223971774046],[-87.84627846278462,77.58392829501037],[-87.88227882278822,77.58223971774046],[-87.90387903879038,77.58392829501037],[-88.01188011880119,77.61432268586825],[-88.18828188281883,77.63965134491647],[-88.20988209882098,77.64978280853578],[-88.22068220682206,77.66498000396473],[-88.21348213482135,77.68017719939368],[-88.19548195481954,77.69537439482261],[-88.15228152281523,77.71901447660096],[-88.15948159481594,77.72745736295039],[-88.15228152281523,77.73421167202991],[-88.15228152281523,77.74265455837934],[-88.15948159481594,77.75109744472874],[-88.16668166681667,77.76122890834804],[-88.18468184681846,77.7646060628878],[-88.20628206282062,77.76122890834804],[-88.22428224282243,77.76122890834804],[-88.2350823508235,77.7747375265071],[-88.18468184681846,77.7747375265071],[-88.17028170281702,77.78318041285652],[-88.1810818108181,77.80175476282523],[-88.12348123481235,77.81019764917463],[-88.10548105481054,77.81526338098428],[-88.11628116281163,77.82032911279393],[-88.22068220682206,77.85747781273136],[-88.22068220682206,77.86254354454101],[-88.1990819908199,77.85747781273136],[-88.13428134281342,77.85747781273136],[-88.13428134281342,77.85241208092171],[-88.13788137881379,77.85072350365184],[-88.1450814508145,77.84903492638193],[-88.11628116281163,77.83552630822288],[-88.08028080280802,77.82708342187345],[-88.04068040680407,77.8220176900638],[-87.61587615876158,77.86423212181089],[-87.1910719107191,77.90475797628807],[-86.84546845468455,77.88956078085911],[-86.66546665466655,77.85410065819158],[-86.4530645306453,77.83721488549276],[-86.21546215462155,77.7933118764758],[-86.07146071460714,77.73421167202991],[-85.97425974259743,77.71394874479131],[-85.95625956259562,77.69030866301296],[-85.91665916659166,77.6565371176153],[-85.89145891458914,77.64133992218638],[-85.88065880658806,77.63120845856707],[-85.87705877058771,77.62107699494777],[-85.87345873458735,77.6092569540586],[-85.86625866258662,77.59912549043929],[-85.8590585905859,77.59405975862964],[-85.84465844658446,77.58899402681999],[-85.83745837458375,77.58223971774046],[-85.84465844658446,77.57548540866094],[-85.80865808658086,77.52820524510423],[-85.79425794257942,77.51300804967528],[-85.78345783457834,77.50456516332588],[-85.74385743857438,77.4910565451668],[-85.71865718657186,77.47417077246797],[-85.73665736657367,77.45728499976914],[-85.79425794257942,77.42520203164139],[-85.75105751057511,77.42520203164139],[-85.59625596255962,77.46066215430892],[-85.54945549455495,77.4623507315788],[-85.52785527855278,77.46572788611857],[-85.52785527855278,77.46910504065832],[-85.52785527855278,77.47417077246797],[-85.52785527855278,77.47754792700775],[-85.5170551705517,77.47923650427762],[-85.50985509855099,77.47923650427762],[-85.49905499054991,77.47585934973787],[-85.48825488254882,77.4724821951981],[-85.4810548105481,77.46572788611857],[-85.49185491854918,77.45897357703905],[-85.50625506255062,77.4539078452294],[-85.52065520655206,77.45221926795949],[-85.5350553505535,77.45221926795949],[-85.52785527855278,77.44377638161009],[-85.51345513455134,77.43702207253057],[-85.49905499054991,77.43364491799079],[-85.48465484654847,77.43195634072092],[-85.47025470254702,77.42857918618114],[-85.43425434254343,77.41000483621244],[-85.40185401854018,77.40156194986304],[-85.00225002250022,77.3829875998943],[-84.93744937449374,77.3745447135449],[-84.7610476104761,77.32219881817855],[-84.46584465844658,77.30193589093994],[-84.48384483844838,77.32051024090865],[-84.54864548645486,77.33739601360747],[-84.57744577445774,77.34921605449665],[-84.56664566645667,77.36272467265573],[-84.57744577445774,77.372856136275],[-84.5990459904599,77.38129902262443],[-84.6170461704617,77.3829875998943],[-84.57384573845738,77.40662768167266],[-84.49824498244982,77.40662768167266],[-84.35784357843578,77.38974190897383],[-84.06264062640626,77.40493910440279],[-83.76383763837639,77.37623329081478],[-83.4650346503465,77.34921605449665],[-83.47223472234722,77.36272467265573],[-83.48663486634867,77.38467617716421],[-83.4830348303483,77.39143048624373],[-83.79983799837999,77.42857918618114],[-83.83583835838358,77.45897357703905],[-83.80343803438033,77.4724821951981],[-83.62343623436234,77.4724821951981],[-83.5730357303573,77.4809250815475],[-83.50463504635046,77.50287658605598],[-83.42543425434253,77.50794231786563],[-83.38943389433894,77.51469662694515],[-83.3750337503375,77.5197623587548],[-83.3570335703357,77.52820524510423],[-83.31743317433174,77.55859963596211],[-83.3030330303303,77.56197679050189],[-83.25983259832599,77.56704252231154],[-83.02583025830258,77.67173431304425],[-82.98622986229861,77.67848862212378],[-82.97182971829717,77.68355435393343],[-82.96462964629646,77.69537439482261],[-82.95742957429574,77.70719443571178],[-82.95382953829538,77.71394874479131],[-82.93582935829357,77.71563732206121],[-82.88182881828818,77.72745736295039],[-82.7810278102781,77.7950004537457],[-82.78822788227882,77.79668903101557],[-82.80982809828097,77.80175476282523],[-82.77022770227703,77.81526338098428],[-82.68382683826837,77.83383773095301],[-82.65142651426514,77.85747781273136],[-82.64422644226443,77.86929785362054],[-82.64422644226443,77.88618362631937],[-82.64062640626406,77.89462651266876],[-82.6190261902619,77.90644655355794],[-82.53982539825398,77.92502090352667],[-82.5830258302583,77.94528383076525],[-82.5650256502565,77.9503495625749],[-82.5290252902529,77.95372671711468],[-82.51462514625146,77.9604810261942],[-82.5290252902529,77.96554675800385],[-82.55422554225542,77.9790553761629],[-82.56142561425614,77.98749826251233],[-82.55422554225542,77.98749826251233],[-82.55062550625506,77.9891868397822],[-82.5470254702547,77.99256399432196],[-82.58662586625866,78.01113834429069],[-82.59742597425974,78.02126980790999],[-82.54342543425435,78.03815558060879],[-82.48582485824858,78.04490988968834],[-82.37062370623705,78.04153273514856],[-82.37062370623705,78.05504135330762],[-82.35622356223561,78.06348423965704],[-82.33462334623346,78.07023854873657],[-82.32022320223201,78.08205858962575],[-82.50742507425073,78.08037001235587],[-82.65862658626585,78.06179566238717],[-82.76662766627666,78.02802411698951],[-82.78462784627845,78.01789265337021],[-82.79182791827918,77.9891868397822],[-82.76662766627666,77.96723533527373],[-82.73782737827378,77.94697240803512],[-82.73422734227341,77.92839805806642],[-82.75942759427593,77.91657801717724],[-82.93582935829357,77.88111789450971],[-82.95742957429574,77.87098643089041],[-82.95742957429574,77.86254354454101],[-82.96462964629646,77.85578923546146],[-82.9790297902979,77.84734634911206],[-82.99342993429934,77.83552630822288],[-82.98622986229861,77.83552630822288],[-83.00063000630006,77.82539484460358],[-83.07263072630725,77.81019764917463],[-83.10863108631087,77.79668903101557],[-83.1230312303123,77.78824614466618],[-83.18423184231843,77.72239163114074],[-83.20223202232022,77.70888301298169],[-83.23823238232382,77.69537439482261],[-83.32823328233282,77.67173431304425],[-83.38943389433894,77.62276557221765],[-83.42183421834218,77.60756837678872],[-83.67743677436773,77.53495955418376],[-83.91863918639186,77.4927451224367],[-83.92583925839259,77.49612227697645],[-83.92223922239222,77.50287658605598],[-83.91143911439114,77.50963089513553],[-83.90423904239042,77.51300804967528],[-84.08424084240842,77.50963089513553],[-84.33264332643326,77.53327097691388],[-84.7610476104761,77.5197623587548],[-84.78624786247862,77.52482809056445],[-84.84384843848439,77.54340244053316],[-84.86544865448654,77.55522248142236],[-84.85824858248583,77.56197679050189],[-84.8690486904869,77.57379683139106],[-84.85824858248583,77.58223971774046],[-84.83664836648366,77.59068260408989],[-84.6530465304653,77.62276557221765],[-84.63144631446315,77.6295198812972],[-84.59184591845919,77.65315996307555],[-84.50544505445055,77.6768000448539],[-84.4730447304473,77.69199724028286],[-84.43344433444334,77.72576878568051],[-84.43344433444334,77.72914594022026],[-84.44424444244441,77.73590024929979],[-84.45144451444514,77.74434313564922],[-84.46584465844658,77.74940886745887],[-84.48024480244803,77.75278602199862],[-84.49464494644945,77.75447459926852],[-84.49824498244982,77.75447459926852],[-84.50184501845018,77.75447459926852],[-84.50544505445055,77.75447459926852],[-84.5090450904509,77.75447459926852],[-84.49464494644945,77.75278602199862],[-84.4910449104491,77.75278602199862],[-84.48024480244803,77.74265455837934],[-84.4730447304473,77.73927740383957],[-84.48744487444874,77.71901447660096],[-84.4910449104491,77.71394874479131],[-84.5090450904509,77.70212870390213],[-84.51624516245163,77.69537439482261],[-84.5450454504545,77.68017719939368],[-84.62064620646206,77.67004573577438],[-84.71424714247142,77.63965134491647],[-84.94464944649447,77.60250264497907],[-84.96264962649626,77.60756837678872],[-85.00225002250022,77.62276557221765],[-85.2830528305283,77.65991427215508],[-85.30825308253083,77.67173431304425],[-85.3010530105301,77.68355435393343],[-85.2830528305283,77.69706297209248],[-85.26865268652686,77.71394874479131],[-85.3370533705337,77.73083451749014],[-85.35145351453514,77.73927740383957],[-85.2110521105211,77.75954033107814],[-85.20025200252002,77.76967179469744],[-85.19665196651967,77.7848689901264],[-85.18945189451894,77.79837760828545],[-85.16425164251642,77.80682049463488],[-85.05625056250562,77.80175476282523],[-84.96984969849699,77.81864053552405],[-84.94464944649447,77.82877199914336],[-84.96984969849699,77.84396919457228],[-85.00945009450095,77.84396919457228],[-85.0490504905049,77.83552630822288],[-85.09225092250922,77.82032911279393],[-85.14625146251463,77.8220176900638],[-85.26145261452614,77.8034433400951],[-85.32625326253262,77.8034433400951],[-85.38025380253802,77.8135748037144],[-85.39825398253983,77.82032911279393],[-85.40185401854018,77.8321491536831],[-85.38385383853839,77.84565777184218],[-85.3190531905319,77.87267500816029],[-85.25065250652506,77.88618362631937],[-85.17865178651786,77.88787220358924],[-85.03465034650347,77.87774073996994],[-84.95904959049591,77.88280647177959],[-84.89784897848978,77.89631508993867],[-84.8690486904869,77.89800366720854],[-84.83664836648366,77.89124935812902],[-84.84384843848439,77.89124935812902],[-84.8870488704887,77.85916639000123],[-84.90864908649087,77.84059204003253],[-84.89064890648906,77.83721488549276],[-84.67824678246782,77.90813513082784],[-84.35784357843578,77.88787220358924],[-84.31464314643146,77.89800366720854],[-84.54864548645486,77.92839805806642],[-84.89424894248943,77.91826659444712],[-85.23625236252362,77.90982370809772],[-85.35145351453514,77.88449504904946],[-85.47385473854739,77.87267500816029],[-85.49185491854918,77.87267500816029],[-85.50985509855099,77.88280647177959],[-85.51345513455134,77.89462651266876],[-85.50985509855099,77.9030693990182],[-85.50265502655026,77.90982370809772],[-85.48825488254882,77.91151228536759],[-85.65385653856538,77.91826659444712],[-85.6790567905679,77.93515236714595],[-85.6610566105661,77.9503495625749],[-85.36225362253622,78.00607261248103],[-85.06345063450634,78.06348423965704],[-85.01665016650166,78.06010708511727],[-84.92664926649266,78.04153273514856],[-84.70704707047071,78.03477842606904],[-84.6890468904689,78.03815558060879],[-84.59544595445954,78.06517281692692],[-84.53784537845378,78.07530428054622],[-84.33984339843398,78.07023854873657],[-84.28944289442894,78.08205858962575],[-84.58824588245882,78.08037001235587],[-84.73944739447394,78.05841850784739],[-84.8510485104851,78.05841850784739],[-85.09585095850959,78.10232151686435],[-85.04185041850418,78.12765017591258],[-84.9950499504995,78.15804456677049],[-84.99864998649986,78.16479887585001],[-85.00585005850058,78.16986460765966],[-85.02025020250203,78.17324176219941],[-85.03465034650347,78.17155318492954],[-85.03465034650347,78.17830749400906],[-84.84384843848439,78.16817603038976],[-84.62424624246242,78.20363615305732],[-84.39384393843937,78.19012753489824],[-84.21024210242102,78.15973314404036],[-84.02664026640267,78.17830749400906],[-84.02664026640267,78.18506180308859],[-84.22464224642246,78.18506180308859],[-84.42624426244262,78.21376761667659],[-84.75384753847538,78.21883334848624],[-84.8690486904869,78.19857042124767],[-84.94824948249482,78.20194757578741],[-84.96984969849699,78.21376761667659],[-84.94824948249482,78.2441620075345],[-84.93384933849339,78.25429347115377],[-84.88344883448835,78.27793355293215],[-84.87264872648726,78.28637643928155],[-84.8510485104851,78.30832794379003],[-84.80784807848079,78.32690229375874],[-84.58824588245882,78.34378806645756],[-84.57744577445774,78.35391953007687],[-84.58464584645846,78.36742814823592],[-84.5990459904599,78.37249388004557],[-84.62064620646206,78.3708053027757],[-84.63864638646386,78.36742814823592],[-84.66744667446675,78.35560810734674],[-84.69624696246962,78.34716522099734],[-84.72864728647286,78.34378806645756],[-84.7610476104761,78.34378806645756],[-84.78984789847898,78.34885379826721],[-84.84384843848439,78.36573957096604],[-84.87264872648726,78.3708053027757],[-84.86544865448654,78.37587103458534],[-84.85824858248583,78.3792481891251],[-84.8510485104851,78.38262534366487],[-84.8510485104851,78.38431392093474],[-84.84024840248402,78.39444538455405],[-84.82584825848258,78.41133115725287],[-84.81864818648187,78.43159408449148],[-84.8150481504815,78.4484798571903],[-84.80424804248042,78.46705420715901],[-84.7790477904779,78.47718567077831],[-84.76824768247683,78.48731713439759],[-84.78984789847898,78.50758006163619],[-84.71784717847179,78.53290872068442],[-84.66024660246602,78.57343457516163],[-84.63864638646386,78.5835660387809],[-84.6170461704617,78.59032034786046],[-84.64584645846458,78.59876323420985],[-84.67824678246782,78.59032034786046],[-84.73944739447394,78.55823737973267],[-84.83304833048331,78.52108867979524],[-84.85824858248583,78.50758006163619],[-84.85824858248583,78.49744859801689],[-84.86184861848618,78.48056282531806],[-84.87264872648726,78.46536562988913],[-84.8870488704887,78.45861132080958],[-84.89784897848978,78.4569227435397],[-84.91944919449195,78.44003697084088],[-84.93024930249302,78.43497123903123],[-84.95904959049591,78.4282169299517],[-84.97344973449734,78.42146262087218],[-84.98064980649806,78.41133115725287],[-84.96984969849699,78.409642579983],[-84.96624966249662,78.40626542544322],[-84.95184951849518,78.39782253909382],[-84.96264962649626,78.3893796527444],[-84.97344973449734,78.37418245731547],[-84.97344973449734,78.36067383915639],[-84.95904959049591,78.35054237553709],[-84.9770497704977,78.33872233464791],[-85.02745027450274,78.31845940740934],[-85.0490504905049,78.31508225286956],[-85.04545045450455,78.30495078925026],[-85.04185041850418,78.29988505744063],[-85.03825038250382,78.29650790290086],[-85.02745027450274,78.29481932563098],[-85.02745027450274,78.28806501655143],[-85.05985059850599,78.28468786201168],[-85.08505085050851,78.27793355293215],[-85.19665196651967,78.22727623483567],[-85.23625236252362,78.20194757578741],[-85.36225362253622,78.15973314404036],[-85.38385383853839,78.14791310315118],[-85.3910539105391,78.13778163953188],[-85.49185491854918,78.1056986714041],[-85.52785527855278,78.10232151686435],[-85.52785527855278,78.10907582594388],[-85.5170551705517,78.10907582594388],[-85.50625506255062,78.11076440321375],[-85.48825488254882,78.11751871229328],[-85.8590585905859,78.08881289870527],[-86.22626226262263,78.06179566238717],[-86.24426244262442,78.06517281692692],[-86.26946269462694,78.07192712600644],[-86.29106291062911,78.08374716689562],[-86.28746287462874,78.10063293959445],[-86.26586265862659,78.12427302137283],[-86.25146251462515,78.1344044849921],[-86.23346233462334,78.13778163953188],[-86.23346233462334,78.1445359486114],[-86.24066240662407,78.14791310315118],[-86.25146251462515,78.15466741223071],[-86.2550625506255,78.15804456677049],[-86.22266222662226,78.16648745311988],[-86.11826118261182,78.17155318492954],[-86.09666096660966,78.17661891673919],[-86.0210602106021,78.21376761667659],[-85.93825938259383,78.23740769845497],[-85.92745927459275,78.25091631661402],[-85.92025920259202,78.26780208931285],[-85.90585905859058,78.27624497566225],[-85.89145891458914,78.2829992847418],[-85.87705877058771,78.29481932563098],[-85.88785887858879,78.29481932563098],[-85.8950589505895,78.29650790290086],[-85.90585905859058,78.30157363471051],[-85.87705877058771,78.32014798467921],[-85.84825848258482,78.32859087102864],[-85.83745837458375,78.34209948918769],[-85.85185851858519,78.3708053027757],[-85.84465844658446,78.3708053027757],[-85.83025830258302,78.37755961185522],[-85.84465844658446,78.38431392093474],[-85.8590585905859,78.38600249820465],[-85.87705877058771,78.38262534366487],[-85.89145891458914,78.37755961185522],[-85.88425884258842,78.37755961185522],[-85.89145891458914,78.3708053027757],[-85.8950589505895,78.36405099369617],[-85.8950589505895,78.35898526188652],[-85.89145891458914,78.35054237553709],[-85.90945909459094,78.34209948918769],[-85.9490594905949,78.33027944829851],[-85.97785977859779,78.32690229375874],[-85.98865988659887,78.32352513921899],[-85.99585995859958,78.31845940740934],[-85.99945999459995,78.31508225286956],[-86.04626046260462,78.30663936652016],[-86.0570605706057,78.30157363471051],[-86.06066060660606,78.29313074836108],[-86.06426064260643,78.2711792438526],[-86.06786067860678,78.26104778023333],[-86.08226082260822,78.2526048938839],[-86.14346143461434,78.23909627572485],[-86.2370623706237,78.20532473032719],[-86.28746287462874,78.19519326670789],[-86.35586355863558,78.20870188486694],[-86.43866438664386,78.20701330759707],[-86.48546485464854,78.2154561939465],[-86.5070650706507,78.2154561939465],[-86.52866528665287,78.20701330759707],[-86.56826568265683,78.17999607127894],[-86.72666726667266,78.12933875318248],[-86.76986769867699,78.12089586683305],[-87.12987129871298,78.12427302137283],[-87.48627486274863,78.12765017591258],[-87.5150751507515,78.13271590772223],[-87.53667536675367,78.1445359486114],[-87.49347493474934,78.16986460765966],[-87.43587435874359,78.18675038035849],[-87.09027090270902,78.20701330759707],[-87.09027090270902,78.21376761667659],[-87.20187201872018,78.21883334848624],[-87.27747277472774,78.23571912118507],[-87.34587345873459,78.22052192575615],[-87.41787417874178,78.2154561939465],[-87.48987489874898,78.21883334848624],[-87.52227522275223,78.2340305439152],[-87.52227522275223,78.2441620075345],[-87.50067500675006,78.26611351204298],[-87.49707497074971,78.27793355293215],[-87.50067500675006,78.29313074836108],[-87.51147511475115,78.31508225286956],[-87.5150751507515,78.32521371648886],[-87.50787507875079,78.35223095280699],[-87.49707497074971,78.37418245731547],[-87.50067500675006,78.39275680728417],[-87.52947529475294,78.41133115725287],[-87.51147511475115,78.43497123903123],[-87.48267482674827,78.45185701173006],[-87.15867158671587,78.54979449338325],[-86.85986859868598,78.54810591611337],[-86.85986859868598,78.5565488024628],[-86.85986859868598,78.56836884335198],[-86.9030690306903,78.5835660387809],[-87.05427054270542,78.56836884335198],[-87.1010710107101,78.5751231524315],[-87.12267122671227,78.5835660387809],[-87.1190711907119,78.5936975024002],[-86.98946989469894,78.64773197503646],[-86.96786967869679,78.66799490227504],[-86.96066960669606,78.69670071586305],[-86.9390693906939,78.71358648856187],[-86.61146611466114,78.80983539294519],[-86.58266582665826,78.81152397021506],[-86.55386553865539,78.81152397021506],[-86.5070650706507,78.80139250659579],[-86.01746017460174,78.8385412065332],[-85.75825758257582,78.83178689745367],[-85.49185491854918,78.87568990647063],[-85.38385383853839,78.88413279282003],[-85.24705247052471,78.91621576094781],[-85.22185221852219,78.91959291548756],[-85.16425164251642,78.91115002913816],[-85.0310503105031,78.92128149275746],[-84.70704707047071,78.87062417466097],[-84.22464224642246,78.85542697923202],[-83.74583745837458,78.8385412065332],[-83.54783547835478,78.79294962024636],[-83.3210332103321,78.77268669300778],[-83.25983259832599,78.74735803395953],[-83.16263162631626,78.72371795218118],[-82.78822788227882,78.6933235613233],[-82.75582755827558,78.68150352043412],[-82.70542705427054,78.66968347954494],[-82.6910269102691,78.66461774773529],[-82.70542705427054,78.65786343865574],[-82.6910269102691,78.64942055230634],[-82.64422644226443,78.64266624322681],[-82.62982629826298,78.63760051141716],[-82.62262622626226,78.63084620233764],[-82.6190261902619,78.62409189325811],[-82.60822608226081,78.61733758417856],[-82.57942579425794,78.60720612055928],[-82.50742507425073,78.59200892513033],[-82.44262442624427,78.58694319332068],[-82.37782377823778,78.57174599789172],[-82.34182341823418,78.56836884335198],[-82.26262262622626,78.58694319332068],[-82.23742237422374,78.59032034786046],[-82.23742237422374,78.5936975024002],[-82.2410224102241,78.59707465693998],[-82.24462244622445,78.6038289660195],[-82.51462514625146,78.66799490227504],[-82.59742597425974,78.70683217948235],[-82.49662496624966,78.71696364310165],[-82.47142471424714,78.72709510672095],[-82.47862478624786,78.73384941580048],[-82.24822248222482,78.7203407976414],[-82.21942219422193,78.72709510672095],[-82.26262262622626,78.7507351884993],[-82.33822338223382,78.7591780748487],[-82.77382773827738,78.73384941580048],[-82.80622806228062,78.73722657034023],[-82.8890288902889,78.76762096119813],[-82.9250292502925,78.77268669300778],[-83.00063000630006,78.77437527027766],[-83.03663036630365,78.77944100208731],[-83.07983079830798,78.79970392932589],[-83.09783097830977,78.80308108386566],[-83.20943209432095,78.80308108386566],[-83.22743227432274,78.80645823840544],[-83.23463234632347,78.81152397021506],[-83.2490324903249,78.8300983201838],[-83.25983259832599,78.83685262926332],[-83.20943209432095,78.85036124742237],[-82.98262982629826,78.85542697923202],[-82.64782647826478,78.83516405199344],[-82.4030240302403,78.82840974291389],[-82.35622356223561,78.83685262926332],[-82.32382323823238,78.84698409288262],[-82.01782017820177,78.8672470201212],[-81.7730177301773,78.86555844285132],[-81.74061740617405,78.8571155565019],[-81.8090180901809,78.84698409288262],[-81.7550175501755,78.84360693834284],[-81.71181711817118,78.8486726701525],[-81.70461704617045,78.87062417466097],[-81.69021690216901,78.87062417466097],[-81.67941679416793,78.87568990647063],[-81.65781657816578,78.89088710189955],[-81.67941679416793,78.90270714278876],[-81.75861758617586,78.91790433821768],[-81.74781747817478,78.92972437910686],[-81.71181711817118,78.94998730634546],[-81.69741697416974,78.97869311993347],[-81.6830168301683,78.98882458355277],[-81.66861668616686,78.9955788926323],[-81.65781657816578,78.99389031536242],[-81.63981639816397,79.0040217789817],[-81.47781477814777,79.04961336526853],[-81.49581495814958,79.05805625161796],[-81.53541535415354,79.0631219834276],[-81.54621546215462,79.06987629250713],[-81.56061560615606,79.0614334061577],[-81.8810188101881,79.01921897441065],[-81.94221942219421,79.0040217789817],[-81.9710197101971,78.98038169720334],[-81.96021960219602,78.98038169720334],[-81.97461974619746,78.97025023358404],[-82.03222032220322,78.95336446088521],[-82.10062100621006,78.92128149275746],[-82.12222122221222,78.91621576094781],[-82.53622536225362,78.88582137008993],[-82.56142561425614,78.88919852462968],[-82.61182611826118,78.90270714278876],[-82.96822968229682,78.94154441999603],[-83.33183331833318,78.93141295637676],[-83.67023670236702,78.93310153364664],[-83.96183961839618,78.96180734723464],[-84.27864278642787,78.95505303815511],[-84.5090450904509,79.01584181987087],[-84.75384753847538,79.03948190164925],[-84.78264782647827,79.0529905198083],[-84.78264782647827,79.07663060158666],[-84.76464764647646,79.08676206520596],[-84.69984699846998,79.09689352882526],[-84.65664656646567,79.11209072425419],[-84.50544505445055,79.14755084692175],[-84.45144451444514,79.14755084692175],[-84.33984339843398,79.13235365149279],[-84.16344163441634,79.13066507422292],[-84.05184051840519,79.10533641517466],[-84.04824048240482,79.10364783790479],[-84.0590405904059,79.09858210609514],[-84.06984069840698,79.08338491066618],[-84.04824048240482,79.08338491066618],[-84.03024030240302,79.08000775612643],[-84.01224012240122,79.07494202431678],[-84.00144001440015,79.06987629250713],[-83.99783997839978,79.06649913796736],[-83.99783997839978,79.0631219834276],[-83.99783997839978,79.05805625161796],[-83.99423994239942,79.05467909707818],[-83.98343983439834,79.05130194253843],[-83.71343713437135,79.03948190164925],[-83.4470344703447,79.02935043802995],[-83.40023400234001,79.03610474710948],[-83.36423364233642,79.05467909707818],[-83.40743407434074,79.06649913796736],[-83.49743497434974,79.04623621072878],[-83.54063540635406,79.04623621072878],[-83.69183691836918,79.06987629250713],[-83.71343713437135,79.07663060158666],[-83.6990369903699,79.08169633339631],[-83.69183691836918,79.08338491066618],[-83.72783727837277,79.09689352882526],[-83.8790387903879,79.12222218787349],[-83.96183961839618,79.12728791968314],[-83.99423994239942,79.13910796057232],[-83.9870398703987,79.14079653784219],[-83.9870398703987,79.14417369238197],[-83.98343983439834,79.14755084692175],[-83.97983979839798,79.1509280014615],[-83.99063990639907,79.1509280014615],[-84.0050400504005,79.1509280014615],[-84.01584015840159,79.15430515600127],[-84.02664026640267,79.15937088781092],[-84.00864008640086,79.1711909287001],[-83.98343983439834,79.1796338150495],[-83.9330393303933,79.19314243320858],[-83.96183961839618,79.22015966952668],[-84.00144001440015,79.22353682406646],[-84.08424084240842,79.19483101047845],[-84.14184141841417,79.18301096958928],[-84.3290432904329,79.19314243320858],[-84.31824318243181,79.20327389682785],[-84.32184321843218,79.2184710922568],[-84.33624336243362,79.23366828768576],[-84.35064350643506,79.24717690584481],[-84.33624336243362,79.24717690584481],[-84.3470434704347,79.26237410127376],[-84.36864368643685,79.27081698762316],[-84.39024390243902,79.27588271943281],[-84.41544415444154,79.29107991486177],[-84.42264422644226,79.29276849213164],[-84.42984429844299,79.2978342239413],[-84.43344433444334,79.31471999664012],[-84.4370443704437,79.3180971511799],[-84.44064440644406,79.32147430571965],[-84.44424444244441,79.32991719206908],[-84.44784447844478,79.36200016019683],[-84.45144451444514,79.37044304654626],[-84.46224462244622,79.37550877835591],[-84.4730447304473,79.37719735562578],[-84.48384483844838,79.37888593289566],[-84.48744487444874,79.38901739651496],[-84.48744487444874,79.40928032375356],[-84.48744487444874,79.41265747829331],[-84.50544505445055,79.42110036464274],[-84.58824588245882,79.43967471461144],[-84.6890468904689,79.44811760096084],[-84.87984879848798,79.48695487816815],[-84.89424894248943,79.49708634178745],[-84.88344883448835,79.51397211448628],[-84.90144901449014,79.51903784629593],[-84.93024930249302,79.52410357810558],[-84.96984969849699,79.53761219626463],[-84.97344973449734,79.54267792807428],[-84.97344973449734,79.54605508261406],[-84.97344973449734,79.55112081442371],[-84.96624966249662,79.55618654623333],[-84.98424984249843,79.56800658712254],[-85.00225002250022,79.57813805074181],[-85.0490504905049,79.59164666890089],[-85.03825038250382,79.60346670979007],[-85.02025020250203,79.61697532794912],[-85.1750517505175,79.65074687334678],[-85.32265322653227,79.67945268693478],[-85.62865628656286,79.70984707779266],[-85.86265862658627,79.69802703690348],[-86.15786157861578,79.73348715957104],[-86.44946449464494,79.75375008680962],[-86.47466474664746,79.76050439588914],[-86.4890648906489,79.76894728223857],[-86.49626496264962,79.77739016858797],[-86.49626496264962,79.7858330549374],[-86.4890648906489,79.81285029125553],[-86.48186481864818,79.82129317760493],[-86.46746467464675,79.8229817548748],[-86.37746377463775,79.8229817548748],[-86.39546395463954,79.82973606395436],[-86.4350643506435,79.83817895030376],[-86.4530645306453,79.84999899119293],[-86.46026460264602,79.86013045481224],[-86.46746467464675,79.88208195932071],[-86.47466474664746,79.89221342294002],[-86.46386463864638,79.90741061836894],[-86.45666456664566,79.9226078137979],[-86.44946449464494,79.93780500922685],[-86.43146431464314,79.94962505011603],[-86.39546395463954,79.96313366827508],[-86.31266312663126,79.97326513189438],[-85.9670596705967,79.95637935919555],[-85.88065880658806,79.9411821637666],[-85.5350553505535,79.93611643195695],[-85.41985419854198,79.90572204109907],[-85.33345333453335,79.90065630928942],[-85.28665286652866,79.90741061836894],[-85.25425254252542,79.92598496833764],[-85.42345423454235,79.93442785468707],[-85.52065520655206,79.96482224554495],[-85.87345873458735,79.97833086370403],[-85.95265952659527,79.99183948186308],[-86.44226442264423,80.00703667729204],[-86.53586535865358,80.03067675907039],[-86.5790657906579,80.04756253176922],[-86.58266582665826,80.05093968630896],[-86.58626586265862,80.05600541811862],[-86.58626586265862,80.06107114992827],[-86.58626586265862,80.06613688173792],[-86.60066600666006,80.07964549989697],[-86.6330663306633,80.0982198498657],[-86.64386643866439,80.11172846802475],[-86.65466654666547,80.137057127073],[-86.64386643866439,80.15394289977183],[-86.58986589865899,80.18940302243936],[-86.55746557465574,80.20460021786829],[-86.55026550265502,80.20966594967794],[-86.54666546665466,80.21979741329724],[-86.53946539465394,80.22992887691655],[-86.53226532265322,80.23668318599607],[-86.52146521465214,80.24174891780572],[-86.52866528665287,80.24850322688525],[-86.52146521465214,80.25863469050455],[-86.51426514265142,80.26876615412385],[-86.5070650706507,80.28902908136243],[-86.51066510665106,80.28902908136243],[-86.51426514265142,80.2924062359022],[-86.51786517865179,80.29747196771186],[-86.51426514265142,80.30253769952151],[-86.50346503465035,80.30929200860103],[-86.47466474664746,80.31098058587091],[-86.43866438664386,80.31942347222034],[-86.16506165061651,80.32955493583961],[-85.8950589505895,80.33799782218904],[-85.72585725857259,80.31435774041068],[-85.31545315453154,80.26876615412385],[-84.96984969849699,80.2738318859335],[-84.62784627846278,80.27889761774316],[-84.33264332643326,80.2738318859335],[-84.03744037440374,80.26876615412385],[-83.7890378903789,80.25019180415512],[-83.34263342633426,80.1455000134224],[-83.11223112231121,80.07457976808735],[-82.67662676626766,79.99183948186308],[-82.42462424624246,79.9310507001473],[-82.17262172621726,79.86857334116164],[-82.10422104221041,79.84155610484353],[-82.07542075420754,79.8229817548748],[-82.01422014220142,79.7757015913181],[-81.98181981819818,79.7571272413494],[-81.96381963819638,79.74699577773009],[-81.9710197101971,79.74361862319032],[-81.97821978219781,79.74024146865057],[-81.98541985419854,79.72673285049149],[-81.90981909819098,79.70309276871313],[-81.83061830618306,79.69296130509383],[-81.67221672216722,79.69296130509383],[-81.68661686616866,79.66594406877573],[-81.67581675816758,79.6490582960769],[-81.61461614616145,79.62372963702865],[-81.63621636216362,79.61697532794912],[-81.65781657816578,79.61190959613947],[-81.6830168301683,79.6102210188696],[-81.70461704617045,79.61528675067925],[-81.72621726217263,79.62204105975877],[-81.75141751417515,79.62710679156842],[-81.7730177301773,79.62372963702865],[-81.78741787417874,79.61190959613947],[-81.65061650616506,79.59502382344064],[-81.58581585815858,79.60177813252017],[-81.45261452614525,79.64230398699738],[-81.3770137701377,79.64230398699738],[-80.9810098100981,79.60684386432982],[-80.58860588605886,79.56969516439241],[-80.59940599405994,79.57813805074181],[-80.61380613806138,79.58320378255146],[-80.62820628206282,79.58658093709124],[-80.64260642606426,79.59164666890089],[-80.62100621006209,79.60346670979007],[-80.3510035100351,79.62710679156842],[-80.08460084600846,79.65074687334678],[-79.95139951399514,79.64568114153712],[-79.9189991899919,79.6490582960769],[-79.75339753397533,79.70646992325291],[-80.07740077400774,79.69802703690348],[-80.40140401404014,79.68958415055408],[-80.44460444604445,79.67438695512513],[-80.88020880208802,79.65412402788655],[-81.3230132301323,79.71997854141196],[-81.5030150301503,79.71491280960231],[-81.52461524615246,79.71828996414209],[-81.53181531815318,79.72166711868186],[-81.51021510215102,79.74530720046022],[-81.50661506615066,79.75543866407949],[-81.56781567815678,79.7655701276988],[-81.6290162901629,79.76894728223857],[-81.58581585815858,79.78921020947715],[-81.56421564215641,79.80609598217598],[-81.57141571415714,79.82635890941458],[-81.60381603816037,79.86181903208211],[-81.62541625416254,79.87870480478094],[-81.65781657816578,79.88883626840024],[-81.66501665016649,79.89896773201954],[-81.66141661416614,79.90741061836894],[-81.65061650616506,79.9124763501786],[-81.56781567815678,79.92598496833764],[-81.44181441814418,79.92598496833764],[-81.40221402214021,79.93949358649672],[-81.45621456214562,79.95469078192568],[-81.72981729817297,79.97326513189438],[-81.99981999819998,79.99183948186308],[-82.07182071820718,80.01041383183178],[-82.1690216902169,80.01885671818121],[-82.51822518225183,80.11510562256453],[-82.9430294302943,80.2451260723455],[-83.00063000630006,80.27889761774316],[-83.20583205832058,80.31773489495043],[-83.20583205832058,80.32280062676008],[-83.1590315903159,80.33462066764926],[-82.84942849428494,80.35488359488787],[-82.53622536225362,80.37514652212644],[-82.26262262622626,80.38865514028552],[-81.9890198901989,80.40385233571448],[-81.6110161101611,80.410606644794],[-81.19341193411934,80.43086957203258],[-80.77220772207721,80.45282107654106],[-80.3510035100351,80.47308400377966],[-80.29340293402933,80.48828119920859],[-80.31140311403114,80.49334693101824],[-80.34740347403473,80.49841266282789],[-80.36180361803618,80.50854412644719],[-80.05220052200522,80.5271184764159],[-79.78219782197822,80.53218420822554],[-79.50859508595086,80.5372499400352],[-79.42939429394293,80.55244713546415],[-79.04059040590406,80.54906998092437],[-78.9289892898929,80.56426717635333],[-78.81378813788137,80.5558242900039],[-78.69858698586985,80.57102148543285],[-78.40338403384034,80.56764433089307],[-78.10818108181081,80.56426717635333],[-78.05058050580506,80.56933290816298],[-78.03258032580325,80.57777579451238],[-78.03618036180362,80.57946437178225],[-78.03978039780398,80.5845301035919],[-78.03258032580325,80.5845301035919],[-78.02898028980289,80.5862186808618],[-78.02538025380254,80.58959583540155],[-78.02178021780217,80.59128441267143],[-78.01818018180181,80.59128441267143],[-78.01818018180181,80.59635014448108],[-78.39978399783998,80.60648160810038],[-78.78498784987849,80.61661307171968],[-79.27459274592745,80.60985876264016],[-79.62019620196202,80.60985876264016],[-79.96579965799657,80.61154733991003],[-79.96579965799657,80.61830164898956],[-79.91179911799118,80.63181026714864],[-79.56979569795698,80.66389323527639],[-79.39339393393934,80.69766478067405],[-79.08019080190802,80.71117339883313],[-78.84978849788497,80.74494494423075],[-78.63738637386373,80.75338783058018],[-78.53298532985329,80.78040506689831],[-78.33858338583386,80.78378222143806],[-78.23418234182341,80.79391368505736],[-78.1909819098191,80.80573372594654],[-77.73017730177301,80.81755376683572],[-77.5069750697507,80.83443953953454],[-77.13617136171361,80.83275096226467],[-76.85176851768517,80.8395052713442],[-76.56736567365674,80.84625958042372],[-76.5169651696517,80.85639104404302],[-76.48456484564845,80.8783425485515],[-76.5889658896589,80.90198263032985],[-76.77616776167761,80.90198263032985],[-77.02457024570245,80.8867854349009],[-77.38817388173881,80.90367120759973],[-77.69417694176941,80.90535978486963],[-77.99657996579965,80.90535978486963],[-78.11538115381154,80.8884740121708],[-78.48258482584825,80.87327681674185],[-78.84618846188461,80.8580796213129],[-78.87498874988749,80.8597681985828],[-78.8929889298893,80.86483393039245],[-78.93618936189361,80.8783425485515],[-78.91098910989109,80.8986054757901],[-78.88218882188822,80.91042551667928],[-78.86058860588605,80.92562271210821],[-78.87858878588786,80.95770568023599],[-78.90018900189001,80.97121429839504],[-78.91818918189182,80.97796860747457],[-78.92538925389253,80.986411493824],[-78.90738907389074,81.00160868925295],[-78.88578885788857,81.01174015287222],[-78.46818468184682,81.10461190271579],[-78.4249842498425,81.12149767541462],[-78.39618396183961,81.14682633446284],[-78.47538475384754,81.1518920662725],[-78.4429844298443,81.1704664162412],[-78.38178381783817,81.17890930259063],[-78.2629826298263,81.1805978798605],[-78.15858158581585,81.19241792074968],[-78.05778057780577,81.2194351570678],[-77.98937989379894,81.24814097065581],[-77.84177841778417,81.28360109332334],[-77.66537665376653,81.3072411751017],[-77.62577625776257,81.32074979326077],[-77.36657366573665,81.34101272049935],[-77.19737197371974,81.37647284316691],[-77.07137071370714,81.374784265897],[-76.9669696696967,81.40686723402479],[-76.7581675816758,81.43388447034292],[-76.74376743767438,81.44063877942244],[-76.79056790567905,81.45245882031162],[-76.85536855368554,81.4558359748514],[-77.31617316173161,81.40686723402479],[-77.78057780577805,81.35789849319818],[-77.87417874178742,81.3359469886897],[-78.1909819098191,81.30555259783182],[-78.48258482584825,81.22618946614733],[-78.59418594185942,81.21268084798828],[-78.68418684186841,81.19241792074968],[-78.70938709387093,81.17890930259063],[-78.73458734587345,81.1620235298918],[-78.75618756187562,81.13838344811344],[-78.72378723787237,81.12825198449414],[-78.70938709387093,81.12487482995436],[-78.69138691386914,81.12487482995436],[-78.73818738187381,81.11305478906519],[-78.94338943389434,81.10798905725554],[-79.22419224192241,81.15358064354237],[-79.5049950499505,81.2008608070991],[-79.46179461794618,81.17553214805085],[-79.15219152191521,81.10292332544589],[-79.09459094590946,81.09954617090614],[-79.06579065790658,81.09110328455671],[-79.10539105391054,81.07084035731813],[-79.21339213392133,81.07084035731813],[-79.26019260192602,81.06408604823861],[-79.32499324993249,81.0252487710313],[-79.33219332193322,81.01849446195178],[-79.34659346593466,81.00160868925295],[-79.31419314193141,80.99147722563364],[-79.28179281792818,80.98810007109387],[-79.24579245792458,80.98810007109387],[-79.1809918099181,80.9965429574433],[-79.16659166591666,80.98810007109387],[-79.17019170191702,80.97290287566494],[-79.19539195391954,80.95939425750586],[-79.27819278192781,80.92899986664798],[-79.31059310593106,80.92731128937811],[-79.3789937899379,80.92899986664798],[-79.41139411394114,80.92224555756846],[-79.43659436594366,80.90535978486963],[-79.44379443794438,80.88509685763103],[-79.48339483394834,80.86652250766232],[-79.6129961299613,80.82768523045502],[-79.92619926199262,80.79729083959714],[-80.05580055800557,80.76351929419948],[-80.19260192601925,80.7516992533103],[-80.35820358203581,80.73987921242113],[-80.63540635406353,80.70441908975357],[-80.87660876608766,80.66220465800652],[-81.21861218612186,80.62843311260886],[-81.55341553415533,80.62167880352933],[-81.81261812618126,80.59803872175098],[-82.07542075420754,80.58284152632203],[-82.33822338223382,80.56764433089307],[-82.37782377823778,80.5558242900039],[-82.38862388623886,80.5575128672738],[-82.72342723427234,80.55413571273402],[-82.91422914229142,80.53893851730507],[-83.11943119431194,80.5473814036545],[-83.16623166231662,80.56089002181355],[-83.16983169831698,80.58790725813168],[-83.14463144631446,80.61154733991003],[-83.11943119431194,80.63181026714864],[-83.0870308703087,80.64700746257756],[-83.0510305103051,80.65207319438721],[-82.94662946629465,80.65207319438721],[-82.8890288902889,80.65882750346674],[-82.8350283502835,80.684156162515],[-82.4930249302493,80.70610766702347],[-82.1510215102151,80.72637059426205],[-82.02862028620285,80.75507640785005],[-81.94221942219421,80.76183071692958],[-81.75861758617586,80.81755376683572],[-81.78021780217802,80.82599665318514],[-81.8630186301863,80.82430807591524],[-81.9710197101971,80.83781669407432],[-82.0250202502025,80.83275096226467],[-82.12942129421293,80.80911088048632],[-82.37422374223742,80.78547079870796],[-82.4210242102421,80.77365075781879],[-82.48222482224821,80.77533933508866],[-82.50742507425073,80.77196218054888],[-82.52542525425254,80.76351929419948],[-82.53982539825398,80.75338783058018],[-82.55782557825577,80.74494494423075],[-82.57942579425794,80.741567789691],[-83.00063000630006,80.7229934397223],[-83.3030330303303,80.69766478067405],[-83.49743497434974,80.70104193521382],[-83.52623526235261,80.70610766702347],[-83.54783547835478,80.71455055337287],[-83.52623526235261,80.7213048624524],[-83.5370353703537,80.72805917153195],[-83.56943569435694,80.741567789691],[-83.52623526235261,80.75845356238983],[-83.3570335703357,80.77027360327901],[-83.14823148231481,80.81755376683572],[-83.1230312303123,80.8310623849948],[-83.27423274232741,80.84625958042372],[-83.3210332103321,80.83781669407432],[-83.36783367833678,80.81586518956584],[-83.38223382233822,80.80911088048632],[-83.53343533435334,80.78378222143806],[-83.58023580235802,80.78209364416819],[-83.60183601836017,80.77871648962841],[-83.65943659436594,80.75507640785005],[-83.70623706237062,80.74832209877053],[-83.8610386103861,80.76183071692958],[-83.8430384303843,80.75507640785005],[-83.77463774637746,80.741567789691],[-83.81063810638106,80.73819063515123],[-83.82863828638285,80.72637059426205],[-83.8250382503825,80.70948482156322],[-83.79623796237962,80.6925990488644],[-83.77463774637746,80.68246758524512],[-83.74943749437494,80.66727038981617],[-83.73143731437314,80.65038461711734],[-83.72063720637206,80.63181026714864],[-83.74223742237422,80.61830164898956],[-83.77823778237781,80.57777579451238],[-83.80343803438033,80.55920144454367],[-83.84663846638466,80.54400424911472],[-83.8970389703897,80.5372499400352],[-84.08064080640806,80.53556136276532],[-84.39744397443974,80.51023270371707],[-84.69264692646927,80.53218420822554],[-84.92664926649266,80.53049563095567],[-85.1210512105121,80.50347839463754],[-85.54945549455495,80.52542989914602],[-85.65025650256503,80.54062709457497],[-85.79785797857978,80.53049563095567],[-85.86625866258662,80.54231567184485],[-85.79425794257942,80.57439863997263],[-85.63585635856359,80.60141587629073],[-85.56385563855638,80.62505595806908],[-85.7870578705787,80.60141587629073],[-86.04986049860499,80.5372499400352],[-86.11826118261182,80.5372499400352],[-86.4350643506435,80.57102148543285],[-86.74826748267482,80.6047930308305],[-86.6870668706687,80.65038461711734],[-86.55026550265502,80.71623913064275],[-86.17586175861759,80.8310623849948],[-85.79785797857978,80.94588563934681],[-85.62145621456214,80.97965718474447],[-85.50625506255062,80.98472291655412],[-85.45225452254522,80.9948543801734],[-85.36225362253622,80.9948543801734],[-85.23265232652327,81.01005157560235],[-85.2110521105211,81.02018303922165],[-85.19665196651967,81.0235601937614],[-85.00225002250022,81.02862592557105],[-85.01665016650166,81.03706881192048],[-84.99864998649986,81.04213454373013],[-84.9770497704977,81.04551169826988],[-84.95544955449554,81.043823121],[-84.91224912249122,81.03031450284095],[-84.88344883448835,81.02862592557105],[-84.55224552245522,81.043823121],[-84.2210422104221,81.05733173915905],[-84.14184141841417,81.07252893458801],[-83.67743677436773,81.09279186182661],[-83.21663216632166,81.11474336633509],[-82.75222752227522,81.13500629357367],[-82.69822698226982,81.14851491173272],[-82.46062460624606,81.16033495262192],[-82.36342363423634,81.1805978798605],[-82.3850238502385,81.18566361167015],[-82.83862838628386,81.16371210716167],[-83.29583295832958,81.14007202538332],[-83.74943749437494,81.11812052087484],[-84.2030420304203,81.09616901636636],[-84.2570425704257,81.09954617090614],[-84.71784717847179,81.08434897547718],[-85.17865178651786,81.06915178004826],[-85.27945279452794,81.05057743007953],[-85.39465394653946,81.06070889369883],[-85.49185491854918,81.05057743007953],[-85.77985779857798,81.0336916573807],[-86.1110611106111,80.99316580290352],[-86.36666366663667,80.92731128937811],[-86.44226442264423,80.89522832125033],[-86.46026460264602,80.8884740121708],[-86.56466564665647,80.87496539401172],[-86.62586625866258,80.84457100315385],[-86.61866618666187,80.83781669407432],[-87.0650706507065,80.73312490334158],[-87.08307083070831,80.7213048624524],[-87.09747097470975,80.69091047159452],[-87.16587165871658,80.66389323527639],[-87.27747277472774,80.63181026714864],[-87.46467464674646,80.63349884441851],[-87.70587705877058,80.64531888530769],[-87.89667896678966,80.67571327616557],[-88.10188101881019,80.68077900797522],[-88.37908379083791,80.7213048624524],[-88.62388623886238,80.76858502600913],[-88.92988929889299,80.79897941686701],[-89.18549185491855,80.85132531223337],[-89.3870938709387,80.8783425485515],[-89.45189451894518,80.9070483621395],[-89.46269462694626,80.9154912484889],[-89.45909459094591,80.92055698029856],[-89.43389433894339,80.92899986664798],[-89.34749347493475,80.93575417572751],[-89.27189271892719,80.95263994842634],[-89.0270902709027,80.95770568023599],[-88.86148861488614,80.98134576201434],[-88.41148411484114,80.99823153471317],[-88.12348123481235,80.99823153471317],[-87.83187831878318,80.99823153471317],[-87.61947619476194,80.98134576201434],[-87.1370713707137,80.98978864836377],[-87.0290702907029,81.0066744210626],[-86.69786697866978,81.0049858437927],[-86.45666456664566,81.02862592557105],[-86.28026280262802,81.06915178004826],[-86.01746017460174,81.08434897547718],[-85.8590585905859,81.07590608912778],[-85.83025830258302,81.08434897547718],[-85.87705877058771,81.09279186182661],[-85.90225902259023,81.09954617090614],[-85.92025920259202,81.11136621179531],[-85.89145891458914,81.12487482995436],[-85.8590585905859,81.1333177163038],[-85.75105751057511,81.1434491799231],[-85.67545675456755,81.1620235298918],[-85.60345603456034,81.1704664162412],[-85.53145531455314,81.18904076620993],[-85.18585185851857,81.23463235249676],[-84.84024840248402,81.26164958881486],[-84.76824768247683,81.27853536151369],[-84.73224732247323,81.28360109332334],[-84.75024750247502,81.29542113421252],[-84.77544775447754,81.2987982887523],[-84.80064800648006,81.29710971148242],[-84.82584825848258,81.29204397967277],[-84.84744847448474,81.29035540240287],[-84.93744937449374,81.31061832964147],[-85.00945009450095,81.30386402056195],[-85.24345243452434,81.2987982887523],[-85.56025560255603,81.27009247516429],[-85.87345873458735,81.23969808430641],[-86.2010620106201,81.18904076620993],[-86.29466294662946,81.1518920662725],[-86.52146521465214,81.12487482995436],[-86.51426514265142,81.12487482995436],[-86.93546935469354,81.11136621179531],[-87.3890738907389,81.06915178004826],[-87.86067860678607,81.07928324366753],[-88.35028350283503,81.0623974709687],[-88.84348843488435,81.04720027553978],[-89.33309333093331,81.03031450284095],[-89.82629826298263,81.01342873014212],[-89.9450994509945,81.0252487710313],[-89.99909999099991,81.03875738919035],[-90.08190081900818,81.04720027553978],[-90.18270182701826,81.07084035731813],[-90.20430204302043,81.08097182093744],[-90.24750247502475,81.11136621179531],[-90.31950319503194,81.14176060265319],[-90.34110341103411,81.15526922081227],[-90.35190351903519,81.17384357078097],[-90.33750337503375,81.17722072532075],[-90.29790297902979,81.19410649801955],[-89.98469984699847,81.24982954792569],[-89.96309963099631,81.24814097065581],[-89.91629916299162,81.23969808430641],[-89.84429844298442,81.24814097065581],[-89.79389793897938,81.24645239338594],[-89.6030960309603,81.21099227071838],[-89.55989559895599,81.2093036934485],[-89.24669246692467,81.2278780434172],[-88.93348933489335,81.24814097065581],[-88.99468994689947,81.26671532062451],[-89.3870938709387,81.25151812519559],[-89.57429574295743,81.28528967059324],[-89.82989829898298,81.30386402056195],[-89.95589955899558,81.33088125688008],[-89.92349923499235,81.34270129776925],[-89.61029610296103,81.3646528022777],[-89.45189451894518,81.40686723402479],[-89.2430924309243,81.41024438856456],[-88.9910899108991,81.46934459301045],[-88.88668886688866,81.4558359748514],[-88.85068850688506,81.4541473975815],[-88.81828818288183,81.46090170666102],[-88.8470884708847,81.46259028393092],[-88.90468904689047,81.47778747935985],[-88.93348933489335,81.48116463389962],[-88.91188911889118,81.49467325205867],[-88.89028890288903,81.49973898386833],[-88.49428494284942,81.52337906564668],[-88.3070830708307,81.5216904883768],[-87.93987939879399,81.53688768380576],[-87.93987939879399,81.53013337472623],[-87.95067950679507,81.53013337472623],[-87.96147961479615,81.53013337472623],[-87.96867968679686,81.52675622018646],[-87.97587975879759,81.5216904883768],[-87.93987939879399,81.5132476020274],[-87.8930789307893,81.5115590247575],[-87.78867788677887,81.52337906564668],[-87.72027720277202,81.51662475656715],[-87.52587525875258,81.51662475656715],[-87.28467284672847,81.48623036570928],[-87.24867248672486,81.49467325205867],[-87.25947259472595,81.49636182932858],[-87.27027270272703,81.49805040659845],[-87.2810728107281,81.5031161384081],[-87.28827288272882,81.50818187021775],[-87.31347313473134,81.51831333383706],[-87.68067680676806,81.54364199288528],[-88.04788047880479,81.57065922920341],[-88.13428134281342,81.55715061104434],[-88.24948249482495,81.56390492012389],[-88.2350823508235,81.57065922920341],[-88.28188281882818,81.58585642463234],[-88.3430834308343,81.59092215644199],[-88.40428404284043,81.58585642463234],[-88.50508505085051,81.56390492012389],[-88.6130861308613,81.55377345650459],[-88.98028980289803,81.54026483834551],[-89.30789307893079,81.50480471567798],[-89.5130951309513,81.48791894297915],[-89.78669786697867,81.4457045112321],[-90.25830258302582,81.39842434767536],[-90.35190351903519,81.37647284316691],[-90.42030420304202,81.36802995681748],[-90.49230492304923,81.37140711135726],[-90.55350553505535,81.38491572951631],[-90.48150481504814,81.39842434767536],[-90.85950859508594,81.44739308850197],[-90.83430834308342,81.4642788612008],[-90.46350463504635,81.51662475656715],[-90.08910089100891,81.57065922920341],[-89.97749977499775,81.56728207466364],[-89.95589955899558,81.57065922920341],[-89.9450994509945,81.57572496101307],[-89.93069930699306,81.59092215644199],[-89.91629916299162,81.59598788825164],[-89.64269642696426,81.6010536200613],[-89.58509585095851,81.63313658818907],[-89.83709837098371,81.63313658818907],[-90.09270092700926,81.62638227910955],[-90.07830078300783,81.63651374272882],[-90.06030060300603,81.6398908972686],[-90.04230042300422,81.64157947453847],[-90.02430024300243,81.64664520634813],[-90.04950049500495,81.65339951542765],[-90.1071010710107,81.65508809269755],[-90.13230132301322,81.66015382450718],[-90.23670236702367,81.69561394717473],[-90.29790297902979,81.70405683352413],[-90.33390333903338,81.70236825625426],[-90.35550355503555,81.69054821536508],[-90.35550355503555,81.6787281744759],[-90.33390333903338,81.66521955631683],[-90.29070290702907,81.64664520634813],[-90.31590315903159,81.64664520634813],[-90.3951039510395,81.66015382450718],[-90.48870488704887,81.6584652472373],[-90.6831068310683,81.677039597206],[-90.71550715507155,81.67366244266626],[-90.78030780307803,81.64157947453847],[-90.83070830708307,81.63313658818907],[-90.92790927909279,81.63313658818907],[-90.97110971109711,81.62638227910955],[-90.99270992709927,81.61962797003],[-91.00711007110071,81.60780792914082],[-91.00351003510035,81.59767646552152],[-90.96390963909639,81.56390492012389],[-90.98550985509854,81.56390492012389],[-91.01431014310143,81.56052776558411],[-91.04311043110431,81.55546203377446],[-91.08271082710827,81.54195341561541],[-91.10071100711006,81.54026483834551],[-91.11151111511114,81.54195341561541],[-91.10071100711006,81.55039630196481],[-91.14391143911439,81.56052776558411],[-91.47151471514715,81.53013337472623],[-91.41751417514175,81.54364199288528],[-91.41031410314103,81.55039630196481],[-91.41391413914138,81.55377345650459],[-91.44271442714427,81.58585642463234],[-91.48231482314823,81.59598788825164],[-91.75231752317522,81.60443077460107],[-91.81351813518135,81.6213165472999],[-91.88191881918819,81.61793939276012],[-91.95031950319503,81.63313658818907],[-91.93591935919359,81.64326805180835],[-91.91431914319143,81.648333783618],[-91.86751867518674,81.64664520634813],[-91.88551885518855,81.65339951542765],[-91.91071910719107,81.6584652472373],[-91.95751957519575,81.66015382450718],[-91.91431914319143,81.67028528812648],[-91.82071820718207,81.66353097904695],[-91.77031770317703,81.66690813358673],[-91.81351813518135,81.68041675174578],[-91.79551795517955,81.6871710608253],[-91.75591755917559,81.69054821536508],[-91.7379173791738,81.69392536990483],[-91.75231752317522,81.70067967898439],[-91.72351723517235,81.71418829714344],[-91.71631716317162,81.72094260622296],[-91.73071730717307,81.72769691530249],[-91.70911709117091,81.73445122438204],[-91.61911619116191,81.73613980165192],[-91.57231572315723,81.75302557435074],[-91.4859148591486,81.77159992431945],[-91.39951399513996,81.7766656561291],[-91.20511205112051,81.76315703797005],[-91.11871118711187,81.76991134704957],[-91.05031050310502,81.76484561523992],[-91.03231032310323,81.76991134704957],[-91.12591125911258,81.79017427428815],[-91.15471154711547,81.80368289244723],[-91.08991089910899,81.83070012876533],[-91.01431014310143,81.84252016965453],[-90.73350733507334,81.83914301511476],[-90.69750697506974,81.84758590146416],[-90.69030690306903,81.85096305600393],[-90.69030690306903,81.85434021054371],[-90.69030690306903,81.85771736508346],[-90.68670686706866,81.86278309689311],[-90.67590675906759,81.86616025143289],[-90.65790657906578,81.86616025143289],[-90.6111061110611,81.87629171505216],[-90.24390243902438,81.89993179683054],[-89.93429934299343,81.88473460140159],[-89.95589955899558,81.89655464229077],[-89.98469984699847,81.90330895137029],[-89.8910989109891,81.90162037410042],[-89.7650976509765,81.921883301339],[-89.72189721897219,81.9235718786089],[-89.68229682296823,81.9134404149896],[-89.69669696696967,81.90668610591007],[-89.7290972909729,81.9049975286402],[-89.74349743497434,81.89993179683054],[-89.70749707497075,81.88980033321124],[-89.64629646296463,81.86447167416298],[-89.53469534695347,81.84420874692441],[-89.49509495094951,81.84589732419428],[-89.4770947709477,81.84420874692441],[-89.46269462694626,81.83745443784488],[-89.46629466294662,81.8340772833051],[-89.48429484294843,81.8239458196858],[-89.45189451894518,81.8256343969557],[-89.36909369093691,81.81888008787615],[-89.33669336693367,81.80874862425688],[-89.3510935109351,81.81888008787615],[-89.3510935109351,81.82056866514606],[-89.34029340293402,81.83070012876533],[-89.26829268292683,81.84252016965453],[-89.17829178291782,81.87798029232206],[-89.14589145891459,81.88473460140159],[-89.17469174691746,81.89993179683054],[-89.37989379893799,81.90668610591007],[-89.4050940509405,81.91006326044982],[-89.41949419494195,81.92019472406912],[-89.41229412294122,81.93032618768842],[-89.39069390693906,81.93708049676795],[-89.34389343893439,81.94721196038725],[-89.25389253892538,81.94890053765712],[-89.07749077490774,81.9134404149896],[-88.98748987489874,81.92694903314865],[-89.00189001890018,81.94045765130772],[-88.99468994689947,81.94383480584747],[-88.98748987489874,81.94721196038725],[-89.05949059490595,81.9894263921343],[-89.00909009090091,82.00631216483313],[-88.68148681486815,82.05865806019952],[-88.2350823508235,82.08060956470797],[-88.16668166681667,82.09242960559715],[-88.13068130681306,82.09242960559715],[-88.11628116281163,82.09411818286705],[-88.10188101881019,82.10256106921645],[-88.09108091080911,82.10593822375623],[-88.06948069480694,82.1076268010261],[-87.99747997479975,82.10593822375623],[-87.79227792277922,82.07723241016822],[-87.58707587075871,82.09242960559715],[-87.37107371073711,82.07723241016822],[-87.19467194671947,82.02995224661149],[-87.17307173071731,82.01644362845244],[-87.3170731707317,81.97591777397525],[-87.28827288272882,81.96409773308608],[-87.00747007470075,81.92863761041855],[-86.72666726667266,81.89317748775099],[-86.75546755467555,81.91512899225947],[-86.8130681306813,81.9320147649583],[-87.09027090270902,81.95565484673665],[-87.12987129871298,81.97591777397525],[-86.84546845468455,81.9894263921343],[-86.84546845468455,81.99618070121386],[-86.87066870668707,81.99786927848373],[-86.9930699306993,82.02488651480186],[-87.00027000270002,82.03164082388139],[-86.98946989469894,82.04346086477057],[-86.96426964269642,82.05190375111997],[-86.62946629466295,82.05865806019952],[-86.25866258662586,82.04683801931031],[-86.16146161461614,82.04514944204044],[-86.1110611106111,82.03164082388139],[-85.97785977859779,82.01644362845244],[-85.70425704257042,81.93876907403782],[-85.43065430654306,81.85940594235333],[-85.39825398253983,81.85771736508346],[-85.36945369453694,81.86447167416298],[-85.40545405454054,81.88811175594137],[-85.63945639456394,81.94890053765712],[-85.7330573305733,81.9894263921343],[-85.68265682656826,82.00800074210304],[-85.26865268652686,82.00800074210304],[-85.20025200252002,81.99786927848373],[-85.02025020250203,81.92019472406912],[-84.91224912249122,81.89486606502089],[-84.7970479704797,81.88473460140159],[-84.9410494104941,81.93032618768842],[-85.07065070650707,81.9894263921343],[-85.0310503105031,81.99955785575361],[-84.86544865448654,81.99280354667408],[-84.83664836648366,81.98604923759456],[-84.82224822248222,81.96916346489573],[-84.82944829448294,81.94045765130772],[-84.77544775447754,81.91850614679925],[-84.72144721447214,81.90330895137029],[-84.60264602646026,81.89317748775099],[-84.62064620646206,81.90330895137029],[-84.68544685446854,81.9235718786089],[-84.69264692646927,81.9320147649583],[-84.70344703447034,81.95734342400655],[-84.71424714247142,81.96747488762583],[-84.75384753847538,81.99111496940421],[-85.24705247052471,82.02826366934161],[-85.74025740257402,82.06372379200914],[-86.23346233462334,82.10087249194657],[-86.72666726667266,82.13802119188398],[-86.85986859868598,82.19036708725037],[-86.87786877868778,82.20894143721907],[-86.8490684906849,82.22076147810824],[-86.55746557465574,82.24102440534685],[-86.35946359463594,82.23089294172755],[-86.01386013860139,82.23764725080707],[-85.67185671856718,82.2444015598866],[-85.56385563855638,82.2747959507445],[-85.50985509855099,82.27986168255413],[-85.40185401854018,82.27648452801438],[-85.35145351453514,82.28999314617343],[-85.45945459454595,82.31194465068191],[-85.49545495454954,82.32376469157109],[-85.47745477454774,82.33220757792051],[-85.43785437854378,82.34402761880969],[-85.41985419854198,82.35247050515909],[-85.5170551705517,82.35247050515909],[-85.5350553505535,82.36597912331817],[-85.50265502655026,82.39975066871582],[-85.54945549455495,82.41494786414475],[-85.70785707857078,82.41325928687488],[-85.7870578705787,82.42676790503393],[-85.8950589505895,82.42676790503393],[-85.92025920259202,82.43352221411345],[-85.90225902259023,82.44534225500266],[-85.88065880658806,82.4487194095424],[-85.85545855458554,82.4487194095424],[-85.76185761857619,82.46729375951111],[-85.4090540905409,82.47235949132076],[-85.05985059850599,82.47742522313041],[-84.70704707047071,82.48249095494006],[-84.66024660246602,82.47404806859066],[-84.62424624246242,82.45209656408218],[-84.64584645846458,82.44365367773275],[-84.90144901449014,82.4385879459231],[-84.94464944649447,82.42676790503393],[-84.51984519845197,82.39975066871582],[-84.3830438304383,82.3727334323977],[-84.39024390243902,82.36597912331817],[-84.3470434704347,82.35247050515909],[-84.19944199441994,82.3727334323977],[-83.93663936639366,82.36091339150852],[-83.67383673836738,82.34909335061934],[-83.42543425434253,82.30350176433251],[-83.38223382233822,82.2832388370939],[-83.37143371433714,82.27141879620473],[-83.37143371433714,82.26635306439508],[-83.37143371433714,82.26128733258543],[-83.36783367833678,82.24946729169625],[-83.3570335703357,82.2359586735372],[-83.33543335433355,82.22751578718777],[-83.0330303303033,82.17179273728163],[-83.0150301503015,82.16334985093224],[-82.96822968229682,82.13295546007436],[-82.95022950229502,82.1262011509948],[-82.9790297902979,82.0991839146767],[-83.02943029430294,82.08398671924775],[-83.13023130231302,82.07723241016822],[-83.13023130231302,82.0704781010887],[-82.78822788227882,82.06710094654892],[-82.44622446224461,82.06372379200914],[-82.10062100621006,82.0603466374694],[-81.94581945819458,82.03501797842114],[-81.90621906219062,82.03501797842114],[-81.87741877418773,82.04346086477057],[-81.89541895418954,82.04852659658022],[-81.94581945819458,82.0704781010887],[-82.11142111421114,82.0991839146767],[-82.5830258302583,82.09411818286705],[-82.62622626226262,82.10424964648635],[-82.83862838628386,82.18698993271059],[-83.00783007830078,82.23089294172755],[-83.01863018630186,82.2359586735372],[-83.02223022230221,82.2444015598866],[-83.02223022230221,82.2629759098553],[-83.02583025830258,82.28492741436378],[-83.01863018630186,82.28999314617343],[-83.00063000630006,82.29505887798308],[-82.96822968229682,82.29843603252286],[-82.57222572225722,82.24777871442637],[-82.39942399423994,82.24777871442637],[-82.12942129421293,82.19036708725037],[-81.85581855818558,82.1549069645828],[-81.58221582215822,82.11944684191528],[-81.58941589415893,82.11944684191528],[-81.09981099810997,82.06710094654892],[-80.61380613806138,82.01644362845244],[-80.61020610206101,82.00293501029338],[-80.5670056700567,81.99618070121386],[-80.51660516605166,81.99618070121386],[-80.4410044100441,82.00800074210304],[-80.01980019800197,81.96747488762583],[-79.61659616596165,81.85940594235333],[-79.56979569795698,81.83238870603523],[-79.53019530195301,81.8239458196858],[-79.23139231392314,81.81719151060628],[-79.68139681396814,81.93539191949807],[-79.71019710197102,81.95396626946678],[-79.70299702997029,81.9607205785463],[-79.7569975699757,81.97422919670538],[-79.86859868598685,81.97591777397525],[-79.92259922599226,81.9894263921343],[-79.9009990099901,81.99786927848373],[-79.85419854198541,82.00800074210304],[-79.83619836198362,82.01644362845244],[-79.86499864998649,82.02657509207174],[-80.22140221402213,82.05190375111997],[-80.57780577805778,82.0789209874381],[-80.93420934209341,82.10424964648635],[-80.96660966609666,82.11944684191528],[-80.97380973809737,82.12957830553458],[-80.97380973809737,82.13464403734423],[-80.96660966609666,82.13802119188398],[-80.88740887408873,82.15321838731293],[-80.86940869408694,82.15997269639246],[-81.29061290612906,82.16334985093224],[-81.76581765817657,82.2359586735372],[-82.23742237422374,82.30856749614213],[-82.71262712627126,82.3811763187471],[-82.7270272702727,82.39299635963627],[-82.73062730627306,82.40481640052545],[-82.73062730627306,82.4098821323351],[-82.68022680226802,82.4385879459231],[-82.49662496624966,82.50950819125819],[-81.99981999819998,82.50275388217867],[-81.49941499414994,82.49768815036902],[-81.47781477814777,82.50275388217867],[-81.5030150301503,82.50950819125819],[-81.57861578615785,82.50275388217867],[-81.91341913419134,82.52470538668712],[-81.92421924219242,82.52977111849677],[-82.2950229502295,82.58380559113303],[-82.39582395823957,82.61926571380056],[-82.37062370623705,82.64628295011869],[-82.32742327423274,82.65979156827774],[-82.06822068220681,82.6749887637067],[-81.74421744217442,82.65303725919821],[-81.41661416614166,82.63108575468974],[-81.15021150211501,82.58380559113303],[-80.88740887408873,82.53483685030642],[-80.58140581405814,82.54327973665585],[-80.59940599405994,82.55847693208477],[-80.84780847808477,82.61588855926081],[-81.09621096210962,82.67330018643682],[-81.12861128611286,82.68849738186574],[-81.12141121411214,82.6935631136754],[-81.16101161011609,82.71720319545375],[-81.2690126901269,82.72733465907305],[-81.36621366213662,82.75604047266106],[-81.47781477814777,82.76617193628036],[-81.5750157501575,82.79150059532859],[-81.58581585815858,82.79994348167801],[-81.56781567815678,82.81514067710697],[-81.53901539015389,82.82358356345637],[-81.47421474214742,82.83033787253589],[-81.0890108901089,82.81514067710697],[-80.70020700207002,82.80163205894789],[-80.3150031500315,82.78643486351896],[-80.2790027900279,82.76954909082014],[-80.28260282602825,82.76617193628036],[-80.28980289802898,82.75941762720083],[-80.29340293402933,82.75604047266106],[-80.17820178201782,82.73577754542248],[-80.14220142201421,82.7222689272634],[-80.16020160201602,82.70876030910435],[-80.1710017100171,82.7036945772947],[-80.18180181801817,82.70031742275492],[-80.1530015300153,82.68005449551634],[-80.10260102601026,82.66992303189704],[-79.92259922599226,82.65641441373799],[-79.87579875798758,82.64628295011869],[-79.8469984699847,82.64459437284881],[-79.82179821798218,82.64628295011869],[-79.80019800198002,82.65303725919821],[-79.94059940599405,82.67836591824647],[-79.98379983799838,82.6935631136754],[-79.95139951399514,82.71044888637422],[-79.9009990099901,82.71720319545375],[-79.51219512195122,82.6935631136754],[-79.1269912699127,82.66992303189704],[-79.03699036990369,82.68174307278622],[-78.93978939789397,82.66992303189704],[-78.54738547385473,82.67667734097657],[-78.50418504185042,82.68849738186574],[-78.96858968589686,82.713826040914],[-79.4329943299433,82.73915469996223],[-79.89379893798937,82.76448335901048],[-79.92979929799297,82.77968055443941],[-79.92259922599226,82.79825490440814],[-79.99819998199982,82.80332063621776],[-79.92259922599226,82.82189498618649],[-79.67779677796777,82.82527214072624],[-79.67779677796777,82.8320264498058],[-80.01260012600126,82.84722364523472],[-80.3510035100351,82.86410941793355],[-80.40140401404014,82.8793066133625],[-80.43020430204302,82.89956954060108],[-80.39060390603906,82.90632384968063],[-80.31140311403114,82.9080124269505],[-80.25740257402573,82.91983246783968],[-80.22140221402213,82.91983246783968],[-80.20700207002069,82.92320962237946],[-80.15660156601565,82.94009539507829],[-79.74979749797498,82.95698116777712],[-79.33939339393393,82.97555551774582],[-79.32499324993249,82.97048978593617],[-79.28899288992889,82.95866974504699],[-79.2709927099271,82.95360401323734],[-79.19179191791918,82.95360401323734],[-79.19899198991989,82.95191543596746],[-79.20979209792098,82.94853828142769],[-79.21339213392133,82.94178397234816],[-79.2169921699217,82.93502966326864],[-79.17739177391773,82.93165250872886],[-79.12339123391233,82.92152104510956],[-79.08019080190802,82.90463527241073],[-79.07299072990729,82.8793066133625],[-79.00819008190082,82.87424088155285],[-78.99018990189902,82.87761803609263],[-78.79218792187922,82.94347254961804],[-78.70218702187022,82.94853828142769],[-78.6049860498605,82.94347254961804],[-78.52578525785258,82.92827535418908],[-78.50778507785077,82.92152104510956],[-78.50418504185042,82.9080124269505],[-78.51138511385113,82.8978809633312],[-78.55818558185581,82.86579799520342],[-78.51858518585186,82.84553506796485],[-78.47178471784717,82.85566653158415],[-78.42138421384213,82.87255230428298],[-78.37458374583746,82.87255230428298],[-78.36738367383674,82.85735510885402],[-78.33138331383313,82.85228937704437],[-78.25938259382593,82.8506007997745],[-78.17658176581766,82.8320264498058],[-78.10818108181081,82.8320264498058],[-78.10818108181081,82.83878075888532],[-78.1369813698137,82.83878075888532],[-78.18018180181801,82.84384649069497],[-78.21978219782197,82.85228937704437],[-78.24498244982449,82.86579799520342],[-78.20178201782018,82.87761803609263],[-78.05778057780577,82.8590436861239],[-78.02538025380254,82.8607322633938],[-78.01818018180181,82.86579799520342],[-78.03258032580325,82.87592945882272],[-78.05058050580506,82.88268376790225],[-78.11538115381154,82.89281523152155],[-78.08298082980829,82.90463527241073],[-77.85257852578525,82.92658677691921],[-77.49617496174962,82.89619238606133],[-77.13977139771397,82.86748657247333],[-76.94896948969489,82.80669779075754],[-76.92736927369273,82.78981201805871],[-76.95256952569525,82.77968055443941],[-76.96336963369633,82.77630339989966],[-76.92736927369273,82.76786051355023],[-76.79056790567905,82.75772904993093],[-76.72936729367294,82.74422043177188],[-76.55656556565565,82.6749887637067],[-76.43416434164341,82.66485730008739],[-76.39456394563945,82.65641441373799],[-76.38016380163802,82.64966010465844],[-76.36216362163621,82.64628295011869],[-76.32976329763298,82.64628295011869],[-76.27936279362794,82.63446290922951],[-76.16776167761677,82.63277433195961],[-75.96255962559626,82.60069136383186],[-75.89415894158941,82.59900278656198],[-75.91575915759157,82.58718274567278],[-75.94455944559445,82.57873985932338],[-75.99495994959949,82.57029697297398],[-76.08136081360813,82.54159115938594],[-76.14976149761497,82.53145969576667],[-76.19296192961929,82.51626250033772],[-76.23256232562325,82.49431099582924],[-76.2649626496265,82.46898233678101],[-76.25056250562506,82.46898233678101],[-76.2181621816218,82.45209656408218],[-76.1749617496175,82.45547371862193],[-75.91935919359193,82.52470538668712],[-75.66735667356673,82.59393705475233],[-75.4621546215462,82.60069136383186],[-75.40095400954009,82.61926571380056],[-75.44055440554405,82.63108575468974],[-75.77175771757717,82.65979156827774],[-76.10656106561065,82.68849738186574],[-76.09936099360993,82.69187453640552],[-76.09576095760957,82.69525169094527],[-76.0921609216092,82.70031742275492],[-76.14616146161461,82.70031742275492],[-76.2109621096211,82.70876030910435],[-76.27216272162721,82.72564608180318],[-76.31176311763117,82.75604047266106],[-76.2289622896229,82.77461482262976],[-76.05616056160561,82.76954909082014],[-75.9769597695977,82.78981201805871],[-76.37296372963729,82.78981201805871],[-76.53856538565385,82.82358356345637],[-76.66816668166682,82.8793066133625],[-77.02817028170281,82.93502966326864],[-77.38817388173881,82.98906413590487],[-77.36297362973629,83.00426133133382],[-77.33417334173342,83.01270421768322],[-77.13257132571326,83.03634429946158],[-77.14337143371434,83.02958999038205],[-77.15417154171541,83.0245242585724],[-77.16497164971649,83.02283568130252],[-77.17577175771757,83.02283568130252],[-77.1289712897129,83.01101564041335],[-76.68256682566825,83.02283568130252],[-76.23616236162361,83.0346557221917],[-76.13536135361353,83.0532300721604],[-75.78255782557825,83.04647576308088],[-75.42975429754297,83.03972145400135],[-75.38655386553866,83.03127856765195],[-75.30375303753037,83.03127856765195],[-75.29295292952929,83.02958999038205],[-75.28935289352893,83.02283568130252],[-75.18855188551885,83.02283568130252],[-75.15255152551525,83.03127856765195],[-75.15975159751598,83.03127856765195],[-75.05535055350553,83.04141003127123],[-74.62694626946269,83.02283568130252],[-74.19854198541985,83.00257275406395],[-74.05454054540544,82.96373547685664],[-74.0149401494015,82.96204689958674],[-74.02214022140221,82.95022685869756],[-74.0149401494015,82.94178397234816],[-74.0041400414004,82.94009539507829],[-73.99693996939969,82.93502966326864],[-73.97533975339753,82.93502966326864],[-73.95733957339573,82.93165250872886],[-73.90333903339032,82.91307815876016],[-73.8889388893889,82.90632384968063],[-73.86373863738638,82.88606092244203],[-73.82773827738276,82.86579799520342],[-73.41733417334173,82.81007494529732],[-73.00333003330033,82.75604047266106],[-72.5929259292593,82.70031742275492],[-72.60372603726037,82.70707173183447],[-72.61092610926109,82.70876030910435],[-72.61092610926109,82.71551461818387],[-72.50292502925029,82.7222689272634],[-72.50292502925029,82.72902323634293],[-72.80892808928088,82.7611062044707],[-73.11493114931149,82.79150059532859],[-73.32733327333273,82.84384649069497],[-73.3741337413374,82.84722364523472],[-73.35973359733597,82.8590436861239],[-73.4209342093421,82.89112665425168],[-73.45333453334533,82.90294669514086],[-73.57213572135721,82.91138958149025],[-73.65493654936549,82.92658677691921],[-73.61893618936189,82.94684970415781],[-73.57213572135721,82.95866974504699],[-73.43533435334353,82.97217836320604],[-73.24813248132482,83.02114710403265],[-72.93132931329313,83.044787185811],[-72.88452884528844,83.05829580397005],[-73.01053010530104,83.05829580397005],[-72.9709297092971,83.07349299939901],[-72.78732787327873,83.08193588574841],[-72.70092700927009,83.09713308117736],[-72.5929259292593,83.10219881298701],[-72.57132571325712,83.09882165844724],[-72.52092520925208,83.08024730847853],[-72.50292502925029,83.07855873120866],[-72.27252272522725,83.10895312206654],[-71.95211952119521,83.10557596752679],[-71.6281162811628,83.10388739025689],[-71.58491584915849,83.09206734936771],[-71.6281162811628,83.08362446301831],[-71.76491764917648,83.04309860854113],[-71.79731797317973,83.01945852676278],[-71.76491764917648,83.00088417679405],[-71.57051570515705,82.96204689958674],[-71.57051570515705,82.95866974504699],[-71.57411574115741,82.95529259050721],[-71.57771577715776,82.95191543596746],[-71.58491584915849,82.94853828142769],[-71.21051210512104,82.9164553132999],[-70.8361083610836,82.88606092244203],[-70.86850868508685,82.90463527241073],[-71.30771307713077,82.98906413590487],[-71.45531455314553,82.99919559952417],[-71.5021150211502,83.00932706314347],[-71.48051480514805,83.02283568130252],[-71.26811268112681,83.05998438123996],[-71.11331113311132,83.07011584485923],[-71.09171091710917,83.07855873120866],[-71.10251102511025,83.08024730847853],[-71.11331113311132,83.08531304028818],[-71.12051120511205,83.09037877209784],[-71.1241112411124,83.09882165844724],[-71.01251012510124,83.10219881298701],[-70.94410944109441,83.08531304028818],[-70.90810908109081,83.08193588574841],[-70.8721087210872,83.08362446301831],[-70.8361083610836,83.09206734936771],[-70.85050850508505,83.09544450390749],[-70.87930879308793,83.10051023571714],[-70.89010890108901,83.09882165844724],[-70.81810818108181,83.11064169933644],[-70.44010440104401,83.11233027660631],[-70.06570065700657,83.11401885387619],[-69.68769687696877,83.11570743114606],[-69.65889658896589,83.10557596752679],[-69.67689676896768,83.10557596752679],[-69.69489694896949,83.10219881298701],[-69.73449734497345,83.09206734936771],[-69.71649716497164,83.08531304028818],[-69.68409684096841,83.08193588574841],[-69.6660966609666,83.07855873120866],[-69.69129691296912,83.07011584485923],[-69.7560975609756,83.0633615357797],[-69.77409774097741,83.05154149489053],[-69.69849698496985,83.05154149489053],[-69.7020970209702,83.04816434035078],[-69.67689676896768,83.044787185811],[-69.48249482494825,83.04647576308088],[-69.450094500945,83.03634429946158],[-69.5040950409504,83.03296714492183],[-69.60489604896048,83.0059499086037],[-69.65889658896589,83.00257275406395],[-69.61569615696156,82.99075271317474],[-69.2160921609216,83.01270421768322],[-69.03969039690396,83.04647576308088],[-69.0000900009,83.04309860854113],[-68.97488974889748,83.0262128358423],[-68.98568985689856,82.9958184449844],[-68.95328953289533,82.98230982682534],[-68.67968679686797,82.98230982682534],[-68.62928629286293,82.98906413590487],[-68.63648636486364,82.98906413590487],[-68.5320853208532,83.00932706314347],[-68.1720817208172,82.99919559952417],[-68.14328143281432,82.98906413590487],[-68.16848168481684,82.97048978593617],[-68.19008190081901,82.94853828142769],[-68.13248132481324,82.93334108599873],[-68.06768067680676,82.94009539507829],[-67.99927999279993,82.95360401323734],[-67.5960759607596,82.97048978593617],[-67.17847178471784,82.93334108599873],[-67.11367113671136,82.94853828142769],[-67.11727117271172,82.96035832231686],[-67.09927099270992,82.96373547685664],[-66.93726937269372,82.95360401323734],[-66.96966969669697,82.94009539507829],[-66.98046980469805,82.93502966326864],[-66.89406894068941,82.92489819964933],[-66.85086850868508,82.92658677691921],[-66.7860678606786,82.95866974504699],[-66.73926739267392,82.95529259050721],[-66.65646656466565,82.94178397234816],[-66.40446404464045,82.94347254961804],[-66.36126361263612,82.93334108599873],[-66.32166321663216,82.93671824053851],[-66.30006300063,82.93502966326864],[-66.3180631806318,82.92658677691921],[-66.390063900639,82.92152104510956],[-66.37926379263793,82.91476673603003],[-66.36486364863649,82.91138958149025],[-66.33966339663397,82.9080124269505],[-66.36126361263612,82.89450380879146],[-66.80766807668077,82.8320264498058],[-66.80046800468004,82.82527214072624],[-66.84726847268472,82.81176352256719],[-67.14967149671496,82.79318917259849],[-67.24687246872469,82.76954909082014],[-67.4880748807488,82.75941762720083],[-67.53847538475384,82.7509747408514],[-67.59967599675997,82.75266331812131],[-67.67887678876788,82.73915469996223],[-67.78687786877869,82.73746612269235],[-67.86967869678696,82.72058034999353],[-68.14688146881468,82.7036945772947],[-68.42768427684277,82.685120227326],[-68.48528485284852,82.66992303189704],[-68.63648636486364,82.65303725919821],[-68.67248672486724,82.63952864103916],[-68.61848618486185,82.63108575468974],[-68.22608226082261,82.63952864103916],[-67.83367833678336,82.64966010465844],[-67.44127441274412,82.65810299100787],[-67.26127261272612,82.6935631136754],[-67.14607146071461,82.69862884548505],[-67.10287102871028,82.71044888637422],[-66.86166861668616,82.7239575045333],[-66.66726667266673,82.7121374636441],[-66.63486634866348,82.7222689272634],[-66.64566645666456,82.72733465907305],[-66.65646656466565,82.72902323634293],[-66.66726667266673,82.73071181361283],[-66.6780667806678,82.72902323634293],[-66.660066600666,82.74759758631166],[-66.62766627666277,82.75772904993093],[-66.23886238862389,82.79994348167801],[-65.850058500585,82.84215791342507],[-65.49365493654936,82.84384649069497],[-65.45765457654576,82.8320264498058],[-65.4720547205472,82.82189498618649],[-65.5260552605526,82.80332063621776],[-65.49365493654936,82.78474628624906],[-65.44325443254432,82.77799197716953],[-65.15525155251552,82.76954909082014],[-65.2020520205202,82.78305770897919],[-65.30645306453064,82.78812344078884],[-65.35325353253532,82.80332063621776],[-65.32085320853209,82.80838636802741],[-65.19485194851949,82.84722364523472],[-65.1660516605166,82.8506007997745],[-65.10125101251012,82.85228937704437],[-65.14445144451444,82.86748657247333],[-65.2560525605256,82.86410941793355],[-65.30645306453064,82.87255230428298],[-65.27765277652776,82.8793066133625],[-65.2020520205202,82.88099519063238],[-65.13365133651337,82.89956954060108],[-64.6980469804698,82.90970100422038],[-64.65484654846549,82.89956954060108],[-64.680046800468,82.88606092244203],[-64.7160471604716,82.8793066133625],[-64.90324903249032,82.88268376790225],[-64.93564935649356,82.87255230428298],[-64.88524885248852,82.8607322633938],[-64.70884708847088,82.8590436861239],[-64.71964719647195,82.8506007997745],[-64.7520475204752,82.8320264498058],[-64.70884708847088,82.81514067710697],[-64.57564575645756,82.79487774986836],[-64.48924489244892,82.76786051355023],[-64.44244442444425,82.7611062044707],[-64.40284402844028,82.76954909082014],[-64.40644406444063,82.77292624535988],[-64.41724417244173,82.78136913170931],[-64.42084420844208,82.78305770897919],[-64.3920439204392,82.79150059532859],[-64.32724327243272,82.79150059532859],[-64.13644136441364,82.83709218161542],[-63.790837908379075,82.8320264498058],[-63.448834488344886,82.82696071799614],[-63.409234092340924,82.81851783164672],[-63.38043380433804,82.80332063621776],[-63.39123391233912,82.79656632713824],[-63.39123391233912,82.78812344078884],[-63.387633876338754,82.77799197716953],[-63.38043380433804,82.76954909082014],[-63.434434344343444,82.7509747408514],[-63.488434884348834,82.74084327723213],[-63.85203852038519,82.7222689272634],[-63.65043650436503,82.71720319545375],[-63.578435784357836,82.70200600002482],[-63.538835388353874,82.70031742275492],[-63.54243542435424,82.69694026821517],[-63.553235532355316,82.685120227326],[-63.560435604356044,82.68005449551634],[-63.538835388353874,82.6749887637067],[-63.484834848348484,82.68005449551634],[-63.463234632346314,82.67836591824647],[-63.43083430834308,82.66992303189704],[-63.322833228332286,82.66148014554764],[-63.22923229232292,82.64628295011869],[-63.26163261632615,82.62939717741986],[-63.301233012330115,82.62433144561021],[-63.38043380433804,82.62602002288008],[-63.36963369633696,82.61251140472103],[-62.96282962829628,82.59393705475233],[-62.92682926829268,82.57029697297398],[-62.95922959229591,82.57029697297398],[-63.00243002430024,82.56354266389442],[-63.03843038430384,82.55172262300525],[-63.06723067230672,82.53652542757632],[-63.06723067230672,82.52977111849677],[-63.06363063630636,82.52301680941724],[-63.06003060030599,82.51626250033772],[-63.08163081630816,82.49768815036902],[-63.08883088830888,82.48924526401959],[-63.099630996309955,82.48249095494006],[-63.121231212312125,82.48249095494006],[-63.121231212312125,82.47573664586054],[-63.09243092430924,82.47573664586054],[-63.09243092430924,82.46898233678101],[-63.308433084330844,82.46053945043158],[-63.348033480334806,82.45547371862193],[-63.373233732337326,82.440276523193],[-63.03483034830347,82.45716229589183],[-62.9880298802988,82.46898233678101],[-62.90162901629016,82.51119676852807],[-62.869228692286924,82.51626250033772],[-62.84042840428404,82.51795107760759],[-62.83322833228331,82.51626250033772],[-62.8260282602826,82.51288534579794],[-62.8260282602826,82.50106530490876],[-62.818828188281884,82.49599957309911],[-62.797227972279714,82.49093384128949],[-62.72882728827288,82.48924526401959],[-62.736027360273596,82.49768815036902],[-62.743227432274324,82.50275388217867],[-62.7540275402754,82.50781961398832],[-62.76482764827648,82.50950819125819],[-62.73962739627396,82.52301680941724],[-62.455224552245525,82.52639396395702],[-62.17442174421744,82.52977111849677],[-62.17442174421744,82.52301680941724],[-62.30042300423004,82.52132823214737],[-62.332823328233275,82.50950819125819],[-62.32562325623256,82.50275388217867],[-62.33642336423364,82.49768815036902],[-62.340023400234,82.49431099582924],[-62.35082350823508,82.48249095494006],[-62.257222572225714,82.48924526401959],[-62.23562235622356,82.50275388217867],[-62.24282242822427,82.50444245944854],[-62.257222572225714,82.50950819125819],[-62.09882098820988,82.50950819125819],[-62.102421024210244,82.50613103671841],[-62.106021060210594,82.49599957309911],[-61.843218432184315,82.49262241855936],[-61.58041580415804,82.48924526401959],[-61.56961569615696,82.48586810947984],[-61.34281342813428,82.45040798681228],[-61.13761137611375,82.382864896017],[-61.10521105211052,82.36091339150852],[-61.08721087210871,82.33051900065061]]],[[[24.586445864458653,38.1590261977891],[24.579245792457925,38.11005745696251],[24.579245792457925,38.084728797914266],[24.59364593645938,38.0627772934058],[24.586445864458653,38.04758009797685],[24.57564575645756,38.003677088959904],[24.56844568445686,37.98847989353095],[24.55044550445504,37.97834842991166],[24.53244532445325,37.96990554356225],[24.510845108451093,37.96315123448271],[24.489244892448937,37.959774079942946],[24.478444784447845,37.96315123448271],[24.471244712447145,37.96821696629236],[24.471244712447145,37.98003700718154],[24.446044460444625,38.01043139803943],[24.44244442444426,38.01211997530932],[24.428044280442805,38.02056286165873],[24.402844028440285,38.01211997530932],[24.384843848438493,37.996922779880364],[24.402844028440285,37.98847989353095],[24.402844028440285,37.98003700718154],[24.388443884438857,37.96990554356225],[24.370443704437065,37.97159412083212],[24.35604356043561,37.98003700718154],[24.338043380433817,37.996922779880364],[24.334443344433453,38.003677088959904],[24.327243272432725,38.01549712984908],[24.320043200432025,38.023940016198495],[24.312843128431297,38.029005748008146],[24.312843128431297,38.03576005708767],[24.327243272432725,38.0425143661672],[24.31644316443166,38.064465870675676],[24.30564305643057,38.071220179755215],[24.29124291242914,38.06953160248533],[24.287642876428777,38.086417375184155],[24.269642696426985,38.09486026153357],[24.2480424804248,38.09654883880344],[24.23004230042301,38.08979452972392],[24.219242192421945,38.09654883880344],[24.212042120421216,38.09654883880344],[24.20484204842049,38.08979452972392],[24.20484204842049,38.09486026153357],[24.20484204842049,38.09654883880344],[24.208442084420852,38.09654883880344],[24.212042120421216,38.09823741607333],[24.212042120421216,38.12525465239146],[24.201242012420124,38.1303203842011],[24.186841868418696,38.126943229661336],[24.183241832418332,38.13538611601075],[24.186841868418696,38.142140425090275],[24.20484204842049,38.15733762051923],[24.212042120421216,38.16578050686864],[24.208442084420852,38.17928912502771],[24.194041940419424,38.19279774318676],[24.186841868418696,38.218126402235],[24.17244172441724,38.226569288584415],[24.158041580415812,38.22994644312418],[24.143641436414384,38.226569288584415],[24.14724147241472,38.21306067042535],[24.125641256412564,38.218126402235],[24.132841328413292,38.23501217493383],[24.14724147241472,38.25696367944231],[24.161641616416176,38.267095143061596],[24.154441544415448,38.28060376122066],[24.14724147241472,38.28060376122066],[24.136441364413656,38.273849452141135],[24.129241292412928,38.267095143061596],[24.125641256412564,38.26540656579172],[24.125641256412564,38.26034083398207],[24.125641256412564,38.25527510217242],[24.118441184411864,38.253586524902545],[24.107641076410772,38.25696367944231],[24.107641076410772,38.26034083398207],[24.111241112411136,38.26540656579172],[24.1148411484115,38.267095143061596],[24.1148411484115,38.27553802941101],[24.100441004410044,38.27553802941101],[24.1220412204122,38.309309574808665],[24.100441004410044,38.31944103842797],[24.078840788407888,38.32619534750749],[24.053640536405368,38.329572502047256],[24.024840248402484,38.331261079317144],[24.050040500405004,38.336326811126796],[24.060840608406096,38.34139254293645],[24.068040680406824,38.351524006555735],[24.060840608406096,38.35996689290515],[24.057240572405732,38.36840977925456],[24.057240572405732,38.37516408833409],[24.060840608406096,38.37685266560398],[24.050040500405004,38.393738438302805],[24.042840428404304,38.40218132465222],[24.03924039240394,38.39542701557269],[23.98163981639817,38.398804170112456],[23.91323913239134,38.392049861032916],[23.891638916389184,38.393738438302805],[23.859238592385935,38.40386990192211],[23.84483844838448,38.40555847919198],[23.823238232382323,38.40386990192211],[23.79443794437944,38.398804170112456],[23.78003780037801,38.398804170112456],[23.71163711637118,38.41231278827151],[23.69363693636936,38.41062421100163],[23.664836648366503,38.40386990192211],[23.650436504365047,38.40555847919198],[23.639636396363983,38.415689942811284],[23.614436144361463,38.461281529098116],[23.6108361083611,38.456215797288465],[23.607236072360735,38.454527220018576],[23.60363603636037,38.4528386427487],[23.59283592835928,38.4528386427487],[23.60363603636037,38.46803583817764],[23.621636216362162,38.48492161087647],[23.63603636036362,38.50011880630541],[23.62883628836289,38.51531600173436],[23.62883628836289,38.52207031081389],[23.63603636036362,38.52207031081389],[23.63603636036362,38.52882461989341],[23.614436144361463,38.55753043348143],[23.600036000360006,38.57103905164048],[23.582035820358215,38.57779336072002],[23.538835388353903,38.58285909252966],[23.517235172351718,38.58792482433931],[23.506435064350654,38.59805628795861],[23.50283502835029,38.60481059703814],[23.499234992349926,38.623384947006855],[23.499234992349926,38.63182783335627],[23.474034740347406,38.64533645151532],[23.470434704347042,38.6487136060551],[23.466834668346678,38.65209076059486],[23.45963459634598,38.653779337864734],[23.45243452434525,38.658845069674385],[23.448834488344886,38.66897653329369],[23.445234452344522,38.6774194196431],[23.438034380343822,38.68248515145275],[23.405634056340574,38.69768234688169],[23.380433804338054,38.70781381050098],[23.35163351633517,38.73145389227935],[23.34443344433444,38.73483104681911],[23.337233372333742,38.73820820135887],[23.32643326433265,38.75847112859746],[23.322833228332286,38.761848283137226],[23.30123301233013,38.77197974675653],[23.204032040320413,38.82939137393254],[23.1680316803168,38.84458856936149],[23.14283142831428,38.85134287844102],[23.132031320313217,38.85134287844102],[23.114031140311397,38.85134287844102],[23.08523085230854,38.846277146631365],[23.070830708307085,38.846277146631365],[23.056430564305657,38.85472003298078],[23.0348303483035,38.87498296021937],[23.027630276302773,38.87667153748926],[23.01683016830168,38.87836011475913],[22.99882998829989,38.88004869202902],[22.98442984429846,38.88680300110855],[22.970029700297005,38.888491578378435],[22.955629556295577,38.88511442383867],[22.955629556295577,38.87836011475913],[22.970029700297005,38.87836011475913],[22.98442984429846,38.873294382949496],[22.99162991629916,38.86485149660008],[22.99162991629916,38.85134287844102],[22.980829808298097,38.84458856936149],[22.96642966429664,38.841211414821714],[22.854828548285496,38.8327685284723],[22.83322833228334,38.82263706485301],[22.83322833228334,38.83445710574219],[22.83322833228334,38.84458856936149],[22.836828368283676,38.85472003298078],[22.844028440284404,38.85809718752054],[22.851228512285132,38.861474342060305],[22.876428764287652,38.87498296021937],[22.88362883628838,38.87836011475913],[22.9088290882909,38.88173726929891],[22.952029520295213,38.9020001965375],[22.98442984429846,38.90706592834714],[23.013230132301317,38.91888596923633],[23.0348303483035,38.92564027831585],[23.038430384303837,38.929017432855616],[23.0420304203042,38.94252605101468],[23.045630456304565,38.94759178282433],[23.056430564305657,38.94928036009421],[23.078030780307813,38.950968937364095],[23.08523085230854,38.95434609190386],[23.09243092430924,38.96278897825327],[23.096030960309605,38.971231864602686],[23.096030960309605,38.98136332822199],[23.096030960309605,38.988117637301514],[23.11043110431106,38.991494791841276],[23.128431284312853,39.00500341000034],[23.139231392313917,39.008380564540104],[23.20043200432005,39.008380564540104],[23.222032220322205,39.015134873619644],[23.272432724327246,39.038774955398],[23.297632976329766,39.04215210993776],[23.308433084330858,39.038774955398],[23.322833228332286,39.02526633723893],[23.330033300333014,39.02188918269917],[23.34443344433444,39.02020060542928],[23.358833588335898,39.01682345088952],[23.373233732337326,39.01006914180999],[23.380433804338054,39.00162625546058],[23.373233732337326,38.98305190549186],[23.384033840338418,38.96785471006292],[23.405634056340574,38.95772324644362],[23.42723427234273,38.95434609190386],[23.42723427234273,38.94421462828457],[23.441634416344158,38.89862304199774],[23.448834488344886,38.88511442383867],[23.45243452434525,38.87498296021937],[23.463234632346342,38.85640861025067],[23.481234812348134,38.83783426028195],[23.524435244352446,38.82263706485301],[23.56763567635676,38.79393125126501],[23.59283592835928,38.788865519455356],[23.59283592835928,38.78211121037583],[23.59283592835928,38.77366832402642],[23.59283592835928,38.77029116948664],[23.600036000360006,38.77029116948664],[23.607236072360735,38.77535690129629],[23.621636216362162,38.765225437677],[23.646836468364683,38.761848283137226],[23.66123661236614,38.7550939740577],[23.672036720367203,38.76015970586735],[23.682836828368295,38.7550939740577],[23.70443704437045,38.765225437677],[23.722437224372243,38.761848283137226],[23.7368373683737,38.75002824224805],[23.7440374403744,38.73145389227935],[23.75483754837549,38.71963385139017],[23.772837728377283,38.70781381050098],[23.81243812438126,38.69430519234193],[23.859238592385935,38.68248515145275],[23.90603906039061,38.679107996912975],[23.927639276392767,38.67573084237321],[23.949239492394923,38.66897653329369],[23.967239672396744,38.67066511056356],[23.985239852398536,38.685862305992515],[24.00684006840069,38.6774194196431],[24.028440284402848,38.6774194196431],[24.050040500405004,38.680796574182864],[24.07164071640716,38.679107996912975],[24.136441364413656,38.66222222421415],[24.154441544415448,38.65209076059486],[24.143641436414384,38.65040218332497],[24.136441364413656,38.643647874245445],[24.125641256412564,38.63520498789603],[24.1220412204122,38.62507352427673],[24.1220412204122,38.6081877515779],[24.125641256412564,38.59805628795861],[24.21564215642158,38.538956083512716],[24.23004230042301,38.52207031081389],[24.20484204842049,38.50687311538495],[24.186841868418696,38.47479014725717],[24.183241832418332,38.43933002458964],[24.20484204842049,38.419067097351046],[24.20484204842049,38.41231278827151],[24.186841868418696,38.40724705646187],[24.186841868418696,38.398804170112456],[24.212042120421216,38.37685266560398],[24.212042120421216,38.3650326247148],[24.212042120421216,38.34983542928586],[24.21564215642158,38.336326811126796],[24.237242372423736,38.31268672934843],[24.2408424084241,38.30255526572914],[24.244442444424465,38.29748953391949],[24.251642516425164,38.2958009566496],[24.251642516425164,38.29242380210984],[24.251642516425164,38.273849452141135],[24.251642516425164,38.26540656579172],[24.258842588425892,38.25865225671218],[24.2480424804248,38.24514363855313],[24.244442444424465,38.241766484013354],[24.251642516425164,38.2282578658543],[24.26604266042662,38.216437824965126],[24.29124291242914,38.1995520522663],[24.327243272432725,38.18604343410723],[24.33084330843309,38.17928912502771],[24.334443344433453,38.170846238678294],[24.338043380433817,38.16240335232888],[24.345243452434545,38.1590261977891],[24.377643776437765,38.164091929598754],[24.39204392043922,38.164091929598754],[24.420844208442105,38.14720615689993],[24.460444604446053,38.143829002360164],[24.478444784447845,38.13876327055051],[24.496444964449665,38.14551757963005],[24.586445864458653,38.1590261977891]]],[[[26.613266132661323,39.048906419017285],[26.613266132661323,39.04046353266787],[26.609666096660987,39.023577759969044],[26.598865988659895,39.01175771907987],[26.566465664656647,39.02188918269917],[26.55206552065522,39.015134873619644],[26.537665376653763,39.01851202815941],[26.530465304653063,39.028643491778695],[26.51966519665197,39.03708637812811],[26.5268652686527,39.04215210993776],[26.516065160651607,39.04721784174741],[26.516065160651607,39.05228357355706],[26.51966519665197,39.0573493053667],[26.51966519665197,39.06241503717635],[26.51966519665197,39.06579219171611],[26.5268652686527,39.07761223260529],[26.5268652686527,39.08267796441494],[26.516065160651607,39.091120850764355],[26.512465124651243,39.09449800530412],[26.505265052650543,39.10969520073307],[26.490864908649087,39.113072355272834],[26.454864548645503,39.111383778002946],[26.436864368643683,39.10294089165353],[26.45126451264514,39.086055118954704],[26.490864908649087,39.06241503717635],[26.530465304653063,39.02188918269917],[26.548465484654855,39.008380564540104],[26.548465484654855,39.00162625546058],[26.54486544865449,38.99656052365093],[26.548465484654855,38.988117637301514],[26.51966519665197,38.9796747509521],[26.490864908649087,38.972920441872574],[26.422464224642255,38.96785471006292],[26.408064080640827,38.9695432873328],[26.37566375663758,38.9796747509521],[26.339663396633966,38.98305190549186],[26.32526325263254,38.988117637301514],[26.30006300063002,39.00162625546058],[26.2748627486275,39.01006914180999],[26.21726217262173,39.02020060542928],[26.16686166861669,39.02188918269917],[26.156061560615626,39.02526633723893],[26.145261452614534,39.03202064631846],[26.11646116461165,39.067480768986],[26.105661056610586,39.07423507806553],[26.087660876608766,39.07761223260529],[26.087660876608766,39.08267796441494],[26.094860948609494,39.086055118954704],[26.102061020610222,39.091120850764355],[26.10926109261092,39.09280942803424],[26.112861128611286,39.09280942803424],[26.11646116461165,39.091120850764355],[26.123661236612378,39.091120850764355],[26.159661596615962,39.097875159843895],[26.163261632616326,39.10125231438366],[26.181261812618146,39.12151524162225],[26.19206192061921,39.12826955070177],[26.202862028620302,39.12826955070177],[26.213662136621366,39.12995812797166],[26.22446224462246,39.131646705241536],[26.253262532625342,39.15190963248014],[26.282062820628227,39.17048398244884],[26.282062820628227,39.17217255971873],[26.29286292862929,39.17723829152838],[26.289262892628926,39.18736975514767],[26.278462784627862,39.195812641497085],[26.271262712627134,39.200878373306736],[26.238862388623886,39.20763268238626],[26.22446224462246,39.20763268238626],[26.202862028620302,39.20594410511639],[26.188461884618846,39.20256695057661],[26.174061740617418,39.195812641497085],[26.159661596615962,39.18399260060791],[26.145261452614534,39.155286787019904],[26.14166141661417,39.155286787019904],[26.098460984609858,39.10631804619331],[26.0840608406084,39.09449800530412],[26.062460624606246,39.091120850764355],[26.044460444604454,39.09280942803424],[25.9580595805958,39.118138087082485],[25.943659436594373,39.12489239616201],[25.929259292592945,39.133335282511425],[25.918459184591853,39.13671243705119],[25.90765907659076,39.138401014321076],[25.88965889658897,39.1451553234006],[25.853658536585385,39.17217255971873],[25.835658356583565,39.17892686879826],[25.835658356583565,39.18736975514767],[25.846458464584657,39.190746909687434],[25.85005850058502,39.19918979603685],[25.85005850058502,39.211009836926024],[25.853658536585385,39.22114130054533],[25.85005850058502,39.222829877815215],[25.85005850058502,39.22451845508509],[25.846458464584657,39.22620703235498],[25.842858428584293,39.22789560962485],[25.85005850058502,39.2329613414345],[25.853658536585385,39.236338495974266],[25.853658536585385,39.243092805053806],[25.853658536585385,39.25153569140322],[25.85725857258572,39.259978577752634],[25.868058680586813,39.263355732292396],[25.87525875258754,39.26673288683216],[25.88245882458824,39.26842146410205],[25.911259112591125,39.29037296861051],[25.918459184591853,39.29712727769005],[25.92565925659258,39.29712727769005],[25.936459364593645,39.27686435045146],[25.968859688596893,39.278552927721336],[26.004860048600506,39.28699581407075],[26.03366033660336,39.2819300822611],[26.037260372603726,39.28868439134064],[26.04086040860409,39.2920615458804],[26.044460444604454,39.29712727769005],[26.048060480604818,39.30388158676958],[26.051660516605182,39.29375012315029],[26.055260552605546,39.28868439134064],[26.05886058860588,39.28868439134064],[26.073260732607338,39.30388158676958],[26.094860948609494,39.3106358958491],[26.138061380613806,39.315701627658754],[26.163261632616326,39.32414451400817],[26.174061740617418,39.335964554897345],[26.170461704617054,39.35285032759617],[26.163261632616326,39.378178986644414],[26.34326343263433,39.383244718454065],[26.361263612636122,39.378178986644414],[26.354063540635423,39.356227482135935],[26.372063720637215,39.34609601851665],[26.4008640086401,39.341030286706996],[26.41886418864189,39.33089882308771],[26.411664116641163,39.320767359468405],[26.379263792637943,39.2819300822611],[26.382863828638307,39.27686435045146],[26.422464224642255,39.24478138232368],[26.458464584645867,39.23464991870439],[26.465664656646567,39.22958418689474],[26.46926469264693,39.22451845508509],[26.505265052650543,39.18568117787778],[26.51966519665197,39.175549714258494],[26.541265412654127,39.16541825063919],[26.5268652686527,39.15866394155967],[26.530465304653063,39.15022105521025],[26.537665376653763,39.14346674613073],[26.548465484654855,39.13502385978131],[26.548465484654855,39.12489239616201],[26.55206552065522,39.11982666435236],[26.555665556655583,39.1164495098126],[26.566465664656647,39.118138087082485],[26.566465664656647,39.097875159843895],[26.580865808658103,39.075923655335416],[26.598865988659895,39.0573493053667],[26.613266132661323,39.048906419017285]]],[[[22.844028440284404,60.242239733315046],[22.86562865628656,60.2658798150934],[22.89082890828908,60.286142742332004],[22.919629196291964,60.29627420595128],[22.955629556295577,60.29289705141153],[22.94842948429485,60.27094554690305],[22.930429304293057,60.25743692874397],[22.905229052290537,60.2473054651247],[22.88362883628838,60.23548542423552],[22.876428764287652,60.22535396061622],[22.87282872828729,60.215222496996915],[22.86562865628656,60.206779610647516],[22.84042840428404,60.201713878837865],[22.83322833228334,60.193270992488436],[22.83322833228334,60.18145095159926],[22.84042840428404,60.16963091071008],[22.83322833228334,60.16963091071008],[22.829628296282976,60.16794233344021],[22.826028260282612,60.16456517890043],[22.818828188281884,60.16287660163056],[22.826028260282612,60.16118802436068],[22.84042840428404,60.15612229255103],[22.836828368283676,60.14599082893173],[22.83322833228334,60.14261367439195],[22.84762847628477,60.1105307062642],[22.811628116281156,60.081824892676195],[22.728827288272896,60.04636477000864],[22.728827288272896,60.03961046092911],[22.73962739627396,60.03961046092911],[22.746827468274688,60.03792188365924],[22.75762757627578,60.032856151849586],[22.746827468274688,60.02610184277006],[22.736027360273596,60.00921607007123],[22.728827288272896,60.00415033826158],[22.703627036270376,60.00752749280136],[22.696426964269648,60.005838915531456],[22.68202682026822,59.997396029182056],[22.667626676266764,60.01597037915076],[22.653226532265336,60.032856151849586],[22.646026460264608,60.022724688230284],[22.61362613626136,60.00246176099171],[22.610026100261024,60.000773183721805],[22.60642606426066,59.99570745191215],[22.60642606426066,59.98388741102298],[22.59922599225993,59.98388741102298],[22.602826028260296,59.99908460645193],[22.59922599225993,60.00752749280136],[22.592025920259204,60.01090464734111],[22.577625776257776,60.00415033826158],[22.57402574025741,60.01765895642063],[22.58122581225814,60.024413265500186],[22.58842588425884,60.032856151849586],[22.592025920259204,60.04636477000864],[22.58122581225814,60.03792188365924],[22.545225452254527,60.02103611096041],[22.5308253082531,60.00752749280136],[22.48762487624876,60.00246176099171],[22.469624696246967,59.997396029182056],[22.469624696246967,60.024413265500186],[22.47322473224733,60.03623330638936],[22.476824768247695,60.04636477000864],[22.47322473224733,60.058184810897814],[22.47322473224733,60.07169342905689],[22.476824768247695,60.081824892676195],[22.47322473224733,60.090267779025595],[22.46242462424624,60.09702208810512],[22.433624336243383,60.10546497445455],[22.42282422824229,60.11559643807385],[22.444424444244447,60.1189735926136],[22.48042480424806,60.13248221077268],[22.502025020250215,60.13585936531243],[22.59922599225993,60.13585936531243],[22.59922599225993,60.14261367439195],[22.415624156241563,60.14936798347148],[22.426424264242655,60.17131948797996],[22.433624336243383,60.20002530156796],[22.44802448024481,60.22197680607644],[22.476824768247695,60.22535396061622],[22.45522455224554,60.20002530156796],[22.451624516245175,60.188205260678785],[22.466024660246603,60.183139528869134],[22.566825668256683,60.193270992488436],[22.602826028260296,60.206779610647516],[22.620826208262088,60.21184534245714],[22.81522815228152,60.22704253788609],[22.844028440284404,60.242239733315046]]],[[[-52.90432904329043,69.34535979525268],[-52.9331293312933,69.35042552706233],[-53.20673206732067,69.31496540439477],[-53.28593285932858,69.28794816807667],[-53.51273512735126,69.25248804540911],[-53.552335523355225,69.23560227271028],[-53.573935739357395,69.23560227271028],[-53.58833588335882,69.23897942725006],[-53.624336243362436,69.25586519994889],[-53.63873638736386,69.26093093175854],[-53.728737287372866,69.25586519994889],[-53.84393843938439,69.26430808629829],[-53.86913869138691,69.27950528172724],[-53.887138871388714,69.30989967258512],[-53.926739267392676,69.32171971347432],[-54.14994149941499,69.33860548617315],[-54.218342183421825,69.36393414522138],[-54.2291422914229,69.3706884543009],[-54.23274232742327,69.38250849519008],[-54.239942399423995,69.38419707245998],[-54.265142651426515,69.39601711334916],[-54.27234272342723,69.40108284515881],[-54.265142651426515,69.41796861785761],[-54.25434254342542,69.42641150420704],[-54.218342183421825,69.43485439055644],[-54.22554225542255,69.43823154509622],[-54.24714247142471,69.44836300871552],[-54.22554225542255,69.45342874052517],[-54.20394203942038,69.45174016325527],[-54.164341643416435,69.44160869963599],[-54.142741427414265,69.43823154509622],[-54.00594005940059,69.44329727690587],[-53.79713797137971,69.42641150420704],[-53.68193681936819,69.43992012236609],[-53.660336603366034,69.45005158598539],[-53.649536495364956,69.44836300871552],[-53.63513635136351,69.44329727690587],[-53.62073620736207,69.44160869963599],[-53.40473404734047,69.43992012236609],[-53.375933759337585,69.44836300871552],[-53.53793537935378,69.45342874052517],[-53.58113581135811,69.4686259359541],[-53.58113581135811,69.47538024503365],[-53.573935739357395,69.48213455411317],[-53.552335523355225,69.5091517904313],[-53.54153541535415,69.52097183132048],[-53.50913509135091,69.54798906763858],[-53.473134731347315,69.56656341760731],[-53.39033390333903,69.57162914941696],[-53.350733507335065,69.57838345849649],[-53.350733507335065,69.58513776757601],[-53.426334263342625,69.58513776757601],[-53.5631356313563,69.56825199487719],[-53.59193591935919,69.55474337671814],[-53.60993609936099,69.55136622217836],[-53.59193591935919,69.53110329493975],[-53.61713617136171,69.5074632131614],[-53.65673656736567,69.48720028592282],[-53.685536855368554,69.47538024503365],[-53.77193771937719,69.45849447233482],[-53.815138151381504,69.45849447233482],[-53.861938619386194,69.4686259359541],[-53.761137611376114,69.50070890408188],[-53.73233732337323,69.5175946767807],[-53.764737647376464,69.52434898586023],[-53.941139411394104,69.4888888631927],[-53.97353973539735,69.4888888631927],[-53.99873998739987,69.50239748135175],[-53.96993969939699,69.52434898586023],[-53.91953919539195,69.54123475855906],[-53.879938799387986,69.56149768579766],[-53.88353883538835,69.58513776757601],[-53.901539015390156,69.59526923119532],[-53.930339303393026,69.60371211754472],[-53.95913959139591,69.61046642662424],[-53.97713977139772,69.60877784935437],[-53.987939879398795,69.60371211754472],[-53.991539915399144,69.59695780846519],[-53.987939879398795,69.59020349938567],[-53.980739807398066,69.58176061303624],[-53.980739807398066,69.57500630395671],[-53.98433984339843,69.56825199487719],[-53.987939879398795,69.56149768579766],[-53.991539915399144,69.55812053125788],[-54.12834128341282,69.55136622217836],[-54.24714247142471,69.56825199487719],[-54.27234272342723,69.57162914941696],[-54.340743407434076,69.56149768579766],[-54.73674736747367,69.58851492211576],[-54.77274772747727,69.59864638573507],[-54.82674826748267,69.61890931297367],[-54.82314823148231,69.62397504478332],[-54.81594815948159,69.64086081748215],[-54.859148591485905,69.6442379720219],[-54.91314913149131,69.65605801291107],[-54.96354963549635,69.67632094014968],[-54.99234992349923,69.7016495991979],[-54.985149851498505,69.7016495991979],[-54.97794977949779,69.70333817646781],[-54.97074970749708,69.70671533100756],[-54.96714967149671,69.70840390827746],[-54.97434974349743,69.72360110370639],[-54.96354963549635,69.73373256732569],[-54.89154891548915,69.75061834002452],[-54.86274862748627,69.7539954945643],[-54.833948339483385,69.75061834002452],[-54.80154801548015,69.74217545367512],[-54.783547835478345,69.74892976275464],[-54.68634686346863,69.75568407183417],[-54.66114661146611,69.75230691729439],[-54.64314643146432,69.74555260821487],[-54.61074610746107,69.72191252643651],[-54.581945819458184,69.71346964008708],[-54.491944919449196,69.7016495991979],[-54.441544415444156,69.67969809468946],[-54.41274412744127,69.6746323628798],[-54.391143911439116,69.68138667195933],[-54.49914499144991,69.72866683551604],[-54.556745567455664,69.73879829913534],[-54.571145711457106,69.74724118548474],[-54.581945819458184,69.75568407183417],[-54.621546215462146,69.77425842180287],[-54.632346323463224,69.77763557634265],[-54.81594815948159,69.79283277177157],[-54.91314913149131,69.8198500080897],[-54.931149311493115,69.86544159437653],[-54.89154891548915,69.87726163526571],[-54.87354873548735,69.87895021253561],[-54.79434794347944,69.87895021253561],[-54.833948339483385,69.89921313977419],[-54.84834848348483,69.90765602612362],[-54.859148591485905,69.91778748974289],[-54.86634866348663,69.93129610790197],[-54.86634866348663,69.94311614879115],[-54.82674826748267,69.95155903514055],[-54.78714787147871,69.96506765329963],[-54.76554765547655,69.97013338510928],[-54.66474664746647,69.97351053964903],[-54.621546215462146,69.9583133442201],[-54.24714247142471,69.91441033520314],[-54.22554225542255,69.92116464428267],[-54.25434254342542,69.9380504169815],[-54.293942939429385,69.9481818806008],[-54.50994509945099,69.96844480783938],[-54.76194761947619,70.03429932136481],[-54.79434794347944,70.05118509406364],[-54.82674826748267,70.08157948492152],[-54.830348303483035,70.0849566394613],[-54.84114841148411,70.17445123476509],[-54.830348303483035,70.20146847108319],[-54.805148051480515,70.21666566651214],[-54.779947799477995,70.2301742846712],[-54.758347583475825,70.24706005737002],[-54.74034740347403,70.25381436644955],[-54.646746467464666,70.26563440733875],[-54.452344523445234,70.31291457089546],[-54.32994329943298,70.32473461178463],[-54.30114301143011,70.31798030270511],[-53.905139051390506,70.29096306638698],[-53.77193771937719,70.2605686755291],[-53.49113491134911,70.24199432556037],[-53.372333723337235,70.21835424378202],[-53.33633336333362,70.20653420289284],[-53.264332643326426,70.20146847108319],[-53.199531995319944,70.17276265749518],[-53.120331203312034,70.15418830752648],[-53.069930699306994,70.13054822574813],[-53.03033030330303,70.11872818485895],[-53.00513005130051,70.10184241216012],[-52.96552965529655,70.06469371222269],[-52.9331293312933,70.04443078498412],[-52.832328323283235,69.9954620441575],[-52.76392763927639,69.9481818806008],[-52.72792727927279,69.9279189533622],[-52.630726307263075,69.91272175793327],[-52.5191251912519,69.88063878980549],[-52.432724327243264,69.87219590345606],[-52.31032310323103,69.84349008986806],[-52.20952209522095,69.8384243580584],[-52.21672216722166,69.8384243580584],[-51.99711997119971,69.80465281266078],[-51.935919359193576,69.77763557634265],[-51.91431914319142,69.75737264910404],[-51.90711907119072,69.74217545367512],[-51.917919179191784,69.73035541278591],[-51.9611196111961,69.69151813557863],[-51.968319683196825,69.68814098103886],[-51.98271982719828,69.68645240376898],[-52.0151201512015,69.67969809468946],[-52.02592025920259,69.6746323628798],[-51.892718927189264,69.64086081748215],[-51.853118531185316,69.6459265492918],[-51.84951849518495,69.65099228110142],[-51.83871838718386,69.6442379720219],[-51.835118351183496,69.63241793113272],[-51.853118531185316,69.62228646751342],[-51.885518855188536,69.60877784935437],[-51.90711907119072,69.59020349938567],[-52.02592025920259,69.52097183132048],[-52.05472054720546,69.51421752224093],[-52.09792097920979,69.499020326812],[-52.1411214112141,69.47706882230352],[-52.277922779227794,69.44667443144564],[-52.33912339123391,69.44836300871552],[-52.82152821528214,69.3521141043322],[-52.88992889928899,69.3521141043322],[-52.90432904329043,69.34535979525268]]],[[[-44.53064530645307,82.41325928687488],[-44.45504455044551,82.4014392459857],[-44.42264422644226,82.38455347328687],[-44.42624426244262,82.35922481423862],[-44.44064440644405,82.35247050515909],[-44.5270452704527,82.33389615519039],[-44.71064710647107,82.31532180522169],[-45.07065070650705,82.22245005537812],[-45.03465034650347,82.19712139632989],[-44.905049050490504,82.16334985093224],[-44.73584735847359,82.0991839146767],[-44.771847718477176,82.08060956470797],[-44.82584825848258,82.0704781010887],[-45.03465034650347,82.05865806019952],[-45.08865088650887,82.06372379200914],[-45.308253082530825,82.1278897282647],[-45.32265322653225,82.15321838731293],[-45.42345423454233,82.18530135544071],[-45.90585905859058,82.24271298261672],[-46.39186391863919,82.3018131870626],[-46.874268742687434,82.35922481423862],[-46.99666996669967,82.3913077823664],[-47.00387003870037,82.39637351417605],[-47.0110701107011,82.40650497779535],[-47.00387003870037,82.41325928687488],[-47.043470434704346,82.44534225500266],[-47.11187111871118,82.48417953220994],[-47.18027180271801,82.51119676852807],[-47.23067230672305,82.50950819125819],[-47.252272522725235,82.5196396548775],[-47.36747367473674,82.53652542757632],[-47.56547565475654,82.61588855926081],[-47.74907749077491,82.62602002288008],[-47.72747727477275,82.63784006376926],[-47.69867698676987,82.64459437284881],[-47.277472774727755,82.64459437284881],[-46.85986859868598,82.64628295011869],[-46.80946809468094,82.63952864103916],[-46.78786787867878,82.63952864103916],[-46.76266762667626,82.64628295011869],[-46.78066780667805,82.65810299100787],[-46.85986859868598,82.6749887637067],[-46.59346593465935,82.67667734097657],[-46.32346323463233,82.67836591824647],[-45.98865988659887,82.64121721830904],[-45.65385653856538,82.60237994110173],[-45.31545315453155,82.56523124116433],[-45.31545315453155,82.5567883548149],[-45.32265322653225,82.5567883548149],[-45.32265322653225,82.55003404573537],[-45.21465214652147,82.55003404573537],[-44.897848978489776,82.49937672763889],[-44.829448294482944,82.47573664586054],[-44.53064530645307,82.41325928687488]]],[[[147.99927999279993,-43.23039821055696],[147.9776797767978,-43.22870963328708],[147.96327963279634,-43.22195532420755],[147.90567905679058,-43.17974089246048],[147.89487894878948,-43.169609428841184],[147.89127891278912,-43.152723656142356],[147.88767887678875,-43.13752646071342],[147.88407884078845,-43.130772151633884],[147.86607866078663,-43.14090361525318],[147.85527855278553,-43.156100810682126],[147.85527855278553,-43.172986583380954],[147.8588785887859,-43.18818377880989],[147.86607866078663,-43.20338097423884],[147.83727837278371,-43.20169239696896],[147.82287822878232,-43.213512437858135],[147.80847808478086,-43.23039821055696],[147.7940779407794,-43.24390682871602],[147.77247772477727,-43.2168895923979],[147.70047700477005,-43.16285511976165],[147.6968769687697,-43.13414930617365],[147.70767707677078,-43.130772151633884],[147.73287732877333,-43.11895211074471],[147.74727747277473,-43.10544349258564],[147.66447664476647,-43.08180341080728],[147.64647646476465,-43.07336052445787],[147.63927639276392,-43.06154048356869],[147.62847628476288,-43.04296613359998],[147.62127621276215,-43.02270320636139],[147.62487624876252,-43.007506010932445],[147.63207632076325,-43.00075170185291],[147.66447664476647,-42.988931660963736],[147.67887678876792,-42.987243083693855],[147.6824768247683,-42.983865929154085],[147.6860768607686,-42.97711162007456],[147.6860768607686,-42.97204588826491],[147.6824768247683,-42.968668733725146],[147.6824768247683,-42.963603001915494],[147.6824768247683,-42.95516011556608],[147.67527675276756,-42.94671722921667],[147.67887678876792,-42.93996292013714],[147.69327693276932,-42.93658576559737],[147.7148771487715,-42.93827434286725],[147.7256772567726,-42.93996292013714],[147.72927729277296,-42.94671722921667],[147.72927729277296,-42.97711162007456],[147.7256772567726,-42.987243083693855],[147.71847718477187,-43.005817433662564],[147.76167761677618,-43.03790040179033],[147.78687786877867,-43.048031865409634],[147.8156781567816,-43.05309759721928],[147.82287822878232,-43.051409019949396],[147.8336783367834,-43.048031865409634],[147.84087840878408,-43.046343288139745],[147.8588785887859,-43.046343288139745],[147.86247862478626,-43.046343288139745],[147.87687876878772,-43.0412775563301],[147.88767887678875,-43.03452324725057],[147.90927909279094,-43.01932605182162],[147.88047880478808,-43.01763747455174],[147.8588785887859,-43.007506010932445],[147.84447844478444,-42.988931660963736],[147.8336783367834,-42.963603001915494],[147.84447844478444,-42.963603001915494],[147.8480784807848,-42.96191442464561],[147.86247862478626,-42.95684869283596],[147.86247862478626,-42.950094383756436],[147.8336783367834,-42.945028651946785],[147.83007830078304,-42.93152003378773],[147.83727837278371,-42.91632283835878],[147.84087840878408,-42.902814220199716],[147.82647826478268,-42.89437133385031],[147.76527765277655,-42.902814220199716],[147.75807758077582,-42.89943706565995],[147.740077400774,-42.89099417931054],[147.72927729277296,-42.887617024770776],[147.72207722077223,-42.88930560204066],[147.68967689676896,-42.89605991112019],[147.67527675276756,-42.88930560204066],[147.66807668076683,-42.882551292961125],[147.66447664476647,-42.87410840661171],[147.65367653676537,-42.867354097532186],[147.64647646476465,-42.8656655202623],[147.62847628476288,-42.863976942992416],[147.62127621276215,-42.86059978845265],[147.6176761767618,-42.85384547937312],[147.6176761767618,-42.84540259302371],[147.61407614076143,-42.83527112940441],[147.6068760687607,-42.826828243055],[147.5960759607596,-42.821762511245346],[147.5852758527585,-42.821762511245346],[147.53487534875347,-42.83695970667429],[147.5168751687517,-42.84540259302371],[147.50247502475025,-42.85384547937312],[147.50247502475025,-42.882551292961125],[147.52047520475207,-42.91801141562866],[147.56007560075602,-42.97711162007456],[147.53847538475384,-43.00412885639268],[147.5276752767528,-43.01426032001198],[147.50967509675098,-43.02439178363127],[147.45567455674558,-43.03790040179033],[147.43767437674376,-43.046343288139745],[147.42687426874272,-43.03790040179033],[147.41247412474127,-43.026080360901155],[147.40527405274054,-43.01088316547221],[147.40167401674017,-42.99906312458303],[147.41607416074163,-42.983865929154085],[147.4304743047431,-42.99399739277339],[147.44127441274412,-43.00919458820233],[147.4520745207452,-43.01932605182162],[147.47007470074703,-43.01088316547221],[147.48087480874813,-42.99399739277339],[147.48447484474843,-42.97880019734444],[147.48087480874813,-42.97035731099503],[147.46647466474667,-42.963603001915494],[147.46647466474667,-42.94671722921667],[147.47727477274776,-42.90956852927925],[147.45927459274594,-42.91294568381902],[147.43767437674376,-42.92307714743831],[147.42327423274236,-42.926454301978076],[147.41607416074163,-42.91294568381902],[147.4088740887409,-42.887617024770776],[147.39447394473945,-42.87748556115148],[147.37287372873732,-42.87241982934183],[147.3548735487355,-42.86059978845265],[147.3008730087301,-42.7879909658477],[147.29367293672937,-42.7778595022284],[147.28287282872827,-42.7778595022284],[147.27207272072724,-42.782925234038046],[147.26127261272615,-42.78967954311758],[147.26847268472687,-42.799811006736874],[147.27927279272797,-42.80994247035617],[147.28647286472864,-42.81331962489594],[147.30447304473046,-42.82851682032488],[147.3188731887319,-42.84709117029359],[147.33687336873368,-42.882551292961125],[147.35847358473586,-42.91125710654913],[147.35847358473586,-42.924765724708195],[147.34047340473404,-42.95684869283596],[147.329673296733,-42.97880019734444],[147.329673296733,-42.99737454731315],[147.3332733327333,-43.04296613359998],[147.32247322473228,-43.046343288139745],[147.30447304473046,-43.03452324725057],[147.27207272072724,-43.01088316547221],[147.25407254072542,-43.027768938171036],[147.26127261272615,-43.044654710869864],[147.29367293672937,-43.06660621537834],[147.3008730087301,-43.08349198807717],[147.29367293672937,-43.09193487442658],[147.2756727567276,-43.10037776077599],[147.25767257672578,-43.11388637893506],[147.2468724687247,-43.129083574364],[147.24327243272432,-43.14428076979294],[147.2468724687247,-43.15947796522189],[147.25767257672578,-43.19662666515931],[147.25767257672578,-43.21520101512802],[147.25767257672578,-43.25403829233532],[147.25047250472505,-43.26754691049438],[147.22887228872293,-43.28105552865345],[147.20727207272074,-43.28612126046309],[147.19287192871928,-43.28105552865345],[147.18567185671856,-43.275989796843795],[147.16407164071643,-43.270924065034144],[147.15327153271534,-43.26416975595462],[147.15327153271534,-43.257415446875086],[147.16047160471607,-43.24897256052567],[147.16047160471607,-43.24052967417626],[147.1460714607146,-43.237152519636496],[147.1028710287103,-43.23884109690638],[147.0920709207092,-43.232086787826844],[147.1028710287103,-43.213512437858135],[147.11727117271175,-43.19662666515931],[147.11727117271175,-43.189872356079775],[147.1136711367114,-43.1780523151906],[147.10647106471066,-43.15441223341224],[147.09927099270993,-43.174675160650835],[147.0776707767078,-43.19156093334966],[147.05967059670598,-43.20169239696896],[147.05247052470526,-43.20000381969908],[147.02727027270276,-43.18480662427013],[147.0236702367024,-43.17974089246048],[147.0236702367024,-43.13752646071342],[147.01647016470167,-43.112197801665175],[147.00207002070022,-43.110509224395294],[146.98766987669876,-43.11895211074471],[146.97326973269736,-43.130772151633884],[146.96606966069663,-43.14765792433271],[146.96246962469627,-43.174675160650835],[146.96606966069663,-43.19831524242919],[146.98046980469803,-43.21013528331837],[146.99126991269912,-43.213512437858135],[147.06327063270635,-43.25403829233532],[147.0812708127081,-43.26754691049438],[147.09567095670957,-43.28274410592333],[147.09927099270993,-43.299629878622156],[147.09567095670957,-43.30638418770168],[147.08487084870848,-43.314827074051095],[147.07407074070744,-43.32326996040051],[147.0668706687067,-43.32664711494028],[147.05247052470526,-43.32664711494028],[147.0488704887049,-43.32158138313063],[147.04527045270453,-43.31651565132098],[147.0380703807038,-43.313138496781214],[147.02007020070204,-43.31144991951133],[146.99846998469985,-43.31651565132098],[146.97686976869772,-43.32664711494028],[146.96246962469627,-43.34015573309934],[147.02007020070204,-43.336778578559574],[147.0380703807038,-43.34015573309934],[147.05607056070562,-43.34859861944875],[147.05607056070562,-43.357041505798165],[147.03087030870307,-43.37392727849699],[147.02007020070204,-43.38574731938617],[147.00567005670058,-43.414453132974174],[146.99846998469985,-43.42289601932359],[146.98046980469803,-43.42965032840312],[146.96246962469627,-43.431338905673],[146.92286922869232,-43.42965032840312],[146.94086940869408,-43.443158946562185],[147.00207002070022,-43.45497898745136],[147.01647016470167,-43.47861906922972],[146.96246962469627,-43.47186476015019],[146.94446944469445,-43.476930491959834],[146.93726937269372,-43.49550484192854],[146.94086940869408,-43.502259151008076],[146.9480694806948,-43.50901346008761],[146.95526955269554,-43.51745634643702],[146.9480694806948,-43.53265354186597],[146.94086940869408,-43.53771927367561],[146.92646926469268,-43.53771927367561],[146.91206912069123,-43.53603069640573],[146.90126901269014,-43.53265354186597],[146.8940689406894,-43.5579822009142],[146.9048690486905,-43.56642508726362],[146.92646926469268,-43.56980224180339],[146.94086940869408,-43.581622282692564],[146.94086940869408,-43.59850805539139],[146.92646926469268,-43.61201667355045],[146.85446854468546,-43.63903390986857],[146.84726847268473,-43.64072248713846],[146.83286832868328,-43.64072248713846],[146.8292682926829,-43.63565675532881],[146.83286832868328,-43.63059102351916],[146.8256682566826,-43.622148137169745],[146.80406804068042,-43.61032809628057],[146.78246782467824,-43.60863951901069],[146.7608676086761,-43.61370525082034],[146.71046710467107,-43.62890244624928],[146.69966699666998,-43.62383671443963],[146.69246692466925,-43.60863951901069],[146.67446674466748,-43.586688014502215],[146.609666096661,-43.55967077818409],[146.5988659886599,-43.55291646910456],[146.59166591665917,-43.53603069640573],[146.58086580865807,-43.49550484192854],[146.5736657366574,-43.47861906922972],[146.55566555665558,-43.47017618288031],[146.54846548465486,-43.481996223769485],[146.54846548465486,-43.50394772827796],[146.55926559265595,-43.525899232786436],[146.5448654486545,-43.520833500976785],[146.53766537665376,-43.519144923706904],[146.51246512465127,-43.53434211913585],[146.4908649086491,-43.53771927367561],[146.37926379263791,-43.5292763873262],[146.3576635766358,-43.520833500976785],[146.33966339663397,-43.505636305547846],[146.31806318063184,-43.522522078246666],[146.30726307263075,-43.53096496459608],[146.2928629286293,-43.53265354186597],[146.27846278462783,-43.525899232786436],[146.27486274862747,-43.51576776916714],[146.27126271262716,-43.502259151008076],[146.26406264062643,-43.49212768738878],[146.25326253262534,-43.48706195557913],[146.2388623886239,-43.48537337830925],[146.22086220862212,-43.48537337830925],[146.21006210062103,-43.49212768738878],[146.2028620286203,-43.50394772827796],[146.2028620286203,-43.519144923706904],[146.19926199261994,-43.53265354186597],[146.18846188461885,-43.539407850945494],[146.18126181261812,-43.524210655516555],[146.17046170461708,-43.51239061462737],[146.159661596616,-43.505636305547846],[146.1488614886149,-43.505636305547846],[146.11646116461168,-43.51576776916714],[146.1056610566106,-43.519144923706904],[146.1056610566106,-43.524210655516555],[146.10926109261095,-43.541096428215376],[146.1056610566106,-43.54616216002503],[146.09846098460986,-43.54785073729491],[146.09126091260913,-43.544473582755145],[146.08766087660877,-43.541096428215376],[146.08046080460804,-43.539407850945494],[146.02286022860227,-43.55291646910456],[146.030060300603,-43.481996223769485],[146.02286022860227,-43.4516018329116],[146.00126001260014,-43.419518864783825],[145.94365943659437,-43.38574731938617],[145.93645936459365,-43.377304433036755],[145.94365943659437,-43.36548439214758],[145.9616596165962,-43.36886154668734],[145.98685986859869,-43.37899301030664],[146.0048600486005,-43.38237016484641],[145.99765997659978,-43.37055012395722],[145.9760597605976,-43.34691004217887],[145.9940599405994,-43.34522146490899],[146.0840608406084,-43.3536643512584],[146.1128611286113,-43.3637958148777],[146.13086130861308,-43.38237016484641],[146.14166141661417,-43.400944514815116],[146.159661596616,-43.41614171024406],[146.16686166861672,-43.40432166935488],[146.159661596616,-43.38574731938617],[146.159661596616,-43.37392727849699],[146.16686166861672,-43.37899301030664],[146.17046170461708,-43.37899301030664],[146.18126181261812,-43.38237016484641],[146.1740617406174,-43.36886154668734],[146.18126181261812,-43.36548439214758],[146.18846188461885,-43.36717296941746],[146.19566195661957,-43.36886154668734],[146.20646206462067,-43.37392727849699],[146.22086220862212,-43.3925016284657],[146.23166231662316,-43.395878783005465],[146.2388623886239,-43.38405874211629],[146.2388623886239,-43.358730083068046],[146.23526235262352,-43.333401424019804],[146.2280622806228,-43.319892805860746],[146.22446224462243,-43.314827074051095],[146.19566195661957,-43.299629878622156],[146.17766177661775,-43.28274410592333],[146.16686166861672,-43.27767837411368],[146.159661596616,-43.28105552865345],[146.13086130861308,-43.32495853767039],[146.10926109261095,-43.336778578559574],[146.0840608406084,-43.319892805860746],[146.0840608406084,-43.313138496781214],[146.08046080460804,-43.29118699227274],[146.08046080460804,-43.28612126046309],[146.06606066060664,-43.28274410592333],[146.0588605886059,-43.28443268319321],[146.05526055260555,-43.29287556954262],[146.05166051660518,-43.30300703316192],[146.04446044460445,-43.32664711494028],[146.02646026460263,-43.32495853767039],[146.0048600486005,-43.31144991951133],[145.99045990459905,-43.299629878622156],[145.9760597605976,-43.28443268319321],[145.96885968859692,-43.26754691049438],[145.96525965259656,-43.250661137795554],[145.9616596165962,-43.2270210560172],[145.95805958059583,-43.22195532420755],[145.93645936459365,-43.211823860588254],[145.91845918459188,-43.19662666515931],[145.91485914859152,-43.20169239696896],[145.91485914859152,-43.22364390147743],[145.91845918459188,-43.23884109690638],[145.91485914859152,-43.24728398325579],[145.90405904059043,-43.250661137795554],[145.8968589685897,-43.250661137795554],[145.8860588605886,-43.252349715065435],[145.87885878858788,-43.25403829233532],[145.8716587165872,-43.25910402414497],[145.86805868058684,-43.27261264230403],[145.88245882458824,-43.275989796843795],[145.91845918459188,-43.27261264230403],[145.92925929259292,-43.27767837411368],[145.92565925659255,-43.28949841500285],[145.91485914859152,-43.30131845589204],[145.8968589685897,-43.30638418770168],[145.8608586085861,-43.3046956104318],[145.8428584285843,-43.30131845589204],[145.8320583205832,-43.29287556954262],[145.8068580685807,-43.24390682871602],[145.80325803258035,-43.237152519636496],[145.8068580685807,-43.213512437858135],[145.80325803258035,-43.208446706048484],[145.77445774457743,-43.18818377880989],[145.7636576365764,-43.18311804700025],[145.75645756457567,-43.17636373792072],[145.75645756457567,-43.169609428841184],[145.7528575285753,-43.15947796522189],[145.7528575285753,-43.152723656142356],[145.74565745657458,-43.149346501602594],[145.73485734857348,-43.14259219252306],[145.72765727657276,-43.130772151633884],[145.72765727657276,-43.11388637893506],[145.73125731257312,-43.10037776077599],[145.72045720457209,-43.10375491531576],[145.709657096571,-43.107132069855524],[145.6988569885699,-43.108820647125405],[145.6880568805688,-43.107132069855524],[145.67365673656735,-43.09868918350611],[145.67005670056705,-43.09193487442658],[145.67365673656735,-43.069983369918106],[145.67725677256772,-43.06660621537834],[145.68445684456844,-43.05816332902893],[145.6880568805688,-43.049720442679515],[145.67725677256772,-43.046343288139745],[145.66645666456668,-43.044654710869864],[145.6556565565656,-43.03958897906022],[145.6340563405634,-43.02439178363127],[145.59805598055982,-42.97204588826491],[145.58365583655836,-42.963603001915494],[145.51885518855192,-42.96191442464561],[145.5116551165512,-42.95853727010585],[145.4720547205472,-42.9146342610889],[145.45045450454506,-42.882551292961125],[145.42885428854288,-42.84709117029359],[145.41085410854112,-42.79474527492722],[145.40005400054002,-42.7778595022284],[145.3928539285393,-42.77110519314887],[145.38565385653857,-42.76603946133922],[145.3712537125371,-42.762662306799456],[145.3676536765368,-42.757596574989805],[145.36405364053644,-42.75084226591028],[145.3676536765368,-42.74746511137051],[145.3712537125371,-42.74408795683075],[145.38565385653857,-42.72551360686204],[145.38565385653857,-42.713693565972854],[145.37485374853748,-42.71031641143309],[145.3712537125371,-42.70356210235356],[145.35325353253535,-42.65121620698719],[145.34965349653498,-42.64783905244743],[145.3280532805328,-42.64952762971731],[145.32445324453244,-42.64783905244743],[145.31725317253176,-42.636019011558254],[145.3136531365314,-42.62251039339919],[145.30645306453067,-42.612378929779894],[145.29565295652958,-42.60731319797025],[145.26685266852672,-42.60393604343048],[145.26325263252636,-42.595493157081066],[145.29925299252994,-42.55834445714365],[145.27045270452703,-42.53977010717494],[145.2488524885249,-42.5043099845074],[145.23445234452345,-42.46378413003022],[145.24165241652418,-42.42832400736268],[145.220052200522,-42.37091238018667],[145.20925209252096,-42.33714083478902],[145.20205202052023,-42.305057866661244],[145.20205202052023,-42.247646239485235],[145.19845198451986,-42.23582619859605],[145.19125191251914,-42.2121861168177],[145.18765187651877,-42.19530034411887],[145.20205202052023,-42.203743230468284],[145.21645216452168,-42.21894042589722],[145.23085230852308,-42.23582619859605],[145.23445234452345,-42.247646239485235],[145.24165241652418,-42.264532012184056],[145.25245252452527,-42.27128632126359],[145.29205292052922,-42.27804063034312],[145.3028530285303,-42.28310636215277],[145.31005310053104,-42.286483516692535],[145.31725317253176,-42.29999213485159],[145.32085320853207,-42.306746443931125],[145.32445324453244,-42.31518933028054],[145.33165331653316,-42.32363221662995],[145.3568535685357,-42.330386525709486],[145.42525425254252,-42.37091238018667],[145.4360543605436,-42.37935526653608],[145.43965439654397,-42.391175307425264],[145.44325443254434,-42.430012584632564],[145.45045450454506,-42.46716128456998],[145.46485464854652,-42.50262140723752],[145.4720547205472,-42.512752870856815],[145.47925479254792,-42.50937571631705],[145.48285482854828,-42.48742421180857],[145.48285482854828,-42.41481538920362],[145.50805508055083,-42.42832400736268],[145.51885518855192,-42.426635430092794],[145.5260552605526,-42.39455246196503],[145.53325533255332,-42.3776666892662],[145.5548555485555,-42.350649452948076],[145.55845558455587,-42.34220656659866],[145.54765547655478,-42.343895143868544],[145.53325533255332,-42.348960875678195],[145.52965529655296,-42.35402660748784],[145.53325533255332,-42.35571518475773],[145.52965529655296,-42.35740376202761],[145.52245522455223,-42.35909233929749],[145.51885518855192,-42.36078091656737],[145.51525515255156,-42.35909233929749],[145.51525515255156,-42.35571518475773],[145.51885518855192,-42.350649452948076],[145.51885518855192,-42.34727229840831],[145.51525515255156,-42.34051798932878],[145.51525515255156,-42.33376368024925],[145.5116551165512,-42.325320793899834],[145.50445504455047,-42.3185664848203],[145.49365493654938,-42.3185664848203],[145.490054900549,-42.327009371169716],[145.490054900549,-42.33545225751913],[145.48285482854828,-42.34051798932878],[145.46485464854652,-42.327009371169716],[145.40725407254075,-42.27128632126359],[145.38925389253893,-42.249334816755116],[145.3712537125371,-42.2408919304057],[145.3676536765368,-42.23751477586593],[145.36045360453608,-42.20880896227793],[145.34605346053462,-42.181791725959805],[145.34245342453426,-42.163217375991096],[145.34605346053462,-42.14802018056215],[145.33165331653316,-42.141265871482624],[145.32445324453244,-42.142954448752505],[145.3028530285303,-42.15477448964168],[145.3028530285303,-42.15646306691156],[145.29925299252994,-42.16828310780075],[145.29565295652958,-42.17166026234051],[145.28125281252812,-42.17672599415016],[145.27765277652776,-42.181791725959805],[145.27765277652776,-42.19361176684899],[145.28125281252812,-42.205431807738165],[145.2848528485285,-42.21556327135746],[145.27045270452703,-42.224006157706874],[145.26325263252636,-42.22062900316711],[145.22725227252272,-42.19530034411887],[145.26685266852672,-42.122691521513914],[145.25245252452527,-42.041639812559545],[145.2056520565206,-41.9673424126847],[145.15525155251555,-41.91499651731834],[145.07245072450723,-41.85758489014233],[145.06525065250656,-41.855896312872446],[145.0616506165062,-41.84914200379291],[145.05445054450547,-41.82381334474467],[145.0508505085051,-41.817059035665146],[145.04005040050401,-41.813681881125376],[145.02925029250292,-41.80523899477596],[144.99324993249934,-41.74613879033007],[144.97164971649715,-41.73263017217101],[144.9680496804968,-41.72418728582159],[144.96084960849612,-41.7140558222023],[144.95004950049503,-41.70899009039265],[144.93564935649357,-41.710678667662535],[144.92484924849248,-41.70899009039265],[144.9212492124921,-41.70223578131312],[144.91404914049144,-41.688727163154056],[144.91404914049144,-41.67859569953476],[144.91404914049144,-41.65157846321664],[144.8672486724867,-41.545198095214026],[144.809648096481,-41.47596642714884],[144.79524795247954,-41.447260613560836],[144.7880478804788,-41.442194881751185],[144.77724777247772,-41.43881772721142],[144.76644766447663,-41.43037484086201],[144.74844748447487,-41.41348906816318],[144.7556475564756,-41.4118004908933],[144.7556475564756,-41.40842333635353],[144.7556475564756,-41.405046181813766],[144.7556475564756,-41.399980450004115],[144.7808478084781,-41.3915375636547],[144.7808478084781,-41.36452032733658],[144.76644766447663,-41.33581451374857],[144.7016470164702,-41.24294276390503],[144.680046800468,-41.22267983666644],[144.6908469084691,-41.19903975488808],[144.6908469084691,-41.16864536403019],[144.68364683646837,-41.1382509731723],[144.66564665646655,-41.12136520047347],[144.67644676446764,-41.08083934599629],[144.6548465484655,-41.048756377868514],[144.60444604446047,-40.99641048250215],[144.61884618846187,-40.99303332796239],[144.62964629646297,-40.986279018882854],[144.6368463684637,-40.97445897799368],[144.64044640446406,-40.95926178256473],[144.62244622446224,-40.93899885532614],[144.61884618846187,-40.928867391706845],[144.62244622446224,-40.92549023716708],[144.64044640446406,-40.92211308262731],[144.6548465484655,-40.90016157811884],[144.66564665646655,-40.89509584630919],[144.68364683646837,-40.89340726903931],[144.69804698046983,-40.886652959959775],[144.70524705247055,-40.87145576453083],[144.70884708847092,-40.83937279640306],[144.70884708847092,-40.81066698281506],[144.6908469084691,-40.704286614812446],[144.6908469084691,-40.680646533034086],[144.69804698046983,-40.660383605795495],[144.71964719647195,-40.640120678556904],[144.72324723247232,-40.65700645125573],[144.7340473404734,-40.67220364668467],[144.7556475564756,-40.69584372846303],[144.75924759247596,-40.702598037542565],[144.76284762847632,-40.721172387511274],[144.76644766447663,-40.72623811932092],[144.77364773647736,-40.727926696590806],[144.7808478084781,-40.72454954205104],[144.7880478804788,-40.717795232971504],[144.79524795247954,-40.71610665570162],[144.82764827648276,-40.721172387511274],[144.89604896048962,-40.74481246928963],[144.9320493204932,-40.74987820109928],[144.9680496804968,-40.74481246928963],[144.9860498604986,-40.74481246928963],[145.00045000450007,-40.75325535563904],[145.01485014850152,-40.766763973798106],[145.02565025650256,-40.77351828287764],[145.05805058050584,-40.783649746496934],[145.0760507605076,-40.80728982827529],[145.08325083250833,-40.81066698281506],[145.09405094050942,-40.81235556008494],[145.1192511925119,-40.82079844643435],[145.13725137251373,-40.81742129189458],[145.14445144451446,-40.80728982827529],[145.13365133651337,-40.79209263284635],[145.22725227252272,-40.79715836465599],[145.2488524885249,-40.79209263284635],[145.26325263252636,-40.77520686014752],[145.26325263252636,-40.75325535563904],[145.259652596526,-40.73130385113057],[145.2488524885249,-40.71610665570162],[145.27045270452703,-40.71948381024139],[145.29565295652958,-40.73636958294021],[145.30645306453067,-40.75494393290893],[145.27765277652776,-40.766763973798106],[145.27045270452703,-40.77351828287764],[145.26685266852672,-40.785338323766815],[145.27045270452703,-40.79715836465599],[145.27765277652776,-40.805601251005406],[145.31725317253176,-40.825864178244],[145.33165331653316,-40.83768421913318],[145.34245342453426,-40.842749950942824],[145.3568535685357,-40.846127105482594],[145.38925389253893,-40.847815682752476],[145.4036540365404,-40.84950426002236],[145.44325443254434,-40.868078609991066],[145.4720547205472,-40.8647014554513],[145.52245522455223,-40.846127105482594],[145.53325533255332,-40.884964382689894],[145.57285572855727,-40.908604464468254],[145.619656196562,-40.92211308262731],[145.71325713257136,-40.930555968976726],[145.72765727657276,-40.93899885532614],[145.73485734857348,-40.95926178256473],[145.74565745657458,-40.97614755526356],[145.76005760057603,-40.99303332796239],[145.79245792457925,-41.01667340974075],[145.81045810458107,-41.02680487336004],[145.8320583205832,-41.033559182439575],[145.85365853658539,-41.03693633697934],[145.90405904059043,-41.03862491424922],[145.91485914859152,-41.04200206878898],[145.92205922059225,-41.048756377868514],[145.92565925659255,-41.05888784148781],[145.93645936459365,-41.0605764187577],[145.95445954459547,-41.05888784148781],[145.97965979659796,-41.06564215056734],[146.0156601566016,-41.08759365507582],[146.0408604086041,-41.09434796415535],[146.06246062460627,-41.10616800504453],[146.069660696607,-41.10954515958429],[146.08046080460804,-41.114610891393944],[146.12006120061204,-41.12136520047347],[146.2136621366214,-41.155136745871125],[146.35406354063542,-41.16864536403019],[146.42246422464228,-41.1669567867603],[146.4908649086491,-41.15175959133136],[146.5448654486545,-41.13318524136265],[146.55566555665558,-41.1382509731723],[146.55926559265595,-41.15851390041089],[146.5628656286563,-41.16864536403019],[146.5736657366574,-41.1770882503796],[146.58446584465844,-41.18046540491937],[146.5988659886599,-41.175399673109716],[146.58086580865807,-41.16189105495066],[146.59166591665917,-41.14669385952171],[146.62766627666275,-41.12643093228312],[146.63486634866348,-41.11798804593371],[146.64926649266494,-41.099413695965],[146.65646656466566,-41.092659386885465],[146.66726667266676,-41.08759365507582],[146.68886688866888,-41.08759365507582],[146.70326703267034,-41.08590507780593],[146.71406714067143,-41.07915076872641],[146.7320673206732,-41.069019305107105],[146.7428674286743,-41.06564215056734],[146.75366753667538,-41.06564215056734],[146.76446764467647,-41.069019305107105],[146.77526775267756,-41.074085036916756],[146.7860678606786,-41.07915076872641],[146.7968679686797,-41.090970809615584],[146.80766807668078,-41.112922314124056],[146.81126811268115,-41.131496664092765],[146.80046800468006,-41.13993955044218],[146.80766807668078,-41.15682532314101],[146.8256682566826,-41.16020247768078],[146.84366843668437,-41.16189105495066],[146.8616686166862,-41.16864536403019],[146.87246872468728,-41.16020247768078],[146.88326883268832,-41.155136745871125],[146.89046890468904,-41.155136745871125],[146.9048690486905,-41.155136745871125],[146.9156691566916,-41.15682532314101],[146.92646926469268,-41.16357963222054],[146.93726937269372,-41.16526820949042],[146.9480694806948,-41.16189105495066],[146.93366933669336,-41.15175959133136],[146.92286922869232,-41.13993955044218],[146.90846908469086,-41.131496664092765],[146.85806858068582,-41.12474235501324],[146.83646836468364,-41.116299468663826],[146.8256682566826,-41.099413695965],[146.81846818468188,-41.07577361418664],[146.83646836468364,-41.0403134915191],[146.88326883268832,-41.02680487336004],[146.93366933669336,-41.01836198701063],[146.97326973269736,-40.99978763704192],[146.98046980469803,-40.99472190523227],[146.98766987669876,-40.989656173422624],[146.9948699486995,-40.986279018882854],[147.00927009270094,-40.98121328707321],[147.0128701287013,-40.97952470980333],[147.01647016470167,-40.97614755526356],[147.0236702367024,-40.97614755526356],[147.03087030870307,-40.97783613253344],[147.03447034470344,-40.986279018882854],[147.0380703807038,-40.989656173422624],[147.17127171271716,-41.00654194612145],[147.2108721087211,-40.989656173422624],[147.28647286472864,-40.94068743259602],[147.29727297272973,-40.95757320529485],[147.3440734407344,-40.9423760098659],[147.3548735487355,-40.952507473485205],[147.3548735487355,-40.96432751437438],[147.35847358473586,-40.971081823453915],[147.3656736567366,-40.97445897799368],[147.39447394473945,-40.97783613253344],[147.3980739807398,-40.98459044161297],[147.40167401674017,-40.99472190523227],[147.4088740887409,-41.00316479158168],[147.44487444874449,-41.00823052339133],[147.48447484474843,-40.986279018882854],[147.52047520475207,-40.952507473485205],[147.5816758167582,-40.87145576453083],[147.5852758527585,-40.85625856910189],[147.5960759607596,-40.846127105482594],[147.650076500765,-40.829241332783766],[147.66807668076683,-40.825864178244],[147.6824768247683,-40.8359956418633],[147.70047700477005,-40.85456999183201],[147.71847718477187,-40.868078609991066],[147.75447754477545,-40.85625856910189],[147.77607776077764,-40.868078609991066],[147.79767797677977,-40.884964382689894],[147.81927819278195,-40.89340726903931],[147.8480784807848,-40.88834153722966],[147.88407884078845,-40.87314434180072],[147.91647916479167,-40.85288141456212],[147.92727927279276,-40.829241332783766],[147.93087930879312,-40.82079844643435],[147.94527945279452,-40.79546978738611],[147.95247952479525,-40.761698241988455],[147.95967959679598,-40.75156677836916],[147.97047970479707,-40.743123892019746],[147.98487984879853,-40.73636958294021],[147.9920799207992,-40.741435314749864],[147.99567995679956,-40.743123892019746],[148.0208802088021,-40.743123892019746],[148.02808028080284,-40.746501046559516],[148.03528035280357,-40.75156677836916],[148.04248042480424,-40.77014112833787],[148.05328053280533,-40.77014112833787],[148.0676806768068,-40.763386819258336],[148.08208082080824,-40.76845255106799],[148.09288092880928,-40.7768954374174],[148.11448114481146,-40.79715836465599],[148.13248132481328,-40.824175600974115],[148.14328143281432,-40.83430706459341],[148.1648816488165,-40.83937279640306],[148.19728197281972,-40.83768421913318],[148.20808208082082,-40.84106137367294],[148.2872828728287,-40.923801659897194],[148.31608316083162,-40.96095035983461],[148.32688326883272,-40.98290186434309],[148.33048330483308,-41.0014762143118],[148.32328323283235,-41.011607677931096],[148.3088830888309,-41.01498483247086],[148.29088290882908,-41.02511629609016],[148.28008280082804,-41.035247759709456],[148.2728827288273,-41.04537922332875],[148.2836828368284,-41.04706780059863],[148.29448294482944,-41.052133532408284],[148.30168301683017,-41.05719926421793],[148.30528305283053,-41.06564215056734],[148.29088290882908,-41.10616800504453],[148.2872828728287,-41.112922314124056],[148.27648276482768,-41.12474235501324],[148.26928269282695,-41.15175959133136],[148.26928269282695,-41.18215398218925],[148.2728827288273,-41.20241690942784],[148.27648276482768,-41.215925527586904],[148.2836828368284,-41.22267983666644],[148.31608316083162,-41.254762804794204],[148.32328323283235,-41.26827142295327],[148.31608316083162,-41.28178004111233],[148.2728827288273,-41.30879727743045],[148.2548825488255,-41.32568305012928],[148.25848258482586,-41.34594597736787],[148.33408334083344,-41.29191150473162],[148.35568355683557,-41.29191150473162],[148.33048330483308,-41.322305895589516],[148.28008280082804,-41.4506377681006],[148.28008280082804,-41.465834963529545],[148.2836828368284,-41.482720736228366],[148.2872828728287,-41.506360818006726],[148.2836828368284,-41.51986943616579],[148.28008280082804,-41.528312322515205],[148.28008280082804,-41.53675520886462],[148.3088830888309,-41.57559248607192],[148.31248312483126,-41.585723949691214],[148.31608316083162,-41.605986876929805],[148.31248312483126,-41.629626958708165],[148.30168301683017,-41.65326704048652],[148.2872828728287,-41.671841390455235],[148.2872828728287,-41.688727163154056],[148.30528305283053,-41.751204522139716],[148.29448294482944,-41.7630245630289],[148.2728827288273,-41.77991033572773],[148.26208262082622,-41.80017326296632],[148.26928269282695,-41.82212476747479],[148.2728827288273,-41.830567653824204],[148.2836828368284,-41.855896312872446],[148.2872828728287,-41.86433919922186],[148.2872828728287,-41.872782085571274],[148.31248312483126,-41.894733590079746],[148.31608316083162,-41.90148789915928],[148.31608316083162,-41.90655363096893],[148.319683196832,-41.91161936277857],[148.32688326883272,-41.91499651731834],[148.31248312483126,-41.94876806271599],[148.30168301683017,-42.00111395808236],[148.2980829808298,-42.05008269890896],[148.3628836288363,-42.11087148062473],[148.3628836288363,-42.11593721243438],[148.35568355683557,-42.119314366974145],[148.34848348483484,-42.12775725332356],[148.319683196832,-42.15646306691156],[148.31608316083162,-42.16997168507063],[148.35928359283594,-42.185168880499575],[148.3628836288363,-42.203743230468284],[148.35568355683557,-42.2408919304057],[148.34848348483484,-42.245957662215346],[148.33048330483308,-42.262843434914174],[148.32688326883272,-42.267909166723825],[148.32328323283235,-42.27804063034312],[148.31248312483126,-42.27297489853347],[148.30168301683017,-42.262843434914174],[148.2980829808298,-42.25777770310453],[148.26568265682658,-42.251023394025],[148.25848258482586,-42.244269084945465],[148.26208262082622,-42.23582619859605],[148.28008280082804,-42.225694734976756],[148.2872828728287,-42.22062900316711],[148.2872828728287,-42.21387469408758],[148.29448294482944,-42.20712038500805],[148.30168301683017,-42.19698892138875],[148.30528305283053,-42.185168880499575],[148.30168301683017,-42.17841457142004],[148.29448294482944,-42.16997168507063],[148.2836828368284,-42.161528798721214],[148.2728827288273,-42.15477448964168],[148.30168301683017,-42.142954448752505],[148.31248312483126,-42.13451156240309],[148.319683196832,-42.119314366974145],[148.29448294482944,-42.119314366974145],[148.27648276482768,-42.11256005789462],[148.2440824408244,-42.085542821576496],[148.22608226082264,-42.075411357957194],[148.16128161281614,-42.05852558525837],[148.190081900819,-42.041639812559545],[148.20448204482045,-42.03488550348001],[148.2188821888219,-42.03150834894025],[148.23328233282336,-42.023065462590836],[148.24048240482404,-42.00786826716189],[148.2440824408244,-41.99098249446306],[148.21168211682118,-41.977473876304],[148.20448204482045,-41.96227668087506],[148.2008820088201,-41.94876806271599],[148.19728197281972,-41.942013753636466],[148.17928179281796,-41.94707948544611],[148.18288182881832,-41.95889952633529],[148.19728197281972,-41.979162453573885],[148.19368193681936,-42.00111395808236],[148.18648186481863,-42.00111395808236],[148.1756817568176,-41.994359649002824],[148.16128161281614,-41.99098249446306],[148.14688146881468,-41.999425380812475],[148.14688146881468,-42.01293399897153],[148.1540815408154,-42.02813119440048],[148.1540815408154,-42.04501696709931],[148.15048150481505,-42.04839412163907],[148.13968139681396,-42.05177127617884],[148.12888128881292,-42.0551484307186],[148.13248132481328,-42.061902739798136],[148.13968139681396,-42.07203420341743],[148.14688146881468,-42.075411357957194],[148.1540815408154,-42.080477089766845],[148.16848168481687,-42.08385424430661],[148.21528215282154,-42.0939857079259],[148.11808118081183,-42.09060855338614],[148.09288092880928,-42.100740017005435],[148.08208082080824,-42.11593721243438],[148.07848078480788,-42.13957729421274],[148.07848078480788,-42.185168880499575],[148.07488074880752,-42.19698892138875],[148.03888038880388,-42.224006157706874],[148.03528035280357,-42.23413762132617],[148.03528035280357,-42.245957662215346],[148.0316803168032,-42.25440054856476],[148.01368013680138,-42.25777770310453],[148.01728017280175,-42.264532012184056],[148.01368013680138,-42.27804063034312],[147.98487984879853,-42.3185664848203],[147.96327963279634,-42.34051798932878],[147.97407974079744,-42.33545225751913],[147.9920799207992,-42.31687790755042],[148.00648006480066,-42.311812175740776],[148.0208802088021,-42.3185664848203],[148.0316803168032,-42.33207510297937],[148.0316803168032,-42.34727229840831],[148.00648006480066,-42.367535225646904],[148.0028800288003,-42.39624103923491],[148.01008010080102,-42.44352120279162],[148.01008010080102,-42.489112789078455],[148.00648006480066,-42.514441448126696],[147.99567995679956,-42.52457291174599],[147.98127981279816,-42.52963864355564],[147.9668796687967,-42.54821299352435],[147.95247952479525,-42.553278725334],[147.94167941679416,-42.54821299352435],[147.92727927279276,-42.52457291174599],[147.91647916479167,-42.517818602666466],[147.91647916479167,-42.52963864355564],[147.90927909279094,-42.53808152990506],[147.9020790207902,-42.5431472617147],[147.88767887678875,-42.54483583898459],[147.9380793807938,-42.59042742527142],[147.94167941679416,-42.61069035251001],[147.94167941679416,-42.62757612520884],[147.94167941679416,-42.63433043428837],[147.94527945279452,-42.6410847433679],[147.95247952479525,-42.64615047517755],[147.95607956079562,-42.64952762971731],[147.95607956079562,-42.65121620698719],[147.95607956079562,-42.67823344330532],[147.95607956079562,-42.69174206146438],[147.9488794887949,-42.70356210235356],[147.95247952479525,-42.720447875052386],[147.94167941679416,-42.73564507048133],[147.92007920079203,-42.74746511137051],[147.90567905679058,-42.75084226591028],[147.88767887678875,-42.760973729529574],[147.88047880478808,-42.781236656768165],[147.88047880478808,-42.804876738546525],[147.88767887678875,-42.820073933975465],[147.88407884078845,-42.82851682032488],[147.88047880478808,-42.83020539759476],[147.87687876878772,-42.83020539759476],[147.86607866078663,-42.826828243055],[147.85167851678517,-42.85215690210324],[147.84447844478444,-42.8656655202623],[147.8480784807848,-42.880862715691244],[147.8588785887859,-42.887617024770776],[147.87687876878772,-42.89268275658042],[147.89847898478985,-42.89268275658042],[147.91647916479167,-42.887617024770776],[147.91647916479167,-42.880862715691244],[147.88047880478808,-42.87241982934183],[147.89127891278912,-42.85046832483336],[147.92007920079203,-42.838648283944174],[147.9380793807938,-42.85722263391288],[147.9380793807938,-42.87241982934183],[147.94527945279452,-42.87410840661171],[147.95607956079562,-42.87073125207195],[147.9668796687967,-42.867354097532186],[147.97407974079744,-42.86904267480207],[147.98127981279816,-42.87073125207195],[147.98487984879853,-42.87579698388159],[147.98487984879853,-42.884239870231006],[147.98847988479883,-42.89268275658042],[147.99927999279993,-42.901125642929834],[148.00648006480066,-42.90956852927925],[148.0028800288003,-42.91294568381902],[147.99567995679956,-42.91969999289854],[147.9920799207992,-42.92814287924796],[147.9920799207992,-42.93658576559737],[147.99567995679956,-42.93827434286725],[148.0028800288003,-42.94165149740702],[148.00648006480066,-42.945028651946785],[148.01008010080102,-42.950094383756436],[148.01008010080102,-42.97035731099503],[147.99927999279993,-42.97711162007456],[147.98847988479883,-42.98048877461432],[147.97407974079744,-42.987243083693855],[147.96327963279634,-43.01088316547221],[147.9668796687967,-43.05985190629881],[147.9488794887949,-43.07336052445787],[147.97407974079744,-43.09868918350611],[147.9776797767978,-43.107132069855524],[147.9776797767978,-43.11895211074471],[147.9776797767978,-43.12570641982423],[147.96327963279634,-43.14090361525318],[147.98487984879853,-43.14259219252306],[147.99927999279993,-43.14765792433271],[148.0028800288003,-43.15778938795201],[147.99927999279993,-43.17636373792072],[147.9920799207992,-43.18142946973036],[147.98487984879853,-43.18480662427013],[147.98127981279816,-43.19156093334966],[147.9776797767978,-43.20338097423884],[147.98847988479883,-43.211823860588254],[147.99567995679956,-43.22026674693767],[147.99927999279993,-43.23039821055696]]],[[[90.79110791107911,22.495783442357194],[90.83430834308342,22.458634742419775],[90.8559085590856,22.434994660641422],[90.83430834308342,22.340434333527995],[90.83790837908379,22.178330915619256],[90.8271082710827,22.153002256571014],[90.77310773107735,22.0753277021564],[90.75870758707589,22.06181908399735],[90.75510755107553,22.065196238537112],[90.75150751507516,22.0753277021564],[90.72630726307261,22.053376197647935],[90.71910719107194,22.048310465838284],[90.69030690306903,22.007784611361103],[90.6831068310683,22.004407456821326],[90.6687066870669,21.9976531477418],[90.65790657906581,21.99258741593215],[90.64710647106472,21.994275993202038],[90.63990639906399,22.016227497710517],[90.65070650706508,22.04493331129852],[90.6687066870669,22.0753277021564],[90.6831068310683,22.10234493847453],[90.62550625506253,22.026358961329805],[90.61110611106113,22.02467038405993],[90.6039060390604,22.043244734028633],[90.60750607506077,22.071950547616638],[90.61830618306186,22.100656361204642],[90.63270632706326,22.12260786571312],[90.62190621906223,22.1445593702216],[90.63270632706326,22.18170807015902],[90.67230672306727,22.266136933653144],[90.67950679506794,22.28302270635197],[90.6831068310683,22.301597056320688],[90.6831068310683,22.360697260766585],[90.68670686706866,22.377583033465413],[90.67950679506794,22.407977424323292],[90.67950679506794,22.426551774292008],[90.6831068310683,22.438371815181185],[90.6831068310683,22.44512612426071],[90.67230672306727,22.463700474229427],[90.65790657906581,22.5244892559452],[90.64710647106472,22.548129337723566],[90.63270632706326,22.561637955882617],[90.57510575105749,22.598786655820035],[90.55710557105573,22.602163810359812],[90.55350553505536,22.63931251029723],[90.55710557105573,22.67477263296476],[90.57870578705786,22.75751291918901],[90.58590585905858,22.767644382808314],[90.59670596705968,22.776087269157728],[90.6147061470615,22.78115300096738],[90.63270632706326,22.786218732777016],[90.65070650706508,22.787907310046904],[90.66150661506617,22.75751291918901],[90.67230672306727,22.72205279652148],[90.6831068310683,22.69503556020335],[90.70110701107012,22.661264014805695],[90.71550715507158,22.637623933027342],[90.72990729907298,22.620738160328514],[90.7479074790748,22.59709807855016],[90.75510755107553,22.548129337723566],[90.76590765907662,22.517734946865673],[90.79110791107911,22.495783442357194]]],[[[29.918099180991817,45.690080821465955],[30.076500765007665,45.793084034928796],[30.126901269012706,45.8116583848975],[29.907299072990725,45.66644073968757],[29.806498064980644,45.614094844321215],[29.730897308973084,45.592143339812736],[29.781297812978124,45.61071768978147],[29.80289802898031,45.62253773067064],[29.81009810098101,45.63098061702004],[29.813698136981372,45.641112080639346],[29.82809828098283,45.64448923517912],[29.842498424984257,45.646177812449],[29.856898568985685,45.649554966988774],[29.87129871298714,45.65799785333817],[29.900099000990025,45.67994935784665],[29.918099180991817,45.690080821465955]]],[[[-163.07263072630727,54.68682051540097],[-163.0690306903069,54.68344336086119],[-163.05463054630548,54.67331189724189],[-163.0510305103051,54.66486901089249],[-163.06183061830617,54.65980327908284],[-163.15543155431556,54.66655758816236],[-163.16983169831698,54.67331189724189],[-163.15543155431556,54.67500047451179],[-163.11583115831158,54.68682051540097],[-163.12663126631267,54.69526340175037],[-163.1410314103141,54.70032913356002],[-163.15543155431556,54.70201771082992],[-163.16983169831698,54.70201771082992],[-163.1842318423184,54.69695197902027],[-163.21663216632166,54.68344336086119],[-163.22743227432275,54.68006620632144],[-163.23823238232382,54.68344336086119],[-163.2490324903249,54.690197669940716],[-163.26343263432634,54.70539486536967],[-163.27063270632706,54.708772019909446],[-163.29943299432995,54.71046059717932],[-163.31383313833138,54.71552632898897],[-163.34623346233462,54.752675028926376],[-163.36783367833678,54.76449506981555],[-163.4038340383404,54.74760929711675],[-163.41823418234182,54.7425435653071],[-163.43263432634325,54.73578925622755],[-163.4362343623436,54.725657792608274],[-163.4290342903429,54.69188624721062],[-163.4290342903429,54.68006620632144],[-163.45063450634507,54.663180433622614],[-163.50823508235084,54.65642612454306],[-163.5190351903519,54.636163197304484],[-163.53343533435333,54.636163197304484],[-163.62343623436234,54.61252311552613],[-163.67743677436775,54.61590027006588],[-163.7890378903789,54.63785177457436],[-164.1310413104131,54.62265457914543],[-164.18144181441815,54.61083453825623],[-164.21744217442173,54.59732592009718],[-164.3290432904329,54.53484856111152],[-164.33624336243363,54.52640567476212],[-164.33264332643327,54.516274211142814],[-164.3290432904329,54.50951990206329],[-164.3290432904329,54.502765592983735],[-164.33624336243363,54.48756839755481],[-164.36144361443615,54.458862583966805],[-164.40464404644047,54.43522250218845],[-164.45864458644587,54.42171388402937],[-164.50544505445055,54.41327099767997],[-164.57384573845738,54.41327099767997],[-164.609846098461,54.40820526587032],[-164.63144631446315,54.396385224981145],[-164.6530465304653,54.391319493171494],[-164.80064800648006,54.404828111330545],[-164.82584825848258,54.41158242041007],[-164.84384843848437,54.423402461299276],[-164.87264872648726,54.4571740066969],[-164.89064890648908,54.47068262485598],[-164.90864908649087,54.47574835666563],[-164.9050490504905,54.49601128390421],[-164.91224912249123,54.50951990206329],[-164.9230492304923,54.516274211142814],[-164.93024930249302,54.52640567476212],[-164.9338493384934,54.543291447460945],[-164.94104941049412,54.55848864288987],[-164.9590495904959,54.585505879208],[-164.93744937449375,54.59901449736705],[-164.90864908649087,54.61252311552613],[-164.87984879848798,54.62265457914543],[-164.7970479704797,54.63447462003461],[-164.73944739447396,54.65304897000331],[-164.69984699846998,54.67837762905154],[-164.57024570245702,54.837103892420515],[-164.5558455584556,54.84385820150004],[-164.54864548645486,54.88269547870735],[-164.54144541445413,54.887761210517],[-164.47664476644766,54.918155601374906],[-164.45144451444514,54.92490991045443],[-164.4010440104401,54.92828706499418],[-164.37944379443795,54.92322133318453],[-164.33624336243363,54.899581251406175],[-164.31464314643148,54.89282694232665],[-164.22464224642246,54.894515519596524],[-164.2138421384214,54.899581251406175],[-164.21024210242103,54.9080241377556],[-164.22464224642246,54.91984417864478],[-164.1922419224192,54.94179568315326],[-164.15624156241563,54.956992878582184],[-164.12024120241202,54.96543576493161],[-164.05184051840519,54.970501496741264],[-164.02664026640267,54.97894438309066],[-163.9870398703987,54.99583015578949],[-163.93663936639365,55.02960170118715],[-163.9150391503915,55.03635601026667],[-163.8250382503825,55.0431103193462],[-163.80343803438035,55.04817605115585],[-163.7818378183782,55.05661893750528],[-163.75663756637567,55.059996092045026],[-163.6810368103681,55.0447988966161],[-163.5730357303573,55.05661893750528],[-163.52623526235263,55.0431103193462],[-163.54063540635406,55.0431103193462],[-163.54423544235442,55.038044587536575],[-163.54423544235442,55.02791312391727],[-163.54063540635406,55.016093083028096],[-163.529835298353,55.00933877394857],[-163.50823508235084,55.00258446486902],[-163.47943479434795,54.98569869217019],[-163.46143461434613,54.970501496741264],[-163.44343443434434,54.953615724042436],[-163.4290342903429,54.935041374073705],[-163.42183421834218,54.91140129229535],[-163.42183421834218,54.86580970600852],[-163.4110341103411,54.84892393330969],[-163.37143371433714,54.793200883403586],[-163.35343353433535,54.77631511070476],[-163.32823328233283,54.766183647085455],[-163.3030330303303,54.761117915275804],[-163.23463234632345,54.76280649254568],[-163.2238322383224,54.766183647085455],[-163.21663216632166,54.77124937889511],[-163.2058320583206,54.779692265244506],[-163.19863198631987,54.78306941978428],[-163.18783187831878,54.78306941978428],[-163.1770317703177,54.77800368797463],[-163.16623166231662,54.77631511070476],[-163.14463144631446,54.769560801625204],[-163.130231302313,54.75436360619628],[-163.10863108631085,54.71552632898897],[-163.10143101431015,54.70539486536967],[-163.09063090630906,54.698640556290144],[-163.08343083430833,54.69357482448049],[-163.07263072630727,54.68682051540097]]],[[[137.14157141571417,75.65219589826455],[137.15237152371526,75.66063878461395],[137.159571595716,75.66908167096338],[137.16317163171635,75.67921313458268],[137.15597155971562,75.69103317547186],[137.1379713797138,75.69947606182126],[137.08037080370804,75.71467325725021],[137.06597065970664,75.72649329813939],[137.1487714877149,75.76364199807679],[137.159571595716,75.76870772988644],[137.1739717397174,75.78221634804552],[137.18477184771848,75.78728207985517],[137.19917199171994,75.78897065712505],[137.33237332373324,75.79065923439492],[137.41517415174155,75.7737734616961],[137.5879758797588,75.7737734616961],[137.69237692376925,75.74506764810809],[137.7175771757718,75.74337907083822],[137.7319773197732,75.74506764810809],[137.74277742777429,75.74844480264787],[137.74277742777429,75.75351053445752],[137.73917739177392,75.75857626626717],[137.73557735577356,75.76364199807679],[137.7319773197732,75.77039630715635],[137.71037710377107,75.78897065712505],[137.60237602376026,75.80923358436362],[137.5627756277563,75.82443077979258],[137.5339753397534,75.84638228430106],[137.46197461974623,75.86833378880954],[137.43317433174332,75.88690813877824],[137.42237422374222,75.91054822055659],[137.41517415174155,75.9392540341446],[137.41517415174155,75.9409426114145],[137.43317433174332,75.95276265230368],[137.71037710377107,76.01355143401943],[137.92277922779226,76.01692858855921],[138.0271802718027,76.03212578398816],[138.11718117181175,76.0760287930051],[138.10998109981102,76.08109452481474],[138.1027810278103,76.08447167935452],[138.0919809198092,76.0861602566244],[138.0811808118081,76.0861602566244],[138.07758077580775,76.08447167935452],[138.0127801278013,76.06927448392557],[137.9731797317973,76.05407728849664],[137.98037980379803,76.06252017484604],[137.9947799477995,76.0675859066557],[138.04518045180453,76.08447167935452],[138.0667806678067,76.08784883389427],[138.08838088380884,76.09122598843405],[138.13878138781388,76.11824322475218],[138.37638376383762,76.15708050195948],[138.35118351183513,76.15032619287993],[138.33678336783368,76.14526046107031],[138.32958329583295,76.13681757472088],[138.3439834398344,76.12330895656183],[138.36198361983622,76.1148660702124],[138.379983799838,76.106423183863],[138.39078390783908,76.07434021573522],[138.4087840878409,76.06420875211592],[138.43038430384303,76.06420875211592],[138.4519845198452,76.0675859066557],[138.44478444784448,76.077717370275],[138.4519845198452,76.08953741116417],[138.46638466384667,76.09966887478348],[138.48078480784807,76.10811176113288],[138.4735847358474,76.11148891567265],[138.4627846278463,76.11993180202205],[138.45918459184594,76.12330895656183],[138.49158491584916,76.16045765649923],[138.50958509585098,76.17565485192819],[138.5311853118531,76.18578631554749],[138.79038790387904,76.21280355186559],[139.04959049590497,76.23982078818372],[139.00639006390065,76.22800074729454],[138.92718927189276,76.22124643821502],[138.89838898388984,76.21955786094514],[138.91998919989203,76.21618070640537],[138.95958959589598,76.20773782005597],[138.9667896678967,76.20098351097641],[138.96318963189634,76.19422920189689],[138.95958959589598,76.18578631554749],[138.95958959589598,76.17734342919806],[138.97398973989743,76.15708050195948],[138.99558995589956,76.14526046107031],[139.1107911079111,76.0962917202437],[139.55359553595537,76.01186285674956],[139.6255962559626,75.98653419770133],[139.79479794797948,75.9780913113519],[139.82719827198275,75.9696484250025],[139.88119881198816,75.94600834322415],[139.909999099991,75.93756545687472],[139.89559895598956,75.92574541598555],[139.8775987759878,75.92574541598555],[139.8559985599856,75.9308111477952],[139.83439834398342,75.9308111477952],[139.82719827198275,75.92405683871567],[139.83079830798312,75.91392537509637],[139.82719827198275,75.90717106601684],[139.81999819998202,75.90379391147707],[139.79839798397984,75.90041675693732],[139.7911979119791,75.89366244785776],[139.79839798397984,75.88690813877824],[139.81639816398166,75.87846525242884],[139.8919989199892,75.86495663426976],[139.90279902799028,75.85989090246011],[139.93879938799387,75.8413165524914],[139.9567995679957,75.83625082068176],[140.15120151201512,75.80079069801423],[140.25920259202593,75.8311850888721],[140.29880298802988,75.82611935706245],[140.3420034200342,75.81598789344318],[140.48240482404827,75.80079069801423],[140.51120511205113,75.79065923439492],[140.53640536405368,75.7737734616961],[140.5472054720547,75.75519911172739],[140.46800468004682,75.70960752544056],[140.45720457204573,75.70454179363091],[140.45360453604536,75.70116463909113],[140.44640446404463,75.68090171185256],[140.44280442804427,75.67414740277303],[140.4356043560436,75.66401593915373],[140.43200432004323,75.6572616300742],[140.4392043920439,75.65050732099468],[140.45360453604536,75.64544158918503],[140.47520475204755,75.64037585737537],[140.6768067680677,75.62349008467655],[140.7668076680767,75.63193297102595],[140.90360903609036,75.61673577559702],[140.98640986409868,75.62011293013677],[141.029610296103,75.63024439375607],[141.0620106201062,75.65050732099468],[141.04041040410408,75.65895020734408],[140.9972099720997,75.66908167096338],[140.97560975609758,75.67752455731278],[140.99000990009904,75.68596744366221],[140.9972099720997,75.68934459820196],[141.0080100801008,75.69103317547186],[140.97560975609758,75.70623037090078],[140.8640086400864,75.73831333902856],[140.89280892808927,75.76870772988644],[140.90360903609036,75.80923358436362],[140.90360903609036,75.84807086157093],[140.87840878408787,75.89703960239754],[140.8856088560886,75.9122367978265],[140.89640896408963,75.92912257052532],[140.90360903609036,75.94769692049402],[140.90720907209072,75.9679598477326],[140.90720907209072,75.98484562043143],[140.91800918009181,75.99835423859051],[140.93240932409327,76.01355143401943],[140.9648096480965,76.03550293852791],[141.00081000810007,76.04732297941709],[141.03681036810372,76.05238871122674],[141.23121231212315,76.05745444303639],[141.58401584015843,76.00679712493991],[141.62361623616238,76.01355143401943],[141.60561605616056,76.03043720671826],[141.51561515615157,76.05407728849664],[141.4868148681487,76.07265163846535],[141.4580145801458,76.09966887478348],[141.4472144721447,76.1047346065931],[141.39681396813967,76.1249975338317],[141.389613896139,76.12837468837148],[141.389613896139,76.13344042018113],[141.389613896139,76.13850615199075],[141.389613896139,76.14188330653053],[141.389613896139,76.1435718838004],[141.37161371613718,76.15370334741971],[141.3248132481325,76.17227769738841],[141.31041310413104,76.18409773827759],[141.3680136801368,76.18072058373784],[141.59481594815952,76.13006326564135],[141.70281702817027,76.12162037929193],[141.91161911619116,76.06083159757617],[142.1456214562146,76.01186285674956],[142.42642426424266,75.91392537509637],[142.46962469624697,75.88353098423849],[142.4876248762488,75.87677667515894],[142.54522545225456,75.86326805699989],[142.93042930429306,75.832873666142],[143.060030600306,75.80754500709375],[143.2760327603276,75.81598789344318],[143.38403384033842,75.80754500709375],[143.35883358833587,75.83456224341188],[143.38403384033842,75.84638228430106],[143.58563585635858,75.87002236607941],[143.68643686436866,75.86326805699989],[143.78363783637838,75.8413165524914],[143.78723787237874,75.83793939795166],[143.79443794437947,75.832873666142],[143.8016380163802,75.82949651160223],[143.8160381603816,75.82949651160223],[143.84843848438487,75.8413165524914],[143.85923859238596,75.8413165524914],[143.9456394563946,75.83456224341188],[144.19044190441906,75.76701915261657],[144.42444424444244,75.73662476175869],[144.60804608046084,75.69778748455138],[144.70524705247055,75.69778748455138],[144.72324723247232,75.6944103300116],[144.73764737647377,75.68596744366221],[144.76284762847632,75.66401593915373],[144.809648096481,75.64375301191512],[145.17325173251731,75.6082928892476],[145.27765277652776,75.58296423019937],[145.3676536765368,75.54074979845228],[145.38565385653857,75.52555260302336],[145.38925389253893,75.51710971667393],[145.3820538205382,75.51204398486428],[145.26685266852672,75.5204868712137],[145.07245072450723,75.5002239439751],[144.9680496804968,75.47320670765697],[144.7808478084781,75.44618947133887],[144.73044730447305,75.43099227590992],[144.71244712447128,75.42086081229061],[144.69804698046983,75.40397503959178],[144.69444694446946,75.39890930778213],[144.69804698046983,75.39384357597248],[144.7016470164702,75.37864638054356],[144.69804698046983,75.36851491692425],[144.67284672846728,75.34994056695555],[144.66564665646655,75.34149768060612],[144.67644676446764,75.32798906244707],[144.69804698046983,75.32123475336755],[144.89244892448926,75.29252893977954],[144.9428494284943,75.27395458981081],[144.8888488884889,75.25875739438189],[144.770047700477,75.26044597165176],[144.71964719647195,75.24524877622281],[144.72684726847268,75.2266744262541],[144.71964719647195,75.20134576720588],[144.70524705247055,75.17601710815762],[144.68724687246873,75.16081991272867],[144.66204662046624,75.1506884491094],[144.57564575645756,75.13717983095032],[144.49644496444967,75.11185117190209],[144.4172441724417,75.069636740155],[144.37764377643776,75.05275096745618],[144.3308433084331,75.04599665837665],[144.15444154441548,75.04599665837665],[143.9996399964,75.02573373113808],[143.97083970839708,75.02742230840795],[143.9456394563946,75.03417661748747],[143.8448384483845,75.04937381291643],[143.77643776437765,75.07639104923456],[143.75123751237516,75.08145678104418],[143.51723517235172,75.08652251285383],[143.41643416434164,75.06625958561526],[143.35883358833587,75.07132531742491],[143.25443254432548,75.09496539920326],[143.08163081630818,75.11016259463221],[143.04923049230496,75.12873694460092],[143.0348303483035,75.12535979006114],[142.98802988029882,75.13549125368044],[142.9448294482945,75.13380267641057],[142.89802898028984,75.14224556275997],[142.88362883628838,75.14731129456962],[142.8728287282873,75.15744275818892],[142.8728287282873,75.16250848999857],[142.8728287282873,75.1692627990781],[142.8728287282873,75.17432853088775],[142.85842858428583,75.18445999450705],[142.84402844028443,75.2165429626348],[142.8368283682837,75.22498584898423],[142.8080280802808,75.23342873533363],[142.739627396274,75.23005158079388],[142.7072270722707,75.23849446714328],[142.71082710827108,75.25538023984211],[142.6748267482675,75.26720028073129],[142.66762667626676,75.28408605343012],[142.66042660426604,75.30941471247837],[142.64242642426427,75.31954617609765],[142.59202592025923,75.32798906244707],[142.53442534425346,75.3448748351459],[142.50562505625055,75.36007203057483],[142.49482494824952,75.37526922600378],[142.5020250202502,75.38540068962308],[142.5308253082531,75.41072934867131],[142.53442534425346,75.42761512137014],[142.5308253082531,75.43943516225931],[142.520025200252,75.44618947133887],[142.50922509225092,75.45125520314852],[142.51642516425164,75.46476382130757],[142.53442534425346,75.47658386219675],[142.6208262082621,75.4900924803558],[142.62442624426245,75.49515821216545],[142.62802628026282,75.50697825305463],[142.63162631626318,75.51204398486428],[142.6388263882639,75.51542113940405],[142.72522725227253,75.55088126207158],[142.8476284762848,75.56101272569089],[143.01323013230132,75.60322715743794],[143.0348303483035,75.6184243528669],[143.04203042030423,75.6471301664549],[143.00243002430028,75.70791894817069],[142.9052290522905,75.72480472086951],[142.71442714427144,75.71129610271043],[142.70362703627035,75.71467325725021],[142.68562685626858,75.72649329813939],[142.6748267482675,75.73155902994904],[142.66042660426604,75.73324760721891],[142.61722617226172,75.73324760721891],[142.51642516425164,75.71973898905986],[142.33642336423367,75.72649329813939],[142.289622896229,75.71129610271043],[142.32562325623257,75.71129610271043],[142.36522365223652,75.70623037090078],[142.40842408424083,75.69609890728151],[142.43362433624338,75.67752455731278],[142.4120241202412,75.6657045164236],[142.37962379623798,75.66232736188385],[142.05922059220592,75.6673930936935],[142.00882008820088,75.66401593915373],[142.03042030420306,75.6555730528043],[142.13122131221314,75.6471301664549],[142.18162181621818,75.6369987028356],[142.20682206822067,75.63531012556572],[142.18162181621818,75.6285558164862],[142.00882008820088,75.62349008467655],[142.03402034020343,75.61335862105724],[142.070020700207,75.60660431197772],[142.13122131221314,75.60153858016807],[142.13842138421387,75.59478427108854],[142.12762127621278,75.58127565292946],[142.08802088020883,75.54412695299206],[142.0808208082081,75.53399548937276],[142.08442084420847,75.52555260302336],[142.09882098820987,75.51710971667393],[142.1888218882189,75.4715181303871],[142.16362163621636,75.42254938956049],[142.15642156421563,75.39890930778213],[142.16362163621636,75.37864638054356],[142.19962199621995,75.34825198968565],[142.40842408424083,75.26720028073129],[142.42642426424266,75.25200308530233],[142.43002430024302,75.23849446714328],[142.42642426424266,75.22498584898423],[142.42642426424266,75.21316580809506],[142.4408244082441,75.20303434447575],[142.53802538025383,75.1793942626974],[142.58122581225814,75.1591313354588],[142.610026100261,75.12198263552139],[142.60282602826027,75.11522832644184],[142.62802628026282,75.09665397647314],[142.66762667626676,75.08821109012374],[142.83322833228334,75.07132531742491],[143.01323013230132,75.06457100834538],[143.2436324363244,75.02742230840795],[143.44883448834491,75.00547080389947],[143.56043560435603,75.01560226751877],[143.61443614436143,75.01053653570912],[143.66843668436684,74.9852078766609],[143.70803708037084,74.94805917672346],[143.69723697236975,74.93792771310416],[143.66843668436684,74.92948482675476],[143.4632346323463,74.90077901316675],[143.00243002430028,74.88220466319802],[142.92322923229233,74.89402470408723],[142.89802898028984,74.89064754954745],[142.84402844028443,74.8771389313884],[142.82242822428225,74.8771389313884],[142.77922779227794,74.89233612681733],[142.75762757627575,74.8957132813571],[142.71442714427144,74.8957132813571],[142.67842678426786,74.89064754954745],[142.649626496265,74.8754503541185],[142.62442624426245,74.8484331178004],[142.6928269282693,74.85349884961002],[142.71442714427144,74.8484331178004],[142.67842678426786,74.83323592237144],[142.51282512825128,74.81803872694249],[142.35442354423543,74.82479303602202],[141.9728197281973,74.93455055856441],[141.9728197281973,74.94468202218368],[142.00882008820088,74.95481348580299],[142.0808208082081,74.96494494942229],[142.1168211682117,74.96325637215241],[142.19242192421927,74.95312490853311],[142.29682296822972,74.92273051767523],[142.3328233282333,74.92104194040533],[142.36522365223652,74.93117340402463],[142.34722347223476,74.94299344491381],[142.32562325623257,74.95143633126324],[142.24282242822431,74.97507641304159],[142.2356223562236,74.99027360847052],[142.19962199621995,75.0037822266296],[141.84321843218436,74.99871649481994],[141.67401674016742,74.96494494942229],[141.37161371613718,74.91935336313546],[141.11241112411125,74.91597620859568],[140.63720637206376,74.8754503541185],[140.55080550805508,74.8771389313884],[140.35280352803528,74.83999023145097],[140.06840068400686,74.82817019056179],[140.00720007200073,74.86194173595945],[139.99639996399964,74.87376177684862],[139.98559985599854,74.89402470408723],[139.9747997479975,74.9041561677065],[139.94959949599496,74.91091047678606],[139.8919989199892,74.91259905405593],[139.87039870398706,74.92441909494511],[139.86319863198634,74.93455055856441],[139.8559985599856,74.95650206307289],[139.84879848798488,74.96494494942229],[139.8235982359824,74.97169925850181],[139.71919719197194,74.96494494942229],[139.69759697596976,74.96832210396207],[139.65079650796508,74.98014214485124],[139.6255962559626,74.97845356758134],[139.4959949599496,74.94637059945359],[139.45999459994601,74.93117340402463],[139.4815948159482,74.92273051767523],[139.4815948159482,74.9058447449764],[139.47439474394747,74.88727039500768],[139.4815948159482,74.86869604503897],[139.51759517595178,74.85518742687992],[139.56439564395646,74.85856458141967],[139.61119611196114,74.87038462230885],[139.64359643596435,74.88895897227758],[139.63279632796326,74.8771389313884],[139.61839618396186,74.87038462230885],[139.58959589595895,74.86194173595945],[139.5607956079561,74.84505596326062],[139.54279542795427,74.82479303602202],[139.52839528395288,74.80115295424366],[139.50319503195033,74.77582429519543],[139.49959499594996,74.77244714065566],[139.4959949599496,74.767381408846],[139.34479344793448,74.68801827716152],[139.23679236792367,74.66268961811329],[139.12879128791292,74.65255815449399],[139.01719017190175,74.65762388630364],[138.81558815588158,74.71334693620977],[138.49158491584916,74.74542990433753],[138.16398163981643,74.77582429519543],[138.1135811358114,74.79102149062436],[138.06318063180635,74.79608722243401],[137.8939789397894,74.8467445405305],[137.86877868778691,74.86025315868957],[137.84717847178473,74.88220466319802],[137.8291782917829,74.90753332224628],[137.8147781477815,74.93117340402463],[137.81117811178115,74.94468202218368],[137.81117811178115,74.95650206307289],[137.80757807578078,74.96663352669216],[137.79317793177933,74.97507641304159],[137.6527765277653,75.0223565765983],[137.43317433174332,75.0510623901863],[137.1487714877149,75.13380267641057],[137.13437134371344,75.14224556275997],[137.10197101971022,75.17095137634797],[137.0839708397084,75.18108283996727],[137.03357033570336,75.20472292174563],[136.939969399694,75.26382312619154],[136.91116911169115,75.27395458981081],[136.9219692196922,75.2975946715892],[136.92556925569255,75.30941471247837],[136.92556925569255,75.32123475336755],[136.91116911169115,75.32967763971695],[136.8751687516875,75.34994056695555],[136.8607686076861,75.36176060784473],[136.98316983169832,75.38877784416286],[137.0407704077041,75.38877784416286],[137.11637116371168,75.34318625787603],[137.15237152371526,75.33643194879647],[137.25317253172534,75.33643194879647],[137.37557375573755,75.34994056695555],[137.4007740077401,75.35669487603508],[137.42237422374222,75.37020349419413],[137.42957429574295,75.38877784416286],[137.41877418774192,75.40735219413156],[137.39717397173973,75.41748365775086],[137.35037350373506,75.42423796683039],[137.27477274772747,75.42592654410026],[137.20637206372066,75.41748365775086],[137.159571595716,75.40566361686169],[137.14157141571417,75.41072934867131],[137.13077130771308,75.43099227590992],[137.14517145171453,75.43605800771957],[137.14517145171453,75.45125520314852],[137.1487714877149,75.46476382130757],[137.17037170371702,75.4715181303871],[137.29997299973002,75.4715181303871],[137.28557285572856,75.48502674854615],[137.26037260372607,75.50528967578475],[137.2459724597246,75.51204398486428],[137.20637206372066,75.52724118029323],[137.18477184771848,75.53906122118241],[137.18117181171812,75.55088126207158],[137.18477184771848,75.55763557115111],[137.18837188371884,75.56101272569089],[137.18837188371884,75.56438988023064],[137.1919719197192,75.56776703477041],[137.1919719197192,75.57452134384994],[137.18837188371884,75.57620992111984],[137.1919719197192,75.57958707565959],[137.20637206372066,75.58802996200902],[137.2279722797228,75.59309569381864],[137.27837278372783,75.59140711654877],[137.2927729277293,75.60153858016807],[137.26397263972643,75.6082928892476],[137.22437224372243,75.6369987028356],[137.2027720277203,75.64375301191512],[137.18477184771848,75.64544158918503],[137.15597155971562,75.65219589826455],[137.14157141571417,75.65219589826455]]],[[[20.20880208802089,78.63760051141716],[20.180001800018005,78.63084620233764],[20.1260012600126,78.63760051141716],[20.097200972009716,78.63760051141716],[20.05040050400504,78.62915762506773],[20.032400324003248,78.61902616144846],[20.028800288002884,78.6038289660195],[19.762397623976256,78.62409189325811],[19.675996759967603,78.61058327509903],[19.58239582395825,78.58187746151103],[19.578795787957887,78.5751231524315],[19.585995859958615,78.56161453427245],[19.603996039960407,78.5464173388435],[19.65799657996581,78.5278429888748],[19.679596795967967,78.51433437071572],[19.33759337593378,78.49069428893736],[18.991989919899197,78.46705420715901],[18.963189631896313,78.45185701173006],[19.009990099901017,78.4282169299517],[19.031590315903173,78.41133115725287],[19.067590675906757,78.37755961185522],[19.063990639906393,78.36405099369617],[19.049590495904965,78.34378806645756],[19.031590315903173,78.33534518010816],[18.99558995589956,78.32859087102864],[18.981189811898133,78.31508225286956],[18.99558995589956,78.31508225286956],[18.984789847898497,78.30832794379003],[18.97038970389704,78.30157363471051],[18.955989559895613,78.29481932563098],[18.955989559895613,78.2813107074719],[18.966789667896677,78.27455639839238],[19.031590315903173,78.25429347115377],[19.063990639906393,78.24922773934415],[19.07839078390785,78.2424734302646],[19.085590855908578,78.23065338937542],[19.07839078390785,78.22052192575615],[19.060390603906058,78.21039046213684],[19.042390423904237,78.20194757578741],[19.031590315903173,78.19857042124767],[18.948789487894885,78.19519326670789],[18.92718927189273,78.18843895762836],[18.919989199892,78.17830749400906],[18.934389343893457,78.16817603038976],[18.99558995589956,78.13947021680175],[19.067590675906757,78.1259615986427],[19.099990999910005,78.10232151686435],[19.063990639906393,78.0871243214354],[18.811988119881192,78.02802411698951],[18.581585815858176,78.05504135330762],[18.49158491584916,78.04828704422809],[18.405184051840536,78.02126980790999],[18.42678426784269,78.00607261248103],[18.502385023850252,77.98074395343278],[18.477184771847732,77.9604810261942],[18.44118441184412,77.95203813984477],[18.405184051840536,77.94697240803512],[18.372783727837287,77.93852952168572],[18.37638376383765,77.92502090352667],[18.36558365583656,77.91488943990737],[18.347583475834767,77.90813513082784],[18.329583295832975,77.90475797628807],[18.36558365583656,77.87774073996994],[18.379983799838016,77.87098643089041],[18.397983979839807,77.86592069908076],[18.419584195841963,77.86254354454101],[18.437584375843755,77.85747781273136],[18.448384483844848,77.84228061730241],[18.437584375843755,77.8237062673337],[18.45198451984521,77.79162329920592],[18.455584555845576,77.7747375265071],[18.444784447844484,77.7561631765384],[18.354783547835495,77.68186577666356],[18.347583475834767,77.6666685812346],[18.361983619836195,77.64133992218638],[18.354783547835495,77.6295198812972],[18.2827828278283,77.58223971774046],[18.311583115831155,77.55522248142236],[18.30078300783009,77.5197623587548],[18.23958239582396,77.49443369970658],[18.192781927819283,77.48936796789692],[18.095580955809567,77.5011880087861],[18.0307803078031,77.4927451224367],[18.01278012780128,77.4927451224367],[17.991179911799122,77.49612227697645],[17.958779587795874,77.51300804967528],[17.940779407794082,77.51300804967528],[17.81477814778148,77.4927451224367],[17.74637746377465,77.49949943151623],[17.728377283772858,77.4927451224367],[17.735577355773557,77.46741646338845],[17.703177031770338,77.45221926795949],[17.623976239762413,77.44546495887997],[17.627576275762777,77.43533349526066],[17.634776347763477,77.42857918618114],[17.64557645576457,77.42520203164139],[17.659976599765997,77.42520203164139],[17.652776527765297,77.41507056802209],[17.641976419764205,77.41000483621244],[17.631176311763113,77.40493910440279],[17.616776167761685,77.39649621805339],[17.59517595175953,77.36610182719548],[17.56997569975701,77.35259320903643],[17.51237512375124,77.33739601360747],[17.48717487174872,77.32219881817855],[17.49437494374945,77.315444509099],[17.483574835748357,77.30531304547972],[17.48717487174872,77.2968701591303],[17.497974979749813,77.28505011824112],[17.501575015750177,77.27154150008207],[17.501575015750177,77.25465572738324],[17.49437494374945,77.24790141830368],[17.4619746197462,77.23270422287476],[17.433174331743317,77.21412987290606],[17.422374223742253,77.19386694566745],[17.429574295742952,77.17360401842885],[17.447574475744773,77.1516525139204],[17.429574295742952,77.13645531849144],[17.389973899739005,77.12463527760227],[17.371973719737213,77.11619239125284],[17.364773647736484,77.11112665944319],[17.364773647736484,77.10606092763356],[17.364773647736484,77.09255230947448],[17.339573395733964,77.08073226858531],[17.332373323733236,77.07566653677566],[17.34317343173433,77.070600804966],[17.346773467734693,77.06384649588648],[17.346773467734693,77.05709218680695],[17.3359733597336,77.04696072318765],[17.321573215732172,77.0435835686479],[17.098370983709856,77.05540360953708],[17.112771127711284,77.03851783683825],[17.206372063720636,77.01656633232977],[17.263972639726404,76.9946148278213],[17.325173251732537,76.97941763239234],[17.289172891728924,76.95240039607424],[17.087570875708764,76.87472584165963],[17.055170551705515,76.85446291442102],[17.062370623706244,76.83588856445232],[16.979569795697955,76.82575710083302],[16.936369363693643,76.81393705994384],[16.91836918369185,76.79367413270526],[16.94356943569437,76.78016551454618],[17.080370803708036,76.76496831911726],[17.13437134371344,76.75145970095818],[17.15957159571596,76.73795108279913],[17.191971919719208,76.72444246464005],[17.199171991719936,76.71937673283043],[17.191971919719208,76.69742522832195],[17.15957159571596,76.68391661016287],[17.091170911709128,76.67040799200382],[17.098370983709856,76.65521079657486],[17.105571055710556,76.65014506476521],[17.07677076770767,76.64170217841581],[17.011970119701203,76.63494786933629],[16.99396993969941,76.61637351936756],[17.004770047700475,76.60624205574828],[16.99396993969941,76.59948774666873],[16.90756907569076,76.59104486031933],[16.864368643686447,76.57584766489038],[16.810368103681043,76.56740477854098],[16.59076590765909,76.57753624216028],[16.56556565565657,76.5826019739699],[16.558365583655842,76.5927334375892],[16.561965619656206,76.60624205574828],[16.54756547565475,76.61130778755793],[16.500765007650074,76.60961921028803],[16.453964539645398,76.61975067390733],[16.43236432364324,76.62312782844711],[16.40716407164072,76.61637351936756],[16.403564035640358,76.61130778755793],[16.399963999639994,76.60455347847838],[16.399963999639994,76.59948774666873],[16.392763927639294,76.59611059212898],[16.3819638196382,76.5944220148591],[16.374763747637473,76.5927334375892],[16.367563675636774,76.58766770577955],[16.36396363963641,76.58091339670003],[16.36396363963641,76.5741590876205],[16.342363423634254,76.57247051035063],[16.317163171631734,76.57922481943015],[16.29556295562955,76.59611059212898],[16.30636306363064,76.6028649012085],[16.335163351633526,76.61637351936756],[16.324363243632433,76.62481640571698],[16.324363243632433,76.63494786933629],[16.327963279632797,76.64507933295556],[16.335163351633526,76.65689937384477],[16.324363243632433,76.65858795111464],[16.309963099631005,76.66027652838451],[16.28836288362885,76.67040799200382],[16.299162991629913,76.69067091924242],[16.299162991629913,76.7024909601316],[16.284762847628485,76.70755669194122],[16.176761767617677,76.72275388737017],[16.119161191611937,76.73795108279913],[16.000360003600036,76.74808254641843],[15.942759427594297,76.75990258730761],[15.881558815588164,76.79367413270526],[15.679956799568004,76.85108575988127],[15.499954999549999,76.8764144189295],[15.528755287552883,76.9068088097874],[15.579155791557923,76.92031742794646],[15.72675726757268,76.93044889156576],[15.741157411574136,76.93551462337541],[15.773557735577356,76.95240039607424],[15.80235802358024,76.95408897334411],[15.863558635586372,76.94902324153446],[15.892358923589256,76.95240039607424],[15.942759427594297,76.96422043696342],[16.047160471604712,76.97772905512247],[16.18756187561877,76.97435190058269],[16.216362163621653,76.96759759150316],[16.23076230762308,76.96084328242364],[16.23796237962381,76.95408897334411],[16.234362343623445,76.94733466426459],[16.219962199622017,76.93889177791516],[16.241562415624173,76.93213746883563],[16.33156331563316,76.94564608699469],[16.317163171631734,76.97097474604294],[16.327963279632797,76.98279478693212],[16.35676356763568,76.98617194147187],[16.468364683646854,76.98279478693212],[16.507965079650802,76.98617194147187],[16.529565295652958,76.99968055963095],[16.482764827648282,77.00643486871047],[16.317163171631734,77.0047462914406],[16.28116281162812,76.9946148278213],[16.2559625596256,76.99292625055142],[16.241562415624173,76.9946148278213],[16.198361983619833,77.01318917779],[16.16236162361625,77.01994348686952],[16.126361263612637,77.02163206413942],[16.090360903609053,77.02669779594908],[16.06156061560617,77.04696072318765],[16.06156061560617,77.0520264549973],[16.065160651606533,77.06384649588648],[16.06156061560617,77.06891222769613],[16.057960579605805,77.07228938223591],[16.050760507605077,77.07566653677566],[16.047160471604712,77.07904369131543],[16.02916029160292,77.08579800039496],[16.0039600396004,77.08579800039496],[15.97875978759788,77.08073226858531],[15.960759607596088,77.07566653677566],[15.957159571595724,77.0621579186166],[15.885158851588528,77.070600804966],[15.856358563585644,77.06891222769613],[15.85275852758528,77.05371503226718],[15.867158671586736,77.04020641410813],[15.910359103591048,77.01994348686952],[15.885158851588528,77.0148777550599],[15.809558095580968,77.01318917779],[15.741157411574136,77.00136913690082],[15.719557195571952,77.00136913690082],[15.690756907569096,77.00643486871047],[15.345153451534514,77.00812344598035],[15.298352983529838,77.01825490959965],[15.237152371523734,77.0233206414093],[15.193951939519394,77.0334521050286],[15.154351543515446,77.04864930045753],[15.121951219512198,77.06891222769613],[15.136351363513654,77.07228938223591],[15.143551435514354,77.07904369131543],[15.13995139951399,77.08579800039496],[15.125551255512562,77.08917515493474],[15.085950859508614,77.08748657766483],[15.067950679506794,77.08917515493474],[15.049950499505002,77.09592946401426],[15.060750607506094,77.10774950490344],[15.067950679506794,77.11281523671309],[15.075150751507522,77.11619239125284],[15.03915039150391,77.13476674122157],[14.610746107461068,77.18542405931805],[14.473944739447404,77.1786697502385],[14.448744487444884,77.18204690477828],[14.398343983439844,77.19555552293733],[14.373143731437324,77.1989326774771],[14.322743227432284,77.23945853195428],[14.315543155431556,77.24283568649406],[14.311943119431191,77.24452426376394],[14.308343083430827,77.24621284103381],[14.308343083430827,77.25634430465311],[14.308343083430827,77.26141003646276],[14.322743227432284,77.27998438643147],[14.157141571415707,77.29349300459054],[14.139141391413915,77.30193589093994],[14.139141391413915,77.31882166363877],[14.149941499415007,77.33739601360747],[14.164341643416435,77.34921605449665],[13.998739987399887,77.39987337259313],[13.973539735397367,77.41000483621244],[13.95913959139591,77.42520203164139],[13.966339663396639,77.42857918618114],[13.980739807398095,77.43871064980044],[13.973539735397367,77.44039922707032],[13.969939699397003,77.44377638161009],[13.966339663396639,77.44546495887997],[13.95913959139591,77.44546495887997],[13.95913959139591,77.45221926795949],[14.031140311403135,77.44715353614987],[14.052740527405291,77.45221926795949],[14.023940239402407,77.47417077246797],[13.95193951939521,77.48767939062705],[13.919539195391962,77.49949943151623],[13.923139231392327,77.50963089513553],[13.919539195391962,77.51807378148493],[13.915939159391598,77.52651666783433],[13.912339123391234,77.53495955418376],[13.95193951939521,77.53833670872353],[14.074340743407447,77.56873109958141],[14.441544415444156,77.58561687228024],[14.52074520745208,77.57379683139106],[14.59634596345964,77.53495955418376],[14.581945819458213,77.52313951329458],[14.563945639456392,77.51469662694515],[14.5459454594546,77.50963089513553],[14.527945279452808,77.50794231786563],[14.5459454594546,77.4927451224367],[14.581945819458213,77.4910565451668],[14.650346503465045,77.49949943151623],[14.711547115471149,77.49443369970658],[14.740347403474033,77.49781085424632],[14.761947619476189,77.51300804967528],[14.761947619476189,77.53833670872353],[14.765547655476553,77.54509101780306],[14.772747727477281,77.54846817234281],[14.90594905949061,77.54846817234281],[14.995949959499598,77.56366536777176],[15.042750427504274,77.56704252231154],[15.143551435514354,77.54509101780306],[15.496354963549635,77.53833670872353],[15.85275852758528,77.53158239964398],[15.8779587795878,77.52313951329458],[15.895958959589592,77.51638520421506],[15.942759427594297,77.50287658605598],[16.000360003600036,77.49443369970658],[16.03636036360365,77.4826136588174],[16.10476104761048,77.44884211341974],[16.126361263612637,77.44208780434022],[16.198361983619833,77.43871064980044],[16.219962199622017,77.44039922707032],[16.219962199622017,77.44715353614987],[16.191161911619133,77.46572788611857],[16.219962199622017,77.47417077246797],[16.309963099631005,77.46572788611857],[16.27036270362703,77.48767939062705],[16.097560975609753,77.49949943151623],[16.02916029160292,77.51469662694515],[15.989559895598973,77.53158239964398],[15.949959499594996,77.54171386326328],[15.935559355593568,77.55184532688259],[15.899558995589956,77.57041967685129],[15.845558455584552,77.57886256320072],[15.406354063540647,77.6008140677092],[14.967149671496713,77.62276557221765],[14.909549095490974,77.61601126313812],[14.884348843488453,77.61769984040802],[14.866348663486633,77.62276557221765],[14.833948339483413,77.6379627676466],[14.815948159481593,77.64471707672612],[14.772747727477281,77.6480942312659],[14.754747547475489,77.65315996307555],[14.740347403474033,77.66498000396473],[14.859148591485933,77.68355435393343],[15.03195031950321,77.6852429312033],[15.11475114751147,77.70381728117204],[15.489154891548935,77.72576878568051],[15.863558635586372,77.74940886745887],[16.241562415624173,77.77304894923722],[16.33156331563316,77.79837760828545],[16.601566015660154,77.80513191736497],[16.871568715687175,77.81188622644453],[16.954369543695435,77.7933118764758],[17.011970119701203,77.79668903101557],[17.03357033570336,77.79162329920592],[17.055170551705515,77.78318041285652],[17.080370803708036,77.77642610377697],[17.105571055710556,77.7747375265071],[17.123571235712376,77.78149183558662],[17.080370803708036,77.79668903101557],[17.02637026370263,77.80850907190475],[16.91836918369185,77.81526338098428],[16.88236882368824,77.8220176900638],[16.846368463684655,77.83890346276263],[16.788767887678887,77.87774073996994],[16.813968139681407,77.88956078085911],[16.84276842768429,77.88618362631937],[16.871568715687175,77.87774073996994],[16.90036900369003,77.87774073996994],[16.96876968769689,77.89969224447842],[16.99396993969941,77.90475797628807],[16.98316983169832,77.90813513082784],[16.97596975969759,77.91151228536759],[16.965169651696527,77.91826659444712],[16.961569615696163,77.92502090352667],[16.972369723697255,77.92502090352667],[16.986769867698683,77.92839805806642],[16.997569975699776,77.9317752126062],[17.00837008370084,77.93852952168572],[16.759967599676003,77.91151228536759],[16.727567275672754,77.9030693990182],[16.713167131671327,77.87774073996994],[16.684366843668442,77.86592069908076],[16.234362343623445,77.85072350365184],[15.784357843578448,77.83552630822288],[15.597155971559715,77.87774073996994],[15.553955539555403,77.87942931723984],[15.30915309153093,77.85747781273136],[15.08955089550895,77.79162329920592],[14.769147691476917,77.78149183558662],[14.718747187471877,77.76967179469744],[14.6719467194672,77.76967179469744],[14.567545675456756,77.7933118764758],[14.52074520745208,77.78149183558662],[14.632346323463253,77.76798321742757],[14.599945999460004,77.75954033107814],[14.459544595445948,77.75785175380827],[14.355143551435532,77.76798321742757],[14.2939429394294,77.75954033107814],[14.261542615426151,77.75954033107814],[14.211142111421111,77.78149183558662],[14.175141751417527,77.7848689901264],[14.11034110341103,77.7747375265071],[14.013140131401315,77.73421167202991],[13.955539555395575,77.72070305387086],[13.915939159391598,77.72914594022026],[13.887138871388714,77.74434313564922],[13.85833858338583,77.74434313564922],[13.797137971379726,77.73252309476004],[13.771937719377206,77.73421167202991],[13.753937539375414,77.73927740383957],[13.735937359373594,77.74940886745887],[13.717937179371802,77.76798321742757],[13.77553775537757,77.7747375265071],[13.80073800738009,77.7848689901264],[13.822338223382246,77.80175476282523],[13.786337863378634,77.82708342187345],[13.743137431374322,77.83721488549276],[13.696336963369646,77.84059204003253],[13.64953649536497,77.84903492638193],[13.663936639366398,77.86085496727111],[13.671136711367126,77.87605216270006],[13.671136711367126,77.89462651266876],[13.660336603366034,77.90813513082784],[13.653136531365334,77.91826659444712],[13.63153631536315,77.9503495625749],[13.63153631536315,77.9604810261942],[13.645936459364606,77.98074395343278],[13.663936639366398,77.98749826251233],[13.671136711367126,77.99425257159186],[13.65673656736567,78.01451549883043],[13.642336423364242,78.02802411698951],[13.60633606336063,78.04322131241844],[13.588335883358837,78.05504135330762],[13.613536135361358,78.06348423965704],[13.69993699937001,78.06179566238717],[13.786337863378634,78.08037001235587],[13.829538295382974,78.08543574416552],[13.85113851138513,78.09387863051492],[13.865538655386558,78.0972557850547],[13.95913959139591,78.09556720778482],[14.00954009540095,78.08881289870527],[14.074340743407447,78.07023854873657],[14.239942399423995,78.00438403521116],[14.257942579425787,78.00100688067138],[14.261542615426151,77.99594114886173],[14.26874268742688,77.98243253070268],[14.275942759427608,77.9706124898135],[14.286742867428671,77.96554675800385],[14.329943299433012,77.96385818073395],[14.347943479434804,77.9689239125436],[14.358743587435868,77.98074395343278],[14.355143551435532,77.9891868397822],[14.347943479434804,78.00607261248103],[14.34434344343444,78.01958123064009],[14.322743227432284,78.03815558060879],[14.250742507425088,78.06179566238717],[14.221942219422203,78.078681435086],[14.232742327423267,78.09387863051492],[14.632346323463253,78.1056986714041],[15.035550355503574,78.1158301350234],[15.024750247502482,78.12427302137283],[14.992349923499233,78.13778163953188],[15.021150211502118,78.14791310315118],[15.085950859508614,78.16142172131023],[15.11475114751147,78.16479887585001],[15.13995139951399,78.16986460765966],[15.19035190351903,78.19350468943802],[15.24075240752407,78.20363615305732],[15.294752947529474,78.22221050302602],[15.41715417154171,78.23909627572485],[15.557555575555767,78.23909627572485],[15.615156151561536,78.22221050302602],[15.694356943569431,78.2154561939465],[15.719557195571952,78.21883334848624],[15.730357303573044,78.2340305439152],[15.708757087570888,78.2441620075345],[15.633156331563328,78.25767062569355],[15.618756187561871,78.26611351204298],[15.589955899559016,78.28806501655143],[15.611556115561172,78.30326221198038],[15.640356403564056,78.31339367559968],[15.795157951579512,78.34209948918769],[15.82755827558276,78.34209948918769],[15.863558635586372,78.33703375737804],[15.899558995589956,78.33534518010816],[16.065160651606533,78.35223095280699],[16.090360903609053,78.36067383915639],[16.10476104761048,78.36405099369617],[16.140761407614093,78.36405099369617],[16.29556295562955,78.34041091191781],[16.61596615966161,78.34547664372747],[16.936369363693643,78.35223095280699],[17.098370983709856,78.38769107547452],[17.145171451714532,78.39444538455405],[17.199171991719936,78.40795400271313],[17.271172711727132,78.41470831179265],[17.29277292772929,78.4197740436023],[17.296372963729652,78.43328266176135],[17.26037260372604,78.44510270265053],[17.199171991719936,78.44172554811075],[16.84996849968499,78.38431392093474],[16.626766267662674,78.40626542544322],[16.605166051660518,78.41133115725287],[16.587165871658726,78.42146262087218],[16.583565835658362,78.42483977541193],[16.576365763657634,78.438348393571],[16.576365763657634,78.44172554811075],[16.569165691656934,78.44510270265053],[16.525965259652594,78.44510270265053],[16.410764107641086,78.43328266176135],[16.38916389163893,78.43665981630113],[16.353163531635317,78.45016843446018],[16.33156331563316,78.45185701173006],[16.33156331563316,78.45861132080958],[16.34596345963459,78.45861132080958],[16.36396363963641,78.46198847534936],[16.399963999639994,78.47211993896866],[16.428764287642878,78.48393997985784],[16.435964359643606,78.49069428893736],[16.44676446764467,78.50082575255666],[16.457564575645762,78.51940010252537],[16.468364683646854,78.52953156614467],[16.479164791647918,78.53797445249407],[16.493564935649374,78.54472876157362],[16.64836648366483,78.59032034786046],[16.677166771667714,78.60720612055928],[16.687966879668807,78.61733758417856],[16.702367023670234,78.62578047052799],[16.720367203672055,78.63422335687738],[16.734767347673483,78.63760051141716],[16.810368103681043,78.63928908868704],[16.828368283682835,78.64773197503646],[16.828368283682835,78.67306063408469],[16.788767887678887,78.67981494316422],[16.63036630366304,78.67137205681482],[16.61596615966161,78.67474921135457],[16.61596615966161,78.68825782951365],[16.612366123661246,78.69670071586305],[16.601566015660154,78.70007787040282],[16.554765547655478,78.71865222037152],[16.52236522365223,78.71865222037152],[16.493564935649374,78.70514360221247],[16.453964539645398,78.67812636589434],[16.41436414364145,78.66292917046539],[16.3819638196382,78.65786343865574],[16.367563675636774,78.65110912957621],[16.35676356763568,78.63760051141716],[16.374763747637473,78.63253477960751],[16.37116371163711,78.62071473871833],[16.360363603636046,78.60720612055928],[16.342363423634254,78.59876323420985],[16.33876338763389,78.59538607967008],[16.33156331563316,78.57850030697128],[16.327963279632797,78.57174599789172],[16.317163171631734,78.56836884335198],[16.043560435604377,78.52108867979524],[16.047160471604712,78.49407144347714],[16.000360003600036,78.48225140258796],[15.719557195571952,78.47043136169876],[15.438754387543895,78.45861132080958],[15.34155341553415,78.48393997985784],[15.262352623526255,78.54304018430372],[15.255152551525526,78.5649916888122],[15.24075240752407,78.57850030697128],[15.222752227522278,78.5852546160508],[15.193951939519394,78.59032034786046],[15.204752047520486,78.59707465693998],[15.21555215552155,78.60214038874963],[15.226352263522642,78.6038289660195],[15.23355233552337,78.61058327509903],[15.402754027540283,78.61733758417856],[15.424354243542439,78.62240331598821],[15.445954459544595,78.63591193414729],[15.463954639546415,78.65448628411599],[15.478354783547843,78.68994640678352],[15.49275492754927,78.70852075675222],[15.499954999549999,78.72709510672095],[15.474754747547479,78.73722657034023],[15.471154711547115,78.74735803395953],[15.471154711547115,78.75748949757883],[15.46755467554675,78.76424380665836],[15.44235442354423,78.77437527027766],[15.431554315543167,78.77944100208731],[15.424354243542439,78.78788388843671],[15.44235442354423,78.79126104297649],[15.456754567545687,78.79632677478614],[15.485554855548571,78.80814681567531],[15.46755467554675,78.81996685656449],[15.420754207542075,78.83347547472354],[15.402754027540283,78.84698409288262],[15.381153811538127,78.85204982469227],[15.352353523535243,78.84529551561272],[15.301953019530202,78.82672116564402],[15.23355233552337,78.78450673389696],[15.222752227522278,78.77268669300778],[15.219152191521914,78.75748949757883],[15.21555215552155,78.74566945668965],[15.197551975519758,78.74060372488],[15.201152011520122,78.7321608385306],[15.20835208352085,78.72540652945105],[15.21555215552155,78.7220293749113],[15.226352263522642,78.7203407976414],[15.20835208352085,78.70683217948235],[15.219152191521914,78.70345502494257],[15.226352263522642,78.69838929313295],[15.226352263522642,78.68994640678352],[15.219152191521914,78.67812636589434],[15.229952299523006,78.67981494316422],[15.24075240752407,78.67643778862447],[15.251552515525162,78.67306063408469],[15.262352623526255,78.66461774773529],[15.20835208352085,78.65617486138586],[15.05715057150573,78.64773197503646],[15.021150211502118,78.61733758417856],[15.028350283502846,78.61564900690868],[15.042750427504274,78.61058327509903],[14.98154981549817,78.59707465693998],[14.920349203492037,78.60720612055928],[14.801548015480165,78.64435482049669],[14.815948159481593,78.65448628411599],[14.83034830348305,78.66124059319552],[14.844748447484477,78.66968347954494],[14.848348483484841,78.68656925224377],[14.841148411484113,78.70007787040282],[14.815948159481593,78.7203407976414],[14.815948159481593,78.73384941580048],[14.729547295472969,78.73553799307035],[14.679146791467929,78.7304722612607],[14.628746287462889,78.71696364310165],[14.574745747457484,78.68994640678352],[14.488344883448832,78.68656925224377],[14.44514445144452,78.67812636589434],[14.44514445144452,78.67137205681482],[14.524345243452444,78.66461774773529],[14.542345423454236,78.65786343865574],[14.5459454594546,78.64773197503646],[14.542345423454236,78.63928908868704],[14.538745387453872,78.63253477960751],[14.535145351453508,78.62071473871833],[14.535145351453508,78.61733758417856],[14.542345423454236,78.61564900690868],[14.5459454594546,78.6122718523689],[14.549545495454964,78.60720612055928],[14.5459454594546,78.60214038874963],[14.542345423454236,78.59200892513033],[14.542345423454236,78.58694319332068],[14.5459454594546,78.5751231524315],[14.560345603456028,78.56836884335198],[14.578345783457848,78.56330311154233],[14.589145891458912,78.5548602251929],[14.563945639456392,78.54472876157362],[14.502745027450288,78.5464173388435],[14.473944739447404,78.54304018430372],[14.383943839438388,78.50082575255666],[14.419944199442,78.47549709350841],[14.481144811448132,78.46367705261923],[14.599945999460004,78.45861132080958],[14.639546395463952,78.45354558899996],[14.675546755467565,78.438348393571],[14.707947079470813,78.41639688906253],[14.733147331473333,78.3910682300143],[14.664746647466472,78.380936766395],[14.452344523445248,78.38431392093474],[14.459544595445948,78.37755961185522],[14.434344343443428,78.36911672550582],[14.401944019440208,78.37418245731547],[14.34434344343444,78.3910682300143],[14.311943119431191,78.39275680728417],[14.286742867428671,78.38769107547452],[14.265142651426515,78.37755961185522],[14.247142471424723,78.36405099369617],[14.257942579425787,78.35391953007687],[14.286742867428671,78.34378806645756],[14.301143011430128,78.33703375737804],[14.308343083430827,78.33027944829851],[14.322743227432284,78.30832794379003],[14.283142831428307,78.30495078925026],[14.124741247412487,78.2627363575032],[14.103141031410331,78.25091631661402],[14.074340743407447,78.2424734302646],[14.041940419404199,78.24753916207425],[14.049140491404927,78.26104778023333],[14.063540635406355,78.2711792438526],[14.081540815408175,78.27793355293215],[14.095940959409603,78.28806501655143],[14.020340203402043,78.2813107074719],[14.005940059400615,78.2829992847418],[13.995139951399523,78.28637643928155],[13.980739807398095,78.28637643928155],[13.966339663396639,78.2813107074719],[13.95193951939521,78.2711792438526],[13.944739447394483,78.26104778023333],[13.944739447394483,78.22727623483567],[13.923139231392327,78.23740769845497],[13.897938979389806,78.24753916207425],[13.797137971379726,78.2711792438526],[13.771937719377206,78.2711792438526],[13.746737467374686,78.26780208931285],[13.771937719377206,78.25091631661402],[13.840338403384038,78.2340305439152],[13.854738547385494,78.21207903940672],[13.501935019350213,78.22052192575615],[13.149131491314932,78.22896481210554],[13.080730807308072,78.21883334848624],[13.033930339303396,78.20363615305732],[13.008730087300876,78.20363615305732],[12.9619296192962,78.22052192575615],[12.925929259292587,78.23571912118507],[12.91152911529116,78.24753916207425],[12.947529475294772,78.26104778023333],[12.958329583295836,78.26780208931285],[12.954729547295472,78.2728678211225],[12.943929439294408,78.2829992847418],[12.940329403294044,78.28806501655143],[12.951129511295107,78.29481932563098],[12.857528575285755,78.32352513921899],[12.904329043290431,78.32352513921899],[12.88632886328864,78.34716522099734],[12.857528575285755,78.35898526188652],[12.655926559265595,78.37755961185522],[12.56952569525697,78.40457684817335],[12.504725047250474,78.43497123903123],[12.47592475924759,78.44172554811075],[12.429124291242914,78.46536562988913],[12.378723787237874,78.47718567077831],[12.364323643236446,78.48731713439759],[12.529925299252994,78.50758006163619],[13.001530015300148,78.50758006163619],[13.199531995319973,78.54304018430372],[13.145531455314568,78.5548602251929],[13.084330843308436,78.55148307065315],[12.972729727297292,78.53459729795432],[12.699126991269907,78.53966302976397],[12.429124291242914,78.54472876157362],[12.389523895238966,78.55148307065315],[12.36792367923681,78.57681172970138],[12.37512375123751,78.5835660387809],[12.346323463234626,78.59538607967008],[12.018720187201865,78.61396042963881],[11.943119431194333,78.63422335687738],[11.903519035190357,78.63760051141716],[11.8819188191882,78.64435482049669],[11.860318603186045,78.65786343865574],[11.849518495184952,78.67306063408469],[11.867518675186773,78.68656925224377],[11.842318423184253,78.70345502494257],[11.80631806318064,78.71020933402212],[11.734317343173444,78.711897911292],[11.712717127171288,78.71527506583178],[11.68031680316804,78.72540652945105],[11.65511655116552,78.73553799307035],[11.644316443164428,78.74735803395953],[11.665916659166612,78.76086665211861],[11.73071730717308,78.81321254748497],[11.78111781117812,78.82503258837414],[11.889118891188929,78.81658970202471],[11.935919359193605,78.82165543383437],[11.899918999189993,78.84360693834284],[11.85671856718568,78.85542697923202],[11.565115651156532,78.8875099473598],[11.507515075150764,78.90439572005863],[11.442714427144267,78.91621576094781],[11.370713707137071,78.94154441999603],[11.345513455134551,78.95336446088521],[11.334713347133487,78.97362738812382],[11.568715687156867,78.98544742901299],[11.90711907119072,78.94323299726594],[12.24912249122491,78.90101856551885],[12.47592475924759,78.90270714278876],[12.508325083250838,78.91115002913816],[12.50112501125011,78.91959291548756],[12.479524795247954,78.93985584272616],[12.461524615246162,78.95167588361534],[12.457924579245798,78.95674161542499],[12.457924579245798,78.97025023358404],[12.454324543245434,78.97531596539369],[12.45072450724507,78.98038169720334],[12.42552425524255,78.99726746990217],[12.389523895238966,79.00233320171182],[12.06552065520657,78.97362738812382],[11.979119791197917,78.98713600628287],[12.007920079200801,78.9955788926323],[12.043920439204385,79.00064462444195],[12.108721087210881,79.00064462444195],[12.083520835208361,79.01077608806125],[12.058320583205841,79.014153242601],[12.000720007200073,79.014153242601],[11.770317703177028,79.05805625161796],[11.712717127171288,79.0614334061577],[11.683916839168404,79.06987629250713],[11.737917379173808,79.07831917885653],[11.759517595175964,79.08507348793609],[11.80631806318064,79.11546787879396],[11.85671856718568,79.12222218787349],[11.8819188191882,79.13066507422292],[11.874718747187472,79.13741938330244],[11.867518675186773,79.1424851151121],[11.860318603186045,79.14417369238197],[11.849518495184952,79.14586226965184],[11.892718927189293,79.1610594650808],[11.90711907119072,79.16781377416032],[11.925119251192513,79.18807670139893],[11.935919359193605,79.19483101047845],[11.950319503195033,79.1998967422881],[11.997119971199709,79.20665105136763],[12.09072090720909,79.20665105136763],[12.137521375213765,79.21340536044715],[12.119521195211945,79.22522540133633],[12.076320763207633,79.22860255587611],[12.061920619206205,79.24042259676528],[12.101521015210153,79.25899694673399],[12.11592115921161,79.26068552400386],[12.108721087210881,79.26743983308342],[12.101521015210153,79.27419414216294],[12.094320943209425,79.28770276032199],[12.101521015210153,79.29107991486177],[12.11592115921161,79.30289995575095],[12.079920799207997,79.30289995575095],[11.986319863198645,79.28770276032199],[11.835118351183525,79.29614564667142],[11.90711907119072,79.25055406038459],[11.917919179191813,79.24042259676528],[11.896318963189628,79.22522540133633],[11.853118531185316,79.22522540133633],[11.80631806318064,79.23535686495563],[11.78111781117812,79.24717690584481],[11.788317883178848,79.25393121492434],[11.773917739177392,79.25730836946411],[11.723517235172352,79.27757129670269],[11.716317163171652,79.28601418305212],[11.712717127171288,79.29445706940152],[11.70551705517056,79.30289995575095],[11.691116911169132,79.30965426483047],[11.691116911169132,79.32147430571965],[11.593915939159388,79.30965426483047],[11.601116011160116,79.30289995575095],[11.590315903159052,79.29445706940152],[11.57951579515796,79.2893913375919],[11.55431554315544,79.28094845124247],[11.593915939159388,79.27250556489307],[11.691116911169132,79.21678251498693],[11.723517235172352,79.18807670139893],[11.701917019170196,79.16781377416032],[11.280712807128083,79.10027068336501],[11.226712267122679,79.10027068336501],[11.183511835118367,79.12391076514336],[11.205112051120523,79.12897649695302],[11.201512015120159,79.13741938330244],[11.176311763117639,79.1509280014615],[11.172711727117274,79.15937088781092],[11.16911169111691,79.18807670139893],[11.16191161911621,79.21678251498693],[11.140311403114026,79.23704544222551],[11.11151111511117,79.25055406038459],[11.06831068310683,79.25730836946411],[11.050310503105038,79.26575125581351],[11.039510395103946,79.27419414216294],[11.01071010710109,79.30458853302082],[10.999909999099998,79.30965426483047],[10.98550985509857,79.31640857391],[10.913509135091346,79.32991719206908],[10.84150841508415,79.37044304654626],[10.899108991089918,79.37888593289566],[10.91710917109171,79.38395166470531],[10.870308703087034,79.39577170559448],[10.863108631086305,79.39914886013426],[10.855908559085606,79.41096890102344],[10.85950859508597,79.41434605556319],[10.870308703087034,79.41603463283309],[10.881108811088126,79.41941178737284],[10.906309063090646,79.43123182826201],[10.91710917109171,79.43967471461144],[10.913509135091346,79.44980617823074],[10.90990909909101,79.45656048731027],[10.906309063090646,79.4633147963898],[10.899108991089918,79.47006910546932],[10.89190891908919,79.4734462600091],[10.881108811088126,79.47682341454885],[10.84150841508415,79.49370918724767],[10.787507875078745,79.50721780540675],[10.74070740707407,79.50890638267663],[10.715507155071549,79.5122835372164],[10.693906939069393,79.52241500083571],[10.675906759067601,79.54267792807428],[10.70830708307085,79.56125227804299],[11.183511835118367,79.56294085531289],[11.14391143911439,79.57476089620206],[10.855908559085606,79.59671240071054],[10.86670866708667,79.60853244159972],[10.888308883088825,79.618663905219],[11.014310143101426,79.65074687334678],[11.431914319143203,79.62710679156842],[11.457114571145723,79.63217252337807],[11.457114571145723,79.64568114153712],[11.42831428314284,79.65412402788655],[11.352713527135279,79.66256691423595],[11.233912339123407,79.69802703690348],[11.21231212312125,79.70815850052279],[11.197911979119795,79.72166711868186],[11.201512015120159,79.72166711868186],[11.21231212312125,79.72673285049149],[11.21951219512195,79.72673285049149],[11.215912159121586,79.73011000503126],[11.21231212312125,79.73855289138069],[11.21231212312125,79.74193004592044],[11.21951219512195,79.74530720046022],[11.23751237512377,79.76050439588914],[11.190711907119066,79.7757015913181],[11.226712267122679,79.78752163220727],[11.284312843128447,79.78921020947715],[11.475114751147515,79.7672587049687],[11.525515255152555,79.7672587049687],[11.561515615156168,79.78921020947715],[11.525515255152555,79.80947313671575],[11.550715507155076,79.81285029125553],[11.60471604716048,79.80609598217598],[11.626316263162636,79.81285029125553],[11.637116371163728,79.8229817548748],[11.65511655116552,79.83142464122423],[11.669516695166948,79.83649037303388],[11.777517775177756,79.84662183665318],[11.820718207182068,79.84493325938328],[11.860318603186045,79.82635890941458],[11.874718747187472,79.81622744579528],[11.925119251192513,79.80103025036632],[11.943119431194333,79.79089878674705],[11.943119431194333,79.78414447766752],[11.939519395193969,79.77907874585787],[11.935919359193605,79.7757015913181],[11.961119611196125,79.76219297315905],[12.029520295202957,79.73517573684092],[12.033120331203321,79.72166711868186],[12.051120511205113,79.71491280960231],[12.058320583205841,79.71322423233244],[12.06552065520657,79.71322423233244],[12.061920619206205,79.70984707779266],[12.047520475204749,79.69296130509383],[12.108721087210881,79.6777641096649],[12.14112141121413,79.67438695512513],[12.169921699216985,79.67945268693478],[12.162721627216285,79.68282984147456],[12.155521555215557,79.68789557328421],[12.14112141121413,79.70140419144326],[12.169921699216985,79.70984707779266],[12.19872198721987,79.70478134598304],[12.281522815228158,79.6676326460456],[12.295922959229586,79.66425549150583],[12.331923319233198,79.6676326460456],[12.335523355233562,79.66932122331548],[12.346323463234626,79.68282984147456],[12.34992349923499,79.71828996414209],[12.303123031230314,79.73686431411079],[12.205922059220597,79.75543866407949],[12.21672216722169,79.76219297315905],[12.19872198721987,79.76894728223857],[12.205922059220597,79.7757015913181],[12.187921879218806,79.77739016858797],[12.17352173521735,79.78245590039762],[12.162721627216285,79.7942759412868],[12.162721627216285,79.80947313671575],[12.17352173521735,79.81622744579528],[12.205922059220597,79.83649037303388],[12.389523895238966,79.83480179576398],[12.45072450724507,79.8229817548748],[12.490324903249046,79.80947313671575],[12.497524975249746,79.80609598217598],[12.504725047250474,79.79765309582658],[12.52632526325263,79.79258736401692],[12.533525335253358,79.78921020947715],[12.540725407254087,79.77401301404822],[12.533525335253358,79.7655701276988],[12.49392493924941,79.75543866407949],[12.537125371253723,79.74699577773009],[12.684726847268479,79.7757015913181],[12.767527675276767,79.77401301404822],[12.915129151291524,79.79765309582658],[12.958329583295836,79.81116171398563],[13.059130591305916,79.82804748668445],[13.249932499325013,79.83649037303388],[13.354333543335429,79.85844187754236],[13.584735847358473,79.85675330027246],[13.797137971379726,79.88208195932071],[13.840338403384038,79.87870480478094],[13.887138871388714,79.86688476389176],[13.95193951939521,79.83817895030376],[13.955539555395575,79.82973606395436],[13.95913959139591,79.81622744579528],[13.95913959139591,79.8044074049061],[13.95913959139591,79.7942759412868],[13.95913959139591,79.7858330549374],[13.973539735397367,79.7757015913181],[13.897938979389806,79.73855289138069],[13.739537395373958,79.70646992325291],[13.260732607326077,79.69296130509383],[13.23913239132392,79.70140419144326],[13.192331923319244,79.69296130509383],[13.01233012330124,79.69296130509383],[13.026730267302668,79.67945268693478],[13.008730087300876,79.67269837785526],[12.645126451264531,79.59502382344064],[12.562325623256243,79.58995809163099],[12.50112501125011,79.59502382344064],[12.46872468724689,79.58995809163099],[12.45072450724507,79.56969516439241],[12.483124831248318,79.56631800985264],[12.54432544325445,79.55280939169359],[12.57672576725767,79.54774365988393],[12.609126091260919,79.55112081442371],[12.706327063270635,79.56969516439241],[12.900729007290067,79.57138374166229],[13.033930339303396,79.59671240071054],[13.181531815318152,79.59164666890089],[13.28953289532896,79.60177813252017],[13.397533975339769,79.58995809163099],[13.451534515345173,79.59164666890089],[13.476734767347693,79.58658093709124],[13.491134911349121,79.56969516439241],[13.429934299342989,79.53423504172488],[13.411934119341197,79.52916930991523],[13.393933939339405,79.52748073264533],[13.357933579335793,79.51734926902606],[13.343533435334365,79.51397211448628],[13.321933219332209,79.51566069175615],[13.285932859328597,79.5207264235658],[13.267932679326805,79.52241500083571],[13.278732787327868,79.50890638267663],[13.285932859328597,79.49370918724767],[13.275132751327533,79.49370918724767],[13.267932679326805,79.49033203270793],[13.26433264332644,79.4835777236284],[13.260732607326077,79.4734462600091],[13.300333003330053,79.47175768273922],[13.458734587345873,79.43967471461144],[13.480334803348029,79.44136329188132],[13.487534875348757,79.4531833327705],[13.480334803348029,79.45993764185005],[13.437134371343717,79.48020056908862],[13.476734767347693,79.4920206099778],[13.527135271352734,79.49370918724767],[13.577535775357774,79.49033203270793],[13.617136171361722,79.48020056908862],[13.620736207362086,79.47682341454885],[13.62433624336245,79.46500337365967],[13.63153631536315,79.45993764185005],[13.645936459364606,79.45656048731027],[13.67473674736749,79.4548719100404],[13.75753757537575,79.43967471461144],[13.779137791377934,79.43292040553192],[13.786337863378634,79.41941178737284],[13.80793807938079,79.41096890102344],[13.872738727387286,79.39408312832461],[13.879938799388015,79.39070597378483],[13.897938979389806,79.36706589200648],[13.905139051390535,79.36368873746673],[13.919539195391962,79.36368873746673],[13.90873908739087,79.34004865568835],[13.905139051390535,79.32822861479917],[13.912339123391234,79.31640857391],[13.890738907389078,79.3062771102907],[13.897938979389806,79.29445706940152],[13.919539195391962,79.28432560578224],[13.944739447394483,79.28432560578224],[13.97713977139773,79.28770276032199],[13.998739987399887,79.28263702851234],[14.041940419404199,79.26575125581351],[14.074340743407447,79.26912841035329],[14.103141031410331,79.2893913375919],[14.157141571415707,79.34342581022813],[14.142741427414279,79.34849154203778],[14.103141031410331,79.37719735562578],[14.081540815408175,79.38732881924508],[14.03474034740347,79.39746028286439],[14.013140131401315,79.40590316921379],[14.020340203402043,79.41265747829331],[14.031140311403135,79.41772321010296],[14.038340383403835,79.42278894191261],[14.049140491404927,79.42616609645239],[14.031140311403135,79.43629756007167],[14.020340203402043,79.44980617823074],[14.00954009540095,79.46162621911992],[13.966339663396639,79.47175768273922],[13.944739447394483,79.4835777236284],[13.93393933939339,79.49539776451758],[13.95193951939521,79.5021520735971],[13.897938979389806,79.52916930991523],[13.88353883538835,79.54267792807428],[13.90153901539017,79.54943223715381],[13.95193951939521,79.57644947347194],[14.074340743407447,79.60684386432982],[14.254342543425452,79.6102210188696],[14.279542795427972,79.61697532794912],[14.247142471424723,79.618663905219],[14.178741787417891,79.63217252337807],[14.142741427414279,79.63217252337807],[14.175141751417527,79.65074687334678],[14.26874268742688,79.66256691423595],[14.308343083430827,79.67269837785526],[14.275942759427608,79.67100980058538],[14.261542615426151,79.67269837785526],[14.247142471424723,79.67945268693478],[14.275942759427608,79.69296130509383],[14.401944019440208,79.73855289138069],[14.491944919449196,79.78752163220727],[14.513545135451352,79.80271882763623],[14.527945279452808,79.80947313671575],[14.549545495454964,79.81116171398563],[14.859148591485933,79.77401301404822],[14.923949239492401,79.75206150953974],[15.08955089550895,79.66256691423595],[15.125551255512562,79.65074687334678],[15.172351723517238,79.64230398699738],[15.20835208352085,79.62710679156842],[15.262352623526255,79.618663905219],[15.280352803528046,79.61190959613947],[15.294752947529474,79.60346670979007],[15.273152731527318,79.58826951436112],[15.273152731527318,79.58151520528159],[15.280352803528046,79.56969516439241],[15.29115291152911,79.56125227804299],[15.298352983529838,79.55618654623333],[15.301953019530202,79.54774365988393],[15.294752947529474,79.53592361899476],[15.30915309153093,79.52241500083571],[15.330753307533087,79.5122835372164],[15.370353703537035,79.5021520735971],[15.35955359553597,79.4835777236284],[15.36675366753667,79.47175768273922],[15.399153991539919,79.4531833327705],[15.409954099541011,79.44136329188132],[15.431554315543167,79.41603463283309],[15.445954459544595,79.40590316921379],[15.438754387543895,79.38732881924508],[15.453154531545323,79.373820201086],[15.471154711547115,79.36200016019683],[15.481954819548207,79.3468029647679],[15.496354963549635,79.32991719206908],[15.535955359553611,79.31978572844977],[15.604356043560443,79.31134284210034],[15.629556295562963,79.30121137848107],[15.661956619566212,79.27250556489307],[15.687156871568732,79.26068552400386],[15.744757447574472,79.25224263765446],[15.773557735577356,79.24211117403516],[15.787957879578812,79.22015966952668],[15.780757807578084,79.22015966952668],[15.773557735577356,79.22015966952668],[15.744757447574472,79.1998967422881],[15.67635676356764,79.1711909287001],[15.658356583565848,79.1509280014615],[15.661956619566212,79.12559934241327],[15.683556835568368,79.11209072425419],[15.712357123571252,79.11209072425419],[15.805958059580604,79.16612519689045],[15.881558815588164,79.1610594650808],[15.957159571595724,79.13235365149279],[16.021960219602192,79.10027068336501],[16.039960399604013,79.09351637428549],[16.10476104761048,79.07663060158666],[16.119161191611937,79.06818771523726],[16.126361263612637,79.05805625161796],[16.129961299613,79.03610474710948],[16.129961299613,79.02090755168052],[16.129961299613,79.01077608806125],[16.133561335613365,79.00233320171182],[16.151561515615157,78.99051316082264],[16.173161731617313,78.98207027447322],[16.21276212762129,78.97193881085394],[16.234362343623445,78.96349592450451],[16.248762487624873,78.96011876996477],[16.28116281162812,78.95843019269486],[16.29556295562955,78.95336446088521],[16.299162991629913,78.94829872907559],[16.30636306363064,78.93479011091651],[16.309963099631005,78.93141295637676],[16.327963279632797,78.92128149275746],[16.349563495634953,78.91621576094781],[16.435964359643606,78.91115002913816],[16.475564755647554,78.91790433821768],[16.48996489964901,78.93141295637676],[16.453964539645398,78.95336446088521],[16.457564575645762,78.95674161542499],[16.457564575645762,78.96011876996477],[16.457564575645762,78.96349592450451],[16.461164611646126,78.96687307904429],[16.403564035640358,78.97362738812382],[16.3819638196382,78.98375885174312],[16.36396363963641,79.02090755168052],[16.349563495634953,79.03103901529983],[16.335163351633526,79.03610474710948],[16.32076320763207,79.04454763345888],[16.284762847628485,79.09182779701561],[16.266762667626693,79.10364783790479],[16.209162091620925,79.12559934241327],[16.191161911619133,79.13910796057232],[16.18036180361804,79.1509280014615],[16.165961659616613,79.17625666050975],[16.15516155161552,79.18807670139893],[16.151561515615157,79.20158531955798],[16.151561515615157,79.2184710922568],[16.151561515615157,79.23366828768576],[16.140761407614093,79.24042259676528],[16.126361263612637,79.24548832857494],[16.01116011160113,79.29614564667142],[15.960759607596088,79.30965426483047],[15.967959679596817,79.33836007841848],[15.95355953559536,79.373820201086],[15.92835928359284,79.40928032375356],[15.913959139591412,79.45993764185005],[15.90315903159032,79.47851199181875],[15.881558815588164,79.5105949599465],[15.870758707587072,79.51903784629593],[15.859958599586008,79.52241500083571],[15.85275852758528,79.52916930991523],[15.856358563585644,79.54267792807428],[15.867158671586736,79.54774365988393],[15.917559175591776,79.56294085531289],[15.895958959589592,79.56800658712254],[15.85275852758528,79.56969516439241],[15.834758347583488,79.57982662801172],[15.82755827558276,79.58826951436112],[15.820358203582032,79.60346670979007],[15.813158131581332,79.61528675067925],[15.791557915579176,79.62710679156842],[15.741157411574136,79.65412402788655],[15.72675726757268,79.66594406877573],[15.744757447574472,79.67269837785526],[15.733957339573408,79.68282984147456],[15.687156871568732,79.70140419144326],[15.690756907569096,79.70478134598304],[15.705157051570524,79.71660138687221],[15.705157051570524,79.72166711868186],[15.70155701557016,79.72842142776139],[15.697956979569796,79.73011000503126],[15.694356943569431,79.73179858230114],[15.694356943569431,79.73348715957104],[15.683556835568368,79.74530720046022],[15.672756727567275,79.75543866407949],[15.658356583565848,79.76388155042892],[15.643956439564391,79.76894728223857],[15.665556655566576,79.78414447766752],[15.672756727567275,79.78921020947715],[15.654756547565484,79.80103025036632],[15.643956439564391,79.8145388685254],[15.640356403564056,79.83142464122423],[15.65115651156512,79.84999899119293],[15.679956799568004,79.86857334116164],[15.715957159571616,79.87701622751106],[16.101161011610117,79.86013045481224],[16.13716137161373,79.87026191843154],[16.101161011610117,79.89390200020989],[16.007560075600765,79.90909919563885],[15.971559715597152,79.92936212287742],[15.960759607596088,79.93949358649672],[15.957159571595724,79.94455931830637],[15.960759607596088,79.95300220465577],[15.975159751597516,79.96651082281485],[15.989559895598973,79.97833086370403],[16.05436054360544,79.99521663640286],[16.043560435604377,79.99690521367273],[16.03636036360365,80.00028236821251],[16.025560255602556,80.00703667729204],[16.021960219602192,80.01547956364143],[16.039960399604013,80.01716814091134],[16.07956079560796,80.02729960453061],[16.140761407614093,80.03236533634026],[16.2559625596256,80.06107114992827],[16.29556295562955,80.06782545900779],[16.327963279632797,80.06444830446804],[16.367563675636774,80.05600541811862],[16.54036540365405,80.04756253176922],[16.554765547655478,80.04249679995957],[16.561965619656206,80.03574249088004],[16.569165691656934,80.01885671818121],[16.57276572765727,80.01210240910169],[16.594365943659454,79.99690521367273],[16.61596615966161,79.98508517278356],[16.66636666366665,79.96651082281485],[16.695166951669535,79.9597565137353],[16.713167131671327,79.95469078192568],[16.720367203672055,79.94624789557625],[16.71676716767169,79.93949358649672],[16.69876698766987,79.92936212287742],[16.69156691566917,79.9226078137979],[16.7059670596706,79.9124763501786],[16.821168211682135,79.87532765024119],[16.853568535685355,79.87026191843154],[16.885968859688603,79.87363907297129],[16.911169111691123,79.89221342294002],[16.903969039690395,79.89559057747977],[16.871568715687175,79.9124763501786],[16.864368643686447,79.91923065925812],[16.871568715687175,79.9327392774172],[16.885968859688603,79.9411821637666],[16.965169651696527,79.96313366827508],[17.271172711727132,79.94624789557625],[17.400774007740097,79.91416492744847],[17.56277562775628,79.89727915474964],[17.59517595175953,79.88039338205081],[17.634776347763477,79.86688476389176],[17.692376923769245,79.86013045481224],[17.901179011790134,79.7959645185567],[17.940779407794082,79.77232443677832],[17.994779947799486,79.76388155042892],[18.0307803078031,79.75543866407949],[18.09918099180993,79.72673285049149],[18.066780667806682,79.69464988236373],[18.016380163801642,79.6777641096649],[17.911979119791198,79.66594406877573],[17.868778687786886,79.65581260515643],[17.850778507785094,79.647369718807],[17.81477814778148,79.62372963702865],[17.749977499775014,79.60346670979007],[17.767977679776806,79.59671240071054],[17.735577355773557,79.56631800985264],[17.68877688776888,79.55956370077311],[17.63837638376384,79.55956370077311],[17.591575915759165,79.54774365988393],[17.674376743767453,79.54267792807428],[17.731977319773193,79.54943223715381],[17.749977499775014,79.54774365988393],[17.76437764377644,79.5393007735345],[17.767977679776806,79.5105949599465],[17.782377823778234,79.49370918724767],[17.76437764377644,79.47682341454885],[17.757177571775713,79.46838052819945],[17.753577535775378,79.45656048731027],[17.757177571775713,79.44980617823074],[17.767977679776806,79.44305186915122],[17.775177751777534,79.43629756007167],[17.775177751777534,79.42616609645239],[17.753577535775378,79.40928032375356],[17.631176311763113,79.39239455105474],[17.652776527765297,79.36875446927635],[17.692376923769245,79.37044304654626],[17.767977679776806,79.39239455105474],[17.843578435784366,79.39577170559448],[17.879578795787978,79.40083743740414],[17.937179371793718,79.42954325099214],[17.97317973179733,79.43967471461144],[18.001980019800214,79.45656048731027],[18.016380163801642,79.4835777236284],[18.019980199802006,79.49370918724767],[18.027180271802735,79.50721780540675],[18.041580415804162,79.52916930991523],[18.06318063180632,79.54774365988393],[18.077580775807775,79.56969516439241],[18.10638106381066,79.58826951436112],[18.13878138781388,79.60346670979007],[18.178381783817855,79.61528675067925],[18.243182431824323,79.6287953688383],[18.347583475834767,79.6304839461082],[18.40158401584017,79.61190959613947],[18.45198451984521,79.60008955525029],[18.55998559985599,79.58658093709124],[18.72558725587257,79.54436650534416],[18.754387543875453,79.52241500083571],[18.761587615876152,79.5105949599465],[18.76878768787688,79.48526630089827],[18.77598775987761,79.47682341454885],[18.797587975879765,79.46838052819945],[18.837188371883713,79.45993764185005],[18.858788587885897,79.4531833327705],[18.880388803888053,79.44136329188132],[18.87678876788769,79.43967471461144],[18.862388623886233,79.43629756007167],[18.85158851588517,79.42278894191261],[18.858788587885897,79.40928032375356],[18.87678876788769,79.40421459194391],[18.898388983889845,79.40083743740414],[18.912789127891273,79.39239455105474],[18.891188911889117,79.38901739651496],[18.86958869588696,79.38226308743543],[18.847988479884805,79.37213162381613],[18.837188371883713,79.35693442838718],[18.837188371883713,79.34004865568835],[18.847988479884805,79.32991719206908],[18.880388803888053,79.31640857391],[18.783187831878337,79.27925987397259],[18.628386283862852,79.27250556489307],[18.59238592385924,79.26068552400386],[18.653586535865372,79.24886548311468],[18.84438844388444,79.25393121492434],[18.930789307893093,79.22691397860623],[18.948789487894885,79.22015966952668],[18.941589415894157,79.20665105136763],[18.916389163891637,79.1813223923194],[18.916389163891637,79.16781377416032],[18.94518945189452,79.15768231054102],[19.056790567905693,79.15768231054102],[19.092790927909277,79.1509280014615],[19.19719197191972,79.1509280014615],[19.225992259922606,79.15599373327115],[19.247592475924762,79.16443661962057],[19.265592655926554,79.17625666050975],[19.290792907929074,79.18469954685915],[19.323193231932322,79.1897652786688],[19.40599405994061,79.18469954685915],[19.42039420394204,79.18301096958928],[19.611196111961135,79.15261657873137],[19.668796687966875,79.1509280014615],[19.787597875978776,79.16443661962057],[19.837998379983816,79.1509280014615],[19.830798307983088,79.14417369238197],[19.819998199981995,79.14079653784219],[19.812798127981296,79.13910796057232],[19.801998019980203,79.13404222876267],[19.794797947979475,79.12728791968314],[19.79839798397984,79.12391076514336],[19.805598055980568,79.12053361060362],[19.80919809198093,79.11715645606384],[19.81639816398166,79.10702499244454],[19.827198271982724,79.09520495155536],[19.84159841598418,79.08676206520596],[19.92439924399244,79.06481056069748],[19.935199351993532,79.05974482888783],[19.931599315993168,79.04623621072878],[19.913599135991376,79.02766186076005],[19.906399063990648,79.014153242601],[19.985599855998572,79.014153242601],[20.010800108001092,79.01921897441065],[20.032400324003248,79.02090755168052],[20.07560075600756,79.00908751079135],[20.198001980019797,79.00064462444195],[20.450004500044997,78.94661015180569],[20.92160921609218,78.9060842973285],[21.389613896138968,78.8672470201212],[21.44001440014401,78.85542697923202],[21.46521465214653,78.85373840196215],[21.522815228152297,78.85373840196215],[21.54081540815409,78.84698409288262],[21.544415444154453,78.83347547472354],[21.53361533615336,78.82503258837414],[21.519215192151933,78.81658970202471],[21.512015120151204,78.80814681567531],[21.50841508415084,78.79463819751626],[21.519215192151933,78.78788388843671],[21.53361533615336,78.78281815662706],[21.55161551615518,78.77437527027766],[21.53361533615336,78.76086665211861],[21.50841508415084,78.74735803395953],[21.48321483214832,78.73722657034023],[21.436414364143644,78.7304722612607],[21.40761407614076,78.7220293749113],[21.378813788137876,78.71020933402212],[21.360813608136084,78.69838929313295],[21.368013680136812,78.69501213859317],[21.389613896138968,78.67643778862447],[21.393213932139332,78.67137205681482],[21.38241382413824,78.65786343865574],[21.360813608136084,78.65617486138586],[21.335613356133564,78.65786343865574],[21.267212672126732,78.67474921135457],[21.126811268112675,78.66461774773529],[21.126811268112675,78.64604339776656],[21.09801098010982,78.63928908868704],[21.036810368103687,78.64435482049669],[21.036810368103687,78.64942055230634],[20.99000990009901,78.65786343865574],[20.93960939609397,78.65786343865574],[20.92880928809288,78.65955201592564],[20.918009180091815,78.66292917046539],[20.907209072090723,78.66968347954494],[20.885608856088567,78.683192097704],[20.87840878408784,78.683192097704],[20.87120871208714,78.68150352043412],[20.860408604086047,78.67812636589434],[20.691206912069134,78.6933235613233],[20.640806408064094,78.67137205681482],[20.626406264062638,78.65617486138586],[20.619206192061938,78.64266624322681],[20.60480604806048,78.63422335687738],[20.57960579605796,78.63084620233764],[20.5040050400504,78.63084620233764],[20.46080460804609,78.64266624322681],[20.44640446404466,78.64435482049669],[20.21960219602198,78.64604339776656],[20.20880208802089,78.63760051141716]]],[[[99.88479884798846,79.04117047891913],[99.86319863198634,79.0242847062203],[99.88839888398883,79.00064462444195],[99.9459994599946,78.97025023358404],[99.92439924399247,78.94661015180569],[99.87759877598779,78.93141295637676],[99.68679686796867,78.8976414109791],[99.62919629196296,78.8672470201212],[99.55719557195573,78.8571155565019],[99.45999459994601,78.82840974291389],[99.40599405994061,78.82165543383437],[99.13239132391323,78.82672116564402],[98.9271892718927,78.80814681567531],[98.60318603186033,78.81658970202471],[98.55638556385566,78.80308108386566],[98.58878588785888,78.79801535205601],[98.60318603186033,78.79294962024636],[98.59958599585997,78.78619531116684],[98.57798577985778,78.78281815662706],[98.32598325983258,78.78450673389696],[98.23958239582396,78.80814681567531],[98.08838088380884,78.80814681567531],[98.11718117181175,78.81658970202471],[98.08118081180811,78.82503258837414],[97.94437944379445,78.80814681567531],[97.7607776077761,78.80814681567531],[97.75717757177574,78.81658970202471],[97.73917739177392,78.82165543383437],[97.67437674376743,78.82840974291389],[97.44397443974441,78.81658970202471],[97.40437404374046,78.8300983201838],[97.45117451174514,78.8385412065332],[97.55917559175595,78.8300983201838],[97.60237602376026,78.84360693834284],[97.55917559175595,78.85542697923202],[97.26397263972643,78.85373840196215],[97.22077220772206,78.86386986558145],[97.22797227972279,78.87062417466097],[97.2027720277203,78.87906706101037],[97.12357123571235,78.88582137008993],[96.91836918369182,78.94154441999603],[96.86796867968678,78.93985584272616],[96.84276842768429,78.94661015180569],[96.84996849968502,78.94998730634546],[96.86796867968678,78.96687307904429],[96.79956799567998,78.98882458355277],[96.54036540365405,78.99220173809252],[96.28116281162812,78.99389031536242],[96.3027630276303,78.99895604717204],[96.33156331563316,79.00064462444195],[96.35316353163535,79.00739893352147],[96.37116371163711,79.02090755168052],[95.9319593195932,78.99220173809252],[95.85635856358567,79.00064462444195],[95.69795697956982,78.99895604717204],[95.67275672756728,79.00064462444195],[95.65475654756551,79.01077608806125],[95.65115651156515,79.01921897441065],[95.65115651156515,79.02935043802995],[95.65115651156515,79.03779332437935],[95.64395643956442,79.04961336526853],[95.66195661956618,79.06481056069748],[95.66915669156691,79.06987629250713],[95.64755647556478,79.07663060158666],[95.59715597155974,79.07831917885653],[95.57555575555756,79.08338491066618],[95.5611556115561,79.09689352882526],[95.55395553955543,79.10195926063491],[95.52515525155252,79.10871356971444],[95.46755467554675,79.11209072425419],[95.42075420754207,79.10702499244454],[95.28755287552877,79.07325344704691],[95.21915219152191,79.06649913796736],[95.17955179551797,79.0529905198083],[95.0679506795068,79.03779332437935],[95.01755017550175,79.03779332437935],[94.9779497794978,79.05467909707818],[94.99234992349926,79.0631219834276],[94.95634956349562,79.06987629250713],[94.85194851948518,79.0631219834276],[94.82674826748269,79.06649913796736],[94.63234632346325,79.12728791968314],[94.62154621546216,79.13741938330244],[94.62874628746289,79.1509280014615],[94.64314643146434,79.16612519689045],[94.65034650346502,79.1796338150495],[94.6179461794618,79.20158531955798],[94.3659436594366,79.23704544222551],[94.33354333543338,79.24886548311468],[94.31914319143192,79.26406267854364],[94.32274322743228,79.28263702851234],[94.32994329943301,79.29445706940152],[94.3551435514355,79.31640857391],[94.34794347943483,79.3265400375293],[94.33714337143374,79.33498292387873],[94.31194311943119,79.35018011930765],[94.32274322743228,79.36200016019683],[94.32274322743228,79.373820201086],[94.31914319143192,79.38226308743543],[94.31914319143192,79.39239455105474],[94.32994329943301,79.40421459194391],[94.35154351543514,79.42616609645239],[94.36234362343623,79.43967471461144],[94.31194311943119,79.47851199181875],[94.2219422194222,79.48695487816815],[94.05274052740526,79.4734462600091],[94.06354063540635,79.45993764185005],[94.08154081540818,79.44642902369097],[94.04194041940423,79.42954325099214],[93.98793987939882,79.42785467372227],[93.73953739537399,79.44811760096084],[93.69633696336962,79.45993764185005],[93.76833768337684,79.47175768273922],[93.92313923139233,79.47006910546932],[93.99153991539919,79.49370918724767],[93.95913959139591,79.50552922813688],[93.82593825938261,79.51397211448628],[93.79353793537939,79.5207264235658],[93.77553775537757,79.52748073264533],[93.76113761137611,79.5393007735345],[93.75033750337502,79.54436650534416],[93.68913689136895,79.54267792807428],[93.7719377193772,79.55618654623333],[93.80073800738006,79.56294085531289],[93.8619386193862,79.59671240071054],[93.88353883538838,79.60346670979007],[93.76473764737648,79.60346670979007],[93.74673746737466,79.60177813252017],[93.72153721537217,79.59502382344064],[93.70353703537035,79.58658093709124],[93.70353703537035,79.57644947347194],[93.68553685536858,79.56294085531289],[93.66033660336603,79.55787512350324],[93.5847358473585,79.55449796896346],[93.55953559535595,79.54943223715381],[93.53433534335346,79.54098935080441],[93.51273512735128,79.53254646445498],[93.46953469534697,79.52241500083571],[93.44793447934478,79.51397211448628],[93.44433444334442,79.5021520735971],[93.45873458734587,79.49539776451758],[93.53793537935383,79.48695487816815],[93.51273512735128,79.48695487816815],[93.43713437134375,79.4734462600091],[93.3867338673387,79.4734462600091],[93.36513365133652,79.47006910546932],[93.36153361533616,79.45993764185005],[93.30393303933039,79.4447404464211],[93.23553235532358,79.43967471461144],[93.17073170731709,79.4447404464211],[93.11313113131132,79.46669195092957],[93.16353163531636,79.4835777236284],[93.27153271532717,79.48695487816815],[93.32193321933221,79.5021520735971],[93.2787327873279,79.51903784629593],[93.17793177931782,79.52916930991523],[93.0951309513095,79.51903784629593],[93.05553055530555,79.51903784629593],[93.01953019530197,79.52916930991523],[93.0411304113041,79.53423504172488],[92.85392853928539,79.55618654623333],[92.90432904329043,79.57476089620206],[92.96912969129693,79.57307231893216],[93.15633156331563,79.54267792807428],[93.2787327873279,79.55280939169359],[93.55233552335523,79.60853244159972],[93.609936099361,79.61359817340937],[93.63513635136354,79.618663905219],[93.68553685536858,79.63723825518773],[93.76113761137611,79.65074687334678],[93.78633786337866,79.6591897596962],[93.79353793537939,79.68789557328421],[93.84753847538474,79.70984707779266],[94.1679416794168,79.7757015913181],[94.43074430744309,79.7959645185567],[94.68994689946902,79.81622744579528],[94.66834668346684,79.82804748668445],[94.63954639546398,79.8331132184941],[94.56394563945639,79.83986752757363],[94.51714517145172,79.85337614573271],[94.40554405544054,79.86013045481224],[94.35874358743587,79.86857334116164],[94.34794347943483,79.88545911386046],[94.32274322743228,79.89390200020989],[94.2867428674287,79.89896773201954],[94.22554225542257,79.89896773201954],[94.25434254342542,79.91585350471837],[94.29754297542979,79.92598496833764],[94.38394383943842,79.9327392774172],[94.36954369543696,79.94624789557625],[94.3551435514355,79.95469078192568],[94.31914319143192,79.96651082281485],[94.35154351543514,79.97664228643413],[94.38394383943842,79.97664228643413],[94.45234452344522,79.96651082281485],[94.7511475114751,80.00703667729204],[94.80154801548014,80.02898818180051],[94.79794797947983,80.03236533634026],[94.79434794347947,80.04249679995957],[94.83754837548378,80.04418537722944],[94.89874898748991,80.05431684084874],[94.9347493474935,80.07120261354757],[94.90954909549095,80.0965312725958],[94.95274952749526,80.10497415894523],[94.99234992349926,80.10159700440545],[95.10755107551074,80.07289119081744],[95.10755107551074,80.0593825726584],[95.10755107551074,80.05600541811862],[95.12555125551256,80.05093968630896],[95.20475204752046,80.03911964541979],[95.22635226352264,80.02561102726074],[95.2407524075241,80.02223387272096],[95.33435334353345,80.02898818180051],[95.3487534875349,80.03236533634026],[95.35595355953558,80.04249679995957],[95.35595355953558,80.0695140362777],[95.3631536315363,80.07964549989697],[95.38115381153813,80.08639980897652],[95.40275402754031,80.09315411805605],[95.50355503555039,80.11172846802475],[95.80595805958063,80.11172846802475],[96.10836108361087,80.11172846802475],[96.10836108361087,80.1066627362151],[96.10476104761051,80.09484269532592],[96.10116101161015,80.08977696351627],[96.17316173161731,80.09146554078617],[96.19836198361986,80.09484269532592],[96.25236252362527,80.11510562256453],[96.27036270362703,80.11848277710428],[96.28836288362885,80.1167941998344],[96.34236342363425,80.10159700440545],[96.36036360363607,80.0982198498657],[96.5007650076501,80.1066627362151],[96.5259652596526,80.11510562256453],[96.56556565565654,80.13199139526336],[96.58716587165873,80.137057127073],[96.60876608766091,80.13874570434288],[96.63756637566377,80.1353685498031],[96.6879668796688,80.12017135437418],[96.71676716767166,80.11848277710428],[96.90036900369006,80.13367997253323],[97.15597155971562,80.15394289977183],[97.59157591575917,80.17420582701041],[97.73917739177392,80.14887716796218],[97.7607776077761,80.137057127073],[97.7751777517775,80.13199139526336],[97.7859778597786,80.13030281799345],[97.81477814778151,80.13199139526336],[97.82917829178291,80.13199139526336],[97.84717847178473,80.1269256634537],[97.88677886778868,80.11003989075488],[97.90117901179013,80.09990842713557],[97.94437944379445,80.0779569226271],[98.04158041580416,80.07120261354757],[98.08838088380884,80.05600541811862],[98.05958059580598,80.03236533634026],[98.00558005580058,80.01379098637156],[97.95157951579517,80.00365952275226],[97.86157861578619,80.00028236821251],[97.84717847178473,79.99690521367273],[97.84357843578437,79.99183948186308],[97.84717847178473,79.98677375005343],[97.8507785077851,79.98170801824378],[97.85797857978582,79.97664228643413],[97.84357843578437,79.9698879773546],[97.76797767977683,79.94624789557625],[97.78237782377823,79.9411821637666],[97.82917829178291,79.9327392774172],[97.81477814778151,79.91585350471837],[97.7859778597786,79.89896773201954],[97.75357753577538,79.88545911386046],[97.61677616776171,79.85675330027246],[97.58077580775807,79.85675330027246],[97.6419764197642,79.83986752757363],[97.65997659976603,79.82973606395436],[97.62397623976238,79.8229817548748],[97.55197551975522,79.8229817548748],[97.51957519575194,79.80947313671575],[97.54477544775449,79.80103025036632],[97.60237602376026,79.79765309582658],[97.63117631176311,79.78921020947715],[97.60957609576099,79.77739016858797],[97.57717577175771,79.7672587049687],[97.49437494374945,79.7571272413494],[97.44397443974441,79.74530720046022],[97.21357213572139,79.71997854141196],[97.19197191971921,79.70646992325291],[97.2171721717217,79.70140419144326],[97.24597245972461,79.69971561417339],[97.27837278372783,79.70309276871313],[97.32877328773287,79.71828996414209],[97.7067770677707,79.76388155042892],[97.7211772117721,79.77232443677832],[97.7211772117721,79.7959645185567],[97.72477724777247,79.80609598217598],[97.7319773197732,79.80947313671575],[97.75717757177574,79.81116171398563],[97.8507785077851,79.83649037303388],[97.87597875978759,79.83986752757363],[97.89757897578977,79.84493325938328],[97.91917919179195,79.85675330027246],[97.88317883178831,79.87701622751106],[97.8939789397894,79.89221342294002],[97.92637926379263,79.90234488655929],[98.08838088380884,79.90572204109907],[98.25398253982542,79.87363907297129],[98.34038340383404,79.87195049570141],[98.37638376383762,79.87870480478094],[98.41238412384126,79.88883626840024],[98.45198451984521,79.90572204109907],[98.44478444784448,79.9124763501786],[98.43758437584376,79.91585350471837],[98.42678426784266,79.91923065925812],[98.41958419584199,79.91923065925812],[98.43398433984339,79.92767354560755],[98.46998469984703,79.93442785468707],[98.4879848798488,79.93949358649672],[98.4735847358474,79.94624789557625],[98.4879848798488,79.95637935919555],[98.56718567185675,79.9698879773546],[98.58158581585815,79.97664228643413],[98.57798577985778,79.98339659551368],[98.46638466384667,80.00028236821251],[98.43758437584376,80.01547956364143],[98.4771847718477,80.03743106814991],[98.51678516785171,80.05262826357887],[98.55638556385566,80.0593825726584],[98.75798757987582,80.03743106814991],[99.19719197191972,80.04925110903909],[99.24759247592476,80.03574249088004],[99.22599225992263,80.02729960453061],[99.1791917919179,80.02223387272096],[99.15759157591577,80.01547956364143],[99.19359193591936,80.01041383183178],[99.22959229592294,80.01041383183178],[99.30159301593017,80.02054529545109],[99.33039330393302,80.02054529545109],[99.3627936279363,80.01210240910169],[99.37719377193775,80.00028236821251],[99.3519935199352,79.9884623273233],[99.37719377193775,79.9800194409739],[99.56439564395646,79.96651082281485],[99.549995499955,79.9597565137353],[99.53199531995318,79.95637935919555],[99.51759517595178,79.95300220465577],[99.50319503195033,79.95300220465577],[99.53559535595355,79.93611643195695],[99.66519665196654,79.9327392774172],[99.73359733597334,79.9226078137979],[99.8019980199802,79.90572204109907],[99.80559805598057,79.90234488655929],[99.8127981279813,79.89727915474964],[99.81639816398166,79.89221342294002],[99.81639816398166,79.88883626840024],[99.81999819998202,79.88545911386046],[99.82359823598239,79.88377053659059],[99.83079830798312,79.88377053659059],[99.83799837998379,79.88208195932071],[99.8667986679867,79.86519618662189],[99.88119881198816,79.85844187754236],[99.92799927999283,79.85337614573271],[99.96399963999642,79.84662183665318],[100.02160021600218,79.8229817548748],[100,79.80609598217598],[100.01800018000182,79.7942759412868],[100.07560075600759,79.78245590039762],[100.0540005400054,79.7672587049687],[100.01440014400146,79.7571272413494],[99.93879938799387,79.74699577773009],[99.84159841598415,79.74868435499997],[99.81639816398166,79.74193004592044],[99.85959859598597,79.72504427322161],[99.88119881198816,79.71153565506256],[99.88479884798846,79.69296130509383],[99.8667986679867,79.6777641096649],[99.79479794797948,79.6575011824263],[99.76959769597698,79.64568114153712],[99.78039780397808,79.63386110064795],[99.77679776797771,79.62541821429855],[99.76239762397626,79.61190959613947],[99.74079740797407,79.58489235982134],[99.72639726397267,79.57476089620206],[99.70839708397085,79.56969516439241],[99.72639726397267,79.55280939169359],[99.76959769597698,79.53592361899476],[99.78759787597875,79.52241500083571],[99.76599765997662,79.5105949599465],[99.70119701197012,79.49033203270793],[99.68679686796867,79.4734462600091],[99.69039690396903,79.45656048731027],[99.70119701197012,79.44136329188132],[99.73359733597334,79.41941178737284],[99.70839708397085,79.40590316921379],[99.69759697596976,79.39577170559448],[99.69759697596976,79.38732881924508],[99.70839708397085,79.38057451016556],[99.7479974799748,79.36368873746673],[99.72999729997304,79.3552458511173],[99.68679686796867,79.32316288298952],[99.66519665196654,79.31303141937025],[99.6039960399604,79.29614564667142],[99.59679596795968,79.29107991486177],[99.58959589595895,79.27925987397259],[99.58239582395822,79.27419414216294],[99.57159571595719,79.27250556489307],[99.48879488794887,79.26912841035329],[99.4707947079471,79.26575125581351],[99.45999459994601,79.25393121492434],[99.45999459994601,79.24717690584481],[99.41319413194134,79.26406267854364],[99.14679146791468,79.31134284210034],[99.08919089190891,79.30965426483047],[99.03519035190351,79.29614564667142],[99.06399063990642,79.27925987397259],[99.32319323193235,79.22691397860623],[99.58239582395822,79.17287950596997],[99.61119611196114,79.15937088781092],[99.58239582395822,79.14923942419162],[99.549995499955,79.14417369238197],[99.48879488794887,79.14586226965184],[99.52839528395288,79.12391076514336],[99.81999819998202,79.10195926063491],[99.84159841598415,79.09182779701561],[99.85599855998561,79.09013921974571],[99.85599855998561,79.08338491066618],[99.87399873998743,79.0529905198083],[99.88479884798846,79.04117047891913]]],[[[27.17127171271713,80.07289119081744],[27.1640716407164,80.06613688173792],[27.149671496714973,80.04925110903909],[27.135271352713545,80.04249679995957],[27.14607146071461,80.03743106814991],[27.153271532715337,80.03236533634026],[27.160471604716065,80.03067675907039],[27.17127171271713,80.02898818180051],[27.1568715687157,80.01041383183178],[27.12087120871209,79.9884623273233],[27.102871028710297,79.97495370916425],[27.135271352713545,79.95469078192568],[27.225272252722533,79.92429639106777],[27.23967239672396,79.90572204109907],[27.20727207272074,79.87363907297129],[27.149671496714973,79.85506472300258],[26.919269192691928,79.84324468211341],[26.858068580685824,79.83142464122423],[26.789667896678964,79.7959645185567],[26.757267572675744,79.79089878674705],[26.649266492664935,79.78752163220727],[26.631266312663143,79.78076732312775],[26.634866348663508,79.76894728223857],[26.613266132661323,79.76050439588914],[26.588065880658803,79.75543866407949],[26.534065340653427,79.75543866407949],[26.5268652686527,79.73517573684092],[26.49446494464945,79.72335569595174],[26.296462964629654,79.69633845963361],[26.220862208622094,79.66932122331548],[25.8248582485825,79.62541821429855],[25.810458104581045,79.6203524824889],[25.810458104581045,79.6102210188696],[25.8248582485825,79.60177813252017],[25.853658536585385,79.59333524617077],[25.86445864458645,79.58658093709124],[25.893258932589333,79.58151520528159],[25.90765907659076,79.57307231893216],[25.91485914859149,79.56462943258276],[25.96525965259653,79.52579215537546],[25.968859688596893,79.51566069175615],[25.9580595805958,79.50721780540675],[25.929259292592945,79.49539776451758],[25.853658536585385,79.47851199181875],[25.8248582485825,79.46500337365967],[25.842858428584293,79.4531833327705],[25.828458284582865,79.44136329188132],[25.80685806858068,79.43629756007167],[25.78165781657816,79.43292040553192],[25.644856448564497,79.39746028286439],[25.410854108541088,79.373820201086],[25.367653676536776,79.36031158292695],[25.184051840518407,79.3366715011486],[24.97524975249752,79.33498292387873],[24.964449644496455,79.3366715011486],[24.96084960849609,79.34173723295825],[24.953649536495362,79.35186869657755],[24.950049500495,79.35693442838718],[24.946449464494663,79.36200016019683],[24.946449464494663,79.3653773147366],[24.946449464494663,79.37044304654626],[24.93564935649357,79.37550877835591],[24.921249212492143,79.37888593289566],[24.770047700477022,79.37044304654626],[24.561245612456133,79.32485146025942],[24.287642876428777,79.30965426483047],[24.258842588425892,79.28770276032199],[24.258842588425892,79.27925987397259],[24.27324273242732,79.26406267854364],[24.27324273242732,79.25393121492434],[24.258842588425892,79.24042259676528],[24.237242372423736,79.23029113314598],[24.053640536405368,79.18807670139893],[23.675636756367567,79.1998967422881],[23.30123301233013,79.21171678317728],[22.926829268292693,79.22353682406646],[22.736027360273596,79.26743983308342],[22.68202682026822,79.28770276032199],[22.653226532265336,79.3062771102907],[22.646026460264608,79.30965426483047],[22.642426424264244,79.3180971511799],[22.653226532265336,79.36368873746673],[22.894428944289444,79.41941178737284],[22.51282512825128,79.39408312832461],[22.415624156241563,79.40928032375356],[22.062820628206282,79.39070597378483],[21.710017100171,79.37213162381613],[21.50121501215014,79.39746028286439],[21.159211592115923,79.38732881924508],[20.817208172081735,79.37888593289566],[20.792007920079215,79.39239455105474],[20.806408064080642,79.39408312832461],[20.83880838808389,79.40252601467401],[20.85320853208532,79.40590316921379],[20.76320763207633,79.43292040553192],[20.748807488074874,79.44980617823074],[20.730807308073082,79.45824906458014],[20.464404644046454,79.4633147963898],[20.198001980019797,79.46838052819945],[20.07560075600756,79.49033203270793],[20.01800018000182,79.5122835372164],[19.686796867968695,79.55449796896346],[19.661596615966175,79.56800658712254],[19.64719647196472,79.58826951436112],[19.63279632796329,79.61190959613947],[19.81639816398166,79.63554967791782],[20.20880208802089,79.64568114153712],[20.22680226802268,79.64230398699738],[20.27720277202772,79.61697532794912],[20.414004140041413,79.59164666890089],[20.784807848078486,79.57982662801172],[21.15561155611556,79.56969516439241],[21.126811268112675,79.58826951436112],[20.648006480064794,79.62710679156842],[20.4968049680497,79.67269837785526],[20.475204752047517,79.6862069960143],[20.932409324093243,79.69296130509383],[21.393213932139332,79.69971561417339],[21.850418504185058,79.70646992325291],[21.864818648186485,79.71153565506256],[21.864818648186485,79.71997854141196],[21.85401854018542,79.72842142776139],[21.839618396183965,79.73348715957104],[21.89361893618937,79.75206150953974],[22.282422824228263,79.77401301404822],[22.34722347223473,79.78921020947715],[22.2860228602286,79.80609598217598],[22.214022140221402,79.80609598217598],[21.800018000180017,79.76894728223857],[21.800018000180017,79.7757015913181],[21.807218072180717,79.7757015913181],[21.832418324183237,79.78245590039762],[21.73521735217352,79.78245590039762],[21.76761767617677,79.8044074049061],[21.85401854018542,79.80778455944588],[21.88641886418864,79.8229817548748],[21.4580145801458,79.8145388685254],[21.02961029610296,79.8044074049061],[20.601206012060118,79.7942759412868],[20.172801728017276,79.7858330549374],[19.996399963999636,79.74868435499997],[19.812798127981296,79.74868435499997],[19.73359733597337,79.72673285049149],[19.485194851948535,79.71828996414209],[19.41319413194134,79.73855289138069],[19.39519395193952,79.74024146865057],[19.308793087930894,79.74024146865057],[19.243992439924398,79.72842142776139],[18.95238952389525,79.73686431411079],[18.783187831878337,79.72335569595174],[18.74358743587436,79.72673285049149],[18.747187471874724,79.73011000503126],[18.761587615876152,79.74193004592044],[18.739987399873996,79.74361862319032],[18.71838718387184,79.74699577773009],[18.707587075870777,79.75543866407949],[18.721987219872204,79.76894728223857],[18.682386823868256,79.78752163220727],[18.635586355863552,79.7942759412868],[18.480784807848096,79.7858330549374],[18.45918459184591,79.78921020947715],[18.448384483844848,79.7959645185567],[18.419584195841963,79.8229817548748],[18.397983979839807,79.83142464122423],[18.322383223832247,79.84155610484353],[18.30798307983082,79.84831041392306],[18.268382683826843,79.87532765024119],[18.23238232382326,79.89052484567011],[18.192781927819283,79.90065630928942],[18.11358113581136,79.90572204109907],[18.145981459814607,79.91585350471837],[18.293582935829363,79.94455931830637],[18.412384123841235,79.94624789557625],[18.520385203852044,79.96313366827508],[18.585185851858512,79.95469078192568],[18.624786247862488,79.95637935919555],[18.660786607866072,79.96482224554495],[18.678786787867892,79.9800194409739],[18.556385563855656,79.9800194409739],[18.577985779857812,79.98339659551368],[18.61758617586176,79.99690521367273],[18.6679866798668,80.01041383183178],[18.685986859868592,80.00872525456191],[18.678786787867892,79.99521663640286],[18.707587075870777,79.99183948186308],[18.765187651876516,79.97495370916425],[18.790387903879036,79.97495370916425],[18.804788047880493,79.98339659551368],[18.808388083880857,79.99352805913296],[18.80118801188013,80.00197094548238],[18.783187831878337,80.00872525456191],[18.822788227882285,80.01885671818121],[18.862388623886233,80.02392244999086],[18.898388983889845,80.03405391361014],[18.934389343893457,80.05600541811862],[18.837188371883713,80.03067675907039],[18.37638376383765,80.03911964541979],[18.30798307983082,80.0593825726584],[18.235982359823595,80.04925110903909],[18.21438214382144,80.05262826357887],[18.17478174781749,80.07289119081744],[18.153181531815335,80.07626834535722],[18.153181531815335,80.08302265443675],[18.19998199982001,80.07120261354757],[18.261182611826115,80.06613688173792],[18.318783187831883,80.0695140362777],[18.36558365583656,80.08302265443675],[18.14958149581497,80.0965312725958],[18.11358113581136,80.108351313485],[18.066780667806682,80.12861424072358],[18.02358023580237,80.13874570434288],[17.994779947799486,80.11848277710428],[17.983979839798394,80.12017135437418],[17.958779587795874,80.1269256634537],[17.933579335793354,80.13030281799345],[17.800378003780054,80.12861424072358],[17.782377823778234,80.13874570434288],[17.818378183781846,80.14043428161276],[17.886778867788678,80.16069720885136],[17.951579515795174,80.17082867247066],[18.009180091800914,80.19109159970924],[18.0379803798038,80.19278017697911],[18.059580595805954,80.18264871335984],[18.070380703807047,80.17927155882006],[18.08838088380884,80.17927155882006],[18.13878138781388,80.18602586789959],[18.34038340383404,80.17927155882006],[18.394383943839443,80.17251724974054],[18.412384123841235,80.17420582701041],[18.44118441184412,80.18264871335984],[18.570785707857084,80.18433729062971],[18.646386463864644,80.16576294066101],[18.682386823868256,80.16238578612123],[18.711187111871112,80.16576294066101],[18.76878768787688,80.18602586789959],[18.70038700387005,80.20797737240807],[18.855188551885533,80.19784590878876],[18.909189091890937,80.18771444516949],[18.959589595895977,80.16238578612123],[19.182791827918294,80.12017135437418],[19.243992439924398,80.08977696351627],[19.272792727927282,80.08471123170662],[19.301593015930166,80.08639980897652],[19.33039330393305,80.09146554078617],[19.391593915939154,80.11341704529463],[19.40599405994061,80.12185993164405],[19.398793987939882,80.13199139526336],[19.398793987939882,80.13874570434288],[19.492394923949234,80.13874570434288],[19.585995859958615,80.15225432250193],[19.54639546395464,80.17251724974054],[19.485194851948535,80.17758298155019],[19.377193771937726,80.17251724974054],[19.276392763927646,80.18433729062971],[19.225992259922606,80.19784590878876],[19.193591935919358,80.2248631451069],[19.150391503915046,80.23837176326595],[19.135991359913618,80.2451260723455],[19.12879128791289,80.25019180415512],[19.114391143911433,80.25525753596477],[19.10359103591037,80.25863469050455],[19.099990999910005,80.2637004223142],[19.099990999910005,80.26876615412385],[19.099990999910005,80.27552046320338],[19.099990999910005,80.2822747722829],[19.092790927909277,80.29409481317208],[19.089190891908913,80.3008491222516],[19.081990819908214,80.30929200860103],[19.063990639906393,80.31773489495043],[18.999189991899925,80.33124351310951],[18.981189811898133,80.34306355399869],[18.99558995589956,80.34644070853844],[19.02079020790208,80.35488359488787],[19.035190351903537,80.35826074942761],[19.283592835928374,80.33968639945891],[19.33759337593378,80.32786635856974],[19.611196111961135,80.22824029964667],[19.67239672396724,80.21810883602737],[19.852398523985244,80.22148599056712],[19.82359823598236,80.23330603145632],[19.737197371973735,80.2349946087262],[19.71559715597158,80.24850322688525],[19.729997299973007,80.25694611323468],[19.837998379983816,80.28902908136243],[19.827198271982724,80.2924062359022],[19.805598055980568,80.30253769952151],[19.81639816398166,80.30253769952151],[19.82359823598236,80.30422627679138],[19.837998379983816,80.30929200860103],[19.819998199981995,80.31604631768056],[19.769597695976955,80.32280062676008],[19.79119791197914,80.32786635856974],[19.819998199981995,80.32786635856974],[19.84159841598418,80.33124351310951],[19.85959859598597,80.34306355399869],[19.79119791197914,80.34475213126856],[19.769597695976955,80.34981786307821],[19.80919809198093,80.35319501761799],[19.877598775987764,80.37345794485657],[19.913599135991376,80.37852367666622],[19.913599135991376,80.38527798574574],[19.528395283952847,80.38865514028552],[19.4887948879489,80.39372087209517],[19.467194671946714,80.4089180675241],[19.46359463594638,80.43593530384223],[19.46359463594638,80.45282107654106],[19.467194671946714,80.46464111743023],[19.499594995949963,80.47139542650976],[19.542795427954275,80.47308400377966],[19.618396183961835,80.45957538562058],[19.661596615966175,80.439312458382],[19.675996759967603,80.439312458382],[19.686796867968695,80.4477553447314],[19.68319683196833,80.45450965381093],[19.654396543965447,80.46464111743023],[19.636396363963655,80.48152689012906],[19.63999639996402,80.49672408555801],[19.65799657996581,80.50516697190741],[19.801998019980203,80.49334693101824],[19.837998379983816,80.48152689012906],[19.830798307983088,80.47477258104954],[20.014400144001456,80.47139542650976],[20.036000360003612,80.46801827197001],[20.021600216002156,80.45113249927118],[20.01800018000182,80.44606676746153],[20.046800468004676,80.4376238811121],[20.079200792007924,80.43255814930248],[20.07560075600756,80.42242668568318],[20.072000720007196,80.4190495311434],[20.090000900009017,80.41398379933375],[20.097200972009716,80.41229522206388],[20.086400864008652,80.4004751811747],[20.08280082800829,80.38865514028552],[20.086400864008652,80.381900831206],[20.104401044010444,80.37852367666622],[20.129601296012964,80.3802122539361],[20.140401404014057,80.38527798574574],[20.162001620016213,80.40554091298435],[20.190801908019097,80.42073810841327],[20.23400234002341,80.42749241749283],[20.388803888038893,80.42411526295305],[20.424804248042477,80.41398379933375],[20.42840428404284,80.39203229482527],[20.48600486004861,80.3717693675867],[20.543605436054378,80.35826074942761],[20.53640536405365,80.34306355399869],[20.52920529205292,80.33630924491916],[20.522005220052222,80.32955493583961],[20.558005580055806,80.31266916314078],[20.590405904059054,80.30253769952151],[20.626406264062638,80.29916054498173],[20.799207992079914,80.31604631768056],[20.83880838808389,80.30929200860103],[20.8208082080821,80.30253769952151],[20.774007740077394,80.29071765863233],[20.756007560075602,80.2822747722829],[20.748807488074874,80.26876615412385],[20.756007560075602,80.26032326777442],[20.784807848078486,80.24850322688525],[20.81360813608137,80.22655172237677],[20.824408244082434,80.22148599056712],[20.85320853208532,80.21473168148759],[20.882008820088203,80.21135452694784],[21.19161191611917,80.23330603145632],[21.28161281612816,80.25863469050455],[21.3248132481325,80.26201184504433],[21.317613176131772,80.25694611323468],[21.310413104131044,80.2535689586949],[21.303213032130316,80.24681464961537],[21.29961299612998,80.24174891780572],[21.310413104131044,80.23837176326595],[21.317613176131772,80.2349946087262],[21.3320133201332,80.22148599056712],[21.317613176131772,80.22148599056712],[21.317613176131772,80.21304310421772],[21.346413464134656,80.21473168148759],[21.368013680136812,80.21810883602737],[21.393213932139332,80.2248631451069],[21.414814148141488,80.2349946087262],[21.418414184141852,80.24006034053585],[21.418414184141852,80.24681464961537],[21.418414184141852,80.25188038142502],[21.43281432814328,80.2535689586949],[21.443614436144372,80.25525753596477],[21.454414544145436,80.25694611323468],[21.46521465214653,80.26032326777442],[21.47601476014762,80.26538899958408],[21.530015300152996,80.2738318859335],[21.648816488164897,80.23837176326595],[21.7028170281703,80.24174891780572],[21.66681666816669,80.2535689586949],[21.656016560165597,80.2535689586949],[21.67761677616778,80.27552046320338],[21.724417244172457,80.28058619501303],[21.846818468184694,80.2721433086636],[21.864818648186485,80.26201184504433],[21.897218972189734,80.2248631451069],[21.897218972189734,80.21304310421772],[21.87921879218794,80.20628879513819],[21.839618396183965,80.19953448605867],[21.774817748177497,80.18264871335984],[21.71721717217173,80.17420582701041],[21.598415984159857,80.12523708618383],[21.623616236162377,80.11510562256453],[21.648816488164897,80.1167941998344],[21.764017640176405,80.14718859069228],[21.825218252182538,80.15225432250193],[21.85401854018542,80.14718859069228],[21.904419044190462,80.13030281799345],[22.066420664206646,80.11172846802475],[22.059220592205918,80.10328558167535],[22.080820808208102,80.09484269532592],[22.12042120421205,80.08302265443675],[22.156421564215663,80.06107114992827],[22.19602196021961,80.05093968630896],[22.217622176221766,80.04249679995957],[22.206822068220703,80.03574249088004],[22.174421744217454,80.02223387272096],[22.224822248222495,80.00872525456191],[22.20322203222034,79.99183948186308],[22.19602196021961,79.9884623273233],[22.23562235622356,79.98170801824378],[22.282422824228263,79.98339659551368],[22.32922329223294,79.99183948186308],[22.368823688236887,80.00872525456191],[22.343623436234367,80.02392244999086],[22.318423184231847,80.03574249088004],[22.365223652236523,80.04418537722944],[22.43722437224372,80.01041383183178],[22.476824768247695,80.01547956364143],[22.43722437224372,80.03911964541979],[22.42282422824229,80.04418537722944],[22.37962379623798,80.04925110903909],[22.358023580235823,80.05600541811862],[22.34722347223473,80.0695140362777],[22.44802448024481,80.06613688173792],[22.46242462424624,80.0695140362777],[22.44802448024481,80.08133407716687],[22.37242372423725,80.11172846802475],[22.390423904239043,80.12523708618383],[22.408424084240863,80.1455000134224],[22.408424084240863,80.15056574523206],[22.401224012240135,80.16069720885136],[22.401224012240135,80.16576294066101],[22.408424084240863,80.17082867247066],[22.43722437224372,80.18602586789959],[22.45522455224554,80.20460021786829],[22.466024660246603,80.22148599056712],[22.46242462424624,80.24006034053585],[22.44802448024481,80.26201184504433],[22.476824768247695,80.27552046320338],[22.54882548825489,80.28396334955278],[22.577625776257776,80.29916054498173],[22.56322563225632,80.31098058587091],[22.37962379623798,80.33799782218904],[22.37242372423725,80.33968639945891],[22.340023400234003,80.35488359488787],[22.332823328233303,80.36501505850717],[22.33642336423364,80.38358940847587],[22.358023580235823,80.40216375844457],[22.37962379623798,80.41567237660365],[22.38682386823868,80.42749241749283],[22.458824588245903,80.44100103565188],[22.68202682026822,80.42749241749283],[22.68202682026822,80.4190495311434],[22.667626676266764,80.40385233571448],[22.635226352263544,80.3717693675867],[22.61362613626136,80.35826074942761],[22.635226352263544,80.34137497672882],[22.674826748267492,80.33293209037939],[22.750427504275052,80.32955493583961],[22.736027360273596,80.33630924491916],[22.718027180271804,80.34137497672882],[22.70722707227074,80.34812928580834],[22.696426964269648,80.35826074942761],[22.71442714427144,80.35994932669752],[22.772027720277208,80.37683509939635],[22.793627936279364,80.37852367666622],[22.800828008280092,80.381900831206],[22.804428044280456,80.38865514028552],[22.80802808028082,80.39709802663492],[22.81522815228152,80.40385233571448],[22.82242822428225,80.4089180675241],[22.83322833228334,80.41229522206388],[22.826028260282612,80.41567237660365],[22.811628116281156,80.42749241749283],[22.829628296282976,80.43424672657235],[22.811628116281156,80.44437819019166],[22.790027900279,80.45957538562058],[22.804428044280456,80.48152689012906],[22.793627936279364,80.48321546739894],[22.775627756277572,80.48828119920859],[22.75762757627578,80.49503550828814],[22.750427504275052,80.50516697190741],[22.761227612276116,80.51360985825684],[22.7828278282783,80.51698701279659],[22.826028260282612,80.51529843552672],[22.977229772297733,80.47477258104954],[23.26883268832688,80.45450965381093],[23.358833588335898,80.43255814930248],[23.34443344433444,80.42749241749283],[23.322833228332286,80.42242668568318],[23.286832868328702,80.4190495311434],[23.30123301233013,80.41398379933375],[23.308433084330858,80.41229522206388],[23.31923319233192,80.41229522206388],[23.2940329403294,80.40554091298435],[23.189631896318957,80.40385233571448],[23.14283142831428,80.39372087209517],[23.121231212312125,80.39203229482527],[23.14283142831428,80.381900831206],[23.1680316803168,80.37683509939635],[23.21843218432184,80.37852367666622],[23.214832148321477,80.37008079031682],[23.207632076320778,80.36332648123727],[23.20043200432005,80.35994932669752],[23.189631896318957,80.35826074942761],[23.21123211232114,80.35826074942761],[23.272432724327246,80.34981786307821],[23.315633156331558,80.35150644034809],[23.337233372333742,80.34812928580834],[23.355233552335534,80.33799782218904],[23.2940329403294,80.32786635856974],[23.2940329403294,80.32280062676008],[23.297632976329766,80.31604631768056],[23.297632976329766,80.30929200860103],[23.297632976329766,80.30422627679138],[23.304833048330494,80.29578339044198],[23.304833048330494,80.28902908136243],[23.297632976329766,80.28058619501303],[23.279632796327974,80.27720904047325],[23.26163261632618,80.27552046320338],[23.22563225632257,80.2637004223142],[23.08523085230854,80.25525753596477],[23.056430564305657,80.24850322688525],[23.02403024030241,80.19278017697911],[23.006030060300617,80.16914009520076],[23.006030060300617,80.16238578612123],[23.01683016830168,80.15225432250193],[23.06003060030602,80.13199139526336],[23.121231212312125,80.1167941998344],[23.18603186031862,80.11341704529463],[23.229232292322934,80.12523708618383],[23.19323193231932,80.13199139526336],[23.171631716317165,80.14043428161276],[23.14283142831428,80.15563147704171],[23.103231032310333,80.16238578612123],[23.08523085230854,80.17251724974054],[23.24363243632436,80.16576294066101],[23.232832328323298,80.17589440428029],[23.22563225632257,80.17758298155019],[23.21843218432184,80.17927155882006],[23.22563225632257,80.19109159970924],[23.240032400323997,80.19446875424902],[23.27603276032761,80.19278017697911],[23.297632976329766,80.19446875424902],[23.308433084330858,80.19278017697911],[23.315633156331558,80.18940302243936],[23.31923319233192,80.18602586789959],[23.31923319233192,80.17589440428029],[23.31923319233192,80.17251724974054],[23.34443344433444,80.15563147704171],[23.36963369633696,80.14381143615253],[23.398433984339846,80.14212285888263],[23.430834308343094,80.15900863158146],[23.394833948339482,80.18264871335984],[23.387633876338782,80.18940302243936],[23.398433984339846,80.20460021786829],[23.423634236342366,80.21135452694784],[23.470434704347042,80.21304310421772],[23.456034560345614,80.20797737240807],[23.466834668346678,80.20797737240807],[23.481234812348134,80.20628879513819],[23.492034920349198,80.20291164059842],[23.499234992349926,80.19278017697911],[23.495634956349562,80.18433729062971],[23.4848348483485,80.17927155882006],[23.463234632346342,80.17251724974054],[23.470434704347042,80.16914009520076],[23.492034920349198,80.15900863158146],[23.50283502835029,80.15732005431158],[23.538835388353903,80.15900863158146],[23.538835388353903,80.15394289977183],[23.53523535235354,80.14212285888263],[23.531635316353174,80.13874570434288],[23.56763567635676,80.13367997253323],[23.600036000360006,80.14212285888263],[23.66123661236614,80.17251724974054],[23.80523805238053,80.18433729062971],[23.834038340383415,80.19953448605867],[23.772837728377283,80.20797737240807],[23.758437584375855,80.20966594967794],[23.751237512375127,80.21810883602737],[23.740437404374063,80.22655172237677],[23.72963729637297,80.2349946087262],[23.747637476374763,80.23837176326595],[23.776437764377647,80.2434374950756],[23.79443794437944,80.24850322688525],[23.7368373683737,80.25525753596477],[23.715237152371543,80.26201184504433],[23.726037260372607,80.26876615412385],[23.7368373683737,80.2738318859335],[23.747637476374763,80.27552046320338],[23.758437584375855,80.27552046320338],[23.751237512375127,80.28734050409255],[23.7440374403744,80.2924062359022],[23.7368373683737,80.29578339044198],[23.765637656376583,80.30929200860103],[23.798037980379803,80.30422627679138],[23.866438664386664,80.2822747722829],[23.960039600396016,80.2822747722829],[23.978039780397808,80.27889761774316],[23.9960399603996,80.2738318859335],[24.01404014040142,80.27045473139373],[24.032040320403212,80.27552046320338],[23.927639276392767,80.29747196771186],[23.89523895238952,80.30929200860103],[24.078840788407888,80.30253769952151],[24.19044190441906,80.27552046320338],[24.22284222842228,80.2822747722829],[24.208442084420852,80.2924062359022],[24.20484204842049,80.29578339044198],[24.334443344433453,80.28565192682268],[24.3740437404374,80.29578339044198],[24.359643596435973,80.30253769952151],[24.34164341643418,80.30760343133116],[24.32364323643236,80.31098058587091],[24.30564305643057,80.30929200860103],[24.30564305643057,80.31773489495043],[24.38124381243813,80.31604631768056],[24.402844028440285,80.32280062676008],[24.377643776437765,80.33293209037939],[24.212042120421216,80.33462066764926],[24.14724147241472,80.34981786307821],[24.186841868418696,80.3717693675867],[24.258842588425892,80.37514652212644],[24.48204482044821,80.35488359488787],[24.510845108451093,80.34812928580834],[24.60084600846008,80.31773489495043],[24.572045720457226,80.31773489495043],[24.53244532445325,80.31435774041068],[24.50004500045,80.30591485406126],[24.471244712447145,80.29578339044198],[24.47484474844748,80.2924062359022],[24.485644856448573,80.28565192682268],[24.4928449284493,80.2822747722829],[24.485644856448573,80.27889761774316],[24.471244712447145,80.2721433086636],[24.464044640446417,80.26876615412385],[24.489244892448937,80.26201184504433],[24.521645216452185,80.25525753596477],[24.554045540455405,80.25525753596477],[24.57564575645756,80.26538899958408],[24.60084600846008,80.27889761774316],[24.72684726847268,80.29409481317208],[24.737647376473774,80.29747196771186],[24.748447484474866,80.30591485406126],[24.7520475204752,80.31266916314078],[24.7520475204752,80.32111204949021],[24.755647556475566,80.32786635856974],[24.78444784447845,80.33630924491916],[24.806048060480606,80.34981786307821],[24.831248312483126,80.35657217215774],[24.870848708487102,80.33462066764926],[24.888848888488894,80.32280062676008],[24.878048780487802,80.31435774041068],[24.86724867248674,80.30929200860103],[24.852848528485282,80.30422627679138],[24.84204842048422,80.30253769952151],[24.849248492484918,80.28565192682268],[24.831248312483126,80.2721433086636],[24.780847808478086,80.24850322688525],[24.816848168481698,80.25525753596477],[24.89244892448926,80.26201184504433],[25.047250472504743,80.2535689586949],[25.115651156511575,80.26876615412385],[25.356853568535684,80.2822747722829],[25.324453244532464,80.26876615412385],[25.223652236522383,80.2535689586949],[25.27045270452706,80.23330603145632],[25.317253172531736,80.22655172237677],[25.4540545405454,80.23161745418642],[25.515255152551532,80.24174891780572],[25.54765547655478,80.24174891780572],[25.565655656556572,80.23668318599607],[25.58725587255873,80.22824029964667],[25.60525605256052,80.2164202587575],[25.616056160561612,80.19953448605867],[25.6988569885699,80.22317456783702],[25.745657456574577,80.2248631451069],[25.78165781657816,80.21304310421772],[25.76365763657637,80.19953448605867],[25.7060570605706,80.17251724974054],[25.846458464584657,80.17251724974054],[25.94005940059401,80.18602586789959],[26.372063720637215,80.17927155882006],[26.807668076680784,80.17420582701041],[26.9048690486905,80.15225432250193],[27.00567005670058,80.11510562256453],[27.041670416704164,80.11172846802475],[27.192871928719285,80.11003989075488],[27.23967239672396,80.0965312725958],[27.17127171271713,80.07289119081744]]],[[[97.74637746377465,80.741567789691],[97.80037800378005,80.73312490334158],[97.92637926379263,80.741567789691],[97.9731797317973,80.7213048624524],[97.94437944379445,80.69935335794392],[97.89757897578977,80.6925990488644],[97.80397803978042,80.6942876261343],[97.77877778777787,80.69091047159452],[97.76797767977683,80.68584473978487],[97.73917739177392,80.66895896708604],[97.7175771757718,80.66389323527639],[97.69597695976961,80.6655818125463],[97.64917649176493,80.67233612162582],[97.55557555575558,80.67402469889569],[97.37197371973718,80.65207319438721],[97.32877328773287,80.65376177165709],[97.28917289172892,80.6655818125463],[97.29277292772929,80.67064754435592],[97.13077130771308,80.6655818125463],[97.14517145171453,80.65713892619686],[97.17397173971739,80.65038461711734],[97.19197191971921,80.64531888530769],[97.15957159571599,80.62336738079921],[97.08037080370804,80.60310445356063],[97.04797047970482,80.5845301035919],[97.05877058770591,80.57271006270273],[97.05517055170554,80.56764433089307],[97.04077040770409,80.56426717635333],[97.029970299703,80.55920144454367],[97.0191701917019,80.5473814036545],[97.0191701917019,80.54231567184485],[97.0191701917019,80.5372499400352],[97.0191701917019,80.52542989914602],[97.1379713797138,80.49503550828814],[97.1487714877149,80.48659262193871],[97.14517145171453,80.46970684923988],[97.1487714877149,80.45450965381093],[97.17397173971739,80.44606676746153],[97.18837188371884,80.44437819019166],[97.19917199171994,80.439312458382],[97.20997209972103,80.43086957203258],[97.21357213572139,80.4190495311434],[97.20997209972103,80.410606644794],[97.19557195571957,80.39878660390482],[97.19197191971921,80.39203229482527],[97.19197191971921,80.37008079031682],[97.20637206372066,80.35488359488787],[97.22437224372243,80.34644070853844],[97.24957249572498,80.34306355399869],[97.3359733597336,80.34306355399869],[97.42237422374222,80.32617778129986],[97.42237422374222,80.31942347222034],[97.41517415174155,80.31098058587091],[97.40437404374046,80.30253769952151],[97.389973899739,80.29578339044198],[97.34317343173433,80.28902908136243],[97.24957249572498,80.26538899958408],[97.22077220772206,80.26201184504433],[97.22797227972279,80.25188038142502],[97.23157231572316,80.24850322688525],[97.18837188371884,80.23330603145632],[96.75636756367567,80.21473168148759],[96.3279632796328,80.19615733151889],[95.89595895958962,80.17589440428029],[95.46395463954639,80.15732005431158],[95.03555035550357,80.13874570434288],[94.86274862748627,80.15225432250193],[94.80874808748086,80.14381143615253],[94.74394743947443,80.12185993164405],[94.71874718747188,80.11848277710428],[94.53154531545317,80.13030281799345],[94.50634506345062,80.12523708618383],[94.48834488344886,80.11510562256453],[94.4739447394474,80.10328558167535],[94.45954459544595,80.09484269532592],[94.17154171541716,80.04080822268969],[93.8511385113851,80.02054529545109],[93.75033750337502,79.99690521367273],[93.69273692736931,79.9985937909426],[93.33993339933403,80.04756253176922],[92.98352983529838,80.0965312725958],[92.99072990729906,80.10328558167535],[92.96552965529656,80.11172846802475],[92.50472504725047,80.15732005431158],[92.40752407524076,80.15225432250193],[92.06552065520657,80.17251724974054],[92.09072090720906,80.18264871335984],[92.1411214112141,80.18433729062971],[92.16632166321665,80.18771444516949],[92.17352173521738,80.19278017697911],[92.1807218072181,80.19953448605867],[92.1807218072181,80.20460021786829],[92.1807218072181,80.20797737240807],[92.1951219512195,80.20797737240807],[92.2059220592206,80.20628879513819],[92.21672216722169,80.20291164059842],[92.52632526325266,80.18096013608994],[92.83592835928363,80.16069720885136],[92.88992889928898,80.17251724974054],[92.85752857528576,80.18771444516949],[92.7747277472775,80.18940302243936],[92.6991269912699,80.20291164059842],[92.43992439924398,80.20966594967794],[92.36072360723608,80.22655172237677],[92.28152281522819,80.22992887691655],[92.24552245522455,80.24174891780572],[92.25272252722527,80.24850322688525],[92.21672216722169,80.26538899958408],[92.13032130321307,80.27552046320338],[92.10872108721088,80.28902908136243],[92.40032400324003,80.29409481317208],[92.69192691926918,80.29916054498173],[92.73152731527318,80.29747196771186],[92.79632796327962,80.29578339044198],[92.83592835928363,80.2924062359022],[93.28953289532899,80.26707757685395],[93.32193321933221,80.27552046320338],[93.30393303933039,80.28734050409255],[93.28233282332826,80.29747196771186],[93.24273242732426,80.30929200860103],[93.19233192331922,80.31604631768056],[92.79632796327962,80.30929200860103],[92.73512735127355,80.31098058587091],[92.33552335523359,80.30422627679138],[91.93231932319327,80.29747196771186],[91.53271532715326,80.28902908136243],[91.5579155791558,80.29578339044198],[91.61911619116194,80.30422627679138],[91.64071640716406,80.31773489495043],[91.5039150391504,80.30591485406126],[91.42111421114214,80.30929200860103],[91.47151471514718,80.34981786307821],[91.54711547115471,80.35994932669752],[91.62631626316266,80.35994932669752],[91.68751687516874,80.3717693675867],[91.68031680316807,80.37514652212644],[91.66231662316625,80.38527798574574],[91.98991989919898,80.40216375844457],[92.04032040320402,80.3903437175554],[92.06912069120693,80.38865514028552],[92.10152101521015,80.3903437175554],[92.11952119521197,80.39878660390482],[92.11232112321125,80.40216375844457],[92.10152101521015,80.40385233571448],[92.56232562325624,80.3802122539361],[92.62712627126274,80.39203229482527],[92.36072360723608,80.40554091298435],[92.09792097920979,80.4190495311434],[92.01152011520117,80.44100103565188],[91.9287192871929,80.4477553447314],[91.8891188911889,80.45957538562058],[91.91791917919181,80.46801827197001],[92.27792277922782,80.51023270371707],[92.73872738727385,80.51360985825684],[92.76752767527677,80.51698701279659],[92.79272792727926,80.52880705368577],[92.79632796327962,80.53556136276532],[92.79272792727926,80.54062709457497],[92.79272792727926,80.5473814036545],[92.80352803528035,80.5575128672738],[92.81432814328144,80.5760872172425],[92.82152821528217,80.5845301035919],[92.81072810728108,80.59128441267143],[92.80352803528035,80.59635014448108],[92.7891278912789,80.59803872175098],[92.77832778327786,80.59635014448108],[92.78552785527859,80.6047930308305],[92.79272792727926,80.60985876264016],[92.81432814328144,80.61661307171968],[92.82512825128254,80.65038461711734],[92.88992889928898,80.68077900797522],[93.23913239132395,80.77027360327901],[93.27153271532717,80.78209364416819],[93.27153271532717,80.79729083959714],[92.8971289712897,80.76183071692958],[92.75672756727568,80.77533933508866],[92.73512735127355,80.77196218054888],[92.70272702727027,80.75845356238983],[92.68112681126814,80.75507640785005],[92.53352533525339,80.75338783058018],[92.50112501125011,80.75845356238983],[92.49752497524975,80.77533933508866],[92.51912519125193,80.79222510778749],[92.55872558725588,80.80235657140679],[92.62712627126274,80.80911088048632],[92.6307263072631,80.81417661229597],[92.67392673926742,80.83443953953454],[92.68472684726851,80.84288242588397],[92.6991269912699,80.84794815769362],[92.71712717127173,80.85132531223337],[92.73152731527318,80.85132531223337],[92.72432724327246,80.86483393039245],[92.709927099271,80.87327681674185],[92.69192691926918,80.87665397128163],[92.67752677526778,80.8783425485515],[92.71712717127173,80.8884740121708],[92.80352803528035,80.89185116671055],[92.88992889928898,80.91042551667928],[93.10593105931059,80.92055698029856],[93.1491314913149,80.93068844391786],[93.16353163531636,80.94757421661669],[93.14193141931418,80.95770568023599],[93.07713077130774,80.97290287566494],[93.07353073530737,80.98810007109387],[93.05913059130592,80.9948543801734],[93.05193051930519,80.9948543801734],[93.47313473134733,81.043823121],[93.65673656736567,81.03200308011083],[93.66753667536676,81.0336916573807],[93.67473674736749,81.03706881192048],[93.67833678336785,81.04213454373013],[93.68193681936822,81.04720027553978],[93.68193681936822,81.05057743007953],[93.69993699936998,81.0539545846193],[94.05994059940599,81.06915178004826],[94.16074160741607,81.09279186182661],[94.38754387543878,81.11474336633509],[94.55674556745566,81.10461190271579],[94.88794887948882,81.14513775719297],[95.03555035550357,81.18735218894003],[95.10755107551074,81.19579507528945],[95.1867518675187,81.21774657979793],[95.5467554675547,81.22112373433768],[95.51795517955179,81.22956662068711],[95.06075060750607,81.24138666157629],[95.03555035550357,81.24814097065581],[95.10395103951038,81.27178105243416],[95.4387543875439,81.28022393878359],[95.77715777157772,81.28866682513299],[95.83475834758349,81.27515820697394],[95.89955899558998,81.25151812519559],[95.9967599675997,81.24307523884616],[96.02196021960219,81.23463235249676],[95.96435964359642,81.22281231160758],[95.95715957159575,81.21436942525816],[95.96795967959679,81.20423796163885],[95.98595985959861,81.2008608070991],[96.13356133561336,81.20254938436898],[96.16956169561695,81.19410649801955],[96.15876158761591,81.1805978798605],[96.1839618396184,81.1721549935111],[96.24516245162454,81.16708926170145],[96.2739627396274,81.16033495262192],[96.28116281162812,81.15695779808215],[96.28836288362885,81.1434491799231],[96.29556295562958,81.13838344811344],[96.5547655476555,81.07759466639766],[96.53316533165332,81.06408604823861],[96.52956529565296,81.04551169826988],[96.54396543965441,81.03031450284095],[96.5691656916569,81.0235601937614],[96.73116731167312,81.00836299833247],[96.70956709567099,81.00160868925295],[96.66636666366662,80.9965429574433],[96.6447664476645,80.98810007109387],[96.66276662766631,80.98134576201434],[96.68436684366844,80.97628003020469],[96.70596705967063,80.97459145293482],[96.72756727567275,80.97459145293482],[96.72036720367203,80.96783714385529],[96.7671676716767,80.94926279388656],[96.86436864368642,80.94250848480704],[96.91116911169115,80.93406559845764],[96.95436954369546,80.91042551667928],[96.97236972369723,80.90535978486963],[97.42597425974259,80.85132531223337],[97.41877418774186,80.84794815769362],[97.41157411574119,80.83781669407432],[97.55917559175595,80.84119384861407],[97.6527765277653,80.82937380772489],[97.75357753577538,80.82937380772489],[97.78957789577896,80.81586518956584],[97.75717757177574,80.80235657140679],[97.74637746377465,80.79560226232724],[97.78237782377823,80.79560226232724],[97.81477814778151,80.78884795324771],[97.88317883178831,80.77027360327901],[97.8507785077851,80.75507640785005],[97.78237782377823,80.7500106760404],[97.74637746377465,80.741567789691]]],[[[125.27225272252724,10.322829903772828],[125.2758527585276,10.300878399264349],[125.27225272252724,10.277238317485995],[125.26145261452615,10.260352544787168],[125.22905229052293,10.253598235707628],[125.16065160651607,10.282304049295632],[125.14265142651425,10.27892689475587],[125.13545135451358,10.258663967517279],[125.13545135451358,10.228269576659386],[125.14265142651425,10.20125234034127],[125.14985149851498,10.18605514491233],[125.11745117451176,10.197875185801507],[125.0886508865089,10.228269576659386],[125.07065070650708,10.267106853866693],[125.06345063450635,10.29918982199446],[125.04545045450453,10.31945274923305],[125.04545045450453,10.322829903772828],[125.04185041850417,10.327895635582465],[125.04185041850417,10.365044335519897],[125.03105031050313,10.375175799139186],[125.00945009450095,10.3836186854886],[124.99144991449913,10.381930108218711],[124.98064980649809,10.365044335519897],[124.99144991449913,10.334649944662004],[124.99864998649986,10.199563763071382],[125.0238502385024,10.135397826815847],[125.03105031050313,10.093183395068777],[125.04185041850417,10.04928038605182],[125.04185041850417,10.029017458813229],[125.03105031050313,10.020574572463815],[125.01665016650168,10.025640304273466],[124.96264962649627,10.067854736020536],[124.95904959049591,10.072920467830187],[124.95544955449554,10.086429085989252],[124.94104941049409,10.091494817798889],[124.92664926649269,10.093183395068777],[124.91944919449196,10.09656054960854],[124.90144901449014,10.113446322307368],[124.89424894248941,10.125266363196545],[124.88344883448838,10.135397826815847],[124.85824858248583,10.13877498135561],[124.81504815048152,10.13877498135561],[124.79344793447933,10.143840713165261],[124.77904779047793,10.152283599514675],[124.76464764647648,10.18605514491233],[124.7718477184772,10.224892422119623],[124.78624786247866,10.265418276596805],[124.79344793447933,10.302566976534237],[124.79344793447933,10.32620705831259],[124.78624786247866,10.353224294630706],[124.7718477184772,10.375175799139186],[124.75024750247502,10.385307262758488],[124.73944739447393,10.395438726377776],[124.73584735847362,10.420767385426018],[124.73584735847362,10.447784621744148],[124.74304743047429,10.49337620803098],[124.74664746647466,10.501819094380394],[124.75024750247502,10.510261980729808],[124.76464764647648,10.525459176158748],[124.76824768247684,10.532213485238273],[124.76824768247684,10.577805071525106],[124.7718477184772,10.598067998763696],[124.7970479704797,10.658856780479482],[124.80064800648006,10.679119707718073],[124.80064800648006,10.724711294004905],[124.77904779047793,10.82096019838822],[124.7718477184772,10.831091662007509],[124.73944739447393,10.861486052865402],[124.73224732247326,10.868240361944927],[124.72864728647289,10.886814711913644],[124.7178471784718,10.90538906188236],[124.69264692646925,10.939160607280002],[124.64944649446494,10.971243575407783],[124.64224642246421,10.977997884487309],[124.63864638646385,10.994883657186136],[124.62064620646208,11.001637966265662],[124.60264602646026,11.00332654353555],[124.58104581045814,11.001637966265662],[124.56304563045632,10.994883657186136],[124.54864548645486,10.98306361629696],[124.54864548645486,10.96786642086802],[124.55944559445595,10.950980648169192],[124.56304563045632,10.930717720930588],[124.55224552245522,10.908766216422123],[124.53784537845382,10.888503289183532],[124.52704527045273,10.87837182556423],[124.51624516245164,10.873306093754579],[124.50904509045091,10.874994671024467],[124.46944469444696,10.902011907342583],[124.46944469444696,10.90538906188236],[124.45144451444514,10.900323330072709],[124.44784447844478,10.903700484612472],[124.44064440644405,10.930717720930588],[124.43704437044374,10.935783452740239],[124.42624426244265,10.932406298200476],[124.4118441184412,10.932406298200476],[124.4010440104401,10.929029143660713],[124.39744397443974,10.934094875470365],[124.39744397443974,10.954357802708955],[124.4010440104401,10.966177843598132],[124.41544415444156,10.984752193566834],[124.41904419044192,11.001637966265662],[124.41544415444156,11.020212316234378],[124.40824408244083,11.028655202583792],[124.39744397443974,11.035409511663318],[124.39024390243901,11.048918129822383],[124.3866438664387,11.06580390252121],[124.39384393843937,11.08100109795015],[124.4010440104401,11.092821138839327],[124.40824408244083,11.10801833426828],[124.41544415444156,11.121526952427345],[124.41904419044192,11.12828126150687],[124.41544415444156,11.136724147856285],[124.4118441184412,11.148544188745461],[124.40464404644047,11.211021547731121],[124.40464404644047,11.302204720304786],[124.3866438664387,11.300516143034912],[124.36864368643688,11.3106476066542],[124.35424354243543,11.329221956622916],[124.35064350643506,11.347796306591619],[124.35064350643506,11.356239192941032],[124.36864368643688,11.366370656560335],[124.36864368643688,11.374813542909749],[124.35424354243543,11.379879274719386],[124.34344343443433,11.384945006529037],[124.33624336243366,11.391699315608577],[124.3470434704347,11.398453624688102],[124.34344343443433,11.406896511037516],[124.33624336243366,11.417027974656818],[124.32904329043294,11.428848015545995],[124.32544325443257,11.444045210974934],[124.31104311043111,11.465996715483413],[124.29664296642966,11.526785497199185],[124.30024300243002,11.543671269898013],[124.30384303843039,11.543671269898013],[124.32544325443257,11.553802733517315],[124.32904329043294,11.557179888057078],[124.33984339843397,11.550425578977539],[124.36504365043652,11.516654033579897],[124.42624426244265,11.467685292753288],[124.44424444244441,11.447422365514697],[124.48024480244806,11.384945006529037],[124.48384483844842,11.427159438276107],[124.49104491044909,11.447422365514697],[124.50184501845018,11.444045210974934],[124.53424534245346,11.422093706466455],[124.5450454504545,11.408585088307404],[124.57024570245704,11.346107729321744],[124.59544595445954,11.319090493003614],[124.63144631446318,11.303893297574675],[124.67824678246785,11.302204720304786],[124.71424714247144,11.312336183924089],[124.74304743047429,11.329221956622916],[124.79344793447933,11.371436388369972],[124.83304833048334,11.423782283736344],[124.84744847448474,11.432225170085758],[124.85464854648546,11.43053659281587],[124.87624876248765,11.422093706466455],[124.88704887048874,11.420405129196581],[124.89064890648905,11.422093706466455],[124.89064890648905,11.43053659281587],[124.89424894248941,11.432225170085758],[124.90144901449014,11.43053659281587],[124.9050490504905,11.427159438276107],[124.9050490504905,11.422093706466455],[124.9050490504905,11.420405129196581],[124.93024930249305,11.422093706466455],[124.93744937449378,11.420405129196581],[124.94824948249482,11.413650820117041],[124.969849698497,11.39507647014834],[124.97704977049773,11.391699315608577],[124.98424984249846,11.381567851989274],[124.98064980649809,11.357927770210921],[124.97704977049773,11.334287688432553],[124.96624966249664,11.319090493003614],[124.96624966249664,11.305581874844549],[124.96624966249664,11.293761833955372],[124.969849698497,11.288696102145721],[124.97344973449736,11.287007524875847],[124.97344973449736,11.276876061256544],[124.97704977049773,11.271810329446893],[124.98064980649809,11.26843317490713],[124.98424984249846,11.266744597637256],[124.98784987849882,11.265056020367368],[124.99504995049949,11.261678865827605],[125.00585005850058,11.256613134017954],[125.01305013050131,11.256613134017954],[125.02025020250204,11.253235979478191],[125.0238502385024,11.22790732042995],[125.02745027450277,11.22790732042995],[125.03105031050313,11.236350206779363],[125.0346503465035,11.24817024766854],[125.04185041850417,11.24817024766854],[125.04185041850417,11.217775856810647],[125.04185041850417,11.207644393191359],[125.03825038250386,11.197512929572056],[125.03105031050313,11.182315734143117],[125.02745027450277,11.175561425063592],[125.03105031050313,11.1637413841744],[125.03825038250386,11.145167034205699],[125.04185041850417,11.135035570586396],[125.03825038250386,11.102952602458629],[125.05625056250562,11.010080852615076],[125.05265052650526,10.96786642086802],[125.01305013050131,10.844600280166574],[125.00585005850058,10.797320116609868],[125.01305013050131,10.755105684862798],[125.02745027450277,10.743285643973621],[125.0886508865089,10.714579830385603],[125.11025110251103,10.707825521306077],[125.12105121051212,10.702759789496426],[125.12465124651249,10.694316903147012],[125.13185131851321,10.665611089559007],[125.17145171451716,10.620019503272175],[125.17505175051753,10.611576616922761],[125.19305193051929,10.603133730573347],[125.19665196651965,10.582870803334757],[125.18585185851862,10.532213485238273],[125.18585185851862,10.520393444349097],[125.19665196651965,10.496753362570743],[125.20025200252002,10.484933321681567],[125.19665196651965,10.44609604447426],[125.20025200252002,10.432587426315195],[125.20745207452075,10.419078808156144],[125.21825218252184,10.398815880917539],[125.2326523265233,10.386995840028362],[125.23985239852402,10.398815880917539],[125.2470524705247,10.398815880917539],[125.25785257852579,10.3836186854886],[125.26505265052651,10.36842149005966],[125.27225272252724,10.349847140090944],[125.27225272252724,10.322829903772828]]],[[[125.71145711457115,11.148544188745461],[125.72945729457297,11.118149797887568],[125.76185761857619,11.084378252489927],[125.779857798578,11.052295284362145],[125.76185761857619,11.02358947077414],[125.7510575105751,11.03034377985368],[125.72945729457297,11.042163820742857],[125.71865718657187,11.048918129822383],[125.71145711457115,11.082689675220038],[125.70785707857078,11.086066829759801],[125.70785707857078,11.08775540702969],[125.70785707857078,11.094509716109215],[125.70785707857078,11.111395488808043],[125.70785707857078,11.116461220617694],[125.70065700657005,11.118149797887568],[125.68625686256865,11.124904106967108],[125.68265682656829,11.12996983877676],[125.66825668256683,11.141789879665936],[125.65025650256501,11.15023276601535],[125.64305643056434,11.141789879665936],[125.61065610656107,11.121526952427345],[125.59985599855997,11.118149797887568],[125.58905589055894,11.121526952427345],[125.58545585455857,11.131658416046633],[125.58185581855821,11.14347845693581],[125.57465574655748,11.151921343285224],[125.56385563855639,11.156987075094875],[125.55665556655566,11.153609920555112],[125.54945549455493,11.148544188745461],[125.5386553865539,11.145167034205699],[125.53505535055353,11.138412725126173],[125.53145531455317,11.102952602458629],[125.5278552785528,11.091132561569452],[125.4990549905499,11.114772643347806],[125.48105481054813,11.12828126150687],[125.47025470254704,11.12828126150687],[125.45225452254522,11.106329756998392],[125.44145441454418,11.097886870648978],[125.42345423454236,11.091132561569452],[125.42345423454236,11.106329756998392],[125.41625416254163,11.116461220617694],[125.40545405454054,11.116461220617694],[125.39825398253981,11.104641179728517],[125.37305373053732,11.126592684236982],[125.36225362253623,11.131658416046633],[125.32625326253265,11.136724147856285],[125.32265322653228,11.141789879665936],[125.31545315453155,11.15023276601535],[125.30465304653046,11.146855611475573],[125.2758527585276,11.135035570586396],[125.27225272252724,11.12828126150687],[125.26505265052651,11.118149797887568],[125.25425254252542,11.10126402518874],[125.25065250652506,11.094509716109215],[125.2470524705247,11.092821138839327],[125.23985239852402,11.094509716109215],[125.2326523265233,11.097886870648978],[125.22545225452257,11.106329756998392],[125.21825218252184,11.118149797887568],[125.21465214652147,11.131658416046633],[125.20745207452075,11.18569288868288],[125.20025200252002,11.22790732042995],[125.17145171451716,11.265056020367368],[125.13185131851321,11.281941793066196],[125.0886508865089,11.285318947605958],[125.04185041850417,11.281941793066196],[125.00225002250022,11.29038467941561],[124.99144991449913,11.317401915733726],[124.99864998649986,11.398453624688102],[124.99864998649986,11.406896511037516],[125.00225002250022,11.413650820117041],[125.00225002250022,11.420405129196581],[125.00585005850058,11.425470861006218],[124.99864998649986,11.43053659281587],[124.98064980649809,11.447422365514697],[124.97344973449736,11.45079952005446],[124.95904959049591,11.45079952005446],[124.95184951849518,11.454176674594237],[124.93744937449378,11.46261956094365],[124.92664926649269,11.474439601832827],[124.9158491584916,11.486259642722004],[124.91224912249123,11.501456838150943],[124.89784897848978,11.469373870023176],[124.88704887048874,11.465996715483413],[124.86904869048692,11.467685292753288],[124.85464854648546,11.472751024562939],[124.84384843848437,11.481193910912353],[124.8366483664837,11.49301395180153],[124.82944829448297,11.508211147230483],[124.84384843848437,11.514965456310009],[124.8510485104851,11.525096919929311],[124.85824858248583,11.5352283835486],[124.86904869048692,11.543671269898013],[124.88704887048874,11.547048424437776],[124.90144901449014,11.548737001707664],[124.9050490504905,11.553802733517315],[124.89064890648905,11.570688506216143],[124.94824948249482,11.570688506216143],[124.96264962649627,11.577442815295669],[124.97704977049773,11.592640010724608],[124.99144991449913,11.611214360693324],[124.99864998649986,11.62472297885239],[124.99864998649986,11.639920174281329],[124.99504995049949,11.655117369710268],[124.99144991449913,11.670314565139222],[124.99504995049949,11.683823183298273],[125.01665016650168,11.705774687806752],[125.0346503465035,11.727726192315231],[125.03825038250386,11.72266046050558],[125.05625056250562,11.714217574156166],[125.05265052650526,11.73785765593452],[125.04545045450453,11.75812058317311],[125.02745027450277,11.771629201332175],[125.00225002250022,11.775006355871938],[124.98784987849882,11.7699406240623],[124.94464944649445,11.746300542283933],[124.92664926649269,11.741234810474296],[124.89064890648905,11.761497737712887],[124.83304833048334,11.845926601207012],[124.79344793447933,11.857746642096203],[124.79344793447933,11.864500951175728],[124.80064800648006,11.864500951175728],[124.80784807848079,11.864500951175728],[124.7970479704797,11.86956668298538],[124.79344793447933,11.871255260255253],[124.80784807848079,11.898272496573384],[124.81144811448115,11.896583919303495],[124.81864818648188,11.893206764763733],[124.82224822248224,11.891518187493844],[124.82944829448297,11.884763878414319],[124.82224822248224,11.90502680565291],[124.81144811448115,11.915158269272212],[124.79344793447933,11.916846846542086],[124.77904779047793,11.899961073843258],[124.76104761047611,11.901649651113146],[124.75024750247502,11.91009253746256],[124.76824768247684,11.920224001081849],[124.76104761047611,11.928666887431262],[124.75744757447575,11.933732619240914],[124.74664746647466,11.93204404197104],[124.73944739447393,11.926978310161388],[124.73584735847362,11.953995546479504],[124.73584735847362,11.96750416463857],[124.72864728647289,11.977635628257872],[124.67824678246785,12.02998152362423],[124.63864638646385,12.045178719053169],[124.5990459904599,12.055310182672471],[124.57024570245704,12.05024445086282],[124.54144541445413,12.065441646291774],[124.49464494644945,12.097524614419541],[124.44784447844478,12.153247664325662],[124.42624426244265,12.173510591564266],[124.42624426244265,12.17519916883414],[124.42984429844302,12.17519916883414],[124.42984429844302,12.180264900643792],[124.40824408244083,12.193773518802857],[124.39024390243901,12.222479332390861],[124.34344343443433,12.386271327569474],[124.27504275042753,12.533177550049274],[124.27504275042753,12.546686168208339],[124.27504275042753,12.558506209097516],[124.28224282242826,12.570326249986692],[124.2930429304293,12.580457713605995],[124.30384303843039,12.583834868145757],[124.31104311043111,12.578769136336106],[124.35784357843579,12.54499759093845],[124.36144361443615,12.543309013668576],[124.37224372243725,12.543309013668576],[124.39744397443974,12.555129054557753],[124.40824408244083,12.556817631827627],[124.4118441184412,12.555129054557753],[124.43704437044374,12.543309013668576],[124.4550445504455,12.538243281858925],[124.51624516245164,12.536554704589037],[124.519845198452,12.536554704589037],[124.53424534245346,12.528111818239623],[124.53424534245346,12.526423240969748],[124.53784537845382,12.523046086429986],[124.54144541445413,12.52473466369986],[124.54864548645486,12.528111818239623],[124.55224552245522,12.529800395509511],[124.57384573845741,12.528111818239623],[124.59544595445954,12.523046086429986],[124.67824678246785,12.516291777350446],[124.86904869048692,12.529800395509511],[124.87624876248765,12.533177550049274],[124.88704887048874,12.5399318591288],[124.89424894248941,12.553440477287864],[124.89064890648905,12.563571940907167],[124.87984879848801,12.57201482725658],[124.87624876248765,12.583834868145757],[124.87624876248765,12.590589177225283],[124.89424894248941,12.585523445415646],[124.90864908649087,12.573703404526455],[124.91944919449196,12.561883363637278],[124.92664926649269,12.556817631827627],[124.94104941049409,12.563571940907167],[124.95904959049591,12.573703404526455],[124.97344973449736,12.577080559066232],[124.98064980649809,12.560194786367404],[124.98784987849882,12.561883363637278],[125.00945009450095,12.553440477287864],[125.02745027450277,12.543309013668576],[125.03105031050313,12.536554704589037],[125.03825038250386,12.534866127319162],[125.04185041850417,12.531488972779385],[125.0490504905049,12.529800395509511],[125.06345063450635,12.529800395509511],[125.07065070650708,12.533177550049274],[125.08145081450817,12.5399318591288],[125.09225092250921,12.546686168208339],[125.09585095850957,12.553440477287864],[125.09945099450994,12.575391981796344],[125.11025110251103,12.578769136336106],[125.13905139051394,12.570326249986692],[125.14625146251461,12.57201482725658],[125.1570515705157,12.575391981796344],[125.1678516785168,12.578769136336106],[125.17505175051753,12.573703404526455],[125.20025200252002,12.550063322748102],[125.2470524705247,12.519668931890209],[125.27225272252724,12.499406004651618],[125.27225272252724,12.48252023195279],[125.28305283052833,12.470700191063614],[125.30465304653046,12.458880150174437],[125.31545315453155,12.44706010928526],[125.32625326253265,12.421731450237019],[125.33345333453337,12.413288563887605],[125.34785347853477,12.39977994572854],[125.32985329853301,12.389648482109251],[125.31185311853119,12.366008400330884],[125.30825308253083,12.34236831855253],[125.32985329853301,12.323793968583814],[125.32265322653228,12.318728236774177],[125.31905319053192,12.313662504964526],[125.31545315453155,12.30184246407535],[125.31545315453155,12.296776732265698],[125.34425344253441,12.313662504964526],[125.3550535505355,12.317039659504289],[125.3550535505355,12.308596773154875],[125.3550535505355,12.30184246407535],[125.3550535505355,12.29508815499581],[125.34785347853477,12.290022423186173],[125.36225362253623,12.284956691376522],[125.36945369453696,12.288333845916284],[125.39105391053914,12.303531041345224],[125.38385383853841,12.284956691376522],[125.39465394653945,12.27989095956687],[125.43065430654309,12.283268114106633],[125.45225452254522,12.273136650487345],[125.4846548465485,12.247807991439103],[125.4990549905499,12.247807991439103],[125.50625506255062,12.2376765278198],[125.5278552785528,12.210659291501685],[125.5386553865539,12.183642055183554],[125.5386553865539,12.171822014294378],[125.52065520655208,12.180264900643792],[125.51345513455135,12.17519916883414],[125.48825488254886,12.17013343702449],[125.48105481054813,12.166756282484727],[125.48825488254886,12.163379127944964],[125.49545495454953,12.158313396135313],[125.50265502655026,12.153247664325662],[125.50625506255062,12.146493355246136],[125.48105481054813,12.13973904616661],[125.46665466654667,12.13467331435696],[125.45945459454595,12.126230428007545],[125.45585455854558,12.10765607803883],[125.46665466654667,12.102590346229192],[125.4990549905499,12.104278923499066],[125.4990549905499,12.100901768959304],[125.49545495454953,12.094147459879778],[125.49545495454953,12.090770305340001],[125.50265502655026,12.084015996260476],[125.51705517055171,12.07050737810141],[125.52425524255244,12.05699875994236],[125.52425524255244,12.046867296323057],[125.49185491854922,12.018161482735053],[125.48105481054813,12.00803001911575],[125.47025470254704,11.986078514607286],[125.45225452254522,11.964127010098807],[125.44505445054449,11.947241237399979],[125.44505445054449,11.928666887431262],[125.44505445054449,11.906715382922798],[125.44865448654485,11.899961073843258],[125.45945459454595,11.871255260255253],[125.45585455854558,11.840860869397375],[125.45945459454595,11.830729405778072],[125.46665466654667,11.823975096698547],[125.49185491854922,11.80033501492018],[125.49545495454953,11.790203551300891],[125.49185491854922,11.781760664951477],[125.4846548465485,11.776694933141826],[125.45585455854558,11.78513781949124],[125.44865448654485,11.768252046792412],[125.44865448654485,11.74967769682371],[125.47025470254704,11.75812058317311],[125.48105481054813,11.75812058317311],[125.49185491854922,11.73785765593452],[125.4990549905499,11.7007089559971],[125.4990549905499,11.675380296948859],[125.48825488254886,11.670314565139222],[125.47745477454777,11.668625987869333],[125.46665466654667,11.653428792440394],[125.47745477454777,11.648363060630743],[125.47745477454777,11.63823159701144],[125.47025470254704,11.62472297885239],[125.46665466654667,11.611214360693324],[125.47025470254704,11.60277147434391],[125.47745477454777,11.599394319804148],[125.4846548465485,11.599394319804148],[125.49185491854922,11.594328587994497],[125.49545495454953,11.587574278914957],[125.49545495454953,11.563934197136604],[125.4990549905499,11.548737001707664],[125.50265502655026,11.538605538088362],[125.52425524255244,11.506522569960595],[125.53145531455317,11.491325374531655],[125.53145531455317,11.476128179102702],[125.52065520655208,11.460930983673762],[125.5278552785528,11.459242406403874],[125.53505535055353,11.457553829134],[125.5386553865539,11.457553829134],[125.54945549455493,11.460930983673762],[125.5530555305553,11.43560232462552],[125.56025560255603,11.425470861006218],[125.56745567455675,11.420405129196581],[125.57465574655748,11.417027974656818],[125.5926559265593,11.401830779227865],[125.6070560705607,11.398453624688102],[125.61065610656107,11.39338789287845],[125.62145621456216,11.381567851989274],[125.63225632256325,11.369747811100098],[125.63945639456398,11.368059233830209],[125.63945639456398,11.342730574781967],[125.63585635856361,11.32584480208314],[125.62865628656289,11.314024761193963],[125.56745567455675,11.26843317490713],[125.55665556655566,11.24817024766854],[125.55665556655566,11.211021547731121],[125.57105571055712,11.19244719776242],[125.59985599855997,11.189070043222642],[125.63225632256325,11.200890084111819],[125.6178561785618,11.219464434080535],[125.61425614256143,11.234661629509475],[125.62865628656289,11.236350206779363],[125.67545675456756,11.202578661381708],[125.69345693456938,11.19244719776242],[125.70785707857078,11.177250002333466],[125.71145711457115,11.148544188745461]]],[[[53.469534695346965,39.58418541357011],[53.48033480334803,39.592628299919525],[53.49113491134912,39.59769403172916],[53.49833498334985,39.59093972264964],[53.50553505535055,39.585873990839985],[53.50913509135091,39.585873990839985],[53.51273512735128,39.59093972264964],[53.51633516335164,39.56898821814116],[53.519935199352005,39.56392248633152],[53.5379353793538,39.54028240455315],[53.53433534335343,39.52846236366398],[53.52353523535237,39.5166423227748],[53.50553505535055,39.508199436425386],[53.49113491134912,39.508199436425386],[53.48753487534876,39.5166423227748],[53.47673476734769,39.54872529090257],[53.469534695346965,39.560545331791744],[53.46233462334624,39.57405394995081],[53.469534695346965,39.58418541357011]]],[[[50.61830618306183,40.300142176000364],[50.60030600306004,40.30351933054014],[50.585905859058585,40.300142176000364],[50.57150571505716,40.310273639619666],[50.56430564305643,40.325470835048606],[50.56430564305643,40.337290875937796],[50.578705787057885,40.33053656685826],[50.58950589505895,40.332225144128145],[50.59670596705968,40.337290875937796],[50.60750607506077,40.337290875937796],[50.6219062190622,40.325470835048606],[50.62550625506256,40.310273639619666],[50.61830618306183,40.300142176000364]]],[[[50.38790387903879,40.40145681219333],[50.37350373503736,40.39976823492346],[50.351903519035204,40.39976823492346],[50.35910359103593,40.42340831670181],[50.326703267032684,40.45886843936934],[50.326703267032684,40.48250852114771],[50.33750337503375,40.477442789338056],[50.351903519035204,40.48081994387782],[50.35910359103593,40.47406563479829],[50.36270362703627,40.4538027075597],[50.37350373503736,40.44198266667051],[50.38430384303845,40.4335397803211],[50.395103951039516,40.42003116216205],[50.395103951039516,40.408211121272856],[50.38790387903879,40.40145681219333]]],[[[-25.317253172531707,70.7468789292553],[-25.31365313653137,70.73337031109625],[-25.299252992529915,70.71310738385765],[-25.284852848528487,70.69115587934917],[-25.284852848528487,70.66751579757081],[-25.30285302853028,70.65738433395151],[-25.32085320853207,70.65400717941176],[-25.36405364053641,70.65400717941176],[-25.418054180541787,70.64218713852259],[-25.569255692556908,70.63374425217316],[-25.652056520565196,70.60841559312493],[-25.69525695256951,70.60503843858515],[-25.785257852578525,70.60672701585506],[-25.824858248582473,70.6016612840454],[-25.96525965259653,70.5425610795995],[-26.001260012600113,70.53580677051997],[-26.069660696606974,70.53074103871032],[-26.07326073260731,70.5341181932501],[-26.076860768607673,70.53749534778984],[-26.080460804608038,70.5425610795995],[-26.087660876608766,70.5442496568694],[-26.13446134461344,70.5442496568694],[-26.14166141661417,70.54931538867902],[-26.163261632616326,70.57970977953693],[-26.195661956619574,70.58815266588633],[-26.238862388623886,70.58984124315623],[-26.282062820628198,70.58477551134658],[-26.346863468634695,70.5628240068381],[-26.50166501665015,70.54762681140915],[-26.548465484654855,70.52905246144044],[-26.573665736657375,70.52398672963079],[-26.922869228692292,70.51723242055127],[-26.940869408694084,70.52060957509102],[-26.955269552695512,70.52567530690067],[-26.96966969669697,70.52736388417057],[-26.98766987669876,70.52398672963079],[-26.99486994869949,70.51892099782114],[-27.002070020700188,70.51216668874162],[-27.009270092700916,70.50541237966209],[-27.02007020070201,70.50372380239219],[-27.369273692736925,70.47839514334396],[-27.718477184771842,70.4547550615656],[-28.06768067680676,70.43111497978725],[-28.114481144811435,70.43786928886678],[-28.13608136081359,70.45982079337526],[-28.125281252812528,70.47501798880418],[-28.100081000810007,70.48683802969336],[-28.013680136801355,70.51385526601149],[-27.995679956799563,70.52229815236092],[-27.98487984879847,70.53074103871032],[-27.995679956799563,70.5425610795995],[-28.049680496804967,70.55775827502845],[-28.064080640806395,70.5813983568068],[-28.046080460804603,70.59490697496585],[-28.013680136801355,70.60503843858515],[-27.963279632796315,70.63205567490328],[-27.92727927279273,70.63880998398281],[-27.678876788767894,70.65400717941176],[-27.65007650076501,70.66076148849129],[-27.58167581675815,70.7097302293179],[-27.55647556475563,70.72323884747695],[-27.49167491674916,70.7468789292553],[-27.452074520745214,70.75363323833483],[-27.426874268742694,70.76714185649391],[-27.4160741607416,70.77051901103366],[-27.394473944739445,70.77220758830356],[-27.27207272072721,70.79922482462166],[-27.243272432724325,70.81273344278074],[-27.21447214472144,70.8363735245591],[-27.149671496714973,70.87858795630615],[-27.066870668706684,70.8937851517351],[-26.663666636666363,70.89716230627488],[-26.307263072630718,70.93937673802193],[-26.285662856628562,70.94613104710146],[-26.246062460624614,70.96808255160994],[-26.228062280622794,70.97483686068946],[-26.0840608406084,70.9934112106582],[-26.02286022860227,71.01536271516665],[-25.702457024570236,71.08628296050173],[-25.677256772567716,71.08628296050173],[-25.677256772567716,71.0778400741523],[-25.684456844568444,71.0778400741523],[-25.684456844568444,71.07615149688243],[-25.684456844568444,71.07108576507278],[-25.684456844568444,71.06602003326313],[-25.68085680856808,71.05588856964386],[-25.677256772567716,71.02718275605585],[-25.677256772567716,71.02380560151607],[-25.68805688056881,71.01029698335702],[-25.698856988569872,71.00523125154737],[-25.709657096570965,71.00016551973772],[-25.724057240572392,70.99003405611842],[-25.677256772567716,70.97652543795937],[-25.508055080550804,70.96808255160994],[-25.486454864548648,70.96301681980029],[-25.410854108541088,70.92417954259298],[-25.39645396453963,70.9140480789737],[-25.374853748537475,70.8735222244965],[-25.385653856538568,70.8650793381471],[-25.39645396453963,70.86001360633745],[-25.40365403654036,70.8549478745278],[-25.418054180541787,70.85325929725792],[-25.400054000539996,70.84312783363862],[-25.356853568535684,70.8363735245591],[-25.342453424534227,70.82624206093979],[-25.342453424534227,70.80935628824096],[-25.360453604536048,70.80260197916144],[-25.450454504545036,70.79753624735179],[-25.475654756547556,70.79247051554213],[-25.486454864548648,70.78065047465296],[-25.47925479254792,70.77051901103366],[-25.461254612546128,70.76883043376378],[-25.356853568535684,70.76883043376378],[-25.32085320853207,70.76207612468426],[-25.317253172531707,70.7468789292553]]],[[[-21.947619476194745,72.42870189005848],[-21.93681936819368,72.41350469462952],[-21.929619296192953,72.40843896281987],[-21.9620196201962,72.38986461285117],[-22.005220052200514,72.38648745831142],[-22.05202052020519,72.39155319012104],[-22.156421564215634,72.42025900370905],[-22.25362253622535,72.42870189005848],[-22.27162271622717,72.435456199138],[-22.264422644226443,72.43883335367778],[-22.264422644226443,72.44221050821753],[-22.26082260822608,72.4455876627573],[-22.257222572225714,72.45065339456696],[-22.2860228602286,72.44896481729708],[-22.332823328233275,72.43207904459825],[-22.36162361623616,72.42870189005848],[-22.642426424264244,72.46585058999591],[-22.674826748267463,72.464162012726],[-22.725227252272504,72.4540305491067],[-22.761227612276116,72.44052193094765],[-22.761227612276116,72.43714477640788],[-22.754027540275388,72.43376762186813],[-22.750427504275024,72.42363615824883],[-22.73962739627396,72.41857042643917],[-22.736027360273596,72.41519327189943],[-22.736027360273596,72.41012754008977],[-22.73962739627396,72.40843896281987],[-22.743227432274324,72.40843896281987],[-22.743227432274324,72.40506180828012],[-22.73962739627396,72.39155319012104],[-22.73242732427323,72.38311030377164],[-22.674826748267463,72.36115879926317],[-22.325623256232547,72.31050148116668],[-22.29682296822969,72.29192713119798],[-22.318423184231847,72.26490989487985],[-22.30402304023039,72.25646700853045],[-22.282422824228235,72.25646700853045],[-22.26082260822608,72.2598441630702],[-22.242822428224287,72.27166420395938],[-22.24642246422465,72.28179566757868],[-22.22122221222213,72.28686139938833],[-22.160021600215998,72.28517282211845],[-22.106021060210594,72.27504135849915],[-22.04482044820449,72.27166420395938],[-22.062820628206282,72.26322131760998],[-22.12042120421205,72.24464696764127],[-22.174421744217426,72.21425257678337],[-22.19602196021961,72.20918684497371],[-22.188821888218882,72.19736680408454],[-22.181621816218154,72.19061249500501],[-22.156421564215634,72.18216960865561],[-22.134821348213478,72.16866099049653],[-22.124021240212386,72.15852952687723],[-22.14562145621457,72.1517752177977],[-22.181621816218154,72.13151229055913],[-22.199621996219946,72.1247579814796],[-22.250022500224986,72.12138082693983],[-22.523625236252343,72.13488944509888],[-22.599225992259903,72.15515237233748],[-22.599225992259903,72.16190668141701],[-22.541625416254163,72.17710387684596],[-22.516425164251643,72.18892391773514],[-22.498424984249823,72.20918684497371],[-22.545225452254527,72.21762973132314],[-22.559625596255955,72.21256399951349],[-22.592025920259204,72.19061249500501],[-22.60642606426063,72.18216960865561],[-22.646026460264608,72.17203814503631],[-22.685626856268556,72.17203814503631],[-22.721627216272168,72.17879245411584],[-22.804428044280428,72.20918684497371],[-22.94842948429485,72.23958123583162],[-22.977229772297704,72.2497126994509],[-22.995229952299525,72.2615327403401],[-23.027630276302745,72.2885499766582],[-23.063630636306357,72.31050148116668],[-23.355233552335505,72.36622453107282],[-23.646836468364683,72.42194758097895],[-23.76203762037619,72.42870189005848],[-23.90603906039061,72.46585058999591],[-23.952839528395288,72.47260489907544],[-23.999639996399964,72.47091632180553],[-24.01404014040139,72.464162012726],[-24.03924039240391,72.44727624002718],[-24.053640536405368,72.44221050821753],[-24.06444064440643,72.4455876627573],[-24.075240752407524,72.45234197183683],[-24.082440824408252,72.46078485818626],[-24.078840788407888,72.47091632180553],[-24.057240572405732,72.48104778542483],[-24.017640176401756,72.48780209450436],[-23.999639996399964,72.49962213539354],[-24.024840248402484,72.52157363990202],[-24.06444064440643,72.53677083533097],[-24.09684096840968,72.54690229895027],[-24.140041400413992,72.55027945349002],[-24.136441364413628,72.54521372168037],[-24.161641616416148,72.53170510352132],[-24.20484204842049,72.5435251444105],[-24.287642876428748,72.57898526707802],[-24.33084330843309,72.58573957615758],[-24.352443524435245,72.5908053079672],[-24.370443704437037,72.60431392612628],[-24.377643776437765,72.61275681247568],[-24.395643956439557,72.64483978060346],[-24.39924399243992,72.65497124422276],[-24.40644406444065,72.67861132600112],[-24.410044100441013,72.68874278962042],[-24.40644406444065,72.70225140777947],[-24.40644406444065,72.71238287139877],[-24.40644406444065,72.72420291228795],[-24.410044100441013,72.737711530447],[-24.42444424444244,72.76304018949526],[-24.442444424444233,72.78668027127361],[-24.485644856448573,72.82720612575079],[-24.467644676446753,72.84409189844962],[-24.435244352443533,72.85422336206892],[-24.39924399243992,72.85928909387857],[-23.93123931239313,72.88124059838705],[-23.801638016380167,72.85928909387857],[-23.715237152371515,72.85928909387857],[-23.632436324363226,72.8373375893701],[-23.146431464314645,72.84071474390984],[-23.135631356313553,72.84071474390984],[-23.128431284312825,72.8373375893701],[-23.121231212312125,72.83058328029057],[-23.114031140311397,72.82045181667127],[-23.103231032310305,72.81538608486161],[-23.06723067230672,72.79343458035314],[-23.045630456304565,72.75966303495548],[-23.013230132301317,72.74615441679643],[-22.984429844298432,72.737711530447],[-22.970029700297005,72.72758006682773],[-22.952029520295184,72.71744860320842],[-22.86562865628656,72.70731713958912],[-22.84762847628477,72.68705421235052],[-22.728827288272868,72.66847986238182],[-22.703627036270348,72.64821693514324],[-22.710827108271076,72.64483978060346],[-22.710827108271076,72.64146262606369],[-22.71442714427144,72.63808547152394],[-22.718027180271804,72.63470831698416],[-22.58842588425884,72.60769108066603],[-22.552425524255227,72.60937965793593],[-22.520025200252007,72.61444538974558],[-22.491224912249123,72.62626543063476],[-22.48042480424803,72.62626543063476],[-22.476824768247667,72.61444538974558],[-22.466024660246603,72.6026253488564],[-22.444424444244447,72.59587103977685],[-22.401224012240107,72.59418246250698],[-22.376023760237587,72.58911673069733],[-22.325623256232547,72.57054238072863],[-22.181621816218154,72.54521372168037],[-22.163621636216362,72.53845941260084],[-22.15282152821527,72.52832794898154],[-22.149221492214906,72.51819648536227],[-22.167221672216726,72.51144217628274],[-22.174421744217426,72.50806502174296],[-22.188821888218882,72.50299928993331],[-22.19602196021961,72.49455640358391],[-22.20322203222031,72.48442493996461],[-22.02682026820267,72.50468786720319],[-21.98721987219872,72.49962213539354],[-21.95121951219511,72.48780209450436],[-21.93681936819368,72.46753916726578],[-21.947619476194745,72.435456199138],[-21.947619476194745,72.42870189005848]]],[[[-21.929619296192953,72.737711530447],[-21.90081900819007,72.73433437590725],[-21.879218792187913,72.72251433501808],[-21.87561875618755,72.7106942941289],[-21.90081900819007,72.69718567596982],[-21.897218972189705,72.69549709869995],[-21.897218972189705,72.69380852143007],[-21.90081900819007,72.68874278962042],[-21.89361893618937,72.68874278962042],[-21.91881918819189,72.68536563508064],[-21.99441994419945,72.6819884805409],[-22.008820088200878,72.68705421235052],[-22.01962019620197,72.69718567596982],[-22.04482044820449,72.69549709869995],[-22.088020880208802,72.68874278962042],[-22.04482044820449,72.71744860320842],[-22.07002070020701,72.72082575774817],[-22.10242102421023,72.7191371804783],[-22.138421384213842,72.71238287139877],[-22.160021600215998,72.70225140777947],[-22.17082170821709,72.69549709869995],[-22.264422644226443,72.7106942941289],[-22.653226532265307,72.6988742532397],[-22.692826928269284,72.70393998504935],[-22.721627216272168,72.71744860320842],[-22.617226172261724,72.72420291228795],[-22.61362613626136,72.737711530447],[-22.63162631626315,72.74446583952655],[-22.710827108271076,72.74446583952655],[-22.743227432274324,72.75290872587595],[-22.772027720277208,72.76472876676513],[-22.761227612276116,72.77823738492418],[-22.76482764827648,72.78668027127361],[-22.775627756277544,72.79512315762301],[-22.793627936279364,72.79850031216279],[-22.786427864278636,72.80525462124231],[-22.818828188281884,72.81876323940139],[-23.164431644316437,72.87786344384727],[-23.261632616326153,72.87110913476775],[-23.35163351633517,72.87955202111715],[-23.470434704347042,72.8744862893075],[-23.463234632346314,72.8744862893075],[-23.614436144361434,72.87110913476775],[-23.71883718837188,72.89643779381598],[-23.83043830438305,72.90825783470515],[-24.179641796417968,72.9048806801654],[-24.52524525245252,72.90150352562563],[-24.55044550445504,72.90994641197506],[-24.57564575645756,72.92852076194376],[-24.586445864458625,72.95047226645224],[-24.57564575645756,72.97411234823059],[-24.536045360453585,72.9926866981993],[-24.158041580415812,73.00450673908847],[-23.78003780037801,73.01463820270777],[-23.70443704437045,73.0315239754066],[-23.55323553235533,73.03321255267647],[-23.240032400323997,73.07542698442356],[-22.92322923229233,73.039966861756],[-22.818828188281884,73.039966861756],[-22.793627936279364,73.03658970721625],[-22.743227432274324,73.0213925117873],[-22.25362253622535,72.97917808004024],[-22.09522095220953,72.93020933921363],[-22.088020880208802,72.93020933921363],[-22.084420844208438,72.9318979164835],[-22.084420844208438,72.93696364829316],[-22.07722077220771,72.94202938010281],[-22.073620736207346,72.94371795737271],[-22.04482044820449,72.94034080283294],[-22.023220232202306,72.93358649375341],[-21.998019980199786,72.9318979164835],[-21.96921969219693,72.94371795737271],[-21.958419584195838,72.92852076194376],[-21.93681936819368,72.92514360740398],[-21.915219152191526,72.92345503013411],[-21.90081900819007,72.91670072105458],[-21.897218972189705,72.91163498924493],[-21.897218972189705,72.9048806801654],[-21.89361893618937,72.89981494835575],[-21.88641886418864,72.8947492165461],[-21.915219152191526,72.88630633019667],[-21.980019800197994,72.87955202111715],[-22.005220052200514,72.86097767114845],[-21.998019980199786,72.85760051660867],[-21.97641976419763,72.8474690529894],[-21.98721987219872,72.84409189844962],[-22.01962019620197,72.8474690529894],[-22.034020340203398,72.8457804757195],[-22.073620736207346,72.83396043483032],[-22.160021600215998,72.82214039394114],[-22.188821888218882,72.81200893032184],[-22.160021600215998,72.80356604397244],[-22.134821348213478,72.80356604397244],[-22.113221132211322,72.80694319851219],[-22.091620916209166,72.80525462124231],[-22.091620916209166,72.80356604397244],[-22.088020880208802,72.79850031216279],[-22.084420844208438,72.79512315762301],[-22.07722077220771,72.79174600308326],[-21.99441994419945,72.78330311673383],[-21.980019800197994,72.77992596219408],[-21.9620196201962,72.77148307584466],[-21.97641976419763,72.766417344035],[-22.023220232202306,72.7579744576856],[-22.016020160201606,72.7478429940663],[-22.005220052200514,72.74446583952655],[-21.97641976419763,72.74446583952655],[-21.96921969219693,72.74615441679643],[-21.9620196201962,72.7478429940663],[-21.958419584195838,72.75122014860608],[-21.947619476194745,72.7478429940663],[-21.933219332193318,72.7394001077169],[-21.929619296192953,72.737711530447]]],[[[-24.52524525245252,73.04840974810543],[-24.55764557645577,73.05347547991508],[-24.65124651246512,73.04672117083555],[-24.67644676446764,73.0500983253753],[-24.7520475204752,73.07373840715366],[-24.88524885248853,73.0788041389633],[-25.06165061650617,73.11764141617061],[-25.42885428854288,73.12101857071039],[-25.572855728557272,73.14803580702849],[-25.659256592565924,73.17674162061653],[-25.702457024570236,73.18349592969605],[-25.7060570605706,73.18518450696592],[-25.709657096570965,73.1885616615057],[-25.709657096570965,73.19531597058523],[-25.709657096570965,73.20038170239488],[-25.698856988569872,73.2071360114744],[-25.691656916569173,73.21051316601415],[-25.644856448564468,73.21389032055393],[-25.601656016560156,73.22739893871298],[-25.576455764557636,73.23077609325276],[-25.569255692556908,73.23415324779253],[-25.533255332553324,73.26117048411064],[-25.450454504545036,73.2966306067782],[-25.31365313653137,73.32027068855655],[-25.284852848528487,73.3337793067156],[-25.284852848528487,73.34728792487468],[-25.29565295652955,73.35910796576385],[-25.30285302853028,73.37092800665303],[-25.29565295652955,73.38443662481208],[-25.274052740527395,73.40301097478078],[-25.24525245252451,73.41145386113021],[-24.852848528485282,73.41820817020974],[-24.460444604446053,73.42496247928926],[-24.395643956439557,73.41483101566996],[-24.00684006840069,73.36079654303373],[-23.6180361803618,73.30676207039747],[-23.229232292322905,73.25103902049136],[-23.211232112321113,73.23077609325276],[-23.25803258032579,73.22064462963345],[-23.68643686436863,73.24766186595159],[-24.11484114841147,73.27299052499981],[-24.543245432454313,73.30000776131794],[-24.971649716497154,73.3253364203662],[-24.99324993249931,73.32195926582642],[-25.01125011250113,73.31351637947702],[-24.98604986049861,73.30676207039747],[-24.957249572495726,73.31013922493725],[-24.932049320493206,73.31689353401677],[-24.906849068490686,73.31689353401677],[-24.881648816488166,73.31351637947702],[-24.81684816848167,73.30169633858785],[-24.435244352443533,73.27467910226972],[-24.3740437404374,73.25610475230098],[-24.30564305643057,73.26454763865041],[-24.057240572405732,73.23246467052263],[-23.808838088380867,73.20038170239488],[-23.78723787237871,73.20375885693463],[-23.765637656376555,73.19531597058523],[-23.423634236342366,73.18518450696592],[-23.08163081630815,73.17674162061653],[-22.99162991629916,73.15141296156827],[-22.962829628296276,73.14803580702849],[-22.89082890828908,73.1581672706478],[-22.9160291602916,73.14803580702849],[-22.962829628296276,73.11426426163086],[-22.98082980829807,73.10750995255131],[-23.47763477634777,73.08386987077296],[-23.97083970839708,73.0602297889946],[-24.467644676446753,73.03658970721625],[-24.52524525245252,73.04840974810543]]],[[[-20.35280352803528,74.2523653415318],[-20.298802988029877,74.2321024142932],[-20.270002700026993,74.22703668248354],[-20.248402484024837,74.23041383702332],[-20.219602196021953,74.22197095067389],[-20.17640176401764,74.21859379613414],[-20.14040140401403,74.21352806432449],[-20.13320133201333,74.18988798254614],[-20.162001620016184,74.16793647803766],[-20.464404644046425,74.1442963962593],[-20.766807668076666,74.11896773721105],[-20.874808748087474,74.12234489175083],[-21.026010260102595,74.09701623270257],[-21.267212672126703,74.08857334635317],[-21.278012780127796,74.09026192362305],[-21.40761407614076,74.13754208717975],[-21.670416704167025,74.17300220984731],[-21.933219332193318,74.20846233251484],[-21.980019800197994,74.22534810521367],[-21.98721987219872,74.24898818699202],[-21.9620196201962,74.27431684604028],[-21.958419584195838,74.2793825778499],[-21.94401944019441,74.29289119600898],[-21.940419404194046,74.29626835054873],[-21.90081900819007,74.31315412324756],[-21.897218972189705,74.31484270051746],[-21.88641886418864,74.31315412324756],[-21.879218792187913,74.31315412324756],[-21.87561875618755,74.31821985505721],[-21.87561875618755,74.32497416413673],[-21.87561875618755,74.33003989594638],[-21.87561875618755,74.33341705048616],[-21.857618576185757,74.34354851410546],[-21.839618396183965,74.35199140045486],[-21.544415444154424,74.40433729582122],[-21.245612456124547,74.45668319118761],[-20.97920979209792,74.44992888210805],[-20.968409684096827,74.44824030483818],[-20.957609576095763,74.44486315029843],[-20.950409504095035,74.44148599575865],[-20.943209432094307,74.42966595486948],[-20.92160921609215,74.42460022305983],[-20.856808568085683,74.42966595486948],[-20.547205472054713,74.40940302763087],[-20.532805328053286,74.40602587309112],[-20.5112051120511,74.39082867766217],[-20.496804968049673,74.38238579131277],[-20.457204572045725,74.36887717315369],[-20.44280442804427,74.35874570953439],[-20.43560435604354,74.34523709137534],[-20.439204392043905,74.33679420502594],[-20.457204572045725,74.32835131867651],[-20.46080460804606,74.31990843232711],[-20.46080460804606,74.30977696870781],[-20.45360453604536,74.30471123689816],[-20.44280442804427,74.30302265962828],[-20.432004320043205,74.29626835054873],[-20.42840428404284,74.2895140414692],[-20.424804248042477,74.28613688692946],[-20.421204212042113,74.2810711551198],[-20.406804068040685,74.27262826877038],[-20.35280352803528,74.2523653415318]]],[[[-52.5191251912519,-80.20010895736877],[-52.396723967239666,-80.18491176193982],[-51.93951939519394,-80.05489131215886],[-51.482314823148215,-79.92655943964778],[-51.33831338313382,-79.86577065793199],[-51.0611106111061,-79.79991614440657],[-50.91710917109171,-79.73237305361125],[-50.54270542705427,-79.63781272649783],[-50.402304023040216,-79.57026963570252],[-50.351903519035176,-79.55507244027358],[-50.283502835028344,-79.54494097665427],[-50.26190261902619,-79.53649809030486],[-50.25470254702546,-79.52298947214581],[-50.24030240302403,-79.49428365855779],[-50.225902259022575,-79.48077504039874],[-50.243902439024396,-79.46557784496979],[-50.25470254702546,-79.46220069043002],[-50.251102511025096,-79.45713495862037],[-50.251102511025096,-79.45375780408061],[-50.251102511025096,-79.44869207227096],[-50.24750247502473,-79.44362634046132],[-50.27990279902798,-79.4267405677625],[-50.32310323103229,-79.41492052687332],[-50.351903519035176,-79.39803475417449],[-50.333903339033384,-79.36595178604671],[-50.38790387903879,-79.33049166337918],[-50.459904599045984,-79.31191731341046],[-50.711907119071185,-79.28152292255258],[-50.74070740707407,-79.28490007709235],[-50.65070650706505,-79.24268564534528],[-50.54270542705427,-79.1616339363909],[-50.49950499504993,-79.13799385461255],[-50.485104851048504,-79.12955096826313],[-50.48150481504814,-79.11604235010407],[-50.49230492304923,-79.09577942286548],[-50.48150481504814,-79.07889365016665],[-50.45630456304562,-79.02148202299064],[-50.452704527045256,-79.00459625029181],[-50.47430474304741,-78.98433332305322],[-50.53910539105391,-78.97420185943392],[-50.560705607056065,-78.95900466400498],[-50.51750517505175,-78.94549604584591],[-50.38070380703806,-78.93029885041697],[-50.333903339033384,-78.91341307771815],[-50.29070290702907,-78.89146157320967],[-50.251102511025096,-78.86444433689155],[-50.21510215102151,-78.83236136876378],[-50.32310323103229,-78.83911567784331],[-50.38070380703806,-78.83236136876378],[-50.4311043110431,-78.8120984415252],[-50.269102691026916,-78.7226038462214],[-50.283502835028344,-78.72091526895152],[-50.308703087030864,-78.7226038462214],[-50.32310323103229,-78.71922669168164],[-50.36270362703627,-78.69558660990327],[-50.36630366303663,-78.69052087809364],[-50.34110341103411,-78.6837665690141],[-50.28710287102871,-78.67870083720446],[-50.26550265502655,-78.67194652812492],[-50.251102511025096,-78.65674933269598],[-50.233102331023304,-78.62128921002844],[-50.22230222302224,-78.60440343732961],[-50.20430204302042,-78.59258339644043],[-50.05670056700566,-78.53348319199455],[-50.042300423004235,-78.52335172837525],[-50.017100171001715,-78.498023069327],[-50.00270002700026,-78.4878916057077],[-49.97029970299704,-78.47269441027876],[-49.89469894698948,-78.45243148304017],[-49.58509585095851,-78.32747676506885],[-49.279092790927905,-78.20083346982764],[-49.25029250292502,-78.17888196531918],[-49.24669246692466,-78.17212765623964],[-49.24669246692466,-78.15186472900105],[-49.23589235892359,-78.14004468811187],[-49.22149221492214,-78.13160180176246],[-49.11709117091169,-78.09445310182504],[-49.102691026910264,-78.0792559063961],[-49.13869138691388,-78.0691244427768],[-49.10989109891099,-78.05223867007797],[-49.07389073890738,-78.04210720645868],[-48.609486094860955,-77.97456411566337],[-48.148681486814866,-77.90702102486806],[-47.68427684276841,-77.83947793407275],[-47.22347223472235,-77.77193484327745],[-46.791467914679146,-77.78713203870639],[-46.363063630636304,-77.80232923413533],[-45.93465934659346,-77.81752642956428],[-45.895058950589515,-77.82934647045346],[-45.434254342543426,-77.90026671578853],[-44.973449734497336,-77.9711869611236],[-44.51624516245161,-78.04210720645868],[-44.167041670416694,-78.14511041992152],[-43.81783817838178,-78.24811363338436],[-43.76743767437674,-78.2734422924326],[-43.73143731437315,-78.31227956963991],[-43.7170371703717,-78.36800261954603],[-43.724237242372425,-78.39501985586416],[-43.73863738637385,-78.41528278310275],[-43.78183781837819,-78.44736575123052],[-43.799837998379985,-78.46425152392935],[-43.82863828638287,-78.50477737840653],[-43.900639006390065,-78.58414051009102],[-43.91863918639186,-78.5959605509802],[-43.96183961839617,-78.60271486005973],[-44.361443614436126,-78.62297778729832],[-44.75744757447575,-78.64155213726704],[-45.157051570515705,-78.66181506450563],[-45.3010530105301,-78.68038941447433],[-45.35145351453514,-78.6938980326334],[-45.22545225452254,-78.73611246438047],[-45.36945369453693,-78.78676978247695],[-45.29745297452973,-78.8104098642553],[-45.21825218252181,-78.81885275060472],[-44.7250472504725,-78.8120984415252],[-44.23184231842319,-78.80703270971554],[-43.73863738637385,-78.800278400636],[-43.71343713437133,-78.80872128698542],[-43.55503555035551,-78.88133010959038],[-43.50103501035011,-78.91341307771815],[-43.46143461434613,-78.95562750946522],[-43.44343443434434,-78.98771047759298],[-43.42903429034291,-79.03836779568947],[-43.42903429034291,-79.08564795924619],[-43.45423454234543,-79.11097661829443],[-43.40383403834039,-79.10084515467513],[-43.38223382233821,-79.09915657740524],[-43.35703357033569,-79.10084515467513],[-43.34263342633426,-79.10759946375465],[-43.30663306633065,-79.13630527734267],[-43.19863198631987,-79.15825678185114],[-43.14823148231483,-79.18020828635962],[-43.13383133831337,-79.1818968636295],[-43.187831878318775,-79.18865117270903],[-43.34983349833499,-79.23930849080551],[-43.31023310233101,-79.26801430439352],[-43.15183151831519,-79.31529446795022],[-43.10503105031049,-79.33386881791894],[-43.0690306903069,-79.35582032242742],[-43.0690306903069,-79.36257463150694],[-43.06543065430654,-79.37101751785636],[-43.05823058230581,-79.38114898147566],[-43.05463054630545,-79.38959186782508],[-43.04023040230402,-79.39972333144436],[-42.98982989829898,-79.41998625868295],[-42.97182971829719,-79.43011772230226],[-42.961029610296094,-79.44024918592154],[-42.953829538295366,-79.45206922681074],[-42.94662946629467,-79.46557784496979],[-42.9430294302943,-79.47908646312885],[-42.93942939429394,-79.49259508128792],[-42.935829358293574,-79.52130089487592],[-42.961029610296094,-79.71548728091243],[-42.98262982629825,-79.7864075262475],[-43.0150301503015,-79.85057346250305],[-43.07263072630727,-79.90967366694895],[-43.137431374313735,-79.951888098696],[-43.20583205832057,-79.97890533501413],[-43.28143281432813,-79.98734822136355],[-43.59463594635946,-79.9637081395852],[-43.857438574385725,-79.99579110771296],[-43.85383853838539,-79.99579110771296],[-43.850238502385025,-79.99747968498284],[-43.85383853838539,-79.99747968498284],[-43.857438574385725,-79.99747968498284],[-43.47583475834759,-80.09541716663604],[-43.43623436234361,-80.1089257847951],[-43.421834218342184,-80.13087728930357],[-43.45063450634507,-80.16464883470123],[-43.52983529835299,-80.20010895736877],[-44.008640086400845,-80.23725765730619],[-44.48384483844839,-80.2744063572436],[-44.95904959049591,-80.31155505718102],[-45.434254342543426,-80.34870375711844],[-45.91305913059131,-80.38754103432575],[-46.388263882638824,-80.42468973426317],[-46.86346863468634,-80.46183843420059],[-47.33867338673386,-80.498987134138],[-47.81387813878138,-80.53613583407542],[-48.29268292682926,-80.57328453401284],[-48.767887678876775,-80.61043323395026],[-49.24309243092429,-80.64758193388768],[-49.71829718297184,-80.68641921109499],[-49.74349743497436,-80.6948620974444],[-49.757897578975786,-80.70668213833358],[-49.757897578975786,-80.72187933376252],[-49.75069750697506,-80.74045368373123],[-49.739897398973994,-80.7421422610011],[-49.70029700297002,-80.7624051882397],[-49.696696966969654,-80.76747092004935],[-49.797497974979734,-80.79111100182772],[-50.283502835028344,-80.801242465447],[-50.76590765907659,-80.80968535179642],[-51.2519125191252,-80.81981681541572],[-51.73791737917378,-80.82994827903501],[-52.22392223922239,-80.83839116538442],[-52.706327063270635,-80.84852262900372],[-53.19233192331923,-80.85865409262301],[-53.678336783367826,-80.86709697897243],[-54.16074160741607,-80.87722844259173],[-54.25794257942579,-80.85527693808325],[-54.290342903429035,-80.83839116538442],[-54.34794347943479,-80.7826681154783],[-54.36234362343623,-80.772536651859],[-54.39834398343983,-80.75227372462041],[-54.40914409144091,-80.74045368373123],[-54.41274412744127,-80.71681360195286],[-54.41274412744127,-80.68979636563475],[-54.405544055440544,-80.66109055204674],[-54.394743947439466,-80.63913904753827],[-54.38394383943839,-80.62394185210933],[-54.369543695436946,-80.61043323395026],[-54.36234362343623,-80.5969246157912],[-54.376743767437674,-80.5766616885526],[-54.27234272342723,-80.53613583407542],[-54.218342183421825,-80.52093863864648],[-54.164341643416435,-80.5293815249959],[-54.14634146341463,-80.54457872042484],[-54.13554135541355,-80.56146449312367],[-54.12114121141211,-80.56821880220319],[-54.09594095940959,-80.5580873385839],[-54.08154081540815,-80.54289014315495],[-54.063540635406355,-80.5091185977573],[-54.05274052740526,-80.49223282505847],[-54.02034020340203,-80.47028132055],[-53.789937899378984,-80.36052379800762],[-53.58833588335882,-80.23219192549654],[-53.422734227342275,-80.19335464828923],[-53.42993429934299,-80.18153460740005],[-53.4371343713437,-80.17309172105064],[-53.44433444334443,-80.16633741197111],[-53.45873458734587,-80.16127168016146],[-53.40833408334083,-80.10723720752522],[-53.34353343533435,-80.10723720752522],[-53.213932139321386,-80.16127168016146],[-53.15273152731527,-80.1764688755904],[-53.087930879308786,-80.18153460740005],[-52.88992889928899,-80.1764688755904],[-52.69552695526954,-80.14438590746263],[-52.605526055260555,-80.10723720752522],[-52.41112411124111,-80.05489131215886],[-52.34992349923499,-80.05320273488897],[-52.303123031230314,-80.06164562123838],[-52.28152281522814,-80.07853139393721],[-52.28872288722887,-80.10217147571556],[-52.328323283232834,-80.1291887120337],[-52.47592475924759,-80.19335464828923],[-52.522725227252266,-80.19842038009888],[-52.5191251912519,-80.20010895736877]]],[[[-57.51237512375123,-64.34099123863047],[-57.494374943749435,-64.35449985678952],[-57.48717487174871,-64.3663198976787],[-57.49077490774907,-64.37307420675823],[-57.51597515975159,-64.37476278402812],[-57.51597515975159,-64.37138562948834],[-57.52317523175232,-64.36125416586906],[-57.5339753397534,-64.35112270224975],[-57.54117541175411,-64.34605697044012],[-57.55557555575555,-64.34099123863047],[-57.569975699756995,-64.33930266136058],[-57.58797587975879,-64.33761408409069],[-57.59877598775988,-64.33930266136058],[-57.57357573575736,-64.3561884340594],[-57.58797587975879,-64.3561884340594],[-57.60237602376023,-64.35449985678952],[-57.63837638376383,-64.33592550682081],[-57.65277652776527,-64.33085977501116],[-57.66357663576635,-64.33085977501116],[-57.67797677976779,-64.33592550682081],[-57.65637656376563,-64.3578770113293],[-57.65277652776527,-64.36969705221847],[-57.65637656376563,-64.38320567037752],[-57.67437674376744,-64.39333713399682],[-57.69237692376923,-64.3950257112667],[-57.71037710377104,-64.39164855672695],[-57.72837728377283,-64.39333713399682],[-57.72837728377283,-64.38151709310765],[-57.72477724777248,-64.36800847494858],[-57.72477724777248,-64.35281127951964],[-57.71757717577175,-64.34099123863047],[-57.70677706777067,-64.33085977501116],[-57.68517685176852,-64.31566257958222],[-57.66717667176671,-64.30384253869303],[-57.65277652776527,-64.30215396142316],[-57.68517685176852,-64.2886453432641],[-57.721177211772115,-64.29539965234363],[-57.75357753577535,-64.30721969323281],[-57.7859778597786,-64.31566257958222],[-57.80397803978039,-64.31228542504246],[-57.83637836378364,-64.2987768068834],[-57.85437854378543,-64.2987768068834],[-57.85077850778508,-64.30384253869303],[-57.85077850778508,-64.30721969323281],[-57.82917829178291,-64.32241688866175],[-57.82557825578256,-64.3274826204714],[-57.821978219782196,-64.33423692955093],[-57.82557825578256,-64.34774554770999],[-57.82557825578256,-64.35449985678952],[-57.821978219782196,-64.36294274313893],[-57.81477814778147,-64.36969705221847],[-57.80397803978039,-64.38151709310765],[-57.81837818378183,-64.39164855672695],[-57.821978219782196,-64.39671428853659],[-57.82557825578256,-64.405157174886],[-57.83997839978399,-64.40178002034624],[-57.85437854378543,-64.40346859761613],[-57.86157861578616,-64.40853432942576],[-57.85077850778508,-64.41697721577518],[-57.86517865178651,-64.42035437031495],[-57.90117901179012,-64.41697721577518],[-57.95517955179551,-64.40346859761613],[-57.96597965979659,-64.39840286580647],[-57.95517955179551,-64.38827140218717],[-57.95157951579516,-64.38320567037752],[-57.947979479794796,-64.376451361298],[-57.947979479794796,-64.36969705221847],[-57.94437944379443,-64.35112270224975],[-57.947979479794796,-64.34605697044012],[-57.92637926379264,-64.34436839317023],[-57.91557915579155,-64.34267981590034],[-57.908379083790834,-64.33761408409069],[-57.933579335793354,-64.32241688866175],[-57.96237962379624,-64.31566257958222],[-58.048780487804876,-64.3173511568521],[-58.059580595805954,-64.32072831139186],[-58.07038070380703,-64.32917119774129],[-58.07038070380703,-64.33930266136058],[-58.07038070380703,-64.35956558859917],[-58.073980739807396,-64.36969705221847],[-58.08838088380884,-64.38151709310765],[-58.10638106381063,-64.38995997945706],[-58.1279812798128,-64.3950257112667],[-58.14598145981459,-64.39333713399682],[-58.13158131581315,-64.38151709310765],[-58.10278102781028,-64.36294274313893],[-58.08838088380884,-64.35281127951964],[-58.11358113581136,-64.34943412497987],[-58.135181351813515,-64.34943412497987],[-58.15318153181532,-64.3561884340594],[-58.185581855818555,-64.376451361298],[-58.19278192781927,-64.38151709310765],[-58.20358203582036,-64.38320567037752],[-58.21438214382144,-64.38489424764741],[-58.22878228782288,-64.37982851583776],[-58.23238232382323,-64.37138562948834],[-58.22878228782288,-64.36294274313893],[-58.22878228782288,-64.3578770113293],[-58.311583115831155,-64.32072831139186],[-58.29718297182971,-64.30721969323281],[-58.27918279182792,-64.2987768068834],[-58.235982359823595,-64.2886453432641],[-58.18198181981819,-64.28189103418457],[-58.1639816398164,-64.28357961145446],[-58.160381603816035,-64.28189103418457],[-58.15678156781567,-64.2785138796448],[-58.15318153181532,-64.27682530237492],[-58.15318153181532,-64.27344814783515],[-58.15318153181532,-64.27007099329539],[-58.13878138781388,-64.26331668421585],[-58.07758077580776,-64.25993952967609],[-58.04158041580415,-64.25487379786644],[-58.02718027180272,-64.2498080660568],[-58.01278012780128,-64.2396766024375],[-58.05238052380524,-64.22785656154832],[-58.14238142381423,-64.2211022524688],[-58.18198181981819,-64.21265936611937],[-58.17478174781748,-64.18733070707114],[-58.135181351813515,-64.11809903900594],[-58.13158131581315,-64.102901843577],[-58.19638196381963,-64.08601607087817],[-58.25758257582575,-64.09952468903724],[-58.311583115831155,-64.12485334808548],[-58.361983619836195,-64.13836196624453],[-58.41958419584195,-64.13667338897466],[-58.45918459184591,-64.12991907989512],[-58.45918459184591,-64.12823050262524],[-58.44478444784447,-64.1130333071963],[-58.437584375843755,-64.11134472992642],[-58.4159841598416,-64.10627899811676],[-58.45558455584555,-64.08939322541794],[-58.45918459184591,-64.08601607087817],[-58.4519845198452,-64.06913029817935],[-58.43398433984339,-64.06068741182993],[-58.4159841598416,-64.0539331027504],[-58.39438394383943,-64.0438016391311],[-58.38358383583835,-64.02860444370216],[-58.37278372783727,-64.01340724827321],[-58.361983619836195,-63.99989863011416],[-58.34038340383404,-63.991455743764746],[-58.311583115831155,-63.991455743764746],[-58.30078300783008,-63.988078589224976],[-58.29718297182971,-63.97794712560568],[-58.30438304383043,-63.97119281652615],[-58.33318333183331,-63.95430704382732],[-58.30438304383043,-63.925601230239316],[-58.25758257582575,-63.90702688027061],[-58.16758167581675,-63.89351826211154],[-58.14238142381423,-63.89351826211154],[-58.1279812798128,-63.89858399392119],[-58.11718117181171,-63.89858399392119],[-58.10278102781028,-63.886763953032016],[-58.10278102781028,-63.881698221222365],[-58.109981099810994,-63.876632489412714],[-58.109981099810994,-63.8681896030633],[-58.09198091980919,-63.85299240763436],[-58.07758077580776,-63.84623809855483],[-58.023580235802356,-63.83610663493553],[-57.95157951579516,-63.859746716713886],[-57.947979479794796,-63.85299240763436],[-57.94437944379443,-63.84623809855483],[-57.94077940779407,-63.839483789475295],[-57.94437944379443,-63.83104090312588],[-57.947979479794796,-63.82766374858612],[-57.96957969579695,-63.81584370769694],[-57.973179731797316,-63.814155130427054],[-57.95157951579516,-63.80571224407764],[-57.92637926379264,-63.800646512267996],[-57.79317793177931,-63.79220362591858],[-57.79317793177931,-63.79389220318846],[-57.821978219782196,-63.80908939861741],[-57.82917829178291,-63.80908939861741],[-57.821978219782196,-63.81246655315718],[-57.81117811178112,-63.81584370769694],[-57.807578075780754,-63.81753228496682],[-57.771577715777156,-63.880009643952484],[-57.75717757177571,-63.89689541665131],[-57.80037800378004,-63.903649725730844],[-57.81477814778147,-63.91040403481037],[-57.821978219782196,-63.9171583438899],[-57.821978219782196,-63.923912652969435],[-57.81477814778147,-63.928978384779086],[-57.80397803978039,-63.93573269385861],[-57.81117811178112,-63.942487002938144],[-57.821978219782196,-63.949241312017676],[-57.88677886778868,-63.97625854833579],[-57.83637836378364,-63.99314432103462],[-57.81837818378183,-64.00496436192381],[-57.82557825578256,-64.01171867100334],[-57.82917829178291,-64.01678440281299],[-57.832778327783274,-64.01678440281299],[-57.82557825578256,-64.02185013462262],[-57.81837818378183,-64.02860444370216],[-57.81477814778147,-64.03873590732145],[-57.81837818378183,-64.04886737094075],[-57.82557825578256,-64.05562168002028],[-57.85437854378543,-64.06237598909982],[-57.86517865178651,-64.06575314363958],[-57.82917829178291,-64.074196029989],[-57.78957789577895,-64.07926176179865],[-57.75357753577535,-64.07926176179865],[-57.71757717577175,-64.07588460725887],[-57.74277742777427,-64.03029302097204],[-57.72837728377283,-64.02016155735275],[-57.6239762397624,-63.98301285741533],[-57.54117541175411,-63.939109848398374],[-57.494374943749435,-63.925601230239316],[-57.4979749797498,-63.928978384779086],[-57.50517505175051,-63.93404411658873],[-57.51597515975159,-63.944175580208025],[-57.50877508775088,-63.95430704382732],[-57.4979749797498,-63.95937277563697],[-57.47277472774728,-63.96781566198638],[-57.50517505175051,-63.98301285741533],[-57.51237512375123,-63.988078589224976],[-57.51237512375123,-63.99483289830451],[-57.51237512375123,-63.99989863011416],[-57.50877508775088,-64.00496436192381],[-57.50877508775088,-64.01003009373345],[-57.51237512375123,-64.01340724827321],[-57.519575195751955,-64.01678440281299],[-57.5339753397534,-64.02185013462262],[-57.519575195751955,-64.02016155735275],[-57.155971559715596,-64.08432749360828],[-57.18837188371883,-64.09445895722759],[-57.19557195571956,-64.09614753449748],[-57.191971919719194,-64.10459042084688],[-57.18477184771848,-64.10796757538665],[-57.17397173971739,-64.11134472992642],[-57.16317163171631,-64.1130333071963],[-57.19557195571956,-64.12485334808548],[-57.22797227972279,-64.12823050262524],[-57.332373323733236,-64.12654192535535],[-57.36477364773647,-64.12991907989512],[-57.3719737197372,-64.13329623443488],[-57.393573935739354,-64.14342769805418],[-57.40077400774007,-64.14511627532407],[-57.343173431734314,-64.14680485259395],[-57.32517325173251,-64.15018200713371],[-57.32157321573216,-64.15862489348314],[-57.307173071730716,-64.15862489348314],[-57.292772927729274,-64.15862489348314],[-57.281972819728196,-64.1620020480229],[-57.317973179731794,-64.17888782072171],[-57.32517325173251,-64.18226497526149],[-57.29997299972999,-64.18226497526149],[-57.256772567725676,-64.17719924345184],[-57.21357213572135,-64.16706777983254],[-57.14877148771487,-64.16369062529277],[-57.13797137971379,-64.16875635710242],[-57.119971199712,-64.16031347075301],[-57.09117091170911,-64.15355916167348],[-57.06957069570696,-64.16031347075301],[-57.07677076770767,-64.18395355253136],[-57.09477094770948,-64.19746217069043],[-57.11277112771127,-64.20759363430973],[-57.20277202772027,-64.22279082973867],[-57.22797227972279,-64.2211022524688],[-57.25317253172531,-64.21603652065915],[-57.242372423724234,-64.22447940700856],[-57.25317253172531,-64.23461087062785],[-57.26397263972639,-64.2396766024375],[-57.27837278372783,-64.24305375697726],[-57.292772927729274,-64.24305375697726],[-57.307173071730716,-64.24136517970737],[-57.393573935739354,-64.21772509792902],[-57.42237422374224,-64.21434794338926],[-57.45477454774547,-64.21772509792902],[-57.48357483574836,-64.23292229335797],[-57.47637476374763,-64.23292229335797],[-57.34677346773468,-64.25149664332667],[-57.32517325173251,-64.2582509524062],[-57.307173071730716,-64.27007099329539],[-57.3719737197372,-64.2785138796448],[-57.51237512375123,-64.25487379786644],[-57.56277562775627,-64.2869567659942],[-57.55197551975519,-64.29202249780386],[-57.386373863738626,-64.30553111596292],[-57.368373683736834,-64.31059684777257],[-57.35037350373503,-64.3173511568521],[-57.29997299972999,-64.34605697044012],[-57.28917289172891,-64.35449985678952],[-57.285572855728546,-64.36125416586906],[-57.29637296372964,-64.37138562948834],[-57.382773827738276,-64.38827140218717],[-57.41517415174151,-64.38827140218717],[-57.42957429574295,-64.3865828249173],[-57.443974439744395,-64.38151709310765],[-57.44757447574476,-64.37307420675823],[-57.44757447574476,-64.35281127951964],[-57.45477454774547,-64.34605697044012],[-57.469174691746915,-64.33930266136058],[-57.48357483574836,-64.33761408409069],[-57.4979749797498,-64.33761408409069],[-57.51237512375123,-64.34099123863047]]],[[[-67.99927999279993,-55.627932526035735],[-68.01728017280172,-55.6414411441948],[-68.0280802808028,-55.649884030544214],[-68.03168031680316,-55.66170407143339],[-67.99927999279993,-55.6600154941635],[-67.98487984879849,-55.66339264870327],[-67.98487984879849,-55.675212689592456],[-67.9920799207992,-55.67690126686233],[-68.03528035280353,-55.69547561683105],[-68.06048060480605,-55.712361389529875],[-68.07128071280712,-55.71573854406964],[-68.08928089280893,-55.71573854406964],[-68.10008100081001,-55.712361389529875],[-68.11448114481145,-55.69547561683105],[-68.1360813608136,-55.68196699867198],[-68.14328143281432,-55.67352411232257],[-68.15048150481505,-55.66170407143339],[-68.15048150481505,-55.65663833962374],[-68.14328143281432,-55.646506876004445],[-68.14328143281432,-55.6414411441948],[-68.14688146881468,-55.63468683511526],[-68.1540815408154,-55.626243948765854],[-68.15768157681576,-55.62455537149597],[-68.15048150481505,-55.60429244425738],[-68.1540815408154,-55.59584955790797],[-68.16488164881649,-55.59416098063808],[-68.17568175681757,-55.59584955790797],[-68.21168211682117,-55.61442390787667],[-68.23688236882369,-55.61780106241644],[-68.26928269282692,-55.61780106241644],[-68.29088290882909,-55.609358176067026],[-68.28368283682836,-55.58909524882843],[-68.25488254882548,-55.55870085797055],[-68.24768247682476,-55.54181508527172],[-68.25128251282513,-55.524929312572894],[-68.26928269282692,-55.51648642622348],[-68.33048330483304,-55.502977808064415],[-68.34128341283413,-55.494534921715],[-68.35208352083521,-55.47596057174629],[-68.38088380883808,-55.481026303555936],[-68.4240842408424,-55.5046663853343],[-68.45648456484564,-55.502977808064415],[-68.49968499684996,-55.49115776717524],[-68.53928539285393,-55.47258341720652],[-68.55368553685537,-55.45232048996793],[-68.55368553685537,-55.43205756272934],[-68.55728557285572,-55.42361467637993],[-68.56088560885608,-55.421926099110046],[-68.57168571685716,-55.421926099110046],[-68.57528575285752,-55.42361467637993],[-68.57888578885789,-55.43036898545946],[-68.5860858608586,-55.4354347172691],[-68.59328593285933,-55.4354347172691],[-68.59688596885968,-55.43036898545946],[-68.59688596885968,-55.420237521840164],[-68.60408604086041,-55.41179463549075],[-68.61848618486185,-55.40841748095099],[-68.61848618486185,-55.42361467637993],[-68.61488614886149,-55.43712329453899],[-68.61128611286112,-55.45063191269806],[-68.60408604086041,-55.462451953587234],[-68.68328683286832,-55.45738622177758],[-68.7120871208712,-55.465829108127],[-68.73008730087301,-55.464140530857115],[-68.77328773287732,-55.42868040818958],[-68.8020880208802,-55.421926099110046],[-68.77328773287732,-55.45063191269806],[-68.77328773287732,-55.464140530857115],[-68.8020880208802,-55.462451953587234],[-68.77688776887769,-55.482714880825824],[-68.76968769687697,-55.49284634444512],[-68.78048780487805,-55.497912076254764],[-68.79848798487984,-55.49960065352465],[-68.83448834488344,-55.508043539874066],[-68.85248852488525,-55.50973211714395],[-68.86688866888669,-55.5046663853343],[-68.88128881288813,-55.494534921715],[-68.89928899288992,-55.481026303555936],[-68.90288902889029,-55.47258341720652],[-68.910089100891,-55.462451953587234],[-68.93528935289352,-55.45400906723782],[-68.94968949689496,-55.445566180888406],[-68.96768967689677,-55.43036898545946],[-68.97128971289713,-55.421926099110046],[-68.9640896408964,-55.40841748095099],[-68.95688956889569,-55.403351749141336],[-68.90288902889029,-55.38646597644251],[-68.88488884888848,-55.38477739917263],[-68.82728827288273,-55.38646597644251],[-68.77328773287732,-55.37971166736298],[-68.75168751687517,-55.37971166736298],[-68.76968769687697,-55.378023090093095],[-68.80928809288092,-55.359448740124385],[-68.80928809288092,-55.35269443104485],[-68.75888758887588,-55.33243150380626],[-68.78768787687876,-55.33243150380626],[-68.94968949689496,-55.38140024463286],[-68.9640896408964,-55.383088821902746],[-68.97128971289713,-55.37633451282321],[-68.96768967689677,-55.3678916264738],[-68.9280892808928,-55.340874390155676],[-68.91728917289173,-55.33412008107615],[-68.90648906489065,-55.33243150380626],[-68.89928899288992,-55.32736577199661],[-68.89568895688957,-55.31723430837732],[-68.89928899288992,-55.30372569021826],[-68.89568895688957,-55.29190564932908],[-68.88848888488884,-55.28177418570978],[-68.85608856088561,-55.258134103931425],[-68.85968859688596,-55.253068372121774],[-68.86688866888669,-55.24631406304225],[-68.87048870488705,-55.24462548577236],[-68.86328863288632,-55.232805444883184],[-68.85608856088561,-55.22436255853377],[-68.84528845288453,-55.21929682672412],[-68.83088830888309,-55.215919672184356],[-68.82728827288273,-55.21254251764459],[-68.80928809288092,-55.19396816767588],[-68.8020880208802,-55.18890243586623],[-68.82368823688236,-55.18721385859635],[-68.90288902889029,-55.22267398126389],[-68.94968949689496,-55.232805444883184],[-68.96048960489604,-55.236182599422946],[-68.9640896408964,-55.25475694939166],[-68.96768967689677,-55.26151125847119],[-68.97488974889748,-55.26488841301095],[-68.98568985689856,-55.26488841301095],[-69.0360903609036,-55.26151125847119],[-69.05769057690577,-55.253068372121774],[-69.090090900909,-55.22267398126389],[-69.09729097290972,-55.215919672184356],[-69.10809108091081,-55.210853940374705],[-69.11529115291152,-55.20578820856506],[-69.12249122491224,-55.195656744945765],[-69.12249122491224,-55.1821481267867],[-69.11889118891189,-55.16019662227823],[-69.12249122491224,-55.148376581389044],[-69.15129151291512,-55.17032808589752],[-69.14409144091441,-55.195656744945765],[-69.12249122491224,-55.22098540399401],[-69.10809108091081,-55.24462548577236],[-69.13329133291333,-55.24800264031212],[-69.16569165691656,-55.24293690850248],[-69.19449194491945,-55.2311168676133],[-69.21249212492124,-55.215919672184356],[-69.21969219692197,-55.20578820856506],[-69.22689226892268,-55.192279590406],[-69.23049230492305,-55.17877097224694],[-69.23409234092341,-55.16526235408787],[-69.23769237692376,-55.15681946773846],[-69.24489244892449,-55.151753735928814],[-69.24849248492484,-55.14499942684928],[-69.24129241292412,-55.12642507688057],[-69.2520925209252,-55.12980223142034],[-69.26649266492664,-55.138245117769756],[-69.27369273692736,-55.14162227230952],[-69.32049320493205,-55.13993369503963],[-69.35289352893528,-55.151753735928814],[-69.4140941409414,-55.15681946773846],[-69.43929439294392,-55.16188519954811],[-69.42129421294213,-55.16695093135776],[-69.38529385293853,-55.15850804500835],[-69.36729367293673,-55.15850804500835],[-69.35289352893528,-55.163573776818],[-69.3060930609306,-55.16526235408787],[-69.2880928809288,-55.16863950862764],[-69.29889298892988,-55.173705240437286],[-69.30249302493024,-55.175393817707175],[-69.29169291692916,-55.190591013136114],[-69.27369273692736,-55.214231094914474],[-69.26649266492664,-55.22942829034342],[-69.29529295292953,-55.22267398126389],[-69.3240932409324,-55.22605113580366],[-69.3780937809378,-55.24462548577236],[-69.41049410494105,-55.24631406304225],[-69.42489424894248,-55.24631406304225],[-69.43209432094321,-55.2412483312326],[-69.43929439294392,-55.2311168676133],[-69.45369453694536,-55.22942829034342],[-69.4680946809468,-55.232805444883184],[-69.47889478894788,-55.236182599422946],[-69.47889478894788,-55.24462548577236],[-69.47169471694717,-55.24969121758201],[-69.46089460894609,-55.258134103931425],[-69.45369453694536,-55.26657699028084],[-69.450094500945,-55.27164272209049],[-69.450094500945,-55.280085608439904],[-69.450094500945,-55.28683991751943],[-69.45369453694536,-55.295282803868844],[-69.46089460894609,-55.30541426748814],[-69.44649446494465,-55.30372569021826],[-69.42849428494284,-55.29021707205919],[-69.41769417694177,-55.28515134024955],[-69.40689406894069,-55.28515134024955],[-69.39249392493925,-55.28683991751943],[-69.38169381693817,-55.29190564932908],[-69.37089370893709,-55.29865995840861],[-69.36009360093601,-55.30541426748814],[-69.35649356493565,-55.31047999929778],[-69.34929349293492,-55.31385715383755],[-69.33489334893349,-55.3189228856472],[-69.32049320493205,-55.3189228856472],[-69.3060930609306,-55.31385715383755],[-69.29529295292953,-55.31216857656767],[-69.28089280892809,-55.3189228856472],[-69.2880928809288,-55.32398861745685],[-69.3060930609306,-55.33074292653638],[-69.31689316893168,-55.33243150380626],[-69.31689316893168,-55.339185812885795],[-69.3060930609306,-55.34256296742556],[-69.30249302493024,-55.34594012196533],[-69.30249302493024,-55.35269443104485],[-69.30969309693097,-55.359448740124385],[-69.29169291692916,-55.362825894664155],[-69.26289262892628,-55.36451447193403],[-69.24129241292412,-55.36958020374368],[-69.24489244892449,-55.383088821902746],[-69.28089280892809,-55.401663171871455],[-69.29889298892988,-55.41348321276063],[-69.30249302493024,-55.42868040818958],[-69.29169291692916,-55.43036898545946],[-69.26289262892628,-55.42868040818958],[-69.2520925209252,-55.42868040818958],[-69.24849248492484,-55.43374613999923],[-69.24489244892449,-55.440500449078755],[-69.23769237692376,-55.44725475815829],[-69.23049230492305,-55.44894333542817],[-69.20529205292053,-55.43712329453899],[-69.19449194491945,-55.4354347172691],[-69.16569165691656,-55.43712329453899],[-69.13689136891368,-55.44218902634864],[-69.17289172891728,-55.462451953587234],[-69.17649176491764,-55.46920626266676],[-69.17289172891728,-55.47764914901617],[-69.15489154891549,-55.484403458095706],[-69.15129151291512,-55.494534921715],[-69.1620916209162,-55.51479784895359],[-69.18729187291872,-55.5046663853343],[-69.22689226892268,-55.46920626266676],[-69.24849248492484,-55.46920626266676],[-69.29889298892988,-55.49115776717524],[-69.32049320493205,-55.48609203536559],[-69.32769327693276,-55.47933772628606],[-69.33849338493384,-55.47427199447641],[-69.34569345693457,-55.46751768539688],[-69.34929349293492,-55.45232048996793],[-69.34569345693457,-55.4168603673004],[-69.34929349293492,-55.40841748095099],[-69.36369363693636,-55.3881545537124],[-69.37449374493744,-55.38984313098227],[-69.38529385293853,-55.40504032641122],[-69.38889388893888,-55.425303253649815],[-69.39249392493925,-55.445566180888406],[-69.39609396093961,-55.46920626266676],[-69.40329403294032,-55.487780612635476],[-69.41769417694177,-55.497912076254764],[-69.43569435694357,-55.49115776717524],[-69.44289442894429,-55.47258341720652],[-69.43929439294392,-55.43205756272934],[-69.450094500945,-55.40841748095099],[-69.50769507695077,-55.40841748095099],[-69.52209522095221,-55.39322028552204],[-69.5040950409504,-55.37971166736298],[-69.39609396093961,-55.359448740124385],[-69.41769417694177,-55.35269443104485],[-69.48609486094861,-55.359448740124385],[-69.48609486094861,-55.35269443104485],[-69.48249482494825,-55.35100585377497],[-69.46449464494644,-55.339185812885795],[-69.49329493294933,-55.335808658346025],[-69.50769507695077,-55.34594012196533],[-69.52209522095221,-55.359448740124385],[-69.54369543695437,-55.36620304920392],[-69.60849608496085,-55.36620304920392],[-69.630096300963,-55.359448740124385],[-69.61209612096121,-55.35438300831474],[-69.60489604896048,-55.34762869923521],[-69.60849608496085,-55.339185812885795],[-69.61929619296193,-55.3290543492665],[-69.630096300963,-55.32736577199661],[-69.66249662496625,-55.3290543492665],[-69.68049680496804,-55.32567719472674],[-69.68769687696877,-55.320611462917086],[-69.69849698496985,-55.31385715383755],[-69.70929709297093,-55.30879142202791],[-69.72729727297272,-55.30541426748814],[-69.78849788497885,-55.30541426748814],[-69.77769777697776,-55.29359422659896],[-69.76329763297633,-55.29190564932908],[-69.74529745297453,-55.29190564932908],[-69.73089730897308,-55.29190564932908],[-69.66969669696697,-55.27501987663025],[-69.65169651696516,-55.27164272209049],[-69.56889568895689,-55.27164272209049],[-69.5940959409594,-55.26319983574108],[-69.61569615696156,-55.26151125847119],[-69.66969669696697,-55.26488841301095],[-69.67329673296733,-55.25982268120131],[-69.66969669696697,-55.25137979485189],[-69.65889658896589,-55.236182599422946],[-69.64089640896408,-55.22942829034342],[-69.54729547295473,-55.20578820856506],[-69.53289532895329,-55.19903389948553],[-69.5040950409504,-55.18045954951682],[-69.50049500495004,-55.175393817707175],[-69.50769507695077,-55.17201666316741],[-69.55089550895508,-55.175393817707175],[-69.56889568895689,-55.18045954951682],[-69.60489604896048,-55.20409963129518],[-69.62289622896229,-55.20916536310483],[-69.63729637296373,-55.20916536310483],[-69.64809648096481,-55.20578820856506],[-69.65889658896589,-55.20578820856506],[-69.66969669696697,-55.21254251764459],[-69.67329673296733,-55.21929682672412],[-69.67689676896768,-55.22436255853377],[-69.68049680496804,-55.2311168676133],[-69.69129691296912,-55.236182599422946],[-69.71649716497164,-55.24293690850248],[-69.84969849698497,-55.258134103931425],[-69.86769867698676,-55.25475694939166],[-69.86409864098641,-55.236182599422946],[-69.87849878498784,-55.232805444883184],[-69.91089910899109,-55.22942829034342],[-69.92529925299253,-55.22267398126389],[-69.87489874898749,-55.22098540399401],[-69.85329853298532,-55.215919672184356],[-69.83529835298353,-55.20241105402529],[-69.89289892898928,-55.200722476755416],[-69.91089910899109,-55.195656744945765],[-69.90009900099001,-55.18552528132647],[-69.84249842498424,-55.16863950862764],[-69.86769867698676,-55.163573776818],[-69.96129961299613,-55.16188519954811],[-69.98289982899828,-55.16526235408787],[-70.00090000900009,-55.17032808589752],[-70.01890018900188,-55.163573776818],[-70.02970029700296,-55.153442313198696],[-70.02970029700296,-55.148376581389044],[-70.02250022500225,-55.1433108495794],[-69.98649986499865,-55.112916458721514],[-69.97569975699757,-55.12473649961069],[-69.9648996489965,-55.12642507688057],[-69.95769957699576,-55.11967076780104],[-69.94689946899469,-55.08758779967327],[-69.93609936099361,-55.07914491332386],[-69.88569885698857,-55.06394771789492],[-69.82089820898209,-55.06563629516479],[-69.77409774097741,-55.05381625427562],[-69.65169651696516,-55.052127677005736],[-69.61569615696156,-55.04199621338644],[-69.58689586895869,-55.04199621338644],[-69.5760957609576,-55.06563629516479],[-69.56889568895689,-55.10109641783234],[-69.56169561695617,-55.12642507688057],[-69.58329583295833,-55.155130890468584],[-69.540095400954,-55.14499942684928],[-69.53649536495365,-55.12135934507093],[-69.54729547295473,-55.08758779967327],[-69.540095400954,-55.052127677005736],[-69.54729547295473,-55.03693048157679],[-69.52929529295292,-55.03186474976714],[-69.47889478894788,-55.030176172497264],[-69.44649446494465,-55.01835613160808],[-69.43929439294392,-55.0166675543382],[-69.42489424894248,-55.023421863417724],[-69.42489424894248,-55.03186474976714],[-69.43569435694357,-55.03861905884668],[-69.44649446494465,-55.0453733679262],[-69.42849428494284,-55.052127677005736],[-69.41769417694177,-55.050439099735854],[-69.40329403294032,-55.04368479065632],[-69.38889388893888,-55.03861905884668],[-69.37449374493744,-55.04030763611655],[-69.34569345693457,-55.048750522465966],[-69.32769327693276,-55.052127677005736],[-69.33849338493384,-55.03861905884668],[-69.38169381693817,-55.0166675543382],[-69.32049320493205,-54.993027472559845],[-69.28449284492845,-54.986273163480305],[-69.2520925209252,-54.99133889528996],[-69.21249212492124,-55.013290399798436],[-69.1980919809198,-55.0166675543382],[-69.18729187291872,-55.013290399798436],[-69.18729187291872,-55.00484751344902],[-69.20169201692016,-54.99640462709961],[-69.21249212492124,-54.99133889528996],[-69.18369183691837,-54.993027472559845],[-69.1260912609126,-54.987961740750194],[-69.09729097290972,-54.99133889528996],[-69.06129061290612,-55.00147035890926],[-69.05049050490504,-55.00315893617913],[-69.03969039690396,-54.99978178163937],[-69.02529025290252,-54.986273163480305],[-69.01449014490144,-54.98289600894054],[-68.83448834488344,-54.98120743167066],[-68.73368733687336,-54.94912446354289],[-68.68328683286832,-54.94237015446336],[-68.57528575285752,-54.94237015446336],[-68.56448564485645,-54.94068157719347],[-68.53928539285393,-54.930550113574185],[-68.52848528485285,-54.9288615363043],[-68.5140851408514,-54.9288615363043],[-68.44208442084421,-54.9389929999236],[-68.41688416884169,-54.94912446354289],[-68.4060840608406,-54.95419019535254],[-68.37368373683736,-54.98120743167066],[-68.34488344883448,-54.99809320436949],[-68.3340833408334,-55.009913245258666],[-68.32688326883269,-55.028487595227375],[-68.32688326883269,-55.0453733679262],[-68.3340833408334,-55.06225914062503],[-68.34848348483484,-55.072390604244326],[-68.37368373683736,-55.075767758784096],[-68.39528395283952,-55.06563629516479],[-68.41328413284133,-55.052127677005736],[-68.43128431284312,-55.0453733679262],[-68.44208442084421,-55.0453733679262],[-68.44208442084421,-55.052127677005736],[-68.43848438484385,-55.06394771789492],[-68.43128431284312,-55.07914491332386],[-68.48168481684816,-55.10278499510221],[-68.51048510485104,-55.112916458721514],[-68.5320853208532,-55.10953930418175],[-68.54648546485464,-55.09603068602269],[-68.57528575285752,-55.07745633605398],[-68.60408604086041,-55.06563629516479],[-68.6220862208622,-55.07914491332386],[-68.61848618486185,-55.085899222403384],[-68.60768607686076,-55.090964954213035],[-68.59328593285933,-55.0943421087528],[-68.58248582485824,-55.09940784056245],[-68.57528575285752,-55.10953930418175],[-68.57168571685716,-55.12304792234081],[-68.56808568085681,-55.134867963229986],[-68.57888578885789,-55.14162227230952],[-68.58968589685897,-55.1433108495794],[-68.61488614886149,-55.151753735928814],[-68.62928629286293,-55.155130890468584],[-68.64728647286472,-55.153442313198696],[-68.69048690486905,-55.14162227230952],[-68.75168751687517,-55.133179385960105],[-68.79128791287913,-55.12135934507093],[-68.80568805688057,-55.11967076780104],[-68.82728827288273,-55.114605035991396],[-68.89208892088921,-55.07914491332386],[-68.9640896408964,-55.05381625427562],[-68.99288992889929,-55.052127677005736],[-69.00369003690037,-55.04199621338644],[-69.02889028890289,-55.02511044068761],[-69.05049050490504,-55.02004470887796],[-69.06129061290612,-55.0453733679262],[-69.05769057690577,-55.06057056335515],[-69.04689046890468,-55.06394771789492],[-69.03249032490325,-55.05888198608527],[-69.02169021690216,-55.05888198608527],[-69.00369003690037,-55.06394771789492],[-68.99648996489965,-55.06901344970456],[-68.99288992889929,-55.07745633605398],[-68.98568985689856,-55.085899222403384],[-68.96768967689677,-55.10109641783234],[-68.94968949689496,-55.111227881451626],[-68.78768787687876,-55.16526235408787],[-68.76248762487624,-55.16863950862764],[-68.67968679686797,-55.16863950862764],[-68.60768607686076,-55.175393817707175],[-68.5860858608586,-55.18552528132647],[-68.56448564485645,-55.192279590406],[-68.41328413284133,-55.18045954951682],[-68.38448384483844,-55.18383670405659],[-68.35928359283592,-55.21254251764459],[-68.2980829808298,-55.22098540399401],[-68.27288272882728,-55.22942829034342],[-68.28728287282873,-55.22942829034342],[-68.33048330483304,-55.236182599422946],[-68.24048240482405,-55.258134103931425],[-68.21888218882188,-55.25982268120131],[-68.2080820808208,-55.26319983574108],[-68.20448204482044,-55.27164272209049],[-68.2080820808208,-55.28346276297967],[-68.21528215282153,-55.28852849478931],[-68.22608226082261,-55.29190564932908],[-68.24048240482405,-55.29190564932908],[-68.27648276482765,-55.280085608439904],[-68.28368283682836,-55.28177418570978],[-68.29448294482944,-55.28683991751943],[-68.30528305283052,-55.28852849478931],[-68.43128431284312,-55.29865995840861],[-68.45288452884529,-55.29190564932908],[-68.46728467284673,-55.29021707205919],[-68.47088470884708,-55.295282803868844],[-68.47808478084781,-55.30372569021826],[-68.48888488884889,-55.30879142202791],[-68.49968499684996,-55.31216857656767],[-68.59328593285933,-55.31216857656767],[-68.61848618486185,-55.30541426748814],[-68.62928629286293,-55.295282803868844],[-68.65088650886509,-55.26319983574108],[-68.66168661686616,-55.258134103931425],[-68.70128701287013,-55.25475694939166],[-68.72288722887228,-55.258134103931425],[-68.74448744487445,-55.27164272209049],[-68.70128701287013,-55.26488841301095],[-68.67968679686797,-55.26657699028084],[-68.67248672486724,-55.28177418570978],[-68.6760867608676,-55.28683991751943],[-68.67968679686797,-55.29190564932908],[-68.67968679686797,-55.296971381138725],[-68.6580865808658,-55.300348535678495],[-68.64728647286472,-55.30541426748814],[-68.64368643686437,-55.31216857656767],[-68.65088650886509,-55.3189228856472],[-68.63288632886328,-55.32736577199661],[-68.60768607686076,-55.3290543492665],[-68.56088560885608,-55.32567719472674],[-68.57168571685716,-55.335808658346025],[-68.5860858608586,-55.34256296742556],[-68.59688596885968,-55.34931727650509],[-68.60408604086041,-55.359448740124385],[-68.58248582485824,-55.359448740124385],[-68.5140851408514,-55.33243150380626],[-68.49248492484925,-55.3290543492665],[-68.44928449284492,-55.32567719472674],[-68.42768427684277,-55.3290543492665],[-68.40968409684096,-55.33243150380626],[-68.4060840608406,-55.335808658346025],[-68.39888398883988,-55.340874390155676],[-68.39168391683917,-55.34425154469544],[-68.38088380883808,-55.34594012196533],[-68.35568355683556,-55.34256296742556],[-68.34488344883448,-55.34425154469544],[-68.3340833408334,-55.35269443104485],[-68.33048330483304,-55.362825894664155],[-68.3340833408334,-55.37126878101357],[-68.3340833408334,-55.37971166736298],[-68.3340833408334,-55.38646597644251],[-68.32328323283232,-55.399974594601574],[-68.31608316083161,-55.39659744006181],[-68.30168301683017,-55.3881545537124],[-68.28728287282873,-55.37971166736298],[-68.27648276482765,-55.37971166736298],[-68.26568265682657,-55.37971166736298],[-68.25848258482584,-55.38477739917263],[-68.24048240482405,-55.398286017331685],[-68.23328233282332,-55.398286017331685],[-68.22248222482224,-55.39659744006181],[-68.21168211682117,-55.39322028552204],[-68.16848168481684,-55.39659744006181],[-68.14688146881468,-55.40504032641122],[-68.14688146881468,-55.418548944570276],[-68.15048150481505,-55.425303253649815],[-68.15048150481505,-55.43205756272934],[-68.15048150481505,-55.43881187180887],[-68.15048150481505,-55.44218902634864],[-68.15768157681576,-55.44894333542817],[-68.1720817208172,-55.4556976445077],[-68.17568175681757,-55.462451953587234],[-68.15768157681576,-55.47089483993665],[-68.07848078480784,-55.462451953587234],[-68.05688056880568,-55.46920626266676],[-68.06408064080641,-55.484403458095706],[-68.09648096480964,-55.50973211714395],[-68.10008100081001,-55.52830646711266],[-68.08928089280893,-55.53506077619218],[-68.07128071280712,-55.54181508527172],[-68.04968049680497,-55.55532370343078],[-68.0460804608046,-55.565455167050075],[-68.04248042480424,-55.57220947612961],[-68.03888038880389,-55.57896378520914],[-68.0280802808028,-55.585718094288666],[-68.010080100801,-55.58909524882843],[-67.98127981279812,-55.587406671558554],[-67.96687966879668,-55.59416098063808],[-67.98127981279812,-55.59753813517784],[-67.98847988479885,-55.605981021527256],[-67.9920799207992,-55.61611248514656],[-67.99927999279993,-55.627932526035735]]],[[[-67.8840788407884,-55.24462548577236],[-67.85887858878588,-55.232805444883184],[-67.740077400774,-55.236182599422946],[-67.7580775807758,-55.22436255853377],[-67.83727837278373,-55.210853940374705],[-67.86247862478625,-55.20241105402529],[-67.8840788407884,-55.17877097224694],[-67.89847898478985,-55.16863950862764],[-67.90207902079021,-55.17201666316741],[-67.90567905679056,-55.18552528132647],[-67.91287912879129,-55.195656744945765],[-67.92367923679237,-55.195656744945765],[-67.93087930879308,-55.1821481267867],[-67.93807938079381,-55.1821481267867],[-67.9560795607956,-55.210853940374705],[-67.98487984879849,-55.22436255853377],[-68.0820808208082,-55.232805444883184],[-68.11088110881109,-55.22942829034342],[-68.1360813608136,-55.21929682672412],[-68.15768157681576,-55.195656744945765],[-68.15048150481505,-55.18890243586623],[-68.13968139681397,-55.18383670405659],[-68.11448114481145,-55.175393817707175],[-68.14688146881468,-55.16019662227823],[-68.15768157681576,-55.155130890468584],[-68.16488164881649,-55.14668800411917],[-68.18648186481865,-55.1044735723721],[-68.19008190081901,-55.09603068602269],[-68.18648186481865,-55.090964954213035],[-68.18288182881828,-55.07745633605398],[-68.17568175681757,-55.070702026974445],[-68.16848168481684,-55.06225914062503],[-68.16488164881649,-55.055504831545505],[-68.16488164881649,-55.048750522465966],[-68.16848168481684,-55.04368479065632],[-68.1720817208172,-55.03861905884668],[-68.17568175681757,-54.99809320436949],[-68.18648186481865,-54.97783027713089],[-68.20088200882009,-54.97951885440078],[-68.22608226082261,-54.989650318020075],[-68.2620826208262,-54.99471604982972],[-68.30168301683017,-54.99471604982972],[-68.33048330483304,-54.99133889528996],[-68.34488344883448,-54.97614169986102],[-68.35568355683556,-54.95419019535254],[-68.35928359283592,-54.930550113574185],[-68.34488344883448,-54.92041864995488],[-68.25488254882548,-54.923795804494645],[-68.22608226082261,-54.92041864995488],[-68.22608226082261,-54.918730072685],[-68.22248222482224,-54.91535291814523],[-68.21528215282153,-54.91028718633559],[-68.21168211682117,-54.908598609065706],[-67.94167941679416,-54.90522145452594],[-67.80487804878048,-54.91366434087536],[-67.72567725677257,-54.93561584538383],[-67.70047700477005,-54.93223869084406],[-67.67887678876788,-54.925484381764534],[-67.65007650076501,-54.92041864995488],[-67.46287462874628,-54.92210722722477],[-67.30087300873008,-54.9288615363043],[-67.22167221672217,-54.94912446354289],[-67.1820718207182,-54.9676988135116],[-67.14967149671496,-54.99471604982972],[-67.11367113671136,-55.030176172497264],[-67.09927099270992,-55.0453733679262],[-67.07767077670776,-55.05719340881538],[-67.06327063270632,-55.072390604244326],[-67.05247052470524,-55.0943421087528],[-67.0560705607056,-55.1044735723721],[-67.05247052470524,-55.12304792234081],[-67.05247052470524,-55.133179385960105],[-67.05967059670596,-55.14499942684928],[-67.07767077670776,-55.16695093135776],[-67.08127081270813,-55.17877097224694],[-67.08847088470884,-55.190591013136114],[-67.22527225272252,-55.29190564932908],[-67.27207272072721,-55.30710284475802],[-67.35127351273512,-55.30372569021826],[-67.41247412474124,-55.29190564932908],[-67.43407434074341,-55.28177418570978],[-67.44487444874449,-55.27501987663025],[-67.4520745207452,-55.27164272209049],[-67.45567455674556,-55.26657699028084],[-67.45927459274593,-55.25475694939166],[-67.4520745207452,-55.2412483312326],[-67.43047430474304,-55.22773971307353],[-67.42327423274233,-55.215919672184356],[-67.44487444874449,-55.1821481267867],[-67.50247502475024,-55.17201666316741],[-67.56727567275672,-55.177082394977056],[-67.61047610476105,-55.18890243586623],[-67.62127621276213,-55.200722476755416],[-67.62847628476284,-55.21254251764459],[-67.64287642876428,-55.24462548577236],[-67.64647646476465,-55.25475694939166],[-67.64287642876428,-55.258134103931425],[-67.64647646476465,-55.26151125847119],[-67.66447664476644,-55.26488841301095],[-67.67527675276753,-55.26488841301095],[-67.71127711277113,-55.258134103931425],[-67.73647736477365,-55.25644552666154],[-67.80127801278013,-55.26488841301095],[-67.82287822878229,-55.26151125847119],[-67.8840788407884,-55.24462548577236]]],[[[-70.2961029610296,-55.08252206786362],[-70.29250292502924,-55.09603068602269],[-70.28530285302853,-55.09940784056245],[-70.27450274502745,-55.10278499510221],[-70.26730267302672,-55.112916458721514],[-70.31050310503105,-55.12642507688057],[-70.33930339303393,-55.128113654150454],[-70.35010350103501,-55.11629361326128],[-70.35730357303572,-55.10109641783234],[-70.37890378903789,-55.08758779967327],[-70.40050400504005,-55.08083349059374],[-70.41850418504184,-55.07914491332386],[-70.39690396903968,-55.10616214964198],[-70.41490414904149,-55.10616214964198],[-70.43650436504365,-55.10109641783234],[-70.45090450904509,-55.1044735723721],[-70.44730447304472,-55.12642507688057],[-70.42930429304293,-55.138245117769756],[-70.3861038610386,-55.14499942684928],[-70.37170371703716,-55.16188519954811],[-70.38970389703897,-55.16863950862764],[-70.42930429304293,-55.17201666316741],[-70.44730447304472,-55.175393817707175],[-70.46170461704617,-55.18383670405659],[-70.47970479704797,-55.20409963129518],[-70.4941049410494,-55.20916536310483],[-70.48690486904869,-55.18383670405659],[-70.4941049410494,-55.16695093135776],[-70.5121051210512,-55.15681946773846],[-70.53730537305373,-55.155130890468584],[-70.5481054810548,-55.16019662227823],[-70.52290522905228,-55.19396816767588],[-70.52650526505265,-55.20916536310483],[-70.5481054810548,-55.214231094914474],[-70.55890558905588,-55.19903389948553],[-70.56610566105661,-55.177082394977056],[-70.56970569705696,-55.15850804500835],[-70.56250562505625,-55.13993369503963],[-70.55170551705517,-55.12642507688057],[-70.53370533705336,-55.117982190531166],[-70.5121051210512,-55.112916458721514],[-70.5121051210512,-55.10616214964198],[-70.5481054810548,-55.09771926329257],[-70.56250562505625,-55.090964954213035],[-70.57690576905769,-55.06057056335515],[-70.59130591305913,-55.050439099735854],[-70.60570605706057,-55.048750522465966],[-70.61650616506165,-55.05888198608527],[-70.60930609306092,-55.05888198608527],[-70.60210602106021,-55.06225914062503],[-70.59130591305913,-55.072390604244326],[-70.60210602106021,-55.075767758784096],[-70.620106201062,-55.07745633605398],[-70.63090630906309,-55.07745633605398],[-70.63450634506344,-55.07407918151421],[-70.64170641706417,-55.072390604244326],[-70.64530645306452,-55.072390604244326],[-70.64530645306452,-55.075767758784096],[-70.64530645306452,-55.08421064513351],[-70.64530645306452,-55.085899222403384],[-70.66690666906669,-55.10616214964198],[-70.67770677706777,-55.112916458721514],[-70.69930699306992,-55.112916458721514],[-70.69930699306992,-55.12642507688057],[-70.71730717307173,-55.12304792234081],[-70.73530735307352,-55.111227881451626],[-70.7461074610746,-55.09940784056245],[-70.73170731707317,-55.085899222403384],[-70.72090720907208,-55.06901344970456],[-70.72810728107281,-55.05381625427562],[-70.75330753307533,-55.052127677005736],[-70.76410764107641,-55.05719340881538],[-70.77490774907749,-55.06394771789492],[-70.78210782107821,-55.070702026974445],[-70.80010800108,-55.072390604244326],[-70.80370803708037,-55.075767758784096],[-70.80370803708037,-55.08083349059374],[-70.80730807308073,-55.08421064513351],[-70.81450814508145,-55.085899222403384],[-70.82530825308253,-55.08421064513351],[-70.82890828908289,-55.07914491332386],[-70.82890828908289,-55.07407918151421],[-70.83250832508325,-55.072390604244326],[-70.83970839708397,-55.070702026974445],[-70.84690846908468,-55.06394771789492],[-70.85770857708577,-55.05888198608527],[-70.8721087210872,-55.05888198608527],[-70.8829088290883,-55.06394771789492],[-70.89730897308972,-55.075767758784096],[-70.91170911709116,-55.07914491332386],[-70.92970929709297,-55.07745633605398],[-70.94050940509405,-55.072390604244326],[-70.95850958509585,-55.05888198608527],[-70.98010980109801,-55.04706194519609],[-70.99090990909909,-55.0453733679262],[-71.0089100891009,-55.0453733679262],[-71.0089100891009,-55.03861905884668],[-70.99090990909909,-55.033553327037026],[-70.99090990909909,-55.02511044068761],[-70.9981099810998,-55.01497897706832],[-70.99450994509945,-55.00315893617913],[-70.97290972909728,-54.99640462709961],[-70.92970929709297,-55.00147035890926],[-70.91890918909189,-54.99133889528996],[-70.95130951309513,-54.987961740750194],[-70.99090990909909,-54.97783027713089],[-71.01251012510124,-54.96432165897183],[-70.98730987309872,-54.94912446354289],[-70.96930969309693,-54.945747309003124],[-70.9261092610926,-54.94912446354289],[-70.90450904509045,-54.94912446354289],[-70.89010890108901,-54.94237015446336],[-70.87930879308793,-54.93561584538383],[-70.86490864908649,-54.930550113574185],[-70.85050850508505,-54.93392726811395],[-70.86490864908649,-54.9575673498923],[-70.86490864908649,-54.966010236241715],[-70.84690846908468,-54.96938739078148],[-70.82170821708216,-54.966010236241715],[-70.81090810908108,-54.9676988135116],[-70.79650796507964,-54.97614169986102],[-70.79650796507964,-54.95250161808266],[-70.79650796507964,-54.945747309003124],[-70.79650796507964,-54.93730442265371],[-70.79650796507964,-54.93392726811395],[-70.78930789307893,-54.93223869084406],[-70.78210782107821,-54.93561584538383],[-70.77490774907749,-54.94068157719347],[-70.77130771307712,-54.94237015446336],[-70.76410764107641,-54.94405873173324],[-70.74970749707497,-54.95419019535254],[-70.73890738907389,-54.95587877262242],[-70.73170731707317,-54.95587877262242],[-70.72090720907208,-54.95925592716219],[-70.71370713707137,-54.96263308170195],[-70.70650706507065,-54.96938739078148],[-70.69210692106921,-54.96094450443207],[-70.67770677706777,-54.96094450443207],[-70.64530645306452,-54.96938739078148],[-70.56250562505625,-54.96938739078148],[-70.56250562505625,-54.96263308170195],[-70.60210602106021,-54.95925592716219],[-70.61650616506165,-54.95250161808266],[-70.60930609306092,-54.94237015446336],[-70.59490594905948,-54.93392726811395],[-70.55170551705517,-54.927172959034415],[-70.49050490504905,-54.90015572271629],[-70.39330393303932,-54.89846714544641],[-70.35010350103501,-54.89340141363677],[-70.31410314103141,-54.90015572271629],[-70.31410314103141,-54.908598609065706],[-70.44370443704436,-54.9389929999236],[-70.4941049410494,-54.94237015446336],[-70.50490504905049,-54.950813040812776],[-70.50850508505084,-54.987961740750194],[-70.52290522905228,-54.99640462709961],[-70.57690576905769,-54.986273163480305],[-70.59850598505984,-54.986273163480305],[-70.59850598505984,-55.00315893617913],[-70.66330663306633,-54.99978178163937],[-70.69210692106921,-54.99471604982972],[-70.72090720907208,-54.98289600894054],[-70.73170731707317,-55.00484751344902],[-70.72810728107281,-55.013290399798436],[-70.71730717307173,-55.0166675543382],[-70.69930699306992,-55.01835613160808],[-70.65250652506525,-55.030176172497264],[-70.56610566105661,-55.030176172497264],[-70.55890558905588,-55.028487595227375],[-70.54090540905409,-55.01835613160808],[-70.53010530105301,-55.0166675543382],[-70.50850508505084,-55.0166675543382],[-70.49770497704976,-55.01835613160808],[-70.48690486904869,-55.023421863417724],[-70.4941049410494,-55.02511044068761],[-70.50490504905049,-55.030176172497264],[-70.5121051210512,-55.030176172497264],[-70.4941049410494,-55.04030763611655],[-70.46530465304653,-55.04706194519609],[-70.40770407704076,-55.052127677005736],[-70.39690396903968,-55.048750522465966],[-70.37530375303753,-55.033553327037026],[-70.36450364503645,-55.030176172497264],[-70.31050310503105,-55.028487595227375],[-70.2961029610296,-55.030176172497264],[-70.27810278102781,-55.048750522465966],[-70.2961029610296,-55.05719340881538],[-70.32850328503285,-55.06225914062503],[-70.34290342903428,-55.06901344970456],[-70.33570335703357,-55.07914491332386],[-70.30330303303033,-55.07745633605398],[-70.2961029610296,-55.08252206786362]]],[[[-71.63171631716317,-54.079507169553295],[-71.63531635316353,-54.044047046885765],[-71.64971649716497,-54.01196407875799],[-71.65691656916569,-53.98325826516999],[-71.63171631716317,-53.95455245158198],[-71.61371613716136,-53.94779814250245],[-71.58131581315813,-53.941043833422924],[-71.55611556115561,-53.941043833422924],[-71.54171541715417,-53.957929606121745],[-71.5381153811538,-53.96806106974104],[-71.53451534515345,-53.97819253336034],[-71.52371523715237,-53.986635419709756],[-71.51651516515165,-53.99001257424952],[-71.5021150211502,-53.986635419709756],[-71.49851498514985,-53.97988111063022],[-71.49851498514985,-53.9714382242808],[-71.49491494914949,-53.961306760661515],[-71.48771487714876,-53.9528638743121],[-71.48411484114841,-53.94610956523257],[-71.48051480514805,-53.9427324106928],[-71.46251462514624,-53.941043833422924],[-71.45531455314553,-53.94610956523257],[-71.45171451714516,-53.957929606121745],[-71.45171451714516,-53.96974964701093],[-71.45531455314553,-53.97988111063022],[-71.44811448114481,-53.98325826516999],[-71.43731437314372,-54.003521192408584],[-71.41931419314193,-54.044047046885765],[-71.39771397713977,-54.062621396854475],[-71.37971379713797,-54.040669892346],[-71.3761137611376,-54.003521192408584],[-71.39771397713977,-53.976503956090454],[-71.3761137611376,-53.96974964701093],[-71.33651336513364,-53.976503956090454],[-71.30051300513004,-53.9917011515194],[-71.28251282512825,-54.01027550148811],[-71.27531275312752,-54.023784119647175],[-71.27171271712717,-54.05080135596529],[-71.26451264512644,-54.062621396854475],[-71.26091260912608,-54.07444143774365],[-71.27171271712717,-54.08457290136295],[-71.28251282512825,-54.09470436498225],[-71.28971289712896,-54.106524405871426],[-71.26811268112681,-54.101458674061774],[-71.25371253712537,-54.11159013768108],[-71.23931239312392,-54.1284759103799],[-71.23211232112321,-54.14705026034861],[-71.23571235712356,-54.15887030123778],[-71.23571235712356,-54.16562461031732],[-71.23211232112321,-54.17406749666674],[-71.22131221312213,-54.184198960286025],[-71.21051210512104,-54.184198960286025],[-71.21051210512104,-54.17575607393661],[-71.21771217712177,-54.163936033047435],[-71.2141121411214,-54.15042741488837],[-71.18891188911888,-54.09808151952201],[-71.1781117811178,-54.086261478632835],[-71.16371163711636,-54.086261478632835],[-71.16371163711636,-54.10483582860154],[-71.17091170911709,-54.15042741488837],[-71.16731167311673,-54.15380456942814],[-71.15651156511565,-54.15549314669802],[-71.14211142111421,-54.15211599215826],[-71.13851138511384,-54.143673105808844],[-71.13851138511384,-54.10314725133166],[-71.13131131311313,-54.082884324093065],[-71.11331113311132,-54.07106428320389],[-71.09171091710917,-54.064309974124356],[-71.07011070110701,-54.064309974124356],[-71.03051030510305,-54.086261478632835],[-71.01611016110161,-54.09470436498225],[-71.01251012510124,-54.101458674061774],[-71.01611016110161,-54.12341017857025],[-71.01971019710197,-54.148738837618495],[-71.0521105211052,-54.182510383016144],[-71.06291062910628,-54.20277331025474],[-71.04491044910449,-54.20108473298485],[-71.03411034110341,-54.19264184663544],[-71.01971019710197,-54.17069034212697],[-71.00531005310053,-54.16562461031732],[-70.9981099810998,-54.17406749666674],[-70.99450994509945,-54.189264692095676],[-71.00171001710017,-54.20277331025474],[-70.99450994509945,-54.21290477387403],[-70.99450994509945,-54.22303623749333],[-70.9981099810998,-54.23316770111263],[-71.01251012510124,-54.23654485565239],[-71.02691026910269,-54.23823343292227],[-71.02691026910269,-54.24161058746204],[-71.0089100891009,-54.25005347381145],[-70.99090990909909,-54.2652506692404],[-70.99090990909909,-54.27200497831993],[-71.0089100891009,-54.28044786466934],[-71.01971019710197,-54.28551359647899],[-71.03411034110341,-54.288890751018755],[-71.04851048510484,-54.29226790555852],[-71.06291062910628,-54.290579328288636],[-71.05571055710557,-54.29733363736817],[-71.04851048510484,-54.304087946447694],[-71.04131041310413,-54.314219410067],[-71.04491044910449,-54.32097371914652],[-71.05571055710557,-54.329416605495936],[-71.06291062910628,-54.32772802822606],[-71.07011070110701,-54.32097371914652],[-71.08091080910809,-54.31759656460676],[-71.09891098910988,-54.314219410067],[-71.13851138511384,-54.29902221463805],[-71.15651156511565,-54.29733363736817],[-71.14931149311492,-54.309153678257346],[-71.14211142111421,-54.31590798733688],[-71.11691116911169,-54.32772802822606],[-71.0881108811088,-54.331105182765825],[-71.08451084510845,-54.33448233730559],[-71.08451084510845,-54.34123664638512],[-71.08451084510845,-54.349679532734534],[-71.0881108811088,-54.35643384181407],[-71.09531095310953,-54.35981099635383],[-71.09891098910988,-54.36318815089359],[-71.10251102511025,-54.369942459973124],[-71.10611106111061,-54.37669676905266],[-71.11331113311132,-54.38007392359242],[-71.14931149311492,-54.38007392359242],[-71.15291152911529,-54.37500819178277],[-71.17091170911709,-54.349679532734534],[-71.1781117811178,-54.32772802822606],[-71.18531185311852,-54.33954806911524],[-71.19251192511925,-54.35981099635383],[-71.19251192511925,-54.366565305433355],[-71.20691206912069,-54.369942459973124],[-71.22131221312213,-54.36318815089359],[-71.23931239312392,-54.346302378194764],[-71.29691296912969,-54.31759656460676],[-71.33291332913329,-54.314219410067],[-71.34731347313473,-54.309153678257346],[-71.35811358113581,-54.29733363736817],[-71.34731347313473,-54.28551359647899],[-71.33651336513364,-54.28551359647899],[-71.32211322113221,-54.288890751018755],[-71.30771307713077,-54.290579328288636],[-71.30051300513004,-54.287202173748874],[-71.29331293312933,-54.27875928739946],[-71.2861128611286,-54.273693555589816],[-71.27171271712717,-54.270316401050046],[-71.26451264512644,-54.27200497831993],[-71.24651246512465,-54.27875928739946],[-71.23931239312392,-54.27707071012958],[-71.23571235712356,-54.270316401050046],[-71.23931239312392,-54.266939246510276],[-71.24291242912429,-54.26356209197051],[-71.24651246512465,-54.26018493743075],[-71.24291242912429,-54.25005347381145],[-71.22131221312213,-54.23823343292227],[-71.2141121411214,-54.22979054657286],[-71.22491224912248,-54.21965908295357],[-71.23211232112321,-54.2162819284138],[-71.23931239312392,-54.2162819284138],[-71.24651246512465,-54.22303623749333],[-71.26091260912608,-54.23992201019216],[-71.26451264512644,-54.246676319271685],[-71.27171271712717,-54.248364896541574],[-71.27891278912789,-54.25005347381145],[-71.30051300513004,-54.26187351470063],[-71.31491314913148,-54.2551192056211],[-71.32211322113221,-54.24161058746204],[-71.32931329313293,-54.22979054657286],[-71.32931329313293,-54.22472481476321],[-71.32571325713256,-54.21965908295357],[-71.32211322113221,-54.21290477387403],[-71.32571325713256,-54.206150464794504],[-71.33291332913329,-54.204461887524616],[-71.33651336513364,-54.206150464794504],[-71.340113401134,-54.21290477387403],[-71.34371343713437,-54.21965908295357],[-71.35451354513545,-54.244987742001804],[-71.37971379713797,-54.246676319271685],[-71.4121141211412,-54.23316770111263],[-71.43371433714337,-54.21459335114392],[-71.44451444514445,-54.185887537555914],[-71.430114301143,-54.17069034212697],[-71.39771397713977,-54.163936033047435],[-71.37251372513725,-54.15380456942814],[-71.38691386913868,-54.148738837618495],[-71.4121141211412,-54.15211599215826],[-71.41931419314193,-54.143673105808844],[-71.41571415714157,-54.13860737399919],[-71.4121141211412,-54.13185306491967],[-71.40851408514085,-54.126787333110016],[-71.40491404914049,-54.126787333110016],[-71.4121141211412,-54.11327871495095],[-71.41571415714157,-54.10990156041119],[-71.41931419314193,-54.11665586949072],[-71.43371433714337,-54.13523021945943],[-71.46251462514624,-54.13691879672931],[-71.49131491314913,-54.13523021945943],[-71.50931509315093,-54.14029595126908],[-71.50571505715057,-54.15042741488837],[-71.48771487714876,-54.15887030123778],[-71.48051480514805,-54.17069034212697],[-71.48771487714876,-54.17575607393661],[-71.5021150211502,-54.17913322847638],[-71.50931509315093,-54.187576114825795],[-71.49851498514985,-54.211216196604155],[-71.50931509315093,-54.2162819284138],[-71.53451534515345,-54.22303623749333],[-71.54171541715417,-54.231479123842746],[-71.54171541715417,-54.270316401050046],[-71.57411574115741,-54.2551192056211],[-71.5921159211592,-54.24329916473192],[-71.59571595715957,-54.22979054657286],[-71.5921159211592,-54.21290477387403],[-71.57771577715776,-54.20277331025474],[-71.55971559715597,-54.19433042390533],[-71.5489154891549,-54.182510383016144],[-71.58851588515884,-54.19433042390533],[-71.59931599315993,-54.1960190011752],[-71.60651606516065,-54.20108473298485],[-71.61371613716136,-54.22979054657286],[-71.62091620916209,-54.23654485565239],[-71.65331653316532,-54.231479123842746],[-71.6641166411664,-54.221347660223444],[-71.67131671316713,-54.206150464794504],[-71.68931689316892,-54.184198960286025],[-71.70011700117001,-54.16562461031732],[-71.68931689316892,-54.148738837618495],[-71.67131671316713,-54.13185306491967],[-71.65331653316532,-54.12003302403049],[-71.61371613716136,-54.106524405871426],[-71.60291602916028,-54.09977009679189],[-71.59571595715957,-54.08795005590271],[-71.59931599315993,-54.079507169553295],[-71.61371613716136,-54.07781859228342],[-71.63171631716317,-54.079507169553295]]],[[[-72.01692016920168,-54.20277331025474],[-72.0421204212042,-54.1960190011752],[-72.11052110521105,-54.15380456942814],[-72.09252092520924,-54.148738837618495],[-72.06012060120601,-54.145361683078725],[-72.0421204212042,-54.14029595126908],[-72.06012060120601,-54.13354164218955],[-72.08172081720816,-54.13185306491967],[-72.12492124921249,-54.13354164218955],[-72.11412114121141,-54.11665586949072],[-72.09252092520924,-54.11159013768108],[-72.0421204212042,-54.11327871495095],[-72.0529205292053,-54.10821298314131],[-72.07812078120782,-54.101458674061774],[-72.08532085320853,-54.09639294225212],[-72.09252092520924,-54.08795005590271],[-72.0961209612096,-54.06599855139424],[-72.10332103321034,-54.05755566504483],[-72.11772117721176,-54.059244242314705],[-72.13572135721357,-54.07275286047377],[-72.1681216812168,-54.10314725133166],[-72.18612186121861,-54.10483582860154],[-72.20412204122042,-54.09132721044248],[-72.22212222122221,-54.07275286047377],[-72.22932229322292,-54.05755566504483],[-72.20412204122042,-54.00520976967846],[-72.20412204122042,-53.996766883329045],[-72.22932229322292,-53.9917011515194],[-72.24012240122401,-53.97988111063022],[-72.24372243722436,-53.96468391520128],[-72.2581225812258,-53.94442098796269],[-72.2581225812258,-53.92922379253374],[-72.23292232922329,-53.92584663799397],[-72.12852128521286,-53.934289524343384],[-72.11772117721176,-53.939355256153036],[-72.11052110521105,-53.95117529704221],[-72.10692106921069,-53.962995337931396],[-72.09972099720997,-53.97312680155069],[-72.09252092520924,-53.97988111063022],[-72.07812078120782,-53.98325826516999],[-72.06372063720637,-53.98325826516999],[-72.05652056520564,-53.976503956090454],[-72.05652056520564,-53.96806106974104],[-72.06732067320672,-53.959618183391626],[-72.08172081720816,-53.94779814250245],[-72.07092070920709,-53.94779814250245],[-72.06012060120601,-53.94948671977234],[-72.04932049320493,-53.95455245158198],[-72.0421204212042,-53.961306760661515],[-72.03852038520385,-53.95117529704221],[-72.03852038520385,-53.9427324106928],[-72.03852038520385,-53.934289524343384],[-72.03132031320312,-53.924158060724096],[-72.02052020520205,-53.91740375164456],[-72.00972009720097,-53.91233801983491],[-72.00252002520025,-53.90220655621562],[-72.00972009720097,-53.88700936078668],[-71.99531995319953,-53.88532078351679],[-71.98451984519845,-53.88700936078668],[-71.95931959319593,-53.8937636698662],[-71.96651966519664,-53.88363220624691],[-71.97371973719737,-53.876877897167375],[-71.98451984519845,-53.87012358808785],[-71.99531995319953,-53.8650578562782],[-71.94491944919449,-53.85323781538902],[-71.90531905319052,-53.861680701738436],[-71.86571865718656,-53.88700936078668],[-71.82971829718296,-53.920780906184326],[-71.84051840518404,-53.93597810161327],[-71.85131851318513,-53.957929606121745],[-71.85131851318513,-53.97481537882057],[-71.82971829718296,-53.96974964701093],[-71.82971829718296,-53.96468391520128],[-71.80811808118081,-53.934289524343384],[-71.79731797317973,-53.9038951334855],[-71.79371793717937,-53.897140824405966],[-71.78291782917829,-53.897140824405966],[-71.76491764917648,-53.90727228802527],[-71.75771757717577,-53.898829401675854],[-71.74331743317433,-53.897140824405966],[-71.72891728917288,-53.898829401675854],[-71.69651696516965,-53.91233801983491],[-71.66771667716677,-53.91740375164456],[-71.65331653316532,-53.92584663799397],[-71.71451714517144,-53.96806106974104],[-71.73611736117361,-53.97819253336034],[-71.77931779317792,-53.98832399697963],[-71.79371793717937,-53.99845546059893],[-71.78651786517865,-54.00520976967846],[-71.76131761317613,-54.003521192408584],[-71.7181171811718,-53.98494684243987],[-71.70011700117001,-53.98494684243987],[-71.69291692916929,-54.00689834694835],[-71.70371703717036,-54.0305384287267],[-71.72171721717217,-54.03729273780623],[-71.74691746917469,-54.040669892346],[-71.76851768517685,-54.05080135596529],[-71.75771757717577,-54.05080135596529],[-71.74691746917469,-54.05248993323518],[-71.73611736117361,-54.05417851050506],[-71.72891728917288,-54.05755566504483],[-71.73611736117361,-54.079507169553295],[-71.73971739717396,-54.086261478632835],[-71.7181171811718,-54.086261478632835],[-71.68931689316892,-54.07613001501353],[-71.6641166411664,-54.07275286047377],[-71.65331653316532,-54.0896386331726],[-71.66051660516605,-54.10314725133166],[-71.71451714517144,-54.14705026034861],[-71.76491764917648,-54.163936033047435],[-71.80811808118081,-54.148738837618495],[-71.86931869318693,-54.086261478632835],[-71.90891908919089,-54.05755566504483],[-71.9269192691927,-54.038981315076114],[-71.92331923319233,-54.0305384287267],[-71.91971919719197,-54.02547269691705],[-71.91971919719197,-54.01702981056764],[-71.9269192691927,-54.00858692421823],[-71.93771937719377,-54.003521192408584],[-71.94851948519485,-54.00689834694835],[-71.95211952119521,-54.01534123329776],[-71.95211952119521,-54.02547269691705],[-71.95211952119521,-54.03729273780623],[-71.94851948519485,-54.05080135596529],[-71.94491944919449,-54.05755566504483],[-71.93771937719377,-54.064309974124356],[-71.93411934119341,-54.07275286047377],[-71.91971919719197,-54.10821298314131],[-71.9161191611916,-54.11665586949072],[-71.89451894518945,-54.13016448764978],[-71.83691836918369,-54.16055887850767],[-71.82251822518225,-54.1774446512065],[-71.81171811718117,-54.19433042390533],[-71.79731797317973,-54.20952761933427],[-71.75771757717577,-54.21965908295357],[-71.74331743317433,-54.231479123842746],[-71.74331743317433,-54.246676319271685],[-71.76131761317613,-54.26356209197051],[-71.77211772117721,-54.25849636016086],[-71.81891818918189,-54.2551192056211],[-71.83691836918369,-54.25005347381145],[-71.84051840518404,-54.26356209197051],[-71.84771847718477,-54.27200497831993],[-71.85851858518585,-54.27875928739946],[-71.86931869318693,-54.283825019209104],[-71.86211862118621,-54.288890751018755],[-71.82971829718296,-54.29733363736817],[-71.85131851318513,-54.309153678257346],[-71.85851858518585,-54.310842255527234],[-71.85851858518585,-54.31759656460676],[-71.85131851318513,-54.32097371914652],[-71.82971829718296,-54.331105182765825],[-71.84771847718477,-54.33785949184535],[-71.86571865718656,-54.33448233730559],[-71.88731887318873,-54.329416605495936],[-71.90531905319052,-54.32603945095617],[-71.94851948519485,-54.32772802822606],[-71.970119701197,-54.32603945095617],[-71.98811988119881,-54.31759656460676],[-71.96291962919629,-54.29733363736817],[-71.93771937719377,-54.246676319271685],[-71.90531905319052,-54.22979054657286],[-71.93051930519304,-54.21290477387403],[-71.95931959319593,-54.204461887524616],[-72.01692016920168,-54.20277331025474]]],[[[-70.45450454504545,-53.611771265795795],[-70.46170461704617,-53.64385423392356],[-70.47250472504724,-53.66580573843204],[-70.46890468904688,-53.69113439748028],[-70.44370443704436,-53.76205464281536],[-70.4221042210422,-53.80258049729254],[-70.43290432904328,-53.82622057907089],[-70.41850418504184,-53.871812165357724],[-70.45090450904509,-53.88700936078668],[-70.44370443704436,-53.90558371075538],[-70.42570425704257,-53.920780906184326],[-70.40770407704076,-53.92753521526386],[-70.39690396903968,-53.93597810161327],[-70.36090360903609,-53.97819253336034],[-70.33570335703357,-54.00689834694835],[-70.34290342903428,-54.02884985145682],[-70.3861038610386,-54.05080135596529],[-70.44010440104401,-54.06093281958459],[-70.4941049410494,-54.03391558326646],[-70.53370533705336,-54.003521192408584],[-70.60930609306092,-53.94779814250245],[-70.64890648906488,-53.939355256153036],[-70.67050670506704,-53.95117529704221],[-70.67050670506704,-53.96806106974104],[-70.63450634506344,-54.001832615138696],[-70.59490594905948,-54.03222700599659],[-70.56970569705696,-54.064309974124356],[-70.56610566105661,-54.07781859228342],[-70.56610566105661,-54.08795005590271],[-70.57330573305732,-54.09470436498225],[-70.5841058410584,-54.09977009679189],[-70.5481054810548,-54.12003302403049],[-70.53730537305373,-54.13354164218955],[-70.53370533705336,-54.15718172396791],[-70.53730537305373,-54.1673131875872],[-70.54450544505444,-54.17406749666674],[-70.5481054810548,-54.184198960286025],[-70.5481054810548,-54.1960190011752],[-70.54450544505444,-54.20108473298485],[-70.53370533705336,-54.207839042064386],[-70.52290522905228,-54.21290477387403],[-70.5121051210512,-54.21459335114392],[-70.54090540905409,-54.221347660223444],[-70.59490594905948,-54.21459335114392],[-70.68490684906848,-54.187576114825795],[-70.82170821708216,-54.11327871495095],[-70.80730807308073,-54.09639294225212],[-70.82890828908289,-54.07613001501353],[-70.86490864908649,-54.05248993323518],[-70.8829088290883,-54.02716127418694],[-70.88650886508864,-53.99845546059893],[-70.89730897308972,-53.94779814250245],[-70.89730897308972,-53.93091236980362],[-70.88650886508864,-53.920780906184326],[-70.86490864908649,-53.920780906184326],[-70.89370893708937,-53.89038651532644],[-70.90090900909009,-53.87350074262761],[-70.87930879308793,-53.8650578562782],[-70.85770857708577,-53.85999212446855],[-70.8829088290883,-53.84310635176972],[-70.85410854108541,-53.83972919722996],[-70.82170821708216,-53.836352042690194],[-70.78930789307893,-53.83128631088054],[-70.77490774907749,-53.82453200180102],[-70.71730717307173,-53.84310635176972],[-70.67050670506704,-53.84986066084925],[-70.63450634506344,-53.87350074262761],[-70.60570605706057,-53.8650578562782],[-70.60210602106021,-53.82959773361066],[-70.63090630906309,-53.814400538181715],[-70.69930699306992,-53.7873833018636],[-70.70650706507065,-53.746857447386404],[-70.70290702907029,-53.74010313830688],[-70.69930699306992,-53.736725983767116],[-70.69930699306992,-53.731660251957464],[-70.70290702907029,-53.72490594287794],[-70.70650706507065,-53.72152878833817],[-70.710107101071,-53.71477447925864],[-70.71370713707137,-53.70633159290922],[-70.71370713707137,-53.70126586109957],[-70.69930699306992,-53.69113439748028],[-70.66330663306633,-53.68606866567063],[-70.62730627306273,-53.66074000662239],[-70.60930609306092,-53.653985697542865],[-70.56610566105661,-53.62527988395485],[-70.5481054810548,-53.59657407036685],[-70.5481054810548,-53.57631114312826],[-70.53730537305373,-53.56111394769931],[-70.5121051210512,-53.55773679315955],[-70.48690486904869,-53.56111394769931],[-70.46890468904688,-53.56617967950896],[-70.46170461704617,-53.57631114312826],[-70.45450454504545,-53.611771265795795]]],[[[-72.52812528125281,-54.07613001501353],[-72.54252542525425,-54.09977009679189],[-72.57492574925749,-54.09470436498225],[-72.60732607326072,-54.07613001501353],[-72.63252632526324,-54.05755566504483],[-72.62532625326253,-54.04911277869542],[-72.62172621726216,-54.03729273780623],[-72.62532625326253,-54.02716127418694],[-72.6361263612636,-54.023784119647175],[-72.64332643326433,-54.02716127418694],[-72.65052650526505,-54.03560416053635],[-72.65412654126541,-54.044047046885765],[-72.65772657726576,-54.05080135596529],[-72.67932679326793,-54.06937570593401],[-72.69372693726937,-54.07613001501353],[-72.70452704527045,-54.079507169553295],[-72.7081270812708,-54.081195746823184],[-72.7081270812708,-54.086261478632835],[-72.71172711727117,-54.09132721044248],[-72.71172711727117,-54.09639294225212],[-72.7081270812708,-54.10314725133166],[-72.71532715327153,-54.10314725133166],[-72.72252722527224,-54.101458674061774],[-72.72612726127261,-54.09977009679189],[-72.78732787327873,-54.09301578771236],[-72.79452794527946,-54.09808151952201],[-72.81612816128161,-54.126787333110016],[-72.84132841328413,-54.13354164218955],[-72.89892898928989,-54.121721601300365],[-72.92772927729277,-54.12003302403049],[-72.89532895328954,-54.11327871495095],[-72.88452884528844,-54.10483582860154],[-72.87732877328773,-54.09301578771236],[-72.88452884528844,-54.08457290136295],[-72.89532895328954,-54.08795005590271],[-72.90972909729096,-54.09470436498225],[-72.92052920529206,-54.09977009679189],[-72.9241292412924,-54.09639294225212],[-72.93492934929348,-54.08795005590271],[-72.93852938529385,-54.086261478632835],[-72.94212942129421,-54.086261478632835],[-72.95652956529565,-54.09132721044248],[-72.98532985329852,-54.09639294225212],[-72.99612996129962,-54.09639294225212],[-73.01053010530104,-54.09301578771236],[-73.02853028530285,-54.07444143774365],[-73.00333003330033,-54.064309974124356],[-72.93492934929348,-54.05755566504483],[-72.82692826928269,-54.06768712866412],[-72.79452794527946,-54.05755566504483],[-72.8809288092881,-54.03391558326646],[-72.88452884528844,-54.023784119647175],[-72.85932859328592,-54.01702981056764],[-72.7621276212762,-54.0305384287267],[-72.77292772927728,-54.01702981056764],[-72.80892808928088,-54.00520976967846],[-72.82332823328233,-53.996766883329045],[-72.80892808928088,-53.99507830605917],[-72.7981279812798,-53.9917011515194],[-72.78732787327873,-53.98494684243987],[-72.77652776527765,-53.976503956090454],[-72.84132841328413,-53.959618183391626],[-72.85212852128521,-53.95455245158198],[-72.84132841328413,-53.94779814250245],[-72.78372783727836,-53.92753521526386],[-72.7549275492755,-53.90220655621562],[-72.74412744127441,-53.8937636698662],[-72.72252722527224,-53.88700936078668],[-72.67932679326793,-53.878566474437264],[-72.66132661326613,-53.871812165357724],[-72.64692646926468,-53.85999212446855],[-72.74052740527405,-53.876877897167375],[-72.76932769327694,-53.87350074262761],[-72.74412744127441,-53.861680701738436],[-72.73332733327332,-53.85323781538902],[-72.72612726127261,-53.838040619960076],[-72.74772747727476,-53.841417774499845],[-72.78732787327873,-53.858303547198666],[-72.80892808928088,-53.85999212446855],[-72.78372783727836,-53.83128631088054],[-72.78732787327873,-53.819466269991366],[-72.80172801728017,-53.81777769272148],[-72.81612816128161,-53.82115484726125],[-72.8449284492845,-53.841417774499845],[-72.89892898928989,-53.86674643354808],[-72.92052920529206,-53.87350074262761],[-72.94212942129421,-53.86843501081796],[-72.95652956529565,-53.858303547198666],[-72.96372963729637,-53.851549238119134],[-73.0069300693007,-53.87350074262761],[-73.01773017730177,-53.861680701738436],[-73.02133021330214,-53.82453200180102],[-73.03933039330393,-53.80764622910219],[-73.05733057330573,-53.812711960911834],[-73.06813068130681,-53.83128631088054],[-73.07173071730718,-53.856614969928785],[-73.07533075330753,-53.875189319897494],[-73.10053100531005,-53.91064944256503],[-73.10413104131041,-53.934289524343384],[-73.09333093330933,-53.95117529704221],[-73.04653046530466,-53.97312680155069],[-73.03573035730356,-53.986635419709756],[-73.04293042930429,-53.99845546059893],[-73.06093060930608,-54.01702981056764],[-73.08253082530825,-54.03222700599659],[-73.0969309693097,-54.03729273780623],[-73.10413104131041,-54.03560416053635],[-73.10773107731077,-54.0305384287267],[-73.11493114931149,-54.020406965107405],[-73.12213122131222,-54.01365265602787],[-73.12933129331293,-54.01196407875799],[-73.13653136531364,-54.01196407875799],[-73.14373143731437,-54.01027550148811],[-73.19053190531905,-53.9917011515194],[-73.20493204932049,-53.99001257424952],[-73.27333273332734,-53.98325826516999],[-73.30933309333093,-53.97312680155069],[-73.3381333813338,-53.95455245158198],[-73.32373323733236,-53.95117529704221],[-73.29493294932949,-53.94610956523257],[-73.28413284132841,-53.941043833422924],[-73.26613266132661,-53.93260094707351],[-73.26253262532624,-53.92584663799397],[-73.26613266132661,-53.919092328914445],[-73.26253262532624,-53.90727228802527],[-73.25173251732517,-53.90220655621562],[-73.24093240932409,-53.900517978945736],[-73.23733237332372,-53.897140824405966],[-73.24813248132482,-53.88700936078668],[-73.26973269732697,-53.88025505170714],[-73.28053280532805,-53.88194362897703],[-73.28773287732876,-53.88025505170714],[-73.29133291332913,-53.86336927900831],[-73.29493294932949,-53.851549238119134],[-73.31293312933128,-53.84479492903961],[-73.31653316533165,-53.834663465420306],[-73.30933309333093,-53.82453200180102],[-73.29133291332913,-53.819466269991366],[-73.27693276932769,-53.81777769272148],[-73.26973269732697,-53.814400538181715],[-73.2589325893259,-53.79751476548289],[-73.25173251732517,-53.78569472459371],[-73.2589325893259,-53.773874683704534],[-73.26973269732697,-53.76374322008523],[-73.28053280532805,-53.756988911005706],[-73.29493294932949,-53.751923179196055],[-73.30933309333093,-53.750234601926174],[-73.30933309333093,-53.74179171557676],[-73.2589325893259,-53.72659452014781],[-73.24453244532445,-53.716463056528525],[-73.26253262532624,-53.70126586109957],[-73.27333273332734,-53.70126586109957],[-73.3021330213302,-53.713085901988755],[-73.31293312933128,-53.71477447925864],[-73.36333363333632,-53.713085901988755],[-73.53253532535325,-53.751923179196055],[-73.590135901359,-53.75530033373582],[-73.56493564935649,-53.74010313830688],[-73.51813518135181,-53.72152878833817],[-73.48573485734858,-53.70126586109957],[-73.49653496534965,-53.68100293386098],[-73.49653496534965,-53.66580573843204],[-73.52533525335252,-53.66411716116215],[-73.56493564935649,-53.66749431570192],[-73.58653586535866,-53.66411716116215],[-73.59733597335973,-53.65905142935251],[-73.60813608136081,-53.65736285208263],[-73.61533615336153,-53.652297120272976],[-73.61893618936189,-53.63709992484404],[-73.61893618936189,-53.62359130668497],[-73.61533615336153,-53.61345984306568],[-73.61173611736118,-53.606705533986144],[-73.60453604536045,-53.59826264763673],[-73.58293582935829,-53.58306545220779],[-73.56493564935649,-53.57968829766802],[-73.49653496534965,-53.588131184017435],[-73.48213482134821,-53.588131184017435],[-73.47133471334713,-53.5813768749379],[-73.45693456934569,-53.569556834048726],[-73.44613446134461,-53.564491102239074],[-73.43533435334353,-53.5628025249692],[-73.4209342093421,-53.564491102239074],[-73.36693366933669,-53.57799972039814],[-73.33453334533345,-53.588131184017435],[-73.32373323733236,-53.60332837944638],[-73.31653316533165,-53.61852557487532],[-73.3021330213302,-53.63372277030427],[-73.28053280532805,-53.64554281119345],[-73.26253262532624,-53.653985697542865],[-73.20493204932049,-53.66580573843204],[-72.97452974529745,-53.669182892971804],[-72.95292952929529,-53.66411716116215],[-72.94572945729458,-53.647231388463325],[-72.960129601296,-53.63372277030427],[-72.97812978129781,-53.63709992484404],[-72.99612996129962,-53.647231388463325],[-73.01053010530104,-53.653985697542865],[-73.06093060930608,-53.652297120272976],[-73.08253082530825,-53.648919965733214],[-73.08253082530825,-53.63709992484404],[-73.03573035730356,-53.59995122490662],[-73.02853028530285,-53.584754029477665],[-73.03933039330393,-53.591508338557205],[-73.04653046530466,-53.59657407036685],[-73.05733057330573,-53.59826264763673],[-73.07173071730718,-53.59826264763673],[-73.08253082530825,-53.60163980217649],[-73.08973089730897,-53.61008268852591],[-73.0969309693097,-53.626968461224735],[-73.11493114931149,-53.63878850211391],[-73.13653136531364,-53.64554281119345],[-73.15813158131581,-53.648919965733214],[-73.20853208532085,-53.64554281119345],[-73.2589325893259,-53.63541134757415],[-73.27693276932769,-53.626968461224735],[-73.29133291332913,-53.606705533986144],[-73.28773287732876,-53.589819761287316],[-73.26253262532624,-53.55773679315955],[-73.31653316533165,-53.554359638619786],[-73.34173341733417,-53.54760532954025],[-73.41373413734136,-53.493570856904],[-73.4209342093421,-53.47837366147506],[-73.4209342093421,-53.47161935239553],[-73.4209342093421,-53.466553620585884],[-73.41373413734136,-53.464865043315996],[-73.39933399333992,-53.463176466046114],[-73.38853388533884,-53.46148788877623],[-73.34533345333453,-53.46824219785576],[-73.29853298532984,-53.48343939328471],[-73.27693276932769,-53.493570856904],[-73.26253262532624,-53.51045662960283],[-73.2229322293223,-53.493570856904],[-73.16893168931689,-53.49863658871365],[-73.07893078930789,-53.53071955684142],[-73.08973089730897,-53.5138337841426],[-73.10413104131041,-53.505390897793184],[-73.11853118531185,-53.49863658871365],[-73.1329313293133,-53.488505125094356],[-73.13653136531364,-53.47330792966541],[-73.1329313293133,-53.4547335796967],[-73.13653136531364,-53.439536384267754],[-73.15093150931509,-53.43447065245811],[-73.17253172531726,-53.43109349791834],[-73.1761317613176,-53.42096203429905],[-73.16173161731616,-53.41083057067975],[-73.14013140131401,-53.40745341613999],[-73.11493114931149,-53.405764838870105],[-73.08973089730897,-53.400699107060454],[-73.05733057330573,-53.387190488901396],[-73.03933039330393,-53.38550191163151],[-73.03213032130321,-53.39056764344116],[-73.03573035730356,-53.42096203429905],[-73.03933039330393,-53.424339188838815],[-73.03933039330393,-53.429404920648466],[-73.03933039330393,-53.43447065245811],[-73.02133021330214,-53.45811073423647],[-73.01773017730177,-53.464865043315996],[-73.01053010530104,-53.488505125094356],[-73.00333003330033,-53.493570856904],[-72.99252992529925,-53.485127970554586],[-72.98892988929889,-53.464865043315996],[-72.98892988929889,-53.44797927061717],[-72.99252992529925,-53.43278207518823],[-73.00333003330033,-53.422650611568926],[-73.01413014130141,-53.41420772521951],[-73.01413014130141,-53.40745341613999],[-72.98532985329852,-53.41083057067975],[-72.93492934929348,-53.43615922972799],[-72.91332913329133,-53.42771634337858],[-72.91332913329133,-53.45135642515694],[-72.91692916929169,-53.47161935239553],[-72.92772927729277,-53.49019370236424],[-72.93852938529385,-53.507079475063065],[-72.94212942129421,-53.51889951595224],[-72.93492934929348,-53.527342402301656],[-72.93132931329313,-53.53071955684142],[-72.92772927729277,-53.527342402301656],[-72.92052920529206,-53.51552236141248],[-72.90972909729096,-53.51045662960283],[-72.89892898928989,-53.51045662960283],[-72.88452884528844,-53.51721093868236],[-72.87372873728737,-53.53409671138119],[-72.87732877328773,-53.550982484080016],[-72.88812888128881,-53.569556834048726],[-72.89532895328954,-53.59995122490662],[-72.90972909729096,-53.61345984306568],[-72.91332913329133,-53.62359130668497],[-72.90972909729096,-53.632034193034386],[-72.90612906129061,-53.6404770793838],[-72.89172891728917,-53.653985697542865],[-72.88812888128881,-53.67256004751157],[-72.88452884528844,-53.68100293386098],[-72.87372873728737,-53.68100293386098],[-72.86292862928629,-53.67087147024169],[-72.86652866528665,-53.65905142935251],[-72.87372873728737,-53.63709992484404],[-72.86652866528665,-53.626968461224735],[-72.85932859328592,-53.62021415214521],[-72.84852848528485,-53.61514842033556],[-72.8449284492845,-53.61008268852591],[-72.84132841328413,-53.59826264763673],[-72.82332823328233,-53.57462256585838],[-72.81612816128161,-53.564491102239074],[-72.81612816128161,-53.53916244319083],[-72.82332823328233,-53.52396524776189],[-72.83772837728377,-53.51045662960283],[-72.84852848528485,-53.485127970554586],[-72.86292862928629,-53.46993077512565],[-72.86652866528665,-53.45811073423647],[-72.85932859328592,-53.45304500242682],[-72.8449284492845,-53.45979931150635],[-72.82332823328233,-53.4749965069353],[-72.80892808928088,-53.47837366147506],[-72.79452794527946,-53.47837366147506],[-72.78012780127801,-53.48343939328471],[-72.77652776527765,-53.49863658871365],[-72.76932769327694,-53.505390897793184],[-72.75852758527584,-53.51045662960283],[-72.73332733327332,-53.51721093868236],[-72.74412744127441,-53.53747386592096],[-72.74772747727476,-53.544228175000484],[-72.72972729727297,-53.554359638619786],[-72.69012690126901,-53.584754029477665],[-72.67932679326793,-53.59826264763673],[-72.67572675726757,-53.611771265795795],[-72.67572675726757,-53.62190272941509],[-72.67932679326793,-53.632034193034386],[-72.69012690126901,-53.64385423392356],[-72.69732697326972,-53.65736285208263],[-72.69012690126901,-53.66749431570192],[-72.67932679326793,-53.67256004751157],[-72.6721267212672,-53.67087147024169],[-72.66852668526685,-53.669182892971804],[-72.64332643326433,-53.67087147024169],[-72.63252632526324,-53.66749431570192],[-72.62892628926289,-53.66074000662239],[-72.6361263612636,-53.59826264763673],[-72.64332643326433,-53.57799972039814],[-72.65412654126541,-53.56111394769931],[-72.6721267212672,-53.544228175000484],[-72.6721267212672,-53.53747386592096],[-72.65412654126541,-53.53747386592096],[-72.55692556925568,-53.57799972039814],[-72.5461254612546,-53.588131184017435],[-72.53172531725316,-53.591508338557205],[-72.49932499324993,-53.57631114312826],[-72.48132481324812,-53.57124541131861],[-72.46332463324633,-53.57462256585838],[-72.44532445324452,-53.58306545220779],[-72.43812438124381,-53.59488549309697],[-72.44532445324452,-53.61008268852591],[-72.43812438124381,-53.61514842033556],[-72.41652416524165,-53.62190272941509],[-72.39852398523985,-53.63372277030427],[-72.40212402124021,-53.650608543003095],[-72.41652416524165,-53.65567427481274],[-72.4561245612456,-53.653985697542865],[-72.47412474124741,-53.66074000662239],[-72.48492484924849,-53.674248624781455],[-72.48492484924849,-53.68775724294051],[-72.47412474124741,-53.69788870655981],[-72.43812438124381,-53.70633159290922],[-72.43452434524345,-53.71477447925864],[-72.45252452524525,-53.74179171557676],[-72.43812438124381,-53.74854602465629],[-72.42732427324273,-53.74179171557676],[-72.420124201242,-53.7282830974177],[-72.40932409324093,-53.72152878833817],[-72.40572405724056,-53.71477447925864],[-72.39132391323913,-53.6995772838297],[-72.37332373323733,-53.68775724294051],[-72.36612366123661,-53.69113439748028],[-72.34812348123481,-53.709708747448985],[-72.23292232922329,-53.7282830974177],[-72.27252272522725,-53.75867748827559],[-72.26892268922688,-53.76374322008523],[-72.22572225722257,-53.767120374625],[-72.18612186121861,-53.7772518382443],[-72.15372153721538,-53.795826188213006],[-72.13932139321393,-53.79751476548289],[-72.15732157321573,-53.80764622910219],[-72.20052200522005,-53.814400538181715],[-72.21852218522184,-53.82115484726125],[-72.22932229322292,-53.836352042690194],[-72.22212222122221,-53.851549238119134],[-72.22932229322292,-53.87012358808785],[-72.25092250922509,-53.876877897167375],[-72.27612276122761,-53.871812165357724],[-72.29772297722977,-53.861680701738436],[-72.330123301233,-53.83972919722996],[-72.34812348123481,-53.83128631088054],[-72.36972369723696,-53.83128631088054],[-72.39132391323913,-53.84479492903961],[-72.35172351723517,-53.85999212446855],[-72.35532355323552,-53.878566474437264],[-72.34452344523444,-53.91064944256503],[-72.35172351723517,-53.92753521526386],[-72.38772387723877,-53.9038951334855],[-72.40932409324093,-53.8937636698662],[-72.420124201242,-53.897140824405966],[-72.41652416524165,-53.91740375164456],[-72.40572405724056,-53.93091236980362],[-72.39132391323913,-53.941043833422924],[-72.36972369723696,-53.94779814250245],[-72.38052380523804,-53.959618183391626],[-72.39132391323913,-53.962995337931396],[-72.40572405724056,-53.962995337931396],[-72.420124201242,-53.96974964701093],[-72.3841238412384,-53.981569687900105],[-72.32292322923229,-53.99001257424952],[-72.31932319323192,-54.001832615138696],[-72.31932319323192,-54.018718387837524],[-72.330123301233,-54.03391558326646],[-72.34452344523444,-54.044047046885765],[-72.35532355323552,-54.04573562415565],[-72.36612366123661,-54.044047046885765],[-72.38052380523804,-54.040669892346],[-72.38772387723877,-54.03391558326646],[-72.39852398523985,-54.03222700599659],[-72.42372423724237,-54.04235846961588],[-72.43452434524345,-54.044047046885765],[-72.45252452524525,-54.038981315076114],[-72.45972459724597,-54.02716127418694],[-72.45252452524525,-53.99001257424952],[-72.47052470524704,-53.99507830605917],[-72.48492484924849,-53.996766883329045],[-72.50292502925029,-53.9917011515194],[-72.51372513725137,-53.98325826516999],[-72.51732517325173,-53.99507830605917],[-72.52452524525245,-54.00858692421823],[-72.53172531725316,-54.023784119647175],[-72.51732517325173,-54.0305384287267],[-72.51732517325173,-54.04573562415565],[-72.52812528125281,-54.07613001501353]]],[[[-73.20853208532085,-53.3179588208362],[-73.17973179731797,-53.319647398106085],[-73.14013140131401,-53.3280902844555],[-73.10413104131041,-53.341598902614564],[-73.08973089730897,-53.35510752077362],[-73.10773107731077,-53.36861613893268],[-73.19053190531905,-53.35848467531339],[-73.21573215732157,-53.361861829853154],[-73.23013230132301,-53.36861613893268],[-73.24813248132482,-53.36523898439292],[-73.27693276932769,-53.35341894350374],[-73.28773287732876,-53.341598902614564],[-73.29493294932949,-53.3382217480748],[-73.29853298532984,-53.341598902614564],[-73.3021330213302,-53.34666463442421],[-73.30933309333093,-53.35004178896398],[-73.31653316533165,-53.35341894350374],[-73.34533345333453,-53.343287479884445],[-73.3741337413374,-53.324713129915736],[-73.40293402934029,-53.30276162540726],[-73.4209342093421,-53.282498698168666],[-73.43533435334353,-53.29431873905784],[-73.44613446134461,-53.30782735721691],[-73.45693456934569,-53.319647398106085],[-73.47853478534785,-53.324713129915736],[-73.56133561335614,-53.32302455264585],[-73.58293582935829,-53.3179588208362],[-73.60093600936008,-53.30951593448679],[-73.60813608136081,-53.299384470867494],[-73.60453604536045,-53.29263016178796],[-73.57933579335793,-53.29094158451808],[-73.53253532535325,-53.299384470867494],[-73.50733507335073,-53.301073048137376],[-73.49653496534965,-53.29094158451808],[-73.51453514535145,-53.284187275438555],[-73.55773557735577,-53.277432966359015],[-73.57933579335793,-53.27067865727949],[-73.590135901359,-53.257170039120425],[-73.60093600936008,-53.241972843691485],[-73.60093600936008,-53.22846422553242],[-73.58293582935829,-53.22170991645289],[-73.59733597335973,-53.218332761913125],[-73.60453604536045,-53.21157845283359],[-73.61173611736118,-53.2014469892143],[-73.61173611736118,-53.18793837105524],[-73.62253622536225,-53.191315525595],[-73.6369363693637,-53.20482414375406],[-73.64413644136441,-53.20820129829383],[-73.65493654936549,-53.20651272102395],[-73.65853658536585,-53.20313556648418],[-73.66213662136622,-53.19638125740465],[-73.66573665736657,-53.18793837105524],[-73.69453694536945,-53.15416682565758],[-73.70893708937089,-53.1423467847684],[-73.73053730537305,-53.132215321149104],[-73.72693726937268,-53.1423467847684],[-73.7161371613716,-53.16767544381664],[-73.74493744937449,-53.16598686654676],[-73.7629376293763,-53.15078967111781],[-73.76653766537665,-53.12883816660934],[-73.77013770137701,-53.10857523937075],[-73.77733777337772,-53.10857523937075],[-73.82053820538205,-53.113640971180395],[-73.83493834938349,-53.10857523937075],[-73.86013860138601,-53.07818084851286],[-73.88173881738817,-53.05791792127427],[-73.88533885338853,-53.05791792127427],[-73.88533885338853,-53.0646722303538],[-73.89253892538925,-53.07142653943333],[-73.91053910539105,-53.079869425782746],[-73.92133921339213,-53.079869425782746],[-73.93933939339394,-53.07818084851286],[-74.03654036540365,-53.056229344004386],[-74.05814058140581,-53.05791792127427],[-74.04734047340473,-53.06636080762368],[-74.0149401494015,-53.08493515759239],[-74.02214022140221,-53.08831231213215],[-74.02934029340292,-53.09168946667192],[-74.04734047340473,-53.09168946667192],[-74.05454054540544,-53.093378043941804],[-74.06174061740617,-53.1035095075611],[-74.06894068940689,-53.10519808483098],[-74.08694086940869,-53.10519808483098],[-74.0941409414094,-53.10182093029122],[-74.10134101341013,-53.095066621211686],[-74.11214112141121,-53.09000088940204],[-74.11934119341193,-53.09168946667192],[-74.130141301413,-53.09675519848157],[-74.1409414094141,-53.10013235302134],[-74.16974169741697,-53.09000088940204],[-74.22014220142201,-53.04778645765497],[-74.24894248942489,-53.03765499403568],[-74.23454234542345,-53.05791792127427],[-74.23094230942309,-53.073115116703214],[-74.23814238142381,-53.08324658032251],[-74.26334263342633,-53.09168946667192],[-74.28854288542885,-53.08493515759239],[-74.28854288542885,-53.08662373486227],[-74.28854288542885,-53.09675519848157],[-74.29214292142922,-53.10013235302134],[-74.30654306543065,-53.098443775751456],[-74.31734317343174,-53.09675519848157],[-74.32814328143282,-53.09168946667192],[-74.33174331743317,-53.08155800305263],[-74.32814328143282,-53.069737962163444],[-74.32454324543245,-53.05960649854415],[-74.32454324543245,-53.04947503492485],[-74.33174331743317,-53.03765499403568],[-74.33534335343353,-53.032589262226026],[-74.34614346143461,-53.02921210768626],[-74.35334353343534,-53.030900684956144],[-74.36054360543605,-53.04103214857544],[-74.36414364143641,-53.04609788038509],[-74.3821438214382,-53.04272072584532],[-74.39654396543965,-53.035966416765795],[-74.40734407344073,-53.02921210768626],[-74.40734407344073,-53.0258349531465],[-74.40374403744038,-53.01908064406697],[-74.40374403744038,-53.010637757717554],[-74.41454414544145,-53.00388344863802],[-74.41094410944109,-52.99544056228861],[-74.40734407344073,-52.98699767593919],[-74.40734407344073,-52.968423325970484],[-74.42534425344253,-52.973489057780135],[-74.50094500945009,-52.968423325970484],[-74.5081450814508,-52.9667347487006],[-74.51534515345153,-52.96166901689095],[-74.51894518945188,-52.95829186235119],[-74.51534515345153,-52.94478324419213],[-74.51894518945188,-52.94140608965236],[-74.52614526145261,-52.94140608965236],[-74.52974529745298,-52.94140608965236],[-74.58014580145802,-52.93296320330295],[-74.59814598145981,-52.92283173968365],[-74.58374583745837,-52.89581450336553],[-74.58734587345873,-52.887371617016115],[-74.5909459094591,-52.88061730793658],[-74.5909459094591,-52.8789287306667],[-74.58734587345873,-52.87217442158717],[-74.58374583745837,-52.86542011250764],[-74.57294572945729,-52.85191149434858],[-74.58374583745837,-52.845157185269045],[-74.5909459094591,-52.83840287618952],[-74.60894608946089,-52.82151710349069],[-74.70974709747097,-52.786056980823155],[-74.73134731347314,-52.77254836266409],[-74.74934749347493,-52.75566258996526],[-74.74214742147421,-52.748908280885736],[-74.73494734947349,-52.747219703615855],[-74.72774727747277,-52.745531126345966],[-74.72054720547204,-52.742153971806204],[-74.7169471694717,-52.74046539453632],[-74.70614706147062,-52.742153971806204],[-74.70254702547025,-52.742153971806204],[-74.70254702547025,-52.73877681726644],[-74.70254702547025,-52.73033393091703],[-74.70254702547025,-52.72864535364714],[-74.69894698946989,-52.725268199107376],[-74.69534695346952,-52.72189104456761],[-74.69174691746917,-52.71851389002784],[-74.68454684546845,-52.71851389002784],[-74.67374673746737,-52.72189104456761],[-74.64134641346413,-52.745531126345966],[-74.59814598145981,-52.76917120812433],[-74.57294572945729,-52.77930267174362],[-74.49014490144901,-52.79787702171233],[-74.49374493744936,-52.811385639871396],[-74.49734497344973,-52.81813994895092],[-74.50454504545046,-52.824894258030454],[-74.49014490144901,-52.83502572164975],[-74.45054450544505,-52.850222917078696],[-74.43974439744397,-52.85528864888835],[-74.43254432544325,-52.868797267047405],[-74.4181441814418,-52.87048584431729],[-74.3821438214382,-52.86542011250764],[-74.37134371343713,-52.87217442158717],[-74.3821438214382,-52.889060194285996],[-74.40734407344073,-52.91438885333424],[-74.40014400144001,-52.92114316241377],[-74.36054360543605,-52.94816039873189],[-74.34254342543426,-52.926208894223414],[-74.32814328143282,-52.92452031695353],[-74.27054270542705,-52.95829186235119],[-74.25974259742597,-52.95998043962107],[-74.24894248942489,-52.96166901689095],[-74.24534245342453,-52.95998043962107],[-74.23814238142381,-52.951537553271656],[-74.23454234542345,-52.94816039873189],[-74.23094230942309,-52.94816039873189],[-74.22014220142201,-52.95322613054154],[-74.2129421294213,-52.954914707811426],[-74.20574205742057,-52.951537553271656],[-74.19854198541985,-52.94478324419213],[-74.18774187741877,-52.93971751238248],[-74.1769417694177,-52.94478324419213],[-74.15534155341552,-52.970111903240365],[-74.15174151741518,-52.97855478958978],[-74.14454144541445,-52.99037483047896],[-74.11934119341193,-52.98362052139943],[-74.08334083340833,-52.96166901689095],[-74.11214112141121,-52.95322613054154],[-74.12294122941229,-52.94647182146201],[-74.13374133741337,-52.93465178057283],[-74.09054090540906,-52.94647182146201],[-74.07614076140761,-52.94816039873189],[-74.02934029340292,-52.98193194412955],[-74.02574025740257,-52.96335759416084],[-74.00774007740077,-52.9667347487006],[-73.9681396813968,-52.988686253209075],[-73.94653946539465,-52.993751985018726],[-73.93933939339394,-52.99544056228861],[-73.93573935739357,-53.00388344863802],[-73.93933939339394,-53.00894918044767],[-73.97533975339753,-53.00894918044767],[-73.96453964539646,-53.01908064406697],[-73.96093960939609,-53.02076922133685],[-73.95373953739536,-53.02414637587661],[-73.96093960939609,-53.02414637587661],[-73.94653946539465,-53.0258349531465],[-73.89973899738997,-53.03765499403568],[-73.90333903339032,-53.02245779860673],[-73.90333903339032,-53.012326334987435],[-73.89253892538925,-53.0055720259079],[-73.87453874538745,-53.00388344863802],[-73.86733867338673,-53.00894918044767],[-73.8421384213842,-53.03765499403568],[-73.82773827738276,-53.04440930311521],[-73.82413824138241,-53.04778645765497],[-73.82053820538205,-53.054540766734505],[-73.81333813338134,-53.06129507581403],[-73.80613806138061,-53.0646722303538],[-73.7989379893799,-53.06298365308392],[-73.79173791737917,-53.05791792127427],[-73.78813788137882,-53.05285218946462],[-73.78813788137882,-53.051163612194735],[-73.77373773737737,-53.05285218946462],[-73.75573755737557,-53.05791792127427],[-73.73053730537305,-53.07142653943333],[-73.68373683736837,-53.10688666210087],[-73.66933669336693,-53.111952393910514],[-73.65853658536585,-53.117018125720165],[-73.6369363693637,-53.14065820749852],[-73.62973629736297,-53.14741251657805],[-73.61173611736118,-53.1423467847684],[-73.61533615336153,-53.13052674387922],[-73.64053640536405,-53.111952393910514],[-73.64413644136441,-53.10013235302134],[-73.65853658536585,-53.05791792127427],[-73.64053640536405,-53.05791792127427],[-73.62253622536225,-53.05960649854415],[-73.60813608136081,-53.06636080762368],[-73.59733597335973,-53.07818084851286],[-73.60093600936008,-53.08324658032251],[-73.60453604536045,-53.09168946667192],[-73.60453604536045,-53.10013235302134],[-73.60093600936008,-53.10857523937075],[-73.59733597335973,-53.11026381664063],[-73.57213572135721,-53.111952393910514],[-73.57213572135721,-53.10013235302134],[-73.56853568535685,-53.1035095075611],[-73.55413554135541,-53.113640971180395],[-73.55053550535504,-53.118706702990046],[-73.54333543335433,-53.14065820749852],[-73.5469354693547,-53.155855402927465],[-73.55413554135541,-53.16767544381664],[-73.57933579335793,-53.18793837105524],[-73.55053550535504,-53.20820129829383],[-73.54333543335433,-53.21495560737336],[-73.53253532535325,-53.23352995734207],[-73.52893528935289,-53.24366142096137],[-73.53253532535325,-53.24872715277101],[-73.51813518135181,-53.262235770930076],[-73.50733507335073,-53.26392434819996],[-73.50373503735037,-53.25210430731077],[-73.50013500135,-53.238595689151715],[-73.49293492934929,-53.23015280280231],[-73.48213482134821,-53.22508707099266],[-73.46773467734677,-53.22170991645289],[-73.47493474934748,-53.21157845283359],[-73.48213482134821,-53.2014469892143],[-73.49293492934929,-53.19300410286488],[-73.50373503735037,-53.18793837105524],[-73.48573485734858,-53.17105259835641],[-73.49653496534965,-53.14403536203829],[-73.48213482134821,-53.132215321149104],[-73.46053460534606,-53.132215321149104],[-73.43533435334353,-53.14065820749852],[-73.4209342093421,-53.1524782483877],[-73.43173431734317,-53.16767544381664],[-73.4209342093421,-53.16598686654676],[-73.40653406534065,-53.16598686654676],[-73.39933399333992,-53.17105259835641],[-73.39213392133921,-53.181184061975706],[-73.40653406534065,-53.18793837105524],[-73.35613356133561,-53.20482414375406],[-73.3381333813338,-53.21495560737336],[-73.31653316533165,-53.23015280280231],[-73.31293312933128,-53.238595689151715],[-73.32013320133201,-53.241972843691485],[-73.35973359733597,-53.24534999823125],[-73.37053370533705,-53.241972843691485],[-73.36333363333632,-53.25379288458066],[-73.35973359733597,-53.257170039120425],[-73.36693366933669,-53.27067865727949],[-73.34173341733417,-53.27236723454937],[-73.28773287732876,-53.26392434819996],[-73.26613266132661,-53.2689900800096],[-73.19413194131941,-53.304450202677145],[-73.20493204932049,-53.30951593448679],[-73.20853208532085,-53.31120451175667],[-73.20853208532085,-53.3179588208362]]],[[[-65.15525155251552,-54.640114823154356],[-65.14085140851408,-54.64686913223389],[-65.15165151651516,-54.66037775039295],[-65.16965169651696,-54.67557494582189],[-65.18765187651876,-54.682329254901425],[-65.19485194851949,-54.69077214125083],[-65.22365223652235,-54.743118036617204],[-65.220052200522,-54.74818376842685],[-65.21285212852128,-54.76000380931603],[-65.20925209252093,-54.765069541125676],[-65.24525245252453,-54.783643891094385],[-65.25245252452524,-54.79039820017392],[-65.24885248852488,-54.80052966379321],[-65.24525245252453,-54.81066112741251],[-65.24165241652416,-54.820792591031804],[-65.26685266852668,-54.82754690011134],[-65.29565295652957,-54.846121250080046],[-65.30645306453064,-54.85287555915958],[-65.33165331653316,-54.91366434087536],[-65.3460534605346,-54.92210722722477],[-65.36045360453605,-54.927172959034415],[-65.37125371253713,-54.9288615363043],[-65.39285392853928,-54.925484381764534],[-65.39645396453965,-54.91704149541512],[-65.39645396453965,-54.906910031795825],[-65.40005400054,-54.89340141363677],[-65.42885428854288,-54.883269950017464],[-65.46125461254613,-54.88495852728735],[-65.48645486454865,-54.89508999090664],[-65.47565475654756,-54.91366434087536],[-65.50085500855008,-54.93223869084406],[-65.580055800558,-54.9288615363043],[-65.6160561605616,-54.93392726811395],[-65.62325623256233,-54.94237015446336],[-65.62685626856268,-54.95250161808266],[-65.6340563405634,-54.96263308170195],[-65.64845648456485,-54.96938739078148],[-65.670056700567,-54.971075968051366],[-65.68445684456844,-54.96938739078148],[-65.69885698856989,-54.96094450443207],[-65.70965709657096,-54.94912446354289],[-65.70965709657096,-54.94405873173324],[-65.70965709657096,-54.9288615363043],[-65.70965709657096,-54.92041864995488],[-65.71325713257133,-54.91535291814523],[-65.72045720457204,-54.908598609065706],[-65.73125731257312,-54.906910031795825],[-65.74925749257493,-54.906910031795825],[-65.77085770857708,-54.90522145452594],[-65.81045810458104,-54.91535291814523],[-65.87885878858788,-54.90015572271629],[-65.90045900459005,-54.91197576360547],[-65.96525965259652,-54.90184429998617],[-65.98685986859869,-54.91028718633559],[-65.97245972459724,-54.925484381764534],[-65.95085950859509,-54.94068157719347],[-65.96885968859688,-54.9575673498923],[-65.9940599405994,-54.97276454532125],[-66.06246062460625,-54.98458458621043],[-66.11646116461164,-54.99471604982972],[-66.19566195661956,-54.993027472559845],[-66.3180631806318,-54.99471604982972],[-66.3720637206372,-55.00484751344902],[-66.36846368463684,-55.02173328614785],[-66.3720637206372,-55.03693048157679],[-66.4260642606426,-55.04706194519609],[-66.45126451264512,-55.052127677005736],[-66.54126541265413,-55.050439099735854],[-66.63126631266313,-55.03186474976714],[-66.660066600666,-55.02004470887796],[-66.68166681666817,-55.0065360907189],[-66.6960669606696,-54.99133889528996],[-66.7140671406714,-54.98120743167066],[-66.8040680406804,-54.94237015446336],[-66.82926829268293,-54.93561584538383],[-66.94446944469445,-54.9288615363043],[-67.03087030870309,-54.90522145452594],[-67.33327333273333,-54.89171283636688],[-67.5420754207542,-54.87482706366805],[-67.6680766807668,-54.8798927954777],[-67.93087930879308,-54.86300702277887],[-68.07848078480784,-54.846121250080046],[-68.12528125281253,-54.82416974557157],[-68.21888218882188,-54.81910401376192],[-68.27288272882728,-54.79884108652333],[-68.30168301683017,-54.7920867774438],[-68.31608316083161,-54.80052966379321],[-68.31248312483125,-54.82416974557157],[-68.31608316083161,-54.83261263192098],[-68.32688326883269,-54.84274409554028],[-68.52128521285212,-54.85287555915958],[-68.54648546485464,-54.84780982734993],[-68.56448564485645,-54.83936694100052],[-68.59328593285933,-54.81066112741251],[-68.63648636486364,-54.783643891094385],[-68.640086400864,-54.783643891094385],[-68.70128701287013,-54.768446695665446],[-68.7120871208712,-54.77013527293532],[-68.70488704887049,-54.78026673655462],[-68.68328683286832,-54.78870962290404],[-68.64368643686437,-54.79884108652333],[-68.63288632886328,-54.805595395602865],[-68.60768607686076,-54.83261263192098],[-68.60048600486004,-54.841055518270394],[-68.57888578885789,-54.85456413642946],[-68.57168571685716,-54.86300702277887],[-68.56808568085681,-54.87820421820781],[-68.5860858608586,-54.88495852728735],[-68.65448654486545,-54.88664710455723],[-68.66528665286653,-54.88664710455723],[-68.68688686886868,-54.8798927954777],[-68.74088740887409,-54.84780982734993],[-68.9280892808928,-54.778578159284734],[-68.9640896408964,-54.783643891094385],[-68.9640896408964,-54.79039820017392],[-68.88128881288813,-54.80728397287274],[-68.87048870488705,-54.82248116830169],[-68.85968859688596,-54.83430120919087],[-68.8380883808838,-54.8511869818897],[-68.81288812888128,-54.864695600048755],[-68.79488794887949,-54.87313848639817],[-68.74448744487445,-54.88664710455723],[-68.73728737287372,-54.89677856817653],[-68.75888758887588,-54.91197576360547],[-68.78768787687876,-54.92041864995488],[-69.06849068490685,-54.94912446354289],[-69.12969129691297,-54.94237015446336],[-69.28449284492845,-54.89846714544641],[-69.50769507695077,-54.861318445508985],[-69.56169561695617,-54.846121250080046],[-69.5940959409594,-54.82923547738122],[-69.60129601296012,-54.82416974557157],[-69.61929619296193,-54.82416974557157],[-69.63369633696337,-54.82416974557157],[-69.64809648096481,-54.82248116830169],[-69.66249662496625,-54.81572685922215],[-69.67329673296733,-54.805595395602865],[-69.67689676896768,-54.79884108652333],[-69.68049680496804,-54.78702104563415],[-69.67329673296733,-54.778578159284734],[-69.65889658896589,-54.77520100474497],[-69.64089640896408,-54.77351242747509],[-69.630096300963,-54.77013527293532],[-69.62289622896229,-54.76000380931603],[-69.62649626496264,-54.75156092296662],[-69.630096300963,-54.743118036617204],[-69.630096300963,-54.73636372753767],[-69.62649626496264,-54.69246071852072],[-69.64089640896408,-54.69752645033037],[-69.66249662496625,-54.75324950023649],[-69.68049680496804,-54.765069541125676],[-69.69129691296912,-54.74987234569673],[-69.69849698496985,-54.699215027600246],[-69.71649716497164,-54.68908356398096],[-69.720097200972,-54.69752645033037],[-69.71289712897129,-54.765069541125676],[-69.71289712897129,-54.785332468364274],[-69.71289712897129,-54.7920867774438],[-69.720097200972,-54.79884108652333],[-69.73089730897308,-54.803906818332976],[-69.74529745297453,-54.805595395602865],[-69.75969759697597,-54.803906818332976],[-69.76689766897668,-54.79377535471368],[-69.75969759697597,-54.74987234569673],[-69.76329763297633,-54.72792084118826],[-69.77409774097741,-54.716100800299074],[-69.7920979209792,-54.721166532108725],[-69.79569795697957,-54.741429459347316],[-69.79569795697957,-54.78702104563415],[-69.81009810098101,-54.81066112741251],[-69.84249842498424,-54.820792591031804],[-69.8820988209882,-54.82248116830169],[-69.91089910899109,-54.81910401376192],[-69.92889928899288,-54.81066112741251],[-69.95049950499505,-54.79546393198356],[-69.9648996489965,-54.778578159284734],[-69.9720997209972,-54.761692386585906],[-69.9720997209972,-54.719477954838844],[-69.96849968499684,-54.70934649121955],[-69.9648996489965,-54.702592182140016],[-69.95769957699576,-54.6941492957906],[-69.95769957699576,-54.682329254901425],[-69.96849968499684,-54.677263523091774],[-69.98289982899828,-54.69077214125083],[-69.99369993699936,-54.71272364575931],[-70.00090000900009,-54.7329865729979],[-69.99729997299973,-54.75662665477626],[-69.98289982899828,-54.78702104563415],[-69.97929979299792,-54.803906818332976],[-69.97929979299792,-54.82248116830169],[-69.98289982899828,-54.830924054651106],[-69.99369993699936,-54.83430120919087],[-70.080100801008,-54.84949840461981],[-70.09450094500944,-54.84949840461981],[-70.09810098100981,-54.83598978646075],[-70.09450094500944,-54.820792591031804],[-70.08730087300873,-54.805595395602865],[-70.08370083700837,-54.79377535471368],[-70.08730087300873,-54.778578159284734],[-70.09810098100981,-54.78026673655462],[-70.10530105301052,-54.79377535471368],[-70.10890108901089,-54.81066112741251],[-70.13770137701377,-54.79715250925345],[-70.14130141301412,-54.80728397287274],[-70.14490144901448,-54.82754690011134],[-70.16650166501664,-54.846121250080046],[-70.19890198901989,-54.85456413642946],[-70.23850238502385,-54.85794129096922],[-70.27810278102781,-54.85287555915958],[-70.31050310503105,-54.83936694100052],[-70.32490324903249,-54.81741543649204],[-70.32490324903249,-54.79715250925345],[-70.30690306903068,-54.78026673655462],[-70.27090270902708,-54.75156092296662],[-70.23850238502385,-54.7144122230292],[-70.22770227702277,-54.69583787306048],[-70.24570245702456,-54.68908356398096],[-70.25290252902529,-54.699215027600246],[-70.26370263702637,-54.716100800299074],[-70.27810278102781,-54.722855109378614],[-70.28890288902889,-54.72792084118826],[-70.32130321303212,-54.74649519115697],[-70.32850328503285,-54.75324950023649],[-70.3321033210332,-54.761692386585906],[-70.33930339303393,-54.76675811839556],[-70.34650346503464,-54.77182385020521],[-70.35010350103501,-54.77688958201486],[-70.35370353703537,-54.783643891094385],[-70.35370353703537,-54.79715250925345],[-70.35730357303572,-54.803906818332976],[-70.35730357303572,-54.81066112741251],[-70.35370353703537,-54.82754690011134],[-70.35730357303572,-54.83261263192098],[-70.36450364503645,-54.83598978646075],[-70.37530375303753,-54.83261263192098],[-70.38250382503824,-54.82754690011134],[-70.3861038610386,-54.82416974557157],[-70.42930429304293,-54.81234970468239],[-70.46170461704617,-54.80897255014263],[-70.50490504905049,-54.79884108652333],[-70.54450544505444,-54.783643891094385],[-70.58050580505805,-54.778578159284734],[-70.60930609306092,-54.78026673655462],[-70.60930609306092,-54.79039820017392],[-70.62730627306273,-54.802218241063095],[-70.65250652506525,-54.80897255014263],[-70.69570695706956,-54.81066112741251],[-70.71730717307173,-54.81741543649204],[-70.73530735307352,-54.830924054651106],[-70.76050760507604,-54.841055518270394],[-70.78930789307893,-54.83598978646075],[-70.82530825308253,-54.820792591031804],[-70.83250832508325,-54.81066112741251],[-70.8361083610836,-54.78702104563415],[-70.82890828908289,-54.77688958201486],[-70.80370803708037,-54.76675811839556],[-70.77850778507785,-54.76000380931603],[-70.71370713707137,-54.75324950023649],[-70.62370623706236,-54.73129799572803],[-70.54450544505444,-54.69752645033037],[-70.45450454504545,-54.63336051407482],[-70.49050490504905,-54.61309758683623],[-70.54450544505444,-54.62322905045553],[-70.63090630906309,-54.66713205947248],[-70.620106201062,-54.67388636855201],[-70.59490594905948,-54.682329254901425],[-70.5841058410584,-54.68908356398096],[-70.60570605706057,-54.7042807594099],[-70.6381063810638,-54.71778937756896],[-70.67050670506704,-54.72623226391838],[-70.69930699306992,-54.72960941845814],[-70.71730717307173,-54.72623226391838],[-70.72810728107281,-54.721166532108725],[-70.74250742507425,-54.719477954838844],[-70.76050760507604,-54.722855109378614],[-70.77490774907749,-54.72960941845814],[-70.78570785707856,-54.739740882077434],[-70.80010800108,-54.74649519115697],[-70.81450814508145,-54.74987234569673],[-70.89370893708937,-54.74818376842685],[-70.9261092610926,-54.73805230480755],[-70.92250922509224,-54.71272364575931],[-70.89010890108901,-54.69752645033037],[-70.80730807308073,-54.69246071852072],[-70.77490774907749,-54.682329254901425],[-70.80010800108,-54.67388636855201],[-70.85770857708577,-54.680640677631544],[-70.8829088290883,-54.682329254901425],[-70.9261092610926,-54.67050921401224],[-70.94410944109441,-54.67219779128213],[-70.95850958509585,-54.68908356398096],[-70.94050940509405,-54.702592182140016],[-70.95130951309513,-54.721166532108725],[-71.0089100891009,-54.77013527293532],[-71.02691026910269,-54.77688958201486],[-71.04131041310413,-54.77520100474497],[-71.04851048510484,-54.761692386585906],[-71.04131041310413,-54.74649519115697],[-71.02691026910269,-54.73467515026779],[-71.01251012510124,-54.72623226391838],[-71.00171001710017,-54.716100800299074],[-70.99450994509945,-54.700903604870135],[-70.9981099810998,-54.68739498671107],[-71.00171001710017,-54.67388636855201],[-71.00171001710017,-54.66037775039295],[-70.9621096210962,-54.63167193680494],[-70.95130951309513,-54.6266062049953],[-70.94770947709476,-54.62322905045553],[-70.95130951309513,-54.616474741375995],[-70.95850958509585,-54.61140900956635],[-70.97650976509765,-54.619851895915765],[-70.98730987309872,-54.62154047318565],[-71.00531005310053,-54.619851895915765],[-71.01611016110161,-54.61478616410612],[-71.04491044910449,-54.596211814137405],[-71.06291062910628,-54.59283465959764],[-71.05571055710557,-54.60634327775671],[-71.04851048510484,-54.618163318645884],[-71.04131041310413,-54.62829478226518],[-71.04131041310413,-54.640114823154356],[-71.04851048510484,-54.657000595853184],[-71.05931059310593,-54.66206632766283],[-71.07371073710736,-54.66037775039295],[-71.08451084510845,-54.6553120185833],[-71.08451084510845,-54.64855770950377],[-71.0881108811088,-54.64180340042424],[-71.09171091710917,-54.63504909134471],[-71.10251102511025,-54.63336051407482],[-71.10611106111061,-54.636737668614586],[-71.14931149311492,-54.68739498671107],[-71.16371163711636,-54.69752645033037],[-71.1781117811178,-54.702592182140016],[-71.19251192511925,-54.699215027600246],[-71.21771217712177,-54.680640677631544],[-71.23211232112321,-54.67557494582189],[-71.27171271712717,-54.677263523091774],[-71.28971289712896,-54.677263523091774],[-71.3041130411304,-54.66713205947248],[-71.3041130411304,-54.65193486404354],[-71.28971289712896,-54.64686913223389],[-71.21771217712177,-54.643491977694126],[-71.20331203312033,-54.638426245884474],[-71.19251192511925,-54.6266062049953],[-71.21771217712177,-54.62154047318565],[-71.23931239312392,-54.62154047318565],[-71.25731257312573,-54.61309758683623],[-71.26451264512644,-54.581014618708465],[-71.26451264512644,-54.575948886898814],[-71.26451264512644,-54.56919457781928],[-71.26091260912608,-54.559063114199986],[-71.25371253712537,-54.55062022785057],[-71.23931239312392,-54.54048876423128],[-71.23211232112321,-54.53204587788186],[-71.26451264512644,-54.533734455151745],[-71.28251282512825,-54.55062022785057],[-71.29691296912969,-54.559063114199986],[-71.32211322113221,-54.54555449604092],[-71.33651336513364,-54.52191441426257],[-71.34731347313473,-54.51684868245292],[-71.36171361713616,-54.52698014607222],[-71.36171361713616,-54.538800186961396],[-71.35451354513545,-54.55062022785057],[-71.34371343713437,-54.559063114199986],[-71.33651336513364,-54.56581742327952],[-71.36171361713616,-54.5675060005494],[-71.38331383313833,-54.559063114199986],[-71.40131401314012,-54.555685959660224],[-71.4121141211412,-54.57932604143858],[-71.37251372513725,-54.58776892778799],[-71.35091350913508,-54.59452323686752],[-71.33651336513364,-54.60634327775671],[-71.35091350913508,-54.61309758683623],[-71.35811358113581,-54.60972043229647],[-71.36891368913689,-54.60296612321694],[-71.37971379713797,-54.59958896867717],[-71.39411394113941,-54.60465470048682],[-71.39771397713977,-54.61478616410612],[-71.40131401314012,-54.62829478226518],[-71.40491404914049,-54.640114823154356],[-71.41571415714157,-54.65193486404354],[-71.4229142291423,-54.64686913223389],[-71.430114301143,-54.638426245884474],[-71.44451444514445,-54.63336051407482],[-71.45171451714516,-54.638426245884474],[-71.45891458914589,-54.64686913223389],[-71.46971469714697,-54.6553120185833],[-71.48771487714876,-54.6553120185833],[-71.47691476914768,-54.677263523091774],[-71.48771487714876,-54.68739498671107],[-71.50571505715057,-54.68401783217131],[-71.52011520115201,-54.66037775039295],[-71.52011520115201,-54.638426245884474],[-71.51291512915128,-54.62154047318565],[-71.49491494914949,-54.59283465959764],[-71.51651516515165,-54.59790039140729],[-71.53451534515345,-54.61309758683623],[-71.5489154891549,-54.63167193680494],[-71.5489154891549,-54.6553120185833],[-71.55611556115561,-54.64855770950377],[-71.56691566915669,-54.64686913223389],[-71.57411574115741,-54.64855770950377],[-71.58491584915849,-54.6553120185833],[-71.5921159211592,-54.638426245884474],[-71.58491584915849,-54.618163318645884],[-71.57051570515705,-54.59958896867717],[-71.55611556115561,-54.58608035051811],[-71.56331563315632,-54.58439177324823],[-71.57051570515705,-54.58776892778799],[-71.57411574115741,-54.591146082327754],[-71.58491584915849,-54.59283465959764],[-71.5921159211592,-54.58945750505788],[-71.59571595715957,-54.58270319597834],[-71.59931599315993,-54.581014618708465],[-71.60651606516065,-54.58945750505788],[-71.61011610116101,-54.596211814137405],[-71.61011610116101,-54.60296612321694],[-71.61011610116101,-54.60803185502658],[-71.61371613716136,-54.616474741375995],[-71.63891638916388,-54.63336051407482],[-71.63891638916388,-54.640114823154356],[-71.63891638916388,-54.645180554964],[-71.63891638916388,-54.65024628677365],[-71.64611646116461,-54.6553120185833],[-71.65331653316532,-54.657000595853184],[-71.66051660516605,-54.6553120185833],[-71.67131671316713,-54.653623441313414],[-71.6749167491675,-54.65024628677365],[-71.68571685716857,-54.63504909134471],[-71.67851678516784,-54.62154047318565],[-71.65331653316532,-54.59958896867717],[-71.6641166411664,-54.59958896867717],[-71.68931689316892,-54.60634327775671],[-71.70011700117001,-54.60634327775671],[-71.71451714517144,-54.60296612321694],[-71.73971739717396,-54.59452323686752],[-71.7541175411754,-54.59283465959764],[-71.73971739717396,-54.61478616410612],[-71.76131761317613,-54.62322905045553],[-71.790117901179,-54.62322905045553],[-71.81531815318152,-54.619851895915765],[-71.80811808118081,-54.63167193680494],[-71.80451804518044,-54.640114823154356],[-71.80811808118081,-54.64855770950377],[-71.82251822518225,-54.6553120185833],[-71.85131851318513,-54.64686913223389],[-71.86931869318693,-54.64686913223389],[-71.91971919719197,-54.6553120185833],[-71.94491944919449,-54.6553120185833],[-71.96291962919629,-54.64686913223389],[-71.97371973719737,-54.63336051407482],[-71.98091980919808,-54.61309758683623],[-71.95931959319593,-54.60634327775671],[-71.94491944919449,-54.60465470048682],[-71.9269192691927,-54.60803185502658],[-71.90531905319052,-54.61309758683623],[-71.9161191611916,-54.60296612321694],[-71.91971919719197,-54.59958896867717],[-71.90171901719017,-54.591146082327754],[-71.89451894518945,-54.58439177324823],[-71.89091890918908,-54.57932604143858],[-71.89091890918908,-54.5675060005494],[-71.89451894518945,-54.5675060005494],[-71.90171901719017,-54.56919457781928],[-71.91251912519125,-54.57088315508916],[-71.94491944919449,-54.57088315508916],[-71.95211952119521,-54.56412884600964],[-71.93411934119341,-54.55062022785057],[-71.94851948519485,-54.55062022785057],[-72.00252002520025,-54.57088315508916],[-72.00252002520025,-54.559063114199986],[-71.99531995319953,-54.54724307331081],[-71.98811988119881,-54.538800186961396],[-71.98091980919808,-54.53204587788186],[-71.99891998919989,-54.51684868245292],[-72.0061200612006,-54.513471527913154],[-72.0061200612006,-54.50502864156374],[-72.00252002520025,-54.498274332484215],[-71.99891998919989,-54.49996290975409],[-71.98811988119881,-54.50671721883363],[-71.970119701197,-54.51009437337339],[-71.95211952119521,-54.51178295064327],[-71.94131941319412,-54.51009437337339],[-71.99171991719916,-54.47801140524562],[-72.00252002520025,-54.45943705527691],[-71.97371973719737,-54.44930559165761],[-71.94131941319412,-54.45943705527691],[-71.91971919719197,-54.46450278708656],[-71.9161191611916,-54.46787994162632],[-71.9161191611916,-54.47294567343597],[-71.91251912519125,-54.476322827975736],[-71.88371883718837,-54.48307713705526],[-71.86571865718656,-54.50165148702398],[-71.85851858518585,-54.513471527913154],[-71.85851858518585,-54.52698014607222],[-71.85131851318513,-54.538800186961396],[-71.83331833318333,-54.54217734150116],[-71.79731797317973,-54.54555449604092],[-71.70731707317073,-54.56919457781928],[-71.67131671316713,-54.57088315508916],[-71.68211682116821,-54.56412884600964],[-71.70731707317073,-54.555685959660224],[-71.7181171811718,-54.54724307331081],[-71.73971739717396,-54.518537259722805],[-71.74691746917469,-54.51009437337339],[-71.71091710917109,-54.51009437337339],[-71.63171631716317,-54.54724307331081],[-71.58491584915849,-54.54555449604092],[-71.65691656916569,-54.513471527913154],[-71.69291692916929,-54.491520023404675],[-71.69291692916929,-54.4695685188962],[-71.7181171811718,-54.46281420981667],[-71.73611736117361,-54.46619136435644],[-71.75771757717577,-54.471257096166084],[-71.78291782917829,-54.476322827975736],[-71.82971829718296,-54.4695685188962],[-71.84051840518404,-54.46619136435644],[-71.85131851318513,-54.45437132346726],[-71.85131851318513,-54.44592843711784],[-71.84771847718477,-54.4408627053082],[-71.82971829718296,-54.4408627053082],[-71.83331833318333,-54.432419818958785],[-71.83691836918369,-54.42566550987925],[-71.8441184411844,-54.41891120079973],[-71.85131851318513,-54.413845468990075],[-71.81531815318152,-54.41553404625996],[-71.80451804518044,-54.413845468990075],[-71.79731797317973,-54.41046831445031],[-71.79371793717937,-54.40371400537078],[-71.78651786517865,-54.39695969629125],[-71.77211772117721,-54.393582541751485],[-71.75051750517505,-54.39695969629125],[-71.72531725317253,-54.40540258264066],[-71.71451714517144,-54.41553404625996],[-71.73611736117361,-54.42228835533949],[-71.73611736117361,-54.42735408714914],[-71.68931689316892,-54.4408627053082],[-71.61371613716136,-54.50165148702398],[-71.56331563315632,-54.51009437337339],[-71.56331563315632,-54.491520023404675],[-71.49491494914949,-54.49320860067456],[-71.49491494914949,-54.476322827975736],[-71.51651516515165,-54.46450278708656],[-71.58131581315813,-54.46281420981667],[-71.60291602916028,-54.44930559165761],[-71.61011610116101,-54.44255128257808],[-71.61371613716136,-54.432419818958785],[-71.61731617316173,-54.4205997780696],[-71.61371613716136,-54.41046831445031],[-71.59931599315993,-54.40033685083101],[-71.58851588515884,-54.40540258264066],[-71.57051570515705,-54.42735408714914],[-71.55971559715597,-54.435796973498555],[-71.54531545315453,-54.44423985984797],[-71.52731527315272,-54.44761701438773],[-71.51651516515165,-54.44423985984797],[-71.51291512915128,-54.434108396228666],[-71.51651516515165,-54.42228835533949],[-71.52731527315272,-54.413845468990075],[-71.53451534515345,-54.40709115991054],[-71.52011520115201,-54.408779737180424],[-71.49491494914949,-54.42397693260937],[-71.45891458914589,-54.435796973498555],[-71.45171451714516,-54.435796973498555],[-71.43371433714337,-54.434108396228666],[-71.41571415714157,-54.435796973498555],[-71.4121141211412,-54.435796973498555],[-71.40491404914049,-54.43748555076843],[-71.40491404914049,-54.44423985984797],[-71.40131401314012,-54.45268274619738],[-71.39771397713977,-54.45774847800703],[-71.39051390513904,-54.45774847800703],[-71.36531365313652,-54.44423985984797],[-71.33651336513364,-54.43917412803832],[-71.32211322113221,-54.42735408714914],[-71.34371343713437,-54.41722262352984],[-71.40491404914049,-54.413845468990075],[-71.43371433714337,-54.40033685083101],[-71.4229142291423,-54.39864827356113],[-71.41571415714157,-54.393582541751485],[-71.40851408514085,-54.388516809941834],[-71.40491404914049,-54.38007392359242],[-71.39051390513904,-54.38513965540207],[-71.38331383313833,-54.38345107813218],[-71.3761137611376,-54.37669676905266],[-71.36531365313652,-54.373319614512894],[-71.35091350913508,-54.37500819178277],[-71.33291332913329,-54.38513965540207],[-71.30051300513004,-54.39020538721172],[-71.18891188911888,-54.429042664419015],[-71.16731167311673,-54.4408627053082],[-71.14931149311492,-54.476322827975736],[-71.13131131311313,-54.491520023404675],[-71.09171091710917,-54.51009437337339],[-71.13851138511384,-54.450994168927494],[-71.14571145711457,-54.435796973498555],[-71.1241112411124,-54.434108396228666],[-71.01251012510124,-54.44930559165761],[-70.97290972909728,-54.4695685188962],[-70.96570965709657,-54.46619136435644],[-70.96570965709657,-54.4408627053082],[-70.9621096210962,-54.4307312416889],[-70.95130951309513,-54.42735408714914],[-70.93330933309333,-54.41553404625996],[-70.93690936909368,-54.388516809941834],[-70.95130951309513,-54.33954806911524],[-70.92970929709297,-54.34461380092488],[-70.90810908109081,-54.336170914575476],[-70.8829088290883,-54.32435087368629],[-70.86130861308612,-54.31759656460676],[-70.80010800108,-54.31590798733688],[-70.77130771307712,-54.31928514187665],[-70.7461074610746,-54.331105182765825],[-70.7461074610746,-54.34461380092488],[-70.72450724507245,-54.346302378194764],[-70.68490684906848,-54.33954806911524],[-70.68130681306813,-54.336170914575476],[-70.6741067410674,-54.32772802822606],[-70.67050670506704,-54.32603945095617],[-70.66330663306633,-54.32435087368629],[-70.65250652506525,-54.329416605495936],[-70.64890648906488,-54.331105182765825],[-70.62730627306273,-54.332793760035706],[-70.620106201062,-54.33448233730559],[-70.60930609306092,-54.33954806911524],[-70.70290702907029,-54.41722262352984],[-70.70650706507065,-54.4205997780696],[-70.72450724507245,-54.42566550987925],[-70.72810728107281,-54.42735408714914],[-70.72810728107281,-54.434108396228666],[-70.72450724507245,-54.43917412803832],[-70.72090720907208,-54.44255128257808],[-70.72090720907208,-54.44423985984797],[-70.71730717307173,-54.45774847800703],[-70.71370713707137,-54.4695685188962],[-70.710107101071,-54.48138855978539],[-70.72090720907208,-54.496585755214326],[-70.77490774907749,-54.54386591877105],[-70.78210782107821,-54.56244026873975],[-70.78210782107821,-54.57088315508916],[-70.77850778507785,-54.58439177324823],[-70.77130771307712,-54.59452323686752],[-70.76410764107641,-54.59958896867717],[-70.7569075690757,-54.59283465959764],[-70.74970749707497,-54.56244026873975],[-70.73890738907389,-54.55062022785057],[-70.70650706507065,-54.581014618708465],[-70.68490684906848,-54.59452323686752],[-70.64170641706417,-54.60296612321694],[-70.63450634506344,-54.59958896867717],[-70.64170641706417,-54.58945750505788],[-70.64890648906488,-54.58270319597834],[-70.67770677706777,-54.56581742327952],[-70.70290702907029,-54.533734455151745],[-70.69570695706956,-54.494897177944445],[-70.67770677706777,-54.45774847800703],[-70.65250652506525,-54.42735408714914],[-70.63450634506344,-54.413845468990075],[-70.60930609306092,-54.39864827356113],[-70.5841058410584,-54.39020538721172],[-70.56610566105661,-54.39695969629125],[-70.56250562505625,-54.4020254281009],[-70.56250562505625,-54.41215689172019],[-70.55890558905588,-54.413845468990075],[-70.55530555305553,-54.41553404625996],[-70.54090540905409,-54.42228835533949],[-70.53010530105301,-54.4307312416889],[-70.4941049410494,-54.4408627053082],[-70.4581045810458,-54.46787994162632],[-70.44010440104401,-54.47801140524562],[-70.39690396903968,-54.48645429159503],[-70.34650346503464,-54.50671721883363],[-70.32850328503285,-54.51684868245292],[-70.28170281702816,-54.56244026873975],[-70.24930249302493,-54.575948886898814],[-70.23490234902349,-54.55062022785057],[-70.25650256502564,-54.54217734150116],[-70.27450274502745,-54.53204587788186],[-70.28890288902889,-54.518537259722805],[-70.30330303303033,-54.496585755214326],[-70.260102601026,-54.50502864156374],[-70.17730177301773,-54.54048876423128],[-70.13050130501304,-54.54555449604092],[-70.15210152101521,-54.53035730061198],[-70.20970209702097,-54.51178295064327],[-70.25290252902529,-54.48645429159503],[-70.42930429304293,-54.43748555076843],[-70.45090450904509,-54.42397693260937],[-70.45450454504545,-54.41553404625996],[-70.4581045810458,-54.40709115991054],[-70.4581045810458,-54.38345107813218],[-70.50130501305013,-54.366565305433355],[-70.5121051210512,-54.35981099635383],[-70.49770497704976,-54.34123664638512],[-70.5121051210512,-54.32097371914652],[-70.55170551705517,-54.287202173748874],[-70.57690576905769,-54.27538213285969],[-70.65970659706596,-54.26356209197051],[-70.80730807308073,-54.268627823780164],[-70.84330843308433,-54.26356209197051],[-70.86850868508685,-54.246676319271685],[-70.87930879308793,-54.22303623749333],[-70.88650886508864,-54.19939615571497],[-70.89730897308972,-54.182510383016144],[-70.89010890108901,-54.17406749666674],[-70.87570875708757,-54.182510383016144],[-70.85770857708577,-54.187576114825795],[-70.82170821708216,-54.1960190011752],[-70.86850868508685,-54.16562461031732],[-70.88650886508864,-54.16055887850767],[-70.90450904509045,-54.15549314669802],[-70.91890918909189,-54.141984528538956],[-70.92970929709297,-54.126787333110016],[-70.93330933309333,-54.11327871495095],[-70.54090540905409,-54.25680778289099],[-70.42570425704257,-54.29226790555852],[-70.32130321303212,-54.32603945095617],[-70.31050310503105,-54.332793760035706],[-70.29970299702997,-54.34123664638512],[-70.28890288902889,-54.349679532734534],[-70.24570245702456,-54.35643384181407],[-70.22770227702277,-54.369942459973124],[-70.19170191701916,-54.40033685083101],[-70.15210152101521,-54.42397693260937],[-70.13770137701377,-54.42735408714914],[-70.14490144901448,-54.391893964481596],[-70.1341013410134,-54.388516809941834],[-70.08730087300873,-54.38345107813218],[-70.07290072900729,-54.37838534632254],[-70.07650076500765,-54.369942459973124],[-70.09450094500944,-54.35981099635383],[-70.16650166501664,-54.349679532734534],[-70.18450184501845,-54.33954806911524],[-70.19890198901989,-54.32097371914652],[-70.19170191701916,-54.310842255527234],[-70.15930159301593,-54.304087946447694],[-70.14130141301412,-54.29733363736817],[-70.1341013410134,-54.287202173748874],[-70.12690126901269,-54.27707071012958],[-70.10890108901089,-54.26356209197051],[-70.09090090900908,-54.25343062835122],[-70.07290072900729,-54.248364896541574],[-70.05490054900548,-54.25005347381145],[-70.03330033300333,-54.25680778289099],[-70.00090000900009,-54.27200497831993],[-69.98289982899828,-54.283825019209104],[-69.9720997209972,-54.29733363736817],[-69.9720997209972,-54.314219410067],[-69.97569975699757,-54.331105182765825],[-69.97569975699757,-54.34461380092488],[-69.9540995409954,-54.3530566872743],[-69.96849968499684,-54.38007392359242],[-69.93969939699397,-54.373319614512894],[-69.92529925299253,-54.373319614512894],[-69.91089910899109,-54.38007392359242],[-69.90729907299072,-54.39020538721172],[-69.90729907299072,-54.4020254281009],[-69.90369903699036,-54.41046831445031],[-69.88569885698857,-54.413845468990075],[-69.87489874898749,-54.4205997780696],[-69.87129871298713,-54.435796973498555],[-69.87129871298713,-54.44930559165761],[-69.87849878498784,-54.456059900737145],[-69.88569885698857,-54.46112563254679],[-69.8820988209882,-54.50334006429386],[-69.87489874898749,-54.49996290975409],[-69.85689856898568,-54.48645429159503],[-69.85329853298532,-54.48307713705526],[-69.84969849698497,-54.48138855978539],[-69.83529835298353,-54.47463425070585],[-69.82449824498245,-54.46787994162632],[-69.81729817298172,-54.4695685188962],[-69.81009810098101,-54.47463425070585],[-69.78489784897849,-54.48476571432515],[-69.78489784897849,-54.50334006429386],[-69.7920979209792,-54.52360299153245],[-69.80289802898028,-54.53711160969151],[-69.78849788497885,-54.54048876423128],[-69.77409774097741,-54.555685959660224],[-69.76689766897668,-54.555685959660224],[-69.7560975609756,-54.54893165058069],[-69.75249752497524,-54.54217734150116],[-69.7560975609756,-54.53711160969151],[-69.76329763297633,-54.52698014607222],[-69.76329763297633,-54.52022583699269],[-69.74529745297453,-54.498274332484215],[-69.74169741697416,-54.4898314461348],[-69.74169741697416,-54.47801140524562],[-69.74529745297453,-54.46787994162632],[-69.75969759697597,-54.456059900737145],[-69.77769777697776,-54.44423985984797],[-69.79929799297993,-54.432419818958785],[-69.81729817298172,-54.4205997780696],[-69.82089820898209,-54.40371400537078],[-69.80649806498064,-54.38513965540207],[-69.81009810098101,-54.38176250086231],[-69.81369813698137,-54.38007392359242],[-69.82089820898209,-54.36825388270324],[-69.8460984609846,-54.35981099635383],[-69.84969849698497,-54.349679532734534],[-69.84969849698497,-54.33785949184535],[-69.84969849698497,-54.332793760035706],[-69.85689856898568,-54.32603945095617],[-69.86769867698676,-54.31759656460676],[-69.87849878498784,-54.31759656460676],[-69.8820988209882,-54.31253083279711],[-69.87849878498784,-54.29733363736817],[-69.86049860498605,-54.28044786466934],[-69.83529835298353,-54.28044786466934],[-69.77769777697776,-54.29226790555852],[-69.74889748897489,-54.304087946447694],[-69.69129691296912,-54.31759656460676],[-69.65169651696516,-54.34123664638512],[-69.63729637296373,-54.35643384181407],[-69.64449644496445,-54.366565305433355],[-69.63729637296373,-54.37669676905266],[-69.630096300963,-54.38176250086231],[-69.60849608496085,-54.393582541751485],[-69.60489604896048,-54.395271119021366],[-69.5940959409594,-54.39864827356113],[-69.59049590495904,-54.40033685083101],[-69.58329583295833,-54.40709115991054],[-69.58329583295833,-54.41891120079973],[-69.57969579695796,-54.42397693260937],[-69.55809558095581,-54.435796973498555],[-69.53649536495365,-54.44255128257808],[-69.52209522095221,-54.435796973498555],[-69.52929529295292,-54.413845468990075],[-69.55809558095581,-54.388516809941834],[-69.57249572495725,-54.373319614512894],[-69.56529565295652,-54.35643384181407],[-69.54369543695437,-54.34123664638512],[-69.52209522095221,-54.33785949184535],[-69.50049500495004,-54.342925223655],[-69.2880928809288,-54.42735408714914],[-69.24849248492484,-54.435796973498555],[-69.24129241292412,-54.4408627053082],[-69.23409234092341,-54.44930559165761],[-69.22689226892268,-54.46450278708656],[-69.22689226892268,-54.476322827975736],[-69.23769237692376,-54.48307713705526],[-69.25929259292593,-54.48814286886491],[-69.27729277292772,-54.50165148702398],[-69.29169291692916,-54.518537259722805],[-69.30969309693097,-54.53204587788186],[-69.34569345693457,-54.54555449604092],[-69.35649356493565,-54.55062022785057],[-69.36369363693636,-54.560751691469875],[-69.37449374493744,-54.57932604143858],[-69.38169381693817,-54.58945750505788],[-69.41769417694177,-54.62322905045553],[-69.38889388893888,-54.64686913223389],[-69.39609396093961,-54.658689173123065],[-69.39609396093961,-54.66882063674237],[-69.38889388893888,-54.67557494582189],[-69.3780937809378,-54.682329254901425],[-69.36729367293673,-54.663754904932716],[-69.37089370893709,-54.638426245884474],[-69.37449374493744,-54.616474741375995],[-69.35289352893528,-54.60634327775671],[-69.33129331293313,-54.59958896867717],[-69.31689316893168,-54.58270319597834],[-69.30249302493024,-54.56412884600964],[-69.2880928809288,-54.54555449604092],[-69.27009270092701,-54.53204587788186],[-69.24849248492484,-54.52529156880233],[-69.22329223292232,-54.52698014607222],[-69.20169201692016,-54.54048876423128],[-69.180091800918,-54.57257173235905],[-69.16929169291693,-54.577637464168696],[-69.15849158491585,-54.559063114199986],[-69.15849158491585,-54.54217734150116],[-69.17649176491764,-54.48814286886491],[-69.17649176491764,-54.476322827975736],[-69.16929169291693,-54.471257096166084],[-69.16569165691656,-54.46281420981667],[-69.15849158491585,-54.45268274619738],[-69.14769147691476,-54.44930559165761],[-69.09729097290972,-54.44761701438773],[-69.08289082890829,-54.44930559165761],[-69.06849068490685,-54.45268274619738],[-69.03969039690396,-54.4695685188962],[-69.01089010890108,-54.471257096166084],[-68.99648996489965,-54.46787994162632],[-68.99648996489965,-54.45943705527691],[-68.99648996489965,-54.450994168927494],[-68.99288992889929,-54.4408627053082],[-68.98928989289892,-54.4307312416889],[-69.03969039690396,-54.40709115991054],[-69.090090900909,-54.391893964481596],[-69.17289172891728,-54.38176250086231],[-69.19449194491945,-54.371631037243006],[-69.23409234092341,-54.346302378194764],[-69.28089280892809,-54.32097371914652],[-69.50769507695077,-54.26018493743075],[-69.53289532895329,-54.25680778289099],[-69.540095400954,-54.25343062835122],[-69.55809558095581,-54.23823343292227],[-69.56889568895689,-54.22472481476321],[-69.58329583295833,-54.22303623749333],[-69.61569615696156,-54.22303623749333],[-69.8820988209882,-54.16055887850767],[-69.91089910899109,-54.143673105808844],[-69.92169921699217,-54.14029595126908],[-69.92529925299253,-54.13691879672931],[-69.9720997209972,-54.1183444467606],[-70.01530015300153,-54.11327871495095],[-70.05850058500585,-54.086261478632835],[-70.07290072900729,-54.05248993323518],[-70.08370083700837,-54.01196407875799],[-70.10170101701017,-53.96974964701093],[-70.11970119701196,-53.95117529704221],[-70.13770137701377,-53.937666678883154],[-70.14850148501485,-53.92246948345421],[-70.15570155701556,-53.87350074262761],[-70.17730177301773,-53.83297488815043],[-70.18450184501845,-53.81102338364195],[-70.17370173701737,-53.76036606554547],[-70.13770137701377,-53.738414561037],[-70.05850058500585,-53.711397324718874],[-69.97929979299792,-53.68775724294051],[-69.92529925299253,-53.6793143565911],[-69.91449914499145,-53.66074000662239],[-69.87849878498784,-53.65736285208263],[-69.80649806498064,-53.66580573843204],[-69.65169651696516,-53.63541134757415],[-69.36009360093601,-53.52227667049201],[-69.3240932409324,-53.491882279634126],[-69.31689316893168,-53.45135642515694],[-69.32769327693276,-53.4158963024894],[-69.33489334893349,-53.39056764344116],[-69.34929349293492,-53.363550407123036],[-69.35289352893528,-53.35510752077362],[-69.39609396093961,-53.35341894350374],[-69.46449464494644,-53.3567960980435],[-69.67689676896768,-53.35848467531339],[-69.80649806498064,-53.382124757091745],[-69.89649896498965,-53.387190488901396],[-69.95049950499505,-53.39901052979057],[-69.98649986499865,-53.41758487975928],[-70.02250022500225,-53.43615922972799],[-70.05850058500585,-53.42771634337858],[-70.1161011610116,-53.43447065245811],[-70.13770137701377,-53.44122496153764],[-70.18090180901808,-53.463176466046114],[-70.20250202502025,-53.46824219785576],[-70.23130231302312,-53.466553620585884],[-70.25650256502564,-53.46148788877623],[-70.28170281702816,-53.449667847887056],[-70.30330303303033,-53.43447065245811],[-70.32850328503285,-53.404076261600224],[-70.34650346503464,-53.39225622071105],[-70.3681036810368,-53.387190488901396],[-70.39330393303932,-53.38381333436163],[-70.41850418504184,-53.37537044801222],[-70.44370443704436,-53.361861829853154],[-70.4581045810458,-53.34497605715433],[-70.46530465304653,-53.32977886172539],[-70.47250472504724,-53.30951593448679],[-70.46170461704617,-53.27236723454937],[-70.46170461704617,-53.220021339183006],[-70.45450454504545,-53.194692680134764],[-70.44730447304472,-53.181184061975706],[-70.43650436504365,-53.16936402108653],[-70.43290432904328,-53.15078967111781],[-70.43650436504365,-53.12883816660934],[-70.44010440104401,-53.10688666210087],[-70.43290432904328,-53.07142653943333],[-70.43290432904328,-53.04440930311521],[-70.42570425704257,-53.02752353041638],[-70.41850418504184,-53.012326334987435],[-70.39330393303932,-52.99881771682838],[-70.36090360903609,-52.98362052139943],[-70.33930339303393,-52.970111903240365],[-70.32850328503285,-52.96504617143072],[-70.31410314103141,-52.968423325970484],[-70.31410314103141,-52.98024336685966],[-70.32850328503285,-52.993751985018726],[-70.34290342903428,-53.0055720259079],[-70.3321033210332,-53.017392066797086],[-70.31410314103141,-53.0258349531465],[-70.31770317703176,-53.04103214857544],[-70.33570335703357,-53.051163612194735],[-70.32490324903249,-53.06129507581403],[-70.2961029610296,-53.05791792127427],[-70.2421024210242,-53.06129507581403],[-70.18450184501845,-53.02921210768626],[-70.1341013410134,-53.012326334987435],[-70.1161011610116,-52.98024336685966],[-70.10890108901089,-52.96335759416084],[-70.09810098100981,-52.94647182146201],[-70.09090090900908,-52.911011698794475],[-70.10890108901089,-52.887371617016115],[-70.13050130501304,-52.8789287306667],[-70.13770137701377,-52.8789287306667],[-70.14490144901448,-52.88230588520647],[-70.14850148501485,-52.88399446247635],[-70.15570155701556,-52.88568303974623],[-70.16290162901629,-52.88399446247635],[-70.17370173701737,-52.87555157612694],[-70.17730177301773,-52.87217442158717],[-70.2061020610206,-52.867108689777524],[-70.22050220502204,-52.86542011250764],[-70.23130231302312,-52.868797267047405],[-70.24570245702456,-52.8789287306667],[-70.26370263702637,-52.89412592609565],[-70.27450274502745,-52.905945966984824],[-70.29970299702997,-52.91438885333424],[-70.30330303303033,-52.90256881244506],[-70.28530285302853,-52.88230588520647],[-70.25650256502564,-52.868797267047405],[-70.26730267302672,-52.826582835300336],[-70.28170281702816,-52.79787702171233],[-70.33570335703357,-52.77761409447374],[-70.41490414904149,-52.77930267174362],[-70.42570425704257,-52.77592551720386],[-70.42570425704257,-52.765794053584564],[-70.41490414904149,-52.75735116723515],[-70.3681036810368,-52.745531126345966],[-70.27450274502745,-52.73539966272667],[-70.19890198901989,-52.73708823999655],[-70.15930159301593,-52.73033393091703],[-70.12690126901269,-52.73202250818691],[-70.1161011610116,-52.75735116723515],[-70.04770047700477,-52.811385639871396],[-70.00090000900009,-52.84178003072928],[-69.95049950499505,-52.850222917078696],[-69.91089910899109,-52.848534339808815],[-69.85329853298532,-52.79956559898221],[-69.82449824498245,-52.782679826283385],[-69.78489784897849,-52.77761409447374],[-69.73449734497345,-52.77423693993398],[-69.71289712897129,-52.76072832177491],[-69.7020970209702,-52.747219703615855],[-69.69129691296912,-52.73202250818691],[-69.67329673296733,-52.71682531275796],[-69.64089640896408,-52.686430921900076],[-69.61929619296193,-52.66785657193137],[-69.60489604896048,-52.6543479537723],[-69.59049590495904,-52.642527912883125],[-69.60129601296012,-52.615510676565],[-69.60849608496085,-52.59693632659629],[-69.61929619296193,-52.580050553897465],[-69.62289622896229,-52.559787626658874],[-69.61929619296193,-52.537836122150395],[-69.60489604896048,-52.52095034945157],[-69.58329583295833,-52.50913030856239],[-69.50769507695077,-52.4888673813238],[-69.47169471694717,-52.47029303135509],[-69.45369453694536,-52.46522729954544],[-69.43929439294392,-52.45847299046591],[-69.42849428494284,-52.455095835926144],[-69.41769417694177,-52.45171868138638],[-69.39609396093961,-52.455095835926144],[-69.37449374493744,-52.47029303135509],[-69.34569345693457,-52.50575315402263],[-69.32769327693276,-52.52432750399134],[-69.31689316893168,-52.53952469942028],[-69.29889298892988,-52.56316478119864],[-69.27729277292772,-52.580050553897465],[-69.22689226892268,-52.63915075834336],[-69.18729187291872,-52.66785657193137],[-69.14049140491404,-52.683053767360306],[-69.090090900909,-52.67967661282054],[-69.02169021690216,-52.65097079923254],[-68.9640896408964,-52.65097079923254],[-68.92088920889209,-52.640839335613244],[-68.87768877688777,-52.623953562914416],[-68.83448834488344,-52.60537921294571],[-68.81288812888128,-52.59187059478664],[-68.8020880208802,-52.57498482208781],[-68.79128791287913,-52.55809904938899],[-68.78048780487805,-52.54796758576969],[-68.76608766087661,-52.54796758576969],[-68.74448744487445,-52.556410472119104],[-68.67248672486724,-52.615510676565],[-68.6580865808658,-52.6256421401843],[-68.62928629286293,-52.63915075834336],[-68.59328593285933,-52.6543479537723],[-68.5860858608586,-52.662790840121716],[-68.56448564485645,-52.69487380824949],[-68.55728557285572,-52.705005271868785],[-68.49248492484925,-52.762416899044794],[-68.42768427684277,-52.83502572164975],[-68.40968409684096,-52.848534339808815],[-68.34128341283413,-52.88568303974623],[-68.31248312483125,-52.912700276064356],[-68.28728287282873,-52.94309466692224],[-68.26568265682657,-52.98024336685966],[-68.22968229682296,-53.08662373486227],[-68.22608226082261,-53.10182093029122],[-68.22968229682296,-53.118706702990046],[-68.24048240482405,-53.10857523937075],[-68.25128251282513,-53.08662373486227],[-68.280082800828,-53.0157034895272],[-68.30528305283052,-53.007260603177784],[-68.32328323283232,-53.007260603177784],[-68.34848348483484,-53.0157034895272],[-68.38088380883808,-53.030900684956144],[-68.40968409684096,-53.04778645765497],[-68.460084600846,-53.08662373486227],[-68.52128521285212,-53.12039528025993],[-68.55368553685537,-53.16767544381664],[-68.56448564485645,-53.2014469892143],[-68.550085500855,-53.238595689151715],[-68.51048510485104,-53.2689900800096],[-68.45288452884529,-53.29769589359761],[-68.40968409684096,-53.299384470867494],[-68.36648366483665,-53.30951593448679],[-68.29448294482944,-53.319647398106085],[-68.19008190081901,-53.31289308902656],[-68.11088110881109,-53.343287479884445],[-68.09288092880928,-53.37537044801222],[-68.07488074880749,-53.39563337525081],[-68.0820808208082,-53.429404920648466],[-68.07848078480784,-53.43784780699788],[-68.06768067680676,-53.45642215696658],[-68.05688056880568,-53.5037023205233],[-68.0460804608046,-53.52396524776189],[-67.9920799207992,-53.588131184017435],[-67.98487984879849,-53.60163980217649],[-67.7940779407794,-53.72659452014781],[-67.72567725677257,-53.76036606554547],[-67.7040770407704,-53.775563260974415],[-67.69687696876969,-53.79076045640336],[-67.70767707677076,-53.80426907456242],[-67.68247682476824,-53.80258049729254],[-67.66087660876609,-53.80089192002266],[-67.62847628476284,-53.812711960911834],[-67.55647556475564,-53.836352042690194],[-67.54927549275493,-53.84817208357937],[-67.5780757807578,-53.851549238119134],[-67.58887588875888,-53.87012358808785],[-67.58167581675816,-53.8937636698662],[-67.57087570875709,-53.90727228802527],[-67.29727297272973,-54.05417851050506],[-67.14247142471424,-54.12341017857025],[-67.02727027270272,-54.15549314669802],[-66.96246962469624,-54.182510383016144],[-66.94446944469445,-54.19939615571497],[-66.90846908469084,-54.21290477387403],[-66.76806768067681,-54.25005347381145],[-66.70326703267033,-54.288890751018755],[-66.65286652866529,-54.346302378194764],[-66.55566555665557,-54.40371400537078],[-66.52686526865268,-54.429042664419015],[-66.49086490864909,-54.4408627053082],[-66.48366483664836,-54.46619136435644],[-66.44766447664476,-54.47294567343597],[-66.41886418864188,-54.476322827975736],[-66.37566375663756,-54.48476571432515],[-66.28926289262893,-54.52022583699269],[-65.94365943659436,-54.619851895915765],[-65.92925929259292,-54.62322905045553],[-65.9040590405904,-54.62491762772541],[-65.88965889658895,-54.6266062049953],[-65.85365853658536,-54.645180554964],[-65.84285842858428,-54.64686913223389],[-65.76725767257672,-54.65024628677365],[-65.69885698856989,-54.66206632766283],[-65.45765457654576,-54.640114823154356],[-65.40725407254072,-54.645180554964],[-65.37845378453784,-54.645180554964],[-65.31005310053101,-54.6266062049953],[-65.15525155251552,-54.640114823154356]]],[[[-73.83853838538386,-52.701628117329015],[-73.85653856538565,-52.701628117329015],[-73.85653856538565,-52.703316694598904],[-73.86373863738638,-52.70669384913867],[-73.87093870938709,-52.71513673548808],[-73.8781387813878,-52.71513673548808],[-73.88533885338853,-52.70838242640855],[-73.89253892538925,-52.70838242640855],[-73.89613896138961,-52.71007100367843],[-73.90333903339032,-52.71513673548808],[-73.90693906939069,-52.72020246729773],[-73.91413914139142,-52.72189104456761],[-73.93573935739357,-52.72020246729773],[-73.94653946539465,-52.71682531275796],[-73.95373953739536,-52.70838242640855],[-73.95013950139501,-52.68811949916996],[-73.93933939339394,-52.67629945828078],[-73.91053910539105,-52.65603653104218],[-73.86373863738638,-52.61213352202524],[-73.84573845738457,-52.598624903866174],[-73.87453874538745,-52.61044494475535],[-73.95733957339573,-52.65603653104218],[-73.98253982539825,-52.65265937650242],[-73.98253982539825,-52.63239644926383],[-73.9681396813968,-52.61719925383488],[-73.88533885338853,-52.56485335846852],[-73.87093870938709,-52.54965616303958],[-73.91053910539105,-52.559787626658874],[-73.99333993339933,-52.61213352202524],[-74.03654036540365,-52.65603653104218],[-74.12294122941229,-52.70669384913867],[-74.14454144541445,-52.70669384913867],[-74.14814148141481,-52.69656238551937],[-74.13734137341373,-52.686430921900076],[-74.12654126541265,-52.666167994661485],[-74.18054180541804,-52.64759364469277],[-74.18774187741877,-52.61719925383488],[-74.18414184141841,-52.586804862977],[-74.14454144541445,-52.57498482208781],[-74.09774097740977,-52.57160766754805],[-74.0509405094051,-52.56316478119864],[-74.01854018540185,-52.537836122150395],[-73.97533975339753,-52.498998844943095],[-73.94293942939429,-52.48211307224427],[-73.94653946539465,-52.47029303135509],[-73.98613986139861,-52.46691587681532],[-74.03294032940329,-52.475358763164735],[-74.04374043740437,-52.45171868138638],[-74.02934029340292,-52.4297671768779],[-73.97533975339753,-52.42639002233814],[-73.93933939339394,-52.42470144506826],[-73.89613896138961,-52.40781567236943],[-73.85653856538565,-52.41963571325861],[-73.82053820538205,-52.42470144506826],[-73.78813788137882,-52.42807859960802],[-73.77373773737737,-52.40781567236943],[-73.74853748537485,-52.39937278602002],[-73.72693726937268,-52.40443851782966],[-73.70533705337053,-52.4398986404972],[-73.67653676536764,-52.47367018589485],[-73.67653676536764,-52.48549022678403],[-73.68733687336874,-52.50068742221298],[-73.69453694536945,-52.50744173129251],[-73.7161371613716,-52.51250746310215],[-73.72333723337233,-52.517573194911805],[-73.73053730537305,-52.52601608126122],[-73.74133741337413,-52.54627900849981],[-73.7521375213752,-52.54965616303958],[-73.78093780937809,-52.54965616303958],[-73.78813788137882,-52.55472189484922],[-73.78093780937809,-52.56316478119864],[-73.77013770137701,-52.57329624481793],[-73.75933759337593,-52.5766733993577],[-73.73773737737378,-52.59355917205652],[-73.74853748537485,-52.62733071745418],[-73.77373773737737,-52.6644794173916],[-73.79533795337953,-52.686430921900076],[-73.80613806138061,-52.69318523097961],[-73.83853838538386,-52.701628117329015]]],[[[-74.67374673746737,-52.3909298996706],[-74.70254702547025,-52.38586416786095],[-74.70254702547025,-52.350404045193415],[-74.71334713347133,-52.34364973611389],[-74.74574745747456,-52.341961158844],[-74.75654756547566,-52.36560124062236],[-74.78534785347853,-52.36728981789224],[-74.81414814148141,-52.350404045193415],[-74.82134821348212,-52.32169823160541],[-74.79974799747997,-52.30143530436682],[-74.8069480694807,-52.28454953166799],[-74.87534875348753,-52.25584371807999],[-74.90774907749078,-52.2355807908414],[-74.91494914949149,-52.21869501814257],[-74.91134911349113,-52.20349782271362],[-74.90054900549005,-52.189989204554564],[-74.8789487894879,-52.186612050014794],[-74.86814868148682,-52.19336635909433],[-74.83214832148322,-52.21700644087269],[-74.81414814148141,-52.23726936811128],[-74.79254792547925,-52.23220363630163],[-74.760147601476,-52.21362928633292],[-74.68454684546845,-52.21362928633292],[-74.67374673746737,-52.210252131793155],[-74.64494644946448,-52.2051863999835],[-74.61974619746196,-52.20349782271362],[-74.5909459094591,-52.21362928633292],[-74.57654576545765,-52.2355807908414],[-74.5441454414544,-52.24571225446069],[-74.53694536945369,-52.272729490778815],[-74.54054540545405,-52.28961526347764],[-74.56214562145621,-52.31494392252588],[-74.56934569345692,-52.33689542703436],[-74.57294572945729,-52.36560124062236],[-74.59454594545944,-52.394307054210365],[-74.67374673746737,-52.3909298996706]]],[[[-74.88974889748897,-52.00255712759758],[-74.90414904149041,-52.005934282137346],[-74.90054900549005,-52.01775432302652],[-74.89334893348934,-52.03126294118559],[-74.8861488614886,-52.043082982074765],[-74.95094950949509,-52.110626072870076],[-74.96534965349653,-52.1173803819496],[-74.97614976149761,-52.11231465013996],[-74.97254972549725,-52.10049460925078],[-74.94734947349473,-52.05659160023383],[-74.99054990549905,-52.09205172290137],[-75.01575015750157,-52.10387176379054],[-75.02295022950229,-52.085297413821834],[-75.00855008550086,-52.07516595020254],[-74.99054990549905,-52.065034486583244],[-74.97974979749797,-52.05321444569406],[-74.97614976149761,-52.03632867299523],[-74.99414994149942,-52.04139440480488],[-75.00855008550086,-52.03632867299523],[-75.01575015750157,-52.027885786645825],[-75.03735037350373,-52.01775432302652],[-75.05175051750517,-52.00762285940723],[-75.06615066150661,-51.99411424124817],[-75.06975069750698,-51.982294200358986],[-75.06255062550625,-51.96878558219993],[-75.02295022950229,-51.965408427660165],[-75.01575015750157,-51.9518998095011],[-75.00855008550086,-51.946834077691456],[-74.97614976149761,-51.93501403680227],[-74.9689496894969,-51.92657115045286],[-74.99054990549905,-51.92825972772274],[-75.00855008550086,-51.93332545953239],[-75.02295022950229,-51.93332545953239],[-75.03735037350373,-51.921505418643214],[-75.00855008550086,-51.88604529597568],[-74.98334983349834,-51.842142286958726],[-74.95814958149582,-51.8151250506406],[-74.9221492214922,-51.837076555149075],[-74.9329493294933,-51.855650905117784],[-74.91494914949149,-51.8640937914672],[-74.8861488614886,-51.86915952327685],[-74.86454864548645,-51.879290986896144],[-74.85734857348574,-51.86747094600697],[-74.83934839348393,-51.84889659603826],[-74.83214832148322,-51.837076555149075],[-74.85374853748537,-51.838765132418956],[-74.86814868148682,-51.83201082333943],[-74.86814868148682,-51.82019078245025],[-74.85374853748537,-51.803305009751426],[-74.87534875348753,-51.79148496886224],[-74.88254882548826,-51.78473065978271],[-74.8861488614886,-51.77291061889353],[-74.88254882548826,-51.76446773254412],[-74.87174871748716,-51.76446773254412],[-74.85734857348574,-51.766156309814],[-74.84654846548464,-51.76277915527424],[-74.84654846548464,-51.756024846194705],[-74.86094860948609,-51.74758195984529],[-74.86454864548645,-51.735761918956115],[-74.86094860948609,-51.72056472352717],[-74.85374853748537,-51.70705610536811],[-74.86454864548645,-51.70199037355846],[-74.87534875348753,-51.70030179628858],[-74.88974889748897,-51.70199037355846],[-74.90054900549005,-51.70030179628858],[-74.89334893348934,-51.6884817553994],[-74.89334893348934,-51.68341602358975],[-74.8861488614886,-51.68003886904999],[-74.8861488614886,-51.673284559970455],[-74.9221492214922,-51.65639878727163],[-74.92574925749257,-51.636135860033036],[-74.90414904149041,-51.62093866460409],[-74.86454864548645,-51.61756151006433],[-74.87174871748716,-51.62600439641374],[-74.86454864548645,-51.63275870549327],[-74.85734857348574,-51.63782443730292],[-74.83934839348393,-51.64626732365233],[-74.82134821348212,-51.63275870549327],[-74.8069480694807,-51.634447282763155],[-74.79254792547925,-51.64457874638245],[-74.78174781747818,-51.6597759418114],[-74.78894788947889,-51.68003886904999],[-74.77814778147781,-51.71381041444764],[-74.79254792547925,-51.72900760987658],[-74.77454774547745,-51.737450496225996],[-74.77094770947708,-51.75264769165494],[-74.77094770947708,-51.76784488708389],[-74.76374763747637,-51.78304208251283],[-74.77094770947708,-51.78473065978271],[-74.78174781747818,-51.78810781432248],[-74.79254792547925,-51.78979639159236],[-74.78534785347853,-51.80668216429119],[-74.78894788947889,-51.818502205180366],[-74.79254792547925,-51.83032224606955],[-74.80334803348033,-51.85733948238767],[-74.82494824948249,-51.880979564166026],[-74.83214832148322,-51.89617675959497],[-74.83214832148322,-51.92994830499263],[-74.83574835748357,-51.946834077691456],[-74.8429484294843,-51.95527696404086],[-74.85734857348574,-51.962031273120395],[-74.8789487894879,-51.99411424124817],[-74.88974889748897,-52.00255712759758]]],[[[-74.38574385743857,-50.98096787931855],[-74.37854378543786,-51.00291938382703],[-74.37854378543786,-51.02824804287526],[-74.38934389343893,-51.03837950649456],[-74.40734407344073,-51.02149373379574],[-74.40374403744038,-51.036690929224676],[-74.39654396543965,-51.0637081655428],[-74.39294392943928,-51.08059393824163],[-74.39654396543965,-51.08734824732116],[-74.41094410944109,-51.078905360971746],[-74.42174421744217,-51.06201958827292],[-74.43254432544325,-51.03162519741503],[-74.44334443344432,-51.014739424716204],[-74.46134461344613,-51.00123080655714],[-74.47574475744757,-50.99447649747761],[-74.49014490144901,-50.997853652017376],[-74.53694536945369,-51.02149373379574],[-74.57654576545765,-51.03162519741503],[-74.61614616146161,-51.035002351954795],[-74.6341463414634,-51.040068083764446],[-74.63774637746377,-51.05188812465362],[-74.63054630546306,-51.06877389735245],[-74.62694626946269,-51.08734824732116],[-74.70974709747097,-51.10423402001999],[-74.72414724147241,-51.10423402001999],[-74.73854738547385,-51.10085686548022],[-74.74934749347493,-51.092413979130804],[-74.75654756547566,-51.077216783701864],[-74.74214742147421,-51.073839629162094],[-74.73854738547385,-51.06539674281268],[-74.74214742147421,-51.053576701923504],[-74.74934749347493,-51.04175666103433],[-74.73134731347314,-51.035002351954795],[-74.70974709747097,-51.03331377468491],[-74.69174691746917,-51.02655946560538],[-74.6809468094681,-51.00798511563667],[-74.74574745747456,-51.00967369290655],[-74.760147601476,-51.00460796109691],[-74.77454774547745,-50.992787920207725],[-74.77454774547745,-51.00291938382703],[-74.77454774547745,-51.02149373379574],[-74.78174781747818,-51.03837950649456],[-74.79974799747997,-51.06539674281268],[-74.81054810548105,-51.073839629162094],[-74.83214832148322,-51.077216783701864],[-74.83214832148322,-51.07552820643198],[-74.86454864548645,-51.0637081655428],[-74.88254882548826,-51.060331011003036],[-74.88974889748897,-51.056953856463274],[-74.89334893348934,-51.04851097011386],[-74.83934839348393,-50.974213570239016],[-74.85374853748537,-50.97083641569925],[-74.85734857348574,-50.97083641569925],[-74.86454864548645,-50.974213570239016],[-74.8789487894879,-50.9657706838896],[-74.88974889748897,-50.96070495207996],[-74.90054900549005,-50.959016374810076],[-74.91494914949149,-50.96070495207996],[-74.9221492214922,-50.96745926115949],[-74.9329493294933,-50.977590724778786],[-74.94374943749438,-50.98265645658843],[-74.96174961749617,-50.974213570239016],[-74.96534965349653,-50.96408210661972],[-74.96534965349653,-50.95057348846066],[-74.96174961749617,-50.935376293031716],[-74.95454954549545,-50.92524482941242],[-74.94374943749438,-50.92017909760277],[-74.92934929349293,-50.91849052033289],[-74.90054900549005,-50.92017909760277],[-74.92934929349293,-50.89485043855453],[-74.92934929349293,-50.888096129475],[-74.90414904149041,-50.88471897493523],[-74.8789487894879,-50.88640755220512],[-74.69534695346952,-50.91849052033289],[-74.65934659346593,-50.933687715761835],[-74.65214652146521,-50.92355625214254],[-74.64494644946448,-50.91849052033289],[-74.6341463414634,-50.92017909760277],[-74.62694626946269,-50.92524482941242],[-74.59814598145981,-50.89485043855453],[-74.58374583745837,-50.88471897493523],[-74.64134641346413,-50.88471897493523],[-74.65574655746558,-50.87458751131594],[-74.64134641346413,-50.847570274997814],[-74.61974619746196,-50.83743881137852],[-74.56934569345692,-50.832373079568875],[-74.55854558545585,-50.81717588413993],[-74.5909459094591,-50.82224161594957],[-74.60534605346054,-50.81211015233028],[-74.61614616146161,-50.79353580236157],[-74.6341463414634,-50.77665002966274],[-74.67734677346773,-50.746255638804854],[-74.6809468094681,-50.73612417518556],[-74.65934659346593,-50.727681288836145],[-74.55134551345513,-50.751321370614505],[-74.54054540545405,-50.76314141150368],[-74.48654486544865,-50.78171576147239],[-74.47574475744757,-50.8002901114411],[-74.4649446494465,-50.82393019321946],[-74.44334443344432,-50.828995925029105],[-74.4181441814418,-50.828995925029105],[-74.40014400144001,-50.84419312045805],[-74.39654396543965,-50.86952177950629],[-74.40374403744038,-50.889784706744884],[-74.43614436144361,-50.92524482941242],[-74.4181441814418,-50.933687715761835],[-74.40374403744038,-50.95057348846066],[-74.38574385743857,-50.98096787931855]]],[[[-75.04095040950409,-50.28865119866664],[-75.0589505895059,-50.297094085016056],[-75.07695076950769,-50.313979857714884],[-75.0949509495095,-50.32411132133418],[-75.12015120151202,-50.31735701225465],[-75.11655116551165,-50.32411132133418],[-75.11295112951129,-50.33255420768359],[-75.11655116551165,-50.34099709403301],[-75.12375123751237,-50.34437424857277],[-75.13455134551346,-50.34606282584265],[-75.14175141751417,-50.352817134922184],[-75.14175141751417,-50.357882866731835],[-75.14535145351454,-50.36463717581137],[-75.17055170551706,-50.378145793970425],[-75.18135181351813,-50.38152294851019],[-75.1849518495185,-50.38658868031984],[-75.18855188551885,-50.39503156666925],[-75.19215192151921,-50.401785875748786],[-75.20295202952029,-50.415294493907844],[-75.21015210152102,-50.42711453479702],[-75.22455224552245,-50.43724599841632],[-75.24615246152462,-50.438934575686204],[-75.30735307353073,-50.43218026660667],[-75.32175321753218,-50.42711453479702],[-75.32535325353253,-50.418671648447614],[-75.32535325353253,-50.4102287620982],[-75.32175321753218,-50.4000972984789],[-75.31815318153181,-50.39165441212949],[-75.27495274952749,-50.373080062160774],[-75.27495274952749,-50.37139148489089],[-75.25335253352533,-50.36294859854148],[-75.23175231752317,-50.34268567130289],[-75.19575195751958,-50.30215981682571],[-75.21375213752137,-50.30384839409559],[-75.24255242552425,-50.313979857714884],[-75.27135271352714,-50.32748847587394],[-75.29655296552966,-50.34606282584265],[-75.30735307353073,-50.34775140311254],[-75.31455314553145,-50.34268567130289],[-75.30735307353073,-50.33255420768359],[-75.28935289352893,-50.3224227440643],[-75.28575285752858,-50.315668434984765],[-75.28935289352893,-50.30891412590523],[-75.30375303753037,-50.30553697136547],[-75.3109531095311,-50.310602703175114],[-75.31815318153181,-50.320734166794416],[-75.32535325353253,-50.32917705314383],[-75.33615336153362,-50.334242784953474],[-75.3469534695347,-50.33255420768359],[-75.35775357753577,-50.33086563041371],[-75.36855368553685,-50.32917705314383],[-75.39015390153901,-50.337619939493244],[-75.41175411754118,-50.354505712192065],[-75.43335433354333,-50.36801433035113],[-75.45495454954549,-50.36463717581137],[-75.4621546215462,-50.34943998038242],[-75.44415444154441,-50.276831157777465],[-75.4369543695437,-50.26838827142805],[-75.4261542615426,-50.2633225396184],[-75.40095400954009,-50.258256807808756],[-75.40455404554045,-50.24981392145934],[-75.42255422554226,-50.234616726030396],[-75.41895418954189,-50.22279668514122],[-75.41535415354153,-50.21604237606169],[-75.41175411754118,-50.212665221521924],[-75.40815408154081,-50.20759948971227],[-75.39735397353974,-50.172139367044736],[-75.39015390153901,-50.16200790342544],[-75.36855368553685,-50.146810707996494],[-75.3469534695347,-50.14512213072661],[-75.29655296552966,-50.15863074888568],[-75.26775267752677,-50.15863074888568],[-75.26055260552606,-50.16200790342544],[-75.2569525695257,-50.170450789774854],[-75.26055260552606,-50.17720509885439],[-75.26775267752677,-50.18395940793391],[-75.27495274952749,-50.1856479852038],[-75.31815318153181,-50.18902513974356],[-75.33975339753397,-50.192402294283326],[-75.35415354153541,-50.20084518063274],[-75.33255332553325,-50.21941953060145],[-75.31815318153181,-50.22617383968098],[-75.30735307353073,-50.2244852624111],[-75.29295292952929,-50.21773095333157],[-75.28575285752858,-50.22617383968098],[-75.27855278552785,-50.23968245784005],[-75.27135271352714,-50.24812534418946],[-75.2569525695257,-50.24981392145934],[-75.24255242552425,-50.24643676691957],[-75.22815228152281,-50.24474818964969],[-75.21015210152102,-50.251502498729224],[-75.19935199351993,-50.25656823053887],[-75.17775177751777,-50.25656823053887],[-75.14535145351454,-50.24812534418946],[-75.15615156151561,-50.22110810787134],[-75.14535145351454,-50.19746802609298],[-75.12735127351273,-50.170450789774854],[-75.12015120151202,-50.13836782164708],[-75.16335163351633,-50.16200790342544],[-75.18855188551885,-50.16369648069532],[-75.21375213752137,-50.15525359434591],[-75.22815228152281,-50.148499285266375],[-75.24615246152462,-50.128236358027785],[-75.2569525695257,-50.12317062621814],[-75.28935289352893,-50.1265477807579],[-75.30375303753037,-50.12485920348802],[-75.32175321753218,-50.113039162598845],[-75.33975339753397,-50.09615338990002],[-75.35775357753577,-50.08264477174095],[-75.3829538295383,-50.07589046266142],[-75.38655386553866,-50.07251330812166],[-75.39735397353974,-50.047184649073415],[-75.40095400954009,-50.038741762724],[-75.39375393753937,-50.031987453644476],[-75.3829538295383,-50.03367603091436],[-75.36495364953649,-50.03536460818424],[-75.35415354153541,-50.03536460818424],[-75.34335343353433,-50.028610299104706],[-75.32895328953289,-50.006658794596234],[-75.32535325353253,-50.00159306278658],[-75.31455314553145,-49.9999044855167],[-75.29655296552966,-50.003281640056464],[-75.28575285752858,-50.008347371866115],[-75.28575285752858,-50.01847883548541],[-75.29295292952929,-50.028610299104706],[-75.28575285752858,-50.04043033999388],[-75.28215282152821,-50.050561803613185],[-75.27855278552785,-50.0590046899626],[-75.27135271352714,-50.067447576312006],[-75.26055260552606,-50.06069326723248],[-75.23175231752317,-50.031987453644476],[-75.22815228152281,-50.028610299104706],[-75.22815228152281,-50.03029887637459],[-75.20295202952029,-50.03536460818424],[-75.17055170551706,-50.02354456729506],[-75.15615156151561,-50.02185599002517],[-75.12735127351273,-50.03029887637459],[-75.12375123751237,-50.0488732263433],[-75.1309513095131,-50.069136153581894],[-75.13455134551346,-50.08264477174095],[-75.12015120151202,-50.09277623536025],[-75.10935109351094,-50.0877105035506],[-75.09855098550985,-50.07926761720119],[-75.08415084150842,-50.07589046266142],[-75.08055080550805,-50.08264477174095],[-75.05535055350553,-50.12317062621814],[-75.05175051750517,-50.12485920348802],[-75.04455044550446,-50.12485920348802],[-75.03375033750338,-50.12148204894825],[-75.03375033750338,-50.11472773986873],[-75.03375033750338,-50.107973430789194],[-75.03015030150301,-50.10459627624943],[-75.01575015750157,-50.09953054443978],[-75.00135001350013,-50.0978419671699],[-74.98694986949869,-50.09277623536025],[-74.98334983349834,-50.07926761720119],[-74.97614976149761,-50.07251330812166],[-74.96534965349653,-50.07251330812166],[-74.95454954549545,-50.07926761720119],[-74.94734947349473,-50.09446481263013],[-74.95094950949509,-50.109662008059075],[-74.96174961749617,-50.11641631713861],[-74.99054990549905,-50.12485920348802],[-75.06975069750698,-50.17889367612427],[-75.06975069750698,-50.1856479852038],[-75.05175051750517,-50.1856479852038],[-75.03735037350373,-50.18395940793391],[-74.99414994149942,-50.16707363523509],[-74.97974979749797,-50.1653850579652],[-74.94734947349473,-50.1653850579652],[-74.94374943749438,-50.16707363523509],[-74.9329493294933,-50.172139367044736],[-74.92934929349293,-50.172139367044736],[-74.9221492214922,-50.170450789774854],[-74.91854918549186,-50.16031932615556],[-74.91854918549186,-50.15863074888568],[-74.90054900549005,-50.151876439806145],[-74.89334893348934,-50.151876439806145],[-74.8789487894879,-50.15525359434591],[-74.86814868148682,-50.15863074888568],[-74.86094860948609,-50.15525359434591],[-74.84654846548464,-50.13836782164708],[-74.85014850148501,-50.13499066710732],[-74.85374853748537,-50.129924935297666],[-74.85374853748537,-50.12485920348802],[-74.85734857348574,-50.11810489440849],[-74.81414814148141,-50.11810489440849],[-74.79974799747997,-50.12485920348802],[-74.79254792547925,-50.14512213072661],[-74.79254792547925,-50.170450789774854],[-74.81414814148141,-50.195779448823096],[-74.81054810548105,-50.214353798791805],[-74.83214832148322,-50.21941953060145],[-74.94374943749438,-50.21941953060145],[-74.95094950949509,-50.2244852624111],[-74.95454954549545,-50.232928148760514],[-74.95094950949509,-50.24643676691957],[-74.95094950949509,-50.25656823053887],[-74.97974979749797,-50.26669969415817],[-75.01935019350194,-50.28527404412688],[-75.04095040950409,-50.28865119866664]]],[[[-75.21375213752137,-49.0137753599052],[-75.20655206552065,-49.034038287143794],[-75.21375213752137,-49.05261263711251],[-75.22815228152281,-49.06612125527157],[-75.24975249752497,-49.0728755643511],[-75.27495274952749,-49.062744100731805],[-75.29295292952929,-49.039104018953445],[-75.31455314553145,-48.96480661907861],[-75.31455314553145,-48.958052309999076],[-75.31815318153181,-48.952986578189424],[-75.33255332553325,-48.952986578189424],[-75.35055350553505,-48.96480661907861],[-75.36495364953649,-48.96649519634849],[-75.37215372153722,-48.952986578189424],[-75.37575375753757,-48.96311804180873],[-75.37935379353793,-48.96818377361837],[-75.38655386553866,-48.96987235088825],[-75.39375393753937,-48.97324950542802],[-75.40095400954009,-48.9749380826979],[-75.41175411754118,-48.97324950542802],[-75.41895418954189,-48.976626659967785],[-75.42255422554226,-48.981692391777436],[-75.4261542615426,-48.99182385539673],[-75.4261542615426,-48.99351243266661],[-75.46575465754657,-49.03572686441368],[-75.48015480154801,-49.04248117349321],[-75.49815498154982,-49.039104018953445],[-75.51975519755197,-49.03066113260403],[-75.53415534155342,-49.018841091714854],[-75.52695526955269,-49.00364389628591],[-75.5089550895509,-48.99182385539673],[-75.49455494554945,-48.98338096904732],[-75.48015480154801,-48.97156092815814],[-75.46935469354693,-48.952986578189424],[-75.48735487354872,-48.95129800091954],[-75.50535505355053,-48.96311804180873],[-75.52335523355234,-48.976626659967785],[-75.5449554495545,-48.98675812358708],[-75.57015570155701,-48.99013527812685],[-75.5989559895599,-48.98844670085696],[-75.62415624156242,-48.98000381450755],[-75.64575645756457,-48.96649519634849],[-75.65655656556565,-48.95129800091954],[-75.66015660156602,-48.932723650950834],[-75.65655656556565,-48.91077214644236],[-75.64575645756457,-48.89050921920377],[-75.6349563495635,-48.871934869235055],[-75.61335613356133,-48.858426251076],[-75.59535595355953,-48.858426251076],[-75.58455584555846,-48.877000601044706],[-75.57735577355773,-48.86011482834588],[-75.56655566555665,-48.851671941996464],[-75.55575555755557,-48.853360519266346],[-75.53775537755376,-48.86349198288565],[-75.54135541355413,-48.833097592027755],[-75.52335523355234,-48.83478616929764],[-75.49455494554945,-48.84660621018682],[-75.46935469354693,-48.84322905564705],[-75.48015480154801,-48.856737673806116],[-75.51975519755197,-48.8972635282833],[-75.52695526955269,-48.90739499190259],[-75.51255512555124,-48.90908356917248],[-75.48735487354872,-48.8972635282833],[-75.46575465754657,-48.88375491012424],[-75.45495454954549,-48.87362344650494],[-75.44415444154441,-48.86180340561576],[-75.4261542615426,-48.84322905564705],[-75.40455404554045,-48.82803186021811],[-75.39375393753937,-48.82972043748799],[-75.39735397353974,-48.838163323837406],[-75.40455404554045,-48.84998336472658],[-75.41535415354153,-48.858426251076],[-75.4261542615426,-48.86349198288565],[-75.4261542615426,-48.86855771469529],[-75.4261542615426,-48.87868917831459],[-75.42255422554226,-48.88375491012424],[-75.40815408154081,-48.877000601044706],[-75.40095400954009,-48.89219779647365],[-75.39375393753937,-48.90739499190259],[-75.37935379353793,-48.915837878252006],[-75.35775357753577,-48.919215032791776],[-75.3829538295383,-48.88037775558447],[-75.38655386553866,-48.86686913742541],[-75.37935379353793,-48.851671941996464],[-75.36135361353614,-48.84998336472658],[-75.32895328953289,-48.856737673806116],[-75.30735307353073,-48.86518056015553],[-75.28575285752858,-48.88375491012424],[-75.26775267752677,-48.90739499190259],[-75.26055260552606,-48.939477960030366],[-75.23895238952389,-48.98675812358708],[-75.23895238952389,-48.996889587206375],[-75.23535235352354,-49.000266741746145],[-75.23175231752317,-49.00533247355579],[-75.2209522095221,-49.01208678263532],[-75.21375213752137,-49.0137753599052]]],[[[-75.19935199351993,-49.77194655408254],[-75.20655206552065,-49.760126513193356],[-75.21015210152102,-49.75337220411383],[-75.20655206552065,-49.716223504176405],[-75.20655206552065,-49.70778061782699],[-75.21375213752137,-49.699337731477584],[-75.22815228152281,-49.69258342239805],[-75.25335253352533,-49.6875176905884],[-75.26415264152641,-49.67907480423899],[-75.26055260552606,-49.67400907242934],[-75.25335253352533,-49.657123299730515],[-75.24975249752497,-49.65205756792086],[-75.28215282152821,-49.64023752703169],[-75.29295292952929,-49.638548949761805],[-75.29655296552966,-49.633483217952154],[-75.29655296552966,-49.62166317706298],[-75.29655296552966,-49.6098431361738],[-75.28575285752858,-49.60308882709427],[-75.26775267752677,-49.5997116725545],[-75.25335253352533,-49.58789163166532],[-75.23535235352354,-49.555808663537555],[-75.25335253352533,-49.56256297261708],[-75.28215282152821,-49.56425154988696],[-75.30375303753037,-49.5608743953472],[-75.31815318153181,-49.54905435445802],[-75.3109531095311,-49.53723431356884],[-75.26775267752677,-49.510217077250715],[-75.2569525695257,-49.493331304551894],[-75.27135271352714,-49.50008561363142],[-75.32175321753218,-49.5119056545206],[-75.33615336153362,-49.5119056545206],[-75.35055350553505,-49.49670845909166],[-75.3469534695347,-49.48657699547236],[-75.33615336153362,-49.47813410912295],[-75.32535325353253,-49.45955975915424],[-75.35055350553505,-49.45955975915424],[-75.36135361353614,-49.46124833642412],[-75.37215372153722,-49.46631406823377],[-75.37575375753757,-49.45618260461447],[-75.37215372153722,-49.44942829553494],[-75.35775357753577,-49.432542522836115],[-75.3829538295383,-49.434231100106],[-75.40815408154081,-49.427476791026464],[-75.42255422554226,-49.41059101832764],[-75.43335433354333,-49.3852623592794],[-75.44055440554405,-49.370065163850455],[-75.45495454954549,-49.349802236611865],[-75.45855458554585,-49.34304792753233],[-75.4621546215462,-49.33798219572268],[-75.46575465754657,-49.33291646391304],[-75.46935469354693,-49.32278500029374],[-75.4621546215462,-49.305899227594914],[-75.44775447754478,-49.29070203216597],[-75.4261542615426,-49.27888199127679],[-75.40815408154081,-49.27550483673702],[-75.3829538295383,-49.28057056854667],[-75.36855368553685,-49.29576776397562],[-75.35775357753577,-49.31434211394433],[-75.33255332553325,-49.346425082072095],[-75.28935289352893,-49.41565675013729],[-75.20655206552065,-49.47982268639283],[-75.16695166951669,-49.50177419090131],[-75.1741517415174,-49.48488841820248],[-75.19215192151921,-49.46631406823377],[-75.20295202952029,-49.451116872804825],[-75.18855188551885,-49.43929683191565],[-75.2209522095221,-49.42578821375658],[-75.26055260552606,-49.40214813197822],[-75.28935289352893,-49.370065163850455],[-75.29295292952929,-49.33967077299256],[-75.30735307353073,-49.32953930937327],[-75.32175321753218,-49.31603069121421],[-75.32535325353253,-49.29914491851538],[-75.31815318153181,-49.28225914581655],[-75.32175321753218,-49.263684795847844],[-75.30735307353073,-49.25524190949843],[-75.27855278552785,-49.25524190949843],[-75.26055260552606,-49.263684795847844],[-75.1849518495185,-49.346425082072095],[-75.17775177751777,-49.35993370023116],[-75.17055170551706,-49.366688009310685],[-75.15255152551525,-49.37850805019987],[-75.13455134551346,-49.38019662746975],[-75.09135091350913,-49.370065163850455],[-75.10935109351094,-49.36331085477092],[-75.14535145351454,-49.35824512296128],[-75.15975159751598,-49.349802236611865],[-75.16695166951669,-49.33798219572268],[-75.18855188551885,-49.29576776397562],[-75.18855188551885,-49.289013454896086],[-75.15975159751598,-49.29407918670573],[-75.11295112951129,-49.31940784575397],[-75.09855098550985,-49.30927638213468],[-75.10215102151021,-49.29914491851538],[-75.11295112951129,-49.285636300356316],[-75.11295112951129,-49.27381625946714],[-75.0949509495095,-49.26706195038761],[-75.06615066150661,-49.268750527657495],[-75.05175051750517,-49.26706195038761],[-75.03735037350373,-49.26030764130808],[-75.05535055350553,-49.250176177688786],[-75.07335073350733,-49.23497898225984],[-75.08775087750877,-49.21640463229113],[-75.09135091350913,-49.1995188595923],[-75.06615066150661,-49.2096503232116],[-75.00135001350013,-49.26706195038761],[-74.95454954549545,-49.29576776397562],[-74.92934929349293,-49.31434211394433],[-74.9221492214922,-49.33291646391304],[-74.91854918549186,-49.34473650480221],[-74.91494914949149,-49.35993370023116],[-74.90774907749078,-49.368376586580574],[-74.89334893348934,-49.36331085477092],[-74.8861488614886,-49.31265353667444],[-74.8861488614886,-49.25524190949843],[-74.87174871748716,-49.23329040498996],[-74.84654846548464,-49.240044714069484],[-74.86814868148682,-49.224847518640544],[-74.87534875348753,-49.21640463229113],[-74.8789487894879,-49.202896014132065],[-74.87534875348753,-49.19107597324289],[-74.86814868148682,-49.184321664163356],[-74.85734857348574,-49.17925593235371],[-74.84654846548464,-49.17925593235371],[-74.84654846548464,-49.17250162327418],[-74.85734857348574,-49.162370159654884],[-74.85734857348574,-49.15223869603559],[-74.84654846548464,-49.140418655146405],[-74.83934839348393,-49.13197576879699],[-74.84654846548464,-49.12691003698735],[-74.85014850148501,-49.121844305177696],[-74.85734857348574,-49.11002426428852],[-74.84654846548464,-49.10664710974876],[-74.83214832148322,-49.10495853247887],[-74.80334803348033,-49.10326995520899],[-74.95454954549545,-49.00702105082567],[-74.93654936549365,-48.998578164476264],[-74.85734857348574,-48.976626659967785],[-74.84654846548464,-48.98000381450755],[-74.81774817748177,-49.00702105082567],[-74.81774817748177,-48.9749380826979],[-74.82494824948249,-48.94960942364966],[-74.83934839348393,-48.939477960030366],[-74.86454864548645,-48.9462322691099],[-74.91494914949149,-48.97324950542802],[-74.94014940149401,-48.9850695463172],[-74.9689496894969,-48.98675812358708],[-74.96534965349653,-48.976626659967785],[-74.96174961749617,-48.97324950542802],[-74.98694986949869,-48.96818377361837],[-74.98334983349834,-48.952986578189424],[-74.95454954549545,-48.919215032791776],[-74.98694986949869,-48.92090361006166],[-75.0049500495005,-48.917526455521894],[-75.01575015750157,-48.91077214644236],[-75.01935019350194,-48.90064068282307],[-75.01575015750157,-48.89219779647365],[-75.00135001350013,-48.887132064664],[-74.98694986949869,-48.88375491012424],[-74.97254972549725,-48.88037775558447],[-74.94374943749438,-48.86686913742541],[-74.88254882548826,-48.8482947874567],[-74.87174871748716,-48.84322905564705],[-74.91494914949149,-48.84491763291693],[-74.96534965349653,-48.86180340561576],[-75.01215012150121,-48.87362344650494],[-75.05175051750517,-48.856737673806116],[-75.06255062550625,-48.836474746567525],[-75.0589505895059,-48.81621181932893],[-75.04455044550446,-48.80101462389999],[-75.02655026550265,-48.794260314820455],[-74.99774997749977,-48.80608035570963],[-74.97614976149761,-48.81114608751928],[-74.96174961749617,-48.81621181932893],[-74.95094950949509,-48.82296612840846],[-74.94014940149401,-48.82972043748799],[-74.94374943749438,-48.82127755113858],[-74.94734947349473,-48.81790039659881],[-74.95094950949509,-48.81621181932893],[-74.95814958149582,-48.81114608751928],[-74.97254972549725,-48.789194583010804],[-74.97254972549725,-48.78581742847104],[-74.97254972549725,-48.78244027393128],[-74.99774997749977,-48.78075169666139],[-75.0049500495005,-48.77906311939151],[-75.00855008550086,-48.773997387581865],[-74.98334983349834,-48.75880019215292],[-74.8789487894879,-48.71996291494562],[-74.86814868148682,-48.711520028596205],[-74.85014850148501,-48.69632283316726],[-74.82854828548285,-48.689568524087726],[-74.82134821348212,-48.70307714224679],[-74.8069480694807,-48.73684868764444],[-74.7961479614796,-48.74698015126374],[-74.79254792547925,-48.74022584218421],[-74.7961479614796,-48.72502864675526],[-74.7961479614796,-48.713208605866086],[-74.79254792547925,-48.69801141043714],[-74.78174781747818,-48.687879946817844],[-74.77094770947708,-48.68112563773831],[-74.75654756547566,-48.67774848319855],[-74.69534695346952,-48.67943706046843],[-74.6809468094681,-48.68450279227808],[-74.66654666546665,-48.69632283316726],[-74.65934659346593,-48.709831451326316],[-74.66294662946629,-48.7216514922155],[-74.6809468094681,-48.726717224025144],[-74.66654666546665,-48.730094378564914],[-74.6341463414634,-48.71827433767573],[-74.62334623346233,-48.72334006948538],[-74.61974619746196,-48.73347153310468],[-74.62694626946269,-48.74529157399385],[-74.6341463414634,-48.75711161488304],[-74.64134641346413,-48.770620233042095],[-74.63774637746377,-48.78244027393128],[-74.62694626946269,-48.80776893297951],[-74.62694626946269,-48.814523242059046],[-74.6341463414634,-48.82803186021811],[-74.65934659346593,-48.84322905564705],[-74.66654666546665,-48.856737673806116],[-74.65214652146521,-48.856737673806116],[-74.6341463414634,-48.855049096536234],[-74.61974619746196,-48.84998336472658],[-74.61254612546125,-48.84322905564705],[-74.60894608946089,-48.833097592027755],[-74.60894608946089,-48.814523242059046],[-74.61254612546125,-48.79594889209034],[-74.61614616146161,-48.78412885120116],[-74.61614616146161,-48.76386592396256],[-74.59814598145981,-48.73516011037456],[-74.56934569345692,-48.713208605866086],[-74.5441454414544,-48.70645429678655],[-74.52614526145261,-48.72334006948538],[-74.52254522545225,-48.752045883073386],[-74.52974529745298,-48.81114608751928],[-74.52974529745298,-48.86686913742541],[-74.53694536945369,-48.88206633285436],[-74.55134551345513,-48.89050921920377],[-74.56214562145621,-48.90064068282307],[-74.55854558545585,-48.919215032791776],[-74.52974529745298,-48.90570641463271],[-74.50454504545046,-48.90570641463271],[-74.49014490144901,-48.919215032791776],[-74.47574475744757,-48.9462322691099],[-74.47574475744757,-48.9749380826979],[-74.48654486544865,-48.996889587206375],[-74.5081450814508,-49.0137753599052],[-74.52974529745298,-49.02897255533415],[-74.5081450814508,-49.039104018953445],[-74.49374493744936,-49.057678368922154],[-74.48654486544865,-49.07962987343063],[-74.46134461344613,-49.120155727907814],[-74.47214472144721,-49.14886154149582],[-74.46854468544684,-49.17250162327418],[-74.4649446494465,-49.18094450962359],[-74.45414454144542,-49.19107597324289],[-74.44694446944469,-49.1995188595923],[-74.44334443344432,-49.21302747775136],[-74.44694446944469,-49.22315894137066],[-74.44694446944469,-49.23160182772007],[-74.44694446944469,-49.24342186860925],[-74.44694446944469,-49.302522073055144],[-74.44694446944469,-49.32278500029374],[-74.4649446494465,-49.38019662746975],[-74.47214472144721,-49.4240996364867],[-74.47574475744757,-49.44267398645541],[-74.48654486544865,-49.45955975915424],[-74.49374493744936,-49.4730683773133],[-74.50454504545046,-49.48319984093259],[-74.52974529745298,-49.50008561363142],[-74.53694536945369,-49.508528499980834],[-74.54054540545405,-49.51865996360013],[-74.53334533345333,-49.52372569540978],[-74.52614526145261,-49.52879142721943],[-74.51894518945188,-49.54905435445802],[-74.50454504545046,-49.56425154988696],[-74.50454504545046,-49.572694436236375],[-74.50454504545046,-49.58789163166532],[-74.5081450814508,-49.59295736347497],[-74.52974529745298,-49.60815455890391],[-74.54774547745477,-49.616597445253326],[-74.5549455494555,-49.62166317706298],[-74.55854558545585,-49.62841748614251],[-74.5549455494555,-49.6486804133811],[-74.55854558545585,-49.658811877000396],[-74.56934569345692,-49.66894334061969],[-74.58734587345873,-49.67907480423899],[-74.60534605346054,-49.69427199966793],[-74.60534605346054,-49.71284634963664],[-74.59454594545944,-49.72466639052582],[-74.57654576545765,-49.716223504176405],[-74.56214562145621,-49.699337731477584],[-74.53694536945369,-49.66894334061969],[-74.53334533345333,-49.64192610430157],[-74.52614526145261,-49.62841748614251],[-74.5081450814508,-49.619974599793096],[-74.48294482944829,-49.62335175433286],[-74.46134461344613,-49.63179464068227],[-74.44334443344432,-49.64192610430157],[-74.4289442894429,-49.657123299730515],[-74.42174421744217,-49.672320495159454],[-74.42174421744217,-49.68920626785828],[-74.42174421744217,-49.734797854145114],[-74.42534425344253,-49.74492931776442],[-74.43614436144361,-49.7466178950343],[-74.45774457744577,-49.7466178950343],[-74.46854468544684,-49.74492931776442],[-74.48294482944829,-49.736486431415],[-74.49374493744936,-49.734797854145114],[-74.5081450814508,-49.734797854145114],[-74.51534515345153,-49.738175008684884],[-74.53694536945369,-49.7466178950343],[-74.51174511745117,-49.75674935865359],[-74.45414454144542,-49.77194655408254],[-74.43614436144361,-49.78883232678136],[-74.43254432544325,-49.80909525401996],[-74.43614436144361,-49.841178222147725],[-74.44334443344432,-49.86988403573573],[-74.45414454144542,-49.885081231164676],[-74.46134461344613,-49.86144114938632],[-74.4649446494465,-49.85130968576702],[-74.47574475744757,-49.84286679941761],[-74.47574475744757,-49.863129726656204],[-74.49014490144901,-49.86988403573573],[-74.5081450814508,-49.864818303926086],[-74.52254522545225,-49.85637541757667],[-74.52614526145261,-49.86988403573573],[-74.51534515345153,-49.883392653894795],[-74.50094500945009,-49.89521269478397],[-74.48654486544865,-49.89858984932374],[-74.47214472144721,-49.907032735673155],[-74.46854468544684,-49.925607085641865],[-74.47574475744757,-49.944181435610574],[-74.48654486544865,-49.95262432195999],[-74.50454504545046,-49.95600147649975],[-74.51894518945188,-49.95937863103951],[-74.52974529745298,-49.9610672083094],[-74.55134551345513,-49.95262432195999],[-74.59454594545944,-49.91885277656233],[-74.61254612546125,-49.9120984674828],[-74.54774547745477,-49.97288724919858],[-74.53694536945369,-49.99483875370705],[-74.56214562145621,-50.004970217326346],[-74.62694626946269,-50.04211891726377],[-74.64134641346413,-50.047184649073415],[-74.65934659346593,-50.050561803613185],[-74.6809468094681,-50.050561803613185],[-74.69534695346952,-50.04211891726377],[-74.69894698946989,-50.028610299104706],[-74.69534695346952,-50.01847883548541],[-74.6809468094681,-50.008347371866115],[-74.67374673746737,-49.99483875370705],[-74.68814688146881,-49.99821590824682],[-74.72774727747277,-50.01679025821553],[-74.73494734947349,-50.02523314456494],[-74.74214742147421,-50.04043033999388],[-74.75294752947529,-50.050561803613185],[-74.76734767347673,-50.05393895815295],[-74.78174781747818,-50.0488732263433],[-74.80334803348033,-50.038741762724],[-74.81774817748177,-50.02354456729506],[-74.81774817748177,-50.004970217326346],[-74.80334803348033,-49.986395867357636],[-74.82134821348212,-49.989773021897406],[-74.83214832148322,-49.99821590824682],[-74.83934839348393,-50.01172452640588],[-74.83214832148322,-50.028610299104706],[-74.86814868148682,-50.01679025821553],[-74.85734857348574,-49.99146159916729],[-74.82134821348212,-49.964444362849164],[-74.73854738547385,-49.922229931102095],[-74.72054720547204,-49.91885277656233],[-74.70614706147062,-49.923918508371976],[-74.67734677346773,-49.944181435610574],[-74.65934659346593,-49.95262432195999],[-74.6809468094681,-49.92898424018163],[-74.70614706147062,-49.90872131294304],[-74.73494734947349,-49.89858984932374],[-74.77094770947708,-49.90534415840327],[-74.83934839348393,-49.94249285834069],[-74.88254882548826,-49.95937863103951],[-74.90054900549005,-49.9509357446901],[-74.90054900549005,-49.945870012880455],[-74.91134911349113,-49.93404997199128],[-74.91494914949149,-49.925607085641865],[-74.91494914949149,-49.91716419929245],[-74.90774907749078,-49.903655581133386],[-74.90054900549005,-49.87663834481526],[-74.88974889748897,-49.86819545846585],[-74.87534875348753,-49.864818303926086],[-74.85734857348574,-49.864818303926086],[-74.83934839348393,-49.86819545846585],[-74.82134821348212,-49.87494976754538],[-74.80334803348033,-49.878326922085144],[-74.78894788947889,-49.87494976754538],[-74.77094770947708,-49.864818303926086],[-74.74214742147421,-49.85299826303691],[-74.72774727747277,-49.84286679941761],[-74.79254792547925,-49.85130968576702],[-74.82134821348212,-49.85130968576702],[-74.83934839348393,-49.83611249033808],[-74.83574835748357,-49.825981026718786],[-74.82494824948249,-49.81247240855972],[-74.81414814148141,-49.800652367670544],[-74.8069480694807,-49.79558663586089],[-74.7961479614796,-49.79052090405125],[-74.78174781747818,-49.782078017701835],[-74.77094770947708,-49.77194655408254],[-74.77454774547745,-49.76688082227289],[-74.8069480694807,-49.76519224500301],[-74.81774817748177,-49.76688082227289],[-74.84654846548464,-49.79389805859101],[-74.85734857348574,-49.800652367670544],[-74.86454864548645,-49.802340944940426],[-74.87174871748716,-49.802340944940426],[-74.8789487894879,-49.802340944940426],[-74.88254882548826,-49.797275213130774],[-74.88974889748897,-49.760126513193356],[-74.88974889748897,-49.74999504957406],[-74.88254882548826,-49.74155216322465],[-74.86454864548645,-49.74155216322465],[-74.86454864548645,-49.734797854145114],[-74.88254882548826,-49.72635496779571],[-74.90054900549005,-49.71115777236676],[-74.91854918549186,-49.69427199966793],[-74.9221492214922,-49.67907480423899],[-74.90774907749078,-49.672320495159454],[-74.8861488614886,-49.677386226969105],[-74.86454864548645,-49.6875176905884],[-74.84654846548464,-49.69427199966793],[-74.84654846548464,-49.68582911331852],[-74.88254882548826,-49.66050045427028],[-74.89694896948969,-49.64530325884133],[-74.89334893348934,-49.63179464068227],[-74.89334893348934,-49.614908867983445],[-74.86814868148682,-49.614908867983445],[-74.78534785347853,-49.64192610430157],[-74.77094770947708,-49.64530325884133],[-74.760147601476,-49.64192610430157],[-74.74934749347493,-49.635171795222035],[-74.73494734947349,-49.633483217952154],[-74.72054720547204,-49.633483217952154],[-74.70974709747097,-49.638548949761805],[-74.7169471694717,-49.62504033160274],[-74.73494734947349,-49.62504033160274],[-74.74934749347493,-49.62672890887262],[-74.76734767347673,-49.62166317706298],[-74.77094770947708,-49.61153171344368],[-74.760147601476,-49.5895802089352],[-74.75654756547566,-49.576071590776145],[-74.77094770947708,-49.58451447712556],[-74.77814778147781,-49.59295736347497],[-74.78894788947889,-49.60140024982439],[-74.8069480694807,-49.60308882709427],[-74.82854828548285,-49.60308882709427],[-74.84654846548464,-49.59802309528462],[-74.86454864548645,-49.5895802089352],[-74.8789487894879,-49.576071590776145],[-74.8861488614886,-49.56425154988696],[-74.88974889748897,-49.54905435445802],[-74.8861488614886,-49.533857159029075],[-74.86814868148682,-49.52879142721943],[-74.86454864548645,-49.52372569540978],[-74.8069480694807,-49.49670845909166],[-74.79254792547925,-49.48151126366271],[-74.78174781747818,-49.47813410912295],[-74.74934749347493,-49.515282809060366],[-74.74214742147421,-49.51865996360013],[-74.74214742147421,-49.510217077250715],[-74.74214742147421,-49.489954150012125],[-74.74574745747456,-49.474756954583185],[-74.75294752947529,-49.46631406823377],[-74.75294752947529,-49.45787118188436],[-74.73494734947349,-49.44605114099517],[-74.7169471694717,-49.44098540918553],[-74.67734677346773,-49.43929683191565],[-74.65934659346593,-49.432542522836115],[-74.6809468094681,-49.427476791026464],[-74.69894698946989,-49.427476791026464],[-74.7169471694717,-49.430853945566234],[-74.73494734947349,-49.432542522836115],[-74.7169471694717,-49.41059101832764],[-74.66294662946629,-49.3751308956601],[-74.64494644946448,-49.349802236611865],[-74.670146701467,-49.35655654569139],[-74.72774727747277,-49.39201666835893],[-74.73854738547385,-49.3953938228987],[-74.74574745747456,-49.39877097743846],[-74.77454774547745,-49.39877097743846],[-74.78534785347853,-49.3953938228987],[-74.79974799747997,-49.38188520473963],[-74.81054810548105,-49.37850805019987],[-74.80334803348033,-49.39201666835893],[-74.78894788947889,-49.40552528651799],[-74.77094770947708,-49.413968172867406],[-74.75294752947529,-49.41903390467705],[-74.74934749347493,-49.4240996364867],[-74.76374763747637,-49.43760825464576],[-74.79254792547925,-49.45618260461447],[-74.81774817748177,-49.47644553185307],[-74.85014850148501,-49.49839703636154],[-74.8789487894879,-49.50346276817119],[-74.8861488614886,-49.4730683773133],[-74.90054900549005,-49.48826557274224],[-74.91134911349113,-49.5119056545206],[-74.9221492214922,-49.532168581759194],[-74.94374943749438,-49.54230004537849],[-74.96534965349653,-49.532168581759194],[-74.96174961749617,-49.48488841820248],[-74.97974979749797,-49.4730683773133],[-74.98694986949869,-49.47982268639283],[-74.99054990549905,-49.491642727282006],[-74.98694986949869,-49.50346276817119],[-74.99414994149942,-49.508528499980834],[-75.0049500495005,-49.510217077250715],[-75.00855008550086,-49.51865996360013],[-75.01215012150121,-49.52879142721943],[-75.00855008550086,-49.54230004537849],[-75.00135001350013,-49.57944874531591],[-75.01215012150121,-49.5895802089352],[-75.04455044550446,-49.5895802089352],[-75.03735037350373,-49.59802309528462],[-75.01575015750157,-49.61153171344368],[-75.00855008550086,-49.61828602252321],[-75.0049500495005,-49.63010606341239],[-75.00855008550086,-49.638548949761805],[-75.01215012150121,-49.6486804133811],[-75.01575015750157,-49.66218903154016],[-75.01215012150121,-49.675697649699224],[-74.99774997749977,-49.66387760881005],[-74.98334983349834,-49.64192610430157],[-74.96534965349653,-49.63179464068227],[-74.95454954549545,-49.64023752703169],[-74.95814958149582,-49.66218903154016],[-74.97254972549725,-49.68582911331852],[-74.98334983349834,-49.699337731477584],[-75.01215012150121,-49.72635496779571],[-75.02295022950229,-49.74155216322465],[-75.01575015750157,-49.76181509046324],[-75.0049500495005,-49.74492931776442],[-74.99414994149942,-49.738175008684884],[-74.97974979749797,-49.739863585954765],[-74.9689496894969,-49.75506078138371],[-74.96534965349653,-49.760126513193356],[-74.96174961749617,-49.76688082227289],[-74.96174961749617,-49.77363513135242],[-74.96174961749617,-49.7854551722416],[-74.99414994149942,-49.80909525401996],[-75.01575015750157,-49.81247240855972],[-75.03375033750338,-49.81922671763925],[-75.04455044550446,-49.825981026718786],[-75.02655026550265,-49.82935818125855],[-75.01215012150121,-49.83780106760796],[-75.00855008550086,-49.85637541757667],[-75.00855008550086,-49.89858984932374],[-75.02295022950229,-49.89521269478397],[-75.05175051750517,-49.89183554024421],[-75.06255062550625,-49.888458385704446],[-75.08055080550805,-49.86819545846585],[-75.09135091350913,-49.864818303926086],[-75.10935109351094,-49.864818303926086],[-75.13455134551346,-49.85806399484655],[-75.14895148951489,-49.84286679941761],[-75.1741517415174,-49.802340944940426],[-75.19935199351993,-49.77194655408254]]],[[[-74.49734497344973,-48.583188156085114],[-74.48654486544865,-48.58994246516465],[-74.48294482944829,-48.606828237863475],[-74.48654486544865,-48.625402587832184],[-74.49374493744936,-48.64059978326113],[-74.51534515345153,-48.66592844230937],[-74.52614526145261,-48.67437132865878],[-74.56214562145621,-48.68112563773831],[-74.5909459094591,-48.69125710135761],[-74.60894608946089,-48.69463425589738],[-74.61974619746196,-48.69125710135761],[-74.65574655746558,-48.670994174119016],[-74.66654666546665,-48.66592844230937],[-74.69174691746917,-48.65917413322984],[-74.70614706147062,-48.65917413322984],[-74.71334713347133,-48.65579697869007],[-74.73854738547385,-48.6338454741816],[-74.74934749347493,-48.62877974237195],[-74.76374763747637,-48.630468319641835],[-74.79254792547925,-48.63722262872136],[-74.81774817748177,-48.63722262872136],[-74.86814868148682,-48.627091165102065],[-74.94734947349473,-48.62033685602253],[-74.97254972549725,-48.61358254694301],[-74.99774997749977,-48.60345108332371],[-75.01215012150121,-48.586565310624884],[-75.01575015750157,-48.544350878877815],[-75.02655026550265,-48.524087951639224],[-75.03375033750338,-48.50382502440063],[-75.02295022950229,-48.48525067443192],[-75.00855008550086,-48.468364901733096],[-74.94734947349473,-48.41770758363661],[-74.92934929349293,-48.41095327455708],[-74.91854918549186,-48.41095327455708],[-74.89694896948969,-48.405887542747436],[-74.8861488614886,-48.40419896547755],[-74.87174871748716,-48.402510388207666],[-74.84654846548464,-48.39069034731849],[-74.83214832148322,-48.39069034731849],[-74.82134821348212,-48.40419896547755],[-74.81054810548105,-48.44979055176439],[-74.79974799747997,-48.47005347900298],[-74.78174781747818,-48.48525067443192],[-74.76734767347673,-48.48862782897169],[-74.74934749347493,-48.48525067443192],[-74.73494734947349,-48.47343063354274],[-74.7169471694717,-48.45316770630415],[-74.71334713347133,-48.4379705108752],[-74.72774727747277,-48.42783904725591],[-74.75654756547566,-48.424461892716145],[-74.81054810548105,-48.36367311100037],[-74.81414814148141,-48.34172160649189],[-74.80334803348033,-48.28430997931588],[-74.79974799747997,-48.26573562934717],[-74.77094770947708,-48.23027550667963],[-74.76374763747637,-48.21170115671092],[-74.760147601476,-48.18806107493256],[-74.76374763747637,-48.16948672496385],[-74.76374763747637,-48.152600952265026],[-74.75294752947529,-48.134026602296316],[-74.73854738547385,-48.1255837159469],[-74.72054720547204,-48.130649447756554],[-74.70974709747097,-48.14246948864573],[-74.70254702547025,-48.15766668407468],[-74.69894698946989,-48.17117530223374],[-74.69894698946989,-48.1846839203928],[-74.70254702547025,-48.194815384012095],[-74.7169471694717,-48.198192538551865],[-74.72774727747277,-48.20663542490127],[-74.72054720547204,-48.22183262033022],[-74.70974709747097,-48.233652661219395],[-74.70254702547025,-48.22858692940975],[-74.69534695346952,-48.22858692940975],[-74.68454684546845,-48.237029815759165],[-74.67374673746737,-48.25053843391822],[-74.66654666546665,-48.26404705207729],[-74.6809468094681,-48.29106428839541],[-74.6809468094681,-48.30288432928459],[-74.64134641346413,-48.31639294744365],[-74.61614616146161,-48.33327872014248],[-74.59814598145981,-48.35523022465095],[-74.58374583745837,-48.377181729159425],[-74.58734587345873,-48.40419896547755],[-74.61254612546125,-48.40757612001732],[-74.64854648546485,-48.40757612001732],[-74.67374673746737,-48.41770758363661],[-74.6341463414634,-48.43121620179567],[-74.61974619746196,-48.44134766541497],[-74.60534605346054,-48.45992201538368],[-74.60174601746017,-48.47511921081262],[-74.60534605346054,-48.52746510617899],[-74.60174601746017,-48.549416610687466],[-74.59814598145981,-48.562925228846524],[-74.5909459094591,-48.5747452697357],[-74.54774547745477,-48.61527112421289],[-74.52974529745298,-48.62202543329242],[-74.52254522545225,-48.606828237863475],[-74.52614526145261,-48.583188156085114],[-74.51894518945188,-48.583188156085114],[-74.49734497344973,-48.583188156085114]]],[[[-75.15975159751598,-48.297818597474944],[-75.15615156151561,-48.28768713385564],[-75.12735127351273,-48.2724899384267],[-75.12015120151202,-48.26066989753752],[-75.14175141751417,-48.26235847480741],[-75.15975159751598,-48.26066989753752],[-75.17055170551706,-48.25053843391822],[-75.1741517415174,-48.22858692940975],[-75.17775177751777,-48.22689835213987],[-75.18855188551885,-48.22520977486999],[-75.19935199351993,-48.22014404306034],[-75.20655206552065,-48.21170115671092],[-75.20295202952029,-48.20832400217116],[-75.19575195751958,-48.20325827036151],[-75.18855188551885,-48.194815384012095],[-75.18855188551885,-48.1846839203928],[-75.19575195751958,-48.176241034043386],[-75.21735217352173,-48.16779814769397],[-75.2209522095221,-48.16104383861444],[-75.2209522095221,-48.154289529534914],[-75.21735217352173,-48.14415806591562],[-75.21735217352173,-48.14078091137585],[-75.22815228152281,-48.12727229321679],[-75.23175231752317,-48.11882940686738],[-75.23895238952389,-48.113763675057726],[-75.24255242552425,-48.10869794324808],[-75.24975249752497,-48.10363221143843],[-75.24975249752497,-48.0968779023589],[-75.25335253352533,-48.08168070692996],[-75.2569525695257,-48.074926397850426],[-75.2569525695257,-48.06817208877089],[-75.16695166951669,-48.074926397850426],[-75.15255152551525,-48.07830355239019],[-75.14175141751417,-48.09518932508902],[-75.12015120151202,-48.10194363416855],[-75.06975069750698,-48.11038652051796],[-75.06975069750698,-48.10363221143843],[-75.07695076950769,-48.10025505689867],[-75.08055080550805,-48.0968779023589],[-75.08055080550805,-48.093500747819135],[-75.08415084150842,-48.090123593279365],[-75.04455044550446,-48.093500747819135],[-75.01575015750157,-48.08336928419984],[-74.97614976149761,-48.093500747819135],[-74.91134911349113,-48.11545225232761],[-74.88974889748897,-48.12051798413726],[-74.86454864548645,-48.12896087048667],[-74.82854828548285,-48.1458466431855],[-74.81054810548105,-48.17286387950362],[-74.80334803348033,-48.174552456773505],[-74.8069480694807,-48.213389733980804],[-74.81054810548105,-48.231964083949514],[-74.83574835748357,-48.24884985664834],[-74.83934839348393,-48.27080136115682],[-74.83574835748357,-48.34509876103166],[-74.8429484294843,-48.358607379190715],[-74.85374853748537,-48.3704274200799],[-74.86454864548645,-48.37380457461966],[-74.87174871748716,-48.37211599734978],[-74.88254882548826,-48.3704274200799],[-74.89334893348934,-48.3704274200799],[-74.90414904149041,-48.37549315188954],[-74.9221492214922,-48.38731319277873],[-74.96534965349653,-48.402510388207666],[-74.99774997749977,-48.42783904725591],[-75.03015030150301,-48.443036242684855],[-75.05535055350553,-48.43290477906556],[-75.0589505895059,-48.42783904725591],[-75.06255062550625,-48.424461892716145],[-75.06255062550625,-48.419396160906494],[-75.06615066150661,-48.40419896547755],[-75.07695076950769,-48.39406750185825],[-75.08055080550805,-48.38731319277873],[-75.08415084150842,-48.37549315188954],[-75.12015120151202,-48.33496729741236],[-75.14535145351454,-48.3214586792533],[-75.15615156151561,-48.31301579290388],[-75.15975159751598,-48.297818597474944]]],[[[-75.14895148951489,-48.65917413322984],[-75.16335163351633,-48.6625512877696],[-75.20655206552065,-48.69969998770702],[-75.22455224552245,-48.70645429678655],[-75.23895238952389,-48.7013885649769],[-75.24975249752497,-48.68619136954796],[-75.25335253352533,-48.66592844230937],[-75.24975249752497,-48.65748555595996],[-75.24255242552425,-48.650731246880426],[-75.23175231752317,-48.647354092340656],[-75.22815228152281,-48.64397693780089],[-75.22815228152281,-48.63722262872136],[-75.24255242552425,-48.63722262872136],[-75.2569525695257,-48.64059978326113],[-75.26775267752677,-48.64228836053101],[-75.27855278552785,-48.63722262872136],[-75.28215282152821,-48.630468319641835],[-75.28575285752858,-48.6237140105623],[-75.27855278552785,-48.61695970148277],[-75.27135271352714,-48.61020539240324],[-75.28215282152821,-48.60513966059359],[-75.29655296552966,-48.59163104243453],[-75.30375303753037,-48.57812242427547],[-75.30015300153,-48.56630238338629],[-75.29295292952929,-48.55279376522723],[-75.29295292952929,-48.54097372433805],[-75.31455314553145,-48.51733364255969],[-75.32175321753218,-48.49200498351145],[-75.3109531095311,-48.461610592653564],[-75.28935289352893,-48.43459335633544],[-75.27135271352714,-48.424461892716145],[-75.27135271352714,-48.41770758363661],[-75.30015300153,-48.4092646972872],[-75.31815318153181,-48.400821810937785],[-75.32535325353253,-48.39406750185825],[-75.31815318153181,-48.36367311100037],[-75.31815318153181,-48.34847591557142],[-75.32895328953289,-48.343410183761776],[-75.33615336153362,-48.34847591557142],[-75.35775357753577,-48.37549315188954],[-75.36495364953649,-48.38393603823896],[-75.37935379353793,-48.39069034731849],[-75.39735397353974,-48.39406750185825],[-75.41535415354153,-48.395756079128134],[-75.4261542615426,-48.39069034731849],[-75.4369543695437,-48.405887542747436],[-75.45855458554585,-48.41601900636673],[-75.48735487354872,-48.42277331544626],[-75.5089550895509,-48.424461892716145],[-75.53775537755376,-48.41601900636673],[-75.55575555755557,-48.39744465639802],[-75.55575555755557,-48.37887030642931],[-75.53415534155342,-48.3704274200799],[-75.52335523355234,-48.36873884281001],[-75.4729547295473,-48.35354164738107],[-75.42975429754297,-48.3501644928413],[-75.40455404554045,-48.34509876103166],[-75.3829538295383,-48.33159014287259],[-75.3469534695347,-48.301195752014706],[-75.3469534695347,-48.294441442935174],[-75.36495364953649,-48.296130020205055],[-75.37935379353793,-48.301195752014706],[-75.39375393753937,-48.30963863836412],[-75.40815408154081,-48.31639294744365],[-75.40095400954009,-48.294441442935174],[-75.39375393753937,-48.27417851569658],[-75.41175411754118,-48.282621402046],[-75.44415444154441,-48.30795006109424],[-75.4621546215462,-48.31639294744365],[-75.46575465754657,-48.311327215634],[-75.47655476554765,-48.30626148382436],[-75.48375483754837,-48.301195752014706],[-75.5089550895509,-48.319770101983416],[-75.52695526955269,-48.32652441106295],[-75.5449554495545,-48.3214586792533],[-75.55575555755557,-48.30795006109424],[-75.5521555215552,-48.294441442935174],[-75.54135541355413,-48.282621402046],[-75.53055530555305,-48.27417851569658],[-75.4729547295473,-48.24547270210858],[-75.44775447754478,-48.22689835213987],[-75.43335433354333,-48.198192538551865],[-75.45855458554585,-48.20325827036151],[-75.49455494554945,-48.22689835213987],[-75.51975519755197,-48.233652661219395],[-75.53055530555305,-48.231964083949514],[-75.54135541355413,-48.22689835213987],[-75.5449554495545,-48.218455465790456],[-75.54135541355413,-48.20832400217116],[-75.53415534155342,-48.199881115821746],[-75.53415534155342,-48.194815384012095],[-75.55575555755557,-48.176241034043386],[-75.55935559355594,-48.174552456773505],[-75.56655566555665,-48.17117530223374],[-75.57015570155701,-48.15766668407468],[-75.57015570155701,-48.11882940686738],[-75.57375573755738,-48.112075097787844],[-75.58455584555846,-48.0968779023589],[-75.58455584555846,-48.08505786146972],[-75.5521555215552,-48.05635204788172],[-75.53415534155342,-48.04622058426242],[-75.50535505355053,-48.031023388833475],[-75.47655476554765,-48.025957657023824],[-75.4621546215462,-48.04453200699253],[-75.45495454954549,-48.06479493423113],[-75.44415444154441,-48.0580406251516],[-75.42255422554226,-48.02764623429371],[-75.40455404554045,-48.0192033479443],[-75.37935379353793,-48.009071884324996],[-75.35055350553505,-48.00400615251535],[-75.33975339753397,-48.01751477067441],[-75.34335343353433,-48.029334811563594],[-75.35055350553505,-48.051286316072066],[-75.35055350553505,-48.05972920242148],[-75.33615336153362,-48.074926397850426],[-75.32535325353253,-48.090123593279365],[-75.32535325353253,-48.0968779023589],[-75.32535325353253,-48.10700936597819],[-75.32175321753218,-48.11038652051796],[-75.30375303753037,-48.10363221143843],[-75.30015300153,-48.1255837159469],[-75.28215282152821,-48.1458466431855],[-75.26775267752677,-48.16610957042409],[-75.28215282152821,-48.18806107493256],[-75.28575285752858,-48.19650396128198],[-75.28935289352893,-48.20663542490127],[-75.28935289352893,-48.215078311250686],[-75.28215282152821,-48.22014404306034],[-75.27495274952749,-48.216766888520574],[-75.27495274952749,-48.21170115671092],[-75.27135271352714,-48.20832400217116],[-75.26415264152641,-48.21170115671092],[-75.26055260552606,-48.218455465790456],[-75.26415264152641,-48.22689835213987],[-75.26775267752677,-48.23534123848928],[-75.27135271352714,-48.24040697029893],[-75.2569525695257,-48.24547270210858],[-75.24975249752497,-48.25222701118811],[-75.21015210152102,-48.31301579290388],[-75.20655206552065,-48.32483583379307],[-75.20295202952029,-48.33496729741236],[-75.19575195751958,-48.34847591557142],[-75.1849518495185,-48.358607379190715],[-75.17775177751777,-48.36367311100037],[-75.16335163351633,-48.36873884281001],[-75.17055170551706,-48.38393603823896],[-75.18855188551885,-48.41095327455708],[-75.15255152551525,-48.4092646972872],[-75.13455134551346,-48.42277331544626],[-75.12015120151202,-48.444724819954736],[-75.09855098550985,-48.46667632446321],[-75.11295112951129,-48.47005347900298],[-75.13815138151381,-48.47680778808251],[-75.14895148951489,-48.483562097162036],[-75.14535145351454,-48.48862782897169],[-75.10215102151021,-48.49875929259098],[-75.08775087750877,-48.500447869860864],[-75.08415084150842,-48.507202178940396],[-75.08415084150842,-48.524087951639224],[-75.09135091350913,-48.549416610687466],[-75.08775087750877,-48.55954807430676],[-75.07335073350733,-48.583188156085114],[-75.06975069750698,-48.59669677424418],[-75.08415084150842,-48.61358254694301],[-75.10575105751057,-48.6338454741816],[-75.13455134551346,-48.650731246880426],[-75.14895148951489,-48.65917413322984]]],[[[-73.73053730537305,-45.214476502669136],[-73.74133741337413,-45.23642800717761],[-73.73053730537305,-45.266822398035494],[-73.74133741337413,-45.28033101619456],[-73.76653766537665,-45.2853967480042],[-73.78813788137882,-45.273576707115026],[-73.80973809738097,-45.2566909344162],[-73.83133831338313,-45.24318231625714],[-73.8421384213842,-45.23980516171737],[-73.87093870938709,-45.23811658444749],[-73.96093960939609,-45.24993662533667],[-73.98973989739898,-45.2465594707969],[-74.00774007740077,-45.23136227536796],[-74.02574025740257,-45.19252499816066],[-74.04014040140402,-45.18408211181124],[-74.05814058140581,-45.17563922546183],[-74.08334083340833,-45.14017910279429],[-74.10494104941048,-45.13511337098465],[-74.11214112141121,-45.14186768006418],[-74.11574115741158,-45.15031056641359],[-74.12294122941229,-45.158753452763],[-74.13374133741337,-45.16381918457265],[-74.14454144541445,-45.15706487549312],[-74.15894158941589,-45.146933411873825],[-74.16974169741697,-45.14186768006418],[-74.17334173341733,-45.15368772095336],[-74.18414184141841,-45.168884916382304],[-74.20574205742057,-45.168884916382304],[-74.22734227342274,-45.16044203003289],[-74.24174241742418,-45.15031056641359],[-74.24894248942489,-45.109784711936406],[-74.23454234542345,-45.07263601199899],[-74.20574205742057,-45.042241621141095],[-74.17334173341733,-45.025355848442274],[-74.14814148141481,-45.023667271172386],[-74.07614076140761,-45.03379873479169],[-74.06174061740617,-45.0321101575218],[-74.04374043740437,-45.021978693902504],[-74.03294032940329,-45.01860153936274],[-73.98973989739898,-45.02029011663262],[-73.97533975339753,-45.01860153936274],[-73.95373953739536,-45.01184723028321],[-73.91413914139142,-44.99496145758438],[-73.8889388893889,-44.99158430304462],[-73.86733867338673,-44.99496145758438],[-73.84573845738457,-45.001715766663914],[-73.77733777337772,-45.03886446660133],[-73.77013770137701,-45.047307352950746],[-73.75933759337593,-45.06250454837969],[-73.75933759337593,-45.06757028018934],[-73.76653766537665,-45.070947434729106],[-73.77013770137701,-45.07770174380863],[-73.75933759337593,-45.086144630158046],[-73.73773737737378,-45.09796467104723],[-73.7161371613716,-45.11485044374606],[-73.70173701737016,-45.13511337098465],[-73.70173701737016,-45.16044203003289],[-73.70533705337053,-45.18070495727148],[-73.7161371613716,-45.19927930724019],[-73.73053730537305,-45.214476502669136]]],[[[-73.92853928539284,-44.628540190019834],[-73.89253892538925,-44.66062315814761],[-73.8781387813878,-44.6808860853862],[-73.87453874538745,-44.694394703545264],[-73.9681396813968,-44.70452616716456],[-74.01134011340113,-44.716346208053736],[-74.0941409414094,-44.753494907991154],[-74.19494194941949,-44.778823567039396],[-74.24894248942489,-44.800775071547875],[-74.25974259742597,-44.80415222608764],[-74.27054270542705,-44.80584080335752],[-74.28134281342813,-44.80415222608764],[-74.32094320943209,-44.79064360792857],[-74.3389433894339,-44.778823567039396],[-74.35694356943569,-44.76531494888034],[-74.36774367743676,-44.74674059891163],[-74.37134371343713,-44.72478909440315],[-74.36054360543605,-44.71296905351397],[-74.3389433894339,-44.7095918989742],[-74.31734317343174,-44.7095918989742],[-74.31734317343174,-44.70452616716456],[-74.33534335343353,-44.70452616716456],[-74.40734407344073,-44.694394703545264],[-74.41454414544145,-44.68595181719585],[-74.41454414544145,-44.652180271798194],[-74.40014400144001,-44.62685161274995],[-74.36774367743676,-44.62178588094031],[-74.29574295742957,-44.628540190019834],[-74.30654306543065,-44.61672014913066],[-74.29214292142922,-44.60827726278124],[-74.2669426694267,-44.6032115309716],[-74.02574025740257,-44.6032115309716],[-73.97173971739717,-44.61165441732101],[-73.92853928539284,-44.628540190019834]]],[[[-73.38133381333813,-44.58801433554265],[-73.3741337413374,-44.591391490082415],[-73.35973359733597,-44.60827726278124],[-73.35253352533525,-44.615031571860776],[-73.32013320133201,-44.6032115309716],[-73.30933309333093,-44.60152295370171],[-73.29853298532984,-44.60658868551136],[-73.26973269732697,-44.62516303548007],[-73.25173251732517,-44.631917344559604],[-73.24813248132482,-44.63698307636925],[-73.24093240932409,-44.638671653639136],[-73.23013230132301,-44.631917344559604],[-73.22653226532265,-44.62009730367042],[-73.23373233732337,-44.613342994590894],[-73.25533255332553,-44.60152295370171],[-73.26613266132661,-44.58632575827277],[-73.28053280532805,-44.56268567649441],[-73.28053280532805,-44.54242274925582],[-73.2589325893259,-44.532291285636525],[-73.23733237332372,-44.53566844017629],[-73.15813158131581,-44.571128562843825],[-73.14733147331474,-44.571128562843825],[-73.14013140131401,-44.56606283103417],[-73.1329313293133,-44.55593136741488],[-73.1329313293133,-44.54579990379558],[-73.13653136531364,-44.53566844017629],[-73.14733147331474,-44.532291285636525],[-73.17253172531726,-44.530602708366644],[-73.2229322293223,-44.52047124474734],[-73.24093240932409,-44.51202835839793],[-73.26253262532624,-44.4765682357304],[-73.24453244532445,-44.43773095852309],[-73.20853208532085,-44.409025144935086],[-73.16533165331653,-44.409025144935086],[-73.16173161731616,-44.41577945401462],[-73.14733147331474,-44.43604238125321],[-73.14013140131401,-44.44279669033274],[-73.14013140131401,-44.43941953579297],[-73.13653136531364,-44.43604238125321],[-73.1329313293133,-44.43435380398333],[-73.12213122131222,-44.43435380398333],[-73.11133111331112,-44.432665226713446],[-73.10053100531005,-44.427599494903795],[-73.0861308613086,-44.43097664944356],[-73.07173071730718,-44.44110811306286],[-73.050130501305,-44.471502503920746],[-73.03573035730356,-44.485011122079804],[-73.04653046530466,-44.446173844872504],[-73.050130501305,-44.43435380398333],[-73.05373053730537,-44.41915660855438],[-73.06813068130681,-44.41577945401462],[-73.07893078930789,-44.41240229947485],[-73.08973089730897,-44.40227083585555],[-73.08253082530825,-44.383696485886844],[-73.02133021330214,-44.37356502226755],[-73.00333003330033,-44.36174498137837],[-72.97812978129781,-44.37525359953743],[-72.95292952929529,-44.39382794950614],[-72.93492934929348,-44.4174680312845],[-72.92772927729277,-44.43773095852309],[-72.93492934929348,-44.451239576682156],[-72.98172981729817,-44.51202835839793],[-72.95652956529565,-44.513716935667816],[-72.90612906129061,-44.45292815395204],[-72.87372873728737,-44.43773095852309],[-72.85212852128521,-44.44110811306286],[-72.80892808928088,-44.45461673122192],[-72.78732787327873,-44.4563053084918],[-72.76932769327694,-44.466436772111095],[-72.74772747727476,-44.508651203858165],[-72.72972729727297,-44.51878266747746],[-72.72252722527224,-44.527225553826874],[-72.72972729727297,-44.54917705833535],[-72.74412744127441,-44.56943998557394],[-72.80172801728017,-44.628540190019834],[-72.81252812528125,-44.63698307636925],[-72.90252902529025,-44.63022876728972],[-72.94212942129421,-44.62009730367042],[-72.98172981729817,-44.60152295370171],[-72.97812978129781,-44.62178588094031],[-72.96372963729637,-44.633605921829485],[-72.94212942129421,-44.64036023090902],[-72.9241292412924,-44.652180271798194],[-72.90252902529025,-44.66231173541749],[-72.84852848528485,-44.66737746722714],[-72.83052830528305,-44.675820353576555],[-72.83772837728377,-44.7095918989742],[-72.87732877328773,-44.74167486710198],[-72.96732967329673,-44.78726645338881],[-73.0069300693007,-44.81259511243705],[-73.01413014130141,-44.82441515332623],[-73.02133021330214,-44.827792307866],[-73.02853028530285,-44.83116946240576],[-73.03933039330393,-44.834546616945524],[-73.04653046530466,-44.85143238964435],[-73.05373053730537,-44.858186698723884],[-73.14733147331474,-44.91222117136013],[-73.19053190531905,-44.92741836678908],[-73.25533255332553,-44.93923840767825],[-73.27693276932769,-44.93923840767825],[-73.29133291332913,-44.93248409859872],[-73.3021330213302,-44.91559832589989],[-73.36333363333632,-44.86831816234318],[-73.39213392133921,-44.841300926025056],[-73.40653406534065,-44.82272657605635],[-73.40293402934029,-44.81428368970693],[-73.35973359733597,-44.81428368970693],[-73.34533345333453,-44.81090653516717],[-73.32733327333273,-44.795709339738224],[-73.30573305733057,-44.78557787611893],[-73.28773287732876,-44.79064360792857],[-73.25533255332553,-44.81428368970693],[-73.24453244532445,-44.80921795789729],[-73.21933219332193,-44.80415222608764],[-73.20853208532085,-44.800775071547875],[-73.20853208532085,-44.79233218519846],[-73.21933219332193,-44.79064360792857],[-73.29853298532984,-44.758560639800805],[-73.30573305733057,-44.76193779434057],[-73.3381333813338,-44.778823567039396],[-73.35973359733597,-44.78895503065869],[-73.37053370533705,-44.79233218519846],[-73.38133381333813,-44.79233218519846],[-73.39213392133921,-44.78895503065869],[-73.39933399333992,-44.778823567039396],[-73.40653406534065,-44.76700352615022],[-73.40653406534065,-44.75518348526104],[-73.41013410134101,-44.74674059891163],[-73.43173431734317,-44.72478909440315],[-73.44253442534425,-44.70621474443444],[-73.45693456934569,-44.66231173541749],[-73.46773467734677,-44.6420488081789],[-73.4281342813428,-44.60152295370171],[-73.41733417334173,-44.594768644622185],[-73.40653406534065,-44.5930800673523],[-73.39213392133921,-44.589702912812534],[-73.38133381333813,-44.58801433554265]]],[[[-74.33534335343353,-43.28105552865345],[-74.36414364143641,-43.29118699227274],[-74.37854378543786,-43.26923548776426],[-74.40014400144001,-43.26079260141485],[-74.40734407344073,-43.237152519636496],[-74.40374403744038,-43.23039821055696],[-74.37494374943749,-43.2168895923979],[-74.35694356943569,-43.1780523151906],[-74.36054360543605,-43.15778938795201],[-74.35334353343534,-43.152723656142356],[-74.32814328143282,-43.14259219252306],[-74.31014310143101,-43.13752646071342],[-74.30654306543065,-43.12401784255435],[-74.32454324543245,-43.11895211074471],[-74.33534335343353,-43.110509224395294],[-74.3389433894339,-43.10037776077599],[-74.33174331743317,-43.08686914261693],[-74.31734317343174,-43.07167194718799],[-74.29934299342993,-43.07504910172776],[-74.28134281342813,-43.068294792648224],[-74.2561425614256,-43.046343288139745],[-74.23814238142381,-43.03283466998069],[-74.23094230942309,-43.02270320636139],[-74.22734227342274,-43.01088316547221],[-74.24894248942489,-43.0024402791228],[-74.2561425614256,-42.99062023823362],[-74.24534245342453,-42.98048877461432],[-74.22014220142201,-42.97711162007456],[-74.2129421294213,-42.963603001915494],[-74.21654216542166,-42.94671722921667],[-74.22374223742237,-42.93827434286725],[-74.23094230942309,-42.92814287924796],[-74.23094230942309,-42.91632283835878],[-74.22374223742237,-42.91294568381902],[-74.2129421294213,-42.91125710654913],[-74.18414184141841,-42.902814220199716],[-74.16614166141662,-42.882551292961125],[-74.16254162541625,-42.85891121118277],[-74.16254162541625,-42.84033686121406],[-74.17334173341733,-42.82851682032488],[-74.16614166141662,-42.8166967794357],[-74.15534155341552,-42.804876738546525],[-74.16254162541625,-42.79305669765734],[-74.16974169741697,-42.782925234038046],[-74.16974169741697,-42.76603946133922],[-74.15174151741518,-42.759285152259686],[-74.14814148141481,-42.74746511137051],[-74.14814148141481,-42.73226791594156],[-74.16254162541625,-42.718759297782505],[-74.15534155341552,-42.71031641143309],[-74.13734137341373,-42.70356210235356],[-74.130141301413,-42.69343063873426],[-74.12654126541265,-42.67147913422579],[-74.130141301413,-42.6410847433679],[-74.13734137341373,-42.60393604343048],[-74.14454144541445,-42.57860738438224],[-74.15174151741518,-42.55834445714365],[-74.15534155341552,-42.551590148064115],[-74.16254162541625,-42.54652441625447],[-74.16614166141662,-42.53977010717494],[-74.16614166141662,-42.52795006628576],[-74.17334173341733,-42.52457291174599],[-74.18414184141841,-42.52119575720623],[-74.19494194941949,-42.514441448126696],[-74.19134191341914,-42.49755567542787],[-74.18414184141841,-42.48404705726881],[-74.18414184141841,-42.46378413003022],[-74.19134191341914,-42.451964089141036],[-74.19134191341914,-42.431701161902446],[-74.15534155341552,-42.36078091656737],[-74.14454144541445,-42.3185664848203],[-74.15894158941589,-42.2898606712323],[-74.16974169741697,-42.264532012184056],[-74.15894158941589,-42.2408919304057],[-74.14814148141481,-42.21725184862734],[-74.12294122941229,-42.19530034411887],[-74.06894068940689,-42.1530859123718],[-74.05454054540544,-42.13113440786333],[-74.05454054540544,-42.11256005789462],[-74.06534065340654,-42.08891997611626],[-74.06174061740617,-42.080477089766845],[-74.0509405094051,-42.06865704887767],[-74.04374043740437,-42.05852558525837],[-74.04734047340473,-42.04839412163907],[-74.0509405094051,-42.03995123528966],[-74.05814058140581,-41.9876053399233],[-74.05814058140581,-41.96565383541482],[-74.05454054540544,-41.94539090817623],[-74.04734047340473,-41.936948021826815],[-74.05454054540544,-41.93357086728705],[-74.04374043740437,-41.92681655820752],[-74.03294032940329,-41.92175082639787],[-74.02574025740257,-41.918373671858106],[-74.01134011340113,-41.90824220823881],[-74.00774007740077,-41.90148789915928],[-74.00774007740077,-41.88797928100022],[-74.02214022140221,-41.86771635376162],[-74.02934029340292,-41.85251915833268],[-74.04014040140402,-41.84745342652303],[-74.05814058140581,-41.84238769471339],[-74.06174061740617,-41.833944808363974],[-74.06174061740617,-41.82043619020491],[-74.06534065340654,-41.80523899477596],[-74.05454054540544,-41.79848468569644],[-74.04374043740437,-41.788353222077134],[-74.04014040140402,-41.77653318118796],[-74.03654036540365,-41.771467449378314],[-74.02214022140221,-41.771467449378314],[-74.0149401494015,-41.77822175845784],[-74.00774007740077,-41.788353222077134],[-74.00054000540005,-41.791730376616904],[-73.98973989739898,-41.79510753115667],[-73.97173971739717,-41.80355041750608],[-73.95733957339573,-41.80692757204585],[-73.95373953739536,-41.81030472658561],[-73.95013950139501,-41.811993303855495],[-73.94293942939429,-41.80861614931573],[-73.93933939339394,-41.80355041750608],[-73.93573935739357,-41.788353222077134],[-73.93573935739357,-41.78497606753737],[-73.91773917739177,-41.78328749026749],[-73.89973899738997,-41.79004179934702],[-73.8889388893889,-41.80523899477596],[-73.88533885338853,-41.82212476747479],[-73.89613896138961,-41.84238769471339],[-73.91773917739177,-41.84238769471339],[-73.96093960939609,-41.82719049928444],[-73.98253982539825,-41.82043619020491],[-73.99333993339933,-41.82043619020491],[-74.0041400414004,-41.82719049928444],[-74.00774007740077,-41.83732196290374],[-74.00774007740077,-41.84576484925315],[-74.00054000540005,-41.850830581062795],[-73.99693996939969,-41.85758489014233],[-73.98253982539825,-41.86602777649174],[-73.90693906939069,-41.88122497192069],[-73.8889388893889,-41.88797928100022],[-73.86733867338673,-41.893045012809864],[-73.84573845738457,-41.88797928100022],[-73.83853838538386,-41.86433919922186],[-73.82413824138241,-41.85758489014233],[-73.80253802538024,-41.87109350830139],[-73.77733777337772,-41.89135643553998],[-73.77013770137701,-41.90148789915928],[-73.75933759337593,-41.896422167349634],[-73.7629376293763,-41.88629070373033],[-73.77733777337772,-41.87109350830139],[-73.77733777337772,-41.85758489014233],[-73.74493744937449,-41.83732196290374],[-73.70893708937089,-41.82043619020491],[-73.69093690936909,-41.80861614931573],[-73.67653676536764,-41.813681881125376],[-73.65493654936549,-41.82719049928444],[-73.63333633336333,-41.832256231094085],[-73.61893618936189,-41.80692757204585],[-73.60453604536045,-41.80017326296632],[-73.590135901359,-41.79848468569644],[-73.57933579335793,-41.79848468569644],[-73.56493564935649,-41.80523899477596],[-73.55413554135541,-41.81537045839526],[-73.53613536135362,-41.8406991174435],[-73.52893528935289,-41.833944808363974],[-73.51813518135181,-41.833944808363974],[-73.5109351093511,-41.835633385633855],[-73.50373503735037,-41.8406991174435],[-73.50373503735037,-41.84745342652303],[-73.52893528935289,-41.855896312872446],[-73.53613536135362,-41.8609620446821],[-73.5469354693547,-41.86940493103151],[-73.5469354693547,-41.874470662841155],[-73.5469354693547,-41.876159240111036],[-73.53973539735397,-41.8896678582701],[-73.53253532535325,-41.896422167349634],[-73.52893528935289,-41.90148789915928],[-73.52893528935289,-41.90655363096893],[-73.53613536135362,-41.91499651731834],[-73.53973539735397,-41.9285051354774],[-73.55053550535504,-41.9285051354774],[-73.56133561335614,-41.92512798093764],[-73.57213572135721,-41.9285051354774],[-73.57933579335793,-41.94539090817623],[-73.56853568535685,-41.95383379452564],[-73.55053550535504,-41.95889952633529],[-73.53253532535325,-41.96565383541482],[-73.49653496534965,-42.017999730781185],[-73.48573485734858,-42.02475403986072],[-73.47133471334713,-42.02981977167036],[-73.45693456934569,-42.04501696709931],[-73.44613446134461,-42.061902739798136],[-73.44613446134461,-42.080477089766845],[-73.45693456934569,-42.08891997611626],[-73.49293492934929,-42.104117171545205],[-73.50373503735037,-42.11593721243438],[-73.48933489334892,-42.14633160329227],[-73.45693456934569,-42.166594530530865],[-73.3849338493385,-42.19530034411887],[-73.38853388533884,-42.200366075928514],[-73.39573395733957,-42.21049753954781],[-73.39933399333992,-42.21556327135746],[-73.3849338493385,-42.225694734976756],[-73.3741337413374,-42.23920335313582],[-73.3741337413374,-42.25777770310453],[-73.37773377733777,-42.27804063034312],[-73.3849338493385,-42.29323782577207],[-73.38853388533884,-42.30168071212148],[-73.39573395733957,-42.30843502120101],[-73.40293402934029,-42.310123598470895],[-73.42453424534244,-42.30168071212148],[-73.43173431734317,-42.29999213485159],[-73.45333453334533,-42.30336928939136],[-73.48573485734858,-42.32194363936007],[-73.50733507335073,-42.325320793899834],[-73.57213572135721,-42.32363221662995],[-73.590135901359,-42.325320793899834],[-73.65133651336512,-42.345583721138425],[-73.66573665736657,-42.35402660748784],[-73.68013680136801,-42.369223802916785],[-73.68373683736837,-42.38273242107585],[-73.67653676536764,-42.39455246196503],[-73.6729367293673,-42.408061080124085],[-73.67653676536764,-42.42832400736268],[-73.68373683736837,-42.44183262552174],[-73.68733687336874,-42.451964089141036],[-73.68013680136801,-42.470538439109745],[-73.66573665736657,-42.48235847999893],[-73.62973629736297,-42.49924425269776],[-73.61173611736118,-42.511064293586934],[-73.62253622536225,-42.51613002539658],[-73.70893708937089,-42.53808152990506],[-73.73053730537305,-42.53977010717494],[-73.7521375213752,-42.533015798095406],[-73.77373773737737,-42.52288433447611],[-73.78813788137882,-42.5043099845074],[-73.77733777337772,-42.49755567542787],[-73.77013770137701,-42.48742421180857],[-73.75573755737557,-42.46378413003022],[-73.7629376293763,-42.45702982095069],[-73.80253802538024,-42.47729274818928],[-73.81693816938169,-42.492489943618224],[-73.82413824138241,-42.514441448126696],[-73.82053820538205,-42.52288433447611],[-73.80253802538024,-42.536392952635175],[-73.79533795337953,-42.54145868444482],[-73.7989379893799,-42.554967302603885],[-73.81333813338134,-42.57691880711236],[-73.81693816938169,-42.58705027073165],[-73.80973809738097,-42.60900177524013],[-73.78813788137882,-42.62419897066907],[-73.7629376293763,-42.637707588828135],[-73.73413734137341,-42.657970516066726],[-73.72333723337233,-42.661347670606496],[-73.69813698136981,-42.661347670606496],[-73.69813698136981,-42.66641340241614],[-73.69093690936909,-42.676544866035435],[-73.67653676536764,-42.68667632965473],[-73.6729367293673,-42.68836490692462],[-73.64053640536405,-42.73226791594156],[-73.63333633336333,-42.74071080229098],[-73.62253622536225,-42.74408795683075],[-73.59733597335973,-42.74746511137051],[-73.57573575735756,-42.757596574989805],[-73.51813518135181,-42.78967954311758],[-73.50013500135,-42.801499584006756],[-73.49293492934929,-42.81838535670558],[-73.48933489334892,-42.843714015753825],[-73.49293492934929,-42.867354097532186],[-73.5109351093511,-42.87748556115148],[-73.53253532535325,-42.880862715691244],[-73.57213572135721,-42.87917413842136],[-73.58653586535866,-42.87748556115148],[-73.61173611736118,-42.867354097532186],[-73.62253622536225,-42.885928447500895],[-73.65133651336512,-42.882551292961125],[-73.68373683736837,-42.87241982934183],[-73.70893708937089,-42.867354097532186],[-73.70893708937089,-42.87410840661171],[-73.65493654936549,-42.89774848839007],[-73.64773647736477,-42.906191374739485],[-73.64773647736477,-42.9146342610889],[-73.65493654936549,-42.92814287924796],[-73.65493654936549,-42.93658576559737],[-73.64773647736477,-42.94165149740702],[-73.6369363693637,-42.94165149740702],[-73.62973629736297,-42.943340074676904],[-73.62253622536225,-42.96191442464561],[-73.61173611736118,-42.965291579185376],[-73.590135901359,-42.963603001915494],[-73.57573575735756,-42.965291579185376],[-73.57213572135721,-42.97204588826491],[-73.57213572135721,-42.98048877461432],[-73.57213572135721,-42.99062023823362],[-73.52173521735217,-43.05309759721928],[-73.5469354693547,-43.051409019949396],[-73.58653586535866,-43.03452324725057],[-73.60813608136081,-43.03621182452045],[-73.61173611736118,-43.049720442679515],[-73.56853568535685,-43.05309759721928],[-73.52893528935289,-43.07336052445787],[-73.48933489334892,-43.10037776077599],[-73.50373503735037,-43.127394997094115],[-73.52533525335252,-43.130772151633884],[-73.5469354693547,-43.12232926528447],[-73.56853568535685,-43.112197801665175],[-73.58653586535866,-43.107132069855524],[-73.61173611736118,-43.110509224395294],[-73.65133651336512,-43.129083574364],[-73.71973719737197,-43.14090361525318],[-73.72693726937268,-43.13414930617365],[-73.73413734137341,-43.12232926528447],[-73.73773737737378,-43.107132069855524],[-73.7629376293763,-43.108820647125405],[-73.77733777337772,-43.11726353347482],[-73.75573755737557,-43.13583788344353],[-73.74493744937449,-43.169609428841184],[-73.74853748537485,-43.193249510619545],[-73.75573755737557,-43.21013528331837],[-73.74493744937449,-43.2270210560172],[-73.72693726937268,-43.23884109690638],[-73.70893708937089,-43.24728398325579],[-73.69813698136981,-43.257415446875086],[-73.67653676536764,-43.27936695138356],[-73.66573665736657,-43.294564146812505],[-73.66573665736657,-43.30976134224145],[-73.68013680136801,-43.31651565132098],[-73.70533705337053,-43.31651565132098],[-73.73053730537305,-43.31651565132098],[-73.70893708937089,-43.32664711494028],[-73.69453694536945,-43.34015573309934],[-73.6729367293673,-43.35028719671863],[-73.66933669336693,-43.3637958148777],[-73.68013680136801,-43.380681587576525],[-73.70893708937089,-43.38743589665605],[-73.73053730537305,-43.3925016284657],[-73.74853748537485,-43.38574731938617],[-73.75933759337593,-43.37223870122711],[-73.77733777337772,-43.36886154668734],[-73.7989379893799,-43.36041866033793],[-73.80253802538024,-43.377304433036755],[-73.7989379893799,-43.39081305119582],[-73.7989379893799,-43.40938740116453],[-73.81333813338134,-43.40938740116453],[-73.82773827738276,-43.402633092085],[-73.83493834938349,-43.414453132974174],[-73.84573845738457,-43.42289601932359],[-73.8781387813878,-43.421207442053706],[-73.8889388893889,-43.400944514815116],[-73.90693906939069,-43.3925016284657],[-73.91773917739177,-43.375615855766874],[-73.92853928539284,-43.36548439214758],[-73.95373953739536,-43.36548439214758],[-73.97173971739717,-43.36886154668734],[-73.99333993339933,-43.38912447392594],[-74.0041400414004,-43.37392727849699],[-74.02574025740257,-43.3637958148777],[-74.05454054540544,-43.362107237607816],[-74.07974079740796,-43.377304433036755],[-74.08334083340833,-43.400944514815116],[-74.09774097740977,-43.39419020573558],[-74.11574115741158,-43.37055012395722],[-74.130141301413,-43.357041505798165],[-74.16614166141662,-43.34184431036922],[-74.20214202142022,-43.34522146490899],[-74.21654216542166,-43.33002426948004],[-74.24894248942489,-43.32664711494028],[-74.29214292142922,-43.319892805860746],[-74.31374313743137,-43.296252724082386],[-74.33534335343353,-43.28105552865345]]],[[[-74.15894158941589,20.27361575519157],[-74.14814148141481,20.258418559762617],[-74.1409414094141,20.24153278706379],[-74.13374133741337,20.22464701436496],[-74.13374133741337,20.20438408712637],[-74.1409414094141,20.182432582617906],[-74.16254162541625,20.170612541728715],[-74.18414184141841,20.1621696553793],[-74.19854198541985,20.14866103722025],[-74.21654216542166,20.138529573600948],[-74.22374223742237,20.135152419061185],[-74.23094230942309,20.130086687251534],[-74.23454234542345,20.094626564584004],[-74.2669426694267,20.067609328265874],[-74.3029430294303,20.069297905535763],[-74.34614346143461,20.07942936915505],[-74.39294392943928,20.08111794642494],[-74.45414454144542,20.069297905535763],[-74.49734497344973,20.065920750996],[-74.58014580145802,20.047346401027283],[-74.61974619746196,20.05410071010681],[-74.64854648546485,20.042280669217632],[-74.71334713347133,20.052412132836935],[-74.78894788947889,20.03890351467787],[-74.81414814148141,20.03721493740798],[-74.83934839348393,20.027083473788693],[-74.85374853748537,20.013574855629628],[-74.87174871748716,19.9966890829308],[-74.8861488614886,19.984869042041623],[-74.91134911349113,19.978114732962098],[-74.9329493294933,19.978114732962098],[-74.94734947349473,19.97642615569221],[-74.95454954549545,19.967983269342795],[-74.96174961749617,19.947720342104205],[-74.97614976149761,19.922391683055963],[-75.00855008550086,19.912260219436675],[-75.04455044550446,19.907194487627024],[-75.05175051750517,19.9190145285162],[-75.0589505895059,19.922391683055963],[-75.06255062550625,19.922391683055963],[-75.06615066150661,19.91394879670655],[-75.06615066150661,19.905505910357135],[-75.09135091350913,19.89706302400772],[-75.10935109351094,19.89706302400772],[-75.13815138151381,19.89199729219807],[-75.16335163351633,19.890308714928196],[-75.16695166951669,19.89706302400772],[-75.16335163351633,19.91394879670655],[-75.15615156151561,19.9190145285162],[-75.14535145351454,19.92408026032585],[-75.12375123751237,19.94096603302468],[-75.11655116551165,19.944343187564442],[-75.10575105751057,19.942654610294554],[-75.10215102151021,19.952786073913856],[-75.10575105751057,19.95954038299338],[-75.11655116551165,19.96629469207292],[-75.1309513095131,19.95616322845362],[-75.13455134551346,19.957851805723507],[-75.13815138151381,19.964606114803033],[-75.13455134551346,19.97642615569221],[-75.1309513095131,19.98149188750186],[-75.11655116551165,19.989934773851274],[-75.10215102151021,19.993311928391037],[-75.09135091350913,20.013574855629628],[-75.08415084150842,20.025394896518804],[-75.09135091350913,20.035526360138107],[-75.09135091350913,20.06085501918635],[-75.11295112951129,20.057477864646586],[-75.12375123751237,20.04396924648752],[-75.12735127351273,20.03383778286822],[-75.13455134551346,20.02201774197904],[-75.14535145351454,20.025394896518804],[-75.15255152551525,20.030460628328456],[-75.17055170551706,20.025394896518804],[-75.1741517415174,20.013574855629628],[-75.17775177751777,20.00344339201034],[-75.1741517415174,19.993311928391037],[-75.16695166951669,19.99162335112115],[-75.16335163351633,19.989934773851274],[-75.15975159751598,19.99162335112115],[-75.15615156151561,19.995000505660926],[-75.15255152551525,19.99837766020069],[-75.15255152551525,19.995000505660926],[-75.14535145351454,19.984869042041623],[-75.15975159751598,19.978114732962098],[-75.15975159751598,19.971360423882558],[-75.16695166951669,19.96629469207292],[-75.17055170551706,19.957851805723507],[-75.16335163351633,19.951097496643968],[-75.15615156151561,19.93927745575479],[-75.17055170551706,19.935900301215028],[-75.1849518495185,19.93421172394514],[-75.19215192151921,19.927457414865614],[-75.19575195751958,19.922391683055963],[-75.20295202952029,19.922391683055963],[-75.20295202952029,19.92914599213549],[-75.21015210152102,19.92914599213549],[-75.21375213752137,19.925768837595726],[-75.21735217352173,19.92408026032585],[-75.21735217352173,19.9190145285162],[-75.20655206552065,19.912260219436675],[-75.19215192151921,19.910571642166786],[-75.19215192151921,19.905505910357135],[-75.20655206552065,19.905505910357135],[-75.23175231752317,19.900440178547484],[-75.28575285752858,19.888620137658307],[-75.3829538295383,19.881865828578782],[-75.39375393753937,19.883554405848656],[-75.4261542615426,19.890308714928196],[-75.4369543695437,19.895374446737847],[-75.44415444154441,19.89706302400772],[-75.44775447754478,19.895374446737847],[-75.45495454954549,19.885242983118545],[-75.4621546215462,19.881865828578782],[-75.48735487354872,19.87848867403902],[-75.51975519755197,19.880177251308893],[-75.5521555215552,19.885242983118545],[-75.57015570155701,19.89706302400772],[-75.60615606156061,19.89199729219807],[-75.64575645756457,19.912260219436675],[-75.68535685356854,19.94096603302468],[-75.72135721357213,19.957851805723507],[-75.74295742957429,19.95954038299338],[-75.81495814958149,19.957851805723507],[-75.83295832958329,19.95954038299338],[-75.87255872558725,19.969671846612684],[-75.89415894158941,19.971360423882558],[-75.93375933759337,19.967983269342795],[-75.95175951759518,19.962917537533144],[-75.9661596615966,19.95447465118373],[-75.98055980559805,19.952786073913856],[-76.11376113761138,19.983180464771735],[-76.20376203762038,19.99162335112115],[-76.24696246962469,19.989934773851274],[-76.32976329763298,19.969671846612684],[-76.36576365763658,19.964606114803033],[-76.43776437764377,19.964606114803033],[-76.45936459364593,19.962917537533144],[-76.50256502565026,19.947720342104205],[-76.52416524165241,19.944343187564442],[-76.65016650166501,19.951097496643968],[-76.77976779767798,19.94096603302468],[-76.80136801368013,19.930834569405377],[-76.82296822968229,19.930834569405377],[-76.84456844568446,19.935900301215028],[-76.86616866168661,19.937588878484902],[-76.88056880568806,19.930834569405377],[-76.91296912969129,19.907194487627024],[-76.93456934569345,19.89706302400772],[-76.95976959769597,19.890308714928196],[-77.08937089370893,19.885242983118545],[-77.11457114571145,19.888620137658307],[-77.16497164971649,19.908883064896898],[-77.19017190171901,19.912260219436675],[-77.20457204572045,19.902128755817373],[-77.20817208172082,19.902128755817373],[-77.21537215372153,19.908883064896898],[-77.22617226172261,19.910571642166786],[-77.23697236972369,19.907194487627024],[-77.24417244172442,19.89706302400772],[-77.26937269372694,19.90381733308726],[-77.29817298172982,19.907194487627024],[-77.32337323373234,19.900440178547484],[-77.34137341373413,19.881865828578782],[-77.31257312573125,19.881865828578782],[-77.31257312573125,19.875111519499242],[-77.33057330573305,19.875111519499242],[-77.35937359373594,19.864980055879954],[-77.37737377373773,19.86160290134019],[-77.4709747097471,19.859914324070303],[-77.53217532175321,19.844717128641364],[-77.56817568175681,19.8413399741016],[-77.61137611376114,19.844717128641364],[-77.67257672576726,19.82951993321241],[-77.69417694176941,19.827831355942536],[-77.70497704977049,19.82951993321241],[-77.71937719377193,19.83627424229195],[-77.73017730177301,19.844717128641364],[-77.73737737377374,19.85653716953054],[-77.73737737377374,19.873422942229368],[-77.71577715777157,19.907194487627024],[-77.71577715777157,19.917325951246312],[-77.70857708577086,19.9190145285162],[-77.69777697776978,19.920703105786075],[-77.69057690576905,19.92408026032585],[-77.68337683376834,19.92914599213549],[-77.6761767617676,19.93927745575479],[-77.6689766897669,19.944343187564442],[-77.67257672576726,19.95447465118373],[-77.66537665376653,19.962917537533144],[-77.64737647376474,19.978114732962098],[-77.62577625776257,20.008509123819977],[-77.62217622176222,20.013574855629628],[-77.62217622176222,20.020329164709167],[-77.57177571775718,20.06085501918635],[-77.57537575375754,20.069297905535763],[-77.58977589775897,20.082806523694813],[-77.58617586175862,20.087872255504465],[-77.57897578975789,20.087872255504465],[-77.55017550175502,20.07942936915505],[-77.53937539375393,20.089560832774353],[-77.52137521375214,20.094626564584004],[-77.51777517775177,20.098003719123767],[-77.51417514175141,20.104758028203292],[-77.49617496174962,20.130086687251534],[-77.47817478174781,20.140218150870837],[-77.4349743497435,20.1621696553793],[-77.42057420574206,20.18580973715767],[-77.40257402574025,20.197629778046846],[-77.30177301773017,20.243221364333678],[-77.28017280172801,20.244909941603566],[-77.26577265772657,20.253352827952966],[-77.25137251372513,20.28881295062051],[-77.23697236972369,20.300632991509687],[-77.23337233372334,20.300632991509687],[-77.22977229772297,20.300632991509687],[-77.22257222572226,20.300632991509687],[-77.22977229772297,20.28881295062051],[-77.22257222572226,20.28374721881086],[-77.21177211772117,20.282058641540985],[-77.19377193771938,20.287124373350622],[-77.1829718297183,20.295567259700036],[-77.17217172171722,20.307387300589212],[-77.16497164971649,20.322584496018166],[-77.16137161371613,20.337781691447105],[-77.15417154171541,20.344536000526645],[-77.11457114571145,20.368176082305],[-77.11097110971109,20.417144823131594],[-77.10377103771037,20.42389913221112],[-77.09657096570966,20.43065344129066],[-77.08217082170822,20.46611356395819],[-77.11457114571145,20.51170515024502],[-77.12177121771218,20.520148036594435],[-77.15057150571505,20.53872238656315],[-77.18657186571865,20.550542427452328],[-77.19737197371974,20.552231004722216],[-77.19017190171901,20.540410963833025],[-77.19377193771938,20.5336566547535],[-77.21537215372153,20.545476695642677],[-77.22977229772297,20.552231004722216],[-77.24057240572405,20.562362468341504],[-77.24417244172442,20.586002550119858],[-77.24057240572405,20.592756859199397],[-77.23337233372334,20.59613401373916],[-77.22257222572226,20.599511168278923],[-77.21537215372153,20.602888322818686],[-77.19377193771938,20.629905559136816],[-77.19377193771938,20.63665986821634],[-77.23337233372334,20.65861137272482],[-77.25137251372513,20.661988527264583],[-77.25857258572586,20.64341417729588],[-77.27657276572765,20.661988527264583],[-77.29457294572946,20.687317186312825],[-77.31617316173161,20.709268690821304],[-77.34137341373413,20.717711577170718],[-77.37017370173702,20.71602299990083],[-77.40257402574025,20.709268690821304],[-77.42777427774277,20.699137227202],[-77.44217442174421,20.683940031773062],[-77.45297452974529,20.690694340852588],[-77.45657456574565,20.690694340852588],[-77.46377463774637,20.687317186312825],[-77.4709747097471,20.683940031773062],[-77.48177481774817,20.682251454503174],[-77.48537485374854,20.67887429996341],[-77.49257492574925,20.677185722693537],[-77.50337503375033,20.677185722693537],[-77.52137521375214,20.6805628772333],[-77.57177571775718,20.697448649932127],[-77.61137611376114,20.67887429996341],[-77.62217622176222,20.677185722693537],[-77.63657636576366,20.687317186312825],[-77.64017640176401,20.690694340852588],[-77.65097650976509,20.692382918122476],[-77.67977679776797,20.690694340852588],[-77.6869768697687,20.692382918122476],[-77.70497704977049,20.697448649932127],[-77.71217712177122,20.70082580447189],[-77.71577715777157,20.699137227202],[-77.73017730177301,20.697448649932127],[-77.77697776977769,20.70082580447189],[-77.7949779497795,20.70589153628154],[-77.82377823778238,20.72277730898037],[-77.84177841778417,20.727843040790006],[-77.87777877778777,20.732908772599657],[-77.89937899378994,20.727843040790006],[-77.91377913779138,20.71602299990083],[-77.92817928179281,20.704202959011653],[-77.94257942579425,20.697448649932127],[-78.00738007380073,20.69576007266224],[-78.03978039780398,20.704202959011653],[-78.05058050580506,20.726154463520132],[-78.05778057780577,20.726154463520132],[-78.0649806498065,20.710957268091178],[-78.09738097380973,20.74810596802861],[-78.11178111781118,20.753171699838248],[-78.13338133381333,20.75654885437801],[-78.14418144181441,20.7683688952672],[-78.16218162181622,20.80045186339497],[-78.1729817298173,20.812271904284145],[-78.1909819098191,20.827469099713085],[-78.21258212582126,20.839289140602276],[-78.2269822698227,20.839289140602276],[-78.23778237782378,20.834223408792624],[-78.24138241382414,20.839289140602276],[-78.24138241382414,20.84773202695169],[-78.24498244982449,20.854486336031215],[-78.25578255782557,20.86799495419028],[-78.2629826298263,20.87812641780957],[-78.26658266582666,20.886569304158982],[-78.27378273782737,20.901766499587936],[-78.34218342183422,20.949046663144642],[-78.35658356583565,20.952423817684405],[-78.39258392583926,20.95073524041453],[-78.40338403384034,20.957489549494056],[-78.41418414184142,20.972686744922996],[-78.42858428584286,20.999703981241126],[-78.4429844298443,21.011524022130303],[-78.4789847898479,21.036852681178544],[-78.48618486184861,21.038541258448433],[-78.49338493384934,21.04867272206772],[-78.50058500585006,21.082444267465377],[-78.50418504185042,21.146610203720925],[-78.51138511385113,21.17531601730893],[-78.52578525785258,21.204021830896934],[-78.53658536585365,21.23103906721505],[-78.53298532985329,21.259744880803055],[-78.52218522185221,21.249613417183767],[-78.51138511385113,21.249613417183767],[-78.50058500585006,21.256367726263292],[-78.49698496984969,21.269876344422357],[-78.50418504185042,21.28000780804166],[-78.53658536585365,21.290139271660948],[-78.54378543785438,21.296893580740488],[-78.54738547385473,21.31546793070919],[-78.55818558185581,21.347550898836957],[-78.55818558185581,21.366125248805673],[-78.56178561785617,21.3830110215045],[-78.58338583385833,21.413405412362394],[-78.5869858698587,21.428602607791333],[-78.59418594185942,21.46237415318899],[-78.60858608586085,21.494457121316756],[-78.62658626586266,21.521474357634887],[-78.64818648186481,21.541737284873477],[-78.66618666186662,21.551868748492765],[-78.68058680586806,21.556934480302417],[-78.73458734587345,21.563688789381942],[-78.74538745387453,21.568754521191593],[-78.75258752587526,21.575508830271133],[-78.74538745387453,21.589017448430184],[-78.73458734587345,21.583951716620533],[-78.72018720187201,21.58057456208077],[-78.69138691386914,21.58226313935066],[-78.68778687786877,21.58564029389042],[-78.69498694986949,21.597460334779598],[-78.70578705787058,21.61265753020855],[-78.7129871298713,21.619411839288077],[-78.72378723787237,21.626166148367602],[-78.74538745387453,21.636297611986905],[-78.75978759787597,21.641363343796556],[-78.7669876698767,21.639674766526667],[-78.77418774187741,21.636297611986905],[-78.78498784987849,21.62954330290738],[-78.83178831788318,21.621100416557965],[-78.87858878588786,21.616034684748314],[-78.88218882188822,21.614346107478426],[-78.88938889388893,21.609280375668774],[-78.8929889298893,21.604214643859137],[-78.89658896588965,21.599148912049486],[-78.90018900189001,21.595771757509723],[-78.90738907389074,21.594083180239835],[-78.93618936189361,21.595771757509723],[-78.95058950589505,21.599148912049486],[-78.96138961389613,21.599148912049486],[-78.97218972189721,21.595771757509723],[-78.97578975789757,21.60252606658925],[-78.99378993789938,21.594083180239835],[-79.01179011790117,21.590706025700072],[-79.0549905499055,21.589017448430184],[-79.07659076590765,21.58564029389042],[-79.1269912699127,21.562000212112068],[-79.17019170191702,21.551868748492765],[-79.20979209792098,21.548491593953003],[-79.24939249392493,21.551868748492765],[-79.32859328593285,21.573820253001244],[-79.34659346593466,21.583951716620533],[-79.36459364593645,21.599148912049486],[-79.3789937899379,21.60083748931936],[-79.42939429394293,21.595771757509723],[-79.45099450994509,21.595771757509723],[-79.47259472594726,21.60252606658925],[-79.48339483394834,21.6075917983989],[-79.49059490594905,21.616034684748314],[-79.5049950499505,21.639674766526667],[-79.51579515795157,21.64811765287608],[-79.51939519395194,21.639674766526667],[-79.5229952299523,21.62954330290738],[-79.53019530195301,21.62278899382784],[-79.54099540995409,21.62278899382784],[-79.54819548195482,21.626166148367602],[-79.5589955899559,21.634609034717016],[-79.56619566195661,21.63798618925678],[-79.60939609396094,21.64980623014597],[-79.6129961299613,21.651494807415844],[-79.62019620196202,21.658249116495384],[-79.62739627396273,21.666692002844798],[-79.6309963099631,21.678512043733974],[-79.63819638196382,21.686954930083388],[-79.65259652596525,21.69202066189304],[-79.7209972099721,21.693709239162914],[-79.78939789397893,21.71228358913163],[-79.81459814598145,21.71059501186174],[-79.82539825398254,21.695397816432802],[-79.83259832598326,21.678512043733974],[-79.85059850598506,21.68020062100385],[-79.87219872198722,21.69033208462315],[-79.89379893798937,21.698774970972565],[-79.89379893798937,21.70552928005209],[-79.87579875798758,21.71228358913163],[-79.87579875798758,21.719037898211155],[-79.89019890198901,21.722415052750918],[-79.89379893798937,21.734235093640095],[-79.89379893798937,21.74774371179916],[-79.89379893798937,21.759563752688337],[-79.91179911799118,21.74774371179916],[-79.92979929799297,21.74267797998951],[-79.94779947799478,21.74267797998951],[-79.9729997299973,21.746055134529286],[-79.99099990999909,21.75280944360881],[-80.00540005400053,21.756186598148574],[-80.01260012600126,21.754498020878685],[-80.01620016200161,21.746055134529286],[-80.0090000900009,21.739300825449746],[-79.99819998199982,21.734235093640095],[-79.99099990999909,21.73254651637022],[-80.00180001800018,21.720726475481044],[-80.02340023400234,21.729169361830458],[-80.03780037800378,21.74774371179916],[-80.0450004500045,21.7629409072281],[-80.04860048600486,21.78489241173658],[-80.05580055800557,21.803466761705295],[-80.06660066600665,21.816975379864346],[-80.08460084600846,21.822041111673997],[-80.10620106201061,21.82541826621376],[-80.14580145801457,21.840615461642713],[-80.1890018900189,21.849058347992127],[-80.21780217802177,21.871009852500592],[-80.26820268202681,21.886207047929545],[-80.30060300603006,21.911535706977787],[-80.40860408604085,22.021293229520154],[-80.41220412204122,22.02467038405993],[-80.41220412204122,22.029736115869568],[-80.41220412204122,22.036490424949108],[-80.41580415804158,22.041556156758745],[-80.41940419404193,22.041556156758745],[-80.43380433804337,22.03986757948887],[-80.43740437404374,22.041556156758745],[-80.44820448204482,22.04999904310816],[-80.45180451804518,22.056753352187698],[-80.45180451804518,22.068573393076875],[-80.43740437404374,22.065196238537112],[-80.41940419404193,22.066884815806986],[-80.40140401404014,22.071950547616638],[-80.3870038700387,22.08208201123594],[-80.4050040500405,22.078704856696177],[-80.40860408604085,22.0753277021564],[-80.4050040500405,22.085459165775703],[-80.40140401404014,22.093902052125117],[-80.39780397803978,22.100656361204642],[-80.39780397803978,22.109099247554056],[-80.4050040500405,22.11247640209382],[-80.41580415804158,22.109099247554056],[-80.42660426604266,22.110787824823944],[-80.4230042300423,22.12260786571312],[-80.44460444604445,22.12260786571312],[-80.45540455404554,22.131050752062535],[-80.4590045900459,22.14287079295171],[-80.44460444604445,22.15806798838065],[-80.46620466204662,22.171576606539716],[-80.4770047700477,22.18001949288913],[-80.48420484204841,22.191839533778307],[-80.49140491404914,22.18170807015902],[-80.50220502205022,22.178330915619256],[-80.52020520205201,22.18001949288913],[-80.53460534605345,22.18508522469878],[-80.53820538205382,22.16482229746019],[-80.52740527405274,22.151313679301126],[-80.49860498604986,22.131050752062535],[-80.48420484204841,22.11247640209382],[-80.46980469804697,22.088836320315465],[-80.46620466204662,22.065196238537112],[-80.46980469804697,22.041556156758745],[-80.5130051300513,22.056753352187698],[-80.6390063900639,22.053376197647935],[-80.76140761407613,22.06181908399735],[-80.90540905409054,22.046621888568396],[-80.99180991809918,22.05506477491781],[-81.01341013410133,22.06013050672746],[-81.04941049410493,22.078704856696177],[-81.0890108901089,22.085459165775703],[-81.10341103411034,22.09559062939499],[-81.11421114211142,22.110787824823944],[-81.13941139411394,22.161445142920428],[-81.1430114301143,22.171576606539716],[-81.1430114301143,22.18677380196867],[-81.13581135811357,22.230676810985614],[-81.13941139411394,22.232365388255502],[-81.16821168211682,22.271202665462795],[-81.1790117901179,22.27964555181221],[-81.19341193411934,22.281334129082097],[-81.20421204212042,22.277956974542334],[-81.21141211412113,22.267825510923032],[-81.21141211412113,22.256005470033855],[-81.1970119701197,22.212102461016897],[-81.1970119701197,22.090524897585354],[-81.20421204212042,22.06013050672746],[-81.22581225812257,22.06181908399735],[-81.21141211412113,22.083770588505814],[-81.2150121501215,22.114164979363707],[-81.22941229412294,22.1445593702216],[-81.24021240212402,22.151313679301126],[-81.26541265412654,22.141182215681823],[-81.27261272612726,22.13780506114206],[-81.27621276212761,22.129362174792647],[-81.27621276212761,22.110787824823944],[-81.27981279812798,22.10234493847453],[-81.29061290612906,22.09727920666488],[-81.29781297812978,22.100656361204642],[-81.3050130501305,22.10741067028418],[-81.31581315813158,22.109099247554056],[-81.3230132301323,22.104033515744405],[-81.3230132301323,22.09727920666488],[-81.32661326613265,22.092213474855228],[-81.33741337413373,22.088836320315465],[-81.37341373413734,22.104033515744405],[-81.3950139501395,22.169888029269842],[-81.43461434614346,22.18508522469878],[-81.48141481414814,22.18508522469878],[-81.49221492214922,22.188462379238544],[-81.51381513815137,22.20197099739761],[-81.52461524615246,22.205348151937372],[-81.53181531815318,22.20197099739761],[-81.54621546215462,22.188462379238544],[-81.5570155701557,22.18508522469878],[-81.56061560615606,22.18508522469878],[-81.56061560615606,22.18170807015902],[-81.56421564215641,22.18001949288913],[-81.57141571415714,22.178330915619256],[-81.5750157501575,22.18001949288913],[-81.5750157501575,22.188462379238544],[-81.58221582215822,22.191839533778307],[-81.62181621816218,22.205348151937372],[-81.6290162901629,22.208725306477135],[-81.63981639816397,22.212102461016897],[-81.65061650616506,22.213791038286786],[-81.65781657816578,22.20197099739761],[-81.66501665016649,22.198593842857846],[-81.69021690216901,22.196905265587958],[-81.71181711817118,22.198593842857846],[-81.72621726217263,22.205348151937372],[-81.73341733417334,22.205348151937372],[-81.73341733417334,22.193528111048195],[-81.74061740617405,22.190150956508433],[-81.75861758617586,22.191839533778307],[-81.75861758617586,22.188462379238544],[-81.7550175501755,22.18508522469878],[-81.75141751417515,22.178330915619256],[-81.76221762217622,22.178330915619256],[-81.8090180901809,22.183396647428893],[-81.82341823418234,22.188462379238544],[-81.84861848618486,22.215479615556674],[-81.85941859418594,22.228988233715725],[-81.8630186301863,22.24418542914468],[-81.8810188101881,22.261071201843507],[-82.02142021420214,22.313417097209864],[-82.03582035820358,22.32017140628939],[-82.05022050220502,22.33199144717858],[-82.0610206102061,22.337057178988218],[-82.07902079020789,22.338745756258106],[-82.08982089820898,22.34212291079787],[-82.09342093420933,22.34718864260752],[-82.10422104221041,22.365762992576222],[-82.10422104221041,22.370828724385873],[-82.11862118621185,22.370828724385873],[-82.13662136621366,22.372517301655762],[-82.15462154621545,22.379271610735287],[-82.16542165421654,22.396157383434115],[-82.15822158221582,22.413043156132943],[-82.14742147421474,22.421486042482357],[-82.12942129421293,22.428240351561882],[-82.11862118621185,22.43161750610166],[-82.00342003420033,22.428240351561882],[-81.96741967419673,22.436683237911296],[-81.93861938619386,22.433306083371534],[-81.90981909819098,22.434994660641422],[-81.89181891818917,22.438371815181185],[-81.8630186301863,22.433306083371534],[-81.84141841418413,22.42992892883177],[-81.7910179101791,22.438371815181185],[-81.75141751417515,22.453569010610124],[-81.74061740617405,22.45188043334025],[-81.72981729817297,22.4569461651499],[-81.70821708217082,22.4569461651499],[-81.69741697416974,22.460323319689664],[-81.6830168301683,22.463700474229427],[-81.66861668616686,22.475520515118603],[-81.66141661416614,22.483963401468017],[-81.65061650616506,22.48734055600778],[-81.65421654216541,22.50929206051626],[-81.6470164701647,22.517734946865673],[-81.65061650616506,22.5346207195645],[-81.64341643416434,22.561637955882617],[-81.64341643416434,22.573457996771808],[-81.65781657816578,22.57683515131157],[-81.67221672216722,22.578523728581445],[-81.7010170101701,22.598786655820035],[-81.7190171901719,22.61398385124899],[-81.7550175501755,22.637623933027342],[-81.78741787417874,22.64944397391652],[-81.87741877418773,22.67983836477441],[-81.91341913419134,22.678149787504523],[-81.99261992619925,22.671395478424998],[-82.0970209702097,22.65450970572617],[-82.12942129421293,22.668018323885235],[-82.19782197821978,22.686592673853937],[-82.27342273422734,22.684904096584063],[-82.31662316623166,22.6815269420443],[-82.33822338223382,22.678149787504523],[-82.35982359823598,22.6815269420443],[-82.39222392223922,22.688281251123826],[-82.4570245702457,22.67983836477441],[-82.5110251102511,22.69165840566359],[-82.52182521825218,22.689969828393714],[-82.53982539825398,22.6815269420443],[-82.55062550625506,22.678149787504523],[-82.59742597425974,22.688281251123826],[-82.63342633426333,22.67983836477441],[-82.73782737827378,22.706855601092528],[-82.75942759427593,22.705167023822654],[-82.7810278102781,22.69672413747324],[-82.79182791827918,22.67983836477441],[-82.79542795427955,22.661264014805695],[-82.79542795427955,22.641001087567105],[-82.7990279902799,22.622426737598403],[-82.8170281702817,22.61398385124899],[-82.84942849428494,22.602163810359812],[-82.91062910629105,22.55488364680309],[-82.92142921429215,22.548129337723566],[-82.9430294302943,22.546440760453677],[-82.9610296102961,22.541375028644026],[-83.02583025830258,22.50929206051626],[-83.05823058230582,22.48902913327767],[-83.0870308703087,22.462011896959538],[-83.14463144631446,22.360697260766585],[-83.16623166231662,22.338745756258106],[-83.19863198631985,22.335368601718343],[-83.2310323103231,22.34550006533763],[-83.24543245432454,22.34550006533763],[-83.25983259832599,22.34212291079787],[-83.25983259832599,22.340434333527995],[-83.25983259832599,22.32523713809904],[-83.26343263432634,22.32185998355928],[-83.2670326703267,22.32185998355928],[-83.27063270632706,22.323548560829167],[-83.27783277832778,22.32185998355928],[-83.28143281432814,22.32185998355928],[-83.2850328503285,22.32185998355928],[-83.28863288632886,22.318482829019516],[-83.28863288632886,22.30497421086045],[-83.28863288632886,22.301597056320688],[-83.32463324633245,22.27964555181221],[-83.33543335433355,22.267825510923032],[-83.34263342633426,22.259382624573618],[-83.34263342633426,22.254316892763967],[-83.34263342633426,22.250939738224204],[-83.34263342633426,22.245874006414553],[-83.34983349833497,22.232365388255502],[-83.35343353433534,22.225611079175962],[-83.36423364233642,22.218856770096437],[-83.36783367833678,22.2222339246362],[-83.36783367833678,22.225611079175962],[-83.36783367833678,22.213791038286786],[-83.3750337503375,22.20703672920726],[-83.38223382233822,22.21716819282655],[-83.38943389433894,22.22054534736631],[-83.39663396633966,22.218856770096437],[-83.40023400234001,22.203659574667483],[-83.41463414634146,22.18677380196867],[-83.4650346503465,22.18170807015902],[-83.51543515435154,22.188462379238544],[-83.56223562235623,22.205348151937372],[-83.55143551435513,22.213791038286786],[-83.5550355503555,22.223922501906088],[-83.56223562235623,22.234053965525376],[-83.56943569435694,22.245874006414553],[-83.57663576635765,22.245874006414553],[-83.5910359103591,22.22054534736631],[-83.61263612636127,22.19521668831807],[-83.6450364503645,22.178330915619256],[-83.67023670236702,22.171576606539716],[-83.67023670236702,22.17495376107948],[-83.66663666636666,22.18170807015902],[-83.6630366303663,22.18508522469878],[-83.77463774637746,22.169888029269842],[-83.78183781837818,22.171576606539716],[-83.78543785437854,22.17495376107948],[-83.7890378903789,22.18170807015902],[-83.7890378903789,22.188462379238544],[-83.7890378903789,22.191839533778307],[-83.79983799837999,22.188462379238544],[-83.81063810638106,22.17495376107948],[-83.8250382503825,22.171576606539716],[-83.90423904239042,22.17495376107948],[-83.92583925839259,22.171576606539716],[-83.96543965439655,22.134427906602298],[-83.9690396903969,22.125985020252884],[-83.97623976239763,22.098967783934768],[-83.97983979839798,22.088836320315465],[-83.97623976239763,22.08208201123594],[-83.97263972639726,22.07701627942629],[-83.97263972639726,22.06181908399735],[-83.98343983439834,22.070261970346763],[-83.99423994239942,22.068573393076875],[-84.00144001440015,22.056753352187698],[-84.00144001440015,22.041556156758745],[-83.99423994239942,22.028047538599694],[-83.98343983439834,22.022981806790042],[-83.97263972639726,22.026358961329805],[-83.95823958239582,22.03480184767922],[-83.96543965439655,22.01285034317074],[-83.99783997839978,21.989210261392387],[-84.00864008640086,21.968947334153796],[-84.0050400504005,21.963881602344145],[-83.99783997839978,21.958815870534494],[-83.99423994239942,21.95206156145497],[-83.99783997839978,21.941930097835666],[-84.00864008640086,21.933487211486252],[-84.01944019440194,21.925044325136838],[-84.03024030240302,21.9199785933272],[-84.0410404104041,21.918290016057313],[-84.0590405904059,21.921667170597075],[-84.09864098640986,21.94024152056579],[-84.12024120241202,21.945307252375443],[-84.14184141841417,21.94024152056579],[-84.18144181441814,21.918290016057313],[-84.19944199441994,21.911535706977787],[-84.21024210242102,21.9098471297079],[-84.23184231842318,21.911535706977787],[-84.2390423904239,21.911535706977787],[-84.24984249842498,21.906469975168136],[-84.2750427504275,21.89296135700907],[-84.30384303843039,21.884518470659657],[-84.42264422644226,21.791646720816118],[-84.46584465844658,21.76969521630764],[-84.5090450904509,21.766318061767876],[-84.51984519845197,21.786580989006467],[-84.48024480244803,21.865944120690955],[-84.4730447304473,21.904781397898248],[-84.49464494644945,21.933487211486252],[-84.53424534245342,21.94024152056579],[-84.58104581045811,21.933487211486252],[-84.66024660246602,21.911535706977787],[-84.69984699846998,21.89464993427896],[-84.80064800648006,21.8321725752933],[-84.84024840248402,21.823729688943885],[-84.88344883448835,21.823729688943885],[-84.92664926649266,21.835549729833062],[-84.93744937449374,21.845681193452364],[-84.94824948249482,21.860878388881304],[-84.94824948249482,21.876075584310243],[-84.94464944649447,21.89296135700907],[-84.9410494104941,21.89971566608861],[-84.93744937449374,21.908158552438024],[-84.93024930249302,21.91491286151755],[-84.9230492304923,21.916601438787424],[-84.91944919449195,21.91491286151755],[-84.91584915849158,21.9098471297079],[-84.91224912249122,21.903092820628373],[-84.91224912249122,21.89971566608861],[-84.9050490504905,21.89296135700907],[-84.89424894248943,21.891272779739197],[-84.8870488704887,21.889584202469308],[-84.87624876248762,21.889584202469308],[-84.86184861848618,21.896338511548834],[-84.84744847448474,21.908158552438024],[-84.84744847448474,21.921667170597075],[-84.86544865448654,21.931798634216378],[-84.84744847448474,21.94024152056579],[-84.83304833048331,21.94024152056579],[-84.82224822248222,21.93011005694649],[-84.82224822248222,21.911535706977787],[-84.73944739447394,21.95206156145497],[-84.66744667446675,21.97232448869356],[-84.58464584645846,22.007784611361103],[-84.53064530645307,22.04493331129852],[-84.51984519845197,22.048310465838284],[-84.5090450904509,22.048310465838284],[-84.49464494644945,22.046621888568396],[-84.4910449104491,22.043244734028633],[-84.49464494644945,22.03480184767922],[-84.46224462244622,22.021293229520154],[-84.44064440644406,22.028047538599694],[-84.41544415444154,22.041556156758745],[-84.38664386643866,22.048310465838284],[-84.37224372243722,22.043244734028633],[-84.35424354243543,22.03480184767922],[-84.34344343443433,22.021293229520154],[-84.33624336243362,22.011161765900866],[-84.33264332643326,22.004407456821326],[-84.30384303843039,22.022981806790042],[-84.28944289442894,22.021293229520154],[-84.2750427504275,22.0753277021564],[-84.28584285842858,22.063507661267224],[-84.29664296642966,22.046621888568396],[-84.30744307443074,22.036490424949108],[-84.32184321843218,22.048310465838284],[-84.3290432904329,22.066884815806986],[-84.32544325443254,22.08208201123594],[-84.3290432904329,22.093902052125117],[-84.35064350643506,22.10234493847453],[-84.33984339843398,22.12429644298301],[-84.33624336243362,22.131050752062535],[-84.35424354243543,22.132739329332423],[-84.37584375843758,22.13949363841195],[-84.39384393843937,22.147936524761363],[-84.40464404644047,22.15806798838065],[-84.41184411844118,22.171576606539716],[-84.4190441904419,22.188462379238544],[-84.42984429844299,22.20197099739761],[-84.44424444244441,22.205348151937372],[-84.4370443704437,22.213791038286786],[-84.42624426244262,22.228988233715725],[-84.41544415444154,22.24756258368444],[-84.41184411844118,22.26444835638327],[-84.40824408244082,22.288088438161623],[-84.40464404644047,22.308351365400213],[-84.39024390243902,22.35225437441717],[-84.39024390243902,22.355631528956934],[-84.37224372243722,22.380960188005176],[-84.36864368643685,22.38264876527505],[-84.35784357843578,22.38433734254494],[-84.35424354243543,22.3877144970847],[-84.35064350643506,22.392780228894352],[-84.34344343443433,22.406288847053418],[-84.34344343443433,22.41135457886307],[-84.32184321843218,22.440060392451073],[-84.30744307443074,22.455257587880013],[-84.28944289442894,22.465389051499315],[-84.28944289442894,22.473831937848715],[-84.30744307443074,22.473831937848715],[-84.2930429304293,22.485651978737906],[-84.24984249842498,22.49409486508732],[-84.23184231842318,22.504226328706608],[-84.21744217442173,22.51942352413556],[-84.20664206642066,22.541375028644026],[-84.19944199441994,22.563326533152505],[-84.21384213842138,22.575146574041682],[-84.21384213842138,22.583589460391096],[-84.2030420304203,22.580212305851333],[-84.19224192241921,22.575146574041682],[-84.17784177841779,22.585278037660984],[-84.16344163441634,22.58696661493086],[-84.15264152641527,22.581900883121207],[-84.14544145441454,22.57008084223203],[-84.13464134641346,22.60722954216945],[-84.1310413104131,22.61736100578875],[-84.12024120241202,22.620738160328514],[-84.0950409504095,22.622426737598403],[-84.08784087840878,22.627492469408054],[-84.08784087840878,22.637623933027342],[-84.08424084240842,22.65450970572617],[-84.0770407704077,22.666329746615347],[-84.06624066240661,22.661264014805695],[-84.05184051840519,22.65282112845628],[-84.0410404104041,22.657886860265933],[-84.03024030240302,22.66970690115511],[-84.01944019440194,22.678149787504523],[-84.03024030240302,22.689969828393714],[-84.03744037440374,22.69672413747324],[-84.05184051840519,22.700101292013002],[-84.06984069840698,22.698412714743114],[-84.06264062640626,22.706855601092528],[-84.05544055440554,22.713609910172067],[-84.04824048240482,22.71867564198172],[-84.03744037440374,22.720364219251593],[-84.0230402304023,22.71529848744194],[-84.01224012240122,22.70178986928289],[-84.00864008640086,22.689969828393714],[-83.99783997839978,22.684904096584063],[-83.98343983439834,22.686592673853937],[-83.97263972639726,22.693346982933477],[-83.91143911439114,22.733872837410658],[-83.8970389703897,22.720364219251593],[-83.88983889838899,22.740627146490183],[-83.87183871838718,22.750758610109486],[-83.82863828638285,22.75413576464925],[-83.81423814238143,22.75751291918901],[-83.74223742237422,22.789595887316793],[-83.70983709837098,22.80141592820597],[-83.69183691836918,22.80141592820597],[-83.6810368103681,22.79972735093608],[-83.67023670236702,22.79466161912643],[-83.65943659436594,22.79466161912643],[-83.65223652236521,22.796350196396318],[-83.63783637836379,22.804793082745732],[-83.63063630636306,22.808170237285495],[-83.63063630636306,22.81661312363491],[-83.63783637836379,22.813235969095146],[-83.6450364503645,22.808170237285495],[-83.6450364503645,22.811547391825258],[-83.6450364503645,22.81492454636502],[-83.65223652236521,22.81661312363491],[-83.63063630636306,22.828433164524085],[-83.6090360903609,22.835187473603625],[-83.55863558635586,22.8368760508735],[-83.5550355503555,22.84194178268315],[-83.54063540635406,22.874024750810918],[-83.53343533435334,22.87740190535068],[-83.49383493834938,22.87740190535068],[-83.49743497434974,22.870647596271155],[-83.49743497434974,22.867270441731392],[-83.5010350103501,22.86389328719163],[-83.47943479434794,22.860516132651853],[-83.46863468634686,22.870647596271155],[-83.46143461434615,22.885844791700094],[-83.45423454234542,22.897664832589285],[-83.43623436234363,22.902730564398922],[-83.42543425434253,22.89935340985916],[-83.41463414634146,22.890910523509746],[-83.39663396633966,22.88415621443022],[-83.40383403834038,22.874024750810918],[-83.3930339303393,22.87740190535068],[-83.37863378633786,22.885844791700094],[-83.36783367833678,22.89428767804951],[-83.36423364233642,22.911173450748336],[-83.34983349833497,22.931436377986927],[-83.32823328233282,22.95169930522553],[-83.31023310233103,22.958453614305057],[-83.29943299432993,22.96351934611471],[-83.24543245432454,22.993913736972587],[-83.22743227432274,23.002356623322],[-83.20583205832058,23.002356623322],[-83.19143191431914,22.997290891512364],[-83.1770317703177,22.98715942789306],[-83.1770317703177,22.980405118813536],[-83.18783187831878,22.973650809733996],[-83.19143191431914,22.96183076884482],[-83.18783187831878,22.948322150685755],[-83.18063180631806,22.934813532526704],[-83.16983169831698,22.929747800717053],[-83.1590315903159,22.936502109796578],[-83.15183151831518,22.94663357341588],[-83.14463144631446,22.953387882495406],[-83.16263162631626,22.96689650065447],[-83.1590315903159,22.980405118813536],[-83.14463144631446,22.992225159702713],[-83.1230312303123,23.000668046052127],[-83.08343083430834,23.007422355131652],[-83.07263072630725,23.010799509671415],[-83.06183061830617,23.01924239602083],[-83.05463054630546,23.020930973290717],[-83.04383043830438,23.01924239602083],[-83.02943029430294,23.010799509671415],[-83.02223022230221,23.007422355131652],[-83.0150301503015,23.010799509671415],[-83.00783007830078,23.015865241481066],[-83.00063000630006,23.01924239602083],[-82.99342993429934,23.014176664211192],[-82.98622986229861,23.00404520059189],[-82.99342993429934,23.000668046052127],[-83.00423004230042,22.998979468782238],[-83.00783007830078,22.993913736972587],[-83.00423004230042,22.9837822733533],[-82.99702997029969,22.980405118813536],[-82.98982989829898,22.9837822733533],[-82.9790297902979,22.993913736972587],[-82.98262982629826,22.973650809733996],[-82.96462964629646,22.973650809733996],[-82.9430294302943,22.985470850623173],[-82.93222932229322,23.010799509671415],[-82.91782917829178,23.032751014179894],[-82.88542885428853,23.032751014179894],[-82.84942849428494,23.027685282370243],[-82.82422824228242,23.031062436910005],[-82.80262802628026,23.03950532325942],[-82.71262712627126,23.034439591449782],[-82.6190261902619,23.04625963233896],[-82.59742597425974,23.054702518688373],[-82.57582575825758,23.054702518688373],[-82.53262532625325,23.076654023196852],[-82.5110251102511,23.083408332276377],[-82.50382503825038,23.08678548681614],[-82.4930249302493,23.100294104975205],[-82.48942489424894,23.103671259514968],[-82.47862478624786,23.105359836784856],[-82.46782467824679,23.10873699132462],[-82.45342453424534,23.117179877674033],[-82.4210242102421,23.139131382182498],[-82.40662406624065,23.147574268531912],[-82.3670236702367,23.152640000341563],[-82.32022320223201,23.17121435031028],[-82.25182251822518,23.181345813929568],[-82.21942219422193,23.194854432088633],[-82.1510215102151,23.179657236659693],[-82.12942129421293,23.181345813929568],[-82.10062100621006,23.188100123009107],[-82.08982089820898,23.18978870027898],[-82.06462064620646,23.193165854818744],[-82.05382053820537,23.194854432088633],[-82.0430204302043,23.198231586628395],[-82.03222032220322,23.199920163898284],[-82.0250202502025,23.19654300935852],[-81.98541985419854,23.17121435031028],[-81.95661956619566,23.16446004123074],[-81.89181891818917,23.157705732151214],[-81.8630186301863,23.15095142307169],[-81.84141841418413,23.157705732151214],[-81.6830168301683,23.157705732151214],[-81.65781657816578,23.156017154881326],[-81.64341643416434,23.159394309421103],[-81.6290162901629,23.16446004123074],[-81.61821618216182,23.159394309421103],[-81.60741607416074,23.159394309421103],[-81.5930159301593,23.159394309421103],[-81.58221582215822,23.157705732151214],[-81.5750157501575,23.15432857761145],[-81.5570155701557,23.140819959452386],[-81.53541535415354,23.12899991856321],[-81.53181531815318,23.10873699132462],[-81.53541535415354,23.08678548681614],[-81.53901539015389,23.068211136847438],[-81.54621546215462,23.0614568277679],[-81.55341553415533,23.058079673228136],[-81.55341553415533,23.054702518688373],[-81.53901539015389,23.047948209608833],[-81.52821528215281,23.047948209608833],[-81.51741517415174,23.04963678687872],[-81.5030150301503,23.054702518688373],[-81.49941499414994,23.059768250498024],[-81.49221492214922,23.08509690954625],[-81.48861488614885,23.093539795895666],[-81.48141481414814,23.100294104975205],[-81.47421474214742,23.10198268224508],[-81.46341463414633,23.103671259514968],[-81.38061380613806,23.117179877674033],[-81.36981369813698,23.120557032213796],[-81.3590135901359,23.132377073102973],[-81.33381333813338,23.137442804912624],[-81.28701287012869,23.14419711399215],[-81.27261272612726,23.1492628458018],[-81.2330123301233,23.16614861850063],[-81.21141211412113,23.183034391199456],[-81.16461164611646,23.208363050247698],[-81.15021150211501,23.21174020478746],[-81.13221132211322,23.204985895707935],[-81.1430114301143,23.194854432088633],[-81.17181171811718,23.183034391199456],[-81.21861218612186,23.172902927580154],[-81.27261272612726,23.142508536722275],[-81.28701287012869,23.1306884958331],[-81.28701287012869,23.12393418675356],[-81.24021240212402,23.11380272313427],[-81.18621186211861,23.05132536414861],[-81.15021150211501,23.034439591449782],[-81.12861128611286,23.034439591449782],[-81.12141121411214,23.03950532325942],[-81.11421114211142,23.04963678687872],[-81.09981099810997,23.06652255957755],[-81.09261092610926,23.074965445926964],[-81.08181081810818,23.098605527705317],[-81.07821078210782,23.103671259514968],[-81.06741067410674,23.105359836784856],[-81.04581045810458,23.110425568594493],[-81.03861038610385,23.110425568594493],[-80.99900999009989,23.103671259514968],[-80.99180991809918,23.103671259514968],[-80.98820988209881,23.105359836784856],[-80.98460984609845,23.10198268224508],[-80.98460984609845,23.08678548681614],[-80.97740977409774,23.06483398230766],[-80.95940959409593,23.059768250498024],[-80.93780937809377,23.063145405037787],[-80.91620916209162,23.068211136847438],[-80.75780757807578,23.096916950435443],[-80.73620736207361,23.096916950435443],[-80.68940689406894,23.08847406408603],[-80.66420664206642,23.090162641355903],[-80.64260642606426,23.098605527705317],[-80.62460624606246,23.112114145864382],[-80.61740617406174,23.132377073102973],[-80.63540635406353,23.15095142307169],[-80.62460624606246,23.156017154881326],[-80.61020610206101,23.157705732151214],[-80.59580595805957,23.156017154881326],[-80.58860588605886,23.15095142307169],[-80.58860588605886,23.14419711399215],[-80.59580595805957,23.137442804912624],[-80.62100621006209,23.090162641355903],[-80.59580595805957,23.069899714117312],[-80.59220592205922,23.068211136847438],[-80.55620556205562,23.007422355131652],[-80.53460534605345,22.993913736972587],[-80.52020520205201,22.992225159702713],[-80.48060480604806,22.985470850623173],[-80.46620466204662,22.980405118813536],[-80.45540455404554,22.971962232464122],[-80.44460444604445,22.960142191574946],[-80.43020430204302,22.950010727955643],[-80.41220412204122,22.944944996145992],[-80.35820358203581,22.944944996145992],[-80.34380343803437,22.94156784160623],[-80.32940329403294,22.929747800717053],[-80.3150031500315,22.92130491436764],[-80.2970029700297,22.916239182557987],[-80.2790027900279,22.911173450748336],[-80.24660246602465,22.911173450748336],[-80.21420214202142,22.916239182557987],[-80.15660156601565,22.938190687066466],[-80.16380163801638,22.96183076884482],[-80.14580145801457,22.96351934611471],[-80.09540095400953,22.938190687066466],[-80.07020070200701,22.931436377986927],[-80.04860048600486,22.934813532526704],[-80.0450004500045,22.958453614305057],[-80.03420034200342,22.953387882495406],[-80.02340023400234,22.94663357341588],[-80.01620016200161,22.938190687066466],[-80.01260012600126,22.928059223447164],[-79.99099990999909,22.890910523509746],[-79.98739987399874,22.88415621443022],[-79.95139951399514,22.86389328719163],[-79.94419944199441,22.86220470992174],[-79.92619926199262,22.86389328719163],[-79.9189991899919,22.860516132651853],[-79.91539915399153,22.85713897811209],[-79.91539915399153,22.852073246302453],[-79.91539915399153,22.848696091762676],[-79.89739897398974,22.855450400842216],[-79.86139861398614,22.88415621443022],[-79.80019800198002,22.89935340985916],[-79.7929979299793,22.897664832589285],[-79.7929979299793,22.890910523509746],[-79.80379803798037,22.88246763716033],[-79.82179821798218,22.870647596271155],[-79.84339843398433,22.880779059890457],[-79.85419854198541,22.872336173541044],[-79.86859868598685,22.8368760508735],[-79.85779857798578,22.81999027817467],[-79.85059850598506,22.81492454636502],[-79.83979839798397,22.808170237285495],[-79.82899828998289,22.806481660015606],[-79.78939789397893,22.80141592820597],[-79.77139771397714,22.796350196396318],[-79.71379713797138,22.75751291918901],[-79.71019710197102,22.75244718737936],[-79.70659706597066,22.749070032839597],[-79.69939699396994,22.747381455569723],[-79.69579695796958,22.749070032839597],[-79.68859688596886,22.75413576464925],[-79.6849968499685,22.7592014964589],[-79.68139681396814,22.760890073728774],[-79.65979659796598,22.76426722826855],[-79.65259652596525,22.7592014964589],[-79.62739627396273,22.657886860265933],[-79.62739627396273,22.65619828299606],[-79.6129961299613,22.65282112845628],[-79.59859598595986,22.646066819376756],[-79.58779587795878,22.63931251029723],[-79.57699576995769,22.627492469408054],[-79.56619566195661,22.610606696709226],[-79.55179551795517,22.580212305851333],[-79.54459544595446,22.565015110422394],[-79.51579515795157,22.539686451374152],[-79.51219512195122,22.5346207195645],[-79.49779497794978,22.531243565024738],[-79.4689946899469,22.531243565024738],[-79.45819458194582,22.52786641048496],[-79.42939429394293,22.490717710547543],[-79.42579425794257,22.478897669658366],[-79.41499414994149,22.47214336057884],[-79.3429934299343,22.413043156132943],[-79.31419314193141,22.399534537973878],[-79.28539285392854,22.40460026978353],[-79.27459274592745,22.39446880616424],[-79.25659256592566,22.38264876527505],[-79.23859238592385,22.375894456195525],[-79.23139231392314,22.3877144970847],[-79.22059220592206,22.3877144970847],[-79.16659166591666,22.377583033465413],[-79.14859148591485,22.377583033465413],[-79.13779137791377,22.38433734254494],[-79.13419134191342,22.391091651624464],[-79.13419134191342,22.396157383434115],[-79.11979119791198,22.396157383434115],[-79.1089910899109,22.39446880616424],[-79.09459094590946,22.386025919814827],[-79.08379083790838,22.38433734254494],[-79.06219062190621,22.386025919814827],[-79.02619026190261,22.399534537973878],[-79.00459004590046,22.40460026978353],[-78.9829898298983,22.40460026978353],[-78.9289892898929,22.399534537973878],[-78.82818828188282,22.3877144970847],[-78.78138781387814,22.391091651624464],[-78.77778777787778,22.380960188005176],[-78.75618756187562,22.32185998355928],[-78.75258752587526,22.32523713809904],[-78.74538745387453,22.328614292638804],[-78.73458734587345,22.316794251749627],[-78.72378723787237,22.323548560829167],[-78.70938709387093,22.355631528956934],[-78.72378723787237,22.372517301655762],[-78.7309873098731,22.379271610735287],[-78.73818738187381,22.38433734254494],[-78.73818738187381,22.391091651624464],[-78.70938709387093,22.3877144970847],[-78.6769867698677,22.357320106226823],[-78.56538565385654,22.32185998355928],[-78.55458554585546,22.311728519939976],[-78.54378543785438,22.298219901780925],[-78.52578525785258,22.28302270635197],[-78.50058500585006,22.26951408819292],[-78.48258482584825,22.261071201843507],[-78.4609846098461,22.254316892763967],[-78.39978399783998,22.24418542914468],[-78.38178381783817,22.245874006414553],[-78.38178381783817,22.239119697335028],[-78.38178381783817,22.225611079175962],[-78.38178381783817,22.218856770096437],[-78.37098370983709,22.223922501906088],[-78.36738367383674,22.22729965644585],[-78.36018360183601,22.21716819282655],[-78.34938349383494,22.196905265587958],[-78.34218342183422,22.188462379238544],[-78.3349833498335,22.183396647428893],[-78.3169831698317,22.173265183809605],[-78.30978309783097,22.168199451999953],[-78.30258302583026,22.163133720190302],[-78.29178291782918,22.163133720190302],[-78.28098280982809,22.16482229746019],[-78.27018270182701,22.16482229746019],[-78.23778237782378,22.151313679301126],[-78.22338223382233,22.146247947491474],[-78.1729817298173,22.14287079295171],[-78.16218162181622,22.13949363841195],[-78.16218162181622,22.129362174792647],[-78.16218162181622,22.11754213390347],[-78.15498154981549,22.109099247554056],[-78.14778147781477,22.10741067028418],[-78.12258122581225,22.10741067028418],[-78.12618126181262,22.105722093014293],[-78.12978129781297,22.10234493847453],[-78.11898118981189,22.093902052125117],[-78.10458104581045,22.088836320315465],[-78.09378093780937,22.085459165775703],[-78.08298082980829,22.08208201123594],[-78.07938079380793,22.08208201123594],[-78.0649806498065,22.087147743045577],[-78.05418054180541,22.07701627942629],[-78.04338043380433,22.051687620378047],[-78.02178021780217,22.03480184767922],[-78.01818018180181,22.028047538599694],[-78.0109801098011,22.009473188630977],[-77.99297992979929,21.979078797773084],[-77.98577985779858,21.97063591142367],[-77.9749797497975,21.965570179614033],[-77.96057960579606,21.958815870534494],[-77.91377913779138,21.91491286151755],[-77.91017910179102,21.906469975168136],[-77.89577895778957,21.87776416158013],[-77.88857888578886,21.869321275230718],[-77.87777877778777,21.871009852500592],[-77.87057870578705,21.881141316119894],[-77.86697866978669,21.95543871599473],[-77.85977859778598,21.965570179614033],[-77.8489784897849,21.97063591142367],[-77.82377823778238,21.967258756883908],[-77.80577805778057,21.965570179614033],[-77.81657816578165,21.95543871599473],[-77.84537845378453,21.95037298418508],[-77.85257852578525,21.941930097835666],[-77.85257852578525,21.923355747866964],[-77.8489784897849,21.9098471297079],[-77.84177841778417,21.89971566608861],[-77.83457834578346,21.889584202469308],[-77.82377823778238,21.879452738850006],[-77.8129781297813,21.876075584310243],[-77.78777787777878,21.876075584310243],[-77.77697776977769,21.869321275230718],[-77.76977769777697,21.854124079801778],[-77.76617766177661,21.83723830710295],[-77.76617766177661,21.82541826621376],[-77.76257762577626,21.813598225324583],[-77.75177751777517,21.80515533897517],[-77.73737737377374,21.798401029895643],[-77.70857708577086,21.78995814354623],[-77.70497704977049,21.78995814354623],[-77.69057690576905,21.796712452625755],[-77.67977679776797,21.791646720816118],[-77.67257672576726,21.78489241173658],[-77.66537665376653,21.781515257196816],[-77.60417604176041,21.78995814354623],[-77.58617586175862,21.78826956627634],[-77.56817568175681,21.779826679926927],[-77.5249752497525,21.754498020878685],[-77.5249752497525,21.76800663903775],[-77.51777517775177,21.77476094811729],[-77.49257492574925,21.781515257196816],[-77.48897488974889,21.771383793577513],[-77.48177481774817,21.766318061767876],[-77.47457474574746,21.764629484497988],[-77.46377463774637,21.766318061767876],[-77.46377463774637,21.771383793577513],[-77.46737467374673,21.778138102657053],[-77.4709747097471,21.781515257196816],[-77.45657456574565,21.776449525387164],[-77.44217442174421,21.766318061767876],[-77.42057420574206,21.746055134529286],[-77.4349743497435,21.744366557259397],[-77.44577445774458,21.74943228906905],[-77.45297452974529,21.751120866338923],[-77.45657456574565,21.73254651637022],[-77.45297452974529,21.715660743671393],[-77.43857438574385,21.683577775543625],[-77.4349743497435,21.668380580114672],[-77.43137431374313,21.658249116495384],[-77.41697416974169,21.653183384685732],[-77.38817388173881,21.64980623014597],[-77.36297362973629,21.63798618925678],[-77.35577355773557,21.636297611986905],[-77.34857348573486,21.63798618925678],[-77.34137341373413,21.64305192106643],[-77.33777337773377,21.64811765287608],[-77.33777337773377,21.64980623014597],[-77.33777337773377,21.654871961955607],[-77.34137341373413,21.668380580114672],[-77.35217352173521,21.68020062100385],[-77.37737377373773,21.69033208462315],[-77.38817388173881,21.703840702782216],[-77.40257402574025,21.73254651637022],[-77.40617406174061,21.756186598148574],[-77.41337413374133,21.7629409072281],[-77.41697416974169,21.76800663903775],[-77.43857438574385,21.77476094811729],[-77.44217442174421,21.778138102657053],[-77.44217442174421,21.78826956627634],[-77.44937449374494,21.801778184435406],[-77.46017460174602,21.80853249351493],[-77.47817478174781,21.801778184435406],[-77.49257492574925,21.81528680259447],[-77.50337503375033,21.803466761705295],[-77.51777517775177,21.81190964805471],[-77.54657546575466,21.843992616182476],[-77.58257582575825,21.87269842977048],[-77.59337593375933,21.88789562519942],[-77.60057600576005,21.891272779739197],[-77.61497614976149,21.884518470659657],[-77.60417604176041,21.901404243358485],[-77.58977589775897,21.9199785933272],[-77.57177571775718,21.93011005694649],[-77.55737557375573,21.928421479676615],[-77.52137521375214,21.901404243358485],[-77.51777517775177,21.89296135700907],[-77.51057510575106,21.86763269796083],[-77.5069750697507,21.862566966151178],[-77.40257402574025,21.78995814354623],[-77.3809738097381,21.781515257196816],[-77.33057330573305,21.766318061767876],[-77.31617316173161,21.756186598148574],[-77.30177301773017,21.74267797998951],[-77.26937269372694,21.717349320941267],[-77.2549725497255,21.71228358913163],[-77.19377193771938,21.671757734654435],[-77.17937179371793,21.66500342557491],[-77.16497164971649,21.659937693765258],[-77.15057150571505,21.659937693765258],[-77.13257132571326,21.66500342557491],[-77.14337143371434,21.64474049833632],[-77.13617136171361,21.632920457447142],[-77.12537125371253,21.624477571097728],[-77.12177121771218,21.616034684748314],[-77.12537125371253,21.595771757509723],[-77.1469714697147,21.572131675731356],[-77.15417154171541,21.555245903032528],[-77.16497164971649,21.56031163484218],[-77.17937179371793,21.577197407541007],[-77.18657186571865,21.58226313935066],[-77.25137251372513,21.609280375668774],[-77.26577265772657,21.614346107478426],[-77.28377283772838,21.616034684748314],[-77.28377283772838,21.614346107478426],[-77.28737287372873,21.610968952938663],[-77.29097290972909,21.6075917983989],[-77.29097290972909,21.60590322112901],[-77.29457294572946,21.60252606658925],[-77.29817298172982,21.604214643859137],[-77.30537305373053,21.6075917983989],[-77.31257312573125,21.610968952938663],[-77.32337323373234,21.621100416557965],[-77.33417334173342,21.62278899382784],[-77.35577355773557,21.621100416557965],[-77.36297362973629,21.610968952938663],[-77.35937359373594,21.60083748931936],[-77.34857348573486,21.595771757509723],[-77.33777337773377,21.592394602969947],[-77.33057330573305,21.58732887116031],[-77.32337323373234,21.58057456208077],[-77.31257312573125,21.575508830271133],[-77.30177301773017,21.572131675731356],[-77.2729727297273,21.575508830271133],[-77.2549725497255,21.56706594392172],[-77.25137251372513,21.55018017122289],[-77.25857258572586,21.534982975793937],[-77.2729727297273,21.526540089444524],[-77.27657276572765,21.51809720309511],[-77.2729727297273,21.501211430396282],[-77.26217262172621,21.48263708042758],[-77.25857258572586,21.47588277134804],[-77.24777247772478,21.474194194078166],[-77.22257222572226,21.47757134861793],[-77.20817208172082,21.47588277134804],[-77.21537215372153,21.458996998649226],[-77.20817208172082,21.4606855759191],[-77.1829718297183,21.472505616808277],[-77.17937179371793,21.474194194078166],[-77.17217172171722,21.479259925887817],[-77.16137161371613,21.48094850315769],[-77.15417154171541,21.494457121316756],[-77.13977139771397,21.548491593953003],[-77.11457114571145,21.592394602969947],[-77.10737107371074,21.60252606658925],[-77.08937089370893,21.60590322112901],[-77.07137071370714,21.595771757509723],[-76.96336963369633,21.472505616808277],[-76.94536945369454,21.458996998649226],[-76.94536945369454,21.457308421379338],[-76.9309693096931,21.447176957760036],[-76.8949689496895,21.431979762331096],[-76.83736837368373,21.42015972144192],[-76.82656826568265,21.411716835092506],[-76.83376833768337,21.39820821693344],[-76.81216812168121,21.39820821693344],[-76.81936819368194,21.37625671242496],[-76.82656826568265,21.366125248805673],[-76.83736837368373,21.36274809426591],[-76.87336873368733,21.361059516996022],[-76.88776887768877,21.35599378518637],[-76.89856898568985,21.345862321567083],[-76.90216902169021,21.332353703408018],[-76.88776887768877,21.307025044359776],[-76.83736837368373,21.332353703408018],[-76.83736837368373,21.307025044359776],[-76.83016830168302,21.3137793534393],[-76.82656826568265,21.323910817058604],[-76.82296822968229,21.33573085794778],[-76.81936819368194,21.349239476106845],[-76.82656826568265,21.349239476106845],[-76.81216812168121,21.367813826075547],[-76.80856808568085,21.37794528969485],[-76.8049680496805,21.389765330584027],[-76.74376743767438,21.369502403345436],[-76.74016740167401,21.371190980615324],[-76.72936729367294,21.374568135155087],[-76.72576725767257,21.3728795578852],[-76.70776707767077,21.36274809426591],[-76.68256682566825,21.35599378518637],[-76.67176671766717,21.35599378518637],[-76.65736657366573,21.349239476106845],[-76.6429664296643,21.33573085794778],[-76.63576635766357,21.32053366251884],[-76.6429664296643,21.31546793070919],[-76.66096660966609,21.312090776169427],[-76.7149671496715,21.288450694391074],[-76.71136711367113,21.301959312550125],[-76.72216722167221,21.312090776169427],[-76.73296732967329,21.312090776169427],[-76.72936729367294,21.301959312550125],[-76.73296732967329,21.285073539851297],[-76.72216722167221,21.27831923077177],[-76.70056700567005,21.276630653501883],[-76.68616686166861,21.269876344422357],[-76.67176671766717,21.259744880803055],[-76.65376653766538,21.25130199445364],[-76.63576635766357,21.24792483991388],[-76.61416614166141,21.246236262644004],[-76.61416614166141,21.25299057172353],[-76.63576635766357,21.259744880803055],[-76.6429664296643,21.264810612612706],[-76.64656646566465,21.27325349896212],[-76.65376653766538,21.288450694391074],[-76.65376653766538,21.29351642620071],[-76.63576635766357,21.301959312550125],[-76.61776617766178,21.301959312550125],[-76.59256592565926,21.2952050034706],[-76.57096570965709,21.281696385311534],[-76.55656556565565,21.266499189882595],[-76.5529655296553,21.266499189882595],[-76.5529655296553,21.288450694391074],[-76.54576545765457,21.288450694391074],[-76.54936549365493,21.24792483991388],[-76.56016560165601,21.234416221754827],[-76.61416614166141,21.23272764448494],[-76.61416614166141,21.225973335405413],[-76.59256592565926,21.225973335405413],[-76.60336603366034,21.220907603595762],[-76.60696606966069,21.219219026325874],[-76.59976599765997,21.20571040816681],[-76.5889658896589,21.20571040816681],[-76.57816578165782,21.21077613997646],[-76.56376563765637,21.21246471724635],[-76.55656556565565,21.20571040816681],[-76.54576545765457,21.187136058198107],[-76.53856538565385,21.185447480928218],[-76.53136531365313,21.187136058198107],[-76.52416524165241,21.192201790007758],[-76.52056520565205,21.197267521817395],[-76.5169651696517,21.202333253627046],[-76.51336513365133,21.20571040816681],[-76.50976509765097,21.20571040816681],[-76.50256502565026,21.204021830896934],[-76.49536495364953,21.20571040816681],[-76.46656466564666,21.220907603595762],[-76.45576455764558,21.225973335405413],[-76.47016470164701,21.23103906721505],[-76.50256502565026,21.234416221754827],[-76.5169651696517,21.239481953564464],[-76.52776527765278,21.25299057172353],[-76.53136531365313,21.26818776715247],[-76.52416524165241,21.281696385311534],[-76.50616506165062,21.288450694391074],[-76.38736387363873,21.285073539851297],[-76.36216362163621,21.276630653501883],[-76.34776347763477,21.266499189882595],[-76.31536315363154,21.254679148993418],[-76.31176311763117,21.25130199445364],[-76.29016290162902,21.234416221754827],[-76.27576275762758,21.224284758135525],[-76.17136171361713,21.187136058198107],[-76.1389613896139,21.166873130959516],[-76.13176131761317,21.14323304918115],[-76.13176131761317,21.13479016283175],[-76.13176131761317,21.114527235593144],[-76.12816128161282,21.102707194703967],[-76.11736117361173,21.09088715381479],[-76.11016110161101,21.09257573108468],[-76.09936099360993,21.102707194703967],[-76.08496084960849,21.11115008105338],[-76.07416074160741,21.11283865832327],[-76.05976059760597,21.109461503783507],[-76.0489604896049,21.104395771973856],[-76.04176041760417,21.095952885624442],[-76.03816038160382,21.087509999275028],[-76.03816038160382,21.074001381115963],[-76.03096030960309,21.074001381115963],[-76.02736027360274,21.079067112925614],[-76.02736027360274,21.084132844735265],[-76.02376023760237,21.089198576544902],[-76.01656016560165,21.074001381115963],[-76.00936009360093,21.0706242265762],[-76.00216002160022,21.077378535655725],[-76.00216002160022,21.095952885624442],[-75.99495994959949,21.094264308354553],[-75.9661596615966,21.094264308354553],[-75.95535955359553,21.095952885624442],[-75.94815948159481,21.099330040164205],[-75.93375933759337,21.11283865832327],[-75.92655926559266,21.116215812863032],[-75.91215912159122,21.114527235593144],[-75.90135901359014,21.11283865832327],[-75.89055890558905,21.10777292651362],[-75.88335883358833,21.09088715381479],[-75.87255872558725,21.089198576544902],[-75.86895868958689,21.09257573108468],[-75.87255872558725,21.102707194703967],[-75.82215822158221,21.136478740101623],[-75.81495814958149,21.136478740101623],[-75.80055800558006,21.129724431022098],[-75.7969579695797,21.126347276482335],[-75.79335793357933,21.119592967402795],[-75.78255782557825,21.11790439013292],[-75.76815768157681,21.122970121942558],[-75.73215732157321,21.122970121942558],[-75.70335703357033,21.119592967402795],[-75.68535685356854,21.102707194703967],[-75.67455674556746,21.06893564930631],[-75.6349563495635,21.07568995838585],[-75.61335613356133,21.062181340226786],[-75.57735577355773,21.01321259940019],[-75.5989559895599,20.972686744922996],[-75.60615606156061,20.96593243584347],[-75.61695616956169,20.957489549494056],[-75.62055620556205,20.95073524041453],[-75.62055620556205,20.94398093133499],[-75.62415624156242,20.93047231317594],[-75.62775627756277,20.9237180040964],[-75.6349563495635,20.911897963207224],[-75.64935649356494,20.900077922318047],[-75.66375663756637,20.889946458698745],[-75.68175681756817,20.889946458698745],[-75.68535685356854,20.900077922318047],[-75.68895688956889,20.915275117746987],[-75.69615696156961,20.92540658136629],[-75.71055710557106,20.916963695016875],[-75.71775717757177,20.922029426826526],[-75.7249572495725,20.9237180040964],[-75.72855728557285,20.922029426826526],[-75.73575735757358,20.916963695016875],[-75.72855728557285,20.916963695016875],[-75.72135721357213,20.915275117746987],[-75.71775717757177,20.91020938593735],[-75.7141571415714,20.90345507685781],[-75.74295742957429,20.901766499587936],[-75.74295742957429,20.889946458698745],[-75.73215732157321,20.873060685999917],[-75.72135721357213,20.854486336031215],[-75.7141571415714,20.854486336031215],[-75.70335703357033,20.871372108730043],[-75.67815678156781,20.87812641780957],[-75.64935649356494,20.879814995079457],[-75.62775627756277,20.876437840539694],[-75.58455584555846,20.856174913301103],[-75.57735577355773,20.852797758761326],[-75.57735577355773,20.837600563332387],[-75.57375573755738,20.827469099713085],[-75.56655566555665,20.82071479063356],[-75.5521555215552,20.82071479063356],[-75.55935559355594,20.797074708855206],[-75.57375573755738,20.797074708855206],[-75.5881558815588,20.807206172474494],[-75.60255602556025,20.813960481554034],[-75.60975609756098,20.817337636093797],[-75.61335613356133,20.822403367903448],[-75.61695616956169,20.829157676982973],[-75.62055620556205,20.8359119860625],[-75.62775627756277,20.84097771787215],[-75.63135631356313,20.84266629514204],[-75.68535685356854,20.8359119860625],[-75.70335703357033,20.829157676982973],[-75.77175771757717,20.8359119860625],[-75.76455764557645,20.824091945173322],[-75.76455764557645,20.812271904284145],[-75.77535775357754,20.786943245235904],[-75.77535775357754,20.781877513426252],[-75.77535775357754,20.7683688952672],[-75.77895778957789,20.75654885437801],[-75.78255782557825,20.746417390758722],[-75.77535775357754,20.73797450440931],[-75.76455764557645,20.71602299990083],[-75.7249572495725,20.69576007266224],[-75.71055710557106,20.690694340852588],[-75.70335703357033,20.70082580447189],[-75.69255692556925,20.72277730898037],[-75.64215642156421,20.759926008917787],[-75.63135631356313,20.780188936156378],[-75.61695616956169,20.7683688952672],[-75.60615606156061,20.753171699838248],[-75.60615606156061,20.73628592713942],[-75.61335613356133,20.717711577170718],[-75.5881558815588,20.72108873171048],[-75.57735577355773,20.717711577170718],[-75.58095580955809,20.707580113551415],[-75.58455584555846,20.697448649932127],[-75.57375573755738,20.690694340852588],[-75.5521555215552,20.683940031773062],[-75.55575555755557,20.70589153628154],[-75.49815498154982,20.69407149539235],[-75.48375483754837,20.710957268091178],[-75.47655476554765,20.710957268091178],[-75.4729547295473,20.70589153628154],[-75.46575465754657,20.70082580447189],[-75.45855458554585,20.69576007266224],[-75.44775447754478,20.690694340852588],[-75.44055440554405,20.710957268091178],[-75.45855458554585,20.717711577170718],[-75.46575465754657,20.719400154440592],[-75.47655476554765,20.717711577170718],[-75.4621546215462,20.734597349869546],[-75.44055440554405,20.74135165894907],[-75.41535415354153,20.74135165894907],[-75.39375393753937,20.739663081679197],[-75.37575375753757,20.732908772599657],[-75.35775357753577,20.719400154440592],[-75.35055350553505,20.709268690821304],[-75.37215372153722,20.704202959011653],[-75.36495364953649,20.690694340852588],[-75.35775357753577,20.677185722693537],[-75.35415354153541,20.677185722693537],[-75.35055350553505,20.682251454503174],[-75.3469534695347,20.690694340852588],[-75.33615336153362,20.670431413613997],[-75.31455314553145,20.665365681804346],[-75.2569525695257,20.670431413613997],[-75.27495274952749,20.682251454503174],[-75.3109531095311,20.699137227202],[-75.33255332553325,20.704202959011653],[-75.31815318153181,20.717711577170718],[-75.29295292952929,20.72277730898037],[-75.26775267752677,20.72277730898037],[-75.24975249752497,20.717711577170718],[-75.2569525695257,20.726154463520132],[-75.24255242552425,20.724465886250243],[-75.19575195751958,20.71602299990083],[-75.18135181351813,20.709268690821304],[-75.17775177751777,20.702514381741764],[-75.19575195751958,20.697448649932127],[-75.19575195751958,20.690694340852588],[-75.16695166951669,20.683940031773062],[-75.16335163351633,20.68562860904295],[-75.16335163351633,20.687317186312825],[-75.16335163351633,20.689005763582713],[-75.15975159751598,20.690694340852588],[-75.14895148951489,20.682251454503174],[-75.1309513095131,20.687317186312825],[-75.11655116551165,20.687317186312825],[-75.10575105751057,20.66367710453447],[-75.10575105751057,20.668742836344123],[-75.09855098550985,20.677185722693537],[-75.09855098550985,20.683940031773062],[-75.08775087750877,20.677185722693537],[-75.08055080550805,20.67380856815376],[-75.07335073350733,20.67380856815376],[-75.06615066150661,20.677185722693537],[-75.08055080550805,20.690694340852588],[-74.99774997749977,20.70082580447189],[-74.97974979749797,20.69407149539235],[-74.9689496894969,20.689005763582713],[-74.95814958149582,20.687317186312825],[-74.95094950949509,20.683940031773062],[-74.94734947349473,20.67380856815376],[-74.94014940149401,20.668742836344123],[-74.92574925749257,20.668742836344123],[-74.90054900549005,20.670431413613997],[-74.88254882548826,20.66029994999471],[-74.86814868148682,20.645102754565755],[-74.85014850148501,20.634971290946467],[-74.77094770947708,20.626528404597053],[-74.75294752947529,20.619774095517514],[-74.73494734947349,20.609642631898225],[-74.74574745747456,20.604576900088574],[-74.74934749347493,20.602888322818686],[-74.73494734947349,20.579248241040332],[-74.73494734947349,20.567428200151156],[-74.73134731347314,20.564051045611393],[-74.72774727747277,20.564051045611393],[-74.72054720547204,20.56067389107163],[-74.7169471694717,20.55560815926198],[-74.70974709747097,20.552231004722216],[-74.67374673746737,20.540410963833025],[-74.670146701467,20.526902345673975],[-74.65214652146521,20.51339372751491],[-74.60534605346054,20.48637649119678],[-74.59814598145981,20.47624502757749],[-74.58734587345873,20.4559821003389],[-74.5549455494555,20.41376766859183],[-74.54774547745477,20.410390514052068],[-74.5441454414544,20.40363620497253],[-74.49374493744936,20.354667464145933],[-74.48654486544865,20.35129030960617],[-74.47214472144721,20.349601732336282],[-74.45054450544505,20.342847423256757],[-74.42174421744217,20.327650227827817],[-74.40014400144001,20.307387300589212],[-74.39294392943928,20.287124373350622],[-74.38574385743857,20.287124373350622],[-74.37134371343713,20.300632991509687],[-74.35334353343534,20.300632991509687],[-74.32814328143282,20.295567259700036],[-74.31014310143101,20.29387868243016],[-74.29214292142922,20.300632991509687],[-74.27774277742778,20.31076445512899],[-74.2561425614256,20.319207341478403],[-74.23454234542345,20.320895918748278],[-74.22374223742237,20.317518764208515],[-74.2129421294213,20.31076445512899],[-74.19494194941949,20.29387868243016],[-74.15894158941589,20.27361575519157]]],[[[-180,71.5371330915604],[-179.8631986319863,71.53882166883028],[-179.91359913599135,71.55570744152911],[-179.89919899198992,71.55908459606889],[-179.79839798397984,71.56921605968819],[-179.7587975879759,71.58272467784724],[-179.7371973719737,71.58610183238702],[-179.71559715597155,71.58272467784724],[-179.69759697596976,71.57765894603759],[-179.67959679596797,71.57428179149784],[-179.6111961119611,71.58441325511711],[-179.37359373593736,71.56921605968819],[-179.3267932679327,71.55570744152911],[-179.30519305193053,71.55739601879901],[-179.2871928719287,71.56246175060866],[-179.2439924399244,71.56921605968819],[-179.20439204392045,71.58272467784724],[-179.07479074790749,71.59961045054607],[-178.73638736387363,71.57090463695806],[-178.39438394383944,71.54051024610018],[-178.32238322383225,71.5185587415917],[-178.26118261182611,71.51011585524228],[-178.30438304383043,71.51349300978205],[-178.32238322383225,71.51518158705193],[-178.34038340383404,71.51687016432183],[-178.32238322383225,71.50505012343265],[-178.21438214382144,71.47803288711452],[-178.19278192781928,71.47634430984462],[-178.1459814598146,71.48478719619405],[-178.12438124381245,71.48141004165427],[-178.00558005580055,71.44932707352652],[-178.01638016380164,71.44088418717709],[-178.0559805598056,71.42906414628791],[-178.0487804878049,71.42568699174817],[-178.03438034380343,71.41724410539874],[-178.0271802718027,71.41555552812886],[-178.03078030780307,71.41386695085899],[-178.04158041580416,71.40711264177943],[-177.96957969579697,71.39698117816016],[-177.77877778777787,71.3328152419046],[-177.71757717577177,71.30579800558647],[-177.70677706777067,71.3041094283166],[-177.68157681576815,71.3041094283166],[-177.6707767077671,71.30242085104672],[-177.65637656376563,71.29397796469729],[-177.5879758797588,71.28553507834789],[-177.54837548375482,71.2956665419672],[-177.53037530375303,71.2956665419672],[-177.51237512375124,71.29397796469729],[-177.49797497974978,71.28553507834789],[-177.5051750517505,71.26864930564906],[-177.48717487174872,71.25851784202976],[-177.45837458374584,71.25007495568036],[-177.4439744397444,71.23656633752128],[-177.44757447574474,71.22305771936223],[-177.45837458374584,71.20954910120318],[-177.50877508775088,71.17408897853562],[-177.58077580775807,71.14707174221752],[-177.63837638376384,71.11667735135961],[-177.68517685176852,71.11161161954996],[-177.75357753577535,71.09303726958126],[-177.81837818378185,71.08459438323186],[-177.87597875978759,71.05251141510408],[-177.929979299793,71.0406913742149],[-178.2071820718207,71.03900279694503],[-178.31158311583116,71.01367413789677],[-178.59238592385924,70.99678836519794],[-178.8767887678877,70.98159116976899],[-178.9811898118981,70.95119677891111],[-179.3411934119341,70.90729376989415],[-179.33759337593375,70.91067092443393],[-179.32319323193232,70.9224909653231],[-179.36279362793627,70.93093385167253],[-179.45639456394565,70.91573665624358],[-179.49959499594996,70.91911381078333],[-179.6651966519665,70.96470539707019],[-179.85239852398524,70.97990259249912],[-179.88839888398883,70.9934112106582],[-179.90639906399065,70.99678836519794],[-180,70.99172263338829],[179.87399873998743,70.95963966526054],[179.8667986679867,70.94275389256171],[179.80559805598057,70.9123595017038],[179.66519665196654,70.8752108017664],[179.4527945279453,70.8735222244965],[179.30519305193053,70.87858795630615],[179.2187921879219,70.88027653357605],[179.13239132391323,70.87858795630615],[178.83358833588335,70.80935628824096],[178.7939879398794,70.80429055643131],[178.79038790387904,70.81273344278074],[178.78678786787867,70.83468494728922],[178.7831878318783,70.84312783363862],[178.74718747187472,70.88196511084593],[178.739987399874,70.8937851517351],[178.7147871478715,70.92924527440263],[178.70038700387005,70.94275389256171],[178.69318693186932,70.95626251072076],[178.68238682386823,70.96808255160994],[178.66798667986683,70.97821401522924],[178.65718657186574,70.98665690157864],[178.62118621186215,71.03731421967512],[178.62118621186215,71.0508228378342],[178.62478624786252,71.06095430145348],[178.63558635586355,71.0693971878029],[178.66798667986683,71.09979157866078],[178.69678696786968,71.11498877408974],[178.8227882278823,71.16902324672597],[178.8479884798848,71.18422044215492],[178.869588695887,71.20954910120318],[178.86238862388626,71.2146148330128],[178.8587885878859,71.2146148330128],[178.85518855188553,71.21292625574293],[178.90558905589057,71.23656633752128],[179.18279182791827,71.3041094283166],[179.39159391593915,71.38347256000108],[179.4419944199442,71.39191544635051],[179.49959499594996,71.43244130082769],[179.56439564395646,71.45101565079639],[179.70119701197012,71.45776995987592],[179.76599765997662,71.4695900007651],[179.7587975879759,71.4797214643844],[179.75159751597516,71.48478719619405],[179.77319773197735,71.4898529280037],[179.7911979119791,71.49154150527357],[179.83439834398348,71.4898529280037],[179.85239852398524,71.49323008254345],[179.8667986679867,71.4982958143531],[179.8667986679867,71.50673870070253],[179.84879848798488,71.51687016432183],[-180,71.5371330915604]]],[[[113.5577355773558,22.163133720190302],[113.56853568535689,22.161445142920428],[113.57573575735756,22.161445142920428],[113.57573575735756,22.156379411110777],[113.5721357213572,22.153002256571014],[113.56853568535689,22.151313679301126],[113.56493564935653,22.151313679301126],[113.56133561335616,22.141182215681823],[113.56853568535689,22.13949363841195],[113.5721357213572,22.13780506114206],[113.57933579335793,22.13949363841195],[113.57933579335793,22.13780506114206],[113.57573575735756,22.134427906602298],[113.57933579335793,22.132739329332423],[113.58653586535866,22.132739329332423],[113.58653586535866,22.129362174792647],[113.58653586535866,22.127673597522772],[113.58653586535866,22.12429644298301],[113.58293582935829,22.12260786571312],[113.57573575735756,22.125985020252884],[113.57933579335793,22.120919288443233],[113.57573575735756,22.11923071117336],[113.5721357213572,22.120919288443233],[113.56853568535689,22.12260786571312],[113.56493564935653,22.11754213390347],[113.56493564935653,22.11247640209382],[113.56493564935653,22.10741067028418],[113.5577355773558,22.110787824823944],[113.55053550535507,22.10741067028418],[113.55053550535507,22.105722093014293],[113.54693546935471,22.105722093014293],[113.54333543335434,22.10741067028418],[113.53973539735398,22.11247640209382],[113.54693546935471,22.114164979363707],[113.54333543335434,22.141182215681823],[113.53253532535325,22.149625102031237],[113.53253532535325,22.153002256571014],[113.53613536135362,22.161445142920428],[113.53973539735398,22.163133720190302],[113.54333543335434,22.163133720190302],[113.55413554135544,22.166510874730065],[113.5577355773558,22.163133720190302]]],[[[113.52893528935289,22.20197099739761],[113.53613536135362,22.20703672920726],[113.53253532535325,22.210413883747023],[113.53253532535325,22.208725306477135],[113.52893528935289,22.20703672920726],[113.52533525335252,22.212102461016897],[113.52893528935289,22.213791038286786],[113.53613536135362,22.213791038286786],[113.53613536135362,22.21716819282655],[113.53973539735398,22.22054534736631],[113.54333543335434,22.21716819282655],[113.54333543335434,22.215479615556674],[113.55053550535507,22.213791038286786],[113.55413554135544,22.212102461016897],[113.55413554135544,22.20703672920726],[113.5577355773558,22.203659574667483],[113.55053550535507,22.203659574667483],[113.54693546935471,22.20197099739761],[113.55053550535507,22.20028242012772],[113.55053550535507,22.198593842857846],[113.5577355773558,22.20197099739761],[113.55413554135544,22.196905265587958],[113.55413554135544,22.19521668831807],[113.55053550535507,22.196905265587958],[113.55053550535507,22.19521668831807],[113.55053550535507,22.193528111048195],[113.55053550535507,22.191839533778307],[113.55053550535507,22.190150956508433],[113.54693546935471,22.188462379238544],[113.54333543335434,22.183396647428893],[113.53973539735398,22.183396647428893],[113.53613536135362,22.183396647428893],[113.53253532535325,22.178330915619256],[113.52893528935289,22.178330915619256],[113.52533525335252,22.173265183809605],[113.51813518135185,22.183396647428893],[113.52173521735216,22.18508522469878],[113.52173521735216,22.190150956508433],[113.52533525335252,22.193528111048195],[113.52893528935289,22.20197099739761]]],[[[172.74952749527495,-43.27936695138356],[172.75672756727568,-43.29287556954262],[172.74952749527495,-43.31651565132098],[172.74592745927458,-43.34184431036922],[172.74232742327422,-43.39419020573558],[172.73512735127355,-43.400944514815116],[172.72792727927282,-43.414453132974174],[172.73152731527318,-43.43640463748265],[172.74952749527495,-43.49888199646831],[172.77832778327786,-43.5579822009142],[172.77832778327786,-43.57317939634315],[172.7639276392764,-43.563047932723855],[172.7531275312753,-43.56135935545397],[172.74952749527495,-43.56642508726362],[172.75672756727568,-43.581622282692564],[172.77112771127713,-43.59006516904198],[172.83232832328326,-43.601885209931154],[172.80352803528035,-43.61032809628057],[172.7387273872739,-43.61370525082034],[172.709927099271,-43.622148137169745],[172.68112681126814,-43.63903390986857],[172.69192691926918,-43.64747679621799],[172.7207272072721,-43.65085395075776],[172.74232742327422,-43.6559196825674],[172.7639276392764,-43.63565675532881],[172.79992799928,-43.62890244624928],[172.83592835928363,-43.62890244624928],[172.8539285392854,-43.63227960078905],[172.85752857528576,-43.645788218948105],[172.86472864728648,-43.66098541437705],[172.87552875528758,-43.669428300726466],[172.87912879128794,-43.666051146186696],[172.88632886328867,-43.63903390986857],[172.89352893528934,-43.61370525082034],[172.9187291872919,-43.627213868979396],[172.92592925929262,-43.63565675532881],[172.92952929529298,-43.65254252802764],[172.92592925929262,-43.67955976434576],[172.92952929529298,-43.686314073425294],[172.94392943929438,-43.682936918885524],[172.9511295112951,-43.67449403253611],[172.95832958329584,-43.66267399164693],[172.96552965529656,-43.65254252802764],[172.97992979929802,-43.64747679621799],[172.99432994329942,-43.64916537348787],[173.00873008730088,-43.65423110529752],[173.01953019530197,-43.66267399164693],[173.02313023130233,-43.67618260980599],[173.0519305193052,-43.65254252802764],[173.06633066330664,-43.64747679621799],[173.069930699307,-43.666051146186696],[173.0807308073081,-43.67618260980599],[173.0951309513095,-43.684625496155405],[173.1059310593106,-43.69644553704459],[173.1059310593106,-43.703199846124114],[173.1059310593106,-43.71164273247353],[173.10233102331023,-43.71839704155306],[173.09873098730986,-43.72346277336271],[173.10233102331023,-43.730217082442245],[173.10953109531096,-43.74034854606154],[173.11313113131132,-43.745414277871184],[173.11673116731168,-43.77243151418931],[173.11313113131132,-43.80113732777731],[173.1059310593106,-43.82984314136532],[173.0915309153092,-43.85348322314368],[173.0807308073081,-43.83997460498462],[173.05553055530555,-43.86361468676297],[173.0375303753038,-43.86023753222321],[173.03033030330306,-43.88218903673168],[173.03033030330306,-43.888943345811214],[173.02313023130233,-43.8805004594618],[173.01233012330124,-43.87881188219192],[173.0051300513005,-43.88218903673168],[172.99792997929978,-43.888943345811214],[172.9907299072991,-43.875434727652156],[172.97992979929802,-43.85348322314368],[172.97632976329766,-43.83997460498462],[172.97632976329766,-43.82477740955567],[172.97992979929802,-43.81633452320626],[172.97632976329766,-43.809580214126726],[172.96552965529656,-43.79607159596767],[172.9619296192962,-43.7825629778086],[172.9619296192962,-43.769054359649544],[172.9619296192962,-43.75554574149048],[172.94752947529474,-43.750480009680835],[172.93312933129334,-43.75554574149048],[172.92592925929262,-43.765677205109775],[172.92952929529298,-43.77749724599896],[172.94392943929438,-43.78594013234837],[172.92952929529298,-43.812957368666495],[172.92592925929262,-43.83997460498462],[172.9367293672937,-43.86699184130274],[172.96912969129693,-43.90245196397028],[172.96552965529656,-43.90582911851004],[172.94392943929438,-43.90245196397028],[172.87552875528758,-43.90245196397028],[172.86472864728648,-43.895697654890746],[172.839528395284,-43.875434727652156],[172.8179281792818,-43.88218903673168],[172.80352803528035,-43.875434727652156],[172.7855278552786,-43.85348322314368],[172.74592745927458,-43.82477740955567],[172.74592745927458,-43.811268791396614],[172.7639276392764,-43.7926944414279],[172.74592745927458,-43.794383018697786],[172.71712717127173,-43.8028259050472],[172.63792637926383,-43.811268791396614],[172.60912609126092,-43.82308883228579],[172.55152551525515,-43.82646598682555],[172.46152461524616,-43.850106068603914],[172.42192421924221,-43.85517180041356],[172.4147241472415,-43.850106068603914],[172.41832418324185,-43.83997460498462],[172.42912429124294,-43.833220295905086],[172.43992439924398,-43.828154564095435],[172.4687246872469,-43.82477740955567],[172.61632616326165,-43.787628709618254],[172.63432634326347,-43.78594013234837],[172.64872648726487,-43.7825629778086],[172.64152641526414,-43.77580866872908],[172.61272612726128,-43.76230005057001],[172.59832598325983,-43.75892289603025],[172.56952569525697,-43.76230005057001],[172.55152551525515,-43.75723431876037],[172.54432544325442,-43.75216858695072],[172.5335253352534,-43.73865996879165],[172.5227252272523,-43.731905659712126],[172.49752497524975,-43.72177419609283],[172.47232472324725,-43.72515135063259],[172.4471244712447,-43.73359423698201],[172.41832418324185,-43.73697139152177],[172.40032400324003,-43.748791432410954],[172.38952389523894,-43.77243151418931],[172.38592385923863,-43.8028259050472],[172.38592385923863,-43.82646598682555],[172.38952389523894,-43.8416631822545],[172.38952389523894,-43.846728914064144],[172.38952389523894,-43.851794645873795],[172.37512375123754,-43.86361468676297],[172.36432364323645,-43.86868041857262],[172.2815228152282,-43.87881188219192],[172.2707227072271,-43.87712330492204],[172.2491224912249,-43.8805004594618],[172.23112231122315,-43.895697654890746],[172.18432184321847,-43.90751769577992],[172.16632166321665,-43.92102631393899],[172.0619206192062,-43.956486436606525],[171.86751867518677,-44.057801072799485],[171.83871838718386,-44.062866804609136],[171.8207182071821,-44.05948965006937],[171.80631806318064,-44.06117822733925],[171.79551795517955,-44.0662439591489],[171.71991719917202,-44.1050812363562],[171.68391683916843,-44.11014696816585],[171.6659166591666,-44.115212699975494],[171.65511655116552,-44.12365558632491],[171.64431644316443,-44.13209847267432],[171.6335163351634,-44.140541359023736],[171.60471604716048,-44.14560709083339],[171.579515795158,-44.16080428626233],[171.5687156871569,-44.162492863532215],[171.55071550715508,-44.16755859534186],[171.5327153271533,-44.182755790770806],[171.52191521915222,-44.19119867712022],[171.5147151471515,-44.19964156346963],[171.48951489514894,-44.20639587254916],[171.4787147871479,-44.21315018162869],[171.41751417514178,-44.260430345185405],[171.39231392313923,-44.27056180880471],[171.3707137071371,-44.265496076995056],[171.35631356313564,-44.27225038607459],[171.34551345513455,-44.27900469515412],[171.33831338313382,-44.28913615877342],[171.33471334713346,-44.29926762239271],[171.2807128071281,-44.37187644499767],[171.27711277112775,-44.383696485886844],[171.27711277112775,-44.43941953579297],[171.26991269912702,-44.45799388576168],[171.25911259112593,-44.47319108119063],[171.2267122671227,-44.49851974023887],[171.2267122671227,-44.50696262658828],[171.2267122671227,-44.51878266747746],[171.22311223112234,-44.528914131096755],[171.21231212312125,-44.532291285636525],[171.20151201512016,-44.533979862906406],[171.1727117271173,-44.547488481065464],[171.19431194311943,-44.56606283103417],[171.20151201512016,-44.60152295370171],[171.20151201512016,-44.675820353576555],[171.21231212312125,-44.72478909440315],[171.21591215912161,-44.74167486710198],[171.2087120871209,-44.76024921707069],[171.1979119791198,-44.7686921034201],[171.18351183511834,-44.77375783522975],[171.1727117271173,-44.78557787611893],[171.20151201512016,-44.78895503065869],[171.21231212312125,-44.81428368970693],[171.21231212312125,-44.84636665783471],[171.20151201512016,-44.9054668622806],[171.19431194311943,-44.92572978951919],[171.17991179911803,-44.940926984948135],[171.1727117271173,-44.95274702583731],[171.1619116191162,-44.96794422126626],[171.15831158311585,-44.983141416695204],[171.089910899109,-45.07432458926887],[170.98190981909818,-45.15537629822324],[170.92790927909283,-45.23811658444749],[170.90270902709028,-45.30903682978256],[170.88830888308883,-45.33098833429104],[170.8775087750878,-45.35631699333928],[170.8919089190892,-45.36813703422846],[170.909909099091,-45.37995707511764],[170.90630906309065,-45.403597156896],[170.87030870308706,-45.433991547753884],[170.85950859508597,-45.44750016591295],[170.85950859508597,-45.457631629532244],[170.86310863108633,-45.46945167042142],[170.8667086670867,-45.4812717113106],[170.85230852308524,-45.49984606127931],[170.8235082350824,-45.51335467943837],[170.8019080190802,-45.52855187486732],[170.80910809108093,-45.55388053391555],[170.79830798307984,-45.56570057480474],[170.78750787507875,-45.57076630661438],[170.77310773107735,-45.57076630661438],[170.75510755107553,-45.560634842995086],[170.7587075870759,-45.57245488388426],[170.76230762307625,-45.582586347503565],[170.76950769507698,-45.601160697472274],[170.75150751507516,-45.61298073836145],[170.74070740707407,-45.61635789290121],[170.70470704707049,-45.61635789290121],[170.6831068310683,-45.621423624710864],[170.6831068310683,-45.63155508833016],[170.69750697506976,-45.639997974679574],[170.7227072270723,-45.643375129219336],[170.69750697506976,-45.67883525188687],[170.69030690306903,-45.683900983696525],[170.67950679506794,-45.68727813823629],[170.66510665106654,-45.69234387004594],[170.64710647106472,-45.705852488205],[170.63630636306362,-45.70754106547488],[170.63270632706326,-45.705852488205],[170.6255062550626,-45.705852488205],[170.6255062550626,-45.71429537455441],[170.6255062550626,-45.724426838173706],[170.6255062550626,-45.72949256998336],[170.6291062910629,-45.73286972452312],[170.639906399064,-45.73286972452312],[170.65430654306545,-45.73624687906289],[170.6687066870669,-45.743001188142415],[170.67950679506794,-45.743001188142415],[170.6939069390694,-45.73286972452312],[170.7119071190712,-45.743001188142415],[170.7371073710737,-45.75313265176172],[170.7587075870759,-45.76326411538101],[170.7587075870759,-45.77677273354007],[170.74070740707407,-45.786904197159366],[170.6939069390694,-45.7936585062389],[170.67230672306727,-45.80041281531843],[170.65430654306545,-45.8223643198269],[170.64710647106472,-45.829118628906436],[170.63630636306362,-45.83080720617632],[170.6255062550626,-45.8324957834462],[170.6147061470615,-45.83587293798597],[170.6039060390604,-45.86120159703421],[170.56790567905682,-45.87977594700292],[170.55710557105573,-45.89666171970174],[170.57510575105755,-45.889907410622214],[170.61110611106113,-45.88315310154268],[170.64350643506435,-45.86457875157397],[170.68670686706866,-45.85107013341491],[170.70110701107012,-45.842627247065494],[170.71550715507158,-45.81898716528714],[170.72990729907298,-45.807167124397964],[170.74070740707407,-45.80041281531843],[170.75510755107553,-45.79872423804855],[170.76590765907662,-45.7936585062389],[170.7767077670777,-45.78014988807984],[170.78750787507875,-45.7936585062389],[170.7911079110791,-45.808855701667845],[170.78750787507875,-45.86289017430409],[170.78030780307802,-45.87639879246315],[170.76230762307625,-45.8814645242728],[170.74070740707407,-45.88315310154268],[170.7227072270723,-45.8814645242728],[170.71910719107194,-45.88315310154268],[170.70830708307085,-45.88821883335233],[170.70110701107012,-45.89497314243186],[170.70110701107012,-45.90172745151139],[170.70110701107012,-45.908481760590924],[170.49230492304923,-45.92367895601986],[170.40950409504097,-45.94394188325846],[170.33390333903338,-45.98109058319588],[170.27630276302762,-46.04019078764177],[170.25830258302585,-46.06383086942013],[170.2547025470255,-46.07565091030931],[170.2547025470255,-46.10435672389732],[170.2439024390244,-46.12293107386603],[170.2439024390244,-46.13306253748532],[170.2331023310233,-46.15332546472391],[170.2187021870219,-46.173588391962504],[170.19350193501936,-46.18878558739145],[170.17190171901723,-46.197228473740864],[170.1215012150122,-46.21242566916981],[170.09630096300964,-46.22424571005899],[170.07470074700745,-46.2428200600277],[170.0567005670057,-46.261394409996406],[170.03870038700387,-46.27659160542535],[169.89829898298984,-46.34413469622066],[169.86589865898662,-46.37790624161831],[169.85149851498517,-46.43025213698468],[169.85509855098553,-46.4572693733028],[169.8478984789848,-46.467400836922096],[169.81909819098195,-46.47415514600163],[169.79749797497976,-46.48935234143057],[169.79029790297903,-46.49272949597034],[169.7722977229772,-46.48935234143057],[169.739897398974,-46.480909455081154],[169.72189721897217,-46.47922087781127],[169.7038970389704,-46.480909455081154],[169.6750967509675,-46.48935234143057],[169.6606966069661,-46.49272949597034],[169.6750967509675,-46.4961066505101],[169.75429754297545,-46.49948380504987],[169.73629736297363,-46.5349439277174],[169.7038970389704,-46.548452545876465],[169.66789667896683,-46.55858400949576],[169.63549635496355,-46.57884693673435],[169.6210962109621,-46.57715835946447],[169.5958959589596,-46.57040405038494],[169.56709567095675,-46.56533831857529],[169.54549545495456,-46.572092627654825],[169.53469534695347,-46.58053551400424],[169.48069480694807,-46.60248701851271],[169.4878948789488,-46.605864173052474],[169.49509495094952,-46.61768421394166],[169.50229502295025,-46.6227499457513],[169.47349473494734,-46.629504254830834],[169.44109441094412,-46.6227499457513],[169.4086940869409,-46.62106136848142],[169.39069390693908,-46.6430128729899],[169.36909369093695,-46.6328814093706],[169.36549365493659,-46.629504254830834],[169.32949329493294,-46.62612710029107],[169.31149311493118,-46.62612710029107],[169.3006930069301,-46.6328814093706],[169.2790927909279,-46.648078604799544],[169.26829268292687,-46.654832913879076],[169.2538925389254,-46.65652149114896],[169.22149221492214,-46.65989864568872],[169.20709207092074,-46.65989864568872],[169.19269192691928,-46.649767182069425],[169.19629196291964,-46.629504254830834],[169.19629196291964,-46.61768421394166],[169.19269192691928,-46.61768421394166],[169.1818918189182,-46.61599563667178],[169.1710917109171,-46.6227499457513],[169.1710917109171,-46.64470145025978],[169.16029160291606,-46.651455759339306],[169.1566915669157,-46.65652149114896],[169.1566915669157,-46.66158722295861],[169.14949149491497,-46.66496437749837],[169.11709117091175,-46.66496437749837],[169.09909099090993,-46.65989864568872],[169.0918909189092,-46.651455759339306],[169.08469084690847,-46.64132429572001],[169.07749077490774,-46.63625856391037],[169.06309063090634,-46.63794714118025],[169.06309063090634,-46.64639002752966],[169.0666906669067,-46.65821006841884],[169.06309063090634,-46.671718686577904],[169.03429034290343,-46.6818501501972],[169.0018900189002,-46.67509584111767],[168.96948969489694,-46.66327580022849],[168.94068940689408,-46.65652149114896],[168.90828908289086,-46.65821006841884],[168.89028890288904,-46.65652149114896],[168.87588875888758,-46.64470145025978],[168.8506885068851,-46.58222409127412],[168.8506885068851,-46.572092627654825],[168.84348843488436,-46.56027258676564],[168.83268832688327,-46.56027258676564],[168.80028800288005,-46.567026895845174],[168.69948699486997,-46.58222409127412],[168.6634866348664,-46.58222409127412],[168.67428674286742,-46.57040405038494],[168.68508685086852,-46.567026895845174],[168.69948699486997,-46.56533831857529],[168.71388713887143,-46.56196116403553],[168.69228692286924,-46.55182970041623],[168.6670866708667,-46.548452545876465],[168.61668616686165,-46.546763968606584],[168.62748627486275,-46.56196116403553],[168.63828638286384,-46.57040405038494],[168.64548645486457,-46.57715835946447],[168.6310863108631,-46.58897840035365],[168.63468634686348,-46.590666977623535],[168.6418864188642,-46.59910986397295],[168.64548645486457,-46.60248701851271],[168.59148591485916,-46.61430705940189],[168.41868418684186,-46.60248701851271],[168.43308433084331,-46.583912668544],[168.43668436684368,-46.58053551400424],[168.44748447484477,-46.57546978219459],[168.46188461884623,-46.572092627654825],[168.49428494284945,-46.572092627654825],[168.5086850868509,-46.57546978219459],[168.51948519485194,-46.587289823083765],[168.54828548285485,-46.590666977623535],[168.56628566285661,-46.58560124581388],[168.54108541085412,-46.567026895845174],[168.51228512285127,-46.56027258676564],[168.4258842588426,-46.56196116403553],[168.38628386283864,-46.543386814066814],[168.36468364683645,-46.54000965952705],[168.35748357483578,-46.55689543222588],[168.36468364683645,-46.57884693673435],[168.39348393483937,-46.605864173052474],[168.40428404284046,-46.6227499457513],[168.3790837908379,-46.61937279121154],[168.34308343083433,-46.58897840035365],[168.31788317883178,-46.58222409127412],[168.3142831428314,-46.57715835946447],[168.3142831428314,-46.567026895845174],[168.30708307083074,-46.55858400949576],[168.2818828188282,-46.55182970041623],[168.27468274682747,-46.546763968606584],[168.2710827108271,-46.53832108225717],[168.26748267482674,-46.52650104136799],[168.29988299883001,-46.51974673228846],[168.3106831068311,-46.51974673228846],[168.32148321483214,-46.52312388682822],[168.32148321483214,-46.524812464098105],[168.32148321483214,-46.529878195907756],[168.3250832508325,-46.53663250498729],[168.33228332283323,-46.529878195907756],[168.38628386283864,-46.49948380504987],[168.39348393483937,-46.47246656873175],[168.38628386283864,-46.44038360060397],[168.36828368283682,-46.41674351882561],[168.34308343083433,-46.41674351882561],[168.35028350283505,-46.442072177873854],[168.34308343083433,-46.465712259652214],[168.32148321483214,-46.480909455081154],[168.30348303483038,-46.47922087781127],[168.28908289082892,-46.46402368238233],[168.2710827108271,-46.423497827905145],[168.2170821708217,-46.35426615983995],[168.19908199081993,-46.342446118950775],[168.17028170281702,-46.33738038714113],[168.0730807308073,-46.34920042803031],[168.0586805868059,-46.35426615983995],[168.0586805868059,-46.366086200729136],[168.0622806228062,-46.37790624161831],[168.0586805868059,-46.38297197342796],[168.04428044280445,-46.379594818888194],[168.02628026280263,-46.37452908707855],[168.00828008280087,-46.3694633552689],[167.99747997479977,-46.37284050980866],[167.96867968679686,-46.3694633552689],[167.94707947079473,-46.3694633552689],[167.939879398794,-46.379594818888194],[167.93267932679328,-46.38972628250749],[167.92187921879218,-46.39310343704726],[167.9110791107911,-46.39141485977738],[167.90027900279006,-46.38972628250749],[167.8858788587886,-46.384660550697845],[167.87867878678787,-46.38297197342796],[167.87147871478714,-46.384660550697845],[167.85707857078575,-46.39479201431714],[167.84987849878502,-46.39648059158702],[167.83907839078392,-46.39310343704726],[167.82827828278283,-46.386349127967726],[167.8210782107821,-46.37621766434843],[167.8066780667807,-46.37284050980866],[167.79947799477998,-46.364397623459254],[167.78507785077852,-46.34582327349054],[167.77427774277743,-46.33906896441101],[167.7526775267753,-46.32893750079172],[167.7418774187742,-46.322183191712185],[167.7526775267753,-46.31542888263265],[167.7670776707767,-46.31205172809289],[167.78147781477816,-46.30698599628324],[167.78867788677888,-46.29347737812418],[167.73827738277384,-46.24619721456746],[167.7130771307713,-46.217491400979455],[167.7130771307713,-46.197228473740864],[167.6986769867699,-46.18878558739145],[167.65547655476558,-46.18540843285169],[167.63747637476376,-46.18203127831192],[167.5906759067591,-46.160079773803446],[167.57627576275763,-46.156702619263676],[167.4610746107461,-46.14825973291426],[167.45387453874542,-46.14994831018415],[167.4466744667447,-46.156702619263676],[167.4466744667447,-46.173588391962504],[167.44307443074433,-46.18203127831192],[167.43227432274324,-46.197228473740864],[167.4250742507425,-46.21073709189992],[167.4250742507425,-46.22424571005899],[167.41787417874178,-46.239442905487934],[167.40707407074075,-46.25126294637711],[167.38907389073893,-46.25464010091687],[167.3566735667357,-46.25295152364699],[167.3386733867339,-46.25632867818676],[167.30987309873098,-46.26983729634582],[167.29547295472958,-46.27321445088558],[167.2738727387274,-46.2715258736157],[167.23427234272344,-46.261394409996406],[167.21267212672126,-46.259705832726524],[167.1946719467195,-46.26308298726629],[167.18747187471877,-46.26646014180606],[167.18027180271804,-46.26983729634582],[167.1730717307173,-46.27321445088558],[167.16947169471695,-46.26983729634582],[167.16587165871658,-46.26308298726629],[167.16227162271622,-46.259705832726524],[167.14787147871482,-46.25801725545664],[167.0866708667087,-46.237754328218045],[167.06867068670687,-46.237754328218045],[167.0506705067051,-46.239442905487934],[167.03267032670328,-46.239442905487934],[166.9678696786968,-46.22593428732887],[166.82746827468276,-46.22762286459875],[166.76266762667626,-46.219179978249336],[166.7050670506705,-46.19047416466133],[166.67626676266764,-46.16345692834321],[166.67266672666727,-46.15332546472391],[166.67626676266764,-46.14657115564438],[166.7050670506705,-46.13812826929497],[166.71586715867159,-46.13306253748532],[166.75546755467553,-46.10266814662743],[166.7878678786788,-46.06889660122978],[166.81666816668167,-46.02161643767306],[166.83106831068312,-46.00135351043447],[166.8526685266853,-45.992910624085056],[166.88146881468816,-45.98784489227541],[166.92826928269284,-45.96082765595729],[166.9534695346954,-45.95069619233799],[166.9534695346954,-45.94394188325846],[166.9318693186932,-45.94563046052834],[166.87066870668707,-45.972647696846465],[166.82746827468276,-45.98277916046576],[166.80226802268027,-45.992910624085056],[166.7878678786788,-46.00473066497424],[166.78426784267845,-46.016550705863416],[166.7878678786788,-46.02330501494295],[166.79146791467917,-46.030059324022474],[166.7878678786788,-46.04019078764177],[166.78426784267845,-46.04187936491166],[166.75186751867523,-46.06551944669001],[166.75186751867523,-46.07058517849966],[166.74826748267486,-46.07058517849966],[166.74106741067413,-46.06045371488037],[166.74106741067413,-46.0570765603406],[166.7446674466745,-46.04863367399118],[166.7446674466745,-46.04019078764177],[166.7338673386734,-46.033436478562244],[166.71946719467195,-46.06383086942013],[166.68706687066873,-46.077339487579195],[166.6150661506615,-46.08747095119849],[166.6150661506615,-46.07058517849966],[166.61866618666187,-46.055387983070716],[166.62946629466296,-46.0469450967213],[166.64386643866442,-46.053699405800835],[166.64746647466478,-46.02161643767306],[166.65826658266582,-45.99966493316459],[166.67626676266764,-45.98446773773564],[166.7050670506705,-45.972647696846465],[166.76626766267663,-45.96251623322717],[166.79146791467917,-45.952384769607875],[166.80946809468094,-45.930433265099396],[166.77346773467735,-45.94225330598858],[166.74106741067413,-45.95069619233799],[166.72666726667268,-45.949007615068105],[166.7050670506705,-45.94563046052834],[166.6906669066691,-45.94056472871869],[166.68706687066873,-45.933810419639165],[166.7446674466745,-45.886530256082445],[166.75186751867523,-45.87639879246315],[166.75546755467553,-45.86964448338362],[166.7446674466745,-45.86120159703421],[166.7338673386734,-45.86289017430409],[166.7230672306723,-45.86964448338362],[166.71226712267122,-45.87639879246315],[166.70866708667086,-45.87977594700292],[166.7050670506705,-45.886530256082445],[166.7014670146702,-45.89497314243186],[166.69786697866982,-45.90003887424151],[166.679866798668,-45.908481760590924],[166.67626676266764,-45.91354749240057],[166.64746647466478,-45.94394188325846],[166.64386643866442,-45.954073346877756],[166.62946629466296,-45.96589338776693],[166.5358653586536,-45.98446773773564],[166.52146521465215,-45.991222046815174],[166.49626496264966,-46.009796396783884],[166.48906489064893,-46.013173551323646],[166.4818648186482,-46.008107819514],[166.47466474664748,-45.996287778624826],[166.4710647106471,-45.98277916046576],[166.4710647106471,-45.97602485138623],[166.47466474664748,-45.96420481049705],[166.4710647106471,-45.95069619233799],[166.46746467464675,-45.930433265099396],[166.46746467464675,-45.84093866979561],[166.47466474664748,-45.81729858801726],[166.48906489064893,-45.807167124397964],[166.55386553865537,-45.80041281531843],[166.62226622266223,-45.80041281531843],[166.6150661506615,-45.807167124397964],[166.62226622266223,-45.81561001074737],[166.64746647466478,-45.80041281531843],[166.67626676266764,-45.7936585062389],[166.74106741067413,-45.7936585062389],[166.76626766267663,-45.790281351699136],[166.82026820268203,-45.77677273354007],[166.84546845468458,-45.77339557900031],[166.87426874268743,-45.77677273354007],[166.8886688866889,-45.77677273354007],[166.89946899468998,-45.77001842446054],[166.91026910269102,-45.761575538111124],[166.91746917469175,-45.75650980630148],[166.93906939069393,-45.7446897654123],[166.9858698586986,-45.72949256998336],[167.00747007470073,-45.71936110636406],[167.0218702187022,-45.69740960185558],[166.97866978669788,-45.709229642744766],[166.96426964269642,-45.71091822001465],[166.89226892268925,-45.705852488205],[166.7986679866799,-45.724426838173706],[166.77346773467735,-45.71936110636406],[166.79146791467917,-45.68896671550617],[166.80586805868057,-45.67883525188687],[166.8238682386824,-45.67039236553746],[166.87426874268743,-45.65857232464828],[166.89226892268925,-45.65012943829887],[166.79506795067954,-45.660260901918164],[166.77706777067772,-45.6568837473784],[166.769867698677,-45.63324366560004],[166.769867698677,-45.61129216109157],[166.78066780667808,-45.59440638839274],[166.80586805868057,-45.58765207931321],[166.83106831068312,-45.582586347503565],[166.88146881468816,-45.56401199753485],[166.91026910269102,-45.560634842995086],[166.96426964269642,-45.57414346115415],[166.99306993069933,-45.57583203842403],[167.01467014670146,-45.560634842995086],[166.97866978669788,-45.56232342026497],[166.96426964269642,-45.55725768845532],[166.9534695346954,-45.54712622483603],[167.01827018270183,-45.53192902940708],[167.04707047070474,-45.516731833978135],[167.05427054270547,-45.49140317492989],[166.9210692106921,-45.542060493026376],[166.83826838268385,-45.55219195664567],[166.78426784267845,-45.57414346115415],[166.77346773467735,-45.57583203842403],[166.75186751867523,-45.579209192963795],[166.74106741067413,-45.580897770233676],[166.7230672306723,-45.579209192963795],[166.71586715867159,-45.57583203842403],[166.7014670146702,-45.55725768845532],[166.7014670146702,-45.542060493026376],[166.74106741067413,-45.48464886585037],[166.7590675906759,-45.42554866140447],[166.76626766267663,-45.41035146597552],[166.8130681306813,-45.3934656932767],[166.85986859868598,-45.40697431143576],[166.91026910269102,-45.43061439321412],[166.9534695346954,-45.43736870229365],[166.9426694266943,-45.41372862051529],[166.92466924669247,-45.38839996146705],[166.91026910269102,-45.37995707511764],[166.89946899468998,-45.403597156896],[166.8778687786878,-45.391777116006814],[166.83826838268385,-45.378268497847756],[166.8238682386824,-45.36813703422846],[166.80946809468094,-45.358005570609166],[166.80586805868057,-45.34618552971998],[166.8130681306813,-45.334365488830805],[166.8238682386824,-45.31747971613198],[166.85986859868598,-45.292151057083736],[166.88146881468816,-45.28033101619456],[166.89226892268925,-45.28370817073432],[166.89946899468998,-45.30059394343315],[166.91746917469175,-45.31241398432233],[166.96066960669606,-45.32761117975127],[166.94986949869502,-45.332676911560924],[166.9426694266943,-45.33774264337057],[166.93546935469357,-45.34618552971998],[166.9318693186932,-45.354628416069396],[166.96426964269642,-45.352939838799514],[166.99306993069933,-45.34280837518022],[167.01827018270183,-45.34111979791034],[167.04707047070474,-45.36138272514893],[167.05427054270547,-45.371514188768224],[167.05787057870577,-45.37995707511764],[167.05787057870577,-45.39008853873693],[167.04707047070474,-45.403597156896],[167.0218702187022,-45.417105775055056],[167.0110701107011,-45.42723723867435],[167.0218702187022,-45.43061439321412],[167.05427054270547,-45.42892581594423],[167.0650706507065,-45.42386008413459],[167.07947079470796,-45.41372862051529],[167.0866708667087,-45.40022000235623],[167.09027090270905,-45.38671138419717],[167.09747097470978,-45.38164565238752],[167.12267122671227,-45.40022000235623],[167.13707137071373,-45.40528573416588],[167.14787147871482,-45.41372862051529],[167.15507155071555,-45.43736870229365],[167.1730717307173,-45.4711402476913],[167.17667176671767,-45.46776309315154],[167.18027180271804,-45.46438593861177],[167.18747187471877,-45.46945167042142],[167.19827198271986,-45.47451740223107],[167.2054720547206,-45.477894556770835],[167.20187201872022,-45.44581158864306],[167.14787147871482,-45.39853142508635],[167.04707047070474,-45.32761117975127],[167.06147061470614,-45.31241398432233],[167.07947079470796,-45.3056596752428],[167.18027180271804,-45.2853967480042],[167.19827198271986,-45.2853967480042],[167.2090720907209,-45.29383963435362],[167.22707227072272,-45.31747971613198],[167.24147241472417,-45.32761117975127],[167.25947259472593,-45.33098833429104],[167.28107281072812,-45.332676911560924],[167.29907299072994,-45.32592260248139],[167.30987309873098,-45.314102561592215],[167.2918729187292,-45.30903682978256],[167.25587255872563,-45.310725407052445],[167.24507245072454,-45.30397109797292],[167.23427234272344,-45.29383963435362],[167.23067230672308,-45.28877390254397],[167.23427234272344,-45.270199552575264],[167.2378723787238,-45.25837951168608],[167.2486724867249,-45.25500235714632],[167.2486724867249,-45.253313779876436],[167.2090720907209,-45.253313779876436],[167.1730717307173,-45.266822398035494],[167.14787147871482,-45.270199552575264],[167.0650706507065,-45.276953861654796],[167.04707047070474,-45.270199552575264],[167.04707047070474,-45.2566909344162],[167.03627036270365,-45.23642800717761],[167.02907029070292,-45.21616507993902],[167.0110701107011,-45.20603361631972],[167.00747007470073,-45.19421357543054],[167.00387003870043,-45.15031056641359],[167.0110701107011,-45.13342479371477],[167.03267032670328,-45.12160475282558],[167.0650706507065,-45.123293330095464],[167.0866708667087,-45.13511337098465],[167.12627126271263,-45.17395064819195],[167.13707137071373,-45.18070495727148],[167.15507155071555,-45.18408211181124],[167.16947169471695,-45.18408211181124],[167.18027180271804,-45.17732780273171],[167.1730717307173,-45.170573493652185],[167.13707137071373,-45.15031056641359],[167.10107101071014,-45.11653902101594],[167.07947079470796,-45.103030402856874],[167.05427054270547,-45.10134182558699],[167.09387093870941,-45.05575023930016],[167.1190711907119,-45.03886446660133],[167.1406714067141,-45.04393019841098],[167.18027180271804,-45.087833207427934],[167.18027180271804,-45.103030402856874],[167.18027180271804,-45.11653902101594],[167.18027180271804,-45.126670484635234],[167.19107191071913,-45.13511337098465],[167.19827198271986,-45.12160475282558],[167.1946719467195,-45.10134182558699],[167.19827198271986,-45.09458751650746],[167.21267212672126,-45.089521784697816],[167.2738727387274,-45.09458751650746],[167.25947259472593,-45.0810788983484],[167.20187201872022,-45.06757028018934],[167.18027180271804,-45.05743881657004],[167.16587165871658,-45.04055304387121],[167.15147151471518,-45.023667271172386],[167.15147151471518,-45.006781498473565],[167.16587165871658,-44.99158430304462],[167.18747187471877,-44.984829993965086],[167.21627216272162,-44.99158430304462],[167.24147241472417,-45.00002718939403],[167.26667266672666,-45.005092921203676],[167.28827288272885,-45.01353580755309],[167.31347313473134,-45.02873300298204],[167.33507335073352,-45.03717588933145],[167.34947349473498,-45.025355848442274],[167.33147331473316,-45.021978693902504],[167.2090720907209,-44.97300995307591],[167.19827198271986,-44.964567066726495],[167.20187201872022,-44.94936987129755],[167.219872198722,-44.93586125313849],[167.27027270272703,-44.9054668622806],[167.28827288272885,-44.898712553201065],[167.30627306273067,-44.897023975931184],[167.3278732787328,-44.8953353986613],[167.32427324273243,-44.89195824412154],[167.31347313473134,-44.880138203232356],[167.30987309873098,-44.87507247142271],[167.38547385473856,-44.84298950329494],[167.41787417874178,-44.841300926025056],[167.43227432274324,-44.87169531688294],[167.4358743587436,-44.87676104869259],[167.44307443074433,-44.881826780502244],[167.45027450274506,-44.88858108958177],[167.45387453874542,-44.898712553201065],[167.45027450274506,-44.90884401682037],[167.43947439474397,-44.92741836678908],[167.43947439474397,-44.93754983040837],[167.4466744667447,-44.95105844856743],[167.4574745747458,-44.961189912186725],[167.46827468274682,-44.97300995307591],[167.4610746107461,-44.99158430304462],[167.49707497074974,-44.99496145758438],[167.5150751507515,-44.9932728803145],[167.51147511475114,-44.98145283942532],[167.50787507875077,-44.97638710761567],[167.50427504275046,-44.96963279853614],[167.5006750067501,-44.961189912186725],[167.5006750067501,-44.9544356031072],[167.49707497074974,-44.94768129402767],[167.47547475474755,-44.9341726758686],[167.47547475474755,-44.92404121224931],[167.47547475474755,-44.90884401682037],[167.47547475474755,-44.89364682139142],[167.46827468274682,-44.878449625962475],[167.4610746107461,-44.86831816234318],[167.4466744667447,-44.83623519421541],[167.4466744667447,-44.82441515332623],[167.4574745747458,-44.78895503065869],[167.48627486274864,-44.76700352615022],[167.52227522275223,-44.76362637161045],[167.5546755467555,-44.78557787611893],[167.56187561875618,-44.79908649427799],[167.5582755827558,-44.80584080335752],[167.55107551075514,-44.81259511243705],[167.5438754387544,-44.827792307866],[167.53667536675368,-44.84636665783471],[167.54027540275405,-44.859875275993765],[167.55107551075514,-44.87169531688294],[167.5690756907569,-44.881826780502244],[167.5690756907569,-44.859875275993765],[167.579875798758,-44.84467808056482],[167.5906759067591,-44.83116946240576],[167.59787597875982,-44.81428368970693],[167.59427594275945,-44.79402076246834],[167.5690756907569,-44.77206925795986],[167.56187561875618,-44.75518348526104],[167.55107551075514,-44.74167486710198],[167.54747547475478,-44.734920558022445],[167.5690756907569,-44.72816624894292],[167.579875798758,-44.719723362593506],[167.58707587075872,-44.716346208053736],[167.60147601476018,-44.72141193986339],[167.61947619476194,-44.739986289832096],[167.6338763387634,-44.75180633072127],[167.65187651876522,-44.76024921707069],[167.68067680676808,-44.76531494888034],[167.66267662676626,-44.758560639800805],[167.6230762307623,-44.72478909440315],[167.59787597875982,-44.70790332170432],[167.59427594275945,-44.69777185808503],[167.60147601476018,-44.68257466265608],[167.61947619476194,-44.67413177630667],[167.67347673476735,-44.66231173541749],[167.68067680676808,-44.657246003607845],[167.6878768787688,-44.6420488081789],[167.69147691476917,-44.63698307636925],[167.6986769867699,-44.633605921829485],[167.71667716677166,-44.63022876728972],[167.7238772387724,-44.62516303548007],[167.7526775267753,-44.6032115309716],[167.78147781477816,-44.594768644622185],[167.810278102781,-44.59983437643183],[167.85347853478538,-44.628540190019834],[167.88947889478897,-44.6420488081789],[167.90027900279006,-44.652180271798194],[167.93267932679328,-44.69777185808503],[167.939879398794,-44.68595181719585],[167.94347943479437,-44.6707546217669],[167.939879398794,-44.65555742633796],[167.93267932679328,-44.6420488081789],[167.92547925479255,-44.638671653639136],[167.90387903879042,-44.628540190019834],[167.87867878678787,-44.60827726278124],[167.87147871478714,-44.60490010824148],[167.86787867878678,-44.6032115309716],[167.86067860678605,-44.60152295370171],[167.85707857078575,-44.594768644622185],[167.85347853478538,-44.58801433554265],[167.85707857078575,-44.56099709922453],[167.84987849878502,-44.532291285636525],[167.8426784267843,-44.51709409020758],[167.83547835478356,-44.5052740493184],[167.86067860678605,-44.47994539027016],[167.94347943479437,-44.41240229947485],[167.97227972279723,-44.39382794950614],[168.00828008280087,-44.37694217680731],[168.03348033480336,-44.35330209502896],[168.029880298803,-44.321219126901184],[168.11988119881198,-44.321219126901184],[168.1270812708127,-44.31615339509154],[168.1378813788138,-44.29926762239271],[168.14148141481417,-44.284070426963765],[168.1378813788138,-44.280693272424],[168.1270812708127,-44.27225038607459],[168.10188101881022,-44.265496076995056],[168.10188101881022,-44.258741767915524],[168.1486814868149,-44.24692172702635],[168.17028170281702,-44.23847884067693],[168.20628206282066,-44.20808444981905],[168.26748267482674,-44.177690058961154],[168.30708307083074,-44.14898424537315],[168.33948339483396,-44.118589854515264],[168.34308343083433,-44.11183554543573],[168.34308343083433,-44.101704081816436],[168.3466834668347,-44.08988404092726],[168.35388353883542,-44.078064000038076],[168.36468364683645,-44.06962111368866],[168.37548375483755,-44.062866804609136],[168.38628386283864,-44.057801072799485],[168.39708397083973,-44.052735340989834],[168.389883898839,-44.05104676371995],[168.37188371883718,-44.039226722830776],[168.389883898839,-44.03247241375124],[168.4114841148412,-44.0274066819416],[168.47268472684726,-44.02571810467171],[168.5086850868509,-44.018963795592185],[168.5446854468545,-44.00545517743312],[168.5626856268563,-43.995323713813825],[168.57348573485734,-43.98856940473429],[168.5878858788588,-43.98181509565476],[168.61308613086135,-43.98519225019453],[168.62028620286202,-43.98181509565476],[168.64548645486457,-43.96492932295594],[168.6634866348664,-43.971683632035464],[168.6778867788678,-43.98856940473429],[168.69948699486997,-44.00545517743312],[168.74628746287465,-44.01052090924277],[168.80388803888042,-43.997012291083706],[168.85788857888582,-43.97337220930535],[168.9190891908919,-43.9294692002884],[168.96588965889663,-43.90582911851004],[168.9838898388984,-43.89232050035098],[169.0018900189002,-43.88218903673168],[169.0666906669067,-43.85686037768345],[169.0810908109081,-43.846728914064144],[169.08469084690847,-43.83828602771474],[169.08829088290884,-43.828154564095435],[169.0918909189092,-43.81971167774602],[169.09909099090993,-43.81464594593638],[169.12429124291242,-43.8028259050472],[169.1350913509135,-43.79944875050743],[169.15309153091533,-43.7926944414279],[169.19269192691928,-43.75892289603025],[169.2106921069211,-43.750480009680835],[169.22869228692286,-43.745414277871184],[169.30429304293045,-43.70995415520365],[169.35109351093513,-43.69813411431447],[169.37989379893799,-43.688002650695175],[169.39069390693908,-43.67280545526623],[169.3978939789398,-43.664362568916815],[169.4086940869409,-43.65760825983728],[169.419494194942,-43.65085395075776],[169.43029430294303,-43.64747679621799],[169.45549455494557,-43.645788218948105],[169.46629466294667,-43.64747679621799],[169.47349473494734,-43.64916537348787],[169.48429484294843,-43.64747679621799],[169.49509495094952,-43.64072248713846],[169.50949509495098,-43.63059102351916],[169.54909549095493,-43.622148137169745],[169.58149581495815,-43.603573787201036],[169.62469624696246,-43.60863951901069],[169.64629646296464,-43.606950941740806],[169.69669696696968,-43.5782451281528],[169.71829718297187,-43.57317939634315],[169.73269732697327,-43.56642508726362],[169.7686976869769,-43.52758781005632],[169.7830978309783,-43.51576776916714],[169.78669786697867,-43.50394772827796],[169.79029790297903,-43.49212768738878],[169.80829808298085,-43.47355333742007],[169.83349833498335,-43.47017618288031],[169.8478984789848,-43.461733296530895],[169.8478984789848,-43.44822467837183],[169.85509855098553,-43.42627317386336],[169.87669876698766,-43.40769882389465],[169.89829898298984,-43.39419020573558],[170.03150031500314,-43.34522146490899],[170.04230042300424,-43.33002426948004],[170.05310053100533,-43.30300703316192],[170.07470074700745,-43.29794130135227],[170.0891008910089,-43.28780983773297],[170.09630096300964,-43.27261264230403],[170.10350103501037,-43.257415446875086],[170.11430114301146,-43.252349715065435],[170.13950139501395,-43.24390682871602],[170.1647016470165,-43.23039821055696],[170.1791017910179,-43.22533247874731],[170.19350193501936,-43.22364390147743],[170.20430204302045,-43.22533247874731],[170.22590225902258,-43.23546394236661],[170.24030240302403,-43.237152519636496],[170.30510305103053,-43.16285511976165],[170.2727027270273,-43.15778938795201],[170.24750247502476,-43.1780523151906],[170.22590225902258,-43.20506955150872],[170.20070200702008,-43.2168895923979],[170.2187021870219,-43.172986583380954],[170.2547025470255,-43.14428076979294],[170.27990279902798,-43.129083574364],[170.29070290702907,-43.11388637893506],[170.29070290702907,-43.107132069855524],[170.3627036270363,-43.10375491531576],[170.38430384303842,-43.09531202896635],[170.39150391503915,-43.088557719886815],[170.38430384303842,-43.0801148335374],[170.40230402304024,-43.069983369918106],[170.4167041670417,-43.05478617448916],[170.4311043110431,-43.046343288139745],[170.45270452704528,-43.05309759721928],[170.45630456304565,-43.03621182452045],[170.46710467104674,-43.03283466998069],[170.47430474304747,-43.02439178363127],[170.51390513905142,-43.005817433662564],[170.6039060390604,-42.983865929154085],[170.64350643506435,-42.96022584737573],[170.67590675906763,-42.95684869283596],[170.69030690306903,-42.95684869283596],[170.70110701107012,-42.95516011556608],[170.70830708307085,-42.94671722921667],[170.7227072270723,-42.93658576559737],[170.73350733507334,-42.92983145651784],[170.76950769507698,-42.91632283835878],[170.78750787507875,-42.901125642929834],[170.8235082350824,-42.862288365722534],[170.84150841508415,-42.85384547937312],[170.85950859508597,-42.843714015753825],[170.94230942309423,-42.73395649321145],[170.9567095670957,-42.723825029592156],[170.96750967509678,-42.72213645232227],[170.98550985509854,-42.71538214324274],[171.00351003510036,-42.70525067962344],[171.0107101071011,-42.69343063873426],[171.0287102871029,-42.67316771149567],[171.03591035910358,-42.66472482514626],[171.04671046710467,-42.661347670606496],[171.0647106471065,-42.65459336152696],[171.07911079110795,-42.636019011558254],[171.10431104311044,-42.60055888889072],[171.12231122311226,-42.5921160025413],[171.19431194311943,-42.48404705726881],[171.21591215912161,-42.4654727073001],[171.2267122671227,-42.450275511871155],[171.2267122671227,-42.41819254374339],[171.23391233912338,-42.39624103923491],[171.28431284312842,-42.34051798932878],[171.3059130591306,-42.29492640304195],[171.33111331113315,-42.14802018056215],[171.34911349113491,-42.11087148062473],[171.35271352713528,-42.08723139884638],[171.36351363513637,-42.06359131706802],[171.3707137071371,-42.0551484307186],[171.40311403114032,-42.02475403986072],[171.41751417514178,-42.00617968989201],[171.42831428314287,-41.98422818538353],[171.44631446314463,-41.92006224912799],[171.45711457114572,-41.90148789915928],[171.46791467914682,-41.86771635376162],[171.48951489514894,-41.830567653824204],[171.48231482314827,-41.81874761293503],[171.47511475114754,-41.82719049928444],[171.47151471514718,-41.81874761293503],[171.46791467914682,-41.813681881125376],[171.46791467914682,-41.76640171756866],[171.48231482314827,-41.75795883121925],[171.54351543515435,-41.76471314029878],[171.6119161191612,-41.75627025394937],[171.6335163351634,-41.75795883121925],[171.64071640716406,-41.75795883121925],[171.68751687516874,-41.74107305852042],[171.78471784717846,-41.69548147223359],[171.809918099181,-41.673529967725116],[171.81711817118173,-41.668464235915465],[171.8315183151832,-41.6650870813757],[171.8459184591846,-41.668464235915465],[171.85671856718568,-41.6650870813757],[171.8639186391864,-41.64144699959734],[171.87111871118714,-41.6363812677877],[171.88191881918823,-41.63131553597805],[171.8891188911889,-41.62287264962863],[171.90351903519036,-41.607675454199686],[171.93951939519394,-41.545198095214026],[171.94671946719467,-41.54013236340438],[171.95031950319503,-41.5384437861345],[171.9539195391954,-41.53506663159473],[171.95751957519576,-41.51480370435614],[171.95751957519576,-41.51142654981638],[171.96111961119612,-41.50973797254649],[171.9647196471965,-41.506360818006726],[171.97191971919722,-41.49791793165731],[171.97911979119795,-41.48778646803802],[171.9827198271983,-41.47765500441872],[171.9827198271983,-41.465834963529545],[171.99351993519934,-41.4506377681006],[172.0187201872019,-41.43375199540177],[172.0511205112051,-41.42024337724271],[172.06912069120693,-41.41348906816318],[172.06552065520657,-41.405046181813766],[172.06552065520657,-41.39491471819447],[172.06912069120693,-41.38647183184506],[172.0835208352084,-41.36620890460647],[172.0835208352084,-41.35438886371728],[172.0835208352084,-41.33243735920881],[172.0871208712087,-41.30879727743045],[172.09432094320942,-41.298665813811155],[172.10152101521015,-41.30204296835092],[172.10512105121052,-41.30035439108104],[172.1159211592116,-41.29528865927139],[172.1267212672127,-41.29191150473162],[172.1411214112141,-41.29191150473162],[172.11952119521197,-41.26320569114362],[172.1159211592116,-41.25138565025444],[172.10512105121052,-41.13993955044218],[172.10872108721088,-41.128119509553],[172.1159211592116,-41.10616800504453],[172.11952119521197,-41.09603654142523],[172.11232112321125,-41.04369064605887],[172.11232112321125,-40.93562170078638],[172.10512105121052,-40.905227309928485],[172.10512105121052,-40.886652959959775],[172.1159211592116,-40.87989865088024],[172.1267212672127,-40.87821007361036],[172.13752137521374,-40.87652149634048],[172.14472144721447,-40.86976718726095],[172.15552155521556,-40.84950426002236],[172.1807218072181,-40.825864178244],[172.18432184321847,-40.82079844643435],[172.18432184321847,-40.808978405545176],[172.18792187921878,-40.805601251005406],[172.1951219512195,-40.80053551919576],[172.20232202322023,-40.79884694192587],[172.20952209522096,-40.79884694192587],[172.21312213122133,-40.79715836465599],[172.2167221672217,-40.79209263284635],[172.22032220322205,-40.7870269010367],[172.22392223922242,-40.780272591957164],[172.23112231122315,-40.7768954374174],[172.2347223472235,-40.7768954374174],[172.24552245522455,-40.77858401468728],[172.25272252722527,-40.7768954374174],[172.26712267122673,-40.76845255106799],[172.29592295922959,-40.75325535563904],[172.30672306723068,-40.74987820109928],[172.31032310323104,-40.746501046559516],[172.36432364323645,-40.71610665570162],[172.46512465124653,-40.621546328588195],[172.50832508325084,-40.58946336046042],[172.54432544325442,-40.577643319571244],[172.52632526325266,-40.6114148649689],[172.52632526325266,-40.621546328588195],[172.54072540725406,-40.62661206039784],[172.54432544325442,-40.621546328588195],[172.55152551525515,-40.61310344223878],[172.55872558725588,-40.60634913315925],[172.5767257672577,-40.6114148649689],[172.58392583925843,-40.60972628769901],[172.5911259112591,-40.60466055588937],[172.59832598325983,-40.599594824079716],[172.59472594725946,-40.58439762865078],[172.62352623526237,-40.574266165031474],[172.62712627126274,-40.56582327868206],[172.61632616326165,-40.555691815062765],[172.61272612726128,-40.552314660523],[172.59832598325983,-40.560757546872416],[172.58392583925843,-40.56751185595195],[172.56952569525697,-40.56920043322183],[172.55872558725588,-40.56582327868206],[172.59472594725946,-40.52698600147476],[172.64152641526414,-40.51010022877593],[172.839528395284,-40.50165734242652],[172.90432904329043,-40.50841165150605],[172.96552965529656,-40.52192026966512],[172.99792997929978,-40.523608846935],[172.9727297272973,-40.53036315601453],[172.75672756727568,-40.516854537855465],[172.74232742327422,-40.52023169239523],[172.73152731527318,-40.53036315601453],[172.7207272072721,-40.552314660523],[172.709927099271,-40.5911519377303],[172.70272702727027,-40.60972628769901],[172.68832688326887,-40.619857751318314],[172.69552695526954,-40.640120678556904],[172.69192691926918,-40.64856356490632],[172.67752677526778,-40.64856356490632],[172.65952659526596,-40.64687498763644],[172.67392673926742,-40.67389222395456],[172.68112681126814,-40.67726937849432],[172.69552695526954,-40.68233511030397],[172.70272702727027,-40.68740084211362],[172.70272702727027,-40.704286614812446],[172.68832688326887,-40.73468100567033],[172.69552695526954,-40.74987820109928],[172.70272702727027,-40.74481246928963],[172.7207272072721,-40.73636958294021],[172.73512735127355,-40.765075396528225],[172.77112771127713,-40.79209263284635],[172.85752857528576,-40.844438528212706],[172.86832868328685,-40.847815682752476],[172.8827288272883,-40.842749950942824],[172.9079290792908,-40.829241332783766],[172.91152911529116,-40.827552755513885],[172.92592925929262,-40.825864178244],[172.92952929529298,-40.822487023704234],[172.92592925929262,-40.81066698281506],[172.92952929529298,-40.805601251005406],[172.94392943929438,-40.79378121011623],[172.9511295112951,-40.79378121011623],[172.9619296192962,-40.805601251005406],[172.97632976329766,-40.79040405557646],[172.9907299072991,-40.780272591957164],[173.0051300513005,-40.78196116922705],[173.0159301593016,-40.79715836465599],[173.02313023130233,-40.81066698281506],[173.02313023130233,-40.81910986916447],[173.0159301593016,-40.83937279640306],[173.02313023130233,-40.847815682752476],[173.02313023130233,-40.85625856910189],[173.00873008730088,-40.866390032721185],[173.0267302673027,-40.86976718726095],[173.04113041130415,-40.868078609991066],[173.05553055530555,-40.87145576453083],[173.06633066330664,-40.886652959959775],[173.06273062730628,-40.89171869176943],[173.0519305193052,-40.93562170078638],[173.05553055530555,-40.95419605075509],[173.05913059130592,-40.9626389371045],[173.05553055530555,-40.969393246184026],[173.04473044730446,-40.98290186434309],[173.02313023130233,-41.0014762143118],[172.99792997929978,-41.01667340974075],[173.0051300513005,-41.02173914155039],[173.01233012330124,-41.02342771882027],[173.01953019530197,-41.02173914155039],[173.03033030330306,-41.01667340974075],[173.04113041130415,-41.06733072783722],[173.04473044730446,-41.08252792326617],[173.0519305193052,-41.09772511869512],[173.06273062730628,-41.111233736854174],[173.069930699307,-41.12474235501324],[173.06633066330664,-41.13993955044218],[173.06273062730628,-41.131496664092765],[173.05553055530555,-41.12305377774335],[173.04833048330482,-41.116299468663826],[173.0375303753038,-41.112922314124056],[173.03033030330306,-41.14838243679159],[173.03393033930342,-41.15851390041089],[173.04833048330482,-41.17033394130007],[173.05553055530555,-41.1770882503796],[173.05913059130592,-41.18890829126878],[173.06633066330664,-41.18890829126878],[173.07713077130774,-41.1770882503796],[173.08433084330846,-41.18890829126878],[173.0915309153092,-41.22943414574596],[173.1059310593106,-41.256451382064085],[173.1059310593106,-41.2648942684135],[173.09873098730986,-41.27164857749303],[173.08433084330846,-41.27671430930268],[173.0807308073081,-41.2851571956521],[173.08793087930883,-41.298665813811155],[173.10233102331023,-41.30710870016057],[173.12753127531278,-41.31217443197022],[173.1707317073171,-41.31217443197022],[173.19233192331927,-41.30879727743045],[173.2139321393214,-41.30204296835092],[173.24993249932498,-41.27671430930268],[173.28593285932862,-41.26151711387374],[173.30033300333002,-41.24631991844479],[173.33993339933403,-41.20579406396761],[173.4011340113401,-41.16020247768078],[173.42633426334265,-41.15175959133136],[173.43713437134375,-41.136562395902416],[173.44793447934478,-41.13318524136265],[173.4551345513455,-41.136562395902416],[173.4551345513455,-41.14500528225183],[173.45153451534514,-41.153448168601244],[173.44793447934478,-41.16189105495066],[173.48393483934842,-41.150071014061474],[173.50193501935019,-41.14162812771207],[173.51273512735128,-41.129808086822884],[173.5307353073531,-41.10616800504453],[173.53793537935383,-41.099413695965],[173.54513545135455,-41.099413695965],[173.5559355593556,-41.10279085050476],[173.56313563135632,-41.10447942777464],[173.57033570335705,-41.092659386885465],[173.56313563135632,-41.08252792326617],[173.57033570335705,-41.06733072783722],[173.58833588335887,-41.05551068694805],[173.60273602736027,-41.050444955138396],[173.62073620736209,-41.05551068694805],[173.63513635136354,-41.069019305107105],[173.64593645936463,-41.08759365507582],[173.64953649536494,-41.10616800504453],[173.6531365313653,-41.10616800504453],[173.66033660336603,-41.09603654142523],[173.6639366393664,-41.09434796415535],[173.67113671136713,-41.09603654142523],[173.6747367473675,-41.10616800504453],[173.68913689136895,-41.099413695965],[173.6747367473675,-41.07577361418664],[173.68913689136895,-41.06395357329746],[173.71433714337144,-41.05719926421793],[173.739537395374,-41.048756377868514],[173.74673746737471,-41.03693633697934],[173.74673746737471,-41.02680487336004],[173.739537395374,-41.02005056428051],[173.72513725137253,-41.01667340974075],[173.68913689136895,-41.03693633697934],[173.68193681936822,-41.035247759709456],[173.68193681936822,-41.02173914155039],[173.68193681936822,-41.01498483247086],[173.69993699936998,-40.99978763704192],[173.7071370713707,-40.99472190523227],[173.7287372873729,-40.98459044161297],[173.739537395374,-40.97952470980333],[173.75033750337502,-40.97614755526356],[173.80073800738006,-40.969393246184026],[173.8079380793808,-40.96432751437438],[173.82953829538297,-40.93899885532614],[173.85473854738547,-40.92549023716708],[173.8511385113851,-40.971081823453915],[173.8727387273873,-40.97614755526356],[173.87633876338765,-40.972770400723796],[173.90873908739087,-40.949130318945436],[173.90873908739087,-40.94406458713579],[173.91233912339123,-40.930555968976726],[173.9159391593916,-40.927178814436964],[173.91953919539196,-40.92549023716708],[173.93393933939342,-40.92211308262731],[173.98433984339846,-40.90016157811884],[173.9915399153992,-40.90016157811884],[174.00234002340022,-40.90016157811884],[174.01674016740168,-40.90185015538872],[174.0239402394024,-40.906915887198366],[174.0347403474035,-40.93393312351649],[174.01674016740168,-40.93731027805626],[173.969939699397,-40.927178814436964],[173.97713977139773,-40.94068743259602],[173.969939699397,-40.947441741675554],[173.9591395913959,-40.95588462802497],[173.95553955539555,-40.969393246184026],[173.9447394473945,-40.96601609164426],[173.93393933939342,-40.96601609164426],[173.92313923139233,-40.969393246184026],[173.9159391593916,-40.97614755526356],[173.91953919539196,-40.98121328707321],[173.92313923139233,-40.986279018882854],[173.9267392673927,-40.987967596152735],[173.93393933939342,-40.989656173422624],[173.91953919539196,-41.0014762143118],[173.88713887138874,-41.009919100661214],[173.85473854738547,-41.011607677931096],[173.84033840338407,-40.99978763704192],[173.8259382593826,-40.99809905977204],[173.79713797137975,-41.0014762143118],[173.77913779137793,-41.011607677931096],[173.80433804338043,-41.031870605169686],[173.78993789937903,-41.03862491424922],[173.77913779137793,-41.04706780059863],[173.7827378273783,-41.053822109678165],[173.79713797137975,-41.05888784148781],[173.7935379353794,-41.07070788237699],[173.78993789937903,-41.08252792326617],[173.77913779137793,-41.092659386885465],[173.7719377193772,-41.099413695965],[173.77913779137793,-41.10785658231441],[173.78993789937903,-41.10954515958429],[173.80073800738006,-41.10447942777464],[173.80433804338043,-41.0892822323457],[173.82953829538297,-41.06395357329746],[173.82953829538297,-41.05888784148781],[173.89433894338947,-41.048756377868514],[173.93033930339305,-41.048756377868514],[173.95553955539555,-41.05888784148781],[173.9447394473945,-41.05719926421793],[173.93753937539378,-41.05888784148781],[173.93033930339305,-41.06564215056734],[173.9267392673927,-41.07577361418664],[173.9267392673927,-41.08421650053605],[173.9159391593916,-41.08421650053605],[173.90873908739087,-41.08083934599629],[173.90153901539014,-41.07915076872641],[173.89433894338947,-41.07746219145652],[173.88713887138874,-41.074085036916756],[173.88353883538838,-41.074085036916756],[173.87993879938801,-41.08252792326617],[173.87993879938801,-41.08590507780593],[173.88713887138874,-41.092659386885465],[173.88713887138874,-41.09603654142523],[173.88713887138874,-41.10616800504453],[173.87993879938801,-41.10954515958429],[173.87633876338765,-41.10954515958429],[173.86553865538656,-41.10616800504453],[173.85833858338583,-41.129808086822884],[173.84393843938443,-41.136562395902416],[173.82953829538297,-41.13993955044218],[173.81873818738188,-41.155136745871125],[173.83313833138334,-41.155136745871125],[173.8511385113851,-41.16020247768078],[173.86913869138692,-41.17033394130007],[173.8727387273873,-41.18553113672901],[173.8727387273873,-41.195662600348314],[173.8619386193862,-41.217614104856786],[173.85833858338583,-41.22943414574596],[173.8475384753848,-41.241254186635146],[173.81873818738188,-41.25307422752432],[173.76473764737648,-41.2648942684135],[173.76833768337684,-41.27671430930268],[173.77553775537757,-41.28346861838221],[173.7827378273783,-41.28853435019186],[173.78993789937903,-41.29191150473162],[173.89793897938978,-41.24463134117491],[173.93393933939342,-41.236188454825495],[173.93393933939342,-41.22943414574596],[173.91953919539196,-41.2260569912062],[173.9051390513905,-41.2260569912062],[173.89433894338947,-41.22436841393632],[173.88713887138874,-41.215925527586904],[173.93033930339305,-41.212548373047134],[173.95193951939518,-41.212548373047134],[173.96633966339664,-41.21930268212667],[173.9807398073981,-41.22436841393632],[174.0059400594006,-41.22267983666644],[174.03114031140314,-41.215925527586904],[174.0455404554046,-41.20917121850737],[174.03834038340386,-41.20579406396761],[174.0239402394024,-41.195662600348314],[174.08514085140854,-41.19903975488808],[174.1139411394114,-41.193974023078425],[174.13554135541358,-41.175399673109716],[174.02034020340204,-41.1770882503796],[174.00234002340022,-41.18215398218925],[174.00234002340022,-41.18553113672901],[174.00234002340022,-41.18890829126878],[173.99873998739986,-41.193974023078425],[173.9915399153992,-41.195662600348314],[173.98433984339846,-41.195662600348314],[173.9807398073981,-41.193974023078425],[173.97353973539737,-41.192285445808544],[173.969939699397,-41.18890829126878],[173.97713977139773,-41.175399673109716],[173.92313923139233,-41.192285445808544],[173.89793897938978,-41.192285445808544],[173.88713887138874,-41.16189105495066],[173.89433894338947,-41.14500528225183],[173.90153901539014,-41.136562395902416],[173.9159391593916,-41.129808086822884],[173.9267392673927,-41.12136520047347],[173.93033930339305,-41.114610891393944],[173.9267392673927,-41.10785658231441],[173.9267392673927,-41.10279085050476],[173.93393933939342,-41.099413695965],[173.9447394473945,-41.099413695965],[173.94833948339482,-41.09603654142523],[173.95193951939518,-41.0892822323457],[173.94833948339482,-41.07915076872641],[173.98433984339846,-41.08590507780593],[173.97353973539737,-41.10110227323488],[173.969939699397,-41.116299468663826],[173.97713977139773,-41.14669385952171],[173.99513995139955,-41.12305377774335],[174.00234002340022,-41.10447942777464],[174.01674016740168,-41.092659386885465],[174.0455404554046,-41.092659386885465],[174.02754027540277,-41.072396459646875],[174.0239402394024,-41.06395357329746],[174.04194041940423,-41.04369064605887],[174.04194041940423,-41.028493450629924],[174.0347403474035,-41.01667340974075],[174.01674016740168,-41.01667340974075],[174.00954009540095,-41.02680487336004],[174.0059400594006,-41.04200206878898],[173.99873998739986,-41.052133532408284],[173.98793987939882,-41.048756377868514],[173.95553955539555,-41.02342771882027],[173.94833948339482,-41.011607677931096],[173.98433984339846,-41.011607677931096],[173.97713977139773,-40.99809905977204],[173.97353973539737,-40.987967596152735],[173.9807398073981,-40.98459044161297],[173.99513995139955,-40.989656173422624],[173.99873998739986,-40.969393246184026],[174.01674016740168,-40.97445897799368],[174.05274052740526,-41.00316479158168],[174.07434074340745,-41.01498483247086],[174.09594095940963,-41.01836198701063],[174.1139411394114,-41.01498483247086],[174.12834128341285,-40.99641048250215],[174.14634146341467,-41.009919100661214],[174.16074160741607,-41.00316479158168],[174.17154171541716,-40.987967596152735],[174.1679416794168,-40.969393246184026],[174.18234182341826,-40.972770400723796],[174.20034200342002,-40.98459044161297],[174.2111421114211,-40.99978763704192],[174.21474214742148,-41.01329625520098],[174.21474214742148,-41.02511629609016],[174.21474214742148,-41.033559182439575],[174.2111421114211,-41.03693633697934],[174.18954189541898,-41.03862491424922],[174.18594185941862,-41.04369064605887],[174.18594185941862,-41.050444955138396],[174.18954189541898,-41.05888784148781],[174.20754207542075,-41.07070788237699],[174.22554225542257,-41.06564215056734],[174.2435424354244,-41.052133532408284],[174.26514265142652,-41.031870605169686],[174.30474304743046,-40.99978763704192],[174.31914319143192,-40.99641048250215],[174.32634326343265,-41.009919100661214],[174.31914319143192,-41.02680487336004],[174.26874268742688,-41.0892822323457],[174.26154261542615,-41.099413695965],[174.26154261542615,-41.11798804593371],[174.2579425794258,-41.12643093228312],[174.25434254342542,-41.12474235501324],[174.23994239942402,-41.129808086822884],[174.22914229142293,-41.1382509731723],[174.22914229142293,-41.13993955044218],[174.22554225542257,-41.14331670498195],[174.21834218342184,-41.14669385952171],[174.20754207542075,-41.14669385952171],[174.20394203942038,-41.136562395902416],[174.20394203942038,-41.09603654142523],[174.20034200342002,-41.090970809615584],[174.19314193141935,-41.099413695965],[174.18594185941862,-41.111233736854174],[174.18234182341826,-41.12136520047347],[174.1679416794168,-41.116299468663826],[174.1679416794168,-41.12474235501324],[174.17514175141753,-41.136562395902416],[174.18234182341826,-41.14669385952171],[174.20394203942038,-41.16526820949042],[174.2111421114211,-41.173711095839835],[174.21474214742148,-41.18890829126878],[174.2111421114211,-41.19059686853866],[174.20034200342002,-41.193974023078425],[174.1967419674197,-41.195662600348314],[174.1967419674197,-41.192285445808544],[174.17514175141753,-41.20241690942784],[174.1679416794168,-41.20917121850737],[174.16074160741607,-41.215925527586904],[174.15354153541534,-41.22099125939655],[174.1427414274143,-41.22267983666644],[174.0887408874089,-41.22267983666644],[174.06354063540635,-41.22943414574596],[174.0455404554046,-41.24294276390503],[174.0347403474035,-41.237877032095376],[174.02034020340204,-41.236188454825495],[174.00954009540095,-41.23956560936526],[174.00234002340022,-41.24969707298456],[173.98793987939882,-41.24631991844479],[173.969939699397,-41.24969707298456],[173.95193951939518,-41.258139959333974],[173.93753937539378,-41.26827142295327],[173.93393933939342,-41.280091463842446],[173.9591395913959,-41.278402886572565],[173.98793987939882,-41.27333715476291],[173.99873998739986,-41.26827142295327],[174.02034020340204,-41.27333715476291],[174.0347403474035,-41.26827142295327],[174.0491404914049,-41.259828536603855],[174.06714067140672,-41.24969707298456],[174.0779407794078,-41.24969707298456],[174.0887408874089,-41.25307422752432],[174.09954099540994,-41.25307422752432],[174.11754117541176,-41.24294276390503],[174.13914139141394,-41.23956560936526],[174.14994149941498,-41.236188454825495],[174.1571415714157,-41.24631991844479],[174.17154171541716,-41.254762804794204],[174.18594185941862,-41.26151711387374],[174.20034200342002,-41.2648942684135],[174.2111421114211,-41.26320569114362],[174.22554225542257,-41.25307422752432],[174.23634236342366,-41.24969707298456],[174.26514265142652,-41.24800849571467],[174.28314283142834,-41.23956560936526],[174.32634326343265,-41.215925527586904],[174.3119431194312,-41.241254186635146],[174.2975429754298,-41.2648942684135],[174.29034290342906,-41.27164857749303],[174.26874268742688,-41.2851571956521],[174.26154261542615,-41.29528865927139],[174.25434254342542,-41.30542012289069],[174.25074250742506,-41.3138630092401],[174.2435424354244,-41.322305895589516],[174.21474214742148,-41.32906020466904],[174.18954189541898,-41.342568822828106],[174.17514175141753,-41.34594597736787],[174.1787417874179,-41.33581451374857],[174.1967419674197,-41.31555158650998],[174.20034200342002,-41.30879727743045],[174.18954189541898,-41.30542012289069],[174.1679416794168,-41.322305895589516],[174.15354153541534,-41.318928741049746],[174.16074160741607,-41.30542012289069],[174.13194131941322,-41.32061731831963],[174.1139411394114,-41.34425740009799],[174.09954099540994,-41.37296321368599],[174.0779407794078,-41.399980450004115],[174.05634056340563,-41.42530910905236],[174.0491404914049,-41.43712914994153],[174.05274052740526,-41.45570349991024],[174.06354063540635,-41.486097890768136],[174.06354063540635,-41.50129508619708],[174.05634056340563,-41.51649228162602],[174.0779407794078,-41.51986943616579],[174.0887408874089,-41.53337805432485],[174.09234092340927,-41.545198095214026],[174.0887408874089,-41.55195240429356],[174.09234092340927,-41.55532955883333],[174.1031410314103,-41.56039529064297],[174.1139411394114,-41.55870671337309],[174.12114121141212,-41.5384437861345],[174.1139411394114,-41.53337805432485],[174.10674106741067,-41.51311512708626],[174.1031410314103,-41.49791793165731],[174.11754117541176,-41.506360818006726],[174.17154171541716,-41.57896964061168],[174.17514175141753,-41.59247825877075],[174.1787417874179,-41.605986876929805],[174.18234182341826,-41.6161183405491],[174.18954189541898,-41.63469269051781],[174.18954189541898,-41.64482415413711],[174.2111421114211,-41.69885862677336],[174.21474214742148,-41.70561293585288],[174.22554225542257,-41.72418728582159],[174.24714247142475,-41.73263017217101],[174.27234272342724,-41.73600732671078],[174.29394293942943,-41.730941594901125],[174.2867428674287,-41.754581676679486],[174.21474214742148,-41.855896312872446],[174.1967419674197,-41.876159240111036],[174.08154081540818,-41.96903098995459],[174.00234002340022,-42.03150834894025],[173.97353973539737,-42.06696847160778],[173.96273962739627,-42.09060855338614],[173.95553955539555,-42.11087148062473],[173.95553955539555,-42.141265871482624],[173.95553955539555,-42.15815164418145],[173.9447394473945,-42.16828310780075],[173.93753937539378,-42.17841457142004],[173.93033930339305,-42.19023461230922],[173.93033930339305,-42.19530034411887],[173.90873908739087,-42.21387469408758],[173.8907389073891,-42.2408919304057],[173.8727387273873,-42.25440054856476],[173.8259382593826,-42.27635205307324],[173.80433804338043,-42.29154924850218],[173.77553775537757,-42.330386525709486],[173.76833768337684,-42.33376368024925],[173.7611376113761,-42.33376368024925],[173.74673746737471,-42.33376368024925],[173.73593735937362,-42.350649452948076],[173.73233732337326,-42.35740376202761],[173.72153721537217,-42.36415807110714],[173.71073710737107,-42.37091238018667],[173.70353703537035,-42.37935526653608],[173.70353703537035,-42.39455246196503],[173.7071370713707,-42.40468392558432],[173.72153721537217,-42.41988112101327],[173.7287372873729,-42.42832400736268],[173.72153721537217,-42.4367668937121],[173.71433714337144,-42.44352120279162],[173.69633696336967,-42.42325827555303],[173.68553685536858,-42.41819254374339],[173.66753667536676,-42.41481538920362],[173.65673656736567,-42.41819254374339],[173.63513635136354,-42.43338973917233],[173.62433624336245,-42.4367668937121],[173.609936099361,-42.44352120279162],[173.55953559535595,-42.49080136634834],[173.53793537935383,-42.52963864355564],[173.52353523535237,-42.573541652572594],[173.49833498334982,-42.61069035251001],[173.4551345513455,-42.62757612520884],[173.4551345513455,-42.63433043428837],[173.46233462334624,-42.63433043428837],[173.4659346593466,-42.636019011558254],[173.46953469534697,-42.63939616609802],[173.4767347673477,-42.6410847433679],[173.39753397533974,-42.76603946133922],[173.3867338673387,-42.799811006736874],[173.37233372333725,-42.821762511245346],[173.35433354333543,-42.838648283944174],[173.3219332193322,-42.85215690210324],[173.3219332193322,-42.862288365722534],[173.32553325533257,-42.880862715691244],[173.32553325533257,-42.89268275658042],[173.32553325533257,-42.89774848839007],[173.32553325533257,-42.902814220199716],[173.31833318333184,-42.91632283835878],[173.30753307533075,-42.924765724708195],[173.30033300333002,-42.92814287924796],[173.29313293132935,-42.93320861105761],[173.289532895329,-42.94671722921667],[173.28593285932862,-42.9534715382962],[173.2787327873279,-42.96022584737573],[173.23553235532358,-42.98048877461432],[173.2247322473225,-42.983865929154085],[173.19593195931958,-42.987243083693855],[173.15273152731527,-43.0024402791228],[173.1491314913149,-43.0125717427421],[173.14553145531454,-43.02439178363127],[173.14193141931423,-43.03283466998069],[173.13113131131314,-43.03958897906022],[173.08433084330846,-43.06660621537834],[172.94752947529474,-43.09193487442658],[172.91512915129152,-43.10206633804588],[172.88632886328867,-43.127394997094115],[172.81072810728108,-43.169609428841184],[172.79632796327962,-43.18818377880989],[172.7747277472775,-43.23039821055696],[172.74952749527495,-43.257415446875086],[172.74592745927458,-43.2658583332245],[172.74952749527495,-43.27936695138356]]],[[[176.95436954369546,-39.60671138938869],[176.9615696156962,-39.6252857393574],[176.96876968769686,-39.62359716208752],[176.97236972369723,-39.630351471167046],[176.99036990369905,-39.63710578024658],[177.0155701557016,-39.652302975675525],[177.02277022770227,-39.65736870748517],[177.03717037170372,-39.6641230165647],[177.05157051570518,-39.6641230165647],[177.08757087570876,-39.66074586202494],[177.11997119971198,-39.66750017110447],[177.11637116371168,-39.68100878926353],[177.09837098370986,-39.70127171650212],[177.08757087570876,-39.72491179828048],[177.0839708397084,-39.733354684629894],[177.0731707317073,-39.74010899370943],[177.0587705877059,-39.74686330278895],[177.03717037170372,-39.753617611868485],[177.029970299703,-39.76543765275766],[177.0047700477005,-39.83129216628309],[177.0047700477005,-39.834669320822854],[177.00837008370087,-39.839735052632506],[177.00837008370087,-39.84648936171203],[177.0047700477005,-39.853243670791564],[177.00117001170014,-39.854932248061445],[176.98676986769868,-39.859997979871096],[176.97956979569796,-39.86337513441086],[176.96876968769686,-39.88194948437957],[176.93636936369364,-39.96975550241347],[176.91476914769152,-40.01028135689066],[176.90036900369006,-40.027167129589486],[176.8967689676897,-40.03729859320878],[176.89316893168933,-40.04911863409796],[176.8967689676897,-40.0744472931462],[176.8967689676897,-40.08120160222573],[176.89316893168933,-40.08626733403538],[176.87876878768787,-40.10146452946432],[176.87876878768787,-40.10653026127397],[176.8607686076861,-40.14030180667162],[176.83556835568356,-40.17745050660904],[176.79596795967961,-40.223042092895874],[176.7527675276753,-40.25343648375377],[176.74556745567457,-40.25681363829353],[176.73476734767348,-40.25343648375377],[176.72756727567275,-40.24499359740435],[176.71676716767166,-40.24161644286458],[176.70596705967063,-40.246682174674234],[176.68076680766808,-40.27538798826224],[176.67356673566735,-40.290585183691185],[176.669966699667,-40.310848110929776],[176.67716677166771,-40.30240522458036],[176.68436684366844,-40.29565091550083],[176.69156691566917,-40.292273760961066],[176.70236702367026,-40.290585183691185],[176.64116641166413,-40.390211242614264],[176.62676626766267,-40.46282006521922],[176.61236612366127,-40.48477156972769],[176.58716587165873,-40.48646014699758],[176.56196561965623,-40.48139441518793],[176.54396543965441,-40.48646014699758],[176.48276482764828,-40.559068969602535],[176.4251642516425,-40.60466055588937],[176.41796417964179,-40.616480596778544],[176.41436414364142,-40.62661206039784],[176.4107641076411,-40.63843210128702],[176.4035640356404,-40.64856356490632],[176.38556385563857,-40.678957955764204],[176.37836378363784,-40.68233511030397],[176.36036360363607,-40.684023687573855],[176.35316353163535,-40.68740084211362],[176.34956349563498,-40.69584372846303],[176.30996309963103,-40.77182970560775],[176.28836288362885,-40.80053551919576],[176.25236252362527,-40.866390032721185],[176.23436234362345,-40.9136701962779],[176.219962199622,-40.93393312351649],[176.16956169561695,-40.949130318945436],[176.14796147961482,-40.967704668914145],[176.13356133561336,-40.989656173422624],[176.12276122761227,-41.011607677931096],[176.09036090360905,-41.10279085050476],[176.06876068760687,-41.13993955044218],[175.9679596795968,-41.24631991844479],[175.8131581315813,-41.342568822828106],[175.77715777157772,-41.37127463641611],[175.72675726757268,-41.398291872734234],[175.6691566915669,-41.421931954512594],[175.449554495545,-41.55195240429356],[175.38115381153813,-41.57221533153215],[175.3631536315363,-41.58234679515145],[175.3307533075331,-41.609364031469575],[175.31275312753127,-41.61442976327922],[175.23715237152373,-41.61949549508887],[175.22275222752228,-41.61442976327922],[175.2119521195212,-41.58234679515145],[175.1975519755198,-41.57221533153215],[175.20115201152015,-41.55701813610321],[175.1975519755198,-41.546886672483915],[175.19035190351906,-41.53675520886462],[175.18315183151833,-41.524935167975435],[175.17955179551797,-41.50973797254649],[175.1975519755198,-41.43544057267165],[175.19395193951942,-41.42530910905236],[175.18315183151833,-41.418554799972824],[175.06075060750607,-41.38309467730529],[175.03555035550357,-41.381406100035406],[175.01035010350103,-41.38647183184506],[174.98514985149853,-41.398291872734234],[174.93834938349386,-41.43881772721142],[174.92754927549277,-41.443883459021066],[174.91674916749167,-41.44557203629095],[174.90234902349027,-41.442194881751185],[174.8807488074881,-41.43037484086201],[174.86634866348663,-41.42024337724271],[174.86274862748627,-41.4118004908933],[174.87714877148773,-41.3915375636547],[174.87354873548736,-41.37634036822576],[174.869948699487,-41.35776601825705],[174.86634866348663,-41.33243735920881],[174.87354873548736,-41.31217443197022],[174.89514895148955,-41.27333715476291],[174.90234902349027,-41.24631991844479],[174.88794887948882,-41.22436841393632],[174.86274862748627,-41.21930268212667],[174.8339483394834,-41.22267983666644],[174.81234812348123,-41.22943414574596],[174.79794797947983,-41.23956560936526],[174.78714787147874,-41.24969707298456],[174.77634776347765,-41.26151711387374],[174.77274772747728,-41.278402886572565],[174.81954819548196,-41.28684577292198],[174.8339483394834,-41.296977236541274],[174.82674826748269,-41.318928741049746],[174.81954819548196,-41.32737162739916],[174.80874808748086,-41.33412593647869],[174.79794797947983,-41.33581451374857],[174.78714787147874,-41.32906020466904],[174.77634776347765,-41.32568305012928],[174.76554765547655,-41.33243735920881],[174.75474754747546,-41.342568822828106],[174.74034740347406,-41.34594597736787],[174.69354693546939,-41.33919166828834],[174.6467464674647,-41.32061731831963],[174.61074610746107,-41.29191150473162],[174.59994599946003,-41.256451382064085],[174.61074610746107,-41.237877032095376],[174.6287462874629,-41.22943414574596],[174.67554675546756,-41.22267983666644],[174.68994689946902,-41.212548373047134],[174.72954729547297,-41.175399673109716],[174.75474754747546,-41.15851390041089],[174.779947799478,-41.116299468663826],[174.79434794347947,-41.10616800504453],[174.8159481594816,-41.099413695965],[174.83034830348305,-41.08759365507582],[174.84114841148414,-41.08759365507582],[174.85194851948523,-41.112922314124056],[174.86634866348663,-41.10447942777464],[174.869948699487,-41.09603654142523],[174.869948699487,-41.08421650053605],[174.86634866348663,-41.072396459646875],[174.86274862748627,-41.069019305107105],[174.84834848348487,-41.05719926421793],[174.84114841148414,-41.04369064605887],[174.84834848348487,-41.03693633697934],[174.86274862748627,-41.033559182439575],[174.87714877148773,-41.01498483247086],[174.89154891548918,-41.011607677931096],[174.90234902349027,-41.00823052339133],[174.91674916749167,-41.0014762143118],[174.92754927549277,-40.991344750692505],[174.9347493474935,-40.98290186434309],[174.94194941949422,-40.971081823453915],[174.9455494554946,-40.96095035983461],[174.94914949149495,-40.93562170078638],[174.97074970749708,-40.890030114499545],[174.9779497794978,-40.8748329190706],[175.03915039150394,-40.825864178244],[175.09315093150934,-40.75494393290893],[175.13995139951402,-40.67389222395456],[175.16875168751687,-40.60634913315925],[175.17955179551797,-40.58946336046042],[175.1867518675187,-40.56920043322183],[175.19035190351906,-40.511788806045814],[175.1975519755198,-40.48983730153734],[175.1975519755198,-40.48477156972769],[175.1975519755198,-40.478017260648166],[175.1975519755198,-40.47126295156863],[175.20115201152015,-40.46957437429875],[175.20835208352082,-40.46957437429875],[175.21555215552155,-40.46788579702887],[175.22275222752228,-40.4645086424891],[175.21555215552155,-40.44931144706016],[175.2119521195212,-40.434114251631215],[175.2119521195212,-40.41891705620227],[175.2119521195212,-40.410474169852854],[175.22275222752228,-40.393588397154026],[175.23355233552337,-40.33617676997802],[175.23715237152373,-40.29565091550083],[175.23715237152373,-40.285519451881534],[175.229952299523,-40.27707656553212],[175.21555215552155,-40.25343648375377],[175.20115201152015,-40.18758197022834],[175.18315183151833,-40.13523607486198],[175.17235172351724,-40.108218838543856],[175.15435154351547,-40.084578756765495],[175.0787507875079,-40.023789975049716],[175.0571505715057,-39.99677273873159],[174.9671496714967,-39.915721029777224],[174.8987489874899,-39.88194948437957],[174.84114841148414,-39.86168655714098],[174.8159481594816,-39.858309402601215],[174.77274772747728,-39.858309402601215],[174.7367473674737,-39.859997979871096],[174.65394653946538,-39.836357898092736],[174.5927459274593,-39.83129216628309],[174.56754567545676,-39.82622643447344],[174.54234542345426,-39.814406393584264],[174.43794437944382,-39.73673183916966],[174.41634416344164,-39.71815748920095],[174.35874358743587,-39.647237243865874],[174.31914319143192,-39.613465698468225],[174.26874268742688,-39.591514193959746],[174.21474214742148,-39.57800557580069],[174.0455404554046,-39.55774264856209],[173.98793987939882,-39.54254545313315],[173.8511385113851,-39.46318232144866],[173.81513815138152,-39.43278793059077],[173.7827378273783,-39.39395065338347],[173.76473764737648,-39.34667048982676],[173.75753757537575,-39.301078903539924],[173.76473764737648,-39.25548731725309],[173.77913779137793,-39.20820715369637],[173.8079380793808,-39.16261556740954],[173.8511385113851,-39.133909753821534],[173.95553955539555,-39.098449631154],[174.2111421114211,-38.97349491318268],[174.2327423274233,-38.96842918137303],[174.3659436594366,-38.975183490452565],[174.41634416344164,-38.96336344956338],[174.45954459544595,-38.93803479051514],[174.57834578345785,-38.84009730886195],[174.5927459274593,-38.81814580435347],[174.60354603546034,-38.78268568168593],[174.61074610746107,-38.75904559990758],[174.61434614346143,-38.745536981748515],[174.61434614346143,-38.71514259089063],[174.6179461794618,-38.706699704541215],[174.6179461794618,-38.703322550001445],[174.63594635946362,-38.69994539546168],[174.6287462874629,-38.683059622762855],[174.63234632346325,-38.66786242733391],[174.63594635946362,-38.65266523190497],[174.63954639546398,-38.63577945920614],[174.64314643146434,-38.46354457767811],[174.65034650346507,-38.4247073004708],[174.68634686346866,-38.36222994148514],[174.7007470074701,-38.3267698188176],[174.70794707947078,-38.2879325416103],[174.71154711547115,-38.22883233716441],[174.72234722347224,-38.193372214496875],[174.72234722347224,-38.17310928725828],[174.71874718747188,-38.15453493728957],[174.71154711547115,-38.13764916459074],[174.70434704347042,-38.11907481462203],[174.71154711547115,-38.10556619646297],[174.7259472594726,-38.112320505542506],[174.74394743947443,-38.112320505542506],[174.7619476194762,-38.11063192827262],[174.779947799478,-38.10556619646297],[174.779947799478,-38.11569766008227],[174.78354783547837,-38.125829123701564],[174.7907479074791,-38.1325834327811],[174.79794797947983,-38.13933774186063],[174.8051480514805,-38.13933774186063],[174.8051480514805,-38.12414054643168],[174.81954819548196,-38.13427201005098],[174.8339483394834,-38.146092050940155],[174.84834848348487,-38.15453493728957],[174.86634866348663,-38.146092050940155],[174.8591485914859,-38.14102631913051],[174.83754837548378,-38.12414054643168],[174.86634866348663,-38.11738623735215],[174.89514895148955,-38.12076339189192],[174.9239492394924,-38.11907481462203],[174.94194941949422,-38.09712331011356],[174.9239492394924,-38.09712331011356],[174.91674916749167,-38.09881188738344],[174.90954909549095,-38.10556619646297],[174.90234902349027,-38.09712331011356],[174.90234902349027,-38.07686038287497],[174.88434884348845,-38.063351764715904],[174.85554855548554,-38.05659745563637],[174.83754837548378,-38.05997461017614],[174.82674826748269,-38.07179465106532],[174.82314823148232,-38.08192611468461],[174.81954819548196,-38.088680423764146],[174.8015480154802,-38.09036900103403],[174.7907479074791,-38.08530326922438],[174.7907479074791,-38.070106073795436],[174.79434794347947,-38.05490887836649],[174.79794797947983,-38.04308883747731],[174.80874808748086,-38.03295737385802],[174.8159481594816,-38.02958021931825],[174.82674826748269,-38.02789164204837],[174.83754837548378,-38.02282591023872],[174.869948699487,-37.9958086739206],[174.88794887948882,-37.9856772103013],[174.88794887948882,-37.96710286033259],[174.87714877148773,-37.95021708763377],[174.85194851948523,-37.94852851036388],[174.83754837548378,-37.96541428306271],[174.82674826748269,-37.98905436484107],[174.8159481594816,-38.000874405730244],[174.78714787147874,-37.9856772103013],[174.78354783547837,-37.96710286033259],[174.7907479074791,-37.87254253321916],[174.81954819548196,-37.82526236966245],[174.86634866348663,-37.81175375150338],[174.9239492394924,-37.8100651742335],[174.9779497794978,-37.80331086515397],[174.97434974349744,-37.794867978804554],[174.9671496714967,-37.78980224699491],[174.95994959949599,-37.78473651518526],[174.94914949149495,-37.78304793791538],[174.96354963549635,-37.77460505156596],[174.97434974349744,-37.76278501067679],[174.9779497794978,-37.74927639251772],[174.97074970749708,-37.734079197088775],[174.92754927549277,-37.756030701597254],[174.9239492394924,-37.75940785613702],[174.92034920349204,-37.7712278970262],[174.9131491314913,-37.776293628835845],[174.90954909549095,-37.77460505156596],[174.90594905949058,-37.7712278970262],[174.8987489874899,-37.76953931975631],[174.86634866348663,-37.781359360645496],[174.85194851948523,-37.76447358794667],[174.78714787147874,-37.56859862464027],[174.72954729547297,-37.45715252482802],[174.71874718747188,-37.411560938541186],[174.71874718747188,-37.40142947492188],[174.7259472594726,-37.38960943403271],[174.7367473674737,-37.382855124953174],[174.76914769147692,-37.37778939314353],[174.779947799478,-37.371035084064],[174.7907479074791,-37.35246073409529],[174.79794797947983,-37.330509229586816],[174.81234812348123,-37.31024630234822],[174.83754837548378,-37.30349199326869],[174.83754837548378,-37.29842626145904],[174.8339483394834,-37.29167195237951],[174.82314823148232,-37.28829479783975],[174.80874808748086,-37.29336052964939],[174.79794797947983,-37.30011483872892],[174.779947799478,-37.31024630234822],[174.77274772747728,-37.31700061142775],[174.74394743947443,-37.35752646590494],[174.72954729547297,-37.362592197714584],[174.70794707947078,-37.34739500228564],[174.68994689946902,-37.32882065231693],[174.65034650346507,-37.25283467517221],[174.63954639546398,-37.220751707044435],[174.6179461794618,-37.1852915843769],[174.61434614346143,-37.17684869802749],[174.6071460714607,-37.15489719351901],[174.5639456394564,-37.09073125726347],[174.55674556745566,-37.062025443675466],[174.57474574745748,-37.062025443675466],[174.60354603546034,-37.06709117548511],[174.64314643146434,-37.056959711865815],[174.65754657546574,-37.060336866405585],[174.66834668346684,-37.06877975275499],[174.66474664746647,-37.080599793644176],[174.65394653946538,-37.09073125726347],[174.65394653946538,-37.097485566343],[174.70434704347042,-37.17684869802749],[174.70794707947078,-37.20893166615526],[174.72234722347224,-37.23257174793362],[174.74034740347406,-37.244391788822796],[174.75114751147515,-37.220751707044435],[174.7367473674737,-37.1954230479962],[174.7367473674737,-37.180225852567254],[174.7475474754748,-37.17178296621784],[174.77634776347765,-37.17684869802749],[174.7907479074791,-37.1751601207576],[174.8051480514805,-37.16671723440819],[174.78354783547837,-37.16671723440819],[174.73314733147333,-37.159962925328664],[174.7151471514715,-37.15320861624913],[174.73314733147333,-37.1464543071696],[174.78714787147874,-37.10930560723218],[174.79434794347947,-37.11099418450206],[174.7907479074791,-37.13294568901054],[174.8339483394834,-37.09241983453335],[174.85554855548554,-37.078911216374294],[174.8807488074881,-37.075534061834524],[174.92034920349204,-37.11099418450206],[174.93114931149313,-37.117748493581594],[174.9455494554946,-37.11268276177194],[174.94914949149495,-37.10255129815265],[174.94194941949422,-37.08735410272371],[174.9347493474935,-37.075534061834524],[174.93834938349386,-37.06540259821523],[174.88434884348845,-37.0485168255164],[174.86634866348663,-37.036696784627225],[174.85194851948523,-37.04007393916699],[174.84114841148414,-37.02825389827781],[174.8339483394834,-37.00799097103922],[174.82674826748269,-36.994482352880155],[174.8015480154802,-37.018122434658515],[174.78714787147874,-37.00799097103922],[174.78354783547837,-36.98603946653074],[174.79434794347947,-36.974219425641564],[174.8051480514805,-36.9708422711018],[174.81954819548196,-36.96408796202227],[174.83034830348305,-36.953956498402974],[174.8339483394834,-36.94213645751379],[174.76914769147692,-36.933693571164376],[174.7007470074701,-36.937070725704146],[174.66834668346684,-36.94382503478368],[174.63954639546398,-36.9607108074825],[174.63234632346325,-36.97253084837168],[174.62514625146252,-36.996170930150036],[174.62154621546216,-37.00799097103922],[174.61074610746107,-37.018122434658515],[174.60354603546034,-37.018122434658515],[174.57834578345785,-37.00123666195969],[174.5639456394564,-37.018122434658515],[174.54234542345426,-37.03331963008746],[174.52074520745208,-37.04007393916699],[174.49914499144995,-37.03163105281757],[174.48834488344886,-37.014745280118746],[174.4487444874449,-36.89992202576673],[174.42714427144273,-36.807050275923174],[174.4091440914409,-36.76145868963634],[174.3551435514355,-36.685472712491624],[174.21834218342184,-36.54532079909136],[174.18954189541898,-36.499729212804525],[174.18234182341826,-36.45244904924781],[174.18594185941862,-36.442317585628516],[174.18954189541898,-36.43218612200922],[174.1967419674197,-36.42712039019957],[174.2111421114211,-36.42543181292969],[174.20034200342002,-36.45244904924781],[174.1967419674197,-36.46595766740687],[174.20394203942038,-36.481154862835815],[174.21834218342184,-36.45413762651769],[174.22914229142293,-36.4440061628984],[174.2435424354244,-36.438940431088746],[174.2579425794258,-36.44738331743816],[174.27234272342724,-36.479466285565934],[174.29394293942943,-36.49466348099488],[174.31554315543156,-36.52843502639253],[174.329943299433,-36.53518933547206],[174.34434344343447,-36.54025506728171],[174.3551435514355,-36.54869795363113],[174.3551435514355,-36.5605179945203],[174.3407434074341,-36.56896088086972],[174.38034380343805,-36.582469499028775],[174.39114391143914,-36.584158076298664],[174.39114391143914,-36.585846653568545],[174.38034380343805,-36.59091238537819],[174.3659436594366,-36.59597811718784],[174.35154351543514,-36.59766669445772],[174.36234362343623,-36.60273242626737],[174.3659436594366,-36.61117531261679],[174.3659436594366,-36.62130677623608],[174.35874358743587,-36.63143823985538],[174.37314373143732,-36.63143823985538],[174.38034380343805,-36.63481539439514],[174.40194401944018,-36.644946858014436],[174.40194401944018,-36.63819254893491],[174.40194401944018,-36.624683930775845],[174.40194401944018,-36.61792962169631],[174.41274412744127,-36.63143823985538],[174.419944199442,-36.65507832163373],[174.4307443074431,-36.66520978525303],[174.44154441544418,-36.644946858014436],[174.45234452344522,-36.646635435284324],[174.45594455944558,-36.63481539439514],[174.45954459544595,-36.6196181989662],[174.4631446314463,-36.604421003537254],[174.47034470344704,-36.59766669445772],[174.4847448474485,-36.585846653568545],[174.49194491944922,-36.57740376721913],[174.4739447394474,-36.580780921758894],[174.47034470344704,-36.584158076298664],[174.45954459544595,-36.563895149060066],[174.47034470344704,-36.519992140043115],[174.4631446314463,-36.50817209915394],[174.45234452344522,-36.523369294582885],[174.4487444874449,-36.51492640823347],[174.4487444874449,-36.462580512867106],[174.4487444874449,-36.45920335832734],[174.45234452344522,-36.45413762651769],[174.47034470344704,-36.438940431088746],[174.4631446314463,-36.42880896746945],[174.4487444874449,-36.416988926580274],[174.44154441544418,-36.40685746296098],[174.44514445144455,-36.3950374220718],[174.46674466744668,-36.379840226642855],[174.46674466744668,-36.37308591756332],[174.43434434344346,-36.357888722134376],[174.42714427144273,-36.357888722134376],[174.41274412744127,-36.374774494833204],[174.39834398343987,-36.3849059584525],[174.39114391143914,-36.38828311299227],[174.329943299433,-36.39334884480191],[174.3011430114301,-36.38659453572239],[174.2759427594276,-36.36970876302356],[174.27234272342724,-36.337625794895786],[174.28314283142834,-36.34438010397532],[174.29394293942943,-36.32074002219696],[174.30474304743046,-36.317362867657195],[174.31554315543156,-36.32580575400661],[174.33354333543338,-36.33087148581625],[174.3767437674377,-36.32749433127649],[174.3947439474395,-36.32242859946684],[174.41274412744127,-36.31398571311743],[174.42714427144273,-36.30047709495837],[174.44154441544418,-36.293722785878835],[174.47034470344704,-36.28190274498966],[174.4955449554496,-36.26163981775107],[174.50634506345062,-36.2582626632113],[174.51354513545135,-36.2582626632113],[174.52074520745208,-36.254885508671535],[174.52434524345244,-36.24137689051247],[174.52074520745208,-36.236311158702826],[174.51714517145172,-36.236311158702826],[174.51354513545135,-36.234622581432944],[174.509945099451,-36.22786827235341],[174.49914499144995,-36.236311158702826],[174.48834488344886,-36.24306546778236],[174.4739447394474,-36.24644262232212],[174.47034470344704,-36.24644262232212],[174.45954459544595,-36.248131199592],[174.4487444874449,-36.25150835413177],[174.42714427144273,-36.27008270410048],[174.41634416344164,-36.275148435910125],[174.40554405544054,-36.26332839502095],[174.39114391143914,-36.273459858640244],[174.36954369543696,-36.28865705406919],[174.35154351543514,-36.295411363148716],[174.32634326343265,-36.29203420860895],[174.3119431194312,-36.28696847679931],[174.30474304743046,-36.28190274498966],[174.3011430114301,-36.26501697229083],[174.30834308343083,-36.259951240481186],[174.3407434074341,-36.26839412683059],[174.3551435514355,-36.28021416771978],[174.36234362343623,-36.28190274498966],[174.36954369543696,-36.256574085941416],[174.38394383943842,-36.22449111781365],[174.4091440914409,-36.19916245876541],[174.41274412744127,-36.18903099514611],[174.41634416344164,-36.18227668606658],[174.41634416344164,-36.173833799717166],[174.419944199442,-36.15863660428822],[174.43794437944382,-36.16539091336775],[174.4487444874449,-36.16370233609787],[174.45234452344522,-36.153570872478575],[174.44154441544418,-36.13837367704963],[174.4307443074431,-36.13330794523998],[174.3947439474395,-36.12486505889056],[174.39834398343987,-36.155259449748456],[174.38394383943842,-36.18903099514611],[174.36234362343623,-36.216048231464235],[174.33354333543338,-36.22786827235341],[174.34794347943483,-36.210982499654584],[174.35154351543514,-36.20760534511482],[174.3407434074341,-36.20422819057505],[174.329943299433,-36.20591676784494],[174.32274322743228,-36.20591676784494],[174.31914319143192,-36.19578530422564],[174.31554315543156,-36.1805881087967],[174.30834308343083,-36.17721095425693],[174.3011430114301,-36.1805881087967],[174.29394293942943,-36.17889953152682],[174.27954279542797,-36.17552237698705],[174.2759427594276,-36.17552237698705],[174.27234272342724,-36.172145222447284],[174.27234272342724,-36.15863660428822],[174.27234272342724,-36.148505140668924],[174.2759427594276,-36.13668509977975],[174.28314283142834,-36.11811074981104],[174.26874268742688,-36.11811074981104],[174.2579425794258,-36.12486505889056],[174.23634236342366,-36.14512798612916],[174.23994239942402,-36.11811074981104],[174.22554225542257,-36.11642217254116],[174.18234182341826,-36.14512798612916],[174.19314193141935,-36.153570872478575],[174.19314193141935,-36.17552237698705],[174.20754207542075,-36.17889953152682],[174.22554225542257,-36.17889953152682],[174.23634236342366,-36.1805881087967],[174.24714247142475,-36.18734241787622],[174.2579425794258,-36.19916245876541],[174.25074250742506,-36.21435965419435],[174.25074250742506,-36.22449111781365],[174.26154261542615,-36.22786827235341],[174.26874268742688,-36.22617969508353],[174.27234272342724,-36.22111396327388],[174.27954279542797,-36.210982499654584],[174.29034290342906,-36.210982499654584],[174.3011430114301,-36.219425386004],[174.31914319143192,-36.24137689051247],[174.28314283142834,-36.249819776861884],[174.2759427594276,-36.25150835413177],[174.2759427594276,-36.26163981775107],[174.26874268742688,-36.26670554956071],[174.26154261542615,-36.26839412683059],[174.25074250742506,-36.26839412683059],[174.2435424354244,-36.26501697229083],[174.22914229142293,-36.25150835413177],[174.21834218342184,-36.248131199592],[174.20754207542075,-36.24644262232212],[174.20394203942038,-36.24306546778236],[174.1787417874179,-36.21435965419435],[174.1679416794168,-36.19916245876541],[174.1571415714157,-36.18565384060634],[174.1427414274143,-36.172145222447284],[174.12114121141212,-36.168768067907514],[174.07434074340745,-36.168768067907514],[174.06714067140672,-36.16201375882799],[174.059940599406,-36.15188229520869],[174.0455404554046,-36.14006225431951],[174.02754027540277,-36.12824221343033],[174.01314013140131,-36.12486505889056],[173.99873998739986,-36.11642217254116],[173.9915399153992,-36.09784782257244],[173.9915399153992,-36.05901054536514],[173.98433984339846,-36.043813349936194],[173.95553955539555,-36.02017326815784],[173.9447394473945,-35.98977887729995],[173.93033930339305,-35.97795883641077],[173.90153901539014,-35.95938448644206],[173.93753937539378,-35.93236725012394],[173.94833948339482,-35.91717005469499],[173.94113941139415,-35.89184139564676],[173.93753937539378,-35.885087086567225],[173.9267392673927,-35.87664420021781],[173.9159391593916,-35.86988989113828],[173.90873908739087,-35.86988989113828],[173.9051390513905,-35.88339850929734],[173.91233912339123,-35.89352997291664],[173.92313923139233,-35.90028428199617],[173.9267392673927,-35.905350013805815],[173.92313923139233,-35.927301518314295],[173.88353883538838,-35.944187291013115],[173.87993879938801,-35.95938448644206],[173.93033930339305,-36.01848469088796],[173.93753937539378,-36.028616154507255],[173.9591395913959,-36.03874761812655],[173.96633966339664,-36.06238769990491],[173.97353973539737,-36.087716358953145],[173.9807398073981,-36.106290708921854],[173.98793987939882,-36.11642217254116],[173.99873998739986,-36.13837367704963],[174.0059400594006,-36.148505140668924],[174.01674016740168,-36.153570872478575],[174.03114031140314,-36.15863660428822],[174.04194041940423,-36.16539091336775],[174.0491404914049,-36.18396526333646],[174.059940599406,-36.192408149685875],[174.06714067140672,-36.197473881495526],[174.0779407794078,-36.20422819057505],[174.13194131941322,-36.27177128137036],[174.1427414274143,-36.278525590449895],[174.16074160741607,-36.27683701318001],[174.17514175141753,-36.27683701318001],[174.18234182341826,-36.28865705406919],[174.16074160741607,-36.297099940418605],[174.17154171541716,-36.30891998130778],[174.19314193141935,-36.32580575400661],[174.20394203942038,-36.34775725851508],[174.19314193141935,-36.36802018575368],[174.17514175141753,-36.38152880391274],[174.12834128341285,-36.398414576611565],[174.08154081540818,-36.400103153881446],[174.05634056340563,-36.36464303121391],[174.0239402394024,-36.26839412683059],[173.89433894338947,-36.12486505889056],[173.85833858338583,-36.06576485444467],[173.63153631536318,-35.819232573041795],[173.40833408334083,-35.57101171436904],[173.4011340113401,-35.55243736440033],[173.40833408334083,-35.535551591701505],[173.4407344073441,-35.50009146903397],[173.44793447934478,-35.48320569633514],[173.45153451534514,-35.46125419182667],[173.45873458734587,-35.43761411004831],[173.46953469534697,-35.42410549188925],[173.49113491134915,-35.43254837823866],[173.4947349473495,-35.42241691461936],[173.49833498334982,-35.4190397600796],[173.50553505535055,-35.42748264642901],[173.51633516335164,-35.43930268731819],[173.52713527135273,-35.4477455736676],[173.5415354153542,-35.452811305477255],[173.54513545135455,-35.44605699639772],[173.5415354153542,-35.410596873730185],[173.54513545135455,-35.39708825557113],[173.57033570335705,-35.43254837823866],[173.57753577535777,-35.415662605539836],[173.57753577535777,-35.39539967830124],[173.58113581135814,-35.37682532833253],[173.5991359913599,-35.36331671017347],[173.609936099361,-35.36331671017347],[173.61353613536136,-35.368382441983115],[173.62073620736209,-35.370071019253004],[173.63513635136354,-35.36331671017347],[173.6387363873639,-35.35656240109394],[173.64593645936463,-35.33629947385535],[173.66033660336603,-35.31265939207699],[173.62433624336245,-35.32279085569628],[173.61353613536136,-35.31941370115652],[173.61353613536136,-35.307593660267344],[173.61353613536136,-35.29915077391793],[173.60633606336063,-35.29577361937816],[173.5955359553596,-35.29408504210828],[173.59193591935923,-35.30083935118781],[173.59193591935923,-35.33629947385535],[173.58113581135814,-35.3211022784264],[173.56673566735668,-35.27382211486969],[173.54873548735486,-35.289019310298634],[173.55233552335523,-35.307593660267344],[173.56313563135632,-35.32616801023605],[173.57033570335705,-35.34305378293488],[173.56673566735668,-35.3599395556337],[173.54873548735486,-35.370071019253004],[173.5307353073531,-35.368382441983115],[173.50553505535055,-35.35487382382406],[173.4947349473495,-35.35487382382406],[173.49113491134915,-35.35825097836382],[173.49833498334982,-35.37851390560241],[173.49113491134915,-35.38189106014218],[173.48033480334806,-35.38526821468194],[173.47313473134733,-35.386956791951825],[173.46233462334624,-35.392022523761476],[173.45873458734587,-35.38864536922171],[173.44433444334447,-35.37344817379277],[173.43713437134375,-35.37344817379277],[173.42633426334265,-35.37851390560241],[173.40833408334083,-35.392022523761476],[173.41553415534156,-35.405531141920534],[173.40833408334083,-35.412285451000066],[173.39753397533974,-35.41735118280972],[173.3867338673387,-35.42579406915913],[173.3867338673387,-35.430859800968776],[173.39033390333907,-35.43592553277843],[173.39393393933943,-35.43930268731819],[173.39033390333907,-35.513600087193026],[173.3867338673387,-35.52204297354244],[173.37953379533798,-35.52373155081233],[173.36873368733688,-35.516977241732796],[173.28593285932862,-35.4190397600796],[173.27153271532717,-35.392022523761476],[173.2787327873279,-35.37513675106265],[173.31113311133112,-35.34305378293488],[173.3039330393304,-35.34305378293488],[173.289532895329,-35.34305378293488],[173.28593285932862,-35.34305378293488],[173.3039330393304,-35.324479432966164],[173.31113311133112,-35.31434796934687],[173.31833318333184,-35.30252792845769],[173.289532895329,-35.305905082997455],[173.2679326793268,-35.32279085569628],[173.2571325713257,-35.34474236020476],[173.24993249932498,-35.370071019253004],[173.23913239132395,-35.36331671017347],[173.20673206732067,-35.33292231931558],[173.2031320313203,-35.32279085569628],[173.21033210332104,-35.31434796934687],[173.24633246332462,-35.2923964648384],[173.2571325713257,-35.28057642394922],[173.2427324273243,-35.27719926940945],[173.2139321393214,-35.290707887568516],[173.19593195931958,-35.29408504210828],[173.17793177931782,-35.290707887568516],[173.16353163531636,-35.28057642394922],[173.14193141931423,-35.25524776490098],[173.09873098730986,-35.21978764223344],[173.0915309153092,-35.20627902407438],[173.0951309513095,-35.18770467410567],[173.10953109531096,-35.180950365026135],[173.12753127531278,-35.186016096835786],[173.14553145531454,-35.19277040591532],[173.17793177931782,-35.1556217059779],[173.19953199531994,-35.10834154242118],[173.2031320313203,-35.0576842243247],[173.1887318873189,-35.00702690622822],[173.15633156331563,-34.94454954724256],[173.14193141931423,-34.92766377454373],[173.08433084330846,-34.878695033717136],[173.06633066330664,-34.85674352920866],[173.03393033930342,-34.790889015683234],[173.01953019530197,-34.78075755206394],[173.00153001530015,-34.774003242984406],[172.79992799928,-34.55111104335989],[172.76032760327604,-34.522405229771884],[172.67392673926742,-34.48019079802482],[172.6847268472685,-34.47174791167541],[172.69192691926918,-34.464993602595875],[172.70272702727027,-34.446419252627166],[172.6991269912699,-34.43797636627775],[172.6991269912699,-34.421090593578924],[172.70272702727027,-34.41095912995963],[172.7207272072721,-34.421090593578924],[172.74232742327422,-34.43122205719822],[172.79992799928,-34.4329106344681],[172.82512825128254,-34.446419252627166],[172.839528395284,-34.43459921173798],[172.86832868328685,-34.42953347992834],[172.90072900729007,-34.41264770722951],[173.01233012330124,-34.421090593578924],[173.03033030330306,-34.41771343903916],[173.04113041130415,-34.40927055268975],[173.0519305193052,-34.400827666340334],[173.06273062730628,-34.397450511800564],[173.0807308073081,-34.41095912995963],[173.0519305193052,-34.426156325388575],[173.04113041130415,-34.446419252627166],[173.04473044730446,-34.50045372526341],[173.04113041130415,-34.51396234342247],[173.0375303753038,-34.522405229771884],[173.03033030330306,-34.525782384311654],[173.01233012330124,-34.527470961581535],[173.00873008730088,-34.522405229771884],[173.0051300513005,-34.51058518888271],[172.99792997929978,-34.49876514799353],[172.98352983529838,-34.49369941618388],[172.98352983529838,-34.48863368437423],[172.98712987129875,-34.47681364348505],[172.9907299072991,-34.47174791167541],[172.96912969129693,-34.46668217986576],[172.9619296192962,-34.46837075713564],[172.95472954729547,-34.49369941618388],[172.9511295112951,-34.51565092069235],[172.94392943929438,-34.522405229771884],[172.92952929529298,-34.51396234342247],[172.92592925929262,-34.524093807041766],[172.92232922329225,-34.5308481161213],[172.91512915129152,-34.53760242520083],[172.9079290792908,-34.54097957974059],[172.9187291872919,-34.55111104335989],[172.94752947529474,-34.5696853933286],[172.9511295112951,-34.5595539297093],[172.95832958329584,-34.54942246609001],[172.96552965529656,-34.542668157010475],[172.97632976329766,-34.54097957974059],[172.96912969129693,-34.55617677516954],[172.96552965529656,-34.56293108424907],[172.9619296192962,-34.5696853933286],[172.9727297272973,-34.57643970240813],[172.98352983529838,-34.57643970240813],[172.9907299072991,-34.571373970598486],[172.99792997929978,-34.56124250697919],[173.00153001530015,-34.57306254786837],[173.0051300513005,-34.586571166027426],[173.0051300513005,-34.64398279320344],[173.00873008730088,-34.650737102282974],[173.0159301593016,-34.64398279320344],[173.03033030330306,-34.62034271142508],[173.03033030330306,-34.59163689783708],[173.0267302673027,-34.56293108424907],[173.00873008730088,-34.54097957974059],[173.0375303753038,-34.55279962062978],[173.0519305193052,-34.60176836145637],[173.05913059130592,-34.65917998863238],[173.07353073530737,-34.69970584310957],[173.1059310593106,-34.730100233967455],[173.14553145531454,-34.76049462482535],[173.17793177931782,-34.794266170223],[173.1887318873189,-34.834792024700185],[173.13833138331387,-34.78751186114347],[173.12033120331205,-34.774003242984406],[173.1239312393124,-34.80946336565194],[173.16353163531636,-34.84492348831948],[173.29673296732966,-34.90908942457502],[173.29673296732966,-34.920909465464206],[173.27513275132753,-34.94286096997268],[173.2679326793268,-34.95130385632209],[173.26433264332644,-34.96143531994139],[173.26433264332644,-35.001961174418575],[173.2679326793268,-35.00702690622822],[173.27153271532717,-35.00702690622822],[173.28593285932862,-35.00702690622822],[173.31833318333184,-35.01546979257763],[173.32553325533257,-35.01546979257763],[173.3327333273333,-35.00533832895834],[173.33633336333367,-34.99351828806916],[173.33993339933403,-34.983386824449866],[173.35433354333543,-34.980009669910096],[173.36873368733688,-34.96650105175104],[173.36513365133652,-34.939483815432915],[173.35073350733506,-34.89051507460631],[173.3579335793358,-34.86856357009784],[173.3759337593376,-34.86180926101831],[173.4011340113401,-34.858432106478546],[173.42633426334265,-34.84661206558936],[173.42993429934302,-34.833103447430304],[173.42993429934302,-34.82128340654112],[173.42633426334265,-34.811151942921825],[173.42633426334265,-34.80608621111218],[173.43713437134375,-34.795954747492885],[173.44433444334447,-34.795954747492885],[173.45153451534514,-34.80270905657241],[173.4551345513455,-34.816217674731476],[173.4551345513455,-34.82466056108089],[173.4551345513455,-34.833103447430304],[173.44793447934478,-34.84998922012913],[173.48033480334806,-34.83816917923995],[173.49113491134915,-34.834792024700185],[173.48393483934842,-34.84661206558936],[173.48753487534879,-34.853366374668894],[173.50193501935019,-34.87025214736772],[173.46233462334624,-34.88376076552678],[173.41913419134193,-34.88376076552678],[173.4119341193412,-34.88713792006655],[173.40473404734047,-34.90402369276538],[173.40833408334083,-34.92259804273409],[173.41913419134193,-34.939483815432915],[173.42993429934302,-34.95299243359197],[173.4407344073441,-34.96818962902092],[173.45873458734587,-34.98169824717998],[173.4767347673477,-34.99014113352939],[173.50193501935019,-34.99351828806916],[173.54873548735486,-34.98845255625951],[173.56673566735668,-34.99520686533904],[173.5847358473585,-35.01546979257763],[173.5991359913599,-34.998584019878805],[173.5991359913599,-34.99351828806916],[173.58833588335887,-34.983386824449866],[173.57753577535777,-34.973255360830564],[173.56673566735668,-34.96143531994139],[173.56673566735668,-34.94623812451244],[173.5739357393574,-34.92766377454373],[173.58833588335887,-34.92766377454373],[173.60273602736027,-34.93779523816303],[173.61353613536136,-34.95299243359197],[173.62433624336245,-34.94286096997268],[173.6387363873639,-34.941172392702796],[173.64953649536494,-34.94623812451244],[173.66033660336603,-34.96818962902092],[173.6747367473675,-34.973255360830564],[173.70353703537035,-34.973255360830564],[173.7071370713707,-34.97156678356068],[173.71073710737107,-34.96650105175104],[173.71433714337144,-34.96143531994139],[173.72153721537217,-34.959746742671506],[173.73233732337326,-34.96143531994139],[173.73593735937362,-34.96818962902092],[173.73233732337326,-34.973255360830564],[173.73593735937362,-34.980009669910096],[173.74313743137435,-34.98676397898963],[173.74313743137435,-34.99351828806916],[173.74673746737471,-34.998584019878805],[173.75753757537575,-35.00027259714869],[173.76473764737648,-35.001961174418575],[173.7719377193772,-35.00364975168846],[173.7827378273783,-35.00702690622822],[173.7719377193772,-35.01378121530775],[173.76473764737648,-35.022224101657166],[173.7611376113761,-35.03235556527646],[173.75753757537575,-35.042487028895756],[173.73593735937362,-35.05599564705482],[173.72513725137253,-35.064438533404235],[173.72513725137253,-35.07288141975364],[173.7611376113761,-35.096521501532],[173.7827378273783,-35.09483292426212],[173.78633786337866,-35.09145576972236],[173.7827378273783,-35.084701460642826],[173.7827378273783,-35.07625857429341],[173.80433804338043,-35.042487028895756],[173.80433804338043,-35.035732719816224],[173.80433804338043,-35.020535524387284],[173.80433804338043,-35.01546979257763],[173.81153811538115,-35.01040406076799],[173.82953829538297,-35.00702690622822],[173.8475384753848,-35.00027259714869],[173.8619386193862,-34.998584019878805],[173.8907389073891,-35.00027259714869],[173.88713887138874,-35.00533832895834],[173.89793897938978,-35.017158369847515],[173.91233912339123,-35.03404414254634],[173.95553955539555,-35.059372801594584],[173.969939699397,-35.07625857429341],[173.97713977139773,-35.099898656071765],[173.9915399153992,-35.11847300604048],[174.02034020340204,-35.123538737850126],[174.0779407794078,-35.11678442877059],[174.1031410314103,-35.121850160580244],[174.12834128341285,-35.13704735600919],[174.14634146341467,-35.15731028324778],[174.15354153541534,-35.18263894229602],[174.1139411394114,-35.19277040591532],[174.1031410314103,-35.18939325137555],[174.09954099540994,-35.180950365026135],[174.09954099540994,-35.16913032413696],[174.09234092340927,-35.15899886051766],[174.0887408874089,-35.160687437787544],[174.08154081540818,-35.165753169597195],[174.07074070740708,-35.165753169597195],[174.05634056340563,-35.15224455143813],[174.0347403474035,-35.162376015057426],[174.0239402394024,-35.16913032413696],[174.0347403474035,-35.17588463321649],[174.05274052740526,-35.19952471499485],[174.01674016740168,-35.202901869534614],[174.01674016740168,-35.21641048769367],[174.03114031140314,-35.226541951312974],[174.05274052740526,-35.21978764223344],[174.06354063540635,-35.226541951312974],[174.07074070740708,-35.228230528582856],[174.08514085140854,-35.226541951312974],[174.09234092340927,-35.21978764223344],[174.10674106741067,-35.23498483766238],[174.1031410314103,-35.248493455821446],[174.09594095940963,-35.26200207398051],[174.09234092340927,-35.27382211486969],[174.09954099540994,-35.287330733028746],[174.13914139141394,-35.31941370115652],[174.1427414274143,-35.327856587505934],[174.14634146341467,-35.33967662839511],[174.14994149941498,-35.366693864713234],[174.14994149941498,-35.370071019253004],[174.1571415714157,-35.35825097836382],[174.16434164341644,-35.34305378293488],[174.1679416794168,-35.329545164775816],[174.18954189541898,-35.33798805112523],[174.1967419674197,-35.34136520566499],[174.2111421114211,-35.34305378293488],[174.20754207542075,-35.33798805112523],[174.20394203942038,-35.327856587505934],[174.20394203942038,-35.32279085569628],[174.21834218342184,-35.32279085569628],[174.22554225542257,-35.327856587505934],[174.2327423274233,-35.33292231931558],[174.23994239942402,-35.33629947385535],[174.25074250742506,-35.33292231931558],[174.25074250742506,-35.32279085569628],[174.24714247142475,-35.31265939207699],[174.23994239942402,-35.309282237537225],[174.21834218342184,-35.305905082997455],[174.18954189541898,-35.30083935118781],[174.16434164341644,-35.290707887568516],[174.15354153541534,-35.27382211486969],[174.16074160741607,-35.28057642394922],[174.17514175141753,-35.27044496032992],[174.20034200342002,-35.26875638306004],[174.25074250742506,-35.27382211486969],[174.24714247142475,-35.26369065125039],[174.2435424354244,-35.26031349671062],[174.25434254342542,-35.26031349671062],[174.26514265142652,-35.26200207398051],[174.2759427594276,-35.26369065125039],[174.2759427594276,-35.267067805790155],[174.2867428674287,-35.26200207398051],[174.29034290342906,-35.25862491944074],[174.29034290342906,-35.2535591876311],[174.29394293942943,-35.24511630128168],[174.32274322743228,-35.21978764223344],[174.35154351543514,-35.19952471499485],[174.36234362343623,-35.224853374043086],[174.35154351543514,-35.24511630128168],[174.33714337143374,-35.265379228520274],[174.33354333543338,-35.287330733028746],[174.3407434074341,-35.310970814807106],[174.35874358743587,-35.32279085569628],[174.38034380343805,-35.324479432966164],[174.40194401944018,-35.32279085569628],[174.40194401944018,-35.329545164775816],[174.39114391143914,-35.34305378293488],[174.42354423544236,-35.37344817379277],[174.4091440914409,-35.38357963741206],[174.40194401944018,-35.38189106014218],[174.37314373143732,-35.35656240109394],[174.3407434074341,-35.33629947385535],[174.33354333543338,-35.329545164775816],[174.34794347943483,-35.35149666928429],[174.38754387543878,-35.4190397600796],[174.4091440914409,-35.43254837823866],[174.42714427144273,-35.434236955508545],[174.4487444874449,-35.43930268731819],[174.4487444874449,-35.43761411004831],[174.4487444874449,-35.434236955508545],[174.45234452344522,-35.43254837823866],[174.45594455944558,-35.43254837823866],[174.45954459544595,-35.43592553277843],[174.4631446314463,-35.44436841912784],[174.46674466744668,-35.44605699639772],[174.4739447394474,-35.454499882747136],[174.49914499144995,-35.48827142814479],[174.50274502745026,-35.50178004630385],[174.4631446314463,-35.50515720084362],[174.47034470344704,-35.516977241732796],[174.52074520745208,-35.55243736440033],[174.57114571145712,-35.5946517961474],[174.57834578345785,-35.618291877925756],[174.5639456394564,-35.65206342332341],[174.549545495455,-35.64530911424388],[174.50634506345062,-35.63855480516435],[174.48834488344886,-35.63855480516435],[174.47754477544777,-35.643620536974],[174.49194491944922,-35.655440577863175],[174.53154531545317,-35.672326350562],[174.52434524345244,-35.672326350562],[174.509945099451,-35.679080659641535],[174.53514535145354,-35.68414639145118],[174.54594545945463,-35.68752354599095],[174.5531455314553,-35.69596643234036],[174.549545495455,-35.70609789595966],[174.5387453874539,-35.71454078230907],[174.5279452794528,-35.717917936848835],[174.51714517145172,-35.721295091388605],[174.57474574745748,-35.75000090497661],[174.58554585545858,-35.761820945865786],[174.58554585545858,-35.77364098675496],[174.5819458194582,-35.79728106853332],[174.5819458194582,-35.80572395488274],[174.6071460714607,-35.842872654820155],[174.57834578345785,-35.84962696389969],[174.56034560345603,-35.83949550028039],[174.5387453874539,-35.822609727581565],[174.51714517145172,-35.81078968669239],[174.52434524345244,-35.79221533672367],[174.4955449554496,-35.783772450374265],[174.4955449554496,-35.76857525494532],[174.48114481144813,-35.7702638322152],[174.45594455944558,-35.778706718564614],[174.44154441544418,-35.782083873104376],[174.43434434344346,-35.780395295834495],[174.42354423544236,-35.7702638322152],[174.41634416344164,-35.76857525494532],[174.41274412744127,-35.77195240948508],[174.40554405544054,-35.785461027644146],[174.40194401944018,-35.78883818218391],[174.38394383943842,-35.78883818218391],[174.38394383943842,-35.78714960491403],[174.38754387543878,-35.778706718564614],[174.38754387543878,-35.761820945865786],[174.38394383943842,-35.74662375043684],[174.38034380343805,-35.73480370954766],[174.36954369543696,-35.722983668658486],[174.35874358743587,-35.71285220503919],[174.3551435514355,-35.73480370954766],[174.35874358743587,-35.78883818218391],[174.3551435514355,-35.80572395488274],[174.35154351543514,-35.81585541850203],[174.35154351543514,-35.8293640366611],[174.35154351543514,-35.841184077550274],[174.35874358743587,-35.84962696389969],[174.3767437674377,-35.85131554116957],[174.38394383943842,-35.842872654820155],[174.39114391143914,-35.83105261393098],[174.39834398343987,-35.819232573041795],[174.41634416344164,-35.81754399577191],[174.48114481144813,-35.824298304851446],[174.50274502745026,-35.8293640366611],[174.52074520745208,-35.84793838662981],[174.51714517145172,-35.866512736598516],[174.49914499144995,-35.886775663837106],[174.47754477544777,-35.905350013805815],[174.49194491944922,-35.91885863196488],[174.4955449554496,-35.944187291013115],[174.4955449554496,-35.96951595006136],[174.4955449554496,-35.988090300030066],[174.509945099451,-35.99991034091925],[174.5531455314553,-36.02692757723737],[174.57114571145712,-36.03537046358679],[174.58554585545858,-36.03705904085667],[174.61074610746107,-36.03705904085667],[174.62154621546216,-36.04212477266631],[174.63234632346325,-36.05563339082538],[174.6287462874629,-36.06407627717479],[174.62514625146252,-36.072519163524206],[174.62154621546216,-36.08433920441338],[174.62514625146252,-36.10797928619174],[174.63594635946362,-36.11979932708092],[174.65034650346507,-36.129930790700215],[174.66834668346684,-36.14512798612916],[174.7259472594726,-36.216048231464235],[174.75834758347582,-36.24475404505224],[174.79794797947983,-36.26839412683059],[174.82314823148232,-36.27683701318001],[174.82674826748269,-36.28190274498966],[174.81954819548196,-36.295411363148716],[174.81954819548196,-36.298788517688486],[174.82314823148232,-36.30047709495837],[174.82674826748269,-36.30216567222825],[174.82314823148232,-36.30554282676802],[174.81954819548196,-36.3072314040379],[174.8159481594816,-36.3072314040379],[174.81234812348123,-36.30385424949813],[174.81234812348123,-36.30216567222825],[174.80874808748086,-36.30554282676802],[174.8051480514805,-36.30385424949813],[174.8015480154802,-36.30554282676802],[174.79794797947983,-36.317362867657195],[174.8051480514805,-36.33424864035602],[174.83034830348305,-36.34269152670544],[174.85554855548554,-36.3460686812452],[174.8807488074881,-36.35113441305485],[174.85194851948523,-36.356200144864495],[174.76914769147692,-36.35282299032473],[174.75114751147515,-36.35451156759461],[174.75474754747546,-36.36802018575368],[174.76554765547655,-36.41023461750074],[174.78354783547837,-36.43556327654898],[174.78354783547837,-36.45413762651769],[174.78354783547837,-36.47102339921652],[174.779947799478,-36.48790917191535],[174.75834758347582,-36.440629008358634],[174.74394743947443,-36.42036608112004],[174.7151471514715,-36.41192319477062],[174.73314733147333,-36.45582620378757],[174.73314733147333,-36.4727119764864],[174.71154711547115,-36.47440055375628],[174.71154711547115,-36.481154862835815],[174.71874718747188,-36.4828434401057],[174.72954729547297,-36.48790917191535],[174.7367473674737,-36.49297490372499],[174.74394743947443,-36.501417790074406],[174.7367473674737,-36.51154925369371],[174.7151471514715,-36.521680717313004],[174.71154711547115,-36.52843502639253],[174.70794707947078,-36.541943644551594],[174.72234722347224,-36.5605179945203],[174.72234722347224,-36.57233803540948],[174.72234722347224,-36.59428953991796],[174.7259472594726,-36.59597811718784],[174.74034740347406,-36.60779815807702],[174.75114751147515,-36.61286388988667],[174.76554765547655,-36.61624104442643],[174.7907479074791,-36.61792962169631],[174.8339483394834,-36.604421003537254],[174.8447484474845,-36.604421003537254],[174.85554855548554,-36.61117531261679],[174.85194851948523,-36.61624104442643],[174.8051480514805,-36.63819254893491],[174.779947799478,-36.644946858014436],[174.76554765547655,-36.644946858014436],[174.72234722347224,-36.63143823985538],[174.74394743947443,-36.648324012554205],[174.75834758347582,-36.67365267160245],[174.81954819548196,-36.823936048622],[174.79794797947983,-36.81887031681236],[174.78354783547837,-36.80873885319306],[174.76914769147692,-36.80536169865329],[174.74394743947443,-36.81718173954248],[174.7367473674737,-36.812116007732826],[174.73314733147333,-36.80536169865329],[174.73314733147333,-36.79860738957376],[174.7367473674737,-36.79016450322435],[174.71874718747188,-36.7850987714147],[174.70434704347042,-36.75808153509658],[174.68994689946902,-36.75808153509658],[174.65394653946538,-36.773278730525526],[174.63954639546398,-36.78172161687494],[174.62154621546216,-36.79691881230388],[174.62154621546216,-36.80367312138341],[174.6287462874629,-36.80367312138341],[174.66474664746647,-36.80029596684365],[174.6827468274683,-36.80367312138341],[174.6719467194672,-36.810427430462944],[174.65754657546574,-36.81887031681236],[174.65034650346507,-36.825624625891884],[174.65394653946538,-36.8340675122413],[174.6719467194672,-36.84251039859071],[174.67554675546756,-36.84588755313048],[174.67554675546756,-36.850953284940125],[174.67554675546756,-36.893167716687195],[174.67914679146793,-36.90667633484625],[174.69354693546939,-36.913430643925786],[174.7007470074701,-36.90836491211614],[174.7007470074701,-36.894856293957076],[174.7007470074701,-36.88134767579802],[174.70434704347042,-36.87121621217872],[174.71154711547115,-36.87965909852813],[174.71874718747188,-36.86783905763895],[174.7259472594726,-36.85770759401966],[174.7367473674737,-36.850953284940125],[174.75114751147515,-36.8441989758606],[174.76554765547655,-36.84251039859071],[174.81234812348123,-36.850953284940125],[174.87714877148773,-36.850953284940125],[174.8987489874899,-36.86277332582931],[174.89514895148955,-36.893167716687195],[174.88434884348845,-36.90498775757637],[174.87354873548736,-36.911742066655904],[174.869948699487,-36.92018495300532],[174.87354873548736,-36.93875930297403],[174.8807488074881,-36.95226792113309],[174.88434884348845,-36.95902223021262],[174.89154891548918,-36.95733365294274],[174.90234902349027,-36.94720218932344],[174.92754927549277,-36.83744466678107],[174.9347493474935,-36.83744466678107],[174.95634956349562,-36.88472483033778],[174.96354963549635,-36.90667633484625],[174.96354963549635,-36.933693571164376],[174.98514985149853,-36.92862783935473],[175.01035010350103,-36.92862783935473],[175.02475024750248,-36.92018495300532],[175.00675006750066,-36.89654487122696],[175.00315003150035,-36.87965909852813],[175.02835028350285,-36.874593366718486],[175.0571505715057,-36.87797052125825],[175.0787507875079,-36.88472483033778],[175.09315093150934,-36.90667633484625],[175.08235082350825,-36.95226792113309],[175.09315093150934,-36.9708422711018],[175.10755107551074,-36.974219425641564],[175.1219512195122,-36.96915369383191],[175.1327513275133,-36.96408796202227],[175.1507515075151,-36.95902223021262],[175.17235172351724,-36.94551361205356],[175.17955179551797,-36.94720218932344],[175.18315183151833,-36.95226792113309],[175.19035190351906,-36.953956498402974],[175.22275222752228,-36.94044788024391],[175.229952299523,-36.93875930297403],[175.2407524075241,-36.94213645751379],[175.26235262352623,-36.95733365294274],[175.27675276752768,-36.9607108074825],[175.2839528395284,-36.96408796202227],[175.319953199532,-36.999548084689806],[175.32715327153272,-37.0096795483091],[175.3307533075331,-37.02149958919828],[175.33435334353345,-37.036696784627225],[175.33435334353345,-37.0586482891357],[175.319953199532,-37.12787995720089],[175.32355323553236,-37.15152003897925],[175.33795337953381,-37.17347154348772],[175.35235352353527,-37.19204589345643],[175.36675366753667,-37.20724308888538],[175.4027540275403,-37.224128861584205],[175.449554495545,-37.224128861584205],[175.4927549275493,-37.21568597523479],[175.53235532355325,-37.200488779805845],[175.53955539555398,-37.19373447072631],[175.54315543155434,-37.18698016164679],[175.55035550355507,-37.181914429837136],[175.5611556115561,-37.180225852567254],[175.5719557195572,-37.1852915843769],[175.57555575555756,-37.1954230479962],[175.5719557195572,-37.21737455250467],[175.57915579155792,-37.23763747974326],[175.59355593555938,-37.24945752063245],[175.60795607956084,-37.25114609790233],[175.62955629556296,-37.242703211552914],[175.61155611556114,-37.23763747974326],[175.6007560075601,-37.22750601612397],[175.59715597155974,-37.21230882069502],[175.58995589955902,-37.181914429837136],[175.5827558275583,-37.15489719351901],[175.57915579155792,-37.141388575359954],[175.5611556115561,-37.11268276177194],[175.5611556115561,-37.097485566343],[175.5611556115561,-37.04513967097664],[175.5575555755558,-37.03163105281757],[175.55035550355507,-37.02487674373805],[175.52875528755288,-36.96239938475239],[175.52155521555216,-36.950579343863204],[175.51075510755106,-36.93875930297403],[175.49995499955003,-36.92862783935473],[175.47475474754748,-36.91511922119567],[175.4639546395464,-36.90498775757637],[175.45675456754572,-36.894856293957076],[175.45315453154535,-36.88472483033778],[175.449554495545,-36.874593366718486],[175.43515435154353,-36.86446190309919],[175.45675456754572,-36.85770759401966],[175.4819548195482,-36.86277332582931],[175.5035550355504,-36.86108474855942],[175.5179551795518,-36.8441989758606],[175.48555485554857,-36.84588755313048],[175.47115471154711,-36.8441989758606],[175.45675456754572,-36.83744466678107],[175.46755467554675,-36.8340675122413],[175.4819548195482,-36.830690357701535],[175.4927549275493,-36.82731320316177],[175.49635496354966,-36.81718173954248],[175.48915489154894,-36.81718173954248],[175.4819548195482,-36.81380458500271],[175.47475474754748,-36.812116007732826],[175.47115471154711,-36.80873885319306],[175.52155521555216,-36.79860738957376],[175.5359553595536,-36.786787348684584],[175.53235532355325,-36.76145868963634],[175.5179551795518,-36.769901575985756],[175.51075510755106,-36.77496730779541],[175.5035550355504,-36.76483584417611],[175.49995499955003,-36.75470438055682],[175.49995499955003,-36.744572916937514],[175.5035550355504,-36.73444145331822],[175.4819548195482,-36.70404706246033],[175.48915489154894,-36.67871840341209],[175.5035550355504,-36.65338974436385],[175.49635496354966,-36.63143823985538],[175.48915489154894,-36.62806108531561],[175.47835478354784,-36.626372508045726],[175.46755467554675,-36.622995353505964],[175.4639546395464,-36.61455246715655],[175.46035460354602,-36.61117531261679],[175.44235442354426,-36.59091238537819],[175.42435424354244,-36.582469499028775],[175.38835388353885,-36.57233803540948],[175.37035370353703,-36.55882941725042],[175.3631536315363,-36.54532079909136],[175.35595355953564,-36.53012360366242],[175.35595355953564,-36.49128632645511],[175.3631536315363,-36.47608913102617],[175.38115381153813,-36.47608913102617],[175.40635406354068,-36.481154862835815],[175.4387543875439,-36.47440055375628],[175.44595445954462,-36.479466285565934],[175.449554495545,-36.48790917191535],[175.45675456754572,-36.49635205826476],[175.46035460354602,-36.504794944614176],[175.4639546395464,-36.50817209915394],[175.46755467554675,-36.51154925369371],[175.47475474754748,-36.51492640823347],[175.49635496354966,-36.53012360366242],[175.50715507155076,-36.5318121809323],[175.53235532355325,-36.50817209915394],[175.55035550355507,-36.52674644912265],[175.5611556115561,-36.55207510817089],[175.5611556115561,-36.57740376721913],[175.53955539555398,-36.59766669445772],[175.5575555755558,-36.61117531261679],[175.5827558275583,-36.61117531261679],[175.6007560075601,-36.61624104442643],[175.60795607956084,-36.64156970347467],[175.61155611556114,-36.666898362522915],[175.60795607956084,-36.68040698068197],[175.59715597155974,-36.67702982614221],[175.5827558275583,-36.666898362522915],[175.57555575555756,-36.67027551706268],[175.5719557195572,-36.67871840341209],[175.57555575555756,-36.69053844430127],[175.58635586355865,-36.69391559884104],[175.6151561515615,-36.69053844430127],[175.62955629556296,-36.69391559884104],[175.63315633156333,-36.70404706246033],[175.62955629556296,-36.71417852607963],[175.6259562595626,-36.724309989698924],[175.62235622356224,-36.73444145331822],[175.62955629556296,-36.76314726690622],[175.64035640356406,-36.76652442144599],[175.68355683556837,-36.74119576239775],[175.6691566915669,-36.7361300305881],[175.66195661956618,-36.73444145331822],[175.6691566915669,-36.725998566968805],[175.679956799568,-36.72262141242904],[175.69435694356946,-36.724309989698924],[175.70515705157055,-36.731064298778456],[175.71955719557195,-36.7361300305881],[175.7339573395734,-36.729375721508575],[175.75915759157596,-36.71417852607963],[175.77715777157772,-36.70911279426998],[175.79155791557918,-36.707424217000096],[175.80235802358027,-36.71248994880975],[175.81675816758167,-36.724309989698924],[175.82755827558276,-36.725998566968805],[175.84195841958422,-36.71924425788928],[175.8527585275853,-36.71755568061939],[175.8527585275853,-36.73444145331822],[175.84915849158494,-36.747950071477284],[175.83835838358385,-36.75132722601705],[175.809558095581,-36.747950071477284],[175.80595805958063,-36.75301580328693],[175.78435784357845,-36.78341019414482],[175.77355773557736,-36.79016450322435],[175.74835748357486,-36.79860738957376],[175.7339573395734,-36.807050275923174],[175.71955719557195,-36.823936048622],[175.70515705157055,-36.8441989758606],[175.7159571595716,-36.85264186221001],[175.7159571595716,-36.85939617128954],[175.71235712357122,-36.86783905763895],[175.71235712357122,-36.874593366718486],[175.72315723157232,-36.88472483033778],[175.73755737557377,-36.88979056214743],[175.7447574475745,-36.88979056214743],[175.7447574475745,-36.87965909852813],[175.75915759157596,-36.86783905763895],[175.75195751957523,-36.83744466678107],[175.76635766357663,-36.823936048622],[175.7879578795788,-36.832378934971416],[175.82755827558276,-36.825624625891884],[175.84915849158494,-36.84082182132083],[175.8527585275853,-36.85264186221001],[175.8527585275853,-36.87797052125825],[175.85635856358567,-36.888101984877544],[175.87435874358744,-36.90498775757637],[175.8779587795878,-36.913430643925786],[175.88155881558816,-36.92525068481497],[175.8887588875889,-36.974219425641564],[175.88515885158853,-37.00630239376934],[175.88515885158853,-37.01136812557898],[175.88515885158853,-37.02149958919828],[175.88155881558816,-37.03163105281757],[175.87075870758707,-37.04345109370676],[175.8671586715867,-37.05358255732605],[175.87435874358744,-37.060336866405585],[175.88515885158853,-37.055271134595934],[175.89595895958962,-37.04345109370676],[175.90315903159035,-37.036696784627225],[175.9211592115921,-37.055271134595934],[175.91755917559175,-37.080599793644176],[175.90315903159035,-37.10592845269242],[175.88515885158853,-37.12787995720089],[175.88515885158853,-37.1363228435503],[175.89235892358926,-37.139699998090066],[175.9067590675907,-37.143077152629836],[175.91755917559175,-37.1464543071696],[175.91755917559175,-37.158274348058775],[175.91755917559175,-37.18698016164679],[175.9211592115921,-37.200488779805845],[175.91395913959138,-37.1954230479962],[175.9067590675907,-37.18698016164679],[175.89955899558998,-37.17684869802749],[175.89595895958962,-37.16671723440819],[175.8887588875889,-37.16671723440819],[175.89235892358926,-37.19204589345643],[175.89955899558998,-37.21230882069502],[175.90315903159035,-37.23088317066374],[175.8887588875889,-37.242703211552914],[175.9211592115921,-37.25452325244209],[175.9319593195932,-37.264654716061386],[175.9427594275943,-37.283229066030096],[175.9535595355954,-37.3220663432374],[175.95715957159575,-37.3609036204447],[175.96075960759612,-37.37778939314353],[175.97875978759788,-37.408183784001416],[175.98235982359824,-37.42338097943036],[175.9859598595986,-37.430135288509895],[176.00036000360006,-37.43857817485931],[176.00396003960043,-37.44702106120872],[176.00396003960043,-37.46052967936778],[176.00036000360006,-37.4588411020979],[175.99315993159934,-37.45208679301837],[175.98235982359824,-37.45377537028825],[175.97515975159752,-37.470661142987076],[175.9859598595986,-37.47572687479673],[176.02556025560256,-37.48079260660637],[176.039960399604,-37.487546915685904],[176.05796057960583,-37.49598980203532],[176.0759607596076,-37.507809842924495],[176.09036090360905,-37.51962988381368],[176.10116101161015,-37.531449924702855],[176.11556115561154,-37.56184431556074],[176.12276122761227,-37.573664356449925],[176.15156151561519,-37.5956158609584],[176.16596165961658,-37.60743590184757],[176.16956169561695,-37.6243216745464],[176.13356133561336,-37.60237017003793],[176.12276122761227,-37.59730443822828],[176.1047610476105,-37.59730443822828],[176.09036090360905,-37.59899301549816],[176.0759607596076,-37.5956158609584],[176.05796057960583,-37.58379582006922],[176.06876068760687,-37.57873008825957],[176.10116101161015,-37.570287201910155],[176.0651606516065,-37.551712851941446],[176.0507605076051,-37.53820423378239],[176.03636036360365,-37.526384192893204],[176.01476014760146,-37.51625272927391],[175.98955989559897,-37.51456415200403],[175.9427594275943,-37.52131846108356],[175.94995949959502,-37.52807277016309],[175.95715957159575,-37.53820423378239],[175.96435964359642,-37.54326996559203],[175.96075960759612,-37.54833569740168],[175.95715957159575,-37.555090006481215],[175.9535595355954,-37.56353289283063],[175.95715957159575,-37.570287201910155],[175.96435964359642,-37.57704151098969],[175.9679596795968,-37.57873008825957],[175.97515975159752,-37.57704151098969],[175.97875978759788,-37.57704151098969],[175.98235982359824,-37.58041866552945],[175.99315993159934,-37.58210724279934],[175.9967599675997,-37.58379582006922],[176.00036000360006,-37.588861551878864],[175.9967599675997,-37.5956158609584],[175.99315993159934,-37.60068159276805],[175.98955989559897,-37.60405874730781],[175.9967599675997,-37.62769882908617],[175.9967599675997,-37.631075983625934],[176.00396003960043,-37.636141715435585],[176.0075600756008,-37.637830292705466],[176.02556025560256,-37.63951886997535],[176.03276032760328,-37.636141715435585],[176.039960399604,-37.632764560895815],[176.04356043560438,-37.62769882908617],[176.04716047160474,-37.6243216745464],[176.06156061560614,-37.632764560895815],[176.07236072360723,-37.644584601785],[176.0759607596076,-37.65809321994406],[176.0867608676087,-37.673290415373],[176.10116101161015,-37.66484752902359],[176.11196111961118,-37.66991326083323],[176.12276122761227,-37.68173330172242],[176.129961299613,-37.68679903353206],[176.14436144361446,-37.68173330172242],[176.15156151561519,-37.67160183810312],[176.1587615876159,-37.66315895175371],[176.17676176761768,-37.66653610629347],[176.19116191161913,-37.673290415373],[176.1947619476195,-37.68173330172242],[176.19836198361986,-37.693553342611594],[176.1947619476195,-37.71043911531042],[176.20196201962023,-37.72057057892972],[176.21276212762126,-37.718882001659836],[176.23076230762308,-37.715504847120066],[176.24516245162454,-37.713816269850184],[176.23076230762308,-37.66653610629347],[176.20916209162095,-37.636141715435585],[176.20196201962023,-37.62263309727652],[176.21636216362162,-37.617567365466876],[176.2379623796238,-37.631075983625934],[176.27036270362703,-37.68173330172242],[176.29556295562958,-37.693553342611594],[176.32436324363243,-37.698619074421245],[176.38556385563857,-37.7222591561996],[176.41436414364142,-37.72732488800925],[176.4251642516425,-37.732390619818894],[176.4467644676447,-37.7509649697876],[176.46116461164615,-37.756030701597254],[176.489964899649,-37.756030701597254],[176.49716497164974,-37.75940785613702],[176.5007650076501,-37.76616216521655],[176.50796507965083,-37.76953931975631],[176.51876518765187,-37.76278501067679],[176.71676716767166,-37.877608265028805],[176.75996759967603,-37.89280546045775],[176.8211682116821,-37.901248346807165],[176.88236882368824,-37.919822696775874],[176.9507695076951,-37.92826558312529],[177.0047700477005,-37.95528281944341],[177.09837098370986,-37.96541428306271],[177.13437134371344,-37.982300055761534],[177.07677076770767,-37.982300055761534],[177.06597065970664,-37.983988633031416],[177.0731707317073,-37.99074294211095],[177.11997119971198,-38.01607160115919],[177.13077130771308,-38.021137332968834],[177.14517145171453,-38.02282591023872],[177.159571595716,-38.01776017842907],[177.159571595716,-38.005940137539895],[177.15597155971562,-37.99243151938083],[177.1487714877149,-37.982300055761534],[177.16677166771672,-37.97892290122177],[177.17757177571775,-37.982300055761534],[177.18477184771848,-37.99074294211095],[177.19557195571957,-37.9958086739206],[177.26397263972643,-37.9958086739206],[177.26397263972643,-37.99749725119048],[177.27477274772747,-38.01269444661942],[177.2819728197282,-38.01607160115919],[177.28557285572856,-38.01438302388931],[177.28917289172892,-38.01100586934954],[177.29637296372965,-38.00931729207966],[177.29997299973002,-38.005940137539895],[177.29997299973002,-37.99918582846036],[177.29997299973002,-37.99243151938083],[177.30717307173074,-37.98905436484107],[177.31797317973184,-37.987365787571186],[177.3467734677347,-37.982300055761534],[177.43677436774368,-37.97723432395189],[177.46197461974623,-37.96541428306271],[177.479974799748,-37.95190566490365],[177.55557555575558,-37.91306838769634],[177.5879758797588,-37.89280546045775],[177.5987759877599,-37.882673996838456],[177.60237602376026,-37.87254253321916],[177.60237602376026,-37.84721387417092],[177.6167761677617,-37.82357379239256],[177.62037620376208,-37.81344232877326],[177.62757627576275,-37.80837659696362],[177.67077670776712,-37.78980224699491],[177.68517685176852,-37.7712278970262],[177.6959769597696,-37.73576777435866],[177.7067770677707,-37.717193424389954],[177.72117721177216,-37.70368480623089],[177.72837728377283,-37.695241919881475],[177.7319773197732,-37.6834218789923],[177.73917739177392,-37.676667569912766],[177.839978399784,-37.653027488134406],[177.85797857978582,-37.653027488134406],[177.87597875978759,-37.64796175632476],[177.89037890378904,-37.636141715435585],[177.91197911979123,-37.60743590184757],[177.929979299793,-37.60068159276805],[177.97317973179736,-37.59730443822828],[177.99117991179912,-37.59055012914875],[178.00558005580058,-37.57873008825957],[178.00918009180094,-37.570287201910155],[178.00558005580058,-37.55846716102098],[177.99117991179912,-37.54326996559203],[178.03078030780307,-37.550024274671564],[178.2791827918279,-37.55846716102098],[178.3007830078301,-37.56522147010051],[178.31518315183155,-37.573664356449925],[178.3007830078301,-37.58379582006922],[178.3007830078301,-37.59055012914875],[178.31158311583118,-37.5956158609584],[178.32958329583295,-37.61081305638734],[178.34038340383404,-37.617567365466876],[178.35838358383586,-37.62263309727652],[178.37638376383762,-37.62601025181628],[178.4087840878409,-37.6243216745464],[178.42318423184236,-37.62769882908617],[178.44118441184412,-37.64289602451511],[178.45558455584558,-37.64627317905488],[178.48438484384843,-37.644584601785],[178.4987849878499,-37.64627317905488],[178.51318513185134,-37.653027488134406],[178.52758527585274,-37.66315895175371],[178.54918549185493,-37.68004472445253],[178.56718567185675,-37.700307651691126],[178.56358563585638,-37.717193424389954],[178.55638556385566,-37.72732488800925],[178.53838538385384,-37.75265354705749],[178.4987849878499,-37.78304793791538],[178.48078480784807,-37.83032810147209],[178.46638466384667,-37.85396818325045],[178.43038430384303,-37.87423111048904],[178.41598415984163,-37.89618261499752],[178.38718387183872,-37.958659973983174],[178.37638376383762,-37.975545746682],[178.35838358383586,-37.99243151938083],[178.35118351183513,-38.002562983000125],[178.34758347583477,-38.01269444661942],[178.3547835478355,-38.03633452839778],[178.36918369183695,-38.05659745563637],[178.379983799838,-38.07854896014485],[178.37638376383762,-38.10556619646297],[178.35838358383586,-38.11738623735215],[178.34038340383404,-38.130894855511215],[178.32958329583295,-38.146092050940155],[178.3547835478355,-38.188306482687224],[178.35118351183513,-38.208569409925815],[178.34038340383404,-38.227143759894524],[178.32238322383228,-38.24571810986323],[178.3187831878319,-38.26598103710183],[178.3331833318333,-38.28624396434042],[178.35118351183513,-38.30312973703925],[178.36198361983622,-38.31663835519831],[178.35838358383586,-38.32845839608749],[178.35118351183513,-38.336901282436905],[178.3331833318333,-38.35040990059596],[178.32958329583295,-38.36391851875503],[178.32598325983258,-38.3858700232635],[178.3187831878319,-38.399378641422565],[178.3331833318333,-38.40275579596233],[178.3439834398344,-38.40951010504186],[178.34758347583477,-38.419641568661156],[178.34758347583477,-38.434838764090095],[178.34038340383404,-38.44328165043951],[178.30438304383046,-38.458478845868456],[178.3007830078301,-38.46692173221787],[178.3007830078301,-38.53108766847341],[178.29358293582936,-38.539530554822825],[178.1819818198182,-38.639156613745904],[178.0811808118081,-38.7083882818111],[178.06318063180635,-38.71683116816051],[178.0235802358024,-38.688125354572506],[177.99837998379985,-38.683059622762855],[177.97317973179736,-38.688125354572506],[177.95157951579517,-38.69994539546168],[177.94077940779408,-38.703322550001445],[177.93717937179372,-38.701633972731564],[177.93357933579335,-38.701633972731564],[177.929979299793,-38.71345401362074],[177.929979299793,-38.72020832270027],[177.93357933579335,-38.73033978631957],[177.93717937179372,-38.73540551812922],[177.95517955179554,-38.750602713558166],[177.96237962379627,-38.76073417717746],[177.96237962379627,-38.77255421806664],[177.94437944379445,-38.79788287711488],[177.93717937179372,-38.81983438162335],[177.93717937179372,-38.87218027698972],[177.92637926379263,-38.931280481435614],[177.91197911979123,-38.95998629502362],[177.90837908379086,-39.0005121495008],[177.90117901179013,-39.015709344929746],[177.91197911979123,-39.03597227216834],[177.9047790477905,-39.05116946759728],[177.89037890378904,-39.06636666302623],[177.8831788317883,-39.08494101299494],[177.95157951579517,-39.09169532207447],[177.9839798397984,-39.10520394023353],[177.99837998379985,-39.13053259928177],[177.94437944379445,-39.17274703102884],[177.91917919179195,-39.22340434912532],[177.91197911979123,-39.25548731725309],[177.90117901179013,-39.26730735814227],[177.8831788317883,-39.277438821761564],[177.86877868778691,-39.29094743992063],[177.839978399784,-39.22847008093497],[177.83277832778327,-39.196387112807194],[177.83277832778327,-39.16768129921919],[177.839978399784,-39.15079552652036],[177.84717847178473,-39.133909753821534],[177.85797857978582,-39.120401135662476],[177.86517865178655,-39.10858109477329],[177.86517865178655,-39.096761053884116],[177.8507785077851,-39.09000674480458],[177.83277832778327,-39.09000674480458],[177.81837818378187,-39.10520394023353],[177.81117811178115,-39.10182678569377],[177.77877778777787,-39.08494101299494],[177.76437764377647,-39.08156385845517],[177.60597605976062,-39.074809549375644],[177.4439744397444,-39.071432394835874],[177.43317433174332,-39.06805524029611],[177.42237422374222,-39.06130093121658],[177.4115741157412,-39.0596123539467],[177.38637386373864,-39.07818670391541],[177.2027720277203,-39.1474183719806],[177.06597065970664,-39.199764267346964],[177.05157051570518,-39.21158430823614],[177.04797047970482,-39.23353581274461],[177.03717037170372,-39.25548731725309],[177.02637026370263,-39.27575024449168],[177.00117001170014,-39.301078903539924],[176.96516965169656,-39.33147329439781],[176.939969399694,-39.344981912556875],[176.93636936369364,-39.34835906709664],[176.92556925569255,-39.37706488068464],[176.91476914769152,-39.388884921573826],[176.9075690756908,-39.400704962463],[176.90396903969042,-39.41252500335218],[176.90396903969042,-39.43109935332089],[176.9075690756908,-39.44798512601972],[176.91476914769152,-39.45642801236913],[176.92556925569255,-39.46318232144866],[176.93636936369364,-39.47500236233784],[176.94356943569437,-39.49526528957643],[176.9507695076951,-39.58813703941998],[176.95436954369546,-39.60671138938869]]],[[[166.13626136261365,-50.86445604769664],[166.20466204662046,-50.87627608858582],[166.22626226262264,-50.88471897493523],[166.21186211862118,-50.889784706744884],[166.18306183061833,-50.89485043855453],[166.15786157861578,-50.90329332490394],[166.14346143461438,-50.90498190217383],[166.12906129061292,-50.90329332490394],[166.1218612186122,-50.911736211253356],[165.98505985059853,-50.90498190217383],[165.9778597785978,-50.89991617036418],[165.97425974259744,-50.893161861284646],[165.96345963459635,-50.88471897493523],[165.94185941859422,-50.871210356776174],[165.93105931059313,-50.86445604769664],[165.9238592385924,-50.850947429537584],[165.94185941859422,-50.852636006807465],[165.95985959859598,-50.859390315887],[165.98505985059853,-50.87458751131594],[165.99945999459993,-50.87458751131594],[166.07506075060752,-50.86276747042676],[166.08946089460898,-50.852636006807465],[166.0966609666097,-50.850947429537584],[166.10746107461074,-50.852636006807465],[166.13626136261365,-50.86445604769664]]],[[[-80.75780757807578,-33.76761119013432],[-80.77580775807758,-33.73383964473667],[-80.76860768607686,-33.701756676608895],[-80.73980739807398,-33.68487090391007],[-80.7110071100711,-33.70513383114866],[-80.70740707407074,-33.71695387203784],[-80.70380703807038,-33.73383964473667],[-80.70380703807038,-33.75410257197526],[-80.70380703807038,-33.76761119013432],[-80.71460714607146,-33.77267692194397],[-80.73260732607326,-33.77605407648373],[-80.75060750607506,-33.77436549921385],[-80.75780757807578,-33.76761119013432]]],[[[128.159481594816,-15.090258007961793],[128.1630816308163,-15.097012317041319],[128.17028170281702,-15.100389471581082],[128.1810818108181,-15.103766626120859],[128.18828188281884,-15.107143780660621],[128.19548195481957,-15.127406707899212],[128.19908199081993,-15.152735366947454],[128.19548195481957,-15.176375448725807],[128.18828188281884,-15.189884066884872],[128.1810818108181,-15.181441180535458],[128.17388173881739,-15.174686871455933],[128.1630816308163,-15.167932562376393],[128.15228152281526,-15.162866830566742],[128.13428134281344,-15.145981057867914],[128.1270812708127,-15.134161016978737],[128.12348123481235,-15.118963821549798],[128.12348123481235,-15.048043576214724],[128.13068130681307,-15.037912112595421],[128.15228152281526,-15.053109308024375],[128.159481594816,-15.08688085342203],[128.159481594816,-15.090258007961793]]],[[[128.4150841508415,-14.956860403641059],[128.42948429484295,-14.965303289990473],[128.43668436684368,-14.988943371768826],[128.44028440284404,-15.015960608086957],[128.44028440284404,-15.037912112595421],[128.4114841148412,-15.01764918535683],[128.35748357483578,-14.956860403641059],[128.35028350283505,-14.933220321862706],[128.3466834668347,-14.882563003766222],[128.35388353883542,-14.869054385607157],[128.37188371883718,-14.874120117416808],[128.38628386283864,-14.891005890115636],[128.40788407884082,-14.945040362751882],[128.4150841508415,-14.956860403641059]]],[[[129.53469534695347,-14.798134140272083],[129.57789577895778,-14.860611499257743],[129.58869588695887,-14.884251581036096],[129.59229592295924,-14.909580240084338],[129.59229592295924,-14.963614712720585],[129.58869588695887,-14.951794671831408],[129.5850958509585,-14.94166320821212],[129.57789577895778,-14.93490889913258],[129.57069570695705,-14.928154590053055],[129.55629556295565,-14.907891662814464],[129.53469534695347,-14.858922921987855],[129.520295202952,-14.83697141747939],[129.5058950589506,-14.803199872081734],[129.50229502295025,-14.798134140272083],[129.50949509495098,-14.786314099382906],[129.5166951669517,-14.78800267665278],[129.52389523895238,-14.79475698573232],[129.53469534695347,-14.798134140272083]]],[[[133.40833408334083,-11.591525904764836],[133.42993429934302,-11.586460172955185],[133.4551345513455,-11.583083018415422],[133.4767347673477,-11.586460172955185],[133.48393483934842,-11.601657368384139],[133.47313473134733,-11.611788832003427],[133.45153451534514,-11.616854563813078],[133.4119341193412,-11.62023171835284],[133.39753397533974,-11.623608872892603],[133.39753397533974,-11.632051759242017],[133.40473404734047,-11.643871800131208],[133.40833408334083,-11.654003263750496],[133.39753397533974,-11.66244615009991],[133.3867338673387,-11.665823304639673],[133.37233372333725,-11.665823304639673],[133.36153361533616,-11.660757572830036],[133.36873368733688,-11.654003263750496],[133.3579335793358,-11.628674604702255],[133.3579335793358,-11.616854563813078],[133.37233372333725,-11.611788832003427],[133.37953379533798,-11.610100254733553],[133.40833408334083,-11.591525904764836]]],[[[113.39573395733959,-8.44739502824325],[113.40653406534068,-8.452460760052901],[113.41373413734141,-8.46765795548184],[113.41373413734141,-8.481166573640905],[113.41013410134104,-8.486232305450557],[113.39573395733959,-8.487920882720445],[113.37053370533704,-8.49467519179997],[113.29133291332914,-8.49467519179997],[113.28053280532805,-8.487920882720445],[113.27693276932769,-8.472723687291492],[113.28053280532805,-8.457526491862552],[113.2949329493295,-8.44739502824325],[113.29133291332914,-8.438952141893836],[113.28773287732878,-8.43219783281431],[113.33813338133382,-8.444017873703487],[113.39573395733959,-8.44739502824325]]],[[[128.23148231482315,-8.251520064936855],[128.23868238682388,-8.263340105826046],[128.23148231482315,-8.273471569445334],[128.22068220682206,-8.278537301254985],[128.20628206282066,-8.281914455794748],[128.1810818108181,-8.285291610334511],[128.15228152281526,-8.285291610334511],[128.12348123481235,-8.280225878524874],[128.10548105481058,-8.275160146715223],[128.09828098280985,-8.270094414905572],[128.08748087480876,-8.263340105826046],[128.0838808388084,-8.254897219476632],[128.08748087480876,-8.24476575585733],[128.0946809468095,-8.232945714968153],[128.09828098280985,-8.221125674078976],[128.10548105481058,-8.212682787729563],[128.11628116281162,-8.207617055919911],[128.1378813788138,-8.216059942269325],[128.16668166681666,-8.210994210459674],[128.1918819188192,-8.200862746840386],[128.21348213482133,-8.199174169570497],[128.22068220682206,-8.2093056331898],[128.2278822788228,-8.239700024047679],[128.23148231482315,-8.251520064936855]]],[[[129.03069030690307,-8.207617055919911],[129.0378903789038,-8.221125674078976],[129.03429034290343,-8.236322869507916],[129.0270902709027,-8.251520064936855],[129.0162901629016,-8.261651528556158],[129.00549005490058,-8.263340105826046],[128.99468994689948,-8.261651528556158],[128.98028980289803,-8.254897219476632],[128.96588965889657,-8.24476575585733],[128.9478894788948,-8.236322869507916],[128.94068940689408,-8.241388601317567],[128.929889298893,-8.249831487666981],[128.91548915489153,-8.254897219476632],[128.88668886688868,-8.24476575585733],[128.8506885068851,-8.22281425134885],[128.83268832688327,-8.199174169570497],[128.85788857888582,-8.185665551411432],[128.89028890288904,-8.177222665062018],[128.9838898388984,-8.185665551411432],[128.99108991089912,-8.189042705951195],[129.03069030690307,-8.207617055919911]]],[[[127.74187741877421,-8.158648315093316],[127.75987759877597,-8.173845510522256],[127.77067770677706,-8.194108437760846],[127.7670776707767,-8.212682787729563],[127.74547745477457,-8.221125674078976],[127.72387723877239,-8.22450282861874],[127.6878768787688,-8.238011446777804],[127.66987669876698,-8.241388601317567],[127.64827648276486,-8.236322869507916],[127.61947619476194,-8.212682787729563],[127.60507605076054,-8.207617055919911],[127.68427684276844,-8.155271160553553],[127.70227702277026,-8.151894006013777],[127.72387723877239,-8.153582583283665],[127.74187741877421,-8.158648315093316]]],[[[127.21627216272162,-8.026939288042456],[127.22707227072272,-8.038759328931647],[127.23067230672308,-8.053956524360586],[127.23427234272344,-8.070842297059414],[127.23427234272344,-8.086039492488354],[127.22347223472235,-8.107990996996833],[127.20187201872022,-8.111368151536595],[127.15147151471518,-8.096170956107656],[127.15147151471518,-8.089416647028116],[127.15867158671585,-8.079285183408828],[127.15507155071549,-8.048890792550935],[127.15867158671585,-8.03538217439187],[127.16947169471695,-8.023562133502693],[127.18747187471877,-8.018496401693042],[127.20187201872022,-8.02018497896293],[127.21627216272162,-8.026939288042456]]],[[[131.10431104311044,-7.628435052350142],[131.1187111871119,-7.619992166000728],[131.12591125911263,-7.6183035887308534],[131.1331113311133,-7.623369320540505],[131.1187111871119,-7.663895175017686],[131.1079110791108,-7.682469524986388],[131.09351093510935,-7.69260098860569],[131.05031050310504,-7.684158102256276],[131.03591035910358,-7.687535256796039],[131.0431104311043,-7.712863915844281],[130.98550985509854,-7.711175338574392],[130.97110971109714,-7.701043874955104],[130.98190981909818,-7.6723380613671],[130.9891098910989,-7.663895175017686],[130.9999099991,-7.657140865938146],[131.0107101071011,-7.653763711398383],[131.03951039510395,-7.650386556858621],[131.0539105391054,-7.6453208250489695],[131.06831068310686,-7.638566515969444],[131.0791107911079,-7.63012362962003],[131.0791107911079,-7.633500784159793],[131.08271082710826,-7.635189361429681],[131.089910899109,-7.635189361429681],[131.09351093510935,-7.635189361429681],[131.10431104311044,-7.628435052350142]]],[[[130.96750967509678,-7.533874725236714],[130.97830978309787,-7.535563302506603],[130.98550985509854,-7.54062903431624],[130.9891098910989,-7.545694766125891],[130.98550985509854,-7.5524490752054305],[130.97830978309787,-7.555826229745193],[130.9747097470975,-7.550760497935542],[130.96750967509678,-7.545694766125891],[130.9567095670957,-7.542317611586128],[130.95310953109532,-7.544006188856017],[130.94230942309423,-7.554137652475305],[130.93870938709387,-7.555826229745193],[130.89910899108992,-7.554137652475305],[130.8559085590856,-7.547383343395779],[130.8451084510845,-7.542317611586128],[130.84150841508415,-7.528808993427063],[130.8451084510845,-7.513611797998124],[130.85950859508597,-7.486594561679993],[130.86310863108633,-7.48997171621977],[130.89550895508955,-7.513611797998124],[130.90630906309065,-7.506857488918598],[130.9207092070921,-7.510234643458361],[130.9351093510935,-7.518677529807775],[130.9459094590946,-7.5220546843475375],[130.97830978309787,-7.515300375267998],[130.98550985509854,-7.518677529807775],[130.96750967509678,-7.533874725236714]]],[[[131.17631176311767,-7.403854275455743],[131.17631176311767,-7.407231429995505],[131.17991179911797,-7.410608584535282],[131.18351183511834,-7.415674316344919],[131.16551165511657,-7.424117202694333],[131.12591125911263,-7.466331634441403],[131.11511115111153,-7.471397366251054],[131.10431104311044,-7.476463098060705],[131.09711097110971,-7.481528829870356],[131.089910899109,-7.498414602569184],[131.0791107911079,-7.503480334378821],[131.06831068310686,-7.506857488918598],[131.05751057510577,-7.508546066188472],[131.05751057510577,-7.5001031798390585],[131.0647106471065,-7.496726025299296],[131.06831068310686,-7.493348870759533],[131.07191071910722,-7.479840252600468],[131.04671046710467,-7.479840252600468],[131.02511025110255,-7.484905984410119],[131.00351003510036,-7.486594561679993],[130.9891098910989,-7.4730859435209425],[130.98550985509854,-7.456200170822115],[130.99270992709927,-7.439314398123287],[131.00351003510036,-7.424117202694333],[131.01791017910182,-7.415674316344919],[131.02871028710285,-7.4122971618051565],[131.03591035910358,-7.413985739075045],[131.05031050310504,-7.417362893614808],[131.06831068310686,-7.417362893614808],[131.12591125911263,-7.410608584535282],[131.14031140311403,-7.405542852725631],[131.15471154711548,-7.403854275455743],[131.1619116191162,-7.402165698185868],[131.1619116191162,-7.40047712091598],[131.16551165511657,-7.40047712091598],[131.17631176311767,-7.403854275455743]]],[[[120.95940959409597,-7.282276712024199],[121.02061020610205,-7.280588134754311],[121.04941049410496,-7.285653866563962],[121.06741067410672,-7.30253963926279],[121.05661056610569,-7.321113989231492],[121.02421024210241,-7.331245452850794],[120.9918099180992,-7.3329340301206685],[120.97740977409774,-7.326179721041143],[120.96300963009634,-7.314359680151966],[120.9018090180902,-7.304228216532664],[120.88020880208802,-7.29578533018325],[120.86580865808656,-7.30253963926279],[120.84060840608407,-7.304228216532664],[120.81540815408152,-7.30253963926279],[120.80100801008012,-7.29578533018325],[120.7938079380794,-7.287342443833836],[120.7938079380794,-7.278899557484422],[120.7938079380794,-7.270456671135008],[120.80100801008012,-7.263702362055483],[120.81540815408152,-7.256948052975957],[120.83340833408334,-7.26032520751572],[120.86940869408693,-7.273833825674785],[120.95940959409597,-7.282276712024199]]],[[[138.75438754387545,-6.779080685599155],[138.75798757987582,-6.790900726488331],[138.7831878318783,-6.814540808266685],[138.78678786787867,-6.829738003695624],[138.7831878318783,-6.838180890045038],[138.7687876878769,-6.850000930934215],[138.74718747187472,-6.86350954909328],[138.7291872918729,-6.868575280902931],[138.7147871478715,-6.865198126363168],[138.70758707587078,-6.858443817283629],[138.69678696786968,-6.856755240013754],[138.68238682386823,-6.84831235366434],[138.6715867158672,-6.8094750764570335],[138.6607866078661,-6.80103219010762],[138.649986499865,-6.797655035567857],[138.63918639186392,-6.787523571948569],[138.62478624786252,-6.767260644709964],[138.6175861758618,-6.748686294741262],[138.6175861758618,-6.728423367502671],[138.62838628386282,-6.719980481153257],[138.64278642786428,-6.7301119447725455],[138.66438664386646,-6.750374872011136],[138.67878678786786,-6.75881775836055],[138.69678696786968,-6.7605063356304385],[138.73278732787327,-6.763883490170201],[138.74718747187472,-6.768949221979852],[138.75438754387545,-6.779080685599155]]],[[[131.59751597515975,-6.679454626676076],[131.61911619116194,-6.682831781215839],[131.62991629916303,-6.6946518221050155],[131.62631626316266,-6.709849017533955],[131.60471604716048,-6.726734790232783],[131.5831158311583,-6.719980481153257],[131.5687156871569,-6.731800522042434],[131.56511565115653,-6.7520634492810245],[131.59031590315902,-6.767260644709964],[131.5831158311583,-6.7824578401389175],[131.56511565115653,-6.795966458297968],[131.55071550715508,-6.80103219010762],[131.52911529115295,-6.780769262869029],[131.53631536315362,-6.738554831121959],[131.56511565115653,-6.69634039937489],[131.59751597515975,-6.679454626676076]]],[[[134.6071460714607,-6.421102304384021],[134.60354603546034,-6.441365231622612],[134.58914589145894,-6.454873849781677],[134.5531455314553,-6.473448199750379],[134.5639456394564,-6.4920225497190955],[134.56034560345603,-6.515662631497449],[134.54234542345426,-6.529171249656514],[134.509945099451,-6.51397405422756],[134.50274502745026,-6.5004654360685095],[134.4955449554496,-6.485268240639556],[134.49194491944922,-6.471759622480491],[134.49194491944922,-6.461628158861203],[134.48834488344886,-6.454873849781677],[134.4631446314463,-6.424479458923784],[134.45234452344522,-6.424479458923784],[134.43794437944382,-6.427856613463547],[134.42714427144273,-6.426168036193658],[134.42354423544236,-6.414347995304482],[134.41634416344164,-6.405905108955068],[134.35874358743587,-6.378887872636952],[134.35154351543514,-6.372133563557412],[134.34794347943483,-6.3603135226682355],[134.35154351543514,-6.350182059048947],[134.3551435514355,-6.341739172699533],[134.3659436594366,-6.333296286350119],[134.37314373143732,-6.328230554540468],[134.38754387543878,-6.319787668191054],[134.39114391143914,-6.316410513651292],[134.40554405544054,-6.299524740952464],[134.41274412744127,-6.2944590091428125],[134.419944199442,-6.289393277333161],[134.4307443074431,-6.286016122793399],[134.43794437944382,-6.284327545523524],[134.44514445144455,-6.286016122793399],[134.45234452344522,-6.287704700063287],[134.4631446314463,-6.296147586412701],[134.4955449554496,-6.314721936381403],[134.50634506345062,-6.321476245460943],[134.5279452794528,-6.350182059048947],[134.54594545945463,-6.363690677207998],[134.5639456394564,-6.368756409017649],[134.57474574745748,-6.375510718097189],[134.58914589145894,-6.387330758986366],[134.60354603546034,-6.404216531685194],[134.6071460714607,-6.421102304384021]]],[[[132.79632796327962,-5.608896637570439],[132.79632796327962,-5.625782410269267],[132.79992799928,-5.640979605698206],[132.80352803528035,-5.65617680112716],[132.81432814328144,-5.671373996556099],[132.80712807128072,-5.679816882905513],[132.80712807128072,-5.684882614715164],[132.79632796327962,-5.679816882905513],[132.79272792727926,-5.674751151095862],[132.78912789127895,-5.666308264746448],[132.7855278552786,-5.657865378397034],[132.7855278552786,-5.673062573825987],[132.78192781927822,-5.679816882905513],[132.77112771127713,-5.681505460175387],[132.7639276392764,-5.678128305635624],[132.75672756727568,-5.671373996556099],[132.74232742327422,-5.630848142078918],[132.74232742327422,-5.603830905760788],[132.74952749527495,-5.573436514902895],[132.7639276392764,-5.54473070131489],[132.7855278552786,-5.527844928616062],[132.78912789127895,-5.536287814965476],[132.79272792727926,-5.54473070131489],[132.78912789127895,-5.553173587664304],[132.7855278552786,-5.561616474013718],[132.78912789127895,-5.556550742204081],[132.79632796327962,-5.553173587664304],[132.80352803528035,-5.553173587664304],[132.81072810728108,-5.5548621649341925],[132.81072810728108,-5.564993628553495],[132.79632796327962,-5.608896637570439]]],[[[123.77823778237786,-5.514336310457011],[123.79983799837999,-5.522779196806425],[123.80703807038071,-5.54473070131489],[123.81063810638108,-5.57174793763302],[123.81423814238144,-5.595388019411374],[123.79263792637926,-5.588633710331848],[123.77823778237786,-5.573436514902895],[123.75303753037531,-5.534599237695602],[123.73503735037349,-5.517713464996774],[123.71703717037173,-5.505893424107597],[123.70263702637027,-5.492384805948532],[123.69183691836918,-5.472121878709942],[123.70623706237063,-5.472121878709942],[123.73503735037349,-5.475499033249704],[123.74943749437494,-5.48900765140877],[123.76023760237604,-5.505893424107597],[123.77823778237786,-5.514336310457011]]],[[[127.23427234272344,-3.8206933087646604],[127.24507245072454,-3.8358905041936],[127.25227252272526,-3.849399122352665],[127.25587255872557,-3.8747277814009067],[127.2486724867249,-3.889924976829846],[127.24147241472417,-3.9000564404491485],[127.24147241472417,-3.9101879040684366],[127.22707227072272,-3.9169422131479763],[127.2090720907209,-3.915253635878088],[127.19107191071913,-3.911876481338325],[127.17307173071731,-3.9101879040684366],[127.16227162271622,-3.89836786317926],[127.14427144271446,-3.884859245020209],[127.13707137071373,-3.8696620495912555],[127.13707137071373,-3.846021967812902],[127.16587165871658,-3.813938999685135],[127.18027180271804,-3.8088732678754837],[127.19827198271986,-3.810561845145358],[127.23427234272344,-3.8206933087646604]]],[[[132.70272702727027,-3.452583463930239],[132.709927099271,-3.4694692366290525],[132.71352713527136,-3.4863550093278803],[132.71352713527136,-3.5049293592965967],[132.70272702727027,-3.520126554725536],[132.68832688326887,-3.509995091106248],[132.67752677526778,-3.4964864729471827],[132.67032670326705,-3.479600700248355],[132.6667266672667,-3.452583463930239],[132.65952659526596,-3.4508948866603504],[132.6451264512645,-3.4508948866603504],[132.63792637926383,-3.4475177321205877],[132.619926199262,-3.42387765034222],[132.62712627126274,-3.418811918532583],[132.6451264512645,-3.4086804549132808],[132.65232652326523,-3.405303300373518],[132.6667266672667,-3.4103690321831692],[132.68112681126814,-3.42387765034222],[132.70272702727027,-3.452583463930239]]],[[[127.77067770677706,-3.1621481735104027],[127.78507785077852,-3.1689024825899423],[127.78867788677888,-3.1840996780188817],[127.78867788677888,-3.199296873447821],[127.79587795877961,-3.211116914337012],[127.78507785077852,-3.2347569961153653],[127.77787777877779,-3.2448884597346535],[127.7670776707767,-3.246577037004542],[127.74187741877421,-3.2448884597346535],[127.68067680676808,-3.251642768814193],[127.65907659076589,-3.2448884597346535],[127.64467644676449,-3.224625532496063],[127.65907659076589,-3.2009854507177096],[127.6878768787688,-3.1790339462092305],[127.70587705877062,-3.1570824417007657],[127.74187741877421,-3.1570824417007657],[127.7526775267753,-3.150328132621226],[127.75987759877597,-3.150328132621226],[127.75987759877597,-3.1520167098911145],[127.76347763477634,-3.155393864430877],[127.7670776707767,-3.1604595962405284],[127.77067770677706,-3.1621481735104027]]],[[[127.37107371073711,-1.3671905356250988],[127.3818738187382,-1.3975849264829918],[127.37827378273784,-1.4060278128324057],[127.36027360273602,-1.40771639010228],[127.34947349473498,-1.4127821219119312],[127.3278732787328,-1.4313564718806475],[127.3170731707317,-1.4364222036902845],[127.28467284672848,-1.4246021628011079],[127.28467284672848,-1.4009620810227545],[127.30627306273061,-1.3773219992444012],[127.32427324273243,-1.3739448447046243],[127.32427324273243,-1.3688791128949873],[127.3278732787328,-1.3655019583552104],[127.3278732787328,-1.3604362265455734],[127.33147331473316,-1.3536819174660337],[127.33867338673389,-1.3536819174660337],[127.34587345873462,-1.3655019583552104],[127.35307353073534,-1.3655019583552104],[127.36387363873638,-1.3621248038154476],[127.37107371073711,-1.3671905356250988]]],[[[-89.66069660696607,-1.3401732993069828],[-89.63549635496355,-1.3486161856563967],[-89.61389613896138,-1.3705676901648616],[-89.61389613896138,-1.3925191946733406],[-89.64269642696426,-1.4009620810227545],[-89.67509675096751,-1.3975849264829918],[-89.75789757897579,-1.3604362265455734],[-89.73629736297363,-1.3401732993069828],[-89.72189721897219,-1.3435504538467455],[-89.67509675096751,-1.341861876576857],[-89.66069660696607,-1.3401732993069828]]],[[[-48.339483394833934,-1.0666237815859745],[-48.325083250832506,-1.0750666679353884],[-48.31068310683105,-1.1122153678728068],[-48.29628296282962,-1.1291011405716347],[-48.314283142831414,-1.1544297996198765],[-48.31788317883178,-1.1594955314295277],[-48.31788317883178,-1.1814470359380067],[-48.31788317883178,-1.1898899222874206],[-48.33588335883357,-1.20508711771636],[-48.350283502835026,-1.2084642722561227],[-48.364683646836454,-1.2101528495260112],[-48.37908379083791,-1.2169071586055367],[-48.389883898838974,-1.2118414267958855],[-48.39348393483934,-1.20508711771636],[-48.39348393483934,-1.196644231366946],[-48.39348393483934,-1.1898899222874206],[-48.400684006840066,-1.2033985404464715],[-48.415084150841494,-1.1983328086368346],[-48.433084330843315,-1.1763813041283555],[-48.45108451084511,-1.1679384177789416],[-48.46188461884617,-1.1645612632391789],[-48.465484654846534,-1.1578069541596392],[-48.45468454684547,-1.1409211814608113],[-48.433084330843315,-1.1240354087619977],[-48.42948429484295,-1.117281099682458],[-48.42228422284222,-1.0801323997450396],[-48.40428404284043,-1.068312358855863],[-48.382683826838274,-1.0649352043161002],[-48.339483394833934,-1.0666237815859745]]],[[[-48.19548195481954,-0.8200915001831106],[-48.16308163081629,-0.8504858910409894],[-48.155881558815594,-0.865683086469943],[-48.181081810818114,-0.8673716637398172],[-48.181081810818114,-0.8741259728193569],[-48.155881558815594,-0.8876345909784078],[-48.16308163081629,-0.9214061363760635],[-48.19548195481954,-0.9838834953617237],[-48.20268202682027,-1.010900731679854],[-48.206282062820634,-1.0176550407593794],[-48.224282242822426,-1.0244093498389049],[-48.238682386823854,-1.0277865043786818],[-48.289082890828894,-1.0244093498389049],[-48.307083070830714,-1.0210321952991421],[-48.31788317883178,-1.0092121544099655],[-48.31788317883178,-0.9940149589810261],[-48.31788317883178,-0.9737520317424355],[-48.314283142831414,-0.9534891045038449],[-48.28548285482853,-0.9214061363760635],[-48.274682746827466,-0.8960774773278217],[-48.25308253082531,-0.862305931930166],[-48.249482494824946,-0.8504858910409894],[-48.24228242282422,-0.8420430046915754],[-48.19548195481954,-0.8200915001831106]]],[[[-47.947079470794705,-0.6411023095755439],[-47.93627936279361,-0.6360365777658927],[-47.91467914679146,-0.6411023095755439],[-47.896678966789665,-0.6529223504647206],[-47.88587885878857,-0.6698081231635484],[-47.896678966789665,-0.6917596276720133],[-47.91467914679146,-0.7086454003708411],[-47.96147961479613,-0.7305969048793202],[-47.9650796507965,-0.7153997094503808],[-47.97947979479795,-0.6917596276720133],[-47.98307983079832,-0.6765624322430739],[-47.97947979479795,-0.6731852777033112],[-47.972279722797225,-0.6664309686237857],[-47.9650796507965,-0.6579880822743718],[-47.97947979479795,-0.6512337731948321],[-47.97587975879759,-0.6444794641153067],[-47.972279722797225,-0.637725155035767],[-47.96867968679686,-0.6343480004960043],[-47.96147961479613,-0.63265942322613],[-47.95427954279543,-0.63265942322613],[-47.95067950679507,-0.6360365777658927],[-47.947079470794705,-0.6411023095755439]]],[[[-50.81990819908199,-0.6208393823369533],[-50.812708127081265,-0.6546109277345948],[-50.812708127081265,-0.6698081231635484],[-50.82350823508236,-0.7002025140214272],[-50.84150841508415,-0.7153997094503808],[-50.870308703087034,-0.7221540185299062],[-50.90630906309062,-0.7238425957997947],[-50.9351093510935,-0.7322854821492086],[-50.97470974709748,-0.7694341820866271],[-50.9999099991,-0.777877068436041],[-51.02511025110252,-0.7829428002456922],[-51.053910539105374,-0.7964514184047431],[-51.079110791107894,-0.8116486138336967],[-51.09351093510935,-0.8268458092626361],[-51.10071100711008,-0.8268458092626361],[-51.11151111511114,-0.8065828820240455],[-51.11151111511114,-0.7829428002456922],[-51.10791107911078,-0.7559255639275619],[-51.10071100711008,-0.7305969048793202],[-51.08271082710826,-0.7018910912913157],[-51.07551075510756,-0.6951367822117902],[-51.071910719107194,-0.6934482049419017],[-51.06831068310683,-0.6799395867828366],[-51.064710647106466,-0.6765624322430739],[-51.05751057510574,-0.6748738549731996],[-51.046710467104674,-0.6816281640527251],[-51.039510395103946,-0.6816281640527251],[-51.01791017910179,-0.66811954589366],[-50.98190981909818,-0.6259051141465903],[-50.95670956709566,-0.6073307641778882],[-50.90990909909098,-0.5836906823995207],[-50.85950859508594,-0.5651163324308186],[-50.87750877508773,-0.6005764550983486],[-50.8811088110881,-0.6140850732574137],[-50.8739087390874,-0.6140850732574137],[-50.84150841508415,-0.5583620233512931],[-50.837908379083785,-0.5617391778910559],[-50.83430834308342,-0.5651163324308186],[-50.83430834308342,-0.5735592187802325],[-50.82710827108269,-0.5836906823995207],[-50.81990819908199,-0.6208393823369533]]],[[[-47.65907659076589,-0.5786249505898837],[-47.64827648276483,-0.5921335687489346],[-47.6410764107641,-0.6090193414477625],[-47.637476374763736,-0.6275936914164788],[-47.64827648276483,-0.6478566186550694],[-47.6410764107641,-0.6579880822743718],[-47.6410764107641,-0.6748738549731996],[-47.644676446764464,-0.6934482049419017],[-47.64827648276483,-0.7018910912913157],[-47.65907659076589,-0.7069568231009669],[-47.68427684276841,-0.7069568231009669],[-47.70227702277023,-0.7103339776407296],[-47.69867698676987,-0.6934482049419017],[-47.7058770587706,-0.6748738549731996],[-47.71667716677166,-0.6360365777658927],[-47.75267752677527,-0.6225279596068276],[-47.75267752677527,-0.6073307641778882],[-47.75987759877597,-0.5752477960501068],[-47.75627756277564,-0.5668049097007071],[-47.745477454774544,-0.5634277551609301],[-47.74187741877418,-0.5465419824621023],[-47.73467734677345,-0.5414762506524653],[-47.71667716677166,-0.5465419824621023],[-47.7058770587706,-0.5600506006211674],[-47.70227702277023,-0.5769363733199953],[-47.687876878768776,-0.5853792596694092],[-47.65907659076589,-0.5786249505898837]]],[[[-51.165511655116546,-0.13959486042037383],[-51.122311223112234,-0.13959486042037383],[-51.11871118711187,-0.14466059223002503],[-51.122311223112234,-0.1463491694999135],[-51.1259112591126,-0.1463491694999135],[-51.129511295112934,-0.14803774676978776],[-51.1331113311133,-0.16154636492885288],[-51.13671136711366,-0.1801207148975692],[-51.1331113311133,-0.19531791032650858],[-51.1331113311133,-0.2037607966759225],[-51.14391143911439,-0.21051510575544796],[-51.147511475114754,-0.23077803299403854],[-51.147511475114754,-0.26454957839169424],[-51.165511655116546,-0.3050754328688754],[-51.20151201512016,-0.3439127100761823],[-51.27711277112772,-0.4013243372521913],[-51.34191341913419,-0.43340730537997274],[-51.374313743137435,-0.4604245416980888],[-51.39231392313923,-0.46717885077761423],[-51.406714067140655,-0.4604245416980888],[-51.40311403114032,-0.435095882649847],[-51.39231392313923,-0.4249644190305588],[-51.374313743137435,-0.4165215326811449],[-51.35991359913598,-0.40807864633173097],[-51.356313563135615,-0.3911928736329031],[-51.35271352713528,-0.3861271418232519],[-51.33831338313382,-0.3759956782039495],[-51.331113311133095,-0.36586421458466134],[-51.26271262712626,-0.2189579921048619],[-51.24471244712447,-0.1986950648662713],[-51.23391233912338,-0.1801207148975692],[-51.22671226712268,-0.175054983087918],[-51.197911979119795,-0.1699892512782668],[-51.190711907119066,-0.16830067400837834],[-51.18351183511834,-0.16323494219874135],[-51.165511655116546,-0.14466059223002503],[-51.165511655116546,-0.13959486042037383]]],[[[-50.08910089100891,0.3061895388286615],[-50.1071010710107,0.2926809206695964],[-50.16470164701647,0.2622865298117034],[-50.218702187021876,0.24540075711287557],[-50.218702187021876,0.2622865298117034],[-50.200702007020055,0.28930376612983366],[-50.13950139501395,0.3264524660672521],[-50.11430114301143,0.33827250695642874],[-50.092700927009275,0.33827250695642874],[-50.08550085500855,0.3213867342576009],[-50.08910089100891,0.3061895388286615]]],[[[-90.51390513905139,0.28423803432018246],[-90.52470524705247,0.2876151888599452],[-90.53190531905318,0.2960580752093591],[-90.53910539105391,0.30450096155877304],[-90.54630546305462,0.3112552706382985],[-90.54270542705427,0.33320677514677755],[-90.52470524705247,0.3500925478456054],[-90.50310503105031,0.3602240114649078],[-90.48150481504814,0.3652897432745448],[-90.45990459904598,0.3585354341950193],[-90.43470434704346,0.34671539330584267],[-90.41670416704167,0.3315181978768891],[-90.40950409504094,0.3112552706382985],[-90.41310413104131,0.2960580752093591],[-90.43110431104311,0.28086087978041974],[-90.45630456304562,0.2673522616213546],[-90.47430474304743,0.2622865298117034],[-90.48870488704887,0.2673522616213546],[-90.49950499504995,0.28086087978041974],[-90.51390513905139,0.28423803432018246]]],[[[-90.79830798307982,0.6540364564244925],[-90.75870758707586,0.6303963746461392],[-90.74430744307443,0.5848047883593068],[-90.76230762307623,0.5544103975014139],[-90.80550805508055,0.5712961702002417],[-90.79830798307982,0.5932476747087065],[-90.80550805508055,0.6354621064557762],[-90.79830798307982,0.6540364564244925]]],[[[-50.200702007020055,0.7502853608078084],[-50.24030240302403,0.7452196289981572],[-50.276302763027616,0.7452196289981572],[-50.283502835028344,0.7688597107765105],[-50.276302763027616,0.8093855652537059],[-50.225902259022575,0.8600428833501752],[-50.15750157501574,0.8870601196683054],[-50.13230132301322,0.9140773559864215],[-50.11070110701107,0.9174545105261984],[-50.08550085500855,0.91576593325631],[-50.06030060300603,0.9022573150972448],[-50.02790027900278,0.9039458923671333],[-50.017100171001715,0.8921258514779566],[-50.024300243002415,0.8735515015092403],[-50.03510035100351,0.8532885742706497],[-50.049500495004935,0.8212056061428825],[-50.067500675006755,0.8076969879838174],[-50.074700747007455,0.7992541016344035],[-50.08190081900818,0.7789911743958129],[-50.10350103501034,0.7553510926174596],[-50.11070110701107,0.7519739380776826],[-50.12150121501216,0.7519739380776826],[-50.150301503015015,0.7502853608078084],[-50.200702007020055,0.7502853608078084]]],[[[-50.06390063900639,0.9225202423358354],[-50.07110071100712,0.9309631286852493],[-50.099900999009975,0.9394060150346633],[-50.099900999009975,0.9596689422732538],[-50.074700747007455,0.9765547149720817],[-50.049500495004935,0.9849976013214956],[-50.03870038700387,1.0069491058299747],[-50.03150031500314,1.0153919921793886],[-50.017100171001715,1.025523455798691],[-49.999099990999895,1.033966342148105],[-49.966699666996675,1.0424092284975046],[-49.94509945099452,1.0626721557361094],[-49.9270992709927,1.0694264648156349],[-49.916299162991635,1.0559178466565697],[-49.93789937899379,1.0238348785288025],[-49.94509945099452,1.0086376830998631],[-49.95229952299522,0.9968176422106723],[-49.95589955899558,0.9866861785913841],[-49.96309963099631,0.973177560432319],[-49.999099990999895,0.9529146331937284],[-50.00630006300062,0.9444717468443145],[-50.00990009900099,0.9410945923045517],[-50.024300243002415,0.937717437764789],[-50.03150031500314,0.9343402832250121],[-50.06390063900639,0.9225202423358354]]],[[[128.1918819188192,2.367942385355434],[128.1918819188192,2.354433767196369],[128.17028170281702,2.29702214002036],[128.15588155881562,2.2868906764010575],[128.14148141481417,2.29702214002036],[128.13068130681307,2.3172850672589504],[128.12348123481235,2.3358594172276526],[128.12348123481235,2.3476794581168434],[128.1270812708127,2.3578109217361316],[128.13428134281344,2.367942385355434],[128.14148141481417,2.378073848974722],[128.1486814868149,2.389893889863899],[128.15588155881562,2.4000253534832012],[128.159481594816,2.4050910852928524],[128.17388173881739,2.4000253534832012],[128.1918819188192,2.367942385355434]]],[[[120.86220862208626,5.574550620862681],[120.87300873008729,5.572862043592792],[120.89100891008911,5.557664848163853],[120.90540905409057,5.537401920925248],[120.90900909009093,5.520516148226434],[120.89820898208984,5.498564643717955],[120.88020880208802,5.495187489178193],[120.85140851408516,5.505318952797481],[120.84420844208444,5.510384684607132],[120.83340833408334,5.520516148226434],[120.82260822608225,5.534024766385485],[120.81900819008189,5.542467652734899],[120.82260822608225,5.552599116354202],[120.83700837008371,5.56273057997349],[120.8478084780848,5.571173466322904],[120.86220862208626,5.574550620862681]]],[[[121.90261902619028,6.033843638270767],[121.92781927819277,6.045663679159944],[121.94221942219423,6.045663679159944],[121.94221942219423,6.033843638270767],[121.93861938619386,6.028777906461116],[121.91341913419137,6.015269288302065],[121.87021870218706,6.000072092873111],[121.85941859418597,6.001760670143],[121.80541805418056,6.03722079281053],[121.78381783817838,6.059172297319009],[121.77661776617765,6.077746647287725],[121.79461794617947,6.074369492747948],[121.84501845018451,6.042286524620181],[121.87021870218706,6.033843638270767],[121.90261902619028,6.033843638270767]]],[[[-58.37998379983799,6.972692600325544],[-58.33318333183331,6.965938291246019],[-58.33318333183331,6.960872559436368],[-58.39078390783908,6.9203467049591865],[-58.44118441184412,6.905149509530247],[-58.45918459184591,6.883198005021768],[-58.462784627846275,6.900083777720596],[-58.45918459184591,6.923723859498949],[-58.44838448384483,6.9422982094676655],[-58.43038430384303,6.954118250356842],[-58.42318423184231,6.967626868515907],[-58.41958419584195,6.972692600325544],[-58.40878408784087,6.974381177595433],[-58.37998379983799,6.972692600325544]]],[[[-81.15021150211501,7.562006067514616],[-81.13581135811357,7.568760376594142],[-81.11781117811178,7.573826108403793],[-81.0890108901089,7.582268994753207],[-81.07461074610745,7.577203262943556],[-81.06021060210601,7.575514685673667],[-81.03141031410314,7.575514685673667],[-81.04581045810458,7.553563181165202],[-81.0530105301053,7.5451202948157885],[-81.06381063810637,7.540054563006137],[-81.07461074610745,7.534988831196486],[-81.08181081810818,7.533300253926612],[-81.09261092610926,7.538365985736249],[-81.09621096210962,7.541743140276012],[-81.10341103411034,7.5451202948157885],[-81.11061110611105,7.546808872085663],[-81.11781117811178,7.546808872085663],[-81.12861128611286,7.5451202948157885],[-81.13581135811357,7.540054563006137],[-81.13941139411394,7.533300253926612],[-81.1430114301143,7.528234522116961],[-81.17181171811718,7.513037326688007],[-81.18621186211861,7.496151553989179],[-81.18981189811898,7.4927743994494165],[-81.20061200612005,7.4927743994494165],[-81.20781207812078,7.496151553989179],[-81.2150121501215,7.497840131259068],[-81.21861218612186,7.499528708528956],[-81.24741247412474,7.489397244909654],[-81.2510125101251,7.491085822179542],[-81.24381243812438,7.502905863068719],[-81.2330123301233,7.513037326688007],[-81.22221222212222,7.521480213037421],[-81.21141211412113,7.526545944847072],[-81.17541175411753,7.531611676656723],[-81.16461164611646,7.540054563006137],[-81.15741157411574,7.551874603895314],[-81.15021150211501,7.562006067514616]]],[[[-82.34182341823418,8.259388479976167],[-82.3130231302313,8.24081413000745],[-82.33462334623346,8.235748398197813],[-82.37062370623705,8.217174048229097],[-82.3850238502385,8.212108316419446],[-82.39942399423994,8.218862625498986],[-82.41382413824138,8.230682666388162],[-82.42462424624246,8.245879861817102],[-82.43182431824317,8.259388479976167],[-82.42462424624246,8.259388479976167],[-82.4030240302403,8.257699902706278],[-82.3490234902349,8.293160025373822],[-82.32742327423274,8.288094293564171],[-82.31662316623166,8.277962829944869],[-82.31662316623166,8.26783136632558],[-82.32742327423274,8.26276563451593],[-82.34182341823418,8.26783136632558],[-82.34182341823418,8.259388479976167]]],[[[-61.01521015210152,8.61061255211176],[-61.01161011610115,8.607235397571998],[-61.0080100801008,8.605546820302123],[-61.00441004410044,8.603858243032235],[-60.99720997209971,8.602169665762347],[-60.99360993609936,8.576841006714119],[-61.00441004410044,8.553200924935751],[-61.026010260102595,8.543069461316463],[-61.051210512105115,8.55488950220564],[-61.051210512105115,8.541380884046575],[-61.0440104401044,8.52787226588751],[-61.04041040410404,8.517740802268222],[-61.126811268112675,8.507609338648919],[-61.23121231212312,8.516052224998333],[-61.27081270812708,8.514363647728459],[-61.260012600126004,8.536315152236924],[-61.24561245612456,8.556578079475514],[-61.227612276122755,8.571775274904468],[-61.202412024120235,8.57515242944423],[-61.18081180811808,8.57008669763458],[-61.14841148411483,8.543069461316463],[-61.126811268112675,8.53462657496705],[-61.13761137611375,8.551512347665877],[-61.14121141211412,8.551512347665877],[-61.13761137611375,8.559955234015291],[-61.1340113401134,8.565020965824928],[-61.126811268112675,8.57008669763458],[-61.126811268112675,8.571775274904468],[-61.09801098010979,8.602169665762347],[-61.08721087210871,8.607235397571998],[-61.02241022410223,8.61061255211176],[-61.01521015210152,8.61061255211176]]],[[[106.21006210062103,9.620381759501626],[106.22446224462243,9.608561718612435],[106.27846278462783,9.595053100453384],[106.29286292862929,9.58661021410397],[106.28926289262893,9.561281555055729],[106.28566285662856,9.5443957823569],[106.27126271262716,9.534264318737598],[106.24246242462425,9.534264318737598],[106.24246242462425,9.541018627817138],[106.24966249662498,9.55959297778584],[106.23526235262352,9.58154448229432],[106.2136621366214,9.600118832263021],[106.19566195661957,9.610250295882324],[106.18846188461885,9.603495986802798],[106.2028620286203,9.584921636834082],[106.22086220862212,9.573101595944905],[106.2280622806228,9.564658709595491],[106.20646206462067,9.562970132325603],[106.19566195661957,9.571413018675017],[106.16326163261635,9.623758914041389],[106.1380613806138,9.654153304899268],[106.12726127261271,9.672727654867984],[106.12006120061204,9.689613427566812],[106.11646116461168,9.71156493207529],[106.10926109261095,9.72676212750423],[106.08766087660877,9.755467941092235],[106.0948609486095,9.760533672901886],[106.0948609486095,9.755467941092235],[106.09846098460986,9.752090786552472],[106.10566105661059,9.74702505474282],[106.15606156061563,9.67948196394751],[106.2028620286203,9.632201800390803],[106.21006210062103,9.620381759501626]]],[[[106.72486724867252,10.268795431136581],[106.74646746467465,10.26372969932693],[106.75726757267574,10.25697539024739],[106.75726757267574,10.245155349358214],[106.75366753667538,10.2367124630088],[106.73926739267392,10.229958153929275],[106.72486724867252,10.226580999389512],[106.7176671766718,10.231646731199163],[106.71046710467107,10.24346677208834],[106.68886688866888,10.251909658437754],[106.55926559265595,10.275549740216107],[106.51246512465127,10.295812667454697],[106.52686526865267,10.297501244724586],[106.55926559265595,10.282304049295632],[106.5880658806588,10.277238317485995],[106.70326703267034,10.275549740216107],[106.72486724867252,10.268795431136581]]],[[[124.4658446584466,10.712891253115728],[124.50544505445055,10.692628325877138],[124.519845198452,10.665611089559007],[124.50904509045091,10.641971007780654],[124.46224462244624,10.631839544161352],[124.40824408244083,10.64872531686018],[124.40824408244083,10.684185439527724],[124.43704437044374,10.712891253115728],[124.4658446584466,10.712891253115728]]],[[[125.82305823058232,10.734842757624207],[125.83025830258305,10.719645562195254],[125.82665826658268,10.709514098575966],[125.81225812258123,10.701071212226552],[125.79785797857977,10.699382634956663],[125.779857798578,10.699382634956663],[125.76905769057691,10.701071212226552],[125.76185761857619,10.706136944036189],[125.7510575105751,10.71795698492538],[125.74025740257406,10.724711294004905],[125.70425704257042,10.741597066703733],[125.68265682656829,10.75341710759291],[125.67905679056793,10.778745766641151],[125.68625686256865,10.805763002959281],[125.70785707857078,10.817583043848458],[125.73305733057333,10.807451580229156],[125.74385743857442,10.75848283940256],[125.76185761857619,10.741597066703733],[125.77625776257764,10.73821991216397],[125.80865808658086,10.739908489433844],[125.82305823058232,10.734842757624207]]],[[[80.96660966609664,15.795508835462655],[80.98460984609846,15.780311640033702],[80.98820988209883,15.770180176414414],[80.98460984609846,15.761737290065],[80.97020970209701,15.749917249175823],[80.94140941409415,15.741474362826409],[80.9162091620916,15.75498298098546],[80.86940869408693,15.812394608161469],[80.88020880208802,15.8394118444796],[80.88740887408875,15.846166153559125],[80.93780937809379,15.819148917241009],[80.96660966609664,15.795508835462655]]],[[[111.96291962919628,21.658249116495384],[111.98811988119883,21.658249116495384],[111.99891998919992,21.653183384685732],[112.00612006120065,21.64474049833632],[112.00612006120065,21.636297611986905],[111.99891998919992,21.621100416557965],[111.9809198091981,21.61265753020855],[111.93051930519306,21.60252606658925],[111.91971919719197,21.60252606658925],[111.90891908919087,21.60083748931936],[111.89811898118984,21.595771757509723],[111.88731887318875,21.589017448430184],[111.86931869318693,21.573820253001244],[111.8621186211862,21.568754521191593],[111.82251822518225,21.562000212112068],[111.8081180811808,21.56537736665183],[111.81171811718116,21.568754521191593],[111.81531815318152,21.572131675731356],[111.82251822518225,21.575508830271133],[111.84051840518407,21.6075917983989],[111.84411844118443,21.624477571097728],[111.8369183691837,21.64474049833632],[111.8477184771848,21.64811765287608],[111.88371883718838,21.64980623014597],[111.89451894518947,21.653183384685732],[111.9161191611916,21.66331484830502],[111.9269192691927,21.66500342557491],[111.93051930519306,21.661626271035146],[111.93411934119342,21.658249116495384],[111.93771937719379,21.653183384685732],[111.94491944919451,21.64980623014597],[111.95211952119524,21.651494807415844],[111.95571955719561,21.656560539225495],[111.96291962919628,21.658249116495384]]],[[[-71.50931509315093,21.70552928005209],[-71.52731527315272,21.717349320941267],[-71.57411574115741,21.735923670909983],[-71.5921159211592,21.754498020878685],[-71.58491584915849,21.756186598148574],[-71.58131581315813,21.757875175418462],[-71.57771577715776,21.761252329958225],[-71.57771577715776,21.766318061767876],[-71.54171541715417,21.746055134529286],[-71.52731527315272,21.739300825449746],[-71.5021150211502,21.73254651637022],[-71.48051480514805,21.72579220729068],[-71.46251462514624,21.71059501186174],[-71.45171451714516,21.69033208462315],[-71.45891458914589,21.66500342557491],[-71.46971469714697,21.661626271035146],[-71.48411484114841,21.67513488919421],[-71.50931509315093,21.70552928005209]]],[[[113.39213392133922,22.028047538599694],[113.39933399333995,22.021293229520154],[113.40293402934032,22.01791607498039],[113.40293402934032,22.01453892044063],[113.40653406534068,22.007784611361103],[113.32373323733236,22.011161765900866],[113.30933309333096,22.02467038405993],[113.34533345333455,22.068573393076875],[113.35253352533528,22.073639124886526],[113.36333363333637,22.0753277021564],[113.3741337413374,22.08039343396605],[113.37773377733777,22.088836320315465],[113.38133381333813,22.088836320315465],[113.3849338493385,22.088836320315465],[113.3849338493385,22.085459165775703],[113.3849338493385,22.08208201123594],[113.38853388533886,22.078704856696177],[113.38853388533886,22.0753277021564],[113.39213392133922,22.071950547616638],[113.39933399333995,22.068573393076875],[113.41373413734141,22.0753277021564],[113.41013410134104,22.063507661267224],[113.39213392133922,22.028047538599694]]],[[[113.36333363333637,22.15806798838065],[113.35253352533528,22.131050752062535],[113.33453334533345,22.100656361204642],[113.31293312933133,22.07701627942629],[113.28773287732878,22.068573393076875],[113.28053280532805,22.0753277021564],[113.26973269732696,22.088836320315465],[113.26253262532629,22.105722093014293],[113.27333273332732,22.11923071117336],[113.28053280532805,22.12260786571312],[113.29133291332914,22.125985020252884],[113.29853298532987,22.129362174792647],[113.30213302133023,22.134427906602298],[113.3057330573306,22.141182215681823],[113.30933309333096,22.147936524761363],[113.31653316533169,22.15469083384089],[113.32373323733236,22.15806798838065],[113.32733327333273,22.146247947491474],[113.33453334533345,22.149625102031237],[113.34893348933491,22.156379411110777],[113.36333363333637,22.15806798838065]]],[[[117.07137071370715,23.473469681619278],[117.08937089370897,23.4616496407301],[117.10377103771037,23.468403949809627],[117.10737107371074,23.481912567968692],[117.12537125371256,23.481912567968692],[117.1217712177122,23.465026795269864],[117.13257132571329,23.459961063460213],[117.14337143371432,23.449829599840925],[117.13617136171365,23.41943520898303],[117.12897128971292,23.39917228174444],[117.10737107371074,23.404238013554092],[117.08217082170825,23.410992322633618],[117.04977049770497,23.404238013554092],[117.02457024570248,23.41436947717338],[117.01377013770139,23.41605805444327],[117.0029700297003,23.41943520898303],[116.9921699216992,23.41943520898303],[116.97056970569707,23.41943520898303],[116.94896948969489,23.42112378625292],[116.94176941769416,23.429566672602334],[116.95256952569525,23.44138671349151],[116.96696966969671,23.453206754380687],[116.98136981369817,23.459961063460213],[116.9885698856989,23.454895331650576],[116.9921699216992,23.448141022571036],[116.99936999369993,23.44138671349151],[117.01017010170102,23.439698136221622],[117.01737017370175,23.44138671349151],[117.02817028170284,23.443075290761385],[117.03897038970393,23.446452445301162],[117.04257042570424,23.465026795269864],[117.04977049770497,23.473469681619278],[117.06417064170643,23.47853541342893],[117.07137071370715,23.475158258889167],[117.07137071370715,23.473469681619278]]],[[[-110.32490324903249,24.51532185713691],[-110.31410314103141,24.50519039351761],[-110.30330303303033,24.50350181624772],[-110.30330303303033,24.48830462081878],[-110.2961029610296,24.476484579929604],[-110.28890288902889,24.469730270850064],[-110.29250292502925,24.457910229960888],[-110.30690306903068,24.456221652691013],[-110.31410314103141,24.44609018907171],[-110.30690306903068,24.432581570912646],[-110.31770317703177,24.42582726183312],[-110.32130321303212,24.417384375483707],[-110.32490324903249,24.40049860278488],[-110.34650346503464,24.402187180054767],[-110.35010350103501,24.41063006640418],[-110.35370353703537,24.417384375483707],[-110.35010350103501,24.429204416372883],[-110.35370353703537,24.434270148182534],[-110.36450364503645,24.435958725452423],[-110.37170371703716,24.429204416372883],[-110.37170371703716,24.439335879992186],[-110.37530375303753,24.44609018907171],[-110.35730357303572,24.45284449815125],[-110.36090360903609,24.457910229960888],[-110.36810368103681,24.459598807230776],[-110.36810368103681,24.464664539040427],[-110.37890378903789,24.46804169358019],[-110.3861038610386,24.47310742538984],[-110.38970389703897,24.481550311739255],[-110.39330393303933,24.498436084438083],[-110.3861038610386,24.50519039351761],[-110.39690396903968,24.511944702597134],[-110.39690396903968,24.518699011676674],[-110.38250382503824,24.523764743486325],[-110.37530375303753,24.53051905256585],[-110.3861038610386,24.528830475295962],[-110.39690396903968,24.5355847843755],[-110.39330393303933,24.54571624799479],[-110.40410404104041,24.544027670724915],[-110.40770407704076,24.55078197980444],[-110.40410404104041,24.559224866153855],[-110.41130411304113,24.562602020693618],[-110.41490414904149,24.569356329773157],[-110.40050400504005,24.581176370662334],[-110.39690396903968,24.591307834281622],[-110.3861038610386,24.58624210247197],[-110.37890378903789,24.574422061582794],[-110.37530375303753,24.56766775250327],[-110.36450364503645,24.557536288883966],[-110.36090360903609,24.547404825264678],[-110.36450364503645,24.532207629835725],[-110.34650346503464,24.53051905256585],[-110.32490324903249,24.51532185713691]]],[[[-108.83088830888309,25.427153582873558],[-108.82008820088201,25.420399273794033],[-108.79848798487984,25.393382037475902],[-108.78768787687876,25.38493915112649],[-108.80568805688057,25.3748076875072],[-108.8380883808838,25.388316305666265],[-108.8740887408874,25.408579232904856],[-108.89928899288992,25.420399273794033],[-108.90648906489065,25.420399273794033],[-108.91728917289173,25.423776428333795],[-108.92448924489244,25.427153582873558],[-108.93168931689317,25.427153582873558],[-108.99288992889929,25.427153582873558],[-109.00729007290073,25.43221931468321],[-109.01449014490144,25.44741651011215],[-108.89928899288992,25.445727932842274],[-108.88128881288813,25.44235077830251],[-108.83088830888309,25.427153582873558]]],[[[119.30699306993068,26.03672997730122],[119.36819368193682,26.01477847279274],[119.40059400594009,25.996204122824025],[119.40419404194046,25.977629772855323],[119.389793897939,25.96749830923602],[119.38259382593827,25.96749830923602],[119.37179371793718,25.970875463775783],[119.34659346593469,25.975941195585435],[119.31059310593105,25.986072659204737],[119.30339303393038,25.99113839101439],[119.28899288992892,25.99451554555415],[119.27459274592746,25.997892700093914],[119.25659256592564,26.001269854633676],[119.24939249392497,26.013089895522853],[119.24579245792461,26.02659851368192],[119.23859238592388,26.038418554571095],[119.22779227792279,26.04686144092051],[119.2169921699217,26.058681481809685],[119.20979209792097,26.09920733628688],[119.22059220592206,26.08907587266758],[119.24219242192424,26.05699290453981],[119.25659256592564,26.04686144092051],[119.2709927099271,26.041795709110858],[119.30699306993068,26.03672997730122]]],[[[34.00774007740077,27.509169356638935],[34.02934029340295,27.502415047559396],[34.03654036540365,27.485529274860568],[34.04014040140402,27.466954924891866],[34.05094050940511,27.45513488400269],[34.05094050940511,27.44838057492315],[34.04374043740438,27.450069152193038],[34.02934029340295,27.451757729462912],[34.01134011340113,27.47033207943163],[34.00774007740077,27.47539781124128],[33.98613986139861,27.482152120320805],[33.97533975339755,27.487217852130456],[33.96813968139682,27.497349315749744],[33.95733957339573,27.504103624829284],[33.93213932139321,27.49397216120998],[33.92493924939251,27.50072647028952],[33.91773917739178,27.512546511178698],[33.914139141391416,27.524366552067875],[33.91773917739178,27.529432283877526],[33.92493924939251,27.534498015687163],[33.93213932139321,27.53618659295705],[33.9429394293943,27.53618659295705],[33.96453964539646,27.534498015687163],[33.971739717397185,27.529432283877526],[33.97893978939791,27.524366552067875],[33.98973989739898,27.51761224298835],[33.99333993339934,27.514235088448572],[34.00774007740077,27.509169356638935]]],[[[122.23742237422374,30.31389620191409],[122.20502205022052,30.29194469740561],[122.20502205022052,30.285190388326086],[122.22302223022234,30.27843607924656],[122.23022230222301,30.27843607924656],[122.21942219422198,30.269993192897147],[122.21582215822161,30.263238883817607],[122.21582215822161,30.254795997468193],[122.21582215822161,30.248041688388668],[122.20142201422016,30.241287379309142],[122.1870218702187,30.242975956579016],[122.1726217262173,30.248041688388668],[122.13662136621366,30.254795997468193],[122.11502115021153,30.264927461087495],[122.07182071820722,30.29194469740561],[122.08262082620826,30.302076161024914],[122.08622086220862,30.305453315564677],[122.09702097020971,30.310519047374328],[122.10422104221044,30.31389620191409],[122.12222122221226,30.31896193372374],[122.14742147421475,30.320650510993616],[122.15462154621548,30.322339088263504],[122.16542165421657,30.332470551882807],[122.19422194221943,30.339224860962332],[122.21222212222125,30.345979170041858],[122.22662226622265,30.332470551882807],[122.21942219422198,30.325716242803267],[122.21942219422198,30.320650510993616],[122.22662226622265,30.31558477918398],[122.23742237422374,30.31389620191409]]],[[[122.39942399423995,30.45573669258424],[122.41022410224105,30.452359538044476],[122.41742417424177,30.442228074425174],[122.42462424624244,30.415210838107058],[122.40302403024032,30.41858799264682],[122.36342363423637,30.43378518807576],[122.34902349023491,30.435473765345648],[122.3058230582306,30.42365372445647],[122.28422284222842,30.421965147186583],[122.27342273422738,30.435473765345648],[122.27702277022769,30.437162342615522],[122.28782287822878,30.442228074425174],[122.27702277022769,30.445605228964936],[122.27342273422738,30.450670960774588],[122.27342273422738,30.459113847124],[122.27342273422738,30.469245310743304],[122.27702277022769,30.479376774362592],[122.28062280622805,30.482753928902355],[122.28782287822878,30.482753928902355],[122.29142291422914,30.470933888013178],[122.29862298622987,30.470933888013178],[122.31302313023133,30.472622465283067],[122.33822338223382,30.459113847124],[122.34902349023491,30.46080242439389],[122.3706237062371,30.477688197092718],[122.36702367023673,30.462491001663764],[122.37422374223746,30.457425269854127],[122.3850238502385,30.45573669258424],[122.39942399423995,30.45573669258424]]],[[[121.83781837818378,31.374322727400425],[121.85221852218524,31.372634150130537],[121.8666186661867,31.36587984105101],[121.87741877418773,31.354059800161835],[121.8810188101881,31.337174027463007],[121.87741877418773,31.32028825476418],[121.8666186661867,31.30340248206535],[121.85221852218524,31.293271018446063],[121.83421834218342,31.293271018446063],[121.82341823418233,31.301713904795463],[121.81261812618129,31.32028825476418],[121.79461794617947,31.369256995590774],[121.80541805418056,31.374322727400425],[121.83781837818378,31.374322727400425]]],[[[119.87939879398795,32.12573961249822],[119.90099900999013,32.08183660348128],[119.90099900999013,32.073393717131864],[119.89019890198904,32.07508229440175],[119.85779857798582,32.10209953071987],[119.84339843398436,32.108853839799394],[119.81459814598145,32.115608148878934],[119.80379803798041,32.120673880688585],[119.79659796597969,32.120673880688585],[119.79299792997932,32.12236245795846],[119.7857978579786,32.129116767038],[119.78939789397896,32.134182498847636],[119.79299792997932,32.1375596533874],[119.79299792997932,32.14262538519705],[119.78939789397896,32.16626546697542],[119.80019800198005,32.178085507864594],[119.81099810998109,32.18990554875377],[119.81819818198181,32.203414166912836],[119.78939789397896,32.21185705326225],[119.74979749797501,32.22874282596108],[119.7209972099721,32.24900575319967],[119.71739717397173,32.27264583497802],[119.74979749797501,32.29290876221661],[119.7857978579786,32.29122018494674],[119.81459814598145,32.276022989517784],[119.83259832598327,32.25238290773943],[119.87579875798758,32.15444542608623],[119.87939879398795,32.12573961249822]]],[[[133.07353073530737,36.127667742120224],[133.08793087930883,36.127667742120224],[133.08793087930883,36.11753627850092],[133.08793087930883,36.110781969421396],[133.07353073530737,36.10740481488163],[133.05913059130592,36.10233908307198],[133.0519305193052,36.085453310373154],[133.05553055530555,36.07532184675385],[133.05553055530555,36.06687896040445],[133.05553055530555,36.0618132285948],[133.04473044730446,36.05505891951526],[133.0375303753038,36.05337034224539],[133.0267302673027,36.05674749678515],[133.01953019530197,36.06012465132491],[133.0159301593016,36.06519038313456],[133.0159301593016,36.07532184675385],[133.0159301593016,36.0803875785635],[133.00873008730088,36.08207615583339],[133.00153001530015,36.08207615583339],[132.9907299072991,36.07701042402374],[132.99432994329942,36.06687896040445],[133.0051300513005,36.048304610435736],[132.99432994329942,36.03817314681643],[132.97992979929802,36.03986172408632],[132.96552965529656,36.048304610435736],[132.9511295112951,36.0618132285948],[132.96912969129693,36.08207615583339],[133.0159301593016,36.110781969421396],[133.0375303753038,36.131044896659986],[133.05553055530555,36.12429058758046],[133.07353073530737,36.127667742120224]]],[[[131.92151921519218,43.01875158051152],[131.92151921519218,43.00862011689222],[131.92511925119254,43.00524296235244],[131.92151921519218,42.99680007600304],[131.91431914319145,42.984980035113864],[131.88191881918823,42.96133995333551],[131.83871838718386,42.96133995333551],[131.79191791917918,42.97484857149456],[131.7559175591756,42.990045766923515],[131.79191791917918,42.99680007600304],[131.77391773917742,43.00524296235244],[131.77031770317706,43.01537442597174],[131.77391773917742,43.020440157781394],[131.78471784717846,43.017063003241645],[131.79191791917918,43.017063003241645],[131.78831788317882,43.03394877594047],[131.78471784717846,43.04070308502],[131.77751777517778,43.04408023955975],[131.7991179911799,43.052523125909175],[131.8207182071821,43.0491459713694],[131.83871838718386,43.04239166228987],[131.86031860318604,43.03732593048022],[131.86031860318604,43.04408023955975],[131.82791827918282,43.06434316679835],[131.85671856718568,43.060966012258575],[131.8747187471875,43.05083454863927],[131.89271892718926,43.03563735321035],[131.92151921519218,43.02381731232117],[131.92151921519218,43.01875158051152]]],[[[-55.924759247592476,47.677536268117876],[-55.93915939159392,47.6572733408793],[-55.924759247592476,47.63869899091057],[-55.899558995589956,47.62519037275152],[-55.877958779587786,47.61674748640209],[-55.903159031590306,47.606616022782816],[-55.928359283592826,47.604927445512914],[-55.95715957159571,47.606616022782816],[-56.039960399604,47.62012464094187],[-56.06516065160652,47.63025610456117],[-56.09756097560975,47.63025610456117],[-56.10836108361083,47.637010413640695],[-56.10836108361083,47.65389618633952],[-56.08316083160831,47.6657162272287],[-55.96795967959679,47.685979154467304],[-55.93915939159392,47.685979154467304],[-55.924759247592476,47.677536268117876]]],[[[-128.5338853388534,52.72807088233702],[-128.53028530285303,52.73313661414667],[-128.53748537485376,52.76690815954433],[-128.5338853388534,52.778728200433505],[-128.5230852308523,52.80236828221186],[-128.50868508685087,52.863157063927645],[-128.50148501485015,52.87159995027707],[-128.48348483484835,52.86484564119752],[-128.47268472684726,52.85302560030834],[-128.46548465484653,52.83951698214929],[-128.45828458284583,52.80912259129141],[-128.45468454684547,52.78885966405281],[-128.46188461884617,52.77535104589376],[-128.479884798848,52.78210535497328],[-128.47628476284763,52.70611937782854],[-128.48348483484835,52.69092218239962],[-128.50148501485015,52.66897067789114],[-128.50868508685087,52.653773482462185],[-128.51588515885157,52.653773482462185],[-128.53028530285303,52.680790718780315],[-128.5230852308523,52.68754502785984],[-128.53028530285303,52.694299336939366],[-128.54108541085412,52.707807955098446],[-128.54108541085412,52.721316573257496],[-128.5338853388534,52.72807088233702]]],[[[-129.65349653496534,53.13164084983899],[-129.62829628296282,53.11813223167994],[-129.59949599495994,53.09280357263168],[-129.58869588695887,53.072540645393104],[-129.61749617496176,53.064097759043676],[-129.66069660696607,53.06916349085333],[-129.69309693096932,53.08267210901241],[-129.71829718297184,53.104623613520886],[-129.74349743497436,53.13164084983899],[-129.72189721897217,53.13670658164864],[-129.69309693096932,53.13839515891854],[-129.6678966789668,53.13670658164864],[-129.65349653496534,53.13164084983899]]],[[[-130.65430654306545,54.1177699754505],[-130.67230672306724,54.11270424364085],[-130.69750697506976,54.11439282091072],[-130.7191071910719,54.12283570726015],[-130.72990729907298,54.1363443254192],[-130.74070740707407,54.1363443254192],[-130.7911079110791,54.16167298446743],[-130.80550805508057,54.173493025356635],[-130.79470794707947,54.187001643515686],[-130.78750787507875,54.20219883894464],[-130.77670776707765,54.214018879833816],[-130.75510755107553,54.214018879833816],[-130.67950679506794,54.17180444808673],[-130.65070650706508,54.14478721176863],[-130.65430654306545,54.1177699754505]]],[[[-130.5931059310593,54.7425435653071],[-130.59670596705968,54.74592071984685],[-130.6111061110611,54.75605218346615],[-130.61470614706147,54.76449506981555],[-130.6039060390604,54.769560801625204],[-130.58950589505895,54.77124937889511],[-130.57870578705786,54.774626533434855],[-130.51030510305102,54.80502092429276],[-130.4851048510485,54.81008665610241],[-130.45990459904598,54.80333234702286],[-130.45270452704528,54.793200883403586],[-130.43470434704346,54.769560801625204],[-130.4419044190442,54.761117915275804],[-130.45270452704528,54.73578925622755],[-130.45630456304562,54.725657792608274],[-130.46350463504635,54.712149174449195],[-130.47790477904778,54.712149174449195],[-130.51030510305102,54.7222806380685],[-130.5139051390514,54.717214906258846],[-130.52110521105212,54.71046059717932],[-130.53550535505354,54.70539486536967],[-130.54630546305464,54.712149174449195],[-130.5571055710557,54.71890348352872],[-130.58230582305822,54.734100678957674],[-130.5931059310593,54.7425435653071]]],[[[-130.20790207902078,54.81177523337229],[-130.21150211502115,54.80333234702286],[-130.21150211502115,54.796578037943334],[-130.21870218702188,54.793200883403586],[-130.2223022230222,54.78982372886381],[-130.21870218702188,54.78982372886381],[-130.20070200702008,54.78982372886381],[-130.20430204302042,54.78306941978428],[-130.20790207902078,54.769560801625204],[-130.20790207902078,54.76280649254568],[-130.2223022230222,54.744232142576976],[-130.24030240302403,54.730723524417925],[-130.28350283502834,54.71552632898897],[-130.2979029790298,54.712149174449195],[-130.3231032310323,54.71046059717932],[-130.33750337503375,54.708772019909446],[-130.36270362703627,54.70032913356002],[-130.3771037710377,54.698640556290144],[-130.3771037710377,54.70539486536967],[-130.3411034110341,54.73747783349745],[-130.31950319503196,54.7509864516565],[-130.27270272702725,54.76449506981555],[-130.2331023310233,54.80333234702286],[-130.20790207902078,54.81177523337229]]],[[[-57.872378723787236,54.81852954245181],[-57.8759787597876,54.83034958334099],[-57.86877868778687,54.83372673788077],[-57.857978579785794,54.832038160610864],[-57.84357843578435,54.82528385153134],[-57.857978579785794,54.80333234702286],[-57.883178831788314,54.796578037943334],[-57.933579335793354,54.79826661521321],[-57.95517955179551,54.79151230613368],[-58.0019800198002,54.766183647085455],[-58.023580235802356,54.75605218346615],[-58.05238052380524,54.752675028926376],[-58.15678156781567,54.76449506981555],[-58.16758167581675,54.76787222435533],[-58.17478174781748,54.774626533434855],[-58.17838178381784,54.78644657432403],[-58.17838178381784,54.801643769752985],[-58.18198181981819,54.806709501562636],[-58.18918189181892,54.80839807883251],[-58.19998199982,54.81852954245181],[-58.21438214382144,54.832038160610864],[-58.22518225182252,54.85230108784947],[-58.22878228782288,54.87087543781817],[-58.210782107821075,54.8793183241676],[-58.19998199982,54.87594116962782],[-58.185581855818555,54.86243255146877],[-58.17478174781748,54.859055396928994],[-58.1639816398164,54.86074397419887],[-58.14238142381423,54.87425259235795],[-58.13158131581315,54.8793183241676],[-58.12078120781207,54.88100690143747],[-58.09558095580955,54.877629746897696],[-58.084780847808474,54.8793183241676],[-58.073980739807396,54.88438405597725],[-58.05598055980559,54.8978926741363],[-58.04518045180451,54.899581251406175],[-58.023580235802356,54.90295840594595],[-57.983979839798394,54.918155601374906],[-57.958779587795874,54.91984417864478],[-57.95157951579516,54.92322133318453],[-57.94437944379443,54.926598487724306],[-57.94077940779407,54.92490991045443],[-57.93717937179372,54.894515519596524],[-57.947979479794796,54.886072633247124],[-57.958779587795874,54.88438405597725],[-57.973179731797316,54.8793183241676],[-57.98037980379803,54.87087543781817],[-57.98757987579876,54.84892393330969],[-57.99477994779947,54.83879246969042],[-57.99477994779947,54.832038160610864],[-57.983979839798394,54.82697242880121],[-57.98037980379803,54.82021811972169],[-57.983979839798394,54.81346381064216],[-57.98757987579876,54.80333234702286],[-57.96957969579695,54.806709501562636],[-57.94077940779407,54.82697242880121],[-57.92997929979299,54.828661006071115],[-57.91917919179191,54.81852954245181],[-57.90117901179012,54.80839807883251],[-57.88677886778868,54.806709501562636],[-57.872378723787236,54.81852954245181]]],[[[-134.17874178741786,55.91441619060569],[-134.12114121141212,55.924547654224966],[-134.1031410314103,55.92117049968522],[-134.1139411394114,55.90090757244661],[-134.15354153541534,55.89415326336709],[-134.19674196741965,55.87389033612851],[-134.23274232742327,55.84687309981038],[-134.2579425794258,55.818167286222376],[-134.2759427594276,55.82829874984168],[-134.31914319143192,55.8333644816513],[-134.32634326343265,55.848561677080255],[-134.31914319143192,55.85869314069956],[-134.26514265142652,55.87389033612851],[-134.27954279542794,55.88233322247791],[-134.33354333543335,55.89584184063696],[-134.34794347943478,55.911039036065915],[-134.33354333543335,55.92285907695509],[-134.29754297542974,55.92623623149487],[-134.26514265142652,55.924547654224966],[-134.24354243542436,55.92117049968522],[-134.2579425794258,55.89921899517674],[-134.23634236342363,55.89921899517674],[-134.17874178741786,55.91441619060569]]],[[[-60.748807488074874,55.93467911784427],[-60.75240752407524,55.91779334514544],[-60.73440734407343,55.91948192241534],[-60.70920709207091,55.92623623149487],[-60.687606876068756,55.92792480876474],[-60.70920709207091,55.90428472698639],[-60.74520745207451,55.88739895428756],[-60.864008640086396,55.86544744977908],[-60.88920889208892,55.86544744977908],[-60.900009000089995,55.87726749066826],[-60.88920889208892,55.88571037701769],[-60.864008640086396,55.889087531557436],[-60.81720817208172,55.88739895428756],[-60.81720817208172,55.89246468609721],[-60.85320853208532,55.89921899517674],[-60.87120871208711,55.90766188152617],[-60.87840878408784,55.92117049968522],[-60.87840878408784,55.93467911784427],[-60.874808748087474,55.94818773600335],[-60.864008640086396,55.95663062235275],[-60.85320853208532,55.9616963541624],[-60.8280082800828,55.94987631327322],[-60.80280802808028,55.946499158733445],[-60.74160741607416,55.94818773600335],[-60.74520745207451,55.938056272384046],[-60.748807488074874,55.93467911784427]]],[[[-61.414814148141474,56.373709208013764],[-61.4220142201422,56.36357774439449],[-61.454414544145436,56.356823435314965],[-61.461614616146164,56.34500339442576],[-61.45081450814507,56.343314817155886],[-61.42561425614255,56.334871930806486],[-61.414814148141474,56.33318335353658],[-61.414814148141474,56.32642904445706],[-61.461614616146164,56.31798615810766],[-61.47601476014759,56.31798615810766],[-61.49761497614976,56.32305188991731],[-61.59841598415984,56.33318335353658],[-61.710017100171,56.36357774439449],[-61.72801728017279,56.373709208013764],[-61.7460174601746,56.39397213525237],[-61.75681756817568,56.400726444331895],[-61.767617676176755,56.40410359887167],[-61.78921789217891,56.40916933068132],[-61.79641796417964,56.414235062490974],[-61.79641796417964,56.4209893715705],[-61.57681576815767,56.392283557982495],[-61.54441544415444,56.39397213525237],[-61.55161551615515,56.39397213525237],[-61.530015300152996,56.397349289792146],[-61.504815048150476,56.40410359887167],[-61.48321483214832,56.40916933068132],[-61.461614616146164,56.400726444331895],[-61.461614616146164,56.40748075341142],[-61.45081450814507,56.39903786706202],[-61.41841418414184,56.38215209436319],[-61.414814148141474,56.373709208013764]]],[[[-61.227612276122755,56.454760916968155],[-61.20961209612096,56.45138376242838],[-61.18801188011879,56.454760916968155],[-61.16641166411664,56.454760916968155],[-61.14841148411483,56.44294087607898],[-61.378813788137876,56.45138376242838],[-61.46881468814688,56.46995811239708],[-61.490414904149034,56.46995811239708],[-61.486814868148684,56.46658095785733],[-61.479614796147956,56.4581380715079],[-61.47601476014759,56.454760916968155],[-61.486814868148684,56.44462945334885],[-61.50121501215011,56.441252298809076],[-61.51201512015119,56.44462945334885],[-61.52281522815228,56.454760916968155],[-61.515615156151554,56.454760916968155],[-61.540815408154074,56.46995811239708],[-61.57321573215732,56.47164668966698],[-61.60561605616056,56.468269535127206],[-61.63441634416344,56.46995811239708],[-61.63441634416344,56.47502384420673],[-61.620016200162,56.47502384420673],[-61.620016200162,56.48346673055616],[-61.62721627216271,56.485155307826034],[-61.63081630816308,56.490221039635685],[-61.63801638016379,56.49697534871521],[-61.45081450814507,56.47840099874651],[-61.429214292142916,56.48346673055616],[-61.42561425614255,56.49190961690556],[-61.454414544145436,56.498663925985085],[-61.63441634416344,56.51048396687429],[-61.62361623616236,56.52399258503334],[-61.60561605616056,56.52399258503334],[-61.58761587615875,56.51892685322369],[-61.56961569615696,56.52399258503334],[-61.58041580415804,56.52905831684299],[-61.591215912159115,56.53750120319239],[-61.60561605616056,56.552698398621345],[-61.60561605616056,56.557764130430996],[-61.59481594815948,56.561141284970745],[-61.55881558815588,56.557764130430996],[-61.540815408154074,56.55438697589122],[-61.461614616146164,56.54932124408157],[-61.44721447214472,56.54425551227192],[-61.414814148141474,56.530746894112866],[-61.386013860138604,56.52399258503334],[-61.35721357213572,56.522304007763466],[-61.328413284132836,56.51554969868391],[-61.310413104131044,56.49697534871521],[-61.35001350013499,56.485155307826034],[-61.3680136801368,56.48346673055616],[-61.3680136801368,56.47502384420673],[-61.35721357213572,56.47502384420673],[-61.335613356133564,56.46995811239708],[-61.32481324813247,56.46995811239708],[-61.310413104131044,56.47333526693686],[-61.29961299612995,56.48177815328626],[-61.227612276122755,56.48684388509591],[-61.19161191611916,56.485155307826034],[-61.16641166411664,56.47502384420673],[-61.18441184411844,56.47164668966698],[-61.202412024120235,56.46995811239708],[-61.21681216812168,56.46489238058746],[-61.227612276122755,56.454760916968155]]],[[[-154.05454054540544,56.530746894112866],[-154.04374043740438,56.547632666811694],[-154.02214022140222,56.55607555316112],[-153.8781387813878,56.56451843951052],[-153.8781387813878,56.552698398621345],[-153.89253892538926,56.53581262592252],[-153.92853928539284,56.517238275953815],[-153.96453964539646,56.50541823506464],[-153.98973989739898,56.50710681233451],[-154.00774007740077,56.512172544144164],[-154.02574025740256,56.51048396687429],[-154.0581405814058,56.503729657794736],[-154.10134101341015,56.50204108052486],[-154.11934119341194,56.503729657794736],[-154.13734137341373,56.51048396687429],[-154.11934119341194,56.52399258503334],[-154.09414094140942,56.53750120319239],[-154.0689406894069,56.54087835773217],[-154.05454054540544,56.530746894112866]]],[[[-157.06057060570606,56.58140421220935],[-157.0461704617046,56.57296132585995],[-157.01017010170102,56.56451843951052],[-156.9921699216992,56.55438697589122],[-156.97776977769777,56.53581262592252],[-156.98856988569887,56.530746894112866],[-157.00657006570066,56.53412404865264],[-157.02457024570245,56.54932124408157],[-157.04977049770497,56.552698398621345],[-157.139771397714,56.552698398621345],[-157.14697146971469,56.54932124408157],[-157.1541715417154,56.53412404865264],[-157.16137161371614,56.530746894112866],[-157.16857168571687,56.530746894112866],[-157.17937179371793,56.53581262592252],[-157.18657186571866,56.539189780462294],[-157.20457204572045,56.530746894112866],[-157.3089730897309,56.530746894112866],[-157.33057330573305,56.52399258503334],[-157.3269732697327,56.53412404865264],[-157.31617316173163,56.54932124408157],[-157.30537305373053,56.55945270770087],[-157.30177301773017,56.56451843951052],[-157.28737287372874,56.5678955940503],[-157.25857258572586,56.583092789479224],[-157.2441724417244,56.586469944019],[-157.2009720097201,56.58140421220935],[-157.10017100171,56.593224253098526],[-157.06057060570606,56.58140421220935]]],[[[-61.21681216812168,56.586469944019],[-61.22041220412204,56.58984709855878],[-61.23121231212312,56.60673287125758],[-61.234812348123484,56.61348718033713],[-61.234812348123484,56.61855291214678],[-61.23121231212312,56.62024148941666],[-61.234812348123484,56.62699579849618],[-61.19881198811987,56.64388157119501],[-61.19521195211952,56.650635880274535],[-61.18801188011879,56.66245592116371],[-61.170011700117,56.664144498433615],[-61.1340113401134,56.66076734389384],[-61.1340113401134,56.66752165297336],[-61.152011520115195,56.672587384783014],[-61.16281162811627,56.67596453932279],[-61.16641166411664,56.68103027113244],[-61.16641166411664,56.69116173475172],[-61.15561155611556,56.69453888929149],[-61.14481144811448,56.69285031202162],[-61.1340113401134,56.68947315748184],[-61.1160111601116,56.68778458021197],[-61.09441094410944,56.68440742567219],[-61.08361083610836,56.677653116592666],[-61.08721087210871,56.66752165297336],[-61.08721087210871,56.66076734389384],[-61.07281072810727,56.66076734389384],[-61.080010800108,56.650635880274535],[-61.09801098010979,56.63881583938536],[-61.10521105211052,56.62699579849618],[-61.06921069210692,56.63375010757571],[-61.05841058410584,56.63375010757571],[-61.05841058410584,56.62699579849618],[-61.07281072810727,56.62530722122631],[-61.10521105211052,56.61348718033713],[-61.152011520115195,56.610110025797354],[-61.16641166411664,56.60673287125758],[-61.18801188011879,56.58984709855878],[-61.202412024120235,56.58478136674913],[-61.21681216812168,56.586469944019]]],[[[-61.63081630816308,56.846510843580944],[-61.63441634416344,56.85326515266047],[-61.62721627216271,56.86677377081952],[-61.60561605616056,56.887036698058125],[-61.56961569615696,56.900545316217176],[-61.540815408154074,56.9072996252967],[-61.52641526415263,56.914053934376255],[-61.52281522815228,56.927562552535306],[-61.52281522815228,56.94275974796426],[-61.51921519215192,56.949514057043785],[-61.504815048150476,56.95120263431366],[-61.490414904149034,56.95457978885344],[-61.479614796147956,56.957956943393185],[-61.461614616146164,56.95626836612331],[-61.44721447214472,56.94782547977388],[-61.429214292142916,56.936005438884706],[-61.411214112141124,56.92925112980518],[-61.39321393213932,56.930939707075055],[-61.378813788137876,56.93769401615461],[-61.364413644136434,56.93938259342448],[-61.35001350013499,56.93938259342448],[-61.339213392133914,56.93431686161483],[-61.3680136801368,56.90561104802683],[-61.39321393213932,56.890413852597874],[-61.40761407614076,56.8802823889786],[-61.389613896138954,56.8785938117087],[-61.378813788137876,56.87521665716895],[-61.364413644136434,56.868462348089395],[-61.353613536135356,56.860019461739995],[-61.37161371613716,56.846510843580944],[-61.40041400414003,56.83131364815199],[-61.43281432814328,56.82287076180256],[-61.454414544145436,56.82624791634234],[-61.44361443614436,56.833002225421865],[-61.44721447214472,56.83975653450139],[-61.454414544145436,56.84482226631104],[-61.46881468814688,56.846510843580944],[-61.48321483214832,56.84313368904117],[-61.4940149401494,56.83637937996164],[-61.50121501215011,56.829625070882116],[-61.4940149401494,56.82118218453269],[-61.50121501215011,56.811050720913386],[-61.51201512015119,56.802607834563986],[-61.51921519215192,56.797542102754335],[-61.530015300152996,56.797542102754335],[-61.56241562415623,56.789099216404935],[-61.56961569615696,56.784033484595284],[-61.58041580415804,56.77896775278563],[-61.5840158401584,56.77221344370611],[-61.5840158401584,56.76377055735668],[-61.58041580415804,56.757016248277154],[-61.566015660156594,56.75363909373738],[-61.55161551615515,56.75870482554703],[-61.53721537215371,56.767147711896456],[-61.515615156151554,56.77390202097598],[-61.49761497614976,56.78741063913503],[-61.486814868148684,56.79078779367481],[-61.47241472414724,56.79078779367481],[-61.40041400414003,56.78065633005551],[-61.386013860138604,56.77221344370611],[-61.37521375213751,56.757016248277154],[-61.37161371613716,56.7333761664988],[-61.37161371613716,56.69285031202162],[-61.378813788137876,56.677653116592666],[-61.389613896138954,56.67427596205289],[-61.40041400414003,56.67427596205289],[-61.40761407614076,56.66752165297336],[-61.404014040140396,56.65739018935406],[-61.38241382413824,56.645570148464884],[-61.378813788137876,56.63375010757571],[-61.389613896138954,56.623618643956405],[-61.404014040140396,56.62024148941666],[-61.436414364143644,56.62024148941666],[-61.454414544145436,56.62530722122631],[-61.50841508415084,56.66752165297336],[-61.530015300152996,56.67596453932279],[-61.540815408154074,56.67934169386254],[-61.55161551615515,56.68103027113244],[-61.56241562415623,56.686096002942065],[-61.57681576815767,56.704670352910796],[-61.60201602016019,56.71480181653007],[-61.61281612816127,56.726621857419275],[-61.62721627216271,56.735064743768675],[-61.64881648816488,56.73675332103855],[-61.64881648816488,56.7435076301181],[-61.63441634416344,56.762081980086805],[-61.62361623616236,56.797542102754335],[-61.620016200162,56.83131364815199],[-61.63081630816308,56.846510843580944]]],[[[-61.90081900819008,57.76509687839712],[-61.88281882818828,57.787048382905596],[-61.80001800018,57.844460010081605],[-61.78561785617856,57.84614858735148],[-61.74961749617496,57.83939427827195],[-61.73521735217352,57.82757423738278],[-61.72801728017279,57.82419708284303],[-61.72081720817208,57.8343285464623],[-61.710017100171,57.836017123732205],[-61.70281702817027,57.836017123732205],[-61.69561695616956,57.83263996919243],[-61.69921699216992,57.81913135103338],[-61.717217172171715,57.7971798465249],[-61.72441724417244,57.78535980563572],[-61.67761677616775,57.79042553744537],[-61.65241652416523,57.79042553744537],[-61.65961659616596,57.778605496556196],[-61.65241652416523,57.778605496556196],[-61.65961659616596,57.77016261020677],[-61.666816668166675,57.76340830112724],[-61.68841688416883,57.74989968296819],[-61.68481684816848,57.751588260238066],[-61.666816668166675,57.74989968296819],[-61.67761677616775,57.72794817845971],[-61.692016920169195,57.72288244665006],[-61.710017100171,57.724571023919935],[-61.7460174601746,57.71275098303076],[-61.767617676176755,57.719505292110284],[-61.78561785617856,57.73470248753924],[-61.80001800018,57.746522528428414],[-61.82161821618216,57.75834256931759],[-61.82521825218252,57.76171972385737],[-61.82521825218252,57.77016261020677],[-61.82521825218252,57.77691691928629],[-61.82881828818287,57.78367122836582],[-61.83961839618395,57.78535980563572],[-61.85401854018539,57.77691691928629],[-61.86481864818647,57.76340830112724],[-61.87921879218791,57.754965414777814],[-61.90081900819008,57.76509687839712]]],[[[-150.70290702907027,59.39626252110381],[-150.68130681306812,59.404705407453235],[-150.65250652506523,59.40639398472311],[-150.62730627306274,59.399639675643584],[-150.60930609306092,59.381065325674854],[-150.6561065610656,59.33378516211815],[-150.67770677706778,59.320276543959096],[-150.69930699306994,59.31352223487954],[-150.73170731707316,59.31183365760967],[-150.76050760507604,59.31689938941932],[-150.77850778507786,59.33378516211815],[-150.74610746107462,59.3574252438965],[-150.72450724507246,59.36586813024593],[-150.71370713707137,59.377688171135105],[-150.70290702907027,59.39626252110381]]],[[[-153.52533525335252,59.33040800757837],[-153.53613536135362,59.337162316657924],[-153.54333543335434,59.3388508939278],[-153.5541355413554,59.34391662573745],[-153.5541355413554,59.3574252438965],[-153.55053550535504,59.3675567075158],[-153.53973539735398,59.377688171135105],[-153.52533525335252,59.38444248021463],[-153.51813518135182,59.38781963475441],[-153.50373503735037,59.391196789294156],[-153.47853478534785,59.404705407453235],[-153.46413464134642,59.408082561992984],[-153.39933399333992,59.408082561992984],[-153.3561335613356,59.377688171135105],[-153.3561335613356,59.36586813024593],[-153.37773377733777,59.3472937802772],[-153.40653406534065,59.3388508939278],[-153.50013500135,59.32534227576875],[-153.52533525335252,59.33040800757837]]],[[[-147.82647826478265,60.05311907908819],[-147.84447844478444,60.03116757457971],[-147.8660786607866,60.00921607007123],[-147.89487894878948,59.99064172010253],[-147.9380793807938,59.9720673701338],[-147.98127981279814,59.95855875197475],[-148.0352803528035,59.951804442895224],[-148.0460804608046,59.956870174704875],[-148.0352803528035,59.9737559474037],[-148.00648006480066,59.99570745191215],[-147.9488794887949,60.02947899730981],[-147.89127891278912,60.068316274517116],[-147.8768787687877,60.076759160866544],[-147.86247862478626,60.08013631540629],[-147.8480784807848,60.081824892676195],[-147.83007830078301,60.07844773813642],[-147.81927819278192,60.068316274517116],[-147.82647826478265,60.05311907908819]]],[[[-147.97767977679777,60.375637337635766],[-147.98127981279814,60.367194451286366],[-148.00648006480066,60.34524294677789],[-148.00648006480066,60.335111483158585],[-148.01368013680136,60.308094246840454],[-148.01728017280172,60.299651360491055],[-148.04248042480424,60.286142742332004],[-148.0748807488075,60.2844541650621],[-148.10368103681037,60.29289705141153],[-148.1288812888129,60.30640566957058],[-148.1360813608136,60.299651360491055],[-148.12528125281253,60.335111483158585],[-148.0748807488075,60.36888302855624],[-148.01368013680136,60.38745737852494],[-147.97767977679777,60.375637337635766]]],[[[-145.75645756457564,60.62892392811818],[-145.74925749257494,60.620481041768755],[-145.77085770857707,60.61034957814948],[-145.7780577805778,60.60866100087958],[-145.760057600576,60.60190669180005],[-145.74925749257494,60.60190669180005],[-145.75645756457564,60.593463805450654],[-145.76365763657637,60.5867094963711],[-145.77445774457743,60.58333234183135],[-145.78525785257852,60.579955187291574],[-145.87165871658715,60.544495064624044],[-145.9148591485915,60.536052178274616],[-145.96165961659617,60.51916640557582],[-146.01566015660157,60.509034941956514],[-146.06246062460625,60.48877201471791],[-146.09846098460986,60.48032912836851],[-146.2928629286293,60.455000469320254],[-146.33246332463324,60.465131932939556],[-146.3180631806318,60.49383774652756],[-146.30726307263072,60.51072351922639],[-146.28566285662856,60.517477828305914],[-146.120061200612,60.51916640557582],[-146.0948609486095,60.52592071465534],[-146.09846098460986,60.52929786919509],[-146.120061200612,60.53942933281439],[-146.03366033660336,60.558003682783095],[-145.94725947259474,60.5681351464024],[-145.94725947259474,60.57488945548192],[-145.9580595805958,60.576578032751826],[-145.96165961659617,60.579955187291574],[-145.9688596885969,60.588398073641],[-145.85725857258572,60.59515238272053],[-145.80685806858068,60.606972423609704],[-145.75645756457564,60.62892392811818]]],[[[-148.16848168481684,60.66269547351584],[-148.19368193681936,60.68126982348454],[-148.22248222482224,60.70659848253277],[-148.22968229682297,60.73023856431115],[-148.19728197281972,60.745435759740076],[-148.21168211682118,60.75556722335938],[-148.21528215282152,60.758944377899155],[-148.15768157681578,60.764010109708806],[-148.13968139681396,60.758944377899155],[-148.12528125281253,60.75050149154973],[-148.1108811088111,60.73868145066055],[-148.1108811088111,60.7251728325015],[-148.1288812888129,60.718418523421974],[-148.1288812888129,60.71166421434242],[-148.10728107281074,60.709975637072546],[-148.10008100081,60.696467018913495],[-148.10008100081,60.67958124621467],[-148.10728107281074,60.66269547351584],[-148.12528125281253,60.65087543262666],[-148.13968139681396,60.64918685535676],[-148.1540815408154,60.65425258716641],[-148.16848168481684,60.66269547351584]]],[[[-162.34182341823418,63.60250850038162],[-162.34182341823418,63.597442768571966],[-162.34542345423455,63.59406561403219],[-162.3490234902349,63.59068845949244],[-162.3562235622356,63.58899988222254],[-162.3562235622356,63.587311304952664],[-162.35982359823598,63.583934150412915],[-162.36342363423634,63.58224557314301],[-162.3670236702367,63.58224557314301],[-162.3490234902349,63.56029406863453],[-162.3490234902349,63.55522833682488],[-162.35982359823598,63.54678545047548],[-162.37422374223743,63.55016260501526],[-162.3850238502385,63.55860549136466],[-162.38862388623886,63.561982645904436],[-162.49662496624967,63.54847402774536],[-162.61542615426154,63.54847402774536],[-162.62622626226263,63.55016260501526],[-162.6478264782648,63.56029406863453],[-162.67662676626767,63.56367122317431],[-162.71622716227162,63.57549126406349],[-162.67662676626767,63.61095138673102],[-162.66582665826658,63.61601711854067],[-162.63342633426333,63.622771427620194],[-162.62262622626227,63.622771427620194],[-162.61182611826118,63.619394273080445],[-162.6010260102601,63.614328541270794],[-162.59382593825939,63.61095138673102],[-162.57942579425793,63.61601711854067],[-162.5830258302583,63.627837159429845],[-162.55782557825577,63.62952573669975],[-162.4822248222482,63.62108285035032],[-162.46062460624606,63.624460004890096],[-162.44262442624427,63.62952573669975],[-162.43542435424354,63.63965720031902],[-162.4282242822428,63.641345777588924],[-162.41022410224102,63.63965720031902],[-162.37422374223743,63.63121431396962],[-162.38142381423813,63.622771427620194],[-162.34182341823418,63.60250850038162]]],[[[-172.24192241922418,64.81659555742726],[-172.11232112321125,64.79126689837904],[-172.04392043920438,64.75074104390185],[-172.18072180721808,64.73892100301268],[-172.2779227792278,64.71359234396442],[-172.3859238592386,64.69839514853547],[-172.5011250112501,64.70346088034512],[-172.5479254792548,64.68488653037642],[-172.63432634326344,64.68488653037642],[-172.60912609126092,64.73047811666325],[-172.57672576725767,64.75918393025125],[-172.52272522725227,64.78788974383926],[-172.48312483124832,64.81490698015739],[-172.46152461524616,64.82841559831644],[-172.40032400324003,64.83685848466587],[-172.32832328323283,64.83179275285622],[-172.24192241922418,64.81659555742726]]],[[[-107.4160741607416,67.11812637627739],[-107.3440734407344,67.11137206719786],[-107.31887318873189,67.10461775811834],[-107.3440734407344,67.08942056268938],[-107.38367383673837,67.08435483087973],[-107.51687516875168,67.08266625360986],[-107.5420754207542,67.08773198541951],[-107.56727567275672,67.10461775811834],[-107.6140761407614,67.1654065398341],[-107.62487624876249,67.18904662161248],[-107.62487624876249,67.2042438170414],[-107.61047610476105,67.20930954885105],[-107.58167581675816,67.20086666250165],[-107.56007560075601,67.1856694670727],[-107.4160741607416,67.11812637627739]]],[[[-108.28728287282873,67.5352049619384],[-108.30168301683017,67.526762075589],[-108.30168301683017,67.5166306119697],[-108.2980829808298,67.50481057108053],[-108.30168301683017,67.49467910746122],[-108.31248312483125,67.4879247983817],[-108.38088380883809,67.46766187114312],[-108.42048420484204,67.47103902568287],[-108.45288452884529,67.48961337565157],[-108.47808478084781,67.51156488016005],[-108.49968499684996,67.5352049619384],[-108.48888488884889,67.5352049619384],[-108.48168481684817,67.53689353920831],[-108.47448474484744,67.54195927101796],[-108.47088470884708,67.54871358009748],[-108.47808478084781,67.55209073463723],[-108.49248492484925,67.56391077552641],[-108.45648456484565,67.57404223914571],[-108.4240842408424,67.56559935279631],[-108.39528395283952,67.55377931190714],[-108.36288362883629,67.54871358009748],[-108.34848348483484,67.55377931190714],[-108.34128341283413,67.55884504371679],[-108.33048330483305,67.56391077552641],[-108.31248312483125,67.56391077552641],[-108.30168301683017,67.56053362098666],[-108.29448294482944,67.55546788917701],[-108.28728287282873,67.54702500282758],[-108.28728287282873,67.5352049619384]]],[[[-97.43317433174332,67.70743984346646],[-97.41517415174151,67.72263703889539],[-97.39357393573935,67.73445707978456],[-97.36837368373683,67.73783423432434],[-97.3359733597336,67.72770277070504],[-97.33237332373324,67.69393122530738],[-97.3359733597336,67.68042260714833],[-97.34677346773468,67.6736682980688],[-97.36837368373683,67.66860256625915],[-97.43317433174332,67.63989675267115],[-97.51957519575195,67.6246995572422],[-97.53757537575376,67.62807671178197],[-97.55197551975519,67.6449624844808],[-97.55197551975519,67.65678252536998],[-97.54477544775447,67.66860256625915],[-97.52677526775267,67.68042260714833],[-97.54477544775447,67.68886549349773],[-97.56277562775628,67.69393122530738],[-97.53037530375303,67.69899695711703],[-97.4619746197462,67.69561980257728],[-97.43317433174332,67.70743984346646]]],[[[-108.05328053280533,67.95397212486932],[-108.05688056880568,67.92357773401145],[-108.06768067680676,67.89993765223309],[-108.09288092880928,67.88474045680414],[-108.12168121681216,67.87967472499449],[-108.19008190081901,67.88642903407401],[-108.22968229682297,67.88136330226436],[-108.24768247682476,67.88305187953426],[-108.25848258482584,67.89318334315354],[-108.24048240482405,67.89824907496319],[-108.23688236882369,67.90669196131262],[-108.24048240482405,67.9185120022018],[-108.23688236882369,67.93033204309097],[-108.22248222482224,67.94215208398015],[-108.2080820808208,67.94890639305967],[-108.17568175681757,67.96072643394885],[-108.10368103681037,67.97930078391755],[-108.06768067680676,67.9759236293778],[-108.05328053280533,67.95397212486932]]],[[[-110.06210062100621,68.09750119280935],[-110.01530015300153,68.10763265642865],[-109.96849968499684,68.12620700639735],[-109.92169921699217,68.13971562455643],[-109.87489874898749,68.1329613154769],[-109.87489874898749,68.12789558366725],[-109.87849878498784,68.12451842912748],[-109.91449914499145,68.08905830645995],[-109.96129961299613,68.07892684284064],[-110.01170011700117,68.07723826557077],[-110.07650076500765,68.05866391560204],[-110.10530105301052,68.05528676106229],[-110.15930159301593,68.05697533833217],[-110.18090180901808,68.05190960652251],[-110.2061020610206,68.04346672017311],[-110.23130231302312,68.03840098836346],[-110.260102601026,68.04346672017311],[-110.2169021690217,68.06372964741169],[-110.16650166501665,68.08230399738042],[-110.10890108901089,68.0941240382696],[-110.06210062100621,68.09750119280935]]],[[[-111.65691656916569,68.30350761973506],[-111.52731527315272,68.31363908335433],[-111.49851498514985,68.30350761973506],[-111.50571505715057,68.2984418879254],[-111.5129151291513,68.2967533106555],[-111.5489154891549,68.2967533106555],[-111.59931599315993,68.28999900157598],[-111.61731617316173,68.28324469249645],[-111.6281162811628,68.2697360743374],[-111.63531635316353,68.24778456982892],[-111.64611646116461,68.23596452893975],[-111.67851678516784,68.22583306532044],[-111.72531725317253,68.22076733351079],[-111.76851768517685,68.22921021986019],[-111.78291782917829,68.25622745617832],[-111.77211772117721,68.2680474970675],[-111.75051750517505,68.27480180614702],[-111.7181171811718,68.28324469249645],[-111.7181171811718,68.2883104243061],[-111.7181171811718,68.29506473338563],[-111.72171721717217,68.30181904246516],[-111.71451714517146,68.30350761973506],[-111.65691656916569,68.30350761973506]]],[[[51.298712987129875,68.49600542850166],[51.49671496714967,68.48925111942214],[51.46071460714609,68.47405392399318],[51.172711727117274,68.45716815129438],[51.097110971109714,68.4250851831666],[50.9999099991,68.4250851831666],[50.938709387093866,68.3963793695786],[50.89190891908919,68.39469079230872],[50.870308703087034,68.39131363776895],[50.84870848708488,68.38455932868942],[50.830708307083086,68.38118217414964],[50.79110791107911,68.37949359687977],[50.8019080190802,68.38962506049907],[50.812708127081265,68.39806794684847],[50.82350823508236,68.404822255928],[50.870308703087034,68.42846233770635],[51.172711727117274,68.50107116031131],[51.298712987129875,68.49600542850166]]],[[[-110.8361083610836,68.55003990113792],[-110.80010800108,68.54835132386805],[-110.7569075690757,68.53653128297884],[-110.71730717307173,68.51457977847039],[-110.69930699306992,68.48925111942214],[-110.72450724507245,68.48756254215226],[-110.73170731707317,68.48925111942214],[-110.90090900909009,68.47067676945343],[-111.08091080910809,68.47574250126308],[-111.09531095310953,68.48080823307274],[-111.07731077310773,68.49093969669201],[-111.03411034110341,68.50951404666074],[-110.8361083610836,68.55003990113792]]],[[[-101.530015300153,69.18832210915357],[-101.50481504815048,69.1765020682644],[-101.50481504815048,69.15455056375592],[-101.52641526415263,69.13259905924744],[-101.55161551615515,69.11233613200886],[-101.5660156601566,69.10727040019921],[-101.58761587615876,69.10220466838956],[-101.62721627216271,69.09882751384978],[-101.64521645216452,69.09545035931004],[-101.66321663216632,69.08869605023051],[-101.68121681216812,69.08700747296061],[-101.70281702817027,69.09882751384978],[-101.68121681216812,69.11740186381851],[-101.620016200162,69.13259905924744],[-101.60561605616056,69.15117340921617],[-101.620016200162,69.16468202737522],[-101.6920169201692,69.1663706046451],[-101.72081720817208,69.17987922280417],[-101.68841688416884,69.21196219093193],[-101.62721627216271,69.2237822318211],[-101.56241562415624,69.21871650001145],[-101.52281522815228,69.20183072731263],[-101.52281522815228,69.19845357277288],[-101.52641526415263,69.1950764182331],[-101.52641526415263,69.19169926369335],[-101.530015300153,69.18832210915357]]],[[[-135.56835568355683,69.38588564972986],[-135.55035550355504,69.40783715423834],[-135.52155521555216,69.40783715423834],[-135.46035460354602,69.39432853607926],[-135.38835388353883,69.39939426788891],[-135.35235352353524,69.39770569061903],[-135.319953199532,69.37913134065033],[-135.34155341553415,69.36393414522138],[-135.34875348753488,69.35886841341173],[-135.32715327153272,69.35549125887198],[-135.28035280352805,69.3622455679515],[-135.27315273152732,69.34873694979242],[-135.27675276752768,69.3318511770936],[-135.2911529115291,69.31665398166467],[-135.3091530915309,69.30989967258512],[-135.34515345153451,69.3335397543635],[-135.3739537395374,69.34367121798277],[-135.56835568355683,69.38588564972986]]],[[[-96.55476554765548,69.4787573995734],[-96.61236612366123,69.50408605862165],[-96.6519665196652,69.53279187220966],[-96.7419674196742,69.57838345849649],[-96.7419674196742,69.58513776757601],[-96.70236702367023,69.58682634484589],[-96.69156691566916,69.58513776757601],[-96.68436684366843,69.58176061303624],[-96.66636666366664,69.57331772668684],[-96.65556655566556,69.56994057214706],[-96.64476644766448,69.55980910852776],[-96.63756637566375,69.55812053125788],[-96.5439654396544,69.56656341760731],[-96.38556385563855,69.56318626306754],[-96.36756367563676,69.55980910852776],[-96.35316353163532,69.55305479944823],[-96.33876338763388,69.54123475855906],[-96.32076320763207,69.53110329493975],[-96.30636306363063,69.53279187220966],[-96.2739627396274,69.54461191309883],[-96.20916209162091,69.55136622217836],[-96.18756187561875,69.57162914941696],[-96.16956169561695,69.56994057214706],[-96.14796147961479,69.56318626306754],[-96.13716137161371,69.55136622217836],[-96.13716137161371,69.5361690267494],[-96.12636126361264,69.52097183132048],[-96.1119611196112,69.50577463589153],[-96.10116101161012,69.4888888631927],[-96.10116101161012,69.46693735868422],[-96.10836108361083,69.45005158598539],[-96.12636126361264,69.43654296782634],[-96.15156151561516,69.42810008147691],[-96.13716137161371,69.41290288604799],[-96.12996129961299,69.40445999969856],[-96.12996129961299,69.39432853607926],[-96.13356133561335,69.38250849519008],[-96.14436144361443,69.37406560884068],[-96.15156151561516,69.36562272249125],[-96.14436144361443,69.3521141043322],[-96.23076230762307,69.3622455679515],[-96.2739627396274,69.37406560884068],[-96.31356313563136,69.39432853607926],[-96.36756367563676,69.43823154509622],[-96.38556385563855,69.45005158598539],[-96.47556475564755,69.4686259359541],[-96.52956529565296,69.47200309049387],[-96.55476554765548,69.4787573995734]]],[[[-133.93033930339303,69.57838345849649],[-133.88713887138871,69.57162914941696],[-133.93033930339303,69.56487484033741],[-133.94833948339482,69.56487484033741],[-134.01674016740168,69.57838345849649],[-134.01674016740168,69.58176061303624],[-134.01674016740168,69.58513776757601],[-134.01314013140131,69.59189207665554],[-133.99873998739986,69.59358065392541],[-133.9771397713977,69.60371211754472],[-133.90153901539014,69.62735219932307],[-133.88713887138871,69.6256636220532],[-133.8619386193862,69.61890931297367],[-133.8619386193862,69.6172207357038],[-133.85833858338583,69.61215500389415],[-133.85473854738547,69.6070892720845],[-133.8511385113851,69.60540069481459],[-133.81153811538115,69.60540069481459],[-133.82953829538295,69.59358065392541],[-133.93033930339303,69.58513776757601],[-133.93033930339303,69.57838345849649]]],[[[-135.57555575555756,69.57838345849649],[-135.59355593555935,69.59358065392541],[-135.5827558275583,69.60877784935437],[-135.5359553595536,69.63748366294237],[-135.51075510755106,69.64761512656167],[-135.47475474754748,69.65268085837133],[-135.40275402754028,69.6543694356412],[-135.40995409954098,69.64254939475202],[-135.4639546395464,69.59189207665554],[-135.4891548915489,69.58007203576636],[-135.5179551795518,69.57162914941696],[-135.54675546755468,69.57162914941696],[-135.57555575555756,69.57838345849649]]],[[[-163.1842318423184,69.61046642662424],[-163.16983169831698,69.65774659018098],[-163.1518315183152,69.67800951741955],[-163.13743137431373,69.6830752492292],[-163.130231302313,69.68138667195933],[-163.1518315183152,69.66787805380025],[-163.16623166231662,69.63917224021225],[-163.17343173431735,69.60371211754472],[-163.16983169831698,69.57838345849649],[-163.17343173431735,69.56318626306754],[-163.1770317703177,69.48213455411317],[-163.1842318423184,69.51084036770118],[-163.18783187831878,69.53954618128918],[-163.19143191431914,69.54630049036871],[-163.1842318423184,69.61046642662424]]],[[[-141.42201422014222,69.72191252643651],[-141.40761407614076,69.71515821735699],[-141.39681396813967,69.70671533100756],[-141.3860138601386,69.69489529011838],[-141.41121411214112,69.70502675373768],[-141.47241472414726,69.72022394916664],[-141.5840158401584,69.76581553545347],[-141.6452164521645,69.77425842180287],[-141.71361713617137,69.79283277177157],[-141.7640176401764,69.79958708085113],[-141.80001800018,69.8097185444704],[-141.85761857618576,69.81478427628005],[-141.8972189721897,69.82491573989935],[-141.81081810818108,69.82153858535958],[-141.530015300153,69.76074980364382],[-141.42201422014222,69.72191252643651]]],[[[-163.05463054630548,69.80465281266078],[-163.02943029430293,69.83335862624878],[-163.00063000630007,69.85531013075723],[-162.84222842228422,69.93467326244172],[-162.87822878228783,69.90090171704406],[-163.01143011430113,69.83167004897888],[-163.04383043830438,69.801275658121],[-163.09423094230942,69.73204399005581],[-163.130231302313,69.7016495991979],[-163.05463054630548,69.80465281266078]]],[[[-97.46557465574655,69.90090171704406],[-97.48717487174872,69.91441033520314],[-97.49437494374943,69.93129610790197],[-97.48717487174872,69.94987045787067],[-97.46557465574655,69.96337907602972],[-97.43317433174332,69.9667562305695],[-97.38997389973899,69.96169049875985],[-97.34677346773468,69.95155903514055],[-97.32877328773287,69.93467326244172],[-97.3359733597336,69.92960753063207],[-97.34317343173431,69.92285322155254],[-97.35757357573576,69.90765602612362],[-97.32517325173251,69.89245883069466],[-97.25317253172531,69.89414740796454],[-97.22797227972279,69.87895021253561],[-97.24957249572495,69.86037586256688],[-97.27477274772747,69.85868728529701],[-97.29997299972999,69.86713017164641],[-97.32157321573216,69.87895021253561],[-97.35757357573576,69.89245883069466],[-97.42957429574295,69.89414740796454],[-97.46557465574655,69.90090171704406]]],[[[-162.7018270182702,70.02247928047564],[-162.67662676626767,70.04443078498412],[-162.64062640626406,70.0663822894926],[-162.6010260102601,70.08326806219142],[-162.56142561425614,70.09171094854082],[-162.55782557825577,70.09002237127095],[-162.60462604626048,70.06975944403234],[-162.67662676626767,70.02923358955516],[-162.69822698226983,70.00052777596716],[-162.73782737827378,69.97857627145868],[-162.8062280622806,69.9481818806008],[-162.7270272702727,69.99883919869728],[-162.7018270182702,70.02247928047564]]],[[[-162.48582485824858,70.17276265749518],[-162.30942309423094,70.24199432556037],[-162.16182161821618,70.27070013914837],[-162.34542345423455,70.22004282105192],[-162.48942489424894,70.15418830752648],[-162.5110251102511,70.14067968936743],[-162.53982539825398,70.1136624530493],[-162.56142561425614,70.10521956669987],[-162.5038250382504,70.16094261660601],[-162.48582485824858,70.17276265749518]]],[[[-161.54981549815497,70.32642318905451],[-161.83781837818378,70.34330896175334],[-161.91341913419134,70.33993180721359],[-161.9782197821978,70.31291457089546],[-161.9710197101971,70.32135745724486],[-161.94221942219423,70.33993180721359],[-161.88821888218882,70.35344042537264],[-161.54981549815497,70.32642318905451]]],[[[-111.95211952119521,70.32473461178463],[-111.880118801188,70.31798030270511],[-111.67131671316713,70.31291457089546],[-112.10692106921069,70.30109453000628],[-112.31212312123121,70.34668611629311],[-112.32292322923229,70.35681757991242],[-112.31212312123121,70.36694904353169],[-112.28692286922869,70.3686376208016],[-112.0961209612096,70.35344042537264],[-111.95211952119521,70.32473461178463]]],[[[-148.820088200882,70.46995225699456],[-148.82368823688236,70.46826367972466],[-148.91368913689138,70.48852660696326],[-148.94968949689496,70.48683802969336],[-148.97848978489785,70.48008372061383],[-149.01449014490146,70.48514945242349],[-149.19449194491943,70.53749534778984],[-149.25569255692557,70.54593823413927],[-149.31329313293134,70.5442496568694],[-149.30249302493024,70.54762681140915],[-149.27729277292772,70.5526925432188],[-149.23769237692377,70.5526925432188],[-148.99288992889927,70.49359233877291],[-148.97128971289712,70.49359233877291],[-148.94248942489423,70.50034664785244],[-148.92448924489244,70.50203522512231],[-148.89568895688956,70.49696949331266],[-148.820088200882,70.46995225699456]]],[[[-128.23508235082352,70.66076148849129],[-128.20268202682027,70.66076148849129],[-128.1558815588156,70.64894144760211],[-128.11268112681125,70.63036709763341],[-128.0838808388084,70.61348132493458],[-128.09468094680946,70.60503843858515],[-128.1018810188102,70.6016612840454],[-128.11268112681125,70.6016612840454],[-128.12348123481235,70.60672701585506],[-128.11988119881198,70.58477551134658],[-128.1378813788138,70.57464404772728],[-128.16668166681666,70.57464404772728],[-128.18828188281884,70.57970977953693],[-128.22068220682206,70.59659555223575],[-128.24228242282422,70.5999727067755],[-128.25668256682567,70.58477551134658],[-128.24948249482495,70.58308693407668],[-128.24588245882458,70.57633262499715],[-128.24228242282422,70.5712668931875],[-128.26748267482674,70.56620116137785],[-128.3430834308343,70.5442496568694],[-128.31788317883178,70.5712668931875],[-128.25668256682567,70.64725287033224],[-128.23508235082352,70.66076148849129]]],[[[127.40347403474038,73.51783422913283],[127.39267392673929,73.52627711548223],[127.42867428674288,73.5380971563714],[127.51867518675186,73.54485146545093],[127.69147691476917,73.54316288818106],[127.98307983079832,73.49419414735445],[128.0622806228062,73.4908169928147],[128.03348033480336,73.48406268373517],[127.77427774277743,73.49250557008457],[127.6986769867699,73.50601418824363],[127.61947619476194,73.500948456434],[127.54027540275405,73.51614565186293],[127.40347403474038,73.51783422913283]]],[[[86.89226892268925,73.69682341974038],[86.88146881468816,73.69006911066086],[86.80946809468094,73.65798614253308],[86.79146791467917,73.64447752437403],[86.78786787867881,73.6377232152945],[86.7986679866799,73.62590317440532],[86.79506795067954,73.61408313351612],[86.78426784267845,73.6090174017065],[86.76266762667626,73.60395166989684],[86.39906399063989,73.59382020627754],[86.46386463864638,73.61914886532577],[86.48906489064893,73.62083744259567],[86.51066510665106,73.64110036983425],[86.57546575465756,73.65460898799333],[86.69426694266946,73.66305187434273],[86.85266852668525,73.69851199701026],[86.90666906669065,73.70357772881991],[86.89226892268925,73.69682341974038]]],[[[97.15957159571599,76.08784883389427],[97.29277292772929,76.0962917202437],[97.3359733597336,76.10811176113288],[97.3359733597336,76.10304602932322],[97.30357303573038,76.08278310208465],[97.17757177571775,76.05407728849664],[97.04797047970482,76.00679712493991],[96.74916749167494,75.98146846589168],[96.6987669876699,75.99497708405073],[96.7131671316713,76.02199432036886],[96.74916749167494,76.03043720671826],[97.15957159571599,76.08784883389427]]],[[[95.1759517595176,76.17058912011854],[95.19035190351906,76.16552338830888],[95.19755197551979,76.16383481103901],[95.15435154351542,76.15370334741971],[95.10035100351007,76.15539192468958],[95.04635046350467,76.16383481103901],[95.00675006750066,76.17734342919806],[95.04995049950503,76.19085204735714],[95.0679506795068,76.20098351097641],[95.08235082350825,76.21786928367524],[95.10035100351007,76.2246235927548],[95.15795157951578,76.20098351097641],[95.18315183151833,76.18578631554749],[95.1759517595176,76.17058912011854]]],[[[94.99954999549999,76.27359233358138],[94.96354963549635,76.26346086996207],[94.88794887948882,76.2516408290729],[94.85554855548554,76.23982078818372],[94.86634866348663,76.22968932456442],[94.89154891548918,76.21955786094514],[94.90234902349022,76.21280355186559],[94.84834848348487,76.18578631554749],[94.77994779947801,76.18072058373784],[94.61434614346143,76.19422920189689],[94.58554585545858,76.20267208824632],[94.55674556745566,76.20436066551619],[94.52434524345244,76.19422920189689],[94.49914499144995,76.18916347008724],[94.46674466744668,76.19422920189689],[94.43434434344346,76.20267208824632],[94.40914409144091,76.21280355186559],[94.47034470344704,76.23475505637407],[94.49194491944922,76.23982078818372],[94.77994779947801,76.21111497459572],[94.80154801548014,76.21786928367524],[94.78714787147874,76.23137790183432],[94.76914769147692,76.2431979427235],[94.75474754747546,76.2516408290729],[94.7367473674737,76.2533294063428],[94.7511475114751,76.26008371542233],[94.74394743947443,76.26008371542233],[94.82314823148232,76.26514944723198],[94.89514895148955,76.2803466426609],[94.90234902349022,76.28372379720068],[94.90954909549095,76.28878952901033],[94.91314913149131,76.29216668355008],[94.92034920349204,76.29216668355008],[94.94554945549459,76.2803466426609],[94.97074970749708,76.27528091085125],[94.99954999549999,76.27359233358138]]],[[[96.57636576365763,76.34113542437669],[96.72396723967239,76.34620115618634],[96.7671676716767,76.33606969256704],[96.75636756367567,76.32762680621764],[96.73116731167312,76.32593822894773],[96.72036720367203,76.32256107440799],[96.70956709567099,76.31411818805856],[96.70596705967063,76.30567530170916],[96.6987669876699,76.29723241535973],[96.68436684366844,76.29385526081998],[96.66276662766631,76.29892099262963],[96.63036630366304,76.31580676532846],[96.61236612366127,76.32256107440799],[96.43236432364324,76.32087249713808],[96.3819638196382,76.33606969256704],[96.42876428764288,76.34620115618634],[96.57636576365763,76.34113542437669]]],[[[94.16434164341644,76.59611059212898],[94.31554315543156,76.58935628304945],[94.36234362343623,76.5741590876205],[93.86913869138692,76.58935628304945],[93.88713887138874,76.59948774666873],[93.94473944739451,76.61637351936756],[94.16434164341644,76.59611059212898]]],[[[93.86913869138692,78.14791310315118],[93.80793807938079,78.14284737134153],[93.76473764737648,78.14622452588128],[93.69633696336962,78.15297883496083],[93.62793627936281,78.15635598950058],[93.59193591935923,78.17324176219941],[93.5991359913599,78.18843895762836],[93.64593645936458,78.19688184397776],[93.69633696336962,78.20363615305732],[93.75033750337502,78.20363615305732],[93.79353793537939,78.20363615305732],[93.81873818738188,78.19350468943802],[93.8619386193862,78.18675038035849],[93.88353883538838,78.17830749400906],[93.9159391593916,78.16817603038976],[93.91953919539196,78.15635598950058],[93.86913869138692,78.14791310315118]]],[[[92.4579245792458,79.11040214698431],[92.65952659526596,79.09182779701561],[92.72432724327246,79.07663060158666],[92.51552515525157,79.08000775612643],[92.24192241922418,79.11546787879396],[92.17712177121774,79.13066507422292],[92.1807218072181,79.13066507422292],[92.21312213122133,79.13910796057232],[92.4579245792458,79.11040214698431]]],[[[92.99072990729906,79.41941178737284],[92.94752947529474,79.40421459194391],[92.90432904329043,79.39746028286439],[92.81432814328144,79.39914886013426],[92.82152821528217,79.39239455105474],[92.79272792727926,79.38395166470531],[92.67032670326705,79.38732881924508],[92.62352623526237,79.40083743740414],[92.60192601926019,79.40590316921379],[92.59472594725946,79.40590316921379],[92.58752587525873,79.41096890102344],[92.58752587525873,79.41434605556319],[92.58752587525873,79.41941178737284],[92.63792637926377,79.41941178737284],[92.79272792727926,79.43967471461144],[92.89352893528934,79.43629756007167],[92.99072990729906,79.41941178737284]]],[[[94.32634326343265,80.02898818180051],[94.29394293942943,80.01716814091134],[94.25074250742506,80.01041383183178],[94.1679416794168,80.00872525456191],[94.17154171541716,80.00534810002213],[94.17514175141753,80.00197094548238],[94.17874178741789,79.9985937909426],[94.18234182341826,79.99521663640286],[94.15354153541534,79.98339659551368],[93.99513995139955,79.96482224554495],[93.95913959139591,79.96482224554495],[93.93033930339305,79.97495370916425],[93.95553955539555,79.9985937909426],[93.96633966339664,80.00872525456191],[93.98433984339846,80.01547956364143],[94.12474124741249,80.01885671818121],[94.25074250742506,80.04080822268969],[94.29034290342906,80.03911964541979],[94.32634326343265,80.02898818180051]]],[[[163.61263612636128,-74.84394185730085],[163.65223652236523,-74.84731901184061],[163.6738367383674,-74.85913905272979],[163.6882368823688,-74.87433624815873],[163.69543695436954,-74.89291059812744],[163.65943659436596,-74.91486210263592],[163.62703627036274,-74.91317352536603],[163.6018360183602,-74.8962877526672],[163.59463594635946,-74.87264767088885],[163.60543605436055,-74.86251620726955],[163.61263612636128,-74.8574504754599],[163.61623616236164,-74.85238474365026],[163.61263612636128,-74.84394185730085]]],[[[163.3390333903339,-70.37427782392135],[163.349833498335,-70.3675235148418],[163.39663396633966,-70.34557201033334],[163.45423454234543,-70.3388177012538],[163.51543515435156,-70.34557201033334],[163.5658356583566,-70.36414636030204],[163.51543515435156,-70.37765497846111],[163.34623346233462,-70.39454075115994],[163.31023310233104,-70.38609786481052],[163.32103321033213,-70.38440928754063],[163.32823328233286,-70.38103213300087],[163.33543335433353,-70.37765497846111],[163.3390333903339,-70.37427782392135]]],[[[-63.97803978039779,10.809140157499044],[-63.95643956439564,10.80069727114963],[-63.92763927639275,10.790565807530328],[-63.90243902439023,10.777057189371263],[-63.89523895238952,10.755105684862798],[-63.90963909639096,10.734842757624207],[-63.93483934839348,10.733154180354319],[-63.95643956439564,10.743285643973621],[-63.95643956439564,10.761859993942323],[-63.98163981639816,10.763548571212212],[-63.9960399603996,10.768614303021849],[-64.00324003240031,10.775368612101389],[-64.00684006840068,10.788877230260454],[-63.999639996399964,10.799008693879742],[-63.988839888398886,10.807451580229156],[-63.97803978039779,10.809140157499044]]],[[[-64.6080460804608,11.898272496573384],[-64.59364593645937,11.893206764763733],[-64.56124561245612,11.86787810571549],[-64.55764557645576,11.857746642096203],[-64.55044550445504,11.839172292127486],[-64.5540455404554,11.823975096698547],[-64.56124561245612,11.817220787619007],[-64.60444604446045,11.817220787619007],[-64.62964629646297,11.822286519428658],[-64.64764647646476,11.830729405778072],[-64.64764647646476,11.837483714857598],[-64.64404644046441,11.840860869397375],[-64.64404644046441,11.842549446667249],[-64.64764647646476,11.850992333016663],[-64.63684636846368,11.861123796635965],[-64.61884618846189,11.88982961022397],[-64.6080460804608,11.898272496573384]]],[[[-68.66528665286653,18.16964847691773],[-68.61128611286112,18.171337054187603],[-68.60048600486004,18.166271322377952],[-68.58968589685897,18.1527627042189],[-68.57888578885789,18.134188354250185],[-68.57168571685716,18.115614004281483],[-68.57168571685716,18.10717111793207],[-68.5860858608586,18.11054827247183],[-68.61848618486185,18.12574546790077],[-68.63648636486364,18.129122622440534],[-68.65448654486545,18.12574546790077],[-68.68328683286832,18.117302581551357],[-68.70128701287013,18.113925427011594],[-68.73728737287372,18.124056890630897],[-68.76248762487624,18.14600839513936],[-68.77688776887769,18.171337054187603],[-68.78768787687876,18.196665713235845],[-68.77328773287732,18.200042867775608],[-68.75528755287553,18.198354290505733],[-68.73728737287372,18.18991140415632],[-68.72288722887228,18.179779940537017],[-68.7120871208712,18.174714208727366],[-68.66528665286653,18.16964847691773]]],[[[-74.90054900549005,23.70649334486309],[-74.85014850148501,23.720001963022156],[-74.81414814148141,23.720001963022156],[-74.79974799747997,23.714936231212505],[-74.77814778147781,23.699739035783566],[-74.78894788947889,23.684541840354612],[-74.79254792547925,23.67103322219556],[-74.80334803348033,23.66427891311602],[-74.82494824948249,23.66427891311602],[-74.82494824948249,23.65921318130637],[-74.81774817748177,23.650770294956956],[-74.83574835748357,23.650770294956956],[-74.86094860948609,23.657524604036496],[-74.87174871748716,23.672721799465435],[-74.88974889748897,23.66427891311602],[-74.9221492214922,23.66427891311602],[-74.94014940149401,23.65921318130637],[-74.94374943749438,23.68116468581485],[-74.94014940149401,23.694673303973914],[-74.9221492214922,23.70142761305344],[-74.90054900549005,23.70649334486309]]],[[[-86.69426694266943,30.408456529027518],[-86.65826658266582,30.415210838107058],[-86.61866618666187,30.41183368356728],[-86.52146521465214,30.401702219947992],[-86.52866528665287,30.39663648813834],[-86.53946539465394,30.394947910868467],[-86.55026550265502,30.39663648813834],[-86.5610656106561,30.401702219947992],[-86.9030690306903,30.362864942740686],[-87.24147241472414,30.325716242803267],[-87.29547295472955,30.332470551882807],[-87.27747277472774,30.337536283692444],[-87.19827198271983,30.339224860962332],[-87.07947079470794,30.35611063366116],[-87.02187021870219,30.374684983629862],[-86.95346953469534,30.374684983629862],[-86.92826928269282,30.381439292709402],[-86.91746917469175,30.384816447249165],[-86.89226892268923,30.39325933359858],[-86.87426874268742,30.394947910868467],[-86.83106831068311,30.39325933359858],[-86.7230672306723,30.406767951757644],[-86.70146701467014,30.415210838107058],[-86.69426694266943,30.408456529027518]]],[[[-123.72063720637206,49.16010711107489],[-123.70263702637027,49.156729956535116],[-123.69543695436954,49.14828707018572],[-123.69543695436954,49.13646702929654],[-123.70623706237062,49.13308987475676],[-123.71343713437133,49.13308987475676],[-123.7170371703717,49.13308987475676],[-123.73143731437314,49.129712720217015],[-123.74943749437494,49.12802414294711],[-123.77823778237783,49.13308987475676],[-123.8430384303843,49.151664224725465],[-123.8610386103861,49.16348426561464],[-123.86823868238682,49.173615729233944],[-123.86463864638645,49.178681461043595],[-123.86823868238682,49.18374719285325],[-123.87183871838718,49.18543577012312],[-123.86823868238682,49.19050150193277],[-123.86463864638645,49.19556723374242],[-123.83223832238322,49.200632965552074],[-123.8250382503825,49.1989443882822],[-123.81783817838178,49.19050150193277],[-123.81063810638106,49.18374719285325],[-123.76743767437674,49.16854999742429],[-123.72063720637206,49.16010711107489]]],[[[-124.23184231842319,49.499511142321325],[-124.17064170641706,49.464051019653766],[-124.17064170641706,49.45391955603449],[-124.1850418504185,49.44716524695494],[-124.23184231842319,49.458985287844115],[-124.24984249842498,49.458985287844115],[-124.25704257042571,49.455608133304366],[-124.26784267842677,49.455608133304366],[-124.29664296642966,49.45729671057424],[-124.31824318243181,49.46236244238389],[-124.35064350643506,49.47418248327307],[-124.36144361443614,49.47924821508272],[-124.35784357843579,49.48431394689237],[-124.35424354243543,49.491068255971896],[-124.3650436504365,49.49782256505142],[-124.37584375843758,49.499511142321325],[-124.37944379443795,49.507954028670724],[-124.37224372243722,49.51470833775025],[-124.3650436504365,49.521462646829775],[-124.35424354243543,49.52315122409968],[-124.3290432904329,49.513019760480375],[-124.32184321843218,49.5113311832105],[-124.29664296642966,49.513019760480375],[-124.28224282242823,49.5096426059406],[-124.26784267842677,49.50626545140085],[-124.24984249842498,49.50457687413095],[-124.23184231842319,49.499511142321325]]],[[[-124.70704707047071,49.49782256505142],[-124.69264692646927,49.491068255971896],[-124.6890468904689,49.4826253696225],[-124.70344703447034,49.47924821508272],[-124.71064710647107,49.47924821508272],[-124.72144721447214,49.4826253696225],[-124.74664746647466,49.48769110143212],[-124.82584825848258,49.540036996798506],[-124.84024840248402,49.55692276949733],[-124.84024840248402,49.57718569673591],[-124.83664836648367,49.597448623974515],[-124.82584825848258,49.602514355784166],[-124.80424804248042,49.58562858308534],[-124.79344793447935,49.58056285127569],[-124.71784717847179,49.499511142321325],[-124.70704707047071,49.49782256505142]]],[[[-124.10944109441094,49.67850033292888],[-124.13464134641346,49.6565488284204],[-124.16344163441634,49.659925982960175],[-124.18864188641886,49.67850033292888],[-124.20664206642067,49.70551756924701],[-124.14544145441454,49.74773200099406],[-124.13464134641346,49.75448631007359],[-124.12024120241202,49.75448631007359],[-124.10224102241023,49.74773200099406],[-124.10224102241023,49.76124061915314],[-124.09864098640986,49.766306350962765],[-124.09144091440913,49.76968350550254],[-124.04824048240482,49.779814969121844],[-124.01944019440194,49.78150354639172],[-124.01944019440194,49.77643781458207],[-124.01944019440194,49.77474923731219],[-124.0230402304023,49.77474923731219],[-124.02664026640267,49.77474923731219],[-124.07344073440734,49.74097769191454],[-124.08064080640807,49.72915765102536],[-124.08424084240842,49.72409191921571],[-124.10944109441094,49.67850033292888]]],[[[-124.89064890648906,50.19182782297321],[-124.91224912249123,50.19351640024311],[-124.92664926649266,50.20027070932264],[-124.95904959049591,50.23404225472029],[-124.96624966249662,50.24923945014922],[-124.96264962649627,50.2627480683083],[-124.94824948249482,50.26781380011795],[-124.93744937449375,50.27625668646735],[-124.92664926649266,50.29314245916618],[-124.91584915849158,50.30327392278548],[-124.88344883448835,50.28976530462643],[-124.83664836648367,50.281322418277],[-124.8150481504815,50.274568109197475],[-124.81144811448115,50.26950237738782],[-124.8150481504815,50.2627480683083],[-124.82224822248222,50.24586229560947],[-124.8150481504815,50.212090750211814],[-124.79344793447935,50.19858213205276],[-124.76464764647646,50.18845066843346],[-124.75384753847538,50.168187741194856],[-124.76464764647646,50.15636770030568],[-124.78624786247863,50.13948192760685],[-124.81144811448115,50.1242847321779],[-124.83304833048331,50.11753042309837],[-124.84384843848439,50.122596154908024],[-124.8510485104851,50.132727618527326],[-124.86544865448654,50.154679123035805],[-124.8690486904869,50.16649916392498],[-124.85824858248583,50.17325347300451],[-124.84024840248402,50.17831920481416],[-124.82944829448294,50.185073513893684],[-124.84024840248402,50.19858213205276],[-124.85464854648546,50.20027070932264],[-124.89064890648906,50.19182782297321]]],[[[-124.80424804248042,50.22897652291064],[-124.80784807848079,50.23235367745039],[-124.81144811448115,50.239107986529945],[-124.79344793447935,50.2627480683083],[-124.78624786247863,50.27794526373722],[-124.77184771847718,50.28976530462643],[-124.75744757447575,50.296519613705954],[-124.75024750247502,50.30327392278548],[-124.7250472504725,50.30496250005535],[-124.6890468904689,50.2914538818963],[-124.66024660246603,50.2627480683083],[-124.64944649446494,50.22391079110099],[-124.66384663846638,50.19182782297321],[-124.69264692646927,50.17156489573463],[-124.71424714247142,50.16143343211533],[-124.7250472504725,50.163122009385205],[-124.73224732247323,50.168187741194856],[-124.73224732247323,50.17494205027438],[-124.73584735847359,50.18676209116356],[-124.7430474304743,50.203647863862386],[-124.73944739447394,50.220533636561214],[-124.72864728647286,50.24248514106969],[-124.70704707047071,50.261059491038395],[-124.70704707047071,50.274568109197475],[-124.71424714247142,50.28638815008665],[-124.7250472504725,50.29314245916618],[-124.72864728647286,50.2914538818963],[-124.7250472504725,50.281322418277],[-124.7250472504725,50.2728795319276],[-124.7250472504725,50.266125222848046],[-124.73224732247323,50.25430518195887],[-124.75744757447575,50.21884505929134],[-124.76824768247683,50.21377932748169],[-124.78264782647827,50.21884505929134],[-124.80424804248042,50.22897652291064]]],[[[-125.50265502655026,50.413031445327846],[-125.50265502655026,50.404588558978446],[-125.59265592655926,50.38770278627962],[-125.61065610656107,50.39107994081937],[-125.62145621456214,50.38939136354949],[-125.63585635856359,50.38263705446997],[-125.74385743857438,50.377571322660316],[-125.76545765457655,50.37925989993019],[-125.7690576905769,50.38094847720009],[-125.77985779857798,50.386014209009716],[-125.78345783457834,50.38939136354949],[-125.78345783457834,50.39276851808927],[-125.78345783457834,50.39783424989892],[-125.77985779857798,50.40121140443867],[-125.77265772657726,50.404588558978446],[-125.73665736657367,50.41134286805797],[-125.68625686256863,50.4096542907881],[-125.65745657456574,50.4180971771375],[-125.63585635856359,50.42485148621702],[-125.61425614256143,50.429917218026674],[-125.6070560705607,50.434982949836325],[-125.59265592655926,50.4383601043761],[-125.54585545855458,50.44342583618575],[-125.52425524255241,50.44173725891585],[-125.50625506255062,50.43160579529655],[-125.50265502655026,50.413031445327846]]],[[[-125.36945369453694,50.46031160888458],[-125.34065340653407,50.45186872253515],[-125.32625326253262,50.43329437256645],[-125.33705337053371,50.41134286805797],[-125.34785347853477,50.40289998170854],[-125.3550535505355,50.39783424989892],[-125.38385383853839,50.39276851808927],[-125.38025380253802,50.38939136354949],[-125.37665376653766,50.38263705446997],[-125.38025380253802,50.37588274539044],[-125.39105391053911,50.36743985904101],[-125.41625416254163,50.358996972691614],[-125.44865448654485,50.35393124088196],[-125.48825488254883,50.35730839542171],[-125.51345513455135,50.36743985904101],[-125.53145531455314,50.372505590850665],[-125.54585545855458,50.377571322660316],[-125.53865538655387,50.38432563173984],[-125.52065520655206,50.39107994081937],[-125.4990549905499,50.40121140443867],[-125.4918549185492,50.413031445327846],[-125.4918549185492,50.421474331677274],[-125.47745477454774,50.429917218026674],[-125.4090540905409,50.448491567995376],[-125.39825398253981,50.45186872253515],[-125.38745387453875,50.45862303161468],[-125.36945369453694,50.46031160888458]]],[[[-125.74745747457474,50.421474331677274],[-125.75825758257582,50.41978575440737],[-125.78345783457834,50.41134286805797],[-125.8050580505805,50.407965713518195],[-125.8230582305823,50.4096542907881],[-125.87345873458735,50.41640859986762],[-125.90585905859058,50.41640859986762],[-125.9490594905949,50.42485148621702],[-125.96705967059671,50.4383601043761],[-125.95265952659526,50.44342583618575],[-125.93825938259383,50.44511441345563],[-125.88785887858879,50.462000186154455],[-125.85185851858517,50.46875449523398],[-125.8050580505805,50.475508804313506],[-125.79425794257942,50.47213164977376],[-125.7690576905769,50.45862303161468],[-125.76545765457655,50.45355729980503],[-125.76545765457655,50.448491567995376],[-125.75465754657546,50.44342583618575],[-125.74385743857438,50.4366715271062],[-125.74025740257403,50.4282286407568],[-125.74745747457474,50.421474331677274]]],[[[-126.40266402664027,50.62916933587283],[-126.38466384663846,50.62916933587283],[-126.3630636306363,50.61903787225353],[-126.37386373863738,50.60552925409448],[-126.42426424264242,50.58864348139565],[-126.43866438664386,50.586954904125776],[-126.4530645306453,50.58864348139565],[-126.48546485464854,50.57851201777635],[-126.49986499864998,50.57851201777635],[-126.51066510665106,50.581889172316124],[-126.51426514265142,50.5852663268559],[-126.5070650706507,50.5852663268559],[-126.51066510665106,50.58864348139565],[-126.52866528665287,50.59202063593543],[-126.53946539465394,50.595397790475175],[-126.53586535865358,50.59877494501495],[-126.54666546665467,50.59877494501495],[-126.55746557465574,50.6038406768246],[-126.54666546665467,50.613972140443906],[-126.47106471064711,50.62748075860296],[-126.40266402664027,50.62916933587283]]],[[[-126.85986859868598,50.64605510857166],[-126.83826838268382,50.63423506768248],[-126.83466834668346,50.62579218133308],[-126.83826838268382,50.622415026793306],[-126.84546845468455,50.62579218133308],[-126.85266852668526,50.62916933587283],[-126.86346863468634,50.62916933587283],[-126.87066870668707,50.62410360406318],[-126.89586895868959,50.62072644952343],[-127.00387003870038,50.62579218133308],[-127.03627036270362,50.63930079949213],[-127.06867068670687,50.63423506768248],[-127.12267122671227,50.62916933587283],[-127.15147151471515,50.63930079949213],[-127.14067140671406,50.65449799492109],[-127.12267122671227,50.666318035810264],[-127.10827108271083,50.671383767619915],[-127.07227072270723,50.66969519035001],[-127.03627036270362,50.66294088127049],[-126.93546935469354,50.65956372673074],[-126.89586895868959,50.666318035810264],[-126.88146881468815,50.65956372673074],[-126.85986859868598,50.64605510857166]]],[[[-126.78066780667807,50.774386981082756],[-126.79506795067951,50.774386981082756],[-126.85626856268563,50.78620702197193],[-126.8850688506885,50.81153568102016],[-126.90666906669067,50.82166714463946],[-126.90666906669067,50.83011003098889],[-126.89226892268923,50.83011003098889],[-126.87786877868778,50.83348718552864],[-126.86346863468634,50.836864340068416],[-126.82746827468274,50.836864340068416],[-126.81666816668167,50.82842145371899],[-126.80586805868059,50.81322425829006],[-126.79506795067951,50.80815852648041],[-126.78066780667807,50.82166714463946],[-126.78426784267842,50.831798608258765],[-126.76986769867699,50.836864340068416],[-126.68346683466834,50.835175762798514],[-126.66546665466655,50.836864340068416],[-126.65826658266582,50.84361864914794],[-126.6510665106651,50.84699580368772],[-126.64026640266403,50.85037295822747],[-126.6330663306633,50.84868438095759],[-126.62946629466295,50.84361864914794],[-126.62226622266223,50.840241494608165],[-126.61866618666187,50.836864340068416],[-126.58986589865899,50.82166714463946],[-126.57546575465754,50.81322425829006],[-126.5610656106561,50.801404217400886],[-126.57546575465754,50.801404217400886],[-126.59346593465935,50.80646994921051],[-126.60426604266043,50.80815852648041],[-126.6150661506615,50.80646994921051],[-126.63666636666366,50.79802706286111],[-126.67266672666727,50.79296133105146],[-126.7410674106741,50.774386981082756],[-126.74466744667447,50.77607555835263],[-126.7590675906759,50.78620702197193],[-126.76986769867699,50.78789559924181],[-126.76986769867699,50.78620702197193],[-126.77346773467735,50.78114129016228],[-126.7770677706777,50.777764135622505],[-126.78066780667807,50.774386981082756]]],[[[-44.35064350643506,59.98388741102298],[-44.368643686436855,59.965313061054275],[-44.4010440104401,59.9534930201651],[-44.42624426244262,59.956870174704875],[-44.43344433444335,59.98388741102298],[-44.42984429844299,59.99401887464228],[-44.41544415444153,60.014281801880884],[-44.40824408244083,60.04467619273876],[-44.4010440104401,60.058184810897814],[-44.37944379443795,60.08013631540629],[-44.40824408244083,60.076759160866544],[-44.42624426244262,60.054807656358065],[-44.43704437044369,60.027790420039935],[-44.45504455044551,60.00752749280136],[-44.4730447304473,60.00246176099171],[-44.48744487444873,60.00415033826158],[-44.494644946449455,60.01090464734111],[-44.494644946449455,60.02610184277006],[-44.48744487444873,60.03961046092911],[-44.46584465844657,60.054807656358065],[-44.46224462244621,60.07000485178702],[-44.45864458644587,60.095333510835246],[-44.45504455044551,60.1189735926136],[-44.444244442444415,60.1375479425823],[-44.419044190441895,60.14936798347148],[-44.38664386643865,60.14936798347148],[-44.336243362433606,60.14092509712208],[-44.293042930429294,60.1291050562329],[-44.267842678426774,60.11559643807385],[-44.253442534425346,60.1088421289943],[-44.23904239042389,60.095333510835246],[-44.2210422104221,60.06662769724724],[-44.210242102421006,60.058184810897814],[-44.203042030420306,60.05311907908819],[-44.203042030420306,60.04805334727854],[-44.210242102421006,60.03623330638936],[-44.2210422104221,60.03116757457971],[-44.260642606426046,60.02610184277006],[-44.30024300243002,60.00415033826158],[-44.30024300243002,60.000773183721805],[-44.30384303843039,59.992330297372405],[-44.30744307443075,59.9821988337531],[-44.318243182431814,59.97713310194345],[-44.32904329043291,59.98051025648323],[-44.336243362433606,59.987264565562754],[-44.343443434434334,59.997396029182056],[-44.343443434434334,60.00752749280136],[-44.33984339843397,60.01259322461098],[-44.318243182431814,60.02947899730981],[-44.311043110431086,60.03961046092911],[-44.33984339843397,60.032856151849586],[-44.36504365043649,60.014281801880884],[-44.37584375843758,59.99401887464228],[-44.35064350643506,59.98388741102298]]],[[[-48.15948159481593,61.05782255466838],[-48.18468184681845,61.066265441017805],[-48.19548195481954,61.06795401828768],[-48.23508235082349,61.05444540012863],[-48.281882818828194,61.05444540012863],[-48.332283322833234,61.05951113193828],[-48.36108361083609,61.06795401828768],[-48.35388353883539,61.07301975009733],[-48.357483574835754,61.07639690463711],[-48.36108361083609,61.07808548190698],[-48.37188371883718,61.08146263644673],[-48.34668346683466,61.096659831875684],[-48.29628296282962,61.10341414095521],[-48.24228242282422,61.101725563685335],[-48.16308163081629,61.088216945526284],[-48.11988119881198,61.088216945526284],[-48.10188101881019,61.08483979098651],[-48.04428044280442,61.06795401828768],[-48.06228062280621,61.061199709208154],[-48.0838808388084,61.05951113193828],[-48.123481234812346,61.05951113193828],[-48.15228152281523,61.0561339773985],[-48.15948159481593,61.05782255466838]]],[[[-48.68868688686885,61.368520772326804],[-48.559085590855915,61.373586504136455],[-48.5230852308523,61.36176646324728],[-48.515885158851574,61.33643780419902],[-48.533885338853395,61.324617763309845],[-48.584285842858435,61.31448629969054],[-48.584285842858435,61.31786345423032],[-48.58068580685807,61.3296834951195],[-48.57708577085771,61.33474922692915],[-48.63108631086311,61.31786345423032],[-48.6490864908649,61.31448629969054],[-48.667086670866695,61.31448629969054],[-48.717487174871735,61.33474922692915],[-48.7750877508775,61.32630634057972],[-48.811088110881116,61.32630634057972],[-48.83268832688327,61.34150353600867],[-48.72828728287283,61.36683219505693],[-48.68868688686885,61.368520772326804]]],[[[-65.70245702457024,61.792353667067346],[-65.67725677256772,61.76871358528899],[-65.67725677256772,61.76027069893959],[-65.69165691656916,61.75013923532029],[-65.72045720457204,61.756893544399816],[-65.75285752857528,61.77209073982877],[-65.77085770857708,61.78728793525772],[-65.78525785257852,61.765336430749244],[-65.8140581405814,61.76027069893959],[-65.87525875258753,61.76702500801912],[-65.90045900459005,61.77209073982877],[-65.92925929259292,61.78728793525772],[-65.94725947259472,61.800796553416774],[-65.88965889658895,61.82274805792525],[-65.83925839258391,61.85314244878313],[-65.79245792457924,61.871716798751834],[-65.75285752857528,61.85651960332291],[-65.760057600576,61.85145387151326],[-65.79245792457924,61.84469956243373],[-65.79245792457924,61.83794525335418],[-65.78525785257852,61.83119094427465],[-65.7780577805778,61.827813789734904],[-65.76725767257672,61.83119094427465],[-65.75645756457564,61.841322407893955],[-65.73845738457385,61.84807671697348],[-65.7240572405724,61.84469956243373],[-65.71685716857168,61.827813789734904],[-65.71325713257133,61.8176823261156],[-65.70245702457024,61.79573082160712],[-65.70245702457024,61.792353667067346]]],[[[-77.85257852578525,62.5876735611821],[-77.83457834578346,62.56234490213387],[-77.85977859778598,62.550524861244696],[-77.93177931779317,62.54714770670492],[-78.08658086580866,62.560656324864],[-78.10458104581045,62.56572205667362],[-78.11178111781118,62.57416494302305],[-78.10818108181081,62.58429640664235],[-78.09018090180902,62.5876735611821],[-77.88857888578886,62.59949360207128],[-77.85257852578525,62.5876735611821]]],[[[-64.9680496804968,62.53363908854587],[-65.06165061650616,62.531950511275966],[-65.11565115651156,62.53870482035552],[-65.14085140851408,62.553902015784445],[-65.08325083250833,62.558967747594096],[-65.06885068850688,62.56403347940375],[-65.06165061650616,62.57416494302305],[-65.05085050850508,62.58260782937245],[-65.03645036450364,62.589362138452],[-65.02565025650256,62.59611644753153],[-64.99324993249932,62.602870756611054],[-64.95364953649536,62.607936488420705],[-64.9140491404914,62.60624791115083],[-64.88884888848888,62.59611644753153],[-64.8420484204842,62.58260782937245],[-64.86724867248672,62.56234490213387],[-64.88524885248852,62.55727917032422],[-64.90324903249032,62.553902015784445],[-64.92124921249211,62.55559059305435],[-64.9320493204932,62.553902015784445],[-64.93924939249392,62.550524861244696],[-64.95364953649536,62.540393397625394],[-64.96084960849608,62.53532766581574],[-64.9680496804968,62.53363908854587]]],[[[-52.06552065520654,64.16480473125256],[-52.02592025920259,64.18169050395139],[-51.93951939519394,64.18506765849114],[-51.89631896318963,64.19182196757066],[-51.8819188191882,64.16818188579231],[-51.93231932319324,64.13441034039465],[-51.993519935199345,64.12259029950548],[-52.02952029520294,64.12596745404525],[-52.043920439204385,64.10570452680665],[-52.08352083520835,64.12765603131513],[-52.06552065520654,64.16480473125256]]],[[[-73.52893528935289,64.50420876249896],[-73.52533525335252,64.49238872160979],[-73.5109351093511,64.48732298980013],[-73.50013500135,64.48394583526039],[-73.49653496534965,64.47719152618086],[-73.49653496534965,64.44848571259286],[-73.50373503735037,64.4332885171639],[-73.52173521735217,64.4231570535446],[-73.55053550535504,64.41133701265542],[-73.54333543335433,64.39276266268672],[-73.5469354693547,64.37925404452764],[-73.53973539735397,64.37081115817824],[-73.51453514535145,64.37081115817824],[-73.53253532535325,64.36067969455894],[-73.55413554135541,64.35392538547941],[-73.57573575735756,64.34548249912999],[-73.58293582935829,64.32859672643116],[-73.57213572135721,64.33028530370106],[-73.56493564935649,64.32859672643116],[-73.56133561335614,64.32353099462154],[-73.55773557735577,64.3150881082721],[-73.60813608136081,64.31339953100223],[-73.64773647736477,64.31846526281188],[-73.65493654936549,64.32353099462154],[-73.65493654936549,64.39276266268672],[-73.66213662136622,64.4130255899253],[-73.6729367293673,64.43159993989403],[-73.65493654936549,64.44510855805308],[-73.64053640536405,64.45017428986273],[-73.6261362613626,64.4518628671326],[-73.61533615336153,64.45017428986273],[-73.590135901359,64.44510855805308],[-73.57933579335793,64.44679713532295],[-73.57933579335793,64.4518628671326],[-73.590135901359,64.46368290802178],[-73.60453604536045,64.47888010345073],[-73.60453604536045,64.48901156707004],[-73.57933579335793,64.48732298980013],[-73.57933579335793,64.49238872160979],[-73.65853658536585,64.50252018522909],[-73.6729367293673,64.50758591703874],[-73.68373683736837,64.52447168973757],[-73.66933669336693,64.53460315335687],[-73.6369363693637,64.54473461697614],[-73.60813608136081,64.5599318124051],[-73.57213572135721,64.56837469875452],[-73.53253532535325,64.56668612148462],[-73.50733507335073,64.55655465786535],[-73.50733507335073,64.54473461697614],[-73.50733507335073,64.53966888516652],[-73.50373503735037,64.53460315335687],[-73.50733507335073,64.53460315335687],[-73.50373503735037,64.52784884427734],[-73.51813518135181,64.51940595792792],[-73.52533525335252,64.51096307157852],[-73.52893528935289,64.50420876249896]]],[[[-62.257222572225714,65.74869021040251],[-62.250022500225,65.74869021040251],[-62.250022500225,65.74024732405312],[-62.257222572225714,65.73855874678321],[-62.26082260822608,65.73518159224346],[-62.26082260822608,65.73349301497359],[-62.29682296822968,65.71323008773498],[-62.26442264422644,65.70816435592533],[-62.19962199621996,65.71323008773498],[-62.16722167221671,65.70647577865546],[-62.18522185221852,65.69803289230603],[-62.203222032220324,65.69296716049638],[-62.203222032220324,65.68621285141685],[-62.181621816218154,65.69296716049638],[-62.16362163621636,65.69296716049638],[-62.145621456214556,65.68790142868676],[-62.127621276212764,65.67945854233733],[-62.14202142021419,65.6727042332578],[-62.13482134821348,65.6541298832891],[-62.152821528215284,65.64906415147945],[-62.181621816218154,65.64737557420955],[-62.203222032220324,65.64568699693967],[-62.19242192421923,65.63724411059027],[-62.18882188821888,65.63048980151072],[-62.19242192421923,65.62204691516132],[-62.19962199621996,65.61360402881189],[-62.21042210422104,65.61022687427214],[-62.21762217622175,65.61360402881189],[-62.228422284222844,65.62035833789145],[-62.23922239222392,65.6237354924312],[-62.250022500225,65.6338669560505],[-62.257222572225714,65.6524413060192],[-62.26802268022679,65.66426134690838],[-62.282422824228235,65.65581846055898],[-62.304023040230405,65.6254240697011],[-62.31842318423183,65.6152926060818],[-62.340023400234,65.61866976062154],[-62.34722347223472,65.63048980151072],[-62.340023400234,65.6439984196698],[-62.3220232202322,65.65581846055898],[-62.31122311223112,65.66426134690838],[-62.3220232202322,65.6625727696385],[-62.340023400234,65.6541298832891],[-62.35082350823508,65.65075272874932],[-62.36162361623616,65.65075272874932],[-62.383223832238315,65.6541298832891],[-62.39402394023939,65.65075272874932],[-62.39042390423904,65.65581846055898],[-62.39042390423904,65.66763850144815],[-62.38682386823868,65.6727042332578],[-62.408424084240835,65.66763850144815],[-62.46962469624695,65.66426134690838],[-62.4660246602466,65.6727042332578],[-62.458824588245875,65.67945854233733],[-62.45162451624516,65.68452427414698],[-62.44082440824408,65.68621285141685],[-62.44082440824408,65.69296716049638],[-62.455224552245525,65.69972146957593],[-62.47322473224732,65.70985293319521],[-62.484024840248395,65.72336155135429],[-62.484024840248395,65.74024732405312],[-62.46962469624695,65.74869021040251],[-62.45162451624516,65.74869021040251],[-62.41562415624156,65.74024732405312],[-62.408424084240835,65.74193590132299],[-62.40122401224012,65.74531305586277],[-62.39762397623976,65.74869021040251],[-62.39042390423904,65.74531305586277],[-62.39042390423904,65.74193590132299],[-62.38682386823868,65.73011586043381],[-62.38682386823868,65.72842728316394],[-62.37242372423724,65.72842728316394],[-62.36162361623616,65.73011586043381],[-62.340023400234,65.74024732405312],[-62.31842318423183,65.74700163313264],[-62.30042300423004,65.74869021040251],[-62.257222572225714,65.74869021040251]]],[[[-83.50463504635046,65.8094789921183],[-83.5370353703537,65.8196104557376],[-83.5730357303573,65.83987338297618],[-83.58383583835838,65.86182488748466],[-83.54423544235442,65.87026777383409],[-83.36783367833678,65.87026777383409],[-83.32823328233282,65.86351346475453],[-83.30663306633066,65.85675915567501],[-83.29223292232922,65.8466276920557],[-83.28863288632886,65.83480765116653],[-83.31023310233103,65.83311907389665],[-83.34983349833497,65.83649622843643],[-83.41463414634146,65.83480765116653],[-83.43263432634326,65.82974191935688],[-83.43983439834398,65.82467618754725],[-83.45423454234542,65.81285614665805],[-83.46143461434615,65.8094789921183],[-83.50463504635046,65.8094789921183]]],[[[-82.08262082620826,68.3068847742748],[-82.1510215102151,68.33390201059294],[-82.2590225902259,68.34403347421224],[-82.3490234902349,68.36429640145082],[-82.32742327423274,68.3778050196099],[-82.25542255422553,68.36260782418094],[-82.22662226622266,68.36429640145082],[-82.23022230222301,68.36936213326047],[-82.2410224102241,68.37611644233999],[-82.24462244622445,68.37949359687977],[-82.24462244622445,68.3862479059593],[-82.17622176221762,68.3862479059593],[-82.14022140221402,68.37949359687977],[-82.1150211502115,68.36429640145082],[-82.11862118621185,68.35585351510142],[-82.11142111421114,68.35247636056164],[-82.0970209702097,68.35078778329176],[-82.02142021420214,68.35416493783151],[-81.99981999819998,68.35078778329176],[-81.99981999819998,68.34572205148211],[-82.00342003420033,68.34234489694234],[-82.04662046620466,68.31701623789411],[-82.06462064620646,68.30857335154468],[-82.08262082620826,68.3068847742748]]],[[[-74.36774367743676,68.38962506049907],[-74.39294392943928,68.40988798773765],[-74.40014400144001,68.42339660589673],[-74.40014400144001,68.44028237859555],[-74.38934389343893,68.4537909967546],[-74.37494374943749,68.462233883104],[-74.36054360543605,68.46729961491366],[-74.32094320943209,68.46898819218356],[-74.29934299342993,68.46392246037391],[-74.24894248942489,68.4436595331353],[-74.16974169741697,68.39975652411835],[-74.11934119341193,68.35923066964116],[-74.08334083340833,68.34403347421224],[-74.07974079740796,68.33221343332306],[-74.0941409414094,68.31363908335433],[-74.10854108541085,68.30519619700493],[-74.12654126541265,68.2984418879254],[-74.1409414094141,68.2883104243061],[-74.15534155341552,68.25622745617832],[-74.17334173341733,68.24778456982892],[-74.19854198541985,68.24609599255902],[-74.22014220142201,68.2494731470988],[-74.2561425614256,68.2697360743374],[-74.27054270542705,68.29506473338563],[-74.25974259742597,68.31532766062423],[-74.21654216542166,68.31701623789411],[-74.21654216542166,68.32377054697363],[-74.29574295742957,68.34572205148211],[-74.33534335343353,68.36091924691107],[-74.36774367743676,68.38962506049907]]],[[[-78.61578615786158,68.50613689212096],[-78.62298622986229,68.49262827396191],[-78.64818648186481,68.48249681034261],[-78.73818738187381,68.45210241948473],[-78.78498784987849,68.44534811040518],[-78.83178831788318,68.44703668767508],[-78.88218882188822,68.4537909967546],[-78.86778867788678,68.46561103764378],[-78.86058860588605,68.46898819218356],[-78.88578885788857,68.47574250126308],[-78.97218972189721,68.47574250126308],[-78.95778957789578,68.48249681034261],[-78.94698946989469,68.49093969669201],[-78.94338943389434,68.50107116031131],[-78.95058950589505,68.50951404666074],[-78.93618936189361,68.52133408754992],[-78.92178921789217,68.52133408754992],[-78.90378903789038,68.51795693301014],[-78.88938889388893,68.51626835574027],[-78.87138871388713,68.52302266481979],[-78.84258842588426,68.54497416932827],[-78.82818828188282,68.55003990113792],[-78.74178741787418,68.5517284784078],[-78.70218702187022,68.5618599420271],[-78.66978669786697,68.58550002380545],[-78.69138691386914,68.5990086419645],[-78.72018720187201,68.60576295104406],[-78.74898748987489,68.60745152831393],[-78.77778777787778,68.61251726012358],[-78.77058770587705,68.61927156920311],[-78.90018900189001,68.65304311460076],[-78.8929889298893,68.65642026914054],[-78.88578885788857,68.65810884641041],[-78.86778867788678,68.65979742368029],[-78.84258842588426,68.66655173275981],[-78.67338673386733,68.65810884641041],[-78.64818648186481,68.65304311460076],[-78.5869858698587,68.62940303282241],[-78.56538565385654,68.62602587828263],[-78.48978489784898,68.62771445555254],[-78.46458464584646,68.61927156920311],[-78.46458464584646,68.61082868285371],[-78.46458464584646,68.6091401055838],[-78.46458464584646,68.60576295104406],[-78.46458464584646,68.59732006469463],[-78.47178471784717,68.59225433288498],[-78.47538475384754,68.5821228692657],[-78.47538475384754,68.5703028283765],[-78.48258482584825,68.55679421021745],[-78.50418504185042,68.54497416932827],[-78.52938529385294,68.54497416932827],[-78.65538655386554,68.56354851929697],[-78.66978669786697,68.55341705567767],[-78.6769867698677,68.53990843751862],[-78.69138691386914,68.53146555116922],[-78.70938709387093,68.52639981935957],[-78.72378723787237,68.52302266481979],[-78.69858698586985,68.51795693301014],[-78.63018630186302,68.51457977847039],[-78.61578615786158,68.50613689212096]]],[[[-74.84654846548464,68.57874571472593],[-74.85734857348574,68.58887717834523],[-74.89334893348934,68.62602587828263],[-74.82854828548285,68.66148600095016],[-74.79254792547925,68.67499461910924],[-74.68454684546845,68.66317457822007],[-74.64494644946448,68.64797738279111],[-74.64854648546485,68.62264872374288],[-74.64854648546485,68.61082868285371],[-74.62334623346233,68.60407437377415],[-74.57294572945729,68.59732006469463],[-74.56214562145621,68.59394291015488],[-74.51534515345153,68.56354851929697],[-74.53694536945369,68.55510563294757],[-74.78894788947889,68.5618599420271],[-74.81774817748177,68.56692567383675],[-74.84654846548464,68.57874571472593]]],[[[-68.00648006480064,68.76955494622266],[-67.69687696876969,68.7188976281262],[-67.66447664476644,68.707077587237],[-67.66447664476644,68.70201185542737],[-67.91287912879129,68.71045474177677],[-68.18648186481865,68.7661777916829],[-68.44208442084421,68.78475214165161],[-68.460084600846,68.79319502800104],[-68.45288452884529,68.81008080069986],[-68.44208442084421,68.81683510977939],[-68.42768427684277,68.81852368704926],[-68.41688416884169,68.81683510977939],[-68.39528395283952,68.81008080069986],[-68.31968319683196,68.79657218254079],[-68.20448204482044,68.79657218254079],[-68.00648006480064,68.76955494622266]]],[[[-67.44487444874449,69.59189207665554],[-67.39807398073981,69.59189207665554],[-67.37647376473764,69.58682634484589],[-67.34767347673477,69.56825199487719],[-67.32247322473225,69.56318626306754],[-67.30807308073081,69.55812053125788],[-67.35487354873548,69.53110329493975],[-67.49527495274953,69.53448044947953],[-67.55287552875528,69.52266040859035],[-67.53487534875349,69.52266040859035],[-67.50247502475024,69.51252894497105],[-67.4880748807488,69.5091517904313],[-67.48447484474845,69.5074632131614],[-67.49167491674916,69.50239748135175],[-67.5060750607506,69.49564317227222],[-67.5780757807578,69.51084036770118],[-67.62847628476284,69.50239748135175],[-67.67527675276753,69.51252894497105],[-67.72927729277292,69.51590609951083],[-67.75447754477544,69.52266040859035],[-67.74367743677436,69.5277261404],[-67.74367743677436,69.53448044947953],[-67.740077400774,69.53954618128918],[-67.740077400774,69.54461191309883],[-67.72567725677257,69.54967764490848],[-67.71487714877148,69.54967764490848],[-67.7040770407704,69.54630049036871],[-67.68967689676896,69.54461191309883],[-67.66447664476644,69.54798906763858],[-67.6140761407614,69.56149768579766],[-67.56007560075601,69.56656341760731],[-67.54567545675457,69.56994057214706],[-67.53847538475384,69.57500630395671],[-67.53127531275312,69.58176061303624],[-67.52407524075241,69.60033496300497],[-67.52047520475205,69.60540069481459],[-67.50967509675097,69.6070892720845],[-67.49887498874989,69.6070892720845],[-67.49167491674916,69.60371211754472],[-67.48447484474845,69.59526923119532],[-67.48087480874808,69.59189207665554],[-67.43767437674376,69.59189207665554],[-67.44487444874449,69.59189207665554]]],[[[-96.91836918369184,72.737711530447],[-96.95076950769507,72.74108868498678],[-96.97236972369723,72.75122014860608],[-97.01557015570155,72.77823738492418],[-96.9471694716947,72.79005742581339],[-96.92196921969219,72.80356604397244],[-96.939969399694,72.82720612575079],[-96.91476914769147,72.84240332117975],[-96.84996849968499,72.85928909387857],[-96.78876788767887,72.88630633019667],[-96.75996759967599,72.89643779381598],[-96.72756727567275,72.89812637108588],[-96.69156691566916,72.88799490746658],[-96.68796687966879,72.8744862893075],[-96.69876698766987,72.85928909387857],[-96.72756727567275,72.83396043483032],[-96.669966699667,72.81369750759174],[-96.64836648366483,72.80018888943266],[-96.6519665196652,72.77823738492418],[-96.7059670596706,72.75122014860608],[-96.73836738367383,72.72758006682773],[-96.75276752767527,72.72420291228795],[-96.77076770767708,72.72420291228795],[-96.82116821168212,72.737711530447],[-96.84636846368464,72.7394001077169],[-96.91836918369184,72.737711530447]]],[[[-77.57177571775718,77.85747781273136],[-77.58617586175862,77.84565777184218],[-77.59337593375933,77.84228061730241],[-77.59337593375933,77.83552630822288],[-77.58257582575825,77.82539484460358],[-77.5969759697597,77.81695195825418],[-77.67257672576726,77.79668903101557],[-77.76257762577626,77.7950004537457],[-77.85257852578525,77.77980325831675],[-77.88137881378813,77.7848689901264],[-77.9209792097921,77.80850907190475],[-77.95697956979569,77.83552630822288],[-77.88857888578886,77.85241208092171],[-77.65097650976509,77.87098643089041],[-77.5969759697597,77.86423212181089],[-77.57177571775718,77.85747781273136]]],[[[-88.05868058680586,78.45185701173006],[-88.04788047880479,78.42315119814205],[-88.08028080280802,78.3995111163637],[-88.15948159481594,78.36405099369617],[-88.15228152281523,78.34041091191781],[-88.16308163081631,78.31677083013943],[-88.18828188281883,78.29650790290086],[-88.20988209882098,78.2813107074719],[-88.24588245882458,78.26104778023333],[-88.28908289082891,78.24753916207425],[-88.33228332283322,78.24078485299472],[-88.37908379083791,78.24585058480437],[-88.40428404284043,78.25935920296342],[-88.41148411484114,78.27962213020203],[-88.40068400684007,78.30157363471051],[-88.37908379083791,78.31845940740934],[-88.33948339483395,78.33703375737804],[-88.29268292682927,78.34885379826721],[-88.20268202682027,78.35729668461664],[-88.20628206282062,78.36405099369617],[-88.21348213482135,78.36742814823592],[-88.22068220682206,78.36911672550582],[-88.23148231482314,78.36911672550582],[-88.24588245882458,78.37249388004557],[-88.24588245882458,78.3792481891251],[-88.2350823508235,78.3910682300143],[-88.2350823508235,78.40457684817335],[-88.2350823508235,78.41639688906253],[-88.23148231482314,78.42483977541193],[-88.22068220682206,78.43328266176135],[-88.20628206282062,78.438348393571],[-88.19188191881919,78.44003697084088],[-88.15948159481594,78.438348393571],[-88.14868148681487,78.44172554811075],[-88.13068130681306,78.45016843446018],[-88.08748087480875,78.45861132080958],[-88.0730807308073,78.45861132080958],[-88.05868058680586,78.45185701173006]]],[[[50.175501755017564,-46.06551944669001],[50.18990189901899,-46.0570765603406],[50.269102691026916,-46.04356794218154],[50.27990279902801,-46.058765137610486],[50.294302943029436,-46.07565091030931],[50.2979029790298,-46.095913837547904],[50.29070290702907,-46.116176764786495],[50.276302763027644,-46.12630822840579],[50.26190261902619,-46.12630822840579],[50.22230222302224,-46.116176764786495],[50.200702007020084,-46.11279961024673],[50.18630186301863,-46.10266814662743],[50.17910179101793,-46.08578237392861],[50.175501755017564,-46.06551944669001]]],[[[-9.927099270992699,-40.347996810867194],[-9.905499054990543,-40.36488258356602],[-9.898298982989814,-40.371636892645554],[-9.89469894698945,-40.3868340880745],[-9.923499234992335,-40.39865412896368],[-9.966699666996675,-40.38345693353473],[-10.038700387003871,-40.3378653472479],[-10.038700387003871,-40.331111038168366],[-10.031500315003143,-40.314225265469545],[-10.02070020700205,-40.30747095639001],[-10.009900099000987,-40.30409380185024],[-9.963099630996311,-40.30240522458036],[-9.948699486994855,-40.30409380185024],[-9.941499414994155,-40.31253668819966],[-9.930699306993063,-40.33955392451778],[-9.927099270992699,-40.347996810867194]]],[[[-12.306723067230678,-37.07046833002488],[-12.295922959229586,-37.0586482891357],[-12.292322923229221,-37.055271134595934],[-12.245522455224545,-37.0586482891357],[-12.227522275222753,-37.06877975275499],[-12.213122131221297,-37.080599793644176],[-12.191521915219141,-37.09073125726347],[-12.195121951219505,-37.099174143612885],[-12.19872198721987,-37.10423987542253],[-12.205922059220597,-37.1076170299623],[-12.213122131221297,-37.11099418450206],[-12.245522455224545,-37.138011420820185],[-12.263522635226337,-37.14983146170937],[-12.277922779227794,-37.14983146170937],[-12.303123031230314,-37.12619137993101],[-12.335523355233533,-37.10423987542253],[-12.32472324723247,-37.094108411803234],[-12.306723067230678,-37.07046833002488]]],[[[-47.518675186751864,-24.701639828134113],[-47.50787507875077,-24.69995125086423],[-47.48267482674825,-24.701639828134113],[-47.47187471874719,-24.698262673594343],[-47.45747457474573,-24.68981978724493],[-47.44667446674467,-24.686442632705166],[-47.44667446674467,-24.6931969417847],[-47.493474934749344,-24.723591332642584],[-47.529475294752956,-24.732034218992],[-47.55107551075511,-24.742165682611294],[-47.78507785077849,-24.92453202775863],[-47.821078210782105,-24.94141780045745],[-47.8390783907839,-24.95830357315628],[-47.86067860678605,-24.98869796401417],[-47.87867878678787,-25.02753524122147],[-47.88947889478894,-25.041043859380537],[-47.90027900279003,-25.035978127570885],[-47.90027900279003,-25.015715200332295],[-47.88227882278824,-24.98194365493464],[-47.87867878678787,-24.96505788223581],[-47.871478714787145,-24.95830357315628],[-47.8318783187832,-24.912711986869446],[-47.71667716677166,-24.829971700645196],[-47.67347673476735,-24.811397350676486],[-47.612276122761216,-24.753985723500477],[-47.561875618756176,-24.735411373531768],[-47.536675366753656,-24.710082714483526],[-47.518675186751864,-24.701639828134113]]],[[[-46.32706327063269,-23.926582861257955],[-46.31986319863199,-23.928271438527837],[-46.31986319863199,-23.9316485930676],[-46.31986319863199,-23.93502574760737],[-46.31626316263163,-23.940091479417013],[-46.30186301863017,-23.958665829385723],[-46.29106291062911,-23.978928756624313],[-46.29106291062911,-23.990748797513497],[-46.34146341463415,-23.9704858702749],[-46.355863558635576,-23.9704858702749],[-46.36666366663667,-23.982305911164083],[-46.37386373863737,-23.977240179354432],[-46.39186391863919,-23.977240179354432],[-46.39906399063989,-23.97555160208455],[-46.406264062640616,-23.9704858702749],[-46.42066420664207,-23.946845788496546],[-46.406264062640616,-23.941780056686895],[-46.40266402664025,-23.943468633956776],[-46.39546395463955,-23.946845788496546],[-46.388263882638824,-23.940091479417013],[-46.388263882638824,-23.93502574760737],[-46.388263882638824,-23.929960015797718],[-46.39546395463955,-23.919828552178423],[-46.381063810638096,-23.919828552178423],[-46.34866348663485,-23.926582861257955],[-46.32706327063269,-23.926582861257955]]],[[[35.46935469354693,-21.549066065263112],[35.480154801548025,-21.52880313802452],[35.49095490954912,-21.530491715294403],[35.49455494554945,-21.54568891072335],[35.49815498154982,-21.569328992501703],[35.49095490954912,-21.641937815106658],[35.454954549545505,-21.782089728506925],[35.43335433354335,-21.782089728506925],[35.42615426154262,-21.768581110347867],[35.42615426154262,-21.74831818310927],[35.43695436954371,-21.67233220596455],[35.46935469354693,-21.549066065263112]]],[[[11.727117271172716,-16.61842043720563],[11.727117271172716,-16.657257714412935],[11.737917379173808,-16.692717837080465],[11.737917379173808,-16.70622645523953],[11.716317163171652,-16.68427495073105],[11.701917019170196,-16.655569137143047],[11.669516695166948,-16.557631655489857],[11.673116731167312,-16.528925841901852],[11.68031680316804,-16.517105801012676],[11.701917019170196,-16.500220028313848],[11.719917199171988,-16.5052857601235],[11.719917199171988,-16.55594307821997],[11.727117271172716,-16.577894582728447],[11.727117271172716,-16.61842043720563]]],[[[46.49626496264963,-9.357538176710023],[46.514265142651425,-9.371046794869088],[46.52506525065252,-9.38117825848839],[46.52146521465215,-9.386243990298041],[46.507065070650725,-9.391309722107678],[46.47466474664748,-9.41663838115592],[46.45306453064532,-9.426769844775222],[46.381063810638125,-9.425081267505334],[46.298262982629836,-9.448721349283701],[46.23346233462337,-9.452098503823464],[46.20826208262085,-9.386243990298041],[46.229862298623004,-9.413261226616157],[46.273062730627316,-9.426769844775222],[46.31986319863199,-9.42339269023546],[46.35226352263524,-9.406506917536632],[46.37026370263703,-9.406506917536632],[46.39546395463955,-9.398064031187218],[46.42066420664207,-9.386243990298041],[46.4350643506435,-9.377801103948627],[46.44226442264423,-9.386243990298041],[46.44946449464496,-9.377801103948627],[46.456664566645685,-9.382866835758264],[46.46746467464675,-9.386243990298041],[46.46746467464675,-9.377801103948627],[46.46026460264602,-9.371046794869088],[46.45306453064532,-9.362603908519674],[46.44946449464496,-9.350783867630497],[46.44946449464496,-9.337275249471432],[46.49626496264963,-9.357538176710023]]],[[[7.540275402754048,4.483729704518453],[7.572675726757268,4.4871068590582155],[7.58347583475836,4.485418281788327],[7.579875798757996,4.471909663629276],[7.569075690756904,4.4600896227400995],[7.551075510755112,4.455023890930448],[7.515075150751528,4.4567124682003225],[7.500675006750072,4.455023890930448],[7.450274502745032,4.436449540961732],[7.43227432274324,4.434760963691858],[7.3566735667356795,4.439826695501495],[7.342273422734223,4.446581004581034],[7.338673386733888,4.4600896227400995],[7.345873458734587,4.478663972708802],[7.3566735667356795,4.483729704518453],[7.403474034740356,4.497238322677518],[7.4178741787417835,4.493861168137741],[7.450274502745032,4.475286818169039],[7.468274682746824,4.471909663629276],[7.486274862748644,4.47359824089915],[7.522275222752228,4.482041127248564],[7.540275402754048,4.483729704518453]]],[[[-15.975159751597516,11.158675652364764],[-15.971559715597152,11.12996983877676],[-15.975159751597516,11.116461220617694],[-15.98595985959858,11.10126402518874],[-16.0039600396004,11.075935366140513],[-16.01836018360183,11.069181057060973],[-16.021960219602192,11.08100109795015],[-16.025560255602556,11.096198293379103],[-16.032760327603256,11.10801833426828],[-16.032760327603256,11.121526952427345],[-16.021960219602192,11.138412725126173],[-16.04356043560435,11.138412725126173],[-16.05436054360544,11.148544188745461],[-16.057960579605776,11.1637413841744],[-16.047160471604712,11.178938579603354],[-16.032760327603256,11.190758620492531],[-15.982359823598216,11.207644393191359],[-15.97875978759788,11.199201506841945],[-15.975159751597516,11.18569288868288],[-15.975159751597516,11.158675652364764]]],[[[-15.856358563585644,11.302204720304786],[-15.831158311583124,11.302204720304786],[-15.82755827558276,11.292073256685498],[-15.83475834758346,11.254924556748065],[-15.838358383583824,11.214398702270884],[-15.845558455584552,11.200890084111819],[-15.870758707587072,11.200890084111819],[-15.895958959589592,11.217775856810647],[-15.895958959589592,11.24817024766854],[-15.881558815588164,11.280253215796307],[-15.856358563585644,11.302204720304786]]],[[[-16.173161731617313,11.221153011350424],[-16.23796237962378,11.216087279540773],[-16.252362523625237,11.217775856810647],[-16.277562775627757,11.229595897699838],[-16.28116281162812,11.231284474969712],[-16.28116281162812,11.243104515858889],[-16.277562775627757,11.253235979478191],[-16.27036270362703,11.259990288557717],[-16.259562595625937,11.261678865827605],[-16.2631626316263,11.278564638526433],[-16.248762487624873,11.293761833955372],[-16.23076230762308,11.303893297574675],[-16.21276212762126,11.302204720304786],[-16.20556205562056,11.3106476066542],[-16.198361983619833,11.298827565765023],[-16.18756187561874,11.297138988495135],[-16.173161731617313,11.298827565765023],[-16.158761587615857,11.297138988495135],[-16.15516155161552,11.288696102145721],[-16.151561515615157,11.276876061256544],[-16.151561515615157,11.26336744309748],[-16.151561515615157,11.254924556748065],[-16.16236162361622,11.249858824938428],[-16.173161731617313,11.244793093128777],[-16.176761767617677,11.234661629509475],[-16.173161731617313,11.221153011350424]]],[[[-16.2559625596256,11.447422365514697],[-16.277562775627757,11.447422365514697],[-16.28836288362882,11.449110942784586],[-16.302763027630277,11.454176674594237],[-16.28836288362882,11.460930983673762],[-16.27036270362703,11.471062447293065],[-16.2559625596256,11.482882488182241],[-16.248762487624873,11.49807968361118],[-16.23796237962378,11.508211147230483],[-16.21276212762126,11.514965456310009],[-16.183961839618377,11.518342610849771],[-16.165961659616585,11.514965456310009],[-16.16236162361622,11.504833992690706],[-16.165961659616585,11.496391106341292],[-16.19476194761947,11.464308138213525],[-16.198361983619833,11.460930983673762],[-16.201962019620197,11.455865251864111],[-16.20556205562056,11.45079952005446],[-16.209162091620897,11.444045210974934],[-16.21276212762126,11.440668056435172],[-16.223562235622353,11.440668056435172],[-16.2559625596256,11.447422365514697]]],[[[-16.273962739627393,11.494702529071418],[-16.28116281162812,11.49301395180153],[-16.291962919629185,11.49301395180153],[-16.302763027630277,11.487948219991878],[-16.30636306363064,11.486259642722004],[-16.309963099630977,11.482882488182241],[-16.31356313563134,11.481193910912353],[-16.32076320763207,11.484571065452116],[-16.33156331563316,11.49976826088107],[-16.335163351633497,11.501456838150943],[-16.33876338763386,11.501456838150943],[-16.392763927639265,11.501456838150943],[-16.399963999639994,11.494702529071418],[-16.40716407164072,11.489636797261767],[-16.417964179641785,11.487948219991878],[-16.417964179641785,11.494702529071418],[-16.410764107641057,11.501456838150943],[-16.417964179641785,11.514965456310009],[-16.417964179641785,11.516654033579897],[-16.410764107641057,11.521719765389534],[-16.42156421564215,11.528474074469074],[-16.425164251642514,11.528474074469074],[-16.3891638916389,11.547048424437776],[-16.349563495634953,11.548737001707664],[-16.309963099630977,11.553802733517315],[-16.28116281162812,11.584197124375194],[-16.277562775627757,11.58250854710532],[-16.277562775627757,11.580819969835431],[-16.273962739627393,11.577442815295669],[-16.266762667626665,11.577442815295669],[-16.259562595625937,11.577442815295669],[-16.252362523625237,11.580819969835431],[-16.248762487624873,11.584197124375194],[-16.24516245162451,11.580819969835431],[-16.241562415624145,11.577442815295669],[-16.241562415624145,11.570688506216143],[-16.24516245162451,11.552114156247427],[-16.252362523625237,11.536916960818488],[-16.27036270362703,11.514965456310009],[-16.273962739627393,11.506522569960595],[-16.273962739627393,11.501456838150943],[-16.273962739627393,11.494702529071418]]],[[[-24.705247052470526,14.900562882424822],[-24.694446944469433,14.89043141880552],[-24.687246872468705,14.876922800646454],[-24.68364683646837,14.86003702794764],[-24.68364683646837,14.843151255248813],[-24.687246872468705,14.826265482549985],[-24.694446944469433,14.819511173470445],[-24.705247052470526,14.814445441660794],[-24.70884708847089,14.804313978041506],[-24.719647196471954,14.804313978041506],[-24.72684726847268,14.814445441660794],[-24.744847448474474,14.826265482549985],[-24.7520475204752,14.838085523439162],[-24.75924759247593,14.831331214359622],[-24.755647556475566,14.841462677978924],[-24.7520475204752,14.849905564328338],[-24.755647556475566,14.858348450677752],[-24.75924759247593,14.866791337027166],[-24.744847448474474,14.866791337027166],[-24.748447484474838,14.885365686995868],[-24.737647376473745,14.892119996075408],[-24.719647196471954,14.893808573345282],[-24.705247052470526,14.900562882424822]]],[[[26.976869768697696,35.43197390692855],[27.002070020700216,35.4370396387382],[27.01287012870128,35.4370396387382],[27.01287012870128,35.43197390692855],[27.00567005670058,35.426908175118896],[26.998469984699852,35.42521959784902],[27.00567005670058,35.40326809334054],[27.00567005670058,35.39820236153089],[26.991269912699124,35.39651378426102],[26.96966969669697,35.393136629721255],[26.958869588695904,35.38975947518148],[26.944469444694448,35.38300516610195],[26.93726937269375,35.37625085702243],[26.926469264692656,35.371185125212776],[26.915669156691564,35.36949654794289],[26.9048690486905,35.366119393403125],[26.88686886868871,35.35261077524406],[26.876068760687616,35.3492336207043],[26.865268652686524,35.35429935251395],[26.85446854468546,35.36274223886336],[26.847268472684732,35.37287370248265],[26.850868508685096,35.37625085702243],[26.861668616686188,35.381316588832064],[26.87966879668798,35.39989093880078],[26.88686886868871,35.40326809334054],[26.890468904689044,35.406645247880306],[26.897668976689772,35.42184244330926],[26.901269012690136,35.42521959784902],[26.908469084690864,35.423531020579134],[26.919269192691928,35.41846528876948],[26.922869228692292,35.41846528876948],[26.96246962469627,35.43028532965867],[26.976869768697696,35.43197390692855]]],[[[27.39807398073981,36.438365959778636],[27.387273872738746,36.42148018707981],[27.39807398073981,36.40966014619063],[27.419674196741965,36.40797156892074],[27.437674376743786,36.418103032540046],[27.44127441274412,36.41472587800028],[27.444874448744486,36.41134872346052],[27.444874448744486,36.40459441438098],[27.437674376743786,36.39446295076169],[27.426874268742694,36.38602006441228],[27.4160741607416,36.38095433260263],[27.405274052740538,36.382642909872516],[27.39807398073981,36.37926575533274],[27.39087390873908,36.382642909872516],[27.376473764737653,36.382642909872516],[27.36567365673656,36.392774373491804],[27.35847358473586,36.40966014619063],[27.362073620736226,36.42485734161957],[27.351273512735133,36.43161165069911],[27.336873368733706,36.42823449615935],[27.329673296732977,36.419791609809934],[27.32247322473225,36.41134872346052],[27.31527315273152,36.41134872346052],[27.30807308073082,36.419791609809934],[27.29727297272973,36.42823449615935],[27.293672936729365,36.43498880523887],[27.293672936729365,36.455251732477464],[27.29727297272973,36.46538319609677],[27.300873008730093,36.47382608244618],[27.311673116731185,36.45694030974735],[27.326073260732613,36.462006041557004],[27.34047340473404,36.47382608244618],[27.354873548735497,36.47889181425582],[27.369273692736925,36.47213750517629],[27.380073800738018,36.44343169158829],[27.39807398073981,36.438365959778636]]],[[[23.58563585635858,37.37046061275389],[23.571235712357122,37.35864057186471],[23.546035460354602,37.3501976855153],[23.524435244352446,37.346820530975535],[23.506435064350654,37.3501976855153],[23.51003510035102,37.32993475827671],[23.495634956349562,37.319803294657405],[23.47763477634777,37.31642614011764],[23.45243452434525,37.31642614011764],[23.394833948339482,37.30291752195858],[23.373233732337326,37.30291752195858],[23.373233732337326,37.309671831038116],[23.463234632346342,37.35695199459482],[23.488434884348862,37.36370630367436],[23.531635316353174,37.36370630367436],[23.55323553235533,37.37046061275389],[23.58563585635858,37.37046061275389]]],[[[23.546035460354602,37.774030580255854],[23.564035640356423,37.7689648484462],[23.556835568355694,37.757144807557026],[23.546035460354602,37.74532476666785],[23.546035460354602,37.73350472577867],[23.531635316353174,37.72506183942926],[23.52803528035281,37.714930375809956],[23.531635316353174,37.70311033492078],[23.524435244352446,37.69297887130148],[23.517235172351718,37.68791313949184],[23.495634956349562,37.68284740768219],[23.4848348483485,37.679470253142426],[23.47763477634777,37.68453598495206],[23.470434704347042,37.68791313949184],[23.456034560345614,37.69297887130148],[23.456034560345614,37.69973318038102],[23.470434704347042,37.70479891219067],[23.466834668346678,37.714930375809956],[23.45963459634598,37.72337326215937],[23.445234452344522,37.72675041669913],[23.434434344343458,37.73350472577867],[23.42723427234273,37.747013343937724],[23.423634236342366,37.76221053936668],[23.42723427234273,37.7689648484462],[23.546035460354602,37.774030580255854]]],[[[-27.98487984879847,39.015134873619644],[-28.00288002880029,39.015134873619644],[-28.024480244802447,39.01851202815941],[-28.046080460804603,39.02526633723893],[-28.06048060480603,39.03708637812811],[-28.071280712807123,39.05228357355706],[-28.071280712807123,39.067480768986],[-28.05328053280533,39.097875159843895],[-28.046080460804603,39.10294089165353],[-28.03528035280351,39.10462946892342],[-28.024480244802447,39.10294089165353],[-28.013680136801355,39.097875159843895],[-28.006480064800655,39.10462946892342],[-27.9920799207992,39.08774369622459],[-27.95967959679595,39.06579219171611],[-27.94167941679416,39.05228357355706],[-27.93447934479343,39.035397800858235],[-27.948879488794887,39.023577759969044],[-27.96687966879668,39.01682345088952],[-27.98487984879847,39.015134873619644]]],[[[8.307083070830714,39.194124064227196],[8.307083070830714,39.160352518829555],[8.310683106831078,39.11982666435236],[8.307083070830714,39.10462946892342],[8.289082890828922,39.09956373711377],[8.271082710827102,39.09956373711377],[8.25308253082531,39.10631804619331],[8.256682566825674,39.118138087082485],[8.256682566825674,39.12489239616201],[8.231482314823154,39.14346674613073],[8.224282242822426,39.15697536428978],[8.231482314823154,39.17217255971873],[8.245882458824582,39.180615446068146],[8.289082890828922,39.18905833241756],[8.307083070830714,39.194124064227196]]],[[[27.65727657276574,40.65305482540586],[27.671676716767166,40.65643197994562],[27.704077040770414,40.65305482540586],[27.729277292772935,40.64292336178656],[27.7328773287733,40.624349011817856],[27.714877148771507,40.61421754819855],[27.67527675276753,40.61084039365879],[27.65727657276574,40.60577466184914],[27.62487624876249,40.58382315734066],[27.603276032760334,40.577068848261135],[27.581675816758178,40.58382315734066],[27.570875708757086,40.58382315734066],[27.552875528755294,40.5905774664202],[27.534875348753502,40.60239750730938],[27.538475384753866,40.62266043454797],[27.531275312753138,40.63110332089738],[27.527675276752774,40.639546207246795],[27.531275312753138,40.64967767086608],[27.538475384753866,40.65643197994562],[27.545675456754566,40.659809134485386],[27.552875528755294,40.6581205572155],[27.552875528755294,40.64630051632632],[27.578075780757814,40.65643197994562],[27.606876068760698,40.66318628902515],[27.63207632076322,40.66318628902515],[27.65727657276574,40.65305482540586]]],[[[16.241562415624173,43.07278605314775],[16.245162451624537,43.07616320768753],[16.248762487624873,43.079540362227306],[16.252362523625237,43.0778517849574],[16.2559625596256,43.0677203213381],[16.252362523625237,43.06265458952848],[16.245162451624537,43.05758885771883],[16.234362343623445,43.05083454863927],[16.223562235622353,43.04070308502],[16.209162091620925,43.03394877594047],[16.122761227612273,43.01368584870187],[16.08676086760869,43.011997271431994],[16.06156061560617,43.017063003241645],[16.083160831608325,43.025505889591045],[16.08676086760869,43.04070308502],[16.07956079560796,43.052523125909175],[16.068760687606897,43.05083454863927],[16.06156061560617,43.05083454863927],[16.047160471604712,43.06434316679835],[16.05436054360544,43.0677203213381],[16.057960579605805,43.069408898608],[16.06156061560617,43.07109747587788],[16.068760687606897,43.07278605314775],[16.093960939609417,43.082917516767054],[16.129961299613,43.087983248576705],[16.169561695616977,43.087983248576705],[16.198361983619833,43.079540362227306],[16.194761947619497,43.074474630417654],[16.191161911619133,43.07278605314775],[16.216362163621653,43.079540362227306],[16.227162271622717,43.0778517849574],[16.241562415624173,43.07278605314775]]],[[[16.392763927639294,43.346335570868746],[16.374763747637473,43.332826952709695],[16.349563495634953,43.337892684519346],[16.28116281162812,43.36997565264713],[16.23076230762308,43.38517284807605],[16.20556205562056,43.386861425345955],[16.20556205562056,43.39192715715558],[16.209162091620925,43.39361573442548],[16.21276212762129,43.39361573442548],[16.201962019620197,43.400370043505006],[16.201962019620197,43.40712435258453],[16.20556205562056,43.41219008439418],[16.219962199622017,43.41556723893396],[16.277562775627757,43.41219008439418],[16.299162991629913,43.40374719804478],[16.302763027630277,43.386861425345955],[16.33156331563316,43.390238579885704],[16.349563495634953,43.37841853899653],[16.367563675636774,43.3615327662977],[16.392763927639294,43.346335570868746]]],[[[14.44514445144452,44.56548835972407],[14.527945279452808,44.50301100073841],[14.535145351453508,44.48443665076971],[14.513545135451352,44.482748073499806],[14.484744847448468,44.50132242346854],[14.452344523445248,44.531716814326415],[14.437944379443792,44.53847112340594],[14.437944379443792,44.545225432485466],[14.459544595445948,44.54184827794572],[14.466744667446676,44.53847112340594],[14.437944379443792,44.5637997824542],[14.423544235442364,44.57393124607347],[14.405544055440572,44.57899697788312],[14.398343983439844,44.56886551426382],[14.387543875438752,44.56548835972407],[14.373143731437324,44.567176936993945],[14.362343623436232,44.57393124607347],[14.362343623436232,44.57899697788312],[14.36954369543696,44.57899697788312],[14.36954369543696,44.5823741324229],[14.365943659436596,44.58743986423255],[14.383943839438388,44.602637059661475],[14.376743767437688,44.62289998690008],[14.347943479434804,44.65498295502786],[14.34434344343444,44.66849157318691],[14.337143371433712,44.69888596404479],[14.337143371433712,44.71746031401352],[14.355143551435532,44.70732885039422],[14.380343803438052,44.69888596404479],[14.398343983439844,44.68537734588574],[14.391143911439116,44.66173726410739],[14.39474394743948,44.65329437775796],[14.398343983439844,44.638097182329034],[14.405544055440572,44.6110799460109],[14.409144091440908,44.6009484823916],[14.44514445144452,44.56548835972407]]],[[[-1.2798127981279777,46.15612814795358],[-1.2870128701287058,46.15950530249333],[-1.2906129061290414,46.1611938797632],[-1.337413374133746,46.16794818884276],[-1.4346143461434622,46.21016262058981],[-1.4886148861488664,46.20340831151029],[-1.5030150301502943,46.20847404331994],[-1.5462154621546063,46.24055701144769],[-1.5570155701556985,46.24562274325734],[-1.5570155701556985,46.2523770523369],[-1.4994149941499302,46.26250851595617],[-1.4814148141481382,46.25913136141642],[-1.47421474214741,46.255754206876645],[-1.467014670146682,46.250688475066994],[-1.467014670146682,46.24393416598747],[-1.47421474214741,46.23886843417782],[-1.4994149941499302,46.24562274325734],[-1.5066150661506583,46.24562274325734],[-1.492214922149202,46.223671238748864],[-1.4634146341463463,46.225359816018766],[-1.4346143461434622,46.233802702368166],[-1.409414094140942,46.23886843417782],[-1.409414094140942,46.23042554782842],[-1.42381423814237,46.23042554782842],[-1.42381423814237,46.223671238748864],[-1.409414094140942,46.21860550693924],[-1.3086130861308618,46.206785466050064],[-1.2834128341283417,46.19665400243076],[-1.2654126541265214,46.18145680700181],[-1.2546125461254576,46.162882457033106],[-1.2618126181261857,46.1611938797632],[-1.2726127261272495,46.15950530249333],[-1.2798127981279777,46.15612814795358]]],[[[-2.201422014220128,46.98521958746596],[-2.1906219062190644,46.97677670111656],[-2.154621546215452,46.96495666022739],[-2.1438214382143883,46.95820235114786],[-2.1402214022140242,46.94300515571891],[-2.13662136621366,46.9227422284803],[-2.1438214382143883,46.90923361032125],[-2.158221582215816,46.91598791940078],[-2.172621726217244,46.93962800117913],[-2.1942219422194285,46.96157950568761],[-2.2194221942219485,46.973399546576786],[-2.2482224822248043,46.96495666022739],[-2.2626226262262605,46.98015385565634],[-2.2770227702276884,47.017302555593744],[-2.2950229502295088,47.0324997510227],[-2.2374223742237405,47.035876905562446],[-2.2194221942219485,47.0324997510227],[-2.201422014220128,47.02405686467327],[-2.197821978219764,47.01223682378409],[-2.201422014220128,47.000416782894916],[-2.201422014220128,46.98521958746596]]],[[[-3.115831158311579,47.33137792779192],[-3.1014310143101227,47.32800077325217],[-3.072630726307267,47.32800077325217],[-3.0618306183061748,47.32124646417262],[-3.065430654306539,47.302672114203915],[-3.094230942309423,47.29591780512439],[-3.1734317343173473,47.30098353693404],[-3.2238322383223874,47.31280357782322],[-3.2418324183241793,47.32124646417262],[-3.2382323823238153,47.33644365960157],[-3.2454324543245434,47.3533294323004],[-3.256232562325607,47.36852662772935],[-3.2634326343263353,47.38372382315828],[-3.252632526325243,47.38878955496793],[-3.2490324903249075,47.39554386404748],[-3.2418324183241793,47.39554386404748],[-3.234632346323451,47.38878955496793],[-3.2202322023220233,47.387100977698054],[-3.177031770317683,47.3719037822691],[-3.151831518315163,47.35839516411005],[-3.148231482314827,47.35501800957027],[-3.115831158311579,47.33137792779192]]],[[[0.9126091260912688,51.41266918909841],[0.9342093420934248,51.397471993669456],[0.9414094140941529,51.38227479824053],[0.9378093780937888,51.370454757351354],[0.9126091260912688,51.3637004482718],[0.7938079380793965,51.370454757351354],[0.7758077580775762,51.37552048916098],[0.7578075780757842,51.38565195278028],[0.7434074340743564,51.40084914820923],[0.7326073260732642,51.41266918909841],[0.7470074700747205,51.43968642541654],[0.7542075420754202,51.446440734496065],[0.7686076860768765,51.44812931176594],[0.8910089100891128,51.42111207544784],[0.9018090180901766,51.41773492090806],[0.9126091260912688,51.41266918909841]]],[[[-178.78678786787867,51.829747774759426],[-178.74718747187472,51.81792773387025],[-178.739987399874,51.78415618847259],[-178.76158761587615,51.75207322034484],[-178.80838808388083,51.74700748853519],[-178.82278822788228,51.75545037488459],[-178.84438844388444,51.77233614758342],[-178.85878858788587,51.789221920282245],[-178.85878858788587,51.79597622936177],[-178.84438844388444,51.80610769298107],[-178.83358833588335,51.82637062021968],[-178.8119881198812,51.83987923837873],[-178.78678786787867,51.829747774759426]]],[[[-170.10350103501034,52.78210535497328],[-170.08550085500855,52.778728200433505],[-170.06750067500676,52.770285314084106],[-170.05670056700566,52.7601538504648],[-170.07110071100712,52.74833380957563],[-170.06750067500676,52.74495665503585],[-170.06750067500676,52.7415795004961],[-170.0639006390064,52.734825191416576],[-170.12870128701286,52.72807088233702],[-170.19350193501936,52.72807088233702],[-170.1791017910179,52.76690815954433],[-170.1719017190172,52.77535104589376],[-170.1791017910179,52.78041677770341],[-170.18270182701826,52.78210535497328],[-170.18630186301863,52.78210535497328],[-170.16830168301684,52.79054824132268],[-170.14670146701468,52.79054824132268],[-170.1251012510125,52.78885966405281],[-170.10350103501034,52.78210535497328]]],[[[-5.031050310503105,55.74893561815719],[-5.020250202502012,55.745558463617414],[-5.013050130501313,55.737115577268014],[-5.009450094500949,55.728672690918586],[-5.016650166501648,55.723606959108935],[-5.0274502745027405,55.723606959108935],[-5.038250382503833,55.73204984545836],[-5.0490504905048965,55.74893561815719],[-5.113851138511393,55.78439574082472],[-5.124651246512457,55.80128151352355],[-5.139051390513913,55.82829874984168],[-5.139051390513913,55.84180736800073],[-5.175051750517497,55.85531598615978],[-5.182251822518225,55.862070295239334],[-5.189451894518953,55.878956067938134],[-5.200252002520017,55.89584184063696],[-5.200252002520017,55.911039036065915],[-5.167851678516769,55.92117049968522],[-5.135451354513549,55.905973304256264],[-5.106651066510665,55.88739895428756],[-5.095850958509573,55.884021799747785],[-5.088650886508873,55.88233322247791],[-5.081450814508145,55.878956067938134],[-5.074250742507417,55.85700456342968],[-5.0670506705066884,55.85193883162003],[-5.059850598505989,55.85025025435013],[-5.0490504905048965,55.84518452254051],[-5.038250382503833,55.83167590438143],[-5.0274502745027405,55.81985586349225],[-5.020250202502012,55.8063472453332],[-5.013050130501313,55.77426427720542],[-5.013050130501313,55.76919854539577],[-5.020250202502012,55.76244423631624],[-5.031050310503105,55.74893561815719]]],[[[-7.263072630726299,57.48310447432672],[-7.266672666726663,57.47803874251707],[-7.270272702727027,57.47635016524717],[-7.263072630726299,57.471284433437546],[-7.255872558725571,57.47297301070742],[-7.245072450724507,57.474661587977295],[-7.237872378723779,57.47635016524717],[-7.230672306723051,57.474661587977295],[-7.201872018720195,57.46284154708812],[-7.209072090720895,57.45608723800859],[-7.223472234722351,57.461152969818244],[-7.245072450724507,57.44933292892907],[-7.263072630726299,57.44933292892907],[-7.259472594725935,57.439201465309765],[-7.248672486724871,57.43582431076999],[-7.227072270722715,57.43582431076999],[-7.212672126721259,57.43244715623024],[-7.205472054720531,57.425692847150685],[-7.205472054720531,57.41893853807116],[-7.291872918729183,57.40542991991211],[-7.317073170731703,57.408807074451886],[-7.3962739627396274,57.43413573350011],[-7.407074070740691,57.44595577438929],[-7.403474034740327,57.46453012435799],[-7.389073890738899,57.479727319786946],[-7.371073710737107,57.48985878340625],[-7.345873458734587,57.48985878340625],[-7.335073350733495,57.4847930515966],[-7.320673206732067,57.48310447432672],[-7.309873098730975,57.4847930515966],[-7.299072990729911,57.48985878340625],[-7.291872918729183,57.4847930515966],[-7.284672846728455,57.48310447432672],[-7.273872738727391,57.48141589705682],[-7.263072630726299,57.48310447432672]]],[[[-6.064260642606428,57.346329715466226],[-6.075060750607491,57.354772601815625],[-6.0786607866078555,57.37165837451445],[-6.067860678606792,57.43582431076999],[-6.0606606066060635,57.452710083468816],[-6.046260462604607,57.461152969818244],[-6.0174601746017515,57.46284154708812],[-6.0174601746017515,57.46959585616764],[-6.024660246602451,57.474661587977295],[-6.028260282602815,57.479727319786946],[-6.0354603546035435,57.48985878340625],[-6.024660246602451,57.496613092485774],[-6.0174601746017515,57.496613092485774],[-5.995859958599567,57.48985878340625],[-5.995859958599567,57.49830166975565],[-6.010260102601023,57.51181028791473],[-5.999459994599931,57.510121710644825],[-5.9922599225992315,57.506744556105076],[-5.988659886598867,57.5033674015653],[-5.981459814598139,57.49830166975565],[-5.985059850598503,57.48141589705682],[-6.003060030600295,57.452710083468816],[-6.0174601746017515,57.41893853807116],[-6.0174601746017515,57.38685556994341],[-6.010260102601023,57.38010126086385],[-5.995859958599567,57.363215488165054],[-5.988659886598867,57.3480182927361],[-6.006660066600659,57.33957540638667],[-6.021060210602087,57.33619825184692],[-6.0390603906039075,57.3294439427674],[-6.053460534605335,57.32606678822762],[-6.071460714607127,57.332821097307146],[-6.067860678606792,57.33957540638667],[-6.067860678606792,57.34295256092645],[-6.064260642606428,57.346329715466226]]],[[[-3.0042300423004065,59.127778735192464],[-3.0366303663036547,59.12946731246234],[-3.065430654306539,59.132844467002116],[-3.090630906309059,59.14297593062142],[-3.115831158311579,59.15817312605034],[-3.119431194311943,59.176747476019045],[-3.1014310143101227,59.190256094178125],[-3.072630726307267,59.19701040325765],[-3.047430474304747,59.19701040325765],[-3.047430474304747,59.195321825987776],[-3.047430474304747,59.190256094178125],[-3.043830438304383,59.18687893963835],[-3.0366303663036547,59.1835017850986],[-3.0294302943029265,59.1818132078287],[-3.022230222302227,59.1818132078287],[-2.9790297902978864,59.18687893963835],[-2.9682296822968226,59.18687893963835],[-2.9538295382953663,59.1835017850986],[-2.9538295382953663,59.17843605328895],[-2.9538295382953663,59.176747476019045],[-2.9574295742957304,59.176747476019045],[-2.9610296102960945,59.17505889874917],[-2.9754297542975507,59.163238857859994],[-2.9754297542975507,59.14804166243104],[-2.9754297542975507,59.13453304427199],[-3.0042300423004065,59.127778735192464]]],[[[-43.37863378633787,59.99064172010253],[-43.36063360633605,59.98051025648323],[-43.371433714337144,59.95855875197475],[-43.3930339303393,59.938295824736144],[-43.414634146341456,59.929852938386745],[-43.43263432634325,59.93323009292649],[-43.43623436234361,59.943361556545796],[-43.439834398343976,59.951804442895224],[-43.447034470344704,59.956870174704875],[-43.46143461434613,59.951804442895224],[-43.472234722347224,59.94167297927592],[-43.47583475834759,59.92816436111687],[-43.472234722347224,59.916344320227694],[-43.49383493834938,59.91127858841804],[-43.515435154351536,59.90959001114814],[-43.50823508235081,59.916344320227694],[-43.50463504635047,59.929852938386745],[-43.48663486634865,59.9636244837844],[-43.49383493834938,59.970378792863926],[-43.48303483034829,59.98388741102298],[-43.47943479434795,60.005838915531456],[-43.46863468634686,60.02610184277006],[-43.447034470344704,60.03961046092911],[-43.414634146341456,60.03623330638936],[-43.371433714337144,60.024413265500186],[-43.34983349833499,60.00752749280136],[-43.37863378633787,59.99064172010253]]],[[[18.549185491854928,60.326668596809185],[18.556385563855656,60.32498001953928],[18.55998559985599,60.32329144226941],[18.56718567185672,60.321602864999534],[18.570785707857084,60.31653713318988],[18.56718567185672,60.308094246840454],[18.556385563855656,60.30640566957058],[18.513185131851316,60.321602864999534],[18.45918459184591,60.35368583312729],[18.40158401584017,60.370571605826115],[18.39078390783908,60.39083453306472],[18.38358383583838,60.41785176938285],[18.387183871838715,60.46682051020943],[18.387183871838715,60.47864055109861],[18.37638376383765,60.500592055607086],[18.379983799838016,60.50734636468661],[18.39078390783908,60.51072351922639],[18.405184051840536,60.50565778741674],[18.412384123841235,60.500592055607086],[18.423184231842328,60.490460591987784],[18.42678426784269,60.48539486017816],[18.42678426784269,60.482017705638384],[18.423184231842328,60.47695197382873],[18.423184231842328,60.47188624201908],[18.42678426784269,60.465131932939556],[18.437584375843755,60.455000469320254],[18.46638466384664,60.44318042843108],[18.473584735847368,60.4313603875419],[18.45918459184591,60.4313603875419],[18.43398433984339,60.4414918511612],[18.419584195841963,60.44318042843108],[18.430384303843056,60.429671810272026],[18.473584735847368,60.38239164671529],[18.48438484384843,60.367194451286366],[18.495184951849524,60.357062987667064],[18.50958509585095,60.35537441039719],[18.531185311853136,60.36888302855624],[18.531185311853136,60.35368583312729],[18.538385383853836,60.34524294677789],[18.549185491854928,60.326668596809185]]],[[[4.9770497704977,60.52423213738544],[4.959049590495908,60.559692260053],[4.969849698497001,60.55462652824335],[4.9770497704977,60.55462652824335],[4.980649806498064,60.552937950973444],[5.0274502745027405,60.522543560115565],[5.149851498515005,60.500592055607086],[5.193051930519317,60.47188624201908],[5.203852038520381,60.4499347375106],[5.203852038520381,60.4313603875419],[5.193051930519317,60.419540346652724],[5.139051390513913,60.402654573953896],[5.124651246512485,60.402654573953896],[5.117451174511757,60.4127860375732],[5.117451174511757,60.427983233002124],[5.121051210512121,60.43473754208168],[5.131851318513185,60.44318042843108],[5.077850778507781,60.455000469320254],[5.063450634506353,60.465131932939556],[5.070650706507081,60.46850908747933],[5.074250742507445,60.47019766474921],[5.077850778507781,60.47188624201908],[5.077850778507781,60.47864055109861],[5.063450634506353,60.47695197382873],[5.059850598505989,60.482017705638384],[5.059850598505989,60.49214916925769],[5.052650526505261,60.50228063287699],[5.045450454504561,60.50565778741674],[5.031050310503105,60.50396921014686],[5.016650166501677,60.500592055607086],[5.0058500585005845,60.49890347833721],[4.991449914499157,60.50565778741674],[4.9770497704977,60.52423213738544]]],[[[-42.77382773827739,60.90247344583918],[-42.62262622626227,60.89571913675965],[-42.64782647826479,60.88221051860057],[-42.6910269102691,60.870390477711396],[-42.76662766627666,60.861947591362],[-42.910629106291054,60.87545620952105],[-42.953829538295366,60.87545620952105],[-42.9430294302943,60.878833364060824],[-42.92502925029251,60.88896482768013],[-42.903429034290326,60.89065340495],[-42.84942849428495,60.90247344583918],[-42.77382773827739,60.90247344583918]]],[[[6.262262622626224,62.42388156600347],[6.3018630186302005,62.425570143273376],[6.319863198631992,62.4221929887336],[6.33426334263342,62.41037294784442],[6.327063270632721,62.41037294784442],[6.3234632346323565,62.40868437057455],[6.3234632346323565,62.406995793304674],[6.319863198631992,62.4036186387649],[6.165061650616508,62.39686432968537],[6.089460894608948,62.40193006149502],[6.02466024660248,62.43739018416255],[6.20106201062012,62.44414449324208],[6.215462154621548,62.4407673387023],[6.262262622626224,62.42388156600347]]],[[[-42.30222302223021,62.57416494302305],[-42.291422914229145,62.580919252102575],[-42.27702277022769,62.58260782937245],[-42.26262262622626,62.5792306748327],[-42.25542255422553,62.5690992112134],[-42.273422734227324,62.5690992112134],[-42.23022230222301,62.55221343851457],[-42.16182161821618,62.580919252102575],[-42.122221222212204,62.560656324864],[-42.13662136621366,62.54377055216517],[-42.14382143821439,62.52688477946634],[-42.13662136621366,62.513376161307264],[-42.122221222212204,62.49986754314821],[-42.147421474214724,62.49817896587834],[-42.16902169021691,62.491424656798785],[-42.19422194221943,62.48635892498913],[-42.21942219422195,62.49311323406869],[-42.21222212222122,62.49986754314821],[-42.22662226622265,62.504933274957864],[-42.26262262622626,62.51168758403739],[-42.28062280622805,62.52013047038679],[-42.28422284222842,62.53026193400609],[-42.29502295022951,62.56234490213387],[-42.30222302223021,62.57416494302305]]],[[[6.852668526685278,62.74639982455108],[6.877868778687798,62.74302267001133],[6.903069030690318,62.732891206392026],[6.92106921069211,62.71769401096307],[6.913869138691382,62.697431083724496],[6.748267482674834,62.67716815648589],[6.683466834668366,62.656905229247286],[6.6726667266672735,62.65521665197741],[6.669066690666909,62.66028238378706],[6.665466654666545,62.670413847406365],[6.661866618666181,62.67547957921602],[6.6546665466654815,62.67716815648589],[6.647466474664753,62.678856733755765],[6.647466474664753,62.683922465565416],[6.6546665466654815,62.68561104283532],[6.665466654666545,62.68898819737507],[6.6726667266672735,62.692365351914844],[6.679866798668002,62.697431083724496],[6.6762667626676375,62.71769401096307],[6.683466834668366,62.72951405185225],[6.701467014670158,62.736268360931774],[6.723067230672314,62.732891206392026],[6.7158671586715855,62.7261368973125],[6.74466744667447,62.72275974277272],[6.852668526685278,62.74639982455108]]],[[[-41.58581585815858,63.0098178786528],[-41.56061560615606,63.018260765002196],[-41.521015210152086,63.02163791954197],[-41.477814778147774,63.01994934227207],[-41.452614526145254,63.01488361046242],[-41.470614706147046,62.98786637414432],[-41.470614706147046,62.97435775598524],[-41.452614526145254,62.972669178715364],[-41.50661506615066,62.93889763331771],[-41.51741517415175,62.92707759242853],[-41.546215462154606,62.893306047030876],[-41.553415534155334,62.88655173795135],[-41.56781567815679,62.87810885160192],[-41.58221582215822,62.874731697062174],[-41.58941589415895,62.88655173795135],[-41.58221582215822,62.9000603561104],[-41.546215462154606,62.920323283349006],[-41.53541535415354,62.93214332423818],[-41.5570155701557,62.93214332423818],[-41.596615966159646,62.91188039699958],[-41.6110161101611,62.91694612880923],[-41.6110161101611,62.91863470607913],[-41.6110161101611,62.92201186061888],[-41.6110161101611,62.92538901515866],[-41.58581585815858,62.95916056055631],[-41.58221582215822,62.96929202417559],[-41.58581585815858,62.977734910525015],[-41.58941589415895,62.98786637414432],[-41.58941589415895,62.999686415033494],[-41.58581585815858,63.0098178786528]]],[[[7.777877778777793,63.08242670125773],[7.849878498784989,63.097623896686684],[7.885878858788601,63.09931247395656],[7.914679146791485,63.08242670125773],[7.900279002790029,63.062163774019155],[7.875078750787509,63.04527800132033],[7.842678426784261,63.03176938316125],[7.806678066780677,63.02501507408172],[7.788677886778885,63.01994934227207],[7.777877778777793,63.01994934227207],[7.7706777067770645,63.02332649681185],[7.756277562775637,63.03176938316125],[7.7526775267752726,63.03345796043115],[7.734677346773481,63.0368351149709],[7.680676806768076,63.05540946493963],[7.680676806768076,63.06047519674925],[7.698676986769868,63.062163774019155],[7.7058770587705965,63.07229523763846],[7.7094770947709605,63.08242670125773],[7.713077130771325,63.089181010337256],[7.720277202772024,63.09086958760716],[7.7274772747727525,63.09424674214691],[7.734677346773481,63.09593531941681],[7.777877778777793,63.08242670125773]]],[[[-41.528215282152814,63.08242670125773],[-41.503015030150294,63.097623896686684],[-41.470614706147046,63.10775536030599],[-41.402214022140214,63.11619824665539],[-41.37341373413733,63.111132514845735],[-41.33021330213302,63.084115278527634],[-41.30861308613086,63.075672392178205],[-41.33381333813338,63.053720887669726],[-41.38421384213842,63.0469665785902],[-41.438214382143826,63.05034373312998],[-41.49221492214923,63.06385235128903],[-41.503015030150294,63.067229505828806],[-41.528215282152814,63.08242670125773]]],[[[-41.211412114121146,63.15672410113257],[-41.32301323013229,63.165166987481996],[-41.29781297812977,63.14828121478317],[-41.21501215012151,63.133084019354214],[-41.186211862118626,63.12295255573491],[-41.24741247412473,63.12295255573491],[-41.27981279812798,63.12632971027469],[-41.351813518135174,63.12632971027469],[-41.38421384213842,63.133084019354214],[-41.438214382143826,63.15672410113257],[-41.463414634146346,63.1752984511013],[-41.463414634146346,63.195561378339875],[-41.43461434614346,63.21075857376883],[-41.402214022140214,63.21413572830858],[-41.301413014130134,63.19893853287965],[-41.211412114121146,63.165166987481996],[-41.211412114121146,63.15672410113257]]],[[[12.22392223922239,65.12391662054591],[12.24912249122491,65.11885088873626],[12.285122851228522,65.11716231146639],[12.310323103231042,65.11040800238686],[12.29952299522995,65.09689938422781],[12.270722707227065,65.08001361152898],[12.231122311223118,65.0681935706398],[12.155521555215557,65.05468495248073],[12.133921339213401,65.0563735297506],[12.09072090720909,65.0665049933699],[12.069120691206905,65.06988214790968],[12.047520475204749,65.06988214790968],[12.000720007200073,65.07494787971933],[11.979119791197917,65.08339076606873],[11.993519935199345,65.08676792060851],[12.033120331203321,65.08339076606873],[12.047520475204749,65.08507934333863],[12.047520475204749,65.09183365241816],[12.043920439204385,65.10027653876756],[12.043920439204385,65.10703084784708],[12.061920619206205,65.11716231146639],[12.101521015210153,65.12391662054591],[12.12312123121231,65.13067092962547],[12.108721087210881,65.12898235235556],[12.097920979209789,65.13067092962547],[12.094320943209425,65.13573666143509],[12.087120871208725,65.14417954778452],[12.09072090720909,65.14924527959417],[12.094320943209425,65.16106532048335],[12.097920979209789,65.1745739386424],[12.094320943209425,65.17795109318217],[12.112321123211245,65.19314828861113],[12.14112141121413,65.2032797522304],[12.16632166321665,65.21172263857983],[12.19152191521917,65.2134112158497],[12.209522095220962,65.20665690677018],[12.24192241922421,65.17795109318217],[12.270722707227065,65.1644424750231],[12.259922599226002,65.14755670232427],[12.22392223922239,65.12391662054591]]],[[[-39.54819548195482,65.31979158385232],[-39.558995589955884,65.32316873839207],[-39.57339573395734,65.32316873839207],[-39.584195841958405,65.3214801611222],[-39.5949959499595,65.31641442931254],[-39.56619566195661,65.29615150207397],[-39.57339573395734,65.28939719299441],[-39.56979569795698,65.28770861572454],[-39.53739537395373,65.28939719299441],[-39.5229952299523,65.29277434753419],[-39.508595085950844,65.29446292480407],[-39.49059490594905,65.28770861572454],[-39.51939519395194,65.27926572937514],[-39.54459544595446,65.27419999756549],[-39.56979569795698,65.27588857483536],[-39.72459724597246,65.31641442931254],[-39.79299792997929,65.32316873839207],[-39.803798037980386,65.32654589293185],[-39.803798037980386,65.33498877928125],[-39.79659796597966,65.3417430883608],[-39.778597785977865,65.34343166563067],[-39.778597785977865,65.36707174740903],[-39.753397533975345,65.37720321102833],[-39.728197281972825,65.37382605648855],[-39.73179731797316,65.35694028378973],[-39.710197101971005,65.3501859747102],[-39.609396093960925,65.3501859747102],[-39.5949959499595,65.34849739744033],[-39.56259562595625,65.3400545110909],[-39.54819548195482,65.33667735655115],[-39.51219512195121,65.33836593382102],[-39.501395013950145,65.33330020201137],[-39.49059490594905,65.32316873839207],[-39.53739537395373,65.31810300658242],[-39.54819548195482,65.31979158385232]]],[[[-52.936729367293665,65.65919561509872],[-52.886328863288625,65.66088419236863],[-52.861128611286105,65.65581846055898],[-52.84672846728466,65.6423098423999],[-52.85392853928539,65.6237354924312],[-52.86472864728647,65.61022687427214],[-52.87912879128791,65.59840683338297],[-52.95472954729547,65.56632386525519],[-52.994329943299434,65.55956955617566],[-53.037530375303746,65.54268378347683],[-53.0591305913059,65.54606093801661],[-53.12753127531275,65.55450382436601],[-53.16713167131671,65.55956955617566],[-53.19233192331923,65.57645532887449],[-53.224732247322464,65.59334110157332],[-53.23193231932319,65.60178398792272],[-53.21753217532175,65.61360402881189],[-53.195931959319594,65.6237354924312],[-53.174331743317424,65.63048980151072],[-52.936729367293665,65.65919561509872]]],[[[-36.2289622896229,65.91923651466067],[-36.23256232562326,65.90403931923174],[-36.22176221762217,65.89559643288231],[-36.18216182161822,65.88546496926301],[-36.19656196561965,65.87195635110396],[-36.21816218162181,65.85844773294491],[-36.23976239762396,65.85338200113526],[-36.250562505625055,65.86351346475453],[-36.26136261362612,65.86013631021478],[-36.27216272162721,65.85675915567501],[-36.28656286562864,65.85675915567501],[-36.29736297362973,65.85675915567501],[-36.29376293762937,65.8466276920557],[-36.29376293762937,65.84325053751596],[-36.33336333363334,65.82298761027735],[-36.35856358563586,65.82129903300748],[-36.38016380163802,65.83649622843643],[-36.38016380163802,65.86857919656418],[-36.37296372963729,65.88208781472326],[-36.35856358563586,65.88715354653291],[-36.326163261632615,65.89221927834254],[-36.30456304563046,65.89897358742209],[-36.29736297362973,65.90572789650162],[-36.290162901629,65.91585936012092],[-36.275762757627575,65.92092509193054],[-36.2289622896229,65.91923651466067]]],[[[14.272342723427244,67.1654065398341],[14.257942579425787,67.13838930351599],[14.239942399423995,67.11474922173761],[14.21834218342184,67.09786344903878],[14.19314193141932,67.08435483087973],[14.211142111421111,67.0488947082122],[14.214742147421475,67.03200893551337],[14.196741967419683,67.02187747189407],[14.200342003420047,67.01850031735432],[14.203942039420411,67.01174600827477],[14.207542075420747,67.00836885373502],[14.19314193141932,67.00330312192537],[14.175141751417527,66.9999259673856],[14.157141571415707,67.0016145446555],[14.149941499415007,67.01174600827477],[14.149941499415007,67.02694320370372],[14.146341463414643,67.03200893551337],[14.139141391413915,67.03538609005312],[14.099540995409967,67.06240332637125],[14.067140671406719,67.06915763545078],[13.991539915399159,67.0776005218002],[13.991539915399159,67.08435483087973],[14.013140131401315,67.08942056268938],[14.031140311403135,67.09786344903878],[14.063540635406355,67.11812637627739],[14.056340563405655,67.13332357170634],[14.067140671406719,67.13501214897622],[14.135541355413551,67.10968348992799],[14.153541535415371,67.10630633538821],[14.171541715417163,67.11137206719786],[14.19314193141932,67.12994641716656],[14.21834218342184,67.15527507621482],[14.247142471424723,67.17384942618352],[14.272342723427244,67.1654065398341]]],[[[-29.712897128971292,68.22245591078067],[-29.7020970209702,68.21907875624092],[-29.694896948969472,68.21232444716136],[-29.694896948969472,68.20725871535174],[-29.705697056970564,68.20050440627219],[-29.705697056970564,68.18699578811314],[-29.716497164971656,68.17686432449383],[-29.734497344973448,68.17011001541431],[-29.77769777697776,68.16504428360466],[-29.83529835298353,68.14646993363596],[-29.867698676986777,68.14309277909618],[-29.900099000989997,68.14478135636608],[-29.92889928899288,68.1515356654456],[-29.98649986499865,68.16842143814443],[-30.000900009000077,68.17855290176374],[-30.008100081000805,68.19375009719266],[-30.015300153001533,68.21401302443127],[-29.982899828998285,68.22921021986019],[-29.946899468994673,68.23765310620962],[-29.874898748987476,68.24271883801927],[-29.817298172981737,68.2308987971301],[-29.72729727297272,68.22752164259032],[-29.712897128971292,68.22245591078067]]],[[[-51.95751957519576,68.63615734190194],[-51.93951939519394,68.64628880552124],[-51.82431824318243,68.63784591917181],[-51.80631806318064,68.63278018736216],[-51.80631806318064,68.62602587828263],[-51.89631896318963,68.62602587828263],[-51.92151921519215,68.61927156920311],[-51.917919179191784,68.61082868285371],[-51.910719107191056,68.60745152831393],[-51.90351903519036,68.60407437377415],[-52.03312033120331,68.58550002380545],[-52.09792097920979,68.56523709656688],[-52.11592115921158,68.56354851929697],[-52.13032130321302,68.56692567383675],[-52.15552155521554,68.57874571472593],[-52.169921699216985,68.58550002380545],[-52.20592205922058,68.58887717834523],[-52.328323283232834,68.57874571472593],[-52.36072360723607,68.58381144653558],[-52.36792367923678,68.5821228692657],[-52.396723967239666,68.56692567383675],[-52.407524075240744,68.56354851929697],[-52.41832418324182,68.56861425110662],[-52.421924219242186,68.57874571472593],[-52.42552425524255,68.5905657556151],[-52.421924219242186,68.59732006469463],[-52.40032400324003,68.61758299193323],[-52.36792367923678,68.62264872374288],[-52.29952299522995,68.61927156920311],[-52.2671226712267,68.62602587828263],[-52.20952209522095,68.64291165098146],[-52.17712177121771,68.64628880552124],[-52.05832058320583,68.63615734190194],[-52.03312033120331,68.62602587828263],[-52.05472054720546,68.61758299193323],[-52.10152101521015,68.6091401055838],[-52.11592115921158,68.59732006469463],[-52.1051210512105,68.59225433288498],[-52.094320943209425,68.58718860107533],[-52.08352083520835,68.58381144653558],[-52.07272072720727,68.58550002380545],[-52.07272072720727,68.5905657556151],[-52.05832058320583,68.59732006469463],[-51.98271982719828,68.61082868285371],[-51.96471964719646,68.61927156920311],[-51.95751957519576,68.63615734190194]]],[[[17.206372063720636,68.8928210869241],[17.206372063720636,68.9130840141627],[17.224372243722456,68.9215269005121],[17.31797317973181,68.91814974597236],[17.364773647736484,68.90970685962293],[17.404374043740432,68.8928210869241],[17.440374403744045,68.86580385060597],[17.350373503735057,68.83540945974809],[17.299972999730016,68.80332649162031],[17.263972639726404,68.79319502800104],[17.224372243722456,68.79319502800104],[17.191971919719208,68.80332649162031],[17.17757177571775,68.81514653250949],[17.173971739717416,68.84722950063727],[17.15957159571596,68.86580385060597],[17.10917109171092,68.88606677784458],[17.087570875708764,68.89788681873375],[17.0839708397084,68.9130840141627],[17.105571055710556,68.92490405505188],[17.130771307713076,68.91477259143258],[17.173971739717416,68.88606677784458],[17.195571955719572,68.87255815968552],[17.224372243722456,68.86073811879635],[17.256772567725676,68.8556723869867],[17.281972819728196,68.85904954152645],[17.263972639726404,68.86918100514575],[17.220772207722092,68.8826896233048],[17.206372063720636,68.8928210869241]]],[[[20.957609576095763,70.00390493050693],[21.09801098010982,70.01065923958646],[20.97920979209792,69.98195342599846],[20.975609756097555,69.96337907602972],[20.93960939609397,69.9464933033309],[20.892808928089295,69.9380504169815],[20.842408424084255,69.9380504169815],[20.806408064080642,69.9481818806008],[20.774007740077394,69.97182196237915],[20.76320763207633,69.9870191578081],[20.759607596075966,69.99883919869728],[20.784807848078486,70.02416785774551],[20.80280802808028,70.03767647590456],[20.824408244082434,70.04274220771421],[20.860408604086047,70.04443078498412],[20.885608856088567,70.03767647590456],[20.936009360093607,70.00897066231656],[20.957609576095763,70.00390493050693]]],[[[-51.66231662316622,70.72323884747695],[-51.626316263162636,70.7181731156673],[-51.5039150391504,70.67427010665034],[-51.532715327153255,70.65569575668164],[-51.583115831158295,70.65738433395151],[-51.860318603186016,70.72323884747695],[-51.85671856718568,70.736747465636],[-51.84591845918459,70.74350177471555],[-51.82071820718207,70.75025608379508],[-51.79911799117991,70.74350177471555],[-51.71271712717126,70.73337031109625],[-51.68031680316804,70.72492742474682],[-51.66231662316622,70.72323884747695]]],[[[-56.03276032760327,73.57018012449919],[-56.00756007560075,73.56004866087989],[-55.96795967959679,73.57862301084859],[-55.94635946359463,73.57355727903894],[-55.93195931959319,73.57018012449919],[-55.924759247592476,73.56342581541966],[-55.92115921159211,73.55498292907023],[-55.910359103591034,73.54654004272084],[-55.899558995589956,73.53978573364128],[-55.81675816758167,73.52121138367258],[-55.726757267572665,73.51445707459305],[-55.66915669156691,73.49588272462435],[-55.622356223562235,73.4908169928147],[-55.60795607956079,73.48575126100505],[-55.58995589955899,73.46886548830622],[-55.58275582755827,73.46379975649657],[-55.55395553955539,73.4604226019568],[-55.521555215552155,73.4604226019568],[-55.48915489154891,73.4519797156074],[-55.471154711547115,73.43002821109891],[-55.550355503555025,73.42327390201939],[-55.58995589955899,73.41651959293986],[-55.60795607956079,73.39456808843138],[-55.600756007560065,73.39287951116151],[-55.597155971559715,73.39119093389161],[-55.59355593555935,73.38781377935186],[-55.58995589955899,73.3810594702723],[-55.625956259562585,73.37937089300243],[-55.63675636756368,73.3810594702723],[-55.647556475564755,73.38612520208196],[-55.65475654756547,73.39456808843138],[-55.6619566195662,73.39963382024104],[-55.672756727567275,73.40301097478078],[-55.69435694356943,73.39963382024104],[-55.71235712357124,73.39456808843138],[-55.73035730357303,73.39119093389161],[-55.751957519575186,73.39456808843138],[-55.733957339573394,73.41314243840009],[-55.70515705157051,73.41483101566996],[-55.672756727567275,73.41145386113021],[-55.647556475564755,73.41989674747961],[-55.64035640356403,73.43678252017844],[-55.65475654756547,73.44691398379774],[-55.67995679956799,73.45029113833752],[-55.697956979569796,73.45029113833752],[-55.68715687156872,73.45366829287727],[-55.676356763567625,73.4621111792267],[-55.66915669156691,73.47224264284597],[-55.66555665556655,73.48406268373517],[-55.726757267572665,73.46717691103635],[-55.751957519575186,73.46379975649657],[-55.78075780757807,73.4705540655761],[-55.78075780757807,73.47393122011587],[-55.78075780757807,73.47899695192552],[-55.78075780757807,73.48237410646527],[-55.784357843578434,73.48406268373517],[-55.79515795157951,73.48575126100505],[-55.81675816758167,73.4908169928147],[-55.86715867158671,73.49419414735445],[-55.885158851588514,73.500948456434],[-55.89595895958959,73.51276849732318],[-55.88875888758888,73.51276849732318],[-55.87075870758707,73.51783422913283],[-55.899558995589956,73.52965427002201],[-55.960759607596074,73.52458853821236],[-55.99315993159931,73.52627711548223],[-56.08316083160831,73.55329435180036],[-56.11556115561156,73.56004866087989],[-56.09756097560975,73.57186870176906],[-56.07236072360723,73.57693443357871],[-56.04716047160471,73.57862301084859],[-56.03276032760327,73.57018012449919]]],[[[119.72459724597246,-8.62131848704118],[119.73899738997392,-8.617941332501402],[119.76779767797677,-8.617941332501402],[119.79299792997932,-8.624695641580942],[119.78939789397896,-8.64158141427977],[119.75699756997574,-8.66184434151836],[119.74619746197465,-8.671975805137649],[119.74979749797501,-8.685484423296714],[119.73539735397355,-8.688861577836477],[119.7209972099721,-8.690550155106365],[119.710197101971,-8.693927309646128],[119.70299702997033,-8.705747350535304],[119.7065970659707,-8.72432170050402],[119.72459724597246,-8.741207473202849],[119.72459724597246,-8.76147040044144],[119.71739717397173,-8.769913286790853],[119.70299702997033,-8.791864791299318],[119.69939699396997,-8.80199625491862],[119.68859688596888,-8.798619100378858],[119.67779677796779,-8.791864791299318],[119.67059670596706,-8.78173332768003],[119.66339663396633,-8.773290441330616],[119.65619656196566,-8.76653613225109],[119.64539645396457,-8.771601864060727],[119.63459634596347,-8.778356173140267],[119.62379623796238,-8.780044750410141],[119.61659616596165,-8.778356173140267],[119.60579605796062,-8.768224709520965],[119.61299612996129,-8.73951889593296],[119.62019620196202,-8.729387432313672],[119.63459634596347,-8.727698855043784],[119.63099630996311,-8.717567391424481],[119.62739627396274,-8.714190236884718],[119.6417964179642,-8.705747350535304],[119.65619656196566,-8.695615886916016],[119.65979659796596,-8.685484423296714],[119.6417964179642,-8.678730114217188],[119.64539645396457,-8.65677860970871],[119.62739627396274,-8.617941332501402],[119.63459634596347,-8.595989827992938],[119.65619656196566,-8.611187023421877],[119.65979659796596,-8.617941332501402],[119.66339663396633,-8.628072796120705],[119.67059670596706,-8.650024300629184],[119.67419674196742,-8.658467186978598],[119.6957969579696,-8.666910073328012],[119.710197101971,-8.660155764248472],[119.7209972099721,-8.643269991549644],[119.72459724597246,-8.62131848704118]]],[[[109.01809018090182,-7.758455502131113],[109.02529025290255,-7.761832656670876],[109.04329043290431,-7.761832656670876],[109.04689046890468,-7.768586965750416],[109.04329043290431,-7.778718429369704],[109.03609036090364,-7.780407006639592],[109.02529025290255,-7.7770298520998296],[109.0000900009,-7.773652697560053],[108.9460894608946,-7.7550783475913505],[108.88488884888852,-7.743258306702174],[108.87408874088743,-7.736503997622634],[108.85608856088561,-7.731438265812997],[108.81648816488166,-7.738192574892523],[108.79848798487984,-7.7331268430828715],[108.79488794887948,-7.719618224923806],[108.79848798487984,-7.701043874955104],[108.80568805688057,-7.685846679526151],[108.82008820088203,-7.679092370446625],[108.87408874088743,-7.7027324522249785],[108.92448924489247,-7.711175338574392],[108.95688956889569,-7.719618224923806],[109.0108901089011,-7.750012615781699],[109.01809018090182,-7.758455502131113]]],[[[103.81963819638196,0.8870601196683054],[103.86283862838627,0.876928656049003],[103.89883898838991,0.8532885742706497],[103.9240392403924,0.8228941834127568],[103.94203942039422,0.7908112152849895],[103.94203942039422,0.7756140198560502],[103.93123931239313,0.770548288046399],[103.92043920439204,0.7722368653162732],[103.90963909639095,0.7806797516656871],[103.89523895238955,0.8110741425235801],[103.88803888038882,0.8178284516031056],[103.85203852038524,0.8347142243019334],[103.84483844838451,0.8431571106513474],[103.84123841238414,0.849911419730887],[103.81963819638196,0.8803058105887658],[103.81963819638196,0.8870601196683054]]],[[[103.94203942039422,0.9968176422106723],[103.95283952839532,0.9883747558612583],[103.96003960039599,0.9748661377022074],[103.96723967239672,0.9596689422732538],[103.96723967239672,0.9478489013840772],[103.96003960039599,0.9394060150346633],[103.94563945639459,0.9360288604949005],[103.93123931239313,0.9343402832250121],[103.92043920439204,0.9343402832250121],[103.90963909639095,0.937717437764789],[103.8556385563856,0.9681118286226678],[103.84483844838451,0.9782432922419702],[103.84123841238414,0.9900633331311468],[103.83763837638378,1.003571951290212],[103.84483844838451,1.0120148376396259],[103.8556385563856,1.0137034149095001],[103.87363873638736,1.003571951290212],[103.87363873638736,1.0120148376396259],[103.88083880838809,1.0322777648782164],[103.89163891638918,1.0137034149095001],[103.90963909639095,1.0052605285600862],[103.94203942039422,0.9968176422106723]]],[[[98.55638556385566,1.6823800137830602],[98.57078570785711,1.6722485501637578],[98.59238592385924,1.6519856229251673],[98.59958599585997,1.6317226956865767],[98.58158581585815,1.6266569638769255],[98.55998559985602,1.6232798093371628],[98.52758527585274,1.6232798093371628],[98.49878498784989,1.6266569638769255],[98.46638466384667,1.6435427365757533],[98.45198451984521,1.646919891115516],[98.44118441184412,1.6502970456552788],[98.43038430384303,1.6621170865444554],[98.43038430384303,1.6756257047035206],[98.43398433984339,1.6925114774023484],[98.44478444784448,1.704331518291525],[98.4627846278463,1.7093972501011763],[98.4771847718477,1.704331518291525],[98.4879848798488,1.6908229001324742],[98.50238502385025,1.6654942410842324],[98.52038520385207,1.65536277746493],[98.53118531185311,1.6621170865444554],[98.5419854198542,1.6739371274336463],[98.55638556385566,1.6823800137830602]]],[[[97.15237152371526,2.0589327449668957],[97.14517145171453,2.0521784358873703],[97.12357123571235,2.038669817728305],[97.11997119971198,2.0352926631885424],[97.12357123571235,2.0217840450294773],[97.11637116371162,2.015029735949952],[97.10197101971022,2.016718313219826],[97.06957069570694,2.0876385585549],[97.07677076770767,2.085949981285026],[97.08757087570876,2.096081444904314],[97.09117091170913,2.1062129085236165],[97.10197101971022,2.1112786403332535],[97.11997119971198,2.112967217603142],[97.13437134371344,2.107901485793491],[97.14157141571417,2.0927042903645514],[97.1487714877149,2.074129940395835],[97.15237152371526,2.0589327449668957]]],[[[118.60138601386012,2.244676244653988],[118.6229862298623,2.2125932765262206],[118.64098640986413,2.1990846583671555],[118.65538655386553,2.1889531947478673],[118.65538655386553,2.1821988856683276],[118.6337863378634,2.187264617477979],[118.60858608586085,2.2024618129069324],[118.59058590585909,2.2210361628756345],[118.579785797858,2.236233358304574],[118.5689856898569,2.2548077082732902],[118.55818558185581,2.285202099131183],[118.55818558185581,2.3122193354492993],[118.579785797858,2.3189736445288247],[118.59058590585909,2.305465026369774],[118.6229862298623,2.2868906764010575],[118.6337863378634,2.271693480972118],[118.6337863378634,2.2598734400829414],[118.61578615786158,2.2683163264323554],[118.58698586985872,2.2919564082107087],[118.57618576185763,2.293644985480597],[118.57618576185763,2.2919564082107087],[118.579785797858,2.2868906764010575],[118.58698586985872,2.2784477900516436],[118.60138601386012,2.244676244653988]]],[[[109.10809108091081,2.531734380534047],[109.11529115291154,2.523291494184633],[109.11169111691117,2.5165371851051077],[109.09369093690935,2.504717144215931],[109.07929079290795,2.496274257866517],[109.05049050490504,2.487831371517103],[109.02529025290255,2.4861427942472147],[109.0108901089011,2.4979628351363914],[109.01449014490146,2.5114714532954565],[109.02169021690219,2.5199143396448704],[109.02169021690219,2.5283572259942844],[109.00729007290073,2.5384886896135868],[109.0000900009,2.5368001123436983],[108.98928989289897,2.530045803264173],[108.9856898568986,2.5283572259942844],[108.97848978489787,2.5283572259942844],[108.97488974889751,2.5334229578039356],[108.97128971289715,2.5384886896135868],[108.96768967689678,2.5435544214232237],[108.97128971289715,2.5553744623124146],[108.98208982089824,2.5604401941220516],[108.99648996489964,2.56212877139194],[109.00729007290073,2.5604401941220516],[109.01809018090182,2.5553744623124146],[109.04329043290431,2.5418658441533495],[109.0540905409054,2.5384886896135868],[109.09729097290972,2.5368001123436983],[109.10809108091081,2.531734380534047]]],[[[117.50337503375033,3.3338085837283273],[117.52137521375215,3.3253656973789134],[117.52857528575288,3.3169228110294995],[117.52857528575288,3.305102770140323],[117.52857528575288,3.291594151981272],[117.52137521375215,3.288216997441495],[117.51417514175142,3.291594151981272],[117.50337503375033,3.293282729251146],[117.47097470974711,3.293282729251146],[117.46017460174602,3.293282729251146],[117.45297452974529,3.2899055747113835],[117.43857438574389,3.279774111092081],[117.43497434974353,3.279774111092081],[117.4169741697417,3.288216997441495],[117.41337413374134,3.305102770140323],[117.42057420574207,3.3219885428391507],[117.43497434974353,3.3371857382681043],[117.44937449374493,3.3439400473476297],[117.46737467374675,3.345628624617518],[117.48537485374857,3.3422514700777413],[117.50337503375033,3.3338085837283273]]],[[[106.27126271262716,3.3608258200464576],[106.29286292862929,3.367580129125983],[106.29646296462965,3.359137242776569],[106.29286292862929,3.3169228110294995],[106.29286292862929,3.2814626883619695],[106.29286292862929,3.271331224742667],[106.28566285662856,3.2645769156631417],[106.2820628206282,3.2679540702029044],[106.27846278462783,3.278085533822207],[106.27846278462783,3.288216997441495],[106.27846278462783,3.291594151981272],[106.27126271262716,3.293282729251146],[106.2676626766268,3.291594151981272],[106.26406264062643,3.288216997441495],[106.26406264062643,3.2814626883619695],[106.27486274862747,3.2544454520438535],[106.2820628206282,3.247691142964314],[106.2820628206282,3.2409368338847884],[106.27846278462783,3.230805370265486],[106.23166231662316,3.257822606583616],[106.23526235262352,3.262888338393253],[106.23526235262352,3.2679540702029044],[106.23526235262352,3.2848398429017323],[106.24606246062461,3.3067913474102113],[106.24966249662498,3.327054274648802],[106.25326253262534,3.345628624617518],[106.27126271262716,3.3608258200464576]]],[[[117.89217892178925,3.4976005789069546],[117.89577895778962,3.485780538017778],[117.89577895778962,3.46889476531895],[117.89217892178925,3.455386147159885],[117.8777787777878,3.460451878969536],[117.82737827378276,3.494223424367192],[117.82017820178203,3.5111091970660198],[117.78417784177844,3.538126433384136],[117.77697776977772,3.5583893606227264],[117.78417784177844,3.582029442401094],[117.80217802178021,3.590472328750508],[117.82737827378276,3.5887837514806193],[117.84897848978488,3.575275133321554],[117.86337863378634,3.5583893606227264],[117.8777787777878,3.5398150106540243],[117.88857888578889,3.5195520834154337],[117.89217892178925,3.4976005789069546]]],[[[117.51777517775179,3.477337651668364],[117.4961749617496,3.455386147159885],[117.45657456574565,3.463829033509299],[117.3737737377374,3.4976005789069546],[117.28737287372877,3.4976005789069546],[117.26937269372695,3.5009777334467174],[117.2549725497255,3.507732042526257],[117.2405724057241,3.516174928875671],[117.229772297723,3.524617815225085],[117.22257222572227,3.534749278844373],[117.21897218972191,3.548257897003438],[117.21897218972191,3.560077937892615],[117.22257222572227,3.5702094015119172],[117.23337233372337,3.578652287861331],[117.2441724417244,3.587095174210745],[117.25857258572586,3.592160906020382],[117.26937269372695,3.592160906020382],[117.28017280172804,3.5887837514806193],[117.2981729817298,3.575275133321554],[117.3089730897309,3.57358655605168],[117.39537395373952,3.5668322469721403],[117.40977409774098,3.556700783352852],[117.43497434974353,3.524617815225085],[117.45297452974529,3.517863506145545],[117.46017460174602,3.516174928875671],[117.4817748177482,3.507732042526257],[117.5069750697507,3.502666310716606],[117.51417514175142,3.495912001637066],[117.51777517775179,3.485780538017778],[117.51777517775179,3.477337651668364]]],[[[117.84537845378458,3.7998559102159533],[117.83097830978312,3.798167332946079],[117.8129781297813,3.8049216420256045],[117.78417784177844,3.820118837454544],[117.76977769777699,3.8319388783437347],[117.7445774457745,3.8572675373919765],[117.73017730177304,3.8673990010112647],[117.73737737377377,3.8673990010112647],[117.75537755377553,3.87415331009079],[117.76257762577626,3.87415331009079],[117.76617766177662,3.87415331009079],[117.78777787777881,3.8673990010112647],[117.80577805778057,3.855578960122088],[117.82737827378276,3.842070341963023],[117.84537845378458,3.8268731465340835],[117.85257852578525,3.811675951105144],[117.84537845378458,3.7998559102159533]]],[[[118.72738727387275,4.492172590867867],[118.74898748987493,4.485418281788327],[118.75978759787597,4.471909663629276],[118.7561875618756,4.4567124682003225],[118.73458734587348,4.4516467363906855],[118.69498694986953,4.4516467363906855],[118.68058680586807,4.436449540961732],[118.67338673386735,4.436449540961732],[118.66978669786698,4.439826695501495],[118.66978669786698,4.443203850041272],[118.66618666186662,4.463466777279862],[118.66258662586625,4.468532509089513],[118.65178651786516,4.478663972708802],[118.64818648186485,4.483729704518453],[118.64458644586449,4.495549745407629],[118.64818648186485,4.497238322677518],[118.65898658986589,4.498926899947392],[118.67338673386735,4.498926899947392],[118.72738727387275,4.492172590867867]]],[[[118.51138511385113,4.649210276966954],[118.52218522185223,4.666096049665782],[118.55098550985508,4.664407472395894],[118.57618576185763,4.6542760087766055],[118.60138601386012,4.642455967887429],[118.60138601386012,4.635701658807889],[118.58338583385836,4.634013081538015],[118.57618576185763,4.627258772458475],[118.57258572585727,4.615438731569299],[118.57258572585727,4.6019301134102335],[118.55458554585545,4.618815886109061],[118.54738547385477,4.622193040648838],[118.54378543785441,4.617127308839187],[118.54018540185405,4.608684422489773],[118.53658536585368,4.6019301134102335],[118.52578525785259,4.60530726795001],[118.51138511385113,4.617127308839187],[118.49698496984973,4.6238816179187125],[118.47898478984791,4.627258772458475],[118.46818468184682,4.628947349728364],[118.4609846098461,4.630635926998252],[118.45378453784537,4.639078813347666],[118.450184501845,4.642455967887429],[118.41418414184142,4.649210276966954],[118.34578345783461,4.669473204205545],[118.34578345783461,4.676227513285085],[118.42498424984251,4.676227513285085],[118.4357843578436,4.679604667824847],[118.44298442984433,4.686358976904373],[118.450184501845,4.693113285983912],[118.45738457384573,4.696490440523675],[118.47538475384755,4.693113285983912],[118.48618486184864,4.679604667824847],[118.49338493384937,4.661030317856131],[118.51138511385113,4.649210276966954]]],[[[115.24975249752498,5.365167039397221],[115.26055260552607,5.316198298570626],[115.26055260552607,5.290869639522384],[115.24255242552425,5.272295289553668],[115.23175231752316,5.272295289553668],[115.2137521375214,5.285803907712733],[115.2029520295203,5.2841153304428445],[115.18495184951848,5.267229557744017],[115.15975159751599,5.252032362315077],[115.15975159751599,5.267229557744017],[115.18855188551885,5.3449041121586305],[115.19575195751958,5.355035575777919],[115.22455224552249,5.38036423482616],[115.24255242552425,5.3871185439057],[115.24975249752498,5.365167039397221]]],[[[95.11475114751147,5.711325379723178],[95.12555125551256,5.702882493373764],[95.13275132751329,5.691062452484587],[95.13275132751329,5.680930988865285],[95.1219512195122,5.669110947976108],[95.09315093150934,5.6843081434050475],[95.06075060750607,5.655602329817043],[95.0571505715057,5.669110947976108],[95.0571505715057,5.674176679785759],[95.06075060750607,5.6843081434050475],[95.04995049950503,5.685996720674936],[95.04635046350467,5.689373875214699],[95.04995049950503,5.69443960702435],[95.0571505715057,5.701193916103875],[95.0571505715057,5.707948225183401],[95.04995049950503,5.713013956993052],[95.04995049950503,5.718079688802703],[95.06075060750607,5.724833997882229],[95.06075060750607,5.731588306961768],[95.04995049950503,5.7366540387714196],[95.03915039150394,5.7366540387714196],[95.03195031950321,5.733276884231643],[95.02475024750248,5.731588306961768],[95.01395013950139,5.7366540387714196],[95.01395013950139,5.7450969251208335],[95.02475024750248,5.753539811470247],[95.03555035550357,5.760294120549773],[95.0571505715057,5.75691696601001],[95.08235082350825,5.7417197705810565],[95.10395103951038,5.719768266072592],[95.1219512195122,5.704571070643638],[95.11475114751147,5.711325379723178]]],[[[99.78759787597875,6.241538642466338],[99.8019980199802,6.273621610594105],[99.82359823598239,6.282064496943519],[99.83799837998379,6.29388453783271],[99.83799837998379,6.276998765133882],[99.83079830798312,6.268555878784468],[99.82359823598239,6.258424415165166],[99.82359823598239,6.244915797006101],[99.82359823598239,6.239850065196464],[99.82359823598239,6.222964292497636],[99.83079830798312,6.206078519798808],[99.82719827198275,6.190881324369855],[99.81639816398166,6.175684128940915],[99.80559805598057,6.1723069744011525],[99.79119791197911,6.185815592560218],[99.78399783997838,6.201012787989157],[99.77319773197735,6.20438994252892],[99.76599765997662,6.222964292497636],[99.78759787597875,6.241538642466338]]],[[[117.46737467374675,6.766686173399862],[117.4925749257493,6.734603205272094],[117.51057510575106,6.704208814414201],[117.5069750697507,6.673814423556308],[117.46737467374675,6.64342003269843],[117.44217442174426,6.634977146349016],[117.41337413374134,6.634977146349016],[117.38097380973812,6.640042878158653],[117.35577355773557,6.648485764508067],[117.34857348573485,6.655240073587606],[117.34497344973448,6.66368295993702],[117.34497344973448,6.672125846286434],[117.35577355773557,6.67888015536596],[117.36657366573667,6.682257309905722],[117.4169741697417,6.685634464445485],[117.43137431374316,6.689011618985262],[117.44217442174426,6.69914308260455],[117.44937449374493,6.7143402780334895],[117.43857438574389,6.724471741652792],[117.40257402574025,6.72616031892268],[117.39897398973989,6.739668937081731],[117.41337413374134,6.751488977970922],[117.45297452974529,6.756554709780559],[117.46737467374675,6.766686173399862]]],[[[117.0029700297003,7.355999640588919],[117.01737017370175,7.342491022429854],[117.02097020970211,7.318850940651501],[117.02097020970211,7.295210858873148],[117.01017010170102,7.280013663444194],[116.9921699216992,7.296899436143022],[116.9777697776978,7.2901451270634965],[116.97056970569707,7.27157077709478],[116.98136981369817,7.252996427126078],[116.88776887768881,7.229356345347725],[116.89136891368912,7.219224881728422],[116.89856898568985,7.214159149918771],[116.90576905769058,7.20909341810912],[116.89856898568985,7.197273377219943],[116.89136891368912,7.193896222680181],[116.87696876968772,7.192207645410306],[116.86256862568627,7.193896222680181],[116.85176851768517,7.197273377219943],[116.89856898568985,7.286767972523734],[116.9129691296913,7.293522281603259],[116.94896948969489,7.301965167952673],[116.96336963369635,7.308719477032213],[117.0029700297003,7.355999640588919]]],[[[99.12519125191255,7.656566394628044],[99.12879128791286,7.644746353738867],[99.12879128791286,7.6244834265002766],[99.12519125191255,7.607597653801449],[99.11799117991183,7.595777612912258],[99.10719107191073,7.594089035642384],[99.09999099991,7.597466190182146],[99.09279092790928,7.600843344721909],[99.08919089190891,7.60590907653156],[99.08919089190891,7.612663385611086],[99.08199081990819,7.616040540150863],[99.07479074790751,7.619417694690625],[99.07119071190715,7.622794849230388],[99.0459904599046,7.663320703707569],[99.06759067590679,7.675140744596746],[99.10359103591037,7.670075012787109],[99.12519125191255,7.656566394628044]]],[[[81.7370173701737,7.6599435491678065],[81.7370173701737,7.671763590056983],[81.73341733417334,7.678517899136523],[81.72981729817297,7.688649362755811],[81.72621726217261,7.698780826375113],[81.72621726217261,7.708912289994402],[81.72981729817297,7.719043753613704],[81.72981729817297,7.727486639963118],[81.72621726217261,7.739306680852295],[81.7370173701737,7.727486639963118],[81.75141751417516,7.698780826375113],[81.75861758617589,7.685272208216048],[81.76221762217625,7.680206476406397],[81.76941769417692,7.654877817358155],[81.79461794617947,7.616040540150863],[81.80541805418056,7.599154767452035],[81.82341823418233,7.511348749418133],[81.82341823418233,7.491085822179542],[81.80901809018093,7.479265781290351],[81.79461794617947,7.489397244909654],[81.79101791017911,7.494462976719305],[81.78741787417874,7.496151553989179],[81.78741787417874,7.50121728579883],[81.78741787417874,7.506283017608482],[81.78741787417874,7.50797159487837],[81.79101791017911,7.5721375311339045],[81.78741787417874,7.594089035642384],[81.77661776617765,7.6025319219917975],[81.77301773017729,7.610974808341211],[81.7370173701737,7.6599435491678065]]],[[[-156.56016560165602,20.59782259100905],[-156.5349653496535,20.57080535469092],[-156.54936549365493,20.542099541102914],[-156.5349653496535,20.53196807748361],[-156.54576545765457,20.51339372751491],[-156.57456574565745,20.51339372751491],[-156.59976599765997,20.516770882054672],[-156.61776617766176,20.51339372751491],[-156.64656646566465,20.508327995705258],[-156.6789667896679,20.504950841165495],[-156.70056700567005,20.525213768404086],[-156.68976689766896,20.540410963833025],[-156.6681666816668,20.557296736531853],[-156.63936639366392,20.57587108650057],[-156.61056610566106,20.59106828192951],[-156.58176581765818,20.599511168278923],[-156.56016560165602,20.59782259100905]]],[[[110.61650616506165,21.192201790007758],[110.59850598505989,21.178693171848693],[110.5769057690577,21.131413008291972],[110.56610566105661,21.11283865832327],[110.54450544505448,21.104395771973856],[110.51930519305193,21.11115008105338],[110.50490504905048,21.126347276482335],[110.50850508505084,21.14323304918115],[110.4977049770498,21.146610203720925],[110.49050490504908,21.149987358260688],[110.48330483304835,21.15505309007034],[110.47970479704799,21.163495976419753],[110.47250472504726,21.163495976419753],[110.47970479704799,21.149987358260688],[110.46170461704617,21.151675935530562],[110.45090450904507,21.156741667340214],[110.4437044370444,21.165184553689627],[110.45090450904507,21.178693171848693],[110.4437044370444,21.178693171848693],[110.42570425704258,21.178693171848693],[110.41850418504185,21.178693171848693],[110.41850418504185,21.185447480928218],[110.43290432904331,21.187136058198107],[110.4437044370444,21.193890367277632],[110.45090450904507,21.20064467635717],[110.46170461704617,21.20571040816681],[110.48690486904871,21.209087562706586],[110.50130501305011,21.20571040816681],[110.4977049770498,21.19557894454752],[110.47250472504726,21.193890367277632],[110.46170461704617,21.19051321273787],[110.47970479704799,21.185447480928218],[110.49410494104944,21.183758903658344],[110.50490504905048,21.187136058198107],[110.52650526505266,21.20064467635717],[110.53370533705339,21.204021830896934],[110.53730537305375,21.204021830896934],[110.54450544505448,21.204021830896934],[110.54810548105485,21.202333253627046],[110.56610566105661,21.193890367277632],[110.56970569705697,21.192201790007758],[110.55530555305552,21.177004594578804],[110.55170551705515,21.16856170822939],[110.54810548105485,21.156741667340214],[110.55530555305552,21.156741667340214],[110.5769057690577,21.19051321273787],[110.59490594905952,21.202333253627046],[110.61650616506165,21.198956099087283],[110.61650616506165,21.192201790007758]]],[[[88.87228872288722,21.595771757509723],[88.89028890288904,21.589017448430184],[88.90108901089013,21.58057456208077],[88.91188911889122,21.56706594392172],[88.91548915489153,21.548491593953003],[88.90828908289086,21.529917243984286],[88.89748897488977,21.528228666714412],[88.87948879488795,21.529917243984286],[88.86148861488618,21.52316293490476],[88.839888398884,21.531605821254175],[88.82908829088291,21.577197407541007],[88.839888398884,21.614346107478426],[88.87228872288722,21.595771757509723]]],[[[89.11709117091169,21.781515257196816],[89.13869138691388,21.766318061767876],[89.1458914589146,21.739300825449746],[89.13149131491315,21.722415052750918],[89.10269102691029,21.735923670909983],[89.05229052290525,21.793335298085992],[89.05229052290525,21.796712452625755],[89.05949059490598,21.803466761705295],[89.06309063090634,21.822041111673997],[89.06309063090634,21.840615461642713],[89.05229052290525,21.87438700704037],[89.05229052290525,21.889584202469308],[89.04509045090452,21.908158552438024],[89.04509045090452,21.916601438787424],[89.05589055890562,21.918290016057313],[89.06309063090634,21.91491286151755],[89.06669066690665,21.9098471297079],[89.06669066690665,21.904781397898248],[89.07029070290702,21.889584202469308],[89.08109081090811,21.823729688943885],[89.0918909189092,21.793335298085992],[89.11709117091169,21.781515257196816]]],[[[88.63468634686348,21.921667170597075],[88.64908649086493,21.926732902406727],[88.66348663486633,21.921667170597075],[88.67068670686706,21.908158552438024],[88.6670866708667,21.889584202469308],[88.65628656286566,21.865944120690955],[88.64908649086493,21.842304038912587],[88.64548645486457,21.78826956627634],[88.63468634686348,21.793335298085992],[88.59868598685989,21.803466761705295],[88.59148591485916,21.80515533897517],[88.59148591485916,21.813598225324583],[88.58428584285843,21.827106843483648],[88.58428584285843,21.835549729833062],[88.5878858788588,21.842304038912587],[88.59868598685989,21.869321275230718],[88.61668616686165,21.898027088818722],[88.63468634686348,21.921667170597075]]],[[[90.52470524705245,23.32149772732984],[90.50670506705069,23.314743418250302],[90.48870488704887,23.319809150059953],[90.46710467104674,23.33162919094913],[90.43830438304383,23.362023581807023],[90.42750427504274,23.375532199966088],[90.4311043110431,23.385663663585376],[90.45630456304565,23.385663663585376],[90.49230492304923,23.3738436226962],[90.53910539105391,23.350203540917846],[90.57870578705786,23.323186304599716],[90.58590585905858,23.30123480009125],[90.549905499055,23.32656345913948],[90.52830528305282,23.33331776821902],[90.52470524705245,23.32149772732984]]],[[[126.80946809468094,26.352493926769284],[126.80946809468094,26.342362463149982],[126.80586805868057,26.332230999530694],[126.80226802268021,26.32378811318128],[126.79506795067954,26.31703380410174],[126.79506795067954,26.313656649561977],[126.79506795067954,26.308590917752326],[126.79506795067954,26.305213763212564],[126.78786787867881,26.303525185942675],[126.78066780667808,26.305213763212564],[126.77706777067772,26.308590917752326],[126.76986769867699,26.313656649561977],[126.76626766267663,26.320410958641503],[126.7590675906759,26.333919576800568],[126.74106741067413,26.342362463149982],[126.71946719467195,26.347428194959633],[126.7050670506705,26.355871081309047],[126.69786697866982,26.369379699468112],[126.7050670506705,26.3795111630874],[126.72306723067231,26.38626547216694],[126.74106741067413,26.389642626706703],[126.75186751867517,26.391331203976577],[126.76986769867699,26.387954049436814],[126.78786787867881,26.3795111630874],[126.80226802268021,26.367691122198224],[126.80946809468094,26.352493926769284]]],[[[128.69948699486997,27.45513488400269],[128.70308703087034,27.451757729462912],[128.70308703087034,27.450069152193038],[128.7066870668707,27.44838057492315],[128.6958869588696,27.436560534033973],[128.67068670686706,27.421363338605033],[128.65628656286566,27.409543297715857],[128.6418864188642,27.384214638667615],[128.6310863108631,27.3757717523182],[128.61668616686165,27.379148906857964],[128.61308613086135,27.36395171142901],[128.60588605886062,27.362263134159136],[128.59508595085953,27.36395171142901],[128.5878858788588,27.362263134159136],[128.57348573485734,27.353820247809722],[128.55908559085594,27.35044309326996],[128.5446854468545,27.353820247809722],[128.5338853388534,27.362263134159136],[128.52668526685267,27.372394597778424],[128.52668526685267,27.384214638667615],[128.52668526685267,27.397723256826666],[128.53028530285303,27.40616614317608],[128.5338853388534,27.414609029525494],[128.53748537485376,27.417986184065256],[128.54828548285485,27.417986184065256],[128.5626856268563,27.419674761335145],[128.5986859868599,27.414609029525494],[128.62028620286202,27.416297606795382],[128.63468634686348,27.423051915874908],[128.64908649086493,27.434871956764084],[128.69948699486997,27.45513488400269]]],[[[130.03150031500314,28.373720918818876],[130.03150031500314,28.356835146120048],[130.0207002070021,28.331506487071806],[130.00630006300065,28.306177828023564],[129.99549995499956,28.290980632594625],[129.97749977499774,28.284226323515085],[129.9558995589956,28.284226323515085],[129.9126991269913,28.29773494167415],[129.97389973899737,28.343326527960983],[130.01710017100174,28.365278032469462],[130.03150031500314,28.373720918818876]]],[[[121.95661956619568,29.12007207210702],[121.96021960219605,29.108252031217845],[121.95661956619568,29.10149772213832],[121.9350193501935,29.062660444931012],[121.92421924219241,29.062660444931012],[121.91341913419137,29.071103331280426],[121.88821888218882,29.072791908550315],[121.89901899018992,29.093054835788905],[121.88821888218882,29.109940608487733],[121.87021870218706,29.12682638118656],[121.8666186661867,29.14708930842515],[121.8810188101881,29.160597926584202],[121.90261902619028,29.167352235663742],[121.92781927819277,29.167352235663742],[121.94221942219423,29.160597926584202],[121.95301953019532,29.15215504023479],[121.95661956619568,29.143712153885375],[121.95661956619568,29.12007207210702]]],[[[121.8810188101881,30.075806806860626],[121.88461884618846,30.060609611431687],[121.89181891818919,30.055543879622036],[121.90261902619028,30.05385530235216],[121.90981909819101,30.045412416002748],[121.90981909819101,30.02346091149427],[121.90261902619028,30.00150940698579],[121.88821888218882,29.98462363428696],[121.87021870218706,29.976180747937548],[121.85941859418597,29.977869325207436],[121.84861848618488,29.982935057017087],[121.83781837818378,29.988000788826724],[121.83061830618306,29.998132252446027],[121.82701827018269,30.004886561525552],[121.83061830618306,30.00826371606533],[121.83061830618306,30.013329447874966],[121.83421834218342,30.020083756954506],[121.83421834218342,30.025149488764143],[121.83421834218342,30.038658106923208],[121.83421834218342,30.045412416002748],[121.83781837818378,30.055543879622036],[121.84861848618488,30.082561115940166],[121.85221852218524,30.087626847749803],[121.86301863018633,30.08593827047993],[121.87741877418773,30.080872538670278],[121.8810188101881,30.075806806860626]]],[[[130.1539015390154,32.203414166912836],[130.17550175501754,32.203414166912836],[130.18630186301863,32.196659857833296],[130.19350193501936,32.176396930594706],[130.189901899019,32.16457688970553],[130.17190171901723,32.12405103522835],[130.16830168301686,32.113919571609046],[130.15030150301504,32.11054241706928],[130.1359013590136,32.11729672614881],[130.12870128701286,32.13249392157776],[130.13230132301322,32.14937969427659],[130.1215012150122,32.15951115789588],[130.11430114301146,32.17470835332483],[130.1107011070111,32.193282703293534],[130.11430114301146,32.2067913214526],[130.1215012150122,32.21185705326225],[130.13230132301322,32.21185705326225],[130.1539015390154,32.203414166912836]]],[[[139.48879488794887,34.0608491637838],[139.4959949599496,34.09293213191157],[139.5247952479525,34.11319505915016],[139.55719557195573,34.11319505915016],[139.57519575195755,34.089554977371805],[139.5607956079561,34.05747200924404],[139.53559535595355,34.03720908200545],[139.5067950679507,34.03552050473556],[139.48879488794887,34.0608491637838]]],[[[132.99792997929978,34.2077553862636],[132.96552965529656,34.192558190834646],[132.95472954729547,34.1976239226443],[132.9619296192962,34.21788684988289],[132.96912969129693,34.22295258169254],[132.98712987129875,34.2263297362323],[132.9907299072991,34.23139546804195],[132.9907299072991,34.24152693166124],[132.98712987129875,34.24828124074078],[132.97992979929802,34.25165839528054],[132.96912969129693,34.25334697255043],[132.98712987129875,34.27360989978902],[133.00873008730088,34.29049567248785],[133.03033030330306,34.2955614042975],[133.04473044730446,34.27360989978902],[133.05553055530555,34.24321550893113],[133.0519305193052,34.22295258169254],[133.03393033930342,34.2077553862636],[132.99792997929978,34.2077553862636]]],[[[127.17307173071731,34.48299348125447],[127.20547205472053,34.486370635794245],[127.21987219872199,34.486370635794245],[127.23427234272344,34.479616326714705],[127.24507245072454,34.464419131285766],[127.24147241472417,34.44584478131705],[127.22707227072272,34.43064758588811],[127.2090720907209,34.423893276808585],[127.16947169471695,34.417138967729045],[127.15147151471518,34.41882754499893],[127.14067140671409,34.423893276808585],[127.1190711907119,34.437401894967635],[127.1190711907119,34.44584478131705],[127.12267122671227,34.4509105131267],[127.12267122671227,34.45597624493635],[127.1190711907119,34.459353399476115],[127.11187111871118,34.464419131285766],[127.12267122671227,34.47286201763518],[127.14067140671409,34.47792774944483],[127.17307173071731,34.48299348125447]]],[[[146.1740617406174,43.53883337963538],[146.2028620286203,43.53883337963538],[146.22086220862212,43.5371448023655],[146.2280622806228,43.53207907055585],[146.2280622806228,43.520259029666676],[146.2136621366214,43.511816143317276],[146.20646206462067,43.50168467969797],[146.21006210062103,43.48311032972927],[146.15246152461526,43.46284740249067],[146.13446134461344,43.46284740249067],[146.13086130861308,43.46791313430032],[146.1272612726127,43.48648748426902],[146.12366123661235,43.4898646388088],[146.1128611286113,43.493241793348545],[146.10206102061022,43.49999610242807],[146.08046080460804,43.5168818751269],[146.13086130861308,43.54052195690528],[146.15606156061563,43.5455876887149],[146.1740617406174,43.53883337963538]]],[[[32.9889298892989,46.04299347087144],[32.999729997299994,46.03455058452201],[33.04653046530467,46.037927739061786],[33.057330573305734,46.02441912090271],[33.03933039330394,46.01259908001353],[32.61812618126183,46.059879243570265],[32.62532625326253,46.06663355264979],[32.63252632526326,46.06663355264979],[32.639726397263985,46.059879243570265],[32.78372783727838,46.046370625411186],[32.85212852128521,46.05650208903049],[32.88092880928809,46.054813511760614],[32.91332913329134,46.03961631633166],[32.956529565295654,46.05143635722084],[32.97812978129781,46.05312493449071],[32.9889298892989,46.04299347087144]]],[[[152.50292502925032,47.38372382315828],[152.52092520925208,47.3719037822691],[152.53532535325354,47.34826370049075],[152.5389253892539,47.324623618712394],[152.52452524525245,47.29929495966417],[152.48132481324814,47.30098353693404],[152.4309243092431,47.31955788690274],[152.41292412924133,47.34150939141122],[152.41292412924133,47.36683805045948],[152.42732427324273,47.38372382315828],[152.44892448924492,47.387100977698054],[152.50292502925032,47.38372382315828]]],[[[153.28773287732878,48.07772908108009],[153.29133291332914,48.064220462921014],[153.29853298532987,48.05408899930171],[153.2949329493295,48.042268958412535],[153.2769327693277,48.03213749479326],[153.2517325173252,48.04058038114266],[153.23373233732337,48.04058038114266],[153.20133201332015,48.05240042203184],[153.18333183331833,48.069286194730665],[153.15813158131584,48.09292627650902],[153.16533165331657,48.12163209009702],[153.2157321573216,48.1250092446368],[153.2409324093241,48.11318920374762],[153.25893258932592,48.104746317398195],[153.28773287732878,48.07772908108009]]],[[[154.56214562145624,49.156729956535116],[154.58374583745837,49.14828707018572],[154.59814598145982,49.129712720217015],[154.6017460174602,49.111138370248284],[154.580145801458,49.102695483898884],[154.55134551345515,49.09762975208923],[154.52974529745296,49.085809711200056],[154.5117451174512,49.080743979390405],[154.48654486544865,49.08749828846993],[154.47214472144725,49.10438406116876],[154.45414454144543,49.14153276110619],[154.43974439744397,49.156729956535116],[154.44334443344434,49.165172842884544],[154.45054450544507,49.170238574694196],[154.4577445774458,49.17192715196407],[154.49374493744938,49.170238574694196],[154.5369453694537,49.16010711107489],[154.56214562145624,49.156729956535116]]],[[[154.4469444694447,49.81696366905925],[154.47934479344792,49.81020935997972],[154.490144901449,49.78319212366159],[154.47214472144725,49.762929196423016],[154.46134461344616,49.744354846454314],[154.4469444694447,49.72915765102536],[154.41094410944112,49.73253480556514],[154.3929439294393,49.749420578263965],[154.37854378543784,49.76461777369289],[154.37494374943753,49.77812639185197],[154.3821438214382,49.78994643274115],[154.39654396543966,49.8034550509002],[154.4217442174422,49.815275091789374],[154.4469444694447,49.81696366905925]]],[[[-164.97344973449734,54.124524284530025],[-164.96264962649627,54.13127859360955],[-164.95544955449554,54.132967170879425],[-164.94464944649445,54.13127859360955],[-164.93744937449375,54.124524284530025],[-164.9338493384934,54.11439282091072],[-164.94104941049412,54.09919562548177],[-164.95184951849518,54.08568700732272],[-164.96624966249664,54.07724412097332],[-164.9770497704977,54.075555543703416],[-165.05265052650526,54.07724412097332],[-165.08865088650887,54.070489811893765],[-165.1030510305103,54.070489811893765],[-165.10665106651066,54.07386696643354],[-165.11745117451176,54.08230985278297],[-165.12465124651246,54.08568700732272],[-165.12825128251282,54.083998430052844],[-165.14265142651428,54.07724412097332],[-165.20745207452075,54.08568700732272],[-165.22545225452254,54.09075273913237],[-165.21825218252184,54.10088420275167],[-165.2110521105211,54.10932708910107],[-165.20385203852038,54.11439282091072],[-165.18945189451895,54.1177699754505],[-165.18225182251823,54.1177699754505],[-165.17145171451713,54.11270424364085],[-165.16425164251643,54.11270424364085],[-165.15345153451534,54.1160813981806],[-165.14265142651428,54.12959001633968],[-165.13185131851318,54.132967170879425],[-165.12465124651246,54.12959001633968],[-165.1210512105121,54.1262128617999],[-165.11745117451176,54.12114712999025],[-165.11745117451176,54.1177699754505],[-165.11025110251103,54.119458552720374],[-165.09585095850957,54.124524284530025],[-165.09225092250924,54.124524284530025],[-165.07785077850778,54.12283570726015],[-165.06345063450635,54.119458552720374],[-165.05265052650526,54.11270424364085],[-165.0418504185042,54.10426135729142],[-165.02745027450274,54.111015666370974],[-164.9878498784988,54.12283570726015],[-164.98064980649806,54.13127859360955],[-164.97344973449734,54.124524284530025]]],[[[137.82197821978218,54.4571740066969],[137.83277832778327,54.49094555209456],[137.85797857978582,54.50107701571386],[137.89037890378904,54.50445417025364],[137.91917919179195,54.50951990206329],[137.92637926379263,54.489256974824684],[137.92637926379263,54.47405977939573],[137.92277922779226,54.46392831577646],[137.9047790477905,54.45548542942703],[137.86517865178655,54.44704254307763],[137.84717847178473,54.436911079458326],[137.83637836378364,54.399762379520894],[137.81837818378187,54.38456518409197],[137.80037800378005,54.37612229774254],[137.7319773197732,54.364302256853364],[137.71397713977143,54.36767941139314],[137.7175771757718,54.38625376136184],[137.7175771757718,54.391319493171494],[137.7211772117721,54.39300807044137],[137.73917739177392,54.391319493171494],[137.749977499775,54.39469664771124],[137.80397803978042,54.431845347648675],[137.8147781477815,54.44366538853785],[137.82197821978218,54.4571740066969]]],[[[137.62397623976238,54.57030868377905],[137.62757627576275,54.55511148835012],[137.6311763117631,54.53653713838139],[137.63477634776348,54.521339942952466],[137.64917649176493,54.50951990206329],[137.64557645576457,54.50107701571386],[137.6419764197642,54.49601128390421],[137.64557645576457,54.489256974824684],[137.64917649176493,54.48250266574516],[137.63837638376384,54.47574835666563],[137.62397623976238,54.467305470316205],[137.61317613176135,54.45548542942703],[137.60957609576099,54.440288233998075],[137.61317613176135,54.4284681931089],[137.63477634776348,54.41158242041007],[137.6419764197642,54.399762379520894],[137.61317613176135,54.40820526587032],[137.5879758797588,54.399762379520894],[137.56637566375667,54.396385224981145],[137.54837548375485,54.41327099767997],[137.56997569975698,54.426779615839024],[137.57357573575734,54.4487311203475],[137.5627756277563,54.49601128390421],[137.55917559175595,54.50107701571386],[137.55197551975522,54.50445417025364],[137.54837548375485,54.50951990206329],[137.54837548375485,54.516274211142814],[137.55197551975522,54.521339942952466],[137.57357573575734,54.53653713838139],[137.59517595175953,54.55848864288987],[137.60957609576099,54.565242951969395],[137.62397623976238,54.57030868377905]]],[[[-161.72981729817297,55.16131072823799],[-161.72981729817297,55.15624499642834],[-161.73341733417334,55.15455641915847],[-161.7370173701737,55.15455641915847],[-161.71181711817118,55.144424955539165],[-161.66141661416614,55.130916337380114],[-161.639816398164,55.11909629649094],[-161.65421654216541,55.10558767833186],[-161.68661686616866,55.09039048290293],[-161.69741697416976,55.07181613293423],[-161.71181711817118,55.078570442013756],[-161.7262172621726,55.073504710204105],[-161.7370173701737,55.06506182385468],[-161.75141751417513,55.05830751477515],[-161.76941769417695,55.05830751477515],[-161.78381783817838,55.06675040112458],[-161.79821798217984,55.076881864743854],[-161.81261812618126,55.08532475109328],[-161.80541805418054,55.095456214712584],[-161.77661776617765,55.122473451030686],[-161.7730177301773,55.13429349191989],[-161.78381783817838,55.144424955539165],[-161.81261812618126,55.16131072823799],[-161.8090180901809,55.144424955539165],[-161.81261812618126,55.12922776011024],[-161.8270182701827,55.09883336925233],[-161.84141841418415,55.11234198741141],[-161.87021870218703,55.12078487376081],[-161.8918189181892,55.13429349191989],[-161.89901899018992,55.13429349191989],[-161.90621906219062,55.13429349191989],[-161.90981909819098,55.14273637826929],[-161.90621906219062,55.15455641915847],[-161.89901899018992,55.157933573698244],[-161.8918189181892,55.157933573698244],[-161.8450184501845,55.171442191857295],[-161.72981729817297,55.16131072823799]]],[[[-160.14940149401494,55.385891505132406],[-160.16020160201603,55.380825773322755],[-160.16740167401673,55.3842029278625],[-160.17460174601746,55.39264581421193],[-160.1818018180182,55.39940012329146],[-160.19620196201961,55.40446585510111],[-160.23220232202323,55.40953158691076],[-160.24660246602465,55.41797447326016],[-160.2610026100261,55.42304020506981],[-160.27180271802717,55.416285895990285],[-160.2970029700297,55.39940012329146],[-160.31140311403115,55.39771154602158],[-160.32940329403294,55.39771154602158],[-160.34020340203404,55.40446585510111],[-160.34740347403473,55.41797447326016],[-160.3330033300333,55.443303132308415],[-160.30420304203042,55.45850032773737],[-160.27180271802717,55.46356605954699],[-160.2430024300243,55.46187748227712],[-160.23940239402395,55.45850032773737],[-160.2358023580236,55.45005744138794],[-160.23220232202323,55.448368864118066],[-160.2250022500225,55.448368864118066],[-160.2070020700207,55.45343459592772],[-160.19980199801998,55.45512317319759],[-160.1710017100171,55.45343459592772],[-160.16020160201603,55.45005744138794],[-160.15660156601567,55.44161455503854],[-160.16020160201603,55.42641735960959],[-160.16020160201603,55.412908741450536],[-160.15660156601567,55.39940012329146],[-160.14940149401494,55.385891505132406]]],[[[23.362433624336262,59.02815267626937],[23.391233912339118,59.007889749030795],[23.394833948339482,58.99606970814162],[23.384033840338418,58.980872512712665],[23.373233732337326,58.975806780903014],[23.362433624336262,58.97749535817289],[23.35163351633517,58.98256108998254],[23.340833408334078,58.98424966725244],[23.330033300333014,58.98256108998254],[23.297632976329766,58.97074104909336],[23.279632796327974,58.97074104909336],[23.24363243632436,58.980872512712665],[23.222032220322205,58.98424966725244],[23.21843218432184,58.98256108998254],[23.214832148321477,58.97749535817289],[23.21123211232114,58.972429626363265],[23.17523175231753,58.96905247182349],[23.164431644316437,58.96905247182349],[23.15003150031501,58.97411820363314],[23.11763117631176,59.016332635380195],[23.114031140311397,59.021398367189846],[23.11763117631176,59.03321840807902],[23.132031320313217,59.03997271715855],[23.146431464314645,59.0450384489682],[23.171631716317165,59.0467270262381],[23.207632076320778,59.043349871698325],[23.279632796327974,59.03321840807902],[23.322833228332286,59.038284139888674],[23.34443344433444,59.03997271715855],[23.362433624336262,59.02815267626937]]],[[[59.240392403924034,69.17819064553427],[59.240392403924034,69.15961629556557],[59.240392403924034,69.15286198648604],[59.2439924399244,69.14610767740652],[59.22959229592297,69.15455056375592],[59.215192151921514,69.16130487283544],[59.19719197191972,69.16468202737522],[59.1719917199172,69.16974775918487],[59.16119161191614,69.17481349099452],[59.13959139591398,69.19001068642345],[59.125191251912526,69.196764995503],[59.08199081990821,69.22884796363076],[59.06039060390606,69.24235658178983],[58.78318783187834,69.32678544528395],[58.76158761587618,69.33860548617315],[58.7867878678787,69.34367121798277],[58.81558815588156,69.34029406344303],[59.150391503915046,69.25417662267901],[59.200792007920086,69.22884796363076],[59.19359193591936,69.22547080909101],[59.18639186391866,69.21871650001145],[59.17919179191793,69.2153393454717],[59.19359193591936,69.2052078818524],[59.233192331923334,69.19001068642345],[59.240392403924034,69.17819064553427]]],[[[34.02934029340295,69.39432853607926],[34.122941229412305,69.40614857696843],[34.21654216542166,69.40783715423834],[34.407344073440754,69.3521141043322],[34.382143821438234,69.3419826407129],[34.02574025740259,69.35380268160208],[33.98613986139861,69.3622455679515],[33.97533975339755,69.36899987703103],[33.98253982539825,69.3808199179202],[33.996939969399705,69.38757422699973],[34.02934029340295,69.39432853607926]]],[[[20.702007020070198,69.88908167615489],[20.698406984069834,69.88401594434524],[20.698406984069834,69.87726163526571],[20.705607056070562,69.86037586256688],[20.72000720007202,69.83673578078853],[20.705607056070562,69.81647285354995],[20.66240662406625,69.80296423539087],[20.60480604806048,69.79452134904147],[20.55440554405544,69.801275658121],[20.532805328053286,69.81309569901018],[20.525605256052557,69.82153858535958],[20.522005220052222,69.8401129353283],[20.52920529205292,69.85362155348736],[20.547205472054713,69.87388448072596],[20.55440554405544,69.88232736707536],[20.558005580055806,69.89077025342479],[20.56160561605617,69.89583598523444],[20.576005760057598,69.90090171704406],[20.597605976059754,69.90427887158384],[20.71280712807129,69.90934460339349],[20.723607236072354,69.90427887158384],[20.723607236072354,69.89752456250432],[20.716407164071654,69.89414740796454],[20.71280712807129,69.89245883069466],[20.702007020070198,69.88908167615489]]],[[[18.6679866798668,70.02754501228529],[18.660786607866072,70.03429932136481],[18.657186571865736,70.04780793952386],[18.67518675186753,70.06469371222269],[18.70038700387005,70.07651375311187],[18.711187111871112,70.08326806219142],[18.707587075870777,70.08664521673117],[18.711187111871112,70.0950881030806],[18.703987039870412,70.10184241216012],[18.703987039870412,70.11197387577943],[18.721987219872204,70.11535103031918],[18.754387543875453,70.11197387577943],[18.779587795877973,70.10184241216012],[18.7939879398794,70.0849566394613],[18.797587975879765,70.0663822894926],[18.804788047880493,70.05962798041304],[18.81918819188192,70.06469371222269],[18.829988299883013,70.07313659857212],[18.891188911889117,70.10690814396978],[18.909189091890937,70.10521956669987],[18.919989199892,70.09677668035047],[18.97038970389704,70.0849566394613],[18.973989739897405,70.07313659857212],[18.959589595895977,70.06469371222269],[18.937989379893793,70.05287367133351],[18.909189091890937,70.04611936225399],[18.837188371883713,70.03767647590456],[18.765187651876516,70.01910212593586],[18.729187291872933,70.00052777596716],[18.71838718387184,69.99039631234785],[18.714787147871476,69.98870773507798],[18.707587075870777,69.9870191578081],[18.70038700387005,69.9853305805382],[18.689586895868956,69.98870773507798],[18.671586715867164,69.99883919869728],[18.671586715867164,70.01234781685633],[18.685986859868592,70.02247928047564],[18.689586895868956,70.02585643501538],[18.6679866798668,70.02754501228529]]],[[[21.738817388173885,70.37876908442087],[21.79281792817929,70.35850615718229],[21.800018000180017,70.34668611629311],[21.79281792817929,70.32304603451476],[21.764017640176405,70.2875859118472],[21.749617496174977,70.27407729368815],[21.731617316173157,70.26563440733875],[21.713617136171365,70.2605686755291],[21.7028170281703,70.26225725279897],[21.688416884168845,70.27070013914837],[21.67761677616778,70.28420875730745],[21.67761677616778,70.3078488390858],[21.688416884168845,70.33486607540394],[21.688416884168845,70.35512900264251],[21.68481684816848,70.36357188899194],[21.688416884168845,70.3686376208016],[21.69201692016921,70.37032619807147],[21.699216992169937,70.37032619807147],[21.7028170281703,70.37708050715099],[21.7028170281703,70.3872119707703],[21.713617136171365,70.38890054804017],[21.72801728017282,70.38214623896064],[21.738817388173885,70.37876908442087]]],[[[57.11637116371165,70.55775827502845],[57.19197191971921,70.54087250232962],[57.22077220772209,70.52567530690067],[57.206372063720636,70.51047811147174],[57.188371883718844,70.51047811147174],[57.10197101971019,70.5341181932501],[57.055170551705515,70.53918392505975],[57.03717037170372,70.5442496568694],[57.05877058770588,70.52905246144044],[57.11997119971201,70.51554384328139],[57.137971379713804,70.49696949331266],[57.062370623706244,70.50203522512231],[56.929169291692915,70.53242961598019],[56.896768967689695,70.55775827502845],[56.91476914769149,70.56451258410797],[56.921969219692215,70.56620116137785],[56.93276932769328,70.56620116137785],[56.91476914769149,70.57802120226705],[56.86076860768608,70.58477551134658],[56.84276842768429,70.60672701585506],[56.9507695076951,70.58308693407668],[57.0119701197012,70.57633262499715],[57.02637026370263,70.5712668931875],[57.055170551705515,70.55775827502845],[57.073170731707336,70.55438112048867],[57.11637116371165,70.55775827502845]]],[[[84.35424354243543,74.01934167828799],[84.32904329043294,74.01258736920846],[84.35064350643506,73.99739017377951],[84.41904419044192,73.97037293746138],[84.37944379443798,73.95686431930233],[84.3326433264333,73.95517574203242],[84.22824228242285,73.96699578292163],[84.17784177841781,73.98557013289033],[83.91143911439116,73.99401301923973],[83.8970389703897,73.99907875104938],[83.88623886238861,74.00583306012891],[83.88623886238861,74.01934167828799],[83.8970389703897,74.02271883282774],[83.96543965439656,74.02609598736751],[83.97983979839802,74.03285029644704],[84.0158401584016,74.03453887371691],[84.15624156241563,74.01934167828799],[84.24624246242462,74.02440741009764],[84.37944379443798,74.04804749187599],[84.40824408244083,74.04804749187599],[84.41904419044192,74.03960460552656],[84.4118441184412,74.02778456463739],[84.39384393843937,74.02103025555786],[84.35424354243543,74.01934167828799]]],[[[85.5386553865539,74.57488360007937],[85.56385563855639,74.56981786826975],[85.61425614256143,74.54955494103115],[85.64305643056434,74.54617778649137],[85.63225632256325,74.51071766382384],[85.49545495454953,74.49889762293466],[85.50265502655026,74.46512607753701],[85.31185311853119,74.46512607753701],[85.2470524705247,74.47694611842618],[85.20745207452075,74.49045473658526],[85.1678516785168,74.51240624109371],[85.14985149851498,74.53773490014197],[85.17865178651789,74.56137498192032],[85.23625236252366,74.57488360007937],[85.5386553865539,74.57488360007937]]],[[[86.07866078660788,74.5546206728408],[86.16146161461614,74.5444892092215],[86.20106201062009,74.5343577456022],[86.20826208262082,74.51240624109371],[86.14706147061469,74.49383189112501],[86.11466114661147,74.48707758204549],[86.09666096660965,74.49552046839489],[86.07866078660788,74.50902908655397],[86.03906039060394,74.51578339563349],[85.99585995859957,74.51578339563349],[85.96705967059671,74.51240624109371],[85.97425974259744,74.50227477747444],[85.98505985059853,74.49552046839489],[85.99585995859957,74.49214331385514],[86.01026010260102,74.49214331385514],[85.99225992259926,74.47694611842618],[85.9778597785978,74.47019180934666],[85.91665916659167,74.46174892299726],[85.8590585905859,74.44486315029843],[85.8050580505805,74.44148599575865],[85.70785707857078,74.46512607753701],[85.65745657456574,74.47188038661653],[85.67545675456756,74.48370042750571],[85.7258572585726,74.50227477747444],[85.73305733057333,74.50734050928409],[85.7510575105751,74.52760343652267],[85.7906579065791,74.56812929099985],[85.80145801458013,74.57488360007937],[85.82665826658268,74.57826075461915],[85.87345873458736,74.57657217734928],[85.93825938259386,74.58163790915893],[85.9886598865989,74.57657217734928],[86.07866078660788,74.5546206728408]]],[[[79.61299612996129,74.6019008363975],[79.5877958779588,74.58670364096855],[79.54819548195485,74.56981786826975],[79.5229952299523,74.54955494103115],[79.53379533795339,74.5259148592528],[79.49059490594908,74.51747197290337],[79.42939429394295,74.52253770471302],[79.1917919179192,74.58839221823845],[79.14859148591489,74.60865514547703],[79.16299162991629,74.60865514547703],[79.2025920259203,74.6019008363975],[79.24219242192424,74.58839221823845],[79.28179281792819,74.57994933188903],[79.31779317793178,74.59008079550833],[79.31059310593105,74.60865514547703],[79.26739267392674,74.6204751863662],[79.18099180991811,74.62891807271563],[79.2025920259203,74.65086957722411],[79.24579245792461,74.65931246357351],[79.32139321393214,74.65593530903377],[79.31779317793178,74.64918099995421],[79.31059310593105,74.64411526814459],[79.30339303393038,74.63904953633494],[79.29259292592928,74.63567238179516],[79.33219332193323,74.62554091817586],[79.56259562595625,74.6120323000168],[79.59859598595989,74.60358941366738],[79.61299612996129,74.6019008363975]]],[[[82.1078210782108,75.88859671604811],[82.22662226622265,75.88690813877824],[82.25902259022592,75.87677667515894],[82.22302223022228,75.85989090246011],[81.76221762217625,75.89366244785776],[81.67941679416793,75.91392537509637],[81.59301593015931,75.91730252963612],[81.55341553415536,75.9308111477952],[81.57861578615785,75.93587687960485],[81.6038160381604,75.93756545687472],[81.6290162901629,75.93756545687472],[81.63621636216362,75.93418830233495],[81.63621636216362,75.9308111477952],[81.68661686616866,75.9308111477952],[82.1078210782108,75.88859671604811]]],[[[113.29133291332914,76.36308692888517],[113.13653136531366,76.36984123796469],[113.11853118531184,76.37659554704422],[113.15453154531548,76.40530136063222],[113.20853208532088,76.43231859695035],[113.26613266132665,76.44413863783953],[113.30933309333096,76.42387571060095],[113.27333273332732,76.40530136063222],[113.26253262532629,76.39685847428282],[113.3057330573306,76.38672701066352],[113.41013410134104,76.38672701066352],[113.44613446134463,76.36984123796469],[113.41373413734141,76.35970977434539],[113.29133291332914,76.36308692888517]]],[[[25.47925479254792,76.71262242375087],[25.50445504455044,76.71431100102077],[25.580055800558,76.71262242375087],[25.580055800558,76.69911380559182],[25.562055620556208,76.69573665105204],[25.392853928539296,76.61975067390733],[25.28845288452885,76.5944220148591],[25.241652416524175,76.5741590876205],[25.216452164521655,76.56740477854098],[25.22005220052202,76.5640276240012],[25.22005220052202,76.56233904673132],[25.22005220052202,76.55896189219155],[25.223652236522383,76.5555847376518],[25.180451804518043,76.53363323314332],[25.047250472504743,76.49817311047579],[25.01845018450186,76.46946729688779],[25.022050220502223,76.45764725599861],[25.029250292502923,76.45089294691905],[25.032850328503287,76.4458272151094],[25.01845018450186,76.43907290602988],[25.004050040500402,76.43738432876],[24.978849788497882,76.43569575149013],[24.957249572495726,76.43907290602988],[24.9428494284943,76.4458272151094],[24.946449464494663,76.46102441053836],[24.96804968049682,76.47791018323719],[24.99324993249934,76.49310737866614],[25.032850328503287,76.50492741955532],[25.09405094050942,76.54376469676262],[25.35325353253532,76.63663644660616],[25.42165421654218,76.68391661016287],[25.418054180541816,76.6923594965123],[25.432454324543244,76.69404807378217],[25.461254612546128,76.70755669194122],[25.47925479254792,76.71262242375087]]],[[[95.65115651156515,76.67716230108334],[95.66915669156691,76.68053945562312],[95.71235712357122,76.69404807378217],[95.73395733957341,76.69911380559182],[95.83475834758349,76.6923594965123],[95.82035820358203,76.67885087835322],[95.79155791557918,76.66871941473394],[95.68355683556837,76.65183364203511],[95.52875528755288,76.64845648749534],[95.47835478354784,76.65352221930499],[95.4387543875439,76.67040799200382],[95.44235442354426,76.68053945562312],[95.4387543875439,76.68898234197252],[95.41715417154171,76.70586811467135],[95.48555485554857,76.71599957829065],[95.52155521555216,76.71599957829065],[95.55395553955543,76.70586811467135],[95.59715597155974,76.67716230108334],[95.61875618756187,76.67040799200382],[95.65115651156515,76.67716230108334]]],[[[105.78525785257852,77.27998438643147],[105.90405904059043,77.30362446820982],[105.96885968859692,77.30531304547972],[106.01206012060123,77.28673869551099],[105.97965979659796,77.27998438643147],[105.91125911259115,77.27660723189172],[105.86085860858611,77.25465572738324],[105.8320583205832,77.25634430465311],[105.80325803258035,77.26647576827241],[105.78525785257852,77.27998438643147]]],[[[106.36126361263615,77.32219881817855],[106.38286382863828,77.32895312725807],[106.40806408064083,77.33064170452795],[106.43326433264332,77.32726454998817],[106.4548645486455,77.32219881817855],[106.42966429664295,77.31037877728934],[106.390063900639,77.30531304547972],[106.35406354063542,77.3070016227496],[106.33246332463324,77.32219881817855],[106.36126361263615,77.32219881817855]]],[[[24.168841688416904,80.44606676746153],[24.194041940419424,80.45788680835071],[24.219242192421945,80.45957538562058],[24.244442444424465,80.45450965381093],[24.26604266042662,80.44606676746153],[24.29124291242914,80.43086957203258],[24.363243632436337,80.40722949025422],[24.38124381243813,80.39203229482527],[24.168841688416904,80.38358940847587],[24.129241292412928,80.40554091298435],[24.143641436414384,80.4089180675241],[24.154441544415448,80.4190495311434],[24.161641616416176,80.43424672657235],[24.168841688416904,80.44606676746153]]],[[[24.29124291242914,80.48828119920859],[24.258842588425892,80.47308400377966],[24.21564215642158,80.46970684923988],[24.010440104401056,80.48321546739894],[23.978039780397808,80.49503550828814],[23.9960399603996,80.50178981736767],[24.017640176401784,80.50685554917732],[24.03924039240394,80.50854412644719],[24.060840608406096,80.50854412644719],[24.1148411484115,80.51192128098697],[24.176041760417604,80.51192128098697],[24.233642336423372,80.50347839463754],[24.29124291242914,80.48828119920859]]],[[[19.906399063990648,80.48828119920859],[19.881198811988128,80.48996977647849],[19.85959859598597,80.49672408555801],[19.852398523985244,80.50516697190741],[19.870398703987036,80.51698701279659],[19.960399603996052,80.54062709457497],[20.02520025200252,80.54231567184485],[20.064800648006496,80.5372499400352],[20.10080100801008,80.52880705368577],[20.13320133201333,80.51529843552672],[20.104401044010444,80.50685554917732],[20.04320043200434,80.50178981736767],[19.985599855998572,80.48996977647849],[19.906399063990648,80.48828119920859]]],[[[20.756007560075602,80.62505595806908],[20.723607236072354,80.62843311260886],[20.666006660066614,80.64194173076791],[20.52920529205292,80.65882750346674],[20.4968049680497,80.65882750346674],[20.518405184051858,80.6655818125463],[20.792007920079215,80.65882750346674],[20.784807848078486,80.64869603984747],[20.777607776077758,80.64194173076791],[20.76320763207633,80.63856457622816],[20.748807488074874,80.63856457622816],[20.752407524075238,80.63518742168839],[20.756007560075602,80.62505595806908]]],[[[21.17361173611738,80.65882750346674],[21.137611376113767,80.65545034892699],[21.09081090810909,80.65713892619686],[21.044010440104415,80.66727038981617],[21.026010260102595,80.6942876261343],[21.062010620106207,80.6925990488644],[21.213212132121328,80.71117339883313],[21.3320133201332,80.70779624429335],[21.3320133201332,80.7027305124837],[21.3320133201332,80.70104193521382],[21.328413284132836,80.70104193521382],[21.3248132481325,80.69935335794392],[21.335613356133564,80.69766478067405],[21.346413464134656,80.6925990488644],[21.35721357213572,80.68753331705474],[21.368013680136812,80.68077900797522],[21.17361173611738,80.65882750346674]]],[[[20.633606336063366,80.73481348061148],[20.56160561605617,80.73987921242113],[20.52920529205292,80.74663352150066],[20.518405184051858,80.77027360327901],[20.622806228062274,80.77027360327901],[20.655206552065522,80.76183071692958],[20.6948069480695,80.74494494423075],[20.72000720007202,80.73819063515123],[20.83880838808389,80.7229934397223],[20.97200972009722,80.7213048624524],[21.00441004410044,80.71455055337287],[20.993609936099375,80.7027305124837],[20.97920979209792,80.69766478067405],[20.89640896408966,80.6942876261343],[20.88920889208893,80.6925990488644],[20.874808748087474,80.68246758524512],[20.867608676086775,80.68077900797522],[20.8208082080821,80.68077900797522],[20.81360813608137,80.68246758524512],[20.810008100081006,80.68584473978487],[20.810008100081006,80.69091047159452],[20.806408064080642,80.6942876261343],[20.80280802808028,80.69766478067405],[20.806408064080642,80.70104193521382],[20.806408064080642,80.70610766702347],[20.799207992079914,80.70779624429335],[20.777607776077758,80.70779624429335],[20.756007560075602,80.712861976103],[20.73800738007381,80.712861976103],[20.6948069480695,80.70610766702347],[20.673206732067314,80.70779624429335],[20.66240662406625,80.712861976103],[20.648006480064794,80.72805917153195],[20.633606336063366,80.73481348061148]]],[[[178.84078840788408,-49.62841748614251],[178.84438844388444,-49.64530325884133],[178.84078840788408,-49.66218903154016],[178.82998829988298,-49.67907480423899],[178.82638826388268,-49.695960576937814],[178.82638826388268,-49.71284634963664],[178.8227882278823,-49.719600658716175],[178.81558815588158,-49.721289235986056],[178.77238772387727,-49.719600658716175],[178.739987399874,-49.71453492690652],[178.71838718387187,-49.699337731477584],[178.71838718387187,-49.672320495159454],[178.7291872918729,-49.66050045427028],[178.77238772387727,-49.62672890887262],[178.78678786787867,-49.61828602252321],[178.80118801188013,-49.614908867983445],[178.81558815588158,-49.614908867983445],[178.82998829988298,-49.619974599793096],[178.84078840788408,-49.62841748614251]]],[[[145.01485014850152,-40.66882649214491],[145.02925029250292,-40.67220364668467],[145.04725047250474,-40.68233511030397],[145.05805058050584,-40.69584372846303],[145.06525065250656,-40.70935234662209],[145.03645036450365,-40.70935234662209],[145.01485014850152,-40.69415515119315],[144.98244982449825,-40.699220883002795],[144.92844928449284,-40.722860964781155],[144.9212492124921,-40.722860964781155],[144.91404914049144,-40.721172387511274],[144.90684906849071,-40.721172387511274],[144.89604896048962,-40.72623811932092],[144.8888488884889,-40.727926696590806],[144.88164881648817,-40.72454954205104],[144.8780487804878,-40.71948381024139],[144.87444874448744,-40.71610665570162],[144.87084870848707,-40.67051506941479],[144.87084870848707,-40.665449337605146],[144.91764917649175,-40.62323490585808],[144.9320493204932,-40.61479201950866],[144.93564935649357,-40.62492348312796],[144.94644946449466,-40.640120678556904],[144.96084960849612,-40.64687498763644],[144.97884978849788,-40.6502521421762],[144.9968499684997,-40.665449337605146],[145.01485014850152,-40.66882649214491]]],[[[144.89964899649,-40.46957437429875],[144.87444874448744,-40.46788579702887],[144.86004860048604,-40.45606575613969],[144.84564845648458,-40.44086856071075],[144.83124831248313,-40.42735994255168],[144.83844838448385,-40.4256713652818],[144.86004860048604,-40.42398278801192],[144.8672486724867,-40.42060563347215],[144.87444874448744,-40.415539901662505],[144.88164881648817,-40.40540843804321],[144.88524885248853,-40.396965551693796],[144.87444874448744,-40.393588397154026],[144.87444874448744,-40.391899819884145],[144.8780487804878,-40.3868340880745],[144.8888488884889,-40.38176835626485],[144.89604896048962,-40.38007977899497],[144.9212492124921,-40.38007977899497],[144.9320493204932,-40.38345693353473],[144.9428494284943,-40.3868340880745],[144.96084960849612,-40.39865412896368],[144.96084960849612,-40.40709701531309],[144.9536495364954,-40.41891705620227],[144.95004950049503,-40.43749140617098],[144.9536495364954,-40.44931144706016],[144.95004950049503,-40.452688601599924],[144.92844928449284,-40.45606575613969],[144.91764917649175,-40.45775433340957],[144.90684906849071,-40.46282006521922],[144.89964899649,-40.46957437429875]]],[[[136.1731617316173,-35.01209263803787],[136.1839618396184,-35.020535524387284],[136.1947619476195,-35.02560125619693],[136.19836198361986,-35.03235556527646],[136.2055620556206,-35.04924133797529],[136.2055620556206,-35.061061378864466],[136.2055620556206,-35.07119284248376],[136.20196201962023,-35.07456999702353],[136.19116191161913,-35.06950426521388],[136.16236162361622,-35.06612711067412],[136.15156151561519,-35.04924133797529],[136.15156151561519,-35.02391267892705],[136.14436144361446,-35.00027259714869],[136.09756097560978,-34.96818962902092],[136.0867608676087,-34.94792670178233],[136.11196111961118,-34.939483815432915],[136.12636126361264,-34.94792670178233],[136.1731617316173,-35.01209263803787]]],[[[113.05733057330576,-25.262247481735166],[113.05013050130503,-25.240295977226694],[113.07533075330753,-25.16937573189162],[113.08253082530825,-25.137292763763845],[113.07893078930789,-25.06299536388901],[113.08973089730898,-25.029223818491353],[113.11853118531184,-25.008960891252762],[113.11133111331117,-25.0444210139203],[113.11133111331117,-25.06299536388901],[113.11493114931153,-25.071438250238423],[113.10413104131044,-25.079881136587836],[113.10413104131044,-25.100144063826427],[113.10413104131044,-25.140669918303615],[113.09693096930971,-25.155867113732555],[113.07893078930789,-25.19132723640009],[113.07533075330753,-25.204835854559157],[113.07533075330753,-25.241984554496575],[113.07533075330753,-25.260558904465285],[113.0681306813068,-25.27575609989423],[113.06453064530649,-25.27575609989423],[113.05733057330576,-25.267313213544817],[113.05733057330576,-25.262247481735166]]],[[[146.8616686166862,-19.115826219362148],[146.86526865268655,-19.105694755742846],[146.86886868868692,-19.102317601203083],[146.87246872468728,-19.107383333012734],[146.87606876068764,-19.11920337390191],[146.87246872468728,-19.142843455680264],[146.87246872468728,-19.152974919299567],[146.86526865268655,-19.163106382918855],[146.85806858068582,-19.151286342029678],[146.81846818468188,-19.17492642380803],[146.80046800468006,-19.163106382918855],[146.79326793267933,-19.151286342029678],[146.7860678606786,-19.14115487841039],[146.77886778867787,-19.132711992060976],[146.7860678606786,-19.122580528441674],[146.7968679686797,-19.117514796632022],[146.81126811268115,-19.11920337390191],[146.82206822068224,-19.115826219362148],[146.83286832868328,-19.102317601203083],[146.83646836468364,-19.107383333012734],[146.84366843668437,-19.110760487552497],[146.8616686166862,-19.115826219362148]]],[[[136.669966699667,-15.662685702452023],[136.67716677166771,-15.679571475150851],[136.69156691566917,-15.686325784230377],[136.70596705967063,-15.693080093309916],[136.71316713167136,-15.703211556929205],[136.70596705967063,-15.720097329628032],[136.69516695166953,-15.740360256866623],[136.66276662766631,-15.77919753407393],[136.6555665556656,-15.770754647724516],[136.64116641166413,-15.762311761375102],[136.63036630366304,-15.748803143216037],[136.61956619566195,-15.731917370517209],[136.61596615966158,-15.713343020548507],[136.6231662316623,-15.693080093309916],[136.63756637566377,-15.682948629690614],[136.6555665556656,-15.6745057433412],[136.669966699667,-15.662685702452023]]],[[[136.79956799567998,-15.642422775213433],[136.81396813968144,-15.652554238832735],[136.8319683196832,-15.667751434261675],[136.83556835568356,-15.682948629690614],[136.8211682116821,-15.689702938770154],[136.81036810368107,-15.686325784230377],[136.80316803168034,-15.672817166071326],[136.79236792367925,-15.669440011531563],[136.78156781567816,-15.672817166071326],[136.7779677796778,-15.679571475150851],[136.7887678876789,-15.703211556929205],[136.79236792367925,-15.706588711468982],[136.79596795967961,-15.709965866008744],[136.79236792367925,-15.71672017508827],[136.79236792367925,-15.72178590689792],[136.78516785167852,-15.725163061437684],[136.77436774367743,-15.731917370517209],[136.7527675276753,-15.745425988676274],[136.7419674196742,-15.748803143216037],[136.73116731167312,-15.7437374114064],[136.73476734767348,-15.720097329628032],[136.7419674196742,-15.698145825119568],[136.7419674196742,-15.676194320611089],[136.73116731167312,-15.649177084292958],[136.74916749167494,-15.645799929753196],[136.78516785167852,-15.649177084292958],[136.79956799567998,-15.642422775213433]]],[[[136.13716137161373,-13.43545228347675],[136.13716137161373,-13.40843504715862],[136.12276122761227,-13.39323785172968],[136.1191611916119,-13.374663501760963],[136.09396093960942,-13.361154883601913],[136.1191611916119,-13.362843460871787],[136.13356133561336,-13.386483542650154],[136.14796147961482,-13.389860697189917],[136.16236162361622,-13.411812201698382],[136.18036180361804,-13.438829438016512],[136.1839618396184,-13.445583747096038],[136.18756187561877,-13.452338056175577],[136.19836198361986,-13.454026633445451],[136.20196201962023,-13.460780942524991],[136.19836198361986,-13.47597813795393],[136.16956169561695,-13.45571521071534],[136.16956169561695,-13.47597813795393],[136.15516155161555,-13.472600983414168],[136.15516155161555,-13.489486756112996],[136.16236162361622,-13.513126837891349],[136.14796147961482,-13.535078342399828],[136.14436144361446,-13.56040700144807],[136.129961299613,-13.546898383289005],[136.13356133561336,-13.530012610590177],[136.14796147961482,-13.513126837891349],[136.1407614076141,-13.50299537427206],[136.13356133561336,-13.494552487922647],[136.12276122761227,-13.472600983414168],[136.13716137161373,-13.43545228347675]]],[[[136.2919629196292,-11.9765215222981],[136.3171631716317,-11.986652985917388],[136.3027630276303,-12.013670222235518],[136.27036270362703,-12.03899888128376],[136.23436234362345,-12.050818922172937],[136.219962199622,-12.0541960767127],[136.20916209162095,-12.062638963062113],[136.19836198361986,-12.071081849411527],[136.1839618396184,-12.077836158491053],[136.16956169561695,-12.077836158491053],[136.15156151561519,-12.07445900395129],[136.13716137161373,-12.067704694871765],[136.129961299613,-12.057573231252462],[136.13356133561336,-12.047441767633174],[136.13356133561336,-12.037310304013872],[136.13356133561336,-12.02717884039457],[136.129961299613,-12.017047376775281],[136.14436144361446,-12.023801685854806],[136.15516155161555,-12.03224457220422],[136.16236162361622,-12.033933149474109],[136.1731617316173,-12.02717884039457],[136.19116191161913,-12.006915913155979],[136.19836198361986,-12.000161604076453],[136.21276212762126,-12.001850181346342],[136.20916209162095,-12.006915913155979],[136.2055620556206,-12.015358799505393],[136.2055620556206,-12.025490263124695],[136.20916209162095,-12.030555994934346],[136.21636216362162,-12.028867417664458],[136.23436234362345,-12.023801685854806],[136.24156241562417,-12.023801685854806],[136.259562595626,-12.015358799505393],[136.28116281162812,-11.983275831377625],[136.2919629196292,-11.9765215222981]]],[[[135.95715957159575,-11.706349159116868],[135.94995949959502,-11.682709077338501],[135.98235982359824,-11.660757572830036],[136.02556025560256,-11.640494645591431],[136.05436054360547,-11.650626109210734],[136.0219602196022,-11.687774809148152],[136.0075600756008,-11.708037736386743],[135.9859598595986,-11.716480622736157],[135.95715957159575,-11.706349159116868]]],[[[132.619926199262,-11.647248954670971],[132.64152641526414,-11.643871800131208],[132.6451264512645,-11.650626109210734],[132.64872648726487,-11.667511881909562],[132.6451264512645,-11.679331922798738],[132.64152641526414,-11.691151963687915],[132.63432634326347,-11.701283427307217],[132.62712627126274,-11.708037736386743],[132.60912609126092,-11.714792045466282],[132.58392583925843,-11.71985777727592],[132.55872558725588,-11.71985777727592],[132.54432544325442,-11.708037736386743],[132.52992529925302,-11.691151963687915],[132.5119251192512,-11.670889036449324],[132.50832508325084,-11.648937531940845],[132.52992529925302,-11.633740336511906],[132.54432544325442,-11.632051759242017],[132.55512555125551,-11.635428913781794],[132.56952569525697,-11.64218322286132],[132.58032580325806,-11.647248954670971],[132.5911259112591,-11.648937531940845],[132.619926199262,-11.647248954670971]]],[[[153.18333183331833,-11.277450532566661],[153.19413194131943,-11.270696223487121],[153.1977319773198,-11.270696223487121],[153.1977319773198,-11.263941914407596],[153.17253172531724,-11.241990409899117],[153.16533165331657,-11.248744718978656],[153.15813158131584,-11.247056141708768],[153.15453154531548,-11.241990409899117],[153.15093150931511,-11.235236100819591],[153.11493114931153,-11.214973173581],[153.10053100531007,-11.198087400882173],[153.10413104131044,-11.186267359992996],[153.11853118531184,-11.181201628183345],[153.12933129331293,-11.18795593726287],[153.1437314373144,-11.198087400882173],[153.19053190531906,-11.208218864501461],[153.23733237332374,-11.238613255359354],[153.25533255332556,-11.241990409899117],[153.2517325173252,-11.25212187351842],[153.24453244532447,-11.263941914407596],[153.23373233732337,-11.270696223487121],[153.22293222932228,-11.267319068947359],[153.21933219332192,-11.270696223487121],[153.21213212132125,-11.275761955296772],[153.1977319773198,-11.279139109836535],[153.18333183331833,-11.277450532566661]]],[[[152.80892808928093,-10.632414015471468],[152.8161281612816,-10.632414015471468],[152.85212852128524,-10.645922633630533],[152.86292862928633,-10.652676942710059],[152.870128701287,-10.666185560869124],[152.870128701287,-10.674628447218538],[152.86292862928633,-10.681382756298063],[152.84852848528487,-10.688137065377589],[152.83772837728378,-10.691514219917366],[152.79452794527947,-10.694891374457129],[152.78372783727838,-10.696579951727003],[152.76212762127625,-10.705022838076417],[152.75492754927552,-10.708399992616194],[152.72972729727297,-10.706711415346305],[152.70452704527048,-10.698268528996891],[152.64332643326435,-10.674628447218538],[152.58212582125822,-10.661119829059473],[152.54252542525427,-10.632414015471468],[152.54252542525427,-10.625659706391929],[152.54612546125463,-10.625659706391929],[152.549725497255,-10.623971129122054],[152.55332553325536,-10.622282551852166],[152.55332553325536,-10.618905397312403],[152.6181261812618,-10.63747974728112],[152.63252632526326,-10.635791170011231],[152.64332643326435,-10.635791170011231],[152.6721267212672,-10.656054097249822],[152.68652686526866,-10.661119829059473],[152.71532715327152,-10.65098836544017],[152.75132751327516,-10.634102592741343],[152.78372783727838,-10.622282551852166],[152.80892808928093,-10.632414015471468]]],[[[151.07371073710738,-10.605396779153338],[151.04851048510488,-10.627348283661817],[151.04491044910452,-10.63747974728112],[151.06651066510665,-10.639168324550994],[151.06291062910628,-10.644234056360645],[151.05211052110525,-10.656054097249822],[151.04851048510488,-10.661119829059473],[151.04491044910452,-10.669562715408887],[151.03051030510306,-10.671251292678775],[151.0161101611016,-10.662808406329361],[151.00531005310052,-10.642545479090757],[150.99810998109984,-10.635791170011231],[150.95490954909548,-10.635791170011231],[150.9369093690937,-10.632414015471468],[150.93330933309335,-10.647611210900408],[150.93330933309335,-10.661119829059473],[150.93330933309335,-10.67293986994865],[150.92610926109262,-10.679694179028175],[150.91530915309153,-10.652676942710059],[150.91170911709116,-10.63747974728112],[150.91530915309153,-10.618905397312403],[150.92250922509226,-10.608773933693115],[150.93330933309335,-10.600331047343701],[150.9477094770948,-10.593576738264161],[150.96570965709657,-10.591888160994287],[151.01971019710197,-10.591888160994287],[151.03051030510306,-10.593576738264161],[151.0377103771038,-10.603708201883464],[151.04851048510488,-10.605396779153338],[151.05571055710556,-10.603708201883464],[151.05931059310592,-10.596953892803924],[151.05931059310592,-10.593576738264161],[151.06651066510665,-10.598642470073813],[151.070110701107,-10.602019624613575],[151.070110701107,-10.605396779153338],[151.07371073710738,-10.605396779153338]]],[[[161.9782197821978,-9.850602739515779],[161.9638196381964,-9.838782698626602],[161.94941949419496,-9.816831194118123],[161.93861938619386,-9.789813957800007],[161.92781927819277,-9.720582289734807],[161.93141931419314,-9.707073671575742],[161.93861938619386,-9.691876476146803],[161.95301953019532,-9.690187898876914],[161.9638196381964,-9.691876476146803],[161.9782197821978,-9.686810744337151],[161.9782197821978,-9.695253630686565],[161.9782197821978,-9.700319362496217],[161.97101971019714,-9.707073671575742],[161.96741967419678,-9.713827980655282],[161.96741967419678,-9.717205135195044],[161.9638196381964,-9.720582289734807],[161.97101971019714,-9.735779485163746],[161.98181981819818,-9.816831194118123],[161.98181981819818,-9.83371696681695],[161.9782197821978,-9.850602739515779]]],[[[157.12537125371256,-8.275160146715223],[157.12897128971292,-8.308931692112878],[157.13977139771401,-8.32244031027193],[157.1541715417154,-8.329194619351469],[157.1541715417154,-8.337637505700883],[157.1217712177122,-8.320751733002055],[157.10737107371074,-8.283603033064637],[157.08937089370897,-8.249831487666981],[157.04977049770497,-8.241388601317567],[157.05337053370533,-8.238011446777804],[157.06057060570606,-8.231257137698265],[157.06417064170643,-8.227879983158502],[157.0461704617046,-8.219437096809088],[157.02817028170284,-8.205928478650023],[157.0209702097021,-8.192419860490972],[157.03537035370357,-8.185665551411432],[157.04977049770497,-8.197485592300609],[157.07497074970752,-8.199174169570497],[157.10017100171,-8.204239901380149],[157.1109711097111,-8.22450282861874],[157.11457114571147,-8.236322869507916],[157.12537125371256,-8.275160146715223]]],[[[157.20817208172082,-8.288668764874288],[157.2009720097201,-8.288668764874288],[157.19737197371973,-8.275160146715223],[157.19017190171905,-8.27178299217546],[157.18297182971833,-8.27178299217546],[157.17217172171723,-8.268405837635683],[157.16857168571687,-8.261651528556158],[157.16137161371614,-8.232945714968153],[157.15057150571505,-8.216059942269325],[157.13977139771401,-8.200862746840386],[157.12537125371256,-8.189042705951195],[157.10377103771037,-8.178911242331907],[157.1109711097111,-8.172156933252381],[157.10017100171,-8.172156933252381],[157.09657096570965,-8.168779778712604],[157.09657096570965,-8.165402624172842],[157.09657096570965,-8.158648315093316],[157.1217712177122,-8.16709120144273],[157.14697146971469,-8.165402624172842],[157.16857168571687,-8.16709120144273],[157.1865718657187,-8.185665551411432],[157.19737197371973,-8.205928478650023],[157.20457204572045,-8.232945714968153],[157.20817208172082,-8.261651528556158],[157.20817208172082,-8.288668764874288]]],[[[155.57015570155704,-7.32280256650138],[155.58455584555844,-7.331245452850794],[155.5989559895599,-7.341376916470082],[155.60615606156063,-7.353196957359259],[155.61695616956172,-7.363328420978561],[155.5989559895599,-7.383591348217152],[155.57735577355777,-7.388657080026803],[155.52695526955273,-7.383591348217152],[155.5089550895509,-7.375148461867738],[155.51615516155164,-7.35826268916891],[155.54135541355413,-7.32280256650138],[155.54855548555486,-7.3244911437712545],[155.55575555755559,-7.3244911437712545],[155.57015570155704,-7.32280256650138]]],[[[156.11736117361176,-6.917544021729526],[156.12456124561248,-6.922609753539177],[156.1461614616146,-6.9276754853488285],[156.15336153361534,-6.931052639888591],[156.14256142561425,-6.937806948968117],[156.1317613176132,-6.939495526238005],[156.12096120961212,-6.936118371698242],[156.11016110161103,-6.931052639888591],[156.11016110161103,-6.946249835317531],[156.1029610296103,-6.961447030746484],[156.09576095760957,-6.974955648905535],[156.08496084960854,-6.986775689794726],[156.08136081360817,-6.978332803445312],[156.08136081360817,-6.974955648905535],[156.0777607776078,-6.971578494365772],[156.0777607776078,-6.966512762556121],[156.07056070560708,-6.973267071635661],[156.06336063360635,-6.978332803445312],[156.05256052560526,-6.981709957985075],[156.04176041760417,-6.980021380715186],[156.059760597606,-6.969889917095898],[156.07416074160744,-6.956381298936833],[156.0777607776078,-6.947938412587419],[156.07056070560708,-6.941184103507894],[156.06696066960671,-6.934429794428354],[156.06336063360635,-6.924298330809066],[156.06696066960671,-6.910789712650001],[156.07056070560708,-6.905723980840349],[156.08136081360817,-6.904035403570461],[156.08856088560884,-6.902346826300587],[156.08136081360817,-6.895592517221061],[156.07416074160744,-6.89052678541141],[156.07056070560708,-6.89052678541141],[156.05616056160562,-6.871952435442694],[156.04536045360453,-6.851689508204103],[156.0489604896049,-6.831426580965513],[156.0777607776078,-6.814540808266685],[156.09936099360993,-6.814540808266685],[156.09936099360993,-6.82129511734621],[156.08496084960854,-6.824672271885987],[156.07416074160744,-6.833115158235401],[156.06696066960671,-6.844935199124578],[156.06336063360635,-6.860132394553517],[156.07416074160744,-6.868575280902931],[156.08856088560884,-6.871952435442694],[156.1029610296103,-6.878706744522233],[156.09936099360993,-6.89052678541141],[156.1137611376114,-6.912478289919875],[156.11736117361176,-6.917544021729526]]],[[[148.10008100081,-5.375872974326626],[148.12528125281256,-5.391070169755565],[148.14688146881468,-5.41977598334357],[148.14688146881468,-5.448481796931588],[148.1216812168122,-5.465367569630402],[148.09288092880928,-5.456924683281002],[148.07488074880752,-5.428218869692984],[148.07848078480788,-5.396135901565216],[148.10008100081,-5.375872974326626]]],[[[147.6068760687607,-5.28637837902285],[147.62487624876252,-5.289755533562612],[147.63207632076325,-5.298198419912026],[147.63927639276392,-5.311707038071077],[147.64647646476465,-5.3218385016903795],[147.63927639276392,-5.338724274389207],[147.62847628476288,-5.347167160738621],[147.59967599675997,-5.362364356167561],[147.57807578075784,-5.335347119849445],[147.57807578075784,-5.333658542579556],[147.56727567275675,-5.335347119849445],[147.5636756367564,-5.335347119849445],[147.5636756367564,-5.3302813880397935],[147.5636756367564,-5.326904233500031],[147.5636756367564,-5.3218385016903795],[147.5636756367564,-5.318461347150617],[147.5636756367564,-5.308329883531314],[147.57447574475748,-5.296509842642138],[147.59247592475924,-5.289755533562612],[147.6068760687607,-5.28637837902285]]],[[[149.51849518495186,-4.643030439197531],[149.53289532895332,-4.649784748277071],[149.54729547295472,-4.659916211896359],[149.56169561695617,-4.673424830055424],[149.56529565295654,-4.686933448214489],[149.56529565295654,-4.703819220913317],[149.56529565295654,-4.712262107262731],[149.56169561695617,-4.717327839072368],[149.55089550895508,-4.720704993612145],[149.54729547295472,-4.715639261802494],[149.54729547295472,-4.70719637545308],[149.5436954369544,-4.70044206637354],[149.53649536495368,-4.690310602754252],[149.53289532895332,-4.678490561865075],[149.5256952569526,-4.668359098245773],[149.51129511295113,-4.663293366436122],[149.49689496894968,-4.666670520975899],[149.49329493294937,-4.676801984595187],[149.49689496894968,-4.686933448214489],[149.51129511295113,-4.691999180024126],[149.50769507695077,-4.698753489103666],[149.49689496894968,-4.703819220913317],[149.4788947889479,-4.712262107262731],[149.45369453694536,-4.691999180024126],[149.46449464494646,-4.6700476755156615],[149.49329493294937,-4.651473325546945],[149.51849518495186,-4.643030439197531]]],[[[145.07965079650796,-4.046962662928948],[145.09765097650978,-4.055405549278362],[145.1048510485105,-4.0672255901675385],[145.10845108451088,-4.082422785596478],[145.1048510485105,-4.100997135565194],[145.10125101251015,-4.116194330994134],[145.09045090450905,-4.1246372173435475],[145.0760507605076,-4.12801437188331],[145.05445054450547,-4.12801437188331],[145.04005040050401,-4.122948640073659],[145.02925029250292,-4.10775144464472],[145.02565025650256,-4.089177094676003],[145.0220502205022,-4.070602744707301],[145.02565025650256,-4.058782703818125],[145.03645036450365,-4.055405549278362],[145.04365043650438,-4.058782703818125],[145.04365043650438,-4.060471281087999],[145.0616506165062,-4.046962662928948],[145.06885068850687,-4.043585508389171],[145.07965079650796,-4.046962662928948]]],[[[131.44631446314463,-4.0368311993096455],[131.45351453514536,-4.055405549278362],[131.44271442714427,-4.06553701289765],[131.42111421114214,-4.062159858357887],[131.39951399513996,-4.046962662928948],[131.39231392313923,-4.031765467499994],[131.3707137071371,-3.9844853039432877],[131.36711367113674,-3.96759953124446],[131.3707137071371,-3.9625337994348087],[131.37791377913783,-3.9574680676251575],[131.3959139591396,-3.9524023358155063],[131.41751417514178,-3.959156644895046],[131.42831428314287,-3.9827967266733992],[131.43551435514354,-4.013191117531292],[131.44631446314463,-4.0368311993096455]]],[[[123.17703177031774,-3.5741610273617823],[123.17703177031774,-3.6011782636799126],[123.15903159031592,-3.6045554182196753],[123.1410314103141,-3.602866840949787],[123.130231302313,-3.6180640363787404],[123.11943119431197,-3.629884077267917],[123.09783097830979,-3.6197526136486147],[123.07983079830797,-3.602866840949787],[123.06543065430657,-3.589358222790736],[123.0618306183062,-3.580915336441322],[123.0618306183062,-3.5707838728220196],[123.06903069030693,-3.567406718282257],[123.08343083430833,-3.564029563742494],[123.1410314103141,-3.5387009046942524],[123.15903159031592,-3.545455213773778],[123.16983169831701,-3.558963831932843],[123.17703177031774,-3.5741610273617823]]],[[[150.99090990909912,-2.9578303238546084],[151.0017100171002,-2.9595189011244827],[151.01251012510124,-2.9578303238546084],[151.01971019710197,-2.9595189011244827],[151.0269102691027,-2.9713389420136593],[151.00891008910088,-2.974716096553422],[150.99090990909912,-2.9848475601727245],[150.98730987309875,-2.969650364743785],[150.97650976509766,-2.966273210204008],[150.95130951309517,-2.9713389420136593],[150.9081090810908,-2.9713389420136593],[150.85770857708576,-2.9595189011244827],[150.83610836108363,-2.9595189011244827],[150.82170821708218,-2.978093251093199],[150.80730807308072,-2.9713389420136593],[150.79650796507968,-2.974716096553422],[150.78930789307896,-2.9814704056329617],[150.7749077490775,-2.9848475601727245],[150.77130771307714,-2.9797818283630733],[150.77850778507786,-2.9679617874738966],[150.80010800108005,-2.9510760147750688],[150.8181081810818,-2.9527645920449572],[150.839708397084,-2.9375673966160036],[150.8829088290883,-2.903795851218362],[150.94410944109444,-2.9240587784569527],[150.96570965709657,-2.9358788193461294],[150.9837098370984,-2.9527645920449572],[150.99090990909912,-2.9578303238546084]]],[[[107.09927099270993,-2.859892842201404],[107.09567095670957,-2.885221501249646],[107.0920709207092,-2.903795851218362],[107.08487084870848,-2.9105501602978876],[107.07047070470708,-2.907173005758125],[107.05967059670598,-2.9021072739484737],[107.04527045270453,-2.8970415421388225],[107.03447034470344,-2.8885986557894086],[107.01647016470167,-2.8801557694399946],[107.03087030870307,-2.8582042649315156],[107.04527045270453,-2.841318492232702],[107.05967059670598,-2.8311870286133995],[107.05967059670598,-2.827809874073637],[107.06327063270635,-2.8227441422639856],[107.07407074070744,-2.821055564994097],[107.0776707767078,-2.8227441422639856],[107.08487084870848,-2.8396299149628135],[107.09927099270993,-2.859892842201404]]],[[[134.5819458194582,-2.415797020222257],[134.5819458194582,-2.437748524730736],[134.5819458194582,-2.4445028338102617],[134.56754567545676,-2.451257142889787],[134.549545495455,-2.451257142889787],[134.5387453874539,-2.44619141108015],[134.53514535145354,-2.4360599474608478],[134.54594545945463,-2.4225513293017826],[134.52074520745208,-2.4073541338728432],[134.52434524345244,-2.392156938443904],[134.5531455314553,-2.366828279395662],[134.56034560345603,-2.3516310839667085],[134.5639456394564,-2.3296795794582437],[134.56754567545676,-2.2925308795208252],[134.57834578345785,-2.2992851886003507],[134.5819458194582,-2.3077280749497646],[134.5819458194582,-2.3195481158389413],[134.5819458194582,-2.3330567339980064],[134.5819458194582,-2.415797020222257]]],[[[134.23634236342366,-1.7386775349992973],[134.24714247142475,-1.7437432668089343],[134.25074250742506,-1.7623176167776506],[134.2435424354244,-1.7960891621753063],[134.23634236342366,-1.799466316715069],[134.21834218342184,-1.8129749348741342],[134.20754207542075,-1.8264835530331993],[134.22554225542257,-1.8484350575416642],[134.2111421114211,-1.8838951802092083],[134.19314193141935,-1.9210438801466267],[134.17514175141753,-1.9429953846551058],[134.16074160741607,-1.895715221098385],[134.16074160741607,-1.8771408711296687],[134.1679416794168,-1.829860707572962],[134.22554225542257,-1.7437432668089343],[134.23634236342366,-1.7386775349992973]]],[[[135.2839528395284,-1.4769480581674799],[135.29835298352987,-1.4803252127072426],[135.30555305553054,-1.4853909445168938],[135.31635316353163,-1.487079521786768],[135.33435334353345,-1.4837023672470053],[135.31275312753127,-1.5107196035651356],[135.27675276752768,-1.5225396444543122],[135.1867518675187,-1.525916798994075],[135.10395103951043,-1.517473912644661],[135.0967509675097,-1.509031026295247],[135.0967509675097,-1.4887680990566565],[135.10755107551074,-1.473570903627703],[135.12915129151293,-1.4769480581674799],[135.1507515075151,-1.4837023672470053],[135.20475204752051,-1.4769480581674799],[135.22635226352264,-1.487079521786768],[135.2407524075241,-1.4904566763265308],[135.2839528395284,-1.4769480581674799]]],[[[127.69147691476917,-1.213530004065774],[127.6986769867699,-1.2304157767646018],[127.69147691476917,-1.248990126733304],[127.68067680676808,-1.2641873221622575],[127.66627666276662,-1.2726302085116714],[127.64467644676449,-1.270941631241783],[127.59067590675909,-1.243924394923667],[127.55107551075514,-1.2371700858441272],[127.53307533075332,-1.2371700858441272],[127.52227522275223,-1.2473015494634296],[127.5150751507515,-1.262498744892369],[127.49707497074974,-1.2591215903526063],[127.47907479074792,-1.248990126733304],[127.46467464674646,-1.243924394923667],[127.4610746107461,-1.235481508574253],[127.47547475474755,-1.2169071586055367],[127.5006750067501,-1.1898899222874206],[127.5150751507515,-1.1797584586681182],[127.53307533075332,-1.1730041495885928],[127.54747547475478,-1.1713155723187043],[127.60867608676085,-1.1932670768271834],[127.62667626676267,-1.2067756949862485],[127.67347673476735,-1.2101528495260112],[127.69147691476917,-1.213530004065774]]],[[[129.9558995589956,-1.1628726859692904],[129.95949959499598,-1.1763813041283555],[129.95229952299525,-1.1898899222874206],[129.9270992709927,-1.2101528495260112],[129.9270992709927,-1.20508711771636],[129.92349923499233,-1.2000213859067088],[129.91989919899203,-1.196644231366946],[129.91989919899203,-1.1898899222874206],[129.88029880298802,-1.2202843131452994],[129.8586985869859,-1.2337929313043645],[129.82989829898298,-1.2371700858441272],[129.8730987309873,-1.2101528495260112],[129.88029880298802,-1.2033985404464715],[129.8730987309873,-1.196644231366946],[129.86229862298626,-1.2000213859067088],[129.8478984789848,-1.2067756949862485],[129.84429844298444,-1.2101528495260112],[129.83349833498335,-1.2118414267958855],[129.76149761497618,-1.2101528495260112],[129.74349743497436,-1.2000213859067088],[129.74709747097472,-1.1865127677476437],[129.7686976869769,-1.1713155723187043],[129.8586985869859,-1.1426097587306998],[129.88029880298802,-1.1409211814608113],[129.89469894698948,-1.1544297996198765],[129.91629916299166,-1.156118376889765],[129.9378993789938,-1.156118376889765],[129.9558995589956,-1.1628726859692904]]],[[[122.02862028620285,-0.33209266918700564],[122.04302043020431,-0.33546982372676837],[122.05022050220504,-0.34222413280630803],[122.0538205382054,-0.35573275096535895],[122.0538205382054,-0.37430710093407527],[122.04302043020431,-0.3928814509027774],[122.02502025020249,-0.4063900690618425],[122.00702007020072,-0.4114558008714937],[121.98541985419854,-0.4013243372521913],[121.96381963819641,-0.41314437814136795],[121.93141931419314,-0.4148329554112564],[121.89901899018992,-0.40807864633173097],[121.87381873818737,-0.39457002817266584],[121.85941859418597,-0.377684255473838],[121.85941859418597,-0.3675527918545356],[121.8666186661867,-0.3574213282352474],[121.8666186661867,-0.34222413280630803],[121.87381873818737,-0.33209266918700564],[121.8810188101881,-0.33040409191711717],[121.90261902619028,-0.33209266918700564],[121.90261902619028,-0.3337812464568941],[121.90981909819101,-0.33715840099665684],[121.91701917019174,-0.34053555553641957],[121.92421924219241,-0.3388469782665311],[121.92421924219241,-0.3337812464568941],[121.92421924219241,-0.31689547375806626],[121.92781927819277,-0.31182974194841506],[121.96741967419678,-0.3152068964881778],[121.97821978219781,-0.3185840510279405],[122.00342003420036,-0.33040409191711717],[122.01422014220145,-0.33209266918700564],[122.02862028620285,-0.33209266918700564]]],[[[122.3706237062371,-0.26454957839169424],[122.36342363423637,-0.2814353510905221],[122.36702367023673,-0.3050754328688754],[122.37422374223746,-0.3253383601074802],[122.38142381423813,-0.3388469782665311],[122.37422374223746,-0.347289864615945],[122.35262352623528,-0.32196120556770325],[122.32022320223206,-0.2577952693121688],[122.29502295022951,-0.2375323420735782],[122.28782287822878,-0.2375323420735782],[122.27342273422738,-0.24428665115310366],[122.26622266222665,-0.24428665115310366],[122.25902259022592,-0.24090949661334093],[122.24462244622447,-0.22402372391451308],[122.23022230222301,-0.20713795121568523],[122.22662226622265,-0.1986950648662713],[122.23022230222301,-0.18856360124696891],[122.2410224102241,-0.19531791032650858],[122.26622266222665,-0.20544937394579676],[122.27342273422738,-0.20544937394579676],[122.27702277022769,-0.2138922602952107],[122.28782287822878,-0.2189579921048619],[122.32742327423273,-0.23077803299403854],[122.34542345423455,-0.23922091934345247],[122.359823598236,-0.24935238296275486],[122.3706237062371,-0.26454957839169424]]],[[[121.57501575015749,-0.18180929216744346],[121.56781567815682,-0.14466059223002503],[121.59661596615967,-0.12439766499143445],[121.63261632616326,-0.12439766499143445],[121.65061650616508,-0.14803774676978776],[121.64341643416435,-0.17674356035779226],[121.62541625416253,-0.1986950648662713],[121.60021600216004,-0.2037607966759225],[121.57501575015749,-0.18180929216744346]]],[[[104.49644496444967,0.07147729831496008],[104.48564485644857,0.06641156650530888],[104.47844478444784,0.06472298923543462],[104.47124471244712,0.06303441196554616],[104.47844478444784,0.044460061996829836],[104.48204482044821,0.03601717564743012],[104.48204482044821,0.024197134758239258],[104.47484474844748,0.024197134758239258],[104.46044460444608,0.047837216536606775],[104.41004410044104,0.09174022555355066],[104.40284402844031,0.1187574618716809],[104.40644406444068,0.1187574618716809],[104.41364413644135,0.11538030733190396],[104.41724417244171,0.11200315279214124],[104.4280442804428,0.10693742098249004],[104.42444424444244,0.11200315279214124],[104.41004410044104,0.15084042999944813],[104.40644406444068,0.16097189361873632],[104.40644406444068,0.1711033572380387],[104.41364413644135,0.1761690890476899],[104.42084420844208,0.17279193450792718],[104.4280442804428,0.16434904815851326],[104.4388443884439,0.14577469818979694],[104.48924489244894,0.08329733920413673],[104.49644496444967,0.07147729831496008]]],[[[127.39987399874002,0.3787983614336099],[127.41787417874178,0.3534697023853681],[127.41787417874178,0.31294384790818697],[127.39627396273966,0.28086087978041974],[127.35667356673565,0.28423803432018246],[127.34587345873462,0.2960580752093591],[127.34227342273425,0.31463242517807544],[127.33867338673389,0.33320677514677755],[127.33867338673389,0.3484039705757169],[127.34227342273425,0.36191258873478205],[127.36027360273602,0.37204405235408444],[127.37827378273784,0.37710978416372143],[127.39987399874002,0.3787983614336099]]],[[[104.28404284042841,0.7080709290607388],[104.27324273242732,0.7030051972510876],[104.26604266042659,0.7030051972510876],[104.25524255242556,0.704693774520976],[104.23724237242374,0.718202392680027],[104.21564215642155,0.7215795472198039],[104.20484204842052,0.7266452790294409],[104.19044190441906,0.7452196289981572],[104.1868418684187,0.7637939789668593],[104.19404194041942,0.7806797516656871],[104.21564215642155,0.7908112152849895],[104.23364233642337,0.7857454834753383],[104.24444244442446,0.7857454834753383],[104.25164251642519,0.7941883698247523],[104.25524255242556,0.797565524364515],[104.26244262442623,0.7992541016344035],[104.27324273242732,0.7958769470946407],[104.27684276842768,0.7874340607452268],[104.27684276842768,0.7637939789668593],[104.28044280442805,0.7469082062680457],[104.28764287642878,0.7300224335692178],[104.29844298442987,0.7080709290607388],[104.28404284042841,0.7080709290607388]]],[[[125.29385293852937,1.5523595640020886],[125.3010530105301,1.5523595640020886],[125.3010530105301,1.5304080594936096],[125.29745297452973,1.5033908231754936],[125.29385293852937,1.4729964323176006],[125.29025290252906,1.4645535459681867],[125.2758527585276,1.45273350507901],[125.27225272252724,1.4459791959994703],[125.26865268652688,1.413896227871703],[125.2470524705247,1.403764764252415],[125.21465214652147,1.391944723363224],[125.18585185851862,1.3902561460933498],[125.17145171451716,1.403764764252415],[125.17505175051753,1.4155848051415916],[125.18225182251825,1.4206505369512428],[125.20385203852038,1.4274048460307682],[125.25065250652506,1.4493563505392473],[125.29385293852937,1.5523595640020886]]],[[[125.43065430654309,2.3882053125940246],[125.45225452254522,2.378073848974722],[125.45585455854558,2.367942385355434],[125.45225452254522,2.33248226268789],[125.42345423454236,2.3172850672589504],[125.39105391053914,2.3257279536083644],[125.36945369453696,2.3476794581168434],[125.36945369453696,2.3746966944349595],[125.38025380253805,2.386516735324136],[125.39825398253981,2.3915824671337873],[125.41625416254163,2.3915824671337873],[125.43065430654309,2.3882053125940246]]],[[[120.58860588605887,6.380001978596724],[120.5958059580596,6.376624824056961],[120.59940599405996,6.368181937707547],[120.60300603006033,6.358050474088245],[120.60660606606069,6.349607587738831],[120.60300603006033,6.32934466050024],[120.58140581405814,6.261801569704929],[120.57780577805778,6.2516701060856406],[120.57060570605705,6.243227219736227],[120.55980559805602,6.239850065196464],[120.54540545405456,6.238161487926575],[120.50580505805061,6.244915797006101],[120.49500495004952,6.249981528815752],[120.48780487804879,6.2601129924350545],[120.49140491404916,6.26686730151458],[120.50220502205025,6.271933033324231],[120.51660516605165,6.271933033324231],[120.52380523805238,6.276998765133882],[120.5310053100531,6.288818806023059],[120.53820538205383,6.300638846912236],[120.53820538205383,6.310770310531538],[120.5418054180542,6.3175246196110635],[120.55620556205565,6.341164701389417],[120.56340563405632,6.361427628628007],[120.57060570605705,6.37155909224731],[120.57780577805778,6.378313401326835],[120.58860588605887,6.380001978596724]]],[[[118.53658536585368,7.0064641457232],[118.52218522185223,7.01321845480274],[118.51858518585186,7.003086991183437],[118.52938529385295,6.979446909405084],[118.51858518585186,6.97100402305567],[118.5041850418504,6.97100402305567],[118.47538475384755,6.979446909405084],[118.4465844658447,6.982824063944847],[118.4357843578436,6.989578373024372],[118.42858428584287,7.0064641457232],[118.42858428584287,7.018284186612377],[118.43218432184324,7.0267270729617906],[118.43938439384397,7.0351699593112045],[118.45738457384573,7.040235691120856],[118.47538475384755,7.036858536581093],[118.48618486184864,7.040235691120856],[118.49698496984973,7.045301422930507],[118.51138511385113,7.046990000200381],[118.52578525785259,7.043612845660618],[118.53298532985332,7.0351699593112045],[118.54378543785441,7.01321845480274],[118.53658536585368,7.0064641457232]]],[[[122.23382233822338,14.79755966896198],[122.24822248222483,14.787428205342678],[122.25542255422556,14.767165278104088],[122.25542255422556,14.745213773595609],[122.2410224102241,14.736770887246195],[122.2410224102241,14.741836619055846],[122.16182161821621,14.79755966896198],[122.13662136621366,14.802625400771618],[122.12222122221226,14.807691132581269],[122.11502115021153,14.814445441660794],[122.11142111421117,14.826265482549985],[122.10422104221044,14.838085523439162],[122.10422104221044,14.843151255248813],[122.12222122221226,14.838085523439162],[122.12582125821257,14.843151255248813],[122.13662136621366,14.851594141598227],[122.14022140221402,14.839774100709036],[122.14742147421475,14.83301979162951],[122.15822158221584,14.834708368899399],[122.16902169021694,14.838085523439162],[122.20502205022052,14.838085523439162],[122.19782197821979,14.83301979162951],[122.19422194221943,14.824576905280097],[122.19062190621906,14.814445441660794],[122.19782197821979,14.804313978041506],[122.20502205022052,14.795871091692092],[122.21582215822161,14.795871091692092],[122.23382233822338,14.79755966896198]]],[[[121.38781387813879,18.90249101204681],[121.4166141661417,18.90755674385646],[121.4310143101431,18.905868166586586],[121.44181441814419,18.895736702967284],[121.44901449014492,18.88898239388776],[121.45981459814601,18.883916662078107],[121.46701467014674,18.88222808480822],[121.47781477814777,18.88222808480822],[121.45261452614528,18.86534231210939],[121.4310143101431,18.856899425759977],[121.4058140581406,18.85014511668045],[121.31941319413193,18.843390807600926],[121.29421294212943,18.84676796214069],[121.27981279812798,18.861965157569628],[121.27621276212761,18.875473775728693],[121.27981279812798,18.880539507538344],[121.2978129781298,18.88222808480822],[121.3518135181352,18.899113857507047],[121.38781387813879,18.90249101204681]]],[[[121.97821978219781,19.577921919999895],[121.98181981819818,19.574544765460132],[121.99261992619927,19.57116761092037],[121.99621996219963,19.56441330184083],[121.99621996219963,19.561036147301067],[121.99261992619927,19.547527529142002],[121.98541985419854,19.513755983744346],[121.97821978219781,19.498558788315407],[121.96021960219605,19.49180447923588],[121.94581945819459,19.49687021104552],[121.92421924219241,19.518821715553997],[121.90621906219064,19.530641756443174],[121.89901899018992,19.537396065522714],[121.89541895418955,19.545838951872128],[121.89541895418955,19.557658992761304],[121.89901899018992,19.55934757003118],[121.90621906219064,19.55934757003118],[121.92781927819277,19.562724724570955],[121.94221942219423,19.55934757003118],[121.94941949419496,19.561036147301067],[121.95661956619568,19.56441330184083],[121.97101971019714,19.574544765460132],[121.97821978219781,19.577921919999895]]],[[[-79.83979839798397,53.14514946799807],[-79.80379803798037,53.126575118029336],[-79.80019800198002,53.121509386219714],[-79.79659796597966,53.11137792260041],[-79.7929979299793,53.108000768060634],[-79.79659796597966,53.104623613520886],[-79.80739807398074,53.09786930444133],[-79.81819818198181,53.09111499536181],[-79.83259832598326,53.08773784082206],[-79.85059850598506,53.08436068628228],[-79.88659886598866,53.09280357263168],[-79.91179911799118,53.08942641809193],[-79.92979929799297,53.09449214990158],[-79.9369993699937,53.12488654075946],[-79.92979929799297,53.15021519980772],[-79.91539915399153,53.170478127046295],[-79.89379893798937,53.1806095906656],[-79.85419854198541,53.16878954977642],[-79.85059850598506,53.162035240696895],[-79.8469984699847,53.15359235434747],[-79.83979839798397,53.14514946799807]]],[[[-79.90459904599045,56.89379100713765],[-79.89739897398974,56.90392247075695],[-79.87579875798758,56.922496820725655],[-79.85779857798578,56.93431686161483],[-79.85059850598506,56.93938259342448],[-79.84339843398433,56.93769401615461],[-79.82539825398254,56.927562552535306],[-79.81819818198181,56.94107117069436],[-79.80739807398074,56.95120263431366],[-79.79659796597966,56.95120263431366],[-79.78579785797858,56.94107117069436],[-79.76419764197641,56.92587397526543],[-79.7569975699757,56.91574251164613],[-79.75339753397533,56.90392247075695],[-79.74979749797498,56.892102429867776],[-79.73179731797318,56.85326515266047],[-79.72459724597246,56.82118218453269],[-79.73179731797318,56.802607834563986],[-79.74979749797498,56.792476370944684],[-79.78219782197822,56.79078779367481],[-79.78939789397893,56.79585352548446],[-79.78939789397893,56.80767356637364],[-79.78579785797858,56.82624791634234],[-79.78939789397893,56.83637937996164],[-79.79659796597966,56.865085193549646],[-79.80019800198002,56.87690523443882],[-79.8109981099811,56.89716816167743],[-79.87939879398793,56.88534812078822],[-79.90459904599045,56.89379100713765]]],[[[-21.38241382413824,77.86423212181089],[-21.393213932139304,77.87267500816029],[-21.404014040140396,77.88280647177959],[-21.404014040140396,77.89293793539889],[-21.396813968139668,77.90475797628807],[-21.368013680136784,77.92670948079655],[-21.3320133201332,77.94528383076525],[-21.296012960129588,77.95879244892433],[-21.24921249212491,77.96554675800385],[-21.23121231212312,77.97567822162313],[-21.126811268112675,77.99087541705208],[-21.108811088110883,77.9891868397822],[-21.087210872108727,77.98412110797256],[-21.094410944109427,77.98243253070268],[-21.094410944109427,77.97736679889303],[-21.09801098010979,77.97398964435325],[-21.101611016110155,77.9706124898135],[-21.12321123211231,77.9689239125436],[-21.152011520115195,77.9604810261942],[-21.17361173611735,77.94697240803512],[-21.162811628116287,77.9300866353363],[-21.18081180811808,77.91995517171702],[-21.216812168121663,77.90982370809772],[-21.234812348123484,77.89800366720854],[-21.238412384123848,77.89462651266876],[-21.238412384123848,77.88956078085911],[-21.238412384123848,77.87774073996994],[-21.242012420124183,77.87605216270006],[-21.328413284132836,77.85578923546146],[-21.353613536135356,77.85578923546146],[-21.38241382413824,77.86423212181089]]],[[[-19.44559445594456,78.20025899851754],[-19.4959949599496,78.20194757578741],[-19.51399513995139,78.21039046213684],[-19.499594995949963,78.22896481210554],[-19.557195571955702,78.24922773934415],[-19.629196291962927,78.25429347115377],[-19.64719647196472,78.26442493477307],[-19.657996579965783,78.2829992847418],[-19.657996579965783,78.30663936652016],[-19.654396543965447,78.33027944829851],[-19.64719647196472,78.35054237553709],[-19.629196291962927,78.36405099369617],[-19.607596075960743,78.36067383915639],[-19.560795607956067,78.33872233464791],[-19.47079470794708,78.31001652105991],[-19.441994419944194,78.29313074836108],[-19.431194311943102,78.27962213020203],[-19.402394023940246,78.23740769845497],[-19.391593915939154,78.2238990802959],[-19.380793807938062,78.21714477121637],[-19.369993699936998,78.2154561939465],[-19.351993519935206,78.2154561939465],[-19.44559445594456,78.20025899851754]]],[[[-67.71127711277113,-79.13630527734267],[-67.70047700477005,-79.13461670007278],[-67.60327603276032,-79.13630527734267],[-67.89127891278912,-79.15994535912102],[-68.18288182881828,-79.18358544089938],[-68.22608226082261,-79.16838824547044],[-68.03528035280353,-79.13461670007278],[-67.7220772207722,-79.11941950464384],[-67.68967689676896,-79.12448523645348],[-67.71127711277113,-79.13630527734267]]],[[[-75.5881558815588,-78.75806396888893],[-75.50535505355053,-78.73442388711058],[-75.44775447754478,-78.72935815530093],[-75.39375393753937,-78.74117819619012],[-75.39735397353974,-78.74117819619012],[-75.39735397353974,-78.74286677346],[-75.39735397353974,-78.74455535072988],[-75.39375393753937,-78.74455535072988],[-75.44415444154441,-78.76144112342871],[-75.46575465754657,-78.771572587048],[-75.4729547295473,-78.78508120520706],[-75.49815498154982,-78.79014693701671],[-75.51615516155161,-78.79690124609624],[-75.52335523355234,-78.80534413244565],[-75.52695526955269,-78.81716417333483],[-75.51975519755197,-78.82391848241437],[-75.48735487354872,-78.8408042551132],[-75.48015480154801,-78.85262429600238],[-75.49095490954909,-78.86275575962166],[-75.51255512555124,-78.86613291416143],[-75.5521555215552,-78.86444433689155],[-75.60255602556025,-78.85431287327225],[-75.62775627756277,-78.84586998692284],[-75.64935649356494,-78.83236136876378],[-75.66015660156602,-78.8104098642553],[-75.64215642156421,-78.78845835974683],[-75.61335613356133,-78.76988400977812],[-75.5881558815588,-78.75806396888893]]],[[[-71.79731797317973,-73.21953052367368],[-71.85491854918548,-73.24485918272192],[-71.91971919719197,-73.25836780088099],[-71.98811988119881,-73.25836780088099],[-72.04932049320493,-73.24317060545205],[-72.0961209612096,-73.21446479186405],[-72.08172081720816,-73.19420186462546],[-72.03132031320312,-73.18407040100615],[-71.98091980919808,-73.18069324646639],[-71.88731887318873,-73.1891361328158],[-71.84051840518404,-73.20095617370498],[-71.79731797317973,-73.21953052367368]]],[[[-98.13158131581315,-72.69269441547029],[-98.04158041580415,-72.66230002461239],[-97.94077940779408,-72.65723429280276],[-97.749977499775,-72.682562951851],[-97.83277832778327,-72.71633449724865],[-97.94077940779408,-72.72477738359805],[-98.04878048780488,-72.71464591997876],[-98.13158131581315,-72.69269441547029]]],[[[-60.774007740077394,-72.56267396568931],[-60.799207992079914,-72.57618258384838],[-60.8280082800828,-72.58462547019779],[-60.94680946809467,-72.59813408835686],[-60.96840968409684,-72.59137977927733],[-60.9540095400954,-72.57111685203873],[-60.9180091800918,-72.5457881929905],[-60.91080910809107,-72.54072246118085],[-60.84240842408424,-72.5457881929905],[-60.774007740077394,-72.56267396568931]]],[[[-70.55170551705517,-72.22158135717301],[-70.44730447304472,-72.22833566625255],[-70.41850418504184,-72.23846712987184],[-70.53730537305373,-72.27899298434903],[-70.60210602106021,-72.2806815616189],[-70.65250652506525,-72.25028717076103],[-70.60930609306092,-72.23171282079231],[-70.5841058410584,-72.22495851171279],[-70.55170551705517,-72.22158135717301]]],[[[-60.259202592025915,-72.2046955844742],[-60.23760237602376,-72.17767834815606],[-60.18720187201872,-72.17598977088618],[-60.133201332013314,-72.192875543585],[-60.108001080010794,-72.2232699344429],[-60.1260012600126,-72.2519757480309],[-60.18000180001799,-72.25535290257066],[-60.23760237602376,-72.23846712987184],[-60.259202592025915,-72.2046955844742]]],[[[-70.76770767707677,-70.30335757858627],[-70.76410764107641,-70.28309465134768],[-70.76050760507604,-70.26452030137897],[-70.7461074610746,-70.24932310595003],[-70.72090720907208,-70.24088021960061],[-70.69930699306992,-70.23919164233072],[-70.67770677706777,-70.24088021960061],[-70.65250652506525,-70.24594595141025],[-70.63090630906309,-70.25438883775968],[-70.64170641706417,-70.2611431468392],[-70.64890648906488,-70.26789745591873],[-70.65250652506525,-70.27634034226814],[-70.65250652506525,-70.28647180588744],[-70.64890648906488,-70.29322611496697],[-70.6381063810638,-70.30166900131638],[-70.6381063810638,-70.30673473312604],[-70.64890648906488,-70.31855477401521],[-70.66690666906669,-70.32699766036463],[-70.70290702907029,-70.33375196944415],[-70.73890738907389,-70.33375196944415],[-70.77490774907749,-70.32699766036463],[-70.76770767707677,-70.30335757858627]]],[[[-67.08487084870848,-67.83296903274788],[-67.10287102871028,-67.84985480544671],[-67.1280712807128,-67.86505200087565],[-67.17847178471784,-67.88531492811424],[-67.21087210872108,-67.89206923719377],[-67.24687246872469,-67.89375781446365],[-67.27567275672756,-67.88362635084437],[-67.290072900729,-67.87687204176483],[-67.29367293672937,-67.86842915541541],[-67.2540725407254,-67.84985480544671],[-67.2360723607236,-67.83465761001776],[-67.23247232472325,-67.831280455478],[-67.33687336873368,-67.81777183731893],[-67.2360723607236,-67.79750891008034],[-67.18567185671856,-67.79413175554058],[-67.14967149671496,-67.79919748735023],[-67.13527135271352,-67.80257464188999],[-67.08487084870848,-67.83296903274788]]],[[[-64.95364953649536,-67.66073415121984],[-64.94644946449463,-67.65904557394997],[-64.93924939249392,-67.64891411033067],[-64.9320493204932,-67.63709406944149],[-64.92844928449284,-67.62865118309207],[-64.92844928449284,-67.62020829674266],[-64.9320493204932,-67.61176541039325],[-64.93924939249392,-67.59825679223418],[-64.8960489604896,-67.59994536950407],[-64.75564755647557,-67.61514256493301],[-64.76284762847628,-67.61007683312337],[-64.77724777247772,-67.59150248315466],[-64.74844748447484,-67.59150248315466],[-64.58644586445864,-67.61007683312337],[-64.56484564845648,-67.62020829674266],[-64.65124651246512,-67.66073415121984],[-64.67644676446764,-67.66917703756926],[-64.70884708847088,-67.6742427693789],[-64.73764737647376,-67.6742427693789],[-64.76284762847628,-67.6641113057596],[-64.74484744847447,-67.65229126487043],[-64.77364773647736,-67.64215980125114],[-64.79884798847988,-67.63709406944149],[-64.82764827648276,-67.64047122398125],[-64.90324903249032,-67.66579988302949],[-64.92844928449284,-67.66748846029938],[-64.95364953649536,-67.66073415121984]]],[[[-66.81126811268112,-67.52395939235934],[-66.82926829268293,-67.53409085597865],[-66.85086850868508,-67.54253374232806],[-66.8760687606876,-67.54422231959794],[-66.92646926469264,-67.56955097864618],[-66.99846998469984,-67.59150248315466],[-67.08487084870848,-67.60163394677394],[-67.16047160471604,-67.5881253286149],[-67.08127081270813,-67.557730937757],[-67.02367023670236,-67.54591089686782],[-67.00567005670057,-67.53915658778828],[-66.99126991269912,-67.52564796962923],[-66.9840698406984,-67.52058223781958],[-66.96966969669697,-67.51720508327982],[-66.93366933669336,-67.51213935147017],[-66.89406894068941,-67.51213935147017],[-66.81126811268112,-67.52395939235934]]],[[[-67.57447574475745,-67.2149497519708],[-67.62487624876249,-67.25209845190824],[-67.69327693276932,-67.284181420036],[-67.76167761677617,-67.2943128836553],[-67.80847808478084,-67.26391849279742],[-67.70047700477005,-67.21326117470093],[-67.67167671676717,-67.20481828835152],[-67.63567635676357,-67.19975255654187],[-67.60327603276032,-67.20144113381176],[-67.57447574475745,-67.2149497519708]]],[[[-65.31725317253172,-65.86577651333454],[-65.34245342453424,-65.84213643155618],[-65.3460534605346,-65.83875927701641],[-65.30645306453064,-65.83707069974653],[-65.24885248852488,-65.84213643155618],[-65.19845198451983,-65.85564504971524],[-65.19485194851949,-65.88435086330324],[-65.20565205652056,-65.89448232692254],[-65.220052200522,-65.8995480587322],[-65.2380523805238,-65.90123663600207],[-65.25245252452524,-65.8995480587322],[-65.26685266852668,-65.89617090419242],[-65.28125281252812,-65.89110517238278],[-65.30645306453064,-65.87590797695384],[-65.31725317253172,-65.86577651333454]]],[[[-65.5260552605526,-65.47233800945187],[-65.54765547655477,-65.48753520488081],[-65.57645576455764,-65.4976666685001],[-65.65925659256592,-65.51117528665917],[-65.68445684456844,-65.50948670938928],[-65.70965709657096,-65.50104382303988],[-65.73125731257312,-65.48584662761093],[-65.72045720457204,-65.47064943218199],[-65.7060570605706,-65.47402658672175],[-65.68445684456844,-65.48078089580127],[-65.66645666456664,-65.48584662761093],[-65.6520565205652,-65.48246947307116],[-65.6160561605616,-65.4689608549121],[-65.59445594455944,-65.46727227764222],[-65.5440554405544,-65.47571516399164],[-65.5260552605526,-65.47233800945187]]],[[[-62.923229232292314,-64.87795881045315],[-62.92682926829268,-64.88133596499293],[-62.95922959229591,-64.89484458315198],[-62.9880298802988,-64.89653316042187],[-63.0780307803078,-64.88977885134234],[-63.10683106831068,-64.8830245422628],[-63.12843128431284,-64.86951592410375],[-63.124831248312475,-64.86276161502421],[-63.121231212312125,-64.85094157413504],[-63.11763117631176,-64.84756441959527],[-63.096030960309605,-64.84249868778562],[-63.070830708307085,-64.84081011051575],[-63.0420304203042,-64.8441872650555],[-63.024030240302395,-64.85094157413504],[-63.020430204302045,-64.85600730594469],[-63.020430204302045,-64.86613876956397],[-63.01323013230132,-64.86951592410375],[-63.00963009630095,-64.86951592410375],[-62.9880298802988,-64.86276161502421],[-62.970029700297005,-64.85938446048445],[-62.95562955629556,-64.86107303775432],[-62.937629376293756,-64.86782734683386],[-62.923229232292314,-64.87795881045315]]],[[[-62.63882638826388,-64.72598685616371],[-62.65322653226532,-64.73780689705289],[-62.67842678426784,-64.7462497834023],[-62.70362703627036,-64.7479383606722],[-62.721627216272154,-64.73780689705289],[-62.72522725227252,-64.73442974251313],[-62.721627216272154,-64.7276754334336],[-62.721627216272154,-64.72260970162395],[-62.73242732427323,-64.7175439698143],[-62.76482764827648,-64.70910108346489],[-62.73242732427323,-64.70065819711547],[-62.721627216272154,-64.69390388803595],[-62.70722707227071,-64.68377242441665],[-62.696426964269634,-64.67532953806723],[-62.68202682026819,-64.6702638062576],[-62.667626676266764,-64.6702638062576],[-62.65322653226532,-64.67364096079734],[-62.64602646026459,-64.678706692607],[-62.642426424264244,-64.68377242441665],[-62.642426424264244,-64.70065819711547],[-62.642426424264244,-64.70572392892512],[-62.63882638826388,-64.70910108346489],[-62.635226352263516,-64.71247823800465],[-62.63162631626315,-64.71585539254443],[-62.63162631626315,-64.71923254708419],[-62.635226352263516,-64.72092112435406],[-62.63882638826388,-64.72598685616371]]],[[[-61.62721627216271,-64.35956558859917],[-61.61281612816127,-64.35449985678952],[-61.566015660156594,-64.34943412497987],[-61.5480154801548,-64.34943412497987],[-61.52641526415263,-64.36125416586906],[-61.50841508415084,-64.37307420675823],[-61.490414904149034,-64.38489424764741],[-61.49761497614976,-64.38489424764741],[-61.52641526415263,-64.39671428853659],[-61.54441544415444,-64.39671428853659],[-61.566015660156594,-64.3950257112667],[-61.59841598415984,-64.38827140218717],[-61.61281612816127,-64.38151709310765],[-61.60201602016019,-64.37138562948834],[-61.60921609216092,-64.36800847494858],[-61.62721627216271,-64.35956558859917]]],[[[-56.84996849968499,-64.28020245691468],[-56.71316713167131,-64.23461087062785],[-56.63396633966339,-64.2211022524688],[-56.58356583565835,-64.23461087062785],[-56.63396633966339,-64.27513672510503],[-56.71316713167131,-64.30721969323281],[-56.81036810368103,-64.32241688866175],[-56.89676896768967,-64.3173511568521],[-56.878768787687875,-64.31059684777257],[-56.86436864368643,-64.30215396142316],[-56.853568535685355,-64.29202249780386],[-56.84996849968499,-64.28020245691468]]],[[[-61.65961659616596,-64.17213351164219],[-61.69921699216992,-64.17213351164219],[-61.717217172171715,-64.17044493437231],[-61.73161731617316,-64.16537920256266],[-61.74961749617496,-64.15693631621325],[-61.76041760417604,-64.14680485259395],[-61.75321753217531,-64.13836196624453],[-61.75321753217531,-64.12991907989512],[-61.75681756817568,-64.12316477081559],[-61.75321753217531,-64.11472188446618],[-61.7460174601746,-64.10796757538665],[-61.73521735217352,-64.10121326630711],[-61.72441724417244,-64.09783611176735],[-61.717217172171715,-64.09445895722759],[-61.68841688416883,-64.102901843577],[-61.67761677616775,-64.12316477081559],[-61.65961659616596,-64.17213351164219]]],[[[-61.72441724417244,-63.75167777144139],[-61.7460174601746,-63.741546307822105],[-61.80721807218072,-63.72972626693292],[-61.78561785617856,-63.72297195785339],[-61.63801638016379,-63.72634911239316],[-61.620016200162,-63.73310342147269],[-61.61281612816127,-63.76349781233058],[-61.62721627216271,-63.78713789410894],[-61.65241652416523,-63.804023666807765],[-61.68481684816848,-63.80740082134753],[-61.68481684816848,-63.804023666807765],[-61.692016920169195,-63.780383585029405],[-61.69921699216992,-63.77194069867999],[-61.710017100171,-63.76349781233058],[-61.72441724417244,-63.75167777144139]]],[[[-57.53757537575375,-63.68244610337621],[-57.55197551975519,-63.655428867058085],[-57.55917559175592,-63.64529740343879],[-57.57357573575736,-63.64192024889903],[-57.48717487174871,-63.62334589893031],[-57.44037440374403,-63.61996874439055],[-57.40077400774007,-63.62841163073996],[-57.411574115741146,-63.631788785279724],[-57.44757447574476,-63.67738037156656],[-57.46557465574655,-63.68920041245573],[-57.48717487174871,-63.69595472153527],[-57.51237512375123,-63.69764329880515],[-57.53037530375303,-63.6925775669955],[-57.5339753397534,-63.69088898972562],[-57.5339753397534,-63.68920041245573],[-57.53757537575375,-63.68244610337621]]],[[[-56.68796687966879,-63.592951508072424],[-56.66276662766627,-63.56762284902418],[-56.601566015660154,-63.55749138540489],[-56.52956529565296,-63.55749138540489],[-56.468364683646826,-63.5659342717543],[-56.576365763657634,-63.611525858041134],[-56.64836648366483,-63.62334589893031],[-56.68796687966879,-63.592951508072424]]],[[[-56.69876698766987,-63.20626731326929],[-56.702367023670234,-63.18938154057046],[-56.691566915669156,-63.1758729224114],[-56.67356673566735,-63.1657414587921],[-56.65556655566556,-63.15898714971257],[-56.63396633966339,-63.15223284063304],[-56.60876608766087,-63.15054426336316],[-56.58716587165871,-63.15392141790292],[-56.565565655656556,-63.162364304252336],[-56.58356583565835,-63.20120158145964],[-56.590765907659076,-63.20795589053917],[-56.615966159661596,-63.2147101996187],[-56.64836648366483,-63.219775931428345],[-56.677166771667714,-63.21808735415847],[-56.69876698766987,-63.20626731326929]]],[[[-59.744397443974435,-62.54434502347527],[-59.75159751597515,-62.54434502347527],[-59.75519755197551,-62.54434502347527],[-59.75879758797588,-62.542656446205385],[-59.76599765997659,-62.5409678689355],[-59.769597695976955,-62.53421355985597],[-59.77679776797767,-62.522393518966794],[-59.7839978399784,-62.51563920988726],[-59.79839798397984,-62.50888490080773],[-59.931599315993154,-62.48862197356914],[-59.996399963999636,-62.4531618509016],[-59.931599315993154,-62.43965323274254],[-59.72279722797228,-62.45147327363172],[-59.76599765997659,-62.4734247781402],[-59.77679776797767,-62.480179087219724],[-59.769597695976955,-62.48693339629926],[-59.75879758797588,-62.4919991281089],[-59.75159751597515,-62.49706485991855],[-59.72639726397263,-62.503819168998085],[-59.7119971199712,-62.505507746267966],[-59.70119701197011,-62.503819168998085],[-59.643596435964355,-62.48186766448961],[-59.61119611196112,-62.480179087219724],[-59.57879578795787,-62.485244819029376],[-59.55359553595535,-62.500442014458315],[-59.56439564395643,-62.50719632353785],[-59.58959589595895,-62.51057347807762],[-59.60039600396003,-62.51395063261738],[-59.60039600396003,-62.53421355985597],[-59.618396183961835,-62.54434502347527],[-59.668796687966875,-62.54941075528492],[-59.72639726397263,-62.54434502347527],[-59.744397443974435,-62.54434502347527]]],[[[-44.519845198451975,-60.718992994732076],[-44.53424534245343,-60.7358787674309],[-44.56664566645665,-60.74432165378031],[-44.64224642246421,-60.749387385589955],[-44.696246962469615,-60.74432165378031],[-44.721447214472136,-60.751075962859844],[-44.71784717847177,-60.77302746736832],[-44.73584735847359,-60.76458458101891],[-44.81864818648185,-60.73925592197067],[-44.829448294482944,-60.7358787674309],[-44.83304833048331,-60.73081303562125],[-44.84384843848437,-60.718992994732076],[-44.847448474484736,-60.71561584019231],[-44.804248042480424,-60.73081303562125],[-44.78264782647827,-60.734190190161016],[-44.76104761047611,-60.732501612891134],[-44.721447214472136,-60.7257473038116],[-44.703447034470344,-60.72405872654172],[-44.696246962469615,-60.72237014927184],[-44.68544685446855,-60.718992994732076],[-44.68184681846819,-60.708861531112774],[-44.68184681846819,-60.69873006749348],[-44.68904689046889,-60.67677856298501],[-44.67824678246782,-60.68522144933442],[-44.60984609846099,-60.708861531112774],[-44.60264602646026,-60.708861531112774],[-44.5990459904599,-60.70717295384289],[-44.59184591845917,-60.69873006749348],[-44.58824588245881,-60.69535291295371],[-44.58104581045811,-60.69535291295371],[-44.57384573845738,-60.69535291295371],[-44.570245702457015,-60.69535291295371],[-44.55224552245522,-60.68859860387418],[-44.53784537845377,-60.68015571752477],[-44.52344523445234,-60.67508998571512],[-44.50544505445055,-60.67508998571512],[-44.45144451444514,-60.70379579930312],[-44.50904509045091,-60.713927262922425],[-44.519845198451975,-60.718992994732076]]],[[[-27.25407254072539,-59.457625774129696],[-27.250472504725053,-59.4474943105104],[-27.243272432724325,-59.44074000143087],[-27.232472324723233,-59.439051424160986],[-27.135271352713517,-59.437362846891105],[-27.135271352713517,-59.44411715597063],[-27.14607146071461,-59.452560042320044],[-27.149671496714973,-59.46269150593935],[-27.15327153271531,-59.47113439228876],[-27.21447214472144,-59.47113439228876],[-27.236072360723597,-59.46775723774899],[-27.25407254072539,-59.457625774129696]]],[[[-27.32967329673295,-59.437362846891105],[-27.32247322473225,-59.4474943105104],[-27.32247322473225,-59.457625774129696],[-27.31527315273152,-59.46606866047911],[-27.300873008730093,-59.47113439228876],[-27.311673116731157,-59.472822969558635],[-27.32247322473225,-59.47113439228876],[-27.333273332733313,-59.46944581501887],[-27.344073440734405,-59.46438008320923],[-27.37287372873729,-59.455937196859814],[-27.39807398073981,-59.44411715597063],[-27.408874088740873,-59.432297115081454],[-27.376473764737653,-59.42385422873204],[-27.32967329673295,-59.42385422873204],[-27.32967329673295,-59.4272313832718],[-27.32967329673295,-59.432297115081454],[-27.32967329673295,-59.437362846891105]]],[[[-26.631266312663115,-59.006775643071016],[-26.59526595265953,-59.00170991126137],[-26.562865628656283,-59.0084642203409],[-26.498064980649815,-59.03379287938914],[-26.523265232652335,-59.047301497548204],[-26.54486544865449,-59.05743296116749],[-26.57006570065701,-59.064187270247025],[-26.59526595265953,-59.067564424786795],[-26.631266312663115,-59.062498692977144],[-26.65286652866527,-59.045612920278316],[-26.656466564665635,-59.02366141576984],[-26.631266312663115,-59.006775643071016]]],[[[-26.42606426064259,-57.81295151326395],[-26.45126451264511,-57.811262935994066],[-26.480064800647995,-57.80282004964465],[-26.50166501665015,-57.78931143148559],[-26.512465124651243,-57.77242565878676],[-26.47646476464763,-57.74540842246864],[-26.45846458464584,-57.73865411338911],[-26.436864368643683,-57.743719845198754],[-26.43326433264332,-57.75047415427829],[-26.42606426064259,-57.770737081516884],[-26.415264152641527,-57.7791799678663],[-26.404464044640434,-57.78424569967594],[-26.386463864638642,-57.785934276945824],[-26.35766357663576,-57.785934276945824],[-26.372063720637215,-57.797754317835],[-26.390063900639007,-57.80282004964465],[-26.42606426064259,-57.81295151326395]]],[[[-27.149671496714973,-56.676539010632894],[-27.135271352713517,-56.678227587902775],[-27.11367113671136,-56.68667047425219],[-27.09567095670957,-56.695113360601596],[-27.092070920709205,-56.70693340149078],[-27.106471064710632,-56.71537628784019],[-27.1640716407164,-56.72381917418961],[-27.19647196471965,-56.71875344237996],[-27.207272072720713,-56.71368771057031],[-27.210872108721077,-56.70017909241125],[-27.20367203672035,-56.69004762879195],[-27.185671856718557,-56.68329331971242],[-27.167671676716765,-56.678227587902775],[-27.149671496714973,-56.676539010632894]]],[[[-27.610476104761034,-56.29154339309964],[-27.592475924759242,-56.27803477494058],[-27.570875708757086,-56.27296904313093],[-27.54927549275493,-56.27634619767069],[-27.527675276752774,-56.284789084020105],[-27.527675276752774,-56.29154339309964],[-27.542075420754202,-56.29660912490928],[-27.55647556475563,-56.310117743068346],[-27.567275672756722,-56.32024920668764],[-27.58167581675815,-56.31349489760811],[-27.603276032760334,-56.29660912490928],[-27.610476104761034,-56.29154339309964]]],[[[-67.24687246872469,-55.83900468477107],[-67.22887228872288,-55.8457589938506],[-67.2180721807218,-55.852513302930134],[-67.21447214472144,-55.86095618927955],[-67.22527225272252,-55.87446480743861],[-67.2180721807218,-55.87446480743861],[-67.21087210872108,-55.87953053924826],[-67.20367203672036,-55.88121911651814],[-67.22527225272252,-55.89810488921697],[-67.25767257672577,-55.89135058013744],[-67.32247322473225,-55.867710498359074],[-67.33687336873368,-55.86433334381931],[-67.34767347673477,-55.857579034739786],[-67.35127351273512,-55.84744757112048],[-67.35847358473585,-55.837316107501195],[-67.37287372873729,-55.832250375691544],[-67.40167401674016,-55.837316107501195],[-67.4160741607416,-55.833938952961425],[-67.40167401674016,-55.81874175753248],[-67.38367383673837,-55.81198744845295],[-67.35847358473585,-55.810298871183065],[-67.28287282872829,-55.82043033480237],[-67.25767257672577,-55.82887322115178],[-67.24687246872469,-55.83900468477107]]],[[[-67.64287642876428,-55.497912076254764],[-67.61767617676176,-55.51310927168371],[-67.5960759607596,-55.53337219892231],[-67.58527585275853,-55.5536351261609],[-67.5960759607596,-55.57220947612961],[-67.58887588875888,-55.57896378520914],[-67.58887588875888,-55.585718094288666],[-67.6140761407614,-55.587406671558554],[-67.66087660876609,-55.609358176067026],[-67.71487714877148,-55.61948963968632],[-67.73287732877328,-55.6211782169562],[-67.740077400774,-55.61611248514656],[-67.73647736477365,-55.605981021527256],[-67.73287732877328,-55.59584955790797],[-67.72567725677257,-55.58909524882843],[-67.71487714877148,-55.585718094288666],[-67.70047700477005,-55.584029517018784],[-67.69327693276932,-55.57896378520914],[-67.68607686076861,-55.57220947612961],[-67.68247682476824,-55.565455167050075],[-67.68247682476824,-55.55194654889101],[-67.68967689676896,-55.543503662541596],[-67.69327693276932,-55.53843793073195],[-67.69687696876969,-55.53168362165242],[-67.70047700477005,-55.51310927168371],[-67.70047700477005,-55.5046663853343],[-67.68967689676896,-55.497912076254764],[-67.68607686076861,-55.494534921715],[-67.67887678876788,-55.49115776717524],[-67.67167671676717,-55.49115776717524],[-67.66447664476644,-55.49115776717524],[-67.66087660876609,-55.49115776717524],[-67.65367653676536,-55.49284634444512],[-67.64287642876428,-55.497912076254764]]],[[[-69.71289712897129,-55.34425154469544],[-69.67329673296733,-55.35607158558462],[-69.65529655296552,-55.36451447193403],[-69.64089640896408,-55.37633451282321],[-69.63729637296373,-55.3881545537124],[-69.65529655296552,-55.38646597644251],[-69.68769687696877,-55.37295735828344],[-69.70569705697056,-55.37633451282321],[-69.7020970209702,-55.38477739917263],[-69.66969669696697,-55.401663171871455],[-69.68769687696877,-55.4067289036811],[-69.7020970209702,-55.40841748095099],[-69.80289802898028,-55.40841748095099],[-69.79569795697957,-55.398286017331685],[-69.78849788497885,-55.38984313098227],[-69.78489784897849,-55.383088821902746],[-69.77409774097741,-55.37971166736298],[-69.78129781297812,-55.36620304920392],[-69.80289802898028,-55.33243150380626],[-69.71289712897129,-55.34425154469544]]],[[[-66.85446854468545,-55.27164272209049],[-66.82926829268293,-55.28177418570978],[-66.840068400684,-55.30203711294837],[-66.86886868868689,-55.32230004018697],[-66.89766897668976,-55.33243150380626],[-66.93726937269372,-55.33412008107615],[-67.05967059670596,-55.32567719472674],[-67.04887048870488,-55.30710284475802],[-67.0560705607056,-55.29865995840861],[-67.06687066870668,-55.29190564932908],[-67.0740707407074,-55.278397031170016],[-67.07047070470705,-55.26657699028084],[-67.0560705607056,-55.25475694939166],[-67.0380703807038,-55.24293690850248],[-67.02727027270272,-55.236182599422946],[-66.99126991269912,-55.22942829034342],[-66.8760687606876,-55.2311168676133],[-66.86526865268652,-55.232805444883184],[-66.85806858068581,-55.237871176692835],[-66.85086850868508,-55.24800264031212],[-66.85086850868508,-55.253068372121774],[-66.84726847268472,-55.26151125847119],[-66.85086850868508,-55.26826556755072],[-66.85446854468545,-55.27164272209049]]],[[[-66.86886868868689,-55.023421863417724],[-66.84726847268472,-55.03861905884668],[-66.82926829268293,-55.06225914062503],[-66.80766807668077,-55.112916458721514],[-66.85086850868508,-55.10616214964198],[-66.92646926469264,-55.06225914062503],[-66.99126991269912,-55.04706194519609],[-67.03447034470344,-55.028487595227375],[-67.06687066870668,-55.02173328614785],[-67.07047070470705,-55.0166675543382],[-67.07047070470705,-55.009913245258666],[-67.06687066870668,-55.00147035890926],[-67.04527045270453,-54.99133889528996],[-67.02367023670236,-54.993027472559845],[-66.97686976869768,-55.00484751344902],[-66.89406894068941,-55.01497897706832],[-66.86886868868689,-55.023421863417724]]],[[[-70.4221042210422,-54.846121250080046],[-70.41130411304113,-54.84949840461981],[-70.40050400504005,-54.85962986823911],[-70.39690396903968,-54.8697613318584],[-70.40050400504005,-54.87313848639817],[-70.45450454504545,-54.8798927954777],[-70.50850508505084,-54.8798927954777],[-70.58050580505805,-54.89846714544641],[-70.65610656106561,-54.90184429998617],[-70.67770677706777,-54.89846714544641],[-70.69210692106921,-54.88664710455723],[-70.68850688506885,-54.8798927954777],[-70.69210692106921,-54.87651564093794],[-70.71370713707137,-54.87313848639817],[-70.71730717307173,-54.87482706366805],[-70.72090720907208,-54.88158137274758],[-70.72450724507245,-54.88664710455723],[-70.73170731707317,-54.88664710455723],[-70.73170731707317,-54.88495852728735],[-70.7461074610746,-54.87313848639817],[-70.7461074610746,-54.866384177318636],[-70.710107101071,-54.85287555915958],[-70.68850688506885,-54.846121250080046],[-70.6741067410674,-54.84949840461981],[-70.65610656106561,-54.85625271369934],[-70.6381063810638,-54.84949840461981],[-70.62370623706236,-54.83767836373063],[-70.60570605706057,-54.83261263192098],[-70.54090540905409,-54.83261263192098],[-70.4221042210422,-54.846121250080046]]],[[[-71.94851948519485,-54.702592182140016],[-71.93051930519304,-54.6941492957906],[-71.91971919719197,-54.705969336679786],[-71.91971919719197,-54.722855109378614],[-71.9269192691927,-54.73636372753767],[-71.93771937719377,-54.74649519115697],[-71.95211952119521,-54.75156092296662],[-71.970119701197,-54.75493807750638],[-71.98451984519845,-54.75493807750638],[-71.99891998919989,-54.75324950023649],[-72.0061200612006,-54.74649519115697],[-72.00972009720097,-54.73805230480755],[-72.00252002520025,-54.72792084118826],[-71.99171991719916,-54.721166532108725],[-71.98811988119881,-54.716100800299074],[-71.98451984519845,-54.70765791394966],[-71.99171991719916,-54.699215027600246],[-72.02052020520205,-54.67557494582189],[-72.03492034920349,-54.658689173123065],[-72.03852038520385,-54.65024628677365],[-72.04932049320493,-54.64686913223389],[-72.06372063720637,-54.65193486404354],[-72.06732067320672,-54.66206632766283],[-72.06372063720637,-54.67050921401224],[-72.06732067320672,-54.67557494582189],[-72.08172081720816,-54.67388636855201],[-72.0889208892089,-54.67050921401224],[-72.09972099720997,-54.658689173123065],[-72.10332103321034,-54.645180554964],[-72.09252092520924,-54.636737668614586],[-72.07092070920709,-54.63167193680494],[-72.03852038520385,-54.62829478226518],[-72.02772027720277,-54.62998335953506],[-72.02052020520205,-54.63336051407482],[-72.01332013320133,-54.640114823154356],[-71.99171991719916,-54.663754904932716],[-71.97731977319773,-54.67388636855201],[-71.96651966519664,-54.680640677631544],[-71.95571955719556,-54.68908356398096],[-71.94851948519485,-54.702592182140016]]],[[[3.457834578345796,-54.39020538721172],[3.479434794347952,-54.39695969629125],[3.4866348663486804,-54.4020254281009],[3.4830348303483163,-54.41046831445031],[3.479434794347952,-54.41891120079973],[3.472234722347224,-54.435796973498555],[3.46863468634686,-54.4408627053082],[3.44343443434434,-54.44761701438773],[3.382233822338236,-54.44930559165761],[3.364233642336444,-54.46281420981667],[3.36063360633608,-54.45774847800703],[3.357033570335716,-54.45774847800703],[3.353433534335352,-54.456059900737145],[3.349833498334988,-54.456059900737145],[3.3462334623346237,-54.41891120079973],[3.378633786337872,-54.391893964481596],[3.421834218342184,-54.38007392359242],[3.457834578345796,-54.39020538721172]]],[[[-72.3409234092341,-54.331105182765825],[-72.31212312123121,-54.329416605495936],[-72.30132301323013,-54.332793760035706],[-72.29772297722977,-54.346302378194764],[-72.30492304923048,-54.36487672816348],[-72.32652326523265,-54.35981099635383],[-72.35532355323552,-54.349679532734534],[-72.38052380523804,-54.3530566872743],[-72.36972369723696,-54.35812241908394],[-72.36252362523625,-54.366565305433355],[-72.35532355323552,-54.37669676905266],[-72.36252362523625,-54.38007392359242],[-72.39132391323913,-54.38007392359242],[-72.39852398523985,-54.37838534632254],[-72.40572405724056,-54.373319614512894],[-72.40932409324093,-54.36825388270324],[-72.41292412924129,-54.366565305433355],[-72.43452434524345,-54.37669676905266],[-72.45252452524525,-54.41891120079973],[-72.47052470524704,-54.42735408714914],[-72.47772477724777,-54.42228835533949],[-72.50292502925029,-54.393582541751485],[-72.53172531725316,-54.36318815089359],[-72.54252542525425,-54.342925223655],[-72.49932499324993,-54.349679532734534],[-72.50292502925029,-54.331105182765825],[-72.44892448924489,-54.33448233730559],[-72.42732427324273,-54.329416605495936],[-72.43452434524345,-54.310842255527234],[-72.42372423724237,-54.30577652371758],[-72.41652416524165,-54.304087946447694],[-72.40572405724056,-54.30577652371758],[-72.39852398523985,-54.310842255527234],[-72.3841238412384,-54.314219410067],[-72.35892358923589,-54.32772802822606],[-72.3409234092341,-54.331105182765825]]],[[[-72.29772297722977,-54.079507169553295],[-72.27972279722796,-54.0896386331726],[-72.25452254522544,-54.09977009679189],[-72.24012240122401,-54.11159013768108],[-72.24012240122401,-54.126787333110016],[-72.22932229322292,-54.1284759103799],[-72.22212222122221,-54.13185306491967],[-72.20772207722077,-54.14029595126908],[-72.20772207722077,-54.14705026034861],[-72.23652236522365,-54.145361683078725],[-72.24732247322473,-54.148738837618495],[-72.25452254522544,-54.16055887850767],[-72.25452254522544,-54.17237891939685],[-72.25092250922509,-54.185887537555914],[-72.25092250922509,-54.19770757844509],[-72.26532265322653,-54.20277331025474],[-72.28332283322833,-54.20108473298485],[-72.29052290522905,-54.19770757844509],[-72.29772297722977,-54.20108473298485],[-72.30132301323013,-54.21459335114392],[-72.29772297722977,-54.23823343292227],[-72.30132301323013,-54.25174205108134],[-72.31932319323192,-54.25680778289099],[-72.34812348123481,-54.25005347381145],[-72.37692376923769,-54.22303623749333],[-72.39852398523985,-54.22979054657286],[-72.40932409324093,-54.23992201019216],[-72.41652416524165,-54.248364896541574],[-72.42732427324273,-54.2551192056211],[-72.44532445324452,-54.25680778289099],[-72.45972459724597,-54.2551192056211],[-72.47412474124741,-54.25343062835122],[-72.50292502925029,-54.24329916473192],[-72.50292502925029,-54.23654485565239],[-72.49572495724956,-54.231479123842746],[-72.48852488524885,-54.22810196930298],[-72.48132481324812,-54.21459335114392],[-72.51372513725137,-54.20277331025474],[-72.49212492124921,-54.19095326936556],[-72.44172441724417,-54.17069034212697],[-72.420124201242,-54.169001764857086],[-72.36972369723696,-54.1673131875872],[-72.34452344523444,-54.15887030123778],[-72.330123301233,-54.14029595126908],[-72.36252362523625,-54.13860737399919],[-72.37692376923769,-54.14029595126908],[-72.39132391323913,-54.14705026034861],[-72.39132391323913,-54.1284759103799],[-72.35892358923589,-54.121721601300365],[-72.32292322923229,-54.1183444467606],[-72.29772297722977,-54.11327871495095],[-72.34452344523444,-54.106524405871426],[-72.36612366123661,-54.106524405871426],[-72.36972369723696,-54.106524405871426],[-72.38772387723877,-54.09977009679189],[-72.39492394923948,-54.09470436498225],[-72.36612366123661,-54.08457290136295],[-72.3409234092341,-54.06937570593401],[-72.31572315723157,-54.062621396854475],[-72.29772297722977,-54.079507169553295]]],[[[-73.17973179731797,-54.07275286047377],[-73.18333183331833,-54.07781859228342],[-73.18333183331833,-54.09301578771236],[-73.18693186931868,-54.09977009679189],[-73.17973179731797,-54.09977009679189],[-73.16533165331653,-54.10483582860154],[-73.15813158131581,-54.106524405871426],[-73.17973179731797,-54.126787333110016],[-73.20493204932049,-54.12341017857025],[-73.23373233732337,-54.11159013768108],[-73.25533255332553,-54.11327871495095],[-73.25173251732517,-54.125098755840135],[-73.28053280532805,-54.126787333110016],[-73.31293312933128,-54.121721601300365],[-73.32373323733236,-54.11327871495095],[-73.33093330933309,-54.10314725133166],[-73.33093330933309,-54.09470436498225],[-73.33093330933309,-54.07613001501353],[-73.3381333813338,-54.06599855139424],[-73.35253352533525,-54.064309974124356],[-73.36693366933669,-54.06937570593401],[-73.37053370533705,-54.07613001501353],[-73.3849338493385,-54.079507169553295],[-73.41733417334173,-54.081195746823184],[-73.45333453334533,-54.07781859228342],[-73.47493474934748,-54.07275286047377],[-73.46053460534606,-54.064309974124356],[-73.4281342813428,-54.05755566504483],[-73.41373413734136,-54.05080135596529],[-73.39213392133921,-54.03222700599659],[-73.38133381333813,-54.02547269691705],[-73.35973359733597,-54.023784119647175],[-73.27333273332734,-54.02884985145682],[-73.24453244532445,-54.04235846961588],[-73.24813248132482,-54.07275286047377],[-73.23013230132301,-54.07106428320389],[-73.20853208532085,-54.059244242314705],[-73.18693186931868,-54.05417851050506],[-73.17973179731797,-54.07275286047377]]],[[[-73.82413824138241,-53.47161935239553],[-73.82053820538205,-53.48006223874494],[-73.80973809738097,-53.48343939328471],[-73.73053730537305,-53.50032516598354],[-73.70533705337053,-53.508768052332954],[-73.68733687336874,-53.52396524776189],[-73.70173701737016,-53.53747386592096],[-73.7161371613716,-53.54085102046072],[-73.75573755737557,-53.53747386592096],[-73.78093780937809,-53.53916244319083],[-73.78453784537845,-53.54591675227037],[-73.78453784537845,-53.55604821588966],[-73.78813788137882,-53.57124541131861],[-73.80253802538024,-53.57968829766802],[-73.82773827738276,-53.58644260674755],[-73.84933849338493,-53.588131184017435],[-73.85653856538565,-53.5813768749379],[-73.85293852938528,-53.56617967950896],[-73.8421384213842,-53.55773679315955],[-73.83133831338313,-53.550982484080016],[-73.82413824138241,-53.53747386592096],[-73.87453874538745,-53.53916244319083],[-73.88533885338853,-53.53747386592096],[-73.89253892538925,-53.525653825031775],[-73.88173881738817,-53.52058809322213],[-73.86733867338673,-53.51721093868236],[-73.85653856538565,-53.51721093868236],[-73.83493834938349,-53.505390897793184],[-73.84573845738457,-53.481750816014824],[-73.86013860138601,-53.45811073423647],[-73.85653856538565,-53.44797927061717],[-73.84573845738457,-53.449667847887056],[-73.83493834938349,-53.4547335796967],[-73.82773827738276,-53.463176466046114],[-73.82413824138241,-53.47161935239553]]],[[[-74.14454144541445,-53.241972843691485],[-74.12294122941229,-53.23521853461195],[-74.0941409414094,-53.22846422553242],[-74.07254072540725,-53.23015280280231],[-74.05814058140581,-53.2504157300409],[-74.06534065340654,-53.26054719366019],[-74.07614076140761,-53.26392434819996],[-74.09054090540906,-53.26561292546984],[-74.10494104941048,-53.27067865727949],[-74.09774097740977,-53.29263016178796],[-74.11574115741158,-53.30782735721691],[-74.14454144541445,-53.31627024356632],[-74.16974169741697,-53.3179588208362],[-74.1769417694177,-53.319647398106085],[-74.18774187741877,-53.32977886172539],[-74.19494194941949,-53.33146743899526],[-74.20214202142022,-53.33146743899526],[-74.21654216542166,-53.32640170718562],[-74.22374223742237,-53.324713129915736],[-74.23814238142381,-53.314581666296434],[-74.24174241742418,-53.31120451175667],[-74.24534245342453,-53.30276162540726],[-74.24174241742418,-53.299384470867494],[-74.23814238142381,-53.299384470867494],[-74.23454234542345,-53.29431873905784],[-74.22374223742237,-53.280810120898785],[-74.14454144541445,-53.241972843691485]]],[[[-73.43173431734317,-52.86542011250764],[-73.3849338493385,-52.89750308063541],[-73.37773377733777,-52.911011698794475],[-73.38133381333813,-52.926208894223414],[-73.38853388533884,-52.94140608965236],[-73.40293402934029,-52.95322613054154],[-73.4209342093421,-52.95829186235119],[-73.43533435334353,-52.95660328508131],[-73.45693456934569,-52.95322613054154],[-73.47493474934748,-52.94478324419213],[-73.48933489334892,-52.93465178057283],[-73.49293492934929,-52.92114316241377],[-73.48933489334892,-52.912700276064356],[-73.47853478534785,-52.907634544254705],[-73.46053460534606,-52.907634544254705],[-73.46053460534606,-52.90088023517518],[-73.47133471334713,-52.89750308063541],[-73.49293492934929,-52.889060194285996],[-73.50373503735037,-52.88568303974623],[-73.55053550535504,-52.88568303974623],[-73.56133561335614,-52.887371617016115],[-73.56853568535685,-52.889060194285996],[-73.57573575735756,-52.889060194285996],[-73.58653586535866,-52.88230588520647],[-73.59733597335973,-52.8789287306667],[-73.60813608136081,-52.8789287306667],[-73.63333633336333,-52.8789287306667],[-73.66213662136622,-52.892437348825766],[-73.6729367293673,-52.89412592609565],[-73.7161371613716,-52.892437348825766],[-73.73053730537305,-52.89412592609565],[-73.78813788137882,-52.912700276064356],[-73.80973809738097,-52.91438885333424],[-73.7989379893799,-52.89919165790529],[-73.75933759337593,-52.892437348825766],[-73.74133741337413,-52.8789287306667],[-73.74853748537485,-52.868797267047405],[-73.73773737737378,-52.867108689777524],[-73.71973719737197,-52.86542011250764],[-73.70533705337053,-52.86204295796787],[-73.69453694536945,-52.85360007161846],[-73.68373683736837,-52.850222917078696],[-73.6729367293673,-52.850222917078696],[-73.64773647736477,-52.85360007161846],[-73.61533615336153,-52.86373153523776],[-73.60093600936008,-52.86542011250764],[-73.59373593735937,-52.86035438069799],[-73.60453604536045,-52.850222917078696],[-73.63333633336333,-52.83164856710999],[-73.61173611736118,-52.82151710349069],[-73.55413554135541,-52.85360007161846],[-73.52893528935289,-52.83840287618952],[-73.50733507335073,-52.85191149434858],[-73.47853478534785,-52.867108689777524],[-73.44973449734496,-52.87217442158717],[-73.43173431734317,-52.86542011250764]]],[[[-74.79254792547925,-52.17985774093526],[-74.80334803348033,-52.17141485458585],[-74.80334803348033,-52.15959481369667],[-74.7961479614796,-52.129200422838785],[-74.79254792547925,-52.124134691029134],[-74.78534785347853,-52.12075753648937],[-74.77094770947708,-52.11906895921949],[-74.76374763747637,-52.11906895921949],[-74.75654756547566,-52.124134691029134],[-74.75294752947529,-52.12244611375925],[-74.74934749347493,-52.11906895921949],[-74.68814688146881,-52.086985991091716],[-74.63774637746377,-52.07685452747242],[-74.6341463414634,-52.07347737293266],[-74.62694626946269,-52.061657332043474],[-74.61614616146161,-52.05996875477359],[-74.60894608946089,-52.061657332043474],[-74.60174601746017,-52.063345909313355],[-74.59814598145981,-52.07010021839289],[-74.60894608946089,-52.08360883655195],[-74.65574655746558,-52.12244611375925],[-74.66294662946629,-52.13426615464843],[-74.66654666546665,-52.149463350077376],[-74.670146701467,-52.16297196823644],[-74.68454684546845,-52.166349122776204],[-74.71334713347133,-52.166349122776204],[-74.74934749347493,-52.18323489547503],[-74.77094770947708,-52.188300627284676],[-74.79254792547925,-52.17985774093526]]],[[[-73.70893708937089,-52.186612050014794],[-73.70533705337053,-52.191677781824446],[-73.69093690936909,-52.20180924544374],[-73.68733687336874,-52.20856355452327],[-73.68733687336874,-52.21700644087269],[-73.69453694536945,-52.24233509992092],[-73.70533705337053,-52.23726936811128],[-73.71973719737197,-52.230515059031745],[-73.73053730537305,-52.22207217268233],[-73.73773737737378,-52.210252131793155],[-73.74493744937449,-52.19505493636421],[-73.7521375213752,-52.189989204554564],[-73.79533795337953,-52.15959481369667],[-73.80613806138061,-52.144397618267725],[-73.80973809738097,-52.13933188645808],[-73.87093870938709,-52.09542887744113],[-73.91053910539105,-52.08360883655195],[-73.96453964539646,-52.0498372911543],[-74.01854018540185,-52.03801725026512],[-74.09054090540906,-52.00931143667711],[-74.11214112141121,-51.99411424124817],[-74.10494104941048,-51.999179973057814],[-74.09774097740977,-52.00255712759758],[-74.09054090540906,-52.0008685503277],[-74.08334083340833,-51.99411424124817],[-74.07614076140761,-52.0008685503277],[-74.06534065340654,-52.004245704867465],[-74.05454054540544,-52.00762285940723],[-74.04374043740437,-52.00931143667711],[-74.0509405094051,-51.99411424124817],[-74.06534065340654,-51.9907370867084],[-74.08334083340833,-51.98735993216864],[-74.09774097740977,-51.982294200358986],[-74.10854108541085,-51.96878558219993],[-74.10854108541085,-51.95865411858063],[-74.09774097740977,-51.95358838677098],[-74.07614076140761,-51.95527696404086],[-74.0941409414094,-51.94007976861192],[-74.0941409414094,-51.92657115045286],[-74.07974079740796,-51.921505418643214],[-74.05814058140581,-51.92657115045286],[-74.06534065340654,-51.91137395502392],[-74.05454054540544,-51.90799680048415],[-74.03654036540365,-51.91475110956368],[-74.01854018540185,-51.923193995913095],[-73.98973989739898,-51.94852265496134],[-73.97173971739717,-51.95696554131075],[-73.95013950139501,-51.960342695850514],[-73.93573935739357,-51.96709700493005],[-73.78453784537845,-52.05996875477359],[-73.75933759337593,-52.08192025928207],[-73.72693726937268,-52.125823268299015],[-73.70893708937089,-52.15959481369667],[-73.70893708937089,-52.16128339096655],[-73.70893708937089,-52.17816916366538],[-73.70893708937089,-52.186612050014794]]],[[[-73.78813788137882,-51.735761918956115],[-73.77733777337772,-51.74927053711518],[-73.77013770137701,-51.766156309814],[-73.77013770137701,-51.78135350524295],[-73.78453784537845,-51.78979639159236],[-73.79173791737917,-51.78473065978271],[-73.7989379893799,-51.779664927973066],[-73.80613806138061,-51.777976350703184],[-73.81693816938169,-51.7762877734333],[-73.80613806138061,-51.793173546132124],[-73.79533795337953,-51.80499358702131],[-73.79533795337953,-51.81343647337072],[-73.82053820538205,-51.816813627910484],[-73.83853838538386,-51.81343647337072],[-73.85653856538565,-51.80161643248154],[-73.86733867338673,-51.7864192370526],[-73.8781387813878,-51.759402000734475],[-73.88533885338853,-51.740827650765766],[-73.89973899738997,-51.72225330079706],[-73.91053910539105,-51.71381041444764],[-73.92853928539284,-51.70874468263799],[-73.93933939339394,-51.695236064478934],[-73.93933939339394,-51.678350291780106],[-73.93933939339394,-51.66315309635116],[-73.93213932139321,-51.65639878727163],[-73.90693906939069,-51.66315309635116],[-73.87093870938709,-51.68003886904999],[-73.86013860138601,-51.68510460085963],[-73.85293852938528,-51.68341602358975],[-73.84933849338493,-51.68341602358975],[-73.84573845738457,-51.693547487209045],[-73.84573845738457,-51.70199037355846],[-73.85293852938528,-51.72056472352717],[-73.85293852938528,-51.72900760987658],[-73.83853838538386,-51.73238476441635],[-73.80613806138061,-51.72900760987658],[-73.78813788137882,-51.735761918956115]]],[[[-74.19854198541985,-51.426752278567584],[-74.22374223742237,-51.42168654675793],[-74.23814238142381,-51.409866505868756],[-74.24174241742418,-51.39466931043981],[-74.22014220142201,-51.37947211501086],[-74.24894248942489,-51.37102922866145],[-74.25974259742597,-51.35245487869274],[-74.26334263342633,-51.327126219644505],[-74.26334263342633,-51.30010898332638],[-74.2561425614256,-51.28997751970708],[-74.23814238142381,-51.29166609697697],[-74.21654216542166,-51.29335467424685],[-74.20574205742057,-51.29335467424685],[-74.19134191341914,-51.28660036516732],[-74.1769417694177,-51.283223210627554],[-74.16614166141662,-51.28660036516732],[-74.15894158941589,-51.30010898332638],[-74.15894158941589,-51.308551869675796],[-74.15534155341552,-51.31868333329509],[-74.14454144541445,-51.3372576832638],[-74.13734137341373,-51.34907772415298],[-74.11934119341193,-51.37102922866145],[-74.11214112141121,-51.37947211501086],[-74.10854108541085,-51.40142361951934],[-74.10854108541085,-51.428440855837465],[-74.11934119341193,-51.447015205806174],[-74.13734137341373,-51.447015205806174],[-74.15894158941589,-51.41830939221817],[-74.16614166141662,-51.41324366040852],[-74.1769417694177,-51.41324366040852],[-74.18774187741877,-51.423375124027814],[-74.19854198541985,-51.426752278567584]]],[[[-73.79173791737917,-51.25789455157931],[-73.76653766537665,-51.28153463335767],[-73.75573755737557,-51.29842040605649],[-73.75933759337593,-51.31361760148544],[-73.76653766537665,-51.328814796914386],[-73.77013770137701,-51.347389146883096],[-73.77733777337772,-51.36427491958192],[-73.79533795337953,-51.37102922866145],[-73.80253802538024,-51.36934065139157],[-73.80973809738097,-51.365963496851805],[-73.81333813338134,-51.35920918777227],[-73.81693816938169,-51.35076630142286],[-73.83133831338313,-51.35752061050239],[-73.8421384213842,-51.360897765042154],[-73.85653856538565,-51.360897765042154],[-73.87093870938709,-51.35752061050239],[-73.88173881738817,-51.35414345596263],[-73.8889388893889,-51.345700569613214],[-73.89613896138961,-51.33556910599392],[-73.89253892538925,-51.323749065104735],[-73.88173881738817,-51.328814796914386],[-73.86013860138601,-51.323749065104735],[-73.83853838538386,-51.31530617875532],[-73.82413824138241,-51.303486137866145],[-73.87453874538745,-51.31361760148544],[-73.89973899738997,-51.31361760148544],[-73.92133921339213,-51.303486137866145],[-73.89973899738997,-51.28153463335767],[-73.86373863738638,-51.25789455157931],[-73.82413824138241,-51.24776308796002],[-73.79173791737917,-51.25789455157931]]],[[[-74.86454864548645,-51.121119792718815],[-74.86454864548645,-51.12787410179834],[-74.86094860948609,-51.136316988147755],[-74.86094860948609,-51.14307129722729],[-74.86454864548645,-51.1515141835767],[-74.87534875348753,-51.158268492656234],[-74.88974889748897,-51.159957069926115],[-74.9221492214922,-51.158268492656234],[-74.94374943749438,-51.161645647195996],[-75.0049500495005,-51.17515426535506],[-75.01935019350194,-51.17346568808517],[-75.02295022950229,-51.161645647195996],[-75.01575015750157,-51.14813702903694],[-75.0049500495005,-51.13293983360799],[-74.99774997749977,-51.12449694725858],[-74.99054990549905,-51.116054060909164],[-74.97974979749797,-51.10929975182963],[-74.9689496894969,-51.10423402001999],[-74.94374943749438,-51.10085686548022],[-74.91134911349113,-51.102545442750106],[-74.8789487894879,-51.10929975182963],[-74.86454864548645,-51.121119792718815]]],[[[-74.42174421744217,-51.11098832909952],[-74.39294392943928,-51.1228083699887],[-74.38574385743857,-51.14307129722729],[-74.38934389343893,-51.17008853354541],[-74.40374403744038,-51.19204003805389],[-74.41454414544145,-51.200482924403296],[-74.42534425344253,-51.20554865621295],[-74.43254432544325,-51.20554865621295],[-74.44334443344432,-51.202171501673185],[-74.45414454144542,-51.19204003805389],[-74.46134461344613,-51.18866288351412],[-74.47574475744757,-51.18190857443459],[-74.51894518945188,-51.16839995627553],[-74.55134551345513,-51.16671137900565],[-74.57294572945729,-51.154891338116464],[-74.5909459094591,-51.12956267906823],[-74.60174601746017,-51.10085686548022],[-74.60534605346054,-51.08059393824163],[-74.50454504545046,-51.02149373379574],[-74.48654486544865,-51.02149373379574],[-74.47214472144721,-51.0248708883355],[-74.45774457744577,-51.03331377468491],[-74.45414454144542,-51.04513381557409],[-74.46134461344613,-51.06201958827292],[-74.47214472144721,-51.06877389735245],[-74.48654486544865,-51.06539674281268],[-74.49374493744936,-51.04851097011386],[-74.51174511745117,-51.060331011003036],[-74.52254522545225,-51.078905360971746],[-74.51894518945188,-51.09579113367057],[-74.50454504545046,-51.10423402001999],[-74.49734497344973,-51.10592259728987],[-74.47214472144721,-51.11098832909952],[-74.45414454144542,-51.11943121544893],[-74.44334443344432,-51.117742638179045],[-74.43254432544325,-51.1126769063694],[-74.42174421744217,-51.11098832909952]]],[[[-74.97974979749797,-50.79860153417122],[-74.97974979749797,-50.8002901114411],[-74.98334983349834,-50.80366726598086],[-75.00135001350013,-50.81211015233028],[-75.0049500495005,-50.81379872960016],[-75.00855008550086,-50.81379872960016],[-75.01575015750157,-50.81211015233028],[-75.03735037350373,-50.80535584325075],[-75.06615066150661,-50.791847225091686],[-75.07335073350733,-50.790158647821805],[-75.08415084150842,-50.78340433874227],[-75.09855098550985,-50.75469852515427],[-75.10215102151021,-50.74456706153497],[-75.11295112951129,-50.73274702064579],[-75.11295112951129,-50.72092697975661],[-75.10575105751057,-50.7124840934072],[-75.09135091350913,-50.707418361597554],[-75.08055080550805,-50.71079551613732],[-75.06615066150661,-50.71923840248673],[-75.05535055350553,-50.72092697975661],[-75.04455044550446,-50.707418361597554],[-75.06255062550625,-50.69222116616861],[-75.08055080550805,-50.670269661660136],[-75.08055080550805,-50.65507246623119],[-75.05175051750517,-50.65338388896131],[-75.04455044550446,-50.65507246623119],[-75.03735037350373,-50.65844962077095],[-75.02655026550265,-50.66858108439025],[-75.01935019350194,-50.6736468161999],[-75.01575015750157,-50.67195823893002],[-75.01215012150121,-50.66858108439025],[-75.00855008550086,-50.666892507120366],[-75.00135001350013,-50.66182677531072],[-74.99054990549905,-50.65507246623119],[-74.98694986949869,-50.65676104350107],[-74.98334983349834,-50.67702397073966],[-74.98334983349834,-50.688844011628845],[-74.99414994149942,-50.71079551613732],[-74.99774997749977,-50.72430413429638],[-74.99774997749977,-50.75807567969403],[-74.99774997749977,-50.78171576147239],[-74.99774997749977,-50.791847225091686],[-74.98694986949869,-50.79691295690134],[-74.98334983349834,-50.79691295690134],[-74.97974979749797,-50.79860153417122]]],[[[-74.78174781747818,-50.48114900743327],[-74.77814778147781,-50.460886080194676],[-74.76734767347673,-50.44400030749585],[-74.73494734947349,-50.41191733936808],[-74.74574745747456,-50.40854018482831],[-74.76374763747637,-50.398408721209016],[-74.73494734947349,-50.37139148489089],[-74.69534695346952,-50.36294859854148],[-74.60894608946089,-50.36463717581137],[-74.59814598145981,-50.36632575308125],[-74.58014580145802,-50.376457216700544],[-74.56934569345692,-50.378145793970425],[-74.54774547745477,-50.378145793970425],[-74.5441454414544,-50.38152294851019],[-74.5441454414544,-50.39165441212949],[-74.5549455494555,-50.40347445301867],[-74.58014580145802,-50.4102287620982],[-74.62694626946269,-50.41191733936808],[-74.62694626946269,-50.418671648447614],[-74.62334623346233,-50.42880311206691],[-74.62694626946269,-50.438934575686204],[-74.64134641346413,-50.4490660393055],[-74.65574655746558,-50.454131771115144],[-74.67374673746737,-50.454131771115144],[-74.68454684546845,-50.45750892565491],[-74.72054720547204,-50.48959189378268],[-74.73134731347314,-50.49296904832245],[-74.74574745747456,-50.49465762559233],[-74.77814778147781,-50.49296904832245],[-74.78534785347853,-50.48959189378268],[-74.78174781747818,-50.48114900743327]]],[[[-75.51975519755197,-49.37850805019987],[-75.50535505355053,-49.38695093654928],[-75.49095490954909,-49.40383670924811],[-75.46935469354693,-49.40383670924811],[-75.4621546215462,-49.41903390467705],[-75.46575465754657,-49.434231100106],[-75.46935469354693,-49.44942829553494],[-75.45855458554585,-49.45787118188436],[-75.44415444154441,-49.44942829553494],[-75.4369543695437,-49.45787118188436],[-75.42975429754297,-49.46631406823377],[-75.43335433354333,-49.47982268639283],[-75.43335433354333,-49.489954150012125],[-75.42975429754297,-49.50177419090131],[-75.44055440554405,-49.51697138633025],[-75.45135451354513,-49.51865996360013],[-75.45495454954549,-49.510217077250715],[-75.46575465754657,-49.49839703636154],[-75.49095490954909,-49.495019881821776],[-75.49815498154982,-49.48488841820248],[-75.51255512555124,-49.47813410912295],[-75.53055530555305,-49.46462549096388],[-75.5449554495545,-49.452805450074706],[-75.53775537755376,-49.44098540918553],[-75.51975519755197,-49.43929683191565],[-75.50175501755017,-49.43760825464576],[-75.50175501755017,-49.42072248194694],[-75.51615516155161,-49.413968172867406],[-75.53415534155342,-49.42072248194694],[-75.54855548555486,-49.41059101832764],[-75.54135541355413,-49.390328091089046],[-75.51975519755197,-49.37850805019987]]],[[[-74.90414904149041,-49.07625271889086],[-74.88974889748897,-49.09482706885957],[-74.89334893348934,-49.13704150060664],[-74.91494914949149,-49.206273168671835],[-74.91494914949149,-49.25186475495867],[-74.9221492214922,-49.27212768219726],[-74.93654936549365,-49.28057056854667],[-74.94734947349473,-49.27719341400691],[-74.96174961749617,-49.27043910492738],[-75.01215012150121,-49.2383561367996],[-75.0589505895059,-49.19614170505254],[-75.08055080550805,-49.17250162327418],[-75.07335073350733,-49.16743589146453],[-75.06975069750698,-49.16574731419465],[-75.06255062550625,-49.16574731419465],[-75.0589505895059,-49.16574731419465],[-75.09135091350913,-49.158993005115114],[-75.20295202952029,-49.17250162327418],[-75.20295202952029,-49.16574731419465],[-75.16695166951669,-49.145484386956056],[-75.1309513095131,-49.13704150060664],[-75.12015120151202,-49.13197576879699],[-75.15615156151561,-49.12859861425723],[-75.20295202952029,-49.140418655146405],[-75.23535235352354,-49.145484386956056],[-75.22815228152281,-49.11677857336805],[-75.2209522095221,-49.10664710974876],[-75.15975159751598,-49.05092405984262],[-75.13815138151381,-49.04585832803298],[-75.09855098550985,-49.04923548257274],[-75.10935109351094,-49.044169750763096],[-75.11655116551165,-49.037415441683564],[-75.12015120151202,-49.03066113260403],[-75.12735127351273,-49.02221824625462],[-75.11295112951129,-49.0239068235245],[-75.0949509495095,-49.03066113260403],[-75.08055080550805,-49.037415441683564],[-75.05175051750517,-49.05430121438239],[-75.01575015750157,-49.07118698708122],[-75.00135001350013,-49.07962987343063],[-74.99054990549905,-49.07625271889086],[-74.98334983349834,-49.03066113260403],[-74.97254972549725,-49.03234970987391],[-74.91854918549186,-49.07118698708122],[-74.90414904149041,-49.07625271889086]]],[[[-75.08415084150842,-48.63722262872136],[-75.07335073350733,-48.63722262872136],[-75.06255062550625,-48.64397693780089],[-75.0589505895059,-48.65410840142019],[-75.0589505895059,-48.670994174119016],[-75.0589505895059,-48.69969998770702],[-75.08055080550805,-48.74866872853362],[-75.08415084150842,-48.770620233042095],[-75.08775087750877,-48.78244027393128],[-75.09855098550985,-48.79594889209034],[-75.10935109351094,-48.8094575102494],[-75.12015120151202,-48.81790039659881],[-75.1309513095131,-48.8195889738687],[-75.14895148951489,-48.8195889738687],[-75.21375213752137,-48.80270320116987],[-75.23175231752317,-48.794260314820455],[-75.24615246152462,-48.78412885120116],[-75.24975249752497,-48.76724307850233],[-75.22815228152281,-48.752045883073386],[-75.20295202952029,-48.74360299672397],[-75.18135181351813,-48.74022584218421],[-75.18135181351813,-48.73347153310468],[-75.18135181351813,-48.71827433767573],[-75.13815138151381,-48.69125710135761],[-75.12735127351273,-48.667617019579254],[-75.0949509495095,-48.64228836053101],[-75.08415084150842,-48.63722262872136]]],[[[-75.02295022950229,-48.689568524087726],[-75.01935019350194,-48.68112563773831],[-75.0049500495005,-48.68112563773831],[-74.97614976149761,-48.68450279227808],[-74.99054990549905,-48.67774848319855],[-75.0049500495005,-48.667617019579254],[-75.00855008550086,-48.65579697869007],[-75.00855008550086,-48.63722262872136],[-74.9689496894969,-48.65241982415031],[-74.94734947349473,-48.65579697869007],[-74.89694896948969,-48.64228836053101],[-74.87174871748716,-48.645665515070775],[-74.82494824948249,-48.65917413322984],[-74.82494824948249,-48.664239865039484],[-74.85374853748537,-48.67605990592867],[-74.92934929349293,-48.71996291494562],[-74.98694986949869,-48.74022584218421],[-75.02295022950229,-48.74529157399385],[-75.04455044550446,-48.73347153310468],[-75.04095040950409,-48.71827433767573],[-75.02655026550265,-48.69969998770702],[-75.02295022950229,-48.689568524087726]]],[[[-75.33975339753397,-48.6237140105623],[-75.32895328953289,-48.627091165102065],[-75.32535325353253,-48.6338454741816],[-75.32895328953289,-48.64059978326113],[-75.33615336153362,-48.64397693780089],[-75.33975339753397,-48.645665515070775],[-75.34335343353433,-48.650731246880426],[-75.3469534695347,-48.65579697869007],[-75.34335343353433,-48.66086271049972],[-75.33975339753397,-48.6625512877696],[-75.32895328953289,-48.65917413322984],[-75.32175321753218,-48.65917413322984],[-75.30735307353073,-48.65748555595996],[-75.30375303753037,-48.65748555595996],[-75.29655296552966,-48.664239865039484],[-75.28935289352893,-48.67774848319855],[-75.28575285752858,-48.69463425589738],[-75.28935289352893,-48.713208605866086],[-75.29655296552966,-48.726717224025144],[-75.31455314553145,-48.73347153310468],[-75.32535325353253,-48.73516011037456],[-75.33615336153362,-48.73684868764444],[-75.34335343353433,-48.73684868764444],[-75.35775357753577,-48.730094378564914],[-75.36135361353614,-48.726717224025144],[-75.37575375753757,-48.726717224025144],[-75.37935379353793,-48.72334006948538],[-75.37935379353793,-48.71658576040585],[-75.37215372153722,-48.70307714224679],[-75.37215372153722,-48.69801141043714],[-75.36495364953649,-48.69801141043714],[-75.3829538295383,-48.69632283316726],[-75.39735397353974,-48.70645429678655],[-75.42255422554226,-48.73347153310468],[-75.42975429754297,-48.73684868764444],[-75.44775447754478,-48.74360299672397],[-75.45495454954549,-48.74698015126374],[-75.4621546215462,-48.752045883073386],[-75.4729547295473,-48.76386592396256],[-75.47655476554765,-48.76724307850233],[-75.49455494554945,-48.775685964851746],[-75.5089550895509,-48.77906311939151],[-75.5521555215552,-48.78075169666139],[-75.59175591755917,-48.792571737550574],[-75.61335613356133,-48.794260314820455],[-75.63135631356313,-48.78750600574092],[-75.64935649356494,-48.77906311939151],[-75.65295652956529,-48.7604887694228],[-75.65295652956529,-48.71658576040585],[-75.64215642156421,-48.7013885649769],[-75.61335613356133,-48.70307714224679],[-75.55935559355594,-48.71996291494562],[-75.5089550895509,-48.71827433767573],[-75.4621546215462,-48.69969998770702],[-75.3469534695347,-48.627091165102065],[-75.33975339753397,-48.6237140105623]]],[[[-74.09054090540906,-48.48018494262227],[-74.11214112141121,-48.47343063354274],[-74.18054180541804,-48.443036242684855],[-74.20214202142022,-48.42277331544626],[-74.24534245342453,-48.39406750185825],[-74.25254252542526,-48.377181729159425],[-74.23454234542345,-48.36873884281001],[-74.2129421294213,-48.36367311100037],[-74.19494194941949,-48.36367311100037],[-74.16254162541625,-48.37380457461966],[-74.11934119341193,-48.40419896547755],[-74.08694086940869,-48.41095327455708],[-74.05814058140581,-48.42615046998603],[-74.05454054540544,-48.45485628357403],[-74.06894068940689,-48.48018494262227],[-74.09054090540906,-48.48018494262227]]],[[[-74.49374493744936,-48.3501644928413],[-74.45774457744577,-48.340033029222006],[-74.42534425344253,-48.34678733830154],[-74.36054360543605,-48.3704274200799],[-74.3821438214382,-48.34847591557142],[-74.39654396543965,-48.32990156560271],[-74.39294392943928,-48.31301579290388],[-74.37134371343713,-48.294441442935174],[-74.35694356943569,-48.28768713385564],[-74.34614346143461,-48.282621402046],[-74.33174331743317,-48.280932824776116],[-74.31374313743137,-48.280932824776116],[-74.29934299342993,-48.28768713385564],[-74.29934299342993,-48.30457290655447],[-74.31014310143101,-48.33327872014248],[-74.3029430294303,-48.36367311100037],[-74.28134281342813,-48.38562461550884],[-74.23094230942309,-48.421084738176376],[-74.22374223742237,-48.444724819954736],[-74.24174241742418,-48.45992201538368],[-74.27054270542705,-48.463299169923445],[-74.3389433894339,-48.42277331544626],[-74.46134461344613,-48.38393603823896],[-74.49374493744936,-48.3501644928413]]],[[[-74.46854468544684,-47.07528865407987],[-74.43974439744397,-47.061780035920805],[-74.40014400144001,-47.04995999503163],[-74.35694356943569,-47.04489426322198],[-74.32454324543245,-47.05333714957139],[-74.31734317343174,-47.06515719046057],[-74.31734317343174,-47.07866580861963],[-74.32094320943209,-47.09048584950881],[-74.33174331743317,-47.10230589039799],[-74.34254342543426,-47.10906019947752],[-74.37854378543786,-47.1208802403667],[-74.39294392943928,-47.129323126716116],[-74.43974439744397,-47.163094672113765],[-74.45414454144542,-47.168160403923416],[-74.46854468544684,-47.166471826653535],[-74.47214472144721,-47.159717517574],[-74.46134461344613,-47.147897476684825],[-74.46854468544684,-47.13776601306553],[-74.48294482944829,-47.124257394906465],[-74.49014490144901,-47.11581450855705],[-74.49374493744936,-47.09892873585822],[-74.48654486544865,-47.08710869496905],[-74.47934479344794,-47.080354385889514],[-74.46854468544684,-47.07528865407987]]],[[[-74.07614076140761,-47.019565604173735],[-74.04734047340473,-47.022942758713505],[-74.02214022140221,-47.02969706779304],[-73.97533975339753,-47.04827141776175],[-74.02214022140221,-47.080354385889514],[-74.02934029340292,-47.09217442677869],[-74.03654036540365,-47.10737162220764],[-74.0509405094051,-47.124257394906465],[-74.06894068940689,-47.13776601306553],[-74.14454144541445,-47.17153755846318],[-74.17334173341733,-47.1698489811933],[-74.18414184141841,-47.159717517574],[-74.1769417694177,-47.15127463122459],[-74.15174151741518,-47.15127463122459],[-74.15534155341552,-47.147897476684825],[-74.16254162541625,-47.13945459033541],[-74.16614166141662,-47.13607743579564],[-74.17334173341733,-47.13438885852576],[-74.1769417694177,-47.13270028125588],[-74.20934209342093,-47.131011703986],[-74.22014220142201,-47.129323126716116],[-74.22734227342274,-47.122568817636584],[-74.23094230942309,-47.10230589039799],[-74.22374223742237,-47.07866580861963],[-74.2129421294213,-47.05840288138104],[-74.18414184141841,-47.022942758713505],[-74.1769417694177,-47.01618844963397],[-74.16614166141662,-47.01281129509421],[-74.15534155341552,-47.01449987236409],[-74.12654126541265,-47.02631991325327],[-74.11934119341193,-47.02969706779304],[-74.11214112141121,-47.05333714957139],[-74.0941409414094,-47.04827141776175],[-74.07974079740796,-47.02969706779304],[-74.07614076140761,-47.019565604173735]]],[[[-74.79254792547925,-45.63324366560004],[-74.74934749347493,-45.69740960185558],[-74.75294752947529,-45.69909817912547],[-74.77094770947708,-45.704163910935115],[-74.77454774547745,-45.705852488205],[-74.7961479614796,-45.69740960185558],[-74.85374853748537,-45.6568837473784],[-74.86454864548645,-45.65181801556875],[-74.87174871748716,-45.65012943829887],[-74.87534875348753,-45.646752283759106],[-74.8789487894879,-45.63493224286992],[-74.8789487894879,-45.62480077925063],[-74.87534875348753,-45.61298073836145],[-74.86814868148682,-45.60453785201204],[-74.86094860948609,-45.601160697472274],[-74.83934839348393,-45.601160697472274],[-74.81414814148141,-45.60453785201204],[-74.79974799747997,-45.61466931563133],[-74.79254792547925,-45.63324366560004]]],[[[-73.82413824138241,-45.395154270546584],[-73.83853838538386,-45.41035146597552],[-73.86373863738638,-45.420482929594826],[-73.89253892538925,-45.42723723867435],[-73.92133921339213,-45.43061439321412],[-73.98253982539825,-45.420482929594826],[-74.01134011340113,-45.41204004324541],[-74.02214022140221,-45.3934656932767],[-74.00774007740077,-45.37995707511764],[-73.97533975339753,-45.371514188768224],[-73.93933939339394,-45.36644845695858],[-73.89253892538925,-45.376579920577875],[-73.85653856538565,-45.371514188768224],[-73.82773827738276,-45.371514188768224],[-73.82413824138241,-45.395154270546584]]],[[[-74.77814778147781,-44.58126002646312],[-74.74214742147421,-44.572817140113706],[-74.73134731347314,-44.5930800673523],[-74.73854738547385,-44.62685161274995],[-74.74934749347493,-44.65555742633796],[-74.74934749347493,-44.66568888995726],[-74.76374763747637,-44.672443199036785],[-74.78534785347853,-44.677508930846436],[-74.80334803348033,-44.67413177630667],[-74.81774817748177,-44.65555742633796],[-74.82494824948249,-44.63022876728972],[-74.82854828548285,-44.60490010824148],[-74.82494824948249,-44.58126002646312],[-74.81414814148141,-44.55930852195465],[-74.79974799747997,-44.54917705833535],[-74.78174781747818,-44.55593136741488],[-74.77814778147781,-44.58126002646312]]],[[[-74.03654036540365,-44.49851974023887],[-74.05814058140581,-44.4765682357304],[-74.14454144541445,-44.45799388576168],[-74.16614166141662,-44.43097664944356],[-74.15534155341552,-44.432665226713446],[-74.14454144541445,-44.43773095852309],[-74.13734137341373,-44.44448526760262],[-74.12654126541265,-44.451239576682156],[-74.11214112141121,-44.45292815395204],[-74.0149401494015,-44.4563053084918],[-74.0041400414004,-44.45968246303157],[-73.98253982539825,-44.469813926650865],[-73.97173971739717,-44.471502503920746],[-73.95733957339573,-44.47994539027016],[-73.95013950139501,-44.49851974023887],[-73.94653946539465,-44.5441113265257],[-73.96093960939609,-44.550865635605234],[-73.98973989739898,-44.554242790145],[-74.04734047340473,-44.552554212875116],[-74.06894068940689,-44.552554212875116],[-74.10134101341013,-44.54579990379558],[-74.12654126541265,-44.533979862906406],[-74.13374133741337,-44.51878266747746],[-74.11934119341193,-44.51202835839793],[-74.03654036540365,-44.49851974023887]]],[[[-73.74493744937449,-43.953109282066755],[-73.72693726937268,-43.94128924117758],[-73.71253712537126,-43.937912086637816],[-73.70173701737016,-43.94466639571734],[-73.70893708937089,-43.96324074568605],[-73.69093690936909,-43.9683064774957],[-73.66933669336693,-43.978437941115],[-73.65133651336512,-43.99194655927406],[-73.64053640536405,-44.00545517743312],[-73.64053640536405,-44.018963795592185],[-73.64773647736477,-44.0274066819416],[-73.65493654936549,-44.037538145560895],[-73.64773647736477,-44.052735340989834],[-73.61533615336153,-44.07299826822843],[-73.61173611736118,-44.08481830911761],[-73.61893618936189,-44.10845839089597],[-73.63333633336333,-44.12365558632491],[-73.65133651336512,-44.13209847267432],[-73.66573665736657,-44.13040989540444],[-73.6729367293673,-44.115212699975494],[-73.66933669336693,-44.0949497727369],[-73.6729367293673,-44.081441154577846],[-73.68373683736837,-44.06962111368866],[-73.70893708937089,-44.056112495529604],[-73.72333723337233,-44.05104676371995],[-73.73053730537305,-44.04598103191031],[-73.73053730537305,-44.037538145560895],[-73.73413734137341,-44.0172752183223],[-73.73773737737378,-44.00883233197288],[-73.74853748537485,-43.997012291083706],[-73.75573755737557,-43.98519225019453],[-73.75573755737557,-43.971683632035464],[-73.74493744937449,-43.953109282066755]]],[[[-73.60453604536045,-42.57860738438224],[-73.60093600936008,-42.593804579811184],[-73.60813608136081,-42.62251039339919],[-73.60813608136081,-42.637707588828135],[-73.61533615336153,-42.63939616609802],[-73.65493654936549,-42.62419897066907],[-73.6729367293673,-42.62251039339919],[-73.68733687336874,-42.62419897066907],[-73.70533705337053,-42.62757612520884],[-73.71973719737197,-42.63433043428837],[-73.73413734137341,-42.62588754793896],[-73.74853748537485,-42.612378929779894],[-73.75573755737557,-42.598870311620836],[-73.73773737737378,-42.5921160025413],[-73.66213662136622,-42.58705027073165],[-73.64773647736477,-42.58198453892201],[-73.63333633336333,-42.57185307530271],[-73.62253622536225,-42.56847592076294],[-73.60453604536045,-42.57860738438224]]],[[[-72.54252542525425,-42.141265871482624],[-72.60732607326072,-42.11256005789462],[-72.61812618126181,-42.104117171545205],[-72.61092610926109,-42.08891997611626],[-72.5929259292593,-42.07203420341743],[-72.57492574925749,-42.056837007988484],[-72.56052560525605,-42.05177127617884],[-72.52812528125281,-42.05345985344872],[-72.51372513725137,-42.060214162528254],[-72.510125101251,-42.07372278068731],[-72.50652506525064,-42.11593721243438],[-72.50652506525064,-42.13957729421274],[-72.51732517325173,-42.15139733510192],[-72.54252542525425,-42.141265871482624]]],[[[-73.0861308613086,-41.84407627198327],[-73.08973089730897,-41.835633385633855],[-73.08253082530825,-41.82719049928444],[-73.07533075330753,-41.81874761293503],[-73.07173071730718,-41.811993303855495],[-73.0861308613086,-41.771467449378314],[-73.0861308613086,-41.74782736759995],[-73.06813068130681,-41.73769590398066],[-73.05373053730537,-41.74782736759995],[-73.02493024930249,-41.80861614931573],[-73.01053010530104,-41.82550192201456],[-73.00333003330033,-41.84407627198327],[-73.01053010530104,-41.85758489014233],[-73.03573035730356,-41.8609620446821],[-73.06453064530645,-41.855896312872446],[-73.07533075330753,-41.850830581062795],[-73.0861308613086,-41.84407627198327]]],[[[-62.08442084420844,-39.02415223127916],[-62.09882098820988,-39.034283694898456],[-62.120421204212036,-39.032595117628574],[-62.131221312213114,-39.0207750767394],[-62.120421204212036,-39.00220072677069],[-62.04122041220411,-39.00557788131045],[-62.001620016200164,-39.014020767659865],[-61.97281972819728,-39.034283694898456],[-61.96561965619655,-39.04779231305752],[-61.976419764197644,-39.057923776676816],[-61.99081990819907,-39.06467808575635],[-62.00882008820088,-39.06467808575635],[-62.030420304203034,-39.057923776676816],[-62.08442084420844,-39.02415223127916]]],[[[77.50337503375033,-37.82357379239256],[77.54297542975428,-37.820196637852796],[77.57537575375756,-37.843836719631156],[77.58617586175865,-37.87423111048904],[77.56457564575646,-37.89280546045775],[77.53577535775361,-37.901248346807165],[77.50337503375033,-37.882673996838456],[77.48897488974893,-37.85227960598057],[77.50337503375033,-37.82357379239256]]],[[[63.47763477634777,-19.678122450233076],[63.49563495634956,-19.681499604772853],[63.48843488434886,-19.701762532011443],[63.47043470434704,-19.723714036519922],[63.43803438034382,-19.73384550013921],[63.416434164341666,-19.737222654678973],[63.40203402034021,-19.745665541028387],[63.38403384033842,-19.75579700464769],[63.366033660336626,-19.767617045536866],[63.33723337233374,-19.73891123194886],[63.33363333633338,-19.737222654678973],[63.33363333633338,-19.71864830471027],[63.34443344433444,-19.710205418360857],[63.355233552335534,-19.705139686551206],[63.38763387633878,-19.684876759312615],[63.420034200342,-19.674745295693313],[63.456034560345614,-19.669679563883676],[63.47763477634777,-19.678122450233076]]],[[[163.68103681036814,-19.740599809218736],[163.69543695436954,-19.757485581917564],[163.69543695436954,-19.764239890997104],[163.67023670236705,-19.787879972775457],[163.64143641436414,-19.723714036519922],[163.63783637836377,-19.701762532011443],[163.63783637836377,-19.661236677534262],[163.6306363063631,-19.64603948210531],[163.61623616236164,-19.63590801848602],[163.62343623436237,-19.62408797759683],[163.63783637836377,-19.632530863946243],[163.64863648636486,-19.64603948210531],[163.67023670236705,-19.69331964566203],[163.67743677436778,-19.725402613789797],[163.68103681036814,-19.740599809218736]]],[[[179.94239942399423,-18.55690714303097],[179.94959949599496,-18.563661452110495],[179.95319953199532,-18.568727183920146],[179.9459994599946,-18.580547224809322],[179.9207992079921,-18.585612956618974],[179.909999099991,-18.595744420238276],[179.8919989199892,-18.60925303839734],[179.89919899198992,-18.617695924746755],[179.91359913599138,-18.610941615667215],[179.91719917199174,-18.610941615667215],[179.9207992079921,-18.622761656556392],[179.90279902799028,-18.637958851985346],[179.89919899198992,-18.658221779223936],[179.88119881198816,-18.663287511033587],[179.87399873998743,-18.64640173833476],[179.87039870398706,-18.62951596563593],[179.85959859598597,-18.621073079286518],[179.85239852398524,-18.610941615667215],[179.83439834398348,-18.600810152047927],[179.83079830798312,-18.588990111158736],[179.84879848798488,-18.580547224809322],[179.88839888398883,-18.56703860665027],[179.92799927999283,-18.558595720300858],[179.94239942399423,-18.55690714303097]]],[[[177.55917559175595,-16.677520641651526],[177.58077580775807,-16.677520641651526],[177.59157591575917,-16.68596352800094],[177.59517595175953,-16.699472146160005],[177.5879758797588,-16.718046496128707],[177.58077580775807,-16.72817795974801],[177.5627756277563,-16.739998000637186],[177.55917559175595,-16.7484408869866],[177.55557555575558,-16.75350661879625],[177.49437494374945,-16.802475359622846],[177.479974799748,-16.817672555051786],[177.47277472774726,-16.834558327750614],[177.46197461974623,-16.829492595940977],[177.45837458374587,-16.827804018671088],[177.4547745477455,-16.83286975048074],[177.4439744397444,-16.83793548229039],[177.43677436774368,-16.839624059560265],[177.42957429574295,-16.834558327750614],[177.42957429574295,-16.827804018671088],[177.43677436774368,-16.804163936892735],[177.43677436774368,-16.794032473273433],[177.4439744397444,-16.794032473273433],[177.4547745477455,-16.80585251416261],[177.47637476374763,-16.797409627813195],[177.51237512375127,-16.758572350605903],[177.55917559175595,-16.721423650668484],[177.57357573575734,-16.699472146160005],[177.55917559175595,-16.677520641651526]]],[[[167.15867158671585,-15.539419561750591],[167.17667176671767,-15.530976675401178],[167.19107191071913,-15.530976675401178],[167.19107191071913,-15.536042407210829],[167.18027180271804,-15.539419561750591],[167.18027180271804,-15.546173870830117],[167.18747187471877,-15.547862448100005],[167.19107191071913,-15.55461675717953],[167.19107191071913,-15.559682488989182],[167.1838718387184,-15.566436798068708],[167.2090720907209,-15.578256838957884],[167.2090720907209,-15.5968311889266],[167.1946719467195,-15.606962652545903],[167.1730717307173,-15.600208343466363],[167.16947169471695,-15.605274075276014],[167.16587165871658,-15.606962652545903],[167.15867158671585,-15.608651229815777],[167.14427144271446,-15.605274075276014],[167.13347133471336,-15.601896920736252],[167.10827108271081,-15.586699725307298],[167.15867158671585,-15.539419561750591]]],[[[166.57546575465756,-13.155148456676216],[166.56826568265683,-13.156837033946104],[166.56826568265683,-13.161902765755755],[166.56826568265683,-13.166968497565392],[166.56826568265683,-13.175411383914806],[166.56466564665647,-13.178788538454569],[166.56466564665647,-13.182165692994346],[166.5610656106561,-13.185542847534109],[166.55386553865537,-13.188920002073871],[166.53946539465397,-13.180477115724457],[166.52866528665288,-13.17034565210517],[166.52506525065252,-13.155148456676216],[166.52866528665288,-13.133196952167737],[166.53226532265325,-13.10617971584962],[166.5358653586536,-13.096048252230318],[166.53226532265325,-13.087605365880904],[166.52506525065252,-13.082539634071267],[166.52146521465215,-13.077473902261616],[166.52146521465215,-13.06565386137244],[166.55386553865537,-13.074096747721853],[166.5610656106561,-13.07916247953149],[166.56826568265683,-13.089293943150793],[166.5718657186572,-13.111245447659272],[166.57546575465756,-13.119688334008686],[166.57546575465756,-13.126442643088211],[166.5718657186572,-13.131508374897862],[166.56826568265683,-13.138262683977388],[166.56826568265683,-13.145016993056927],[166.57546575465756,-13.155148456676216]]],[[[166.55746557465574,-11.284204841646186],[166.5358653586536,-11.30784492342454],[166.52506525065252,-11.309533500694428],[166.5178651786518,-11.311222077964317],[166.5070650706507,-11.309533500694428],[166.49986499865003,-11.304467768884777],[166.49986499865003,-11.297713459805252],[166.49986499865003,-11.289270573455838],[166.5070650706507,-11.280827687106424],[166.51066510665106,-11.274073378026898],[166.51066510665106,-11.260564759867833],[166.49626496264966,-11.269007646217247],[166.4818648186482,-11.279139109836535],[166.47826478264784,-11.270696223487121],[166.47826478264784,-11.247056141708768],[166.4926649266493,-11.228481791740066],[166.51066510665106,-11.213284596311112],[166.52506525065252,-11.208218864501461],[166.53946539465397,-11.214973173581],[166.55746557465574,-11.226793214470177],[166.56466564665647,-11.240301832629243],[166.56466564665647,-11.260564759867833],[166.55746557465574,-11.284204841646186]]],[[[158.48618486184864,-7.6098607023814395],[158.5005850058501,-7.616615011460965],[158.5149851498515,-7.63012362962003],[158.5257852578526,-7.647009402318858],[158.52218522185223,-7.658829443208035],[158.50778507785077,-7.660518020477923],[158.49338493384937,-7.650386556858621],[158.48258482584828,-7.636877938699556],[158.47538475384755,-7.623369320540505],[158.46458464584646,-7.636877938699556],[158.4465844658447,-7.633500784159793],[158.4069840698407,-7.6098607023814395],[158.41058410584105,-7.619992166000728],[158.42138421384215,-7.643632247779095],[158.41058410584105,-7.643632247779095],[158.38538385383856,-7.636877938699556],[158.36378363783638,-7.636877938699556],[158.36378363783638,-7.631812206889904],[158.360183601836,-7.616615011460965],[158.34938349383498,-7.6031063933019],[158.3277832778328,-7.596352084222374],[158.32418324183243,-7.592974929682612],[158.32058320583207,-7.586220620603072],[158.3169831698317,-7.5794663115235466],[158.32058320583207,-7.576089156983784],[158.33138331383316,-7.577777734253658],[158.3457834578346,-7.581154888793435],[158.35298352983529,-7.582843466063309],[158.35298352983529,-7.584532043333198],[158.36378363783638,-7.586220620603072],[158.36738367383674,-7.582843466063309],[158.36378363783638,-7.572712002444021],[158.36378363783638,-7.56764627063437],[158.36738367383674,-7.562580538824719],[158.37818378183783,-7.562580538824719],[158.38538385383856,-7.569334847904244],[158.39618396183965,-7.574400579713895],[158.42138421384215,-7.5794663115235466],[158.4357843578436,-7.594663506952486],[158.45018450184506,-7.6031063933019],[158.47178471784719,-7.608172125111551],[158.48618486184864,-7.6098607023814395]]],[[[158.36378363783638,-7.549071920665654],[158.35658356583565,-7.538940457046365],[158.34938349383498,-7.528808993427063],[158.33858338583389,-7.518677529807775],[158.3061830618306,-7.510234643458361],[158.28818288182885,-7.496726025299296],[158.2737827378274,-7.493348870759533],[158.26658266582666,-7.488283138949882],[158.2629826298263,-7.476463098060705],[158.27018270182703,-7.466331634441403],[158.27738277382775,-7.466331634441403],[158.28458284582848,-7.4730859435209425],[158.29538295382957,-7.476463098060705],[158.3061830618306,-7.483217407140231],[158.30978309783097,-7.493348870759533],[158.32418324183243,-7.48997171621977],[158.33498334983352,-7.495037448029407],[158.360183601836,-7.513611797998124],[158.3709837098371,-7.503480334378821],[158.3925839258393,-7.50516891164871],[158.41778417784178,-7.515300375267998],[158.4357843578436,-7.527120416157189],[158.4249842498425,-7.532186147966826],[158.41778417784178,-7.538940457046365],[158.41778417784178,-7.549071920665654],[158.42138421384215,-7.560891961554844],[158.37818378183783,-7.5524490752054305],[158.36378363783638,-7.549071920665654]]],[[[157.61137611376114,-7.403854275455743],[157.61857618576187,-7.4122971618051565],[157.61137611376114,-7.419051470884696],[157.61137611376114,-7.429182934503984],[157.61137611376114,-7.441002975393161],[157.61857618576187,-7.452823016282352],[157.59337593375938,-7.432560089043747],[157.589775897759,-7.447757284472701],[157.57897578975792,-7.452823016282352],[157.550175501755,-7.452823016282352],[157.550175501755,-7.446068707202812],[157.55377553775537,-7.4426915526630495],[157.56457564575646,-7.435937243583524],[157.5717757177572,-7.432560089043747],[157.53217532175324,-7.4207400481545704],[157.5177751777518,-7.413985739075045],[157.51057510575106,-7.413985739075045],[157.48537485374857,-7.413985739075045],[157.47457474574747,-7.4122971618051565],[157.4925749257493,-7.40047712091598],[157.51057510575106,-7.390345657296692],[157.5357753577536,-7.395411389106329],[157.56457564575646,-7.392034234566566],[157.589775897759,-7.393722811836454],[157.6041760417604,-7.4122971618051565],[157.61137611376114,-7.403854275455743]]],[[[157.77697776977772,-7.407231429995505],[157.77697776977772,-7.422428625424459],[157.79137791377917,-7.459577325361877],[157.79857798577984,-7.4730859435209425],[157.769777697777,-7.474774520790817],[157.75537755377553,-7.4730859435209425],[157.74097740977413,-7.466331634441403],[157.7337773377734,-7.468020211711291],[157.72657726577268,-7.471397366251054],[157.71937719377195,-7.4730859435209425],[157.71217712177122,-7.471397366251054],[157.7049770497705,-7.461265902631752],[157.69777697776976,-7.459577325361877],[157.679776797768,-7.447757284472701],[157.6905769057691,-7.422428625424459],[157.7229772297723,-7.383591348217152],[157.769777697777,-7.40047712091598],[157.77697776977772,-7.407231429995505]]],[[[121.78021780217802,-7.343065493739971],[121.81981819818202,-7.3329340301206685],[121.83781837818378,-7.356574111899036],[121.83421834218342,-7.388657080026803],[121.80901809018093,-7.403854275455743],[121.77661776617765,-7.417362893614808],[121.75861758617589,-7.415674316344919],[121.75141751417516,-7.393722811836454],[121.75501755017552,-7.378525616407501],[121.75861758617589,-7.363328420978561],[121.76941769417698,-7.351508380089385],[121.78021780217802,-7.343065493739971]]],[[[114.59454594545946,-7.1303047577347485],[114.60534605346055,-7.1303047577347485],[114.61614616146164,-7.131993335004637],[114.62334623346237,-7.137059066814274],[114.62334623346237,-7.147190530433576],[114.62334623346237,-7.164076303132404],[114.619746197462,-7.167453457672167],[114.53334533345333,-7.159010571322753],[114.5117451174512,-7.159010571322753],[114.5009450094501,-7.159010571322753],[114.49374493744938,-7.153944839513102],[114.49734497344974,-7.143813375893814],[114.5009450094501,-7.137059066814274],[114.50454504545047,-7.133681912274511],[114.54054540545405,-7.118484716845572],[114.55134551345515,-7.116796139575683],[114.55854558545587,-7.118484716845572],[114.580145801458,-7.12861618046486],[114.59454594545946,-7.1303047577347485]]],[[[123.36423364233644,-1.6728230214738744],[123.37503375033754,-1.6795773305533999],[123.38223382233821,-1.689708794172688],[123.38223382233821,-1.701528835061879],[123.3786337863379,-1.7133488759510556],[123.37143371433717,-1.720103185030581],[123.34983349833499,-1.7302346486498834],[123.34263342633426,-1.7386775349992973],[123.31743317433177,-1.7741376576668273],[123.30303303033031,-1.7876462758258924],[123.28143281432813,-1.785957698556004],[123.27063270632709,-1.769071925857176],[123.28143281432813,-1.7488089986185855],[123.33183331833317,-1.6947745259823392],[123.35703357033572,-1.6762001760136371],[123.36063360633608,-1.6745115987437487],[123.36423364233644,-1.6728230214738744]]],[[[122.14022140221402,-0.38443856455336345],[122.12222122221226,-0.3928814509027774],[122.11502115021153,-0.38950429636301465],[122.1078210782108,-0.3827499872834892],[122.09342093420935,-0.3810614100136007],[122.08982089820898,-0.38950429636301465],[122.08982089820898,-0.4013243372521913],[122.08622086220862,-0.40807864633173097],[122.07182071820722,-0.39794718271242857],[122.06102061020613,-0.3540441736954847],[122.06102061020613,-0.3287155146472429],[122.06462064620649,-0.29663254651946147],[122.07542075420753,-0.26961531020134544],[122.09342093420935,-0.26454957839169424],[122.10062100621008,-0.3152068964881778],[122.10422104221044,-0.32196120556770325],[122.1330213302133,-0.33715840099665684],[122.13662136621366,-0.347289864615945],[122.14382143821439,-0.36079848277501014],[122.14382143821439,-0.37430710093407527],[122.14022140221402,-0.38443856455336345]]],[[[119.48339483394835,4.850150972083],[119.48699486994872,4.831576622114284],[119.50139501395017,4.7994936539865165],[119.50499504995054,4.782607881287689],[119.50499504995054,4.764033531318972],[119.50139501395017,4.748836335890033],[119.49779497794981,4.733639140461094],[119.46539465394653,4.666096049665782],[119.4581945819458,4.65596458604648],[119.4581945819458,4.71844194503214],[119.46179461794617,4.775853572208163],[119.4581945819458,4.84339666300346],[119.44739447394477,4.873791053861353],[119.43659436594368,4.902496867449358],[119.44739447394477,4.905874021989121],[119.4581945819458,4.902496867449358],[119.4689946899469,4.894053981099944],[119.47619476194762,4.883922517480656],[119.47979479794799,4.875479631131242],[119.47979479794799,4.867036744781828],[119.48339483394835,4.858593858432414],[119.48339483394835,4.850150972083]]],[[[121.09621096210964,10.895257598263058],[121.09621096210964,10.873306093754579],[121.08181081810818,10.841223125626811],[121.08541085410855,10.822648775658095],[121.06381063810642,10.817583043848458],[121.0350103501035,10.819271621118332],[121.01701017010168,10.834468816547286],[121.02421024210241,10.864863207405165],[121.03141031410314,10.869928939214816],[121.06741067410672,10.891880443723295],[121.08541085410855,10.908766216422123],[121.09261092610927,10.910454793691997],[121.09621096210964,10.895257598263058]]],[[[120.28620286202863,11.930355464701151],[120.28260282602827,11.926978310161388],[120.27180271802717,11.9252897328915],[120.26820268202681,11.923601155621625],[120.26460264602645,11.916846846542086],[120.26460264602645,11.91009253746256],[120.26820268202681,11.90502680565291],[120.27180271802717,11.898272496573384],[120.26460264602645,11.871255260255253],[120.26460264602645,11.861123796635965],[120.26820268202681,11.850992333016663],[120.27540275402754,11.83241798304796],[120.2790027900279,11.823975096698547],[120.26820268202681,11.815532210349133],[120.25380253802541,11.835795137587724],[120.23580235802359,11.884763878414319],[120.20340203402037,11.947241237399979],[120.2142021420214,11.948929814669867],[120.25740257402578,11.96750416463857],[120.26820268202681,11.96750416463857],[120.27540275402754,11.964127010098807],[120.28260282602827,11.957372701019281],[120.28620286202863,11.948929814669867],[120.28620286202863,11.930355464701151]]],[[[52.288722887228886,12.200527827882382],[52.321123211232134,12.188707786993206],[52.37512375123751,12.200527827882382],[52.389523895238966,12.19715067334262],[52.39312393123933,12.187019209723317],[52.38232382323824,12.18195347791368],[52.371523715237174,12.171822014294378],[52.378723787237874,12.165067705214852],[52.389523895238966,12.148181932516025],[52.36072360723608,12.153247664325662],[52.346323463234654,12.151559087055787],[52.3319233192332,12.146493355246136],[52.28512285122852,12.15493624159555],[52.24192241922421,12.156624818865438],[52.23472234722348,12.165067705214852],[52.22392223922239,12.180264900643792],[52.21672216722169,12.180264900643792],[52.213122131221326,12.180264900643792],[52.19152191521917,12.17519916883414],[52.18072180721808,12.173510591564266],[52.17712177121771,12.176887746104029],[52.16632166321665,12.192084941532968],[52.162721627216285,12.19715067334262],[52.15552155521556,12.195462096072731],[52.137521375213765,12.203904982422145],[52.12312123121231,12.20221640515227],[52.112321123211245,12.198839250612494],[52.10512105121052,12.203904982422145],[52.10152101521015,12.207282136961908],[52.06912069120693,12.222479332390861],[52.06552065520657,12.235987950549926],[52.079920799208,12.23936510508969],[52.09432094320945,12.241053682359563],[52.11952119521197,12.241053682359563],[52.14832148321483,12.234299373280038],[52.17712177121771,12.214036446041447],[52.19872198721987,12.207282136961908],[52.21672216722169,12.207282136961908],[52.245522455224574,12.20221640515227],[52.288722887228886,12.200527827882382]]],[[[56.05436054360544,17.560072082490066],[56.057960579605805,17.546563464331],[56.057960579605805,17.544874887061127],[56.0687606876069,17.53305484617195],[56.07956079560796,17.522923382552648],[56.09396093960942,17.519546228012885],[56.06516065160653,17.499283300774295],[56.04716047160471,17.492528991694755],[56.032760327603285,17.49084041442488],[55.98595985959861,17.492528991694755],[55.97155971559715,17.497594723504406],[55.96435964359645,17.519546228012885],[55.98955989559897,17.534743423441824],[56.02916029160292,17.54825204160089],[56.05436054360544,17.560072082490066]]],[[[54.189541895418955,24.226575143986963],[54.182341823418255,24.24514949395568],[54.16074160741607,24.25359238030508],[54.13554135541355,24.26034668938462],[54.113941139411395,24.272166730273796],[54.10314103141033,24.297495389322037],[54.113941139411395,24.317758316560628],[54.13554135541355,24.326201202910042],[54.14274142741428,24.32282404837028],[54.14994149941501,24.31606973929074],[54.17514175141753,24.290741080242512],[54.189541895418955,24.277232462083447],[54.20034200342005,24.25359238030508],[54.189541895418955,24.226575143986963]]],[[[54.038340383403835,26.48926868562978],[53.962739627396274,26.492645840169544],[53.955539555395575,26.492645840169544],[53.92313923139233,26.50615445832861],[53.90153901539017,26.536548849186488],[53.912339123391234,26.550057467345553],[53.92673926739269,26.560188930964856],[53.94473944739448,26.565254662774507],[53.96633966339664,26.56356608550462],[53.980739807398095,26.558500353694967],[54.02034020340204,26.555123199155204],[54.03474034740347,26.550057467345553],[54.03474034740347,26.54668031280579],[54.03474034740347,26.543303158266028],[54.03474034740347,26.534860271916614],[54.03474034740347,26.533171694646725],[54.03474034740347,26.5264173855672],[54.038340383403835,26.5264173855672],[54.0419404194042,26.523040231027437],[54.04914049140493,26.519663076487674],[54.04914049140493,26.517974499217786],[54.05274052740529,26.51122019013826],[54.05274052740529,26.50615445832861],[54.04914049140493,26.49940014924907],[54.04914049140493,26.494334417439433],[54.038340383403835,26.48926868562978]]],[[[53.318333183331845,26.799966903288194],[53.30033300333005,26.79152401693878],[53.27873278732787,26.789835439668906],[53.22113221132213,26.799966903288194],[53.20673206732067,26.80672121236772],[53.20313203132031,26.80672121236772],[53.18873188731888,26.815164098717133],[53.159931599315996,26.8388041804955],[53.14913149131493,26.847247066844915],[53.15273152731527,26.852312798654566],[53.159931599315996,26.85400137592444],[53.167131671316724,26.85568995319433],[53.17793177931779,26.857378530464203],[53.26073260732608,26.83373844868585],[53.33633336333364,26.8286727168762],[53.36153361533616,26.820229830526785],[53.37233372333725,26.810098366907496],[53.38313383133831,26.803344057827957],[53.368733687336885,26.799966903288194],[53.32913329133291,26.803344057827957],[53.318333183331845,26.799966903288194]]],[[[49.56709567095672,27.352131670539833],[49.58509585095851,27.34368878419042],[49.639096390963914,27.33018016603137],[49.689496894968954,27.318360125142178],[49.67149671496716,27.311605816062652],[49.65349653496537,27.314982970602415],[49.639096390963914,27.321737279681955],[49.624696246962486,27.325114434221717],[49.606696066960666,27.321737279681955],[49.59229592295924,27.316671547872303],[49.57789577895781,27.30822866152289],[49.56709567095672,27.298097197903587],[49.556295562955626,27.304851506983127],[49.55269552695529,27.304851506983127],[49.5418954189542,27.309917238792764],[49.538295382953834,27.311605816062652],[49.538295382953834,27.318360125142178],[49.55269552695529,27.32342585695183],[49.55269552695529,27.32849158876148],[49.549095490954926,27.335245897841006],[49.54549545495456,27.338623052380782],[49.5418954189542,27.342000206920545],[49.531095310953106,27.345377361460308],[49.52029520295204,27.345377361460308],[49.50949509495095,27.340311629650657],[49.498694986949886,27.338623052380782],[49.487894878948794,27.33355732057113],[49.473494734947366,27.321737279681955],[49.46269462694627,27.306540084253],[49.455494554945545,27.289654311554173],[49.45189451894521,27.316671547872303],[49.473494734947366,27.342000206920545],[49.50229502295025,27.360574556889247],[49.531095310953106,27.3656402886989],[49.5418954189542,27.36395171142901],[49.55269552695529,27.360574556889247],[49.56709567095672,27.352131670539833]]],[[[48.33948339483396,29.462853257893215],[48.35388353883539,29.457787526083564],[48.36108361083612,29.45103321700404],[48.37188371883721,29.442590330654625],[48.382683826838274,29.43414744430521],[48.389883898839,29.425704557955797],[48.400684006840066,29.396998744367792],[48.39708397083973,29.38686728074849],[48.382683826838274,29.39193301255814],[48.37188371883721,29.393621589828015],[48.36468364683648,29.398687321637667],[48.3358833588336,29.420638826146146],[48.317883178831806,29.42739313522567],[48.28908289082892,29.430770289765434],[48.267482674826766,29.42908171249556],[48.27108271082713,29.456098948813676],[48.281882818828194,29.47129614424263],[48.299882998829986,29.472984721512503],[48.33948339483396,29.462853257893215]]],[[[-73.99693996939969,45.320282399361645],[-73.98613986139861,45.32534813117127],[-73.98253982539825,45.32703670844117],[-73.92133921339213,45.333791017520696],[-73.92133921339213,45.32703670844117],[-73.9249392493925,45.32197097663152],[-73.92853928539284,45.31690524482187],[-73.93573935739357,45.31352809028209],[-73.93933939339394,45.31015093574234],[-73.94653946539465,45.301708049392914],[-73.9681396813968,45.28988800850374],[-73.98253982539825,45.27637939034469],[-73.99333993339933,45.271313658535036],[-74.0041400414004,45.26793650399526],[-74.02934029340292,45.26455934945551],[-74.04734047340473,45.257805040375985],[-74.07974079740796,45.25273930856633],[-74.1409414094141,45.25105073129643],[-74.14814148141481,45.25273930856633],[-74.15174151741518,45.25611646310608],[-74.15894158941589,45.25949361764586],[-74.16614166141662,45.26962508126516],[-74.16614166141662,45.279756544884435],[-74.16254162541625,45.28819943123386],[-74.15534155341552,45.29495374031339],[-74.1409414094141,45.301708049392914],[-74.130141301413,45.306773781202565],[-74.11934119341193,45.30846235847247],[-74.04374043740437,45.30508520393269],[-74.03294032940329,45.306773781202565],[-74.00054000540005,45.31690524482187],[-73.99693996939969,45.320282399361645]]],[[[-79.28539285392854,54.913089869565255],[-79.0189901899019,54.94010710588336],[-79.02619026190261,54.93166421953396],[-79.03699036990369,54.926598487724306],[-79.15219152191521,54.90295840594595],[-79.24219242192422,54.8978926741363],[-79.26739267392674,54.89282694232665],[-79.29259292592926,54.8793183241676],[-79.31419314193141,54.88269547870735],[-79.40059400594005,54.85230108784947],[-79.60219602196021,54.828661006071115],[-79.7569975699757,54.779692265244506],[-79.77859778597785,54.78306941978428],[-79.76419764197641,54.79488946067346],[-79.73539735397354,54.80502092429276],[-79.70659706597066,54.81008665610241],[-79.68139681396814,54.81177523337229],[-79.68139681396814,54.81852954245181],[-79.73179731797318,54.81852954245181],[-79.69579695796958,54.84048104696029],[-79.65259652596525,54.85398966511934],[-79.4689946899469,54.88944978778687],[-79.36819368193682,54.89282694232665],[-79.34659346593466,54.89620409686643],[-79.3069930699307,54.90971271502548],[-79.28539285392854,54.913089869565255]]],[[[-77.31257312573125,55.61891516837622],[-77.24417244172442,55.64424382742445],[-77.21177211772117,55.65437529104375],[-77.20817208172082,55.639178095614795],[-77.22257222572226,55.63748951834492],[-77.23697236972369,55.63242378653527],[-77.31977319773198,55.581766468438786],[-77.35217352173521,55.56656927300986],[-77.37737377373773,55.55981496393031],[-77.5249752497525,55.465254636816894],[-77.58617586175862,55.43654882322889],[-77.64737647376474,55.42810593687946],[-77.61857618576185,55.438237400498764],[-77.44937449374494,55.53448630488208],[-77.41337413374133,55.56150354120021],[-77.3809738097381,55.571635004819484],[-77.36657366573665,55.57838931389904],[-77.3449734497345,55.60202939567739],[-77.33057330573305,55.61384943656657],[-77.31257312573125,55.61891516837622]]],[[[-79.00459004590046,56.017419404068534],[-78.97218972189721,56.027550867687836],[-78.95418954189542,56.030928022227585],[-78.93618936189361,56.02417371314806],[-78.96858968589686,56.00559936317936],[-78.99738997389973,55.981959281401004],[-79.02259022590225,55.953253467813],[-79.03339033390334,55.91441619060569],[-79.04779047790477,55.878956067938134],[-79.07659076590765,55.835053058921204],[-79.11259112591125,55.799592936253674],[-79.14139141391414,55.79790435898377],[-79.12339123391233,55.80972439987295],[-79.10539105391054,55.83167590438143],[-79.0909909099091,55.85700456342968],[-79.05859058590586,55.92961338603462],[-79.03339033390334,55.981959281401004],[-79.02979029790298,55.99209074502028],[-79.02619026190261,56.02417371314806],[-79.0189901899019,56.04950237219629],[-79.01179011790117,56.05963383581559],[-79.0009900099001,56.06469956762524],[-78.98658986589865,56.06469956762524],[-78.9649896498965,56.08327391759394],[-78.95058950589505,56.07820818578432],[-78.95418954189542,56.06807672216502],[-78.95418954189542,56.057945258545715],[-78.95418954189542,56.04950237219629],[-78.95058950589505,56.044436640386664],[-78.95058950589505,56.03768233130711],[-78.9649896498965,56.035993754037236],[-78.97938979389794,56.03261659949749],[-79.00459004590046,56.017419404068534]]],[[[59.03519035190354,75.9595169613832],[59.06759067590676,75.9679598477326],[59.13959139591398,75.97640273408203],[59.200792007920086,75.98991135224108],[59.233192331923334,75.98991135224108],[59.258392583925854,75.98484562043143],[59.26199261992622,75.96458269319285],[59.2367923679237,75.94769692049402],[59.19719197191972,75.94431976595425],[59.157591575915774,75.94431976595425],[59.09279092790928,75.93418830233495],[59.02079020790208,75.93249972506507],[58.95238952389525,75.91899110690602],[58.88038880388805,75.91392537509637],[58.81198811988122,75.90210533420719],[58.72558725587257,75.89703960239754],[58.69318693186932,75.90379391147707],[58.7327873278733,75.91730252963612],[58.9919899198992,75.94769692049402],[59.03519035190354,75.9595169613832]]],[[[-149.01809018090182,-77.47981097558774],[-149.2088920889209,-77.45617089380939],[-149.17289172891728,-77.44772800745997],[-149.19449194491943,-77.44603943019008],[-149.20169201692016,-77.4443508529202],[-149.2088920889209,-77.43928512111056],[-149.09369093690935,-77.42239934841173],[-149.0540905409054,-77.42239934841173],[-148.8308883088831,-77.44772800745997],[-148.87768877688777,-77.46292520288891],[-148.97128971289712,-77.47812239831785],[-149.01809018090182,-77.47981097558774]]],[[[-153.04653046530464,-77.2400330032644],[-153.04653046530464,-77.24341015780416],[-153.050130501305,-77.24678731234393],[-153.05373053730537,-77.25016446688369],[-153.05733057330573,-77.25354162142345],[-153.08253082530825,-77.26198450777287],[-153.10773107731077,-77.26536166231263],[-153.41733417334174,-77.23159011691499],[-153.46773467734678,-77.21132718967638],[-153.43533435334353,-77.20288430332698],[-153.1149311493115,-77.20626145786674],[-153.07533075330753,-77.21639292148603],[-153.05373053730537,-77.22652438510534],[-153.04653046530464,-77.2400330032644]]],[[[-147.25047250472505,-77.18937568516792],[-147.18927189271892,-77.20963861240651],[-147.20367203672038,-77.21639292148603],[-147.3260732607326,-77.23159011691499],[-147.32247322473225,-77.23665584872462],[-147.31887318873189,-77.2400330032644],[-147.31527315273152,-77.24341015780416],[-147.30807308073082,-77.24509873507404],[-147.3440734407344,-77.25523019869334],[-147.38367383673835,-77.2586073532331],[-147.45927459274594,-77.25016446688369],[-147.45567455674558,-77.24847588961381],[-147.4520745207452,-77.24678731234393],[-147.44487444874449,-77.24172158053427],[-147.47727477274773,-77.23496727145475],[-147.48447484474843,-77.23159011691499],[-147.4880748807488,-77.22821296237521],[-147.49527495274953,-77.22145865329568],[-147.4988749887499,-77.21470434421616],[-147.49527495274953,-77.21301576694627],[-147.59247592475924,-77.19275283970768],[-147.60327603276033,-77.18430995335827],[-147.56727567275672,-77.16573560338955],[-147.51687516875168,-77.16066987157991],[-147.25047250472505,-77.18937568516792]]],[[[-154.5621456214562,-77.11338970802319],[-154.55134551345515,-77.09988108986413],[-154.5261452614526,-77.08974962624484],[-154.43254432544325,-77.07286385354601],[-154.2849428494285,-77.0644209671966],[-154.12654126541264,-77.07792958535566],[-154.05454054540544,-77.09650393532436],[-154.0509405094051,-77.09988108986413],[-154.04374043740438,-77.10494682167378],[-154.04014040140402,-77.1117011307533],[-154.03654036540365,-77.13027548072202],[-154.04734047340474,-77.13702978980155],[-154.18774187741877,-77.15391556250037],[-154.51174511745117,-77.13534121253167],[-154.54054540545405,-77.12689832618226],[-154.55134551345515,-77.1235211716425],[-154.55494554945548,-77.12014401710272],[-154.55854558545585,-77.11676686256295],[-154.5621456214562,-77.11338970802319]]],[[[166.91386913869138,-76.93102336287586],[166.9570695706957,-76.93777767195539],[166.97866978669788,-76.95128629011445],[166.97866978669788,-76.96310633100363],[166.87066870668707,-76.97323779462293],[166.87066870668707,-76.96310633100363],[166.8670686706867,-76.94790913557469],[166.8526685266853,-76.93608909468551],[166.8562685626856,-76.92933478560597],[166.87426874268743,-76.92595763106621],[166.91386913869138,-76.93102336287586]]],[[[162.48942489424894,-75.45689540626826],[162.53262532625325,-75.42650101541038],[162.57222572225726,-75.42312386087062],[162.6010260102601,-75.43663247902967],[162.61902619026193,-75.45858398353815],[162.57222572225726,-75.48053548804663],[162.53262532625325,-75.48391264258639],[162.5038250382504,-75.47378117896709],[162.48942489424894,-75.45689540626826]]],[[[-117.16857168571686,-74.35594302630474],[-117.28377283772838,-74.37789453081322],[-117.33777337773378,-74.37789453081322],[-117.39537395373954,-74.36607448992405],[-117.3629736297363,-74.32892578998663],[-117.31257312573126,-74.30866286274804],[-117.02457024570245,-74.2816456264299],[-116.99216992169922,-74.2833342036998],[-116.9669696696967,-74.29177709004921],[-117.06777067770678,-74.3306143672565],[-117.16857168571686,-74.35594302630474]]],[[[-132.1231212312123,-74.14993659937906],[-132.14472144721447,-74.16682237207789],[-132.17352173521735,-74.17357668115741],[-132.23472234722345,-74.16682237207789],[-132.27432274322743,-74.15837948572847],[-132.29592295922959,-74.14824802210917],[-132.29952299522995,-74.1347394039501],[-132.2779227792278,-74.12967367214046],[-132.22752227522275,-74.1262965176007],[-132.1843218432184,-74.12967367214046],[-132.13752137521374,-74.14149371302965],[-132.1231212312123,-74.14993659937906]]],[[[5.466654666546674,-70.25607741502955],[5.560255602556026,-70.22906017871144],[5.653856538565378,-70.22568302417166],[5.743857438574395,-70.24932310595003],[5.826658266582683,-70.30335757858627],[5.747457474574759,-70.34050627852369],[5.6430564305643145,-70.32868623763451],[5.53865538655387,-70.29322611496697],[5.466654666546674,-70.25607741502955]]],[[[161.8126181261813,-70.24088021960061],[161.83421834218342,-70.2223058696319],[161.8666186661867,-70.21724013782224],[161.89901899018992,-70.22399444690178],[161.9206192061921,-70.24088021960061],[161.88821888218882,-70.25776599229944],[161.8558185581856,-70.2611431468392],[161.8270182701827,-70.25438883775968],[161.8126181261813,-70.24088021960061]]],[[[6.273062730627316,-70.12267981070882],[6.3450634506345125,-70.12267981070882],[6.453064530645321,-70.13618842886788],[6.535865358653581,-70.16489424245589],[6.535865358653581,-70.20710867420296],[6.503465034650361,-70.2223058696319],[6.467464674646749,-70.22399444690178],[6.431464314643165,-70.21386298328248],[6.330663306633085,-70.16995997426554],[6.294662946629472,-70.14800846975706],[6.273062730627316,-70.12267981070882]]],[[[10.989109891098906,-70.04669383356409],[10.999909999099998,-70.07708822442198],[10.920709207092074,-70.08215395623164],[10.812708127081265,-70.0753996471521],[10.57510575105752,-70.03149663813515],[10.539105391053909,-70.01123371089656],[10.636306363063625,-70.00447940181704],[10.895508955089554,-70.01798801997609],[10.989109891098906,-70.04669383356409]]],[[[72.63972639726398,-69.99603651546762],[72.66132661326614,-70.00616797908691],[72.71892718927191,-70.00110224727726],[72.72972729727297,-70.00447940181704],[72.72972729727297,-70.02305375178574],[72.56052560525606,-70.09059684258105],[72.45972459724598,-70.10917119254975],[72.4129241292413,-70.0753996471521],[72.43452434524346,-70.06020245172316],[72.45612456124562,-70.05175956537374],[72.47052470524707,-70.05007098810387],[72.48132481324814,-70.05851387445328],[72.50652506525066,-70.05344814264363],[72.52812528125281,-70.04331667902433],[72.54612546125463,-70.03149663813515],[72.59652596525967,-69.98759362911821],[72.61452614526146,-69.9774621654989],[72.63612636126362,-69.96901927914949],[72.63612636126362,-69.9774621654989],[72.63612636126362,-69.98421647457843],[72.63612636126362,-69.99097078365797],[72.63972639726398,-69.99603651546762]]],[[[47.87507875078751,-67.56448524683654],[47.914679146791485,-67.586436751345],[47.921879218792185,-67.586436751345],[47.79227792277925,-67.62020829674266],[47.53307533075332,-67.64215980125114],[47.468274682746824,-67.63709406944149],[47.410674106741084,-67.62189687401255],[47.461074610746124,-67.55941951502689],[47.486274862748644,-67.54084516505817],[47.518675186751864,-67.52733654689911],[47.55827558275584,-67.52058223781958],[47.60867608676088,-67.52395939235934],[47.594275942759424,-67.54084516505817],[47.55827558275584,-67.55604236048711],[47.518675186751864,-67.56786240137629],[47.493474934749344,-67.57292813318594],[47.69867698676987,-67.59319106042454],[47.73467734677348,-67.58981390588477],[47.770677706777064,-67.58137101953535],[47.83547835478356,-67.557730937757],[47.846278462784625,-67.55604236048711],[47.86067860678608,-67.557730937757],[47.864278642786445,-67.557730937757],[47.87507875078751,-67.56448524683654]]],[[[120.6642066420664,-66.89580864796298],[120.67140671406713,-66.90087437977263],[120.67860678606786,-66.90594011158228],[120.68580685806859,-66.90762868885216],[120.68940689406895,-66.90762868885216],[120.71100711007114,-66.91100584339193],[120.74340743407436,-66.90762868885216],[120.83700837008371,-66.88736576161357],[120.86580865808656,-66.88736576161357],[120.5310053100531,-66.96841747056794],[120.51300513005128,-66.97010604783782],[120.49140491404916,-66.9616631614884],[120.48060480604806,-66.94984312059923],[120.4770047700477,-66.93464592517029],[120.49140491404916,-66.91944872974133],[120.49860498604988,-66.91269442066181],[120.51660516605165,-66.8941200706931],[120.52380523805238,-66.88736576161357],[120.5418054180542,-66.88061145253404],[120.55980559805602,-66.87892287526415],[120.60660606606069,-66.87892287526415],[120.649806498065,-66.88736576161357],[120.65700657006573,-66.88905433888345],[120.6642066420664,-66.89580864796298]]],[[[121.12861128611286,-66.77929681634107],[121.19341193411935,-66.77929681634107],[121.19341193411935,-66.78605112542061],[121.1682116821168,-66.8063140526592],[121.1106111061111,-66.82826555716767],[121.02421024210241,-66.84852848440627],[120.93780937809379,-66.85697137075567],[120.88380883808838,-66.84683990713638],[120.94500945009452,-66.82995413443756],[121.04941049410496,-66.78942827996038],[121.12861128611286,-66.77929681634107]]],[[[97.40437404374046,-66.40274408515724],[97.42597425974259,-66.42300701239583],[97.39357393573937,-66.42976132147535],[97.06597065970658,-66.40443266242713],[97.03717037170372,-66.39430119880782],[97.01197011970123,-66.38079258064876],[97.04797047970482,-66.34364388071134],[97.10557105571058,-66.3284466852824],[97.16677166771666,-66.32675810801251],[97.28557285572856,-66.34026672617158],[97.34677346773469,-66.36052965341017],[97.36477364773651,-66.36897253975958],[97.37917379173791,-66.37910400337887],[97.40437404374046,-66.40274408515724]]],[[[100.79920799207991,-65.77797049530064],[100.97200972009722,-65.78810195891992],[101.0080100801008,-65.79654484526935],[101.02601026010262,-65.81343061796818],[101.01161011610117,-65.83875927701641],[100.96480964809649,-65.86408793606465],[100.90360903609036,-65.87759655422371],[100.75960759607597,-65.88097370876348],[100.69840698406983,-65.87421939968395],[100.67320673206734,-65.86577651333454],[100.6336063360634,-65.85902220425501],[100.52560525605259,-65.87421939968395],[100.46080460804609,-65.87590797695384],[100.42840428404287,-65.8691536678743],[100.39960399603996,-65.85395647244536],[100.53640536405368,-65.78979053618981],[100.5580055800558,-65.78472480438018],[100.60840608406085,-65.77797049530064],[100.71280712807129,-65.78641338165005],[100.79920799207991,-65.77797049530064]]],[[[17.706777067770673,58.99269255360184],[17.703177031770338,58.98424966725244],[17.699576995769974,58.97749535817289],[17.703177031770338,58.96567531728371],[17.703177031770338,58.95554385366444],[17.699576995769974,58.945412390045135],[17.69597695976961,58.93528092642583],[17.69597695976961,58.92852661734631],[17.68877688776888,58.92514946280653],[17.681576815768153,58.92177230826678],[17.681576815768153,58.91501799918723],[17.692376923769245,58.90150938102818],[17.685176851768517,58.90150938102818],[17.656376563765633,58.923460885536656],[17.656376563765633,58.918395153727005],[17.649176491764933,58.918395153727005],[17.63837638376384,58.93021519461618],[17.641976419764205,58.94710096731501],[17.634776347763477,58.95554385366444],[17.627576275762777,58.95723243093431],[17.623976239762413,58.96398674001384],[17.627576275762777,58.980872512712665],[17.634776347763477,58.99775828541149],[17.64557645576457,59.00957832630067],[17.649176491764933,59.0180212126501],[17.64557645576457,59.02308694445972],[17.64557645576457,59.03321840807902],[17.64557645576457,59.06192422166703],[17.652776527765297,59.07205568528633],[17.66357663576636,59.07205568528633],[17.667176671766725,59.065301376206804],[17.667176671766725,59.05854706712728],[17.674376743767453,59.056858489857376],[17.677976779767818,59.056858489857376],[17.685176851768517,59.05010418077785],[17.692376923769245,59.038284139888674],[17.699576995769974,59.02477552172962],[17.706777067770673,59.007889749030795],[17.706777067770673,58.99269255360184]]],[[[5.2902529025290335,60.07507058359664],[5.297452974529762,60.059873388167716],[5.301053010530126,60.05143050181829],[5.297452974529762,60.04636477000864],[5.297452974529762,60.03792188365924],[5.297452974529762,60.027790420039935],[5.279452794527941,60.01259322461098],[5.275852758527606,60.00415033826158],[5.2686526865268775,59.99401887464228],[5.254252542525421,59.992330297372405],[5.2470524705247215,59.99908460645193],[5.2470524705247215,60.00415033826158],[5.239852398523993,60.005838915531456],[5.232652326523265,60.005838915531456],[5.218252182521837,60.00921607007123],[5.203852038520381,60.01597037915076],[5.200252002520045,60.024413265500186],[5.200252002520045,60.02947899730981],[5.196651966519681,60.03454472911946],[5.175051750517525,60.04636477000864],[5.171451714517161,60.049741924548414],[5.171451714517161,60.054807656358065],[5.178651786517861,60.068316274517116],[5.196651966519681,60.081824892676195],[5.203852038520381,60.08857920175572],[5.207452074520745,60.08689062448585],[5.207452074520745,60.08013631540629],[5.211052110521109,60.07169342905689],[5.218252182521837,60.06156196543759],[5.218252182521837,60.05143050181829],[5.2254522545225655,60.04298761546889],[5.232652326523265,60.041299038198986],[5.239852398523993,60.04467619273876],[5.243452434524357,60.04636477000864],[5.239852398523993,60.049741924548414],[5.243452434524357,60.05143050181829],[5.2470524705247215,60.05143050181829],[5.239852398523993,60.054807656358065],[5.229052290522901,60.06662769724724],[5.221852218522201,60.07844773813642],[5.221852218522201,60.085202047215944],[5.218252182521837,60.08857920175572],[5.214652146521473,60.08857920175572],[5.203852038520381,60.10715355172442],[5.203852038520381,60.117285015343725],[5.218252182521837,60.1189735926136],[5.221852218522201,60.117285015343725],[5.229052290522901,60.112219283534074],[5.2470524705247215,60.09871066537502],[5.254252542525421,60.090267779025595],[5.2506525065250855,60.08857920175572],[5.2506525065250855,60.085202047215944],[5.257852578525785,60.07507058359664],[5.261452614526149,60.07507058359664],[5.265052650526513,60.081824892676195],[5.2722527225272415,60.08351346994607],[5.279452794527941,60.081824892676195],[5.2902529025290335,60.07507058359664]]],[[[5.121051210512121,62.02537733031116],[5.131851318513185,62.020311598501536],[5.153451534515341,61.99836009399306],[5.149851498515005,61.988228630373754],[5.139051390513913,61.979785744024326],[5.128251282512821,61.9628999713255],[5.128251282512821,61.957834239515876],[5.124651246512485,61.94939135316645],[5.113851138511393,61.93757131227727],[5.095850958509601,61.92743984865797],[5.074250742507445,61.92743984865797],[5.041850418504197,61.934194157737494],[5.034650346503469,61.9358827350074],[5.020250202502041,61.939259889547145],[5.016650166501677,61.94263704408692],[5.016650166501677,61.952768507706224],[5.023850238502405,61.95952281678575],[5.038250382503833,61.961211394055624],[5.045450454504561,61.95614566224597],[5.049050490504925,61.952768507706224],[5.056250562505625,61.95952281678575],[5.052650526505261,61.9730314349448],[4.998649986499885,61.996671516723154],[4.987849878498793,62.00511440307258],[4.9842498424984285,62.01018013488223],[4.9842498424984285,62.01862302123163],[4.9842498424984285,62.02706590758106],[4.9842498424984285,62.03382021666059],[4.991449914499157,62.03550879393046],[5.009450094500949,62.03044306212081],[5.067050670506717,62.00849155761233],[5.081450814508145,62.00680298034246],[5.085050850508509,62.01018013488223],[5.088650886508873,62.015245866691885],[5.103051030510301,62.02200017577141],[5.121051210512121,62.02537733031116]]],[[[40.45540455404554,64.58188331691358],[40.45900459004591,64.5785061623738],[40.46260462604627,64.57344043056418],[40.45900459004591,64.56837469875452],[40.43380433804339,64.56499754421475],[40.33660336603367,64.57344043056418],[40.196201962019614,64.57344043056418],[40.145801458014574,64.59201478053288],[40.13140131401315,64.61396628504136],[40.10980109801099,64.63085205774019],[40.070200702007014,64.64773783043901],[40.055800558005586,64.65280356224864],[40.02340023400234,64.65786929405829],[39.936999369993714,64.66293502586794],[39.918999189991894,64.66800075767759],[39.87219872198722,64.68319795310654],[39.854198541985426,64.68319795310654],[39.839798397984,64.68150937583667],[39.82539825398254,64.67982079856677],[39.83259832598327,64.68995226218607],[39.854198541985426,64.69839514853547],[39.904599045990466,64.71021518942467],[39.98379983799839,64.71865807577407],[40.00180001800018,64.71865807577407],[40.01620016200164,64.71021518942467],[40.045000450004494,64.70008372580537],[40.081000810008106,64.70008372580537],[40.14940149401494,64.71021518942467],[40.189001890018915,64.70852661215477],[40.22860228602286,64.70008372580537],[40.25380253802538,64.6882636849162],[40.264602646026475,64.67813222129689],[40.26820268202684,64.65618071678841],[40.30060300603006,64.63591778954984],[40.3510035100351,64.62072059412088],[40.397803978039775,64.61903201685101],[40.43020430204302,64.61227770777145],[40.448204482044815,64.60045766688228],[40.45180451804518,64.59032620326298],[40.45540455404554,64.58188331691358]]],[[[11.763117631176328,65.11885088873626],[11.777517775177756,65.11885088873626],[11.777517775177756,65.11040800238686],[11.766717667176692,65.10196511603743],[11.745117451174508,65.09521080695791],[11.709117091170924,65.08170218879886],[11.687516875168768,65.0766364569892],[11.673116731167312,65.07157072517955],[11.673116731167312,65.0681935706398],[11.687516875168768,65.0681935706398],[11.701917019170196,65.06481641610003],[11.698316983169832,65.0580621070205],[11.683916839168404,65.05130779794098],[11.669516695166948,65.04455348886142],[11.658716587165884,65.04286491159155],[11.651516515165156,65.04624206613133],[11.65511655116552,65.05130779794098],[11.651516515165156,65.0580621070205],[11.651516515165156,65.05975068429038],[11.658716587165884,65.06481641610003],[11.651516515165156,65.06481641610003],[11.626316263162636,65.0580621070205],[11.60471604716048,65.0479306434012],[11.57951579515796,65.04286491159155],[11.557915579155804,65.04286491159155],[11.518315183151827,65.05468495248073],[11.518315183151827,65.0580621070205],[11.525515255152555,65.06143926156025],[11.52911529115292,65.06312783883016],[11.525515255152555,65.06481641610003],[11.52911529115292,65.07494787971933],[11.532715327153284,65.08507934333863],[11.539915399154012,65.09183365241816],[11.55431554315544,65.09689938422781],[11.565115651156532,65.10365369330734],[11.57951579515796,65.11040800238686],[11.662316623166248,65.11885088873626],[11.687516875168768,65.11716231146639],[11.70551705517056,65.11378515692664],[11.719917199171988,65.10871942511699],[11.727117271172716,65.10703084784708],[11.73071730717308,65.10871942511699],[11.734317343173444,65.11209657965674],[11.741517415174172,65.11547373419651],[11.763117631176328,65.11885088873626]]],[[[17.548375483754853,69.09207320477026],[17.559175591755917,69.09207320477026],[17.573575735757373,69.09038462750038],[17.566375663756645,69.08531889569073],[17.551975519755217,69.08194174115096],[17.54477544775449,69.07518743207143],[17.548375483754853,69.06674454572203],[17.54477544775449,69.0599902366425],[17.53757537575376,69.05492450483285],[17.523175231752333,69.0481701957533],[17.501575015750177,69.0397273094039],[17.479974799747993,69.03466157759425],[17.458374583745837,69.02790726851472],[17.44397443974441,69.01608722762555],[17.41877418774189,68.99582430038694],[17.400774007740097,68.98906999130742],[17.375573755737577,68.98906999130742],[17.350373503735057,68.99582430038694],[17.34317343173433,69.00257860946647],[17.350373503735057,69.00933291854602],[17.350373503735057,69.01608722762555],[17.350373503735057,69.02453011397495],[17.353973539735392,69.03466157759425],[17.364773647736484,69.04648161848343],[17.38637386373864,69.06336739118225],[17.41877418774189,69.07856458661121],[17.451174511745137,69.08531889569073],[17.548375483754853,69.09207320477026]]],[[[67.2180721807218,69.42134577239739],[67.28647286472867,69.43823154509622],[67.30807308073082,69.43823154509622],[67.30807308073082,69.42810008147691],[67.24687246872469,69.40445999969856],[67.18567185671859,69.3892628042696],[67.16047160471607,69.37575418611056],[67.14967149671497,69.36731129976116],[67.13167131671318,69.36393414522138],[67.09567095670957,69.36562272249125],[67.07767077670778,69.37237703157078],[66.99486994869949,69.3892628042696],[66.95526955269554,69.41121430877809],[66.93726937269375,69.43992012236609],[66.95166951669518,69.45680589506492],[66.96966969669697,69.4601830496047],[66.97326973269733,69.45342874052517],[66.9768697686977,69.45005158598539],[66.98406984069842,69.44667443144564],[66.99486994869949,69.44160869963599],[67.01287012870131,69.43654296782634],[67.16407164071643,69.42134577239739],[67.1568715687157,69.42134577239739],[67.16407164071643,69.41965719512751],[67.2180721807218,69.42134577239739]]],[[[66.5988659886599,70.9140480789737],[66.59526595265953,70.90729376989415],[66.58446584465847,70.90053946081463],[66.57366573665738,70.8937851517351],[66.55926559265595,70.8853422653857],[66.55206552065522,70.87858795630615],[66.54126541265413,70.8566364517977],[66.53046530465306,70.84143925636874],[66.50886508865091,70.82793063820966],[66.4728647286473,70.81948775186027],[66.44766447664477,70.81948775186027],[66.43326433264335,70.82793063820966],[66.44406444064441,70.8465049881784],[66.48726487264872,70.89716230627488],[66.51966519665197,70.92586811986288],[66.51966519665197,70.93093385167253],[66.5160651606516,70.93431100621228],[66.51966519665197,70.94106531529181],[66.52326523265234,70.94275389256171],[66.5988659886599,71.00354267427747],[66.60606606066062,71.00354267427747],[66.61326613266132,70.99509978792807],[66.61326613266132,70.98327974703889],[66.60246602466026,70.97145970614972],[66.59166591665917,70.96301681980029],[66.58446584465847,70.95457393345089],[66.58446584465847,70.94613104710146],[66.5880658806588,70.94275389256171],[66.59166591665917,70.93768816075206],[66.59166591665917,70.92924527440263],[66.59526595265953,70.9224909653231],[66.5988659886599,70.9140480789737]]],[[[92.0619206192062,77.6295198812972],[92.07992079920803,77.6278313040273],[92.10872108721088,77.62107699494777],[92.10872108721088,77.61094553132847],[92.09432094320942,77.60587979951882],[92.03312033120335,77.58730544955012],[91.98631986319862,77.58730544955012],[91.91071910719108,77.6008140677092],[91.88191881918823,77.61263410859837],[91.86751867518677,77.6278313040273],[91.89271892718926,77.64133992218638],[91.9431194311943,77.64471707672612],[92.0619206192062,77.6295198812972]]],[[[60.16560165601658,80.16914009520076],[60.1980019800198,80.15732005431158],[60.20880208802089,80.14887716796218],[60.20160201602016,80.14212285888263],[60.172801728017276,80.13874570434288],[59.9927999279993,80.14718859069228],[59.902799027990284,80.16745151793089],[59.89199891998922,80.17589440428029],[59.89919899198992,80.18264871335984],[60.054000540005404,80.18771444516949],[60.10080100801008,80.18433729062971],[60.16560165601658,80.16914009520076]]],[[[54.98874988749887,80.41398379933375],[55.06435064350643,80.42073810841327],[55.08955089550895,80.42073810841327],[55.111151111511134,80.42073810841327],[55.19755197551976,80.4376238811121],[55.244352443524434,80.4376238811121],[55.262352623526255,80.43086957203258],[55.26595265952659,80.42411526295305],[55.269552695526954,80.4190495311434],[55.269552695526954,80.4089180675241],[55.262352623526255,80.40385233571448],[55.25875258752589,80.39709802663492],[55.262352623526255,80.3903437175554],[55.22275222752228,80.3802122539361],[55.129151291512926,80.37514652212644],[55.085950859508614,80.37683509939635],[55.085950859508614,80.381900831206],[55.085950859508614,80.38527798574574],[55.078750787507886,80.38865514028552],[55.07155071550716,80.3903437175554],[54.98874988749887,80.4004751811747],[54.97434974349744,80.40385233571448],[54.97074970749708,80.40722949025422],[54.98154981549817,80.41229522206388],[54.98874988749887,80.41398379933375]]],[[[59.737197371973735,81.18904076620993],[59.75519755197553,81.18566361167015],[59.75879758797589,81.17890930259063],[59.75519755197553,81.1704664162412],[59.744397443974435,81.16708926170145],[59.72999729997301,81.16540068443155],[59.37359373593736,81.17890930259063],[59.01359013590138,81.19241792074968],[58.99558995589956,81.19748365255933],[59.00279002790029,81.20423796163885],[59.09639096390964,81.21268084798828],[59.416794167941674,81.2008608070991],[59.737197371973735,81.18904076620993]]],[[[58.36918369183692,81.57910211555281],[58.29718297182973,81.58416784736247],[58.27558275582757,81.5926107337119],[58.279182791827935,81.59936504279142],[58.289982899829,81.60443077460107],[58.36558365583656,81.6111850836806],[58.39438394383944,81.6213165472999],[58.412384123841235,81.62469370183965],[58.581585815858176,81.6297594336493],[58.61038610386106,81.63313658818907],[58.646386463864644,81.63313658818907],[58.67518675186753,81.62638227910955],[58.68598685986862,81.62300512456977],[58.696786967869684,81.61962797003],[58.70398703987041,81.61287366095047],[58.689586895868956,81.60274219733117],[58.664386643866436,81.59598788825164],[58.49158491584916,81.57910211555281],[58.36918369183692,81.57910211555281]]],[[[-74.47574475744757,-52.30987819071623],[-74.48294482944829,-52.32845254068494],[-74.46854468544684,-52.353781199733184],[-74.48654486544865,-52.37742128151154],[-74.49014490144901,-52.38924132240072],[-74.45054450544505,-52.394307054210365],[-74.46134461344613,-52.412881404179075],[-74.46134461344613,-52.43821006322732],[-74.48294482944829,-52.441587217767086],[-74.5081450814508,-52.42639002233814],[-74.53694536945369,-52.40443851782966],[-74.53694536945369,-52.368978395162124],[-74.52974529745298,-52.330141117954824],[-74.5081450814508,-52.3031238816367],[-74.47574475744757,-52.30987819071623]]],[[[-73.81693816938169,-51.8640937914672],[-73.79173791737917,-51.8539623278479],[-73.77733777337772,-51.83538797787919],[-73.77013770137701,-51.82694509152978],[-73.73773737737378,-51.83201082333943],[-73.71973719737197,-51.84889659603826],[-73.70893708937089,-51.88266814143591],[-73.69813698136981,-51.90799680048415],[-73.69813698136981,-51.943456923151686],[-73.71973719737197,-51.93839119134204],[-73.71253712537126,-51.95696554131075],[-73.70533705337053,-51.97553989127946],[-73.71253712537126,-51.99580281851805],[-73.73773737737378,-52.011000013947],[-73.76653766537665,-52.005934282137346],[-73.80613806138061,-51.980605623089104],[-73.83853838538386,-51.943456923151686],[-73.83853838538386,-51.91643968683356],[-73.8781387813878,-51.901242491404616],[-73.91413914139142,-51.899553914134735],[-73.94293942939429,-51.8927996050552],[-73.95013950139501,-51.86747094600697],[-73.97893978939788,-51.838765132418956],[-73.96453964539646,-51.818502205180366],[-73.93573935739357,-51.80837074156107],[-73.89973899738997,-51.803305009751426],[-73.8781387813878,-51.8151250506406],[-73.86013860138601,-51.83032224606955],[-73.82773827738276,-51.85058517330814],[-73.81693816938169,-51.8640937914672]]],[[[-74.36054360543605,-51.3372576832638],[-74.34614346143461,-51.342323415073444],[-74.32814328143282,-51.35752061050239],[-74.31014310143101,-51.3760949604711],[-74.29574295742957,-51.39466931043981],[-74.30654306543065,-51.41830939221817],[-74.33534335343353,-51.426752278567584],[-74.37134371343713,-51.41830939221817],[-74.39654396543965,-51.41324366040852],[-74.40014400144001,-51.39298073316993],[-74.39294392943928,-51.37271780593134],[-74.41094410944109,-51.367652074121686],[-74.39654396543965,-51.34907772415298],[-74.38574385743857,-51.33556910599392],[-74.36054360543605,-51.3372576832638]]],[[[-59.744397443974435,-51.328814796914386],[-59.72999729997299,-51.33894626053368],[-59.71559715597155,-51.347389146883096],[-59.69039690396903,-51.35920918777227],[-59.68679686796868,-51.33894626053368],[-59.66519665196651,-51.342323415073444],[-59.66159661596616,-51.35752061050239],[-59.63639636396364,-51.365963496851805],[-59.60039600396003,-51.36934065139157],[-59.59679596795968,-51.38116069228075],[-59.62559625596255,-51.384537846820514],[-59.66519665196651,-51.39635788770969],[-59.693996939969395,-51.408177928598874],[-59.72279722797228,-51.409866505868756],[-59.75159751597515,-51.39804646497957],[-59.7479974799748,-51.38284926955063],[-59.72999729997299,-51.37271780593134],[-59.75159751597515,-51.367652074121686],[-59.79119791197911,-51.37271780593134],[-59.82359823598236,-51.360897765042154],[-59.83079830798307,-51.35076630142286],[-59.80199801998019,-51.34907772415298],[-59.77319773197732,-51.345700569613214],[-59.76599765997659,-51.328814796914386],[-59.744397443974435,-51.328814796914386]]],[[[-74.9689496894969,-50.28696262139676],[-74.92574925749257,-50.275142580507584],[-74.88974889748897,-50.295405507746175],[-74.92934929349293,-50.335931362223356],[-74.96174961749617,-50.357882866731835],[-74.95454954549545,-50.38827725758972],[-74.97614976149761,-50.43218026660667],[-75.04455044550446,-50.47608327562362],[-75.11295112951129,-50.46932896654409],[-75.17055170551706,-50.46257465746456],[-75.16695166951669,-50.43049168933679],[-75.12015120151202,-50.38152294851019],[-75.07335073350733,-50.34775140311254],[-74.9689496894969,-50.28696262139676]]],[[[-74.42534425344253,-49.614908867983445],[-74.43614436144361,-49.60308882709427],[-74.43254432544325,-49.572694436236375],[-74.43974439744397,-49.5507429317279],[-74.43254432544325,-49.533857159029075],[-74.43614436144361,-49.52541427267966],[-74.4649446494465,-49.508528499980834],[-74.46854468544684,-49.50177419090131],[-74.46854468544684,-49.493331304551894],[-74.46134461344613,-49.48657699547236],[-74.45414454144542,-49.48151126366271],[-74.44694446944469,-49.4730683773133],[-74.44334443344432,-49.46462549096388],[-74.44334443344432,-49.45618260461447],[-74.43974439744397,-49.43591967737588],[-74.43614436144361,-49.427476791026464],[-74.42534425344253,-49.42578821375658],[-74.4181441814418,-49.430853945566234],[-74.41454414544145,-49.43591967737588],[-74.40734407344073,-49.44773971826506],[-74.39654396543965,-49.451116872804825],[-74.3821438214382,-49.451116872804825],[-74.37134371343713,-49.452805450074706],[-74.35334353343534,-49.46462549096388],[-74.30654306543065,-49.51865996360013],[-74.29934299342993,-49.532168581759194],[-74.29214292142922,-49.53892289083873],[-74.28854288542885,-49.54905435445802],[-74.29214292142922,-49.554120086267666],[-74.37134371343713,-49.59295736347497],[-74.37854378543786,-49.60646598163403],[-74.39654396543965,-49.61828602252321],[-74.41454414544145,-49.62335175433286],[-74.42534425344253,-49.614908867983445]]],[[[-74.64854648546485,-47.79799972558966],[-74.62694626946269,-47.801376880129425],[-74.59454594545944,-47.804754034669195],[-74.55854558545585,-47.806442611939076],[-74.52614526145261,-47.81319692101861],[-74.51894518945188,-47.83852558006685],[-74.52614526145261,-47.868919970924736],[-74.5441454414544,-47.8722971254645],[-74.59454594545944,-47.863854239115085],[-74.61974619746196,-47.87905143454403],[-74.62334623346233,-47.90438009359227],[-74.61974619746196,-47.9212658662911],[-74.64494644946448,-47.92295444356098],[-74.65934659346593,-47.90269151632239],[-74.67374673746737,-47.89087147543321],[-74.68814688146881,-47.862165661845204],[-74.68814688146881,-47.8334598482572],[-74.68814688146881,-47.81319692101861],[-74.64854648546485,-47.79799972558966]]],[[[-75.32175321753218,-46.68522730473696],[-75.28215282152821,-46.68353872746708],[-75.25335253352533,-46.6818501501972],[-75.21735217352173,-46.67509584111767],[-75.1741517415174,-46.67847299565743],[-75.14535145351454,-46.697047345626146],[-75.13455134551346,-46.72744173648403],[-75.12015120151202,-46.74770466372262],[-75.1309513095131,-46.778099054580515],[-75.16335163351633,-46.78147620912028],[-75.20655206552065,-46.75108181826239],[-75.24975249752497,-46.74263893191298],[-75.26775267752677,-46.72406458194427],[-75.30735307353073,-46.71393311832497],[-75.34335343353433,-46.70211307743579],[-75.32175321753218,-46.68522730473696]]],[[[-73.01053010530104,-42.695119216004144],[-72.99612996129962,-42.700184947813796],[-72.98892988929889,-42.71707072051262],[-72.98172981729817,-42.73395649321145],[-72.95652956529565,-42.737333647751214],[-72.95652956529565,-42.723825029592156],[-72.94212942129421,-42.71707072051262],[-72.93132931329313,-42.723825029592156],[-72.92772927729277,-42.75590799771992],[-72.92052920529206,-42.786302388577816],[-72.93852938529385,-42.79305669765734],[-72.95652956529565,-42.80825389308629],[-72.9709297092971,-42.79136812038746],[-72.98532985329852,-42.762662306799456],[-73.01773017730177,-42.73395649321145],[-73.03213032130321,-42.713693565972854],[-73.03213032130321,-42.69680779327403],[-73.01053010530104,-42.695119216004144]]],[[[146.6528665286653,-18.746027797257838],[146.68166681666816,-18.74433921998795],[146.68526685266852,-18.752782106337364],[146.67446674466748,-18.76460214722654],[146.6636666366664,-18.767979301766303],[146.6528665286653,-18.76966787903619],[146.63846638466384,-18.767979301766303],[146.62406624066244,-18.762913569956666],[146.61686616866172,-18.762913569956666],[146.60246602466026,-18.761224992686778],[146.58446584465844,-18.76460214722654],[146.57006570065704,-18.761224992686778],[146.57006570065704,-18.746027797257838],[146.58446584465844,-18.717321983669834],[146.58086580865807,-18.70381336551077],[146.5772657726577,-18.688616170081815],[146.58086580865807,-18.68186186100229],[146.59166591665917,-18.690304747351703],[146.60246602466026,-18.698747633701117],[146.609666096661,-18.70381336551077],[146.62406624066244,-18.715633406399945],[146.63486634866348,-18.735896333638536],[146.6528665286653,-18.746027797257838]]],[[[39.90819908199083,-16.27563925141945],[39.944199441994414,-16.27901640595921],[39.94779947799478,-16.302656487737565],[39.94059940599408,-16.322919414976155],[39.91539915399156,-16.348248074024397],[39.90819908199083,-16.37864246488229],[39.90819908199083,-16.395528237581118],[39.904599045990466,-16.409036855740183],[39.879398793987946,-16.417479742089597],[39.85779857798579,-16.409036855740183],[39.83259832598327,-16.390462505771467],[39.81819818198184,-16.35669096037381],[39.82179821798218,-16.31785368316652],[39.83259832598327,-16.299279333197802],[39.861398613986154,-16.285770715038737],[39.90819908199083,-16.27563925141945]]],[[[142.7540275402754,-9.369358217599213],[142.7720277202772,-9.37442394940885],[142.7828278282783,-9.386243990298041],[142.76842768427684,-9.398064031187218],[142.7540275402754,-9.408195494806506],[142.74322743227435,-9.420015535695683],[142.73242732427326,-9.425081267505334],[142.71442714427144,-9.428458422045097],[142.64242642426427,-9.428458422045097],[142.62802628026282,-9.425081267505334],[142.61362613626136,-9.41663838115592],[142.60282602826027,-9.399752608457092],[142.61362613626136,-9.382866835758264],[142.6388263882639,-9.37442394940885],[142.6640266402664,-9.37442394940885],[142.6928269282693,-9.379489681218502],[142.7180271802718,-9.377801103948627],[142.7540275402754,-9.369358217599213]]],[[[142.20682206822067,-9.239337767818242],[142.2788227882279,-9.26128927232672],[142.28242282422826,-9.278175045025549],[142.2788227882279,-9.286617931374963],[142.26082260822608,-9.289995085914725],[142.22122221222213,-9.2916836631846],[142.18162181621818,-9.284929354105074],[142.1492214922149,-9.271420735946009],[142.16362163621636,-9.251157808707418],[142.20682206822067,-9.239337767818242]]],[[[143.67563675636757,-8.38998340106724],[143.67563675636757,-8.400114864686543],[143.6828368283683,-8.41193490557572],[143.67923679236793,-8.422066369195008],[143.66843668436684,-8.428820678274548],[143.6468364683647,-8.425443523734785],[143.62523625236253,-8.41193490557572],[143.58923589235894,-8.371409051098539],[143.54243542435427,-8.34945754659006],[143.549635496355,-8.335948928430994],[143.60003600036003,-8.332571773891232],[143.63963639636398,-8.341014660240646],[143.6576365763658,-8.35452327839971],[143.66843668436684,-8.373097628368413],[143.67563675636757,-8.38998340106724]]],[[[143.6612366123661,-8.109679574266721],[143.67923679236793,-8.121499615155898],[143.69003690036902,-8.136696810584837],[143.69003690036902,-8.153582583283665],[143.66843668436684,-8.16709120144273],[143.63243632436325,-8.165402624172842],[143.61443614436143,-8.138385387854726],[143.60003600036003,-8.111368151536595],[143.61443614436143,-8.094482378837768],[143.63963639636398,-8.099548110647419],[143.65403654036544,-8.10461384245707],[143.6612366123661,-8.109679574266721]]],[[[143.67563675636757,-8.053956524360586],[143.68643686436866,-8.065776565249763],[143.69723697236975,-8.091105224298005],[143.69003690036902,-8.099548110647419],[143.67563675636757,-8.092793801567893],[143.6468364683647,-8.08435091521848],[143.60723607236076,-8.080973760678702],[143.58203582035821,-8.069153719789526],[143.5748357483575,-8.050579369820824],[143.5640356403564,-8.030316442582233],[143.57843578435785,-8.018496401693042],[143.61083610836107,-8.02018497896293],[143.6576365763658,-8.040447906201521],[143.67563675636757,-8.053956524360586]]],[[[39.74259742597428,-7.994856319914689],[39.7749977499775,-7.991479165374926],[39.79659796597966,-7.993167742644815],[39.80019800198002,-8.006676360803866],[39.78939789397896,-8.02018497896293],[39.74979749797498,-8.065776565249763],[39.7209972099721,-8.092793801567893],[39.702997029970305,-8.091105224298005],[39.69579695796958,-8.074219451599177],[39.702997029970305,-8.048890792550935],[39.7137971379714,-8.028627865312345],[39.74259742597428,-7.994856319914689]]],[[[-34.85374853748536,-7.6976667204153415],[-34.84654846548466,-7.695978143145453],[-34.83574835748357,-7.6976667204153415],[-34.82854828548284,-7.704421029494867],[-34.8321483214832,-7.711175338574392],[-34.82854828548284,-7.7246839567334575],[-34.82134821348214,-7.738192574892523],[-34.82134821348214,-7.750012615781699],[-34.82854828548284,-7.765209811210639],[-34.8321483214832,-7.778718429369704],[-34.83574835748357,-7.795604202068532],[-34.83934839348393,-7.810801397497471],[-34.84654846548466,-7.814178552037248],[-34.85734857348572,-7.8124899747673595],[-34.87534875348754,-7.809112820227597],[-34.88254882548824,-7.804047088417946],[-34.88254882548824,-7.788849892989006],[-34.88254882548824,-7.765209811210639],[-34.87894878948788,-7.753389770321462],[-34.87174871748718,-7.743258306702174],[-34.86094860948609,-7.72806111127322],[-34.85734857348572,-7.714552493114169],[-34.85734857348572,-7.704421029494867],[-34.85374853748536,-7.6976667204153415]]],[[[115.89055890558905,-7.106664675956395],[115.89415894158941,-7.111730407766046],[115.89775897758977,-7.125239025925097],[115.89415894158941,-7.164076303132404],[115.87615876158765,-7.186027807640883],[115.83655836558364,-7.19784784853006],[115.7969579695797,-7.189404962180646],[115.75735757357575,-7.169142034942055],[115.74295742957429,-7.150567684973339],[115.75375753757538,-7.140436221354051],[115.76095760957611,-7.138747644084162],[115.76455764557647,-7.143813375893814],[115.76815768157684,-7.142124798623925],[115.77895778957793,-7.115107562305809],[115.7861578615786,-7.116796139575683],[115.78975789757897,-7.125239025925097],[115.79335793357933,-7.137059066814274],[115.80055800558006,-7.147190530433576],[115.80775807758079,-7.150567684973339],[115.82215822158224,-7.148879107703465],[115.84375843758437,-7.157321994052879],[115.86895868958692,-7.159010571322753],[115.87975879758801,-7.159010571322753],[115.88335883358837,-7.153944839513102],[115.87975879758801,-7.1522562622432275],[115.87615876158765,-7.153944839513102],[115.86895868958692,-7.147190530433576],[115.86535865358655,-7.137059066814274],[115.86895868958692,-7.12861618046486],[115.87615876158765,-7.123550448655223],[115.88335883358837,-7.123550448655223],[115.88695886958868,-7.1303047577347485],[115.88695886958868,-7.126927603194986],[115.89055890558905,-7.113418985035921],[115.89055890558905,-7.106664675956395]]],[[[151.1889118891189,-4.891251297870298],[151.20691206912068,-4.901382761489586],[151.2249122491225,-4.918268534188414],[151.2249122491225,-4.933465729617353],[151.20691206912068,-4.946974347776418],[151.19611196111964,-4.9520400795860695],[151.1709117091171,-4.955417234125832],[151.15291152911533,-4.953728656855958],[151.1457114571146,-4.946974347776418],[151.13131131311314,-4.938531461427004],[151.12051120511205,-4.925022843267939],[151.12051120511205,-4.914891379648651],[151.1349113491135,-4.901382761489586],[151.14211142111424,-4.896317029679935],[151.160111601116,-4.887874143330521],[151.17451174511746,-4.887874143330521],[151.1889118891189,-4.891251297870298]]],[[[-42.23022230222301,-2.692723692483014],[-42.215822158221584,-2.701166578832428],[-42.197821978219764,-2.7197409288011443],[-42.165421654216544,-2.7264952378806697],[-42.147421474214724,-2.7349381242300836],[-42.12582125821257,-2.7552010514686742],[-42.11142111421114,-2.763643937818088],[-42.10422104221041,-2.772086824167502],[-42.133021330213296,-2.7737754014373905],[-42.16902169021691,-2.7687096696277393],[-42.190621906219064,-2.7552010514686742],[-42.215822158221584,-2.7433810105794976],[-42.248222482224804,-2.736626701499972],[-42.2590225902259,-2.7197409288011443],[-42.2590225902259,-2.6961008470227767],[-42.25182251822517,-2.682592228863726],[-42.241022410224105,-2.6809036515938374],[-42.23022230222301,-2.692723692483014]]],[[[-79.81819818198181,-2.4867172655573313],[-79.80739807398074,-2.512045924605573],[-79.78579785797858,-2.520488810954987],[-79.77139771397714,-2.542440315463452],[-79.7929979299793,-2.5745232835912333],[-79.82899828998289,-2.591409056290061],[-79.83259832598326,-2.635312065307005],[-79.85779857798578,-2.6505092607359444],[-79.87579875798758,-2.6505092607359444],[-79.8829988299883,-2.626869178957591],[-79.86859868598685,-2.5897204790201727],[-79.8469984699847,-2.533997429114038],[-79.81819818198181,-2.4867172655573313]]],[[[133.59193591935923,-2.4613886065090895],[133.60633606336063,-2.468142915588615],[133.60633606336063,-2.4884058428272056],[133.5847358473585,-2.512045924605573],[133.56313563135632,-2.512045924605573],[133.56313563135632,-2.5086687700658103],[133.5559355593556,-2.503603038256159],[133.52353523535237,-2.4884058428272056],[133.51273512735128,-2.476585801938029],[133.50553505535055,-2.459700029239201],[133.49833498334982,-2.44619141108015],[133.49113491134915,-2.4309942156511966],[133.50553505535055,-2.424239906571671],[133.53793537935383,-2.4394371020006105],[133.55233552335523,-2.449568565619913],[133.55233552335523,-2.442814256540373],[133.55953559535595,-2.442814256540373],[133.57033570335705,-2.451257142889787],[133.5847358473585,-2.458011451969327],[133.59193591935923,-2.4613886065090895]]],[[[-43.832238322383205,-2.454634297429564],[-43.832238322383205,-2.442814256540373],[-43.83943839438393,-2.432682792921085],[-43.850238502385025,-2.424239906571671],[-43.8430384303843,-2.415797020222257],[-43.83943839438393,-2.415797020222257],[-43.825038250382505,-2.4073541338728432],[-43.81423814238141,-2.4090427111427175],[-43.807038070380685,-2.4208627520319084],[-43.81063810638105,-2.4360599474608478],[-43.81423814238141,-2.454634297429564],[-43.80343803438035,-2.4563228746994383],[-43.799837998379985,-2.454634297429564],[-43.79263792637926,-2.441125679270499],[-43.78903789037889,-2.4394371020006105],[-43.774637746377465,-2.4293056383813223],[-43.76383763837637,-2.4293056383813223],[-43.75663756637567,-2.4478799883500244],[-43.76023760237601,-2.4613886065090895],[-43.76743767437674,-2.476585801938029],[-43.7710377103771,-2.4951601519067452],[-43.78183781837819,-2.5052916155260334],[-43.81063810638105,-2.512045924605573],[-43.825038250382505,-2.5137345018754473],[-43.83943839438393,-2.506980192795922],[-43.8430384303843,-2.4934715746368568],[-43.8430384303843,-2.4917829973669825],[-43.8430384303843,-2.4799629564777916],[-43.83943839438393,-2.463077183778964],[-43.832238322383205,-2.454634297429564]]],[[[-49.480694806948065,-1.6559372487750466],[-49.46629466294664,-1.654248671505158],[-49.43749437494375,-1.6643801351244605],[-49.4230942309423,-1.6745115987437487],[-49.4230942309423,-1.684643062363051],[-49.4230942309423,-1.6964631032522277],[-49.430294302943025,-1.7082831441414044],[-49.44469444694445,-1.7133488759510556],[-49.46989469894697,-1.720103185030581],[-49.480694806948065,-1.7302346486498834],[-49.49509495094949,-1.74205468953906],[-49.50949509495095,-1.7454318440788228],[-49.52389523895238,-1.7353003804595346],[-49.531095310953106,-1.7167260304908183],[-49.52749527495274,-1.7032174123317532],[-49.52749527495274,-1.684643062363051],[-49.52389523895238,-1.6728230214738744],[-49.513095130951314,-1.662691557854572],[-49.50229502295022,-1.6576258260449208],[-49.49149491494916,-1.662691557854572],[-49.480694806948065,-1.6559372487750466]]],[[[128.36828368283682,-0.9889492271713749],[128.40428404284046,-0.9957035362509004],[128.4114841148412,-1.0092121544099655],[128.40788407884082,-1.0260979271087933],[128.39348393483937,-1.0362293907280957],[128.37188371883718,-1.03791796799797],[128.36468364683645,-1.0362293907280957],[128.36828368283682,-1.0345408134582073],[128.36108361083615,-1.0328522361883188],[128.34308343083433,-1.029475081648556],[128.32868328683287,-1.0210321952991421],[128.3250832508325,-1.0058349998702028],[128.32868328683287,-0.9923263817111376],[128.32868328683287,-0.9788177635520725],[128.30708307083074,-0.9619319908532447],[128.29988299883001,-0.9551776817737192],[128.29988299883001,-0.9518005272339565],[128.30708307083074,-0.9433576408845425],[128.3142831428314,-0.9399804863447798],[128.3250832508325,-0.9416690636146541],[128.33228332283323,-0.9484233726941937],[128.3358833588336,-0.9602434135833704],[128.33948339483396,-0.9703748772026586],[128.35748357483578,-0.980506340821961],[128.36828368283682,-0.9889492271713749]]],[[[129.9018990189902,-0.40807864633173097],[129.90909909099094,-0.41314437814136795],[129.91629916299166,-0.4266529963004331],[129.9126991269913,-0.44185019172938667],[129.90909909099094,-0.4486045008089121],[129.9018990189902,-0.4587359644282145],[129.89829898298984,-0.4789988916668051],[129.88749887498875,-0.4941960870957445],[129.87669876698766,-0.5026389734451584],[129.86589865898662,-0.49926181890539567],[129.85149851498517,-0.4823760462065678],[129.84429844298444,-0.46211311896797724],[129.84429844298444,-0.4435387689992609],[129.8478984789848,-0.43171872811008427],[129.85509855098553,-0.4266529963004331],[129.8586985869859,-0.42327584176067035],[129.8730987309873,-0.4148329554112564],[129.89109891098911,-0.4097672236016052],[129.9018990189902,-0.40807864633173097]]],[[[125.419854198542,5.425955821112993],[125.42345423454236,5.420890089303356],[125.42345423454236,5.407381471144291],[125.42345423454236,5.378675657556286],[125.419854198542,5.368544193936984],[125.41265412654127,5.368544193936984],[125.39825398253981,5.3719213484767465],[125.38025380253805,5.370232771206872],[125.36225362253623,5.3668556166671095],[125.35145351453514,5.3719213484767465],[125.34425344253441,5.38036423482616],[125.33345333453337,5.3871185439057],[125.33345333453337,5.392184275715337],[125.3406534065341,5.400627162064751],[125.35865358653587,5.42257866657323],[125.37665376653769,5.431021552922644],[125.40545405454054,5.431021552922644],[125.419854198542,5.425955821112993]]],[[[-61.389613896138954,8.580218161253882],[-61.37161371613716,8.571775274904468],[-61.34281342813428,8.573463852174342],[-61.314013140131394,8.571775274904468],[-61.30681306813068,8.553200924935751],[-61.303213032130316,8.536315152236924],[-61.303213032130316,8.514363647728459],[-61.29241292412924,8.502543606839268],[-61.278012780127796,8.495789297759742],[-61.260012600126004,8.48565783414044],[-61.260012600126004,8.47214921598139],[-61.26361263612635,8.455263443282561],[-61.278012780127796,8.45019771147291],[-61.29241292412924,8.456952020552436],[-61.31761317613176,8.475526370521152],[-61.32481324813247,8.494100720489854],[-61.339213392133914,8.509297915918808],[-61.364413644136434,8.509297915918808],[-61.40041400414003,8.507609338648919],[-61.43281432814328,8.514363647728459],[-61.454414544145436,8.531249420427287],[-61.46881468814688,8.541380884046575],[-61.490414904149034,8.551512347665877],[-61.50841508415084,8.553200924935751],[-61.540815408154074,8.565020965824928],[-61.53721537215371,8.57515242944423],[-61.515615156151554,8.573463852174342],[-61.47601476014759,8.566709543094817],[-61.440014400143994,8.568398120364705],[-61.414814148141474,8.581906738523756],[-61.389613896138954,8.580218161253882]]],[[[98.289982899829,9.004051055994438],[98.30078300783009,8.997296746914898],[98.31158311583118,8.978722396946196],[98.30798307983082,8.958459469707606],[98.29358293582936,8.934819387929238],[98.27198271982724,8.87740776075323],[98.26118261182614,8.879096338023118],[98.25398253982542,8.89767068799182],[98.25038250382505,8.917933615230424],[98.25398253982542,8.93988511973889],[98.25758257582578,8.96690235605702],[98.25398253982542,8.997296746914898],[98.26118261182614,9.012493942343852],[98.2791827918279,9.00911678780409],[98.289982899829,9.004051055994438]]],[[[123.8430384303843,9.642333264010091],[123.86103861038612,9.630513223120914],[123.86823868238685,9.620381759501626],[123.86103861038612,9.608561718612435],[123.8430384303843,9.588298791373845],[123.80343803438035,9.55959297778584],[123.78543785437853,9.552838668706315],[123.7638376383764,9.549461514166552],[123.74943749437494,9.554527245976189],[123.73863738637385,9.57985590502443],[123.72783727837282,9.58661021410397],[123.72783727837282,9.591675945913607],[123.73863738637385,9.593364523183496],[123.74943749437494,9.598430254993147],[123.75303753037531,9.605184564072673],[123.76743767437677,9.613627450422086],[123.78183781837822,9.623758914041389],[123.82143821438217,9.638956109470328],[123.8430384303843,9.642333264010091]]],[[[-62.6640266402664,10.366732912789772],[-62.65682656826567,10.359978603710246],[-62.64962649626496,10.344781408281293],[-62.64962649626496,10.32620705831259],[-62.660426604266036,10.309321285613763],[-62.6640266402664,10.309321285613763],[-62.667626676266764,10.32114132650294],[-62.671226712267114,10.331272790122242],[-62.685626856268556,10.346469985551181],[-62.692826928269284,10.354912871900595],[-62.710827108271076,10.371798644599423],[-62.73962739627396,10.395438726377776],[-62.768427684276844,10.412324499076604],[-62.786427864278636,10.43089884904532],[-62.793627936279364,10.447784621744148],[-62.790027900279,10.46635897171285],[-62.790027900279,10.47311328079239],[-62.786427864278636,10.484933321681567],[-62.78282782827827,10.49337620803098],[-62.77562775627756,10.49337620803098],[-62.746827468274674,10.459604662633325],[-62.721627216272154,10.427521694505543],[-62.6640266402664,10.366732912789772]]],[[[124.1490414904149,13.184968376223992],[124.1346413464135,13.188345530763769],[124.11304113041132,13.188345530763769],[124.09864098640986,13.191722685303532],[124.069840698407,13.203542726192708],[124.06624066240664,13.210297035272234],[124.08424084240846,13.217051344351773],[124.11304113041132,13.227182807971062],[124.12384123841241,13.233937117050601],[124.13824138241381,13.233937117050601],[124.17784177841781,13.223805653431299],[124.19944199441994,13.213674189811996],[124.21024210242103,13.195099839843294],[124.21024210242103,13.178214067144467],[124.19584195841958,13.173148335334815],[124.16344163441636,13.18159122168423],[124.1490414904149,13.184968376223992]]],[[[124.08784087840877,13.260954353368717],[124.07344073440737,13.254200044289192],[124.06624066240664,13.25082288974943],[124.06264062640628,13.245757157939778],[124.05544055440555,13.235625694320476],[124.04464044640446,13.227182807971062],[124.0410404104041,13.225494230701187],[124.0266402664027,13.22211707616141],[124.0158401584016,13.223805653431299],[123.99783997839978,13.22887138524095],[123.97623976239765,13.235625694320476],[123.95823958239583,13.237314271590364],[123.94023940239401,13.24406858066989],[123.92223922239225,13.259265776098829],[123.91503915039152,13.27108581698802],[123.91503915039152,13.279528703337434],[123.91143911439116,13.28459443514707],[123.91143911439116,13.287971589686848],[123.91503915039152,13.289660166956722],[123.9618396183962,13.287971589686848],[123.98703987039869,13.276151548797657],[123.99423994239942,13.279528703337434],[124.00144001440015,13.281217280607308],[124.0158401584016,13.281217280607308],[124.0158401584016,13.279528703337434],[124.01944019440197,13.279528703337434],[124.0266402664027,13.269397239718131],[124.03384033840342,13.266020085178369],[124.03744037440373,13.269397239718131],[124.03744037440373,13.274462971527782],[124.0410404104041,13.277840126067545],[124.04824048240482,13.279528703337434],[124.05544055440555,13.276151548797657],[124.069840698407,13.272774394257894],[124.08424084240846,13.267708662448243],[124.08424084240846,13.262642930638606],[124.08784087840877,13.260954353368717]]],[[[123.88983889838897,13.274462971527782],[123.8970389703897,13.259265776098829],[123.90423904239043,13.245757157939778],[123.90063900639007,13.239002848860238],[123.8826388263883,13.230559962510824],[123.87183871838721,13.22887138524095],[123.86463864638648,13.24406858066989],[123.85743857438575,13.25082288974943],[123.84663846638466,13.27108581698802],[123.8430384303843,13.282905857877196],[123.85023850238503,13.299791630576024],[123.85023850238503,13.318365980544726],[123.84663846638466,13.330186021433903],[123.83583835838357,13.345383216862857],[123.83943839438393,13.34876037140262],[123.85023850238503,13.35382610321227],[123.85743857438575,13.35382610321227],[123.90063900639007,13.340317485053205],[123.9078390783908,13.335251753243554],[123.91503915039152,13.331874598703791],[123.92223922239225,13.330186021433903],[123.92223922239225,13.320054557814615],[123.8970389703897,13.293037321496485],[123.88983889838897,13.274462971527782]]],[[[120.00540005400057,16.268310471029807],[120.00900009000094,16.25480185287074],[120.01260012600125,16.241293234711677],[120.00540005400057,16.232850348362263],[119.99459994599948,16.2294731938225],[119.98019980199803,16.239604657441802],[119.97659976599766,16.248047543791216],[119.95499954999553,16.263244739220156],[119.93699936999371,16.288573398268397],[119.92619926199262,16.295327707347923],[119.92259922599226,16.303770593697337],[119.92619926199262,16.31390205731664],[119.94419944199444,16.32909925274558],[119.95499954999553,16.33247640728534],[119.9621996219962,16.33416498455523],[119.9621996219962,16.33923071636488],[119.96579965799657,16.344296448174532],[119.9729997299973,16.351050757254058],[119.98379983799839,16.34936217998417],[119.99099990999912,16.344296448174532],[119.99459994599948,16.337542139094992],[119.99819998199985,16.330787830015467],[120.00540005400057,16.31221348004675],[120.00540005400057,16.268310471029807]]],[[[-89.66429664296642,22.370828724385873],[-89.68589685896859,22.380960188005176],[-89.6930969309693,22.3877144970847],[-89.68949689496894,22.399534537973878],[-89.69669696696967,22.418108887942594],[-89.6930969309693,22.42486319702212],[-89.67869678696786,22.42992892883177],[-89.6570965709657,22.4468147015306],[-89.65349653496534,22.47214336057884],[-89.67149671496715,22.49240628781743],[-89.68589685896859,22.50760348324637],[-89.68949689496894,22.52786641048496],[-89.71469714697146,22.541375028644026],[-89.73989739897398,22.54981791499344],[-89.75789757897579,22.543063605913915],[-89.76149761497615,22.52955498775485],[-89.77229772297723,22.532932142294612],[-89.76869768697686,22.546440760453677],[-89.75789757897579,22.559949378612743],[-89.74709747097471,22.57683515131157],[-89.7290972909729,22.583589460391096],[-89.6930969309693,22.566703687692268],[-89.6570965709657,22.541375028644026],[-89.62469624696247,22.497472019627082],[-89.61029610296103,22.460323319689664],[-89.62109621096211,22.40966600159318],[-89.63549635496355,22.379271610735287],[-89.64989649896499,22.36745156984611],[-89.66429664296642,22.370828724385873]]],[[[121.76221762217625,31.374322727400425],[121.77301773017729,31.359125531971486],[121.78381783817838,31.34223975927266],[121.78021780217802,31.32535398657383],[121.76581765817662,31.32028825476418],[121.75141751417516,31.33041971838348],[121.71901719017194,31.357436954701598],[121.60021600216004,31.42835720003667],[121.58581585815858,31.441865818195737],[121.58941589415895,31.4452429727355],[121.6038160381604,31.44355439546561],[121.61821618216186,31.44355439546561],[121.69021690216903,31.419914313687258],[121.72621726217261,31.40302854098843],[121.74421744217443,31.38783134555949],[121.76221762217625,31.374322727400425]]],[[[-81.2510125101251,31.504343177181397],[-81.23661236612365,31.526294681689862],[-81.22221222212222,31.52798325895975],[-81.20421204212042,31.534737568039276],[-81.18621186211861,31.52967183622964],[-81.17541175411753,31.521228949880225],[-81.18621186211861,31.50265459991151],[-81.1970119701197,31.482391672672918],[-81.2150121501215,31.453685859084914],[-81.23661236612365,31.433422931846323],[-81.26181261812617,31.38783134555949],[-81.27981279812798,31.386142768289602],[-81.29061290612906,31.394585654639016],[-81.30141301413013,31.411471427337844],[-81.29061290612906,31.44017724092585],[-81.27261272612726,31.462128745434327],[-81.25821258212582,31.490834559022332],[-81.2510125101251,31.504343177181397]]],[[[26.872468724687252,37.13405979497031],[26.87966879668798,37.12899406316066],[26.88686886868871,37.117174022271485],[26.88686886868871,37.10535398138231],[26.87966879668798,37.10366540411242],[26.876068760687616,37.10366540411242],[26.876068760687616,37.10028824957266],[26.868868688686888,37.09859967230277],[26.861668616686188,37.096911095032894],[26.850868508685096,37.09859967230277],[26.836468364683668,37.10535398138231],[26.836468364683668,37.11210829046183],[26.847268472684732,37.117174022271485],[26.850868508685096,37.12392833135101],[26.843668436684368,37.1256169086209],[26.82926829268294,37.11886259954137],[26.818468184681848,37.12055117681125],[26.811268112681148,37.12899406316066],[26.814868148681484,37.137436949510075],[26.818468184681848,37.14587983585949],[26.807668076680784,37.15094556766914],[26.796867968679692,37.15601129947879],[26.789667896678964,37.16276560855832],[26.775267752677536,37.16951991763784],[26.77166771667717,37.18302853579691],[26.782467824678264,37.19147142214632],[26.796867968679692,37.18978284487643],[26.800468004680056,37.19315999941621],[26.800468004680056,37.199914308495735],[26.807668076680784,37.199914308495735],[26.818468184681848,37.194848576686084],[26.822068220682212,37.19315999941621],[26.825668256682576,37.194848576686084],[26.82926829268294,37.19315999941621],[26.836468364683668,37.19147142214632],[26.840068400684004,37.18978284487643],[26.850868508685096,37.18809426760656],[26.85446854468546,37.18133995852703],[26.847268472684732,37.17120849490773],[26.843668436684368,37.16276560855832],[26.85446854468546,37.157699876748666],[26.865268652686524,37.152634144939015],[26.868868688686888,37.14081410404984],[26.872468724687252,37.13405979497031]]],[[[-75.90495904959049,37.12899406316066],[-75.89415894158941,37.14081410404984],[-75.89415894158941,37.16107703128843],[-75.90135901359014,37.17627422671738],[-75.90495904959049,37.194848576686084],[-75.90495904959049,37.23368585389339],[-75.89415894158941,37.25226020386209],[-75.89055890558905,37.28096601745011],[-75.87255872558725,37.2910974810694],[-75.85815858158581,37.282654594719986],[-75.8509585095851,37.27083455383081],[-75.85455854558545,37.26070309021151],[-75.86895868958689,37.25394878113198],[-75.87615876158762,37.24044016297292],[-75.88335883358833,37.21848865846445],[-75.87615876158762,37.20498004030539],[-75.86895868958689,37.19822573122585],[-75.85815858158581,37.194848576686084],[-75.840158401584,37.19315999941621],[-75.82215822158221,37.19653715395597],[-75.81855818558185,37.20666861757526],[-75.81135811358114,37.20835719484515],[-75.81135811358114,37.199914308495735],[-75.81495814958149,37.18640569033667],[-75.82935829358293,37.17627422671738],[-75.8509585095851,37.16276560855832],[-75.87255872558725,37.142502681319726],[-75.8869588695887,37.12392833135101],[-75.89775897758977,37.117174022271485],[-75.91575915759157,37.11210829046183],[-75.93015930159301,37.11210829046183],[-75.92655926559266,37.117174022271485],[-75.91575915759157,37.11886259954137],[-75.90855908559085,37.122239754081136],[-75.90495904959049,37.12899406316066]]],[[[47.84987849878499,43.99981497431335],[47.86067860678608,43.9947492425037],[47.86787867878681,43.99137208796395],[47.86787867878681,43.98461777888443],[47.763477634776365,43.92889472897829],[47.745477454774544,43.92720615170842],[47.70947709477096,43.93564903805782],[47.695076950769504,43.93733761532769],[47.68427684276844,43.939026192597595],[47.680676806768076,43.95084623348677],[47.67347673476735,43.95084623348677],[47.655476554765556,43.94240334713734],[47.64107641076413,43.944091924407246],[47.6338763387634,43.952534810756646],[47.62667626676267,43.96266627437595],[47.637476374763764,43.98124062434465],[47.66627666276665,43.996437819773604],[47.78147781477816,43.9947492425037],[47.813878138781405,43.99981497431335],[47.839078390783925,43.99981497431335],[47.84987849878499,43.99981497431335]]],[[[49.82269822698228,46.313165834052654],[49.83709837098371,46.286148597734524],[49.840698406984075,46.26250851595617],[49.82269822698228,46.21691692966934],[49.80469804698049,46.21016262058981],[49.783097830978306,46.223671238748864],[49.76869768697688,46.247311320527245],[49.7218972189722,46.33849449310091],[49.71829718297184,46.35706884306961],[49.75069750697509,46.35706884306961],[49.7938979389794,46.33849449310091],[49.81189811898119,46.32667445221173],[49.82269822698228,46.313165834052654]]],[[[-58.462784627846275,51.17626837131482],[-58.42678426784268,51.16782548496542],[-58.45558455584555,51.14080824864729],[-58.49518495184951,51.12054532140871],[-58.57078570785707,51.10028239417011],[-58.58158581585815,51.08001946693153],[-58.62118621186211,51.09183950782071],[-58.588785887858876,51.11885674413881],[-58.54558545585455,51.15093971226659],[-58.462784627846275,51.17626837131482]]],[[[-55.928359283592826,53.4929963855939],[-55.9139591395914,53.4929963855939],[-55.903159031590306,53.496373540133646],[-55.88875888758888,53.49806211740355],[-55.88155881558815,53.48455349924447],[-55.84555845558455,53.48117634470472],[-55.823958239582396,53.477799190164944],[-55.81315813158132,53.48793065378425],[-55.802358023580226,53.48455349924447],[-55.784357843578434,53.477799190164944],[-55.76635766357663,53.47611061289507],[-55.751957519575186,53.46429057200589],[-55.748357483574836,53.45415910838659],[-55.74115741157411,53.44571622203719],[-55.74475744757447,53.44065049022754],[-55.76275762757628,53.44909337657694],[-55.78075780757807,53.455847685656465],[-55.802358023580226,53.455847685656465],[-55.80595805958059,53.44402764476729],[-55.81315813158132,53.43220760387811],[-55.798757987579876,53.42376471752871],[-55.78075780757807,53.41869898571906],[-55.76995769957699,53.411944676639536],[-55.76995769957699,53.40181321302023],[-55.7879578795788,53.41025609936963],[-55.809558095580954,53.41701040844919],[-55.81675816758167,53.41025609936963],[-55.79515795157951,53.40012463575036],[-55.784357843578434,53.393370326670805],[-55.798757987579876,53.393370326670805],[-55.83115831158311,53.406878944829884],[-55.86355863558636,53.41363325390941],[-55.90675906759067,53.41869898571906],[-55.924759247592476,53.42883044933836],[-55.96435964359644,53.43220760387811],[-55.98235982359823,53.442339067497414],[-55.985959859598594,53.45922484019624],[-55.98955989559896,53.47104488108542],[-55.975159751597516,53.48455349924447],[-55.928359283592826,53.4929963855939]]],[[[-56.92196921969219,53.79694029417277],[-56.88956889568895,53.80707175779207],[-56.83556835568355,53.80707175779207],[-56.81756817568176,53.790185985093245],[-56.84996849968499,53.776677366934194],[-56.88236882368824,53.763168748775115],[-56.91836918369184,53.763168748775115],[-56.94716947169471,53.75134870788594],[-56.98316983169832,53.75979159423537],[-57.00837008370084,53.78849740782337],[-57.00117001170011,53.81044891233185],[-56.96516965169651,53.812137489601724],[-56.92196921969219,53.79694029417277]]],[[[-130.60750607506074,53.79694029417277],[-130.61830618306183,53.8239575304909],[-130.5679056790568,53.83746614864995],[-130.51030510305102,53.825646107760775],[-130.44910449104492,53.79694029417277],[-130.42030420304204,53.78343167601372],[-130.43830438304383,53.75641443969559],[-130.4959049590496,53.76485732604502],[-130.5139051390514,53.79356313963302],[-130.55350553505536,53.785120253283594],[-130.60750607506074,53.79694029417277]]],[[[-67.56007560075601,58.4118219727622],[-67.52767527675276,58.34765603650666],[-67.53127531275312,58.29699871841018],[-67.58167581675816,58.27842436844145],[-67.63567635676357,58.290244409330654],[-67.66087660876609,58.32739310926806],[-67.65727657276572,58.36454180920549],[-67.63567635676357,58.401690509142895],[-67.59247592475924,58.4219534363815],[-67.56007560075601,58.4118219727622]]],[[[6.0174601746017515,59.29157073037109],[6.071460714607156,59.28481642129154],[6.10026100261004,59.27637353494214],[6.093060930609312,59.261176339513185],[6.0570605706056995,59.24091341227461],[6.003060030600324,59.230781948655306],[5.959859598595983,59.22740479411553],[5.931059310593099,59.24429056681436],[5.931059310593099,59.26961922586261],[5.9526595265952835,59.283127844021664],[5.988659886598867,59.29157073037109],[6.0174601746017515,59.29157073037109]]],[[[-66.92646926469264,63.0655409285589],[-66.80766807668077,62.986177796874415],[-66.77166771667716,62.945651942397234],[-66.79326793267933,62.92538901515866],[-66.83286832868329,62.95240625147676],[-66.89406894068941,62.981112065064764],[-66.97326973269732,63.03345796043115],[-67.0380703807038,63.070606660368554],[-67.0740707407074,63.097623896686684],[-66.99486994869949,63.09255816487703],[-66.92646926469264,63.0655409285589]]],[[[-64.21564215642157,63.842286472704956],[-64.17244172441724,63.80513777276752],[-64.20484204842047,63.7899405773386],[-64.25524255242551,63.76123476375059],[-64.26244262442624,63.72408606381316],[-64.31644316443165,63.739283259242114],[-64.34164341643417,63.76967765009999],[-64.34164341643417,63.82033496819648],[-64.33444334443344,63.84566362724473],[-64.21564215642157,63.842286472704956]]],[[[-64.96444964449644,64.31002237646246],[-64.9860498604986,64.28975944922388],[-64.94644946449463,64.2762508310648],[-64.88524885248852,64.26443079017562],[-64.93924939249392,64.24416786293705],[-64.8780487804878,64.2289706675081],[-64.94284942849428,64.20701916299961],[-64.98964989649896,64.19351054484056],[-65.040050400504,64.24416786293705],[-65.06525065250652,64.27962798560458],[-65.0760507605076,64.30664522192271],[-65.04725047250471,64.32859672643116],[-64.96444964449644,64.31002237646246]]],[[[-172.4759247592476,64.64267209862936],[-172.46512465124653,64.63760636681971],[-172.45432454324543,64.62409774866063],[-172.4579245792458,64.61058913050158],[-172.5191251912519,64.59370335780275],[-172.54432544325442,64.59201478053288],[-172.5659256592566,64.59539193507263],[-172.67032670326702,64.60045766688228],[-172.67752677526775,64.60383482142205],[-172.68112681126811,64.6089005532317],[-172.68472684726848,64.61565486231123],[-172.69552695526954,64.61903201685101],[-172.70632706327063,64.62072059412088],[-172.72432724327243,64.62578632593053],[-172.72072720727206,64.64436067589924],[-172.69552695526954,64.65280356224864],[-172.67752677526775,64.64604925316911],[-172.6559265592656,64.64098352135946],[-172.4759247592476,64.64267209862936]]],[[[-166.85986859868598,66.03912550082234],[-166.83826838268382,66.04419123263199],[-166.83466834668346,66.04250265536211],[-166.86346863468634,66.02730545993316],[-166.98586985869858,65.9834024509162],[-167.02547025470255,65.9749595645668],[-167.10827108271081,65.94794232824867],[-167.12627126271263,65.93949944189927],[-167.12267122671227,65.93949944189927],[-167.129871298713,65.9361222873595],[-167.16587165871658,65.93105655554984],[-167.21267212672126,65.91248220558114],[-167.22707227072272,65.90910505104137],[-167.23787237872378,65.90910505104137],[-167.23067230672308,65.9175479373908],[-166.87066870668707,66.03574834628259],[-166.85986859868598,66.03912550082234]]],[[[-166.28386283862838,66.20122891873109],[-166.18666186661866,66.20967180508049],[-166.22626226262264,66.20122891873109],[-166.25146251462513,66.19278603238166],[-166.27306273062732,66.18603172330214],[-166.31266312663126,66.18265456876239],[-166.38826388263882,66.16070306425391],[-166.46746467464675,66.14550586882496],[-166.48546485464854,66.1404401370153],[-166.50346503465033,66.1319972506659],[-166.54666546665467,66.12355436431648],[-166.5970659706597,66.10498001434777],[-166.6870668706687,66.08471708710917],[-166.73386733867338,66.06783131441034],[-166.80226802268024,66.05094554171151],[-166.7950679506795,66.05769985079107],[-166.76266762667626,66.07120846895012],[-166.32346323463236,66.19278603238166],[-166.28386283862838,66.20122891873109]]],[[[-165.48825488254883,66.40892392292665],[-165.49545495454956,66.40723534565677],[-165.5350553505535,66.39879245930737],[-165.59985599855997,66.3768409547989],[-165.6250562505625,66.3768409547989],[-165.6358563585636,66.37515237752899],[-165.64665646656465,66.36839806844947],[-165.6790567905679,66.35995518210007],[-165.6970569705697,66.35657802756029],[-165.70425704257042,66.36164375936994],[-165.689856898569,66.37008664571934],[-165.48825488254883,66.40892392292665]]],[[[-165.48825488254883,66.40892392292665],[-165.48465484654847,66.41061250019655],[-165.44865448654485,66.41905538654595],[-165.42345423454233,66.42074396381582],[-165.48825488254883,66.40892392292665]]],[[[-165.34425344253444,66.43594115924478],[-165.37665376653766,66.42918685016525],[-165.38025380253802,66.42580969562547],[-165.42345423454233,66.42074396381582],[-165.34425344253444,66.43594115924478]]],[[[-165.34425344253444,66.43594115924478],[-165.32625326253262,66.44100689105443],[-165.32265322653225,66.44100689105443],[-165.34425344253444,66.43594115924478]]],[[[-164.76464764647648,66.54569868178714],[-164.75024750247502,66.54569868178714],[-164.74664746647466,66.54063294997749],[-164.75744757447575,66.53725579543774],[-164.77184771847718,66.53725579543774],[-164.7790477904779,66.53387864089797],[-164.78264782647827,66.5321900636281],[-164.7970479704797,66.52881290908832],[-164.8330483304833,66.52881290908832],[-164.84384843848437,66.52543575454857],[-164.8510485104851,66.51699286819914],[-164.85824858248583,66.51192713638949],[-164.8618486184862,66.50854998184974],[-164.86544865448656,66.50686140457987],[-164.88344883448835,66.50517282730996],[-164.93024930249302,66.50517282730996],[-165.06345063450635,66.47984416826174],[-165.12465124651246,66.47815559099183],[-165.14265142651428,66.47308985918221],[-165.18225182251823,66.45789266375326],[-165.26145261452615,66.4443840455942],[-165.31905319053192,66.44100689105443],[-165.0418504185042,66.49335278642079],[-164.76464764647648,66.54569868178714]]],[[[-175.58635586355862,71.38009540546133],[-175.57915579155792,71.37840682819143],[-175.57555575555756,71.37334109638178],[-175.57555575555756,71.36489821003238],[-175.589955899559,71.35814390095285],[-175.6079560795608,71.35476674641308],[-175.62955629556296,71.35138959187333],[-175.65115651156512,71.35645532368295],[-175.66555665556655,71.36658678730225],[-175.679956799568,71.37502967365168],[-175.69435694356943,71.38009540546133],[-175.73755737557374,71.38347256000108],[-175.75915759157593,71.3902268690806],[-175.80955809558097,71.41217837358909],[-175.79875798757988,71.41217837358909],[-175.61875618756187,71.3817839827312],[-175.59715597155972,71.3817839827312],[-175.58635586355862,71.38009540546133]]],[[[175.16875168751687,-36.74119576239775],[175.19035190351906,-36.731064298778456],[175.1975519755198,-36.73444145331822],[175.20475204752051,-36.744572916937514],[175.21555215552155,-36.75808153509658],[175.20835208352082,-36.76314726690622],[175.19395193951942,-36.76652442144599],[175.18315183151833,-36.77496730779541],[175.17955179551797,-36.7850987714147],[175.19035190351906,-36.80536169865329],[175.19035190351906,-36.81549316227259],[175.1867518675187,-36.82224747135212],[175.18315183151833,-36.825624625891884],[175.16875168751687,-36.823936048622],[175.16155161551615,-36.823936048622],[175.13995139951402,-36.82900178043165],[175.1219512195122,-36.832378934971416],[175.10035100351007,-36.82900178043165],[175.0571505715057,-36.81718173954248],[175.0679506795068,-36.80873885319306],[175.0427504275043,-36.791853080494235],[175.03555035550357,-36.79016450322435],[175.02115021150212,-36.80029596684365],[175.01035010350103,-36.80198454411353],[175.00675006750066,-36.79016450322435],[175.01035010350103,-36.773278730525526],[175.01755017550175,-36.76145868963634],[175.02475024750248,-36.76314726690622],[175.07515075150752,-36.76145868963634],[175.0859508595086,-36.76652442144599],[175.0967509675097,-36.77665588506529],[175.10755107551074,-36.78172161687494],[175.12555125551256,-36.77159015325564],[175.16875168751687,-36.74119576239775]]],[[[-162.39942399423995,6.445856492122147],[-162.3850238502385,6.445856492122147],[-162.3850238502385,6.430659296693207],[-162.39942399423995,6.430659296693207],[-162.39942399423995,6.445856492122147]]],[[[-136.21276212762126,69.17987922280417],[-136.14436144361443,69.16130487283544],[-136.0651606516065,69.12922190470769],[-136.0219602196022,69.10895897746909],[-136.00756007560076,69.09038462750038],[-136.03996039960398,69.08700747296061],[-136.0867608676087,69.09038462750038],[-136.1191611916119,69.07856458661121],[-136.16596165961658,69.08700747296061],[-136.22356223562235,69.10558182292934],[-136.22356223562235,69.12077901835826],[-136.17676176761768,69.11571328654861],[-136.18036180361804,69.13428763651734],[-136.22356223562235,69.1562391410258],[-136.24876248762487,69.17143633645475],[-136.21276212762126,69.17987922280417]]],[[[-135.70515705157052,69.5091517904313],[-135.589955899559,69.46693735868422],[-135.59355593555935,69.44836300871552],[-135.6367563675637,69.45174016325527],[-135.70875708757086,69.47369166776375],[-135.76635766357663,69.48213455411317],[-135.8419584195842,69.48213455411317],[-135.8419584195842,69.49564317227222],[-135.78795787957878,69.50577463589153],[-135.70515705157052,69.5091517904313]]],[[[161.89541895418955,69.6543694356412],[161.90621906219064,69.64761512656167],[161.90261902619028,69.63241793113272],[161.88461884618846,69.61890931297367],[161.8918189181892,69.59526923119532],[161.89901899018992,69.57331772668684],[161.8666186661867,69.55474337671814],[161.8270182701827,69.54967764490848],[161.78021780217802,69.54798906763858],[161.75141751417516,69.55305479944823],[161.73341733417334,69.56487484033741],[161.7118171181712,69.58682634484589],[161.67581675816757,69.60202354027484],[161.66501665016654,69.62059789024354],[161.6686166861669,69.63748366294237],[161.70461704617048,69.63917224021225],[161.75501755017552,69.64086081748215],[161.81621816218166,69.65774659018098],[161.89541895418955,69.6543694356412]]],[[[170.1251012510125,69.772569844533],[170.27630276302762,69.772569844533],[170.2727027270273,69.76412695818357],[170.24750247502476,69.76412695818357],[170.22230222302227,69.73879829913534],[170.16110161101614,69.70840390827746],[170.09990099901,69.68645240376898],[170.06750067500678,69.69320671284851],[170.07110071100715,69.70840390827746],[170.03150031500314,69.71515821735699],[169.97749977499774,69.72022394916664],[169.9558995589956,69.72697825824616],[169.97389973899737,69.74217545367512],[170.05310053100533,69.76412695818357],[170.1251012510125,69.772569844533]]],[[[83.30663306633068,70.80597913370121],[83.37143371433717,70.78909336100239],[83.46863468634689,70.7384360429059],[83.44343443434434,70.69115587934917],[83.37503375033754,70.66413864303107],[83.30303303033031,70.64387571579246],[83.30303303033031,70.60503843858515],[83.259832598326,70.54931538867902],[83.26343263432636,70.51047811147174],[83.31023310233104,70.48008372061383],[83.31023310233104,70.44293502067643],[83.259832598326,70.41929493889808],[83.1950319503195,70.37876908442087],[83.09063090630906,70.36188331172204],[83.06543065430657,70.36526046626182],[83.09783097830979,70.39227770257995],[83.13383133831337,70.434492134327],[83.11943119431197,70.48008372061383],[83.1266312663127,70.52398672963079],[83.13743137431373,70.56620116137785],[83.130231302313,70.60841559312493],[83.14823148231483,70.65063002487199],[83.2058320583206,70.68609014753955],[83.22383223832242,70.72661600201673],[83.23103231032309,70.76883043376378],[83.25623256232564,70.80091340189156],[83.30663306633068,70.80597913370121]]],[[[97.64557645576457,76.75652543276783],[97.64557645576457,76.75314827822805],[97.64917649176493,76.74808254641843],[97.63837638376384,76.74132823733888],[97.62397623976238,76.73795108279913],[97.58077580775807,76.75145970095818],[97.56637566375667,76.75314827822805],[97.51957519575194,76.74470539187865],[97.45837458374587,76.71768815556052],[97.4547745477455,76.7210653101003],[97.45117451174514,76.72781961917983],[97.44757447574477,76.73288535098948],[97.45117451174514,76.73626250552925],[97.45117451174514,76.739639660069],[97.44757447574477,76.74301681460878],[97.16677166771666,76.74639396914853],[97.15957159571599,76.75314827822805],[97.5087750877509,76.76665689638713],[97.51597515975163,76.77172262819678],[97.63837638376384,76.77341120546666],[97.6419764197642,76.768345473657],[97.6419764197642,76.76327974184736],[97.64557645576457,76.7582140100377],[97.64557645576457,76.75652543276783]]],[[[-78.78858788587885,-33.60888492676535],[-78.78138781387814,-33.61395065857499],[-78.75618756187562,-33.642656472163],[-78.77058770587705,-33.642656472163],[-78.78138781387814,-33.642656472163],[-78.79218792187922,-33.64603362670277],[-78.79938799387993,-33.65109935851241],[-78.81018810188101,-33.644345049432886],[-78.81378813788137,-33.65109935851241],[-78.84258842588426,-33.63590216308347],[-78.86418864188641,-33.63083643127382],[-78.88578885788857,-33.6325250085437],[-78.92178921789217,-33.64772220397265],[-78.94338943389434,-33.65278793578229],[-78.95778957789578,-33.65616509032206],[-78.97938979389794,-33.66967370848112],[-78.98658986589865,-33.66798513121124],[-78.99018990189902,-33.65616509032206],[-78.96858968589686,-33.63421358581358],[-78.94338943389434,-33.615639235844874],[-78.93258932589326,-33.61226208130511],[-78.91098910989109,-33.60719634949546],[-78.90018900189001,-33.602130617685816],[-78.89658896588965,-33.597064885876165],[-78.89658896588965,-33.58693342225687],[-78.8929889298893,-33.578490535907456],[-78.88578885788857,-33.57511338136769],[-78.87138871388713,-33.576801958637574],[-78.84978849788497,-33.581867690447226],[-78.82818828188282,-33.59031057679664],[-78.82098820988209,-33.60550777222558],[-78.81738817388174,-33.60888492676535],[-78.80658806588066,-33.60888492676535],[-78.78858788587885,-33.60888492676535]]],[[[-109.23049230492305,-27.092665242288014],[-109.21969219692197,-27.10448528317719],[-109.22689226892268,-27.117993901336256],[-109.24489244892449,-27.129813942225432],[-109.27369273692737,-27.134879674035076],[-109.29169291692916,-27.14501113765438],[-109.30249302493024,-27.14838829219414],[-109.32409324093241,-27.14838829219414],[-109.33129331293313,-27.150076869464023],[-109.3420934209342,-27.153454024003793],[-109.35289352893528,-27.160208333083318],[-109.36009360093601,-27.16696264216285],[-109.36729367293673,-27.172028373972502],[-109.3780937809378,-27.175405528512265],[-109.38889388893888,-27.175405528512265],[-109.39609396093961,-27.177094105782146],[-109.41049410494105,-27.182159837591797],[-109.41769417694177,-27.192291301211093],[-109.42849428494284,-27.199045610290625],[-109.43929439294392,-27.200734187560506],[-109.45009450094501,-27.195668455750855],[-109.45369453694536,-27.18722556940144],[-109.45009450094501,-27.178782683052027],[-109.44649446494465,-27.170339796702613],[-109.4248942489425,-27.099419551367546],[-109.4140941409414,-27.0842223559386],[-109.39609396093961,-27.069025160509653],[-109.3780937809378,-27.058893696890358],[-109.36729367293673,-27.06227085143012],[-109.30969309693097,-27.08591093320848],[-109.30249302493024,-27.087599510478363],[-109.28089280892809,-27.097730974097658],[-109.27009270092701,-27.099419551367546],[-109.26289262892628,-27.097730974097658],[-109.2520925209252,-27.092665242288014],[-109.24129241292412,-27.090976665018133],[-109.23049230492305,-27.092665242288014]]],[[[-38.94338943389434,-13.394926428999568],[-38.914589145891455,-13.383106388110377],[-38.90738907389073,-13.388172119920029],[-38.89658896588966,-13.454026633445451],[-38.90018900189003,-13.47091240614428],[-38.914589145891455,-13.484421024303344],[-38.91098910989109,-13.494552487922647],[-38.914589145891455,-13.508061106081698],[-38.92538925389255,-13.523258301510651],[-38.92898928989288,-13.53845549693959],[-38.93618936189361,-13.557029846908307],[-38.93258932589325,-13.568849887797484],[-38.91818918189182,-13.58066992868666],[-38.914589145891455,-13.592489969575837],[-38.90378903789036,-13.599244278655362],[-38.90738907389073,-13.605998587734902],[-38.90738907389073,-13.621195783163841],[-38.89658896588966,-13.629638669513255],[-38.8929889298893,-13.639770133132558],[-38.90378903789036,-13.671853101260325],[-38.914589145891455,-13.671853101260325],[-38.91818918189182,-13.666787369450674],[-38.92178921789218,-13.654967328561497],[-38.93618936189361,-13.656655905831386],[-38.95058950589507,-13.65834448310126],[-38.95778957789577,-13.633015824053018],[-38.97938979389792,-13.599244278655362],[-38.98658986589865,-13.57391561960712],[-38.98298982989829,-13.558718424178181],[-38.97938979389792,-13.546898383289005],[-38.97938979389792,-13.516503992431112],[-38.97218972189722,-13.508061106081698],[-38.96858968589686,-13.50299537427206],[-38.96858968589686,-13.49792964246241],[-38.97938979389792,-13.489486756112996],[-39.02619026190263,-13.472600983414168],[-39.04419044190442,-13.457403787985214],[-39.03339033390333,-13.442206592556275],[-39.04419044190442,-13.423632242587573],[-39.040590405904055,-13.406746469888745],[-39.03339033390333,-13.39323785172968],[-39.015390153901535,-13.386483542650154],[-39.00099000990011,-13.389860697189917],[-38.98298982989829,-13.394926428999568],[-38.964989649896495,-13.398303583539331],[-38.94338943389434,-13.394926428999568]]],[[[-38.61578615786158,-12.925501947972165],[-38.59418594185942,-12.964339225179472],[-38.586985869858694,-12.986290729687951],[-38.604986049860486,-12.99642219330724],[-38.62658626586264,-13.00148792511689],[-38.6409864098641,-13.013307966006067],[-38.67698676986768,-13.04370235686396],[-38.72018720187202,-13.072408170451965],[-38.738187381873814,-13.089293943150793],[-38.75258752587524,-13.112934024929146],[-38.763387633876334,-13.116311179468923],[-38.77058770587706,-13.12137691127856],[-38.77418774187743,-13.126442643088211],[-38.77778777787776,-13.133196952167737],[-38.78498784987849,-13.133196952167737],[-38.78498784987849,-13.117999756738797],[-38.79218792187922,-13.075785324991728],[-38.79218792187922,-13.0588995522929],[-38.78498784987849,-13.050456665943486],[-38.75978759787597,-13.036948047784435],[-38.730987309873086,-13.018373697815719],[-38.66978669786698,-12.962650647909584],[-38.66978669786698,-12.954207761560184],[-38.67698676986768,-12.952519184290296],[-38.68418684186841,-12.949142029750533],[-38.68418684186841,-12.944076297940882],[-38.67698676986768,-12.935633411591468],[-38.673386733867346,-12.937321988861356],[-38.673386733867346,-12.93901056613123],[-38.673386733867346,-12.940699143401119],[-38.66978669786698,-12.942387720670993],[-38.66978669786698,-12.925501947972165],[-38.680586805868046,-12.910304752543226],[-38.687786877868774,-12.895107557114287],[-38.698586985869866,-12.879910361685333],[-38.68418684186841,-12.873156052605808],[-38.6409864098641,-12.893418979844398],[-38.622986229862306,-12.905239020733575],[-38.61578615786158,-12.925501947972165]]],[[[123.14463144631446,-8.425443523734785],[123.16983169831701,-8.430509255544422],[123.18063180631805,-8.444017873703487],[123.17703177031774,-8.460903646402315],[123.16263162631628,-8.47441226456138],[123.12303123031234,-8.486232305450557],[123.03663036630365,-8.491298037260208],[123.0078300783008,-8.508183809959036],[122.9538295382954,-8.585858364373635],[122.93222932229321,-8.604432714342352],[122.91422914229145,-8.607809868882114],[122.90342903429035,-8.604432714342352],[122.88182881828817,-8.582481209833873],[122.91062910629108,-8.514938119038561],[123.00063000630007,-8.449083605513138],[123.0078300783008,-8.44739502824325],[123.01863018630189,-8.450772182783027],[123.02943029430293,-8.452460760052901],[123.04383043830438,-8.450772182783027],[123.0726307263073,-8.438952141893836],[123.0870308703087,-8.438952141893836],[123.10503105031052,-8.440640719163724],[123.11583115831161,-8.438952141893836],[123.12303123031234,-8.435574987354073],[123.1410314103141,-8.42713210100466],[123.14463144631446,-8.425443523734785]]],[[[117.66537665376654,-8.148516851474014],[117.67257672576727,-8.153582583283665],[117.68337683376836,-8.158648315093316],[117.69057690576909,-8.165402624172842],[117.69417694176946,-8.175534087792144],[117.69417694176946,-8.183976974141558],[117.68697686976873,-8.189042705951195],[117.66897668976691,-8.199174169570497],[117.64017640176405,-8.22450282861874],[117.62217622176223,-8.253208642206744],[117.56817568175683,-8.364654742018999],[117.55377553775537,-8.378163360178064],[117.53217532175324,-8.38491766925759],[117.52497524975252,-8.381540514717827],[117.4925749257493,-8.361277587479236],[117.48537485374857,-8.34945754659006],[117.48537485374857,-8.342703237510534],[117.4961749617496,-8.329194619351469],[117.51057510575106,-8.295423073953813],[117.51057510575106,-8.280225878524874],[117.49977499774997,-8.26502868309592],[117.48897488974893,-8.256585796746506],[117.48537485374857,-8.254897219476632],[117.4817748177482,-8.249831487666981],[117.4817748177482,-8.2093056331898],[117.4817748177482,-8.195797015030735],[117.48537485374857,-8.18228839687167],[117.4925749257493,-8.175534087792144],[117.54657546575464,-8.148516851474014],[117.56457564575646,-8.145139696934251],[117.66537665376654,-8.148516851474014]]],[[[120.75780757807581,-7.076270285098502],[120.77220772207721,-7.059384512399674],[120.7830078300783,-7.056007357859912],[120.78660786607867,-7.0728931305587395],[120.7830078300783,-7.088090325987679],[120.77220772207721,-7.115107562305809],[120.77220772207721,-7.1303047577347485],[120.74340743407436,-7.1353704895444],[120.70380703807041,-7.133681912274511],[120.68220682206822,-7.123550448655223],[120.68220682206822,-7.138747644084162],[120.67140671406713,-7.150567684973339],[120.63180631806318,-7.131993335004637],[120.62100621006209,-7.108353253226269],[120.62460624606246,-7.09315605779733],[120.59940599405996,-7.098221789606981],[120.58140581405814,-7.091467480527442],[120.56340563405632,-7.0948446350672185],[120.55620556205565,-7.0728931305587395],[120.56700567005669,-7.067827398749088],[120.59220592205924,-7.079647439638265],[120.61380613806136,-7.069515976018977],[120.62100621006209,-7.044187316970735],[120.61740617406173,-7.022235812462256],[120.62100621006209,-6.998595730683903],[120.63540635406355,-7.0070386170333165],[120.65340653406537,-7.010415771573079],[120.67860678606786,-7.044187316970735],[120.7290072900729,-7.067827398749088],[120.74340743407436,-7.074581707828614],[120.75780757807581,-7.076270285098502]]],[[[-44.49824498244982,-2.8075469468350462],[-44.50904509045091,-2.8092355241049205],[-44.51264512645125,-2.8143012559145717],[-44.51624516245161,-2.8227441422639856],[-44.51624516245161,-2.8345641831531623],[-44.50544505445055,-2.8227441422639856],[-44.48024480244803,-2.7923497514060927],[-44.48744487444873,-2.8717128830905807],[-44.49104491044909,-2.890287233059297],[-44.50184501845018,-2.903795851218362],[-44.50544505445055,-2.915615892107539],[-44.49824498244982,-2.9493874375051945],[-44.51624516245161,-2.9595189011244827],[-44.53784537845377,-2.969650364743785],[-44.55584555845559,-3.0034219101414408],[-44.58464584645847,-3.035504878269208],[-44.58464584645847,-3.0473249191583847],[-44.58824588245881,-3.052390650968036],[-44.58824588245881,-3.0557678055077986],[-44.59184591845917,-3.06083353731745],[-44.5990459904599,-3.06083353731745],[-44.5990459904599,-3.052390650968036],[-44.5990459904599,-3.045636341888496],[-44.60264602646026,-3.040570610078859],[-44.60264602646026,-3.035504878269208],[-44.60264602646026,-3.0253734146499056],[-44.60264602646026,-3.021996260110143],[-44.59184591845917,-3.000044755601664],[-44.58464584645847,-2.9899132919823757],[-44.57744577445774,-2.9814704056329617],[-44.57384573845738,-2.95614174658472],[-44.56664566645665,-2.9325016648063666],[-44.56304563045629,-2.920681623917176],[-44.56664566645665,-2.9021072739484737],[-44.58464584645847,-2.8615814194712925],[-44.58464584645847,-2.846384224042339],[-44.58464584645847,-2.829498451343511],[-44.57744577445774,-2.8007926377555066],[-44.54864548645486,-2.7433810105794976],[-44.5270452704527,-2.728183815150558],[-44.48024480244803,-2.7045437333721907],[-44.48384483844839,-2.761955360548214],[-44.49824498244982,-2.8075469468350462]]],[[[-44.89064890648905,-1.2726302085116714],[-44.879848798487984,-1.284450249400848],[-44.87624876248762,-1.2962702902900247],[-44.88704887048871,-1.3266646811479177],[-44.89064890648905,-1.3266646811479177],[-44.897848978489776,-1.319910372068378],[-44.90144901449014,-1.314844640258741],[-44.91224912249123,-1.3097789084490898],[-44.91944919449193,-1.3064017539093271],[-44.91944919449193,-1.314844640258741],[-44.91584915849157,-1.3215989493382665],[-44.90864908649087,-1.328353258417792],[-44.897848978489776,-1.3334189902274431],[-44.90864908649087,-1.3384847220370943],[-44.91584915849157,-1.3452390311166198],[-44.923049230492296,-1.3536819174660337],[-44.92664926649266,-1.3604362265455734],[-44.93384933849339,-1.3671905356250988],[-44.94464944649445,-1.3705676901648616],[-44.95184951849518,-1.37225626743475],[-44.96264962649627,-1.3671905356250988],[-44.96264962649627,-1.3908306174034522],[-44.980649806498064,-1.3958963492131033],[-45.00225002250022,-1.389142040133578],[-45.02025020250201,-1.3773219992444012],[-45.02745027450274,-1.3604362265455734],[-45.02745027450274,-1.3401732993069828],[-45.02025020250201,-1.323287526608155],[-45.01665016650165,-1.311467485718964],[-45.00225002250022,-1.3182217947985038],[-44.99504995049949,-1.3266646811479177],[-44.99504995049949,-1.3384847220370943],[-44.99504995049949,-1.3536819174660337],[-44.980649806498064,-1.319910372068378],[-44.9770497704977,-1.301336022099676],[-44.99144991449913,-1.292893135750262],[-44.99144991449913,-1.284450249400848],[-44.98424984249843,-1.2692530539719087],[-44.973449734497336,-1.2608101676224948],[-44.948249482494816,-1.2726302085116714],[-44.93744937449375,-1.2692530539719087],[-44.930249302493024,-1.2608101676224948],[-44.923049230492296,-1.2574330130827178],[-44.91584915849157,-1.2591215903526063],[-44.90864908649087,-1.262498744892369],[-44.89064890648905,-1.2726302085116714]]],[[[-90.38070380703807,-1.254055858542955],[-90.37710377103771,-1.2574330130827178],[-90.37350373503735,-1.2608101676224948],[-90.36990369903698,-1.2641873221622575],[-90.36630366303663,-1.2726302085116714],[-90.36630366303663,-1.2793845175911969],[-90.36990369903698,-1.2827616721309596],[-90.37350373503735,-1.2861388266707365],[-90.37350373503735,-1.2878274039406108],[-90.37710377103771,-1.292893135750262],[-90.38790387903879,-1.2962702902900247],[-90.3951039510395,-1.2979588675599132],[-90.3951039510395,-1.3030245993695502],[-90.39150391503915,-1.314844640258741],[-90.3951039510395,-1.319910372068378],[-90.39870398703987,-1.3266646811479177],[-90.43110431104311,-1.3452390311166198],[-90.43830438304383,-1.3469276083865083],[-90.47430474304743,-1.341861876576857],[-90.48870488704887,-1.3317304129575689],[-90.50310503105031,-1.3182217947985038],[-90.52470524705247,-1.3064017539093271],[-90.51390513905139,-1.2962702902900247],[-90.50670506705066,-1.2827616721309596],[-90.49950499504995,-1.2675644767020202],[-90.49230492304923,-1.2371700858441272],[-90.4851048510485,-1.2219728904151879],[-90.47070470704706,-1.2169071586055367],[-90.46350463504635,-1.2304157767646018],[-90.44190441904419,-1.2253500449549506],[-90.41670416704167,-1.2304157767646018],[-90.39150391503915,-1.2422358176537784],[-90.38070380703807,-1.254055858542955]]],[[[-89.30789307893079,-0.6850053185924878],[-89.29709297092971,-0.6934482049419017],[-89.28269282692827,-0.6934482049419017],[-89.26829268292683,-0.6883824731322505],[-89.25749257492575,-0.6816281640527251],[-89.25389253892538,-0.7187768639901435],[-89.27189271892719,-0.7593027184673247],[-89.30069300693006,-0.7964514184047431],[-89.33309333093331,-0.8200915001831106],[-89.36909369093691,-0.8302229638023988],[-89.37269372693727,-0.83528869561205],[-89.37629376293762,-0.8454201592313524],[-89.3870938709387,-0.8741259728193569],[-89.4050940509405,-0.9045203636772357],[-89.41949419494195,-0.9197175591061892],[-89.43389433894339,-0.9298490227254774],[-89.45189451894518,-0.9349147545351286],[-89.46629466294662,-0.9366033318050171],[-89.49869498694987,-0.9349147545351286],[-89.50949509495095,-0.9382919090748914],[-89.5310953109531,-0.9534891045038449],[-89.54549545495455,-0.9568662590436077],[-89.55269552695526,-0.9534891045038449],[-89.57429574295743,-0.9399804863447798],[-89.58509585095851,-0.9349147545351286],[-89.62109621096211,-0.9298490227254774],[-89.62829628296282,-0.9264718681857147],[-89.63189631896319,-0.9163404045664123],[-89.62469624696247,-0.9062089409471241],[-89.61389613896138,-0.8910117455181847],[-89.6030960309603,-0.8825688591687708],[-89.56349563495634,-0.8639945092000545],[-89.55269552695526,-0.8538630455807521],[-89.54189541895418,-0.8200915001831106],[-89.5310953109531,-0.8184029229132221],[-89.48789487894878,-0.8082714592939197],[-89.4770947709477,-0.7964514184047431],[-89.46269462694626,-0.7643684502769759],[-89.45189451894518,-0.7525484093877992],[-89.42669426694266,-0.7289083276094459],[-89.41949419494195,-0.720465441260032],[-89.41229412294122,-0.7137111321804923],[-89.37629376293762,-0.7002025140214272],[-89.36549365493654,-0.690071050402139],[-89.3510935109351,-0.6883824731322505],[-89.31869318693187,-0.6799395867828366],[-89.30789307893079,-0.6850053185924878]]],[[[-91.39951399513996,-0.4536702326185633],[-91.41031410314103,-0.4587359644282145],[-91.47871478714787,-0.48575320074633055],[-91.49671496714967,-0.4891303552860933],[-91.50751507515075,-0.49081893255598175],[-91.51831518315183,-0.487441778016219],[-91.53991539915398,-0.4722445825872654],[-91.55791557915579,-0.4688674280475027],[-91.58671586715867,-0.45704738715832605],[-91.59031590315902,-0.4553588098884376],[-91.6011160111601,-0.45704738715832605],[-91.60831608316083,-0.45704738715832605],[-91.6119161191612,-0.45198165534867485],[-91.6119161191612,-0.4502930780788006],[-91.6119161191612,-0.44691592353902365],[-91.6119161191612,-0.44185019172938667],[-91.62991629916299,-0.42327584176067035],[-91.64431644316443,-0.40301291452207977],[-91.65151651516514,-0.3810614100136007],[-91.65871658716587,-0.33546982372676837],[-91.67311673116731,-0.29832112378934994],[-91.66951669516695,-0.2848125056302848],[-91.57951579515795,-0.2865010829001733],[-91.54351543515435,-0.26792673293145697],[-91.49671496714967,-0.2577952693121688],[-91.47511475114752,-0.24935238296275486],[-91.46791467914679,-0.2510409602326291],[-91.45711457114571,-0.2577952693121688],[-91.42111421114211,-0.29325539197969874],[-91.41031410314103,-0.29832112378934994],[-91.39951399513996,-0.30845258740865233],[-91.39591395913959,-0.3287155146472429],[-91.39951399513996,-0.3675527918545356],[-91.39951399513996,-0.4536702326185633]]],[[[-90.56430564305643,-0.2848125056302848],[-90.54990549905499,-0.29325539197969874],[-90.5571055710557,-0.3101411646785266],[-90.57870578705787,-0.34222413280630803],[-90.58590585905858,-0.36417563731477287],[-90.60390603906039,-0.36924136912442407],[-90.62910629106291,-0.3675527918545356],[-90.66870668706687,-0.3540441736954847],[-90.74070740707407,-0.3540441736954847],[-90.75870758707586,-0.347289864615945],[-90.77670776707767,-0.33715840099665684],[-90.79470794707947,-0.33040409191711717],[-90.819908199082,-0.3388469782665311],[-90.83070830708307,-0.32196120556770325],[-90.83790837908379,-0.29663254651946147],[-90.84870848708486,-0.2763696192808709],[-90.87390873908738,-0.2713038874712339],[-90.83070830708307,-0.21220368302533643],[-90.83070830708307,-0.1986950648662713],[-90.83430834308342,-0.18180929216744346],[-90.82710827108271,-0.1649235194686156],[-90.8091080910809,-0.1514149013095505],[-90.79110791107911,-0.14803774676978776],[-90.78390783907838,-0.15310347857943896],[-90.78030780307803,-0.15310347857943896],[-90.77670776707767,-0.14803774676978776],[-90.75870758707586,-0.16154636492885288],[-90.69030690306903,-0.1851864467072062],[-90.66510665106651,-0.18856360124696891],[-90.63270632706326,-0.20207221940603404],[-90.57870578705787,-0.25948384658204304],[-90.55350553505535,-0.27805819655075936],[-90.5571055710557,-0.27974677382064783],[-90.56070560705606,-0.27974677382064783],[-90.56430564305643,-0.2848125056302848]]],[[[-50.31230312303123,0.41425848410115407],[-50.31590315903159,0.45816149311809795],[-50.31590315903159,0.49699877032540485],[-50.301503015030136,0.5307703157230605],[-50.27990279902798,0.5577875520411766],[-50.25470254702546,0.5696075929303532],[-50.251102511025096,0.5763619020098929],[-50.258302583025824,0.5848047883593068],[-50.24030240302403,0.5932476747087065],[-50.18630186301863,0.5915590974388323],[-50.175501755017535,0.594936251978595],[-50.168301683016836,0.6050677155978974],[-50.150301503015015,0.5966248292484835],[-50.12150121501216,0.5712961702002417],[-50.11430114301143,0.5864933656291811],[-50.13590135901359,0.5983134065183577],[-50.13230132301322,0.6118220246774229],[-50.12150121501216,0.6270192201063622],[-50.10350103501034,0.6405278382654274],[-50.08190081900818,0.647282147344967],[-50.06390063900639,0.647282147344967],[-50.03870038700387,0.6067562928677717],[-50.03150031500314,0.5932476747087065],[-50.03150031500314,0.5848047883593068],[-50.03150031500314,0.5611647065809393],[-50.03150031500314,0.5560989747712881],[-50.024300243002415,0.5476560884218742],[-50.024300243002415,0.5409017793423487],[-50.02790027900278,0.5358360475326975],[-50.03510035100351,0.5257045839134094],[-50.042300423004235,0.5105073884844558],[-50.16470164701647,0.41425848410115407],[-50.200702007020055,0.392306979592675],[-50.22950229502294,0.37710978416372143],[-50.251102511025096,0.3602240114649078],[-50.27990279902798,0.35684685692513085],[-50.301503015030136,0.37542120689384717],[-50.31230312303123,0.41425848410115407]]],[[[-50.452704527045256,2.1112786403332535],[-50.44190441904419,2.107901485793491],[-50.427504275042736,2.1112786403332535],[-50.409504095040944,2.112967217603142],[-50.39870398703985,2.1146557948730305],[-50.38790387903879,2.0977700221742026],[-50.36630366303663,2.069064208586198],[-50.35550355503554,2.0589327449668957],[-50.351903519035176,2.033604085918654],[-50.33750337503375,2.0099640041403006],[-50.326703267032656,1.9913896541715843],[-50.31230312303123,1.967749572393231],[-50.31230312303123,1.9474866451546404],[-50.319503195031956,1.9356666042654638],[-50.33750337503375,1.9120265224870963],[-50.377103771037696,1.8782549770894406],[-50.395103951039516,1.8698120907400408],[-50.420304203042036,1.8630577816605012],[-50.44190441904419,1.8698120907400408],[-50.459904599045984,1.8816321316292175],[-50.477904779047776,1.9424209133449892],[-50.4959049590496,1.967749572393231],[-50.4959049590496,1.9846353450920589],[-50.50670506705066,1.994766808711347],[-50.52470524705245,2.0015211177908867],[-50.52110521105212,2.0319155086487797],[-50.510305103051024,2.055555590427133],[-50.510305103051024,2.0791956722054863],[-50.503105031050296,2.096081444904314],[-50.48870488704887,2.099458599444077],[-50.47070470704708,2.0977700221742026],[-50.452704527045256,2.1112786403332535]]],[[[-50.54270542705427,2.1467387630007977],[-50.553505535055336,2.151804494810449],[-50.553505535055336,2.156870226620086],[-50.54270542705427,2.1686902675092767],[-50.51390513905139,2.187264617477979],[-50.49230492304923,2.187264617477979],[-50.46350463504635,2.187264617477979],[-50.44910449104489,2.175444576588802],[-50.4311043110431,2.1653131129695],[-50.41670416704167,2.145050185730909],[-50.41670416704167,2.126475835762207],[-50.42390423904237,2.1197215266826674],[-50.44190441904419,2.118032949412793],[-50.45630456304562,2.1197215266826674],[-50.46710467104671,2.1163443721429047],[-50.47430474304741,2.107901485793491],[-50.485104851048504,2.1095900630633793],[-50.49950499504993,2.107901485793491],[-50.510305103051024,2.1095900630633793],[-50.52110521105212,2.1146557948730305],[-50.52470524705245,2.1382958766513838],[-50.535505355053544,2.145050185730909],[-50.54270542705427,2.1467387630007977]]],[[[125.7906579065791,6.9473639412773025],[125.79425794257946,6.938921054927889],[125.7906579065791,6.9287895913086],[125.78345783457837,6.916969550419424],[125.77625776257764,6.893329468641056],[125.76905769057691,6.898395200450707],[125.75465754657546,6.916969550419424],[125.74385743857442,6.937232477658014],[125.7366573665737,6.979446909405084],[125.7258572585726,7.004775568453326],[125.72225722257224,7.014907032072614],[125.71865718657187,7.052055732010032],[125.71145711457115,7.0571214638196835],[125.70425704257042,7.0571214638196835],[125.68265682656829,7.0655643501690975],[125.67905679056793,7.0655643501690975],[125.67545675456756,7.070630081978749],[125.6718567185672,7.082450122867925],[125.6718567185672,7.0925815864872135],[125.67545675456756,7.104401627376404],[125.68265682656829,7.112844513725818],[125.68985689856902,7.116221668265581],[125.69705697056969,7.126353131884869],[125.70065700657005,7.177010449981353],[125.70785707857078,7.192207645410306],[125.71505715057151,7.195584799950069],[125.72225722257224,7.193896222680181],[125.72945729457297,7.185453336330767],[125.73305733057333,7.177010449981353],[125.7510575105751,7.161813254552413],[125.76905769057691,7.149993213663237],[125.78345783457837,7.134796018234283],[125.78705787057874,7.112844513725818],[125.779857798578,6.984512641214721],[125.78345783457837,6.962561136706256],[125.7906579065791,6.9473639412773025]]],[[[122.97182971829722,7.38301687690705],[122.95022950229503,7.386394031446812],[122.9430294302943,7.389771185986575],[122.95022950229503,7.372885413287747],[122.9538295382954,7.362753949668459],[122.95022950229503,7.355999640588919],[122.9430294302943,7.349245331509394],[122.93582935829357,7.349245331509394],[122.92862928629285,7.349245331509394],[122.92502925029254,7.349245331509394],[122.89622896228963,7.327293827000915],[122.88182881828817,7.3205395179213895],[122.8746287462875,7.318850940651501],[122.86022860228604,7.3171623633816125],[122.85662856628568,7.315473786111738],[122.84942849428495,7.310408054302087],[122.84582845828459,7.29858801341291],[122.84222842228422,7.293522281603259],[122.82782827828277,7.291833704333385],[122.81702817028173,7.295210858873148],[122.809828098281,7.305342322492436],[122.79902799027991,7.3205395179213895],[122.79542795427955,7.345868176969631],[122.79542795427955,7.384705454176924],[122.80262802628027,7.416788422304705],[122.82782827828277,7.430297040463756],[122.84222842228422,7.423542731384231],[122.85662856628568,7.408345535955291],[122.86742867428677,7.396525495066101],[122.88182881828817,7.396525495066101],[122.8890288902889,7.406656958685403],[122.89262892628926,7.420165576844468],[122.89262892628926,7.431985617733645],[122.90342903429035,7.437051349543296],[122.92502925029254,7.430297040463756],[122.9430294302943,7.416788422304705],[122.96102961029612,7.398214072335989],[122.97182971829722,7.38301687690705]]],[[[-81.66501665016649,7.396525495066101],[-81.65421654216541,7.391459763256464],[-81.62181621816218,7.393148340526338],[-81.61461614616145,7.386394031446812],[-81.58941589415893,7.335736713350329],[-81.60741607416074,7.327293827000915],[-81.6290162901629,7.322228095191264],[-81.65061650616506,7.322228095191264],[-81.6830168301683,7.34080244515998],[-81.72621726217263,7.344179599699743],[-81.74781747817478,7.349245331509394],[-81.7550175501755,7.357688217858808],[-81.78021780217802,7.384705454176924],[-81.80181801818019,7.394836917796226],[-81.84141841418413,7.430297040463756],[-81.8630186301863,7.479265781290351],[-81.87381873818738,7.486020090369891],[-81.87381873818738,7.491085822179542],[-81.8810188101881,7.516414481227784],[-81.87741877418773,7.518103058497658],[-81.85941859418594,7.518103058497658],[-81.84861848618486,7.519791635767547],[-81.84861848618486,7.524857367577198],[-81.83781837818378,7.546808872085663],[-81.83421834218342,7.546808872085663],[-81.83061830618306,7.558628912974839],[-81.83061830618306,7.568760376594142],[-81.83061830618306,7.575514685673667],[-81.82341823418234,7.58564614929297],[-81.81621816218161,7.590711881102621],[-81.79821798217982,7.594089035642384],[-81.76941769417694,7.614351962880974],[-81.75861758617586,7.619417694690625],[-81.75861758617586,7.616040540150863],[-81.75141751417515,7.616040540150863],[-81.7550175501755,7.6244834265002766],[-81.75861758617586,7.636303467389453],[-81.75861758617586,7.644746353738867],[-81.75141751417515,7.644746353738867],[-81.75141751417515,7.636303467389453],[-81.74781747817478,7.636303467389453],[-81.74781747817478,7.641369199199104],[-81.74421744217442,7.643057776468979],[-81.74061740617405,7.644746353738867],[-81.71541715417153,7.578891840213444],[-81.71541715417153,7.568760376594142],[-81.71181711817118,7.565383222054379],[-81.70461704617045,7.553563181165202],[-81.70461704617045,7.551874603895314],[-81.70461704617045,7.5434317175459],[-81.70461704617045,7.540054563006137],[-81.7010170101701,7.540054563006137],[-81.69381693816938,7.541743140276012],[-81.69021690216901,7.540054563006137],[-81.6830168301683,7.534988831196486],[-81.67581675816758,7.531611676656723],[-81.67221672216722,7.526545944847072],[-81.67221672216722,7.509660172148244],[-81.67581675816758,7.506283017608482],[-81.70821708217082,7.4927743994494165],[-81.70821708217082,7.486020090369891],[-81.71541715417153,7.4573142767818865],[-81.7190171901719,7.452248544972235],[-81.71181711817118,7.440428504083059],[-81.69381693816938,7.423542731384231],[-81.69021690216901,7.413411267764928],[-81.69021690216901,7.40327980414564],[-81.6830168301683,7.394836917796226],[-81.67941679416793,7.391459763256464],[-81.67221672216722,7.396525495066101],[-81.66501665016649,7.396525495066101]]],[[[-60.92160921609215,9.027691137772791],[-60.89640896408963,9.032756869582443],[-60.874808748087474,9.027691137772791],[-60.85680856808568,9.015871096883615],[-60.838808388083876,9.000673901454675],[-60.86040860408603,8.993919592375136],[-60.864008640086396,8.993919592375136],[-60.849608496084954,8.970279510596782],[-60.864008640086396,8.941573697008778],[-60.89280892808928,8.914556460690648],[-60.93240932409324,8.884162069832769],[-61.06921069210692,8.828439019926634],[-61.09081090810908,8.821684710847109],[-61.03681036810367,8.863899142594178],[-61.01521015210152,8.880784915292992],[-60.98280982809828,8.929753656119601],[-60.97200972009719,8.963525201517257],[-60.96120961209611,8.973656665136545],[-60.950409504095035,8.98041097421607],[-60.93600936009359,8.990542437835373],[-60.93240932409324,9.000673901454675],[-60.93600936009359,9.00911678780409],[-60.93240932409324,9.019248251423377],[-60.92160921609215,9.027691137772791]]],[[[-61.08721087210871,8.890916378912294],[-61.09801098010979,8.901047842531597],[-61.09441094410944,8.919622192500299],[-61.08361083610836,8.943262274278652],[-61.080010800108,8.963525201517257],[-61.06921069210692,8.978722396946196],[-61.04761047610475,8.98716528329561],[-61.02241022410223,8.992231015105261],[-61.000810008100075,9.000673901454675],[-60.98280982809828,9.019248251423377],[-60.94680946809467,9.066528414980098],[-60.93240932409324,9.074971301329512],[-60.90720907209072,9.078348455869275],[-60.85320853208532,9.096922805837977],[-60.85320853208532,9.086791342218689],[-60.85320853208532,9.078348455869275],[-60.85680856808568,9.069905569519861],[-60.86040860408603,9.061462683170447],[-60.86040860408603,9.069905569519861],[-60.86760867608676,9.051331219551145],[-60.874808748087474,9.04288833320173],[-60.88920889208892,9.041199755931856],[-60.91080910809107,9.041199755931856],[-60.92880928809288,9.036134024122205],[-60.94320943209432,9.026002560502917],[-61.026010260102595,8.948328006088303],[-61.03321033210332,8.93988511973889],[-61.03681036810367,8.919622192500299],[-61.0440104401044,8.911179306150885],[-61.076410764107635,8.892604956182183],[-61.08721087210871,8.890916378912294]]],[[[-60.874808748087474,9.117185733076582],[-60.88920889208892,9.098611383107865],[-60.93960939609396,9.081725610409038],[-60.96120961209611,9.069905569519861],[-60.94320943209432,9.103677114917517],[-60.94320943209432,9.137448660315172],[-60.93600936009359,9.164465896633288],[-60.90720907209072,9.184728823871879],[-60.87120871208711,9.194860287491181],[-60.85320853208532,9.194860287491181],[-60.84600846008459,9.183040246602005],[-60.84600846008459,9.162777319363414],[-60.85320853208532,9.144202969394698],[-60.864008640086396,9.125628619425996],[-60.874808748087474,9.110431423997042],[-60.874808748087474,9.117185733076582]]],[[[-60.81720817208172,9.206680328380358],[-60.80280802808028,9.21681179199966],[-60.78120781207812,9.228631832888837],[-60.75960759607595,9.230320410158711],[-60.74160741607416,9.213434637459883],[-60.738007380073796,9.208368905650246],[-60.73440734407343,9.198237442030944],[-60.72720727207272,9.193171710221293],[-60.738007380073796,9.188105978411656],[-60.75240752407524,9.188105978411656],[-60.77040770407703,9.18979455568153],[-60.799207992079914,9.171220205712828],[-60.80640806408064,9.157711587553763],[-60.813608136081356,9.137448660315172],[-60.824408244082434,9.122251464886219],[-60.84600846008459,9.117185733076582],[-60.83520835208351,9.142514392124824],[-60.8280082800828,9.188105978411656],[-60.81720817208172,9.206680328380358]]],[[[125.29385293852937,9.969917254367346],[125.30465304653046,9.937834286239564],[125.30465304653046,9.932768554429913],[125.29745297452973,9.92939139989015],[125.29025290252906,9.922637090810625],[125.2866528665287,9.917571359000974],[125.27225272252724,9.919259936270862],[125.26865268652688,9.924325668080499],[125.26505265052651,9.931079977160039],[125.26505265052651,9.937834286239564],[125.26145261452615,9.946277172588978],[125.23625236252366,9.974982986176983],[125.20025200252002,10.035771767892768],[125.16425164251643,10.056034695131359],[125.14625146251461,10.071231890560298],[125.13905139051394,10.086429085989252],[125.12465124651249,10.130332095006196],[125.12465124651249,10.152283599514675],[125.13905139051394,10.165792217673726],[125.14985149851498,10.165792217673726],[125.1570515705157,10.160726485864089],[125.17505175051753,10.145529290435135],[125.21825218252184,10.130332095006196],[125.22905229052293,10.121889208656782],[125.23985239852402,10.103314858688066],[125.25425254252542,10.035771767892768],[125.26145261452615,10.023951727003592],[125.2758527585276,10.008754531574638],[125.29025290252906,9.99186875887581],[125.29385293852937,9.969917254367346]]],[[[124.5990459904599,11.563934197136604],[124.62064620646208,11.553802733517315],[124.62424624246245,11.53353980627871],[124.61704617046172,11.49807968361118],[124.60984609846099,11.486259642722004],[124.59184591845917,11.481193910912353],[124.5306453064531,11.482882488182241],[124.50544505445055,11.489636797261767],[124.48744487444878,11.487948219991878],[124.48384483844842,11.479505333642464],[124.48024480244806,11.474439601832827],[124.47304473044733,11.474439601832827],[124.4658446584466,11.47781675637259],[124.46224462244624,11.484571065452116],[124.46224462244624,11.489636797261767],[124.45864458644587,11.494702529071418],[124.42624426244265,11.528474074469074],[124.4118441184412,11.547048424437776],[124.3866438664387,11.614591515233087],[124.37944379443798,11.636543019741566],[124.37584375843761,11.646674483360854],[124.35424354243543,11.672003142409096],[124.35064350643506,11.68044602875851],[124.36864368643688,11.678757451488636],[124.41904419044192,11.693954646917575],[124.42984429844302,11.695643224187464],[124.46944469444696,11.692266069647687],[124.49464494644945,11.693954646917575],[124.50544505445055,11.692266069647687],[124.52344523445237,11.685511760568161],[124.54144541445413,11.675380296948859],[124.55584555845559,11.66018310151992],[124.56664566645668,11.62472297885239],[124.59184591845917,11.574065660755906],[124.5990459904599,11.563934197136604]]],[[[124.81504815048152,11.631477287931915],[124.82224822248224,11.621345824312613],[124.82944829448297,11.612902937963199],[124.84024840248401,11.607837206153562],[124.85464854648546,11.604460051613785],[124.8510485104851,11.594328587994497],[124.8510485104851,11.584197124375194],[124.8510485104851,11.560557042596841],[124.84744847448474,11.548737001707664],[124.84024840248401,11.54029411535825],[124.83304833048334,11.536916960818488],[124.80784807848079,11.563934197136604],[124.81144811448115,11.567311351676366],[124.80784807848079,11.577442815295669],[124.80064800648006,11.58250854710532],[124.78624786247866,11.570688506216143],[124.7718477184772,11.604460051613785],[124.77904779047793,11.60277147434391],[124.78624786247866,11.59770574253426],[124.78624786247866,11.614591515233087],[124.77544775447757,11.629788710662027],[124.76464764647648,11.641608751551217],[124.75024750247502,11.646674483360854],[124.73944739447393,11.650051637900617],[124.73584735847362,11.661871678789808],[124.73224732247326,11.673691719678985],[124.72864728647289,11.683823183298273],[124.72144721447216,11.693954646917575],[124.72144721447216,11.70239753326699],[124.73224732247326,11.720971883235691],[124.73944739447393,11.720971883235691],[124.73944739447393,11.719283305965817],[124.75024750247502,11.709151842346515],[124.78624786247866,11.688888915107924],[124.78984789847897,11.685511760568161],[124.79344793447933,11.68044602875851],[124.79344793447933,11.675380296948859],[124.7970479704797,11.668625987869333],[124.80064800648006,11.661871678789808],[124.81504815048152,11.655117369710268],[124.81504815048152,11.646674483360854],[124.81504815048152,11.631477287931915]]],[[[-68.78048780487805,12.097524614419541],[-68.74448744487445,12.062064491751997],[-68.74088740887409,12.053621605402583],[-68.7480874808748,12.046867296323057],[-68.76968769687697,12.043490141783295],[-68.79488794887949,12.041801564513406],[-68.81648816488165,12.043490141783295],[-68.84168841688417,12.055310182672471],[-68.89208892088921,12.090770305340001],[-68.94608946089461,12.105967500768955],[-68.97848978489785,12.124541850737657],[-69.00729007290073,12.148181932516025],[-69.02169021690216,12.17013343702449],[-69.02889028890289,12.190396364263094],[-69.04329043290433,12.19715067334262],[-69.06129061290612,12.198839250612494],[-69.07929079290793,12.203904982422145],[-69.09369093690937,12.219102177851099],[-69.12249122491224,12.269759495947568],[-69.13329133291333,12.276513805027108],[-69.14769147691476,12.284956691376522],[-69.15849158491585,12.293399577725936],[-69.16569165691656,12.306908195885],[-69.1620916209162,12.34236831855253],[-69.1620916209162,12.362631245791121],[-69.17289172891728,12.379517018489949],[-69.16569165691656,12.387959904839363],[-69.1620916209162,12.391337059379126],[-69.15489154891549,12.391337059379126],[-69.15129151291512,12.386271327569474],[-69.10809108091081,12.367696977600772],[-69.090090900909,12.35756551398147],[-69.0720907209072,12.340679741282642],[-69.06129061290612,12.32210539131394],[-69.05049050490504,12.276513805027108],[-69.03969039690396,12.256250877788517],[-69.00369003690037,12.222479332390861],[-68.96048960489604,12.200527827882382],[-68.83448834488344,12.171822014294378],[-68.82008820088201,12.161690550675075],[-68.81648816488165,12.149870509785899],[-68.81288812888128,12.129607582547308],[-68.80568805688057,12.117787541658132],[-68.78048780487805,12.097524614419541]]],[[[-69.99729997299973,12.577080559066232],[-69.93609936099361,12.531488972779385],[-69.92529925299253,12.519668931890209],[-69.91449914499145,12.497717427381744],[-69.87849878498784,12.453814418364786],[-69.87849878498784,12.42679718204667],[-69.88929889298893,12.418354295697256],[-69.90729907299072,12.418354295697256],[-69.92889928899288,12.42679718204667],[-69.94689946899469,12.44030580020572],[-69.92529925299253,12.44030580020572],[-69.92529925299253,12.44706010928526],[-69.95769957699576,12.463945881984088],[-70.02610026100261,12.523046086429986],[-70.04770047700477,12.531488972779385],[-70.05850058500585,12.536554704589037],[-70.06210062100621,12.546686168208339],[-70.06210062100621,12.556817631827627],[-70.05130051300513,12.573703404526455],[-70.04770047700477,12.583834868145757],[-70.05130051300513,12.600720640844585],[-70.05850058500585,12.61422925900365],[-70.06210062100621,12.626049299892827],[-70.04770047700477,12.632803608972353],[-70.0081000810008,12.585523445415646],[-69.99729997299973,12.577080559066232]]],[[[-110.94770947709476,18.799487798583968],[-110.93330933309333,18.794422066774317],[-110.91890918909189,18.780913448615266],[-110.91170911709116,18.76233909864655],[-110.91170911709116,18.74545332594772],[-110.92250922509224,18.72687897597902],[-110.94050940509405,18.72519039870913],[-110.9621096210962,18.72687897597902],[-110.98010980109801,18.716747512359717],[-110.99450994509945,18.731944707788657],[-111.0089100891009,18.74207617140796],[-111.02331023310232,18.750519057757373],[-111.06651066510665,18.769093407726075],[-111.06651066510665,18.775847716805615],[-111.06291062910628,18.792733489504442],[-111.0521105211052,18.816373571282796],[-111.03771037710376,18.834947921251512],[-111.00171001710017,18.868719466649154],[-110.98010980109801,18.860276580299754],[-110.95490954909549,18.843390807600926],[-110.94050940509405,18.821439303092447],[-110.94770947709476,18.799487798583968]]],[[[-72.85212852128521,20.087872255504465],[-72.82332823328233,20.089560832774353],[-72.80172801728017,20.087872255504465],[-72.78372783727836,20.07942936915505],[-72.7621276212762,20.067609328265874],[-72.66852668526685,20.032149205598344],[-72.62892628926289,20.008509123819977],[-72.63972639726397,19.984869042041623],[-72.65412654126541,19.99162335112115],[-72.74052740527405,20.00175481474045],[-72.78012780127801,20.01695201016939],[-72.82692826928269,20.027083473788693],[-72.8449284492845,20.03383778286822],[-72.85572855728557,20.032149205598344],[-72.86652866528665,20.028772051058567],[-72.87732877328773,20.027083473788693],[-72.89892898928989,20.030460628328456],[-72.9241292412924,20.03890351467787],[-72.94572945729458,20.049034978297172],[-72.960129601296,20.06085501918635],[-72.95652956529565,20.06085501918635],[-72.95292952929529,20.062543596456223],[-72.94572945729458,20.067609328265874],[-72.90252902529025,20.082806523694813],[-72.85212852128521,20.087872255504465]]],[[[-106.51246512465124,21.597460334779598],[-106.5160651606516,21.589017448430184],[-106.51246512465124,21.578885984810896],[-106.51246512465124,21.572131675731356],[-106.51966519665197,21.568754521191593],[-106.51966519665197,21.562000212112068],[-106.52686526865268,21.556934480302417],[-106.53046530465305,21.55018017122289],[-106.5340653406534,21.541737284873477],[-106.53766537665376,21.54511443941324],[-106.54126541265413,21.54342586214335],[-106.54126541265413,21.548491593953003],[-106.53766537665376,21.555245903032528],[-106.54486544865448,21.562000212112068],[-106.5520655206552,21.563688789381942],[-106.59166591665917,21.577197407541007],[-106.63126631266313,21.60083748931936],[-106.63126631266313,21.604214643859137],[-106.62766627666277,21.609280375668774],[-106.62766627666277,21.616034684748314],[-106.63486634866348,21.626166148367602],[-106.64206642066421,21.639674766526667],[-106.65286652866529,21.651494807415844],[-106.65646656466565,21.658249116495384],[-106.64926649266492,21.66331484830502],[-106.64926649266492,21.673446311924323],[-106.64926649266492,21.683577775543625],[-106.660066600666,21.693709239162914],[-106.64206642066421,21.697086393702676],[-106.62046620466204,21.69033208462315],[-106.59886598865988,21.69202066189304],[-106.5880658806588,21.6852663528135],[-106.54846548465484,21.668380580114672],[-106.5340653406534,21.658249116495384],[-106.53766537665376,21.64811765287608],[-106.53766537665376,21.636297611986905],[-106.52686526865268,21.624477571097728],[-106.51966519665197,21.61772326201819],[-106.51246512465124,21.609280375668774],[-106.50886508865088,21.60590322112901],[-106.50526505265053,21.60252606658925],[-106.51246512465124,21.597460334779598]]],[[[112.84492844928451,21.77476094811729],[112.86292862928633,21.76969521630764],[112.86652866528664,21.757875175418462],[112.86292862928633,21.746055134529286],[112.83052830528305,21.735923670909983],[112.81972819728196,21.72579220729068],[112.81252812528129,21.717349320941267],[112.79812798127983,21.70552928005209],[112.8017280172802,21.69033208462315],[112.80892808928093,21.671757734654435],[112.80892808928093,21.658249116495384],[112.8017280172802,21.63798618925678],[112.79452794527947,21.62278899382784],[112.79452794527947,21.6075917983989],[112.80892808928093,21.589017448430184],[112.79812798127983,21.578885984810896],[112.7909279092791,21.577197407541007],[112.76572765727656,21.58226313935066],[112.76212762127625,21.583951716620533],[112.75852758527589,21.58732887116031],[112.75492754927552,21.594083180239835],[112.75492754927552,21.6075917983989],[112.75132751327516,21.609280375668774],[112.74412744127443,21.609280375668774],[112.7369273692737,21.61265753020855],[112.73332733327334,21.62954330290738],[112.76932769327692,21.66331484830502],[112.77292772927728,21.69202066189304],[112.75852758527589,21.686954930083388],[112.7369273692737,21.681889198273737],[112.71532715327152,21.68020062100385],[112.70452704527048,21.688643507353262],[112.71172711727121,21.702152125512328],[112.72612726127261,21.715660743671393],[112.7477274772748,21.73254651637022],[112.76572765727656,21.73254651637022],[112.77652776527765,21.7730723708474],[112.79452794527947,21.766318061767876],[112.80892808928093,21.7730723708474],[112.81972819728196,21.77476094811729],[112.84852848528487,21.77476094811729],[112.84492844928451,21.77476094811729]]],[[[-71.80451804518044,21.78826956627634],[-71.82611826118261,21.786580989006467],[-71.83691836918369,21.791646720816118],[-71.8441184411844,21.80853249351493],[-71.84771847718477,21.818663957134234],[-71.85131851318513,21.855812657071652],[-71.8441184411844,21.855812657071652],[-71.83331833318333,21.854124079801778],[-71.82611826118261,21.850746925262],[-71.80811808118081,21.840615461642713],[-71.8009180091801,21.840615461642713],[-71.790117901179,21.842304038912587],[-71.78291782917829,21.843992616182476],[-71.72171721717217,21.835549729833062],[-71.69291692916929,21.840615461642713],[-71.67851678516784,21.842304038912587],[-71.6641166411664,21.835549729833062],[-71.65691656916569,21.823729688943885],[-71.63171631716317,21.77476094811729],[-71.64971649716497,21.779826679926927],[-71.66051660516605,21.793335298085992],[-71.66771667716677,21.81022107078482],[-71.67851678516784,21.822041111673997],[-71.67131671316713,21.800089607165532],[-71.65331653316532,21.764629484497988],[-71.64611646116461,21.746055134529286],[-71.65691656916569,21.744366557259397],[-71.66771667716677,21.751120866338923],[-71.68571685716857,21.77476094811729],[-71.69291692916929,21.764629484497988],[-71.69291692916929,21.759563752688337],[-71.70011700117001,21.759563752688337],[-71.71451714517144,21.786580989006467],[-71.73971739717396,21.79502387535588],[-71.80451804518044,21.78826956627634]]],[[[-72.33732337323373,21.801778184435406],[-72.3409234092341,21.813598225324583],[-72.330123301233,21.845681193452364],[-72.330123301233,21.862566966151178],[-72.30852308523085,21.85243550253189],[-72.24372243722436,21.798401029895643],[-72.23292232922329,21.793335298085992],[-72.21132211322113,21.793335298085992],[-72.19332193321932,21.796712452625755],[-72.1789217892179,21.801778184435406],[-72.16452164521645,21.813598225324583],[-72.15732157321573,21.823729688943885],[-72.14652146521465,21.827106843483648],[-72.12492124921249,21.81528680259447],[-72.12492124921249,21.80853249351493],[-72.15012150121501,21.783203834466704],[-72.15732157321573,21.77476094811729],[-72.16452164521645,21.78826956627634],[-72.16452164521645,21.79502387535588],[-72.19332193321932,21.781515257196816],[-72.18972189721897,21.779826679926927],[-72.18612186121861,21.779826679926927],[-72.18252182521825,21.778138102657053],[-72.1789217892179,21.77476094811729],[-72.19332193321932,21.766318061767876],[-72.21852218522184,21.76969521630764],[-72.23292232922329,21.766318061767876],[-72.23292232922329,21.781515257196816],[-72.27252272522725,21.751120866338923],[-72.29052290522905,21.74943228906905],[-72.30132301323013,21.77476094811729],[-72.29772297722977,21.77476094811729],[-72.29052290522905,21.766318061767876],[-72.27972279722796,21.761252329958225],[-72.27252272522725,21.7629409072281],[-72.27612276122761,21.77476094811729],[-72.27972279722796,21.779826679926927],[-72.31572315723157,21.79502387535588],[-72.31212312123121,21.781515257196816],[-72.31572315723157,21.771383793577513],[-72.32292322923229,21.764629484497988],[-72.33732337323373,21.759563752688337],[-72.3409234092341,21.766318061767876],[-72.3409234092341,21.771383793577513],[-72.3409234092341,21.77476094811729],[-72.33732337323373,21.781515257196816],[-72.33732337323373,21.776449525387164],[-72.33372333723337,21.776449525387164],[-72.330123301233,21.77476094811729],[-72.32652326523265,21.786580989006467],[-72.31572315723157,21.80853249351493],[-72.30852308523085,21.822041111673997],[-72.330123301233,21.806843916245057],[-72.33732337323373,21.801778184435406]]],[[[-73.14013140131401,22.364074415306348],[-73.15813158131581,22.36745156984611],[-73.16533165331653,22.374205878925636],[-73.16533165331653,22.38433734254494],[-73.14373143731437,22.396157383434115],[-73.15093150931509,22.40460026978353],[-73.15093150931509,22.407977424323292],[-73.14373143731437,22.418108887942594],[-73.14013140131401,22.43161750610166],[-73.14373143731437,22.441748969720948],[-73.14373143731437,22.45188043334025],[-73.1329313293133,22.460323319689664],[-73.11493114931149,22.438371815181185],[-73.10773107731077,22.433306083371534],[-73.08973089730897,22.43161750610166],[-73.08973089730897,22.433306083371534],[-73.0861308613086,22.438371815181185],[-73.07533075330753,22.443437546990836],[-73.07173071730718,22.44512612426071],[-73.06453064530645,22.44512612426071],[-73.04653046530466,22.440060392451073],[-73.03933039330393,22.438371815181185],[-73.01413014130141,22.42992892883177],[-72.96372963729637,22.397845960704004],[-72.93852938529385,22.396157383434115],[-72.94572945729458,22.402911692513655],[-72.95292952929529,22.418108887942594],[-72.92052920529206,22.402911692513655],[-72.90252902529025,22.399534537973878],[-72.89172891728917,22.40460026978353],[-72.87732877328773,22.392780228894352],[-72.86292862928629,22.386025919814827],[-72.8449284492845,22.38433734254494],[-72.81972819728198,22.38433734254494],[-72.81252812528125,22.380960188005176],[-72.80532805328053,22.374205878925636],[-72.79452794527946,22.359008683496697],[-72.78372783727836,22.353942951687046],[-72.7621276212762,22.353942951687046],[-72.7549275492755,22.34887721987741],[-72.74772747727476,22.33199144717858],[-72.75132751327513,22.311728519939976],[-72.7621276212762,22.294842747241162],[-72.78012780127801,22.288088438161623],[-72.7981279812798,22.293154169971274],[-72.8449284492845,22.335368601718343],[-72.86292862928629,22.350565797147283],[-72.8809288092881,22.359008683496697],[-72.89892898928989,22.36238583803646],[-72.9241292412924,22.364074415306348],[-72.93492934929348,22.36238583803646],[-72.94932949329493,22.357320106226823],[-72.95652956529565,22.355631528956934],[-72.96732967329673,22.357320106226823],[-72.97452974529745,22.36238583803646],[-72.98172981729817,22.36745156984611],[-72.98892988929889,22.370828724385873],[-73.01053010530104,22.365762992576222],[-73.050130501305,22.34718864260752],[-73.07533075330753,22.34212291079787],[-73.08253082530825,22.343811488067757],[-73.08973089730897,22.34887721987741],[-73.0969309693097,22.353942951687046],[-73.10053100531005,22.355631528956934],[-73.14013140131401,22.364074415306348]]],[[[-109.83529835298353,24.224886566717075],[-109.82449824498245,24.209689371288135],[-109.81009810098101,24.18267213497002],[-109.80649806498064,24.17085209408083],[-109.79929799297993,24.15565489865189],[-109.80289802898028,24.137080548683173],[-109.81369813698137,24.14045770322295],[-109.83169831698316,24.143834857762712],[-109.86409864098641,24.147212012302475],[-109.87489874898749,24.152277744112126],[-109.87129871298713,24.159032053191652],[-109.88569885698857,24.17591782589048],[-109.90009900099001,24.199557907668833],[-109.91449914499145,24.235018030336377],[-109.92529925299253,24.267100998464144],[-109.92169921699217,24.27554388481356],[-109.9180991809918,24.283986771162972],[-109.93609936099361,24.324512625640153],[-109.93249932499324,24.359972748307698],[-109.93249932499324,24.375169943736637],[-109.92529925299253,24.373481366466763],[-109.9180991809918,24.361661325577572],[-109.9180991809918,24.34815270741852],[-109.90729907299072,24.334644089259456],[-109.90009900099001,24.326201202910042],[-109.89289892898928,24.31606973929074],[-109.8820988209882,24.294118234782275],[-109.87129871298713,24.272166730273796],[-109.85689856898568,24.25865811211473],[-109.84249842498424,24.229952298526726],[-109.83529835298353,24.224886566717075]]],[[[-111.7541175411754,24.4477787663416],[-111.72531725317253,24.395432870975228],[-111.70731707317073,24.380235675546288],[-111.69651696516965,24.381924252816177],[-111.69291692916929,24.373481366466763],[-111.70011700117001,24.35828417103781],[-111.69291692916929,24.34815270741852],[-111.70011700117001,24.331266934719693],[-111.71091710917109,24.317758316560628],[-111.70731707317073,24.299183966591926],[-111.73971739717398,24.33802124379922],[-111.75771757717577,24.356595593767935],[-111.80811808118081,24.388678561895702],[-111.8441184411844,24.417384375483707],[-111.87291872918729,24.439335879992186],[-111.90891908919089,24.457910229960888],[-111.9161191611916,24.464664539040427],[-111.9269192691927,24.46804169358019],[-111.94131941319412,24.48323888900913],[-111.97731977319773,24.498436084438083],[-112.00252002520025,24.506878970787497],[-112.0061200612006,24.513633279867022],[-111.98811988119881,24.527141898026088],[-111.970119701197,24.518699011676674],[-111.95931959319593,24.518699011676674],[-111.90531905319052,24.518699011676674],[-111.880118801188,24.517010434406785],[-111.86571865718658,24.520387588946548],[-111.85131851318513,24.51025612532726],[-111.83691836918369,24.511944702597134],[-111.83691836918369,24.500124661707957],[-111.82971829718296,24.486616043548892],[-111.82251822518225,24.479861734469367],[-111.81891818918189,24.46804169358019],[-111.79731797317973,24.464664539040427],[-111.77571775717757,24.461287384500665],[-111.7541175411754,24.4477787663416]]],[[[-110.710107101071,25.094503860706666],[-110.710107101071,25.10294674705608],[-110.70650706507065,25.10463532432597],[-110.70290702907029,25.10294674705608],[-110.69570695706958,25.094503860706666],[-110.68490684906848,25.065798047118662],[-110.66690666906669,25.052289428959597],[-110.64170641706417,25.048912274419834],[-110.61290612906129,25.04215796534031],[-110.59130591305913,25.033715078990895],[-110.59130591305913,25.026960769911355],[-110.5841058410584,25.021895038101718],[-110.57330573305732,25.01514072902218],[-110.57690576905769,25.006697842672764],[-110.56970569705697,24.99825495632335],[-110.56610566105661,24.981369183624523],[-110.56970569705697,24.956040524576295],[-110.55890558905588,24.93577759733769],[-110.55170551705517,24.925646133718402],[-110.5481054810548,24.912137515559337],[-110.53370533705336,24.890186011050858],[-110.52650526505265,24.88005454743157],[-110.53370533705336,24.876677392891807],[-110.55170551705517,24.87330023835203],[-110.56250562505625,24.87330023835203],[-110.57330573305732,24.871611661082156],[-110.58050580505805,24.863168774732742],[-110.5841058410584,24.866545929272505],[-110.58050580505805,24.871611661082156],[-110.57330573305732,24.88005454743157],[-110.57330573305732,24.886808856511095],[-110.5841058410584,24.891874588320746],[-110.5949059490595,24.90031747467016],[-110.60930609306092,24.907071783749686],[-110.60930609306092,24.910448938289463],[-110.62010620106201,24.917203247368988],[-110.63090630906309,24.9155146700991],[-110.64170641706417,24.913826092829225],[-110.64170641706417,24.92058040190875],[-110.6381063810638,24.927334710988276],[-110.64530645306453,24.94253190641723],[-110.65610656106561,24.945909060956993],[-110.65970659706596,24.96279483365582],[-110.65970659706596,24.971237720005234],[-110.66690666906669,24.97968060635465],[-110.6741067410674,24.988123492704062],[-110.6741067410674,24.996566379053476],[-110.6741067410674,25.011763574482416],[-110.68130681306813,25.02020646083183],[-110.69570695706958,25.02020646083183],[-110.70650706507065,25.030337924451132],[-110.71370713707137,25.028649347181243],[-110.71730717307173,25.04046938807042],[-110.71730717307173,25.053978006229485],[-110.71370713707137,25.0624208925789],[-110.71370713707137,25.074240933468076],[-110.710107101071,25.094503860706666]]],[[[-112.10332103321034,24.616636493329864],[-112.0961209612096,24.606505029710576],[-112.07812078120782,24.584553525202097],[-112.07092070920709,24.584553525202097],[-112.07092070920709,24.574422061582794],[-112.06372063720637,24.56766775250327],[-112.05652056520564,24.554159134344204],[-112.06012060120601,24.54065051618514],[-112.06732067320672,24.542339093455027],[-112.09252092520924,24.55078197980444],[-112.10332103321034,24.559224866153855],[-112.09972099720997,24.564290597963506],[-112.10692106921069,24.584553525202097],[-112.11412114121141,24.599750720631036],[-112.12852128521286,24.611570761520213],[-112.13572135721357,24.618325070599752],[-112.14652146521465,24.618325070599752],[-112.16092160921609,24.643653729647994],[-112.17172171721717,24.647030884187757],[-112.17532175321753,24.653785193267282],[-112.1681216812168,24.660539502346822],[-112.1681216812168,24.67067096596611],[-112.16092160921609,24.672359543236],[-112.15372153721538,24.67067096596611],[-112.14652146521465,24.67067096596611],[-112.13932139321393,24.680802429585412],[-112.13572135721357,24.69768820228424],[-112.13932139321393,24.714573974983068],[-112.14652146521465,24.731459747681896],[-112.15732157321573,24.743279788571073],[-112.1681216812168,24.75509982946025],[-112.17532175321753,24.763542715809663],[-112.18972189721897,24.77367417942895],[-112.20772207722077,24.782117065778365],[-112.2149221492215,24.785494220318142],[-112.22572225722257,24.788871374857905],[-112.23652236522365,24.788871374857905],[-112.24732247322473,24.788871374857905],[-112.25092250922509,24.787182797588017],[-112.2581225812258,24.783805643048254],[-112.26172261722617,24.77705133396873],[-112.26172261722617,24.77029702488919],[-112.2581225812258,24.751722674920487],[-112.2581225812258,24.750034097650598],[-112.26892268922688,24.758476984000012],[-112.27252272522725,24.77367417942895],[-112.3049230492305,24.792248529397668],[-112.30132301323013,24.802379993016956],[-112.30132301323013,24.807445724826607],[-112.30132301323013,24.809134302096496],[-112.29052290522905,24.81251145663626],[-112.27612276122761,24.83952869295439],[-112.2581225812258,24.88512027924122],[-112.20772207722077,25.016829306292067],[-112.18972189721897,25.0624208925789],[-112.16452164521645,25.156981219692327],[-112.14292142921428,25.2279014650274],[-112.14292142921428,25.25491870134553],[-112.13932139321393,25.26505016496482],[-112.12492124921249,25.26505016496482],[-112.12132121321213,25.221147155947875],[-112.12852128521286,25.200884228709285],[-112.14292142921428,25.162046951501978],[-112.15732157321573,25.1400954469935],[-112.1681216812168,25.074240933468076],[-112.1789217892179,25.04553511988007],[-112.17172171721717,25.030337924451132],[-112.1681216812168,25.02020646083183],[-112.1681216812168,25.006697842672764],[-112.16452164521645,24.996566379053476],[-112.16092160921609,24.988123492704062],[-112.16092160921609,24.974614874544997],[-112.17172171721717,24.969549142735346],[-112.1789217892179,24.974614874544997],[-112.18612186121861,24.961106256385932],[-112.18972189721897,24.952663370036518],[-112.18612186121861,24.92226897917864],[-112.19692196921969,24.9155146700991],[-112.18972189721897,24.890186011050858],[-112.18252182521825,24.88005454743157],[-112.17532175321753,24.871611661082156],[-112.18252182521825,24.866545929272505],[-112.19692196921969,24.866545929272505],[-112.20412204122042,24.866545929272505],[-112.20772207722077,24.861480197462853],[-112.20772207722077,24.854725888383328],[-112.2149221492215,24.847971579303803],[-112.21132211322113,24.83952869295439],[-112.20772207722077,24.824331497525435],[-112.20772207722077,24.81757718844591],[-112.19692196921969,24.81082287936637],[-112.18612186121861,24.805757147556733],[-112.18252182521825,24.799002838477193],[-112.1789217892179,24.79562568393743],[-112.17172171721717,24.793937106667556],[-112.17172171721717,24.792248529397668],[-112.1789217892179,24.79055995212778],[-112.17532175321753,24.788871374857905],[-112.16452164521645,24.77536275669884],[-112.16092160921609,24.7601655612699],[-112.13932139321393,24.73821405676142],[-112.1321213212132,24.72808259314212],[-112.1321213212132,24.716262552252942],[-112.1321213212132,24.709508243173417],[-112.12852128521286,24.706131088633654],[-112.12492124921249,24.70781966590353],[-112.11412114121141,24.689245315934826],[-112.12492124921249,24.674048120505873],[-112.1321213212132,24.667293811426347],[-112.13932139321393,24.658850925076933],[-112.14292142921428,24.65040803872752],[-112.13932139321393,24.643653729647994],[-112.13572135721357,24.63352226602869],[-112.10332103321034,24.616636493329864]]],[[[-111.08091080910809,25.997892700093914],[-111.07011070110701,25.996204122824025],[-111.07011070110701,25.986072659204737],[-111.06651066510665,25.982695504664974],[-111.06651066510665,25.972564041045672],[-111.06651066510665,25.965809731966147],[-111.07371073710736,25.970875463775783],[-111.08091080910809,25.972564041045672],[-111.0881108811088,25.982695504664974],[-111.09531095310953,25.98438408193485],[-111.10251102511025,25.996204122824025],[-111.11331113311132,25.996204122824025],[-111.12051120511205,25.992826968284263],[-111.12051120511205,25.986072659204737],[-111.12051120511205,25.975941195585435],[-111.13131131311313,25.962432577426384],[-111.14211142111421,25.95230111380708],[-111.15291152911529,25.933726763838365],[-111.17451174511744,25.913463836599774],[-111.18171181711817,25.903332372980486],[-111.1781117811178,25.898266641170835],[-111.18171181711817,25.881380868472007],[-111.18171181711817,25.866183673043068],[-111.18891188911888,25.857740786693654],[-111.19611196111961,25.856052209423765],[-111.20331203312033,25.845920745804477],[-111.20331203312033,25.825657818565873],[-111.19971199711996,25.810460623136933],[-111.20331203312033,25.803706314057408],[-111.2141121411214,25.815526354946584],[-111.22131221312213,25.81721493221646],[-111.23211232112321,25.823969241296],[-111.22851228512285,25.830723550375524],[-111.23211232112321,25.8425435912647],[-111.23211232112321,25.850986477614114],[-111.21771217712177,25.871249404852705],[-111.21771217712177,25.88475802301177],[-111.21051210512105,25.916840991139537],[-111.21051210512105,25.928661032028728],[-111.19971199711996,25.94216965018778],[-111.19611196111961,25.95398969107697],[-111.18891188911888,25.96918688650591],[-111.17451174511744,25.977629772855323],[-111.17091170911709,25.98776123647461],[-111.17091170911709,26.002958431903565],[-111.16731167311673,26.023221359142156],[-111.17451174511744,26.035041400031332],[-111.17451174511744,26.043484286380746],[-111.16011160111601,26.045172863650635],[-111.1349113491135,26.05361575000005],[-111.1349113491135,26.063747213619337],[-111.12771127711277,26.068812945428988],[-111.12051120511205,26.060370059079574],[-111.10251102511025,26.05361575000005],[-111.08091080910809,26.060370059079574],[-111.07371073710736,26.068812945428988],[-111.05571055710557,26.07219009996875],[-111.07011070110701,26.05361575000005],[-111.08091080910809,26.028287090951807],[-111.08091080910809,25.997892700093914]]],[[[121.25461254612549,28.140697255575063],[121.26541265412658,28.122122905606346],[121.2870128701287,28.101859978367756],[121.27981279812798,28.084974205668928],[121.26901269012689,28.084974205668928],[121.25821258212585,28.084974205668928],[121.24741247412476,28.08835136020869],[121.23661236612367,28.093417092018342],[121.23661236612367,28.084974205668928],[121.2330123301233,28.081597051129165],[121.2330123301233,28.079908473859277],[121.23661236612367,28.071465587509863],[121.2330123301233,28.064711278430337],[121.21861218612185,28.0680884329701],[121.21861218612185,28.057956969350812],[121.20421204212045,28.054579814811035],[121.18621186211863,28.044448351191747],[121.1682116821168,28.04275977392186],[121.15021150211504,28.041071196651984],[121.14661146611468,28.057956969350812],[121.1538115381154,28.071465587509863],[121.1538115381154,28.078219896589403],[121.14301143011431,28.08328562839904],[121.13581135811359,28.093417092018342],[121.13221132211322,28.103548555637644],[121.13221132211322,28.113680019256932],[121.12861128611286,28.127188637415998],[121.12141121411213,28.13563152376541],[121.1250112501125,28.140697255575063],[121.13581135811359,28.142385832844937],[121.1646116461165,28.15082871919435],[121.18621186211863,28.169403069163067],[121.20421204212045,28.189665996401658],[121.20781207812081,28.199797460020946],[121.21141211412117,28.20824034637036],[121.22941229412294,28.22006038725955],[121.25461254612549,28.2149946554499],[121.26901269012689,28.19473172821131],[121.26901269012689,28.182911687322132],[121.26181261812621,28.169403069163067],[121.25461254612549,28.140697255575063]]],[[[-115.19575195751958,28.341637950691094],[-115.1849518495185,28.31462071437298],[-115.1741517415174,28.309554982563327],[-115.1741517415174,28.29942351894404],[-115.16695166951669,28.285914900784974],[-115.16335163351633,28.260586241736732],[-115.1741517415174,28.23525758268849],[-115.17055170551706,28.21330607818001],[-115.15975159751598,28.19304315094142],[-115.15615156151561,28.17109164643294],[-115.15975159751598,28.15082871919435],[-115.15615156151561,28.140697255575063],[-115.16335163351633,28.128877214685886],[-115.1741517415174,28.123811482876235],[-115.17775177751777,28.117057173796695],[-115.1849518495185,28.106925710177407],[-115.18135181351813,28.09510566928823],[-115.18855188551885,28.086662782938816],[-115.18135181351813,28.06977701023999],[-115.18855188551885,28.056268392080923],[-115.17775177751777,28.041071196651984],[-115.18135181351813,28.034316887572444],[-115.18135181351813,28.02756257849292],[-115.18855188551885,28.03093973303268],[-115.19575195751958,28.034316887572444],[-115.20655206552065,28.037694042112207],[-115.21735217352173,28.03093973303268],[-115.22815228152281,28.02756257849292],[-115.23535235352354,28.036005464842333],[-115.24615246152462,28.034316887572444],[-115.25335253352533,28.041071196651984],[-115.26055260552606,28.06977701023999],[-115.27855278552785,28.086662782938816],[-115.30375303753037,28.09510566928823],[-115.32175321753218,28.086662782938816],[-115.33615336153362,28.084974205668928],[-115.3469534695347,28.071465587509863],[-115.35775357753577,28.08328562839904],[-115.35055350553505,28.117057173796695],[-115.33255332553325,28.12550006014611],[-115.27495274952749,28.189665996401658],[-115.23895238952389,28.2335690054186],[-115.2569525695257,28.263963396276495],[-115.26415264152641,28.29942351894404],[-115.2569525695257,28.328129332532043],[-115.24975249752497,28.358523723389922],[-115.23535235352354,28.3703437642791],[-115.21375213752137,28.378786650628513],[-115.19215192151921,28.36021230065981],[-115.19575195751958,28.341637950691094]]],[[[126.40626406264062,36.45862888701723],[126.41346413464134,36.440054537048525],[126.4278642786428,36.4231687643497],[126.43146431464316,36.40797156892074],[126.42426424264244,36.41134872346052],[126.37746377463776,36.40966014619063],[126.3630636306363,36.41134872346052],[126.35946359463594,36.42654591888946],[126.36666366663667,36.43161165069911],[126.3738637386374,36.43667738250876],[126.37746377463776,36.44680884612805],[126.35226352263521,36.433300227968985],[126.34146341463418,36.438365959778636],[126.34506345063454,36.45356315520759],[126.3630636306363,36.47382608244618],[126.35586355863558,36.47889181425582],[126.34506345063454,36.46707177336664],[126.33786337863381,36.475514659716055],[126.32706327063272,36.4704489279064],[126.33426334263345,36.495777586954645],[126.33066330663308,36.53123770962219],[126.32346323463236,36.55318921413067],[126.31626316263163,36.58189502771867],[126.32346323463236,36.59033791406809],[126.34146341463418,36.60384653222714],[126.35946359463594,36.60891226403679],[126.3738637386374,36.59202649133796],[126.3738637386374,36.585272182258436],[126.37026370263703,36.578517873178896],[126.3630636306363,36.57345214136926],[126.3630636306363,36.56669783228972],[126.38106381063812,36.53630344143184],[126.38466384663849,36.52617197781254],[126.38106381063812,36.517729091463124],[126.38466384663849,36.5109747823836],[126.39546395463958,36.50590905057395],[126.40626406264062,36.49408900968477],[126.38466384663849,36.49408900968477],[126.38466384663849,36.48733470060523],[126.39186391863922,36.48564612333536],[126.40626406264062,36.47889181425582],[126.40266402664025,36.47382608244618],[126.40266402664025,36.46876035063653],[126.40626406264062,36.45862888701723]]],[[[-73.93213932139321,40.79658389334588],[-73.94653946539465,40.77800954337718],[-73.97173971739717,40.74086084343975],[-73.97173971739717,40.7273522252807],[-73.97533975339753,40.71384360712163],[-74.00054000540005,40.70371214350233],[-74.01854018540185,40.69864641169269],[-74.01134011340113,40.73072937982046],[-74.0041400414004,40.7560580388687],[-73.98613986139861,40.77800954337718],[-73.93933939339394,40.85399552052189],[-73.93213932139321,40.869192715950845],[-73.92853928539284,40.87763560230026],[-73.91773917739177,40.87425844776048],[-73.91773917739177,40.864126984141194],[-73.92853928539284,40.8438640569026],[-73.93933939339394,40.82866686147365],[-73.93933939339394,40.81346966604471],[-73.93213932139321,40.79658389334588]]],[[[-56.27396273962739,46.8957249921622],[-56.23436234362343,46.87208491038385],[-56.24876248762487,46.84169051952594],[-56.288362883628835,46.812984705937936],[-56.34596345963459,46.78427889234993],[-56.35676356763567,46.780901737810154],[-56.37116371163711,46.785967469619806],[-56.37836378363784,46.799476087778885],[-56.37476374763747,46.80623039685841],[-56.37476374763747,46.81467328320781],[-56.392763927639265,46.82480474682711],[-56.39636396363963,46.83662478771629],[-56.37836378363784,46.85182198314524],[-56.342363423634225,46.875462064923596],[-56.3279632796328,46.9142993421309],[-56.33516335163351,46.954825196608084],[-56.38556385563855,47.035876905562446],[-56.389163891638916,47.0510741009914],[-56.392763927639265,47.08822280092883],[-56.39636396363963,47.10341999635776],[-56.39636396363963,47.11355145997706],[-56.389163891638916,47.12537150086624],[-56.37836378363784,47.133814387215665],[-56.367563675636745,47.14056869629519],[-56.35316353163532,47.14056869629519],[-56.342363423634225,47.13550296448554],[-56.36036360363603,47.12537150086624],[-56.37116371163711,47.11692861451684],[-56.37116371163711,47.10510857362763],[-56.35676356763567,47.09497711000836],[-56.338763387633875,47.08822280092883],[-56.30636306363063,47.08315706911918],[-56.25236252362524,47.05445125553118],[-56.25236252362524,47.044319791911875],[-56.25236252362524,47.030811173752795],[-56.25596255962559,47.017302555593744],[-56.27036270362703,47.008859669244345],[-56.27396273962739,46.99872820562504],[-56.28116281162811,46.990285319275614],[-56.291962919629185,46.98521958746596],[-56.29916299162991,46.986908164735866],[-56.29916299162991,46.99197389654552],[-56.30276302763028,46.99703962835514],[-56.30636306363063,46.99872820562504],[-56.313563135631355,46.99872820562504],[-56.3279632796328,46.99197389654552],[-56.342363423634225,46.995351051085265],[-56.34956349563495,46.995351051085265],[-56.34956349563495,46.98521958746596],[-56.34596345963459,46.98015385565634],[-56.338763387633875,46.97846527838644],[-56.33516335163351,46.98015385565634],[-56.32436324363243,46.97677670111656],[-56.32076320763207,46.97677670111656],[-56.313563135631355,46.97508812384669],[-56.30996309963099,46.97171096930691],[-56.30636306363063,46.96495666022739],[-56.30996309963099,46.959890928417735],[-56.313563135631355,46.95651377387796],[-56.317163171631705,46.95313661933821],[-56.317163171631705,46.91261076486103],[-56.30996309963099,46.90079072397185],[-56.30276302763028,46.8957249921622],[-56.27396273962739,46.8957249921622]]],[[[-54.12114121141211,47.642076145450346],[-54.14994149941499,47.588041672814086],[-54.16074160741607,47.55595870468633],[-54.15714157141571,47.534007200177854],[-54.17874178741786,47.50698996385972],[-54.243542435424345,47.40736390493666],[-54.25794257942579,47.39892101858723],[-54.27234272342723,47.39554386404748],[-54.351543515435154,47.40229817312701],[-54.36234362343623,47.41074105947641],[-54.351543515435154,47.422561100365584],[-54.25794257942579,47.485038459351244],[-54.218342183421825,47.539072931987505],[-54.214742147421475,47.55933585922608],[-54.24714247142471,47.55427012741643],[-54.239942399423995,47.56440159103573],[-54.18234182341823,47.615058909132216],[-54.17154171541715,47.62181321821174],[-54.17874178741786,47.601550290973165],[-54.18594185941859,47.59479598189364],[-54.17154171541715,47.588041672814086],[-54.164341643416435,47.606616022782816],[-54.13554135541355,47.664027649958825],[-54.12474124741247,47.67078195903835],[-54.12114121141211,47.664027649958825],[-54.12114121141211,47.642076145450346]]],[[[-54.884348843488425,49.55523419222743],[-54.884348843488425,49.56029992403708],[-54.88794887948879,49.57211996492626],[-54.89154891548915,49.58225142854556],[-54.89874898748987,49.58225142854556],[-54.884348843488425,49.59576004670461],[-54.85194851948519,49.59069431489499],[-54.833948339483385,49.60420293305404],[-54.81954819548196,49.60082577851426],[-54.79434794347944,49.60082577851426],[-54.779947799477995,49.59576004670461],[-54.79074790747907,49.57887427400581],[-54.79434794347944,49.56367707857686],[-54.77634776347763,49.55692276949733],[-54.75114751147511,49.55354561495756],[-54.733147331473305,49.55523419222743],[-54.69354693546936,49.56705423311661],[-54.671946719467186,49.57887427400581],[-54.66474664746647,49.59238289216486],[-54.66114661146611,49.610957242133566],[-54.65034650346503,49.624465860292645],[-54.632346323463224,49.63459732391192],[-54.61434614346143,49.63628590118182],[-54.62514625146251,49.62615443756252],[-54.628746287462874,49.62277728302274],[-54.61434614346143,49.61602297394322],[-54.58554585545855,49.63122016937217],[-54.556745567455664,49.65317167388065],[-54.53874538745387,49.66161456023005],[-54.542345423454236,49.65148309661075],[-54.53874538745387,49.64979451934087],[-54.53514535145351,49.64472878753122],[-54.527945279452794,49.624465860292645],[-54.531545315453144,49.61602297394322],[-54.53874538745387,49.605891510323914],[-54.545945459454586,49.59576004670461],[-54.545945459454586,49.583940005815435],[-54.571145711457106,49.57211996492626],[-54.607146071460704,49.56029992403708],[-54.70074700747007,49.54172557406838],[-54.71874718747188,49.534971264988855],[-54.729547295472955,49.52821695590933],[-54.73674736747367,49.52483980136955],[-54.74034740347403,49.51639691502015],[-54.74034740347403,49.50288829686107],[-54.7439474394744,49.49444541051167],[-54.754747547475475,49.49444541051167],[-54.779947799477995,49.499511142321325],[-54.82674826748267,49.48937967870202],[-54.85194851948519,49.486002524162245],[-54.87714877148771,49.49275683324177],[-54.859148591485905,49.50457687413095],[-54.84474844748448,49.5096426059406],[-54.830348303483035,49.513019760480375],[-54.81234812348123,49.513019760480375],[-54.805148051480515,49.51639691502015],[-54.81234812348123,49.5197740695599],[-54.82314823148231,49.52483980136955],[-54.84114841148411,49.5299055331792],[-54.84834848348483,49.53665984225873],[-54.859148591485905,49.55185703768768],[-54.86274862748627,49.55354561495756],[-54.87714877148771,49.55185703768768],[-54.884348843488425,49.55523419222743]]],[[[-54.27594275942759,49.575497119466036],[-54.290342903429035,49.58731716035521],[-54.29754297542975,49.61433439667334],[-54.30114301143011,49.646417364801096],[-54.30834308343083,49.67174602384935],[-54.293942939429385,49.676811755659],[-54.268742687426865,49.673434601119226],[-54.25434254342542,49.67850033292888],[-54.26154261542615,49.68018891019875],[-54.268742687426865,49.6852546420084],[-54.27594275942759,49.690320373818054],[-54.27954279542794,49.69876326016748],[-54.27594275942759,49.70214041470723],[-54.27234272342723,49.70551756924701],[-54.268742687426865,49.708894723786756],[-54.265142651426515,49.71227187832653],[-54.27234272342723,49.71227187832653],[-54.28314283142831,49.71227187832653],[-54.28674286742867,49.71227187832653],[-54.268742687426865,49.727469073755486],[-54.243542435424345,49.725780496485584],[-54.218342183421825,49.71564903286631],[-54.19674196741967,49.70551756924701],[-54.20394203942038,49.69876326016748],[-54.193141931419305,49.67850033292888],[-54.18234182341823,49.69200895108793],[-54.18234182341823,49.70551756924701],[-54.18594185941859,49.717337610136184],[-54.18594185941859,49.725780496485584],[-54.17154171541715,49.73422338283501],[-54.16074160741607,49.73253480556514],[-54.14994149941499,49.72915765102536],[-54.13554135541355,49.73253480556514],[-54.142741427414265,49.73760053737476],[-54.14994149941499,49.75448631007359],[-54.11034110341103,49.75448631007359],[-54.092340923409225,49.75110915553384],[-54.07434074340743,49.73422338283501],[-54.063540635406355,49.725780496485584],[-54.05274052740526,49.71902618740606],[-54.04914049140491,49.717337610136184],[-54.041940419404185,49.717337610136184],[-54.03474034740347,49.71564903286631],[-54.03474034740347,49.708894723786756],[-54.03474034740347,49.70382899197713],[-54.038340383403835,49.700451837437356],[-54.041940419404185,49.69707468289758],[-54.041940419404185,49.69200895108793],[-54.03114031140311,49.676811755659],[-54.016740167401665,49.668368869309575],[-53.99873998739987,49.664991714769826],[-53.97713977139772,49.664991714769826],[-53.987939879398795,49.65148309661075],[-53.99873998739987,49.64979451934087],[-54.03114031140311,49.65823740569027],[-54.038340383403835,49.654860251150524],[-54.04554045540455,49.648105942071],[-54.05634056340563,49.63966305572157],[-54.08514085140851,49.63459732391192],[-54.09594095940959,49.62953159210227],[-54.1031410314103,49.62277728302274],[-54.113941139411395,49.61602297394322],[-54.13194131941319,49.61264581940344],[-54.17154171541715,49.60926866486369],[-54.21114211142111,49.597448623974515],[-54.22194221942219,49.59576004670461],[-54.2291422914229,49.59407146943474],[-54.25794257942579,49.57211996492626],[-54.26154261542615,49.570431387656384],[-54.268742687426865,49.57380854219616],[-54.27594275942759,49.575497119466036]]],[[[-127.91827918279182,51.522426711640776],[-127.9038790387904,51.513983825291376],[-127.88947889478894,51.495409475322674],[-127.87507875078751,51.473457970814195],[-127.87147871478714,51.45657219811537],[-127.87867878678787,51.441375002686414],[-127.89667896678966,51.42955496179724],[-127.91827918279182,51.42111207544784],[-127.93267932679326,51.419423498177935],[-127.94347943479434,51.42280065271771],[-127.95067950679507,51.42786638452736],[-127.95427954279543,51.432932116337014],[-127.96147961479615,51.43968642541654],[-127.9830798307983,51.451506466305716],[-128.0082800828008,51.468392239004544],[-128.01548015480154,51.46501508446477],[-128.02628026280263,51.45826077538524],[-128.05148051480515,51.459949352655116],[-128.06948069480694,51.47008081627442],[-128.08748087480876,51.486966588973246],[-128.09828098280983,51.508918093481725],[-128.10548105481055,51.530869597990204],[-128.1090810908109,51.544378216149255],[-128.1450814508145,51.58996980243609],[-128.1558815588156,51.62711850237352],[-128.1378813788138,51.6575128932314],[-128.10548105481055,51.68115297500975],[-128.02628026280263,51.71999025221706],[-128.0082800828008,51.723367406756836],[-127.99027990279902,51.69972732497848],[-127.97587975879759,51.682841552279655],[-127.97227972279723,51.664267202310924],[-127.9830798307983,51.65244716142175],[-127.95067950679507,51.628807079643394],[-127.92187921879218,51.59672411151561],[-127.9038790387904,51.55957541157821],[-127.91827918279182,51.522426711640776]]],[[[-128.1378813788138,51.86351932015708],[-128.14148141481414,51.86351932015708],[-128.1558815588156,51.85845358834743],[-128.1630816308163,51.856765011077556],[-128.20628206282063,51.85507643380768],[-128.23148231482315,51.856765011077556],[-128.24948249482495,51.86351932015708],[-128.24948249482495,51.87533936104626],[-128.24588245882458,51.892225133745086],[-128.23148231482315,51.905733751904165],[-128.19548195481954,51.91586521552347],[-128.1990819908199,51.92599667914274],[-128.2170821708217,51.94288245184157],[-128.22068220682206,51.954702492730746],[-128.22068220682206,51.963145379080174],[-128.20628206282063,51.97327684269948],[-128.17748177481775,52.01549127444653],[-128.15948159481593,52.034065624415234],[-128.14148141481414,52.04250851076466],[-128.13068130681307,52.04419708803454],[-128.10548105481055,52.05432855165384],[-128.09468094680946,52.05601712892371],[-128.06588065880658,52.05601712892371],[-127.99747997479975,52.066148592543016],[-127.96867968679686,52.06277143800324],[-127.95427954279543,52.04926281984419],[-127.96147961479615,52.017179851716406],[-127.96147961479615,52.00198265628748],[-127.95427954279543,51.98678546085853],[-127.9650796507965,51.9698996881597],[-127.97947979479795,51.92937383368252],[-127.98667986679867,51.91248806098369],[-128.03708037080372,51.843256392918505],[-128.029880298803,51.83650208383898],[-128.03708037080372,51.829747774759426],[-128.02628026280263,51.81792773387025],[-128.01548015480154,51.80610769298107],[-128.0082800828008,51.79597622936177],[-128.0082800828008,51.78246761120272],[-128.0190801908019,51.77233614758342],[-128.03348033480336,51.76389326123402],[-128.0622806228062,51.75545037488459],[-128.07668076680767,51.76558183850389],[-128.0910809108091,51.76051610669424],[-128.11268112681125,51.75207322034484],[-128.13428134281344,51.74700748853519],[-128.14148141481414,51.75207322034484],[-128.1378813788138,51.76389326123402],[-128.13428134281344,51.77402472485332],[-128.13068130681307,51.77909045666294],[-128.13068130681307,51.785844765742496],[-128.12348123481235,51.79259907482202],[-128.11628116281162,51.80104196117142],[-128.11988119881198,51.816239156600375],[-128.12348123481235,51.824682042949775],[-128.1378813788138,51.843256392918505],[-128.1378813788138,51.846633547458254],[-128.13428134281344,51.851699279267905],[-128.13428134281344,51.856765011077556],[-128.1378813788138,51.86351932015708]]],[[[-130.99630996309963,52.11174017882985],[-130.96030960309602,52.10498586975032],[-130.94950949509496,52.09485440613102],[-130.9567095670957,52.07628005616232],[-130.96750967509675,52.06783716981289],[-130.98550985509854,52.066148592543016],[-131.0179101791018,52.06952574708279],[-131.0431104311043,52.061082860733364],[-131.0539105391054,52.066148592543016],[-131.06471064710647,52.08303436524184],[-131.0719107191072,52.061082860733364],[-131.0539105391054,52.04588566530441],[-131.01071010710106,52.02899989260558],[-130.99270992709927,52.01380269717666],[-130.9999099991,52.012114119906755],[-131.02511025110252,52.01886842898631],[-131.0431104311043,52.02899989260558],[-131.03951039510395,52.01380269717666],[-131.0179101791018,51.99522834720793],[-131.01071010710106,51.980031151779],[-131.0431104311043,51.97327684269948],[-131.03591035910358,51.968211110889825],[-131.03231032310322,51.9614568018103],[-131.02511025110252,51.946259606381346],[-131.05031050310504,51.95301391546087],[-131.07551075510756,51.9698996881597],[-131.11151111511114,52.00198265628748],[-131.10071100711008,52.01042554263688],[-131.089910899109,52.02055700625618],[-131.08631086310862,52.030688469875486],[-131.10071100711008,52.03575420168514],[-131.11151111511114,52.04250851076466],[-131.11871118711187,52.05770570619359],[-131.11871118711187,52.074591478892415],[-131.12951129511293,52.0982315606708],[-131.1259112591126,52.11174017882985],[-131.1151111511115,52.145511724227504],[-131.1079110791108,52.1539546105769],[-131.09711097110971,52.155643187846806],[-131.0791107911079,52.15226603330703],[-131.06831068310683,52.150577456037155],[-131.0611106111061,52.14720030149738],[-131.0611106111061,52.14044599241785],[-131.06471064710647,52.13031452879855],[-131.03951039510395,52.12018306517925],[-131.02871028710285,52.1168059106395],[-131.0179101791018,52.10836302429007],[-131.01071010710106,52.1066744470202],[-131.00711007110073,52.10836302429007],[-131.00351003510036,52.11174017882985],[-130.99630996309963,52.11174017882985]]],[[[-127.9470794707947,52.16577465146608],[-127.93627936279363,52.164086074196206],[-127.91827918279182,52.16070891965646],[-127.9110791107911,52.159020342386555],[-127.90027900279003,52.16070891965646],[-127.89667896678966,52.16577465146608],[-127.88947889478894,52.17084038327573],[-127.87867878678787,52.172528960545634],[-127.88947889478894,52.145511724227504],[-127.89667896678966,52.1353802606082],[-127.91827918279182,52.11849448790937],[-127.92907929079291,52.10836302429007],[-127.93267932679326,52.09992013794067],[-127.93987939879398,52.08978867432137],[-127.96147961479615,52.08303436524184],[-128.01548015480154,52.09147725159124],[-128.04068040680406,52.07965721070207],[-128.05148051480515,52.07628005616232],[-128.06948069480694,52.07965721070207],[-128.08748087480876,52.088100097051495],[-128.09828098280983,52.0982315606708],[-128.10548105481055,52.110051601559974],[-128.11268112681125,52.128625951528676],[-128.11988119881198,52.14213456968773],[-128.12348123481235,52.15226603330703],[-128.10548105481055,52.15226603330703],[-128.07668076680767,52.145511724227504],[-128.06588065880658,52.14888887876725],[-128.04788047880479,52.16239749692633],[-128.03708037080372,52.16577465146608],[-127.9470794707947,52.16577465146608]]],[[[-128.09828098280983,52.240072051340945],[-128.11628116281162,52.240072051340945],[-128.1378813788138,52.24176062861082],[-128.1558815588156,52.24682636042047],[-128.17388173881739,52.25526924676987],[-128.1018810188102,52.278909328548224],[-128.08028080280803,52.2924179467073],[-128.0550805508055,52.30423798759648],[-128.0190801908019,52.305926564866354],[-127.98667986679867,52.302549410326606],[-127.96147961479615,52.29579510124705],[-127.93627936279363,52.25020351496022],[-127.93267932679326,52.23838347407104],[-127.92547925479255,52.226563433181866],[-127.91467914679146,52.21474339229269],[-127.90747907479074,52.20123477413364],[-127.91467914679146,52.18266042416491],[-127.93267932679326,52.17590611508538],[-127.95427954279543,52.177594692355285],[-127.99387993879938,52.186037578704685],[-128.04428044280442,52.180971846895034],[-128.06948069480694,52.18266042416491],[-128.0910809108091,52.19279188778421],[-128.09468094680946,52.20461192867339],[-128.08748087480876,52.216431969562564],[-128.0730807308073,52.22318627864212],[-128.03348033480336,52.23162916499152],[-128.0190801908019,52.24176062861082],[-128.02268022680227,52.25020351496022],[-128.04068040680406,52.25526924676987],[-128.0550805508055,52.253580669499996],[-128.07668076680767,52.24513778315057],[-128.09828098280983,52.240072051340945]]],[[[-127.24147241472414,52.42581555102802],[-127.23427234272341,52.403864046519544],[-127.24147241472414,52.38360111928097],[-127.23787237872378,52.36671534658214],[-127.20547205472054,52.34982957388331],[-127.23787237872378,52.31268087394588],[-127.27747277472776,52.289040792167526],[-127.36387363873638,52.262023555849396],[-127.36747367473674,52.25864640130965],[-127.37467374673747,52.25020351496022],[-127.37827378273784,52.248514937690345],[-127.3890738907389,52.248514937690345],[-127.40347403474036,52.253580669499996],[-127.41427414274142,52.25526924676987],[-127.4538745387454,52.23838347407104],[-127.46467464674646,52.22318627864212],[-127.48267482674827,52.20967766048304],[-127.52947529475296,52.19279188778421],[-127.54027540275402,52.191103310514336],[-127.56547565475654,52.18941473324446],[-127.57627576275763,52.186037578704685],[-127.58347583475835,52.177594692355285],[-127.59427594275942,52.155643187846806],[-127.60147601476015,52.15226603330703],[-127.62667626676267,52.14888887876725],[-127.6410764107641,52.13875741514798],[-127.69147691476914,52.06783716981289],[-127.7058770587706,52.04419708803454],[-127.70227702277023,52.025622738065834],[-127.69867698676987,52.003671233557355],[-127.71667716677166,51.9884740381284],[-127.74547745477454,51.97834257450913],[-127.77067770677706,51.97327684269948],[-127.8210782107821,51.971588265429574],[-127.8390783907839,51.96652253361992],[-127.87147871478714,51.954702492730746],[-127.88947889478894,51.95301391546087],[-127.9038790387904,51.968211110889825],[-127.90027900279003,52.00198265628748],[-127.87867878678787,52.08303436524184],[-127.87507875078751,52.093165828861146],[-127.86427864278642,52.10498586975032],[-127.86067860678607,52.10836302429007],[-127.85347853478535,52.110051601559974],[-127.84627846278462,52.11174017882985],[-127.84267842678426,52.11849448790937],[-127.84627846278462,52.11849448790937],[-127.84987849878499,52.14888887876725],[-127.84267842678426,52.16746322873598],[-127.8210782107821,52.19616904232399],[-127.79587795877958,52.218120546832466],[-127.77427774277743,52.21980912410234],[-127.75267752677527,52.25020351496022],[-127.7130771307713,52.25526924676987],[-127.66987669876698,52.25526924676987],[-127.61947619476194,52.28059790581813],[-127.57627576275763,52.2907293694374],[-127.55107551075511,52.305926564866354],[-127.54387543875438,52.30761514213623],[-127.52227522275223,52.30930371940613],[-127.51147511475114,52.31268087394588],[-127.49707497074971,52.32618949210496],[-127.47547475474755,52.33632095572423],[-127.46467464674646,52.34982957388331],[-127.4538745387454,52.36671534658214],[-127.44667446674467,52.37853538747132],[-127.43227432274323,52.386978273820716],[-127.41427414274142,52.39204400563037],[-127.31347313473134,52.41399551013885],[-127.29547295472955,52.4190612419485],[-127.27027270272703,52.435947014647326],[-127.25947259472593,52.435947014647326],[-127.24147241472414,52.42581555102802]]],[[[-128.61668616686165,52.45452136461603],[-128.61668616686165,52.435947014647326],[-128.62028620286202,52.4275041282979],[-128.62388623886238,52.4190612419485],[-128.6130861308613,52.37684681020144],[-128.62388623886238,52.32956664664471],[-128.6490864908649,52.289040792167526],[-128.6778867788678,52.26877786492895],[-128.68508685086852,52.28566363762778],[-128.71748717487174,52.30761514213623],[-128.72828728287283,52.32281233756518],[-128.72828728287283,52.332943801184484],[-128.72828728287283,52.35489530569296],[-128.72828728287283,52.365026769312266],[-128.74988749887498,52.37178107839179],[-128.74988749887498,52.37515823293154],[-128.74628746287462,52.386978273820716],[-128.74988749887498,52.39204400563037],[-128.7570875708757,52.408929778329195],[-128.7642876428764,52.4291927055678],[-128.7642876428764,52.44945563280638],[-128.7570875708757,52.46802998277511],[-128.74268742687428,52.47478429185463],[-128.71748717487174,52.48153860093416],[-128.67428674286742,52.48829291001368],[-128.67428674286742,52.48153860093416],[-128.6778867788678,52.47816144639438],[-128.68868688686888,52.46802998277511],[-128.6778867788678,52.46971856004498],[-128.67068670686706,52.471407137314856],[-128.659886598866,52.47647286912451],[-128.65268652686527,52.48153860093416],[-128.6310863108631,52.46971856004498],[-128.62388623886238,52.462964250965456],[-128.61668616686165,52.45452136461603]]],[[[-128.56268562685625,52.61155905071513],[-128.56628566285661,52.63013340068383],[-128.56268562685625,52.65208490519231],[-128.5518855188552,52.66390494608149],[-128.53748537485376,52.65208490519231],[-128.52668526685267,52.59805043255605],[-128.47268472684726,52.48829291001368],[-128.48348483484835,52.44270132372685],[-128.49788497884978,52.435947014647326],[-128.51588515885157,52.43425843737745],[-128.5338853388534,52.435947014647326],[-128.54828548285482,52.44270132372685],[-128.55908559085591,52.45283278734615],[-128.59148591485916,52.46127567369555],[-128.62028620286202,52.47816144639438],[-128.6490864908649,52.49167006455346],[-128.66348663486633,52.49504721909321],[-128.6778867788678,52.50011295090286],[-128.68868688686888,52.51193299179204],[-128.69948699486994,52.51868730087159],[-128.71388713887137,52.50855583725229],[-128.7030870308703,52.498424373632986],[-128.70668706687067,52.49167006455346],[-128.7210872108721,52.48829291001368],[-128.73548735487356,52.49504721909321],[-128.7570875708757,52.48998148728356],[-128.77868778687787,52.50011295090286],[-128.79668796687966,52.51362156906194],[-128.81828818288182,52.52206445541134],[-128.81108811088112,52.54063880538004],[-128.80028800288002,52.547393114459595],[-128.7858878588786,52.54401595991982],[-128.76788767887678,52.53557307357042],[-128.76068760687608,52.53050734176077],[-128.75348753487535,52.52375303268121],[-128.74628746287462,52.51868730087159],[-128.73548735487356,52.515310146331814],[-128.72828728287283,52.51868730087159],[-128.7210872108721,52.525441609951116],[-128.71388713887137,52.528818764490865],[-128.69948699486994,52.52206445541134],[-128.69228692286924,52.528818764490865],[-128.7030870308703,52.53219591903064],[-128.7210872108721,52.542327382649944],[-128.71388713887137,52.54570453718969],[-128.70668706687067,52.54908169172947],[-128.71388713887137,52.55245884626922],[-128.7318873188732,52.555836000808995],[-128.73908739087392,52.55921315534877],[-128.73908739087392,52.56765604169817],[-128.73548735487356,52.58116465985725],[-128.73908739087392,52.584541814397],[-128.74268742687428,52.586230391666874],[-128.73908739087392,52.591296123476525],[-128.7318873188732,52.596361855286176],[-128.72468724687246,52.59805043255605],[-128.58428584285843,52.59973900982595],[-128.56268562685625,52.61155905071513]]],[[[-131.5651156511565,52.72807088233702],[-131.59031590315902,52.721316573257496],[-131.65511655116552,52.721316573257496],[-131.6731167311673,52.70611937782854],[-131.65871658716588,52.7128736869081],[-131.64431644316443,52.71456226417797],[-131.63351633516334,52.707807955098446],[-131.62631626316264,52.69261075966949],[-131.60831608316084,52.69767649147914],[-131.55431554315544,52.69936506874902],[-131.54351543515435,52.70443080055867],[-131.53271532715326,52.71793941871775],[-131.5111151111511,52.729759459606925],[-131.48591485914858,52.73651376868645],[-131.4679146791468,52.734825191416576],[-131.45351453514536,52.71793941871775],[-131.44631446314463,52.702742223288794],[-131.44631446314463,52.68416787332009],[-131.4607146071461,52.658839214271836],[-131.45351453514536,52.645330596112785],[-131.4679146791468,52.63688770976336],[-131.48951489514894,52.631821977953706],[-131.5111151111511,52.631821977953706],[-131.53271532715326,52.640264864303134],[-131.57231572315723,52.66221636881161],[-131.5939159391594,52.66559352335136],[-131.59031590315902,52.66052779154171],[-131.58671586715866,52.658839214271836],[-131.5939159391594,52.63857628703326],[-131.55431554315544,52.61493620525488],[-131.57951579515796,52.59805043255605],[-131.60111601116012,52.5946732780163],[-131.6191161911619,52.60649331890548],[-131.65511655116552,52.645330596112785],[-131.6479164791648,52.66390494608149],[-131.69471694716947,52.69936506874902],[-131.7019170191702,52.721316573257496],[-131.68031680316804,52.734825191416576],[-131.6371163711637,52.73651376868645],[-131.5651156511565,52.72807088233702]]],[[[-128.31068310683105,52.4291927055678],[-128.3790837908379,52.37853538747132],[-128.40068400684007,52.373469655661665],[-128.44028440284404,52.37515823293154],[-128.46548465484653,52.381912542011065],[-128.46548465484653,52.40217546924967],[-128.44748447484474,52.41399551013885],[-128.4258842588426,52.42581555102802],[-128.41148411484113,52.4393241691871],[-128.40428404284043,52.46127567369555],[-128.3970839708397,52.46802998277511],[-128.4258842588426,52.48829291001368],[-128.43668436684368,52.52713018722099],[-128.44028440284404,52.61155905071513],[-128.44388443884438,52.618313359794655],[-128.4510845108451,52.623379091604306],[-128.4510845108451,52.63013340068383],[-128.44388443884438,52.64195344157301],[-128.43668436684368,52.65208490519231],[-128.44028440284404,52.672347832430916],[-128.43668436684368,52.68416787332009],[-128.4258842588426,52.69936506874902],[-128.4258842588426,52.71456226417797],[-128.43308433084331,52.72807088233702],[-128.44748447484474,52.7415795004961],[-128.43668436684368,52.76184242773468],[-128.4150841508415,52.78210535497328],[-128.389883898839,52.797302550402236],[-128.37188371883718,52.79561397313233],[-128.3610836108361,52.75846527319493],[-128.35028350283503,52.71793941871775],[-128.33228332283323,52.69767649147914],[-128.31788317883178,52.68754502785984],[-128.31788317883178,52.675724986970664],[-128.32148321483214,52.66390494608149],[-128.3250832508325,52.658839214271836],[-128.3142831428314,52.587918968936776],[-128.3070830708307,52.577787505317474],[-128.30348303483035,52.57272177350782],[-128.29988299883,52.56427888715842],[-128.29628296282962,52.55414742353912],[-128.29628296282962,52.533884496300516],[-128.28908289082892,52.52206445541134],[-128.2818828188282,52.50855583725229],[-128.2818828188282,52.498424373632986],[-128.2818828188282,52.48829291001368],[-128.28548285482856,52.47816144639438],[-128.28908289082892,52.46802998277511],[-128.3070830708307,52.44101274645698],[-128.31068310683105,52.4291927055678]]],[[[-128.929889298893,52.61493620525488],[-128.92628926289262,52.60142758709583],[-128.92628926289262,52.586230391666874],[-128.92628926289262,52.569344618968046],[-128.92628926289262,52.52713018722099],[-128.93348933489335,52.498424373632986],[-128.94788947889478,52.47309571458476],[-128.98028980289803,52.45452136461603],[-128.9838898388984,52.46802998277511],[-128.98748987489876,52.479850023664284],[-128.99108991089912,52.48660433274381],[-129.0090900909009,52.48829291001368],[-129.00189001890018,52.50349010544264],[-129.00189001890018,52.520375878141465],[-129.01269012690128,52.53050734176077],[-129.0270902709027,52.525441609951116],[-129.04509045090452,52.51699872360169],[-129.05949059490595,52.52375303268121],[-129.07389073890738,52.53895022811017],[-129.07749077490774,52.55752457807887],[-129.10269102691026,52.55414742353912],[-129.12069120691206,52.5659674644283],[-129.12429124291242,52.587918968936776],[-129.12069120691206,52.61155905071513],[-129.1530915309153,52.604804741635604],[-129.18549185491855,52.62675624614408],[-129.22869228692286,52.680790718780315],[-129.22149221492214,52.68416787332009],[-129.21069210692107,52.68416787332009],[-129.20349203492034,52.68416787332009],[-129.19269192691928,52.680790718780315],[-129.2070920709207,52.694299336939366],[-129.25749257492575,52.71456226417797],[-129.27549275492754,52.72807088233702],[-129.2682926829268,52.734825191416576],[-129.28629286292863,52.7500223868455],[-129.29349293492936,52.76184242773468],[-129.28629286292863,52.773662468623854],[-129.2682926829268,52.78885966405281],[-129.28269282692827,52.81081116856129],[-129.27549275492754,52.82431978672034],[-129.25749257492575,52.827696941260115],[-129.1818918189182,52.78885966405281],[-129.1530915309153,52.76353100500458],[-129.1350913509135,52.75339954138528],[-129.10269102691026,52.743268077765975],[-129.08469084690847,52.7314480368768],[-129.0558905589056,52.70611937782854],[-128.94428944289444,52.62844482341396],[-128.929889298893,52.61493620525488]]],[[[-128.31068310683105,52.72807088233702],[-128.32148321483214,52.743268077765975],[-128.3250832508325,52.7500223868455],[-128.3250832508325,52.77535104589376],[-128.32148321483214,52.778728200433505],[-128.31788317883178,52.778728200433505],[-128.27828278282783,52.787171086782934],[-128.23508235082352,52.787171086782934],[-128.21348213482133,52.79561397313233],[-128.20628206282063,52.80743401402151],[-128.1990819908199,52.82094263218059],[-128.18828188281884,52.82938551852999],[-128.17388173881739,52.82431978672034],[-128.17388173881739,52.814188323101064],[-128.17748177481775,52.79561397313233],[-128.1810818108181,52.78548250951303],[-128.1810818108181,52.77535104589376],[-128.19548195481954,52.7601538504648],[-128.1990819908199,52.751710964115404],[-128.20628206282063,52.72807088233702],[-128.20628206282063,52.71793941871775],[-128.20988209882097,52.70611937782854],[-128.22428224282243,52.68923360512974],[-128.2278822788228,52.68416787332009],[-128.2278822788228,52.67910214151044],[-128.23868238682388,52.66052779154171],[-128.24948249482495,52.623379091604306],[-128.25668256682567,52.618313359794655],[-128.27468274682747,52.6031161643657],[-128.28908289082892,52.60818189617535],[-128.29268292682926,52.623379091604306],[-128.2818828188282,52.63857628703326],[-128.2818828188282,52.645330596112785],[-128.28548285482856,52.648707750652534],[-128.29628296282962,52.66559352335136],[-128.28908289082892,52.68416787332009],[-128.29268292682926,52.69936506874902],[-128.31068310683105,52.72807088233702]]],[[[-129.30429304293042,53.03539194545567],[-129.29349293492936,52.99993182278814],[-129.289892898929,52.983046050089314],[-129.30069300693006,52.974603163739914],[-129.32589325893258,52.97122600920014],[-129.33669336693367,52.97291458647001],[-129.37269372693726,52.993177513708616],[-129.37629376293762,52.99486609097849],[-129.39429394293944,52.99993182278814],[-129.40869408694087,53.01344044094722],[-129.42669426694266,53.042146254535226],[-129.44469444694448,53.05903202723405],[-129.4590945909459,53.07085206812323],[-129.46989469894697,53.08267210901241],[-129.4770947709477,53.10124645898111],[-129.48069480694807,53.11137792260041],[-129.4878948789488,53.10968934533051],[-129.50589505895059,53.09786930444133],[-129.51669516695168,53.099557881711235],[-129.51669516695168,53.10631219079076],[-129.50949509495095,53.11475507714016],[-129.50229502295022,53.11813223167994],[-129.51669516695168,53.12995227256911],[-129.53469534695347,53.135018004378765],[-129.55269552695526,53.143460890728164],[-129.5490954909549,53.16541239523664],[-129.53469534695347,53.183986745205374],[-129.50949509495095,53.19242963155477],[-129.48429484294843,53.1907410542849],[-129.46269462694627,53.18736389974512],[-129.45549455494555,53.16878954977642],[-129.44469444694448,53.156969508887244],[-129.41229412294123,53.13839515891854],[-129.3618936189362,53.080983531742504],[-129.34749347493474,53.06747491358345],[-129.32949329493294,53.06072060450393],[-129.31509315093152,53.0539662954244],[-129.30429304293042,53.03539194545567]]],[[[-129.29349293492936,53.108000768060634],[-129.30069300693006,53.113066499870285],[-129.32229322293222,53.12488654075946],[-129.3330933309333,53.13164084983899],[-129.33669336693367,53.15359235434747],[-129.34029340293404,53.17892101339572],[-129.3330933309333,53.202561095174076],[-129.32229322293222,53.22113544514278],[-129.2610926109261,53.265038454159736],[-129.25029250292502,53.28361280412844],[-129.25029250292502,53.295432845017615],[-129.25389253892538,53.30387573136704],[-129.27189271892718,53.32076150406587],[-129.27549275492754,53.330892967685145],[-129.2610926109261,53.33427012222492],[-129.24309243092432,53.33427012222492],[-129.21429214292144,53.327515813145396],[-129.19629196291964,53.322450081335745],[-129.18549185491855,53.31400719498632],[-129.17469174691746,53.30218715409714],[-129.1710917109171,53.292055690477866],[-129.17469174691746,53.27516991777904],[-129.17469174691746,53.26166129961996],[-129.16749167491673,53.25152983600066],[-129.15669156691567,53.23970979511148],[-129.1530915309153,53.2278897542223],[-129.1530915309153,53.219446867872904],[-129.15669156691567,53.2008725179042],[-129.16029160291603,53.18736389974512],[-129.1530915309153,53.16372381796677],[-129.1350913509135,53.11982080894981],[-129.13869138691388,53.104623613520886],[-129.1638916389164,53.099557881711235],[-129.23949239492396,53.10124645898111],[-129.2610926109261,53.104623613520886],[-129.2682926829268,53.09280357263168],[-129.27549275492754,53.09280357263168],[-129.28629286292863,53.09786930444133],[-129.29349293492936,53.108000768060634]]],[[[-128.9118891188912,53.406878944829884],[-128.90468904689047,53.39168174940093],[-128.90468904689047,53.38155028578163],[-128.9118891188912,53.371418822162326],[-128.92628926289262,53.357910204003275],[-128.9190891908919,53.349467317653875],[-128.9190891908919,53.3376472767647],[-128.92628926289262,53.327515813145396],[-128.94068940689408,53.32413865860562],[-128.95868958689587,53.325827235875494],[-128.99468994689948,53.3376472767647],[-129.01269012690128,53.34102443130445],[-129.05949059490595,53.3376472767647],[-129.07389073890738,53.33427012222492],[-129.10269102691026,53.31907292679597],[-129.1170911709117,53.32076150406587],[-129.14949149491494,53.362975935812926],[-129.11349113491136,53.40856752209976],[-129.06669066690665,53.45247053111672],[-129.06309063090632,53.48793065378425],[-129.04869048690486,53.50819358102285],[-129.02349023490234,53.531833662801205],[-128.99828998289982,53.54365370369038],[-128.98748987489876,53.5301450855313],[-128.98748987489876,53.5014392719433],[-128.97668976689766,53.47948776743485],[-128.9118891188912,53.406878944829884]]],[[[-129.16749167491673,53.384927440321405],[-129.1710917109171,53.40856752209976],[-129.17469174691746,53.450781953846814],[-129.1710917109171,53.4929963855939],[-129.16029160291603,53.531833662801205],[-129.16749167491673,53.59093386724709],[-129.1638916389164,53.61457394902544],[-129.16029160291603,53.62639398991462],[-129.1350913509135,53.65003407169297],[-129.12069120691206,53.65509980350262],[-129.0810908109081,53.6669198443918],[-129.07029070290702,53.6770513080111],[-129.05949059490595,53.68380561709063],[-129.0378903789038,53.692248503440055],[-128.99468994689948,53.700691389789455],[-128.9010890108901,53.700691389789455],[-128.8830888308883,53.70406854432923],[-128.86148861488616,53.71251143067863],[-128.84348843488436,53.71588858521841],[-128.82188821888218,53.70744569886901],[-128.8578885788858,53.68211703982075],[-128.86868868688686,53.6669198443918],[-128.8650886508865,53.65341122623275],[-128.8830888308883,53.62132825810497],[-128.87948879488795,53.59262244451696],[-128.8830888308883,53.575736671818134],[-128.9550895508955,53.59093386724709],[-128.98028980289803,53.58417955816756],[-129.07029070290702,53.52001362191203],[-129.0810908109081,53.51663646737225],[-129.09549095490956,53.50819358102285],[-129.0918909189092,53.4929963855939],[-129.08469084690847,53.46766772654564],[-129.0918909189092,53.450781953846814],[-129.10269102691026,53.442339067497414],[-129.11349113491136,53.43896191295764],[-129.12789127891278,53.43051902660824],[-129.14949149491494,53.40856752209976],[-129.16749167491673,53.384927440321405]]],[[[-130.40590405904058,53.687182771630404],[-130.36630366303663,53.71251143067863],[-130.3051030510305,53.74628297607629],[-130.29070290702907,53.754725862425715],[-130.2979029790298,53.77330021239442],[-130.30150301503016,53.790185985093245],[-130.2979029790298,53.80031744871255],[-130.27630276302762,53.803694603252325],[-130.2619026190262,53.79862887144267],[-130.2331023310233,53.785120253283594],[-130.2223022230222,53.776677366934194],[-130.22950229502294,53.76485732604502],[-130.23670236702367,53.75303728515584],[-130.2331023310233,53.741217244266664],[-130.22950229502294,53.727708626107585],[-130.2151021510215,53.71757716248828],[-130.20070200702008,53.71588858521841],[-130.18270182701826,53.71588858521841],[-130.13950139501395,53.70237996705936],[-130.1251012510125,53.69562565797983],[-130.1179011790118,53.68380561709063],[-130.12150121501213,53.67198557620145],[-130.1251012510125,53.66354268985205],[-130.12870128701286,53.65341122623275],[-130.1179011790118,53.6399026080737],[-130.1251012510125,53.63145972172427],[-130.11430114301143,53.61795110356522],[-130.1071010710107,53.60444248540614],[-130.09270092700928,53.57067094000851],[-130.1179011790118,53.57067094000851],[-130.17190171901717,53.59093386724709],[-130.25110251102512,53.59768817632661],[-130.29430294302944,53.61963968083509],[-130.33030330303302,53.624705412644744],[-130.34830348303484,53.634836876264046],[-130.36630366303663,53.6584769580424],[-130.37350373503733,53.6669198443918],[-130.38070380703806,53.67198557620145],[-130.39870398703988,53.68042846255088],[-130.40590405904058,53.687182771630404]]],[[[-130.44910449104492,53.98099521659],[-130.45630456304562,53.96242086662127],[-130.46350463504635,53.93540363030317],[-130.47070470704708,53.910074971254915],[-130.48870488704887,53.89994350763561],[-130.52110521105212,53.901632084905515],[-130.54270542705427,53.910074971254915],[-130.58230582305822,53.94384651665257],[-130.6039060390604,53.959043712081524],[-130.61830618306183,53.96579802116105],[-130.6291062910629,53.964109443891175],[-130.639906399064,53.95566655754175],[-130.65070650706508,53.94891224846222],[-130.65790657906578,53.950600825732096],[-130.66150661506614,53.96748659843092],[-130.67590675906757,53.9607322893514],[-130.6831068310683,53.94722367119235],[-130.69030690306903,53.932026475763394],[-130.70110701107012,53.92020643487422],[-130.69030690306903,53.90500923944526],[-130.67590675906757,53.89825493036574],[-130.65790657906578,53.89318919855609],[-130.639906399064,53.88474631220669],[-130.6291062910629,53.87292627131751],[-130.6219062190622,53.85604049861868],[-130.6291062910629,53.8425318804596],[-130.65070650706508,53.83746614864995],[-130.65790657906578,53.839154725919855],[-130.67950679506794,53.85097476680903],[-130.69750697506976,53.85097476680903],[-130.70830708307082,53.852663344078906],[-130.71550715507155,53.85772907588856],[-130.71550715507155,53.87123769404761],[-130.70830708307082,53.88981204401634],[-130.70830708307082,53.90500923944526],[-130.7191071910719,53.91345212579469],[-130.72270722707228,53.92020643487422],[-130.7191071910719,53.937092207573045],[-130.70470704707049,53.95397798027187],[-130.69030690306903,53.9607322893514],[-130.68670686706866,53.96579802116105],[-130.67950679506794,53.98268379385988],[-130.67230672306724,53.9894381029394],[-130.6651066510665,53.99112668020928],[-130.65430654306545,53.99112668020928],[-130.64710647106472,53.99112668020928],[-130.64710647106472,53.9894381029394],[-130.63270632706326,53.999569566558705],[-130.61830618306183,54.013078184717756],[-130.6039060390604,54.02489822560693],[-130.58590585905858,54.029963957416584],[-130.5679056790568,54.03334111195636],[-130.51750517505175,54.056981193734714],[-130.51750517505175,54.06880123462389],[-130.45270452704528,54.075555543703416],[-130.43470434704346,54.08062127551307],[-130.42030420304204,54.10088420275167],[-130.39150391503915,54.09581847094202],[-130.33750337503375,54.070489811893765],[-130.29070290702907,54.029963957416584],[-130.27990279902798,54.02320964833706],[-130.26550265502655,54.01476676198766],[-130.24750247502476,53.99619241201893],[-130.2331023310233,53.97424090751048],[-130.22950229502294,53.95397798027187],[-130.24030240302403,53.937092207573045],[-130.28350283502834,53.915140703064566],[-130.30150301503016,53.90332066217539],[-130.32670326703266,53.87630342585726],[-130.33390333903338,53.86448338496808],[-130.33750337503375,53.85435192134878],[-130.3411034110341,53.84590903499938],[-130.3519035190352,53.83746614864995],[-130.36270362703627,53.83577757138008],[-130.39510395103952,53.83577757138008],[-130.40590405904058,53.83746614864995],[-130.4131041310413,53.844220457729506],[-130.42390423904237,53.86786053950786],[-130.42390423904237,53.87123769404761],[-130.4419044190442,53.86279480769821],[-130.46350463504635,53.84928618953916],[-130.47790477904778,53.844220457729506],[-130.48870488704887,53.86448338496808],[-130.49230492304923,53.87799200312716],[-130.48870488704887,53.879680580397036],[-130.48150481504814,53.879680580397036],[-130.47070470704708,53.88474631220669],[-130.45990459904598,53.89150062128621],[-130.45270452704528,53.89825493036574],[-130.40950409504094,53.95397798027187],[-130.39510395103952,53.96242086662127],[-130.36630366303663,53.96748659843092],[-130.33030330303302,53.96748659843092],[-130.33030330303302,53.97424090751048],[-130.34470344703448,53.977618062050226],[-130.3519035190352,53.98268379385988],[-130.34830348303484,53.98774952566953],[-130.33750337503375,53.99619241201893],[-130.34830348303484,53.999569566558705],[-130.36270362703627,53.99788098928883],[-130.3879038790388,53.9894381029394],[-130.4311043110431,53.98774952566953],[-130.44910449104492,53.98099521659]]],[[[-130.74430744307443,54.605768806446605],[-130.75510755107553,54.5753744155887],[-130.76230762307623,54.56355437469952],[-130.77670776707765,54.55004575654047],[-130.83070830708306,54.521339942952466],[-130.83790837908379,54.51289705660304],[-130.96030960309602,54.45548542942703],[-130.96750967509675,54.462239738506554],[-130.96750967509675,54.46899404758611],[-130.96390963909639,54.47743693393551],[-130.96030960309602,54.48587982028491],[-130.96030960309602,54.53991429292117],[-130.96030960309602,54.55004575654047],[-130.9459094590946,54.56017722015977],[-130.93870938709387,54.57368583831882],[-130.93150931509314,54.583817301938126],[-130.92790927909277,54.59057161101765],[-130.92790927909277,54.59732592009718],[-130.93150931509314,54.605768806446605],[-130.9351093510935,54.614211692796005],[-130.93150931509314,54.62265457914543],[-130.9171091710917,54.62940888822496],[-130.89910899108992,54.63447462003461],[-130.8811088110881,54.63109746549483],[-130.8739087390874,54.619277424605656],[-130.8559085590856,54.62940888822496],[-130.84150841508415,54.62603173368518],[-130.8271082710827,54.61758884733578],[-130.8091080910809,54.61252311552613],[-130.7911079110791,54.61758884733578],[-130.77310773107732,54.62940888822496],[-130.75870758707586,54.63447462003461],[-130.75150751507516,54.619277424605656],[-130.7479074790748,54.61083453825623],[-130.7479074790748,54.60914596098635],[-130.74430744307443,54.605768806446605]]],[[[-131.24471244712447,54.935041374073705],[-131.21231212312122,54.926598487724306],[-131.1979119791198,54.91984417864478],[-131.19431194311943,54.9080241377556],[-131.20151201512016,54.90126982867608],[-131.23751237512374,54.88269547870735],[-131.2519125191252,54.8793183241676],[-131.28431284312842,54.88100690143747],[-131.29871298712987,54.8793183241676],[-131.3131131311313,54.8691868605483],[-131.3311133111331,54.86074397419887],[-131.34911349113491,54.86074397419887],[-131.37071370713707,54.86580970600852],[-131.38871388713886,54.872564015088045],[-131.38871388713886,54.88438405597725],[-131.42471424714248,54.9063355604857],[-131.44271442714427,54.91984417864478],[-131.4679146791468,54.913089869565255],[-131.48231482314822,54.92490991045443],[-131.47871478714788,54.94517283769301],[-131.449914499145,54.953615724042436],[-131.43191431914317,54.95530430131231],[-131.37071370713707,54.96712434220149],[-131.35271352713528,54.975567228550915],[-131.3311133111331,54.962058610391836],[-131.26271262712626,54.997518733059366],[-131.23751237512374,54.99583015578949],[-131.24471244712447,54.989075846709966],[-131.2411124111241,54.97387865128101],[-131.23751237512374,54.96037003312196],[-131.23751237512374,54.95023856950266],[-131.24471244712447,54.94010710588336],[-131.24471244712447,54.935041374073705]]],[[[-132.8251282512825,55.0549303602354],[-132.8251282512825,55.06506182385468],[-132.81432814328144,55.07519328747398],[-132.80712807128072,55.081947596553505],[-132.79992799928,55.08532475109328],[-132.81072810728108,55.09039048290293],[-132.82872828728287,55.095456214712584],[-132.85752857528576,55.09883336925233],[-132.86112861128612,55.10558767833186],[-132.86472864728648,55.11740771922106],[-132.86832868328685,55.130916337380114],[-132.86832868328685,55.14611353280907],[-132.86832868328685,55.15455641915847],[-132.86832868328685,55.16131072823799],[-132.86472864728648,55.16131072823799],[-132.85752857528576,55.16131072823799],[-132.85032850328503,55.162999305507896],[-132.8431284312843,55.17988507820672],[-132.83232832328324,55.18663938728625],[-132.82152821528214,55.190016541826],[-132.81072810728108,55.18832796455612],[-132.79272792727926,55.17313076912717],[-132.74232742327422,55.149490687348816],[-132.72432724327243,55.13260491464999],[-132.6667266672667,55.04986462842575],[-132.68112681126811,55.0346674329968],[-132.74952749527495,54.99583015578949],[-132.76032760327604,55.00765019667867],[-132.76752767527677,55.019470237567845],[-132.79272792727926,55.03635601026667],[-132.79272792727926,55.01440450575819],[-132.81432814328144,55.016093083028096],[-132.87192871928718,55.03635601026667],[-132.86112861128612,55.0447988966161],[-132.83232832328324,55.04817605115585],[-132.8251282512825,55.0549303602354]]],[[[-131.47871478714788,55.005961619408794],[-131.48591485914858,55.01778166029797],[-131.48591485914858,55.0262245466474],[-131.48231482314822,55.0346674329968],[-131.48231482314822,55.0431103193462],[-131.4931149311493,55.05661893750528],[-131.51471514715146,55.073504710204105],[-131.53271532715326,55.087013328363156],[-131.5471154711547,55.08870190563306],[-131.55071550715508,55.076881864743854],[-131.53631536315362,55.06506182385468],[-131.52551525515256,55.04986462842575],[-131.53271532715326,55.02960170118715],[-131.53991539915398,55.02284739210762],[-131.55071550715508,55.01440450575819],[-131.57231572315723,55.00258446486902],[-131.5759157591576,55.00089588759914],[-131.57951579515796,54.997518733059366],[-131.5831158311583,54.99583015578949],[-131.5939159391594,54.99583015578949],[-131.59751597515975,54.997518733059366],[-131.60471604716048,55.00258446486902],[-131.60831608316084,55.00765019667867],[-131.60831608316084,55.00933877394857],[-131.62271622716227,55.01778166029797],[-131.6191161911619,55.0346674329968],[-131.57951579515796,55.09039048290293],[-131.5831158311583,55.095456214712584],[-131.60111601116012,55.09883336925233],[-131.5831158311583,55.12585060557046],[-131.5651156511565,55.12585060557046],[-131.54351543515435,55.11909629649094],[-131.5219152191522,55.11909629649094],[-131.51831518315183,55.13429349191989],[-131.53271532715326,55.15117926461869],[-131.55431554315544,55.166376460047644],[-131.57231572315723,55.17481934639707],[-131.56871568715687,55.17819650093682],[-131.56151561515614,55.184950810016346],[-131.5579155791558,55.18832796455612],[-131.57231572315723,55.19677085090555],[-131.5831158311583,55.206902314524825],[-131.58671586715866,55.218722355414],[-131.58671586715866,55.23560812811283],[-131.57951579515796,55.25418247808156],[-131.57231572315723,55.260936787161086],[-131.56151561515614,55.264313941700834],[-131.54351543515435,55.27106825078039],[-131.55071550715508,55.27613398259001],[-131.53271532715326,55.27444540532014],[-131.5039150391504,55.264313941700834],[-131.47871478714788,55.25249390081166],[-131.449914499145,55.22378808722365],[-131.3959139591396,55.21534520087425],[-131.37431374313744,55.201836582715174],[-131.3779137791378,55.18326223274647],[-131.37071370713707,55.162999305507896],[-131.35631356313564,55.144424955539165],[-131.35271352713528,55.122473451030686],[-131.35631356313564,55.114030564681286],[-131.36351363513634,55.10558767833186],[-131.3671136711367,55.09714479198246],[-131.36351363513634,55.08870190563306],[-131.34911349113491,55.078570442013756],[-131.34551345513455,55.07181613293423],[-131.34551345513455,55.05830751477515],[-131.35631356313564,55.032978855726924],[-131.3779137791378,55.01778166029797],[-131.40311403114032,55.011027351218445],[-131.47151471514715,55.00427304213892],[-131.47871478714788,55.005961619408794]]],[[[-133.44793447934478,55.40615443237098],[-133.44793447934478,55.39264581421193],[-133.44793447934478,55.385891505132406],[-133.44073440734408,55.380825773322755],[-133.44793447934478,55.37407146424323],[-133.45873458734587,55.36900573243358],[-133.4659346593466,55.367317155163704],[-133.49833498334982,55.3656285778938],[-133.50553505535055,55.36394000062393],[-133.50553505535055,55.36056284608415],[-133.50193501935019,55.3554971142745],[-133.50553505535055,55.35211995973475],[-133.51633516335164,55.345365650655225],[-133.519935199352,55.34198849611545],[-133.5271352713527,55.33861134157567],[-133.5379353793538,55.33861134157567],[-133.54873548735486,55.340299918845574],[-133.56673566735668,55.345365650655225],[-133.5811358113581,55.345365650655225],[-133.56673566735668,55.33016845522627],[-133.56673566735668,55.32003699160697],[-133.5811358113581,55.28964260074909],[-133.58833588335884,55.25755963262131],[-133.59553595535954,55.242362437192384],[-133.60633606336063,55.23560812811283],[-133.62073620736209,55.24067385992248],[-133.6351363513635,55.25249390081166],[-133.65673656736567,55.27613398259001],[-133.65673656736567,55.28457686893944],[-133.65673656736567,55.29977406436839],[-133.66033660336603,55.30821695071779],[-133.6639366393664,55.30990552798767],[-133.6819368193682,55.30990552798767],[-133.68913689136892,55.31159410525757],[-133.6639366393664,55.323414146146746],[-133.66033660336603,55.32510272341662],[-133.64593645936458,55.32510272341662],[-133.64233642336424,55.3284798779564],[-133.63873638736388,55.331857032496146],[-133.62073620736209,55.353808537004625],[-133.62433624336242,55.36056284608415],[-133.65673656736567,55.37238288697333],[-133.64233642336424,55.38251435059263],[-133.61353613536136,55.389268659672155],[-133.60273602736027,55.39602296875171],[-133.5919359193592,55.41797447326016],[-133.5811358113581,55.42641735960959],[-133.57033570335705,55.42472878233971],[-133.54153541535416,55.41459731872041],[-133.47313473134733,55.416285895990285],[-133.44793447934478,55.40615443237098]]],[[[-133.5379353793538,55.48214040951572],[-133.52353523535237,55.49902618221455],[-133.51633516335164,55.514223377643475],[-133.50553505535055,55.5226662639929],[-133.47673476734766,55.51760053218325],[-133.43353433534335,55.49733760494465],[-133.4227342273423,55.48889471859525],[-133.41913419134193,55.4753861004362],[-133.41913419134193,55.46018890500724],[-133.42633426334262,55.446680286848164],[-133.44073440734408,55.44161455503854],[-133.45873458734587,55.438237400498764],[-133.49473494734946,55.429794514149336],[-133.51273512735128,55.42810593687946],[-133.53433534335343,55.429794514149336],[-133.5991359913599,55.448368864118066],[-133.58833588335884,55.46356605954699],[-133.5739357393574,55.470320368626545],[-133.5559355593556,55.473697523166294],[-133.5379353793538,55.48214040951572]]],[[[-133.3471334713347,55.448368864118066],[-133.36153361533616,55.46018890500724],[-133.39393393933938,55.5024033367543],[-133.4227342273423,55.51760053218325],[-133.43353433534335,55.527731995802554],[-133.429934299343,55.54461776850138],[-133.4119341193412,55.55306065485078],[-133.39033390333904,55.55643780939056],[-133.32553325533254,55.55643780939056],[-133.3039330393304,55.55306065485078],[-133.2859328593286,55.54461776850138],[-133.27153271532717,55.5311091503423],[-133.27153271532717,55.5125348003736],[-133.2751327513275,55.500714759484424],[-133.27873278732787,55.492271873134996],[-133.2931329313293,55.48214040951572],[-133.30753307533075,55.4753861004362],[-133.32553325533254,55.47200894589642],[-133.33633336333364,55.465254636816894],[-133.3471334713347,55.448368864118066]]],[[[-133.60273602736027,55.48889471859525],[-133.61713617136172,55.48214040951572],[-133.63153631536315,55.45512317319759],[-133.6531365313653,55.448368864118066],[-133.67113671136713,55.451746018657815],[-133.71073710737107,55.465254636816894],[-133.72873728737287,55.46863179135664],[-133.75033750337502,55.46356605954699],[-133.7791377913779,55.45005744138794],[-133.80073800738006,55.448368864118066],[-133.80073800738006,55.45512317319759],[-133.77553775537754,55.46356605954699],[-133.74673746737466,55.49564902767477],[-133.69993699936998,55.50746906856395],[-133.70353703537035,55.51760053218325],[-133.71073710737107,55.52604341853265],[-133.72153721537217,55.532797727612206],[-133.7251372513725,55.5311091503423],[-133.72873728737287,55.532797727612206],[-133.72873728737287,55.541240613961605],[-133.7251372513725,55.54630634577126],[-133.7179371793718,55.55137207758091],[-133.70353703537035,55.55812638666043],[-133.67833678336783,55.54799492304113],[-133.64593645936458,55.54292919123148],[-133.61353613536136,55.541240613961605],[-133.58833588335884,55.54461776850138],[-133.5811358113581,55.527731995802554],[-133.57753577535775,55.509157645833824],[-133.58473584735847,55.49564902767477],[-133.60273602736027,55.48889471859525]]],[[[-133.3039330393304,55.79790435898377],[-133.31113311133112,55.782707163554846],[-133.36873368733688,55.759067081776465],[-133.39033390333904,55.745558463617414],[-133.41913419134193,55.73880415453789],[-133.44793447934478,55.750624195427065],[-133.47673476734766,55.772575699935544],[-133.49113491134912,55.791150049904246],[-133.50553505535055,55.76582139085602],[-133.48753487534876,55.73373842272824],[-133.48753487534876,55.70672118641011],[-133.54153541535416,55.69490114552093],[-133.57753577535775,55.70503260914023],[-133.62433624336242,55.728672690918586],[-133.6639366393664,55.76075565904637],[-133.6819368193682,55.791150049904246],[-133.64953649536494,55.78777289536447],[-133.64233642336424,55.791150049904246],[-133.63873638736388,55.7962157817139],[-133.63873638736388,55.816478708952474],[-133.6351363513635,55.8249215953019],[-133.61353613536136,55.8333644816513],[-133.60273602736027,55.8249215953019],[-133.58833588335884,55.81141297714285],[-133.5739357393574,55.8046586680633],[-133.57753577535775,55.8249215953019],[-133.56673566735668,55.82998732711155],[-133.50553505535055,55.82323301803203],[-133.49473494734946,55.81985586349225],[-133.48753487534876,55.8147901316826],[-133.4839348393484,55.8063472453332],[-133.48033480334803,55.799592936253674],[-133.47673476734766,55.79283862717412],[-133.4659346593466,55.791150049904246],[-133.35073350733506,55.78777289536447],[-133.339933399334,55.791150049904246],[-133.3291332913329,55.799592936253674],[-133.3219332193322,55.80972439987295],[-133.31473314733148,55.81141297714285],[-133.3039330393304,55.79790435898377]]],[[[-133.2859328593286,55.90766188152617],[-133.2679326793268,55.902596149716516],[-133.2679326793268,55.89246468609721],[-133.27153271532717,55.878956067938134],[-133.26433264332644,55.86544744977908],[-133.25353253532535,55.86375887250921],[-133.22833228332283,55.870513181588734],[-133.21753217532176,55.86544744977908],[-133.22113221132213,55.82323301803203],[-133.22473224732246,55.81141297714285],[-133.23553235532356,55.786084318094595],[-133.23913239132392,55.77933000901507],[-133.24993249932498,55.77595285447529],[-133.26073260732608,55.781018586284944],[-133.2679326793268,55.78777289536447],[-133.2751327513275,55.791150049904246],[-133.28233282332823,55.7962157817139],[-133.3039330393304,55.81985586349225],[-133.31473314733148,55.8249215953019],[-133.32553325533254,55.826610172571776],[-133.33273332733327,55.83167590438143],[-133.339933399334,55.83674163619108],[-133.339933399334,55.84518452254051],[-133.33273332733327,55.84687309981038],[-133.2931329313293,55.85193883162003],[-133.31833318333184,55.86038171796943],[-133.3291332913329,55.86882460431886],[-133.33273332733327,55.88064464520804],[-133.32553325533254,55.88064464520804],[-133.2931329313293,55.902596149716516],[-133.2859328593286,55.90766188152617]]],[[[-155.6529565295653,55.88739895428756],[-155.63495634956348,55.905973304256264],[-155.5989559895599,55.91441619060569],[-155.55575555755559,55.91441619060569],[-155.55575555755559,55.89584184063696],[-155.570155701557,55.86882460431886],[-155.570155701557,55.85193883162003],[-155.55935559355595,55.818167286222376],[-155.55575555755559,55.80128151352355],[-155.570155701557,55.782707163554846],[-155.5989559895599,55.76075565904637],[-155.63135631356315,55.76244423631624],[-155.66375663756637,55.77426427720542],[-155.6961569615696,55.77088712266564],[-155.71775717757177,55.77426427720542],[-155.72855728557286,55.8046586680633],[-155.75015750157502,55.818167286222376],[-155.7429574295743,55.83167590438143],[-155.69975699756998,55.84180736800073],[-155.66375663756637,55.85531598615978],[-155.6529565295653,55.88739895428756]]],[[[-133.60633606336063,56.07820818578432],[-133.54153541535416,56.07483103124454],[-133.5091350913509,56.07820818578432],[-133.4839348393484,56.09171680394337],[-133.51273512735128,56.09678253575302],[-133.59553595535954,56.10015969029277],[-133.62073620736209,56.11197973118195],[-133.61713617136172,56.13224265842055],[-133.5811358113581,56.13224265842055],[-133.5091350913509,56.1187340402615],[-133.49473494734946,56.120422617531375],[-133.48033480334803,56.12379977207115],[-133.46233462334624,56.128865503880775],[-133.44073440734408,56.142374122039854],[-133.41553415534156,56.150817008389254],[-133.40473404734047,56.15757131746878],[-133.39393393933938,56.160948472008556],[-133.34353343533434,56.147439853849505],[-133.3039330393304,56.150817008389254],[-133.2859328593286,56.147439853849505],[-133.2859328593286,56.133931235690426],[-133.30753307533075,56.10353684483255],[-133.31473314733148,56.09171680394337],[-133.31113311133112,56.079896763054194],[-133.30033300333002,56.06469956762524],[-133.30033300333002,56.05456810400594],[-133.29673296732966,56.03261659949749],[-133.30033300333002,56.01235367225888],[-133.31113311133112,55.99715647682993],[-133.339933399334,55.99715647682993],[-133.3579335793358,56.00559936317936],[-133.37593375933758,56.02079655860828],[-133.39393393933938,56.02586229041793],[-133.44073440734408,56.00222220863958],[-133.46953469534697,56.017419404068534],[-133.49113491134912,56.01066509498901],[-133.5091350913509,55.98871359048053],[-133.51633516335164,55.981959281401004],[-133.55953559535595,55.97013924051183],[-133.58833588335884,55.95494204508287],[-133.62793627936279,55.960007776892525],[-133.64233642336424,55.94818773600335],[-133.63873638736388,55.938056272384046],[-133.61713617136172,55.92792480876474],[-133.62073620736209,55.92117049968522],[-133.63153631536315,55.91948192241534],[-133.67833678336783,55.91441619060569],[-133.69273692736928,55.911039036065915],[-133.69633696336962,55.90428472698639],[-133.70353703537035,55.902596149716516],[-133.72153721537217,55.91779334514544],[-133.73233732337323,55.91948192241534],[-133.75753757537575,55.92117049968522],[-133.79353793537936,55.9431220041937],[-133.7719377193772,55.9802707041311],[-133.68913689136892,56.044436640386664],[-133.68553685536855,56.052879526736064],[-133.68553685536855,56.063010990355366],[-133.6819368193682,56.06976529943489],[-133.60633606336063,56.07820818578432]]],[[[-61.0080100801008,56.044436640386664],[-61.0080100801008,56.03768233130711],[-60.95760957609576,56.02586229041793],[-60.93960939609396,56.01910798133841],[-60.9540095400954,56.01066509498901],[-60.96840968409684,56.008976517719105],[-61.00441004410044,56.01066509498901],[-61.17361173611735,56.03261659949749],[-61.202412024120235,56.044436640386664],[-61.21681216812168,56.057945258545715],[-61.23121231212312,56.079896763054194],[-61.23121231212312,56.10015969029277],[-61.20961209612096,56.106913999372324],[-61.20961209612096,56.098471113022896],[-61.21681216812168,56.098471113022896],[-61.21681216812168,56.09171680394337],[-61.202412024120235,56.08327391759394],[-61.18441184411844,56.08327391759394],[-61.14841148411483,56.09171680394337],[-61.152011520115195,56.10353684483255],[-61.16281162811627,56.10522542210242],[-61.170011700117,56.10015969029277],[-61.18081180811808,56.09171680394337],[-61.18801188011879,56.1086025766422],[-61.17361173611735,56.115356885721724],[-61.1340113401134,56.1187340402615],[-61.13041130411304,56.1271769266109],[-61.1340113401134,56.13899696750008],[-61.1340113401134,56.14912843111938],[-61.12321123211231,56.15419416292903],[-61.11241112411123,56.15419416292903],[-61.10521105211052,56.15757131746878],[-61.09801098010979,56.16263704927843],[-61.09801098010979,56.17445709016761],[-61.08361083610836,56.169391358357984],[-61.080010800108,56.16770278108808],[-61.0440104401044,56.160948472008556],[-61.0440104401044,56.15419416292903],[-61.06561065610656,56.1457512765796],[-61.06561065610656,56.13561981296033],[-61.05481054810548,56.125488349341026],[-61.03681036810367,56.1187340402615],[-60.96120961209611,56.10522542210242],[-60.93960939609396,56.09171680394337],[-60.9540095400954,56.090028226673496],[-60.95760957609576,56.08327391759394],[-60.96120961209611,56.07483103124454],[-60.96840968409684,56.06469956762524],[-60.975609756097555,56.057945258545715],[-60.98640986409863,56.052879526736064],[-60.99720997209971,56.04781379492641],[-61.0080100801008,56.044436640386664]]],[[[-132.5479254792548,56.30447753994858],[-132.54072540725406,56.30954327175823],[-132.5371253712537,56.31967473537753],[-132.5371253712537,56.329806198996835],[-132.529925299253,56.33993766261614],[-132.52272522725227,56.343314817155886],[-132.4291242912429,56.351757703505314],[-132.40032400324003,56.35006912623541],[-132.3931239312393,56.33993766261614],[-132.38592385923857,56.33149477626671],[-132.38232382323824,56.32136331264741],[-132.38232382323824,56.30954327175823],[-132.38592385923857,56.29772323086905],[-132.37872378723787,56.28421461271],[-132.37872378723787,56.272394571820826],[-132.38592385923857,56.26226310820152],[-132.40032400324003,56.25719737639187],[-132.38592385923857,56.24706591277257],[-132.38952389523894,56.23524587188339],[-132.40032400324003,56.223425830994216],[-132.4147241472415,56.21667152191469],[-132.47232472324723,56.204851481025514],[-132.48312483124832,56.19472001740621],[-132.4579245792458,56.18627713105681],[-132.4291242912429,56.18627713105681],[-132.4039240392404,56.19303144013634],[-132.36072360723608,56.218360099184565],[-132.3391233912339,56.21160579010504],[-132.31752317523174,56.19809717194599],[-132.29232292322922,56.187965708326686],[-132.2239222392224,56.182899976517035],[-132.19152191521914,56.17614566743751],[-132.16272162721629,56.15757131746878],[-132.14832148321483,56.142374122039854],[-132.09072090720906,56.106913999372324],[-132.0979209792098,56.10015969029277],[-132.10152101521015,56.093405381213245],[-132.10512105121052,56.08833964940359],[-132.11232112321125,56.084962494863845],[-132.13032130321304,56.093405381213245],[-132.13752137521374,56.08833964940359],[-132.1411214112141,56.07820818578432],[-132.1519215192152,56.071453876704766],[-132.16272162721629,56.07483103124454],[-132.18792187921878,56.08833964940359],[-132.20232202322023,56.09171680394337],[-132.1951219512195,56.07820818578432],[-132.1771217712177,56.063010990355366],[-132.16632166321662,56.05119094946619],[-132.17352173521735,56.04950237219629],[-132.18072180721808,56.044436640386664],[-132.16992169921699,56.035993754037236],[-132.15912159121592,56.027550867687836],[-132.1519215192152,56.01573082679866],[-132.14832148321483,56.00222220863958],[-132.1519215192152,55.99884505409983],[-132.1519215192152,55.99715647682993],[-132.15552155521556,55.9904021677504],[-132.13032130321304,55.97013924051183],[-132.1231212312123,55.94481058146357],[-132.13392133921337,55.92961338603462],[-132.16272162721629,55.93467911784427],[-132.16632166321662,55.9431220041937],[-132.1771217712177,55.965073508702176],[-132.1843218432184,55.97013924051183],[-132.19152191521914,55.965073508702176],[-132.21312213122133,55.941433426923794],[-132.2239222392224,55.93467911784427],[-132.23832238322382,55.932990540574394],[-132.24552245522455,55.93467911784427],[-132.25272252722527,55.93636769511417],[-132.27072270722707,55.924547654224966],[-132.2851228512285,55.91948192241534],[-132.3031230312303,55.91610476787557],[-132.31752317523174,55.91441619060569],[-132.33552335523353,55.91779334514544],[-132.34632346323463,55.924547654224966],[-132.36432364323645,55.94481058146357],[-132.37872378723787,55.9515648905431],[-132.41832418324182,55.95831919962262],[-132.4291242912429,55.97013924051183],[-132.41112411124112,55.99884505409983],[-132.4039240392404,56.00222220863958],[-132.3931239312393,56.00559936317936],[-132.38592385923857,56.01404224952876],[-132.38232382323824,56.022485135878185],[-132.38592385923857,56.030928022227585],[-132.4147241472415,56.03430517676736],[-132.44352443524434,56.03261659949749],[-132.46152461524616,56.035993754037236],[-132.45072450724507,56.06469956762524],[-132.55872558725588,56.071453876704766],[-132.56952569525694,56.07483103124454],[-132.58032580325803,56.08158534032407],[-132.59472594725946,56.08665107213372],[-132.60552605526055,56.084962494863845],[-132.61272612726128,56.07651960851442],[-132.61272612726128,56.066388144895114],[-132.61632616326165,56.05625668127584],[-132.6271262712627,56.05119094946619],[-132.6451264512645,56.057945258545715],[-132.67752677526775,56.09678253575302],[-132.69192691926918,56.106913999372324],[-132.70632706327063,56.1170454629916],[-132.71352713527136,56.13899696750008],[-132.71352713527136,56.15757131746878],[-132.69552695526954,56.15419416292903],[-132.69192691926918,56.17614566743751],[-132.68832688326881,56.19472001740621],[-132.68832688326881,56.21160579010504],[-132.70272702727027,56.22173725372434],[-132.68112681126811,56.22849156280387],[-132.6019260192602,56.23693444915327],[-132.5911259112591,56.24706591277257],[-132.5659256592566,56.294346076329305],[-132.5479254792548,56.30447753994858]]],[[[-132.61272612726128,56.400726444331895],[-132.62352623526235,56.387217826172844],[-132.65952659526596,56.36864347620414],[-132.6667266672667,56.35344628077519],[-132.66312663126632,56.34162623988601],[-132.63432634326344,56.30447753994858],[-132.64872648726487,56.2825260354401],[-132.6667266672667,56.2740831490907],[-132.69192691926918,56.27070599455092],[-132.73152731527315,56.25213164458222],[-132.8179281792818,56.23693444915327],[-132.86832868328685,56.24368875823282],[-132.99072990729906,56.31123184902813],[-133.03753037530376,56.329806198996835],[-133.05553055530555,56.34500339442576],[-133.04833048330482,56.36357774439449],[-132.99432994329942,56.419300794300625],[-132.96912969129693,56.43449798972955],[-132.94752947529474,56.44631803061873],[-132.9259292592926,56.45138376242838],[-132.87552875528755,56.454760916968155],[-132.85752857528576,56.45307233969825],[-132.8251282512825,56.44462945334885],[-132.80712807128072,56.44294087607898],[-132.79632796327962,56.44462945334885],[-132.75672756727568,56.454760916968155],[-132.70272702727027,56.46151522604768],[-132.65232652326523,56.44800660788863],[-132.64152641526414,56.44294087607898],[-132.63432634326344,56.4311208351898],[-132.62352623526235,56.40916933068132],[-132.61272612726128,56.400726444331895]]],[[[-132.00432004320044,56.33993766261614],[-131.99351993519934,56.32305188991731],[-131.97911979119792,56.28590318997988],[-131.93951939519394,56.23355729461352],[-131.92871928719288,56.209917212835165],[-131.92871928719288,56.19472001740621],[-131.9539195391954,56.18627713105681],[-131.97551975519755,56.191342862866435],[-131.9971199711997,56.187965708326686],[-132.00432004320044,56.15757131746878],[-132.01152011520117,56.14068554476998],[-132.0331203312033,56.128865503880775],[-132.05832058320584,56.120422617531375],[-132.07272072720727,56.1187340402615],[-132.08352083520833,56.13224265842055],[-132.09072090720906,56.14912843111938],[-132.0979209792098,56.16263704927843],[-132.11952119521195,56.16770278108808],[-132.11952119521195,56.155882740198905],[-132.13032130321304,56.15757131746878],[-132.14472144721447,56.16770278108808],[-132.15912159121592,56.177834244707384],[-132.1771217712177,56.18965428559656],[-132.24192241922418,56.20147432648574],[-132.27072270722707,56.213294367374914],[-132.30672306723068,56.23524587188339],[-132.3391233912339,56.25719737639187],[-132.35352353523535,56.27746030363048],[-132.32832328323283,56.329806198996835],[-132.3319233192332,56.34162623988601],[-132.34632346323463,56.36020058985471],[-132.34632346323463,56.370332053474016],[-132.34272342723426,56.37708636255354],[-132.33552335523353,56.38384067163307],[-132.3319233192332,56.39397213525237],[-132.3319233192332,56.40748075341142],[-132.3391233912339,56.422677948840374],[-132.349923499235,56.43787514426933],[-132.36432364323645,56.45138376242838],[-132.3751237512375,56.47164668966698],[-132.3751237512375,56.48853246236581],[-132.36072360723608,56.495286771445336],[-132.3391233912339,56.48346673055616],[-132.259922599226,56.4581380715079],[-132.23832238322382,56.44462945334885],[-132.22752227522275,56.4294322579199],[-132.20952209522096,56.39566071252224],[-132.1951219512195,56.38046351709332],[-132.1771217712177,56.36695489893424],[-132.1519215192152,56.351757703505314],[-132.1231212312123,56.343314817155886],[-132.10152101521015,56.34838054896554],[-132.079920799208,56.36188916712459],[-132.0511205112051,56.36188916712459],[-132.0259202592026,56.35344628077519],[-132.00432004320044,56.33993766261614]]],[[[-154.42534425344252,56.593224253098526],[-154.41454414544145,56.588158521288875],[-154.40734407344073,56.579715634939475],[-154.40374403744036,56.56958417132017],[-154.40014400144003,56.557764130430996],[-154.4109441094411,56.547632666811694],[-154.42534425344252,56.54087835773217],[-154.43974439744397,56.539189780462294],[-154.4469444694447,56.539189780462294],[-154.4361443614436,56.54256693500204],[-154.42534425344252,56.547632666811694],[-154.41814418144182,56.557764130430996],[-154.42894428944288,56.55607555316112],[-154.43974439744397,56.55438697589122],[-154.45054450544507,56.55100982135147],[-154.46134461344613,56.54425551227192],[-154.44334443344434,56.58140421220935],[-154.47574475744756,56.59828998490818],[-154.51534515345153,56.58984709855878],[-154.52974529745296,56.552698398621345],[-154.49734497344974,56.530746894112866],[-154.48654486544865,56.517238275953815],[-154.50454504545044,56.51048396687429],[-154.52974529745296,56.50879538960439],[-154.55854558545585,56.50204108052486],[-154.61254612546125,56.48346673055616],[-154.67014670146702,56.441252298809076],[-154.6989469894699,56.427743680650025],[-154.7169471694717,56.4108579079512],[-154.73854738547385,56.39903786706202],[-154.76734767347673,56.400726444331895],[-154.79254792547925,56.4311208351898],[-154.7709477094771,56.47164668966698],[-154.73134731347312,56.50879538960439],[-154.6989469894699,56.530746894112866],[-154.5369453694537,56.59828998490818],[-154.5009450094501,56.6050442939877],[-154.46134461344613,56.6050442939877],[-154.42534425344252,56.593224253098526]]],[[[-154.08334083340833,56.552698398621345],[-154.09054090540906,56.54594408954182],[-154.13734137341373,56.53243547138274],[-154.1409414094141,56.530746894112866],[-154.1589415894159,56.525681162303215],[-154.19134191341914,56.50710681233451],[-154.20934209342093,56.503729657794736],[-154.28134281342813,56.50710681233451],[-154.3209432094321,56.51554969868391],[-154.33534335343353,56.51892685322369],[-154.34254342543426,56.52736973957312],[-154.34974349743499,56.54425551227192],[-154.3389433894339,56.56451843951052],[-154.310143101431,56.583092789479224],[-154.27774277742776,56.59828998490818],[-154.2489424894249,56.60673287125758],[-154.22734227342272,56.60842144852748],[-154.16614166141662,56.60673287125758],[-154.1229412294123,56.61179860306723],[-154.10134101341015,56.61348718033713],[-154.08334083340833,56.60673287125758],[-154.0761407614076,56.59153567582865],[-154.0689406894069,56.579715634939475],[-154.0581405814058,56.56958417132017],[-154.04734047340474,56.557764130430996],[-154.07974079740796,56.5763384803997],[-154.09414094140942,56.57802705766957],[-154.10494104941048,56.574649903129824],[-154.10134101341015,56.566207016780396],[-154.09414094140942,56.557764130430996],[-154.08334083340833,56.552698398621345]]],[[[-132.95832958329584,56.78741063913503],[-132.9619296192962,56.79923068002421],[-132.9511295112951,56.811050720913386],[-132.92232922329222,56.82624791634234],[-132.88272882728828,56.80091925729411],[-132.87192871928718,56.797542102754335],[-132.83232832328324,56.79923068002421],[-132.8179281792818,56.797542102754335],[-132.7531275312753,56.75870482554703],[-132.74232742327422,56.74688478465785],[-132.73152731527315,56.726621857419275],[-132.709927099271,56.70973608472045],[-132.68472684726848,56.69791604383127],[-132.6739267392674,56.69285031202162],[-132.67032670326702,56.68440742567219],[-132.66312663126632,56.67934169386254],[-132.64152641526414,56.67427596205289],[-132.63072630726307,56.66921023024324],[-132.62352623526235,56.66583307570349],[-132.60912609126092,56.64725872573479],[-132.59832598325983,56.63375010757571],[-132.59472594725946,56.62699579849618],[-132.5839258392584,56.61855291214678],[-132.57672576725767,56.61348718033713],[-132.55872558725588,56.60673287125758],[-132.5479254792548,56.60335571671783],[-132.54072540725406,56.60335571671783],[-132.53352533525336,56.59997856217805],[-132.529925299253,56.58984709855878],[-132.53352533525336,56.579715634939475],[-132.54072540725406,56.5763384803997],[-132.5479254792548,56.574649903129824],[-132.55512555125551,56.5678955940503],[-132.5731257312573,56.55945270770087],[-132.61992619926198,56.55607555316112],[-132.63792637926377,56.547632666811694],[-132.64872648726487,56.53750120319239],[-132.6667266672667,56.52905831684299],[-132.68472684726848,56.52736973957312],[-132.70272702727027,56.530746894112866],[-132.71712717127173,56.54087835773217],[-132.73152731527315,56.55438697589122],[-132.74592745927458,56.55945270770087],[-132.7639276392764,56.54425551227192],[-132.73152731527315,56.520615430493564],[-132.72432724327243,56.51048396687429],[-132.74232742327422,56.50879538960439],[-132.77472774727747,56.498663925985085],[-132.79272792727926,56.49697534871521],[-132.9187291872919,56.50710681233451],[-132.93672936729368,56.517238275953815],[-132.94392943929438,56.53581262592252],[-132.95472954729547,56.59153567582865],[-132.9511295112951,56.601667139447954],[-132.94392943929438,56.61348718033713],[-132.92952929529295,56.62024148941666],[-132.88992889928898,56.628684375766056],[-132.88272882728828,56.64050441665523],[-132.88632886328864,56.650635880274535],[-132.92232922329222,56.68947315748184],[-132.9259292592926,56.70298177564089],[-132.92232922329222,56.71817897106985],[-132.9187291872919,56.7333761664988],[-132.91512915129152,56.7435076301181],[-132.9259292592926,56.757016248277154],[-132.95832958329584,56.78741063913503]]],[[[-152.9061290612906,57.16396337031887],[-152.89892898928989,57.16396337031887],[-152.88812888128882,57.158897638509245],[-152.88452884528846,57.15045475215982],[-152.90972909729098,57.131880402191115],[-152.92772927729277,57.12512609311159],[-153.0069300693007,57.11330605222241],[-153.01773017730176,57.11668320676216],[-153.02133021330212,57.12343751584169],[-153.02493024930249,57.12850324765134],[-153.03573035730358,57.126814670381464],[-153.05733057330573,57.11499462949229],[-153.08253082530825,57.09810885679346],[-153.11133111331114,57.08797739317416],[-153.1437314373144,57.096420279523585],[-153.1581315813158,57.096420279523585],[-153.19413194131943,57.082911661364506],[-153.20853208532085,57.07953450682476],[-153.21573215732158,57.0727801977452],[-153.21933219332192,57.05758300231628],[-153.21933219332192,57.033942920537925],[-153.23733237332374,57.01030283875954],[-153.27333273332732,56.998482797870366],[-153.3129331293313,56.99679422060049],[-153.34173341733418,57.00354852968002],[-153.32733327333273,57.02212287964875],[-153.32373323733236,57.02381145691862],[-153.32733327333273,57.03225434326802],[-153.33453334533345,57.0356314978078],[-153.34173341733418,57.03732007507767],[-153.34173341733418,57.05251727050663],[-153.3309333093331,57.05927157958615],[-153.320133201332,57.0643373113958],[-153.31653316533166,57.0727801977452],[-153.32733327333273,57.07953450682476],[-153.35973359733597,57.06771446593558],[-153.39213392133922,57.06096015685603],[-153.41013410134101,57.07953450682476],[-153.3957339573396,57.082911661364506],[-153.36333363333634,57.096420279523585],[-153.33813338133382,57.10148601133321],[-153.33813338133382,57.10655174314286],[-153.34533345333455,57.11161747495251],[-153.35253352533525,57.11330605222241],[-153.36333363333634,57.11161747495251],[-153.38133381333813,57.10655174314286],[-153.39213392133922,57.10655174314286],[-153.37773377733777,57.118371784032036],[-153.34173341733418,57.140323288540515],[-153.30933309333093,57.17071767939842],[-153.29853298532984,57.17409483393817],[-153.29133291332914,57.17916056574782],[-153.26973269732696,57.197734915716524],[-153.2589325893259,57.20617780206595],[-153.24453244532447,57.2112435338756],[-153.230132301323,57.2112435338756],[-153.22293222932228,57.202800647526175],[-153.22653226532265,57.18760345209725],[-153.1869318693187,57.18422629755747],[-153.17973179731797,57.17578341120807],[-153.21213212132122,57.13356897946099],[-153.15453154531545,57.16396337031887],[-153.1221312213122,57.17071767939842],[-153.10053100531005,57.17916056574782],[-153.08973089730898,57.180849143017696],[-153.0789307893079,57.17916056574782],[-153.0681306813068,57.17071767939842],[-153.05733057330573,57.16902910212852],[-152.9781297812978,57.17578341120807],[-152.9529295292953,57.17409483393817],[-152.9349293492935,57.162274793048994],[-152.92052920529204,57.15720906123934],[-152.9061290612906,57.16396337031887]]],[[[-135.60075600756008,57.172406256668296],[-135.59715597155972,57.153831906699594],[-135.57915579155792,57.14876617488994],[-135.5611556115561,57.145389020350166],[-135.54675546755468,57.140323288540515],[-135.56475564755647,57.11161747495251],[-135.60075600756008,57.0356314978078],[-135.62955629556296,57.01030283875954],[-135.64035640356403,57.00861426148967],[-135.67275672756728,57.011991416029446],[-135.68715687156873,57.006925684219794],[-135.6979569795698,57.00185995241014],[-135.70875708757086,56.998482797870366],[-135.8419584195842,56.99003991152097],[-135.83115831158312,57.05082869323675],[-135.8239582395824,57.07953450682476],[-135.8059580595806,57.09979743406333],[-135.79155791557915,57.10655174314286],[-135.76275762757626,57.11499462949229],[-135.72675726757268,57.14201186581042],[-135.7159571595716,57.153831906699594],[-135.71235712357122,57.16902910212852],[-135.78075780757808,57.16565194758877],[-135.80955809558094,57.172406256668296],[-135.82035820358203,57.19604633844665],[-135.81675816758167,57.207866379335826],[-135.79875798757988,57.22812930657443],[-135.79875798757988,57.23657219292383],[-135.8131581315813,57.23826077019373],[-135.8419584195842,57.22644072930453],[-135.85635856358564,57.22306357476478],[-135.83835838358382,57.24501507927326],[-135.83835838358382,57.25514654289256],[-135.84915849158492,57.265278006511835],[-135.8239582395824,57.283852356480566],[-135.8347583475835,57.305803860989016],[-135.8419584195842,57.32437821095775],[-135.8239582395824,57.332821097307146],[-135.72315723157232,57.3294439427674],[-135.6151561515615,57.283852356480566],[-135.59715597155972,57.27203231559136],[-135.56835568355683,57.24163792473348],[-135.5539555395554,57.229817883844305],[-135.5719557195572,57.22306357476478],[-135.589955899559,57.224752152034654],[-135.62955629556296,57.23657219292383],[-135.6151561515615,57.22306357476478],[-135.60795607956078,57.2095549566057],[-135.60075600756008,57.1926691839069],[-135.60075600756008,57.172406256668296]]],[[[-61.61281612816127,57.41556138353141],[-61.64881648816488,57.40036418810246],[-61.68121681216812,57.40036418810246],[-61.85041850418504,57.41556138353141],[-61.89001890018899,57.42738142442059],[-61.90081900819008,57.44933292892907],[-61.89001890018899,57.45439866073872],[-61.83241832418324,57.46959585616764],[-61.79641796417964,57.48310447432672],[-61.7820178201782,57.493235937946],[-61.77121771217712,57.5033674015653],[-61.75321753217531,57.528696060613555],[-61.742417424174235,57.53545036969308],[-61.72441724417244,57.53882752423283],[-61.67761677616775,57.537138946962955],[-61.65961659616596,57.533761792423206],[-61.64881648816488,57.523630328803904],[-61.641616416164155,57.521941751534],[-61.63801638016379,57.52025317426413],[-61.63441634416344,57.51687601972438],[-61.63441634416344,57.51181028791473],[-61.64881648816488,57.510121710644825],[-61.666816668166675,57.506744556105076],[-61.69561695616956,57.49830166975565],[-61.68481684816848,57.493235937946],[-61.6740167401674,57.48985878340625],[-61.65961659616596,57.48985878340625],[-61.64881648816488,57.48985878340625],[-61.64881648816488,57.48310447432672],[-61.6560165601656,57.479727319786946],[-61.67041670416704,57.46790727889777],[-61.68121681216812,57.46284154708812],[-61.69561695616956,57.461152969818244],[-61.77121771217712,57.46284154708812],[-61.78921789217891,57.45946439254834],[-61.80721807218072,57.45102150619894],[-61.82521825218252,57.43582431076999],[-61.81441814418143,57.43075857896034],[-61.79641796417964,57.42907000169046],[-61.7820178201782,57.43075857896034],[-61.77841778417783,57.439201465309765],[-61.767617676176755,57.444267197119416],[-61.74961749617496,57.444267197119416],[-61.666816668166675,57.43582431076999],[-61.61281612816127,57.42231569261094],[-61.61281612816127,57.41556138353141]]],[[[-61.85401854018539,57.586107687789564],[-61.792817928179275,57.55740187420156],[-61.77841778417783,57.53545036969308],[-61.792817928179275,57.506744556105076],[-61.818018180181795,57.4949245152159],[-61.91521915219151,57.45946439254834],[-61.92961929619295,57.45608723800859],[-61.9620196201962,57.474661587977295],[-61.9980199801998,57.49830166975565],[-62.01602016020159,57.51856459699425],[-62.019620196201956,57.54727041058226],[-61.9980199801998,57.572599069630485],[-61.96561965619655,57.58948484232931],[-61.93681936819368,57.59286199686909],[-61.951219512195124,57.57091049236061],[-61.95481954819547,57.559090451471434],[-61.94041940419403,57.55233614239191],[-61.926019260192604,57.55571329693166],[-61.9080190801908,57.58441911051966],[-61.893618936189355,57.59286199686909],[-61.88641886418864,57.58779626505944],[-61.87561875618756,57.586107687789564],[-61.85401854018539,57.586107687789564]]],[[[-136.38916389163893,57.964348996243274],[-136.37836378363784,57.93564318265527],[-136.39276392763927,57.898494482717865],[-136.42156421564215,57.86472293732021],[-136.45036450364503,57.84614858735148],[-136.4539645396454,57.86303436005031],[-136.46476464764646,57.87316582366961],[-136.4719647196472,57.88160871001904],[-136.46476464764646,57.89511732817809],[-136.4719647196472,57.898494482717865],[-136.48276482764828,57.901871637257614],[-136.49356493564935,57.903560214527516],[-136.50436504365044,57.901871637257614],[-136.50076500765007,57.91031452360704],[-136.49356493564935,57.91706883268657],[-136.48636486364865,57.92382314176609],[-136.47916479164792,57.928888873575744],[-136.47916479164792,57.93564318265527],[-136.4971649716497,57.939020337195046],[-136.51156511565114,57.93226602811552],[-136.52236522365223,57.92551171903597],[-136.54036540365405,57.92213456449622],[-136.5511655116551,57.92551171903597],[-136.5511655116551,57.933954605385395],[-136.5439654396544,57.942397491734795],[-136.53316533165332,57.94915180081435],[-136.54756547565475,57.9626604189734],[-136.54036540365405,57.97785761440235],[-136.52956529565296,57.99305480983128],[-136.51156511565114,58.00318627345058],[-136.52236522365223,58.01331773706988],[-136.54756547565475,58.01162915980001],[-136.56196561965618,58.01669489160963],[-136.55476554765548,58.023449200689186],[-136.5511655116551,58.031892087038585],[-136.54756547565475,58.04033497338801],[-136.54756547565475,58.06059790062659],[-136.5439654396544,58.06566363243624],[-136.5151651516515,58.085926559674846],[-136.4971649716497,58.094369446024245],[-136.47556475564755,58.09774660056402],[-136.45756457564576,58.09268086875437],[-136.43956439564397,58.072417941515766],[-136.36036360363602,58.031892087038585],[-136.3387633876339,58.01500631433976],[-136.33516335163353,58.00656342799036],[-136.3711637116371,57.999809118910804],[-136.37836378363784,57.98967765529153],[-136.38916389163893,57.964348996243274]]],[[[-134.59634596345964,58.23789851396427],[-134.62154621546216,58.246341400313696],[-134.65034650346502,58.268292904822175],[-134.67554675546756,58.29193298660053],[-134.67914679146793,58.308818759299356],[-134.6611466114661,58.31895022291866],[-134.62154621546216,58.32401595472828],[-134.60354603546034,58.32908168653793],[-134.58554585545855,58.34090172742711],[-134.5639456394564,58.344278881966886],[-134.4811448114481,58.334147418347584],[-134.44514445144452,58.31557306837888],[-134.38034380343802,58.271670059361924],[-134.27954279542794,58.22101274126544],[-134.2579425794258,58.19568408221721],[-134.47034470344704,58.22607847307509],[-134.51354513545135,58.22270131853534],[-134.5351453514535,58.22438989580522],[-134.57834578345785,58.23452135942452],[-134.59634596345964,58.23789851396427]]],[[[-152.64332643326432,58.518202340764816],[-152.63972639726398,58.52833380438409],[-152.64332643326432,58.53677669073352],[-152.6541265412654,58.54353099981304],[-152.66492664926648,58.54690815435282],[-152.59292592925928,58.55535104070222],[-152.58212582125822,58.562105349781746],[-152.57132571325712,58.580679699750476],[-152.54972549725497,58.59081116336975],[-152.50652506525066,58.60094262698905],[-152.49572495724956,58.60431978152883],[-152.4741247412474,58.62120555422766],[-152.45252452524525,58.62795986330718],[-152.43452434524346,58.62795986330718],[-152.40932409324094,58.63133701784696],[-152.39132391323912,58.63640274965658],[-152.36972369723696,58.638091326926485],[-152.3481234812348,58.62795986330718],[-152.35172351723517,58.62120555422766],[-152.35172351723517,58.61276266787823],[-152.3481234812348,58.606008358798704],[-152.34452344523444,58.60094262698905],[-152.36972369723696,58.575613967940825],[-152.37332373323733,58.56379392705165],[-152.36252362523624,58.55197388616247],[-152.45612456124562,58.50300514533586],[-152.48132481324814,58.48105364082738],[-152.5029250292503,58.47429933174786],[-152.5281252812528,58.47598790901773],[-152.6289262892629,58.508070877145514],[-152.64332643326432,58.518202340764816]]],[[[-160.94860948609485,58.73771738584955],[-160.9090090900909,58.74616027219898],[-160.85860858608586,58.74784884946885],[-160.83340833408334,58.75629173581825],[-160.80820808208082,58.76473462216768],[-160.78660786607867,58.77317750851708],[-160.76860768607685,58.77655466305686],[-160.739807398074,58.798506167565336],[-160.7110071100711,58.80357189937499],[-160.70380703807038,58.81370336299429],[-160.68940689406895,58.81876909480391],[-160.6858068580686,58.81032620845451],[-160.70020700207002,58.793440435755684],[-160.72180721807217,58.766423199437554],[-160.7722077220772,58.71576588134107],[-160.8010080100801,58.68030575867354],[-160.82260822608225,58.65497709962531],[-160.8442084420844,58.63471417238671],[-160.86220862208623,58.61445124514813],[-160.86940869408693,58.59249974063965],[-160.8982089820898,58.570548236131174],[-160.9378093780938,58.558728195242],[-160.96660966609664,58.55028530889257],[-161.02061020610205,58.558728195242],[-161.04221042210423,58.558728195242],[-161.0530105301053,58.55028530889257],[-161.07461074610745,58.54690815435282],[-161.08541085410855,58.553662463432346],[-161.07821078210782,58.57223681340105],[-161.08181081810818,58.580679699750476],[-161.0890108901089,58.589122586099876],[-161.07461074610745,58.60094262698905],[-161.07821078210782,58.611074090608355],[-161.07821078210782,58.62964844057706],[-161.11061110611107,58.651599945085536],[-161.13941139411395,58.668485717784364],[-161.17181171811717,58.69043722229284],[-161.1610116101161,58.69043722229284],[-161.07821078210782,58.63977990419636],[-161.0638106381064,58.67692860413379],[-161.06021060210603,58.700568685912145],[-161.04221042210423,58.70225726318202],[-161.00621006210062,58.71745445861097],[-160.97380973809737,58.730963076770024],[-160.94860948609485,58.73771738584955]]],[[[-69.10089100891008,59.13115588973221],[-69.08289082890829,59.11258153976351],[-69.06489064890648,59.09400718979481],[-69.06129061290612,59.07712141709598],[-69.10089100891008,59.06698995347668],[-69.08289082890829,59.06192422166703],[-69.12249122491224,59.0467270262381],[-69.14769147691476,59.038284139888674],[-69.15489154891549,59.0264640989995],[-69.17649176491764,59.0180212126501],[-69.17649176491764,59.011266903570544],[-69.2160921609216,58.994381130871716],[-69.23049230492305,58.980872512712665],[-69.21969219692197,58.96398674001384],[-69.23769237692376,58.953855276394535],[-69.25569255692557,58.96060958547406],[-69.29529295292953,58.98424966725244],[-69.30249302493024,58.96398674001384],[-69.32049320493205,58.950478121854786],[-69.3420934209342,58.94878954458488],[-69.36369363693636,58.96398674001384],[-69.35289352893528,58.97411820363314],[-69.33129331293313,58.99269255360184],[-69.3240932409324,59.00451259449102],[-69.32049320493205,59.00957832630067],[-69.3240932409324,59.02815267626937],[-69.32049320493205,59.03321840807902],[-69.31329313293132,59.0365955626188],[-69.30249302493024,59.04166129442845],[-69.29529295292953,59.06023564439715],[-69.2880928809288,59.065301376206804],[-69.28449284492845,59.070367108016455],[-69.29889298892988,59.083875726175506],[-69.33489334893349,59.114270117033385],[-69.35289352893528,59.141287353351515],[-69.33849338493384,59.14635308516117],[-69.30969309693097,59.14466450789129],[-69.29529295292953,59.15141881697082],[-69.23409234092341,59.15310739424069],[-69.1980919809198,59.14804166243104],[-69.16569165691656,59.14466450789129],[-69.15129151291512,59.13453304427199],[-69.11529115291152,59.14297593062142],[-69.10089100891008,59.13115588973221]]],[[[-144.34164341643418,59.98388741102298],[-144.30924309243093,59.98895314283263],[-144.24444244442444,60.00752749280136],[-144.20844208442085,60.01259322461098],[-144.2120421204212,60.00246176099171],[-144.21924219242192,59.99570745191215],[-144.230042300423,59.992330297372405],[-144.2408424084241,59.99064172010253],[-144.37764377643776,59.93154151565662],[-144.40284402844028,59.92647578384697],[-144.41364413644135,59.91972147476744],[-144.4172441724417,59.91127858841804],[-144.4280442804428,59.902835702068614],[-144.5540455404554,59.8268497249239],[-144.57924579245793,59.818406838574475],[-144.60444604446045,59.813341106764824],[-144.5540455404554,59.872441311210736],[-144.53244532445325,59.88257277483004],[-144.5108451084511,59.88932708390956],[-144.44244442444423,59.93660724746627],[-144.3920439204392,59.956870174704875],[-144.34164341643418,59.98388741102298]]],[[[-147.96327963279634,60.07338200632677],[-148.02088020880208,60.07507058359664],[-148.0460804608046,60.07000485178702],[-148.06048060480606,60.05311907908819],[-148.04968049680497,60.054807656358065],[-148.03168031680318,60.05311907908819],[-148.09288092880928,60.01765895642063],[-148.12528125281253,60.00415033826158],[-148.13968139681396,60.01259322461098],[-148.13248132481326,60.03116757457971],[-148.1108811088111,60.05649623362794],[-148.08208082080822,60.07844773813642],[-148.0460804608046,60.09195635629547],[-148.01728017280172,60.1105307062642],[-148.0028800288003,60.11559643807385],[-147.99927999279993,60.120662169883474],[-147.9740797407974,60.147679406201604],[-147.97047970479704,60.152745138011255],[-147.96687966879668,60.15612229255103],[-147.95967959679598,60.144302251661856],[-147.95247952479525,60.1291050562329],[-147.95247952479525,60.12235074715338],[-147.91647916479164,60.125727901693125],[-147.89847898478985,60.12235074715338],[-147.88047880478805,60.10715355172442],[-147.89487894878948,60.095333510835246],[-147.920079200792,60.085202047215944],[-147.96327963279634,60.07338200632677]]],[[[-148.15768157681578,60.04298761546889],[-148.16848168481684,60.03792188365924],[-148.25848258482586,60.022724688230284],[-148.2872828728287,60.024413265500186],[-148.31248312483126,60.032856151849586],[-148.2872828728287,60.04298761546889],[-148.21888218882188,60.03961046092911],[-148.190081900819,60.04636477000864],[-148.21168211682118,60.054807656358065],[-148.2980829808298,60.05311907908819],[-148.2980829808298,60.059873388167716],[-148.27288272882728,60.06662769724724],[-148.21528215282152,60.07338200632677],[-148.190081900819,60.08689062448585],[-148.26208262082622,60.08857920175572],[-148.2872828728287,60.09364493356537],[-148.27288272882728,60.103776397184646],[-148.13968139681396,60.147679406201604],[-148.1180811808118,60.15105656074138],[-148.11448114481144,60.1291050562329],[-148.10008100081,60.13585936531243],[-148.08928089280892,60.14599082893173],[-148.07848078480785,60.15949944709078],[-148.06768067680676,60.18651668340891],[-148.06048060480606,60.19495956975834],[-148.04968049680497,60.19495956975834],[-148.04248042480424,60.18651668340891],[-148.05328053280533,60.16963091071008],[-148.08208082080822,60.13417078804255],[-148.08568085680855,60.1189735926136],[-148.08928089280892,60.1003992426449],[-148.10008100081,60.08351346994607],[-148.11448114481144,60.07169342905689],[-148.13248132481326,60.06662769724724],[-148.1360813608136,60.063250542707465],[-148.15768157681578,60.04298761546889]]],[[[-146.18846188461885,60.402654573953896],[-146.0948609486095,60.411097460303324],[-146.08046080460804,60.402654573953896],[-146.0840608406084,60.402654573953896],[-146.09126091260913,60.40096599668402],[-146.0948609486095,60.397588842144245],[-146.09846098460986,60.39590026487437],[-146.18486184861848,60.384080223985194],[-146.18846188461885,60.38239164671529],[-146.1920619206192,60.37732591490567],[-146.19566195661957,60.370571605826115],[-146.19566195661957,60.36381729674659],[-146.19566195661957,60.36044014220684],[-146.22446224462243,60.35199725585741],[-146.25326253262534,60.35030867858754],[-146.30366303663038,60.35537441039719],[-146.33246332463324,60.35199725585741],[-146.49446494464945,60.30302851503083],[-146.55566555665555,60.26081408328375],[-146.5772657726577,60.250682619664445],[-146.5988659886599,60.245616887854794],[-146.62046620466205,60.24899404239457],[-146.64926649266494,60.25743692874397],[-146.6708667086671,60.27094554690305],[-146.68166681666816,60.286142742332004],[-146.65646656466564,60.30640566957058],[-146.4908649086491,60.36044014220684],[-146.50526505265051,60.370571605826115],[-146.56646566465665,60.36381729674659],[-146.59166591665917,60.36888302855624],[-146.5772657726577,60.375637337635766],[-146.5988659886599,60.375637337635766],[-146.6168661686617,60.370571605826115],[-146.64926649266494,60.35537441039719],[-146.61326613266132,60.35537441039719],[-146.65646656466564,60.340177214968236],[-146.69966699666998,60.35537441039719],[-146.72126721267213,60.38576880125507],[-146.6960669606696,60.4229175011925],[-146.660066600666,60.429671810272026],[-146.65646656466564,60.43473754208168],[-146.6528665286653,60.4414918511612],[-146.64566645666457,60.451623314780505],[-146.63486634866348,60.465131932939556],[-146.61326613266132,60.47864055109861],[-146.5880658806588,60.48370628290826],[-146.53046530465303,60.48539486017816],[-146.53046530465303,60.47864055109861],[-146.53766537665376,60.47526339655886],[-146.53766537665376,60.47188624201908],[-146.54126541265413,60.46850908747933],[-146.5448654486545,60.465131932939556],[-146.4440644406444,60.465131932939556],[-146.42246422464225,60.46850908747933],[-146.4008640086401,60.473574819288984],[-146.37926379263791,60.47526339655886],[-146.35406354063542,60.47188624201908],[-146.36126361263612,60.45331189205038],[-146.36126361263612,60.42629465573225],[-146.36846368463685,60.40940888303342],[-146.3252632526325,60.411097460303324],[-146.2388623886239,60.4313603875419],[-146.15246152461526,60.438114696621426],[-146.13086130861308,60.43642611935155],[-146.120061200612,60.42629465573225],[-146.13086130861308,60.4229175011925],[-146.1740617406174,60.40940888303342],[-146.18846188461885,60.402654573953896]]],[[[-147.77247772477725,60.40940888303342],[-147.78687786877867,60.411097460303324],[-147.8228782287823,60.39927741941412],[-147.84087840878408,60.39590026487437],[-147.81207812078122,60.446557582970854],[-147.7940779407794,60.47188624201908],[-147.77247772477725,60.48539486017816],[-147.77247772477725,60.45331189205038],[-147.7760777607776,60.4414918511612],[-147.78687786877867,60.4313603875419],[-147.72927729277293,60.4414918511612],[-147.71127711277114,60.45331189205038],[-147.7220772207722,60.47526339655886],[-147.7220772207722,60.49214916925769],[-147.70767707677078,60.50734636468661],[-147.68967689676896,60.50396921014686],[-147.68247682476823,60.47188624201908],[-147.65727657276574,60.48032912836851],[-147.64647646476465,60.48370628290826],[-147.63567635676355,60.482017705638384],[-147.62847628476285,60.47526339655886],[-147.62847628476285,60.46682051020943],[-147.63567635676355,60.460066201129905],[-147.64287642876428,60.45668904659016],[-147.64287642876428,60.4499347375106],[-147.6320763207632,60.44824616024073],[-147.6140761407614,60.43642611935155],[-147.62847628476285,60.42629465573225],[-147.63567635676355,60.4229175011925],[-147.6608766087661,60.4212289239226],[-147.71127711277114,60.40096599668402],[-147.73647736477363,60.39590026487437],[-147.71487714877148,60.384080223985194],[-147.69327693276932,60.384080223985194],[-147.67167671676717,60.392523110334594],[-147.650076500765,60.39590026487437],[-147.6248762487625,60.389145955794845],[-147.6320763207632,60.375637337635766],[-147.6608766087661,60.34693152404776],[-147.69327693276932,60.30302851503083],[-147.740077400774,60.25912550601387],[-147.740077400774,60.250682619664445],[-147.71127711277114,60.250682619664445],[-147.7220772207722,60.22197680607644],[-147.740077400774,60.193270992488436],[-147.76527765277652,60.174696642519734],[-147.79767797677977,60.16963091071008],[-147.79767797677977,60.188205260678785],[-147.81207812078122,60.18989383794869],[-147.83007830078301,60.18651668340891],[-147.84087840878408,60.193270992488436],[-147.7940779407794,60.23886257877527],[-147.79767797677977,60.245616887854794],[-147.8228782287823,60.23210826969574],[-147.85167851678517,60.228731115155966],[-147.88047880478805,60.23041969242587],[-147.90927909279094,60.23886257877527],[-147.9020790207902,60.25237119693435],[-147.89487894878948,60.26081408328375],[-147.8660786607866,60.272634124172924],[-147.8768787687877,60.277699855982576],[-147.89847898478985,60.286142742332004],[-147.90927909279094,60.29289705141153],[-147.86967869678696,60.29289705141153],[-147.8228782287823,60.299651360491055],[-147.77967779677797,60.31484855592001],[-147.75807758077582,60.34186579223811],[-147.7832778327783,60.33848863769836],[-147.83367833678335,60.33004575134893],[-147.86247862478626,60.326668596809185],[-147.87327873278733,60.32835717407906],[-147.87327873278733,60.33342290588871],[-147.86967869678696,60.33848863769836],[-147.86247862478626,60.34524294677789],[-147.8480784807848,60.34693152404776],[-147.81927819278192,60.34355436950801],[-147.8048780487805,60.34693152404776],[-147.84447844478444,60.36550587401649],[-147.8588785887859,60.37732591490567],[-147.8480784807848,60.38239164671529],[-147.81927819278192,60.38239164671529],[-147.80127801278013,60.38576880125507],[-147.78687786877867,60.394211687604496],[-147.77247772477725,60.40940888303342]]],[[[70.13050130501307,66.55583014540645],[70.10530105301055,66.55751872267632],[70.08370083700837,66.56258445448597],[70.06210062100621,66.56258445448597],[70.04050040500405,66.5507644135968],[70.06570065700657,66.5524529908667],[70.08730087300873,66.54907583632692],[70.09810098100982,66.53894437270762],[70.0909009090091,66.52205860000879],[70.08370083700837,66.52037002273892],[70.05490054900551,66.50517282730996],[70.04410044100442,66.50179567277021],[69.95049950499507,66.50010709550031],[69.89649896498966,66.49504136369066],[69.88929889298893,66.48997563188104],[69.88569885698857,66.48153274553161],[69.87849878498787,66.47646701372196],[69.87129871298714,66.47815559099183],[69.86049860498605,66.48153274553161],[69.83529835298353,66.48828705461113],[69.82449824498246,66.49335278642079],[69.74529745297454,66.52881290908832],[69.54369543695438,66.59129026807398],[69.53649536495365,66.60142173169328],[69.54369543695438,66.60479888623306],[69.55449554495547,66.60311030896315],[69.56529565295654,66.60479888623306],[69.57609576095763,66.61155319531258],[69.57249572495726,66.63181612255119],[69.57609576095763,66.63857043163071],[69.54729547295474,66.65883335886929],[69.50409504095043,66.7078020996959],[69.42489424894251,66.76859088141168],[69.40329403294035,66.77534519049121],[69.37449374493747,66.77872234503096],[69.28089280892809,66.76183657233213],[69.29169291692918,66.75170510871286],[69.29529295292954,66.74832795417308],[69.25569255692557,66.7466393769032],[69.20169201692019,66.75677084052248],[69.15129151291515,66.77534519049121],[69.12969129691297,66.79729669499969],[69.14769147691479,66.80911673588886],[69.17649176491767,66.81080531315874],[69.28089280892809,66.79391954045991],[69.30249302493027,66.79391954045991],[69.42489424894251,66.80742815861896],[69.47169471694718,66.79729669499969],[69.50049500495007,66.75170510871286],[69.51849518495186,66.73819649055378],[69.57609576095763,66.70949067696577],[69.60489604896051,66.69935921334647],[69.63729637296373,66.69429348153685],[69.66609666096662,66.69429348153685],[69.64449644496446,66.70611352242602],[69.57609576095763,66.73144218147425],[69.56169561695617,66.73988506782368],[69.54369543695438,66.75170510871286],[69.54009540095402,66.76352514960203],[69.56169561695617,66.76859088141168],[69.66969669696698,66.76183657233213],[69.72729727297275,66.7652137268719],[69.75609756097563,66.76183657233213],[69.78129781297815,66.74832795417308],[69.76329763297633,66.74157364509355],[69.75249752497527,66.74157364509355],[69.77409774097742,66.73481933601403],[69.85329853298535,66.72806502693447],[69.87849878498787,66.72975360420438],[69.8928989289893,66.72806502693447],[69.90009900099002,66.72299929512485],[69.91449914499145,66.71117925423565],[69.92529925299255,66.7078020996959],[69.9648996489965,66.70611352242602],[70.0081000810008,66.71117925423565],[70.05130051300515,66.70949067696577],[70.08730087300873,66.69091632699707],[70.08730087300873,66.68247344064764],[70.07650076500767,66.65207904978976],[70.07650076500767,66.64870189524999],[70.08010080100803,66.64532474071024],[70.08010080100803,66.63857043163071],[70.07650076500767,66.63181612255119],[70.06570065700657,66.63012754528128],[70.05130051300515,66.63181612255119],[70.03690036900369,66.63181612255119],[70.02610026100263,66.62506181347163],[70.04050040500405,66.6081760407728],[70.11250112501125,66.56933876356553],[70.13050130501307,66.55583014540645]]],[[[-107.87687876878769,66.94251434020958],[-107.8660786607866,66.96953157652771],[-107.84087840878408,66.9999259673856],[-107.81207812078121,67.01512316281455],[-107.7940779407794,66.99486023557594],[-107.79767797677977,66.97290873106749],[-107.81927819278192,66.91887425843123],[-107.830078300783,66.9019884857324],[-107.85527855278552,66.88679129030345],[-107.88767887678877,66.86652836306487],[-107.92367923679237,66.8547083221757],[-107.94887948879489,66.85808547671544],[-107.90207902079021,66.8918570221131],[-107.8840788407884,66.91380852662158],[-107.87687876878769,66.94251434020958]]],[[[-108.0460804608046,66.98135161741689],[-107.9920799207992,66.95602295836866],[-107.96687966879668,66.94926864928911],[-107.93807938079381,66.95433438109876],[-107.96687966879668,66.93576003113006],[-107.97407974079741,66.93069429932041],[-107.97767977679777,66.92731714478063],[-107.98487984879849,66.92562856751076],[-107.99567995679956,66.92731714478063],[-107.99927999279993,66.92562856751076],[-107.99927999279993,66.9205628357011],[-107.99927999279993,66.91549710389145],[-107.99927999279993,66.9121199493517],[-108.02088020880208,66.90367706300228],[-108.03528035280353,66.9019884857324],[-108.04968049680497,66.91043137208183],[-108.05328053280533,66.93069429932041],[-108.09648096480964,66.97459730833737],[-108.09648096480964,66.98304019468677],[-108.09648096480964,67.0016145446555],[-108.10368103681037,67.02187747189407],[-108.11448114481145,67.03707466732303],[-108.10008100081001,67.02525462643385],[-108.07848078480785,67.01343458554467],[-108.06408064080641,67.0016145446555],[-108.06048060480605,66.98810592649642],[-108.0460804608046,66.98135161741689]]],[[[-108.00648006480064,67.3714129667598],[-108.03888038880389,67.37310154402968],[-108.08568085680857,67.38323300764898],[-108.12888128881289,67.39674162580803],[-108.15048150481505,67.41362739850686],[-108.1360813608136,67.42207028485626],[-108.12888128881289,67.42207028485626],[-108.1180811808118,67.41700455304664],[-108.08928089280893,67.41025024396708],[-108.03888038880389,67.39167589399838],[-108.04248042480424,67.39674162580803],[-108.04248042480424,67.40011878034781],[-108.04248042480424,67.40518451215746],[-108.03168031680316,67.41362739850686],[-108.0820808208082,67.42713601666591],[-108.05328053280533,67.44571036663464],[-107.97407974079741,67.45753040752382],[-107.94887948879489,67.47441618022265],[-107.97047970479704,67.48117048930217],[-107.94167941679416,67.48285906657205],[-107.920079200792,67.4879247983817],[-107.90207902079021,67.48623622111182],[-107.88047880478804,67.46766187114312],[-107.88767887678877,67.45246467571417],[-107.88767887678877,67.42207028485626],[-107.88767887678877,67.40687308942734],[-107.89847898478985,67.38829873945863],[-107.92727927279273,67.3714129667598],[-107.93807938079381,67.35790434860073],[-107.920079200792,67.34777288498142],[-107.90927909279092,67.3308871122826],[-107.90567905679056,67.31737849412355],[-107.93087930879308,67.31062418504402],[-107.95247952479525,67.31568991685367],[-108.01368013680137,67.35790434860073],[-108.010080100801,67.3612815031405],[-108.010080100801,67.36465865768025],[-108.010080100801,67.36803581222003],[-108.00648006480064,67.3714129667598]]],[[[-108.12888128881289,67.6449624844808],[-108.12168121681216,67.66691398898928],[-108.11088110881109,67.67535687533868],[-108.09648096480964,67.67704545260855],[-108.02448024480245,67.66691398898928],[-108.00288002880029,67.66015967990973],[-107.98487984879849,67.6449624844808],[-107.96327963279633,67.59768232092406],[-107.95247952479525,67.59092801184454],[-107.94527945279452,67.58417370276501],[-107.93447934479344,67.57235366187584],[-107.92727927279273,67.55715646644688],[-107.92367923679237,67.54871358009748],[-107.93447934479344,67.53689353920831],[-107.95247952479525,67.5352049619384],[-107.97047970479704,67.54195927101796],[-107.97767977679777,67.55377931190714],[-107.9920799207992,67.54871358009748],[-108.04968049680497,67.54533642555771],[-108.07128071280712,67.54027069374806],[-108.07128071280712,67.53182780739866],[-108.06048060480605,67.526762075589],[-108.04248042480424,67.52000776650948],[-108.03528035280353,67.50987630289018],[-108.03528035280353,67.50481057108053],[-108.03888038880389,67.50143341654075],[-108.06048060480605,67.48117048930217],[-108.08568085680857,67.469350448413],[-108.10728107281072,67.46766187114312],[-108.11448114481145,67.48454764384192],[-108.1180811808118,67.50143341654075],[-108.12888128881289,67.51156488016005],[-108.1360813608136,67.51831918923958],[-108.14328143281432,67.53013923012875],[-108.1360813608136,67.55040215736736],[-108.1180811808118,67.55715646644688],[-108.09288092880928,67.55884504371679],[-108.07488074880749,67.56391077552641],[-108.10728107281072,67.57404223914571],[-108.1180811808118,67.58248512549514],[-108.12888128881289,67.59768232092406],[-108.13248132481324,67.61287951635302],[-108.13248132481324,67.6246995572422],[-108.12888128881289,67.6449624844808]]],[[[14.027540275402771,68.26298176525785],[14.088740887408875,68.28324469249645],[14.124741247412487,68.27480180614702],[14.157141571415707,68.25453887890845],[14.11034110341103,68.20725871535174],[14.063540635406355,68.20050440627219],[14.052740527405291,68.19037294265291],[14.041940419404199,68.18361863357336],[14.03474034740347,68.18024147903361],[13.948339483394847,68.17686432449383],[13.937539375393754,68.17517574722396],[13.923139231392327,68.17011001541431],[13.90873908739087,68.16842143814443],[13.90153901539017,68.17179859268418],[13.890738907389078,68.17855290176374],[13.87633876338765,68.18024147903361],[13.869138691386922,68.17686432449383],[13.865538655386558,68.17011001541431],[13.854738547385494,68.16335570633478],[13.840338403384038,68.159978551795],[13.77553775537757,68.159978551795],[13.786337863378634,68.14646993363596],[13.82593825938261,68.14309277909618],[13.843938439384402,68.1329613154769],[13.847538475384766,68.1211412745877],[13.840338403384038,68.1126983882383],[13.82593825938261,68.10594407915877],[13.77553775537757,68.102566924619],[13.761137611376114,68.10425550188887],[13.753937539375414,68.10932123369852],[13.75033750337505,68.1228298518576],[13.743137431374322,68.12620700639735],[13.721537215372166,68.1228298518576],[13.714337143371438,68.11607554277808],[13.70713707137071,68.10594407915877],[13.69993699937001,68.09750119280935],[13.70713707137071,68.08568115192017],[13.710737107371074,68.08061542011052],[13.717937179371802,68.07723826557077],[13.69993699937001,68.07048395649124],[13.68193681936819,68.07048395649124],[13.663936639366398,68.07217253376112],[13.642336423364242,68.07048395649124],[13.64953649536497,68.07723826557077],[13.642336423364242,68.07892684284064],[13.63153631536315,68.0839925746503],[13.62433624336245,68.08568115192017],[13.62433624336245,68.10763265642865],[13.595535955359566,68.1211412745877],[13.559535595355953,68.11945269731783],[13.541535415354161,68.10087834734912],[13.541535415354161,68.09581261553947],[13.54873548735489,68.09074688372982],[13.552335523355254,68.08736972919004],[13.559535595355953,68.08568115192017],[13.563135631356317,68.08230399738042],[13.559535595355953,68.07554968830087],[13.54873548735489,68.07048395649124],[13.537935379353797,68.05528676106229],[13.527135271352734,68.04346672017311],[13.512735127351277,68.04008956563334],[13.455134551345509,68.07048395649124],[13.483934839348393,68.10763265642865],[13.588335883358837,68.159978551795],[13.563135631356317,68.16504428360466],[13.509135091350913,68.13633847001665],[13.480334803348029,68.1329613154769],[13.480334803348029,68.13971562455643],[13.491134911349121,68.1414042018263],[13.501935019350213,68.14478135636608],[13.509135091350913,68.1498470881757],[13.512735127351277,68.159978551795],[13.501935019350213,68.159978551795],[13.494734947349485,68.159978551795],[13.480334803348029,68.16673286087453],[13.527135271352734,68.17348716995409],[13.516335163351641,68.17855290176374],[13.480334803348029,68.18699578811314],[13.516335163351641,68.20894729262162],[13.570335703357046,68.21739017897102],[13.617136171361722,68.22583306532044],[13.595535955359566,68.2308987971301],[13.58113581135811,68.23596452893975],[13.566735667356681,68.23765310620962],[13.49833498334985,68.24271883801927],[13.635136351363514,68.29506473338563],[13.663936639366398,68.28999900157598],[13.678336783367854,68.28999900157598],[13.685536855368554,68.2883104243061],[13.69993699937001,68.2781789606868],[13.714337143371438,68.27480180614702],[13.735937359373594,68.2781789606868],[13.75033750337505,68.28324469249645],[13.771937719377206,68.27986753795668],[13.789937899378998,68.2680474970675],[13.80073800738009,68.2697360743374],[13.80793807938079,68.27480180614702],[13.818738187381882,68.2883104243061],[13.829538295382974,68.28999900157598],[13.847538475384766,68.30181904246516],[13.872738727387286,68.32545912424351],[13.919539195391962,68.34065631967246],[13.98433984339843,68.33727916513268],[14.00954009540095,68.29506473338563],[13.966339663396639,68.2697360743374],[13.995139951399523,68.2579160334482],[14.027540275402771,68.26298176525785]]],[[[-104.48924489244892,68.51626835574027],[-104.47844478444784,68.51289120120049],[-104.46764467644677,68.50782546939084],[-104.45324453244532,68.49262827396191],[-104.4280442804428,68.44534811040518],[-104.4640446404464,68.41664229681717],[-104.52884528845289,68.40313367865812],[-104.65484654846549,68.39806794684847],[-104.7160471604716,68.4149537195473],[-104.77364773647736,68.42339660589673],[-104.8060480604806,68.43690522405578],[-104.86364863648636,68.44703668767508],[-104.89964899648996,68.45716815129438],[-105.0040500405004,68.50951404666074],[-105.040050400504,68.53821986024874],[-105.06165061650616,68.55003990113792],[-105.08685086850868,68.55003990113792],[-104.98964989649896,68.57874571472593],[-104.88884888848888,68.58718860107533],[-104.680046800468,68.57874571472593],[-104.65124651246512,68.56692567383675],[-104.57564575645756,68.55510563294757],[-104.52164521645216,68.52639981935957],[-104.48924489244892,68.51626835574027]]],[[[-101.69561695616956,68.76955494622266],[-101.69561695616956,68.7560463280636],[-101.69921699216992,68.73071766901538],[-101.70281702817027,68.72227478266595],[-101.69921699216992,68.71045474177677],[-101.69561695616956,68.6986347008876],[-101.68121681216812,68.67330604183937],[-101.69561695616956,68.65304311460076],[-101.70281702817027,68.64460022825133],[-101.71361713617137,68.63953449644171],[-101.73881738817389,68.63784591917181],[-101.82521825218252,68.65304311460076],[-101.80721807218072,68.64460022825133],[-101.80001800018,68.63615734190194],[-101.80001800018,68.62771445555254],[-101.8180181801818,68.60238579650428],[-101.82161821618216,68.58887717834523],[-101.82881828818287,68.57874571472593],[-101.84321843218432,68.5703028283765],[-101.86481864818649,68.5719914056464],[-101.90441904419043,68.59225433288498],[-101.92241922419224,68.59732006469463],[-101.94761947619476,68.6006972192344],[-101.99441994419944,68.61758299193323],[-102.02322023220232,68.61927156920311],[-102.0520205202052,68.61251726012358],[-102.06282062820628,68.61251726012358],[-102.07722077220772,68.61420583739346],[-102.09882098820988,68.62433730101276],[-102.11322113221132,68.62771445555254],[-102.12762127621276,68.63615734190194],[-102.13122131221311,68.63953449644171],[-102.14922149221492,68.64122307371159],[-102.18882188821888,68.63953449644171],[-102.21042210422104,68.64291165098146],[-102.25362253622536,68.65642026914054],[-102.28962289622896,68.66317457822007],[-102.35082350823508,68.68681465999842],[-102.31122311223112,68.68850323726829],[-102.26082260822608,68.6986347008876],[-102.21042210422104,68.71552047358642],[-102.160021600216,68.74084913263465],[-102.07362073620736,68.76111205987326],[-102.06282062820628,68.76448921441303],[-102.05922059220592,68.76955494622266],[-102.05562055620555,68.77968640984196],[-102.05562055620555,68.78644071892148],[-102.05562055620555,68.79319502800104],[-102.05922059220592,68.79657218254079],[-102.02322023220232,68.82358941885892],[-101.980019800198,68.82527799612879],[-101.77841778417783,68.78812929619139],[-101.75681756817568,68.78812929619139],[-101.73161731617316,68.78981787346126],[-101.70641706417064,68.78812929619139],[-101.69561695616956,68.76955494622266]]],[[[-100.20520205202051,68.80332649162031],[-100.21960219602195,68.79319502800104],[-100.21960219602195,68.78644071892148],[-100.2160021600216,68.77968640984196],[-100.21960219602195,68.76955494622266],[-100.23760237602376,68.7661777916829],[-100.2880028800288,68.77293210076243],[-100.30960309603095,68.76955494622266],[-100.33120331203311,68.75435775079373],[-100.34560345603455,68.7374719780949],[-100.36360363603636,68.72227478266595],[-100.39240392403924,68.71552047358642],[-100.41760417604176,68.7188976281262],[-100.44640446404463,68.73071766901538],[-100.49320493204932,68.76280063714313],[-100.44640446404463,68.77630925530221],[-100.45720457204571,68.79319502800104],[-100.47160471604715,68.79994933708056],[-100.48960489604896,68.79994933708056],[-100.50760507605075,68.79657218254079],[-100.54360543605436,68.78644071892148],[-100.56160561605616,68.77799783257208],[-100.55800558005579,68.76955494622266],[-100.57960579605796,68.75266917352383],[-100.60480604806048,68.7560463280636],[-100.62280622806227,68.77293210076243],[-100.630006300063,68.79657218254079],[-100.630006300063,68.8742467369554],[-100.62280622806227,68.91983832324223],[-100.61560615606156,68.92321547778198],[-100.60120601206012,68.9215269005121],[-100.59040590405904,68.92659263232176],[-100.57960579605796,68.94854413683024],[-100.59040590405904,68.96542990952906],[-100.630006300063,68.99582430038694],[-100.57960579605796,69.01271007308577],[-100.56880568805688,69.0194643821653],[-100.56160561605616,69.03803873213403],[-100.53640536405364,69.04141588667378],[-100.40320403204032,69.0295958457846],[-100.360003600036,69.0194643821653],[-100.3240032400324,69.00257860946647],[-100.32760327603276,68.97893852768811],[-100.30960309603095,68.96542990952906],[-100.28080280802807,68.95529844590976],[-100.23040230402303,68.92828120959163],[-100.15480154801547,68.92321547778198],[-100.1260012600126,68.90632970508318],[-100.18000180001799,68.8928210869241],[-100.16560165601656,68.87762389149515],[-100.17280172801728,68.8641152733361],[-100.18720187201872,68.8556723869867],[-100.20520205202051,68.85229523244692],[-100.20160201602016,68.84047519155774],[-100.18360183601835,68.82527799612879],[-100.18000180001799,68.81683510977939],[-100.17640176401764,68.80332649162031],[-100.18360183601835,68.80332649162031],[-100.19440194401943,68.80501506889021],[-100.20520205202051,68.80332649162031]]],[[[-100.04320043200431,69.08531889569073],[-100.03240032400323,69.07349885480156],[-100.00360003600036,69.05323592756295],[-99.99279992799927,69.04479304121355],[-99.98559985599856,69.0295958457846],[-99.98559985599856,69.01777580489542],[-100,68.96036417771941],[-100.00720007200071,68.94854413683024],[-100.02160021600216,68.94010125048081],[-100.0360003600036,68.94010125048081],[-100.16560165601656,68.96880706406884],[-100.1980019800198,68.98231568222789],[-100.22680226802268,68.99920145492672],[-100.24840248402484,69.02284153670507],[-100.25560255602555,69.0498587730232],[-100.24840248402484,69.0684331229919],[-100.23760237602376,69.08531889569073],[-100.22320223202232,69.09713893657991],[-100.20520205202051,69.10558182292934],[-100.17280172801728,69.11571328654861],[-100.1620016200162,69.12246759562817],[-100.15120151201512,69.13766479105709],[-100.14760147601476,69.14273052286674],[-100.13680136801368,69.1477962546764],[-100.13320133201331,69.13597621378722],[-100.12240122401224,69.12922190470769],[-100.09720097200972,69.11909044108839],[-100.07560075600756,69.11571328654861],[-100.05040050400504,69.10727040019921],[-100.0360003600036,69.09545035931004],[-100.04320043200431,69.08531889569073]]],[[[-100.98280982809828,69.48213455411317],[-100.96480964809648,69.47706882230352],[-100.95760957609576,69.47200309049387],[-100.96840968409684,69.46524878141435],[-100.97560975609755,69.4601830496047],[-100.98280982809828,69.45342874052517],[-100.990009900099,69.45005158598539],[-101.00081000810007,69.44836300871552],[-101.02241022410225,69.45174016325527],[-101.04041040410404,69.45849447233482],[-101.0620106201062,69.4601830496047],[-101.08361083610836,69.44836300871552],[-101.09441094410944,69.43823154509622],[-101.10161101611016,69.42810008147691],[-101.10161101611016,69.41628004058774],[-101.0980109801098,69.40783715423834],[-101.1160111601116,69.40783715423834],[-101.14481144811448,69.39770569061903],[-101.15921159211592,69.39432853607926],[-101.17361173611737,69.39770569061903],[-101.1880118801188,69.40445999969856],[-101.19881198811987,69.40614857696843],[-101.20961209612096,69.39432853607926],[-101.20241202412024,69.38757422699973],[-101.2060120601206,69.3808199179202],[-101.21681216812168,69.37575418611056],[-101.22761227612276,69.37237703157078],[-101.2420124201242,69.37406560884068],[-101.28161281612816,69.38588564972986],[-101.26361263612635,69.3892628042696],[-101.24561245612456,69.39432853607926],[-101.23841238412383,69.40445999969856],[-101.2420124201242,69.42134577239739],[-101.25641256412564,69.43316581328656],[-101.29241292412924,69.43654296782634],[-101.30321303213032,69.44836300871552],[-101.26361263612635,69.44160869963599],[-101.23481234812348,69.44329727690587],[-101.20961209612096,69.45680589506492],[-101.1880118801188,69.48213455411317],[-101.24921249212491,69.50239748135175],[-101.27081270812708,69.50239748135175],[-101.26361263612635,69.49395459500235],[-101.26361263612635,69.4888888631927],[-101.28161281612816,69.4888888631927],[-101.29241292412924,69.49395459500235],[-101.32481324813247,69.51421752224093],[-101.37521375213751,69.53785760401931],[-101.38241382413824,69.53785760401931],[-101.37881378813788,69.54123475855906],[-101.36081360813608,69.56825199487719],[-101.35361353613536,69.57331772668684],[-101.34281342813428,69.57838345849649],[-101.31041310413104,69.58344919030614],[-101.2780127801278,69.58513776757601],[-101.260012600126,69.58007203576636],[-101.25641256412564,69.57500630395671],[-101.25641256412564,69.56994057214706],[-101.25641256412564,69.56487484033741],[-101.2420124201242,69.54967764490848],[-101.23841238412383,69.54798906763858],[-101.22041220412204,69.55136622217836],[-101.20961209612096,69.55474337671814],[-101.18441184411844,69.56825199487719],[-101.17361173611737,69.57162914941696],[-101.18081180811808,69.56487484033741],[-101.170011700117,69.55136622217836],[-101.15921159211592,69.54630049036871],[-101.080010800108,69.53785760401931],[-101.0620106201062,69.53110329493975],[-101.07641076410764,69.52266040859035],[-101.07641076410764,69.51590609951083],[-101.07281072810729,69.51252894497105],[-101.05841058410584,69.5091517904313],[-101.04041040410404,69.50070890408188],[-101.00081000810007,69.49057744046257],[-100.98280982809828,69.48213455411317]]],[[[-95.94275942759427,69.42134577239739],[-95.98235982359823,69.43654296782634],[-96.00036000360004,69.44836300871552],[-96.00756007560075,69.46524878141435],[-96.00756007560075,69.47538024503365],[-96.01116011160111,69.4787573995734],[-96.01116011160111,69.48213455411317],[-96.00756007560075,69.4888888631927],[-95.99315993159931,69.499020326812],[-95.96435964359644,69.5074632131614],[-95.95355953559535,69.5175946767807],[-95.95715957159571,69.5277261404],[-95.95355953559535,69.53954618128918],[-95.92475924759248,69.59189207665554],[-95.91035910359103,69.60033496300497],[-95.88875888758888,69.60540069481459],[-95.84195841958419,69.60540069481459],[-95.82755827558275,69.60877784935437],[-95.82035820358203,69.61384358116402],[-95.80235802358024,69.63241793113272],[-95.77715777157772,69.6357950856725],[-95.70155701557016,69.63072935386285],[-95.67635676356764,69.6256636220532],[-95.69075690756907,69.61215500389415],[-95.67995679956799,69.60877784935437],[-95.66915669156691,69.60877784935437],[-95.65475654756547,69.61215500389415],[-95.64395643956439,69.6155321584339],[-95.62955629556295,69.62059789024354],[-95.61875618756187,69.6172207357038],[-95.6079560795608,69.61215500389415],[-95.52155521555216,69.57838345849649],[-95.49275492754927,69.57162914941696],[-95.38115381153811,69.52266040859035],[-95.37035370353703,69.51421752224093],[-95.37035370353703,69.49564317227222],[-95.3739537395374,69.48551170865292],[-95.39195391953919,69.4601830496047],[-95.39555395553955,69.44836300871552],[-95.40275402754027,69.42641150420704],[-95.40275402754027,69.39770569061903],[-95.41355413554135,69.38588564972986],[-95.46035460354604,69.37913134065033],[-95.48195481954819,69.36899987703103],[-95.50355503555035,69.34535979525268],[-95.51435514355143,69.33522833163337],[-95.53235532355323,69.3318511770936],[-95.71235712357124,69.32171971347432],[-95.74475744757447,69.33860548617315],[-95.73755737557376,69.34029406344303],[-95.71235712357124,69.34535979525268],[-95.72675726757268,69.36899987703103],[-95.71955719557195,69.38588564972986],[-95.6979569795698,69.39601711334916],[-95.6619566195662,69.40108284515881],[-95.65475654756547,69.40952573150821],[-95.68355683556835,69.45680589506492],[-95.69075690756907,69.47538024503365],[-95.68715687156872,69.48213455411317],[-95.67995679956799,69.48720028592282],[-95.67275672756728,69.49395459500235],[-95.66915669156691,69.50577463589153],[-95.67275672756728,69.51421752224093],[-95.67995679956799,69.52434898586023],[-95.69435694356943,69.54123475855906],[-95.72315723157232,69.55643195398801],[-95.76275762757628,69.56487484033741],[-95.80595805958059,69.56487484033741],[-95.83475834758347,69.55812053125788],[-95.81315813158132,69.5074632131614],[-95.79875798757988,69.48551170865292],[-95.78075780757807,69.4686259359541],[-95.85635856358563,69.40108284515881],[-95.87795877958779,69.37237703157078],[-95.87075870758707,69.37237703157078],[-95.87075870758707,69.36731129976116],[-95.87075870758707,69.36562272249125],[-95.87075870758707,69.3622455679515],[-95.86355863558636,69.35886841341173],[-95.88515885158851,69.34367121798277],[-95.92115921159211,69.34367121798277],[-95.96435964359644,69.35042552706233],[-95.99315993159931,69.35886841341173],[-95.98955989559896,69.36899987703103],[-95.99315993159931,69.38588564972986],[-95.99315993159931,69.39432853607926],[-95.98235982359823,69.40108284515881],[-95.94275942759427,69.42134577239739]]],[[[-139.11439114391143,69.6543694356412],[-139.08199081990819,69.64930370383155],[-139.01359013590135,69.63072935386285],[-138.95238952389525,69.62397504478332],[-138.919989199892,69.6172207357038],[-138.89118891188912,69.6070892720845],[-138.86958869588696,69.59189207665554],[-138.90558905589057,69.57838345849649],[-138.98838988389883,69.58682634484589],[-139.02799027990278,69.58513776757601],[-139.04959049590497,69.57669488122659],[-139.0891908919089,69.54798906763858],[-139.11079110791107,69.5361690267494],[-139.13959139591395,69.53448044947953],[-139.1719917199172,69.54123475855906],[-139.2079920799208,69.55305479944823],[-139.2331923319233,69.56487484033741],[-139.2439924399244,69.57162914941696],[-139.25119251192513,69.58007203576636],[-139.2619926199262,69.58513776757601],[-139.27279272792728,69.58176061303624],[-139.2871928719287,69.57500630395671],[-139.30519305193053,69.57162914941696],[-139.31959319593196,69.57162914941696],[-139.3339933399334,69.57162914941696],[-139.3159931599316,69.58513776757601],[-139.21879218792188,69.63241793113272],[-139.16479164791647,69.64761512656167],[-139.11439114391143,69.6543694356412]]],[[[-100.35280352803528,70.49021518423314],[-100.46080460804608,70.49696949331266],[-100.65520655206552,70.55100396594892],[-100.68040680406804,70.57464404772728],[-100.67680676806768,70.59321839769598],[-100.66960669606696,70.61516990220446],[-100.6660066600666,70.63036709763341],[-100.67320673206731,70.64556429306234],[-100.68400684006839,70.65907291122141],[-100.71280712807128,70.6810244157299],[-100.68760687606876,70.68440157026964],[-100.57960579605796,70.66076148849129],[-100.55080550805508,70.66751579757081],[-100.51840518405184,70.67933583845999],[-100.4860048600486,70.6810244157299],[-100.46080460804608,70.66076148849129],[-100.4140041400414,70.64049856125268],[-100.360003600036,70.63205567490328],[-100.34560345603455,70.62698994309363],[-100.360003600036,70.62192421128398],[-100.36360363603636,70.62023563401411],[-100.34560345603455,70.6101041703948],[-100.27360273602736,70.60672701585506],[-100.2340023400234,70.59490697496585],[-100.19440194401943,70.57970977953693],[-100.21240212402124,70.56788973864775],[-100.23760237602376,70.56788973864775],[-100.26640266402664,70.5729554704574],[-100.31320313203132,70.58984124315623],[-100.3420034200342,70.59321839769598],[-100.36720367203672,70.5915298204261],[-100.39240392403924,70.58477551134658],[-100.36720367203672,70.56957831591762],[-100.31320313203132,70.55438112048867],[-100.2880028800288,70.53749534778984],[-100.2880028800288,70.51892099782114],[-100.25560255602555,70.49021518423314],[-100.23040230402303,70.46488652518491],[-100.26280262802628,70.45644363883548],[-100.28440284402843,70.46150937064513],[-100.32760327603276,70.48177229788374],[-100.35280352803528,70.49021518423314]]],[[[167.66267662676626,-78.1265360699528],[167.66267662676626,-78.1282246472227],[167.66267662676626,-78.12991322449258],[167.66627666276662,-78.13160180176246],[167.579875798758,-78.18732485166859],[167.49707497074974,-78.22616212887588],[167.40707407074075,-78.24980221065425],[167.2918729187292,-78.25317936519401],[166.94626946269466,-78.22278497433612],[166.90306903069035,-78.22785070614577],[166.73026730267304,-78.27681944697237],[166.31626316263163,-78.31059099237002],[166.19386193861942,-78.29877095148085],[166.13986139861402,-78.28695091059167],[166.0966609666097,-78.26837656062295],[166.03546035460357,-78.195767738018],[165.98505985059853,-78.10965029725398],[166.04626046260466,-78.08938737001539],[166.09306093060934,-78.08263306093586],[166.1326613266133,-78.09107594728528],[166.1650616506165,-78.11302745179376],[166.3090630906309,-78.11302745179376],[166.65106651066515,-78.16199619262035],[166.77346773467735,-78.20083346982764],[166.79506795067954,-78.21096493344695],[167.06867068670687,-78.15524188354081],[167.34947349473498,-78.05899297915751],[167.41067410674106,-78.01171281560079],[167.4574745747458,-77.99651562017185],[167.51147511475114,-77.99313846563207],[167.56547565475654,-78.00326992925137],[167.60507605076054,-78.03028716556949],[167.60867608676085,-78.05561582461773],[167.6230762307623,-78.08263306093586],[167.66267662676626,-78.1265360699528]]],[[[163.80343803438035,-74.69028132574152],[164.0158401584016,-74.60247530770762],[164.27504275042753,-74.55012941234125],[164.3038430384304,-74.55350656688103],[164.2930429304293,-74.55857229869066],[164.26424264242644,-74.57208091684973],[164.25344253442535,-74.57883522592925],[164.24624246242462,-74.59065526681844],[164.2390423904239,-74.60247530770762],[164.23184231842322,-74.61260677132691],[164.2390423904239,-74.61936108040645],[164.2390423904239,-74.62611538948597],[164.24264242642425,-74.63118112129563],[164.08784087840877,-74.62611538948597],[164.03744037440373,-74.63624685310528],[164.0590405904059,-74.64806689399445],[164.0590405904059,-74.67001839850293],[164.04464044640446,-74.68859274847163],[164.03024030240306,-74.69365848028129],[164.06624066240664,-74.70547852117046],[164.09864098640986,-74.71898713932953],[164.1058410584106,-74.73587291202836],[164.07704077040773,-74.75782441653683],[164.0410404104041,-74.76457872561636],[163.9258392583926,-74.77302161196577],[163.9870398703987,-74.78821880739471],[164.03744037440373,-74.80679315736343],[163.97983979839802,-74.84056470276109],[163.9870398703987,-74.84056470276109],[163.99423994239942,-74.84225328003096],[163.99783997839978,-74.84394185730085],[164.0050400504005,-74.84563043457072],[163.97983979839802,-74.86082762999968],[163.9618396183962,-74.86589336180933],[163.9510395103951,-74.86589336180933],[163.94383943839438,-74.86251620726955],[163.94383943839438,-74.8574504754599],[163.94383943839438,-74.85069616638037],[163.94383943839438,-74.84563043457072],[163.940239402394,-74.83381039368155],[163.93663936639365,-74.83043323914178],[163.92943929439298,-74.82705608460202],[163.89343893438934,-74.8203017755225],[163.86823868238685,-74.8186131982526],[163.86103861038612,-74.82367893006226],[163.86103861038612,-74.82705608460202],[163.86823868238685,-74.83381039368155],[163.83583835838357,-74.83381039368155],[163.80343803438035,-74.8287446618719],[163.77103771037713,-74.81354746644296],[163.76023760237604,-74.81017031190319],[163.7638376383764,-74.8084817346333],[163.77103771037713,-74.80510458009354],[163.7746377463775,-74.80172742555378],[163.77823778237786,-74.79666169374413],[163.74943749437494,-74.79328453920436],[163.73863738637385,-74.7899073846646],[163.72783727837282,-74.78315307558506],[163.72423724237245,-74.77639876650554],[163.71703717037173,-74.75782441653683],[163.71343713437136,-74.7510701074573],[163.69183691836918,-74.72911860294882],[163.6882368823688,-74.72574144840905],[163.71703717037173,-74.71560998478977],[163.81423814238144,-74.70041278936081],[163.80343803438035,-74.69028132574152]]],[[[164.84024840248406,-67.33990446994213],[164.8366483664837,-67.3635445517205],[164.85824858248583,-67.37536459260967],[164.88704887048874,-67.38718463349885],[164.91224912249123,-67.40407040619768],[164.9266492664927,-67.43108764251579],[164.9158491584916,-67.45472772429416],[164.8906489064891,-67.47667922880262],[164.84744847448474,-67.50031931058099],[164.85464854648546,-67.50369646512075],[164.85824858248583,-67.50707361966052],[164.86544865448656,-67.51045077420028],[164.87624876248765,-67.51551650600993],[164.81864818648188,-67.55097662867747],[164.7610476104761,-67.57123955591607],[164.70344703447034,-67.56786240137629],[164.65664656646567,-67.53915658778828],[164.65664656646567,-67.52395939235934],[164.6530465304653,-67.51213935147017],[164.6422464224642,-67.4986307333111],[164.63144631446318,-67.48849926969181],[164.66024660246603,-67.47330207426286],[164.68184681846822,-67.44797341521462],[164.69624696246962,-67.41757902435674],[164.69624696246962,-67.38549605622896],[164.68904689046894,-67.37198743806991],[164.67104671046712,-67.3432816244819],[164.66024660246603,-67.3331501608626],[164.66024660246603,-67.32808442905295],[164.6638466384664,-67.32133011997342],[164.66744667446676,-67.31626438816377],[164.67104671046712,-67.31288723362401],[164.65664656646567,-67.27911568822636],[164.65664656646567,-67.26054133825764],[164.6746467464675,-67.25716418371788],[164.71064710647107,-67.26898422460707],[164.82224822248224,-67.32639585178308],[164.84024840248406,-67.33990446994213]]],[[[163.29223292232922,-66.83839702078697],[163.29583295832958,-66.88567718434369],[163.2490324903249,-66.87723429799428],[163.19143191431914,-66.84346275259662],[163.15543155431556,-66.81306836173873],[163.08343083430833,-66.71175372554578],[163.08343083430833,-66.71006514827589],[163.08343083430833,-66.708376571006],[163.07983079830802,-66.70668799373613],[163.1158311583116,-66.68811364376741],[163.169831698317,-66.6898022210373],[163.22383223832242,-66.70331083919635],[163.259832598326,-66.71681945735541],[163.26343263432636,-66.73201665278435],[163.26703267032673,-66.74045953913378],[163.26703267032673,-66.74890242548318],[163.25623256232564,-66.76409962091213],[163.29223292232922,-66.77591966180131],[163.3138331383314,-66.77929681634107],[163.31023310233104,-66.78098539361096],[163.3138331383314,-66.78098539361096],[163.31023310233104,-66.78267397088084],[163.31023310233104,-66.78436254815072],[163.3138331383314,-66.78436254815072],[163.2850328503285,-66.79787116630979],[163.3030330303303,-66.81982267081827],[163.31023310233104,-66.8265769798978],[163.31023310233104,-66.82826555716767],[163.3138331383314,-66.82826555716767],[163.29583295832958,-66.83501986624721],[163.29223292232922,-66.83839702078697]]],[[[-65.22725227252272,10.954357802708955],[-65.220052200522,10.954357802708955],[-65.21285212852128,10.954357802708955],[-65.20925209252093,10.949292070899304],[-65.21645216452164,10.939160607280002],[-65.2020520205202,10.918897680041411],[-65.20565205652056,10.903700484612472],[-65.220052200522,10.895257598263058],[-65.24525245252453,10.885126134643755],[-65.24165241652416,10.895257598263058],[-65.2380523805238,10.89863475280282],[-65.25965259652597,10.891880443723295],[-65.27765277652776,10.890191866453407],[-65.31725317253172,10.891880443723295],[-65.33525335253353,10.895257598263058],[-65.35325353253532,10.90538906188236],[-65.37125371253713,10.910454793691997],[-65.38925389253892,10.90538906188236],[-65.41085410854109,10.923963411851062],[-65.40365403654036,10.947603493629416],[-65.37845378453784,10.966177843598132],[-65.35325353253532,10.96786642086802],[-65.33165331653316,10.977997884487309],[-65.30645306453064,10.97630930721742],[-65.2560525605256,10.95604637997883],[-65.24525245252453,10.954357802708955],[-65.22725227252272,10.954357802708955]]],[[[-60.52920529205292,11.351173461131381],[-60.52200522005219,11.344419152051856],[-60.52200522005219,11.319090493003614],[-60.52560525605256,11.288696102145721],[-60.53280532805327,11.266744597637256],[-60.54360543605435,11.26843317490713],[-60.55080550805508,11.26843317490713],[-60.55800558005579,11.254924556748065],[-60.56520565205652,11.253235979478191],[-60.5760057600576,11.254924556748065],[-60.586805868058676,11.254924556748065],[-60.586805868058676,11.251547402208303],[-60.60120601206012,11.231284474969712],[-60.60480604806048,11.231284474969712],[-60.630006300063,11.216087279540773],[-60.637206372063716,11.211021547731121],[-60.648006480064794,11.204267238651596],[-60.65880658806587,11.204267238651596],[-60.673206732067314,11.20595581592147],[-60.68040680406804,11.207644393191359],[-60.74160741607416,11.177250002333466],[-60.75960759607595,11.172184270523815],[-60.78480784807847,11.15023276601535],[-60.80280802808028,11.14347845693581],[-60.81000810008099,11.158675652364764],[-60.824408244082434,11.151921343285224],[-60.838808388083876,11.153609920555112],[-60.84600846008459,11.1637413841744],[-60.84600846008459,11.178938579603354],[-60.83520835208351,11.184004311413005],[-60.824408244082434,11.18569288868288],[-60.81000810008099,11.190758620492531],[-60.80280802808028,11.204267238651596],[-60.79560795607955,11.216087279540773],[-60.70920709207091,11.271810329446893],[-60.69120691206912,11.288696102145721],[-60.68040680406804,11.297138988495135],[-60.66960669606695,11.302204720304786],[-60.637206372063716,11.314024761193963],[-60.60840608406083,11.320779070273502],[-60.597605976059754,11.327533379353028],[-60.58320583205831,11.329221956622916],[-60.56880568805687,11.320779070273502],[-60.561605616056156,11.320779070273502],[-60.540005400054,11.342730574781967],[-60.52920529205292,11.351173461131381]]],[[[-61.61281612816127,12.214036446041447],[-61.60561605616056,12.19715067334262],[-61.60201602016019,12.183642055183554],[-61.60561605616056,12.132984737087071],[-61.60921609216092,12.126230428007545],[-61.61281612816127,12.11947611892802],[-61.620016200162,12.104278923499066],[-61.620016200162,12.097524614419541],[-61.61281612816127,12.080638841720713],[-61.616416164161635,12.07726168718095],[-61.620016200162,12.075573109911062],[-61.62361623616236,12.068818800831536],[-61.62721627216271,12.062064491751997],[-61.62721627216271,12.053621605402583],[-61.63081630816308,12.043490141783295],[-61.6740167401674,12.021538637274816],[-61.6740167401674,12.02998152362423],[-61.68121681216812,12.024915791814578],[-61.68841688416883,12.019850060004941],[-61.692016920169195,12.013095750925402],[-61.69561695616956,12.002964287306114],[-61.70281702817027,12.004652864575988],[-61.71361713617135,12.00803001911575],[-61.72081720817208,12.011407173655527],[-61.72801728017279,12.016472905465164],[-61.73881738817387,12.006341441845876],[-61.75681756817568,12.002964287306114],[-61.77481774817748,12.004652864575988],[-61.78921789217891,12.00803001911575],[-61.75681756817568,12.02998152362423],[-61.74961749617496,12.036735832703755],[-61.7460174601746,12.05024445086282],[-61.74961749617496,12.062064491751997],[-61.75321753217531,12.073884532641188],[-61.75681756817568,12.087393150800239],[-61.74961749617496,12.109344655308718],[-61.73161731617316,12.149870509785899],[-61.72801728017279,12.166756282484727],[-61.67041670416704,12.235987950549926],[-61.64881648816488,12.23936510508969],[-61.62721627216271,12.235987950549926],[-61.60561605616056,12.224167909660736],[-61.60561605616056,12.220790755120973],[-61.61281612816127,12.214036446041447]]],[[[-68.21168211682117,12.227545064200513],[-68.20448204482044,12.222479332390861],[-68.19368193681936,12.214036446041447],[-68.19008190081901,12.205593559692034],[-68.20088200882009,12.200527827882382],[-68.21168211682117,12.190396364263094],[-68.20448204482044,12.138050468896722],[-68.20448204482044,12.117787541658132],[-68.21528215282153,12.111033232578606],[-68.23328233282332,12.111033232578606],[-68.24048240482405,12.104278923499066],[-68.23688236882369,12.095836037149652],[-68.22968229682296,12.07050737810141],[-68.22608226082261,12.060375914482123],[-68.22608226082261,12.05024445086282],[-68.23328233282332,12.038424409973643],[-68.23688236882369,12.026604369084467],[-68.2440824408244,12.021538637274816],[-68.25488254882548,12.023227214544704],[-68.25848258482584,12.028292946354355],[-68.280082800828,12.0721959553713],[-68.28368283682836,12.090770305340001],[-68.28728287282873,12.10765607803883],[-68.28368283682836,12.13973904616661],[-68.28368283682836,12.160001973405201],[-68.28728287282873,12.180264900643792],[-68.30168301683017,12.20221640515227],[-68.31968319683196,12.214036446041447],[-68.370083700837,12.220790755120973],[-68.39168391683917,12.227545064200513],[-68.40968409684096,12.241053682359563],[-68.41688416884169,12.256250877788517],[-68.40248402484025,12.276513805027108],[-68.40968409684096,12.283268114106633],[-68.4060840608406,12.29508815499581],[-68.39888398883988,12.305219618615112],[-68.39168391683917,12.310285350424763],[-68.37728377283773,12.310285350424763],[-68.36288362883629,12.30184246407535],[-68.34128341283413,12.27482522775722],[-68.33048330483304,12.269759495947568],[-68.31608316083161,12.264693764137931],[-68.25128251282513,12.235987950549926],[-68.21888218882188,12.230922218740275],[-68.21168211682117,12.227545064200513]]],[[[-59.42759427594275,13.15963971717575],[-59.431194311943116,13.125868171778109],[-59.456394563945636,13.100539512729867],[-59.47439474394743,13.087030894570802],[-59.48879488794887,13.078588008221388],[-59.51039510395104,13.056636503712909],[-59.517595175951755,13.056636503712909],[-59.52479524795247,13.056636503712909],[-59.52839528395283,13.054947926443035],[-59.53559535595356,13.051570771903258],[-59.54639546395464,13.068456544602086],[-59.56439564395643,13.078588008221388],[-59.5859958599586,13.083653740031039],[-59.60039600396003,13.083653740031039],[-59.60759607596076,13.085342317300913],[-59.6219962199622,13.093785203650327],[-59.63279632796328,13.115736708158806],[-59.64719647196472,13.15963971717575],[-59.65439654396543,13.294725898766373],[-59.65079650796507,13.309923094195312],[-59.643596435964355,13.323431712354378],[-59.62919629196291,13.338628907783317],[-59.61119611196112,13.345383216862857],[-59.593195931959315,13.335251753243554],[-59.58239582395824,13.314988826004964],[-59.57519575195751,13.304857362385675],[-59.567995679956795,13.289660166956722],[-59.54999549995499,13.24913431247954],[-59.53559535595356,13.230559962510824],[-59.517595175951755,13.217051344351773],[-59.492394923949234,13.198476994383057],[-59.47799477994779,13.190034108033643],[-59.456394563945636,13.183279798954118],[-59.43839438394383,13.174836912604704],[-59.42759427594275,13.15963971717575]]],[[[-61.16641166411664,13.1461310990167],[-61.18441184411844,13.132622480857634],[-61.20961209612096,13.14444252174681],[-61.27081270812708,13.18665695349388],[-61.278012780127796,13.215362767081885],[-61.278012780127796,13.24913431247954],[-61.26361263612635,13.276151548797657],[-61.26721267212672,13.279528703337434],[-61.27081270812708,13.289660166956722],[-61.2420124201242,13.294725898766373],[-61.23121231212312,13.316677403274852],[-61.22401224012239,13.345383216862857],[-61.21321213212131,13.36902329864121],[-61.19881198811987,13.377466184990624],[-61.18801188011879,13.380843339530387],[-61.177211772117715,13.380843339530387],[-61.152011520115195,13.377466184990624],[-61.14481144811448,13.374089030450861],[-61.14121141211412,13.367334721371321],[-61.1340113401134,13.352137525942382],[-61.12321123211231,13.308234516925438],[-61.12321123211231,13.247445735209652],[-61.13761137611375,13.18665695349388],[-61.16641166411664,13.1461310990167]]],[[[-60.88560885608855,14.01068266119664],[-60.8820088200882,13.980288270338747],[-60.8820088200882,13.954959611290505],[-60.89640896408963,13.877285056875905],[-60.89280892808928,13.833382047858947],[-60.90360903609036,13.784413307032352],[-60.90720907209072,13.777658997952827],[-60.91080910809107,13.775970420682938],[-60.92160921609215,13.772593266143176],[-60.92880928809288,13.769216111603413],[-60.93240932409324,13.760773225253999],[-60.93960939609396,13.721935948046692],[-60.94680946809467,13.71687021623704],[-60.950409504095035,13.715181638967167],[-60.9540095400954,13.715181638967167],[-60.97200972009719,13.73882172074552],[-61.04761047610475,13.767527534333524],[-61.06561065610656,13.78610188430224],[-61.06921069210692,13.792856193381766],[-61.07281072810727,13.797921925191417],[-61.076410764107635,13.806364811540831],[-61.07281072810727,13.82156200696977],[-61.06921069210692,13.831693470589073],[-61.07281072810727,13.851956397827664],[-61.07281072810727,13.858710706907189],[-61.076410764107635,13.86377643871684],[-61.076410764107635,13.868842170526491],[-61.080010800108,13.87897363414578],[-61.076410764107635,13.89079367503497],[-61.06561065610656,13.909368025003673],[-61.06561065610656,13.917810911353087],[-61.05841058410584,13.931319529512152],[-61.03681036810367,13.965091074909807],[-61.026010260102595,13.987042579418272],[-61.000810008100075,14.022502702085816],[-60.99720997209971,14.027568433895468],[-60.98640986409863,14.032634165705105],[-60.98280982809828,14.037699897514756],[-60.97920979209792,14.042765629324407],[-60.975609756097555,14.061339979293123],[-60.97200972009719,14.068094288372649],[-60.94680946809467,14.101865833770304],[-60.93240932409324,14.111997297389593],[-60.91440914409144,14.105242988310067],[-60.9180091800918,14.08835721561124],[-60.91080910809107,14.079914329261825],[-60.900009000089995,14.0731600201823],[-60.89280892808928,14.064717133832886],[-60.88920889208892,14.05289709294371],[-60.88560885608855,14.01068266119664]]],[[[-61.19521195211952,15.932283594323152],[-61.19521195211952,15.918774976164087],[-61.19881198811987,15.910332089814673],[-61.2060120601206,15.903577780735148],[-61.21681216812168,15.893446317115846],[-61.2420124201242,15.881626276226669],[-61.27441274412743,15.873183389877255],[-61.30681306813068,15.878249121686906],[-61.31761317613176,15.905266358005022],[-61.31761317613176,15.910332089814673],[-61.32121321213212,15.918774976164087],[-61.32481324813247,15.925529285243613],[-61.328413284132836,15.928906439783376],[-61.3320133201332,15.932283594323152],[-61.328413284132836,15.939037903402678],[-61.31761317613176,15.952546521561743],[-61.314013140131394,15.967743716990682],[-61.30681306813068,15.977875180609985],[-61.288812888128874,15.998138107848575],[-61.26721267212672,16.009958148737752],[-61.24561245612456,16.003203839658227],[-61.22401224012239,15.988006644229273],[-61.21321213212131,15.959300830641268],[-61.2060120601206,15.952546521561743],[-61.19881198811987,15.945792212482203],[-61.19521195211952,15.932283594323152]]],[[[-86.60786607866078,16.285196243728635],[-86.60066600666006,16.308836325506988],[-86.57186571865718,16.33247640728534],[-86.53226532265322,16.35611648906371],[-86.49986499864998,16.36962510722276],[-86.43866438664386,16.39664234354089],[-86.37386373863738,16.41690527077948],[-86.33066330663306,16.428725311668657],[-86.30186301863019,16.43210246620842],[-86.26226262262622,16.430413888938546],[-86.22986229862298,16.428725311668657],[-86.1830618306183,16.428725311668657],[-86.2010620106201,16.42197100258913],[-86.22266222662226,16.41183953896983],[-86.24426244262442,16.41859384804937],[-86.2730627306273,16.410150961699955],[-86.29466294662946,16.415216693509606],[-86.31266312663126,16.41183953896983],[-86.31986319863198,16.410150961699955],[-86.33426334263342,16.400019498080653],[-86.33786337863378,16.39833092081078],[-86.34866348663486,16.39833092081078],[-86.3630636306363,16.394953766271],[-86.3810638106381,16.38144514811195],[-86.41706417064171,16.364559375413123],[-86.4530645306453,16.351050757254058],[-86.49266492664927,16.325722098205816],[-86.5250652506525,16.315590634586513],[-86.54666546665466,16.31221348004675],[-86.56466564665647,16.2987048618877],[-86.5790657906579,16.283507666458746],[-86.60066600666006,16.26999904829968],[-86.60786607866078,16.285196243728635]]],[[[-61.88281882818828,17.048433169715608],[-61.87921879218791,17.060253210604785],[-61.88281882818828,17.070384674224087],[-61.88281882818828,17.0788275605735],[-61.86481864818647,17.087270446922915],[-61.8720187201872,17.08895902419279],[-61.893618936189355,17.10077906508198],[-61.88281882818828,17.110910528701268],[-61.86481864818647,17.117664837780808],[-61.843218432184315,17.124419146860333],[-61.85041850418504,17.1379277650194],[-61.85041850418504,17.149747805908575],[-61.83961839618395,17.159879269527863],[-61.82521825218252,17.168322155877277],[-61.792817928179275,17.164945001337514],[-61.7820178201782,17.146370651368812],[-61.77481774817748,17.12610772413022],[-61.75681756817568,17.11428768324103],[-61.75681756817568,17.122730569590445],[-61.75321753217531,17.129484878669984],[-61.742417424174235,17.14130491955916],[-61.73881738817387,17.132862033209747],[-61.73161731617316,17.127796301400096],[-61.72081720817208,17.12610772413022],[-61.710017100171,17.127796301400096],[-61.71361713617135,17.122730569590445],[-61.717217172171715,17.119353415050682],[-61.72081720817208,17.11597626051092],[-61.72801728017279,17.11428768324103],[-61.72441724417244,17.09909048781209],[-61.71361713617135,17.092336178732566],[-61.70281702817027,17.09402475600244],[-61.68841688416883,17.10077906508198],[-61.68121681216812,17.10077906508198],[-61.6740167401674,17.09571333327233],[-61.67041670416704,17.090647601462678],[-61.666816668166675,17.0788275605735],[-61.6740167401674,17.08051613784339],[-61.68841688416883,17.0788275605735],[-61.69561695616956,17.0788275605735],[-61.68481684816848,17.0686960969542],[-61.67761677616775,17.06363036514456],[-61.67041670416704,17.056876056065022],[-61.6740167401674,17.045056015175845],[-61.68481684816848,17.028170242477017],[-61.69561695616956,17.028170242477017],[-61.710017100171,17.034924551556543],[-61.72801728017279,17.03830170609632],[-61.73521735217352,17.034924551556543],[-61.73521735217352,17.026481665207143],[-61.72801728017279,17.0011530061589],[-61.73881738817387,16.98933296526971],[-61.75321753217531,16.99608727434925],[-61.77121771217712,17.01128446977819],[-61.77841778417783,17.01803877885773],[-61.7820178201782,17.01635020158784],[-61.80361803618035,17.007907315238427],[-61.818018180181795,17.004530160698664],[-61.83961839618395,17.004530160698664],[-61.85041850418504,17.007907315238427],[-61.88281882818828,17.026481665207143],[-61.89001890018899,17.034924551556543],[-61.88281882818828,17.048433169715608]]],[[[-62.64962649626496,17.26625963753048],[-62.635226352263516,17.257816751181068],[-62.62442624426244,17.24261955575213],[-62.62442624426244,17.2257337830533],[-62.64602646026459,17.217290896703886],[-62.660426604266036,17.2257337830533],[-62.671226712267114,17.26288248299072],[-62.68922689226892,17.274702523879895],[-62.70362703627036,17.289899719308835],[-62.710827108271076,17.291588296578723],[-62.743227432274324,17.289899719308835],[-62.75762757627575,17.291588296578723],[-62.790027900279,17.30509691473779],[-62.83322833228331,17.330425573786016],[-62.862028620286196,17.362508541913797],[-62.85482854828548,17.394591510041565],[-62.847628476284754,17.397968664581327],[-62.847628476284754,17.399657241851216],[-62.844028440284404,17.40134581912109],[-62.84042840428404,17.40134581912109],[-62.8260282602826,17.40641155093074],[-62.822428224282234,17.409788705470504],[-62.818828188281884,17.416543014550044],[-62.721627216272154,17.359131387374035],[-62.696426964269634,17.333802728325793],[-62.67842678426784,17.291588296578723],[-62.667626676266764,17.273013946610007],[-62.64962649626496,17.26625963753048]]],[[[-87.82827828278282,17.544874887061127],[-87.81747817478174,17.544874887061127],[-87.8030780307803,17.541497732521364],[-87.78867788677887,17.53136626890206],[-87.78147781477814,17.51279191893336],[-87.78867788677887,17.497594723504406],[-87.80667806678066,17.457068869027225],[-87.8210782107821,17.440183096328397],[-87.83187831878318,17.42329732362957],[-87.84627846278462,17.414854437280155],[-87.86427864278643,17.430051632709095],[-87.87507875078751,17.41316586001028],[-87.88947889478895,17.40303439639098],[-87.90027900279003,17.391214355501802],[-87.90747907479074,17.367574273723434],[-87.91467914679147,17.321982687436602],[-87.91467914679147,17.315228378357077],[-87.92187921879218,17.30509691473779],[-87.92547925479255,17.293276873848598],[-87.92547925479255,17.278079678419658],[-87.93987939879399,17.291588296578723],[-87.93627936279363,17.294965451118486],[-87.93627936279363,17.29834260565825],[-87.93627936279363,17.30171976019801],[-87.93267932679326,17.306785492007663],[-87.93267932679326,17.327048419246253],[-87.92187921879218,17.362508541913797],[-87.91827918279182,17.409788705470504],[-87.9110791107911,17.426674478169332],[-87.89667896678966,17.43849451905851],[-87.87867878678786,17.4503145599477],[-87.8570785707857,17.47057748718629],[-87.84987849878499,17.47057748718629],[-87.83547835478355,17.46551175537664],[-87.8210782107821,17.46382317810675],[-87.81027810278103,17.472266064456164],[-87.8030780307803,17.492528991694755],[-87.8030780307803,17.51279191893336],[-87.81027810278103,17.52630053709241],[-87.8210782107821,17.516169073473122],[-87.83187831878318,17.51110334166347],[-87.83907839078391,17.51279191893336],[-87.83907839078391,17.517857650742997],[-87.82827828278282,17.544874887061127]]],[[[-61.83961839618395,17.593843627887722],[-61.85041850418504,17.587089318808196],[-61.85761857618576,17.600597936967247],[-61.85761857618576,17.641123791444443],[-61.86481864818647,17.659698141413145],[-61.868418684186835,17.6748953368421],[-61.87561875618756,17.691781109540926],[-61.8720187201872,17.71035545950963],[-61.868418684186835,17.706978304969866],[-61.868418684186835,17.703601150430103],[-61.86481864818647,17.696846841350563],[-61.86121861218612,17.685026800461387],[-61.843218432184315,17.666452450492685],[-61.83961839618395,17.654632409603494],[-61.83961839618395,17.641123791444443],[-61.843218432184315,17.629303750555266],[-61.843218432184315,17.620860864205852],[-61.83241832418324,17.614106555126313],[-61.82521825218252,17.63268090509503],[-61.82521825218252,17.65800956414327],[-61.83241832418324,17.679961068651735],[-61.85041850418504,17.690092532271038],[-61.85761857618576,17.701912573160214],[-61.85041850418504,17.72048692312893],[-61.8360183601836,17.727241232208456],[-61.818018180181795,17.703601150430103],[-61.82521825218252,17.69853541862045],[-61.83241832418324,17.696846841350563],[-61.818018180181795,17.691781109540926],[-61.79641796417964,17.69853541862045],[-61.78561785617856,17.696846841350563],[-61.767617676176755,17.685026800461387],[-61.75321753217531,17.66814102776256],[-61.742417424174235,17.65125525506373],[-61.73521735217352,17.634369482364903],[-61.72801728017279,17.6056636687769],[-61.72801728017279,17.58877789607807],[-61.72801728017279,17.57358070064913],[-61.73521735217352,17.55331777341054],[-61.742417424174235,17.549940618870778],[-61.75321753217531,17.551629196140652],[-61.77121771217712,17.544874887061127],[-61.77841778417783,17.56344923702983],[-61.79641796417964,17.576957855188894],[-61.83961839618395,17.593843627887722]]],[[[-64.55764557645576,17.75088131398681],[-64.58644586445864,17.749192736716935],[-64.6080460804608,17.742438427637396],[-64.64764647646476,17.723864077668694],[-64.66924669246693,17.717109768589154],[-64.8780487804878,17.68840395500115],[-64.8960489604896,17.683338223191512],[-64.88884888848888,17.700223995890326],[-64.88524885248852,17.71373261404939],[-64.88884888848888,17.75594704579646],[-64.88524885248852,17.767767086685637],[-64.8780487804878,17.77620997303505],[-64.83844838448384,17.764389932145875],[-64.81684816848168,17.774521395765177],[-64.79524795247951,17.788030013924228],[-64.770047700477,17.79309574573388],[-64.770047700477,17.789718591194116],[-64.73044730447305,17.766078509415763],[-64.70884708847088,17.75763562306635],[-64.6980469804698,17.752569891256698],[-64.69084690846908,17.744127004907284],[-64.66564665646656,17.762701354875986],[-64.62964629646297,17.7711442412254],[-64.590045900459,17.767767086685637],[-64.55764557645576,17.75763562306635],[-64.55764557645576,17.75088131398681]]],[[[-65.3460534605346,18.113925427011594],[-65.35685356853568,18.122368313361008],[-65.37125371253713,18.118991158821245],[-65.38925389253892,18.112236849741706],[-65.46845468454684,18.093662499773004],[-65.48285482854828,18.086908190693464],[-65.50445504455044,18.093662499773004],[-65.53685536855369,18.09028534523324],[-65.56565565655656,18.093662499773004],[-65.580055800558,18.122368313361008],[-65.56565565655656,18.122368313361008],[-65.55845558455584,18.122368313361008],[-65.54045540455404,18.124056890630897],[-65.51885518855188,18.130811199710422],[-65.50085500855008,18.14094266332971],[-65.48645486454865,18.1527627042189],[-65.47925479254792,18.157828436028538],[-65.40005400054,18.16964847691773],[-65.38565385653857,18.16795989964784],[-65.34965349653496,18.156139858758664],[-65.29925299252992,18.154451281488775],[-65.28485284852849,18.149385549679124],[-65.2740527405274,18.137565508789947],[-65.28485284852849,18.134188354250185],[-65.31005310053101,18.135876931520073],[-65.31725317253172,18.13249977698031],[-65.33525335253353,18.12067973609112],[-65.34245342453424,18.113925427011594],[-65.3460534605346,18.113925427011594]]],[[[-87.91467914679147,18.026119408977692],[-87.90747907479074,18.026119408977692],[-87.91467914679147,17.98221639996075],[-87.93627936279363,17.94337912275344],[-87.96507965079651,17.91298473189555],[-88.00828008280082,17.90285326827626],[-88.00828008280082,17.909607577355786],[-87.99747997479975,17.909607577355786],[-87.99387993879938,17.909607577355786],[-87.95787957879578,17.934936236404027],[-87.9470794707947,17.951822009102855],[-87.93987939879399,17.977150668151097],[-87.95787957879578,17.977150668151097],[-87.95067950679507,18.00754505900899],[-87.93267932679326,18.07002241799465],[-87.93267932679326,18.075088149804287],[-87.92547925479255,18.078465304344064],[-87.92187921879218,18.0835310361537],[-87.92187921879218,18.09028534523324],[-87.91827918279182,18.10041680885253],[-87.90387903879038,18.1527627042189],[-87.89667896678966,18.16289416783819],[-87.87867878678786,18.156139858758664],[-87.8570785707857,18.16964847691773],[-87.84627846278462,18.156139858758664],[-87.84987849878499,18.134188354250185],[-87.86067860678607,18.122368313361008],[-87.86787867878678,18.11054827247183],[-87.88947889478895,18.056513799835585],[-87.90027900279003,18.039628027136757],[-87.90747907479074,18.04300518167652],[-87.91467914679147,18.046382336216283],[-87.91467914679147,18.036250872596995],[-87.91827918279182,18.02780798624758],[-87.92547925479255,18.02274225443793],[-87.93267932679326,18.019365099898167],[-87.93267932679326,18.012610790818627],[-87.92547925479255,17.997413595389688],[-87.91827918279182,18.010922213548753],[-87.91467914679147,18.01767652262828],[-87.91467914679147,18.026119408977692]]],[[[-91.6011160111601,18.772470562265852],[-91.55431554315543,18.791044912234554],[-91.53991539915398,18.792733489504442],[-91.53271532715327,18.785979180424903],[-91.5291152911529,18.77753629407549],[-91.52551525515256,18.7674048304562],[-91.52551525515256,18.752207635027247],[-91.5291152911529,18.755584789567024],[-91.53271532715327,18.758961944106787],[-91.55431554315543,18.74545332594772],[-91.5651156511565,18.74038759413807],[-91.57951579515795,18.738699016868196],[-91.57591575915758,18.74545332594772],[-91.56871568715687,18.752207635027247],[-91.56151561515615,18.755584789567024],[-91.55071550715506,18.758961944106787],[-91.57231572315723,18.7572733668369],[-91.60471604716047,18.743764748677847],[-91.61911619116191,18.74545332594772],[-91.65871658716587,18.693107430581364],[-91.68751687516875,18.669467348802996],[-91.72351723517235,18.66271303972347],[-91.70191701917018,18.698173162391],[-91.75591755917559,18.667778771533122],[-91.78471784717847,18.654270153374057],[-91.8171181711817,18.649204421564406],[-91.83511835118351,18.649204421564406],[-91.84231842318422,18.650892998834294],[-91.83871838718387,18.65764730791382],[-91.82431824318243,18.672844503342773],[-91.81351813518135,18.6795988124223],[-91.76671766717666,18.698173162391],[-91.74151741517414,18.703238894200652],[-91.68751687516875,18.731944707788657],[-91.64791647916479,18.755584789567024],[-91.6011160111601,18.772470562265852]]],[[[-81.13581135811357,19.355029720375384],[-81.11781117811178,19.353341143105496],[-81.09981099810997,19.34658683402597],[-81.0890108901089,19.33476679313678],[-81.08541085410853,19.309438134088538],[-81.1070110701107,19.295929515929487],[-81.13581135811357,19.290863784119836],[-81.16821168211682,19.29930667046925],[-81.19341193411934,19.295929515929487],[-81.2150121501215,19.292552361389724],[-81.2330123301233,19.289175206849947],[-81.24741247412474,19.27904374323066],[-81.26541265412654,19.265535125071594],[-81.27621276212761,19.265535125071594],[-81.3410134101341,19.27228943415112],[-81.3590135901359,19.273978011421008],[-81.3770137701377,19.27228943415112],[-81.38781387813877,19.263846547801705],[-81.39861398613986,19.273978011421008],[-81.3950139501395,19.289175206849947],[-81.39141391413914,19.295929515929487],[-81.38781387813877,19.307749556818663],[-81.38421384213842,19.32463532951749],[-81.38421384213842,19.338143947676556],[-81.39141391413914,19.351652565835607],[-81.40581405814058,19.363472606724784],[-81.41661416614166,19.370226915804324],[-81.41301413014129,19.3820469566935],[-81.40941409414094,19.390489843042914],[-81.3950139501395,19.395555574852565],[-81.3770137701377,19.388801265773026],[-81.3770137701377,19.375292647613975],[-81.36981369813698,19.358406874915147],[-81.3590135901359,19.33983252494643],[-81.36261362613625,19.31956959770784],[-81.34821348213482,19.302683825009012],[-81.3230132301323,19.302683825009012],[-81.3050130501305,19.309438134088538],[-81.30141301413013,19.32125817497773],[-81.29421294212942,19.33476679313678],[-81.28701287012869,19.331389638597017],[-81.27261272612726,19.328012484057254],[-81.27261272612726,19.331389638597017],[-81.27621276212761,19.33476679313678],[-81.27981279812798,19.34152110221632],[-81.27261272612726,19.33476679313678],[-81.27621276212761,19.338143947676556],[-81.27621276212761,19.34152110221632],[-81.27621276212761,19.344898256756082],[-81.27261272612726,19.348275411295845],[-81.27621276212761,19.351652565835607],[-81.27981279812798,19.35671829764526],[-81.28701287012869,19.368538338534435],[-81.2690126901269,19.36684976126456],[-81.2330123301233,19.351652565835607],[-81.21141211412113,19.348275411295845],[-81.15741157411574,19.355029720375384],[-81.13581135811357,19.355029720375384]]],[[[-86.74826748267482,20.592756859199397],[-86.74826748267482,20.59613401373916],[-86.7410674106741,20.59613401373916],[-86.73746737467374,20.592756859199397],[-86.73386733867338,20.586002550119858],[-86.73746737467374,20.582625395580095],[-86.74826748267482,20.567428200151156],[-86.78426784267842,20.510016572975147],[-86.79866798667986,20.477933604847365],[-86.8130681306813,20.46104783214855],[-86.84546845468455,20.437407750370184],[-86.85626856268563,20.420521977671356],[-86.88146881468815,20.376618968654412],[-86.8850688506885,20.358044618685696],[-86.88866888668886,20.35297888687606],[-86.89946899468994,20.347913155066408],[-86.91026910269102,20.341158845986868],[-86.91386913869138,20.33102738236758],[-86.91746917469175,20.32427307328804],[-86.92826928269282,20.314141609668752],[-86.97866978669786,20.26855002338192],[-86.99666996669967,20.260107137032506],[-87.00387003870038,20.270238600651794],[-87.00387003870038,20.2905015278904],[-87.01827018270183,20.332715959637454],[-87.02187021870219,20.354667464145933],[-87.01827018270183,20.396881895893003],[-87.00747007470075,20.43571917310031],[-86.96786967869679,20.506639418435384],[-86.93546935469354,20.547165272912565],[-86.92826928269282,20.550542427452328],[-86.91386913869138,20.564051045611393],[-86.90666906669067,20.567428200151156],[-86.89586895868959,20.567428200151156],[-86.89226892268923,20.565739622881267],[-86.8850688506885,20.562362468341504],[-86.88146881468815,20.56067389107163],[-86.87066870668707,20.55898531380174],[-86.84546845468455,20.54885385018244],[-86.83826838268382,20.547165272912565],[-86.82386823868238,20.550542427452328],[-86.80226802268022,20.562362468341504],[-86.78786787867878,20.56067389107163],[-86.76986769867699,20.565739622881267],[-86.75546755467555,20.577559663770458],[-86.74826748267482,20.592756859199397]]],[[[-77.6329763297633,22.05506477491781],[-77.62577625776257,22.041556156758745],[-77.62577625776257,22.029736115869568],[-77.62577625776257,22.016227497710517],[-77.64737647376474,21.97063591142367],[-77.64737647376474,21.96219302507427],[-77.6329763297633,21.945307252375443],[-77.65097650976509,21.945307252375443],[-77.66177661776618,21.94024152056579],[-77.68337683376834,21.925044325136838],[-77.6761767617676,21.943618675105554],[-77.68337683376834,21.95037298418508],[-77.69417694176941,21.948684406915206],[-77.70137701377013,21.931798634216378],[-77.70137701377013,21.928421479676615],[-77.69777697776978,21.921667170597075],[-77.69417694176941,21.91491286151755],[-77.70137701377013,21.911535706977787],[-77.70857708577086,21.911535706977787],[-77.71217712177122,21.916601438787424],[-77.71577715777157,21.923355747866964],[-77.72657726577265,21.938552943295903],[-77.73377733777338,21.948684406915206],[-77.73737737377374,21.95712729326462],[-77.75177751777517,21.965570179614033],[-77.76617766177661,21.960504447804382],[-77.78777787777878,21.963881602344145],[-77.80937809378094,21.974013065963447],[-77.82377823778238,21.98245595231286],[-77.82377823778238,21.99258741593215],[-77.82017820178201,22.002718879551452],[-77.81657816578165,22.01285034317074],[-77.8129781297813,22.02467038405993],[-77.81657816578165,22.031424693139456],[-77.82737827378273,22.036490424949108],[-77.84537845378453,22.041556156758745],[-77.84177841778417,22.03311327040933],[-77.84177841778417,22.02467038405993],[-77.84177841778417,22.01453892044063],[-77.84537845378453,22.007784611361103],[-77.85257852578525,22.028047538599694],[-77.85977859778598,22.028047538599694],[-77.87057870578705,22.01285034317074],[-77.8849788497885,22.009473188630977],[-77.90297902979029,22.01453892044063],[-77.91017910179102,22.031424693139456],[-77.91737917379173,22.043244734028633],[-77.93537935379354,22.056753352187698],[-77.94617946179461,22.073639124886526],[-77.94257942579425,22.09559062939499],[-77.94977949779498,22.10234493847453],[-77.93177931779317,22.10234493847453],[-77.91737917379173,22.093902052125117],[-77.90297902979029,22.083770588505814],[-77.88857888578886,22.0753277021564],[-77.87057870578705,22.0753277021564],[-77.85977859778598,22.08039343396605],[-77.85257852578525,22.088836320315465],[-77.83817838178382,22.09559062939499],[-77.82377823778238,22.100656361204642],[-77.80937809378094,22.098967783934768],[-77.7949779497795,22.09559062939499],[-77.78417784177842,22.088836320315465],[-77.78057780577805,22.085459165775703],[-77.77337773377734,22.071950547616638],[-77.76617766177661,22.068573393076875],[-77.7589775897759,22.070261970346763],[-77.74457744577445,22.08039343396605],[-77.73737737377374,22.08208201123594],[-77.72657726577265,22.07701627942629],[-77.69417694176941,22.058441929457572],[-77.68337683376834,22.05506477491781],[-77.6689766897669,22.06013050672746],[-77.66177661776618,22.068573393076875],[-77.65097650976509,22.070261970346763],[-77.6329763297633,22.05506477491781]]],[[[-77.99657996579965,22.147936524761363],[-78.00378003780037,22.161445142920428],[-78.03618036180362,22.183396647428893],[-78.0469804698047,22.198593842857846],[-78.02898028980289,22.205348151937372],[-78.01818018180181,22.21716819282655],[-78.00738007380073,22.234053965525376],[-78.00378003780037,22.249251160954316],[-78.00378003780037,22.28639986089175],[-78.00738007380073,22.298219901780925],[-78.01818018180181,22.315105674479753],[-78.00378003780037,22.313417097209864],[-77.98577985779858,22.308351365400213],[-77.9749797497975,22.298219901780925],[-77.97137971379713,22.28471128362186],[-77.9749797497975,22.276268397272446],[-77.98577985779858,22.266136933653144],[-77.99297992979929,22.252628315494093],[-77.98577985779858,22.23743112006514],[-77.97857978579785,22.234053965525376],[-77.95337953379533,22.235742542795265],[-77.94257942579425,22.232365388255502],[-77.93537935379354,22.223922501906088],[-77.93177931779317,22.213791038286786],[-77.92457924579246,22.20703672920726],[-77.91017910179102,22.205348151937372],[-77.9209792097921,22.212102461016897],[-77.91737917379173,22.218856770096437],[-77.91377913779138,22.223922501906088],[-77.90657906579065,22.228988233715725],[-77.90297902979029,22.232365388255502],[-77.89577895778957,22.22054534736631],[-77.8849788497885,22.215479615556674],[-77.87417874178742,22.215479615556674],[-77.86697866978669,22.22729965644585],[-77.85977859778598,22.210413883747023],[-77.87057870578705,22.20197099739761],[-77.88857888578886,22.198593842857846],[-77.90297902979029,22.191839533778307],[-77.89217892178921,22.188462379238544],[-77.88137881378813,22.183396647428893],[-77.87417874178742,22.176642338349367],[-77.86697866978669,22.171576606539716],[-77.85617856178561,22.168199451999953],[-77.83817838178382,22.16482229746019],[-77.82737827378273,22.15806798838065],[-77.8489784897849,22.115853556633596],[-77.86337863378634,22.098967783934768],[-77.87417874178742,22.109099247554056],[-77.87777877778777,22.10741067028418],[-77.89217892178921,22.104033515744405],[-77.89577895778957,22.10234493847453],[-77.89937899378994,22.110787824823944],[-77.89937899378994,22.114164979363707],[-77.91017910179102,22.12260786571312],[-77.91377913779138,22.14287079295171],[-77.93537935379354,22.149625102031237],[-77.94977949779498,22.14287079295171],[-77.94257942579425,22.11754213390347],[-77.95337953379533,22.12260786571312],[-77.98937989379894,22.141182215681823],[-77.99657996579965,22.147936524761363]]],[[[-78.19818198181981,22.328614292638804],[-78.17658176581766,22.34212291079787],[-78.18378183781837,22.359008683496697],[-78.20538205382053,22.36745156984611],[-78.21618216182162,22.359008683496697],[-78.21618216182162,22.350565797147283],[-78.21978219782197,22.340434333527995],[-78.2269822698227,22.333680024448455],[-78.23778237782378,22.335368601718343],[-78.24498244982449,22.34718864260752],[-78.24498244982449,22.359008683496697],[-78.24138241382414,22.36745156984611],[-78.23058230582305,22.364074415306348],[-78.23058230582305,22.380960188005176],[-78.24498244982449,22.401223115243766],[-78.27018270182701,22.40966600159318],[-78.29178291782918,22.396157383434115],[-78.2989829898299,22.401223115243766],[-78.30258302583026,22.402911692513655],[-78.30618306183061,22.402911692513655],[-78.31338313383134,22.40460026978353],[-78.2989829898299,22.41979746521247],[-78.27738277382774,22.42486319702212],[-78.24498244982449,22.42486319702212],[-78.21258212582126,22.436683237911296],[-78.19818198181981,22.436683237911296],[-78.1909819098191,22.42486319702212],[-78.16938169381693,22.434994660641422],[-78.14418144181441,22.428240351561882],[-78.11898118981189,22.413043156132943],[-78.1009810098101,22.396157383434115],[-78.09018090180902,22.38433734254494],[-78.08298082980829,22.369140147116],[-78.07578075780758,22.353942951687046],[-78.07218072180721,22.32017140628939],[-78.06858068580685,22.3100399426701],[-78.0469804698047,22.288088438161623],[-78.03618036180362,22.288088438161623],[-78.02178021780217,22.28302270635197],[-78.0109801098011,22.281334129082097],[-78.02898028980289,22.266136933653144],[-78.05058050580506,22.272891242732683],[-78.1009810098101,22.301597056320688],[-78.12258122581225,22.30666278813034],[-78.14778147781477,22.30666278813034],[-78.1729817298173,22.3100399426701],[-78.19818198181981,22.328614292638804]]],[[[-78.4249842498425,22.462011896959538],[-78.44658446584465,22.455257587880013],[-78.47178471784717,22.45188043334025],[-78.51858518585186,22.45188043334025],[-78.54018540185402,22.458634742419775],[-78.5689856898569,22.475520515118603],[-78.60858608586085,22.483963401468017],[-78.63738637386373,22.49240628781743],[-78.65538655386554,22.502537751436734],[-78.6409864098641,22.51435779232591],[-78.65538655386554,22.52955498775485],[-78.6769867698677,22.516046369595784],[-78.69498694986949,22.50760348324637],[-78.69498694986949,22.541375028644026],[-78.69138691386914,22.537997874104263],[-78.68418684186841,22.5346207195645],[-78.68058680586806,22.55488364680309],[-78.66978669786697,22.55657222407298],[-78.65898658986589,22.55150649226333],[-78.65178651786518,22.55150649226333],[-78.6409864098641,22.553195069533203],[-78.59778597785977,22.54475218318379],[-78.57258572585725,22.531243565024738],[-78.54378543785438,22.52786641048496],[-78.5149851498515,22.531243565024738],[-78.48978489784898,22.52786641048496],[-78.46818468184682,22.52955498775485],[-78.45018450184502,22.541375028644026],[-78.43578435784357,22.55488364680309],[-78.41778417784178,22.561637955882617],[-78.39618396183961,22.559949378612743],[-78.37098370983709,22.553195069533203],[-78.3529835298353,22.543063605913915],[-78.34218342183422,22.52786641048496],[-78.34578345783457,22.52955498775485],[-78.3529835298353,22.5346207195645],[-78.34938349383494,22.521112101405436],[-78.28098280982809,22.4569461651499],[-78.27738277382774,22.448503278800487],[-78.28098280982809,22.438371815181185],[-78.28818288182882,22.438371815181185],[-78.2989829898299,22.443437546990836],[-78.30618306183061,22.44512612426071],[-78.42858428584286,22.418108887942594],[-78.42858428584286,22.42486319702212],[-78.42858428584286,22.428240351561882],[-78.4249842498425,22.42992892883177],[-78.4249842498425,22.434994660641422],[-78.42138421384213,22.441748969720948],[-78.41778417784178,22.44512612426071],[-78.41418414184142,22.44512612426071],[-78.40698406984069,22.443437546990836],[-78.40338403384034,22.44512612426071],[-78.39978399783998,22.455257587880013],[-78.40338403384034,22.463700474229427],[-78.41418414184142,22.468766206039078],[-78.4249842498425,22.462011896959538]]],[[[-73.99693996939969,22.657886860265933],[-74.00054000540005,22.664641169345472],[-74.0149401494015,22.684904096584063],[-73.98253982539825,22.67646121023465],[-73.97533975339753,22.671395478424998],[-73.97173971739717,22.683215519314174],[-73.96453964539646,22.69165840566359],[-73.95733957339573,22.69503556020335],[-73.94653946539465,22.69165840566359],[-73.94293942939429,22.69672413747324],[-73.93933939339394,22.698412714743114],[-73.93573935739357,22.698412714743114],[-73.93573935739357,22.705167023822654],[-73.94293942939429,22.708544178362416],[-73.94653946539465,22.710232755632305],[-73.95013950139501,22.713609910172067],[-73.95373953739536,22.720364219251593],[-73.90333903339032,22.720364219251593],[-73.8781387813878,22.723741373791356],[-73.85293852938528,22.733872837410658],[-73.84933849338493,22.728807105601007],[-73.84933849338493,22.725429951061244],[-73.84933849338493,22.723741373791356],[-73.84573845738457,22.720364219251593],[-73.86733867338673,22.6815269420443],[-73.8781387813878,22.671395478424998],[-73.88173881738817,22.6815269420443],[-73.88533885338853,22.689969828393714],[-73.8889388893889,22.69503556020335],[-73.89973899738997,22.698412714743114],[-73.89613896138961,22.684904096584063],[-73.8889388893889,22.671395478424998],[-73.8781387813878,22.664641169345472],[-73.86373863738638,22.671395478424998],[-73.86013860138601,22.657886860265933],[-73.84933849338493,22.581900883121207],[-73.84573845738457,22.566703687692268],[-73.83133831338313,22.541375028644026],[-73.84933849338493,22.537997874104263],[-73.85653856538565,22.521112101405436],[-73.86013860138601,22.499160596896957],[-73.86373863738638,22.480586246928254],[-73.87453874538745,22.468766206039078],[-73.8889388893889,22.455257587880013],[-73.90333903339032,22.443437546990836],[-73.91773917739177,22.438371815181185],[-73.92853928539284,22.42992892883177],[-73.96093960939609,22.370828724385873],[-74.0149401494015,22.330302869908692],[-74.02214022140221,22.32523713809904],[-74.03294032940329,22.32523713809904],[-74.0941409414094,22.301597056320688],[-74.11934119341193,22.296531324511037],[-74.13374133741337,22.28471128362186],[-74.15894158941589,22.245874006414553],[-74.16614166141662,22.239119697335028],[-74.19494194941949,22.21716819282655],[-74.20574205742057,22.212102461016897],[-74.22734227342274,22.208725306477135],[-74.24534245342453,22.20028242012772],[-74.27774277742778,22.171576606539716],[-74.27774277742778,22.18001949288913],[-74.27774277742778,22.215479615556674],[-74.27414274142741,22.225611079175962],[-74.26334263342633,22.228988233715725],[-74.22374223742237,22.225611079175962],[-74.2129421294213,22.228988233715725],[-74.18414184141841,22.254316892763967],[-74.18414184141841,22.261071201843507],[-74.19494194941949,22.267825510923032],[-74.19494194941949,22.274579820002558],[-74.17334173341733,22.28471128362186],[-74.16614166141662,22.288088438161623],[-74.17334173341733,22.28977701543151],[-74.1769417694177,22.291465592701385],[-74.18054180541804,22.294842747241162],[-74.18054180541804,22.301597056320688],[-74.16254162541625,22.3100399426701],[-74.130141301413,22.32523713809904],[-74.10854108541085,22.328614292638804],[-74.10494104941048,22.33199144717858],[-74.0941409414094,22.34718864260752],[-74.07974079740796,22.355631528956934],[-74.07974079740796,22.36745156984611],[-74.08334083340833,22.380960188005176],[-74.08334083340833,22.391091651624464],[-74.06534065340654,22.397845960704004],[-74.03654036540365,22.399534537973878],[-74.0149401494015,22.406288847053418],[-74.0041400414004,22.421486042482357],[-73.99693996939969,22.44512612426071],[-73.98613986139861,22.4569461651499],[-73.9681396813968,22.462011896959538],[-73.94653946539465,22.465389051499315],[-73.90693906939069,22.478897669658366],[-73.88173881738817,22.502537751436734],[-73.87093870938709,22.5346207195645],[-73.88533885338853,22.575146574041682],[-73.91413914139142,22.593720924010398],[-73.98613986139861,22.595409501280272],[-74.0149401494015,22.610606696709226],[-74.03294032940329,22.624115314868277],[-74.02934029340292,22.627492469408054],[-74.01854018540185,22.646066819376756],[-74.01134011340113,22.651132551186407],[-74.0041400414004,22.65450970572617],[-73.99693996939969,22.657886860265933]]],[[[-79.35739357393574,22.637623933027342],[-79.36459364593645,22.63931251029723],[-79.37539375393753,22.642689664836993],[-79.38979389793897,22.651132551186407],[-79.40419404194041,22.662952592075584],[-79.43659436594366,22.698412714743114],[-79.45459454594545,22.69165840566359],[-79.47259472594726,22.69503556020335],[-79.49059490594905,22.70178986928289],[-79.51219512195122,22.71867564198172],[-79.51939519395194,22.720364219251593],[-79.5229952299523,22.725429951061244],[-79.52659526595265,22.735561414680546],[-79.53019530195301,22.740627146490183],[-79.54459544595446,22.750758610109486],[-79.54819548195482,22.75413576464925],[-79.5589955899559,22.760890073728774],[-79.56259562595626,22.77439869188784],[-79.57339573395734,22.787907310046904],[-79.59139591395913,22.79466161912643],[-79.62019620196202,22.782841578237253],[-79.63459634596346,22.78453015550714],[-79.63459634596346,22.80141592820597],[-79.60579605796057,22.809858814555383],[-79.58779587795878,22.811547391825258],[-79.56979569795698,22.804793082745732],[-79.51939519395194,22.749070032839597],[-79.49779497794978,22.733872837410658],[-79.45099450994509,22.720364219251593],[-79.41139411394114,22.69165840566359],[-79.37179371793718,22.67646121023465],[-79.35019350193501,22.657886860265933],[-79.33579335793358,22.63424677848758],[-79.32859328593285,22.61736100578875],[-79.35019350193501,22.635935355757468],[-79.35739357393574,22.637623933027342]]],[[[-74.28854288542885,22.733872837410658],[-74.35334353343534,22.823367432714434],[-74.34974349743497,22.825056009984323],[-74.34614346143461,22.828433164524085],[-74.34614346143461,22.831810319063848],[-74.34614346143461,22.8368760508735],[-74.33534335343353,22.8368760508735],[-74.31734317343174,22.84194178268315],[-74.31014310143101,22.84363035995304],[-74.29934299342993,22.840253205413262],[-74.27054270542705,22.823367432714434],[-74.25974259742597,22.81999027817467],[-74.23814238142381,22.818301700904797],[-74.22734227342274,22.81661312363491],[-74.20214202142022,22.79466161912643],[-74.19854198541985,22.786218732777016],[-74.19494194941949,22.769332960078188],[-74.19494194941949,22.760890073728774],[-74.19134191341914,22.760890073728774],[-74.1769417694177,22.760890073728774],[-74.17334173341733,22.760890073728774],[-74.17334173341733,22.75751291918901],[-74.16614166141662,22.747381455569723],[-74.14814148141481,22.740627146490183],[-74.11214112141121,22.73893856922031],[-74.09054090540906,22.733872837410658],[-74.09774097740977,22.747381455569723],[-74.07614076140761,22.742315723760072],[-74.0149401494015,22.720364219251593],[-74.09054090540906,22.657886860265933],[-74.0941409414094,22.666329746615347],[-74.0941409414094,22.668018323885235],[-74.10494104941048,22.671395478424998],[-74.10494104941048,22.688281251123826],[-74.12294122941229,22.684904096584063],[-74.14814148141481,22.678149787504523],[-74.22374223742237,22.69503556020335],[-74.23094230942309,22.703478446552765],[-74.24894248942489,22.720364219251593],[-74.2561425614256,22.708544178362416],[-74.2669426694267,22.698412714743114],[-74.27774277742778,22.693346982933477],[-74.28494284942849,22.69503556020335],[-74.27774277742778,22.71698706471183],[-74.27774277742778,22.728807105601007],[-74.28854288542885,22.733872837410658]]],[[[-75.7969579695797,23.5393241951447],[-75.78255782557825,23.507241227016934],[-75.74655746557465,23.481912567968692],[-75.66015660156602,23.453206754380687],[-75.67455674556746,23.438009558951748],[-75.69975699756998,23.444763868031274],[-75.74295742957429,23.466715372539753],[-75.79335793357933,23.470092527079515],[-75.81135811358114,23.480223990698804],[-75.80415804158041,23.50048691793741],[-75.82215822158221,23.512306958826585],[-75.840158401584,23.529192731525413],[-75.85815858158581,23.537635617874827],[-75.87255872558725,23.529192731525413],[-75.90855908559085,23.56296427692307],[-75.94455944559445,23.588292935971296],[-75.98775987759878,23.600112976860487],[-76.03816038160382,23.59673582232071],[-76.03816038160382,23.60349013140025],[-76.00936009360093,23.611933017749664],[-76.00216002160022,23.613621595019538],[-76.00576005760057,23.62375305863884],[-76.0129601296013,23.632195944988254],[-76.00936009360093,23.637261676797905],[-76.02016020160201,23.64401598587743],[-76.03096030960309,23.655836026766607],[-76.03096030960309,23.669344644925673],[-76.02376023760237,23.679476108544975],[-76.0129601296013,23.677787531275087],[-76.00216002160022,23.679476108544975],[-75.99495994959949,23.684541840354612],[-75.99135991359913,23.6862304176245],[-75.98055980559805,23.682853263084738],[-75.9769597695977,23.677787531275087],[-75.96975969759697,23.66427891311602],[-75.95895958959589,23.654147449496733],[-75.94455944559445,23.649081717687082],[-75.93015930159301,23.64570456314732],[-75.90855908559085,23.64570456314732],[-75.91215912159122,23.640638831337668],[-75.91215912159122,23.637261676797905],[-75.91575915759157,23.633884522258143],[-75.9229592295923,23.632195944988254],[-75.85455854558545,23.568030008732705],[-75.80775807758077,23.542701349684464],[-75.7969579695797,23.5393241951447]]],[[[-74.85734857348574,22.980405118813536],[-74.84654846548464,22.970273655194234],[-74.83934839348393,22.944944996145992],[-74.83214832148322,22.9145506052881],[-74.83214832148322,22.875713328080806],[-74.83574835748357,22.86389328719163],[-74.83934839348393,22.860516132651853],[-74.85374853748537,22.86389328719163],[-74.85734857348574,22.870647596271155],[-74.86454864548645,22.90441914166881],[-74.86814868148682,22.902730564398922],[-74.8789487894879,22.897664832589285],[-74.8861488614886,22.922993491637513],[-74.91494914949149,22.970273655194234],[-74.92574925749257,23.012488086941303],[-74.9329493294933,23.02599670510037],[-74.9689496894969,23.063145405037787],[-74.97974979749797,23.073276868657075],[-74.99054990549905,23.078342600466726],[-75.10575105751057,23.100294104975205],[-75.1309513095131,23.11380272313427],[-75.14175141751417,23.12393418675356],[-75.21375213752137,23.16614861850063],[-75.22815228152281,23.17121435031028],[-75.22815228152281,23.181345813929568],[-75.2209522095221,23.18978870027898],[-75.21735217352173,23.198231586628395],[-75.20655206552065,23.20667447297781],[-75.20295202952029,23.20667447297781],[-75.19215192151921,23.19147727754887],[-75.16335163351633,23.179657236659693],[-75.15255152551525,23.16446004123074],[-75.17775177751777,23.167837195770517],[-75.18855188551885,23.17121435031028],[-75.18135181351813,23.159394309421103],[-75.17055170551706,23.1492628458018],[-75.15975159751598,23.14419711399215],[-75.14535145351454,23.14419711399215],[-75.13455134551346,23.137442804912624],[-75.11655116551165,23.122245609483684],[-75.10575105751057,23.117179877674033],[-75.0949509495095,23.115491300404145],[-75.07695076950769,23.11380272313427],[-75.06975069750698,23.117179877674033],[-75.07335073350733,23.12731134129332],[-75.1309513095131,23.18641154573922],[-75.13815138151381,23.203297318438047],[-75.13455134551346,23.230314554756177],[-75.12735127351273,23.24888890472488],[-75.11655116551165,23.265774677423707],[-75.11295112951129,23.280971872852646],[-75.11295112951129,23.304611954631014],[-75.12015120151202,23.33162919094913],[-75.1309513095131,23.355269272727497],[-75.14535145351454,23.370466468156437],[-75.14895148951489,23.365400736346785],[-75.15975159751598,23.35695784999737],[-75.15975159751598,23.380597931775725],[-75.19575195751958,23.409303745363744],[-75.19575195751958,23.432943827142097],[-75.21015210152102,23.43463240441197],[-75.2209522095221,23.439698136221622],[-75.22815228152281,23.446452445301162],[-75.2209522095221,23.459961063460213],[-75.24255242552425,23.473469681619278],[-75.24975249752497,23.490355454318106],[-75.2569525695257,23.53594704060494],[-75.27855278552785,23.58322720416166],[-75.28575285752858,23.588292935971296],[-75.29295292952929,23.584915781431533],[-75.30015300153,23.579850049621896],[-75.3109531095311,23.57647289508212],[-75.30375303753037,23.62544163590873],[-75.3109531095311,23.63895025406778],[-75.33255332553325,23.62375305863884],[-75.32175321753218,23.637261676797905],[-75.31815318153181,23.642327408607542],[-75.3109531095311,23.64570456314732],[-75.32535325353253,23.649081717687082],[-75.33255332553325,23.642327408607542],[-75.33975339753397,23.630507367718366],[-75.35415354153541,23.62375305863884],[-75.35415354153541,23.632195944988254],[-75.34335343353433,23.640638831337668],[-75.33615336153362,23.652458872226845],[-75.32895328953289,23.667656067655784],[-75.33255332553325,23.6862304176245],[-75.32535325353253,23.684541840354612],[-75.32175321753218,23.68116468581485],[-75.31455314553145,23.677787531275087],[-75.3109531095311,23.672721799465435],[-75.25335253352533,23.58322720416166],[-75.23895238952389,23.574784317812245],[-75.2209522095221,23.55620996784353],[-75.20295202952029,23.532569886065176],[-75.19575195751958,23.51399553609646],[-75.18135181351813,23.446452445301162],[-75.17055170551706,23.429566672602334],[-75.15255152551525,23.410992322633618],[-75.0949509495095,23.304611954631014],[-75.0949509495095,23.29448049101171],[-75.08775087750877,23.286037604662297],[-75.08415084150842,23.26408610015382],[-75.08415084150842,23.220183091136875],[-75.07695076950769,23.17121435031028],[-75.0589505895059,23.142508536722275],[-75.03015030150301,23.12393418675356],[-74.94734947349473,23.093539795895666],[-74.91134911349113,23.06652255957755],[-74.84654846548464,23.000668046052127],[-74.85014850148501,22.995602314242475],[-74.85374853748537,22.985470850623173],[-74.85734857348574,22.980405118813536]]],[[[-74.46854468544684,24.022257294331155],[-74.47574475744757,24.010437253441978],[-74.49014490144901,23.969911398964797],[-74.49374493744936,23.959779935345495],[-74.55854558545585,23.95302562626597],[-74.55854558545585,23.959779935345495],[-74.54054540545405,23.980042862584085],[-74.52974529745298,24.010437253441978],[-74.52614526145261,24.045897376109508],[-74.52974529745298,24.0762917669674],[-74.52974529745298,24.099931848745754],[-74.51894518945188,24.115129044174708],[-74.50094500945009,24.123571930524122],[-74.48294482944829,24.130326239603647],[-74.47574475744757,24.1353919714133],[-74.47214472144721,24.14045770322295],[-74.4649446494465,24.143834857762712],[-74.45774457744577,24.142146280492824],[-74.44334443344432,24.116817621444582],[-74.43974439744397,24.11344046690482],[-74.43974439744397,24.10330900328553],[-74.4289442894429,24.089800385126466],[-74.42534425344253,24.083046076046926],[-74.4289442894429,24.074603189697527],[-74.43254432544325,24.054340262458922],[-74.43614436144361,24.045897376109508],[-74.47574475744757,23.980042862584085],[-74.47934479344794,23.991862903473262],[-74.47574475744757,24.001994367092564],[-74.46854468544684,24.022257294331155]]],[[[-81.50661506615066,24.638587997838343],[-81.50661506615066,24.631833688758817],[-81.53181531815318,24.61494791605999],[-81.56421564215641,24.601439297900924],[-81.63621636216362,24.582864947932208],[-81.63621636216362,24.589619257011748],[-81.61821618216182,24.604816452440687],[-81.60381603816037,24.60988218425034],[-81.59661596615966,24.604816452440687],[-81.5750157501575,24.6132593387901],[-81.56781567815678,24.618325070599752],[-81.56421564215641,24.621702225139515],[-81.56061560615606,24.623390802409403],[-81.55341553415533,24.631833688758817],[-81.56781567815678,24.640276575108217],[-81.5750157501575,24.64534230691787],[-81.58221582215822,24.652096615997408],[-81.55341553415533,24.643653729647994],[-81.53901539015389,24.636899420568454],[-81.53181531815318,24.625079379679278],[-81.52821528215281,24.625079379679278],[-81.5210152101521,24.638587997838343],[-81.52461524615246,24.64871946145763],[-81.53541535415354,24.653785193267282],[-81.55341553415533,24.652096615997408],[-81.55341553415533,24.658850925076933],[-81.54981549815498,24.66560523415646],[-81.54981549815498,24.668982388696236],[-81.5570155701557,24.67067096596611],[-81.56781567815678,24.672359543236],[-81.56061560615606,24.69262247047459],[-81.55341553415533,24.69262247047459],[-81.55341553415533,24.687556738664938],[-81.54981549815498,24.687556738664938],[-81.54621546215462,24.685868161395064],[-81.53901539015389,24.67573669777576],[-81.50661506615066,24.638587997838343]]],[[[-75.31455314553145,24.21813225763755],[-75.30735307353073,24.20293506220861],[-75.28935289352893,24.145523435032587],[-75.33615336153362,24.159032053191652],[-75.35775357753577,24.16072063046154],[-75.37935379353793,24.159032053191652],[-75.4261542615426,24.150589166842238],[-75.44055440554405,24.142146280492824],[-75.45855458554585,24.128637662333773],[-75.48375483754837,24.125260507793996],[-75.5089550895509,24.142146280492824],[-75.51975519755197,24.162409207731415],[-75.49815498154982,24.172540671350717],[-75.48375483754837,24.17591782589048],[-75.4621546215462,24.186049289509782],[-75.44415444154441,24.199557907668833],[-75.43335433354333,24.213066525827898],[-75.41535415354153,24.213066525827898],[-75.40455404554045,24.24008376214603],[-75.41175411754118,24.272166730273796],[-75.42975429754297,24.289052502972623],[-75.45855458554585,24.294118234782275],[-75.48015480154801,24.309315430211214],[-75.53415534155342,24.388678561895702],[-75.54135541355413,24.417384375483707],[-75.55935559355594,24.44271303453195],[-75.56655566555665,24.456221652691013],[-75.57015570155701,24.48830462081878],[-75.5881558815588,24.511944702597134],[-75.61335613356133,24.527141898026088],[-75.64575645756457,24.528830475295962],[-75.64215642156421,24.538961938915264],[-75.64215642156421,24.55078197980444],[-75.64575645756457,24.564290597963506],[-75.64575645756457,24.576110638852683],[-75.65295652956529,24.58793067974186],[-75.65655656556565,24.59299641155151],[-75.66375663756637,24.596373566091273],[-75.71055710557106,24.631833688758817],[-75.73935739357393,24.64534230691787],[-75.75015750157502,24.652096615997408],[-75.75735757357573,24.660539502346822],[-75.75735757357573,24.667293811426347],[-75.75375753757537,24.67573669777576],[-75.73215732157321,24.699376779554115],[-75.7249572495725,24.701065356824003],[-75.71055710557106,24.699376779554115],[-75.70335703357033,24.695999625014352],[-75.67455674556746,24.672359543236],[-75.64935649356494,24.662228079616696],[-75.63855638556385,24.657162347807045],[-75.62775627756277,24.64534230691787],[-75.61695616956169,24.581176370662334],[-75.61335613356133,24.562602020693618],[-75.60255602556025,24.55247055707433],[-75.5881558815588,24.538961938915264],[-75.57375573755738,24.522076166216436],[-75.55935559355594,24.491681775358543],[-75.53055530555305,24.444401611801837],[-75.47655476554765,24.370104211926986],[-75.45855458554585,24.356595593767935],[-75.41895418954189,24.33802124379922],[-75.40095400954009,24.32282404837028],[-75.37575375753757,24.27554388481356],[-75.36855368553685,24.268789575734033],[-75.35775357753577,24.262035266654493],[-75.31455314553145,24.21813225763755]]],[[[-81.0890108901089,24.685868161395064],[-81.09261092610926,24.701065356824003],[-81.10341103411034,24.706131088633654],[-81.13581135811357,24.70781966590353],[-81.11421114211142,24.716262552252942],[-81.06021060210601,24.731459747681896],[-81.03861038610385,24.73483690222166],[-81.04221042210422,24.72808259314212],[-81.04221042210422,24.724705438602356],[-81.06741067410674,24.716262552252942],[-81.07461074610745,24.709508243173417],[-81.08181081810818,24.699376779554115],[-81.0890108901089,24.685868161395064]]],[[[-81.4310143101431,24.75509982946025],[-81.42741427414273,24.751722674920487],[-81.42381423814238,24.750034097650598],[-81.41661416614166,24.74834552038071],[-81.38781387813877,24.72808259314212],[-81.35541355413554,24.685868161395064],[-81.3410134101341,24.647030884187757],[-81.36261362613625,24.631833688758817],[-81.36261362613625,24.660539502346822],[-81.4310143101431,24.75509982946025]]],[[[-80.92340923409233,24.768608447619314],[-80.9270092700927,24.765231293079538],[-80.93060930609306,24.763542715809663],[-80.9450094500945,24.761854138539775],[-80.95940959409593,24.750034097650598],[-81.03141031410314,24.721328284062594],[-80.95580955809558,24.768608447619314],[-80.92340923409233,24.77536275669884],[-80.92340923409233,24.768608447619314]]],[[[-77.47817478174781,24.991500647243825],[-77.49617496174962,24.99994353359324],[-77.51417514175141,25.001632110863127],[-77.53217532175321,24.99994353359324],[-77.54657546575466,25.001632110863127],[-77.5609756097561,25.018517883561955],[-77.55017550175502,25.038780810800546],[-77.52857528575285,25.053978006229485],[-77.50337503375033,25.064109469848788],[-77.48897488974889,25.065798047118662],[-77.45657456574565,25.07761808800784],[-77.44217442174421,25.079306665277727],[-77.3989739897399,25.07761808800784],[-77.35577355773557,25.084372397087378],[-77.34137341373413,25.084372397087378],[-77.32697326973269,25.079306665277727],[-77.30177301773017,25.065798047118662],[-77.26217262172621,25.057355160769248],[-77.2729727297273,25.04553511988007],[-77.3809738097381,25.001632110863127],[-77.40257402574025,25.001632110863127],[-77.4349743497435,25.01514072902218],[-77.44217442174421,25.006697842672764],[-77.45297452974529,24.994877801783588],[-77.46737467374673,24.986434915434174],[-77.47817478174781,24.991500647243825]]],[[[-80.32220322203221,25.24816439226599],[-80.35460354603546,25.20594996051892],[-80.36540365403654,25.180621301470694],[-80.36180361803618,25.16542410604174],[-80.36180361803618,25.158669796962215],[-80.4410044100441,25.086060974357252],[-80.45180451804518,25.0809952425476],[-80.46620466204662,25.084372397087378],[-80.46980469804697,25.0725523561982],[-80.48060480604806,25.050600851689723],[-80.48780487804878,25.038780810800546],[-80.52020520205201,25.01514072902218],[-80.55620556205562,24.971237720005234],[-80.57780577805778,24.950974792766644],[-80.59940599405994,24.949286215496755],[-80.6030060300603,24.961106256385932],[-80.59220592205922,24.966171988195583],[-80.57780577805778,24.969549142735346],[-80.5670056700567,24.974614874544997],[-80.55620556205562,25.008386419942653],[-80.5490054900549,25.01514072902218],[-80.53460534605345,25.016829306292067],[-80.52740527405274,25.021895038101718],[-80.5130051300513,25.04215796534031],[-80.48780487804878,25.065798047118662],[-80.48060480604806,25.07761808800784],[-80.48420484204841,25.091126706166904],[-80.46260462604626,25.094503860706666],[-80.45180451804518,25.099569592516318],[-80.44460444604445,25.111389633405494],[-80.44820448204482,25.118143942485034],[-80.44820448204482,25.121521097024797],[-80.44460444604445,25.121521097024797],[-80.43740437404374,25.118143942485034],[-80.43380433804337,25.12996398337421],[-80.43740437404374,25.1400954469935],[-80.45180451804518,25.14347260153326],[-80.46620466204662,25.138406869723624],[-80.4590045900459,25.156981219692327],[-80.41220412204122,25.14684975607304],[-80.39420394203941,25.190752765089982],[-80.35820358203581,25.2279014650274],[-80.34740347403473,25.24816439226599],[-80.3510035100351,25.263361587694945],[-80.35820358203581,25.27011589677447],[-80.36540365403654,25.27518162858412],[-80.36900369003689,25.28531309220341],[-80.36180361803618,25.29206740128295],[-80.32940329403294,25.298821710362475],[-80.31860318603185,25.30726459671189],[-80.28980289802898,25.342724719379433],[-80.27180271802717,25.35285618299872],[-80.25020250202502,25.344413296649307],[-80.25380253802538,25.339347564839656],[-80.25740257402573,25.335970410299893],[-80.2610026100261,25.33259325576013],[-80.26460264602646,25.330904678490242],[-80.27180271802717,25.324150369410717],[-80.2790027900279,25.31233032852154],[-80.28620286202862,25.300510287632363],[-80.28620286202862,25.29206740128295],[-80.28980289802898,25.281935937663647],[-80.32220322203221,25.24816439226599]]],[[[-97.19917199171991,26.27650794962456],[-97.18117181171812,26.230916363337727],[-97.17757177571775,26.205587704289485],[-97.17037170371704,26.180259045241243],[-97.16317163171631,26.131290304414648],[-97.16317163171631,26.11440453171582],[-97.16677166771667,26.102584490826644],[-97.17757177571775,26.11947026352547],[-97.18837188371883,26.14986465438335],[-97.21357213572135,26.293393722323387],[-97.22797227972279,26.33729673134033],[-97.23877238772387,26.36431396765846],[-97.24957249572495,26.391331203976577],[-97.26037260372604,26.467317181121302],[-97.26757267572675,26.490957262899656],[-97.29277292772927,26.529794540106963],[-97.29997299972999,26.550057467345553],[-97.31437314373143,26.607469094521562],[-97.3179731797318,26.615911980870976],[-97.32877328773287,26.632797753569804],[-97.33957339573395,26.654749258078283],[-97.35037350373503,26.696963689825353],[-97.36477364773647,26.720603771603706],[-97.35757357573576,26.72904665795312],[-97.36117361173612,26.73411238976277],[-97.36837368373683,26.740866698842297],[-97.36837368373683,26.747621007921836],[-97.3719737197372,26.75606389427125],[-97.36837368373683,26.759441048811013],[-97.35757357573576,26.762818203350776],[-97.35757357573576,26.76619535789054],[-97.35757357573576,26.77126108970019],[-97.36117361173612,26.779703976049603],[-97.36477364773647,26.783081130589366],[-97.36837368373683,26.79152401693878],[-97.39717397173972,26.830361294146087],[-97.38637386373864,26.865821416813617],[-97.38637386373864,26.899592962211273],[-97.39357393573935,26.9941532893247],[-97.40437404374043,27.03130198926212],[-97.40437404374043,27.051564916500723],[-97.39717397173972,27.08871361643814],[-97.39717397173972,27.107287966406844],[-97.40437404374043,27.12586231637556],[-97.39717397173972,27.14612524361415],[-97.38997389973899,27.193405407170857],[-97.37557375573755,27.20860260259981],[-97.38277382773828,27.18833967536122],[-97.37557375573755,26.93167593033904],[-97.34317343173431,26.75606389427125],[-97.23877238772387,26.445365676612823],[-97.23877238772387,26.433545635723647],[-97.23157231572316,26.42172559483447],[-97.22437224372243,26.39977409032599],[-97.21357213572135,26.340673885880108],[-97.20277202772027,26.298459454133038],[-97.19917199171991,26.27650794962456]]],[[[-97.07677076770767,27.814801842487697],[-97.0659706597066,27.84013050153594],[-97.05157051570515,27.8435076560757],[-97.04437044370444,27.835064769726287],[-97.05517055170552,27.824933306107],[-97.17757177571775,27.652698424578958],[-97.26037260372604,27.49566073847987],[-97.32157321573216,27.357197402349485],[-97.34677346773468,27.274457116125234],[-97.35037350373503,27.235619838917927],[-97.36477364773647,27.22379979802875],[-97.38637386373864,27.22379979802875],[-97.39717397173972,27.2288655298384],[-97.38997389973899,27.24575130253723],[-97.3719737197372,27.34875451600007],[-97.33957339573395,27.409543297715857],[-97.32157321573216,27.456823461272563],[-97.31077310773108,27.478774965781042],[-97.29997299972999,27.507480779369047],[-97.2819728197282,27.541252324766702],[-97.27117271172712,27.566580983814944],[-97.25677256772568,27.59359822013306],[-97.2459724597246,27.623992610990953],[-97.24237242372423,27.632435497340367],[-97.24957249572495,27.644255538229544],[-97.25317253172531,27.659452733658483],[-97.23157231572316,27.65100984730907],[-97.22077220772208,27.644255538229544],[-97.21357213572135,27.632435497340367],[-97.20637206372064,27.632435497340367],[-97.15237152371523,27.74050444261286],[-97.12357123571235,27.769210256200864],[-97.08037080370804,27.804670378868394],[-97.07677076770767,27.814801842487697]]],[[[-80.3870038700387,27.71855293810438],[-80.39060390603906,27.726995824453795],[-80.40860408604085,27.7557016380418],[-80.43740437404374,27.829999037916636],[-80.45180451804518,27.851950542425115],[-80.44820448204482,27.855327696964878],[-80.44460444604445,27.857016274234766],[-80.43740437404374,27.86039342877453],[-80.43740437404374,27.855327696964878],[-80.43380433804337,27.851950542425115],[-80.43380433804337,27.848573387885352],[-80.43020430204302,27.84519623334559],[-80.4230042300423,27.804670378868394],[-80.40140401404014,27.764144524391213],[-80.36180361803618,27.701667165405553],[-80.34740347403473,27.664518465468134],[-80.34380343803437,27.642566960959655],[-80.34020340203402,27.622304033721065],[-80.33660336603366,27.607106838292125],[-80.16740167401673,27.196782561710634],[-80.16380163801638,27.173142479932267],[-80.17820178201782,27.20184829352027],[-80.19620196201961,27.22379979802875],[-80.20700207002069,27.262637075236057],[-80.26820268202681,27.382526061397726],[-80.27180271802717,27.39603467955679],[-80.27540275402754,27.401100411366443],[-80.28980289802898,27.41123187498573],[-80.29340293402933,27.417986184065256],[-80.29340293402933,27.429806224954447],[-80.30780307803077,27.461889193082214],[-80.34740347403473,27.612172570101777],[-80.35820358203581,27.629058342800604],[-80.36540365403654,27.642566960959655],[-80.37260372603726,27.65607557911872],[-80.37620376203762,27.686469969976613],[-80.3870038700387,27.706732897215204],[-80.3870038700387,27.71855293810438]]],[[[-96.87876878768787,28.13056579195576],[-96.8679686796868,28.13563152376541],[-96.85356853568535,28.13056579195576],[-96.84636846368464,28.120434328336472],[-96.84276842768428,28.11199144198706],[-96.84636846368464,28.103548555637644],[-96.84636846368464,28.079908473859277],[-96.84996849968499,28.071465587509863],[-96.939969399694,27.98365956947596],[-96.97956979569796,27.92793651956984],[-97.01557015570155,27.890787819632422],[-97.029970299703,27.872213469663706],[-97.03357033570336,27.851950542425115],[-97.04437044370444,27.87052489239383],[-97.029970299703,27.90091928325171],[-96.9939699396994,27.94819944680843],[-96.96516965169651,27.976905260396435],[-96.9579695796958,27.98365956947596],[-96.95436954369544,27.993791033095263],[-96.95436954369544,28.00054534217479],[-96.97236972369723,28.00561107398444],[-96.97236972369723,28.01067680579409],[-96.91476914769147,28.098482823827993],[-96.90036900369003,28.101859978367756],[-96.89316893168932,28.10861428744728],[-96.88596885968859,28.118745751066584],[-96.87876878768787,28.13056579195576]]],[[[-96.42876428764288,28.393983846057466],[-96.4179641796418,28.39567242332734],[-96.41076410764107,28.39736100059723],[-96.40716407164071,28.39567242332734],[-96.40356403564036,28.387229536977927],[-96.40356403564036,28.36021230065981],[-96.40356403564036,28.351769414310397],[-96.40716407164071,28.34501510523087],[-96.41436414364144,28.33319506434168],[-96.4179641796418,28.328129332532043],[-96.489964899649,28.29773494167415],[-96.52236522365223,28.289292055324736],[-96.55476554765548,28.27071770535602],[-96.60876608766087,28.23019185087884],[-96.70236702367023,28.186288841861895],[-96.72756727567275,28.160960182813653],[-96.78156781567816,28.127188637415998],[-96.81036810368103,28.103548555637644],[-96.82116821168212,28.08835136020869],[-96.82836828368283,28.071465587509863],[-96.83556835568355,28.071465587509863],[-96.8319683196832,28.08835136020869],[-96.82476824768247,28.106925710177407],[-96.81396813968139,28.123811482876235],[-96.80316803168031,28.133942946495523],[-96.80316803168031,28.140697255575063],[-96.81036810368103,28.15082871919435],[-96.81396813968139,28.169403069163067],[-96.80676806768068,28.18797741913177],[-96.79236792367924,28.19473172821131],[-96.77076770767708,28.19810888275107],[-96.73836738367383,28.206551769100486],[-96.72396723967239,28.20824034637036],[-96.70956709567095,28.21330607818001],[-96.67356673566735,28.2335690054186],[-96.66276662766627,28.24032331449814],[-96.65556655566556,28.25720908719697],[-96.61236612366123,28.27747201443556],[-96.60156601566015,28.287603478054848],[-96.59436594365944,28.2926692098645],[-96.54756547565475,28.311243559833215],[-96.52956529565296,28.329817909801918],[-96.51516515165152,28.336572218881457],[-96.49356493564936,28.33994937342122],[-96.4539645396454,28.336572218881457],[-96.44316443164432,28.341637950691094],[-96.43236432364323,28.36021230065981],[-96.42876428764288,28.368655187009225],[-96.43236432364323,28.388918114247815],[-96.42876428764288,28.393983846057466]]],[[[-118.25218252182522,29.08967768124913],[-118.23058230582305,29.060971867661124],[-118.21978219782198,29.01538028137429],[-118.23058230582305,28.99680593140559],[-118.21978219782198,28.95965723146817],[-118.2269822698227,28.915754222451213],[-118.25218252182522,28.885359831593334],[-118.27018270182703,28.885359831593334],[-118.28098280982809,28.878605522513794],[-118.28818288182882,28.878605522513794],[-118.28818288182882,28.868474058894506],[-118.2989829898299,28.87691694524392],[-118.29538295382955,28.888736986133097],[-118.28458284582845,28.89211414067286],[-118.29178291782918,28.915754222451213],[-118.2989829898299,28.930951417880166],[-118.29538295382955,28.947837190578994],[-118.2989829898299,28.968100117817585],[-118.3169831698317,28.981608735976636],[-118.30258302583026,28.998494508675464],[-118.31338313383134,29.025511744993594],[-118.32418324183242,29.040708940422533],[-118.3349833498335,29.050840404041836],[-118.35658356583565,29.067726176740663],[-118.35658356583565,29.082923372169603],[-118.36378363783638,29.098120567598542],[-118.36738367383674,29.11500634029737],[-118.36378363783638,29.131892112996198],[-118.35658356583565,29.148777885695026],[-118.3349833498335,29.16397508112398],[-118.30978309783097,29.170729390203505],[-118.29538295382955,29.185926585632444],[-118.27378273782737,29.189303740172207],[-118.25578255782557,29.180860853822807],[-118.27018270182703,29.165663658393854],[-118.28458284582845,29.15215504023479],[-118.28458284582845,29.13695784480585],[-118.27738277382774,29.11669491756726],[-118.26658266582666,29.098120567598542],[-118.25218252182522,29.08967768124913]]],[[[-91.80271802718026,29.48987049421133],[-91.83871838718387,29.483116185131806],[-91.89631896318963,29.51688773052946],[-91.9071190711907,29.5219534623391],[-91.91791917919178,29.530396348688512],[-92.01872018720186,29.56923362589582],[-92.03672036720367,29.582742244054884],[-92.03672036720367,29.59625086221395],[-92.01152011520115,29.613136634912777],[-91.99351993519934,29.618202366722414],[-91.97191971919719,29.619890943992303],[-91.95031950319503,29.62664525307183],[-91.9431194311943,29.63171098488148],[-91.93231932319323,29.643531025770656],[-91.92871928719286,29.64690818031042],[-91.91791917919178,29.648596757580307],[-91.86031860318603,29.63677671669113],[-91.84591845918459,29.628333830341717],[-91.82071820718207,29.606382325833238],[-91.78831788317883,29.59456228494406],[-91.78831788317883,29.592873707674173],[-91.75951759517595,29.586119398594647],[-91.73431734317343,29.58443082132476],[-91.71991719917199,29.581053666784996],[-91.71271712717127,29.57429935770547],[-91.72351723517235,29.55910216227653],[-91.75951759517595,29.540527812307815],[-91.77391773917739,29.530396348688512],[-91.77751777517774,29.5135105759897],[-91.77751777517774,29.500001957830634],[-91.7811178111781,29.493247648751094],[-91.78831788317883,29.48987049421133],[-91.80271802718026,29.48987049421133]]],[[[-64.67644676446764,32.38915766659993],[-64.64764647646476,32.36889473936134],[-64.65484654846549,32.358763275742035],[-64.65484654846549,32.35032038939262],[-64.6620466204662,32.353697543932384],[-64.66564665646656,32.358763275742035],[-64.680046800468,32.3621404302818],[-64.68364683646836,32.35707469847216],[-64.69084690846908,32.363829007551686],[-64.70884708847088,32.35200896666251],[-64.70524705247053,32.343566080313096],[-64.69444694446945,32.34018892577333],[-64.67644676446764,32.33512319396368],[-64.6980469804698,32.32668030761427],[-64.7160471604716,32.31486026672509],[-64.74124741247412,32.29966307129614],[-64.75564755647557,32.29290876221661],[-64.76284762847628,32.282777298597324],[-64.78444784447844,32.26758010316837],[-64.80964809648096,32.255760062279194],[-64.83484834848348,32.24731717592978],[-64.84924849248492,32.24900575319967],[-64.860048600486,32.24900575319967],[-64.8780487804878,32.25744863954908],[-64.88164881648817,32.27095725770813],[-64.88524885248852,32.282777298597324],[-64.8780487804878,32.27940014405755],[-64.8780487804878,32.28615445313709],[-64.87444874448744,32.296285916756375],[-64.8780487804878,32.30472880310579],[-64.87084870848707,32.303040225835915],[-64.86724867248672,32.30810595764555],[-64.86364863648636,32.303040225835915],[-64.85644856448565,32.29797449402626],[-64.86724867248672,32.29122018494674],[-64.87084870848707,32.27940014405755],[-64.87084870848707,32.276022989517784],[-64.86724867248672,32.27264583497802],[-64.84924849248492,32.27095725770813],[-64.84924849248492,32.26758010316837],[-64.86364863648636,32.26926868043826],[-64.86364863648636,32.26251437135872],[-64.85644856448565,32.254071485009305],[-64.84564845648455,32.254071485009305],[-64.83124831248313,32.25913721681896],[-64.82764827648276,32.265891525898496],[-64.82044820448203,32.26758010316837],[-64.80244802448024,32.276022989517784],[-64.78084780847809,32.28784303040696],[-64.77724777247772,32.29122018494674],[-64.79524795247951,32.28953160767685],[-64.8060480604806,32.29290876221661],[-64.81324813248132,32.30472880310579],[-64.80964809648096,32.30810595764555],[-64.78084780847809,32.303040225835915],[-64.76284762847628,32.31148311218533],[-64.7520475204752,32.3131716894552],[-64.74124741247412,32.323303153074505],[-64.73764737647376,32.323303153074505],[-64.71964719647195,32.323303153074505],[-64.71244712447124,32.33005746215403],[-64.70524705247053,32.33681177123357],[-64.71244712447124,32.34187750304321],[-64.72324723247232,32.338500348503445],[-64.7340473404734,32.33343461669379],[-64.7340473404734,32.328368884884156],[-64.74124741247412,32.328368884884156],[-64.74124741247412,32.33343461669379],[-64.73764737647376,32.343566080313096],[-64.72324723247232,32.35200896666251],[-64.71244712447124,32.363829007551686],[-64.6980469804698,32.37396047117099],[-64.67644676446764,32.38915766659993]]],[[[-75.47655476554765,35.69539196103025],[-75.4729547295473,35.67512903379166],[-75.45495454954549,35.62278313842529],[-75.45135451354513,35.58225728394811],[-75.46935469354693,35.50458272953351],[-75.49095490954909,35.33572500254523],[-75.51615516155161,35.25973902540052],[-75.52695526955269,35.24454182997157],[-75.5449554495545,35.23272178908239],[-75.5521555215552,35.23272178908239],[-75.58455584555846,35.23272178908239],[-75.62415624156242,35.219213170923325],[-75.64575645756457,35.21583601638356],[-75.68175681756817,35.20063882095462],[-75.69975699756998,35.19726166641486],[-75.70335703357033,35.19557308914497],[-75.71775717757177,35.18713020279556],[-75.7249572495725,35.18544162552567],[-75.73575735757358,35.18713020279556],[-75.73215732157321,35.19388451187508],[-75.7249572495725,35.20063882095462],[-75.7141571415714,35.205704552764274],[-75.70695706957069,35.205704552764274],[-75.70335703357033,35.21077028457391],[-75.69975699756998,35.21414743911369],[-75.69615696156961,35.219213170923325],[-75.69255692556925,35.2225903254631],[-75.69255692556925,35.22765605727274],[-75.68895688956889,35.231033211812516],[-75.68535685356854,35.23272178908239],[-75.68175681756817,35.231033211812516],[-75.68175681756817,35.22765605727274],[-75.67815678156781,35.225967480002865],[-75.67455674556746,35.225967480002865],[-75.61335613356133,35.25298471632098],[-75.54135541355413,35.27324764355957],[-75.51615516155161,35.29182199352829],[-75.51615516155161,35.32221638438618],[-75.51255512555124,35.33403642527536],[-75.49815498154982,35.38300516610195],[-75.49455494554945,35.42015386603937],[-75.48375483754837,35.45730256597679],[-75.48375483754837,35.47925407048527],[-75.48375483754837,35.48938553410456],[-75.48735487354872,35.50964846134316],[-75.48735487354872,35.52146850223234],[-75.48375483754837,35.531599965851626],[-75.4729547295473,35.553551470360105],[-75.46935469354693,35.56537151124928],[-75.46935469354693,35.589011593027635],[-75.47655476554765,35.62953744750483],[-75.50175501755017,35.70383484737967],[-75.50175501755017,35.72240919734837],[-75.51975519755197,35.756180742746025],[-75.52695526955269,35.776443669984616],[-75.51615516155161,35.78150940179427],[-75.49815498154982,35.7680007836352],[-75.48735487354872,35.74436070185685],[-75.48015480154801,35.71734346553873],[-75.47655476554765,35.69539196103025]]],[[[-75.15255152551525,38.206306361345824],[-75.11295112951129,38.28060376122066],[-75.09855098550985,38.30255526572914],[-75.09135091350913,38.30255526572914],[-75.10215102151021,38.273849452141135],[-75.13815138151381,38.218126402235],[-75.17055170551706,38.148894734169815],[-75.18855188551885,38.08979452972392],[-75.22815228152281,38.04758009797685],[-75.23535235352354,38.039137211627434],[-75.31455314553145,37.919248225465765],[-75.32535325353253,37.89223098914765],[-75.34335343353433,37.87534521644882],[-75.35055350553505,37.86690233009941],[-75.36495364953649,37.86352517555963],[-75.37935379353793,37.855082289210216],[-75.39375393753937,37.86521375282952],[-75.40095400954009,37.87365663917893],[-75.39015390153901,37.878722370988584],[-75.36855368553685,37.87027948463917],[-75.35775357753577,37.87365663917893],[-75.35055350553505,37.88885383460787],[-75.36495364953649,37.89560814368741],[-75.37575375753757,37.897296720957286],[-75.36855368553685,37.90911676184646],[-75.35055350553505,37.91249391638624],[-75.33975339753397,37.915871070926],[-75.32895328953289,37.92262538000553],[-75.32535325353253,37.93275684362483],[-75.31815318153181,37.941199729974244],[-75.30375303753037,37.97328269810201],[-75.29655296552966,37.98510273899119],[-75.27855278552785,38.00705424349967],[-75.25335253352533,38.03069432527802],[-75.24975249752497,38.03744863435756],[-75.22815228152281,38.06953160248533],[-75.19935199351993,38.10330314788298],[-75.19575195751958,38.11343461150227],[-75.18855188551885,38.142140425090275],[-75.17775177751777,38.16746908413852],[-75.15255152551525,38.206306361345824]]],[[[-74.12654126541265,40.632791898167255],[-74.10854108541085,40.63785762997691],[-74.09774097740977,40.64292336178656],[-74.08334083340833,40.64967767086608],[-74.07614076140761,40.64798909359621],[-74.07254072540725,40.644611939056446],[-74.07254072540725,40.63785762997691],[-74.07614076140761,40.634480475437144],[-74.07254072540725,40.62266043454797],[-74.06174061740617,40.61421754819855],[-74.05454054540544,40.60239750730938],[-74.10134101341013,40.555117343752656],[-74.13374133741337,40.53316583924418],[-74.1409414094141,40.534854416514065],[-74.14814148141481,40.534854416514065],[-74.16254162541625,40.52810010743454],[-74.18054180541804,40.519657221085126],[-74.19134191341914,40.51121433473571],[-74.20934209342093,40.50952575746582],[-74.22734227342274,40.5027714483863],[-74.24174241742418,40.499394293846535],[-74.25254252542526,40.50108287111641],[-74.25254252542526,40.50783718019595],[-74.24894248942489,40.512902912005586],[-74.23814238142381,40.51628006654535],[-74.23814238142381,40.52810010743454],[-74.24174241742418,40.539920148323716],[-74.23454234542345,40.54836303467313],[-74.22014220142201,40.55342876648278],[-74.20574205742057,40.56018307556231],[-74.20214202142022,40.57031453918161],[-74.19854198541985,40.58551173461055],[-74.19494194941949,40.612528970928665],[-74.19134191341914,40.62772616635762],[-74.18414184141841,40.63785762997691],[-74.16974169741697,40.64292336178656],[-74.15534155341552,40.63785762997691],[-74.12654126541265,40.632791898167255]]],[[[-70.05490054900548,41.39265166961448],[-70.05130051300513,41.39602882415424],[-70.04050040500405,41.394340246884354],[-70.02970029700296,41.38589736053494],[-70.01890018900188,41.370700165106],[-70.00450004500044,41.341994351518],[-69.97569975699757,41.301468497040815],[-69.95769957699576,41.276139837992574],[-69.96849968499684,41.24912260167444],[-70.00090000900009,41.238991138055155],[-70.0441004410044,41.24405686986479],[-70.09810098100981,41.24236829259492],[-70.13770137701377,41.24743402440457],[-70.23490234902349,41.28458272434199],[-70.25650256502564,41.2930256106914],[-70.27810278102781,41.30822280612034],[-70.27090270902708,41.311599960660104],[-70.25650256502564,41.30991138339023],[-70.2421024210242,41.301468497040815],[-70.21690216902168,41.29809134250104],[-70.15930159301593,41.2930256106914],[-70.12330123301233,41.296402765231164],[-70.10530105301052,41.294714187961276],[-70.09810098100981,41.28964845615164],[-70.09090090900908,41.28964845615164],[-70.08370083700837,41.2930256106914],[-70.07290072900729,41.301468497040815],[-70.04770047700477,41.30822280612034],[-70.02970029700296,41.31835426973964],[-70.01890018900188,41.33017431062882],[-70.01530015300153,41.34537150605776],[-70.03330033300333,41.34030577424811],[-70.05850058500585,41.316665692469755],[-70.07650076500765,41.311599960660104],[-70.0441004410044,41.35043723786741],[-70.03690036900369,41.37238874237589],[-70.05490054900548,41.39265166961448]]],[[[-70.57690576905769,41.42811179228201],[-70.56250562505625,41.41798032866272],[-70.5481054810548,41.414603174122945],[-70.51570515705157,41.41291459685307],[-70.50850508505084,41.36225727875659],[-70.52650526505265,41.358880124216824],[-70.66690666906669,41.357191546946936],[-70.69570695706956,41.352125815137285],[-70.72450724507245,41.341994351518],[-70.7461074610746,41.33017431062882],[-70.77490774907749,41.30484565158058],[-70.78570785707856,41.30484565158058],[-70.80370803708037,41.31328853792999],[-70.81450814508145,41.32004284700952],[-70.83250832508325,41.34030577424811],[-70.84690846908468,41.34706008332765],[-70.84690846908468,41.35381439240717],[-70.78210782107821,41.35381439240717],[-70.75330753307533,41.37238874237589],[-70.74250742507425,41.384208783265066],[-70.71370713707137,41.419668905932596],[-70.70290702907029,41.42811179228201],[-70.68850688506885,41.43317752409166],[-70.65970659706596,41.456817605870015],[-70.60570605706057,41.47370337856884],[-70.59130591305913,41.47201480129897],[-70.60210602106021,41.4483747195206],[-70.58770587705877,41.45344045133025],[-70.58050580505805,41.46526049221943],[-70.56970569705696,41.47370337856884],[-70.55530555305553,41.46863764675919],[-70.54450544505444,41.45344045133025],[-70.54450544505444,41.44499756498084],[-70.55530555305553,41.436554678631424],[-70.57690576905769,41.42811179228201]]],[[[-122.35982359823598,47.976414444887126],[-122.3490234902349,47.96121724945817],[-122.34542345423455,47.95108578583887],[-122.3490234902349,47.94602005402922],[-122.35622356223561,47.94264289948947],[-122.37422374223742,47.91900281771112],[-122.37782377823778,47.913937085901466],[-122.38142381423813,47.90718277682194],[-122.3850238502385,47.90549419955204],[-122.39222392223922,47.90549419955204],[-122.39582395823959,47.91055993136169],[-122.39582395823959,47.917314240441215],[-122.39942399423994,47.91900281771112],[-122.42102421024211,47.91224850863156],[-122.43542435424354,47.91055993136169],[-122.44262442624427,47.91562566317134],[-122.44262442624427,47.93757716767982],[-122.44982449824498,47.9595286721883],[-122.46062460624606,47.978103022157],[-122.4750247502475,47.9865459085064],[-122.48942489424894,47.984857331236526],[-122.50742507425073,47.971348713077475],[-122.51822518225183,47.966282981267824],[-122.5290252902529,47.9679715585377],[-122.53982539825398,47.971348713077475],[-122.54702547025471,47.979791599426875],[-122.56142561425614,47.9865459085064],[-122.57942579425794,48.00512025847513],[-122.59382593825939,48.02538318571371],[-122.59382593825939,48.042268958412535],[-122.60822608226081,48.060843308381266],[-122.61542615426154,48.07435192654032],[-122.6010260102601,48.13007497644645],[-122.60822608226081,48.153715058224805],[-122.62262622626227,48.16384652184411],[-122.64422644226443,48.162157944574204],[-122.66942669426695,48.15033790368503],[-122.69462694626947,48.180732294542935],[-122.69822698226983,48.18410944908268],[-122.7090270902709,48.18748660362246],[-122.72342723427235,48.19255233543211],[-122.73782737827378,48.19930664451164],[-122.7450274502745,48.20606095359116],[-122.75582755827558,48.229701035369516],[-122.75222752227522,48.24996396260812],[-122.66942669426695,48.363098639690264],[-122.6550265502655,48.38505014419874],[-122.62982629826298,48.38505014419874],[-122.61542615426154,48.390115876008366],[-122.60462604626046,48.398558762357794],[-122.59742597425975,48.40193591689757],[-122.58662586625866,48.390115876008366],[-122.5830258302583,48.38336156692884],[-122.5830258302583,48.37998441238909],[-122.57942579425794,48.376607257849315],[-122.57942579425794,48.35634433061074],[-122.51462514625146,48.32257278521308],[-122.51822518225183,48.29386697162508],[-122.53262532625325,48.283735508005776],[-122.54702547025471,48.28204693073587],[-122.56142561425614,48.28542408527565],[-122.57582575825758,48.29724412616483],[-122.59382593825939,48.30737558978413],[-122.60822608226081,48.2989327034347],[-122.6190261902619,48.28204693073587],[-122.62622626226262,48.26684973530695],[-122.64062640626406,48.28880123981543],[-122.64782647826479,48.280358353466],[-122.64782647826479,48.26347258076717],[-122.65142651426514,48.24996396260812],[-122.66582665826658,48.24152107625869],[-122.72342723427235,48.23307818990929],[-122.7090270902709,48.221258149020116],[-122.69462694626947,48.21956957175021],[-122.66582665826658,48.22632388082977],[-122.65142651426514,48.224635303559864],[-122.62982629826298,48.21450383994059],[-122.61542615426154,48.21281526267069],[-122.59382593825939,48.20606095359116],[-122.57942579425794,48.189175180892335],[-122.57222572225723,48.16553509911398],[-122.55782557825577,48.12163209009702],[-122.55422554225542,48.06590904019089],[-122.54702547025471,48.01694029936431],[-122.53622536225362,48.00512025847513],[-122.52182521825219,48.011874567554656],[-122.5110251102511,48.03551464933301],[-122.52182521825219,48.05746615384149],[-122.52542525425254,48.07941765834997],[-122.51462514625146,48.091237699239144],[-122.4930249302493,48.07941765834997],[-122.47862478624786,48.06590904019089],[-122.46062460624606,48.05408899930171],[-122.38142381423813,48.01525172209443],[-122.3670236702367,48.00005452666548],[-122.35982359823598,47.976414444887126]]],[[[-123.01863018630186,48.49987339855076],[-123.01863018630186,48.496496244010984],[-123.00063000630007,48.47285616223263],[-122.98982989829898,48.46779043042298],[-122.98262982629825,48.46441327588323],[-122.96462964629646,48.45765896680368],[-122.96462964629646,48.45090465772415],[-122.9790297902979,48.4559703895338],[-122.98982989829898,48.4559703895338],[-123.00063000630007,48.452593234994026],[-123.0150301503015,48.45090465772415],[-123.02943029430294,48.45428181226393],[-123.04023040230402,48.45934754407358],[-123.04383043830438,48.466101853153106],[-123.05463054630546,48.47285616223263],[-123.06543065430654,48.47792189404228],[-123.0690306903069,48.47961047131216],[-123.09063090630906,48.47961047131216],[-123.10143101431015,48.47961047131216],[-123.11583115831158,48.48467620312181],[-123.13023130231302,48.48974193493146],[-123.1410314103141,48.496496244010984],[-123.14823148231483,48.50493913036041],[-123.15543155431554,48.51338201670981],[-123.16623166231662,48.54377640756769],[-123.17343173431735,48.5741707984256],[-123.17343173431735,48.57923653023525],[-123.17703177031771,48.599499457473826],[-123.15903159031589,48.61469665290278],[-123.13023130231302,48.61976238471243],[-123.10143101431015,48.60963092109313],[-123.09423094230942,48.59781088020395],[-123.07623076230763,48.5843022620449],[-123.05823058230581,48.572482221155724],[-123.02583025830259,48.56235075753642],[-123.00423004230042,48.53871067575807],[-122.9790297902979,48.531956366678514],[-122.9790297902979,48.52520205759899],[-122.99342993429934,48.51338201670981],[-123.00063000630007,48.510004862170064],[-123.01143011430113,48.51169343943994],[-123.0150301503015,48.51169343943994],[-123.01863018630186,48.49987339855076]]],[[[-122.7450274502745,48.66366539372939],[-122.75222752227522,48.65522250737996],[-122.75582755827558,48.65015677557031],[-122.79902799027991,48.62989384833173],[-122.80622806228062,48.62313953925218],[-122.80622806228062,48.616385230172654],[-122.80982809828097,48.611319498363],[-122.82062820628207,48.60963092109313],[-122.83142831428314,48.613008075632905],[-122.84222842228422,48.621450961982305],[-122.86742867428674,48.65015677557031],[-122.87822878228782,48.67717401188844],[-122.88182881828818,48.68730547550774],[-122.88542885428853,48.69574836185714],[-122.89622896228963,48.69912551639692],[-122.90702907029069,48.697436939127044],[-122.91062910629105,48.68730547550774],[-122.90702907029069,48.67717401188844],[-122.90702907029069,48.670419702808914],[-122.90702907029069,48.66535397099926],[-122.91062910629105,48.656911084649835],[-122.86022860228601,48.60118803474373],[-122.87462874628747,48.594433725664175],[-122.8890288902889,48.58936799385455],[-122.91782917829178,48.58936799385455],[-122.93222932229321,48.5927451483943],[-122.9430294302943,48.6028766120136],[-122.94662946629467,48.61469665290278],[-122.95022950229503,48.62313953925218],[-122.96822968229682,48.634959580141384],[-122.9790297902979,48.63833673468113],[-122.98622986229861,48.63327100287148],[-122.98622986229861,48.61976238471243],[-122.98982989829898,48.60456518928348],[-122.9970299702997,48.59781088020395],[-123.01143011430113,48.60625376655335],[-123.02223022230223,48.618073807442556],[-123.02583025830259,48.626516693791956],[-123.02583025830259,48.63664815741126],[-123.02223022230223,48.64171388922091],[-122.9970299702997,48.66028823918961],[-122.98982989829898,48.66366539372939],[-122.9790297902979,48.66704254826914],[-122.92862928629286,48.70925698001622],[-122.91782917829178,48.710945557286095],[-122.89622896228963,48.71263413455597],[-122.85662856628566,48.70925698001622],[-122.7450274502745,48.66366539372939]]],[[[-123.36783367833678,48.773422916271755],[-123.38223382233822,48.75653714357293],[-123.40743407434074,48.75484856630305],[-123.45783457834578,48.76666860719223],[-123.45063450634507,48.759914298112705],[-123.42903429034291,48.737962793604225],[-123.42903429034291,48.7295199072548],[-123.43983439834398,48.72276559817527],[-123.46143461434613,48.716011289095746],[-123.4830348303483,48.71263413455597],[-123.49743497434974,48.716011289095746],[-123.50823508235082,48.724454175445146],[-123.5190351903519,48.72783132998492],[-123.52983529835298,48.73458563906445],[-123.54063540635406,48.746405679953625],[-123.54783547835478,48.75653714357293],[-123.55143551435515,48.77004576173198],[-123.54783547835478,48.78355437989106],[-123.53343533435334,48.79368584351033],[-123.53343533435334,48.800440152589886],[-123.5550355503555,48.81394877074894],[-123.56943569435694,48.83252312071764],[-123.5730357303573,48.84940889341647],[-123.54783547835478,48.862917511575546],[-123.5730357303573,48.88149186154425],[-123.58743587435873,48.898377634243076],[-123.59463594635946,48.91864056148165],[-123.59463594635946,48.95241210687931],[-123.5910359103591,48.94734637506966],[-123.58743587435873,48.942280643260034],[-123.58023580235802,48.93046060237083],[-123.50463504635046,48.89162332516355],[-123.43263432634326,48.84265458433694],[-123.44343443434434,48.84096600706707],[-123.45783457834578,48.844343161606815],[-123.47223472234722,48.85109747068637],[-123.4830348303483,48.85954035703577],[-123.49023490234902,48.862917511575546],[-123.49383493834938,48.86122893430564],[-123.49743497434974,48.85616320249599],[-123.50103501035011,48.84940889341647],[-123.49743497434974,48.84603173887672],[-123.47223472234722,48.82745738890799],[-123.36783367833678,48.773422916271755]]],[[[-123.45063450634507,49.445476669685064],[-123.45063450634507,49.458985287844115],[-123.45423454234542,49.46911675146342],[-123.45783457834578,49.477559637812845],[-123.44343443434434,49.486002524162245],[-123.44343443434434,49.49275683324177],[-123.45423454234542,49.507954028670724],[-123.43983439834398,49.521462646829775],[-123.41823418234182,49.53159411044908],[-123.3930339303393,49.53665984225873],[-123.38223382233822,49.540036996798506],[-123.37143371433714,49.54172557406838],[-123.36063360633605,49.540036996798506],[-123.3570335703357,49.534971264988855],[-123.34263342633426,49.50626545140085],[-123.3210332103321,49.486002524162245],[-123.32463324633247,49.46236244238389],[-123.34263342633426,49.44209951514529],[-123.37503375033751,49.43872236060554],[-123.36783367833678,49.45391955603449],[-123.37503375033751,49.464051019653766],[-123.38943389433894,49.46742817419354],[-123.40383403834039,49.46573959692367],[-123.41463414634146,49.458985287844115],[-123.42183421834218,49.450542401494715],[-123.43263432634326,49.445476669685064],[-123.45063450634507,49.445476669685064]]],[[[-124.66384663846638,49.74773200099406],[-124.65664656646567,49.75448631007359],[-124.6530465304653,49.76124061915314],[-124.6530465304653,49.76799492823267],[-124.65664656646567,49.77474923731219],[-124.65664656646567,49.78150354639172],[-124.6530465304653,49.788257855471244],[-124.6530465304653,49.79163501001102],[-124.65664656646567,49.80176647363032],[-124.64584645846458,49.80176647363032],[-124.63144631446315,49.80176647363032],[-124.62064620646206,49.80007789636042],[-124.60984609846099,49.7950121645508],[-124.59544595445954,49.784880700931495],[-124.57744577445774,49.76124061915314],[-124.5630456304563,49.75448631007359],[-124.51984519845197,49.74773200099406],[-124.48744487444874,49.73422338283501],[-124.39024390243902,49.72071476467593],[-124.3470434704347,49.70382899197713],[-124.3290432904329,49.681877487468654],[-124.32184321843218,49.67005744657948],[-124.2930429304293,49.64979451934087],[-124.28944289442894,49.63966305572157],[-124.28224282242823,49.62784301483239],[-124.27144271442714,49.61602297394322],[-124.17424174241742,49.55354561495756],[-124.14544145441454,49.5299055331792],[-124.12384123841238,49.499511142321325],[-124.14184141841417,49.48937967870202],[-124.16344163441634,49.49613398778155],[-124.19584195841958,49.521462646829775],[-124.37944379443795,49.602514355784166],[-124.4370443704437,49.61264581940344],[-124.44064440644406,49.61771155121309],[-124.4370443704437,49.624465860292645],[-124.44064440644406,49.63122016937217],[-124.46224462244622,49.65317167388065],[-124.4730447304473,49.67005744657948],[-124.4730447304473,49.67174602384935],[-124.48024480244803,49.673434601119226],[-124.48384483844839,49.673434601119226],[-124.49464494644945,49.67174602384935],[-124.51624516245163,49.68356606473853],[-124.51624516245163,49.6852546420084],[-124.53424534245343,49.690320373818054],[-124.57384573845738,49.708894723786756],[-124.61344613446134,49.717337610136184],[-124.63144631446315,49.725780496485584],[-124.66384663846638,49.74773200099406]]],[[[-126.65826658266582,49.788257855471244],[-126.64746647466475,49.77306066004232],[-126.64386643866439,49.75955204188324],[-126.64026640266403,49.74097769191454],[-126.6330663306633,49.69200895108793],[-126.61866618666187,49.65317167388065],[-126.61866618666187,49.63122016937217],[-126.64026640266403,49.59576004670461],[-126.67986679866799,49.59238289216486],[-126.80586805868059,49.62784301483239],[-126.8238682386824,49.63628590118182],[-126.84186841868419,49.65317167388065],[-126.85626856268563,49.664991714769826],[-126.91386913869138,49.69200895108793],[-126.97506975069751,49.735911960104886],[-126.97146971469715,49.75448631007359],[-126.96066960669606,49.757863464613365],[-126.949869498695,49.752797732803714],[-126.93186931869319,49.73928911464466],[-126.92826928269282,49.749420578263965],[-126.92106921069211,49.75955204188324],[-126.91026910269102,49.76461777369289],[-126.88146881468815,49.76968350550254],[-126.86346863468634,49.77306066004232],[-126.85626856268563,49.779814969121844],[-126.86346863468634,49.788257855471244],[-126.87426874268743,49.788257855471244],[-126.8850688506885,49.78656927820137],[-126.89226892268923,49.78319212366159],[-126.89946899468995,49.78150354639172],[-126.90666906669067,49.78319212366159],[-126.91746917469175,49.793323587280895],[-126.92106921069211,49.7950121645508],[-126.92826928269282,49.79670074182067],[-126.94266942669427,49.806832205439974],[-126.95346953469534,49.80852078270985],[-126.96066960669606,49.80852078270985],[-126.98586985869858,49.815275091789374],[-126.97866978669786,49.828783709948425],[-126.96786967869679,49.833849441758076],[-126.94626946269463,49.83553801902798],[-126.86346863468634,49.855800946266555],[-126.80226802268022,49.88112960531481],[-126.76986769867699,49.882818182584685],[-126.7590675906759,49.87099814169551],[-126.7410674106741,49.855800946266555],[-126.72306723067231,49.84904663718703],[-126.70146701467014,49.860866678076206],[-126.69066690666907,49.85748952353646],[-126.67626676266762,49.833849441758076],[-126.65826658266582,49.788257855471244]]],[[[-125.02745027450274,50.1445476594165],[-124.98424984249843,50.17831920481416],[-124.98064980649806,50.18845066843346],[-124.98424984249843,50.20027070932264],[-125.00225002250022,50.22222221383112],[-125.00585005850058,50.23235367745039],[-125.00225002250022,50.23404225472029],[-124.9950499504995,50.23235367745039],[-124.98784987849879,50.225599368370865],[-124.93024930249302,50.16987631846473],[-124.91944919449195,50.15130196849603],[-124.91584915849158,50.14623623668638],[-124.91584915849158,50.13948192760685],[-124.91944919449195,50.132727618527326],[-124.9230492304923,50.13103904125745],[-124.92664926649266,50.127661886717675],[-124.9230492304923,50.12090757763815],[-124.91584915849158,50.1158418458285],[-124.91224912249123,50.114153268558624],[-124.90864908649087,50.09895607312967],[-124.9050490504905,50.087136032240494],[-124.90144901449014,50.078693145891066],[-124.89064890648906,50.06856168227179],[-124.91944919449195,50.060118795922364],[-124.94824948249482,50.05505306411271],[-124.96264962649627,50.04829875503319],[-124.9770497704977,50.02128151871506],[-124.98784987849879,50.01452720963553],[-125.00585005850058,50.01790436417531],[-125.00945009450095,50.029724405064485],[-125.00945009450095,50.043233023223536],[-125.00585005850058,50.051675909572964],[-125.00585005850058,50.06349595046214],[-125.00585005850058,50.07193883681154],[-125.01305013050131,50.08038172316097],[-125.05265052650526,50.105710382209196],[-125.05985059850599,50.1158418458285],[-125.0490504905049,50.1259733094478],[-125.02745027450274,50.1445476594165]]],[[[-125.20025200252002,50.04154444595366],[-125.21825218252182,50.060118795922364],[-125.22545225452254,50.06856168227179],[-125.22185221852217,50.070250259541666],[-125.21105211052111,50.07531599135132],[-125.2290522905229,50.08882460951037],[-125.2830528305283,50.11753042309837],[-125.29385293852938,50.127661886717675],[-125.3010530105301,50.13103904125745],[-125.31185311853119,50.1361047730671],[-125.32265322653225,50.14285908214663],[-125.32985329853298,50.154679123035805],[-125.32985329853298,50.16481058665511],[-125.33345333453335,50.19351640024311],[-125.34785347853477,50.220533636561214],[-125.34785347853477,50.24248514106969],[-125.34425344253442,50.261059491038395],[-125.33705337053371,50.274568109197475],[-125.3190531905319,50.283010995546874],[-125.29025290252903,50.2914538818963],[-125.26145261452615,50.29483103643605],[-125.2470524705247,50.288076727356525],[-125.23625236252363,50.266125222848046],[-125.2290522905229,50.261059491038395],[-125.21465214652147,50.25599375922877],[-125.20025200252002,50.23741940926004],[-125.17865178651786,50.22897652291064],[-125.17145171451713,50.21884505929134],[-125.16425164251643,50.20533644113229],[-125.16425164251643,50.19182782297321],[-125.17145171451713,50.17831920481416],[-125.18585185851859,50.168187741194856],[-125.1930519305193,50.158056277575554],[-125.18585185851859,50.1445476594165],[-125.21105211052111,50.13779335033698],[-125.22545225452254,50.13103904125745],[-125.2290522905229,50.12090757763815],[-125.21105211052111,50.10233322766945],[-125.20385203852038,50.097267495859796],[-125.1930519305193,50.095578918589894],[-125.18585185851859,50.092201764050145],[-125.17865178651786,50.08207030043084],[-125.1750517505175,50.07362741408144],[-125.17145171451713,50.04154444595366],[-125.16065160651607,50.002707168746355],[-125.16425164251643,49.99257570512705],[-125.17865178651786,49.99933001420658],[-125.18585185851859,50.00946147782588],[-125.1930519305193,50.03141298233436],[-125.20025200252002,50.04154444595366]]],[[[-125.33705337053371,50.301585345515605],[-125.35865358653587,50.29483103643605],[-125.38385383853839,50.296519613705954],[-125.39825398253981,50.30833965459513],[-125.40545405454054,50.33197973637348],[-125.39465394653946,50.34886550907231],[-125.3730537305373,50.350554086342186],[-125.32985329853298,50.342111199992786],[-125.31545315453155,50.34886550907231],[-125.31185311853119,50.364062704501265],[-125.31545315453155,50.38094847720009],[-125.31545315453155,50.39783424989892],[-125.31185311853119,50.41134286805797],[-125.3010530105301,50.4282286407568],[-125.28665286652867,50.4366715271062],[-125.23625236252363,50.41472002259775],[-125.22185221852217,50.41134286805797],[-125.21465214652147,50.4096542907881],[-125.20385203852038,50.39614567262902],[-125.20025200252002,50.39107994081937],[-125.1930519305193,50.39107994081937],[-125.17865178651786,50.39276851808927],[-125.17145171451713,50.39107994081937],[-125.16785167851678,50.38432563173984],[-125.16065160651607,50.36237412723136],[-125.1570515705157,50.35393124088196],[-125.15345153451534,50.34379977726266],[-125.12825128251282,50.32184827275418],[-125.1138511385114,50.296519613705954],[-125.07785077850778,50.2627480683083],[-125.0670506705067,50.25092802741912],[-125.06345063450635,50.24248514106969],[-125.05625056250562,50.230665100180516],[-125.0490504905049,50.21884505929134],[-125.0490504905049,50.20533644113229],[-125.05625056250562,50.19520497751299],[-125.0670506705067,50.19351640024311],[-125.07425074250742,50.19858213205276],[-125.08145081450814,50.20533644113229],[-125.09585095850957,50.16481058665511],[-125.10665106651066,50.1445476594165],[-125.12825128251282,50.1344161957972],[-125.13545135451355,50.127661886717675],[-125.14265142651426,50.1259733094478],[-125.15345153451534,50.1344161957972],[-125.15345153451534,50.13948192760685],[-125.13905139051391,50.17156489573463],[-125.13185131851318,50.19182782297321],[-125.13185131851318,50.21377932748169],[-125.13545135451355,50.23235367745039],[-125.16785167851678,50.247550872879344],[-125.17865178651786,50.2627480683083],[-125.21105211052111,50.31847111821443],[-125.21105211052111,50.32184827275418],[-125.22545225452254,50.32184827275418],[-125.23625236252363,50.31678254094453],[-125.2470524705247,50.315093963674656],[-125.25785257852579,50.31847111821443],[-125.26865268652686,50.32691400456383],[-125.27585275852758,50.32691400456383],[-125.28665286652867,50.323536850024055],[-125.31185311853119,50.32015969548431],[-125.32265322653225,50.31340538640478],[-125.32625326253262,50.306651077325256],[-125.33705337053371,50.301585345515605]]],[[[-126.61866618666187,50.67307234488979],[-126.60066600666006,50.67476092215966],[-126.58986589865899,50.679826653969315],[-126.58626586265862,50.68826954031874],[-126.58626586265862,50.701778158477794],[-126.55026550265502,50.73217254933567],[-126.52866528665287,50.74399259022485],[-126.5070650706507,50.7406154356851],[-126.47826478264783,50.75750120838393],[-126.42786427864279,50.79464990832133],[-126.3990639906399,50.80815852648041],[-126.3810638106381,50.81153568102016],[-126.34146341463415,50.81322425829006],[-126.32346323463234,50.81491283555994],[-126.29106291062911,50.82842145371899],[-126.2730627306273,50.83011003098889],[-126.24426244262443,50.81660141282981],[-126.23346233462334,50.80646994921051],[-126.22266222662226,50.79464990832133],[-126.21906219062191,50.78451844470206],[-126.21186211862118,50.77100982654298],[-126.18666186661866,50.7591897856538],[-126.17946179461794,50.7507468993044],[-126.18666186661866,50.742304012954975],[-126.23346233462334,50.72710681752602],[-126.24426244262443,50.71697535390675],[-126.26946269462695,50.684892385778966],[-126.26586265862659,50.66462945854036],[-126.28746287462874,50.65449799492109],[-126.34866348663486,50.65112084038131],[-126.4350643506435,50.66969519035001],[-126.46026460264602,50.66462945854036],[-126.44946449464494,50.65618657219096],[-126.44946449464494,50.65112084038131],[-126.45666456664566,50.64605510857166],[-126.47106471064711,50.644366531301785],[-126.48546485464854,50.64605510857166],[-126.5070650706507,50.65449799492109],[-126.52146521465215,50.657875149460835],[-126.57546575465754,50.652809417651184],[-126.60426604266043,50.65449799492109],[-126.61866618666187,50.67307234488979]]],[[[-152.79452794527944,58.28686725479088],[-152.79452794527944,58.28855583206075],[-152.80172801728017,58.28855583206075],[-152.81252812528126,58.290244409330654],[-152.84852848528485,58.30206445021983],[-152.90252902529025,58.30713018202948],[-152.92052920529204,58.31557306837888],[-152.93132931329313,58.32908168653793],[-152.9241292412924,58.33752457288736],[-152.9061290612906,58.34259030469701],[-152.88812888128882,58.34090172742711],[-152.86652866528664,58.33583599561749],[-152.85932859328594,58.334147418347584],[-152.84492844928448,58.33752457288736],[-152.84132841328415,58.33583599561749],[-152.84132841328415,58.334147418347584],[-152.84132841328415,58.33245884107771],[-152.84492844928448,58.334147418347584],[-152.84132841328415,58.33245884107771],[-152.8269282692827,58.32908168653793],[-152.82332823328233,58.32739310926806],[-152.81972819728196,58.32063880018853],[-152.81252812528126,58.31557306837888],[-152.7981279812798,58.317261645648756],[-152.79452794527944,58.312195913839105],[-152.78732787327874,58.298687295680054],[-152.78372783727838,58.28855583206075],[-152.79452794527944,58.28686725479088]]],[[[-64.47844478444784,60.33342290588871],[-64.44964449644496,60.31484855592001],[-64.43524435244352,60.30133993776093],[-64.4280442804428,60.286142742332004],[-64.47124471244712,60.30133993776093],[-64.51804518045181,60.31991428772963],[-64.59364593645937,60.34693152404776],[-64.61884618846189,60.35537441039719],[-64.64764647646476,60.35875156493694],[-64.70164701647016,60.36044014220684],[-64.72684726847268,60.36550587401649],[-64.7520475204752,60.37394876036589],[-64.8240482404824,60.41616319211295],[-64.85284852848528,60.43980327389133],[-64.860048600486,60.465131932939556],[-64.82764827648276,60.48539486017816],[-64.8060480604806,60.487083437448035],[-64.72684726847268,60.47864055109861],[-64.68364683646836,60.48032912836851],[-64.65844658446584,60.48370628290826],[-64.64044640446404,60.49214916925769],[-64.6260462604626,60.48370628290826],[-64.61164611646116,60.47695197382873],[-64.60084600846008,60.46850908747933],[-64.6080460804608,60.45668904659016],[-64.58644586445864,60.460066201129905],[-64.56844568445685,60.45837762386003],[-64.56124561245612,60.4499347375106],[-64.56484564845648,60.4313603875419],[-64.53964539645396,60.42629465573225],[-64.52884528845289,60.41447461484307],[-64.52884528845289,60.397588842144245],[-64.53244532445324,60.375637337635766],[-64.52524525245252,60.375637337635766],[-64.49644496444964,60.397588842144245],[-64.48564485644856,60.402654573953896],[-64.43164431644315,60.402654573953896],[-64.42084420844208,60.397588842144245],[-64.42444424444244,60.38745737852494],[-64.43164431644315,60.375637337635766],[-64.43164431644315,60.37226018309602],[-64.43524435244352,60.36888302855624],[-64.44244442444425,60.36381729674659],[-64.4640446404464,60.35537441039719],[-64.46764467644677,60.35199725585741],[-64.46764467644677,60.348620101317664],[-64.47124471244712,60.34524294677789],[-64.47844478444784,60.34186579223811],[-64.47844478444784,60.33342290588871]]],[[[-46.6330663306633,60.75219006881963],[-46.60426604266041,60.767387264248555],[-46.56826568265683,60.77414157332808],[-46.53226532265322,60.76907584151843],[-46.51066510665106,60.75219006881963],[-46.53586535865358,60.75219006881963],[-46.55386553865537,60.745435759740076],[-46.56826568265683,60.740370027930425],[-46.63666636666366,60.7353042961208],[-46.64386643866439,60.73868145066055],[-46.6330663306633,60.75219006881963]]],[[[-46.27666276662765,60.772452996058206],[-46.26586265862659,60.77076441878833],[-46.25866258662586,60.76569868697868],[-46.25146251462513,60.76063295516903],[-46.24786247862477,60.75219006881963],[-46.31626316263163,60.736992873390676],[-46.355863558635576,60.718418523421974],[-46.39906399063989,60.7251728325015],[-46.42066420664207,60.718418523421974],[-46.40266402664025,60.71335279161232],[-46.34506345063451,60.68971270983397],[-46.34506345063451,60.669449782595365],[-46.44586445864459,60.677892668944764],[-46.45306453064529,60.67958124621467],[-46.46026460264602,60.68464697802432],[-46.46026460264602,60.69477844164359],[-46.46746467464675,60.69815559618337],[-46.47826478264781,60.701532750723146],[-46.50346503465033,60.70322132799302],[-46.46026460264602,60.7336157188509],[-46.39186391863919,60.764010109708806],[-46.31986319863199,60.78258445967751],[-46.27666276662765,60.772452996058206]]],[[[-46.30186301863017,60.81973315961491],[-46.32706327063269,60.799470232376336],[-46.36666366663667,60.78427303694738],[-46.406264062640616,60.78258445967751],[-46.42786427864277,60.799470232376336],[-46.355863558635576,60.82648746869447],[-46.330663306633056,60.82817604596434],[-46.32346323463233,60.82648746869447],[-46.31626316263163,60.824798891424564],[-46.30186301863017,60.81973315961491]]],[[[-78.24498244982449,60.834930355043866],[-78.23778237782378,60.83324177777399],[-78.23418234182341,60.83155320050409],[-78.23058230582305,60.83155320050409],[-78.22338223382233,60.834930355043866],[-78.22338223382233,60.82648746869447],[-78.22338223382233,60.81297885053539],[-78.23058230582305,60.81297885053539],[-78.34218342183422,60.772452996058206],[-78.29538295382953,60.77920730513773],[-78.27738277382774,60.77920730513773],[-78.27738277382774,60.772452996058206],[-78.3349833498335,60.758944377899155],[-78.50418504185042,60.73868145066055],[-78.5869858698587,60.7150413688822],[-78.68058680586806,60.71166421434242],[-78.69498694986949,60.71335279161232],[-78.69138691386914,60.72010710069185],[-78.63738637386373,60.745435759740076],[-78.62658626586266,60.75219006881963],[-78.62298622986229,60.76063295516903],[-78.62298622986229,60.76907584151843],[-78.61578615786158,60.77583015059798],[-78.6049860498605,60.77920730513773],[-78.25218252182522,60.82817604596434],[-78.24498244982449,60.834930355043866]]],[[[-46.55386553865537,60.79609307783656],[-46.56826568265683,60.789338768757034],[-46.58626586265862,60.78765019148716],[-46.62226622266223,60.78596161421726],[-46.6330663306633,60.78765019148716],[-46.640266402664025,60.79102734602691],[-46.64746647466475,60.794404500566685],[-46.65826658266582,60.79271592329681],[-46.665466654666545,60.789338768757034],[-46.66906669066691,60.78596161421726],[-46.665466654666545,60.78258445967751],[-46.65826658266582,60.77920730513773],[-46.70146701467013,60.76569868697868],[-46.7590675906759,60.753878646089504],[-46.8130681306813,60.753878646089504],[-46.84546845468455,60.772452996058206],[-46.6870668706687,60.82817604596434],[-46.55026550265501,60.85350470501257],[-46.48186481864818,60.89065340495],[-46.20106201062009,60.95144218666579],[-46.21906219062191,60.93962214577658],[-46.20826208262082,60.93455641396696],[-46.186661866618664,60.93117925942718],[-46.16866168661687,60.92611352761753],[-46.16506165061651,60.91091633218858],[-46.17586175861757,60.9007848685693],[-46.305463054630536,60.85350470501257],[-46.337863378633784,60.84843897320292],[-46.39186391863919,60.86025901409212],[-46.39906399063989,60.85857043682222],[-46.40266402664025,60.85012755047282],[-46.40986409864098,60.84675039593304],[-46.413464134641345,60.843373241393294],[-46.42426424264241,60.83830750958364],[-46.4350643506435,60.82817604596434],[-46.45306453064529,60.81466742780526],[-46.46746467464675,60.80960169599564],[-46.48186481864818,60.80622454145586],[-46.52146521465215,60.807913118725736],[-46.539465394653945,60.80453596418599],[-46.55386553865537,60.79609307783656]]],[[[-65.24165241652416,61.92068553957844],[-65.23085230852308,61.92406269411822],[-65.220052200522,61.92406269411822],[-65.20925209252093,61.925751271388094],[-65.2020520205202,61.934194157737494],[-65.19845198451983,61.94601419862667],[-65.18765187651876,61.95107993043632],[-65.16245162451624,61.95107993043632],[-65.1120511205112,61.944325621356796],[-65.06525065250652,61.930817003197745],[-65.02925029250292,61.88860257145066],[-65.01845018450184,61.85651960332291],[-65.0040500405004,61.86665106694218],[-64.98964989649896,61.88691399418079],[-64.97884978849788,61.89704545780009],[-64.96084960849608,61.88353683964101],[-64.95724957249573,61.85820818059278],[-64.95724957249573,61.832879521544555],[-64.950049500495,61.82105948065535],[-64.93924939249392,61.82274805792525],[-64.91764917649176,61.832879521544555],[-64.90684906849069,61.83456809881443],[-64.89244892448924,61.832879521544555],[-64.88524885248852,61.826125212465],[-64.87444874448744,61.8075508624963],[-64.8420484204842,61.78222220344807],[-64.83484834848348,61.773779317098644],[-64.82764827648276,61.76195927620947],[-64.83124831248313,61.756893544399816],[-64.83844838448384,61.75520496712994],[-64.87444874448744,61.73494203989134],[-64.90324903249032,61.72818773081181],[-64.92844928449284,61.72649915354194],[-64.95724957249573,61.73156488535159],[-65.03645036450364,61.76871358528899],[-65.1480514805148,61.783910780717946],[-65.15525155251552,61.792353667067346],[-65.15885158851589,61.80417370795655],[-65.16965169651696,61.814305171575825],[-65.18045180451804,61.819370903385476],[-65.20565205652056,61.82105948065535],[-65.21645216452164,61.827813789734904],[-65.22365223652235,61.83456809881443],[-65.24885248852488,61.87847110783139],[-65.2560525605256,61.890291148720564],[-65.25245252452524,61.903799766879615],[-65.24165241652416,61.92068553957844]]],[[[-64.38124381243811,62.52688477946634],[-64.38484384843848,62.52013047038679],[-64.38124381243811,62.513376161307264],[-64.37044370443704,62.50831042949761],[-64.35964359643596,62.504933274957864],[-64.35964359643596,62.49986754314821],[-64.48564485644856,62.48635892498913],[-64.48564485644856,62.477916038639734],[-64.4640446404464,62.47285030683008],[-64.41724417244173,62.469473152290334],[-64.39564395643956,62.46440742048068],[-64.42444424444244,62.44414449324208],[-64.4460444604446,62.43739018416255],[-64.46044460444604,62.4407673387023],[-64.46764467644677,62.44583307051195],[-64.4820448204482,62.447521647781855],[-64.49644496444964,62.44921022505173],[-64.50364503645037,62.44414449324208],[-64.50004500045,62.43907876143243],[-64.47124471244712,62.41712725692395],[-64.51444514445144,62.39517575241547],[-64.54324543245433,62.38673286606607],[-64.56844568445685,62.38335571152629],[-64.57564575645756,62.38166713425642],[-64.590045900459,62.371535670637115],[-64.59364593645937,62.36984709336724],[-64.60444604446045,62.36984709336724],[-64.6260462604626,62.37491282517689],[-64.65484654846549,62.37828997971664],[-64.69444694446945,62.38842144333594],[-64.78084780847809,62.393487175145594],[-64.92124921249211,62.41881583419385],[-64.95364953649536,62.43570160689268],[-64.94284942849428,62.45934168867103],[-64.95724957249573,62.46440742048068],[-64.96444964449644,62.46440742048068],[-64.9320493204932,62.48973607952891],[-64.88524885248852,62.496490388608436],[-64.79164791647916,62.49311323406869],[-64.8060480604806,62.50324469768796],[-64.85284852848528,62.515064738577166],[-64.86724867248672,62.52688477946634],[-64.8420484204842,62.55559059305435],[-64.80244802448024,62.5690992112134],[-64.75564755647557,62.567410633943524],[-64.7160471604716,62.553902015784445],[-64.69444694446945,62.53532766581574],[-64.68724687246872,62.53363908854587],[-64.67644676446764,62.53532766581574],[-64.65844658446584,62.545459129435045],[-64.64764647646476,62.54714770670492],[-64.5540455404554,62.540393397625394],[-64.55044550445504,62.558967747594096],[-64.52524525245252,62.560656324864],[-64.4640446404464,62.54714770670492],[-64.46764467644677,62.52688477946634],[-64.40284402844028,62.53532766581574],[-64.38124381243811,62.52688477946634]]],[[[-74.0149401494015,62.670413847406365],[-74.00054000540005,62.65859380651719],[-73.9681396813968,62.61806795204001],[-73.96453964539646,62.60962506569058],[-74.11934119341193,62.602870756611054],[-74.37494374943749,62.634953724738835],[-74.40734407344073,62.643396611088235],[-74.43254432544325,62.656905229247286],[-74.44334443344432,62.66197096105694],[-74.53334533345333,62.66872527013649],[-74.54774547745477,62.673791001946114],[-74.56574565745657,62.68729962010519],[-74.65214652146521,62.719382588232946],[-74.6341463414634,62.72951405185225],[-74.56574565745657,62.73964551547155],[-74.54054540545405,62.75146555636073],[-74.52974529745298,62.7531541336306],[-74.51894518945188,62.7531541336306],[-74.49374493744936,62.74639982455108],[-74.48294482944829,62.74639982455108],[-74.47574475744757,62.73964551547155],[-74.46854468544684,62.7345797836619],[-74.45774457744577,62.72951405185225],[-74.44694446944469,62.7261368973125],[-74.43974439744397,62.7244483200426],[-74.42174421744217,62.727825474582374],[-74.41454414544145,62.7261368973125],[-74.39654396543965,62.71431685642332],[-74.39294392943928,62.70925112461367],[-74.40014400144001,62.70249681553412],[-74.39294392943928,62.69574250645459],[-74.38574385743857,62.68729962010519],[-74.37494374943749,62.683922465565416],[-74.15174151741518,62.692365351914844],[-74.13734137341373,62.69067677464494],[-74.10494104941048,62.68054531102567],[-74.03294032940329,62.67547957921602],[-74.0149401494015,62.670413847406365]]],[[[-77.9749797497975,63.9655526134064],[-77.98217982179821,63.97230692248593],[-77.9749797497975,63.98750411791485],[-77.96057960579606,64.00438989061368],[-77.94977949779498,64.01452135423298],[-77.92817928179281,64.01958708604263],[-77.90657906579065,64.02465281785229],[-77.85977859778598,64.02802997239206],[-77.79137791377913,64.02127566331251],[-77.76977769777697,64.02802997239206],[-77.77697776977769,64.03478428147159],[-77.5969759697597,64.04153859055111],[-77.54657546575466,64.02802997239206],[-77.54657546575466,64.02127566331251],[-77.58977589775897,64.01958708604263],[-77.60777607776078,64.01452135423298],[-77.62577625776257,64.00101273607393],[-77.64377643776437,63.98243838610523],[-77.70857708577086,63.94191253162802],[-77.73737737377374,63.931781068008746],[-77.75537755377553,63.931781068008746],[-77.78777787777878,63.94360110889792],[-77.9209792097921,63.9554211497871],[-77.95697956979569,63.9638640361365],[-77.9749797497975,63.9655526134064]]],[[[-62.408424084240835,67.18735804434257],[-62.37242372423724,67.1654065398341],[-62.408424084240835,67.15865223075457],[-62.5920259202592,67.09617487176891],[-62.62082620826207,67.0776005218002],[-62.64962649626496,67.05227186275195],[-62.671226712267114,67.04551755367243],[-62.721627216272154,67.05396044002185],[-62.73962739627396,67.04720613094233],[-62.743227432274324,67.03538609005312],[-62.743227432274324,67.02525462643385],[-62.746827468274674,67.01850031735432],[-62.772027720277194,67.01512316281455],[-62.80802808028079,67.0201888946242],[-62.90162901629016,67.06409190364116],[-62.822428224282234,67.0590261718315],[-62.80442804428044,67.06409190364116],[-62.80442804428044,67.06915763545078],[-62.80442804428044,67.09448629449903],[-62.80082800828008,67.10292918084843],[-62.786427864278636,67.10461775811834],[-62.73962739627396,67.10630633538821],[-62.718027180271804,67.10968348992799],[-62.70362703627036,67.11981495354726],[-62.696426964269634,67.13501214897622],[-62.685626856268556,67.14176645805574],[-62.63162631626315,67.14176645805574],[-62.61362613626136,67.14514361259552],[-62.62442624426244,67.15527507621482],[-62.64602646026459,67.16371796256422],[-62.65322653226532,67.17384942618352],[-62.63882638826388,67.17891515799317],[-62.62442624426244,67.18060373526305],[-62.58842588425884,67.18060373526305],[-62.5740257402574,67.18229231253292],[-62.54162541625416,67.19242377615222],[-62.52362523625236,67.1941123534221],[-62.430024300243005,67.19242377615222],[-62.408424084240835,67.18735804434257]]],[[[-78.90738907389074,68.32377054697363],[-78.83178831788318,68.30013046519528],[-78.81018810188101,68.28493326976633],[-78.82818828188282,68.25285030163857],[-78.87138871388713,68.2308987971301],[-78.96858968589686,68.20388156081196],[-79.00819008190082,68.17686432449383],[-79.04419044190442,68.16673286087453],[-79.09819098190981,68.17686432449383],[-79.14859148591485,68.19881582900231],[-79.18459184591846,68.22245591078067],[-79.17739177391773,68.22921021986019],[-79.18819188191881,68.24609599255902],[-79.19179191791918,68.2680474970675],[-79.18819188191881,68.28999900157598],[-79.1809918099181,68.31701623789411],[-79.18459184591846,68.31870481516398],[-79.1809918099181,68.32208196970376],[-79.17739177391773,68.33221343332306],[-79.15579155791558,68.34403347421224],[-79.1449914499145,68.34741062875199],[-78.93978939789397,68.35416493783151],[-78.9289892898929,68.35078778329176],[-78.9289892898929,68.34741062875199],[-78.91458914589145,68.33052485605316],[-78.90738907389074,68.32377054697363]]],[[[-74.83934839348393,68.42001945135695],[-74.7961479614796,68.42170802862682],[-74.78534785347853,68.41833087408708],[-74.79254792547925,68.4065108331979],[-74.8069480694807,68.39806794684847],[-74.82494824948249,68.39131363776895],[-74.85014850148501,68.3862479059593],[-74.86454864548645,68.3862479059593],[-74.86454864548645,68.37949359687977],[-74.85014850148501,68.3778050196099],[-74.82854828548285,68.37442786507012],[-74.8069480694807,68.36598497872069],[-74.80334803348033,68.35078778329176],[-74.81414814148141,68.34403347421224],[-74.84654846548464,68.34909920602189],[-74.85734857348574,68.34403347421224],[-74.83214832148322,68.33896774240259],[-74.82134821348212,68.33390201059294],[-74.81054810548105,68.32377054697363],[-74.8429484294843,68.32208196970376],[-74.85374853748537,68.32377054697363],[-74.86454864548645,68.33052485605316],[-74.87534875348753,68.33896774240259],[-74.88254882548826,68.34403347421224],[-74.97614976149761,68.33559058786281],[-74.99774997749977,68.33727916513268],[-75.0049500495005,68.34572205148211],[-75.00855008550086,68.36936213326047],[-75.01575015750157,68.3862479059593],[-75.03375033750338,68.3963793695786],[-75.2569525695257,68.44872526494495],[-75.37935379353793,68.49938258304144],[-75.41175411754118,68.52302266481979],[-75.39375393753937,68.55003990113792],[-75.40095400954009,68.55003990113792],[-75.39375393753937,68.56523709656688],[-75.39375393753937,68.57874571472593],[-75.40095400954009,68.6091401055838],[-75.39375393753937,68.62602587828263],[-75.33255332553325,68.65979742368029],[-75.32535325353253,68.67161746456947],[-75.3109531095311,68.69694612361772],[-75.30015300153,68.70201185542737],[-75.28215282152821,68.7087661645069],[-75.26055260552606,68.72058620539607],[-75.23895238952389,68.72396335993582],[-75.2209522095221,68.707077587237],[-75.20295202952029,68.70201185542737],[-75.17055170551706,68.6901918145382],[-75.01935019350194,68.68174892818877],[-74.99054990549905,68.66824031002972],[-74.97614976149761,68.64122307371159],[-74.96174961749617,68.61082868285371],[-74.94014940149401,68.59225433288498],[-74.9329493294933,68.5719914056464],[-74.90414904149041,68.55341705567767],[-74.86814868148682,68.53653128297884],[-74.82494824948249,68.50951404666074],[-74.78894788947889,68.49600542850166],[-74.77454774547745,68.48587396488239],[-74.77094770947708,68.47405392399318],[-74.78174781747818,68.46054530583413],[-74.7961479614796,68.45210241948473],[-74.81054810548105,68.44703668767508],[-74.86094860948609,68.45041384221483],[-74.8861488614886,68.44703668767508],[-74.90054900549005,68.433528069516],[-74.89694896948969,68.42170802862682],[-74.8789487894879,68.41833087408708],[-74.83934839348393,68.42001945135695]]],[[[-90.49590495904958,69.24235658178983],[-90.48870488704887,69.24742231359949],[-90.47790477904779,69.24911089086936],[-90.47070470704706,69.24742231359949],[-90.46350463504635,69.24235658178983],[-90.45630456304562,69.2339136954404],[-90.45990459904598,69.22884796363076],[-90.46710467104671,69.22715938636088],[-90.48870488704887,69.2153393454717],[-90.50670506705066,69.21196219093193],[-90.53910539105391,69.20858503639218],[-90.57150571505714,69.20183072731263],[-90.58950589505895,69.20014215004275],[-90.60390603906039,69.2052078818524],[-90.6111061110611,69.2153393454717],[-90.61470614706147,69.22547080909101],[-90.62190621906218,69.23560227271028],[-90.63270632706326,69.24235658178983],[-90.62550625506255,69.24742231359949],[-90.62190621906218,69.24911089086936],[-90.62190621906218,69.25586519994889],[-90.63990639906399,69.25417662267901],[-90.65790657906578,69.24404515905971],[-90.66870668706687,69.2339136954404],[-90.68670686706866,69.22884796363076],[-90.69030690306903,69.2339136954404],[-90.67950679506795,69.24573373632958],[-90.66510665106651,69.25755377721876],[-90.6471064710647,69.26261950902841],[-90.6471064710647,69.26937381810794],[-90.67950679506795,69.26768524083806],[-90.69030690306903,69.27106239537784],[-90.6939069390694,69.28288243626702],[-90.69030690306903,69.28963674534654],[-90.65430654306543,69.31158824985502],[-90.6831068310683,69.31158824985502],[-90.6831068310683,69.31834255893455],[-90.66150661506614,69.3318511770936],[-90.65430654306543,69.35042552706233],[-90.66870668706687,69.35717983614185],[-90.6939069390694,69.3419826407129],[-90.72990729907299,69.3048339407755],[-90.75150751507515,69.28963674534654],[-90.77670776707767,69.27612812718749],[-90.77670776707767,69.32847402255385],[-90.76950769507695,69.34535979525268],[-90.75510755107551,69.35717983614185],[-90.7371073710737,69.36562272249125],[-90.65790657906578,69.3808199179202],[-90.61830618306183,69.37575418611056],[-90.57870578705787,69.3622455679515],[-90.54990549905499,69.3419826407129],[-90.53910539105391,69.3318511770936],[-90.52470524705247,69.31158824985502],[-90.51390513905139,69.30145678623572],[-90.49950499504995,69.29301389988632],[-90.4851048510485,69.28625959080676],[-90.47070470704706,69.27950528172724],[-90.46350463504635,69.26261950902841],[-90.47430474304743,69.26093093175854],[-90.4851048510485,69.25755377721876],[-90.49230492304923,69.25079946813923],[-90.49590495904958,69.24235658178983]]],[[[-90.25110251102511,69.29807963169594],[-90.25110251102511,69.27781670445736],[-90.27270272702727,69.26093093175854],[-90.29790297902979,69.25417662267901],[-90.31230312303123,69.26261950902841],[-90.31950319503194,69.26261950902841],[-90.32670326703267,69.23897942725006],[-90.35550355503555,69.24573373632958],[-90.40950409504094,69.27612812718749],[-90.40950409504094,69.28288243626702],[-90.3951039510395,69.29470247715619],[-90.40230402304023,69.29976820896584],[-90.42390423904239,69.30314536350559],[-90.44190441904419,69.3048339407755],[-90.45990459904598,69.30989967258512],[-90.48870488704887,69.32847402255385],[-90.51030510305102,69.3318511770936],[-90.50670506705066,69.34535979525268],[-90.51030510305102,69.35549125887198],[-90.50670506705066,69.36731129976116],[-90.48870488704887,69.37913134065033],[-90.39150391503915,69.40277142242869],[-90.37350373503735,69.41121430877809],[-90.36990369903698,69.42134577239739],[-90.3591035910359,69.42641150420704],[-90.32670326703267,69.42810008147691],[-90.31590315903159,69.42978865874682],[-90.30870308703086,69.43316581328656],[-90.30150301503015,69.43485439055644],[-90.29070290702907,69.43485439055644],[-90.279902799028,69.43147723601669],[-90.25110251102511,69.41459146331786],[-90.25110251102511,69.40783715423834],[-90.25470254702547,69.40445999969856],[-90.25830258302582,69.40108284515881],[-90.26190261902619,69.39770569061903],[-90.26550265502655,69.39432853607926],[-90.24030240302403,69.39432853607926],[-90.22590225902259,69.40277142242869],[-90.22950229502295,69.41459146331786],[-90.25110251102511,69.42810008147691],[-90.24030240302403,69.43147723601669],[-90.21510215102151,69.44498585417574],[-90.20070200702007,69.44836300871552],[-90.20790207902078,69.43485439055644],[-90.20790207902078,69.42978865874682],[-90.20430204302043,69.42641150420704],[-90.20070200702007,69.42303434966726],[-90.18270182701826,69.41459146331786],[-90.17910179101791,69.40614857696843],[-90.18270182701826,69.39432853607926],[-90.1971019710197,69.38588564972986],[-90.18270182701826,69.38757422699973],[-90.16830168301682,69.38588564972986],[-90.15750157501574,69.38250849519008],[-90.14670146701467,69.37237703157078],[-90.1539015390154,69.3605569906816],[-90.16110161101611,69.34873694979242],[-90.17550175501755,69.3419826407129],[-90.21150211502115,69.33522833163337],[-90.22590225902259,69.32509686801407],[-90.23670236702367,69.31158824985502],[-90.25110251102511,69.29807963169594]]],[[[-67.90927909279092,69.53448044947953],[-67.96687966879668,69.52941471766988],[-68.30888308883088,69.59189207665554],[-68.28728287282873,69.59864638573507],[-68.21888218882188,69.60540069481459],[-68.22608226082261,69.60540069481459],[-68.2080820808208,69.61046642662424],[-68.17568175681757,69.62904077659297],[-68.13968139681397,69.63748366294237],[-68.07488074880749,69.67125520834003],[-68.01368013680137,69.67800951741955],[-67.88767887678877,69.64930370383155],[-67.82647826478265,69.66112374472073],[-67.94887948879489,69.67969809468946],[-67.97407974079741,69.69489529011838],[-67.97047970479704,69.70671533100756],[-67.9560795607956,69.71009248554734],[-67.91647916479164,69.70840390827746],[-67.89127891278912,69.71178106281721],[-67.88047880478804,69.71009248554734],[-67.86967869678696,69.7016495991979],[-67.84447844478444,69.68982955830873],[-67.81567815678156,69.67969809468946],[-67.79047790477904,69.67632094014968],[-67.7580775807758,69.6746323628798],[-67.76167761677617,69.66618947653038],[-67.74727747277473,69.66281232199063],[-67.72927729277292,69.65943516745085],[-67.72567725677257,69.6459265492918],[-67.73647736477365,69.6357950856725],[-67.80847808478084,69.6155321584339],[-67.8660786607866,69.58344919030614],[-67.89847898478985,69.55812053125788],[-67.90927909279092,69.53448044947953]]],[[[-78.39618396183961,69.6459265492918],[-78.38538385383853,69.65943516745085],[-78.3889838898389,69.67125520834003],[-78.39618396183961,69.68138667195933],[-78.39618396183961,69.69489529011838],[-78.37818378183782,69.70502675373768],[-78.3529835298353,69.7016495991979],[-78.30618306183061,69.68814098103886],[-78.32418324183242,69.6746323628798],[-78.2989829898299,69.66281232199063],[-78.25938259382593,69.65943516745085],[-78.23058230582305,69.6746323628798],[-78.23418234182341,69.68814098103886],[-78.2629826298263,69.71853537189673],[-78.27018270182701,69.73542114459556],[-78.21258212582126,69.73710972186547],[-78.19458194581945,69.7539954945643],[-78.17658176581766,69.75568407183417],[-78.15498154981549,69.7539954945643],[-78.14058140581406,69.75061834002452],[-78.12618126181262,69.73879829913534],[-78.11178111781118,69.73710972186547],[-78.07938079380793,69.73542114459556],[-78.02538025380254,69.71853537189673],[-77.98937989379894,69.69827244465816],[-77.97137971379713,69.68476382649908],[-77.94257942579425,69.6459265492918],[-77.95697956979569,69.63241793113272],[-77.97857978579785,69.62735219932307],[-78.01818018180181,69.61890931297367],[-78.05058050580506,69.6070892720845],[-78.0649806498065,69.60033496300497],[-78.07578075780758,69.58851492211576],[-78.09378093780937,69.57838345849649],[-78.10818108181081,69.57500630395671],[-78.14418144181441,69.57838345849649],[-78.28818288182882,69.55812053125788],[-78.36738367383674,69.52941471766988],[-78.4429844298443,69.51590609951083],[-78.51858518585186,69.48551170865292],[-78.54738547385473,69.48551170865292],[-78.58338583385833,69.50239748135175],[-78.61938619386194,69.51084036770118],[-78.65538655386554,69.5074632131614],[-78.77418774187741,69.46356020414447],[-78.82458824588245,69.45174016325527],[-78.8569885698857,69.45849447233482],[-78.87858878588786,69.47200309049387],[-78.88218882188822,69.48044597684327],[-78.87138871388713,69.49226601773248],[-78.85338853388534,69.50408605862165],[-78.69138691386914,69.56149768579766],[-78.67338673386733,69.56994057214706],[-78.61578615786158,69.62059789024354],[-78.57978579785798,69.63748366294237],[-78.56538565385654,69.6459265492918],[-78.5509855098551,69.6442379720219],[-78.48258482584825,69.6543694356412],[-78.41418414184142,69.64254939475202],[-78.39618396183961,69.6459265492918]]],[[[-87.08307083070831,69.98870773507798],[-87.1190711907119,69.99377346688763],[-87.18747187471874,70.01910212593586],[-87.24867248672486,70.02754501228529],[-87.26667266672666,70.03092216682504],[-87.27747277472774,70.03767647590456],[-87.27747277472774,70.04274220771421],[-87.27747277472774,70.06131655768294],[-87.27747277472774,70.06807086676247],[-87.30267302673026,70.07989090765165],[-87.36387363873638,70.0933995258107],[-87.37827378273782,70.10521956669987],[-87.3530735307353,70.1136624530493],[-87.3170731707317,70.11872818485895],[-87.2810728107281,70.11872818485895],[-87.25587255872559,70.1136624530493],[-87.19467194671947,70.11028529850952],[-87.09747097470975,70.12717107120835],[-87.13347133471335,70.13899111209753],[-87.14427144271443,70.14067968936743],[-87.11547115471154,70.16094261660601],[-87.07227072270723,70.1508111529867],[-87.00027000270002,70.12041676212883],[-86.80226802268022,70.09171094854082],[-86.6510665106651,70.12041676212883],[-86.5970659706597,70.1136624530493],[-86.58266582665826,70.10521956669987],[-86.55026550265502,70.07820233038177],[-86.5250652506525,70.06300513495282],[-86.51066510665106,70.05118509406364],[-86.50346503465035,70.03767647590456],[-86.5070650706507,70.02754501228529],[-86.49626496264962,70.02247928047564],[-86.46026460264602,70.01741354866598],[-86.47826478264783,69.9954620441575],[-86.50346503465035,69.9853305805382],[-86.7770677706777,69.97182196237915],[-86.91746917469175,69.99208488961773],[-86.98226982269823,70.01403639412621],[-87.00747007470075,70.01572497139611],[-87.05787057870579,69.9954620441575],[-87.08307083070831,69.98870773507798]]],[[[-97.07317073170731,73.13790434340922],[-97.04437044370444,73.15479011610805],[-96.97236972369723,73.1682987342671],[-96.9039690396904,73.19025023877558],[-96.85716857168572,73.19362739331532],[-96.81036810368103,73.19193881604545],[-96.77436774367743,73.18349592969605],[-96.75996759967599,73.18349592969605],[-96.74916749167491,73.1784301978864],[-96.72756727567275,73.16154442518757],[-96.73836738367383,73.14465865248874],[-96.77076770767708,73.12270714798026],[-96.75996759967599,73.11426426163086],[-96.73116731167312,73.11257568436096],[-96.70236702367023,73.12270714798026],[-96.67716677166771,73.13452718886944],[-96.6519665196652,73.14128149794897],[-96.64116641166412,73.12608430252004],[-96.579965799658,73.08386987077296],[-96.56916569165692,73.0517869026452],[-96.57636576365763,73.03658970721625],[-96.59436594365944,73.02645824359695],[-96.60876608766087,73.01632677997765],[-96.62316623166231,73.00450673908847],[-96.62676626766267,72.99775243000894],[-96.63396633966339,72.98255523457999],[-96.63756637566375,72.97748950277034],[-96.64476644766448,72.96904661642094],[-96.65556655566556,72.96398088461129],[-96.70956709567095,72.94202938010281],[-96.78516785167851,72.93020933921363],[-96.93276932769328,72.92514360740398],[-96.97236972369723,72.93020933921363],[-97.05877058770588,72.96398088461129],[-97.10197101971019,72.9926866981993],[-97.10917109171092,73.01970393451742],[-97.13077130771308,73.04334401629578],[-97.14157141571415,73.05854121172473],[-97.14517145171452,73.07711556169343],[-97.13437134371344,73.09568991166213],[-97.11637116371163,73.11088710709109],[-97.09117091170911,73.12439572525014],[-97.07317073170731,73.13790434340922]]],[[[-97.73557735577356,74.47188038661653],[-97.76797767977679,74.47525754115631],[-97.7859778597786,74.48201185023584],[-97.79317793177931,74.49214331385514],[-97.75717757177571,74.51916055017327],[-97.63477634776348,74.54617778649137],[-97.62037620376204,74.55630925011067],[-97.61677616776167,74.57488360007937],[-97.54117541175411,74.59008079550833],[-97.51237512375124,74.6019008363975],[-97.5339753397534,74.6019008363975],[-97.50157501575015,74.62385234090598],[-97.45837458374584,74.63060664998551],[-97.3719737197372,74.62891807271563],[-97.27477274772747,74.60527799093728],[-97.26037260372604,74.59852368185776],[-97.27117271172712,74.58163790915893],[-97.29277292772927,74.5647521364601],[-97.37557375573755,74.51240624109371],[-97.39717397173972,74.50902908655397],[-97.45117451174511,74.51240624109371],[-97.48717487174872,74.50565193201419],[-97.63477634776348,74.46006034572736],[-97.67797677976779,74.45668319118761],[-97.69237692376923,74.46006034572736],[-97.72477724777248,74.46850323207678],[-97.73557735577356,74.47188038661653]]],[[[-95.3631536315363,74.59008079550833],[-95.26595265952659,74.54280063195162],[-95.25515255152551,74.51916055017327],[-95.31275312753127,74.49720904566479],[-95.34875348753488,74.49552046839489],[-95.71595715957159,74.53266916833232],[-95.77715777157772,74.55293209557092],[-95.84195841958419,74.5647521364601],[-95.87075870758707,74.58163790915893],[-95.81675816758167,74.59683510458785],[-95.79515795157951,74.59852368185776],[-95.75555755557555,74.58839221823845],[-95.7339573395734,74.58670364096855],[-95.7519575195752,74.61372087728668],[-95.71235712357124,74.63229522725541],[-95.65835658356583,74.64073811360481],[-95.56475564755647,74.64242669087469],[-95.49275492754927,74.63398380452529],[-95.42435424354244,74.61540945455658],[-95.3631536315363,74.59008079550833]]],[[[-96.57636576365763,75.43774658498944],[-96.67716677166771,75.43605800771957],[-96.7059670596706,75.42423796683039],[-96.68796687966879,75.41241792594121],[-96.66636666366664,75.40904077140144],[-96.64476644766448,75.40735219413156],[-96.62316623166231,75.40228646232191],[-96.65556655566556,75.38877784416286],[-96.78156781567816,75.37526922600378],[-96.84276842768428,75.35838345330495],[-96.87156871568716,75.35669487603508],[-96.8679686796868,75.37526922600378],[-96.89676896768967,75.3820235350833],[-96.9579695796958,75.38540068962308],[-96.98676986769867,75.39722073051226],[-96.97596975969759,75.39722073051226],[-96.96516965169651,75.39722073051226],[-96.9579695796958,75.40059788505204],[-96.9471694716947,75.40566361686169],[-96.9471694716947,75.41410650321109],[-96.9579695796958,75.41917223502074],[-96.97956979569796,75.42423796683039],[-97.00477004770048,75.44618947133887],[-97.01917019170192,75.45463235768827],[-97.03357033570336,75.45800951222805],[-97.03357033570336,75.46476382130757],[-97.01557015570155,75.4715181303871],[-97.01917019170192,75.4816495940064],[-97.05517055170552,75.49853536670523],[-96.7059670596706,75.56776703477041],[-96.669966699667,75.55425841661136],[-96.52956529565296,75.58127565292946],[-96.43596435964359,75.58802996200902],[-96.4179641796418,75.59478427108854],[-96.41436414364144,75.60322715743794],[-96.42516425164251,75.62517866194642],[-96.42516425164251,75.63531012556572],[-96.37476374763747,75.66063878461395],[-96.28836288362884,75.65050732099468],[-96.12996129961299,75.60998146651747],[-96.07236072360723,75.61504719832712],[-96.04356043560435,75.61167004378737],[-96.02556025560256,75.60153858016807],[-96.02556025560256,75.6082928892476],[-95.99675996759967,75.59647284835842],[-95.93555935559355,75.57958707565959],[-95.91035910359103,75.56101272569089],[-95.93555935559355,75.54750410753181],[-95.949959499595,75.54243837572218],[-96.0291602916029,75.53230691210288],[-96.04716047160471,75.52724118029323],[-96.03276032760327,75.5204868712137],[-96.04716047160471,75.50866683032453],[-96.06876068760687,75.50191252124498],[-96.10836108361083,75.49346963489558],[-96.12276122761227,75.48840390308592],[-96.15156151561516,75.4715181303871],[-96.1659616596166,75.46476382130757],[-96.20556205562055,75.45800951222805],[-96.23436234362343,75.46645239857745],[-96.26316263162632,75.4816495940064],[-96.29556295562955,75.49346963489558],[-96.36756367563676,75.50866683032453],[-96.40716407164071,75.52217544848358],[-96.42516425164251,75.54074979845228],[-96.41436414364144,75.55088126207158],[-96.39636396363963,75.55594699388124],[-96.37836378363784,75.55932414842101],[-96.36756367563676,75.56438988023064],[-96.3639636396364,75.57620992111984],[-96.38196381963819,75.58127565292946],[-96.42516425164251,75.58127565292946],[-96.4179641796418,75.57114418931019],[-96.4179641796418,75.56776703477041],[-96.48276482764827,75.55932414842101],[-96.51516515165152,75.55088126207158],[-96.54036540365404,75.53399548937276],[-96.55116551165511,75.51710971667393],[-96.54756547565475,75.50528967578475],[-96.51876518765188,75.47827243946662],[-96.51516515165152,75.47489528492687],[-96.50436504365044,75.46814097584735],[-96.50436504365044,75.4613866667678],[-96.52956529565296,75.45632093495814],[-96.56196561965619,75.44281231679909],[-96.57636576365763,75.43774658498944]]],[[[-94.48474484744847,75.9780913113519],[-94.4559445594456,75.96627127046273],[-94.45234452344523,75.95276265230368],[-94.45234452344523,75.93756545687472],[-94.45234452344523,75.91730252963612],[-94.42354423544235,75.88859671604811],[-94.42354423544235,75.88521956150836],[-94.42354423544235,75.87339952061919],[-94.41994419944199,75.87002236607941],[-94.39474394743947,75.86157947973001],[-94.3191431914319,75.81936504798293],[-94.30114301143011,75.80079069801423],[-94.29394293942939,75.775462038966],[-94.31554315543156,75.76364199807679],[-94.65754657546576,75.746756225378],[-94.7439474394744,75.76195342080692],[-94.79434794347944,75.78221634804552],[-94.8231482314823,75.81092216163353],[-94.83394833948338,75.84638228430106],[-94.82674826748267,75.88859671604811],[-94.85194851948519,75.89366244785776],[-94.87714877148771,75.90379391147707],[-94.89874898748987,75.91730252963612],[-94.90954909549095,75.93756545687472],[-94.85194851948519,75.95276265230368],[-94.66474664746647,75.96458269319285],[-94.53874538745387,75.98991135224108],[-94.53154531545316,75.99835423859051],[-94.51354513545135,75.99497708405073],[-94.48474484744847,75.9780913113519]]],[[[-78.89658896588965,76.12330895656183],[-78.87498874988749,76.11148891567265],[-78.81378813788137,76.09966887478348],[-78.79938799387993,76.08447167935452],[-78.80658806588066,76.07434021573522],[-78.82458824588245,76.06252017484604],[-78.86058860588605,76.04732297941709],[-79.1449914499145,75.97977988862178],[-79.16659166591666,75.9696484250025],[-79.17739177391773,75.95782838411333],[-79.17019170191702,75.93756545687472],[-79.14859148591485,75.92574541598555],[-79.01179011790117,75.88521956150836],[-78.95058950589505,75.88015382969871],[-78.87498874988749,75.85482517065049],[-78.89658896588965,75.84300512976128],[-78.92178921789217,75.8413165524914],[-78.97218972189721,75.84807086157093],[-79.05139051390513,75.8413165524914],[-79.07299072990729,75.84807086157093],[-79.05139051390513,75.86157947973001],[-79.02619026190261,75.87002236607941],[-79.04779047790477,75.87677667515894],[-79.11259112591125,75.87002236607941],[-79.27819278192781,75.87677667515894],[-79.32859328593285,75.87171094334929],[-79.42939429394293,75.84807086157093],[-79.41139411394114,75.83625082068176],[-79.38619386193862,75.832873666142],[-79.36459364593645,75.832873666142],[-79.33939339393393,75.82949651160223],[-79.42579425794257,75.79572496620457],[-79.43659436594366,75.79572496620457],[-79.45819458194582,75.80079069801423],[-79.45819458194582,75.8024792752841],[-79.45459454594545,75.8126107389034],[-79.45819458194582,75.81429931617328],[-79.46539465394653,75.81767647071305],[-79.47619476194761,75.82105362525283],[-79.5949959499595,75.82105362525283],[-79.58779587795878,75.82949651160223],[-79.57699576995769,75.832873666142],[-79.56979569795698,75.83625082068176],[-79.56619566195661,75.84469370703118],[-79.57339573395734,75.85482517065049],[-79.58779587795878,75.86157947973001],[-79.61659616596165,75.86833378880954],[-79.65259652596525,75.87002236607941],[-79.68859688596886,75.86326805699989],[-79.72459724597246,75.86157947973001],[-79.75339753397533,75.88353098423849],[-79.71739717397173,75.88184240696859],[-79.63459634596346,75.89366244785776],[-79.60219602196021,75.90379391147707],[-79.58419584195842,75.91561395236624],[-79.58419584195842,75.92405683871567],[-79.59139591395913,75.9308111477952],[-79.5949959499595,75.93756545687472],[-79.58419584195842,75.94769692049402],[-79.56619566195661,75.95445122957355],[-79.50139501395013,75.96120553865308],[-79.42939429394293,75.99835423859051],[-79.41139411394114,76.00510854767003],[-79.32139321393214,76.01524001128934],[-79.28539285392854,76.02874862944839],[-79.26379263792637,76.03381436125804],[-79.26739267392674,76.04394582487734],[-79.2709927099271,76.04732297941709],[-79.2529925299253,76.05914302030627],[-79.18459184591846,76.06927448392557],[-79.1449914499145,76.08278310208465],[-79.13059130591306,76.09122598843405],[-79.11259112591125,76.106423183863],[-79.06939069390694,76.1249975338317],[-79.01179011790117,76.12837468837148],[-78.90018900189001,76.12330895656183],[-78.89658896588965,76.12330895656183]]],[[[-101.15921159211592,76.58091339670003],[-101.33921339213391,76.56065046946145],[-101.68841688416884,76.58935628304945],[-101.66681666816667,76.59611059212898],[-101.59841598415984,76.6028649012085],[-101.530015300153,76.62819356025676],[-101.43281432814328,76.64170217841581],[-101.2420124201242,76.64676791022546],[-101.19161191611916,76.65521079657486],[-101.13761137611375,76.68391661016287],[-101.09081090810908,76.68560518743277],[-101.05841058410584,76.69067091924242],[-101.05121051210511,76.69067091924242],[-101.0440104401044,76.69404807378217],[-101.0440104401044,76.7024909601316],[-101.04041040410404,76.70924526921112],[-101.03321033210332,76.71431100102077],[-101.02241022410225,76.71937673283043],[-100.9720097200972,76.73626250552925],[-100.630006300063,76.75990258730761],[-100.24840248402484,76.739639660069],[-100.33480334803347,76.71431100102077],[-100.74520745207452,76.64845648749534],[-101.15921159211592,76.58091339670003]]],[[[-89.67509675096751,76.73288535098948],[-89.68949689496894,76.72781961917983],[-89.6930969309693,76.7210653101003],[-89.68949689496894,76.71599957829065],[-89.67509675096751,76.71262242375087],[-89.6930969309693,76.6923594965123],[-89.72549725497255,76.68053945562312],[-89.81549815498154,76.66703083746404],[-89.83709837098371,76.65689937384477],[-89.85149851498515,76.64001360114594],[-89.85869858698587,76.61637351936756],[-89.85869858698587,76.59948774666873],[-89.84789847898479,76.5826019739699],[-89.82269822698227,76.55051900584215],[-89.79029790297902,76.53363323314332],[-89.71109711097111,76.52012461498427],[-89.67509675096751,76.50661599682519],[-89.71109711097111,76.50492741955532],[-89.78669786697867,76.48635306958661],[-89.82629826298263,76.48635306958661],[-89.88749887498875,76.50999315136497],[-89.91989919899198,76.51505888317462],[-89.94869948699487,76.50661599682519],[-89.93789937899379,76.48297591504684],[-89.97749977499775,76.47791018323719],[-90.06390063900639,76.48635306958661],[-90.15750157501574,76.50661599682519],[-90.20430204302043,76.52350176952402],[-90.26550265502655,76.5741590876205],[-90.56790567905679,76.71599957829065],[-90.58950589505895,76.73288535098948],[-90.59310593105931,76.75145970095818],[-90.57150571505714,76.77341120546666],[-90.52830528305283,76.79198555543536],[-90.33030330303303,76.82406852356314],[-90.1971019710197,76.83588856445232],[-89.9810998109981,76.84264287353184],[-89.93789937899379,76.8291342553728],[-89.84789847898479,76.81393705994384],[-89.69669696696967,76.75314827822805],[-89.67509675096751,76.73288535098948]]],[[[-114.83574835748357,76.75990258730761],[-114.8429484294843,76.76496831911726],[-114.86814868148682,76.76327974184736],[-114.8789487894879,76.76665689638713],[-114.85734857348574,76.80211701905466],[-114.83934839348393,76.80887132813419],[-114.63054630546306,76.86121722350055],[-114.43614436144361,76.88316872800903],[-114.23814238142381,76.87979157346928],[-114.19134191341914,76.89161161435845],[-113.84573845738457,76.89836592343798],[-113.73413734137341,76.88316872800903],[-113.58653586535866,76.84602002807162],[-113.53613536135362,76.84264287353184],[-113.5109351093511,76.83588856445232],[-113.48573485734858,76.82069136902336],[-113.4641346413464,76.79873986451491],[-113.45333453334533,76.77341120546666],[-113.48933489334892,76.768345473657],[-113.55773557735577,76.739639660069],[-113.60453604536045,76.7295081964497],[-113.6369363693637,76.710933846481],[-113.65133651336514,76.70586811467135],[-113.6729367293673,76.70417953740147],[-113.83133831338313,76.72613104190995],[-114.12654126541265,76.72781961917983],[-114.42174421744217,76.7295081964497],[-114.51174511745117,76.74470539187865],[-114.81774817748177,76.75990258730761],[-114.83574835748357,76.75990258730761]]],[[[-102.4480244802448,77.73927740383957],[-102.43722437224372,77.73927740383957],[-102.42642426424264,77.74265455837934],[-102.41922419224191,77.74940886745887],[-102.4120241202412,77.76122890834804],[-102.43722437224372,77.76291748561792],[-102.46962469624695,77.77136037196735],[-102.49842498424984,77.78318041285652],[-102.51642516425164,77.7950004537457],[-102.49842498424984,77.80850907190475],[-102.5020250202502,77.81864053552405],[-102.53082530825309,77.83552630822288],[-102.49482494824947,77.86423212181089],[-102.4480244802448,77.88111789450971],[-102.39762397623976,77.88956078085911],[-102.10242102421024,77.89293793539889],[-101.80361803618035,77.89462651266876],[-101.72441724417244,77.90644655355794],[-101.69921699216992,77.90475797628807],[-101.64521645216452,77.88956078085911],[-101.21321213212131,77.84059204003253],[-100.95760957609576,77.75954033107814],[-100.93240932409324,77.74434313564922],[-100.96120961209611,77.72914594022026],[-100.98640986409863,77.72576878568051],[-101.0440104401044,77.73083451749014],[-101.14841148411485,77.71901447660096],[-101.34281342813428,77.73083451749014],[-101.40041400414003,77.72070305387086],[-101.44721447214472,77.72070305387086],[-101.50121501215011,77.72914594022026],[-101.55881558815588,77.73083451749014],[-101.620016200162,77.70044012663226],[-101.78921789217893,77.68017719939368],[-102.1780217802178,77.69537439482261],[-102.28962289622896,77.71901447660096],[-102.4480244802448,77.73252309476004],[-102.4480244802448,77.73927740383957]]],[[[-102.90162901629016,78.27455639839238],[-102.83322833228333,78.26611351204298],[-102.80082800828008,78.25598204842368],[-102.78282782827829,78.23740769845497],[-102.78282782827829,78.22727623483567],[-102.77922779227792,78.22052192575615],[-102.77922779227792,78.2154561939465],[-102.78282782827829,78.20701330759707],[-102.80082800828008,78.20025899851754],[-102.86922869228692,78.18843895762836],[-103.04563045630456,78.12765017591258],[-103.08523085230853,78.12258444410293],[-103.23283232832328,78.12765017591258],[-103.26883268832688,78.13947021680175],[-103.28323283232832,78.16142172131023],[-103.27243272432725,78.17999607127894],[-103.24723247232473,78.19519326670789],[-103.06363063630636,78.26104778023333],[-103.0240302403024,78.26949066658273],[-102.90162901629016,78.27455639839238]]],[[[73.73413734137341,-53.111952393910514],[73.7629376293763,-53.118706702990046],[73.78813788137882,-53.12039528025993],[73.81333813338134,-53.118706702990046],[73.66213662136622,-53.14741251657805],[73.60813608136081,-53.179495484705825],[73.57933579335796,-53.18793837105524],[73.50733507335073,-53.19300410286488],[73.47493474934751,-53.18962694832512],[73.4389343893439,-53.17274117562629],[73.43173431734317,-53.16598686654676],[73.40293402934032,-53.13896963022864],[73.37053370533707,-53.09000088940204],[73.36333363333634,-53.074803693973095],[73.37053370533707,-53.0646722303538],[73.35973359733597,-53.05960649854415],[73.35253352533528,-53.051163612194735],[73.35253352533528,-53.04440930311521],[73.36333363333634,-53.03765499403568],[73.34533345333455,-53.02921210768626],[73.32733327333275,-53.0258349531465],[73.26973269732699,-53.02245779860673],[73.25533255332553,-53.0157034895272],[73.2409324093241,-53.00219487136814],[73.23733237332374,-52.98193194412955],[73.26973269732699,-52.97517763505002],[73.29853298532987,-52.96166901689095],[73.33093330933309,-52.98530909866931],[73.33813338133382,-52.98530909866931],[73.34533345333455,-52.99712913955849],[73.35973359733597,-53.00894918044767],[73.3777337773378,-53.017392066797086],[73.3849338493385,-53.012326334987435],[73.38853388533886,-52.99712913955849],[73.39933399333995,-52.99037483047896],[73.41373413734138,-52.992063407748844],[73.42813428134284,-53.00388344863802],[73.41373413734138,-53.00894918044767],[73.42453424534247,-53.0258349531465],[73.44613446134463,-53.02752353041638],[73.47133471334715,-53.02076922133685],[73.48933489334894,-53.00894918044767],[73.50733507335073,-53.0157034895272],[73.5649356493565,-53.017392066797086],[73.58653586535866,-53.02752353041638],[73.59733597335975,-53.03427783949591],[73.62253622536227,-53.03934357130556],[73.63333633336333,-53.04440930311521],[73.64053640536406,-53.051163612194735],[73.65493654936552,-53.06804938489356],[73.66213662136622,-53.07142653943333],[73.68733687336874,-53.09000088940204],[73.69813698136983,-53.10013235302134],[73.73413734137341,-53.111952393910514]]],[[[69.1908919089191,-48.98675812358708],[69.19809198091983,-48.9749380826979],[69.20889208892089,-48.96818377361837],[69.21969219692198,-48.96311804180873],[69.23049230492305,-48.956363732729194],[69.2628926289263,-48.92259218733154],[69.28449284492845,-48.90570641463271],[69.31329313293134,-48.89219779647365],[69.34209342093422,-48.88375491012424],[69.3708937089371,-48.88375491012424],[69.36009360093601,-48.90570641463271],[69.32769327693279,-48.92428076460142],[69.3168931689317,-48.939477960030366],[69.39609396093962,-48.92765791914119],[69.41049410494105,-48.92934649641107],[69.40689406894069,-48.94285511457013],[69.39609396093962,-48.958052309999076],[69.38169381693817,-48.97156092815814],[69.3708937089371,-48.98000381450755],[69.33489334893349,-48.998578164476264],[69.32049320493206,-49.01039820536544],[69.32409324093243,-49.02559540079439],[69.33489334893349,-49.044169750763096],[69.32049320493206,-49.05430121438239],[69.29889298892991,-49.06105552346192],[69.30969309693097,-49.06949840981133],[69.22329223292235,-49.09482706885957],[69.20529205292053,-49.08638418251016],[69.20529205292053,-49.03572686441368],[69.20169201692019,-49.02221824625462],[69.19449194491946,-48.99351243266661],[69.1908919089191,-48.98675812358708]]],[[[69.22689226892271,-48.856737673806116],[69.23049230492305,-48.87868917831459],[69.24129241292414,-48.877000601044706],[69.24849248492487,-48.88037775558447],[69.2448924489245,-48.89050921920377],[69.23769237692377,-48.893886373743534],[69.22689226892271,-48.89895210555318],[69.21969219692198,-48.90401783736283],[69.20889208892089,-48.919215032791776],[69.19449194491946,-48.94792084637978],[69.17649176491767,-48.96987235088825],[69.16569165691658,-48.978315237237666],[69.15489154891549,-48.98338096904732],[69.14409144091442,-48.98000381450755],[69.1368913689137,-48.97156092815814],[69.14049140491406,-48.96818377361837],[69.15129151291515,-48.932723650950834],[69.16209162091621,-48.90570641463271],[69.180091800918,-48.88037775558447],[69.20169201692019,-48.86180340561576],[69.22689226892271,-48.856737673806116]]],[[[37.66177661776618,-46.82875637267699],[37.69417694176943,-46.82200206359746],[37.73017730177301,-46.82537921813723],[37.82017820178203,-46.84395356810594],[37.866978669786704,-46.88279084531324],[37.89577895778959,-46.88954515439277],[37.884978849788496,-46.916562390710894],[37.86337863378634,-46.940202472489254],[37.83817838178382,-46.95877682245796],[37.80577805778057,-46.96553113153749],[37.79857798577987,-46.96384255426761],[37.78057780577805,-46.95877682245796],[37.66897668976691,-46.95539966791819],[37.65457654576548,-46.95877682245796],[37.61857618576187,-46.95371109064831],[37.600576005760075,-46.94864535883867],[37.58617586175862,-46.938513895219366],[37.582575825758255,-46.93007100886995],[37.575375753757555,-46.916562390710894],[37.575375753757555,-46.90305377255183],[37.59337593375935,-46.89123373166265],[37.6149761497615,-46.86928222715418],[37.625776257762595,-46.86421649534453],[37.62937629376296,-46.859150763534885],[37.650976509765115,-46.835510681756524],[37.66177661776618,-46.82875637267699]]],[[[51.835118351183525,-46.37621766434843],[51.84591845918459,-46.38297197342796],[51.853118531185316,-46.38972628250749],[51.86751867518677,-46.40998920974609],[51.82431824318243,-46.45051506422327],[51.78831788317885,-46.445449332413624],[51.77391773917739,-46.445449332413624],[51.759517595175964,-46.45051506422327],[51.727117271172716,-46.447137909683505],[51.70551705517056,-46.43700644606421],[51.68751687516877,-46.42180925063526],[51.66951669516695,-46.403234900666554],[51.65511655116552,-46.37790624161831],[51.66591665916661,-46.362709046189366],[51.734317343173444,-46.32724892352183],[51.759517595175964,-46.32893750079172],[51.777517775177756,-46.342446118950775],[51.784717847178484,-46.366086200729136],[51.79191791917921,-46.37284050980866],[51.809918099181004,-46.37452908707855],[51.835118351183525,-46.37621766434843]]],[[[-48.433084330843315,-27.405052037216315],[-48.425884258842586,-27.388166264517487],[-48.407884078840794,-27.399986305406664],[-48.389883898838974,-27.420249232645254],[-48.37908379083791,-27.4354464280742],[-48.37908379083791,-27.457397932582673],[-48.38628386283861,-27.47766085982127],[-48.3970839708397,-27.49285805525021],[-48.40428404284043,-27.513120982488807],[-48.407884078840794,-27.51649813702857],[-48.41148411484113,-27.523252446108103],[-48.415084150841494,-27.533383909727398],[-48.41148411484113,-27.546892527886456],[-48.407884078840794,-27.568844032394935],[-48.407884078840794,-27.57897549601423],[-48.415084150841494,-27.595861268713058],[-48.425884258842586,-27.612747041411886],[-48.440284402844014,-27.627944236840825],[-48.45108451084511,-27.633009968650477],[-48.49788497884978,-27.70224163671567],[-48.49788497884978,-27.72419314122414],[-48.483484834848355,-27.75965326389168],[-48.48708487084869,-27.774850459320625],[-48.49428494284942,-27.778227613860388],[-48.51228512285121,-27.78329334567004],[-48.51948519485194,-27.788359077479683],[-48.533885338853395,-27.808622004718274],[-48.541085410854095,-27.817064891067687],[-48.55188551885519,-27.818753468337576],[-48.559085590855915,-27.818753468337576],[-48.56268562685625,-27.817064891067687],[-48.566285662856615,-27.813687736527925],[-48.56268562685625,-27.739390336653088],[-48.55548555485555,-27.707307368525314],[-48.54468544685446,-27.68197870947707],[-48.559085590855915,-27.675224400397546],[-48.55188551885519,-27.65833862769872],[-48.5230852308523,-27.633009968650477],[-48.52668526685267,-27.611058464141998],[-48.541085410854095,-27.590795536903407],[-48.54828548285482,-27.57728691874435],[-48.52668526685267,-27.572221186934698],[-48.515885158851574,-27.570532609664816],[-48.508685086850875,-27.565466877855165],[-48.50508505085051,-27.55702399150575],[-48.50508505085051,-27.545203950616575],[-48.50508505085051,-27.54013821880693],[-48.51228512285121,-27.53507248699728],[-48.5230852308523,-27.530006755187628],[-48.5230852308523,-27.523252446108103],[-48.5230852308523,-27.51818671429845],[-48.51948519485194,-27.513120982488807],[-48.515885158851574,-27.506366673409275],[-48.51948519485194,-27.49623520978998],[-48.533885338853395,-27.484415168900796],[-48.53748537485373,-27.475972282551382],[-48.53028530285303,-27.462463664392324],[-48.51948519485194,-27.45402077804291],[-48.51228512285121,-27.445577891693496],[-48.515885158851574,-27.428692118994668],[-48.49788497884978,-27.427003541724787],[-48.44748447484474,-27.41180634629584],[-48.433084330843315,-27.405052037216315]]],[[[-48.54468544685446,-26.34124835719021],[-48.54828548285482,-26.351379820809505],[-48.57708577085771,-26.376708479857747],[-48.58068580685807,-26.38515136620716],[-48.58068580685807,-26.396971407096338],[-48.57708577085771,-26.420611488874698],[-48.584285842858435,-26.420611488874698],[-48.58788587885877,-26.418922911604817],[-48.591485914859135,-26.413857179795166],[-48.61308613086129,-26.412168602525284],[-48.62748627486275,-26.388528520746924],[-48.641886418864175,-26.35982270715892],[-48.65628656286563,-26.34462551172998],[-48.69948699486994,-26.31591969814197],[-48.70308703087031,-26.312542543602206],[-48.69948699486994,-26.307476811792554],[-48.685086850868515,-26.28214815274432],[-48.67428674286742,-26.273705266394906],[-48.66348663486633,-26.270328111855136],[-48.64548645486454,-26.268639534585255],[-48.63828638286381,-26.261885225505722],[-48.63828638286381,-26.251753761886427],[-48.63108631086311,-26.23993372099725],[-48.60588605886059,-26.228113680108073],[-48.57708577085771,-26.21798221648877],[-48.559085590855915,-26.206162175599594],[-48.566285662856615,-26.180833516551353],[-48.54828548285482,-26.167324898392295],[-48.53028530285303,-26.170702052932057],[-48.515885158851574,-26.184210671091122],[-48.49428494284942,-26.21967079375866],[-48.490684906849054,-26.228113680108073],[-48.490684906849054,-26.236556566457487],[-48.49428494284942,-26.243310875537013],[-48.508685086850875,-26.256819493696078],[-48.515885158851574,-26.28214815274432],[-48.53748537485373,-26.319296852681738],[-48.54468544685446,-26.34124835719021]]],[[[-45.21465214652147,-23.906319934019358],[-45.22545225452254,-23.909697088559128],[-45.22545225452254,-23.916451397638653],[-45.22185221852217,-23.928271438527837],[-45.22185221852217,-23.940091479417013],[-45.21825218252181,-23.945157211226665],[-45.21825218252181,-23.95022294303631],[-45.22545225452254,-23.95697725211584],[-45.2290522905229,-23.960354406655604],[-45.24345243452433,-23.967108715735137],[-45.24705247052469,-23.963731561195374],[-45.25065250652506,-23.962042983925492],[-45.25425254252542,-23.962042983925492],[-45.26145261452615,-23.960354406655604],[-45.27225272252721,-23.946845788496546],[-45.27945279452794,-23.924894283988067],[-45.29025290252903,-23.91138566582901],[-45.30465304653046,-23.919828552178423],[-45.308253082530825,-23.91307424309889],[-45.34785347853477,-23.928271438527837],[-45.38745387453875,-23.938402902147132],[-45.42345423454233,-23.93502574760737],[-45.448654486544854,-23.91307424309889],[-45.45225452254522,-23.89112273859042],[-45.448654486544854,-23.877614120431353],[-45.434254342543426,-23.867482656812058],[-45.41985419854197,-23.857351193192763],[-45.3550535505355,-23.799939566016747],[-45.34425344253441,-23.783053793317926],[-45.33705337053371,-23.752659402460033],[-45.333453334533345,-23.7459050933805],[-45.32985329853298,-23.737462207031093],[-45.32625326253262,-23.73070789795156],[-45.32625326253262,-23.72564216614191],[-45.31545315453155,-23.720576434332266],[-45.308253082530825,-23.720576434332266],[-45.29745297452973,-23.72395358887203],[-45.28665286652867,-23.72901932068168],[-45.23625236252363,-23.761102288809447],[-45.2290522905229,-23.772922329698623],[-45.23625236252363,-23.843842575033698],[-45.26505265052651,-23.838776843224053],[-45.27225272252721,-23.86917123408194],[-45.25425254252542,-23.897877047669944],[-45.22185221852217,-23.8928113158603],[-45.21465214652147,-23.899565624939832],[-45.21465214652147,-23.901254202209714],[-45.21465214652147,-23.906319934019358]]],[[[-44.102241022410226,-23.14983731711191],[-44.084240842408406,-23.161657358001086],[-44.08064080640807,-23.1701002443505],[-44.09864098640986,-23.17347739889027],[-44.102241022410226,-23.178543130699914],[-44.109441094410926,-23.180231707969803],[-44.11304113041129,-23.176854553430033],[-44.116641166411654,-23.17178882162039],[-44.116641166411654,-23.16841166708062],[-44.116641166411654,-23.165034512540856],[-44.127441274412746,-23.165034512540856],[-44.134641346413446,-23.165034512540856],[-44.141841418414174,-23.16841166708062],[-44.14544145441454,-23.17347739889027],[-44.159841598415966,-23.165034512540856],[-44.167041670416694,-23.17178882162039],[-44.177841778417786,-23.181920285239684],[-44.18864188641885,-23.18698601704933],[-44.23184231842319,-23.19374032612886],[-44.242642426424254,-23.19374032612886],[-44.25704257042571,-23.18698601704933],[-44.26424264242641,-23.180231707969803],[-44.2750427504275,-23.17516597616015],[-44.293042930429294,-23.17347739889027],[-44.30024300243002,-23.178543130699914],[-44.311043110431086,-23.19205174885898],[-44.318243182431814,-23.207248944287926],[-44.32184321843218,-23.220757562446984],[-44.32904329043291,-23.220757562446984],[-44.32904329043291,-23.219068985177103],[-44.32904329043291,-23.21738040790722],[-44.32904329043291,-23.21400325336745],[-44.336243362433606,-23.207248944287926],[-44.343443434434334,-23.198806057938512],[-44.33984339843397,-23.190363171589098],[-44.336243362433606,-23.180231707969803],[-44.35424354243543,-23.180231707969803],[-44.361443614436126,-23.178543130699914],[-44.36504365043649,-23.17347739889027],[-44.368643686436855,-23.165034512540856],[-44.36504365043649,-23.163345935270975],[-44.361443614436126,-23.163345935270975],[-44.32184321843218,-23.144771585302266],[-44.29664296642966,-23.117754348984143],[-44.285842858428566,-23.122820080793787],[-44.27144271442714,-23.114377194444373],[-44.24624246242462,-23.09073711266602],[-44.24624246242462,-23.08567138085637],[-44.242642426424254,-23.070474185427422],[-44.235442354423526,-23.06878560815754],[-44.23184231842319,-23.07216276269731],[-44.228242282422826,-23.075539917237073],[-44.228242282422826,-23.077228494506954],[-44.217442174421734,-23.077228494506954],[-44.20664206642067,-23.080605649046717],[-44.19584195841958,-23.08567138085637],[-44.185041850418486,-23.09073711266602],[-44.185041850418486,-23.097491421745545],[-44.192241922419214,-23.097491421745545],[-44.19944199441994,-23.100868576285315],[-44.203042030420306,-23.102557153555196],[-44.20664206642067,-23.104245730825077],[-44.185041850418486,-23.117754348984143],[-44.17064170641706,-23.10931146263473],[-44.16344163441633,-23.116065771714254],[-44.15624156241563,-23.126197235333557],[-44.141841418414174,-23.1312629671432],[-44.134641346413446,-23.127885812603438],[-44.13104131041311,-23.121131503523905],[-44.127441274412746,-23.114377194444373],[-44.12384123841238,-23.11100003990461],[-44.11304113041129,-23.114377194444373],[-44.11304113041129,-23.121131503523905],[-44.116641166411654,-23.126197235333557],[-44.116641166411654,-23.1312629671432],[-44.109441094410926,-23.139705853492615],[-44.102241022410226,-23.14983731711191]]],[[[49.95589955899561,-16.780523855114367],[49.95949959499595,-16.765326659685428],[49.95949959499595,-16.75012946425649],[49.96309963099631,-16.734932268827535],[49.9738997389974,-16.721423650668484],[49.98469984699847,-16.71129218704918],[50.02430024300244,-16.69102925981059],[50.02070020700208,-16.714669341588944],[49.98469984699847,-16.787278164193907],[49.95589955899561,-16.863264141338618],[49.90909909099091,-16.966267354801474],[49.87309873098732,-17.01354751835818],[49.84429844298444,-17.072647722804078],[49.82629826298265,-17.094599227312557],[49.81909819098192,-17.067581990994427],[49.82269822698228,-17.04056475467631],[49.8478984789848,-16.991596013849716],[49.85149851498517,-16.97808739569065],[49.85149851498517,-16.964578777531585],[49.85509855098553,-16.93756154121347],[49.85869858698587,-16.918987191244753],[49.865898658986595,-16.907167150355576],[49.88749887498875,-16.881838491307334],[49.95589955899561,-16.780523855114367]]],[[[-5.72225722257221,-15.909217983854901],[-5.7078570785707825,-15.907529406585013],[-5.679056790567898,-15.907529406585013],[-5.668256682566806,-15.902463674775362],[-5.657456574565742,-15.91934944747419],[-5.650256502565014,-15.934546642903143],[-5.650256502565014,-15.949743838332083],[-5.653856538565378,-15.963252456491148],[-5.661056610566106,-15.980138229189976],[-5.675456754567534,-15.98858111553939],[-5.6862568625686265,-15.995335424618915],[-5.700657006570054,-16.005466888238217],[-5.704257042570418,-15.998712579158678],[-5.7078570785707825,-15.997024001888803],[-5.711457114571147,-15.99364684734904],[-5.715057150571511,-15.990269692809264],[-5.7294572945729385,-16.005466888238217],[-5.74745747457473,-16.01390977458763],[-5.765457654576551,-16.015598351857506],[-5.779857798577979,-16.00884404277798],[-5.790657906579071,-15.995335424618915],[-5.787057870578707,-15.985203960999627],[-5.779857798577979,-15.973383920110436],[-5.776257762577615,-15.959875301951385],[-5.769057690576886,-15.944678106522431],[-5.754657546575459,-15.929480911093492],[-5.736657366573667,-15.917660870204315],[-5.72225722257221,-15.909217983854901]]],[[[48.332283322833234,-13.361154883601913],[48.33948339483396,-13.367909192681438],[48.35388353883539,-13.37804065630074],[48.36468364683648,-13.388172119920029],[48.36468364683648,-13.399992160809205],[48.36108361083612,-13.40843504715862],[48.350283502835026,-13.411812201698382],[48.33948339483396,-13.415189356238159],[48.32868328683287,-13.415189356238159],[48.325083250832506,-13.41350077896827],[48.32148321483217,-13.40843504715862],[48.317883178831806,-13.403369315348968],[48.317883178831806,-13.399992160809205],[48.31068310683108,-13.401680738079094],[48.29628296282965,-13.40843504715862],[48.26028260282604,-13.401680738079094],[48.249482494824946,-13.396615006269442],[48.23508235082352,-13.386483542650154],[48.22788227882279,-13.386483542650154],[48.22788227882279,-13.399992160809205],[48.224282242822426,-13.399992160809205],[48.22068220682209,-13.398303583539331],[48.22068220682209,-13.396615006269442],[48.217082170821726,-13.394926428999568],[48.206282062820634,-13.383106388110377],[48.199081990819906,-13.361154883601913],[48.19548195481957,-13.318940451854843],[48.199081990819906,-13.298677524616252],[48.20268202682027,-13.281791751917424],[48.20268202682027,-13.269971711028248],[48.18828188281884,-13.264905979218597],[48.199081990819906,-13.251397361059531],[48.21348213482136,-13.254774515599294],[48.22788227882279,-13.261528824678834],[48.242282422824246,-13.256463092869183],[48.249482494824946,-13.263217401948708],[48.26028260282604,-13.26659455648847],[48.267482674826766,-13.26828313375836],[48.27828278282783,-13.264905979218597],[48.27828278282783,-13.256463092869183],[48.274682746827466,-13.249708783789643],[48.267482674826766,-13.241265897440229],[48.2638826388264,-13.23282301109083],[48.2638826388264,-13.212560083852225],[48.27108271082713,-13.200740042963048],[48.281882818828194,-13.195674311153397],[48.299882998829986,-13.195674311153397],[48.317883178831806,-13.200740042963048],[48.325083250832506,-13.212560083852225],[48.325083250832506,-13.229445856551052],[48.31428314283144,-13.24633162924988],[48.325083250832506,-13.251397361059531],[48.332283322833234,-13.271660288298122],[48.33948339483396,-13.295300370076475],[48.34308343083433,-13.305431833695778],[48.35388353883539,-13.312186142775303],[48.350283502835026,-13.329071915474131],[48.3358833588336,-13.347646265442847],[48.332283322833234,-13.361154883601913]]],[[[45.200252002520045,-12.722872675586245],[45.21825218252184,-12.734692716475422],[45.225452254522565,-12.746512757364599],[45.225452254522565,-12.760021375523664],[45.2218522185222,-12.776907148222492],[45.19665196651968,-12.812367270890036],[45.18945189451895,-12.817433002699673],[45.18945189451895,-12.829253043588864],[45.19665196651968,-12.84107308447804],[45.21465214652147,-12.851204548097328],[45.21105211052111,-12.864713166256394],[45.20385203852038,-12.878221784415459],[45.200252002520045,-12.88328751622511],[45.19305193051932,-12.905239020733575],[45.175051750517525,-12.923813370702291],[45.1678516785168,-12.944076297940882],[45.18585185851859,-12.969404956989123],[45.182251822518225,-12.976159266068649],[45.17865178651786,-12.9812249978783],[45.17145171451716,-12.984602152418063],[45.16425164251643,-12.989667884227714],[45.16065160651607,-12.977847843338537],[45.15345153451534,-12.979536420608412],[45.14265142651428,-12.986290729687951],[45.131851318513185,-12.989667884227714],[45.12105121051212,-12.986290729687951],[45.11385113851139,-12.9812249978783],[45.106651066510665,-12.977847843338537],[45.0958509585096,-12.982913575148189],[45.099450994509965,-12.967716379719235],[45.0958509585096,-12.957584916099947],[45.08505085050851,-12.954207761560184],[45.07065070650708,-12.954207761560184],[45.07065070650708,-12.949142029750533],[45.08865088650887,-12.940699143401119],[45.08865088650887,-12.923813370702291],[45.081450814508145,-12.908616175273337],[45.06345063450635,-12.89848471165405],[45.06705067050672,-12.893418979844398],[45.074250742507445,-12.888353248034747],[45.08505085050851,-12.886664670764873],[45.08865088650887,-12.891730402574524],[45.106651066510665,-12.911993329813114],[45.124651246512485,-12.922124793432403],[45.13545135451355,-12.917059061622751],[45.13545135451355,-12.9035504434637],[45.131851318513185,-12.886664670764873],[45.124651246512485,-12.874844629875696],[45.11385113851139,-12.863024588986505],[45.08505085050851,-12.839384507208152],[45.099450994509965,-12.832630198128626],[45.1030510305103,-12.832630198128626],[45.1030510305103,-12.825875889049087],[45.099450994509965,-12.817433002699673],[45.0958509585096,-12.802235807270733],[45.09225092250924,-12.773529993682729],[45.08865088650887,-12.760021375523664],[45.07785077850778,-12.753267066444138],[45.06705067050672,-12.749889911904376],[45.056250562505625,-12.743135602824836],[45.049050490504925,-12.734692716475422],[45.04545045450456,-12.724561252856134],[45.0418504185042,-12.714429789236831],[45.0418504185042,-12.699232593807892],[45.09225092250924,-12.64688669844152],[45.0958509585096,-12.65364100752106],[45.0958509585096,-12.657018162060822],[45.0958509585096,-12.660395316600585],[45.09225092250924,-12.662083893870474],[45.08865088650887,-12.663772471140348],[45.08505085050851,-12.667149625680125],[45.09225092250924,-12.667149625680125],[45.09225092250924,-12.668838202949999],[45.0958509585096,-12.672215357489762],[45.0958509585096,-12.67390393475965],[45.11025110251103,-12.685723975648827],[45.12825128251282,-12.707675480157306],[45.13905139051391,-12.714429789236831],[45.15345153451534,-12.717806943776594],[45.182251822518225,-12.717806943776594],[45.200252002520045,-12.722872675586245]]],[[[43.78903789037892,-12.307482667195103],[43.79623796237962,-12.310859821734866],[43.850238502385025,-12.34631994440241],[43.86103861038612,-12.363205717101238],[43.85743857438575,-12.371648603450652],[43.843038430384325,-12.373337180720526],[43.817838178381805,-12.373337180720526],[43.75303753037531,-12.35982856256146],[43.68103681036811,-12.358139985291587],[43.666636666366685,-12.353074253481935],[43.65943659436596,-12.344631367132521],[43.66303663036632,-12.327745594433694],[43.65943659436596,-12.317614130814405],[43.648636486364865,-12.310859821734866],[43.641436414364165,-12.305794089925215],[43.63423634236344,-12.300728358115578],[43.63063630636307,-12.287219739956512],[43.63063630636307,-12.251759617288968],[43.63423634236344,-12.236562421860029],[43.65223652236523,-12.243316730939554],[43.666636666366685,-12.250071040019094],[43.709837098371,-12.258513926368508],[43.72783727837279,-12.263579658178159],[43.77823778237783,-12.2973512035758],[43.78903789037892,-12.307482667195103]]],[[[44.53064530645307,-12.233185267320266],[44.5270452704527,-12.354762830751824],[44.52344523445234,-12.373337180720526],[44.512645126451275,-12.380091489800066],[44.50184501845018,-12.376714335260289],[44.49104491044912,-12.368271448910875],[44.48384483844839,-12.358139985291587],[44.48024480244803,-12.349697098942173],[44.48024480244803,-12.336188480783107],[44.4730447304473,-12.329434171703582],[44.4010440104401,-12.280465430876987],[44.39024390243904,-12.266956812717922],[44.386643866438675,-12.251759617288968],[44.36864368643688,-12.245005308209443],[44.32904329043291,-12.236562421860029],[44.2678426784268,-12.204479453732262],[44.260642606426075,-12.197725144652722],[44.2210422104221,-12.175773640144257],[44.20664206642067,-12.160576444715304],[44.2210422104221,-12.160576444715304],[44.235442354423554,-12.16395359925508],[44.260642606426075,-12.174085062874369],[44.278642786427866,-12.17915079468402],[44.311043110431115,-12.182527949223783],[44.32184321843218,-12.187593681033434],[44.32904329043291,-12.184216526493671],[44.339843398434,-12.17915079468402],[44.34344343443436,-12.174085062874369],[44.37224372243722,-12.180839371953894],[44.4010440104401,-12.15719929017554],[44.41544415444156,-12.120050590238122],[44.411844118441195,-12.086279044840467],[44.42264422644226,-12.082901890300704],[44.437044370443715,-12.07445900395129],[44.44784447844478,-12.071081849411527],[44.45144451444514,-12.069393272141639],[44.45504455044551,-12.066016117601876],[44.45864458644587,-12.064327540332002],[44.4658446584466,-12.064327540332002],[44.4730447304473,-12.067704694871765],[44.48024480244803,-12.082901890300704],[44.48384483844839,-12.086279044840467],[44.5270452704527,-12.219676649161201],[44.53064530645307,-12.233185267320266]]],[[[39.89739897398974,-7.636877938699556],[39.911799117991194,-7.653763711398383],[39.90819908199083,-7.687535256796039],[39.893798937989374,-7.753389770321462],[39.86499864998652,-7.819244283846885],[39.85059850598506,-7.837818633815601],[39.85059850598506,-7.844572942895127],[39.85059850598506,-7.851327251974666],[39.8469984699847,-7.858081561054192],[39.84339843398436,-7.878344488292782],[39.839798397984,-7.883410220102434],[39.828998289982906,-7.89523026099161],[39.828998289982906,-7.90198457007115],[39.82179821798218,-7.913804610960327],[39.810998109981114,-7.913804610960327],[39.78219782197823,-7.905361724610913],[39.753397533975345,-7.915493188230201],[39.74259742597428,-7.93744469273868],[39.73539735397355,-7.959396197247159],[39.72459724597246,-7.97290481540621],[39.68499684996851,-7.9881020108351635],[39.66699666996672,-7.993167742644815],[39.6489964899649,-7.993167742644815],[39.63099630996311,-7.986413433565275],[39.602196021960225,-7.9577076199772705],[39.5877958779588,-7.945887579088094],[39.5949959499595,-7.942510424548331],[39.61299612996132,-7.942510424548331],[39.62019620196202,-7.939133270008568],[39.62379623796238,-7.9357561154687914],[39.62379623796238,-7.929001806389266],[39.627396273962745,-7.9222474973097405],[39.63099630996311,-7.9222474973097405],[39.63099630996311,-7.915493188230201],[39.63819638196384,-7.913804610960327],[39.64539645396454,-7.913804610960327],[39.6489964899649,-7.912116033690438],[39.69219692196924,-7.8699016019433685],[39.70659706597067,-7.8479500974348895],[39.69939699396994,-7.836130056545713],[39.702997029970305,-7.819244283846885],[39.7137971379714,-7.810801397497471],[39.73179731797319,-7.809112820227597],[39.74979749797498,-7.809112820227597],[39.76419764197644,-7.805735665687834],[39.79659796597966,-7.792227047528769],[39.81459814598148,-7.788849892989006],[39.80739807398075,-7.780407006639592],[39.80019800198002,-7.778718429369704],[39.7749977499775,-7.7820955839094665],[39.7749977499775,-7.775341274829941],[39.785797857978594,-7.771964120290178],[39.79659796597966,-7.766898388480527],[39.81459814598148,-7.7550783475913505],[39.836198361983634,-7.744946883972048],[39.84339843398436,-7.738192574892523],[39.85059850598506,-7.712863915844281],[39.861398613986154,-7.6976667204153415],[39.86859868598685,-7.684158102256276],[39.879398793987946,-7.679092370446625],[39.88299882998831,-7.674026638636974],[39.893798937989374,-7.647009402318858],[39.89739897398974,-7.636877938699556]]],[[[55.40275402754028,-4.659916211896359],[55.395553955539555,-4.658227634626485],[55.395553955539555,-4.653161902816834],[55.39915399153992,-4.653161902816834],[55.39915399153992,-4.649784748277071],[55.388353883538855,-4.648096171007182],[55.38115381153813,-4.649784748277071],[55.370353703537035,-4.646407593737294],[55.36675366753667,-4.643030439197531],[55.36675366753667,-4.6396532846577685],[55.3739537395374,-4.6396532846577685],[55.37755377553776,-4.63796470738788],[55.3739537395374,-4.632898975578243],[55.388353883538855,-4.619390357419178],[55.395553955539555,-4.6177017801492894],[55.40635406354065,-4.616013202879415],[55.41715417154171,-4.610947471069764],[55.420754207542075,-4.6041931619902385],[55.42435424354244,-4.595750275640825],[55.43155431554317,-4.592373121101048],[55.43515435154353,-4.578864502941997],[55.43515435154353,-4.561978730243169],[55.44235442354423,-4.56029015297328],[55.445954459544595,-4.56029015297328],[55.45315453154532,-4.561978730243169],[55.463954639546415,-4.572110193862457],[55.46755467554675,-4.583930234751634],[55.463954639546415,-4.587307389291411],[55.46035460354605,-4.599127430180587],[55.46035460354605,-4.605881739260113],[55.46035460354605,-4.6177017801492894],[55.46035460354605,-4.622767511958941],[55.45675456754569,-4.624456089228829],[55.45675456754569,-4.626144666498703],[55.463954639546415,-4.626144666498703],[55.47475474754748,-4.6396532846577685],[55.496354963549635,-4.654850480086708],[55.51795517955179,-4.668359098245773],[55.52875528755288,-4.68017913913495],[55.521555215552155,-4.70719637545308],[55.52515525155252,-4.713950684532605],[55.52875528755288,-4.737590766310959],[55.51795517955179,-4.739279343580847],[55.51795517955179,-4.751099384470024],[55.52515525155252,-4.76967373443874],[55.52875528755288,-4.783182352597805],[55.53595535955361,-4.789936661677331],[55.539555395553975,-4.803445279836396],[55.51795517955179,-4.803445279836396],[55.50355503555036,-4.795002393486982],[55.49275492754927,-4.773050888978503],[55.48555485554857,-4.7629194253592],[55.47835478354784,-4.759542270819438],[55.471154711547115,-4.7629194253592],[55.463954639546415,-4.759542270819438],[55.46755467554675,-4.740967920850736],[55.48555485554857,-4.740967920850736],[55.49275492754927,-4.735902189041084],[55.48555485554857,-4.7274593026916705],[55.48195481954821,-4.720704993612145],[55.48195481954821,-4.712262107262731],[55.47835478354784,-4.70719637545308],[55.46755467554675,-4.705507798183191],[55.45675456754569,-4.690310602754252],[55.44955449554496,-4.678490561865075],[55.43515435154353,-4.676801984595187],[55.41715417154171,-4.666670520975899],[55.40995409954101,-4.6616047891662475],[55.40275402754028,-4.659916211896359]]],[[[41.0530105301053,-2.04937575265771],[41.06741067410675,-2.0358671344986448],[41.09261092610927,-2.0375557117685332],[41.12141121411216,-2.0476871753878214],[41.14301143011431,-2.0595072162770123],[41.161011610116105,-2.0915901844047795],[41.15381153811538,-2.11185311164337],[41.135811358113585,-2.115230266183133],[41.12501125011252,-2.0932787616746538],[41.12501125011252,-2.1050988025638446],[41.12141121411216,-2.115230266183133],[41.11781117811179,-2.1236731525325467],[41.11421114211143,-2.1270503070723095],[41.110611106111065,-2.128738884342198],[41.1070110701107,-2.1321160388819607],[41.10341103411034,-2.133804616151849],[41.09981099811,-2.1354931934217234],[41.09261092610927,-2.133804616151849],[41.085410854108545,-2.128738884342198],[41.08181081810818,-2.1236731525325467],[41.08181081810818,-2.1219845752626725],[41.06741067410675,-2.1236731525325467],[41.04941049410496,-2.128738884342198],[41.01341013410135,-2.1490018115807885],[41.00261002610026,-2.142247502501263],[40.99540995409956,-2.1439360797711373],[40.98820988209883,-2.1523789661205512],[40.984609846098465,-2.1658875842796164],[40.99180991809919,-2.1743304706290303],[41.00261002610026,-2.1793962024386815],[41.009810098100985,-2.1878390887880954],[41.00621006210062,-2.1979705524073836],[40.99540995409956,-2.1979705524073836],[40.984609846098465,-2.191216243327858],[40.9810098100981,-2.1810847797085557],[40.9810098100981,-2.169264738819379],[40.95580955809558,-2.1743304706290303],[40.95580955809558,-2.150690388850677],[40.97020970209704,-2.120295997992784],[40.984609846098465,-2.0966559162144307],[41.00261002610026,-2.0865244525951283],[41.02421024210244,-2.079770143515603],[41.0458104581046,-2.0696386798963005],[41.0530105301053,-2.04937575265771]]],[[[7.461074610746124,1.6739371274336463],[7.45747457474576,1.6705599728938694],[7.446674466744668,1.6654942410842324],[7.435874358743604,1.6587399320046927],[7.428674286742876,1.6486084683854045],[7.4430744307443035,1.6452313138456418],[7.45747457474576,1.6384770047661021],[7.461074610746124,1.6300341184166882],[7.453874538745396,1.6266569638769255],[7.439474394743968,1.6232798093371628],[7.435874358743604,1.6148369229877488],[7.435874358743604,1.5928854184792698],[7.43227432274324,1.5726224912406792],[7.425074250742512,1.5624910276213768],[7.4178741787417835,1.559113873081614],[7.40707407074072,1.5557367185418514],[7.403474034740356,1.5506709867322002],[7.403474034740356,1.5422281003827862],[7.3998739987399915,1.5304080594936096],[7.3998739987399915,1.5354737913032608],[7.3962739627396274,1.5422281003827862],[7.392673926739263,1.545605254922549],[7.389073890738928,1.5422281003827862],[7.3818738187382,1.537162368573135],[7.371073710737107,1.554048141271963],[7.3566735667356795,1.559113873081614],[7.342273422734223,1.559113873081614],[7.331473314733159,1.5658681821611538],[7.327873278732795,1.5962625730190325],[7.331473314733159,1.6148369229877488],[7.338673386733888,1.6131483457178604],[7.3566735667356795,1.6199026547974],[7.363873638736408,1.6300341184166882],[7.367473674736743,1.6418541593058649],[7.367473674736743,1.6587399320046927],[7.371073710737107,1.677314281973409],[7.385473854738564,1.6925114774023484],[7.403474034740356,1.699265786481888],[7.4214742147421475,1.6958886319421111],[7.450274502745032,1.6925114774023484],[7.461074610746124,1.6891343228625857],[7.461074610746124,1.6739371274336463]]],[[[7.273872738727391,4.492172590867867],[7.320673206732067,4.497238322677518],[7.331473314733159,4.492172590867867],[7.320673206732067,4.48035254997869],[7.3134731347313675,4.468532509089513],[7.3134731347313675,4.455023890930448],[7.3134731347313675,4.439826695501495],[7.306273062730639,4.424629500072555],[7.299072990729911,4.414498036453267],[7.284672846728483,4.406055150103853],[7.270272702727027,4.400989418294202],[7.180271802718039,4.382415068325486],[7.147871478714791,4.385792222865248],[7.137071370713727,4.397612263754439],[7.147871478714791,4.416186613723141],[7.180271802718039,4.449958159120797],[7.201872018720195,4.483729704518453],[7.219872198721987,4.507369786296806],[7.227072270722715,4.51581267264622],[7.230672306723079,4.532698445345048],[7.241472414724143,4.524255558995634],[7.259472594725963,4.497238322677518],[7.273872738727391,4.492172590867867]]],[[[-16.047160471604712,11.118149797887568],[-16.06156061560614,11.118149797887568],[-16.06156061560614,11.111395488808043],[-16.05436054360544,11.091132561569452],[-16.057960579605776,11.072558211600736],[-16.06156061560614,11.059049593441685],[-16.05436054360544,11.048918129822383],[-16.075960759607597,11.035409511663318],[-16.09396093960939,11.035409511663318],[-16.11196111961118,11.037098088933206],[-16.133561335613336,11.028655202583792],[-16.1371613716137,11.037098088933206],[-16.1371613716137,11.04554097528262],[-16.1371613716137,11.053983861632034],[-16.133561335613336,11.064115325251322],[-16.1371613716137,11.064115325251322],[-16.151561515615157,11.042163820742857],[-16.14436144361443,11.028655202583792],[-16.158761587615857,11.032032357123555],[-16.16236162361622,11.035409511663318],[-16.165961659616585,11.042163820742857],[-16.18756187561874,11.03878666620308],[-16.21276212762126,11.055672438901908],[-16.234362343623417,11.08100109795015],[-16.248762487624873,11.104641179728517],[-16.234362343623417,11.118149797887568],[-16.21996219962199,11.12996983877676],[-16.201962019620197,11.135035570586396],[-16.18756187561874,11.131658416046633],[-16.201962019620197,11.126592684236982],[-16.20556205562056,11.124904106967108],[-16.20556205562056,11.121526952427345],[-16.20556205562056,11.118149797887568],[-16.201962019620197,11.114772643347806],[-16.198361983619833,11.111395488808043],[-16.191161911619105,11.119838375157457],[-16.18036180361804,11.124904106967108],[-16.16956169561695,11.131658416046633],[-16.16236162361622,11.16542996144429],[-16.15516155161552,11.172184270523815],[-16.14436144361443,11.175561425063592],[-16.1371613716137,11.187381465952768],[-16.133561335613336,11.180627156873229],[-16.11916119161191,11.172184270523815],[-16.115561155611545,11.197512929572056],[-16.101161011610117,11.207644393191359],[-16.07956079560796,11.20595581592147],[-16.06156061560614,11.19244719776242],[-16.057960579605776,11.18569288868288],[-16.057960579605776,11.178938579603354],[-16.065160651606504,11.172184270523815],[-16.06876068760687,11.162052806904526],[-16.06876068760687,11.148544188745461],[-16.06156061560614,11.138412725126173],[-16.047160471604712,11.118149797887568]]],[[[-15.65835658356582,11.302204720304786],[-15.661956619566183,11.285318947605958],[-15.654756547565484,11.251547402208303],[-15.65835658356582,11.2329730522396],[-15.661956619566183,11.229595897699838],[-15.669156691566911,11.241415938589014],[-15.679956799568004,11.254924556748065],[-15.694356943569431,11.254924556748065],[-15.694356943569431,11.24817024766854],[-15.687156871568703,11.24817024766854],[-15.687156871568703,11.241415938589014],[-15.694356943569431,11.22790732042995],[-15.697956979569796,11.221153011350424],[-15.705157051570524,11.214398702270884],[-15.712357123571223,11.222841588620298],[-15.715957159571587,11.224530165890187],[-15.72675726757268,11.221153011350424],[-15.719557195571952,11.209332970461233],[-15.719557195571952,11.195824352302182],[-15.723157231572316,11.180627156873229],[-15.72675726757268,11.16542996144429],[-15.730357303573044,11.17049569325394],[-15.730357303573044,11.175561425063592],[-15.73395733957338,11.178938579603354],[-15.741157411574108,11.178938579603354],[-15.741157411574108,11.177250002333466],[-15.744757447574472,11.177250002333466],[-15.748357483574836,11.178938579603354],[-15.755557555575564,11.178938579603354],[-15.762757627576264,11.167118538714178],[-15.773557735577356,11.173872847793703],[-15.780757807578084,11.187381465952768],[-15.780757807578084,11.200890084111819],[-15.773557735577356,11.20595581592147],[-15.762757627576264,11.214398702270884],[-15.7591575915759,11.221153011350424],[-15.773557735577356,11.22790732042995],[-15.773557735577356,11.2329730522396],[-15.755557555575564,11.254924556748065],[-15.7519575195752,11.259990288557717],[-15.755557555575564,11.271810329446893],[-15.755557555575564,11.27518748398667],[-15.748357483574836,11.276876061256544],[-15.741157411574108,11.27518748398667],[-15.737557375573743,11.27518748398667],[-15.73395733957338,11.278564638526433],[-15.723157231572316,11.298827565765023],[-15.697956979569796,11.305581874844549],[-15.672756727567275,11.305581874844549],[-15.65835658356582,11.302204720304786]]],[[[-16.021960219602192,11.511588301770246],[-16.01836018360183,11.528474074469074],[-16.0111601116011,11.550425578977539],[-16.000360003600036,11.568999928946255],[-15.989559895598944,11.577442815295669],[-15.975159751597516,11.584197124375194],[-15.95355953559536,11.606148628883673],[-15.939159391593904,11.604460051613785],[-15.939159391593904,11.589262856184845],[-15.931959319593176,11.579131392565557],[-15.921159211592112,11.577442815295669],[-15.917559175591748,11.590951433454734],[-15.906759067590684,11.579131392565557],[-15.91035910359102,11.552114156247427],[-15.899558995589956,11.543671269898013],[-15.91035910359102,11.523408342659422],[-15.913959139591384,11.49807968361118],[-15.91035910359102,11.474439601832827],[-15.899558995589956,11.454176674594237],[-15.917559175591748,11.447422365514697],[-15.942759427594268,11.432225170085758],[-15.964359643596424,11.427159438276107],[-15.975159751597516,11.447422365514697],[-15.982359823598216,11.447422365514697],[-15.982359823598216,11.442356633705046],[-15.98595985959858,11.437290901895409],[-15.98595985959858,11.432225170085758],[-15.989559895598944,11.437290901895409],[-15.996759967599672,11.444045210974934],[-16.000360003600036,11.447422365514697],[-16.007560075600736,11.43560232462552],[-16.014760147601464,11.428848015545995],[-16.025560255602556,11.422093706466455],[-16.03636036360362,11.420405129196581],[-16.04356043560435,11.432225170085758],[-16.07956079560796,11.457553829134],[-16.083160831608296,11.467685292753288],[-16.047160471604712,11.487948219991878],[-16.025560255602556,11.511588301770246],[-16.021960219602192,11.511588301770246]]],[[[-16.165961659616585,11.871255260255253],[-16.147961479614793,11.878009569334793],[-16.129961299613,11.876320992064905],[-16.09396093960939,11.871255260255253],[-16.07956079560796,11.872943837525142],[-16.065160651606504,11.878009569334793],[-16.03636036360362,11.893206764763733],[-16.039960399603984,11.896583919303495],[-16.039960399603984,11.898272496573384],[-16.03636036360362,11.899961073843258],[-16.021960219602192,11.899961073843258],[-16.0111601116011,11.899961073843258],[-15.993159931599308,11.898272496573384],[-15.98595985959858,11.88982961022397],[-15.98595985959858,11.888141032954081],[-15.989559895598944,11.861123796635965],[-15.996759967599672,11.849303755746789],[-16.007560075600736,11.837483714857598],[-16.014760147601464,11.823975096698547],[-16.021960219602192,11.78513781949124],[-16.02916029160292,11.7699406240623],[-16.039960399603984,11.754743428633347],[-16.050760507605077,11.761497737712887],[-16.065160651606504,11.761497737712887],[-16.075960759607597,11.756432005903235],[-16.083160831608296,11.754743428633347],[-16.097560975609753,11.763186314982761],[-16.122761227612273,11.80033501492018],[-16.133561335613336,11.80540074672983],[-16.14436144361443,11.80540074672983],[-16.15516155161552,11.807089323999719],[-16.158761587615857,11.82059794215877],[-16.158761587615857,11.8476151784769],[-16.16236162361622,11.861123796635965],[-16.165961659616585,11.871255260255253]]],[[[-24.294842948429476,14.91744865512365],[-24.302043020430204,14.907317191504347],[-24.29844298442984,14.89549715061517],[-24.294842948429476,14.883677109725994],[-24.291242912429112,14.873545646106692],[-24.29844298442984,14.863414182487404],[-24.334443344433453,14.831331214359622],[-24.377643776437765,14.816134018930683],[-24.41364413644135,14.821199750740334],[-24.44964449644496,14.838085523439162],[-24.50724507245073,14.885365686995868],[-24.521645216452157,14.903940036964585],[-24.52524525245252,14.924202964203175],[-24.521645216452157,14.944465891441766],[-24.50724507245073,14.969794550490008],[-24.48924489244891,14.990057477728598],[-24.46404464044639,15.006943250427426],[-24.402844028440285,15.037337641285319],[-24.384843848438493,15.044091950364844],[-24.36324363243631,15.045780527634733],[-24.341643416434152,15.040714795825082],[-24.33084330843309,15.028894754935905],[-24.320043200431996,15.013697559506966],[-24.30564305643057,14.97992601410931],[-24.294842948429476,14.9309572732827],[-24.294842948429476,14.91744865512365]]],[[[-23.128431284312825,15.310887159006313],[-23.121231212312125,15.299067118117136],[-23.121231212312125,15.283869922688197],[-23.121231212312125,15.256852686370067],[-23.110431104311033,15.199441059194058],[-23.110431104311033,15.172423822875928],[-23.128431284312825,15.147095163827686],[-23.13203132031319,15.145406586557812],[-23.15003150031501,15.142029432018049],[-23.153631536315345,15.14034085474816],[-23.15723157231571,15.13527512293851],[-23.164431644316437,15.123455082049333],[-23.1680316803168,15.12007792750957],[-23.18243182431823,15.118389350239681],[-23.196831968319685,15.121766504779458],[-23.21843218432184,15.133586545668635],[-23.240032400323997,15.150472318367463],[-23.25083250832509,15.16229235925664],[-23.25803258032579,15.174112400145816],[-23.254432544325425,15.187621018304881],[-23.247232472324725,15.199441059194058],[-23.24363243632436,15.211261100083235],[-23.25083250832509,15.223081140972411],[-23.236432364323633,15.231524027321825],[-23.229232292322905,15.243344068211002],[-23.236432364323633,15.255164109100178],[-23.25083250832509,15.256852686370067],[-23.247232472324725,15.270361304529132],[-23.22563225632257,15.28724707722796],[-23.211232112321113,15.310887159006313],[-23.214832148321477,15.314264313546076],[-23.214832148321477,15.315952890815964],[-23.21843218432184,15.319330045355727],[-23.204032040320385,15.324395777165378],[-23.189631896318957,15.332838663514792],[-23.189631896318957,15.32946150897503],[-23.189631896318957,15.319330045355727],[-23.18243182431823,15.326084354435253],[-23.178831788317865,15.327772931705141],[-23.17523175231753,15.332838663514792],[-23.1680316803168,15.326084354435253],[-23.17523175231753,15.319330045355727],[-23.160831608316073,15.312575736276202],[-23.139231392313917,15.317641468085839],[-23.128431284312825,15.310887159006313]]],[[[-22.68202682026819,16.112961362200593],[-22.678426784267828,16.11127278493072],[-22.671226712267128,16.102829898581305],[-22.667626676266764,16.091009857692114],[-22.671226712267128,16.085944125882477],[-22.674826748267463,16.082566971342715],[-22.678426784267828,16.072435507723412],[-22.678426784267828,16.063992621374],[-22.696426964269648,16.05217258048482],[-22.750427504275024,16.009958148737752],[-22.786427864278636,15.991383798769036],[-22.804428044280428,15.986318066959399],[-22.862028620286196,15.982940912419622],[-22.87282872828729,15.98462948968951],[-22.883628836288352,15.988006644229273],[-22.89802898028981,15.99982668511845],[-22.908829088290872,16.003203839658227],[-22.944829448294485,16.020089612357054],[-22.959229592295912,16.030221075976343],[-22.962829628296276,16.05217258048482],[-22.962829628296276,16.070746930453524],[-22.959229592295912,16.08932128042224],[-22.94842948429485,16.102829898581305],[-22.934029340293392,16.107895630390942],[-22.912429124291236,16.12478140308977],[-22.92322923229233,16.212587421123672],[-22.9160291602916,16.244670389251453],[-22.912429124291236,16.23622750290204],[-22.908829088290872,16.23116177109239],[-22.894428944289444,16.222718884742974],[-22.876428764287624,16.21427599839356],[-22.851228512285104,16.205833112044147],[-22.829628296282948,16.204144534774258],[-22.818828188281884,16.212587421123672],[-22.811628116281156,16.227784616552626],[-22.793627936279364,16.23116177109239],[-22.736027360273596,16.217653152933323],[-22.725227252272504,16.212587421123672],[-22.71442714427144,16.205833112044147],[-22.710827108271076,16.199078802964607],[-22.703627036270348,16.178815875726016],[-22.700027000269984,16.175438721186254],[-22.68202682026819,16.168684412106728],[-22.678426784267828,16.1517986394079],[-22.68202682026819,16.112961362200593]]],[[[-24.068040680406796,16.614468811355763],[-24.04644046440464,16.59927161592681],[-24.035640356403547,16.592517306847284],[-24.032040320403212,16.597583038656936],[-24.032040320403212,16.56212291598939],[-24.042840428404276,16.560434338719517],[-24.11484114841147,16.55874576144963],[-24.190441904419032,16.592517306847284],[-24.233642336423372,16.602648770466573],[-24.27324273242732,16.587451575037633],[-24.287642876428748,16.570565802338805],[-24.316443164431632,16.519908484242322],[-24.32364323643236,16.482759784304903],[-24.334443344433453,16.49457982519408],[-24.34884348843488,16.5317285251315],[-24.352443524435245,16.540171411480912],[-24.359643596435973,16.546925720560452],[-24.366843668436672,16.555368606909866],[-24.366843668436672,16.56887722506893],[-24.366843668436672,16.57900868868822],[-24.370443704437037,16.587451575037633],[-24.377643776437765,16.592517306847284],[-24.384843848438493,16.59420588411716],[-24.410044100441013,16.6009601931967],[-24.42444424444244,16.617845965895526],[-24.43164431644317,16.639797470404005],[-24.420844208442077,16.66174897491247],[-24.36324363243631,16.68201190215106],[-24.352443524435245,16.680323324881186],[-24.341643416434152,16.675257593071535],[-24.327243272432725,16.66850328399201],[-24.30564305643057,16.648240356753405],[-24.291242912429112,16.64148604767388],[-24.284042840428413,16.64148604767388],[-24.226442264422644,16.649928934023293],[-24.215642156421552,16.648240356753405],[-24.179641796417968,16.63135458405459],[-24.17244172441724,16.629666006784703],[-24.08964089640895,16.622911697705177],[-24.068040680406796,16.614468811355763]]],[[[-22.93042930429303,16.59420588411716],[-22.94122941229412,16.670191861261884],[-22.95562955629555,16.69889767484989],[-22.977229772297704,16.6887662112306],[-22.98082980829807,16.70396340665954],[-22.984429844298432,16.722537756628256],[-22.98082980829807,16.741112106596958],[-22.970029700297005,16.75124357021626],[-22.970029700297005,16.757997879295786],[-22.984429844298432,16.76137503383555],[-22.988029880298797,16.77150649745485],[-22.99162991629916,16.785015115613916],[-22.99162991629916,16.815409506471795],[-22.970029700297005,16.83060670190075],[-22.92322923229233,16.861001092758627],[-22.9160291602916,16.852558206409213],[-22.89802898028981,16.837361010980274],[-22.894428944289444,16.82891812463086],[-22.89802898028981,16.825540970091097],[-22.901629016290144,16.81372092920192],[-22.908829088290872,16.80358946558262],[-22.908829088290872,16.800212311042856],[-22.905229052290508,16.798523733772967],[-22.901629016290144,16.795146579233204],[-22.905229052290508,16.736046374787307],[-22.901629016290144,16.717472024818605],[-22.89802898028981,16.710717715739065],[-22.883628836288352,16.69889767484989],[-22.880028800287988,16.692143365770363],[-22.883628836288352,16.68201190215106],[-22.887228872288716,16.66174897491247],[-22.887228872288716,16.651617511293182],[-22.89082890828908,16.64655177948353],[-22.89802898028981,16.639797470404005],[-22.901629016290144,16.634731738594354],[-22.901629016290144,16.629666006784703],[-22.89802898028981,16.62122312043529],[-22.89802898028981,16.616157388625638],[-22.894428944289444,16.614468811355763],[-22.901629016290144,16.60602592500635],[-22.908829088290872,16.602648770466573],[-22.9160291602916,16.59927161592681],[-22.93042930429303,16.59420588411716]]],[[[-24.921249212492114,16.894772638156283],[-24.921249212492114,16.89139548361652],[-24.914049140491386,16.881264019997218],[-24.899648996489958,16.872821133647804],[-24.88524885248853,16.867755401838167],[-24.881648816488166,16.862689670028516],[-24.878048780487802,16.84918105186945],[-24.874448744487438,16.835672433710386],[-24.874448744487438,16.825540970091097],[-24.89244892448923,16.81372092920192],[-24.914049140491386,16.805278042852507],[-24.94284942849427,16.800212311042856],[-24.96804968049679,16.798523733772967],[-24.97524975249752,16.796835156503093],[-24.982449824498246,16.78670369288379],[-24.989649896498946,16.785015115613916],[-24.996849968499674,16.78670369288379],[-25.058050580505807,16.810343774662144],[-25.06885068850687,16.815409506471795],[-25.0760507605076,16.822163815551335],[-25.079650796507963,16.832295279170623],[-25.09405094050939,16.825540970091097],[-25.090450904509026,16.847492474599576],[-25.079650796507963,16.86437824729839],[-25.065250652506506,16.87619828818758],[-25.05085050850508,16.881264019997218],[-25.01845018450183,16.881264019997218],[-25.007650076500767,16.888018329076758],[-25.01125011250113,16.901526947235823],[-24.982449824498246,16.916724142664762],[-24.978849788497882,16.923478451744288],[-24.971649716497154,16.923478451744288],[-24.964449644496426,16.908281256315348],[-24.953649536495362,16.909969833585237],[-24.939249392493906,16.923478451744288],[-24.928449284492842,16.918412719934636],[-24.91764917649175,16.908281256315348],[-24.914049140491386,16.899838369965934],[-24.921249212492114,16.894772638156283]]],[[[-16.378363783637838,19.81432273778347],[-16.35676356763568,19.853160014990777],[-16.34596345963459,19.868357210419717],[-16.335163351633497,19.85653716953054],[-16.367563675636745,19.721450987939917],[-16.392763927639265,19.658973628954257],[-16.43236432364324,19.601562001778248],[-16.450364503645034,19.623513506286727],[-16.453964539645398,19.62857923809638],[-16.453964539645398,19.637022124445792],[-16.450364503645034,19.64715358806508],[-16.450364503645034,19.657285051684383],[-16.457564575645762,19.66741651530367],[-16.46476464764646,19.6843022880025],[-16.457564575645762,19.702876637971215],[-16.428764287642878,19.745091069718285],[-16.425164251642514,19.748468224258048],[-16.428764287642878,19.777174037846052],[-16.425164251642514,19.787305501465354],[-16.417964179641785,19.805879851434057],[-16.40716407164072,19.821077046862996],[-16.3891638916389,19.826142778672647],[-16.378363783637838,19.81432273778347]]],[[[-17.933579335793354,27.851950542425115],[-17.915579155791562,27.85026196515524],[-17.89757897578974,27.84013050153594],[-17.883178831788314,27.82831046064676],[-17.87957879578795,27.814801842487697],[-17.886778867788678,27.79791606978887],[-17.926379263792626,27.742193019882748],[-17.926379263792626,27.737127288073097],[-17.926379263792626,27.730372978993557],[-17.926379263792626,27.723618669914032],[-17.92997929979299,27.71855293810438],[-17.933579335793354,27.715175783564618],[-17.940779407794082,27.71348720629473],[-17.944379443794446,27.710110051754967],[-17.947979479794782,27.705044319945316],[-17.951579515795146,27.69997858813568],[-17.958779587795874,27.69322427905614],[-17.965979659796602,27.686469969976613],[-17.969579695796966,27.6780270836272],[-17.969579695796966,27.654387001848846],[-17.98037980379803,27.642566960959655],[-17.994779947799486,27.642566960959655],[-18.016380163801642,27.652698424578958],[-18.03078030780307,27.667895620007897],[-18.041580415804162,27.681404238166962],[-18.052380523805226,27.691535701786265],[-18.127981279812786,27.69997858813568],[-18.14598145981458,27.708421474485093],[-18.160381603816035,27.721930092644143],[-18.167581675816763,27.757390215311688],[-18.13878138781388,27.769210256200864],[-18.099180991809902,27.7658331016611],[-18.05598055980559,27.7557016380418],[-18.041580415804162,27.7658331016611],[-18.001980019800186,27.799604647058757],[-17.994779947799486,27.80804753340817],[-17.994779947799486,27.81817899702746],[-17.991179911799122,27.82324472883711],[-17.969579695796966,27.831687615186524],[-17.933579335793354,27.851950542425115]]],[[[-17.31077310773108,28.206551769100486],[-17.26037260372604,28.218371809989662],[-17.213572135721364,28.204863191830597],[-17.170371703717024,28.181223110052244],[-17.11637116371162,28.1457629873847],[-17.105571055710556,28.123811482876235],[-17.098370983709827,28.100171401097867],[-17.112771127711284,28.081597051129165],[-17.13437134371344,28.06977701023999],[-17.163171631716324,28.044448351191747],[-17.18477184771848,28.03093973303268],[-17.206372063720636,28.02587400122303],[-17.231572315723156,28.019119692143505],[-17.256772567725676,28.024185423953156],[-17.31077310773108,28.05289123754116],[-17.3431734317343,28.098482823827993],[-17.3431734317343,28.133942946495523],[-17.339573395733964,28.17109164643294],[-17.31077310773108,28.206551769100486]]],[[[-13.487534875348757,29.28386406728565],[-13.476734767347665,29.26697829458682],[-13.491134911349121,29.243338212808467],[-13.516335163351641,29.22645244010964],[-13.541535415354161,29.229829594649402],[-13.541535415354161,29.236583903728928],[-13.527135271352705,29.251781099157867],[-13.516335163351641,29.273732603666346],[-13.509135091350913,29.2889297990953],[-13.487534875348757,29.28386406728565]]],[[[10.99270992709927,33.84133411869905],[11.01071010710109,33.83120265507975],[11.032310323103246,33.824448346000224],[11.050310503105038,33.81431688238092],[11.06111061110613,33.80080826422186],[10.99270992709927,33.75015094612539],[10.978309783097842,33.74339663704585],[10.971109711097114,33.73833090523621],[10.96750967509675,33.7298880188868],[10.956709567095686,33.697805050759015],[10.949509495094958,33.697805050759015],[10.953109531095322,33.724822287077146],[10.956709567095686,33.73326517342656],[10.94230942309423,33.72819944161691],[10.927909279092802,33.69611647348914],[10.90990909909101,33.67416496898066],[10.895508955089554,33.65896777355172],[10.888308883088825,33.640393423583006],[10.870308703087034,33.65390204174207],[10.870308703087034,33.672476391710774],[10.877508775087762,33.68767358713973],[10.85950859508597,33.71131366891808],[10.84150841508415,33.718067977997606],[10.827108271082722,33.7298880188868],[10.80910809108093,33.734953750696434],[10.79110791107911,33.718067977997606],[10.780307803078045,33.70287078256867],[10.762307623076225,33.699493628028904],[10.74070740707407,33.71469082345784],[10.73350733507337,33.7298880188868],[10.726307263072641,33.7585938324748],[10.729907299073005,33.78392249152304],[10.747907479074797,33.81262830511105],[10.737107371073705,33.85315415958823],[10.737107371073705,33.885237127715996],[10.773107731077317,33.89705716860517],[10.855908559085606,33.88185997317623],[10.899108991089918,33.880171395906345],[10.931509315093166,33.89705716860517],[10.96030960309605,33.866662777747294],[10.99270992709927,33.84133411869905]]],[[[27.210872108721105,35.52146850223234],[27.23247232472326,35.50458272953351],[27.236072360723625,35.49276268864433],[27.23247232472326,35.47249976140573],[27.20727207272074,35.47756549321538],[27.18207182071822,35.469122606865966],[27.160471604716065,35.450548256897264],[27.1568715687157,35.42521959784902],[27.160471604716065,35.426908175118896],[27.160471604716065,35.43028532965867],[27.1640716407164,35.43197390692855],[27.17127171271713,35.43197390692855],[27.1640716407164,35.423531020579134],[27.1568715687157,35.41508813422972],[27.149671496714973,35.408333825150194],[27.135271352713545,35.40326809334054],[27.142471424714245,35.42015386603937],[27.135271352713545,35.426908175118896],[27.12087120871209,35.426908175118896],[27.110071100711025,35.43197390692855],[27.099270992709933,35.44041679327796],[27.092070920709205,35.45223683416714],[27.09567095670957,35.46236829778644],[27.110071100711025,35.4657454523262],[27.110071100711025,35.47249976140573],[27.102871028710297,35.47249976140573],[27.102871028710297,35.47925407048527],[27.117271172711725,35.48263122502503],[27.12087120871209,35.49276268864433],[27.110071100711025,35.52146850223234],[27.110071100711025,35.53497712039139],[27.11367113671136,35.5434200067408],[27.11367113671136,35.55017431582034],[27.110071100711025,35.56199435670952],[27.099270992709933,35.56706008851917],[27.074070740707413,35.58056870667822],[27.066870668706684,35.589011593027635],[27.07047070470705,35.6025202111867],[27.077670776707777,35.616028829345765],[27.084870848708505,35.62616029296507],[27.092070920709205,35.631226024774705],[27.11367113671136,35.64304606566388],[27.124471244712453,35.66837472471212],[27.128071280712817,35.693703383760365],[27.153271532715337,35.71734346553873],[27.160471604716065,35.74773785639661],[27.1640716407164,35.778132247254504],[27.1568715687157,35.79501801995333],[27.1568715687157,35.80177232903286],[27.17127171271713,35.8085266381124],[27.178471784717857,35.8085266381124],[27.178471784717857,35.80177232903286],[27.185671856718585,35.80177232903286],[27.18927189271892,35.80683806084251],[27.203672036720377,35.82203525627145],[27.21447214472144,35.82878956535099],[27.22167221672217,35.82878956535099],[27.225272252722533,35.8271009880811],[27.23247232472326,35.82203525627145],[27.228872288722897,35.8085266381124],[27.21447214472144,35.78995228814368],[27.210872108721105,35.778132247254504],[27.210872108721105,35.75280358820626],[27.21447214472144,35.74436070185685],[27.218072180721805,35.73422923823756],[27.218072180721805,35.725786351888146],[27.21447214472144,35.71903204280861],[27.200072000720013,35.70890057918932],[27.18927189271892,35.69708053830013],[27.185671856718585,35.68188334287119],[27.18207182071822,35.673440456521774],[27.17127171271713,35.663308992902486],[27.160471604716065,35.651488952013295],[27.1568715687157,35.63460317931447],[27.1568715687157,35.61940598388553],[27.1568715687157,35.612651674806],[27.185671856718585,35.595765902107175],[27.20727207272074,35.56030577943963],[27.21447214472144,35.553551470360105],[27.22167221672217,35.55017431582034],[27.218072180721805,35.5434200067408],[27.20727207272074,35.53666569766128],[27.203672036720377,35.53497712039139],[27.203672036720377,35.52822281131186],[27.203672036720377,35.526534234041975],[27.210872108721105,35.52146850223234]]],[[[14.549545495454964,35.88957834706676],[14.563945639456392,35.86931541982817],[14.567545675456756,35.845675338049816],[14.560345603456028,35.83047814262086],[14.549545495454964,35.83554387443051],[14.531545315453172,35.82203525627145],[14.527945279452808,35.813592369922034],[14.527945279452808,35.80177232903286],[14.509945099450988,35.80683806084251],[14.506345063450652,35.8085266381124],[14.473944739447404,35.81190379265216],[14.423544235442364,35.82372383354134],[14.380343803438052,35.84229818351005],[14.362343623436232,35.865938265288406],[14.358743587435868,35.86931541982817],[14.34434344343444,35.876069728907694],[14.34434344343444,35.881135460717346],[14.34434344343444,35.91152985157524],[14.337143371433712,35.94698997424277],[14.333543335433347,35.96218716967172],[14.322743227432284,35.97231863329101],[14.333543335433347,35.98245009691031],[14.347943479434804,35.98920440598984],[14.362343623436232,35.9925815605296],[14.376743767437688,35.99427013779949],[14.376743767437688,35.985827251450075],[14.36954369543696,35.98413867418019],[14.362343623436232,35.98245009691031],[14.347943479434804,35.97231863329101],[14.427144271442728,35.965564324211485],[14.44514445144452,35.960498592401834],[14.477544775447768,35.93685851062348],[14.506345063450652,35.928415624274066],[14.513545135451352,35.91997273792465],[14.513545135451352,35.91152985157524],[14.513545135451352,35.901398387955936],[14.52074520745208,35.89970981068606],[14.549545495454964,35.88957834706676]]],[[[23.013230132301317,36.308345509997665],[23.078030780307813,36.271196810060246],[23.096030960309605,36.25431103736142],[23.103231032310333,36.237425264662605],[23.096030960309605,36.23235953285295],[23.081630816308177,36.23235953285295],[23.06723067230672,36.225605223773414],[23.06003060030602,36.217162337424],[23.052830528305293,36.20365371926495],[23.052830528305293,36.14455351481905],[23.045630456304565,36.14286493754916],[23.031230312303137,36.14455351481905],[23.013230132301317,36.147930669358814],[23.002430024300253,36.146242092088926],[22.99162991629916,36.13779920573951],[22.988029880298797,36.15130782389858],[22.977229772297733,36.15806213297812],[22.94842948429485,36.16481644205764],[22.94842948429485,36.168193596597405],[22.94842948429485,36.17157075113717],[22.94842948429485,36.17663648294682],[22.944829448294485,36.17832506021671],[22.93402934029342,36.17663648294682],[22.930429304293057,36.17832506021671],[22.92322923229233,36.18507936929623],[22.9160291602916,36.20027656472517],[22.9088290882909,36.20534229653482],[22.9160291602916,36.26275392371083],[22.9160291602916,36.28470542821931],[22.9088290882909,36.308345509997665],[22.901629016290173,36.320165550886855],[22.89802898028981,36.32860843723627],[22.901629016290173,36.33873990085556],[22.93402934029342,36.38095433260263],[22.944829448294485,36.38939721895204],[22.955629556295577,36.382642909872516],[22.995229952299525,36.32354270542662],[23.013230132301317,36.308345509997665]]],[[[26.361263612636122,36.63761807762479],[26.39366393663937,36.63592950035492],[26.429664296642983,36.61904372765609],[26.458464584645867,36.59709222314761],[26.465664656646567,36.58189502771867],[26.458464584645867,36.578517873178896],[26.454864548645503,36.57682929590902],[26.45126451264514,36.580206450448784],[26.44406444064441,36.59033791406809],[26.429664296642983,36.578517873178896],[26.415264152641527,36.57514071863913],[26.386463864638642,36.57514071863913],[26.372063720637215,36.57176356409937],[26.361263612636122,36.56332067774996],[26.346863468634695,36.54136917324148],[26.346863468634695,36.52786055508243],[26.35046350463506,36.51604051419325],[26.34326343263433,36.50928620511371],[26.31806318063181,36.507597627843836],[26.30006300063002,36.51266335965347],[26.282062820628227,36.5396805959716],[26.26766267662677,36.54812348232102],[26.26766267662677,36.55487779140054],[26.271262712627134,36.558254945940305],[26.2748627486275,36.56163210048008],[26.264062640626406,36.57345214136926],[26.260462604626042,36.58696075952831],[26.26766267662677,36.595403645877724],[26.282062820628227,36.59033791406809],[26.296462964629654,36.59709222314761],[26.310863108631082,36.5886493367982],[26.328863288632903,36.57514071863913],[26.34326343263433,36.56838640955961],[26.35046350463506,36.57345214136926],[26.361263612636122,36.58696075952831],[26.364863648636486,36.59033791406809],[26.37566375663758,36.5886493367982],[26.386463864638642,36.585272182258436],[26.39366393663937,36.585272182258436],[26.404464044640463,36.59033791406809],[26.390063900639007,36.595403645877724],[26.386463864638642,36.605535109497026],[26.390063900639007,36.61397799584644],[26.390063900639007,36.61566657311633],[26.379263792637943,36.61904372765609],[26.36846368463685,36.62410945946574],[26.361263612636122,36.63086376854527],[26.361263612636122,36.63761807762479]]],[[[24.47484474844748,36.747375600167175],[24.514445144451457,36.764261372866],[24.53244532445325,36.767638527405765],[24.546845468454705,36.7541299092467],[24.54324543245434,36.74230986835752],[24.546845468454705,36.68827539572128],[24.536045360453613,36.68152108664175],[24.51804518045182,36.67307820029234],[24.485644856448573,36.664635313942924],[24.363243632436337,36.662946736673035],[24.327243272432725,36.65112669578386],[24.32364323643236,36.664635313942924],[24.33084330843309,36.68658681845139],[24.327243272432725,36.700095436610454],[24.33084330843309,36.70178401388034],[24.334443344433453,36.70853832295987],[24.34164341643418,36.71191547749963],[24.33084330843309,36.71866978657917],[24.327243272432725,36.720358363849044],[24.338043380433817,36.727112672928584],[24.345243452434545,36.745687022897286],[24.35604356043561,36.7541299092467],[24.359643596435973,36.74906417743705],[24.3668436684367,36.74230986835752],[24.3740437404374,36.73724413654787],[24.38124381243813,36.73386698200811],[24.395643956439585,36.735555559278],[24.40644406444065,36.70684974568999],[24.428044280442805,36.700095436610454],[24.460444604446053,36.700095436610454],[24.471244712447145,36.703472591150216],[24.46764467644678,36.71529263203941],[24.460444604446053,36.727112672928584],[24.44964449644496,36.73386698200811],[24.435244352443533,36.727112672928584],[24.428044280442805,36.73386698200811],[24.41724417244174,36.745687022897286],[24.410044100441013,36.7541299092467],[24.410044100441013,36.76088421832624],[24.420844208442105,36.77101568194553],[24.43164431644317,36.764261372866],[24.44964449644496,36.7541299092467],[24.47484474844748,36.747375600167175]]],[[[27.279272792727937,36.907790440806025],[27.290072900729,36.892593245377086],[27.34047340473404,36.88246178175778],[27.354873548735497,36.86388743178908],[27.32247322473225,36.84869023636014],[27.21447214472144,36.8233615773119],[27.18927189271892,36.81154153642271],[27.13167131671318,36.76088421832624],[27.110071100711025,36.75750706378646],[27.084870848708505,36.76088421832624],[27.059670596705985,36.767638527405765],[27.048870488704893,36.77439283648529],[26.991269912699124,36.7541299092467],[26.976869768697696,36.740621291087635],[26.98766987669876,36.720358363849044],[26.973269732697332,36.71698120930928],[26.966069660696604,36.705161168420105],[26.966069660696604,36.69165255026104],[26.973269732697332,36.67814393210199],[26.95526955269554,36.68152108664175],[26.93726937269375,36.69334112753093],[26.922869228692292,36.70684974568999],[26.919269192691928,36.71529263203941],[26.919269192691928,36.75075275470694],[26.926469264692656,36.76594995013588],[26.93726937269375,36.76088421832624],[26.940869408694084,36.76594995013588],[26.95526955269554,36.77608141375518],[26.958869588695904,36.78114714556483],[26.96246962469627,36.77776999102507],[26.98766987669876,36.767638527405765],[26.998469984699852,36.77776999102507],[27.009270092700945,36.787901454644356],[27.02007020070201,36.808164381882946],[27.05607056070562,36.83349304093119],[27.059670596705985,36.83855877274084],[27.1640716407164,36.8909046681072],[27.26487264872648,36.90441328626626],[27.279272792727937,36.907790440806025]]],[[[26.004860048600506,36.93818483166392],[26.019260192601934,36.92467621350485],[26.03366033660336,36.912856172615676],[26.055260552605546,36.90272470899639],[26.073260732607338,36.89765897718674],[26.073260732607338,36.892593245377086],[26.069660696606974,36.892593245377086],[26.06606066060661,36.8909046681072],[26.051660516605182,36.89765897718674],[26.03366033660336,36.894281822646974],[26.01566015660157,36.88921609083732],[26.004860048600506,36.8909046681072],[25.99045990459905,36.87908462721802],[25.947259472594737,36.85375596816978],[25.93285932859328,36.850378813630016],[25.922059220592217,36.84024735001073],[25.893258932589333,36.803098650073295],[25.878858788587905,36.794655763723895],[25.79965799657998,36.772704259215416],[25.75645756457564,36.769327104675654],[25.73845738457385,36.794655763723895],[25.752857528575305,36.789590031914244],[25.760057600576005,36.79972149553353],[25.77445774457746,36.80647580461307],[25.78885788857889,36.809852959152835],[25.79965799657998,36.80141007280342],[25.80685806858068,36.80141007280342],[25.81405814058141,36.80647580461307],[25.821258212582137,36.808164381882946],[25.846458464584657,36.808164381882946],[25.85005850058502,36.81154153642271],[25.86445864458645,36.83518161820108],[25.85005850058502,36.831804463661314],[25.846458464584657,36.83687019547095],[25.842858428584293,36.845313081820365],[25.846458464584657,36.850378813630016],[25.85725857258572,36.850378813630016],[25.972459724597257,36.89765897718674],[25.972459724597257,36.90441328626626],[25.96525965259653,36.90610186353615],[25.961659616596165,36.90947901807591],[25.9580595805958,36.91116759534579],[25.9508595085951,36.91116759534579],[25.9508595085951,36.91792190442533],[25.979659796597986,36.92467621350485],[25.99045990459905,36.93143052258439],[25.997659976599778,36.93818483166392],[26.004860048600506,36.93818483166392]]],[[[-25.065250652506506,37.02092511788817],[-25.047250472504714,37.01079365426888],[-25.029250292502923,36.992219304300164],[-25.01845018450183,36.970267799791685],[-25.01125011250113,36.950004872553095],[-25.02565025650256,36.934807677124155],[-25.06165061650617,36.93649625439403],[-25.11925119251191,36.95338202709286],[-25.15165151651516,36.94662771801333],[-25.16965169651695,36.94662771801333],[-25.17685176851768,36.956759181632634],[-25.184051840518407,36.96857922252181],[-25.19485194851947,36.98039926341099],[-25.2020520205202,36.990530727030276],[-25.191251912519107,37.00066219064958],[-25.16965169651695,37.01585938607852],[-25.133651336513367,37.02261369515806],[-25.09405094050939,37.02430227242793],[-25.065250652506506,37.02092511788817]]],[[[25.281252812528123,37.04963093147617],[25.27045270452706,37.04625377693641],[25.26325263252633,37.039499467856885],[25.259652596525967,37.03105658150747],[25.25245252452524,37.02092511788817],[25.24525245252454,37.01417080880864],[25.230852308523083,37.00572792245923],[25.205652056520563,36.9888421497604],[25.18765187651877,36.98546499522064],[25.15165151651516,36.98715357249051],[25.14445144451446,36.990530727030276],[25.122851228512303,37.00403934518934],[25.11205112051121,37.0074164997291],[25.104851048510483,37.012482231538755],[25.10125101251012,37.02430227242793],[25.11205112051121,37.06313954963524],[25.12645126451264,37.074959590524415],[25.155251552515523,37.090156785953354],[25.148051480514823,37.09353394049313],[25.140851408514095,37.095222517763005],[25.13725137251373,37.09353394049313],[25.15165151651516,37.11041971319196],[25.17685176851768,37.12899406316066],[25.209252092520927,37.1441912585896],[25.23805238052381,37.152634144939015],[25.223652236522383,37.13405979497031],[25.230852308523083,37.12730548589079],[25.259652596525967,37.12392833135101],[25.274052740527424,37.137436949510075],[25.27045270452706,37.14081410404984],[25.266852668526695,37.152634144939015],[25.281252812528123,37.152634144939015],[25.292052920529215,37.152634144939015],[25.292052920529215,37.1441912585896],[25.28845288452885,37.13574837224019],[25.284852848528487,37.12899406316066],[25.281252812528123,37.12392833135101],[25.26325263252633,37.090156785953354],[25.26325263252633,37.074959590524415],[25.281252812528123,37.069893858714764],[25.281252812528123,37.06313954963524],[25.266852668526695,37.06313954963524],[25.266852668526695,37.054696663285824],[25.281252812528123,37.054696663285824],[25.281252812528123,37.04963093147617]]],[[[25.526055260552624,37.19653715395597],[25.533255332553324,37.199914308495735],[25.551255512555144,37.19315999941621],[25.5728557285573,37.177962803987256],[25.58725587255873,37.16107703128843],[25.590855908559092,37.142502681319726],[25.594455944559456,37.10028824957266],[25.594455944559456,37.08171389960394],[25.583655836558364,37.039499467856885],[25.580055800558,37.017547963348406],[25.551255512555144,36.96857922252181],[25.54765547655478,36.965202067982034],[25.540455404554052,36.96351349071216],[25.526055260552624,36.9601363361724],[25.490054900549012,36.93143052258439],[25.47925479254792,36.928053368044615],[25.461254612546128,36.92467621350485],[25.450454504545064,36.91792190442533],[25.4468544685447,36.92467621350485],[25.443254432544336,36.92636479077474],[25.436054360543608,36.93143052258439],[25.432454324543244,36.939873408933806],[25.425254252542544,36.9601363361724],[25.42165421654218,36.96689064525192],[25.418054180541816,36.97364495433145],[25.38925389253893,36.98715357249051],[25.392853928539296,36.992219304300164],[25.392853928539296,36.997285036109815],[25.392853928539296,37.00403934518934],[25.385653856538568,37.01079365426888],[25.382053820538204,37.01923654061828],[25.37845378453784,37.027679426967694],[25.382053820538204,37.032745158777345],[25.382053820538204,37.034433736047234],[25.367653676536776,37.059762395095476],[25.356853568535684,37.07158243598465],[25.342453424534256,37.0766481677943],[25.342453424534256,37.08340247687383],[25.34605346053462,37.08677963141359],[25.35325353253532,37.08846820868348],[25.356853568535684,37.08846820868348],[25.360453604536048,37.08340247687383],[25.37125371253714,37.08846820868348],[25.410854108541088,37.12392833135101],[25.475654756547584,37.16107703128843],[25.47925479254792,37.16783134036797],[25.493654936549376,37.18978284487643],[25.500855008550104,37.19147142214632],[25.52245522455226,37.19315999941621],[25.526055260552624,37.19653715395597]]],[[[25.39645396453966,37.41774077631061],[25.382053820538204,37.41942935358048],[25.306453064530643,37.41267504450096],[25.310053100531007,37.41942935358048],[25.310053100531007,37.422806508120246],[25.306453064530643,37.424495085390134],[25.306453064530643,37.4278722399299],[25.310053100531007,37.43631512627931],[25.31365313653137,37.4380037035492],[25.317253172531736,37.4380037035492],[25.3208532085321,37.439692280819074],[25.3280532805328,37.46333236259744],[25.3208532085321,37.471775248946855],[25.306453064530643,37.47346382621673],[25.31365313653137,37.48866102164568],[25.324453244532464,37.49541533072521],[25.33885338853389,37.49879248526497],[25.349653496534984,37.508923948884274],[25.37845378453784,37.466709517137204],[25.382053820538204,37.47008667167697],[25.385653856538568,37.49034959891556],[25.39645396453966,37.49372675345532],[25.425254252542544,37.486972444375795],[25.432454324543244,37.485283867105906],[25.436054360543608,37.48021813529627],[25.443254432544336,37.47515240348662],[25.461254612546128,37.47008667167697],[25.464854648546492,37.46333236259744],[25.464854648546492,37.45488947624803],[25.457654576545764,37.44644658989861],[25.443254432544336,37.44138085808896],[25.425254252542544,37.44138085808896],[25.407254072540724,37.43631512627931],[25.40365403654036,37.41774077631061],[25.39645396453966,37.41774077631061]]],[[[25.090450904509055,37.58322134875911],[25.079650796507963,37.58659850329887],[25.047250472504743,37.616992894156766],[25.007650076500767,37.632190089585706],[24.996849968499703,37.63725582139536],[24.989649896498975,37.64569870774477],[24.98604986049861,37.65751874863395],[24.982449824498246,37.67102736679301],[24.98604986049861,37.679470253142426],[24.996849968499703,37.6811588304123],[25.054450544505443,37.679470253142426],[25.058050580505807,37.67778167587254],[25.0688506885069,37.67271594406289],[25.0688506885069,37.66596163498336],[25.06165061650617,37.66596163498336],[25.06165061650617,37.65751874863395],[25.0688506885069,37.65751874863395],[25.0760507605076,37.654141594094185],[25.083250832508327,37.65076443955442],[25.08685086850869,37.64401013047488],[25.104851048510483,37.654141594094185],[25.122851228512303,37.652453016824296],[25.140851408514095,37.64232155320501],[25.148051480514823,37.63050151231582],[25.166051660516615,37.64569870774477],[25.191251912519135,37.64063297593512],[25.223652236522383,37.63050151231582],[25.24525245252454,37.62374720323629],[25.23805238052381,37.616992894156766],[25.248852488524903,37.61530431688688],[25.25245252452524,37.60855000780735],[25.256052560525603,37.60010712145794],[25.259652596525967,37.589975657838636],[25.234452344523447,37.56295842152052],[25.22725227252272,37.53762976247228],[25.216452164521655,37.53256403066263],[25.16965169651698,37.53931833974215],[25.140851408514095,37.55282695790122],[25.12645126451264,37.55620411244098],[25.115651156511575,37.55958126698076],[25.104851048510483,37.57815561694946],[25.090450904509055,37.58322134875911]]],[[[24.3740437404374,37.68622456222195],[24.402844028440285,37.65583017136406],[24.395643956439585,37.62543578050618],[24.370443704437065,37.59504138964829],[24.34164341643418,37.569712730600045],[24.312843128431297,37.53762976247228],[24.294842948429505,37.5258097215831],[24.276842768427684,37.53087545339274],[24.276842768427684,37.54607264882169],[24.28044280442805,37.59504138964829],[24.276842768427684,37.6034842759977],[24.276842768427684,37.62205862596642],[24.287642876428777,37.64569870774477],[24.30564305643057,37.66089590317371],[24.320043200432025,37.65751874863395],[24.327243272432725,37.66427305771347],[24.334443344433453,37.67271594406289],[24.32364323643236,37.67271594406289],[24.320043200432025,37.67271594406289],[24.320043200432025,37.679470253142426],[24.33084330843309,37.68453598495206],[24.338043380433817,37.68622456222195],[24.34884348843488,37.68453598495206],[24.35604356043561,37.679470253142426],[24.359643596435973,37.679470253142426],[24.363243632436337,37.68453598495206],[24.363243632436337,37.68622456222195],[24.370443704437065,37.68453598495206],[24.3740437404374,37.68622456222195]]],[[[26.361263612636122,37.68622456222195],[26.34326343263433,37.659207325903836],[26.31806318063181,37.633878666855594],[26.231662316623186,37.571401307869934],[26.213662136621366,37.564646998790394],[26.127261272612742,37.55620411244098],[26.10926109261092,37.549449803361455],[26.098460984609858,37.54269549428193],[26.076860768607702,37.527498298852976],[26.06606066060661,37.522432567043325],[26.05886058860588,37.51905541250356],[26.051660516605182,37.51905541250356],[26.044460444604454,37.52074398977345],[26.030060300603026,37.522432567043325],[25.99045990459905,37.513989680693925],[25.97605976059762,37.5156782579638],[25.972459724597257,37.53594118520239],[25.979659796597986,37.549449803361455],[26.012060120601205,37.5747784624097],[26.019260192601934,37.58659850329887],[26.02646026460266,37.60010712145794],[26.04086040860409,37.616992894156766],[26.05886058860588,37.63050151231582],[26.073260732607338,37.63725582139536],[26.098460984609858,37.63894439866523],[26.156061560615626,37.632190089585706],[26.177661776617782,37.63725582139536],[26.195661956619574,37.632190089585706],[26.228062280622822,37.63894439866523],[26.253262532625342,37.652453016824296],[26.282062820628227,37.676093098602664],[26.314463144631446,37.68284740768219],[26.361263612636122,37.68622456222195]]],[[[27.048870488704893,37.72675041669913],[27.059670596705985,37.73350472577867],[27.066870668706684,37.72843899396902],[27.066870668706684,37.71830753034972],[27.059670596705985,37.70648748946054],[27.0380703807038,37.71324179854008],[27.002070020700216,37.70648748946054],[26.908469084690864,37.67778167587254],[26.901269012690136,37.67271594406289],[26.890468904689044,37.66596163498336],[26.883268832688344,37.65751874863395],[26.883268832688344,37.652453016824296],[26.87966879668798,37.64907586228453],[26.868868688686888,37.64401013047488],[26.861668616686188,37.64401013047488],[26.796867968679692,37.64401013047488],[26.786067860678628,37.647387285014645],[26.782467824678264,37.654141594094185],[26.782467824678264,37.66089590317371],[26.7788677886779,37.669338789523124],[26.760867608676108,37.689601716761715],[26.750067500675016,37.696356025841254],[26.72846728467286,37.70142175765089],[26.717667176671767,37.711553221270194],[26.706867068670704,37.71324179854008],[26.699666996669976,37.71324179854008],[26.685266852668548,37.70817606673043],[26.656466564665664,37.70479891219067],[26.642066420664207,37.69973318038102],[26.62766627666278,37.6912902940316],[26.624066240662415,37.679470253142426],[26.616866168661687,37.679470253142426],[26.616866168661687,37.68622456222195],[26.609666096660987,37.68622456222195],[26.598865988659895,37.67778167587254],[26.588065880658803,37.68791313949184],[26.584465844658467,37.70479891219067],[26.580865808658103,37.716618953079845],[26.580865808658103,37.7402590348582],[26.584465844658467,37.752079075747375],[26.59526595265953,37.76221053936668],[26.613266132661323,37.76558769390644],[26.631266312663143,37.76727627117633],[26.64566645666457,37.772342002985965],[26.649266492664935,37.78585062114503],[26.656466564665664,37.79260493022457],[26.77166771667717,37.814556434733035],[26.807668076680784,37.814556434733035],[26.843668436684368,37.809490702923384],[26.85446854468546,37.80273639384386],[26.883268832688344,37.78585062114503],[26.915669156691564,37.77740773479562],[26.95526955269554,37.757144807557026],[26.966069660696604,37.747013343937724],[26.96966969669697,37.758833384826914],[26.96246962469627,37.76727627117633],[26.95526955269554,37.77571915752574],[26.944469444694448,37.78922777568479],[26.96246962469627,37.784162043875156],[26.973269732697332,37.784162043875156],[26.984069840698425,37.78922777568479],[26.99486994869949,37.79598208476433],[26.99486994869949,37.784162043875156],[27.02007020070201,37.77740773479562],[27.066870668706684,37.774030580255854],[27.0380703807038,37.76389911663655],[27.034470344703465,37.76221053936668],[27.0308703087031,37.75376765301726],[27.034470344703465,37.74532476666785],[27.041670416704164,37.738570457588324],[27.048870488704893,37.72675041669913]]],[[[20.900009000089995,37.79260493022457],[20.918009180091815,37.76558769390644],[20.986409864098647,37.73012757123891],[20.99720997209974,37.69973318038102],[20.982809828098283,37.711553221270194],[20.9540095400954,37.72337326215937],[20.92160921609218,37.731816148508784],[20.892808928089295,37.73350472577867],[20.87840878408784,37.72843899396902],[20.87120871208714,37.71830753034972],[20.86400864008641,37.709864644000305],[20.856808568085683,37.70648748946054],[20.842408424084255,37.70142175765089],[20.842408424084255,37.689601716761715],[20.849608496084954,37.67778167587254],[20.85320853208532,37.67271594406289],[20.849608496084954,37.659207325903836],[20.84600846008462,37.654141594094185],[20.835208352083527,37.65076443955442],[20.81360813608137,37.65076443955442],[20.806408064080642,37.65583017136406],[20.777607776077758,37.68622456222195],[20.727207272072718,37.71830753034972],[20.705607056070562,37.738570457588324],[20.702007020070198,37.75376765301726],[20.680406804068042,37.77065342571609],[20.640806408064094,37.81117928019327],[20.619206192061938,37.82299932108245],[20.626406264062638,37.834819361971626],[20.622806228062274,37.85170513467045],[20.626406264062638,37.856770866480105],[20.619206192061938,37.86521375282952],[20.658806588065886,37.91080533911635],[20.684006840068406,37.92937968908507],[20.709207092070926,37.92600253454529],[20.709207092070926,37.92262538000553],[20.709207092070926,37.919248225465765],[20.71280712807129,37.915871070926],[20.71280712807129,37.91249391638624],[20.734407344073446,37.882099525528346],[20.741607416074174,37.861836598289756],[20.752407524075238,37.855082289210216],[20.777607776077758,37.84326224832104],[20.810008100081006,37.85001655740058],[20.849608496084954,37.836507939241514],[20.885608856088567,37.814556434733035],[20.900009000089995,37.79260493022457]]],[[[24.99324993249934,37.7689648484462],[24.99324993249934,37.75376765301726],[24.98604986049861,37.73519330304855],[24.971649716497183,37.71830753034972],[24.957249572495726,37.70648748946054],[24.96084960849609,37.70311033492078],[24.964449644496455,37.68622456222195],[24.957249572495726,37.68622456222195],[24.950049500495,37.696356025841254],[24.928449284492842,37.709864644000305],[24.91764917649178,37.71999610761961],[24.896048960489622,37.76221053936668],[24.89244892448926,37.7689648484462],[24.878048780487802,37.7689648484462],[24.863648636486374,37.774030580255854],[24.856448564485646,37.78078488933538],[24.845648456484582,37.79260493022457],[24.827648276482762,37.8179335892728],[24.816848168481698,37.82468789835234],[24.798847988479906,37.81624501200292],[24.795247952479542,37.84326224832104],[24.777247772477722,37.861836598289756],[24.755647556475566,37.877033793718695],[24.737647376473774,37.89223098914765],[24.730447304473046,37.89223098914765],[24.723247232472346,37.882099525528346],[24.716047160471618,37.878722370988584],[24.712447124471254,37.883788102798235],[24.719647196471982,37.898985298227174],[24.70884708847089,37.9057396073067],[24.694446944469462,37.924313957275416],[24.68364683646837,37.93275684362483],[24.694446944469462,37.93613399816459],[24.698046980469826,37.939511152704355],[24.690846908469098,37.946265461783895],[24.690846908469098,37.95639692540318],[24.694446944469462,37.966528389022486],[24.70164701647016,37.97328269810201],[24.755647556475566,37.996922779880364],[24.780847808478086,38.00029993442014],[24.795247952479542,37.9935456253406],[24.791647916479178,37.98341416172131],[24.795247952479542,37.976659852641774],[24.798847988479906,37.9749712753719],[24.80964809648097,37.97328269810201],[24.820448204482062,37.96990554356225],[24.831248312483126,37.96315123448271],[24.83484834848349,37.95639692540318],[24.831248312483126,37.95301977086342],[24.831248312483126,37.94795403905377],[24.838448384483854,37.92600253454529],[24.84204842048422,37.919248225465765],[24.849248492484918,37.914182493656114],[24.874448744487438,37.9057396073067],[24.953649536495362,37.9057396073067],[24.964449644496455,37.897296720957286],[24.96084960849609,37.877033793718695],[24.9428494284943,37.84326224832104],[24.98604986049861,37.81624501200292],[24.978849788497882,37.81117928019327],[24.97524975249752,37.809490702923384],[24.971649716497183,37.809490702923384],[24.971649716497183,37.79598208476433],[24.964449644496455,37.78753919841492],[24.957249572495726,37.78078488933538],[24.957249572495726,37.774030580255854],[24.964449644496455,37.7689648484462],[24.978849788497882,37.774030580255854],[24.99324993249934,37.7689648484462]]],[[[-28.11088110881107,38.44608433366916],[-28.064080640806395,38.4427071791294],[-28.046080460804603,38.43257571551011],[-28.038880388803875,38.408935633731744],[-28.05328053280533,38.398804170112456],[-28.08568085680855,38.398804170112456],[-28.16128161281611,38.40724705646187],[-28.18648186481863,38.40555847919198],[-28.204482044820452,38.40049274738233],[-28.240482404824036,38.37685266560398],[-28.254882548825492,38.38191839741363],[-28.26208262082619,38.39542701557269],[-28.272882728827284,38.40555847919198],[-28.298082980829804,38.41062421100163],[-28.438484384843832,38.414001365541395],[-28.460084600846017,38.40555847919198],[-28.524885248852485,38.454527220018576],[-28.550085500855005,38.48492161087647],[-28.550085500855005,38.52882461989341],[-28.517685176851757,38.55077612440189],[-28.485284852848537,38.55753043348143],[-28.413284132841312,38.55584185621154],[-28.373683736837364,38.55077612440189],[-28.272882728827284,38.5018073835753],[-28.240482404824036,38.48998734268612],[-28.23688236882367,38.48829876541623],[-28.226082260822608,38.48492161087647],[-28.208082080820816,38.471412992717404],[-28.197281972819724,38.46803583817764],[-28.175681756817568,38.46465868363788],[-28.11088110881107,38.44608433366916]]],[[[-28.611286112861137,38.59805628795861],[-28.59688596885968,38.55246470167178],[-28.60408604086041,38.55077612440189],[-28.636486364863657,38.540644660782604],[-28.643686436864357,38.53557892897295],[-28.636486364863657,38.52882461989341],[-28.636486364863657,38.52544746535365],[-28.632886328863293,38.523758888083776],[-28.6220862208622,38.52207031081389],[-28.636486364863657,38.51531600173436],[-28.64728647286472,38.51531600173436],[-28.67248672486724,38.52207031081389],[-28.683286832868333,38.52207031081389],[-28.715687156871553,38.51531600173436],[-28.726487264872645,38.51531600173436],[-28.7480874808748,38.523758888083776],[-28.776887768877685,38.554153278941655],[-28.794887948879477,38.56935047437061],[-28.841688416884153,38.59130197887907],[-28.841688416884153,38.59974486522849],[-28.809288092880934,38.60481059703814],[-28.78048780487805,38.60481059703814],[-28.766087660876593,38.60649917430803],[-28.75528755287553,38.61156490611768],[-28.744487444874437,38.62000779246709],[-28.73008730087301,38.638582142435794],[-28.719287192871917,38.64533645151532],[-28.632886328863293,38.61325348338755],[-28.611286112861137,38.59805628795861]]],[[[-27.89127891278912,38.60481059703814],[-27.81567815678156,38.58285909252966],[-27.779677796777975,38.56766189710072],[-27.761677616776154,38.54908754713202],[-27.77607776077761,38.54402181532237],[-27.797677976779767,38.54233323805248],[-27.837278372783715,38.54233323805248],[-27.85167851678517,38.54739896986213],[-27.88407884078839,38.560907588021195],[-27.91647916479164,38.565973319830846],[-27.930879308793095,38.57103905164048],[-27.948879488794887,38.57779336072002],[-27.963279632796315,38.586236247069436],[-27.97767977679777,38.59299055614896],[-28.00288002880029,38.5896134016092],[-28.020880208802083,38.59805628795861],[-28.03528035280351,38.5896134016092],[-28.04248042480424,38.59467913341885],[-28.06048060480603,38.61156490611768],[-28.074880748807487,38.618319215197204],[-28.17928179281793,38.64533645151532],[-28.197281972819724,38.65546791513462],[-28.215282152821516,38.68248515145275],[-28.222482224822244,38.685862305992515],[-28.229682296822972,38.685862305992515],[-28.233282332823336,38.68248515145275],[-28.23688236882367,38.68248515145275],[-28.247682476824764,38.685862305992515],[-28.251282512825128,38.68923946053228],[-28.247682476824764,38.69430519234193],[-28.247682476824764,38.69768234688169],[-28.258482584825856,38.699370924151566],[-28.265682656826556,38.70274807869134],[-28.312483124831232,38.73483104681911],[-28.316083160831596,38.741585355898636],[-28.316083160831596,38.7550939740577],[-28.298082980829804,38.75002824224805],[-28.265682656826556,38.73145389227935],[-28.251282512825128,38.728076737739585],[-28.233282332823336,38.726388160469696],[-28.03528035280351,38.665599378753924],[-27.89127891278912,38.60481059703814]]],[[[1.5246152461524787,38.6774194196431],[1.5642156421564266,38.69092803780215],[1.5822158221582185,38.67573084237321],[1.5822158221582185,38.653779337864734],[1.5570155701556985,38.6487136060551],[1.5246152461524787,38.6487136060551],[1.4742147421474385,38.67404226510334],[1.4598145981459822,38.680796574182864],[1.4382143821438262,38.67066511056356],[1.427414274142734,38.665599378753924],[1.4130141301413062,38.64702502878521],[1.3986139861398783,38.638582142435794],[1.384213842138422,38.64195929697556],[1.387813878138786,38.66222222421415],[1.384213842138422,38.67066511056356],[1.384213842138422,38.680796574182864],[1.387813878138786,38.68755088326239],[1.3950139501395142,38.6959937696118],[1.3950139501395142,38.70443665596122],[1.387813878138786,38.70781381050098],[1.384213842138422,38.71119096504076],[1.387813878138786,38.71963385139017],[1.402214022140214,38.72976531500946],[1.409414094140942,38.72469958319981],[1.4166141661416702,38.728076737739585],[1.427414274142734,38.73989677862876],[1.431014310143098,38.7550939740577],[1.4346143461434622,38.7550939740577],[1.4382143821438262,38.75340539678781],[1.4382143821438262,38.75171681951794],[1.4382143821438262,38.75002824224805],[1.4850148501485023,38.69430519234193],[1.5246152461524787,38.6774194196431]]],[[[-27.02007020070201,38.69430519234193],[-27.027270272702708,38.68923946053228],[-27.048870488704893,38.68248515145275],[-27.056070560705592,38.679107996912975],[-27.056070560705592,38.67066511056356],[-27.052470524705228,38.653779337864734],[-27.056070560705592,38.64533645151532],[-27.059670596705956,38.64195929697556],[-27.08847088470884,38.63182783335627],[-27.11367113671136,38.638582142435794],[-27.182071820718193,38.638582142435794],[-27.20367203672035,38.65209076059486],[-27.218072180721805,38.64195929697556],[-27.22887228872287,38.64027071970568],[-27.25407254072539,38.65209076059486],[-27.27927279272791,38.65715649240451],[-27.30447304473043,38.658845069674385],[-27.326073260732613,38.665599378753924],[-27.351273512735133,38.68417372872263],[-27.37287372873729,38.70781381050098],[-27.383673836738353,38.728076737739585],[-27.39087390873908,38.75847112859746],[-27.369273692736925,38.78211121037583],[-27.333273332733313,38.79730840580477],[-27.29727297272973,38.804062714884296],[-27.14607146071461,38.79561982853488],[-27.117271172711725,38.785488364915594],[-27.074070740707413,38.76691401494688],[-27.041670416704164,38.7449625104384],[-27.0380703807038,38.72469958319981],[-27.041670416704164,38.71456811958052],[-27.034470344703436,38.70781381050098],[-27.023670236702372,38.70274807869134],[-27.02007020070201,38.69430519234193]]],[[[20.58680586805869,38.618319215197204],[20.576005760057598,38.6081877515779],[20.565205652056534,38.59299055614896],[20.550805508055078,38.56935047437061],[20.543605436054378,38.56935047437061],[20.543605436054378,38.59467913341885],[20.56160561605617,38.69092803780215],[20.57960579605796,38.72469958319981],[20.58680586805869,38.7449625104384],[20.601206012060118,38.78211121037583],[20.61200612006121,38.785488364915594],[20.619206192061938,38.79561982853488],[20.633606336063366,38.81588275577347],[20.644406444064458,38.82770279666266],[20.66240662406625,38.841211414821714],[20.68760687606877,38.84965430117113],[20.68760687606877,38.846277146631365],[20.691206912069134,38.841211414821714],[20.702007020070198,38.83614568301208],[20.716407164071654,38.82263706485301],[20.723607236072354,38.80743986942406],[20.723607236072354,38.79393125126501],[20.730807308073082,38.78211121037583],[20.723607236072354,38.77029116948664],[20.723607236072354,38.76015970586735],[20.727207272072718,38.75171681951794],[20.730807308073082,38.7449625104384],[20.730807308073082,38.736519624089],[20.727207272072718,38.73145389227935],[20.723607236072354,38.72469958319981],[20.702007020070198,38.69768234688169],[20.698406984069834,38.68923946053228],[20.698406984069834,38.68248515145275],[20.705607056070562,38.680796574182864],[20.709207092070926,38.68755088326239],[20.716407164071654,38.699370924151566],[20.723607236072354,38.70781381050098],[20.723607236072354,38.69261661507204],[20.72000720007202,38.638582142435794],[20.716407164071654,38.62676210154662],[20.709207092070926,38.62507352427673],[20.702007020070198,38.638582142435794],[20.6948069480695,38.638582142435794],[20.698406984069834,38.63351641062614],[20.702007020070198,38.618319215197204],[20.698406984069834,38.62000779246709],[20.68760687606877,38.62507352427673],[20.68760687606877,38.616630637927315],[20.684006840068406,38.61325348338755],[20.684006840068406,38.60987632884779],[20.680406804068042,38.60481059703814],[20.666006660066614,38.61156490611768],[20.648006480064794,38.6081877515779],[20.640806408064094,38.59974486522849],[20.648006480064794,38.5896134016092],[20.648006480064794,38.58454766979955],[20.63720637206373,38.58454766979955],[20.630006300063002,38.58792482433931],[20.630006300063002,38.59467913341885],[20.633606336063366,38.60481059703814],[20.61200612006121,38.60649917430803],[20.601206012060118,38.62676210154662],[20.58680586805869,38.618319215197204]]],[[[24.67644676446764,38.80912844669395],[24.680046800468006,38.80743986942406],[24.680046800468006,38.804062714884296],[24.68364683646837,38.80068556034453],[24.68364683646837,38.79224267399512],[24.68364683646837,38.783799787645705],[24.680046800468006,38.783799787645705],[24.67644676446764,38.783799787645705],[24.669246692466942,38.78211121037583],[24.665646656466578,38.77535690129629],[24.65844658446585,38.768602592216766],[24.65124651246512,38.768602592216766],[24.64404644046442,38.77535690129629],[24.636846368463694,38.77535690129629],[24.6260462604626,38.768602592216766],[24.615246152461538,38.77366832402642],[24.604446044460445,38.78211121037583],[24.60084600846008,38.79224267399512],[24.59364593645938,38.79224267399512],[24.58284582845829,38.78717694218547],[24.56844568445686,38.778734055836054],[24.56844568445686,38.761848283137226],[24.53244532445325,38.79561982853488],[24.57564575645756,38.80912844669395],[24.564845648456497,38.83783426028195],[24.55764557645577,38.846277146631365],[24.546845468454705,38.83614568301208],[24.539645396453977,38.83614568301208],[24.536045360453613,38.847965723901254],[24.528845288452885,38.85134287844102],[24.51804518045182,38.84965430117113],[24.503645036450365,38.84458856936149],[24.503645036450365,38.85472003298078],[24.48204482044821,38.86316291933019],[24.478444784447845,38.87836011475913],[24.47484474844748,38.87667153748926],[24.471244712447145,38.87160580567961],[24.464044640446417,38.88004869202902],[24.453244532445325,38.88511442383867],[24.446044460444625,38.883425846568784],[24.435244352443533,38.87836011475913],[24.435244352443533,38.888491578378435],[24.438844388443897,38.89693446472785],[24.446044460444625,38.903688773807374],[24.453244532445325,38.90537735107726],[24.460444604446053,38.910443082886914],[24.464044640446417,38.92226312377609],[24.45684456844569,38.94083747374479],[24.45684456844569,38.95434609190386],[24.460444604446053,38.96785471006292],[24.471244712447145,38.97629759641234],[24.4928449284493,38.98136332822199],[24.561245612456133,38.94421462828457],[24.57564575645756,38.93239458739538],[24.57564575645756,38.92226312377609],[24.572045720457226,38.89862304199774],[24.57564575645756,38.88511442383867],[24.579245792457925,38.87498296021937],[24.58284582845829,38.87160580567961],[24.60084600846008,38.86485149660008],[24.64404644046442,38.841211414821714],[24.662046620466214,38.826014219392775],[24.67644676446764,38.80912844669395]]],[[[1.6074160741607386,39.091120850764355],[1.600216002160039,39.08267796441494],[1.6074160741607386,39.06241503717635],[1.621816218162195,39.028643491778695],[1.6074160741607386,39.028643491778695],[1.5930159301593108,39.02020060542928],[1.5858158581585826,39.00669198727023],[1.5822158221582185,38.991494791841276],[1.5750157501575188,38.986429060031625],[1.5426154261542706,38.96785471006292],[1.5102151021510224,38.930706010125505],[1.4958149581495945,38.92226312377609],[1.4706147061470745,38.910443082886914],[1.4598145981459822,38.90031161926761],[1.4562145621456182,38.903688773807374],[1.4490144901449185,38.908754505617026],[1.4454144541445544,38.91382023742668],[1.427414274142734,38.89693446472785],[1.4130141301413062,38.89018015564832],[1.405814058140578,38.85640861025067],[1.402214022140214,38.8327685284723],[1.3698136981369942,38.831079951202426],[1.362613626136266,38.85134287844102],[1.344613446134474,38.86316291933019],[1.3302133021330178,38.85809718752054],[1.323013230132318,38.85809718752054],[1.319413194131954,38.85978576479043],[1.3086130861308618,38.85809718752054],[1.3014130141301337,38.86991722840972],[1.2834128341283417,38.87498296021937],[1.2654126541265498,38.86991722840972],[1.2582125821258217,38.85809718752054],[1.2294122941229375,38.87498296021937],[1.2150121501215096,38.88511442383867],[1.2114121141211456,38.903688773807374],[1.2258122581226019,38.92732885558574],[1.2258122581226019,38.94252605101468],[1.2186121861218737,38.95434609190386],[1.2258122581226019,38.95941182371351],[1.2366123661236657,38.96447755552316],[1.2474124741247579,38.966166132793035],[1.2582125821258217,38.9611004009834],[1.2690126901269139,38.966166132793035],[1.2762127621276136,38.96785471006292],[1.3014130141301337,38.96785471006292],[1.2906129061290699,39.01006914180999],[1.294212942129434,39.033709223588346],[1.3050130501304977,39.04384068720765],[1.31581315813159,39.04721784174741],[1.3338133381333819,39.0573493053667],[1.3554135541355379,39.07761223260529],[1.362613626136266,39.07761223260529],[1.3734137341373582,39.070857923525764],[1.3914139141391502,39.08267796441494],[1.402214022140214,39.07761223260529],[1.4238142381423984,39.091120850764355],[1.4490144901449185,39.10125231438366],[1.4778147781477742,39.10800662346318],[1.4994149941499586,39.10462946892342],[1.5102151021510224,39.11476093254272],[1.5210152101521146,39.118138087082485],[1.5354153541535425,39.118138087082485],[1.5534155341553344,39.10800662346318],[1.5606156061560625,39.10631804619331],[1.5786157861578545,39.10462946892342],[1.5894158941589467,39.10294089165353],[1.5966159661596748,39.097875159843895],[1.6074160741607386,39.091120850764355]]],[[[-31.206912069120676,39.508199436425386],[-31.199711997119977,39.50144512734586],[-31.18531185311852,39.49637939553621],[-31.174511745117456,39.49469081826632],[-31.160111601116,39.50144512734586],[-31.14211142111421,39.482870777377144],[-31.131311313113116,39.465985004678316],[-31.131311313113116,39.42377057293125],[-31.138511385113844,39.40013049115289],[-31.156511565115636,39.37311325483476],[-31.178111781117792,39.356227482135935],[-31.19251192511925,39.36467036848535],[-31.214112141121404,39.357916059405824],[-31.23571235712356,39.356227482135935],[-31.253712537125352,39.357916059405824],[-31.26811268112681,39.36467036848535],[-31.278912789127872,39.378178986644414],[-31.2861128611286,39.398441913883005],[-31.2861128611286,39.41532768658183],[-31.275312753127537,39.425459150201135],[-31.282512825128236,39.44234492289996],[-31.275312753127537,39.4575421183289],[-31.26811268112681,39.47273931375784],[-31.26091260912608,39.49131366372656],[-31.257312573125716,39.508199436425386],[-31.239312393123924,39.518330900044674],[-31.21771217712177,39.52170805458445],[-31.199711997119977,39.52170805458445],[-31.206912069120676,39.508199436425386]]],[[[20.09360093600938,39.43390203655055],[20.097200972009716,39.42208199566137],[20.104401044010444,39.39168760480348],[20.1188011880119,39.378178986644414],[20.1188011880119,39.37142467756489],[20.104401044010444,39.36467036848535],[20.097200972009716,39.369736100295],[20.072000720007196,39.37649040937454],[20.05040050400504,39.38999902753359],[20.032400324003248,39.39506475934324],[20.014400144001456,39.398441913883005],[20,39.40013049115289],[19.989199891998936,39.403507645692656],[19.963999639996416,39.420393418391484],[19.953199531995324,39.425459150201135],[19.938799387993896,39.42714772747101],[19.92439924399244,39.42714772747101],[19.909999099991012,39.430524882010786],[19.906399063990648,39.43559061382042],[19.913599135991376,39.43390203655055],[19.920799207992076,39.43727919109031],[19.927999279992804,39.447410654709614],[19.89199891998922,39.45585354105903],[19.881198811988128,39.460919272868665],[19.877598775987764,39.4575421183289],[19.877598775987764,39.45416496378914],[19.877598775987764,39.45247638651925],[19.8667986679867,39.46936215921808],[19.855998559985608,39.48962508645667],[19.84879848798488,39.509888013695274],[19.84159841598418,39.55210244544233],[19.827198271982724,39.57236537268092],[19.80919809198093,39.58925114537975],[19.78399783997841,39.6044483408087],[19.762397623976256,39.612891227158116],[19.7479974799748,39.61964553623764],[19.72279722797228,39.66692569979436],[19.719197191971915,39.67368000887389],[19.701197011970123,39.67368000887389],[19.69039690396906,39.67368000887389],[19.679596795967967,39.68043431795343],[19.675996759967603,39.69394293611248],[19.675996759967603,39.71589444062096],[19.67239672396724,39.72433732697037],[19.654396543965447,39.71420586335107],[19.654396543965447,39.7310916360499],[19.650796507965083,39.7412230996692],[19.63999639996402,39.747977408748724],[19.625596255962563,39.747977408748724],[19.636396363963655,39.75642029509814],[19.661596615966175,39.78512610868614],[19.668796687966875,39.79356899503556],[19.675996759967603,39.795257572305445],[19.769597695976955,39.79863472684521],[19.79839798397984,39.80201188138497],[19.82359823598236,39.81214334500427],[19.852398523985244,39.82396338589345],[19.8667986679867,39.82058623135369],[19.8739987399874,39.815520499544036],[19.881198811988128,39.80876619046451],[19.89199891998922,39.80370045865486],[19.91719917199174,39.79694614957532],[19.927999279992804,39.79188041776568],[19.935199351993532,39.78343753141627],[19.94239942399426,39.78343753141627],[19.94239942399426,39.790191840495794],[19.94959949599496,39.790191840495794],[19.945999459994596,39.7597974496379],[19.935199351993532,39.7412230996692],[19.913599135991376,39.7310916360499],[19.852398523985244,39.710828708811306],[19.84159841598418,39.70407439973178],[19.83439834398345,39.692254358842604],[19.837998379983816,39.68043431795343],[19.84879848798488,39.670302854334125],[19.85959859598597,39.66692569979436],[19.85959859598597,39.65848281344495],[19.845198451984515,39.65848281344495],[19.845198451984515,39.6534170816353],[19.902799027990284,39.629776999856944],[19.927999279992804,39.62471126804729],[19.92439924399244,39.60275976353881],[19.91719917199174,39.59938260899905],[19.89919899198992,39.6044483408087],[19.913599135991376,39.58418541357011],[19.931599315993168,39.47949362283738],[19.935199351993532,39.47273931375784],[19.94959949599496,39.467673581948205],[19.960399603996052,39.46260785013855],[19.989199891998936,39.45923069559879],[20.003600036000364,39.45416496378914],[20.02520025200252,39.440656345630074],[20.032400324003248,39.4389677683602],[20.05040050400504,39.440656345630074],[20.064800648006496,39.44403350016984],[20.07560075600756,39.44909923197949],[20.08280082800829,39.447410654709614],[20.09360093600938,39.43390203655055]]],[[[25.450454504545064,40.03672412189867],[25.439654396543972,40.02659265827937],[25.436054360543608,40.02321550373961],[25.436054360543608,40.01646119466008],[25.443254432544336,40.01646119466008],[25.443254432544336,40.01477261739019],[25.443254432544336,40.01139546285043],[25.4468544685447,40.002952576501016],[25.4468544685447,39.992821112881714],[25.450454504545064,39.98775538107208],[25.425254252542544,39.977623917452775],[25.400054000540024,39.96411529929371],[25.385653856538568,39.94385237205512],[25.38925389253893,39.920212290276766],[25.374853748537504,39.920212290276766],[25.36405364053641,39.916835135737],[25.356853568535684,39.91176940392735],[25.349653496534984,39.9067036721177],[25.360453604536048,39.899949363038175],[25.367653676536776,39.89826078576829],[25.35325353253532,39.893195053958635],[25.342453424534256,39.88306359033935],[25.33885338853389,39.87462070398993],[25.356853568535684,39.86617781764052],[25.342453424534256,39.85435777675134],[25.349653496534984,39.84422631313204],[25.360453604536048,39.83409484951275],[25.367653676536776,39.82396338589345],[25.37125371253714,39.817209076813924],[25.367653676536776,39.815520499544036],[25.36405364053641,39.815520499544036],[25.356853568535684,39.810454767734385],[25.35325353253532,39.80370045865486],[25.35325353253532,39.79356899503556],[25.349653496534984,39.78850326322592],[25.33885338853389,39.79356899503556],[25.331653316533163,39.795257572305445],[25.30285302853028,39.80370045865486],[25.29565295652958,39.80707761319462],[25.292052920529215,39.817209076813924],[25.292052920529215,39.82565196316334],[25.292052920529215,39.830717694972975],[25.274052740527424,39.835783426782626],[25.256052560525603,39.85604635402122],[25.23805238052381,39.857734931291105],[25.26325263252633,39.87124354945017],[25.274052740527424,39.879686435799584],[25.281252812528123,39.88981789941887],[25.274052740527424,39.90332651757794],[25.26325263252633,39.913457981197226],[25.25245252452524,39.91852371300688],[25.23805238052381,39.920212290276766],[25.198451984519863,39.893195053958635],[25.205652056520563,39.893195053958635],[25.21285212852129,39.89150647668876],[25.22005220052202,39.88981789941887],[25.223652236522383,39.88475216760922],[25.205652056520563,39.88306359033935],[25.1948519485195,39.872932126720045],[25.184051840518407,39.85942350856098],[25.17685176851768,39.84422631313204],[25.184051840518407,39.8476034676718],[25.18765187651877,39.84929204494169],[25.191251912519135,39.852669199481454],[25.2020520205202,39.84084915859228],[25.21285212852129,39.82396338589345],[25.22005220052202,39.810454767734385],[25.21285212852129,39.80370045865486],[25.191251912519135,39.80370045865486],[25.17685176851768,39.80707761319462],[25.14445144451446,39.817209076813924],[25.166051660516615,39.84422631313204],[25.16965169651698,39.84929204494169],[25.166051660516615,39.85942350856098],[25.155251552515523,39.85604635402122],[25.140851408514095,39.84591489040193],[25.13725137251373,39.837472004052515],[25.130051300513003,39.837472004052515],[25.130051300513003,39.84591489040193],[25.12645126451264,39.84929204494169],[25.122851228512303,39.852669199481454],[25.122851228512303,39.857734931291105],[25.065250652506535,39.84422631313204],[25.054450544505443,39.837472004052515],[25.047250472504743,39.837472004052515],[25.05085050850508,39.84422631313204],[25.054450544505443,39.84929204494169],[25.058050580505807,39.85435777675134],[25.0688506885069,39.857734931291105],[25.06165061650617,39.85942350856098],[25.054450544505443,39.86448924037063],[25.047250472504743,39.86617781764052],[25.047250472504743,39.87462070398993],[25.047250472504743,39.877997858529696],[25.054450544505443,39.88306359033935],[25.06165061650617,39.88475216760922],[25.06165061650617,39.893195053958635],[25.054450544505443,39.893195053958635],[25.054450544505443,39.89826078576829],[25.058050580505807,39.899949363038175],[25.06165061650617,39.90163794030805],[25.0688506885069,39.9067036721177],[25.06165061650617,39.9067036721177],[25.0688506885069,39.920212290276766],[25.065250652506535,39.930343753896054],[25.054450544505443,39.93709806297559],[25.047250472504743,39.94722952659488],[25.047250472504743,39.962426722023835],[25.047250472504743,39.97424676291301],[25.04365043650438,39.9843782265323],[25.032850328503287,39.98775538107208],[25.032850328503287,39.9945096901516],[25.0688506885069,39.99619826742149],[25.133651336513367,40.00801830831067],[25.140851408514095,40.00632973104078],[25.148051480514823,40.002952576501016],[25.15165151651516,39.997886844691365],[25.155251552515523,39.9945096901516],[25.173251732517343,39.99619826742149],[25.223652236522383,40.00801830831067],[25.248852488524903,40.002952576501016],[25.259652596525967,39.99113253561184],[25.274052740527424,39.975935340182886],[25.28845288452885,39.96073814475395],[25.284852848528487,39.95398383567442],[25.306453064530643,39.96073814475395],[25.335253352533528,39.97255818564312],[25.349653496534984,39.98100107199254],[25.349653496534984,39.99113253561184],[25.367653676536776,40.01477261739019],[25.382053820538204,40.02321550373961],[25.385653856538568,40.02152692646972],[25.414454144541452,40.02321550373961],[25.42165421654218,40.024904081009495],[25.450454504545064,40.03672412189867]]],[[[26.012060120601205,40.166744571679644],[26.012060120601205,40.14648164444104],[25.99045990459905,40.13635018082175],[25.968859688596893,40.1312844490121],[25.90045900459006,40.122841562662686],[25.85725857258572,40.107644367233746],[25.767257672576733,40.097512903614444],[25.745657456574577,40.097512903614444],[25.720457204572057,40.10426721269398],[25.709657096570965,40.10933294450362],[25.7060570605706,40.11608725358316],[25.66285662856629,40.12621871720245],[25.66285662856629,40.13297302628199],[25.684456844568444,40.159990262600104],[25.720457204572057,40.187007498918234],[25.760057600576005,40.207270426156825],[25.828458284582865,40.21740188977611],[25.91485914859149,40.24104197155448],[25.92565925659258,40.242730548824355],[25.936459364593645,40.24104197155448],[25.943659436594373,40.23766481701472],[25.9508595085951,40.229221930665304],[25.9580595805958,40.222467621585764],[25.972459724597257,40.22077904431589],[25.972459724597257,40.21402473523635],[25.968859688596893,40.205581848886936],[25.968859688596893,40.19376180799776],[25.968859688596893,40.180253189838695],[25.972459724597257,40.17349888075917],[25.961659616596165,40.15661310806034],[25.972459724597257,40.15323595352058],[25.99045990459905,40.15661310806034],[26.004860048600506,40.166744571679644],[26.012060120601205,40.166744571679644]]],[[[25.691656916569173,40.44704839848016],[25.695256952569537,40.431851203051224],[25.68085680856808,40.42340831670181],[25.590855908559092,40.39807965765357],[25.565655656556572,40.39976823492346],[25.533255332553324,40.414965430352396],[25.464854648546492,40.45549128482958],[25.450454504545064,40.46899990298864],[25.443254432544336,40.48250852114771],[25.461254612546128,40.48081994387782],[25.518855188551896,40.50783718019595],[25.54765547655478,40.514591489275475],[25.576455764557664,40.514591489275475],[25.65565655656556,40.49601713930676],[25.67365673656738,40.487574252957344],[25.68805688056881,40.47575421206817],[25.6988569885699,40.46055701663923],[25.691656916569173,40.44704839848016]]],[[[24.788047880478814,40.73579511163011],[24.766447664476658,40.73410653436022],[24.75924759247593,40.723975070740934],[24.766447664476658,40.71215502985174],[24.788047880478814,40.707089298042106],[24.788047880478814,40.68851494807339],[24.770047700477022,40.68344921626374],[24.766447664476658,40.66994059810469],[24.773647736477386,40.639546207246795],[24.780847808478086,40.62772616635762],[24.780847808478086,40.62097185727808],[24.780847808478086,40.612528970928665],[24.773647736477386,40.61084039365879],[24.755647556475566,40.619283280008204],[24.7520475204752,40.61590612546844],[24.744847448474502,40.6091518163889],[24.72684726847268,40.60239750730938],[24.694446944469462,40.599020352769614],[24.680046800468006,40.59564319822984],[24.65844658446585,40.577068848261135],[24.64404644046442,40.57031453918161],[24.636846368463694,40.5804460028009],[24.629646296462965,40.58720031188042],[24.615246152461538,40.599020352769614],[24.611646116461174,40.599020352769614],[24.604446044460445,40.597331775499725],[24.60084600846008,40.599020352769614],[24.60084600846008,40.60070893003949],[24.60084600846008,40.6091518163889],[24.60084600846008,40.612528970928665],[24.586445864458653,40.62266043454797],[24.579245792457925,40.624349011817856],[24.554045540455405,40.63110332089738],[24.53244532445325,40.63110332089738],[24.51804518045182,40.639546207246795],[24.510845108451093,40.66656344356491],[24.51804518045182,40.69189210261315],[24.53244532445325,40.71890933893128],[24.56844568445686,40.7560580388687],[24.64404644046442,40.80333820242541],[24.672846728467306,40.79151816153623],[24.716047160471618,40.78814100699647],[24.730447304473046,40.78307527518682],[24.73404734047341,40.77800954337718],[24.737647376473774,40.76787807975788],[24.744847448474502,40.759435193408464],[24.755647556475566,40.7560580388687],[24.766447664476658,40.75436946159881],[24.773647736477386,40.74930372978916],[24.780847808478086,40.742549420709636],[24.788047880478814,40.73579511163011]]],[[[10.441904419044192,42.84482812171359],[10.434704347043464,42.838073812634065],[10.431104311043129,42.82794234901476],[10.431104311043129,42.816122308125586],[10.438304383043828,42.80430226723641],[10.431104311043129,42.78741649453758],[10.420304203042036,42.775596453648404],[10.405904059040608,42.76884214456888],[10.387903879038788,42.76377641275923],[10.409504095040944,42.7570221036797],[10.4239042390424,42.740136330980874],[10.431104311043129,42.72156198101216],[10.416704167041672,42.70805336285309],[10.409504095040944,42.718184826472395],[10.402304023040244,42.718184826472395],[10.391503915039152,42.718184826472395],[10.380703807038088,42.72325055828205],[10.377103771037724,42.7283162900917],[10.366303663036632,42.74520206279051],[10.362703627036268,42.75026779460016],[10.351903519035204,42.755333526409814],[10.337503375033748,42.765464990029116],[10.326703267032684,42.765464990029116],[10.312303123031228,42.74351348552064],[10.305103051030528,42.760399258219465],[10.265502655026552,42.74520206279051],[10.243902439024396,42.7570221036797],[10.240302403024032,42.74182490825075],[10.236702367023668,42.73507059917122],[10.229502295022968,42.73507059917122],[10.14670146701468,42.73675917644111],[10.125101251012524,42.74351348552064],[10.107101071010703,42.7570221036797],[10.099900999010003,42.78403933999783],[10.110701107011067,42.80092511269666],[10.132301323013223,42.81274515358584],[10.157501575015743,42.81781088539549],[10.179101791017928,42.81949946266536],[10.189901899018992,42.816122308125586],[10.211502115021148,42.807679421776186],[10.225902259022604,42.80430226723641],[10.243902439024396,42.802613689966535],[10.265502655026552,42.80430226723641],[10.265502655026552,42.80936799904606],[10.265502655026552,42.811056576315934],[10.261902619026188,42.811056576315934],[10.258302583025824,42.81274515358584],[10.27270272702728,42.81949946266536],[10.27270272702728,42.82625377174489],[10.27270272702728,42.82794234901476],[10.290702907029072,42.82625377174489],[10.326703267032684,42.82625377174489],[10.32310323103232,42.811056576315934],[10.333903339033384,42.80599084450628],[10.34830348303484,42.80599084450628],[10.355503555035568,42.807679421776186],[10.359103591035904,42.81781088539549],[10.366303663036632,42.82287661720511],[10.37350373503736,42.82625377174489],[10.380703807038088,42.83300808082441],[10.391503915039152,42.85833673987267],[10.39870398703988,42.86846820349194],[10.413104131041308,42.873533935301595],[10.420304203042036,42.870156780761846],[10.431104311043129,42.865091048952195],[10.438304383043828,42.85495958533289],[10.441904419044192,42.84482812171359]]],[[[17.130771307713076,42.96978283968491],[17.148771487714896,42.95289706698608],[17.163171631716324,42.941077026096906],[17.199171991719936,42.922502676128204],[17.191971919719208,42.914059789778776],[17.173971739717416,42.922502676128204],[17.15237152371523,42.92081409885833],[17.10917109171092,42.914059789778776],[17.015570155701568,42.92925698520773],[16.972369723697255,42.92587983066798],[16.90036900369003,42.905616903429376],[16.84996849968499,42.900551171619725],[16.738367383673847,42.91743694431855],[16.69156691566917,42.927568407937855],[16.67356673566735,42.927568407937855],[16.67356673566735,42.922502676128204],[16.65556655566556,42.92587983066798],[16.637566375663766,42.93432271701738],[16.7059670596706,42.96133995333551],[16.7059670596706,42.96978283968491],[16.687966879668807,42.97315999422469],[16.64836648366483,42.97822572603434],[16.63036630366304,42.98329145784399],[16.651966519665194,42.99173434419339],[16.67356673566735,42.993422921463264],[16.69876698766987,42.990045766923515],[16.720367203672055,42.990045766923515],[16.74196741967421,42.97991430330421],[16.76716767167673,42.97147141695481],[16.82476824768247,42.96133995333551],[16.878768787687875,42.96133995333551],[16.89316893168933,42.96471710787526],[16.914769147691487,42.97484857149456],[17.03357033570336,42.98329145784399],[17.112771127711284,42.96471710787526],[17.130771307713076,42.96978283968491]]],[[[16.69156691566917,43.12682052578401],[16.669966699667015,43.12513194851414],[16.558365583655842,43.14370629848284],[16.475564755647554,43.16565780299132],[16.44676446764467,43.17072353480097],[16.428764287642878,43.17916642115037],[16.41436414364145,43.18254357569015],[16.37116371163711,43.1960521938492],[16.374763747637473,43.199429348388975],[16.3819638196382,43.20280650292872],[16.392763927639294,43.20280650292872],[16.403564035640358,43.19774077111907],[16.41436414364145,43.19774077111907],[16.43956439564397,43.20956081200825],[16.44676446764467,43.20280650292872],[16.450364503645034,43.2061836574685],[16.461164611646126,43.2163151210878],[16.461164611646126,43.20956081200825],[16.49716497164971,43.21800369835768],[16.525965259652594,43.204495080198626],[16.554765547655478,43.1876093074998],[16.583565835658362,43.18929788476967],[16.554765547655478,43.20956081200825],[16.529565295652958,43.221380852897425],[16.518765187651894,43.229823739246854],[16.536765367653686,43.22813516197698],[16.561965619656206,43.229823739246854],[16.583565835658362,43.2163151210878],[16.587165871658726,43.2163151210878],[16.59796597965979,43.221380852897425],[16.605166051660518,43.22306943016733],[16.61596615966161,43.22306943016733],[16.644766447664495,43.21969227562755],[16.659166591665922,43.2163151210878],[16.66636666366665,43.21124938927815],[16.67356673566735,43.20280650292872],[16.68076680766808,43.194363616579324],[16.69156691566917,43.18929788476967],[16.695166951669535,43.18423215296002],[16.69156691566917,43.18254357569015],[16.687966879668807,43.18254357569015],[16.7059670596706,43.17072353480097],[16.727567275672754,43.16396922572142],[16.752767527675275,43.16228064845154],[16.846368463684655,43.16228064845154],[16.864368643686447,43.16903495753107],[16.878768787687875,43.158903493911765],[16.896768967689695,43.15552633937202],[16.9579695796958,43.15214918483224],[17.01917019170193,43.14032914394306],[17.10917109171092,43.14370629848284],[17.155971559715596,43.14032914394306],[17.191971919719208,43.12682052578401],[16.94356943569437,43.12682052578401],[16.69156691566917,43.12682052578401]]],[[[16.500765007650074,43.283858211883086],[16.42156421564215,43.31762975728074],[16.40716407164072,43.332826952709695],[16.41436414364145,43.32944979816992],[16.417964179641814,43.324384066360295],[16.425164251642514,43.324384066360295],[16.425164251642514,43.33113837543982],[16.428764287642878,43.332826952709695],[16.435964359643606,43.33113837543982],[16.43956439564397,43.332826952709695],[16.435964359643606,43.33958126178922],[16.435964359643606,43.346335570868746],[16.443164431644334,43.3514013026784],[16.453964539645398,43.3530898799483],[16.43956439564397,43.371664229917],[16.425164251642514,43.39361573442548],[16.44676446764467,43.395304311695355],[16.453964539645398,43.39361573442548],[16.493564935649374,43.381795693536304],[16.687966879668807,43.37672996172665],[16.810368103681043,43.3530898799483],[16.810368103681043,43.346335570868746],[16.795967959679615,43.346335570868746],[16.80676806768068,43.342958416329],[16.81756817568177,43.33958126178922],[16.82476824768247,43.34126983905912],[16.8319683196832,43.346335570868746],[16.839168391683927,43.34126983905912],[16.85716857168572,43.324384066360295],[16.86796867968681,43.32269548909039],[16.878768787687875,43.32269548909039],[16.885968859688603,43.32269548909039],[16.89316893168933,43.31256402547112],[16.878768787687875,43.29398967550239],[16.871568715687175,43.28723536642286],[16.864368643686447,43.292301098232514],[16.846368463684655,43.27372674826381],[16.813968139681407,43.26697243918426],[16.626766267662674,43.26359528464451],[16.56556565565657,43.270349593724035],[16.500765007650074,43.283858211883086]]],[[[15.143551435514354,43.94915765621687],[15.21555215552155,43.912008956279465],[15.219152191521914,43.90187749266016],[15.193951939519394,43.89512318358064],[15.147151471514718,43.92382899716864],[15.13275132751329,43.920451842628864],[15.136351363513654,43.917074688089116],[15.13995139951399,43.91369753354934],[15.143551435514354,43.90863180173969],[15.168751687516874,43.89512318358064],[15.175951759517602,43.89174602904086],[15.18315183151833,43.88668029723121],[15.19035190351903,43.88668029723121],[15.197551975519758,43.88668029723121],[15.197551975519758,43.87823741088181],[15.193951939519394,43.87317167907216],[15.18315183151833,43.876548833611935],[15.175951759517602,43.884991719961334],[15.172351723517238,43.88668029723121],[15.136351363513654,43.90356606993004],[15.121951219512198,43.912008956279465],[15.10755107551077,43.925517574438516],[15.067950679506794,43.969420583455474],[15.042750427504274,43.98968351069408],[15.003150031500326,44.05216086967974],[14.98154981549817,44.06566948783879],[14.95634956349565,44.07580095145809],[14.869948699486997,44.1416554649835],[14.866348663486633,44.1517869286028],[14.862748627486269,44.16022981495223],[14.848348483484841,44.175427010381156],[14.85554855548557,44.17711558765106],[14.859148591485933,44.175427010381156],[14.862748627486269,44.175427010381156],[14.884348843488453,44.15854123768233],[14.93834938349383,44.126458269554576],[14.945549455494557,44.11970396047502],[14.949149491494921,44.11126107412562],[14.952749527495286,44.102818187776194],[14.96354963549635,44.099441033236445],[14.977949779497806,44.09606387869667],[14.985149851498534,44.09099814688702],[14.992349923499233,44.08762099234727],[15.00675006750069,44.09268672415692],[15.003150031500326,44.08255526053762],[14.999549995499962,44.07917810599784],[15.01395013950139,44.077489528727966],[15.021150211502118,44.072423796918315],[15.028350283502846,44.06229233329901],[15.028350283502846,44.04878371513996],[15.03195031950321,44.036963674250785],[15.042750427504274,44.02683221063148],[15.08955089550895,43.98968351069408],[15.100351003510042,43.98461777888443],[15.11475114751147,43.98461777888443],[15.118351183511834,43.979552047074776],[15.143551435514354,43.94915765621687]]],[[[14.877148771487725,44.56042262791442],[14.866348663486633,44.567176936993945],[14.761947619476189,44.65836010956761],[14.743947439474397,44.68031161407609],[14.733147331473333,44.70395169585444],[14.736747367473669,44.70395169585444],[14.740347403474033,44.70226311858457],[14.779947799478009,44.67018015045679],[14.844748447484477,44.6009484823916],[14.884348843488453,44.57899697788312],[14.88074880748809,44.60939136874103],[14.902349023490245,44.60939136874103],[14.93834938349383,44.594194173312076],[14.967149671496713,44.57393124607347],[14.98874988749887,44.54691400975537],[15.003150031500326,44.53678254613607],[15.042750427504274,44.526651082516764],[15.053550535505366,44.51651961889746],[15.060750607506094,44.50132242346854],[15.075150751507522,44.48443665076971],[15.05715057150573,44.48612522803958],[15.028350283502846,44.50301100073841],[15.00675006750069,44.504699578008285],[15.010350103501054,44.51483104162759],[15.01395013950139,44.518208196167365],[14.974349743497442,44.53678254613607],[14.952749527495286,44.54184827794572],[14.941949419494193,44.54691400975537],[14.927549275492765,44.55197974156499],[14.909549095490974,44.55197974156499],[14.909549095490974,44.545225432485466],[14.967149671496713,44.52327392797699],[15.046350463504638,44.43884506448288],[15.096750967509678,44.415204982704495],[15.08235082350825,44.4253364463238],[15.06435064350643,44.437156487212974],[15.049950499505002,44.455730837181704],[15.042750427504274,44.47599376442028],[15.08235082350825,44.46248514626123],[15.175951759517602,44.39156490092614],[15.197551975519758,44.38143343730684],[15.211952119521214,44.36961339641766],[15.24075240752407,44.35103904644896],[15.255152551525526,44.339219005559784],[15.23355233552337,44.33584185102001],[15.211952119521214,44.34597331463931],[15.186751867518694,44.35948193279839],[15.16515165151651,44.36792481914779],[15.16515165151651,44.36117051006826],[15.18315183151833,44.357793355528486],[15.201152011520122,44.349350469179086],[15.21555215552155,44.33753042828991],[15.226352263522642,44.32571038740073],[15.20835208352085,44.32571038740073],[15.20835208352085,44.32064465559108],[15.211952119521214,44.317267501051305],[15.21555215552155,44.31557892378143],[15.219152191521914,44.31220176924165],[15.197551975519758,44.317267501051305],[15.154351543515446,44.330776119210384],[15.129151291512926,44.33246469648026],[15.129151291512926,44.32571038740073],[15.172351723517238,44.30544746016213],[15.172351723517238,44.2986931510826],[15.150751507515082,44.303758882892254],[15.129151291512926,44.31220176924165],[15.111151111511134,44.32402181013083],[15.096750967509678,44.339219005559784],[15.096750967509678,44.34597331463931],[15.111151111511134,44.34597331463931],[15.111151111511134,44.35441620098874],[15.103951039510406,44.357793355528486],[15.096750967509678,44.36117051006826],[15.08955089550895,44.374679128227314],[15.100351003510042,44.37299055095744],[15.10755107551077,44.374679128227314],[15.111151111511134,44.379744860036965],[15.118351183511834,44.38649916911649],[15.093150931509314,44.40000778727557],[15.08235082350825,44.401696364545444],[15.075150751507522,44.40000778727557],[15.05715057150573,44.39494205546592],[15.049950499505002,44.39494205546592],[15.03915039150391,44.40338494181532],[15.021150211502118,44.43040217813345],[14.959949599496014,44.46586230080098],[14.949149491494921,44.46755087807088],[14.898748987489881,44.491190959849234],[14.898748987489881,44.496256691658886],[14.902349023490245,44.49794526892876],[14.91314913149131,44.50301100073841],[14.920349203492037,44.504699578008285],[14.90594905949061,44.52158535070711],[14.877148771487725,44.55197974156499],[14.877148771487725,44.56042262791442]]],[[[14.740347403474033,44.77824909572928],[14.740347403474033,44.76980620937988],[14.743947439474397,44.7664290548401],[14.754747547475489,44.7579861684907],[14.740347403474033,44.76474047757023],[14.725947259472605,44.76811763210998],[14.711547115471149,44.76811763210998],[14.700747007470085,44.76474047757023],[14.657546575465773,44.798512022967884],[14.6719467194672,44.80020060023776],[14.682746827468293,44.798512022967884],[14.693546935469357,44.79682344569801],[14.704347043470449,44.79175771388836],[14.704347043470449,44.798512022967884],[14.700747007470085,44.80188917750763],[14.700747007470085,44.803577754777535],[14.700747007470085,44.806954909317284],[14.700747007470085,44.81370921839684],[14.715147151471513,44.803577754777535],[14.718747187471877,44.798512022967884],[14.725947259472605,44.798512022967884],[14.715147151471513,44.81877495020646],[14.704347043470449,44.82721783655589],[14.693546935469357,44.833972145635414],[14.689946899468993,44.83734930017519],[14.686346863468628,44.847480763794465],[14.707947079470813,44.84579218652459],[14.725947259472605,44.84072645471494],[14.72234722347224,44.84410360925472],[14.718747187471877,44.85423507287402],[14.740347403474033,44.85423507287402],[14.754747547475489,44.84579218652459],[14.754747547475489,44.83566072290529],[14.740347403474033,44.82721783655589],[14.740347403474033,44.82046352747636],[14.74754747547476,44.817086372936586],[14.787147871478709,44.790069136618456],[14.812348123481229,44.77993767299918],[14.823148231482321,44.771494786649754],[14.851948519485205,44.7377232412521],[14.859148591485933,44.71746031401352],[14.848348483484841,44.70395169585444],[14.823148231482321,44.72083746855327],[14.772747727477281,44.75967474576058],[14.740347403474033,44.77824909572928]]],[[[14.513545135451352,44.66173726410739],[14.506345063450652,44.65329437775796],[14.509945099450988,44.64485149140856],[14.513545135451352,44.64147433686878],[14.527945279452808,44.64822864594831],[14.535145351453508,44.63472002778926],[14.527945279452808,44.62796571870973],[14.52074520745208,44.621211409630206],[14.513545135451352,44.6195228323603],[14.502745027450288,44.6195228323603],[14.473944739447404,44.6195228323603],[14.427144271442728,44.656671532297736],[14.39474394743948,44.70732885039422],[14.398343983439844,44.75123185941118],[14.391143911439116,44.75292043668105],[14.391143911439116,44.754609013950926],[14.387543875438752,44.7562975912208],[14.383943839438388,44.7579861684907],[14.373143731437324,44.754609013950926],[14.36954369543696,44.76136332303045],[14.365943659436596,44.77487194118953],[14.362343623436232,44.806954909317284],[14.362343623436232,44.81539779566671],[14.355143551435532,44.82046352747636],[14.34434344343444,44.82046352747636],[14.329943299433012,44.833972145635414],[14.315543155431556,44.8930723500813],[14.2939429394294,44.90826954551025],[14.2939429394294,44.9133352773199],[14.297542975429764,44.91671243185968],[14.301143011430128,44.92177816366933],[14.2939429394294,44.94035251363803],[14.301143011430128,44.94372966817778],[14.326343263432648,44.936975359098255],[14.333543335433347,44.931909627288604],[14.351543515435168,44.9133352773199],[14.358743587435868,44.90826954551025],[14.376743767437688,44.90826954551025],[14.387543875438752,44.90826954551025],[14.39474394743948,44.915023854589776],[14.398343983439844,44.928532472748856],[14.39474394743948,44.93528678182838],[14.387543875438752,44.950483977257335],[14.391143911439116,44.96061544087661],[14.405544055440572,44.94879539998743],[14.412744127441272,44.95554970906696],[14.391143911439116,44.96905832722604],[14.376743767437688,44.98763267719474],[14.347943479434804,45.04673288164062],[14.340743407434076,45.05517576799005],[14.286742867428671,45.10076735427688],[14.279542795427972,45.11258739516606],[14.275942759427608,45.12778459059501],[14.290342903429035,45.14804751783359],[14.301143011430128,45.16155613599267],[14.311943119431191,45.17168759961194],[14.333543335433347,45.17506475415172],[14.355143551435532,45.16999902234207],[14.362343623436232,45.15817898145289],[14.358743587435868,45.11765312697571],[14.362343623436232,45.09401304519736],[14.36954369543696,45.075438695228655],[14.387543875438752,45.03828999529122],[14.412744127441272,45.00282987262369],[14.416344163441636,44.99776414081404],[14.430744307443092,44.991009831734516],[14.452344523445248,44.98763267719474],[14.466744667446676,44.98425552265499],[14.473944739447404,44.97074690449591],[14.47034470344704,44.95386113179708],[14.463144631446312,44.93528678182838],[14.452344523445248,44.92177816366933],[14.459544595445948,44.915023854589776],[14.448744487444884,44.89813808189095],[14.448744487444884,44.88294088646202],[14.452344523445248,44.85085791833424],[14.463144631446312,44.82215210474624],[14.466744667446676,44.80526633204741],[14.452344523445248,44.798512022967884],[14.455944559445612,44.78838055934858],[14.47034470344704,44.77318336391963],[14.473944739447404,44.76474047757023],[14.473944739447404,44.754609013950926],[14.466744667446676,44.74278897306175],[14.466744667446676,44.7292803549027],[14.473944739447404,44.70732885039422],[14.484744847448468,44.692131654965266],[14.502745027450288,44.678623036806215],[14.513545135451352,44.66173726410739]]],[[[14.72234722347224,44.94372966817778],[14.707947079470813,44.94710682271756],[14.657546575465773,44.97074690449591],[14.628746287462889,44.97750121357544],[14.625146251462525,44.985944099924865],[14.625146251462525,45.00114129535379],[14.625146251462525,45.03660141802135],[14.62154621546216,45.04504430437075],[14.603546035460369,45.03828999529122],[14.603546035460369,45.0315356862117],[14.617946179461796,45.02478137713217],[14.589145891458912,45.02309279986227],[14.509945099450988,45.0315356862117],[14.484744847448468,45.03828999529122],[14.459544595445948,45.05179861345027],[14.437944379443792,45.070372963419004],[14.423544235442364,45.08725873611783],[14.434344343443428,45.09570162246723],[14.441544415444156,45.09907877700701],[14.452344523445248,45.10076735427688],[14.463144631446312,45.10076735427688],[14.466744667446676,45.105833086086534],[14.466744667446676,45.114275972435934],[14.466744667446676,45.124407436055236],[14.477544775447768,45.12778459059501],[14.513545135451352,45.12947316786489],[14.531545315453172,45.13453889967454],[14.52074520745208,45.14804751783359],[14.535145351453508,45.16155613599267],[14.538745387453872,45.16999902234207],[14.542345423454236,45.1784419086915],[14.538745387453872,45.186884795040896],[14.535145351453508,45.19363910412042],[14.535145351453508,45.20208199046985],[14.549545495454964,45.21052487681925],[14.549545495454964,45.22065634043855],[14.549545495454964,45.230787804057854],[14.542345423454236,45.235853535867506],[14.535145351453508,45.23754211313738],[14.549545495454964,45.24936215402656],[14.563945639456392,45.24936215402656],[14.59634596345964,45.23754211313738],[14.585545855458548,45.23754211313738],[14.581945819458213,45.23754211313738],[14.585545855458548,45.230787804057854],[14.585545855458548,45.22403349497833],[14.592745927459276,45.22065634043855],[14.59634596345964,45.217279185898775],[14.610746107461068,45.19870483593007],[14.625146251462525,45.17506475415172],[14.59634596345964,45.16662186780232],[14.614346143461432,45.159867558722766],[14.643146431464316,45.15649040418302],[14.664746647466472,45.16155613599267],[14.6719467194672,45.14298178602394],[14.657546575465773,45.10752166335641],[14.664746647466472,45.08725873611783],[14.679146791467929,45.07712727249853],[14.69714697146972,45.07375011795875],[14.740347403474033,45.07375011795875],[14.740347403474033,45.04504430437075],[14.801548015480165,45.00451844989357],[14.815948159481593,44.97750121357544],[14.808748087480893,44.97750121357544],[14.797947979479801,44.97074690449591],[14.783547835478373,44.96905832722604],[14.772747727477281,44.97074690449591],[14.761947619476189,44.97750121357544],[14.74754747547476,44.97074690449591],[14.74754747547476,44.963992595416386],[14.761947619476189,44.95554970906696],[14.758347583475853,44.94879539998743],[14.740347403474033,44.945418245447684],[14.72234722347224,44.94372966817778]]],[[[-1.2186121861218453,45.943367411948344],[-1.2258122581225734,45.934924525598944],[-1.2150121501214812,45.92817021651942],[-1.1862118621186255,45.916350175630214],[-1.1790117901178974,45.90621871201094],[-1.1754117541175333,45.899464402931386],[-1.1826118261182614,45.855561393914456],[-1.1934119341193252,45.8302327348662],[-1.2078120781207815,45.81334696216737],[-1.2258122581225734,45.8201012712469],[-1.2402124021240013,45.853872816644554],[-1.2510125101250935,45.86738143480363],[-1.2618126181261857,45.88257863023256],[-1.3194131941319256,45.92817021651942],[-1.3410134101340816,45.93830168013869],[-1.362613626136266,45.95687603010742],[-1.3770137701376939,45.975450380076126],[-1.3734137341373298,45.98558184369543],[-1.3734137341373298,45.9957133073147],[-1.384213842138422,46.01766481182318],[-1.405814058140578,46.05312493449071],[-1.3734137341373298,46.04974777995096],[-1.3410134101340816,46.037927739061786],[-1.3086130861308618,46.02104196636296],[-1.2834128341283417,46.002467616394256],[-1.2726127261272495,45.997401884584605],[-1.2618126181261857,46.00077903912435],[-1.2474124741247294,46.002467616394256],[-1.2330123301233016,45.99233615277495],[-1.2294122941229375,45.978827534615874],[-1.2294122941229375,45.9686960709966],[-1.2294122941229375,45.9585646073773],[-1.2186121861218453,45.95012172102787],[-1.2186121861218453,45.943367411948344]]],[[[-2.082620826208256,49.25973316999796],[-2.068220682206828,49.25129028364856],[-2.0214202142021236,49.236093088219604],[-2.0214202142021236,49.2259616246003],[-2.017820178201788,49.22089589279068],[-2.01062010620106,49.21583016098103],[-2.0070200702006957,49.21245300644125],[-2.017820178201788,49.2073872746316],[-2.0214202142021236,49.200632965552074],[-2.0214202142021236,49.192190079202675],[-2.0214202142021236,49.18205861558337],[-2.0250202502024877,49.17192715196407],[-2.032220322203216,49.17192715196407],[-2.039420394203944,49.17530430650385],[-2.0502205022050077,49.178681461043595],[-2.079020790207892,49.178681461043595],[-2.097020970209684,49.18374719285325],[-2.1186211862118682,49.1989443882822],[-2.129421294212932,49.20232154282195],[-2.13662136621366,49.205698697361726],[-2.1438214382143883,49.205698697361726],[-2.154621546215452,49.200632965552074],[-2.1618216182161802,49.19050150193277],[-2.1690216902169084,49.178681461043595],[-2.176221762217608,49.18037003831347],[-2.1906219062190644,49.1888129246629],[-2.201422014220128,49.192190079202675],[-2.201422014220128,49.19050150193277],[-2.223022230222284,49.18543577012312],[-2.2338223382233764,49.18374719285325],[-2.2266222662226482,49.205698697361726],[-2.2338223382233764,49.22933877914008],[-2.2410224102241045,49.24791312910878],[-2.2410224102241045,49.25973316999796],[-2.2302223022230123,49.263110324537735],[-2.2158221582215845,49.25973316999796],[-2.197821978219764,49.25297886091843],[-2.1834218342183362,49.254667438188335],[-2.172621726217244,49.25635601545821],[-2.1618216182161802,49.25973316999796],[-2.151021510215088,49.26648747907751],[-2.1438214382143883,49.26142174726786],[-2.122221222212204,49.25804459272808],[-2.11142111421114,49.25297886091843],[-2.104221042210412,49.25804459272808],[-2.097020970209684,49.25973316999796],[-2.082620826208256,49.25973316999796]]],[[[-1.0818108181081811,50.71359819936697],[-1.0638106381063608,50.693335272128394],[-1.0638106381063608,50.684892385778966],[-1.0674106741067249,50.684892385778966],[-1.071010710107089,50.68320380850909],[-1.071010710107089,50.68151523123919],[-1.074610746107453,50.67813807669944],[-1.114211142111401,50.671383767619915],[-1.1286112861128572,50.666318035810264],[-1.1574115741157414,50.65112084038131],[-1.1610116101161054,50.64605510857166],[-1.164611646116441,50.64098937676201],[-1.164611646116441,50.61903787225353],[-1.164611646116441,50.608906408634255],[-1.1682116821168052,50.6038406768246],[-1.2798127981279777,50.581889172316124],[-1.3158131581315615,50.58864348139565],[-1.445414454144526,50.64774368584156],[-1.452614526145254,50.65449799492109],[-1.4850148501485023,50.66969519035001],[-1.495814958149566,50.67307234488979],[-1.5354153541535425,50.66969519035001],[-1.5498154981549703,50.66462945854036],[-1.5678156781567623,50.657875149460835],[-1.5462154621546063,50.68658096304884],[-1.5066150661506583,50.70853246755732],[-1.4202142021420059,50.733861126605575],[-1.4202142021420059,50.7304839720658],[-1.42381423814237,50.72372966298627],[-1.42381423814237,50.720352508446496],[-1.402214022140214,50.7220410857164],[-1.3770137701376939,50.733861126605575],[-1.3446134461344457,50.76087836292368],[-1.3194131941319256,50.77269840381285],[-1.2942129421294055,50.77269840381285],[-1.143011430114285,50.733861126605575],[-1.117811178111765,50.733861126605575],[-1.1106111061110653,50.73217254933567],[-1.096210962109609,50.72710681752602],[-1.096210962109609,50.72372966298627],[-1.096210962109609,50.715286776636844],[-1.096210962109609,50.71359819936697],[-1.092610926109245,50.711909622097096],[-1.0854108541085452,50.71359819936697],[-1.0818108181081811,50.71359819936697]]],[[[4.037440374403758,51.6862187068194],[4.077040770407706,51.67777582047],[4.098640986409862,51.67102151139045],[4.098640986409862,51.65413573869162],[4.087840878408798,51.64400427507235],[4.073440734407342,51.63724996599282],[4.05544055440555,51.63218423418317],[3.9762397623976256,51.62374134783374],[3.9618396183961977,51.62374134783374],[3.9222392223922213,51.63218423418317],[3.9006390063900653,51.642315697802445],[3.893438934389337,51.655824315961524],[3.8862388623886375,51.6676443568507],[3.868238682386817,51.6760872432001],[3.8322383223832333,51.6862187068194],[3.825038250382505,51.68959586135918],[3.817838178381777,51.69466159316883],[3.8106381063810773,51.69972732497848],[3.796237962379621,51.69972732497848],[3.771037710377101,51.68115297500975],[3.763837638376401,51.67777582047],[3.7206372063720607,51.6760872432001],[3.6990369903699047,51.68115297500975],[3.688236882368841,51.69297301589893],[3.688236882368841,51.72505598402671],[3.724237242372425,51.740253179455664],[3.8106381063810773,51.74700748853519],[3.8142381423814413,51.74869606580506],[3.8322383223832333,51.74700748853519],[3.843038430384297,51.74363033399541],[3.9402394023940417,51.74194175672554],[3.9618396183961977,51.73856460218576],[3.9762397623976256,51.73012171583636],[4.015840158401602,51.70141590224836],[4.019440194401938,51.696350170438706],[4.026640266402666,51.691284438629054],[4.037440374403758,51.6862187068194]]],[[[-177.80037800378003,51.79597622936177],[-177.7967779677797,51.785844765742496],[-177.79317793177933,51.77909045666294],[-177.78237782377823,51.775713302123194],[-177.77157771577717,51.775713302123194],[-177.7967779677797,51.758827529424366],[-177.80757807578075,51.745318911265315],[-177.80757807578075,51.72843313856649],[-177.80757807578075,51.70310447951823],[-177.81117811178112,51.69466159316883],[-177.83637836378364,51.6760872432001],[-177.84717847178473,51.67102151139045],[-177.86157861578616,51.67439866593023],[-177.8831788317883,51.6862187068194],[-177.88677886778868,51.67439866593023],[-177.8939789397894,51.6676443568507],[-177.90477904779047,51.664267202310924],[-177.91557915579156,51.66595577958083],[-177.90837908379083,51.65920147050127],[-177.91557915579156,51.64569285234222],[-177.9119791197912,51.63049565691327],[-177.89757897578977,51.60347842059517],[-177.90837908379083,51.598412688785515],[-177.91917919179193,51.59672411151561],[-177.93357933579335,51.598412688785515],[-177.94437944379445,51.60347842059517],[-177.9479794797948,51.61023272967469],[-177.9551795517955,51.63049565691327],[-177.95877958779587,51.63724996599282],[-177.97317973179733,51.64569285234222],[-178.01278012780128,51.647381429612096],[-178.03078030780307,51.65920147050127],[-178.04518045180453,51.66595577958083],[-178.0811808118081,51.66257862504105],[-178.10278102781027,51.66595577958083],[-178.0919809198092,51.691284438629054],[-178.0811808118081,51.69972732497848],[-178.03078030780307,51.69972732497848],[-178.019980199802,51.70310447951823],[-178.0019800198002,51.71154736586766],[-177.97317973179733,51.71492452040741],[-177.96237962379624,51.71999025221706],[-177.9551795517955,51.72843313856649],[-177.95157951579515,51.74194175672554],[-177.9551795517955,51.76389326123402],[-177.97317973179733,51.77909045666294],[-177.99837998379985,51.785844765742496],[-178.04518045180453,51.79091049755215],[-178.06318063180632,51.79935338390155],[-178.09558095580957,51.8229934656799],[-178.18918189181892,51.85507643380768],[-178.21438214382144,51.87533936104626],[-178.17838178381783,51.905733751904165],[-178.14958149581497,51.914176638253565],[-177.95157951579515,51.92430810187287],[-177.929979299793,51.919242370063216],[-177.929979299793,51.91248806098369],[-177.8939789397894,51.88884797920534],[-177.8831788317883,51.883782247395686],[-177.8831788317883,51.87702793831616],[-177.8939789397894,51.86689647469686],[-177.84717847178473,51.851699279267905],[-177.839978399784,51.83650208383898],[-177.71037710377104,51.83650208383898],[-177.6491764917649,51.848322124728156],[-177.62397623976238,51.856765011077556],[-177.62757627576275,51.8331249292992],[-177.6491764917649,51.821304888410026],[-177.67437674376743,51.816239156600375],[-177.69957699576995,51.816239156600375],[-177.72837728377283,51.8128620020606],[-177.7751777517775,51.79597622936177],[-177.80037800378003,51.79597622936177]]],[[[-177.12357123571235,51.93275098822227],[-177.09837098370983,51.93106241095239],[-177.0731707317073,51.92261952460299],[-177.05517055170552,51.909110906443914],[-177.0479704797048,51.892225133745086],[-177.06237062370624,51.887159401935435],[-177.0659706597066,51.88209367012581],[-177.0659706597066,51.873650783776384],[-177.0659706597066,51.86689647469686],[-177.0731707317073,51.85845358834743],[-177.12357123571235,51.843256392918505],[-177.1379713797138,51.8229934656799],[-177.13077130771308,51.78415618847259],[-177.14157141571417,51.762204683964114],[-177.1271712717127,51.74700748853519],[-177.13077130771308,51.73012171583636],[-177.1559715597156,51.69972732497848],[-177.1919719197192,51.70985878859776],[-177.20277202772027,51.71323594313753],[-177.20277202772027,51.70648163405801],[-177.20277202772027,51.70141590224836],[-177.20277202772027,51.69803874770858],[-177.20277202772027,51.69297301589893],[-177.22437224372243,51.696350170438706],[-177.24957249572495,51.68790728408928],[-177.27837278372783,51.67946439773988],[-177.30717307173072,51.69297301589893],[-177.31437314373144,51.68790728408928],[-177.3179731797318,51.6862187068194],[-177.32877328773287,51.69297301589893],[-177.32877328773287,51.69466159316883],[-177.33957339573396,51.70648163405801],[-177.35757357573576,51.718301674947185],[-177.37197371973718,51.723367406756836],[-177.38637386373864,51.726744561296584],[-177.43677436774368,51.72505598402671],[-177.45477454774547,51.723367406756836],[-177.46917469174693,51.71661309767728],[-177.48357483574836,51.70648163405801],[-177.49797497974978,51.70310447951823],[-177.5339753397534,51.70648163405801],[-177.59877598775986,51.70310447951823],[-177.6311763117631,51.691284438629054],[-177.6419764197642,51.669332934120575],[-177.6491764917649,51.65413573869162],[-177.659976599766,51.65244716142175],[-177.6707767077671,51.65920147050127],[-177.6779767797678,51.669332934120575],[-177.6779767797678,51.67777582047],[-177.68157681576815,51.6862187068194],[-177.69237692376925,51.69297301589893],[-177.7031770317703,51.69972732497848],[-177.7031770317703,51.70648163405801],[-177.68877688776888,51.71154736586766],[-177.659976599766,51.73012171583636],[-177.64557645576457,51.73349887037611],[-177.62757627576275,51.731810293106236],[-177.5879758797588,51.72167882948693],[-177.569975699757,51.71999025221706],[-177.5231752317523,51.71999025221706],[-177.51957519575197,51.723367406756836],[-177.51957519575197,51.73012171583636],[-177.5159751597516,51.73856460218576],[-177.50877508775088,51.74194175672554],[-177.47637476374763,51.74194175672554],[-177.47277472774726,51.74363033399541],[-177.46917469174693,51.74869606580506],[-177.46557465574656,51.75207322034484],[-177.45477454774547,51.75545037488459],[-177.38637386373864,51.762204683964114],[-177.2927729277293,51.78246761120272],[-177.21717217172173,51.81961631114015],[-177.20277202772027,51.870273629236635],[-177.1991719917199,51.878716515586035],[-177.19557195571954,51.900668020094514],[-177.1919719197192,51.91248806098369],[-177.19557195571954,51.92937383368252],[-177.1739717397174,51.936128142762044],[-177.12357123571235,51.93275098822227]]],[[[-176.13716137161373,51.99353976993805],[-176.15516155161552,51.99522834720793],[-176.16596165961658,51.998605501747704],[-176.16956169561695,52.00535981082723],[-176.1911619116191,52.039131356224885],[-176.19476194761947,52.05095139711406],[-176.19476194761947,52.05939428346349],[-176.18756187561877,52.06783716981289],[-176.17676176761768,52.08978867432137],[-176.16956169561695,52.0982315606708],[-176.14436144361443,52.1066744470202],[-176.10476104761048,52.110051601559974],[-176.06876068760687,52.10836302429007],[-176.0471604716047,52.0982315606708],[-176.0039600396004,52.06783716981289],[-175.99675996759967,52.05939428346349],[-175.99675996759967,52.04588566530441],[-175.99675996759967,52.03237704714536],[-175.9859598595986,52.025622738065834],[-175.96435964359642,52.03575420168514],[-175.97515975159752,52.02224558352606],[-176.02916029160292,52.012114119906755],[-176.0471604716047,51.99353976993805],[-176.02916029160292,51.99522834720793],[-176.0219602196022,51.990162615398305],[-176.0219602196022,51.981719729048876],[-176.02916029160292,51.9698996881597],[-176.04356043560435,51.963145379080174],[-176.0579605796058,51.96652253361992],[-176.07956079560796,51.980031151779],[-176.12276122761227,51.99185119266818],[-176.13716137161373,51.99353976993805]]],[[[-173.12393123931238,52.10836302429007],[-173.11313113131132,52.101608715210546],[-173.10233102331023,52.0982315606708],[-172.95472954729547,52.08978867432137],[-172.97272972729726,52.08472294251172],[-173.0159301593016,52.08134578797197],[-173.0339303393034,52.07290290162254],[-173.0519305193052,52.06783716981289],[-173.10233102331023,52.074591478892415],[-173.13833138331384,52.05939428346349],[-173.16353163531636,52.05601712892371],[-173.18873188731888,52.05939428346349],[-173.2139321393214,52.07121432435267],[-173.22833228332283,52.074591478892415],[-173.23913239132392,52.07628005616232],[-173.24273242732428,52.07290290162254],[-173.24633246332462,52.06277143800324],[-173.2571325713257,52.06277143800324],[-173.2751327513275,52.06952574708279],[-173.30753307533075,52.06277143800324],[-173.37593375933758,52.039131356224885],[-173.41553415534156,52.03575420168514],[-173.44793447934478,52.04419708803454],[-173.46233462334624,52.04250851076466],[-173.4731347313473,52.03744277895501],[-173.4839348393484,52.02393416079596],[-173.49113491134912,52.02224558352606],[-173.50193501935019,52.02224558352606],[-173.51633516335164,52.03237704714536],[-173.52353523535234,52.03575420168514],[-173.5379353793538,52.034065624415234],[-173.54873548735486,52.03237704714536],[-173.55953559535595,52.030688469875486],[-173.57393573935738,52.03575420168514],[-173.55953559535595,52.04419708803454],[-173.57033570335705,52.04926281984419],[-173.6819368193682,52.04926281984419],[-173.67833678336783,52.05601712892371],[-173.67473674736746,52.06277143800324],[-173.68913689136892,52.06952574708279],[-173.71433714337144,52.05432855165384],[-173.75033750337502,52.04757424257431],[-173.83673836738367,52.04419708803454],[-173.88713887138871,52.05601712892371],[-173.92313923139233,52.05939428346349],[-173.93033930339303,52.066148592543016],[-173.92313923139233,52.08303436524184],[-173.93033930339303,52.088100097051495],[-173.95553955539555,52.08978867432137],[-173.96633966339664,52.093165828861146],[-173.98073980739807,52.101608715210546],[-173.99153991539916,52.10498586975032],[-173.9987399873999,52.10498586975032],[-174.01674016740168,52.10329729248042],[-174.0239402394024,52.10498586975032],[-174.03474034740347,52.10836302429007],[-174.04914049140493,52.12018306517925],[-174.059940599406,52.1252487969889],[-174.059940599406,52.128625951528676],[-174.05634056340563,52.13200310606845],[-174.05634056340563,52.1353802606082],[-174.05274052740526,52.13875741514798],[-174.04554045540456,52.13200310606845],[-174.0239402394024,52.128625951528676],[-174.00954009540095,52.1252487969889],[-173.9591395913959,52.123560219719025],[-173.94113941139412,52.1252487969889],[-173.90153901539014,52.137068837878076],[-173.88713887138871,52.13875741514798],[-173.89433894338944,52.123560219719025],[-173.89433894338944,52.11849448790937],[-173.90153901539014,52.11174017882985],[-173.88713887138871,52.11342875609972],[-173.85833858338583,52.123560219719025],[-173.84753847538477,52.1252487969889],[-173.84033840338404,52.12018306517925],[-173.80433804338043,52.08978867432137],[-173.789937899379,52.115117333369625],[-173.76473764737648,52.1269373742588],[-173.73233732337323,52.13031452879855],[-173.69993699936998,52.13031452879855],[-173.68553685536855,52.13369168333833],[-173.66033660336603,52.14720030149738],[-173.6459364593646,52.15226603330703],[-173.63153631536315,52.150577456037155],[-173.61713617136172,52.14720030149738],[-173.60633606336063,52.14720030149738],[-173.5919359193592,52.15226603330703],[-173.57393573935738,52.14382314695763],[-173.54873548735486,52.14720030149738],[-173.53073530735307,52.145511724227504],[-173.54513545135453,52.11849448790937],[-173.53073530735307,52.1252487969889],[-173.519935199352,52.115117333369625],[-173.5091350913509,52.11174017882985],[-173.429934299343,52.11174017882985],[-173.42273422734226,52.1168059106395],[-173.41553415534156,52.11849448790937],[-173.40833408334083,52.115117333369625],[-173.40833408334083,52.11174017882985],[-173.40473404734047,52.1066744470202],[-173.39753397533974,52.10498586975032],[-173.36873368733688,52.10836302429007],[-173.36153361533616,52.10498586975032],[-173.35433354333543,52.08978867432137],[-173.3291332913329,52.09992013794067],[-173.3039330393304,52.10836302429007],[-173.2751327513275,52.11174017882985],[-173.24993249932498,52.11174017882985],[-173.24993249932498,52.110051601559974],[-173.24633246332462,52.10498586975032],[-173.24273242732428,52.09992013794067],[-173.23553235532356,52.0982315606708],[-173.22833228332283,52.0982315606708],[-173.21753217532176,52.10329729248042],[-173.21033210332104,52.10498586975032],[-173.15633156331563,52.10498586975032],[-173.1419314193142,52.110051601559974],[-173.1311313113131,52.11174017882985],[-173.12393123931238,52.10836302429007]]],[[[-172.40752407524076,52.38528969655084],[-172.38232382323824,52.368403923852014],[-172.33552335523356,52.35827246023271],[-172.3031230312303,52.34476384207366],[-172.31032310323104,52.31605802848566],[-172.32472324723247,52.30930371940613],[-172.3859238592386,52.29579510124705],[-172.41112411124112,52.278909328548224],[-172.42552425524255,52.27722075127835],[-172.43992439924398,52.289040792167526],[-172.47952479524795,52.26540071038917],[-172.529925299253,52.25020351496022],[-172.5839258392584,52.248514937690345],[-172.63432634326344,52.262023555849396],[-172.59832598325983,52.31268087394588],[-172.58032580325803,52.33632095572423],[-172.55872558725588,52.34982957388331],[-172.49752497524975,52.37178107839179],[-172.43992439924398,52.39879831470989],[-172.43632436324364,52.39373258290027],[-172.4291242912429,52.39035542836049],[-172.40752407524076,52.38528969655084]]],[[[-170.6039060390604,52.68754502785984],[-170.5931059310593,52.68585645058997],[-170.58230582305822,52.68247929605019],[-170.57510575105752,52.67910214151044],[-170.56430564305643,52.672347832430916],[-170.5679056790568,52.66221636881161],[-170.56430564305643,52.65546205973209],[-170.5679056790568,52.65039632792244],[-170.59670596705968,52.61155905071513],[-170.6219062190622,52.5946732780163],[-170.64710647106472,52.587918968936776],[-170.67230672306724,52.58960754620665],[-170.70110701107012,52.59805043255605],[-170.75150751507516,52.5744103507777],[-170.76950769507695,52.56259030988852],[-170.78750787507875,52.547393114459595],[-170.79830798307984,52.54063880538004],[-170.8091080910809,52.542327382649944],[-170.83070830708306,52.55752457807887],[-170.83790837908379,52.54908169172947],[-170.8451084510845,52.584541814397],[-170.819908199082,52.61662478252478],[-170.75510755107553,52.658839214271836],[-170.7479074790748,52.667282100621264],[-170.7479074790748,52.67403640970079],[-170.74430744307443,52.67910214151044],[-170.73350733507334,52.680790718780315],[-170.71550715507155,52.680790718780315],[-170.70470704707049,52.68247929605019],[-170.6939069390694,52.68754502785984],[-170.6831068310683,52.69767649147914],[-170.66870668706687,52.70105364601892],[-170.64710647106472,52.69936506874902],[-170.6219062190622,52.694299336939366],[-170.6039060390604,52.68754502785984]]],[[[-169.6858968589686,52.87159995027707],[-169.6858968589686,52.86653421846742],[-169.6858968589686,52.863157063927645],[-169.68229682296823,52.86146848665777],[-169.67869678696786,52.85809133211799],[-169.68229682296823,52.85133702303847],[-169.69309693096932,52.83107409579986],[-169.67869678696786,52.82431978672034],[-169.69309693096932,52.814188323101064],[-169.70749707497075,52.805745436751636],[-169.71469714697147,52.79561397313233],[-169.70749707497075,52.78210535497328],[-169.7218972189722,52.773662468623854],[-169.73629736297363,52.778728200433505],[-169.76149761497615,52.79561397313233],[-169.7830978309783,52.80405685948176],[-169.8658986589866,52.82094263218059],[-169.87669876698766,52.81925405491069],[-169.91629916299163,52.79899112767211],[-169.92349923499233,52.797302550402236],[-169.94149941499415,52.79561397313233],[-169.95589955899558,52.79054824132268],[-169.9630996309963,52.78885966405281],[-169.97029970299704,52.792236818592585],[-169.97749977499774,52.800679704941984],[-169.99909999099992,52.80912259129141],[-170.009900099001,52.82431978672034],[-170.009900099001,52.83782840487942],[-169.97389973899737,52.85640275484812],[-169.9630996309963,52.85809133211799],[-169.92349923499233,52.85133702303847],[-169.89829898298984,52.85133702303847],[-169.88749887498875,52.854714177578245],[-169.86949869498696,52.87497710481682],[-169.85149851498514,52.88173141389635],[-169.80469804698046,52.88173141389635],[-169.7830978309783,52.89186287751565],[-169.76869768697688,52.885108568436124],[-169.75429754297542,52.885108568436124],[-169.74349743497436,52.886797145706],[-169.7290972909729,52.885108568436124],[-169.71469714697147,52.8783542593566],[-169.70749707497075,52.87328852754695],[-169.70029700297002,52.86991137300717],[-169.6858968589686,52.87159995027707]]],[[[4.89424894248944,53.11137792260041],[4.89424894248944,53.104623613520886],[4.912249122491232,53.104623613520886],[4.905049050490504,53.09111499536181],[4.89424894248944,53.07591779993288],[4.865448654486556,53.050589140884625],[4.81864818648188,53.02694905910627],[4.797047970479724,52.99993182278814],[4.761047610476112,52.99486609097849],[4.7250472504725,53.00330897732792],[4.707047070470708,53.028637636376146],[4.714247142471436,53.0539662954244],[4.732247322473228,53.08436068628228],[4.757447574475748,53.108000768060634],[4.804248042480424,53.13332942710889],[4.829448294482944,53.16372381796677],[4.854648546485464,53.18736389974512],[4.887048870488712,53.18736389974512],[4.890648906489076,53.1806095906656],[4.890648906489076,53.175543858855946],[4.890648906489076,53.170478127046295],[4.887048870488712,53.16541239523664],[4.90144901449014,53.15190377707759],[4.908649086490868,53.135018004378765],[4.908649086490868,53.11813223167994],[4.89424894248944,53.11137792260041]]],[[[-9.963099630996311,53.95397798027187],[-9.952299522995219,53.95735513481165],[-9.941499414994155,53.9607322893514],[-9.930699306993063,53.959043712081524],[-9.923499234992335,53.95397798027187],[-9.923499234992335,53.94722367119235],[-9.930699306993063,53.93878078484292],[-9.93789937899379,53.923583589413994],[-9.941499414994155,53.906697816715166],[-9.93789937899379,53.89318919855609],[-9.959499594995947,53.88136915766691],[-9.977499774997739,53.88643488947656],[-9.99549995499953,53.901632084905515],[-10.017100171001715,53.91345212579469],[-10.031500315003143,53.91345212579469],[-10.04590045900457,53.91176354852482],[-10.056700567005663,53.91345212579469],[-10.060300603006027,53.923583589413994],[-10.056700567005663,53.93878078484292],[-10.053100531005299,53.94891224846222],[-10.056700567005663,53.959043712081524],[-10.067500675006755,53.96748659843092],[-10.085500855008547,53.9708637529707],[-10.161101611016107,53.9607322893514],[-10.189901899018992,53.964109443891175],[-10.240302403024032,53.97424090751048],[-10.265502655026552,53.97424090751048],[-10.265502655026552,53.98099521659],[-10.240302403024032,53.98268379385988],[-10.218702187021876,53.986060948399654],[-10.200702007020055,53.99619241201893],[-10.189901899018992,54.01645533925753],[-10.182701827018263,54.00970103017801],[-10.171901719017171,54.008012452908105],[-10.164701647016471,54.00970103017801],[-10.157501575015743,54.01645533925753],[-10.135901359013587,53.999569566558705],[-10.107101071010703,54.004635298368356],[-10.085500855008547,54.01645533925753],[-10.063900639006391,54.02320964833706],[-9.977499774997739,54.021521071067184],[-9.955899558995583,54.01645533925753],[-9.93789937899379,53.9894381029394],[-9.955899558995583,53.9894381029394],[-9.955899558995583,53.98099521659],[-9.955899558995583,53.972552330240575],[-9.959499594995947,53.96579802116105],[-9.963099630996311,53.9607322893514],[-9.963099630996311,53.95397798027187]]],[[[-165.74025740257403,54.124524284530025],[-165.6718567185672,54.12959001633968],[-165.65745657456574,54.124524284530025],[-165.66465664656647,54.1177699754505],[-165.6790567905679,54.09919562548177],[-165.70065700657005,54.089064161862495],[-165.76905769057691,54.070489811893765],[-165.77985779857798,54.070489811893765],[-165.79425794257943,54.070489811893765],[-165.83025830258302,54.08230985278297],[-165.83745837458375,54.08568700732272],[-165.85185851858517,54.075555543703416],[-165.8878588785888,54.03671826649611],[-165.90225902259021,54.03334111195636],[-165.90945909459094,54.04347257557566],[-165.9130591305913,54.05360403919494],[-165.91665916659167,54.06035834827449],[-165.9310593105931,54.06373550281424],[-165.95625956259562,54.06035834827449],[-165.9670596705967,54.062046925544365],[-165.97425974259744,54.070489811893765],[-165.98865988659887,54.05866977100459],[-166.02466024660248,54.04516115284554],[-166.0390603906039,54.03671826649611],[-166.07506075060752,54.06373550281424],[-166.06426064260643,54.07724412097332],[-166.07866078660786,54.092441316402244],[-166.1218612186122,54.1177699754505],[-166.10746107461074,54.132967170879425],[-166.11466114661147,54.13972147995898],[-166.10746107461074,54.14985294357825],[-166.0930609306093,54.17180444808673],[-166.08226082260822,54.18024733443616],[-166.07146071460716,54.18531306624581],[-166.03546035460354,54.19375595259521],[-165.97065970659708,54.21908461164347],[-165.94545945459456,54.222461766183216],[-165.93465934659346,54.22077318891334],[-165.9130591305913,54.21570745710369],[-165.88065880658806,54.214018879833816],[-165.8770587705877,54.208953148024165],[-165.88065880658806,54.20219883894464],[-165.88425884258842,54.19037879805546],[-165.87345873458736,54.17518160262651],[-165.85545855458554,54.16842729354698],[-165.83025830258302,54.17180444808673],[-165.8158581585816,54.187001643515686],[-165.80145801458013,54.173493025356635],[-165.75825758257582,54.16336156173733],[-165.74025740257403,54.15323009811803],[-165.75825758257582,54.14478721176863],[-165.82305823058232,54.13972147995898],[-165.82305823058232,54.132967170879425],[-165.80865808658086,54.132967170879425],[-165.77985779857798,54.124524284530025],[-165.74025740257403,54.124524284530025]]],[[[-165.48465484654847,54.173493025356635],[-165.47385473854737,54.16673871627708],[-165.4810548105481,54.16336156173733],[-165.50625506255062,54.159984407197555],[-165.52785527855278,54.14816436630838],[-165.53865538655387,54.14478721176863],[-165.5530555305553,54.146475789038504],[-165.54225542255423,54.13972147995898],[-165.54945549455493,54.12283570726015],[-165.56745567455675,54.11270424364085],[-165.5890558905589,54.111015666370974],[-165.61065610656107,54.1177699754505],[-165.6250562505625,54.132967170879425],[-165.6250562505625,54.14478721176863],[-165.61065610656107,54.15829582992768],[-165.5962559625596,54.173493025356635],[-165.63225632256322,54.19037879805546],[-165.6250562505625,54.20051026167474],[-165.5962559625596,54.214018879833816],[-165.57465574655745,54.23428180707239],[-165.59985599855997,54.24272469342182],[-165.68265682656826,54.23428180707239],[-165.6790567905679,54.249479002501346],[-165.6718567185672,54.2629876206604],[-165.66465664656647,54.2731190842797],[-165.65025650256501,54.276496238819476],[-165.6358563585636,54.276496238819476],[-165.63225632256322,54.279873393359225],[-165.62865628656286,54.29675916605805],[-165.62145621456216,54.29675916605805],[-165.61425614256143,54.293382011518304],[-165.59985599855997,54.28662770243875],[-165.5962559625596,54.279873393359225],[-165.5962559625596,54.2731190842797],[-165.5962559625596,54.26974192973992],[-165.58545585455855,54.266364775200174],[-165.58545585455855,54.26805335247005],[-165.58185581855818,54.271430507009825],[-165.57465574655745,54.276496238819476],[-165.53145531455314,54.29507058878818],[-165.51345513455135,54.29675916605805],[-165.49545495454956,54.29675916605805],[-165.4918549185492,54.29000485697853],[-165.4990549905499,54.283250547899],[-165.52065520655208,54.283250547899],[-165.52065520655208,54.26974192973992],[-165.53145531455314,54.26129904339052],[-165.5458554585546,54.25285615704112],[-165.56025560255603,54.24272469342182],[-165.5530555305553,54.23428180707239],[-165.54945549455493,54.23934753888204],[-165.54225542255423,54.24272469342182],[-165.5458554585546,54.22752749799287],[-165.5458554585546,54.222461766183216],[-165.44505445054452,54.20051026167474],[-165.419854198542,54.20726457075426],[-165.40545405454054,54.19206737532534],[-165.42345423454233,54.18362448897591],[-165.45585455854558,54.18024733443616],[-165.48465484654847,54.18024733443616],[-165.48465484654847,54.173493025356635]]],[[[-4.613446134461327,54.056981193734714],[-4.620646206462055,54.070489811893765],[-4.6314463144631475,54.070489811893765],[-4.642246422464211,54.067112657354016],[-4.6566465664656675,54.06373550281424],[-4.671046710467095,54.067112657354016],[-4.689046890468887,54.08230985278297],[-4.703447034470344,54.08568700732272],[-4.7250472504725,54.07893269824319],[-4.746647466474656,54.067112657354016],[-4.764647646476448,54.05866977100459],[-4.789847898478968,54.06373550281424],[-4.789847898478968,54.070489811893765],[-4.786247862478632,54.07386696643354],[-4.782647826478268,54.075555543703416],[-4.77544775447754,54.075555543703416],[-4.768247682476812,54.07724412097332],[-4.771847718477176,54.097507048211895],[-4.735847358473592,54.124524284530025],[-4.728647286472864,54.14309863449873],[-4.728647286472864,54.17180444808673],[-4.7250472504725,54.18531306624581],[-4.714247142471407,54.20051026167474],[-4.710647106471072,54.21064172529404],[-4.710647106471072,54.217396034373564],[-4.710647106471072,54.22077318891334],[-4.689046890468887,54.22415034345309],[-4.663846638466367,54.23428180707239],[-4.642246422464211,54.249479002501346],[-4.613446134461327,54.2646761979303],[-4.599045990459899,54.276496238819476],[-4.555845558455587,54.338973597805136],[-4.530645306453067,54.36599083412324],[-4.494644946449455,54.38625376136184],[-4.440644406444051,54.404828111330545],[-4.404644046440467,54.409893843140196],[-4.3866438664386465,54.41495957494985],[-4.3686436864368545,54.418336729489624],[-4.350643506435063,54.41327099767997],[-4.357843578435791,54.399762379520894],[-4.375843758437583,54.36261367958349],[-4.375843758437583,54.34910506142441],[-4.3686436864368545,54.34066217507501],[-4.3650436504364905,54.32377640237618],[-4.357843578435791,54.31702209329666],[-4.350643506435063,54.315333516026755],[-4.332643326433271,54.31364493875688],[-4.3254432544325425,54.31026778421713],[-4.318243182431814,54.30520205240748],[-4.31464314643145,54.29507058878818],[-4.311043110431086,54.28662770243875],[-4.3218432184321784,54.283250547899],[-4.3254432544325425,54.279873393359225],[-4.33984339843397,54.2629876206604],[-4.3470434704346985,54.25961046612065],[-4.354243542435427,54.25116757977122],[-4.361443614436126,54.24272469342182],[-4.3650436504364905,54.23428180707239],[-4.372243722437219,54.230904652532644],[-4.397443974439739,54.222461766183216],[-4.3902439024390105,54.195444529865085],[-4.4118441184411665,54.18024733443616],[-4.447844478444779,54.16842729354698],[-4.476644766447663,54.15323009811803],[-4.473044730447299,54.14141005722885],[-4.530645306453067,54.119458552720374],[-4.545045450454495,54.1076385118312],[-4.548645486454859,54.10088420275167],[-4.563045630456287,54.097507048211895],[-4.581045810458107,54.09412989367215],[-4.591845918459171,54.09075273913237],[-4.599045990459899,54.083998430052844],[-4.613446134461327,54.056981193734714]]],[[[11.255512555125563,54.47912551120538],[11.313113131131331,54.41327099767997],[11.18711187111873,54.426779615839024],[11.16911169111691,54.4200253067595],[11.176311763117639,54.41664815221972],[11.179911799118003,54.41495957494985],[11.140311403114026,54.41327099767997],[11.11151111511117,54.41495957494985],[11.100711007110078,54.423402461299276],[11.104311043110442,54.44366538853785],[11.097110971109714,54.45210827488728],[11.082710827108286,54.45548542942703],[11.057510575105766,54.45548542942703],[11.046710467104674,54.453796852157154],[11.039510395103946,54.44704254307763],[11.032310323103246,54.44704254307763],[11.028710287102882,54.45548542942703],[11.025110251102518,54.458862583966805],[11.021510215102154,54.458862583966805],[11.007110071100726,54.45548542942703],[11.007110071100726,54.46899404758611],[11.032310323103246,54.50951990206329],[11.071910719107194,54.53147140657177],[11.122311223112234,54.53653713838139],[11.205112051120523,54.51458563387294],[11.230312303123043,54.50107701571386],[11.241112411124107,54.49601128390421],[11.255512555125563,54.47912551120538]]],[[[8.361083610836118,54.948549992232785],[8.35388353883539,54.913089869565255],[8.389883898839003,54.894515519596524],[8.436684366843679,54.887761210517],[8.652686526865267,54.89282694232665],[8.631086310863111,54.88269547870735],[8.50508505085051,54.886072633247124],[8.487084870848719,54.88100690143747],[8.461884618846199,54.8691868605483],[8.447484474844742,54.86580970600852],[8.375483754837546,54.86580970600852],[8.371883718837182,54.86749828327842],[8.361083610836118,54.877629746897696],[8.35388353883539,54.8793183241676],[8.343083430834326,54.8793183241676],[8.335883358833598,54.877629746897696],[8.307083070830714,54.86580970600852],[8.30348303483035,54.86243255146877],[8.299882998829986,54.855678242389246],[8.296282962829622,54.83541531515064],[8.296282962829622,54.832038160610864],[8.299882998829986,54.77631511070476],[8.296282962829622,54.75942933800593],[8.289082890828922,54.74592071984685],[8.285482854828558,54.7425435653071],[8.27828278282783,54.75605218346615],[8.27828278282783,54.78306941978428],[8.289082890828922,54.891138365056776],[8.296282962829622,54.913089869565255],[8.375483754837546,55.0346674329968],[8.415084150841523,55.06506182385468],[8.461884618846199,55.04986462842575],[8.400684006840066,55.04817605115585],[8.393483934839367,55.0431103193462],[8.422284222842222,55.041421742076324],[8.42948429484295,55.02960170118715],[8.422284222842222,55.016093083028096],[8.37908379083791,55.00258446486902],[8.361083610836118,54.98738726944009],[8.350283502835026,54.96712434220149],[8.361083610836118,54.948549992232785]]],[[[10.009900099000987,54.975567228550915],[10.024300243002443,54.96037003312196],[10.063900639006391,54.891138365056776],[10.063900639006391,54.88100690143747],[10.049500495004963,54.8793183241676],[10.02070020700208,54.8793183241676],[10.006300063000623,54.87425259235795],[9.988299882998831,54.86580970600852],[9.966699666996675,54.859055396928994],[9.952299522995247,54.86243255146877],[9.93789937899379,54.87087543781817],[9.891098910989115,54.8793183241676],[9.873098730987323,54.886072633247124],[9.873098730987323,54.89282694232665],[9.901899018990207,54.90126982867608],[9.930699306993063,54.89282694232665],[9.963099630996311,54.8793183241676],[9.991899918999195,54.872564015088045],[9.991899918999195,54.8793183241676],[9.945099450994519,54.90295840594595],[9.898298982989843,54.913089869565255],[9.88749887498875,54.913089869565255],[9.876698766987687,54.91140129229535],[9.86229862298623,54.90295840594595],[9.855098550985502,54.899581251406175],[9.815498154981555,54.90126982867608],[9.77949779497797,54.916467024105],[9.76149761497615,54.94348426042313],[9.765097650976514,54.975567228550915],[9.757897578975786,54.975567228550915],[9.757897578975786,54.98232153763044],[9.77949779497797,54.97219007401114],[9.80469804698049,54.956992878582184],[9.826298262982647,54.94517283769301],[9.847898478984803,54.948549992232785],[9.844298442984439,54.95192714677253],[9.83709837098371,54.95868145585209],[9.833498334983346,54.96543576493161],[9.83709837098371,54.96881291947136],[9.840698406984075,54.970501496741264],[9.833498334983346,54.975567228550915],[9.793897938979399,54.99245300124974],[9.78669786697867,55.00089588759914],[9.797497974979763,55.00933877394857],[9.797497974979763,55.016093083028096],[9.721897218972202,55.01271592848832],[9.707497074970746,55.01271592848832],[9.696696966969682,55.01778166029797],[9.68589685896859,55.01778166029797],[9.675096750967526,55.02115881483775],[9.667896678966798,55.02960170118715],[9.671496714967162,55.0346674329968],[9.689496894968954,55.0431103193462],[9.696696966969682,55.04986462842575],[9.67869678696789,55.04986462842575],[9.66069660696607,55.046487473885975],[9.646296462964642,55.0447988966161],[9.62829628296285,55.04986462842575],[9.62829628296285,55.05830751477515],[9.718297182971838,55.081947596553505],[9.750697506975087,55.08532475109328],[9.793897938979399,55.08025901928363],[9.851498514985167,55.03973316480645],[9.883898838988387,55.02960170118715],[9.930699306993063,55.0262245466474],[9.959499594995947,55.01440450575819],[9.988299882998831,54.997518733059366],[10.009900099000987,54.975567228550915]]],[[[10.855908559085606,55.0431103193462],[10.863108631086305,55.07181613293423],[10.895508955089554,55.12078487376081],[10.93510935109353,55.15962215096812],[10.956709567095686,55.15455641915847],[10.90990909909101,55.02960170118715],[10.888308883088825,54.997518733059366],[10.837908379083785,54.93672995134361],[10.74070740707407,54.752675028926376],[10.729907299073005,54.7408549880372],[10.719107191071913,54.73578925622755],[10.693906939069393,54.73578925622755],[10.68310683106833,54.744232142576976],[10.65790657906581,54.80333234702286],[10.647106471064717,54.815152387912036],[10.632706327063289,54.823595274261464],[10.600306003060041,54.83879246969042],[10.625506255062561,54.83879246969042],[10.639906399063989,54.84385820150004],[10.654306543065445,54.85230108784947],[10.668706687066873,54.86580970600852],[10.679506795067965,54.88269547870735],[10.68310683106833,54.887761210517],[10.693906939069393,54.88269547870735],[10.697506975069757,54.88100690143747],[10.722707227072277,54.886072633247124],[10.722707227072277,54.89620409686643],[10.719107191071913,54.9080241377556],[10.70830708307085,54.90295840594595],[10.701107011070121,54.90126982867608],[10.690306903069029,54.90295840594595],[10.68310683106833,54.9080241377556],[10.697506975069757,54.93166421953396],[10.719107191071913,54.948549992232785],[10.773107731077317,54.98738726944009],[10.798307983079837,54.99583015578949],[10.855908559085606,55.0431103193462]]],[[[-159.9009990099901,55.139359223729514],[-159.88659886598867,55.149490687348816],[-159.87579875798758,55.17313076912717],[-159.8577985779858,55.190016541826],[-159.82539825398254,55.1815736554766],[-159.83259832598327,55.171442191857295],[-159.83979839798397,55.144424955539165],[-159.8469984699847,55.13260491464999],[-159.8469984699847,55.13429349191989],[-159.87579875798758,55.12585060557046],[-159.87579875798758,55.12078487376081],[-159.87579875798758,55.11571914195116],[-159.87579875798758,55.108964832871635],[-159.87939879398795,55.10558767833186],[-159.89739897398974,55.10558767833186],[-159.90819908199083,55.114030564681286],[-159.9189991899919,55.12753918284034],[-159.93339933399335,55.13260491464999],[-159.94779947799478,55.12922776011024],[-159.96939969399693,55.10727625560176],[-159.9837998379984,55.09883336925233],[-159.9549995499955,55.081947596553505],[-159.94779947799478,55.07012755566433],[-159.95859958599587,55.06506182385468],[-160.01260012600125,55.07181613293423],[-160.03060030600307,55.07181613293423],[-160.0162001620016,55.0532417829655],[-160.0162001620016,55.0447988966161],[-160.0450004500045,55.02960170118715],[-160.08460084600847,54.99583015578949],[-160.13140131401315,54.96543576493161],[-160.15660156601567,54.94010710588336],[-160.1818018180182,54.918155601374906],[-160.19620196201961,54.90464698321583],[-160.2070020700207,54.87425259235795],[-160.22140221402213,54.87594116962782],[-160.2358023580236,54.887761210517],[-160.2430024300243,54.90295840594595],[-160.23940239402395,54.926598487724306],[-160.22860228602286,54.935041374073705],[-160.2142021420214,54.93841852861348],[-160.18900189001891,54.948549992232785],[-160.14580145801457,55.005961619408794],[-160.13140131401315,55.016093083028096],[-160.11340113401133,55.024535969377496],[-160.10260102601026,55.0346674329968],[-160.09180091800917,55.04986462842575],[-160.17460174601746,55.05830751477515],[-160.17460174601746,55.06506182385468],[-160.16020160201603,55.068438978394454],[-160.14940149401494,55.07181613293423],[-160.12060120601205,55.07181613293423],[-160.12420124201242,55.081947596553505],[-160.1350013500135,55.09207906017281],[-160.14580145801457,55.09714479198246],[-160.17460174601746,55.103899101061984],[-160.18900189001891,55.11234198741141],[-160.19620196201961,55.12078487376081],[-160.1818018180182,55.12585060557046],[-160.1530015300153,55.122473451030686],[-160.0990009900099,55.103899101061984],[-160.07380073800738,55.09883336925233],[-160.08460084600847,55.11571914195116],[-160.11340113401133,55.139359223729514],[-160.12780127801278,55.15455641915847],[-160.109801098011,55.16131072823799],[-160.09540095400953,55.15624499642834],[-160.0810008100081,55.14780211007894],[-160.070200702007,55.135982069189765],[-160.0630006300063,55.12922776011024],[-160.0630006300063,55.12416202830059],[-160.05940059400595,55.12078487376081],[-160.04140041400413,55.11909629649094],[-160.03060030600307,55.11571914195116],[-160.02340023400234,55.11065341014151],[-160.0162001620016,55.10558767833186],[-160.01260012600125,55.10727625560176],[-160.0090000900009,55.11234198741141],[-160.00540005400055,55.11909629649094],[-160.01980019800197,55.13429349191989],[-160.0558005580056,55.1815736554766],[-160.06660066600665,55.201836582715174],[-159.98019980199803,55.17819650093682],[-159.9549995499955,55.17650792366695],[-159.97659976599766,55.20859089179473],[-159.96579965799657,55.2102794690646],[-159.9549995499955,55.2102794690646],[-159.9441994419944,55.2102794690646],[-159.93339933399335,55.218722355414],[-159.929799297993,55.225476664493556],[-159.9369993699937,55.23560812811283],[-159.9441994419944,55.24405101446226],[-159.94779947799478,55.25249390081166],[-159.94059940599405,55.255871055351435],[-159.89739897398974,55.28457686893944],[-159.88659886598867,55.296396909828616],[-159.87579875798758,55.287954023479216],[-159.87579875798758,55.28457686893944],[-159.8649986499865,55.25080532354178],[-159.87579875798758,55.23898528265261],[-159.89739897398974,55.233919550842955],[-159.92259922599226,55.22209950995378],[-159.90459904599047,55.206902314524825],[-159.91539915399153,55.15624499642834],[-159.9009990099901,55.139359223729514]]],[[[15.150751507515082,55.13260491464999],[15.147151471514718,55.12753918284034],[15.143551435514354,55.12416202830059],[15.143551435514354,55.122473451030686],[15.136351363513654,55.11909629649094],[15.143551435514354,55.10558767833186],[15.147151471514718,55.095456214712584],[15.143551435514354,55.087013328363156],[15.13275132751329,55.07519328747398],[15.111151111511134,55.0549303602354],[15.10755107551077,55.0447988966161],[15.111151111511134,55.03635601026667],[15.111151111511134,55.02960170118715],[15.11475114751147,55.01778166029797],[15.096750967509678,55.00765019667867],[15.085950859508614,54.99920731032927],[15.071550715507158,54.99245300124974],[15.024750247502482,54.99920731032927],[14.98154981549817,55.00089588759914],[14.927549275492765,55.01440450575819],[14.859148591485933,55.038044587536575],[14.779947799478009,55.051553205695626],[14.700747007470085,55.08870190563306],[14.682746827468293,55.100521946522235],[14.69714697146972,55.122473451030686],[14.700747007470085,55.16468788277777],[14.704347043470449,55.225476664493556],[14.707947079470813,55.23560812811283],[14.718747187471877,55.247428169002006],[14.736747367473669,55.26600251897074],[14.743947439474397,55.28119971439966],[14.751147511475125,55.29808548709849],[14.761947619476189,55.30990552798767],[14.776347763477645,55.30315121890814],[14.815948159481593,55.27106825078039],[14.83034830348305,55.260936787161086],[14.851948519485205,55.247428169002006],[14.887948879488789,55.233919550842955],[14.927549275492765,55.21534520087425],[14.952749527495286,55.218722355414],[14.974349743497442,55.21534520087425],[14.98874988749887,55.19677085090555],[14.999549995499962,55.18832796455612],[15.01395013950139,55.18326223274647],[15.085950859508614,55.15455641915847],[15.13275132751329,55.14611353280907],[15.150751507515082,55.13260491464999]]],[[[-5.0706507065070525,55.509157645833824],[-5.0922509225092085,55.500714759484424],[-5.0922509225092085,55.48720614132537],[-5.081450814508145,55.47200894589642],[-5.077850778507781,55.45512317319759],[-5.0922509225092085,55.446680286848164],[-5.117451174511729,55.43992597776864],[-5.164251642516433,55.43486024595899],[-5.218252182521809,55.438237400498764],[-5.261452614526149,55.446680286848164],[-5.304653046530461,55.46187748227712],[-5.344253442534409,55.48214040951572],[-5.344253442534409,55.48889471859525],[-5.347853478534773,55.49564902767477],[-5.3550535505355015,55.5226662639929],[-5.3586535865358655,55.5311091503423],[-5.3586535865358655,55.53786345942183],[-5.3550535505355015,55.53955203669173],[-5.351453514535137,55.54292919123148],[-5.351453514535137,55.54630634577126],[-5.344253442534409,55.54968350031103],[-5.369453694536929,55.56994642754961],[-5.38745387453875,55.590209354788215],[-5.3982539825398135,55.61384943656657],[-5.394653946539449,55.64593240469435],[-5.3802538025380215,55.6678839092028],[-5.3550535505355015,55.68983541371128],[-5.322653226532253,55.70503260914023],[-5.290252902529005,55.70840976367998],[-5.293852938529369,55.71178691821976],[-5.293852938529369,55.720229804569186],[-5.297452974529733,55.723606959108935],[-5.272252722527213,55.723606959108935],[-5.261452614526149,55.723606959108935],[-5.196651966519653,55.70503260914023],[-5.182251822518225,55.69490114552093],[-5.160651606516069,55.67632679555223],[-5.146251462514613,55.65437529104375],[-5.124651246512457,55.60540655021714],[-5.139051390513913,55.59189793205809],[-5.095850958509573,55.56656927300986],[-5.0922509225092085,55.54461776850138],[-5.103051030510301,55.541240613961605],[-5.117451174511729,55.541240613961605],[-5.124651246512457,55.536174882151954],[-5.121051210512093,55.52435484126278],[-5.110251102511029,55.519289109453126],[-5.0706507065070525,55.509157645833824]]],[[[-6.031860318603179,55.728672690918586],[-6.031860318603179,55.71685265002941],[-6.031860318603179,55.70672118641011],[-6.028260282602815,55.696589722790804],[-6.024660246602451,55.688146836441405],[-6.024660246602451,55.68139252736188],[-6.0354603546035435,55.6780153728221],[-6.046260462604607,55.674638218282354],[-6.053460534605335,55.6678839092028],[-6.0570605706056995,55.6594410228534],[-6.064260642606428,55.6678839092028],[-6.0822608226082195,55.652686713773875],[-6.1038610386103755,55.6408666728847],[-6.13266132661326,55.63242378653527],[-6.161461614616144,55.62735805472562],[-6.201062010620092,55.630735209265396],[-6.215462154621548,55.62735805472562],[-6.222662226622248,55.60540655021714],[-6.226262262622612,55.60202939567739],[-6.237062370623704,55.595275086597866],[-6.262262622626224,55.58345504570869],[-6.287462874628744,55.57838931389904],[-6.312663126631264,55.58345504570869],[-6.323463234632328,55.60540655021714],[-6.319863198631992,55.62904663199552],[-6.298262982629808,55.64255525015457],[-6.244262442624432,55.6594410228534],[-6.265862658626588,55.69490114552093],[-6.276662766627652,55.70334403187036],[-6.316263162631628,55.715164072759535],[-6.323463234632328,55.715164072759535],[-6.319863198631992,55.73373842272824],[-6.294662946629472,55.75231277269694],[-6.251462514625132,55.777641431745195],[-6.273062730627288,55.782707163554846],[-6.301863018630172,55.786084318094595],[-6.327063270632692,55.782707163554846],[-6.348663486634848,55.77426427720542],[-6.373863738637368,55.73880415453789],[-6.3882638826388245,55.72191838183906],[-6.417064170641709,55.710098340949884],[-6.449464494644928,55.68308110463175],[-6.463864638646385,55.674638218282354],[-6.492664926649269,55.67126106374258],[-6.503465034650333,55.68139252736188],[-6.503465034650333,55.69827830006071],[-6.489064890648905,55.715164072759535],[-6.496264962649633,55.71685265002941],[-6.499864998649969,55.72191838183906],[-6.503465034650333,55.723606959108935],[-6.492664926649269,55.73880415453789],[-6.449464494644928,55.777641431745195],[-6.481864818648177,55.791150049904246],[-6.467464674646749,55.7962157817139],[-6.460264602646021,55.80297009079342],[-6.456664566645657,55.813101554412725],[-6.456664566645657,55.82829874984168],[-6.4530645306452925,55.840118790730855],[-6.445864458644593,55.848561677080255],[-6.4098640986409805,55.86375887250921],[-6.355863558635576,55.87726749066826],[-6.341463414634148,55.88571037701769],[-6.330663306633056,55.89077610882734],[-6.319863198631992,55.88739895428756],[-6.327063270632692,55.88064464520804],[-6.337863378633784,55.85193883162003],[-6.337863378633784,55.84518452254051],[-6.330663306633056,55.82829874984168],[-6.323463234632328,55.81985586349225],[-6.312663126631264,55.818167286222376],[-6.312663126631264,55.8249215953019],[-6.319863198631992,55.84518452254051],[-6.298262982629808,55.86713602704896],[-6.265862658626588,55.88571037701769],[-6.229862298622976,55.897530417906864],[-6.204662046620456,55.91610476787557],[-6.190261902619028,55.92117049968522],[-6.175861758617572,55.92285907695509],[-6.161461614616144,55.92792480876474],[-6.150661506615052,55.93467911784427],[-6.139861398613988,55.941433426923794],[-6.129061290612896,55.93974484965392],[-6.1254612546125315,55.93467911784427],[-6.1218612186121675,55.92961338603462],[-6.114661146611468,55.88739895428756],[-6.1038610386103755,55.83167590438143],[-6.1002610026100115,55.80128151352355],[-6.093060930609312,55.791150049904246],[-6.0786607866078555,55.781018586284944],[-6.064260642606428,55.772575699935544],[-6.053460534605335,55.76919854539577],[-6.049860498604971,55.76582139085602],[-6.053460534605335,55.75737850450659],[-6.0570605706056995,55.74893561815719],[-6.0570605706056995,55.74218130907764],[-6.053460534605335,55.737115577268014],[-6.046260462604607,55.73373842272824],[-6.031860318603179,55.728672690918586]]],[[[10.560705607056065,55.86544744977908],[10.571505715057157,55.878956067938134],[10.582305823058249,55.89415326336709],[10.578705787057885,55.911039036065915],[10.567905679056793,55.92792480876474],[10.549905499055,55.93636769511417],[10.528305283052845,55.941433426923794],[10.513905139051388,55.9515648905431],[10.517505175051753,55.97689354959135],[10.528305283052845,55.98871359048053],[10.542705427054273,55.99715647682993],[10.557105571055729,55.995467899560055],[10.564305643056429,55.953253467813],[10.578705787057885,55.93636769511417],[10.603906039060405,55.924547654224966],[10.629106291062925,55.92117049968522],[10.618306183061833,55.911039036065915],[10.614706147061469,55.90090757244661],[10.614706147061469,55.889087531557436],[10.621906219062197,55.88064464520804],[10.639906399063989,55.86544744977908],[10.650706507065081,55.870513181588734],[10.65790657906581,55.88064464520804],[10.665106651066509,55.88739895428756],[10.668706687066873,55.88064464520804],[10.654306543065445,55.86544744977908],[10.629106291062925,55.84518452254051],[10.621906219062197,55.82829874984168],[10.625506255062561,55.79452720444402],[10.614706147061469,55.777641431745195],[10.582305823058249,55.759067081776465],[10.546305463054637,55.76582139085602],[10.521105211052117,55.78777289536447],[10.510305103051024,55.8249215953019],[10.517505175051753,55.84518452254051],[10.528305283052845,55.853627408889906],[10.542705427054273,55.85869314069956],[10.560705607056065,55.86544744977908]]],[[[-5.797857978579771,56.11197973118195],[-5.74745747457473,56.142374122039854],[-5.715057150571511,56.152505585659156],[-5.693456934569326,56.147439853849505],[-5.689856898568991,56.1373083902302],[-5.6862568625686265,56.12379977207115],[-5.689856898568991,56.11197973118195],[-5.704257042570418,56.10353684483255],[-5.718657186571846,56.08833964940359],[-5.740257402574031,56.07651960851442],[-5.779857798577979,56.02079655860828],[-5.866258662586631,55.92623623149487],[-5.887858878588787,55.88739895428756],[-5.895058950589487,55.889087531557436],[-5.920259202592007,55.870513181588734],[-5.938259382593827,55.86544744977908],[-5.945459454594527,55.85869314069956],[-5.956259562595619,55.81985586349225],[-5.963459634596347,55.8046586680633],[-5.988659886598867,55.79452720444402],[-6.028260282602815,55.7962157817139],[-6.0606606066060635,55.80972439987295],[-6.0786607866078555,55.835053058921204],[-6.085860858608584,55.88233322247791],[-6.085860858608584,55.90090757244661],[-6.075060750607491,55.91610476787557],[-6.0606606066060635,55.92285907695509],[-6.042660426604272,55.92792480876474],[-6.028260282602815,55.938056272384046],[-5.995859958599567,55.9515648905431],[-5.920259202592007,55.960007776892525],[-5.887858878588787,55.97689354959135],[-5.909459094590943,55.97689354959135],[-5.945459454594527,55.97013924051183],[-5.981459814598139,55.97013924051183],[-5.995859958599567,55.98533643594075],[-5.985059850598503,56.008976517719105],[-5.956259562595619,56.03430517676736],[-5.923859238592371,56.05625668127584],[-5.902259022590215,56.06469956762524],[-5.873458734587331,56.06976529943489],[-5.797857978579771,56.11197973118195]]],[[[11.14391143911439,57.332821097307146],[11.16911169111691,57.332821097307146],[11.179911799118003,57.33113252003727],[11.190711907119066,57.32606678822762],[11.197911979119795,57.31255817006857],[11.197911979119795,57.30242670644927],[11.190711907119066,57.29398382009984],[11.165511655116546,57.297360974639616],[11.14391143911439,57.30073812917939],[11.06831068310683,57.29060666556009],[11.082710827108286,57.283852356480566],[11.09351093510935,57.26865516105161],[11.089910899108986,57.25345796562266],[11.06831068310683,57.23826077019373],[11.053910539105402,57.22644072930453],[11.046710467104674,57.21293211114548],[11.028710287102882,57.2011120702563],[10.996309963099634,57.197734915716524],[10.978309783097842,57.20617780206595],[10.953109531095322,57.23319503838408],[10.91710917109171,57.23657219292383],[10.888308883088825,57.24501507927326],[10.870308703087034,57.25514654289256],[10.855908559085606,57.265278006511835],[10.855908559085606,57.270343738321486],[10.888308883088825,57.27540947013114],[10.920709207092074,57.292295242829965],[10.945909459094594,57.30411528371914],[10.98550985509857,57.305803860989016],[11.01071010710109,57.30918101552879],[11.028710287102882,57.32100105641797],[11.100711007110078,57.32100105641797],[11.14391143911439,57.332821097307146]]],[[[-7.245072450724507,57.32606678822762],[-7.230672306723051,57.319312479148095],[-7.223472234722351,57.31086959279867],[-7.212672126721259,57.30411528371914],[-7.194671946719467,57.305803860989016],[-7.201872018720195,57.29060666556009],[-7.209072090720895,57.28554093375044],[-7.219872198721987,57.28216377921066],[-7.234272342723415,57.27372089286126],[-7.237872378723779,57.265278006511835],[-7.248672486724871,57.24501507927326],[-7.255872558725571,57.23657219292383],[-7.277472774727755,57.23150646111418],[-7.353073530735287,57.243326502003356],[-7.353073530735287,57.23657219292383],[-7.288272882728819,57.22644072930453],[-7.270272702727027,57.216309265685254],[-7.263072630726299,57.2011120702563],[-7.259472594725935,57.17916056574782],[-7.259472594725935,57.16058621577912],[-7.270272702727027,57.14876617488994],[-7.288272882728819,57.153831906699594],[-7.306273062730611,57.15552048396947],[-7.345873458734587,57.15552048396947],[-7.345873458734587,57.14876617488994],[-7.327873278732795,57.145389020350166],[-7.291872918729183,57.14876617488994],[-7.277472774727755,57.14876617488994],[-7.259472594725935,57.140323288540515],[-7.248672486724871,57.13019182492124],[-7.234272342723415,57.12174893857181],[-7.216272162721623,57.12006036130194],[-7.216272162721623,57.11330605222241],[-7.237872378723779,57.09979743406333],[-7.320673206732067,57.109928897682636],[-7.353073530735287,57.09979743406333],[-7.381873818738171,57.118371784032036],[-7.389073890738899,57.12850324765134],[-7.4178741787417835,57.180849143017696],[-7.4214742147421475,57.197734915716524],[-7.414274142741419,57.2095549566057],[-7.414274142741419,57.216309265685254],[-7.432274322743211,57.229817883844305],[-7.4430744307443035,57.234883615653956],[-7.453874538745367,57.23657219292383],[-7.4430744307443035,57.24501507927326],[-7.435874358743575,57.251769388352784],[-7.4214742147421475,57.270343738321486],[-7.4178741787417835,57.28216377921066],[-7.414274142741419,57.29060666556009],[-7.410674106741055,57.29567239736974],[-7.3962739627396274,57.297360974639616],[-7.389073890738899,57.31255817006857],[-7.3998739987399915,57.34295256092645],[-7.428674286742847,57.38685556994341],[-7.407074070740691,57.39529845629281],[-7.363873638736379,57.40711849718198],[-7.353073530735287,57.408807074451886],[-7.263072630726299,57.37334695178433],[-7.273872738727391,57.36996979724458],[-7.277472774727755,57.36996979724458],[-7.299072990729911,57.37334695178433],[-7.299072990729911,57.3665926427048],[-7.277472774727755,57.36490406543493],[-7.245072450724507,57.3480182927361],[-7.223472234722351,57.346329715466226],[-7.223472234722351,57.33957540638667],[-7.248672486724871,57.33113252003727],[-7.270272702727027,57.3378868291168],[-7.291872918729183,57.3480182927361],[-7.331473314733131,57.36152691089515],[-7.353073530735287,57.376724106324104],[-7.371073710737107,57.38685556994341],[-7.392673926739263,57.38010126086385],[-7.389073890738899,57.376724106324104],[-7.381873818738171,57.37334695178433],[-7.3746737467374714,57.368281219974676],[-7.3746737467374714,57.363215488165054],[-7.371073710737107,57.354772601815625],[-7.363873638736379,57.35308402454575],[-7.353073530735287,57.35308402454575],[-7.345873458734587,57.35308402454575],[-7.320673206732067,57.346329715466226],[-7.317073170731703,57.34464113819632],[-7.306273062730611,57.332821097307146],[-7.291872918729183,57.327755365497495],[-7.259472594725935,57.327755365497495],[-7.245072450724507,57.32606678822762]]],[[[-7.12987129871297,57.653650778584876],[-7.115471154711543,57.65196220131497],[-7.093870938709387,57.65196220131497],[-7.075870758707595,57.64689646950532],[-7.065070650706502,57.63338785134627],[-7.075870758707595,57.62832211953662],[-7.093870938709387,57.61143634683779],[-7.097470974709751,57.60805919229804],[-7.1118711187111785,57.60805919229804],[-7.122671226712271,57.61650207864744],[-7.12987129871297,57.62325638772697],[-7.137071370713699,57.626633542266745],[-7.147871478714791,57.630010696806494],[-7.169471694716947,57.6418307376957],[-7.216272162721623,57.6418307376957],[-7.216272162721623,57.63338785134627],[-7.205472054720531,57.63338785134627],[-7.198271982719831,57.6316992740764],[-7.194671946719467,57.626633542266745],[-7.201872018720195,57.621567810457094],[-7.201872018720195,57.613124924107666],[-7.173071730717311,57.61481350137757],[-7.165871658716583,57.60974776956792],[-7.162271622716219,57.59623915140884],[-7.1550715507154905,57.58779626505944],[-7.137071370713699,57.58779626505944],[-7.10467104671045,57.59286199686909],[-7.126271262712635,57.57091049236061],[-7.151471514715155,57.56246760601121],[-7.209072090720895,57.559090451471434],[-7.216272162721623,57.55740187420156],[-7.230672306723051,57.55233614239191],[-7.237872378723779,57.55233614239191],[-7.245072450724507,57.55571329693166],[-7.252272522725235,57.569221915090736],[-7.255872558725571,57.572599069630485],[-7.270272702727027,57.57091049236061],[-7.313473134731339,57.55233614239191],[-7.313473134731339,57.54389325604248],[-7.241472414724143,57.54389325604248],[-7.180271802718011,57.55402471966178],[-7.162271622716219,57.55233614239191],[-7.144271442714427,57.54895898785213],[-7.137071370713699,57.54558183331238],[-7.1334713347133345,57.53882752423283],[-7.137071370713699,57.532073215153304],[-7.158671586715855,57.51181028791473],[-7.198271982719831,57.5134988651846],[-7.219872198721987,57.510121710644825],[-7.237872378723779,57.5033674015653],[-7.252272522725235,57.510121710644825],[-7.288272882728819,57.50843313337495],[-7.306273062730611,57.51181028791473],[-7.313473134731339,57.515187442454476],[-7.317073170731703,57.51687601972438],[-7.331473314733131,57.528696060613555],[-7.335073350733495,57.533761792423206],[-7.338673386733859,57.54051610150273],[-7.345873458734587,57.54389325604248],[-7.338673386733859,57.54558183331238],[-7.317073170731703,57.55233614239191],[-7.349473494734951,57.55402471966178],[-7.410674106741055,57.57597622417026],[-7.4430744307443035,57.57935337871004],[-7.450274502745032,57.572599069630485],[-7.457474574745731,57.569221915090736],[-7.4646746467464595,57.56584476055096],[-7.471874718747188,57.567533337820834],[-7.4826748267482515,57.57091049236061],[-7.500675006750072,57.57428764690039],[-7.543875438754384,57.59286199686909],[-7.543875438754384,57.599616305948615],[-7.522275222752228,57.60805919229804],[-7.5078750787507715,57.62494496499687],[-7.493474934749344,57.64520789223545],[-7.475474754747552,57.662093664934275],[-7.453874538745367,57.65533935585475],[-7.385473854738535,57.662093664934275],[-7.385473854738535,57.65533935585475],[-7.3962739627396274,57.653650778584876],[-7.414274142741419,57.648585046775224],[-7.3962739627396274,57.635076428616145],[-7.367473674736743,57.65196220131497],[-7.335073350733495,57.675602283093326],[-7.313473134731339,57.689110901252405],[-7.313473134731339,57.68235659217288],[-7.317073170731703,57.6789794376331],[-7.324273242732431,57.67391370582345],[-7.331473314733131,57.662093664934275],[-7.277472774727755,57.6502736240451],[-7.255872558725571,57.648585046775224],[-7.255872558725571,57.65533935585475],[-7.263072630726299,57.65533935585475],[-7.277472774727755,57.662093664934275],[-7.255872558725571,57.667159396743926],[-7.209072090720895,57.68573374671263],[-7.180271802718011,57.689110901252405],[-7.169471694716947,57.6789794376331],[-7.165871658716583,57.6705365512837],[-7.173071730717311,57.662093664934275],[-7.187471874718739,57.65533935585475],[-7.173071730717311,57.6502736240451],[-7.144271442714427,57.6587165103945],[-7.12987129871297,57.653650778584876]]],[[[-3.2490324903249075,58.79175185848581],[-3.2202322023220233,58.793440435755684],[-3.159031590315891,58.80863763118464],[-3.130231302313007,58.806949053914735],[-3.155431554315527,58.78668612667616],[-3.205832058320567,58.77824324032673],[-3.2994329943299476,58.77993181759663],[-3.3030330303302833,58.78330897213638],[-3.3246332463324677,58.81032620845451],[-3.3282332823328034,58.81876909480391],[-3.3390333903338956,58.82383482661356],[-3.349833498334988,58.828900558423214],[-3.3570335703356875,58.833966290232866],[-3.3786337863378435,58.85422921747147],[-3.3786337863378435,58.85929494928112],[-3.375033750337508,58.86436068109077],[-3.375033750337508,58.86773783563052],[-3.3786337863378435,58.87449214471005],[-3.3858338583385716,58.87618072197995],[-3.396633966339664,58.869426412900395],[-3.4038340383403636,58.8711149901703],[-3.4110341103410917,58.87449214471005],[-3.421834218342184,58.87449214471005],[-3.4290342903428837,58.87449214471005],[-3.4326343263432477,58.88462360832935],[-3.41823418234182,58.904886535567954],[-3.414634146341456,58.9082636901077],[-3.3930339303393,58.92008373099688],[-3.349833498334988,58.92852661734631],[-3.3354333543335315,58.92852661734631],[-3.3210332103321036,58.923460885536656],[-3.2886328863288554,58.90657511283783],[-3.2670326703266994,58.90150938102818],[-3.2454324543245434,58.896443649218526],[-3.191431914319139,58.85422921747147],[-3.205832058320567,58.847474908391945],[-3.205832058320567,58.84072059931239],[-3.1950319503195033,58.83903202204252],[-3.187831878318775,58.83565486750274],[-3.1734317343173473,58.825523403883466],[-3.1734317343173473,58.820457672073815],[-3.191431914319139,58.81876909480391],[-3.2166321663216593,58.81370336299429],[-3.2382323823238153,58.80526047664486],[-3.2490324903249075,58.79175185848581]]],[[[-2.7270272702726857,58.97074104909336],[-2.712627126271258,58.967363894553614],[-2.7090270902708937,58.958921008204186],[-2.7054270542705297,58.94710096731501],[-2.7054270542705297,58.931903771886056],[-2.716227162271622,58.92514946280653],[-2.734227342273414,58.92008373099688],[-2.770227702277026,58.91501799918723],[-2.784627846278454,58.909952267377605],[-2.80622806228061,58.888000762869126],[-2.8242282422824303,58.88124645378957],[-2.838628386283858,58.882935031059475],[-2.9142291422914184,58.8998208037583],[-2.9250292502925106,58.904886535567954],[-2.9358293582935744,58.913329421917354],[-2.9718297182971867,58.953855276394535],[-2.9826298262982505,58.96060958547406],[-2.9934299342993427,58.958921008204186],[-3.0078300783007705,58.94878954458488],[-3.022230222302227,58.940346658235484],[-3.043830438304383,58.94372381277523],[-3.051030510305111,58.93865808096561],[-3.0618306183061748,58.93865808096561],[-3.072630726307267,58.94203523550536],[-3.0834308343083308,58.94372381277523],[-3.069030690306903,58.92852661734631],[-3.1014310143101227,58.93021519461618],[-3.112231122311215,58.926838040076404],[-3.119431194311943,58.91501799918723],[-3.141031410314099,58.92177230826678],[-3.202232022320203,58.91670657645713],[-3.227432274322723,58.92852661734631],[-3.2382323823238153,58.950478121854786],[-3.234632346323451,58.972429626363265],[-3.2238322383223874,58.99100397633197],[-3.205832058320567,59.00451259449102],[-3.205832058320567,59.011266903570544],[-3.213032130321295,59.0180212126501],[-3.2202322023220233,59.02477552172962],[-3.2238322383223874,59.03152983080915],[-3.227432274322723,59.038284139888674],[-3.2382323823238153,59.0349069853489],[-3.2454324543245434,59.029841253539274],[-3.2454324543245434,59.02477552172962],[-3.2418324183241793,59.0180212126501],[-3.2418324183241793,59.011266903570544],[-3.2490324903249075,59.01464405811032],[-3.2598325983259713,59.016332635380195],[-3.2670326703266994,59.01464405811032],[-3.2742327423274276,59.011266903570544],[-3.2670326703266994,59.007889749030795],[-3.2634326343263353,59.00113543995127],[-3.2634326343263353,58.99269255360184],[-3.2634326343263353,58.99100397633197],[-3.256232562325607,58.97749535817289],[-3.2670326703266994,58.96905247182349],[-3.2886328863288554,58.95723243093431],[-3.2886328863288554,58.950478121854786],[-3.3246332463324677,58.95723243093431],[-3.3534335343353234,58.98256108998254],[-3.3678336783367797,59.016332635380195],[-3.349833498334988,59.0467270262381],[-3.3426334263342596,59.05348133531763],[-3.349833498334988,59.09738434433456],[-3.3246332463324677,59.127778735192464],[-3.277832778327763,59.14297593062142],[-3.231032310323087,59.14804166243104],[-3.184231842318411,59.14635308516117],[-3.155431554315527,59.14297593062142],[-3.123031230312307,59.12440158065269],[-3.108631086310851,59.12440158065269],[-3.094230942309423,59.127778735192464],[-3.0834308343083308,59.127778735192464],[-3.072630726307267,59.12440158065269],[-3.0582305823058107,59.11258153976351],[-3.047430474304747,59.10751580795386],[-3.0618306183061748,59.10245007614421],[-3.069030690306903,59.100761498874334],[-3.051030510305111,59.09063003525503],[-2.9934299342993427,59.073744262556204],[-3.000630006300071,59.07205568528633],[-3.0042300423004065,59.070367108016455],[-3.0078300783007705,59.06698995347668],[-3.0042300423004065,59.06361279893693],[-3.000630006300071,59.06192422166703],[-2.9934299342993427,59.06023564439715],[-3.0546305463054466,59.0467270262381],[-3.0618306183061748,59.05010418077785],[-3.072630726307267,59.03321840807902],[-3.090630906309059,59.0180212126501],[-3.112231122311215,59.007889749030795],[-3.130231302313007,59.00451259449102],[-3.115831158311579,58.99775828541149],[-3.097830978309787,58.994381130871716],[-3.0582305823058107,58.99100397633197],[-3.043830438304383,58.99775828541149],[-3.0294302943029265,59.00957832630067],[-3.0114301143011346,59.0180212126501],[-2.9754297542975507,58.99944686268137],[-2.9610296102960945,59.00113543995127],[-2.9466294662946666,59.007889749030795],[-2.9322293222932103,59.011266903570544],[-2.9178291782917825,59.00620117176089],[-2.9070290702906902,58.99606970814162],[-2.8962289622896265,58.99100397633197],[-2.878228782287806,58.99775828541149],[-2.88182881828817,58.994381130871716],[-2.88182881828817,58.98256108998254],[-2.8854288542885342,58.97749535817289],[-2.8638286382863782,58.97411820363314],[-2.8494284942849504,58.980872512712665],[-2.83142831428313,58.98762682179219],[-2.813428134281338,58.99100397633197],[-2.791827918279182,58.99269255360184],[-2.78102781027809,58.99100397633197],[-2.77382773827739,58.98424966725244],[-2.78102781027809,58.97411820363314],[-2.8242282422824303,58.958921008204186],[-2.838628386283858,58.950478121854786],[-2.827828278282766,58.93696950369571],[-2.813428134281338,58.92852661734631],[-2.795427954279546,58.926838040076404],[-2.77382773827739,58.92852661734631],[-2.788227882278818,58.950478121854786],[-2.795427954279546,58.95723243093431],[-2.777427774277726,58.95723243093431],[-2.745027450274506,58.96905247182349],[-2.7270272702726857,58.97074104909336]]],[[[-2.83142831428313,59.19701040325765],[-2.817028170281702,59.191944671448],[-2.80622806228061,59.191944671448],[-2.7990279902799102,59.195321825987776],[-2.784627846278454,59.19701040325765],[-2.784627846278454,59.20038755779743],[-2.791827918279182,59.217273330496255],[-2.788227882278818,59.22402763957578],[-2.791827918279182,59.23753625773483],[-2.788227882278818,59.247667721354134],[-2.777427774277726,59.252733453163785],[-2.759427594275934,59.252733453163785],[-2.759427594275934,59.24429056681436],[-2.770227702277026,59.24429056681436],[-2.770227702277026,59.23753625773483],[-2.75582755827557,59.239224835004705],[-2.745027450274506,59.23753625773483],[-2.734227342273414,59.23415910319508],[-2.7270272702726857,59.22402763957578],[-2.734227342273414,59.21558475322635],[-2.75582755827557,59.198698980527524],[-2.759427594275934,59.19363324871787],[-2.759427594275934,59.176747476019045],[-2.759427594275934,59.16492743512987],[-2.7522275222752057,59.15648454878047],[-2.734227342273414,59.154795971510595],[-2.734227342273414,59.14804166243104],[-2.763027630276298,59.14297593062142],[-2.78102781027809,59.141287353351515],[-2.788227882278818,59.14466450789129],[-2.791827918279182,59.15817312605034],[-2.802628026280246,59.168304589669646],[-2.813428134281338,59.1733703214793],[-2.83142831428313,59.17505889874917],[-2.83142831428313,59.19701040325765]]],[[[-3.047430474304747,59.320276543959096],[-3.0582305823058107,59.323653698498845],[-3.065430654306539,59.32196512122897],[-3.072630726307267,59.32534227576875],[-3.0762307623076026,59.33378516211815],[-3.0546305463054466,59.33378516211815],[-3.025830258302591,59.33040800757837],[-3.0078300783007705,59.33378516211815],[-2.9790297902978864,59.355736666626626],[-2.9646296462964585,59.36080239843628],[-2.9466294662946666,59.35404808935675],[-2.9466294662946666,59.3489823575471],[-2.9502295022950307,59.3489823575471],[-2.9538295382953663,59.3472937802772],[-2.9646296462964585,59.34053947119767],[-2.9646296462964585,59.33547373938802],[-2.9610296102960945,59.32703085303862],[-2.9826298262982505,59.32534227576875],[-2.9862298622986145,59.32703085303862],[-2.9862298622986145,59.320276543959096],[-2.9106291062910543,59.30676792580002],[-2.8962289622896265,59.30339077126027],[-2.878228782287806,59.27637353494214],[-2.8710287102871064,59.27130780313249],[-2.860228602286014,59.26793064859271],[-2.8494284942849504,59.266242071322836],[-2.838628386283858,59.26455349405296],[-2.83142831428313,59.257799184973436],[-2.83142831428313,59.252733453163785],[-2.8494284942849504,59.252733453163785],[-2.8638286382863782,59.247667721354134],[-2.8854288542885342,59.230781948655306],[-2.8854288542885342,59.239224835004705],[-2.88182881828817,59.24597914408426],[-2.878228782287806,59.252733453163785],[-2.8710287102871064,59.257799184973436],[-2.9214292142921465,59.283127844021664],[-2.9466294662946666,59.29157073037109],[-2.9754297542975507,59.293259307640966],[-2.9754297542975507,59.28481642129154],[-2.9682296822968226,59.28143926675179],[-2.9610296102960945,59.27130780313249],[-2.9754297542975507,59.27806211221201],[-2.9826298262982505,59.26961922586261],[-2.9898298982989786,59.266242071322836],[-2.9970299702997067,59.26793064859271],[-3.0078300783007705,59.27130780313249],[-3.0150301503014987,59.274684957672264],[-3.0186301863018628,59.279750689481915],[-3.0330303303032906,59.301702193990366],[-3.0366303663036547,59.30676792580002],[-3.0402304023040188,59.31183365760967],[-3.047430474304747,59.320276543959096]]],[[[22.21042210422104,60.20509103337761],[22.22122221222213,60.223665383346344],[22.24642246422465,60.242239733315046],[22.27162271622717,60.25237119693435],[22.293222932229327,60.245616887854794],[22.29682296822969,60.22197680607644],[22.268022680226807,60.19664814702821],[22.232022320223223,60.18482810613904],[22.21042210422104,60.20509103337761]]],[[[22.106021060210622,60.313159978650106],[22.131221312213142,60.31484855592001],[22.250022500225015,60.31147140138023],[22.32202322023221,60.29627420595128],[22.340023400234003,60.286142742332004],[22.33642336423364,60.2743227014428],[22.332823328233303,60.269256969633176],[22.31122311223112,60.2658798150934],[22.30402304023042,60.26756839236327],[22.29682296822969,60.27094554690305],[22.289622896228963,60.272634124172924],[22.282422824228263,60.269256969633176],[22.2788227882279,60.2658798150934],[22.264422644226443,60.26081408328375],[22.26082260822608,60.25912550601387],[22.214022140221402,60.25237119693435],[22.199621996219975,60.25405977420422],[22.217622176221766,60.2658798150934],[22.20322203222034,60.2760112787127],[22.181621816218183,60.28107701052235],[22.156421564215663,60.28107701052235],[22.142021420214206,60.27938843325245],[22.181621816218183,60.27938843325245],[22.163621636216362,60.25912550601387],[22.138421384213842,60.26250266055362],[22.109621096210958,60.27094554690305],[22.088020880208802,60.269256969633176],[22.080820808208102,60.269256969633176],[22.07722077220774,60.28276558779223],[22.084420844208438,60.30133993776093],[22.106021060210622,60.313159978650106]]],[[[22.38682386823868,60.321602864999534],[22.368823688236887,60.31484855592001],[22.350823508235095,60.313159978650106],[22.31122311223112,60.321602864999534],[22.32922329223294,60.33680006042846],[22.350823508235095,60.348620101317664],[22.37242372423725,60.35368583312729],[22.39762397623977,60.35537441039719],[22.401224012240135,60.35368583312729],[22.401224012240135,60.348620101317664],[22.401224012240135,60.34355436950801],[22.401224012240135,60.34186579223811],[22.43002430024302,60.33342290588871],[22.444424444244447,60.33342290588871],[22.458824588245903,60.33342290588871],[22.469624696246967,60.331734328618836],[22.476824768247695,60.321602864999534],[22.45522455224554,60.308094246840454],[22.426424264242655,60.299651360491055],[22.394023940239407,60.29289705141153],[22.368823688236887,60.29289705141153],[22.376023760237615,60.299651360491055],[22.37962379623798,60.30640566957058],[22.38682386823868,60.321602864999534]]],[[[5.110251102511029,60.20002530156796],[5.103051030510301,60.19158241521856],[5.085050850508509,60.188205260678785],[5.067050670506717,60.19158241521856],[5.056250562505625,60.193270992488436],[5.052650526505261,60.20846818791739],[5.045450454504561,60.22535396061622],[5.034650346503469,60.237174001505394],[5.023850238502405,60.245616887854794],[5.016650166501677,60.22028822880657],[4.991449914499157,60.22535396061622],[4.966249662496637,60.24392831058492],[4.948249482494845,60.25912550601387],[4.937449374493752,60.2743227014428],[4.937449374493752,60.286142742332004],[4.9410494104941165,60.29120847414163],[4.991449914499157,60.29627420595128],[5.0058500585005845,60.29627420595128],[5.023850238502405,60.286142742332004],[5.038250382503833,60.313159978650106],[5.020250202502041,60.308094246840454],[5.0058500585005845,60.313159978650106],[4.995049950499521,60.321602864999534],[4.9770497704977,60.326668596809185],[4.969849698497001,60.33342290588871],[4.966249662496637,60.35875156493694],[4.959049590495908,60.36888302855624],[4.973449734497365,60.384080223985194],[4.969849698497001,60.392523110334594],[4.959049590495908,60.397588842144245],[4.955449554495544,60.40603172849367],[4.944649446494481,60.429671810272026],[4.948249482494845,60.43980327389133],[4.969849698497001,60.44318042843108],[4.9770497704977,60.4414918511612],[4.980649806498064,60.43642611935155],[5.00225002250022,60.39927741941412],[5.070650706507081,60.34693152404776],[5.092250922509237,60.31991428772963],[5.099450994509965,60.29796278322118],[5.081450814508145,60.286142742332004],[5.049050490504925,60.286142742332004],[5.059850598505989,60.2760112787127],[5.085050850508509,60.26081408328375],[5.099450994509965,60.250682619664445],[5.103051030510301,60.242239733315046],[5.106651066510665,60.228731115155966],[5.110251102511029,60.215222496996915],[5.110251102511029,60.20002530156796]]],[[[21.317613176131772,60.482017705638384],[21.29961299612998,60.487083437448035],[21.267212672126732,60.490460591987784],[21.24921249212494,60.49890347833721],[21.260012600126004,60.51916640557582],[21.252812528125276,60.53098644646499],[21.238412384123848,60.54111791008427],[21.227612276122755,60.559692260053],[21.24921249212494,60.559692260053],[21.278012780127796,60.54280648735417],[21.303213032130316,60.51916640557582],[21.30681306813068,60.509034941956514],[21.3248132481325,60.482017705638384],[21.317613176131772,60.482017705638384]]],[[[21.393213932139332,60.559692260053],[21.411214112141124,60.54280648735417],[21.461614616146164,60.53942933281439],[21.48321483214832,60.52592071465534],[21.47601476014762,60.52592071465534],[21.47601476014762,60.52423213738544],[21.472414724147256,60.52423213738544],[21.461614616146164,60.52592071465534],[21.4580145801458,60.51578925103604],[21.4580145801458,60.50734636468661],[21.4580145801458,60.49890347833721],[21.461614616146164,60.49214916925769],[21.447214472144736,60.49383774652756],[21.43281432814328,60.48877201471791],[21.429214292142916,60.48032912836851],[21.443614436144372,60.47188624201908],[21.418414184141852,60.47695197382873],[21.393213932139332,60.490460591987784],[21.371613716137176,60.509034941956514],[21.360813608136084,60.53267502373487],[21.346413464134656,60.522543560115565],[21.335613356133564,60.51916640557582],[21.328413284132836,60.52592071465534],[21.3248132481325,60.54280648735417],[21.335613356133564,60.558003682783095],[21.353613536135356,60.56138083732287],[21.393213932139332,60.559692260053]]],[[[21.29961299612998,60.5681351464024],[21.28161281612816,60.56644656913252],[21.27441274412746,60.57320087821205],[21.270812708127096,60.58164376456148],[21.263612636126368,60.588398073641],[21.245612456124576,60.59008665091088],[21.234812348123484,60.593463805450654],[21.22401224012242,60.60190669180005],[21.213212132121328,60.61710388722901],[21.220412204122056,60.62216961903866],[21.24201242012421,60.62892392811818],[21.24921249212494,60.63567823719771],[21.252812528125276,60.64412112354711],[21.260012600126004,60.647498278086886],[21.270812708127096,60.642432546277234],[21.270812708127096,60.633989659927835],[21.27441274412746,60.62723535084831],[21.28161281612816,60.620481041768755],[21.292412924129252,60.615415309959104],[21.28161281612816,60.60021811453018],[21.278012780127796,60.5867094963711],[21.28161281612816,60.57488945548192],[21.29961299612998,60.57488945548192],[21.29961299612998,60.5681351464024]]],[[[-0.9882098820988006,60.69815559618337],[-0.9990099900998928,60.68633555529419],[-0.9954099540995287,60.67620409167489],[-0.9810098100981008,60.655941164436314],[-0.9846098460984649,60.64580970081701],[-0.9918099180991646,60.63567823719771],[-1.0242102421024128,60.65425258716641],[-1.0422104221042048,60.66100689624594],[-1.0638106381063608,60.66269547351584],[-1.049410494104933,60.655941164436314],[-1.035010350103505,60.642432546277234],[-1.0134101341013206,60.615415309959104],[-1.027810278102777,60.61034957814948],[-1.0422104221042048,60.60866100087958],[-1.056610566105661,60.60866100087958],[-1.0674106741067249,60.615415309959104],[-1.0638106381063608,60.60359526906993],[-1.053010530105297,60.5968409599904],[-1.035010350103505,60.59515238272053],[-1.0206102061020488,60.593463805450654],[-1.0242102421024128,60.59008665091088],[-1.027810278102777,60.588398073641],[-1.009810098100985,60.5782666100217],[-1.009810098100985,60.56475799186265],[-1.0242102421024128,60.55631510551322],[-1.0422104221042048,60.552937950973444],[-1.027810278102777,60.536052178274616],[-1.0242102421024128,60.527609291925216],[-1.0206102061020488,60.51578925103604],[-1.0242102421024128,60.50228063287699],[-1.031410314103141,60.500592055607086],[-1.056610566105661,60.50565778741674],[-1.0818108181081811,60.50565778741674],[-1.092610926109245,60.50734636468661],[-1.096210962109609,60.51578925103604],[-1.099810998109973,60.51578925103604],[-1.1070110701107012,60.51072351922639],[-1.1070110701107012,60.50565778741674],[-1.096210962109609,60.49890347833721],[-1.096210962109609,60.49214916925769],[-1.1322113221132213,60.495526323797435],[-1.1538115381153773,60.509034941956514],[-1.1682116821168052,60.53098644646499],[-1.1790117901178974,60.62385819630853],[-1.1718117181171692,60.64580970081701],[-1.139411394113921,60.64918685535676],[-1.139411394113921,60.642432546277234],[-1.139411394113921,60.63061250538806],[-1.1286112861128572,60.61879246449888],[-1.114211142111401,60.612038155419356],[-1.1034110341103371,60.615415309959104],[-1.1070110701107012,60.620481041768755],[-1.121411214112129,60.64580970081701],[-1.1250112501124931,60.65931831897606],[-1.121411214112129,60.66607262805559],[-1.1106111061110653,60.68126982348454],[-1.114211142111401,60.68464697802432],[-1.117811178111765,60.68802413256407],[-1.121411214112129,60.696467018913495],[-1.117811178111765,60.70659848253277],[-1.114211142111401,60.7150413688822],[-1.1034110341103371,60.7251728325015],[-1.092610926109245,60.7353042961208],[-1.078210782107817,60.7353042961208],[-1.0674106741067249,60.718418523421974],[-1.056610566105661,60.73023856431115],[-1.0386103861038407,60.7336157188509],[-0.9918099180991646,60.731927141581025],[-0.9918099180991646,60.718418523421974],[-0.9954099540995287,60.71335279161232],[-1.0026100261002568,60.71166421434242],[-1.0026100261002568,60.70322132799302],[-0.9954099540995287,60.70322132799302],[-0.9918099180991646,60.69984417345324],[-0.9882098820988006,60.69815559618337]]],[[[-0.9054090540905406,60.68464697802432],[-0.9342093420934248,60.682958400754416],[-0.9486094860948526,60.68464697802432],[-0.9666096660966446,60.68971270983397],[-0.9630096300962805,60.69984417345324],[-0.9594095940959448,60.709975637072546],[-0.9630096300962805,60.718418523421974],[-0.9666096660966446,60.7251728325015],[-0.9486094860948526,60.718418523421974],[-0.9450094500944886,60.726861409771374],[-0.9450094500944886,60.740370027930425],[-0.9522095220952167,60.75219006881963],[-0.9342093420934248,60.75556722335938],[-0.9270092700926966,60.76907584151843],[-0.9270092700926966,60.78427303694738],[-0.9378093780937604,60.79271592329681],[-0.9378093780937604,60.799470232376336],[-0.9234092340923326,60.80453596418599],[-0.9054090540905406,60.81466742780526],[-0.8910089100890843,60.824798891424564],[-0.8910089100890843,60.834930355043866],[-0.8802088020880205,60.84506181866317],[-0.8694086940869283,60.84506181866317],[-0.8586085860858645,60.83830750958364],[-0.8550085500855005,60.824798891424564],[-0.8586085860858645,60.81297885053539],[-0.8694086940869283,60.80622454145586],[-0.8802088020880205,60.80115880964621],[-0.8910089100890843,60.79271592329681],[-0.8874088740887487,60.789338768757034],[-0.8766087660876565,60.79271592329681],[-0.8622086220862286,60.79778165510646],[-0.8514085140851364,60.802847386916085],[-0.8334083340833445,60.83999608685352],[-0.8226082260822523,60.84843897320292],[-0.8154081540815241,60.843373241393294],[-0.8082080820808244,60.84168466412339],[-0.7938079380793681,60.84168466412339],[-0.7830078300783043,60.83830750958364],[-0.7722077220772121,60.83324177777399],[-0.765007650076484,60.824798891424564],[-0.7614076140761483,60.81297885053539],[-0.768607686076848,60.81297885053539],[-0.7866078660786684,60.80622454145586],[-0.768607686076848,60.80115880964621],[-0.7614076140761483,60.799470232376336],[-0.7758077580775762,60.79102734602691],[-0.7974079740797322,60.78596161421726],[-0.8082080820808244,60.77920730513773],[-0.8010080100800963,60.767387264248555],[-0.8010080100800963,60.758944377899155],[-0.8226082260822523,60.758944377899155],[-0.8154081540815241,60.75725580062925],[-0.8082080820808244,60.75556722335938],[-0.8010080100800963,60.75219006881963],[-0.8010080100800963,60.745435759740076],[-0.8442084420844083,60.7234842552316],[-0.8514085140851364,60.718418523421974],[-0.8442084420844083,60.70659848253277],[-0.8298082980829804,60.69477844164359],[-0.8226082260822523,60.68464697802432],[-0.8370083700837085,60.67620409167489],[-0.8478084780847723,60.67620409167489],[-0.8550085500855005,60.677892668944764],[-0.8622086220862286,60.68126982348454],[-0.8694086940869283,60.68464697802432],[-0.8910089100890843,60.68464697802432],[-0.9054090540905406,60.68464697802432]]],[[[-6.654666546665453,61.395538008644934],[-6.676266762667609,61.39384943137503],[-6.701467014670129,61.40398089499433],[-6.7374673746737415,61.430998131312464],[-6.8274682746827295,61.471523985789645],[-6.87066870668707,61.501918376647524],[-6.867068670686706,61.52724703569578],[-6.892268922689226,61.542444231124705],[-6.924669246692474,61.56608431290309],[-6.94626946269463,61.591412971951314],[-6.949869498694994,61.60829874465014],[-6.95346953469533,61.61336447645979],[-6.964269642696422,61.62856167188875],[-6.942669426694266,61.62856167188875],[-6.942669426694266,61.631938826428495],[-6.94626946269463,61.6336274036984],[-6.949869498694994,61.63531598096827],[-6.913869138691382,61.64713602185745],[-6.89586895868959,61.64882459912732],[-6.881468814688134,61.6420702900478],[-6.899468994689954,61.631938826428495],[-6.906669066690654,61.62856167188875],[-6.899468994689954,61.623495940079096],[-6.888668886688862,61.62180736280919],[-6.87786877868777,61.62180736280919],[-6.867068670686706,61.62180736280919],[-6.913869138691382,61.60154443557062],[-6.913869138691382,61.59479012649109],[-6.8274682746827295,61.59985585830074],[-6.798667986679874,61.582970085601914],[-6.7374673746737415,61.57959293106214],[-6.7158671586715855,61.56777289017296],[-6.712267122671221,61.55426427201391],[-6.723067230672314,61.54582138566448],[-6.7410674106741055,61.54413280839461],[-6.755467554675533,61.55088711747413],[-6.766267662676626,61.55764142655366],[-6.7842678426784175,61.561018581093435],[-6.798667986679874,61.561018581093435],[-6.8058680586805735,61.55426427201391],[-6.787867878678782,61.55088711747413],[-6.773467734677354,61.542444231124705],[-6.766267662676626,61.534001344775305],[-6.755467554675533,61.52724703569578],[-6.748267482674834,61.525558458425905],[-6.726667266672649,61.528935612965654],[-6.7158671586715855,61.52724703569578],[-6.705067050670493,61.520492726616254],[-6.701467014670129,61.5154269948066],[-6.705067050670493,61.50867268572708],[-6.7158671586715855,61.5052955311873],[-6.7158671586715855,61.498541222107775],[-6.6726667266672735,61.48840975848847],[-6.676266762667609,61.479966872139045],[-6.687066870668701,61.47827829486917],[-6.6978669786697935,61.479966872139045],[-6.708667086670857,61.479966872139045],[-6.74466744667447,61.46983540851977],[-6.7626676266762615,61.46814683124987],[-6.7842678426784175,61.471523985789645],[-6.7842678426784175,61.46476967671012],[-6.773467734677354,61.463081099440245],[-6.7626676266762615,61.45970394490047],[-6.755467554675533,61.45294963582094],[-6.751867518675169,61.444506749471515],[-6.7374673746737415,61.45632679036069],[-6.7194671946719495,61.45970394490047],[-6.679866798667973,61.458015367630594],[-6.683466834668337,61.45463821309082],[-6.687066870668701,61.444506749471515],[-6.665466654666545,61.43944101766186],[-6.651066510665089,61.42593239950281],[-6.647466474664753,61.40735804953411],[-6.654666546665453,61.395538008644934]]],[[[-6.611466114661141,61.82105948065535],[-6.625866258662569,61.810928017036076],[-6.633066330663297,61.80417370795655],[-6.629466294662933,61.800796553416774],[-6.629466294662933,61.79573082160712],[-6.629466294662933,61.76702500801912],[-6.633066330663297,61.76364785347934],[-6.640266402664025,61.756893544399816],[-6.651066510665089,61.748450658050416],[-6.661866618666181,61.74676208078051],[-6.669066690666909,61.748450658050416],[-6.733867338673377,61.814305171575825],[-6.748267482674834,61.82105948065535],[-6.838268382683822,61.82950236700478],[-6.85266852668525,61.832879521544555],[-6.867068670686706,61.83963383062408],[-6.874268742687434,61.85145387151326],[-6.87786877868777,61.87002822148196],[-6.899468994689954,61.89366830326031],[-6.906669066690654,61.91055407595914],[-6.885068850688498,61.90717692141939],[-6.841868418684186,61.898734035069964],[-6.82026820268203,61.89704545780009],[-6.791467914679146,61.898734035069964],[-6.777067770677689,61.89704545780009],[-6.76986769867699,61.89197972599044],[-6.755467554675533,61.88015968510126],[-6.74466744667447,61.876782530561485],[-6.665466654666545,61.86665106694218],[-6.654666546665453,61.85820818059278],[-6.647466474664753,61.84469956243373],[-6.618666186661869,61.83119094427465],[-6.611466114661141,61.82105948065535]]],[[[-7.385473854738535,62.09460899837637],[-7.410674106741055,62.10642903926555],[-7.428674286742847,62.12838054377403],[-7.432274322743211,62.148643471012605],[-7.407074070740691,62.15033204828248],[-7.371073710737107,62.13344627558365],[-7.360273602736015,62.1300691210439],[-7.353073530735287,62.12838054377403],[-7.327873278732795,62.1300691210439],[-7.320673206732067,62.13175769831378],[-7.317073170731703,62.13682343012343],[-7.317073170731703,62.14188916193308],[-7.313473134731339,62.143577739202954],[-7.302673026730275,62.14526631647283],[-7.284672846728455,62.15539778009213],[-7.216272162721623,62.16384066644156],[-7.216272162721623,62.15708635736203],[-7.223472234722351,62.15708635736203],[-7.223472234722351,62.15033204828248],[-7.183871838718375,62.13682343012343],[-7.169471694716947,62.135134852853554],[-7.158671586715855,62.13175769831378],[-7.144271442714427,62.11656050288482],[-7.1334713347133345,62.1098061938053],[-7.108271082710814,62.10474046199565],[-7.083070830708294,62.10642903926555],[-7.057870578705774,62.10305188472577],[-7.039870398703982,62.08785468929682],[-7.050670506705075,62.07603464840764],[-7.061470614706138,62.06252603024859],[-7.072270722707231,62.05239456662929],[-7.093870938709387,62.04732883481964],[-7.1118711187111785,62.04901741208954],[-7.126271262712635,62.05239456662929],[-7.144271442714427,62.05408314389916],[-7.162271622716219,62.04732883481964],[-7.151471514715155,62.04395168027989],[-7.144271442714427,62.04226310300999],[-7.137071370713699,62.04057452574011],[-7.126271262712635,62.04057452574011],[-7.183871838718375,62.02706590758106],[-7.201872018720195,62.020311598501536],[-7.194671946719467,62.03044306212081],[-7.187471874718739,62.03382021666059],[-7.194671946719467,62.04732883481964],[-7.209072090720895,62.06083745297872],[-7.219872198721987,62.06590318478837],[-7.237872378723779,62.06083745297872],[-7.227072270722715,62.05746029843894],[-7.216272162721623,62.050705989359415],[-7.205472054720531,62.04226310300999],[-7.209072090720895,62.03382021666059],[-7.219872198721987,62.03213163939071],[-7.263072630726299,62.04732883481964],[-7.324273242732431,62.05408314389916],[-7.367473674736743,62.06759176205824],[-7.381873818738171,62.06759176205824],[-7.381873818738171,62.07434607113777],[-7.284672846728455,62.07434607113777],[-7.306273062730611,62.082788957487196],[-7.331473314733131,62.08954326656672],[-7.385473854738535,62.09460899837637]]],[[[21.422014220142216,63.24621869643636],[21.414814148141488,63.23271007827731],[21.414814148141488,63.22089003738813],[21.418414184141852,63.209069996498954],[21.429214292142916,63.19893853287965],[21.404014040140396,63.192184223800126],[21.378813788137876,63.19049564653022],[21.364413644136448,63.19387280107],[21.378813788137876,63.20569284195918],[21.364413644136448,63.20569284195918],[21.292412924129252,63.17867560564105],[21.292412924129252,63.17192129656152],[21.29961299612998,63.17023271929165],[21.317613176131772,63.165166987481996],[21.303213032130316,63.15672410113257],[21.285212852128524,63.15165836932292],[21.24201242012421,63.14996979205304],[21.23121231212312,63.15841267840247],[21.220412204122056,63.17023271929165],[21.2060120601206,63.1837413374507],[21.188011880118808,63.192184223800126],[21.177211772117715,63.18880706926035],[21.162811628116287,63.182052760180824],[21.14841148411486,63.182052760180824],[21.134011340113403,63.19893853287965],[21.15561155611556,63.19893853287965],[21.15561155611556,63.20569284195918],[21.14121141211413,63.21075857376883],[21.112411124111247,63.227644346467656],[21.101611016110155,63.236087232817056],[21.09801098010982,63.24621869643636],[21.080010800108,63.27661308729424],[21.080010800108,63.28843312818344],[21.119611196111975,63.271547355484614],[21.159211592115923,63.27323593275449],[21.1988119881199,63.279990241834014],[21.24201242012421,63.28167881910389],[21.24201242012421,63.27492451002436],[21.227612276122755,63.271547355484614],[21.21681216812169,63.263104469135186],[21.195211952119536,63.23946438735683],[21.1988119881199,63.231021501007405],[21.1988119881199,63.22933292373753],[21.195211952119536,63.22595576919778],[21.209612096120964,63.22089003738813],[21.263612636126368,63.21920146011823],[21.270812708127096,63.217512882848354],[21.278012780127796,63.2124471510387],[21.285212852128524,63.21075857376883],[21.296012960129616,63.21582430557848],[21.29961299612998,63.222578614658005],[21.296012960129616,63.22933292373753],[21.288812888128888,63.23439865554718],[21.292412924129252,63.23946438735683],[21.314013140131408,63.25128442824601],[21.35721357213572,63.26141589186531],[21.396813968139696,63.26141589186531],[21.422014220142216,63.24621869643636]]],[[[7.914679146791485,63.342467600819674],[7.932679326793277,63.34584475535945],[7.997479974799745,63.342467600819674],[7.965079650796525,63.35259906443898],[7.806678066780677,63.37117341440768],[7.785077850778521,63.382993455296855],[7.7922779227792205,63.40325638253546],[7.788677886778885,63.404944959805334],[7.777877778777793,63.41169926888486],[7.810278102781041,63.423519309774036],[7.839078390783925,63.42858504158369],[7.896678966789665,63.431962196123465],[7.925479254792549,63.437027927933116],[7.975879758797589,63.46573374152112],[8.004680046800473,63.472488050600646],[8.069480694806941,63.472488050600646],[8.10188101881019,63.46404516425122],[8.123481234812346,63.42520788704394],[8.170281702817022,63.40663353707521],[8.181081810818114,63.38974776437638],[8.15228152281523,63.3593533735185],[8.137881378813802,63.3509104871691],[8.12708127081271,63.347533332629325],[8.098280982809825,63.342467600819674],[8.094680946809461,63.3390904462799],[8.091080910809126,63.3306475599305],[8.087480874808762,63.32895898266062],[8.037080370803722,63.32895898266062],[8.022680226802265,63.325581828120846],[7.993879938799381,63.315450364501544],[7.975879758797589,63.315450364501544],[7.972279722797225,63.325581828120846],[7.932679326793277,63.334024714470274],[7.914679146791485,63.342467600819674]]],[[[8.361083610836118,63.6717401684468],[8.335883358833598,63.668363013907026],[8.314283142831442,63.668363013907026],[8.292682926829286,63.67342874571668],[8.271082710827102,63.685248786605854],[8.332283322833234,63.70213455930468],[8.519485194851967,63.71902033200351],[8.742687426874284,63.774743381909644],[8.728287282872827,63.779809113719296],[8.710287102871035,63.779809113719296],[8.68868688686888,63.774743381909644],[8.674286742867423,63.76798907283012],[8.681486814868151,63.779809113719296],[8.735487354873555,63.8085149273073],[8.753487534875347,63.801760618227775],[8.767887678876804,63.80513777276752],[8.785887858878596,63.81189208184708],[8.803888038880388,63.815269236386825],[8.803888038880388,63.81189208184708],[8.800288002880023,63.8085149273073],[8.796687966879688,63.80513777276752],[8.793087930879324,63.801760618227775],[8.793087930879324,63.79500630914825],[8.803888038880388,63.79162915460847],[8.811088110881116,63.78149769098917],[8.811088110881116,63.76123476375059],[8.818288182881844,63.74941472286142],[8.821888218882208,63.74266041378186],[8.825488254882544,63.73421752743246],[8.825488254882544,63.71902033200351],[8.793087930879324,63.69875740476493],[8.742687426874284,63.68862594114563],[8.544685446854487,63.676805900256454],[8.476284762847627,63.66498585936728],[8.45468454684547,63.6717401684468],[8.526685266852667,63.69200309568541],[8.469084690846927,63.685248786605854],[8.45468454684547,63.676805900256454],[8.440284402844043,63.685248786605854],[8.415084150841523,63.68356020933598],[8.361083610836118,63.6717401684468]]],[[[11.089910899108986,64.9010244209214],[11.082710827108286,64.89764726638165],[11.007110071100726,64.89933584365153],[10.938709387093866,64.87400718460327],[10.906309063090646,64.85712141190444],[10.877508775087762,64.85205568009482],[10.848708487084878,64.84867852555504],[10.827108271082722,64.85036710282492],[10.827108271082722,64.85712141190444],[11.089910899108986,64.94999316174801],[11.100711007110078,64.95337031628776],[11.115111151111506,64.95168173901789],[11.140311403114026,64.94155027539858],[11.165511655116546,64.93648454358893],[11.179911799118003,64.93141881177928],[11.19431194311943,64.92466450269976],[11.197911979119795,64.91453303908048],[11.205112051120523,64.90946730727083],[11.266312663126627,64.89933584365153],[11.266312663126627,64.89427011184188],[11.266312663126627,64.892581534572],[11.262712627126291,64.892581534572],[11.259112591125927,64.8908929573021],[11.215912159121586,64.86556429825387],[11.176311763117639,64.84867852555504],[11.133111331113327,64.83854706193574],[11.079110791107922,64.835169907396],[11.08631086310865,64.84530137101527],[11.08631086310865,64.85036710282492],[11.079110791107922,64.8537442573647],[11.06831068310683,64.85543283463457],[11.057510575105766,64.8537442573647],[11.046710467104674,64.85036710282492],[11.046710467104674,64.85712141190444],[11.06111061110613,64.8621871437141],[11.079110791107922,64.87569576187317],[11.09351093510935,64.88920438003223],[11.089910899108986,64.9010244209214]]],[[[10.84150841508415,64.87738433914305],[10.81630816308163,64.86894145279362],[10.737107371073705,64.85036710282492],[10.74070740707407,64.86049856644422],[10.744307443074433,64.863875720984],[10.711907119071185,64.863875720984],[10.729907299073005,64.8723186073334],[10.74070740707407,64.88751580276235],[10.751507515075161,64.90440157546118],[10.76590765907659,64.91791019362023],[10.78390783907841,64.92466450269976],[10.852308523085242,64.92466450269976],[10.870308703087034,64.92804165723953],[10.924309243092438,64.94155027539858],[10.963909639096386,64.95674747082754],[11.032310323103246,64.97363324352636],[11.032310323103246,64.98883043895532],[11.06111061110613,64.99051901622519],[11.09351093510935,64.98376470714567],[11.115111151111506,64.97363324352636],[11.11151111511117,64.97025608898659],[11.107911079110806,64.96856751171671],[11.104311043110442,64.96687893444684],[10.963909639096386,64.91791019362023],[10.899108991089918,64.90777873000093],[10.84150841508415,64.87738433914305]]],[[[24.99324993249934,65.05468495248073],[25.032850328503287,65.0580621070205],[25.06165061650617,65.04286491159155],[25.029250292502923,65.03442202524215],[24.96084960849609,65.03442202524215],[24.878048780487802,65.04455348886142],[24.820448204482062,65.04286491159155],[24.802448024480242,65.02429056162285],[24.723247232472346,65.00402763438424],[24.7520475204752,64.97532182079624],[24.813248132481334,64.97869897533602],[24.827648276482762,64.97363324352636],[24.816848168481698,64.96856751171671],[24.806048060480606,64.96687893444684],[24.791647916479178,64.96687893444684],[24.780847808478086,64.96687893444684],[24.770047700477022,64.96350177990706],[24.762847628476294,64.95674747082754],[24.7520475204752,64.95337031628776],[24.73404734047341,64.95168173901789],[24.712447124471254,64.95168173901789],[24.70164701647016,64.95843604809741],[24.70884708847089,64.97363324352636],[24.705247052470526,64.97701039806611],[24.698046980469826,64.98714186168542],[24.68364683646837,64.99727332530472],[24.65844658446585,64.97194466625649],[24.63324633246333,64.96856751171671],[24.597245972459746,64.99220759349507],[24.579245792457925,65.0090933661939],[24.56844568445686,65.02260198435297],[24.561245612456133,65.0377991797819],[24.586445864458653,65.04961922067108],[24.654846548465486,65.08001361152898],[24.741247412474138,65.08339076606873],[24.83484834848349,65.09521080695791],[24.881648816488166,65.08676792060851],[24.896048960489622,65.07325930244943],[24.874448744487438,65.0665049933699],[24.881648816488166,65.05975068429038],[24.906849068490686,65.05975068429038],[24.93564935649357,65.05975068429038],[24.99324993249934,65.05468495248073]]],[[[-37.21897218972188,65.58320963795401],[-37.17577175771757,65.59165252430344],[-37.1109711097111,65.58996394703354],[-37.04977049770497,65.57814390614436],[-37.02457024570245,65.55281524709613],[-37.03177031770318,65.53761805166718],[-37.05337053370533,65.54099520620696],[-37.07497074970749,65.54943809255636],[-37.09297092970928,65.55450382436601],[-37.121771217712165,65.54943809255636],[-37.16857168571684,65.53255231985753],[-37.197371973719726,65.5359294743973],[-37.190171901719026,65.5359294743973],[-37.204572045720454,65.54099520620696],[-37.215372153721546,65.54943809255636],[-37.215372153721546,65.55956955617566],[-37.204572045720454,65.56970101979496],[-37.20817208172082,65.57138959706484],[-37.21177211772118,65.57814390614436],[-37.21897218972188,65.58320963795401]]],[[[-36.93456934569346,65.67945854233733],[-36.95616956169562,65.66932707871803],[-36.94896948969489,65.6625727696385],[-36.90936909369094,65.65075272874932],[-36.92376923769237,65.63724411059027],[-36.95256952569525,65.62880122424085],[-37.01017010170102,65.6237354924312],[-37.00297002970029,65.61022687427214],[-36.99936999369993,65.59671825611306],[-37.00297002970029,65.58827536976366],[-37.02457024570245,65.58996394703354],[-37.046170461704605,65.59840683338297],[-37.09297092970928,65.60853829700227],[-37.114571145711466,65.61866976062154],[-37.07857078570785,65.63217837878062],[-37.06777067770676,65.63893268786015],[-37.08217082170822,65.64568699693967],[-37.10737107371074,65.64906415147945],[-37.15057150571505,65.65075272874932],[-37.15777157771578,65.6541298832891],[-37.17577175771757,65.66932707871803],[-37.190171901719026,65.6727042332578],[-37.20097200972009,65.6727042332578],[-37.20817208172082,65.67608138779755],[-37.21897218972188,65.68621285141685],[-37.10737107371074,65.71660724227476],[-37.089370893708946,65.73011586043381],[-37.07497074970749,65.73349301497359],[-37.06057060570606,65.73011586043381],[-37.01017010170102,65.70816435592533],[-36.9921699216992,65.70647577865546],[-36.995769957699565,65.69634431503616],[-36.99936999369993,65.69296716049638],[-36.93456934569346,65.67945854233733]]],[[[12.699126991269907,65.99691106907528],[12.742327423274247,66.01379684177411],[12.799927999279987,66.02561688266329],[12.86112861128612,66.02730545993316],[12.904329043290431,66.01548541904398],[12.889928899289004,66.00197680088493],[12.857528575285755,66.00028822361503],[12.735127351273519,65.9749595645668],[12.673926739267387,65.95300806005832],[12.623526235262347,65.94287659643902],[12.49392493924941,65.88039923745336],[12.465124651246526,65.87364492837384],[12.429124291242914,65.87026777383409],[12.44352443524437,65.87871066018349],[12.457924579245798,65.88208781472326],[12.472324723247226,65.88715354653291],[12.479524795247954,65.89897358742209],[12.36792367923681,65.89221927834254],[12.382323823238238,65.90572789650162],[12.429124291242914,65.93274513281975],[12.44352443524437,65.94456517370892],[12.461524615246162,65.96989383275715],[12.472324723247226,65.98171387364633],[12.490324903249046,65.99015675999576],[12.60192601926019,66.02223972812351],[12.62712627126271,66.02223972812351],[12.648726487264867,66.01548541904398],[12.61992619926201,65.9935339145355],[12.609126091260919,65.98002529637645],[12.616326163261647,65.9749595645668],[12.634326343263439,65.97664814183668],[12.659526595265959,65.98171387364633],[12.681126811268115,65.98846818272585],[12.699126991269907,65.99691106907528]]],[[[12.573125731257306,66.07627420075977],[12.533525335253358,66.06107700533082],[12.295922959229586,66.01548541904398],[12.335523355233562,66.04250265536211],[12.34992349923499,66.04756838717176],[12.364323643236446,66.05094554171151],[12.378723787237874,66.05601127352116],[12.39312393123933,66.06614273714047],[12.421924219242186,66.07965135529952],[12.429124291242914,66.08640566437907],[12.41832418324185,66.08978281891882],[12.396723967239666,66.08809424164895],[12.360723607236082,66.07627420075977],[12.34272342723429,66.07627420075977],[12.34272342723429,66.0830285098393],[12.357123571235718,66.08809424164895],[12.385923859238602,66.101602859808],[12.40032400324003,66.1032914370779],[12.457924579245798,66.10666859161765],[12.472324723247226,66.1117343234273],[12.47592475924759,66.11848863250682],[12.479524795247954,66.12693151885625],[12.486724867248682,66.13537440520565],[12.522725227252266,66.1404401370153],[12.573125731257306,66.159014486984],[12.540725407254087,66.17083452787318],[12.504725047250474,66.17590025968283],[12.465124651246526,66.17421168241296],[12.429124291242914,66.16576879606356],[12.429124291242914,66.17252310514309],[12.522725227252266,66.19785176419131],[12.533525335253358,66.19954034146119],[12.54432544325445,66.20122891873109],[12.55152551525515,66.21980326869979],[12.562325623256243,66.22149184596967],[12.580325803258035,66.21304895962027],[12.59472594725949,66.20460607327084],[12.60192601926019,66.19447460965156],[12.605526055260555,66.18096599149249],[12.612726127261283,66.16914595060331],[12.612726127261283,66.15732590971413],[12.591125911259127,66.14719444609483],[12.547925479254786,66.13875155974543],[12.547925479254786,66.1319972506659],[12.623526235262347,66.1319972506659],[12.605526055260555,66.12355436431648],[12.587525875258763,66.11680005523695],[12.587525875258763,66.1117343234273],[12.62712627126271,66.11511147796708],[12.645126451264531,66.11342290069717],[12.655926559265595,66.1032914370779],[12.648726487264867,66.09484855072847],[12.641526415264167,66.08978281891882],[12.60192601926019,66.08809424164895],[12.591125911259127,66.08471708710917],[12.573125731257306,66.07627420075977]]],[[[13.055530555305552,68.09750119280935],[13.055530555305552,68.10425550188887],[13.080730807308072,68.10425550188887],[13.156331563315632,68.08568115192017],[13.156331563315632,68.07723826557077],[13.141931419314204,68.07723826557077],[13.134731347313476,68.06879537922134],[13.120331203312048,68.06204107014182],[13.109531095310956,68.05866391560204],[13.095130951309528,68.05697533833217],[13.095130951309528,68.05022102925264],[13.13833138331384,68.05022102925264],[13.120331203312048,68.03840098836346],[13.102331023310228,68.03671241109359],[13.080730807308072,68.03671241109359],[13.06273062730628,68.03333525655381],[13.051930519305188,68.02489237020441],[13.051930519305188,68.01644948385498],[13.059130591305916,68.01138375204533],[13.073530735307372,68.00969517477546],[13.0879308793088,68.01476090658511],[13.098730987309892,68.02489237020441],[13.109531095310956,68.02826952474416],[13.116731167311684,68.00462944296581],[13.127531275312748,67.98774367026698],[13.131131311313112,67.96410358848863],[13.131131311313112,67.95228354759945],[13.123931239312412,67.94384066125002],[13.105931059310592,67.94046350671027],[13.055530555305552,67.93877492944037],[13.041130411304124,67.94046350671027],[12.994329943299448,67.96410358848863],[12.976329763297628,67.96916932029828],[12.98712987129872,67.9472178157898],[12.969129691296928,67.94890639305967],[12.9619296192962,67.9472178157898],[12.9619296192962,67.94046350671027],[12.972729727297292,67.93370919763072],[12.990729907299084,67.93033204309097],[13.023130231302332,67.9286434658211],[13.041130411304124,67.92357773401145],[13.048330483304852,67.91513484766202],[13.041130411304124,67.90500338404271],[13.033930339303396,67.89656049769332],[13.019530195301968,67.89149476588366],[13.015930159301604,67.88642903407401],[13.015930159301604,67.88136330226436],[13.01233012330124,67.87967472499449],[12.994329943299448,67.87292041591496],[12.897128971289732,67.85603464321613],[12.882728827288275,67.84083744778718],[12.871928719287212,67.82564025235823],[12.843128431284327,67.81550878873895],[12.78552785527856,67.8104430569293],[12.792727927279287,67.8205745205486],[12.832328323283235,67.84590317959683],[12.846728467284692,67.85265748867636],[12.846728467284692,67.85434606594626],[12.846728467284692,67.86110037502579],[12.843128431284327,67.87460899318484],[12.843128431284327,67.87967472499449],[12.850328503285027,67.88980618861379],[12.857528575285755,67.89824907496319],[12.879128791287911,67.91682342493192],[12.889928899289004,67.9286434658211],[12.893528935289368,67.94890639305967],[12.900729007290067,67.9573492794091],[12.907929079290795,67.96072643394885],[12.922329223292252,67.96072643394885],[12.929529295292951,67.96410358848863],[12.929529295292951,67.97085789756815],[12.929529295292951,67.9843665157272],[12.929529295292951,67.98943224753685],[12.979929799297992,68.03671241109359],[12.990729907299084,68.04515529744299],[13.01233012330124,68.05697533833217],[13.048330483304852,68.0654182246816],[13.06273062730628,68.07048395649124],[13.073530735307372,68.08568115192017],[13.069930699307008,68.08905830645995],[13.059130591305916,68.09581261553947],[13.055530555305552,68.09750119280935]]],[[[13.278732787327868,68.12958416093713],[13.296732967329689,68.1515356654456],[13.329133291332909,68.15491281998536],[13.401134011340133,68.14646993363596],[13.408334083340833,68.14309277909618],[13.426334263342653,68.12958416093713],[13.437134371343717,68.12620700639735],[13.415534155341561,68.08230399738042],[13.397533975339769,68.06035249287194],[13.379533795337949,68.05022102925264],[13.379533795337949,68.04515529744299],[13.372333723337249,68.02151521566464],[13.36513365133652,68.01307232931521],[13.357933579335793,68.01138375204533],[13.332733327333273,68.02658094747429],[13.321933219332209,68.02995810201404],[13.267932679326805,67.99787513388628],[13.23913239132392,67.9860550929971],[13.224732247322493,67.99956371115616],[13.224732247322493,68.02151521566464],[13.221132211322129,68.03164667928394],[13.2139321393214,68.03671241109359],[13.195931959319608,68.03333525655381],[13.192331923319244,68.02658094747429],[13.192331923319244,68.01644948385498],[13.185131851318516,68.00969517477546],[13.174331743317452,68.00969517477546],[13.167131671316724,68.01476090658511],[13.16353163531636,68.02489237020441],[13.16353163531636,68.03671241109359],[13.167131671316724,68.05022102925264],[13.177931779317788,68.05866391560204],[13.23913239132392,68.0924354609997],[13.257132571325712,68.09581261553947],[13.275132751327533,68.08736972919004],[13.296732967329689,68.0654182246816],[13.311133111331117,68.05866391560204],[13.329133291332909,68.06372964741169],[13.339933399334,68.08568115192017],[13.321933219332209,68.10425550188887],[13.293132931329325,68.11776412004795],[13.278732787327868,68.12958416093713]]],[[[20.792007920079215,70.09171094854082],[20.79560795607958,70.07651375311187],[20.79560795607958,70.06807086676247],[20.78840788407885,70.06300513495282],[20.77040770407706,70.05793940314317],[20.748807488074874,70.05625082587329],[20.723607236072354,70.06131655768294],[20.705607056070562,70.06807086676247],[20.68760687606877,70.07144802130222],[20.676806768067678,70.06807086676247],[20.658806588065886,70.05456224860339],[20.648006480064794,70.05118509406364],[20.63720637206373,70.04949651679377],[20.615606156061574,70.04443078498412],[20.601206012060118,70.04443078498412],[20.58680586805869,70.04611936225399],[20.590405904059054,70.05118509406364],[20.594005940059418,70.05793940314317],[20.597605976059754,70.06469371222269],[20.601206012060118,70.08664521673117],[20.601206012060118,70.09677668035047],[20.594005940059418,70.10521956669987],[20.576005760057598,70.11028529850952],[20.565205652056534,70.10521956669987],[20.558005580055806,70.0933995258107],[20.565205652056534,70.07820233038177],[20.518405184051858,70.07820233038177],[20.522005220052222,70.06300513495282],[20.507605076050766,70.05793940314317],[20.468004680046818,70.06469371222269],[20.450004500044997,70.06469371222269],[20.432004320043205,70.06807086676247],[20.414004140041413,70.074825175842],[20.399603996039957,70.0849566394613],[20.392403924039257,70.09677668035047],[20.388803888038893,70.10353098943],[20.392403924039257,70.11028529850952],[20.392403924039257,70.1237939166686],[20.399603996039957,70.1508111529867],[20.414004140041413,70.17107408022531],[20.439204392043933,70.18627127565426],[20.46080460804609,70.19471416200366],[20.525605256052557,70.20315704835309],[20.543605436054378,70.20822278016271],[20.543605436054378,70.21159993470249],[20.547205472054713,70.21835424378202],[20.547205472054713,70.22510855286154],[20.550805508055078,70.2301742846712],[20.56160561605617,70.23355143921097],[20.58680586805869,70.23692859375075],[20.734407344073446,70.23692859375075],[20.777607776077758,70.2301742846712],[20.810008100081006,70.22004282105192],[20.824408244082434,70.20991135743262],[20.824408244082434,70.19471416200366],[20.810008100081006,70.17107408022531],[20.78840788407885,70.15249973025661],[20.781207812078122,70.1423682666373],[20.774007740077394,70.1237939166686],[20.774007740077394,70.12041676212883],[20.77040770407706,70.11535103031918],[20.774007740077394,70.11028529850952],[20.78840788407885,70.0933995258107],[20.792007920079215,70.09171094854082]]],[[[19.981999819998208,70.14743399844696],[20.111601116011173,70.12041676212883],[20.154801548015485,70.12041676212883],[20.154801548015485,70.1136624530493],[20.054000540005404,70.10184241216012],[20.02520025200252,70.09171094854082],[20.036000360003612,70.08326806219142],[20.032400324003248,70.074825175842],[20.01800018000182,70.06975944403234],[19.978399783997844,70.05962798041304],[19.819998199981995,70.05962798041304],[19.776797767977683,70.06807086676247],[19.7479974799748,70.0849566394613],[19.7479974799748,70.0933995258107],[19.7479974799748,70.1237939166686],[19.7479974799748,70.13561395755778],[19.7407974079741,70.14067968936743],[19.73359733597337,70.14405684390718],[19.726397263972643,70.1508111529867],[19.701197011970123,70.18120554384461],[19.69039690396906,70.18795985292414],[19.67239672396724,70.19809131654344],[19.66519665196654,70.20484562562297],[19.63279632796329,70.22004282105192],[19.560795607956095,70.2318628619411],[19.535595355953575,70.2504372119098],[19.549995499955003,70.25719152098932],[19.56439564395646,70.25550294371945],[19.593195931959315,70.2504372119098],[19.593195931959315,70.25719152098932],[19.58959589595898,70.2690115618785],[19.6147961479615,70.2791430254978],[19.675996759967603,70.29096306638698],[19.69039690396906,70.28589733457733],[19.693996939969395,70.27407729368815],[19.69759697596976,70.2605686755291],[19.701197011970123,70.2504372119098],[19.71559715597158,70.23861717102062],[19.73359733597337,70.2301742846712],[19.751597515975163,70.22341997559167],[19.769597695976955,70.2217313983218],[19.79119791197914,70.20991135743262],[19.801998019980203,70.18795985292414],[19.81639816398166,70.16938550295544],[19.845198451984515,70.17445123476509],[19.852398523985244,70.18458269838436],[19.8667986679867,70.20991135743262],[19.8739987399874,70.21666566651214],[19.89199891998922,70.21328851197237],[19.94239942399426,70.19471416200366],[19.931599315993168,70.17613981203496],[19.938799387993896,70.16431977114578],[19.956799567995688,70.15418830752648],[19.981999819998208,70.14743399844696]]],[[[23.657636576365775,70.50372380239219],[23.650436504365047,70.50034664785244],[23.63603636036362,70.49190376150301],[23.62883628836289,70.49021518423314],[23.63603636036362,70.48346087515361],[23.65403654036541,70.47332941153431],[23.66123661236614,70.46995225699456],[23.632436324363255,70.43786928886678],[23.59283592835928,70.4159177843583],[23.409234092340938,70.35344042537264],[23.31923319233192,70.34162038448346],[23.2940329403294,70.33148892086416],[23.312033120331222,70.33317749813403],[23.340833408334078,70.33148892086416],[23.362433624336262,70.32642318905451],[23.380433804338054,70.31798030270511],[23.214832148321477,70.28252018003758],[23.153631536315373,70.27745444822793],[23.103231032310333,70.28252018003758],[23.081630816308177,70.30109453000628],[23.088830888308877,70.32811176632441],[23.114031140311397,70.35850615718229],[23.128431284312853,70.37032619807147],[23.13563135631358,70.38552339350042],[23.139231392313917,70.40072058892935],[23.13563135631358,70.41422920708843],[23.07443074430745,70.36019473445216],[23.038430384303837,70.34162038448346],[23.00963009630098,70.35006327083286],[22.995229952299525,70.35681757991242],[22.980829808298097,70.35850615718229],[22.962829628296276,70.35850615718229],[22.94842948429485,70.35850615718229],[22.937629376293756,70.36357188899194],[22.87282872828729,70.40240916619925],[22.854828548285496,70.4074748980089],[22.880028800288017,70.41422920708843],[22.94122941229412,70.4074748980089],[22.962829628296276,70.42098351616795],[22.919629196291964,70.43111497978725],[22.9088290882909,70.434492134327],[22.894428944289444,70.44631217521618],[22.89802898028981,70.45137790702583],[22.92322923229233,70.45644363883548],[22.937629376293756,70.46150937064513],[22.944829448294485,70.463197947915],[22.952029520295213,70.463197947915],[22.95922959229594,70.46488652518491],[22.962829628296276,70.46995225699456],[22.962829628296276,70.47670656607409],[22.97362973629737,70.47670656607409],[22.99162991629916,70.47670656607409],[22.99882998829989,70.47670656607409],[23.002430024300253,70.48008372061383],[23.013230132301317,70.49359233877291],[23.01683016830168,70.49696949331266],[23.12483124831249,70.52060957509102],[23.14283142831428,70.51385526601149],[23.15003150031501,70.49865807058256],[23.17523175231753,70.50203522512231],[23.20043200432005,70.51385526601149],[23.222032220322205,70.51723242055127],[23.222032220322205,70.52398672963079],[23.20043200432005,70.52905246144044],[23.182431824318257,70.53918392505975],[23.17523175231753,70.54762681140915],[23.196831968319685,70.55100396594892],[23.214832148321477,70.55100396594892],[23.240032400323997,70.54593823413927],[23.26163261632618,70.53580677051997],[23.272432724327246,70.52060957509102],[23.26883268832688,70.50541237966209],[23.26163261632618,70.49190376150301],[23.26163261632618,70.48008372061383],[23.279632796327974,70.47670656607409],[23.290432904329037,70.48346087515361],[23.312033120331222,70.51892099782114],[23.32643326433265,70.53074103871032],[23.304833048330494,70.53580677051997],[23.297632976329766,70.5425610795995],[23.308433084330858,70.55100396594892],[23.333633336333378,70.55100396594892],[23.35163351633517,70.54762681140915],[23.387633876338782,70.53242961598019],[23.409234092340938,70.53074103871032],[23.394833948339482,70.5425610795995],[23.387633876338782,70.5442496568694],[23.412834128341302,70.56113542956822],[23.50283502835029,70.5442496568694],[23.538835388353903,70.5442496568694],[23.517235172351718,70.55944685229832],[23.488434884348862,70.5712668931875],[23.438034380343822,70.58477551134658],[23.441634416344158,70.58984124315623],[23.45243452434525,70.6016612840454],[23.456034560345614,70.60672701585506],[23.398433984339846,70.61348132493458],[23.391233912339118,70.61854705674423],[23.463234632346342,70.62530136582376],[23.4848348483485,70.62530136582376],[23.50283502835029,70.61685847947433],[23.517235172351718,70.6101041703948],[23.556835568355694,70.61854705674423],[23.574835748357486,70.61348132493458],[23.56043560435606,70.60672701585506],[23.56763567635676,70.59828412950563],[23.600036000360006,70.57970977953693],[23.59283592835928,70.56620116137785],[23.58563585635858,70.55438112048867],[23.582035820358215,70.5425610795995],[23.582035820358215,70.53074103871032],[23.59283592835928,70.51723242055127],[23.6108361083611,70.51216668874162],[23.632436324363255,70.51047811147174],[23.657636576365775,70.50372380239219]]],[[[24.068040680406824,70.66076148849129],[24.06444064440646,70.64556429306234],[24.082440824408252,70.63543282944306],[24.129241292412928,70.62023563401411],[24.100441004410044,70.58815266588633],[24.010440104401056,70.56788973864775],[23.927639276392767,70.52398672963079],[23.866438664386664,70.51216668874162],[23.80523805238053,70.51385526601149],[23.751237512375127,70.52398672963079],[23.7368373683737,70.53749534778984],[23.708037080370815,70.55775827502845],[23.697236972369723,70.5712668931875],[23.69363693636936,70.57802120226705],[23.69363693636936,70.58815266588633],[23.69363693636936,70.59659555223575],[23.68643686436866,70.5999727067755],[23.64323643236432,70.5999727067755],[23.664836648366503,70.61348132493458],[23.67923679236793,70.62530136582376],[23.67923679236793,70.63712140671294],[23.657636576365775,70.64725287033224],[23.675636756367567,70.65400717941176],[23.682836828368295,70.65907291122141],[23.690036900369023,70.66751579757081],[23.64323643236432,70.68440157026964],[23.63603636036362,70.69284445661907],[23.639636396363983,70.70297592023834],[23.650436504365047,70.7097302293179],[23.675636756367567,70.72323884747695],[23.697236972369723,70.74350177471555],[23.708037080370815,70.7485675065252],[23.816038160381623,70.75194466106495],[23.841238412384143,70.74350177471555],[23.83043830438305,70.736747465636],[23.826838268382687,70.72999315655647],[23.834038340383415,70.72492742474682],[23.848438484384843,70.72323884747695],[23.841238412384143,70.71648453839742],[23.834038340383415,70.71310738385765],[23.83043830438305,70.71141880658777],[23.81963819638196,70.7097302293179],[23.83043830438305,70.70297592023834],[23.84483844838448,70.70466449750825],[23.85563855638557,70.708041652048],[23.866438664386664,70.7097302293179],[23.96363963639638,70.7097302293179],[23.978039780397808,70.70635307477812],[24.032040320403212,70.6894673020793],[24.042840428404304,70.68271299299977],[24.053640536405368,70.67764726119012],[24.060840608406096,70.66920437484072],[24.068040680406824,70.66076148849129]]],[[[-51.817118171181704,70.94275389256171],[-51.777517775177756,70.93599958348216],[-51.66951669516695,70.8937851517351],[-51.58671586715866,70.88871941992545],[-51.5651156511565,70.88027653357605],[-51.59391593915939,70.86001360633745],[-51.629916299163,70.84819356544827],[-51.665916659166584,70.84481641090849],[-51.842318423184224,70.85325929725792],[-51.92871928719288,70.86676791541697],[-52.094320943209425,70.86001360633745],[-52.1411214112141,70.8735222244965],[-52.16272162721627,70.89209657446523],[-52.15552155521554,70.90898234716406],[-52.144721447214465,70.92924527440263],[-52.13752137521375,70.95288535618099],[-52.11232112321123,70.96977112887981],[-52.06552065520654,70.97821401522924],[-52.01152011520115,70.97990259249912],[-51.93951939519394,70.97483686068946],[-51.85671856718568,70.94781962437136],[-51.817118171181704,70.94275389256171]]],[[[26.13446134461344,71.03731421967512],[26.184861848618482,71.0491342605643],[26.210062100621002,71.0491342605643],[26.21726217262173,71.03224848786547],[26.206462064620666,71.01367413789677],[26.181261812618146,71.0018540970076],[26.112861128611286,70.99509978792807],[26.105661056610586,70.99172263338829],[26.087660876608766,70.97990259249912],[26.073260732607338,70.97483686068946],[25.968859688596893,70.97821401522924],[25.947259472594737,70.97483686068946],[25.922059220592217,70.96639397434006],[25.90045900459006,70.96132824253041],[25.79965799657998,70.96301681980029],[25.752857528575305,70.97652543795937],[25.73125731257312,70.97483686068946],[25.716857168571693,70.95626251072076],[25.745657456574577,70.94950820164124],[25.752857528575305,70.94950820164124],[25.752857528575305,70.94275389256171],[25.666456664566653,70.94613104710146],[25.601656016560185,70.93262242894241],[25.55485554855548,70.92755669713276],[25.533255332553324,70.93262242894241],[25.518855188551896,70.94106531529181],[25.493654936549376,70.95963966526054],[25.457654576545764,70.97314828341959],[25.418054180541816,70.98327974703889],[25.536855368553688,71.00354267427747],[25.562055620556208,71.01705129243655],[25.490054900549012,71.0221170242462],[25.47205472054722,71.02718275605585],[25.4540545405454,71.0305599105956],[25.324453244532464,71.00691982881725],[25.306453064530643,71.01029698335702],[25.29565295652958,71.0204284469763],[25.292052920529215,71.02887133332572],[25.29565295652958,71.03562564240525],[25.292052920529215,71.04575710602455],[25.349653496534984,71.06602003326313],[25.31365313653137,71.07277434234268],[25.331653316533163,71.07952865142221],[25.356853568535684,71.08290580596196],[25.400054000540024,71.08628296050173],[25.418054180541816,71.08290580596196],[25.439654396543972,71.07615149688243],[25.457654576545764,71.07277434234268],[25.47925479254792,71.0778400741523],[25.47205472054722,71.08290580596196],[25.464854648546492,71.08966011504148],[25.457654576545764,71.09303726958126],[25.47205472054722,71.10316873320056],[25.490054900549012,71.10148015593069],[25.526055260552624,71.09303726958126],[25.55485554855548,71.09303726958126],[25.562055620556208,71.08966011504148],[25.5728557285573,71.08290580596196],[25.590855908559092,71.0778400741523],[25.634056340563404,71.08121722869208],[25.709657096570965,71.06264287872338],[25.716857168571693,71.05251141510408],[25.71325713257133,71.07108576507278],[25.702457024570265,71.08459438323186],[25.684456844568444,71.09303726958126],[25.55485554855548,71.14031743313797],[25.565655656556572,71.15213747402714],[25.608856088560884,71.14538316494762],[25.626856268562705,71.15044889675727],[25.63765637656377,71.1588917831067],[25.652056520565225,71.16395751491635],[25.666456664566653,71.16564609218622],[25.677256772567745,71.16058036037657],[25.684456844568444,71.14538316494762],[25.80685806858068,71.15382605129705],[25.803258032580345,71.14200601040787],[25.785257852578525,71.11161161954996],[25.785257852578525,71.10316873320056],[25.80685806858068,71.09641442412104],[25.860858608586085,71.11330019681986],[25.88245882458824,71.11330019681986],[25.878858788587905,71.09641442412104],[25.896858968589697,71.09810300139091],[25.922059220592217,71.10654588774031],[25.936459364593645,71.10992304228009],[25.961659616596165,71.10823446501021],[26.004860048600506,71.12512023770904],[26.030060300603026,71.11667735135961],[26.03366033660336,71.08797153777161],[25.99045990459905,71.06770861053303],[25.93285932859328,71.05588856964386],[25.88965889658897,71.05251141510408],[25.90765907659076,71.04406852875465],[25.92565925659258,71.03900279694503],[25.943659436594373,71.03731421967512],[25.96525965259653,71.03731421967512],[25.96525965259653,71.01705129243655],[25.94005940059401,71.01029698335702],[25.929259292592945,71.01029698335702],[25.9580595805958,71.0018540970076],[25.99045990459905,70.99847694246782],[26.02646026460266,71.00016551973772],[26.055260552605546,71.00354267427747],[26.073260732607338,71.0119855606269],[26.11646116461165,71.03393706513538],[26.13446134461344,71.03731421967512]]],[[[-53.89793897938979,71.08290580596196],[-53.962739627396274,71.10148015593069],[-53.98433984339843,71.11836592862952],[-53.97713977139772,71.14707174221752],[-53.955539555395546,71.17071182399587],[-53.91953919539195,71.1875975966947],[-53.854738547385466,71.21292625574293],[-53.80793807938079,71.23994349206106],[-53.764737647376464,71.24669780114058],[-53.74673746737467,71.25682926475989],[-53.64593645936459,71.3142408919359],[-53.61353613536134,71.32099520101542],[-53.57033570335703,71.29397796469729],[-53.48033480334803,71.22136914209236],[-53.42993429934299,71.19266332850435],[-53.40833408334083,71.17408897853562],[-53.39033390333903,71.15551462856692],[-53.38313383133831,71.13694027859822],[-53.38313383133831,71.11836592862952],[-53.401134011340105,71.09641442412104],[-53.422734227342275,71.07615149688243],[-53.447934479344795,71.05757714691373],[-53.48033480334803,71.04237995148478],[-53.51273512735126,71.03731421967512],[-53.66753667536675,71.03224848786547],[-53.87273872738727,71.07446291961256],[-53.89793897938979,71.08290580596196]]],[[[-55.802358023580226,72.68874278962042],[-55.83835838358384,72.69718567596982],[-55.877958779587786,72.7106942941289],[-55.85635856358563,72.71744860320842],[-55.877958779587786,72.72251433501808],[-55.903159031590306,72.72420291228795],[-55.928359283592826,72.71744860320842],[-55.93915939159392,72.70225140777947],[-55.935559355593554,72.68874278962042],[-55.924759247592476,72.67861132600112],[-55.89595895958959,72.66172555330229],[-55.91755917559175,72.66172555330229],[-55.953559535595346,72.67354559419147],[-55.97155971559715,72.67523417146134],[-55.99675996759967,72.67185701692159],[-56.036360363603634,72.65834839876251],[-56.061560615606155,72.65497124422276],[-56.15516155161551,72.66172555330229],[-56.17676176761768,72.66847986238182],[-56.187561875618755,72.67692274873124],[-56.19836198361983,72.68874278962042],[-56.20916209162091,72.6988742532397],[-56.22716227162272,72.70225140777947],[-56.22716227162272,72.7106942941289],[-56.19476194761947,72.71576002593852],[-56.12636126361264,72.71238287139877],[-56.09756097560975,72.72082575774817],[-56.07236072360723,72.73095722136748],[-56.000360003600036,72.74446583952655],[-55.97155971559715,72.74446583952655],[-55.98235982359823,72.7579744576856],[-55.98955989559896,72.76135161222535],[-56.000360003600036,72.76472876676513],[-55.97155971559715,72.77317165311456],[-55.86355863558636,72.77148307584466],[-55.773557735577356,72.78161453946396],[-55.748357483574836,72.78499169400374],[-55.74115741157411,72.77823738492418],[-55.74475744757447,72.76979449857478],[-55.726757267572665,72.77317165311456],[-55.68355683556835,72.78499169400374],[-55.66555665556655,72.78499169400374],[-55.647556475564755,72.78161453946396],[-55.64035640356403,72.77654880765431],[-55.65835658356583,72.77148307584466],[-55.672756727567275,72.76979449857478],[-55.69075690756907,72.76472876676513],[-55.697956979569796,72.75459730314583],[-55.68355683556835,72.74446583952655],[-55.697956979569796,72.73264579863735],[-55.71235712357124,72.71744860320842],[-55.726757267572665,72.70225140777947],[-55.751957519575186,72.69718567596982],[-55.76275762757628,72.69549709869995],[-55.7879578795788,72.68874278962042],[-55.802358023580226,72.68874278962042]]],[[[-55.74115741157411,72.61444538974558],[-55.82035820358203,72.61782254428533],[-55.849158491584916,72.61444538974558],[-55.834758347583474,72.63977404879381],[-55.81675816758167,72.65665982149264],[-55.79155791557915,72.66510270784207],[-55.67995679956799,72.67692274873124],[-55.63675636756368,72.68874278962042],[-55.60795607956079,72.7106942941289],[-55.60435604356043,72.73264579863735],[-55.61155611556116,72.74953157133618],[-55.60795607956079,72.75966303495548],[-55.575555755557545,72.76472876676513],[-55.50715507155071,72.766417344035],[-55.445954459544595,72.78161453946396],[-55.40275402754027,72.78499169400374],[-55.37755377553775,72.80356604397244],[-55.247952479524784,72.82045181667127],[-55.13995139951399,72.80018888943266],[-55.12555125551255,72.79850031216279],[-55.111151111511106,72.80525462124231],[-55.20115201152011,72.81707466213149],[-55.22635226352263,72.82720612575079],[-55.233552335523356,72.84071474390984],[-55.21555215552155,72.84409189844962],[-55.197551975519744,72.8474690529894],[-54.985149851498505,72.82382897121101],[-54.96714967149671,72.81200893032184],[-54.97794977949779,72.80525462124231],[-55.04635046350464,72.79005742581339],[-55.067950679506794,72.77823738492418],[-55.07515075150751,72.76472876676513],[-55.082350823508236,72.74953157133618],[-55.08955089550895,72.73602295317713],[-55.111151111511106,72.73095722136748],[-55.12555125551255,72.72758006682773],[-55.15435154351543,72.7191371804783],[-55.222752227522264,72.71238287139877],[-55.24075240752407,72.70731713958912],[-55.28035280352803,72.68705421235052],[-55.29115291152911,72.67861132600112],[-55.29115291152911,72.67016843965169],[-55.29115291152911,72.66172555330229],[-55.294752947529474,72.65497124422276],[-55.31635316353163,72.64315120333359],[-55.337953379533786,72.63808547152394],[-55.35595355953559,72.63133116244441],[-55.370353703537035,72.61444538974558],[-55.370353703537035,72.60600250339616],[-55.363153631536306,72.59755961704676],[-55.36675366753667,72.58911673069733],[-55.38475384753848,72.58742815342745],[-55.395553955539555,72.58742815342745],[-55.40275402754027,72.5908053079672],[-55.40275402754027,72.59755961704676],[-55.395553955539555,72.60769108066603],[-55.42795427954279,72.61613396701546],[-55.449554495544945,72.6026253488564],[-55.46755467554675,72.58405099888768],[-55.48555485554856,72.5739195352684],[-55.499954999549985,72.56885380345875],[-55.52875528755287,72.55534518529967],[-55.53955539555395,72.55534518529967],[-55.56835568355683,72.56716522618885],[-55.57915579155791,72.57560811253828],[-55.58995589955899,72.58742815342745],[-55.56835568355683,72.59755961704676],[-55.47835478354783,72.61444538974558],[-55.50715507155071,72.61951112155523],[-55.58995589955899,72.62119969882511],[-55.61155611556116,72.63133116244441],[-55.62955629556295,72.64483978060346],[-55.647556475564755,72.65328266695286],[-55.672756727567275,72.64821693514324],[-55.676356763567625,72.64315120333359],[-55.676356763567625,72.63808547152394],[-55.676356763567625,72.63301973971429],[-55.67995679956799,72.62795400790463],[-55.69435694356943,72.61951112155523],[-55.70515705157051,72.61613396701546],[-55.723157231572316,72.61444538974558],[-55.74115741157411,72.61444538974558]]],[[[-71.57771577715776,77.38974190897383],[-71.52011520115201,77.38974190897383],[-71.45171451714516,77.39987337259313],[-71.39051390513904,77.40156194986304],[-71.34371343713437,77.37623329081478],[-71.3761137611376,77.35934751811595],[-71.50931509315093,77.34921605449665],[-71.56691566915669,77.33064170452795],[-71.65331653316532,77.32895312725807],[-71.68931689316892,77.3171330863689],[-71.70371703717036,77.315444509099],[-72.1321213212132,77.32219881817855],[-72.1321213212132,77.32895312725807],[-72.12132121321213,77.32895312725807],[-72.10692106921069,77.33401885906773],[-72.0961209612096,77.33908459087738],[-72.10332103321034,77.344150322687],[-72.21132211322113,77.35765894084608],[-72.28332283322833,77.3542817863063],[-72.52812528125281,77.38974190897383],[-72.57852578525785,77.41169341348231],[-72.56412564125641,77.42520203164139],[-72.53892538925389,77.43026776345104],[-72.36612366123661,77.44546495887997],[-72.36612366123661,77.44884211341974],[-72.36612366123661,77.45053069068962],[-72.36972369723696,77.45221926795949],[-72.3409234092341,77.46066215430892],[-72.23292232922329,77.45897357703905],[-72.22212222122221,77.45728499976914],[-72.20412204122042,77.44884211341974],[-72.19332193321932,77.44546495887997],[-72.1321213212132,77.45221926795949],[-71.7541175411754,77.41675914529196],[-71.67851678516784,77.42520203164139],[-71.64971649716497,77.42013629983174],[-71.57771577715776,77.38974190897383]]],[[[115.54855548555486,-8.666910073328012],[115.5737557375574,-8.671975805137649],[115.5881558815588,-8.695615886916016],[115.5989559895599,-8.71925596869437],[115.61695616956172,-8.73951889593296],[115.62415624156245,-8.768224709520965],[115.60615606156063,-8.786799059489681],[115.5881558815588,-8.807061986728272],[115.55935559355595,-8.798619100378858],[115.50535505355055,-8.76147040044144],[115.48735487354872,-8.741207473202849],[115.47295472954733,-8.736141741393197],[115.46935469354696,-8.731076009583546],[115.47295472954733,-8.72432170050402],[115.50535505355055,-8.678730114217188],[115.51615516155164,-8.670287227867775],[115.5341553415534,-8.673664382407537],[115.54855548555486,-8.666910073328012]]],[[[119.55899558995588,-8.518315273578324],[119.56259562595625,-8.531823891737389],[119.56979569795698,-8.540266778086803],[119.5769957699577,-8.548709664436217],[119.5877958779588,-8.562218282595282],[119.57339573395734,-8.565595437135045],[119.56979569795698,-8.575726900754333],[119.57339573395734,-8.585858364373635],[119.56979569795698,-8.590924096183286],[119.53739537395376,-8.59430125072305],[119.52659526595266,-8.590924096183286],[119.51579515795157,-8.57234974621457],[119.50499504995054,-8.565595437135045],[119.49419494194944,-8.57234974621457],[119.47979479794799,-8.590924096183286],[119.47259472594726,-8.595989827992938],[119.4581945819458,-8.595989827992938],[119.46179461794617,-8.609498446151989],[119.4689946899469,-8.616252755231528],[119.47979479794799,-8.61456417796164],[119.48339483394835,-8.604432714342352],[119.49059490594908,-8.611187023421877],[119.47979479794799,-8.63482710520023],[119.47259472594726,-8.646647146089407],[119.46539465394653,-8.648335723359295],[119.4545945459455,-8.644958568819533],[119.44739447394477,-8.653401455168947],[119.4437944379444,-8.678730114217188],[119.4437944379444,-8.690550155106365],[119.44739447394477,-8.709124505075067],[119.4581945819458,-8.727698855043784],[119.4689946899469,-8.741207473202849],[119.44739447394477,-8.746273205012486],[119.40059400594009,-8.726010277773895],[119.38259382593827,-8.741207473202849],[119.37539375393754,-8.734453164123309],[119.38259382593827,-8.734453164123309],[119.37899378993791,-8.722633123234132],[119.38259382593827,-8.709124505075067],[119.40059400594009,-8.675352959677426],[119.40059400594009,-8.666910073328012],[119.40059400594009,-8.64158141427977],[119.39699396993973,-8.63482710520023],[119.389793897939,-8.631449950660468],[119.38259382593827,-8.631449950660468],[119.38259382593827,-8.628072796120705],[119.38259382593827,-8.601055559802575],[119.37899378993791,-8.574038323484459],[119.37899378993791,-8.565595437135045],[119.38619386193864,-8.55715255078563],[119.39339393393936,-8.555463973515742],[119.40779407794076,-8.55715255078563],[119.41499414994149,-8.55715255078563],[119.41499414994149,-8.553775396245868],[119.42219422194222,-8.535201046277152],[119.42219422194222,-8.526758159927738],[119.41859418594186,-8.49467519179997],[119.42579425794258,-8.487920882720445],[119.42579425794258,-8.472723687291492],[119.41499414994149,-8.444017873703487],[119.42219422194222,-8.442329296433613],[119.4581945819458,-8.425443523734785],[119.46179461794617,-8.440640719163724],[119.46179461794617,-8.460903646402315],[119.4689946899469,-8.479477996371031],[119.47979479794799,-8.486232305450557],[119.53019530195303,-8.479477996371031],[119.54459544595449,-8.481166573640905],[119.55539555395558,-8.484543728180668],[119.55899558995588,-8.487920882720445],[119.56979569795698,-8.498052346339733],[119.57339573395734,-8.506495232689147],[119.56979569795698,-8.511560964498798],[119.56259562595625,-8.514938119038561],[119.55899558995588,-8.518315273578324]]],[[[123.34983349833499,-8.268405837635683],[123.34983349833499,-8.280225878524874],[123.34623346233462,-8.2869801876044],[123.3390333903339,-8.293734496683925],[123.33543335433353,-8.298800228493576],[123.32823328233286,-8.368031896558762],[123.32103321033213,-8.38491766925759],[123.28863288632886,-8.40518059649618],[123.24543245432454,-8.40518059649618],[123.16263162631628,-8.39167197833713],[123.07983079830797,-8.408557751035957],[123.04023040230402,-8.410246328305831],[123.01863018630189,-8.39167197833713],[123.02223022230226,-8.357900432939473],[123.03663036630365,-8.332571773891232],[123.1266312663127,-8.258274374016395],[123.1410314103141,-8.249831487666981],[123.15543155431556,-8.243077178587441],[123.18783187831878,-8.234634292238042],[123.2058320583206,-8.232945714968153],[123.23823238232382,-8.234634292238042],[123.26343263432636,-8.238011446777804],[123.28863288632886,-8.246454333127218],[123.3138331383314,-8.261651528556158],[123.32103321033213,-8.254897219476632],[123.33183331833317,-8.254897219476632],[123.3390333903339,-8.258274374016395],[123.34983349833499,-8.268405837635683]]],[[[119.08739087390876,-8.131631078775186],[119.11259112591125,-8.14682827420414],[119.13059130591307,-8.16709120144273],[119.1377913779138,-8.190731283221083],[119.12699126991271,-8.221125674078976],[119.11619116191162,-8.236322869507916],[119.10179101791022,-8.251520064936855],[119.08019080190803,-8.261651528556158],[119.05139051390518,-8.261651528556158],[119.02259022590226,-8.234634292238042],[119.0189901899019,-8.189042705951195],[119.04059040590408,-8.148516851474014],[119.08739087390876,-8.131631078775186]]],[[[72.46692466924671,-7.383591348217152],[72.47052470524707,-7.378525616407501],[72.47412474124741,-7.376837039137627],[72.47772477724777,-7.373459884597864],[72.48132481324814,-7.36501699824845],[72.4849248492485,-7.370082730058087],[72.4849248492485,-7.375148461867738],[72.4849248492485,-7.381902770947278],[72.48132481324814,-7.390345657296692],[72.47412474124741,-7.40047712091598],[72.44532445324455,-7.425805779964222],[72.43452434524346,-7.432560089043747],[72.42732427324273,-7.403854275455743],[72.43452434524346,-7.346442648279734],[72.42732427324273,-7.32280256650138],[72.42012420124203,-7.317736834691729],[72.39492394923951,-7.304228216532664],[72.38772387723878,-7.30253963926279],[72.38052380523806,-7.2974739074531385],[72.3589235892359,-7.268768093865134],[72.36972369723699,-7.270456671135008],[72.42012420124203,-7.304228216532664],[72.43452434524346,-7.316048257421841],[72.43812438124382,-7.339688339200208],[72.43452434524346,-7.425805779964222],[72.44172441724419,-7.415674316344919],[72.46692466924671,-7.383591348217152]]],[[[72.4849248492485,-7.278899557484422],[72.49572495724959,-7.29578533018325],[72.48852488524886,-7.309293948342315],[72.47772477724777,-7.32280256650138],[72.47412474124741,-7.339688339200208],[72.47412474124741,-7.346442648279734],[72.47412474124741,-7.353196957359259],[72.47772477724777,-7.361639843708673],[72.47412474124741,-7.356574111899036],[72.47052470524707,-7.348131225549622],[72.46692466924671,-7.341376916470082],[72.47052470524707,-7.3329340301206685],[72.4849248492485,-7.30253963926279],[72.47772477724777,-7.278899557484422],[72.45612456124562,-7.255259475706069],[72.43812438124382,-7.226553662118064],[72.44892448924489,-7.23330797119759],[72.4849248492485,-7.278899557484422]]],[[[115.57015570155704,-6.904035403570461],[115.5737557375574,-6.931052639888591],[115.55575555755559,-6.939495526238005],[115.51255512555127,-6.939495526238005],[115.50175501755018,-6.936118371698242],[115.48375483754836,-6.9276754853488285],[115.4657546575466,-6.924298330809066],[115.4549545495455,-6.917544021729526],[115.45135451354514,-6.914166867189763],[115.44415444154441,-6.910789712650001],[115.44055440554405,-6.912478289919875],[115.43335433354332,-6.917544021729526],[115.42615426154265,-6.920921176269289],[115.41895418954192,-6.924298330809066],[115.4117541175412,-6.924298330809066],[115.40455404554046,-6.920921176269289],[115.4009540095401,-6.917544021729526],[115.39375393753937,-6.912478289919875],[115.38295382953828,-6.910789712650001],[115.35055350553506,-6.9276754853488285],[115.34335343353433,-6.9276754853488285],[115.3469534695347,-6.941184103507894],[115.35775357753579,-6.946249835317531],[115.36855368553688,-6.947938412587419],[115.37935379353797,-6.95300414439707],[115.39015390153901,-6.961447030746484],[115.39735397353974,-6.966512762556121],[115.4009540095401,-6.973267071635661],[115.37935379353797,-6.986775689794726],[115.35415354153542,-6.981709957985075],[115.31815318153184,-6.95300414439707],[115.30375303753038,-6.966512762556121],[115.30015300153002,-6.971578494365772],[115.30015300153002,-6.978332803445312],[115.30015300153002,-6.981709957985075],[115.30375303753038,-6.980021380715186],[115.30375303753038,-6.986775689794726],[115.31095310953111,-6.99521857614414],[115.31095310953111,-7.000284307953777],[115.30735307353075,-7.003661462493554],[115.30015300153002,-7.0070386170333165],[115.29295292952929,-7.0070386170333165],[115.28935289352893,-7.003661462493554],[115.28575285752856,-7.003661462493554],[115.26415264152644,-6.983398535254949],[115.26415264152644,-6.976644226175424],[115.27495274952753,-6.939495526238005],[115.23895238952389,-6.942872680777768],[115.22095220952212,-6.939495526238005],[115.2137521375214,-6.9276754853488285],[115.21735217352176,-6.904035403570461],[115.22815228152285,-6.892215362681284],[115.24255242552425,-6.880395321792108],[115.25695256952571,-6.86350954909328],[115.24255242552425,-6.846623776394452],[115.25335253352534,-6.838180890045038],[115.27495274952753,-6.834803735505275],[115.29655296552966,-6.834803735505275],[115.37935379353797,-6.834803735505275],[115.46215462154623,-6.843246621854689],[115.48375483754836,-6.851689508204103],[115.55215552155522,-6.888838208141522],[115.57015570155704,-6.904035403570461]]],[[[112.70092700927012,-5.725408469192345],[112.71532715327152,-5.735539932811648],[112.72612726127261,-5.747359973700824],[112.7369273692737,-5.762557169129764],[112.74052740527407,-5.7878858281780055],[112.7369273692737,-5.8098373326864845],[112.72972729727297,-5.828411682655187],[112.71892718927188,-5.841920300814252],[112.70092700927012,-5.848674609893777],[112.69012690126902,-5.850363187163666],[112.66492664926648,-5.848674609893777],[112.6577265772658,-5.8452974553540145],[112.65412654126544,-5.8368545690046005],[112.64692646926471,-5.838543146274489],[112.62892628926289,-5.848674609893777],[112.6037260372604,-5.846986032623903],[112.59652596525967,-5.8368545690046005],[112.59292592925931,-5.81659164176601],[112.58212582125822,-5.794640137257531],[112.58932589325894,-5.786197250908117],[112.6181261812618,-5.764245746399652],[112.62172621726216,-5.7574914373201125],[112.64692646926471,-5.732162778271871],[112.6577265772658,-5.737228510081522],[112.66852668526684,-5.733851355541759],[112.6829268292683,-5.728785623732108],[112.70092700927012,-5.725408469192345]]],[[[102.40482404824047,-5.40457878791463],[102.4012240122401,-5.418087406073695],[102.38682386823871,-5.429907446962872],[102.36522365223652,-5.441727487852049],[102.36882368823689,-5.453547528741225],[102.38322383223834,-5.4670561469002905],[102.39042390423907,-5.477187610519593],[102.37962379623798,-5.48225334232923],[102.3328233282333,-5.472121878709942],[102.32562325623257,-5.468744724170179],[102.32202322023221,-5.472121878709942],[102.31482314823148,-5.472121878709942],[102.30402304023039,-5.472121878709942],[102.29682296822972,-5.472121878709942],[102.29322293222936,-5.477187610519593],[102.28242282422826,-5.499139115028058],[102.27162271622717,-5.48900765140877],[102.25722257222571,-5.456924683281002],[102.24642246422468,-5.441727487852049],[102.12762127621278,-5.348855738008496],[102.09882098820987,-5.335347119849445],[102.1456214562146,-5.289755533562612],[102.17082170821709,-5.27962406994331],[102.19962199621995,-5.28637837902285],[102.22842228422286,-5.301575574451789],[102.24282242822431,-5.30664130626144],[102.26082260822608,-5.308329883531314],[102.27522275222753,-5.311707038071077],[102.28602286022863,-5.323527078960268],[102.30402304023039,-5.34210142892897],[102.36522365223652,-5.360675778897686],[102.39402394023944,-5.375872974326626],[102.40482404824047,-5.40457878791463]]],[[[116.39816398163981,-3.3934832594843414],[116.40536405364054,-3.374908909515625],[116.41616416164163,-3.3816632185951647],[116.43416434164345,-3.4103690321831692],[116.43056430564309,-3.4475177321205877],[116.41256412564127,-3.520126554725536],[116.40536405364054,-3.577538181901545],[116.39456394563945,-3.612998304569089],[116.39456394563945,-3.63326123180768],[116.38736387363872,-3.6400155408872052],[116.36936369363696,-3.621441190918503],[116.33336333363337,-3.5623409864726057],[116.32616326163264,-3.5471437910436663],[116.32616326163264,-3.533635172884601],[116.32976329763301,-3.511683668376122],[116.3549635496355,-3.4593377730097643],[116.35856358563586,-3.440763423041048],[116.36576365763659,-3.4289433821518713],[116.39456394563945,-3.405303300373518],[116.39816398163981,-3.3934832594843414]]],[[[100.20520205202052,-2.692723692483014],[100.20880208802089,-2.7079208879119676],[100.21600216002162,-2.723118083340907],[100.21960219602198,-2.740003856039735],[100.21600216002162,-2.7535124741988],[100.20520205202052,-2.7602667832783254],[100.1728017280173,-2.7653325150879766],[100.15840158401585,-2.772086824167502],[100.15120151201512,-2.785595442326567],[100.14400144001439,-2.810924101374809],[100.13680136801366,-2.821055564994097],[100.11520115201154,-2.827809874073637],[100.09000090000899,-2.824432719533874],[100.06840068400686,-2.81598983318446],[100.05040050400504,-2.8075469468350462],[100.04320043200431,-2.821055564994097],[100.03960039600395,-2.8345641831531623],[100.02880028800291,-2.8396299149628135],[100.01440014400146,-2.8345641831531623],[100.00720007200073,-2.819366987724223],[100.00720007200073,-2.7822182877868045],[100,-2.7653325150879766],[99.98559985599854,-2.767021092357851],[99.98919989199891,-2.745069587849386],[100,-2.6859693834034886],[100,-2.6589521470853583],[99.99639996399964,-2.6386892198467677],[99.98559985599854,-2.625180601687717],[99.96759967599678,-2.6150491380684144],[99.97479974799751,-2.603229097179238],[99.97479974799751,-2.594786210829824],[99.96759967599678,-2.5795890154008703],[99.96039960399605,-2.5593260881622797],[99.96039960399605,-2.5525717790827542],[99.96759967599678,-2.515423079145336],[99.97479974799751,-2.4934715746368568],[99.98559985599854,-2.485028688287443],[100.00360003600036,-2.490094420097094],[100.01440014400146,-2.5052916155260334],[100.02160021600218,-2.5188002336850985],[100.03240032400328,-2.525554542764624],[100.08640086400862,-2.5762118608611075],[100.10800108001081,-2.599851942639475],[100.1188011880119,-2.608294828988889],[100.15120151201512,-2.618426292608177],[100.16560165601658,-2.6285577562274796],[100.1728017280173,-2.6454435289263074],[100.17640176401767,-2.6555749925455956],[100.20160201602016,-2.6775264970540746],[100.20520205202052,-2.692723692483014]]],[[[99.82359823598239,-2.2925308795208252],[99.84879848798488,-2.3347453112678807],[99.85959859598597,-2.3566968157763597],[99.85959859598597,-2.375271165745076],[99.85959859598597,-2.366828279395662],[99.85239852398524,-2.3769597430149503],[99.84519845198452,-2.380336897554713],[99.83799837998379,-2.375271165745076],[99.83439834398342,-2.3516310839667085],[99.82359823598239,-2.3482539294269458],[99.79839798397984,-2.3482539294269458],[99.78759787597875,-2.344876774887183],[99.78039780397808,-2.336433888537769],[99.77319773197735,-2.327991002188355],[99.76239762397626,-2.3212366931088297],[99.7479974799748,-2.317859538569053],[99.72639726397267,-2.317859538569053],[99.71199711997122,-2.312793806759416],[99.69759697596976,-2.300973765870225],[99.68679686796867,-2.2840879931714113],[99.67239672396727,-2.270579375012346],[99.64719647196472,-2.265513643202695],[99.61119611196114,-2.2672022204725835],[99.6039960399604,-2.265513643202695],[99.6039960399604,-2.2536936023135183],[99.61119611196114,-2.243562138694216],[99.6147961479615,-2.2334306750749278],[99.6039960399604,-2.2232992114556254],[99.59679596795968,-2.2283649432652766],[99.59319593195931,-2.2283649432652766],[99.59319593195931,-2.221610634185751],[99.58959589595895,-2.2114791705664487],[99.58239582395822,-2.2114791705664487],[99.57519575195755,-2.2232992114556254],[99.56799567995682,-2.2148563251062114],[99.55719557195573,-2.182773356978444],[99.53199531995318,-2.155756120660314],[99.52839528395288,-2.145624657041026],[99.53199531995318,-2.133804616151849],[99.53919539195391,-2.1321160388819607],[99.55359553595537,-2.1354931934217234],[99.56439564395646,-2.130427461612072],[99.5607956079561,-2.1219845752626725],[99.549995499955,-2.1017216480240677],[99.549995499955,-2.0611957935468865],[99.56439564395646,-2.0308014026889936],[99.59319593195931,-2.015604207260054],[99.63279632796326,-2.018981361799817],[99.64359643596435,-2.0291128254191193],[99.65079650796508,-2.0426214435781844],[99.66159661596618,-2.054441484467361],[99.6831968319683,-2.0595072162770123],[99.6939969399694,-2.067950102626426],[99.70119701197012,-2.088213029865017],[99.70839708397085,-2.1270503070723095],[99.72279722797231,-2.159133275200091],[99.77679776797771,-2.2368078296146905],[99.77679776797771,-2.2418735614243417],[99.77319773197735,-2.2536936023135183],[99.77679776797771,-2.2587593341231695],[99.78039780397808,-2.2621364886629323],[99.78759787597875,-2.2638250659328065],[99.81639816398166,-2.2840879931714113],[99.82359823598239,-2.2925308795208252]]],[[[108.96408964089642,-1.5731969625507816],[108.96768967689678,-1.5883941579797352],[108.96408964089642,-1.6035913534086745],[108.95688956889569,-1.6187885488376281],[108.94968949689496,-1.632297166996679],[108.9316893168932,-1.640740053346093],[108.87048870488707,-1.662691557854572],[108.85968859688597,-1.6643801351244605],[108.83088830888312,-1.662691557854572],[108.82728827288275,-1.6576258260449208],[108.82368823688239,-1.6458057851557442],[108.82368823688239,-1.632297166996679],[108.82368823688239,-1.6238542806472651],[108.83088830888312,-1.6154113942978512],[108.83088830888312,-1.605279930678563],[108.83088830888312,-1.5951484670592606],[108.82728827288275,-1.5867055807098467],[108.82008820088203,-1.583328426170084],[108.80568805688057,-1.5850170034399724],[108.79488794887948,-1.5799512716303212],[108.80568805688057,-1.5647540762013818],[108.83088830888312,-1.556311189851968],[108.8776887768878,-1.5461797262326655],[108.88848888488889,-1.53942541715314],[108.8920889208892,-1.5343596853434889],[108.89928899288992,-1.5326711080736004],[108.91728917289174,-1.53942541715314],[108.92808928089283,-1.544491148962777],[108.95688956889569,-1.5630654989314934],[108.96408964089642,-1.5731969625507816]]],[[[103.29403294032943,0.625330642836488],[103.2976329763298,0.6050677155978974],[103.30123301233016,0.5746733247400044],[103.29403294032943,0.5493446656917627],[103.27963279632797,0.537524624802586],[103.19683196831971,0.5206388521037582],[103.18243182431826,0.515573120294107],[103.17163171631717,0.5138845430242327],[103.15363153631534,0.5240160066435209],[103.13923139231395,0.5392132020724603],[103.13563135631358,0.5560989747712881],[103.13563135631358,0.5746733247400044],[103.15723157231571,0.6641679200437807],[103.1788317883179,0.6962508881715621],[103.21123211232111,0.7080709290607388],[103.22923229232293,0.704693774520976],[103.24723247232475,0.6945623109016736],[103.26163261632615,0.6810536927426085],[103.27243272432725,0.6658564973136691],[103.2868328683287,0.6455935700750786],[103.29403294032943,0.625330642836488]]],[[[103.48843488434886,0.7773025971259244],[103.50283502835032,0.7637939789668593],[103.50643506435063,0.7553510926174596],[103.51003510035099,0.7435310517282687],[103.48123481234813,0.6844308472823855],[103.45963459634595,0.6574136109642552],[103.43443434434346,0.647282147344967],[103.41643416434164,0.6574136109642552],[103.40203402034024,0.6776765382028458],[103.39483394833951,0.6996280427113248],[103.38403384033842,0.7080709290607388],[103.34443344433447,0.7637939789668593],[103.3408334083341,0.7840569062054641],[103.33723337233374,0.8043198334440547],[103.3408334083341,0.8178284516031056],[103.3516335163352,0.8397799561115846],[103.35883358833587,0.8718629242393519],[103.36963369633696,0.885371542398417],[103.38403384033842,0.8887486969381797],[103.40203402034024,0.8803058105887658],[103.40923409234091,0.8651086151598264],[103.41643416434164,0.8465342651911243],[103.42723427234273,0.8313370697621707],[103.45963459634595,0.8212056061428825],[103.47043470434704,0.8076969879838174],[103.48843488434886,0.7773025971259244]]],[[[103.44163441634419,1.0120148376396259],[103.44523445234455,1.0069491058299747],[103.44523445234455,1.0001947967504492],[103.44163441634419,0.995129064940798],[103.43803438034382,0.9917519104010353],[103.42363423634237,0.9900633331311468],[103.40923409234091,0.995129064940798],[103.38043380433805,1.0103262603697374],[103.35883358833587,1.0052605285600862],[103.3408334083341,1.0187691467191513],[103.31563315633156,1.060983578466221],[103.31563315633156,1.0728036193553976],[103.32283322833229,1.0930665465939882],[103.33363333633338,1.1116408965627045],[103.3408334083341,1.1200837829121184],[103.34803348033483,1.1217723601819927],[103.3660336603366,1.131903823801295],[103.37683376833769,1.1335924010711835],[103.39123391233915,1.1302152465314066],[103.39123391233915,1.1217723601819927],[103.38763387633878,1.1116408965627045],[103.38763387633878,1.0998208556735278],[103.39483394833951,1.0761807738951603],[103.39843398433987,1.0643607330059837],[103.40563405634055,1.0542292693866955],[103.40923409234091,1.0508521148469185],[103.42363423634237,1.0491635375770443],[103.42723427234273,1.0474749603071558],[103.4308343083431,1.0424092284975046],[103.4308343083431,1.0373434966878676],[103.4308343083431,1.033966342148105],[103.4308343083431,1.0289006103384537],[103.43443434434346,1.0238348785288025],[103.44163441634419,1.017080569449277],[103.44163441634419,1.0120148376396259]]],[[[104.14724147241475,1.1606096373892996],[104.15084150841511,1.140346710150709],[104.15084150841511,1.1200837829121184],[104.13284132841329,1.0491635375770443],[104.1220412204122,1.0491635375770443],[104.1076410764108,1.0643607330059837],[104.10404104041044,1.0576064239264582],[104.10404104041044,1.0508521148469185],[104.1076410764108,1.0457863830372816],[104.11124111241111,1.0373434966878676],[104.10404104041044,1.033966342148105],[104.10044100441007,1.0272120330685652],[104.09684096840971,1.0187691467191513],[104.09324093240934,1.0103262603697374],[104.09324093240934,1.0052605285600862],[104.09324093240934,0.9934404876709095],[104.09324093240934,0.9900633331311468],[104.08964089640898,0.9883747558612583],[104.07524075240752,0.9900633331311468],[104.07164071640716,0.9900633331311468],[104.05004050040503,0.9849976013214956],[104.03204032040321,0.9900633331311468],[103.99603996039963,1.0103262603697374],[103.9888398883989,1.0103262603697374],[103.96723967239672,1.0086376830998631],[103.95643956439568,1.0103262603697374],[103.94923949239495,1.0137034149095001],[103.91683916839168,1.0508521148469185],[103.90603906039064,1.0711150420855233],[103.90243902439028,1.0896893920542254],[103.91323913239131,1.0998208556735278],[103.9240392403924,1.096443701133751],[103.93843938439386,1.0795579284349373],[103.94923949239495,1.0778693511650488],[103.95643956439568,1.0846236602445742],[103.95643956439568,1.0930665465939882],[103.95283952839532,1.1031980102132906],[103.94563945639459,1.1251495147217696],[103.94203942039422,1.1302152465314066],[103.94563945639459,1.1352809783410578],[103.95643956439568,1.140346710150709],[103.96723967239672,1.1420352874205975],[103.9888398883989,1.1335924010711835],[103.99603996039963,1.1335924010711835],[104.01044010440103,1.1454124419603602],[104.01764017640176,1.1791839873580159],[104.03204032040321,1.1876268737074298],[104.0428404284043,1.1808725646278901],[104.07164071640716,1.1454124419603602],[104.08604086040862,1.1335924010711835],[104.09324093240934,1.1454124419603602],[104.09324093240934,1.158921060119411],[104.08604086040862,1.170741101008602],[104.07884078840789,1.1808725646278901],[104.08964089640898,1.1876268737074298],[104.10404104041044,1.189315450977304],[104.11484114841147,1.1876268737074298],[104.12924129241293,1.1808725646278901],[104.13644136441366,1.1724296782784762],[104.14364143641438,1.1656753691989508],[104.14724147241475,1.1606096373892996]]],[[[97.32877328773287,2.1467387630007977],[97.3359733597336,2.126475835762207],[97.33957339573396,2.1062129085236165],[97.34317343173433,2.082572826745249],[97.34317343173433,2.0589327449668957],[97.33957339573396,2.0488012813475933],[97.3359733597336,2.042046972268068],[97.32877328773287,2.0369812404584167],[97.32157321573214,2.0319155086487797],[97.32157321573214,2.050489858617482],[97.32157321573214,2.0589327449668957],[97.30717307173074,2.0572441676970072],[97.29637296372965,2.069064208586198],[97.28917289172892,2.0876385585549],[97.27837278372783,2.1028357539838396],[97.23517235172352,2.1467387630007977],[97.22797227972279,2.1585588038899743],[97.20637206372066,2.175444576588802],[97.10197101971022,2.2125932765262206],[97.10917109171095,2.219347585605746],[97.12357123571235,2.2261018946852857],[97.16677166771666,2.232856203764811],[97.17037170371702,2.232856203764811],[97.17757177571775,2.231167626494937],[97.18117181171812,2.2261018946852857],[97.19197191971921,2.209216121986458],[97.20637206372066,2.2075275447165694],[97.22077220772206,2.214281853796109],[97.23157231572316,2.2244133174153973],[97.24597245972461,2.231167626494937],[97.26397263972643,2.232856203764811],[97.2819728197282,2.2294790492250485],[97.28917289172892,2.2210361628756345],[97.2819728197282,2.209216121986458],[97.30717307173074,2.1855760402081046],[97.32157321573214,2.178821731128565],[97.32517325173251,2.170378844779151],[97.32877328773287,2.1467387630007977]]],[[[111.4121141211412,2.3915824671337873],[111.4121141211412,2.386516735324136],[111.4121141211412,2.378073848974722],[111.4121141211412,2.373008117165071],[111.40131401314017,2.378073848974722],[111.39051390513907,2.381451003514485],[111.38331383313835,2.378073848974722],[111.37611376113762,2.3696309626253083],[111.36891368913689,2.35949949900602],[111.3581135811358,2.373008117165071],[111.3437134371344,2.4135339716422664],[111.3329133291333,2.4219768579916803],[111.31131311313112,2.4321083216109685],[111.30771307713076,2.452371248849559],[111.31491314913148,2.496274257866517],[111.31851318513185,2.5368001123436983],[111.30051300513009,2.7022806847922],[111.30051300513009,2.7529380028886834],[111.31491314913148,2.7850209710164506],[111.35091350913513,2.7715123528573997],[111.36891368913689,2.7394293847296183],[111.37971379713798,2.697214952982563],[111.38331383313835,2.523291494184633],[111.39051390513907,2.4489940943097963],[111.4121141211412,2.3915824671337873]]],[[[104.22284222842228,2.7850209710164506],[104.22644226442264,2.7360522301898555],[104.22284222842228,2.724232189300679],[104.21204212042119,2.715789302951265],[104.19044190441906,2.7090349938717395],[104.17244172441724,2.707346416601851],[104.15804158041584,2.7141007256813765],[104.14004140041402,2.7343636529199813],[104.12924129241293,2.746183693809158],[104.12924129241293,2.754626580158572],[104.12924129241293,2.759692311968209],[104.12564125641256,2.7765780846670367],[104.12564125641256,2.7850209710164506],[104.13284132841329,2.7917752800959903],[104.14364143641438,2.7968410119056415],[104.15084150841511,2.8019067437152785],[104.16164161641615,2.817103939144232],[104.16164161641615,2.8323011345731715],[104.15804158041584,2.847498330002111],[104.15444154441548,2.8643841027009387],[104.15444154441548,2.874515566320241],[104.16164161641615,2.8846470299395293],[104.17244172441724,2.891401339019069],[104.17964179641797,2.8897127617491805],[104.1868418684187,2.8846470299395293],[104.1868418684187,2.8795812981298923],[104.19044190441906,2.8677612572407156],[104.19044190441906,2.861006948161176],[104.20484204842052,2.8407440209225854],[104.21204212042119,2.8272354027635203],[104.22284222842228,2.7850209710164506]]],[[[105.80325803258035,2.997781707021673],[105.81405814058144,2.9960931297517988],[105.8428584285843,2.987650243402385],[105.85365853658539,2.984273088862608],[105.84645846458466,2.9690758934336685],[105.83925839258393,2.9690758934336685],[105.83925839258393,2.9775187797830824],[105.8320583205832,2.9775187797830824],[105.81045810458107,2.904909957178134],[105.80325803258035,2.8981556480985944],[105.78885788857889,2.9065985344480083],[105.78165781657816,2.904909957178134],[105.77445774457743,2.8981556480985944],[105.73125731257312,2.8812698753997665],[105.73485734857348,2.8728269890503526],[105.73845738457385,2.86944983451059],[105.74565745657458,2.8677612572407156],[105.7528575285753,2.8677612572407156],[105.7636576365764,2.8643841027009387],[105.7636576365764,2.8576297936214132],[105.7636576365764,2.8491869072719993],[105.76005760057603,2.8458097527322366],[105.74925749257494,2.844121175462348],[105.73485734857348,2.8407440209225854],[105.72405724057239,2.839055443652697],[105.71325713257136,2.842432598192474],[105.70605706057063,2.8508754845418878],[105.6988569885699,2.861006948161176],[105.69525695256954,2.8728269890503526],[105.69525695256954,2.8846470299395293],[105.6988569885699,2.89646707082872],[105.70605706057063,2.9201071526070734],[105.71325713257136,2.9437472343854267],[105.72045720457203,2.9690758934336685],[105.72405724057239,2.9775187797830824],[105.71685716857172,2.989338820672259],[105.69165691656917,3.002847438831324],[105.68085680856808,3.011290325180738],[105.69165691656917,3.019733211530152],[105.69525695256954,3.0349304069590914],[105.69525695256954,3.0484390251181566],[105.68805688056881,3.060259066007333],[105.70245702457026,3.0653247978169844],[105.709657096571,3.0484390251181566],[105.71325713257136,3.045061870578394],[105.71685716857172,3.0433732933085054],[105.73125731257312,3.0349304069590914],[105.73845738457385,3.0315532524193287],[105.73845738457385,3.014667479720501],[105.73845738457385,2.9994702842915615],[105.73845738457385,2.987650243402385],[105.7528575285753,2.984273088862608],[105.7636576365764,2.9825845115927336],[105.7780577805778,2.9775187797830824],[105.78525785257852,2.9775187797830824],[105.78885788857889,2.980895934322845],[105.79245792457925,2.987650243402385],[105.79605796057962,2.9944045524819103],[105.80325803258035,2.997781707021673]]],[[[106.28566285662856,3.178459474899128],[106.28566285662856,3.0872763023254635],[106.27846278462783,3.0872763023254635],[106.2568625686257,3.1142935386435795],[106.24246242462425,3.107539229564054],[106.23526235262352,3.115982115913468],[106.22446224462243,3.126113579532756],[106.21006210062103,3.1278021568026446],[106.2136621366214,3.13455646588217],[106.21726217262176,3.1413107749617097],[106.21726217262176,3.146376506771361],[106.21726217262176,3.1548193931207607],[106.20646206462067,3.205476711217244],[106.20646206462067,3.225739638455835],[106.22446224462243,3.2240510611859605],[106.23886238862389,3.225739638455835],[106.26046260462607,3.213919597566658],[106.27846278462783,3.1970338248678303],[106.28566285662856,3.178459474899128]]],[[[117.6257762577626,3.438500374461057],[117.64017640176405,3.436811797191183],[117.65817658176582,3.433434642651406],[117.67257672576727,3.4266803335718805],[117.68337683376836,3.414860292682704],[117.68337683376836,3.3996630972537645],[117.68337683376836,3.3777115927452854],[117.67617676176764,3.3557600882368064],[117.66537665376654,3.3287428519186903],[117.66897668976691,3.271331224742667],[117.65817658176582,3.2544454520438535],[117.64737647376472,3.2460025656944396],[117.63657636576369,3.2493797202342023],[117.63297632976332,3.2679540702029044],[117.6257762577626,3.283151265631858],[117.57177571775719,3.3135456564897368],[117.55737557375573,3.332120006458453],[117.54297542975434,3.354071510966932],[117.53577535775361,3.3794001700151597],[117.53217532175324,3.403040251793527],[117.54297542975434,3.428368910841769],[117.56817568175683,3.438500374461057],[117.6257762577626,3.438500374461057]]],[[[100.30960309603097,5.451284480161235],[100.3168031680317,5.436087284732295],[100.33480334803352,5.427644398382881],[100.34200342003419,5.417512934763579],[100.32400324003243,5.383741389365923],[100.32040320403206,5.3449041121586305],[100.3168031680317,5.326329762189914],[100.29160291602915,5.280738175903082],[100.28800288002878,5.26216382593438],[100.23400234002344,5.272295289553668],[100.19440194401943,5.272295289553668],[100.19440194401943,5.270606712283794],[100.19440194401943,5.267229557744017],[100.19080190801907,5.267229557744017],[100.1836018360184,5.268918135013905],[100.18000180001803,5.273983866823556],[100.18000180001803,5.277361021363319],[100.19440194401943,5.285803907712733],[100.19440194401943,5.299312525871798],[100.19080190801907,5.353346998508044],[100.19440194401943,5.398938584794877],[100.19080190801907,5.409070048414165],[100.1872018720187,5.415824357493705],[100.18000180001803,5.42257866657323],[100.18000180001803,5.427644398382881],[100.18000180001803,5.436087284732295],[100.1836018360184,5.444530171081709],[100.1872018720187,5.451284480161235],[100.18000180001803,5.458038789240774],[100.19080190801907,5.463104521050411],[100.1980019800198,5.458038789240774],[100.20160201602016,5.447907325621472],[100.21240212402125,5.444530171081709],[100.21960219602198,5.446218748351583],[100.22320223202235,5.452973057431123],[100.23040230402307,5.4597273665106485],[100.23400234002344,5.4647930983203],[100.2520025200252,5.469858830129951],[100.27360273602739,5.468170252860062],[100.29160291602915,5.463104521050411],[100.30960309603097,5.451284480161235]]],[[[95.34155341553418,5.89706887941027],[95.35235352353527,5.8869374157909675],[95.38115381153813,5.841345829504135],[95.38115381153813,5.807574284106494],[95.37755377553776,5.807574284106494],[95.3739537395374,5.814328593186019],[95.37035370353703,5.817705747725782],[95.35595355953558,5.827837211345084],[95.35595355953558,5.795754243217303],[95.3487534875349,5.783934202328126],[95.33795337953381,5.778868470518475],[95.319953199532,5.780557047788363],[95.30195301953023,5.785622779598015],[95.28755287552877,5.794065665947429],[95.27315273152732,5.807574284106494],[95.26595265952659,5.821082902265545],[95.25875258752586,5.839657252234261],[95.25155251552519,5.8548544476632],[95.229952299523,5.87005164309214],[95.21915219152191,5.885248838521093],[95.21195211952119,5.902134611219921],[95.21555215552155,5.910577497569335],[95.23715237152373,5.908888920299447],[95.24795247952483,5.905511765759684],[95.25875258752586,5.89706887941027],[95.27315273152732,5.87005164309214],[95.28395283952841,5.858231602202963],[95.29835298352987,5.858231602202963],[95.30555305553054,5.871740220362028],[95.31635316353163,5.8869374157909675],[95.32355323553236,5.898757456680158],[95.34155341553418,5.89706887941027]]],[[[99.89919899198992,6.364804783167784],[99.90999909999101,6.3479190104689565],[99.91359913599138,6.3394761241195425],[99.91719917199174,6.331033237770129],[99.90639906399065,6.325967505960477],[99.89199891998919,6.322590351420715],[99.88479884798846,6.312458887801412],[99.87039870398706,6.305704578721887],[99.8667986679867,6.290507383292933],[99.84879848798488,6.300638846912236],[99.84519845198452,6.324278928690589],[99.82359823598239,6.324278928690589],[99.80559805598057,6.3175246196110635],[99.79119791197911,6.298950269642347],[99.77679776797771,6.283753074213408],[99.76239762397626,6.282064496943519],[99.7479974799748,6.270244456054343],[99.7371973719737,6.2651787242446915],[99.72999729997304,6.261801569704929],[99.71559715597158,6.310770310531538],[99.72279722797231,6.327656083230352],[99.71919719197194,6.3529847422785934],[99.70119701197012,6.358050474088245],[99.67599675996763,6.364804783167784],[99.65799657996581,6.363116205897896],[99.65079650796508,6.376624824056961],[99.64719647196472,6.393510596755789],[99.64359643596435,6.435725028502844],[99.6687966879669,6.42728214215343],[99.69039690396903,6.435725028502844],[99.72279722797231,6.43403645123297],[99.7371973719737,6.423904987613668],[99.76959769597698,6.420527833073905],[99.78759787597875,6.422216410343793],[99.8019980199802,6.435725028502844],[99.8127981279813,6.4542993784715605],[99.82359823598239,6.4542993784715605],[99.83799837998379,6.4542993784715605],[99.83439834398342,6.4627422648209745],[99.83439834398342,6.471185151170388],[99.84159841598415,6.4694965739005],[99.85239852398524,6.466119419360737],[99.85959859598597,6.444167914852258],[99.8667986679867,6.428970719423319],[99.87759877598779,6.420527833073905],[99.89919899198992,6.410396369454617],[99.89919899198992,6.401953483105203],[99.90639906399065,6.398576328565426],[99.91359913599138,6.390133442216012],[99.90999909999101,6.378313401326835],[99.89919899198992,6.364804783167784]]],[[[99.67239672396727,6.516776737457221],[99.67239672396727,6.506645273837918],[99.6687966879669,6.501579542028281],[99.66519665196654,6.49651381021863],[99.65799657996581,6.493136655678867],[99.64719647196472,6.510022428377695],[99.63279632796326,6.552236860124751],[99.60039600396004,6.582631250982644],[99.6039960399604,6.597828446411583],[99.6147961479615,6.609648487300774],[99.62559625596259,6.623157105459825],[99.62559625596259,6.633288569079127],[99.62199621996223,6.651862919047829],[99.62559625596259,6.6569286508574805],[99.62919629196296,6.66368295993702],[99.63639636396363,6.667060114476783],[99.64359643596435,6.672125846286434],[99.64359643596435,6.680568732635848],[99.64719647196472,6.69914308260455],[99.65079650796508,6.7177174325732665],[99.65799657996581,6.724471741652792],[99.679596795968,6.672125846286434],[99.679596795968,6.624845682729713],[99.69759697596976,6.587696982792295],[99.70479704797049,6.55899116920429],[99.70479704797049,6.543793973775337],[99.70119701197012,6.533662510156049],[99.6939969399694,6.528596778346397],[99.6831968319683,6.526908201076523],[99.67599675996763,6.525219623806635],[99.67239672396727,6.516776737457221]]],[[[117.17217172171723,7.342491022429854],[117.24777247772477,7.355999640588919],[117.26937269372695,7.349245331509394],[117.28017280172804,7.332359558810566],[117.2837728377284,7.308719477032213],[117.27297272972731,7.2327334998874875],[117.26217262172622,7.2023391090295945],[117.24777247772477,7.183764759060892],[117.229772297723,7.192207645410306],[117.21177211772118,7.183764759060892],[117.15417154171541,7.17363329544159],[117.13977139771401,7.1668789863620646],[117.13617136171365,7.161813254552413],[117.10737107371074,7.149993213663237],[117.10017100171001,7.143238904583697],[117.09297092970928,7.13141886369452],[117.08937089370897,7.121287400075232],[117.08217082170825,7.11115593645593],[117.07137071370715,7.102713050106516],[117.06417064170643,7.126353131884869],[117.0569705697057,7.2023391090295945],[117.06057060570606,7.219224881728422],[117.06417064170643,7.225979190807948],[117.06417064170643,7.27157077709478],[117.06777067770679,7.280013663444194],[117.07497074970752,7.285079395253845],[117.08937089370897,7.2901451270634965],[117.10017100171001,7.295210858873148],[117.1217712177122,7.3205395179213895],[117.14697146971469,7.335736713350329],[117.15777157771578,7.34080244515998],[117.17217172171723,7.342491022429854]]],[[[93.73233732337326,7.3695082587479845],[93.73593735937362,7.350933908779268],[93.7287372873729,7.337425290620217],[93.71433714337144,7.3256052497310264],[93.69633696336962,7.315473786111738],[93.67833678336785,7.29858801341291],[93.64593645936458,7.258062158935729],[93.62793627936281,7.252996427126078],[93.61713617136172,7.2597507362056035],[93.61713617136172,7.266505045285143],[93.61713617136172,7.276636508904431],[93.61353613536136,7.286767972523734],[93.609936099361,7.295210858873148],[93.59553595535954,7.315473786111738],[93.60633606336063,7.3256052497310264],[93.609936099361,7.3475567542395055],[93.61713617136172,7.367819681478096],[93.6387363873639,7.37626256782751],[93.66753667536676,7.38301687690705],[93.67833678336785,7.3999026496058775],[93.68553685536858,7.421854154114342],[93.69633696336962,7.44549423589271],[93.69633696336962,7.41847699957458],[93.69993699936998,7.398214072335989],[93.71073710737107,7.388082608716687],[93.72153721537217,7.381328299637161],[93.73233732337326,7.3695082587479845]]],[[[93.42993429934302,7.95544457139728],[93.43353433534338,7.953755994127391],[93.45873458734587,7.911541562380336],[93.45873458734587,7.899721521491145],[93.45873458734587,7.879458594252554],[93.45513455134551,7.869327130633266],[93.44793447934478,7.87101570790314],[93.43713437134375,7.882835748792317],[93.42273422734229,7.891278635141731],[93.41553415534156,7.8929672124116195],[93.4011340113401,7.889590057871857],[93.39033390333907,7.886212903332094],[93.37953379533798,7.881147171522443],[93.36873368733688,7.87777001698268],[93.35433354333543,7.882835748792317],[93.34353343533434,7.891278635141731],[93.33993339933403,7.901410098761033],[93.33993339933403,7.91323013965021],[93.3471334713347,7.925050180539387],[93.33993339933403,7.931804489618926],[93.3327333273333,7.925050180539387],[93.32193321933221,7.925050180539387],[93.31473314733148,7.928427335079149],[93.30753307533075,7.938558798698452],[93.30393303933039,7.9503788395876285],[93.31473314733148,7.989216116794935],[93.32193321933221,8.002724734954],[93.34353343533434,8.012856198573289],[93.36873368733688,8.01792193038294],[93.39033390333907,8.016233353113051],[93.39393393933938,8.006101889493763],[93.39753397533974,7.997659003144349],[93.39753397533974,7.97570749863587],[93.4011340113401,7.967264612286456],[93.42273422734229,7.960510303206931],[93.42993429934302,7.95544457139728]]],[[[98.41958419584199,7.903098676030922],[98.42318423184236,7.908164407840559],[98.42678426784266,7.91323013965021],[98.43038430384303,7.916607294189973],[98.44118441184412,7.901410098761033],[98.44118441184412,7.886212903332094],[98.43038430384303,7.874392862442903],[98.39798397983981,7.864261398823615],[98.39438394383944,7.85075278066455],[98.39798397983981,7.81529265799702],[98.36198361983622,7.832178430695848],[98.3439834398344,7.832178430695848],[98.33678336783368,7.811915503457243],[98.33318333183331,7.786586844409015],[98.32238322383228,7.771389648980062],[98.30798307983082,7.768012494440299],[98.29358293582936,7.7781439580596015],[98.28638286382863,7.791652576218652],[98.28278282782827,7.855818512474201],[98.2791827918279,7.864261398823615],[98.27198271982724,7.87101570790314],[98.26838268382687,7.879458594252554],[98.26838268382687,7.889590057871857],[98.27198271982724,7.8929672124116195],[98.2791827918279,7.896344366951382],[98.28638286382863,7.903098676030922],[98.28278282782827,7.916607294189973],[98.27558275582754,7.921673025999624],[98.25758257582578,7.926738757809275],[98.25398253982542,7.928427335079149],[98.25758257582578,7.938558798698452],[98.26838268382687,7.947001685047866],[98.27558275582754,7.953755994127391],[98.27198271982724,7.962198880476805],[98.26478264782651,7.974018921365996],[98.26838268382687,7.984150384985284],[98.2791827918279,7.994281848604587],[98.28278282782827,8.002724734954],[98.2791827918279,8.014544775843177],[98.27558275582754,8.03311912581188],[98.27558275582754,8.068579248479423],[98.27558275582754,8.075333557558949],[98.2791827918279,8.083776443908363],[98.28638286382863,8.098973639337302],[98.289982899829,8.109105102956605],[98.289982899829,8.129368030195195],[98.289982899829,8.151319534703674],[98.28278282782827,8.191845389180855],[98.28638286382863,8.191845389180855],[98.289982899829,8.190156811910981],[98.29718297182973,8.18509108010133],[98.30438304383046,8.188468234641093],[98.31158311583118,8.18509108010133],[98.32238322383228,8.17833677102179],[98.32958329583295,8.169893884672376],[98.33678336783368,8.156385266513325],[98.3439834398344,8.109105102956605],[98.35118351183513,8.109105102956605],[98.35838358383586,8.119236566575907],[98.37278372783732,8.110793680226493],[98.39078390783908,8.09559648479754],[98.40518405184054,8.082087866638489],[98.41238412384126,8.093907907527665],[98.42318423184236,8.098973639337302],[98.43038430384303,8.09559648479754],[98.43758437584376,8.082087866638489],[98.43758437584376,8.06520209393966],[98.43038430384303,8.050004898510707],[98.41958419584199,8.028053394002242],[98.41598415984163,8.019610507652828],[98.41958419584199,8.001036157684112],[98.41958419584199,7.992593271334698],[98.41598415984163,7.989216116794935],[98.4087840878409,7.985838962255173],[98.40158401584017,7.9807732304455214],[98.39798397983981,7.9723303440961075],[98.39798397983981,7.95544457139728],[98.40158401584017,7.935181644158689],[98.4087840878409,7.918295871459861],[98.41958419584199,7.903098676030922]]],[[[93.5307353073531,8.034807703081768],[93.52713527135273,8.03311912581188],[93.51633516335164,8.028053394002242],[93.51273512735128,8.024676239462465],[93.50913509135091,8.01792193038294],[93.49473494734946,7.995970425874461],[93.48393483934842,7.992593271334698],[93.48033480334806,8.002724734954],[93.4767347673477,8.031430548542005],[93.48033480334806,8.039873434891419],[93.48753487534879,8.044939166701056],[93.49473494734946,8.050004898510707],[93.49833498334982,8.061824939399884],[93.50553505535055,8.061824939399884],[93.51633516335164,8.056759207590247],[93.51633516335164,8.063513516669772],[93.51273512735128,8.075333557558949],[93.49833498334982,8.082087866638489],[93.49113491134915,8.063513516669772],[93.48033480334806,8.063513516669772],[93.4659346593466,8.073644980289075],[93.45873458734587,8.090530752987888],[93.44793447934478,8.154696689243437],[93.44793447934478,8.16482815286274],[93.45513455134551,8.169893884672376],[93.4659346593466,8.183402502831441],[93.47313473134733,8.198599698260395],[93.4767347673477,8.208731161879683],[93.48753487534879,8.22055120276886],[93.50553505535055,8.2273055118484],[93.52353523535237,8.225616934578511],[93.5307353073531,8.213796893689334],[93.5307353073531,8.193533966450744],[93.519935199352,8.17833677102179],[93.50913509135091,8.166516730132614],[93.50553505535055,8.146253802894023],[93.50913509135091,8.129368030195195],[93.52353523535237,8.09559648479754],[93.53793537935383,8.056759207590247],[93.53793537935383,8.048316321240833],[93.5307353073531,8.034807703081768]]],[[[100.06840068400686,9.58661021410397],[100.07560075600759,9.584921636834082],[100.08640086400862,9.574790173214794],[100.09000090000899,9.561281555055729],[100.07920079200795,9.549461514166552],[100.07200072000722,9.522444277848422],[100.06840068400686,9.490361309720655],[100.06120061200613,9.463344073402524],[100.03240032400328,9.449835455243473],[100.02880028800291,9.443081146163934],[100.02880028800291,9.436326837084408],[100.02520025200255,9.429572528004869],[100.01800018000182,9.426195373465106],[100.01080010800109,9.426195373465106],[100.00360003600036,9.426195373465106],[99.95679956799569,9.421129641655469],[99.9459994599946,9.417752487115692],[99.94239942399423,9.438015414354282],[99.9351993519935,9.475164114291715],[99.92799927999283,9.493738464260417],[99.94239942399423,9.512312814229134],[99.93879938799387,9.530887164197836],[99.9315993159932,9.547772936896664],[99.92799927999283,9.56634728686538],[99.9351993519935,9.578167327754556],[99.96039960399605,9.58154448229432],[99.98559985599854,9.578167327754556],[100.04320043200431,9.564658709595491],[100.06120061200613,9.568035864135254],[100.06840068400686,9.58661021410397]]],[[[98.29718297182973,10.04928038605182],[98.2791827918279,10.050968963321708],[98.27558275582754,10.047591808781945],[98.27198271982724,10.042526076972294],[98.27558275582754,10.035771767892768],[98.28278282782827,10.029017458813229],[98.289982899829,10.023951727003592],[98.29358293582936,10.01888599519394],[98.289982899829,10.008754531574638],[98.26838268382687,10.002000222495113],[98.25758257582578,9.98680302706616],[98.25038250382505,9.968228677097457],[98.24318243182432,9.959785790748043],[98.22878228782287,9.954720058938392],[98.19278192781928,9.931079977160039],[98.17838178381783,9.932768554429913],[98.17478174781746,9.920948513540736],[98.17118171181716,9.912505627191322],[98.16758167581679,9.904062740841908],[98.17118171181716,9.897308431762383],[98.1459814598146,9.856782577285202],[98.13518135181351,9.844962536396025],[98.13158131581315,9.865225463634616],[98.12078120781212,9.861848309094853],[98.11718117181175,9.882111236333444],[98.11718117181175,9.90912847265156],[98.12078120781212,9.922637090810625],[98.12438124381242,9.931079977160039],[98.12798127981279,9.959785790748043],[98.14238142381424,9.963162945287806],[98.14958149581497,9.969917254367346],[98.15318153181533,9.976671563446871],[98.15318153181533,9.980048717986634],[98.16038160381606,9.983425872526396],[98.16398163981643,9.99186875887581],[98.16758167581679,10.002000222495113],[98.17118171181716,10.008754531574638],[98.17838178381783,10.01382026338429],[98.20718207182074,10.029017458813229],[98.2359823598236,10.05434611786147],[98.25398253982542,10.062789004210885],[98.27558275582754,10.056034695131359],[98.2791827918279,10.059411849671122],[98.28278282782827,10.059411849671122],[98.29718297182973,10.056034695131359],[98.29718297182973,10.04928038605182]]],[[[104.08244082440825,10.371798644599423],[104.08604086040862,10.353224294630706],[104.08604086040862,10.24853250389799],[104.04644046440467,10.150595022244786],[104.03204032040321,10.09656054960854],[104.05004050040503,10.069543313290424],[104.0428404284043,10.047591808781945],[104.0428404284043,10.035771767892768],[104.04644046440467,10.025640304273466],[104.05004050040503,10.008754531574638],[104.03564035640358,10.017197417924052],[104.03204032040321,10.022263149733703],[104.01044010440103,10.030706036083117],[103.99603996039963,10.074609045100061],[103.98523985239854,10.1590379085942],[103.95643956439568,10.233335308469037],[103.93843938439386,10.265418276596805],[103.90963909639095,10.289058358375172],[103.870038700387,10.307632708343874],[103.8556385563856,10.32114132650294],[103.84843848438487,10.359978603710246],[103.84483844838451,10.371798644599423],[103.85203852038524,10.373487221869297],[103.91323913239131,10.365044335519897],[103.9348393483935,10.366732912789772],[103.94203942039422,10.375175799139186],[103.94563945639459,10.380241530948837],[103.95643956439568,10.395438726377776],[103.96003960039599,10.398815880917539],[103.96723967239672,10.402193035457316],[103.97083970839708,10.412324499076604],[103.97443974439744,10.42414453996578],[103.97803978039781,10.432587426315195],[103.98163981639817,10.442718889934497],[103.99243992439926,10.449473199014022],[104.00324003240036,10.45116177628391],[104.01764017640176,10.439341735394734],[104.01044010440103,10.44609604447426],[104.08244082440825,10.371798644599423]]],[[[98.26838268382687,10.837845971087049],[98.27198271982724,10.819271621118332],[98.27198271982724,10.799008693879742],[98.27558275582754,10.783811498450802],[98.29718297182973,10.782122921180914],[98.28638286382863,10.768614303021849],[98.28278282782827,10.756794262132672],[98.28638286382863,10.744974221243496],[98.29718297182973,10.734842757624207],[98.289982899829,10.734842757624207],[98.289982899829,10.733154180354319],[98.289982899829,10.729777025814556],[98.289982899829,10.728088448544668],[98.27558275582754,10.704448366766314],[98.26838268382687,10.6960054804169],[98.25038250382505,10.692628325877138],[98.2359823598236,10.697694057686789],[98.23238232382323,10.707825521306077],[98.23238232382323,10.741597066703733],[98.23958239582396,10.73821991216397],[98.23958239582396,10.734842757624207],[98.25398253982542,10.746662798513384],[98.25038250382505,10.756794262132672],[98.23238232382323,10.768614303021849],[98.23238232382323,10.782122921180914],[98.24318243182432,10.814205889308681],[98.23958239582396,10.831091662007509],[98.2359823598236,10.834468816547286],[98.2215822158222,10.837845971087049],[98.2215822158222,10.841223125626811],[98.21798217982183,10.849666011976225],[98.21798217982183,10.85642032105575],[98.21798217982183,10.859797475595528],[98.19998199982001,10.881748980103993],[98.17838178381783,10.89863475280282],[98.17838178381783,10.89356902099317],[98.17478174781746,10.888503289183532],[98.17118171181716,10.885126134643755],[98.16398163981643,10.918897680041411],[98.1567815678157,10.923963411851062],[98.1459814598146,10.923963411851062],[98.13878138781388,10.9205862573113],[98.13878138781388,10.908766216422123],[98.13158131581315,10.903700484612472],[98.09918099180993,10.881748980103993],[98.08838088380884,10.87837182556423],[98.07758077580775,10.888503289183532],[98.08478084780847,10.903700484612472],[98.10998109981102,10.929029143660713],[98.11358113581139,10.934094875470365],[98.12798127981279,10.942537761819779],[98.13158131581315,10.945914916359541],[98.13158131581315,10.952669225439067],[98.13518135181351,10.971243575407783],[98.14238142381424,10.977997884487309],[98.15318153181533,10.981375039027071],[98.17118171181716,10.977997884487309],[98.19278192781928,10.971243575407783],[98.20718207182074,10.959423534518606],[98.21438214382147,10.944226339089653],[98.2215822158222,10.927340566390825],[98.2251822518225,10.907077639152234],[98.2251822518225,10.888503289183532],[98.23238232382323,10.869928939214816],[98.24318243182432,10.859797475595528],[98.25758257582578,10.849666011976225],[98.26838268382687,10.837845971087049]]],[[[98.2791827918279,11.80033501492018],[98.29358293582936,11.798646437650305],[98.30798307983082,11.776694933141826],[98.31878318783191,11.74967769682371],[98.32238322383228,11.731103346854994],[98.31878318783191,11.72266046050558],[98.31518315183155,11.719283305965817],[98.30798307983082,11.717594728695929],[98.30078300783009,11.714217574156166],[98.30078300783009,11.704086110536863],[98.30078300783009,11.673691719678985],[98.289982899829,11.631477287931915],[98.28638286382863,11.611214360693324],[98.29718297182973,11.590951433454734],[98.28278282782827,11.565622774406492],[98.28278282782827,11.509899724500357],[98.27558275582754,11.481193910912353],[98.26838268382687,11.487948219991878],[98.26478264782651,11.482882488182241],[98.26478264782651,11.479505333642464],[98.26118261182614,11.474439601832827],[98.26118261182614,11.467685292753288],[98.25038250382505,11.476128179102702],[98.2359823598236,11.49301395180153],[98.23238232382323,11.501456838150943],[98.2251822518225,11.494702529071418],[98.2251822518225,11.489636797261767],[98.2251822518225,11.482882488182241],[98.2251822518225,11.474439601832827],[98.2107821078211,11.472751024562939],[98.20358203582038,11.465996715483413],[98.20358203582038,11.459242406403874],[98.2215822158222,11.454176674594237],[98.2107821078211,11.449110942784586],[98.19998199982001,11.445733788244823],[98.18558185581855,11.445733788244823],[98.17478174781746,11.449110942784586],[98.16398163981643,11.454176674594237],[98.16398163981643,11.459242406403874],[98.16398163981643,11.474439601832827],[98.17478174781746,11.471062447293065],[98.18558185581855,11.472751024562939],[98.19278192781928,11.479505333642464],[98.19998199982001,11.487948219991878],[98.19638196381965,11.496391106341292],[98.19278192781928,11.518342610849771],[98.18918189181892,11.525096919929311],[98.18918189181892,11.5352283835486],[98.19638196381965,11.541982692628125],[98.20718207182074,11.548737001707664],[98.21438214382147,11.553802733517315],[98.2107821078211,11.56224561986673],[98.20718207182074,11.563934197136604],[98.19998199982001,11.568999928946255],[98.19998199982001,11.580819969835431],[98.20358203582038,11.589262856184845],[98.21798217982183,11.599394319804148],[98.2215822158222,11.61796866977285],[98.22878228782287,11.621345824312613],[98.2359823598236,11.623034401582501],[98.23958239582396,11.62472297885239],[98.23958239582396,11.636543019741566],[98.2359823598236,11.655117369710268],[98.23238232382323,11.666937410599445],[98.23958239582396,11.68720033783805],[98.26838268382687,11.741234810474296],[98.27198271982724,11.786826396761128],[98.2791827918279,11.80033501492018]]],[[[98.53478534785347,11.803712169459956],[98.5419854198542,11.798646437650305],[98.54918549185493,11.791892128570765],[98.55278552785529,11.781760664951477],[98.55638556385566,11.7699406240623],[98.55638556385566,11.75812058317311],[98.55638556385566,11.727726192315231],[98.54558545585456,11.699020378727226],[98.54918549185493,11.621345824312613],[98.54558545585456,11.609525783423436],[98.53118531185311,11.592640010724608],[98.52758527585274,11.580819969835431],[98.53118531185311,11.567311351676366],[98.53478534785347,11.541982692628125],[98.53478534785347,11.528474074469074],[98.52398523985244,11.536916960818488],[98.50958509585098,11.55549131078719],[98.49878498784989,11.563934197136604],[98.4879848798488,11.567311351676366],[98.4771847718477,11.570688506216143],[98.46638466384667,11.574065660755906],[98.45918459184594,11.584197124375194],[98.44118441184412,11.563934197136604],[98.43398433984339,11.567311351676366],[98.43038430384303,11.58250854710532],[98.43038430384303,11.604460051613785],[98.42318423184236,11.599394319804148],[98.41958419584199,11.599394319804148],[98.41598415984163,11.604460051613785],[98.41238412384126,11.611214360693324],[98.41958419584199,11.631477287931915],[98.4087840878409,11.646674483360854],[98.39798397983981,11.655117369710268],[98.39078390783908,11.663560256059682],[98.37998379983799,11.690577492377813],[98.38358383583835,11.704086110536863],[98.40518405184054,11.70746326507664],[98.39798397983981,11.715906151426054],[98.37998379983799,11.731103346854994],[98.37638376383762,11.73785765593452],[98.37998379983799,11.751366274093584],[98.38718387183872,11.754743428633347],[98.39078390783908,11.75812058317311],[98.39798397983981,11.761497737712887],[98.40158401584017,11.763186314982761],[98.4087840878409,11.768252046792412],[98.41238412384126,11.773317778602063],[98.40158401584017,11.775006355871938],[98.39078390783908,11.775006355871938],[98.38358383583835,11.776694933141826],[98.37638376383762,11.780072087681589],[98.36918369183695,11.788514974031003],[98.39438394383944,11.793580705840654],[98.43758437584376,11.786826396761128],[98.45198451984521,11.788514974031003],[98.44838448384485,11.793580705840654],[98.44838448384485,11.795269283110542],[98.44478444784448,11.803712169459956],[98.45918459184594,11.803712169459956],[98.4879848798488,11.795269283110542],[98.49878498784989,11.798646437650305],[98.52038520385207,11.80540074672983],[98.53478534785347,11.803712169459956]]],[[[98.60318603186033,11.96750416463857],[98.64278642786428,11.957372701019281],[98.6607866078661,11.948929814669867],[98.65718657186574,11.933732619240914],[98.65718657186574,11.940486928320453],[98.63198631986319,11.93204404197104],[98.57438574385748,11.93204404197104],[98.55278552785529,11.923601155621625],[98.53478534785347,11.908403960192672],[98.51678516785171,11.896583919303495],[98.49518495184952,11.888141032954081],[98.4771847718477,11.891518187493844],[98.4627846278463,11.920224001081849],[98.45918459184594,11.933732619240914],[98.45918459184594,11.947241237399979],[98.4627846278463,11.955684123749393],[98.46998469984703,11.970881319178332],[98.4735847358474,11.977635628257872],[98.46998469984703,11.98776709187716],[98.46638466384667,11.992832823686811],[98.45918459184594,11.996209978226574],[98.44838448384485,12.00803001911575],[98.44478444784448,12.011407173655527],[98.44118441184412,12.01478432819529],[98.43758437584376,12.026604369084467],[98.43758437584376,12.05699875994236],[98.43038430384303,12.087393150800239],[98.43038430384303,12.100901768959304],[98.43758437584376,12.11272180984848],[98.44478444784448,12.100901768959304],[98.4735847358474,12.07726168718095],[98.49518495184952,12.048555873592946],[98.50958509585098,12.016472905465164],[98.52038520385207,12.006341441845876],[98.5419854198542,11.9945214009567],[98.55998559985602,12.001275710036225],[98.57438574385748,11.992832823686811],[98.60318603186033,11.96750416463857]]],[[[102.4012240122401,12.043490141783295],[102.40482404824047,12.036735832703755],[102.41562415624156,12.018161482735053],[102.43362433624338,11.999587132766337],[102.44442444424448,11.984389937337397],[102.44082440824411,11.96750416463857],[102.42642426424266,11.960749855559044],[102.4120241202412,11.970881319178332],[102.37962379623798,12.002964287306114],[102.37602376023762,11.991144246416923],[102.37962379623798,11.979324205527746],[102.37602376023762,11.970881319178332],[102.36162361623616,11.96750416463857],[102.35082350823507,11.969192741908458],[102.31122311223112,11.981012782797634],[102.31122311223112,11.974258473718109],[102.31482314823148,11.970881319178332],[102.31842318423185,11.960749855559044],[102.31122311223112,11.965815587368695],[102.30762307623075,11.969192741908458],[102.30042300423003,11.97256989644822],[102.28962289622899,11.974258473718109],[102.28962289622899,11.981012782797634],[102.29322293222936,11.9945214009567],[102.29322293222936,12.05699875994236],[102.28602286022863,12.067130223561648],[102.25722257222571,12.131296159817197],[102.27162271622717,12.131296159817197],[102.26442264422644,12.13973904616661],[102.26082260822608,12.144804777976248],[102.25722257222571,12.148181932516025],[102.25002250022499,12.153247664325662],[102.2680226802268,12.153247664325662],[102.29322293222936,12.144804777976248],[102.31122311223112,12.146493355246136],[102.3436234362344,12.122853273467783],[102.35442354423543,12.111033232578606],[102.36522365223652,12.097524614419541],[102.37962379623798,12.0721959553713],[102.38682386823871,12.058687337212234],[102.4012240122401,12.048555873592946],[102.4012240122401,12.043490141783295]]],[[[98.09558095580957,12.187019209723317],[98.10638106381066,12.192084941532968],[98.12078120781212,12.19715067334262],[98.13158131581315,12.198839250612494],[98.13878138781388,12.190396364263094],[98.13878138781388,12.148181932516025],[98.13878138781388,12.138050468896722],[98.12798127981279,12.153247664325662],[98.11718117181175,12.165067705214852],[98.09918099180993,12.168444859754615],[98.08118081180811,12.160001973405201],[98.07758077580775,12.161690550675075],[98.07398073980738,12.163379127944964],[98.07398073980738,12.165067705214852],[98.05958059580598,12.188707786993206],[98.0379803798038,12.207282136961908],[98.03438034380343,12.220790755120973],[98.0379803798038,12.23936510508969],[98.04518045180453,12.261316609598154],[98.05958059580598,12.281579536836759],[98.07398073980738,12.290022423186173],[98.0919809198092,12.288333845916284],[98.10998109981102,12.284956691376522],[98.12078120781212,12.27482522775722],[98.12438124381242,12.25962803232828],[98.12438124381242,12.249496568708977],[98.12078120781212,12.230922218740275],[98.11718117181175,12.220790755120973],[98.10998109981102,12.214036446041447],[98.1027810278103,12.207282136961908],[98.09918099180993,12.198839250612494],[98.09558095580957,12.187019209723317]]],[[[98.06678066780671,12.366008400330884],[98.06318063180635,12.359254091251358],[98.04878048780489,12.330548277663354],[98.0379803798038,12.32210539131394],[98.03078030780307,12.3153510822344],[98.01998019980203,12.311973927694638],[98.00918009180094,12.310285350424763],[98.00918009180094,12.305219618615112],[98.00198001980021,12.269759495947568],[97.99117991179912,12.286645268646396],[97.98757987579876,12.290022423186173],[97.9839798397984,12.306908195885],[97.969579695797,12.308596773154875],[97.95517955179554,12.305219618615112],[97.94437944379445,12.310285350424763],[97.94797947979481,12.323793968583814],[97.96237962379627,12.333925432203117],[97.969579695797,12.344056895822419],[97.96597965979663,12.359254091251358],[97.95157951579517,12.349122627632056],[97.94797947979481,12.344056895822419],[97.94437944379445,12.33730258674288],[97.93717937179372,12.33730258674288],[97.94077940779408,12.366008400330884],[97.95517955179554,12.37782844122006],[97.97677976779767,12.3845827502996],[98.00558005580058,12.401468522998428],[98.01638016380167,12.403157100268302],[98.02358023580234,12.398091368458665],[98.01638016380167,12.389648482109251],[98.00918009180094,12.379517018489949],[98.00198001980021,12.374451286680298],[98.00558005580058,12.367696977600772],[98.0127801278013,12.359254091251358],[98.0271802718027,12.360942668521247],[98.03078030780307,12.360942668521247],[98.04158041580416,12.359254091251358],[98.04158041580416,12.369385554870647],[98.04158041580416,12.379517018489949],[98.04518045180453,12.389648482109251],[98.06318063180635,12.398091368458665],[98.07038070380707,12.409911409347842],[98.07398073980738,12.421731450237019],[98.07758077580775,12.42679718204667],[98.0919809198092,12.421731450237019],[98.1027810278103,12.40484567753819],[98.1027810278103,12.382894173029712],[98.09558095580957,12.366008400330884],[98.08838088380884,12.359254091251358],[98.08118081180811,12.360942668521247],[98.07398073980738,12.36431982306101],[98.06678066780671,12.366008400330884]]],[[[98.46638466384667,12.583834868145757],[98.46998469984703,12.556817631827627],[98.46998469984703,12.517980354620335],[98.46638466384667,12.480831654682916],[98.45558455584558,12.457191572904549],[98.39078390783908,12.360942668521247],[98.35118351183513,12.325482545853703],[98.30078300783009,12.33730258674288],[98.31158311583118,12.359254091251358],[98.31518315183155,12.366008400330884],[98.31878318783191,12.386271327569474],[98.33318333183331,12.42679718204667],[98.33678336783368,12.450437263825023],[98.33318333183331,12.460568727444326],[98.32598325983258,12.474077345603376],[98.32238322383228,12.487585963762442],[98.31518315183155,12.490963118302204],[98.31518315183155,12.496028850111855],[98.31878318783191,12.501094581921507],[98.32598325983258,12.506160313731158],[98.33318333183331,12.512914622810683],[98.33318333183331,12.519668931890209],[98.31518315183155,12.553440477287864],[98.30438304383046,12.599032063574697],[98.30078300783009,12.646312227131418],[98.31518315183155,12.686838081608599],[98.33318333183331,12.67164088617966],[98.38718387183872,12.658132268020594],[98.40518405184054,12.639557918051892],[98.40518405184054,12.62942645443259],[98.39798397983981,12.58721202268552],[98.40158401584017,12.57201482725658],[98.42678426784266,12.529800395509511],[98.43038430384303,12.555129054557753],[98.43758437584376,12.58721202268552],[98.45198451984521,12.604097795384348],[98.46638466384667,12.583834868145757]]],[[[98.29718297182973,13.085342317300913],[98.30438304383046,13.083653740031039],[98.31158311583118,13.088719471840676],[98.31878318783191,13.092096626380453],[98.32958329583295,13.085342317300913],[98.33678336783368,13.073522276411737],[98.33318333183331,13.066767967332211],[98.32238322383228,13.056636503712909],[98.31518315183155,13.048193617363495],[98.31158311583118,13.044816462823732],[98.30798307983082,13.039750731014081],[98.30078300783009,13.029619267394793],[98.30078300783009,13.01948780377549],[98.30078300783009,12.989093412917597],[98.31158311583118,12.945190403900654],[98.31518315183155,12.924927476662063],[98.30078300783009,12.913107435772886],[98.30078300783009,12.933370363011477],[98.28638286382863,12.95701044478983],[98.289982899829,12.975584794758547],[98.28278282782827,12.994159144727249],[98.26838268382687,13.056636503712909],[98.24678246782469,13.119113862698569],[98.23958239582396,13.13937678993716],[98.23958239582396,13.157951139905876],[98.24318243182432,13.203542726192708],[98.24678246782469,13.215362767081885],[98.26118261182614,13.213674189811996],[98.26838268382687,13.198476994383057],[98.289982899829,13.098850935459978],[98.29718297182973,13.085342317300913]]],[[[94.66114661146611,16.221030307473086],[94.66834668346684,16.17206156664649],[94.65394653946538,16.121404248550007],[94.62874628746289,16.075812662263175],[94.57834578345785,16.013335303277515],[94.57114571145712,16.0048924169281],[94.5531455314553,15.998138107848575],[94.49914499144995,15.979563757879859],[94.4847448474485,15.971120871530445],[94.47754477544777,15.966055139720808],[94.47754477544777,15.957612253371394],[94.47754477544777,15.94916936702198],[94.47754477544777,15.94241505794244],[94.46674466744668,15.930595017053264],[94.44514445144455,15.913709244354436],[94.43794437944382,15.900200626195371],[94.44154441544418,15.885003430766432],[94.43434434344346,15.869806235337492],[94.40914409144091,15.8394118444796],[94.40194401944018,15.8394118444796],[94.40194401944018,15.846166153559125],[94.41634416344164,15.871494812607366],[94.40914409144091,15.90695493527491],[94.38394383943842,15.96943229426057],[94.39114391143914,16.001515262388338],[94.41634416344164,16.018401035087166],[94.45234452344522,16.033598230516105],[94.4847448474485,16.058926889564347],[94.49554495544959,16.075812662263175],[94.50994509945099,16.107895630390942],[94.51714517145172,16.119715671280133],[94.54954549545494,16.148421484868138],[94.61074610746107,16.221030307473086],[94.64314643146434,16.244670389251453],[94.66114661146611,16.221030307473086]]],[[[97.5879758797588,16.415216693509606],[97.5879758797588,16.400019498080653],[97.59157591575917,16.36118222087336],[97.5879758797588,16.340919293634755],[97.58437584375844,16.32909925274558],[97.57717577175771,16.320656366396165],[97.57357573575734,16.31221348004675],[97.56997569975698,16.2987048618877],[97.56997569975698,16.290261975538286],[97.56637566375667,16.253113275600853],[97.56997569975698,16.222718884742974],[97.54837548375485,16.200767380234495],[97.51597515975163,16.20921026658391],[97.5087750877509,16.25480185287074],[97.49797497974981,16.26999904829968],[97.45837458374587,16.302082016427462],[97.4691746917469,16.33247640728534],[97.48357483574836,16.342607870904644],[97.48357483574836,16.364559375413123],[97.47997479974799,16.389888034461364],[97.47277472774726,16.408462384430067],[97.46197461974623,16.425348157128894],[97.4547745477455,16.43716819801807],[97.45117451174514,16.448988238907248],[97.4547745477455,16.455742547986787],[97.46197461974623,16.46080827979644],[97.4655746557466,16.467562588875964],[97.45837458374587,16.477694052495252],[97.4691746917469,16.491202670654317],[97.48717487174872,16.50133413427362],[97.50517505175054,16.508088443353145],[97.51957519575194,16.511465597892908],[97.56277562775631,16.492891247924206],[97.58437584375844,16.486136938844666],[97.60597605976062,16.482759784304903],[97.60957609576099,16.4641854343362],[97.60957609576099,16.445611084367485],[97.5879758797588,16.415216693509606]]],[[[93.74673746737466,18.799487798583968],[93.74673746737466,18.78766775769479],[93.75753757537575,18.765716253186312],[93.75753757537575,18.755584789567024],[93.75753757537575,18.731944707788657],[93.74673746737466,18.708304626010303],[93.73233732337326,18.6897302760416],[93.71073710737107,18.676221657882536],[93.69273692736931,18.674533080612647],[93.66753667536676,18.674533080612647],[93.64593645936458,18.6795988124223],[93.63513635136354,18.686353121501824],[93.63153631536318,18.69986173966089],[93.61713617136172,18.711681780550066],[93.59553595535954,18.730256130518782],[93.49833498334982,18.841702230331038],[93.49473494734946,18.85014511668045],[93.48393483934842,18.875473775728693],[93.57753577535777,18.88222808480822],[93.5991359913599,18.890670971157633],[93.609936099361,18.905868166586586],[93.62073620736209,18.910933898396223],[93.64233642336427,18.88898239388776],[93.6639366393664,18.873785198458805],[93.67473674736749,18.870408043919042],[93.68193681936822,18.868719466649154],[93.70713707137071,18.868719466649154],[93.74313743137435,18.87209662118893],[93.75033750337502,18.86534231210939],[93.75033750337502,18.841702230331038],[93.74673746737466,18.811307839473145],[93.74673746737466,18.799487798583968]]],[[[93.969939699397,19.41750707936103],[93.97353973539737,19.40230988393209],[93.97353973539737,19.3820469566935],[93.96633966339664,19.363472606724784],[93.95553955539555,19.355029720375384],[93.94113941139415,19.348275411295845],[93.9159391593916,19.31788102043795],[93.90153901539014,19.306060979548775],[93.89793897938978,19.302683825009012],[93.89433894338947,19.300995247739138],[93.8907389073891,19.29930667046925],[93.88353883538838,19.300995247739138],[93.87993879938801,19.306060979548775],[93.87993879938801,19.312815288628315],[93.87633876338765,19.31450386589819],[93.8619386193862,19.307749556818663],[93.8619386193862,19.29930667046925],[93.86553865538656,19.290863784119836],[93.86553865538656,19.28242089777042],[93.85833858338583,19.27904374323066],[93.84393843938443,19.27735516596077],[93.82233822338225,19.27904374323066],[93.80433804338043,19.27735516596077],[93.7971379713797,19.27904374323066],[93.78633786337866,19.285798052310184],[93.77553775537757,19.29930667046925],[93.75033750337502,19.333078215866905],[93.74673746737466,19.344898256756082],[93.74313743137435,19.355029720375384],[93.73233732337326,19.368538338534435],[93.73233732337326,19.378669802153738],[93.7287372873729,19.3820469566935],[93.7287372873729,19.38373553396339],[93.72513725137253,19.38711268850315],[93.72513725137253,19.392178420312803],[93.72513725137253,19.39724415212244],[93.73233732337326,19.39724415212244],[93.73593735937362,19.39724415212244],[93.73953739537399,19.40399846120198],[93.7287372873729,19.41919565663092],[93.7179371793718,19.427638542980333],[93.68193681936822,19.437770006599635],[93.66753667536676,19.44621289294905],[93.66033660336603,19.458032933838226],[93.64233642336427,19.49180447923588],[93.6531365313653,19.493493056505756],[93.65673656736567,19.49687021104552],[93.65673656736567,19.503624520125058],[93.64953649536494,19.513755983744346],[93.68913689136895,19.55934757003118],[93.69633696336962,19.561036147301067],[93.70353703537035,19.557658992761304],[93.72513725137253,19.555970415491416],[93.73233732337326,19.55428183822154],[93.73953739537399,19.547527529142002],[93.74673746737466,19.539084642792588],[93.75033750337502,19.530641756443174],[93.75393753937539,19.52219887009376],[93.80433804338043,19.48673874742623],[93.81873818738188,19.47154155199729],[93.8367383673837,19.47998443834669],[93.85833858338583,19.48167301561658],[93.87993879938801,19.47998443834669],[93.89793897938978,19.468164397457514],[93.9159391593916,19.454655779298463],[93.95553955539555,19.432704274789984],[93.969939699397,19.41750707936103]]],[[[93.50553505535055,19.807568428703945],[93.51633516335164,19.777174037846052],[93.519935199352,19.761976842417113],[93.51273512735128,19.745091069718285],[93.45513455134551,19.78899407873523],[93.44073440734411,19.810945583243708],[93.40833408334083,19.920703105786075],[93.4011340113401,19.952786073913856],[93.42273422734229,19.951097496643968],[93.44433444334442,19.937588878484902],[93.45513455134551,19.92914599213549],[93.46233462334624,19.9190145285162],[93.46233462334624,19.91394879670655],[93.46953469534697,19.905505910357135],[93.48393483934842,19.89706302400772],[93.49833498334982,19.886931560388433],[93.50553505535055,19.87173436495948],[93.50193501935019,19.826142778672647],[93.50553505535055,19.807568428703945]]],[[[92.96552965529656,20.03721493740798],[92.96912969129693,20.02201774197904],[93.0159301593016,19.905505910357135],[93.02313023130233,19.870045787689605],[93.02313023130233,19.827831355942536],[93.01953019530197,19.827831355942536],[93.01233012330124,19.846405705911238],[93.00873008730088,19.890308714928196],[93.00153001530015,19.907194487627024],[92.98712987129875,19.925768837595726],[92.92592925929262,20.03383778286822],[92.92232922329225,20.050723555567046],[92.91872918729189,20.055789287376697],[92.91512915129152,20.05916644191646],[92.9079290792908,20.065920750996],[92.9079290792908,20.074363637345414],[92.91152911529116,20.084495100964702],[92.91512915129152,20.089560832774353],[92.92232922329225,20.087872255504465],[92.92952929529298,20.08111794642494],[92.94752947529474,20.070986482805637],[92.95112951129511,20.062543596456223],[92.95832958329584,20.05410071010681],[92.9619296192962,20.045657823757395],[92.96552965529656,20.03721493740798]]],[[[107.08127081270811,20.80045186339497],[107.08487084870848,20.797074708855206],[107.08847088470884,20.793697554315443],[107.09567095670957,20.786943245235904],[107.08127081270811,20.788631822505792],[107.07407074070744,20.795386131585317],[107.06687066870671,20.813960481554034],[107.06327063270635,20.80551759520462],[107.06327063270635,20.79876328612508],[107.06687066870671,20.792008977045555],[107.07407074070744,20.786943245235904],[107.07407074070744,20.780188936156378],[107.05967059670598,20.775123204346727],[107.04887048870489,20.775123204346727],[107.04167041670416,20.780188936156378],[107.03087030870307,20.786943245235904],[107.0380703807038,20.766680317997313],[107.06687066870671,20.749794545298485],[107.07407074070744,20.732908772599657],[107.06687066870671,20.732908772599657],[107.06687066870671,20.739663081679197],[107.05967059670598,20.739663081679197],[107.05607056070562,20.72108873171048],[107.04527045270453,20.704202959011653],[107.04527045270453,20.726154463520132],[107.0380703807038,20.72277730898037],[107.03447034470344,20.72108873171048],[107.03087030870307,20.717711577170718],[107.03087030870307,20.726154463520132],[107.02727027270276,20.717711577170718],[107.02007020070204,20.72277730898037],[107.01647016470167,20.726154463520132],[107.01647016470167,20.732908772599657],[107.0380703807038,20.732908772599657],[107.0380703807038,20.739663081679197],[107.03447034470344,20.74135165894907],[107.03447034470344,20.74304023621896],[107.03087030870307,20.746417390758722],[107.02727027270276,20.746417390758722],[107.02727027270276,20.739663081679197],[107.01647016470167,20.739663081679197],[107.01647016470167,20.74304023621896],[107.00927009270094,20.74810596802861],[107.00567005670058,20.753171699838248],[106.99846998469985,20.753171699838248],[107.00207002070022,20.74304023621896],[107.00567005670058,20.739663081679197],[107.00567005670058,20.732908772599657],[106.9840698406984,20.744728813488834],[106.96246962469627,20.775123204346727],[106.95166951669518,20.786943245235904],[106.92286922869232,20.80382901793473],[106.90846908469086,20.81902621336367],[106.91206912069123,20.837600563332387],[106.93726937269372,20.844354872411913],[106.94446944469445,20.849420604221564],[106.94806948069481,20.856174913301103],[106.94806948069481,20.86292922238063],[106.94806948069481,20.869683531460154],[106.9588695886959,20.876437840539694],[106.95166951669518,20.869683531460154],[106.96246962469627,20.856174913301103],[106.99486994869949,20.851109181491452],[107.00567005670058,20.84266629514204],[107.01287012870131,20.84266629514204],[107.01287012870131,20.859552067840866],[107.0236702367024,20.86292922238063],[107.03447034470344,20.857863490570978],[107.04527045270453,20.849420604221564],[107.04527045270453,20.84266629514204],[107.04167041670416,20.83084625425286],[107.05607056070562,20.824091945173322],[107.07047070470708,20.82071479063356],[107.08127081270811,20.82071479063356],[107.08847088470884,20.82071479063356],[107.0920709207092,20.813960481554034],[107.09567095670957,20.808894749744383],[107.09927099270993,20.80382901793473],[107.10647106471066,20.80045186339497],[107.08847088470884,20.80551759520462],[107.08127081270811,20.807206172474494],[107.08127081270811,20.80045186339497]]],[[[-156.8481684816848,20.876437840539694],[-156.83376833768338,20.86124064511074],[-156.8157681576816,20.84097771787215],[-156.8049680496805,20.82578052244321],[-156.8049680496805,20.812271904284145],[-156.80856808568086,20.795386131585317],[-156.83016830168302,20.76330316345755],[-156.8769687696877,20.744728813488834],[-156.9129691296913,20.734597349869546],[-156.96336963369635,20.732908772599657],[-156.98136981369814,20.759926008917787],[-156.98856988569887,20.78356609069614],[-156.98856988569887,20.802140440664857],[-156.98856988569887,20.82578052244321],[-156.9921699216992,20.8460434496818],[-157.01017010170102,20.856174913301103],[-157.04977049770497,20.871372108730043],[-157.06417064170643,20.889946458698745],[-157.0569705697057,20.911897963207224],[-157.03177031770318,20.922029426826526],[-156.9921699216992,20.927095158636163],[-156.89136891368912,20.913586540477112],[-156.8481684816848,20.876437840539694]]],[[[110.54810548105485,21.036852681178544],[110.54450544505448,21.02334406301948],[110.52650526505266,20.989572517621824],[110.51930519305193,20.972686744922996],[110.5229052290523,20.962555281303707],[110.52650526505266,20.95073524041453],[110.52650526505266,20.942292354065117],[110.51570515705157,20.937226622255466],[110.50850508505084,20.94060377679523],[110.50130501305011,20.947358085874768],[110.50130501305011,20.957489549494056],[110.50130501305011,20.969309590383233],[110.49410494104944,20.977752476732647],[110.47610476104762,20.991261094891712],[110.4581045810458,21.001392558511014],[110.44010440104404,21.00645829032065],[110.36450364503645,21.00645829032065],[110.33210332103323,20.996326826701363],[110.29970299702995,20.98112963127241],[110.26730267302673,20.972686744922996],[110.2457024570246,20.98619536308206],[110.260102601026,20.9929496721616],[110.26370263702637,21.004769713050777],[110.260102601026,21.016589753939954],[110.2457024570246,21.02840979482913],[110.26370263702637,21.03347552663878],[110.27450274502746,21.035164103908656],[110.28890288902892,21.03347552663878],[110.28890288902892,21.040229835718307],[110.27810278102783,21.041918412988196],[110.2709027090271,21.04529556752796],[110.2709027090271,21.052049876607484],[110.27450274502746,21.060492762956898],[110.28890288902892,21.053738453877372],[110.31050310503105,21.053738453877372],[110.32850328503287,21.057115608417135],[110.3357033570336,21.06893564930631],[110.32130321303214,21.063869917496675],[110.30690306903068,21.060492762956898],[110.29610296102965,21.063869917496675],[110.28890288902892,21.074001381115963],[110.34290342903432,21.074001381115963],[110.37170371703718,21.080755690195502],[110.389703897039,21.095952885624442],[110.40050400504003,21.063869917496675],[110.40770407704076,21.04867272206772],[110.41850418504185,21.040229835718307],[110.42210422104222,21.052049876607484],[110.43290432904331,21.057115608417135],[110.4437044370444,21.060492762956898],[110.4581045810458,21.060492762956898],[110.45090450904507,21.060492762956898],[110.47250472504726,21.062181340226786],[110.48330483304835,21.067247072036437],[110.49410494104944,21.07568995838585],[110.50850508505084,21.082444267465377],[110.52650526505266,21.082444267465377],[110.53730537305375,21.07231280384609],[110.54450544505448,21.057115608417135],[110.54810548105485,21.036852681178544]]],[[[107.58167581675815,21.21246471724635],[107.60327603276033,21.219219026325874],[107.6068760687607,21.217530449056],[107.60327603276033,21.20571040816681],[107.58887588875888,21.193890367277632],[107.55647556475566,21.171938862769167],[107.54567545675457,21.156741667340214],[107.53847538475384,21.156741667340214],[107.52407524075244,21.160118821879976],[107.50247502475025,21.139855894641386],[107.47007470074703,21.095952885624442],[107.45927459274594,21.09088715381479],[107.4340743407434,21.080755690195502],[107.42327423274236,21.074001381115963],[107.38727387273872,21.046984144797847],[107.37287372873732,21.058804185687023],[107.38007380073805,21.082444267465377],[107.39447394473945,21.10608434924373],[107.40167401674017,21.126347276482335],[107.40527405274054,21.13816731737151],[107.41247412474127,21.166873130959516],[107.419674196742,21.197267521817395],[107.42327423274236,21.197267521817395],[107.4340743407434,21.188824635467995],[107.43767437674376,21.197267521817395],[107.44127441274412,21.204021830896934],[107.44847448474485,21.20571040816681],[107.44487444874449,21.21246471724635],[107.44487444874449,21.227661912675288],[107.44487444874449,21.25299057172353],[107.44847448474485,21.264810612612706],[107.45207452074521,21.271564921692246],[107.45567455674558,21.27494207623201],[107.45927459274594,21.276630653501883],[107.4628746287463,21.276630653501883],[107.46647466474667,21.276630653501883],[107.47007470074703,21.27494207623201],[107.48087480874807,21.266499189882595],[107.50607506075062,21.239481953564464],[107.50967509675098,21.234416221754827],[107.51687516875171,21.234416221754827],[107.52407524075244,21.23103906721505],[107.52407524075244,21.222596180865636],[107.52407524075244,21.214153294516223],[107.5276752767528,21.207398985436697],[107.5276752767528,21.204021830896934],[107.53127531275311,21.198956099087283],[107.53847538475384,21.198956099087283],[107.54567545675457,21.202333253627046],[107.58167581675815,21.21246471724635]]],[[[91.93591935919358,21.759563752688337],[91.93951939519394,21.715660743671393],[91.97551975519758,21.64811765287608],[91.98271982719831,21.609280375668774],[91.98271982719831,21.58732887116031],[91.97191971919722,21.546803016683114],[91.97191971919722,21.52316293490476],[91.96111961119612,21.506277162205933],[91.93951939519394,21.50458858493606],[91.91431914319145,21.509654316745696],[91.89631896318963,21.506277162205933],[91.89631896318963,21.501211430396282],[91.89991899918999,21.494457121316756],[91.89991899918999,21.486014234967342],[91.8891188911889,21.48094850315769],[91.87831878318786,21.48094850315769],[91.86751867518677,21.486014234967342],[91.86391863918641,21.494457121316756],[91.85671856718568,21.513031471285473],[91.85671856718568,21.519785780364998],[91.85671856718568,21.526540089444524],[91.87111871118714,21.548491593953003],[91.8747187471875,21.558623057572305],[91.8747187471875,21.58226313935066],[91.86751867518677,21.62278899382784],[91.84951849518495,21.688643507353262],[91.85311853118532,21.72579220729068],[91.86391863918641,21.746055134529286],[91.87111871118714,21.754498020878685],[91.88191881918823,21.754498020878685],[91.89631896318963,21.74267797998951],[91.90351903519036,21.730857939100332],[91.89991899918999,21.715660743671393],[91.8891188911889,21.698774970972565],[91.8891188911889,21.6852663528135],[91.90351903519036,21.702152125512328],[91.91071910719108,21.72748078456057],[91.90711907119072,21.75280944360881],[91.89991899918999,21.77476094811729],[91.91791917919181,21.776449525387164],[91.93591935919358,21.781515257196816],[91.93591935919358,21.764629484497988],[91.93591935919358,21.759563752688337]]],[[[-160.11340113401133,22.001030302281563],[-160.09540095400953,22.007784611361103],[-160.07740077400774,22.007784611361103],[-160.05940059400595,22.001030302281563],[-160.05220052200522,21.98245595231286],[-160.05940059400595,21.974013065963447],[-160.07380073800738,21.958815870534494],[-160.0810008100081,21.938552943295903],[-160.07380073800738,21.911535706977787],[-160.08460084600847,21.89296135700907],[-160.10260102601026,21.886207047929545],[-160.1170011700117,21.87776416158013],[-160.1350013500135,21.87269842977048],[-160.16020160201603,21.859189811611415],[-160.1710017100171,21.849058347992127],[-160.17820178201782,21.833861152563173],[-160.19260192601925,21.80515533897517],[-160.19980199801998,21.783203834466704],[-160.21060210602107,21.779826679926927],[-160.2250022500225,21.78995814354623],[-160.2358023580236,21.793335298085992],[-160.24660246602465,21.828795420753536],[-160.24660246602465,21.850746925262],[-160.2358023580236,21.87438700704037],[-160.19620196201961,21.911535706977787],[-160.16380163801637,21.93517578875614],[-160.12420124201242,21.95712729326462],[-160.1170011700117,21.968947334153796],[-160.11340113401133,21.98245595231286],[-160.11340113401133,22.001030302281563]]],[[[91.14751147511475,22.357320106226823],[91.15471154711548,22.33199144717858],[91.1727117271173,22.32017140628939],[91.17991179911797,22.28302270635197],[91.18351183511834,22.261071201843507],[91.1871118711187,22.22729965644585],[91.16911169111694,22.196905265587958],[91.16191161911621,22.18170807015902],[91.15471154711548,22.169888029269842],[91.14031140311403,22.146247947491474],[91.12231122311226,22.131050752062535],[91.1079110791108,22.120919288443233],[91.09351093510935,22.11923071117336],[91.08271082710826,22.100656361204642],[91.0647106471065,22.090524897585354],[91.03951039510395,22.090524897585354],[91.02151021510218,22.09559062939499],[91.01071010710109,22.10234493847453],[91.00351003510036,22.11754213390347],[91.03231032310322,22.147936524761363],[91.0539105391054,22.17495376107948],[91.05751057510577,22.191839533778307],[91.06831068310686,22.240808274604916],[91.06831068310686,22.311728519939976],[91.07551075510759,22.38940307435459],[91.09351093510935,22.391091651624464],[91.12591125911263,22.374205878925636],[91.14751147511475,22.357320106226823]]],[[[91.46791467914682,22.58696661493086],[91.5579155791558,22.478897669658366],[91.56511565115653,22.434994660641422],[91.55431554315544,22.401223115243766],[91.50751507515076,22.396157383434115],[91.47511475114754,22.413043156132943],[91.44631446314463,22.453569010610124],[91.42831428314287,22.49240628781743],[91.4247142471425,22.5244892559452],[91.44631446314463,22.57683515131157],[91.46791467914682,22.58696661493086]]],[[[123.81423814238144,24.392055716435465],[123.83583835838357,24.395432870975228],[123.87183871838721,24.39036713916559],[123.91143911439116,24.380235675546288],[123.93303933039334,24.366727057387223],[123.93663936639365,24.34139839833898],[123.91503915039152,24.307626852941326],[123.87183871838721,24.25865811211473],[123.85023850238503,24.256969534844856],[123.74583745837458,24.28060961662321],[123.68463684636845,24.28567534843286],[123.66663666636668,24.29580681205215],[123.68463684636845,24.32282404837028],[123.68823688236881,24.32113547110039],[123.69183691836918,24.319446893830516],[123.6990369903699,24.31606973929074],[123.70623706237063,24.32788978017993],[123.71703717037173,24.324512625640153],[123.72783727837282,24.31606973929074],[123.74223742237422,24.319446893830516],[123.74943749437494,24.329578357449805],[123.75303753037531,24.36503848011735],[123.7638376383764,24.40049860278488],[123.76743767437677,24.408941489134293],[123.77103771037713,24.419072952753595],[123.77823778237786,24.419072952753595],[123.78543785437853,24.415695798213818],[123.79263792637926,24.408941489134293],[123.81423814238144,24.392055716435465]]],[[[118.39258392583929,24.522076166216436],[118.42138421384215,24.527141898026088],[118.450184501845,24.50519039351761],[118.46818468184682,24.461287384500665],[118.46458464584646,24.43089299364277],[118.450184501845,24.415695798213818],[118.42138421384215,24.43089299364277],[118.40338403384033,24.435958725452423],[118.37458374583747,24.432581570912646],[118.34578345783461,24.417384375483707],[118.33138331383316,24.397121448245116],[118.3169831698317,24.39036713916559],[118.30258302583024,24.397121448245116],[118.29178291782921,24.397121448245116],[118.28458284582848,24.40049860278488],[118.28098280982812,24.408941489134293],[118.28098280982812,24.41063006640418],[118.28818288182885,24.42076153002347],[118.29178291782921,24.42582726183312],[118.29178291782921,24.432581570912646],[118.29178291782921,24.44102445726206],[118.28818288182885,24.456221652691013],[118.28458284582848,24.469730270850064],[118.28098280982812,24.47817315719948],[118.28818288182885,24.479861734469367],[118.3169831698317,24.493370352628432],[118.35658356583565,24.469730270850064],[118.3817838178382,24.47310742538984],[118.38538385383856,24.50350181624772],[118.39258392583929,24.522076166216436]]],[[[124.32904329043294,24.582864947932208],[124.3326433264333,24.57104490704303],[124.32544325443257,24.560913443423743],[124.31824318243184,24.55247055707433],[124.30744307443075,24.5355847843755],[124.27504275042753,24.48830462081878],[124.26064260642607,24.44609018907171],[124.25344253442535,24.402187180054767],[124.24264242642425,24.36334990284746],[124.21024210242103,24.336332666529344],[124.17784177841781,24.332955511989567],[124.14184141841417,24.34139839833898],[124.12384123841241,24.359972748307698],[124.14184141841417,24.38530140735594],[124.13104131041314,24.392055716435465],[124.12744127441277,24.40387575732464],[124.12384123841241,24.414007220943944],[124.10584105841059,24.419072952753595],[124.08784087840877,24.422450107293358],[124.07704077040773,24.429204416372883],[124.07704077040773,24.435958725452423],[124.0950409504095,24.439335879992186],[124.10224102241023,24.44609018907171],[124.11304113041132,24.46297596177054],[124.11664116641168,24.46804169358019],[124.12744127441277,24.469730270850064],[124.1346413464135,24.464664539040427],[124.1346413464135,24.456221652691013],[124.13824138241381,24.45284449815125],[124.1490414904149,24.44609018907171],[124.15624156241563,24.44102445726206],[124.16704167041672,24.439335879992186],[124.19224192241921,24.439335879992186],[124.2030420304203,24.44271303453195],[124.21024210242103,24.4477787663416],[124.22104221042213,24.461287384500665],[124.23184231842322,24.479861734469367],[124.23904239042389,24.495058929898306],[124.25704257042571,24.501813238977846],[124.2678426784268,24.51025612532726],[124.30024300243002,24.569356329773157],[124.31464314643148,24.58793067974186],[124.3218432184322,24.589619257011748],[124.32904329043294,24.582864947932208]]],[[[125.38745387453878,24.782117065778365],[125.40545405454054,24.778739911238603],[125.42705427054273,24.768608447619314],[125.44505445054449,24.756788406730124],[125.45225452254522,24.744968365840947],[125.44505445054449,24.736525479491533],[125.42345423454236,24.731459747681896],[125.38385383853841,24.726394015872245],[125.3010530105301,24.726394015872245],[125.25785257852579,24.73314832495177],[125.25785257852579,24.751722674920487],[125.26145261452615,24.763542715809663],[125.27225272252724,24.819265765715784],[125.2758527585276,24.856414465653216],[125.27225272252724,24.868234506542393],[125.26145261452615,24.88512027924122],[125.2758527585276,24.881743124701444],[125.2866528665287,24.876677392891807],[125.29025290252906,24.87330023835203],[125.29385293852937,24.869923083812267],[125.3010530105301,24.85810304292309],[125.31545315453155,24.829397229335086],[125.32265322653228,24.81757718844591],[125.32625326253265,24.81082287936637],[125.35865358653587,24.782117065778365],[125.3658536585366,24.78042848850849],[125.38745387453878,24.782117065778365]]],[[[119.84699846998473,25.53691110541594],[119.83619836198363,25.548731146305116],[119.81819818198181,25.545353991765353],[119.80379803798041,25.531845373606288],[119.80019800198005,25.51664817817735],[119.80739807398078,25.496385250938758],[119.839798397984,25.47949947823993],[119.84699846998473,25.460925128271214],[119.82179821798218,25.467679437350753],[119.79299792997932,25.462613705541102],[119.77139771397714,25.450793664651925],[119.75699756997574,25.433907891953098],[119.75699756997574,25.422087851063907],[119.76059760597605,25.41026781017473],[119.75699756997574,25.405202078365093],[119.73899738997392,25.408579232904856],[119.7209972099721,25.413644964714493],[119.70299702997033,25.423776428333795],[119.69219692196924,25.43728504649286],[119.69939699396997,25.455859396461562],[119.69939699396997,25.45923655100134],[119.710197101971,25.465990860080865],[119.710197101971,25.469368014620628],[119.71379713797137,25.47274516916039],[119.71379713797137,25.47949947823993],[119.710197101971,25.486253787319455],[119.710197101971,25.487942364589344],[119.69939699396997,25.482876632779693],[119.68859688596888,25.481188055509804],[119.67779677796779,25.482876632779693],[119.6669966699667,25.487942364589344],[119.67779677796779,25.501450982748395],[119.68499684996851,25.508205291827935],[119.6957969579696,25.50989386909781],[119.74979749797501,25.503139560018283],[119.76779767797677,25.506516714558046],[119.77859778597787,25.521713909987],[119.76059760597605,25.5301567963364],[119.72459724597246,25.525091064526762],[119.71739717397173,25.53691110541594],[119.71739717397173,25.545353991765353],[119.73179731797319,25.580814114432883],[119.72819728197283,25.590945578052185],[119.71739717397173,25.590945578052185],[119.710197101971,25.585879846242534],[119.70299702997033,25.57743695989312],[119.69219692196924,25.594322732591948],[119.69939699396997,25.612897082560664],[119.71379713797137,25.629782855259492],[119.73179731797319,25.646668627958306],[119.74619746197465,25.648357205228194],[119.74979749797501,25.653422937037845],[119.76419764197641,25.66017724611737],[119.78219782197823,25.658488668847497],[119.77859778597787,25.651734359767957],[119.7749977499775,25.636537164339018],[119.77859778597787,25.6179628143703],[119.79299792997932,25.60445419621125],[119.80379803798041,25.611208505290776],[119.81459814598145,25.609519928020887],[119.82179821798218,25.601077041671473],[119.83259832598327,25.590945578052185],[119.81819818198181,25.57912553716301],[119.8289982899829,25.57237122808347],[119.85419854198545,25.565616919003944],[119.87579875798758,25.55717403265453],[119.86139861398613,25.547042569035227],[119.84699846998473,25.53691110541594]]],[[[128.98748987489876,27.811424687947934],[128.99828998289985,27.80298180159852],[129.0126901269013,27.794538915249106],[129.02349023490234,27.786096028899692],[129.03069030690307,27.772587410740627],[129.02349023490234,27.757390215311688],[129.0018900189002,27.726995824453795],[128.99108991089912,27.706732897215204],[128.97668976689766,27.694912856326027],[128.96228962289626,27.686469969976613],[128.9478894788948,27.681404238166962],[128.929889298893,27.686469969976613],[128.92268922689226,27.701667165405553],[128.9190891908919,27.715175783564618],[128.91548915489153,27.721930092644143],[128.8938889388894,27.728684401723683],[128.89028890288904,27.742193019882748],[128.89748897488977,27.769210256200864],[128.87948879488795,27.824933306107],[128.8830888308883,27.836753346996176],[128.89028890288904,27.853639119695004],[128.8938889388894,27.890787819632422],[128.90108901089013,27.895853551442073],[128.91548915489153,27.90091928325171],[128.9478894788948,27.914427901410775],[128.96588965889657,27.894164974172185],[128.97668976689766,27.836753346996176],[128.98748987489876,27.811424687947934]]],[[[122.32742327423273,30.025149488764143],[122.32742327423273,30.011640870605092],[122.32022320223206,30.00657513879544],[122.31302313023133,30.003197984255678],[122.3058230582306,29.99644367517614],[122.30222302223024,29.98631221155685],[122.30222302223024,29.976180747937548],[122.29862298622987,29.952540666159194],[122.29502295022951,29.933966316190478],[122.27702277022769,29.940720625270018],[122.24462244622447,29.969426438858022],[122.23022230222301,29.977869325207436],[122.18342183421834,29.994755097906264],[122.14382143821439,29.999820829715915],[122.10062100621008,30.015018025144855],[122.07902079020789,30.018395179684617],[122.06462064620649,30.016706602414743],[122.05022050220504,30.00657513879544],[122.03582035820358,30.00150940698579],[122.03222032220322,29.999820829715915],[122.02502025020249,29.99644367517614],[122.01782017820182,29.99644367517614],[122.01062010620109,29.999820829715915],[122.01062010620109,30.004886561525552],[122.01062010620109,30.00826371606533],[122.01062010620109,30.011640870605092],[122.01062010620109,30.015018025144855],[122.01422014220145,30.025149488764143],[122.01062010620109,30.031903797843682],[122.00702007020072,30.033592375113557],[121.99621996219963,30.036969529653334],[121.99261992619927,30.038658106923208],[121.97821978219781,30.05385530235216],[121.97461974619745,30.060609611431687],[121.97101971019714,30.067363920511212],[121.97461974619745,30.072429652320864],[121.97821978219781,30.077495384130515],[121.98181981819818,30.08424969321004],[121.98181981819818,30.08931542501969],[121.97821978219781,30.107889774988408],[121.96381963819641,30.129841279496873],[121.96381963819641,30.14166132038605],[121.97461974619745,30.14841562946559],[122.08622086220862,30.1467270521957],[122.10422104221044,30.143349897655938],[122.1186211862119,30.136595588576412],[122.1330213302133,30.123086970417347],[122.14022140221402,30.12139839314746],[122.16542165421657,30.119709815877584],[122.16902169021694,30.118021238607696],[122.1726217262173,30.102824043178757],[122.18342183421834,30.097758311369105],[122.19422194221943,30.099446888638994],[122.20502205022052,30.099446888638994],[122.23022230222301,30.09100400228958],[122.23742237422374,30.08593827047993],[122.24462244622447,30.080872538670278],[122.24822248222483,30.074118229590752],[122.25542255422556,30.067363920511212],[122.26982269822702,30.065675343241338],[122.28782287822878,30.067363920511212],[122.29862298622987,30.062298188701575],[122.29862298622987,30.04878957054251],[122.3058230582306,30.04203526146297],[122.32382323823242,30.031903797843682],[122.32742327423273,30.025149488764143]]],[[[130.67590675906763,30.374684983629862],[130.6687066870669,30.339224860962332],[130.64710647106472,30.290256120135737],[130.6039060390604,30.25310742019832],[130.57870578705786,30.23622164749949],[130.54630546305464,30.23115591568984],[130.51750517505178,30.227778761150077],[130.4851048510485,30.22609018388019],[130.43830438304383,30.239598802039254],[130.42750427504274,30.254795997468193],[130.40950409504097,30.29194469740561],[130.3879038790388,30.339224860962332],[130.38070380703806,30.36624209728045],[130.3771037710377,30.394947910868467],[130.3879038790388,30.39832506540823],[130.42390423904243,30.39832506540823],[130.4419044190442,30.421965147186583],[130.459904599046,30.4405394971553],[130.46710467104674,30.457425269854127],[130.48870488704887,30.457425269854127],[130.49950499504996,30.467556733473415],[130.5247052470525,30.448982383504713],[130.56790567905682,30.435473765345648],[130.60030600306004,30.41183368356728],[130.639906399064,30.40339079721788],[130.67590675906763,30.374684983629862]]],[[[131.05031050310504,30.840732310117488],[131.06111061110613,30.840732310117488],[131.06111061110613,30.82384653741866],[131.07191071910722,30.800206455640307],[131.08631086310862,30.78332068294148],[131.07191071910722,30.769812064782414],[131.07191071910722,30.737729096654647],[131.0791107911079,30.69889181944734],[131.0539105391054,30.66174311950992],[131.05751057510577,30.64316876954122],[131.05751057510577,30.611085801413452],[131.05031050310504,30.597577183254387],[131.03951039510395,30.589134296904973],[131.03591035910358,30.572248524206145],[131.03591035910358,30.557051328777206],[131.01791017910182,30.550297019697666],[131.00351003510036,30.551985596967555],[130.99270992709927,30.53341124699884],[130.98190981909818,30.519902628839787],[130.98190981909818,30.49626254706142],[130.96750967509678,30.479376774362592],[130.96750967509678,30.464179578933653],[130.9639096390964,30.45573669258424],[130.9747097470975,30.448982383504713],[130.97830978309787,30.437162342615522],[130.97110971109714,30.425342301726346],[130.97110971109714,30.415210838107058],[130.97830978309787,30.400013642678104],[130.9639096390964,30.386505024519053],[130.9639096390964,30.372996406359988],[130.94230942309423,30.374684983629862],[130.92430924309247,30.369619251820225],[130.90630906309065,30.36624209728045],[130.8919089190892,30.35611063366116],[130.88470884708846,30.344290592771983],[130.87030870308706,30.344290592771983],[130.8667086670867,30.35442205639127],[130.8559085590856,30.36624209728045],[130.85950859508597,30.379750715439513],[130.8667086670867,30.39663648813834],[130.86310863108633,30.42365372445647],[130.85230852308524,30.4405394971553],[130.84870848708488,30.46080242439389],[130.85230852308524,30.470933888013178],[130.86310863108633,30.465868156203527],[130.87030870308706,30.464179578933653],[130.8775087750878,30.48106535163248],[130.90270902709028,30.50301685614096],[130.93150931509314,30.540165556078378],[130.94230942309423,30.570559946936257],[130.94950949509496,30.594200028714624],[130.94950949509496,30.609397224143564],[130.94950949509496,30.64148019227133],[130.94230942309423,30.654988810430396],[130.9459094590946,30.66343169677981],[130.93870938709387,30.671874583129224],[130.95310953109532,30.68538320128829],[130.96750967509678,30.702268973987117],[130.98550985509854,30.729286210305233],[130.98550985509854,30.74110625119441],[130.9999099991,30.74617198300406],[131.00711007110073,30.76812348751254],[131.00711007110073,30.79007499202102],[131.02871028710285,30.818780805609023],[131.03951039510395,30.832289423768074],[131.04671046710467,30.837355155577725],[131.05031050310504,30.840732310117488]]],[[[130.40950409504097,32.51242380730136],[130.4419044190442,32.52424384819054],[130.45630456304565,32.525932425460425],[130.46710467104674,32.51242380730136],[130.43470434704346,32.49216088006277],[130.39150391503915,32.39760055294934],[130.3627036270363,32.37564904844086],[130.35910359103593,32.380714780250514],[130.35910359103593,32.39084624386982],[130.35910359103593,32.41279774837828],[130.35550355503557,32.42461778926746],[130.34470344703448,32.421240634727695],[130.32310323103235,32.40942059383852],[130.28350283502834,32.407732016568644],[130.26550265502658,32.40435486202887],[130.24030240302403,32.395911975679454],[130.22230222302227,32.421240634727695],[130.21150211502118,32.43643783015665],[130.21510215102154,32.4499464483157],[130.2187021870219,32.45670075739524],[130.22590225902258,32.458389334665114],[130.24030240302403,32.460077911935],[130.24750247502476,32.46514364374465],[130.26910269102694,32.483717993713356],[130.29070290702907,32.49722661187242],[130.30510305103053,32.503980920951946],[130.3411034110341,32.51411238457125],[130.3627036270363,32.527621002730314],[130.36990369903702,32.527621002730314],[130.3771037710377,32.52255527092066],[130.38070380703806,32.51580096184114],[130.38430384303842,32.5090466527616],[130.39150391503915,32.5090466527616],[130.40950409504097,32.51242380730136]]],[[[130.16110161101614,32.546195352699016],[130.189901899019,32.52255527092066],[130.20070200702008,32.48034083917359],[130.20070200702008,32.395911975679454],[130.20430204302045,32.38746908933004],[130.2079020790208,32.380714780250514],[130.2079020790208,32.37396047117099],[130.20430204302045,32.34694323485286],[130.20430204302045,32.338500348503445],[130.20070200702008,32.33343461669379],[130.189901899019,32.323303153074505],[130.18270182701826,32.318237421264854],[130.15750157501577,32.30979453491544],[130.1539015390154,32.303040225835915],[130.13230132301322,32.265891525898496],[130.12870128701286,32.260825794088845],[130.10710107101073,32.25238290773943],[130.09630096300964,32.24562859865989],[130.07470074700745,32.220299939611664],[130.06030060300606,32.21185705326225],[130.0351003510035,32.20003701237306],[130.01350013500138,32.18990554875377],[129.99549995499956,32.18990554875377],[129.99549995499956,32.20003701237306],[130.00990009900102,32.25238290773943],[129.99909999099992,32.24394002139002],[129.98469984699847,32.24394002139002],[129.97749977499774,32.24562859865989],[129.95949959499598,32.23718571231049],[129.95949959499598,32.24225144412013],[129.95949959499598,32.25238290773943],[129.9666996669967,32.25744863954908],[129.99549995499956,32.282777298597324],[130.01710017100174,32.29290876221661],[130.03150031500314,32.2945973394865],[130.04230042300424,32.2945973394865],[130.05310053100533,32.296285916756375],[130.06390063900642,32.30641738037568],[130.05310053100533,32.30641738037568],[130.0459004590046,32.30810595764555],[130.03150031500314,32.3131716894552],[130.00990009900102,32.30641738037568],[129.9918999189992,32.31486026672509],[129.9810998109981,32.33343461669379],[129.97389973899737,32.35538612120227],[129.97749977499774,32.36720616209145],[129.9810998109981,32.37564904844086],[129.98829988299883,32.3824033575204],[129.99549995499956,32.38915766659993],[129.98829988299883,32.40435486202887],[129.99549995499956,32.42461778926746],[130.00630006300065,32.44488071650606],[130.0207002070021,32.460077911935],[130.03150031500314,32.48202941644348],[130.02430024300241,32.50229234368207],[130.0027000270003,32.53268673453995],[130.01710017100174,32.53268673453995],[130.02430024300241,32.527621002730314],[130.03150031500314,32.52255527092066],[130.04230042300424,32.5191781163809],[130.0567005670057,32.520866693650774],[130.07830078300782,32.530998157270076],[130.10350103501037,32.53606388907973],[130.1215012150122,32.54281819815925],[130.13950139501395,32.547883929968904],[130.16110161101614,32.546195352699016]]],[[[128.87948879488795,32.6745272252101],[128.8938889388894,32.65764145251127],[128.90108901089013,32.64750998889198],[128.90108901089013,32.645821411622094],[128.89748897488977,32.64244425708233],[128.87948879488795,32.64244425708233],[128.85788857888582,32.64413283435222],[128.81828818288182,32.63400137073292],[128.8146881468815,32.64750998889198],[128.79308793087932,32.652575720701634],[128.78948789487896,32.64919856616186],[128.77868778687787,32.64750998889198],[128.7750877508775,32.64244425708233],[128.77148771487714,32.63231279346303],[128.7750877508775,32.62724706165339],[128.77868778687787,32.625558484383504],[128.7966879668797,32.610361288954564],[128.79308793087932,32.59854124806539],[128.78948789487896,32.5867212071762],[128.77148771487714,32.57152401174726],[128.75708757087574,32.57996689809667],[128.73548735487356,32.603606979875025],[128.71388713887143,32.603606979875025],[128.6634866348664,32.60191840260515],[128.6526865268653,32.59178693898585],[128.62028620286202,32.610361288954564],[128.5986859868599,32.61373844349433],[128.60228602286026,32.630624216193155],[128.60948609486098,32.64244425708233],[128.61308613086135,32.650887143431746],[128.61668616686165,32.65933002978116],[128.62388623886238,32.66777291613057],[128.6310863108631,32.66946149340046],[128.63468634686348,32.666084338860685],[128.63468634686348,32.64413283435222],[128.63828638286384,32.635689948002806],[128.63828638286384,32.64075567981244],[128.6526865268653,32.66777291613057],[128.6526865268653,32.677904379749876],[128.65628656286566,32.688035843369164],[128.6526865268653,32.69985588425834],[128.64908649086493,32.70998734787764],[128.64908649086493,32.713364502417406],[128.64548645486457,32.71843023422706],[128.6418864188642,32.72180738876682],[128.6418864188642,32.728561697846345],[128.64548645486457,32.733627429655996],[128.64908649086493,32.7437588932753],[128.6418864188642,32.76064466597413],[128.6526865268653,32.775841861403066],[128.65988659886602,32.78259617048259],[128.6778867788678,32.78259617048259],[128.68508685086852,32.770776129593415],[128.69948699486997,32.7437588932753],[128.7066870668707,32.74713604781506],[128.7210872108721,32.75389035689459],[128.74268742687428,32.75895608870424],[128.77868778687787,32.775841861403066],[128.7858878588786,32.78766190229224],[128.80748807488078,32.79948194318142],[128.81108811088114,32.78259617048259],[128.81108811088114,32.77415328413318],[128.81108811088114,32.765710397783764],[128.8290882908829,32.762333243244],[128.84348843488436,32.75895608870424],[128.8506885068851,32.74207031600541],[128.84348843488436,32.7032330387981],[128.85428854288546,32.688035843369164],[128.87948879488795,32.6745272252101]]],[[[129.09909099090993,32.98860259740829],[129.10989109891102,32.98353686559864],[129.1710917109171,33.005488370107116],[129.1818918189182,32.985225442868526],[129.17469174691746,32.96665109289981],[129.1566915669157,32.958208206550395],[129.13869138691388,32.937945279311805],[129.1170911709117,32.936256702041916],[129.09909099090993,32.91937092934309],[129.0918909189092,32.90586231118404],[129.0918909189092,32.890665115755084],[129.09909099090993,32.875467920326145],[129.09909099090993,32.86871361124662],[129.09549095490956,32.85689357035743],[129.08469084690847,32.85689357035743],[129.06669066690665,32.86195930216708],[129.06309063090634,32.84845068400803],[129.07029070290702,32.840007797658615],[129.07029070290702,32.82649917949955],[129.06669066690665,32.818056293150136],[129.04509045090452,32.8214334476899],[129.0486904869049,32.84169637492849],[129.04149041490416,32.86195930216708],[129.04149041490416,32.895730847564735],[129.0486904869049,32.9092394657238],[129.03429034290343,32.932879547502154],[129.02349023490234,32.937945279311805],[128.98748987489876,32.94469958839133],[128.98028980289803,32.94807674293111],[128.98028980289803,32.959896783820284],[128.99828998289985,32.96665109289981],[129.01989019890198,32.980159711058874],[129.03429034290343,32.96665109289981],[129.05589055890562,32.980159711058874],[129.04149041490416,33.000422638297465],[129.0486904869049,33.03925991550477],[129.06669066690665,33.04432564731441],[129.06669066690665,33.01899698826618],[129.07749077490774,33.020685565536056],[129.08469084690847,33.02406272007582],[129.08469084690847,33.042637070044535],[129.0810908109081,33.0561456882036],[129.08469084690847,33.07640861544219],[129.1026910269103,33.083162924521716],[129.10629106291066,33.10173727449043],[129.09909099090993,33.11524589264948],[129.09549095490956,33.125377356268785],[129.10989109891102,33.16590321074597],[129.1170911709117,33.15914890166644],[129.1170911709117,33.140574551697725],[129.11349113491138,33.13213166534831],[129.10989109891102,33.12200020172902],[129.1170911709117,33.11355731537961],[129.12429124291242,33.10849158356996],[129.1170911709117,33.08822865633137],[129.11349113491138,33.06965430636265],[129.1026910269103,33.05445711093371],[129.09909099090993,33.035882760964995],[129.09549095490956,33.01730841099629],[129.09909099090993,32.98860259740829]]],[[[129.55629556295565,33.410746914878956],[129.56349563495638,33.36684390586201],[129.55629556295565,33.35333528770295],[129.5418954189542,33.33644951500412],[129.52749527495274,33.322940896845054],[129.53829538295383,33.31618658776553],[129.52749527495274,33.302677969606464],[129.51309513095134,33.29761223779681],[129.51309513095134,33.287480774177524],[129.50229502295025,33.280726465098],[129.50229502295025,33.265529269669045],[129.49149491494916,33.245266342430455],[129.44829448294485,33.197986178873734],[129.41229412294126,33.17772325163514],[129.37629376293762,33.16928036528573],[129.35829358293586,33.17772325163514],[129.3438934389344,33.17941182890503],[129.3438934389344,33.18954329252432],[129.35109351093513,33.21318337430269],[129.36189361893622,33.197986178873734],[129.38349383493835,33.182788983444794],[129.40149401494017,33.18616613798456],[129.40509405094053,33.19460902433397],[129.40149401494017,33.197986178873734],[129.39429394293944,33.203051910683385],[129.38349383493835,33.20474048795327],[129.37629376293762,33.21487195157256],[129.38349383493835,33.22838056973163],[129.39429394293944,33.2402006106208],[129.41589415894163,33.23682345608104],[129.4086940869409,33.25370922877987],[129.40509405094053,33.27566073328835],[129.43749437494375,33.29592366052694],[129.44109441094412,33.32462947411494],[129.44109441094412,33.348269555893296],[129.49509495094952,33.3584010195126],[129.50949509495098,33.38204110129095],[129.5166951669517,33.37866394675119],[129.52389523895238,33.36853248313189],[129.53829538295383,33.37866394675119],[129.52389523895238,33.390483987640366],[129.52389523895238,33.40568118306932],[129.55629556295565,33.410746914878956]]],[[[129.77589775897758,33.77379102790374],[129.80109801098013,33.76534814155433],[129.80109801098013,33.75183952339526],[129.7830978309783,33.73833090523621],[129.76149761497618,33.73664232796632],[129.73629736297363,33.73664232796632],[129.72189721897217,33.71637940072773],[129.72189721897217,33.697805050759015],[129.71109711097114,33.70118220529878],[129.68949689496895,33.71637940072773],[129.67869678696786,33.7298880188868],[129.68229682296823,33.74339663704585],[129.67149671496713,33.75015094612539],[129.65709657096573,33.74339663704585],[129.649896498965,33.755216677935024],[129.64629646296464,33.77210245063385],[129.67869678696786,33.760282409744676],[129.6858968589686,33.7585938324748],[129.6858968589686,33.76534814155433],[129.6606966069661,33.78392249152304],[129.65709657096573,33.804185418761634],[129.65709657096573,33.81600545965081],[129.67869678696786,33.81431688238092],[129.67149671496713,33.83289123234964],[129.67869678696786,33.849777005048466],[129.6858968589686,33.859908468667754],[129.68949689496895,33.87172850955693],[129.70029700297005,33.86159704593764],[129.7686976869769,33.844711273238815],[129.7686976869769,33.8362683868894],[129.76149761497618,33.822759768730336],[129.76149761497618,33.81262830511105],[129.76509765097654,33.802496841491745],[129.77949779497794,33.79236537787246],[129.79749797497976,33.78561106879292],[129.79029790297903,33.78561106879292],[129.7830978309783,33.780545336983266],[129.77589775897758,33.77885675971339],[129.77589775897758,33.77379102790374]]],[[[132.2347223472235,33.86835135501717],[132.23112231122315,33.86328562320752],[132.22752227522278,33.859908468667754],[132.2167221672217,33.8548427368581],[132.20952209522096,33.87510566409671],[132.1951219512195,33.89705716860517],[132.18792187921878,33.92069725038354],[132.20232202322023,33.94433733216189],[132.22752227522278,33.95278021851131],[132.25272252722527,33.949403063971545],[132.27792277922782,33.94096017762213],[132.29952299522995,33.93082871400283],[132.3247232472325,33.89705716860517],[132.3391233912339,33.89705716860517],[132.35352353523535,33.90381147768471],[132.37512375123754,33.91732009584376],[132.3787237872379,33.91732009584376],[132.39672396723967,33.91563151857389],[132.40032400324003,33.91732009584376],[132.40752407524076,33.922385827653414],[132.41112411124112,33.93420586854259],[132.4147241472415,33.93758302308237],[132.42912429124294,33.93927160035224],[132.45432454324543,33.93758302308237],[132.4687246872469,33.93758302308237],[132.4579245792458,33.927451559463066],[132.43632436324367,33.90381147768471],[132.42912429124294,33.902122900414824],[132.41832418324185,33.90550005495459],[132.3931239312393,33.89874574587506],[132.38592385923863,33.89368001406541],[132.38232382323827,33.886925704985885],[132.3787237872379,33.86159704593764],[132.3787237872379,33.85146558231834],[132.37512375123754,33.84133411869905],[132.36432364323645,33.844711273238815],[132.3391233912339,33.844711273238815],[132.33192331923323,33.84808842777858],[132.32832328323286,33.85653131412799],[132.32832328323286,33.864974200477405],[132.32832328323286,33.87510566409671],[132.31752317523177,33.88354855044612],[132.31032310323104,33.87510566409671],[132.29952299522995,33.88354855044612],[132.29232292322922,33.87848281863647],[132.28872288722886,33.86835135501717],[132.28512285122855,33.86159704593764],[132.2707227072271,33.859908468667754],[132.25632256322564,33.864974200477405],[132.24192241922418,33.86159704593764],[132.2347223472235,33.86835135501717]]],[[[129.31149311493118,34.28036420886855],[129.31509315093155,34.29387282702761],[129.3438934389344,34.29387282702761],[129.34749347493477,34.28711851794809],[129.3438934389344,34.278675631598674],[129.32589325893258,34.271921322519134],[129.31869318693185,34.25841270436007],[129.32229322293222,34.24152693166124],[129.32589325893258,34.229706890772064],[129.30789307893082,34.219575427152776],[129.29709297092973,34.21788684988289],[129.29709297092973,34.21282111807324],[129.30429304293045,34.209443963533474],[129.3006930069301,34.1976239226443],[129.29709297092973,34.18242672721536],[129.29709297092973,34.17060668632618],[129.29349293492936,34.167229531786404],[129.28629286292863,34.16554095451653],[129.28269282692827,34.157098068167116],[129.28269282692827,34.14527802727794],[129.27549275492754,34.12839225457911],[129.2646926469265,34.12332652276946],[129.26109261092614,34.114883636420046],[129.25029250292505,34.10812932734052],[129.24669246692469,34.09968644099111],[129.2358923589236,34.10137501826098],[129.23229232292323,34.094620709181456],[129.22149221492214,34.089554977371805],[129.21429214292147,34.09799786372122],[129.2106921069211,34.09968644099111],[129.19989199892,34.111506481880284],[129.18909189091892,34.114883636420046],[129.17829178291782,34.10812932734052],[129.1710917109171,34.10644075007063],[129.1710917109171,34.14696660454781],[129.17829178291782,34.17060668632618],[129.17469174691746,34.19593534537441],[129.1818918189182,34.22801831350219],[129.18909189091892,34.234772622581715],[129.18909189091892,34.249969818010655],[129.19629196291964,34.27360989978902],[129.19989199892,34.31582433153609],[129.20709207092074,34.32933294969514],[129.2250922509225,34.32764437242527],[129.22869228692286,34.32089006334573],[129.2250922509225,34.312447176996315],[129.2250922509225,34.29387282702761],[129.23229232292323,34.29387282702761],[129.23949239492396,34.298938558837264],[129.24669246692469,34.30062713610714],[129.26109261092614,34.30738144518668],[129.27549275492754,34.30738144518668],[129.27189271892718,34.31582433153609],[129.2682926829268,34.32257864061562],[129.2790927909279,34.32257864061562],[129.289892898929,34.317512908805966],[129.3006930069301,34.30738144518668],[129.3006930069301,34.28880709521796],[129.31149311493118,34.28036420886855]]],[[[126.38106381063812,34.49819067668342],[126.38106381063812,34.484682058524356],[126.37746377463776,34.46948486309542],[126.3738637386374,34.45428766766646],[126.35226352263521,34.41882754499893],[126.34506345063454,34.40869608137963],[126.33426334263345,34.403630349569994],[126.33426334263345,34.40700750410976],[126.31626316263163,34.42051612226881],[126.3090630906309,34.423893276808585],[126.3090630906309,34.417138967729045],[126.30546305463054,34.401941772300106],[126.20826208262082,34.35803876328315],[126.19746197461978,34.35635018601327],[126.15786157861578,34.35297303147351],[126.14346143461438,34.354661608743385],[126.14346143461438,34.3631044950928],[126.14706147061474,34.37154738144221],[126.15426154261542,34.376613113251864],[126.15786157861578,34.381678845061515],[126.15426154261542,34.38843315414104],[126.12546125461256,34.403630349569994],[126.12546125461256,34.381678845061515],[126.10386103861038,34.401941772300106],[126.11466114661147,34.43571331769776],[126.14346143461438,34.46273055401588],[126.17226172261724,34.464419131285766],[126.17946179461796,34.486370635794245],[126.18666186661869,34.49481352214366],[126.19746197461978,34.50325640849307],[126.20826208262082,34.50832214030271],[126.21546215462155,34.50832214030271],[126.22266222662228,34.51338787211236],[126.22626226262264,34.526896490271426],[126.23706237062373,34.51507644938225],[126.2550625506255,34.51507644938225],[126.26946269462695,34.521830758461775],[126.27306273062732,34.537027953890714],[126.26586265862659,34.55053657204978],[126.2406624066241,34.56573376747873],[126.24786247862482,34.57417665382815],[126.26226262262622,34.57586523109802],[126.28026280262804,34.569110922018496],[126.2946629466295,34.55897945839919],[126.30546305463054,34.55391372658954],[126.3090630906309,34.55222514931967],[126.3090630906309,34.54547084024013],[126.31626316263163,34.5387165311606],[126.32346323463236,34.53365079935095],[126.32706327063272,34.53533937662084],[126.3486634866349,34.54715941751002],[126.3486634866349,34.5387165311606],[126.38106381063812,34.49819067668342]]],[[[135.00315003150035,34.60794819922579],[135.02835028350285,34.59106242652696],[135.02835028350285,34.579242385637784],[135.01755017550175,34.56573376747873],[135.00315003150035,34.55222514931967],[134.99594995949963,34.53027364481119],[134.98514985149853,34.50494498576295],[134.95634956349562,34.484682058524356],[134.93114931149313,34.45428766766646],[134.90234902349027,34.41882754499893],[134.8987489874899,34.381678845061515],[134.89514895148955,34.3732359587121],[134.8987489874899,34.361415917822924],[134.8987489874899,34.34959587693375],[134.91674916749167,34.33777583604456],[134.92034920349204,34.32089006334573],[134.92754927549277,34.30907002245655],[134.94914949149495,34.28711851794809],[134.95994959949599,34.27023274524926],[134.93834938349386,34.26347843616972],[134.90954909549095,34.256724127090195],[134.88434884348845,34.24490408620102],[134.85554855548554,34.236461199851604],[134.8339483394834,34.2263297362323],[134.8015480154802,34.20100107718406],[134.75114751147515,34.192558190834646],[134.72954729547297,34.19086961356477],[134.7259472594726,34.209443963533474],[134.70434704347042,34.21788684988289],[134.7007470074701,34.22126400442265],[134.7151471514715,34.23983835439137],[134.72234722347224,34.25334697255043],[134.68634686346866,34.24321550893113],[134.66474664746647,34.26516701343961],[134.65754657546574,34.28880709521796],[134.66834668346684,34.30231571337703],[134.6827468274683,34.32764437242527],[134.70434704347042,34.32257864061562],[134.72234722347224,34.32933294969514],[134.79794797947983,34.44753335858694],[134.82314823148232,34.461041976746],[134.84114841148414,34.46948486309542],[134.85194851948523,34.47623917217494],[134.85554855548554,34.48299348125447],[134.86634866348663,34.499879253953296],[134.869948699487,34.5100107175726],[134.88434884348845,34.53027364481119],[134.9239492394924,34.54547084024013],[134.93834938349386,34.55053657204978],[134.96354963549635,34.58093096290767],[134.98154981549817,34.60288246741615],[135.00315003150035,34.60794819922579]]],[[[129.4518945189452,34.61976824011498],[129.4626946269463,34.60963677649568],[129.4770947709477,34.5978167356065],[129.4770947709477,34.5876852719872],[129.47349473494734,34.579242385637784],[129.4626946269463,34.55391372658954],[129.44469444694448,34.51507644938225],[129.40149401494017,34.481304903984594],[129.37989379893799,34.45259909039659],[129.38349383493835,34.423893276808585],[129.36189361893622,34.40531892683987],[129.35829358293586,34.39012173141093],[129.37629376293762,34.39518746322058],[129.39429394293944,34.41038465864952],[129.39429394293944,34.403630349569994],[129.3870938709387,34.39012173141093],[129.38349383493835,34.38336742233139],[129.3870938709387,34.36648164963256],[129.3978939789398,34.354661608743385],[129.4086940869409,34.35128445420362],[129.40149401494017,34.33777583604456],[129.3870938709387,34.33102152696503],[129.37989379893799,34.324267217885506],[129.3690936909369,34.30738144518668],[129.3438934389344,34.30062713610714],[129.32589325893258,34.3040042906469],[129.30429304293045,34.324267217885506],[129.32229322293222,34.334398681504794],[129.3438934389344,34.32764437242527],[129.34749347493477,34.35635018601327],[129.3330933309333,34.361415917822924],[129.31509315093155,34.34284156785421],[129.30429304293045,34.34284156785421],[129.30429304293045,34.361415917822924],[129.30429304293045,34.3732359587121],[129.30789307893082,34.38505599960128],[129.29709297092973,34.376613113251864],[129.28629286292863,34.36648164963256],[129.29349293492936,34.34959587693375],[129.28629286292863,34.3445301451241],[129.27189271892718,34.35635018601327],[129.24669246692469,34.35128445420362],[129.22869228692286,34.35635018601327],[129.2358923589236,34.36817022690245],[129.26109261092614,34.36985880417234],[129.27189271892718,34.374924535981975],[129.27549275492754,34.41376181318928],[129.2682926829268,34.432336163158],[129.27549275492754,34.44077904950741],[129.28629286292863,34.44246762677729],[129.289892898929,34.44077904950741],[129.29709297092973,34.44753335858694],[129.31149311493118,34.461041976746],[129.30789307893082,34.46610770855564],[129.29349293492936,34.45259909039659],[129.2790927909279,34.4509105131267],[129.27549275492754,34.46273055401588],[129.289892898929,34.48805921306412],[129.30429304293045,34.520142181191886],[129.32589325893258,34.53533937662084],[129.32589325893258,34.542093685700365],[129.30789307893082,34.56066803566908],[129.289892898929,34.55560230385943],[129.289892898929,34.569110922018496],[129.30429304293045,34.5876852719872],[129.30789307893082,34.60288246741615],[129.32229322293222,34.648474053702984],[129.33669336693367,34.648474053702984],[129.36189361893622,34.648474053702984],[129.37989379893799,34.64509689916321],[129.39069390693908,34.65522836278251],[129.4086940869409,34.6754912900211],[129.42669426694266,34.67717986729099],[129.41949419494193,34.6856227536404],[129.4230942309423,34.69575421725969],[129.43749437494375,34.694065639989816],[129.4518945189452,34.70081994906934],[129.46629466294667,34.70081994906934],[129.46989469894697,34.69237706271993],[129.48069480694807,34.683934176370514],[129.4878948789488,34.67717986729099],[129.48429484294843,34.661982671862035],[129.4770947709477,34.6569169400524],[129.46989469894697,34.651851208242746],[129.4770947709477,34.65016263097286],[129.4878948789488,34.646785476433095],[129.4878948789488,34.63496543554392],[129.48069480694807,34.61976824011498],[129.47349473494734,34.6163910855752],[129.4626946269463,34.62145681738485],[129.4518945189452,34.61976824011498]]],[[[126.0570605706057,34.913580685074564],[126.06066060660606,34.92708930323363],[126.07146071460716,34.9287778805035],[126.08226082260825,34.92202357142398],[126.08946089460898,34.911892107804675],[126.09306093060934,34.896694912375736],[126.08946089460898,34.88318629421667],[126.08226082260825,34.871366253327494],[126.06786067860679,34.86292336697808],[126.05346053460534,34.85954621243832],[126.04626046260466,34.86123478970819],[126.03906039060394,34.86630052151784],[126.03186031860321,34.869677676057606],[125.99945999459993,34.86292336697808],[125.98505985059853,34.86292336697808],[125.98505985059853,34.869677676057606],[125.99585995859962,34.876431985137145],[126.01386013860139,34.9000720669155],[126.02826028260284,34.9102035305348],[126.03546035460357,34.9102035305348],[126.0426604266043,34.90682637599504],[126.05346053460534,34.90682637599504],[126.0570605706057,34.913580685074564]]],[[[128.06948069480694,34.81564320342136],[128.0730807308073,34.80382316253218],[128.0730807308073,34.793691698912895],[128.06588065880658,34.78356023529359],[128.0622806228062,34.77005161713453],[128.06588065880658,34.74978868989594],[128.06588065880658,34.73796864900676],[128.0586805868059,34.73290291719711],[128.05148051480518,34.729525762657346],[128.0586805868059,34.70757425814887],[128.05508055080554,34.69744279452958],[128.04068040680409,34.69575421725969],[128.02628026280263,34.70250852633923],[128.01188011880117,34.709262835418755],[127.99027990279905,34.70250852633923],[127.97587975879759,34.69913137179945],[127.9650796507965,34.71939429903806],[127.95427954279546,34.75992015351524],[127.93627936279364,34.766674462594764],[127.92547925479255,34.75992015351524],[127.91467914679146,34.74303438081641],[127.91107911079109,34.72108287630793],[127.90747907479079,34.71263998995852],[127.89307893078933,34.71263998995852],[127.87867878678787,34.71770572176817],[127.86787867878678,34.72108287630793],[127.86067860678605,34.731214339927234],[127.86067860678605,34.73796864900676],[127.86067860678605,34.746411535356174],[127.85707857078575,34.75992015351524],[127.8318783187832,34.834217553390076],[127.82827828278283,34.851103326088904],[127.82827828278283,34.869677676057606],[127.83907839078392,34.886563448756434],[127.84987849878502,34.891629180566085],[127.85707857078575,34.89331775783597],[127.86067860678605,34.896694912375736],[127.86787867878678,34.918646416884215],[127.87147871478714,34.92371214869385],[127.88947889478897,34.93553218958304],[127.90387903879042,34.94059792139268],[127.91827918279182,34.93553218958304],[127.92907929079291,34.92708930323363],[127.939879398794,34.913580685074564],[127.93627936279364,34.9000720669155],[127.92907929079291,34.88825202602632],[127.90387903879042,34.869677676057606],[127.91107911079109,34.86123478970819],[127.91467914679146,34.84434901700938],[127.91827918279182,34.835906130659964],[127.92907929079291,34.83084039885031],[127.9506795067951,34.82408608977077],[127.96147961479613,34.807200317071946],[127.98307983079832,34.81057747161172],[128.0046800468005,34.81733178069125],[128.029880298803,34.8223975125009],[128.0622806228062,34.81733178069125],[128.06948069480694,34.81564320342136]]],[[[133.36873368733688,36.27457396460002],[133.38313383133834,36.257688191901195],[133.37953379533798,36.208719451074586],[133.37233372333725,36.19689941018541],[133.36153361533616,36.19183367837576],[133.35433354333543,36.20365371926495],[133.34353343533434,36.20365371926495],[133.3327333273333,36.1985879874553],[133.32553325533257,36.19183367837576],[133.33633336333367,36.18507936929623],[133.33993339933403,36.174947905676945],[133.33633336333367,36.16481644205764],[133.32553325533257,36.15806213297812],[133.31833318333184,36.15806213297812],[133.2787327873279,36.16481644205764],[133.2571325713257,36.16481644205764],[133.24993249932498,36.168193596597405],[133.2031320313203,36.20196514199506],[133.19233192331922,36.20534229653482],[133.1887318873189,36.215473760154126],[133.19593195931958,36.277951119139786],[133.21033210332104,36.29652546910849],[133.2931329313293,36.34211705539532],[133.2931329313293,36.330297014506144],[133.30033300333002,36.32523128269649],[133.31113311133112,36.32354270542662],[133.3219332193322,36.32185412815673],[133.3219332193322,36.31847697361697],[133.32553325533257,36.31003408726755],[133.32913329133294,36.3049683554579],[133.33633336333367,36.30159120091814],[133.3471334713347,36.29821404637838],[133.35433354333543,36.294836891838614],[133.3579335793358,36.288082582759074],[133.36513365133652,36.27963969640966],[133.36873368733688,36.27457396460002]]],[[[126.5070650706507,37.596729966918176],[126.49986499865003,37.596729966918176],[126.4926649266493,37.59841854418805],[126.4818648186482,37.606861430537464],[126.47466474664748,37.61023858507723],[126.47106471064711,37.61023858507723],[126.46746467464675,37.606861430537464],[126.46386463864638,37.6034842759977],[126.40986409864098,37.60179569872781],[126.39186391863922,37.60855000780735],[126.37026370263703,37.63050151231582],[126.40266402664025,37.63725582139536],[126.40986409864098,37.64063297593512],[126.41706417064171,37.652453016824296],[126.41706417064171,37.65751874863395],[126.40986409864098,37.659207325903836],[126.40626406264062,37.66596163498336],[126.37026370263703,37.71830753034972],[126.36666366663667,37.72675041669913],[126.37026370263703,37.738570457588324],[126.37026370263703,37.78585062114503],[126.3738637386374,37.79598208476433],[126.38466384663849,37.799359239304096],[126.40626406264062,37.821310743812575],[126.42426424264244,37.82468789835234],[126.44226442264426,37.814556434733035],[126.45666456664566,37.80104781657397],[126.47106471064711,37.79091635295468],[126.50346503465033,37.77740773479562],[126.51786517865179,37.76727627117633],[126.52146521465215,37.7503904984775],[126.52146521465215,37.74363618939796],[126.51426514265142,37.73012757123891],[126.51426514265142,37.72337326215937],[126.51786517865179,37.716618953079845],[126.52506525065252,37.70311033492078],[126.52866528665288,37.696356025841254],[126.53226532265325,37.659207325903836],[126.52866528665288,37.65076443955442],[126.53226532265325,37.64569870774477],[126.53946539465397,37.63556724412547],[126.54306543065434,37.63050151231582],[126.52866528665288,37.62543578050618],[126.51786517865179,37.6034842759977],[126.5070650706507,37.596729966918176]]],[[[139.549995499955,42.243694613635355],[139.56439564395646,42.23187457274618],[139.55359553595537,42.21161164550759],[139.52119521195215,42.17446294557017],[139.51399513995142,42.14744570925204],[139.51399513995142,42.123805627473686],[139.51039510395105,42.10016554569533],[139.49239492394923,42.078214041186854],[139.45639456394565,42.051196804868724],[139.44559445594456,42.0545739594085],[139.43479434794347,42.063016845757915],[139.43119431194316,42.0731483093772],[139.43119431194316,42.08496835026638],[139.4275942759428,42.09341123661579],[139.42399423994243,42.10185412296521],[139.42399423994243,42.123805627473686],[139.42399423994243,42.1322485138231],[139.41319413194134,42.14406855471228],[139.40959409594097,42.15420001833158],[139.41319413194134,42.17277436830028],[139.42399423994243,42.191348718269],[139.43839438394383,42.20654591369794],[139.4527945279453,42.21498880004735],[139.46359463594638,42.21667737731724],[139.4851948519485,42.22174310912688],[139.4959949599496,42.22174310912688],[139.51039510395105,42.22512026366665],[139.5391953919539,42.24031745909559],[139.549995499955,42.243694613635355]]],[[[146.88326883268832,43.85966306091311],[146.8940689406894,43.85122017456368],[146.90846908469086,43.84446586548415],[146.92646926469268,43.84277728821428],[146.94086940869408,43.84615444275403],[146.93366933669336,43.8292686700552],[146.92646926469268,43.814071474626274],[146.9156691566916,43.8022514337371],[146.89766897668977,43.79887427919732],[146.87966879668795,43.79718570192745],[146.86526865268655,43.792119970117795],[146.840068400684,43.778611351958716],[146.83286832868328,43.778611351958716],[146.8256682566826,43.78198850649849],[146.81846818468188,43.78198850649849],[146.80766807668078,43.77523419741897],[146.80406804068042,43.76679131106954],[146.79326793267933,43.760037001990014],[146.78246782467824,43.75328269291049],[146.77526775267756,43.751594115640614],[146.75726757267574,43.74821696110084],[146.7428674286743,43.743151229291186],[146.72846728467283,43.73977407475144],[146.71046710467107,43.743151229291186],[146.7176671766718,43.729642611132135],[146.69246692466925,43.716133992973056],[146.68166681666816,43.71106826116343],[146.66726667266676,43.70937968389353],[146.64926649266494,43.71275683843331],[146.62406624066244,43.72626545659236],[146.609666096661,43.729642611132135],[146.60246602466026,43.73639692021166],[146.60246602466026,43.74990553837071],[146.61326613266135,43.778611351958716],[146.609666096661,43.78874281557802],[146.60246602466026,43.800562856467195],[146.60606606066062,43.80900574281662],[146.64926649266494,43.814071474626274],[146.67446674466748,43.822514360975674],[146.76806768067684,43.86135163818298],[146.7968679686797,43.86641736999263],[146.81846818468188,43.85966306091311],[146.83286832868328,43.87148310180228],[146.84726847268473,43.87823741088181],[146.8616686166862,43.876548833611935],[146.87606876068764,43.86641736999263],[146.88326883268832,43.85966306091311]]],[[[141.32841328413286,45.17168759961194],[141.3356133561336,45.15817898145289],[141.32841328413286,45.14804751783359],[141.31761317613177,45.137916054214315],[141.31041310413104,45.124407436055236],[141.30321303213032,45.119341704245585],[141.26721267212673,45.10076735427688],[141.25281252812528,45.09907877700701],[141.2348123481235,45.10245593154676],[141.1808118081181,45.12609601332511],[141.14841148411483,45.146358940563715],[141.13041130411307,45.16999902234207],[141.14481144811447,45.19026194958067],[141.14121141211416,45.195327681390324],[141.13401134011343,45.2054591450096],[141.13041130411307,45.21052487681925],[141.16641166411665,45.239230690407254],[141.1808118081181,45.244296422216905],[141.20241202412024,45.24936215402656],[141.2348123481235,45.24091926767716],[141.26721267212673,45.2257220722482],[141.29241292412928,45.2071477222795],[141.32841328413286,45.17168759961194]]],[[[141.05121051210511,45.45030284914259],[141.06921069210694,45.44185996279319],[141.0728107281073,45.42497419009436],[141.05841058410584,45.32197097663152],[141.05121051210511,45.293265163043515],[141.03681036810372,45.26455934945551],[141.029610296103,45.27806796761456],[141.029610296103,45.28313369942421],[141.03681036810372,45.29157658577364],[141.01161011610117,45.32703670844117],[140.9972099720997,45.350676790219524],[140.99360993609935,45.37093971745813],[141.00081000810007,45.41990845828471],[140.9972099720997,45.43003992190401],[140.96840968409686,45.46381146730167],[140.97560975609758,45.467188621841416],[140.97920979209795,45.46887719911132],[140.98640986409868,45.467188621841416],[140.99000990009904,45.46381146730167],[140.99360993609935,45.458745735492016],[141.0080100801008,45.440171385523314],[141.0188101881019,45.440171385523314],[141.03681036810372,45.44692569460284],[141.05121051210511,45.45030284914259]]],[[[31.94131941319415,46.20509688878016],[32.07092070920709,46.18314538427168],[32.153721537215375,46.15612814795358],[32.16452164521647,46.14937383887403],[32.14292142921431,46.152750993413804],[32.103321033210335,46.166259611572855],[31.736117361173626,46.220294084209115],[31.58131581315814,46.26250851595617],[31.548915489154894,46.282771443194775],[31.523715237152373,46.313165834052654],[31.51291512915131,46.33005160675148],[31.50571505715058,46.35538026579974],[31.50571505715058,46.37395461576844],[31.523715237152373,46.36888888395879],[31.53811538115383,46.32667445221173],[31.55611556115562,46.296280061353826],[31.577715777157778,46.27601713411525],[31.617316173161726,46.25913136141642],[31.94131941319415,46.20509688878016]]],[[[152.20412204122044,47.128748655406014],[152.22932229322294,47.13888011902529],[152.25452254522548,47.15407731445424],[152.2761227612276,47.16252020080367],[152.29412294122943,47.142257273565065],[152.18612186121862,47.071337028230005],[152.17172171721717,47.05613983280105],[152.15732157321577,47.01899113286362],[152.13932139321395,47.00379393743469],[152.08532085320854,46.97677670111656],[152.07452074520745,46.968333814767135],[152.0709207092071,46.95651377387796],[152.06372063720636,46.94807088752856],[152.0565205652057,46.94300515571891],[152.0457204572046,46.93625084663938],[152.02052020520205,46.902479301241726],[151.99891998919992,46.89065926035255],[151.98451984519846,46.87883921946337],[151.95211952119524,46.86026486949464],[151.91971919719197,46.85519913768502],[151.90891908919093,46.834936210446415],[151.88731887318875,46.81636186047771],[151.85131851318516,46.79103320142946],[151.80091800918012,46.76570454238123],[151.76491764917648,46.77921316054028],[151.75051750517508,46.78259031508006],[151.73611736117363,46.78934462415958],[151.72171721717217,46.79778751050898],[151.71091710917108,46.80623039685841],[151.71091710917108,46.81467328320781],[151.71451714517144,46.82480474682711],[151.71451714517144,46.83662478771629],[151.7037170371704,46.848444828605466],[151.74691746917472,46.861953446764545],[151.8369183691837,46.856887714954894],[151.8729187291873,46.87208491038385],[151.92331923319233,46.927807960289954],[151.94851948519488,46.95144804206831],[152.04932049320496,47.01561397832387],[152.15732157321577,47.133814387215665],[152.22572225722257,47.17602881896272],[152.22572225722257,47.169274509883195],[152.21492214922148,47.16252020080367],[152.20412204122044,47.15407731445424],[152.20052200522008,47.142257273565065],[152.20052200522008,47.128748655406014],[152.20412204122044,47.128748655406014]]],[[[154.21294212942132,48.91695198421178],[154.23094230942309,48.8966890569732],[154.22014220142205,48.87304897519482],[154.19854198541987,48.85109747068637],[154.17694176941768,48.835900275257416],[154.0869408694087,48.79368584351033],[154.0617406174062,48.773422916271755],[154.05814058140584,48.76160287538258],[154.0617406174062,48.7480942572235],[154.05814058140584,48.737962793604225],[154.04014040140402,48.732897061794574],[154.0077400774008,48.732897061794574],[153.9969399693997,48.73458563906445],[153.97893978939788,48.7396513708741],[153.9717397173972,48.7396513708741],[153.97533975339752,48.76160287538258],[153.99333993339934,48.78017722535128],[154.06534065340657,48.80719446166941],[154.07974079740796,48.81732592528871],[154.10134101341015,48.839277429797164],[154.1049410494105,48.85109747068637],[154.10134101341015,48.862917511575546],[154.10134101341015,48.87304897519482],[154.1157411574116,48.8764261297346],[154.11934119341197,48.90006621151295],[154.14814148141483,48.915263406941904],[154.1841418414184,48.92201771602143],[154.21294212942132,48.91695198421178]]],[[[156.45936459364594,50.87401304000582],[156.4845648456485,50.85712726730699],[156.49176491764916,50.83855291733829],[156.4989649896499,50.81322425829006],[156.4989649896499,50.796338485591235],[156.50256502565026,50.78114129016228],[156.50976509765098,50.76594409473333],[156.4989649896499,50.7490583220345],[156.48096480964813,50.73217254933567],[156.47016470164704,50.71866393117662],[156.45576455764558,50.701778158477794],[156.4305643056431,50.671383767619915],[156.40536405364054,50.65449799492109],[156.40536405364054,50.630857913142734],[156.3837638376384,50.630857913142734],[156.3549635496355,50.635923644952356],[156.32256322563228,50.63761222222226],[156.30456304563046,50.635923644952356],[156.27216272162724,50.63423506768248],[156.25776257762578,50.65112084038131],[156.23616236162366,50.66125230400061],[156.20736207362074,50.671383767619915],[156.1785617856179,50.68826954031874],[156.1677616776168,50.71359819936697],[156.1677616776168,50.73723828114532],[156.18216182161825,50.76087836292368],[156.20016200162001,50.78114129016228],[156.2217622176222,50.78789559924181],[156.25416254162542,50.79296133105146],[156.27936279362797,50.80646994921051],[156.329763297633,50.84361864914794],[156.35856358563586,50.85543869003712],[156.39456394563945,50.86894730819617],[156.43416434164345,50.87570161727572],[156.45936459364594,50.87401304000582]]],[[[155.5629556295563,50.80815852648041],[155.52335523355237,50.81322425829006],[155.4909549095491,50.82842145371899],[155.46935469354696,50.85206153549734],[155.44775447754478,50.88414450362512],[155.47295472954733,50.921293203562556],[155.5449554495545,50.929736089911955],[155.63135631356317,50.91285031721313],[155.6745567455675,50.87063588546607],[155.67095670956712,50.81153568102016],[155.64575645756457,50.80646994921051],[155.5989559895599,50.809847103750286],[155.5629556295563,50.80815852648041]]],[[[179.39879398793988,51.40760345728876],[179.45999459994601,51.38058622097063],[179.4707947079471,51.370454757351354],[179.4527945279453,51.370454757351354],[179.42039420394207,51.3637004482718],[179.40239402394025,51.3637004482718],[179.4059940599406,51.36876618008145],[179.40959409594097,51.370454757351354],[179.39519395193952,51.37720906643088],[179.38439384393843,51.37720906643088],[179.35559355593557,51.370454757351354],[179.34839348393484,51.36707760281158],[179.3411934119341,51.35863471646218],[179.3339933399334,51.356946139192274],[179.32679326793271,51.35863471646218],[179.31239312393126,51.3637004482718],[179.30159301593017,51.3637004482718],[179.2871928719287,51.36032329373205],[179.2727927279273,51.3552575619224],[179.2547925479255,51.35019183011275],[179.2439924399244,51.353568984652526],[179.23679236792367,51.3637004482718],[179.2331923319233,51.37214333462123],[179.23679236792367,51.38058622097063],[179.24759247592476,51.39071768458993],[179.07839078390788,51.45319504357559],[179.0567905679057,51.468392239004544],[179.04239042390424,51.476835125353944],[179.03879038790387,51.48358943443347],[179.0351903519035,51.49034374351302],[179.02799027990284,51.5004752071323],[179.01359013590138,51.508918093481725],[178.98838988389883,51.522426711640776],[178.95958959589598,51.54268963887938],[178.94158941589416,51.55113252522878],[178.87318873188735,51.571395452467385],[178.8371883718837,51.576461184277036],[178.80118801188013,51.571395452467385],[178.7831878318783,51.571395452467385],[178.77958779587794,51.58321549335656],[178.75438754387545,51.58321549335656],[178.73638736387363,51.584904070626436],[178.71838718387187,51.59165837970599],[178.70038700387005,51.606855575134915],[178.68958689586896,51.61529846148434],[178.63558635586355,51.63724996599282],[178.66798667986683,51.655824315961524],[178.68238682386823,51.65920147050127],[178.72198721987223,51.642315697802445],[178.7687876878769,51.6389385432627],[178.78678786787867,51.62374134783374],[178.80118801188013,51.63556138872292],[178.81558815588158,51.63556138872292],[178.82998829988298,51.628807079643394],[178.84078840788408,51.61698703875422],[178.85518855188553,51.620364193293995],[178.869588695887,51.62205277056387],[178.88758887588875,51.620364193293995],[178.91998919989203,51.611921306944566],[178.92718927189276,51.606855575134915],[178.93078930789306,51.60010126605539],[178.93438934389343,51.58828122516621],[178.94158941589416,51.584904070626436],[178.95238952389525,51.58321549335656],[178.96318963189634,51.579838338816785],[178.9667896678967,51.57814976154691],[178.98478984789847,51.57814976154691],[178.9919899198992,51.576461184277036],[178.99558995589956,51.57308402973726],[179.00639006390065,51.557886834308334],[179.00999009990102,51.55619825703843],[179.0207902079021,51.549443947958906],[179.06039060390606,51.513983825291376],[179.1215912159122,51.48021227989372],[179.13959139591395,51.476835125353944],[179.18279182791827,51.473457970814195],[179.19359193591936,51.47008081627442],[179.20439204392045,51.46332650719489],[179.229592295923,51.43968642541654],[179.24039240392403,51.416046343638186],[179.25839258392585,51.41435776636828],[179.29439294392944,51.419423498177935],[179.29079290792907,51.41435776636828],[179.2871928719287,51.410980611828535],[179.2871928719287,51.40760345728876],[179.27999279992804,51.40422630274901],[179.27999279992804,51.39916057093936],[179.38079380793812,51.40253772547911],[179.39879398793988,51.40760345728876]]],[[[179.78039780397808,51.96652253361992],[179.7767977679777,51.954702492730746],[179.76239762397626,51.946259606381346],[179.75519755197553,51.93950529730182],[179.75159751597516,51.936128142762044],[179.75519755197553,51.92261952460299],[179.7479974799748,51.914176638253565],[179.7227972279723,51.90235659736439],[179.70119701197012,51.887159401935435],[179.67239672396727,51.87702793831616],[179.64359643596435,51.873650783776384],[179.56799567995682,51.88547082466556],[179.55719557195573,51.88884797920534],[179.549995499955,51.89560228828486],[179.52119521195215,51.909110906443914],[179.49959499594996,51.91586521552347],[179.4959949599496,51.92599667914274],[179.50319503195033,51.936128142762044],[179.5067950679507,51.93950529730182],[179.50319503195033,51.949636760921095],[179.49959499594996,51.9597682245404],[179.49239492394923,51.96652253361992],[179.4851948519485,51.97327684269948],[179.4959949599496,51.97834257450913],[179.51759517595178,51.97834257450913],[179.52839528395288,51.980031151779],[179.55719557195573,52.00198265628748],[179.57519575195755,52.003671233557355],[179.59679596795968,52.012114119906755],[179.62199621996223,52.02224558352606],[179.63639636396363,52.03575420168514],[179.64359643596435,52.030688469875486],[179.65079650796508,52.02899989260558],[179.66519665196654,52.02899989260558],[179.6687966879669,52.02055700625618],[179.67599675996763,52.01549127444653],[179.68319683196836,52.012114119906755],[179.69039690396903,52.00873696536701],[179.71919719197194,51.98678546085853],[179.7335973359734,51.97834257450913],[179.7479974799748,51.97327684269948],[179.78039780397808,51.96652253361992]]],[[[177.6419764197642,52.1252487969889],[177.67077670776712,52.11342875609972],[177.68517685176852,52.10498586975032],[177.68877688776888,52.08978867432137],[177.68157681576815,52.08303436524184],[177.6635766357664,52.07628005616232],[177.65637656376566,52.06952574708279],[177.6527765277653,52.05939428346349],[177.64917649176493,52.04419708803454],[177.6419764197642,52.03575420168514],[177.62757627576275,52.025622738065834],[177.56637566375667,52.00198265628748],[177.5771757717577,51.9884740381284],[177.5627756277563,51.97834257450913],[177.55557555575558,51.968211110889825],[177.57357573575734,51.95301391546087],[177.60957609576099,51.95301391546087],[177.61317613176135,51.949636760921095],[177.61317613176135,51.936128142762044],[177.61317613176135,51.927685256412644],[177.60597605976062,51.92599667914274],[177.59517595175953,51.93275098822227],[177.58077580775807,51.92430810187287],[177.57357573575734,51.919242370063216],[177.56637566375667,51.91248806098369],[177.55557555575558,51.92093094733309],[177.53757537575376,51.927685256412644],[177.519575195752,51.93275098822227],[177.50517505175054,51.93275098822227],[177.49437494374945,51.92599667914274],[177.48717487174872,51.91586521552347],[177.47637476374763,51.91248806098369],[177.4655746557466,51.92599667914274],[177.47277472774726,51.93950529730182],[177.41517415174155,51.93106241095239],[177.39357393573937,51.92093094733309],[177.3647736477365,51.91248806098369],[177.35397353973542,51.89560228828486],[177.3359733597336,51.83987923837873],[177.33237332373324,51.8331249292992],[177.3251732517325,51.82637062021968],[177.31797317973184,51.82805919748955],[177.30717307173074,51.83650208383898],[177.29637296372965,51.846633547458254],[177.2927729277293,51.85338785653781],[177.2819728197282,51.86183074288721],[177.23877238772388,51.883782247395686],[177.22437224372243,51.892225133745086],[177.2927729277293,51.92261952460299],[177.31797317973184,51.92599667914274],[177.32877328773287,51.92937383368252],[177.33957339573396,51.93950529730182],[177.35757357573578,51.963145379080174],[177.37197371973718,51.97496541996935],[177.38637386373864,51.97834257450913],[177.42237422374222,51.980031151779],[177.4439744397444,51.98678546085853],[177.4547745477455,51.98678546085853],[177.47637476374763,51.98678546085853],[177.48357483574836,51.98678546085853],[177.5087750877509,51.99522834720793],[177.51597515975163,52.00029407901758],[177.52677526775267,52.034065624415234],[177.55557555575558,52.08472294251172],[177.55557555575558,52.10498586975032],[177.59517595175953,52.1252487969889],[177.6167761677617,52.13031452879855],[177.6419764197642,52.1252487969889]]],[[[173.78993789937903,52.50180152817276],[173.73233732337326,52.471407137314856],[173.71433714337144,52.45114421007628],[173.72513725137253,52.422438396488275],[173.73233732337326,52.4106183555991],[173.739537395374,52.39373258290027],[173.74313743137435,52.37684681020144],[173.74313743137435,52.36164961477249],[173.66033660336603,52.34982957388331],[173.6639366393664,52.35658388296284],[173.6639366393664,52.35827246023271],[173.6639366393664,52.359961037502615],[173.66753667536676,52.365026769312266],[173.66753667536676,52.37178107839179],[173.65673656736567,52.37009250112189],[173.64593645936463,52.37178107839179],[173.63513635136354,52.373469655661665],[173.6279362793628,52.37853538747132],[173.6279362793628,52.395421160170145],[173.60633606336063,52.39710973744002],[173.50193501935019,52.386978273820716],[173.4011340113401,52.39710973744002],[173.39033390333907,52.403864046519544],[173.39393393933943,52.4190612419485],[173.40833408334083,52.430881282837674],[173.42993429934302,52.44101274645698],[173.4551345513455,52.4477670555365],[173.46953469534697,52.44607847826663],[173.49113491134915,52.44270132372685],[173.5091350913509,52.44101274645698],[173.52713527135273,52.44607847826663],[173.54513545135455,52.45452136461603],[173.56673566735668,52.471407137314856],[173.5739357393574,52.47309571458476],[173.59193591935923,52.47478429185463],[173.5991359913599,52.47647286912451],[173.60273602736027,52.48153860093416],[173.609936099361,52.49167006455346],[173.61713617136172,52.498424373632986],[173.62433624336245,52.50011295090286],[173.63153631536318,52.50011295090286],[173.73593735937362,52.51024441452216],[173.76833768337684,52.51024441452216],[173.78993789937903,52.50180152817276]]],[[[-162.58662586625866,54.440288233998075],[-162.55062550625507,54.4200253067595],[-162.5470254702547,54.41495957494985],[-162.5470254702547,54.40313953406067],[-162.5470254702547,54.391319493171494],[-162.55062550625507,54.38625376136184],[-162.65502655026552,54.391319493171494],[-162.6478264782648,54.38625376136184],[-162.6370263702637,54.38118802955219],[-162.62622626226263,54.37949945228232],[-162.61542615426154,54.37949945228232],[-162.61542615426154,54.37274514320279],[-162.63342633426333,54.37105656593289],[-162.6478264782648,54.37612229774254],[-162.67662676626767,54.38625376136184],[-162.7270272702727,54.396385224981145],[-162.75222752227523,54.409893843140196],[-162.78462784627845,54.41664815221972],[-162.79542795427955,54.423402461299276],[-162.84222842228422,54.46055116123668],[-162.82062820628207,54.462239738506554],[-162.82422824228243,54.47405977939573],[-162.8278282782828,54.489256974824684],[-162.8278282782828,54.502765592983735],[-162.81342813428134,54.50445417025364],[-162.79182791827918,54.50107701571386],[-162.75942759427593,54.48756839755481],[-162.7342273422734,54.48419124301503],[-162.6910269102691,54.47068262485598],[-162.65502655026552,54.467305470316205],[-162.62262622626227,54.45548542942703],[-162.61542615426154,54.453796852157154],[-162.6010260102601,54.45548542942703],[-162.59382593825939,54.45548542942703],[-162.59382593825939,54.453796852157154],[-162.59382593825939,54.4487311203475],[-162.59022590225902,54.44366538853785],[-162.58662586625866,54.440288233998075]]],[[[168.0586805868059,54.54666860200069],[168.06948069480694,54.53991429292117],[168.10188101881022,54.524717097492214],[168.10908109081095,54.516274211142814],[168.10908109081095,54.502765592983735],[168.09828098280985,54.50107701571386],[168.0838808388084,54.50445417025364],[168.04428044280445,54.521339942952466],[167.98667986679868,54.55511148835012],[167.93627936279364,54.5939487655574],[167.8210782107821,54.64798323819366],[167.8066780667807,54.65136039273344],[167.77067770677706,54.654737547273186],[167.7526775267753,54.65811470181296],[167.73467734677348,54.663180433622614],[167.7238772387724,54.66993474270214],[167.6986769867699,54.690197669940716],[167.5006750067501,54.78475799705416],[167.45027450274506,54.82021811972169],[167.43947439474397,54.86580970600852],[167.4718747187472,54.86749828327842],[167.51867518675186,54.855678242389246],[167.5582755827558,54.83879246969042],[167.56547565475654,54.82190669699159],[167.56187561875618,54.806709501562636],[167.57627576275763,54.79826661521321],[167.59787597875982,54.79151230613368],[167.64107641076413,54.788135151593934],[167.6590765907659,54.78475799705416],[167.69147691476917,54.769560801625204],[167.73467734677348,54.76280649254568],[167.7418774187742,54.75605218346615],[167.7526775267753,54.72903494714802],[167.7670776707767,54.712149174449195],[167.78507785077852,54.70201771082992],[167.80307803078034,54.69526340175037],[167.82467824678247,54.69357482448049],[167.84627846278465,54.68682051540097],[167.8750787507875,54.65980327908284],[167.89307893078933,54.65304897000331],[167.9110791107911,54.65136039273344],[167.92547925479255,54.64460608365388],[167.93627936279364,54.63447462003461],[167.9506795067951,54.619277424605656],[167.97947979479795,54.59901449736705],[168.03708037080372,54.5669315292393],[168.0586805868059,54.54666860200069]]],[[[-162.37422374223743,54.953615724042436],[-162.34542345423455,54.970501496741264],[-162.30222302223024,54.98569869217019],[-162.26262262622626,54.989075846709966],[-162.23742237422374,54.96881291947136],[-162.23382233822338,54.956992878582184],[-162.230222302223,54.93841852861348],[-162.230222302223,54.91984417864478],[-162.230222302223,54.9080241377556],[-162.23742237422374,54.894515519596524],[-162.2770227702277,54.85230108784947],[-162.30942309423094,54.837103892420515],[-162.34182341823418,54.83879246969042],[-162.37422374223743,54.85230108784947],[-162.40302403024032,54.872564015088045],[-162.42462424624247,54.8978926741363],[-162.43542435424354,54.91477844683513],[-162.43542435424354,54.92828706499418],[-162.4282242822428,54.93841852861348],[-162.37422374223743,54.953615724042436]]],[[[137.17037170371702,55.11909629649094],[137.18477184771848,55.10558767833186],[137.18117181171812,55.09376763744268],[137.1127711277113,55.024535969377496],[137.0947709477095,55.01440450575819],[137.06957069570694,55.00933877394857],[137.06597065970664,55.00089588759914],[137.0731707317073,54.98063296036054],[137.0839708397084,54.96037003312196],[137.08757087570876,54.953615724042436],[137.0731707317073,54.93335279680383],[137.04797047970482,54.92322133318453],[137.0191701917019,54.91984417864478],[136.94356943569437,54.92322133318453],[136.92916929169292,54.92828706499418],[136.92916929169292,54.93335279680383],[136.92916929169292,54.94179568315326],[136.92916929169292,54.95023856950266],[136.9219692196922,54.956992878582184],[136.8967689676897,54.96037003312196],[136.8427684276843,54.93841852861348],[136.82476824768247,54.93841852861348],[136.81396813968144,54.94348426042313],[136.80316803168034,54.93841852861348],[136.79236792367925,54.93166421953396],[136.78516785167852,54.92828706499418],[136.75996759967603,54.93335279680383],[136.74916749167494,54.93166421953396],[136.73836738367385,54.91984417864478],[136.74556745567457,54.913089869565255],[136.75996759967603,54.89282694232665],[136.73836738367385,54.88438405597725],[136.71676716767166,54.891138365056776],[136.69156691566917,54.90295840594595],[136.669966699667,54.9080241377556],[136.669966699667,54.913089869565255],[136.68436684366844,54.921532755914654],[136.6879668796688,54.93166421953396],[136.6879668796688,54.94179568315326],[136.69156691566917,54.953615724042436],[136.70236702367026,54.96543576493161],[136.709567095671,54.96881291947136],[136.73836738367385,54.975567228550915],[136.75636756367567,54.98232153763044],[136.79236792367925,55.00933877394857],[136.81036810368107,55.01778166029797],[136.82476824768247,55.02284739210762],[136.85716857168575,55.02960170118715],[136.97956979569796,55.087013328363156],[137.04437044370445,55.10558767833186],[137.08757087570876,55.08532475109328],[137.10197101971022,55.10727625560176],[137.12357123571235,55.12078487376081],[137.14517145171453,55.12585060557046],[137.17037170371702,55.11909629649094]]],[[[-160.49860498604986,55.19508227363565],[-160.4878048780488,55.193393696365774],[-160.4770047700477,55.19677085090555],[-160.46980469804697,55.198459428175426],[-160.46260462604627,55.18832796455612],[-160.4878048780488,55.1815736554766],[-160.53460534605347,55.18832796455612],[-160.559805598056,55.18832796455612],[-160.520205202052,55.17819650093682],[-160.50940509405095,55.17481934639707],[-160.5130051300513,55.16468788277777],[-160.53820538205383,55.13260491464999],[-160.55620556205562,55.157933573698244],[-160.57420574205742,55.162999305507896],[-160.62820628206282,55.15455641915847],[-160.6390063900639,55.15455641915847],[-160.66780667806677,55.162999305507896],[-160.6750067500675,55.16806503731752],[-160.6858068580686,55.17988507820672],[-160.68220682206822,55.18663938728625],[-160.6750067500675,55.1917051190959],[-160.6750067500675,55.201836582715174],[-160.68220682206822,55.211968046334476],[-160.6930069300693,55.20859089179473],[-160.70380703807038,55.201836582715174],[-160.7182071820718,55.19508227363565],[-160.73260732607326,55.1917051190959],[-160.7470074700747,55.1917051190959],[-160.75780757807578,55.18832796455612],[-160.7722077220772,55.1815736554766],[-160.7830078300783,55.166376460047644],[-160.80460804608046,55.13260491464999],[-160.8190081900819,55.11909629649094],[-160.8190081900819,55.135982069189765],[-160.8118081180812,55.166376460047644],[-160.81540815408155,55.17819650093682],[-160.84060840608407,55.198459428175426],[-160.84780847808477,55.206902314524825],[-160.8550085500855,55.22209950995378],[-160.85140851408514,55.225476664493556],[-160.84780847808477,55.242362437192384],[-160.84780847808477,55.24911674627191],[-160.84780847808477,55.255871055351435],[-160.85860858608586,55.26600251897074],[-160.86220862208623,55.27275682805026],[-160.85860858608586,55.287954023479216],[-160.85140851408514,55.30315121890814],[-160.84780847808477,55.31665983706722],[-160.8550085500855,55.331857032496146],[-160.82260822608225,55.36394000062393],[-160.7830078300783,55.389268659672155],[-160.74340743407433,55.40615443237098],[-160.69660696606965,55.40615443237098],[-160.66420664206643,55.3842029278625],[-160.6570065700657,55.36394000062393],[-160.67140671406713,55.34367707338532],[-160.70380703807038,55.318348414337095],[-160.68940689406895,55.30821695071779],[-160.67860678606786,55.30652837344792],[-160.6570065700657,55.31159410525757],[-160.65340653406534,55.31497125979732],[-160.64980649806498,55.32172556887684],[-160.6462064620646,55.3284798779564],[-160.6390063900639,55.331857032496146],[-160.63180631806318,55.33016845522627],[-160.61740617406173,55.326791300686494],[-160.61020610206103,55.32510272341662],[-160.6030060300603,55.33016845522627],[-160.6030060300603,55.36056284608415],[-160.59940599405994,55.37238288697333],[-160.58860588605887,55.3842029278625],[-160.57420574205742,55.39095723694206],[-160.559805598056,55.39264581421193],[-160.54540545405453,55.385891505132406],[-160.53460534605347,55.36394000062393],[-160.55260552605526,55.345365650655225],[-160.57420574205742,55.32510272341662],[-160.5850058500585,55.29977406436839],[-160.58140581405814,55.28626544620931],[-160.57420574205742,55.277822559859914],[-160.56340563405635,55.27275682805026],[-160.55260552605526,55.26262536443096],[-160.54540545405453,55.25080532354178],[-160.5490054900549,55.24573959173213],[-160.58140581405814,55.23560812811283],[-160.56340563405635,55.23054239630318],[-160.52740527405274,55.22716524176343],[-160.50940509405095,55.22209950995378],[-160.50940509405095,55.21703377814413],[-160.50220502205022,55.2001480054453],[-160.49860498604986,55.19508227363565]]],[[[-169.58149581495815,56.610110025797354],[-169.55629556295563,56.61855291214678],[-169.52389523895238,56.61686433487688],[-169.49149491494916,56.60673287125758],[-169.47349473494734,56.593224253098526],[-169.51669516695168,56.57802705766957],[-169.5490954909549,56.557764130430996],[-169.58869588695887,56.54087835773217],[-169.6318963189632,56.54425551227192],[-169.65349653496534,56.55438697589122],[-169.67869678696786,56.5763384803997],[-169.69309693096932,56.586469944019],[-169.76509765097651,56.60673287125758],[-169.79029790297903,56.62024148941666],[-169.74349743497436,56.62024148941666],[-169.60669606696067,56.60335571671783],[-169.58149581495815,56.610110025797354]]],[[[-170.24030240302403,57.216309265685254],[-170.14670146701468,57.234883615653956],[-170.1359013590136,57.243326502003356],[-170.12150121501216,57.25008081108291],[-170.10350103501034,57.25008081108291],[-170.11430114301143,57.23994934746361],[-170.1359013590136,57.224752152034654],[-170.14670146701468,57.2095549566057],[-170.15030150301504,57.20617780206595],[-170.15390153901538,57.199423492986426],[-170.15750157501574,57.1926691839069],[-170.1611016110161,57.17409483393817],[-170.16830168301684,57.16902910212852],[-170.20430204302042,57.153831906699594],[-170.25470254702546,57.140323288540515],[-170.25470254702546,57.12850324765134],[-170.2619026190262,57.118371784032036],[-170.27630276302762,57.11161747495251],[-170.29070290702907,57.10655174314286],[-170.27630276302762,57.126814670381464],[-170.27270272702728,57.136946134000766],[-170.27630276302762,57.14876617488994],[-170.28350283502834,57.14707759762004],[-170.31950319503196,57.15552048396947],[-170.34830348303484,57.14707759762004],[-170.36630366303663,57.14876617488994],[-170.38430384303842,57.153831906699594],[-170.39870398703988,57.16058621577912],[-170.40590405904058,57.17071767939842],[-170.4131041310413,57.18422629755747],[-170.40950409504094,57.19604633844665],[-170.39510395103952,57.202800647526175],[-170.3591035910359,57.202800647526175],[-170.34830348303484,57.20448922479608],[-170.33390333903338,57.21462068841535],[-170.32310323103232,57.216309265685254],[-170.2619026190262,57.21462068841535],[-170.24030240302403,57.216309265685254]]],[[[23.380433804338054,58.580679699750476],[23.398433984339846,58.56379392705165],[23.40203402034021,58.55535104070222],[23.380433804338054,58.54690815435282],[23.373233732337326,58.53846526800339],[23.362433624336262,58.53171095892387],[23.348033480334806,58.535088113463644],[23.330033300333014,58.54184242254317],[23.312033120331222,58.54521957708292],[23.279632796327974,58.54690815435282],[23.265232652326517,58.54353099981304],[23.23643236432366,58.535088113463644],[23.222032220322205,58.535088113463644],[23.13563135631358,58.580679699750476],[23.081630816308177,58.59081116336975],[23.06003060030602,58.60263120425893],[23.063630636306357,58.624582708767406],[23.07443074430745,58.62964844057706],[23.106831068310697,58.624582708767406],[23.121231212312125,58.62795986330718],[23.12483124831249,58.633025595116834],[23.132031320313217,58.65497709962531],[23.13563135631358,58.66173140870484],[23.153631536315373,58.67524002686389],[23.17523175231753,58.68030575867354],[23.196831968319685,58.68030575867354],[23.286832868328702,58.66679714051449],[23.330033300333014,58.65328852235541],[23.34443344433444,58.64484563600601],[23.348033480334806,58.63471417238671],[23.348033480334806,58.624582708767406],[23.34443344433444,58.616139822418006],[23.348033480334806,58.60769693606858],[23.355233552335534,58.597565472449304],[23.373233732337326,58.58574543156013],[23.380433804338054,58.580679699750476]]],[[[150.72450724507246,59.127778735192464],[150.77850778507786,59.10920438522376],[150.78210782107823,59.09063003525503],[150.749707497075,59.08049857163576],[150.7209072090721,59.073744262556204],[150.710107101071,59.0551699125875],[150.65250652506523,59.02815267626937],[150.60930609306092,59.00620117176089],[150.55530555305552,58.99944686268137],[150.479704797048,58.99944686268137],[150.47250472504726,59.00451259449102],[150.48690486904871,59.0264640989995],[150.50850508505084,59.038284139888674],[150.54810548105485,59.06192422166703],[150.5985059850599,59.08049857163576],[150.62730627306274,59.08725288071528],[150.66330663306633,59.09569576706468],[150.6849068490685,59.10751580795386],[150.68850688506888,59.12440158065269],[150.69930699306997,59.141287353351515],[150.710107101071,59.13959877608164],[150.72450724507246,59.127778735192464]]],[[[22.887228872288716,60.068316274517116],[22.9160291602916,60.068316274517116],[22.926829268292693,60.06493911997737],[22.919629196291964,60.058184810897814],[22.9160291602916,60.049741924548414],[22.912429124291236,60.041299038198986],[22.905229052290537,60.03792188365924],[22.901629016290173,60.03792188365924],[22.894428944289444,60.032856151849586],[22.88362883628838,60.019347533690535],[22.880028800288017,60.01090464734111],[22.87282872828729,60.005838915531456],[22.85842858428586,60.01090464734111],[22.851228512285132,60.027790420039935],[22.854828548285496,60.041299038198986],[22.88362883628838,60.04298761546889],[22.88362883628838,60.04805334727854],[22.876428764287652,60.05143050181829],[22.862028620286196,60.05143050181829],[22.854828548285496,60.054807656358065],[22.862028620286196,60.063250542707465],[22.887228872288716,60.068316274517116]]],[[[22.314823148231483,60.19158241521856],[22.376023760237615,60.20340245610774],[22.38682386823868,60.19495956975834],[22.368823688236887,60.17807379705951],[22.343623436234367,60.16963091071008],[22.318423184231847,60.16456517890043],[22.318423184231847,60.15949944709078],[22.332823328233303,60.15443371528113],[22.33642336423364,60.147679406201604],[22.32202322023221,60.147679406201604],[22.300423004230055,60.147679406201604],[22.289622896228963,60.14936798347148],[22.293222932229327,60.152745138011255],[22.293222932229327,60.15612229255103],[22.289622896228963,60.16456517890043],[22.293222932229327,60.16963091071008],[22.29682296822969,60.17300806524986],[22.300423004230055,60.17638521978961],[22.300423004230055,60.18145095159926],[22.30402304023042,60.188205260678785],[22.314823148231483,60.19158241521856]]],[[[22.300423004230055,60.367194451286366],[22.289622896228963,60.35875156493694],[22.20322203222034,60.34355436950801],[22.192421924219246,60.34186579223811],[22.17082170821709,60.34355436950801],[22.156421564215663,60.35199725585741],[22.156421564215663,60.35875156493694],[22.163621636216362,60.362128719476715],[22.257222572225743,60.37394876036589],[22.2860228602286,60.375637337635766],[22.300423004230055,60.367194451286366]]],[[[22.206822068220703,60.38239164671529],[22.206822068220703,60.375637337635766],[22.113221132211322,60.35368583312729],[22.106021060210622,60.35368583312729],[22.12042120421205,60.37226018309602],[22.138421384213842,60.37901449217554],[22.14562145621457,60.38070306944542],[22.206822068220703,60.38239164671529]]],[[[-172.29592295922959,60.35199725585741],[-172.28512285122852,60.34186579223811],[-172.22752227522275,60.32329144226941],[-172.20952209522096,60.313159978650106],[-172.2239222392224,60.313159978650106],[-172.26352263522637,60.30640566957058],[-172.2779227792278,60.30978282411036],[-172.3031230312303,60.32329144226941],[-172.36792367923678,60.34524294677789],[-172.3859238592386,60.34693152404776],[-172.42552425524255,60.34186579223811],[-172.4759247592476,60.35030867858754],[-172.50832508325084,60.34355436950801],[-172.54072540725406,60.331734328618836],[-172.5731257312573,60.326668596809185],[-172.59832598325983,60.33004575134893],[-172.6271262712627,60.33680006042846],[-172.6739267392674,60.35875156493694],[-172.68472684726848,60.362128719476715],[-172.709927099271,60.36550587401649],[-172.72072720727206,60.36888302855624],[-172.73512735127352,60.375637337635766],[-172.7531275312753,60.392523110334594],[-172.7639276392764,60.402654573953896],[-172.7819278192782,60.4127860375732],[-173.0051300513005,60.490460591987784],[-173.05913059130592,60.49890347833721],[-173.04473044730446,60.50396921014686],[-173.03753037530376,60.50565778741674],[-173.04113041130412,60.517477828305914],[-173.04113041130412,60.527609291925216],[-173.04113041130412,60.53774075554452],[-173.03753037530376,60.54618364189392],[-173.03753037530376,60.552937950973444],[-173.03753037530376,60.559692260053],[-173.03753037530376,60.56475799186265],[-173.03033030330303,60.5681351464024],[-173.0231302313023,60.5681351464024],[-173.01233012330124,60.56982372367227],[-173.00153001530015,60.57488945548192],[-172.9511295112951,60.60021811453018],[-172.9259292592926,60.606972423609704],[-172.91512915129152,60.588398073641],[-172.9259292592926,60.57320087821205],[-172.92232922329222,60.549560796433695],[-172.9079290792908,60.527609291925216],[-172.889928899289,60.51916640557582],[-172.87552875528755,60.514100673766166],[-172.81072810728108,60.47864055109861],[-172.53352533525336,60.39083453306472],[-172.50472504725047,60.389145955794845],[-172.41112411124112,60.40096599668402],[-172.37872378723787,60.39590026487437],[-172.29592295922959,60.35199725585741]]],[[[-170.97470974709748,63.431962196123465],[-171.05751057510574,63.43027361885356],[-171.0719107191072,63.437027927933116],[-171.02871028710288,63.43871650520299],[-170.78390783907838,63.40832211434511],[-170.97470974709748,63.431962196123465]]],[[[-171.089910899109,63.60419707765149],[-171.0719107191072,63.60250850038162],[-171.07551075510756,63.60250850038162],[-171.089910899109,63.60419707765149]]],[[[-171.089910899109,63.60419707765149],[-171.15831158311582,63.60926280946114],[-171.1439114391144,63.61095138673102],[-171.089910899109,63.60419707765149]]],[[[35.865358653586554,65.03104487070237],[35.865358653586554,65.01247052073367],[35.858158581585826,65.00402763438424],[35.847358473584734,64.99896190257459],[35.83655836558367,64.99051901622519],[35.822158221582214,64.98376470714567],[35.80055800558006,64.97869897533602],[35.764557645576474,64.96350177990706],[35.74295742957429,64.96181320263719],[35.72855728557286,64.97363324352636],[35.72855728557286,64.98545328441554],[35.7249572495725,65.0006504798445],[35.721357213572134,65.01415909800355],[35.7249572495725,65.02597913889272],[35.71055710557107,65.0276677161626],[35.688956889568914,65.03442202524215],[35.6529565295653,65.03442202524215],[35.60255602556026,65.0377991797819],[35.56295562955631,65.05130779794098],[35.5269552695527,65.07325930244943],[35.505355053550545,65.09521080695791],[35.505355053550545,65.12053946600616],[35.52335523355234,65.14417954778452],[35.55935559355595,65.14924527959417],[35.60255602556026,65.15431101140382],[35.64935649356494,65.15431101140382],[35.663756637566394,65.16781962956287],[35.68535685356855,65.17119678410265],[35.732157321573226,65.17288536137252],[35.78615786157863,65.1644424750231],[35.814958149581514,65.15431101140382],[35.82935829358294,65.12391662054591],[35.86175861758619,65.08001361152898],[35.865358653586554,65.0766364569892],[35.85455854558546,65.06481641610003],[35.84375843758437,65.0681935706398],[35.81855818558185,65.09014507514826],[35.81855818558185,65.09521080695791],[35.807758077580786,65.10871942511699],[35.796957969579694,65.11378515692664],[35.79335793357933,65.10027653876756],[35.78615786157863,65.08001361152898],[35.782557825578266,65.07325930244943],[35.782557825578266,65.0681935706398],[35.80415804158042,65.05975068429038],[35.840158401584034,65.05130779794098],[35.858158581585826,65.04455348886142],[35.865358653586554,65.03104487070237]]],[[[30.02250022500226,69.83167004897888],[30.09810098100982,69.83504720351866],[30.108901089010885,69.82829289443913],[30.08730087300873,69.81647285354995],[30.058500585005845,69.8097185444704],[29.975699756997585,69.79958708085113],[29.92889928899291,69.7827013081523],[29.90369903699039,69.77763557634265],[29.88569885698857,69.7810127308824],[29.864098640986413,69.7911441945017],[29.84609846098462,69.79620992631135],[29.831698316983164,69.7911441945017],[29.84609846098462,69.77932415361252],[29.831698316983164,69.76919268999322],[29.79569795697958,69.75568407183417],[29.712897128971292,69.76412695818357],[29.734497344973448,69.78945561723182],[29.80289802898031,69.82153858535958],[29.831698316983164,69.8384243580584],[29.81009810098101,69.86544159437653],[29.817298172981737,69.89077025342479],[29.842498424984257,69.90934460339349],[29.87849878498787,69.91441033520314],[29.97209972099722,69.90259029431397],[29.993699936999377,69.89414740796454],[29.99729997299974,69.88739309888501],[29.99729997299974,69.87388448072596],[30.000900009000105,69.86544159437653],[30.00450004500047,69.86206443983679],[30.02970029700299,69.85362155348736],[30.026100261002625,69.8485558216777],[30.02250022500226,69.83673578078853],[30.02250022500226,69.83167004897888]]],[[[-7.961479614796133,71.17408897853562],[-7.939879398793977,71.1572032058368],[-7.939879398793977,71.13694027859822],[-7.957879578795769,71.12005450589939],[-7.986679866798653,71.11330019681986],[-8.008280082800809,71.10485731047044],[-8.004680046800473,71.08628296050173],[-7.986679866798653,71.06264287872338],[-7.983079830798289,71.04575710602455],[-8.004680046800473,71.03224848786547],[-8.400684006840066,70.96301681980029],[-8.425884258842586,70.96470539707019],[-8.472684726847262,70.97483686068946],[-8.497884978849783,70.97652543795937],[-8.620286202862019,70.95795108799064],[-8.659886598865995,70.94444246983159],[-8.695886958869579,70.93768816075206],[-8.861488614886156,70.86339076087722],[-8.875888758887584,70.85832502906757],[-8.911889118891196,70.85157071998805],[-8.929889298892988,70.8465049881784],[-8.937089370893716,70.83975067909887],[-8.955089550895508,70.82455348366992],[-8.962289622896236,70.81779917459039],[-8.987489874898756,70.81104486551084],[-9.019890198901976,70.80597913370121],[-9.055890558905588,70.80766771097109],[-9.081090810908108,70.81273344278074],[-9.07389073890738,70.81948775186027],[-9.070290702907016,70.82793063820966],[-9.066690666906652,70.83299637001932],[-9.109891098910992,70.86170218360732],[-9.117091170911692,70.8752108017664],[-9.088290882908836,70.88027653357605],[-9.059490594905952,70.88027653357605],[-9.045090450904496,70.88196511084593],[-9.030690306903068,70.88703084265558],[-8.994689946899456,70.90560519262428],[-8.965889658896572,70.91067092443393],[-8.955089550895508,70.91573665624358],[-8.944289442894416,70.9224909653231],[-8.937089370893716,70.92755669713276],[-8.915489154891532,70.93262242894241],[-8.832688326883272,70.93768816075206],[-8.789487894878931,70.94613104710146],[-8.74628746287462,70.96301681980029],[-8.739087390873891,70.96639397434006],[-8.735487354873555,70.96977112887981],[-8.731887318873191,70.97483686068946],[-8.731887318873191,70.97652543795937],[-8.692286922869215,70.98665690157864],[-8.573485734857343,70.99678836519794],[-8.566285662856615,71.00016551973772],[-8.56268562685625,71.00523125154737],[-8.559085590855915,71.00860840608712],[-8.548285482854823,71.01029698335702],[-8.526685266852667,71.0119855606269],[-8.515885158851574,71.01367413789677],[-8.508685086850875,71.0204284469763],[-8.476284762847627,71.05251141510408],[-8.469084690846898,71.05757714691373],[-8.451084510845106,71.06602003326313],[-8.443884438844378,71.07277434234268],[-8.397083970839702,71.11330019681986],[-8.375483754837546,71.12680881497892],[-8.325083250832506,71.14707174221752],[-8.188281882818814,71.15382605129705],[-8.173881738817386,71.1572032058368],[-8.15228152281523,71.17240040126575],[-8.148681486814866,71.17408897853562],[-8.123481234812346,71.1774661330754],[-8.044280442804421,71.17408897853562],[-8.004680046800473,71.18084328761518],[-7.983079830798289,71.18084328761518],[-7.961479614796133,71.17408897853562]]],[[[137.9155791557916,71.55908459606889],[137.92277922779226,71.55233028698936],[137.96597965979663,71.51011585524228],[137.94077940779408,71.49491865981335],[137.76797767977683,71.43075272355779],[137.7175771757718,71.42062125993851],[137.69237692376925,71.41893268266861],[137.5879758797588,71.43750703263734],[137.5231752317523,71.47465573257475],[137.48357483574836,71.48478719619405],[137.39357393573937,71.48141004165427],[137.3467734677347,71.49491865981335],[137.31797317973184,71.499984391623],[137.28917289172892,71.4982958143531],[137.2675726757268,71.4898529280037],[137.29997299973002,71.4797214643844],[137.37557375573755,71.46790142349522],[137.4115741157412,71.45608138260604],[137.39357393573937,71.44932707352652],[137.38637386373864,71.44932707352652],[137.37557375573755,71.44932707352652],[137.389973899739,71.43581845536744],[137.34317343173433,71.42737556901804],[137.04437044370445,71.51180443251218],[136.99036990369905,71.51687016432183],[137.02277022770227,71.53375593702066],[137.1271712717127,71.54726455517971],[137.21717217172176,71.57597036876771],[137.47277472774726,71.58610183238702],[137.58077580775807,71.57765894603759],[137.60957609576099,71.57934752330749],[137.67077670776706,71.59285614146654],[137.7067770677707,71.59623329600632],[137.85437854378546,71.58441325511711],[137.86877868778691,71.57934752330749],[137.9047790477905,71.56077317333876],[137.9155791557916,71.55908459606889]]],[[[74.72414724147242,73.10750995255131],[74.84654846548466,73.09400133439226],[74.9617496174962,73.06529552080426],[74.9617496174962,73.0602297889946],[74.87174871748718,73.08049271623321],[74.79254792547925,73.08724702531273],[74.76734767347673,73.09231275712239],[74.73494734947352,73.09231275712239],[74.70254702547027,73.0788041389633],[74.68454684546847,73.05516405718495],[74.69534695346954,73.02645824359695],[74.6449464494645,72.97411234823059],[74.63774637746377,72.96060373007154],[74.6449464494645,72.93696364829316],[74.66294662946629,72.92176645286423],[74.709747097471,72.90150352562563],[74.6989469894699,72.89306063927623],[74.68814688146881,72.87110913476775],[74.68094680946811,72.86435482568822],[74.65574655746559,72.85928909387857],[74.5837458374584,72.8744862893075],[74.5909459094591,72.87955202111715],[74.59814598145982,72.8947492165461],[74.4649446494465,72.89981494835575],[74.34254342543426,72.92852076194376],[74.33534335343353,72.93358649375341],[74.3317433174332,72.94202938010281],[74.32454324543247,72.94709511191246],[74.23454234542345,72.95722657553176],[74.20214202142023,72.96566946188116],[74.11934119341194,72.99944100727882],[74.09774097740979,73.011261048168],[74.09414094140942,73.02814682086682],[74.15894158941592,73.08893560258261],[74.18414184141841,73.10750995255131],[74.2129421294213,73.11426426163086],[74.47574475744759,73.13452718886944],[74.72414724147242,73.10750995255131]]],[[[120.2790027900279,73.10075564347179],[120.26100261002614,73.08724702531273],[120.2250022500225,73.06698409807413],[120.2106021060211,73.0517869026452],[120.2250022500225,73.0416554390259],[120.22860228602286,73.039966861756],[119.80379803798041,73.039966861756],[119.74619746197465,73.03321255267647],[119.7209972099721,73.03321255267647],[119.70299702997033,73.04672117083555],[119.76419764197641,73.07373840715366],[119.73899738997392,73.09400133439226],[119.65979659796596,73.10919852982121],[119.63459634596347,73.12777287978992],[119.67059670596706,73.13115003432969],[119.79299792997932,73.16154442518757],[120.02340023400234,73.1682987342671],[120.24660246602468,73.11932999344049],[120.2790027900279,73.10075564347179]]],[[[76.75816758167582,73.45029113833752],[76.75456754567546,73.43002821109891],[76.72216722167224,73.43509394290857],[76.65376653766538,73.46379975649657],[76.56376563765639,73.48575126100505],[76.2757627576276,73.51783422913283],[76.11736117361176,73.51276849732318],[76.07056070560708,73.52627711548223],[76.16056160561607,73.56173723814976],[76.25056250562506,73.55498292907023],[76.42336423364236,73.51783422913283],[76.51696516965171,73.51276849732318],[76.73296732967333,73.4705540655761],[76.75816758167582,73.45029113833752]]],[[[75.9229592295923,73.52289996094245],[75.89055890558907,73.51614565186293],[75.87255872558725,73.5093913427834],[75.86535865358655,73.500948456434],[75.86895868958692,73.49250557008457],[75.89415894158944,73.4806855291954],[75.90135901359014,73.4705540655761],[75.80415804158042,73.45366829287727],[75.49815498154982,73.45029113833752],[75.50895508955091,73.45366829287727],[75.5269552695527,73.4604226019568],[75.53415534155343,73.46886548830622],[75.53055530555307,73.47730837465562],[75.53415534155343,73.48237410646527],[75.5449554495545,73.49757130189423],[75.5269552695527,73.49419414735445],[75.4729547295473,73.47393122011587],[75.4009540095401,73.45873402468692],[75.37935379353794,73.45029113833752],[75.36135361353615,73.43509394290857],[75.36495364953652,73.42496247928926],[75.37215372153722,73.41820817020974],[75.37215372153722,73.40807670659044],[75.36135361353615,73.39625666570126],[75.339753397534,73.39287951116151],[75.32175321753218,73.39794524297113],[75.30375303753038,73.40807670659044],[75.30735307353075,73.41820817020974],[75.30735307353075,73.42158532474951],[75.31095310953111,73.42327390201939],[75.31455314553148,73.42833963382904],[75.33615336153363,73.45029113833752],[75.36135361353615,73.46886548830622],[75.42255422554226,73.49757130189423],[75.62055620556205,73.55329435180036],[76.03456034560344,73.57862301084859],[76.0777607776078,73.56004866087989],[76.04176041760417,73.54485146545093],[75.9229592295923,73.52289996094245]]],[[[83.5118351183512,74.12065631448095],[83.54063540635406,74.11896773721105],[83.56943569435697,74.1139020054014],[83.59823598235982,74.105459119052],[83.61983619836201,74.09026192362305],[83.61263612636128,74.08013046000374],[83.58383583835837,74.07337615092422],[83.52623526235266,74.0666218418447],[83.53343533435333,74.08181903727365],[83.50463504635047,74.0851961918134],[83.39663396633966,74.07506472819412],[83.40383403834039,74.06155611003504],[83.43263432634325,74.04973606914587],[83.46503465034652,74.04635891460609],[83.43263432634325,74.03622745098681],[83.3930339303393,74.03622745098681],[83.07983079830797,74.0868847690833],[82.82782827828277,74.08013046000374],[82.82782827828277,74.08857334635317],[82.81342813428137,74.09363907816282],[82.86022860228604,74.11896773721105],[82.91782917829181,74.13078777810023],[83.05823058230584,74.13754208717975],[83.18063180631805,74.15442785987858],[83.5118351183512,74.12065631448095]]],[[[136.259562595626,73.95686431930233],[136.27036270362703,73.93153566025407],[136.2487624876249,73.9112727330155],[136.21276212762126,73.89945269212632],[136.1731617316173,73.89269838304676],[136.16596165961658,73.88932122850701],[136.16236162361622,73.88425549669736],[136.15516155161555,73.87918976488771],[136.14796147961482,73.87750118761784],[136.13356133561336,73.87918976488771],[136.07956079560796,73.89776411485641],[136.0651606516065,73.90789557847572],[136.06156061560614,73.9197156193649],[136.039960399604,73.9382899693336],[135.7339573395734,74.04129318279647],[135.70515705157055,74.05649037822539],[135.68715687156873,74.07506472819412],[135.67635676356764,74.09701623270257],[135.66195661956618,74.11052485086165],[135.55395553955543,74.15105070533883],[135.51435514355143,74.15442785987858],[135.47475474754748,74.15442785987858],[135.4387543875439,74.16118216895813],[135.40995409954098,74.18482225073649],[135.39195391953922,74.23379099156307],[135.38115381153813,74.24392245518237],[135.35235352353527,74.25911965061132],[135.3847538475385,74.25911965061132],[135.39915399153995,74.25743107334145],[135.45315453154535,74.2422338779125],[135.58995589955902,74.23547956883297],[135.7447574475745,74.16962505530753],[135.8671586715867,74.13923066444966],[135.91395913959138,74.13247635537013],[135.95715957159575,74.1155905826713],[136.0111601116011,74.10377054178213],[136.02556025560256,74.09701623270257],[136.11556115561154,74.04635891460609],[136.21636216362162,74.01427594647834],[136.2631626316263,73.98894728743008],[136.259562595626,73.95686431930233]]],[[[19.161191611916138,74.5259148592528],[19.251192511925126,74.48876615931536],[19.287192871928738,74.48370042750571],[19.297992979929802,74.48032327296596],[19.294392943929438,74.47356896388644],[19.27999279992801,74.46006034572736],[19.27999279992801,74.45668319118761],[19.283592835928374,74.44824030483818],[19.283592835928374,74.44486315029843],[19.276392763927646,74.43979741848878],[19.261992619926218,74.43473168667913],[19.236792367923698,74.4178459139803],[19.236792367923698,74.41278018217065],[19.233192331923334,74.3992715640116],[19.186391863918658,74.37563148223322],[19.193591935919358,74.36887717315369],[19.168391683916838,74.36043428680429],[19.074790747907485,74.34692566864521],[19.0459904599046,74.35199140045486],[19.035190351903537,74.36550001861394],[19.02799027990281,74.37225432769347],[19.017190171901717,74.37563148223322],[19.00279002790029,74.37732005950312],[18.963189631896313,74.38576294585252],[18.95238952389525,74.39251725493205],[18.930789307893093,74.40602587309112],[18.865988659886597,74.42966595486948],[18.811988119881192,74.46850323207678],[18.790387903879036,74.47863469569606],[18.81918819188192,74.50396335474431],[18.873188731887325,74.51578339563349],[18.981189811898133,74.51916055017327],[19.02799027990281,74.51240624109371],[19.114391143911433,74.52760343652267],[19.161191611916138,74.5259148592528]]],[[[87.02907029070292,74.99196218574042],[87.12267122671227,74.95143633126324],[87.13707137071373,74.93623913583428],[87.12267122671227,74.93286198129451],[87.0758707587076,74.89909043589685],[87.05427054270541,74.89064754954745],[86.99306993069933,74.88389324046793],[86.94626946269466,74.88389324046793],[86.92466924669247,74.88895897227758],[86.85626856268561,74.91259905405593],[86.72666726667268,74.91597620859568],[86.70146701467013,74.91091047678606],[86.68706687066873,74.8957132813571],[86.69426694266946,74.88727039500768],[86.74106741067413,74.87207319957875],[86.78066780667808,74.8653188904992],[86.82746827468276,74.85181027234015],[86.94626946269466,74.83999023145097],[86.92106921069211,74.81972730421236],[86.87066870668707,74.81972730421236],[86.7338673386734,74.85012169507027],[86.5718657186572,74.83999023145097],[86.54306543065434,74.84167880872084],[86.4926649266493,74.85181027234015],[86.46746467464675,74.85518742687992],[86.3630636306363,74.8484331178004],[86.31986319863199,74.85012169507027],[86.29826298262981,74.8568760041498],[86.28746287462877,74.87207319957875],[86.28026280262804,74.88220466319802],[86.229862298623,74.8957132813571],[86.21186211862118,74.9041561677065],[86.23346233462337,74.9142876313258],[86.25146251462513,74.91935336313546],[86.26946269462695,74.91597620859568],[86.2946629466295,74.9058447449764],[86.31986319863199,74.90077901316675],[86.51066510665106,74.89064754954745],[86.56466564665647,74.89740185862698],[86.59706597065974,74.91766478586558],[86.5718657186572,74.91766478586558],[86.49986499864997,74.93117340402463],[86.52866528665288,74.94974775399334],[86.51426514265142,74.96494494942229],[86.49626496264966,74.97845356758134],[86.52506525065252,74.98689645393077],[86.64026640266405,74.97169925850181],[86.6258662586626,74.95481348580299],[86.61866618666187,74.94974775399334],[86.71946719467195,74.95481348580299],[86.91746917469175,74.98858503120064],[87.02907029070292,74.99196218574042]]],[[[82.2410224102241,75.37526922600378],[82.2518225182252,75.36513776238448],[82.28062280622805,75.3448748351459],[82.29502295022951,75.3347433715266],[82.24462244622447,75.33305479425673],[82.07542075420753,75.34656341241578],[82.03942039420394,75.33812052606638],[82.04302043020431,75.32967763971695],[82.04302043020431,75.32123475336755],[82.05022050220504,75.30772613520847],[82.0538205382054,75.2975946715892],[82.03942039420394,75.28915178523977],[82.03222032220322,75.28070889889037],[82.04302043020431,75.26382312619154],[82.04662046620467,75.25538023984211],[82.03222032220322,75.25200308530233],[82.02142021420212,75.25031450803246],[82.01062010620109,75.24693735349271],[81.9998199982,75.24187162168306],[81.99261992619927,75.23174015806376],[82.00342003420036,75.22160869444446],[82.01062010620109,75.20978865355528],[82.01422014220145,75.19628003539623],[82.00702007020072,75.18277141723715],[82.01422014220145,75.1777056854275],[81.98541985419854,75.1777056854275],[81.95661956619568,75.18277141723715],[81.93141931419314,75.19121430358658],[81.90621906219064,75.2081000762854],[81.89541895418955,75.22329727171433],[81.89541895418955,75.23680588987341],[81.89901899018992,75.24862593076259],[81.89541895418955,75.26720028073129],[81.870218702187,75.3161690215579],[81.84501845018451,75.32123475336755],[81.81621816218166,75.32292333063742],[81.8018180181802,75.3161690215579],[81.81261812618129,75.29252893977954],[81.75861758617589,75.29252893977954],[81.72981729817297,75.29928324885907],[81.71181711817121,75.314480444288],[81.71541715417158,75.2975946715892],[81.71901719017188,75.29252893977954],[81.72621726217261,75.28746320796989],[81.69021690216903,75.27733174435059],[81.63981639816399,75.28746320796989],[81.55341553415536,75.32123475336755],[81.57501575015749,75.34149768060612],[81.58221582215822,75.34825198968565],[81.53541535415354,75.34656341241578],[81.51021510215105,75.34994056695555],[81.49221492214923,75.36176060784473],[81.52461524615245,75.3820235350833],[81.71181711817121,75.4529437804184],[81.75141751417516,75.4630752440377],[81.79461794617947,75.46476382130757],[81.77301773017729,75.44450089406897],[81.74061740617407,75.42423796683039],[81.73341733417334,75.40735219413156],[81.77301773017729,75.39722073051226],[81.7370173701737,75.3820235350833],[81.76941769417692,75.38033495781343],[81.93861938619386,75.39384357597248],[81.96381963819641,75.40228646232191],[81.94581945819459,75.41917223502074],[81.92061920619204,75.43268085317979],[81.89541895418955,75.44112373952922],[81.870218702187,75.44450089406897],[81.88821888218882,75.45463235768827],[81.93141931419314,75.45969808949792],[81.94941949419496,75.46476382130757],[81.94941949419496,75.47827243946662],[81.9350193501935,75.48333817127627],[81.90981909819101,75.48502674854615],[81.89541895418955,75.4917810576257],[81.96021960219605,75.5103554075944],[82.16902169021694,75.5204868712137],[82.16902169021694,75.51204398486428],[82.16542165421657,75.5103554075944],[82.15102151021512,75.50697825305463],[82.15102151021512,75.49853536670523],[82.12942129421293,75.45800951222805],[82.1330213302133,75.44112373952922],[82.16542165421657,75.43774658498944],[82.1330213302133,75.42423796683039],[82.01422014220145,75.44450089406897],[82.0538205382054,75.41917223502074],[82.10422104221044,75.41579508048096],[82.15822158221584,75.41917223502074],[82.20502205022052,75.41410650321109],[82.21942219422198,75.40735219413156],[82.22662226622265,75.39890930778213],[82.23022230222301,75.38708926689296],[82.2410224102241,75.37526922600378]]],[[[135.99315993159934,75.52724118029323],[135.96075960759606,75.50191252124498],[135.9679596795968,75.47996101673652],[135.9967599675997,75.45969808949792],[136.03276032760328,75.44450089406897],[136.01476014760146,75.42930369864004],[135.98235982359824,75.41748365775086],[135.84555845558458,75.3820235350833],[135.449554495545,75.37526922600378],[135.449554495545,75.39384357597248],[135.45675456754566,75.40735219413156],[135.46035460354602,75.42086081229061],[135.45315453154535,75.43436943044969],[135.449554495545,75.44787804860874],[135.46035460354602,75.4613866667678],[135.47835478354784,75.47320670765697],[135.51435514355143,75.48333817127627],[135.52875528755288,75.49684678943535],[135.5467554675547,75.52724118029323],[135.59355593555938,75.56776703477041],[135.58995589955902,75.59816142562829],[135.55395553955543,75.64881874372477],[135.53955539555398,75.67752455731278],[135.55395553955543,75.68090171185256],[135.56475564755647,75.68765602093208],[135.58635586355865,75.70454179363091],[135.5827558275583,75.70960752544056],[135.57915579155792,75.71973898905986],[135.5719557195572,75.72649329813939],[135.58635586355865,75.72987045267917],[135.59355593555938,75.73662476175869],[135.60795607956078,75.75182195718762],[135.60435604356047,75.75857626626717],[135.60435604356047,75.76364199807679],[135.60435604356047,75.77039630715635],[135.61155611556114,75.775462038966],[135.6151561515615,75.77715061623587],[135.62235622356224,75.77715061623587],[135.65835658356582,75.79234781166483],[135.67275672756728,75.8024792752841],[135.67635676356764,75.81092216163353],[135.67635676356764,75.81936504798293],[135.67635676356764,75.82611935706245],[135.679956799568,75.82949651160223],[135.68355683556837,75.83456224341188],[135.679956799568,75.85989090246011],[135.69435694356946,75.87002236607941],[135.70875708757086,75.86495663426976],[135.70515705157055,75.84807086157093],[135.73755737557377,75.82611935706245],[135.78075780757808,75.80585642982388],[135.81675816758167,75.78052777077562],[135.82035820358203,75.74506764810809],[135.83835838358385,75.74000191629844],[135.84555845558458,75.72649329813939],[135.8527585275853,75.71129610271043],[135.86355863558634,75.70454179363091],[135.88515885158853,75.69947606182126],[135.9319593195932,75.6758359800429],[135.95715957159575,75.67077024823325],[135.9859598595986,75.66908167096338],[136.05436054360547,75.6555730528043],[136.1047610476105,75.63868728010547],[136.1587615876159,75.63024439375607],[136.1839618396184,75.61673577559702],[136.16956169561695,75.60153858016807],[135.99315993159934,75.52724118029323]]],[[[96.6447664476645,76.26683802450185],[96.6447664476645,76.24826367453315],[96.63036630366304,76.23475505637407],[96.60516605166055,76.2229350154849],[96.59076590765909,76.21280355186559],[96.579965799658,76.19422920189689],[96.579965799658,76.18409773827759],[96.59076590765909,76.17396627465831],[96.59436594365945,76.15708050195948],[96.56556565565654,76.15876907922936],[96.55116551165514,76.16383481103901],[96.53676536765369,76.17396627465831],[96.51876518765187,76.19085204735714],[96.5259652596526,76.20267208824632],[96.53676536765369,76.2144921291355],[96.56196561965623,76.23137790183432],[96.46836468364683,76.26683802450185],[96.4467644676447,76.2719037563115],[96.42516425164251,76.27359233358138],[96.40356403564039,76.27359233358138],[96.36396363963638,76.26514944723198],[96.34596345963462,76.25501798361267],[96.35676356763571,76.2431979427235],[96.40716407164075,76.22124643821502],[96.42516425164251,76.21280355186559],[96.3819638196382,76.20604924278607],[96.27756277562776,76.2229350154849],[96.24516245162454,76.20436066551619],[96.27756277562776,76.20436066551619],[96.37116371163711,76.18916347008724],[96.39636396363966,76.17734342919806],[96.39996399964002,76.15539192468958],[96.37836378363784,76.14526046107031],[96.34596345963462,76.14188330653053],[96.32076320763207,76.13681757472088],[96.34596345963462,76.12330895656183],[96.35676356763571,76.11824322475218],[96.37116371163711,76.1148660702124],[96.34596345963462,76.1047346065931],[96.3027630276303,76.11148891567265],[96.18036180361804,76.15539192468958],[95.89235892358926,76.15370334741971],[95.70515705157055,76.17565485192819],[95.66195661956618,76.19085204735714],[95.66915669156691,76.19760635643667],[95.3091530915309,76.20098351097641],[95.26595265952659,76.21786928367524],[95.3091530915309,76.23137790183432],[95.319953199532,76.23982078818372],[95.3091530915309,76.24826367453315],[95.3091530915309,76.25670656088255],[95.31275312753127,76.26514944723198],[95.31275312753127,76.27696948812115],[95.32355323553236,76.28541237447055],[95.3487534875349,76.28878952901033],[95.47115471154711,76.28541237447055],[95.4927549275493,76.2803466426609],[95.53955539555398,76.2533294063428],[95.53235532355325,76.24657509726325],[95.5719557195572,76.23813221091385],[95.61515615156151,76.24488651999337],[95.72675726757268,76.2904781062802],[95.76995769957699,76.3006095698995],[95.8131581315813,76.30229814716938],[95.84915849158494,76.29385526081998],[95.87075870758707,76.2803466426609],[96.02196021960219,76.28710095174046],[96.06876068760687,76.2803466426609],[96.07236072360723,76.2617722926922],[96.06876068760687,76.24657509726325],[96.07236072360723,76.23644363364397],[96.10476104761051,76.23137790183432],[96.12636126361264,76.23475505637407],[96.14436144361446,76.24488651999337],[96.17316173161731,76.27696948812115],[96.21996219962199,76.3006095698995],[96.28476284762849,76.3090524562489],[96.61596615966158,76.26683802450185],[96.6447664476645,76.26683802450185]]],[[[111.95931959319591,76.6028649012085],[111.97371973719737,76.60793063301816],[111.98811988119883,76.60961921028803],[112.02052020520205,76.60961921028803],[112.01332013320132,76.61637351936756],[111.99531995319956,76.61637351936756],[111.98451984519846,76.61806209663746],[111.97371973719737,76.62312782844711],[111.96651966519664,76.62988213752664],[112.14652146521468,76.63663644660616],[112.27252272522725,76.61637351936756],[112.30852308523089,76.62312782844711],[112.31572315723156,76.62988213752664],[112.32292322923229,76.65014506476521],[112.33012330123302,76.65689937384477],[112.34452344523447,76.66027652838451],[112.3661236612366,76.65858795111464],[112.38772387723878,76.65352221930499],[112.41652416524164,76.63663644660616],[112.49932499324996,76.62988213752664],[112.52812528125281,76.62312782844711],[112.51732517325172,76.61637351936756],[112.51012510125105,76.60961921028803],[112.4849248492485,76.6028649012085],[112.50292502925032,76.59611059212898],[112.549725497255,76.58091339670003],[112.54252542525427,76.57922481943015],[112.52812528125281,76.57078193308072],[112.52092520925208,76.56740477854098],[112.53172531725318,76.5640276240012],[112.55692556925572,76.55896189219155],[112.57132571325712,76.5555847376518],[112.55332553325536,76.54883042857227],[112.52452524525245,76.5454532740325],[112.50652506525068,76.54038754222285],[112.54612546125463,76.5268789240638],[112.65412654126544,76.53194465587345],[112.70092700927012,76.52856750133367],[112.71532715327152,76.52012461498427],[112.70452704527048,76.51337030590471],[112.68652686526866,76.50830457409506],[112.6721267212672,76.50661599682519],[112.60012600126004,76.50661599682519],[112.57492574925749,76.49986168774566],[112.58572585725858,76.49310737866614],[112.60012600126004,76.48297591504684],[112.61452614526144,76.47115587415766],[112.6181261812618,76.45933583326848],[112.60012600126004,76.44413863783953],[112.56772567725676,76.44413863783953],[112.46332463324632,76.45427010145883],[112.42372423724237,76.46609014234801],[112.38772387723878,76.48297591504684],[112.35532355323556,76.50661599682519],[112.30852308523089,76.53363323314332],[112.25812258122585,76.5454532740325],[112.11772117721176,76.54883042857227],[112.09972099721,76.5538961603819],[112.08172081720818,76.5640276240012],[112.06732067320672,76.57753624216028],[112.0457204572046,76.58766770577955],[111.95931959319591,76.6028649012085]]],[[[149.37449374493747,76.73795108279913],[149.3168931689317,76.72444246464005],[149.2628926289263,76.710933846481],[149.24849248492484,76.6923594965123],[149.2376923769238,76.66871941473394],[149.2628926289263,76.64507933295556],[149.25569255692557,76.63325929206638],[149.20169201692016,76.62650498298686],[149.04689046890468,76.62819356025676],[148.78408784087844,76.62988213752664],[148.59328593285932,76.62312782844711],[148.4528845288453,76.62312782844711],[148.43128431284316,76.62988213752664],[148.43848438484383,76.64170217841581],[148.46728467284674,76.65689937384477],[148.5608856088561,76.67209656927369],[148.61848618486187,76.68053945562312],[148.7228872288723,76.69742522832195],[148.7876878768788,76.71768815556052],[148.8668886688867,76.73457392825935],[148.98208982089824,76.739639660069],[149.39969399693996,76.77003405092688],[149.45369453694536,76.768345473657],[149.44289442894433,76.7497711236883],[149.37449374493747,76.73795108279913]]],[[[96.5259652596526,77.20568698655663],[96.54396543965441,77.19386694566745],[96.56556565565654,77.15671824573002],[96.59076590765909,77.14489820484084],[96.47556475564755,77.08242084585518],[96.43956439564397,77.06891222769613],[96.36036360363607,77.06046934134673],[96.32076320763207,77.04527214591778],[96.26676266762667,77.0334521050286],[96.2739627396274,77.02500921867917],[96.28116281162812,77.01994348686952],[96.29556295562958,77.01656633232977],[96.30636306363067,77.01318917779],[96.27756277562776,76.99968055963095],[96.23436234362345,76.99123767328152],[96.19116191161913,76.98786051874177],[96.11916119161191,77.00643486871047],[96.08316083160832,77.0030577141707],[96.0075600756008,76.98617194147187],[95.68355683556837,76.95240039607424],[95.69795697956982,76.95577755061399],[95.72675726757268,76.96928616877304],[95.7591575915759,76.97604047785259],[95.78795787957881,76.98954909601164],[95.7987579875799,76.99292625055142],[95.91755917559175,77.0030577141707],[95.94995949959502,77.01318917779],[95.91755917559175,77.03007495048882],[95.87075870758707,77.03007495048882],[95.78075780757808,77.01318917779],[95.51795517955179,77.0030577141707],[95.25875258752586,76.99123767328152],[95.23355233552337,77.00643486871047],[95.25155251552519,77.00981202325025],[95.28395283952841,77.02500921867917],[95.3631536315363,77.03682925956835],[95.42075420754207,77.05540360953708],[95.57915579155792,77.07904369131543],[95.70515705157055,77.07566653677566],[96.00396003960043,77.11788096852274],[96.3027630276303,77.1600954002698],[96.44316443164433,77.2073755638265],[96.46116461164615,77.21075271836628],[96.5259652596526,77.20568698655663]]],[[[89.68949689496895,77.27998438643147],[89.7290972909729,77.24452426376394],[89.81549815498158,77.21075271836628],[89.74709747097472,77.16516113207945],[89.49149491494916,77.1415210503011],[89.30069300693009,77.14658678211075],[89.18549185491855,77.19555552293733],[89.13509135091351,77.2175070274458],[89.16389163891643,77.24958999557359],[89.21429214292147,77.27829580916159],[89.2646926469265,77.29855873640017],[89.30429304293045,77.30869020001947],[89.60309603096033,77.31206735455925],[89.65349653496537,77.30193589093994],[89.68949689496895,77.27998438643147]]],[[[107.70407704077041,78.13778163953188],[107.70407704077041,78.12427302137283],[107.62127621276215,78.08205858962575],[107.57447574475748,78.06686139419682],[107.45207452074521,78.05335277603774],[107.43047430474303,78.06179566238717],[107.42327423274236,78.07361570327635],[107.42327423274236,78.08543574416552],[107.4340743407434,78.09050147597517],[107.39087390873908,78.10232151686435],[107.20367203672038,78.08205858962575],[106.80046800468006,78.107387248674],[106.39366393663937,78.13102733045235],[106.44766447664477,78.15466741223071],[106.47646476464763,78.16311029858011],[106.90126901269014,78.17830749400906],[106.93006930069299,78.18337322581871],[106.93726937269372,78.18168464854884],[106.93726937269372,78.17155318492954],[107.21447214472147,78.17155318492954],[107.22527225272256,78.16986460765966],[107.24687246872469,78.16479887585001],[107.25767257672578,78.16479887585001],[107.27207272072724,78.16817603038976],[107.27927279272797,78.17155318492954],[107.28287282872827,78.17661891673919],[107.29367293672937,78.18168464854884],[107.31167311673119,78.18843895762836],[107.33687336873368,78.19012753489824],[107.56367563675639,78.18675038035849],[107.6068760687607,78.17830749400906],[107.64287642876428,78.16479887585001],[107.62847628476288,78.15804456677049],[107.65007650076501,78.15297883496083],[107.6860768607686,78.14791310315118],[107.70407704077041,78.13778163953188]]],[[[106.53046530465303,78.25429347115377],[106.50166501665018,78.24078485299472],[106.19206192061921,78.19350468943802],[106.15966159661599,78.19350468943802],[106.09126091260913,78.20870188486694],[106.02286022860227,78.21207903940672],[105.99045990459905,78.21883334848624],[106.01206012060123,78.23234196664532],[106.02646026460263,78.25767062569355],[106.04086040860409,78.26611351204298],[106.069660696607,78.2711792438526],[106.27846278462783,78.26104778023333],[106.33966339663397,78.26611351204298],[106.390063900639,78.28806501655143],[106.37926379263791,78.29481932563098],[106.41886418864192,78.32859087102864],[106.46926469264696,78.34209948918769],[106.60606606066062,78.34209948918769],[106.6528665286653,78.33365660283826],[106.69966699666998,78.32014798467921],[106.74646746467465,78.31677083013943],[106.76446764467647,78.30832794379003],[106.75006750067502,78.29819648017073],[106.74646746467465,78.27624497566225],[106.7320673206732,78.26611351204298],[106.71406714067143,78.2627363575032],[106.68526685266852,78.25935920296342],[106.66006660066603,78.26442493477307],[106.64926649266494,78.27793355293215],[106.62046620466208,78.28637643928155],[106.45126451264514,78.26104778023333],[106.46926469264696,78.25429347115377],[106.49086490864909,78.2526048938839],[106.53046530465303,78.25429347115377]]],[[[27.02007020070201,78.69838929313295],[26.96966969669697,78.68994640678352],[26.948069480694812,78.67812636589434],[26.951669516695176,78.65786343865574],[26.908469084690864,78.64942055230634],[26.775267752677536,78.64097766595691],[26.74646746467465,78.63422335687738],[26.739267392673923,78.62578047052799],[26.717667176671767,78.63084620233764],[26.692466924669247,78.64435482049669],[26.692466924669247,78.64604339776656],[26.69606696066961,78.65279770684612],[26.699666996669976,78.65955201592564],[26.699666996669976,78.66461774773529],[26.685266852668548,78.66968347954494],[26.634866348663508,78.67137205681482],[26.465664656646567,78.71020933402212],[26.458464584645867,78.7321608385306],[26.440464404644047,78.7490466112294],[26.397263972639735,78.77437527027766],[26.440464404644047,78.80814681567531],[26.498064980649815,78.81490112475484],[26.616866168661687,78.80814681567531],[26.634866348663508,78.79294962024636],[26.649266492664935,78.78281815662706],[26.74646746467465,78.74735803395953],[26.775267752677536,78.72709510672095],[26.832868328683304,78.711897911292],[27.02007020070201,78.69838929313295]]],[[[12.14112141121413,78.23740769845497],[12.14832148321483,78.22727623483567],[12.159121591215921,78.21883334848624],[12.162721627216285,78.21039046213684],[12.155521555215557,78.20363615305732],[12.14112141121413,78.19857042124767],[12.119521195211945,78.19857042124767],[12.097920979209789,78.20363615305732],[12.051120511205113,78.22221050302602],[11.925119251192513,78.22727623483567],[11.892718927189293,78.2340305439152],[11.863918639186409,78.24585058480437],[11.813518135181369,78.27455639839238],[11.849518495184952,78.29313074836108],[11.85671856718568,78.29819648017073],[11.849518495184952,78.30832794379003],[11.83151831518316,78.31170509832981],[11.802718027180276,78.31508225286956],[11.622716227162272,78.36573957096604],[11.601116011160116,78.38262534366487],[11.586715867158688,78.3893796527444],[11.575915759157596,78.39444538455405],[11.457114571145723,78.41639688906253],[11.410314103141047,78.43497123903123],[11.345513455134551,78.4484798571903],[11.305913059130603,78.45185701173006],[11.165511655116546,78.43665981630113],[11.122311223112234,78.438348393571],[11.08631086310865,78.45523416626983],[11.039510395103946,78.48562855712771],[11.003510035100362,78.51940010252537],[10.999909999099998,78.54810591611337],[10.96750967509675,78.5548602251929],[10.949509495094958,78.57005742062185],[10.93510935109353,78.59032034786046],[10.91710917109171,78.61058327509903],[10.88470884708849,78.62915762506773],[10.855908559085606,78.64435482049669],[10.787507875078745,78.66461774773529],[10.801908019080201,78.68150352043412],[10.805508055080566,78.68656925224377],[10.780307803078045,78.68825782951365],[10.650706507065081,78.7304722612607],[10.636306363063625,78.74060372488],[10.57510575105752,78.75748949757883],[10.549905499055,78.77099811573788],[10.52470524705248,78.78788388843671],[10.546305463054637,78.80308108386566],[10.564305643056429,78.81152397021506],[10.57510575105752,78.81996685656449],[10.567905679056793,78.84360693834284],[10.553505535055365,78.86049271104167],[10.531905319053209,78.87400132920072],[10.485104851048504,78.89088710189955],[10.517505175051753,78.9060842973285],[10.560705607056065,78.90946145186828],[10.845108451084513,78.87906706101037],[10.999909999099998,78.83347547472354],[11.003510035100362,78.82165543383437],[10.99270992709927,78.79632677478614],[11.032310323103246,78.78281815662706],[11.100711007110078,78.77944100208731],[11.115111151111506,78.77437527027766],[11.133111331113327,78.76762096119813],[11.183511835118367,78.73384941580048],[11.06111061110613,78.6933235613233],[11.122311223112234,78.67643778862447],[11.154711547115483,78.66292917046539],[11.158311583115847,78.64773197503646],[11.16191161911621,78.63253477960751],[11.24471244712447,78.62071473871833],[11.273512735127355,78.61058327509903],[11.255512555125563,78.59876323420985],[11.255512555125563,78.5852546160508],[11.266312663126627,78.57343457516163],[11.287912879128811,78.56836884335198],[11.298712987129875,78.56330311154233],[11.287912879128811,78.55148307065315],[11.259112591125927,78.5278429888748],[11.356313563135643,78.5464173388435],[11.446314463144631,78.54810591611337],[11.464314643146452,78.54304018430372],[11.471514715147151,78.53459729795432],[11.482314823148243,78.51602294798562],[11.493114931149307,78.50758006163619],[11.507515075150764,78.50251432982654],[11.543515435154347,78.49913717528679],[11.568715687156867,78.48393997985784],[11.759517595175964,78.44510270265053],[11.871118711187108,78.4484798571903],[11.899918999189993,78.43497123903123],[11.899918999189993,78.42990550722158],[11.8819188191882,78.4180854663324],[11.874718747187472,78.41133115725287],[11.8819188191882,78.40288827090347],[11.889118891188929,78.39444538455405],[12.051120511205113,78.31001652105991],[12.101521015210153,78.29481932563098],[12.097920979209789,78.2728678211225],[12.112321123211245,78.26104778023333],[12.133921339213401,78.2526048938839],[12.14112141121413,78.23740769845497]]],[[[29.439294392943935,78.90439572005863],[29.583295832958328,78.92128149275746],[29.666096660966616,78.92128149275746],[29.705697056970564,78.8976414109791],[29.327693276932763,78.86386986558145],[29.331293312933127,78.85373840196215],[29.33489334893349,78.85036124742237],[29.237692376923775,78.85373840196215],[28.928089280892806,78.8959528337092],[28.888488884888858,78.90946145186828],[28.870488704887066,78.91115002913816],[28.618486184861865,78.89426425643933],[28.37008370083703,78.8773784837405],[28.10368103681037,78.82165543383437],[28.08568085680858,78.82165543383437],[27.840878408784107,78.84360693834284],[27.8588785887859,78.85036124742237],[28.031680316803175,78.87400132920072],[28.071280712807123,78.8875099473598],[28.107281072810736,78.89426425643933],[28.13608136081362,78.91452718367793],[28.150481504815048,78.91790433821768],[28.3628836288363,78.92128149275746],[28.40248402484025,78.92972437910686],[28.42768427684277,78.94492157453581],[28.416884168841705,78.96687307904429],[28.787687876878778,78.96349592450451],[28.992889928899302,78.93141295637676],[29.036090360903614,78.91115002913816],[29.0648906489065,78.90439572005863],[29.439294392943935,78.90439572005863]]],[[[77.6149761497615,79.52241500083571],[77.6149761497615,79.50890638267663],[77.60057600576005,79.50046349632723],[77.58257582575828,79.49539776451758],[77.13977139771401,79.48695487816815],[76.69696696966969,79.47682341454885],[76.63936639366392,79.48695487816815],[76.65376653766538,79.49539776451758],[76.69336693366932,79.5105949599465],[76.69696696966969,79.51903784629593],[76.68256682566829,79.52748073264533],[76.62136621366216,79.54774365988393],[76.6069660696607,79.54774365988393],[76.59256592565924,79.54605508261406],[76.56376563765639,79.53761219626463],[76.5529655296553,79.53592361899476],[76.17496174961752,79.56969516439241],[76.0921609216092,79.60346670979007],[76.05256052560526,79.6287953688383],[76.05256052560526,79.6490582960769],[76.1029610296103,79.66256691423595],[76.16416164161643,79.66425549150583],[76.22536225362256,79.6575011824263],[76.2757627576276,79.64568114153712],[76.17496174961752,79.63723825518773],[76.13896138961388,79.6389268324576],[76.20016200162001,79.60853244159972],[76.26856268562688,79.60515528705994],[76.40536405364054,79.61697532794912],[76.42336423364236,79.63723825518773],[76.48096480964813,79.64399256426725],[76.85176851768517,79.60684386432982],[77.22257222572227,79.56969516439241],[77.59337593375932,79.53254646445498],[77.6149761497615,79.52241500083571]]],[[[51.34551345513455,79.95300220465577],[51.38151381513816,79.95469078192568],[51.47151471514715,79.94455931830637],[51.5039150391504,79.9327392774172],[51.46431464314645,79.92091923652802],[51.42111421114211,79.91585350471837],[50.96030960309605,79.93611643195695],[50.503105031050325,79.95469078192568],[50.0459004590046,79.97495370916425],[50.04950049500496,79.97664228643413],[50.05670056700569,79.97833086370403],[50.22950229502297,79.99521663640286],[50.553505535055365,79.9884623273233],[50.58230582305825,79.99521663640286],[50.62550625506256,80.02898818180051],[50.654306543065445,80.04418537722944],[50.69390693906939,80.05431684084874],[50.855908559085606,80.06782545900779],[50.963909639096386,80.10159700440545],[50.9999099991,80.10328558167535],[51.02871028710288,80.08977696351627],[51.0539105391054,80.07457976808735],[51.08631086310865,80.06275972719817],[51.26631266312663,80.05600541811862],[51.248312483124835,80.04925110903909],[51.21231212312125,80.04249679995957],[51.20151201512016,80.03236533634026],[51.197911979119795,80.02223387272096],[51.20151201512016,80.01041383183178],[51.20871208712089,80.00028236821251],[51.21591215912159,79.99521663640286],[51.25551255512556,79.98339659551368],[51.34551345513455,79.97664228643413],[51.38871388713889,79.96651082281485],[51.36711367113671,79.9614450910052],[51.34551345513455,79.95300220465577]]],[[[50.08190081900821,80.06782545900779],[50.042300423004235,80.0593825726584],[49.99909999099992,80.05600541811862],[49.88389883898839,80.0695140362777],[49.790297902979034,80.0965312725958],[49.732697326973266,80.10328558167535],[49.62829628296285,80.13199139526336],[49.574295742957446,80.137057127073],[49.549095490954926,80.14381143615253],[49.531095310953106,80.15900863158146],[49.55989559895599,80.17251724974054],[49.840698406984075,80.21473168148759],[49.88029880298805,80.22992887691655],[49.89829898298984,80.23330603145632],[50.22950229502297,80.22655172237677],[50.319503195031956,80.19615733151889],[50.33390333903341,80.18096013608994],[50.31590315903159,80.16745151793089],[50.125101251012524,80.14212285888263],[50.07110071100712,80.11172846802475],[50.08550085500855,80.10328558167535],[50.07830078300785,80.09990842713557],[50.067500675006755,80.09484269532592],[50.06030060300603,80.08977696351627],[50.05310053100533,80.08302265443675],[50.06390063900639,80.08302265443675],[50.07830078300785,80.07964549989697],[50.08550085500855,80.07457976808735],[50.08190081900821,80.06782545900779]]],[[[33.09693096930971,80.22824029964667],[33.29853298532987,80.24850322688525],[33.64053640536406,80.22148599056712],[33.59733597335975,80.20291164059842],[33.54333543335434,80.19446875424902],[33.28773287732878,80.18264871335984],[33.032130321303214,80.17082867247066],[32.83052830528305,80.13367997253323],[32.42372423724237,80.11341704529463],[32.01692016920171,80.09315411805605],[31.610116101161026,80.07289119081744],[31.49491494914949,80.0965312725958],[31.476914769147697,80.10328558167535],[31.48051480514806,80.11003989075488],[31.49491494914949,80.11510562256453],[31.977319773197735,80.1455000134224],[32.45972459724598,80.17589440428029],[32.93852938529386,80.20628879513819],[32.99612996129963,80.21810883602737],[33.02133021330215,80.22148599056712],[33.075330753307554,80.21979741329724],[33.09693096930971,80.22824029964667]]],[[[79.80739807398072,80.97459145293482],[80.12060120601205,80.95770568023599],[80.43740437404375,80.94081990753716],[80.4122041220412,80.90029405305998],[80.40140401404017,80.88509685763103],[80.37260372603726,80.87327681674185],[80.32580325803258,80.8597681985828],[79.92619926199262,80.84288242588397],[79.52659526595266,80.82430807591524],[79.12699126991271,80.80742230321641],[79.01179011790117,80.82430807591524],[78.97578975789759,80.84288242588397],[78.98658986589868,80.86145677585267],[79.07659076590767,80.90029405305998],[79.11979119791198,80.93068844391786],[79.14139141391416,80.93913133026729],[79.18819188191884,80.95263994842634],[79.20979209792097,80.96108283477577],[79.2169921699217,80.96108283477577],[79.23859238592388,80.95263994842634],[79.72819728197283,80.97965718474447],[79.80739807398072,80.97459145293482]]],[[[91.54711547115471,81.15358064354237],[91.57231572315726,81.1434491799231],[91.57231572315726,81.13500629357367],[91.5579155791558,81.12994056176402],[91.3707137071371,81.10461190271579],[91.34551345513455,81.09616901636636],[91.3311133111331,81.08097182093744],[91.1871118711187,81.05733173915905],[90.79110791107911,81.07252893458801],[90.39150391503915,81.08941470728683],[89.99549995499956,81.10461190271579],[89.97389973899737,81.10967763452544],[89.93429934299343,81.12994056176402],[89.91629916299166,81.1333177163038],[89.92349923499233,81.14851491173272],[89.92349923499233,81.15864637535202],[89.9126991269913,81.16540068443155],[89.89469894698948,81.17384357078097],[89.93789937899379,81.1805978798605],[90.02430024300241,81.20592653890876],[90.06390063900642,81.20761511617863],[90.07110071100715,81.21436942525816],[90.53190531905318,81.20761511617863],[90.99270992709927,81.1991722298292],[91.45351453514536,81.19241792074968],[91.54711547115471,81.15358064354237]]],[[[62.502025020250215,81.65339951542765],[62.51642516425164,81.66015382450718],[62.10602106021062,81.67366244266626],[62.10602106021062,81.68041675174578],[62.17082170821709,81.69392536990483],[62.192421924219246,81.69392536990483],[62.224822248222495,81.70236825625426],[62.46242462424624,81.71587687441331],[62.5380253802538,81.70574541079401],[62.64602646026461,81.72094260622296],[62.804428044280456,81.72094260622296],[62.786427864278664,81.71249971987356],[62.76482764827648,81.70743398806391],[63.222032220322205,81.70067967898439],[63.67923679236793,81.69561394717473],[63.80523805238053,81.66015382450718],[63.78003780037801,81.63820231999873],[63.74763747637476,81.62300512456977],[63.71163711637118,81.61456223822034],[63.46683466834668,81.58923357917212],[63.297632976329766,81.59936504279142],[63.21123211232114,81.5926107337119],[62.95202952029521,81.60274219733117],[62.68922689226892,81.61456223822034],[62.610026100261024,81.6297594336493],[62.534425344253464,81.63820231999873],[62.502025020250215,81.65339951542765]]],[[[58.29718297182973,81.71418829714344],[57.99117991179912,81.69054821536508],[57.89037890378904,81.70743398806391],[57.893978939789406,81.71587687441331],[57.89757897578977,81.72263118349284],[57.9047790477905,81.72938549257239],[57.9119791197912,81.73445122438204],[57.926379263792654,81.73276264711214],[57.933579335793354,81.73951695619166],[57.93717937179372,81.74795984254109],[57.944379443794446,81.75471415162062],[57.96237962379624,81.75977988343027],[58.14598145981461,81.7766656561291],[58.09558095580957,81.7851085424785],[57.98757987579876,81.7867971197484],[57.94077940779408,81.80368289244723],[57.976779767797694,81.81719151060628],[58.07038070380705,81.81719151060628],[58.1567815678157,81.83070012876533],[58.50958509585098,81.83914301511476],[58.86238862388626,81.84927447873406],[59.215192151921514,81.85940594235333],[59.30519305193053,81.84252016965453],[59.402394023940246,81.83576586057498],[59.43839438394386,81.81719151060628],[59.41319413194134,81.81719151060628],[59.384393843938454,81.81043720152675],[59.33039330393305,81.79017427428815],[59.3627936279363,81.78004281066887],[59.37359373593736,81.77328850158932],[59.37359373593736,81.76315703797005],[59.35559355593557,81.75302557435074],[59.00279002790029,81.73951695619166],[58.64998649986501,81.72769691530249],[58.29718297182973,81.71418829714344]]],[[[166.24426244262446,-50.60103799359494],[166.22626226262264,-50.61116945721424],[166.21546215462155,-50.60948087994436],[166.2010620106201,-50.604415148134706],[166.18306183061833,-50.61116945721424],[166.19386193861942,-50.61792376629377],[166.2010620106201,-50.628055229913066],[166.21186211862118,-50.65338388896131],[166.20466204662046,-50.65000673442154],[166.19026190261906,-50.64831815715166],[166.18306183061833,-50.644941002611894],[166.19026190261906,-50.66013819804083],[166.19386193861942,-50.666892507120366],[166.18306183061833,-50.670269661660136],[166.1650616506165,-50.68715543435896],[166.17946179461796,-50.683778279819194],[166.19746197461978,-50.683778279819194],[166.21186211862118,-50.68715543435896],[166.22626226262264,-50.69390974343849],[166.2010620106201,-50.70066405251802],[166.15066150661505,-50.69728689797826],[166.1218612186122,-50.70066405251802],[166.1218612186122,-50.707418361597554],[166.14346143461438,-50.707418361597554],[166.1758617586176,-50.71923840248673],[166.19746197461978,-50.72092697975661],[166.19026190261906,-50.73781275245544],[166.17946179461796,-50.75469852515427],[166.19386193861942,-50.75638710242415],[166.2190621906219,-50.75300994788439],[166.23346233462337,-50.75469852515427],[166.229862298623,-50.76314141150368],[166.22626226262264,-50.771584297853096],[166.229862298623,-50.78171576147239],[166.23346233462337,-50.790158647821805],[166.22266222662228,-50.788470070551924],[166.20826208262082,-50.790158647821805],[166.19746197461978,-50.790158647821805],[166.19746197461978,-50.79691295690134],[166.21186211862118,-50.79691295690134],[166.229862298623,-50.80366726598086],[166.24426244262446,-50.810421575060396],[166.2550625506255,-50.81717588413993],[166.25146251462513,-50.834061656838756],[166.2406624066241,-50.850947429537584],[166.22266222662228,-50.859390315887],[166.20826208262082,-50.85432458407735],[166.1866618666187,-50.84081596591828],[166.15426154261542,-50.834061656838756],[166.12546125461256,-50.82393019321946],[166.10746107461074,-50.80366726598086],[166.0966609666097,-50.81379872960016],[166.0858608586086,-50.82055303867969],[166.06066060660606,-50.830684502298986],[166.0678606786068,-50.81717588413993],[166.07866078660788,-50.80197868871098],[166.08226082260825,-50.786781493282035],[166.07866078660788,-50.771584297853096],[166.0678606786068,-50.7614528342338],[166.05346053460534,-50.75300994788439],[166.03906039060394,-50.751321370614505],[166.02826028260284,-50.76314141150368],[166.03546035460357,-50.768207143313326],[166.04626046260466,-50.77665002966274],[166.05346053460534,-50.785092916012154],[166.0426604266043,-50.790158647821805],[166.0318603186032,-50.786781493282035],[166.00666006660066,-50.77665002966274],[165.99225992259926,-50.77665002966274],[166.0030600306003,-50.785092916012154],[166.0138601386014,-50.791847225091686],[166.02106021060212,-50.79860153417122],[166.02826028260284,-50.810421575060396],[166.02826028260284,-50.82561877048934],[166.02106021060212,-50.83575023410864],[166.01026010260102,-50.84250454318817],[165.99585995859962,-50.84419312045805],[165.9778597785978,-50.84419312045805],[165.9670596705967,-50.84081596591828],[165.95265952659526,-50.832373079568875],[165.94185941859422,-50.82055303867969],[165.9346593465935,-50.82055303867969],[165.92025920259204,-50.830684502298986],[165.89505895058954,-50.850947429537584],[165.88785887858882,-50.79522437963145],[165.9238592385924,-50.75469852515427],[166.06066060660606,-50.69390974343849],[166.07866078660788,-50.67533539346978],[166.09306093060934,-50.65169531169142],[166.0966609666097,-50.621300920833534],[166.10386103861038,-50.59934941632506],[166.11466114661147,-50.57402075727682],[166.11826118261183,-50.55206925276834],[166.0966609666097,-50.53518348006951],[166.11466114661147,-50.53180632552975],[166.12546125461256,-50.52842917098999],[166.13986139861402,-50.526740593720106],[166.15786157861578,-50.53180632552975],[166.17226172261724,-50.53349490279963],[166.2190621906219,-50.526740593720106],[166.23346233462337,-50.521674861910455],[166.229862298623,-50.52842917098999],[166.229862298623,-50.541937789149046],[166.22626226262264,-50.54869209822858],[166.24426244262446,-50.54869209822858],[166.28746287462877,-50.541937789149046],[166.2838628386284,-50.54869209822858],[166.28746287462877,-50.560512139117755],[166.2946629466295,-50.57233218000694],[166.30186301863017,-50.57739791181658],[166.26226262262622,-50.57739791181658],[166.25146251462513,-50.579086489086464],[166.24786247862482,-50.585840798166],[166.24786247862482,-50.59259510724553],[166.24426244262446,-50.60103799359494]]],[[[147.33687336873368,-43.34015573309934],[147.33687336873368,-43.34522146490899],[147.36207362073623,-43.36886154668734],[147.3656736567366,-43.37899301030664],[147.3656736567366,-43.38743589665605],[147.3656736567366,-43.397567360275346],[147.36207362073623,-43.40938740116453],[147.3548735487355,-43.417830287513944],[147.3440734407344,-43.42965032840312],[147.34047340473404,-43.43640463748265],[147.3332733327333,-43.44822467837183],[147.32607326073264,-43.47861906922972],[147.31527315273155,-43.500570573738194],[147.30447304473046,-43.50901346008761],[147.28647286472864,-43.505636305547846],[147.2648726487265,-43.49212768738878],[147.25767257672578,-43.4904391101189],[147.25047250472505,-43.4904391101189],[147.24327243272432,-43.48875053284902],[147.2360723607236,-43.48368480103937],[147.2360723607236,-43.480307646499604],[147.2360723607236,-43.47355333742007],[147.23967239672396,-43.46848760561042],[147.24327243272432,-43.47017618288031],[147.2360723607236,-43.4516018329116],[147.22887228872293,-43.44484752383207],[147.21807218072183,-43.443158946562185],[147.2216722167222,-43.439781792022416],[147.23247232472323,-43.43302748294288],[147.2360723607236,-43.42965032840312],[147.21447214472147,-43.414453132974174],[147.20367203672038,-43.42627317386336],[147.19647196471965,-43.47017618288031],[147.18567185671856,-43.4904391101189],[147.1676716767168,-43.502259151008076],[147.14967149671497,-43.500570573738194],[147.13527135271352,-43.48368480103937],[147.12447124471248,-43.46511045107066],[147.11007110071102,-43.4516018329116],[147.09567095670957,-43.439781792022416],[147.08487084870848,-43.42965032840312],[147.0920709207092,-43.41107597843441],[147.11007110071102,-43.414453132974174],[147.16047160471607,-43.45329041018148],[147.17127171271716,-43.458356141991125],[147.17847178471789,-43.45329041018148],[147.1820718207182,-43.43640463748265],[147.1820718207182,-43.397567360275346],[147.17487174871752,-43.37899301030664],[147.1676716767168,-43.36886154668734],[147.17487174871752,-43.36041866033793],[147.1820718207182,-43.3536643512584],[147.18927189271892,-43.351975773988514],[147.20007200072,-43.357041505798165],[147.21447214472147,-43.377304433036755],[147.22527225272256,-43.38574731938617],[147.23247232472323,-43.37223870122711],[147.23967239672396,-43.36548439214758],[147.24327243272432,-43.357041505798165],[147.23247232472323,-43.3435328876391],[147.22887228872293,-43.33171284674992],[147.2360723607236,-43.32326996040051],[147.25407254072542,-43.30976134224145],[147.28647286472864,-43.275989796843795],[147.30447304473046,-43.26248117868473],[147.31167311673119,-43.26754691049438],[147.33687336873368,-43.34015573309934]]],[[[147.40167401674017,-43.130772151633884],[147.40167401674017,-43.14428076979294],[147.40527405274054,-43.156100810682126],[147.4088740887409,-43.16454369703154],[147.41607416074163,-43.17636373792072],[147.419674196742,-43.18818377880989],[147.4304743047431,-43.213512437858135],[147.43767437674376,-43.23884109690638],[147.42687426874272,-43.250661137795554],[147.40167401674017,-43.24559540598591],[147.39087390873908,-43.24390682871602],[147.38007380073805,-43.24728398325579],[147.36927369273695,-43.25403829233532],[147.36207362073623,-43.257415446875086],[147.3548735487355,-43.250661137795554],[147.34767347673477,-43.22870963328708],[147.35847358473586,-43.218578169667786],[147.37287372873732,-43.21013528331837],[147.38727387273872,-43.19662666515931],[147.36927369273695,-43.18311804700025],[147.3188731887319,-43.17636373792072],[147.29727297272973,-43.16623227430142],[147.290072900729,-43.152723656142356],[147.30447304473046,-43.14596934706283],[147.3548735487355,-43.1392150379833],[147.34767347673477,-43.13414930617365],[147.3332733327333,-43.127394997094115],[147.32607326073264,-43.12064068801459],[147.329673296733,-43.10037776077599],[147.3440734407344,-43.08180341080728],[147.35847358473586,-43.07504910172776],[147.37287372873732,-43.10206633804588],[147.3980739807398,-43.11726353347482],[147.40167401674017,-43.130772151633884]]],[[[148.14328143281432,-42.60393604343048],[148.14328143281432,-42.62082181612931],[148.15048150481505,-42.632641857018484],[148.16128161281614,-42.6410847433679],[148.1756817568176,-42.64783905244743],[148.15048150481505,-42.66641340241614],[148.10368103681037,-42.66472482514626],[148.07128071280715,-42.66641340241614],[148.0856808568086,-42.69680779327403],[148.1108811088111,-42.71707072051262],[148.10368103681037,-42.718759297782505],[148.04248042480424,-42.7288907614018],[148.02808028080284,-42.737333647751214],[148.01728017280175,-42.75084226591028],[148.01008010080102,-42.75084226591028],[148.01008010080102,-42.73057933867168],[148.02448024480248,-42.718759297782505],[148.0316803168032,-42.70356210235356],[148.0460804608046,-42.66810197968602],[148.02448024480248,-42.66641340241614],[148.01368013680138,-42.65121620698719],[148.01368013680138,-42.6309532797486],[148.02448024480248,-42.614067507049775],[148.03888038880388,-42.60393604343048],[148.0676806768068,-42.593804579811184],[148.07848078480788,-42.57860738438224],[148.09648096480964,-42.58367311619189],[148.11808118081183,-42.58536169346177],[148.13608136081365,-42.59042742527142],[148.14328143281432,-42.60393604343048]]],[[[148.43128431284316,-40.373325469915436],[148.46728467284674,-40.415539901662505],[148.48528485284857,-40.42735994255168],[148.47808478084784,-40.43749140617098],[148.46728467284674,-40.44086856071075],[148.46008460084602,-40.43749140617098],[148.45648456484565,-40.42735994255168],[148.4528845288453,-40.43242567436133],[148.44568445684456,-40.44931144706016],[148.42408424084243,-40.454377178869805],[148.42408424084243,-40.45606575613969],[148.40968409684098,-40.46788579702887],[148.40968409684098,-40.476328683378284],[148.40968409684098,-40.48983730153734],[148.3880838808388,-40.48139441518793],[148.37008370083703,-40.48477156972769],[148.35568355683557,-40.493214456077105],[148.34128341283412,-40.50334591969641],[148.34128341283412,-40.46957437429875],[148.32688326883272,-40.435802828901096],[148.29448294482944,-40.434114251631215],[148.229682296823,-40.46282006521922],[148.22248222482227,-40.45100002433004],[148.21528215282154,-40.44593429252039],[148.20808208082082,-40.44255713798063],[148.19728197281972,-40.44086856071075],[148.190081900819,-40.44424571525051],[148.17928179281796,-40.452688601599924],[148.1756817568176,-40.45606575613969],[148.16848168481687,-40.454377178869805],[148.15768157681578,-40.44931144706016],[148.15048150481505,-40.44931144706016],[148.08208082080824,-40.454377178869805],[148.06048060480606,-40.44931144706016],[148.04968049680497,-40.44255713798063],[148.03888038880388,-40.43242567436133],[148.0316803168032,-40.42735994255168],[148.01368013680138,-40.42904851982156],[148.0028800288003,-40.42735994255168],[147.99927999279993,-40.41722847893239],[148.0028800288003,-40.391899819884145],[148.01368013680138,-40.37839120172509],[148.07488074880752,-40.351373965406964],[148.09288092880928,-40.34630823359731],[148.13968139681396,-40.34461965632743],[148.16128161281614,-40.347996810867194],[148.17208172081723,-40.351373965406964],[148.19368193681936,-40.36488258356602],[148.20448204482045,-40.35812827448649],[148.21168211682118,-40.3378653472479],[148.25128251282513,-40.33617676997802],[148.28008280082804,-40.331111038168366],[148.29088290882908,-40.32097957454907],[148.2980829808298,-40.31929099727919],[148.319683196832,-40.30747095639001],[148.32328323283235,-40.30409380185024],[148.33768337683375,-40.30578237912013],[148.34488344883448,-40.309159533659894],[148.39168391683916,-40.35643969721661],[148.39888398883988,-40.36150542902626],[148.42048420484207,-40.36825973810579],[148.43128431284316,-40.373325469915436]]],[[[145.44325443254434,-38.31663835519831],[145.45405454054543,-38.32170408700796],[145.46485464854652,-38.32845839608749],[145.49365493654938,-38.36560709602491],[145.490054900549,-38.36898425056467],[145.46845468454688,-38.372361405104435],[145.42525425254252,-38.375738559644205],[145.41445414454148,-38.37911571418397],[145.37485374853748,-38.416264414121386],[145.35325353253535,-38.42808445501057],[145.32445324453244,-38.42133014593104],[145.31725317253176,-38.414575836851505],[145.2848528485285,-38.40275579596233],[145.28125281252812,-38.39093575507315],[145.28125281252812,-38.37911571418397],[145.27045270452703,-38.35885278694538],[145.29925299252994,-38.32508124154772],[145.29205292052922,-38.31832693246819],[145.28845288452885,-38.30988404611878],[145.29205292052922,-38.30312973703925],[145.29925299252994,-38.29637542795972],[145.30645306453067,-38.294686850689835],[145.3136531365314,-38.29975258249948],[145.31725317253176,-38.30650689157901],[145.32445324453244,-38.31157262338866],[145.36405364053644,-38.32339266427784],[145.37845378453784,-38.32508124154772],[145.42525425254252,-38.314949777928426],[145.44325443254434,-38.31663835519831]]],[[[153.48573485734858,-27.41518350083561],[153.50013500135003,-27.41687207810549],[153.55053550535507,-27.41518350083561],[153.5289352893529,-27.45570935531279],[153.50733507335076,-27.504678096139394],[153.45693456934572,-27.72081598668438],[153.449734497345,-27.72250456395426],[153.43533435334353,-27.72250456395426],[153.42093420934208,-27.72419314122414],[153.41013410134104,-27.727570295763904],[153.40293402934032,-27.725881718494023],[153.39213392133922,-27.70224163671567],[153.39213392133922,-27.687044441286723],[153.39933399333995,-27.65833862769872],[153.39933399333995,-27.65496147315895],[153.40653406534068,-27.649895741349305],[153.41013410134104,-27.644830009539653],[153.41013410134104,-27.63638712319024],[153.41013410134104,-27.627944236840825],[153.39933399333995,-27.614435618681767],[153.39933399333995,-27.605992732332354],[153.39933399333995,-27.59248411417329],[153.41013410134104,-27.562089723315403],[153.41013410134104,-27.548581105156337],[153.41013410134104,-27.531695332457517],[153.39933399333995,-27.49285805525021],[153.40293402934032,-27.47766085982127],[153.42453424534244,-27.450643623503147],[153.43173431734317,-27.4354464280742],[153.43173431734317,-27.406740614486196],[153.43533435334353,-27.39323199632713],[153.44253442534426,-27.3864776872476],[153.45693456934572,-27.39154341905725],[153.4677346773468,-27.399986305406664],[153.47853478534785,-27.408429191756078],[153.48573485734858,-27.41518350083561]]],[[[153.41013410134104,-27.339197523690885],[153.4137341373414,-27.322311750992057],[153.40653406534068,-27.295294514673934],[153.3957339573396,-27.269965855625692],[153.38853388533886,-27.258145814736515],[153.37773377733777,-27.24801435111722],[153.37053370533704,-27.226062846608748],[153.36333363333637,-27.163585487623088],[153.37053370533704,-27.10279670590731],[153.36693366933673,-27.08084520139883],[153.359733597336,-27.06564800596989],[153.36333363333637,-27.055516542350595],[153.3849338493385,-27.04369650146141],[153.41733417334177,-27.038630769651768],[153.4389343893439,-27.02174499695294],[153.449734497345,-27.01667926514329],[153.46413464134645,-27.02005641968306],[153.4677346773468,-27.036942192381886],[153.4677346773468,-27.06058227416024],[153.42453424534244,-27.180471260321916],[153.41733417334177,-27.22268569206898],[153.41733417334177,-27.27165443289558],[153.42093420934208,-27.283474473784757],[153.43173431734317,-27.308803132833],[153.43173431734317,-27.322311750992057],[153.43173431734317,-27.339197523690885],[153.4281342813428,-27.35439471911983],[153.42453424534244,-27.357771873659594],[153.41013410134104,-27.339197523690885]]],[[[113.21573215732161,-26.067698839469216],[113.22293222932228,-26.084584612168044],[113.22653226532265,-26.108224693946397],[113.21933219332192,-26.128487621184995],[113.20853208532088,-26.14030766207417],[113.19773197731979,-26.13524193026452],[113.1761317613176,-26.125110466645225],[113.16893168931688,-26.093027498517458],[113.15453154531548,-26.05419022131015],[113.13653136531366,-26.03392729407156],[113.12933129331293,-26.023795830452265],[113.08253082530825,-25.964695626006367],[113.04653046530467,-25.939366966958126],[113.01413014130145,-25.8448066398447],[112.96372963729641,-25.794149321748215],[112.95292952929532,-25.773886394509624],[112.96372963729641,-25.76375493089033],[112.96372963729641,-25.755312044540915],[112.95652956529568,-25.697900417364906],[112.92052920529204,-25.632045903839476],[112.92052920529204,-25.57632285393335],[112.9241292412924,-25.55943708123452],[112.92052920529204,-25.523976958566983],[112.93132931329313,-25.507091185868155],[112.94572945729459,-25.491893990439216],[112.96012960129605,-25.48176252681992],[112.96732967329672,-25.493582567709097],[112.98532985329854,-25.493582567709097],[112.9997299973,-25.490205413169335],[113.00693006930072,-25.49695972224886],[113.00693006930072,-25.505402608598274],[113.00693006930072,-25.532419844916397],[113.00693006930072,-25.552682772154988],[113.02133021330212,-25.589831472092413],[113.0429304293043,-25.630357326569595],[113.05013050130503,-25.681014644666078],[113.05013050130503,-25.716474767333615],[113.07173071730716,-25.7468691581915],[113.08973089730898,-25.795837899018096],[113.11853118531184,-25.84649521711458],[113.13653136531366,-25.88533249432188],[113.11493114931153,-25.937678389688244],[113.11493114931153,-25.963007048736486],[113.14373143731439,-25.96976135781602],[113.14013140131402,-25.963007048736486],[113.13653136531366,-25.95287558511719],[113.1329313293133,-25.94780985330754],[113.14373143731439,-25.94612127603766],[113.15453154531548,-25.957941316926842],[113.16533165331657,-25.97651566689555],[113.1761317613176,-25.993401439594372],[113.18333183331833,-26.000155748673905],[113.19773197731979,-26.018730098642614],[113.20493204932052,-26.027172984992028],[113.20853208532088,-26.037304448611323],[113.21213212132125,-26.059255953119802],[113.21573215732161,-26.067698839469216]]],[[[151.2681126811268,-23.66654196169602],[151.28611286112863,-23.678362002585196],[151.29691296912972,-23.7070678161732],[151.29691296912972,-23.735773629761205],[151.29691296912972,-23.74759367065039],[151.289712897129,-23.74928224792027],[151.28611286112863,-23.754347979729914],[151.28251282512826,-23.761102288809447],[151.2789127891279,-23.766168020619098],[151.27531275312754,-23.76954517515886],[151.27531275312754,-23.771233752428742],[151.2681126811268,-23.776299484238393],[151.26451264512644,-23.774610906968512],[151.22851228512286,-23.777988061508275],[151.22131221312213,-23.779676638778156],[151.2141121411214,-23.777988061508275],[151.20331203312037,-23.76954517515886],[151.19251192511928,-23.754347979729914],[151.18171181711818,-23.742527938840738],[151.16731167311673,-23.73070789795156],[151.160111601116,-23.693559198014142],[151.1457114571146,-23.674984848045433],[151.1061110611106,-23.627704684488712],[151.07731077310774,-23.609130334520003],[151.06651066510665,-23.597310293630827],[151.05571055710556,-23.578735943662117],[151.01971019710197,-23.534832934645166],[150.99810998109984,-23.506127121057162],[150.98010980109802,-23.487552771088453],[151.0161101611016,-23.474044152929388],[151.02331023310234,-23.468978421119743],[151.02331023310234,-23.46222411204021],[151.01971019710197,-23.453781225690797],[151.0269102691027,-23.445338339341383],[151.0377103771038,-23.450404071151034],[151.04491044910452,-23.453781225690797],[151.05211052110525,-23.452092648420916],[151.06291062910628,-23.448715493881146],[151.070110701107,-23.447026916611264],[151.07731077310774,-23.450404071151034],[151.0809108091081,-23.458846957500448],[151.07731077310774,-23.468978421119743],[151.0809108091081,-23.474044152929388],[151.09891098910992,-23.47910988473904],[151.14211142111424,-23.487552771088453],[151.14931149311496,-23.49937281197763],[151.160111601116,-23.50443854378728],[151.18171181711818,-23.507815698327043],[151.19251192511928,-23.514570007406576],[151.17811178111782,-23.529767202835515],[151.19611196111964,-23.533144357375285],[151.21051210512104,-23.5213243164861],[151.2249122491225,-23.50106138924751],[151.23931239312395,-23.489241348358334],[151.23931239312395,-23.516258584676457],[151.22851228512286,-23.56185017096329],[151.2249122491225,-23.58380167547176],[151.22851228512286,-23.607441757250122],[151.23931239312395,-23.634458993568245],[151.25011250112505,-23.656410498076724],[151.2681126811268,-23.66654196169602]]],[[[115.4657546575466,-20.730106089369997],[115.46935469354696,-20.746991862068825],[115.46215462154623,-20.763877634767653],[115.44055440554405,-20.794272025625546],[115.44055440554405,-20.80271491197496],[115.44055440554405,-20.811157798324373],[115.43695436954368,-20.819600684673787],[115.42975429754301,-20.82297783921355],[115.42615426154265,-20.82466641648344],[115.41535415354156,-20.836486457372615],[115.4117541175412,-20.839863611912378],[115.40815408154083,-20.853372230071443],[115.39735397353974,-20.86350369369073],[115.36495364953652,-20.877012311849796],[115.35775357753579,-20.86519227096062],[115.3469534695347,-20.855060807341317],[115.3361533615336,-20.84999507553168],[115.32895328953293,-20.853372230071443],[115.32535325353257,-20.86519227096062],[115.31815318153184,-20.871946580040145],[115.30735307353075,-20.87025800277027],[115.29655296552966,-20.856749384611206],[115.30375303753038,-20.84324076645214],[115.31095310953111,-20.80102633470507],[115.32895328953293,-20.774009098386955],[115.4009540095401,-20.69295738943258],[115.42975429754301,-20.669317307654225],[115.45135451354514,-20.66762873038435],[115.4549545495455,-20.68282592581329],[115.45855458554587,-20.716597471210946],[115.4657546575466,-20.730106089369997]]],[[[-173.95553955539555,-18.56703860665027],[-173.94113941139412,-18.57210433845991],[-173.9339393393934,-18.578858647539448],[-173.92673926739266,-18.587301533888862],[-173.9159391593916,-18.595744420238276],[-173.9159391593916,-18.605875883857564],[-173.9159391593916,-18.626138811096155],[-173.92313923139233,-18.636270274715457],[-173.94113941139412,-18.616007347476867],[-173.95193951939518,-18.621073079286518],[-173.9591395913959,-18.626138811096155],[-173.9591395913959,-18.63458169744557],[-173.94833948339485,-18.643024583794983],[-173.95553955539555,-18.653156047414285],[-173.96273962739627,-18.663287511033587],[-173.9771397713977,-18.65991035649381],[-173.98433984339843,-18.671730397383],[-173.99153991539916,-18.688616170081815],[-173.99153991539916,-18.705501942780643],[-174.00234002340022,-18.698747633701117],[-174.00954009540095,-18.68692759281194],[-174.01674016740168,-18.663287511033587],[-174.00234002340022,-18.658221779223936],[-173.9987399873999,-18.64640173833476],[-174.0059400594006,-18.63458169744557],[-174.00954009540095,-18.62951596563593],[-174.0239402394024,-18.63964742925522],[-174.0239402394024,-18.653156047414285],[-174.0311403114031,-18.663287511033587],[-174.04554045540456,-18.656533201954048],[-174.04554045540456,-18.6615989337637],[-174.04914049140493,-18.663287511033587],[-174.05274052740526,-18.663287511033587],[-174.059940599406,-18.663287511033587],[-174.07074070740708,-18.63458169744557],[-174.05274052740526,-18.61938450201663],[-174.0239402394024,-18.60418730658769],[-174.00954009540095,-18.57717007026956],[-174.00234002340022,-18.570415761190034],[-173.9879398793988,-18.56703860665027],[-173.969939699397,-18.565350029380383],[-173.95553955539555,-18.56703860665027]]],[[[146.31806318063184,-18.382983684233054],[146.3252632526325,-18.391426570582468],[146.3468634686347,-18.404935188741533],[146.35406354063542,-18.41000092055117],[146.35406354063542,-18.42182096144036],[146.3468634686347,-18.426886693249998],[146.33966339663397,-18.428575270519886],[146.33246332463324,-18.43195242505965],[146.3216632166322,-18.464035393187416],[146.3108631086311,-18.47923258861637],[146.2928629286293,-18.492741206775435],[146.27486274862747,-18.482609743156132],[146.2388623886239,-18.47416685680672],[146.22446224462243,-18.465723970457304],[146.2136621366214,-18.44208388867895],[146.20646206462067,-18.38973799331258],[146.19926199261994,-18.37454079788364],[146.1740617406174,-18.33401494340646],[146.16326163261635,-18.325572057057045],[146.12006120061204,-18.298554820738914],[146.10926109261095,-18.288423357119626],[146.09846098460986,-18.278291893500324],[146.09126091260913,-18.266471852611147],[146.09846098460986,-18.244520348102668],[146.12006120061204,-18.246208925372557],[146.1740617406174,-18.266471852611147],[146.21726217262176,-18.278291893500324],[146.22446224462243,-18.261406120801496],[146.21726217262176,-18.22932315267373],[146.2280622806228,-18.19724018454596],[146.23526235262352,-18.222568843594203],[146.24966249662498,-18.23270030721349],[146.28926289262893,-18.23270030721349],[146.30366303663038,-18.237766039023143],[146.29646296462965,-18.24958607991232],[146.28566285662856,-18.268160429881036],[146.27846278462783,-18.286734779849738],[146.27846278462783,-18.30699770708833],[146.28566285662856,-18.322194902517282],[146.30726307263075,-18.35258929337516],[146.31806318063184,-18.355966447914923],[146.33246332463324,-18.357655025184812],[146.33966339663397,-18.362720756994463],[146.34326343263433,-18.37285222061375],[146.33966339663397,-18.37960652969329],[146.32886328863287,-18.382983684233054],[146.31806318063184,-18.382983684233054]]],[[[-149.79569795697958,-17.464397649416867],[-149.7848978489785,-17.469463381226518],[-149.7848978489785,-17.479594844845806],[-149.80649806498064,-17.523497853862764],[-149.8208982089821,-17.55051509018088],[-149.84249842498426,-17.56740086287971],[-149.86049860498605,-17.56740086287971],[-149.88569885698857,-17.55558082199053],[-149.91449914499145,-17.53531789475194],[-149.9360993609936,-17.511677812973574],[-149.94329943299434,-17.49310346300487],[-149.93249932499324,-17.481283422115695],[-149.91449914499145,-17.47284053576628],[-149.89649896498966,-17.47284053576628],[-149.88929889298893,-17.481283422115695],[-149.88569885698857,-17.491414885734983],[-149.87849878498784,-17.491414885734983],[-149.87129871298714,-17.48803773119522],[-149.86769867698678,-17.484660576655457],[-149.86049860498605,-17.48297199938557],[-149.85329853298532,-17.479594844845806],[-149.84609846098462,-17.477906267575932],[-149.83529835298353,-17.484660576655457],[-149.83169831698316,-17.47284053576628],[-149.82449824498246,-17.46608622668674],[-149.810098100981,-17.464397649416867],[-149.79569795697958,-17.464397649416867]]],[[[139.5607956079561,-17.038876177406422],[139.55359553595537,-17.054073372835376],[139.5607956079561,-17.065893413724552],[139.5715957159572,-17.074336300073966],[139.57519575195755,-17.08109060915349],[139.56799567995682,-17.099664959122208],[139.55359553595537,-17.106419268201734],[139.52119521195215,-17.108107845471622],[139.51399513995142,-17.111485000011385],[139.51039510395105,-17.11823930909091],[139.5067950679507,-17.121616463630673],[139.49239492394923,-17.121616463630673],[139.4851948519485,-17.116550731821036],[139.4815948159482,-17.109796422741496],[139.4815948159482,-17.104730690931845],[139.4815948159482,-17.101353536392082],[139.46359463594638,-17.101353536392082],[139.44559445594456,-17.108107845471622],[139.43479434794347,-17.121616463630673],[139.43119431194316,-17.143567968139152],[139.42399423994243,-17.143567968139152],[139.42399423994243,-17.1385022363295],[139.42399423994243,-17.135125081789738],[139.42039420394207,-17.13343650451985],[139.4167941679417,-17.128370772710213],[139.40239402394025,-17.101353536392082],[139.40959409594097,-17.087844918233017],[139.4275942759428,-17.08109060915349],[139.44919449194492,-17.064204836454664],[139.47439474394747,-17.025367559247357],[139.48879488794887,-17.010170363818418],[139.4959949599496,-17.001727477469004],[139.49239492394923,-16.984841704770176],[139.5067950679507,-16.99328459111959],[139.549995499955,-17.021990404707594],[139.5607956079561,-17.038876177406422]]],[[[-151.48051480514806,-16.738309423367298],[-151.4661146611466,-16.736620846097424],[-151.4481144811448,-16.739998000637186],[-151.43011430114302,-16.7484408869866],[-151.4229142291423,-16.755195196066126],[-151.4121141211412,-16.780523855114367],[-151.3509135091351,-16.85819840952898],[-151.36531365313652,-16.866641295878395],[-151.40131401314014,-16.885215645847097],[-151.41571415714157,-16.88859280038686],[-151.4229142291423,-16.881838491307334],[-151.43011430114302,-16.881838491307334],[-151.43011430114302,-16.891969954926637],[-151.43371433714339,-16.897035686736274],[-151.44091440914409,-16.900412841276037],[-151.4481144811448,-16.902101418545925],[-151.45891458914588,-16.902101418545925],[-151.4769147691477,-16.89028137765675],[-151.48771487714876,-16.856509832259093],[-151.4949149491495,-16.765326659685428],[-151.49131491314913,-16.75012946425649],[-151.48051480514806,-16.738309423367298]]],[[[137.07677076770767,-15.750491720485925],[137.08037080370804,-15.75893460683534],[137.08757087570876,-15.762311761375102],[137.0947709477095,-15.765688915914865],[137.10557105571058,-15.774131802264279],[137.10197101971022,-15.802837615852283],[137.09117091170913,-15.821411965821],[137.0731707317073,-15.846740624869241],[137.04437044370445,-15.834920583980065],[137.0407704077041,-15.818034811281237],[137.03717037170372,-15.80621477039206],[137.03357033570336,-15.796083306772758],[137.02277022770227,-15.792706152232995],[137.00837008370087,-15.791017574963107],[137.00117001170014,-15.787640420423344],[136.98676986769868,-15.750491720485925],[136.98316983169832,-15.742048834136511],[136.98676986769868,-15.720097329628032],[136.98316983169832,-15.711654443278618],[136.97236972369723,-15.711654443278618],[136.96516965169656,-15.713343020548507],[136.95796957969583,-15.711654443278618],[136.9507695076951,-15.711654443278618],[136.94716947169474,-15.730228793247335],[136.94356943569437,-15.728540215977446],[136.939969399694,-15.728540215977446],[136.93636936369364,-15.72178590689792],[136.939969399694,-15.699834402389442],[136.939969399694,-15.682948629690614],[136.94356943569437,-15.667751434261675],[136.9507695076951,-15.655931393372498],[136.96516965169656,-15.640734197943544],[136.9759697596976,-15.655931393372498],[136.98316983169832,-15.664374279721912],[136.99036990369905,-15.66099712518215],[136.98316983169832,-15.633979888864019],[136.99036990369905,-15.630602734324256],[137.00117001170014,-15.615405538895317],[136.9939699396994,-15.593454034386838],[137.0047700477005,-15.593454034386838],[137.0155701557016,-15.593454034386838],[137.02277022770227,-15.601896920736252],[137.02637026370263,-15.627225579784493],[137.04797047970482,-15.63904562067367],[137.0587705877059,-15.628914157054368],[137.06597065970664,-15.628914157054368],[137.06597065970664,-15.647488507023084],[137.0839708397084,-15.652554238832735],[137.08037080370804,-15.686325784230377],[137.08037080370804,-15.726851638707572],[137.0839708397084,-15.742048834136511],[137.07677076770767,-15.750491720485925]]],[[[136.61596615966158,-15.539419561750591],[136.60156601566018,-15.563059643528945],[136.60156601566018,-15.61202838435554],[136.58716587165873,-15.635668466133907],[136.57636576365763,-15.630602734324256],[136.55836558365587,-15.633979888864019],[136.54756547565478,-15.627225579784493],[136.54036540365405,-15.635668466133907],[136.53316533165332,-15.63904562067367],[136.51876518765187,-15.642422775213433],[136.5151651516515,-15.63904562067367],[136.50796507965083,-15.637357043403782],[136.49716497164974,-15.627225579784493],[136.5115651156512,-15.620471270704954],[136.5115651156512,-15.608651229815777],[136.50796507965083,-15.5968311889266],[136.49716497164974,-15.586699725307298],[136.5151651516515,-15.574879684418121],[136.52236522365223,-15.568125375338596],[136.5259652596526,-15.559682488989182],[136.5259652596526,-15.547862448100005],[136.52236522365223,-15.539419561750591],[136.5259652596526,-15.53435382994094],[136.54396543965441,-15.532665252671052],[136.56556565565654,-15.525910943591526],[136.58356583565836,-15.515779479972224],[136.60156601566018,-15.515779479972224],[136.61596615966158,-15.539419561750591]]],[[[124.57744577445777,-15.333413134824895],[124.60264602646026,-15.343544598444197],[124.62784627846281,-15.38744760746114],[124.64944649446494,-15.395890493810555],[124.63504635046354,-15.404333380159969],[124.54864548645486,-15.43641634828775],[124.5306453064531,-15.439793502827513],[124.519845198452,-15.43641634828775],[124.51624516245164,-15.422907730128685],[124.51624516245164,-15.412776266509383],[124.52344523445237,-15.40939911196962],[124.53424534245346,-15.416153421049145],[124.55584555845559,-15.38913618473103],[124.56664566645668,-15.379004721111727],[124.58104581045814,-15.37393898930209],[124.57024570245704,-15.37393898930209],[124.53784537845382,-15.36718468022255],[124.52704527045273,-15.370561834762313],[124.51624516245164,-15.379004721111727],[124.50544505445055,-15.380693298381615],[124.51264512645128,-15.360430371143025],[124.49824498244982,-15.377316143841853],[124.48744487444878,-15.377316143841853],[124.47304473044733,-15.368873257492439],[124.45864458644587,-15.360430371143025],[124.46944469444696,-15.350298907523722],[124.47304473044733,-15.340167443904434],[124.47304473044733,-15.33172455755502],[124.47304473044733,-15.326658825745369],[124.48024480244806,-15.318215939395955],[124.48744487444878,-15.313150207586304],[124.49464494644945,-15.316527362126067],[124.50544505445055,-15.326658825745369],[124.50184501845018,-15.316527362126067],[124.50184501845018,-15.308084475776653],[124.50544505445055,-15.299641589427239],[124.51264512645128,-15.291198703077825],[124.49464494644945,-15.291198703077825],[124.50544505445055,-15.279378662188648],[124.55224552245522,-15.24898427133077],[124.57024570245704,-15.243918539521118],[124.56304563045632,-15.255738580410295],[124.54864548645486,-15.297953012157365],[124.55224552245522,-15.306395898506779],[124.56304563045632,-15.306395898506779],[124.57384573845741,-15.309773053046541],[124.58104581045814,-15.318215939395955],[124.57744577445777,-15.333413134824895]]],[[[125.19665196651965,-14.470550149914843],[125.20745207452075,-14.473927304454605],[125.20745207452075,-14.48237019080402],[125.20025200252002,-14.511076004392024],[125.18225182251825,-14.534716086170377],[125.17865178651789,-14.541470395249917],[125.18225182251825,-14.553290436139093],[125.20025200252002,-14.578619095187335],[125.20385203852038,-14.593816290616275],[125.19305193051929,-14.595504867886163],[125.1678516785168,-14.610702063315102],[125.16425164251643,-14.610702063315102],[125.16065160651607,-14.60732490877534],[125.15345153451534,-14.610702063315102],[125.14625146251461,-14.617456372394642],[125.14625146251461,-14.624210681474167],[125.14985149851498,-14.632653567823581],[125.14985149851498,-14.637719299633233],[125.14625146251461,-14.644473608712758],[125.13905139051394,-14.64785076325252],[125.12825128251285,-14.62758783601393],[125.12105121051212,-14.619144949664516],[125.1138511385114,-14.614079217854865],[125.1030510305103,-14.615767795124754],[125.09585095850957,-14.619144949664516],[125.09225092250921,-14.619144949664516],[125.0886508865089,-14.60732490877534],[125.09585095850957,-14.578619095187335],[125.09585095850957,-14.548224704329442],[125.1030510305103,-14.539781817980028],[125.1138511385114,-14.541470395249917],[125.12825128251285,-14.551601858869205],[125.13905139051394,-14.558356167948745],[125.13545135451358,-14.541470395249917],[125.13905139051394,-14.50938742712215],[125.13185131851321,-14.511076004392024],[125.1138511385114,-14.497567386232959],[125.12105121051212,-14.48068161353413],[125.14265142651425,-14.46717299537508],[125.1570515705157,-14.457041531755777],[125.15345153451534,-14.443532913596712],[125.16065160651607,-14.438467181787075],[125.17145171451716,-14.44015575905695],[125.17865178651789,-14.451975799946126],[125.17865178651789,-14.46041868629554],[125.18225182251825,-14.46717299537508],[125.18585185851862,-14.468861572644954],[125.19665196651965,-14.470550149914843]]],[[[136.28836288362885,-13.70562464665798],[136.28836288362885,-13.719133264817046],[136.28836288362885,-13.724198996626683],[136.28836288362885,-13.729264728436334],[136.28116281162812,-13.73601903751586],[136.27036270362703,-13.74108476932551],[136.259562595626,-13.739396192055636],[136.2487624876249,-13.7427733465954],[136.24516245162454,-13.757970542024339],[136.259562595626,-13.757970542024339],[136.26676266762667,-13.766413428373752],[136.2739627396274,-13.77823346926293],[136.28116281162812,-13.791742087421994],[136.2631626316263,-13.793430664691883],[136.25236252362527,-13.80525070558106],[136.25236252362527,-13.823825055549761],[136.24516245162454,-13.839022250978715],[136.23436234362345,-13.847465137328129],[136.22356223562235,-13.852530869137766],[136.20916209162095,-13.855908023677543],[136.19836198361986,-13.852530869137766],[136.2055620556206,-13.84577656005824],[136.2055620556206,-13.84071082824859],[136.2055620556206,-13.835645096438952],[136.2055620556206,-13.830579364629301],[136.21276212762126,-13.82551363281965],[136.20196201962023,-13.813693591930473],[136.18756187561877,-13.773167737453292],[136.17676176761768,-13.76303627383399],[136.15516155161555,-13.771479160183404],[136.15156151561519,-13.793430664691883],[136.15516155161555,-13.820447901009999],[136.15516155161555,-13.839022250978715],[136.12276122761227,-13.82551363281965],[136.11556115561154,-13.817070746470236],[136.11556115561154,-13.724198996626683],[136.15156151561519,-13.74108476932551],[136.16596165961658,-13.7427733465954],[136.16956169561695,-13.725887573896571],[136.1731617316173,-13.707313223927855],[136.1839618396184,-13.687050296689264],[136.1947619476195,-13.670164523990437],[136.21276212762126,-13.661721637641023],[136.219962199622,-13.661721637641023],[136.23436234362345,-13.666787369450674],[136.2487624876249,-13.671853101260325],[136.25236252362527,-13.67860741033985],[136.259562595626,-13.690427451229027],[136.27036270362703,-13.697181760308567],[136.28116281162812,-13.702247492118218],[136.28836288362885,-13.70562464665798]]],[[[136.42156421564215,-11.508785618540585],[136.45396453964543,-11.488522691301995],[136.46836468364683,-11.476702650412818],[136.47916479164792,-11.461505454983865],[136.48276482764828,-11.485145536762232],[136.47556475564755,-11.505408464000823],[136.4575645756458,-11.523982813969525],[136.4035640356404,-11.554377204827418],[136.3927639276393,-11.55775435936718],[136.38916389163893,-11.562820091176832],[136.37476374763747,-11.591525904764836],[136.32436324363243,-11.615165986543204],[136.3171631716317,-11.623608872892603],[136.30996309963103,-11.62698602743238],[136.30636306363067,-11.625297450162492],[136.29916299162994,-11.62023171835284],[136.29916299162994,-11.616854563813078],[136.28476284762849,-11.625297450162492],[136.2739627396274,-11.638806068321557],[136.259562595626,-11.652314686480622],[136.23076230762308,-11.660757572830036],[136.23076230762308,-11.652314686480622],[136.1947619476195,-11.681020500068627],[136.17676176761768,-11.687774809148152],[136.18036180361804,-11.682709077338501],[136.1839618396184,-11.677643345528864],[136.1839618396184,-11.672577613719213],[136.19116191161913,-11.647248954670971],[136.19836198361986,-11.638806068321557],[136.21276212762126,-11.635428913781794],[136.23076230762308,-11.62698602743238],[136.24156241562417,-11.611788832003427],[136.25236252362527,-11.591525904764836],[136.26676266762667,-11.572951554796134],[136.28476284762849,-11.56450866844672],[136.28476284762849,-11.572951554796134],[136.3027630276303,-11.591525904764836],[136.32076320763207,-11.603345945654013],[136.3279632796328,-11.594903059304599],[136.33156331563316,-11.586460172955185],[136.36756367563675,-11.54424574120813],[136.3711637116371,-11.547622895747892],[136.37476374763747,-11.551000050287655],[136.37836378363784,-11.535802854858716],[136.3927639276393,-11.525671391239413],[136.42156421564215,-11.508785618540585]]],[[[154.28134281342813,-11.348370777901735],[154.2849428494285,-11.358502241521023],[154.28854288542885,-11.3703222824102],[154.29574295742958,-11.380453746029502],[154.3029430294303,-11.385519477839154],[154.29574295742958,-11.39733951872833],[154.28854288542885,-11.407470982347618],[154.28134281342813,-11.414225291427158],[154.26694266942673,-11.420979600506683],[154.259742597426,-11.405782405077744],[154.24174241742418,-11.39733951872833],[154.22014220142205,-11.395650941458442],[154.19854198541987,-11.399028095998219],[154.16254162541628,-11.41760244596692],[154.14814148141483,-11.415913868697032],[154.14454144541446,-11.392273786918679],[154.13734137341373,-11.392273786918679],[154.13374133741337,-11.41760244596692],[154.1157411574116,-11.429422486856097],[154.09774097740979,-11.429422486856097],[154.06894068940693,-11.420979600506683],[154.05454054540547,-11.420979600506683],[154.04734047340474,-11.41760244596692],[154.04374043740438,-11.402405250537981],[154.04014040140402,-11.39733951872833],[154.02934029340292,-11.390585209648805],[154.0185401854019,-11.387208055109028],[154.0077400774008,-11.385519477839154],[154.01134011340116,-11.378765168759614],[154.0185401854019,-11.372010859680088],[154.02574025740256,-11.368633705140326],[154.03654036540365,-11.365256550600563],[154.02934029340292,-11.360190818790912],[154.02214022140225,-11.344993623361972],[154.02934029340292,-11.344993623361972],[154.03654036540365,-11.351747932441498],[154.0509405094051,-11.360190818790912],[154.09774097740979,-11.363567973330674],[154.1157411574116,-11.372010859680088],[154.12654126541264,-11.365256550600563],[154.13734137341373,-11.3703222824102],[154.14454144541446,-11.368633705140326],[154.14454144541446,-11.360190818790912],[154.13734137341373,-11.351747932441498],[154.130141301413,-11.351747932441498],[154.130141301413,-11.358502241521023],[154.12654126541264,-11.358502241521023],[154.1157411574116,-11.35512508698126],[154.11214112141124,-11.35005935517161],[154.10854108541088,-11.344993623361972],[154.11214112141124,-11.338239314282433],[154.10134101341015,-11.33486215974267],[154.09414094140942,-11.328107850663145],[154.09054090540906,-11.321353541583605],[154.09054090540906,-11.311222077964317],[154.10854108541088,-11.316287809773954],[154.13734137341373,-11.317976387043842],[154.17694176941768,-11.311222077964317],[154.19134191341914,-11.316287809773954],[154.19854198541987,-11.316287809773954],[154.2057420574206,-11.312910655234191],[154.21654216542169,-11.311222077964317],[154.2237422374224,-11.31459923250408],[154.23094230942309,-11.323042118853493],[154.23454234542345,-11.329796427933019],[154.24534245342454,-11.324730696123368],[154.26694266942673,-11.333173582472782],[154.27774277742776,-11.339927891552321],[154.28134281342813,-11.348370777901735]]],[[[136.7635676356764,-11.039361137513197],[136.74556745567457,-11.093395610149443],[136.73476734767348,-11.137298619166387],[136.72036720367203,-11.17444731910382],[136.71676716767166,-11.206530287231587],[136.709567095671,-11.20990744177135],[136.70596705967063,-11.211596019041238],[136.70236702367026,-11.211596019041238],[136.68076680766808,-11.223416059930415],[136.669966699667,-11.255499028058182],[136.63756637566377,-11.285893418916075],[136.62676626766267,-11.329796427933019],[136.61236612366127,-11.33486215974267],[136.5907659076591,-11.37707659148974],[136.54396543965441,-11.429422486856097],[136.5367653676537,-11.442931105015163],[136.5259652596526,-11.446308259554925],[136.52236522365223,-11.4395539504754],[136.5151651516515,-11.434488218665749],[136.50796507965083,-11.437865373205511],[136.49356493564937,-11.45475114590434],[136.47916479164792,-11.447996836824814],[136.49356493564937,-11.434488218665749],[136.5007650076501,-11.422668177776572],[136.48276482764828,-11.41253671415727],[136.49716497164974,-11.399028095998219],[136.52956529565296,-11.37707659148974],[136.56196561965623,-11.35512508698126],[136.56196561965623,-11.346682200631847],[136.579965799658,-11.328107850663145],[136.579965799658,-11.304467768884777],[136.58716587165873,-11.284204841646186],[136.61596615966158,-11.236924678089466],[136.6555665556656,-11.186267359992996],[136.6879668796688,-11.177824473643582],[136.6987669876699,-11.140675773706164],[136.709567095671,-11.120412846467573],[136.709567095671,-11.096772764689206],[136.7239672396724,-11.086641301069918],[136.73116731167312,-11.079886991990378],[136.73476734767348,-11.064689796561439],[136.72036720367203,-11.051181178402373],[136.73836738367385,-11.029229673893894],[136.7419674196742,-11.032606828433671],[136.74556745567457,-11.034295405703546],[136.74916749167494,-11.035983982973434],[136.7527675276753,-11.037672560243308],[136.75636756367567,-11.02754109662402],[136.7635676356764,-11.019098210274606],[136.7635676356764,-11.039361137513197]]],[[[132.49032490324902,-11.159250123674866],[132.49392493924938,-11.150807237325452],[132.5011250112501,-11.14743008278569],[132.5119251192512,-11.144052928245927],[132.51912519125193,-11.138987196436275],[132.51912519125193,-11.127167155547099],[132.5119251192512,-11.086641301069918],[132.50832508325084,-11.078198414720504],[132.49392493924938,-11.073132682910853],[132.4867248672487,-11.06300121929155],[132.47952479524798,-11.051181178402373],[132.47232472324725,-11.041049714783085],[132.4687246872469,-11.029229673893894],[132.48312483124835,-11.032606828433671],[132.5011250112501,-11.039361137513197],[132.5119251192512,-11.04780402386261],[132.51912519125193,-11.041049714783085],[132.5335253352534,-11.037672560243308],[132.55152551525515,-11.032606828433671],[132.55872558725588,-11.019098210274606],[132.56232562325624,-11.00052386030589],[132.5659256592566,-10.981949510337188],[132.58032580325806,-10.970129469448011],[132.59832598325983,-10.968440892178123],[132.59472594725946,-10.981949510337188],[132.58392583925843,-11.00052386030589],[132.58032580325806,-11.012343901195067],[132.58032580325806,-11.025852519354132],[132.5875258752588,-11.039361137513197],[132.59832598325983,-11.064689796561439],[132.59472594725946,-11.064689796561439],[132.59832598325983,-11.073132682910853],[132.60552605526055,-11.08495272380003],[132.61272612726128,-11.098461341959094],[132.61272612726128,-11.108592805578382],[132.60912609126092,-11.122101423737448],[132.6019260192602,-11.123790001007336],[132.59472594725946,-11.123790001007336],[132.58392583925843,-11.13223288735675],[132.58032580325806,-11.154184391865215],[132.59832598325983,-11.159250123674866],[132.619926199262,-11.160938700944754],[132.63432634326347,-11.17444731910382],[132.61272612726128,-11.186267359992996],[132.61272612726128,-11.199775978152047],[132.619926199262,-11.218350328120763],[132.62712627126274,-11.24536756443888],[132.62352623526237,-11.27238480075701],[132.6019260192602,-11.316287809773954],[132.59832598325983,-11.344993623361972],[132.5659256592566,-11.311222077964317],[132.56232562325624,-11.277450532566661],[132.55152551525515,-11.247056141708768],[132.5335253352534,-11.218350328120763],[132.49392493924938,-11.16769301002428],[132.49032490324902,-11.159250123674866]]],[[[142.25362253622535,-10.666185560869124],[142.2788227882279,-10.689825642647477],[142.28242282422826,-10.701645683536654],[142.28242282422826,-10.71515430169572],[142.2788227882279,-10.718531456235482],[142.27522275222753,-10.718531456235482],[142.26442264422644,-10.716842878965608],[142.25362253622535,-10.716842878965608],[142.23202232022322,-10.725285765315022],[142.21762217622177,-10.728662919854784],[142.20682206822067,-10.733728651664435],[142.19602196021964,-10.745548692553612],[142.1888218882189,-10.759057310712663],[142.1888218882189,-10.769188774331965],[142.15282152821527,-10.7556801561729],[142.1456214562146,-10.748925847093375],[142.1348213482135,-10.730351497124659],[142.12042120421205,-10.710088569886068],[142.11322113221132,-10.684759910837826],[142.1168211682117,-10.652676942710059],[142.12042120421205,-10.647611210900408],[142.12402124021241,-10.644234056360645],[142.12762127621278,-10.640856901820882],[142.1456214562146,-10.639168324550994],[142.1492214922149,-10.635791170011231],[142.15282152821527,-10.632414015471468],[142.160021600216,-10.625659706391929],[142.17802178021782,-10.61552824277264],[142.18162181621818,-10.61552824277264],[142.18162181621818,-10.61046251096299],[142.19242192421927,-10.591888160994287],[142.2140221402214,-10.596953892803924],[142.22842228422286,-10.620593974582292],[142.25362253622535,-10.666185560869124]]],[[[121.93861938619386,-10.429784743085548],[121.96021960219605,-10.439916206704837],[121.97821978219781,-10.438227629434962],[121.99621996219963,-10.441604783974725],[122.00702007020072,-10.468622020292841],[121.99621996219963,-10.509147874770036],[121.99261992619927,-10.520967915659213],[121.95301953019532,-10.55305088378698],[121.93141931419314,-10.566559501946045],[121.9206192061921,-10.57500238829546],[121.91341913419137,-10.576690965565334],[121.90981909819101,-10.578379542835222],[121.89901899018992,-10.578379542835222],[121.89181891818919,-10.580068120105096],[121.88821888218882,-10.586822429184636],[121.88461884618846,-10.593576738264161],[121.8810188101881,-10.598642470073813],[121.85941859418597,-10.603708201883464],[121.79821798217984,-10.598642470073813],[121.75141751417516,-10.600331047343701],[121.73341733417334,-10.596953892803924],[121.71181711817121,-10.585133851914748],[121.69741697416976,-10.57500238829546],[121.69381693816939,-10.571625233755682],[121.69021690216903,-10.564870924676157],[121.70461704617048,-10.55305088378698],[121.82701827018269,-10.493950679341083],[121.86301863018633,-10.439916206704837],[121.8810188101881,-10.42809616581566],[121.90261902619028,-10.421341856736134],[121.92421924219241,-10.419653279466246],[121.93861938619386,-10.429784743085548]]],[[[142.29322293222936,-10.139349452665712],[142.31482314823148,-10.147792339015126],[142.3328233282333,-10.169743843523605],[142.34002340023403,-10.190006770762196],[142.3328233282333,-10.200138234381498],[142.31842318423185,-10.213646852540563],[142.289622896229,-10.26092701609727],[142.27522275222753,-10.255861284287619],[142.26442264422644,-10.24572982066833],[142.250022500225,-10.24066408885868],[142.23202232022322,-10.23897551158879],[142.22122221222213,-10.242352666128568],[142.21042210422104,-10.232221202509265],[142.19962199621995,-10.220401161620089],[142.19602196021964,-10.206892543461024],[142.19242192421927,-10.193383925301958],[142.2032220322203,-10.188318193492321],[142.21042210422104,-10.18325246168267],[142.2140221402214,-10.176498152603145],[142.2140221402214,-10.157923802634429],[142.2140221402214,-10.152858070824777],[142.23202232022322,-10.1410380299356],[142.25362253622535,-10.137660875395838],[142.29322293222936,-10.139349452665712]]],[[[-138.8371883718837,-9.740845216973398],[-138.81558815588156,-9.739156639703523],[-138.81918819188192,-9.749288103322812],[-138.86958869588696,-9.791502535069881],[-138.89118891188912,-9.799945421419295],[-138.91638916389164,-9.80669973049882],[-138.9559895598956,-9.810076885038598],[-139.009990099901,-9.808388307768709],[-139.02079020790208,-9.80669973049882],[-139.02799027990278,-9.803322575959058],[-139.03879038790387,-9.801633998689184],[-139.04959049590497,-9.803322575959058],[-139.0567905679057,-9.80669973049882],[-139.0567905679057,-9.837094121356714],[-139.06039060390603,-9.853979894055541],[-139.07119071190712,-9.853979894055541],[-139.08559085590855,-9.84891416224589],[-139.12519125191253,-9.840471275896476],[-139.14319143191432,-9.8286512350073],[-139.15759157591577,-9.815142616848235],[-139.16479164791647,-9.803322575959058],[-139.1719917199172,-9.789813957800007],[-139.1719917199172,-9.774616762371053],[-139.16839168391684,-9.761108144211988],[-139.13959139591395,-9.7509766805927],[-139.04959049590497,-9.702007939766105],[-139.01359013590135,-9.695253630686565],[-138.98478984789847,-9.700319362496217],[-138.9739897398974,-9.720582289734807],[-138.95958959589595,-9.734090907893872],[-138.94158941589416,-9.742533794243286],[-138.919989199892,-9.747599526052937],[-138.9019890198902,-9.749288103322812],[-138.87678876788766,-9.754353835132463],[-138.8659886598866,-9.756042412402351],[-138.85518855188553,-9.754353835132463],[-138.8479884798848,-9.749288103322812],[-138.84078840788408,-9.74422237151316],[-138.8371883718837,-9.740845216973398]]],[[[160.2538025380254,-9.158286058863865],[160.26460264602645,-9.154908904324103],[160.27540275402754,-9.148154595244577],[160.28620286202863,-9.139711708895163],[160.29340293402936,-9.13126882254575],[160.30420304203045,-9.082300081719154],[160.3150031500315,-9.062037154480564],[160.3330033300333,-9.063725731750438],[160.35820358203586,-9.111005895307159],[160.3690036900369,-9.117760204386684],[160.3870038700387,-9.117760204386684],[160.3978039780398,-9.119448781656573],[160.40500405004053,-9.12451451346621],[160.41580415804157,-9.13126882254575],[160.40140401404017,-9.144777440704814],[160.3870038700387,-9.170106099753056],[160.37260372603726,-9.17854898610247],[160.36540365403653,-9.18699187245187],[160.3438034380344,-9.17854898610247],[160.32580325803258,-9.16672894521328],[160.30420304203045,-9.159974636133754],[160.28620286202863,-9.165040367943405],[160.289802898029,-9.17854898610247],[160.27540275402754,-9.18699187245187],[160.25020250202505,-9.192057604261521],[160.23220232202323,-9.19374618153141],[160.2358023580236,-9.185303295181996],[160.2358023580236,-9.17854898610247],[160.22860228602286,-9.175171831562693],[160.21780217802177,-9.17179467702293],[160.22140221402213,-9.163351790673516],[160.23220232202323,-9.158286058863865],[160.2538025380254,-9.158286058863865]]],[[[159.19539195391957,-9.056971422670912],[159.2061920619206,-9.055282845401024],[159.22419224192242,-9.03164276362267],[159.23499234992352,-9.023199877273257],[159.23499234992352,-9.028265609082908],[159.23499234992352,-9.029954186352782],[159.23139231392315,-9.033331340892545],[159.2277922779228,-9.036708495432322],[159.2277922779228,-9.04683995905161],[159.2277922779228,-9.048528536321498],[159.2277922779228,-9.056971422670912],[159.22059220592206,-9.065414309020326],[159.2169921699217,-9.075545772639614],[159.22419224192242,-9.078922927179377],[159.23499234992352,-9.075545772639614],[159.23499234992352,-9.100874431687856],[159.2169921699217,-9.117760204386684],[159.17379173791738,-9.138023131625275],[159.17379173791738,-9.111005895307159],[159.17739177391775,-9.092431545338442],[159.19539195391957,-9.056971422670912]]],[[[160.09540095400956,-9.056971422670912],[160.08820088200883,-9.055282845401024],[160.08460084600847,-9.051905690861261],[160.0810008100081,-9.04683995905161],[160.07740077400774,-9.040085649972085],[160.08820088200883,-9.036708495432322],[160.10620106201065,-9.035019918162433],[160.12420124201242,-9.029954186352782],[160.1350013500135,-9.014756990923843],[160.14220142201424,-9.023199877273257],[160.1458014580146,-9.014756990923843],[160.14940149401497,-9.008002681844317],[160.1458014580146,-9.002936950034666],[160.14220142201424,-8.994494063685252],[160.1458014580146,-8.989428331875601],[160.14940149401497,-8.989428331875601],[160.15300153001533,-8.994494063685252],[160.1710017100171,-9.002936950034666],[160.19260192601928,-9.001248372764778],[160.20700207002074,-9.002936950034666],[160.22140221402213,-9.023199877273257],[160.23220232202323,-9.023199877273257],[160.23940239402395,-9.006314104574429],[160.25740257402578,-9.009691259114192],[160.2790027900279,-9.023199877273257],[160.29340293402936,-9.040085649972085],[160.3006030060301,-9.062037154480564],[160.29340293402936,-9.090742968068568],[160.2790027900279,-9.11607162711681],[160.26460264602645,-9.13126882254575],[160.26100261002614,-9.12451451346621],[160.25740257402578,-9.121137358926447],[160.2538025380254,-9.121137358926447],[160.24300243002432,-9.12451451346621],[160.24300243002432,-9.112694472577033],[160.2358023580236,-9.104251586227619],[160.22860228602286,-9.097497277148094],[160.21780217802177,-9.097497277148094],[160.21780217802177,-9.102563008957745],[160.22140221402213,-9.117760204386684],[160.21780217802177,-9.117760204386684],[160.19980199802,-9.092431545338442],[160.18900189001891,-9.082300081719154],[160.1710017100171,-9.087365813528791],[160.1566015660157,-9.09412012260833],[160.13860138601387,-9.09412012260833],[160.12060120601205,-9.090742968068568],[160.10620106201065,-9.083988658989028],[160.1026010260103,-9.077234349909503],[160.1026010260103,-9.068791463560089],[160.1026010260103,-9.060348577210675],[160.09540095400956,-9.056971422670912]]],[[[159.16659166591666,-9.018134145463605],[159.17379173791738,-9.016445568193717],[159.19539195391957,-9.023199877273257],[159.1629916299163,-9.090742968068568],[159.1485914859149,-9.104251586227619],[159.09819098190985,-9.117760204386684],[159.09099090990912,-9.112694472577033],[159.0837908379084,-9.102563008957745],[159.07659076590767,-9.095808699878205],[159.06579065790658,-9.104251586227619],[159.04059040590408,-9.068791463560089],[159.04059040590408,-9.056971422670912],[159.0729907299073,-9.056971422670912],[159.06579065790658,-9.043462804511847],[159.06939069390694,-9.033331340892545],[159.08019080190803,-9.029954186352782],[159.09099090990912,-9.036708495432322],[159.09099090990912,-9.023199877273257],[159.09819098190985,-9.024888454543131],[159.11259112591125,-9.029954186352782],[159.11259112591125,-9.018134145463605],[159.1089910899109,-9.009691259114192],[159.10179101791022,-9.001248372764778],[159.09099090990912,-8.994494063685252],[159.10539105391052,-8.994494063685252],[159.11619116191162,-8.999559795494903],[159.12339123391234,-8.999559795494903],[159.13059130591307,-8.996182640955126],[159.13419134191344,-8.987739754605713],[159.14139141391416,-9.001248372764778],[159.14139141391416,-9.013068413653954],[159.14499144991453,-9.021511300003368],[159.15579155791556,-9.029954186352782],[159.15939159391593,-9.028265609082908],[159.16659166591666,-9.018134145463605]]],[[[-140.05040050400504,-8.8239477594271],[-140.02160021600216,-8.847587841205453],[-140.01440014400146,-8.85940788209463],[-140.01440014400146,-8.881359386603108],[-140.0180001800018,-8.896556582032048],[-140.03240032400325,-8.894868004762174],[-140.0540005400054,-8.877982232063346],[-140.06120061200613,-8.899933736571825],[-140.07560075600756,-8.915130932000764],[-140.09720097200972,-8.918508086540527],[-140.11160111601117,-8.904999468381462],[-140.11880118801187,-8.904999468381462],[-140.12960129601296,-8.916819509270638],[-140.1692016920169,-8.92863955015983],[-140.180001800018,-8.937082436509243],[-140.18360183601837,-8.953968209208071],[-140.19440194401943,-8.950591054668294],[-140.2088020880209,-8.938771013779117],[-140.22680226802268,-8.92695097288994],[-140.2340023400234,-8.913442354730876],[-140.24480244802447,-8.866162191174169],[-140.24840248402484,-8.847587841205453],[-140.24840248402484,-8.839144954856039],[-140.25920259202593,-8.830702068506625],[-140.2628026280263,-8.8239477594271],[-140.24840248402484,-8.786799059489681],[-140.2160021600216,-8.78173332768003],[-140.090000900009,-8.80199625491862],[-140.05760057600577,-8.80199625491862],[-140.05040050400504,-8.800307677648732],[-140.03600036000358,-8.791864791299318],[-140.02880028800288,-8.788487636759555],[-140.02880028800288,-8.793553368569206],[-140.02880028800288,-8.79693052310897],[-140.03240032400325,-8.798619100378858],[-140.03960039600395,-8.807061986728272],[-140.05040050400504,-8.8239477594271]]],[[[157.6149761497615,-8.734453164123309],[157.6365763657637,-8.744584627742611],[157.6509765097651,-8.764847554981202],[157.64737647376472,-8.786799059489681],[157.62217622176223,-8.795241945839095],[157.6149761497615,-8.793553368569206],[157.57897578975792,-8.774979018600504],[157.52857528575288,-8.76147040044144],[157.47817478174784,-8.73951889593296],[157.4529745297453,-8.722633123234132],[157.45657456574565,-8.705747350535304],[157.4925749257493,-8.712501659614844],[157.51057510575106,-8.712501659614844],[157.52497524975252,-8.705747350535304],[157.52857528575288,-8.714190236884718],[157.53937539375397,-8.700681618725653],[157.54297542975434,-8.695615886916016],[157.550175501755,-8.69223873237624],[157.55737557375573,-8.693927309646128],[157.56457564575646,-8.698993041455779],[157.56817568175683,-8.70405877326543],[157.57537575375756,-8.705747350535304],[157.589775897759,-8.710813082344956],[157.60057600576005,-8.720944545964258],[157.60777607776078,-8.729387432313672],[157.6149761497615,-8.734453164123309]]],[[[158.05778057780577,-8.528446737197626],[158.07938079380796,-8.523381005387975],[158.10458104581045,-8.523381005387975],[158.12258122581227,-8.5301353144675],[158.13338133381336,-8.545332509896454],[158.13338133381336,-8.567284014404933],[158.13338133381336,-8.574038323484459],[158.12618126181263,-8.582481209833873],[158.11538115381154,-8.585858364373635],[158.10458104581045,-8.584169787103747],[158.0937809378094,-8.585858364373635],[158.09018090180905,-8.59430125072305],[158.08658086580868,-8.597678405262812],[158.06858068580686,-8.604432714342352],[158.0649806498065,-8.611187023421877],[158.07218072180723,-8.616252755231528],[158.09018090180905,-8.619629909771291],[158.09738097380978,-8.624695641580942],[158.10458104581045,-8.62131848704118],[158.1081810818108,-8.619629909771291],[158.1189811898119,-8.617941332501402],[158.10458104581045,-8.63482710520023],[158.10098100981008,-8.639892837009882],[158.09018090180905,-8.644958568819533],[158.11538115381154,-8.666910073328012],[158.10458104581045,-8.690550155106365],[158.0649806498065,-8.727698855043784],[158.0541805418054,-8.746273205012486],[158.04698046980474,-8.751338936822137],[158.039780397804,-8.756404668631788],[158.0217802178022,-8.76147040044144],[158.01458014580146,-8.764847554981202],[158.0001800018,-8.76653613225109],[157.97857978579788,-8.763158977711313],[157.9569795697957,-8.756404668631788],[157.94977949779496,-8.751338936822137],[157.94617946179466,-8.744584627742611],[157.93897938979393,-8.73951889593296],[157.92817928179284,-8.734453164123309],[157.92457924579247,-8.729387432313672],[157.91737917379174,-8.71925596869437],[157.91377913779138,-8.714190236884718],[157.88497884978852,-8.688861577836477],[157.8777787777878,-8.682107268756951],[157.8777787777878,-8.631449950660468],[157.88497884978852,-8.595989827992938],[157.8885788857889,-8.590924096183286],[157.89577895778962,-8.584169787103747],[157.89937899378992,-8.575726900754333],[157.89937899378992,-8.562218282595282],[157.92817928179284,-8.57910405529411],[157.93897938979393,-8.57910405529411],[157.9425794257943,-8.562218282595282],[157.94977949779496,-8.563906859865156],[157.95337953379533,-8.565595437135045],[157.95337953379533,-8.577415478024221],[157.96417964179642,-8.563906859865156],[157.96057960579606,-8.553775396245868],[157.95337953379533,-8.543643932626566],[157.95337953379533,-8.528446737197626],[157.96057960579606,-8.521692428118087],[157.9965799657997,-8.508183809959036],[158.00378003780037,-8.506495232689147],[158.00738007380073,-8.504806655419273],[158.0109801098011,-8.501429500879496],[158.01818018180182,-8.508183809959036],[158.01818018180182,-8.514938119038561],[158.00738007380073,-8.521692428118087],[158.00378003780037,-8.528446737197626],[158.00738007380073,-8.53688962354704],[158.01458014580146,-8.545332509896454],[158.02538025380255,-8.550398241706105],[158.03618036180364,-8.545332509896454],[158.04698046980474,-8.535201046277152],[158.05778057780577,-8.528446737197626]]],[[[151.11331113311132,-8.768224709520965],[151.12771127711278,-8.776667595870379],[151.13851138511387,-8.795241945839095],[151.1457114571146,-8.815504873077685],[151.14211142111424,-8.830702068506625],[151.13131131311314,-8.818882027617448],[151.1025110251103,-8.768224709520965],[151.04491044910452,-8.732764586853435],[151.04491044910452,-8.727698855043784],[151.04851048510488,-8.71925596869437],[151.09531095310956,-8.653401455168947],[151.12051120511205,-8.601055559802575],[151.12411124111242,-8.582481209833873],[151.12051120511205,-8.57910405529411],[151.1025110251103,-8.562218282595282],[151.08811088110883,-8.553775396245868],[151.0809108091081,-8.550398241706105],[151.02331023310234,-8.545332509896454],[151.00531005310052,-8.53688962354704],[150.99810998109984,-8.518315273578324],[151.0161101611016,-8.492986614530082],[151.01971019710197,-8.484543728180668],[151.02331023310234,-8.471035110021617],[151.0269102691027,-8.462592223672203],[151.04491044910452,-8.444017873703487],[151.05931059310592,-8.428820678274548],[151.0809108091081,-8.422066369195008],[151.12771127711278,-8.418689214655245],[151.13131131311314,-8.423754946464896],[151.12771127711278,-8.425443523734785],[151.12411124111242,-8.425443523734785],[151.12051120511205,-8.47441226456138],[151.1169111691117,-8.49467519179997],[151.10971109711096,-8.514938119038561],[151.13851138511387,-8.547021087166328],[151.13851138511387,-8.590924096183286],[151.1061110611106,-8.731076009583546],[151.1025110251103,-8.756404668631788],[151.11331113311132,-8.768224709520965]]],[[[143.60723607236076,-8.638204259739993],[143.6288362883629,-8.644958568819533],[143.64323643236435,-8.66184434151836],[143.65403654036544,-8.683795846026825],[143.65403654036544,-8.705747350535304],[143.64323643236435,-8.726010277773895],[143.6288362883629,-8.731076009583546],[143.6180361803618,-8.722633123234132],[143.61083610836107,-8.70405877326543],[143.60723607236076,-8.688861577836477],[143.58923589235894,-8.678730114217188],[143.4740347403474,-8.624695641580942],[143.45243452434528,-8.607809868882114],[143.43803438034382,-8.602744137072463],[143.42363423634237,-8.5993669825327],[143.41283412834127,-8.595989827992938],[143.4056340563406,-8.585858364373635],[143.40203402034024,-8.574038323484459],[143.33723337233374,-8.521692428118087],[143.28323283232834,-8.506495232689147],[143.25443254432548,-8.49467519179997],[143.2436324363244,-8.486232305450557],[143.2220322203222,-8.452460760052901],[143.2112321123211,-8.444017873703487],[143.18963189631899,-8.430509255544422],[143.1788317883179,-8.418689214655245],[143.19323193231935,-8.417000637385371],[143.20763207632075,-8.413623482845594],[143.21843218432184,-8.415312060115482],[143.25443254432548,-8.457526491862552],[143.27243272432725,-8.469346532751729],[143.35883358833587,-8.487920882720445],[143.4416344163442,-8.518315273578324],[143.46683466834668,-8.521692428118087],[143.4740347403474,-8.525069582657864],[143.48123481234813,-8.535201046277152],[143.49203492034923,-8.55208681897598],[143.58923589235894,-8.631449950660468],[143.60723607236076,-8.638204259739993]]],[[[157.35937359373594,-8.577415478024221],[157.35577355773557,-8.577415478024221],[157.34857348573485,-8.574038323484459],[157.34497344973448,-8.57234974621457],[157.3377733777338,-8.577415478024221],[157.3377733777338,-8.582481209833873],[157.3377733777338,-8.604432714342352],[157.33057330573308,-8.633138527930356],[157.33057330573308,-8.648335723359295],[157.33417334173345,-8.66184434151836],[157.37017370173703,-8.700681618725653],[157.39177391773921,-8.714190236884718],[157.41337413374134,-8.720944545964258],[157.41337413374134,-8.727698855043784],[157.3989739897399,-8.731076009583546],[157.38097380973812,-8.729387432313672],[157.3629736297363,-8.726010277773895],[157.34857348573485,-8.717567391424481],[157.3377733777338,-8.705747350535304],[157.33057330573308,-8.702370195995542],[157.319773197732,-8.700681618725653],[157.31257312573126,-8.695615886916016],[157.3089730897309,-8.687173000566602],[157.31257312573126,-8.675352959677426],[157.31257312573126,-8.666910073328012],[157.30537305373053,-8.655090032438821],[157.27657276572768,-8.617941332501402],[157.2657726577266,-8.611187023421877],[157.25137251372513,-8.606121291612226],[157.229772297723,-8.59261267345316],[157.20817208172082,-8.57910405529411],[157.2009720097201,-8.565595437135045],[157.20457204572045,-8.55208681897598],[157.21177211772118,-8.538578200816914],[157.2189721897219,-8.528446737197626],[157.229772297723,-8.521692428118087],[157.2549725497255,-8.508183809959036],[157.26937269372695,-8.496363769069859],[157.28737287372877,-8.459215069132426],[157.31617316173163,-8.43219783281431],[157.34857348573485,-8.41193490557572],[157.36657366573667,-8.413623482845594],[157.3845738457385,-8.425443523734785],[157.3989739897399,-8.444017873703487],[157.40977409774098,-8.469346532751729],[157.41337413374134,-8.498052346339733],[157.40977409774098,-8.504806655419273],[157.39537395373952,-8.521692428118087],[157.3845738457385,-8.555463973515742],[157.3845738457385,-8.55884112805552],[157.38097380973812,-8.562218282595282],[157.37737377373776,-8.568972591674807],[157.37737377373776,-8.57234974621457],[157.37017370173703,-8.577415478024221],[157.36657366573667,-8.577415478024221],[157.3629736297363,-8.577415478024221],[157.35937359373594,-8.577415478024221]]],[[[159.68859688596888,-8.508183809959036],[159.69939699396997,-8.518315273578324],[159.69939699396997,-8.525069582657864],[159.68859688596888,-8.535201046277152],[159.67779677796779,-8.540266778086803],[159.67059670596706,-8.541955355356691],[159.65979659796596,-8.540266778086803],[159.64899648996493,-8.535201046277152],[159.63459634596347,-8.528446737197626],[159.62739627396274,-8.523381005387975],[159.6129961299613,-8.508183809959036],[159.60219602196025,-8.48960945999032],[159.59139591395916,-8.484543728180668],[159.58059580595807,-8.49467519179997],[159.5661956619566,-8.479477996371031],[159.54819548195485,-8.471035110021617],[159.53739537395376,-8.459215069132426],[159.53739537395376,-8.43219783281431],[159.54459544595449,-8.406869173766069],[159.55899558995588,-8.38998340106724],[159.5769957699577,-8.379851937447953],[159.60579605796062,-8.378163360178064],[159.63459634596347,-8.38491766925759],[159.64539645396457,-8.400114864686543],[159.6417964179642,-8.44739502824325],[159.64539645396457,-8.46765795548184],[159.65979659796596,-8.482855150910794],[159.68859688596888,-8.508183809959036]]],[[[143.38043380433805,-8.425443523734785],[143.35883358833587,-8.415312060115482],[143.330033300333,-8.393360555607003],[143.31563315633156,-8.371409051098539],[143.33723337233374,-8.357900432939473],[143.3516335163352,-8.357900432939473],[143.35883358833587,-8.361277587479236],[143.3660336603366,-8.368031896558762],[143.37323373233733,-8.371409051098539],[143.38403384033842,-8.371409051098539],[143.41643416434164,-8.364654742018999],[143.4848348483485,-8.362966164749125],[143.5748357483575,-8.373097628368413],[143.58563585635858,-8.381540514717827],[143.58563585635858,-8.406869173766069],[143.58923589235894,-8.420377791925134],[143.6036360363604,-8.44739502824325],[143.61083610836107,-8.462592223672203],[143.61083610836107,-8.47441226456138],[143.60003600036003,-8.482855150910794],[143.58203582035821,-8.486232305450557],[143.53163531635317,-8.486232305450557],[143.510035100351,-8.481166573640905],[143.4632346323463,-8.457526491862552],[143.44523445234455,-8.438952141893836],[143.42363423634237,-8.43219783281431],[143.38043380433805,-8.425443523734785]]],[[[125.57105571055712,-8.195797015030735],[125.58185581855821,-8.178911242331907],[125.60345603456034,-8.153582583283665],[125.63225632256325,-8.135008233314949],[125.65025650256501,-8.143451119664363],[125.64305643056434,-8.175534087792144],[125.60345603456034,-8.268405837635683],[125.59625596255961,-8.298800228493576],[125.5926559265593,-8.30724311484299],[125.58185581855821,-8.313997423922515],[125.57465574655748,-8.317374578462292],[125.57105571055712,-8.312308846652641],[125.56385563855639,-8.308931692112878],[125.53145531455317,-8.298800228493576],[125.51705517055171,-8.29204591941405],[125.50625506255062,-8.280225878524874],[125.50265502655026,-8.270094414905572],[125.50625506255062,-8.261651528556158],[125.51345513455135,-8.248142910397092],[125.5278552785528,-8.236322869507916],[125.56025560255603,-8.2093056331898],[125.57105571055712,-8.195797015030735]]],[[[128.09108091080913,-8.131631078775186],[128.12348123481235,-8.150205428743902],[128.1270812708127,-8.162025469633079],[128.11628116281162,-8.178911242331907],[128.06588065880658,-8.221125674078976],[128.05508055080554,-8.226191405888628],[128.04068040680409,-8.254897219476632],[128.02628026280263,-8.261651528556158],[128.00828008280087,-8.258274374016395],[127.99387993879941,-8.251520064936855],[127.9506795067951,-8.22450282861874],[127.939879398794,-8.217748519539214],[127.92547925479255,-8.214371364999437],[127.86427864278642,-8.210994210459674],[127.84267842678429,-8.205928478650023],[127.82827828278283,-8.195797015030735],[127.80307803078034,-8.175534087792144],[127.79227792277925,-8.162025469633079],[127.78867788677888,-8.141762542394488],[127.78507785077852,-8.131631078775186],[127.77427774277743,-8.12487676969566],[127.75987759877597,-8.118122460616135],[127.7670776707767,-8.107990996996833],[127.77427774277743,-8.102925265187181],[127.78507785077852,-8.102925265187181],[127.79587795877961,-8.10461384245707],[127.8318783187832,-8.09785953337753],[127.86787867878678,-8.106302419726944],[127.939879398794,-8.131631078775186],[128.0190801908019,-8.143451119664363],[128.0586805868059,-8.141762542394488],[128.09108091080913,-8.131631078775186]]],[[[131.1079110791108,-8.131631078775186],[131.12591125911263,-8.128253924235423],[131.14031140311403,-8.121499615155898],[131.1619116191162,-8.118122460616135],[131.17991179911797,-8.12487676969566],[131.1619116191162,-8.151894006013777],[131.1331113311133,-8.16709120144273],[131.10071100711008,-8.178911242331907],[131.06111061110613,-8.205928478650023],[130.99270992709927,-8.234634292238042],[130.97830978309787,-8.236322869507916],[130.95310953109532,-8.232945714968153],[130.90270902709028,-8.249831487666981],[130.89550895508955,-8.251520064936855],[130.89550895508955,-8.283603033064637],[130.8919089190892,-8.295423073953813],[130.8811088110881,-8.308931692112878],[130.83430834308342,-8.335948928430994],[130.81990819908202,-8.347768969320171],[130.80910809108093,-8.351146123859934],[130.76230762307625,-8.351146123859934],[130.77310773107735,-8.33426035116112],[130.81630816308166,-8.285291610334511],[130.83430834308342,-8.268405837635683],[130.8451084510845,-8.254897219476632],[130.8559085590856,-8.239700024047679],[130.87030870308706,-8.232945714968153],[130.8775087750878,-8.231257137698265],[130.90630906309065,-8.219437096809088],[130.91350913509137,-8.214371364999437],[130.9207092070921,-8.199174169570497],[130.9207092070921,-8.18735412868132],[130.91710917109174,-8.177222665062018],[130.91350913509137,-8.158648315093316],[130.91710917109174,-8.141762542394488],[130.92790927909283,-8.133319656045074],[130.93870938709387,-8.133319656045074],[130.95310953109532,-8.141762542394488],[130.9747097470975,-8.145139696934251],[131.01431014310145,-8.096170956107656],[131.03591035910358,-8.082662337948591],[131.05031050310504,-8.091105224298005],[131.08631086310862,-8.12487676969566],[131.0791107911079,-8.133319656045074],[131.0755107551076,-8.141762542394488],[131.0791107911079,-8.148516851474014],[131.089910899109,-8.151894006013777],[131.09351093510935,-8.148516851474014],[131.10431104311044,-8.135008233314949],[131.1079110791108,-8.131631078775186]]],[[[156.61056610566106,-8.072530874329289],[156.6177661776618,-8.09785953337753],[156.6177661776618,-8.113056728806484],[156.61056610566106,-8.12487676969566],[156.6177661776618,-8.14682827420414],[156.6177661776618,-8.170468355982493],[156.60336603366034,-8.190731283221083],[156.58896588965894,-8.199174169570497],[156.57816578165784,-8.18735412868132],[156.5529655296553,-8.114745306076358],[156.5385653856539,-8.091105224298005],[156.53496534965353,-8.069153719789526],[156.5421654216542,-8.02187355623282],[156.53136531365317,-7.971216238136336],[156.53136531365317,-7.949264733627857],[156.54936549365493,-7.939133270008568],[156.5637656376564,-7.952641888167619],[156.57816578165784,-7.966150506326684],[156.5817658176582,-7.977970547215861],[156.58896588965894,-7.99992205172434],[156.59976599765997,-8.023562133502693],[156.6069660696607,-8.040447906201521],[156.61056610566106,-8.059022256170238],[156.61056610566106,-8.072530874329289]]],[[[129.84069840698407,-7.878344488292782],[129.85509855098553,-7.883410220102434],[129.86229862298626,-7.898607415531373],[129.86229862298626,-7.917181765500089],[129.8586985869859,-7.932378960929029],[129.8478984789848,-7.945887579088094],[129.81189811898122,-7.983036279025512],[129.7830978309783,-8.045513638011172],[129.77589775897758,-8.055645101630475],[129.75789757897581,-8.053956524360586],[129.69309693096932,-8.038759328931647],[129.68949689496895,-8.028627865312345],[129.5958959589596,-7.923936074579615],[129.5850958509585,-7.90198457007115],[129.58869588695887,-7.836130056545713],[129.59949599495997,-7.807424242957708],[129.6318963189632,-7.795604202068532],[129.72549725497254,-7.795604202068532],[129.73269732697327,-7.79729277933842],[129.75789757897581,-7.809112820227597],[129.76509765097654,-7.8124899747673595],[129.77589775897758,-7.817555706577011],[129.81189811898122,-7.815867129307122],[129.81909819098195,-7.819244283846885],[129.82989829898298,-7.824310015656536],[129.84069840698407,-7.829375747466187],[129.84429844298444,-7.836130056545713],[129.84429844298444,-7.846261520165015],[129.8370983709837,-7.873278756483131],[129.84069840698407,-7.878344488292782]]],[[[127.47187471874719,-7.527120416157189],[127.48267482674828,-7.532186147966826],[127.48987489874901,-7.544006188856017],[127.48627486274864,-7.5794663115235466],[127.48267482674828,-7.589597775142849],[127.46827468274682,-7.599729238762137],[127.43227432274324,-7.613237856921202],[127.41787417874178,-7.614926434191091],[127.41427414274142,-7.6183035887308534],[127.40707407074069,-7.623369320540505],[127.39987399874002,-7.643632247779095],[127.38907389073893,-7.650386556858621],[127.37467374673747,-7.655452288668272],[127.35667356673565,-7.655452288668272],[127.34947349473498,-7.640255093239318],[127.34587345873462,-7.623369320540505],[127.34947349473498,-7.614926434191091],[127.35307353073534,-7.606483547841677],[127.36027360273602,-7.6031063933019],[127.37107371073711,-7.599729238762137],[127.37467374673747,-7.596352084222374],[127.37827378273784,-7.586220620603072],[127.37467374673747,-7.569334847904244],[127.36387363873638,-7.537251879776477],[127.36387363873638,-7.5220546843475375],[127.37107371073711,-7.506857488918598],[127.38547385473856,-7.503480334378821],[127.41787417874178,-7.508546066188472],[127.43947439474397,-7.520366107077649],[127.45387453874542,-7.5254318388873],[127.47187471874719,-7.527120416157189]]],[[[131.9827198271983,-7.189404962180646],[131.98631986319862,-7.224865084848176],[131.9827198271983,-7.2451280120867665],[131.9647196471965,-7.255259475706069],[131.95751957519576,-7.248505166626543],[131.92151921519218,-7.223176507578302],[131.91431914319145,-7.216422198498762],[131.90351903519036,-7.180962075831232],[131.87831878318786,-7.164076303132404],[131.84231842318422,-7.162387725862516],[131.77391773917742,-7.165764880402293],[131.74151741517414,-7.159010571322753],[131.7307173071731,-7.140436221354051],[131.7559175591756,-7.110041830496158],[131.87831878318786,-7.106664675956395],[131.89991899919,-7.110041830496158],[131.9179191791918,-7.103287521416632],[131.93231932319327,-7.111730407766046],[131.9431194311943,-7.126927603194986],[131.94671946719467,-7.140436221354051],[131.9539195391954,-7.153944839513102],[131.97551975519758,-7.174207766751707],[131.9827198271983,-7.189404962180646]]],[[[128.67068670686706,-7.137059066814274],[128.65988659886602,-7.143813375893814],[128.6670866708667,-7.157321994052879],[128.68148681486815,-7.172519189481818],[128.6778867788678,-7.179273498561344],[128.63828638286384,-7.219799353038539],[128.62388623886238,-7.2096678894192365],[128.58428584285843,-7.179273498561344],[128.54828548285485,-7.162387725862516],[128.5338853388534,-7.150567684973339],[128.53028530285303,-7.1303047577347485],[128.54108541085412,-7.111730407766046],[128.5626856268563,-7.091467480527442],[128.59148591485916,-7.0728931305587395],[128.62028620286202,-7.062761666939437],[128.62748627486275,-7.067827398749088],[128.6418864188642,-7.083024594178028],[128.6526865268653,-7.089778903257567],[128.65988659886602,-7.09315605779733],[128.6778867788678,-7.09315605779733],[128.68508685086852,-7.096533212337093],[128.69948699486997,-7.110041830496158],[128.70308703087034,-7.123550448655223],[128.69228692286924,-7.133681912274511],[128.67068670686706,-7.137059066814274]]],[[[155.8149581495815,-7.0205472351923675],[155.84735847358473,-7.027301544271907],[155.85455854558546,-7.03067869881167],[155.86895868958692,-7.049253048780386],[155.86895868958692,-7.062761666939437],[155.8617586175862,-7.076270285098502],[155.85815858158583,-7.09315605779733],[155.8509585095851,-7.0999103668768555],[155.83295832958333,-7.104976098686507],[155.8149581495815,-7.106664675956395],[155.80415804158042,-7.103287521416632],[155.7861578615786,-7.118484716845572],[155.7717577175772,-7.116796139575683],[155.75375753757538,-7.115107562305809],[155.73575735757356,-7.123550448655223],[155.72495724957253,-7.12017329411546],[155.71415714157143,-7.108353253226269],[155.7069570695707,-7.103287521416632],[155.67815678156785,-7.0948446350672185],[155.6745567455675,-7.089778903257567],[155.6745567455675,-7.076270285098502],[155.69975699756998,-7.0205472351923675],[155.71055710557107,-7.025612967002019],[155.71055710557107,-7.010415771573079],[155.7177571775718,-6.991841421604363],[155.73575735757356,-6.986775689794726],[155.73215732157325,-6.978332803445312],[155.73215732157325,-6.973267071635661],[155.73575735757356,-6.966512762556121],[155.74655746557465,-6.971578494365772],[155.7825578255783,-7.000284307953777],[155.8149581495815,-7.0205472351923675]]],[[[105.26325263252636,-6.5274826723866255],[105.26685266852667,-6.552811331434867],[105.26325263252636,-6.591648608642174],[105.25605256052563,-6.628797308579593],[105.24165241652418,-6.643994504008532],[105.22365223652235,-6.649060235818183],[105.20565205652059,-6.6727003175965365],[105.19125191251914,-6.679454626676076],[105.1840518405184,-6.671011740326662],[105.1840518405184,-6.655814544897709],[105.1948519485195,-6.6372401949290065],[105.20205202052023,-6.623731576769941],[105.19125191251914,-6.61866584496029],[105.1840518405184,-6.6068458040711135],[105.17685176851768,-6.58320572229276],[105.13365133651337,-6.627108731309704],[105.11925119251191,-6.630485885849467],[105.11925119251191,-6.611911535880765],[105.13725137251373,-6.586582876832523],[105.18765187651877,-6.547745599625216],[105.1948519485195,-6.554499908704756],[105.20565205652059,-6.544368445085453],[105.21645216452168,-6.539302713275802],[105.22725227252272,-6.535925558736039],[105.23085230852308,-6.537614136005928],[105.23445234452345,-6.532548404196277],[105.24165241652418,-6.529171249656514],[105.25245252452527,-6.5274826723866255],[105.26325263252636,-6.5274826723866255]]],[[[120.54540545405456,-5.938169205197568],[120.55620556205565,-5.978695059674749],[120.55980559805602,-6.022598068691693],[120.55980559805602,-6.066501077708651],[120.55260552605529,-6.110404086725595],[120.5310053100531,-6.172881445711255],[120.52740527405274,-6.194832950219734],[120.5310053100531,-6.24886742285598],[120.5310053100531,-6.287704700063287],[120.52380523805238,-6.336673440889882],[120.51660516605165,-6.3518706363188215],[120.50220502205025,-6.373822140827301],[120.50220502205025,-6.392396490796017],[120.50580505805061,-6.43123376800331],[120.49860498604988,-6.4514966952419],[120.49140491404916,-6.471759622480491],[120.48060480604806,-6.476825354290142],[120.47340473404734,-6.434610922543072],[120.46620466204661,-6.402527954415305],[120.46260462604624,-6.383953604446603],[120.46980469804697,-6.27588465917411],[120.46980469804697,-6.26406461828492],[120.45900459004594,-6.258998886475283],[120.44820448204484,-6.257310309205394],[120.44460444604448,-6.24886742285598],[120.44460444604448,-6.2370473819668035],[120.44460444604448,-6.226915918347501],[120.43020430204302,-6.194832950219734],[120.43020430204302,-6.18639006387032],[120.43380433804339,-6.174570022981143],[120.44820448204484,-6.154307095742553],[120.44820448204484,-6.140798477583488],[120.45180451804521,-6.080009695867716],[120.44100441004412,-5.97700648240486],[120.44820448204484,-5.84360887808414],[120.45900459004594,-5.801394446337071],[120.46980469804697,-5.767622900939415],[120.48060480604806,-5.764245746399652],[120.48780487804879,-5.767622900939415],[120.49500495004952,-5.77437721001894],[120.49860498604988,-5.782820096368354],[120.49500495004952,-5.806460178146708],[120.50220502205025,-5.823345950845535],[120.51300513005128,-5.8368545690046005],[120.51660516605165,-5.85205176443354],[120.52020520205201,-5.874003268942019],[120.54540545405456,-5.938169205197568]]],[[[132.80352803528035,-5.7878858281780055],[132.81072810728108,-5.796328714527419],[132.81072810728108,-5.819968796305773],[132.80712807128072,-5.862183228052842],[132.79632796327962,-5.885823309831196],[132.78912789127895,-5.906086237069786],[132.7747277472775,-5.9246605870385025],[132.76032760327604,-5.94154635973733],[132.74232742327422,-5.949989246086744],[132.73152731527318,-5.934792050657805],[132.72432724327246,-5.911151968879437],[132.71712717127173,-5.895954773450498],[132.71712717127173,-5.907774814339675],[132.71352713527136,-5.917906277958977],[132.709927099271,-5.928037741578265],[132.6991269912699,-5.931414896118028],[132.69192691926918,-5.928037741578265],[132.6847268472685,-5.92128343249874],[132.67392673926742,-5.904397659799912],[132.67392673926742,-5.911151968879437],[132.67032670326705,-5.899331927990261],[132.6667266672667,-5.887511887101084],[132.6667266672667,-5.862183228052842],[132.6667266672667,-5.857117496243191],[132.66312663126632,-5.855428918973317],[132.66312663126632,-5.85205176443354],[132.66312663126632,-5.8452974553540145],[132.66312663126632,-5.838543146274489],[132.6667266672667,-5.8368545690046005],[132.67392673926742,-5.8368545690046005],[132.67392673926742,-5.835165991734726],[132.67032670326705,-5.782820096368354],[132.67392673926742,-5.759180014590001],[132.68832688326887,-5.759180014590001],[132.6847268472685,-5.749048550970699],[132.67392673926742,-5.71189985103328],[132.67032670326705,-5.71189985103328],[132.66312663126632,-5.71189985103328],[132.6559265592656,-5.708522696493517],[132.65952659526596,-5.701768387413992],[132.65952659526596,-5.696702655604341],[132.66312663126632,-5.6916369237946896],[132.66312663126632,-5.684882614715164],[132.66312663126632,-5.678128305635624],[132.6559265592656,-5.678128305635624],[132.64872648726487,-5.678128305635624],[132.6451264512645,-5.674751151095862],[132.64152641526414,-5.667996842016336],[132.64152641526414,-5.647733914777746],[132.64152641526414,-5.6426681829680945],[132.63432634326347,-5.6342252966186805],[132.62712627126274,-5.625782410269267],[132.62352623526237,-5.617339523919853],[132.619926199262,-5.602142328490913],[132.6559265592656,-5.620716678459615],[132.66312663126632,-5.624093832999378],[132.67392673926742,-5.6122737921102015],[132.68832688326887,-5.600453751221025],[132.6991269912699,-5.597076596681262],[132.70272702727027,-5.617339523919853],[132.6991269912699,-5.630848142078918],[132.69192691926918,-5.6426681829680945],[132.69192691926918,-5.64942249204762],[132.70272702727027,-5.657865378397034],[132.709927099271,-5.657865378397034],[132.72792727927282,-5.654488223857271],[132.73512735127355,-5.654488223857271],[132.7387273872739,-5.659553955666922],[132.74232742327422,-5.667996842016336],[132.74592745927458,-5.686571191985038],[132.75672756727568,-5.723719891922457],[132.75672756727568,-5.732162778271871],[132.7639276392764,-5.7220313146525825],[132.7639276392764,-5.71865416011282],[132.77112771127713,-5.71865416011282],[132.7747277472775,-5.73891708735141],[132.77832778327786,-5.760868591859875],[132.7855278552786,-5.7794429418285915],[132.80352803528035,-5.7878858281780055]]],[[[133.18513185131854,-5.310018460801203],[133.1887318873189,-5.325215656230142],[133.1887318873189,-5.343790006198859],[133.18513185131854,-5.362364356167561],[133.1707317073171,-5.3691186652471],[133.16713167131672,-5.380938706136277],[133.13833138331387,-5.521090619536537],[133.11313113131132,-5.595388019411374],[133.1059310593106,-5.605519483030676],[133.0807308073081,-5.632536719348792],[133.069930699307,-5.637602451158443],[133.05913059130592,-5.639291028428332],[133.04833048330482,-5.64942249204762],[133.03393033930342,-5.654488223857271],[133.0267302673027,-5.662931110206685],[133.0159301593016,-5.678128305635624],[132.99792997929978,-5.7000798101441035],[132.97632976329766,-5.728785623732108],[132.95832958329584,-5.760868591859875],[132.9511295112951,-5.794640137257531],[132.9511295112951,-5.813214487226247],[132.95832958329584,-5.84360887808414],[132.95832958329584,-5.862183228052842],[132.9511295112951,-5.874003268942019],[132.85752857528576,-5.988826523294051],[132.8431284312843,-5.997269409643465],[132.839528395284,-5.985449368754274],[132.90072900729007,-5.813214487226247],[132.92232922329225,-5.786197250908117],[132.92952929529298,-5.777754364558703],[132.92952929529298,-5.715277005573043],[132.92952929529298,-5.698391232874215],[132.96552965529656,-5.640979605698206],[132.97992979929802,-5.644356760237969],[132.99792997929978,-5.651111069317508],[133.0051300513005,-5.647733914777746],[133.0159301593016,-5.60720806030055],[133.01953019530197,-5.566682205823369],[133.02313023130233,-5.548107855854667],[133.0375303753038,-5.514336310457011],[133.07713077130774,-5.397824478835105],[133.0951309513095,-5.365741510707323],[133.1059310593106,-5.350544315278384],[133.10953109531096,-5.311707038071077],[133.12033120331205,-5.294821265372249],[133.13833138331387,-5.288066956292724],[133.15633156331563,-5.288066956292724],[133.17433174331745,-5.296509842642138],[133.18513185131854,-5.310018460801203]]],[[[147.2108721087211,-5.269492606324022],[147.2108721087211,-5.293132688102375],[147.21807218072183,-5.316772769880728],[147.22887228872293,-5.337035697119319],[147.24327243272432,-5.348855738008496],[147.24327243272432,-5.355610047088035],[147.22887228872293,-5.370807242516975],[147.22527225272256,-5.391070169755565],[147.22887228872293,-5.4096445197242815],[147.2216722167222,-5.424841715153221],[147.21447214472147,-5.429907446962872],[147.2108721087211,-5.428218869692984],[147.20367203672038,-5.424841715153221],[147.19647196471965,-5.424841715153221],[147.18567185671856,-5.428218869692984],[147.16047160471607,-5.4451046423918115],[147.12807128071285,-5.443416065121937],[147.09927099270993,-5.423153137883347],[147.05967059670598,-5.375872974326626],[147.02007020070204,-5.348855738008496],[147.00927009270094,-5.335347119849445],[147.00567005670058,-5.320149924420491],[147.00567005670058,-5.301575574451789],[147.00927009270094,-5.266115451784245],[147.01647016470167,-5.24416394727578],[147.02727027270276,-5.235721060926366],[147.0668706687067,-5.225589597307064],[147.0812708127081,-5.215458133687775],[147.09567095670957,-5.20194951552871],[147.1136711367114,-5.191818051909408],[147.13527135271352,-5.190129474639534],[147.1676716767168,-5.228966751846826],[147.1820718207182,-5.239098215466129],[147.20727207272074,-5.250918256355305],[147.20727207272074,-5.255983988164957],[147.2108721087211,-5.269492606324022]]],[[[145.99765997659978,-4.534961493925039],[146.01206012060123,-4.546781534814215],[146.04806048060482,-4.585618812021522],[146.05166051660518,-4.600816007450462],[146.05526055260555,-4.624456089228829],[146.05526055260555,-4.659916211896359],[146.05166051660518,-4.668359098245773],[146.04806048060482,-4.678490561865075],[146.04446044460445,-4.70044206637354],[146.0408604086041,-4.712262107262731],[146.030060300603,-4.720704993612145],[145.99045990459905,-4.744345075390498],[145.96525965259656,-4.7544765390097865],[145.940059400594,-4.761230848089326],[145.92565925659255,-4.7544765390097865],[145.89325893258933,-4.725770725421782],[145.8860588605886,-4.717327839072368],[145.87885878858788,-4.702130643643429],[145.8752587525875,-4.686933448214489],[145.8752587525875,-4.6700476755156615],[145.88245882458824,-4.649784748277071],[145.8968589685897,-4.607570316530001],[145.9076590765908,-4.590684543831173],[145.95445954459547,-4.538338648464801],[145.9760597605976,-4.528207184845513],[145.99765997659978,-4.534961493925039]]],[[[133.55953559535595,-4.23270616261604],[133.609936099361,-4.2918063670619375],[133.6279362793628,-4.3002492534113514],[133.60273602736027,-4.3002492534113514],[133.57753577535777,-4.278297748902872],[133.5559355593556,-4.251280512584742],[133.53433534335346,-4.2394604716955655],[133.52353523535237,-4.2394604716955655],[133.49833498334982,-4.244526203505217],[133.48753487534879,-4.246214780775105],[133.46953469534697,-4.246214780775105],[133.45873458734587,-4.244526203505217],[133.45153451534514,-4.237771894425691],[133.43713437134375,-4.225951853536515],[133.4227342273423,-4.217508967187101],[133.4011340113401,-4.209066080837687],[133.3867338673387,-4.2040003490280355],[133.3759337593376,-4.193868885408733],[133.36873368733688,-4.1820488445195565],[133.36153361533616,-4.173605958170143],[133.34353343533434,-4.17022880363038],[133.3327333273333,-4.165163071820729],[133.32553325533257,-4.153343030931552],[133.31833318333184,-4.138145835502613],[133.31833318333184,-4.1246372173435475],[133.32553325533257,-4.10775144464472],[133.3327333273333,-4.109440021914608],[133.40833408334083,-4.1600973400110774],[133.4119341193412,-4.161785917280966],[133.41913419134193,-4.163474494550854],[133.4227342273423,-4.165163071820729],[133.42633426334265,-4.180360267249682],[133.42993429934302,-4.183737421789445],[133.44433444334442,-4.197246039948496],[133.4551345513455,-4.202311771758147],[133.4659346593466,-4.2040003490280355],[133.49473494734946,-4.207377503567798],[133.519935199352,-4.2124432353774495],[133.5415354153542,-4.220886121726863],[133.55953559535595,-4.23270616261604]]],[[[128.53028530285303,-3.533635172884601],[128.54108541085412,-3.5471437910436663],[128.55908559085594,-3.5707838728220196],[128.5626856268563,-3.5927353773304986],[128.5446854468545,-3.6011782636799126],[128.53028530285303,-3.6045554182196753],[128.49068490684908,-3.6180640363787404],[128.44748447484477,-3.6231297681883916],[128.43308433084331,-3.6265069227281543],[128.39348393483937,-3.643392695426982],[128.38628386283864,-3.6265069227281543],[128.39348393483937,-3.6062439954895638],[128.4006840068401,-3.585981068250959],[128.40428404284046,-3.5707838728220196],[128.40788407884082,-3.5572752546629545],[128.4114841148412,-3.5437666365039036],[128.4150841508415,-3.5319465956147127],[128.4258842588426,-3.5235037092652988],[128.46188461884623,-3.511683668376122],[128.47628476284763,-3.520126554725536],[128.51228512285127,-3.5268808638050757],[128.53028530285303,-3.533635172884601]]],[[[128.7210872108721,-3.5251922865351872],[128.72468724687246,-3.545455213773778],[128.72828728287283,-3.6146868818389777],[128.7066870668707,-3.602866840949787],[128.68868688686888,-3.5826039137111962],[128.6670866708667,-3.5690952955521453],[128.6526865268653,-3.580915336441322],[128.6526865268653,-3.59104680006061],[128.65628656286566,-3.602866840949787],[128.65628656286566,-3.612998304569089],[128.64548645486457,-3.621441190918503],[128.63468634686348,-3.6231297681883916],[128.62748627486275,-3.6180640363787404],[128.62028620286202,-3.607932572759438],[128.60948609486098,-3.594423954600373],[128.61668616686165,-3.594423954600373],[128.60228602286026,-3.5826039137111962],[128.59508595085953,-3.5690952955521453],[128.58428584285843,-3.5522095228533175],[128.56628566285661,-3.52856944107495],[128.55908559085594,-3.509995091106248],[128.5626856268563,-3.49310931840742],[128.58428584285843,-3.4914207411375315],[128.5986859868599,-3.4914207411375315],[128.60588605886062,-3.4964864729471827],[128.62028620286202,-3.515060822915899],[128.6310863108631,-3.5218151319954245],[128.65988659886602,-3.533635172884601],[128.67428674286742,-3.5403894819641266],[128.68148681486815,-3.5167494001857733],[128.69228692286924,-3.501552204756834],[128.7066870668707,-3.503240782026708],[128.7210872108721,-3.5251922865351872]]],[[[152.65052650526508,-3.114868009953696],[152.65412654126544,-3.1199337417633473],[152.66852668526684,-3.12331089630311],[152.6721267212672,-3.128376628112747],[152.6721267212672,-3.1385080917320494],[152.66852668526684,-3.1469509780814633],[152.66492664926648,-3.1621481735104027],[152.65052650526508,-3.1959197189080584],[152.65412654126544,-3.2144940688767747],[152.64332643326435,-3.224625532496063],[152.63252632526326,-3.219559800686426],[152.6037260372604,-3.194231141638184],[152.59652596525967,-3.1874768325586444],[152.54252542525427,-3.1300652053826354],[152.53532535325354,-3.118245164493459],[152.5281252812528,-3.097982237254868],[152.53172531725318,-3.076030732746389],[152.55332553325536,-3.057456382777687],[152.5749257492575,-3.040570610078859],[152.61092610926113,-3.035504878269208],[152.65052650526508,-3.0473249191583847],[152.65052650526508,-3.101359391794631],[152.65052650526508,-3.114868009953696]]],[[[106.90846908469086,-2.9291245102665897],[106.91566915669159,-2.9510760147750688],[106.89046890468904,-2.994979023792027],[106.89406894068941,-3.01861910557038],[106.86526865268655,-3.027061991919794],[106.86166861668619,-3.0287505691896683],[106.81486814868151,-3.01861910557038],[106.79686796867969,-3.0101762192209662],[106.75726757267574,-2.978093251093199],[106.72126721267216,-2.966273210204008],[106.72486724867252,-2.95614174658472],[106.73566735667356,-2.9460102829654176],[106.73926739267392,-2.942633128425655],[106.74646746467465,-2.9274359329967155],[106.75006750067502,-2.9223702011870643],[106.7716677166772,-2.907173005758125],[106.79326793267933,-2.8970415421388225],[106.81126811268115,-2.8919758103291713],[106.8256682566826,-2.903795851218362],[106.84366843668437,-2.912238737567762],[106.89046890468904,-2.920681623917176],[106.90846908469086,-2.9291245102665897]]],[[[152.0709207092071,-2.917304469377413],[152.07812078120782,-2.9291245102665897],[152.07812078120782,-2.95614174658472],[152.06372063720636,-2.973027519283548],[152.05292052920532,-2.994979023792027],[152.0241202412024,-2.996667601061901],[152.00612006120065,-2.9679617874738966],[151.9917199171992,-2.9443217056955433],[151.99531995319956,-2.908861583027999],[151.98811988119883,-2.8970415421388225],[151.97731977319773,-2.8936643875990598],[151.96651966519664,-2.8869100785195343],[151.95931959319597,-2.8750900376303434],[151.96651966519664,-2.8750900376303434],[151.96291962919628,-2.8615814194712925],[151.97371973719737,-2.8480728013122274],[151.98451984519846,-2.843007069502576],[151.9917199171992,-2.854827110391753],[152.00612006120065,-2.876778614900232],[152.0241202412024,-2.8970415421388225],[152.0457204572046,-2.9105501602978876],[152.0709207092071,-2.917304469377413]]],[[[-171.67671676716768,-2.832875605883288],[-171.70911709117092,-2.824432719533874],[-171.71271712717126,-2.8227441422639856],[-171.69471694716947,-2.827809874073637],[-171.66231662316622,-2.8345641831531623],[-171.65871658716588,-2.837941337692925],[-171.65151651516516,-2.843007069502576],[-171.65151651516516,-2.8446956467724647],[-171.63351633516336,-2.8615814194712925],[-171.629916299163,-2.8582042649315156],[-171.629916299163,-2.8565156876616413],[-171.62631626316264,-2.8565156876616413],[-171.62631626316264,-2.85144995585199],[-171.65511655116552,-2.8058583695651578],[-171.66591665916658,-2.7923497514060927],[-171.68031680316804,-2.785595442326567],[-171.69831698316983,-2.775463978707265],[-171.71631716317162,-2.772086824167502],[-171.72351723517235,-2.785595442326567],[-171.72711727117272,-2.7788411332470417],[-171.72711727117272,-2.772086824167502],[-171.72351723517235,-2.7653325150879766],[-171.71631716317162,-2.758578206008437],[-171.68031680316804,-2.775463978707265],[-171.65151651516516,-2.797415483215744],[-171.629916299163,-2.827809874073637],[-171.62631626316264,-2.846384224042339],[-171.62271622716227,-2.8565156876616413],[-171.62631626316264,-2.868335728550818],[-171.64071640716406,-2.8615814194712925],[-171.6479164791648,-2.8497613785821017],[-171.65871658716588,-2.841318492232702],[-171.6731167311673,-2.8345641831531623],[-171.67671676716768,-2.832875605883288]]],[[[126.06786067860679,-2.38371405209449],[126.07506075060752,-2.405665556602955],[126.08586085860861,-2.424239906571671],[126.08946089460898,-2.441125679270499],[126.07506075060752,-2.463077183778964],[126.04626046260466,-2.4748972246681546],[126.01386013860139,-2.459700029239201],[125.98505985059853,-2.4309942156511966],[125.96705967059671,-2.402288402063192],[125.95625956259562,-2.3685168566655364],[125.95625956259562,-2.3026623431401134],[125.94545945459458,-2.2722679522822204],[125.93825938259386,-2.260447911393044],[125.91305913059131,-2.240184984154453],[125.90585905859058,-2.2317420978050393],[125.89865898658985,-2.218233479645974],[125.89865898658985,-2.169264738819379],[125.88785887858882,-2.142247502501263],[125.87345873458736,-2.115230266183133],[125.86265862658627,-2.0865244525951283],[125.86265862658627,-2.0527529071974726],[125.869858698587,-2.0358671344986448],[125.88065880658809,-2.018981361799817],[125.90225902259021,-1.9885869709419381],[125.91665916659167,-1.9733897755129846],[125.9238592385924,-1.9683240437033334],[125.93465934659349,-1.9649468891635706],[125.94545945459458,-1.9649468891635706],[125.95625956259562,-1.9717011982431103],[125.98505985059853,-1.9936527027515751],[125.99225992259926,-2.0037841663708775],[125.99945999459993,-2.015604207260054],[125.99945999459993,-2.027424248149231],[125.99585995859962,-2.0561300617372353],[125.9778597785978,-2.1084759571036074],[125.97425974259744,-2.1354931934217234],[125.9778597785978,-2.1810847797085557],[126.06426064260643,-2.363451124855885],[126.06786067860679,-2.38371405209449]]],[[[149.73449734497348,-1.473570903627703],[149.73809738097384,-1.4803252127072426],[149.75249752497524,-1.5107196035651356],[149.76329763297633,-1.5309825308037261],[149.78489784897852,-1.5596883443917307],[149.79209792097924,-1.5799512716303212],[149.7776977769778,-1.5816398489001955],[149.75249752497524,-1.5934598897893864],[149.73809738097384,-1.5934598897893864],[149.7308973089731,-1.5900827352496094],[149.72729727297275,-1.5867055807098467],[149.72369723697238,-1.5816398489001955],[149.72009720097202,-1.5731969625507816],[149.7020970209702,-1.561376921661605],[149.69489694896953,-1.556311189851968],[149.68409684096844,-1.552934035312191],[149.68409684096844,-1.5816398489001955],[149.66609666096662,-1.5765741170905585],[149.6336963369634,-1.5461797262326655],[149.6228962289623,-1.5428025716929028],[149.6120961209612,-1.5360482626133631],[149.59049590495908,-1.5140967581048983],[149.58689586895872,-1.5056538717554844],[149.58329583295836,-1.5005881399458332],[149.579695796958,-1.4988995626759447],[149.56529565295654,-1.4988995626759447],[149.56169561695617,-1.4972109854060704],[149.54729547295472,-1.4820137899771169],[149.54009540095404,-1.465128017278289],[149.54009540095404,-1.4262907400709963],[149.57249572495726,-1.358747649275685],[149.579695796958,-1.3469276083865083],[149.58689586895872,-1.3519933401961595],[149.59409594095945,-1.3536819174660337],[149.61929619296194,-1.3536819174660337],[149.62649626496267,-1.3570590720057965],[149.6480964809648,-1.380699153784164],[149.70929709297093,-1.4144706991818197],[149.72369723697238,-1.429667894610759],[149.72729727297275,-1.4414879354999357],[149.72729727297275,-1.451619399119238],[149.72729727297275,-1.4634394400084147],[149.73449734497348,-1.473570903627703]]],[[[134.9995499955,-1.0193436180292679],[134.99234992349926,-1.0328522361883188],[134.99234992349926,-1.0497380088871466],[134.99234992349926,-1.0835095542848023],[134.95634956349562,-1.1291011405716347],[134.94194941949422,-1.1341668723812859],[134.92754927549277,-1.1358554496511744],[134.89154891548918,-1.1341668723812859],[134.87714877148773,-1.1307897178415232],[134.86274862748627,-1.1206582542222208],[134.85194851948523,-1.108838213333044],[134.8339483394834,-1.0716895133956257],[134.81234812348123,-1.0497380088871466],[134.8015480154802,-1.0277865043786818],[134.8159481594816,-1.0007692680605516],[134.81954819548196,-0.9957035362509004],[134.81954819548196,-0.9771291862821982],[134.82674826748269,-0.9653091453930216],[134.83034830348305,-0.9602434135833704],[134.8339483394834,-0.9568662590436077],[134.84834848348487,-0.945046218154431],[134.86274862748627,-0.9382919090748914],[134.87714877148773,-0.9366033318050171],[134.9239492394924,-0.950111949964068],[134.93834938349386,-0.9568662590436077],[134.94194941949422,-0.9669977226628959],[134.9455494554946,-0.9754406090123098],[134.95634956349562,-0.9906378044412634],[134.95634956349562,-1.0007692680605516],[134.95634956349562,-1.0092121544099655],[134.9527495274953,-1.0244093498389049],[134.94914949149495,-1.0345408134582073],[134.93114931149313,-1.0581808952365606],[134.92754927549277,-1.0716895133956257],[134.94194941949422,-1.0801323997450396],[134.96354963549635,-1.0700009361257514],[134.9779497794978,-1.0277865043786818],[134.9995499955,-1.0193436180292679]]],[[[130.91710917109174,-0.777877068436041],[130.92430924309247,-0.7812542229758037],[130.91710917109174,-0.7863199547854549],[130.90630906309065,-0.7896971093252176],[130.89910899108992,-0.7913856865951061],[130.8919089190892,-0.7947628411348688],[130.8811088110881,-0.7964514184047431],[130.8775087750878,-0.7998285729445058],[130.87390873908743,-0.8082714592939197],[130.8775087750878,-0.8184029229132221],[130.88470884708846,-0.8200915001831106],[130.8919089190892,-0.8200915001831106],[130.89550895508955,-0.8268458092626361],[130.88830888308883,-0.8336001183421615],[130.8811088110881,-0.8403544274217012],[130.87030870308706,-0.8454201592313524],[130.84870848708488,-0.8504858910409894],[130.81990819908202,-0.87074881827958],[130.8019080190802,-0.8741259728193569],[130.76230762307625,-0.8758145500892311],[130.61830618306186,-0.9078975182169984],[130.54270542705427,-0.914651827296538],[130.51030510305105,-0.923094713645952],[130.51030510305105,-0.914651827296538],[130.52110521105215,-0.9112746727567753],[130.5247052470525,-0.9095860954868868],[130.50310503105032,-0.9078975182169984],[130.48870488704887,-0.9045203636772357],[130.47430474304747,-0.9062089409471241],[130.46710467104674,-0.923094713645952],[130.459904599046,-0.923094713645952],[130.45270452704528,-0.9112746727567753],[130.43830438304383,-0.9129632500266496],[130.39870398703988,-0.9298490227254774],[130.40950409504097,-0.9112746727567753],[130.42750427504274,-0.9028317864073614],[130.4419044190442,-0.892700322788059],[130.43470434704346,-0.8741259728193569],[130.44910449104492,-0.8606173546602918],[130.44910449104492,-0.8184029229132221],[130.459904599046,-0.804894304754157],[130.459904599046,-0.8167143456433337],[130.459904599046,-0.8200915001831106],[130.46710467104674,-0.8200915001831106],[130.4707047070471,-0.8065828820240455],[130.47790477904778,-0.7998285729445058],[130.48870488704887,-0.7998285729445058],[130.50310503105032,-0.804894304754157],[130.4959049590496,-0.8285343865325245],[130.51750517505178,-0.8403544274217012],[130.549905499055,-0.8336001183421615],[130.56430564305646,-0.804894304754157],[130.57510575105755,-0.8099600365638082],[130.57870578705786,-0.8150257683734594],[130.58590585905858,-0.8234686547228733],[130.58590585905858,-0.8336001183421615],[130.6147061470615,-0.8116486138336967],[130.63270632706326,-0.8065828820240455],[130.64710647106472,-0.813337191103571],[130.64350643506435,-0.8150257683734594],[130.64350643506435,-0.8167143456433337],[130.639906399064,-0.8200915001831106],[130.65430654306545,-0.8234686547228733],[130.66510665106654,-0.8200915001831106],[130.67230672306727,-0.8150257683734594],[130.67950679506794,-0.813337191103571],[130.6939069390694,-0.8150257683734594],[130.71910719107194,-0.8251572319927476],[130.73350733507334,-0.8268458092626361],[130.7587075870759,-0.8184029229132221],[130.78030780307802,-0.8065828820240455],[130.8019080190802,-0.8015171502143943],[130.81630816308166,-0.8200915001831106],[130.81990819908202,-0.8099600365638082],[130.81630816308166,-0.8065828820240455],[130.8127081270813,-0.7981399956746316],[130.81630816308166,-0.7880085320553292],[130.8019080190802,-0.7694341820866271],[130.80550805508057,-0.7576141411974504],[130.8127081270813,-0.7643684502769759],[130.81990819908202,-0.7677456048167386],[130.83790837908379,-0.7677456048167386],[130.85230852308524,-0.7694341820866271],[130.8559085590856,-0.7694341820866271],[130.87390873908743,-0.7643684502769759],[130.8811088110881,-0.7643684502769759],[130.88830888308883,-0.7677456048167386],[130.90630906309065,-0.7761884911661525],[130.91710917109174,-0.777877068436041]]],[[[127.29547295472958,-0.7441055230383853],[127.3170731707317,-0.7795656457059152],[127.32067320673207,-0.7930742638649804],[127.27747277472776,-0.804894304754157],[127.27027270272703,-0.804894304754157],[127.26667266672666,-0.8015171502143943],[127.25227252272526,-0.7896971093252176],[127.2486724867249,-0.7846313775155664],[127.21627216272162,-0.7829428002456922],[127.18027180271804,-0.7846313775155664],[127.15507155071549,-0.7728113366263898],[127.15867158671585,-0.7305969048793202],[127.16947169471695,-0.7103339776407296],[127.18027180271804,-0.6934482049419017],[127.19107191071913,-0.6748738549731996],[127.1946719467195,-0.6343480004960043],[127.20187201872022,-0.6225279596068276],[127.21267212672126,-0.6157736505273022],[127.24507245072454,-0.6140850732574137],[127.25227252272526,-0.6140850732574137],[127.25587255872557,-0.6174622277971764],[127.25947259472593,-0.6208393823369533],[127.2486724867249,-0.637725155035767],[127.25587255872557,-0.6512337731948321],[127.26667266672666,-0.6613652368141345],[127.27387273872739,-0.6731852777033112],[127.27747277472776,-0.6748738549731996],[127.29187291872921,-0.6951367822117902],[127.29547295472958,-0.7018910912913157],[127.29547295472958,-0.712022554910618],[127.29547295472958,-0.7339740594190829],[127.29547295472958,-0.7441055230383853]]],[[[130.67590675906763,-0.435095882649847],[130.68670686706866,-0.4486045008089121],[130.68670686706866,-0.4638016962378515],[130.6831068310683,-0.4773103143969166],[130.65430654306545,-0.5161475916042235],[130.639906399064,-0.5279676324934002],[130.59670596705968,-0.5380990961126884],[130.58230582305822,-0.5397876733825768],[130.57150571505719,-0.5313447870331629],[130.58230582305822,-0.5245904779536374],[130.59670596705968,-0.49081893255598175],[130.59670596705968,-0.4638016962378515],[130.56430564305646,-0.4773103143969166],[130.5607056070561,-0.48068746893667935],[130.55710557105573,-0.49588466436563294],[130.55350553505536,-0.5009503961752699],[130.54630546305464,-0.5060161279849211],[130.53190531905318,-0.5093932825246839],[130.52830528305282,-0.514459014334335],[130.51750517505178,-0.5178361688740978],[130.459904599046,-0.5245904779536374],[130.4707047070471,-0.514459014334335],[130.48150481504814,-0.5093932825246839],[130.49230492304923,-0.5026389734451584],[130.4959049590496,-0.49081893255598175],[130.48150481504814,-0.49588466436563294],[130.4707047070471,-0.49081893255598175],[130.459904599046,-0.4773103143969166],[130.45630456304565,-0.4638016962378515],[130.46350463504638,-0.46549027350773997],[130.46710467104674,-0.46717885077761423],[130.4707047070471,-0.47055600531739117],[130.47430474304747,-0.4773103143969166],[130.48150481504814,-0.4638016962378515],[130.49230492304923,-0.4502930780788006],[130.5067050670507,-0.44185019172938667],[130.51030510305105,-0.4452273462691494],[130.51390513905142,-0.46211311896797724],[130.52110521105215,-0.4688674280475027],[130.53550535505354,-0.4688674280475027],[130.549905499055,-0.4638016962378515],[130.5607056070561,-0.4553588098884376],[130.56790567905682,-0.4435387689992609],[130.58230582305822,-0.43340730537997274],[130.60750607506077,-0.4266529963004331],[130.61110611106113,-0.42327584176067035],[130.6147061470615,-0.41821010995101915],[130.61830618306186,-0.41314437814136795],[130.6255062550626,-0.4097672236016052],[130.63270632706326,-0.4114558008714937],[130.64710647106472,-0.4198986872209076],[130.6687066870669,-0.4300301508401958],[130.67590675906763,-0.435095882649847]]],[[[121.85221852218524,-0.4013243372521913],[121.89541895418955,-0.42834157357032154],[121.90261902619028,-0.43678445991973547],[121.90981909819101,-0.4604245416980888],[121.91701917019174,-0.47055600531739117],[121.91341913419137,-0.48575320074633055],[121.90621906219064,-0.49926181890539567],[121.89541895418955,-0.5077047052548096],[121.87741877418773,-0.5110818597945723],[121.87381873818737,-0.5060161279849211],[121.84861848618488,-0.4840646234764421],[121.83421834218342,-0.4773103143969166],[121.84501845018451,-0.5009503961752699],[121.84501845018451,-0.5077047052548096],[121.83061830618306,-0.5110818597945723],[121.81621816218166,-0.5077047052548096],[121.8018180181802,-0.4941960870957445],[121.79101791017911,-0.49081893255598175],[121.7478174781748,-0.4840646234764421],[121.7370173701737,-0.48068746893667935],[121.72621726217261,-0.4823760462065678],[121.70101701017012,-0.5347219415729256],[121.69021690216903,-0.5431648279223396],[121.6722167221672,-0.5499191370018792],[121.65421654216544,-0.5516077142717535],[121.64341643416435,-0.544853405192228],[121.64341643416435,-0.5313447870331629],[121.65061650616508,-0.5127704370644608],[121.67941679416793,-0.4688674280475027],[121.69021690216903,-0.4587359644282145],[121.70101701017012,-0.4502930780788006],[121.73341733417334,-0.435095882649847],[121.74061740617407,-0.42834157357032154],[121.75141751417516,-0.4013243372521913],[121.78021780217802,-0.4249644190305588],[121.79821798217984,-0.4198986872209076],[121.82341823418233,-0.4063900690618425],[121.85221852218524,-0.4013243372521913]]],[[[127.23427234272344,-0.49081893255598175],[127.21267212672126,-0.5127704370644608],[127.19827198271986,-0.5212133234138605],[127.18027180271804,-0.5245904779536374],[127.1190711907119,-0.5245904779536374],[127.1190711907119,-0.5178361688740978],[127.12267122671227,-0.514459014334335],[127.12627126271263,-0.5110818597945723],[127.10827108271081,-0.5009503961752699],[127.11187111871118,-0.492507509825856],[127.12267122671227,-0.48575320074633055],[127.129871298713,-0.4823760462065678],[127.129871298713,-0.47055600531739117],[127.12627126271263,-0.45704738715832605],[127.1190711907119,-0.44691592353902365],[127.11547115471154,-0.44185019172938667],[127.10107101071014,-0.4384730371896097],[127.10107101071014,-0.4266529963004331],[127.11187111871118,-0.40470149179196824],[127.11187111871118,-0.377684255473838],[127.11187111871118,-0.36924136912442407],[127.11547115471154,-0.36586421458466134],[127.12267122671227,-0.36417563731477287],[127.12627126271263,-0.36079848277501014],[127.12267122671227,-0.33715840099665684],[127.11547115471154,-0.3101411646785266],[127.11187111871118,-0.28818966017006176],[127.12267122671227,-0.27805819655075936],[127.129871298713,-0.2763696192808709],[127.15507155071549,-0.2662381556615827],[127.16227162271622,-0.2611724238519315],[127.17307173071731,-0.2561066920422803],[127.20187201872022,-0.2577952693121688],[127.21267212672126,-0.24935238296275486],[127.21987219872199,-0.2577952693121688],[127.22707227072272,-0.2510409602326291],[127.23427234272344,-0.2510409602326291],[127.24147241472417,-0.2561066920422803],[127.2486724867249,-0.26454957839169424],[127.25587255872557,-0.2763696192808709],[127.2630726307263,-0.27974677382064783],[127.29187291872921,-0.27805819655075936],[127.29547295472958,-0.2814353510905221],[127.29547295472958,-0.289878237439936],[127.29187291872921,-0.3000097010592384],[127.28827288272885,-0.3050754328688754],[127.28467284672848,-0.30676401013876387],[127.26667266672666,-0.30676401013876387],[127.25947259472593,-0.30845258740865233],[127.25227252272526,-0.3236497828375917],[127.25587255872557,-0.3388469782665311],[127.2630726307263,-0.3523555964255962],[127.27027270272703,-0.36417563731477287],[127.27747277472776,-0.37430710093407527],[127.28107281072812,-0.3878157190931404],[127.28107281072812,-0.40301291452207977],[127.2630726307263,-0.4148329554112564],[127.2630726307263,-0.42834157357032154],[127.27027270272703,-0.45704738715832605],[127.26667266672666,-0.4638016962378515],[127.25587255872557,-0.4773103143969166],[127.25227252272526,-0.4975732416355072],[127.24507245072454,-0.49588466436563294],[127.23787237872381,-0.492507509825856],[127.23427234272344,-0.49081893255598175]]],[[[103.71163711637115,-0.26961531020134544],[103.73323733237333,-0.2814353510905221],[103.75483754837552,-0.30169827832911267],[103.76563765637655,-0.3253383601074802],[103.75483754837552,-0.347289864615945],[103.74763747637479,-0.3489784418858335],[103.71163711637115,-0.347289864615945],[103.69723697236975,-0.3489784418858335],[103.6720367203672,-0.36417563731477287],[103.65763657636575,-0.3675527918545356],[103.65043650436508,-0.36924136912442407],[103.62523625236253,-0.38443856455336345],[103.61083610836107,-0.3878157190931404],[103.6036360363604,-0.3827499872834892],[103.5928359283593,-0.3759956782039495],[103.58203582035821,-0.3726185236641868],[103.56763567635676,-0.377684255473838],[103.54603546035463,-0.3827499872834892],[103.48843488434886,-0.36079848277501014],[103.46323463234631,-0.3675527918545356],[103.45963459634595,-0.3337812464568941],[103.4848348483485,-0.2865010829001733],[103.52083520835208,-0.24428665115310366],[103.55683556835567,-0.22402372391451308],[103.57483574835749,-0.22402372391451308],[103.62883628836289,-0.23415518753381548],[103.63963639636398,-0.24090949661334093],[103.65043650436508,-0.25441811477240606],[103.6720367203672,-0.26286100112182],[103.71163711637115,-0.26961531020134544]]],[[[129.53829538295383,-0.13452912861072264],[129.55629556295565,-0.15816921038909015],[129.56709567095675,-0.175054983087918],[129.57069570695705,-0.19194075578674585],[129.56709567095675,-0.20038364213615978],[129.55989559895602,-0.2088265284855737],[129.54909549095493,-0.2138922602952107],[129.5418954189542,-0.21726941483498763],[129.52749527495274,-0.2138922602952107],[129.5166951669517,-0.2088265284855737],[129.50229502295025,-0.18856360124696891],[129.45909459094594,-0.11426620137213206],[129.37269372693726,-0.0788060787046021],[129.3690936909369,-0.06698603781542545],[129.37269372693726,-0.0501002651165976],[129.37269372693726,-0.036591646957532475],[129.36189361893622,-0.03152591514788128],[129.33669336693367,0.007311362059411408],[129.3330933309333,0.010688516599188347],[129.31149311493118,0.024197134758239258],[129.3006930069301,0.03264002110765318],[129.29349293492936,0.03601717564743012],[129.289892898929,0.04108290745706711],[129.29349293492936,0.047837216536606775],[129.3006930069301,0.0512143710763695],[129.30789307893082,0.047837216536606775],[129.45909459094594,-0.08049465597447636],[129.51309513095134,-0.11426620137213206],[129.53829538295383,-0.13452912861072264]]],[[[104.68724687246873,0.07147729831496008],[104.70884708847092,0.044460061996829836],[104.70164701647019,0.03264002110765318],[104.68364683646837,0.03601717564743012],[104.66204662046624,0.0512143710763695],[104.64044640446406,0.06978872104507161],[104.63324633246333,0.07823160739448554],[104.6260462604626,0.10187168917285305],[104.61884618846187,0.10524884371261578],[104.60444604446047,0.09174022555355066],[104.59364593645938,0.10187168917285305],[104.57924579245793,0.12551177095120636],[104.56844568445683,0.137331811840383],[104.56484564845647,0.1423975436500342],[104.56484564845647,0.1575947390789736],[104.56124561245616,0.16097189361873632],[104.55404554045543,0.16097189361873632],[104.5468454684547,0.1626604708886248],[104.53964539645398,0.16603762542838751],[104.53244532445325,0.1711033572380387],[104.52884528845289,0.17785766631756417],[104.52884528845289,0.18967770720675503],[104.52524525245252,0.19474343901639202],[104.50004500045003,0.22344925260439652],[104.4928449284493,0.23189213895381044],[104.48924489244894,0.24202360257311284],[104.5036450364504,0.2386464480333501],[104.51084510845112,0.23358071622369891],[104.53244532445325,0.21669494352487106],[104.52884528845289,0.21838352079475953],[104.53244532445325,0.22344925260439652],[104.53604536045361,0.22682640714417346],[104.53964539645398,0.22851498441404772],[104.54324543245434,0.22682640714417346],[104.5468454684547,0.225137829874285],[104.68724687246873,0.07147729831496008]]],[[[104.22644226442264,0.8803058105887658],[104.2408424084241,0.876928656049003],[104.25884258842592,0.8684857696995891],[104.26604266042659,0.8566657288104125],[104.25884258842592,0.8397799561115846],[104.25164251642519,0.8296484924922964],[104.2408424084241,0.8228941834127568],[104.1868418684187,0.7992541016344035],[104.1760417604176,0.7992541016344035],[104.16884168841688,0.8043198334440547],[104.16164161641615,0.819517028872994],[104.15444154441548,0.8465342651911243],[104.14724147241475,0.8583543060803009],[104.13284132841329,0.8667971924297149],[104.1076410764108,0.8735515015092403],[104.09324093240934,0.8803058105887658],[104.10044100441007,0.8955030060177194],[104.09324093240934,0.9326517059551378],[104.10044100441007,0.9495374786539656],[104.11124111241111,0.9529146331937284],[104.12924129241293,0.942783169574426],[104.15804158041584,0.9107002014466588],[104.16164161641615,0.9022573150972448],[104.16524165241651,0.8921258514779566],[104.17244172441724,0.8836829651285427],[104.18324183241833,0.8803058105887658],[104.22644226442264,0.8803058105887658]]],[[[-157.19017190171903,1.7634317227374225],[-157.17937179371793,1.7533002591181344],[-157.17577175771757,1.7330373318795296],[-157.17937179371793,1.7178401364505902],[-157.19377193771936,1.7229058682602414],[-157.20457204572045,1.7178401364505902],[-157.21177211772118,1.712774404640939],[-157.22257222572225,1.7093972501011763],[-157.23337233372334,1.7093972501011763],[-157.24777247772477,1.712774404640939],[-157.2549725497255,1.7195287137204787],[-157.26217262172622,1.7262830228000041],[-157.2729727297273,1.7330373318795296],[-157.280172801728,1.7465459500385947],[-157.28737287372874,1.7499231045783574],[-157.3089730897309,1.751611681848246],[-157.40977409774098,1.7820060727061389],[-157.44937449374493,1.800580422674841],[-157.48177481774817,1.8259090817230827],[-157.5069750697507,1.849549163501436],[-157.52857528575285,1.8630577816605012],[-157.53577535775358,1.8563034725809757],[-157.54657546575464,1.8563034725809757],[-157.56457564575646,1.8630577816605012],[-157.58257582575825,1.879943554359329],[-157.5789757897579,1.9086493679473335],[-157.5717757177572,1.9120265224870963],[-157.5429754297543,1.928912295185924],[-157.52857528575285,1.9306008724558126],[-157.52137521375215,1.9272237179160498],[-157.5177751777518,1.9238465633762871],[-157.52137521375215,1.9221579861063987],[-157.53217532175321,1.9154036770268732],[-157.54657546575464,1.901895058867808],[-157.550175501755,1.8850092861689802],[-157.53577535775358,1.866434936200264],[-157.52857528575285,1.8647463589303896],[-157.51417514175142,1.866434936200264],[-157.49977499774997,1.866434936200264],[-157.4961749617496,1.8563034725809757],[-157.4889748897489,1.849549163501436],[-157.4781747817478,1.8478605862315618],[-157.45657456574565,1.8478605862315618],[-157.4349743497435,1.8377291226122594],[-157.42777427774277,1.8377291226122594],[-157.43857438574386,1.849549163501436],[-157.44937449374493,1.85799204985085],[-157.46017460174602,1.861369204390627],[-157.46737467374675,1.8681235134701524],[-157.47457474574745,1.879943554359329],[-157.46377463774638,1.8765663998195663],[-157.4529745297453,1.8765663998195663],[-157.44577445774456,1.8833207088990918],[-157.44577445774456,1.901895058867808],[-157.4349743497435,1.8934521725183941],[-157.43137431374313,1.8833207088990918],[-157.43137431374313,1.8731892452798036],[-157.4241742417424,1.8630577816605012],[-157.41337413374134,1.85799204985085],[-157.40617406174061,1.866434936200264],[-157.40977409774098,1.879943554359329],[-157.4241742417424,1.901895058867808],[-157.42777427774277,1.9120265224870963],[-157.4241742417424,1.9204694088365102],[-157.42057420574207,1.928912295185924],[-157.40977409774098,1.9221579861063987],[-157.40257402574025,1.9238465633762871],[-157.40617406174061,1.9424209133449892],[-157.39537395373952,1.9356666042654638],[-157.39537395373952,1.9272237179160498],[-157.39537395373952,1.9170922542967475],[-157.3917739177392,1.9086493679473335],[-157.3809738097381,1.901895058867808],[-157.37737377373773,1.9052722134075708],[-157.37377373773737,1.9120265224870963],[-157.3629736297363,1.9170922542967475],[-157.35937359373594,1.9238465633762871],[-157.35577355773557,1.9322894497256868],[-157.3521735217352,1.9390437588052265],[-157.35577355773557,1.9474866451546404],[-157.3629736297363,1.9508637996944032],[-157.3809738097381,1.9559295315040544],[-157.40977409774098,1.9694381496631195],[-157.44577445774456,1.994766808711347],[-157.44937449374493,1.998143963251124],[-157.45657456574565,2.003209695060761],[-157.46737467374675,2.0133411586800634],[-157.4781747817478,2.0184068904897146],[-157.48177481774817,2.006586849600538],[-157.4889748897489,1.9998325405209982],[-157.49977499774997,2.0015211177908867],[-157.5069750697507,2.0099640041403006],[-157.51057510575106,2.02516119956924],[-157.4961749617496,2.033604085918654],[-157.47457474574745,2.033604085918654],[-157.4241742417424,2.020095467759589],[-157.38457384573846,1.98970107690171],[-157.32337323373233,1.9728153042028822],[-157.3089730897309,1.9728153042028822],[-157.31257312573126,1.9626838405835798],[-157.31617316173163,1.9525523769642916],[-157.319773197732,1.945798067884752],[-157.33777337773378,1.9390437588052265],[-157.34137341373415,1.9306008724558126],[-157.34497344973448,1.9086493679473335],[-157.34857348573485,1.861369204390627],[-157.3269732697327,1.8360405453423851],[-157.2909729097291,1.8191547726435573],[-157.25137251372513,1.7955146908651898],[-157.2369723697237,1.7836946499760131],[-157.22257222572225,1.773563186356725],[-157.20817208172082,1.7668088772771853],[-157.19017190171903,1.7634317227374225]]],[[[125.65385653856538,3.46889476531895],[125.65385653856538,3.4621404562394247],[125.66465664656647,3.446943260810471],[125.66465664656647,3.438500374461057],[125.66465664656647,3.4300574881116432],[125.6610566105661,3.424991756301992],[125.62505625056252,3.397974519983876],[125.6178561785618,3.3945973654441133],[125.60345603456034,3.397974519983876],[125.59985599855997,3.4047288290634015],[125.59985599855997,3.414860292682704],[125.5926559265593,3.4266803335718805],[125.57105571055712,3.438500374461057],[125.52425524255244,3.450320415350234],[125.50625506255062,3.463829033509299],[125.50625506255062,3.480714806208127],[125.51345513455135,3.529683547034722],[125.51705517055171,3.5398150106540243],[125.52065520655208,3.543192165193787],[125.52065520655208,3.5769637105914427],[125.51705517055171,3.582029442401094],[125.49545495454953,3.5938494832902705],[125.44145441454418,3.6377524923072144],[125.43065430654309,3.6512611104662795],[125.419854198542,3.6681468831651074],[125.41625416254163,3.688409810403698],[125.419854198542,3.710361314912177],[125.44145441454418,3.737378551230293],[125.47745477454777,3.7306242421507676],[125.51345513455135,3.7086727376422886],[125.53505535055353,3.6833440785940468],[125.57105571055712,3.6276210286879262],[125.57465574655748,3.6107352559890984],[125.57465574655748,3.6039809469095587],[125.57465574655748,3.5989152150999217],[125.57105571055712,3.590472328750508],[125.57465574655748,3.5803408651312054],[125.57825578255785,3.575275133321554],[125.59625596255961,3.5617665151625033],[125.60345603456034,3.5533236288130894],[125.61425614256143,3.524617815225085],[125.6178561785618,3.5229292379551964],[125.62865628656289,3.517863506145545],[125.63945639456398,3.5144863516057825],[125.64305643056434,3.5144863516057825],[125.64665646656465,3.4925348470973034],[125.65385653856538,3.46889476531895]]],[[[126.65826658266582,3.9822222553632827],[126.70146701467019,3.9332535145366876],[126.71226712267122,3.921433473647511],[126.71586715867159,3.9011705464089204],[126.70146701467019,3.8792190419004413],[126.68706687066873,3.8538903828521995],[126.69786697866982,3.811675951105144],[126.67626676266764,3.811675951105144],[126.66906669066691,3.855578960122088],[126.66186661866618,3.8977933918691576],[126.66546665466655,3.929876359996925],[126.64746647466478,3.951827864505404],[126.6258662586626,3.965336482664469],[126.61866618666187,3.9906651417126966],[126.6150661506615,4.026125264380241],[126.6150661506615,4.044699614348943],[126.64386643866442,4.027813841650129],[126.65826658266582,3.9822222553632827]]],[[[120.25020250202505,5.267229557744017],[120.25380253802541,5.252032362315077],[120.23940239402395,5.189555003329417],[120.23220232202323,5.15071772612211],[120.22860228602286,5.128766221613645],[120.21780217802177,5.11525760345458],[120.20340203402037,5.1203233352642314],[120.19260192601928,5.127077644343757],[120.18540185401855,5.137209107963059],[120.18180181801819,5.152406303391999],[120.18900189001891,5.182800694249892],[120.18900189001891,5.196309312408957],[120.18180181801819,5.2047521987583565],[120.17460174601746,5.203063621488482],[120.17460174601746,5.196309312408957],[120.1710017100171,5.187866426059543],[120.16740167401673,5.182800694249892],[120.16380163801637,5.182800694249892],[120.1458014580146,5.182800694249892],[120.13860138601387,5.187866426059543],[120.13140131401315,5.196309312408957],[120.12420124201242,5.208129353298133],[120.12060120601205,5.218260816917422],[120.10980109801102,5.203063621488482],[120.10980109801102,5.170980653360715],[120.09900099000993,5.15747203520165],[120.08460084600847,5.15071772612211],[120.07020070200701,5.154094880661887],[120.05580055800561,5.159160612471524],[120.04500045000452,5.164226344281175],[120.0270002700027,5.160849189741413],[120.01620016200161,5.152406303391999],[120.01260012600125,5.140586262502822],[120.00540005400057,5.128766221613645],[119.99819998199985,5.127077644343757],[119.98739987399875,5.127077644343757],[119.98019980199803,5.127077644343757],[119.97659976599766,5.118634757994343],[119.96939969399693,5.088240367136464],[119.95499954999553,5.074731748977399],[119.94419944199444,5.078108903517162],[119.93339933399335,5.084863212596687],[119.92259922599226,5.088240367136464],[119.91539915399153,5.0814860580569245],[119.90099900999013,5.062911708088222],[119.89019890198904,5.0595345535484455],[119.86139861398613,5.0595345535484455],[119.84699846998473,5.0544688217388085],[119.839798397984,5.049403089929157],[119.8289982899829,5.049403089929157],[119.81819818198181,5.0595345535484455],[119.81819818198181,5.073043171707511],[119.81819818198181,5.106814717105166],[119.81099810998109,5.122011912534106],[119.82179821798218,5.13045479888352],[119.8289982899829,5.135520530693171],[119.86499864998649,5.145651994312473],[119.8937989379894,5.160849189741413],[119.90099900999013,5.167603498820938],[119.90819908199086,5.1692920760908265],[119.94419944199444,5.189555003329417],[119.95499954999553,5.214883662377659],[119.96579965799657,5.223326548727073],[119.99459994599948,5.2267037032668355],[120.01980019800197,5.236835166886138],[120.0270002700027,5.238523744156012],[120.0378003780038,5.241900898695789],[120.05220052200525,5.258786671394603],[120.06300063000629,5.260475248664491],[120.07020070200701,5.2570980941247285],[120.07740077400774,5.25540951685484],[120.08820088200883,5.258786671394603],[120.08820088200883,5.263852403204254],[120.0918009180092,5.28242675317297],[120.09900099000993,5.289181062252496],[120.12420124201242,5.306066834951324],[120.13500135001351,5.3178868758405],[120.1458014580146,5.32464118492004],[120.16740167401673,5.333084071269454],[120.18900189001891,5.3449041121586305],[120.19980199802,5.349969843968282],[120.20700207002074,5.348281266698393],[120.2142021420214,5.339838380348979],[120.21780217802177,5.329706916729677],[120.21780217802177,5.277361021363319],[120.22140221402213,5.268918135013905],[120.22860228602286,5.268918135013905],[120.23580235802359,5.272295289553668],[120.24300243002432,5.273983866823556],[120.25020250202505,5.267229557744017]]],[[[158.2917829178292,6.937232477658014],[158.29538295382957,6.9287895913086],[158.3061830618306,6.923723859498949],[158.31338313383134,6.925412436768838],[158.32418324183243,6.930478168578475],[158.33858338583389,6.879820850482005],[158.33858338583389,6.869689386862703],[158.33138331383316,6.86631223232294],[158.30978309783097,6.8680008095928144],[158.3061830618306,6.86631223232294],[158.3061830618306,6.8544921914337635],[158.3169831698317,6.835917841465047],[158.3169831698317,6.824097800575871],[158.31338313383134,6.808900605146931],[158.3061830618306,6.798769141527629],[158.2917829178292,6.795391986987866],[158.24498244982453,6.788637677908341],[158.2269822698227,6.790326255178215],[158.21618216182162,6.800457718797517],[158.1945819458195,6.793703409717978],[158.18018180181804,6.8021462960673915],[158.16938169381694,6.817343491496345],[158.16218162181622,6.827474955115633],[158.16578165781658,6.840983573274698],[158.16578165781658,6.8544921914337635],[158.16218162181622,6.86631223232294],[158.15138151381512,6.876443695942228],[158.1549815498155,6.879820850482005],[158.16218162181622,6.8899523141012935],[158.13338133381336,6.891640891371182],[158.12618126181263,6.906838086800121],[158.13338133381336,6.940609632197777],[158.1405814058141,6.950741095817079],[158.16218162181622,6.950741095817079],[158.17658176581767,6.955806827626716],[158.18018180181804,6.979446909405084],[158.20178201782016,6.9693154457857815],[158.2089820898209,6.965938291246019],[158.21978219782198,6.97100402305567],[158.2269822698227,6.97100402305567],[158.23418234182344,6.967626868515907],[158.24138241382417,6.965938291246019],[158.26658266582666,6.965938291246019],[158.27738277382775,6.965938291246019],[158.27738277382775,6.962561136706256],[158.29538295382957,6.952429673086954],[158.30258302583024,6.9422982094676655],[158.30258302583024,6.940609632197777],[158.2917829178292,6.937232477658014]]],[[[117.08577085770861,8.058447784860121],[117.08217082170825,8.03818485762153],[117.07857078570788,8.029741971272117],[117.08217082170825,8.024676239462465],[117.09297092970928,8.011167621303414],[117.08577085770861,8.004413312223875],[117.07857078570788,7.999347580414224],[117.07137071370715,7.992593271334698],[117.07137071370715,7.977396075905759],[117.08217082170825,7.9419359532382146],[117.08577085770861,7.921673025999624],[117.08577085770861,7.916607294189973],[117.07857078570788,7.906475830570685],[117.07857078570788,7.903098676030922],[117.07857078570788,7.8845243260622055],[117.07857078570788,7.882835748792317],[117.08577085770861,7.876081439712792],[117.08577085770861,7.872704285173029],[117.08217082170825,7.87101570790314],[117.07857078570788,7.869327130633266],[117.07137071370715,7.860884244283852],[117.07137071370715,7.859195667013964],[117.06777067770679,7.849064203394676],[117.0569705697057,7.8355555852356105],[117.03897038970393,7.825424121616308],[117.02457024570248,7.822046967076545],[117.03537035370357,7.8051611943777175],[117.02457024570248,7.798406885298192],[117.01017010170102,7.800095462568066],[116.99576995769957,7.806849771647606],[117.0029700297003,7.823735544346434],[116.99576995769957,7.838932739775373],[116.97416974169744,7.87101570790314],[116.95616956169562,7.921673025999624],[116.95616956169562,7.926738757809275],[116.96336963369635,8.061824939399884],[116.97416974169744,8.055070630320358],[116.97416974169744,8.044939166701056],[116.97416974169744,8.034807703081768],[116.98136981369817,8.028053394002242],[116.99576995769957,8.028053394002242],[117.0029700297003,8.039873434891419],[117.00657006570066,8.055070630320358],[117.01377013770139,8.061824939399884],[117.0569705697057,8.070267825749298],[117.07497074970752,8.070267825749298],[117.08577085770861,8.058447784860121]]],[[[117.32697326973272,8.323554416231701],[117.35577355773557,8.30329148899311],[117.35577355773557,8.274585675405106],[117.34857348573485,8.244191284547227],[117.35937359373594,8.218862625498986],[117.35217352173521,8.207042584609795],[117.34137341373417,8.196911120990507],[117.33057330573308,8.193533966450744],[117.31977319773199,8.198599698260395],[117.29097290972913,8.18509108010133],[117.28017280172804,8.207042584609795],[117.27657276572768,8.242502707277339],[117.26937269372695,8.26783136632558],[117.27657276572768,8.281339984484646],[117.28017280172804,8.311734375342525],[117.2837728377284,8.323554416231701],[117.29457294572944,8.318488684422064],[117.30177301773017,8.318488684422064],[117.3089730897309,8.321865838961827],[117.31977319773199,8.328620148041352],[117.31977319773199,8.32524299350159],[117.31977319773199,8.323554416231701],[117.32337323373235,8.323554416231701],[117.32697326973272,8.323554416231701]]],[[[124.7826478264783,9.199926019300833],[124.79344793447933,9.193171710221293],[124.80424804248042,9.176285937522465],[124.80784807848079,9.156023010283874],[124.80064800648006,9.129005773965758],[124.80424804248042,9.11212000126693],[124.80064800648006,9.096922805837977],[124.78624786247866,9.083414187678926],[124.77904779047793,9.080037033139163],[124.7718477184772,9.076659878599386],[124.76464764647648,9.078348455869275],[124.75744757447575,9.093545651298214],[124.75024750247502,9.093545651298214],[124.73944739447393,9.095234228568103],[124.73224732247326,9.096922805837977],[124.67104671046712,9.125628619425996],[124.64584645846458,9.149268701204349],[124.63504635046354,9.183040246602005],[124.64584645846458,9.218500369269535],[124.67464674646749,9.242140451047902],[124.70704707047071,9.250583337397316],[124.74664746647466,9.238763296508125],[124.76464764647648,9.215123214729772],[124.7718477184772,9.203303173840595],[124.7826478264783,9.199926019300833]]],[[[123.6990369903699,9.164465896633288],[123.70263702637027,9.164465896633288],[123.71343713437136,9.157711587553763],[123.72063720637209,9.149268701204349],[123.71703717037173,9.145891546664586],[123.70263702637027,9.129005773965758],[123.6990369903699,9.123940042156107],[123.68823688236881,9.122251464886219],[123.65943659436596,9.123940042156107],[123.65223652236523,9.122251464886219],[123.64863648636486,9.118874310346456],[123.6450364503645,9.113808578536805],[123.6450364503645,9.10705426945728],[123.64143641436414,9.098611383107865],[123.6306363063631,9.098611383107865],[123.61623616236164,9.103677114917517],[123.59463594635946,9.103677114917517],[123.58023580235806,9.10705426945728],[123.56223562235624,9.113808578536805],[123.47943479434798,9.171220205712828],[123.47223472234725,9.184728823871879],[123.47583475834762,9.19654886476107],[123.50103501035011,9.220188946539423],[123.51903519035193,9.21005748292012],[123.54063540635406,9.213434637459883],[123.5658356583566,9.226943255618949],[123.59463594635946,9.250583337397316],[123.60183601836019,9.255649069206953],[123.60903609036092,9.262403378286493],[123.60903609036092,9.277600573715432],[123.61263612636128,9.289420614604609],[123.62703627036274,9.29448634641426],[123.64143641436414,9.29448634641426],[123.65583655836559,9.289420614604609],[123.66303663036632,9.275911996445544],[123.67743677436778,9.245517605587665],[123.68823688236881,9.238763296508125],[123.70263702637027,9.233697564698488],[123.6990369903699,9.220188946539423],[123.68823688236881,9.206680328380358],[123.68463684636845,9.199926019300833],[123.68463684636845,9.188105978411656],[123.68823688236881,9.181351669332116],[123.6990369903699,9.164465896633288]]],[[[126.16506165061651,9.829765340967072],[126.1758617586176,9.817945300077895],[126.17946179461796,9.801059527379067],[126.17946179461796,9.787550909220002],[126.15426154261542,9.779108022870588],[126.13986139861402,9.765599404711537],[126.12906129061292,9.760533672901886],[126.1218612186122,9.758845095631997],[126.09306093060934,9.760533672901886],[126.05346053460534,9.775730868330825],[126.0426604266043,9.775730868330825],[126.04986049860497,9.755467941092235],[126.03546035460357,9.765599404711537],[126.01746017460175,9.782485177410365],[125.99225992259926,9.816256722808006],[125.99225992259926,9.819633877347783],[125.99585995859962,9.82469960915742],[125.99585995859962,9.829765340967072],[125.99225992259926,9.836519650046611],[125.9886598865989,9.839896804586374],[125.98145981459817,9.839896804586374],[125.97425974259744,9.841585381856248],[125.96705967059671,9.850028268205662],[125.98145981459817,9.850028268205662],[125.99225992259926,9.850028268205662],[126.0030600306003,9.855094000015313],[126.01386013860139,9.865225463634616],[126.0030600306003,9.868602618174378],[125.9886598865989,9.877045504523792],[125.98145981459817,9.88717696814308],[125.98505985059853,9.902374163572034],[126.04626046260466,9.99862306795535],[126.04986049860497,10.008754531574638],[126.04986049860497,10.017197417924052],[126.04626046260466,10.025640304273466],[126.04626046260466,10.035771767892768],[126.05346053460534,10.045903231512057],[126.07146071460716,10.059411849671122],[126.08226082260825,10.056034695131359],[126.12546125461256,9.95640863620828],[126.13626136261365,9.902374163572034],[126.13626136261365,9.890554122682857],[126.13266132661329,9.880422659063555],[126.11826118261183,9.86691404090449],[126.1110611106111,9.856782577285202],[126.12906129061292,9.855094000015313],[126.14346143461438,9.850028268205662],[126.15426154261542,9.841585381856248],[126.16506165061651,9.829765340967072]]],[[[119.95139951399517,10.603133730573347],[119.9729997299973,10.594690844223933],[120.00180001800021,10.581182226064882],[120.01260012600125,10.565985030635929],[119.99099990999912,10.55585356701664],[119.99099990999912,10.549099257937101],[119.99459994599948,10.540656371587687],[119.98379983799839,10.530524907968399],[119.96939969399693,10.52883633069851],[119.95139951399517,10.535590639778036],[119.9477994779948,10.52883633069851],[119.9477994779948,10.52377059888886],[119.94419944199444,10.520393444349097],[119.94419944199444,10.515327712539445],[119.9189991899919,10.547410680667227],[119.90819908199086,10.55585356701664],[119.91179911799117,10.535590639778036],[119.9189991899919,10.517016289809334],[119.9189991899919,10.496753362570743],[119.91539915399153,10.48155616714179],[119.90819908199086,10.478179012602027],[119.8937989379894,10.479867589871915],[119.88659886598867,10.479867589871915],[119.87939879398795,10.469736126252613],[119.87579875798758,10.464670394442976],[119.86859868598685,10.461293239903199],[119.85059850598509,10.459604662633325],[119.83619836198363,10.456227508093562],[119.82179821798218,10.447784621744148],[119.80739807398078,10.44609604447426],[119.78939789397896,10.456227508093562],[119.78219782197823,10.471424703522501],[119.77859778597787,10.49337620803098],[119.77859778597787,10.535590639778036],[119.76779767797677,10.530524907968399],[119.75699756997574,10.533902062508162],[119.75339753397537,10.538967794317813],[119.75339753397537,10.542344948857576],[119.79659796597969,10.572739339715469],[119.80379803798041,10.584559380604645],[119.8289982899829,10.626773812351715],[119.83619836198363,10.636905275971003],[119.84339843398436,10.641971007780654],[119.85059850598509,10.645348162320417],[119.86139861398613,10.643659585050528],[119.89019890198904,10.625085235081826],[119.9189991899919,10.61326519419265],[119.95139951399517,10.603133730573347]]],[[[122.71262712627129,10.734842757624207],[122.73782737827378,10.694316903147012],[122.73782737827378,10.640282430510766],[122.71982719827201,10.584559380604645],[122.68742687426874,10.505196248920157],[122.66582665826661,10.471424703522501],[122.63342633426333,10.444407467204371],[122.59382593825939,10.432587426315195],[122.60462604626048,10.461293239903199],[122.59382593825939,10.459604662633325],[122.57942579425793,10.447784621744148],[122.57222572225726,10.439341735394734],[122.56502565025653,10.435964580854957],[122.54702547025471,10.422455962695906],[122.53622536225362,10.419078808156144],[122.52902529025289,10.422455962695906],[122.52542525425253,10.432587426315195],[122.51822518225185,10.452850353553785],[122.51822518225185,10.457916085363436],[122.52182521825222,10.469736126252613],[122.51822518225185,10.474801858062264],[122.51462514625149,10.476490435332153],[122.50022500225003,10.479867589871915],[122.50022500225003,10.48155616714179],[122.4930249302493,10.483244744411678],[122.48582485824858,10.49337620803098],[122.48222482224821,10.503507671650269],[122.49662496624967,10.50857340345992],[122.50742507425076,10.50857340345992],[122.51822518225185,10.50857340345992],[122.52182521825222,10.513639135269571],[122.52542525425253,10.525459176158748],[122.52902529025289,10.533902062508162],[122.54702547025471,10.540656371587687],[122.55422554225544,10.549099257937101],[122.53622536225362,10.552476412476864],[122.52902529025289,10.569362185175692],[122.52902529025289,10.59131368968417],[122.53622536225362,10.608199462382998],[122.54702547025471,10.621708080542064],[122.56502565025653,10.652102471399942],[122.57582575825757,10.665611089559007],[122.59022590225902,10.674053975908421],[122.60822608226084,10.677431130448184],[122.6226262262623,10.684185439527724],[122.63342633426333,10.723022716735017],[122.64422644226443,10.736531334894082],[122.65862658626588,10.748351375783258],[122.66942669426697,10.761859993942323],[122.69822698226983,10.739908489433844],[122.71262712627129,10.734842757624207]]],[[[123.79983799837999,11.178938579603354],[123.81063810638108,11.16542996144429],[123.8178381783818,11.155298497824987],[123.81423814238144,11.148544188745461],[123.74943749437494,11.141789879665936],[123.74583745837458,11.138412725126173],[123.73503735037349,11.153609920555112],[123.709837098371,11.217775856810647],[123.70623706237063,11.241415938589014],[123.709837098371,11.253235979478191],[123.71703717037173,11.26336744309748],[123.73143731437318,11.283630370336084],[123.74583745837458,11.292073256685498],[123.75303753037531,11.288696102145721],[123.76023760237604,11.278564638526433],[123.78903789037889,11.199201506841945],[123.79983799837999,11.178938579603354]]],[[[119.86859868598685,11.514965456310009],[119.87579875798758,11.479505333642464],[119.86859868598685,11.440668056435172],[119.85419854198545,11.405207933767628],[119.83259832598327,11.378190697449512],[119.82179821798218,11.386633583798925],[119.82179821798218,11.40014220195799],[119.82539825398254,11.413650820117041],[119.83259832598327,11.425470861006218],[119.82179821798218,11.427159438276107],[119.80379803798041,11.432225170085758],[119.79659796597969,11.432225170085758],[119.78939789397896,11.420405129196581],[119.78219782197823,11.411962242847167],[119.77139771397714,11.406896511037516],[119.77139771397714,11.410273665577279],[119.76419764197641,11.420405129196581],[119.75339753397537,11.428848015545995],[119.74619746197465,11.432225170085758],[119.73539735397355,11.437290901895409],[119.73179731797319,11.455865251864111],[119.71739717397173,11.460930983673762],[119.72819728197283,11.47781675637259],[119.74259742597428,11.469373870023176],[119.75339753397537,11.45079952005446],[119.77139771397714,11.440668056435172],[119.78219782197823,11.447422365514697],[119.7857978579786,11.464308138213525],[119.7857978579786,11.494702529071418],[119.79299792997932,11.484571065452116],[119.80379803798041,11.467685292753288],[119.81099810998109,11.460930983673762],[119.81819818198181,11.469373870023176],[119.82179821798218,11.472751024562939],[119.8289982899829,11.469373870023176],[119.83259832598327,11.460930983673762],[119.839798397984,11.476128179102702],[119.84339843398436,11.491325374531655],[119.839798397984,11.503145415420832],[119.82539825398254,11.508211147230483],[119.83619836198363,11.514965456310009],[119.84699846998473,11.52003118811966],[119.85779857798582,11.521719765389534],[119.86859868598685,11.514965456310009]]],[[[120.02340023400234,11.893206764763733],[120.05220052200525,11.871255260255253],[120.07380073800738,11.864500951175728],[120.08460084600847,11.861123796635965],[120.07740077400774,11.857746642096203],[120.04860048600489,11.854369487556426],[120.04860048600489,11.844238023937137],[120.05220052200525,11.830729405778072],[120.0378003780038,11.817220787619007],[120.0378003780038,11.810466478539482],[120.04140041400416,11.808777901269593],[120.05220052200525,11.803712169459956],[120.05220052200525,11.810466478539482],[120.06300063000629,11.807089323999719],[120.07020070200701,11.80033501492018],[120.07740077400774,11.795269283110542],[120.0810008100081,11.788514974031003],[120.05940059400598,11.768252046792412],[120.05220052200525,11.761497737712887],[120.06660066600665,11.741234810474296],[120.04860048600489,11.709151842346515],[120.01260012600125,11.682134606028399],[119.98379983799839,11.68044602875851],[119.96579965799657,11.663560256059682],[119.95499954999553,11.68044602875851],[119.95139951399517,11.709151842346515],[119.95499954999553,11.734480501394756],[119.96939969399693,11.726037615045342],[119.9729997299973,11.720971883235691],[119.97659976599766,11.714217574156166],[119.98379983799839,11.714217574156166],[119.98379983799839,11.729414769585105],[119.98019980199803,11.734480501394756],[119.97659976599766,11.741234810474296],[119.99099990999912,11.754743428633347],[120.00180001800021,11.768252046792412],[120.00540005400057,11.781760664951477],[119.99819998199985,11.795269283110542],[119.99099990999912,11.790203551300891],[119.98379983799839,11.790203551300891],[119.97659976599766,11.795269283110542],[119.9729997299973,11.775006355871938],[119.9585995859959,11.766563469522524],[119.94419944199444,11.766563469522524],[119.92979929799299,11.775006355871938],[119.92259922599226,11.788514974031003],[119.91179911799117,11.817220787619007],[119.90099900999013,11.823975096698547],[119.90819908199086,11.82735225123831],[119.91539915399153,11.835795137587724],[119.92259922599226,11.837483714857598],[119.91179911799117,11.854369487556426],[119.88659886598867,11.878009569334793],[119.87579875798758,11.893206764763733],[119.86859868598685,11.906715382922798],[119.85419854198545,11.953995546479504],[119.86139861398613,11.95230696920963],[119.86859868598685,11.948929814669867],[119.87219872198722,11.947241237399979],[119.87939879398795,11.947241237399979],[119.87939879398795,11.94555266013009],[119.88299882998831,11.943864082860216],[119.88659886598867,11.940486928320453],[119.89019890198904,11.940486928320453],[119.8937989379894,11.942175505590328],[119.89739897398977,11.947241237399979],[119.8937989379894,11.95230696920963],[119.89019890198904,11.953995546479504],[119.8937989379894,11.962438432828918],[119.9045990459905,11.977635628257872],[119.9189991899919,11.981012782797634],[119.92979929799299,11.960749855559044],[119.9621996219962,11.940486928320453],[119.9585995859959,11.930355464701151],[119.97659976599766,11.926978310161388],[120.02340023400234,11.926978310161388],[120.03060030600307,11.9252897328915],[120.03060030600307,11.920224001081849],[120.0270002700027,11.915158269272212],[120.00180001800021,11.91009253746256],[120.00900009000094,11.903338228383035],[120.01980019800197,11.894895342033621],[120.02340023400234,11.893206764763733]]],[[[122.68742687426874,12.403157100268302],[122.68742687426874,12.389648482109251],[122.66942669426697,12.317039659504289],[122.65862658626588,12.305219618615112],[122.64422644226443,12.291711000456047],[122.6262262622626,12.281579536836759],[122.6118261182612,12.276513805027108],[122.60822608226084,12.27989095956687],[122.59022590225902,12.300153886805461],[122.5830258302583,12.305219618615112],[122.56142561425617,12.310285350424763],[122.55422554225544,12.317039659504289],[122.52902529025289,12.359254091251358],[122.51102511025113,12.37782844122006],[122.48942489424894,12.386271327569474],[122.46422464224645,12.387959904839363],[122.44622446224463,12.396402791188777],[122.43182431824317,12.409911409347842],[122.42462424624244,12.42679718204667],[122.42462424624244,12.4622573047142],[122.44622446224463,12.484208809222679],[122.48222482224821,12.492651695572093],[122.59382593825939,12.492651695572093],[122.63342633426333,12.484208809222679],[122.64422644226443,12.479143077413028],[122.64782647826479,12.472388768333502],[122.65502655026552,12.452125841094912],[122.66222662226625,12.438617222935846],[122.66942669426697,12.42679718204667],[122.68742687426874,12.403157100268302]]],[[[123.78903789037889,12.376139863950186],[123.79263792637926,12.355876936711596],[123.79623796237962,12.344056895822419],[123.78903789037889,12.33730258674288],[123.78183781837822,12.340679741282642],[123.7746377463775,12.349122627632056],[123.76743767437677,12.359254091251358],[123.76743767437677,12.369385554870647],[123.7638376383764,12.37782844122006],[123.73143731437318,12.40653425480808],[123.58383583835837,12.624360722622939],[123.58023580235806,12.632803608972353],[123.58023580235806,12.646312227131418],[123.58743587435873,12.646312227131418],[123.59823598235982,12.641246495321766],[123.60183601836019,12.654755113480832],[123.60543605436055,12.673329463449534],[123.60903609036092,12.686838081608599],[123.61983619836201,12.686838081608599],[123.6306363063631,12.678395195259185],[123.6450364503645,12.656443690750706],[123.69543695436954,12.627737877162701],[123.70623706237063,12.626049299892827],[123.70263702637027,12.619294990813287],[123.70263702637027,12.615917836273525],[123.69183691836918,12.612540681733762],[123.70623706237063,12.612540681733762],[123.71703717037173,12.60747494992411],[123.72423724237245,12.600720640844585],[123.73143731437318,12.590589177225283],[123.72783727837282,12.573703404526455],[123.73503735037349,12.553440477287864],[123.74583745837458,12.534866127319162],[123.75303753037531,12.519668931890209],[123.75663756637567,12.502783159191381],[123.77103771037713,12.470700191063614],[123.78183781837822,12.418354295697256],[123.78543785437853,12.413288563887605],[123.78903789037889,12.409911409347842],[123.78903789037889,12.398091368458665],[123.78903789037889,12.376139863950186]]],[[[123.28143281432813,12.864138694946277],[123.28503285032849,12.815169954119682],[123.36063360633608,12.735806822435194],[123.37503375033754,12.693592390688138],[123.34263342633426,12.718921049736366],[123.27423274232746,12.81010422231003],[123.25263252632527,12.83205572681851],[123.23823238232382,12.842187190437812],[123.20223202232023,12.848941499517338],[123.18423184231841,12.85907296313664],[123.10863108631088,12.923238899392175],[123.10143101431015,12.93674751755124],[123.09783097830979,12.938436094821128],[123.07983079830797,12.95701044478983],[123.07623076230766,12.962076176599481],[123.06903069030693,12.965453331139244],[123.06543065430657,12.972207640218784],[123.06543065430657,12.980650526568184],[123.0618306183062,12.989093412917597],[123.03663036630365,13.004290608346551],[122.97542975429758,13.01948780377549],[122.95022950229503,13.043127885553844],[122.9430294302943,13.098850935459978],[122.9430294302943,13.110670976349155],[122.95742957429576,13.120802439968458],[122.97542975429758,13.122491017238332],[122.98982989829898,13.129245326317871],[122.99342993429934,13.152885408096225],[123.00423004230043,13.149508253556462],[123.01863018630189,13.14444252174681],[123.04023040230402,13.127556749047983],[123.05103051030511,13.119113862698569],[123.05823058230584,13.107293821809392],[123.0726307263073,13.085342317300913],[123.09423094230942,13.043127885553844],[123.11943119431197,13.024553535585142],[123.12303123031234,13.01948780377549],[123.1266312663127,13.007667762886314],[123.1410314103141,12.98402768110796],[123.1410314103141,12.972207640218784],[123.14463144631446,12.968830485679007],[123.15903159031592,12.93674751755124],[123.17703177031774,12.9215503221223],[123.20223202232023,12.906353126693347],[123.22743227432278,12.897910240343933],[123.24543245432454,12.906353126693347],[123.26343263432636,12.897910240343933],[123.26703267032673,12.887778776724645],[123.27423274232746,12.877647313105342],[123.28143281432813,12.864138694946277]]],[[[120.26100261002614,13.711804484427404],[120.26820268202681,13.706738752617753],[120.27540275402754,13.706738752617753],[120.28260282602827,13.701673020808101],[120.28620286202863,13.691541557188813],[120.26820268202681,13.678032939029748],[120.26460264602645,13.672967207220097],[120.25740257402578,13.68141009356951],[120.25020250202505,13.693230134458688],[120.24300243002432,13.70336159807799],[120.23220232202323,13.708427329887627],[120.21780217802177,13.711804484427404],[120.2142021420214,13.71855879350693],[120.2106021060211,13.727001679856343],[120.20340203402037,13.735444566205757],[120.19260192601928,13.742198875285283],[120.18180181801819,13.747264607094934],[120.1710017100171,13.748953184364822],[120.16020160201606,13.748953184364822],[120.15300153001533,13.752330338904585],[120.14220142201424,13.767527534333524],[120.10980109801102,13.777658997952827],[120.0918009180092,13.794544770651655],[120.08460084600847,13.818184852430008],[120.0810008100081,13.841824934208361],[120.0810008100081,13.853644975097552],[120.08460084600847,13.860399284177078],[120.0918009180092,13.865465015986729],[120.10260102601029,13.865465015986729],[120.11700117001169,13.860399284177078],[120.14220142201424,13.848579243287901],[120.16380163801637,13.835070625128836],[120.16740167401673,13.824939161509533],[120.18180181801819,13.82831631604931],[120.20340203402037,13.824939161509533],[120.22140221402213,13.814807697890245],[120.23940239402395,13.804676234270943],[120.27180271802717,13.752330338904585],[120.26820268202681,13.740510298015408],[120.25740257402578,13.733755988935869],[120.25380253802541,13.72362452531658],[120.26100261002614,13.711804484427404]]],[[[122.10422104221044,14.101865833770304],[122.15102151021512,14.0731600201823],[122.1726217262173,14.05289709294371],[122.18342183421834,14.03094558843523],[122.17622176221761,14.007305506656877],[122.15822158221584,14.007305506656877],[122.13662136621366,14.019125547546054],[122.10062100621008,14.049519938403932],[122.03222032220322,14.091734370151002],[121.99261992619927,14.127194492818546],[121.98181981819818,14.132260224628197],[121.96381963819641,14.142391688247486],[121.94581945819459,14.166031770025839],[121.93141931419314,14.19136042907408],[121.92421924219241,14.208246201772909],[121.92781927819277,14.221754819931974],[121.9350193501935,14.230197706281388],[121.94581945819459,14.231886283551276],[121.95661956619568,14.230197706281388],[121.96381963819641,14.226820551741625],[121.96741967419678,14.221754819931974],[121.97461974619745,14.209934779042797],[122.10422104221044,14.101865833770304]]],[[[122.00702007020072,15.010320404967189],[122.02862028620285,15.008631827697315],[122.04662046620467,15.0001889413479],[122.05742057420576,14.983303168649073],[122.0538205382054,14.963040241410482],[122.03222032220322,14.988368900458724],[122.02142021420218,14.993434632268361],[122.00702007020072,14.990057477728598],[121.99621996219963,14.97992601410931],[121.99261992619927,14.969794550490008],[121.99621996219963,14.963040241410482],[122.00702007020072,14.969794550490008],[122.01422014220145,14.944465891441766],[122.01422014220145,14.93264585055259],[122.00342003420036,14.925891541473064],[121.97101971019714,14.905628614234473],[121.96741967419678,14.902251459694696],[121.97101971019714,14.89718572788506],[121.97101971019714,14.861725605217515],[121.97461974619745,14.851594141598227],[121.97821978219781,14.838085523439162],[121.99621996219963,14.841462677978924],[122.00702007020072,14.824576905280097],[122.01422014220145,14.799248246231855],[122.02502025020249,14.736770887246195],[122.02502025020249,14.72326226908713],[122.00342003420036,14.674293528260534],[121.98541985419854,14.657407755561707],[121.96021960219605,14.64558771467253],[121.93861938619386,14.640521982862879],[121.91701917019174,14.648964869212293],[121.90981909819101,14.670916373720772],[121.90981909819101,14.697933610038888],[121.91701917019174,14.721573691817255],[121.9350193501935,14.724950846357018],[121.9350193501935,14.7654767008342],[121.9206192061921,14.811068287121032],[121.89901899018992,14.831331214359622],[121.88461884618846,14.836396946169273],[121.87741877418773,14.84821698705845],[121.8810188101881,14.883677109725994],[121.87741877418773,14.893808573345282],[121.8558185581856,14.927580118742938],[121.84861848618488,14.936023005092352],[121.83061830618306,14.941088736902003],[121.82341823418233,14.941088736902003],[121.81981819818202,14.946154468711654],[121.82701827018269,15.012008982237077],[121.83421834218342,15.03564906401543],[121.84501845018451,15.045780527634733],[121.87381873818737,15.027206177666017],[121.89541895418955,15.023829023126254],[121.90261902619028,15.04240337309497],[121.90981909819101,15.050846259444384],[121.92781927819277,15.052534836714258],[121.97101971019714,15.047469104904607],[121.98541985419854,15.037337641285319],[121.99261992619927,15.04240337309497],[122.00342003420036,15.039026218555193],[122.01062010620109,15.027206177666017],[122.00702007020072,15.010320404967189]]],[[[121.97101971019714,18.98523129827106],[121.98541985419854,18.975099834651772],[121.99261992619927,18.961591216492707],[121.9890198901989,18.94977117560353],[121.96381963819641,18.937951134714353],[121.94221942219423,18.90924532112635],[121.93141931419314,18.895736702967284],[121.89541895418955,18.86703088937928],[121.8810188101881,18.85014511668045],[121.87381873818737,18.82988218944186],[121.8666186661867,18.821439303092447],[121.84861848618488,18.82481645763221],[121.83421834218342,18.834947921251512],[121.84141841418415,18.848456539410563],[121.84141841418415,18.868719466649154],[121.86301863018633,18.883916662078107],[121.87381873818737,18.900802434776935],[121.85221852218524,18.9227539392854],[121.86301863018633,18.93457398017459],[121.87021870218706,18.95145975287342],[121.87381873818737,18.96496837103247],[121.87021870218706,18.97172268011201],[121.87741877418773,18.975099834651772],[121.89181891818919,18.99705133916025],[121.90261902619028,19.005494225509665],[121.90621906219064,19.003805648239776],[121.91341913419137,19.000428493700014],[121.9206192061921,18.998739916430125],[121.92421924219241,19.002117070969888],[121.92781927819277,19.003805648239776],[121.94221942219423,19.010559957319302],[121.94581945819459,19.01224853458919],[121.95661956619568,19.008871380049428],[121.96021960219605,19.000428493700014],[121.96381963819641,18.9919856073506],[121.97101971019714,18.98523129827106]]],[[[121.52461524615245,19.32125817497773],[121.5390153901539,19.306060979548775],[121.5390153901539,19.302683825009012],[121.54261542615427,19.29930667046925],[121.54261542615427,19.295929515929487],[121.54621546215463,19.290863784119836],[121.54621546215463,19.28242089777042],[121.54261542615427,19.27904374323066],[121.53541535415354,19.27904374323066],[121.52461524615245,19.27904374323066],[121.51741517415178,19.27904374323066],[121.51381513815141,19.273978011421008],[121.51021510215105,19.267223702341482],[121.50661506615069,19.26215797053183],[121.49941499414996,19.25878081599207],[121.47061470614705,19.268912279611357],[121.46341463414637,19.275666588690896],[121.42741427414273,19.295929515929487],[121.420214202142,19.29761809319936],[121.41301413014133,19.29761809319936],[121.4058140581406,19.29930667046925],[121.39861398613988,19.302683825009012],[121.39501395013951,19.311126711358426],[121.38061380613806,19.33476679313678],[121.34821348213484,19.370226915804324],[121.3518135181352,19.375292647613975],[121.36621366213666,19.378669802153738],[121.38061380613806,19.38373553396339],[121.39501395013951,19.40399846120198],[121.45261452614528,19.38373553396339],[121.47061470614705,19.3820469566935],[121.48861488614887,19.385424111233263],[121.50301503015032,19.392178420312803],[121.51741517415178,19.393866997582677],[121.52461524615245,19.3820469566935],[121.52461524615245,19.33476679313678],[121.52461524615245,19.331389638597017],[121.52461524615245,19.328012484057254],[121.52461524615245,19.32125817497773]]],[[[53.03033030330303,39.060726459906476],[53.041130411304124,39.08098938714507],[53.059130591305916,39.09449800530412],[53.08073080730807,39.097875159843895],[53.0879308793088,39.091120850764355],[53.0879308793088,39.08774369622459],[53.0879308793088,39.08267796441494],[53.059130591305916,39.067480768986],[53.05553055530555,39.02695491450882],[53.066330663306644,38.94759178282433],[53.08073080730807,38.86316291933019],[53.10233102331023,38.78211121037583],[53.09873098730989,38.768602592216766],[53.09873098730989,38.763536860407115],[53.10233102331023,38.7550939740577],[53.09513095130953,38.7550939740577],[53.091530915309164,38.778734055836054],[53.06273062730628,38.86485149660008],[53.04833048330485,38.8918687329182],[53.041130411304124,38.90706592834714],[53.03753037530376,38.91719739196644],[53.041130411304124,38.94421462828457],[53.03753037530376,38.9695432873328],[53.03033030330303,39.01682345088952],[53.02673026730267,39.038774955398],[53.03033030330303,39.060726459906476]]],[[[50.1719017190172,44.83059499109564],[50.143101431014315,44.817086372936586],[50.11070110701107,44.82046352747636],[50.07830078300785,44.833972145635414],[50.06390063900639,44.84410360925472],[50.06030060300603,44.852546495604116],[50.05670056700569,44.86436653649329],[50.05310053100533,44.88125230919212],[50.042300423004235,44.8947609273512],[50.00270002700029,44.92177816366933],[49.98469984699847,44.94710682271756],[49.98469984699847,44.96736974995616],[50.042300423004235,45.056864345259925],[50.05310053100533,45.06530723160935],[50.067500675006755,45.07206154068888],[50.11430114301143,45.08050442703828],[50.11070110701107,45.061930077069576],[50.05310053100533,45.03828999529122],[50.03870038700387,45.01464991351287],[50.03510035100351,45.00114129535379],[50.02070020700208,44.97581263630556],[50.017100171001715,44.96061544087661],[50.02070020700208,44.94372966817778],[50.03150031500317,44.93022105001873],[50.042300423004235,44.92515531820908],[50.05670056700569,44.928532472748856],[50.05670056700569,44.9032038137006],[50.06030060300603,44.87956373192225],[50.07470074700748,44.860989381953544],[50.09630096300964,44.85423507287402],[50.10710107101073,44.852546495604116],[50.117901179011795,44.84579218652459],[50.125101251012524,44.84072645471494],[50.143101431014315,44.84072645471494],[50.175501755017564,44.85761222741377],[50.18990189901899,44.860989381953544],[50.1719017190172,44.83059499109564]]],[[[-79.97659976599766,56.20147432648574],[-80.03420034200342,56.18965428559656],[-80.0630006300063,56.187965708326686],[-80.08820088200882,56.191342862866435],[-80.10260102601026,56.19809717194599],[-80.10620106201061,56.19978574921586],[-80.10260102601026,56.20654005829539],[-80.0990009900099,56.23355729461352],[-80.0990009900099,56.240311603693044],[-80.05940059400594,56.272394571820826],[-80.05220052200522,56.28421461271],[-80.05940059400594,56.29772323086905],[-80.05940059400594,56.30447753994858],[-80.03060030600305,56.31967473537753],[-80.00180001800018,56.32642904445706],[-79.89019890198901,56.329806198996835],[-79.87219872198722,56.334871930806486],[-79.86139861398614,56.34500339442576],[-79.86499864998649,56.35513485804506],[-79.87939879398793,56.36864347620414],[-79.8829988299883,56.37708636255354],[-79.87579875798758,56.38046351709332],[-79.86859868598685,56.38552924890297],[-79.86139861398614,56.38552924890297],[-79.83259832598326,56.378774939823415],[-79.7749977499775,56.36695489893424],[-79.74619746197462,56.365266321664365],[-79.72819728197281,56.36864347620414],[-79.69939699396994,56.378774939823415],[-79.68859688596886,56.38046351709332],[-79.67419674196742,56.38384067163307],[-79.65259652596525,56.40410359887167],[-79.6309963099631,56.41592363976085],[-79.61659616596165,56.43449798972955],[-79.59859598595986,56.454760916968155],[-79.5949959499595,56.47333526693686],[-79.58779587795878,56.49359819417546],[-79.57699576995769,56.51048396687429],[-79.56259562595626,56.522304007763466],[-79.54459544595446,56.530746894112866],[-79.54459544595446,56.522304007763466],[-79.54819548195482,56.51554969868391],[-79.55179551795517,56.50879538960439],[-79.5589955899559,56.503729657794736],[-79.56979569795698,56.46995811239708],[-79.59139591395913,56.4294322579199],[-79.64179641796417,56.365266321664365],[-79.67779677796777,56.33149477626671],[-79.71739717397173,56.30954327175823],[-79.97659976599766,56.20147432648574]]],[[[-80.10980109801098,59.76437236593824],[-80.0990009900099,59.77619240682742],[-80.08100081000809,59.78970102498647],[-80.07380073800738,59.80152106587565],[-80.09540095400953,59.813341106764824],[-80.0990009900099,59.80152106587565],[-80.10620106201061,59.796455334065996],[-80.11700117001169,59.79138960225637],[-80.12420124201242,59.782946715906945],[-80.13140131401313,59.77956956136717],[-80.13860138601386,59.777880984097294],[-80.14580145801457,59.77619240682742],[-80.14940149401494,59.76774952047799],[-80.14940149401494,59.75930663412859],[-80.14940149401494,59.752552325049066],[-80.1530015300153,59.747486593239415],[-80.16380163801638,59.74410943869964],[-80.17820178201782,59.74917517050929],[-80.17820178201782,59.75761805685872],[-80.12780127801278,59.8268497249239],[-80.10980109801098,59.84373549762273],[-80.0990009900099,59.85048980670226],[-80.06660066600665,59.858932693051656],[-80.04140041400413,59.87750704302039],[-80.03060030600305,59.88257277483004],[-80.02340023400234,59.88257277483004],[-80.01260012600126,59.88763850663966],[-80.00540005400053,59.88932708390956],[-80.00180001800018,59.88594992936979],[-79.99099990999909,59.872441311210736],[-79.98379983799838,59.86906415667096],[-79.9729997299973,59.872441311210736],[-79.96219962199622,59.87919562029026],[-79.94779947799478,59.88257277483004],[-79.92979929799297,59.87412988848061],[-79.9189991899919,59.867375579401084],[-79.90819908199082,59.86230984759143],[-79.89739897398974,59.86062127032156],[-79.8829988299883,59.86062127032156],[-79.89379893798937,59.845424074892605],[-79.90459904599045,59.83360403400343],[-79.9369993699937,59.813341106764824],[-79.95859958599586,59.80320964314555],[-79.96939969399693,59.80152106587565],[-79.98019980199801,59.79983248860577],[-79.99099990999909,59.796455334065996],[-80.01980019800197,59.77281525228764],[-80.06660066600665,59.75930663412859],[-80.09540095400953,59.75761805685872],[-80.10980109801098,59.76437236593824]]],[[[-18.5491854918549,76.05407728849664],[-18.552785527855264,76.04225724760744],[-18.5491854918549,76.01524001128934],[-18.5491854918549,75.99835423859051],[-18.56718567185672,75.9696484250025],[-18.570785707857084,75.95613980684342],[-18.5491854918549,75.94431976595425],[-18.56718567185672,75.92574541598555],[-18.59958599585994,75.90379391147707],[-18.628386283862824,75.89197387058789],[-18.653586535865344,75.90379391147707],[-18.653586535865344,75.9206796841759],[-18.639186391863916,75.9409426114145],[-18.628386283862824,75.96120553865308],[-18.635586355863552,75.98146846589168],[-18.86958869588696,76.19422920189689],[-18.90198901989018,76.23813221091385],[-18.90198901989018,76.27021517904163],[-18.891188911889117,76.2904781062802],[-18.90198901989018,76.30736387897903],[-18.948789487894885,76.33606969256704],[-19.107191071910705,76.47284445142753],[-19.132391323913225,76.51337030590471],[-19.125191251912526,76.5555847376518],[-19.09639096390964,76.5826019739699],[-19.056790567905665,76.5944220148591],[-19.013590135901353,76.59611059212898],[-18.815588155881557,76.5842905512398],[-18.761587615876152,76.58935628304945],[-18.76878768787688,76.59611059212898],[-18.779587795877944,76.59948774666873],[-18.786787867878672,76.6028649012085],[-18.797587975879765,76.6028649012085],[-18.786787867878672,76.60793063301816],[-18.78318783187831,76.60961921028803],[-18.78318783187831,76.61637351936756],[-18.93438934389343,76.62312782844711],[-18.98478984789847,76.61637351936756],[-18.98478984789847,76.62650498298686],[-18.999189991899925,76.63663644660616],[-19.017190171901717,76.64845648749534],[-19.031590315903145,76.65689937384477],[-19.03519035190351,76.67209656927369],[-19.038790387903873,76.69067091924242],[-19.0459904599046,76.70586811467135],[-19.081990819908185,76.71937673283043],[-19.07119071190712,76.73457392825935],[-19.049590495904965,76.7497711236883],[-19.031590315903145,76.75990258730761],[-19.00279002790026,76.76496831911726],[-18.973989739897405,76.76665689638713],[-18.948789487894885,76.76159116457748],[-18.919989199892,76.75314827822805],[-18.898388983889845,76.739639660069],[-18.72558725587254,76.69067091924242],[-18.70038700387002,76.67716230108334],[-18.6751867518675,76.65521079657486],[-18.660786607866072,76.63325929206638],[-18.660786607866072,76.60793063301816],[-18.671586715867164,76.58091339670003],[-18.714787147871476,76.53869896495297],[-18.721987219872204,76.5268789240638],[-18.721987219872204,76.51168172863484],[-18.714787147871476,76.49986168774566],[-18.707587075870748,76.49141880139624],[-18.70038700387002,76.47791018323719],[-18.703987039870384,76.4559586787287],[-18.707587075870748,76.43231859695035],[-18.711187111871112,76.408678515172],[-18.707587075870748,76.38334985612374],[-18.70038700387002,76.36984123796469],[-18.70038700387002,76.34282400164656],[-18.69318693186932,76.32762680621764],[-18.685986859868592,76.31411818805856],[-18.6751867518675,76.29892099262963],[-18.61758617586176,76.24995225180302],[-18.606786067860668,76.23475505637407],[-18.606786067860668,76.21786928367524],[-18.61758617586176,76.20267208824632],[-18.639186391863916,76.19254062462701],[-18.653586535865344,76.18072058373784],[-18.646386463864644,76.16383481103901],[-18.621186211862124,76.1249975338317],[-18.610386103861032,76.11148891567265],[-18.570785707857084,76.08447167935452],[-18.56718567185672,76.0760287930051],[-18.563585635856356,76.0675859066557],[-18.5491854918549,76.05407728849664]]],[[[-18.00558005580055,77.63627419037672],[-18.228782287822867,77.6379627676466],[-18.268382683826843,77.6565371176153],[-18.228782287822867,77.66498000396473],[-18.135181351813515,77.72914594022026],[-17.994779947799486,77.77136037196735],[-17.973179731797302,77.78993472193605],[-17.965979659796602,77.8237062673337],[-17.951579515795146,77.84396919457228],[-17.926379263792626,77.85747781273136],[-17.890378903789042,77.86760927635063],[-17.861578615786158,77.87267500816029],[-17.724777247772465,77.88111789450971],[-17.70317703177031,77.87942931723984],[-17.699576995769945,77.87098643089041],[-17.634776347763477,77.82708342187345],[-17.616776167761685,77.80682049463488],[-17.634776347763477,77.77980325831675],[-17.70317703177031,77.74434313564922],[-17.717577175771765,77.73252309476004],[-17.74637746377462,77.69368581755273],[-17.757177571775713,77.68186577666356],[-17.807578075780754,77.65484854034543],[-17.875978759787586,77.64302849945625],[-18.00558005580055,77.63627419037672]]],[[[-19.1719917199172,77.99594114886173],[-19.125191251912526,78.02464696244974],[-19.107191071910705,78.04322131241844],[-19.114391143911433,78.06179566238717],[-19.164791647916473,78.0769928578161],[-19.233192331923306,78.08543574416552],[-19.294392943929438,78.10401009413422],[-19.319593195931958,78.1445359486114],[-19.297992979929802,78.1445359486114],[-19.225992259922606,78.11920728956318],[-19.1791917919179,78.11076440321375],[-19.15399153991538,78.10907582594388],[-18.948789487894885,78.12765017591258],[-18.87678876788766,78.1445359486114],[-18.85878858788587,78.1445359486114],[-18.86958869588696,78.12765017591258],[-18.887588875888753,78.1158301350234],[-18.90918909189091,78.1056986714041],[-18.9271892718927,78.09387863051492],[-18.930789307893065,78.0769928578161],[-18.9271892718927,78.05672993057752],[-18.912789127891273,78.04322131241844],[-18.89478894788948,78.04322131241844],[-19.11079110791107,77.9317752126062],[-19.15399153991538,77.91995517171702],[-19.1719917199172,77.91826659444712],[-19.189991899918994,77.91995517171702],[-19.200792007920086,77.92670948079655],[-19.20439204392042,77.94359525349537],[-19.200792007920086,77.95879244892433],[-19.193591935919358,77.97230106708338],[-19.182791827918265,77.98580968524243],[-19.1719917199172,77.99594114886173]]],[[[-18.916389163891637,78.44341412538066],[-18.891188911889117,78.40626542544322],[-18.891188911889117,78.39444538455405],[-18.90198901989018,78.39275680728417],[-18.912789127891273,78.3893796527444],[-18.9271892718927,78.38431392093474],[-18.93438934389343,78.3792481891251],[-18.90918909189091,78.35223095280699],[-18.905589055890545,78.34209948918769],[-18.923589235892365,78.33365660283826],[-18.941589415894157,78.33196802556839],[-19.02079020790208,78.33365660283826],[-19.038790387903873,78.33027944829851],[-19.056790567905665,78.32352513921899],[-19.063990639906393,78.30832794379003],[-19.056790567905665,78.29313074836108],[-19.038790387903873,78.2813107074719],[-18.898388983889845,78.2424734302646],[-18.880388803888025,78.23234196664532],[-18.880388803888025,78.22052192575615],[-18.89478894788948,78.21039046213684],[-18.912789127891273,78.20532473032719],[-19.00279002790026,78.19519326670789],[-19.049590495904965,78.18506180308859],[-19.074790747907485,78.18506180308859],[-19.089190891908913,78.19857042124767],[-19.272792727927282,78.23065338937542],[-19.26199261992619,78.2441620075345],[-19.258392583925826,78.25767062569355],[-19.26199261992619,78.2711792438526],[-19.265592655926554,78.28806501655143],[-19.276392763927646,78.30663936652016],[-19.3051930519305,78.33365660283826],[-19.315993159931594,78.34716522099734],[-19.290792907929074,78.36742814823592],[-19.258392583925826,78.38431392093474],[-18.937989379893793,78.47549709350841],[-18.9271892718927,78.47380851623853],[-18.923589235892365,78.46705420715901],[-18.919989199892,78.46029989807948],[-18.916389163891637,78.44341412538066]]],[[[-19.459994599945986,81.95396626946678],[-19.59679596795968,81.99111496940421],[-19.636396363963627,82.01475505118256],[-19.650796507965083,82.02995224661149],[-19.661596615966147,82.05190375111997],[-19.668796687966875,82.07554383289835],[-19.657996579965783,82.09411818286705],[-19.63999639996399,82.10256106921645],[-19.524795247952483,82.1177582646454],[-19.409594095940946,82.11944684191528],[-19.36279362793627,82.11269253283575],[-19.31239312393123,82.0991839146767],[-19.26199261992619,82.09074102832727],[-19.092790927909277,82.04346086477057],[-19.067590675906757,82.02150936026209],[-19.049590495904965,81.99618070121386],[-19.006390063900625,81.98267208305478],[-18.919989199892,81.96747488762583],[-18.678786787867864,81.86953740597264],[-18.64998649986498,81.84758590146416],[-18.631986319863188,81.82056866514606],[-18.689586895868956,81.8138143560665],[-19.0459904599046,81.8256343969557],[-19.459994599945986,81.95396626946678]]],[[[-32.14292142921428,-79.66145280827618],[-32.1681216812168,-79.6698956946256],[-32.495724957249564,-79.67327284916536],[-32.60012600126001,-79.66145280827618],[-32.52812528125281,-79.65469849919666],[-32.4849248492485,-79.64456703557735],[-32.495724957249564,-79.64118988103759],[-32.520925209252084,-79.64118988103759],[-32.5569255692557,-79.62768126287853],[-32.564125641256396,-79.62768126287853],[-32.538925389253876,-79.62261553106889],[-32.488524885248836,-79.62599268560865],[-32.463324633246316,-79.62430410833876],[-32.44892448924489,-79.61923837652911],[-32.44892448924489,-79.61417264471947],[-32.44892448924489,-79.60741833563993],[-32.445324453244524,-79.59390971748087],[-32.44172441724416,-79.5905325629411],[-32.430924309243096,-79.58208967659169],[-32.42732427324273,-79.57871252205193],[-32.430924309243096,-79.56689248116275],[-32.438124381243796,-79.5618267493531],[-32.445324453244524,-79.55676101754345],[-32.456124561245616,-79.55000670846393],[-32.42372423724237,-79.54831813119404],[-32.3589235892359,-79.53143235849521],[-32.2941229412294,-79.52130089487592],[-32.22212222122221,-79.51961231760603],[-31.934119341193394,-79.56351532662299],[-31.91251912519124,-79.57364679024228],[-31.92331923319233,-79.59897544929052],[-31.96291962919628,-79.6107954901797],[-32.18972189721896,-79.620926953799],[-32.204122041220415,-79.62768126287853],[-32.20772207722078,-79.64287845830748],[-32.20052200522005,-79.65638707646653],[-32.18252182521826,-79.66314138554607],[-32.14292142921428,-79.66145280827618]]],[[[-73.88533885338853,-73.1199044647506],[-73.69813698136981,-73.09964153751201],[-73.65133651336512,-73.1013301147819],[-73.60093600936008,-73.10977300113132],[-73.53973539735397,-73.1300359283699],[-73.52173521735217,-73.1300359283699],[-73.6729367293673,-73.20433332824474],[-73.69093690936909,-73.21615336913392],[-73.70533705337053,-73.23641629637251],[-73.70173701737016,-73.2381048736424],[-73.69453694536945,-73.24823633726169],[-73.68733687336874,-73.26174495542075],[-73.68733687336874,-73.27356499630993],[-73.69453694536945,-73.28200788265934],[-73.70893708937089,-73.29213934627865],[-73.75933759337593,-73.31409085078712],[-73.83853838538386,-73.33435377802572],[-73.89253892538925,-73.36474816888361],[-73.91053910539105,-73.37319105523301],[-73.93213932139321,-73.37319105523301],[-73.95733957339573,-73.36981390069325],[-73.97893978939788,-73.36812532342337],[-74.00054000540005,-73.37994536431255],[-74.00054000540005,-73.39851971428125],[-74.0149401494015,-73.40696260063066],[-74.03654036540365,-73.40696260063066],[-74.05454054540544,-73.40189686882103],[-74.06174061740617,-73.39176540520172],[-74.06534065340654,-73.37994536431255],[-74.06894068940689,-73.36643674615348],[-74.06174061740617,-73.35292812799442],[-74.14454144541445,-73.32422231440641],[-74.15894158941589,-73.30733654170758],[-74.15894158941589,-73.30058223262806],[-74.15534155341552,-73.29551650081841],[-74.15174151741518,-73.28876219173888],[-74.15174151741518,-73.27863072811958],[-74.130141301413,-73.27187641904005],[-74.0041400414004,-73.25161349180146],[-74.01854018540185,-73.24823633726169],[-74.04734047340473,-73.22628483275322],[-74.06534065340654,-73.21953052367368],[-74.04734047340473,-73.21784194640381],[-73.98973989739898,-73.21784194640381],[-73.91053910539105,-73.20602190551463],[-73.8889388893889,-73.19589044189533],[-73.87453874538745,-73.1891361328158],[-73.86733867338673,-73.18238182373626],[-73.86733867338673,-73.16887320557721],[-73.87453874538745,-73.16211889649767],[-73.88533885338853,-73.15705316468802],[-73.89973899738997,-73.14861027833862],[-73.88533885338853,-73.1199044647506]]],[[[-104.68724687246872,-73.09626438297225],[-104.63684636846368,-73.11652731021084],[-104.590045900459,-73.1300359283699],[-104.5540455404554,-73.14523312379885],[-104.53244532445324,-73.17393893738685],[-104.62964629646297,-73.21108763732428],[-104.74844748447484,-73.21784194640381],[-104.860048600486,-73.20602190551463],[-104.94644946449465,-73.18575897827603],[-105.00045000450004,-73.16380747376756],[-105.03645036450364,-73.1401673919892],[-105.09765097650977,-73.08613291935296],[-105.11925119251192,-73.0624928375746],[-105.14085140851408,-73.02027840582753],[-105.15525155251552,-73.00508121039859],[-105.06165061650616,-72.9544238923021],[-105.01485014850148,-72.94091527414304],[-104.95724957249573,-72.94260385141293],[-104.93564935649356,-72.95104673776234],[-104.88164881648817,-72.98988401496965],[-104.68724687246872,-73.09626438297225]]],[[[-94.4919449194492,-72.52214811121213],[-94.48834488344883,-72.53396815210131],[-94.48834488344883,-72.53903388391096],[-94.48474484744847,-72.5457881929905],[-94.40914409144091,-72.59644551108697],[-94.39834398343983,-72.60657697470627],[-94.50634506345064,-72.63190563375451],[-94.85194851948519,-72.65554571553287],[-95.20115201152011,-72.67749722004135],[-95.27315273152732,-72.6521685609931],[-95.26955269552695,-72.63528278829428],[-95.24435244352443,-72.61501986105569],[-95.19755197551976,-72.58800262473756],[-95.16515165151651,-72.58124831565803],[-94.80874808748086,-72.53396815210131],[-94.5819458194582,-72.46811363857589],[-94.54954549545495,-72.46642506130601],[-94.52074520745207,-72.46980221584577],[-94.50274502745027,-72.47993367946506],[-94.49554495544955,-72.49175372035424],[-94.4919449194492,-72.52214811121213]]],[[[-16.18756187561874,-72.58969120200744],[-16.129961299613,-72.63190563375451],[-16.108361083610816,-72.65892287007263],[-16.101161011610117,-72.68762868366063],[-16.198361983619833,-72.70958018816911],[-16.29556295562955,-72.70789161089922],[-16.3819638196382,-72.68931726093052],[-16.443164431644306,-72.66398860188228],[-16.486364863648618,-72.62177417013521],[-16.518765187651866,-72.56942827476885],[-16.5151651516515,-72.51877095667237],[-16.47196471964719,-72.47993367946506],[-16.410764107641057,-72.45629359768671],[-16.392763927639265,-72.45291644314695],[-16.36396363963638,-72.45460502041682],[-16.33876338763386,-72.46135932949636],[-16.31356313563134,-72.46980221584577],[-16.291962919629185,-72.48499941127471],[-16.18756187561874,-72.58969120200744]]],[[[-12.659526595265959,-72.05947793926427],[-12.565925659256578,-72.10169237101134],[-12.522725227252266,-72.12870960732947],[-12.490324903249018,-72.16754688453676],[-12.565925659256578,-72.19625269812477],[-12.65232652326523,-72.19962985266454],[-12.742327423274219,-72.18443265723559],[-12.879128791287911,-72.14390680275841],[-12.922329223292223,-72.12195529824993],[-12.951129511295107,-72.09324948466192],[-12.9691296912969,-72.0561007847245],[-12.897128971289703,-72.00206631208826],[-12.81072810728108,-72.00037773481839],[-12.724327243272427,-72.0273949711365],[-12.659526595265959,-72.05947793926427]]],[[[-60.52920529205292,-71.0513973091443],[-60.61920619206191,-71.06321735003348],[-60.7560075600756,-71.04970873187442],[-60.88920889208892,-71.01931434101652],[-60.95760957609576,-70.97709990926947],[-60.91440914409144,-70.94163978660193],[-60.813608136081356,-70.91631112755368],[-60.69120691206912,-70.90955681847416],[-60.586805868058676,-70.9247540139031],[-60.540005400054,-70.9534598274911],[-60.51480514805148,-70.99229710469841],[-60.51480514805148,-71.02775722736595],[-60.52920529205292,-71.0513973091443]]],[[[-60.435604356043555,-70.59717002354586],[-60.44640446404463,-70.6224986825941],[-60.46800468004679,-70.63938445529293],[-60.54360543605435,-70.6714674234207],[-60.71640716407164,-70.710304700628],[-60.813608136081356,-70.71537043243765],[-60.85680856808568,-70.70861612335811],[-60.88560885608855,-70.7001732370087],[-60.90720907209072,-70.68666461884965],[-60.98280982809828,-70.62081010532421],[-60.98280982809828,-70.61067864170492],[-60.975609756097555,-70.59717002354586],[-60.96840968409684,-70.58534998265668],[-60.96480964809648,-70.58366140538679],[-60.97200972009719,-70.57015278722774],[-60.97200972009719,-70.55833274633855],[-60.96840968409684,-70.54820128271926],[-60.9540095400954,-70.53806981909996],[-60.900009000089995,-70.52118404640113],[-60.83520835208351,-70.51274116005172],[-60.56880568805687,-70.50767542824208],[-60.5040050400504,-70.51780689186137],[-60.45360453604536,-70.54144697363972],[-60.44640446404463,-70.54988985998915],[-60.435604356043555,-70.58366140538679],[-60.435604356043555,-70.59717002354586]]],[[[-61.10521105211052,-69.96395354733984],[-61.177211772117715,-69.98083932003867],[-61.24561245612456,-69.98759362911821],[-61.288812888128874,-69.98421647457843],[-61.328413284132836,-69.97577358822903],[-61.3680136801368,-69.96226497006997],[-61.40761407614076,-69.94200204283138],[-61.40041400414003,-69.90654192016383],[-61.39321393213932,-69.89472187927466],[-61.386013860138604,-69.88290183838548],[-61.37161371613716,-69.87277037476618],[-61.360813608136084,-69.86601606568665],[-61.34641346413464,-69.85926175660711],[-61.310413104131044,-69.85081887025771],[-61.26721267212672,-69.85250744752759],[-61.19161191611916,-69.86770464295654],[-61.15561155611556,-69.87952468384572],[-61.13761137611375,-69.88796757019513],[-61.12321123211231,-69.8997876110843],[-61.1160111601116,-69.9099190747036],[-61.11241112411123,-69.91498480651325],[-61.11241112411123,-69.92173911559277],[-61.11241112411123,-69.92680484740242],[-61.1160111601116,-69.93355915648196],[-61.1160111601116,-69.9386248882916],[-61.1160111601116,-69.94537919737114],[-61.10521105211052,-69.96395354733984]]],[[[-60.89280892808928,-68.75999795391348],[-60.99720997209971,-68.72284925397607],[-61.02241022410223,-68.70596348127724],[-60.96840968409684,-68.68232339949887],[-60.8820088200882,-68.67894624495912],[-60.7920079200792,-68.69245486311817],[-60.71640716407164,-68.71609494489653],[-60.66960669606695,-68.74648933575442],[-60.65160651606516,-68.77519514934242],[-60.67680676806768,-68.79545807658101],[-60.74520745207451,-68.79883523112079],[-60.78480784807847,-68.79376949931114],[-60.89280892808928,-68.75999795391348]]],[[[-67.28647286472864,-67.72996581928504],[-67.33327333273333,-67.76204878741281],[-67.39087390873908,-67.78062313738153],[-67.50967509675097,-67.78906602373092],[-67.64647646476465,-67.77724598284175],[-67.70767707677076,-67.76036021014292],[-67.74367743677436,-67.74685159198387],[-67.75087750877509,-67.73165439655492],[-67.74367743677436,-67.72827724201515],[-67.7040770407704,-67.72490008747539],[-67.69327693276932,-67.71983435566574],[-67.68967689676896,-67.71476862385609],[-67.68607686076861,-67.70970289204644],[-67.67887678876788,-67.70126000569704],[-67.67167671676717,-67.69619427388739],[-67.65367653676536,-67.68943996480785],[-67.64287642876428,-67.68437423299821],[-67.66087660876609,-67.68268565572832],[-67.67887678876788,-67.68437423299821],[-67.72567725677257,-67.69957142842715],[-67.74727747277473,-67.70126000569704],[-67.76527765277652,-67.69957142842715],[-67.77607776077761,-67.68606281026808],[-67.76527765277652,-67.66748846029938],[-67.740077400774,-67.6556684194102],[-67.49527495274953,-67.58981390588477],[-67.1820718207182,-67.59994536950407],[-67.14967149671496,-67.61007683312337],[-67.12087120871209,-67.64215980125114],[-67.23247232472325,-67.67761992391867],[-67.2540725407254,-67.70970289204644],[-67.26847268472685,-67.70801431477656],[-67.31887318873189,-67.71139146931633],[-67.290072900729,-67.72658866474526],[-67.28647286472864,-67.72996581928504]]],[[[-67.380073800738,-66.9025629570425],[-67.43407434074341,-66.90762868885216],[-67.49167491674916,-66.9042515343124],[-67.60327603276032,-66.88061145253404],[-67.56367563675636,-66.86710283437498],[-67.52767527675276,-66.82151124808814],[-67.49167491674916,-66.79955974357966],[-67.50247502475024,-66.78942827996038],[-67.50967509675097,-66.77929681634107],[-67.51327513275132,-66.77085392999166],[-67.52047520475205,-66.76241104364225],[-67.48447484474845,-66.74214811640365],[-67.44487444874449,-66.73539380732413],[-67.40527405274052,-66.737082384594],[-67.30807308073081,-66.76072246637237],[-67.290072900729,-66.76916535272179],[-67.28647286472864,-66.77423108453144],[-67.28287282872829,-66.7776082390712],[-67.27927279272792,-66.78267397088084],[-67.27567275672756,-66.78773970269049],[-67.27207272072721,-66.79280543450014],[-67.26127261272612,-66.80124832084955],[-67.25767257672577,-66.8063140526592],[-67.24687246872469,-66.8248884026279],[-67.23967239672396,-66.83164271170745],[-67.27207272072721,-66.8552827934858],[-67.30447304473044,-66.87554572072439],[-67.3440734407344,-66.89074291615333],[-67.380073800738,-66.9025629570425]]],[[[-66.77166771667716,-66.13763745378566],[-66.77886778867789,-66.13426029924588],[-66.78966789667896,-66.12919456743623],[-66.79686796867968,-66.12581741289648],[-66.77526775267752,-66.10724306292776],[-66.73926739267392,-66.0937344447687],[-66.64206642066421,-66.06840578572046],[-66.60606606066061,-66.06671720845057],[-66.59166591665917,-66.06671720845057],[-66.57726577265773,-66.07178294026022],[-66.56646566465665,-66.07853724933976],[-66.55566555665557,-66.08698013568917],[-66.570065700657,-66.09880017657835],[-66.59166591665917,-66.11399737200729],[-66.61686616866169,-66.12581741289648],[-66.63486634866348,-66.12750599016636],[-66.59886598865988,-66.14945749467483],[-66.5880658806588,-66.15621180375436],[-66.57726577265773,-66.17985188553271],[-66.59886598865988,-66.20686912185084],[-66.60246602466025,-66.20855769912072],[-66.66366663666636,-66.23557493543885],[-66.750067500675,-66.2896094080751],[-66.840068400684,-66.32169237620286],[-66.86526865268652,-66.32675810801251],[-66.88686886868868,-66.32506953074264],[-66.89046890468904,-66.32000379893299],[-66.90486904869049,-66.30987233531368],[-66.9120691206912,-66.30142944896427],[-66.89046890468904,-66.2879208308052],[-66.79326793267933,-66.2406406672485],[-66.77526775267752,-66.22713204908943],[-66.77166771667716,-66.22206631727978],[-66.76806768067681,-66.20349196731108],[-66.76446764467644,-66.18491761734236],[-66.76806768067681,-66.17816330826284],[-66.76806768067681,-66.17309757645319],[-66.77526775267752,-66.16465469010377],[-66.77886778867789,-66.15958895829412],[-66.77886778867789,-66.1528346492146],[-66.77886778867789,-66.14776891740495],[-66.77166771667716,-66.13763745378566]]],[[[-66.18846188461885,-65.82356208158747],[-66.1920619206192,-65.82187350431758],[-66.19566195661956,-65.81849634977782],[-66.19566195661956,-65.81511919523805],[-66.19566195661956,-65.8100534634284],[-66.1920619206192,-65.80329915434888],[-66.1740617406174,-65.78472480438018],[-66.16326163261633,-65.76615045441146],[-66.15966159661596,-65.7627732998717],[-66.14526145261452,-65.76108472260181],[-66.10206102061021,-65.76783903168135],[-66.08046080460804,-65.76783903168135],[-66.07326073260732,-65.7627732998717],[-66.03726037260373,-65.73913321809334],[-66.05526055260552,-65.7323789090138],[-66.06966069660696,-65.72224744539452],[-66.0840608406084,-65.70873882723545],[-66.0840608406084,-65.6935416318065],[-66.08046080460804,-65.68847589999686],[-66.07326073260732,-65.68172159091732],[-66.06966069660696,-65.67834443637756],[-66.06966069660696,-65.6732787045679],[-66.07326073260732,-65.67159012729803],[-66.07686076860769,-65.66821297275825],[-66.07326073260732,-65.66483581821849],[-66.0660606606066,-65.65977008640886],[-66.030060300603,-65.6547043545992],[-66.01926019260192,-65.64963862278955],[-65.9940599405994,-65.62937569555096],[-65.97605976059761,-65.62262138647142],[-65.96885968859688,-65.61924423193166],[-65.96525965259652,-65.61248992285213],[-65.96165961659617,-65.59898130469307],[-65.96885968859688,-65.59053841834366],[-65.97605976059761,-65.58209553199424],[-65.97965979659796,-65.57365264564483],[-65.97965979659796,-65.57196406837494],[-65.96525965259652,-65.556766872946],[-65.96165961659617,-65.55338971840624],[-65.79245792457924,-65.51961817300858],[-65.76365763657637,-65.52130675027847],[-65.71685716857168,-65.5381925229773],[-65.69165691656916,-65.54325825478693],[-65.6340563405634,-65.5381925229773],[-65.62325623256233,-65.53481536843753],[-65.6340563405634,-65.55001256386647],[-65.65565655656556,-65.57196406837494],[-65.66285662856629,-65.585472686534],[-65.66285662856629,-65.61248992285213],[-65.670056700567,-65.62262138647142],[-65.68085680856808,-65.63275285009072],[-65.68085680856808,-65.6344414273606],[-65.68085680856808,-65.63613000463049],[-65.66645666456664,-65.65977008640886],[-65.86085860858608,-65.69016447726673],[-65.91125911259113,-65.70536167269569],[-65.83925839258391,-65.73406748628369],[-65.82485824858249,-65.75433041352228],[-65.82125821258212,-65.76446187714157],[-65.81765817658176,-65.77628191803075],[-65.82125821258212,-65.78641338165005],[-65.8320583205832,-65.80161057707899],[-65.83565835658356,-65.81174204069829],[-65.8320583205832,-65.8201849270477],[-65.82125821258212,-65.82525065885736],[-65.7960579605796,-65.83031639066701],[-65.8140581405814,-65.8404478542863],[-65.83565835658356,-65.84382500882606],[-65.87525875258753,-65.84382500882606],[-66.05166051660517,-65.88097370876348],[-66.10206102061021,-65.88435086330324],[-66.1740617406174,-65.87253082241406],[-66.18486184861848,-65.86577651333454],[-66.17766177661777,-65.84720216336584],[-66.17766177661777,-65.8404478542863],[-66.18126181261812,-65.83031639066701],[-66.18486184861848,-65.82862781339712],[-66.18486184861848,-65.82693923612723],[-66.18846188461885,-65.82356208158747]]],[[[-63.276032760327595,-64.80703856511809],[-63.28323283232832,-64.81548145146749],[-63.29043290432904,-64.84925299686515],[-63.30483304833048,-64.85938446048445],[-63.326433264332636,-64.86613876956397],[-63.38043380433804,-64.87795881045315],[-63.43083430834308,-64.89822173769176],[-63.452434524345236,-64.90497604677128],[-63.538835388353874,-64.91679608766046],[-63.57123571235712,-64.91679608766046],[-63.59283592835928,-64.90666462404116],[-63.5820358203582,-64.89991031496163],[-63.54243542435424,-64.88640169680258],[-63.4920349203492,-64.86276161502421],[-63.44523445234452,-64.83405580143621],[-63.48123481234812,-64.82223576054703],[-63.502835028350276,-64.81885860600727],[-63.52083520835208,-64.82223576054703],[-63.448834488344886,-64.79015279241926],[-63.423634236342366,-64.78508706060961],[-63.402034020340196,-64.78677563787949],[-63.358833588335884,-64.79690710149879],[-63.33723337233371,-64.79521852422891],[-63.326433264332636,-64.79015279241926],[-63.23283232832328,-64.72936401070348],[-63.2040320403204,-64.7175439698143],[-63.17883178831788,-64.71247823800465],[-63.15723157231572,-64.72429827889383],[-63.15363153631536,-64.73442974251313],[-63.15723157231572,-64.74287262886254],[-63.16443164431644,-64.75131551521196],[-63.175231752317515,-64.75806982429148],[-63.25443254432544,-64.79015279241926],[-63.276032760327595,-64.80703856511809]]],[[[-57.31437314373143,-64.43724014301378],[-57.256772567725676,-64.42710867939448],[-56.94356943569436,-64.32917119774129],[-56.92196921969219,-64.3274826204714],[-56.90036900369003,-64.33085977501116],[-56.878768787687875,-64.33592550682081],[-56.94716947169471,-64.37476278402812],[-56.954369543695435,-64.38489424764741],[-56.93636936369363,-64.41866579304507],[-56.96876968769688,-64.45581449298248],[-57.01917019170192,-64.48789746111025],[-57.05877058770588,-64.50984896561873],[-57.22077220772208,-64.56557201552485],[-57.30357303573035,-64.57570347914415],[-57.38997389973899,-64.5621948609851],[-57.42597425974259,-64.54868624282604],[-57.44757447574476,-64.53517762466697],[-57.45477454774547,-64.51829185196814],[-57.45837458374584,-64.49802892472955],[-57.45837458374584,-64.48789746111025],[-57.45477454774547,-64.47438884295119],[-57.45117451174511,-64.46088022479213],[-57.44037440374403,-64.45243733844272],[-57.41517415174151,-64.4439944520933],[-57.31437314373143,-64.43724014301378]]],[[[-57.64197641976419,-63.8496152530946],[-57.695976959769595,-63.81584370769694],[-57.64917649176492,-63.804023666807765],[-57.368373683736834,-63.78882647137882],[-57.36477364773647,-63.78882647137882],[-57.361173611736106,-63.7905150486487],[-57.357573575735756,-63.798957934998114],[-57.357573575735756,-63.80740082134753],[-57.35397353973539,-63.81584370769694],[-57.34677346773468,-63.82090943950659],[-57.38997389973899,-63.83272948039577],[-57.40077400774007,-63.839483789475295],[-57.368373683736834,-63.841172366745184],[-57.22437224372243,-63.81077797588729],[-57.18477184771848,-63.80908939861741],[-57.17037170371704,-63.81077797588729],[-57.14517145171452,-63.819220862236705],[-57.119971199712,-63.83104090312588],[-57.08757087570875,-63.839483789475295],[-57.09477094770948,-63.84454952128495],[-57.105571055710556,-63.84792667582471],[-57.14877148771487,-63.85130383036448],[-57.155971559715596,-63.85299240763436],[-57.15957159571596,-63.85636956217412],[-57.16317163171631,-63.861435293983774],[-57.16317163171631,-63.86481244852354],[-57.17037170371704,-63.876632489412714],[-57.17397173971739,-63.8783210666826],[-57.181171811718116,-63.880009643952484],[-57.19917199171991,-63.88507537576213],[-57.242372423724234,-63.901961148460956],[-57.235172351723506,-63.88338679849225],[-57.235172351723506,-63.87325533487295],[-57.242372423724234,-63.866501025793426],[-57.24957249572495,-63.866501025793426],[-57.310773107731066,-63.87156675760307],[-57.35397353973539,-63.88338679849225],[-57.36477364773647,-63.88507537576213],[-57.37917379173791,-63.88338679849225],[-57.48717487174871,-63.85468098490424],[-57.50157501575015,-63.85805813944401],[-57.51237512375123,-63.87494391214284],[-57.5339753397534,-63.866501025793426],[-57.54837548375484,-63.86481244852354],[-57.55197551975519,-63.863123871253656],[-57.55917559175592,-63.859746716713886],[-57.56277562775627,-63.85636956217412],[-57.56637566375663,-63.85299240763436],[-57.57357573575736,-63.85130383036448],[-57.61317613176131,-63.85468098490424],[-57.62757627576275,-63.85468098490424],[-57.63477634776348,-63.85130383036448],[-57.64197641976419,-63.8496152530946]]],[[[-60.88560885608855,-63.85805813944401],[-60.91080910809107,-63.85636956217412],[-60.96840968409684,-63.859746716713886],[-60.98280982809828,-63.85636956217412],[-60.98280982809828,-63.842860944015065],[-60.97920979209792,-63.839483789475295],[-60.97200972009719,-63.839483789475295],[-60.95760957609576,-63.842860944015065],[-60.92160921609215,-63.84792667582471],[-60.84600846008459,-63.84623809855483],[-60.80640806408064,-63.841172366745184],[-60.788407884078836,-63.83441805766565],[-60.77760777607776,-63.82935232585601],[-60.77040770407703,-63.82259801677647],[-60.76680766807668,-63.814155130427054],[-60.76680766807668,-63.80908939861741],[-60.77040770407703,-63.804023666807765],[-60.774007740077394,-63.797269357728226],[-60.7920079200792,-63.7905150486487],[-60.80280802808028,-63.782072162299286],[-60.80640806408064,-63.77025212141011],[-60.799207992079914,-63.75505492598116],[-60.7920079200792,-63.75167777144139],[-60.712807128071276,-63.75167777144139],[-60.698406984069834,-63.74661203963175],[-60.687606876068756,-63.73479199874257],[-60.68400684006839,-63.73310342147269],[-60.68400684006839,-63.72972626693292],[-60.67680676806768,-63.72634911239316],[-60.6660066600666,-63.72297195785339],[-60.69120691206912,-63.714529071503975],[-60.7560075600756,-63.72297195785339],[-60.77040770407703,-63.721283380583515],[-60.77760777607776,-63.717906226043745],[-60.77040770407703,-63.70946333969433],[-60.774007740077394,-63.699331876075036],[-60.78120781207812,-63.69088898972562],[-60.788407884078836,-63.68244610337621],[-60.7920079200792,-63.679068948836445],[-60.80280802808028,-63.674003217026794],[-60.80640806408064,-63.67062606248703],[-60.80280802808028,-63.66556033067738],[-60.7920079200792,-63.66724890794727],[-60.7560075600756,-63.680757526106326],[-60.723607236072354,-63.68751183518586],[-60.59040590405904,-63.68920041245573],[-60.55440554405544,-63.699331876075036],[-60.56520565205652,-63.7027090306148],[-60.612006120061196,-63.72803768966304],[-60.61560615606156,-63.736480576012454],[-60.622806228062274,-63.73985773055222],[-60.64440644406443,-63.74492346236187],[-60.65520655206552,-63.75505492598116],[-60.66960669606695,-63.782072162299286],[-60.68040680406804,-63.79558078045835],[-60.69480694806947,-63.80571224407764],[-60.698406984069834,-63.80908939861741],[-60.69480694806947,-63.824286594046356],[-60.673206732067314,-63.841172366745184],[-60.64440644406443,-63.85468098490424],[-60.62640626406264,-63.85805813944401],[-60.68040680406804,-63.87325533487295],[-60.72720727207272,-63.89520683938143],[-60.74160741607416,-63.903649725730844],[-60.74520745207451,-63.905338303000725],[-60.75240752407524,-63.903649725730844],[-60.75240752407524,-63.901961148460956],[-60.75240752407524,-63.89858399392119],[-60.7560075600756,-63.89689541665131],[-60.76680766807668,-63.89182968484167],[-60.78120781207812,-63.89014110757178],[-60.7920079200792,-63.89351826211154],[-60.80280802808028,-63.900272571191074],[-60.81720817208172,-63.91209261208026],[-60.82080820808207,-63.91378118935013],[-60.8820088200882,-63.903649725730844],[-60.900009000089995,-63.89689541665131],[-60.87120871208711,-63.886763953032016],[-60.864008640086396,-63.8783210666826],[-60.864008640086396,-63.87156675760307],[-60.87120871208711,-63.86481244852354],[-60.87840878408784,-63.861435293983774],[-60.88560885608855,-63.85805813944401]]],[[[-55.71955719557195,-63.47475109918064],[-55.71955719557195,-63.49839118095899],[-55.924759247592476,-63.54904849905547],[-55.93195931959319,-63.579442889913366],[-55.96435964359644,-63.58113146718324],[-56.15876158761587,-63.527096994546994],[-56.23436234362343,-63.48488256279993],[-56.241562415624145,-63.4781282537204],[-56.241562415624145,-63.47306252191075],[-56.237962379623795,-63.469685367370985],[-56.23076230762307,-63.46630821283122],[-56.23076230762307,-63.46124248102157],[-56.21996219962199,-63.44266813105287],[-56.20556205562055,-63.43591382197333],[-56.011160111601114,-63.41058516292509],[-55.80595805958059,-63.407208008385325],[-55.748357483574836,-63.429159512893804],[-55.71955719557195,-63.47475109918064]]],[[[-56.54756547565475,-63.099886945266675],[-56.60516605166052,-63.06949255440879],[-56.619566195661946,-63.05091820444008],[-56.601566015660154,-63.03065527720149],[-56.576365763657634,-63.018835236312306],[-56.525965259652594,-63.00363804088336],[-56.500765007650074,-62.99181799999418],[-56.493564935649346,-62.98675226818453],[-56.489964899648996,-62.98337511364477],[-56.48636486364863,-62.979997959105006],[-56.475564755647554,-62.97662080456524],[-56.468364683646826,-62.97662080456524],[-56.313563135631355,-63.00363804088336],[-56.10476104761047,-63.00363804088336],[-56.04716047160471,-63.017146659042425],[-56.036360363603634,-63.057672513519606],[-56.06876068760687,-63.08637832710761],[-56.216362163621625,-63.160675726982454],[-56.27396273962739,-63.17925007695116],[-56.33516335163351,-63.17418434514151],[-56.40716407164071,-63.15560999517281],[-56.54756547565475,-63.099886945266675]]],[[[-62.60282602826028,-63.06611539986902],[-62.65682656826567,-63.084689749837736],[-62.685626856268556,-63.08975548164738],[-62.710827108271076,-63.08975548164738],[-62.685626856268556,-63.077935440758196],[-62.68202682026819,-63.07286970894855],[-62.67842678426784,-63.06611539986902],[-62.67482674826748,-63.05598393624973],[-62.671226712267114,-63.05091820444008],[-62.660426604266036,-63.04585247263043],[-62.635226352263516,-63.039098163550904],[-62.62442624426244,-63.03065527720149],[-62.617226172261724,-63.01545808177254],[-62.60642606426063,-63.0002608863436],[-62.5920259202592,-62.98675226818453],[-62.57762577625776,-62.974932227295355],[-62.54882548825488,-62.9614236091363],[-62.54162541625416,-62.956357877326646],[-62.5380253802538,-62.94960356824711],[-62.5380253802538,-62.934406372818174],[-62.5380253802538,-62.92765206373864],[-62.52002520025199,-62.912454868309695],[-62.48762487624876,-62.90401198196028],[-62.39042390423904,-62.89050336380122],[-62.379623796237965,-62.88712620926145],[-62.36162361623616,-62.87868332291204],[-62.35082350823508,-62.875306168372276],[-62.307623076230755,-62.875306168372276],[-62.358023580235795,-62.932717795548285],[-62.430024300243005,-62.98506369091466],[-62.60282602826028,-63.06611539986902]]],[[[-59.693996939969395,-62.378864451026764],[-59.69759697596976,-62.375487296486995],[-59.69759697596976,-62.37211014194723],[-59.69759697596976,-62.36873298740747],[-59.693996939969395,-62.36535583286771],[-59.69039690396903,-62.360290101058055],[-59.67959679596795,-62.35860152378817],[-59.60399603996039,-62.34678148289899],[-59.43839438394383,-62.355224369248404],[-59.380793807938076,-62.37211014194723],[-59.34839348393484,-62.40588168734489],[-59.35199351993519,-62.40925884188465],[-59.369993699937,-62.43627607820278],[-59.37719377193771,-62.441341810012425],[-59.380793807938076,-62.444718964552195],[-59.38799387993879,-62.44640754182207],[-59.39519395193952,-62.44809611909196],[-59.44919449194491,-62.44809611909196],[-59.49959499594995,-62.45653900544137],[-59.51039510395104,-62.45653900544137],[-59.55719557195572,-62.444718964552195],[-59.57519575195751,-62.443030387282306],[-59.593195931959315,-62.42952176912324],[-59.62559625596255,-62.40757026461477],[-59.61479614796147,-62.400815955535236],[-59.61119611196112,-62.39406164645571],[-59.60759607596076,-62.38730733737618],[-59.60039600396003,-62.382241605566534],[-59.61119611196112,-62.38393018283641],[-59.66519665196651,-62.38899591464606],[-59.67239672396724,-62.38730733737618],[-59.67959679596795,-62.3856187601063],[-59.68679686796868,-62.382241605566534],[-59.693996939969395,-62.378864451026764]]],[[[-58.98478984789847,-62.26572977394463],[-58.97398973989739,-62.26910692848439],[-58.927189271892715,-62.26235261940486],[-58.89838898388983,-62.26235261940486],[-58.87318873188731,-62.27079550575427],[-58.84798847988479,-62.28599270118322],[-58.83358833588335,-62.30963278296157],[-59.03159031590316,-62.34847006016888],[-59.07119071190712,-62.34847006016888],[-59.08919089190891,-62.34678148289899],[-59.103591035910355,-62.341715751089346],[-59.14319143191432,-62.32314140112064],[-59.15759157591576,-62.319764246580874],[-59.16479164791647,-62.316387092041104],[-59.204392043920436,-62.297812742072395],[-59.21879218792188,-62.292747010262744],[-59.189991899918994,-62.27248408302415],[-59.15759157591576,-62.26066404213498],[-59.03159031590316,-62.23364680581685],[-59.002790027900275,-62.23364680581685],[-58.977589775897755,-62.240401114896386],[-58.98118981189812,-62.250532578515674],[-58.98478984789847,-62.257286887595214],[-58.98478984789847,-62.26235261940486],[-58.98478984789847,-62.26572977394463]]],[[[-55.07875078750787,-61.09385714864603],[-54.97434974349743,-61.10736576680509],[-54.65034650346503,-61.10736576680509],[-54.66834668346684,-61.11074292134486],[-54.69714697146971,-61.13776015766298],[-54.71154711547115,-61.14789162128228],[-54.729547295472955,-61.15295735309192],[-55.035550355503545,-61.15633450763169],[-55.05355053550535,-61.15971166217146],[-55.067950679506794,-61.168154548520874],[-55.07155071550714,-61.1749088576004],[-55.07155071550714,-61.188417475759465],[-55.07875078750787,-61.19517178483899],[-55.085950859508586,-61.20192609391852],[-55.096750967509664,-61.20530324845829],[-55.132751327513276,-61.20699182572817],[-55.13995139951399,-61.21036898026794],[-55.15075150751507,-61.228943330236646],[-55.17955179551795,-61.25596056655477],[-55.211952119521186,-61.26778060744395],[-55.247952479524784,-61.26778060744395],[-55.28035280352803,-61.25764914382465],[-55.345153451534514,-61.227254752966765],[-55.370353703537035,-61.20699182572817],[-55.39195391953919,-61.17828601214016],[-55.35955359553596,-61.15971166217146],[-55.345153451534514,-61.15464593036181],[-55.345153451534514,-61.15295735309192],[-55.373953739537384,-61.141137312202744],[-55.43155431554315,-61.124251539503916],[-55.449554495544945,-61.1158086531545],[-55.41355413554135,-61.083725685026735],[-55.37755377553775,-61.07021706686767],[-55.07875078750787,-61.09385714864603]]],[[[-46.00666006660066,-60.61261262672946],[-46.01026010260102,-60.607546894919814],[-46.01026010260102,-60.60248116311017],[-46.00666006660066,-60.59572685403063],[-46.003060030600295,-60.587283967681216],[-45.99945999459993,-60.58052965860169],[-45.99585995859957,-60.57377534952216],[-45.98865988659887,-60.568709617712514],[-45.98145981459814,-60.565332463172744],[-45.97065970659705,-60.56364388590286],[-45.95625956259562,-60.565332463172744],[-45.94905949059489,-60.567021040442626],[-45.95625956259562,-60.53493807231486],[-45.95625956259562,-60.528183763235326],[-45.93465934659346,-60.524806608695556],[-45.91665916659167,-60.526495185965445],[-45.851858518585175,-60.546758113204035],[-45.84105841058411,-60.548446690473924],[-45.83385833858338,-60.546758113204035],[-45.80865808658086,-60.53662664958474],[-45.794257942579435,-60.53493807231486],[-45.76185761857619,-60.53493807231486],[-45.74745747457473,-60.531560917775096],[-45.743857438574395,-60.526495185965445],[-45.74025740257403,-60.52142945415579],[-45.73665736657367,-60.51974087688591],[-45.72945729457294,-60.51636372234615],[-45.72225722257221,-60.51636372234615],[-45.70425704257042,-60.51805229961603],[-45.66465664656647,-60.524806608695556],[-45.567455674556754,-60.55351242228357],[-45.54585545855457,-60.55520099955345],[-45.48825488254883,-60.545069535934154],[-45.47745477454774,-60.545069535934154],[-45.448654486544854,-60.55351242228357],[-45.391053910539114,-60.5788410813318],[-45.37305373053729,-60.59741543130052],[-45.391053910539114,-60.61261262672946],[-45.38025380253802,-60.61430120399935],[-45.34785347853477,-60.627809822158405],[-45.32985329853298,-60.63287555396805],[-45.27225272252721,-60.62612124488852],[-45.18945189451895,-60.63287555396805],[-45.21105211052111,-60.653138481206646],[-45.21825218252181,-60.65482705847653],[-45.17865178651786,-60.666647099365704],[-45.15345153451534,-60.68184429479465],[-45.14625146251461,-60.68522144933442],[-45.16425164251643,-60.68184429479465],[-45.1750517505175,-60.68184429479465],[-45.182251822518225,-60.68353287206453],[-45.18585185851859,-60.69873006749348],[-45.1750517505175,-60.713927262922425],[-45.14265142651425,-60.7358787674309],[-45.16065160651607,-60.73756734470078],[-45.18585185851859,-60.732501612891134],[-45.22545225452254,-60.71730441746219],[-45.26145261452615,-60.693664335683835],[-45.283052830528305,-60.68353287206453],[-45.308253082530825,-60.67846714025489],[-45.3550535505355,-60.67508998571512],[-45.3550535505355,-60.67340140844524],[-45.3550535505355,-60.66833567663559],[-45.36225362253623,-60.65989279028618],[-45.365853658536594,-60.65820421301629],[-45.409054090540906,-60.648072749397],[-45.41985419854197,-60.646384172127114],[-45.466654666546674,-60.651449903936765],[-45.499054990549894,-60.64976132666688],[-45.542255422554234,-60.64131844031746],[-45.58905589055891,-60.63962986304759],[-45.6790567905679,-60.64976132666688],[-45.718657186571875,-60.646384172127114],[-45.743857438574395,-60.62612124488852],[-45.751057510575095,-60.61430120399935],[-45.75825758257582,-60.610924049459584],[-45.76185761857619,-60.607546894919814],[-45.751057510575095,-60.59572685403063],[-45.79065790657907,-60.58390681314145],[-45.82305823058229,-60.58559539041134],[-45.93465934659346,-60.62274409034876],[-45.952659526595255,-60.62612124488852],[-45.97065970659705,-60.62612124488852],[-45.99225992259923,-60.62105551307887],[-46.003060030600295,-60.61767835853911],[-46.00666006660066,-60.61261262672946]]],[[[-67.50247502475024,-55.82043033480237],[-67.49887498874989,-55.81198744845295],[-67.48087480874808,-55.8069217166433],[-67.470074700747,-55.8170531802626],[-67.47727477274772,-55.82887322115178],[-67.47367473674737,-55.84238183931084],[-67.5060750607506,-55.830561798421655],[-67.53127531275312,-55.84069326204096],[-67.52767527675276,-55.857579034739786],[-67.5420754207542,-55.88966200286755],[-67.56727567275672,-55.89810488921697],[-67.5960759607596,-55.8845962710579],[-67.61047610476105,-55.89135058013744],[-67.61047610476105,-55.90823635283626],[-67.62127621276213,-55.91836781645556],[-67.63927639276392,-55.913302084645906],[-67.64647646476465,-55.9048591982965],[-67.64287642876428,-55.88966200286755],[-67.6320763207632,-55.87446480743861],[-67.6320763207632,-55.85926761200966],[-67.65007650076501,-55.85926761200966],[-67.66447664476644,-55.86264476654943],[-67.67527675276753,-55.86095618927955],[-67.68607686076861,-55.867710498359074],[-67.69687696876969,-55.87953053924826],[-67.69327693276932,-55.88966200286755],[-67.71127711277113,-55.88628484832779],[-67.73287732877328,-55.877841961978376],[-67.7220772207722,-55.86939907562896],[-67.72567725677257,-55.86433334381931],[-67.73287732877328,-55.854201880200016],[-67.74727747277473,-55.84913614839037],[-67.75447754477544,-55.85926761200966],[-67.77247772477725,-55.867710498359074],[-67.7940779407794,-55.872776230168725],[-67.80127801278013,-55.88121911651814],[-67.80127801278013,-55.89810488921697],[-67.82287822878229,-55.88966200286755],[-67.83727837278373,-55.87953053924826],[-67.85527855278552,-55.88290769378803],[-67.87687876878769,-55.8845962710579],[-67.90207902079021,-55.87446480743861],[-67.90207902079021,-55.86264476654943],[-67.90927909279092,-55.85082472566025],[-67.91287912879129,-55.837316107501195],[-67.89847898478985,-55.82887322115178],[-67.87687876878769,-55.82718464388189],[-67.8480784807848,-55.82380748934213],[-67.82647826478265,-55.8170531802626],[-67.80127801278013,-55.81198744845295],[-67.78687786877869,-55.82043033480237],[-67.76167761677617,-55.82549606661201],[-67.73647736477365,-55.82718464388189],[-67.71127711277113,-55.82549606661201],[-67.68967689676896,-55.82380748934213],[-67.67167671676717,-55.815364602992716],[-67.65727657276572,-55.82211891207224],[-67.61767617676176,-55.82549606661201],[-67.58527585275853,-55.84069326204096],[-67.56007560075601,-55.837316107501195],[-67.57087570875709,-55.82043033480237],[-67.58527585275853,-55.810298871183065],[-67.58887588875888,-55.80185598483365],[-67.56727567275672,-55.8069217166433],[-67.55287552875528,-55.81198744845295],[-67.52407524075241,-55.8069217166433],[-67.51327513275132,-55.810298871183065],[-67.5060750607506,-55.815364602992716],[-67.50247502475024,-55.82043033480237]]],[[[-67.37647376473764,-55.75119866673717],[-67.38367383673837,-55.747821512197405],[-67.38727387273872,-55.74444435765764],[-67.39447394473945,-55.74275578038776],[-67.40167401674016,-55.74444435765764],[-67.42327423274233,-55.76133013035647],[-67.43047430474304,-55.76470728489623],[-67.44487444874449,-55.76301870762635],[-67.4520745207452,-55.75626439854682],[-67.45567455674556,-55.74951008946729],[-67.46647466474664,-55.74444435765764],[-67.47727477274772,-55.74275578038776],[-67.51327513275132,-55.74444435765764],[-67.53127531275312,-55.74106720311788],[-67.55287552875528,-55.73600147130823],[-67.56727567275672,-55.727558584958814],[-67.58167581675816,-55.71573854406964],[-67.58167581675816,-55.708984234990105],[-67.54927549275493,-55.705607080450335],[-67.53847538475384,-55.6600154941635],[-67.5060750607506,-55.65326118508398],[-67.49167491674916,-55.65832691689363],[-67.46647466474664,-55.671835535052686],[-67.44847448474485,-55.675212689592456],[-67.43407434074341,-55.68365557594186],[-67.42687426874268,-55.69716419410092],[-67.41967419674197,-55.70729565772022],[-67.40527405274052,-55.69885277137081],[-67.40527405274052,-55.690409885021396],[-67.40167401674016,-55.648195453274326],[-67.41247412474124,-55.63806398965503],[-67.42327423274233,-55.6313096805755],[-67.43407434074341,-55.62455537149597],[-67.43767437674376,-55.609358176067026],[-67.43047430474304,-55.59584955790797],[-67.41967419674197,-55.587406671558554],[-67.35847358473585,-55.57389805339949],[-67.34767347673477,-55.57558663066937],[-67.35487354873548,-55.585718094288666],[-67.35487354873548,-55.58909524882843],[-67.35487354873548,-55.5924724033682],[-67.35847358473585,-55.59416098063808],[-67.3620736207362,-55.59416098063808],[-67.34767347673477,-55.60091528971761],[-67.3440734407344,-55.607669598797145],[-67.34767347673477,-55.62455537149597],[-67.3440734407344,-55.63299825784539],[-67.3260732607326,-55.64481829873456],[-67.32247322473225,-55.65326118508398],[-67.33687336873368,-55.66170407143339],[-67.35127351273512,-55.671835535052686],[-67.35847358473585,-55.68703273048163],[-67.3620736207362,-55.705607080450335],[-67.34767347673477,-55.710672812259986],[-67.26847268472685,-55.71573854406964],[-67.26847268472685,-55.7191156986094],[-67.27567275672756,-55.73431289403835],[-67.27927279272792,-55.74106720311788],[-67.27567275672756,-55.74613293492752],[-67.26487264872648,-55.74951008946729],[-67.2540725407254,-55.752887244007056],[-67.2540725407254,-55.76470728489623],[-67.26487264872648,-55.7782159030553],[-67.290072900729,-55.78328163486495],[-67.31887318873189,-55.78665878940471],[-67.34047340473404,-55.791724521214356],[-67.34047340473404,-55.768084439435995],[-67.3440734407344,-55.75795297581671],[-67.35487354873548,-55.75457582127694],[-67.37647376473764,-55.75119866673717]]],[[[-63.888038880388805,-54.72960941845814],[-63.866438664386635,-54.7329865729979],[-63.84483844838448,-54.722855109378614],[-63.82683826838267,-54.7144122230292],[-63.812438124381245,-54.72960941845814],[-63.8340383403834,-54.739740882077434],[-63.841238412384115,-54.74649519115697],[-63.84843848438484,-54.75324950023649],[-63.862838628386285,-54.77520100474497],[-63.870038700387,-54.781955313824504],[-63.88443884438844,-54.783643891094385],[-63.90243902439023,-54.785332468364274],[-63.916839168391675,-54.79039820017392],[-63.967239672396715,-54.81572685922215],[-63.97803978039779,-54.81572685922215],[-63.992439924399235,-54.81066112741251],[-63.98523985239852,-54.802218241063095],[-63.967239672396715,-54.78026673655462],[-63.963639636396366,-54.77351242747509],[-63.967239672396715,-54.76000380931603],[-63.97803978039779,-54.75662665477626],[-63.9960399603996,-54.763380963855795],[-64.00684006840068,-54.77351242747509],[-64.02124021240212,-54.781955313824504],[-64.03564035640356,-54.785332468364274],[-64.07164071640716,-54.783643891094385],[-64.07884078840787,-54.781955313824504],[-64.08244082440824,-54.781955313824504],[-64.09324093240932,-54.783643891094385],[-64.10044100441004,-54.78870962290404],[-64.10044100441004,-54.79377535471368],[-64.1040410404104,-54.80052966379321],[-64.10764107641076,-54.803906818332976],[-64.12924129241291,-54.81234970468239],[-64.22284222842228,-54.82248116830169],[-64.230042300423,-54.83261263192098],[-64.24444244442444,-54.83767836373063],[-64.25884258842588,-54.83598978646075],[-64.26964269642696,-54.82416974557157],[-64.26964269642696,-54.81403828195228],[-64.2660426604266,-54.80052966379321],[-64.25164251642516,-54.77688958201486],[-64.26964269642696,-54.77688958201486],[-64.27684276842768,-54.78026673655462],[-64.2840428404284,-54.783643891094385],[-64.29844298442984,-54.77688958201486],[-64.31284312843128,-54.77688958201486],[-64.33444334443344,-54.79039820017392],[-64.38844388443884,-54.81066112741251],[-64.39924399243992,-54.81741543649204],[-64.41724417244173,-54.83261263192098],[-64.4280442804428,-54.83936694100052],[-64.4460444604446,-54.84274409554028],[-64.4640446404464,-54.846121250080046],[-64.49644496444964,-54.846121250080046],[-64.49644496444964,-54.84274409554028],[-64.49284492844929,-54.83936694100052],[-64.48924489244892,-54.83598978646075],[-64.48564485644856,-54.83261263192098],[-64.48564485644856,-54.82416974557157],[-64.49644496444964,-54.82416974557157],[-64.50724507245071,-54.82754690011134],[-64.51804518045181,-54.83261263192098],[-64.52524525245252,-54.83936694100052],[-64.52164521645216,-54.83936694100052],[-64.51084510845108,-54.846121250080046],[-64.52524525245252,-54.85287555915958],[-64.5720457204572,-54.866384177318636],[-64.58284582845828,-54.87482706366805],[-64.59724597245972,-54.89340141363677],[-64.6080460804608,-54.90015572271629],[-64.6260462604626,-54.903532877256055],[-64.67644676446764,-54.903532877256055],[-64.69084690846908,-54.90015572271629],[-64.69444694446945,-54.89171283636688],[-64.69084690846908,-54.88495852728735],[-64.67644676446764,-54.87651564093794],[-64.66924669246693,-54.866384177318636],[-64.75924759247592,-54.83261263192098],[-64.7520475204752,-54.81403828195228],[-64.73044730447305,-54.802218241063095],[-64.70884708847088,-54.7920867774438],[-64.6980469804698,-54.78026673655462],[-64.68364683646836,-54.77013527293532],[-64.65124651246512,-54.77688958201486],[-64.60444604446045,-54.79884108652333],[-64.58284582845828,-54.79546393198356],[-64.52164521645216,-54.781955313824504],[-64.50364503645037,-54.77013527293532],[-64.56124561245612,-54.73805230480755],[-64.56844568445685,-54.722855109378614],[-64.54324543245433,-54.716100800299074],[-64.5360453604536,-54.719477954838844],[-64.51084510845108,-54.743118036617204],[-64.49644496444964,-54.74987234569673],[-64.4640446404464,-54.75662665477626],[-64.45324453244532,-54.75493807750638],[-64.43524435244352,-54.744806613887086],[-64.42444424444244,-54.743118036617204],[-64.41724417244173,-54.743118036617204],[-64.40644406444063,-54.743118036617204],[-64.39924399243992,-54.74818376842685],[-64.39564395643956,-54.761692386585906],[-64.39564395643956,-54.77520100474497],[-64.3920439204392,-54.781955313824504],[-64.38484384843848,-54.783643891094385],[-64.3740437404374,-54.781955313824504],[-64.37044370443704,-54.77688958201486],[-64.3740437404374,-54.77182385020521],[-64.3740437404374,-54.765069541125676],[-64.3740437404374,-54.74818376842685],[-64.37764377643776,-54.73467515026779],[-64.3740437404374,-54.721166532108725],[-64.36324363243632,-54.705969336679786],[-64.3560435604356,-54.70765791394966],[-64.34164341643417,-54.716100800299074],[-64.32364323643236,-54.722855109378614],[-64.30564305643055,-54.716100800299074],[-64.3020430204302,-54.721166532108725],[-64.29484294842948,-54.722855109378614],[-64.29124291242913,-54.722855109378614],[-64.2840428404284,-54.722855109378614],[-64.27324273242732,-54.72792084118826],[-64.24084240842409,-54.721166532108725],[-64.22284222842228,-54.722855109378614],[-64.2120421204212,-54.72960941845814],[-64.19764197641976,-54.739740882077434],[-64.18684186841868,-54.74649519115697],[-64.1760417604176,-54.74649519115697],[-64.16884168841688,-54.73805230480755],[-64.17244172441724,-54.72792084118826],[-64.1760417604176,-54.719477954838844],[-64.1580415804158,-54.716100800299074],[-64.15084150841508,-54.71778937756896],[-64.13644136441364,-54.72792084118826],[-64.12564125641256,-54.72960941845814],[-64.11844118441184,-54.72792084118826],[-64.11124111241112,-54.721166532108725],[-64.1040410404104,-54.716100800299074],[-64.09324093240932,-54.716100800299074],[-64.0860408604086,-54.721166532108725],[-64.07524075240752,-54.743118036617204],[-64.06444064440645,-54.74987234569673],[-64.05364053640535,-54.74818376842685],[-64.02484024840248,-54.7329865729979],[-63.913239132391325,-54.716100800299074],[-63.88083880838808,-54.722855109378614],[-63.888038880388805,-54.72960941845814]]],[[[-74.49374493744936,-51.97891704581922],[-74.49374493744936,-51.99242566397829],[-74.51534515345153,-52.005934282137346],[-74.62694626946269,-52.043082982074765],[-74.64134641346413,-52.05321444569406],[-74.64854648546485,-52.05996875477359],[-74.65574655746558,-52.065034486583244],[-74.66654666546665,-52.06841164112301],[-74.69174691746917,-52.07347737293266],[-74.72054720547204,-52.08360883655195],[-74.73494734947349,-52.085297413821834],[-74.73134731347314,-52.07347737293266],[-74.72054720547204,-52.0498372911543],[-74.70614706147062,-52.02619720937594],[-74.69174691746917,-52.01606574575664],[-74.6809468094681,-52.011000013947],[-74.64854648546485,-51.99242566397829],[-74.64134641346413,-51.985671354898756],[-74.62694626946269,-51.980605623089104],[-74.5441454414544,-51.921505418643214],[-74.53694536945369,-51.92825972772274],[-74.51894518945188,-51.93501403680227],[-74.5081450814508,-51.94007976861192],[-74.50094500945009,-51.9518998095011],[-74.49734497344973,-51.962031273120395],[-74.49734497344973,-51.97047415946981],[-74.49374493744936,-51.97891704581922]]],[[[-60.94680946809467,-51.946834077691456],[-60.975609756097555,-51.95358838677098],[-60.99720997209971,-51.9518998095011],[-61.0440104401044,-51.94007976861192],[-61.04041040410404,-51.92994830499263],[-61.03681036810367,-51.92657115045286],[-61.051210512105115,-51.92657115045286],[-61.05841058410584,-51.91981684137333],[-61.06201062010619,-51.91137395502392],[-61.06561065610656,-51.90630822321427],[-61.076410764107635,-51.904619645944386],[-61.09441094410944,-51.902931068674505],[-61.10521105211052,-51.899553914134735],[-61.10881108811088,-51.897865336864854],[-61.11241112411123,-51.89448818232509],[-61.1160111601116,-51.8927996050552],[-61.11961119611196,-51.8927996050552],[-61.11241112411123,-51.87084810054673],[-61.11961119611196,-51.85733948238767],[-61.1340113401134,-51.84889659603826],[-61.152011520115195,-51.84551944149849],[-61.1340113401134,-51.83201082333943],[-61.12321123211231,-51.8252565142599],[-61.10521105211052,-51.82356793699002],[-61.06561065610656,-51.8252565142599],[-61.05841058410584,-51.82356793699002],[-61.04761047610475,-51.80668216429119],[-61.02961029610296,-51.78810781432248],[-61.01521015210152,-51.78135350524295],[-61.000810008100075,-51.7762877734333],[-60.99720997209971,-51.7762877734333],[-60.98640986409863,-51.7762877734333],[-60.98280982809828,-51.7762877734333],[-60.975609756097555,-51.779664927973066],[-60.97200972009719,-51.78304208251283],[-60.97200972009719,-51.78810781432248],[-60.96840968409684,-51.78979639159236],[-60.94680946809467,-51.796550700671894],[-60.93960939609396,-51.803305009751426],[-60.94320943209432,-51.81343647337072],[-60.96480964809648,-51.82356793699002],[-61.01161011610115,-51.842142286958726],[-61.02961029610296,-51.859028059657554],[-61.03321033210332,-51.86747094600697],[-61.026010260102595,-51.86915952327685],[-60.9540095400954,-51.8539623278479],[-60.925209252092515,-51.837076555149075],[-60.90360903609036,-51.83032224606955],[-60.88920889208892,-51.818502205180366],[-60.87840878408784,-51.796550700671894],[-60.8820088200882,-51.78810781432248],[-60.89280892808928,-51.78473065978271],[-60.89640896408963,-51.78135350524295],[-60.88560885608855,-51.76953346435377],[-60.874808748087474,-51.76109057800436],[-60.864008640086396,-51.76109057800436],[-60.85680856808568,-51.766156309814],[-60.85320853208532,-51.779664927973066],[-60.85320853208532,-51.78810781432248],[-60.85680856808568,-51.798239277941775],[-60.864008640086396,-51.80837074156107],[-60.86760867608676,-51.81343647337072],[-60.874808748087474,-51.82356793699002],[-60.87840878408784,-51.84720801876837],[-60.87840878408784,-51.859028059657554],[-60.88560885608855,-51.87084810054673],[-60.90720907209072,-51.899553914134735],[-60.864008640086396,-51.899553914134735],[-60.874808748087474,-51.90799680048415],[-60.8820088200882,-51.92657115045286],[-60.88560885608855,-51.93501403680227],[-60.900009000089995,-51.94007976861192],[-60.94680946809467,-51.946834077691456]]],[[[-75.06255062550625,-51.88266814143591],[-75.07335073350733,-51.89111102778532],[-75.08775087750877,-51.897865336864854],[-75.10215102151021,-51.899553914134735],[-75.11655116551165,-51.89448818232509],[-75.12015120151202,-51.87760240962626],[-75.11295112951129,-51.860716636927435],[-75.10215102151021,-51.84383086422861],[-75.09135091350913,-51.8252565142599],[-75.10935109351094,-51.80668216429119],[-75.0949509495095,-51.7762877734333],[-75.05535055350553,-51.72563045533682],[-75.04095040950409,-51.717187568987406],[-75.01935019350194,-51.71381041444764],[-74.99774997749977,-51.715498991717524],[-74.98334983349834,-51.72225330079706],[-74.9689496894969,-51.737450496225996],[-74.97254972549725,-51.74927053711518],[-74.98694986949869,-51.76109057800436],[-74.99774997749977,-51.7762877734333],[-74.97614976149761,-51.7762877734333],[-75.00135001350013,-51.84383086422861],[-75.01215012150121,-51.86240521419732],[-75.02295022950229,-51.86915952327685],[-75.0481504815048,-51.87591383235638],[-75.06255062550625,-51.88266814143591]]],[[[-74.43614436144361,-51.84551944149849],[-74.42174421744217,-51.83538797787919],[-74.41094410944109,-51.82019078245025],[-74.41094410944109,-51.80837074156107],[-74.44334443344432,-51.798239277941775],[-74.45774457744577,-51.78810781432248],[-74.46134461344613,-51.7762877734333],[-74.44694446944469,-51.76953346435377],[-74.44694446944469,-51.76277915527424],[-74.46854468544684,-51.75264769165494],[-74.49374493744936,-51.72225330079706],[-74.5081450814508,-51.71381041444764],[-74.50454504545046,-51.70705610536811],[-74.41454414544145,-51.7273190326067],[-74.37494374943749,-51.74251622803565],[-74.37134371343713,-51.76953346435377],[-74.35694356943569,-51.76953346435377],[-74.31734317343174,-51.76277915527424],[-74.32454324543245,-51.76784488708389],[-74.32814328143282,-51.774599196163415],[-74.33174331743317,-51.779664927973066],[-74.31014310143101,-51.7864192370526],[-74.31374313743137,-51.79486212340201],[-74.31734317343174,-51.80499358702131],[-74.31374313743137,-51.81343647337072],[-74.29574295742957,-51.821879359720135],[-74.27774277742778,-51.821879359720135],[-74.23814238142381,-51.816813627910484],[-74.22734227342274,-51.82019078245025],[-74.22374223742237,-51.8252565142599],[-74.22014220142201,-51.83201082333943],[-74.21654216542166,-51.837076555149075],[-74.20574205742057,-51.838765132418956],[-74.18054180541804,-51.83538797787919],[-74.17334173341733,-51.837076555149075],[-74.16254162541625,-51.855650905117784],[-74.1769417694177,-51.86578236873708],[-74.20214202142022,-51.87084810054673],[-74.22014220142201,-51.87253667781661],[-74.18054180541804,-51.88266814143591],[-74.16254162541625,-51.88604529597568],[-74.13734137341373,-51.88604529597568],[-74.10134101341013,-51.87422525508649],[-74.09774097740977,-51.87760240962626],[-74.10494104941048,-51.899553914134735],[-74.11214112141121,-51.91137395502392],[-74.13734137341373,-51.94007976861192],[-74.14454144541445,-51.946834077691456],[-74.16614166141662,-51.9518998095011],[-74.19494194941949,-51.95021123223122],[-74.22014220142201,-51.946834077691456],[-74.24174241742418,-51.94007976861192],[-74.25254252542526,-51.92657115045286],[-74.25974259742597,-51.921505418643214],[-74.28494284942849,-51.9130625322938],[-74.29574295742957,-51.91475110956368],[-74.30654306543065,-51.9130625322938],[-74.31014310143101,-51.902931068674505],[-74.31374313743137,-51.897865336864854],[-74.32094320943209,-51.89617675959497],[-74.33174331743317,-51.8927996050552],[-74.36774367743676,-51.89111102778532],[-74.3821438214382,-51.884356718705796],[-74.38574385743857,-51.86915952327685],[-74.39294392943928,-51.8640937914672],[-74.43614436144361,-51.84551944149849]]],[[[-73.94293942939429,-51.740827650765766],[-73.93573935739357,-51.74420480530553],[-73.93213932139321,-51.75095911438506],[-73.92853928539284,-51.75771342346459],[-73.92853928539284,-51.766156309814],[-73.92853928539284,-51.7762877734333],[-73.93213932139321,-51.779664927973066],[-73.93933939339394,-51.779664927973066],[-73.97893978939788,-51.796550700671894],[-74.0149401494015,-51.799927855211656],[-74.0509405094051,-51.793173546132124],[-74.23094230942309,-51.70705610536811],[-74.24174241742418,-51.698613219018696],[-74.23454234542345,-51.68172744631987],[-74.22014220142201,-51.67159598270057],[-74.19494194941949,-51.68003886904999],[-74.18414184141841,-51.66821882816081],[-74.16974169741697,-51.66821882816081],[-74.15534155341552,-51.67159598270057],[-74.13734137341373,-51.66653025089092],[-74.13374133741337,-51.654710210001745],[-74.13374133741337,-51.6395130145728],[-74.1409414094141,-51.62600439641374],[-74.14814148141481,-51.614184355524564],[-74.14814148141481,-51.60405289190526],[-74.12294122941229,-51.60236431463538],[-74.09054090540906,-51.60574146917515],[-74.07254072540725,-51.60405289190526],[-74.10134101341013,-51.56521561469796],[-74.10494104941048,-51.553395573808785],[-74.09774097740977,-51.53819837837984],[-74.08334083340833,-51.53819837837984],[-74.06534065340654,-51.54664126472925],[-74.0509405094051,-51.55677272834855],[-74.04374043740437,-51.568592769237725],[-74.03654036540365,-51.58378996466667],[-74.03294032940329,-51.6006757373655],[-74.02934029340292,-51.614184355524564],[-74.02574025740257,-51.629381550953504],[-74.0149401494015,-51.64289016911257],[-73.99333993339933,-51.66315309635116],[-73.98973989739898,-51.678350291780106],[-73.99693996939969,-51.69017033266928],[-74.00774007740077,-51.70199037355846],[-74.00774007740077,-51.71381041444764],[-74.00054000540005,-51.72056472352717],[-73.99333993339933,-51.72056472352717],[-73.98253982539825,-51.72056472352717],[-73.97533975339753,-51.72225330079706],[-73.94653946539465,-51.73913907349588],[-73.94293942939429,-51.740827650765766]]],[[[-60.16920169201691,-51.39298073316993],[-60.24120241202412,-51.40142361951934],[-60.25560255602555,-51.39973504224946],[-60.27360273602736,-51.39466931043981],[-60.2880028800288,-51.384537846820514],[-60.29160291602916,-51.37102922866145],[-60.27720277202772,-51.35752061050239],[-60.2520025200252,-51.34907772415298],[-60.20520205202051,-51.344011992343326],[-60.19440194401943,-51.34907772415298],[-60.172801728017276,-51.367652074121686],[-60.1620016200162,-51.37271780593134],[-60.147601476014756,-51.37102922866145],[-60.13680136801368,-51.36934065139157],[-60.122401224012236,-51.36427491958192],[-60.11160111601116,-51.35752061050239],[-60.12960129601295,-51.347389146883096],[-60.183601836018354,-51.327126219644505],[-60.22320223202232,-51.32037191056497],[-60.27000270002699,-51.29842040605649],[-60.284402844028435,-51.28997751970708],[-60.29880298802988,-51.27478032427814],[-60.30240302403024,-51.26802601519861],[-60.29160291602916,-51.262960283388956],[-60.27360273602736,-51.261271706119075],[-60.26640266402664,-51.26802601519861],[-60.259202592025915,-51.27646890154802],[-60.2520025200252,-51.28660036516732],[-60.23040230402303,-51.29673182878661],[-60.20520205202051,-51.303486137866145],[-60.18000180001799,-51.305174715136026],[-60.15480154801547,-51.303486137866145],[-60.10080100801008,-51.29504325151673],[-60.07560075600756,-51.30010898332638],[-60.06480064800648,-51.32037191056497],[-60.057600576005754,-51.32543764237462],[-60.05040050400504,-51.33556910599392],[-60.05040050400504,-51.345700569613214],[-60.06120061200612,-51.35076630142286],[-60.097200972009716,-51.37947211501086],[-60.11520115201152,-51.40142361951934],[-60.11880118801187,-51.406489351328986],[-60.12960129601295,-51.404800774059105],[-60.158401584015834,-51.39466931043981],[-60.16920169201691,-51.39298073316993]]],[[[-59.7479974799748,-51.283223210627554],[-59.79119791197911,-51.27646890154802],[-59.79839798397984,-51.27309174700826],[-59.80559805598055,-51.264648860658845],[-59.80919809198092,-51.25620597430943],[-59.80559805598055,-51.2494516652299],[-59.79119791197911,-51.24776308796002],[-59.76599765997659,-51.241008778880484],[-59.74079740797407,-51.246074510690136],[-59.71559715597155,-51.25620597430943],[-59.69039690396903,-51.262960283388956],[-59.58959589595895,-51.25451739703954],[-59.57879578795787,-51.25620597430943],[-59.57879578795787,-51.261271706119075],[-59.57879578795787,-51.264648860658845],[-59.57879578795787,-51.26971459246849],[-59.57159571595716,-51.27646890154802],[-59.567995679956795,-51.283223210627554],[-59.56079560795608,-51.2882889424372],[-59.54639546395464,-51.28997751970708],[-59.53919539195391,-51.28660036516732],[-59.53559535595356,-51.279846056087784],[-59.5319953199532,-51.27478032427814],[-59.52839528395283,-51.26971459246849],[-59.517595175951755,-51.264648860658845],[-59.51039510395104,-51.262960283388956],[-59.50319503195031,-51.262960283388956],[-59.47799477994779,-51.26802601519861],[-59.46359463594635,-51.28153463335767],[-59.45279452794527,-51.30179756059626],[-59.44559445594456,-51.323749065104735],[-59.47079470794708,-51.327126219644505],[-59.4959949599496,-51.33556910599392],[-59.55359553595535,-51.3372576832638],[-59.57519575195751,-51.33050337418427],[-59.61119611196112,-51.29673182878661],[-59.63639636396364,-51.28997751970708],[-59.7479974799748,-51.283223210627554]]],[[[-74.24894248942489,-51.23425446980095],[-74.26334263342633,-51.241008778880484],[-74.27774277742778,-51.242697356150366],[-74.28494284942849,-51.23594304707083],[-74.28494284942849,-51.21399154256236],[-74.28494284942849,-51.19710576986353],[-74.28854288542885,-51.180219997164706],[-74.31734317343174,-51.10929975182963],[-74.33174331743317,-51.03162519741503],[-74.33534335343353,-51.014739424716204],[-74.33174331743317,-50.99447649747761],[-74.32454324543245,-50.974213570239016],[-74.32094320943209,-50.96408210661972],[-74.32454324543245,-50.953950643000425],[-74.33174331743317,-50.94719633392089],[-74.3389433894339,-50.94213060211125],[-74.34614346143461,-50.9370648703016],[-74.35334353343534,-50.92524482941242],[-74.32454324543245,-50.92186767487265],[-74.3029430294303,-50.93875344757148],[-74.28854288542885,-50.96745926115949],[-74.28494284942849,-50.997853652017376],[-74.27774277742778,-51.02318231106562],[-74.24174241742418,-51.06877389735245],[-74.22734227342274,-51.13125125633811],[-74.19854198541985,-51.17515426535506],[-74.20214202142022,-51.200482924403296],[-74.20934209342093,-51.20892581075271],[-74.24894248942489,-51.23425446980095]]],[[[-75.12735127351273,-50.49465762559233],[-75.10575105751057,-50.49634620286221],[-75.09855098550985,-50.498034780132095],[-75.09855098550985,-50.503100511941746],[-75.11295112951129,-50.523363439180336],[-75.12015120151202,-50.53349490279963],[-75.1309513095131,-50.541937789149046],[-75.13815138151381,-50.54869209822858],[-75.15615156151561,-50.55038067549846],[-75.16695166951669,-50.55038067549846],[-75.1741517415174,-50.55375783003823],[-75.18135181351813,-50.57064360273705],[-75.18855188551885,-50.563889293657525],[-75.19575195751958,-50.55882356184787],[-75.20655206552065,-50.55713498457799],[-75.21375213752137,-50.55713498457799],[-75.20295202952029,-50.58077506635635],[-75.20295202952029,-50.59259510724553],[-75.21375213752137,-50.59766083905517],[-75.24615246152462,-50.59766083905517],[-75.26775267752677,-50.58921795270576],[-75.30015300153,-50.55713498457799],[-75.32175321753218,-50.54869209822858],[-75.3469534695347,-50.560512139117755],[-75.27135271352714,-50.621300920833534],[-75.28935289352893,-50.644941002611894],[-75.29655296552966,-50.63818669353236],[-75.30375303753037,-50.644941002611894],[-75.28215282152821,-50.65338388896131],[-75.27135271352714,-50.65844962077095],[-75.26415264152641,-50.666892507120366],[-75.27495274952749,-50.67533539346978],[-75.28215282152821,-50.68040112527943],[-75.28215282152821,-50.685466857089075],[-75.28575285752858,-50.69390974343849],[-75.28215282152821,-50.69897547524814],[-75.27855278552785,-50.709106938867436],[-75.28215282152821,-50.71586124794697],[-75.30375303753037,-50.71417267067708],[-75.30375303753037,-50.72092697975661],[-75.28935289352893,-50.727681288836145],[-75.27855278552785,-50.73950132972532],[-75.27495274952749,-50.75469852515427],[-75.27855278552785,-50.769895720583214],[-75.28935289352893,-50.78171576147239],[-75.30735307353073,-50.790158647821805],[-75.32535325353253,-50.788470070551924],[-75.33615336153362,-50.77665002966274],[-75.33615336153362,-50.769895720583214],[-75.33255332553325,-50.75807567969403],[-75.33255332553325,-50.751321370614505],[-75.33615336153362,-50.7411899069952],[-75.3469534695347,-50.746255638804854],[-75.35775357753577,-50.75807567969403],[-75.35775357753577,-50.76314141150368],[-75.38655386553866,-50.771584297853096],[-75.41175411754118,-50.771584297853096],[-75.4621546215462,-50.76314141150368],[-75.45855458554585,-50.75469852515427],[-75.45135451354513,-50.747944216074735],[-75.44415444154441,-50.74456706153497],[-75.43335433354333,-50.7411899069952],[-75.44775447754478,-50.72430413429638],[-75.45495454954549,-50.7124840934072],[-75.45135451354513,-50.707418361597554],[-75.4369543695437,-50.705729784327666],[-75.42255422554226,-50.7023526297879],[-75.41175411754118,-50.69390974343849],[-75.40815408154081,-50.683778279819194],[-75.40815408154081,-50.6736468161999],[-75.40815408154081,-50.67195823893002],[-75.48375483754837,-50.67533539346978],[-75.49815498154982,-50.67195823893002],[-75.5089550895509,-50.665203929850485],[-75.51255512555124,-50.65676104350107],[-75.51255512555124,-50.64831815715166],[-75.50175501755017,-50.644941002611894],[-75.48735487354872,-50.646629579881775],[-75.47655476554765,-50.644941002611894],[-75.46935469354693,-50.63649811626248],[-75.46935469354693,-50.621300920833534],[-75.45495454954549,-50.60610372540459],[-75.4261542615426,-50.604415148134706],[-75.37215372153722,-50.61116945721424],[-75.37575375753757,-50.60610372540459],[-75.37935379353793,-50.59597226178529],[-75.37935379353793,-50.59090652997565],[-75.35775357753577,-50.59090652997565],[-75.37575375753757,-50.57233218000694],[-75.39015390153901,-50.55206925276834],[-75.40815408154081,-50.53856063460928],[-75.43335433354333,-50.53518348006951],[-75.43335433354333,-50.53180632552975],[-75.42975429754297,-50.519986284640574],[-75.4261542615426,-50.51492055283092],[-75.44055440554405,-50.51492055283092],[-75.45135451354513,-50.51154339829116],[-75.4621546215462,-50.50478908921163],[-75.46935469354693,-50.49465762559233],[-75.4621546215462,-50.49128047105257],[-75.45135451354513,-50.48959189378268],[-75.43335433354333,-50.4879033165128],[-75.42255422554226,-50.48452616197304],[-75.41535415354153,-50.464263234734446],[-75.40455404554045,-50.460886080194676],[-75.3829538295383,-50.464263234734446],[-75.37215372153722,-50.47439469835374],[-75.36135361353614,-50.48621473924292],[-75.35415354153541,-50.501411934671864],[-75.33975339753397,-50.4879033165128],[-75.33615336153362,-50.47439469835374],[-75.33255332553325,-50.46595181200433],[-75.3109531095311,-50.46764038927421],[-75.30015300153,-50.47439469835374],[-75.28935289352893,-50.49465762559233],[-75.27855278552785,-50.501411934671864],[-75.26775267752677,-50.49972335740198],[-75.26055260552606,-50.49634620286221],[-75.2569525695257,-50.49128047105257],[-75.2569525695257,-50.4879033165128],[-75.24975249752497,-50.49128047105257],[-75.24255242552425,-50.49465762559233],[-75.23895238952389,-50.49972335740198],[-75.23535235352354,-50.501411934671864],[-75.23175231752317,-50.503100511941746],[-75.22815228152281,-50.50478908921163],[-75.22455224552245,-50.50816624375139],[-75.21375213752137,-50.50816624375139],[-75.20655206552065,-50.50647766648151],[-75.20295202952029,-50.501411934671864],[-75.19935199351993,-50.498034780132095],[-75.19575195751958,-50.49465762559233],[-75.16335163351633,-50.49296904832245],[-75.12735127351273,-50.49465762559233]]],[[[-75.10575105751057,-48.96987235088825],[-75.13455134551346,-48.97156092815814],[-75.16335163351633,-48.98675812358708],[-75.19575195751958,-48.995201009936494],[-75.22455224552245,-48.978315237237666],[-75.23535235352354,-48.956363732729194],[-75.24615246152462,-48.92428076460142],[-75.24975249752497,-48.893886373743534],[-75.23535235352354,-48.870246291965174],[-75.25335253352533,-48.86855771469529],[-75.26775267752677,-48.86180340561576],[-75.28215282152821,-48.853360519266346],[-75.28935289352893,-48.84322905564705],[-75.30375303753037,-48.81621181932893],[-75.30735307353073,-48.80101462389999],[-75.30735307353073,-48.794260314820455],[-75.27495274952749,-48.79763746936022],[-75.21015210152102,-48.81114608751928],[-75.12015120151202,-48.84998336472658],[-75.09135091350913,-48.870246291965174],[-75.08055080550805,-48.893886373743534],[-75.08415084150842,-48.90401783736283],[-75.09135091350913,-48.914149300982125],[-75.10215102151021,-48.92259218733154],[-75.10935109351094,-48.9259693418713],[-75.12735127351273,-48.919215032791776],[-75.13455134551346,-48.917526455521894],[-75.13815138151381,-48.92259218733154],[-75.13815138151381,-48.92934649641107],[-75.1309513095131,-48.934412228220715],[-75.12015120151202,-48.937789382760485],[-75.11295112951129,-48.939477960030366],[-75.07695076950769,-48.92934649641107],[-75.06615066150661,-48.94792084637978],[-75.07335073350733,-48.96987235088825],[-75.10575105751057,-48.96987235088825]]],[[[-75.18135181351813,-47.83177127098732],[-75.19215192151921,-47.80813118920896],[-75.2209522095221,-47.79124541651013],[-75.26775267752677,-47.77604822108119],[-75.30375303753037,-47.767605334731776],[-75.34335343353433,-47.782802530160716],[-75.33255332553325,-47.75916244838236],[-75.35415354153541,-47.735522366604],[-75.33615336153362,-47.722013748444944],[-75.31815318153181,-47.706816553016],[-75.29655296552966,-47.70343939847623],[-75.26775267752677,-47.71188228482564],[-75.24615246152462,-47.723702325714825],[-75.21015210152102,-47.71694801663529],[-75.1849518495185,-47.71188228482564],[-75.16695166951669,-47.70850513028588],[-75.15255152551525,-47.70343939847623],[-75.15255152551525,-47.69837366666658],[-75.11655116551165,-47.679799316697874],[-75.09135091350913,-47.679799316697874],[-75.07695076950769,-47.701750821206346],[-75.06255062550625,-47.73383378933412],[-75.0589505895059,-47.75071956203295],[-75.0949509495095,-47.76591675746189],[-75.10575105751057,-47.76591675746189],[-75.11655116551165,-47.77098248927154],[-75.12375123751237,-47.781113952890834],[-75.11655116551165,-47.786179684700485],[-75.10215102151021,-47.7844911074306],[-75.08775087750877,-47.77773679835107],[-75.07695076950769,-47.77267106654142],[-75.06975069750698,-47.77942537562095],[-75.04455044550446,-47.79124541651013],[-75.02295022950229,-47.80306545739931],[-75.05175051750517,-47.823328384637904],[-75.0949509495095,-47.82670553917767],[-75.09855098550985,-47.83177127098732],[-75.1309513095131,-47.84021415733673],[-75.15975159751598,-47.83683700279696],[-75.22815228152281,-47.85541135276567],[-75.2209522095221,-47.84696846641626],[-75.19575195751958,-47.83683700279696],[-75.18135181351813,-47.83177127098732]]],[[[-74.8861488614886,-47.71188228482564],[-74.86094860948609,-47.743965252953416],[-74.86814868148682,-47.762539602922125],[-74.9329493294933,-47.77267106654142],[-74.95814958149582,-47.7743596438113],[-74.9689496894969,-47.77267106654142],[-74.98334983349834,-47.76591675746189],[-75.0049500495005,-47.75240813930283],[-75.02655026550265,-47.738899521143765],[-75.03735037350373,-47.71188228482564],[-75.05535055350553,-47.68993078031717],[-75.04095040950409,-47.66629069853881],[-75.00135001350013,-47.662913543999046],[-74.95094950949509,-47.67811073942799],[-74.90414904149041,-47.68655362577741],[-74.8861488614886,-47.71188228482564]]],[[[-73.72333723337233,-46.05032225126107],[-73.71253712537126,-46.058765137610486],[-73.69813698136981,-46.06383086942013],[-73.68733687336874,-46.072273755769544],[-73.68013680136801,-46.08747095119849],[-73.68373683736837,-46.1060453011672],[-73.70893708937089,-46.12630822840579],[-73.7161371613716,-46.139816846564855],[-73.7161371613716,-46.14319400110462],[-73.72333723337233,-46.14319400110462],[-73.73053730537305,-46.14657115564438],[-73.73413734137341,-46.15332546472391],[-73.73773737737378,-46.17189981469262],[-73.74493744937449,-46.18709701012157],[-73.75933759337593,-46.197228473740864],[-73.77373773737737,-46.198917051010746],[-73.79173791737917,-46.197228473740864],[-73.80973809738097,-46.19047416466133],[-73.82053820538205,-46.18203127831192],[-73.83133831338313,-46.16683408288298],[-73.83133831338313,-46.16345692834321],[-73.82773827738276,-46.15163688745403],[-73.82053820538205,-46.14319400110462],[-73.80973809738097,-46.13812826929497],[-73.82413824138241,-46.134751114755204],[-73.8421384213842,-46.12968538294555],[-73.89253892538925,-46.094225260278016],[-73.92853928539284,-46.077339487579195],[-73.93933939339394,-46.06889660122978],[-73.91773917739177,-46.02837074675259],[-73.91053910539105,-46.016550705863416],[-73.89613896138961,-46.011484974053765],[-73.87453874538745,-46.009796396783884],[-73.83853838538386,-46.013173551323646],[-73.82413824138241,-46.01992786040318],[-73.79173791737917,-46.04187936491166],[-73.78093780937809,-46.0469450967213],[-73.7521375213752,-46.04187936491166],[-73.73773737737378,-46.04187936491166],[-73.72333723337233,-46.05032225126107]]],[[[-73.74133741337413,-45.7936585062389],[-73.7161371613716,-45.81223285620761],[-73.70893708937089,-45.83756151525585],[-73.70893708937089,-45.86457875157397],[-73.69453694536945,-45.88821883335233],[-73.7161371613716,-45.886530256082445],[-73.73773737737378,-45.87808736973303],[-73.7629376293763,-45.871333060653505],[-73.78813788137882,-45.87639879246315],[-73.80253802538024,-45.891595987892096],[-73.81333813338134,-45.915236069670456],[-73.82413824138241,-45.930433265099396],[-73.84573845738457,-45.92367895601986],[-73.8421384213842,-45.933810419639165],[-73.8421384213842,-45.93887615144881],[-73.83853838538386,-45.94394188325846],[-73.85653856538565,-45.967581965036814],[-73.88173881738817,-45.98109058319588],[-73.91053910539105,-45.98277916046576],[-73.93573935739357,-45.972647696846465],[-73.94653946539465,-45.93887615144881],[-73.94653946539465,-45.92536753328975],[-73.93933939339394,-45.910170337860805],[-73.92853928539284,-45.89328456516198],[-73.91053910539105,-45.87471021519327],[-73.89253892538925,-45.86120159703421],[-73.87453874538745,-45.85444728795468],[-73.83493834938349,-45.849381556145026],[-73.80253802538024,-45.83587293798597],[-73.74133741337413,-45.7936585062389]]],[[[-73.66573665736657,-45.43736870229365],[-73.62973629736297,-45.44412301137318],[-73.60453604536045,-45.457631629532244],[-73.58653586535866,-45.479583134040716],[-73.58293582935829,-45.51335467943837],[-73.58653586535866,-45.520108988517904],[-73.590135901359,-45.52686329759743],[-73.59733597335973,-45.53361760667696],[-73.59733597335973,-45.54374907029626],[-73.59733597335973,-45.56738915207462],[-73.59733597335973,-45.57414346115415],[-73.60813608136081,-45.58934065658309],[-73.61893618936189,-45.60453785201204],[-73.62253622536225,-45.61973504744098],[-73.61173611736118,-45.62986651106028],[-73.62973629736297,-45.63662082013981],[-73.64773647736477,-45.63493224286992],[-73.68013680136801,-45.623112201980746],[-73.66933669336693,-45.645063706489225],[-73.66213662136622,-45.65519517010852],[-73.65493654936549,-45.663638056457934],[-73.62973629736297,-45.67208094280735],[-73.61893618936189,-45.67883525188687],[-73.61173611736118,-45.69065529277606],[-73.61533615336153,-45.71429537455441],[-73.62973629736297,-45.73793545633277],[-73.65493654936549,-45.75313265176172],[-73.68013680136801,-45.75313265176172],[-73.69813698136981,-45.72949256998336],[-73.71973719737197,-45.705852488205],[-73.76653766537665,-45.680523829156755],[-73.77733777337772,-45.67376952007723],[-73.78453784537845,-45.67039236553746],[-73.80613806138061,-45.6568837473784],[-73.81693816938169,-45.641686551949455],[-73.80613806138061,-45.63493224286992],[-73.74133741337413,-45.60960358382169],[-73.74133741337413,-45.601160697472274],[-73.78453784537845,-45.5690777293445],[-73.77013770137701,-45.51166610216849],[-73.72333723337233,-45.457631629532244],[-73.66573665736657,-45.43736870229365]]],[[[-73.96093960939609,-44.81090653516717],[-73.97533975339753,-44.834546616945524],[-74.0041400414004,-44.84805523510459],[-74.04014040140402,-44.85312096691423],[-74.07254072540725,-44.85480954418412],[-74.09774097740977,-44.841300926025056],[-74.1769417694177,-44.817660844246696],[-74.18774187741877,-44.80584080335752],[-74.16614166141662,-44.800775071547875],[-74.04014040140402,-44.78388929884905],[-74.01134011340113,-44.77375783522975],[-73.99693996939969,-44.77206925795986],[-73.97173971739717,-44.77544641249963],[-73.96453964539646,-44.78051214430928],[-73.96093960939609,-44.79064360792857],[-73.96093960939609,-44.81090653516717]]],[[[-73.93213932139321,-44.78895503065869],[-73.91053910539105,-44.77544641249963],[-73.89613896138961,-44.7686921034201],[-73.88533885338853,-44.76531494888034],[-73.85293852938528,-44.7686921034201],[-73.83853838538386,-44.78388929884905],[-73.81693816938169,-44.834546616945524],[-73.7629376293763,-44.92910694405896],[-73.77733777337772,-44.945992716757786],[-73.79533795337953,-44.95612418037708],[-73.81333813338134,-44.961189912186725],[-73.83853838538386,-44.95781275764696],[-73.88173881738817,-44.92741836678908],[-73.9249392493925,-44.89195824412154],[-73.92853928539284,-44.881826780502244],[-73.92853928539284,-44.86494100780342],[-73.92853928539284,-44.85480954418412],[-73.91773917739177,-44.858186698723884],[-73.8889388893889,-44.883515357772126],[-73.87453874538745,-44.89026966685166],[-73.85653856538565,-44.8953353986613],[-73.86733867338673,-44.88858108958177],[-73.8781387813878,-44.878449625962475],[-73.88533885338853,-44.8666295850733],[-73.8889388893889,-44.84467808056482],[-73.89613896138961,-44.83792377148529],[-73.90693906939069,-44.834546616945524],[-73.92133921339213,-44.827792307866],[-73.93213932139321,-44.821037998786466],[-73.93933939339394,-44.81259511243705],[-73.93933939339394,-44.802463648817756],[-73.93213932139321,-44.78895503065869]]],[[[-73.60453604536045,-44.74505202164174],[-73.60453604536045,-44.758560639800805],[-73.62253622536225,-44.78051214430928],[-73.62253622536225,-44.78895503065869],[-73.61173611736118,-44.81259511243705],[-73.6261362613626,-44.82948088513588],[-73.65133651336512,-44.839612348755175],[-73.67653676536764,-44.839612348755175],[-73.70173701737016,-44.834546616945524],[-73.72693726937268,-44.821037998786466],[-73.74853748537485,-44.802463648817756],[-73.75573755737557,-44.778823567039396],[-73.74133741337413,-44.75518348526104],[-73.7161371613716,-44.75180633072127],[-73.69093690936909,-44.753494907991154],[-73.66213662136622,-44.74167486710198],[-73.65133651336512,-44.734920558022445],[-73.63333633336333,-44.73154340348268],[-73.61533615336153,-44.734920558022445],[-73.60453604536045,-44.74505202164174]]],[[[-73.65853658536585,-44.675820353576555],[-73.64053640536405,-44.677508930846436],[-73.6261362613626,-44.675820353576555],[-73.61533615336153,-44.677508930846436],[-73.60093600936008,-44.68764039446573],[-73.590135901359,-44.70621474443444],[-73.60453604536045,-44.716346208053736],[-73.6261362613626,-44.71803478532362],[-73.64773647736477,-44.71803478532362],[-73.71253712537126,-44.736609135292326],[-73.7521375213752,-44.74167486710198],[-73.77013770137701,-44.72478909440315],[-73.78813788137882,-44.70452616716456],[-73.83853838538386,-44.66400031268737],[-73.84573845738457,-44.652180271798194],[-73.83133831338313,-44.6420488081789],[-73.82053820538205,-44.653868849068076],[-73.81693816938169,-44.63698307636925],[-73.81693816938169,-44.613342994590894],[-73.82053820538205,-44.60152295370171],[-73.82773827738276,-44.594768644622185],[-73.82053820538205,-44.57788287192336],[-73.80973809738097,-44.56268567649441],[-73.79533795337953,-44.552554212875116],[-73.77733777337772,-44.550865635605234],[-73.75573755737557,-44.552554212875116],[-73.73413734137341,-44.550865635605234],[-73.71973719737197,-44.5441113265257],[-73.69813698136981,-44.53735701744617],[-73.68013680136801,-44.5441113265257],[-73.66213662136622,-44.55930852195465],[-73.65493654936549,-44.57450571738359],[-73.6729367293673,-44.57450571738359],[-73.66213662136622,-44.58632575827277],[-73.63333633336333,-44.60827726278124],[-73.6261362613626,-44.62178588094031],[-73.6261362613626,-44.64036023090902],[-73.6369363693637,-44.653868849068076],[-73.64773647736477,-44.66400031268737],[-73.65853658536585,-44.675820353576555]]],[[[-74.02934029340292,-44.35499067229884],[-74.00054000540005,-44.35667924956872],[-73.95013950139501,-44.34823636321931],[-73.92853928539284,-44.35499067229884],[-73.93573935739357,-44.3786307540772],[-73.92853928539284,-44.43097664944356],[-73.93933939339394,-44.451239576682156],[-73.98973989739898,-44.41915660855438],[-74.00774007740077,-44.41240229947485],[-74.02934029340292,-44.409025144935086],[-74.04374043740437,-44.40564799039532],[-74.06174061740617,-44.39213937223626],[-74.07974079740796,-44.383696485886844],[-74.09054090540906,-44.37525359953743],[-74.09774097740977,-44.365122135918135],[-74.10494104941048,-44.33979347686989],[-74.11214112141121,-44.32797343598072],[-74.09054090540906,-44.3195305496313],[-74.06894068940689,-44.3296620132506],[-74.0509405094051,-44.34317063140966],[-74.02934029340292,-44.35499067229884]]],[[[-74.10854108541085,-44.22665879978776],[-74.12654126541265,-44.19964156346963],[-74.11214112141121,-44.18951009985034],[-74.07974079740796,-44.18951009985034],[-74.0509405094051,-44.19626440892986],[-74.0509405094051,-44.18951009985034],[-74.05814058140581,-44.182755790770806],[-74.06894068940689,-44.16924717261174],[-74.07254072540725,-44.15573855445268],[-74.06534065340654,-44.14898424537315],[-74.04734047340473,-44.15236139991291],[-74.03654036540365,-44.162492863532215],[-73.99693996939969,-44.201330140739515],[-73.98253982539825,-44.20808444981905],[-73.91413914139142,-44.21483875889857],[-73.90333903339032,-44.221593067978105],[-73.89253892538925,-44.240167417946815],[-73.91413914139142,-44.241855995216696],[-73.94653946539465,-44.241855995216696],[-73.97173971739717,-44.24861030429623],[-73.98613986139861,-44.25367603610588],[-73.99693996939969,-44.25367603610588],[-74.00774007740077,-44.25705319064564],[-74.0149401494015,-44.27225038607459],[-74.0149401494015,-44.28575900423365],[-73.98973989739898,-44.32797343598072],[-74.01854018540185,-44.32797343598072],[-74.03294032940329,-44.326284858710835],[-74.04374043740437,-44.321219126901184],[-74.0941409414094,-44.282381849693884],[-74.10134101341013,-44.26887323153482],[-74.10134101341013,-44.240167417946815],[-74.10854108541085,-44.22665879978776]]],[[[-74.14454144541445,-43.828154564095435],[-74.11574115741158,-43.809580214126726],[-74.04374043740437,-43.79607159596767],[-73.99693996939969,-43.81464594593638],[-73.9681396813968,-43.828154564095435],[-73.91413914139142,-43.812957368666495],[-73.92133921339213,-43.79944875050743],[-73.90333903339032,-43.794383018697786],[-73.8781387813878,-43.7926944414279],[-73.86373863738638,-43.789317286888135],[-73.86733867338673,-43.770742936919426],[-73.86373863738638,-43.76230005057001],[-73.85653856538565,-43.76736578237966],[-73.79173791737917,-43.82984314136532],[-73.77373773737737,-43.85517180041356],[-73.7629376293763,-43.888943345811214],[-73.84573845738457,-43.89232050035098],[-73.87093870938709,-43.888943345811214],[-73.90693906939069,-43.87374615038227],[-73.91413914139142,-43.86868041857262],[-73.90333903339032,-43.86023753222321],[-73.87453874538745,-43.85854895495333],[-73.86373863738638,-43.846728914064144],[-73.89253892538925,-43.83997460498462],[-73.92853928539284,-43.83997460498462],[-73.96093960939609,-43.850106068603914],[-73.97533975339753,-43.86868041857262],[-73.95733957339573,-43.8805004594618],[-73.91773917739177,-43.895697654890746],[-73.90693906939069,-43.909206273049804],[-73.93213932139321,-43.912583427589574],[-73.97173971739717,-43.934534932098046],[-73.99693996939969,-43.93622350936793],[-74.00774007740077,-43.9294692002884],[-74.0149401494015,-43.91933773666911],[-74.02214022140221,-43.909206273049804],[-74.02214022140221,-43.89907480943051],[-74.03294032940329,-43.89232050035098],[-74.0509405094051,-43.894009077620865],[-74.08334083340833,-43.90245196397028],[-74.13734137341373,-43.890631923081095],[-74.14814148141481,-43.88556619127145],[-74.16254162541625,-43.87712330492204],[-74.16614166141662,-43.875434727652156],[-74.16614166141662,-43.87374615038227],[-74.16614166141662,-43.86023753222321],[-74.16614166141662,-43.85348322314368],[-74.14814148141481,-43.84335175952438],[-74.14454144541445,-43.828154564095435]]],[[[-74.81774817748177,-43.63565675532881],[-74.81414814148141,-43.61877098262998],[-74.82494824948249,-43.59513090085162],[-74.82854828548285,-43.57149081907327],[-74.82494824948249,-43.563047932723855],[-74.81054810548105,-43.56642508726362],[-74.78534785347853,-43.57486797361303],[-74.76374763747637,-43.56980224180339],[-74.74574745747456,-43.56642508726362],[-74.74214742147421,-43.55122789183468],[-74.74574745747456,-43.53603069640573],[-74.73854738547385,-43.53096496459608],[-74.7169471694717,-43.53265354186597],[-74.69534695346952,-43.541096428215376],[-74.6809468094681,-43.55291646910456],[-74.64854648546485,-43.55460504637444],[-74.61974619746196,-43.5782451281528],[-74.58374583745837,-43.59850805539139],[-74.55854558545585,-43.627213868979396],[-74.58014580145802,-43.63565675532881],[-74.67374673746737,-43.63903390986857],[-74.72414724147241,-43.65254252802764],[-74.73854738547385,-43.67111687799635],[-74.760147601476,-43.67618260980599],[-74.77454774547745,-43.67449403253611],[-74.78894788947889,-43.65760825983728],[-74.81774817748177,-43.63565675532881]]],[[[-61.9080190801908,-39.137286908361304],[-61.90441904419043,-39.13222117655165],[-61.893618936189355,-39.14066406290107],[-61.87921879218791,-39.16092699013966],[-61.86121861218612,-39.20989573096626],[-61.85761857618576,-39.2250929263952],[-61.868418684186835,-39.238601544554264],[-61.89001890018899,-39.240290121824145],[-61.91161911619116,-39.23353581274461],[-61.926019260192604,-39.2250929263952],[-61.94041940419403,-39.21158430823614],[-62.005220052200514,-39.19469853553731],[-62.026820268202684,-39.182878494648136],[-62.044820448204476,-39.16936987648907],[-62.08442084420844,-39.12377829020224],[-62.09882098820988,-39.10351536296365],[-62.09882098820988,-39.0883181675347],[-62.077220772207724,-39.08494101299494],[-62.04122041220411,-39.10013820842388],[-61.94041940419403,-39.117023981122706],[-61.92241922419224,-39.14404121744083],[-61.918819188191875,-39.15248410379024],[-61.91521915219151,-39.15248410379024],[-61.9080190801908,-39.1474183719806],[-61.9080190801908,-39.137286908361304]]],[[[167.52227522275223,-22.568966736272266],[167.53307533075332,-22.587541086240975],[167.5438754387544,-22.59767254986027],[167.5546755467555,-22.61286974528921],[167.5546755467555,-22.63819840433745],[167.5438754387544,-22.629755517988038],[167.52947529475296,-22.606115436209684],[167.52227522275223,-22.604426858939796],[167.5150751507515,-22.61118116801933],[167.5150751507515,-22.624689786178394],[167.52227522275223,-22.648329867956747],[167.50787507875077,-22.670281372465226],[167.47547475474755,-22.666904217925456],[167.41787417874178,-22.644952713416984],[167.4250742507425,-22.619624054368742],[167.4250742507425,-22.562212427192733],[167.43227432274324,-22.541949499954143],[167.45027450274506,-22.538572345414373],[167.47547475474755,-22.543638077224024],[167.50427504275046,-22.5554581181132],[167.52227522275223,-22.568966736272266]]],[[[-175.06435064350643,-21.123544593252674],[-175.05355053550537,-21.13198747960209],[-175.049950499505,-21.138741788681614],[-175.05355053550537,-21.15562756138044],[-175.06075060750607,-21.164070447729856],[-175.11835118351183,-21.202907724937162],[-175.1219512195122,-21.211350611286576],[-175.11835118351183,-21.223170652175753],[-175.11475114751147,-21.23330211579505],[-175.11475114751147,-21.243433579414344],[-175.11835118351183,-21.25525362030352],[-175.12555125551256,-21.262007929383053],[-175.13635136351363,-21.265385083922823],[-175.14715147151472,-21.268762238462585],[-175.16875168751687,-21.263696506652934],[-175.17955179551797,-21.25525362030352],[-175.19755197551976,-21.226547806715516],[-175.20835208352082,-21.21472776582634],[-175.25875258752586,-21.19277626131786],[-175.2659526595266,-21.1995305703974],[-175.2911529115291,-21.186021952238335],[-175.30555305553057,-21.180956220428683],[-175.31635316353163,-21.179267643158795],[-175.32715327153272,-21.174201911349158],[-175.34875348753488,-21.140430365951502],[-175.3631536315363,-21.113413129633372],[-175.3559535595356,-21.08977304785502],[-175.3307533075331,-21.071198697886302],[-175.30555305553057,-21.06275581153689],[-175.319953199532,-21.076264429695954],[-175.33435334353342,-21.08977304785502],[-175.34155341553415,-21.103281666014084],[-175.32715327153272,-21.11679028417315],[-175.31635316353163,-21.121856015982786],[-175.30555305553057,-21.121856015982786],[-175.25155251552516,-21.111724552363498],[-175.24075240752407,-21.113413129633372],[-175.23355233552334,-21.118478861443023],[-175.22635226352264,-21.123544593252674],[-175.2191521915219,-21.1302989023322],[-175.21555215552155,-21.140430365951502],[-175.229952299523,-21.15056182957079],[-175.2371523715237,-21.159004715920204],[-175.23355233552334,-21.169136179539507],[-175.22275222752228,-21.17251333407927],[-175.2119521195212,-21.169136179539507],[-175.2047520475205,-21.16238187045998],[-175.1939519395194,-21.15731613865033],[-175.17955179551797,-21.160693293190093],[-175.16155161551615,-21.169136179539507],[-175.15435154351545,-21.17251333407927],[-175.139951399514,-21.169136179539507],[-175.13275132751326,-21.15731613865033],[-175.12915129151293,-21.143807520491265],[-175.11475114751147,-21.1302989023322],[-175.1039510395104,-21.126921747792437],[-175.08955089550895,-21.123544593252674],[-175.0787507875079,-21.121856015982786],[-175.06435064350643,-21.123544593252674]]],[[[166.6366663666637,-20.424473603521236],[166.64746647466478,-20.43291648987065],[166.67266672666727,-20.446425108029715],[166.679866798668,-20.45317941710924],[166.67266672666727,-20.463310880728542],[166.66186661866618,-20.466688035268305],[166.63306633066333,-20.466688035268305],[166.62226622266223,-20.470065189808068],[166.61146611466114,-20.476819498887593],[166.6042660426604,-20.486950962506896],[166.6042660426604,-20.497082426126198],[166.6006660066601,-20.50045958066596],[166.58626586265865,-20.53760828060338],[166.57906579065792,-20.549428321492556],[166.57906579065792,-20.564625516921495],[166.58266582665829,-20.5933313305095],[166.58626586265865,-20.60008563958904],[166.6006660066601,-20.60008563958904],[166.62946629466296,-20.596708485049277],[166.589865898659,-20.665940153114462],[166.57546575465756,-20.684514503083165],[166.5610656106561,-20.694645966702467],[166.5358653586536,-20.70477743032177],[166.51426514265142,-20.711531739401295],[166.4926649266493,-20.713220316671183],[166.48546485464857,-20.706466007591644],[166.47826478264784,-20.699711698512118],[166.49626496264966,-20.69295738943258],[166.51066510665106,-20.68282592581329],[166.5358653586536,-20.659185844034937],[166.55026550265507,-20.637234339526458],[166.55746557465574,-20.623725721367393],[166.5610656106561,-20.606839948668565],[166.5610656106561,-20.546051166952793],[166.56466564665647,-20.53085397152384],[166.57546575465756,-20.51734535336479],[166.589865898659,-20.497082426126198],[166.6006660066601,-20.476819498887593],[166.6042660426604,-20.45824514891889],[166.6006660066601,-20.439670798950175],[166.57906579065792,-20.414342139901933],[166.5718657186572,-20.40589925355252],[166.56826568265683,-20.407587830822408],[166.5610656106561,-20.41096498536217],[166.56466564665647,-20.402522099012756],[166.57546575465756,-20.39239063539347],[166.589865898659,-20.38563632631393],[166.6042660426604,-20.383947749044054],[166.6150661506615,-20.389013480853706],[166.62226622266223,-20.400833521742882],[166.62946629466296,-20.414342139901933],[166.6366663666637,-20.424473603521236]]],[[[169.84069840698407,-20.14079262218094],[169.86229862298626,-20.155989817609893],[169.87669876698766,-20.164432703959307],[169.88749887498875,-20.174564167578595],[169.89829898298984,-20.19313851754731],[169.88749887498875,-20.216778599325664],[169.88029880298802,-20.23028721748473],[169.8730987309873,-20.238730103834143],[169.86229862298626,-20.24379583564378],[169.8370983709837,-20.24886156745343],[169.82989829898298,-20.253927299263083],[169.81909819098195,-20.24379583564378],[169.80829808298085,-20.238730103834143],[169.7830978309783,-20.231975794754604],[169.7506975069751,-20.218467176595553],[169.73629736297363,-20.20833571297625],[169.73629736297363,-20.18638420846777],[169.74349743497436,-20.16105554941953],[169.75429754297545,-20.1441697767207],[169.7686976869769,-20.14079262218094],[169.7938979389794,-20.135726890371288],[169.82269822698225,-20.135726890371288],[169.84069840698407,-20.14079262218094]]],[[[169.4338943389434,-19.492378950545984],[169.46629466294667,-19.50926472324481],[169.48069480694807,-19.519396186864114],[169.50229502295025,-19.527839073213528],[169.49509495094952,-19.539659114102705],[169.45909459094594,-19.581873545849774],[169.4518945189452,-19.625776554866718],[169.44469444694448,-19.647728059375197],[169.43749437494375,-19.657859522994485],[169.41589415894163,-19.65617094572461],[169.37269372693726,-19.644350904835434],[169.35829358293586,-19.63590801848602],[169.31509315093155,-19.590316432199188],[169.30789307893082,-19.581873545849774],[169.28629286292863,-19.581873545849774],[169.2790927909279,-19.578496391309997],[169.27549275492754,-19.57174208223047],[169.27189271892718,-19.561610618611184],[169.2646926469265,-19.55316773226177],[169.25749257492578,-19.54810200045212],[169.2538925389254,-19.544724845912356],[169.2538925389254,-19.536281959562942],[169.21789217892183,-19.49069037327611],[169.21429214292147,-19.480558909656807],[169.21429214292147,-19.465361714227868],[169.21429214292147,-19.438344477909737],[169.22149221492214,-19.414704396131384],[169.23229232292323,-19.40457293251208],[169.23949239492396,-19.397818623432556],[169.23949239492396,-19.38599858254338],[169.2358923589236,-19.362358500765012],[169.23949239492396,-19.350538459875835],[169.24309243092432,-19.34209557352642],[169.25029250292505,-19.335341264446896],[169.26109261092614,-19.32858695536737],[169.28269282692827,-19.32352122355772],[169.3186931869319,-19.32183264628783],[169.33669336693367,-19.315078337208305],[169.35109351093513,-19.32858695536737],[169.3546935469355,-19.34209557352642],[169.34749347493477,-19.35898134622525],[169.3438934389344,-19.38093285073373],[169.35829358293586,-19.455230250608565],[169.36549365493659,-19.470427446037505],[169.3870938709387,-19.477181755117044],[169.41229412294126,-19.48393606419657],[169.4338943389434,-19.492378950545984]]],[[[-169.85149851498514,-18.965542842342586],[-169.82629826298262,-18.96723141961246],[-169.82269822698228,-18.97229715142211],[-169.7938979389794,-19.04659455129695],[-169.7830978309783,-19.068546055805427],[-169.79749797497976,-19.07361178761508],[-169.80469804698046,-19.082054673964493],[-169.82269822698228,-19.102317601203083],[-169.8658986589866,-19.1293348375212],[-169.87309873098732,-19.125957682981436],[-169.88029880298802,-19.1293348375212],[-169.89829898298984,-19.142843455680264],[-169.90189901899018,-19.132711992060976],[-169.9090990909909,-19.1293348375212],[-169.919899198992,-19.127646260251325],[-169.93429934299343,-19.1293348375212],[-169.93069930699306,-19.125957682981436],[-169.9270992709927,-19.122580528441674],[-169.92349923499233,-19.11920337390191],[-169.919899198992,-19.115826219362148],[-169.92349923499233,-19.09894044666332],[-169.9270992709927,-19.095563292123558],[-169.94869948699488,-19.087120405774144],[-169.94869948699488,-19.070234633075316],[-169.9270992709927,-19.038151664947534],[-169.9270992709927,-19.03139735586801],[-169.93069930699306,-19.026331624058358],[-169.93429934299343,-19.021265892248707],[-169.93429934299343,-19.012823005899293],[-169.93069930699306,-19.007757274089656],[-169.9270992709927,-19.007757274089656],[-169.92349923499233,-19.007757274089656],[-169.91629916299163,-19.002691542280004],[-169.89469894698948,-18.965542842342586],[-169.86229862298623,-18.963854265072698],[-169.85149851498514,-18.965542842342586]]],[[[178.43038430384303,-18.955411378723284],[178.43758437584376,-18.955411378723284],[178.4735847358474,-18.960477110532935],[178.48438484384843,-18.965542842342586],[178.49158491584916,-18.977362883231763],[178.4987849878499,-18.99593723320048],[178.49518495184952,-19.012823005899293],[178.4771847718477,-19.022954469518595],[178.45918459184594,-19.033085933137897],[178.45558455584558,-19.026331624058358],[178.44478444784448,-19.024643046788484],[178.42318423184236,-19.021265892248707],[178.42678426784266,-19.02970877859812],[178.43038430384303,-19.03646308767766],[178.42678426784266,-19.043217396757186],[178.41598415984163,-19.048283128566837],[178.40518405184054,-19.044905974027074],[178.38358383583835,-19.043217396757186],[178.35838358383586,-19.043217396757186],[178.34038340383404,-19.048283128566837],[178.3439834398344,-19.04152881948731],[178.34758347583477,-19.028020201328246],[178.34758347583477,-19.021265892248707],[178.34038340383404,-19.024643046788484],[178.3331833318333,-19.026331624058358],[178.32598325983258,-19.024643046788484],[178.3187831878319,-19.021265892248707],[178.32598325983258,-19.01620016043907],[178.32958329583295,-19.00944585135953],[178.3331833318333,-19.006068696819767],[178.30798307983082,-18.997625810470353],[178.28278282782827,-19.007757274089656],[178.23958239582396,-19.04152881948731],[178.2215822158222,-19.044905974027074],[178.20718207182074,-19.044905974027074],[178.19638196381965,-19.048283128566837],[178.18918189181892,-19.05841459218614],[178.18918189181892,-19.07867751942473],[178.18918189181892,-19.083743251234367],[178.18558185581855,-19.068546055805427],[178.17478174781752,-19.075300364884953],[178.17118171181716,-19.087120405774144],[178.17478174781752,-19.097251869393432],[178.1819818198182,-19.102317601203083],[178.19638196381965,-19.105694755742846],[178.19998199982,-19.11413764209226],[178.19638196381965,-19.1394663011405],[178.19638196381965,-19.146220610220027],[178.18918189181892,-19.152974919299567],[178.17838178381783,-19.158040651109218],[178.17118171181716,-19.15635207383933],[178.16038160381606,-19.151286342029678],[178.16038160381606,-19.14115487841039],[178.16398163981643,-19.115826219362148],[178.14958149581497,-19.127646260251325],[178.14238142381424,-19.1293348375212],[178.1279812798128,-19.1293348375212],[178.12078120781212,-19.1394663011405],[178.1135811358114,-19.147909187489915],[178.10638106381066,-19.15466349656944],[178.0919809198092,-19.15635207383933],[178.07758077580775,-19.15466349656944],[178.0487804878049,-19.144532032950153],[178.0379803798038,-19.142843455680264],[178.01638016380167,-19.15635207383933],[178.00198001980021,-19.158040651109218],[177.99837998379985,-19.142843455680264],[177.99117991179912,-19.142843455680264],[177.9839798397984,-19.147909187489915],[177.97317973179736,-19.144532032950153],[177.96237962379627,-19.137777723870613],[177.95157951579517,-19.1293348375212],[177.98037980379803,-19.100629023933195],[177.99837998379985,-19.095563292123558],[178.01998019980203,-19.102317601203083],[178.03078030780307,-19.09387471485367],[178.03438034380343,-19.07192321034519],[178.04158041580416,-19.061791746725902],[178.05238052380525,-19.05672601491625],[178.06318063180635,-19.05672601491625],[178.12078120781212,-19.070234633075316],[178.1279812798128,-19.068546055805427],[178.13518135181351,-19.061791746725902],[178.13518135181351,-19.0516602831066],[178.13878138781388,-19.04152881948731],[178.14958149581497,-19.03477451040777],[178.16398163981643,-19.043217396757186],[178.17118171181716,-19.03477451040777],[178.17478174781752,-19.017888737708944],[178.17478174781752,-18.99931438774024],[178.18918189181892,-18.977362883231763],[178.2251822518225,-18.963854265072698],[178.2647826478265,-18.962165687802823],[178.29358293582936,-18.97229715142211],[178.3007830078301,-18.943591337834107],[178.30798307983082,-18.940214183294344],[178.32238322383228,-18.938525606024456],[178.32958329583295,-18.93683702875458],[178.3331833318333,-18.93177129694493],[178.33678336783368,-18.92670556513528],[178.3439834398344,-18.925016987865405],[178.3547835478355,-18.92670556513528],[178.36198361983622,-18.930082719675042],[178.37278372783732,-18.930082719675042],[178.38358383583835,-18.925016987865405],[178.39078390783908,-18.938525606024456],[178.42318423184236,-18.940214183294344],[178.43038430384303,-18.955411378723284]]],[[[179.34479344793448,-17.997988066699804],[179.35919359193593,-18.02669388028781],[179.3627936279363,-18.079039775654167],[179.3519935199352,-18.119565630131348],[179.319593195932,-18.100991280162646],[179.31239312393126,-18.08917123927347],[179.30159301593017,-18.06215400295534],[179.2979929799298,-18.050333962066162],[179.27999279992804,-18.028382457557683],[179.2727927279273,-18.016562416668506],[179.26559265592658,-17.997988066699804],[179.26199261992622,-18.00980810758898],[179.26559265592658,-18.03007103482757],[179.26199261992622,-18.036825343907097],[179.2547925479255,-18.038513921176985],[179.25119251192513,-18.031759612097446],[179.2439924399244,-18.00305379850944],[179.24759247592476,-17.974347984921437],[179.2439924399244,-17.970970830381674],[179.23679236792367,-17.954085057682846],[179.2331923319233,-17.943953594063558],[179.2439924399244,-17.950707903143083],[179.25119251192513,-17.950707903143083],[179.2727927279273,-17.933822130444256],[179.27639276392767,-17.933822130444256],[179.28359283592835,-17.935510707714144],[179.2979929799298,-17.93719928498402],[179.31239312393126,-17.94733074860332],[179.33759337593375,-17.98954518035039],[179.34479344793448,-17.997988066699804]]],[[[178.77598775987764,-17.62818964459548],[178.7831878318783,-17.623123912785843],[178.79758797587976,-17.618058180976192],[178.81558815588158,-17.62818964459548],[178.82638826388268,-17.651829726373848],[178.82998829988298,-17.665338344532913],[178.83358833588335,-17.678846962691964],[178.8371883718837,-17.69235558085103],[178.83358833588335,-17.707552776279968],[178.82998829988298,-17.71937281716916],[178.8227882278823,-17.729504280788447],[178.79758797587976,-17.736258589867973],[178.78678786787867,-17.73963574440775],[178.7687876878769,-17.746390053487275],[178.75798757987582,-17.729504280788447],[178.75438754387545,-17.71261850808962],[178.739987399874,-17.673781230882327],[178.7507875078751,-17.643386840024434],[178.77598775987764,-17.62818964459548]]],[[[-180,-16.787278164193907],[-179.9891998919989,-16.77039239149508],[-179.9171991719917,-16.694406414350354],[-179.89919899198992,-16.68427495073105],[-179.87759877598776,-16.677520641651526],[-179.8631986319863,-16.68089779619129],[-179.8559985599856,-16.692717837080465],[-179.84519845198452,-16.721423650668484],[-179.84159841598415,-16.738309423367298],[-179.84159841598415,-16.7484408869866],[-179.8307983079831,-16.756883773336014],[-179.819998199982,-16.76363808241554],[-179.81639816398163,-16.772080968764953],[-179.819998199982,-16.780523855114367],[-179.8559985599856,-16.814295400512023],[-179.86679866798667,-16.83118117321085],[-179.87039870398704,-16.841312636830153],[-179.87039870398704,-16.863264141338618],[-179.8739987399874,-16.864952718608507],[-179.88119881198813,-16.864952718608507],[-179.88839888398883,-16.86832987314827],[-179.94959949599496,-16.905478573085688],[-179.9819998199982,-16.932495809403818],[-180,-16.964578777531585],[-180,-16.787278164193907]]],[[[168.1918819188192,-16.814295400512023],[168.1810818108181,-16.80585251416261],[168.1486814868149,-16.778835277844493],[168.14508145081453,-16.76870381422519],[168.14508145081453,-16.741686577907075],[168.14508145081453,-16.731555114287772],[168.1270812708127,-16.718046496128707],[168.11988119881198,-16.709603609779293],[168.11988119881198,-16.70116072342988],[168.12348123481235,-16.689340682540703],[168.1270812708127,-16.652191982603284],[168.13068130681307,-16.635306209904456],[168.1378813788138,-16.62855190082493],[168.14508145081453,-16.62348616901528],[168.1486814868149,-16.616731859935754],[168.15228152281526,-16.604911819046578],[168.15228152281526,-16.594780355427275],[168.1486814868149,-16.58802604634775],[168.14508145081453,-16.572828850918796],[168.15228152281526,-16.579583159998336],[168.159481594816,-16.577894582728447],[168.16668166681666,-16.574517428188685],[168.17388173881739,-16.572828850918796],[168.18468184681848,-16.57620600545856],[168.18828188281884,-16.579583159998336],[168.1918819188192,-16.584648891807973],[168.19548195481957,-16.58802604634775],[168.2026820268203,-16.596468932697164],[168.22068220682206,-16.633617632634582],[168.23148231482315,-16.642060518983996],[168.23148231482315,-16.64881482806352],[168.23508235082352,-16.66401202349246],[168.23868238682388,-16.68089779619129],[168.2458824588246,-16.69102925981059],[168.2566825668257,-16.689340682540703],[168.2710827108271,-16.679209218921415],[168.2818828188282,-16.677520641651526],[168.28908289082892,-16.679209218921415],[168.29988299883001,-16.682586373461177],[168.30348303483038,-16.68596352800094],[168.3106831068311,-16.69102925981059],[168.32148321483214,-16.70622645523953],[168.3250832508325,-16.721423650668484],[168.3358833588336,-16.73324369155766],[168.35388353883542,-16.738309423367298],[168.35748357483578,-16.74337515517695],[168.36108361083615,-16.755195196066126],[168.37188371883718,-16.767015236955316],[168.389883898839,-16.772080968764953],[168.44028440284404,-16.77039239149508],[168.46548465484653,-16.778835277844493],[168.479884798848,-16.800786782352958],[168.4690846908469,-16.80585251416261],[168.4690846908469,-16.819361132321674],[168.47628476284763,-16.834558327750614],[168.47268472684726,-16.84806694590968],[168.46188461884623,-16.843001214100028],[168.4546845468455,-16.84806694590968],[168.4006840068401,-16.819361132321674],[168.38268382683827,-16.802475359622846],[168.36828368283682,-16.794032473273433],[168.3466834668347,-16.78896674146378],[168.33228332283323,-16.787278164193907],[168.2926829268293,-16.79572105054332],[168.26028260282607,-16.81260682324215],[168.23148231482315,-16.822738286861437],[168.1918819188192,-16.814295400512023]]],[[[168.18468184681848,-15.517468057242112],[168.1918819188192,-15.527599520861415],[168.19908199081993,-15.529288098131289],[168.2026820268203,-15.53435382994094],[168.20628206282066,-15.54955102536988],[168.19908199081993,-15.610339807085666],[168.19908199081993,-15.627225579784493],[168.21348213482133,-15.65930854791226],[168.21348213482133,-15.689702938770154],[168.2170821708217,-15.703211556929205],[168.23868238682388,-15.767377493184753],[168.2458824588246,-15.819723388551111],[168.25308253082534,-15.834920583980065],[168.26388263882637,-15.85687208848853],[168.26748267482674,-15.875446438457246],[168.2710827108271,-15.914283715664553],[168.26748267482674,-15.949743838332083],[168.2566825668257,-15.975072497380324],[168.2278822788228,-15.990269692809264],[168.2026820268203,-15.991958270079152],[168.1918819188192,-15.985203960999627],[168.18828188281884,-15.971695342840562],[168.18468184681848,-15.93116948836338],[168.16668166681666,-15.870380706647595],[168.15588155881562,-15.79439472950287],[168.13068130681307,-15.73698310232686],[168.12348123481235,-15.70152297965933],[168.11988119881198,-15.662685702452023],[168.12348123481235,-15.622159847974842],[168.1486814868149,-15.542796716290354],[168.15588155881562,-15.463433584605866],[168.17748177481775,-15.461745007335978],[168.1810818108181,-15.507336593622824],[168.18468184681848,-15.517468057242112]]],[[[167.939879398794,-15.392513339270792],[167.93627936279364,-15.411087689239508],[167.9290792907929,-15.422907730128685],[167.86067860678605,-15.476942202764931],[167.83907839078392,-15.485385089114345],[167.73467734677348,-15.483696511844457],[167.7130771307713,-15.476942202764931],[167.6770767707677,-15.461745007335978],[167.67347673476735,-15.449924966446801],[167.68067680676808,-15.433039193747973],[167.80307803078034,-15.319904516665844],[167.82467824678247,-15.313150207586304],[167.8426784267843,-15.309773053046541],[167.89307893078933,-15.291198703077825],[167.9758797587976,-15.277690084918774],[168.00108001080014,-15.281067239458537],[168.0046800468005,-15.291198703077825],[167.97947979479795,-15.313150207586304],[167.96867968679686,-15.328347403015258],[167.95427954279546,-15.348610330253848],[167.94347943479437,-15.370561834762313],[167.939879398794,-15.392513339270792]]],[[[168.0946809468095,-14.980500485419412],[168.09828098280985,-14.972057599069998],[168.10188101881022,-14.966991867260347],[168.10188101881022,-14.96192613545071],[168.0946809468095,-14.953483249101296],[168.09108091080913,-14.943351785481994],[168.0946809468095,-14.931531744592817],[168.10188101881022,-14.921400280973515],[168.10908109081095,-14.916334549163878],[168.12348123481235,-14.923088858243403],[168.13428134281344,-14.939974630942231],[168.14148141481417,-14.960237558180822],[168.14508145081453,-14.973746176339887],[168.14508145081453,-14.99738625811824],[168.159481594816,-15.053109308024375],[168.159481594816,-15.063240771643663],[168.15588155881562,-15.083503698882254],[168.159481594816,-15.093635162501556],[168.17028170281702,-15.125718130629323],[168.17028170281702,-15.1375381715185],[168.17028170281702,-15.172998294186044],[168.17388173881739,-15.181441180535458],[168.18828188281884,-15.198326953234286],[168.1918819188192,-15.2067698395837],[168.18828188281884,-15.274312930379011],[168.19548195481957,-15.28951012580795],[168.1918819188192,-15.308084475776653],[168.18468184681848,-15.336790289364671],[168.18468184681848,-15.365496102952676],[168.17748177481775,-15.395890493810555],[168.16668166681666,-15.390824762000918],[168.15588155881562,-15.390824762000918],[168.13068130681307,-15.395890493810555],[168.1378813788138,-15.372250412032201],[168.13428134281344,-15.34692175298396],[168.12348123481235,-15.299641589427239],[168.13068130681307,-15.264181466759709],[168.13068130681307,-15.157801098757105],[168.11988119881198,-15.134161016978737],[168.0946809468095,-14.980500485419412]]],[[[-170.58950589505895,-14.264543722989146],[-170.57510575105752,-14.252723682099969],[-170.5679056790568,-14.25778941390962],[-170.5679056790568,-14.271298032068685],[-170.58590585905858,-14.27805234114821],[-170.64350643506435,-14.281429495687973],[-170.65790657906578,-14.28480665022775],[-170.6831068310683,-14.303381000196453],[-170.72270722707228,-14.354038318292936],[-170.7479074790748,-14.374301245531527],[-170.75510755107553,-14.367546936452001],[-170.79470794707947,-14.340529700133871],[-170.82350823508236,-14.327021081974806],[-170.83070830708306,-14.32026677289528],[-170.78750787507875,-14.294938113847039],[-170.77310773107732,-14.291560959307276],[-170.7371073710737,-14.291560959307276],[-170.72270722707228,-14.289872382037387],[-170.69750697506976,-14.261166568449383],[-170.66150661506614,-14.252723682099969],[-170.61830618306183,-14.254412259369857],[-170.58950589505895,-14.264543722989146]]],[[[167.5150751507515,-14.141277582287714],[167.5258752587526,-14.142966159557602],[167.58707587075872,-14.171671973145607],[167.59427594275945,-14.18011485949502],[167.60147601476018,-14.188557745844435],[167.59787597875982,-14.24259221848068],[167.59427594275945,-14.251035104830095],[167.58707587075872,-14.256100836639732],[167.56187561875618,-14.298315268386801],[167.54747547475478,-14.313512463815755],[167.53667536675368,-14.318578195625392],[167.5258752587526,-14.32026677289528],[167.4574745747458,-14.31520104108563],[167.4466744667447,-14.32026677289528],[167.43227432274324,-14.318578195625392],[167.41787417874178,-14.313512463815755],[167.40707407074075,-14.308446732006104],[167.39987399874002,-14.305069577466341],[167.39627396273966,-14.30000384565669],[167.39987399874002,-14.288183804767513],[167.41067410674106,-14.267920877528923],[167.40347403474038,-14.212197827622788],[167.40707407074075,-14.19531205492396],[167.41427414274142,-14.186869168574546],[167.4250742507425,-14.18011485949502],[167.4466744667447,-14.161540509526304],[167.45387453874542,-14.15985193225643],[167.46467464674646,-14.161540509526304],[167.47907479074792,-14.161540509526304],[167.489874898749,-14.156474777716653],[167.50427504275046,-14.142966159557602],[167.5150751507515,-14.141277582287714]]],[[[167.45387453874542,-13.918385382663203],[167.45387453874542,-13.898122455424613],[167.4466744667447,-13.884613837265547],[167.43947439474397,-13.874482373646245],[167.41787417874178,-13.859285178217306],[167.39627396273966,-13.82551363281965],[167.38907389073893,-13.803562128311171],[167.38907389073893,-13.77823346926293],[167.39987399874002,-13.756281964754464],[167.41067410674106,-13.739396192055636],[167.43227432274324,-13.72757615116646],[167.47547475474755,-13.709001801197743],[167.489874898749,-13.709001801197743],[167.50427504275046,-13.717444687547157],[167.52227522275223,-13.73601903751586],[167.55107551075514,-13.790053510152106],[167.56187561875618,-13.79849639650152],[167.55107551075514,-13.813693591930473],[167.5438754387544,-13.818759323740125],[167.54747547475478,-13.832267941899175],[167.5582755827558,-13.837333673708827],[167.56547565475654,-13.84071082824859],[167.57627576275763,-13.84577656005824],[167.579875798758,-13.849153714598003],[167.58707587075872,-13.847465137328129],[167.58707587075872,-13.849153714598003],[167.5906759067591,-13.855908023677543],[167.58707587075872,-13.86097375548718],[167.579875798758,-13.86097375548718],[167.57267572675727,-13.859285178217306],[167.5690756907569,-13.859285178217306],[167.55107551075514,-13.871105219106482],[167.53307533075332,-13.881236682725785],[167.51147511475114,-13.886302414535422],[167.48627486274864,-13.88799099180531],[167.489874898749,-13.889679569075199],[167.49347493474937,-13.891368146345073],[167.49347493474937,-13.894745300884836],[167.48627486274864,-13.901499609964375],[167.49707497074974,-13.925139691742729],[167.48627486274864,-13.942025464441556],[167.46467464674646,-13.943714041711445],[167.45387453874542,-13.918385382663203]]],[[[166.92466924669247,-11.640494645591431],[166.92466924669247,-11.655691841020385],[166.92466924669247,-11.674266190989087],[166.97866978669788,-11.670889036449324],[166.9858698586986,-11.709726313656631],[166.91026910269102,-11.714792045466282],[166.8886688866889,-11.718169200006045],[166.87066870668707,-11.716480622736157],[166.84186841868421,-11.713103468196394],[166.82746827468276,-11.692840540957803],[166.81666816668167,-11.682709077338501],[166.80226802268027,-11.677643345528864],[166.7986679866799,-11.66920045917945],[166.78066780667808,-11.648937531940845],[166.76626766267663,-11.633740336511906],[166.76626766267663,-11.616854563813078],[166.77346773467735,-11.60672310019379],[166.78426784267845,-11.601657368384139],[166.80586805868057,-11.591525904764836],[166.8238682386824,-11.591525904764836],[166.84546845468458,-11.593214482034725],[166.87066870668707,-11.588148750225074],[166.89226892268925,-11.593214482034725],[166.93546935469357,-11.608411677463664],[166.92466924669247,-11.640494645591431]]],[[[166.14706147061474,-10.69320279718724],[166.13626136261365,-10.705022838076417],[166.1326613266133,-10.725285765315022],[166.0966609666097,-10.738794383474072],[166.08226082260825,-10.750614424363249],[166.06426064260643,-10.759057310712663],[166.05346053460534,-10.767500197062077],[166.03546035460357,-10.765811619792203],[166.02826028260284,-10.767500197062077],[166.0030600306003,-10.757368733442789],[165.9886598865989,-10.767500197062077],[165.98145981459817,-10.772565928871728],[165.97065970659708,-10.770877351601854],[165.9346593465935,-10.77594308341149],[165.89145891458918,-10.8249118242381],[165.86265862658627,-10.868814833255044],[165.8482584825848,-10.856994792365867],[165.85185851858517,-10.828288978777863],[165.84105841058414,-10.814780360618798],[165.82665826658268,-10.81309178334891],[165.80145801458013,-10.836731865127277],[165.76905769057691,-10.835043287857388],[165.75825758257582,-10.811403206079035],[165.75465754657546,-10.772565928871728],[165.75465754657546,-10.752303001633138],[165.77265772657728,-10.738794383474072],[165.779857798578,-10.725285765315022],[165.79425794257946,-10.708399992616194],[165.80145801458013,-10.708399992616194],[165.79785797857977,-10.743860115283724],[165.81225812258123,-10.759057310712663],[165.82305823058232,-10.76243446525244],[165.82665826658268,-10.748925847093375],[165.82665826658268,-10.733728651664435],[165.83025830258305,-10.708399992616194],[165.8482584825848,-10.684759910837826],[165.87705877058772,-10.656054097249822],[165.9238592385924,-10.654365519979947],[165.99585995859962,-10.661119829059473],[166.02826028260284,-10.647611210900408],[166.06066060660606,-10.654365519979947],[166.07866078660788,-10.662808406329361],[166.08226082260825,-10.667874138138998],[166.0858608586086,-10.671251292678775],[166.11466114661147,-10.667874138138998],[166.14346143461438,-10.669562715408887],[166.14706147061474,-10.69320279718724]]],[[[134.6467464674647,7.719043753613704],[134.6611466114661,7.685272208216048],[134.66474664746647,7.6379920446593275],[134.65754657546574,7.590711881102621],[134.6467464674647,7.556940335704965],[134.62514625146252,7.529923099386835],[134.62514625146252,7.5231687903073095],[134.63594635946362,7.509660172148244],[134.63594635946362,7.502905863068719],[134.63234632346325,7.497840131259068],[134.62154621546216,7.472511472210826],[134.59994599946003,7.442117081352933],[134.5927459274593,7.421854154114342],[134.59994599946003,7.38301687690705],[134.59634596345967,7.3695082587479845],[134.5927459274593,7.366131104208222],[134.58554585545858,7.367819681478096],[134.57474574745748,7.3695082587479845],[134.5639456394564,7.374573990557636],[134.56034560345603,7.37626256782751],[134.5531455314553,7.372885413287747],[134.54594545945463,7.359376795128682],[134.5387453874539,7.355999640588919],[134.5279452794528,7.357688217858808],[134.52434524345244,7.361065372398571],[134.52074520745208,7.367819681478096],[134.51354513545135,7.391459763256464],[134.50634506345062,7.423542731384231],[134.49914499144995,7.43873992681317],[134.49194491944922,7.443805658622821],[134.4847448474485,7.443805658622821],[134.48114481144813,7.44549423589271],[134.4847448474485,7.459002854051761],[134.48834488344886,7.469134317671063],[134.49194491944922,7.48095435856024],[134.50274502745026,7.487708667639765],[134.509945099451,7.4927743994494165],[134.51714517145172,7.48095435856024],[134.52434524345244,7.479265781290351],[134.53514535145354,7.486020090369891],[134.5387453874539,7.499528708528956],[134.53514535145354,7.50797159487837],[134.5279452794528,7.516414481227784],[134.509945099451,7.528234522116961],[134.52074520745208,7.534988831196486],[134.53154531545317,7.553563181165202],[134.54594545945463,7.562006067514616],[134.54594545945463,7.567071799324253],[134.54594545945463,7.5805804174833185],[134.54594545945463,7.582268994753207],[134.55674556745566,7.600843344721909],[134.56754567545676,7.614351962880974],[134.58554585545858,7.6211062719605],[134.61074610746107,7.622794849230388],[134.63594635946362,7.6295491583099135],[134.63954639546398,7.646434931008741],[134.63234632346325,7.698780826375113],[134.62514625146252,7.7173551763438155],[134.62154621546216,7.729175217232992],[134.62514625146252,7.734240949042643],[134.63594635946362,7.732552371772769],[134.64314643146434,7.725798062693229],[134.6467464674647,7.719043753613704]]],[[[-78.8929889298893,8.458640597822324],[-78.8929889298893,8.468772061441626],[-78.88938889388893,8.473837793251263],[-78.87858878588786,8.468772061441626],[-78.86778867788678,8.462017752362087],[-78.86418864188641,8.453574866012673],[-78.8569885698857,8.443443402393385],[-78.8569885698857,8.431623361504194],[-78.85338853388534,8.421491897884906],[-78.85338853388534,8.413049011535492],[-78.84258842588426,8.411360434265603],[-78.83538835388353,8.397851816106552],[-78.8389883898839,8.386031775217361],[-78.84618846188461,8.380966043407724],[-78.84618846188461,8.369146002518534],[-78.83538835388353,8.342128766200418],[-78.84258842588426,8.320177261691938],[-78.85338853388534,8.311734375342525],[-78.85338853388534,8.30329148899311],[-78.8569885698857,8.296537179913585],[-78.87138871388713,8.296537179913585],[-78.87498874988749,8.301602911723236],[-78.88218882188822,8.299914334453348],[-78.88938889388893,8.299914334453348],[-78.89658896588965,8.298225757183474],[-78.90018900189001,8.30329148899311],[-78.90018900189001,8.308357220802762],[-78.90378903789038,8.30329148899311],[-78.91098910989109,8.293160025373822],[-78.92178921789217,8.28302856175452],[-78.92178921789217,8.274585675405106],[-78.92178921789217,8.266142789055692],[-78.91458914589145,8.254322748166516],[-78.91098910989109,8.234059820927925],[-78.90378903789038,8.228994089118274],[-78.89658896588965,8.228994089118274],[-78.89658896588965,8.223928357308623],[-78.90378903789038,8.218862625498986],[-78.91818918189182,8.2273055118484],[-78.9289892898929,8.235748398197813],[-78.92538925389253,8.249257016356864],[-78.93258932589326,8.272897098135232],[-78.93978939789397,8.28302856175452],[-78.95778957789578,8.28978287083406],[-78.9649896498965,8.294848602643697],[-78.96858968589686,8.304980066263],[-78.9649896498965,8.320177261691938],[-78.95778957789578,8.328620148041352],[-78.95418954189542,8.347194498010069],[-78.95778957789578,8.35226022981972],[-78.96858968589686,8.362391693439008],[-78.96858968589686,8.369146002518534],[-78.9649896498965,8.377588888867948],[-78.96138961389613,8.384343197947487],[-78.96138961389613,8.391097507027013],[-78.9649896498965,8.40798327972584],[-78.9649896498965,8.418114743345143],[-78.97578975789757,8.445131979663259],[-78.97218972189721,8.458640597822324],[-78.95778957789578,8.458640597822324],[-78.95058950589505,8.453574866012673],[-78.90738907389074,8.4704606387115],[-78.90018900189001,8.462017752362087],[-78.89658896588965,8.456952020552436],[-78.89658896588965,8.451886288742799],[-78.8929889298893,8.458640597822324]]],[[[138.19278192781928,9.576478750484668],[138.1819818198182,9.557904400515966],[138.18558185581855,9.5443957823569],[138.19638196381965,9.53933005054725],[138.21798217982183,9.547772936896664],[138.21438214382147,9.537641473277361],[138.20358203582038,9.520755700578547],[138.18918189181892,9.507247082419482],[138.17838178381783,9.500492773339943],[138.16398163981643,9.505558505149594],[138.1567815678157,9.525821432388184],[138.14238142381424,9.520755700578547],[138.13518135181351,9.512312814229134],[138.0811808118081,9.426195373465106],[138.0667806678067,9.412686755306055],[138.06318063180635,9.436326837084408],[138.07398073980738,9.470098382482064],[138.08838088380884,9.500492773339943],[138.10638106381066,9.514001391499008],[138.1135811358114,9.520755700578547],[138.12078120781212,9.554527245976189],[138.1279812798128,9.56634728686538],[138.14238142381424,9.574790173214794],[138.1459814598146,9.568035864135254],[138.14958149581497,9.541018627817138],[138.15318153181533,9.551150091436426],[138.15318153181533,9.561281555055729],[138.16038160381606,9.569724441405143],[138.16398163981643,9.576478750484668],[138.17478174781746,9.58154448229432],[138.18558185581855,9.588298791373845],[138.19278192781928,9.588298791373845],[138.19278192781928,9.576478750484668]]],[[[144.88524885248853,13.64088423909233],[144.89604896048962,13.617244157313962],[144.91404914049144,13.605424116424786],[144.93564935649357,13.600358384615134],[144.9536495364954,13.59866980734526],[144.9536495364954,13.586849766456083],[144.93924939249393,13.559832530137953],[144.90684906849071,13.51592952112101],[144.87084870848707,13.485535130263116],[144.809648096481,13.445009275785935],[144.78444784447845,13.419680616737693],[144.770047700477,13.379154762260512],[144.75924759247596,13.286283012416959],[144.7340473404734,13.24913431247954],[144.71964719647195,13.242380003400015],[144.69804698046983,13.240691426130127],[144.680046800468,13.247445735209652],[144.6692466924669,13.26433150790848],[144.65844658446588,13.281217280607308],[144.6548465484655,13.286283012416959],[144.6476464764648,13.325120289624266],[144.64404644046442,13.331874598703791],[144.64044640446406,13.336940330513443],[144.63324633246333,13.342006062323094],[144.6260462604626,13.345383216862857],[144.6368463684637,13.355514680482145],[144.64404644046442,13.365646144101447],[144.6476464764648,13.379154762260512],[144.6476464764648,13.39604053495934],[144.64404644046442,13.404483421308754],[144.64044640446406,13.414614884928042],[144.63324633246333,13.423057771277456],[144.62244622446224,13.43150065762687],[144.62964629646297,13.438254966706396],[144.6368463684637,13.443320698516047],[144.64044640446406,13.438254966706396],[144.6548465484655,13.439943543976284],[144.7160471604716,13.47371508937394],[144.73044730447305,13.485535130263116],[144.78444784447845,13.51592952112101],[144.79524795247954,13.527749562010186],[144.80244802448027,13.539569602899363],[144.809648096481,13.553078221058428],[144.83124831248313,13.62062131185374],[144.83844838448385,13.632441352742916],[144.84924849248495,13.644261393632092],[144.8672486724867,13.652704279981506],[144.88164881648817,13.65439285725138],[144.88524885248853,13.64088423909233]]],[[[145.7888578885789,15.26698414998937],[145.79965799657998,15.272049881799006],[145.8176581765818,15.270361304529132],[145.82485824858247,15.261918418179718],[145.81045810458107,15.250098377290541],[145.79965799657998,15.243344068211002],[145.79245792457925,15.231524027321825],[145.77445774457743,15.189309595574755],[145.7780577805778,15.180866709225342],[145.78525785257852,15.169046668336165],[145.7780577805778,15.158915204716877],[145.77445774457743,15.153849472907226],[145.76725767257676,15.1555380501771],[145.75645756457567,15.160603781986751],[145.74565745657458,15.150472318367463],[145.73845738457385,15.136963700208398],[145.73845738457385,15.123455082049333],[145.74565745657458,15.109946463890267],[145.7528575285753,15.096437845731216],[145.73845738457385,15.096437845731216],[145.72045720457209,15.103192154810742],[145.71685716857172,15.10488073208063],[145.69525695256954,15.09981500027098],[145.68445684456844,15.103192154810742],[145.68085680856808,15.116700772969807],[145.68445684456844,15.131897968398746],[145.69525695256954,15.169046668336165],[145.69525695256954,15.18255528649523],[145.69525695256954,15.194375327384407],[145.6988569885699,15.20281821373382],[145.70605706057063,15.212949677353123],[145.709657096571,15.216326831892886],[145.73125731257312,15.223081140972411],[145.73485734857348,15.228146872782062],[145.73485734857348,15.239966913671239],[145.73485734857348,15.243344068211002],[145.74925749257494,15.250098377290541],[145.77445774457743,15.256852686370067],[145.7888578885789,15.26698414998937]]],[[[53.65673656736567,24.159032053191652],[53.63873638736388,24.16072063046154],[53.627936279362814,24.164097785001303],[53.627936279362814,24.172540671350717],[53.64233642336424,24.186049289509782],[53.653136531365334,24.192803598589308],[53.65673656736567,24.192803598589308],[53.68193681936819,24.20124648493872],[53.69273692736928,24.206312216748373],[53.710737107371074,24.221509412177312],[53.71433714337144,24.224886566717075],[53.721537215372166,24.229952298526726],[53.728737287372894,24.231640875796614],[53.73953739537396,24.235018030336377],[53.746737467374686,24.235018030336377],[53.76473764737648,24.22826372125685],[53.771937719377206,24.226575143986963],[53.77553775537757,24.229952298526726],[53.80073800738009,24.248526648495442],[53.829538295382974,24.25865811211473],[53.84033840338404,24.26372384392438],[53.847538475384766,24.27554388481356],[53.854738547385494,24.262035266654493],[53.85113851138513,24.26034668938462],[53.847538475384766,24.255280957574968],[53.85833858338583,24.23839518487614],[53.861938619386194,24.235018030336377],[53.887138871388714,24.219820834907438],[53.89073890738908,24.21813225763755],[53.92673926739269,24.211377948558024],[53.93393933939339,24.208000794018247],[53.955539555395575,24.20124648493872],[53.96633966339664,24.172540671350717],[53.95193951939521,24.148900589572364],[53.91953919539196,24.14045770322295],[53.88353883538835,24.14045770322295],[53.854738547385494,24.152277744112126],[53.85833858338583,24.16072063046154],[53.85113851138513,24.174229248620605],[53.836738367383674,24.177606403160368],[53.82593825938261,24.159032053191652],[53.83313833138331,24.152277744112126],[53.80793807938079,24.1353919714133],[53.77553775537757,24.130326239603647],[53.74313743137432,24.13370339414341],[53.710737107371074,24.145523435032587],[53.69273692736928,24.153966321382],[53.685536855368554,24.157343475921778],[53.65673656736567,24.159032053191652]]],[[[53.32193321933221,24.262035266654493],[53.30753307533075,24.27892103935332],[53.293132931329325,24.27892103935332],[53.27513275132753,24.289052502972623],[53.267932679326805,24.273855307543684],[53.22833228332283,24.27892103935332],[53.2139321393214,24.28060961662321],[53.192331923319244,24.277232462083447],[53.18873188731888,24.27554388481356],[53.185131851318516,24.27554388481356],[53.185131851318516,24.28060961662321],[53.185131851318516,24.287363925702735],[53.18873188731888,24.294118234782275],[53.192331923319244,24.3008725438618],[53.19593195931961,24.30256112113169],[53.23193231932319,24.29580681205215],[53.242732427324285,24.297495389322037],[53.267932679326805,24.307626852941326],[53.27153271532717,24.312692584750977],[53.27873278732787,24.31606973929074],[53.31113311133112,24.32788978017993],[53.32913329133291,24.336332666529344],[53.339933399334,24.336332666529344],[53.34713347133473,24.319446893830516],[53.35793357933579,24.314381162020865],[53.36513365133652,24.319446893830516],[53.368733687336885,24.329578357449805],[53.368733687336885,24.34139839833898],[53.36153361533616,24.351529861958284],[53.39753397533977,24.402187180054767],[53.41553415534156,24.412318643674055],[53.419134191341925,24.40725291186442],[53.42273422734229,24.397121448245116],[53.42273422734229,24.392055716435465],[53.44793447934481,24.380235675546288],[53.44073440734408,24.34139839833898],[53.42633426334265,24.329578357449805],[53.38673386733868,24.312692584750977],[53.368733687336885,24.3008725438618],[53.34713347133473,24.297495389322037],[53.33273332733327,24.289052502972623],[53.33273332733327,24.277232462083447],[53.32193321933221,24.262035266654493]]],[[[50.549905499055,26.19376766340031],[50.59310593105931,26.159996118002653],[50.603906039060405,26.175193313431592],[50.61830618306183,26.185324777050894],[50.62550625506256,26.170127581621955],[50.63270632706329,26.146487499843587],[50.64710647106472,26.146487499843587],[50.636306363063625,26.13466745895441],[50.636306363063625,26.11609310898571],[50.61470614706147,26.111027377176057],[50.6219062190622,26.05361575000005],[50.61830618306183,25.964121154696258],[50.603906039060405,25.85436363215389],[50.59310593105931,25.832412127645412],[50.56430564305643,25.790197695898343],[50.55710557105573,25.820592086756236],[50.54630546305464,25.852675054884003],[50.53190531905321,25.88475802301177],[50.51030510305105,25.913463836599774],[50.46710467104671,25.957366845616733],[50.45990459904601,25.986072659204737],[50.48150481504817,26.018155627332504],[50.48510485104853,26.033352822761444],[50.49230492304923,26.048550018190397],[50.48510485104853,26.085698718127816],[50.47070470704708,26.122847418065234],[50.452704527045285,26.14986465438335],[50.44910449104492,26.16168469527254],[50.44910449104492,26.17857046797137],[50.45990459904601,26.225850631528075],[50.46710467104671,26.237670672417252],[50.48150481504817,26.242736404226903],[50.503105031050325,26.242736404226903],[50.51750517505175,26.23935924968714],[50.53190531905321,26.232604940607615],[50.54630546305464,26.227539208797964],[50.585905859058585,26.242736404226903],[50.59310593105931,26.23935924968714],[50.59670596705968,26.225850631528075],[50.603906039060405,26.215719167908787],[50.60750607506077,26.21234201336901],[50.60750607506077,26.208964858829248],[50.603906039060405,26.19714481794007],[50.59310593105931,26.195456240670183],[50.56430564305643,26.19883339520996],[50.549905499055,26.19376766340031]]],[[[134.3659436594366,34.55391372658954],[134.36234362343623,34.54547084024013],[134.3659436594366,34.537027953890714],[134.36954369543696,34.52520791300154],[134.37314373143732,34.51338787211236],[134.36954369543696,34.484682058524356],[134.34794347943483,34.43064758588811],[134.3407434074341,34.439090472237524],[134.33354333543338,34.444156204047175],[134.31914319143192,34.44584478131705],[134.30474304743046,34.44584478131705],[134.30474304743046,34.4509105131267],[134.32634326343265,34.45428766766646],[134.329943299433,34.46273055401588],[134.31914319143192,34.46948486309542],[134.2975429754298,34.464419131285766],[134.28314283142834,34.45259909039659],[134.2759427594276,34.43571331769776],[134.26154261542615,34.42051612226881],[134.2435424354244,34.417138967729045],[134.24714247142475,34.45259909039659],[134.2435424354244,34.464419131285766],[134.2219422194222,34.47286201763518],[134.20394203942038,34.47117344036529],[134.18594185941862,34.46610770855564],[134.17154171541716,34.46610770855564],[134.16074160741607,34.479616326714705],[134.17154171541716,34.486370635794245],[134.17154171541716,34.49650209941353],[134.17154171541716,34.50832214030271],[134.17514175141753,34.520142181191886],[134.20394203942038,34.51169929484249],[134.22914229142293,34.51845360392201],[134.27234272342724,34.54040510843049],[134.28314283142834,34.543782262970254],[134.31914319143192,34.54715941751002],[134.3551435514355,34.55391372658954],[134.3659436594366,34.55391372658954]]],[[[-59.794797947979475,43.96435485164582],[-59.74079740797407,43.996437819773604],[-59.70839708397084,44.015012169742306],[-59.75879758797588,43.9660434289157],[-59.80919809198092,43.94071476986747],[-59.85959859598596,43.92382899716864],[-59.906399063990634,43.91538611081924],[-59.9639996399964,43.91369753354934],[-60.01800018000179,43.91369753354934],[-60.07560075600756,43.92720615170842],[-60.11520115201152,43.94240334713734],[-60.12960129601295,43.960977697106074],[-60.11880118801187,43.95928911983617],[-60.10440104401043,43.95422338802652],[-60.090000900009,43.94915765621687],[-60.07560075600756,43.94240334713734],[-59.996399963999636,43.93733761532769],[-59.870398703987036,43.94240334713734],[-59.84159841598415,43.94915765621687],[-59.819998199981995,43.95422338802652],[-59.794797947979475,43.96435485164582]]],[[[-66.86166861668616,44.727591777632796],[-66.85086850868508,44.754609013950926],[-66.82566825668256,44.78838055934858],[-66.78966789667896,44.798512022967884],[-66.76806768067681,44.79513486842811],[-66.75726757267573,44.77824909572928],[-66.74286742867429,44.781626250269056],[-66.73206732067321,44.76811763210998],[-66.73566735667356,44.75967474576058],[-66.75366753667537,44.763051900300354],[-66.76086760867608,44.754609013950926],[-66.75366753667537,44.741100395791875],[-66.73926739267392,44.71070600493397],[-66.72846728467285,44.683688768615866],[-66.72126721267212,44.66342584137726],[-66.70686706867069,44.651605800488085],[-66.69246692466925,44.643162914138685],[-66.68886688866888,44.629654295979606],[-66.68886688866888,44.6195228323603],[-66.71046710467104,44.61445710055065],[-66.72846728467285,44.62289998690008],[-66.73206732067321,44.64147433686878],[-66.74286742867429,44.65329437775796],[-66.75366753667537,44.656671532297736],[-66.76806768067681,44.65329437775796],[-66.78246782467825,44.66173726410739],[-66.79686796867968,44.660048686837484],[-66.81126811268112,44.651605800488085],[-66.840068400684,44.64991722321821],[-66.85806858068581,44.638097182329034],[-66.86526865268652,44.629654295979606],[-66.8760687606876,44.60601421420125],[-66.89046890468904,44.602637059661475],[-66.90486904869049,44.60601421420125],[-66.90126901269012,44.629654295979606],[-66.89046890468904,44.65498295502786],[-66.88326883268832,44.68875450042552],[-66.86526865268652,44.71070600493397],[-66.86166861668616,44.727591777632796]]],[[[-73.85653856538565,45.54992890806568],[-73.86373863738638,45.55499463987533],[-73.86733867338673,45.56006037168498],[-73.86373863738638,45.56850325803438],[-73.84933849338493,45.58370045346334],[-73.82773827738276,45.600586226162164],[-73.80613806138061,45.61240626705134],[-73.75933759337593,45.65293212152852],[-73.74133741337413,45.6647521624177],[-73.7161371613716,45.676572203306876],[-73.67653676536764,45.690080821465955],[-73.66573665736657,45.69176939873583],[-73.65853658536585,45.69176939873583],[-73.64413644136441,45.68839224419605],[-73.6369363693637,45.68839224419605],[-73.58653586535866,45.70021228508523],[-73.57573575735756,45.70190086235513],[-73.56493564935649,45.698523707815355],[-73.56493564935649,45.69176939873583],[-73.57213572135721,45.68670366692618],[-73.59373593735937,45.67826078057678],[-73.61173611736118,45.668129316957476],[-73.6369363693637,45.649554966988774],[-73.64053640536405,45.64280065790922],[-73.64413644136441,45.63942350336947],[-73.64773647736477,45.63098061702004],[-73.68373683736837,45.58707760800311],[-73.70533705337053,45.570191835304286],[-73.71973719737197,45.56174894895486],[-73.73053730537305,45.556683217145206],[-73.74853748537485,45.551617485335555],[-73.78093780937809,45.546551753525904],[-73.8421384213842,45.546551753525904],[-73.85653856538565,45.54992890806568]]],[[[-73.50013500135,45.71034374870453],[-73.47853478534785,45.71372090324431],[-73.47133471334713,45.71372090324431],[-73.46773467734677,45.70527801689488],[-73.47493474934748,45.690080821465955],[-73.47853478534785,45.67826078057678],[-73.50013500135,45.627603462480295],[-73.50013500135,45.609029112511564],[-73.50373503735037,45.600586226162164],[-73.50733507335073,45.59552049435251],[-73.52533525335252,45.57694614438381],[-73.53253532535325,45.56850325803438],[-73.53613536135362,45.55837179441508],[-73.53973539735397,45.54824033079581],[-73.54333543335433,45.53642028990663],[-73.54333543335433,45.52628882628733],[-73.53973539735397,45.49251728088967],[-73.53973539735397,45.48745154908002],[-73.53973539735397,45.48238581727037],[-73.54333543335433,45.47900866273062],[-73.55053550535504,45.47732008546072],[-73.56853568535685,45.46887719911132],[-73.57213572135721,45.467188621841416],[-73.57573575735756,45.46381146730167],[-73.58653586535866,45.45199142641249],[-73.590135901359,45.448614271872714],[-73.59733597335973,45.44354854006306],[-73.60813608136081,45.44185996279319],[-73.61893618936189,45.44185996279319],[-73.7161371613716,45.46381146730167],[-73.79533795337953,45.467188621841416],[-73.7989379893799,45.467188621841416],[-73.81333813338134,45.46381146730167],[-73.84933849338493,45.448614271872714],[-73.9249392493925,45.43003992190401],[-73.94293942939429,45.431728499173886],[-73.95373953739536,45.43003992190401],[-73.95733957339573,45.431728499173886],[-73.9681396813968,45.43679423098354],[-73.97173971739717,45.43848280825341],[-73.97173971739717,45.440171385523314],[-73.97173971739717,45.44354854006306],[-73.97533975339753,45.445237117332965],[-73.96093960939609,45.448614271872714],[-73.89613896138961,45.484074394540244],[-73.87453874538745,45.49251728088967],[-73.87093870938709,45.49589443542942],[-73.85653856538565,45.516157362668025],[-73.84933849338493,45.521223094477676],[-73.8421384213842,45.52291167174755],[-73.82413824138241,45.52291167174755],[-73.80253802538024,45.52628882628733],[-73.79533795337953,45.52628882628733],[-73.78453784537845,45.52460024901745],[-73.78093780937809,45.52460024901745],[-73.76653766537665,45.5279774035572],[-73.7161371613716,45.54486317625603],[-73.69453694536945,45.55499463987533],[-73.66933669336693,45.57525756711391],[-73.64773647736477,45.59889764889229],[-73.64413644136441,45.609029112511564],[-73.6261362613626,45.63098061702004],[-73.61893618936189,45.63773492609957],[-73.60813608136081,45.646177812449],[-73.53973539735397,45.685015089656304],[-73.52533525335252,45.70021228508523],[-73.51813518135181,45.703589439625006],[-73.50733507335073,45.70696659416478],[-73.50013500135,45.71034374870453]]],[[[-70.84330843308433,47.0324997510227],[-70.82890828908289,47.030811173752795],[-70.81450814508145,47.02405686467327],[-70.81090810908108,47.01392540105397],[-70.81450814508145,46.99872820562504],[-70.82890828908289,46.986908164735866],[-70.86130861308612,46.946382310258684],[-70.87570875708757,46.93625084663938],[-70.89010890108901,46.93118511482973],[-70.95130951309513,46.8957249921622],[-71.03051030510305,46.86364202403442],[-71.07011070110701,46.85857629222477],[-71.11331113311132,46.86026486949464],[-71.1241112411124,46.87715064219347],[-71.08451084510845,46.905856455781475],[-70.99450994509945,46.94975946479843],[-70.92250922509224,47.00379393743469],[-70.88650886508864,47.02574544194317],[-70.84330843308433,47.0324997510227]]],[[[-61.67041670416704,47.54582724106703],[-61.692016920169195,47.534007200177854],[-61.69921699216992,47.52725289109833],[-61.742417424174235,47.48334988208137],[-61.767617676176755,47.47152984119219],[-61.78921789217891,47.46477553211267],[-61.8360183601836,47.43269256398489],[-61.85761857618576,47.42424967763549],[-61.82161821618216,47.41580679128606],[-61.78561785617856,47.43438114125476],[-61.67041670416704,47.53738435471763],[-61.63801638016379,47.55764728195621],[-61.591215912159115,47.561024436495984],[-61.62361623616236,47.54920439560681],[-61.6560165601656,47.53063004563808],[-61.710017100171,47.485038459351244],[-61.76401764017639,47.41074105947641],[-61.77841778417783,47.405675327666756],[-61.82161821618216,47.41074105947641],[-61.8360183601836,47.400609595857105],[-61.84681846818468,47.3820352458884],[-61.85761857618576,47.3634608959197],[-61.86121861218612,47.35501800957027],[-61.90081900819008,47.3533294323004],[-61.91521915219151,47.34826370049075],[-61.92961929619295,47.338132236871445],[-61.94041940419403,47.32631219598227],[-61.95481954819547,47.29591780512439],[-61.96561965619655,47.28240918696534],[-61.95841958419584,47.27396630061591],[-61.94041940419403,47.262146259726734],[-61.918819188191875,47.26045768245686],[-61.9080190801908,47.27903203242556],[-61.89721897218972,47.26552341426651],[-61.88281882818828,47.25539195064721],[-61.868418684186835,47.25032621883756],[-61.82521825218252,47.24188333248816],[-61.81081810818108,47.24357190975803],[-61.80001800018,47.25201479610743],[-61.78561785617856,47.26552341426651],[-61.792817928179275,47.240194755218255],[-61.81441814418143,47.22837471432908],[-61.84681846818468,47.22499755978933],[-61.8720187201872,47.22499755978933],[-61.87561875618756,47.236817600678506],[-61.893618936189355,47.23344044613873],[-61.93681936819368,47.218243250709776],[-61.98721987219872,47.2165546734399],[-62.00882008820088,47.22499755978933],[-62.01602016020159,47.245260487027906],[-61.99081990819907,47.27396630061591],[-61.969219692196916,47.307737846013566],[-61.95841958419584,47.31786930963287],[-61.951219512195124,47.33644365960157],[-61.94761947619476,47.3820352458884],[-61.94041940419403,47.40229817312701],[-61.926019260192604,47.41242963674631],[-61.90081900819008,47.422561100365584],[-61.87561875618756,47.427626832175235],[-61.85761857618576,47.43100398671501],[-61.83961839618395,47.436069718524664],[-61.69921699216992,47.53231862290798],[-61.692016920169195,47.53738435471763],[-61.56241562415623,47.62687895002139],[-61.53721537215371,47.637010413640695],[-61.504815048150476,47.642076145450346],[-61.386013860138604,47.64376472272022],[-61.38241382413824,47.637010413640695],[-61.389613896138954,47.62519037275152],[-61.40041400414003,47.61674748640209],[-61.43281432814328,47.60830460005269],[-61.44721447214472,47.59986171370326],[-61.454414544145436,47.58466451827434],[-61.46881468814688,47.569467322845384],[-61.50121501215011,47.55595870468633],[-61.53361533615336,47.552581550146556],[-61.55161551615515,47.561024436495984],[-61.52641526415263,47.569467322845384],[-61.50121501215011,47.58297594100446],[-61.479614796147956,47.601550290973165],[-61.46881468814688,47.62181321821174],[-61.49761497614976,47.623501795481644],[-61.52641526415263,47.62181321821174],[-61.555215552155516,47.615058909132216],[-61.58041580415804,47.601550290973165],[-61.620016200162,47.56777874557551],[-61.64521645216452,47.552581550146556],[-61.67041670416704,47.54582724106703]]],[[[-64.50364503645037,47.89029700412311],[-64.51084510845108,47.90211704501229],[-64.50364503645037,47.917314240441215],[-64.47844478444784,47.944331476759345],[-64.47844478444784,47.93757716767982],[-64.47844478444784,47.93251143587017],[-64.49284492844929,47.91055993136169],[-64.50004500045,47.89198558139299],[-64.50364503645037,47.873411231424285],[-64.50364503645037,47.85821403599533],[-64.50724507245071,47.84470541783628],[-64.51804518045181,47.82950822240733],[-64.53964539645396,47.80755671789885],[-64.59364593645937,47.76534228615179],[-64.64764647646476,47.73157074075414],[-64.65484654846549,47.74676793618306],[-64.66564665646656,47.753522245262616],[-64.680046800468,47.75521082253249],[-64.6980469804698,47.75858797707224],[-64.65484654846549,47.78222805885062],[-64.64764647646476,47.79067094520002],[-64.65484654846549,47.8024909860892],[-64.66564665646656,47.8024909860892],[-64.680046800468,47.797425254279545],[-64.69084690846908,47.7940480997398],[-64.68724687246872,47.8024909860892],[-64.68364683646836,47.80924529516872],[-64.67644676446764,47.815999604248276],[-64.66924669246693,47.8210653360579],[-64.68724687246872,47.819376758788025],[-64.6980469804698,47.8210653360579],[-64.70164701647016,47.82781964513745],[-64.6980469804698,47.841328263296504],[-64.69084690846908,47.8497711496459],[-64.680046800468,47.86159119053511],[-64.66924669246693,47.87172265415438],[-64.65844658446584,47.87509980869416],[-64.59724597245972,47.88523127231346],[-64.56844568445685,47.88354269504356],[-64.57924579245793,47.86327976780498],[-64.55764557645576,47.87003407688451],[-64.53964539645396,47.87003407688451],[-64.52164521645216,47.873411231424285],[-64.50364503645037,47.89029700412311]]],[[[154.83574835748357,49.64979451934087],[154.8537485374854,49.64472878753122],[154.86814868148684,49.632908746642045],[154.88254882548824,49.624465860292645],[154.90414904149043,49.63122016937217],[154.90054900549006,49.61264581940344],[154.88974889748897,49.57718569673591],[154.8861488614886,49.55861134676721],[154.87534875348757,49.543414151338254],[154.8321483214832,49.51639691502015],[154.81414814148144,49.499511142321325],[154.82134821348217,49.49275683324177],[154.80334803348035,49.47924821508272],[154.79614796147962,49.45729671057424],[154.79974799747998,49.43365662879589],[154.81054810548108,49.41170512428741],[154.81414814148144,49.40495081520788],[154.82854828548284,49.393130774318706],[154.82854828548284,49.38637646523918],[154.82854828548284,49.38131073342953],[154.82494824948253,49.37624500161988],[154.82134821348217,49.3728678470801],[154.83574835748357,49.352604919841525],[154.8321483214832,49.3441620334921],[154.81414814148144,49.32896483806317],[154.81414814148144,49.32221052898362],[154.81414814148144,49.31545621990409],[154.81414814148144,49.31039048809444],[154.81054810548108,49.30532475628479],[154.78534785347853,49.295193292665516],[154.7781477814778,49.290127560855865],[154.77094770947713,49.28675040631609],[154.74934749347494,49.28843898358596],[154.74214742147421,49.28675040631609],[154.7349473494735,49.28337325177634],[154.7205472054721,49.26986463361726],[154.7205472054721,49.26648747907751],[154.6989469894699,49.26479890180761],[154.68094680946808,49.268176056347386],[154.61254612546128,49.290127560855865],[154.60534605346055,49.29350471539561],[154.6017460174602,49.298570447205265],[154.6017460174602,49.303636179014916],[154.60534605346055,49.31545621990409],[154.60894608946091,49.325587683523395],[154.60534605346055,49.35935922892105],[154.60894608946091,49.374556424350004],[154.62694626946268,49.393130774318706],[154.63774637746377,49.423525165176585],[154.65214652146523,49.437033783335664],[154.6881468814688,49.458985287844115],[154.69534695346954,49.47080532873332],[154.70254702547027,49.4826253696225],[154.71334713347136,49.50626545140085],[154.72414724147245,49.5197740695599],[154.7529475294753,49.548479883147905],[154.76014760147604,49.55861134676721],[154.76014760147604,49.56705423311661],[154.74934749347494,49.57887427400581],[154.74574745747458,49.58562858308534],[154.74934749347494,49.59576004670461],[154.76014760147604,49.60082577851426],[154.77094770947713,49.602514355784166],[154.7781477814778,49.605891510323914],[154.82134821348217,49.64472878753122],[154.83574835748357,49.64979451934087]]],[[[-79.39339393393934,52.08303436524184],[-79.36819368193682,52.0982315606708],[-79.35019350193501,52.10498586975032],[-79.32859328593285,52.10498586975032],[-79.29979299792997,52.0982315606708],[-79.28539285392854,52.096542983400894],[-79.2709927099271,52.09147725159124],[-79.2529925299253,52.07628005616232],[-79.29619296192962,52.05601712892371],[-79.31059310593106,52.04588566530441],[-79.32139321393214,52.034065624415234],[-79.32499324993249,52.02055700625618],[-79.32859328593285,52.00873696536701],[-79.32499324993249,51.981719729048876],[-79.32859328593285,51.971588265429574],[-79.33579335793358,51.963145379080174],[-79.35379353793537,51.95301391546087],[-79.37179371793718,51.94457102911147],[-79.39339393393934,51.93950529730182],[-79.41499414994149,51.93781672003192],[-79.51579515795157,51.946259606381346],[-79.58419584195842,51.93275098822227],[-79.59139591395913,51.93106241095239],[-79.60579605796057,51.92093094733309],[-79.60939609396094,51.919242370063216],[-79.62019620196202,51.92093094733309],[-79.62019620196202,51.92430810187287],[-79.62019620196202,51.93106241095239],[-79.62019620196202,51.93950529730182],[-79.65619656196561,51.98678546085853],[-79.63819638196382,52.01549127444653],[-79.63459634596346,52.02224558352606],[-79.62019620196202,52.025622738065834],[-79.60939609396094,52.02224558352606],[-79.59859598595986,52.017179851716406],[-79.58419584195842,52.01549127444653],[-79.5589955899559,52.01886842898631],[-79.53379533795338,52.02899989260558],[-79.51219512195122,52.04419708803454],[-79.49419494194942,52.05939428346349],[-79.48339483394834,52.06446001527314],[-79.45459454594545,52.06277143800324],[-79.44379443794438,52.066148592543016],[-79.39339393393934,52.08303436524184]]],[[[-78.75618756187562,56.16770278108808],[-78.77778777787778,56.17276851289773],[-78.79578795787957,56.160948472008556],[-78.81378813788137,56.1457512765796],[-78.83178831788318,56.133931235690426],[-78.88578885788857,56.12211119480125],[-78.93618936189361,56.1187340402615],[-78.93258932589326,56.13224265842055],[-78.92538925389253,56.160948472008556],[-78.91818918189182,56.17107993562786],[-78.8389883898839,56.24875449004247],[-78.82818828188282,56.26901741728105],[-78.84618846188461,56.27746030363048],[-78.83538835388353,56.28928034451965],[-78.82098820988209,56.30110038540883],[-78.81378813788137,56.30954327175823],[-78.82818828188282,56.31798615810766],[-78.82098820988209,56.32474046718718],[-78.81378813788137,56.34500339442576],[-78.83178831788318,56.34500339442576],[-78.82458824588245,56.35851201258484],[-78.79938799387993,56.378774939823415],[-78.78858788587885,56.400726444331895],[-78.77778777787778,56.414235062490974],[-78.75618756187562,56.43449798972955],[-78.73458734587345,56.44462945334885],[-78.69858698586985,56.449695185158504],[-78.66978669786697,56.44294087607898],[-78.66258662586625,56.4209893715705],[-78.66258662586625,56.35344628077519],[-78.65898658986589,56.31967473537753],[-78.64818648186481,56.29096892178953],[-78.65898658986589,56.280837458170225],[-78.65898658986589,56.267328840011174],[-78.65538655386554,56.25213164458222],[-78.65538655386554,56.23693444915327],[-78.66258662586625,56.22173725372434],[-78.67338673386733,56.209917212835165],[-78.68058680586806,56.196408594676086],[-78.6769867698677,56.18121139924716],[-78.68778687786877,56.17614566743751],[-78.69858698586985,56.17445709016761],[-78.7129871298713,56.17614566743751],[-78.72378723787237,56.18121139924716],[-78.74178741787418,56.16601420381821],[-78.75258752587526,56.160948472008556],[-78.76338763387633,56.160948472008556],[-78.75618756187562,56.16770278108808]]],[[[59.00279002790029,79.9800194409739],[58.7939879398794,80.01041383183178],[58.76878768787688,80.02054529545109],[58.77958779587797,80.03743106814991],[58.797587975879765,80.04418537722944],[59.16119161191614,80.08302265443675],[59.52839528395285,80.12017135437418],[59.58959589595898,80.108351313485],[59.787597875978776,80.09484269532592],[59.80919809198093,80.08977696351627],[59.83079830798309,80.07964549989697],[59.84159841598418,80.07120261354757],[59.84159841598418,80.06107114992827],[59.837998379983816,80.05262826357887],[59.84159841598418,80.04587395449934],[59.845198451984515,80.03743106814991],[59.837998379983816,80.03236533634026],[59.83439834398345,80.02729960453061],[59.852398523985244,80.01547956364143],[59.870398703987036,80.00872525456191],[59.90999909999101,80.00534810002213],[59.927999279992804,79.99521663640286],[59.863198631986336,79.9884623273233],[59.737197371973735,79.9597565137353],[59.542795427954275,79.93949358649672],[59.47799477994781,79.94793647284612],[59.441994419944194,79.94793647284612],[59.434794347943495,79.9327392774172],[59.402394023940246,79.9226078137979],[59.37359373593736,79.91923065925812],[59.207992079920814,79.92936212287742],[59.1719917199172,79.93949358649672],[59.182791827918294,79.94287074103647],[59.200792007920086,79.95300220465577],[59.150391503915046,79.95469078192568],[59.00279002790029,79.9800194409739]]],[[[52.623526235262375,80.18264871335984],[52.60192601926019,80.19953448605867],[52.35712357123572,80.20797737240807],[52.303123031230314,80.22317456783702],[52.18432184321844,80.27552046320338],[52.2059220592206,80.2822747722829],[52.25632256322564,80.28396334955278],[52.30672306723068,80.2924062359022],[52.56952569525697,80.28902908136243],[52.59472594725949,80.29578339044198],[52.58752587525876,80.30929200860103],[52.60192601926019,80.31435774041068],[52.706327063270635,80.31773489495043],[52.731527315273155,80.32280062676008],[52.731527315273155,80.32955493583961],[52.71712717127173,80.33124351310951],[52.699126991269935,80.33630924491916],[52.68472684726848,80.34475213126856],[52.68472684726848,80.35826074942761],[52.699126991269935,80.36839221304692],[52.77112771127713,80.3802122539361],[52.86112861128612,80.40554091298435],[52.90432904329043,80.41229522206388],[52.95112951129511,80.41229522206388],[53.02313023130233,80.4004751811747],[53.04833048330485,80.39878660390482],[53.14913149131493,80.41229522206388],[53.293132931329325,80.4089180675241],[53.339933399334,80.39878660390482],[53.32193321933221,80.37852367666622],[53.34713347133473,80.35994932669752],[53.53073530735307,80.30929200860103],[53.861938619386194,80.27552046320338],[53.86913869138692,80.27045473139373],[53.854738547385494,80.26032326777442],[53.822338223382246,80.24174891780572],[53.76473764737648,80.22317456783702],[53.73233732337323,80.21810883602737],[53.703537035370374,80.22148599056712],[53.68913689136892,80.22824029964667],[53.678336783367854,80.23668318599607],[53.6639366393664,80.2451260723455],[53.64233642336424,80.24850322688525],[53.61713617136172,80.24681464961537],[53.58833588335884,80.24174891780572],[53.56313563135632,80.23330603145632],[53.5379353793538,80.22148599056712],[53.53073530735307,80.21135452694784],[53.519935199352005,80.18940302243936],[53.51273512735128,80.17927155882006],[53.49113491134912,80.17251724974054],[53.066330663306644,80.17251724974054],[52.64512645126453,80.17251724974054],[52.623526235262375,80.18264871335984]]],[[[53.797137971379726,80.47308400377966],[53.854738547385494,80.48152689012906],[53.836738367383674,80.50516697190741],[53.847538475384766,80.51023270371707],[53.85833858338583,80.51192128098697],[53.88353883538835,80.51023270371707],[53.97353973539737,80.52880705368577],[53.94473944739448,80.53893851730507],[53.85833858338583,80.55413571273402],[53.84033840338404,80.57439863997263],[53.854738547385494,80.59972729902086],[53.88353883538835,80.61154733991003],[54.26874268742688,80.58790725813168],[54.315543155431556,80.57777579451238],[54.2219422194222,80.57777579451238],[54.17154171541716,80.57271006270273],[54.13554135541355,80.5558242900039],[54.164341643416435,80.5473814036545],[54.409144091440936,80.54231567184485],[54.38754387543875,80.52542989914602],[54.40194401944021,80.51529843552672],[54.459544595445976,80.50178981736767],[54.45594455944561,80.48996977647849],[54.459544595445976,80.48659262193871],[54.466744667446676,80.48152689012906],[54.448744487444884,80.47139542650976],[54.43074430744309,80.46464111743023],[54.409144091440936,80.46126396289048],[54.391143911439116,80.45957538562058],[54.36954369543696,80.45619823108083],[54.358743587435896,80.4477553447314],[54.347943479434804,80.43593530384223],[54.333543335433376,80.4291809947627],[54.28674286742867,80.42073810841327],[54.239942399423995,80.42073810841327],[53.797137971379726,80.47308400377966]]],[[[60.255602556025565,81.03706881192048],[60.306003060030605,81.05057743007953],[60.507605076050766,81.06915178004826],[60.61200612006121,81.09279186182661],[60.968409684096855,81.09954617090614],[61.3248132481325,81.10630047998566],[61.68121681216812,81.11305478906519],[61.7028170281703,81.10461190271579],[61.67761677616778,81.10292332544589],[61.65241652416526,81.09785759363626],[61.62721627216274,81.08941470728683],[61.60561605616056,81.07759466639766],[61.62001620016201,81.07421751185788],[61.62721627216274,81.06577462550848],[61.62721627216274,81.05564316188918],[61.62001620016201,81.04213454373013],[61.59841598415986,81.03200308011083],[61.29241292412925,80.97628003020469],[60.98640986409865,80.92224555756846],[60.666006660066614,80.93575417572751],[60.34200342003422,80.94926279388656],[60.255602556025565,80.97290287566494],[60.06840068400686,80.97965718474447],[60.021600216002156,80.9948543801734],[60.06120061200613,81.00836299833247],[60.20880208802089,81.0235601937614],[60.255602556025565,81.03706881192048]]],[[[58.563585635856356,81.32412694780052],[58.50958509585098,81.32074979326077],[58.480784807848096,81.32412694780052],[58.462784627846275,81.33425841141982],[58.469984699847004,81.3477670295789],[58.49158491584916,81.35114418411865],[58.5347853478535,81.35114418411865],[58.6679866798668,81.38153857497653],[59.01719017190172,81.40349007948501],[59.1107911079111,81.39673577040548],[59.13959139591398,81.39167003859583],[59.157591575915774,81.38660430678618],[59.24759247592476,81.37647284316691],[59.301593015930166,81.3646528022777],[59.35559355593557,81.34438987503913],[59.384393843938454,81.33088125688008],[59.341193411934114,81.30386402056195],[59.283592835928374,81.30048686602217],[59.225992259922606,81.30386402056195],[59.05319053190533,81.28697824786312],[58.65358653586537,81.3072411751017],[58.59238592385924,81.32074979326077],[58.563585635856356,81.32412694780052]]],[[[-162.33822338223382,-82.92378409368956],[-162.26622266222662,-82.94573559819803],[-161.92061920619207,-82.98626145267522],[-161.5750157501575,-83.02509872988252],[-161.81261812618126,-83.03860734804158],[-161.8450184501845,-83.0453616571211],[-161.87381873818737,-83.05887027528017],[-161.93861938619386,-83.10108470702724],[-161.9710197101971,-83.11628190245618],[-162.01422014220142,-83.12641336607548],[-162.40302403024032,-83.14836487058396],[-162.83142831428313,-83.1145933251863],[-163.25983259832597,-83.08082177978865],[-163.2850328503285,-83.06224742981993],[-163.28143281432813,-83.0571816980103],[-163.27063270632706,-83.05042738893076],[-163.2670326703267,-83.0453616571211],[-163.29583295832958,-83.0267873071524],[-163.50823508235084,-83.01159011172346],[-163.6018360183602,-82.98963860721499],[-163.61983619836198,-82.98119572086557],[-163.63063630636307,-82.97106425724627],[-163.62343623436234,-82.95248990727757],[-163.60543605436055,-82.94066986638839],[-163.5622356223562,-82.92378409368956],[-163.58023580235803,-82.91365263007026],[-163.6018360183602,-82.90858689826061],[-163.73143731437315,-82.8900125482919],[-163.7530375303753,-82.8798810846726],[-163.72063720637206,-82.87312677559308],[-163.6882368823688,-82.87143819832319],[-163.709837098371,-82.8613067347039],[-163.81063810638108,-82.84610953927495],[-163.74943749437494,-82.83428949838577],[-163.32823328233283,-82.84779811654484],[-162.90342903429035,-82.86299531197378],[-162.4822248222482,-82.87650393013284],[-162.41022410224102,-82.89676685737143],[-162.33822338223382,-82.92378409368956]]],[[[-158.34578345783459,-81.90219484541052],[-158.30258302583024,-81.92921208172865],[-158.2449824498245,-81.95454074077689],[-157.91377913779138,-82.01870667703243],[-157.8561785617856,-82.02039525430231],[-157.82737827378273,-82.02546098611197],[-157.80937809378094,-82.03896960427102],[-157.9209792097921,-82.08456119055785],[-157.98937989379894,-82.09806980871691],[-158.06858068580686,-82.10144696325668],[-158.09738097380975,-82.09638123144704],[-158.08658086580866,-82.08624976782774],[-158.06858068580686,-82.08118403601809],[-158.03618036180362,-82.07611830420845],[-158.06858068580686,-82.04910106789032],[-158.1081810818108,-82.03559244973125],[-158.39258392583926,-81.99337801798418],[-158.69858698586987,-81.9055719999503],[-159.0009900099001,-81.8177659819164],[-159.0189901899019,-81.7873715910585],[-159.00459004590044,-81.78061728197898],[-158.97938979389795,-81.7772401274392],[-158.8929889298893,-81.78230585924885],[-158.63738637386373,-81.83127460007545],[-158.38538385383853,-81.88024334090206],[-158.3709837098371,-81.88699764998158],[-158.34578345783459,-81.90219484541052]]],[[[-154.11574115741158,-80.03631696219014],[-154.36054360543605,-80.03125123038049],[-154.33534335343353,-80.02449692130097],[-154.310143101431,-80.01605403495155],[-154.36774367743678,-80.00761114860214],[-154.4109441094411,-80.00929972587203],[-154.42174421744218,-80.00423399406237],[-154.42894428944288,-79.99916826225272],[-154.44334443344434,-79.98565964409366],[-154.4541445414454,-79.98059391228401],[-154.51534515345153,-79.9637081395852],[-154.9869498694987,-79.92993659418754],[-155.030150301503,-79.91642797602847],[-155.01935019350194,-79.89616504878988],[-155.48015480154803,-79.85732777158258],[-155.66375663756637,-79.8168019171054],[-155.66015660156603,-79.8168019171054],[-155.64935649356494,-79.81004760802585],[-155.61335613356133,-79.80329329894633],[-155.57735577355774,-79.79991614440657],[-155.16335163351633,-79.85226203977292],[-154.74934749347494,-79.90291935786941],[-154.33174331743317,-79.95526525323578],[-153.91773917739178,-80.00592257133225],[-153.89613896138962,-80.0211197667612],[-153.9429394293943,-80.03800553946003],[-154.11574115741158,-80.03631696219014]]],[[[-155.71775717757177,-79.76952175354867],[-155.5809558095581,-79.78303037170774],[-155.6169561695617,-79.79485041259692],[-155.6529565295653,-79.80329329894633],[-155.79335793357933,-79.82017907164516],[-155.82935829358294,-79.8151133398355],[-155.85455854558546,-79.79822756713668],[-155.8221582215822,-79.77796463989809],[-155.78975789757897,-79.76952175354867],[-155.71775717757177,-79.76952175354867]]],[[[-150.48330483304832,-77.34303621672724],[-150.45090450904507,-77.3481019485369],[-150.350103501035,-77.34472479399712],[-150.3609036090361,-77.35654483488631],[-150.37530375303754,-77.36329914396583],[-150.38970389703897,-77.37005345304536],[-150.4041040410404,-77.37174203031525],[-150.49770497704978,-77.37511918485501],[-150.83250832508324,-77.3481019485369],[-151.16371163711636,-77.32108471221876],[-151.4949149491495,-77.29406747590065],[-151.51291512915128,-77.28562458955123],[-151.51291512915128,-77.27042739412228],[-151.49851498514985,-77.26367308504275],[-151.48051480514806,-77.2586073532331],[-151.13131131311314,-77.21808149875592],[-150.98370983709836,-77.22314723056557],[-150.54450544505445,-77.31433040313924],[-150.50130501305011,-77.33797048491759],[-150.48330483304832,-77.34303621672724]]],[[[-148.5320853208532,-76.94959771284456],[-148.44568445684456,-76.97323779462293],[-148.4348843488435,-76.97323779462293],[-148.4528845288453,-76.99181214459163],[-148.48168481684817,-77.00194360821094],[-148.9388893888939,-77.02727226725918],[-149.23769237692377,-76.99687787640129],[-149.2628926289263,-76.986746412782],[-149.27369273692736,-76.96986064008317],[-149.27009270092702,-76.96479490827352],[-149.27009270092702,-76.9563520219241],[-149.26649266492666,-76.95128629011445],[-149.28449284492845,-76.94115482649515],[-149.29529295292951,-76.93102336287586],[-149.30249302493024,-76.92089189925656],[-149.3060930609306,-76.91244901290715],[-149.21609216092162,-76.8972518174782],[-148.8740887408874,-76.92426905379634],[-148.5320853208532,-76.94959771284456]]],[[[-146.16326163261633,-76.93102336287586],[-146.15246152461526,-76.93777767195539],[-146.14166141661417,-76.94284340376504],[-146.120061200612,-76.94959771284456],[-146.1380613806138,-76.95804059919398],[-146.15966159661596,-76.95804059919398],[-146.27126271262713,-76.94115482649515],[-146.29646296462965,-76.93271194014574],[-146.33246332463324,-76.91244901290715],[-146.32886328863287,-76.91244901290715],[-146.3252632526325,-76.90907185836738],[-146.3180631806318,-76.90569470382762],[-146.32166321663217,-76.90569470382762],[-146.3468634686347,-76.89556324020832],[-146.36846368463685,-76.89049750839868],[-146.38646386463864,-76.89049750839868],[-146.39726397263973,-76.89218608566856],[-146.40446404464046,-76.89556324020832],[-146.41166411664116,-76.90062897201797],[-146.4080640806408,-76.90907185836738],[-146.4080640806408,-76.91244901290715],[-146.40446404464046,-76.91413759017703],[-146.41526415264153,-76.92258047652645],[-146.4188641886419,-76.92426905379634],[-146.41526415264153,-76.92595763106621],[-146.41166411664116,-76.93102336287586],[-146.480064800648,-76.94959771284456],[-146.9660696606966,-77.00700934002059],[-147.03087030870307,-77.0053207627507],[-147.09567095670957,-76.99012356732176],[-147.05247052470526,-76.97999210370246],[-147.04167041670416,-76.9749263718928],[-147.00927009270092,-76.9563520219241],[-147.03087030870307,-76.92933478560597],[-147.04527045270453,-76.92089189925656],[-147.13167131671315,-76.88205462204927],[-147.09927099270993,-76.86179169481068],[-147.08847088470884,-76.85503738573114],[-147.12447124471245,-76.8398401903022],[-147.1028710287103,-76.82802014941302],[-147.07047070470705,-76.82464299487324],[-146.660066600666,-76.85166023119137],[-146.24966249662498,-76.88036604477938],[-146.24246242462425,-76.8871203538589],[-146.23526235262352,-76.89387466293844],[-146.2280622806228,-76.89556324020832],[-146.21366213662137,-76.8972518174782],[-146.2028620286203,-76.90231754928786],[-146.19566195661957,-76.90569470382762],[-146.16326163261633,-76.93102336287586]]],[[[-148.52848528485285,-76.79593718128524],[-148.71568715687158,-76.80606864490454],[-148.730087300873,-76.8094457994443],[-148.74088740887407,-76.81451153125396],[-148.75528755287553,-76.8297087266829],[-148.76608766087662,-76.83646303576243],[-148.77688776887769,-76.8398401903022],[-148.9280892808928,-76.84997165392149],[-149.1548915489155,-76.83646303576243],[-149.48969489694898,-76.76723136769724],[-149.40329403294032,-76.7317712450297],[-149.35289352893528,-76.71995120414053],[-149.30969309693097,-76.71488547233088],[-149.0540905409054,-76.72501693595017],[-148.8020880208802,-76.73683697683936],[-148.78768787687878,-76.73514839956947],[-148.78048780487805,-76.73008266775982],[-148.76248762487626,-76.7216397814104],[-148.75528755287553,-76.71657404960075],[-148.7480874808748,-76.71657404960075],[-148.40968409684098,-76.73852555410923],[-148.3268832688327,-76.75709990407795],[-148.3088830888309,-76.76554279042736],[-148.35568355683557,-76.79424860401537],[-148.41328413284134,-76.80269149036478],[-148.52848528485285,-76.79593718128524]]],[[[-150.23130231302312,-76.77736283131654],[-150.6021060210602,-76.79593718128524],[-150.81450814508145,-76.77060852223701],[-150.87570875708758,-76.74021413137912],[-150.86850868508685,-76.73008266775982],[-150.85050850508506,-76.71826262687064],[-150.8289082890829,-76.70981974052123],[-150.51570515705157,-76.69799969963205],[-150.2061020610206,-76.68617965874287],[-150.0909009090091,-76.70813116325135],[-150.09450094500946,-76.71488547233088],[-150.09810098100982,-76.71995120414053],[-150.10530105301052,-76.73008266775982],[-150.09810098100982,-76.7317712450297],[-150.07650076500764,-76.73852555410923],[-150.11250112501125,-76.75709990407795],[-150.1521015210152,-76.76723136769724],[-150.23130231302312,-76.77736283131654]]],[[[-146.81126811268112,-76.59668506343908],[-146.81846818468185,-76.60175079524873],[-146.7968679686797,-76.61019368159815],[-146.77526775267754,-76.62201372248732],[-146.76086760867608,-76.6338337633765],[-146.75006750067502,-76.63889949518615],[-146.73926739267392,-76.64058807245604],[-146.7860678606786,-76.64903095880545],[-146.80046800468006,-76.65071953607533],[-147.06327063270632,-76.62876803156686],[-147.0488704887049,-76.6338337633765],[-146.93366933669336,-76.65578526788498],[-146.95166951669518,-76.65916242242474],[-147.00567005670058,-76.65916242242474],[-146.9948699486995,-76.6642281542344],[-146.9660696606966,-76.66929388604404],[-146.91926919269193,-76.68449108147298],[-146.840068400684,-76.70137685417181],[-146.8940689406894,-76.71488547233088],[-146.95166951669518,-76.71657404960075],[-147.06327063270632,-76.70475400871157],[-147.2720727207272,-76.66085099969463],[-147.28287282872827,-76.65578526788498],[-147.3008730087301,-76.63889949518615],[-147.31167311673116,-76.63214518610663],[-147.3260732607326,-76.62707945429698],[-147.36567365673656,-76.61694799067767],[-147.3440734407344,-76.6051279497885],[-147.32967329673295,-76.60006221797886],[-147.31887318873189,-76.60006221797886],[-147.3440734407344,-76.5865535998198],[-147.35127351273513,-76.58317644528003],[-147.34047340473404,-76.58148786801014],[-147.31167311673116,-76.57979929074025],[-147.26847268472685,-76.56966782712097],[-147.26127261272612,-76.57304498166073],[-147.2792727927279,-76.5561592089619],[-147.2720727207272,-76.54771632261249],[-147.26127261272612,-76.54096201353296],[-147.31887318873189,-76.53251912718355],[-147.29727297272973,-76.5173219317546],[-147.26847268472685,-76.50887904540518],[-147.23967239672396,-76.50550189086542],[-147.16047160471604,-76.50381331359554],[-147.0920709207092,-76.51394477721483],[-147.0812708127081,-76.51901050902448],[-147.08847088470884,-76.52576481810401],[-147.09927099270993,-76.53083054991366],[-147.110071100711,-76.53251912718355],[-147.1208712087121,-76.53251912718355],[-147.08487084870848,-76.54771632261249],[-147.06687066870668,-76.55278205442214],[-147.04527045270453,-76.55278205442214],[-146.94086940869408,-76.54096201353296],[-146.91926919269193,-76.5460277453426],[-146.95886958869588,-76.56291351804143],[-146.96966969669697,-76.5662906725812],[-146.9480694806948,-76.56460209531132],[-146.81486814868148,-76.58148786801014],[-146.7968679686797,-76.58824217708967],[-146.81126811268112,-76.59668506343908]]],[[[-147.45927459274594,-76.09855476882369],[-147.43767437674376,-76.0782918415851],[-147.4088740887409,-76.0681603779658],[-147.3440734407344,-76.06309464615616],[-147.07047070470705,-76.07660326431521],[-146.90846908469084,-76.1069976551731],[-146.8940689406894,-76.11375196425263],[-146.88686886868868,-76.12388342787193],[-146.87606876068762,-76.13401489149123],[-146.8688686886869,-76.14583493238041],[-146.8580685806858,-76.15090066419006],[-146.70326703267034,-76.2049351368263],[-146.69966699666998,-76.22013233225525],[-146.6708667086671,-76.25896960946255],[-146.660066600666,-76.27585538216137],[-146.71046710467104,-76.2927411548602],[-146.76086760867608,-76.29780688666985],[-146.81126811268112,-76.29442973213008],[-147.06327063270632,-76.24714956857336],[-147.08487084870848,-76.23532952768419],[-147.0740707407074,-76.23701810495407],[-147.05967059670596,-76.23532952768419],[-147.03087030870307,-76.22688664133477],[-147.0740707407074,-76.21000086863594],[-147.38367383673835,-76.16103212780935],[-147.40527405274054,-76.15090066419006],[-147.3980739807398,-76.15090066419006],[-147.3728737287373,-76.14245777784063],[-147.3260732607326,-76.14076920057076],[-147.43767437674376,-76.09855476882369],[-147.45927459274594,-76.09855476882369]]],[[[-145.43965439654397,-75.5801615469697],[-145.40725407254072,-75.590293010589],[-145.34965349653496,-75.61562166963724],[-145.26325263252633,-75.66796756500361],[-145.23085230852308,-75.68147618316266],[-145.2020520205202,-75.68654191497231],[-145.220052200522,-75.70511626494103],[-145.24525245252454,-75.71524772856031],[-145.2740527405274,-75.71862488310008],[-145.3820538205382,-75.71862488310008],[-145.6988569885699,-75.66965614227348],[-146.01566015660157,-75.62068740144689],[-146.12366123661235,-75.58860443331912],[-146.1560615606156,-75.57509581516005],[-146.15966159661596,-75.5700300833504],[-146.1380613806138,-75.55483288792146],[-146.11286112861129,-75.54301284703229],[-145.9688596885969,-75.50924130163463],[-145.87165871658715,-75.50417556982498],[-145.7240572405724,-75.51768418798405],[-145.43965439654397,-75.5801615469697]]],[[[-132.56952569525694,-74.38802599443251],[-132.49752497524975,-74.38464883989275],[-132.4219242192422,-74.39815745805181],[-132.35712357123572,-74.40153461259158],[-132.34272342723426,-74.40491176713134],[-132.36792367923678,-74.41673180802053],[-132.37872378723787,-74.42179753983017],[-132.36792367923678,-74.42686327163982],[-132.36432364323645,-74.4285518489097],[-132.3751237512375,-74.438683312529],[-132.4363243632436,-74.45725766249771],[-132.4759247592476,-74.48596347608571],[-132.53352533525336,-74.49947209424478],[-132.5911259112591,-74.50116067151465],[-132.85752857528576,-74.47076628065676],[-132.88272882728828,-74.46063481703747],[-132.86472864728648,-74.45050335341817],[-132.85752857528576,-74.44712619887841],[-132.84672846728466,-74.44712619887841],[-132.88632886328864,-74.43024042617958],[-132.8971289712897,-74.42686327163982],[-132.86472864728648,-74.4285518489097],[-132.8359283592836,-74.42686327163982],[-132.81432814328144,-74.42179753983017],[-132.80352803528035,-74.41335465348075],[-132.74592745927458,-74.41504323075064],[-132.56952569525694,-74.38802599443251]]],[[[169.96309963099634,-73.51503154590316],[169.94509945099452,-73.53191731860198],[169.91629916299166,-73.54373735949116],[169.8586985869859,-73.56231170945988],[169.86589865898662,-73.56568886399964],[169.869498694987,-73.57582032761894],[169.869498694987,-73.58932894577799],[169.86589865898662,-73.59777183212742],[169.85509855098553,-73.60621471847682],[169.8370983709837,-73.61296902755636],[169.66789667896683,-73.63154337752506],[169.649896498965,-73.62985480025519],[169.649896498965,-73.61634618209612],[169.649896498965,-73.60621471847682],[169.64629646296464,-73.59608325485753],[169.63549635496355,-73.58932894577799],[169.6210962109621,-73.58257463669847],[169.6066960669607,-73.5791974821587],[169.5058950589506,-73.56737744126953],[169.45909459094594,-73.55555740038035],[169.5418954189542,-73.49645719593445],[169.66789667896683,-73.43060268240903],[169.67869678696786,-73.42215979605962],[169.649896498965,-73.40696260063066],[169.63549635496355,-73.39514255974149],[169.63549635496355,-73.3850110961222],[169.67149671496713,-73.36474816888361],[169.67149671496713,-73.34110808710524],[169.7038970389704,-73.3259108916763],[169.7506975069751,-73.32084515986665],[169.7938979389794,-73.32759946894618],[169.81549815498158,-73.34786239618478],[169.81549815498158,-73.3748796325029],[169.81909819098195,-73.40020829155114],[169.85149851498517,-73.41540548698008],[169.86229862298626,-73.44242272329821],[169.89469894698948,-73.47112853688621],[169.96309963099634,-73.51503154590316]]],[[[68.78048780487805,-72.11688956644029],[68.78408784087841,-72.11857814371017],[68.80568805688057,-72.12870960732947],[68.84168841688418,-72.15572684364759],[68.85248852488525,-72.17092403907654],[68.86328863288634,-72.192875543585],[68.85248852488525,-72.2131384708236],[68.83088830888309,-72.22833566625255],[68.80928809288093,-72.24015570714172],[68.7408874088741,-72.26379578892008],[68.45288452884529,-72.31445310701656],[68.4168841688417,-72.31276452974669],[68.39528395283955,-72.29756733431773],[68.44928449284492,-72.25028717076103],[68.60408604086041,-72.17092403907654],[68.62568625686256,-72.14897253456806],[68.6328863288633,-72.12195529824993],[68.64728647286475,-72.11013525736075],[68.68328683286833,-72.0966266392017],[68.72648726487265,-72.08818375285227],[68.75168751687517,-72.08987233012216],[68.75528755287553,-72.09493806193181],[68.7588875888759,-72.1050695255511],[68.76248762487626,-72.10844668009088],[68.76608766087662,-72.11182383463064],[68.76968769687699,-72.11351241190052],[68.78048780487805,-72.11688956644029]]],[[[-3.227432274322723,-71.05308588641418],[-3.180631806318047,-71.1104975135902],[-2.9862298622986145,-71.18479491346504],[-2.9430294302943025,-71.22532076794222],[-3.0366303663036547,-71.2371408088314],[-3.133831338313371,-71.23882938610129],[-3.2238322383223874,-71.22869792248198],[-3.3030330303302833,-71.2084349952434],[-3.3390333903338956,-71.19323779981445],[-3.371433714337144,-71.17128629530598],[-3.396633966339664,-71.1493347907975],[-3.414634146341456,-71.1307604408288],[-3.400234002340028,-71.12231755447938],[-3.3894338943389357,-71.11387466812997],[-3.371433714337144,-71.09361174089138],[-3.375033750337508,-71.09361174089138],[-3.375033750337508,-71.09192316362149],[-3.4110341103410917,-71.06659450457325],[-3.3678336783367797,-71.05308588641418],[-3.2922329223292195,-71.04970873187442],[-3.227432274322723,-71.05308588641418]]],[[[-5.938259382593827,-70.42324656474794],[-5.977859778597775,-70.46546099649501],[-5.967059670596711,-70.49923254189267],[-5.884258842588423,-70.54988985998915],[-5.920259202592007,-70.56508705541809],[-6.118261182611832,-70.6123672189748],[-6.150661506615052,-70.61405579624468],[-6.175861758617572,-70.60561290989527],[-6.193861938619392,-70.58366140538679],[-6.190261902619028,-70.57859567357715],[-6.1830618306183,-70.57521851903738],[-6.179461794617936,-70.57184136449762],[-6.417064170641709,-70.47221530557454],[-6.4530645306452925,-70.44519806925642],[-6.352263522635212,-70.46039526468536],[-6.294662946629472,-70.46039526468536],[-6.085860858608584,-70.40636079204911],[-6.0138601386013875,-70.40298363750935],[-5.938259382593827,-70.42324656474794]]],[[[3.2202322023220233,-70.39285217389005],[3.2634326343263638,-70.436755182907],[3.2526325263252716,-70.48741250100349],[3.2094320943209595,-70.53131551002043],[3.1590315903159194,-70.5633984781482],[3.061830618306203,-70.5937928690061],[2.957429574295759,-70.61405579624468],[2.745027450274506,-70.62925299167362],[2.683826838268402,-70.6224986825941],[2.629826298262998,-70.60223575535551],[2.5974259742597496,-70.57015278722774],[2.5794257942579577,-70.5245612009409],[2.64782647826479,-70.49416681008302],[3.051030510305111,-70.38609786481052],[3.1374313743137634,-70.37427782392135],[3.2202322023220233,-70.39285217389005]]],[[[72.20052200522005,-70.60730148716516],[72.21852218522187,-70.62418725986399],[72.21852218522187,-70.63094156894351],[72.19332193321935,-70.64445018710258],[72.16452164521647,-70.6512044961821],[72.08532085320854,-70.65458165072187],[71.82611826118261,-70.62418725986399],[71.78651786517867,-70.60730148716516],[71.6749167491675,-70.51780689186137],[71.66051660516607,-70.50260969643243],[71.64971649716497,-70.48741250100349],[71.63531635316355,-70.45364095560583],[71.63171631716318,-70.42831229655759],[71.63171631716318,-70.379343555731],[71.62451624516245,-70.35401489668274],[71.63531635316355,-70.34050627852369],[71.64251642516427,-70.33544054671404],[71.65331653316534,-70.33037481490439],[71.6749167491675,-70.30504615585615],[71.71451714517147,-70.2797174968079],[71.76131761317615,-70.26283172410908],[71.80811808118082,-70.26620887864885],[71.81891818918191,-70.27634034226814],[71.82251822518225,-70.29491469223686],[71.82971829718298,-70.31517761947545],[71.84771847718477,-70.32868623763451],[71.84771847718477,-70.36245778303217],[71.86211862118623,-70.38947501935029],[71.88731887318875,-70.41311510112864],[71.91251912519127,-70.43000087382747],[71.94491944919451,-70.4468866465263],[71.9809198091981,-70.4570181101456],[72.01692016920171,-70.46208384195525],[72.0349203492035,-70.46546099649501],[72.04932049320493,-70.47728103738419],[72.05652056520566,-70.49247823281313],[72.06372063720639,-70.50767542824208],[72.07452074520745,-70.52287262367102],[72.08892088920891,-70.53300408729032],[72.10332103321034,-70.53638124183009],[72.18612186121862,-70.53806981909996],[72.20052200522005,-70.54144697363972],[72.21132211322114,-70.54988985998915],[72.21492214922151,-70.5633984781482],[72.20772207722078,-70.57521851903738],[72.20052200522005,-70.58703855992655],[72.19692196921969,-70.59717002354586],[72.19692196921969,-70.60054717808562],[72.19692196921969,-70.60223575535551],[72.20052200522005,-70.60561290989527],[72.20052200522005,-70.60730148716516]]],[[[4.048240482404822,-70.30335757858627],[4.13104131041311,-70.25607741502955],[4.296642966429658,-70.23750306506085],[4.469444694446963,-70.24425737414037],[4.573845738457379,-70.27634034226814],[4.620646206462084,-70.35232631941287],[4.606246062460627,-70.41986941020818],[4.5450454504545235,-70.47221530557454],[4.465844658446599,-70.50092111916254],[4.332643326433271,-70.5042982737023],[4.20664206642067,-70.46883815103477],[4.10584105841059,-70.40129506023946],[4.048240482404822,-70.30335757858627]]],[[[1.409414094140942,-70.03993952448457],[1.4346143461434622,-70.06357960626292],[1.4490144901449185,-70.0956625743907],[1.4634146341463463,-70.14969704702695],[1.4634146341463463,-70.15138562429682],[1.3698136981369942,-70.2037315196632],[1.2762127621276136,-70.27465176499827],[1.2582125821258217,-70.30335757858627],[1.2222122221222378,-70.379343555731],[1.1970119701197177,-70.40636079204911],[1.1646116461164695,-70.4164922556684],[1.1502115021150416,-70.3979179056997],[1.1430114301143135,-70.36076920576228],[1.1178111781117934,-70.31686619674534],[1.0602106021060251,-70.26789745591873],[1.0026100261002568,-70.23581448779096],[0.9558095580955808,-70.19191147877402],[0.9414094140941529,-70.10410546074012],[0.9810098100981008,-70.06526818353281],[1.0422104221042332,-70.04669383356409],[1.297812978129798,-70.02305375178574],[1.362613626136266,-70.02474232905563],[1.409414094140942,-70.03993952448457]]],[[[85.6610566105661,-66.74383669367354],[85.76905769057691,-66.75903388910248],[85.79785797857977,-66.76916535272179],[85.83745837458378,-66.79449401177001],[85.94185941859422,-66.89074291615333],[85.92745927459276,-66.91100584339193],[85.87705877058772,-66.93633450244016],[85.78705787057874,-66.96841747056794],[85.61425614256143,-66.98699182053664],[85.58905589055894,-66.981926088727],[85.61425614256143,-66.95828600694864],[85.62505625056252,-66.94815454332934],[85.64305643056434,-66.93971165697994],[85.6178561785618,-66.93971165697994],[85.37305373053732,-66.87723429799428],[85.33705337053374,-66.85697137075567],[85.30825308253083,-66.83164271170745],[85.27945279452797,-66.80124832084955],[85.25785257852579,-66.76578819818201],[85.2758527585276,-66.737082384594],[85.30825308253083,-66.72357376643495],[85.34425344253441,-66.7185080346253],[85.4846548465485,-66.72019661189518],[85.56745567455675,-66.737082384594],[85.62145621456216,-66.73877096186389],[85.65745657456574,-66.74383669367354],[85.6610566105661,-66.74383669367354]]],[[[48.7750877508775,-66.72019661189518],[48.80748807488075,-66.7674767754519],[48.76428764287644,-66.78267397088084],[48.59508595085953,-66.7776082390712],[48.400684006840066,-66.80800262992908],[48.31068310683108,-66.80969120719897],[48.281882818828194,-66.7674767754519],[48.281882818828194,-66.75227958002296],[48.28908289082892,-66.737082384594],[48.30348303483035,-66.72188518916506],[48.3358833588336,-66.708376571006],[48.375483754837546,-66.69993368465659],[48.72468724687246,-66.70331083919635],[48.7750877508775,-66.72019661189518]]],[[[86.55026550265501,-66.70331083919635],[86.57906579065792,-66.7185080346253],[86.61146611466114,-66.72188518916506],[86.67626676266764,-66.72019661189518],[86.61866618666187,-66.74552527094342],[86.49626496264966,-66.78436254815072],[86.40266402664025,-66.7961825890399],[86.34506345063454,-66.79280543450014],[86.31626316263163,-66.78605112542061],[86.26586265862659,-66.76241104364225],[86.23706237062373,-66.74552527094342],[86.229862298623,-66.73032807551448],[86.25866258662586,-66.70499941646624],[86.2946629466295,-66.68811364376741],[86.33066330663308,-66.67798218014812],[86.51786517865179,-66.66785071652882],[86.53586535865361,-66.66953929379869],[86.53226532265325,-66.67798218014812],[86.53226532265325,-66.68642506649752],[86.53946539465397,-66.69486795284695],[86.55026550265501,-66.70331083919635]]],[[[98.58878588785888,-66.3875468897283],[98.5959859598596,-66.37910400337887],[98.62118621186215,-66.37066111702947],[98.6607866078661,-66.36390680794993],[98.71118711187114,-66.36390680794993],[98.8587885878859,-66.38923546699817],[98.95238952389525,-66.41794128058618],[98.93798937989379,-66.43144989874524],[98.83718837188371,-66.47704148503207],[98.81558815588158,-66.4837957941116],[98.79038790387904,-66.48717294865136],[98.7291872918729,-66.48210721684173],[98.66798667986683,-66.46184428960314],[98.61758617586179,-66.42976132147535],[98.58878588785888,-66.3875468897283]]],[[[162.62622626226266,-66.46184428960314],[162.61542615426157,-66.46859859868266],[162.5686256862569,-66.52601022585867],[162.5578255782558,-66.5327645349382],[162.5470254702547,-66.53445311220808],[162.53262532625325,-66.52938738039843],[162.5146251462515,-66.52263307131891],[162.47862478624785,-66.51081303042973],[162.47142471424718,-66.50743587588997],[162.34182341823418,-66.40949839423676],[162.32742327423273,-66.40443266242713],[162.29142291422914,-66.39767835334759],[162.32382323823242,-66.38416973518852],[162.34182341823418,-66.37234969429934],[162.3490234902349,-66.36052965341017],[162.34542345423455,-66.35377534433064],[162.3310233102331,-66.35208676706075],[162.32382323823242,-66.3470210352511],[162.32382323823242,-66.33857814890169],[162.3310233102331,-66.32169237620286],[162.32742327423273,-66.31324948985345],[162.32022320223206,-66.30480660350403],[162.30942309423097,-66.29974087169438],[162.28782287822878,-66.29467513988475],[162.29862298622987,-66.25414928540755],[162.31302313023133,-66.25077213086779],[162.5578255782558,-66.4365156305549],[162.57222572225726,-66.44664709417418],[162.62622626226266,-66.46184428960314]]],[[[96.91836918369182,-66.05489716756139],[96.97596975969759,-66.0751600948],[97.01557015570154,-66.10555448565788],[97.029970299703,-66.14101460832542],[97.01197011970123,-66.17309757645319],[96.90756907569079,-66.2119348536605],[96.65916659166595,-66.21868916274002],[96.40716407164075,-66.22713204908943],[96.35676356763571,-66.22206631727978],[96.33876338763389,-66.19673765823154],[96.29556295562958,-66.18322904007249],[96.34596345963462,-66.11906310381694],[96.37476374763747,-66.09204586749883],[96.41796417964179,-66.06671720845057],[96.46836468364683,-66.05152001302163],[96.52956529565296,-66.03969997213245],[96.59796597965982,-66.03632281759269],[96.66276662766631,-66.03969997213245],[96.68436684366844,-66.046454281212],[96.72396723967239,-66.06334005391082],[96.74916749167494,-66.06840578572046],[96.79236792367925,-66.06840578572046],[96.87876878768787,-66.05320859029152],[96.91836918369182,-66.05489716756139]]],[[[92.49752497524975,-65.7036730954258],[92.61992619926201,-65.72562459993426],[92.67032670326705,-65.74926468171263],[92.67032670326705,-65.78472480438018],[92.58032580325806,-65.81680777250794],[92.4327243272433,-65.82356208158747],[92.29952299522995,-65.80329915434888],[92.23472234722351,-65.75095325898252],[92.28512285122855,-65.71211598177521],[92.34992349923499,-65.69523020907639],[92.42192421924221,-65.6935416318065],[92.49752497524975,-65.7036730954258]]],[[[103.29043290432907,-65.3912863004975],[103.39123391233915,-65.41492638227585],[103.40923409234091,-65.42336926862527],[103.420034200342,-65.43518930951444],[103.41643416434164,-65.4486979276735],[103.40203402034024,-65.45714081402292],[103.38043380433805,-65.46389512310245],[103.32283322833229,-65.47233800945187],[103.21123211232111,-65.4689608549121],[103.17163171631717,-65.4605179685627],[103.13923139231395,-65.44532077313374],[103.12843128431285,-65.4301235777048],[103.13923139231395,-65.38284341414808],[103.14643146431467,-65.3625804869095],[103.13923139231395,-65.33894040513113],[103.10323103231036,-65.30516885973348],[103.08523085230854,-65.29503739611418],[103.03843038430387,-65.27984020068524],[102.82602826028261,-65.25113438709724],[102.77562775627757,-65.23256003712852],[102.77562775627757,-65.225805728049],[102.75042750427508,-65.17852556449228],[102.7828278282783,-65.14137686455486],[102.84042840428407,-65.12786824639579],[102.91242912429124,-65.13124540093557],[103.09243092430927,-65.17345983268262],[103.15003150031504,-65.19709991446099],[103.18963189631899,-65.22918288258876],[103.19683196831971,-65.26295442798641],[103.1680316803168,-65.30179170519372],[103.1788317883179,-65.33556325059138],[103.19683196831971,-65.35582617782995],[103.22563225632257,-65.37102337325891],[103.29043290432907,-65.3912863004975]]],[[[105.70245702457026,-10.431473320355423],[105.71325713257136,-10.436539052165074],[105.71325713257136,-10.451736247594013],[105.709657096571,-10.47031059756273],[105.70605706057063,-10.493950679341083],[105.70605706057063,-10.514213606579673],[105.6988569885699,-10.529410802008627],[105.6988569885699,-10.55305088378698],[105.69525695256954,-10.564870924676157],[105.67725677256772,-10.566559501946045],[105.67365673656735,-10.549673729247218],[105.66645666456668,-10.53278795654839],[105.66285662856632,-10.519279338389325],[105.64845648456486,-10.5125250293098],[105.62685626856268,-10.509147874770036],[105.60525605256055,-10.51083645203991],[105.58365583655836,-10.515902183849562],[105.580055800558,-10.504082142960385],[105.59085590855909,-10.499016411150734],[105.59805598055982,-10.480442061182018],[105.59445594455946,-10.466933443022967],[105.59445594455946,-10.453424824863902],[105.60885608856091,-10.458490556673553],[105.62685626856268,-10.468622020292841],[105.65565655656559,-10.47031059756273],[105.67005670056699,-10.456801979403664],[105.68445684456844,-10.439916206704837],[105.70245702457026,-10.431473320355423]]],[[[126.1758617586176,34.73290291719711],[126.1758617586176,34.724460030847695],[126.17946179461796,34.71263998995852],[126.17226172261724,34.704197103609104],[126.15786157861578,34.70250852633923],[126.14706147061474,34.71263998995852],[126.13986139861402,34.72277145357782],[126.12906129061292,34.72277145357782],[126.1218612186122,34.71939429903806],[126.11826118261183,34.71770572176817],[126.1110611106111,34.71770572176817],[126.10386103861038,34.72277145357782],[126.10386103861038,34.731214339927234],[126.09306093060934,34.744722958086285],[126.07506075060752,34.76160873078511],[126.06786067860679,34.77005161713453],[126.07866078660788,34.76836303986465],[126.08586085860861,34.76836303986465],[126.09306093060934,34.77005161713453],[126.10386103861038,34.771740194404416],[126.11826118261183,34.77005161713453],[126.12546125461256,34.766674462594764],[126.13266132661329,34.76160873078511],[126.14346143461438,34.75823157624535],[126.15426154261542,34.756542998975476],[126.16506165061651,34.75485442170559],[126.16866168661687,34.74978868989594],[126.17226172261724,34.744722958086285],[126.17226172261724,34.73965722627665],[126.1758617586176,34.73290291719711]]],[[[126.16866168661687,34.792003121643006],[126.16506165061651,34.79031454437313],[126.16146161461614,34.78356023529359],[126.16506165061651,34.77005161713453],[126.15786157861578,34.76498588532489],[126.14706147061474,34.76160873078511],[126.13626136261365,34.766674462594764],[126.1218612186122,34.77680592621407],[126.10386103861038,34.78187165802372],[126.09306093060934,34.786937389833355],[126.10386103861038,34.793691698912895],[126.12906129061292,34.79706885345266],[126.14346143461438,34.80213458526231],[126.15066150661505,34.808888894341834],[126.15786157861578,34.80382316253218],[126.16506165061651,34.79706885345266],[126.16866168661687,34.792003121643006]]],[[[126.07866078660788,34.8223975125009],[126.07146071460716,34.83252897612019],[126.06426064260643,34.84266043973949],[126.06786067860679,34.851103326088904],[126.08226082260825,34.856169057898555],[126.09306093060934,34.85785763516843],[126.10386103861038,34.85279190335878],[126.1110611106111,34.85279190335878],[126.11466114661147,34.85954621243832],[126.11466114661147,34.871366253327494],[126.1218612186122,34.87812056240702],[126.13626136261365,34.87812056240702],[126.14346143461438,34.87980913967691],[126.14706147061474,34.876431985137145],[126.15066150661505,34.871366253327494],[126.15426154261542,34.86461194424797],[126.13986139861402,34.85785763516843],[126.14346143461438,34.84266043973949],[126.14346143461438,34.83252897612019],[126.13626136261365,34.829151821580425],[126.12546125461256,34.829151821580425],[126.11826118261183,34.82408608977077],[126.11826118261183,34.8122660488816],[126.11466114661147,34.80382316253218],[126.10386103861038,34.79875743072253],[126.0966609666097,34.79875743072253],[126.09306093060934,34.80551173980207],[126.09306093060934,34.808888894341834],[126.07866078660788,34.8223975125009]]],[[[128.0730807308073,34.84434901700938],[128.07668076680767,34.84266043973949],[128.0838808388084,34.835906130659964],[128.0730807308073,34.834217553390076],[128.02628026280263,34.84266043973949],[128.00108001080014,34.835906130659964],[127.98667986679868,34.83759470792984],[127.97227972279723,34.84603759427925],[127.9650796507965,34.85954621243832],[127.96867968679686,34.87474340786726],[127.98307983079832,34.88994060329621],[127.99387993879941,34.90344922145526],[128.00108001080014,34.913580685074564],[128.0190801908019,34.91695783961433],[128.02268022680227,34.90513779872515],[128.01548015480154,34.88994060329621],[128.01188011880117,34.87812056240702],[128.01188011880117,34.869677676057606],[128.0190801908019,34.86630052151784],[128.02628026280263,34.876431985137145],[128.03708037080372,34.891629180566085],[128.04428044280445,34.89331775783597],[128.0478804788048,34.886563448756434],[128.05508055080554,34.88318629421667],[128.0586805868059,34.87980913967691],[128.0622806228062,34.86798909878773],[128.06588065880658,34.851103326088904],[128.0730807308073,34.84434901700938]]],[[[67.32967329673298,69.57331772668684],[67.3368733687337,69.55980910852776],[67.3440734407344,69.54798906763858],[67.3440734407344,69.52266040859035],[67.31887318873189,69.48720028592282],[67.29007290072903,69.46524878141435],[67.27927279272794,69.45005158598539],[67.25767257672578,69.43823154509622],[67.2288722887229,69.43316581328656],[67.21447214472147,69.43316581328656],[67.05967059670598,69.45005158598539],[67.04167041670416,69.45680589506492],[67.02007020070201,69.47706882230352],[67.03807038070383,69.4973317495421],[67.15327153271534,69.55980910852776],[67.18927189271895,69.57162914941696],[67.3008730087301,69.58513776757601],[67.31887318873189,69.58344919030614],[67.32967329673298,69.57331772668684]]],[[[-73.88173881738817,-38.36054136421526],[-73.87453874538745,-38.36898425056467],[-73.87093870938709,-38.3858700232635],[-73.8781387813878,-38.40106721869245],[-73.88533885338853,-38.40951010504186],[-73.89253892538925,-38.414575836851505],[-73.89973899738997,-38.414575836851505],[-73.91053910539105,-38.40951010504186],[-73.92853928539284,-38.396001486882795],[-73.94653946539465,-38.372361405104435],[-73.95013950139501,-38.357164209675496],[-73.95013950139501,-38.33858985970679],[-73.95373953739536,-38.32170408700796],[-73.95373953739536,-38.313261200658545],[-73.93213932139321,-38.32339266427784],[-73.88173881738817,-38.36054136421526]]],[[[180,-16.962890200261697],[180,-16.964578777531585],[179.99279992799927,-16.974710241150888],[179.98199981999824,-16.984841704770176],[179.96759967599678,-16.99328459111959],[179.95319953199532,-16.99835032292924],[179.94239942399423,-17.001727477469004],[179.92799927999283,-17.001727477469004],[179.91719917199174,-16.99835032292924],[179.91359913599138,-16.9831531275003],[179.89559895598956,-16.967955932071348],[179.88839888398883,-16.954447313912283],[179.89559895598956,-16.939250118483343],[179.90639906399065,-16.927430077594167],[179.9315993159932,-16.90885572762545],[179.96759967599678,-16.85819840952898],[179.97119971199714,-16.844689791369916],[179.97839978399787,-16.827804018671088],[180,-16.787278164193907],[-180,-16.78558958692402],[180,-16.962890200261697]]],[[[123.60183601836019,-1.6035913534086745],[123.60903609036092,-1.6120342397580885],[123.61623616236164,-1.6238542806472651],[123.61623616236164,-1.640740053346093],[123.61263612636128,-1.6525600942352696],[123.60903609036092,-1.6745115987437487],[123.60903609036092,-1.6880202169028138],[123.60183601836019,-1.7032174123317532],[123.58743587435873,-1.7133488759510556],[123.58023580235806,-1.7167260304908183],[123.5766357663577,-1.720103185030581],[123.5658356583566,-1.7217917623004695],[123.55503555035551,-1.720103185030581],[123.54423544235442,-1.7217917623004695],[123.53343533435333,-1.7167260304908183],[123.52263522635229,-1.706594566871516],[123.51543515435156,-1.7032174123317532],[123.5118351183512,-1.7099717214112928],[123.50463504635047,-1.7133488759510556],[123.49383493834938,-1.7099717214112928],[123.48663486634865,-1.6998402577919904],[123.48663486634865,-1.693085948712465],[123.47943479434798,-1.6694458669340975],[123.47583475834762,-1.6491829396955069],[123.47943479434798,-1.6339857442665675],[123.47943479434798,-1.6187885488376281],[123.47943479434798,-1.6154113942978512],[123.48303483034829,-1.6103456624882142],[123.48663486634865,-1.6035913534086745],[123.49383493834938,-1.5951484670592606],[123.49023490234902,-1.5850170034399724],[123.48663486634865,-1.5799512716303212],[123.47943479434798,-1.5765741170905585],[123.47583475834762,-1.5698198080110188],[123.47583475834762,-1.5630654989314934],[123.47943479434798,-1.5579997671218422],[123.48303483034829,-1.544491148962777],[123.49023490234902,-1.5242282217241865],[123.50103501035011,-1.509031026295247],[123.5118351183512,-1.5056538717554844],[123.51903519035193,-1.5056538717554844],[123.52623526235266,-1.4988995626759447],[123.52263522635229,-1.4820137899771169],[123.52983529835302,-1.4803252127072426],[123.53703537035369,-1.4853909445168938],[123.54423544235442,-1.4972109854060704],[123.55863558635588,-1.5461797262326655],[123.55863558635588,-1.556311189851968],[123.55503555035551,-1.5630654989314934],[123.55863558635588,-1.5816398489001955],[123.56943569435697,-1.6002141988689118],[123.58023580235806,-1.6019027761388003],[123.5910359103591,-1.5985256215990233],[123.60183601836019,-1.6035913534086745]]],[[[-16.475564755647554,19.73158245155922],[-16.468364683646826,19.72989387428933],[-16.468364683646826,19.719762410670043],[-16.47196471964719,19.699499483431453],[-16.479164791647918,19.685990865272387],[-16.482764827648282,19.677547978922973],[-16.493564935649346,19.6843022880025],[-16.49716497164971,19.706253792510978],[-16.48996489964898,19.724828142479694],[-16.475564755647554,19.73158245155922]]],[[[113.84573845738458,22.196905265587958],[113.83853838538386,22.205348151937372],[113.83853838538386,22.21716819282655],[113.83853838538386,22.228988233715725],[113.83853838538386,22.234053965525376],[113.84933849338495,22.234053965525376],[113.84933849338495,22.24418542914468],[113.85653856538568,22.245874006414553],[113.85653856538568,22.252628315494093],[113.84933849338495,22.256005470033855],[113.84933849338495,22.25769404730373],[113.86013860138604,22.26275977911338],[113.86733867338677,22.26951408819292],[113.86733867338677,22.271202665462795],[113.8781387813878,22.272891242732683],[113.88533885338853,22.27964555181221],[113.89253892538926,22.293154169971274],[113.91053910539108,22.293154169971274],[113.92133921339212,22.291465592701385],[113.92853928539284,22.28471128362186],[113.93933939339394,22.288088438161623],[113.96093960939612,22.301597056320688],[113.97533975339752,22.298219901780925],[113.98253982539825,22.308351365400213],[113.99333993339934,22.3100399426701],[114.00054000540007,22.32185998355928],[114.01854018540189,22.335368601718343],[114.0221402214022,22.328614292638804],[114.04374043740438,22.34550006533763],[114.05094050940511,22.34212291079787],[114.05454054540547,22.337057178988218],[114.05094050940511,22.328614292638804],[114.05094050940511,22.32017140628939],[114.04734047340474,22.323548560829167],[114.04014040140402,22.32523713809904],[114.03294032940329,22.32523713809904],[114.02934029340292,22.308351365400213],[114.01134011340116,22.311728519939976],[114.01134011340116,22.298219901780925],[114.0221402214022,22.301597056320688],[114.01854018540189,22.28977701543151],[114.01854018540189,22.26444835638327],[114.00414004140043,22.26444835638327],[113.9969399693997,22.267825510923032],[114.0077400774008,22.252628315494093],[113.99333993339934,22.240808274604916],[114.01494014940153,22.22729965644585],[114.00054000540007,22.215479615556674],[113.98253982539825,22.208725306477135],[113.97893978939788,22.215479615556674],[113.97893978939788,22.23743112006514],[113.96813968139685,22.23743112006514],[113.96093960939612,22.23743112006514],[113.94653946539466,22.23743112006514],[113.92853928539284,22.223922501906088],[113.92133921339212,22.223922501906088],[113.91773917739181,22.218856770096437],[113.92853928539284,22.21716819282655],[113.92853928539284,22.210413883747023],[113.91773917739181,22.205348151937372],[113.90693906939072,22.203659574667483],[113.89253892538926,22.215479615556674],[113.89253892538926,22.2222339246362],[113.88533885338853,22.22054534736631],[113.87453874538744,22.213791038286786],[113.86013860138604,22.20197099739761],[113.84573845738458,22.196905265587958]]],[[[113.54693546935471,22.742315723760072],[113.5577355773558,22.735561414680546],[113.56493564935653,22.720364219251593],[113.5721357213572,22.700101292013002],[113.57573575735756,22.698412714743114],[113.60453604536048,22.684904096584063],[113.6369363693637,22.65619828299606],[113.64413644136442,22.625803892138165],[113.64053640536406,22.602163810359812],[113.62973629736297,22.595409501280272],[113.60093600936011,22.6122952739791],[113.56133561335616,22.65619828299606],[113.52533525335252,22.683215519314174],[113.4929349293493,22.705167023822654],[113.47493474934748,22.71867564198172],[113.47493474934748,22.730495682870895],[113.5037350373504,22.735561414680546],[113.52533525335252,22.745692878299835],[113.54693546935471,22.742315723760072]]],[[[-81.33021330213302,24.702753934093877],[-81.31941319413194,24.694311047744463],[-81.31581315813158,24.679113852315524],[-81.31941319413194,24.67573669777576],[-81.32661326613265,24.684179584125175],[-81.33381333813338,24.689245315934826],[-81.33741337413373,24.69262247047459],[-81.3410134101341,24.699376779554115],[-81.33741337413373,24.704442511363766],[-81.33021330213302,24.702753934093877]]],[[[36.94176941769419,25.418710696524144],[36.95976959769598,25.418710696524144],[36.95976959769598,25.41533354198438],[36.94176941769419,25.405202078365093],[36.93456934569346,25.400136346555442],[36.9237692376924,25.388316305666265],[36.91656916569167,25.371430532967437],[36.89856898568988,25.361299069348135],[36.87696876968769,25.37311911023731],[36.8589685896859,25.393382037475902],[36.84096840968411,25.405202078365093],[36.80136801368013,25.445727932842274],[36.7977679776798,25.44741651011215],[36.79416794167943,25.4524822419218],[36.79416794167943,25.45754797373145],[36.7977679776798,25.455859396461562],[36.7977679776798,25.45923655100134],[36.7977679776798,25.464302282810976],[36.786967869678705,25.47443374643028],[36.77616776167761,25.489630941859218],[36.77616776167761,25.496385250938758],[36.786967869678705,25.49469667366887],[36.7977679776798,25.486253787319455],[36.81576815768159,25.465990860080865],[36.82296822968232,25.45923655100134],[36.84096840968411,25.450793664651925],[36.87696876968769,25.43728504649286],[36.89496894968951,25.43221931468321],[36.90576905769058,25.43221931468321],[36.91656916569167,25.427153582873558],[36.92016920169203,25.420399273794033],[36.89856898568988,25.418710696524144],[36.89496894968951,25.405202078365093],[36.90576905769058,25.393382037475902],[36.91656916569167,25.39675919201568],[36.92736927369273,25.408579232904856],[36.94176941769419,25.418710696524144]]],[[[36.79056790567907,25.498073828208632],[36.77976779767798,25.50482813728817],[36.77616776167761,25.50482813728817],[36.77256772567728,25.506516714558046],[36.76536765367655,25.51495960090746],[36.76536765367655,25.523402487256874],[36.75816758167582,25.526779641796637],[36.74376743767439,25.528468219066525],[36.74016740167403,25.533533950876176],[36.74376743767439,25.531845373606288],[36.74376743767439,25.53522252814605],[36.7329673296733,25.547042569035227],[36.71856718567187,25.55548545538464],[36.70056700567005,25.55548545538464],[36.69336693366935,25.550419723575004],[36.68976689766899,25.547042569035227],[36.68256682566826,25.543665414495464],[36.68256682566826,25.553796878114767],[36.68976689766899,25.567305496273832],[36.70776707767078,25.570682650813595],[36.72576725767257,25.565616919003944],[36.77616776167761,25.53522252814605],[36.77976779767798,25.528468219066525],[36.786967869678705,25.51664817817735],[36.80136801368013,25.508205291827935],[36.81576815768159,25.503139560018283],[36.837368373683745,25.489630941859218],[36.87336873368736,25.462613705541102],[36.88416884168842,25.45417081919169],[36.88056880568806,25.450793664651925],[36.87696876968769,25.44741651011215],[36.88056880568806,25.444039355572386],[36.87336873368736,25.445727932842274],[36.8589685896859,25.45754797373145],[36.84456844568447,25.464302282810976],[36.83376833768338,25.465990860080865],[36.83016830168302,25.47274516916039],[36.82656826568265,25.484565210049567],[36.81576815768159,25.487942364589344],[36.80856808568086,25.486253787319455],[36.80136801368013,25.487942364589344],[36.79056790567907,25.498073828208632]]],[[[36.68256682566826,25.57237122808347],[36.68256682566826,25.565616919003944],[36.67536675366753,25.55548545538464],[36.66816668166683,25.550419723575004],[36.660966609666104,25.55210830084488],[36.64656646566468,25.56223976446418],[36.56736567365675,25.59769988713171],[36.545765457654596,25.602765618941362],[36.53856538565387,25.589257000782297],[36.527765277652776,25.594322732591948],[36.509765097650984,25.611208505290776],[36.49896498964989,25.62471712344984],[36.49176491764919,25.64498005068843],[36.49896498964989,25.66186582338726],[36.52416524165241,25.685505905165613],[36.534965349653504,25.69732594605479],[36.54216542165423,25.70239167786444],[36.545765457654596,25.695637368784915],[36.53856538565387,25.685505905165613],[36.52416524165241,25.66186582338726],[36.52416524165241,25.653422937037845],[36.53136531365314,25.64498005068843],[36.53856538565387,25.63991431887878],[36.54216542165423,25.63991431887878],[36.54936549365493,25.638225741608892],[36.552965529655296,25.631471432529366],[36.56376563765639,25.626405700719715],[36.570965709657116,25.62471712344984],[36.596165961659636,25.601077041671473],[36.610566105661064,25.590945578052185],[36.62136621366216,25.590945578052185],[36.63216632166322,25.59263415532206],[36.63216632166322,25.589257000782297],[36.635766357663584,25.58250269170277],[36.63936639366395,25.574059805353357],[36.64656646566468,25.570682650813595],[36.65736657366574,25.57237122808347],[36.653766537665376,25.574059805353357],[36.653766537665376,25.57743695989312],[36.660966609666104,25.58250269170277],[36.66816668166683,25.580814114432883],[36.68256682566826,25.57237122808347]]],[[[129.0270902709027,32.8991080021045],[129.03069030690307,32.89235369302497],[129.03069030690307,32.88897653848521],[129.0270902709027,32.855204993087554],[129.02349023490234,32.84845068400803],[129.0162901629016,32.84845068400803],[129.0162901629016,32.85689357035743],[129.0126901269013,32.85858214762732],[129.00549005490058,32.86533645670684],[128.99828998289985,32.86702503397673],[128.9838898388984,32.86195930216708],[128.97668976689766,32.86364787943697],[128.9730897308973,32.86871361124662],[128.96948969489694,32.87209076578638],[128.96948969489694,32.873779343056256],[128.96588965889657,32.88897653848521],[128.96588965889657,32.897419424834624],[128.9730897308973,32.8991080021045],[128.99108991089912,32.890665115755084],[128.99468994689948,32.890665115755084],[128.99468994689948,32.895730847564735],[128.98748987489876,32.900796579374386],[128.9838898388984,32.90586231118404],[128.9838898388984,32.91261662026356],[128.98028980289803,32.915993774803326],[128.98028980289803,32.92105950661298],[128.9838898388984,32.922748083882865],[128.9838898388984,32.92612523842263],[128.9838898388984,32.92950239296239],[128.99108991089912,32.92950239296239],[129.00909009090094,32.92443666115274],[129.01989019890198,32.915993774803326],[129.02349023490234,32.9092394657238],[129.0270902709027,32.8991080021045]]],[[[166.71226712267122,-45.61635789290121],[166.73026730267304,-45.62648935652051],[166.7446674466745,-45.645063706489225],[166.75186751867523,-45.66870378826758],[166.75546755467553,-45.69065529277606],[166.75186751867523,-45.71260679728453],[166.74106741067413,-45.727803992713476],[166.7230672306723,-45.73624687906289],[166.69786697866982,-45.73962403360265],[166.69786697866982,-45.734558301793],[166.6906669066691,-45.724426838173706],[166.68346683466837,-45.71936110636406],[166.67626676266764,-45.73624687906289],[166.66546665466655,-45.741312610872534],[166.65826658266582,-45.741312610872534],[166.65106651066515,-45.73962403360265],[166.64386643866442,-45.72949256998336],[166.64026640266405,-45.709229642744766],[166.6366663666637,-45.68896671550617],[166.6366663666637,-45.67714667461699],[166.62226622266223,-45.65857232464828],[166.6042660426604,-45.660260901918164],[166.54306543065434,-45.71091822001465],[166.52866528665288,-45.71936110636406],[166.5070650706507,-45.724426838173706],[166.51066510665106,-45.71091822001465],[166.52146521465215,-45.69403244731582],[166.53226532265325,-45.67714667461699],[166.54306543065434,-45.67039236553746],[166.5466654666547,-45.6670152109977],[166.55746557465574,-45.65181801556875],[166.56826568265683,-45.63662082013981],[166.57906579065792,-45.63493224286992],[166.6042660426604,-45.63493224286992],[166.68346683466837,-45.61635789290121],[166.7014670146702,-45.61466931563133],[166.71226712267122,-45.61635789290121]]],[[[173.7827378273783,-40.906915887198366],[173.79713797137975,-40.90185015538872],[173.80073800738006,-40.89509584630919],[173.80433804338043,-40.884964382689894],[173.79713797137975,-40.87314434180072],[173.78633786337866,-40.88327580542001],[173.7827378273783,-40.886652959959775],[173.77913779137793,-40.8748329190706],[173.77553775537757,-40.86301287818142],[173.77913779137793,-40.84950426002236],[173.7827378273783,-40.83937279640306],[173.80073800738006,-40.84950426002236],[173.81153811538115,-40.861324300911534],[173.8259382593826,-40.87145576453083],[173.8475384753848,-40.87314434180072],[173.8475384753848,-40.866390032721185],[173.83313833138334,-40.85963572364165],[173.82233822338225,-40.847815682752476],[173.81513815138152,-40.8359956418633],[173.81153811538115,-40.81910986916447],[173.81513815138152,-40.803912673735525],[173.8259382593826,-40.766763973798106],[173.83313833138334,-40.75832108744869],[173.8367383673837,-40.75832108744869],[173.84033840338407,-40.766763973798106],[173.84033840338407,-40.77520686014752],[173.8511385113851,-40.7768954374174],[173.85473854738547,-40.763386819258336],[173.8619386193862,-40.75494393290893],[173.86913869138692,-40.74987820109928],[173.88353883538838,-40.75663251017881],[173.88353883538838,-40.77014112833787],[173.88353883538838,-40.78871547830658],[173.88713887138874,-40.805601251005406],[173.89433894338947,-40.79546978738611],[173.9267392673927,-40.78871547830658],[173.94113941139415,-40.7768954374174],[173.90873908739087,-40.7768954374174],[173.93033930339305,-40.763386819258336],[173.94113941139415,-40.75494393290893],[173.94833948339482,-40.743123892019746],[173.9591395913959,-40.71441807843174],[173.96633966339664,-40.70935234662209],[173.969939699397,-40.722860964781155],[173.969939699397,-40.7380581602101],[173.96633966339664,-40.75156677836916],[173.95553955539555,-40.7768954374174],[173.96273962739627,-40.7870269010367],[173.96273962739627,-40.79378121011623],[173.9591395913959,-40.79715836465599],[173.95193951939518,-40.80053551919576],[173.93753937539378,-40.81404413735482],[173.93393933939342,-40.81910986916447],[173.93033930339305,-40.829241332783766],[173.9267392673927,-40.85456999183201],[173.92313923139233,-40.866390032721185],[173.9159391593916,-40.868078609991066],[173.89793897938978,-40.866390032721185],[173.8907389073891,-40.86976718726095],[173.87993879938801,-40.88158722815013],[173.8727387273873,-40.886652959959775],[173.8475384753848,-40.89340726903931],[173.84393843938443,-40.89678442357907],[173.8367383673837,-40.9035387326586],[173.8367383673837,-40.910293041738136],[173.83313833138334,-40.91535877354778],[173.81873818738188,-40.92211308262731],[173.80433804338043,-40.927178814436964],[173.78993789937903,-40.927178814436964],[173.77913779137793,-40.92211308262731],[173.7827378273783,-40.91873592808755],[173.7827378273783,-40.91535877354778],[173.7827378273783,-40.91198161900802],[173.7827378273783,-40.906915887198366]]],[[[175.53955539555398,-36.28190274498966],[175.5575555755558,-36.30385424949813],[175.56475564755647,-36.30891998130778],[175.5467554675547,-36.34269152670544],[175.5359553595536,-36.35113441305485],[175.52155521555216,-36.35282299032473],[175.51435514355143,-36.34438010397532],[175.51075510755106,-36.33256006308614],[175.51075510755106,-36.32074002219696],[175.50715507155076,-36.30891998130778],[175.4927549275493,-36.312297135847544],[175.47835478354784,-36.31905144492708],[175.46755467554675,-36.32074002219696],[175.46035460354602,-36.30891998130778],[175.46035460354602,-36.28359132225954],[175.45675456754572,-36.275148435910125],[175.449554495545,-36.27008270410048],[175.4387543875439,-36.27177128137036],[175.4171541715417,-36.275148435910125],[175.42075420754207,-36.26670554956071],[175.4171541715417,-36.259951240481186],[175.41355413554135,-36.254885508671535],[175.40635406354068,-36.248131199592],[175.3847538475385,-36.253196931401654],[175.35595355953564,-36.24475404505224],[175.33435334353345,-36.22449111781365],[175.32715327153272,-36.19916245876541],[175.35235352353527,-36.22449111781365],[175.35955359553594,-36.22786827235341],[175.37035370353703,-36.219425386004],[175.37035370353703,-36.20760534511482],[175.36675366753667,-36.194096726955756],[175.37035370353703,-36.18227668606658],[175.37755377553776,-36.16539091336775],[175.36675366753667,-36.15694802701834],[175.34515345153454,-36.148505140668924],[175.33435334353345,-36.131619367970096],[175.3631536315363,-36.131619367970096],[175.37755377553776,-36.12824221343033],[175.38835388353885,-36.11811074981104],[175.36675366753667,-36.10122497711221],[175.3631536315363,-36.08096204987362],[175.3739537395374,-36.06576485444467],[175.4027540275403,-36.06238769990491],[175.40995409954098,-36.06576485444467],[175.42075420754207,-36.072519163524206],[175.4279542795428,-36.08096204987362],[175.4279542795428,-36.09447066803268],[175.43515435154353,-36.09953639984233],[175.4639546395464,-36.11811074981104],[175.44235442354426,-36.12486505889056],[175.44595445954462,-36.13668509977975],[175.46035460354602,-36.148505140668924],[175.48555485554857,-36.16201375882799],[175.51075510755106,-36.1704566451774],[175.52155521555216,-36.172145222447284],[175.53235532355325,-36.17552237698705],[175.52515525155252,-36.18565384060634],[175.5179551795518,-36.19578530422564],[175.51075510755106,-36.20422819057505],[175.50715507155076,-36.219425386004],[175.5035550355504,-36.22955684962329],[175.5035550355504,-36.24137689051247],[175.51435514355143,-36.2582626632113],[175.5179551795518,-36.26163981775107],[175.52515525155252,-36.26501697229083],[175.52875528755288,-36.26670554956071],[175.5359553595536,-36.26839412683059],[175.53955539555398,-36.27008270410048],[175.53955539555398,-36.273459858640244],[175.5359553595536,-36.278525590449895],[175.53955539555398,-36.28190274498966]]],[[[154.29934299342995,8.174959616482028],[154.31014310143104,8.166516730132614],[154.3137431374314,8.137810916544609],[154.31014310143104,8.119236566575907],[154.3029430294303,8.112482257496367],[154.29574295742958,8.105727948416842],[154.27774277742776,8.125990875655432],[154.25614256142563,8.136122339274735],[154.2381423814238,8.14287664835426],[154.24534245342454,8.156385266513325],[154.2489424894249,8.173271039212153],[154.259742597426,8.180025348291679],[154.26694266942673,8.183402502831441],[154.29214292142922,8.18509108010133],[154.29934299342995,8.174959616482028]]],[[[163.98343983439838,-20.0479208723374],[163.9870398703987,-20.05805233595669],[163.9870398703987,-20.066495222306102],[163.98343983439838,-20.074938108655516],[163.97983979839802,-20.08338099500493],[163.9726397263973,-20.06818379957599],[163.95463954639547,-20.073249531385628],[163.94743947439474,-20.066495222306102],[163.93663936639365,-20.04116656325786],[163.93663936639365,-20.034412254178335],[163.94383943839438,-20.02596936782892],[163.9510395103951,-20.002329286050568],[163.95823958239583,-20.00064070878068],[163.96543965439656,-20.007395017860205],[163.97623976239765,-20.03610083144821],[163.98343983439838,-20.0479208723374]]],[[[129.6318963189632,-14.847102881098678],[129.63549635496355,-14.858922921987855],[129.6318963189632,-14.870742962877046],[129.62829628296282,-14.875808694686683],[129.61029610296106,-14.867365808337269],[129.6066960669607,-14.85723434471798],[129.58869588695887,-14.83697141747939],[129.5850958509585,-14.826839953860087],[129.58149581495815,-14.808265603891385],[129.58149581495815,-14.803199872081734],[129.58869588695887,-14.806577026621497],[129.6066960669607,-14.8167084902408],[129.6174961749618,-14.825151376590213],[129.62469624696246,-14.835282840209501],[129.6318963189632,-14.847102881098678]]],[[[126.49986499865003,-13.874482373646245],[126.52146521465215,-13.871105219106482],[126.55386553865537,-13.874482373646245],[126.58626586265865,-13.884613837265547],[126.61146611466114,-13.894745300884836],[126.61146611466114,-13.901499609964375],[126.59706597065974,-13.904876764504138],[126.58626586265865,-13.901499609964375],[126.5718657186572,-13.896433878154724],[126.55746557465574,-13.894745300884836],[126.53946539465397,-13.898122455424613],[126.52506525065252,-13.90318818723425],[126.51426514265142,-13.904876764504138],[126.5070650706507,-13.894745300884836],[126.5070650706507,-13.889679569075199],[126.49986499865003,-13.874482373646245]]],[[[134.88434884348845,-12.057573231252462],[134.90594905949058,-12.05926180852235],[134.91674916749167,-12.062638963062113],[134.92754927549277,-12.067704694871765],[134.93114931149313,-12.087967622110355],[134.9239492394924,-12.106541972079057],[134.90954909549095,-12.118362012968248],[134.88794887948882,-12.111607703888708],[134.87714877148773,-12.099787662999532],[134.86634866348663,-12.076147581221178],[134.85554855548554,-12.037310304013872],[134.8807488074881,-12.0541960767127],[134.88434884348845,-12.057573231252462]]],[[[134.96354963549635,-12.02717884039457],[134.98514985149853,-12.035621726743983],[134.98514985149853,-12.040687458553634],[134.94914949149495,-12.0541960767127],[134.9347493474935,-12.050818922172937],[134.92034920349204,-12.040687458553634],[134.90954909549095,-12.035621726743983],[134.90954909549095,-12.022113108584932],[134.95634956349562,-12.017047376775281],[134.96354963549635,-12.02717884039457]]],[[[135.1219512195122,-11.929241358741379],[135.10755107551074,-11.942749976900444],[135.0859508595086,-11.946127131440207],[135.0571505715057,-11.952881440519732],[135.04635046350467,-11.941061399630556],[135.0535505355054,-11.919109895122077],[135.0859508595086,-11.920798472391965],[135.1111511115111,-11.924175626931728],[135.1219512195122,-11.929241358741379]]],[[[133.4767347673477,-11.45475114590434],[133.48033480334806,-11.471636918603167],[133.48753487534879,-11.483456959492344],[133.49833498334982,-11.49527700038152],[133.51273512735128,-11.503719886730934],[133.49473494734946,-11.508785618540585],[133.4767347673477,-11.507097041270711],[133.45873458734587,-11.503719886730934],[133.44433444334442,-11.503719886730934],[133.42993429934302,-11.508785618540585],[133.41553415534156,-11.520605659429762],[133.4011340113401,-11.532425700318939],[133.39393393933938,-11.54424574120813],[133.39393393933938,-11.535802854858716],[133.39753397533974,-11.532425700318939],[133.4011340113401,-11.52229423669965],[133.40473404734047,-11.512162773080348],[133.4011340113401,-11.50203130946106],[133.4011340113401,-11.49527700038152],[133.39393393933938,-11.488522691301995],[133.4227342273423,-11.485145536762232],[133.44433444334442,-11.47501407314293],[133.45873458734587,-11.464882609523642],[133.4767347673477,-11.45475114590434]]],[[[131.28431284312842,-7.329556875580906],[131.29151291512915,-7.317736834691729],[131.29871298712987,-7.3194254119616176],[131.29871298712987,-7.3278682983110315],[131.29871298712987,-7.336311184660445],[131.2951129511295,-7.341376916470082],[131.26991269912702,-7.356574111899036],[131.27711277112775,-7.370082730058087],[131.2267122671227,-7.361639843708673],[131.21591215912161,-7.356574111899036],[131.22311223112234,-7.351508380089385],[131.23031230312301,-7.344754071009859],[131.24471244712447,-7.329556875580906],[131.25911259112593,-7.304228216532664],[131.26631266312666,-7.2974739074531385],[131.26991269912702,-7.30253963926279],[131.28071280712805,-7.32280256650138],[131.28431284312842,-7.329556875580906]]],[[[134.3767437674377,-6.253933154665631],[134.38754387543878,-6.257310309205394],[134.3947439474395,-6.26406461828492],[134.4091440914409,-6.2725075046343335],[134.42354423544236,-6.274196081904222],[134.42354423544236,-6.280950390983747],[134.39834398343987,-6.284327545523524],[134.38034380343805,-6.299524740952464],[134.3659436594366,-6.316410513651292],[134.34794347943483,-6.329919131810357],[134.33714337143374,-6.331607709080231],[134.33354333543338,-6.328230554540468],[134.33354333543338,-6.319787668191054],[134.32634326343265,-6.307967627301878],[134.30474304743046,-6.287704700063287],[134.29034290342906,-6.279261813713873],[134.2867428674287,-6.284327545523524],[134.2759427594276,-6.27588465917411],[134.2327423274233,-6.238735959236678],[134.21834218342184,-6.208341568378799],[134.20394203942038,-6.194832950219734],[134.18234182341826,-6.204964413839036],[134.16074160741607,-6.196521527489622],[134.16434164341644,-6.183012909330557],[134.1787417874179,-6.167815713901618],[134.18954189541898,-6.15092994120279],[134.18594185941862,-6.134044168503962],[134.17154171541716,-6.135732745773836],[134.1427414274143,-6.1576842502823155],[134.12114121141212,-6.1222241276147855],[134.1139411394114,-6.076632541327939],[134.1247412474125,-6.0344181095808835],[134.15354153541534,-6.005712295992879],[134.15354153541534,-6.0479267277399344],[134.16074160741607,-6.0428609959302975],[134.20754207542075,-6.02597522323147],[134.21834218342184,-6.024286645961581],[134.22554225542257,-6.029352377771232],[134.23634236342366,-6.063123923168888],[134.23994239942402,-6.073255386788176],[134.2435424354244,-6.076632541327939],[134.25074250742506,-6.071566809518302],[134.27234272342724,-6.061435345899],[134.26514265142652,-6.076632541327939],[134.24714247142475,-6.096895468566544],[134.23634236342366,-6.110404086725595],[134.2327423274233,-6.130667013964185],[134.2435424354244,-6.14417563212325],[134.2579425794258,-6.1576842502823155],[134.27234272342724,-6.177947177520906],[134.2867428674287,-6.174570022981143],[134.3011430114301,-6.1847014866004315],[134.33354333543338,-6.235358804696915],[134.34434344343447,-6.238735959236678],[134.36234362343623,-6.238735959236678],[134.35154351543514,-6.250556000125869],[134.3551435514355,-6.253933154665631],[134.3767437674377,-6.253933154665631]]],[[[132.31752317523177,-5.514336310457011],[132.34632346323463,-5.536287814965476],[132.36072360723608,-5.539664969505253],[132.38232382323827,-5.534599237695602],[132.3787237872379,-5.54473070131489],[132.37152371523717,-5.5548621649341925],[132.36432364323645,-5.563305051283606],[132.35352353523535,-5.568370783093258],[132.3391233912339,-5.573436514902895],[132.3355233552336,-5.573436514902895],[132.33192331923323,-5.568370783093258],[132.31752317523177,-5.55148501039443],[132.31032310323104,-5.536287814965476],[132.30672306723068,-5.521090619536537],[132.31752317523177,-5.514336310457011]]],[[[129.9270992709927,-4.5298957621153875],[129.93069930699306,-4.514698566686448],[129.94149941499415,-4.509632834876797],[129.94869948699488,-4.514698566686448],[129.94509945099452,-4.556912998433518],[129.93429934299343,-4.563667307513043],[129.91629916299166,-4.563667307513043],[129.89829898298984,-4.568733039322694],[129.89469894698948,-4.56029015297328],[129.8838988389884,-4.555224421163629],[129.8730987309873,-4.553535843893755],[129.8586985869859,-4.555224421163629],[129.8730987309873,-4.545092957544341],[129.91989919899203,-4.536650071194927],[129.9270992709927,-4.5298957621153875]]],[[[122.32022320223206,-3.511683668376122],[122.33462334623346,-3.5167494001857733],[122.34542345423455,-3.52856944107495],[122.35262352623528,-3.5437666365039036],[122.35622356223564,-3.5572752546629545],[122.34542345423455,-3.5572752546629545],[122.32742327423273,-3.5623409864726057],[122.3058230582306,-3.5707838728220196],[122.29502295022951,-3.580915336441322],[122.28422284222842,-3.5623409864726057],[122.29142291422914,-3.5403894819641266],[122.3058230582306,-3.5218151319954245],[122.32022320223206,-3.511683668376122]]],[[[122.4390243902439,-3.418811918532583],[122.46062460624609,-3.435697691231411],[122.46422464224645,-3.440763423041048],[122.46422464224645,-3.452583463930239],[122.45702457024572,-3.4677806593591782],[122.449824498245,-3.479600700248355],[122.43182431824317,-3.484666432058006],[122.42462424624244,-3.4779121229784664],[122.41382413824141,-3.4593377730097643],[122.40302403024032,-3.43063195942176],[122.40302403024032,-3.4205004958024574],[122.40302403024032,-3.4086804549132808],[122.40662406624068,-3.396860414024104],[122.41382413824141,-3.38841752767469],[122.41382413824141,-3.3850403731349274],[122.41742417424177,-3.3850403731349274],[122.42102421024214,-3.3850403731349274],[122.42462424624244,-3.3867289504048017],[122.42822428224281,-3.3934832594843414],[122.43542435424354,-3.4120576094530435],[122.4390243902439,-3.418811918532583]]],[[[-42.04302043020431,-2.7045437333721907],[-42.03582035820358,-2.7045437333721907],[-42.03582035820358,-2.714675196991493],[-42.03582035820358,-2.7264952378806697],[-42.032220322203216,-2.736626701499972],[-42.02862028620285,-2.745069587849386],[-42.03582035820358,-2.750135319659023],[-42.04302043020431,-2.7535124741988],[-42.05382053820537,-2.7568896287385627],[-42.07542075420753,-2.7602667832783254],[-42.08622086220862,-2.758578206008437],[-42.09342093420935,-2.7535124741988],[-42.10422104221041,-2.745069587849386],[-42.089820898208984,-2.7383152787698464],[-42.082620826208256,-2.7383152787698464],[-42.082620826208256,-2.731560969690321],[-42.097020970209684,-2.7298723924204324],[-42.10422104221041,-2.7248066606107955],[-42.107821078210776,-2.7163637742613815],[-42.10422104221041,-2.7045437333721907],[-42.122221222212204,-2.7079208879119676],[-42.14382143821439,-2.701166578832428],[-42.1870218702187,-2.675837919784186],[-42.172621726217244,-2.6724607652444234],[-42.089820898208984,-2.679215074323963],[-42.071820718207164,-2.6842808061336],[-42.0610206102061,-2.6944122697529025],[-42.046620466204644,-2.7112980424517303],[-42.04302043020431,-2.7079208879119676],[-42.04302043020431,-2.706232310642079],[-42.04302043020431,-2.7045437333721907]]],[[[-43.62703627036271,-2.25200502504363],[-43.60543605436055,-2.257070756853281],[-43.60543605436055,-2.265513643202695],[-43.598235982359824,-2.2840879931714113],[-43.60903609036089,-2.300973765870225],[-43.62703627036271,-2.3161709612991785],[-43.63063630636307,-2.3330567339980064],[-43.63063630636307,-2.3600739703161224],[-43.63423634236341,-2.3769597430149503],[-43.64143641436414,-2.38371405209449],[-43.63423634236341,-2.392156938443904],[-43.63423634236341,-2.400599824793318],[-43.63783637836377,-2.4039769793330805],[-43.65583655836559,-2.400599824793318],[-43.673836738367385,-2.400599824793318],[-43.68823688236881,-2.400599824793318],[-43.69183691836918,-2.4090427111427175],[-43.70263702637027,-2.410731288412606],[-43.70263702637027,-2.415797020222257],[-43.70623706237063,-2.424239906571671],[-43.71343713437133,-2.4259284838415454],[-43.724237242372425,-2.4225513293017826],[-43.73143731437315,-2.41917417476202],[-43.74223742237422,-2.4124198656824944],[-43.74223742237422,-2.402288402063192],[-43.73503735037349,-2.3955340929836666],[-43.73143731437315,-2.375271165745076],[-43.73503735037349,-2.3550082385064712],[-43.73503735037349,-2.3347453112678807],[-43.72783727837279,-2.317859538569053],[-43.7170371703717,-2.2891537249810483],[-43.70263702637027,-2.273956529552109],[-43.68463684636845,-2.2638250659328065],[-43.67023670236702,-2.2587593341231695],[-43.65583655836559,-2.257070756853281],[-43.63783637836377,-2.2536936023135183],[-43.62703627036271,-2.25200502504363]]],[[[123.87543875438757,-2.018981361799817],[123.87903879038794,-2.032489979958882],[123.88623886238861,-2.0510643299275984],[123.88983889838897,-2.062884370816775],[123.88623886238861,-2.0747044117059517],[123.87903879038794,-2.0696386798963005],[123.86823868238685,-2.0527529071974726],[123.86463864638648,-2.054441484467361],[123.85023850238503,-2.054441484467361],[123.83943839438393,-2.04937575265771],[123.84663846638466,-2.0358671344986448],[123.86103861038612,-2.010538475450403],[123.86823868238685,-2.005472743640766],[123.87543875438757,-2.018981361799817]]],[[[124.35064350643506,-1.9598811573539336],[124.36504365043652,-1.9717011982431103],[124.37224372243725,-1.9919641254817009],[124.36864368643688,-2.0392442890384075],[124.35784357843579,-2.032489979958882],[124.33624336243366,-2.005472743640766],[124.32544325443257,-2.000407011831115],[124.31464314643148,-1.9987184345612263],[124.30384303843039,-1.9953412800214636],[124.30024300243002,-1.9868983936720497],[124.30744307443075,-1.9733897755129846],[124.31824318243184,-1.9632583118936964],[124.3326433264333,-1.9598811573539336],[124.35064350643506,-1.9598811573539336]]],[[[123.65583655836559,-1.90922383925745],[123.66303663036632,-1.9497496937346313],[123.66303663036632,-1.9632583118936964],[123.65583655836559,-1.9632583118936964],[123.65223652236523,-1.9497496937346313],[123.64863648636486,-1.9345524983056919],[123.64863648636486,-1.9024695301779104],[123.65583655836559,-1.9024695301779104],[123.65583655836559,-1.90922383925745]]],[[[123.73863738637385,-1.9075352619875616],[123.73863738637385,-1.9159781483369756],[123.74583745837458,-1.9294867664960407],[123.74583745837458,-1.9362410755755661],[123.74223742237422,-1.9413068073852173],[123.71343713437136,-1.9565040028141567],[123.70623706237063,-1.9345524983056919],[123.71343713437136,-1.9109124165273244],[123.72783727837282,-1.9007809529080362],[123.73863738637385,-1.9075352619875616]]],[[[-49.28629286292863,-1.758940462237888],[-49.27549275492754,-1.7673833485873018],[-49.28269282692827,-1.785957698556004],[-49.29349293492933,-1.8045320485247203],[-49.30069300693006,-1.8129749348741342],[-49.31149311493115,-1.8180406666837854],[-49.33309333093331,-1.8535007893513153],[-49.35829358293583,-1.8838951802092083],[-49.36909369093689,-1.895715221098385],[-49.38709387093871,-1.887272334748971],[-49.42669426694266,-1.8771408711296687],[-49.44109441094412,-1.8670094075103805],[-49.45189451894518,-1.8501236348115526],[-49.44829448294482,-1.8366150166524875],[-49.4230942309423,-1.8129749348741342],[-49.41949419494193,-1.8045320485247203],[-49.4158941589416,-1.7842691212861297],[-49.41229412294123,-1.7758262349367158],[-49.40149401494014,-1.7673833485873018],[-49.37269372693726,-1.7521861531583482],[-49.3510935109351,-1.7217917623004695],[-49.33669336693367,-1.7133488759510556],[-49.31869318693185,-1.7167260304908183],[-49.31509315093152,-1.7319232259197577],[-49.31149311493115,-1.7437432668089343],[-49.30069300693006,-1.7538747304282367],[-49.28629286292863,-1.758940462237888]]],[[[108.67608676086763,-1.7133488759510556],[108.69048690486903,-1.6998402577919904],[108.72288722887231,-1.693085948712465],[108.7588875888759,-1.6947745259823392],[108.77688776887771,-1.7032174123317532],[108.7588875888759,-1.7167260304908183],[108.72288722887231,-1.720103185030581],[108.67608676086763,-1.7133488759510556]]],[[[109.16929169291694,-1.2574330130827178],[109.1836918369184,-1.2658758994321317],[109.17649176491767,-1.2776959403213226],[109.1440914409144,-1.311467485718964],[109.13689136891372,-1.314844640258741],[109.13689136891372,-1.3097789084490898],[109.13329133291336,-1.2979588675599132],[109.129691296913,-1.2962702902900247],[109.12249122491227,-1.2996474448297874],[109.11529115291154,-1.2979588675599132],[109.11529115291154,-1.3047131766394386],[109.10809108091081,-1.3047131766394386],[109.10089100891008,-1.301336022099676],[109.10089100891008,-1.292893135750262],[109.10809108091081,-1.284450249400848],[109.11529115291154,-1.2793845175911969],[109.12249122491227,-1.2776959403213226],[109.13329133291336,-1.2776959403213226],[109.1440914409144,-1.2743187857815457],[109.16209162091621,-1.2574330130827178],[109.16929169291694,-1.2574330130827178]]],[[[109.25569255692557,-1.16962699504883],[109.26649266492666,-1.174692726858467],[109.26649266492666,-1.1882013450175322],[109.25929259292593,-1.2017099631765973],[109.2520925209252,-1.2118414267958855],[109.24489244892447,-1.2185957358754251],[109.23409234092344,-1.2253500449549506],[109.22329223292235,-1.227038622224839],[109.21969219692198,-1.2202843131452994],[109.21969219692198,-1.2067756949862485],[109.21969219692198,-1.1983328086368346],[109.22329223292235,-1.191578499557295],[109.24129241292417,-1.174692726858467],[109.24849248492484,-1.1713155723187043],[109.25569255692557,-1.16962699504883]]],[[[104.47844478444784,-0.2713038874712339],[104.48924489244894,-0.27468104201099663],[104.4928449284493,-0.2814353510905221],[104.49644496444967,-0.289878237439936],[104.49644496444967,-0.29832112378934994],[104.4928449284493,-0.30845258740865233],[104.48564485644857,-0.3101411646785266],[104.47844478444784,-0.3101411646785266],[104.47124471244712,-0.31182974194841506],[104.45684456844572,-0.3185840510279405],[104.44604446044463,-0.320272628297829],[104.41724417244171,-0.3185840510279405],[104.40644406444068,-0.31182974194841506],[104.39924399243995,-0.29663254651946147],[104.40644406444068,-0.28312392836041056],[104.42084420844208,-0.27805819655075936],[104.47844478444784,-0.2713038874712339]]],[[[102.84042840428407,0.2909923433997079],[102.85482854828547,0.3028123842888846],[102.88362883628838,0.31463242517807544],[102.91242912429124,0.3196981569877124],[102.92682926829269,0.3112552706382985],[102.90882908829087,0.2977466524792476],[102.87642876428765,0.28423803432018246],[102.8476284762848,0.2774837252406428],[102.84042840428407,0.2909923433997079]]],[[[103.07803078030781,0.6236420655665995],[103.08523085230854,0.6084448701376601],[103.08523085230854,0.6000019837882462],[103.08523085230854,0.5915590974388323],[103.08163081630818,0.5797390565496556],[103.07803078030781,0.5746733247400044],[103.07083070830708,0.5780504792797672],[103.06363063630636,0.5848047883593068],[103.05643056430563,0.5966248292484835],[103.0456304563046,0.6270192201063622],[103.04203042030423,0.6405278382654274],[103.04203042030423,0.647282147344967],[103.03843038430387,0.652347879154604],[103.03843038430387,0.6574136109642552],[103.04203042030423,0.6607907655040179],[103.05643056430563,0.6591021882341437],[103.06723067230672,0.6489707246148413],[103.07443074430745,0.6371506837256646],[103.07803078030781,0.6236420655665995]]],[[[103.50643506435063,0.7013166199812133],[103.51723517235172,0.6979394654414364],[103.52083520835208,0.6894965790920224],[103.52083520835208,0.6793651154727343],[103.51723517235172,0.6675450745835576],[103.50643506435063,0.6405278382654274],[103.49923499234995,0.6270192201063622],[103.48843488434886,0.6202649110268368],[103.47043470434704,0.6236420655665995],[103.47043470434704,0.6371506837256646],[103.4740347403474,0.6540364564244925],[103.47763477634777,0.6607907655040179],[103.4848348483485,0.6675450745835576],[103.49923499234995,0.6962508881715621],[103.50643506435063,0.7013166199812133]]],[[[103.1140311403114,0.792499792554878],[103.12123121231213,0.7806797516656871],[103.11763117631176,0.7570396698873338],[103.10323103231036,0.7350881653788548],[103.09243092430927,0.7215795472198039],[103.08523085230854,0.7249567017595666],[103.08163081630818,0.7350881653788548],[103.07803078030781,0.7452196289981572],[103.07443074430745,0.7536625153475711],[103.07803078030781,0.7604168244270966],[103.08163081630818,0.7688597107765105],[103.08523085230854,0.7756140198560502],[103.09603096030963,0.7857454834753383],[103.09963099631,0.7908112152849895],[103.10683106831067,0.792499792554878],[103.1140311403114,0.792499792554878]]],[[[104.56484564845647,0.797565524364515],[104.60444604446047,0.7941883698247523],[104.62244622446224,0.7874340607452268],[104.61884618846187,0.7773025971259244],[104.61524615246151,0.7654825562367478],[104.60084600846011,0.7637939789668593],[104.5720457204572,0.770548288046399],[104.55404554045543,0.770548288046399],[104.53964539645398,0.7671711335066362],[104.51084510845112,0.7502853608078084],[104.51084510845112,0.7739254425861617],[104.52524525245252,0.7891226380151011],[104.54324543245434,0.7958769470946407],[104.56484564845647,0.797565524364515]]],[[[103.66843668436684,0.8397799561115846],[103.70443704437048,0.8144512970633428],[103.71883718837188,0.797565524364515],[103.7260372603726,0.7806797516656871],[103.7260372603726,0.7671711335066362],[103.71163711637115,0.762105401696985],[103.70083700837012,0.7654825562367478],[103.69363693636939,0.7739254425861617],[103.69003690036902,0.7908112152849895],[103.66483664836647,0.8228941834127568],[103.66843668436684,0.8397799561115846]]],[[[103.46323463234631,0.9191430877960727],[103.4740347403474,0.9090116241767845],[103.48123481234813,0.8938144287478309],[103.47763477634777,0.8786172333188915],[103.47043470434704,0.8701743469694776],[103.45963459634595,0.8701743469694776],[103.44523445234455,0.8735515015092403],[103.43443434434346,0.8803058105887658],[103.42723427234273,0.8904372742080682],[103.420034200342,0.8971915832875936],[103.40923409234091,0.9039458923671333],[103.40563405634055,0.9107002014466588],[103.45243452434528,0.9208316650659611],[103.46323463234631,0.9191430877960727]]],[[[120.649806498065,1.0728036193553976],[120.6606066060661,1.0677378875457464],[120.66780667806677,1.060983578466221],[120.68220682206822,1.044097805767393],[120.66780667806677,1.0424092284975046],[120.63180631806318,1.0677378875457464],[120.60660606606069,1.0728036193553976],[120.61740617406173,1.0761807738951603],[120.62820628206282,1.0795579284349373],[120.63900639006391,1.0778693511650488],[120.649806498065,1.0728036193553976]]],[[[120.37620376203762,1.0795579284349373],[120.39420394203944,1.0863122375144627],[120.40140401404017,1.0778693511650488],[120.40500405004053,1.060983578466221],[120.40500405004053,1.044097805767393],[120.40140401404017,1.0373434966878676],[120.39420394203944,1.030589187608328],[120.38700387003871,1.025523455798691],[120.37620376203762,1.0238348785288025],[120.36900369003689,1.0322777648782164],[120.36900369003689,1.0491635375770443],[120.37260372603726,1.0677378875457464],[120.37620376203762,1.0795579284349373]]],[[[127.78507785077852,2.2649391718925784],[127.80307803078034,2.2649391718925784],[127.81027810278101,2.263250594622704],[127.81387813878138,2.2548077082732902],[127.81747817478174,2.2345447810346997],[127.8066780667807,2.2125932765262206],[127.78147781477816,2.209216121986458],[127.75627756277567,2.2210361628756345],[127.74907749077494,2.248053399193765],[127.7526775267753,2.266627749162467],[127.75987759877597,2.2700049037022296],[127.78507785077852,2.2649391718925784]]],[[[-77.90297902979029,2.6955263757126744],[-77.88857888578886,2.6870834893632605],[-77.8489784897849,2.6381147485366654],[-77.83457834578346,2.6262947076474887],[-77.80217802178021,2.6077203576787724],[-77.78417784177842,2.5942117395197073],[-77.80937809378094,2.579014544090768],[-77.83817838178382,2.5773259668208794],[-77.87057870578705,2.584080275900419],[-77.88857888578886,2.5942117395197073],[-77.88137881378813,2.5992774713293585],[-77.88857888578886,2.6077203576787724],[-77.86697866978669,2.627983284917363],[-77.86697866978669,2.6398033258065396],[-77.88137881378813,2.6465576348860793],[-77.89937899378994,2.6482462121559536],[-77.91377913779138,2.658377675775256],[-77.9209792097921,2.680329180283735],[-77.91737917379173,2.697214952982563],[-77.90297902979029,2.6955263757126744]]],[[[-77.80577805778057,2.6617548303150187],[-77.76617766177661,2.633049016727014],[-77.75537755377553,2.617851821298075],[-77.7589775897759,2.602654625869121],[-77.77697776977769,2.600966048599247],[-77.80217802178021,2.614474666758298],[-77.84537845378453,2.6482462121559536],[-77.87417874178742,2.685394912093372],[-77.88137881378813,2.6955263757126744],[-77.8849788497885,2.707346416601851],[-77.8849788497885,2.7191664574910277],[-77.88137881378813,2.724232189300679],[-77.87417874178742,2.7174778802211534],[-77.87057870578705,2.7141007256813765],[-77.85977859778598,2.7090349938717395],[-77.85617856178561,2.715789302951265],[-77.85617856178561,2.7191664574910277],[-77.85257852578525,2.720855034760916],[-77.84537845378453,2.724232189300679],[-77.82017820178201,2.6955263757126744],[-77.81657816578165,2.688772066633149],[-77.80937809378094,2.6701977166644326],[-77.80577805778057,2.6617548303150187]]],[[[-77.35217352173521,4.265903236703579],[-77.33417334173342,4.255771773084291],[-77.31257312573125,4.257460350354165],[-77.29097290972909,4.2625260821638165],[-77.2729727297273,4.259148927624054],[-77.29097290972909,4.228754536766161],[-77.30177301773017,4.216934495876984],[-77.31617316173161,4.222000227686635],[-77.33417334173342,4.245640309464989],[-77.35937359373594,4.2355088458457],[-77.3809738097381,4.2321316913059235],[-77.4349743497435,4.2321316913059235],[-77.45297452974529,4.237197423115575],[-77.46737467374673,4.237197423115575],[-77.48177481774817,4.233820268575812],[-77.48897488974889,4.2270659594962865],[-77.49617496174962,4.218623073146873],[-77.50337503375033,4.210180186797459],[-77.54297542975429,4.200048723178156],[-77.54657546575466,4.1966715686383935],[-77.55017550175502,4.2051144549878074],[-77.55017550175502,4.218623073146873],[-77.54297542975429,4.2321316913059235],[-77.53577535775358,4.237197423115575],[-77.52137521375214,4.242263154925226],[-77.49977499774998,4.260837504893928],[-77.48537485374854,4.265903236703579],[-77.47457474574746,4.264214659433705],[-77.44937449374494,4.257460350354165],[-77.4349743497435,4.259148927624054],[-77.43857438574385,4.265903236703579],[-77.45657456574565,4.277723277592756],[-77.46377463774637,4.28616616394217],[-77.42777427774277,4.28616616394217],[-77.45297452974529,4.291231895751821],[-77.44937449374494,4.301363359371123],[-77.43137431374313,4.3114948229904115],[-77.41337413374133,4.3199377093398255],[-77.42057420574206,4.321626286609714],[-77.42417424174242,4.325003441149477],[-77.42777427774277,4.326692018419365],[-77.4349743497435,4.326692018419365],[-77.4349743497435,4.331757750229002],[-77.43137431374313,4.335134904768779],[-77.42777427774277,4.340200636578416],[-77.40257402574025,4.326692018419365],[-77.38457384573846,4.314871977530174],[-77.37377373773738,4.299674782101235],[-77.36657366573665,4.2844775866722955],[-77.35217352173521,4.265903236703579]]],[[[118.21978219782198,5.8548544476632],[118.23418234182344,5.851477293123438],[118.2377823778238,5.841345829504135],[118.23058230582308,5.831214365884847],[118.21978219782198,5.827837211345084],[118.21258212582126,5.826148634075196],[118.1945819458195,5.821082902265545],[118.19098190981913,5.81939432499567],[118.18018180181804,5.821082902265545],[118.17298172981731,5.822771479535433],[118.16578165781658,5.827837211345084],[118.16218162181622,5.83459152042461],[118.16938169381694,5.843034406774024],[118.18018180181804,5.851477293123438],[118.1945819458195,5.8548544476632],[118.21978219782198,5.8548544476632]]],[[[-81.8090180901809,7.286767972523734],[-81.79821798217982,7.291833704333385],[-81.7910179101791,7.2901451270634965],[-81.78021780217802,7.288456549793608],[-81.76581765817657,7.286767972523734],[-81.78021780217802,7.27832508617432],[-81.7910179101791,7.25130784985619],[-81.80181801818019,7.239487808967013],[-81.79821798217982,7.234422077157362],[-81.79461794617946,7.225979190807948],[-81.80181801818019,7.225979190807948],[-81.81621816218161,7.27157077709478],[-81.81621816218161,7.280013663444194],[-81.81981819818198,7.285079395253845],[-81.81981819818198,7.288456549793608],[-81.81621816218161,7.293522281603259],[-81.8090180901809,7.293522281603259],[-81.80541805418054,7.291833704333385],[-81.8090180901809,7.286767972523734]]],[[[-82.21222212222122,8.198599698260395],[-82.23382233822338,8.20535400733992],[-82.24822248222482,8.207042584609795],[-82.25182251822518,8.201976852800158],[-82.25182251822518,8.193533966450744],[-82.25182251822518,8.188468234641093],[-82.24462244622445,8.171582461942265],[-82.27342273422734,8.191845389180855],[-82.28062280622805,8.193533966450744],[-82.30222302223022,8.196911120990507],[-82.30942309423094,8.198599698260395],[-82.31662316623166,8.215485470959209],[-82.30582305823057,8.223928357308623],[-82.27342273422734,8.234059820927925],[-82.2590225902259,8.2273055118484],[-82.23742237422374,8.22055120276886],[-82.21942219422193,8.212108316419446],[-82.21222212222122,8.198599698260395]]],[[[121.25101251012512,9.630513223120914],[121.25821258212585,9.627136068581152],[121.25821258212585,9.623758914041389],[121.2330123301233,9.595053100453384],[121.22221222212221,9.583233059564208],[121.21141211412117,9.576478750484668],[121.21501215012154,9.584921636834082],[121.22221222212221,9.605184564072673],[121.22941229412294,9.610250295882324],[121.24021240212403,9.613627450422086],[121.2438124381244,9.623758914041389],[121.25101251012512,9.635578954930565],[121.25821258212585,9.64402184127998],[121.25821258212585,9.638956109470328],[121.25821258212585,9.635578954930565],[121.25461254612549,9.633890377660677],[121.25101251012512,9.630513223120914]]],[[[103.78363783637838,10.515327712539445],[103.79803798037983,10.505196248920157],[103.80523805238056,10.484933321681567],[103.80523805238056,10.462981817173088],[103.79443794437947,10.452850353553785],[103.78003780037801,10.454538930823674],[103.76563765637655,10.456227508093562],[103.75123751237516,10.464670394442976],[103.74403744037443,10.48155616714179],[103.75123751237516,10.483244744411678],[103.75483754837552,10.48662189895144],[103.76563765637655,10.495064785300855],[103.75843758437583,10.506884826190031],[103.76203762037619,10.513639135269571],[103.76923769237692,10.517016289809334],[103.78363783637838,10.515327712539445]]],[[[106.93726937269372,10.439341735394734],[106.9588695886959,10.425833117235669],[106.969669696697,10.415701653616367],[106.97686976869772,10.405570189997079],[106.93006930069299,10.393750149107902],[106.90846908469086,10.385307262758488],[106.89406894068941,10.371798644599423],[106.88686886868868,10.371798644599423],[106.88686886868868,10.38868441729825],[106.88326883268832,10.402193035457316],[106.87606876068764,10.414013076346492],[106.87606876068764,10.425833117235669],[106.87606876068764,10.444407467204371],[106.89406894068941,10.464670394442976],[106.89406894068941,10.48155616714179],[106.88686886868868,10.48155616714179],[106.88686886868868,10.46635897171285],[106.87966879668795,10.489999053491204],[106.88686886868868,10.505196248920157],[106.90846908469086,10.513639135269571],[106.92646926469268,10.520393444349097],[106.94806948069481,10.506884826190031],[106.94446944469445,10.476490435332153],[106.92286922869232,10.425833117235669],[106.93006930069299,10.425833117235669],[106.93726937269372,10.439341735394734]]],[[[106.90846908469086,10.532213485238273],[106.9048690486905,10.522082021618985],[106.89046890468904,10.525459176158748],[106.87606876068764,10.535590639778036],[106.86886868868692,10.542344948857576],[106.86526865268655,10.545722103397338],[106.85446854468546,10.560919298826278],[106.85446854468546,10.562607876096166],[106.85446854468546,10.57105076244558],[106.86526865268655,10.579493648794994],[106.86886868868692,10.58624795787452],[106.87246872468728,10.608199462382998],[106.86886868868692,10.616642348732412],[106.85446854468546,10.625085235081826],[106.85446854468546,10.631839544161352],[106.86526865268655,10.63352812143124],[106.87606876068764,10.635216698701129],[106.88686886868868,10.635216698701129],[106.89046890468904,10.626773812351715],[106.91206912069123,10.611576616922761],[106.91926919269196,10.603133730573347],[106.92286922869232,10.601445153303473],[106.92646926469268,10.599756576033585],[106.93006930069299,10.598067998763696],[106.93006930069299,10.589625112414282],[106.92646926469268,10.58624795787452],[106.92286922869232,10.582870803334757],[106.92286922869232,10.579493648794994],[106.92286922869232,10.569362185175692],[106.93006930069299,10.557542144286515],[106.93006930069299,10.549099257937101],[106.92286922869232,10.542344948857576],[106.91566915669159,10.545722103397338],[106.91206912069123,10.55585356701664],[106.90126901269014,10.576116494255231],[106.89406894068941,10.576116494255231],[106.89766897668977,10.564296453366055],[106.90846908469086,10.545722103397338],[106.90846908469086,10.532213485238273]]],[[[119.63099630996311,11.069181057060973],[119.63819638196384,11.057361016171797],[119.64539645396457,11.043852398012731],[119.64899648996493,11.03034377985368],[119.64899648996493,11.015146584424727],[119.6417964179642,11.015146584424727],[119.63459634596347,11.020212316234378],[119.62739627396274,11.01852373896449],[119.62019620196202,11.015146584424727],[119.61299612996129,11.008392275345201],[119.60939609396092,11.02527804804403],[119.59859598595989,11.035409511663318],[119.58419584195843,11.040475243472969],[119.58059580595807,11.04554097528262],[119.5769957699577,11.084378252489927],[119.58059580595807,11.097886870648978],[119.62019620196202,11.08100109795015],[119.63099630996311,11.069181057060973]]],[[[119.61299612996129,11.200890084111819],[119.62739627396274,11.190758620492531],[119.63099630996311,11.182315734143117],[119.62739627396274,11.173872847793703],[119.60939609396092,11.156987075094875],[119.5877958779588,11.141789879665936],[119.58419584195843,11.138412725126173],[119.56979569795698,11.145167034205699],[119.56619566195661,11.156987075094875],[119.56979569795698,11.17049569325394],[119.57339573395734,11.178938579603354],[119.5769957699577,11.178938579603354],[119.59499594995953,11.187381465952768],[119.59859598595989,11.190758620492531],[119.59859598595989,11.195824352302182],[119.60579605796062,11.199201506841945],[119.61299612996129,11.200890084111819]]],[[[109.32769327693279,12.220790755120973],[109.33489334893352,12.21741360058121],[109.34209342093425,12.214036446041447],[109.34569345693455,12.207282136961908],[109.34929349293492,12.200527827882382],[109.34569345693455,12.19715067334262],[109.33489334893352,12.190396364263094],[109.32769327693279,12.187019209723317],[109.32409324093243,12.193773518802857],[109.3168931689317,12.19715067334262],[109.30969309693097,12.19715067334262],[109.29889298892988,12.193773518802857],[109.30249302493024,12.192084941532968],[109.3060930609306,12.192084941532968],[109.3060930609306,12.187019209723317],[109.28809288092884,12.188707786993206],[109.27009270092702,12.198839250612494],[109.25569255692557,12.210659291501685],[109.24489244892447,12.220790755120973],[109.24489244892447,12.227545064200513],[109.2520925209252,12.225856486930624],[109.26649266492666,12.224167909660736],[109.27369273692739,12.220790755120973],[109.27369273692739,12.224167909660736],[109.27369273692739,12.235987950549926],[109.29169291692921,12.227545064200513],[109.32769327693279,12.220790755120973]]],[[[-71.52371523715237,17.544874887061127],[-71.54171541715417,17.555006350680415],[-71.54171541715417,17.576957855188894],[-71.53091530915309,17.600597936967247],[-71.52011520115201,17.620860864205852],[-71.50571505715057,17.614106555126313],[-71.49131491314913,17.603975091507024],[-71.4661146611466,17.580335009728657],[-71.48411484114841,17.57526927791902],[-71.50571505715057,17.551629196140652],[-71.52371523715237,17.544874887061127]]],[[[-73.62973629736297,18.093662499773004],[-73.61173611736118,18.093662499773004],[-73.59373593735937,18.088596767963352],[-73.57933579335793,18.081842458883827],[-73.57933579335793,18.066645263454873],[-73.590135901359,18.059890954375348],[-73.61173611736118,18.05820237710546],[-73.65133651336512,18.059890954375348],[-73.66573665736657,18.06326810891511],[-73.68373683736837,18.071710995264525],[-73.70893708937089,18.093662499773004],[-73.70533705337053,18.10379396339229],[-73.70173701737016,18.108859695201943],[-73.69453694536945,18.10717111793207],[-73.68733687336874,18.10041680885253],[-73.67653676536764,18.108859695201943],[-73.66933669336693,18.10548254066218],[-73.66573665736657,18.098728231582655],[-73.65853658536585,18.093662499773004],[-73.62973629736297,18.093662499773004]]],[[[-114.77454774547745,18.35539197660482],[-114.72414724147241,18.35539197660482],[-114.72054720547206,18.35201482206506],[-114.72054720547206,18.34526051298552],[-114.72414724147241,18.338506203905993],[-114.72774727747277,18.333440472096342],[-114.73494734947349,18.33006331755658],[-114.74214742147421,18.32837474028669],[-114.74574745747458,18.32837474028669],[-114.78174781747818,18.324997585746928],[-114.79974799747997,18.33006331755658],[-114.79974799747997,18.341883358445756],[-114.77454774547745,18.35539197660482]]],[[[-73.79533795337953,18.628941494325815],[-73.77373773737737,18.639072957945118],[-73.74133741337413,18.63738438067523],[-73.7161371613716,18.623875762516164],[-73.7161371613716,18.6019242580077],[-73.73773737737378,18.588415639848634],[-73.77013770137701,18.588415639848634],[-73.79533795337953,18.6019242580077],[-73.79533795337953,18.628941494325815]]],[[[-110.81450814508145,19.348275411295845],[-110.80730807308073,19.34152110221632],[-110.80010800108,19.333078215866905],[-110.78930789307893,19.31450386589819],[-110.81450814508145,19.295929515929487],[-110.82530825308253,19.285798052310184],[-110.82890828908289,19.275666588690896],[-110.82890828908289,19.273978011421008],[-110.83250832508325,19.275666588690896],[-110.8361083610836,19.28410947504031],[-110.8361083610836,19.2942409386596],[-110.83250832508325,19.302683825009012],[-110.81810818108181,19.32463532951749],[-110.81450814508145,19.33476679313678],[-110.81450814508145,19.348275411295845]]],[[[-106.22446224462244,21.328976548868255],[-106.22446224462244,21.308713621629664],[-106.22806228062281,21.291827848930836],[-106.23526235262352,21.2952050034706],[-106.2460624606246,21.290139271660948],[-106.27126271262712,21.30027073528025],[-106.27846278462785,21.31546793070919],[-106.26046260462604,21.334042280677906],[-106.24246242462425,21.332353703408018],[-106.23166231662316,21.33573085794778],[-106.22806228062281,21.332353703408018],[-106.22446224462244,21.328976548868255]]],[[[-106.40446404464045,21.484325657697454],[-106.38646386463864,21.48263708042758],[-106.3720637206372,21.48263708042758],[-106.3720637206372,21.472505616808277],[-106.36126361263612,21.464062730458863],[-106.36126361263612,21.45561984410945],[-106.37926379263793,21.447176957760036],[-106.38286382863828,21.431979762331096],[-106.38646386463864,21.42015972144192],[-106.40086400864008,21.423536875981682],[-106.42966429664297,21.43535691687086],[-106.44406444064441,21.437045494140747],[-106.45846458464584,21.448865535029924],[-106.48006480064801,21.452242689569687],[-106.49086490864909,21.469128462268515],[-106.47286472864728,21.484325657697454],[-106.45846458464584,21.494457121316756],[-106.44766447664476,21.492768544046868],[-106.43686436864368,21.496145698586645],[-106.4260642606426,21.48770281223723],[-106.40446404464045,21.484325657697454]]],[[[-72.45972459724597,21.70552928005209],[-72.43452434524345,21.708906434591853],[-72.43452434524345,21.68020062100385],[-72.45252452524525,21.64474049833632],[-72.48132481324812,21.62954330290738],[-72.48132481324812,21.636297611986905],[-72.47052470524704,21.646429075606193],[-72.46332463324633,21.66500342557491],[-72.45972459724597,21.6852663528135],[-72.45972459724597,21.70552928005209]]],[[[-106.66366663666636,21.776449525387164],[-106.66366663666636,21.76969521630764],[-106.65646656466565,21.766318061767876],[-106.65646656466565,21.754498020878685],[-106.66366663666636,21.74774371179916],[-106.65646656466565,21.739300825449746],[-106.6780667806678,21.72748078456057],[-106.68886688866888,21.746055134529286],[-106.68526685266852,21.761252329958225],[-106.6780667806678,21.77476094811729],[-106.67086670866708,21.771383793577513],[-106.66366663666636,21.776449525387164]]],[[[117.46737467374675,23.753773508419812],[117.50337503375033,23.750396353880035],[117.52497524975252,23.740264890260747],[117.51777517775179,23.716624808482393],[117.4961749617496,23.720001963022156],[117.48537485374857,23.711559076672742],[117.47817478174784,23.689607572164263],[117.47817478174784,23.662590335846147],[117.46737467374675,23.657524604036496],[117.44577445774456,23.66427891311602],[117.43137431374316,23.66090175857626],[117.42057420574207,23.64570456314732],[117.4169741697417,23.627130213178603],[117.4169741697417,23.6085558632099],[117.42417424174243,23.60180155413036],[117.43137431374316,23.58322720416166],[117.3737737377374,23.573095740542357],[117.31977319773199,23.574784317812245],[117.33777337773381,23.59673582232071],[117.37017370173703,23.62206448136895],[117.39537395373952,23.679476108544975],[117.38817388173885,23.684541840354612],[117.3737737377374,23.689607572164263],[117.3629736297363,23.69129614943415],[117.35577355773557,23.689607572164263],[117.34497344973448,23.684541840354612],[117.34137341373417,23.689607572164263],[117.34137341373417,23.699739035783566],[117.37737377373776,23.72844484937157],[117.37737377373776,23.747019199340272],[117.38097380973812,23.747019199340272],[117.3737737377374,23.767282126578863],[117.38457384573849,23.774036435658402],[117.40257402574025,23.774036435658402],[117.41337413374134,23.772347858388514],[117.42057420574207,23.753773508419812],[117.43497434974353,23.750396353880035],[117.44937449374493,23.741953467530635],[117.46737467374675,23.753773508419812]]],[[[-111.56331563315634,24.3785470982764],[-111.53811538115382,24.373481366466763],[-111.50931509315093,24.36334990284746],[-111.4661146611466,24.336332666529344],[-111.46251462514626,24.329578357449805],[-111.53451534515345,24.35828417103781],[-111.55971559715597,24.361661325577572],[-111.59571595715957,24.36503848011735],[-111.6389163891639,24.354907016498046],[-111.66411664116642,24.351529861958284],[-111.6749167491675,24.35828417103781],[-111.66411664116642,24.36841563465711],[-111.65691656916569,24.375169943736637],[-111.64611646116461,24.371792789196874],[-111.6281162811628,24.373481366466763],[-111.59931599315993,24.376858521006525],[-111.58131581315813,24.375169943736637],[-111.56331563315634,24.3785470982764]]],[[[-110.76410764107641,25.594322732591948],[-110.78570785707856,25.60445419621125],[-110.80730807308073,25.64498005068843],[-110.80370803708037,25.675374441546325],[-110.79290792907929,25.695637368784915],[-110.78210782107821,25.710834564213854],[-110.77490774907749,25.712523141483743],[-110.77130771307714,25.695637368784915],[-110.76050760507604,25.693948791515027],[-110.76770767707677,25.675374441546325],[-110.76050760507604,25.648357205228194],[-110.75330753307533,25.59769988713171],[-110.76410764107641,25.594322732591948]]],[[[33.95373953739539,26.789835439668906],[33.971739717397185,26.789835439668906],[33.97533975339755,26.789835439668906],[33.996939969399705,26.7509981624616],[34.00414004140043,26.732423812492883],[34.00414004140043,26.70878373071453],[33.98973989739898,26.720603771603706],[33.98253982539825,26.73411238976277],[33.95373953739539,26.789835439668906]]],[[[-110.0441004410044,27.087025039168253],[-110.03690036900369,27.08871361643814],[-110.01890018900188,27.08364788462849],[-109.98649986499865,27.070139266469425],[-109.95769957699576,27.051564916500723],[-109.93969939699397,27.02117052564283],[-109.94689946899469,27.02117052564283],[-109.96849968499684,27.049876339230835],[-109.99009990099901,27.0633849573899],[-110.01890018900188,27.076893575548965],[-110.03690036900369,27.080270730088728],[-110.0441004410044,27.087025039168253]]],[[[-110.60570605706057,27.318360125142178],[-110.60570605706057,27.358885979619373],[-110.60570605706057,27.382526061397726],[-110.59850598505984,27.40616614317608],[-110.59130591305913,27.416297606795382],[-110.59850598505984,27.377460329588075],[-110.5949059490595,27.331868743301243],[-110.57690576905769,27.31329439333254],[-110.53010530105301,27.299785775173476],[-110.53370533705336,27.284588579744536],[-110.58770587705877,27.30316292971324],[-110.60570605706057,27.318360125142178]]],[[[-112.89532895328954,28.677664827397763],[-112.85932859328594,28.67259909558811],[-112.80532805328053,28.637138972920567],[-112.79092790927909,28.623630354761517],[-112.78372783727838,28.616876045681977],[-112.78012780127801,28.61012173660245],[-112.7621276212762,28.60336742752291],[-112.75852758527586,28.594924541173498],[-112.75132751327513,28.591547386633735],[-112.7621276212762,28.581415923014447],[-112.77292772927728,28.576350191204796],[-112.78012780127801,28.581415923014447],[-112.78372783727838,28.586481654824084],[-112.79092790927909,28.586481654824084],[-112.7981279812798,28.61012173660245],[-112.8089280892809,28.618564622951865],[-112.83052830528305,28.62531893203139],[-112.84132841328413,28.64051612746033],[-112.86652866528665,28.643893282000107],[-112.86652866528665,28.650647591079633],[-112.87012870128702,28.655713322889284],[-112.87732877328773,28.664156209238698],[-112.88452884528846,28.670910518318223],[-112.89532895328954,28.677664827397763]]],[[[-112.61452614526145,28.72494499095447],[-112.60012600126001,28.728322145494232],[-112.5929259292593,28.73169930003401],[-112.57132571325712,28.728322145494232],[-112.5569255692557,28.733387877303883],[-112.54972549725497,28.728322145494232],[-112.5461254612546,28.718190681874944],[-112.54252542525425,28.711436372795404],[-112.5461254612546,28.701304909176116],[-112.5461254612546,28.686107713747177],[-112.55332553325533,28.67259909558811],[-112.57132571325712,28.66922194104835],[-112.5929259292593,28.67259909558811],[-112.60372603726037,28.66922194104835],[-112.60012600126001,28.677664827397763],[-112.61092610926109,28.70468206371588],[-112.61452614526145,28.72494499095447]]],[[[133.12033120331205,36.10909339215151],[133.1347313473135,36.08883046491292],[133.1239312393124,36.063501805864675],[133.09873098730986,36.03817314681643],[133.0807308073081,36.021287374117605],[133.07713077130774,36.049993187705624],[133.0807308073081,36.0803875785635],[133.0951309513095,36.10233908307198],[133.12033120331205,36.10909339215151]]],[[[133.0915309153092,36.11753627850092],[133.0915309153092,36.12260201031057],[133.11313113131132,36.11415912396116],[133.0915309153092,36.10909339215151],[133.0915309153092,36.11753627850092]]],[[[126.2946629466295,37.80273639384386],[126.31626316263163,37.80273639384386],[126.33426334263345,37.80104781657397],[126.34146341463418,37.79260493022457],[126.33426334263345,37.774030580255854],[126.31986319863199,37.76221053936668],[126.2946629466295,37.76052196209679],[126.2550625506255,37.7689648484462],[126.24426244262446,37.76558769390644],[126.23346233462337,37.76052196209679],[126.22266222662228,37.76052196209679],[126.21906219062191,37.77065342571609],[126.22266222662228,37.774030580255854],[126.23346233462337,37.80273639384386],[126.24786247862482,37.81117928019327],[126.26226262262622,37.814556434733035],[126.27666276662768,37.81117928019327],[126.2946629466295,37.80273639384386]]],[[[122.32022320223206,39.16541825063919],[122.33102331023309,39.180615446068146],[122.35622356223564,39.195812641497085],[122.38142381423813,39.20763268238626],[122.40302403024032,39.2143869914658],[122.39222392223922,39.2042555278465],[122.38862388623886,39.194124064227196],[122.38862388623886,39.18736975514767],[122.39582395823959,39.16541825063919],[122.40302403024032,39.15866394155967],[122.38862388623886,39.15190963248014],[122.37782377823777,39.160352518829555],[122.35622356223564,39.15190963248014],[122.33462334623346,39.14684390067049],[122.32022320223206,39.16541825063919]]],[[[122.6370263702637,39.23464991870439],[122.66222662226625,39.2329613414345],[122.71982719827201,39.24140422778392],[122.74142741427414,39.236338495974266],[122.73782737827378,39.222829877815215],[122.72702727027269,39.20932125965615],[122.6910269102691,39.194124064227196],[122.6910269102691,39.200878373306736],[122.6910269102691,39.20763268238626],[122.69462694626947,39.2143869914658],[122.69822698226983,39.22114130054533],[122.68382683826837,39.22451845508509],[122.6370263702637,39.22789560962485],[122.6370263702637,39.23464991870439]]],[[[122.68382683826837,39.26166715502251],[122.64422644226443,39.25491284594298],[122.58662586625866,39.258290000482745],[122.53262532625325,39.27179861864181],[122.5038250382504,39.29712727769005],[122.53622536225362,39.298815854959926],[122.54702547025471,39.29712727769005],[122.5830258302583,39.28361865953099],[122.64422644226443,39.278552927721336],[122.66222662226625,39.27179861864181],[122.68382683826837,39.26166715502251]]],[[[121.42381423814237,39.47442789102773],[121.44181441814419,39.46260785013855],[121.44901449014492,39.45078780924938],[121.44181441814419,39.440656345630074],[121.4166141661417,39.440656345630074],[121.4166141661417,39.43390203655055],[121.42381423814237,39.430524882010786],[121.4310143101431,39.42377057293125],[121.43461434614346,39.41701626385172],[121.43461434614346,39.41026195477218],[121.43461434614346,39.38662187299383],[121.420214202142,39.37311325483476],[121.40221402214024,39.37142467756489],[121.3518135181352,39.37311325483476],[121.33741337413375,39.378178986644414],[121.33741337413375,39.38662187299383],[121.35541355413557,39.40688480023242],[121.37341373413733,39.41701626385172],[121.38061380613806,39.425459150201135],[121.38061380613806,39.43390203655055],[121.3770137701377,39.44234492289996],[121.3626136261363,39.445722077439726],[121.3518135181352,39.44403350016984],[121.34101341013411,39.440656345630074],[121.32661326613265,39.42714772747101],[121.31221312213125,39.40857337750231],[121.2978129781298,39.39168760480348],[121.27261272612725,39.384933295723954],[121.26541265412658,39.38662187299383],[121.25821258212585,39.39168760480348],[121.25821258212585,39.40013049115289],[121.25821258212585,39.41195053204207],[121.26181261812621,39.42714772747101],[121.26541265412658,39.43390203655055],[121.29421294212943,39.44403350016984],[121.30141301413016,39.445722077439726],[121.31221312213125,39.447410654709614],[121.31941319413193,39.45416496378914],[121.32301323013229,39.460919272868665],[121.32661326613265,39.467673581948205],[121.33021330213302,39.47611646829762],[121.34101341013411,39.481182200107256],[121.3518135181352,39.482870777377144],[121.38781387813879,39.47442789102773],[121.41301413014133,39.47611646829762],[121.42381423814237,39.47442789102773]]],[[[122.96462964629649,39.51495374550491],[122.96822968229685,39.54028240455315],[122.98982989829898,39.54872529090257],[123.01863018630189,39.543659559092916],[123.04023040230402,39.530150940933865],[123.02943029430293,39.508199436425386],[123.00423004230043,39.49806797280608],[122.97902979029789,39.49975655007597],[122.96462964629649,39.51495374550491]]],[[[-71.31491314913148,41.58008374657146],[-71.32931329313293,41.57501801476181],[-71.33651336513364,41.581772323841335],[-71.33651336513364,41.59190378746064],[-71.32931329313293,41.61047813742934],[-71.33651336513364,41.62567533285829],[-71.35811358113581,41.63074106466793],[-71.35811358113581,41.64256110555712],[-71.35451354513545,41.65944687825595],[-71.34371343713437,41.671266919145125],[-71.33651336513364,41.65775830098606],[-71.32931329313293,41.64762683736676],[-71.31851318513185,41.63242964193782],[-71.3041130411304,41.62567533285829],[-71.3041130411304,41.603723828349814],[-71.31491314913148,41.58008374657146]]],[[[-69.66249662496625,43.78874281557802],[-69.68409684096841,43.8106943200865],[-69.68769687696877,43.827580092785325],[-69.67329673296733,43.85290875183358],[-69.64809648096481,43.83771155640463],[-69.64809648096481,43.819137206435926],[-69.65169651696516,43.79043139284792],[-69.66249662496625,43.78874281557802]]],[[[-69.66969669696697,43.95591196529642],[-69.66969669696697,43.94240334713734],[-69.68049680496804,43.933960460787944],[-69.69129691296912,43.90525464719994],[-69.69129691296912,43.90356606993004],[-69.69129691296912,43.90187749266016],[-69.69129691296912,43.90018891539029],[-69.69129691296912,43.898500338120414],[-69.69129691296912,43.89681176085051],[-69.69129691296912,43.89512318358064],[-69.69129691296912,43.89343460631076],[-69.69129691296912,43.89174602904086],[-69.69489694896949,43.89174602904086],[-69.69489694896949,43.890057451770986],[-69.69489694896949,43.88836887450111],[-69.69489694896949,43.88668029723121],[-69.69489694896949,43.884991719961334],[-69.69489694896949,43.88330314269146],[-69.69489694896949,43.881614565421586],[-69.69489694896949,43.87992598815168],[-69.69489694896949,43.87823741088181],[-69.69849698496985,43.87823741088181],[-69.69849698496985,43.876548833611935],[-69.69849698496985,43.87486025634203],[-69.69849698496985,43.87317167907216],[-69.69849698496985,43.87148310180228],[-69.69849698496985,43.86979452453241],[-69.7020970209702,43.86979452453241],[-69.7020970209702,43.86810594726251],[-69.70569705697056,43.86810594726251],[-69.70569705697056,43.86641736999263],[-69.70569705697056,43.86472879272276],[-69.70929709297093,43.86472879272276],[-69.70929709297093,43.863040215452855],[-69.71289712897129,43.86135163818298],[-69.71289712897129,43.85966306091311],[-69.71649716497164,43.85966306091311],[-69.720097200972,43.87317167907216],[-69.73089730897308,43.890057451770986],[-69.72369723697237,43.90694322446981],[-69.7020970209702,43.92720615170842],[-69.69489694896949,43.94578050167712],[-69.67689676896768,43.9677320061856],[-69.66969669696697,43.95591196529642]]],[[[-68.60768607686076,44.08930956961714],[-68.60048600486004,44.07073521964844],[-68.60048600486004,44.04709513787009],[-68.60768607686076,44.023455056091734],[-68.63288632886328,44.01838932428208],[-68.65448654486545,44.009946437932655],[-68.66168661686616,44.02007790155196],[-68.66168661686616,44.031897942441134],[-68.65448654486545,44.05216086967974],[-68.65088650886509,44.06566948783879],[-68.640086400864,44.077489528727966],[-68.62568625686256,44.09099814688702],[-68.60768607686076,44.08930956961714]]],[[[143.89523895238955,44.15854123768233],[143.9132391323913,44.1517869286028],[143.95643956439568,44.1517869286028],[143.97443974439744,44.148409774063055],[143.94203942039422,44.139966887713626],[143.89523895238955,44.14672119679315],[143.81243812438123,44.16867270130163],[143.8160381603816,44.175427010381156],[143.83763837638378,44.175427010381156],[143.85923859238596,44.17204985584141],[143.8808388083881,44.16698412403176],[143.89523895238955,44.15854123768233]]],[[[-68.81288812888128,44.148409774063055],[-68.82368823688236,44.14503261952328],[-68.84168841688417,44.13827831044375],[-68.85248852488525,44.12476969228467],[-68.86328863288632,44.11970396047502],[-68.88848888488884,44.129835424094324],[-68.89928899288992,44.134901155903975],[-68.92088920889209,44.12476969228467],[-68.93888938889388,44.10619534231597],[-68.94248942489425,44.11801538320515],[-68.93888938889388,44.12476969228467],[-68.9280892808928,44.1416554649835],[-68.88848888488884,44.16360696949198],[-68.85608856088561,44.18049274219081],[-68.82008820088201,44.17880416492093],[-68.81288812888128,44.16867270130163],[-68.81288812888128,44.148409774063055]]],[[[-68.39168391683917,44.16360696949198],[-68.39168391683917,44.14672119679315],[-68.40248402484025,44.134901155903975],[-68.43128431284312,44.12814684682445],[-68.44208442084421,44.14503261952328],[-68.45288452884529,44.1517869286028],[-68.46368463684637,44.15009835133293],[-68.48888488884889,44.139966887713626],[-68.50328503285033,44.148409774063055],[-68.50688506885068,44.16022981495223],[-68.49248492484925,44.16867270130163],[-68.47448474484744,44.16698412403176],[-68.47088470884708,44.17711558765106],[-68.460084600846,44.18555847400046],[-68.44568445684456,44.18049274219081],[-68.43848438484385,44.17373843311128],[-68.42768427684277,44.175427010381156],[-68.41688416884169,44.18218131946068],[-68.40248402484025,44.175427010381156],[-68.39168391683917,44.16360696949198]]],[[[-68.92088920889209,44.23621579209694],[-68.93528935289352,44.23621579209694],[-68.93528935289352,44.24297010117647],[-68.9280892808928,44.26661018295482],[-68.92448924489244,44.281807378383775],[-68.94248942489425,44.281807378383775],[-68.94248942489425,44.290250264733174],[-68.92448924489244,44.307136037432],[-68.89928899288992,44.31051319197178],[-68.88488884888848,44.30038172835248],[-68.89928899288992,44.2801188011139],[-68.92088920889209,44.23621579209694]]],[[[-68.48888488884889,44.34766189190921],[-68.48528485284852,44.33415327375013],[-68.47448474484744,44.32402181013083],[-68.48528485284852,44.313890346511556],[-68.4960849608496,44.32064465559108],[-68.51048510485104,44.322333232860956],[-68.52128521285212,44.322333232860956],[-68.52848528485285,44.330776119210384],[-68.52848528485285,44.344284737369435],[-68.52488524885248,44.35948193279839],[-68.52128521285212,44.36792481914779],[-68.51048510485104,44.379744860036965],[-68.50328503285033,44.379744860036965],[-68.4960849608496,44.376367705497216],[-68.49248492484925,44.36454766460804],[-68.48888488884889,44.34766189190921]]],[[[-68.86688866888669,44.38143343730684],[-68.85968859688596,44.357793355528486],[-68.86688866888669,44.34766189190921],[-68.88488884888848,44.330776119210384],[-68.90288902889029,44.31895607832121],[-68.91728917289173,44.33246469648026],[-68.91728917289173,44.344284737369435],[-68.910089100891,44.366236241877914],[-68.89928899288992,44.37805628276709],[-68.88488884888848,44.39156490092614],[-68.86688866888669,44.38143343730684]]],[[[-67.56727567275672,44.46079656899133],[-67.58527585275853,44.4439107962925],[-67.59247592475924,44.45741941445158],[-67.60687606876068,44.482748073499806],[-67.6140761407614,44.504699578008285],[-67.6140761407614,44.51483104162759],[-67.59967599675997,44.518208196167365],[-67.58167581675816,44.51483104162759],[-67.5780757807578,44.491190959849234],[-67.56727567275672,44.47937091896006],[-67.56727567275672,44.46079656899133]]],[[[-67.28287282872829,44.6195228323603],[-67.27207272072721,44.61276852328078],[-67.27567275672756,44.602637059661475],[-67.30087300873008,44.59588275058195],[-67.32247322473225,44.602637059661475],[-67.31887318873189,44.61276852328078],[-67.30447304473044,44.624588564169954],[-67.28287282872829,44.6195228323603]]],[[[-67.04527045270453,44.92684389547895],[-67.04527045270453,44.94372966817778],[-67.0380703807038,44.95554970906696],[-67.03087030870309,44.94372966817778],[-67.0020700207002,44.92515531820908],[-66.98766987669876,44.909958122780125],[-66.99126991269912,44.89813808189095],[-67.01287012870128,44.89982665916085],[-67.01647016470164,44.90826954551025],[-67.04527045270453,44.92684389547895]]],[[[-66.90126901269012,44.88969519554155],[-66.91566915669156,44.87787515465237],[-66.930069300693,44.869432268302944],[-66.91926919269193,44.85085791833424],[-66.91926919269193,44.83734930017519],[-66.93726937269372,44.839037877445065],[-66.95526955269553,44.84579218652459],[-66.97686976869768,44.860989381953544],[-66.98046980469805,44.87280942284272],[-66.95886958869588,44.87787515465237],[-66.95526955269553,44.88969519554155],[-66.95526955269553,44.89982665916085],[-66.9480694806948,44.915023854589776],[-66.94086940869408,44.92515531820908],[-66.93366933669336,44.94204109090791],[-66.92286922869228,44.94879539998743],[-66.90486904869049,44.95554970906696],[-66.90486904869049,44.94710682271756],[-66.90486904869049,44.93359820455851],[-66.89046890468904,44.92177816366933],[-66.89406894068941,44.90658096824038],[-66.90126901269012,44.88969519554155]]],[[[-66.96246962469624,44.96061544087661],[-66.97686976869768,44.936975359098255],[-66.9840698406984,44.92515531820908],[-67.00567005670057,44.94879539998743],[-67.01287012870128,44.963992595416386],[-67.01647016470164,44.97918979084534],[-67.00567005670057,44.98932125446461],[-66.99126991269912,45.00114129535379],[-66.97326973269732,45.01802706805262],[-66.95526955269553,45.02815853167192],[-66.93726937269372,45.02478137713217],[-66.94086940869408,45.01127275897309],[-66.94446944469445,44.999452718083916],[-66.9480694806948,44.98256694538509],[-66.96246962469624,44.96061544087661]]],[[[-55.877958779587786,47.26552341426651],[-55.88875888758888,47.26045768245686],[-55.903159031590306,47.26383483699661],[-55.9139591395914,47.27058914607616],[-55.928359283592826,47.27396630061591],[-55.93915939159392,47.272277723346036],[-55.949959499594996,47.26890056880626],[-55.949959499594996,47.27734345515569],[-55.92115921159211,47.289163496044864],[-55.88875888758888,47.294229227854515],[-55.86355863558636,47.29254065058461],[-55.86355863558636,47.28409776423521],[-55.859958599585994,47.27734345515569],[-55.852758527585266,47.27396630061591],[-55.84195841958419,47.27396630061591],[-55.87075870758707,47.25201479610743],[-55.877958779587786,47.26552341426651]]],[[[-54.09594095940959,47.61843606367199],[-54.092340923409225,47.63025610456117],[-54.088740887408875,47.63869899091057],[-54.08514085140851,47.64545329999012],[-54.08154081540815,47.650519031799746],[-54.07794077940778,47.66909338176848],[-54.08154081540815,47.691044886276956],[-54.07074070740707,47.6842905771974],[-54.067140671406705,47.675847690848],[-54.05994059940599,47.6555847636094],[-54.063540635406355,47.642076145450346],[-54.063540635406355,47.628567527291295],[-54.07074070740707,47.61674748640209],[-54.08154081540815,47.609993177322565],[-54.08154081540815,47.601550290973165],[-54.07794077940778,47.59141882735386],[-54.07794077940778,47.566090168305635],[-54.07074070740707,47.561024436495984],[-54.067140671406705,47.55595870468633],[-54.063540635406355,47.544138663797156],[-54.067140671406705,47.53231862290798],[-54.08154081540815,47.52725289109833],[-54.07074070740707,47.5188100047489],[-54.07434074340743,47.5086785411296],[-54.08154081540815,47.49516992297055],[-54.08154081540815,47.47828415027172],[-54.09954099540995,47.49179276843077],[-54.09954099540995,47.50698996385972],[-54.092340923409225,47.525564313828426],[-54.088740887408875,47.54582724106703],[-54.092340923409225,47.544138663797156],[-54.1031410314103,47.54076150925738],[-54.1031410314103,47.561024436495984],[-54.09594095940959,47.61843606367199]]],[[[-53.56673566735667,48.19086375816221],[-53.54513545135451,48.20774953086104],[-53.51993519935199,48.20099522178151],[-53.51273512735126,48.18748660362246],[-53.53433534335343,48.17735514000316],[-53.51993519935199,48.158780790034456],[-53.523535235352355,48.145272171875376],[-53.53793537935378,48.13007497644645],[-53.552335523355225,48.10812347193797],[-53.53793537935378,48.10812347193797],[-53.53433534335343,48.10812347193797],[-53.56673566735667,48.082794812889716],[-53.61713617136171,48.082794812889716],[-53.71793717937179,48.10136916285845],[-53.811538115381154,48.09461485377892],[-53.82233822338223,48.096303431048796],[-53.876338763387636,48.1064348946681],[-53.88353883538835,48.118254935557275],[-53.88353883538835,48.131763553716326],[-53.890738907389064,48.1435835946055],[-53.905139051390506,48.162157944574204],[-53.91953919539195,48.17060083092363],[-53.926739267392676,48.18410944908268],[-53.930339303393026,48.20774953086104],[-53.91953919539195,48.216192417210465],[-53.89793897938979,48.20437237632129],[-53.861938619386194,48.17735514000316],[-53.840338403384024,48.17060083092363],[-53.76833768337683,48.17735514000316],[-53.74673746737467,48.17228940819351],[-53.703537035370346,48.15202648095493],[-53.678336783367826,48.15033790368503],[-53.649536495364956,48.15709221276455],[-53.56673566735667,48.19086375816221]]],[[[-54.657546575465744,49.46573959692367],[-54.66834668346684,49.46573959692367],[-54.679146791467915,49.46236244238389],[-54.68634686346863,49.45729671057424],[-54.682746827468264,49.44885382422484],[-54.679146791467915,49.43872236060554],[-54.682746827468264,49.42690231971636],[-54.69354693546936,49.41677085609706],[-54.69714697146971,49.40832796974766],[-54.707947079470785,49.40663939247776],[-54.729547295472955,49.41170512428741],[-54.75114751147511,49.423525165176585],[-54.754747547475475,49.445476669685064],[-54.74034740347403,49.458985287844115],[-54.70074700747007,49.472493906003194],[-54.68994689946899,49.4826253696225],[-54.679146791467915,49.49275683324177],[-54.657546575465744,49.48769110143212],[-54.64314643146432,49.47587106054294],[-54.657546575465744,49.46573959692367]]],[[[-55.726757267572665,49.561988501306985],[-55.71235712357124,49.56536565584673],[-55.65835658356583,49.561988501306985],[-55.65835658356583,49.54172557406838],[-55.67995679956799,49.521462646829775],[-55.70875708757087,49.507954028670724],[-55.733957339573394,49.513019760480375],[-55.73755737557376,49.521462646829775],[-55.73755737557376,49.53665984225873],[-55.733957339573394,49.55185703768768],[-55.726757267572665,49.561988501306985]]],[[[-55.57915579155791,49.60926866486369],[-55.571955719557195,49.60758008759382],[-55.571955719557195,49.602514355784166],[-55.571955719557195,49.597448623974515],[-55.57915579155791,49.59576004670461],[-55.597155971559715,49.59407146943474],[-55.64035640356403,49.58562858308534],[-55.66915669156691,49.570431387656384],[-55.69435694356943,49.56874281038651],[-55.71595715957159,49.57211996492626],[-55.726757267572665,49.58225142854556],[-55.723157231572316,49.58731716035521],[-55.70875708757087,49.602514355784166],[-55.701557015570145,49.62277728302274],[-55.69435694356943,49.62784301483239],[-55.672756727567275,49.63628590118182],[-55.651156511565105,49.63628590118182],[-55.65475654756547,49.62784301483239],[-55.65835658356583,49.62277728302274],[-55.64395643956439,49.624465860292645],[-55.63315633156331,49.62277728302274],[-55.625956259562585,49.61602297394322],[-55.62955629556295,49.60420293305404],[-55.60435604356043,49.60420293305404],[-55.597155971559715,49.60420293305404],[-55.58995589955899,49.60420293305404],[-55.58275582755827,49.60926866486369],[-55.57915579155791,49.60926866486369]]],[[[-59.35199351993519,50.6038406768246],[-59.36279362793627,50.6038406768246],[-59.366393663936634,50.60552925409448],[-59.366393663936634,50.61059498590413],[-59.37719377193771,50.62072644952343],[-59.38439384393844,50.63930079949213],[-59.37719377193771,50.652809417651184],[-59.35919359193592,50.65618657219096],[-59.33759337593375,50.644366531301785],[-59.315993159931594,50.6038406768246],[-59.305193051930516,50.59708636774508],[-59.29439294392944,50.57175770869682],[-59.2979929799298,50.56331482234742],[-59.30159301593015,50.56162624507752],[-59.30879308793088,50.55824909053777],[-59.315993159931594,50.554871935997994],[-59.32679326793267,50.546429049648594],[-59.341193411934114,50.537986163299166],[-59.35199351993519,50.537986163299166],[-59.35919359193592,50.551494781458246],[-59.35199351993519,50.5650033996173],[-59.32319323193232,50.61059498590413],[-59.3339933399334,50.61566071771378],[-59.341193411934114,50.612283563174],[-59.34839348393484,50.60721783136435],[-59.35199351993519,50.6038406768246]]],[[[-55.52875528755287,50.97195052165904],[-55.5359553595536,50.95844190349996],[-55.54315543155431,50.951687594420434],[-55.55395553955539,50.94493328534091],[-55.56475564755647,50.93480182172161],[-55.571955719557195,50.92298178083243],[-55.56835568355683,50.914538894483],[-55.55755557555575,50.9060960081336],[-55.546755467554675,50.89089881270465],[-55.56835568355683,50.89089881270465],[-55.58635586355864,50.8959645445143],[-55.622356223562235,50.91116173994325],[-55.61155611556116,50.92298178083243],[-55.61515615156151,50.93142466718183],[-55.63315633156331,50.94999901715056],[-55.64035640356403,50.96181905803974],[-55.62955629556295,50.965196212579485],[-55.60435604356043,50.96688478984939],[-55.56115561155612,50.98545913981809],[-55.54315543155431,50.987147717087964],[-55.52875528755287,50.97195052165904]]],[[[-58.39798397983979,51.25394292572943],[-58.40878408784087,51.24718861664991],[-58.45558455584555,51.22523711214143],[-58.47358473584735,51.22017138033178],[-58.563585635856356,51.23367999849086],[-58.55278552785528,51.24550003938003],[-58.53478534785347,51.25732008026921],[-58.50238502385024,51.27589443023791],[-58.48078480784807,51.277583007507786],[-58.43398433984339,51.27589443023791],[-58.412384123841235,51.28264873931744],[-58.412384123841235,51.267451543888484],[-58.40878408784087,51.264074389348735],[-58.40878408784087,51.259008657539084],[-58.40518405184051,51.25563150299931],[-58.39798397983979,51.25394292572943]]],[[[-128.24948249482495,52.02224558352606],[-128.2530825308253,52.02731131533571],[-128.2530825308253,52.034065624415234],[-128.2530825308253,52.04081993349476],[-128.25668256682567,52.04926281984419],[-128.27828278282783,52.09147725159124],[-128.29628296282962,52.1066744470202],[-128.28908289082892,52.1252487969889],[-128.27828278282783,52.14382314695763],[-128.26388263882637,52.15226603330703],[-128.26388263882637,52.155643187846806],[-128.2530825308253,52.172528960545634],[-128.24948249482495,52.17928326962516],[-128.24228242282422,52.18434900143481],[-128.23508235082352,52.18772615597456],[-128.22068220682206,52.19279188778421],[-128.20268202682027,52.19785761959386],[-128.1810818108181,52.199546196863736],[-128.15948159481593,52.19785761959386],[-128.1450814508145,52.19279188778421],[-128.15228152281523,52.186037578704685],[-128.1558815588156,52.09485440613102],[-128.1630816308163,52.07290290162254],[-128.17028170281702,52.06783716981289],[-128.18468184681848,52.061082860733364],[-128.19188191881918,52.05601712892371],[-128.1990819908199,52.04757424257431],[-128.20268202682027,52.02899989260558],[-128.20628206282063,52.02224558352606],[-128.2170821708217,52.017179851716406],[-128.2278822788228,52.017179851716406],[-128.23868238682388,52.017179851716406],[-128.24948249482495,52.02224558352606]]],[[[-128.2278822788228,52.213054815022815],[-128.24948249482495,52.20630050594329],[-128.26748267482674,52.19785761959386],[-128.27828278282783,52.18434900143481],[-128.2818828188282,52.16915180600586],[-128.28548285482856,52.164086074196206],[-128.30348303483035,52.13031452879855],[-128.3142831428314,52.13200310606845],[-128.32868328683287,52.14720030149738],[-128.3358833588336,52.1168059106395],[-128.32148321483214,52.08978867432137],[-128.33948339483396,52.07965721070207],[-128.36468364683645,52.088100097051495],[-128.38268382683827,52.0982315606708],[-128.36828368283682,52.12187164244915],[-128.35748357483575,52.14382314695763],[-128.37188371883718,52.14888887876725],[-128.39348393483934,52.155643187846806],[-128.40428404284043,52.14213456968773],[-128.42228422284222,52.1269373742588],[-128.44028440284404,52.123560219719025],[-128.45468454684547,52.13031452879855],[-128.44028440284404,52.14213456968773],[-128.42948429484295,52.1539546105769],[-128.47628476284763,52.150577456037155],[-128.5050850508505,52.15226603330703],[-128.5230852308523,52.15733176511668],[-128.51948519485194,52.17421753781551],[-128.48348483484835,52.186037578704685],[-128.47268472684726,52.20292335140351],[-128.45828458284583,52.21136623775291],[-128.45468454684547,52.22487485591199],[-128.44748447484474,52.23838347407104],[-128.4078840788408,52.23669489680117],[-128.36468364683645,52.235006319531294],[-128.3430834308343,52.240072051340945],[-128.27828278282783,52.23669489680117],[-128.24588245882458,52.22825201045174],[-128.2278822788228,52.213054815022815]]],[[[-129.55629556295563,53.001620400058016],[-129.5490954909549,52.98980035916884],[-129.53469534695347,52.97629174100979],[-129.5310953109531,52.96447170012061],[-129.5418954189542,52.95940596831096],[-129.559895598956,52.96447170012061],[-129.57789577895778,52.98135747281944],[-129.59229592295924,52.98135747281944],[-129.61029610296103,52.961094545580835],[-129.6210962109621,52.957717391041086],[-129.62829628296282,52.99148893643874],[-129.64629646296464,53.010063286407444],[-129.65349653496534,53.02188332729662],[-129.59949599495994,53.0252604818364],[-129.57069570695705,53.02019475002675],[-129.55629556295563,53.001620400058016]]],[[[-129.56349563495635,53.05565487269428],[-129.54549545495456,53.04045767726532],[-129.5310953109531,53.03539194545567],[-129.51669516695168,53.03539194545567],[-129.520295202952,53.02694905910627],[-129.52749527495274,53.018506172756844],[-129.53469534695347,53.01344044094722],[-129.5418954189542,53.00837470913757],[-129.5490954909549,53.01681759548697],[-129.55629556295563,53.0252604818364],[-129.56349563495635,53.03201479091592],[-129.57069570695705,53.03539194545567],[-129.58149581495815,53.03876909999545],[-129.58869588695887,53.03539194545567],[-129.59229592295924,53.03032621364605],[-129.6030960309603,53.028637636376146],[-129.61029610296103,53.03032621364605],[-129.62829628296282,53.042146254535226],[-129.63549635496355,53.04721198634485],[-129.64629646296464,53.0522777181545],[-129.6750967509675,53.05734344996415],[-129.6858968589686,53.064097759043676],[-129.67149671496713,53.064097759043676],[-129.61749617496176,53.05565487269428],[-129.57429574295742,53.05903202723405],[-129.56349563495635,53.05565487269428]]],[[[-130.22950229502294,54.1177699754505],[-130.2439024390244,54.12283570726015],[-130.25470254702546,54.132967170879425],[-130.2619026190262,54.14478721176863],[-130.26910269102692,54.15323009811803],[-130.25830258302582,54.181935911706034],[-130.25110251102512,54.19037879805546],[-130.24030240302403,54.195444529865085],[-130.22950229502294,54.19713310713499],[-130.2151021510215,54.19375595259521],[-130.2151021510215,54.187001643515686],[-130.18630186301863,54.18024733443616],[-130.1611016110161,54.16167298446743],[-130.15750157501574,54.14141005722885],[-130.2151021510215,54.12114712999025],[-130.22950229502294,54.1177699754505]]],[[[-130.3519035190352,54.26805335247005],[-130.35550355503554,54.2646761979303],[-130.36270362703627,54.257921888850746],[-130.36630366303663,54.25623331158087],[-130.369903699037,54.25285615704112],[-130.369903699037,54.24779042523147],[-130.36630366303663,54.24272469342182],[-130.39510395103952,54.254544734311],[-130.44550445504456,54.2916934342484],[-130.47070470704708,54.30351347513758],[-130.46350463504635,54.31702209329666],[-130.45270452704528,54.32715355691596],[-130.43830438304383,54.33221928872558],[-130.42030420304204,54.33221928872558],[-130.3879038790388,54.31026778421713],[-130.38070380703806,54.30351347513758],[-130.36270362703627,54.27818481608935],[-130.35550355503554,54.271430507009825],[-130.35550355503554,54.29675916605805],[-130.33390333903338,54.320399247836406],[-130.3051030510305,54.333907865995485],[-130.27630276302762,54.33221928872558],[-130.25470254702546,54.311956361487006],[-130.26550265502655,54.27818481608935],[-130.2979029790298,54.25285615704112],[-130.33750337503375,54.25623331158087],[-130.34830348303484,54.26129904339052],[-130.34830348303484,54.2646761979303],[-130.3519035190352,54.26805335247005]]],[[[-130.75870758707586,54.36261367958349],[-130.76950769507695,54.38118802955219],[-130.75510755107553,54.39469664771124],[-130.73350733507334,54.40313953406067],[-130.71550715507155,54.41327099767997],[-130.70830708307082,54.40651668860045],[-130.70110701107012,54.41327099767997],[-130.69750697506976,54.409893843140196],[-130.69750697506976,54.404828111330545],[-130.6939069390694,54.399762379520894],[-130.68670686706866,54.399762379520894],[-130.69030690306903,54.39300807044137],[-130.69030690306903,54.38963091590162],[-130.6939069390694,54.38625376136184],[-130.69030690306903,54.36767941139314],[-130.71190711907118,54.35923652504371],[-130.74430744307443,54.35754794777384],[-130.75870758707586,54.36261367958349]]],[[[-130.4311043110431,54.78982372886381],[-130.43830438304383,54.79488946067346],[-130.44910449104492,54.806709501562636],[-130.45630456304562,54.82021811972169],[-130.45990459904598,54.832038160610864],[-130.42030420304204,54.850612510579595],[-130.25470254702546,54.970501496741264],[-130.20430204302042,55.02115881483775],[-130.18270182701826,55.03129027845702],[-130.16830168301684,55.016093083028096],[-130.15390153901538,54.99076442397984],[-130.15030150301504,54.96881291947136],[-130.15750157501574,54.948549992232785],[-130.1791017910179,54.92322133318453],[-130.189901899019,54.91477844683513],[-130.2151021510215,54.899581251406175],[-130.22590225902258,54.88944978778687],[-130.25830258302582,54.84385820150004],[-130.26910269102692,54.832038160610864],[-130.28350283502834,54.82528385153134],[-130.3231032310323,54.81177523337229],[-130.369903699037,54.78138084251438],[-130.39870398703988,54.769560801625204],[-130.40950409504094,54.76787222435533],[-130.4131041310413,54.77293795616498],[-130.4311043110431,54.78982372886381]]],[[[-131.8171181711817,55.41459731872041],[-131.69831698316983,55.34367707338532],[-131.6371163711637,55.29977406436839],[-131.63351633516334,55.26262536443096],[-131.6371163711637,55.27613398259001],[-131.6479164791648,55.28626544620931],[-131.65871658716588,55.29470833255874],[-131.66951669516695,55.296396909828616],[-131.67671676716768,55.291331178018964],[-131.66951669516695,55.255871055351435],[-131.68751687516874,55.23054239630318],[-131.71271712717126,55.23729670538273],[-131.73791737917378,55.25080532354178],[-131.7631176311763,55.24911674627191],[-131.73791737917378,55.21703377814413],[-131.719917199172,55.20352515998508],[-131.7019170191702,55.19508227363565],[-131.71271712717126,55.17819650093682],[-131.72711727117272,55.166376460047644],[-131.73431734317342,55.15624499642834],[-131.72351723517235,55.139359223729514],[-131.74151741517414,55.14273637826929],[-131.77031770317703,55.16806503731752],[-131.80631806318064,55.1815736554766],[-131.8171181711817,55.198459428175426],[-131.85311853118532,55.29977406436839],[-131.85311853118532,55.340299918845574],[-131.85671856718568,55.3571856915444],[-131.86751867518674,55.37238288697333],[-131.84951849518495,55.37407146424323],[-131.8459184591846,55.37238288697333],[-131.85311853118532,55.394334391481806],[-131.84951849518495,55.416285895990285],[-131.83871838718386,55.42641735960959],[-131.8171181711817,55.41459731872041]]],[[[-133.91953919539196,55.92117049968522],[-133.87633876338762,55.938056272384046],[-133.85473854738547,55.9431220041937],[-133.8331383313833,55.90090757244661],[-133.8439384393844,55.86713602704896],[-133.8727387273873,55.84687309981038],[-133.91233912339123,55.862070295239334],[-133.92313923139233,55.87389033612851],[-133.93033930339303,55.89415326336709],[-133.9339393393934,55.91272761333579],[-133.91953919539196,55.92117049968522]]],[[[-61.92961929619295,57.795491269255024],[-61.95841958419584,57.78873696017547],[-61.99081990819907,57.80393415560442],[-62.026820268202684,57.82419708284303],[-62.055620556205554,57.83263996919243],[-62.06642066420663,57.82926281465265],[-62.0880208802088,57.8157541964936],[-62.09162091620915,57.8157541964936],[-62.095220952209516,57.82926281465265],[-62.106021060210594,57.8343285464623],[-62.106021060210594,57.83939427827195],[-62.09162091620915,57.85290289643103],[-62.04122041220411,57.893428750908214],[-62.01242012420124,57.90862594633714],[-61.98361983619836,57.91538025541669],[-61.92961929619295,57.91538025541669],[-61.92241922419224,57.90862594633714],[-61.926019260192604,57.89680590544796],[-61.94041940419403,57.87485440093948],[-61.88641886418864,57.87485440093948],[-61.8720187201872,57.84783716462138],[-61.8720187201872,57.83939427827195],[-61.87921879218791,57.8258856601129],[-61.89001890018899,57.8157541964936],[-61.918819188191875,57.80393415560442],[-61.92961929619295,57.795491269255024]]],[[[-153.3021330213302,57.83263996919243],[-153.320133201332,57.8343285464623],[-153.32733327333273,57.836017123732205],[-153.33453334533345,57.83939427827195],[-153.3309333093331,57.841082855541856],[-153.32733327333273,57.844460010081605],[-153.32373323733236,57.84614858735148],[-153.31653316533166,57.84614858735148],[-153.32373323733236,57.857968628240684],[-153.34173341733418,57.86303436005031],[-153.38133381333813,57.85965720551056],[-153.3957339573396,57.86303436005031],[-153.52173521735216,57.920445987226344],[-153.54333543335434,57.93564318265527],[-153.5289352893529,57.9525289553541],[-153.50733507335073,57.969414728052925],[-153.4821348213482,57.97785761440235],[-153.46053460534606,57.969414728052925],[-153.43173431734317,57.964348996243274],[-153.32733327333273,57.92720029630587],[-153.28053280532805,57.903560214527516],[-153.26253262532626,57.88836301909856],[-153.230132301323,57.85459147370091],[-153.21213212132122,57.830951391922554],[-153.21213212132122,57.81237704195382],[-153.22293222932228,57.81237704195382],[-153.28053280532805,57.81913135103338],[-153.28413284132841,57.82081992830325],[-153.28773287732878,57.8258856601129],[-153.29133291332914,57.830951391922554],[-153.3021330213302,57.83263996919243]]],[[[-151.86571865718656,58.25816144120287],[-151.82611826118261,58.2649157502824],[-151.80811808118082,58.263227173012524],[-151.79371793717937,58.24465282304382],[-151.80451804518046,58.21256985491604],[-151.81531815318152,58.19568408221721],[-151.82971829718298,58.18217546405816],[-151.84771847718477,58.17542115497861],[-151.86931869318693,58.17373257770873],[-151.88731887318875,58.178798309518385],[-151.8981189811898,58.192306927677436],[-151.89091890918908,58.20750412310639],[-151.86571865718656,58.25816144120287]]],[[[-152.2509225092251,58.92177230826678],[-152.33372333723338,58.91164084464748],[-152.36252362523624,58.91501799918723],[-152.36252362523624,58.92177230826678],[-152.34092340923408,58.92514946280653],[-152.32652326523265,58.93528092642583],[-152.3229232292323,58.950478121854786],[-152.33012330123302,58.97074104909336],[-152.30852308523086,58.97074104909336],[-152.27252272522725,58.958921008204186],[-152.25452254522546,58.95723243093431],[-152.15732157321574,58.95723243093431],[-152.15732157321574,58.95216669912466],[-152.1609216092161,58.94878954458488],[-152.16452164521644,58.94372381277523],[-152.17532175321753,58.93865808096561],[-152.20052200522005,58.94372381277523],[-152.21132211322114,58.94372381277523],[-152.2221222212222,58.93865808096561],[-152.240122401224,58.92514946280653],[-152.2509225092251,58.92177230826678]]],[[[-150.33570335703357,59.45705130281959],[-150.30690306903068,59.46380561189912],[-150.29610296102962,59.46380561189912],[-150.29250292502925,59.45705130281959],[-150.30330303303032,59.448608416470165],[-150.30330303303032,59.43003406650146],[-150.3141031410314,59.42159118015206],[-150.32130321303214,59.42159118015206],[-150.3249032490325,59.426656911961686],[-150.32850328503284,59.43341122104124],[-150.3321033210332,59.43678837558099],[-150.33930339303393,59.435099798311114],[-150.350103501035,59.43003406650146],[-150.35370353703536,59.43003406650146],[-150.37890378903788,59.43172264377134],[-150.3861038610386,59.42834548923159],[-150.3969039690397,59.42159118015206],[-150.4149041490415,59.40639398472311],[-150.42570425704258,59.40132825291346],[-150.44370443704437,59.40301683018333],[-150.42210422104222,59.43678837558099],[-150.41130411304113,59.44691983920029],[-150.33570335703357,59.45705130281959]]],[[[-64.07884078840787,59.79983248860577],[-64.05724057240572,59.78463529317682],[-63.98523985239852,59.77112667501777],[-63.963639636396366,59.752552325049066],[-63.97443974439744,59.74579801596954],[-63.992439924399235,59.72722366600081],[-63.999639996399964,59.72384651146106],[-64.05364053640535,59.72384651146106],[-64.0680406804068,59.71878077965141],[-64.10764107641076,59.70358358422246],[-64.12564125641256,59.70020642968268],[-64.140041400414,59.70020642968268],[-64.16884168841688,59.71033789330198],[-64.15084150841508,59.720469356921285],[-64.140041400414,59.72384651146106],[-64.1580415804158,59.73060082054059],[-64.1760417604176,59.73060082054059],[-64.19044190441905,59.733977975080336],[-64.20484204842047,59.74410943869964],[-64.19764197641976,59.760995211398466],[-64.19044190441905,59.76774952047799],[-64.18324183241832,59.77281525228764],[-64.16884168841688,59.77281525228764],[-64.15444154441543,59.769438097747894],[-64.140041400414,59.76268378866834],[-64.12564125641256,59.75930663412859],[-64.13284132841328,59.76774952047799],[-64.13644136441364,59.77619240682742],[-64.14724147241472,59.782946715906945],[-64.15444154441543,59.78632387044672],[-64.12924129241291,59.84204692035283],[-64.1220412204122,59.85386696124203],[-64.10044100441004,59.86230984759143],[-64.07884078840787,59.86568700213121],[-64.06084060840608,59.86399842486131],[-64.04644046440464,59.85386696124203],[-64.050040500405,59.85048980670226],[-64.06084060840608,59.840358343082954],[-64.05364053640535,59.83022687946365],[-64.0320403204032,59.804898220415424],[-64.07884078840787,59.79983248860577]]],[[[-148.00648006480066,60.04636477000864],[-147.9920799207992,60.04467619273876],[-147.9920799207992,60.03961046092911],[-147.99567995679956,60.032856151849586],[-148.08208082080822,59.9720673701338],[-148.11448114481144,59.96024732924462],[-148.14328143281432,59.94673871108557],[-148.15768157681578,59.943361556545796],[-148.2440824408244,59.943361556545796],[-148.22968229682297,59.95011586562532],[-148.19728197281972,59.9534930201651],[-148.1828818288183,59.9636244837844],[-148.190081900819,59.9636244837844],[-148.20448204482045,59.9636244837844],[-148.21168211682118,59.9636244837844],[-148.20448204482045,59.96869021559405],[-148.20448204482045,59.9720673701338],[-148.2008820088201,59.97544452467358],[-148.190081900819,59.97713310194345],[-148.190081900819,59.98388741102298],[-148.19728197281972,59.98388741102298],[-148.21528215282152,59.98557598829288],[-148.22248222482224,59.98388741102298],[-148.22248222482224,59.99064172010253],[-148.20448204482045,59.99570745191215],[-148.18648186481863,59.992330297372405],[-148.1720817208172,59.98557598829288],[-148.15768157681578,59.9737559474037],[-148.14328143281432,59.9720673701338],[-148.10728107281074,59.992330297372405],[-148.07848078480785,60.000773183721805],[-148.03168031680318,60.02610184277006],[-148.02448024480245,60.03116757457971],[-148.02088020880208,60.03792188365924],[-148.01368013680136,60.04467619273876],[-148.00648006480066,60.04636477000864]]],[[[28.632886328863293,60.60190669180005],[28.600486004860045,60.576578032751826],[28.575285752857525,60.579955187291574],[28.560885608856097,60.59515238272053],[28.557285572855733,60.612038155419356],[28.560885608856097,60.62892392811818],[28.575285752857525,60.642432546277234],[28.58968589685898,60.64580970081701],[28.60408604086041,60.64580970081701],[28.618486184861865,60.639055391737486],[28.62208622086223,60.62892392811818],[28.62928629286293,60.61710388722901],[28.632886328863293,60.60190669180005]]],[[[-147.4988749887499,60.655941164436314],[-147.4880748807488,60.66100689624594],[-147.44847448474485,60.669449782595365],[-147.44847448474485,60.68126982348454],[-147.45567455674558,60.68802413256407],[-147.46647466474664,60.691401287103844],[-147.47727477274773,60.68971270983397],[-147.46647466474664,60.69815559618337],[-147.43047430474303,60.71166421434242],[-147.41967419674197,60.70659848253277],[-147.41247412474124,60.701532750723146],[-147.40527405274054,60.696467018913495],[-147.38367383673835,60.67282693713514],[-147.3728737287373,60.66438405078571],[-147.36567365673656,60.66607262805559],[-147.35127351273513,60.674515514405016],[-147.34047340473404,60.67958124621467],[-147.3260732607326,60.682958400754416],[-147.31167311673116,60.68464697802432],[-147.3260732607326,60.65762974170619],[-147.34047340473404,60.64580970081701],[-147.35847358473586,60.64412112354711],[-147.38727387273872,60.64918685535676],[-147.40167401674017,60.64918685535676],[-147.44847448474485,60.63736681446758],[-147.47727477274773,60.63567823719771],[-147.45927459274594,60.647498278086886],[-147.45567455674558,60.65425258716641],[-147.44847448474485,60.66269547351584],[-147.47367473674737,60.66100689624594],[-147.4988749887499,60.655941164436314]]],[[[-147.92727927279273,60.718418523421974],[-147.92367923679237,60.731927141581025],[-147.920079200792,60.74205860520033],[-147.90927909279094,60.745435759740076],[-147.88047880478805,60.731927141581025],[-147.8660786607866,60.72010710069185],[-147.85167851678517,60.70659848253277],[-147.8480784807848,60.69477844164359],[-147.8588785887859,60.68802413256407],[-147.92367923679237,60.68464697802432],[-147.92367923679237,60.68126982348454],[-147.92367923679237,60.674515514405016],[-147.92727927279273,60.66776120532549],[-147.93447934479343,60.66269547351584],[-147.94167941679416,60.66438405078571],[-147.96687966879668,60.67958124621467],[-148.01368013680136,60.7251728325015],[-147.99567995679956,60.731927141581025],[-147.97767977679777,60.7251728325015],[-147.96327963279634,60.71672994615207],[-147.9488794887949,60.71166421434242],[-147.96687966879668,60.7336157188509],[-147.97047970479704,60.74712433700998],[-147.95967959679598,60.75219006881963],[-147.9488794887949,60.74881291427985],[-147.94167941679416,60.740370027930425],[-147.9380793807938,60.72854998704125],[-147.92727927279273,60.718418523421974]]],[[[-109.21249212492124,67.7901801296907],[-109.11889118891189,67.8104430569293],[-109.07209072090721,67.8104430569293],[-109.03969039690396,67.7901801296907],[-109.04689046890469,67.7901801296907],[-109.05049050490504,67.78849155242082],[-109.0540905409054,67.78511439788105],[-109.0540905409054,67.78342582061117],[-109.13689136891368,67.76822862518222],[-109.180091800918,67.76991720245212],[-109.21249212492124,67.7901801296907]]],[[[-114.13734137341373,67.88811761134389],[-114.08694086940869,67.88305187953426],[-113.97533975339753,67.89149476588366],[-113.9249392493925,67.87967472499449],[-113.9681396813968,67.88136330226436],[-113.98973989739898,67.87967472499449],[-114.00774007740077,67.87292041591496],[-114.23814238142381,67.87967472499449],[-114.25254252542526,67.88136330226436],[-114.28134281342813,67.89149476588366],[-114.29574295742957,67.89318334315354],[-114.29574295742957,67.89993765223309],[-114.2561425614256,67.90669196131262],[-114.21654216542166,67.90669196131262],[-114.13734137341373,67.88811761134389]]],[[[-113.44613446134461,67.9269548885512],[-113.34173341733417,67.93877492944037],[-113.28413284132841,67.93877492944037],[-113.24813248132482,67.92020057947167],[-113.26973269732697,67.91175769312227],[-113.29493294932949,67.90669196131262],[-113.52893528935289,67.89487192042344],[-113.60453604536045,67.90669196131262],[-113.58293582935829,67.91344627039214],[-113.55773557735577,67.91682342493192],[-113.4209342093421,67.90669196131262],[-113.39933399333994,67.91344627039214],[-113.41013410134101,67.9185120022018],[-113.4209342093421,67.92020057947167],[-113.43533435334353,67.92020057947167],[-113.44613446134461,67.92020057947167],[-113.44613446134461,67.9269548885512]]],[[[-111.0881108811088,67.86616610683544],[-111.06651066510665,67.87967472499449],[-110.94770947709476,67.91344627039214],[-110.84330843308433,67.9556607021392],[-110.80730807308073,67.96072643394885],[-110.80730807308073,67.9573492794091],[-110.81090810908108,67.95397212486932],[-110.81450814508145,67.9472178157898],[-110.83250832508325,67.9370863521705],[-110.85770857708577,67.90331480677284],[-110.87930879308793,67.89318334315354],[-110.95130951309513,67.88642903407401],[-111.03051030510305,67.86278895229566],[-111.07371073710736,67.85603464321613],[-111.0881108811088,67.86616610683544]]],[[[-98.96678966789668,68.07048395649124],[-98.96678966789668,68.04177814290321],[-98.97038970389704,68.02826952474416],[-98.97398973989739,68.01644948385498],[-98.96318963189631,68.01476090658511],[-98.93078930789308,68.00294086569593],[-98.95238952389523,67.9843665157272],[-98.98118981189812,67.98267793845733],[-99.009990099901,67.99112082480676],[-99.03159031590316,68.00631802023568],[-99.03879038790387,68.01476090658511],[-99.0459904599046,68.02658094747429],[-99.05319053190532,68.03333525655381],[-99.07839078390784,68.05022102925264],[-99.0819908199082,68.05697533833217],[-99.05319053190532,68.05190960652251],[-98.9919899198992,68.07723826557077],[-98.96678966789668,68.07048395649124]]],[[[-109.85689856898568,68.159978551795],[-109.78489784897849,68.18024147903361],[-109.64449644496445,68.24271883801927],[-109.56889568895689,68.2494731470988],[-109.57609576095761,68.24271883801927],[-109.58329583295833,68.23596452893975],[-109.5940959409594,68.21907875624092],[-109.61929619296193,68.21739017897102],[-109.64089640896408,68.21907875624092],[-109.66249662496625,68.21401302443127],[-109.67329673296733,68.20219298354209],[-109.6768967689677,68.19206151992279],[-109.68049680496804,68.18361863357336],[-109.69849698496985,68.17348716995409],[-109.78129781297812,68.14309277909618],[-109.8280982809828,68.13802704728653],[-109.85689856898568,68.159978551795]]],[[[14.200342003420047,68.31532766062423],[14.239942399423995,68.31363908335433],[14.26874268742688,68.28324469249645],[14.24354243542436,68.25622745617832],[14.200342003420047,68.2494731470988],[14.164341643416435,68.26298176525785],[14.142741427414279,68.27311322887715],[14.139141391413915,68.28493326976633],[14.146341463414643,68.29506473338563],[14.106741067410695,68.29506473338563],[14.05994059940599,68.2967533106555],[14.041940419404199,68.31195050608446],[14.077940779407811,68.31532766062423],[14.067140671406719,68.33221343332306],[14.117541175411759,68.33727916513268],[14.146341463414643,68.33390201059294],[14.1679416794168,68.32208196970376],[14.200342003420047,68.31532766062423]]],[[[-100.090000900009,68.37273928780024],[-100.07920079200792,68.36260782418094],[-100.07920079200792,68.35416493783151],[-100.08640086400864,68.34741062875199],[-100.090000900009,68.33727916513268],[-100.090000900009,68.30013046519528],[-100.090000900009,68.28999900157598],[-100.12240122401224,68.2781789606868],[-100.1620016200162,68.2883104243061],[-100.2340023400234,68.32377054697363],[-100.20160201602016,68.32714770151341],[-100.15480154801547,68.33727916513268],[-100.12240122401224,68.35416493783151],[-100.11880118801187,68.37949359687977],[-100.11160111601116,68.38118217414964],[-100.10440104401044,68.37949359687977],[-100.09720097200972,68.37611644233999],[-100.090000900009,68.37273928780024]]],[[[-110.64530645306453,68.55003990113792],[-110.51930519305193,68.55003990113792],[-110.55170551705517,68.52808839662944],[-110.61290612906129,68.52302266481979],[-110.68130681306813,68.52639981935957],[-110.72450724507245,68.53653128297884],[-110.73890738907389,68.5432855920584],[-110.75330753307533,68.55510563294757],[-110.76050760507604,68.56692567383675],[-110.74970749707497,68.5703028283765],[-110.68850688506885,68.56692567383675],[-110.65610656106561,68.56861425110662],[-110.63090630906309,68.57874571472593],[-110.62370623706236,68.5703028283765],[-110.63090630906309,68.56354851929697],[-110.63450634506344,68.5618599420271],[-110.6381063810638,68.55848278748732],[-110.6381063810638,68.55679421021745],[-110.64530645306453,68.55679421021745],[-110.64530645306453,68.55003990113792]]],[[[-113.9681396813968,68.61251726012358],[-113.95373953739538,68.61758299193323],[-113.94293942939429,68.62096014647298],[-113.83493834938349,68.61420583739346],[-113.7629376293763,68.59732006469463],[-113.79533795337953,68.5821228692657],[-113.9681396813968,68.59732006469463],[-113.96093960939609,68.60576295104406],[-113.9681396813968,68.61251726012358]]],[[[-114.14454144541445,68.67330604183937],[-114.07254072540725,68.64460022825133],[-114.04734047340473,68.62771445555254],[-114.06894068940689,68.61927156920311],[-114.10854108541085,68.62771445555254],[-114.16254162541625,68.66992888729959],[-114.19134191341914,68.68174892818877],[-114.18054180541804,68.68681465999842],[-114.16614166141662,68.68681465999842],[-114.15534155341552,68.68174892818877],[-114.14454144541445,68.67330604183937]]],[[[-114.47574475744757,68.8928210869241],[-114.46134461344613,68.89788681873375],[-114.45054450544505,68.89957539600363],[-114.43974439744397,68.89957539600363],[-114.35334353343534,68.89450966419398],[-114.33174331743317,68.88606677784458],[-114.34974349743497,68.87255815968552],[-114.3821438214382,68.86918100514575],[-114.41814418144182,68.8742467369554],[-114.45054450544505,68.8826896233048],[-114.47574475744757,68.8928210869241]]],[[[55.370353703537035,68.94854413683024],[55.44235442354423,68.94010125048081],[55.48195481954821,68.92996978686153],[55.50715507155073,68.9130840141627],[55.36675366753667,68.92659263232176],[55.25875258752589,68.9130840141627],[55.22635226352264,68.9130840141627],[55.24075240752407,68.92659263232176],[55.2479524795248,68.92659263232176],[55.337953379533815,68.94685555956036],[55.370353703537035,68.94854413683024]]],[[[54.64314643146432,69.00933291854602],[54.66114661146614,69.00933291854602],[54.67914679146793,69.00595576400625],[54.69354693546936,68.99751287765685],[54.69714697146972,68.98231568222789],[54.68634686346866,68.96880706406884],[54.66474664746647,68.96036417771941],[54.63954639546395,68.95698702317964],[54.60354603546037,68.95529844590976],[54.58194581945821,68.95698702317964],[54.57114571145712,68.96374133225919],[54.58914589145891,68.97556137314837],[54.59634596345964,68.97556137314837],[54.617946179461796,68.99751287765685],[54.62874628746289,69.00595576400625],[54.64314643146432,69.00933291854602]]],[[[-102.12762127621276,69.71515821735699],[-102.12042120421204,69.67125520834003],[-102.160021600216,69.6543694356412],[-102.21042210422104,69.66112374472073],[-102.23562235622356,69.68476382649908],[-102.23562235622356,69.70502675373768],[-102.23562235622356,69.71853537189673],[-102.22482224822248,69.72528968097629],[-102.15642156421563,69.73542114459556],[-102.13842138421384,69.73204399005581],[-102.12762127621276,69.71515821735699]]],[[[-124.95904959049591,70.16769692568553],[-124.96984969849699,70.16600834841566],[-124.9770497704977,70.16094261660601],[-124.98784987849879,70.15587688479636],[-124.99144991449914,70.14743399844696],[-124.98784987849879,70.14743399844696],[-125.00945009450095,70.13561395755778],[-125.0670506705067,70.14743399844696],[-125.09585095850957,70.14067968936743],[-125.0490504905049,70.12717107120835],[-125.0670506705067,70.12041676212883],[-125.08505085050851,70.12041676212883],[-125.10665106651066,70.1221053393987],[-125.12465124651246,70.12717107120835],[-125.12105121051209,70.14405684390718],[-125.10665106651066,70.15756546206626],[-125.08505085050851,70.16431977114578],[-124.9770497704977,70.17107408022531],[-124.95904959049591,70.16769692568553]]],[[[-113.16533165331653,70.31291457089546],[-113.05733057330573,70.31122599362558],[-112.97812978129781,70.30109453000628],[-112.94572945729458,70.29096306638698],[-112.96012960129602,70.28589733457733],[-112.97812978129781,70.28420875730745],[-113.16173161731616,70.28420875730745],[-113.20853208532085,70.2977173754665],[-113.19413194131941,70.2977173754665],[-113.18333183331833,70.30278310727616],[-113.1761317613176,70.30953741635568],[-113.16533165331653,70.31291457089546]]],[[[-100.74160741607416,70.31291457089546],[-100.75240752407524,70.3078488390858],[-100.76320763207632,70.29940595273641],[-100.77040770407704,70.29265164365685],[-100.77760777607776,70.28420875730745],[-100.7740077400774,70.27407729368815],[-100.76680766807668,70.26732298460863],[-100.76320763207632,70.26225725279897],[-100.77040770407704,70.25719152098932],[-100.79560795607956,70.25550294371945],[-100.82440824408243,70.2690115618785],[-100.87120871208712,70.2977173754665],[-100.86040860408603,70.30109453000628],[-100.84960849608495,70.30616026181593],[-100.8460084600846,70.31460314816533],[-100.84960849608495,70.32473461178463],[-100.8280082800828,70.32980034359429],[-100.7920079200792,70.32811176632441],[-100.75960759607595,70.32304603451476],[-100.74160741607416,70.31291457089546]]],[[[-116.66456664566645,70.49696949331266],[-116.61056610566106,70.49359233877291],[-116.58536585365854,70.48514945242349],[-116.57096570965709,70.46995225699456],[-116.6069660696607,70.47839514334396],[-116.75456754567546,70.47839514334396],[-116.7869678696787,70.48346087515361],[-116.81576815768157,70.49359233877291],[-116.83016830168302,70.51047811147174],[-116.79056790567905,70.51047811147174],[-116.66456664566645,70.49696949331266]]],[[[-116.2649626496265,70.55100396594892],[-116.1569615696157,70.54931538867902],[-116.12456124561245,70.53749534778984],[-116.2289622896229,70.53749534778984],[-116.24696246962469,70.5341181932501],[-116.2829628296283,70.52060957509102],[-116.3009630096301,70.51723242055127],[-116.3549635496355,70.51892099782114],[-116.45216452164522,70.51216668874162],[-116.47736477364774,70.51385526601149],[-116.49536495364953,70.52398672963079],[-116.47016470164701,70.53749534778984],[-116.44496444964449,70.5425610795995],[-116.41256412564125,70.5425610795995],[-116.38376383763838,70.5341181932501],[-116.35136351363514,70.5341181932501],[-116.29736297362973,70.55438112048867],[-116.2649626496265,70.55100396594892]]],[[[-116.72216722167221,70.55775827502845],[-116.6789667896679,70.56788973864775],[-116.61056610566106,70.5712668931875],[-116.5421654216542,70.56620116137785],[-116.50976509765098,70.55100396594892],[-116.5421654216542,70.5442496568694],[-116.74376743767436,70.5425610795995],[-116.77616776167761,70.55100396594892],[-116.75096750967509,70.55775827502845],[-116.73656736567366,70.55944685229832],[-116.72216722167221,70.55775827502845]]],[[[-115.8869588695887,70.5813983568068],[-115.86535865358654,70.58477551134658],[-115.83655836558366,70.5813983568068],[-115.8149581495815,70.5729554704574],[-115.82575825758258,70.56113542956822],[-115.87975879758797,70.54593823413927],[-115.9409594095941,70.5425610795995],[-116.06336063360634,70.55100396594892],[-116.00576005760058,70.55944685229832],[-115.98775987759878,70.56620116137785],[-115.90855908559085,70.57464404772728],[-115.8869588695887,70.5813983568068]]],[[[-117.0569705697057,70.5712668931875],[-116.91656916569166,70.56620116137785],[-116.88056880568806,70.55100396594892],[-116.90936909369094,70.5425610795995],[-117.0029700297003,70.55100396594892],[-117.22257222572225,70.5425610795995],[-117.27657276572765,70.55100396594892],[-117.30537305373053,70.5712668931875],[-117.24057240572405,70.59321839769598],[-117.21537215372153,70.59321839769598],[-117.0569705697057,70.5712668931875]]],[[[-125.9490594905949,71.96265456357085],[-125.96705967059671,71.96603171811063],[-125.98865988659887,71.97109744992028],[-125.99585995859958,71.9778517589998],[-125.98145981459814,71.98291749080946],[-125.96345963459635,71.98291749080946],[-125.90945909459094,71.96434314084073],[-125.9490594905949,71.96265456357085]]],[[[-110.50850508505084,72.59418246250698],[-110.49410494104941,72.5924938852371],[-110.48690486904869,72.58911673069733],[-110.47610476104761,72.5823624216178],[-110.47250472504724,72.5739195352684],[-110.54090540905409,72.5722309579985],[-110.57690576905769,72.57898526707802],[-110.5949059490595,72.6009367715865],[-110.55170551705517,72.6026253488564],[-110.52650526505265,72.6009367715865],[-110.50850508505084,72.59418246250698]]],[[[-110.39690396903968,72.62119969882511],[-110.38250382503824,72.62119969882511],[-110.36810368103681,72.62119969882511],[-110.35730357303572,72.61613396701546],[-110.35010350103501,72.60769108066603],[-110.49410494104941,72.62119969882511],[-110.4689046890469,72.62457685336486],[-110.39690396903968,72.62119969882511]]],[[[-110.31410314103141,72.65497124422276],[-110.27810278102781,72.64821693514324],[-110.30330303303033,72.63301973971429],[-110.33930339303393,72.63133116244441],[-110.41130411304113,72.64146262606369],[-110.38970389703897,72.64821693514324],[-110.36450364503645,72.65328266695286],[-110.31410314103141,72.65497124422276]]],[[[-45.05265052650526,-60.70379579930312],[-45.07785077850778,-60.686910026604295],[-45.08505085050851,-60.68522144933442],[-45.07425074250742,-60.671712831175356],[-45.07065070650705,-60.65989279028618],[-45.06705067050669,-60.631186976698174],[-45.06345063450635,-60.63625270850782],[-45.031050310503105,-60.656515635746416],[-45.02745027450274,-60.66158136755606],[-45.02745027450274,-60.671712831175356],[-45.02745027450274,-60.68184429479465],[-45.02025020250201,-60.690287181144065],[-45.01665016650165,-60.693664335683835],[-45.005850058500585,-60.69873006749348],[-44.998649986499856,-60.70041864476336],[-45.00945009450095,-60.708861531112774],[-45.023850238502376,-60.71055010838266],[-45.04185041850417,-60.70717295384289],[-45.05265052650526,-60.70379579930312]]],[[[-105.46125461254613,-26.46451449789165],[-105.4720547205472,-26.457760188812117],[-105.46485464854648,-26.456071611542235],[-105.46485464854648,-26.457760188812117],[-105.46125461254613,-26.461137343351886],[-105.46125461254613,-26.46451449789165]]],[[[-79.9009990099901,-26.348002666269743],[-79.89019890198901,-26.351379820809505],[-79.89019890198901,-26.356445552619157],[-79.89739897398974,-26.358134129889038],[-79.90819908199082,-26.358134129889038],[-79.9009990099901,-26.348002666269743]]],[[[-80.09540095400953,-26.265262380045492],[-80.09540095400953,-26.268639534585255],[-80.09180091800917,-26.268639534585255],[-80.09180091800917,-26.272016689125017],[-80.09180091800917,-26.273705266394906],[-80.0990009900099,-26.275393843664787],[-80.10620106201061,-26.275393843664787],[-80.09540095400953,-26.265262380045492]]],[[[-130.12150121501213,-25.06806109569866],[-130.11070110701107,-25.06468394115889],[-130.09990099901,-25.06468394115889],[-130.09270092700928,-25.06806109569866],[-130.08550085500855,-25.074815404778185],[-130.09630096300964,-25.076503982048067],[-130.1071010710107,-25.076503982048067],[-130.11430114301143,-25.073126827508304],[-130.12150121501213,-25.06806109569866]]],[[[-124.78624786247863,-24.664491128196694],[-124.7970479704797,-24.667868282736457],[-124.78624786247863,-24.664491128196694],[-124.7790477904779,-24.664491128196694],[-124.7790477904779,-24.667868282736457],[-124.7790477904779,-24.672934014546108],[-124.7790477904779,-24.669556860006338],[-124.7790477904779,-24.666179705466575],[-124.78624786247863,-24.664491128196694]]],[[[-136.16596165961658,-22.023556278100152],[-136.17676176761768,-22.030310587179684],[-136.18756187561877,-22.033687741719447],[-136.16236162361622,-22.013424814480857],[-136.16236162361622,-22.01680196902062],[-136.16596165961658,-22.023556278100152]]],[[[-136.37836378363784,-21.468014356308743],[-136.38556385563857,-21.4629486244991],[-136.39636396363963,-21.4629486244991],[-136.40356403564036,-21.46463720176898],[-136.41436414364142,-21.471391510848505],[-136.40356403564036,-21.45957146995933],[-136.39276392763927,-21.456194315419566],[-136.37836378363784,-21.45957146995933],[-136.37836378363784,-21.468014356308743]]],[[[-136.5511655116551,-21.33630532925789],[-136.53316533165332,-21.331239597448246],[-136.5259652596526,-21.337993906527778],[-136.52956529565296,-21.349813947416955],[-136.5439654396544,-21.35994541103625],[-136.53316533165332,-21.348125370147073],[-136.5367653676537,-21.343059638337422],[-136.5439654396544,-21.337993906527778],[-136.5511655116551,-21.33630532925789]]],[[[-136.63756637566377,-21.34137106106754],[-136.64836648366483,-21.327862442908476],[-136.6519665196652,-21.32279671109883],[-136.64476644766447,-21.32279671109883],[-136.64116641166413,-21.326173865638594],[-136.63756637566377,-21.332928174718127],[-136.63756637566377,-21.34137106106754]]],[[[-136.73476734767348,-21.312665247479536],[-136.73836738367385,-21.309288092939767],[-136.7419674196742,-21.304222361130122],[-136.74556745567455,-21.304222361130122],[-136.75276752767527,-21.309288092939767],[-136.74556745567455,-21.29915662932047],[-136.73836738367385,-21.29915662932047],[-136.73116731167312,-21.305910938400004],[-136.72756727567275,-21.31773097928918],[-136.73116731167312,-21.31773097928918],[-136.73116731167312,-21.3160424020193],[-136.73116731167312,-21.314353824749418],[-136.73476734767348,-21.312665247479536]]],[[[-29.338493384933855,-20.584888444160086],[-29.34929349293492,-20.561248362381733],[-29.345693456934555,-20.551116898762444],[-29.331293312933127,-20.55280547603232],[-29.31689316893167,-20.568002671461258],[-29.3240932409324,-20.571379826001035],[-29.327693276932763,-20.574756980540798],[-29.331293312933127,-20.57982271235045],[-29.338493384933855,-20.584888444160086]]],[[[-28.884888848888494,-20.519033930634663],[-28.88128881288813,-20.5156567760949],[-28.88128881288813,-20.512279621555138],[-28.88128881288813,-20.51059104428525],[-28.877688776887766,-20.512279621555138],[-28.877688776887766,-20.51396819882501],[-28.877688776887766,-20.5156567760949],[-28.88128881288813,-20.51734535336479],[-28.884888848888494,-20.519033930634663]]],[[[-140.4140041400414,-19.61395651397754],[-140.40680406804069,-19.61057935943778],[-140.3960039600396,-19.61564509124743],[-140.38160381603817,-19.625776554866718],[-140.3780037800378,-19.63590801848602],[-140.3780037800378,-19.64941663664507],[-140.38880388803886,-19.65617094572461],[-140.39960399603996,-19.661236677534262],[-140.4140041400414,-19.664613832074025],[-140.3960039600396,-19.65110521391496],[-140.38520385203853,-19.640973750295657],[-140.38880388803886,-19.62915370940648],[-140.4140041400414,-19.61395651397754]]],[[[-139.20079200792009,-19.350538459875835],[-139.20439204392045,-19.345472728066184],[-139.20439204392045,-19.34209557352642],[-139.2079920799208,-19.337029841716785],[-139.2151921519215,-19.335341264446896],[-139.20439204392045,-19.335341264446896],[-139.19719197191972,-19.340406996256547],[-139.19719197191972,-19.350538459875835],[-139.20439204392045,-19.35898134622525],[-139.20079200792009,-19.350538459875835]]],[[[-138.79758797587976,-19.289749678160064],[-138.8047880478805,-19.288061100890175],[-138.80838808388083,-19.288061100890175],[-138.8119881198812,-19.28299536908054],[-138.80118801188013,-19.28130679181065],[-138.7939879398794,-19.28130679181065],[-138.79038790387904,-19.284683946350412],[-138.79758797587976,-19.289749678160064]]],[[[-141.26721267212673,-19.20363223739605],[-141.25281252812528,-19.190123619236985],[-141.23841238412385,-19.193500773776748],[-141.22761227612276,-19.208697969205687],[-141.23121231212312,-19.227272319174403],[-141.23481234812348,-19.212075123745464],[-141.24201242012418,-19.20194366012616],[-141.25641256412564,-19.1985665055864],[-141.26721267212673,-19.20363223739605]]],[[[-140.72360723607235,-19.13440056933085],[-140.69480694806947,-19.11920337390191],[-140.66960669606695,-19.131023414791088],[-140.66240662406625,-19.152974919299567],[-140.68760687606874,-19.16141780564898],[-140.66960669606695,-19.142843455680264],[-140.68040680406804,-19.132711992060976],[-140.70560705607056,-19.1293348375212],[-140.72360723607235,-19.13440056933085]]],[[[-138.80118801188013,-18.76460214722654],[-138.7939879398794,-18.77135645630608],[-138.7939879398794,-18.774733610845843],[-138.7939879398794,-18.778110765385605],[-138.82998829988298,-18.75953641541689],[-138.82278822788228,-18.75953641541689],[-138.81558815588156,-18.761224992686778],[-138.80118801188013,-18.76460214722654]]],[[[-143.09243092430924,-17.85277042148988],[-143.08163081630818,-17.83757322606094],[-143.07083070830708,-17.840950380600702],[-143.060030600306,-17.866279039648944],[-143.060030600306,-17.867967616918833],[-143.06363063630636,-17.86290188510918],[-143.07083070830708,-17.854458998759767],[-143.07443074430745,-17.844327535140465],[-143.0780307803078,-17.85277042148988],[-143.08163081630818,-17.85783615329953],[-143.08883088830888,-17.85783615329953],[-143.09243092430924,-17.85277042148988]]],[[[-150.6561065610656,-17.668715499072675],[-150.64170641706417,-17.65520688091361],[-150.64170641706417,-17.665338344532913],[-150.64530645306453,-17.67715838542209],[-150.6561065610656,-17.668715499072675]]],[[[-141.440014400144,-17.36814874503355],[-141.44361443614434,-17.359705858684137],[-141.45441454414544,-17.35295154960461],[-141.4688146881469,-17.349574395064835],[-141.48321483214832,-17.34788581779496],[-141.46161461614616,-17.344508663255198],[-141.44361443614434,-17.351262972334723],[-141.43641436414364,-17.36814874503355],[-141.43641436414364,-17.371525899573314],[-141.43641436414364,-17.38334594046249],[-141.43641436414364,-17.39010024954203],[-141.43641436414364,-17.38503451773238],[-141.43641436414364,-17.38334594046249],[-141.440014400144,-17.36814874503355]]],[[[-138.44118441184412,-17.366460167763663],[-138.46278462784628,-17.366460167763663],[-138.46278462784628,-17.359705858684137],[-138.46278462784628,-17.356328704144374],[-138.4591845918459,-17.349574395064835],[-138.44838448384485,-17.33268862236602],[-138.42678426784266,-17.324245736016607],[-138.45558455584555,-17.349574395064835],[-138.4591845918459,-17.356328704144374],[-138.4591845918459,-17.35801728141425],[-138.4519845198452,-17.359705858684137],[-138.44838448384485,-17.361394435954026],[-138.44118441184412,-17.366460167763663]]],[[[42.752227522275234,-17.07602487734384],[42.72342723427235,-17.064204836454664],[42.73782737827378,-17.05745052737514],[42.75942759427596,-17.0608276819149],[42.752227522275234,-17.07602487734384]]],[[[-143.0852308523085,-17.005104632008766],[-143.09243092430924,-16.99835032292924],[-143.0960309603096,-16.99497316838948],[-143.09963099630997,-16.989907436579827],[-143.08883088830888,-16.989907436579827],[-143.0780307803078,-16.99328459111959],[-143.07083070830708,-17.00003890019913],[-143.06363063630636,-17.008481786548543],[-143.06723067230672,-17.010170363818418],[-143.07443074430745,-17.010170363818418],[-143.0780307803078,-17.006793209278655],[-143.0852308523085,-17.005104632008766]]],[[[-149.58329583295833,-16.986530282040064],[-149.5760957609576,-16.9831531275003],[-149.57249572495726,-16.9831531275003],[-149.5688956889569,-16.981464550230413],[-149.57249572495726,-16.98821885930994],[-149.5868958689587,-17.00003890019913],[-149.5868958689587,-16.996661745659353],[-149.5868958689587,-16.99328459111959],[-149.58329583295833,-16.986530282040064]]],[[[-153.93573935739357,-16.797409627813195],[-153.92853928539284,-16.807541091432498],[-153.92133921339214,-16.821049709591563],[-153.92133921339214,-16.83118117321085],[-153.92493924939248,-16.83118117321085],[-153.9321393213932,-16.819361132321674],[-153.9429394293943,-16.787278164193907],[-153.95013950139503,-16.773769546034842],[-153.9429394293943,-16.773769546034842],[-153.93933939339394,-16.778835277844493],[-153.93573935739357,-16.787278164193907],[-153.93573935739357,-16.797409627813195]]],[[[-144.20124201242012,-16.64881482806352],[-144.19764197641976,-16.642060518983996],[-144.1868418684187,-16.64543767352376],[-144.1760417604176,-16.655569137143047],[-144.16884168841688,-16.667389178032238],[-144.17964179641797,-16.66401202349246],[-144.1868418684187,-16.658946291682824],[-144.20124201242012,-16.64881482806352]]],[[[-152.24372243722436,-16.444496978407713],[-152.25452254522546,-16.451251287487253],[-152.26532265322652,-16.447874132947476],[-152.26172261722616,-16.44111982386795],[-152.24372243722436,-16.444496978407713]]],[[[-145.90045900459006,-15.888955056616311],[-145.9508595085951,-15.839986315789716],[-145.9148591485915,-15.86362639756807],[-145.8968589685897,-15.878823592997009],[-145.90045900459006,-15.888955056616311]]],[[[-140.8892088920889,-15.819723388551111],[-140.86040860408605,-15.816346234011348],[-140.85320853208532,-15.816346234011348],[-140.86040860408605,-15.819723388551111],[-140.87840878408784,-15.838297738519827],[-140.8892088920889,-15.836609161249939],[-140.89640896408963,-15.833232006710176],[-140.89640896408963,-15.82647769763065],[-140.8892088920889,-15.819723388551111]]],[[[-148.25128251282513,-15.867003552107832],[-148.27288272882728,-15.853494933948767],[-148.280082800828,-15.829854852170413],[-148.27648276482765,-15.809591924931823],[-148.26208262082622,-15.802837615852283],[-148.25848258482586,-15.807903347661934],[-148.24768247682476,-15.831543429440302],[-148.24048240482404,-15.839986315789716],[-148.22968229682297,-15.848429202139116],[-148.22968229682297,-15.85687208848853],[-148.24048240482404,-15.86362639756807],[-148.25128251282513,-15.867003552107832]]],[[[-146.48726487264872,-15.802837615852283],[-146.48366483664836,-15.814657656741474],[-146.480064800648,-15.821411965821],[-146.48366483664836,-15.82647769763065],[-146.4908649086491,-15.807903347661934],[-146.49446494464945,-15.79946046131252],[-146.50166501665018,-15.791017574963107],[-146.49806498064981,-15.79439472950287],[-146.48726487264872,-15.802837615852283]]],[[[-154.52254522545226,-15.819723388551111],[-154.5189451894519,-15.807903347661934],[-154.52254522545226,-15.801149038582409],[-154.5261452614526,-15.79439472950287],[-154.5369453694537,-15.792706152232995],[-154.5261452614526,-15.789328997693232],[-154.5189451894519,-15.796083306772758],[-154.5189451894519,-15.80621477039206],[-154.51534515345153,-15.818034811281237],[-154.5189451894519,-15.823100543090888],[-154.5261452614526,-15.828166274900525],[-154.52974529745296,-15.82647769763065],[-154.52254522545226,-15.819723388551111]]],[[[-144.65124651246512,-15.730228793247335],[-144.63324633246333,-15.728540215977446],[-144.62244622446224,-15.735294525056986],[-144.61884618846187,-15.747114565946163],[-144.62964629646297,-15.755557452295577],[-144.64044640446406,-15.755557452295577],[-144.64764647646476,-15.748803143216037],[-144.65124651246512,-15.740360256866623],[-144.65124651246512,-15.730228793247335]]],[[[-145.45765457654576,-15.480319357304694],[-145.44325443254434,-15.480319357304694],[-145.4360543605436,-15.483696511844457],[-145.43245432454324,-15.488762243654108],[-145.43965439654397,-15.495516552733633],[-145.45765457654576,-15.482007934574582],[-145.52245522455223,-15.470187893685392],[-145.55125551255512,-15.45161354371669],[-145.48285482854828,-15.475253625495043],[-145.45765457654576,-15.480319357304694]]],[[[-146.19566195661957,-15.358741793873136],[-146.2028620286203,-15.38913618473103],[-146.19926199261994,-15.370561834762313],[-146.19566195661957,-15.34692175298396],[-146.19926199261994,-15.338478866634546],[-146.2028620286203,-15.33172455755502],[-146.20646206462064,-15.328347403015258],[-146.21726217262173,-15.323281671205606],[-146.21366213662137,-15.323281671205606],[-146.20646206462064,-15.328347403015258],[-146.19926199261994,-15.330035980285132],[-146.19566195661957,-15.335101712094783],[-146.1920619206192,-15.34692175298396],[-146.19566195661957,-15.358741793873136]]],[[[-146.62046620466205,-15.240541384981356],[-146.63846638466384,-15.232098498631942],[-146.62406624066242,-15.235475653171704],[-146.61326613266132,-15.243918539521118],[-146.60246602466026,-15.257427157680183],[-146.5988659886599,-15.270935775839234],[-146.60966609666096,-15.255738580410295],[-146.62046620466205,-15.240541384981356]]],[[[-147.25767257672578,-15.232098498631942],[-147.24327243272432,-15.232098498631942],[-147.23967239672396,-15.235475653171704],[-147.2360723607236,-15.243918539521118],[-147.24327243272432,-15.238852807711467],[-147.2468724687247,-15.237164230441579],[-147.25047250472505,-15.235475653171704],[-147.25767257672578,-15.232098498631942]]],[[[-147.77967779677797,-15.216901303202988],[-147.77247772477725,-15.213524148663225],[-147.76167761677618,-15.218589880472877],[-147.7508775087751,-15.228721344092179],[-147.73647736477363,-15.235475653171704],[-147.77967779677797,-15.216901303202988]]],[[[-147.45927459274594,-15.120652398819686],[-147.51327513275132,-15.080126544342491],[-147.5312753127531,-15.068306503453314],[-147.50967509675098,-15.078437967072617],[-147.49167491674916,-15.090258007961793],[-147.45927459274594,-15.120652398819686]]],[[[-147.9308793087931,-15.080126544342491],[-147.93447934479343,-15.076749389802728],[-147.9380793807938,-15.073372235262966],[-147.9380793807938,-15.071683657993077],[-147.9380793807938,-15.066617926183426],[-147.9308793087931,-15.080126544342491]]],[[[-145.9220592205922,-14.433401449977424],[-145.93285932859328,-14.438467181787075],[-145.94365943659437,-14.441844336326838],[-145.95445954459544,-14.443532913596712],[-145.96525965259653,-14.443532913596712],[-145.93285932859328,-14.436778604517187],[-145.9220592205922,-14.433401449977424]]],[[[-141.17361173611735,-14.190246323114309],[-141.18081180811808,-14.197000632193848],[-141.1880118801188,-14.190246323114309],[-141.21321213212133,-14.164917664066067],[-141.20241202412024,-14.169983395875718],[-141.17361173611735,-14.190246323114309]]],[[[46.51066510665106,-9.720582289734807],[46.507065070650725,-9.732402330623984],[46.49986499865,-9.745910948783049],[46.489064890648905,-9.756042412402351],[46.47826478264784,-9.7509766805927],[46.47826478264784,-9.740845216973398],[46.48546485464854,-9.73071375335411],[46.49986499865,-9.722270867004696],[46.51066510665106,-9.720582289734807]]],[[[47.5078750787508,-9.713827980655282],[47.5078750787508,-9.698630785226328],[47.511475114751164,-9.695253630686565],[47.51507515075153,-9.700319362496217],[47.5078750787508,-9.713827980655282]]],[[[53.33273332733327,-5.41977598334357],[53.339933399334,-5.429907446962872],[53.343533435334365,-5.434973178772523],[53.343533435334365,-5.441727487852049],[53.339933399334,-5.4366617560423975],[53.33633336333364,-5.4315960242327606],[53.33273332733327,-5.41977598334357]]],[[[55.65835658356585,-3.7902989179067674],[55.665556655566576,-3.8122504224152465],[55.65835658356585,-3.8122504224152465],[55.65115651156512,-3.80043038152607],[55.65835658356585,-3.7902989179067674]]],[[[168.10188101881022,5.599879279910908],[168.10548105481058,5.5965021253711456],[168.11628116281162,5.594813548101271],[168.11988119881198,5.598190702641034],[168.1270812708127,5.6049450117205595],[168.1270812708127,5.615076475339862],[168.1270812708127,5.623519361689276],[168.12348123481235,5.630273670768801],[168.13068130681307,5.618453629879625],[168.1270812708127,5.601567857180797],[168.11628116281162,5.591436393561494],[168.10188101881022,5.599879279910908]]],[[[171.72351723517238,6.101386729066078],[171.72711727117274,6.098009574526316],[171.7307173071731,6.0929438427166644],[171.74151741517414,6.082812379097362],[171.7451174511745,6.079435224557599],[171.73791737917378,6.079435224557599],[171.72711727117274,6.079435224557599],[171.72351723517238,6.082812379097362],[171.71991719917202,6.091255265446776],[171.72351723517238,6.101386729066078]]],[[[171.91071910719108,7.099335895566753],[171.9179191791918,7.104401627376404],[171.92151921519218,7.11115593645593],[171.92151921519218,7.117910245535455],[171.91431914319145,7.124664554614995],[171.9287192871929,7.117910245535455],[171.92511925119254,7.104401627376404],[171.91071910719108,7.0925815864872135],[171.89271892718926,7.090893009217339],[171.89631896318963,7.094270163757102],[171.89991899919,7.09595874102699],[171.91071910719108,7.099335895566753]]],[[[-82.36342363423634,8.087153598448126],[-82.35982359823598,8.098973639337302],[-82.35262352623526,8.112482257496367],[-82.34182341823418,8.12261372111567],[-82.33102331023309,8.129368030195195],[-82.32022320223201,8.131056607465084],[-82.31662316623166,8.124302298385544],[-82.32022320223201,8.112482257496367],[-82.31662316623166,8.10066221660719],[-82.33822338223382,8.092219330257777],[-82.3490234902349,8.088842175718014],[-82.36342363423634,8.087153598448126]]],[[[-79.08379083790838,8.382654620677599],[-79.09459094590946,8.377588888867948],[-79.11259112591125,8.391097507027013],[-79.13059130591306,8.404606125186078],[-79.11979119791198,8.42993478423432],[-79.10539105391054,8.418114743345143],[-79.09459094590946,8.406294702455966],[-79.0909909099091,8.409671856995729],[-79.08739087390873,8.419803320615017],[-79.08379083790838,8.416426166075254],[-79.08739087390873,8.40291754791619],[-79.08019080190802,8.397851816106552],[-79.08019080190802,8.391097507027013],[-79.08379083790838,8.382654620677599]]],[[[97.87237872378722,9.3789152099084],[97.839978399784,9.404243868956641],[97.83637836378364,9.412686755306055],[97.83637836378364,9.41944106438558],[97.84357843578437,9.424506796195232],[97.8507785077851,9.427883950734994],[97.85797857978582,9.427883950734994],[97.86877868778691,9.421129641655469],[97.87597875978759,9.405932446226515],[97.87597875978759,9.390735250797576],[97.87237872378722,9.3789152099084]]],[[[99.69759697596976,9.542707205087012],[99.70479704797049,9.520755700578547],[99.6831968319683,9.512312814229134],[99.6687966879669,9.519067123308659],[99.69759697596976,9.542707205087012]]],[[[99.6831968319683,9.620381759501626],[99.679596795968,9.611938873152212],[99.679596795968,9.610250295882324],[99.67599675996763,9.615316027691975],[99.67599675996763,9.623758914041389],[99.679596795968,9.623758914041389],[99.679596795968,9.6220703367715],[99.6831968319683,9.620381759501626]]],[[[98.05598055980562,9.797682372839304],[98.0379803798038,9.790928063759779],[98.01998019980203,9.794305218299542],[98.00918009180094,9.807813836458607],[98.01638016380167,9.826388186427309],[98.03078030780307,9.833142495506834],[98.04518045180453,9.828076763697197],[98.05598055980562,9.814568145538132],[98.05598055980562,9.797682372839304]]],[[[73.64773647736479,10.084740508719364],[73.64413644136442,10.07629762236995],[73.64053640536406,10.069543313290424],[73.6369363693637,10.062789004210885],[73.63333633336333,10.057723272401233],[73.63333633336333,10.067854736020536],[73.63333633336333,10.077986199639838],[73.6369363693637,10.086429085989252],[73.64413644136442,10.094871972338652],[73.64413644136442,10.091494817798889],[73.64773647736479,10.084740508719364]]],[[[-85.13185131851318,10.098249126878429],[-85.1210512105121,10.09656054960854],[-85.11745117451174,10.091494817798889],[-85.10665106651066,10.089806240529015],[-85.09585095850959,10.089806240529015],[-85.09585095850959,10.083051931449475],[-85.11025110251101,10.079674776909712],[-85.12465124651246,10.07629762236995],[-85.14265142651426,10.074609045100061],[-85.1570515705157,10.07629762236995],[-85.1750517505175,10.083051931449475],[-85.18585185851857,10.093183395068777],[-85.20025200252002,10.11851205411702],[-85.17865178651786,10.12357778592667],[-85.17145171451715,10.125266363196545],[-85.1390513905139,10.11851205411702],[-85.11025110251101,10.110069167767605],[-85.11025110251101,10.103314858688066],[-85.14625146251463,10.103314858688066],[-85.13545135451353,10.098249126878429],[-85.13185131851318,10.098249126878429]]],[[[73.66213662136622,10.143840713165261],[73.65853658536585,10.142152135895373],[73.65853658536585,10.140463558625498],[73.65853658536585,10.13877498135561],[73.65493654936552,10.142152135895373],[73.65493654936552,10.145529290435135],[73.65853658536585,10.145529290435135],[73.65853658536585,10.143840713165261],[73.66213662136622,10.143840713165261]]],[[[98.22878228782287,10.520393444349097],[98.2215822158222,10.498441939840617],[98.20718207182074,10.483244744411678],[98.19278192781928,10.483244744411678],[98.18558185581855,10.501819094380394],[98.18918189181892,10.515327712539445],[98.20358203582038,10.52377059888886],[98.21798217982183,10.52883633069851],[98.23238232382323,10.52883633069851],[98.23238232382323,10.527147753428636],[98.22878228782287,10.522082021618985],[98.22878228782287,10.520393444349097]]],[[[72.65052650526505,10.567673607905817],[72.63972639726398,10.559230721556403],[72.63252632526326,10.55585356701664],[72.62892628926289,10.554164989746752],[72.63252632526326,10.559230721556403],[72.64692646926471,10.574427916985343],[72.65052650526505,10.572739339715469],[72.65052650526505,10.57105076244558],[72.65052650526505,10.569362185175692],[72.65052650526505,10.567673607905817]]],[[[72.54972549725497,10.778745766641151],[72.54252542525427,10.7736800348315],[72.54252542525427,10.777057189371263],[72.54612546125463,10.778745766641151],[72.54972549725497,10.778745766641151]]],[[[73.67293672936731,10.829403084737635],[73.68013680136804,10.827714507467746],[73.68373683736837,10.827714507467746],[73.67653676536767,10.824337352927984],[73.67293672936731,10.824337352927984],[73.67293672936731,10.827714507467746],[73.67293672936731,10.829403084737635]]],[[[98.43038430384303,10.977997884487309],[98.43398433984339,10.993195079916248],[98.44118441184412,11.00332654353555],[98.45198451984521,11.001637966265662],[98.45198451984521,10.986440770836722],[98.44838448384485,10.974620729947546],[98.44118441184412,10.966177843598132],[98.43398433984339,10.964489266328243],[98.43038430384303,10.977997884487309]]],[[[72.75132751327513,11.119838375157457],[72.7477274772748,11.114772643347806],[72.7477274772748,11.111395488808043],[72.74412744127443,11.109706911538154],[72.74052740527407,11.10801833426828],[72.74052740527407,11.114772643347806],[72.74052740527407,11.116461220617694],[72.74412744127443,11.116461220617694],[72.75132751327513,11.119838375157457]]],[[[73.01413014130142,11.501456838150943],[73.01053010530106,11.489636797261767],[73.01053010530106,11.484571065452116],[73.0069300693007,11.479505333642464],[73.00333003330033,11.489636797261767],[73.00333003330033,11.496391106341292],[73.0069300693007,11.501456838150943],[73.01413014130142,11.501456838150943]]],[[[72.71532715327155,11.693954646917575],[72.70812708127082,11.688888915107924],[72.70452704527045,11.68720033783805],[72.70092700927009,11.68720033783805],[72.70452704527045,11.692266069647687],[72.70812708127082,11.693954646917575],[72.71532715327155,11.693954646917575]]],[[[97.4655746557466,11.781760664951477],[97.45837458374587,11.786826396761128],[97.44397443974441,11.80033501492018],[97.46197461974623,11.80033501492018],[97.47637476374763,11.788514974031003],[97.47997479974799,11.778383510411714],[97.4655746557466,11.781760664951477]]],[[[-66.60966609666096,11.783449242221351],[-66.59166591665917,11.781760664951477],[-66.5880658806588,11.783449242221351],[-66.60606606066061,11.766563469522524],[-66.64206642066421,11.761497737712887],[-66.6780667806678,11.766563469522524],[-66.70326703267033,11.783449242221351],[-66.67446674466744,11.776694933141826],[-66.64926649266492,11.780072087681589],[-66.63126631266313,11.795269283110542],[-66.61686616866169,11.823975096698547],[-66.60606606066061,11.817220787619007],[-66.60246602466025,11.807089323999719],[-66.60246602466025,11.795269283110542],[-66.60966609666096,11.783449242221351]]],[[[-66.13086130861308,11.823975096698547],[-66.10926109261092,11.825663673968421],[-66.10206102061021,11.818909364888896],[-66.10206102061021,11.80033501492018],[-66.11286112861129,11.780072087681589],[-66.14166141661416,11.781760664951477],[-66.1740617406174,11.796957860380417],[-66.19566195661956,11.817220787619007],[-66.18126181261812,11.823975096698547],[-66.16326163261633,11.823975096698547],[-66.13086130861308,11.823975096698547]]],[[[-83.72783727837277,11.878009569334793],[-83.7350373503735,11.90502680565291],[-83.7350373503735,11.942175505590328],[-83.72783727837277,11.97256989644822],[-83.70983709837098,11.98776709187716],[-83.70623706237062,11.98776709187716],[-83.70623706237062,11.986078514607286],[-83.70623706237062,11.984389937337397],[-83.70623706237062,11.981012782797634],[-83.71343713437135,11.970881319178332],[-83.72063720637206,11.953995546479504],[-83.72423724237242,11.937109773780676],[-83.72783727837277,11.920224001081849],[-83.72063720637206,11.88307530114443],[-83.72063720637206,11.86956668298538],[-83.72783727837277,11.878009569334793]]],[[[-83.05463054630546,12.143116200706373],[-83.05463054630546,12.166756282484727],[-83.04743047430473,12.183642055183554],[-83.0330303303033,12.190396364263094],[-83.02223022230221,12.18195347791368],[-83.02583025830258,12.17519916883414],[-83.05463054630546,12.143116200706373]]],[[[93.87273872738729,12.268070918677694],[93.85473854738547,12.261316609598154],[93.8511385113851,12.271448073217456],[93.8619386193862,12.281579536836759],[93.87273872738729,12.268070918677694]]],[[[-61.429214292142916,12.453814418364786],[-61.44721447214472,12.460568727444326],[-61.461614616146164,12.455502995634674],[-61.479614796147956,12.44706010928526],[-61.49761497614976,12.44030580020572],[-61.4940149401494,12.44706010928526],[-61.486814868148684,12.4622573047142],[-61.48321483214832,12.46901161379374],[-61.486814868148684,12.46901161379374],[-61.49761497614976,12.46901161379374],[-61.4940149401494,12.472388768333502],[-61.490414904149034,12.48252023195279],[-61.46881468814688,12.475765922873265],[-61.454414544145436,12.492651695572093],[-61.44361443614436,12.516291777350446],[-61.429214292142916,12.529800395509511],[-61.4220142201422,12.512914622810683],[-61.4220142201422,12.496028850111855],[-61.42561425614255,12.475765922873265],[-61.429214292142916,12.453814418364786]]],[[[-81.71181711817118,12.523046086429986],[-81.7190171901719,12.543309013668576],[-81.71541715417153,12.563571940907167],[-81.70461704617045,12.580457713605995],[-81.69021690216901,12.590589177225283],[-81.68661686616866,12.580457713605995],[-81.70461704617045,12.50447173646127],[-81.7190171901719,12.502783159191381],[-81.72261722617226,12.511226045540795],[-81.71181711817118,12.523046086429986]]],[[[97.83637836378364,12.772955522372612],[97.83637836378364,12.793218449611217],[97.84357843578437,12.805038490500394],[97.85437854378546,12.806727067770268],[97.86517865178655,12.78984129507144],[97.86877868778691,12.7746440996425],[97.86517865178655,12.766201213293087],[97.8507785077851,12.766201213293087],[97.83637836378364,12.772955522372612]]],[[[-61.19521195211952,13.036373576474318],[-61.20961209612096,13.022864958315253],[-61.227612276122755,12.992470567457374],[-61.2420124201242,12.982339103838072],[-61.234812348123484,12.982339103838072],[-61.2420124201242,12.975584794758547],[-61.24921249212491,12.982339103838072],[-61.25641256412564,12.987404835647723],[-61.26721267212672,12.989093412917597],[-61.278012780127796,12.989093412917597],[-61.278012780127796,12.995847721997137],[-61.26361263612635,12.990781990187486],[-61.23841238412383,12.995847721997137],[-61.23841238412383,13.004290608346551],[-61.24561245612456,13.011044917426076],[-61.24921249212491,13.016110649235728],[-61.2420124201242,13.024553535585142],[-61.21321213212131,13.04143930828397],[-61.202412024120235,13.051570771903258],[-61.19881198811987,13.04650504009362],[-61.19881198811987,13.043127885553844],[-61.19881198811987,13.039750731014081],[-61.19521195211952,13.036373576474318]]],[[[-87.61587615876158,13.289660166956722],[-87.61227612276123,13.282905857877196],[-87.61227612276123,13.267708662448243],[-87.62307623076231,13.252511467019303],[-87.64827648276483,13.24913431247954],[-87.6590765907659,13.25082288974943],[-87.66267662676627,13.252511467019303],[-87.66627666276662,13.255888621559066],[-87.66627666276662,13.262642930638606],[-87.6590765907659,13.262642930638606],[-87.66267662676627,13.267708662448243],[-87.66987669876698,13.277840126067545],[-87.67347673476735,13.28459443514707],[-87.6590765907659,13.289660166956722],[-87.64467644676446,13.29134874422661],[-87.61587615876158,13.289660166956722]]],[[[-87.62307623076231,13.36902329864121],[-87.61227612276123,13.365646144101447],[-87.58707587075871,13.372400453180973],[-87.5690756907569,13.372400453180973],[-87.5690756907569,13.365646144101447],[-87.58707587075871,13.357203257752033],[-87.57627576275762,13.318365980544726],[-87.59067590675906,13.304857362385675],[-87.63747637476375,13.318365980544726],[-87.6590765907659,13.331874598703791],[-87.65547655476554,13.34876037140262],[-87.64467644676446,13.367334721371321],[-87.63387633876339,13.374089030450861],[-87.62307623076231,13.36902329864121]]],[[[-81.38421384213842,13.318365980544726],[-81.38781387813877,13.342006062323094],[-81.3770137701377,13.362268989561684],[-81.36621366213662,13.374089030450861],[-81.35181351813517,13.365646144101447],[-81.34461344613446,13.34876037140262],[-81.35181351813517,13.33356317597368],[-81.36621366213662,13.323431712354378],[-81.38421384213842,13.318365980544726]]],[[[94.27954279542797,13.443320698516047],[94.29034290342906,13.423057771277456],[94.27594275942761,13.419680616737693],[94.26154261542615,13.429812080356982],[94.27954279542797,13.443320698516047]]],[[[-82.76662766627666,14.414252628698605],[-82.75222752227522,14.42269551504802],[-82.73782737827378,14.42269551504802],[-82.73062730627306,14.414252628698605],[-82.7270272702727,14.397366855999778],[-82.73422734227341,14.370349619681647],[-82.75222752227522,14.361906733332233],[-82.80262802628026,14.365283887871996],[-82.80982809828097,14.366972465141885],[-82.80262802628026,14.366972465141885],[-82.7990279902799,14.368661042411773],[-82.80262802628026,14.37372677422141],[-82.78462784627845,14.382169660570824],[-82.77742777427774,14.393989701460015],[-82.77382773827738,14.404121165079303],[-82.76662766627666,14.414252628698605]]],[[[-86.87786877868778,16.12646998035966],[-86.87426874268742,16.121404248550007],[-86.88146881468815,16.10451847585118],[-86.87786877868778,16.092698434962003],[-86.89586895868959,16.09438701223189],[-86.91386913869138,16.08932128042224],[-86.9390693906939,16.079189816802938],[-86.96426964269642,16.065681198643887],[-86.97866978669786,16.077501239533063],[-86.99666996669967,16.08425554861259],[-86.98946989469894,16.096075589501766],[-86.94266942669427,16.116338516740356],[-86.91746917469175,16.121404248550007],[-86.9030690306903,16.12478140308977],[-86.89226892268923,16.128158557629547],[-86.87786877868778,16.12646998035966]]],[[[-60.990009900099,16.345985025444406],[-61.04041040410404,16.31390205731664],[-61.06921069210692,16.302082016427462],[-61.09081090810908,16.305459170967225],[-61.080010800108,16.31221348004675],[-61.04041040410404,16.344296448174532],[-61.01521015210152,16.35442791179382],[-60.990009900099,16.345985025444406]]],[[[-169.5310953109531,16.759686456565674],[-169.52029520295204,16.763063611105437],[-169.51669516695168,16.763063611105437],[-169.52389523895238,16.757997879295786],[-169.52749527495274,16.756309302025898],[-169.53469534695347,16.754620724756023],[-169.53829538295383,16.754620724756023],[-169.53829538295383,16.756309302025898],[-169.5310953109531,16.757997879295786],[-169.5310953109531,16.759686456565674]]],[[[-87.83907839078391,17.38783720096204],[-87.82467824678247,17.399657241851216],[-87.81387813878139,17.3810828918825],[-87.79587795877958,17.333802728325793],[-87.8030780307803,17.32535984197638],[-87.8030780307803,17.315228378357077],[-87.8030780307803,17.291588296578723],[-87.81027810278103,17.291588296578723],[-87.81027810278103,17.3034083374679],[-87.81027810278103,17.306785492007663],[-87.81747817478174,17.30509691473779],[-87.8210782107821,17.30171976019801],[-87.8210782107821,17.29834260565825],[-87.82467824678247,17.291588296578723],[-87.82467824678247,17.352377078294495],[-87.82827828278282,17.377705737342737],[-87.83907839078391,17.38783720096204]]],[[[-83.94023940239403,17.418231591819918],[-83.9330393303933,17.418231591819918],[-83.92583925839259,17.416543014550044],[-83.91863918639186,17.414854437280155],[-83.91143911439114,17.411477282740393],[-83.92223922239222,17.409788705470504],[-83.92943929439294,17.409788705470504],[-83.93663936639366,17.41316586001028],[-83.94023940239403,17.418231591819918]]],[[[-62.998829988299875,17.52630053709241],[-62.98442984429843,17.517857650742997],[-62.97722977229772,17.504349032583946],[-62.96642966429664,17.499283300774295],[-62.944829448294485,17.48577468261523],[-62.948429484294834,17.472266064456164],[-62.95922959229591,17.46382317810675],[-62.98082980829808,17.467200332646527],[-62.995229952299525,17.492528991694755],[-62.998829988299875,17.52630053709241]]],[[[-88.07668076680767,17.641123791444443],[-88.06228062280623,17.63099232782514],[-88.0550805508055,17.6056636687769],[-88.04428044280442,17.55331777341054],[-88.05148051480515,17.55331777341054],[-88.0550805508055,17.56344923702983],[-88.06588065880659,17.587089318808196],[-88.07668076680767,17.641123791444443]]],[[[-88.15948159481594,17.683338223191512],[-88.13788137881379,17.691781109540926],[-88.08388083880838,17.728929809478345],[-88.06948069480694,17.73399554128798],[-88.08028080280802,17.701912573160214],[-88.10188101881019,17.681649645921624],[-88.13428134281342,17.67151818230232],[-88.16668166681667,17.669829605032447],[-88.16668166681667,17.67320675957221],[-88.16668166681667,17.676583914111973],[-88.15948159481594,17.683338223191512]]],[[[-62.84042840428404,17.88259034103767],[-62.85122851228512,17.891033227387084],[-62.862028620286196,17.906230422816023],[-62.86562865628656,17.919739040975088],[-62.86562865628656,17.929870504594376],[-62.85842858428583,17.924804772784725],[-62.790027900279,17.914673309165437],[-62.797227972279714,17.904541845546134],[-62.811628116281156,17.892721804656958],[-62.822428224282234,17.88259034103767],[-62.84042840428404,17.88259034103767]]],[[[-67.85527855278552,18.113925427011594],[-67.84447844478444,18.10379396339229],[-67.84447844478444,18.097039654312766],[-67.8480784807848,18.09028534523324],[-67.85887858878588,18.073399572534413],[-67.86247862478625,18.068333840724762],[-67.8660786607866,18.064956686185],[-67.86967869678696,18.056513799835585],[-67.87327873278733,18.053136645295822],[-67.8840788407884,18.053136645295822],[-67.89127891278912,18.053136645295822],[-67.89487894878948,18.056513799835585],[-67.90207902079021,18.064956686185],[-67.93087930879308,18.08015388161394],[-67.93807938079381,18.093662499773004],[-67.93087930879308,18.108859695201943],[-67.920079200792,18.113925427011594],[-67.86247862478625,18.115614004281483],[-67.85527855278552,18.113925427011594]]],[[[-65.27765277652776,18.279405999460096],[-65.2920529205292,18.299668926698686],[-65.33525335253353,18.336817626636105],[-65.33525335253353,18.34019478117588],[-65.31005310053101,18.34019478117588],[-65.28125281252812,18.33512904936623],[-65.2560525605256,18.323309008477054],[-65.24525245252453,18.306423235778226],[-65.24885248852488,18.306423235778226],[-65.25965259652597,18.306423235778226],[-65.25245252452524,18.299668926698686],[-65.26325263252632,18.299668926698686],[-65.27045270452705,18.301357503968575],[-65.27765277652776,18.306423235778226],[-65.27765277652776,18.31317754485775],[-65.28485284852849,18.31317754485775],[-65.27765277652776,18.296291772158924],[-65.2740527405274,18.289537463079398],[-65.27765277652776,18.279405999460096]]],[[[-87.33147331473315,18.5326925899425],[-87.32787327873278,18.541135476291913],[-87.32427324273242,18.549578362641327],[-87.3170731707317,18.55802124899074],[-87.30987309873099,18.566464135340155],[-87.32787327873278,18.5326925899425],[-87.32067320673207,18.488789580925555],[-87.33507335073351,18.4550180355279],[-87.37467374673746,18.402672140161542],[-87.37827378273782,18.402672140161542],[-87.37467374673746,18.409426449241067],[-87.36027360273603,18.429689376479658],[-87.34947349473494,18.443197994638723],[-87.34227342273422,18.451640880988137],[-87.33867338673386,18.47696954003638],[-87.33147331473315,18.5326925899425]]],[[[-87.27027270272703,18.738699016868196],[-87.25587255872559,18.723501821439243],[-87.24867248672486,18.676221657882536],[-87.24867248672486,18.650892998834294],[-87.2630726307263,18.628941494325815],[-87.25947259472595,18.65764730791382],[-87.27027270272703,18.738699016868196]]],[[[-64.3380433804338,18.723501821439243],[-64.38124381243811,18.72687897597902],[-64.39924399243992,18.731944707788657],[-64.410044100441,18.74545332594772],[-64.320043200432,18.74545332594772],[-64.2840428404284,18.733633285058545],[-64.26964269642696,18.69986173966089],[-64.28044280442803,18.701550316930778],[-64.3380433804338,18.723501821439243]]],[[[-80.03780037800378,19.70456521524109],[-80.0090000900009,19.70456521524109],[-79.98019980199801,19.714696678860392],[-79.96579965799657,19.70456521524109],[-79.96939969399693,19.702876637971215],[-79.97659976599766,19.697810906161564],[-80.00540005400053,19.69105659708204],[-80.07740077400774,19.65390789714462],[-80.11340113401134,19.658973628954257],[-80.0990009900099,19.677547978922973],[-80.08100081000809,19.685990865272387],[-80.0630006300063,19.701188060701327],[-80.03780037800378,19.70456521524109]]],[[[-79.87219872198722,19.70456521524109],[-79.80379803798037,19.733271028829108],[-79.76779767797677,19.75184537879781],[-79.74619746197462,19.75691111060746],[-79.73179731797318,19.75184537879781],[-79.72819728197281,19.73664818336887],[-79.7749977499775,19.713008101590503],[-79.85419854198541,19.69105659708204],[-79.89379893798937,19.679236556192862],[-79.87219872198722,19.70456521524109]]],[[[-78.33138331383313,20.55391958199209],[-78.32778327783278,20.53534523202339],[-78.32778327783278,20.521836613864323],[-78.33858338583386,20.51845945932456],[-78.35658356583565,20.530279500213737],[-78.36738367383674,20.537033809293263],[-78.38538385383853,20.540410963833025],[-78.39618396183961,20.547165272912565],[-78.41058410584105,20.57418250923068],[-78.42858428584286,20.586002550119858],[-78.46458464584646,20.602888322818686],[-78.45018450184502,20.613019786437988],[-78.43218432184321,20.609642631898225],[-78.41778417784178,20.599511168278923],[-78.40698406984069,20.589379704659635],[-78.39258392583926,20.57080535469092],[-78.38538385383853,20.562362468341504],[-78.36738367383674,20.55391958199209],[-78.36378363783638,20.57080535469092],[-78.35658356583565,20.57418250923068],[-78.34218342183422,20.567428200151156],[-78.33138331383313,20.55391958199209]]],[[[-78.43578435784357,20.726154463520132],[-78.45018450184502,20.710957268091178],[-78.49698496984969,20.70082580447189],[-78.51138511385113,20.690694340852588],[-78.52938529385294,20.699137227202],[-78.54378543785438,20.704202959011653],[-78.53298532985329,20.712645845361067],[-78.49698496984969,20.719400154440592],[-78.48258482584825,20.732908772599657],[-78.4789847898479,20.729531618059895],[-78.47538475384754,20.726154463520132],[-78.46458464584646,20.731220195329783],[-78.45738457384573,20.731220195329783],[-78.43578435784357,20.726154463520132]]],[[[-78.82818828188282,20.753171699838248],[-78.80658806588066,20.75654885437801],[-78.78498784987849,20.749794545298485],[-78.75258752587526,20.726154463520132],[-78.7669876698767,20.712645845361067],[-78.79218792187922,20.719400154440592],[-78.81378813788137,20.73797450440931],[-78.82818828188282,20.753171699838248]]],[[[-75.51615516155161,20.793697554315443],[-75.5089550895509,20.786943245235904],[-75.49455494554945,20.76161458618766],[-75.48735487354872,20.749794545298485],[-75.48375483754837,20.73797450440931],[-75.50175501755017,20.73797450440931],[-75.53415534155342,20.746417390758722],[-75.5521555215552,20.749794545298485],[-75.56655566555665,20.75654885437801],[-75.57735577355773,20.770057472537076],[-75.57735577355773,20.786943245235904],[-75.53055530555305,20.795386131585317],[-75.51615516155161,20.793697554315443]]],[[[-78.92538925389253,20.807206172474494],[-78.87498874988749,20.808894749744383],[-78.8569885698857,20.79876328612508],[-78.84618846188461,20.77343462707684],[-78.85338853388534,20.77343462707684],[-78.87138871388713,20.78525466796603],[-78.94338943389434,20.792008977045555],[-78.9649896498965,20.813960481554034],[-78.95058950589505,20.83084625425286],[-78.94338943389434,20.839289140602276],[-78.93258932589326,20.839289140602276],[-78.9289892898929,20.83084625425286],[-78.92538925389253,20.82071479063356],[-78.92538925389253,20.807206172474494]]],[[[-79.02619026190261,20.886569304158982],[-79.01179011790117,20.88150357234933],[-78.99018990189902,20.879814995079457],[-78.97218972189721,20.873060685999917],[-78.97218972189721,20.859552067840866],[-78.9829898298983,20.844354872411913],[-78.99018990189902,20.839289140602276],[-78.99018990189902,20.8460434496818],[-78.99378993789938,20.849420604221564],[-79.0189901899019,20.854486336031215],[-79.06939069390694,20.886569304158982],[-79.08019080190802,20.896700767778285],[-79.06579065790658,20.89838934504816],[-79.04779047790477,20.89838934504816],[-79.03339033390334,20.893323613238522],[-79.02619026190261,20.886569304158982]]],[[[-79.07299072990729,20.916963695016875],[-79.08019080190802,20.91865227228675],[-79.09459094590946,20.916963695016875],[-79.0909909099091,20.911897963207224],[-79.08739087390873,20.896700767778285],[-79.11619116191162,20.91020938593735],[-79.13419134191342,20.927095158636163],[-79.17019170191702,20.964243858573596],[-79.17019170191702,20.972686744922996],[-79.15219152191521,20.96593243584347],[-79.13779137791377,20.954112394954294],[-79.1269912699127,20.942292354065117],[-79.11619116191162,20.93047231317594],[-79.1269912699127,20.95073524041453],[-79.14859148591485,20.976063899462773],[-79.17379173791737,20.996326826701363],[-79.19539195391954,20.999703981241126],[-79.19539195391954,20.9929496721616],[-79.19539195391954,20.98788394035195],[-79.19179191791918,20.98619536308206],[-79.19179191791918,20.984506785812187],[-79.18819188191881,20.979441054002535],[-79.20259202592025,20.982818208542298],[-79.20979209792098,20.98788394035195],[-79.2169921699217,20.996326826701363],[-79.22419224192241,21.00645829032065],[-79.1809918099181,21.00814686759054],[-79.13779137791377,20.982818208542298],[-79.09819098190981,20.947358085874768],[-79.07299072990729,20.916963695016875]]],[[[-79.38979389793897,21.122970121942558],[-79.35739357393574,21.12803585375221],[-79.33219332193322,21.11283865832327],[-79.29259292592926,21.074001381115963],[-79.3069930699307,21.06893564930631],[-79.32499324993249,21.06893564930631],[-79.33939339393393,21.07231280384609],[-79.35379353793537,21.082444267465377],[-79.34659346593466,21.082444267465377],[-79.32859328593285,21.082444267465377],[-79.33219332193322,21.09257573108468],[-79.33939339393393,21.099330040164205],[-79.34659346593466,21.101018617434093],[-79.35379353793537,21.095952885624442],[-79.3789937899379,21.114527235593144],[-79.38979389793897,21.122970121942558]]],[[[-71.13851138511384,21.513031471285473],[-71.13131131311313,21.49783427585652],[-71.12771127711277,21.472505616808277],[-71.1349113491135,21.447176957760036],[-71.14571145711457,21.431979762331096],[-71.15291152911529,21.450554112299812],[-71.14931149311492,21.472505616808277],[-71.14571145711457,21.494457121316756],[-71.13851138511384,21.513031471285473]]],[[[-81.37341373413734,21.70552928005209],[-81.3770137701377,21.703840702782216],[-81.41661416614166,21.668380580114672],[-81.49581495814958,21.61772326201819],[-81.52821528215281,21.60590322112901],[-81.56061560615606,21.60252606658925],[-81.56061560615606,21.62278899382784],[-81.54981549815498,21.62785472563749],[-81.52461524615246,21.62278899382784],[-81.51381513815137,21.631231880177253],[-81.5030150301503,21.646429075606193],[-81.49221492214922,21.656560539225495],[-81.48141481414814,21.653183384685732],[-81.47061470614706,21.64811765287608],[-81.45621456214562,21.651494807415844],[-81.44181441814418,21.659937693765258],[-81.43821438214381,21.668380580114672],[-81.4310143101431,21.6852663528135],[-81.41661416614166,21.697086393702676],[-81.38421384213842,21.715660743671393],[-81.3770137701377,21.719037898211155],[-81.37341373413734,21.713972166401504],[-81.36981369813698,21.708906434591853],[-81.37341373413734,21.70552928005209]]],[[[-97.65277652776527,21.78826956627634],[-97.61317613176132,21.764629484497988],[-97.60237602376023,21.751120866338923],[-97.60957609576096,21.740989402719634],[-97.63837638376384,21.744366557259397],[-97.66357663576636,21.778138102657053],[-97.67797677976779,21.823729688943885],[-97.68517685176852,21.862566966151178],[-97.67077670776708,21.849058347992127],[-97.66357663576636,21.828795420753536],[-97.659976599766,21.806843916245057],[-97.65277652776527,21.78826956627634]]],[[[-77.84537845378453,22.261071201843507],[-77.83817838178382,22.274579820002558],[-77.8489784897849,22.288088438161623],[-77.86697866978669,22.301597056320688],[-77.88137881378813,22.308351365400213],[-77.85617856178561,22.311728519939976],[-77.83457834578346,22.296531324511037],[-77.82017820178201,22.271202665462795],[-77.80577805778057,22.228988233715725],[-77.79137791377913,22.212102461016897],[-77.77337773377734,22.196905265587958],[-77.7589775897759,22.178330915619256],[-77.78057780577805,22.178330915619256],[-77.80577805778057,22.20197099739761],[-77.84537845378453,22.261071201843507]]],[[[-74.28494284942849,22.671395478424998],[-74.28854288542885,22.644378242106868],[-74.31734317343174,22.602163810359812],[-74.35334353343534,22.563326533152505],[-74.38574385743857,22.541375028644026],[-74.37494374943749,22.583589460391096],[-74.34614346143461,22.6122952739791],[-74.31374313743137,22.637623933027342],[-74.28494284942849,22.671395478424998]]],[[[-78.9829898298983,22.637623933027342],[-78.99018990189902,22.651132551186407],[-79.00459004590046,22.65619828299606],[-79.06579065790658,22.65957543753582],[-79.07299072990729,22.664641169345472],[-79.08739087390873,22.671395478424998],[-79.06939069390694,22.67477263296476],[-78.97578975789757,22.668018323885235],[-78.96138961389613,22.65957543753582],[-78.96138961389613,22.64944397391652],[-78.9829898298983,22.637623933027342]]],[[[-97.81477814778148,22.720364219251593],[-97.79677796777968,22.762578650998663],[-97.78957789577896,22.77439869188784],[-97.7859778597786,22.755824341919137],[-97.79677796777968,22.723741373791356],[-97.81837818378183,22.69503556020335],[-97.84357843578435,22.684904096584063],[-97.83637836378364,22.69672413747324],[-97.8219782197822,22.71192133290218],[-97.81477814778148,22.720364219251593]]],[[[-79.89379893798937,22.958453614305057],[-79.88659886598866,22.960142191574946],[-79.88659886598866,22.94663357341588],[-79.89739897398974,22.936502109796578],[-79.9189991899919,22.950010727955643],[-79.92979929799297,22.94663357341588],[-79.94059940599405,22.933124955256815],[-79.95139951399514,22.928059223447164],[-79.95859958599586,22.953387882495406],[-79.94419944199441,22.96183076884482],[-79.92619926199262,22.96689650065447],[-79.91179911799118,22.96689650065447],[-79.89379893798937,22.958453614305057]]],[[[-80.32220322203221,22.98715942789306],[-80.27180271802717,23.00911093240154],[-80.25020250202502,23.010799509671415],[-80.23220232202321,23.000668046052127],[-80.23580235802358,22.997290891512364],[-80.24660246602465,22.98884800516295],[-80.25020250202502,22.98715942789306],[-80.24300243002429,22.98209369608341],[-80.23580235802358,22.97702796427376],[-80.23220232202321,22.96858507792436],[-80.23220232202321,22.958453614305057],[-80.33300333003329,22.975339387003885],[-80.34740347403473,22.98715942789306],[-80.34020340203402,22.990536582432824],[-80.33660336603366,22.993913736972587],[-80.32940329403294,22.992225159702713],[-80.32220322203221,22.98715942789306]]],[[[-80.19620196201961,23.12393418675356],[-80.1890018900189,23.112114145864382],[-80.17820178201782,23.100294104975205],[-80.16740167401673,23.09185121862579],[-80.1530015300153,23.090162641355903],[-80.1350013500135,23.08847406408603],[-80.13140131401313,23.08678548681614],[-80.1350013500135,23.083408332276377],[-80.14220142201421,23.076654023196852],[-80.16380163801638,23.06652255957755],[-80.18180181801817,23.0715882913872],[-80.2250022500225,23.090162641355903],[-80.22140221402213,23.100294104975205],[-80.21780217802177,23.10704841405473],[-80.21060210602106,23.11380272313427],[-80.20340203402034,23.12393418675356],[-80.19620196201961,23.12393418675356]]],[[[-80.82980829808298,23.179657236659693],[-80.8190081900819,23.179657236659693],[-80.81180811808117,23.16446004123074],[-80.80460804608046,23.157705732151214],[-80.80460804608046,23.152640000341563],[-80.81540815408154,23.14419711399215],[-80.82980829808298,23.135754227642735],[-80.84420844208442,23.137442804912624],[-80.85140851408514,23.142508536722275],[-80.86580865808658,23.14419711399215],[-80.89820898208981,23.142508536722275],[-80.92340923409233,23.13406565037286],[-80.97020970209702,23.110425568594493],[-80.95940959409593,23.122245609483684],[-80.89820898208981,23.159394309421103],[-80.88020880208802,23.162771463960866],[-80.86220862208621,23.162771463960866],[-80.84060840608406,23.157705732151214],[-80.84420844208442,23.162771463960866],[-80.85140851408514,23.172902927580154],[-80.8550085500855,23.179657236659693],[-80.84780847808477,23.184722968469345],[-80.84420844208442,23.177968659389805],[-80.82980829808298,23.16446004123074],[-80.82980829808298,23.179657236659693]]],[[[-80.49140491404914,23.193165854818744],[-80.48780487804878,23.193165854818744],[-80.48060480604806,23.19654300935852],[-80.47340473404734,23.19654300935852],[-80.46980469804697,23.188100123009107],[-80.47340473404734,23.181345813929568],[-80.48060480604806,23.177968659389805],[-80.48780487804878,23.174591504850042],[-80.49500495004949,23.167837195770517],[-80.50580505805058,23.16952577304039],[-80.52380523805238,23.17628008211993],[-80.54180541805418,23.183034391199456],[-80.55980559805597,23.179657236659693],[-80.56340563405634,23.184722968469345],[-80.5670056700567,23.184722968469345],[-80.58140581405814,23.179657236659693],[-80.57780577805778,23.193165854818744],[-80.57060570605705,23.201608741168158],[-80.55980559805597,23.204985895707935],[-80.54180541805418,23.20667447297781],[-80.53820538205382,23.204985895707935],[-80.5310053100531,23.194854432088633],[-80.52740527405274,23.193165854818744],[-80.51660516605166,23.19147727754887],[-80.49140491404914,23.193165854818744]]],[[[-75.65295652956529,23.459961063460213],[-75.62055620556205,23.45658390892045],[-75.57735577355773,23.446452445301162],[-75.54135541355413,23.427878095332446],[-75.52335523355234,23.404238013554092],[-75.55935559355594,23.41605805444327],[-75.60255602556025,23.422812363522794],[-75.63855638556385,23.43632098168186],[-75.65295652956529,23.459961063460213]]],[[[-76.32616326163262,23.97328855350456],[-76.34056340563406,23.9884857489335],[-76.35856358563585,24.023945871601043],[-76.37656376563766,24.045897376109508],[-76.38736387363873,24.0762917669674],[-76.39816398163981,24.09317753966623],[-76.40176401764018,24.10330900328553],[-76.40176401764018,24.116817621444582],[-76.37656376563766,24.101620426015643],[-76.31896318963189,23.980042862584085],[-76.32616326163262,23.97328855350456]]],[[[-77.88137881378813,24.186049289509782],[-77.89217892178921,24.177606403160368],[-77.94617946179461,24.153966321382],[-77.96417964179642,24.152277744112126],[-77.96777967779677,24.159032053191652],[-77.9749797497975,24.172540671350717],[-77.9749797497975,24.186049289509782],[-77.9749797497975,24.19618075312907],[-77.96417964179642,24.19786933039896],[-77.95337953379533,24.194492175859196],[-77.9389793897939,24.192803598589308],[-77.93537935379354,24.20293506220861],[-77.92457924579246,24.206312216748373],[-77.87057870578705,24.24008376214603],[-77.86697866978669,24.24346091668579],[-77.8489784897849,24.251903803035205],[-77.83817838178382,24.255280957574968],[-77.79857798577986,24.255280957574968],[-77.80217802178021,24.24514949395568],[-77.80937809378094,24.24008376214603],[-77.82737827378273,24.235018030336377],[-77.83457834578346,24.235018030336377],[-77.83817838178382,24.23839518487614],[-77.84177841778417,24.24008376214603],[-77.85257852578525,24.235018030336377],[-77.85977859778598,24.224886566717075],[-77.87057870578705,24.19786933039896],[-77.88137881378813,24.186049289509782]]],[[[-77.9209792097921,24.262035266654493],[-77.93537935379354,24.262035266654493],[-77.94257942579425,24.25359238030508],[-77.94257942579425,24.24008376214603],[-77.93537935379354,24.226575143986963],[-77.94977949779498,24.229952298526726],[-77.9749797497975,24.226575143986963],[-77.98937989379894,24.226575143986963],[-78.00018000180002,24.231640875796614],[-78.01458014580146,24.24008376214603],[-78.01818018180181,24.248526648495442],[-78.00378003780037,24.255280957574968],[-77.97857978579785,24.25865811211473],[-77.95337953379533,24.270478153003907],[-77.93177931779317,24.27554388481356],[-77.9209792097921,24.262035266654493]]],[[[-76.4629646296463,24.213066525827898],[-76.4809648096481,24.213066525827898],[-76.49176491764918,24.21813225763755],[-76.53496534965349,24.268789575734033],[-76.54576545765457,24.282298193893098],[-76.54576545765457,24.29580681205215],[-76.52776527765278,24.287363925702735],[-76.52056520565205,24.27554388481356],[-76.51336513365133,24.26034668938462],[-76.50256502565026,24.248526648495442],[-76.49176491764918,24.23839518487614],[-76.4809648096481,24.235018030336377],[-76.47016470164701,24.22826372125685],[-76.4629646296463,24.213066525827898]]],[[[-77.76617766177661,24.326201202910042],[-77.78777787777878,24.314381162020865],[-77.79857798577986,24.317758316560628],[-77.80577805778057,24.32788978017993],[-77.79857798577986,24.336332666529344],[-77.77697776977769,24.346464130148632],[-77.7589775897759,24.359972748307698],[-77.74097740977409,24.366727057387223],[-77.71937719377193,24.371792789196874],[-77.70137701377013,24.370104211926986],[-77.69777697776978,24.366727057387223],[-77.6869768697687,24.359972748307698],[-77.68337683376834,24.353218439228172],[-77.68337683376834,24.344775552878758],[-77.69057690576905,24.33802124379922],[-77.70137701377013,24.34139839833898],[-77.71217712177122,24.34815270741852],[-77.71937719377193,24.351529861958284],[-77.73737737377374,24.349841284688395],[-77.74817748177482,24.346464130148632],[-77.76617766177661,24.326201202910042]]],[[[-81.70461704617045,24.59806214336116],[-81.69741697416974,24.591307834281622],[-81.6830168301683,24.591307834281622],[-81.65781657816578,24.59806214336116],[-81.65421654216541,24.59299641155151],[-81.65061650616506,24.576110638852683],[-81.72621726217263,24.555847711614092],[-81.72261722617226,24.559224866153855],[-81.71181711817118,24.569356329773157],[-81.71181711817118,24.576110638852683],[-81.71541715417153,24.581176370662334],[-81.7190171901719,24.58624210247197],[-81.71541715417153,24.591307834281622],[-81.71181711817118,24.59806214336116],[-81.70461704617045,24.59806214336116]]],[[[-80.1890018900189,25.481188055509804],[-80.19260192601925,25.45923655100134],[-80.20340203402034,25.43728504649286],[-80.21780217802177,25.41533354198438],[-80.23220232202321,25.403513501095205],[-80.23220232202321,25.405202078365093],[-80.23580235802358,25.405202078365093],[-80.23940239402394,25.405202078365093],[-80.2250022500225,25.41533354198438],[-80.21420214202142,25.43221931468321],[-80.19980199801998,25.489630941859218],[-80.19620196201961,25.49469667366887],[-80.1890018900189,25.498073828208632],[-80.18540185401854,25.49300809639898],[-80.1890018900189,25.486253787319455],[-80.1890018900189,25.481188055509804]]],[[[-80.16380163801638,25.671997287006548],[-80.17460174601746,25.673685864276436],[-80.18180181801817,25.68212875062585],[-80.18180181801817,25.692260214245138],[-80.1710017100171,25.700703100594552],[-80.17460174601746,25.70239167786444],[-80.17460174601746,25.70408025513433],[-80.17820178201782,25.705768832404203],[-80.18180181801817,25.70745740967409],[-80.18180181801817,25.714211718753617],[-80.17460174601746,25.71758887329338],[-80.1710017100171,25.72265460510303],[-80.16740167401673,25.727720336912682],[-80.16380163801638,25.734474645992208],[-80.15660156601565,25.734474645992208],[-80.15660156601565,25.678751596086087],[-80.16380163801638,25.671997287006548]]],[[[-77.82017820178201,25.70745740967409],[-77.83097830978309,25.709145986943966],[-77.84537845378453,25.72265460510303],[-77.85977859778598,25.747983264151273],[-77.88137881378813,25.768246191389863],[-77.88857888578886,25.78175480954893],[-77.88137881378813,25.790197695898343],[-77.86697866978669,25.78682054135858],[-77.85977859778598,25.776689077739277],[-77.82017820178201,25.715900296023506],[-77.82017820178201,25.70745740967409]]],[[[-77.53937539375393,26.306902340482452],[-77.54297542975429,26.298459454133038],[-77.57177571775718,26.268065063275145],[-77.56817568175681,26.2917051450535],[-77.57177571775718,26.305213763212564],[-77.57897578975789,26.31872238137163],[-77.57897578975789,26.33729673134033],[-77.57177571775718,26.332230999530694],[-77.54297542975429,26.31196807229209],[-77.53937539375393,26.306902340482452]]],[[[-82.2590225902259,26.702029421635004],[-82.25542255422553,26.702029421635004],[-82.25182251822518,26.700340844365115],[-82.24462244622445,26.695275112555464],[-82.24462244622445,26.67163503077711],[-82.23022230222301,26.634486330839692],[-82.22662226622266,26.61084624906134],[-82.23742237422374,26.634486330839692],[-82.24822248222482,26.654749258078283],[-82.2590225902259,26.702029421635004]]],[[[-82.27342273422734,26.803344057827957],[-82.26262262622626,26.779703976049603],[-82.2590225902259,26.757752471541124],[-82.2590225902259,26.737489544302534],[-82.26622266222662,26.715538039794055],[-82.27342273422734,26.73580096703266],[-82.2770227702277,26.784769707859255],[-82.28782287822878,26.803344057827957],[-82.28062280622805,26.810098366907496],[-82.2770227702277,26.810098366907496],[-82.27342273422734,26.803344057827957]]],[[[-82.65862658626585,27.39603467955679],[-82.66582665826658,27.404477565906205],[-82.67662676626766,27.421363338605033],[-82.68022680226802,27.434871956764084],[-82.66582665826658,27.42642907041467],[-82.6550265502655,27.419674761335145],[-82.62982629826298,27.379148906857964],[-82.59382593825939,27.340311629650657],[-82.59022590225902,27.325114434221717],[-82.60822608226081,27.336934475110894],[-82.64782647826478,27.380837484127838],[-82.65862658626585,27.39603467955679]]],[[[-80.63540635406353,28.181223110052244],[-80.6390063900639,28.19304315094142],[-80.6390063900639,28.204863191830597],[-80.64980649806498,28.223437541799314],[-80.63180631806318,28.189665996401658],[-80.62820628206282,28.181223110052244],[-80.63540635406353,28.181223110052244]]],[[[-96.37116371163711,28.40749246421653],[-96.37116371163711,28.414246773296057],[-96.31356313563136,28.458149782313],[-96.2739627396274,28.47841270955159],[-96.23076230762307,28.490232750440782],[-96.23076230762307,28.483478441361243],[-96.24156241562416,28.48178986409137],[-96.24516245162451,28.48010128682148],[-96.24876248762487,28.47841270955159],[-96.24516245162451,28.47503555501183],[-96.25596255962559,28.471658400472066],[-96.27756277562776,28.456461205043126],[-96.28476284762847,28.448018318693713],[-96.30996309963099,28.441264009614173],[-96.33516335163351,28.419312505105708],[-96.34956349563495,28.409181041486406],[-96.37116371163711,28.40749246421653]]],[[[-80.67860678606786,28.57972734574456],[-80.6570065700657,28.593235963903624],[-80.64260642606426,28.598301695713275],[-80.62820628206282,28.598301695713275],[-80.61380613806138,28.56959588212527],[-80.61740617406174,28.53751291399749],[-80.64980649806498,28.47503555501183],[-80.6570065700657,28.43788685507441],[-80.66420664206642,28.31462071437298],[-80.66780667806678,28.29773494167415],[-80.67140671406713,28.287603478054848],[-80.66780667806678,28.27578343716567],[-80.66060660606605,28.25552050992708],[-80.64980649806498,28.24032331449814],[-80.64980649806498,28.225126119069188],[-80.66420664206642,28.252143355387318],[-80.70020700207002,28.348392259770634],[-80.71460714607146,28.3703437642791],[-80.71820718207182,28.388918114247815],[-80.7290072900729,28.468281245932303],[-80.73620736207361,28.48516701863113],[-80.73980739807398,28.517249986758898],[-80.73260732607326,28.54426722307703],[-80.7110071100711,28.54426722307703],[-80.70380703807038,28.561152995775856],[-80.70020700207002,28.56790730485538],[-80.67860678606786,28.57972734574456]]],[[[-90.94230942309423,29.060971867661124],[-90.90270902709027,29.05759471312136],[-90.88110881108811,29.050840404041836],[-90.91350913509135,29.050840404041836],[-90.94230942309423,29.060971867661124]]],[[[-90.34830348303483,29.05759471312136],[-90.31950319503194,29.07785764035995],[-90.31230312303123,29.082923372169603],[-90.30150301503015,29.08461194943949],[-90.29430294302942,29.086300526709365],[-90.28350283502834,29.086300526709365],[-90.28350283502834,29.07785764035995],[-90.34830348303483,29.05759471312136]]],[[[-89.96309963099631,29.270355449126583],[-89.95589955899558,29.270355449126583],[-89.96309963099631,29.263601140047058],[-89.95589955899558,29.25684683096752],[-89.97749977499775,29.24502679007834],[-90.00990009900099,29.229829594649402],[-90.02430024300243,29.216320976490337],[-90.03150031500314,29.216320976490337],[-90.02430024300243,29.238272480998816],[-90.00270002700027,29.248403944618104],[-89.97749977499775,29.25684683096752],[-89.96309963099631,29.270355449126583]]],[[[-89.16749167491675,29.503379112370396],[-89.16389163891638,29.505067689640285],[-89.16029160291603,29.503379112370396],[-89.16029160291603,29.500001957830634],[-89.16029160291603,29.498313380560745],[-89.16749167491675,29.483116185131806],[-89.18189181891819,29.472984721512503],[-89.20349203492034,29.46960756697274],[-89.22149221492215,29.46960756697274],[-89.1890918909189,29.479739030592043],[-89.17469174691746,29.48987049421133],[-89.16749167491675,29.503379112370396]]],[[[-85.14265142651426,29.640153871230893],[-85.14985149851498,29.645219603040545],[-85.1570515705157,29.65197391212007],[-85.16425164251642,29.662105375739372],[-85.17145171451715,29.668859684818898],[-85.18225182251823,29.67392541662855],[-85.20385203852038,29.680679725708075],[-85.2110521105211,29.68912261205749],[-85.17145171451715,29.68405688024785],[-85.15345153451534,29.68405688024785],[-85.1390513905139,29.695876921137028],[-85.11385113851138,29.69249976659725],[-85.09945099450994,29.687434034787614],[-85.08865088650886,29.687434034787614],[-85.08505085050851,29.685745457517726],[-85.08505085050851,29.675613993898438],[-85.08865088650886,29.670548262088786],[-85.09585095850959,29.662105375739372],[-85.1030510305103,29.65366248938996],[-85.1030510305103,29.643531025770656],[-85.11025110251101,29.633399562151368],[-85.1210512105121,29.633399562151368],[-85.14265142651426,29.640153871230893]]],[[[-89.45549455494555,29.792125825520344],[-89.4410944109441,29.785371516440804],[-89.43389433894339,29.77186289828174],[-89.43389433894339,29.75835428012269],[-89.42669426694266,29.743157084693735],[-89.4410944109441,29.748222816503386],[-89.44829448294483,29.75835428012269],[-89.45189451894518,29.766797166472102],[-89.45909459094591,29.77186289828174],[-89.46629466294662,29.766797166472102],[-89.4770947709477,29.743157084693735],[-89.49149491494914,29.73640277561421],[-89.49509495094951,29.77861720736128],[-89.49149491494914,29.79381440279022],[-89.4770947709477,29.805634443679395],[-89.46269462694626,29.79888013459987],[-89.45909459094591,29.795502980060107],[-89.45549455494555,29.792125825520344]]],[[[-89.30429304293042,29.805634443679395],[-89.29349293492935,29.807323020949283],[-89.28269282692827,29.810700175489046],[-89.27549275492754,29.812388752758935],[-89.27549275492754,29.805634443679395],[-89.28989289892898,29.77186289828174],[-89.33669336693367,29.807323020949283],[-89.33669336693367,29.812388752758935],[-89.30429304293042,29.805634443679395]]],[[[-84.6170461704617,29.805634443679395],[-84.59184591845919,29.81914306183846],[-84.58464584645846,29.822520216378223],[-84.57744577445774,29.81914306183846],[-84.58464584645846,29.800568711869744],[-84.60984609846098,29.788748670980567],[-84.66384663846638,29.77861720736128],[-84.65664656646567,29.787060093710693],[-84.6170461704617,29.805634443679395]]],[[[-89.23589235892359,29.94916351161943],[-89.23949239492394,29.940720625270018],[-89.23949239492394,29.935654893460367],[-89.23589235892359,29.932277738920604],[-89.23949239492394,29.92890058438084],[-89.25389253892538,29.92890058438084],[-89.27549275492754,29.925523429841064],[-89.28629286292863,29.92383485257119],[-89.29349293492935,29.920457698031427],[-89.29709297092971,29.92383485257119],[-89.2790927909279,29.937343470730255],[-89.26109261092611,29.94409777980978],[-89.23589235892359,29.94916351161943]]],[[[-89.27189271892719,29.9812464797472],[-89.2790927909279,29.96604928431826],[-89.29709297092971,29.942409202539892],[-89.30429304293042,29.932277738920604],[-89.32229322293223,29.91708054349165],[-89.32949329493294,29.915391966221776],[-89.31869318693187,29.925523429841064],[-89.30789307893079,29.937343470730255],[-89.30429304293042,29.94578635707967],[-89.29349293492935,29.962672129778497],[-89.2790927909279,29.982935057017087],[-89.27189271892719,29.9812464797472]]],[[[-89.43389433894339,30.145038474925826],[-89.42669426694266,30.14841562946559],[-89.42669426694266,30.143349897655938],[-89.43029430294303,30.133218434036635],[-89.4410944109441,30.136595588576412],[-89.43389433894339,30.145038474925826]]],[[[-88.94068940689407,30.217647297530775],[-88.92628926289262,30.217647297530775],[-88.94428944289443,30.214270142991012],[-88.96948969489695,30.21089298845125],[-88.96588965889659,30.214270142991012],[-88.94068940689407,30.217647297530775]]],[[[-88.50148501485015,30.2159587202609],[-88.50148501485015,30.224401606610314],[-88.42588425884259,30.2159587202609],[-88.4330843308433,30.20920441118136],[-88.4690846908469,30.21089298845125],[-88.50148501485015,30.2159587202609]]],[[[-89.05949059490595,30.258173152007956],[-89.05589055890559,30.25310742019832],[-89.0630906309063,30.249730265658542],[-89.06669066690667,30.24635311111878],[-89.0630906309063,30.23622164749949],[-89.06669066690667,30.22609018388019],[-89.08469084690847,30.195695793022296],[-89.08829088290882,30.197384370292184],[-89.09189091890919,30.197384370292184],[-89.09549095490955,30.199072947562072],[-89.0990909909099,30.202450102101835],[-89.09549095490955,30.205827256641598],[-89.08829088290882,30.212581565721123],[-89.08469084690847,30.2159587202609],[-89.09189091890919,30.224401606610314],[-89.0990909909099,30.2159587202609],[-89.10629106291063,30.227778761150077],[-89.12069120691207,30.23115591568984],[-89.1530915309153,30.22946733841995],[-89.1530915309153,30.23622164749949],[-89.10269102691026,30.234533070229602],[-89.07749077490774,30.241287379309142],[-89.0630906309063,30.258173152007956],[-89.05949059490595,30.258173152007956]]],[[[-79.33939339393393,33.05952284274336],[-79.3429934299343,33.0460142245843],[-79.3609936099361,33.005488370107116],[-79.36819368193682,33.005488370107116],[-79.36819368193682,33.02406272007582],[-79.36459364593645,33.042637070044535],[-79.35379353793537,33.057834265473474],[-79.33939339393393,33.06627715182289],[-79.33579335793358,33.064588574553014],[-79.33579335793358,33.062899997283125],[-79.33579335793358,33.06121142001324],[-79.33939339393393,33.05952284274336]]],[[[-77.97137971379713,33.89030285952565],[-77.96417964179642,33.89368001406541],[-77.94257942579425,33.91732009584376],[-77.96417964179642,33.85653131412799],[-77.97137971379713,33.84808842777858],[-77.98217982179821,33.85315415958823],[-77.99657996579965,33.85821989139788],[-78.0109801098011,33.864974200477405],[-78.01818018180181,33.87510566409671],[-78.0109801098011,33.891991436795536],[-77.99657996579965,33.89874574587506],[-77.97857978579785,33.89874574587506],[-77.97137971379713,33.89030285952565]]],[[[-77.87417874178742,34.087866400101916],[-77.86337863378634,34.11319505915016],[-77.85617856178561,34.14190087273816],[-77.84537845378453,34.167229531786404],[-77.82017820178201,34.17736099540571],[-77.82017820178201,34.172295263596055],[-77.82377823778238,34.172295263596055],[-77.82737827378273,34.17060668632618],[-77.84537845378453,34.12332652276946],[-77.85977859778598,34.09968644099111],[-77.87417874178742,34.087866400101916]]],[[[-77.43137431374313,34.499879253953296],[-77.41337413374133,34.50325640849307],[-77.37377373773738,34.52351933573166],[-77.35217352173521,34.526896490271426],[-77.35217352173521,34.521830758461775],[-77.35577355773557,34.521830758461775],[-77.35937359373594,34.520142181191886],[-77.38457384573846,34.501567831223184],[-77.46737467374673,34.46610770855564],[-77.49977499774998,34.459353399476115],[-77.51417514175141,34.45428766766646],[-77.61857618576185,34.37830169052175],[-77.6329763297633,34.3631044950928],[-77.61497614976149,34.39518746322058],[-77.57897578975789,34.42558185407846],[-77.44937449374494,34.49650209941353],[-77.43137431374313,34.499879253953296]]],[[[-76.89856898568985,34.69744279452958],[-76.73296732967329,34.71770572176817],[-76.68256682566825,34.70588568087899],[-76.68256682566825,34.69744279452958],[-76.80136801368013,34.70588568087899],[-76.82656826568265,34.70250852633923],[-77.10017100171001,34.65016263097286],[-77.08217082170822,34.66535982640181],[-77.05337053370533,34.6754912900211],[-76.89856898568985,34.69744279452958]]],[[[-76.07776077760778,35.07230694844354],[-76.07416074160741,35.073995525713414],[-76.05976059760597,35.07230694844354],[-76.03816038160382,35.06217548482424],[-76.04176041760417,35.057109753014586],[-76.04536045360453,35.057109753014586],[-76.0489604896049,35.05542117574471],[-76.05256052560526,35.05542117574471],[-76.12456124561245,35.011518166727754],[-76.14256142561425,34.99294381675905],[-76.14616146161461,34.99294381675905],[-76.1389613896139,35.00307528037834],[-76.10656106561065,35.03009251669647],[-76.09936099360993,35.04528971212541],[-76.09576095760957,35.05035544393506],[-76.08856088560886,35.05542117574471],[-76.08136081360813,35.06217548482424],[-76.07776077760778,35.07230694844354]]],[[[-75.65655656556565,37.46164378532755],[-75.66015660156602,37.44306943535885],[-75.68535685356854,37.41436362177083],[-75.71775717757177,37.368772035484],[-75.7249572495725,37.37383776729365],[-75.70695706957069,37.39916642634189],[-75.68535685356854,37.43631512627931],[-75.67815678156781,37.45488947624803],[-75.6709567095671,37.46333236259744],[-75.65655656556565,37.46164378532755]]],[[[-75.62055620556205,37.571401307869934],[-75.61335613356133,37.57815561694946],[-75.5989559895599,37.5747784624097],[-75.60255602556025,37.56295842152052],[-75.64215642156421,37.51061252615415],[-75.66015660156602,37.48359528983603],[-75.6709567095671,37.47684098075649],[-75.67455674556746,37.485283867105906],[-75.66375663756637,37.50385821707462],[-75.64215642156421,37.534252607932515],[-75.6349563495635,37.55789268971087],[-75.62055620556205,37.571401307869934]]],[[[-76.00576005760057,38.02731717073826],[-75.98775987759878,38.01887428438884],[-75.98055980559805,37.9935456253406],[-75.99135991359913,37.97328269810201],[-75.99495994959949,37.94457688451401],[-76.00576005760057,37.94964261632366],[-76.00936009360093,37.961462657212834],[-76.02016020160201,37.961462657212834],[-76.01656016560165,37.94964261632366],[-76.02016020160201,37.94457688451401],[-76.02016020160201,37.93782257543448],[-76.01656016560165,37.92937968908507],[-76.02376023760237,37.92769111181518],[-76.02736027360274,37.914182493656114],[-76.03096030960309,37.914182493656114],[-76.03096030960309,37.92937968908507],[-76.03096030960309,37.941199729974244],[-76.02736027360274,37.95133119359353],[-76.03456034560345,37.95470834813331],[-76.03816038160382,37.95133119359353],[-76.04536045360453,37.94964261632366],[-76.04536045360453,37.9648398117526],[-76.04536045360453,37.98003700718154],[-76.05256052560526,37.9935456253406],[-76.04536045360453,37.99861135715025],[-76.03096030960309,38.00029993442014],[-76.0129601296013,37.99185704807073],[-76.00216002160022,38.00029993442014],[-76.0129601296013,38.01043139803943],[-76.03816038160382,38.02056286165873],[-76.04176041760417,38.029005748008146],[-76.02736027360274,38.03407147981778],[-76.01656016560165,38.039137211627434],[-76.00936009360093,38.03576005708767],[-76.00576005760057,38.02731717073826]]],[[[-76.03456034560345,38.148894734169815],[-76.06336063360634,38.1590261977891],[-76.08496084960849,38.16071477505899],[-76.07776077760778,38.18266627956747],[-76.06336063360634,38.19448632045665],[-76.0489604896049,38.20124062953617],[-76.03456034560345,38.189420588646996],[-76.02376023760237,38.17928912502771],[-76.03096030960309,38.16578050686864],[-76.02736027360274,38.153960465979466],[-76.03456034560345,38.148894734169815]]],[[[-74.36054360543605,39.447410654709614],[-74.36774367743676,39.46429642740843],[-74.35334353343534,39.46936215921808],[-74.3029430294303,39.46429642740843],[-74.30654306543065,39.45923069559879],[-74.31374313743137,39.45585354105903],[-74.31734317343174,39.45416496378914],[-74.33174331743317,39.425459150201135],[-74.36054360543605,39.40181906842278],[-74.39294392943928,39.38831045026372],[-74.42534425344253,39.39337618207337],[-74.44694446944469,39.420393418391484],[-74.43254432544325,39.425459150201135],[-74.42174421744217,39.41701626385172],[-74.41454414544145,39.405196222962545],[-74.40014400144001,39.40013049115289],[-74.38574385743857,39.40688480023242],[-74.37134371343713,39.43727919109031],[-74.36054360543605,39.447410654709614]]],[[[-73.25533255332553,40.639546207246795],[-73.32013320133201,40.634480475437144],[-73.38853388533884,40.617594702738316],[-73.57573575735756,40.575380270991246],[-73.56493564935649,40.5905774664202],[-73.44253442534425,40.619283280008204],[-73.39933399333992,40.62941474362749],[-73.37773377733777,40.634480475437144],[-73.35613356133561,40.639546207246795],[-73.3381333813338,40.644611939056446],[-73.31653316533165,40.64630051632632],[-73.26973269732697,40.64967767086608],[-73.24813248132482,40.64798909359621],[-73.25533255332553,40.639546207246795]]],[[[-72.8809288092881,40.73410653436022],[-72.8341283412834,40.74761515251929],[-72.78012780127801,40.76618950248799],[-72.75852758527584,40.76956665702777],[-72.75852758527584,40.759435193408464],[-72.80532805328053,40.75099230705905],[-72.83052830528305,40.74086084343975],[-72.91332913329133,40.71215502985174],[-72.99252992529925,40.68851494807339],[-73.03933039330393,40.67331775264445],[-73.14733147331474,40.644611939056446],[-73.24453244532445,40.624349011817856],[-73.29853298532984,40.62266043454797],[-73.30573305733057,40.62941474362749],[-73.25533255332553,40.62941474362749],[-73.21933219332193,40.639546207246795],[-73.1761317613176,40.65136624813597],[-73.10413104131041,40.66656344356491],[-73.03933039330393,40.681760638993865],[-73.01413014130141,40.69020352534328],[-72.94932949329493,40.71553218439152],[-72.91332913329133,40.723975070740934],[-72.8809288092881,40.73410653436022]]],[[[-71.55971559715597,41.20184243811774],[-71.56691566915669,41.19339955176832],[-71.55971559715597,41.18326808814902],[-71.55251552515524,41.176513779069495],[-71.54531545315453,41.16300516091043],[-71.5489154891549,41.15287369729113],[-71.57051570515705,41.149496542751365],[-71.59931599315993,41.1461193882116],[-71.61371613716136,41.154562274561016],[-71.61371613716136,41.16807089272008],[-71.60651606516065,41.17989093360926],[-71.59571595715957,41.18833381995867],[-71.5921159211592,41.196776706308086],[-71.58131581315813,41.20353101538761],[-71.58131581315813,41.21535105627679],[-71.57771577715776,41.22548251989609],[-71.57411574115741,41.22885967443585],[-71.56691566915669,41.22548251989609],[-71.55251552515524,41.21535105627679],[-71.55971559715597,41.20184243811774]]],[[[-71.99891998919989,41.252499756214206],[-72.02412024120241,41.254188333484095],[-72.03852038520385,41.24912260167444],[-72.03492034920349,41.26094264256362],[-72.02772027720277,41.26769695164316],[-72.02052020520205,41.276139837992574],[-72.00972009720097,41.276139837992574],[-72.00252002520025,41.26769695164316],[-71.99891998919989,41.274451260722685],[-71.99531995319953,41.2828941470721],[-71.97731977319773,41.28458272434199],[-71.95211952119521,41.28627130161186],[-71.94131941319412,41.2930256106914],[-71.91971919719197,41.29133703342151],[-71.9269192691927,41.281205569802225],[-71.94491944919449,41.276139837992574],[-71.970119701197,41.274451260722685],[-71.98811988119881,41.259254065293746],[-71.99891998919989,41.252499756214206]]],[[[-70.50130501305013,41.394340246884354],[-70.48690486904869,41.40278313323377],[-70.46890468904688,41.419668905932596],[-70.45450454504545,41.4298003695519],[-70.44730447304472,41.41291459685307],[-70.44370443704436,41.38252020599518],[-70.44730447304472,41.36732301056624],[-70.45450454504545,41.358880124216824],[-70.46530465304653,41.3605687014867],[-70.47970479704797,41.36901158783611],[-70.4941049410494,41.38252020599518],[-70.50130501305013,41.394340246884354]]],[[[-69.9720997209972,41.6543811464463],[-69.9648996489965,41.651003991906535],[-69.96129961299613,41.64762683736676],[-69.96129961299613,41.64087252828723],[-69.95769957699576,41.63242964193782],[-69.97569975699757,41.61216671469923],[-70.00090000900009,41.55306651025333],[-70.02250022500225,41.551377932983456],[-69.97929979299792,41.62736391012817],[-69.9720997209972,41.6543811464463]]],[[[-123.97263972639726,46.492155024660235],[-123.97263972639726,46.48540071558068],[-123.96543965439653,46.48033498377106],[-123.94743947439474,46.46344921107223],[-123.94743947439474,46.44825201564328],[-123.94383943839438,46.4178576247854],[-123.96543965439653,46.40603758389622],[-123.97623976239763,46.43980912929385],[-123.99783997839978,46.45331774745293],[-123.99063990639905,46.473580674691505],[-123.99063990639905,46.48877787012046],[-123.97983979839799,46.497220756469886],[-123.97263972639726,46.492155024660235]]],[[[-122.73062730627306,48.096303431048796],[-122.71982719827199,48.10305774012832],[-122.7090270902709,48.10305774012832],[-122.70182701827018,48.09799200831867],[-122.68742687426874,48.07266334927044],[-122.67662676626766,48.04902326749206],[-122.67302673026731,48.02369460844383],[-122.68022680226802,48.006808835745005],[-122.70182701827018,48.00849741301488],[-122.71622716227162,48.02369460844383],[-122.73062730627306,48.042268958412535],[-122.73782737827378,48.055777576571614],[-122.74142741427414,48.07435192654032],[-122.73782737827378,48.082794812889716],[-122.73062730627306,48.082794812889716],[-122.72342723427235,48.07604050381019],[-122.71982719827199,48.05408899930171],[-122.71622716227162,48.04902326749206],[-122.70182701827018,48.04902326749206],[-122.70182701827018,48.064220462921014],[-122.71262712627126,48.08448339015962],[-122.73062730627306,48.096303431048796]]],[[[-122.69462694626947,48.585990839314775],[-122.68022680226802,48.572482221155724],[-122.67302673026731,48.56910506661595],[-122.68022680226802,48.564039334806296],[-122.68742687426874,48.55728502572677],[-122.68742687426874,48.54715356210747],[-122.69462694626947,48.54377640756769],[-122.70182701827018,48.54208783029782],[-122.71262712627126,48.54208783029782],[-122.72342723427235,48.54884213937734],[-122.73782737827378,48.57754795296535],[-122.73422734227341,48.591056571124426],[-122.7270272702727,48.60118803474373],[-122.71622716227162,48.60625376655335],[-122.70182701827018,48.60118803474373],[-122.69462694626947,48.5927451483943],[-122.69462694626947,48.585990839314775]]],[[[-123.28863288632886,48.613008075632905],[-123.28143281432814,48.611319498363],[-123.28143281432814,48.60118803474373],[-123.28863288632886,48.591056571124426],[-123.30303303033031,48.59781088020395],[-123.31383313833138,48.607942343823254],[-123.32463324633247,48.61976238471243],[-123.33543335433353,48.63158242560161],[-123.3390333903339,48.634959580141384],[-123.33183331833318,48.62989384833173],[-123.33183331833318,48.634959580141384],[-123.3390333903339,48.64677962103056],[-123.3390333903339,48.648468198300435],[-123.32823328233283,48.64002531195101],[-123.31743317433174,48.62820527106183],[-123.30663306633066,48.618073807442556],[-123.29583295832958,48.61469665290278],[-123.28863288632886,48.613008075632905]]],[[[-122.62262622626227,48.66873112553901],[-122.61542615426154,48.65859966191974],[-122.61182611826118,48.648468198300435],[-122.6190261902619,48.64677962103056],[-122.63342633426333,48.65184535284018],[-122.6550265502655,48.66535397099926],[-122.66222662226622,48.670419702808914],[-122.68022680226802,48.688994052777616],[-122.70182701827018,48.70756840274632],[-122.71622716227162,48.716011289095746],[-122.71982719827199,48.724454175445146],[-122.71622716227162,48.7396513708741],[-122.69822698226983,48.73458563906445],[-122.67302673026731,48.70419124820657],[-122.66222662226622,48.697436939127044],[-122.64782647826479,48.69068263004749],[-122.63342633426333,48.683928320967965],[-122.62982629826298,48.67717401188844],[-122.62262622626227,48.66873112553901]]],[[[-125.9490594905949,49.200632965552074],[-125.94545945459454,49.1972558110123],[-125.93825938259383,49.19050150193277],[-125.93825938259383,49.18543577012312],[-125.94545945459454,49.18374719285325],[-125.95265952659526,49.18205861558337],[-125.95985959859598,49.17192715196407],[-125.96345963459635,49.15335280199537],[-125.97065970659706,49.14828707018572],[-125.97785977859778,49.14997564745559],[-126.01026010260102,49.15841853380502],[-126.01746017460175,49.16854999742429],[-126.01746017460175,49.18205861558337],[-126.03186031860318,49.19050150193277],[-126.03546035460354,49.20232154282195],[-126.02466024660247,49.21245300644125],[-126.00666006660066,49.214141583711125],[-125.9850598505985,49.21076442917138],[-125.95985959859598,49.205698697361726],[-125.9490594905949,49.200632965552074]]],[[[-126.08226082260822,49.31545621990409],[-126.0750607506075,49.303636179014916],[-126.07146071460714,49.290127560855865],[-126.06426064260643,49.27830751996669],[-126.04986049860499,49.26648747907751],[-126.06786067860679,49.25635601545821],[-126.08946089460895,49.254667438188335],[-126.13626136261362,49.26479890180761],[-126.15786157861578,49.27324178815704],[-126.19386193861939,49.271553210887134],[-126.22266222662226,49.276618942696786],[-126.24066240662407,49.30194760174504],[-126.22626226262263,49.30701333355469],[-126.22986229862298,49.320521951713744],[-126.23346233462334,49.33234199260292],[-126.24066240662407,49.34247345622222],[-126.22986229862298,49.357670651651176],[-126.23346233462334,49.366113538000576],[-126.22986229862298,49.37793357888975],[-126.22626226262263,49.382999310699404],[-126.20466204662046,49.382999310699404],[-126.15066150661507,49.396507928858455],[-126.13266132661326,49.396507928858455],[-126.10746107461074,49.38468788796928],[-126.08586085860858,49.36273638346083],[-126.0750607506075,49.339096301682446],[-126.08226082260822,49.31545621990409]]],[[[-123.33183331833318,49.3728678470801],[-123.33543335433353,49.3644249607307],[-123.34263342633426,49.355982074381274],[-123.36063360633605,49.34247345622222],[-123.37503375033751,49.33740772441257],[-123.38583385833857,49.3357191471427],[-123.41463414634146,49.33740772441257],[-123.42543425434255,49.34078487895235],[-123.42903429034291,49.347539188031874],[-123.42543425434255,49.355982074381274],[-123.42543425434255,49.36780211527045],[-123.41823418234182,49.38131073342953],[-123.38583385833857,49.40326223793801],[-123.37143371433714,49.41170512428741],[-123.34983349833499,49.41677085609706],[-123.32463324633247,49.42014801063684],[-123.31383313833138,49.41339370155728],[-123.31743317433174,49.39988508339823],[-123.32463324633247,49.38975361977893],[-123.33183331833318,49.38468788796928],[-123.33183331833318,49.38131073342953],[-123.32823328233283,49.38131073342953],[-123.33183331833318,49.3728678470801]]],[[[-124.60624606246063,49.53159411044908],[-124.5990459904599,49.52821695590933],[-124.59544595445954,49.521462646829775],[-124.60624606246063,49.521462646829775],[-124.62424624246242,49.52315122409968],[-124.63504635046351,49.51808549229003],[-124.64224642246423,49.50457687413095],[-124.6530465304653,49.49613398778155],[-124.66384663846638,49.49444541051167],[-124.6710467104671,49.49782256505142],[-124.69264692646927,49.5096426059406],[-124.70344703447034,49.521462646829775],[-124.70344703447034,49.5383484195286],[-124.68544685446855,49.548479883147905],[-124.65664656646567,49.54679130587803],[-124.60624606246063,49.53159411044908]]],[[[-127.24147241472414,50.02128151871506],[-127.23067230672306,50.01283863236566],[-127.23067230672306,50.00946147782588],[-127.23427234272341,50.00608432328613],[-127.24147241472414,50.002707168746355],[-127.25227252272524,49.99933001420658],[-127.27387273872739,49.97737850969813],[-127.28467284672845,49.979067086968],[-127.29547295472955,49.9875099733174],[-127.30627306273063,49.99257570512705],[-127.3170731707317,49.99933001420658],[-127.32067320673207,50.007772900556006],[-127.31347313473134,50.01283863236566],[-127.31347313473134,50.01959294144518],[-127.30987309873098,50.02634725052471],[-127.30267302673028,50.03310155960423],[-127.28467284672845,50.03647871414401],[-127.2630726307263,50.034790136874136],[-127.24147241472414,50.02128151871506]]],[[[-126.53946539465394,50.583577749586],[-126.5250652506525,50.58020059504625],[-126.51786517865179,50.5751348632366],[-126.51786517865179,50.57006913142695],[-126.52866528665287,50.5650033996173],[-126.54306543065431,50.56331482234742],[-126.58266582665826,50.55656051326787],[-126.6150661506615,50.55318335872812],[-126.6510665106651,50.55824909053777],[-126.65826658266582,50.56331482234742],[-126.64746647466475,50.57006913142695],[-126.65466654666547,50.57851201777635],[-126.66906669066691,50.5852663268559],[-126.67266672666727,50.590332058665524],[-126.66186661866618,50.590332058665524],[-126.62586625866258,50.590332058665524],[-126.61146611466114,50.59202063593543],[-126.59706597065971,50.5937092132053],[-126.58626586265862,50.595397790475175],[-126.58266582665826,50.590332058665524],[-126.57546575465754,50.58864348139565],[-126.53946539465394,50.583577749586]]],[[[-126.33786337863378,50.6038406768246],[-126.32346323463234,50.60552925409448],[-126.28746287462874,50.6038406768246],[-126.26226262262622,50.58020059504625],[-126.24426244262443,50.57175770869682],[-126.22626226262263,50.57006913142695],[-126.23346233462334,50.55656051326787],[-126.24426244262443,50.554871935997994],[-126.2550625506255,50.554871935997994],[-126.26946269462695,50.554871935997994],[-126.28026280262802,50.54980620418834],[-126.29826298262982,50.537986163299166],[-126.30546305463054,50.53460900875942],[-126.41346413464134,50.527854699679864],[-126.42066420664207,50.524477545140115],[-126.44946449464494,50.519411813330464],[-126.62586625866258,50.53460900875942],[-126.58266582665826,50.54811762691847],[-126.36666366663667,50.583577749586],[-126.3630636306363,50.5852663268559],[-126.34506345063451,50.59877494501495],[-126.33786337863378,50.6038406768246]]],[[[-127.84627846278462,50.92298178083243],[-127.84267842678426,50.91960462629265],[-127.8390783907839,50.91116173994325],[-127.8390783907839,50.902718853593825],[-127.84987849878499,50.8959645445143],[-127.86427864278642,50.89258738997455],[-127.87507875078751,50.89089881270465],[-127.88587885878859,50.89258738997455],[-127.89667896678966,50.897653121784174],[-127.92187921879218,50.8959645445143],[-127.93627936279363,50.90440743086373],[-127.95427954279543,50.902718853593825],[-127.97947979479795,50.907784585403476],[-127.9830798307983,50.916227471752904],[-127.93987939879398,50.924670358102304],[-127.92907929079291,50.929736089911955],[-127.92187921879218,50.93649039899148],[-127.91467914679146,50.93986755353126],[-127.86067860678607,50.93649039899148],[-127.84627846278462,50.929736089911955],[-127.84627846278462,50.92298178083243]]],[[[-127.54387543875438,51.090150930550806],[-127.52587525875259,51.08339662147128],[-127.52587525875259,51.06651084877245],[-127.54027540275402,51.0513136533435],[-127.55467554675548,51.049625076073625],[-127.56547565475654,51.0513136533435],[-127.57627576275763,51.049625076073625],[-127.59067590675906,51.0513136533435],[-127.60147601476015,51.05975653969293],[-127.60867608676087,51.06988800331223],[-127.61227612276122,51.07495373512188],[-127.59787597875979,51.08001946693153],[-127.55827558275583,51.08846235328093],[-127.54387543875438,51.090150930550806]]],[[[-132.23112231122312,52.99486609097849],[-132.22032220322203,52.99148893643874],[-132.20232202322023,52.98473462735919],[-132.21672216722166,52.974603163739914],[-132.3031230312303,52.966160277390486],[-132.32472324723247,52.96953743193026],[-132.38232382323824,53.00330897732792],[-132.3751237512375,53.00668613186767],[-132.36432364323645,53.00668613186767],[-132.23112231122312,52.99486609097849]]],[[[-166.0930609306093,53.98099521659],[-166.08946089460895,53.977618062050226],[-166.07866078660786,53.9708637529707],[-166.08946089460895,53.96242086662127],[-166.1110611106111,53.95566655754175],[-166.15426154261542,53.95566655754175],[-166.16866168661687,53.95735513481165],[-166.19026190261903,53.964109443891175],[-166.19746197461976,53.98099521659],[-166.19026190261903,53.9894381029394],[-166.17946179461794,53.9894381029394],[-166.15786157861578,53.99281525747918],[-166.11466114661147,53.9894381029394],[-166.0930609306093,53.98099521659]]],[[[-132.979929799298,54.24610184796157],[-132.96912969129693,54.23934753888204],[-132.96552965529656,54.23428180707239],[-132.97632976329763,54.217396034373564],[-132.979929799298,54.20388741621451],[-132.97632976329763,54.19713310713499],[-132.98352983529836,54.19375595259521],[-133.00153001530015,54.19037879805546],[-133.01233012330124,54.19375595259521],[-133.0159301593016,54.20557599348439],[-133.01953019530197,54.21570745710369],[-133.0339303393034,54.217396034373564],[-133.04473044730446,54.21908461164347],[-133.0519305193052,54.222461766183216],[-133.0771307713077,54.22415034345309],[-133.08073080730807,54.23259322980252],[-133.0771307713077,54.24610184796157],[-133.06273062730628,54.25623331158087],[-133.0411304113041,54.25961046612065],[-133.0051300513005,54.254544734311],[-132.99432994329942,54.25285615704112],[-132.979929799298,54.24610184796157]]],[[[-159.5229952299523,54.79151230613368],[-159.51579515795157,54.78644657432403],[-159.5121951219512,54.77800368797463],[-159.51579515795157,54.769560801625204],[-159.52659526595266,54.75942933800593],[-159.54819548195482,54.75436360619628],[-159.56979569795698,54.75436360619628],[-159.58779587795877,54.75942933800593],[-159.5949959499595,54.766183647085455],[-159.59139591395913,54.77631511070476],[-159.59139591395913,54.78644657432403],[-159.59859598595986,54.796578037943334],[-159.60219602196022,54.80502092429276],[-159.6057960579606,54.81177523337229],[-159.59859598595986,54.82021811972169],[-159.58419584195843,54.823595274261464],[-159.56979569795698,54.82190669699159],[-159.55899558995588,54.815152387912036],[-159.54459544595446,54.806709501562636],[-159.52659526595266,54.79488946067346],[-159.5229952299523,54.79151230613368]]],[[[-161.33381333813338,55.1917051190959],[-161.33021330213302,55.18832796455612],[-161.33021330213302,55.1815736554766],[-161.33021330213302,55.16975361458742],[-161.3410134101341,55.162999305507896],[-161.3590135901359,55.162999305507896],[-161.36981369813697,55.16468788277777],[-161.42381423814237,55.184950810016346],[-161.43821438214383,55.19677085090555],[-161.43821438214383,55.20521373725495],[-161.42741427414273,55.21365662360435],[-161.4130141301413,55.218722355414],[-161.37341373413733,55.218722355414],[-161.35541355413554,55.22209950995378],[-161.3410134101341,55.218722355414],[-161.33741337413375,55.21365662360435],[-161.3410134101341,55.206902314524825],[-161.33741337413375,55.198459428175426],[-161.33381333813338,55.1917051190959]]],[[[-161.56061560615606,55.25418247808156],[-161.54981549815497,55.25249390081166],[-161.54261542615427,55.24067385992248],[-161.5570155701557,55.21534520087425],[-161.56421564215643,55.20859089179473],[-161.5750157501575,55.206902314524825],[-161.5930159301593,55.206902314524825],[-161.63621636216362,55.193393696365774],[-161.64701647016471,55.19508227363565],[-161.6650166501665,55.198459428175426],[-161.67581675816757,55.2001480054453],[-161.69021690216903,55.211968046334476],[-161.6830168301683,55.23054239630318],[-161.65781657816578,55.242362437192384],[-161.6110161101611,55.24573959173213],[-161.56061560615606,55.25418247808156]]],[[[-160.0378003780038,55.326791300686494],[-160.03420034200343,55.323414146146746],[-160.03060030600307,55.31328268252744],[-160.04140041400413,55.30652837344792],[-160.07380073800738,55.30821695071779],[-160.09540095400953,55.31497125979732],[-160.109801098011,55.32510272341662],[-160.109801098011,55.33354560976605],[-160.0990009900099,55.340299918845574],[-160.08460084600847,55.34367707338532],[-160.06660066600665,55.345365650655225],[-160.0630006300063,55.34198849611545],[-160.05940059400595,55.33861134157567],[-160.05220052200522,55.33354560976605],[-160.0378003780038,55.326791300686494]]],[[[-159.3141931419314,55.81141297714285],[-159.29979299792998,55.79283862717412],[-159.2889928899289,55.77933000901507],[-159.2889928899289,55.76750996812589],[-159.30339303393035,55.759067081776465],[-159.31779317793178,55.76750996812589],[-159.32859328593287,55.777641431745195],[-159.3429934299343,55.78439574082472],[-159.3609936099361,55.786084318094595],[-159.3609936099361,55.79790435898377],[-159.33219332193323,55.813101554412725],[-159.3141931419314,55.81141297714285]]],[[[-156.6789667896679,56.03937090857701],[-156.6789667896679,56.03768233130711],[-156.6789667896679,56.03430517676736],[-156.6789667896679,56.030928022227585],[-156.68256682566826,56.02417371314806],[-156.68256682566826,56.01910798133841],[-156.6789667896679,56.017419404068534],[-156.68256682566826,56.01235367225888],[-156.69336693366932,56.008976517719105],[-156.70776707767078,56.01404224952876],[-156.71856718567184,56.022485135878185],[-156.7329673296733,56.02586229041793],[-156.74736747367473,56.03430517676736],[-156.74376743767436,56.04105948584689],[-156.7329673296733,56.03937090857701],[-156.72576725767257,56.04105948584689],[-156.71856718567184,56.044436640386664],[-156.71136711367114,56.05119094946619],[-156.70776707767078,56.06132241308549],[-156.70056700567005,56.066388144895114],[-156.68976689766896,56.05963383581559],[-156.6789667896679,56.04612521765654],[-156.6789667896679,56.04105948584689],[-156.6789667896679,56.03937090857701]]],[[[-156.77976779767798,56.18965428559656],[-156.76536765367655,56.177834244707384],[-156.76536765367655,56.16770278108808],[-156.7761677616776,56.152505585659156],[-156.79056790567904,56.152505585659156],[-156.8049680496805,56.16432562654833],[-156.80856808568086,56.17952282197726],[-156.80856808568086,56.18965428559656],[-156.80856808568086,56.19809717194599],[-156.80136801368013,56.20147432648574],[-156.80136801368013,56.204851481025514],[-156.79776797767977,56.21160579010504],[-156.7941679416794,56.22004867645444],[-156.77976779767798,56.22680298553399],[-156.7761677616776,56.223425830994216],[-156.77976779767798,56.218360099184565],[-156.78336783367834,56.20822863556526],[-156.78336783367834,56.19809717194599],[-156.77976779767798,56.18965428559656]]],[[[-157.8129781297813,56.343314817155886],[-157.80577805778057,56.33656050807636],[-157.80577805778057,56.32811762172693],[-157.8129781297813,56.32305188991731],[-157.82017820178203,56.31798615810766],[-157.83457834578346,56.31292042629801],[-157.84897848978488,56.31967473537753],[-157.8669786697867,56.329806198996835],[-157.8849788497885,56.33318335353658],[-157.89937899378992,56.338249085346234],[-157.8957789577896,56.34669197169566],[-157.8561785617856,56.36188916712459],[-157.82737827378273,56.36188916712459],[-157.8129781297813,56.356823435314965],[-157.8129781297813,56.35344628077519],[-157.8129781297813,56.34838054896554],[-157.8129781297813,56.343314817155886]]],[[[-153.8349383493835,57.501678824295425],[-153.83133831338313,57.4847930515966],[-153.82773827738276,57.45102150619894],[-153.84213842138422,57.43582431076999],[-153.86733867338674,57.452710083468816],[-153.88173881738817,57.47635016524717],[-153.88533885338853,57.4949245152159],[-153.8889388893889,57.50843313337495],[-153.88173881738817,57.515187442454476],[-153.87453874538744,57.521941751534],[-153.87453874538744,57.533761792423206],[-153.86733867338674,57.54389325604248],[-153.84573845738458,57.54051610150273],[-153.83133831338313,57.52531890607378],[-153.83133831338313,57.510121710644825],[-153.8349383493835,57.501678824295425]]],[[[-152.34452344523444,57.92382314176609],[-152.33732337323374,57.92213456449622],[-152.32652326523265,57.91538025541669],[-152.33012330123302,57.906937369067265],[-152.35532355323554,57.893428750908214],[-152.3589235892359,57.88836301909856],[-152.36972369723696,57.88667444182869],[-152.38052380523806,57.89005159636844],[-152.39852398523985,57.89680590544796],[-152.4849248492485,57.91538025541669],[-152.50652506525066,57.92551171903597],[-152.4921249212492,57.94070891446492],[-152.4849248492485,57.94915180081435],[-152.48852488524886,57.95084037808422],[-152.48852488524886,57.95421753262397],[-152.48852488524886,57.955906109893874],[-152.4921249212492,57.95759468716375],[-152.49572495724956,57.95759468716375],[-152.4921249212492,57.960971841703525],[-152.4849248492485,57.9626604189734],[-152.4741247412474,57.960971841703525],[-152.46332463324632,57.95928326443362],[-152.4309243092431,57.969414728052925],[-152.42372423724237,57.964348996243274],[-152.42372423724237,57.9525289553541],[-152.41652416524164,57.9440860690047],[-152.41652416524164,57.939020337195046],[-152.42372423724237,57.933954605385395],[-152.41652416524164,57.93057745084562],[-152.38772387723878,57.92720029630587],[-152.36252362523624,57.92720029630587],[-152.35532355323554,57.92551171903597],[-152.34452344523444,57.92382314176609]]],[[[-152.7441274412744,57.98461192348188],[-152.72972729727297,57.982923346211976],[-152.72972729727297,57.974480459862576],[-152.74052740527407,57.969414728052925],[-152.74052740527407,57.9626604189734],[-152.74052740527407,57.95084037808422],[-152.74772747727476,57.939020337195046],[-152.76572765727656,57.93057745084562],[-152.78732787327874,57.92551171903597],[-152.8089280892809,57.928888873575744],[-152.8269282692827,57.937331759925144],[-152.8521285212852,57.9440860690047],[-152.85932859328594,57.95421753262397],[-152.8521285212852,57.96772615078305],[-152.83412834128342,57.974480459862576],[-152.7549275492755,57.9812347689421],[-152.7441274412744,57.98461192348188]]],[[[-160.25740257402575,58.678617181403666],[-160.24660246602465,58.67186287232414],[-160.2430024300243,58.66341998597471],[-160.25380253802538,58.651599945085536],[-160.2682026820268,58.638091326926485],[-160.27540275402754,58.63640274965658],[-160.27180271802717,58.651599945085536],[-160.2790027900279,58.66510856324459],[-160.29340293402933,58.67186287232414],[-160.3150031500315,58.68368291321332],[-160.3150031500315,58.69043722229284],[-160.3150031500315,58.69888010864224],[-160.3078030780308,58.7056344177218],[-160.30060300603006,58.709011572261545],[-160.31140311403115,58.71576588134107],[-160.30060300603006,58.72927449950015],[-160.2790027900279,58.71914303588085],[-160.27540275402754,58.703945840451894],[-160.2790027900279,58.69043722229284],[-160.27540275402754,58.678617181403666],[-160.25740257402575,58.678617181403666]]],[[[-160.38340383403835,58.730963076770024],[-160.38340383403835,58.72589734496037],[-160.37980379803798,58.72083161315072],[-160.38340383403835,58.71070014953142],[-160.3942039420394,58.69888010864224],[-160.4050040500405,58.68874864502297],[-160.41580415804157,58.681994335943415],[-160.42660426604266,58.68030575867354],[-160.4338043380434,58.68537149048319],[-160.4338043380434,58.69043722229284],[-160.4230042300423,58.7242087676905],[-160.41580415804157,58.73771738584955],[-160.4050040500405,58.75122600400863],[-160.39060390603908,58.73771738584955],[-160.38340383403835,58.730963076770024]]],[[[-44.5990459904599,59.9636244837844],[-44.58824588245881,59.97713310194345],[-44.55944559445595,59.987264565562754],[-44.5270452704527,59.987264565562754],[-44.51624516245161,59.97713310194345],[-44.51624516245161,59.956870174704875],[-44.54144541445413,59.9450501338157],[-44.57744577445774,59.94673871108557],[-44.5990459904599,59.9636244837844]]],[[[-44.203042030420306,60.10715355172442],[-44.21384213842137,60.1105307062642],[-44.23904239042389,60.12235074715338],[-44.24624246242462,60.1291050562329],[-44.24624246242462,60.147679406201604],[-44.228242282422826,60.166253756170306],[-44.20664206642067,60.174696642519734],[-44.192241922419214,60.16287660163056],[-44.18144181441815,60.15612229255103],[-44.17064170641706,60.14599082893173],[-44.167041670416694,60.13417078804255],[-44.17424174241742,60.12235074715338],[-44.159841598415966,60.1088421289943],[-44.14544145441454,60.095333510835246],[-44.109441094410926,60.07338200632677],[-44.084240842408406,60.06493911997737],[-44.033840338403365,60.054807656358065],[-44.008640086400845,60.04636477000864],[-44.033840338403365,60.041299038198986],[-44.13824138241381,60.041299038198986],[-44.152641526415266,60.04636477000864],[-44.16344163441633,60.05649623362794],[-44.185041850418486,60.09364493356537],[-44.192241922419214,60.103776397184646],[-44.203042030420306,60.10715355172442]]],[[[-45.30465304653046,60.14261367439195],[-45.29025290252903,60.166253756170306],[-45.26865268652685,60.18482810613904],[-45.24705247052469,60.18989383794869],[-45.22185221852217,60.16963091071008],[-45.22185221852217,60.166253756170306],[-45.22185221852217,60.16118802436068],[-45.22545225452254,60.15612229255103],[-45.22185221852217,60.14936798347148],[-45.26145261452615,60.1375479425823],[-45.283052830528305,60.13585936531243],[-45.30465304653046,60.14261367439195]]],[[[-45.15345153451534,60.38239164671529],[-45.13545135451355,60.36044014220684],[-45.14265142651425,60.34355436950801],[-45.17145171451713,60.313159978650106],[-45.182251822518225,60.277699855982576],[-45.182251822518225,60.272634124172924],[-45.19665196651965,60.269256969633176],[-45.22545225452254,60.25405977420422],[-45.26865268652685,60.242239733315046],[-45.31905319053189,60.20509103337761],[-45.34425344253441,60.19664814702821],[-45.40185401854018,60.18989383794869],[-45.41265412654127,60.19495956975834],[-45.38745387453875,60.21691107426679],[-45.39465394653945,60.23041969242587],[-45.38745387453875,60.2473054651247],[-45.37305373053729,60.27938843325245],[-45.365853658536594,60.29289705141153],[-45.36225362253623,60.308094246840454],[-45.3550535505355,60.37394876036589],[-45.35145351453514,60.389145955794845],[-45.333453334533345,60.39590026487437],[-45.308253082530825,60.394211687604496],[-45.28665286652867,60.38576880125507],[-45.24705247052469,60.36044014220684],[-45.232652326523265,60.38070306944542],[-45.207452074520745,60.39083453306472],[-45.17865178651786,60.389145955794845],[-45.15345153451534,60.38239164671529]]],[[[-45.056250562505625,60.38239164671529],[-45.09585095850957,60.38239164671529],[-45.11745117451173,60.38745737852494],[-45.131851318513185,60.402654573953896],[-45.131851318513185,60.433048964811775],[-45.09585095850957,60.44824616024073],[-45.00225002250022,60.4499347375106],[-45.00225002250022,60.446557582970854],[-45.00225002250022,60.44318042843108],[-45.00945009450095,60.43642611935155],[-45.02745027450274,60.40434315122377],[-45.04185041850417,60.389145955794845],[-45.056250562505625,60.38239164671529]]],[[[-44.99504995049949,60.4127860375732],[-44.98784987849879,60.43642611935155],[-44.973449734497336,60.451623314780505],[-44.95184951849518,60.45331189205038],[-44.92664926649266,60.43642611935155],[-44.930249302493024,60.43473754208168],[-44.93384933849339,60.4313603875419],[-44.93384933849339,60.427983233002124],[-44.93384933849339,60.4229175011925],[-44.94104941049409,60.4127860375732],[-44.948249482494816,60.402654573953896],[-44.96984969849697,60.38576880125507],[-44.998649986499856,60.357062987667064],[-45.00945009450095,60.34693152404776],[-45.06345063450635,60.31991428772963],[-45.09585095850957,60.31147140138023],[-45.11745117451173,60.313159978650106],[-45.1030510305103,60.31991428772963],[-45.08865088650887,60.33004575134893],[-45.081450814508145,60.34186579223811],[-45.08505085050851,60.35537441039719],[-45.056250562505625,60.35875156493694],[-45.02745027450274,60.36888302855624],[-45.005850058500585,60.38576880125507],[-44.99504995049949,60.4127860375732]]],[[[-45.358653586535866,60.47864055109861],[-45.35145351453514,60.45837762386003],[-45.36225362253623,60.4499347375106],[-45.38025380253802,60.44486900570095],[-45.39825398253981,60.43642611935155],[-45.39465394653945,60.427983233002124],[-45.40545405454054,60.424606078462375],[-45.42345423454233,60.42629465573225],[-45.441454414544154,60.4313603875419],[-45.43065430654306,60.438114696621426],[-45.416254162541634,60.44318042843108],[-45.40545405454054,60.4499347375106],[-45.39465394653945,60.47019766474921],[-45.383853838538386,60.47864055109861],[-45.36945369453693,60.48032912836851],[-45.358653586535866,60.47864055109861]]],[[[-45.97425974259741,60.669449782595365],[-45.977859778597775,60.68126982348454],[-45.95625956259562,60.68126982348454],[-45.81225812258123,60.67113835986524],[-45.78345783457834,60.66269547351584],[-45.79065790657907,60.65256400989654],[-45.80865808658086,60.64412112354711],[-45.826658266582655,60.639055391737486],[-45.84105841058411,60.64580970081701],[-45.851858518585175,60.64580970081701],[-45.91305913059131,60.62892392811818],[-45.94905949059489,60.62216961903866],[-45.977859778597775,60.62385819630853],[-45.98865988659887,60.63736681446758],[-45.97425974259741,60.669449782595365]]],[[[-64.61164611646116,60.68971270983397],[-64.59724597245972,60.68802413256407],[-64.59364593645937,60.682958400754416],[-64.59364593645937,60.677892668944764],[-64.59364593645937,60.669449782595365],[-64.59724597245972,60.65087543262666],[-64.6080460804608,60.63061250538806],[-64.6260462604626,60.61372673268923],[-64.65844658446584,60.60528384633983],[-64.69084690846908,60.588398073641],[-64.70164701647016,60.59008665091088],[-64.71244712447124,60.5968409599904],[-64.7160471604716,60.60528384633983],[-64.69084690846908,60.615415309959104],[-64.63684636846368,60.66269547351584],[-64.61884618846189,60.68633555529419],[-64.61164611646116,60.68971270983397]]],[[[-45.89145891458915,60.69815559618337],[-45.96705967059671,60.696467018913495],[-45.98865988659887,60.69477844164359],[-46.00666006660066,60.68802413256407],[-46.04626046260461,60.65931831897606],[-46.06426064260643,60.64918685535676],[-46.08946089460895,60.642432546277234],[-46.10026100261001,60.642432546277234],[-46.111061110611104,60.642432546277234],[-46.12186121861217,60.647498278086886],[-46.129061290612896,60.65425258716641],[-46.13986139861399,60.655941164436314],[-46.15066150661505,60.655941164436314],[-46.16506165061651,60.64918685535676],[-46.17226172261721,60.64918685535676],[-46.19746197461973,60.67113835986524],[-46.20826208262082,60.67620409167489],[-46.17586175861757,60.68802413256407],[-45.90945909459094,60.704909905262895],[-45.89865898658985,60.701532750723146],[-45.89145891458915,60.69815559618337]]],[[[-47.3170731707317,60.81297885053539],[-47.31347313473134,60.80115880964621],[-47.29907299072991,60.799470232376336],[-47.284672846728455,60.80115880964621],[-47.27027270272703,60.799470232376336],[-47.22347223472235,60.78596161421726],[-47.24507245072451,60.76907584151843],[-47.284672846728455,60.77414157332808],[-47.360273602736015,60.79271592329681],[-47.34947349473495,60.80115880964621],[-47.33867338673386,60.80622454145586],[-47.3170731707317,60.81297885053539]]],[[[-47.00387003870037,60.80622454145586],[-46.98946989469894,60.79609307783656],[-46.982269822698214,60.78596161421726],[-46.98586985869858,60.77583015059798],[-47.00387003870037,60.772452996058206],[-47.01467014670146,60.77751872786786],[-47.03627036270362,60.794404500566685],[-47.050670506705075,60.799470232376336],[-47.043470434704346,60.81129027326551],[-47.02907029070289,60.81466742780526],[-47.01467014670146,60.81297885053539],[-47.00387003870037,60.80622454145586]]],[[[-47.22347223472235,60.81297885053539],[-47.21987219872199,60.82648746869447],[-47.19467194671947,60.82648746869447],[-47.16587165871658,60.821421736884815],[-47.14787147871479,60.81297885053539],[-47.158671586715855,60.802847386916085],[-47.183871838718375,60.799470232376336],[-47.20547205472053,60.802847386916085],[-47.22347223472235,60.81297885053539]]],[[[-47.19467194671947,60.84168466412339],[-47.17307173071731,60.851816127742694],[-47.101071010710115,60.86870190044152],[-47.083070830708294,60.86870190044152],[-47.08667086670866,60.83830750958364],[-47.11907119071191,60.82648746869447],[-47.158671586715855,60.829864623234215],[-47.19467194671947,60.84168466412339]]],[[[-47.18027180271801,60.87545620952105],[-47.19467194671947,60.865324745901745],[-47.21987219872199,60.851816127742694],[-47.24507245072451,60.84506181866317],[-47.25587255872557,60.851816127742694],[-47.24867248672487,60.86870190044152],[-47.227072270722715,60.878833364060824],[-47.201872018720195,60.88221051860057],[-47.18027180271801,60.87545620952105]]],[[[-47.17307173071731,60.88221051860057],[-47.158671586715855,60.89571913675965],[-47.133471334713334,60.90416202310905],[-47.11187111871118,60.914293486728354],[-47.11187111871118,60.93117925942718],[-47.07227072270723,60.93117925942718],[-47.083070830708294,60.91598206399823],[-47.09747097470975,60.8990962912994],[-47.12267122671227,60.88896482768013],[-47.14787147871479,60.883899095870476],[-47.17307173071731,60.88221051860057]]],[[[-47.050670506705075,60.89571913675965],[-47.03627036270362,60.91260490945848],[-47.0110701107011,60.92611352761753],[-46.98586985869858,60.93455641396696],[-46.96066960669606,60.93117925942718],[-46.96066960669606,60.92611352761753],[-46.96426964269642,60.92442495034766],[-46.967869678696786,60.922736373077754],[-46.98946989469894,60.91091633218858],[-47.02907029070289,60.90416202310905],[-47.050670506705075,60.89571913675965]]],[[[-46.52866528665285,60.99196804114297],[-46.5070650706507,60.998722350222494],[-46.47826478264781,60.99365661841284],[-46.42786427864277,60.97845942298389],[-46.43146431464314,60.976770845714015],[-46.4350643506435,60.97339369117424],[-46.438664386643865,60.97170511390436],[-46.42786427864277,60.93793356850671],[-46.44946449464493,60.92611352761753],[-46.489064890648905,60.92442495034766],[-46.51786517865179,60.93793356850671],[-46.51066510665106,60.95144218666579],[-46.51066510665106,60.96495080482484],[-46.52866528665285,60.99196804114297]]],[[[-150.20970209702097,61.172645809020395],[-150.18450184501845,61.1743343862903],[-150.17730177301772,61.16082576813122],[-150.19530195301954,61.14056284089264],[-150.22770227702276,61.12705422273356],[-150.26370263702637,61.123677068193814],[-150.2781027810278,61.12705422273356],[-150.260102601026,61.133808531813116],[-150.24570245702458,61.14562857270229],[-150.23130231302312,61.16251434540112],[-150.22410224102242,61.17095723175052],[-150.20970209702097,61.172645809020395]]],[[[-48.93348933489335,61.26551755886396],[-48.911889118891196,61.289157640642316],[-48.8470884708847,61.30435483607127],[-48.77148771487714,61.30773199061102],[-48.72468724687246,61.29422337245197],[-48.735487354873555,61.28746906337244],[-48.82188821888218,61.28578048610254],[-48.8470884708847,61.27902617702301],[-48.87948879488795,61.26382898159406],[-48.893888938889376,61.25876324978444],[-48.926289262892624,61.25538609524466],[-48.944289442894416,61.25538609524466],[-48.95508955089551,61.25876324978444],[-48.951489514895144,61.26045182705431],[-48.93348933489335,61.26551755886396]]],[[[-49.1638916389164,61.70117049449368],[-49.14949149491494,61.702859071763584],[-49.12429124291242,61.69610476268406],[-49.0990909909099,61.685973299064756],[-49.08469084690847,61.67753041271533],[-49.08469084690847,61.65726748547675],[-49.08829088290884,61.6420702900478],[-49.095490954909536,61.6336274036984],[-49.120691206912056,61.62856167188875],[-49.145891458914576,61.631938826428495],[-49.21789217892177,61.65726748547675],[-49.19989199891998,61.66402179455628],[-49.18549185491855,61.67584183544545],[-49.1638916389164,61.70117049449368]]],[[[-92.27072270722707,62.406995793304674],[-92.2419224192242,62.398552906955246],[-92.14112141121412,62.4036186387649],[-92.14112141121412,62.39686432968537],[-92.16272162721627,62.39686432968537],[-92.22752227522275,62.363092784287716],[-92.2419224192242,62.35971562974794],[-92.26352263522635,62.36478136155759],[-92.32472324723247,62.358027052478064],[-92.35352353523535,62.363092784287716],[-92.3211232112321,62.38335571152629],[-92.29952299522995,62.390110020605846],[-92.2779227792278,62.390110020605846],[-92.29952299522995,62.4036186387649],[-92.32472324723247,62.40193006149502],[-92.34992349923499,62.393487175145594],[-92.37512375123751,62.390110020605846],[-92.37512375123751,62.39686432968537],[-92.36072360723607,62.40024148422512],[-92.3571235712357,62.406995793304674],[-92.34992349923499,62.4120615251143],[-92.33912339123391,62.41712725692395],[-92.32472324723247,62.420504411463725],[-92.30672306723066,62.41712725692395],[-92.28872288722887,62.4137501023842],[-92.27072270722707,62.406995793304674]]],[[[-92.57672576725767,62.4036186387649],[-92.55872558725586,62.41037294784442],[-92.54432544325444,62.42388156600347],[-92.529925299253,62.4323244523529],[-92.4939249392494,62.41712725692395],[-92.42912429124291,62.41543867965407],[-92.4039240392404,62.41037294784442],[-92.41112411124111,62.40193006149502],[-92.41832418324184,62.39686432968537],[-92.43272432724326,62.39517575241547],[-92.44352443524436,62.39686432968537],[-92.53712537125371,62.38335571152629],[-92.56592565925659,62.385044288796195],[-92.59112591125911,62.39179859787572],[-92.59832598325983,62.40024148422512],[-92.57672576725767,62.4036186387649]]],[[[-77.7229772297723,62.5876735611821],[-77.64017640176401,62.59273929299175],[-77.62217622176222,62.5876735611821],[-77.64737647376474,62.5690992112134],[-77.66537665376653,62.560656324864],[-77.69417694176941,62.567410633943524],[-77.71217712177122,62.558967747594096],[-77.73017730177301,62.548836283974794],[-77.74457744577445,62.540393397625394],[-77.76257762577626,62.540393397625394],[-77.78417784177842,62.54208197489527],[-77.80577805778057,62.548836283974794],[-77.8129781297813,62.55727917032422],[-77.8129781297813,62.57078778848327],[-77.82017820178201,62.580919252102575],[-77.82737827378273,62.59105071572188],[-77.83457834578346,62.602870756611054],[-77.82737827378273,62.60118217934118],[-77.82017820178201,62.60118217934118],[-77.8129781297813,62.5978050248014],[-77.80577805778057,62.59611644753153],[-77.7949779497795,62.59611644753153],[-77.77337773377734,62.60118217934118],[-77.76617766177661,62.602870756611054],[-77.75177751777517,62.59949360207128],[-77.73377733777338,62.59105071572188],[-77.7229772297723,62.5876735611821]]],[[[-91.59391593915939,62.65015092016776],[-91.58311583115831,62.643396611088235],[-91.57591575915758,62.63157657019906],[-91.57591575915758,62.62482226111953],[-91.58671586715867,62.62651083838941],[-91.66951669516695,62.65352807470754],[-91.68751687516875,62.670413847406365],[-91.68031680316803,62.67210242467624],[-91.66951669516695,62.670413847406365],[-91.66231662316623,62.66872527013649],[-91.6551165511655,62.66365953832684],[-91.60471604716047,62.656905229247286],[-91.59391593915939,62.65015092016776]]],[[[-91.13311133111331,62.683922465565416],[-91.04311043110431,62.68223388829554],[-90.98550985509854,62.66365953832684],[-90.9891098910989,62.65859380651719],[-90.99270992709927,62.65859380651719],[-91.00351003510035,62.66365953832684],[-91.14751147511475,62.66365953832684],[-91.20151201512014,62.67716815648589],[-91.21951219512195,62.678856733755765],[-91.25551255512555,62.67716815648589],[-91.26991269912699,62.68054531102567],[-91.26991269912699,62.692365351914844],[-91.24831248312483,62.69911966099437],[-91.13311133111331,62.683922465565416]]],[[[-164.58824588245884,63.06385235128903],[-164.57744577445774,63.06385235128903],[-164.56304563045632,63.05540946493963],[-164.56664566645665,63.0469665785902],[-164.58464584645847,63.04190084678055],[-164.5990459904599,63.043589424050424],[-164.61344613446136,63.0469665785902],[-164.609846098461,63.05540946493963],[-164.59544595445954,63.06385235128903],[-164.58824588245884,63.06385235128903]]],[[[-50.686706867068665,63.09931247395656],[-50.66870668706687,63.106066783036084],[-50.64710647106472,63.10437820576621],[-50.6291062910629,63.09424674214691],[-50.63270632706326,63.075672392178205],[-50.64710647106472,63.067229505828806],[-50.661506615066145,63.048655155860075],[-50.67950679506794,63.02332649681185],[-50.69750697506976,63.0385236922408],[-50.75870758707586,63.067229505828806],[-50.74070740707407,63.07736096944808],[-50.70470704707046,63.08749243306738],[-50.686706867068665,63.09931247395656]]],[[[-90.62190621906218,63.47924235968017],[-90.61470614706147,63.475865205140394],[-90.6111061110611,63.47079947333077],[-90.60750607506074,63.467422318790994],[-90.60030600306003,63.46573374152112],[-90.61470614706147,63.44884796882229],[-90.64350643506435,63.44378223701264],[-90.7011070110701,63.445470814282515],[-90.71910719107191,63.45053654609217],[-90.73350733507334,63.46573374152112],[-90.75510755107551,63.499505286918776],[-90.72270722707226,63.499505286918776],[-90.65070650706507,63.49106240056935],[-90.62190621906218,63.47924235968017]]],[[[-90.67590675906759,63.521456791427255],[-90.69030690306903,63.50963675053805],[-90.70470704707047,63.50963675053805],[-90.74430744307443,63.51301390507783],[-90.76230762307623,63.51132532780795],[-90.79470794707947,63.502882441458524],[-90.81270812708127,63.499505286918776],[-90.85230852308523,63.5062595959983],[-90.93150931509315,63.538342564126054],[-90.97110971109711,63.54847402774536],[-90.97110971109711,63.55522833682488],[-90.76230762307623,63.52821110050678],[-90.78030780307803,63.534965409586306],[-90.79110791107911,63.54171971866583],[-90.79830798307982,63.54847402774536],[-90.78030780307803,63.55353975955501],[-90.76230762307623,63.55353975955501],[-90.72270722707226,63.54847402774536],[-90.68670686706866,63.529899677776655],[-90.67590675906759,63.521456791427255]]],[[[-91.46431464314642,63.61601711854067],[-91.44631446314463,63.60926280946114],[-91.39951399513996,63.597442768571966],[-91.359913599136,63.592377036762315],[-91.29871298712987,63.56704837771409],[-91.41391413914138,63.56704837771409],[-91.39951399513996,63.55522833682488],[-91.41751417514175,63.55353975955501],[-91.43551435514355,63.55522833682488],[-91.45351453514535,63.55860549136466],[-91.46791467914679,63.565359800444185],[-91.47151471514715,63.57380268679361],[-91.47511475114752,63.583934150412915],[-91.48231482314823,63.592377036762315],[-91.49671496714967,63.59575419130209],[-91.50751507515075,63.597442768571966],[-91.52551525515256,63.600819923111715],[-91.53991539915398,63.60757423219127],[-91.53991539915398,63.61601711854067],[-91.52551525515256,63.619394273080445],[-91.46431464314642,63.61601711854067]]],[[[-72.47412474124741,63.70551171384446],[-72.45972459724597,63.68862594114563],[-72.47052470524704,63.67511732298658],[-72.49212492124921,63.6717401684468],[-72.50292502925029,63.681871632066105],[-72.51372513725137,63.69369167295528],[-72.53892538925389,63.69369167295528],[-72.57132571325712,63.68693736387576],[-72.5929259292593,63.676805900256454],[-72.57852578525785,63.67342874571668],[-72.55332553325533,63.668363013907026],[-72.54252542525425,63.66498585936728],[-72.60012600126001,63.64641150939855],[-72.62892628926289,63.64641150939855],[-72.67932679326793,63.6717401684468],[-72.71172711727117,63.6717401684468],[-72.78372783727836,63.66498585936728],[-72.78372783727836,63.6717401684468],[-72.49932499324993,63.712266022923984],[-72.47412474124741,63.70551171384446]]],[[[-92.97632976329763,63.904763831690616],[-92.96552965529655,63.88956663626166],[-92.96192961929619,63.87943517264236],[-92.97272972729726,63.87436944083274],[-93.05193051930519,63.886189481721914],[-93.08073080730807,63.89632094534119],[-93.09513095130951,63.91151814077014],[-92.99792997929978,63.913206718040016],[-92.97632976329763,63.904763831690616]]],[[[-81.47061470614706,64.19182196757066],[-81.51741517415174,64.19688769938031],[-81.53901539015389,64.20701916299961],[-81.53541535415354,64.22390493569844],[-81.49941499414994,64.2374135538575],[-81.44181441814418,64.2374135538575],[-81.3950139501395,64.2289706675081],[-81.38421384213842,64.21377347207914],[-81.39861398613986,64.20364200845984],[-81.42381423814238,64.19688769938031],[-81.47061470614706,64.19182196757066]]],[[[-73.27693276932769,64.21883920388879],[-73.25173251732517,64.21208489480927],[-73.19773197731978,64.21377347207914],[-73.17253172531726,64.20533058572974],[-73.19413194131941,64.19688769938031],[-73.21933219332193,64.19013339030079],[-73.26973269732697,64.18506765849114],[-73.26613266132661,64.18169050395139],[-73.26253262532624,64.17831334941161],[-73.2589325893259,64.17493619487183],[-73.25533255332553,64.17155904033208],[-73.27693276932769,64.15129611309348],[-73.28773287732876,64.14791895855373],[-73.29853298532984,64.15467326763326],[-73.31293312933128,64.15973899944291],[-73.33093330933309,64.158050422173],[-73.34893348933488,64.15298469036338],[-73.36333363333632,64.15129611309348],[-73.36333363333632,64.158050422173],[-73.35613356133561,64.158050422173],[-73.34893348933488,64.16142757671278],[-73.34173341733417,64.16480473125256],[-73.3381333813338,64.17155904033208],[-73.35613356133561,64.17155904033208],[-73.39933399333992,64.16480473125256],[-73.39213392133921,64.18000192668148],[-73.3849338493385,64.18506765849114],[-73.39213392133921,64.19688769938031],[-73.3741337413374,64.19688769938031],[-73.33093330933309,64.19182196757066],[-73.31653316533165,64.20026485392009],[-73.31293312933128,64.21377347207914],[-73.32013320133201,64.22559351296832],[-73.3381333813338,64.23403639931774],[-73.3381333813338,64.2391021311274],[-73.26253262532624,64.2391021311274],[-73.26253262532624,64.23403639931774],[-73.26613266132661,64.23403639931774],[-73.26973269732697,64.23234782204787],[-73.26613266132661,64.23065924477797],[-73.26973269732697,64.22728209023822],[-73.27693276932769,64.21883920388879]]],[[[-90.18270182701826,69.11909044108839],[-90.17190171901719,69.11740186381851],[-90.16110161101611,69.11402470927874],[-90.1539015390154,69.11064755473896],[-90.14670146701467,69.10558182292934],[-90.1431014310143,69.09038462750038],[-90.12870128701287,69.06505596845213],[-90.12870128701287,69.0583016593726],[-90.13950139501395,69.0498587730232],[-90.1539015390154,69.05154735029308],[-90.16470164701647,69.0599902366425],[-90.16110161101611,69.07856458661121],[-90.21150211502115,69.07012170026178],[-90.2331023310233,69.07012170026178],[-90.25470254702547,69.08194174115096],[-90.2691026910269,69.09882751384978],[-90.27630276302763,69.11402470927874],[-90.27630276302763,69.12922190470769],[-90.26550265502655,69.1477962546764],[-90.25470254702547,69.13935336832697],[-90.25470254702547,69.13091048197757],[-90.25110251102511,69.12246759562817],[-90.2331023310233,69.11909044108839],[-90.21150211502115,69.12415617289804],[-90.1971019710197,69.13597621378722],[-90.17910179101791,69.14273052286674],[-90.1539015390154,69.13935336832697],[-90.16110161101611,69.13259905924744],[-90.16470164701647,69.12922190470769],[-90.17190171901719,69.12753332743779],[-90.18270182701826,69.12584475016791],[-90.18270182701826,69.11909044108839]]],[[[-91.8531185311853,69.86037586256688],[-91.80271802718026,69.87895021253561],[-91.74871748717487,69.88232736707536],[-91.69471694716947,69.87557305799584],[-91.64071640716406,69.86037586256688],[-91.66951669516695,69.85024439894761],[-91.77031770317703,69.8384243580584],[-91.82431824318243,69.82660431716923],[-91.83871838718387,69.82491573989935],[-91.84591845918459,69.82829289443913],[-91.86751867518674,69.84517866713796],[-91.8639186391864,69.85024439894761],[-91.85671856718567,69.85531013075723],[-91.8531185311853,69.86037586256688]]],[[[-95.76635766357663,72.8744862893075],[-95.7339573395734,72.85928909387857],[-95.71955719557195,72.84915763025927],[-95.71235712357124,72.83396043483032],[-95.71955719557195,72.81876323940139],[-95.7339573395734,72.80694319851219],[-95.74835748357484,72.80356604397244],[-95.77355773557736,72.80525462124231],[-95.79875798757988,72.81538608486161],[-95.85635856358563,72.86097767114845],[-95.79155791557915,72.88124059838705],[-95.78075780757807,72.88124059838705],[-95.76635766357663,72.8744862893075]]],[[[-81.32661326613265,76.15032619287993],[-81.3590135901359,76.14863761561006],[-81.43461434614346,76.15539192468958],[-81.46341463414633,76.16383481103901],[-81.45261452614525,76.16890054284866],[-81.36981369813698,76.18916347008724],[-81.31221312213121,76.19591777916676],[-81.25461254612546,76.19591777916676],[-81.20421204212042,76.18409773827759],[-81.22941229412294,76.17227769738841],[-81.26181261812617,76.16045765649923],[-81.32661326613265,76.15032619287993]]],[[[-89.37989379893799,76.4458272151094],[-89.40869408694087,76.43738432876],[-89.59589595895959,76.44413863783953],[-89.62829628296282,76.45089294691905],[-89.56349563495634,76.47284445142753],[-89.52389523895239,76.47959876050706],[-89.50229502295022,76.47115587415766],[-89.49509495094951,76.47791018323719],[-89.46989469894699,76.46609014234801],[-89.37989379893799,76.4458272151094]]],[[[-83.99063990639907,76.42556428787083],[-84.05544055440554,76.44245006056966],[-84.12384123841238,76.45089294691905],[-84.10584105841058,76.47453302869741],[-84.10224102241023,76.48297591504684],[-84.10944109441094,76.48973022412636],[-84.1310413104131,76.50323884228544],[-84.13824138241382,76.51337030590471],[-84.0950409504095,76.51337030590471],[-84.06984069840698,76.50661599682519],[-84.01224012240122,76.50323884228544],[-83.9870398703987,76.49648453320589],[-83.9690396903969,76.48804164685649],[-83.91143911439114,76.47115587415766],[-83.9510395103951,76.44245006056966],[-83.97263972639726,76.42894144241058],[-83.99063990639907,76.42556428787083]]],[[[69.9468994689947,-49.54230004537849],[69.92889928899291,-49.54061146810861],[69.91809918099182,-49.53554573629896],[69.90729907299072,-49.52879142721943],[69.8928989289893,-49.5220371181399],[69.8748987489875,-49.51865996360013],[69.84609846098462,-49.513594231790485],[69.83529835298353,-49.508528499980834],[69.83529835298353,-49.50177419090131],[69.87849878498787,-49.491642727282006],[69.92169921699218,-49.49670845909166],[69.97209972099722,-49.53554573629896],[70.00450004500047,-49.5507429317279],[70.01530015300153,-49.56425154988696],[70.0081000810008,-49.576071590776145],[69.99369993699938,-49.574383013506264],[69.9468994689947,-49.54230004537849]]],[[[68.7948879488795,-49.34304792753233],[68.78768787687878,-49.35655654569139],[68.77328773287735,-49.36331085477092],[68.7588875888759,-49.36331085477092],[68.7408874088741,-49.35655654569139],[68.69048690486906,-49.35655654569139],[68.66528665286654,-49.35317939115163],[68.64368643686439,-49.34304792753233],[68.66168661686618,-49.32278500029374],[68.67248672486727,-49.31603069121421],[68.69048690486906,-49.31603069121421],[68.70848708487085,-49.31771926848409],[68.7408874088741,-49.32953930937327],[68.7588875888759,-49.32953930937327],[68.79128791287914,-49.32447357756362],[68.79848798487987,-49.327850732103386],[68.7948879488795,-49.34304792753233]]],[[[69.59049590495906,-49.1995188595923],[69.57609576095763,-49.20458459140195],[69.56169561695617,-49.206273168671835],[69.54729547295474,-49.202896014132065],[69.53289532895329,-49.19276455051277],[69.6408964089641,-49.15392727330547],[69.67689676896771,-49.15223869603559],[69.67689676896771,-49.158993005115114],[69.65529655296555,-49.16912446873442],[69.6408964089641,-49.19107597324289],[69.6228962289623,-49.20796174594172],[69.59049590495906,-49.1995188595923]]],[[[69.46449464494646,-48.88375491012424],[69.44649446494466,-48.877000601044706],[69.42849428494287,-48.86518056015553],[69.41409414094142,-48.8482947874567],[69.40329403294035,-48.82972043748799],[69.43929439294394,-48.82972043748799],[69.48609486094861,-48.855049096536234],[69.51849518495186,-48.856737673806116],[69.51129511295113,-48.870246291965174],[69.50049500495007,-48.87868917831459],[69.48249482494825,-48.88206633285436],[69.46449464494646,-48.88375491012424]]],[[[68.67248672486727,-48.6237140105623],[68.68328683286833,-48.63722262872136],[68.6688866888669,-48.645665515070775],[68.64368643686439,-48.649042669610544],[68.62208622086223,-48.64397693780089],[68.61128611286114,-48.63722262872136],[68.62568625686256,-48.630468319641835],[68.65088650886509,-48.6237140105623],[68.67248672486727,-48.6237140105623]]],[[[68.80928809288093,-48.60345108332371],[68.79128791287914,-48.61527112421289],[68.78048780487805,-48.60513966059359],[68.78048780487805,-48.584876733355],[68.7948879488795,-48.569679537926056],[68.82008820088203,-48.56630238338629],[68.83088830888309,-48.57812242427547],[68.82728827288273,-48.59331961970441],[68.80928809288093,-48.60345108332371]]],[[[37.859778597785976,-46.63625856391037],[37.86337863378634,-46.61430705940189],[37.89937899378995,-46.59910986397295],[37.94617946179463,-46.59910986397295],[37.978579785797876,-46.61599563667178],[37.97497974979751,-46.64470145025978],[37.9389793897939,-46.654832913879076],[37.892178921789224,-46.649767182069425],[37.859778597785976,-46.63625856391037]]],[[[32.90612906129061,-26.05756737584992],[32.89532895328955,-26.02886156226191],[32.916929169291706,-26.001844325943786],[32.95292952929529,-25.979892821435314],[32.981729817298174,-25.96976135781602],[32.981729817298174,-25.979892821435314],[32.974529745297474,-26.0102872122932],[32.96372963729638,-26.037304448611323],[32.96012960129602,-26.044058757690856],[32.95292952929529,-26.05250164404027],[32.949329493294954,-26.05419022131015],[32.94572945729459,-26.049124489500507],[32.9349293492935,-26.044058757690856],[32.93132931329313,-26.03899302588121],[32.93132931329313,-26.03223871680168],[32.92772927729277,-26.02886156226191],[32.91332913329134,-26.030550139531798],[32.91332913329134,-26.03392729407156],[32.90612906129061,-26.05756737584992]]],[[[45.26145261452615,-12.763398530063427],[45.275852758527606,-12.748201334634487],[45.283052830528305,-12.743135602824836],[45.29025290252903,-12.760021375523664],[45.29025290252903,-12.773529993682729],[45.28665286652867,-12.788727189111668],[45.283052830528305,-12.805612961810496],[45.275852758527606,-12.805612961810496],[45.26145261452615,-12.763398530063427]]],[[[56.525965259652594,-10.33015868416247],[56.525965259652594,-10.326781529622693],[56.525965259652594,-10.325092952352819],[56.52956529565296,-10.32340437508293],[56.536765367653686,-10.32340437508293],[56.543965439654414,-10.347044456861283],[56.569165691656934,-10.38588173406859],[56.569165691656934,-10.40614466130718],[56.54756547565478,-10.382504579528828],[56.52956529565296,-10.353798765940823],[56.525965259652594,-10.340290147781758],[56.525965259652594,-10.33015868416247]]],[[[46.28386283862838,-9.350783867630497],[46.28386283862838,-9.347406713090734],[46.28386283862838,-9.345718135820846],[46.280262802628044,-9.344029558550972],[46.27666276662768,-9.344029558550972],[46.27666276662768,-9.33896382674132],[46.280262802628044,-9.33896382674132],[46.31626316263163,-9.327143785852144],[46.35226352263524,-9.328832363122018],[46.39186391863919,-9.335586672201558],[46.4278642786428,-9.337275249471432],[46.40986409864098,-9.352472444900386],[46.381063810638125,-9.357538176710023],[46.34866348663488,-9.352472444900386],[46.330663306633085,-9.344029558550972],[46.31986319863199,-9.350783867630497],[46.29466294662947,-9.347406713090734],[46.28386283862838,-9.350783867630497]]],[[[56.24876248762487,-7.192782116720409],[56.259562595625965,-7.140436221354051],[56.27036270362706,-7.12017329411546],[56.28836288362885,-7.110041830496158],[56.284762847628485,-7.131993335004637],[56.27396273962739,-7.153944839513102],[56.24876248762487,-7.192782116720409]]],[[[12.904329043290431,-5.868937537132368],[12.933129331293316,-5.874003268942019],[12.954729547295472,-5.872314691672145],[12.972729727297292,-5.868937537132368],[12.994329943299448,-5.868937537132368],[12.969129691296928,-5.887511887101084],[12.940329403294044,-5.8976433507203865],[12.882728827288275,-5.907774814339675],[12.868328683286848,-5.917906277958977],[12.839528395283963,-5.928037741578265],[12.807128071280715,-5.953366400626507],[12.781927819278195,-5.9601207097060325],[12.760327603276039,-5.958432132436158],[12.745927459274611,-5.939857782467442],[12.763927639276403,-5.919594855228851],[12.796327963279651,-5.8976433507203865],[12.828728287282871,-5.872314691672145],[12.853928539285391,-5.868937537132368],[12.904329043290431,-5.868937537132368]]],[[[55.25875258752589,-4.499501371257509],[55.24075240752407,-4.50456710306716],[55.22635226352264,-4.487681330368332],[55.22275222752228,-4.4640412485899645],[55.22635226352264,-4.445466898621262],[55.24075240752407,-4.450532630430914],[55.25875258752589,-4.46235267132009],[55.269552695526954,-4.480927021288792],[55.25875258752589,-4.499501371257509]]],[[[55.715957159571616,-4.33064364426923],[55.705157051570524,-4.3272664897294675],[55.690756907569096,-4.325577912459593],[55.68355683556837,-4.3188236033800536],[55.68355683556837,-4.312069294300528],[55.67635676356764,-4.2968720988715745],[55.690756907569096,-4.2918063670619375],[55.697956979569796,-4.290117789792049],[55.705157051570524,-4.290117789792049],[55.71955719557195,-4.303626407951114],[55.730357303573044,-4.308692139760765],[55.748357483574836,-4.312069294300528],[55.755557555575564,-4.320512180649942],[55.76275762757629,-4.317135026110179],[55.77715777157772,-4.3188236033800536],[55.78795787957881,-4.33064364426923],[55.76995769957699,-4.33064364426923],[55.76995769957699,-4.339086530618644],[55.766357663576656,-4.350906571507821],[55.75915759157593,-4.3576608805873605],[55.748357483574836,-4.3576608805873605],[55.73395733957341,-4.352595148777709],[55.723157231572316,-4.342463685158421],[55.715957159571616,-4.33064364426923]]],[[[-32.40212402124021,-3.8375790814634883],[-32.39132391323912,-3.8342019269237255],[-32.387723877238756,-3.840956236003251],[-32.387723877238756,-3.8527762768924276],[-32.39852398523985,-3.8612191632418416],[-32.412924129241276,-3.8662848950514928],[-32.44172441724416,-3.881482090480432],[-32.45252452524525,-3.8831706677503206],[-32.463324633246316,-3.8781049359406694],[-32.456124561245616,-3.871350626861144],[-32.445324453244524,-3.86290774051173],[-32.44172441724416,-3.857842008702079],[-32.438124381243796,-3.849399122352665],[-32.42732427324273,-3.846021967812902],[-32.412924129241276,-3.8426448132731394],[-32.40212402124021,-3.8375790814634883]]],[[[5.625056250562523,-1.4566851309288893],[5.6214562145621585,-1.4448650900396984],[5.617856178561794,-1.4330450491505218],[5.6214562145621585,-1.4229135855312336],[5.632256322563222,-1.416159276451694],[5.646656466564679,-1.438110780960173],[5.6430564305643145,-1.4634394400084147],[5.628656286562858,-1.4752594808975914],[5.610656106561066,-1.4634394400084147],[5.617856178561794,-1.4617508627385263],[5.6214562145621585,-1.4583737081987636],[5.625056250562523,-1.4566851309288893]]],[[[8.998289982899848,-0.6275936914164788],[9.034290342903432,-0.6360365777658927],[9.04149041490416,-0.6698081231635484],[9.037890378903796,-0.712022554910618],[9.037890378903796,-0.7441055230383853],[9.019890198902004,-0.7559255639275619],[9.005490054900548,-0.7626798730070874],[8.994689946899484,-0.7609912957372131],[8.976689766897664,-0.7508598321179107],[8.969489694896964,-0.7373512139588598],[8.969489694896964,-0.725531173069669],[8.969489694896964,-0.712022554910618],[8.969489694896964,-0.6951367822117902],[8.9658896588966,-0.6866938958623763],[8.951489514895144,-0.6731852777033112],[8.947889478894808,-0.6613652368141345],[8.947889478894808,-0.6512337731948321],[8.951489514895144,-0.6427908868454182],[8.962289622896236,-0.6275936914164788],[8.973089730897328,-0.6174622277971764],[8.994689946899484,-0.6039536096381255],[9.005490054900548,-0.5921335687489346],[9.009090090900912,-0.602265032368237],[9.009090090900912,-0.610707918717651],[9.005490054900548,-0.6174622277971764],[8.998289982899848,-0.6208393823369533],[8.998289982899848,-0.6275936914164788]]],[[[-15.665556655566547,11.494702529071418],[-15.661956619566183,11.49301395180153],[-15.661956619566183,11.489636797261767],[-15.65835658356582,11.487948219991878],[-15.65115651156512,11.487948219991878],[-15.65115651156512,11.482882488182241],[-15.654756547565484,11.481193910912353],[-15.65835658356582,11.474439601832827],[-15.65115651156512,11.465996715483413],[-15.65835658356582,11.457553829134],[-15.679956799568004,11.440668056435172],[-15.68355683556834,11.449110942784586],[-15.687156871568703,11.454176674594237],[-15.694356943569431,11.454176674594237],[-15.705157051570524,11.442356633705046],[-15.719557195571952,11.442356633705046],[-15.73395733957338,11.449110942784586],[-15.741157411574108,11.460930983673762],[-15.73395733957338,11.469373870023176],[-15.72675726757268,11.471062447293065],[-15.719557195571952,11.467685292753288],[-15.712357123571223,11.467685292753288],[-15.705157051570524,11.474439601832827],[-15.70155701557016,11.482882488182241],[-15.697956979569796,11.49301395180153],[-15.694356943569431,11.501456838150943],[-15.687156871568703,11.494702529071418],[-15.679956799568004,11.49807968361118],[-15.665556655566547,11.508211147230483],[-15.661956619566183,11.504833992690706],[-15.65835658356582,11.501456838150943],[-15.665556655566547,11.494702529071418]]],[[[33.377733777337795,31.190267804983208],[33.40653406534065,31.18520207317357],[33.43173431734317,31.171693455014506],[33.47493474934751,31.141299064156613],[33.45333453334533,31.154807682315678],[33.29853298532987,31.212219309491687],[33.26973269732699,31.217285041301338],[33.302133021330235,31.21559646403145],[33.352533525335275,31.19533353679286],[33.377733777337795,31.190267804983208]]],[[[33.07893078930789,31.227416504920626],[33.10413104131041,31.24092512307969],[33.26253262532626,31.224039350380863],[33.25533255332553,31.218973618571212],[33.24453244532447,31.218973618571212],[33.21213212132122,31.224039350380863],[33.183331833318334,31.227416504920626],[33.15453154531545,31.232482236730277],[33.118531185311866,31.224039350380863],[33.10413104131041,31.227416504920626],[33.075330753307554,31.218973618571212],[32.956529565295654,31.16325056866509],[32.9349293492935,31.148053373236138],[32.94572945729459,31.16325056866509],[32.97092970929711,31.17338203228438],[32.9889298892989,31.181824918633794],[32.999729997299994,31.188579227713333],[33.01413014130142,31.197022114062747],[33.068130681306826,31.217285041301338],[33.07893078930789,31.227416504920626]]],[[[-16.486364863648618,32.49216088006277],[-16.52236522365223,32.53944104361949],[-16.529565295652958,32.547883929968904],[-16.536765367653658,32.55801539358819],[-16.54036540365402,32.568146857207495],[-16.543965439654386,32.57996689809667],[-16.525965259652594,32.566458279937606],[-16.507965079650802,32.54450677542914],[-16.493564935649346,32.51748953911101],[-16.486364863648618,32.49216088006277]]],[[[-16.33876338763386,33.057834265473474],[-16.353163531635317,33.04432564731441],[-16.36396363963638,33.03419418369512],[-16.378363783637838,33.03250560642523],[-16.399963999639994,33.03925991550477],[-16.399963999639994,33.0460142245843],[-16.3891638916389,33.047702801854186],[-16.378363783637838,33.05107995639395],[-16.374763747637473,33.057834265473474],[-16.360363603636017,33.08991723360124],[-16.342363423634225,33.105114429030195],[-16.317163171631705,33.110180160839846],[-16.29556295562955,33.10173727449043],[-16.28836288362882,33.10849158356996],[-16.28836288362882,33.07978576998195],[-16.284762847628457,33.067965729092776],[-16.273962739627393,33.05952284274336],[-16.309963099630977,33.06627715182289],[-16.324363243632433,33.06627715182289],[-16.33876338763386,33.057834265473474]]],[[[10.963909639096386,34.6569169400524],[10.974709747097478,34.66367124913192],[10.98550985509857,34.67211413548134],[11.100711007110078,34.67042555821145],[11.11151111511117,34.66029409459216],[11.097110971109714,34.646785476433095],[11.053910539105402,34.62145681738485],[11.03591035910361,34.624833971924616],[11.01791017910179,34.63327685827403],[10.981909819098206,34.64509689916321],[10.963909639096386,34.6569169400524]]],[[[24.129241292412928,34.854480480628666],[24.1220412204122,34.84603759427925],[24.1220412204122,34.835906130659964],[24.125641256412564,34.82746324431055],[24.136441364413656,34.8223975125009],[24.136441364413656,34.81564320342136],[24.107641076410772,34.81733178069125],[24.086040860408616,34.82577466704066],[24.04644046440464,34.849414748819015],[24.04644046440464,34.854480480628666],[24.057240572405732,34.856169057898555],[24.068040680406824,34.85785763516843],[24.075240752407524,34.86292336697808],[24.078840788407888,34.869677676057606],[24.093240932409344,34.869677676057606],[24.104041040410408,34.86798909878773],[24.129241292412928,34.86292336697808],[24.129241292412928,34.854480480628666]]],[[[23.279632796327974,35.89802123341617],[23.297632976329766,35.886201192527],[23.315633156331558,35.87944688344747],[23.330033300333014,35.86424968801852],[23.333633336333378,35.82878956535099],[23.32643326433265,35.82878956535099],[23.31923319233192,35.838921028970276],[23.2940329403294,35.85918395620887],[23.286832868328702,35.87100399709806],[23.279632796327974,35.882824037987234],[23.272432724327246,35.90477554249571],[23.27603276032761,35.90477554249571],[23.27603276032761,35.903086965225825],[23.27603276032761,35.901398387955936],[23.279632796327974,35.89802123341617]]],[[[25.734857348573485,36.382642909872516],[25.74925749257494,36.38770864168215],[25.760057600576005,36.39615152803157],[25.767257672576733,36.40121725984122],[25.803258032580345,36.38939721895204],[25.835658356583565,36.36575713717369],[25.853658536585385,36.3640685599038],[25.846458464584657,36.350559941744734],[25.83925839258393,36.35224851901462],[25.828458284582865,36.35900282809415],[25.817658176581773,36.3640685599038],[25.803258032580345,36.36069140536404],[25.78885788857889,36.357314250824274],[25.778057780577825,36.3539370962845],[25.74925749257494,36.35900282809415],[25.745657456574577,36.357314250824274],[25.742057420574213,36.35900282809415],[25.73845738457385,36.36575713717369],[25.73125731257312,36.37251144625321],[25.73125731257312,36.38095433260263],[25.734857348573485,36.382642909872516]]],[[[24.86724867248674,36.664635313942924],[24.946449464494663,36.62410945946574],[24.964449644496455,36.60215795495726],[24.964449644496455,36.59709222314761],[24.939249392493934,36.59709222314761],[24.921249212492143,36.60215795495726],[24.896048960489622,36.62410945946574],[24.878048780487802,36.63255234581514],[24.863648636486374,36.63761807762479],[24.849248492484918,36.647749541244096],[24.84204842048422,36.664635313942924],[24.86004860048601,36.6663238912128],[24.86724867248674,36.664635313942924]]],[[[25.14445144451446,36.720358363849044],[25.184051840518407,36.71866978657917],[25.184051840518407,36.71698120930928],[25.184051840518407,36.71191547749963],[25.184051840518407,36.70684974568999],[25.130051300513003,36.65956958213327],[25.09405094050942,36.63592950035492],[25.0688506885069,36.63761807762479],[25.104851048510483,36.700095436610454],[25.115651156511575,36.70178401388034],[25.13725137251373,36.71698120930928],[25.14445144451446,36.720358363849044]]],[[[21.764017640176405,36.7541299092467],[21.77841778417786,36.747375600167175],[21.782017820178197,36.735555559278],[21.77841778417786,36.720358363849044],[21.77841778417786,36.700095436610454],[21.771217712177133,36.705161168420105],[21.76761767617677,36.70853832295987],[21.76761767617677,36.71191547749963],[21.764017640176405,36.720358363849044],[21.749617496174977,36.71191547749963],[21.756817568175677,36.740621291087635],[21.76041760417604,36.752441331976826],[21.764017640176405,36.7541299092467]]],[[[24.64404644046442,36.789590031914244],[24.654846548465486,36.782835722834704],[24.665646656466578,36.77439283648529],[24.669246692466942,36.764261372866],[24.65844658446585,36.75075275470694],[24.64404644046442,36.747375600167175],[24.629646296462965,36.75750706378646],[24.60804608046081,36.78114714556483],[24.622446224462266,36.794655763723895],[24.640446404464058,36.794655763723895],[24.64404644046442,36.79296718645401],[24.64404644046442,36.789590031914244]]],[[[21.695616956169573,36.740621291087635],[21.695616956169573,36.77608141375518],[21.699216992169937,36.79127860918412],[21.710017100171,36.80141007280342],[21.713617136171365,36.79972149553353],[21.71721717217173,36.79634434099377],[21.724417244172457,36.794655763723895],[21.72801728017282,36.794655763723895],[21.72801728017282,36.789590031914244],[21.724417244172457,36.78621287737448],[21.720817208172093,36.782835722834704],[21.71721717217173,36.78114714556483],[21.71721717217173,36.77101568194553],[21.710017100171,36.76088421832624],[21.7028170281703,36.752441331976826],[21.695616956169573,36.740621291087635]]],[[[24.60804608046081,36.83518161820108],[24.60804608046081,36.82842730912154],[24.60084600846008,36.82167300004201],[24.572045720457226,36.78114714556483],[24.55764557645577,36.78114714556483],[24.539645396453977,36.78452430010459],[24.53244532445325,36.79127860918412],[24.528845288452885,36.803098650073295],[24.52524525245252,36.809852959152835],[24.521645216452185,36.81660726823236],[24.52524525245252,36.82842730912154],[24.53244532445325,36.83687019547095],[24.546845468454705,36.8419359272806],[24.561245612456133,36.845313081820365],[24.57564575645756,36.8419359272806],[24.579245792457925,36.83855877274084],[24.586445864458653,36.83687019547095],[24.59364593645938,36.83687019547095],[24.60084600846008,36.8419359272806],[24.60084600846008,36.84024735001073],[24.60084600846008,36.83855877274084],[24.604446044460445,36.83687019547095],[24.60804608046081,36.83518161820108]]],[[[25.42165421654218,36.831804463661314],[25.42885428854288,36.84362450455049],[25.4468544685447,36.85713312270954],[25.47205472054722,36.87064174086861],[25.47925479254792,36.87064174086861],[25.47205472054722,36.86388743178908],[25.475654756547584,36.86219885451919],[25.47925479254792,36.86051027724932],[25.47925479254792,36.83518161820108],[25.457654576545764,36.825050154581774],[25.436054360543608,36.8233615773119],[25.42165421654218,36.831804463661314]]],[[[25.608856088560884,36.88415035902767],[25.616056160561612,36.894281822646974],[25.62325623256234,36.89934755445661],[25.63765637656377,36.90272470899639],[25.64845648456486,36.91116759534579],[25.659256592565924,36.907790440806025],[25.684456844568444,36.8909046681072],[25.67365673656738,36.87908462721802],[25.65565655656556,36.87908462721802],[25.63045630456304,36.88246178175778],[25.608856088560884,36.88415035902767]]],[[[-7.954279542795433,36.98039926341099],[-7.903879038790393,36.975333531601336],[-7.882278822788209,36.98039926341099],[-7.860678606786053,37.00066219064958],[-7.8570785707856885,36.997285036109815],[-7.8570785707856885,36.99390788157005],[-7.853478534785353,36.98715357249051],[-7.860678606786053,36.98377641795075],[-7.860678606786053,36.98039926341099],[-7.878678786787873,36.970267799791685],[-7.903879038790393,36.965202067982034],[-7.932679326793249,36.96689064525192],[-7.954279542795433,36.97364495433145],[-7.954279542795433,36.98039926341099]]],[[[25.079650796507963,36.95338202709286],[25.065250652506535,36.955070604362746],[25.047250472504743,36.96857922252181],[25.029250292502923,36.9888421497604],[25.02565025650256,37.0074164997291],[25.03645036450365,37.02261369515806],[25.054450544505443,37.034433736047234],[25.072450724507263,37.04287662239665],[25.08685086850869,37.04118804512676],[25.0688506885069,36.9888421497604],[25.06165061650617,36.97364495433145],[25.065250652506535,36.96857922252181],[25.072450724507263,36.96351349071216],[25.079650796507963,36.95338202709286]]],[[[25.80685806858068,37.10366540411242],[25.80685806858068,37.09859967230277],[25.803258032580345,37.09859967230277],[25.79965799657998,37.095222517763005],[25.78165781657816,37.12392833135101],[25.796057960579617,37.12392833135101],[25.810458104581045,37.12730548589079],[25.835658356583565,37.137436949510075],[25.8320583205832,37.13068264043055],[25.828458284582865,37.12392833135101],[25.835658356583565,37.11379686773172],[25.842858428584293,37.11041971319196],[25.835658356583565,37.101976826842545],[25.828458284582865,37.096911095032894],[25.817658176581773,37.096911095032894],[25.80685806858068,37.10366540411242]]],[[[23.128431284312853,37.28772032652964],[23.13563135631358,37.284343171989875],[23.15003150031501,37.277588862910335],[23.157231572315737,37.27083455383081],[23.1608316083161,37.264080244751284],[23.164431644316437,37.25394878113198],[23.1608316083161,37.24381731751268],[23.153631536315373,37.24044016297292],[23.132031320313217,37.24381731751268],[23.11763117631176,37.25226020386209],[23.11043110431106,37.264080244751284],[23.096030960309605,37.27421170837057],[23.09963099630997,37.28096601745011],[23.11043110431106,37.28603174925975],[23.11763117631176,37.28772032652964],[23.128431284312853,37.28772032652964]]],[[[23.47763477634777,37.55620411244098],[23.481234812348134,37.55620411244098],[23.4848348483485,37.554515535171106],[23.4848348483485,37.55282695790122],[23.4848348483485,37.549449803361455],[23.492034920349198,37.53931833974215],[23.499234992349926,37.53256403066263],[23.51003510035102,37.529186876122864],[23.524435244352446,37.527498298852976],[23.524435244352446,37.522432567043325],[23.506435064350654,37.512301103424036],[23.481234812348134,37.508923948884274],[23.456034560345614,37.512301103424036],[23.438034380343822,37.522432567043325],[23.438034380343822,37.527498298852976],[23.463234632346342,37.534252607932515],[23.474034740347406,37.54100691701204],[23.47763477634777,37.55620411244098]]],[[[-0.7326073260732642,37.747013343937724],[-0.743407434074328,37.72506183942926],[-0.7398073980739639,37.70311033492078],[-0.725407254072536,37.66596163498336],[-0.747007470074692,37.68453598495206],[-0.7506075060750561,37.71324179854008],[-0.7506075060750561,37.74532476666785],[-0.7542075420754202,37.774030580255854],[-0.7506075060750561,37.77571915752574],[-0.747007470074692,37.772342002985965],[-0.747007470074692,37.77065342571609],[-0.747007470074692,37.7689648484462],[-0.743407434074328,37.76389911663655],[-0.7362073620736282,37.75376765301726],[-0.7326073260732642,37.747013343937724]]],[[[12.27432274322743,37.939511152704355],[12.288722887228886,37.93782257543448],[12.295922959229586,37.941199729974244],[12.306723067230678,37.94457688451401],[12.313923139231406,37.946265461783895],[12.321123211232106,37.941199729974244],[12.335523355233562,37.93275684362483],[12.353523535235354,37.92769111181518],[12.36792367923681,37.92600253454529],[12.357123571235718,37.914182493656114],[12.34272342723429,37.91249391638624],[12.32472324723247,37.917559648195876],[12.313923139231406,37.92600253454529],[12.29952299522995,37.919248225465765],[12.288722887228886,37.92093680273565],[12.277922779227794,37.92937968908507],[12.27432274322743,37.939511152704355]]],[[[14.967149671496713,38.43257571551011],[14.967149671496713,38.419067097351046],[14.98154981549817,38.41231278827151],[14.992349923499233,38.40218132465222],[15.003150031500326,38.392049861032916],[15.00675006750069,38.37685266560398],[14.999549995499962,38.371786933794326],[14.985149851498534,38.36334404744491],[14.96354963549635,38.38191839741363],[14.949149491494921,38.39711559284257],[14.945549455494557,38.41231278827151],[14.959949599496014,38.43257571551011],[14.967149671496713,38.43257571551011]]],[[[14.90594905949061,38.47310156998729],[14.898748987489881,38.48154445633671],[14.902349023490245,38.498430229035534],[14.909549095490974,38.51531600173436],[14.923949239492401,38.52207031081389],[14.95634956349565,38.52207031081389],[14.967149671496713,38.51700457900424],[14.959949599496014,38.5018073835753],[14.967149671496713,38.496741651765646],[14.974349743497442,38.48998734268612],[14.977949779497806,38.48829876541623],[14.977949779497806,38.48154445633671],[14.952749527495286,38.48154445633671],[14.95634956349565,38.46972441544753],[14.959949599496014,38.46465868363788],[14.967149671496713,38.461281529098116],[14.967149671496713,38.4528386427487],[14.949149491494921,38.451150065478814],[14.934749347493494,38.45790437455835],[14.920349203492037,38.46803583817764],[14.90594905949061,38.47310156998729]]],[[[14.862748627486269,38.54908754713202],[14.862748627486269,38.538956083512716],[14.823148231482321,38.55246470167178],[14.794347943479437,38.57103905164048],[14.815948159481593,38.58454766979955],[14.851948519485205,38.58454766979955],[14.866348663486633,38.581170515259785],[14.877148771487725,38.56935047437061],[14.873548735487361,38.565973319830846],[14.869948699486997,38.560907588021195],[14.862748627486269,38.54908754713202]]],[[[20.93960939609397,38.60481059703814],[20.918009180091815,38.5794819379899],[20.910809108091087,38.56259616529107],[20.907209072090723,38.54908754713202],[20.892808928089295,38.54908754713202],[20.892808928089295,38.55584185621154],[20.932409324093243,38.603122019768264],[20.93960939609397,38.60481059703814]]],[[[25.58725587255873,38.61156490611768],[25.594455944559456,38.603122019768264],[25.62325623256234,38.58454766979955],[25.62325623256234,38.5794819379899],[25.619656196561976,38.57779336072002],[25.616056160561612,38.57779336072002],[25.608856088560884,38.540644660782604],[25.60525605256052,38.53557892897295],[25.590855908559092,38.53726750624283],[25.580055800558,38.540644660782604],[25.5728557285573,38.540644660782604],[25.562055620556208,38.53557892897295],[25.558455584555844,38.54402181532237],[25.558455584555844,38.55077612440189],[25.562055620556208,38.55753043348143],[25.562055620556208,38.56259616529107],[25.558455584555844,38.56766189710072],[25.544055440554416,38.57779336072002],[25.540455404554052,38.58454766979955],[25.52965529655296,38.59130197887907],[25.52245522455226,38.59805628795861],[25.526055260552624,38.60481059703814],[25.533255332553324,38.60649917430803],[25.540455404554052,38.60481059703814],[25.544055440554416,38.59974486522849],[25.54765547655478,38.59805628795861],[25.551255512555144,38.60481059703814],[25.558455584555844,38.60987632884779],[25.569255692556936,38.60987632884779],[25.5728557285573,38.60481059703814],[25.580055800558,38.60481059703814],[25.580055800558,38.61156490611768],[25.58725587255873,38.61156490611768]]],[[[23.438034380343822,39.14684390067049],[23.423634236342366,39.148532477940364],[23.412834128341302,39.15022105521025],[23.405634056340574,39.148532477940364],[23.394833948339482,39.14684390067049],[23.398433984339846,39.16372967336932],[23.409234092340938,39.17048398244884],[23.423634236342366,39.17217255971873],[23.430834308343094,39.175549714258494],[23.434434344343458,39.18736975514767],[23.445234452344522,39.19918979603685],[23.45963459634598,39.20763268238626],[23.470434704347042,39.2143869914658],[23.488434884348862,39.20594410511639],[23.50283502835029,39.194124064227196],[23.513635136351382,39.17892686879826],[23.506435064350654,39.15866394155967],[23.488434884348862,39.16879540517897],[23.474034740347406,39.15697536428978],[23.45963459634598,39.131646705241536],[23.45243452434525,39.133335282511425],[23.445234452344522,39.14177816886084],[23.438034380343822,39.14684390067049]]],[[[20.140401404014057,39.24140422778392],[20.154801548015485,39.22789560962485],[20.172801728017276,39.217764146005564],[20.190801908019097,39.20256695057661],[20.20160201602016,39.17892686879826],[20.180001800018005,39.180615446068146],[20.16920169201694,39.18230402333802],[20.15840158401585,39.18905833241756],[20.136801368013693,39.20932125965615],[20.129601296012964,39.222829877815215],[20.1260012600126,39.236338495974266],[20.140401404014057,39.24140422778392]]],[[[25.01125011250113,39.56392248633152],[25.047250472504743,39.545348136362804],[25.040050400504015,39.52001947731456],[24.99324993249934,39.467673581948205],[24.98604986049861,39.467673581948205],[24.97524975249752,39.51495374550491],[24.97524975249752,39.53690525001339],[24.996849968499703,39.550413868172456],[24.99324993249934,39.55885675452187],[24.996849968499703,39.56223390906163],[25.004050040500402,39.56392248633152],[25.01125011250113,39.56392248633152]]],[[[-31.116911169111688,39.727714481510134],[-31.080910809108076,39.72264874970048],[-31.080910809108076,39.69394293611248],[-31.098910989109896,39.6635485452546],[-31.131311313113116,39.65848281344495],[-31.131311313113116,39.66523712252447],[-31.149311493114936,39.69563151338237],[-31.152911529115272,39.70069724519202],[-31.149311493114936,39.710828708811306],[-31.14211142111421,39.72096017243061],[-31.127711277112752,39.727714481510134],[-31.116911169111688,39.727714481510134]]],[[[26.05886058860588,39.837472004052515],[26.076860768607702,39.84422631313204],[26.0840608406084,39.835783426782626],[26.080460804608066,39.800323304115096],[26.073260732607338,39.78512610868614],[26.05886058860588,39.78681468595603],[26.02646026460266,39.80370045865486],[25.997659976599778,39.81383192227415],[25.98325983259832,39.82227480862356],[25.979659796597986,39.83409484951275],[25.986859868598685,39.842537735862166],[26.004860048600506,39.84591489040193],[26.04086040860409,39.84422631313204],[26.044460444604454,39.84422631313204],[26.051660516605182,39.84422631313204],[26.055260552605546,39.842537735862166],[26.05886058860588,39.837472004052515]]],[[[10.895508955089554,42.38722368157539],[10.913509135091346,42.3754036406862],[10.927909279092802,42.35345213617774],[10.927909279092802,42.33994351801867],[10.938709387093866,42.33150063166926],[10.924309243092438,42.31799201351019],[10.90990909909101,42.32474632258973],[10.870308703087034,42.35345213617774],[10.863108631086305,42.36696075433679],[10.877508775087762,42.37371506341633],[10.877508775087762,42.38722368157539],[10.88470884708849,42.39228941338503],[10.895508955089554,42.38722368157539]]],[[[9.455494554945545,42.64726458113732],[9.480694806948065,42.620247344819205],[9.47709477094773,42.620247344819205],[9.47709477094773,42.61855876754932],[9.455494554945545,42.64726458113732]]],[[[16.85716857168572,42.78403933999783],[16.921969219692215,42.77728503091829],[16.93276932769328,42.77053072183875],[16.936369363693643,42.755333526409814],[16.92556925569255,42.74182490825075],[16.903969039690395,42.73169344463146],[16.885968859688603,42.73000486736157],[16.88236882368824,42.73675917644111],[16.87516875168751,42.738447753710986],[16.85716857168572,42.74351348552064],[16.846368463684655,42.733382021901335],[16.835568355683563,42.73169344463146],[16.821168211682135,42.73675917644111],[16.810368103681043,42.75026779460016],[16.821168211682135,42.755333526409814],[16.82476824768247,42.76377641275923],[16.81756817568177,42.76884214456888],[16.810368103681043,42.76377641275923],[16.803168031680315,42.76377641275923],[16.810368103681043,42.775596453648404],[16.828368283682835,42.780662185458056],[16.85716857168572,42.78403933999783]]],[[[9.840698406984075,43.06434316679835],[9.840698406984075,43.06265458952848],[9.844298442984439,43.060966012258575],[9.847898478984803,43.0592774349887],[9.855098550985502,43.04408023955975],[9.840698406984075,43.025505889591045],[9.822698226982283,43.00862011689222],[9.801098010980127,43.00862011689222],[9.783097830978306,43.02888304413082],[9.808298082980826,43.066031744068226],[9.826298262982647,43.074474630417654],[9.840698406984075,43.06434316679835]]],[[[15.679956799568004,43.64859090217777],[15.741157411574136,43.62832797493917],[15.679956799568004,43.640148015828345],[15.672756727567275,43.636770861288596],[15.661956619566212,43.645213747637996],[15.618756187561871,43.66885382941635],[15.604356043560443,43.673919561226],[15.611556115561172,43.68236244757543],[15.615156151561536,43.67729671576578],[15.618756187561871,43.675608138495875],[15.65115651156512,43.672230983956126],[15.661956619566212,43.6654766748766],[15.669156691566911,43.6553452112573],[15.679956799568004,43.64859090217777]]],[[[15.262352623526255,43.86641736999263],[15.26595265952659,43.85628590637333],[15.34155341553415,43.81238289735637],[15.355953559535607,43.800562856467195],[15.36675366753667,43.79043139284792],[15.395553955539555,43.77185704287919],[15.388353883538855,43.77692277468884],[15.327153271532723,43.795497124657544],[15.30915309153093,43.805628588276846],[15.287552875528775,43.82589151551545],[15.262352623526255,43.8394001336745],[15.247952479524798,43.849531597293804],[15.23355233552337,43.863040215452855],[15.226352263522642,43.87486025634203],[15.24075240752407,43.87992598815168],[15.262352623526255,43.86641736999263]]],[[[14.841148411484113,44.148409774063055],[14.851948519485205,44.1517869286028],[14.85554855548557,44.1517869286028],[14.862748627486269,44.148409774063055],[14.869948699486997,44.139966887713626],[14.85554855548557,44.13658973317385],[14.833948339483413,44.1416554649835],[14.819548195481957,44.15347550587268],[14.823148231482321,44.16867270130163],[14.826748267482685,44.15854123768233],[14.833948339483413,44.1517869286028],[14.841148411484113,44.148409774063055]]],[[[12.353523535235354,45.404711262855756],[12.371523715237146,45.42497419009436],[12.389523895238966,45.43341707644376],[12.407524075240758,45.43003992190401],[12.429124291242914,45.41484272647506],[12.41832418324185,45.41990845828471],[12.403924039240394,45.42159703555458],[12.37512375123751,45.423285612824486],[12.321123211232106,45.34729963567975],[12.321123211232106,45.3540539447593],[12.328323283232834,45.372628294728],[12.353523535235354,45.404711262855756]]],[[[-2.3382233822338208,46.73193299698357],[-2.2986229862298444,46.7201129560944],[-2.2806228062280525,46.709981492475094],[-2.2698226982269887,46.69816145158592],[-2.2914229142291447,46.70322718339557],[-2.370623706237069,46.70491576066544],[-2.3814238142381328,46.72180153336427],[-2.3742237422374046,46.73193299698357],[-2.3562235622356127,46.73362157425345],[-2.3382233822338208,46.73193299698357]]],[[[-5.0490504905048965,48.47961047131216],[-5.0490504905048965,48.47623331677241],[-5.0454504545045324,48.474544739502505],[-5.041850418504168,48.47116758496276],[-5.038250382503833,48.47285616223263],[-5.038250382503833,48.46441327588323],[-5.088650886508873,48.4475275031844],[-5.106651066510665,48.44415034864463],[-5.106651066510665,48.45090465772415],[-5.103051030510301,48.452593234994026],[-5.095850958509573,48.45090465772415],[-5.0922509225092085,48.45090465772415],[-5.099450994509937,48.461036121343454],[-5.106651066510665,48.46272469861333],[-5.131851318513185,48.45765896680368],[-5.131851318513185,48.46441327588323],[-5.0922509225092085,48.48129904858206],[-5.0706507065070525,48.48467620312181],[-5.0490504905048965,48.47961047131216]]],[[[-0.9594095940959448,50.80815852648041],[-0.9594095940959448,50.801404217400886],[-0.9558095580955808,50.79802706286111],[-0.9450094500944886,50.791272753781584],[-0.9378093780937604,50.78789559924181],[-0.9378093780937604,50.78114129016228],[-1.0206102061020488,50.78789559924181],[-1.0206102061020488,50.79464990832133],[-0.9990099900998928,50.801404217400886],[-0.9738097380973727,50.83011003098889],[-0.9594095940959448,50.83011003098889],[-0.9486094860948526,50.82335572190934],[-0.9486094860948526,50.818289990099686],[-0.9522095220952167,50.81322425829006],[-0.9594095940959448,50.80815852648041]]],[[[-179.14319143191432,51.27589443023791],[-179.13239132391323,51.28433731658731],[-179.1179911799118,51.28940304839696],[-179.0891908919089,51.29615735747652],[-179.08199081990819,51.286025893857214],[-179.07119071190712,51.26238581207886],[-179.06039060390603,51.25394292572943],[-179.06039060390603,51.24718861664991],[-179.08559085590855,51.242122884840256],[-179.10359103591037,51.2269256894113],[-179.1179911799118,51.215105648522126],[-179.1359913599136,51.2269256894113],[-179.1287912879129,51.24381146211013],[-179.1359913599136,51.25563150299931],[-179.14319143191432,51.26576296661861],[-179.14319143191432,51.27589443023791]]],[[[-178.98478984789847,51.383963375510405],[-178.9739897398974,51.39578341639958],[-178.9559895598956,51.39578341639958],[-178.91638916389164,51.37720906643088],[-178.90558905589057,51.353568984652526],[-178.91278912789127,51.3451260983031],[-178.93438934389343,51.34343752103322],[-178.94878948789489,51.34006036649345],[-178.9739897398974,51.313043130175345],[-178.98838988389883,51.30797739836569],[-178.9919899198992,51.326551748334396],[-178.9919899198992,51.334994634683795],[-178.97758977589777,51.353568984652526],[-178.9811898118981,51.3637004482718],[-178.98838988389883,51.37720906643088],[-178.98478984789847,51.383963375510405]]],[[[-175.98955989559894,51.883782247395686],[-175.9859598595986,51.887159401935435],[-175.97515975159752,51.89729086555474],[-175.97155971559715,51.89897944282464],[-175.96435964359642,51.88884797920534],[-175.95715957159572,51.87533936104626],[-175.95715957159572,51.86014216561733],[-175.95715957159572,51.851699279267905],[-175.97875978759788,51.851699279267905],[-176.10836108361084,51.883782247395686],[-176.0939609396094,51.89391371101499],[-176.07236072360723,51.90404517463426],[-176.05436054360544,51.91079948371382],[-176.0219602196022,51.91248806098369],[-176.01116011160113,51.91248806098369],[-176.00036000360004,51.91079948371382],[-175.98955989559894,51.905733751904165],[-176.00036000360004,51.90404517463426],[-176.01836018360183,51.89897944282464],[-176.01836018360183,51.892225133745086],[-175.98955989559894,51.883782247395686]]],[[[-175.72315723157232,51.97327684269948],[-175.7087570875709,51.97327684269948],[-175.679956799568,51.96652253361992],[-175.66195661956618,51.96652253361992],[-175.66195661956618,51.9597682245404],[-175.70515705157052,51.95301391546087],[-175.7087570875709,51.949636760921095],[-175.7159571595716,51.93781672003192],[-175.72675726757268,51.93275098822227],[-175.7411574115741,51.93443956549217],[-175.7519575195752,51.93950529730182],[-175.74475744757447,51.94794818365122],[-175.72315723157232,51.97327684269948]]],[[[-175.8671586715867,51.98678546085853],[-175.84915849158492,51.9884740381284],[-175.8347583475835,51.99353976993805],[-175.82035820358203,51.99353976993805],[-175.8059580595806,51.98678546085853],[-175.8779587795878,51.968211110889825],[-175.91035910359105,51.96652253361992],[-175.949959499595,51.97327684269948],[-175.9391593915939,51.98678546085853],[-175.9211592115921,51.990162615398305],[-175.89955899558996,51.98678546085853],[-175.88155881558816,51.980031151779],[-175.88155881558816,51.98509688358865],[-175.8779587795878,51.9884740381284],[-175.8779587795878,51.990162615398305],[-175.87435874358744,51.99353976993805],[-175.8671586715867,51.98678546085853]]],[[[-171.25551255512556,52.528818764490865],[-171.22311223112231,52.51024441452216],[-171.20871208712086,52.498424373632986],[-171.21231212312122,52.484915755473935],[-171.2159121591216,52.47647286912451],[-171.21951219512195,52.46971856004498],[-171.22311223112231,52.462964250965456],[-171.27711277112772,52.45452136461603],[-171.3131131311313,52.46465282823533],[-171.3131131311313,52.48829291001368],[-171.2951129511295,52.51362156906194],[-171.25551255512556,52.528818764490865]]],[[[-170.07110071100712,52.91888011383378],[-170.01350013500135,52.90537149567473],[-169.99549995499956,52.90537149567473],[-170.009900099001,52.88173141389635],[-170.03150031500314,52.86484564119752],[-170.05670056700566,52.85640275484812],[-170.0891008910089,52.86484564119752],[-170.10350103501034,52.87159995027707],[-170.1179011790118,52.88004283662647],[-170.1251012510125,52.8884857229759],[-170.1251012510125,52.898617186595175],[-170.1179011790118,52.91043722748435],[-170.10350103501034,52.915502959294],[-170.08550085500855,52.91888011383378],[-170.07110071100712,52.91888011383378]]],[[[-169.69309693096932,53.03539194545567],[-169.68229682296823,53.0337033681858],[-169.67149671496716,53.0252604818364],[-169.6678966789668,53.01344044094722],[-169.6678966789668,53.001620400058016],[-169.6858968589686,52.98980035916884],[-169.70029700297002,52.96784885466039],[-169.71829718297184,52.95096308196156],[-169.74709747097472,52.94589735015191],[-169.74349743497436,52.95940596831096],[-169.76149761497615,52.96953743193026],[-169.7578975789758,52.983046050089314],[-169.75069750697506,52.99824324551827],[-169.75429754297542,53.0252604818364],[-169.73269732697327,53.0337033681858],[-169.7110971109711,53.037080522725574],[-169.69309693096932,53.03539194545567]]],[[[-9.664296642966434,53.27516991777904],[-9.639096390963914,53.25152983600066],[-9.657096570965706,53.232955486031955],[-9.69309693096929,53.22620117695243],[-9.71109711097111,53.238021217841606],[-9.714697146971474,53.25321841327056],[-9.71829718297181,53.259972722350085],[-9.71829718297181,53.26672703142961],[-9.71109711097111,53.27516991777904],[-9.700297002970018,53.28023564958866],[-9.68589685896859,53.281924226858564],[-9.671496714967134,53.28023564958866],[-9.664296642966434,53.27516991777904]]],[[[-4.577445774457743,53.27179276323926],[-4.573845738457379,53.26672703142961],[-4.563045630456287,53.259972722350085],[-4.559445594455951,53.25321841327056],[-4.563045630456287,53.24139837238138],[-4.570245702457015,53.23970979511148],[-4.581045810458107,53.24139837238138],[-4.602646026460263,53.25321841327056],[-4.624246242462419,53.27516991777904],[-4.6314463144631475,53.28361280412844],[-4.642246422464211,53.28361280412844],[-4.671046710467095,53.28361280412844],[-4.6782467824678236,53.28530138139831],[-4.692646926469251,53.30218715409714],[-4.692646926469251,53.308941463176694],[-4.667446674466731,53.32413865860562],[-4.6566465664656675,53.31907292679597],[-4.645846458464575,53.31907292679597],[-4.627846278462783,53.32076150406587],[-4.620646206462055,53.317384349526094],[-4.602646026460263,53.308941463176694],[-4.591845918459171,53.29712142228749],[-4.581045810458107,53.28530138139831],[-4.577445774457743,53.27179276323926]]],[[[6.442264422644229,53.55716232184943],[6.456664566645685,53.55885089911931],[6.510665106651061,53.54365370369038],[6.507065070650725,53.54365370369038],[6.503465034650361,53.54196512642048],[6.499864998649997,53.540276549150605],[6.496264962649633,53.536899394610856],[6.460264602646021,53.54365370369038],[6.442264422644229,53.55040801276991],[6.442264422644229,53.55716232184943]]],[[[6.874268742687434,53.67198557620145],[6.910269102691046,53.68380561709063],[7.0470704707047105,53.69393708070993],[7.086670866708687,53.687182771630404],[6.874268742687434,53.67198557620145]]],[[[7.133471334713363,53.70744569886901],[7.180271802718039,53.72433147156784],[7.234272342723443,53.72939720337746],[7.345873458734587,53.727708626107585],[7.345873458734587,53.722642894297934],[7.342273422734223,53.722642894297934],[7.295472954729547,53.71082285340876],[7.173071730717311,53.700691389789455],[7.133471334713363,53.70744569886901]]],[[[7.367473674736743,53.727708626107585],[7.3818738187382,53.73446293518711],[7.403474034740356,53.73615151245701],[7.4214742147421475,53.73446293518711],[7.435874358743604,53.727708626107585],[7.43227432274324,53.72433147156784],[7.428674286742876,53.722642894297934],[7.4214742147421475,53.72095431702806],[7.3818738187382,53.727708626107585],[7.367473674736743,53.727708626107585]]],[[[8.119881198811981,53.72095431702806],[8.134281342813438,53.73446293518711],[8.15228152281523,53.73952866699676],[8.173881738817386,53.73784008972689],[8.195481954819542,53.727708626107585],[8.181081810818114,53.727708626107585],[8.170281702817022,53.72602004883771],[8.155881558815594,53.71588858521841],[8.15228152281523,53.714200007948534],[8.141481414814166,53.71588858521841],[8.137881378813802,53.71757716248828],[8.130681306813074,53.719265739758185],[8.119881198811981,53.714200007948534],[8.119881198811981,53.72095431702806]]],[[[7.518675186751864,53.76148017150524],[7.605076050760516,53.763168748775115],[7.626676266762672,53.754725862425715],[7.626676266762672,53.75134870788594],[7.626676266762672,53.749660130616064],[7.623076230762308,53.749660130616064],[7.619476194761944,53.749660130616064],[7.547475474754748,53.749660130616064],[7.515075150751528,53.74628297607629],[7.511475114751164,53.727708626107585],[7.48267482674828,53.727708626107585],[7.471874718747188,53.73108578064736],[7.468274682746824,53.74459439880641],[7.475474754747552,53.75641443969559],[7.486274862748644,53.76148017150524],[7.518675186751864,53.76148017150524]]],[[[7.6626766267662845,53.76148017150524],[7.6878768787688045,53.781743098743846],[7.7274772747727525,53.7868088305535],[7.813878138781405,53.78343167601372],[7.813878138781405,53.776677366934194],[7.799477994779949,53.776677366934194],[7.777877778777793,53.768234480584766],[7.7490774907749085,53.76148017150524],[7.720277202772024,53.75979159423537],[7.695076950769504,53.76992305785467],[7.6842768427684405,53.76148017150524],[7.677076770767712,53.75810301696549],[7.669876698766984,53.75810301696549],[7.6626766267662845,53.76148017150524]]],[[[7.875078750787509,53.776677366934194],[7.853478534785353,53.785120253283594],[7.860678606786081,53.790185985093245],[7.875078750787509,53.7952517169029],[7.896678966789665,53.79694029417277],[7.914679146791485,53.7952517169029],[7.929079290792913,53.79187456236312],[7.954279542795433,53.78343167601372],[7.947079470794705,53.78343167601372],[7.936279362793641,53.78343167601372],[7.893078930789301,53.78849740782337],[7.875078750787509,53.78849740782337],[7.875078750787509,53.776677366934194]]],[[[11.374313743137435,53.98099521659],[11.388713887138891,54.004635298368356],[11.42831428314284,54.02320964833706],[11.467914679146787,54.031652534686486],[11.496714967149671,54.02320964833706],[11.467914679146787,53.9708637529707],[11.457114571145723,53.9607322893514],[11.446314463144631,53.9607322893514],[11.442714427144267,53.96748659843092],[11.449914499144995,53.986060948399654],[11.446314463144631,53.99788098928883],[11.439114391143931,53.99788098928883],[11.431914319143203,53.9894381029394],[11.439114391143931,53.97424090751048],[11.424714247142475,53.96748659843092],[11.406714067140683,53.96748659843092],[11.392313923139227,53.97424090751048],[11.374313743137435,53.98099521659]]],[[[-165.2650526505265,54.09075273913237],[-165.26145261452615,54.08568700732272],[-165.25425254252542,54.07724412097332],[-165.2470524705247,54.06880123462389],[-165.2470524705247,54.056981193734714],[-165.26145261452615,54.06373550281424],[-165.2722527225272,54.06542408008414],[-165.27945279452794,54.06373550281424],[-165.2830528305283,54.06035834827449],[-165.2938529385294,54.04684973011541],[-165.2938529385294,54.04347257557566],[-165.30825308253083,54.048538307385314],[-165.32625326253262,54.067112657354016],[-165.3370533705337,54.070489811893765],[-165.38745387453875,54.070489811893765],[-165.42345423454233,54.07724412097332],[-165.46665466654667,54.07386696643354],[-165.48465484654847,54.07724412097332],[-165.37665376653766,54.09075273913237],[-165.2650526505265,54.09075273913237]]],[[[11.52911529115292,54.075555543703416],[11.52911529115292,54.07724412097332],[11.532715327153284,54.08568700732272],[11.601116011160116,54.10426135729142],[11.615516155161572,54.11270424364085],[11.597515975159752,54.097507048211895],[11.55431554315544,54.07386696643354],[11.539915399154012,54.056981193734714],[11.532715327153284,54.056981193734714],[11.52911529115292,54.075555543703416]]],[[[8.962289622896236,54.52302852022234],[8.958689586895872,54.52302852022234],[8.955089550895508,54.51965136568256],[8.955089550895508,54.51458563387294],[8.955089550895508,54.50951990206329],[8.937089370893716,54.49938843844399],[8.926289262892624,54.48756839755481],[8.911889118891196,54.47574835666563],[8.886688866888676,54.46899404758611],[8.843488434884364,54.467305470316205],[8.825488254882544,54.47068262485598],[8.811088110881116,54.48250266574516],[8.825488254882544,54.48587982028491],[8.825488254882544,54.49094555209456],[8.821888218882208,54.49769986117411],[8.811088110881116,54.502765592983735],[8.843488434884364,54.51965136568256],[8.879488794887948,54.529782829301865],[8.919089190891924,54.529782829301865],[8.962289622896236,54.52302852022234]]],[[[13.141931419314204,54.59732592009718],[13.120331203312048,54.587194456477874],[13.11313113131132,54.57030868377905],[13.11313113131132,54.55004575654047],[13.102331023310228,54.529782829301865],[13.095130951309528,54.524717097492214],[13.080730807308072,54.51796278841269],[13.073530735307372,54.50951990206329],[13.069930699307008,54.49938843844399],[13.069930699307008,54.489256974824684],[13.069930699307008,54.46899404758611],[13.06273062730628,54.46899404758611],[13.06273062730628,54.48250266574516],[13.06273062730628,54.50445417025364],[13.095130951309528,54.57030868377905],[13.102331023310228,54.5956373428273],[13.109531095310956,54.60239165190683],[13.127531275312748,54.605768806446605],[13.13833138331384,54.605768806446605],[13.152731527315268,54.605768806446605],[13.156331563315632,54.59901449736705],[13.156331563315632,54.587194456477874],[13.156331563315632,54.58888303374778],[13.152731527315268,54.59057161101765],[13.149131491314932,54.59057161101765],[13.149131491314932,54.5770629928586],[13.141931419314204,54.5770629928586],[13.141931419314204,54.59732592009718]]],[[[8.332283322833234,54.69357482448049],[8.382683826838274,54.63954035184426],[8.400684006840066,54.63278604276471],[8.386283862838638,54.62603173368518],[8.35388353883539,54.619277424605656],[8.32868328683287,54.63109746549483],[8.310683106831078,54.65136039273344],[8.292682926829286,54.66655758816236],[8.321483214832142,54.698640556290144],[8.339483394833962,54.71046059717932],[8.361083610836118,54.71552632898897],[8.361083610836118,54.71046059717932],[8.357483574835754,54.708772019909446],[8.35388353883539,54.708772019909446],[8.343083430834326,54.70201771082992],[8.332283322833234,54.69357482448049]]],[[[-159.28539285392853,54.94010710588336],[-159.26739267392674,54.92997564226408],[-159.24939249392494,54.92997564226408],[-159.2277922779228,54.93335279680383],[-159.21339213392133,54.93166421953396],[-159.20979209792097,54.918155601374906],[-159.22059220592206,54.9063355604857],[-159.24579245792458,54.88944978778687],[-159.28539285392853,54.872564015088045],[-159.31779317793178,54.88438405597725],[-159.3249932499325,54.9080241377556],[-159.29979299792998,54.91984417864478],[-159.30699306993068,54.92997564226408],[-159.31779317793178,54.93335279680383],[-159.32859328593287,54.935041374073705],[-159.33939339393393,54.935041374073705],[-159.32139321393214,54.93841852861348],[-159.30699306993068,54.94686141496291],[-159.29259292592926,54.95192714677253],[-159.27819278192783,54.948549992232785],[-159.28539285392853,54.94010710588336]]],[[[-8.526685266852667,55.00933877394857],[-8.508685086850875,55.005961619408794],[-8.497884978849783,55.00089588759914],[-8.48708487084869,54.99245300124974],[-8.483484834848355,54.975567228550915],[-8.526685266852667,54.96712434220149],[-8.548285482854823,54.96881291947136],[-8.566285662856615,54.975567228550915],[-8.566285662856615,54.98232153763044],[-8.56268562685625,54.98569869217019],[-8.56268562685625,54.98738726944009],[-8.566285662856615,54.99583015578949],[-8.551885518855187,55.00089588759914],[-8.544685446854459,55.00258446486902],[-8.548285482854823,55.005961619408794],[-8.551885518855187,55.00765019667867],[-8.551885518855187,55.00933877394857],[-8.544685446854459,55.016093083028096],[-8.53748537485373,55.016093083028096],[-8.53028530285303,55.01440450575819],[-8.526685266852667,55.00933877394857]]],[[[-6.237062370623704,55.31159410525757],[-6.1830618306183,55.30652837344792],[-6.175861758617572,55.30315121890814],[-6.172261722617208,55.29301975528884],[-6.179461794617936,55.28119971439966],[-6.186661866618664,55.269379673510485],[-6.193861938619392,55.26262536443096],[-6.193861938619392,55.27106825078039],[-6.193861938619392,55.27613398259001],[-6.190261902619028,55.27951113712979],[-6.186661866618664,55.28457686893944],[-6.211862118621184,55.29470833255874],[-6.237062370623704,55.296396909828616],[-6.262262622626224,55.29470833255874],[-6.28386283862838,55.296396909828616],[-6.273062730627288,55.30315121890814],[-6.262262622626224,55.30821695071779],[-6.247862478624768,55.30990552798767],[-6.237062370623704,55.31159410525757]]],[[[-163.13743137431373,55.402777277831234],[-163.1518315183152,55.39771154602158],[-163.16263162631626,55.39940012329146],[-163.17343173431735,55.40446585510111],[-163.1950319503195,55.412908741450536],[-163.18783187831878,55.42472878233971],[-163.16623166231662,55.43654882322889],[-163.1410314103141,55.44161455503854],[-163.13383133831337,55.43317166868911],[-163.130231302313,55.42304020506981],[-163.130231302313,55.412908741450536],[-163.13743137431373,55.402777277831234]]],[[[8.476284762847627,55.345365650655225],[8.451084510845106,55.340299918845574],[8.425884258842586,55.3554971142745],[8.400684006840066,55.380825773322755],[8.371883718837182,55.42810593687946],[8.364683646836482,55.448368864118066],[8.375483754837546,55.46356605954699],[8.407884078840794,55.46863179135664],[8.411484114841159,55.438237400498764],[8.42948429484295,55.43317166868911],[8.447484474844742,55.43486024595899],[8.461884618846199,55.42810593687946],[8.461884618846199,55.416285895990285],[8.451084510845106,55.39264581421193],[8.45468454684547,55.3842029278625],[8.461884618846199,55.37238288697333],[8.469084690846927,55.353808537004625],[8.476284762847627,55.345365650655225]]],[[[-6.204662046620456,56.10353684483255],[-6.197461974619728,56.106913999372324],[-6.1830618306183,56.10184826756267],[-6.175861758617572,56.106913999372324],[-6.175861758617572,56.11029115391207],[-6.179461794617936,56.11366830845185],[-6.1830618306183,56.1187340402615],[-6.165061650616508,56.120422617531375],[-6.150661506615052,56.125488349341026],[-6.136261362613624,56.125488349341026],[-6.13266132661326,56.11197973118195],[-6.165061650616508,56.08158534032407],[-6.175861758617572,56.06132241308549],[-6.175861758617572,56.044436640386664],[-6.193861938619392,56.035993754037236],[-6.222662226622248,56.030928022227585],[-6.247862478624768,56.030928022227585],[-6.269462694626952,56.03768233130711],[-6.255062550625496,56.044436640386664],[-6.247862478624768,56.05625668127584],[-6.240662406624068,56.06976529943489],[-6.23346233462334,56.08158534032407],[-6.211862118621184,56.09678253575302],[-6.204662046620456,56.10353684483255]]],[[[-5.689856898568991,56.20147432648574],[-5.682656826568262,56.19472001740621],[-5.67185671856717,56.17952282197726],[-5.693456934569326,56.169391358357984],[-5.725857258572574,56.16263704927843],[-5.74745747457473,56.160948472008556],[-5.736657366573667,56.177834244707384],[-5.72225722257221,56.18627713105681],[-5.689856898568991,56.20147432648574]]],[[[-5.632256322563222,56.2639516854714],[-5.628656286562858,56.26057453093165],[-5.62145621456213,56.25719737639187],[-5.617856178561766,56.258885953661746],[-5.61425614256143,56.2639516854714],[-5.610656106561066,56.24875449004247],[-5.617856178561766,56.23524587188339],[-5.628656286562858,56.22004867645444],[-5.635856358563586,56.18965428559656],[-5.64665646656465,56.19472001740621],[-5.668256682566806,56.22173725372434],[-5.657456574565742,56.231868717343644],[-5.64665646656465,56.255508799122],[-5.632256322563222,56.2639516854714]]],[[[-5.632256322563222,56.31798615810766],[-5.62145621456213,56.32474046718718],[-5.59625596255961,56.32136331264741],[-5.585455854558546,56.32642904445706],[-5.58905589055891,56.31292042629801],[-5.599855998559974,56.30616611721848],[-5.607056070560702,56.29772323086905],[-5.599855998559974,56.28421461271],[-5.62145621456213,56.275771726360574],[-5.63945639456395,56.2825260354401],[-5.64665646656465,56.29941180813893],[-5.632256322563222,56.31798615810766]]],[[[-5.556655566555662,56.414235062490974],[-5.527855278552778,56.414235062490974],[-5.51345513455135,56.41592363976085],[-5.502655026550258,56.4209893715705],[-5.517055170551686,56.40410359887167],[-5.535055350553506,56.392283557982495],[-5.556655566555662,56.387217826172844],[-5.585455854558546,56.387217826172844],[-5.578255782557818,56.39566071252224],[-5.574655746557454,56.4024150216018],[-5.556655566555662,56.414235062490974]]],[[[-6.161461614616144,56.46995811239708],[-6.211862118621184,56.468269535127206],[-6.237062370623704,56.46995811239708],[-6.262262622626224,56.48346673055616],[-6.251462514625132,56.49359819417546],[-6.240662406624068,56.50035250325499],[-6.229862298622976,56.503729657794736],[-6.215462154621548,56.503729657794736],[-6.201062010620092,56.495286771445336],[-6.172261722617208,56.48177815328626],[-6.161461614616144,56.46995811239708]]],[[[11.511115111151128,56.69622746656137],[11.511115111151128,56.70973608472045],[11.521915219152191,56.71480181653007],[11.60471604716048,56.71986754833972],[11.647916479164792,56.72999901195902],[11.647916479164792,56.721556125609624],[11.644316443164428,56.721556125609624],[11.640716407164092,56.71986754833972],[11.637116371163728,56.71649039379997],[11.619116191161908,56.71142466199032],[11.60471604716048,56.70129319837102],[11.593915939159388,56.68947315748184],[11.57951579515796,56.68103027113244],[11.565115651156532,56.677653116592666],[11.543515435154347,56.67934169386254],[11.525515255152555,56.68440742567219],[11.511115111151128,56.69622746656137]]],[[[8.825488254882544,56.7435076301181],[8.811088110881116,56.735064743768675],[8.771487714877168,56.71649039379997],[8.767887678876804,56.69791604383127],[8.685086850868515,56.686096002942065],[8.659886598865995,56.677653116592666],[8.649086490864903,56.68103027113244],[8.620286202862047,56.713113239260196],[8.609486094860955,56.721556125609624],[8.587885878858799,56.73675332103855],[8.562685626856279,56.7435076301181],[8.55548555485555,56.7435076301181],[8.526685266852667,56.73675332103855],[8.515885158851603,56.73844189830845],[8.519485194851967,56.75026193919763],[8.523085230852303,56.75532767100728],[8.53028530285303,56.75870482554703],[8.537485374853759,56.762081980086805],[8.548285482854823,56.76377055735668],[8.551885518855187,56.76883628916633],[8.551885518855187,56.77727917551573],[8.548285482854823,56.78741063913503],[8.544685446854487,56.79078779367481],[8.573485734857343,56.802607834563986],[8.645486454864567,56.80767356637364],[8.667086670866723,56.82624791634234],[8.656286562865631,56.824559339072465],[8.645486454864567,56.82624791634234],[8.631086310863111,56.827936493612214],[8.620286202862047,56.83131364815199],[8.627486274862747,56.84144511177129],[8.645486454864567,56.85664230720022],[8.656286562865631,56.86677377081952],[8.652686526865267,56.86677377081952],[8.649086490864903,56.873528079899046],[8.649086490864903,56.890413852597874],[8.652686526865267,56.89379100713765],[8.659886598865995,56.89379100713765],[8.667086670866723,56.89379100713765],[8.674286742867423,56.89379100713765],[8.703087030870307,56.900545316217176],[8.760687606876076,56.90561104802683],[8.793087930879324,56.914053934376255],[8.81468814688148,56.91067677983648],[8.832688326883272,56.92418539799553],[8.868688686886884,56.963022675202836],[8.89028890288904,56.95457978885344],[8.904689046890468,56.96639982974261],[8.91548915489156,56.979908447901664],[8.929889298892988,56.976531293361916],[8.922689226892288,56.96808840701249],[8.911889118891196,56.95626836612331],[8.908289082890832,56.949514057043785],[8.911889118891196,56.944448325234134],[8.919089190891924,56.930939707075055],[8.922689226892288,56.922496820725655],[8.919089190891924,56.91911966618588],[8.908289082890832,56.887036698058125],[8.901089010890104,56.87521665716895],[8.893888938889404,56.8701509253593],[8.886688866888676,56.86677377081952],[8.886688866888676,56.8785938117087],[8.883088830888312,56.887036698058125],[8.875888758887584,56.890413852597874],[8.868688686886884,56.89379100713765],[8.843488434884364,56.88365954351835],[8.839888398884,56.8802823889786],[8.836288362883636,56.868462348089395],[8.839888398884,56.86339661627977],[8.843488434884364,56.85833088447012],[8.847088470884728,56.85326515266047],[8.854288542885428,56.819493607262814],[8.86508865088652,56.80936214364351],[8.879488794887948,56.80598498910376],[8.875888758887584,56.80091925729411],[8.868688686886884,56.797542102754335],[8.861488614886156,56.797542102754335],[8.854288542885428,56.797542102754335],[8.861488614886156,56.79416494821456],[8.868688686886884,56.79078779367481],[8.854288542885428,56.78065633005551],[8.839888398884,56.757016248277154],[8.825488254882544,56.7435076301181]]],[[[-6.607866078660777,57.05251727050663],[-6.589865898658985,57.05927157958615],[-6.557465574655737,57.069403043205455],[-6.535865358653581,57.0727801977452],[-6.525065250652489,57.06771446593558],[-6.499864998649969,57.0643373113958],[-6.489064890648905,57.05927157958615],[-6.514265142651425,57.05082869323675],[-6.546665466654673,57.047451538696976],[-6.579065790657893,57.04914011596685],[-6.607866078660777,57.05251727050663]]],[[[-5.959859598595983,57.283852356480566],[-5.985059850598503,57.29060666556009],[-6.006660066600659,57.30411528371914],[-6.0138601386013875,57.31762390187819],[-5.988659886598867,57.32606678822762],[-5.956259562595619,57.32100105641797],[-5.931059310593099,57.30749243825892],[-5.923859238592371,57.292295242829965],[-5.959859598595983,57.283852356480566]]],[[[-5.967059670596711,57.51856459699425],[-5.985059850598503,57.521941751534],[-5.988659886598867,57.533761792423206],[-5.988659886598867,57.54558183331238],[-5.974259742597411,57.559090451471434],[-5.981459814598139,57.56077902874131],[-5.981459814598139,57.56246760601121],[-5.981459814598139,57.56584476055096],[-5.974259742597411,57.572599069630485],[-5.967059670596711,57.57597622417026],[-5.963459634596347,57.577664801440136],[-5.956259562595619,57.572599069630485],[-5.967059670596711,57.533761792423206],[-5.967059670596711,57.51856459699425]]],[[[-7.223472234722351,57.70937382849098],[-7.180271802718011,57.73470248753924],[-7.162271622716219,57.73639106480911],[-7.151471514715155,57.72625960118981],[-7.169471694716947,57.71443956030063],[-7.198271982719831,57.70768525122111],[-7.223472234722351,57.70937382849098]]],[[[-8.620286202862019,57.83263996919243],[-8.605886058860591,57.8258856601129],[-8.569885698856979,57.82419708284303],[-8.551885518855187,57.81913135103338],[-8.569885698856979,57.8073113101442],[-8.591485914859135,57.80393415560442],[-8.609486094860955,57.81237704195382],[-8.620286202862019,57.83263996919243]]],[[[-7.043470434704346,57.901871637257614],[-7.0470704707047105,57.89005159636844],[-7.05427054270541,57.884985864558786],[-7.065070650706502,57.88160871001904],[-7.07947079470793,57.879920132749135],[-7.075870758707595,57.88836301909856],[-7.075870758707595,57.89005159636844],[-7.07947079470793,57.89174017363831],[-7.07947079470793,57.89511732817809],[-7.036270362703618,57.91706883268657],[-7.014670146701462,57.92213456449622],[-6.99666996669967,57.91538025541669],[-6.99666996669967,57.893428750908214],[-7.007470074700734,57.89005159636844],[-7.043470434704346,57.901871637257614]]],[[[11.737917379173808,58.058909323356716],[11.737917379173808,58.04202355065789],[11.741517415174172,58.03526924157836],[11.745117451174508,58.031892087038585],[11.734317343173444,58.00318627345058],[11.73071730717308,57.99812054164093],[11.719917199171988,57.991366232561404],[11.709117091170924,57.99305480983128],[11.70551705517056,57.999809118910804],[11.712717127171288,58.01162915980001],[11.694716947169468,58.01500631433976],[11.68031680316804,58.00656342799036],[11.665916659166612,57.98967765529153],[11.658716587165884,57.9626604189734],[11.651516515165156,57.955906109893874],[11.640716407164092,57.95084037808422],[11.619116191161908,57.95421753262397],[11.611916119161208,57.94915180081435],[11.60471604716048,57.94070891446492],[11.593915939159388,57.93564318265527],[11.57951579515796,57.93564318265527],[11.572315723157232,57.94070891446492],[11.565115651156532,57.94577464627457],[11.561515615156168,57.94915180081435],[11.532715327153284,57.95084037808422],[11.52911529115292,57.95421753262397],[11.525515255152555,57.96603757351318],[11.521915219152191,57.974480459862576],[11.514715147151492,57.98461192348188],[11.511115111151128,57.99305480983128],[11.514715147151492,58.00149769618071],[11.525515255152555,58.004874850720455],[11.55431554315544,58.00318627345058],[11.568715687156867,58.00318627345058],[11.547115471154711,58.009940582530106],[11.525515255152555,58.009940582530106],[11.5039150391504,58.01331773706988],[11.496714967149671,58.02851493249884],[11.507515075150764,58.045400705197636],[11.525515255152555,58.05046643700729],[11.568715687156867,58.045400705197636],[11.658716587165884,58.045400705197636],[11.68031680316804,58.05046643700729],[11.698316983169832,58.058909323356716],[11.716317163171652,58.06397505516637],[11.737917379173808,58.058909323356716]]],[[[-6.874268742687434,58.21594700945579],[-6.863468634686342,58.21594700945579],[-6.859868598685978,58.21594700945579],[-6.859868598685978,58.22270131853534],[-6.87066870668707,58.22607847307509],[-6.881468814688134,58.236209936694394],[-6.885068850688498,58.24802997758357],[-6.881468814688134,58.25816144120287],[-6.859868598685978,58.25309570939322],[-6.8274682746827295,58.23452135942452],[-6.82026820268203,58.23789851396427],[-6.809468094680938,58.23283278215462],[-6.8022680226802095,58.22607847307509],[-6.79506795067951,58.219324163995566],[-6.791467914679146,58.20919270037626],[-6.874268742687434,58.20919270037626],[-6.874268742687434,58.21594700945579]]],[[[11.80631806318064,58.23114420488474],[11.813518135181369,58.210881277646166],[11.813518135181369,58.18892977313769],[11.813518135181369,58.14502676412073],[11.80631806318064,58.12645241415203],[11.78111781117812,58.1196981050725],[11.7559175591756,58.1180095278026],[11.709117091170924,58.09774660056402],[11.65511655116552,58.107878064183296],[11.629916299163,58.0994351778339],[11.611916119161208,58.1180095278026],[11.586715867158688,58.12307525961225],[11.557915579155804,58.1180095278026],[11.532715327153284,58.10618948691342],[11.521915219152191,58.09605802329412],[11.518315183151827,58.089303714214594],[11.514715147151492,58.085926559674846],[11.507515075150764,58.085926559674846],[11.496714967149671,58.089303714214594],[11.464314643146452,58.10618948691342],[11.464314643146452,58.072417941515766],[11.457114571145723,58.072417941515766],[11.449914499144995,58.09774660056402],[11.446314463144631,58.102812332373674],[11.417514175141747,58.12307525961225],[11.406714067140683,58.13151814596168],[11.410314103141047,58.14502676412073],[11.42831428314284,58.16022395954968],[11.52911529115292,58.21256985491604],[11.561515615156168,58.219324163995566],[11.586715867158688,58.23283278215462],[11.601116011160116,58.23789851396427],[11.619116191161908,58.23789851396427],[11.647916479164792,58.23452135942452],[11.662316623166248,58.23789851396427],[11.658716587165884,58.24802997758357],[11.658716587165884,58.25816144120287],[11.665916659166612,58.26660432755227],[11.676716767167676,58.271670059361924],[11.673116731167312,58.281801522981226],[11.669516695166948,58.285178677521],[11.687516875168768,58.29193298660053],[11.701917019170196,58.29193298660053],[11.737917379173808,58.285178677521],[11.748717487174872,58.263227173012524],[11.770317703177028,58.25309570939322],[11.788317883178848,58.246341400313696],[11.80631806318064,58.23114420488474]]],[[[19.33039330393305,58.36791896374524],[19.290792907929074,58.35103319104641],[19.251192511925126,58.34259030469701],[19.215192151921514,58.35441034558619],[19.186391863918658,58.39493620006337],[19.222392223922242,58.39493620006337],[19.247592475924762,58.38649331371394],[19.30519305193053,58.379739004634416],[19.33039330393305,58.36791896374524]]],[[[-2.5434254342543454,59.12102442611294],[-2.5470254702547095,59.10920438522376],[-2.5434254342543454,59.10245007614421],[-2.5146251462514613,59.09400718979481],[-2.532625326253253,59.083875726175506],[-2.575825758257565,59.08049857163576],[-2.5974259742597496,59.073744262556204],[-2.6010260102600853,59.09569576706468],[-2.6154261542615416,59.10751580795386],[-2.6334263342633335,59.10920438522376],[-2.6514265142651254,59.100761498874334],[-2.64782647826479,59.08556430344538],[-2.669426694266946,59.08218714890563],[-2.6874268742687377,59.08894145798516],[-2.6658266582665817,59.10751580795386],[-2.6514265142651254,59.11258153976351],[-2.6334263342633335,59.11258153976351],[-2.6226262262622697,59.11595869430329],[-2.6190261902619056,59.127778735192464],[-2.6226262262622697,59.13453304427199],[-2.6550265502654895,59.15141881697082],[-2.6658266582665817,59.154795971510595],[-2.6262262622626054,59.163238857859994],[-2.6118261182611775,59.16155028059012],[-2.6118261182611775,59.154795971510595],[-2.6154261542615416,59.15141881697082],[-2.6190261902619056,59.14804166243104],[-2.5902259022590215,59.14804166243104],[-2.5794257942579293,59.14804166243104],[-2.5686256862568655,59.14297593062142],[-2.5830258302582934,59.14466450789129],[-2.5938259382593856,59.13791019881177],[-2.5938259382593856,59.12946731246234],[-2.5830258302582934,59.12102442611294],[-2.5722257222572296,59.119335848843036],[-2.5578255782557733,59.12102442611294],[-2.5362253622536173,59.127778735192464],[-2.5362253622536173,59.12271300338281],[-2.5362253622536173,59.12102442611294],[-2.5398253982539813,59.12102442611294],[-2.5434254342543454,59.12102442611294]]],[[[18.430384303843056,59.257799184973436],[18.42678426784269,59.261176339513185],[18.419584195841963,59.27299638040236],[18.412384123841235,59.27806211221201],[18.397983979839807,59.28650499856144],[18.343983439834403,59.30001361672049],[18.462784627846275,59.29832503945062],[18.523985239852408,59.288193575831315],[18.613986139861396,59.257799184973436],[18.55998559985599,59.257799184973436],[18.538385383853836,59.25948776224331],[18.51678516785168,59.27130780313249],[18.51678516785168,59.24935629862401],[18.531185311853136,59.24260198954448],[18.577985779857812,59.24429056681436],[18.552785527855292,59.225716216845655],[18.520385203852044,59.22909337138543],[18.469984699847004,59.252733453163785],[18.430384303843056,59.257799184973436]]],[[[5.275852758527606,59.30001361672049],[5.279452794527941,59.293259307640966],[5.2938529385293975,59.283127844021664],[5.3154531545315535,59.27299638040236],[5.319053190531918,59.25611060770353],[5.319053190531918,59.22909337138543],[5.301053010530126,59.20545328960705],[5.297452974529762,59.168304589669646],[5.261452614526149,59.15141881697082],[5.236252362523629,59.141287353351515],[5.207452074520745,59.14297593062142],[5.189451894518953,59.15648454878047],[5.178651786517861,59.16999316693952],[5.167851678516797,59.195321825987776],[5.164251642516433,59.217273330496255],[5.171451714517161,59.24091341227461],[5.171451714517161,59.257799184973436],[5.171451714517161,59.26793064859271],[5.164251642516433,59.27299638040236],[5.178651786517861,59.29157073037109],[5.229052290522901,59.28481642129154],[5.182251822518225,59.320276543959096],[5.175051750517525,59.33378516211815],[5.175051750517525,59.3489823575471],[5.185851858518589,59.355736666626626],[5.200252002520045,59.36249097570615],[5.207452074520745,59.37431101659533],[5.189451894518953,59.38444248021463],[5.178651786517861,59.40132825291346],[5.185851858518589,59.41483687107251],[5.207452074520745,59.41652544834241],[5.243452434524357,59.36924528478568],[5.254252542525421,59.3472937802772],[5.261452614526149,59.34053947119767],[5.2722527225272415,59.33547373938802],[5.279452794527941,59.33040800757837],[5.286652866528669,59.320276543959096],[5.283052830528305,59.315210812149445],[5.279452794527941,59.310145080339794],[5.275852758527606,59.30001361672049]]],[[[-1.6506165061650506,59.529660125424556],[-1.6434164341643225,59.54485732085348],[-1.6254162541625305,59.55498878447278],[-1.6038160381603745,59.560054516282435],[-1.5822158221582185,59.560054516282435],[-1.5822158221582185,59.55498878447278],[-1.5822158221582185,59.55330020720291],[-1.5858158581585826,59.55330020720291],[-1.5894158941589467,59.55330020720291],[-1.6038160381603745,59.55161162993301],[-1.6074160741607386,59.546545898123355],[-1.6110161101611027,59.53979158904383],[-1.5966159661596464,59.53979158904383],[-1.5966159661596464,59.53134870269443],[-1.6146161461614668,59.52628297088478],[-1.6326163261632587,59.51615150726548],[-1.6470164701646866,59.5144629299956],[-1.6506165061650506,59.529660125424556]]],[[[5.308253082530825,59.75930663412859],[5.319053190531918,59.752552325049066],[5.3334533345333455,59.72215793419116],[5.344253442534438,59.71033789330198],[5.308253082530825,59.690074966063406],[5.2902529025290335,59.68332065698388],[5.2686526865268775,59.68332065698388],[5.2686526865268775,59.690074966063406],[5.279452794527941,59.69176354333328],[5.3118531185311895,59.70358358422246],[5.301053010530126,59.71878077965141],[5.297452974529762,59.73566655235024],[5.2902529025290335,59.74917517050929],[5.2686526865268775,59.752552325049066],[5.2722527225272415,59.73566655235024],[5.261452614526149,59.733977975080336],[5.239852398523993,59.742420861429764],[5.2254522545225655,59.755929479588815],[5.221852218522201,59.755929479588815],[5.211052110521109,59.752552325049066],[5.200252002520045,59.74917517050929],[5.193051930519317,59.74410943869964],[5.189451894518953,59.73566655235024],[5.189451894518953,59.73060082054059],[5.193051930519317,59.72384651146106],[5.193051930519317,59.71371504784176],[5.189451894518953,59.70189500695258],[5.160651606516069,59.68163207971398],[5.153451534515341,59.6698120388248],[5.160651606516069,59.65461484339585],[5.175051750517525,59.6613691524754],[5.193051930519317,59.67656634790433],[5.207452074520745,59.68332065698388],[5.193051930519317,59.663057729745276],[5.189451894518953,59.65630342066575],[5.189451894518953,59.64786053431632],[5.196651966519681,59.6411062252368],[5.200252002520045,59.6326633388874],[5.193051930519317,59.62084329799822],[5.200252002520045,59.61408898891867],[5.193051930519317,59.60733467983914],[5.185851858518589,59.60226894802949],[5.178651786517861,59.59720321621984],[5.153451534515341,59.59213748441019],[5.153451534515341,59.59382606168009],[5.146251462514641,59.600580370759616],[5.135451354513549,59.609023257109016],[5.124651246512485,59.62084329799822],[5.113851138511393,59.636040493427146],[5.110251102511029,59.652926266125974],[5.117451174511757,59.685009234253755],[5.131851318513185,59.712026470571885],[5.157051570515705,59.73566655235024],[5.189451894518953,59.75930663412859],[5.146251462514641,59.75761805685872],[5.124651246512485,59.76268378866834],[5.117451174511757,59.77956956136717],[5.106651066510665,59.76774952047799],[5.088650886508873,59.76268378866834],[5.077850778507781,59.76606094320812],[5.070650706507081,59.782946715906945],[5.077850778507781,59.79476675679612],[5.088650886508873,59.80152106587565],[5.095850958509601,59.809963952225075],[5.099450994509965,59.8268497249239],[5.103051030510301,59.825161147654],[5.113851138511393,59.82178399311425],[5.117451174511757,59.82009541584438],[5.121051210512121,59.82853830219378],[5.128251282512821,59.831915456733554],[5.135451354513549,59.83022687946365],[5.146251462514641,59.8268497249239],[5.139051390513913,59.840358343082954],[5.103051030510301,59.86906415667096],[5.117451174511757,59.872441311210736],[5.128251282512821,59.875818465750484],[5.153451534515341,59.87412988848061],[5.160651606516069,59.86062127032156],[5.167851678516797,59.85048980670226],[5.193051930519317,59.83360403400343],[5.203852038520381,59.83022687946365],[5.214652146521473,59.83022687946365],[5.221852218522201,59.8268497249239],[5.221852218522201,59.8167182613046],[5.2254522545225655,59.8065867976853],[5.236252362523629,59.804898220415424],[5.2506525065250855,59.804898220415424],[5.261452614526149,59.80320964314555],[5.279452794527941,59.777880984097294],[5.2938529385293975,59.76437236593824],[5.308253082530825,59.75930663412859]]],[[[5.48825488254883,59.86062127032156],[5.491854918549194,59.85217838397213],[5.491854918549194,59.823472570384126],[5.499054990549922,59.80320964314555],[5.481054810548102,59.788012447716596],[5.423454234542362,59.75930663412859],[5.391053910539114,59.75930663412859],[5.36225362253623,59.76437236593824],[5.3586535865358655,59.77281525228764],[5.369453694536958,59.774503829557545],[5.38745387453875,59.77281525228764],[5.398253982539842,59.77112667501777],[5.405454054540542,59.77956956136717],[5.401854018540206,59.788012447716596],[5.391053910539114,59.79138960225637],[5.376653766537686,59.79307817952625],[5.373053730537322,59.78970102498647],[5.365853658536594,59.78125813863707],[5.351453514535166,59.777880984097294],[5.3370533705337095,59.77956956136717],[5.326253262532646,59.782946715906945],[5.3154531545315535,59.78970102498647],[5.3118531185311895,59.79476675679612],[5.304653046530461,59.813341106764824],[5.283052830528305,59.84880122943238],[5.2722527225272415,59.86230984759143],[5.257852578525785,59.87412988848061],[5.261452614526149,59.88594992936979],[5.261452614526149,59.894392815719215],[5.257852578525785,59.902835702068614],[5.2506525065250855,59.90959001114814],[5.286652866528669,59.938295824736144],[5.297452974529762,59.951804442895224],[5.279452794527941,59.956870174704875],[5.275852758527606,59.96024732924462],[5.283052830528305,59.96700163832415],[5.2938529385293975,59.9737559474037],[5.304653046530461,59.97713310194345],[5.3154531545315535,59.978821679213326],[5.326253262532646,59.97713310194345],[5.3370533705337095,59.9720673701338],[5.344253442534438,59.9636244837844],[5.38745387453875,59.95855875197475],[5.419854198541998,59.938295824736144],[5.445054450544518,59.91127858841804],[5.466654666546674,59.88257277483004],[5.48825488254883,59.86062127032156]]],[[[-43.20583205832057,59.970378792863926],[-43.22023220232202,59.9720673701338],[-43.23103231032309,59.970378792863926],[-43.24183241832418,59.96869021559405],[-43.25263252632527,59.9636244837844],[-43.22023220232202,59.951804442895224],[-43.238232382323815,59.943361556545796],[-43.27063270632706,59.9450501338157],[-43.28503285032849,59.93998440200605],[-43.29943299432995,59.92816436111687],[-43.30303303033031,59.92816436111687],[-43.30303303033031,59.938295824736144],[-43.31023310233101,59.951804442895224],[-43.30663306633065,59.95855875197475],[-43.31023310233101,59.961935906514526],[-43.321033210332104,59.9636244837844],[-43.32463324633247,59.961935906514526],[-43.32823328233283,59.95518159743497],[-43.32823328233283,59.93998440200605],[-43.33543335433353,59.92816436111687],[-43.34263342633426,59.91803289749757],[-43.35703357033569,59.91296716568792],[-43.371433714337144,59.916344320227694],[-43.371433714337144,59.91972147476744],[-43.36783367833678,59.92309862930722],[-43.364233642336416,59.929852938386745],[-43.32823328233283,59.99570745191215],[-43.31743317433174,60.00415033826158],[-43.288632886328855,60.00246176099171],[-43.25983259832597,59.99401887464228],[-43.22743227432275,59.98388741102298],[-43.20583205832057,59.970378792863926]]],[[[-44.008640086400845,59.99064172010253],[-44.066240662406614,59.95518159743497],[-44.08784087840877,59.951804442895224],[-44.102241022410226,59.9450501338157],[-44.134641346413446,59.91296716568792],[-44.152641526415266,59.902835702068614],[-44.16344163441633,59.91296716568792],[-44.16344163441633,59.92647578384697],[-44.152641526415266,59.9636244837844],[-44.152641526415266,59.98557598829288],[-44.159841598415966,59.98557598829288],[-44.167041670416694,59.970378792863926],[-44.167041670416694,59.951804442895224],[-44.185041850418486,59.91296716568792],[-44.192241922419214,59.902835702068614],[-44.20664206642067,59.89776997025896],[-44.24984249842498,59.89270423844931],[-44.278642786427866,59.87919562029026],[-44.30024300243002,59.875818465750484],[-44.33984339843397,59.87412988848061],[-44.35064350643506,59.87919562029026],[-44.39744397443974,59.90959001114814],[-44.37224372243722,59.91803289749757],[-44.35064350643506,59.93154151565662],[-44.311043110431086,59.9636244837844],[-44.2750427504275,59.98051025648323],[-44.267842678426774,59.987264565562754],[-44.26424264242641,60.00415033826158],[-44.253442534425346,60.01090464734111],[-44.23904239042389,60.01597037915076],[-44.22464224642246,60.022724688230284],[-44.19944199441994,60.027790420039935],[-44.026640266402666,60.01765895642063],[-43.99783997839978,60.01090464734111],[-44.008640086400845,59.99064172010253]]],[[[5.617856178561794,60.07338200632677],[5.646656466564679,60.08013631540629],[5.657456574565742,60.07844773813642],[5.661056610566106,60.06662769724724],[5.661056610566106,60.01765895642063],[5.653856538565378,60.000773183721805],[5.603456034560338,59.961935906514526],[5.607056070560702,59.95011586562532],[5.6214562145621585,59.938295824736144],[5.63945639456395,59.916344320227694],[5.6214562145621585,59.91127858841804],[5.592655926559274,59.92309862930722],[5.571055710557118,59.92309862930722],[5.527855278552806,59.90114712479874],[5.509855098550986,59.899458547528866],[5.48825488254883,59.916344320227694],[5.481054810548102,59.9534930201651],[5.477454774547766,59.9636244837844],[5.466654666546674,59.96024732924462],[5.455854558545582,59.95518159743497],[5.455854558545582,59.951804442895224],[5.434254342543426,59.951804442895224],[5.409054090540906,59.956870174704875],[5.38745387453875,59.96700163832415],[5.373053730537322,59.97713310194345],[5.36225362253623,59.99570745191215],[5.376653766537686,60.00246176099171],[5.448654486544882,60.005838915531456],[5.452254522545246,60.00921607007123],[5.445054450544518,60.022724688230284],[5.441454414544154,60.032856151849586],[5.445054450544518,60.041299038198986],[5.452254522545246,60.04805334727854],[5.46305463054631,60.05311907908819],[5.466654666546674,60.05311907908819],[5.477454774547766,60.04805334727854],[5.484654846548466,60.04636477000864],[5.491854918549194,60.049741924548414],[5.495454954549558,60.05311907908819],[5.509855098550986,60.058184810897814],[5.51345513455135,60.059873388167716],[5.578255782557818,60.06662769724724],[5.581855818558182,60.06493911997737],[5.58905589055891,60.06156196543759],[5.596255962559638,60.059873388167716],[5.603456034560338,60.063250542707465],[5.607056070560702,60.068316274517116],[5.607056070560702,60.07169342905689],[5.610656106561066,60.07338200632677],[5.617856178561794,60.07338200632677]]],[[[22.408424084240863,60.05311907908819],[22.401224012240135,60.07507058359664],[22.4120241202412,60.085202047215944],[22.43002430024302,60.081824892676195],[22.44802448024481,60.06662769724724],[22.44802448024481,60.02947899730981],[22.44802448024481,60.01259322461098],[22.444424444244447,59.997396029182056],[22.43722437224372,59.997396029182056],[22.426424264242655,60.00752749280136],[22.408424084240863,60.00921607007123],[22.394023940239407,60.005838915531456],[22.38682386823868,59.99401887464228],[22.383223832238343,59.992330297372405],[22.37242372423725,60.00415033826158],[22.358023580235823,60.02103611096041],[22.35442354423546,60.032856151849586],[22.350823508235095,60.04805334727854],[22.34722347223473,60.063250542707465],[22.35442354423546,60.07507058359664],[22.368823688236887,60.08013631540629],[22.383223832238343,60.07507058359664],[22.383223832238343,60.06156196543759],[22.38682386823868,60.05143050181829],[22.408424084240863,60.05311907908819]]],[[[20.27720277202772,60.14261367439195],[20.298802988029877,60.12235074715338],[20.28440284402845,60.103776397184646],[20.27000270002702,60.085202047215944],[20.27720277202772,60.06662769724724],[20.266402664026657,60.059873388167716],[20.25920259202593,60.063250542707465],[20.2520025200252,60.068316274517116],[20.241202412024137,60.07338200632677],[20.20880208802089,60.08351346994607],[20.20160201602016,60.08689062448585],[20.198001980019797,60.103776397184646],[20.205202052020525,60.120662169883474],[20.216002160021617,60.13585936531243],[20.223202232022317,60.14936798347148],[20.2448024480245,60.1189735926136],[20.25920259202593,60.10715355172442],[20.262802628026293,60.1189735926136],[20.2520025200252,60.139236519852204],[20.255602556025565,60.14599082893173],[20.27720277202772,60.14261367439195]]],[[[21.353613536135356,60.21184534245714],[21.368013680136812,60.19664814702821],[21.393213932139332,60.19158241521856],[21.447214472144736,60.18989383794869],[21.447214472144736,60.183139528869134],[21.40761407614076,60.18482810613904],[21.393213932139332,60.17807379705951],[21.386013860138604,60.16287660163056],[21.378813788137876,60.16287660163056],[21.371613716137176,60.16963091071008],[21.35721357213572,60.174696642519734],[21.3248132481325,60.17638521978961],[21.310413104131044,60.179762374329385],[21.29961299612998,60.18651668340891],[21.288812888128888,60.19158241521856],[21.270812708127096,60.18989383794869],[21.285212852128524,60.20340245610774],[21.30681306813068,60.210156765187264],[21.353613536135356,60.21184534245714]]],[[[22.059220592205918,60.21184534245714],[22.073620736207374,60.19664814702821],[22.012420124201242,60.16963091071008],[22.016020160201606,60.16794233344021],[22.030420304203062,60.157810869820906],[22.037620376203762,60.15612229255103],[22.008820088200878,60.1375479425823],[21.976419764197658,60.13585936531243],[21.951219512195138,60.14936798347148],[21.93681936819368,60.17638521978961],[21.951219512195138,60.18145095159926],[21.998019980199814,60.18989383794869],[22.026820268202698,60.20509103337761],[22.041220412204126,60.21184534245714],[22.059220592205918,60.21184534245714]]],[[[25.81405814058141,60.20846818791739],[25.821258212582137,60.21691107426679],[25.83925839258393,60.21859965153669],[25.87525875258754,60.21691107426679],[25.86445864458645,60.20509103337761],[25.853658536585385,60.20002530156796],[25.835658356583565,60.19664814702821],[25.821258212582137,60.19664814702821],[25.81405814058141,60.20846818791739]]],[[[20.42840428404284,60.2658798150934],[20.43560435604357,60.26250266055362],[20.439204392043933,60.25743692874397],[20.439204392043933,60.25237119693435],[20.442804428044298,60.245616887854794],[20.392403924039257,60.19664814702821],[20.381603816038165,60.19833672429809],[20.381603816038165,60.20340245610774],[20.38520385203853,60.210156765187264],[20.38520385203853,60.21691107426679],[20.388803888038893,60.22197680607644],[20.388803888038893,60.23379684696562],[20.381603816038165,60.24055115604517],[20.35280352803528,60.228731115155966],[20.34560345603458,60.237174001505394],[20.34560345603458,60.25237119693435],[20.36000360003601,60.2658798150934],[20.3780037800378,60.269256969633176],[20.41040410404105,60.25912550601387],[20.42840428404284,60.2658798150934]]],[[[20.817208172081735,60.23210826969574],[20.792007920079215,60.23886257877527],[20.781207812078122,60.264191237823525],[20.78840788407885,60.286142742332004],[20.806408064080642,60.286142742332004],[20.81360813608137,60.28107701052235],[20.84600846008462,60.27094554690305],[20.85320853208532,60.2658798150934],[20.849608496084954,60.25405977420422],[20.83880838808389,60.2473054651247],[20.824408244082434,60.24392831058492],[20.810008100081006,60.245616887854794],[20.817208172081735,60.23210826969574]]],[[[25.62325623256234,60.23886257877527],[25.590855908559092,60.242239733315046],[25.569255692556936,60.25743692874397],[25.565655656556572,60.277699855982576],[25.580055800558,60.29627420595128],[25.59805598055982,60.29120847414163],[25.684456844568444,60.245616887854794],[25.677256772567745,60.23886257877527],[25.659256592565924,60.23379684696562],[25.644856448564497,60.228731115155966],[25.634056340563404,60.21859965153669],[25.63765637656377,60.20509103337761],[25.61245612456125,60.21184534245714],[25.601656016560185,60.215222496996915],[25.608856088560884,60.22197680607644],[25.62325623256234,60.23886257877527]]],[[[21.724417244172457,60.482017705638384],[21.713617136171365,60.47019766474921],[21.699216992169937,60.460066201129905],[21.688416884168845,60.455000469320254],[21.681216812168117,60.465131932939556],[21.69201692016921,60.48370628290826],[21.713617136171365,60.509034941956514],[21.74241742417425,60.52592071465534],[21.764017640176405,60.52592071465534],[21.76041760417604,60.51241209649626],[21.749617496174977,60.50228063287699],[21.724417244172457,60.482017705638384]]],[[[-0.7830078300783043,60.615415309959104],[-0.768607686076848,60.61372673268923],[-0.7578075780757842,60.606972423609704],[-0.7542075420754202,60.598529537260276],[-0.7614076140761483,60.588398073641],[-0.7866078660786684,60.576578032751826],[-0.8118081180811885,60.579955187291574],[-0.8406084060840442,60.588398073641],[-0.8694086940869283,60.588398073641],[-0.8694086940869283,60.579955187291574],[-0.8658086580865643,60.576578032751826],[-0.8622086220862286,60.57488945548192],[-0.8586085860858645,60.571512300942175],[-0.8550085500855005,60.5681351464024],[-0.8838088380883846,60.56982372367227],[-0.9054090540905406,60.5867094963711],[-0.9378093780937604,60.620481041768755],[-0.9378093780937604,60.62892392811818],[-0.8226082260822523,60.62892392811818],[-0.8118081180811885,60.62554677357841],[-0.8118081180811885,60.61879246449888],[-0.8118081180811885,60.612038155419356],[-0.8082080820808244,60.60866100087958],[-0.8010080100800963,60.60866100087958],[-0.7938079380793681,60.61034957814948],[-0.7866078660786684,60.61372673268923],[-0.7830078300783043,60.615415309959104]]],[[[-47.720277202772024,60.758944377899155],[-47.7058770587706,60.762321532438904],[-47.65187651876519,60.758944377899155],[-47.68427684276841,60.74205860520033],[-47.720277202772024,60.73023856431115],[-47.75627756277564,60.72179567796172],[-47.80667806678068,60.71672994615207],[-47.821078210782105,60.71335279161232],[-47.8390783907839,60.70659848253277],[-47.86067860678605,60.69308986437372],[-47.88227882278824,60.68633555529419],[-47.90027900279003,60.682958400754416],[-47.91467914679146,60.68464697802432],[-47.90747907479076,60.696467018913495],[-47.90027900279003,60.704909905262895],[-47.88587885878857,60.71166421434242],[-47.871478714787145,60.71166421434242],[-47.8930789307893,60.73023856431115],[-47.921879218792185,60.7234842552316],[-47.947079470794705,60.70659848253277],[-47.96867968679686,60.69815559618337],[-48.03708037080369,60.69477844164359],[-48.06948069480694,60.701532750723146],[-48.073080730807305,60.718418523421974],[-48.08748087480873,60.71672994615207],[-48.10188101881019,60.718418523421974],[-48.11268112681125,60.72010710069185],[-48.12708127081271,60.7251728325015],[-48.11988119881198,60.731927141581025],[-48.11268112681125,60.736992873390676],[-48.10188101881019,60.73868145066055],[-48.0910809108091,60.73868145066055],[-48.098280982809825,60.74712433700998],[-48.10188101881019,60.74881291427985],[-48.10908109081089,60.75050149154973],[-48.11628116281162,60.75556722335938],[-48.12708127081271,60.76063295516903],[-48.13428134281341,60.75556722335938],[-48.14148141481414,60.74881291427985],[-48.1450814508145,60.745435759740076],[-48.16668166681666,60.74712433700998],[-48.17028170281702,60.75050149154973],[-48.17028170281702,60.758944377899155],[-48.173881738817386,60.772452996058206],[-48.18828188281881,60.780895882407634],[-48.23508235082349,60.799470232376336],[-48.224282242822426,60.807913118725736],[-48.20268202682027,60.80960169599564],[-48.16308163081629,60.80622454145586],[-48.01188011880117,60.82311031415469],[-47.98307983079832,60.83830750958364],[-47.96867968679686,60.84168466412339],[-47.92907929079291,60.83661893231374],[-47.91467914679146,60.829864623234215],[-47.91467914679146,60.81973315961491],[-47.90027900279003,60.80115880964621],[-47.88227882278824,60.80453596418599],[-47.86427864278642,60.81466742780526],[-47.84987849878499,60.81973315961491],[-47.770677706777064,60.81297885053539],[-47.75627756277564,60.80622454145586],[-47.763477634776336,60.79609307783656],[-47.77427774277743,60.789338768757034],[-47.79947799477995,60.77920730513773],[-47.78507785077849,60.77414157332808],[-47.77787777877779,60.772452996058206],[-47.770677706777064,60.772452996058206],[-47.770677706777064,60.767387264248555],[-47.80307803078031,60.76907584151843],[-47.81747817478174,60.767387264248555],[-47.82827828278283,60.762321532438904],[-47.82827828278283,60.75219006881963],[-47.81027810278101,60.745435759740076],[-47.77427774277743,60.74205860520033],[-47.75987759877597,60.7353042961208],[-47.74907749077491,60.740370027930425],[-47.738277382773816,60.75050149154973],[-47.720277202772024,60.758944377899155]]],[[[21.263612636126368,60.88221051860057],[21.23121231212312,60.88221051860057],[21.21681216812169,60.883899095870476],[21.202412024120235,60.88896482768013],[21.227612276122755,60.8990962912994],[21.278012780127796,60.88896482768013],[21.29961299612998,60.89571913675965],[21.296012960129616,60.8990962912994],[21.292412924129252,60.90247344583918],[21.292412924129252,60.905850600378955],[21.292412924129252,60.9092277549187],[21.296012960129616,60.91260490945848],[21.30681306813068,60.919359218538006],[21.314013140131408,60.922736373077754],[21.28161281612816,60.94299930031636],[21.263612636126368,60.949753609395884],[21.24201242012421,60.95144218666579],[21.270812708127096,60.968327959364615],[21.285212852128524,60.97170511390436],[21.303213032130316,60.97170511390436],[21.321213212132136,60.95650791847541],[21.335613356133564,60.946376454856136],[21.37521375213754,60.93117925942718],[21.353613536135356,60.919359218538006],[21.339213392133928,60.91598206399823],[21.328413284132836,60.91091633218858],[21.3248132481325,60.88896482768013],[21.317613176131772,60.8805219413307],[21.296012960129616,60.878833364060824],[21.27441274412746,60.883899095870476],[21.263612636126368,60.88221051860057]]],[[[-42.493024930249305,61.45126105855104],[-42.48222482224821,61.46476967671012],[-42.449824498244965,61.4867211812186],[-42.41382413824138,61.498541222107775],[-42.38862388623886,61.485032603948696],[-42.42102421024211,61.47827829486917],[-42.442624426244265,61.45463821309082],[-42.467824678246785,61.43944101766186],[-42.493024930249305,61.45126105855104]]],[[[-42.082620826208256,61.876782530561485],[-42.09342093420935,61.86158533513256],[-42.09342093420935,61.84807671697348],[-42.089820898208984,61.83456809881443],[-42.097020970209684,61.82443663519513],[-42.115021150211504,61.8176823261156],[-42.172621726217244,61.8075508624963],[-42.16182161821618,61.79404224433725],[-42.15102151021509,61.79404224433725],[-42.133021330213296,61.79573082160712],[-42.11862118621187,61.79066508979747],[-42.11862118621187,61.778845048908295],[-42.133021330213296,61.773779317098644],[-42.165421654216544,61.773779317098644],[-42.26262262622626,61.75351638986007],[-42.28782287822878,61.76027069893959],[-42.27702277022769,61.76195927620947],[-42.248222482224804,61.773779317098644],[-42.17982179821797,61.82105948065535],[-42.1870218702187,61.827813789734904],[-42.17982179821797,61.83119094427465],[-42.165421654216544,61.841322407893955],[-42.165421654216544,61.85651960332291],[-42.140221402214024,61.87002822148196],[-42.107821078210776,61.876782530561485],[-42.082620826208256,61.876782530561485]]],[[[-41.91701917019171,62.81563149261626],[-41.86661866618667,62.803811451727086],[-41.84141841418415,62.803811451727086],[-41.81621816218163,62.80718860626686],[-41.83781837818378,62.78861425629816],[-41.87741877418773,62.77848279267886],[-41.91701917019171,62.77848279267886],[-41.938619386193864,62.79367998810781],[-41.95301953019529,62.817320069886165],[-41.956619566195656,62.82914011077534],[-41.956619566195656,62.839271574394644],[-41.938619386193864,62.84433730620427],[-41.913419134191344,62.84096015166452],[-41.870218702187,62.82914011077534],[-41.87741877418773,62.817320069886165],[-41.89181891818919,62.81563149261626],[-41.906219062190615,62.817320069886165],[-41.91701917019171,62.81563149261626]]],[[[21.317613176131772,63.28843312818344],[21.314013140131408,63.30363032361237],[21.30681306813068,63.30531890088227],[21.292412924129252,63.30194174634249],[21.278012780127796,63.30194174634249],[21.227612276122755,63.32895898266062],[21.234812348123484,63.33233613720037],[21.238412384123848,63.334024714470274],[21.24921249212494,63.33571329174015],[21.278012780127796,63.3407790235498],[21.310413104131044,63.355976218978725],[21.346413464134656,63.36441910532815],[21.37521375213754,63.3492219098992],[21.37521375213754,63.334024714470274],[21.35721357213572,63.315450364501544],[21.317613176131772,63.28843312818344]]],[[[-51.223112231122315,63.51301390507783],[-51.21591215912159,63.51132532780795],[-51.21231212312122,63.50963675053805],[-51.20871208712086,63.5062595959983],[-51.205112051120494,63.499505286918776],[-51.24471244712447,63.48430809148982],[-51.39591395913959,63.46573374152112],[-51.39591395913959,63.472488050600646],[-51.356313563135615,63.4859966687597],[-51.349113491134915,63.49275097783922],[-51.34551345513455,63.499505286918776],[-51.34191341913419,63.516391059617604],[-51.34191341913419,63.521456791427255],[-51.31671316713167,63.529899677776655],[-51.28431284312842,63.529899677776655],[-51.248312483124835,63.52314536869713],[-51.223112231122315,63.51301390507783]]],[[[-40.77220772207721,63.64472293212867],[-40.682206822068224,63.654854395747975],[-40.664206642066404,63.64472293212867],[-40.689406894068924,63.622771427620194],[-40.707407074070744,63.614328541270794],[-40.725407254072536,63.60926280946114],[-40.801008010080096,63.60926280946114],[-40.82260822608225,63.61601711854067],[-40.83700837008371,63.63459146850937],[-40.82260822608225,63.6430343548588],[-40.79740797407973,63.64472293212867],[-40.77220772207721,63.64472293212867]]],[[[20.83880838808389,63.76798907283012],[20.86400864008641,63.79669488641812],[20.90360903609036,63.793317731878346],[20.92160921609218,63.77305480463977],[20.874808748087474,63.75448045467104],[20.882008820088203,63.76123476375059],[20.874808748087474,63.77136622736987],[20.86400864008641,63.77305480463977],[20.85320853208532,63.77136622736987],[20.83880838808389,63.76798907283012]]],[[[-35.55215552155522,66.20629465054074],[-35.5269552695527,66.2299347323191],[-35.48375483754836,66.24175477320827],[-35.386553865538644,66.2485090822878],[-35.39735397353974,66.2383776186685],[-35.41895418954189,66.2299347323191],[-35.41535415354153,66.22149184596967],[-35.44775447754478,66.20122891873109],[-35.48375483754836,66.18434314603226],[-35.51975519755197,66.18096599149249],[-35.55935559355592,66.19278603238166],[-35.55575555755556,66.19616318692144],[-35.55215552155522,66.19954034146119],[-35.55215552155522,66.20291749600096],[-35.55215552155522,66.20629465054074]]],[[[-33.86733867338674,66.82262535404791],[-33.85653856538565,66.82937966312744],[-33.84933849338492,66.82937966312744],[-33.84213842138422,66.82431393131779],[-33.838538385383856,66.81418246769852],[-33.845738457384556,66.80236242680934],[-33.863738637386376,66.79729669499969],[-33.953739537395364,66.79560811772978],[-33.971739717397156,66.80405100407921],[-33.97533975339752,66.83106824039734],[-33.96813968139682,66.8547083221757],[-33.950139501395,66.85133116763592],[-33.93213932139321,66.83951112674674],[-33.91773917739178,66.83106824039734],[-33.91053910539105,66.84288828128652],[-33.914139141391416,66.86483978579497],[-33.90693906939069,66.8817255584938],[-33.870938709387076,66.87159409487452],[-33.86733867338674,66.85977405398535],[-33.87453874538744,66.84626543582627],[-33.888938889388896,66.83613397220697],[-33.90693906939069,66.83106824039734],[-33.896138961389596,66.82431393131779],[-33.88173881738817,66.81924819950814],[-33.870938709387076,66.81924819950814],[-33.86733867338674,66.82262535404791]]],[[[-33.47493474934748,67.18735804434257],[-33.4461344613446,67.19748950796188],[-33.37053370533704,67.20762097158118],[-33.33813338133382,67.20762097158118],[-33.3741337413374,67.1755380034534],[-33.410134101341015,67.15358649894492],[-33.44973449734496,67.14176645805574],[-33.48213482134821,67.15358649894492],[-33.46413464134642,67.1654065398341],[-33.45333453334533,67.17047227164375],[-33.442534425344235,67.17384942618352],[-33.47493474934748,67.18735804434257]]],[[[-33.2481324813248,67.35790434860073],[-33.2481324813248,67.35452719406098],[-33.2481324813248,67.3511500395212],[-33.24453244532444,67.34777288498142],[-33.240932409324074,67.34439573044168],[-33.276932769327686,67.3308871122826],[-33.25533255332553,67.31906707139342],[-33.2481324813248,67.30555845323437],[-33.25533255332553,67.29711556688497],[-33.284132841328415,67.3038698759645],[-33.33093330933309,67.33764142136215],[-33.316533165331634,67.35283861679108],[-33.291332913329114,67.36803581222003],[-33.266132661326594,67.37647869856943],[-33.2481324813248,67.36465865768025],[-33.25533255332553,67.3612815031405],[-33.25533255332553,67.35959292587063],[-33.251732517325166,67.35959292587063],[-33.2481324813248,67.35790434860073]]],[[[-51.835118351183496,68.60576295104406],[-51.860318603186016,68.60576295104406],[-51.885518855188536,68.60407437377415],[-51.86391863918638,68.61251726012358],[-51.84591845918459,68.6091401055838],[-51.835118351183496,68.60576295104406]]],[[[21.66681666816669,69.9481818806008],[21.68481684816848,69.95324761241045],[21.7028170281703,69.95493618968032],[21.720817208172093,69.95324761241045],[21.73521735217352,69.9481818806008],[21.72801728017282,69.9380504169815],[21.720817208172093,69.93467326244172],[21.706417064170637,69.93129610790197],[21.695616956169573,69.9279189533622],[21.68481684816848,69.92960753063207],[21.67761677616778,69.93467326244172],[21.670416704167053,69.93973899425137],[21.66681666816669,69.9481818806008]]],[[[19.89919899198992,70.01741354866598],[19.920799207992076,70.02416785774551],[19.94959949599496,70.02754501228529],[19.97479974799748,70.02416785774551],[19.996399963999636,70.01741354866598],[19.94959949599496,70.00897066231656],[19.91719917199174,70.01065923958646],[19.909999099991012,70.01403639412621],[19.89919899198992,70.01741354866598]]],[[[21.04041040410405,70.06131655768294],[21.04761047610478,70.03936505317446],[21.018810188101895,70.02754501228529],[20.9540095400954,70.02416785774551],[20.96480964809649,70.03429932136481],[20.993609936099375,70.05118509406364],[21.018810188101895,70.06300513495282],[21.04041040410405,70.06131655768294]]],[[[96.86436864368642,-12.182527949223783],[96.86796867968678,-12.187593681033434],[96.84636846368466,-12.197725144652722],[96.8319683196832,-12.17915079468402],[96.82476824768247,-12.150444981096015],[96.8211682116821,-12.126804899317648],[96.82836828368283,-12.126804899317648],[96.82836828368283,-12.13693636293695],[96.82836828368283,-12.143690672016476],[96.83556835568356,-12.160576444715304],[96.8319683196832,-12.170707908334606],[96.83556835568356,-12.182527949223783],[96.84636846368466,-12.187593681033434],[96.86436864368642,-12.182527949223783]]],[[[115.84735847358473,-4.764608002629089],[115.84735847358473,-4.767985157168852],[115.84735847358473,-4.774739466248391],[115.85455854558546,-4.779805198058028],[115.85815858158583,-4.779805198058028],[115.80775807758079,-4.822019629805098],[115.7861578615786,-4.827085361614749],[115.7717577175772,-4.8152653207255725],[115.7969579695797,-4.786559507137568],[115.8509585095851,-4.739279343580847],[115.8509585095851,-4.746033652660373],[115.84735847358473,-4.7578536935495634],[115.84735847358473,-4.764608002629089]]],[[[100.50760507605077,-3.1216223190332215],[100.50760507605077,-3.140196669001938],[100.5148051480515,-3.1537052871609887],[100.53640536405368,-3.1773453689393563],[100.52920529205295,-3.1840996780188817],[100.50760507605077,-3.1790339462092305],[100.49320493204931,-3.1604595962405284],[100.49320493204931,-3.1385080917320494],[100.50760507605077,-3.1216223190332215]]],[[[103.51723517235172,0.8178284516031056],[103.52443524435245,0.8076969879838174],[103.52443524435245,0.7992541016344035],[103.52443524435245,0.7773025971259244],[103.49203492034923,0.8212056061428825],[103.47763477634777,0.8330256470320592],[103.44163441634419,0.8448456879212358],[103.42723427234273,0.8549771515405382],[103.420034200342,0.8735515015092403],[103.4308343083431,0.8684857696995891],[103.48843488434886,0.8448456879212358],[103.49563495634959,0.8397799561115846],[103.50643506435063,0.8347142243019334],[103.51363513635135,0.8262713379525195],[103.51723517235172,0.8178284516031056]]],[[[104.7988479884799,1.0322777648782164],[104.809648096481,1.025523455798691],[104.83124831248313,1.0238348785288025],[104.84204842048422,1.0187691467191513],[104.83844838448385,1.003571951290212],[104.84564845648458,0.9985062194805607],[104.84924849248495,0.9917519104010353],[104.85284852848531,0.9833090240516213],[104.85284852848531,0.9748661377022074],[104.84924849248495,0.9681118286226678],[104.84564845648458,0.9630460968130308],[104.83844838448385,0.9579803650033796],[104.83124831248313,0.9546032104636168],[104.82764827648276,0.964734674082905],[104.82764827648276,0.9765547149720817],[104.82764827648276,0.9934404876709095],[104.82044820448203,0.9985062194805607],[104.79164791647918,1.0238348785288025],[104.7988479884799,1.0322777648782164]]],[[[107.56367563675639,1.0373434966878676],[107.58527585275851,1.025523455798691],[107.59967599675997,1.017080569449277],[107.60327603276033,1.0103262603697374],[107.57447574475748,0.9799318695118586],[107.56007560075602,0.9698004058925562],[107.54567545675457,0.9765547149720817],[107.54927549275493,0.9816204467817329],[107.5528755287553,0.9866861785913841],[107.56007560075602,0.9934404876709095],[107.56007560075602,1.003571951290212],[107.5528755287553,1.0069491058299747],[107.54567545675457,1.0069491058299747],[107.53487534875347,1.0086376830998631],[107.53127531275311,1.0187691467191513],[107.53127531275311,1.0272120330685652],[107.53847538475384,1.033966342148105],[107.54927549275493,1.0373434966878676],[107.56367563675639,1.0373434966878676]]],[[[96.6447664476645,2.126475835762207],[96.65916659166595,2.121410103952556],[96.66996669966699,2.112967217603142],[96.66996669966699,2.1028357539838396],[96.66636666366662,2.0876385585549],[96.6447664476645,2.074129940395835],[96.62316623166231,2.0707527858560724],[96.60876608766091,2.0808842494753748],[96.60876608766091,2.1062129085236165],[96.61236612366127,2.1197215266826674],[96.61956619566195,2.126475835762207],[96.62676626766267,2.12985299030197],[96.6447664476645,2.126475835762207]]],[[[106.24246242462425,2.759692311968209],[106.24246242462425,2.746183693809158],[106.24246242462425,2.737740807459744],[106.23886238862389,2.732675075650093],[106.23166231662316,2.7411179619995067],[106.22086220862212,2.7580037346983346],[106.2136621366214,2.781643816476688],[106.2028620286203,2.7968410119056415],[106.19926199261994,2.8103496300646924],[106.2028620286203,2.8187925164141063],[106.21726217262176,2.822169670953869],[106.22446224462243,2.817103939144232],[106.23166231662316,2.8069724755249297],[106.23886238862389,2.7934638573658646],[106.24246242462425,2.759692311968209]]],[[[107.80847808478086,3.014667479720501],[107.81207812078122,2.9944045524819103],[107.81207812078122,2.9859616661324964],[107.76887768877691,2.979207357052971],[107.75447754477545,2.979207357052971],[107.74367743677436,2.984273088862608],[107.75087750877509,3.011290325180738],[107.77247772477727,3.0247989433398033],[107.79767797677977,3.0247989433398033],[107.80847808478086,3.014667479720501]]],[[[108.00648006480066,4.772476417668386],[108.01368013680138,4.767410685858749],[108.01368013680138,4.76065637677921],[108.00648006480066,4.752213490429796],[108.00648006480066,4.74545918135027],[107.99927999279993,4.708310481412852],[107.9920799207992,4.691424708714024],[107.98127981279816,4.68298182236461],[107.95967959679598,4.6846703996344985],[107.94527945279452,4.686358976904373],[107.9380793807938,4.691424708714024],[107.93447934479343,4.694801863253787],[107.93447934479343,4.698179017793549],[107.9380793807938,4.703244749603201],[107.94167941679416,4.708310481412852],[107.95247952479525,4.71844194503214],[107.96687966879671,4.726884831381554],[107.9776797767978,4.735327717730968],[107.98487984879847,4.748836335890033],[107.98487984879847,4.755590644969573],[107.9920799207992,4.764033531318972],[107.99927999279993,4.770787840398512],[108.00648006480066,4.772476417668386]]],[[[95.1759517595176,5.628585093498927],[95.19035190351906,5.608322166260322],[95.17955179551797,5.610010743530211],[95.17235172351724,5.606633588990448],[95.16155161551615,5.603256434450685],[95.15795157951578,5.594813548101271],[95.14355143551438,5.6049450117205595],[95.13275132751329,5.606633588990448],[95.1219512195122,5.606633588990448],[95.1111511115111,5.611699320800099],[95.10755107551074,5.621830784419387],[95.11835118351183,5.63196224803869],[95.12915129151293,5.640405134388104],[95.13635136351365,5.645470866197755],[95.14355143551438,5.664045216166457],[95.15435154351542,5.6572909070869315],[95.1759517595176,5.628585093498927]]],[[[99.24759247592476,6.57418836463323],[99.26199261992622,6.565745478283816],[99.25839258392585,6.560679746474165],[99.24759247592476,6.557302591934402],[99.2187921879219,6.537039664695811],[99.19359193591936,6.533662510156049],[99.1755917559176,6.5387282419657],[99.15759157591577,6.553925437394639],[99.1755917559176,6.5505482828548764],[99.18639186391863,6.55899116920429],[99.19719197191972,6.570811210093467],[99.21519215192154,6.57418836463323],[99.20799207992081,6.57418836463323],[99.24039240392403,6.5775655191729925],[99.24759247592476,6.57418836463323]]],[[[99.40599405994061,7.266505045285143],[99.42039420394207,7.256373581665841],[99.44559445594456,7.25130784985619],[99.45279452794529,7.239487808967013],[99.4419944199442,7.239487808967013],[99.4275942759428,7.239487808967013],[99.4167941679417,7.23611065442725],[99.40959409594097,7.229356345347725],[99.39519395193952,7.205716263569357],[99.38439384393843,7.193896222680181],[99.37719377193775,7.2023391090295945],[99.37719377193775,7.252996427126078],[99.38439384393843,7.274947931634557],[99.40599405994061,7.266505045285143]]],[[[93.56673566735668,7.999347580414224],[93.57033570335705,7.989216116794935],[93.57393573935741,7.968953189556345],[93.57393573935741,7.925050180539387],[93.519935199352,7.965576035016582],[93.50913509135091,7.9807732304455214],[93.51273512735128,7.995970425874461],[93.519935199352,8.004413312223875],[93.53793537935383,7.999347580414224],[93.54153541535419,8.016233353113051],[93.54873548735486,8.019610507652828],[93.55953559535595,8.012856198573289],[93.56673566735668,7.999347580414224]]],[[[98.63918639186392,8.171582461942265],[98.62118621186215,8.10235079387708],[98.62118621186215,8.090530752987888],[98.58878588785888,8.10235079387708],[98.57798577985778,8.105727948416842],[98.57078570785711,8.119236566575907],[98.57438574385748,8.124302298385544],[98.5959859598596,8.131056607465084],[98.59238592385924,8.146253802894023],[98.60318603186033,8.161450998322962],[98.61758617586179,8.176648193751916],[98.62478624786252,8.191845389180855],[98.63198631986319,8.190156811910981],[98.63558635586355,8.18509108010133],[98.63558635586355,8.180025348291679],[98.63918639186392,8.171582461942265]]],[[[93.60633606336063,8.5481351931261],[93.62073620736209,8.519429379538096],[93.62793627936281,8.505920761379045],[93.62793627936281,8.487346411410329],[93.62433624336245,8.473837793251263],[93.61713617136172,8.453574866012673],[93.609936099361,8.438377670583733],[93.60273602736027,8.438377670583733],[93.5991359913599,8.45019771147291],[93.60633606336063,8.490723565950091],[93.60633606336063,8.507609338648919],[93.59553595535954,8.541380884046575],[93.59553595535954,8.558266656745403],[93.60633606336063,8.568398120364705],[93.60633606336063,8.5481351931261]]],[[[79.73179731797319,9.500492773339943],[79.72459724597246,9.492049886990529],[79.71379713797137,9.485295577911003],[79.68859688596888,9.483607000641115],[79.6669966699667,9.492049886990529],[79.6561965619656,9.50386992787972],[79.6561965619656,9.5443957823569],[79.65979659796596,9.554527245976189],[79.6669966699667,9.554527245976189],[79.67059670596706,9.546084359626775],[79.67779677796779,9.534264318737598],[79.69219692196924,9.529198586927961],[79.71379713797137,9.527510009658073],[79.7209972099721,9.52413285511831],[79.73179731797319,9.500492773339943]]],[[[98.41238412384126,9.7689765592513],[98.41958419584199,9.74702505474282],[98.41598415984163,9.733516436583756],[98.39798397983981,9.70649920026564],[98.38358383583835,9.728450704774119],[98.39078390783908,9.74195932293317],[98.40158401584017,9.755467941092235],[98.41238412384126,9.774042291060951],[98.41238412384126,9.7689765592513]]],[[[106.49806498064981,9.890554122682857],[106.53046530465303,9.858471154555076],[106.54486544865449,9.838208227316485],[106.5340653406534,9.829765340967072],[106.519665196652,9.838208227316485],[106.49806498064981,9.875356927253904],[106.46926469264696,9.890554122682857],[106.42246422464228,9.932768554429913],[106.42246422464228,9.939522863509453],[106.42606426064259,9.93614570896969],[106.44406444064441,9.932768554429913],[106.48726487264872,9.902374163572034],[106.49806498064981,9.890554122682857]]],[[[98.18558185581855,10.121889208656782],[98.18198181981819,10.126954940466433],[98.17478174781746,10.140463558625498],[98.17118171181716,10.148906444974898],[98.17478174781746,10.1590379085942],[98.18198181981819,10.169169372213503],[98.18558185581855,10.177612258562917],[98.17838178381783,10.18605514491233],[98.17838178381783,10.192809453991856],[98.19638196381965,10.192809453991856],[98.2215822158222,10.177612258562917],[98.23958239582396,10.172546526753266],[98.23958239582396,10.167480794943614],[98.23958239582396,10.165792217673726],[98.2359823598236,10.165792217673726],[98.23238232382323,10.165792217673726],[98.23238232382323,10.1590379085942],[98.22878228782287,10.155660754054438],[98.22878228782287,10.150595022244786],[98.23238232382323,10.143840713165261],[98.21798217982183,10.135397826815847],[98.20718207182074,10.128643517736307],[98.19998199982001,10.11851205411702],[98.19638196381965,10.071231890560298],[98.18558185581855,10.042526076972294],[98.18558185581855,10.121889208656782]]],[[[97.91197911979123,10.495064785300855],[97.90117901179013,10.479867589871915],[97.90837908379086,10.47311328079239],[97.91917919179195,10.47311328079239],[97.92637926379263,10.474801858062264],[97.92997929979299,10.468047548982739],[97.93357933579335,10.461293239903199],[97.94437944379445,10.444407467204371],[97.93717937179372,10.437653158124846],[97.93357933579335,10.434276003585083],[97.92637926379263,10.432587426315195],[97.91917919179195,10.432587426315195],[97.92637926379263,10.417390230886255],[97.93357933579335,10.412324499076604],[97.90837908379086,10.402193035457316],[97.8939789397894,10.405570189997079],[97.89037890378904,10.420767385426018],[97.9047790477905,10.439341735394734],[97.89757897578977,10.452850353553785],[97.8939789397894,10.471424703522501],[97.89757897578977,10.48831047622133],[97.91197911979123,10.495064785300855]]],[[[106.87606876068764,10.459604662633325],[106.85806858068582,10.464670394442976],[106.84366843668437,10.469736126252613],[106.83286832868328,10.47311328079239],[106.81846818468188,10.46635897171285],[106.8256682566826,10.464670394442976],[106.8256682566826,10.462981817173088],[106.82926829268291,10.464670394442976],[106.83286832868328,10.46635897171285],[106.84726847268473,10.452850353553785],[106.85806858068582,10.432587426315195],[106.85806858068582,10.412324499076604],[106.840068400684,10.405570189997079],[106.81486814868151,10.414013076346492],[106.79326793267933,10.437653158124846],[106.7716677166772,10.464670394442976],[106.75726757267574,10.48831047622133],[106.75366753667538,10.503507671650269],[106.75366753667538,10.515327712539445],[106.75726757267574,10.542344948857576],[106.75726757267574,10.54403352612745],[106.75366753667538,10.55078783520699],[106.75366753667538,10.565985030635929],[106.75366753667538,10.569362185175692],[106.7716677166772,10.572739339715469],[106.77886778867787,10.576116494255231],[106.7860678606786,10.601445153303473],[106.77886778867787,10.625085235081826],[106.75366753667538,10.665611089559007],[106.77526775267756,10.665611089559007],[106.78246782467824,10.662233935019245],[106.79326793267933,10.65379104866983],[106.80046800468006,10.640282430510766],[106.80766807668078,10.63352812143124],[106.83646836468364,10.626773812351715],[106.84726847268473,10.61326519419265],[106.85446854468546,10.598067998763696],[106.85446854468546,10.584559380604645],[106.84726847268473,10.577805071525106],[106.84366843668437,10.57105076244558],[106.840068400684,10.559230721556403],[106.84366843668437,10.55585356701664],[106.85446854468546,10.538967794317813],[106.85806858068582,10.535590639778036],[106.86886868868692,10.52883633069851],[106.87246872468728,10.515327712539445],[106.86526865268655,10.503507671650269],[106.840068400684,10.501819094380394],[106.840068400684,10.495064785300855],[106.85446854468546,10.49337620803098],[106.86526865268655,10.48662189895144],[106.87606876068764,10.46635897171285],[106.87606876068764,10.459604662633325]]],[[[98.49518495184952,10.891880443723295],[98.52038520385207,10.87837182556423],[98.5419854198542,10.859797475595528],[98.55278552785529,10.832780239277398],[98.5419854198542,10.795631539339979],[98.52758527585274,10.787188652990565],[98.50958509585098,10.787188652990565],[98.49878498784989,10.79394296207009],[98.50238502385025,10.805763002959281],[98.51318513185134,10.809140157499044],[98.52038520385207,10.809140157499044],[98.52758527585274,10.810828734768918],[98.52758527585274,10.819271621118332],[98.52398523985244,10.826025930197872],[98.51678516785171,10.829403084737635],[98.50958509585098,10.827714507467746],[98.49878498784989,10.822648775658095],[98.49878498784989,10.837845971087049],[98.49518495184952,10.851354589246114],[98.49158491584916,10.866551784675053],[98.49158491584916,10.880060402834118],[98.49518495184952,10.891880443723295]]],[[[97.89037890378904,10.885126134643755],[97.89757897578977,10.913831948231774],[97.91197911979123,10.923963411851062],[97.93357933579335,10.923963411851062],[97.95157951579517,10.918897680041411],[97.94077940779408,10.891880443723295],[97.92637926379263,10.871617516484704],[97.90837908379086,10.85642032105575],[97.88317883178831,10.844600280166574],[97.89037890378904,10.854731743785877],[97.8939789397894,10.864863207405165],[97.8939789397894,10.873306093754579],[97.89037890378904,10.885126134643755]]],[[[98.27558275582754,11.24817024766854],[98.28278282782827,11.246481670398666],[98.289982899829,11.24817024766854],[98.29718297182973,11.24817024766854],[98.30078300783009,11.241415938589014],[98.29358293582936,11.231284474969712],[98.2791827918279,11.222841588620298],[98.24678246782469,11.214398702270884],[98.24678246782469,11.22790732042995],[98.24318243182432,11.243104515858889],[98.23238232382323,11.253235979478191],[98.2215822158222,11.261678865827605],[98.2215822158222,11.26843317490713],[98.23238232382323,11.273498906716782],[98.25398253982542,11.276876061256544],[98.28278282782827,11.27518748398667],[98.27558275582754,11.256613134017954],[98.27558275582754,11.24817024766854]]],[[[103.03123031230314,11.501456838150943],[103.0348303483035,11.49301395180153],[103.0456304563046,11.476128179102702],[103.04923049230496,11.467685292753288],[103.04923049230496,11.460930983673762],[103.0456304563046,11.452488097324348],[103.0348303483035,11.432225170085758],[103.03123031230314,11.425470861006218],[103.02043020430204,11.427159438276107],[103.02043020430204,11.437290901895409],[103.02403024030241,11.460930983673762],[103.01323013230132,11.476128179102702],[103.00243002430028,11.494702529071418],[102.99522995229955,11.51327687904012],[103.00963009630095,11.528474074469074],[103.02763027630277,11.518342610849771],[103.03123031230314,11.514965456310009],[103.03123031230314,11.509899724500357],[103.03123031230314,11.504833992690706],[103.03123031230314,11.501456838150943]]],[[[92.26712267122673,11.589262856184845],[92.27792277922782,11.584197124375194],[92.28512285122855,11.563934197136604],[92.28512285122855,11.543671269898013],[92.27432274322746,11.531851229008836],[92.25272252722527,11.528474074469074],[92.23472234722351,11.54029411535825],[92.23112231122315,11.577442815295669],[92.21672216722169,11.590951433454734],[92.21672216722169,11.59770574253426],[92.22752227522278,11.59770574253426],[92.25632256322564,11.594328587994497],[92.26712267122673,11.589262856184845]]],[[[97.66357663576639,11.906715382922798],[97.67437674376743,11.898272496573384],[97.67797677976779,11.888141032954081],[97.67797677976779,11.878009569334793],[97.66717667176675,11.86787810571549],[97.66717667176675,11.86281237390584],[97.67077670776706,11.837483714857598],[97.66717667176675,11.837483714857598],[97.64917649176493,11.844238023937137],[97.6419764197642,11.86787810571549],[97.6419764197642,11.879698146604667],[97.66357663576639,11.906715382922798]]],[[[98.25398253982542,11.857746642096203],[98.25398253982542,11.88307530114443],[98.25758257582578,11.903338228383035],[98.26478264782651,11.908403960192672],[98.28638286382863,11.896583919303495],[98.289982899829,11.88307530114443],[98.28278282782827,11.866189528445602],[98.27198271982724,11.852680910286551],[98.26118261182614,11.854369487556426],[98.25398253982542,11.857746642096203]]],[[[98.26838268382687,11.933732619240914],[98.26118261182614,11.926978310161388],[98.25398253982542,11.923601155621625],[98.24678246782469,11.9252897328915],[98.22878228782287,11.953995546479504],[98.2359823598236,11.96750416463857],[98.25398253982542,11.974258473718109],[98.26118261182614,11.970881319178332],[98.26118261182614,11.962438432828918],[98.26838268382687,11.942175505590328],[98.26838268382687,11.933732619240914]]],[[[93.10233102331023,12.190396364263094],[93.10233102331023,12.188707786993206],[93.10233102331023,12.185330632453443],[93.10233102331023,12.180264900643792],[93.0951309513095,12.158313396135313],[93.0951309513095,12.151559087055787],[93.10233102331023,12.11947611892802],[93.10233102331023,12.102590346229192],[93.0951309513095,12.090770305340001],[93.08433084330846,12.095836037149652],[93.07353073530737,12.111033232578606],[93.06273062730628,12.127919005277434],[93.05913059130592,12.138050468896722],[93.05913059130592,12.153247664325662],[93.06273062730628,12.171822014294378],[93.06633066330664,12.190396364263094],[93.07353073530737,12.200527827882382],[93.0807308073081,12.205593559692034],[93.09153091530914,12.203904982422145],[93.09873098730986,12.198839250612494],[93.10233102331023,12.190396364263094]]],[[[98.51318513185134,12.496028850111855],[98.51678516785171,12.479143077413028],[98.51318513185134,12.423420027506893],[98.50958509585098,12.409911409347842],[98.49518495184952,12.40653425480808],[98.48078480784807,12.409911409347842],[98.4735847358474,12.425108604776781],[98.4879848798488,12.492651695572093],[98.49878498784989,12.512914622810683],[98.51318513185134,12.496028850111855]]],[[[98.25398253982542,12.56694909544693],[98.25758257582578,12.573703404526455],[98.26118261182614,12.568637672716818],[98.26838268382687,12.560194786367404],[98.26838268382687,12.556817631827627],[98.289982899829,12.526423240969748],[98.28278282782827,12.50447173646127],[98.26118261182614,12.496028850111855],[98.2359823598236,12.506160313731158],[98.22878228782287,12.516291777350446],[98.22878228782287,12.528111818239623],[98.23238232382323,12.553440477287864],[98.2359823598236,12.556817631827627],[98.24318243182432,12.558506209097516],[98.25038250382505,12.560194786367404],[98.25398253982542,12.56694909544693]]],[[[97.82197821978218,12.58721202268552],[97.82557825578255,12.590589177225283],[97.83637836378364,12.595654909034934],[97.84717847178473,12.597343486304823],[97.8507785077851,12.593966331765046],[97.85437854378546,12.578769136336106],[97.86157861578619,12.570326249986692],[97.86157861578619,12.560194786367404],[97.8507785077851,12.536554704589037],[97.8507785077851,12.541620436398688],[97.84717847178473,12.54499759093845],[97.84357843578437,12.546686168208339],[97.84357843578437,12.550063322748102],[97.839978399784,12.556817631827627],[97.839978399784,12.558506209097516],[97.83637836378364,12.558506209097516],[97.82917829178291,12.556817631827627],[97.82917829178291,12.565260518177041],[97.83277832778327,12.570326249986692],[97.83277832778327,12.573703404526455],[97.82557825578255,12.578769136336106],[97.82197821978218,12.58721202268552]]],[[[93.03753037530379,13.667901475410446],[93.0411304113041,13.662835743600795],[93.05193051930519,13.64088423909233],[93.01953019530197,13.649327125441744],[93.00153001530015,13.657770011791158],[92.99072990729906,13.667901475410446],[93.01953019530197,13.679721516299622],[93.03393033930342,13.679721516299622],[93.03753037530379,13.667901475410446]]],[[[97.93357933579335,13.858710706907189],[97.93717937179372,13.851956397827664],[97.93357933579335,13.840136356938487],[97.92997929979299,13.82156200696977],[97.92637926379263,13.784413307032352],[97.91917919179195,13.784413307032352],[97.91557915579159,13.799610502461306],[97.91557915579159,13.82831631604931],[97.91917919179195,13.853644975097552],[97.93357933579335,13.858710706907189]]],[[[93.39753397533974,14.140703110977611],[93.4011340113401,14.095111524690765],[93.39393393933938,14.076537174722063],[93.37593375933761,14.064717133832886],[93.38313383133834,14.139014533707723],[93.3867338673387,14.1508345745969],[93.39033390333907,14.154211729136662],[93.39753397533974,14.140703110977611]]],[[[93.67473674736749,14.86003702794764],[93.68553685536858,14.871857068836817],[93.69273692736931,14.888742841535645],[93.70353703537035,14.903940036964585],[93.72513725137253,14.914071500583887],[93.72513725137253,14.907317191504347],[93.7179371793718,14.89043141880552],[93.70353703537035,14.870168491566929],[93.68913689136895,14.858348450677752],[93.67473674736749,14.86003702794764]]],[[[97.66357663576639,15.565862326758605],[97.67077670776706,15.550665131329652],[97.67077670776706,15.533779358630824],[97.67077670776706,15.51689358593201],[97.66357663576639,15.503384967772945],[97.65637656376566,15.523647895011536],[97.64917649176493,15.592879563076721],[97.65637656376566,15.586125253997196],[97.65997659976603,15.581059522187545],[97.66357663576639,15.574305213108019],[97.66357663576639,15.565862326758605]]],[[[110.59490594905952,20.959178126763945],[110.60570605706056,20.954112394954294],[110.61650616506165,20.952423817684405],[110.62730627306274,20.949046663144642],[110.6309063090631,20.937226622255466],[110.6309063090631,20.92540658136629],[110.62370623706238,20.915275117746987],[110.60930609306092,20.896700767778285],[110.5877058770588,20.88319214961922],[110.5769057690577,20.88825788142887],[110.56250562505625,20.90345507685781],[110.54810548105485,20.916963695016875],[110.57330573305734,20.947358085874768],[110.59130591305916,20.959178126763945],[110.6021060210602,20.964243858573596],[110.59490594905952,20.959178126763945]]],[[[107.52407524075244,20.91020938593735],[107.54927549275493,20.955800972224182],[107.5528755287553,20.972686744922996],[107.55647556475566,20.969309590383233],[107.55647556475566,20.96593243584347],[107.56007560075602,20.959178126763945],[107.5528755287553,20.935538044985577],[107.54567545675457,20.91865227228675],[107.49887498874989,20.852797758761326],[107.49167491674916,20.84266629514204],[107.48447484474843,20.822403367903448],[107.47727477274776,20.813960481554034],[107.4628746287463,20.813960481554034],[107.48087480874807,20.849420604221564],[107.48087480874807,20.864617799650503],[107.47007470074703,20.876437840539694],[107.47007470074703,20.88319214961922],[107.49167491674916,20.88319214961922],[107.50607506075062,20.886569304158982],[107.51687516875171,20.895012190508396],[107.52407524075244,20.91020938593735]]],[[[107.74367743677436,21.019966908479716],[107.75807758077582,21.016589753939954],[107.7940779407794,20.9929496721616],[107.7940779407794,20.98619536308206],[107.78327783277831,20.989572517621824],[107.779677796778,20.9929496721616],[107.77247772477727,20.9929496721616],[107.779677796778,20.972686744922996],[107.77247772477727,20.957489549494056],[107.75447754477545,20.94566950860488],[107.740077400774,20.937226622255466],[107.75807758077582,20.97099816765312],[107.75807758077582,20.982818208542298],[107.75447754477545,20.98788394035195],[107.74367743677436,20.994638249431475],[107.73647736477363,21.00308113578089],[107.74367743677436,21.019966908479716]]],[[[107.62127621276215,21.116215812863032],[107.62847628476288,21.119592967402795],[107.63207632076319,21.119592967402795],[107.63207632076319,21.11115008105338],[107.5960759607596,21.038541258448433],[107.58887588875888,21.00814686759054],[107.57807578075784,20.982818208542298],[107.56007560075602,20.98619536308206],[107.57087570875711,20.989572517621824],[107.57087570875711,20.996326826701363],[107.56727567275675,21.004769713050777],[107.56727567275675,21.016589753939954],[107.57087570875711,21.026721217559242],[107.58527585275851,21.040229835718307],[107.58887588875888,21.05036129933761],[107.58887588875888,21.074001381115963],[107.59247592475924,21.082444267465377],[107.59247592475924,21.089198576544902],[107.59967599675997,21.094264308354553],[107.62127621276215,21.116215812863032]]],[[[107.81207812078122,21.361059516996022],[107.81567815678159,21.35768236245626],[107.81927819278195,21.354305207916497],[107.81927819278195,21.350928053376734],[107.81567815678159,21.349239476106845],[107.80847808478086,21.347550898836957],[107.71127711277114,21.307025044359776],[107.7148771487715,21.31040219889954],[107.7256772567726,21.323910817058604],[107.78327783277831,21.35599378518637],[107.80127801278013,21.36274809426591],[107.81207812078122,21.361059516996022]]],[[[107.86967869678699,21.389765330584027],[107.99927999279993,21.40327394874309],[107.99927999279993,21.39820821693344],[107.95967959679598,21.374568135155087],[107.94527945279452,21.367813826075547],[107.93447934479343,21.37625671242496],[107.93087930879312,21.37625671242496],[107.9236792367924,21.3728795578852],[107.85527855278553,21.350928053376734],[107.84087840878408,21.349239476106845],[107.84447844478444,21.359370939726148],[107.8480784807848,21.369502403345436],[107.85527855278553,21.361059516996022],[107.85527855278553,21.35599378518637],[107.8588785887859,21.364436671535785],[107.86607866078663,21.369502403345436],[107.87327873278736,21.374568135155087],[107.85167851678517,21.374568135155087],[107.82647826478268,21.369502403345436],[107.82647826478268,21.37625671242496],[107.8588785887859,21.386388176044264],[107.86967869678699,21.389765330584027]]],[[[88.05148051480518,21.70552928005209],[88.09108091080913,21.80853249351493],[88.11988119881198,21.859189811611415],[88.14508145081453,21.869321275230718],[88.16668166681666,21.764629484497988],[88.1630816308163,21.70552928005209],[88.13428134281344,21.6852663528135],[88.14508145081453,21.658249116495384],[88.14508145081453,21.64305192106643],[88.1378813788138,21.62954330290738],[88.13068130681307,21.626166148367602],[88.11988119881198,21.62785472563749],[88.09108091080913,21.636297611986905],[88.06228062280621,21.636297611986905],[88.05148051480518,21.641363343796556],[88.04428044280445,21.658249116495384],[88.04068040680409,21.668380580114672],[88.04428044280445,21.68020062100385],[88.05148051480518,21.70552928005209]]],[[[88.08028080280803,21.849058347992127],[88.0730807308073,21.85750123434154],[88.06948069480694,21.87438700704037],[88.0730807308073,21.89296135700907],[88.07668076680767,21.904781397898248],[88.0838808388084,21.921667170597075],[88.09468094680949,21.938552943295903],[88.10548105481058,21.946995829645317],[88.11988119881198,21.945307252375443],[88.13428134281344,21.9199785933272],[88.12348123481235,21.88789562519942],[88.10548105481058,21.860878388881304],[88.08028080280803,21.849058347992127]]],[[[90.59310593105931,21.985833106852624],[90.59310593105931,21.965570179614033],[90.59670596705968,21.960504447804382],[90.60030600306004,21.953750138724857],[90.60750607506077,21.938552943295903],[90.58950589505895,21.93517578875614],[90.58230582305822,21.91322428424766],[90.57150571505719,21.918290016057313],[90.56430564305646,21.918290016057313],[90.55710557105573,21.898027088818722],[90.53910539105391,21.876075584310243],[90.52110521105215,21.860878388881304],[90.50310503105032,21.862566966151178],[90.50310503105032,21.869321275230718],[90.51030510305105,21.871009852500592],[90.52470524705245,21.876075584310243],[90.53190531905318,21.876075584310243],[90.52470524705245,21.88789562519942],[90.51750517505178,21.89296135700907],[90.51030510305105,21.898027088818722],[90.51750517505178,21.904781397898248],[90.51750517505178,21.911535706977787],[90.51390513905142,21.921667170597075],[90.51750517505178,21.931798634216378],[90.52110521105215,21.938552943295903],[90.52470524705245,21.943618675105554],[90.59310593105931,21.985833106852624]]],[[[90.33390333903338,21.938552943295903],[90.35550355503557,21.97739022050321],[90.36990369903702,21.994275993202038],[90.39510395103952,22.001030302281563],[90.39150391503915,21.979078797773084],[90.36630366303666,21.938552943295903],[90.34110341103411,21.860878388881304],[90.33390333903338,21.849058347992127],[90.32310323103229,21.843992616182476],[90.31950319503198,21.845681193452364],[90.31950319503198,21.89296135700907],[90.32310323103229,21.916601438787424],[90.33390333903338,21.938552943295903]]],[[[90.38790387903879,22.048310465838284],[90.38070380703806,22.022981806790042],[90.3519035190352,21.99258741593215],[90.34470344703448,21.97232448869356],[90.34110341103411,21.97232448869356],[90.34470344703448,21.994275993202038],[90.35910359103593,22.022981806790042],[90.37350373503733,22.04493331129852],[90.38790387903879,22.048310465838284]]],[[[90.43470434704346,22.041556156758745],[90.47430474304741,22.004407456821326],[90.4851048510485,21.97739022050321],[90.47790477904778,21.945307252375443],[90.45630456304565,21.933487211486252],[90.4311043110431,21.908158552438024],[90.4167041670417,21.89971566608861],[90.40230402304024,21.906469975168136],[90.39510395103952,21.921667170597075],[90.39510395103952,21.938552943295903],[90.39870398703988,21.953750138724857],[90.40590405904061,21.963881602344145],[90.41310413104134,21.97570164323332],[90.41310413104134,21.9976531477418],[90.41310413104134,22.028047538599694],[90.4167041670417,22.038179002218982],[90.42750427504274,22.048310465838284],[90.43470434704346,22.041556156758745]]],[[[121.56421564215646,22.04493331129852],[121.58221582215822,22.031424693139456],[121.58941589415895,22.022981806790042],[121.58941589415895,22.01453892044063],[121.56781567815682,22.007784611361103],[121.5390153901539,22.01791607498039],[121.51381513815141,22.03480184767922],[121.49941499414996,22.048310465838284],[121.50301503015032,22.056753352187698],[121.50301503015032,22.066884815806986],[121.49941499414996,22.0753277021564],[121.49221492214923,22.08208201123594],[121.56781567815682,22.08208201123594],[121.56781567815682,22.0753277021564],[121.56421564215646,22.071950547616638],[121.56061560615609,22.063507661267224],[121.56061560615609,22.053376197647935],[121.56421564215646,22.04493331129852]]],[[[90.54270542705427,22.06181908399735],[90.53910539105391,22.068573393076875],[90.4959049590496,22.04493331129852],[90.48870488704887,22.03480184767922],[90.4851048510485,22.03480184767922],[90.4851048510485,22.058441929457572],[90.49230492304923,22.08039343396605],[90.50310503105032,22.09559062939499],[90.52110521105215,22.10234493847453],[90.53190531905318,22.110787824823944],[90.5607056070561,22.13780506114206],[90.57150571505719,22.13780506114206],[90.58230582305822,22.149625102031237],[90.59310593105931,22.15975656565054],[90.6039060390604,22.16482229746019],[90.6147061470615,22.16482229746019],[90.59310593105931,22.10234493847453],[90.59310593105931,22.11247640209382],[90.59310593105931,22.11923071117336],[90.58590585905858,22.131050752062535],[90.57510575105749,22.09559062939499],[90.56790567905682,22.058441929457572],[90.5607056070561,22.022981806790042],[90.53910539105391,22.001030302281563],[90.52110521105215,21.994275993202038],[90.51030510305105,21.99934172501169],[90.50310503105032,22.011161765900866],[90.50310503105032,22.02467038405993],[90.51030510305105,22.03311327040933],[90.54270542705427,22.06181908399735]]],[[[90.94230942309423,22.205348151937372],[90.9459094590946,22.212102461016897],[90.94950949509496,22.212102461016897],[90.95310953109532,22.208725306477135],[90.95670956709569,22.198593842857846],[90.95670956709569,22.1445593702216],[90.94950949509496,22.120919288443233],[90.92790927909277,22.11754213390347],[90.9207092070921,22.132739329332423],[90.9207092070921,22.15975656565054],[90.92790927909277,22.190150956508433],[90.9351093510935,22.212102461016897],[90.94230942309423,22.205348151937372]]],[[[90.9747097470975,22.18508522469878],[90.97830978309781,22.239119697335028],[90.98190981909818,22.259382624573618],[90.99630996309963,22.254316892763967],[90.99630996309963,22.235742542795265],[90.99630996309963,22.213791038286786],[90.9891098910989,22.19521668831807],[90.9747097470975,22.18508522469878]]],[[[90.95310953109532,22.22729965644585],[90.93870938709387,22.232365388255502],[90.93870938709387,22.24756258368444],[90.94950949509496,22.26444835638327],[90.95670956709569,22.277956974542334],[90.96030960309605,22.323548560829167],[90.96750967509678,22.34718864260752],[90.9747097470975,22.364074415306348],[90.98550985509854,22.355631528956934],[90.9891098910989,22.340434333527995],[90.99270992709927,22.32185998355928],[90.99270992709927,22.301597056320688],[90.9891098910989,22.281334129082097],[90.95310953109532,22.22729965644585]]],[[[90.61830618306186,22.42486319702212],[90.6147061470615,22.428240351561882],[90.60750607506077,22.428240351561882],[90.60030600306004,22.42992892883177],[90.60030600306004,22.441748969720948],[90.60030600306004,22.448503278800487],[90.60750607506077,22.45019185607036],[90.6147061470615,22.448503278800487],[90.61830618306186,22.44512612426071],[90.63270632706326,22.43161750610166],[90.64710647106472,22.407977424323292],[90.65790657906581,22.379271610735287],[90.66150661506617,22.355631528956934],[90.65070650706508,22.375894456195525],[90.64710647106472,22.38433734254494],[90.63990639906399,22.365762992576222],[90.64710647106472,22.32523713809904],[90.63990639906399,22.308351365400213],[90.63630636306362,22.316794251749627],[90.63270632706326,22.328614292638804],[90.63270632706326,22.338745756258106],[90.63270632706326,22.34887721987741],[90.63990639906399,22.34887721987741],[90.63270632706326,22.36745156984611],[90.62550625506253,22.406288847053418],[90.61830618306186,22.42486319702212]]],[[[90.64710647106472,22.42486319702212],[90.65430654306545,22.483963401468017],[90.65430654306545,22.480586246928254],[90.66150661506617,22.480586246928254],[90.66510665106654,22.468766206039078],[90.6687066870669,22.458634742419775],[90.6687066870669,22.438371815181185],[90.65790657906581,22.433306083371534],[90.65430654306545,22.43161750610166],[90.64710647106472,22.42486319702212]]],[[[91.15831158311585,22.504226328706608],[91.20151201512016,22.51435779232591],[91.21231212312125,22.495783442357194],[91.20151201512016,22.47214336057884],[91.17991179911797,22.458634742419775],[91.15831158311585,22.45019185607036],[91.1331113311133,22.45019185607036],[91.11511115111153,22.462011896959538],[91.12231122311226,22.48902913327767],[91.15831158311585,22.504226328706608]]],[[[90.64350643506435,22.848696091762676],[90.66510665106654,22.828433164524085],[90.67950679506794,22.808170237285495],[90.66150661506617,22.804793082745732],[90.6291062910629,22.811547391825258],[90.58950589505895,22.813235969095146],[90.5607056070561,22.789595887316793],[90.54630546305464,22.782841578237253],[90.53190531905318,22.769332960078188],[90.52830528305282,22.74400430102996],[90.53550535505354,22.728807105601007],[90.52110521105215,22.71192133290218],[90.51030510305105,22.72205279652148],[90.49950499504996,22.733872837410658],[90.4959049590496,22.742315723760072],[90.49230492304923,22.75244718737936],[90.48150481504814,22.7592014964589],[90.45630456304565,22.767644382808314],[90.46350463504638,22.77946442369749],[90.46710467104674,22.787907310046904],[90.46350463504638,22.81661312363491],[90.46350463504638,22.833498896333737],[90.46710467104674,22.852073246302453],[90.47430474304741,22.865581864461504],[90.4851048510485,22.870647596271155],[90.52110521105215,22.86389328719163],[90.53910539105391,22.867270441731392],[90.54270542705427,22.880779059890457],[90.55350553505536,22.88246763716033],[90.59310593105931,22.88246763716033],[90.60750607506077,22.87740190535068],[90.62550625506253,22.85713897811209],[90.64350643506435,22.848696091762676]]],[[[90.51030510305105,23.068211136847438],[90.51750517505178,23.059768250498024],[90.51390513905142,23.05132536414861],[90.49950499504996,23.037816745989545],[90.47790477904778,23.012488086941303],[90.4707047070471,23.007422355131652],[90.45990459904601,23.047948209608833],[90.45630456304565,23.063145405037787],[90.4959049590496,23.063145405037787],[90.50310503105032,23.06483398230766],[90.51030510305105,23.068211136847438]]],[[[123.00423004230043,24.474796002659716],[123.01503015030153,24.469730270850064],[123.01863018630189,24.459598807230776],[123.01143011430116,24.4477787663416],[122.9970299702997,24.439335879992186],[122.98622986229861,24.44271303453195],[122.94662946629467,24.439335879992186],[122.93942939429394,24.444401611801837],[122.93942939429394,24.454533075421125],[122.9430294302943,24.4663531163103],[122.9538295382954,24.47310742538984],[122.96822968229685,24.471418848119953],[123.00423004230043,24.474796002659716]]],[[[141.35721357213572,24.788871374857905],[141.36441364413645,24.77705133396873],[141.35721357213572,24.77367417942895],[141.34281342813432,24.771985602159077],[141.33201332013323,24.768608447619314],[141.32121321213214,24.758476984000012],[141.30321303213032,24.73483690222166],[141.28881288812892,24.726394015872245],[141.28881288812892,24.7601655612699],[141.29241292412928,24.77367417942895],[141.29961299612995,24.785494220318142],[141.31041310413104,24.792248529397668],[141.33201332013323,24.793937106667556],[141.34641346413463,24.793937106667556],[141.35721357213572,24.788871374857905]]],[[[131.25551255512556,25.874626559392482],[131.27711277112775,25.857740786693654],[131.26991269912702,25.85436363215389],[131.2627126271263,25.845920745804477],[131.25911259112593,25.837477859455063],[131.25911259112593,25.82734639583576],[131.2519125191252,25.818903509486347],[131.2411124111241,25.818903509486347],[131.23031230312301,25.82228066402611],[131.21231212312125,25.82903497310565],[131.21231212312125,25.840855013994826],[131.21951219512198,25.856052209423765],[131.23751237512374,25.871249404852705],[131.2411124111241,25.876315136662356],[131.24831248312483,25.876315136662356],[131.25551255512556,25.874626559392482]]],[[[142.19242192421927,27.092090770977904],[142.20682206822067,27.097156502787556],[142.22122221222213,27.09884508005743],[142.23202232022322,27.09377934824778],[142.24282242822431,27.08364788462849],[142.2356223562236,27.049876339230835],[142.21762217622177,27.039744875611532],[142.19962199621995,27.051564916500723],[142.18162181621818,27.07858215281884],[142.2140221402214,27.0633849573899],[142.21042210422104,27.073516421009188],[142.20682206822067,27.080270730088728],[142.19962199621995,27.087025039168253],[142.19242192421927,27.092090770977904]]],[[[129.7146971469715,29.655351066659833],[129.74709747097472,29.660416798469484],[129.75429754297545,29.645219603040545],[129.74349743497436,29.62157952126219],[129.72189721897217,29.606382325833238],[129.7146971469715,29.630022407611605],[129.71109711097114,29.641842448500782],[129.7146971469715,29.655351066659833]]],[[[129.89469894698948,29.874866111744595],[129.89829898298984,29.84616029815659],[129.9270992709927,29.825897370917986],[129.92349923499233,29.822520216378223],[129.91989919899203,29.81914306183846],[129.86229862298626,29.82420879364811],[129.85149851498517,29.83940598907705],[129.84069840698407,29.849537452696353],[129.83349833498335,29.873177534474706],[129.85149851498517,29.88668615263377],[129.87669876698766,29.878243266284358],[129.88029880298802,29.879931843554232],[129.8838988389884,29.878243266284358],[129.88749887498875,29.878243266284358],[129.89469894698948,29.874866111744595]]],[[[132.24192241922418,33.79405395514233],[132.25272252722527,33.78561106879292],[132.27432274322746,33.77210245063385],[132.27432274322746,33.76872529609409],[132.25632256322564,33.76534814155433],[132.2347223472235,33.76872529609409],[132.2059220592206,33.782233914253155],[132.18792187921878,33.77885675971339],[132.1951219512195,33.79405395514233],[132.20952209522096,33.80080826422186],[132.22752227522278,33.79911968695198],[132.24192241922418,33.79405395514233]]],[[[139.26919269192695,34.39518746322058],[139.27999279992804,34.401941772300106],[139.29079290792907,34.41376181318928],[139.30159301593017,34.417138967729045],[139.30159301593017,34.40025319503022],[139.2979929799298,34.36817022690245],[139.28359283592835,34.33608725877468],[139.26919269192695,34.32257864061562],[139.2547925479255,34.341152990584334],[139.2547925479255,34.35297303147351],[139.26559265592658,34.38843315414104],[139.26919269192695,34.39518746322058]]],[[[125.9886598865989,34.71263998995852],[125.99945999459993,34.704197103609104],[126.0030600306003,34.70081994906934],[126.00666006660066,34.69237706271993],[126.0030600306003,34.683934176370514],[125.99945999459993,34.67717986729099],[125.98505985059853,34.66029409459216],[125.9778597785978,34.6569169400524],[125.97065970659708,34.65522836278251],[125.95985959859598,34.6569169400524],[125.95985959859598,34.66029409459216],[125.94545945459458,34.667048403671686],[125.93105931059313,34.67211413548134],[125.9238592385924,34.67042555821145],[125.91665916659167,34.687311330910276],[125.9238592385924,34.69575421725969],[125.95265952659526,34.70588568087899],[125.97065970659708,34.72614860811758],[125.9778597785978,34.72783718538747],[125.98145981459817,34.72614860811758],[125.9886598865989,34.71263998995852]]],[[[126.00666006660066,34.78018308075383],[126.00666006660066,34.75992015351524],[126.0030600306003,34.76160873078511],[125.99225992259926,34.763297308055],[125.98505985059853,34.766674462594764],[125.9778597785978,34.756542998975476],[125.96345963459635,34.756542998975476],[125.95265952659526,34.75992015351524],[125.94545945459458,34.756542998975476],[125.94545945459458,34.74303438081641],[125.93825938259386,34.731214339927234],[125.93105931059313,34.72277145357782],[125.91665916659167,34.71770572176817],[125.90585905859058,34.71939429903806],[125.89865898658985,34.72614860811758],[125.89145891458918,34.736280071736886],[125.89145891458918,34.74978868989594],[125.89505895058954,34.76160873078511],[125.90225902259021,34.771740194404416],[125.91305913059131,34.77680592621407],[125.9238592385924,34.78018308075383],[125.93825938259386,34.77680592621407],[125.95625956259562,34.78018308075383],[125.9886598865989,34.79031454437313],[125.99585995859962,34.79031454437313],[125.99945999459993,34.79031454437313],[126.0030600306003,34.786937389833355],[126.00666006660066,34.78018308075383]]],[[[126.1110611106111,35.05035544393506],[126.10386103861038,35.05035544393506],[126.07866078660788,35.05542117574471],[126.06786067860679,35.05542117574471],[126.06426064260643,35.057109753014586],[126.06426064260643,35.058798330284475],[126.06066060660606,35.06048690755436],[126.0570605706057,35.06217548482424],[126.06426064260643,35.09256987568213],[126.06786067860679,35.10270133930142],[126.07506075060752,35.106078493841196],[126.08946089460898,35.10945564838096],[126.10026100261001,35.11283280292072],[126.10386103861038,35.11958711200025],[126.1110611106111,35.13309573015931],[126.12906129061292,35.143227193778614],[126.15066150661505,35.14660434831838],[126.16506165061651,35.143227193778614],[126.13626136261365,35.12971857561955],[126.12906129061292,35.121275689270135],[126.12546125461256,35.11114422565083],[126.13266132661329,35.101012762031544],[126.14346143461438,35.08243841206283],[126.13266132661329,35.079061257523065],[126.1218612186122,35.07061837117365],[126.11466114661147,35.058798330284475],[126.1110611106111,35.05035544393506]]],[[[133.01233012330124,36.01453306503808],[133.02313023130233,36.02635310592726],[133.04473044730446,36.01959879684773],[133.06633066330664,36.006090178688666],[133.0807308073081,35.99427013779949],[133.06633066330664,35.99427013779949],[133.0267302673027,35.99427013779949],[133.02313023130233,35.99595871506938],[133.0159301593016,36.001024446879015],[133.01233012330124,36.007778755958554],[133.01233012330124,36.01453306503808]]],[[[126.56466564665647,37.513989680693925],[126.56826568265683,37.51061252615415],[126.5718657186572,37.50554679434451],[126.57546575465756,37.502169639804734],[126.57906579065792,37.49541533072521],[126.58266582665829,37.49034959891556],[126.57906579065792,37.48866102164568],[126.56826568265683,37.48359528983603],[126.56466564665647,37.48021813529627],[126.5466654666547,37.47684098075649],[126.53946539465397,37.47684098075649],[126.52866528665288,37.47346382621673],[126.5070650706507,37.465020939867316],[126.4926649266493,37.4565780535179],[126.48546485464857,37.44644658989861],[126.44226442264426,37.42111793085037],[126.43506435064353,37.422806508120246],[126.42426424264244,37.42111793085037],[126.42066420664207,37.422806508120246],[126.41706417064171,37.43462654900944],[126.40986409864098,37.4380037035492],[126.40626406264062,37.43462654900944],[126.40266402664025,37.43462654900944],[126.39906399063995,37.43631512627931],[126.40266402664025,37.439692280819074],[126.39906399063995,37.444758012628725],[126.39186391863922,37.444758012628725],[126.38826388263885,37.44138085808896],[126.38466384663849,37.4380037035492],[126.37746377463776,37.439692280819074],[126.36666366663667,37.44306943535885],[126.37026370263703,37.44813516716849],[126.37026370263703,37.45320089897814],[126.35946359463594,37.46164378532755],[126.35586355863558,37.466709517137204],[126.35946359463594,37.47346382621673],[126.36666366663667,37.47515240348662],[126.3738637386374,37.471775248946855],[126.42066420664207,37.4971039079951],[126.45306453064529,37.50048106253486],[126.47466474664748,37.49879248526497],[126.4926649266493,37.507235371614385],[126.49986499865003,37.53087545339274],[126.51426514265142,37.534252607932515],[126.52506525065252,37.5258097215831],[126.53226532265325,37.52412114431321],[126.53946539465397,37.52074398977345],[126.54306543065434,37.51905541250356],[126.55026550265507,37.51905541250356],[126.55386553865537,37.51736683523369],[126.56466564665647,37.513989680693925]]],[[[126.35586355863558,37.694667448571366],[126.37026370263703,37.68791313949184],[126.37746377463776,37.679470253142426],[126.38106381063812,37.669338789523124],[126.37026370263703,37.65751874863395],[126.3486634866349,37.65751874863395],[126.28026280262804,37.69973318038102],[126.29106291062914,37.70479891219067],[126.2946629466295,37.71324179854008],[126.30186301863017,37.731816148508784],[126.30546305463054,37.736881880318435],[126.3090630906309,37.74194761212809],[126.31266312663126,37.74532476666785],[126.31986319863199,37.747013343937724],[126.32346323463236,37.74532476666785],[126.32706327063272,37.74194761212809],[126.32706327063272,37.738570457588324],[126.33066330663308,37.71999610761961],[126.33066330663308,37.716618953079845],[126.33786337863381,37.709864644000305],[126.34146341463418,37.70479891219067],[126.35586355863558,37.694667448571366]]],[[[124.88344883448838,38.52882461989341],[124.90144901449014,38.50518453811506],[124.9050490504905,38.49505307449577],[124.86184861848619,38.503495960845186],[124.84024840248401,38.51025026992471],[124.82224822248224,38.52207031081389],[124.80064800648006,38.50856169265482],[124.78984789847897,38.51700457900424],[124.79344793447933,38.533890351703064],[124.83304833048334,38.55246470167178],[124.84384843848437,38.55584185621154],[124.8510485104851,38.54571039259224],[124.86544865448656,38.54233323805248],[124.87624876248765,38.53557892897295],[124.88344883448838,38.52882461989341]]],[[[145.31005310053104,43.59286785227164],[145.34605346053462,43.57598207957281],[145.36045360453608,43.564162038683634],[145.36405364053644,43.555719152334206],[145.34965349653498,43.54896484325468],[145.3136531365314,43.542210534175155],[145.3028530285303,43.53545622509563],[145.29565295652958,43.52194760693655],[145.2848528485285,43.5185704523968],[145.2740527405274,43.52194760693655],[145.27765277652776,43.53883337963538],[145.28845288452885,43.547276265984806],[145.31725317253176,43.55740772960411],[145.33165331653316,43.56585061595351],[145.20205202052023,43.613130779510215],[145.28845288452885,43.60131073862104],[145.31005310053104,43.59286785227164]]],[[[144.449644496445,43.94240334713734],[144.45684456844572,43.94240334713734],[144.449644496445,43.94240334713734],[144.449644496445,43.94240334713734]]],[[[153.9861398613986,48.96592072503839],[154.00054000540007,48.95916641595886],[154.01134011340116,48.95241210687931],[154.01494014940153,48.94396922052991],[154.00054000540007,48.933837756910606],[153.98253982539825,48.928772025100955],[153.96093960939612,48.92708344783108],[153.93933939339394,48.92708344783108],[153.92493924939248,48.93046060237083],[153.9177391773918,48.93046060237083],[153.90693906939072,48.94396922052991],[153.90333903339035,48.955789261419085],[153.90333903339035,48.969297879578136],[153.91413914139144,48.982806497737215],[153.92853928539284,48.98111792046731],[153.9861398613986,48.96592072503839]]],[[[178.25398253982542,51.829747774759426],[178.27198271982724,51.824682042949775],[178.31518315183155,51.821304888410026],[178.3331833318333,51.816239156600375],[178.35118351183513,51.807796270250975],[178.39438394383944,51.76895899304367],[178.379983799838,51.77233614758342],[178.3547835478355,51.767270415773766],[178.34038340383404,51.76895899304367],[178.32958329583295,51.77402472485332],[178.31158311583118,51.79259907482202],[178.30438304383046,51.79597622936177],[178.28638286382863,51.79935338390155],[178.26118261182614,51.80948484752085],[178.2359823598236,51.8229934656799],[178.2251822518225,51.83650208383898],[178.23238232382323,51.83143635202933],[178.2359823598236,51.829747774759426],[178.24318243182432,51.83143635202933],[178.25398253982542,51.829747774759426]]],[[[175.88155881558816,52.37853538747132],[175.91755917559175,52.37853538747132],[175.93555935559357,52.37178107839179],[175.97155971559715,52.365026769312266],[175.98955989559897,52.35827246023271],[175.96435964359642,52.34476384207366],[175.92835928359284,52.33969811026401],[175.89955899558998,52.34814099661344],[175.88155881558816,52.37853538747132]]],[[[174.09594095940963,52.71456226417797],[174.08154081540818,52.71793941871775],[174.08514085140854,52.72638230506715],[174.09594095940963,52.73651376868645],[174.1139411394114,52.7415795004961],[174.16434164341644,52.721316573257496],[174.18234182341826,52.70611937782854],[174.09594095940963,52.71456226417797]]],[[[142.54882548825492,54.301824897867704],[142.56682566825668,54.31026778421713],[142.58842588425887,54.31364493875688],[142.60282602826027,54.31026778421713],[142.58842588425887,54.30351347513758],[142.5416254162542,54.298447743327955],[142.54882548825492,54.301824897867704]]],[[[-162.41022410224102,54.40651668860045],[-162.40662406624065,54.39807380225102],[-162.40662406624065,54.391319493171494],[-162.40302403024032,54.38625376136184],[-162.3958239582396,54.38625376136184],[-162.3670236702367,54.391319493171494],[-162.3670236702367,54.38625376136184],[-162.41382413824138,54.37105656593289],[-162.43542435424354,54.37274514320279],[-162.45342453424536,54.382876606822066],[-162.47862478624785,54.4014509567908],[-162.48582485824858,54.40651668860045],[-162.48582485824858,54.41327099767997],[-162.4822248222482,54.4200253067595],[-162.47142471424715,54.42171388402937],[-162.4570245702457,54.4200253067595],[-162.41022410224102,54.40651668860045]]],[[[-158.70938709387093,55.83167590438143],[-158.810188101881,55.85869314069956],[-158.8569885698857,55.86375887250921],[-158.88578885788857,55.83167590438143],[-158.8749887498875,55.82829874984168],[-158.86058860588605,55.826610172571776],[-158.849788497885,55.821544440762125],[-158.84618846188462,55.81141297714285],[-158.86778867788678,55.8063472453332],[-158.8821888218882,55.8046586680633],[-158.89658896588966,55.81141297714285],[-158.90738907389073,55.8249215953019],[-158.90738907389073,55.84180736800073],[-158.89658896588966,55.86038171796943],[-158.90018900189003,55.87389033612851],[-158.85338853388532,55.89077610882734],[-158.82818828188283,55.897530417906864],[-158.79218792187922,55.89077610882734],[-158.7777877778778,55.88064464520804],[-158.75978759787597,55.86544744977908],[-158.74538745387454,55.86375887250921],[-158.7309873098731,55.85531598615978],[-158.71658716587166,55.843495945270604],[-158.70938709387093,55.83167590438143]]],[[[23.942039420394224,58.11294379599295],[23.93843938439386,58.13658387777133],[23.95643956439565,58.151781073200254],[23.985239852398536,58.156846805009906],[24.01404014040142,58.15346965047013],[24.02124021240212,58.129829568691775],[24.003240032400328,58.107878064183296],[23.97083970839708,58.0994351778339],[23.942039420394224,58.11294379599295]]],[[[18.714787147871476,59.20883044414683],[18.74358743587436,59.20714186687695],[18.75078750787509,59.20545328960705],[18.736387363873632,59.19701040325765],[18.6679866798668,59.17505889874917],[18.660786607866072,59.176747476019045],[18.664386643866436,59.18856751690825],[18.678786787867892,59.198698980527524],[18.689586895868956,59.20883044414683],[18.703987039870412,59.212207598686604],[18.714787147871476,59.20883044414683]]],[[[18.797587975879765,59.29494788491084],[18.804788047880493,59.293259307640966],[18.811988119881192,59.28988215310119],[18.808388083880857,59.283127844021664],[18.797587975879765,59.27806211221201],[18.790387903879036,59.27299638040236],[18.779587795877973,59.25948776224331],[18.77598775987761,59.257799184973436],[18.779587795877973,59.25442203043366],[18.77598775987761,59.252733453163785],[18.76878768787688,59.25104487589391],[18.765187651876516,59.25104487589391],[18.754387543875453,59.25611060770353],[18.74358743587436,59.25948776224331],[18.736387363873632,59.25948776224331],[18.732787327873297,59.257799184973436],[18.721987219872204,59.26286491678309],[18.72558725587257,59.27299638040236],[18.739987399873996,59.28481642129154],[18.757987579875817,59.29494788491084],[18.77598775987761,59.29832503945062],[18.790387903879036,59.29663646218074],[18.797587975879765,59.29494788491084]]],[[[155.5089550895509,59.328719430308496],[155.5341553415534,59.337162316657924],[155.56655566555668,59.34053947119767],[155.5989559895599,59.33547373938802],[155.5989559895599,59.31858796668919],[155.57015570155704,59.320276543959096],[155.5341553415534,59.31858796668919],[155.5089550895509,59.320276543959096],[155.5089550895509,59.328719430308496]]],[[[18.67518675186753,59.34053947119767],[18.664386643866436,59.3472937802772],[18.653586535865372,59.35404808935675],[18.64998649986501,59.3591138211664],[18.639186391863916,59.3675567075158],[18.646386463864644,59.372622439325454],[18.689586895868956,59.37093386205558],[18.689586895868956,59.37431101659533],[18.696786967869684,59.37431101659533],[18.707587075870777,59.37093386205558],[18.714787147871476,59.3675567075158],[18.732787327873297,59.35404808935675],[18.736387363873632,59.35235951208685],[18.739987399873996,59.350670934816975],[18.74358743587436,59.345605203007324],[18.747187471874724,59.33209658484827],[18.739987399873996,59.320276543959096],[18.72558725587257,59.31183365760967],[18.682386823868256,59.30001361672049],[18.678786787867892,59.30001361672049],[18.671586715867164,59.30339077126027],[18.67518675186753,59.31183365760967],[18.682386823868256,59.31352223487954],[18.685986859868592,59.31689938941932],[18.682386823868256,59.32196512122897],[18.682386823868256,59.33040800757837],[18.67518675186753,59.34053947119767]]],[[[18.10638106381066,59.38444248021463],[18.12438124381245,59.38950821202428],[18.235982359823595,59.372622439325454],[18.25038250382505,59.36586813024593],[18.23238232382326,59.364179552976026],[18.22518225182253,59.36586813024593],[18.203582035820375,59.36586813024593],[18.210782107821075,59.36249097570615],[18.221582215822167,59.35235951208685],[18.210782107821075,59.342228048467575],[18.18918189181892,59.3388508939278],[18.1639816398164,59.34053947119767],[18.13878138781388,59.3489823575471],[18.12438124381245,59.3574252438965],[18.117181171811723,59.364179552976026],[18.11358113581136,59.372622439325454],[18.10638106381066,59.377688171135105],[18.10638106381066,59.38444248021463]]],[[[18.855188551885533,59.40301683018333],[18.865988659886597,59.399639675643584],[18.86958869588696,59.39288536656403],[18.865988659886597,59.38950821202428],[18.855188551885533,59.386131057484505],[18.847988479884805,59.38950821202428],[18.847988479884805,59.39626252110381],[18.855188551885533,59.40301683018333]]],[[[18.941589415894157,59.39288536656403],[18.94518945189452,59.38950821202428],[18.948789487894885,59.37937674840498],[18.937989379893793,59.372622439325454],[18.919989199892,59.37937674840498],[18.909189091890937,59.38781963475441],[18.905589055890573,59.391196789294156],[18.898388983889845,59.39457394383393],[18.898388983889845,59.40132825291346],[18.909189091890937,59.40639398472311],[18.919989199892,59.40639398472311],[18.934389343893457,59.399639675643584],[18.941589415894157,59.39288536656403]]],[[[18.92718927189273,59.43341122104124],[18.909189091890937,59.418214025612286],[18.89478894788948,59.40639398472311],[18.873188731887325,59.408082561992984],[18.862388623886233,59.42496833469181],[18.873188731887325,59.440165530120765],[18.898388983889845,59.44523126193042],[18.912789127891273,59.44691983920029],[18.916389163891637,59.44691983920029],[18.923589235892365,59.44185410739064],[18.92718927189273,59.43341122104124]]],[[[24.514445144451457,59.59889179348974],[24.53244532445325,59.58369459806079],[24.55044550445504,59.55836593901256],[24.54324543245434,59.54823447539326],[24.51804518045182,59.54485732085348],[24.489244892448937,59.560054516282435],[24.485644856448573,59.57862886625114],[24.50004500045,59.595514638949965],[24.514445144451457,59.59889179348974]]],[[[18.97758977589777,59.63435191615727],[18.981189811898133,59.6326633388874],[18.984789847898497,59.62928618434762],[18.984789847898497,59.62422045253797],[18.981189811898133,59.62422045253797],[18.973989739897405,59.622531875268095],[18.966789667896677,59.61915472072832],[18.955989559895613,59.617466143458444],[18.937989379893793,59.61915472072832],[18.92718927189273,59.622531875268095],[18.912789127891273,59.59213748441019],[18.905589055890573,59.58369459806079],[18.89478894788948,59.582006020790914],[18.883988839888417,59.57862886625114],[18.862388623886233,59.58369459806079],[18.858788587885897,59.595514638949965],[18.86958869588696,59.60564610256927],[18.937989379893793,59.649549111586225],[18.95238952389525,59.652926266125974],[18.963189631896313,59.64786053431632],[18.97758977589777,59.63435191615727]]],[[[18.855188551885533,59.600580370759616],[18.829988299883013,59.59213748441019],[18.82638826388265,59.58876032987044],[18.82638826388265,59.58538317533066],[18.822788227882285,59.58369459806079],[18.815588155881557,59.58369459806079],[18.808388083880857,59.582006020790914],[18.783187831878337,59.573563134441486],[18.76878768787688,59.57187455717161],[18.757987579875817,59.57187455717161],[18.757987579875817,59.57525171171139],[18.77598775987761,59.58031744352101],[18.797587975879765,59.58876032987044],[18.815588155881557,59.60226894802949],[18.82638826388265,59.609023257109016],[18.865988659886597,59.6326633388874],[18.923589235892365,59.65630342066575],[18.923589235892365,59.64786053431632],[18.905589055890573,59.63435191615727],[18.858788587885897,59.60395752529939],[18.855188551885533,59.600580370759616]]],[[[18.99558995589956,59.809963952225075],[18.999189991899925,59.8082753749552],[19.00279002790029,59.804898220415424],[19.00279002790029,59.79983248860577],[18.999189991899925,59.79476675679612],[18.988389883898833,59.78970102498647],[18.97038970389704,59.78632387044672],[18.955989559895613,59.78632387044672],[18.941589415894157,59.78970102498647],[18.934389343893457,59.79307817952625],[18.930789307893093,59.78970102498647],[18.92718927189273,59.78632387044672],[18.916389163891637,59.788012447716596],[18.891188911889117,59.78632387044672],[18.883988839888417,59.79476675679612],[18.898388983889845,59.809963952225075],[18.941589415894157,59.84880122943238],[18.95238952389525,59.86062127032156],[18.959589595895977,59.86399842486131],[18.97038970389704,59.86230984759143],[18.97758977589777,59.85724411578178],[18.988389883898833,59.85048980670226],[18.99558995589956,59.83866976581308],[18.99558995589956,59.8268497249239],[18.991989919899197,59.813341106764824],[18.991989919899197,59.8082753749552],[18.99558995589956,59.8082753749552],[18.99558995589956,59.809963952225075]]],[[[20.874808748087474,59.91465574295779],[20.867608676086775,59.91803289749757],[20.860408604086047,59.92816436111687],[20.87120871208714,59.93660724746627],[20.885608856088567,59.93998440200605],[20.89640896408966,59.93998440200605],[20.907209072090723,59.93323009292649],[20.91440914409145,59.92141005203732],[20.92160921609218,59.90959001114814],[20.910809108091087,59.90452427933849],[20.88920889208893,59.90959001114814],[20.874808748087474,59.91465574295779]]],[[[20.982809828098283,59.943361556545796],[20.968409684096855,59.943361556545796],[20.968409684096855,59.94167297927592],[20.982809828098283,59.93660724746627],[20.99000990009901,59.92647578384697],[20.982809828098283,59.92141005203732],[20.932409324093243,59.93660724746627],[20.918009180091815,59.943361556545796],[20.91440914409145,59.94842728835545],[20.91440914409145,59.95011586562532],[20.92160921609218,59.9534930201651],[20.936009360093607,59.95855875197475],[20.97920979209792,59.951804442895224],[20.99000990009901,59.951804442895224],[20.99720997209974,59.95011586562532],[20.99720997209974,59.9450501338157],[20.982809828098283,59.943361556545796]]],[[[23.916839168391704,59.9737559474037],[23.924039240392403,59.96869021559405],[23.92043920439204,59.96700163832415],[23.92043920439204,59.96024732924462],[23.909639096390976,59.9534930201651],[23.89523895238952,59.9534930201651],[23.89523895238952,59.951804442895224],[23.89523895238952,59.95011586562532],[23.884438844388455,59.94842728835545],[23.870038700387,59.94673871108557],[23.85563855638557,59.9534930201651],[23.852038520385207,59.951804442895224],[23.848438484384843,59.95518159743497],[23.85563855638557,59.9636244837844],[23.870038700387,59.9720673701338],[23.891638916389184,59.97713310194345],[23.916839168391704,59.9737559474037]]],[[[29.792097920979216,59.99401887464228],[29.799297992979945,59.99064172010253],[29.799297992979945,59.98557598829288],[29.79569795697958,59.98388741102298],[29.792097920979216,59.978821679213326],[29.788497884978852,59.97544452467358],[29.734497344973448,59.99570745191215],[29.72729727297275,60.000773183721805],[29.716497164971656,60.005838915531456],[29.698496984969864,60.01090464734111],[29.658896588965888,60.02610184277006],[29.66969669696698,60.027790420039935],[29.712897128971292,60.02103611096041],[29.788497884978852,59.997396029182056],[29.792097920979216,59.99401887464228]]],[[[27.88407884078842,60.01090464734111],[27.891278912789147,60.00415033826158],[27.891278912789147,59.99570745191215],[27.873278732787327,59.99401887464228],[27.819278192781923,59.9821988337531],[27.804878048780495,59.98895314283263],[27.80127801278013,59.99908460645193],[27.80847808478086,60.00921607007123],[27.80847808478086,60.02103611096041],[27.819278192781923,60.03116757457971],[27.840878408784107,60.02610184277006],[27.869678696786963,60.014281801880884],[27.88407884078842,60.01090464734111]]],[[[27.023670236702372,60.04298761546889],[27.023670236702372,60.03792188365924],[27.027270272702737,60.02610184277006],[27.02007020070201,60.01765895642063],[27.009270092700945,60.014281801880884],[26.99486994869949,60.014281801880884],[26.984069840698425,60.01765895642063],[26.976869768697696,60.02610184277006],[26.966069660696604,60.04298761546889],[26.966069660696604,60.04636477000864],[26.96246962469627,60.059873388167716],[26.944469444694448,60.09195635629547],[26.951669516695176,60.09871066537502],[26.96246962469627,60.09871066537502],[26.976869768697696,60.08857920175572],[26.98766987669876,60.076759160866544],[26.998469984699852,60.06662769724724],[27.009270092700945,60.058184810897814],[27.016470164701644,60.04805334727854],[27.023670236702372,60.04298761546889]]],[[[22.95922959229594,60.1105307062642],[22.962829628296276,60.103776397184646],[22.962829628296276,60.09702208810512],[22.955629556295577,60.08857920175572],[22.94842948429485,60.085202047215944],[22.937629376293756,60.08351346994607],[22.930429304293057,60.085202047215944],[22.93402934029342,60.090267779025595],[22.926829268292693,60.090267779025595],[22.9160291602916,60.085202047215944],[22.89802898028981,60.081824892676195],[22.869228692286924,60.081824892676195],[22.862028620286196,60.081824892676195],[22.844028440284404,60.081824892676195],[22.844028440284404,60.085202047215944],[22.854828548285496,60.09195635629547],[22.86562865628656,60.1003992426449],[22.87282872828729,60.1105307062642],[22.880028800288017,60.11390786080395],[22.89082890828908,60.1189735926136],[22.9160291602916,60.125727901693125],[22.937629376293756,60.12403932442325],[22.94842948429485,60.1189735926136],[22.95922959229594,60.1105307062642]]],[[[21.990819908199086,60.130793633502776],[21.998019980199814,60.1291050562329],[22.012420124201242,60.12235074715338],[22.008820088200878,60.11559643807385],[21.98721987219872,60.112219283534074],[21.972819728197294,60.112219283534074],[21.94401944019441,60.11390786080395],[21.940419404194046,60.11559643807385],[21.929619296192982,60.12403932442325],[21.93681936819368,60.130793633502776],[21.951219512195138,60.13585936531243],[21.9620196201962,60.1375479425823],[21.976419764197658,60.130793633502776],[21.990819908199086,60.130793633502776]]],[[[20.684006840068406,60.130793633502776],[20.68760687606877,60.125727901693125],[20.68760687606877,60.117285015343725],[20.680406804068042,60.1105307062642],[20.673206732067314,60.1088421289943],[20.655206552065522,60.11559643807385],[20.63720637206373,60.130793633502776],[20.63720637206373,60.144302251661856],[20.644406444064458,60.14936798347148],[20.655206552065522,60.15105656074138],[20.658806588065886,60.14936798347148],[20.669606696066978,60.144302251661856],[20.680406804068042,60.13585936531243],[20.684006840068406,60.130793633502776]]],[[[18.72558725587257,60.19664814702821],[18.729187291872933,60.19664814702821],[18.729187291872933,60.20002530156796],[18.711187111871112,60.21184534245714],[18.71838718387184,60.21691107426679],[18.739987399873996,60.215222496996915],[18.754387543875453,60.20846818791739],[18.761587615876152,60.20340245610774],[18.765187651876516,60.19664814702821],[18.772387723877245,60.19158241521856],[18.783187831878337,60.18989383794869],[18.786787867878672,60.18482810613904],[18.786787867878672,60.17807379705951],[18.783187831878337,60.17638521978961],[18.783187831878337,60.174696642519734],[18.790387903879036,60.17638521978961],[18.7939879398794,60.17807379705951],[18.80118801188013,60.17638521978961],[18.804788047880493,60.16794233344021],[18.808388083880857,60.16118802436068],[18.783187831878337,60.152745138011255],[18.761587615876152,60.14936798347148],[18.736387363873632,60.152745138011255],[18.72558725587257,60.15612229255103],[18.721987219872204,60.16118802436068],[18.714787147871476,60.17300806524986],[18.714787147871476,60.183139528869134],[18.714787147871476,60.188205260678785],[18.71838718387184,60.19495956975834],[18.72558725587257,60.19664814702821]]],[[[20.684006840068406,60.228731115155966],[20.705607056070562,60.21859965153669],[20.716407164071654,60.20846818791739],[20.709207092070926,60.20002530156796],[20.68760687606877,60.19495956975834],[20.669606696066978,60.20002530156796],[20.66240662406625,60.20509103337761],[20.66240662406625,60.21691107426679],[20.669606696066978,60.22704253788609],[20.684006840068406,60.228731115155966]]],[[[21.983619836198358,60.2844541650621],[21.976419764197658,60.2844541650621],[21.972819728197294,60.286142742332004],[21.980019800198022,60.28951989687175],[21.998019980199814,60.29627420595128],[22.008820088200878,60.29796278322118],[22.005220052200542,60.29289705141153],[21.99441994419945,60.28783131960188],[21.983619836198358,60.2844541650621]]],[[[21.958419584195838,60.28107701052235],[21.94401944019441,60.277699855982576],[21.926019260192618,60.277699855982576],[21.908019080190797,60.27938843325245],[21.897218972189734,60.28951989687175],[21.88641886418864,60.28951989687175],[21.875618756187578,60.304717092300706],[21.87921879218794,60.30978282411036],[21.89361893618937,60.30978282411036],[21.908019080190797,60.30978282411036],[21.926019260192618,60.313159978650106],[21.958419584195838,60.31147140138023],[21.972819728197294,60.30978282411036],[21.976419764197658,60.30302851503083],[21.958419584195838,60.28107701052235]]],[[[28.712087120871217,60.2945856286814],[28.71568715687158,60.29289705141153],[28.72288722887231,60.28783131960188],[28.71568715687158,60.2844541650621],[28.70488704887049,60.27938843325245],[28.69768697686979,60.272634124172924],[28.69768697686979,60.264191237823525],[28.694086940869425,60.26081408328375],[28.67248672486727,60.264191237823525],[28.658086580865813,60.264191237823525],[28.64728647286475,60.2658798150934],[28.625686256862565,60.27094554690305],[28.568085680856825,60.29289705141153],[28.550085500855005,60.30302851503083],[28.542885428854305,60.31653713318988],[28.542885428854305,60.326668596809185],[28.54648546485467,60.33342290588871],[28.54648546485467,60.34186579223811],[28.542885428854305,60.34693152404776],[28.54648546485467,60.348620101317664],[28.557285572855733,60.34524294677789],[28.568085680856825,60.34355436950801],[28.575285752857525,60.348620101317664],[28.57888578885789,60.348620101317664],[28.586085860858617,60.340177214968236],[28.593285932859345,60.33848863769836],[28.60408604086041,60.340177214968236],[28.611286112861137,60.33680006042846],[28.62208622086223,60.33004575134893],[28.683286832868333,60.299651360491055],[28.712087120871217,60.2945856286814]]],[[[28.517685176851785,60.33848863769836],[28.52128521285215,60.33342290588871],[28.524885248852485,60.331734328618836],[28.524885248852485,60.32498001953928],[28.517685176851785,60.313159978650106],[28.50328503285033,60.31147140138023],[28.481684816848173,60.321602864999534],[28.47088470884711,60.33004575134893],[28.467284672846745,60.335111483158585],[28.460084600846017,60.33848863769836],[28.45288452884529,60.340177214968236],[28.442084420844225,60.34355436950801],[28.424084240842404,60.36044014220684],[28.42768427684277,60.36550587401649],[28.45288452884529,60.367194451286366],[28.46368463684638,60.36550587401649],[28.485284852848537,60.362128719476715],[28.50328503285033,60.35368583312729],[28.51408514085142,60.34693152404776],[28.51408514085142,60.34186579223811],[28.517685176851785,60.33848863769836]]],[[[20.777607776077758,60.326668596809185],[20.741607416074174,60.313159978650106],[20.734407344073446,60.31484855592001],[20.730807308073082,60.321602864999534],[20.730807308073082,60.32498001953928],[20.734407344073446,60.33342290588871],[20.734407344073446,60.33848863769836],[20.74520745207454,60.348620101317664],[20.74520745207454,60.35199725585741],[20.752407524075238,60.35537441039719],[20.756007560075602,60.36044014220684],[20.756007560075602,60.36550587401649],[20.76320763207633,60.367194451286366],[20.777607776077758,60.367194451286366],[20.78840788407885,60.362128719476715],[20.792007920079215,60.35199725585741],[20.78840788407885,60.34355436950801],[20.784807848078486,60.33342290588871],[20.777607776077758,60.326668596809185]]],[[[21.339213392133928,60.384080223985194],[21.353613536135356,60.370571605826115],[21.35721357213572,60.35875156493694],[21.353613536135356,60.35199725585741],[21.346413464134656,60.35368583312729],[21.339213392133928,60.35368583312729],[21.3320133201332,60.35537441039719],[21.335613356133564,60.36381729674659],[21.3320133201332,60.36550587401649],[21.3248132481325,60.367194451286366],[21.303213032130316,60.36381729674659],[21.296012960129616,60.370571605826115],[21.296012960129616,60.37732591490567],[21.303213032130316,60.384080223985194],[21.30681306813068,60.389145955794845],[21.321213212132136,60.39083453306472],[21.339213392133928,60.384080223985194]]],[[[26.60246602466026,60.446557582970854],[26.64566645666457,60.4313603875419],[26.6528665286653,60.42629465573225],[26.649266492664935,60.4212289239226],[26.634866348663508,60.41447461484307],[26.573665736657375,60.40603172849367],[26.559265592655947,60.397588842144245],[26.548465484654855,60.37901449217554],[26.537665376653763,60.37732591490567],[26.5268652686527,60.38576880125507],[26.508865088650907,60.402654573953896],[26.512465124651243,60.411097460303324],[26.559265592655947,60.41616319211295],[26.573665736657375,60.4212289239226],[26.580865808658103,60.427983233002124],[26.580865808658103,60.43473754208168],[26.584465844658467,60.4414918511612],[26.591665916659167,60.446557582970854],[26.60246602466026,60.446557582970854]]],[[[-169.80829808298083,63.06385235128903],[-169.79029790297903,63.05203231039985],[-169.7830978309783,63.043589424050424],[-169.77589775897758,63.035146537701024],[-169.8550985509855,63.089181010337256],[-169.88029880298802,63.10944393757586],[-169.93069930699306,63.13983832843374],[-169.9270992709927,63.138149751163866],[-169.86949869498696,63.106066783036084],[-169.80829808298083,63.06385235128903]]],[[[-170.2979029790298,63.23946438735683],[-170.369903699037,63.290121705453316],[-170.44910449104492,63.325581828120846],[-170.70830708307082,63.39481349618603],[-170.4851048510485,63.34415617808955],[-170.38070380703806,63.30194174634249],[-170.2979029790298,63.23946438735683]]],[[[35.94455944559445,64.4045827035759],[35.966159661596635,64.3944512399566],[36.0309603096031,64.37249973544812],[36.04536045360453,64.36067969455894],[36.03456034560347,64.34210534459024],[36.00576005760058,64.33366245824081],[35.973359733597334,64.33197388097093],[35.95175951759518,64.34041676732036],[35.897758977589774,64.37418831271799],[35.86895868958689,64.38094262179754],[35.858158581585826,64.38769693087707],[35.85455854558546,64.40289412630602],[35.883358833588346,64.4130255899253],[35.91935919359193,64.4130255899253],[35.94455944559445,64.4045827035759]]],[[[-169.08469084690847,65.81623330119783],[-169.06309063090632,65.828053342087],[-169.04149041490416,65.828053342087],[-168.99468994689946,65.81623330119783],[-169.0090900909009,65.79597037395925],[-169.0270902709027,65.77401886945077],[-169.05229052290522,65.75713309675194],[-169.07749077490774,65.75544451948204],[-169.09549095490954,65.7621988285616],[-169.0990909909099,65.77908460126042],[-169.0918909189092,65.799347528499],[-169.08469084690847,65.81623330119783]]],[[[12.875528755287547,66.28565778222523],[12.882728827288275,66.2772148958758],[12.88632886328864,66.25695196863722],[12.879128791287911,66.24344335047815],[12.868328683286848,66.2400661959384],[12.857528575285755,66.23331188685884],[12.846728467284692,66.22655757777932],[12.825128251282507,66.21642611416002],[12.81072810728108,66.22318042323957],[12.78552785527856,66.21811469142992],[12.760327603276039,66.22149184596967],[12.749527495274947,66.23331188685884],[12.742327423274247,66.24175477320827],[12.720727207272091,66.24344335047815],[12.706327063270635,66.24175477320827],[12.699126991269907,66.24344335047815],[12.706327063270635,66.25019765955767],[12.713527135271363,66.2586405459071],[12.738727387273883,66.27046058679628],[12.756727567275675,66.2772148958758],[12.792727927279287,66.2957892458445],[12.792727927279287,66.30085497765415],[12.796327963279651,66.3059207094638],[12.792727927279287,66.31098644127346],[12.799927999279987,66.31267501854333],[12.807128071280715,66.30423213219393],[12.81072810728108,66.2974778231144],[12.825128251282507,66.29916640038428],[12.828728287282871,66.2957892458445],[12.8359283592836,66.29410066857463],[12.839528395283963,66.29241209130475],[12.86112861128612,66.29241209130475],[12.868328683286848,66.29241209130475],[12.871928719287212,66.28903493676498],[12.875528755287547,66.28565778222523]]],[[[12.940329403294044,66.45958124102313],[12.9619296192962,66.45958124102313],[12.965529655296564,66.4528269319436],[12.954729547295472,66.432564004705],[12.947529475294772,66.40892392292665],[12.93672936729368,66.39372672749772],[12.929529295292951,66.38866099568807],[12.915129151291524,66.3954153047676],[12.907929079290795,66.39879245930737],[12.900729007290067,66.4055467683869],[12.900729007290067,66.4156782320062],[12.889928899289004,66.40892392292665],[12.88632886328864,66.40216961384712],[12.882728827288275,66.39034957295794],[12.882728827288275,66.3768409547989],[12.893528935289368,66.35995518210007],[12.900729007290067,66.35488945029041],[12.875528755287547,66.35826660483016],[12.868328683286848,66.36333233663981],[12.86112861128612,66.36670949117959],[12.846728467284692,66.37177522298924],[12.839528395283963,66.37008664571934],[12.832328323283235,66.37346380025912],[12.828728287282871,66.3768409547989],[12.817928179281807,66.38190668660854],[12.799927999279987,66.3852838411483],[12.81072810728108,66.38866099568807],[12.843128431284327,66.39879245930737],[12.850328503285027,66.40892392292665],[12.8359283592836,66.4241211183556],[12.825128251282507,66.43594115924478],[12.817928179281807,66.43762973651465],[12.817928179281807,66.4426954683243],[12.828728287282871,66.44776120013395],[12.88632886328864,66.45620408648338],[12.897128971289732,66.45620408648338],[12.900729007290067,66.4528269319436],[12.900729007290067,66.44607262286408],[12.907929079290795,66.4426954683243],[12.91152911529116,66.43762973651465],[12.91152911529116,66.43087542743513],[12.918729187291888,66.43087542743513],[12.929529295292951,66.4426954683243],[12.929529295292951,66.4528269319436],[12.929529295292951,66.45789266375326],[12.940329403294044,66.45958124102313]]],[[[32.387723877238784,67.13163499443644],[32.40932409324094,67.11981495354726],[32.405724057240576,67.10630633538821],[32.39492394923951,67.09955202630869],[32.36612366123663,67.11137206719786],[32.355323553235536,67.11306064446774],[32.34452344523447,67.11643779900751],[32.337323373233744,67.12488068535691],[32.34092340923411,67.13670072624609],[32.355323553235536,67.13838930351599],[32.37332373323733,67.13670072624609],[32.387723877238784,67.13163499443644]]],[[[15.16515165151651,67.9860550929971],[15.161551615516174,67.99280940207663],[15.15795157951581,67.99618655661638],[15.161551615516174,68.00125228842603],[15.172351723517238,68.00462944296581],[15.175951759517602,68.01138375204533],[15.19035190351903,68.01982663839476],[15.211952119521214,68.02489237020441],[15.222752227522278,68.03164667928394],[15.222752227522278,68.03671241109359],[15.229952299523006,68.03671241109359],[15.24075240752407,68.02826952474416],[15.25875258752589,68.00969517477546],[15.276752767527682,67.99618655661638],[15.287552875528775,67.97761220664768],[15.269552695526954,67.96748074302837],[15.18315183151833,67.96748074302837],[15.172351723517238,67.97423505210793],[15.16515165151651,67.9860550929971]]],[[[20.892808928089295,70.07989090765165],[20.860408604086047,70.06975944403234],[20.824408244082434,70.07313659857212],[20.806408064080642,70.07989090765165],[20.799207992079914,70.0933995258107],[20.792007920079215,70.11872818485895],[20.806408064080642,70.14067968936743],[20.831608316083162,70.1508111529867],[20.856808568085683,70.14574542117705],[20.91440914409145,70.10859672123965],[20.91440914409145,70.0950881030806],[20.892808928089295,70.07989090765165]]],[[[19.53919539195394,70.0933995258107],[19.4887948879489,70.0933995258107],[19.416794167941674,70.10353098943],[19.359193591935934,70.1136624530493],[19.344793447934478,70.11872818485895],[19.333993339933414,70.12717107120835],[19.341193411934114,70.14067968936743],[19.366393663936634,70.15418830752648],[19.409594095940975,70.16263119387588],[19.44559445594456,70.15587688479636],[19.553595535955367,70.12041676212883],[19.57159571595716,70.11197387577943],[19.567995679956795,70.10184241216012],[19.549995499955003,70.0950881030806],[19.53919539195394,70.0933995258107]]],[[[162.38142381423813,70.6810244157299],[162.40662406624068,70.6810244157299],[162.43542435424354,70.67258152938047],[162.48582485824858,70.65400717941176],[162.449824498245,70.65400717941176],[162.3490234902349,70.64049856125268],[162.23742237422374,70.65400717941176],[162.23742237422374,70.66076148849129],[162.2626226262263,70.66245006576116],[162.27342273422738,70.66076148849129],[162.28062280622805,70.66076148849129],[162.29142291422914,70.66582722030094],[162.29862298622987,70.66582722030094],[162.3058230582306,70.66076148849129],[162.34542345423455,70.66245006576116],[162.36342363423637,70.66582722030094],[162.3706237062371,70.66920437484072],[162.37782377823777,70.67933583845999],[162.38142381423813,70.6810244157299]]],[[[161.66141661416617,70.79078193827226],[161.6686166861669,70.78065047465296],[161.69021690216903,70.76038754741438],[161.6938169381694,70.75025608379508],[161.66501665016654,70.75194466106495],[161.639816398164,70.7570103928746],[161.57141571415713,70.78740478373248],[161.55341553415536,70.79078193827226],[161.5210152101521,70.79078193827226],[161.5066150661507,70.79415909281204],[161.47781477814777,70.80260197916144],[161.46341463414637,70.80429055643131],[161.47781477814777,70.80935628824096],[161.48861488614887,70.81779917459039],[161.48861488614887,70.82793063820966],[161.4850148501485,70.83975067909887],[161.53181531815318,70.84143925636874],[161.54621546215463,70.83975067909887],[161.55701557015573,70.83468494728922],[161.5750157501575,70.82286490640004],[161.58581585815858,70.81779917459039],[161.61101611016113,70.81611059732049],[161.63261632616326,70.81611059732049],[161.6578165781658,70.81273344278074],[161.67581675816757,70.79922482462166],[161.66141661416617,70.79078193827226]]],[[[82.13662136621366,75.14224556275997],[82.14742147421475,75.13380267641057],[82.15102151021512,75.12198263552139],[82.15102151021512,75.10847401736231],[82.15102151021512,75.09496539920326],[82.05742057420576,75.11860548098161],[82.02502025020249,75.12873694460092],[82.05022050220504,75.14562271729974],[82.08262082620826,75.15744275818892],[82.11502115021153,75.1591313354588],[82.13662136621366,75.14224556275997]]],[[[136.9759697596976,75.59140711654877],[136.96876968769686,75.59647284835842],[136.96876968769686,75.60153858016807],[136.96876968769686,75.60660431197772],[136.96876968769686,75.6082928892476],[136.96876968769686,75.60660431197772],[136.96876968769686,75.60322715743794],[136.97236972369723,75.60153858016807],[136.99036990369905,75.58802996200902],[137.05517055170554,75.57789849838971],[137.08037080370804,75.56776703477041],[137.05517055170554,75.56776703477041],[137.02637026370263,75.57114418931019],[136.99756997569978,75.57958707565959],[136.9759697596976,75.59140711654877]]],[[[30.069300693006937,79.00739893352147],[30.310503105031046,79.00739893352147],[30.317703177031774,79.0057103562516],[30.324903249032502,79.00233320171182],[30.335703357033566,78.99389031536242],[30.310503105031046,78.98544742901299],[30.274502745027462,78.98038169720334],[30.20610206102063,78.98038169720334],[30.220502205022058,78.97362738812382],[30.184501845018445,78.96687307904429],[30.13770137701377,78.96856165631417],[30.090900909009093,78.98207027447322],[30.069300693006937,79.00739893352147]]],[[[36.59256592565927,80.15900863158146],[36.653766537665376,80.17420582701041],[36.85536855368554,80.15225432250193],[36.82656826568265,80.14212285888263],[36.786967869678705,80.14043428161276],[36.70776707767078,80.1455000134224],[36.64656646566468,80.1455000134224],[36.61776617766179,80.15056574523206],[36.59256592565927,80.15900863158146]]],[[[148.2980829808298,-42.305057866661244],[148.31608316083162,-42.31518933028054],[148.32328323283235,-42.32363221662995],[148.33048330483308,-42.33545225751913],[148.34128341283412,-42.35402660748784],[148.33408334083344,-42.35740376202761],[148.33048330483308,-42.35740376202761],[148.319683196832,-42.35402660748784],[148.30528305283053,-42.345583721138425],[148.29448294482944,-42.33714083478902],[148.28008280082804,-42.328697948439604],[148.24768247682476,-42.32363221662995],[148.2440824408244,-42.3185664848203],[148.229682296823,-42.29999213485159],[148.24768247682476,-42.29492640304195],[148.26568265682658,-42.29661498031183],[148.2980829808298,-42.305057866661244]]],[[[146.62766627666275,-38.75566844536781],[146.63486634866348,-38.75397986809793],[146.6420664206642,-38.75229129082805],[146.6528665286653,-38.75397986809793],[146.66006660066603,-38.75566844536781],[146.65646656466566,-38.764111331717224],[146.6528665286653,-38.769177063526875],[146.64566645666457,-38.77086564079676],[146.58446584465844,-38.769177063526875],[146.5772657726577,-38.77255421806664],[146.56646566465668,-38.79112856803535],[146.55926559265595,-38.796194299845],[146.53766537665376,-38.79788287711488],[146.51606516065164,-38.789439990765466],[146.49446494464945,-38.77761994987629],[146.480064800648,-38.765799908987105],[146.47286472864732,-38.747225559018396],[146.4908649086491,-38.745536981748515],[146.5340653406534,-38.75566844536781],[146.58086580865807,-38.747225559018396],[146.60246602466026,-38.747225559018396],[146.62766627666275,-38.75566844536781]]],[[[136.4467644676447,-35.14886739689837],[136.46116461164615,-35.140424510548954],[136.47556475564755,-35.145490242358605],[136.48636486364865,-35.15731028324778],[136.49716497164974,-35.17250747867673],[136.49356493564937,-35.17926178775625],[136.48636486364865,-35.17250747867673],[136.46476464764646,-35.17250747867673],[136.4467644676447,-35.16913032413696],[136.43956439564397,-35.162376015057426],[136.4467644676447,-35.14886739689837]]],[[[137.36837368373688,-34.47174791167541],[137.37557375573755,-34.49876514799353],[137.36837368373688,-34.524093807041766],[137.35397353973542,-34.53760242520083],[137.34317343173433,-34.527470961581535],[137.3359733597336,-34.51565092069235],[137.34317343173433,-34.50045372526341],[137.36837368373688,-34.47174791167541]]],[[[134.54594545945463,-33.71188814022819],[134.549545495455,-33.73383964473667],[134.54234542345426,-33.740593953816195],[134.5279452794528,-33.740593953816195],[134.509945099451,-33.745659685625846],[134.49194491944922,-33.77605407648373],[134.47754477544777,-33.782808385563264],[134.47034470344704,-33.76761119013432],[134.48114481144813,-33.73721679927643],[134.4847448474485,-33.72877391292702],[134.4847448474485,-33.71695387203784],[134.4847448474485,-33.71188814022819],[134.49914499144995,-33.70513383114866],[134.5279452794528,-33.70006809933901],[134.5279452794528,-33.69837952206913],[134.5387453874539,-33.69669094479924],[134.54234542345426,-33.70006809933901],[134.54594545945463,-33.71188814022819]]],[[[133.56673566735668,-32.320500469844845],[133.5415354153542,-32.31205758349543],[133.5451354513545,-32.2951718107966],[133.55953559535595,-32.27490888355801],[133.58113581135814,-32.25971168812907],[133.5991359913599,-32.25126880177966],[133.62433624336245,-32.24451449270013],[133.64953649536494,-32.239448760890475],[133.6747367473675,-32.239448760890475],[133.6747367473675,-32.24620306997001],[133.62073620736209,-32.25971168812907],[133.6279362793628,-32.27490888355801],[133.63513635136354,-32.279974615367664],[133.62433624336245,-32.28504034717731],[133.61713617136172,-32.2951718107966],[133.61353613536136,-32.30361469714602],[133.609936099361,-32.30699185168579],[133.5991359913599,-32.30868042895567],[133.56673566735668,-32.320500469844845]]],[[[159.04419044190445,-31.518426266650565],[159.06939069390694,-31.520114843920446],[159.0837908379084,-31.535312039349392],[159.0945909459095,-31.55219781204822],[159.10539105391052,-31.567395007477167],[159.09819098190985,-31.579215048366343],[159.09099090990912,-31.58934651198564],[159.08019080190803,-31.5927236665254],[159.06579065790658,-31.587657934715757],[159.08019080190803,-31.575837893826574],[159.0837908379084,-31.558952121127753],[159.07659076590767,-31.540377771159044],[159.05859058590585,-31.52686915299998],[159.05139051390518,-31.53362346207951],[159.0477904779048,-31.52686915299998],[159.04419044190445,-31.518426266650565]]],[[[-177.90837908379083,-29.279372806786107],[-177.92637926379263,-29.284438538595758],[-177.92637926379263,-29.277684229516225],[-177.92637926379263,-29.26417561135716],[-177.92637926379263,-29.254044147737865],[-177.94437944379445,-29.240535529578807],[-177.95157951579515,-29.233781220499274],[-177.95877958779587,-29.221961179610098],[-177.94077940779408,-29.221961179610098],[-177.9227792277923,-29.22364975687998],[-177.90477904779047,-29.228715488689623],[-177.89037890378904,-29.233781220499274],[-177.87597875978759,-29.24222410684869],[-177.86517865178652,-29.250666993198102],[-177.84717847178473,-29.279372806786107],[-177.86157861578616,-29.270929920436693],[-177.87957879578795,-29.272618497706574],[-177.89037890378904,-29.279372806786107],[-177.89757897578977,-29.292881424945172],[-177.90837908379083,-29.279372806786107]]],[[[167.98307983079832,-29.01764332995429],[167.99747997479977,-29.026086216303703],[167.9938799387994,-29.04297198900253],[167.98667986679868,-29.05985776170136],[167.97227972279723,-29.066612070780884],[167.96867968679686,-29.068300648050773],[167.96867968679686,-29.071677802590536],[167.9650796507965,-29.0750549571303],[167.9650796507965,-29.08012068893995],[167.96147961479613,-29.064923493511003],[167.9506795067951,-29.05648060716159],[167.939879398794,-29.05648060716159],[167.93267932679328,-29.066612070780884],[167.92547925479255,-29.066612070780884],[167.92547925479255,-29.054792029891708],[167.92187921879218,-29.046349143542294],[167.91827918279182,-29.036217679923],[167.92187921879218,-29.029463370843466],[167.9290792907929,-29.01933190722417],[167.9290792907929,-29.012577598144638],[167.92547925479255,-29.009200443604875],[167.9110791107911,-29.010889020874757],[167.92547925479255,-28.9973804027157],[167.94707947079473,-29.00075755725546],[167.9650796507965,-29.012577598144638],[167.98307983079832,-29.01764332995429]]],[[[152.9637296372964,-25.2690017908147],[152.99252992529927,-25.304461913482236],[153.00693006930072,-25.32810199526059],[152.99252992529927,-25.33823345887989],[152.9637296372964,-25.299396181672584],[152.95292952929532,-25.279133254433994],[152.9637296372964,-25.2690017908147]]],[[[113.15093150931511,-24.92622060502851],[113.12933129331293,-24.956614995886397],[113.1221312213122,-24.973500768585225],[113.11853118531184,-24.995452273093697],[113.11853118531184,-24.985320809474402],[113.11493114931153,-24.976877923124988],[113.11493114931153,-24.968435036775574],[113.11133111331117,-24.96168072769605],[113.1329313293133,-24.802954464327073],[113.15093150931511,-24.75567430077036],[113.15813158131584,-24.77593722800895],[113.15813158131584,-24.80126588705719],[113.13653136531366,-24.892449059630856],[113.13653136531366,-24.917777718679098],[113.15093150931511,-24.92622060502851]]],[[[-147.72567725677257,-23.87254838862171],[-147.72567725677257,-23.864105502272295],[-147.70767707677078,-23.859039770462644],[-147.68967689676896,-23.853974038652993],[-147.64647646476465,-23.85228546138311],[-147.650076500765,-23.859039770462644],[-147.65727657276574,-23.864105502272295],[-147.6608766087661,-23.867482656812058],[-147.6680766807668,-23.87254838862171],[-147.70047700477005,-23.877614120431353],[-147.71127711277114,-23.877614120431353],[-147.72567725677257,-23.87254838862171]]],[[[151.37251372513725,-23.820202493255344],[151.38331383313835,-23.840465420493935],[151.3869138691387,-23.864105502272295],[151.38331383313835,-23.879302697701235],[151.36171361713616,-23.87254838862171],[151.3581135811358,-23.847219729573467],[151.35091350913513,-23.83202253414452],[151.32931329313294,-23.803316720556516],[151.3221132211322,-23.771233752428742],[151.3221132211322,-23.76954517515886],[151.32571325713258,-23.757725134269684],[151.3329133291333,-23.75097082519015],[151.34011340113403,-23.75097082519015],[151.3437134371344,-23.783053793317926],[151.35091350913513,-23.796562411476984],[151.37251372513725,-23.820202493255344]]],[[[-149.48249482494825,-23.35753232130748],[-149.45729457294573,-23.365975207656895],[-149.450094500945,-23.38117240308584],[-149.46449464494646,-23.396369598514788],[-149.50769507695077,-23.39974675305455],[-149.51849518495186,-23.3946810212449],[-149.52569525695256,-23.384549557625604],[-149.52569525695256,-23.367663784926776],[-149.52209522095222,-23.362598053117132],[-149.50769507695077,-23.359220898577362],[-149.48249482494825,-23.35753232130748]]],[[[-135.02115021150212,-23.117754348984143],[-134.99954999549996,-23.116065771714254],[-134.9671496714967,-23.09073711266602],[-134.9419494194942,-23.083982803586487],[-134.94914949149492,-23.097491421745545],[-134.9851498514985,-23.138017276222733],[-134.9959499594996,-23.136328698952852],[-135.0031500315003,-23.134640121682963],[-135.02115021150212,-23.124508658063668],[-135.02115021150212,-23.117754348984143]]],[[[-151.38691386913868,-22.422060513792466],[-151.37611376113762,-22.423749091062348],[-151.3689136891369,-22.43388055468165],[-151.3581135811358,-22.44738917284071],[-151.35451354513546,-22.455832059190122],[-151.3581135811358,-22.481160718238364],[-151.36171361713616,-22.508177954556487],[-151.3689136891369,-22.51324368636613],[-151.37251372513725,-22.51493226363602],[-151.37611376113762,-22.51493226363602],[-151.37971379713798,-22.487915027317896],[-151.39051390513904,-22.464274945539536],[-151.39771397713977,-22.442323441031057],[-151.38691386913868,-22.422060513792466]]],[[[149.72729727297275,-22.341008804838097],[149.73449734497348,-22.339320227568216],[149.74529745297457,-22.34607453664775],[149.7668976689767,-22.364648886616457],[149.7560975609756,-22.36802604115622],[149.75249752497524,-22.376468927505634],[149.7560975609756,-22.38660039112493],[149.75249752497524,-22.398420432014113],[149.7308973089731,-22.428814822872],[149.72369723697238,-22.440634863761176],[149.7128971289713,-22.428814822872],[149.70929709297093,-22.425437668332236],[149.71649716497166,-22.415306204712934],[149.71649716497166,-22.40517474109364],[149.71649716497166,-22.395043277474343],[149.70929709297093,-22.384911813855048],[149.71649716497166,-22.374780350235753],[149.72369723697238,-22.351140268457392],[149.72729727297275,-22.341008804838097]]],[[[-157.93537935379354,-21.87833863289024],[-157.9209792097921,-21.881715787430004],[-157.91017910179102,-21.8918472510493],[-157.88857888578886,-21.91548733282766],[-157.88857888578886,-21.925618796446955],[-157.89937899378992,-21.93406168279637],[-157.91377913779138,-21.93743883733613],[-157.9281792817928,-21.939127414606013],[-157.94257942579426,-21.93743883733613],[-157.95337953379533,-21.932373105526487],[-157.96057960579606,-21.923930219177073],[-157.96777967779678,-21.91211017828789],[-157.96417964179642,-21.900290137398713],[-157.95337953379533,-21.888470096509536],[-157.94617946179463,-21.880027210160122],[-157.93537935379354,-21.87833863289024]]],[[[150.29250292502928,-21.741563874029744],[150.31770317703177,-21.73480956495021],[150.32850328503287,-21.73480956495021],[150.33930339303396,-21.741563874029744],[150.3681036810368,-21.726366678600797],[150.35730357303572,-21.743252451299625],[150.350103501035,-21.760138223998453],[150.34290342903432,-21.77195826488763],[150.32850328503287,-21.768581110347867],[150.29250292502928,-21.74831818310927],[150.29250292502928,-21.741563874029744]]],[[[-140.6732067320673,-21.658823587805486],[-140.65160651606516,-21.64700354691631],[-140.63360633606337,-21.660512165075367],[-140.60480604806048,-21.706103751362207],[-140.630006300063,-21.721300946791146],[-140.6588065880659,-21.712858060441732],[-140.67680676806768,-21.68921797866338],[-140.6732067320673,-21.658823587805486]]],[[[150.29970299703,-21.679086515044084],[150.29970299703,-21.677397937774195],[150.29610296102965,-21.675709360504314],[150.29610296102965,-21.674020783234432],[150.29250292502928,-21.67233220596455],[150.28890288902892,-21.680775092313965],[150.28530285302855,-21.684152246853728],[150.2817028170282,-21.682463669583846],[150.27450274502746,-21.679086515044084],[150.26370263702637,-21.67064362869467],[150.25650256502564,-21.66895505142478],[150.24930249302497,-21.67064362869467],[150.2457024570246,-21.679086515044084],[150.24210242102424,-21.67064362869467],[150.24210242102424,-21.663889319615137],[150.2457024570246,-21.657135010535605],[150.25290252902528,-21.65206927872596],[150.24930249302497,-21.643626392376547],[150.24930249302497,-21.638560660566895],[150.2457024570246,-21.62336346513795],[150.25290252902528,-21.62336346513795],[150.26370263702637,-21.638560660566895],[150.28890288902892,-21.64869212418619],[150.30690306903068,-21.660512165075367],[150.29970299703,-21.679086515044084]]],[[[149.09369093690935,-20.41771929444171],[149.09369093690935,-20.4379822216803],[149.09729097290972,-20.45317941710924],[149.10449104491045,-20.464999457998417],[149.11529115291154,-20.48019665342737],[149.09369093690935,-20.485262385237007],[149.08289082890832,-20.50045958066596],[149.07209072090723,-20.5156567760949],[149.0540905409054,-20.527476816984077],[149.04689046890468,-20.524099662444314],[149.0432904329043,-20.51734535336479],[149.039690396904,-20.508902467015375],[149.039690396904,-20.50045958066596],[149.04689046890468,-20.49370527158642],[149.06129061290613,-20.49370527158642],[149.07209072090723,-20.49032811704666],[149.08289082890832,-20.471753767077956],[149.08649086490868,-20.45486799437913],[149.08649086490868,-20.4379822216803],[149.09369093690935,-20.41771929444171]]],[[[148.44928449284492,-19.965180586113135],[148.47448474484747,-19.98375493608185],[148.4816848168482,-20.004017863320442],[148.47808478084784,-20.027657945098795],[148.4708847088471,-20.0479208723374],[148.46368463684638,-20.04285514052775],[148.46008460084602,-20.04285514052775],[148.45648456484565,-20.04285514052775],[148.44928449284492,-20.04116656325786],[148.44928449284492,-20.010772172399967],[148.44928449284492,-19.995574976971028],[148.44568445684456,-19.98544351335174],[148.44928449284492,-19.965180586113135]]],[[[-157.70857708577086,-19.767617045536866],[-157.70857708577086,-19.787879972775457],[-157.70857708577086,-19.81658578636346],[-157.70857708577086,-19.841914445411703],[-157.7229772297723,-19.85542306357077],[-157.7229772297723,-19.841914445411703],[-157.72657726577265,-19.831782981792415],[-157.73377733777338,-19.826717249982764],[-157.7409774097741,-19.81827436363335],[-157.7409774097741,-19.804765745474285],[-157.73737737377374,-19.79632285912487],[-157.71577715777158,-19.772682777346517],[-157.70857708577086,-19.767617045536866]]],[[[-178.97038970389704,-18.965542842342586],[-178.97038970389704,-18.941902760564233],[-178.95958959589595,-18.928394142405168],[-178.94518945189452,-18.92670556513528],[-178.93078930789306,-18.943591337834107],[-178.93078930789306,-18.970608574152237],[-178.94518945189452,-18.987494346851065],[-178.9631896318963,-18.987494346851065],[-178.97038970389704,-18.965542842342586]]],[[[139.0891908919089,-16.827804018671088],[139.10719107191073,-16.821049709591563],[139.13239132391323,-16.81260682324215],[139.1539915399154,-16.81260682324215],[139.15759157591577,-16.827804018671088],[139.14679146791468,-16.834558327750614],[139.1215912159122,-16.836246905020502],[139.11799117991183,-16.844689791369916],[139.11439114391146,-16.85819840952898],[139.10719107191073,-16.863264141338618],[139.09999099991,-16.859886986798855],[139.09639096390964,-16.84806694590968],[139.09639096390964,-16.839624059560265],[139.09639096390964,-16.834558327750614],[139.09639096390964,-16.829492595940977],[139.0891908919089,-16.827804018671088]]],[[[-151.00531005310052,-16.76870381422519],[-151.00171001710018,-16.760260927875777],[-150.99450994509945,-16.761949505145665],[-150.98370983709836,-16.76870381422519],[-150.98010980109802,-16.780523855114367],[-150.98010980109802,-16.787278164193907],[-150.98010980109802,-16.800786782352958],[-150.98370983709836,-16.809229668702372],[-150.99450994509945,-16.807541091432498],[-150.99450994509945,-16.814295400512023],[-150.99810998109982,-16.817672555051786],[-151.00531005310052,-16.821049709591563],[-151.01251012510124,-16.821049709591563],[-151.03051030510306,-16.80585251416261],[-151.03771037710376,-16.799098205083084],[-151.04131041310413,-16.79065531873367],[-151.0341103411034,-16.777146700574605],[-151.02331023310234,-16.772080968764953],[-151.01251012510124,-16.772080968764953],[-151.00531005310052,-16.76870381422519]]],[[[-151.0269102691027,-16.70791503250942],[-151.00891008910088,-16.739998000637186],[-151.00891008910088,-16.745063732446837],[-151.0161101611016,-16.7484408869866],[-151.02331023310234,-16.755195196066126],[-151.0341103411034,-16.761949505145665],[-151.04851048510486,-16.765326659685428],[-151.05211052110522,-16.75350661879625],[-151.05571055710556,-16.741686577907075],[-151.05211052110522,-16.729866537017898],[-151.04131041310413,-16.70622645523953],[-151.0341103411034,-16.694406414350354],[-151.03051030510306,-16.692717837080465],[-151.0269102691027,-16.70791503250942]]],[[[-151.77931779317794,-16.47826852380537],[-151.76491764917648,-16.471514214725843],[-151.75411754117542,-16.48333425561502],[-151.7469174691747,-16.50359718285361],[-151.7469174691747,-16.52554868736209],[-151.76131761317612,-16.52554868736209],[-151.77571775717757,-16.512040069203024],[-151.7829178291783,-16.493465719234308],[-151.77931779317794,-16.47826852380537]]],[[[-146.38646386463864,-16.10847010170106],[-146.35766357663576,-16.100027215351645],[-146.3360633606336,-16.11353583351071],[-146.32886328863287,-16.137175915289063],[-146.33966339663397,-16.162504574337305],[-146.36846368463685,-16.159127419797542],[-146.390063900639,-16.147307378908366],[-146.4008640086401,-16.130421606209538],[-146.38646386463864,-16.10847010170106]]],[[[124.41904419044192,-15.254050003140406],[124.42264422644229,-15.245607116790993],[124.43344433444338,-15.247295694060881],[124.44424444244441,-15.252361425870532],[124.45144451444514,-15.264181466759709],[124.44784447844478,-15.274312930379011],[124.43704437044374,-15.2844443939983],[124.43344433444338,-15.292887280347713],[124.44424444244441,-15.299641589427239],[124.43344433444338,-15.308084475776653],[124.41904419044192,-15.306395898506779],[124.40824408244083,-15.301330166697127],[124.39744397443974,-15.299641589427239],[124.39384393843937,-15.303018743967016],[124.39024390243901,-15.309773053046541],[124.3866438664387,-15.314838784856192],[124.37584375843761,-15.319904516665844],[124.37224372243725,-15.316527362126067],[124.34344343443433,-15.306395898506779],[124.33624336243366,-15.299641589427239],[124.33624336243366,-15.296264434887476],[124.33624336243366,-15.291198703077825],[124.38304383043834,-15.281067239458537],[124.40824408244083,-15.272624353109123],[124.41904419044192,-15.254050003140406]]],[[[124.92664926649269,-14.973746176339887],[124.92304923049232,-14.983877639959175],[124.92664926649269,-14.990631949038715],[124.93384933849342,-14.995697680848366],[124.93744937449378,-14.99738625811824],[124.94104941049409,-15.014272030817068],[124.93744937449378,-15.026092071706245],[124.92664926649269,-15.029469226246007],[124.91224912249123,-15.01764918535683],[124.90864908649087,-15.01258345354718],[124.90144901449014,-14.995697680848366],[124.89784897848978,-14.990631949038715],[124.89064890648905,-14.990631949038715],[124.87624876248765,-14.992320526308589],[124.86904869048692,-14.990631949038715],[124.86544865448656,-14.972057599069998],[124.87264872648728,-14.956860403641059],[124.88704887048874,-14.953483249101296],[124.9050490504905,-14.970369021800124],[124.90864908649087,-14.960237558180822],[124.91224912249123,-14.951794671831408],[124.9158491584916,-14.943351785481994],[124.92304923049232,-14.936597476402468],[124.93024930249305,-14.943351785481994],[124.93024930249305,-14.95517182637117],[124.93384933849342,-14.965303289990473],[124.92664926649269,-14.973746176339887]]],[[[135.76635766357663,-14.867365808337269],[135.76275762757626,-14.889317312845748],[135.76275762757626,-14.901137353734924],[135.74835748357486,-14.897760199195162],[135.72675726757268,-14.896071621925287],[135.70515705157055,-14.912957394624101],[135.6907569075691,-14.909580240084338],[135.68715687156873,-14.902825931004813],[135.69795697956982,-14.894383044655399],[135.70515705157055,-14.887628735575873],[135.7159571595716,-14.87918584922646],[135.71955719557195,-14.867365808337269],[135.71955719557195,-14.860611499257743],[135.70875708757086,-14.858922921987855],[135.70875708757086,-14.853857190178218],[135.7159571595716,-14.85048003563844],[135.71955719557195,-14.840348572019153],[135.72675726757268,-14.835282840209501],[135.74835748357486,-14.838659994749264],[135.7591575915759,-14.85048003563844],[135.76635766357663,-14.867365808337269]]],[[[136.8067680676807,-13.818759323740125],[136.8067680676807,-13.813693591930473],[136.81036810368107,-13.808627860120822],[136.81396813968144,-13.80525070558106],[136.81756817568174,-13.801873551041297],[136.81036810368107,-13.808627860120822],[136.81036810368107,-13.813693591930473],[136.8067680676807,-13.818759323740125]]],[[[96.90396903969042,-12.19941372192261],[96.89316893168933,-12.196036567382848],[96.88956889568897,-12.192659412843085],[96.88956889568897,-12.187593681033434],[96.90036900369006,-12.187593681033434],[96.90756907569079,-12.182527949223783],[96.91476914769146,-12.174085062874369],[96.91476914769146,-12.162265021985192],[96.92196921969219,-12.174085062874369],[96.92196921969219,-12.184216526493671],[96.91476914769146,-12.19434799011296],[96.90396903969042,-12.19941372192261]]],[[[136.81756817568174,-12.076147581221178],[136.8211682116821,-12.084590467570592],[136.82476824768247,-12.104853394809183],[136.8211682116821,-12.120050590238122],[136.82836828368283,-12.131870631127299],[136.8211682116821,-12.138624940206839],[136.81396813968144,-12.13693636293695],[136.8067680676807,-12.126804899317648],[136.79596795967961,-12.108230549348946],[136.79956799567998,-12.084590467570592],[136.81756817568174,-12.076147581221178]]],[[[132.38592385923863,-12.071081849411527],[132.41112411124112,-12.082901890300704],[132.4147241472415,-12.109919126618834],[132.40752407524076,-12.133559208397187],[132.38592385923863,-12.133559208397187],[132.3391233912339,-12.098099085729643],[132.34632346323463,-12.086279044840467],[132.35712357123572,-12.077836158491053],[132.37512375123754,-12.072770426681402],[132.38592385923863,-12.071081849411527]]],[[[136.46476464764646,-11.893781236073849],[136.4719647196472,-11.868452577025607],[136.4719647196472,-11.839746763437603],[136.47916479164792,-11.814418104389361],[136.49716497164974,-11.797532331690533],[136.49716497164974,-11.816106681659235],[136.47916479164792,-11.86507542248583],[136.47916479164792,-11.875206886105133],[136.48276482764828,-11.881961195184658],[136.48276482764828,-11.888715504264198],[136.47916479164792,-11.900535545153375],[136.4719647196472,-11.905601276963026],[136.46836468364683,-11.9072898542329],[136.46476464764646,-11.902224122423249],[136.46476464764646,-11.893781236073849]]],[[[136.60516605166055,-11.745186436324161],[136.61956619566195,-11.735054972704873],[136.6231662316623,-11.736743549974747],[136.6231662316623,-11.745186436324161],[136.61596615966158,-11.757006477213338],[136.59436594365945,-11.773892249912166],[136.58716587165873,-11.784023713531468],[136.579965799658,-11.797532331690533],[136.56196561965623,-11.794155177150756],[136.52956529565296,-11.799220908960407],[136.51876518765187,-11.790778022610994],[136.52956529565296,-11.777269404451943],[136.5367653676537,-11.773892249912166],[136.55836558365587,-11.777269404451943],[136.5691656916569,-11.773892249912166],[136.58356583565836,-11.763760786292877],[136.60516605166055,-11.745186436324161]]],[[[159.8037980379804,-11.290959150725712],[159.82179821798218,-11.2926477279956],[159.839798397984,-11.297713459805252],[159.8505985059851,-11.30784492342454],[159.85419854198545,-11.324730696123368],[159.8289982899829,-11.31459923250408],[159.81099810998109,-11.311222077964317],[159.79299792997932,-11.302779191614903],[159.77859778597787,-11.284204841646186],[159.7857978579786,-11.282516264376312],[159.79299792997932,-11.284204841646186],[159.7965979659797,-11.285893418916075],[159.8037980379804,-11.290959150725712]]],[[[142.26082260822608,-10.578379542835222],[142.29322293222936,-10.57331381102557],[142.31842318423185,-10.58851100645451],[142.32562325623257,-10.612151088232878],[142.3040230402304,-10.632414015471468],[142.27522275222753,-10.640856901820882],[142.25362253622535,-10.625659706391929],[142.24642246422468,-10.600331047343701],[142.26082260822608,-10.578379542835222]]],[[[161.74061740617407,-10.272747056986447],[161.74421744217443,-10.262615593367158],[161.74061740617407,-10.259238438827396],[161.73341733417334,-10.257549861557507],[161.72981729817297,-10.255861284287619],[161.71901719017194,-10.232221202509265],[161.71541715417158,-10.2187125843502],[161.72981729817297,-10.206892543461024],[161.75141751417516,-10.223778316159851],[161.76941769417698,-10.252484129747856],[161.76941769417698,-10.277812788796098],[161.7478174781748,-10.289632829685274],[161.74061740617407,-10.2879442524154],[161.7370173701737,-10.284567097875637],[161.7370173701737,-10.279501366065986],[161.74061740617407,-10.272747056986447]]],[[[123.46503465034652,-10.149480916285015],[123.47223472234725,-10.16298953444408],[123.50463504635047,-10.171432420793494],[123.50463504635047,-10.186629616222433],[123.49383493834938,-10.19844965711161],[123.4578345783458,-10.215335429810438],[123.45063450634507,-10.223778316159851],[123.4470344703447,-10.23897551158879],[123.43623436234361,-10.242352666128568],[123.42183421834221,-10.235598357049028],[123.41103411034112,-10.220401161620089],[123.39663396633966,-10.227155470699614],[123.41823418234185,-10.272747056986447],[123.42543425434258,-10.299764293304577],[123.41103411034112,-10.309895756923865],[123.41823418234185,-10.325092952352819],[123.41463414634148,-10.331847261432344],[123.40383403834039,-10.335224415972107],[123.38943389433894,-10.33015868416247],[123.38583385833857,-10.325092952352819],[123.3786337863379,-10.311584334193753],[123.36783367833681,-10.301452870574451],[123.36063360633608,-10.306518602384102],[123.35343353433535,-10.321715797813056],[123.3390333903339,-10.336912993241995],[123.32103321033213,-10.338601570511884],[123.3138331383314,-10.313272911463642],[123.3138331383314,-10.284567097875637],[123.32103321033213,-10.26768132517681],[123.33183331833317,-10.254172707017744],[123.35703357033572,-10.233909779779154],[123.37143371433717,-10.217024007080326],[123.38943389433894,-10.174809575333256],[123.40383403834039,-10.157923802634429],[123.41823418234185,-10.149480916285015],[123.43983439834398,-10.1410380299356],[123.4578345783458,-10.139349452665712],[123.46503465034652,-10.149480916285015]]],[[[167.1730717307173,-9.886062862183309],[167.16587165871658,-9.86917708948448],[167.16947169471695,-9.859045625865193],[167.18027180271804,-9.860734203135067],[167.19107191071913,-9.872554244024258],[167.1946719467195,-9.886062862183309],[167.1946719467195,-9.894505748532723],[167.1838718387184,-9.894505748532723],[167.1730717307173,-9.886062862183309]]],[[[167.09027090270905,-9.803322575959058],[167.1046710467105,-9.801633998689184],[167.10827108271081,-9.805011153228946],[167.1046710467105,-9.80669973049882],[167.09027090270905,-9.803322575959058]]],[[[159.8289982899829,-9.17179467702293],[159.81459814598145,-9.16672894521328],[159.80739807398078,-9.149843172514451],[159.8037980379804,-9.12958024527586],[159.81099810998109,-9.111005895307159],[159.8181981819818,-9.10931731803727],[159.82179821798218,-9.10931731803727],[159.8289982899829,-9.10931731803727],[159.83259832598327,-9.104251586227619],[159.839798397984,-9.122825936196335],[159.84339843398436,-9.144777440704814],[159.84339843398436,-9.165040367943405],[159.8289982899829,-9.17179467702293]]],[[[-157.9389793897939,-8.980985445526187],[-157.96057960579606,-8.980985445526187],[-157.97857978579785,-8.975919713716536],[-157.99657996579967,-8.96409967282736],[-158.00738007380073,-8.952279631938183],[-158.00378003780037,-8.947213900128531],[-157.9389793897939,-8.974231136446662],[-157.9389793897939,-8.980985445526187]]],[[[160.07740077400774,-9.023199877273257],[160.06660066600665,-9.013068413653954],[160.06660066600665,-9.002936950034666],[160.07380073800738,-8.99111690914549],[160.07740077400774,-8.977608290986424],[160.07380073800738,-8.950591054668294],[160.07740077400774,-8.943836745588769],[160.0918009180092,-8.940459591049006],[160.10980109801102,-8.960722518287596],[160.11340113401133,-8.974231136446662],[160.11340113401133,-8.994494063685252],[160.09900099000993,-8.987739754605713],[160.0918009180092,-8.996182640955126],[160.07740077400774,-9.023199877273257]]],[[[162.73782737827378,-8.388294823797366],[162.73062730627305,-8.378163360178064],[162.7342273422734,-8.373097628368413],[162.7450274502745,-8.374786205638301],[162.7558275582756,-8.378163360178064],[162.7558275582756,-8.383229091987715],[162.74862748627487,-8.38491766925759],[162.7450274502745,-8.386606246527478],[162.73782737827378,-8.388294823797366]]],[[[156.81216812168122,-8.055645101630475],[156.8157681576816,-8.072530874329289],[156.82296822968232,-8.069153719789526],[156.84096840968408,-8.113056728806484],[156.8157681576816,-8.111368151536595],[156.78696786967873,-8.086039492488354],[156.79056790567904,-8.055645101630475],[156.81216812168122,-8.055645101630475]]],[[[-140.6912069120691,-8.01511924715328],[-140.69840698406983,-8.028627865312345],[-140.70920709207093,-8.040447906201521],[-140.71640716407165,-8.040447906201521],[-140.72720727207272,-8.028627865312345],[-140.72720727207272,-7.991479165374926],[-140.70560705607056,-7.962773351786922],[-140.6732067320673,-7.950953310897745],[-140.6372063720637,-7.959396197247159],[-140.65160651606516,-7.971216238136336],[-140.6588065880659,-7.97290481540621],[-140.67680676806768,-7.976281969945987],[-140.6840068400684,-7.984724856295401],[-140.6912069120691,-8.01511924715328]]],[[[177.15237152371526,-7.19784784853006],[177.15237152371526,-7.194470693990297],[177.1487714877149,-7.19109353945052],[177.1487714877149,-7.1877163849107575],[177.15237152371526,-7.194470693990297],[177.15237152371526,-7.199536425799934],[177.15237152371526,-7.19784784853006]]],[[[52.74232742327425,-6.993529998874251],[52.74592745927461,-7.005350039763428],[52.74232742327425,-7.003661462493554],[52.74232742327425,-7.001972885223665],[52.74232742327425,-6.998595730683903],[52.74232742327425,-6.993529998874251]]],[[[71.3509135091351,-6.652437390357946],[71.36171361713619,-6.652437390357946],[71.35451354513546,-6.655814544897709],[71.3509135091351,-6.655814544897709],[71.3509135091351,-6.654125967627834],[71.3509135091351,-6.652437390357946]]],[[[71.26091260912611,-6.38901933625624],[71.26091260912611,-6.377199295367063],[71.26091260912611,-6.373822140827301],[71.26811268112681,-6.370444986287538],[71.26811268112681,-6.378887872636952],[71.26811268112681,-6.3822650271767145],[71.26451264512647,-6.385642181716477],[71.26091260912611,-6.38901933625624]]],[[[176.31356313563134,-6.3029018954922265],[176.32076320763207,-6.289393277333161],[176.32436324363243,-6.289393277333161],[176.32076320763207,-6.2944590091428125],[176.31356313563134,-6.3029018954922265]]],[[[71.34011340113403,-6.196521527489622],[71.34371343713437,-6.1880786411402084],[71.34731347313473,-6.183012909330557],[71.35451354513546,-6.177947177520906],[71.36171361713619,-6.177947177520906],[71.35811358113583,-6.1880786411402084],[71.3509135091351,-6.199898682029385],[71.34371343713437,-6.204964413839036],[71.34011340113403,-6.196521527489622]]],[[[177.34317343173433,-6.120535550344897],[177.33957339573396,-6.113781241265372],[177.33957339573396,-6.110404086725595],[177.3359733597336,-6.10871550945572],[177.35037350373506,-6.110404086725595],[177.35757357573578,-6.113781241265372],[177.35757357573578,-6.118846973075009],[177.34317343173433,-6.120535550344897]]],[[[55.38115381153813,-5.853740341703428],[55.38115381153813,-5.865560382592605],[55.38115381153813,-5.868937537132368],[55.38115381153813,-5.865560382592605],[55.38115381153813,-5.853740341703428]]],[[[104.83124831248313,-5.759180014590001],[104.84564845648458,-5.772688632749066],[104.84924849248495,-5.782820096368354],[104.84564845648458,-5.811525909956359],[104.83844838448385,-5.819968796305773],[104.82044820448203,-5.811525909956359],[104.79164791647918,-5.7878858281780055],[104.77724777247772,-5.771000055479178],[104.770047700477,-5.760868591859875],[104.770047700477,-5.752425705510461],[104.77724777247772,-5.740605664621285],[104.78804788047881,-5.742294241891173],[104.809648096481,-5.75411428278035],[104.82764827648276,-5.7574914373201125],[104.83124831248313,-5.759180014590001]]],[[[176.13356133561336,-5.693325501064578],[176.12636126361264,-5.679816882905513],[176.129961299613,-5.678128305635624],[176.1407614076141,-5.686571191985038],[176.14796147961482,-5.706834119223629],[176.13356133561336,-5.693325501064578]]],[[[71.77211772117721,-5.4400389105821745],[71.76491764917651,-5.433284601502635],[71.76131761317615,-5.4315960242327606],[71.77211772117721,-5.433284601502635],[71.77571775717757,-5.434973178772523],[71.77571775717757,-5.438350333312286],[71.77211772117721,-5.4400389105821745]]],[[[72.22212222122221,-5.328592810769905],[72.22932229322294,-5.318461347150617],[72.22932229322294,-5.325215656230142],[72.22572225722257,-5.326904233500031],[72.22212222122221,-5.326904233500031],[72.22212222122221,-5.328592810769905]]],[[[71.73611736117363,-5.284689801752961],[71.74691746917469,-5.269492606324022],[71.74691746917469,-5.277935492673436],[71.74331743317435,-5.283001224483073],[71.73971739717399,-5.284689801752961],[71.73611736117363,-5.284689801752961]]],[[[71.76131761317615,-5.23740963819624],[71.76851768517687,-5.2340324836564776],[71.76491764917651,-5.239098215466129],[71.76131761317615,-5.23740963819624]]],[[[71.96651966519667,-5.2340324836564776],[71.9629196291963,-5.232343906386603],[71.9629196291963,-5.230655329116715],[71.9629196291963,-5.227278174576952],[71.96651966519667,-5.227278174576952],[71.96651966519667,-5.228966751846826],[71.96651966519667,-5.232343906386603],[71.96651966519667,-5.2340324836564776]]],[[[149.12249122491227,-4.882808411520884],[149.129691296913,-4.877742679711233],[149.16929169291694,-4.862545484282279],[149.18009180091804,-4.879431256981107],[149.17649176491767,-4.8946284524100605],[149.1548915489155,-4.923334265998065],[149.1440914409144,-4.918268534188414],[149.129691296913,-4.908137070569111],[149.1188911889119,-4.898005606949823],[149.12249122491227,-4.882808411520884]]],[[[146.2028620286203,-4.825396784344861],[146.20646206462067,-4.808511011646033],[146.2136621366214,-4.795002393486982],[146.22446224462243,-4.786559507137568],[146.24246242462425,-4.786559507137568],[146.2568625686257,-4.808511011646033],[146.26406264062643,-4.820331052535224],[146.26406264062643,-4.835528247964163],[146.2568625686257,-4.8321510934244],[146.24966249662498,-4.827085361614749],[146.24966249662498,-4.8321510934244],[146.24966249662498,-4.833839670694275],[146.24966249662498,-4.835528247964163],[146.24246242462425,-4.835528247964163],[146.24606246062461,-4.852414020662991],[146.23166231662316,-4.854102597932865],[146.2136621366214,-4.8422825570436885],[146.2028620286203,-4.825396784344861]]],[[[131.73431734317342,-4.693687757294015],[131.74871748717487,-4.710573529992843],[131.7559175591756,-4.735902189041084],[131.74871748717487,-4.759542270819438],[131.73791737917378,-4.766296579898977],[131.7307173071731,-4.7544765390097865],[131.72351723517238,-4.732525034501322],[131.72711727117274,-4.70719637545308],[131.73431734317342,-4.693687757294015]]],[[[131.60471604716048,-4.430269703192309],[131.6119161191612,-4.425203971382672],[131.61911619116194,-4.425203971382672],[131.62631626316266,-4.426892548652546],[131.63351633516334,-4.430269703192309],[131.6479164791648,-4.452221207700788],[131.66951669516698,-4.489369907638206],[131.68031680316807,-4.5248300303057505],[131.66231662316625,-4.534961493925039],[131.65511655116552,-4.5248300303057505],[131.61551615516157,-4.4420897440815],[131.60471604716048,-4.430269703192309]]],[[[131.36711367113674,-4.122948640073659],[131.3851138511385,-4.139834412772487],[131.39231392313923,-4.153343030931552],[131.3851138511385,-4.156720185471315],[131.35271352713528,-4.133080103692961],[131.3059130591306,-4.114505753724245],[131.2951129511295,-4.109440021914608],[131.28791287912878,-4.099308558295306],[131.28431284312842,-4.089177094676003],[131.28071280712805,-4.079045631056715],[131.28071280712805,-4.073979899247064],[131.28071280712805,-4.070602744707301],[131.28431284312842,-4.06553701289765],[131.28791287912878,-4.063848435627776],[131.2951129511295,-4.063848435627776],[131.29871298712987,-4.06553701289765],[131.3059130591306,-4.075668476516952],[131.3167131671317,-4.087488517406129],[131.36711367113674,-4.122948640073659]]],[[[131.23391233912338,-3.9878624584830504],[131.2411124111241,-3.991239613022813],[131.24471244712447,-3.9963053448324644],[131.24831248312483,-4.00305965391199],[131.24831248312483,-4.0098139629915295],[131.2519125191252,-4.031765467499994],[131.24831248312483,-4.041896931119297],[131.2411124111241,-4.046962662928948],[131.2267122671227,-4.038519776579534],[131.21591215912161,-4.018256849340929],[131.21231212312125,-3.9963053448324644],[131.2087120871209,-3.9794195721336365],[131.23391233912338,-3.9878624584830504]]],[[[128.7966879668797,-3.643392695426982],[128.7966879668797,-3.651835581776396],[128.80028800288005,-3.6619670453956843],[128.80388803888042,-3.668721354475224],[128.81108811088114,-3.677164240824638],[128.7966879668797,-3.6940500135234515],[128.77868778687787,-3.7024928998728655],[128.7606876068761,-3.6991157453331027],[128.749887498875,-3.6839185499041633],[128.74628746287465,-3.66027846812581],[128.75708757087574,-3.643392695426982],[128.7750877508775,-3.6366383863474425],[128.7966879668797,-3.643392695426982]]],[[[153.19053190531906,-3.471157813898941],[153.22293222932228,-3.4475177321205877],[153.23373233732337,-3.444140577580825],[153.2517325173252,-3.4677806593591782],[153.25893258932592,-3.4829778547881176],[153.25893258932592,-3.498175050217071],[153.2517325173252,-3.4947978956772943],[153.24813248132483,-3.4964864729471827],[153.24813248132483,-3.498175050217071],[153.23373233732337,-3.488043586597769],[153.20493204932052,-3.4779121229784664],[153.19053190531906,-3.471157813898941]]],[[[153.30213302133023,-3.3681546004360996],[153.32733327333273,-3.3681546004360996],[153.34173341733418,-3.378286064055388],[153.3489334893349,-3.3951718367542156],[153.34173341733418,-3.415434763992806],[153.3309333093331,-3.3985489912939926],[153.31293312933133,-3.396860414024104],[153.28773287732878,-3.4019261458337553],[153.26613266132665,-3.4036147231036296],[153.27333273332732,-3.391794682214453],[153.28053280532805,-3.3816632185951647],[153.30213302133023,-3.3681546004360996]]],[[[154.64134641346413,-3.2617742324334813],[154.66654666546668,-3.309054395990202],[154.71694716947172,-3.3934832594843414],[154.73854738547385,-3.4424520003109365],[154.73134731347312,-3.4610263502796386],[154.70254702547027,-3.4036147231036296],[154.68454684546845,-3.3495802504673833],[154.6449464494645,-3.2972343551010255],[154.61254612546128,-3.2415113051948907],[154.5549455494555,-3.2060511825273608],[154.59454594545946,-3.211116914337012],[154.62694626946268,-3.2263141097659513],[154.64134641346413,-3.2617742324334813]]],[[[131.60111601116012,-2.635312065307005],[131.62631626316266,-2.6201148698780656],[131.64071640716406,-2.613360560798526],[131.65511655116552,-2.613360560798526],[131.64431644316443,-2.6285577562274796],[131.6227162271623,-2.643754951656419],[131.59751597515975,-2.6538864152757213],[131.579515795158,-2.6555749925455956],[131.57231572315726,-2.6505092607359444],[131.579515795158,-2.6454435289263074],[131.60111601116012,-2.635312065307005]]],[[[176.78516785167852,-2.608294828988889],[176.81396813968144,-2.6150491380684144],[176.83916839168393,-2.6336234880371165],[176.84996849968502,-2.6538864152757213],[176.83916839168393,-2.6623293016251353],[176.82836828368283,-2.6555749925455956],[176.77076770767707,-2.608294828988889],[176.7779677796778,-2.604917674449112],[176.78156781567816,-2.604917674449112],[176.78516785167852,-2.608294828988889]]],[[[151.9809198091981,-2.6623293016251353],[151.95931959319597,-2.652197838005833],[151.95931959319597,-2.626869178957591],[151.97731977319773,-2.603229097179238],[151.99891998919992,-2.594786210829824],[152.01692016920168,-2.603229097179238],[152.02772027720277,-2.618426292608177],[152.03852038520387,-2.635312065307005],[152.03852038520387,-2.6420663743865305],[152.0349203492035,-2.6454435289263074],[152.03132031320314,-2.652197838005833],[152.02772027720277,-2.6589521470853583],[152.01692016920168,-2.6623293016251353],[151.9809198091981,-2.6623293016251353]]],[[[175.98235982359824,-2.5052916155260334],[175.97515975159752,-2.498537306446508],[175.97155971559715,-2.490094420097094],[175.97875978759788,-2.4934715746368568],[175.9859598595986,-2.498537306446508],[175.98955989559897,-2.503603038256159],[175.99315993159934,-2.5103573473356846],[175.98955989559897,-2.5103573473356846],[175.9859598595986,-2.5103573473356846],[175.9859598595986,-2.5086687700658103],[175.98235982359824,-2.5052916155260334]]],[[[175.58995589955902,-1.873763716589906],[175.6007560075601,-1.895715221098385],[175.58635586355865,-1.922732457416501],[175.5827558275583,-1.9109124165273244],[175.58635586355865,-1.8703865620501432],[175.57555575555756,-1.856877943891078],[175.5575555755558,-1.8315492848428363],[175.55395553955543,-1.8197292439536596],[175.5611556115561,-1.8264835530331993],[175.58995589955902,-1.873763716589906]]],[[[175.0571505715057,-1.4364222036902845],[175.0679506795068,-1.4617508627385263],[175.0679506795068,-1.4972109854060704],[175.06075060750607,-1.5309825308037261],[175.03915039150394,-1.552934035312191],[175.0139501395014,-1.5495568807724283],[175.00675006750066,-1.5276053762639492],[175.02115021150212,-1.5005881399458332],[175.04635046350467,-1.4837023672470053],[175.04635046350467,-1.4904566763265308],[175.03555035550357,-1.4972109854060704],[175.02475024750248,-1.5073424490253586],[175.01755017550175,-1.5191624899145353],[175.01755017550175,-1.5326711080736004],[175.02835028350285,-1.5411139944230143],[175.03915039150394,-1.5360482626133631],[175.04635046350467,-1.5242282217241865],[175.04995049950503,-1.517473912644661],[175.0571505715057,-1.5073424490253586],[175.0571505715057,-1.4803252127072426],[175.0535505355054,-1.4533079763891124],[175.03915039150394,-1.4364222036902845],[175.04635046350467,-1.429667894610759],[175.04635046350467,-1.4330450491505218],[175.04995049950503,-1.4347336264204102],[175.0571505715057,-1.4364222036902845]]],[[[176.4107641076411,-1.3334189902274431],[176.4251642516425,-1.3469276083865083],[176.44316443164433,-1.3739448447046243],[176.4575645756458,-1.4060278128324057],[176.46476464764646,-1.4364222036902845],[176.45036450364506,-1.4246021628011079],[176.44316443164433,-1.4094049673721685],[176.4359643596436,-1.3908306174034522],[176.42876428764288,-1.3739448447046243],[176.4107641076411,-1.350304762926271],[176.39996399964002,-1.3367961447672059],[176.39636396363966,-1.319910372068378],[176.4035640356404,-1.319910372068378],[176.40716407164075,-1.323287526608155],[176.4107641076411,-1.3334189902274431]]],[[[176.0075600756008,-1.3334189902274431],[176.0219602196022,-1.3621248038154476],[176.01836018360183,-1.3874534628636894],[176.01116011160116,-1.380699153784164],[176.00396003960043,-1.3756334219745128],[175.98235982359824,-1.3671905356250988],[175.98235982359824,-1.3604362265455734],[175.99315993159934,-1.3621248038154476],[176.01836018360183,-1.3739448447046243],[176.01476014760146,-1.3570590720057965],[176.0075600756008,-1.341861876576857],[175.98235982359824,-1.319910372068378],[175.96435964359642,-1.2945817130201505],[175.95715957159575,-1.2861388266707365],[175.9427594275943,-1.284450249400848],[175.9427594275943,-1.2895159812104993],[175.94635946359466,-1.292893135750262],[175.94995949959502,-1.2979588675599132],[175.93555935559357,-1.292893135750262],[175.9427594275943,-1.284450249400848],[175.95715957159575,-1.2793845175911969],[175.97875978759788,-1.284450249400848],[175.98955989559897,-1.3064017539093271],[176.0075600756008,-1.3334189902274431]]],[[[73.16173161731618,-0.6816281640527251],[73.17253172531727,-0.6883824731322505],[73.16533165331654,-0.6883824731322505],[73.16533165331654,-0.6866938958623763],[73.16173161731618,-0.6816281640527251]]],[[[73.20493204932049,-0.6714967004334227],[73.20133201332015,-0.6748738549731996],[73.19773197731979,-0.6782510095129624],[73.19773197731979,-0.6816281640527251],[73.19053190531906,-0.6833167413226136],[73.19053190531906,-0.6765624322430739],[73.19413194131943,-0.6748738549731996],[73.20493204932049,-0.6714967004334227]]],[[[73.1257312573126,-0.6562995050044833],[73.1257312573126,-0.6664309686237857],[73.12213122131223,-0.6647423913538972],[73.12213122131223,-0.6630538140840088],[73.12213122131223,-0.659676659544246],[73.1257312573126,-0.6562995050044833]]],[[[73.2409324093241,-0.6259051141465903],[73.22653226532267,-0.6427908868454182],[73.22653226532267,-0.63265942322613],[73.23013230132301,-0.6225279596068276],[73.23373233732337,-0.6191508050670649],[73.2409324093241,-0.6259051141465903]]],[[[73.24813248132483,-0.5887564142091719],[73.24453244532447,-0.6073307641778882],[73.23733237332374,-0.6005764550983486],[73.23733237332374,-0.5921335687489346],[73.23733237332374,-0.5836906823995207],[73.24813248132483,-0.5786249505898837],[73.24813248132483,-0.580313527859758],[73.24813248132483,-0.5836906823995207],[73.24813248132483,-0.5853792596694092],[73.24813248132483,-0.5887564142091719]]],[[[73.43533435334353,-0.28312392836041056],[73.44253442534426,-0.29325539197969874],[73.44613446134463,-0.29832112378934994],[73.44613446134463,-0.3050754328688754],[73.4389343893439,-0.29832112378934994],[73.43533435334353,-0.29325539197969874],[73.43533435334353,-0.28818966017006176],[73.43533435334353,-0.28312392836041056]]],[[[122.21582215822161,-0.2476638056928664],[122.21942219422198,-0.24935238296275486],[122.23382233822338,-0.2577952693121688],[122.23742237422374,-0.26454957839169424],[122.23742237422374,-0.27299246474110817],[122.23022230222301,-0.27468104201099663],[122.22302223022234,-0.26961531020134544],[122.21582215822161,-0.26454957839169424],[122.21222212222125,-0.26454957839169424],[122.20142201422016,-0.26792673293145697],[122.16542165421657,-0.24935238296275486],[122.14742147421475,-0.24428665115310366],[122.14382143821439,-0.232466610263927],[122.15822158221584,-0.21051510575544796],[122.17622176221761,-0.19700648759638284],[122.19062190621906,-0.20544937394579676],[122.17622176221761,-0.23077803299403854],[122.19062190621906,-0.23077803299403854],[122.20142201422016,-0.232466610263927],[122.21222212222125,-0.2375323420735782],[122.21582215822161,-0.2476638056928664]]],[[[173.62073620736209,0.13395465730062028],[173.609936099361,0.1423975436500342],[173.61353613536136,0.15590616180909933],[173.63513635136354,0.17448051177780144],[173.6387363873639,0.19474343901639202],[173.63513635136354,0.20149774809593168],[173.62433624336245,0.20825205717545714],[173.60633606336063,0.21669494352487106],[173.6279362793628,0.21838352079475953],[173.63513635136354,0.21669494352487106],[173.64233642336427,0.20825205717545714],[173.64233642336427,0.19980917082604321],[173.64233642336427,0.1913662844766293],[173.6387363873639,0.1761690890476899],[173.62073620736209,0.13395465730062028]]],[[[73.09693096930971,0.22851498441404772],[73.10053100531007,0.225137829874285],[73.10413104131041,0.22344925260439652],[73.10413104131041,0.2200720980646338],[73.10413104131041,0.21331778898510834],[73.10053100531007,0.21669494352487106],[73.09693096930971,0.21838352079475953],[73.09693096930971,0.2200720980646338],[73.09693096930971,0.22344925260439652],[73.09693096930971,0.22851498441404772]]],[[[73.20853208532085,0.24033502530322437],[73.21573215732158,0.23695787076346164],[73.21213212132122,0.23189213895381044],[73.20853208532085,0.23526929349358738],[73.20853208532085,0.24033502530322437]]],[[[73.03573035730358,0.27072941616111734],[73.03573035730358,0.2690408388912289],[73.03933039330394,0.2589093752719407],[73.03573035730358,0.26059795254181495],[73.03573035730358,0.2622865298117034],[73.03573035730358,0.2639751070815919],[73.03573035730358,0.26566368435146615],[73.03573035730358,0.27072941616111734]]],[[[73.3777337773378,0.2859266115900567],[73.37053370533707,0.27917230251053127],[73.37053370533707,0.2859266115900567],[73.37413374133743,0.2876151888599452],[73.3777337773378,0.2859266115900567]]],[[[72.98532985329854,0.30450096155877304],[72.98532985329854,0.3028123842888846],[72.9889298892989,0.3028123842888846],[72.9889298892989,0.3011238070190103],[72.98532985329854,0.29943522974912185],[72.98172981729817,0.3028123842888846],[72.98532985329854,0.30450096155877304]]],[[[104.40644406444068,0.33827250695642874],[104.41724417244171,0.32814104333712635],[104.42084420844208,0.31800957971783816],[104.42084420844208,0.3061895388286615],[104.41004410044104,0.29436949793947065],[104.40644406444068,0.2926809206695964],[104.39924399243995,0.29436949793947065],[104.39564395643959,0.3011238070190103],[104.39204392043922,0.3163210024479497],[104.38844388443886,0.3196981569877124],[104.38124381243813,0.3196981569877124],[104.3740437404374,0.3247638887973636],[104.34524345243454,0.3602240114649078],[104.33804338043382,0.3652897432745448],[104.34164341643418,0.36697832054443325],[104.34884348843491,0.370355475084196],[104.35244352443527,0.37204405235408444],[104.359643596436,0.3686668978143217],[104.37764377643776,0.3551582796552566],[104.40644406444068,0.33827250695642874]]],[[[73.51453514535146,0.3872412477830238],[73.50733507335073,0.38048693870349837],[73.50733507335073,0.38555267051313535],[73.50733507335073,0.3872412477830238],[73.5109351093511,0.3872412477830238],[73.51453514535146,0.3872412477830238]]],[[[72.96012960129602,0.4041270204818517],[72.96012960129602,0.4024384432119632],[72.96012960129602,0.3939955568625493],[72.95652956529565,0.3973727114023262],[72.95652956529565,0.3990612886722005],[72.95652956529565,0.40074986594208895],[72.96012960129602,0.4041270204818517]]],[[[173.83313833138334,0.44803002949879556],[173.8907389073891,0.4176356386409168],[173.9159391593916,0.3990612886722005],[173.92313923139233,0.38048693870349837],[173.86913869138692,0.41932421591079105],[173.83313833138334,0.4362099886096189],[173.80433804338043,0.43452141133974465],[173.8079380793808,0.4412757204192701],[173.81153811538115,0.4463414522289213],[173.81873818738188,0.4514071840385725],[173.8259382593826,0.4547843385783352],[173.83313833138334,0.44803002949879556]]],[[[72.94212942129423,0.49699877032540485],[72.94212942129423,0.48686730670610245],[72.93852938529386,0.49193303851575365],[72.93852938529386,0.4936216157856279],[72.94212942129423,0.49699877032540485]]],[[[73.4929349293493,0.5088188112145815],[73.4929349293493,0.507130233944693],[73.4929349293493,0.4986873475952791],[73.48933489334894,0.5003759248651676],[73.48933489334894,0.5020645021350418],[73.48933489334894,0.5054416566748188],[73.4929349293493,0.5088188112145815]]],[[[73.38853388533886,0.6422164155353158],[73.38853388533886,0.6388392609955531],[73.38853388533886,0.6371506837256646],[73.3849338493385,0.6354621064557762],[73.3849338493385,0.6388392609955531],[73.3849338493385,0.6405278382654274],[73.38853388533886,0.6422164155353158]]],[[[104.21564215642155,0.7080709290607388],[104.2408424084241,0.6945623109016736],[104.26964269642696,0.6742993836630831],[104.28764287642878,0.6506593018847298],[104.27684276842768,0.625330642836488],[104.26604266042659,0.6337735291859019],[104.25884258842592,0.6439049928051901],[104.25164251642519,0.6675450745835576],[104.22284222842228,0.6962508881715621],[104.21564215642155,0.7080709290607388]]],[[[73.37413374133743,0.7637939789668593],[73.37413374133743,0.7604168244270966],[73.37413374133743,0.7587282471572223],[73.37053370533707,0.7570396698873338],[73.37053370533707,0.7604168244270966],[73.37053370533707,0.762105401696985],[73.37413374133743,0.7637939789668593]]],[[[172.9907299072991,0.8347142243019334],[172.9907299072991,0.8296484924922964],[172.9907299072991,0.827959915222408],[172.9907299072991,0.8245827606826452],[172.98712987129875,0.8296484924922964],[172.98352983529838,0.8313370697621707],[172.98712987129875,0.8330256470320592],[172.9907299072991,0.8330256470320592],[172.9907299072991,0.8347142243019334]]],[[[172.98352983529838,0.8313370697621707],[172.97992979929802,0.8313370697621707],[172.97632976329766,0.8313370697621707],[172.9727297272973,0.8347142243019334],[172.96912969129693,0.8397799561115846],[172.97632976329766,0.8397799561115846],[172.97632976329766,0.8364028015718219],[172.97992979929802,0.8347142243019334],[172.98352983529838,0.8313370697621707]]],[[[73.35253352533528,0.8482228424609985],[73.35253352533528,0.8448456879212358],[73.35253352533528,0.8431571106513474],[73.35253352533528,0.8414685333814731],[73.34893348933491,0.8448456879212358],[73.35253352533528,0.8465342651911243],[73.35253352533528,0.8482228424609985]]],[[[172.98352983529838,1.5304080594936096],[172.97992979929802,1.5304080594936096],[172.97632976329766,1.5337852140333723],[172.9727297272973,1.5354737913032608],[172.96912969129693,1.537162368573135],[172.9619296192962,1.5608024503515026],[172.95832958329584,1.6097711911780976],[172.94752947529474,1.6266569638769255],[172.9619296192962,1.6199026547974],[172.9727297272973,1.589508263939507],[172.98352983529838,1.5304080594936096]]],[[[72.83052830528305,3.5111091970660198],[72.83412834128342,3.507732042526257],[72.83412834128342,3.5060434652563686],[72.83052830528305,3.50435488798648],[72.82692826928269,3.5060434652563686],[72.83052830528305,3.507732042526257],[72.83052830528305,3.5111091970660198]]],[[[72.79452794527947,3.516174928875671],[72.79452794527947,3.5144863516057825],[72.79812798127983,3.512797774335894],[72.79812798127983,3.5111091970660198],[72.7909279092791,3.5111091970660198],[72.7909279092791,3.512797774335894],[72.79452794527947,3.5144863516057825],[72.79452794527947,3.516174928875671]]],[[[72.92772927729277,3.551635051543201],[72.91332913329134,3.5415035879238985],[72.9169291692917,3.548257897003438],[72.92052920529207,3.551635051543201],[72.92412924129243,3.551635051543201],[72.92772927729277,3.551635051543201]]],[[[72.94212942129423,3.6191781423385123],[72.94212942129423,3.6158009877987496],[72.94572945729459,3.6158009877987496],[72.94572945729459,3.614112410528861],[72.94212942129423,3.6124238332589726],[72.93852938529386,3.614112410528861],[72.93852938529386,3.6158009877987496],[72.94212942129423,3.6158009877987496],[72.94212942129423,3.6191781423385123]]],[[[72.69372693726939,3.727247087611005],[72.69372693726939,3.723869933071242],[72.69732697326975,3.720492778531465],[72.69732697326975,3.718804201261591],[72.69372693726939,3.715427046721828],[72.69372693726939,3.7171156239917025],[72.69012690126902,3.718804201261591],[72.69012690126902,3.720492778531465],[72.69012690126902,3.723869933071242],[72.69372693726939,3.727247087611005]]],[[[73.47853478534788,3.9416964008861015],[73.47133471334715,3.934942091806576],[73.46773467734678,3.9332535145366876],[73.46773467734678,3.9366306690764503],[73.47133471334715,3.938319246346339],[73.47853478534788,3.9416964008861015]]],[[[72.70452704527045,4.0024851826018875],[72.70452704527045,4.000796605331999],[72.70452704527045,3.9991080280621105],[72.70812708127082,3.9974194507922363],[72.70452704527045,3.995730873522348],[72.70092700927009,3.9974194507922363],[72.70092700927009,3.9991080280621105],[72.69732697326975,3.9991080280621105],[72.70092700927009,4.000796605331999],[72.70452704527045,4.0024851826018875]]],[[[73.50733507335073,4.10379981879484],[73.50733507335073,4.093668355175552],[73.5037350373504,4.097045509715315],[73.5037350373504,4.098734086985189],[73.5037350373504,4.100422664255078],[73.5037350373504,4.102111241524966],[73.50733507335073,4.10379981879484]]],[[[72.97092970929711,4.265903236703579],[72.97092970929711,4.264214659433705],[72.97452974529747,4.2625260821638165],[72.97452974529747,4.260837504893928],[72.97092970929711,4.260837504893928],[72.97092970929711,4.264214659433705],[72.97092970929711,4.265903236703579]]],[[[73.70173701737019,4.434760963691858],[73.70173701737019,4.433072386421969],[73.69813698136983,4.431383809152081],[73.70173701737019,4.434760963691858]]],[[[73.70173701737019,4.45333531366056],[73.69813698136983,4.449958159120797],[73.70173701737019,4.4516467363906855],[73.70173701737019,4.45333531366056]]],[[[73.3777337773378,4.47359824089915],[73.3777337773378,4.465155354549736],[73.37413374133743,4.466843931819625],[73.37413374133743,4.468532509089513],[73.37413374133743,4.471909663629276],[73.3777337773378,4.47359824089915]]],[[[168.68508685086852,4.573224299822229],[168.73548735487356,4.590110072521057],[168.74268742687428,4.598552958870471],[168.76788767887678,4.628947349728364],[168.75708757087574,4.60530726795001],[168.74268742687428,4.58504434071142],[168.71748717487174,4.5749128770921175],[168.68508685086852,4.573224299822229]]],[[[73.40653406534065,4.635701658807889],[73.40653406534065,4.634013081538015],[73.40653406534065,4.6323245042681265],[73.40653406534065,4.630635926998252],[73.40653406534065,4.628947349728364],[73.40293402934032,4.627258772458475],[73.40293402934032,4.630635926998252],[73.40293402934032,4.6323245042681265],[73.40653406534065,4.635701658807889]]],[[[73.48933489334894,4.723507676841791],[73.48933489334894,4.7201305223020285],[73.48933489334894,4.71844194503214],[73.48933489334894,4.716753367762266],[73.48573485734858,4.71844194503214],[73.48573485734858,4.7201305223020285],[73.48933489334894,4.721819099571917],[73.48933489334894,4.723507676841791]]],[[[72.97812978129781,4.895742558369832],[72.97092970929711,4.880545362940879],[72.97092970929711,4.890676826560181],[72.97092970929711,4.894053981099944],[72.97452974529747,4.895742558369832],[72.97812978129781,4.895742558369832]]],[[[72.9169291692917,4.899119712909595],[72.92412924129243,4.899119712909595],[72.92052920529207,4.897431135639707],[72.9169291692917,4.899119712909595]]],[[[73.44613446134463,4.971728535514558],[73.43533435334353,4.970039958244669],[73.4389343893439,4.9751056900543205],[73.44253442534426,4.9751056900543205],[73.44253442534426,4.973417112784432],[73.44613446134463,4.971728535514558]]],[[[72.91332913329134,5.034205894500218],[72.90972909729098,5.030828739960441],[72.90972909729098,5.0325173172303295],[72.91332913329134,5.034205894500218]]],[[[72.92772927729277,5.035894471770092],[72.92772927729277,5.034205894500218],[72.92412924129243,5.034205894500218],[72.92412924129243,5.0325173172303295],[72.92772927729277,5.035894471770092]]],[[[73.04653046530467,5.122011912534106],[73.0429304293043,5.118634757994343],[73.04653046530467,5.122011912534106],[73.04653046530467,5.122011912534106]]],[[[73.05013050130503,5.133831953423297],[73.05013050130503,5.13045479888352],[73.05013050130503,5.128766221613645],[73.05013050130503,5.127077644343757],[73.04653046530467,5.127077644343757],[73.04653046530467,5.128766221613645],[73.04653046530467,5.13045479888352],[73.05013050130503,5.133831953423297]]],[[[73.08973089730898,5.160849189741413],[73.08973089730898,5.159160612471524],[73.08613086130862,5.15747203520165],[73.08973089730898,5.160849189741413]]],[[[73.10413104131041,5.172669230630589],[73.10773107731077,5.170980653360715],[73.11133111331114,5.170980653360715],[73.10773107731077,5.170980653360715],[73.10413104131041,5.172669230630589]]],[[[72.85932859328594,5.238523744156012],[72.85932859328594,5.2351465896162495],[72.85572855728557,5.2351465896162495],[72.85932859328594,5.238523744156012]]],[[[73.1329313293133,5.245278053235552],[73.1329313293133,5.241900898695789],[73.12933129331293,5.241900898695789],[73.1329313293133,5.245278053235552]]],[[[73.50013500135003,5.246966630505426],[73.49653496534967,5.245278053235552],[73.4929349293493,5.245278053235552],[73.50013500135003,5.246966630505426]]],[[[73.59373593735938,5.28242675317297],[73.58293582935829,5.275672444093431],[73.57933579335796,5.273983866823556],[73.56853568535686,5.277361021363319],[73.57573575735759,5.280738175903082],[73.58293582935829,5.28242675317297],[73.58653586535866,5.28242675317297],[73.59373593735938,5.28242675317297]]],[[[73.11133111331114,5.299312525871798],[73.11133111331114,5.29762394860191],[73.10773107731077,5.295935371332035],[73.11133111331114,5.299312525871798]]],[[[73.47133471334715,5.307755412221212],[73.46413464134642,5.306066834951324],[73.46773467734678,5.307755412221212],[73.47133471334715,5.307755412221212]]],[[[73.629736297363,5.333084071269454],[73.62613626136263,5.331395493999565],[73.62253622536227,5.331395493999565],[73.629736297363,5.333084071269454]]],[[[73.64773647736479,5.343215534888742],[73.64053640536406,5.341526957618868],[73.64413644136442,5.343215534888742],[73.64773647736479,5.343215534888742]]],[[[72.95292952929529,5.353346998508044],[72.95292952929529,5.349969843968282],[72.94932949329495,5.349969843968282],[72.95292952929529,5.353346998508044]]],[[[73.39573395733959,5.361789884857458],[73.39933399333995,5.361789884857458],[73.39933399333995,5.36010130758757],[73.39933399333995,5.358412730317696],[73.40293402934032,5.356724153047807],[73.39933399333995,5.355035575777919],[73.39573395733959,5.356724153047807],[73.39573395733959,5.358412730317696],[73.39573395733959,5.36010130758757],[73.39573395733959,5.361789884857458]]],[[[73.32373323733239,5.368544193936984],[73.32373323733239,5.3668556166671095],[73.32733327333275,5.3668556166671095],[73.33093330933309,5.3668556166671095],[73.32733327333275,5.363478462127333],[73.32013320133203,5.363478462127333],[73.31653316533166,5.365167039397221],[73.32013320133203,5.3668556166671095],[73.32373323733239,5.3668556166671095],[73.32373323733239,5.368544193936984]]],[[[73.35253352533528,5.427644398382881],[73.34533345333455,5.427644398382881],[73.34533345333455,5.425955821112993],[73.34893348933491,5.4293329756527555],[73.35253352533528,5.427644398382881]]],[[[73.53613536135362,5.451284480161235],[73.53613536135362,5.44959590289136],[73.53253532535325,5.44959590289136],[73.53613536135362,5.451284480161235]]],[[[73.36333363333634,5.463104521050411],[73.36333363333634,5.4597273665106485],[73.35973359733597,5.458038789240774],[73.36333363333634,5.463104521050411]]],[[[72.94212942129423,5.468170252860062],[72.94212942129423,5.4647930983203],[72.94212942129423,5.463104521050411],[72.93852938529386,5.461415943780537],[72.93852938529386,5.4647930983203],[72.93852938529386,5.466481675590188],[72.94212942129423,5.466481675590188],[72.94212942129423,5.468170252860062]]],[[[73.01413014130142,5.493498911908304],[73.01413014130142,5.4901217573685415],[73.01413014130142,5.488433180098653],[73.01413014130142,5.486744602828779],[73.01053010530106,5.486744602828779],[73.01053010530106,5.4901217573685415],[73.01053010530106,5.491810334638416],[73.01413014130142,5.491810334638416],[73.01413014130142,5.493498911908304]]],[[[73.46413464134642,5.544156230004788],[73.46053460534606,5.542467652734899],[73.45693456934569,5.542467652734899],[73.46413464134642,5.544156230004788]]],[[[73.0069300693007,5.713013956993052],[73.00333003330033,5.711325379723178],[73.00333003330033,5.707948225183401],[73.00333003330033,5.706259647913527],[72.9997299973,5.706259647913527],[72.9997299973,5.711325379723178],[72.9997299973,5.713013956993052],[73.00333003330033,5.713013956993052],[73.0069300693007,5.713013956993052]]],[[[172.02952029520299,6.0541065655093576],[172.0079200792008,6.055795142779246],[171.9827198271983,6.052417988239483],[171.96111961119612,6.052417988239483],[171.94671946719467,6.067615183668423],[171.95031950319503,6.065926606398534],[171.95751957519576,6.06423802912866],[171.9647196471965,6.0625494518587715],[171.9971199711997,6.060860874588897],[172.02952029520299,6.0541065655093576]]],[[[72.94932949329495,6.349607587738831],[72.94932949329495,6.3479190104689565],[72.95292952929529,6.3479190104689565],[72.95292952929529,6.346230433199068],[72.95292952929529,6.342853278659305],[72.94932949329495,6.3445418559291795],[72.94932949329495,6.346230433199068],[72.94932949329495,6.3479190104689565],[72.94932949329495,6.349607587738831]]],[[[72.89172891728919,6.452610801201672],[72.89532895328955,6.449233646661909],[72.89532895328955,6.447545069392035],[72.89892898928991,6.447545069392035],[72.89532895328955,6.445856492122147],[72.89172891728919,6.447545069392035],[72.89172891728919,6.450922223931798],[72.89172891728919,6.452610801201672]]],[[[168.5770857708577,7.40327980414564],[168.5626856268563,7.413411267764928],[168.55548555485558,7.430297040463756],[168.55548555485558,7.450559967702347],[168.5626856268563,7.464068585861412],[168.56628566285661,7.450559967702347],[168.57348573485734,7.41847699957458],[168.5770857708577,7.40327980414564]]],[[[117.0317703177032,8.068579248479423],[117.02097020970211,8.078710712098712],[117.01377013770139,8.088842175718014],[117.01017010170102,8.097285062067428],[116.99576995769957,8.10235079387708],[117.02817028170284,8.129368030195195],[117.0461704617046,8.136122339274735],[117.0569705697057,8.124302298385544],[117.06777067770679,8.092219330257777],[117.06777067770679,8.085465021178251],[117.06057060570606,8.082087866638489],[117.04977049770497,8.0803992893686],[117.03897038970393,8.077022134828837],[117.0317703177032,8.068579248479423]]],[[[117.16857168571687,8.17833677102179],[117.19017190171905,8.176648193751916],[117.20457204572045,8.166516730132614],[117.20457204572045,8.154696689243437],[117.18657186571869,8.149630957433786],[117.16137161371614,8.156385266513325],[117.15057150571505,8.169893884672376],[117.15417154171541,8.180025348291679],[117.16857168571687,8.17833677102179]]],[[[117.2441724417244,8.315111529882287],[117.2549725497255,8.321865838961827],[117.26217262172622,8.321865838961827],[117.26577265772659,8.313422952612413],[117.26217262172622,8.301602911723236],[117.2441724417244,8.28302856175452],[117.21537215372155,8.264454211785818],[117.19017190171905,8.26276563451593],[117.18297182971833,8.288094293564171],[117.19017190171905,8.299914334453348],[117.2441724417244,8.343817343470306],[117.2405724057241,8.330308725311241],[117.2405724057241,8.326931570771478],[117.23697236972373,8.323554416231701],[117.2441724417244,8.315111529882287]]],[[[121.84141841418415,20.34622457779652],[121.85941859418597,20.347913155066408],[121.8810188101881,20.332715959637454],[121.89181891818919,20.314141609668752],[121.89181891818919,20.297255836969924],[121.87021870218706,20.276992909731334],[121.86301863018633,20.27361575519157],[121.85221852218524,20.27361575519157],[121.83781837818378,20.320895918748278],[121.83781837818378,20.334404536907343],[121.83781837818378,20.341158845986868],[121.84141841418415,20.34622457779652]]],[[[140.87120871208714,27.2187340662191],[140.86760867608677,27.233931261648053],[140.8748087480875,27.238996993457704],[140.87840878408787,27.232242684378164],[140.87120871208714,27.2187340662191]]],[[[-79.86139861398614,53.91345212579469],[-79.86499864998649,53.91345212579469],[-79.86859868598685,53.91176354852482],[-79.87219872198722,53.90838639398504],[-79.87579875798758,53.906697816715166],[-79.90819908199082,53.91851785760434],[-79.9189991899919,53.92696074395374],[-79.92979929799297,53.94046936211282],[-79.91179911799118,53.93878078484292],[-79.86139861398614,53.92020643487422],[-79.86139861398614,53.91345212579469]]],[[[-80.46980469804697,59.49082284821725],[-80.4770047700477,59.48237996186782],[-80.4770047700477,59.47900280732807],[-80.47340473404734,59.475625652788295],[-80.46620466204662,59.470559920978644],[-80.46620466204662,59.46549418916899],[-80.46980469804697,59.46042845735934],[-80.47340473404734,59.45873988008947],[-80.4770047700477,59.45705130281959],[-80.48780487804878,59.44185410739064],[-80.5130051300513,59.40977113926286],[-80.52020520205201,59.391196789294156],[-80.52740527405274,59.3759995938652],[-80.54180541805418,59.37093386205558],[-80.55260552605526,59.381065325674854],[-80.53820538205382,59.408082561992984],[-80.54540545405453,59.408082561992984],[-80.52380523805238,59.435099798311114],[-80.52020520205201,59.443542684660514],[-80.52740527405274,59.443542684660514],[-80.53820538205382,59.44523126193042],[-80.55260552605526,59.45029699374007],[-80.49140491404914,59.484068539137695],[-80.46980469804697,59.49082284821725]]],[[[-25.562055620556208,71.10654588774031],[-25.536855368553688,71.11161161954996],[-25.511655116551168,71.11161161954996],[-25.464854648546492,71.10654588774031],[-25.450454504545036,71.09979157866078],[-25.432454324543244,71.08459438323186],[-25.425254252542516,71.0778400741523],[-25.40365403654036,71.0778400741523],[-25.382053820538204,71.08290580596196],[-25.36405364053641,71.08459438323186],[-25.342453424534227,71.0778400741523],[-25.356853568535684,71.07446291961256],[-25.367653676536747,71.06602003326313],[-25.374853748537475,71.05588856964386],[-25.367653676536747,71.05251141510408],[-25.349653496534955,71.0491342605643],[-25.331653316533163,71.04237995148478],[-25.317253172531707,71.03224848786547],[-25.306453064530643,71.01705129243655],[-25.331653316533163,71.01873986970642],[-25.35325353253532,71.02549417878595],[-25.39645396453963,71.04575710602455],[-25.400054000539996,71.02549417878595],[-25.414454144541452,71.02718275605585],[-25.42885428854288,71.03900279694503],[-25.443254432544308,71.05251141510408],[-25.443254432544308,71.06095430145348],[-25.457654576545764,71.07446291961256],[-25.47205472054719,71.08797153777161],[-25.486454864548648,71.09303726958126],[-25.536855368553688,71.08628296050173],[-25.562055620556208,71.08966011504148],[-25.580055800558,71.10654588774031],[-25.576455764557636,71.10654588774031],[-25.572855728557272,71.10823446501021],[-25.569255692556908,71.11161161954996],[-25.565655656556572,71.11330019681986],[-25.562055620556208,71.10654588774031]]],[[[-21.32481324813247,73.14803580702849],[-21.202412024120235,73.14634722975862],[-21.170011700116987,73.13452718886944],[-21.177211772117715,73.13283861159957],[-21.184411844118443,73.13115003432969],[-21.188011880118808,73.12608430252004],[-21.188011880118808,73.12101857071039],[-21.328413284132836,73.10075564347179],[-21.396813968139668,73.09906706620191],[-21.461614616146164,73.12101857071039],[-21.360813608136084,73.14634722975862],[-21.32481324813247,73.14803580702849]]],[[[-18.203582035820347,78.73722657034023],[-18.235982359823595,78.7507351884993],[-18.243182431824323,78.76255522938848],[-18.23238232382323,78.77775242481744],[-18.23958239582396,78.78450673389696],[-18.20718207182071,78.81321254748497],[-18.160381603816035,78.8300983201838],[-18.11358113581136,78.83178689745367],[-18.070380703807018,78.81827827929462],[-18.034380343803434,78.79463819751626],[-18.00558005580055,78.77944100208731],[-18.001980019800186,78.76593238392823],[-18.041580415804162,78.74566945668965],[-18.178381783817827,78.711897911292],[-18.203582035820347,78.69501213859317],[-18.210782107821075,78.70852075675222],[-18.20718207182071,78.71527506583178],[-18.203582035820347,78.72371795218118],[-18.203582035820347,78.73722657034023]]],[[[-73.82413824138241,-73.38669967339207],[-73.80253802538024,-73.37319105523301],[-73.78093780937809,-73.35968243707396],[-73.75573755737557,-73.35630528253418],[-73.73413734137341,-73.36981390069325],[-73.74493744937449,-73.37825678704266],[-73.75933759337593,-73.38669967339207],[-73.77373773737737,-73.39345398247161],[-73.78813788137882,-73.39683113701138],[-73.79533795337953,-73.39683113701138],[-73.82053820538205,-73.39176540520172],[-73.82413824138241,-73.38669967339207]]],[[[-67.13527135271352,-68.13860151859664],[-67.1640716407164,-68.15717586856536],[-67.20007200072,-68.1723730639943],[-67.2360723607236,-68.1723730639943],[-67.2540725407254,-68.14535582767618],[-67.23967239672396,-68.13353578678701],[-67.20367203672036,-68.13184720951712],[-67.13527135271352,-68.13860151859664]]],[[[-67.04167041670416,-67.86167484633589],[-66.94446944469445,-67.84816622817682],[-66.89766897668976,-67.85323195998647],[-66.85446854468545,-67.87180630995519],[-66.8760687606876,-67.88362635084437],[-66.90126901269012,-67.88869208265402],[-66.99846998469984,-67.88193777357448],[-67.02007020070201,-67.87518346449495],[-67.04167041670416,-67.86167484633589]]],[[[-67.74367743677436,-67.36016739718073],[-67.72927729277292,-67.33990446994213],[-67.68967689676896,-67.31795296543366],[-67.64647646476465,-67.30782150181436],[-67.60327603276032,-67.3145758108939],[-67.6320763207632,-67.33483873813249],[-67.6680766807668,-67.35679024264095],[-67.70767707677076,-67.37029886080002],[-67.74367743677436,-67.36016739718073]]],[[[-67.65727657276572,-67.08830645672961],[-67.65007650076501,-67.08155214765009],[-67.64287642876428,-67.07648641584044],[-67.6320763207632,-67.07310926130066],[-67.62127621276213,-67.06804352949102],[-67.61047610476105,-67.05453491133196],[-67.60327603276032,-67.0494691795223],[-67.59247592475924,-67.04609202498254],[-67.57447574475745,-67.04609202498254],[-67.55647556475564,-67.05453491133196],[-67.54927549275493,-67.06635495222113],[-67.5420754207542,-67.08324072491996],[-67.5420754207542,-67.09843792034891],[-67.5420754207542,-67.10350365215855],[-67.54927549275493,-67.11194653850796],[-67.55647556475564,-67.11870084758749],[-67.56727567275672,-67.12376657939714],[-67.58527585275853,-67.13220946574656],[-67.60687606876068,-67.14065235209597],[-67.6320763207632,-67.14234092936586],[-67.65727657276572,-67.1372751975562],[-67.68247682476824,-67.12883231120679],[-67.67167671676717,-67.12545515666703],[-67.66447664476644,-67.12207800212727],[-67.65367653676536,-67.11701227031762],[-67.65007650076501,-67.11025796123809],[-67.64647646476465,-67.10181507488868],[-67.65007650076501,-67.09506076580914],[-67.65727657276572,-67.08830645672961]]],[[[-67.16047160471604,-66.38923546699817],[-67.13887138871388,-66.377415426109],[-67.1280712807128,-66.37066111702947],[-67.12447124471244,-66.36221823068004],[-67.1280712807128,-66.3571524988704],[-67.14607146071461,-66.34870961252099],[-67.15327153271532,-66.34364388071134],[-67.15327153271532,-66.33182383982216],[-67.14607146071461,-66.32506953074264],[-67.13527135271352,-66.32169237620286],[-67.12447124471244,-66.32169237620286],[-67.09927099270992,-66.32169237620286],[-67.05967059670596,-66.3284466852824],[-67.02727027270272,-66.34195530344147],[-67.02367023670236,-66.36052965341017],[-67.0380703807038,-66.37066111702947],[-67.0560705607056,-66.37910400337887],[-67.0920709207092,-66.38585831245841],[-67.1280712807128,-66.38923546699817],[-67.16047160471604,-66.38923546699817]]],[[[-67.10287102871028,-66.26090359448709],[-67.12087120871209,-66.25077213086779],[-67.110071100711,-66.2406406672485],[-67.0920709207092,-66.23557493543885],[-67.07047070470705,-66.23557493543885],[-67.0560705607056,-66.23557493543885],[-67.05247052470524,-66.25414928540755],[-67.02727027270272,-66.2592150172172],[-66.92286922869228,-66.25246070813768],[-66.88326883268832,-66.26259217175698],[-66.8760687606876,-66.26428074902685],[-66.90846908469084,-66.27778936718592],[-66.94446944469445,-66.28623225353533],[-66.97686976869768,-66.2879208308052],[-67.01287012870128,-66.28623225353533],[-67.08127081270813,-66.27441221264615],[-67.10287102871028,-66.26090359448709]]],[[[-65.7420574205742,-65.96877972679738],[-65.72765727657276,-65.98904265403597],[-65.73845738457385,-65.99073123130586],[-65.80325803258032,-65.99241980857573],[-65.78885788857887,-65.9772226131468],[-65.78525785257852,-65.97215688133714],[-65.78525785257852,-65.96540257225762],[-65.78525785257852,-65.95864826317808],[-65.78525785257852,-65.95358253136844],[-65.7780577805778,-65.94851679955879],[-65.77085770857708,-65.94513964501903],[-65.760057600576,-65.95020537682868],[-65.74925749257493,-65.95864826317808],[-65.7420574205742,-65.96877972679738]]],[[[-65.90045900459005,-65.87590797695384],[-65.89325893258932,-65.8792851314936],[-65.88965889658895,-65.88097370876348],[-65.88965889658895,-65.88603944057313],[-65.88965889658895,-65.89110517238278],[-65.90045900459005,-65.91136809962137],[-65.91485914859147,-65.91643383143102],[-65.99765997659976,-65.92994244959007],[-66.01566015660156,-65.9282538723202],[-66.03366033660336,-65.92487671778044],[-66.00486004860048,-65.90461379054184],[-65.97245972459724,-65.88772801784302],[-65.93285932859328,-65.87759655422371],[-65.90045900459005,-65.87590797695384]]],[[[-62.847628476284754,-64.80872714238797],[-62.90162901629016,-64.82392433781692],[-63.0060300603006,-64.81717002873738],[-63.020430204302045,-64.81379287419762],[-63.03123031230312,-64.80703856511809],[-62.995229952299525,-64.79690710149879],[-62.95562955629556,-64.79521852422891],[-62.847628476284754,-64.80872714238797]]],[[[-62.02322023220232,-64.62467221997076],[-62.030420304203034,-64.63311510632016],[-62.030420304203034,-64.64155799266958],[-62.030420304203034,-64.64831230174912],[-62.02322023220232,-64.65337803355877],[-62.03762037620376,-64.66182091990817],[-62.05922059220592,-64.66013234263829],[-62.077220772207724,-64.65168945628888],[-62.080820808208074,-64.63818083812981],[-62.070020700206996,-64.63311510632016],[-62.052020520205204,-64.62636079724064],[-62.0340203402034,-64.62298364270087],[-62.02322023220232,-64.62467221997076]]],[[[-62.14922149221492,-64.5807692109538],[-62.13842138421384,-64.57570347914415],[-62.11322113221132,-64.57570347914415],[-62.102421024210244,-64.57232632460439],[-62.095220952209516,-64.56557201552485],[-62.095220952209516,-64.56050628371521],[-62.095220952209516,-64.55544055190556],[-62.09162091620915,-64.5520633973658],[-62.0880208802088,-64.54868624282604],[-62.077220772207724,-64.54868624282604],[-62.07362073620736,-64.54699766555615],[-62.05922059220592,-64.54024335647662],[-62.052020520205204,-64.53855477920673],[-62.044820448204476,-64.53855477920673],[-62.01602016020159,-64.55375197463567],[-62.01602016020159,-64.55881770644532],[-62.04122041220411,-64.5807692109538],[-62.044820448204476,-64.58921209730322],[-62.052020520205204,-64.60440929273216],[-62.055620556205554,-64.6111636018117],[-62.06282062820628,-64.61454075635146],[-62.09162091620915,-64.62129506543099],[-62.106021060210594,-64.62129506543099],[-62.11682116821167,-64.61622933362133],[-62.13482134821348,-64.60272071546228],[-62.127621276212764,-64.59765498365263],[-62.1240212402124,-64.59427782911287],[-62.120421204212036,-64.58921209730322],[-62.14202142021419,-64.58245778822368],[-62.14922149221492,-64.5807692109538]]],[[[-57.65277652776527,-64.45074876117283],[-57.58437584375844,-64.41697721577518],[-57.56277562775627,-64.44230587482342],[-57.58797587975879,-64.47101168841142],[-57.65277652776527,-64.45074876117283]]],[[[-59.8379983799838,-63.554114230865125],[-59.84159841598415,-63.54567134451571],[-59.84159841598415,-63.54398276724582],[-59.81639816398163,-63.54567134451571],[-59.80199801998019,-63.55073707632536],[-59.79839798397984,-63.554114230865125],[-59.794797947979475,-63.555802808135006],[-59.79119791197911,-63.559179962674776],[-59.794797947979475,-63.5659342717543],[-59.794797947979475,-63.569311426294064],[-59.77679776797767,-63.589574353532655],[-59.77679776797767,-63.594640085342306],[-59.794797947979475,-63.59801723988207],[-59.81639816398163,-63.60139439442184],[-59.83439834398344,-63.59970581715196],[-59.85239852398523,-63.594640085342306],[-59.870398703987036,-63.58450862172301],[-59.8739987399874,-63.572688580833834],[-59.86319863198632,-63.56424569448442],[-59.8379983799838,-63.554114230865125]]],[[[-26.732067320673195,-57.05984605089627],[-26.714067140671403,-57.048026010007085],[-26.688866888668883,-57.049714587276966],[-26.667266672666727,-57.06322320543603],[-26.649266492664907,-57.08010897813486],[-26.656466564665635,-57.08010897813486],[-26.656466564665635,-57.081797555404734],[-26.660066600666,-57.08348613267462],[-26.663666636666363,-57.086863287214385],[-26.67086670866709,-57.08010897813486],[-26.681666816668155,-57.081797555404734],[-26.699666996669947,-57.07504324632521],[-26.732067320673195,-57.05984605089627]]],[[[-67.09567095670957,-55.82549606661201],[-67.09567095670957,-55.83900468477107],[-67.09567095670957,-55.857579034739786],[-67.08847088470884,-55.87615338470849],[-67.07767077670776,-55.89135058013744],[-67.0740707407074,-55.90317062102662],[-67.07767077670776,-55.90992493010614],[-67.08847088470884,-55.913302084645906],[-67.10287102871028,-55.914990661915795],[-67.11367113671136,-55.913302084645906],[-67.12447124471244,-55.90654777556638],[-67.13887138871388,-55.89135058013744],[-67.14607146071461,-55.88628484832779],[-67.1640716407164,-55.87953053924826],[-67.17127171271713,-55.87446480743861],[-67.17127171271713,-55.86264476654943],[-67.16767167671676,-55.85082472566025],[-67.1640716407164,-55.84238183931084],[-67.15687156871569,-55.833938952961425],[-67.13887138871388,-55.8170531802626],[-67.12087120871209,-55.8069217166433],[-67.09927099270992,-55.805233139373414],[-67.08127081270813,-55.81198744845295],[-67.08127081270813,-55.81874175753248],[-67.08487084870848,-55.82211891207224],[-67.08847088470884,-55.82380748934213],[-67.09567095670957,-55.82549606661201]]],[[[-67.23247232472325,-55.771461593975765],[-67.21447214472144,-55.76133013035647],[-67.18927189271892,-55.75626439854682],[-67.1640716407164,-55.76133013035647],[-67.15687156871569,-55.7782159030553],[-67.16767167671676,-55.78328163486495],[-67.17847178471784,-55.78497021213482],[-67.19287192871928,-55.78328163486495],[-67.20367203672036,-55.7782159030553],[-67.21087210872108,-55.795101675754125],[-67.22887228872288,-55.79847883029389],[-67.23967239672396,-55.790035943944474],[-67.23247232472325,-55.771461593975765]]],[[[-70.01530015300153,-55.30541426748814],[-69.9720997209972,-55.28852849478931],[-69.94689946899469,-55.28346276297967],[-69.94689946899469,-55.29865995840861],[-69.97929979299792,-55.32567719472674],[-69.98289982899828,-55.335808658346025],[-69.98289982899828,-55.359448740124385],[-69.98649986499865,-55.36620304920392],[-70.0081000810008,-55.37464593555333],[-70.01530015300153,-55.36113731739427],[-70.02610026100261,-55.340874390155676],[-70.04050040500405,-55.33243150380626],[-70.03690036900369,-55.33074292653638],[-70.03330033300333,-55.3290543492665],[-70.03330033300333,-55.32736577199661],[-70.02610026100261,-55.32567719472674],[-70.02610026100261,-55.3189228856472],[-70.04770047700477,-55.31216857656767],[-70.06930069300692,-55.31216857656767],[-70.08730087300873,-55.30879142202791],[-70.10890108901089,-55.29190564932908],[-70.09450094500944,-55.29190564932908],[-70.06930069300692,-55.28515134024955],[-70.05490054900548,-55.28515134024955],[-70.0441004410044,-55.28852849478931],[-70.02250022500225,-55.30203711294837],[-70.01530015300153,-55.30541426748814]]],[[[-37.08217082170822,-54.46619136435644],[-37.06777067770676,-54.46450278708656],[-37.04977049770497,-54.47463425070585],[-37.01737017370172,-54.496585755214326],[-37.01737017370172,-54.50334006429386],[-37.02457024570245,-54.50334006429386],[-37.02817028170281,-54.50502864156374],[-37.03537035370354,-54.5084057961035],[-37.038970389703906,-54.51009437337339],[-37.064170641706426,-54.513471527913154],[-37.07497074970749,-54.513471527913154],[-37.08577085770858,-54.51009437337339],[-37.08577085770858,-54.50334006429386],[-37.06777067770676,-54.50334006429386],[-37.10737107371074,-54.4898314461348],[-37.1109711097111,-54.476322827975736],[-37.10377103771037,-54.471257096166084],[-37.09297092970928,-54.4695685188962],[-37.08217082170822,-54.46619136435644]]],[[[-70.3861038610386,-54.187576114825795],[-70.36090360903609,-54.189264692095676],[-70.31410314103141,-54.184198960286025],[-70.28890288902889,-54.187576114825795],[-70.28530285302853,-54.19095326936556],[-70.27450274502745,-54.204461887524616],[-70.26730267302672,-54.20952761933427],[-70.25650256502564,-54.211216196604155],[-70.23490234902349,-54.21290477387403],[-70.22770227702277,-54.21459335114392],[-70.21690216902168,-54.23485627838251],[-70.23130231302312,-54.246676319271685],[-70.24570245702456,-54.2551192056211],[-70.25290252902529,-54.266939246510276],[-70.27090270902708,-54.270316401050046],[-70.33930339303393,-54.2652506692404],[-70.36090360903609,-54.26018493743075],[-70.38250382503824,-54.25005347381145],[-70.43290432904328,-54.24161058746204],[-70.4581045810458,-54.23654485565239],[-70.47970479704797,-54.22472481476321],[-70.49770497704976,-54.20952761933427],[-70.5121051210512,-54.19264184663544],[-70.52290522905228,-54.17406749666674],[-70.49050490504905,-54.148738837618495],[-70.45450454504545,-54.15380456942814],[-70.3861038610386,-54.187576114825795]]],[[[-38.086580865808656,-54.003521192408584],[-38.07938079380793,-53.9917011515194],[-38.061380613806136,-53.98832399697963],[-38.025380253802524,-53.99001257424952],[-38.0649806498065,-54.001832615138696],[-38.075780757807564,-54.003521192408584],[-38.086580865808656,-54.003521192408584]]],[[[-73.39213392133921,-53.41420772521951],[-73.45693456934569,-53.43615922972799],[-73.48933489334892,-53.45135642515694],[-73.50733507335073,-53.4749965069353],[-73.49653496534965,-53.47837366147506],[-73.48933489334892,-53.47668508420517],[-73.48573485734858,-53.47161935239553],[-73.47493474934748,-53.46824219785576],[-73.46773467734677,-53.47161935239553],[-73.45333453334533,-53.486816547824475],[-73.44253442534425,-53.488505125094356],[-73.43533435334353,-53.49525943417389],[-73.39213392133921,-53.53071955684142],[-73.39933399333992,-53.54085102046072],[-73.41373413734136,-53.54591675227037],[-73.44253442534425,-53.544228175000484],[-73.45333453334533,-53.54760532954025],[-73.47133471334713,-53.56617967950896],[-73.48213482134821,-53.57124541131861],[-73.50733507335073,-53.567868256778844],[-73.52173521735217,-53.5526710613499],[-73.52893528935289,-53.53071955684142],[-73.54333543335433,-53.51045662960283],[-73.55413554135541,-53.54085102046072],[-73.56133561335614,-53.54591675227037],[-73.57933579335793,-53.544228175000484],[-73.59373593735937,-53.527342402301656],[-73.60093600936008,-53.52396524776189],[-73.65133651336512,-53.51721093868236],[-73.66213662136622,-53.51045662960283],[-73.69093690936909,-53.485127970554586],[-73.70893708937089,-53.4749965069353],[-73.76653766537665,-53.45811073423647],[-73.78093780937809,-53.4547335796967],[-73.78093780937809,-53.45135642515694],[-73.7989379893799,-53.43615922972799],[-73.80253802538024,-53.43447065245811],[-73.80253802538024,-53.422650611568926],[-73.7989379893799,-53.41927345702916],[-73.78093780937809,-53.42096203429905],[-73.76653766537665,-53.426027766108696],[-73.69093690936909,-53.466553620585884],[-73.68013680136801,-53.46824219785576],[-73.65493654936549,-53.466553620585884],[-73.64053640536405,-53.46824219785576],[-73.62973629736297,-53.47161935239553],[-73.61173611736118,-53.481750816014824],[-73.59373593735937,-53.49019370236424],[-73.57573575735756,-53.491882279634126],[-73.56493564935649,-53.481750816014824],[-73.59373593735937,-53.47161935239553],[-73.60453604536045,-53.464865043315996],[-73.61893618936189,-53.4547335796967],[-73.60093600936008,-53.44797927061717],[-73.57933579335793,-53.449667847887056],[-73.55773557735577,-53.45304500242682],[-73.53613536135362,-53.4547335796967],[-73.5469354693547,-53.442913538807524],[-73.59733597335973,-53.424339188838815],[-73.59733597335973,-53.39225622071105],[-73.59373593735937,-53.38550191163151],[-73.57933579335793,-53.387190488901396],[-73.56853568535685,-53.39225622071105],[-73.55773557735577,-53.404076261600224],[-73.5469354693547,-53.40745341613999],[-73.53253532535325,-53.405764838870105],[-73.51453514535145,-53.39563337525081],[-73.50733507335073,-53.39225622071105],[-73.44973449734496,-53.39225622071105],[-73.43533435334353,-53.39394479798092],[-73.39213392133921,-53.40745341613999],[-73.39213392133921,-53.41420772521951]]],[[[-73.33093330933309,-52.69318523097961],[-73.33093330933309,-52.701628117329015],[-73.37053370533705,-52.72864535364714],[-73.38853388533884,-52.73708823999655],[-73.39933399333992,-52.72864535364714],[-73.37053370533705,-52.70838242640855],[-73.36333363333632,-52.703316694598904],[-73.33093330933309,-52.69318523097961]]],[[[-73.77013770137701,-52.379109858781426],[-73.78813788137882,-52.38755274513084],[-73.80613806138061,-52.392618476940484],[-73.82773827738276,-52.394307054210365],[-73.84933849338493,-52.38755274513084],[-73.87093870938709,-52.375732704241656],[-73.88173881738817,-52.368978395162124],[-73.88533885338853,-52.3622240860826],[-73.8781387813878,-52.35715835427295],[-73.82413824138241,-52.34533831338377],[-73.82413824138241,-52.33858400430424],[-73.83853838538386,-52.33689542703436],[-73.84573845738457,-52.330141117954824],[-73.85293852938528,-52.32338680887529],[-73.85653856538565,-52.31832107706565],[-73.90333903339032,-52.30818961344635],[-73.91773917739177,-52.29974672709694],[-73.93573935739357,-52.28454953166799],[-73.94293942939429,-52.27948379985835],[-73.9681396813968,-52.267663758969164],[-73.98973989739898,-52.26090944988963],[-74.0041400414004,-52.25584371807999],[-74.02214022140221,-52.23895794538116],[-74.05454054540544,-52.20180924544374],[-74.0941409414094,-52.18492347274491],[-74.0941409414094,-52.166349122776204],[-74.07974079740796,-52.147774772807495],[-74.05814058140581,-52.13933188645808],[-74.04374043740437,-52.14102046372796],[-74.03294032940329,-52.14608619553761],[-74.02574025740257,-52.15284050461714],[-74.0149401494015,-52.15959481369667],[-74.01134011340113,-52.16128339096655],[-73.99693996939969,-52.15790623642679],[-73.98973989739898,-52.15959481369667],[-73.98253982539825,-52.16466054550632],[-73.97533975339753,-52.1764805863955],[-73.97173971739717,-52.17985774093526],[-73.96453964539646,-52.18323489547503],[-73.95733957339573,-52.189989204554564],[-73.95013950139501,-52.19674351363409],[-73.92853928539284,-52.20349782271362],[-73.89253892538925,-52.22207217268233],[-73.81693816938169,-52.24064652265104],[-73.80253802538024,-52.252466563540224],[-73.7989379893799,-52.25753229534987],[-73.78813788137882,-52.26597518169928],[-73.78093780937809,-52.274418068048696],[-73.77733777337772,-52.28623810893787],[-73.78093780937809,-52.29805814982706],[-73.79533795337953,-52.31832107706565],[-73.79533795337953,-52.331829695224705],[-73.78093780937809,-52.341961158844],[-73.75933759337593,-52.34871546792353],[-73.74853748537485,-52.35715835427295],[-73.77013770137701,-52.379109858781426]]],[[[-74.34614346143461,-52.063345909313355],[-74.35694356943569,-52.07347737293266],[-74.37134371343713,-52.0785431047423],[-74.38934389343893,-52.07685452747242],[-74.40014400144001,-52.07010021839289],[-74.40374403744038,-52.065034486583244],[-74.40734407344073,-52.05828017750371],[-74.40734407344073,-52.05152586842418],[-74.40734407344073,-52.043082982074765],[-74.36054360543605,-52.05659160023383],[-74.34614346143461,-52.063345909313355]]],[[[-74.90774907749078,-50.79691295690134],[-74.94734947349473,-50.78002718420251],[-74.96174961749617,-50.769895720583214],[-74.94734947349473,-50.76314141150368],[-74.95814958149582,-50.727681288836145],[-74.92574925749257,-50.72599271156626],[-74.84654846548464,-50.747944216074735],[-74.85374853748537,-50.73105844337591],[-74.89334893348934,-50.71586124794697],[-74.90774907749078,-50.70066405251802],[-74.90054900549005,-50.67533539346978],[-74.8789487894879,-50.68208970254931],[-74.83214832148322,-50.707418361597554],[-74.82134821348212,-50.69559832070837],[-74.82854828548285,-50.67871254800954],[-74.82854828548285,-50.665203929850485],[-74.80334803348033,-50.666892507120366],[-74.74214742147421,-50.707418361597554],[-74.75294752947529,-50.72092697975661],[-74.75294752947529,-50.73274702064579],[-74.75294752947529,-50.74456706153497],[-74.75654756547566,-50.75469852515427],[-74.74574745747456,-50.769895720583214],[-74.72414724147241,-50.790158647821805],[-74.71334713347133,-50.80366726598086],[-74.77814778147781,-50.80366726598086],[-74.760147601476,-50.81717588413993],[-74.74214742147421,-50.82393019321946],[-74.72774727747277,-50.834061656838756],[-74.72054720547204,-50.85432458407735],[-74.7169471694717,-50.86107889315688],[-74.70974709747097,-50.85432458407735],[-74.70254702547025,-50.84250454318817],[-74.70254702547025,-50.83743881137852],[-74.67374673746737,-50.810421575060396],[-74.65934659346593,-50.82393019321946],[-74.67734677346773,-50.871210356776174],[-74.69174691746917,-50.889784706744884],[-74.71334713347133,-50.88471897493523],[-74.78174781747818,-50.88134182039547],[-74.84654846548464,-50.871210356776174],[-74.86094860948609,-50.86614462496652],[-74.88254882548826,-50.85432458407735],[-74.89334893348934,-50.850947429537584],[-74.90774907749078,-50.850947429537584],[-74.9221492214922,-50.852636006807465],[-74.9329493294933,-50.850947429537584],[-74.94014940149401,-50.83743881137852],[-74.92574925749257,-50.830684502298986],[-74.85734857348574,-50.82393019321946],[-74.8789487894879,-50.81717588413993],[-74.90414904149041,-50.81548730687005],[-74.92574925749257,-50.810421575060396],[-74.94014940149401,-50.79691295690134],[-74.90774907749078,-50.79691295690134]]],[[[-74.60894608946089,-50.51492055283092],[-74.58374583745837,-50.53011774825987],[-74.60174601746017,-50.563889293657525],[-74.64134641346413,-50.585840798166],[-74.67374673746737,-50.57739791181658],[-74.670146701467,-50.55713498457799],[-74.68454684546845,-50.53180632552975],[-74.6809468094681,-50.51492055283092],[-74.66654666546665,-50.503100511941746],[-74.64854648546485,-50.50478908921163],[-74.62694626946269,-50.51154339829116],[-74.60894608946089,-50.51492055283092]]],[[[-74.47214472144721,-48.45654486084391],[-74.50454504545046,-48.42783904725591],[-74.51174511745117,-48.40757612001732],[-74.47574475744757,-48.405887542747436],[-74.40734407344073,-48.41770758363661],[-74.31374313743137,-48.46498774719333],[-74.30654306543065,-48.46667632446321],[-74.3029430294303,-48.47005347900298],[-74.3029430294303,-48.48018494262227],[-74.30654306543065,-48.48862782897169],[-74.31374313743137,-48.49369356078133],[-74.34254342543426,-48.500447869860864],[-74.40014400144001,-48.525776528909105],[-74.4289442894429,-48.525776528909105],[-74.43974439744397,-48.51733364255969],[-74.46134461344613,-48.48018494262227],[-74.4649446494465,-48.47174205627286],[-74.4649446494465,-48.46667632446321],[-74.4649446494465,-48.461610592653564],[-74.47214472144721,-48.45654486084391]]],[[[-74.5441454414544,-48.3214586792533],[-74.55134551345513,-48.30288432928459],[-74.5549455494555,-48.28599855658576],[-74.55854558545585,-48.2437841248387],[-74.52974529745298,-48.21001257944104],[-74.52254522545225,-48.194815384012095],[-74.5441454414544,-48.198192538551865],[-74.5549455494555,-48.21001257944104],[-74.56574565745657,-48.22689835213987],[-74.57654576545765,-48.24040697029893],[-74.59454594545944,-48.24716127937846],[-74.60534605346054,-48.23534123848928],[-74.60174601746017,-48.21001257944104],[-74.59454594545944,-48.18130676585304],[-74.58374583745837,-48.16442099315421],[-74.5909459094591,-48.16273241588433],[-74.59814598145981,-48.15935526134456],[-74.60534605346054,-48.15766668407468],[-74.58014580145802,-48.134026602296316],[-74.55854558545585,-48.12220656140714],[-74.53334533345333,-48.12389513867702],[-74.50454504545046,-48.14415806591562],[-74.47574475744757,-48.17961818858315],[-74.4649446494465,-48.1846839203928],[-74.45054450544505,-48.18974965220245],[-74.41094410944109,-48.213389733980804],[-74.3821438214382,-48.23534123848928],[-74.37494374943749,-48.2437841248387],[-74.37134371343713,-48.25391558845799],[-74.37854378543786,-48.26742420661705],[-74.38934389343893,-48.280932824776116],[-74.40374403744038,-48.28937571112553],[-74.4181441814418,-48.294441442935174],[-74.43974439744397,-48.296130020205055],[-74.44334443344432,-48.301195752014706],[-74.44694446944469,-48.30457290655447],[-74.45414454144542,-48.30963863836412],[-74.49014490144901,-48.31639294744365],[-74.51894518945188,-48.33327872014248],[-74.53334533345333,-48.33496729741236],[-74.5441454414544,-48.3214586792533]]],[[[-73.70893708937089,-45.92367895601986],[-73.70173701737016,-45.93549899690905],[-73.70533705337053,-45.970959119576584],[-73.68373683736837,-46.0182392831333],[-73.71253712537126,-46.02161643767306],[-73.82053820538205,-45.99797635589471],[-73.82773827738276,-45.98615631500552],[-73.82053820538205,-45.9692705423067],[-73.78453784537845,-45.91354749240057],[-73.77373773737737,-45.89835029697163],[-73.75573755737557,-45.88821883335233],[-73.74853748537485,-45.91861322421022],[-73.74853748537485,-45.92367895601986],[-73.73773737737378,-45.92536753328975],[-73.7161371613716,-45.92199037874998],[-73.70893708937089,-45.92367895601986]]],[[[-73.92853928539284,-45.7446897654123],[-73.9681396813968,-45.77001842446054],[-73.97533975339753,-45.78014988807984],[-73.96453964539646,-45.786904197159366],[-73.96093960939609,-45.79534708350878],[-73.96453964539646,-45.805478547128075],[-73.9681396813968,-45.81729858801726],[-73.9681396813968,-45.82067574255702],[-73.97533975339753,-45.824052897096784],[-73.97893978939788,-45.829118628906436],[-73.98253982539825,-45.83418436071609],[-73.97893978939788,-45.83925009252573],[-73.97173971739717,-45.85107013341491],[-73.9681396813968,-45.85782444249444],[-73.97533975339753,-45.87977594700292],[-73.99333993339933,-45.90341602878127],[-74.0149401494015,-45.91354749240057],[-74.02934029340292,-45.90341602878127],[-74.04374043740437,-45.866267328843854],[-74.0509405094051,-45.85444728795468],[-74.05814058140581,-45.84600440160526],[-74.06894068940689,-45.83925009252573],[-74.07254072540725,-45.829118628906436],[-74.06534065340654,-45.81561001074737],[-74.09054090540906,-45.81392143347749],[-74.10134101341013,-45.78859277442925],[-74.0941409414094,-45.76326411538101],[-74.06534065340654,-45.766641269920775],[-74.05814058140581,-45.7446897654123],[-74.04374043740437,-45.73793545633277],[-74.02574025740257,-45.741312610872534],[-74.00774007740077,-45.7446897654123],[-73.98973989739898,-45.746378342682185],[-73.94653946539465,-45.7446897654123],[-73.92853928539284,-45.7446897654123]]],[[[-74.5549455494555,-45.57414346115415],[-74.54054540545405,-45.579209192963795],[-74.54054540545405,-45.58765207931321],[-74.54054540545405,-45.59609496566262],[-74.5441454414544,-45.601160697472274],[-74.56574565745657,-45.63324366560004],[-74.57294572945729,-45.65350659283863],[-74.55134551345513,-45.67208094280735],[-74.5549455494555,-45.68896671550617],[-74.56214562145621,-45.70754106547488],[-74.58374583745837,-45.734558301793],[-74.59454594545944,-45.746378342682185],[-74.61254612546125,-45.75144407449183],[-74.63774637746377,-45.75313265176172],[-74.66294662946629,-45.75144407449183],[-74.68454684546845,-45.743001188142415],[-74.69894698946989,-45.727803992713476],[-74.70614706147062,-45.70078675639535],[-74.70254702547025,-45.67376952007723],[-74.69534695346952,-45.646752283759106],[-74.6809468094681,-45.621423624710864],[-74.65934659346593,-45.601160697472274],[-74.64494644946448,-45.59440638839274],[-74.60534605346054,-45.58596350204333],[-74.58014580145802,-45.57414346115415],[-74.57294572945729,-45.57414346115415],[-74.5549455494555,-45.57414346115415]]],[[[-73.88533885338853,-45.4711402476913],[-73.84573845738457,-45.45256589772259],[-73.82413824138241,-45.45256589772259],[-73.81693816938169,-45.47451740223107],[-73.82053820538205,-45.49309175219978],[-73.83133831338313,-45.51335467943837],[-73.87093870938709,-45.56232342026497],[-73.88533885338853,-45.560634842995086],[-73.89973899738997,-45.558946265725204],[-73.92133921339213,-45.54881480210591],[-73.93213932139321,-45.54712622483603],[-73.95733957339573,-45.535306183946844],[-73.98253982539825,-45.53192902940708],[-74.0149401494015,-45.520108988517904],[-74.02934029340292,-45.516731833978135],[-74.06174061740617,-45.520108988517904],[-74.07254072540725,-45.521797565787786],[-74.09774097740977,-45.536994761216725],[-74.10854108541085,-45.540371915756495],[-74.11574115741158,-45.54543764756614],[-74.12294122941229,-45.56738915207462],[-74.12654126541265,-45.57414346115415],[-74.1409414094141,-45.57414346115415],[-74.14454144541445,-45.55725768845532],[-74.1409414094141,-45.535306183946844],[-74.13374133741337,-45.520108988517904],[-74.12654126541265,-45.51166610216849],[-74.11934119341193,-45.50660037035884],[-74.11574115741158,-45.49984606127931],[-74.11214112141121,-45.48802602039013],[-74.10494104941048,-45.4711402476913],[-74.0941409414094,-45.45256589772259],[-74.07614076140761,-45.433991547753884],[-74.06534065340654,-45.42386008413459],[-74.04734047340473,-45.42217150686471],[-73.98973989739898,-45.42723723867435],[-73.97173971739717,-45.433991547753884],[-73.95373953739536,-45.44581158864306],[-73.93213932139321,-45.457631629532244],[-73.90693906939069,-45.46776309315154],[-73.88533885338853,-45.4711402476913]]],[[[-74.5549455494555,-45.54712622483603],[-74.56934569345692,-45.540371915756495],[-74.56934569345692,-45.52348614305767],[-74.55134551345513,-45.49984606127931],[-74.51894518945188,-45.44412301137318],[-74.49734497344973,-45.42554866140447],[-74.46854468544684,-45.417105775055056],[-74.44694446944469,-45.42892581594423],[-74.45414454144542,-45.454254474992474],[-74.49734497344973,-45.50322321581908],[-74.50454504545046,-45.52855187486732],[-74.50094500945009,-45.56401199753485],[-74.50094500945009,-45.58765207931321],[-74.52254522545225,-45.580897770233676],[-74.52614526145261,-45.57076630661438],[-74.53334533345333,-45.558946265725204],[-74.5441454414544,-45.55050337937579],[-74.5549455494555,-45.54712622483603]]],[[[-74.34254342543426,-45.33774264337057],[-74.33534335343353,-45.35125126152963],[-74.32814328143282,-45.36644845695858],[-74.32454324543245,-45.37995707511764],[-74.31014310143101,-45.39008853873693],[-74.32094320943209,-45.395154270546584],[-74.33174331743317,-45.39853142508635],[-74.34614346143461,-45.40190857962611],[-74.35694356943569,-45.403597156896],[-74.37854378543786,-45.40022000235623],[-74.49014490144901,-45.354628416069396],[-74.51174511745117,-45.33774264337057],[-74.52614526145261,-45.315791138862096],[-74.52614526145261,-45.295528211623505],[-74.49734497344973,-45.2853967480042],[-74.4289442894429,-45.28033101619456],[-74.38934389343893,-45.28201959346444],[-74.37134371343713,-45.29721678889339],[-74.36774367743676,-45.30397109797292],[-74.34254342543426,-45.33774264337057]]],[[[-74.27414274142741,-45.2077221935896],[-74.27054270542705,-45.21616507993902],[-74.27774277742778,-45.22123081174866],[-74.28854288542885,-45.22460796628843],[-74.29934299342993,-45.271888129845145],[-74.30654306543065,-45.29383963435362],[-74.32454324543245,-45.30228252070303],[-74.3389433894339,-45.29890536616327],[-74.39294392943928,-45.26851097530538],[-74.40374403744038,-45.25837951168608],[-74.41454414544145,-45.2465594707969],[-74.42174421744217,-45.23136227536796],[-74.4181441814418,-45.19927930724019],[-74.40734407344073,-45.172262070922066],[-74.38934389343893,-45.15537629822324],[-74.36054360543605,-45.15706487549312],[-74.34254342543426,-45.165507761842534],[-74.3029430294303,-45.19759072997031],[-74.29574295742957,-45.20096788451007],[-74.28134281342813,-45.204345039049834],[-74.27414274142741,-45.2077221935896]]],[[[-74.34254342543426,-44.80584080335752],[-74.33174331743317,-44.81259511243705],[-74.31734317343174,-44.827792307866],[-74.31374313743137,-44.841300926025056],[-74.32814328143282,-44.84805523510459],[-74.39294392943928,-44.856498121454],[-74.41094410944109,-44.85143238964435],[-74.42534425344253,-44.84298950329494],[-74.45414454144542,-44.834546616945524],[-74.46854468544684,-44.82610373059611],[-74.47574475744757,-44.819349421516584],[-74.49014490144901,-44.79402076246834],[-74.52614526145261,-44.753494907991154],[-74.52614526145261,-44.74336344437186],[-74.52254522545225,-44.733231980752564],[-74.5081450814508,-44.72478909440315],[-74.49014490144901,-44.719723362593506],[-74.4649446494465,-44.716346208053736],[-74.44334443344432,-44.714657630783854],[-74.42534425344253,-44.71803478532362],[-74.4181441814418,-44.7298548262128],[-74.41094410944109,-44.74505202164174],[-74.40734407344073,-44.76362637161045],[-74.40734407344073,-44.77544641249963],[-74.40014400144001,-44.78726645338881],[-74.37854378543786,-44.797397917008105],[-74.35694356943569,-44.80415222608764],[-74.34254342543426,-44.80584080335752]]],[[[-74.48294482944829,-44.63698307636925],[-74.46854468544684,-44.638671653639136],[-74.46134461344613,-44.64711453998854],[-74.45414454144542,-44.65893458087773],[-74.45414454144542,-44.67413177630667],[-74.45774457744577,-44.68932897173561],[-74.46854468544684,-44.69777185808503],[-74.48294482944829,-44.69777185808503],[-74.56574565745657,-44.69270612627538],[-74.59454594545944,-44.68257466265608],[-74.60894608946089,-44.68426323992597],[-74.62334623346233,-44.68764039446573],[-74.63774637746377,-44.68932897173561],[-74.65214652146521,-44.68595181719585],[-74.66294662946629,-44.67919750811632],[-74.670146701467,-44.6707546217669],[-74.66654666546665,-44.65555742633796],[-74.65934659346593,-44.653868849068076],[-74.62694626946269,-44.628540190019834],[-74.62334623346233,-44.62178588094031],[-74.56934569345692,-44.62009730367042],[-74.55134551345513,-44.62178588094031],[-74.49734497344973,-44.635294499099366],[-74.48294482944829,-44.63698307636925]]],[[[-74.19494194941949,-44.49176543115934],[-74.1769417694177,-44.50358547204852],[-74.15534155341552,-44.53904559471605],[-74.13374133741337,-44.547488481065464],[-74.15534155341552,-44.55930852195465],[-74.24894248942489,-44.56606283103417],[-74.29934299342993,-44.57788287192336],[-74.32454324543245,-44.57957144919324],[-74.34614346143461,-44.57450571738359],[-74.35694356943569,-44.55930852195465],[-74.36774367743676,-44.54073417198594],[-74.36774367743676,-44.52553697655699],[-74.32814328143282,-44.5154055129377],[-74.29574295742957,-44.50020831750875],[-74.2561425614256,-44.5052740493184],[-74.2129421294213,-44.49345400842922],[-74.19494194941949,-44.49176543115934]]],[[[-74.39294392943928,-44.547488481065464],[-74.42174421744217,-44.547488481065464],[-74.49374493744936,-44.53566844017629],[-74.52254522545225,-44.527225553826874],[-74.54054540545405,-44.50189689477863],[-74.54774547745477,-44.4765682357304],[-74.54054540545405,-44.45461673122192],[-74.51534515345153,-44.43773095852309],[-74.50454504545046,-44.43435380398333],[-74.43974439744397,-44.43941953579297],[-74.4289442894429,-44.446173844872504],[-74.42534425344253,-44.4563053084918],[-74.42174421744217,-44.471502503920746],[-74.36414364143641,-44.41071372220497],[-74.34974349743497,-44.40227083585555],[-74.32094320943209,-44.39551652677603],[-74.30654306543065,-44.39382794950614],[-74.28494284942849,-44.40227083585555],[-74.2669426694267,-44.40564799039532],[-74.25974259742597,-44.41240229947485],[-74.23814238142381,-44.43941953579297],[-74.22374223742237,-44.46812534938098],[-74.24174241742418,-44.47825681300028],[-74.3029430294303,-44.485011122079804],[-74.35694356943569,-44.49851974023887],[-74.42174421744217,-44.5052740493184],[-74.41094410944109,-44.513716935667816],[-74.40374403744038,-44.52384839928711],[-74.39654396543965,-44.53566844017629],[-74.39294392943928,-44.547488481065464]]],[[[-73.78813788137882,-44.42253376309415],[-73.78453784537845,-44.44279669033274],[-73.7989379893799,-44.45461673122192],[-73.82053820538205,-44.46137104030145],[-73.86733867338673,-44.466436772111095],[-73.8889388893889,-44.45968246303157],[-73.90333903339032,-44.44448526760262],[-73.91053910539105,-44.41915660855438],[-73.91053910539105,-44.39720510404591],[-73.90333903339032,-44.3786307540772],[-73.8889388893889,-44.368499290457905],[-73.86373863738638,-44.37525359953743],[-73.85293852938528,-44.385385063156725],[-73.84573845738457,-44.403959413125435],[-73.83853838538386,-44.41240229947485],[-73.82413824138241,-44.41577945401462],[-73.7989379893799,-44.4174680312845],[-73.78813788137882,-44.42253376309415]]],[[[-73.72693726937268,-44.42422234036403],[-73.78813788137882,-44.38200790861696],[-73.74493744937449,-44.36343355864825],[-73.73053730537305,-44.36174498137837],[-73.69813698136981,-44.36174498137837],[-73.69093690936909,-44.3583678268386],[-73.68373683736837,-44.34823636321931],[-73.6729367293673,-44.346547785949426],[-73.65493654936549,-44.35161351775908],[-73.65133651336512,-44.3583678268386],[-73.65493654936549,-44.370187867727786],[-73.65853658536585,-44.385385063156725],[-73.66933669336693,-44.388762217696495],[-73.73053730537305,-44.388762217696495],[-73.69813698136981,-44.39889368131579],[-73.68013680136801,-44.407336567665205],[-73.6729367293673,-44.41915660855438],[-73.68013680136801,-44.43435380398333],[-73.69093690936909,-44.43773095852309],[-73.70893708937089,-44.43435380398333],[-73.72693726937268,-44.42422234036403]]],[[[-73.26253262532624,-44.388762217696495],[-73.28413284132841,-44.38200790861696],[-73.29853298532984,-44.368499290457905],[-73.3021330213302,-44.34992494048919],[-73.29133291332913,-44.32797343598072],[-73.28413284132841,-44.321219126901184],[-73.2589325893259,-44.30939908601201],[-73.24813248132482,-44.306021931472245],[-73.24453244532445,-44.31108766328189],[-73.21573215732157,-44.324596281440954],[-73.2121321213212,-44.324596281440954],[-73.1761317613176,-44.368499290457905],[-73.1761317613176,-44.37525359953743],[-73.26253262532624,-44.388762217696495]]],[[[-73.86373863738638,-44.33472774506025],[-73.89613896138961,-44.33472774506025],[-73.93213932139321,-44.32797343598072],[-73.96093960939609,-44.31446481782165],[-73.97533975339753,-44.28913615877342],[-73.96453964539646,-44.284070426963765],[-73.8781387813878,-44.29926762239271],[-73.84933849338493,-44.29589046785294],[-73.8421384213842,-44.28913615877342],[-73.83853838538386,-44.27562754061435],[-73.83493834938349,-44.27225038607459],[-73.82773827738276,-44.26887323153482],[-73.82053820538205,-44.265496076995056],[-73.81333813338134,-44.265496076995056],[-73.80613806138061,-44.26718465426494],[-73.80253802538024,-44.27056180880471],[-73.80253802538024,-44.27562754061435],[-73.78813788137882,-44.30939908601201],[-73.80613806138061,-44.324596281440954],[-73.83853838538386,-44.33303916779037],[-73.86373863738638,-44.33472774506025]]],[[[-74.38574385743857,-44.25029888156611],[-74.36774367743676,-44.24692172702635],[-74.34254342543426,-44.24692172702635],[-74.32094320943209,-44.24861030429623],[-74.3029430294303,-44.258741767915524],[-74.29214292142922,-44.27731611788423],[-74.28854288542885,-44.29757904512283],[-74.29934299342993,-44.30939908601201],[-74.31374313743137,-44.302644776932475],[-74.3389433894339,-44.29589046785294],[-74.37854378543786,-44.29251331331318],[-74.41094410944109,-44.284070426963765],[-74.4181441814418,-44.265496076995056],[-74.41094410944109,-44.258741767915524],[-74.40374403744038,-44.25367603610588],[-74.38574385743857,-44.25029888156611]]],[[[-73.74133741337413,-44.265496076995056],[-73.69813698136981,-44.241855995216696],[-73.67653676536764,-44.241855995216696],[-73.66573665736657,-44.265496076995056],[-73.67653676536764,-44.27731611788423],[-73.69813698136981,-44.29251331331318],[-73.72333723337233,-44.302644776932475],[-73.74133741337413,-44.29926762239271],[-73.75573755737557,-44.282381849693884],[-73.75933759337593,-44.262118922455294],[-73.7521375213752,-44.25367603610588],[-73.74133741337413,-44.265496076995056]]],[[[-74.27774277742778,-44.14898424537315],[-74.27054270542705,-44.15573855445268],[-74.25974259742597,-44.164181440802096],[-74.25974259742597,-44.17262432715151],[-74.2669426694267,-44.177690058961154],[-74.3389433894339,-44.18951009985034],[-74.38574385743857,-44.159115708992445],[-74.37854378543786,-44.15067282264303],[-74.35694356943569,-44.14560709083339],[-74.29574295742957,-44.143918513563506],[-74.28494284942849,-44.14560709083339],[-74.27774277742778,-44.14898424537315]]],[[[-73.88173881738817,-44.118589854515264],[-73.86733867338673,-44.13209847267432],[-73.86373863738638,-44.138852781753855],[-73.87453874538745,-44.14222993629362],[-73.8781387813878,-44.143918513563506],[-73.88173881738817,-44.14729566810327],[-73.88173881738817,-44.15236139991291],[-73.8781387813878,-44.15573855445268],[-73.87093870938709,-44.16080428626233],[-73.86733867338673,-44.159115708992445],[-73.86013860138601,-44.15573855445268],[-73.85293852938528,-44.15573855445268],[-73.8421384213842,-44.159115708992445],[-73.83493834938349,-44.157427131722564],[-73.83133831338313,-44.16080428626233],[-73.83133831338313,-44.17262432715151],[-73.83493834938349,-44.182755790770806],[-73.84573845738457,-44.18951009985034],[-73.86013860138601,-44.19457583165998],[-73.87093870938709,-44.19626440892986],[-73.91053910539105,-44.19457583165998],[-73.95373953739536,-44.18613294531057],[-73.98973989739898,-44.17093574988163],[-74.0149401494015,-44.14222993629362],[-73.95373953739536,-44.1050812363562],[-73.91773917739177,-44.098326927276666],[-73.88173881738817,-44.118589854515264]]],[[[-74.29574295742957,-44.01220948651265],[-74.27774277742778,-44.01220948651265],[-74.20934209342093,-44.018963795592185],[-74.29934299342993,-44.03247241375124],[-74.30654306543065,-44.02909525921148],[-74.31374313743137,-44.02065237286207],[-74.31734317343174,-44.0172752183223],[-74.31014310143101,-44.013898063782534],[-74.29574295742957,-44.01220948651265]]],[[[-73.22653226532265,-44.01220948651265],[-73.24093240932409,-44.00207802289336],[-73.27693276932769,-43.99363513654394],[-73.28413284132841,-43.98181509565476],[-73.28773287732876,-43.94973212752699],[-73.28413284132841,-43.93622350936793],[-73.27333273332734,-43.91933773666911],[-73.24813248132482,-43.90245196397028],[-73.21573215732157,-43.888943345811214],[-73.18333183331833,-43.87881188219192],[-73.15813158131581,-43.88218903673168],[-73.14373143731437,-43.89232050035098],[-73.14013140131401,-43.90414054124016],[-73.14373143731437,-43.932846354828165],[-73.14733147331474,-43.94466639571734],[-73.16533165331653,-43.971683632035464],[-73.16533165331653,-43.98181509565476],[-73.16173161731616,-43.997012291083706],[-73.15093150931509,-44.007143754703],[-73.15093150931509,-44.015586641052415],[-73.17253172531726,-44.02571810467171],[-73.18693186931868,-44.02571810467171],[-73.20493204932049,-44.02402952740183],[-73.21933219332193,-44.018963795592185],[-73.22653226532265,-44.01220948651265]]],[[[-73.61173611736118,-42.93658576559737],[-73.590135901359,-42.91294568381902],[-73.55413554135541,-42.91801141562866],[-73.49293492934929,-42.943340074676904],[-73.46053460534606,-42.94671722921667],[-73.4209342093421,-42.95516011556608],[-73.3849338493385,-42.97035731099503],[-73.36333363333632,-42.99062023823362],[-73.3741337413374,-42.99062023823362],[-73.38133381333813,-42.9923088155035],[-73.3849338493385,-42.99568597004327],[-73.39213392133921,-42.99906312458303],[-73.42453424534244,-42.99737454731315],[-73.44973449734496,-42.99399739277339],[-73.47133471334713,-42.983865929154085],[-73.49293492934929,-42.966980156455264],[-73.50373503735037,-42.96022584737573],[-73.53253532535325,-42.95516011556608],[-73.5469354693547,-42.94671722921667],[-73.55773557735577,-42.94165149740702],[-73.59733597335973,-42.93996292013714],[-73.61173611736118,-42.93658576559737]]],[[[-73.41373413734136,-42.52626148901588],[-73.41373413734136,-42.52963864355564],[-73.41733417334173,-42.53808152990506],[-73.4209342093421,-42.5431472617147],[-73.4209342093421,-42.54821299352435],[-73.4209342093421,-42.553278725334],[-73.4209342093421,-42.5634101889533],[-73.43173431734317,-42.554967302603885],[-73.47133471334713,-42.50093282996764],[-73.47853478534785,-42.49586709815799],[-73.48933489334892,-42.494178520888106],[-73.50013500135,-42.492489943618224],[-73.50733507335073,-42.49080136634834],[-73.5469354693547,-42.473915593649515],[-73.55413554135541,-42.470538439109745],[-73.56853568535685,-42.46716128456998],[-73.61173611736118,-42.451964089141036],[-73.6261362613626,-42.44352120279162],[-73.62973629736297,-42.43507831644221],[-73.62973629736297,-42.42494685282291],[-73.63333633336333,-42.40468392558432],[-73.6369363693637,-42.39792961650479],[-73.64773647736477,-42.392863884695146],[-73.65133651336512,-42.38610957561561],[-73.64773647736477,-42.37428953472644],[-73.62973629736297,-42.367535225646904],[-73.60813608136081,-42.369223802916785],[-73.54333543335433,-42.37935526653608],[-73.53253532535325,-42.392863884695146],[-73.52893528935289,-42.409749657393974],[-73.51813518135181,-42.42494685282291],[-73.41733417334173,-42.517818602666466],[-73.41373413734136,-42.52626148901588]]],[[[-73.0861308613086,-42.247646239485235],[-73.07893078930789,-42.25608912583465],[-73.07173071730718,-42.266220589453944],[-73.06813068130681,-42.27804063034312],[-73.07173071730718,-42.288172093962416],[-73.08973089730897,-42.29999213485159],[-73.11493114931149,-42.310123598470895],[-73.14013140131401,-42.31350075301066],[-73.15453154531545,-42.30168071212148],[-73.15813158131581,-42.30168071212148],[-73.17253172531726,-42.29323782577207],[-73.18333183331833,-42.28310636215277],[-73.18333183331833,-42.27804063034312],[-73.18693186931868,-42.27297489853347],[-73.19413194131941,-42.26115485764429],[-73.19413194131941,-42.249334816755116],[-73.18693186931868,-42.244269084945465],[-73.1761317613176,-42.249334816755116],[-73.16173161731616,-42.27297489853347],[-73.14373143731437,-42.27804063034312],[-73.12213122131222,-42.25271197129488],[-73.10773107731077,-42.2408919304057],[-73.0861308613086,-42.247646239485235]]],[[[115.66015660156603,-32.14995416558669],[115.6637566375664,-32.17359424736505],[115.67815678156785,-32.21580867911212],[115.68175681756821,-32.239448760890475],[115.6637566375664,-32.23438302908083],[115.66015660156603,-32.23269445181095],[115.65655656556567,-32.20905437003259],[115.64935649356494,-32.18372571098435],[115.64575645756457,-32.16346278374576],[115.66015660156603,-32.14995416558669]]],[[[-144.2840428404284,-27.57897549601423],[-144.28764287642878,-27.584041227823874],[-144.3020430204302,-27.595861268713058],[-144.30564305643057,-27.59923842325282],[-144.3020430204302,-27.600927000522702],[-144.3020430204302,-27.61950135049141],[-144.29844298442984,-27.6211899277613],[-144.30564305643057,-27.633009968650477],[-144.31284312843127,-27.63976427773001],[-144.32364323643236,-27.64145285499989],[-144.33804338043382,-27.633009968650477],[-144.34524345243452,-27.61612419595165],[-144.34884348843488,-27.585729805093763],[-144.33804338043382,-27.55871256877564],[-144.31644316443163,-27.551958259696107],[-144.29844298442984,-27.562089723315403],[-144.29124291242914,-27.570532609664816],[-144.2840428404284,-27.57897549601423]]],[[[166.80226802268027,-22.398420432014113],[166.8130681306813,-22.395043277474343],[166.8238682386824,-22.395043277474343],[166.8346683466835,-22.401797586553876],[166.84186841868421,-22.41192905017317],[166.84186841868421,-22.423749091062348],[166.84186841868421,-22.43050340014188],[166.8346683466835,-22.43219197741176],[166.82746827468276,-22.425437668332236],[166.82026820268203,-22.43219197741176],[166.81666816668167,-22.43556913195153],[166.80226802268027,-22.440634863761176],[166.80226802268027,-22.445700595570827],[166.82026820268203,-22.44907775011059],[166.82026820268203,-22.455832059190122],[166.80946809468094,-22.462586368269655],[166.80226802268027,-22.462586368269655],[166.79506795067954,-22.460897790999773],[166.78066780667808,-22.457520636460004],[166.769867698677,-22.45076632738047],[166.77706777067772,-22.437257709221413],[166.78426784267845,-22.425437668332236],[166.7878678786788,-22.415306204712934],[166.7878678786788,-22.406863318363527],[166.80226802268027,-22.398420432014113]]],[[[-138.8479884798848,-21.87158432381071],[-138.93078930789306,-21.87158432381071],[-138.91278912789127,-21.863141437461294],[-138.89118891188912,-21.866518592001057],[-138.86958869588696,-21.869895746540827],[-138.8479884798848,-21.87158432381071]]],[[[-135.45675456754566,-21.52880313802452],[-135.52515525155252,-21.486588706277452],[-135.50355503555036,-21.48996586081722],[-135.48555485554857,-21.496720169896747],[-135.46755467554675,-21.510228788055812],[-135.45675456754566,-21.52880313802452]]],[[[166.42426424264244,-20.71997462575071],[166.43146431464316,-20.71828604848082],[166.46026460264602,-20.71997462575071],[166.4530645306453,-20.728417512100123],[166.44226442264426,-20.733483243909774],[166.4170641706417,-20.7402375529893],[166.41346413464134,-20.735171821179648],[166.40626406264062,-20.731794666639885],[166.39906399063995,-20.728417512100123],[166.39186391863922,-20.726728934830234],[166.39906399063995,-20.721663203020597],[166.40626406264062,-20.71997462575071],[166.41346413464134,-20.71828604848082],[166.42426424264244,-20.71997462575071]]],[[[164.2246422464225,-20.137415467641176],[164.2390423904239,-20.157678394879767],[164.22104221042213,-20.154301240340004],[164.1922419224192,-20.139104044911065],[164.1706417064171,-20.12390684948211],[164.16344163441636,-20.10533249951341],[164.16344163441636,-20.06142949049645],[164.1706417064171,-20.06142949049645],[164.2138421384214,-20.117152540402586],[164.2246422464225,-20.137415467641176]]],[[[-174.36234362343623,-19.801388590934522],[-174.3479434794348,-19.79632285912487],[-174.3371433714337,-19.787879972775457],[-174.32994329943298,-19.77437135461639],[-174.32634326343265,-19.759174159187452],[-174.31914319143192,-19.76086273645734],[-174.30834308343083,-19.764239890997104],[-174.30474304743046,-19.767617045536866],[-174.31554315543156,-19.784502818235694],[-174.31554315543156,-19.804765745474285],[-174.31914319143192,-19.819962940903224],[-174.34074340743408,-19.821651518173113],[-174.3479434794348,-19.81827436363335],[-174.35154351543517,-19.8132086318237],[-174.35874358743587,-19.808142900014047],[-174.36234362343623,-19.801388590934522]]],[[[-175.0679506795068,-19.71189399563073],[-175.05355053550537,-19.723714036519922],[-175.04635046350464,-19.75073127283804],[-175.04635046350464,-19.78112566369593],[-175.06075060750607,-19.801388590934522],[-175.06075060750607,-19.794634281854982],[-175.06435064350643,-19.801388590934522],[-175.07155071550716,-19.79632285912487],[-175.07515075150752,-19.792945704585108],[-175.08595085950859,-19.787879972775457],[-175.08595085950859,-19.784502818235694],[-175.08595085950859,-19.78112566369593],[-175.10035100351004,-19.74904269556815],[-175.10035100351004,-19.740599809218736],[-175.09675096750968,-19.720336881980145],[-175.08955089550895,-19.71189399563073],[-175.08235082350822,-19.71189399563073],[-175.0679506795068,-19.71189399563073]]],[[[-174.30474304743046,-19.73384550013921],[-174.28674286742867,-19.723714036519922],[-174.27954279542794,-19.710205418360857],[-174.26874268742688,-19.696696800201792],[-174.2579425794258,-19.684876759312615],[-174.2507425074251,-19.700073954741555],[-174.25434254342542,-19.71189399563073],[-174.26154261542615,-19.723714036519922],[-174.26514265142652,-19.737222654678973],[-174.27234272342724,-19.74904269556815],[-174.28674286742867,-19.75073127283804],[-174.30114301143013,-19.743976963758513],[-174.30474304743046,-19.73384550013921]]],[[[-174.26154261542615,-19.63084228667637],[-174.24714247142472,-19.63590801848602],[-174.24354243542436,-19.64603948210531],[-174.2507425074251,-19.654482368454723],[-174.26514265142652,-19.65110521391496],[-174.2759427594276,-19.63590801848602],[-174.28674286742867,-19.61057935943778],[-174.2939429394294,-19.592005009469062],[-174.27954279542794,-19.595382164008825],[-174.27234272342724,-19.60382505035824],[-174.26874268742688,-19.625776554866718],[-174.26154261542615,-19.63084228667637]]],[[[179.7767977679777,-19.122580528441674],[179.78759787597875,-19.131023414791088],[179.79479794797948,-19.147909187489915],[179.79839798397984,-19.168172114728506],[179.8019980199802,-19.185057887427334],[179.77319773197735,-19.19181219650686],[179.7587975879759,-19.19181219650686],[179.74439744397444,-19.190123619236985],[179.74079740797407,-19.186746464697222],[179.74079740797407,-19.17661500107792],[179.7479974799748,-19.173237846538157],[179.7479974799748,-19.17154926926827],[179.75159751597516,-19.163106382918855],[179.7587975879759,-19.16648353745863],[179.76959769597698,-19.168172114728506],[179.77319773197735,-19.169860691998394],[179.76959769597698,-19.15466349656944],[179.7587975879759,-19.1394663011405],[179.75519755197553,-19.127646260251325],[179.7767977679777,-19.122580528441674]]],[[[178.52758527585274,-18.876048247038796],[178.53478534785347,-18.88449113338821],[178.53838538385384,-18.892934019737623],[178.53838538385384,-18.899688328817163],[178.53478534785347,-18.90981979243645],[178.52038520385207,-18.90644263789669],[178.51318513185134,-18.91657410151599],[178.50958509585098,-18.92670556513528],[178.4987849878499,-18.925016987865405],[178.4735847358474,-18.90644263789669],[178.4735847358474,-18.894622597007512],[178.48438484384843,-18.881113978848447],[178.48438484384843,-18.872671092499033],[178.49518495184952,-18.862539628879745],[178.5167851678517,-18.857473897070093],[178.5311853118531,-18.860851051609856],[178.52758527585274,-18.876048247038796]]],[[[177.64917649176493,-18.492741206775435],[177.6527765277653,-18.50456124766461],[177.65637656376566,-18.516381288553788],[177.65637656376566,-18.54002137033214],[177.6635766357664,-18.588990111158736],[177.64917649176493,-18.578858647539448],[177.63477634776348,-18.56197287484062],[177.62757627576275,-18.543398524871904],[177.62037620376208,-18.526512752173076],[177.62037620376208,-18.511315556744137],[177.62037620376208,-18.50456124766461],[177.63477634776348,-18.485986897695895],[177.63837638376384,-18.489364052235658],[177.6419764197642,-18.491052629505546],[177.64557645576457,-18.491052629505546],[177.64917649176493,-18.492741206775435]]],[[[178.12078120781212,-18.36947506607399],[178.1279812798128,-18.350900716105286],[178.13878138781388,-18.349212138835398],[178.14958149581497,-18.357655025184812],[178.1567815678157,-18.376229375153528],[178.15318153181533,-18.398180879661993],[178.14238142381424,-18.411689497821058],[178.1279812798128,-18.41506665236082],[178.10998109981102,-18.403246611471644],[178.11718117181175,-18.401558034201756],[178.12078120781212,-18.39986945693188],[178.12078120781212,-18.39649230239212],[178.11718117181175,-18.38973799331258],[178.12078120781212,-18.384672261502942],[178.12078120781212,-18.381295106963165],[178.12078120781212,-18.376229375153528],[178.12078120781212,-18.36947506607399]]],[[[179.43119431194316,-17.793670217043996],[179.43119431194316,-17.798735948853633],[179.43119431194316,-17.80211310339341],[179.42399423994243,-17.807178835203047],[179.4275942759428,-17.813933144282586],[179.43119431194316,-17.822376030632],[179.43119431194316,-17.83250749425129],[179.43119431194316,-17.840950380600702],[179.42399423994243,-17.851081844220005],[179.4167941679417,-17.846016112410354],[179.40959409594097,-17.82744176244165],[179.40239402394025,-17.818998876092238],[179.39519395193952,-17.807178835203047],[179.39159391593915,-17.793670217043996],[179.39519395193952,-17.78016159888493],[179.41319413194134,-17.788604485234345],[179.43119431194316,-17.793670217043996]]],[[[178.7255872558726,-17.724438548978796],[178.74358743587436,-17.749767208027038],[178.76158761587618,-17.761587248916214],[178.77958779587794,-17.766652980725866],[178.77598775987764,-17.773407289805405],[178.77598775987764,-17.776784444345168],[178.77238772387727,-17.78016159888493],[178.76518765187654,-17.773407289805405],[178.75798757987582,-17.776784444345168],[178.75438754387545,-17.776784444345168],[178.74718747187472,-17.77003013526563],[178.73638736387363,-17.768341557995754],[178.71838718387187,-17.729504280788447],[178.7147871478715,-17.710929930819745],[178.7255872558726,-17.724438548978796]]],[[[179.00639006390065,-17.621435335515955],[178.99918999189993,-17.60792671735689],[178.99918999189993,-17.5977952537376],[179.00639006390065,-17.59272952192795],[179.0207902079021,-17.601172408277364],[179.02439024390247,-17.611303871896666],[179.03879038790387,-17.641698262754545],[179.04239042390424,-17.6568954581835],[179.03159031590314,-17.6568954581835],[179.02799027990284,-17.645075417294308],[179.02439024390247,-17.63494395367502],[179.01719017190175,-17.62818964459548],[179.00639006390065,-17.621435335515955]]],[[[-142.57762577625778,-17.621435335515955],[-142.56682566825668,-17.601172408277364],[-142.63882638826388,-17.53194074021218],[-142.61362613626136,-17.547137935641118],[-142.57762577625778,-17.57246659468936],[-142.55962559625596,-17.599483831007475],[-142.57762577625778,-17.621435335515955]]],[[[168.20628206282066,-17.580909481038773],[168.20628206282066,-17.55051509018088],[168.23868238682388,-17.521809276592876],[168.27468274682747,-17.5099892357037],[168.29628296282965,-17.526875008402527],[168.2818828188282,-17.53025216294229],[168.26028260282607,-17.542072203831466],[168.2458824588246,-17.547137935641118],[168.22428224282243,-17.560646553800183],[168.21348213482133,-17.57077801741947],[168.20628206282066,-17.580909481038773]]],[[[-143.41283412834127,-17.457643340337327],[-143.4380343803438,-17.439068990368625],[-143.4740347403474,-17.43062610401921],[-143.45603456034559,-17.428937526749323],[-143.4380343803438,-17.434003258558974],[-143.42363423634237,-17.442446144908388],[-143.41283412834127,-17.457643340337327]]],[[[-145.3820538205382,-17.484660576655457],[-145.4360543605436,-17.417117485860146],[-145.4180541805418,-17.42724894947945],[-145.40725407254072,-17.442446144908388],[-145.3820538205382,-17.484660576655457]]],[[[168.32148321483214,-17.44751187671804],[168.32868328683287,-17.418806063130035],[168.33948339483396,-17.413740331320383],[168.35028350283505,-17.42556037220956],[168.36468364683645,-17.444134722178276],[168.37188371883718,-17.479594844845806],[168.35748357483578,-17.484660576655457],[168.3358833588336,-17.469463381226518],[168.32148321483214,-17.44751187671804]]],[[[-145.580055800558,-17.38334594046249],[-145.58725587255873,-17.36983732230344],[-145.5908559085591,-17.35801728141425],[-145.59445594455946,-17.34282008598531],[-145.59445594455946,-17.324245736016607],[-145.580055800558,-17.38334594046249]]],[[[177.0947709477095,-17.24488260433212],[177.11997119971198,-17.255014067951407],[177.13437134371344,-17.255014067951407],[177.1487714877149,-17.24488260433212],[177.16317163171635,-17.26514553157071],[177.15597155971562,-17.266834108840584],[177.15237152371526,-17.27021126338036],[177.15237152371526,-17.275276995189998],[177.1379713797138,-17.29553992242859],[177.12357123571235,-17.30735996331778],[177.1127711277113,-17.310737117857542],[177.10197101971022,-17.30060565423824],[177.09837098370986,-17.28371988153941],[177.10557105571058,-17.27021126338036],[177.10557105571058,-17.26007979976106],[177.0947709477095,-17.253325490681533],[177.0947709477095,-17.24488260433212]]],[[[168.389883898839,-17.067581990994427],[168.38628386283864,-17.072647722804078],[168.38268382683827,-17.079402031883603],[168.37548375483755,-17.086156340963143],[168.34308343083433,-17.09291065004267],[168.33228332283323,-17.094599227312557],[168.32148321483214,-17.089533495502906],[168.32868328683287,-17.07771345461373],[168.33948339483396,-17.065893413724552],[168.35028350283505,-17.059139104645013],[168.389883898839,-17.04056475467631],[168.4006840068401,-17.04056475467631],[168.4258842588426,-17.047319063755836],[168.4150841508415,-17.052384795565487],[168.389883898839,-17.067581990994427]]],[[[168.55908559085594,-16.944315850292995],[168.5446854468545,-16.942627273023106],[168.5338853388534,-16.93756154121347],[168.53028530285303,-16.929118654864055],[168.5338853388534,-16.91561003670499],[168.5338853388534,-16.89365853219651],[168.55188551885522,-16.87846133676757],[168.5770857708577,-16.876772759497683],[168.5986859868599,-16.8953471094664],[168.56988569885698,-16.93756154121347],[168.55908559085594,-16.944315850292995]]],[[[177.4439744397444,-16.86832987314827],[177.4115741157412,-16.891969954926637],[177.40437404374046,-16.902101418545925],[177.41517415174155,-16.90885572762545],[177.4115741157412,-16.917298613974864],[177.40797407974082,-16.924052923054404],[177.40437404374046,-16.93080723213393],[177.39357393573937,-16.93756154121347],[177.39357393573937,-16.93080723213393],[177.38637386373864,-16.922364345784516],[177.37197371973718,-16.902101418545925],[177.3791737917379,-16.89365853219651],[177.40437404374046,-16.881838491307334],[177.39717397173973,-16.866641295878395],[177.40797407974082,-16.861575564068744],[177.42957429574295,-16.863264141338618],[177.4439744397444,-16.86832987314827]]],[[[178.3331833318333,-16.794032473273433],[178.32958329583295,-16.814295400512023],[178.33678336783368,-16.824426864131325],[178.3331833318333,-16.829492595940977],[178.30798307983082,-16.827804018671088],[178.289982899829,-16.834558327750614],[178.28278282782827,-16.822738286861437],[178.2791827918279,-16.787278164193907],[178.28638286382863,-16.787278164193907],[178.29358293582936,-16.792343896003544],[178.30798307983082,-16.794032473273433],[178.3331833318333,-16.794032473273433]]],[[[179.91719917199174,-16.655569137143047],[179.88479884798852,-16.655569137143047],[179.89919899198992,-16.65050340533341],[179.90639906399065,-16.64881482806352],[179.909999099991,-16.64543767352376],[179.909999099991,-16.631929055364694],[179.91359913599138,-16.62855190082493],[179.92439924399247,-16.62855190082493],[179.93519935199356,-16.62517474628517],[179.9459994599946,-16.61842043720563],[179.95319953199532,-16.60828897358634],[179.95319953199532,-16.62855190082493],[179.9459994599946,-16.64374909625387],[179.93519935199356,-16.653880559873173],[179.91719917199174,-16.655569137143047]]],[[[178.58878588785888,-16.572828850918796],[178.5959859598596,-16.577894582728447],[178.6067860678607,-16.579583159998336],[178.61398613986142,-16.577894582728447],[178.62118621186215,-16.572828850918796],[178.61398613986142,-16.5829603145381],[178.6067860678607,-16.591403200887513],[178.59238592385924,-16.596468932697164],[178.57438574385748,-16.594780355427275],[178.56718567185675,-16.593091778157387],[178.56358563585638,-16.591403200887513],[178.55998559985602,-16.58802604634775],[178.58878588785888,-16.572828850918796]]],[[[168.32868328683287,-16.53905730552114],[168.3142831428314,-16.535680150981378],[168.30708307083074,-16.5238601100922],[168.29628296282965,-16.49853145104396],[168.3250832508325,-16.491777141964434],[168.3358833588336,-16.491777141964434],[168.35028350283505,-16.49853145104396],[168.36108361083615,-16.5137286464729],[168.36108361083615,-16.528925841901852],[168.35028350283505,-16.53905730552114],[168.32868328683287,-16.53905730552114]]],[[[-143.8160381603816,-16.53905730552114],[-143.82323823238232,-16.537368728251266],[-143.84843848438484,-16.493465719234308],[-143.8808388083881,-16.469825637455955],[-143.9132391323913,-16.458005596566778],[-143.9348393483935,-16.449562710217364],[-143.93123931239313,-16.449562710217364],[-143.90963909639095,-16.454628442027015],[-143.87723877238773,-16.459694173836652],[-143.86283862838627,-16.466448482916192],[-143.83403834038342,-16.49853145104396],[-143.82323823238232,-16.517105801012676],[-143.8160381603816,-16.53905730552114]]],[[[168.21348213482133,-16.47826852380537],[168.22428224282243,-16.44111982386795],[168.23508235082352,-16.432676937518536],[168.26028260282607,-16.429299782978774],[168.25308253082534,-16.444496978407713],[168.24948249482497,-16.479957101075257],[168.24228242282425,-16.495154296504197],[168.2278822788228,-16.5052857601235],[168.20988209882103,-16.5052857601235],[168.2026820268203,-16.495154296504197],[168.21348213482133,-16.47826852380537]]],[[[-144.25524255242553,-16.47826852380537],[-144.2588425884259,-16.458005596566778],[-144.26244262442623,-16.451251287487253],[-144.29124291242914,-16.41579116481971],[-144.27684276842768,-16.42592262843901],[-144.2588425884259,-16.44280840113784],[-144.25164251642516,-16.46138275110654],[-144.25524255242553,-16.47826852380537]]],[[[179.3627936279363,-16.326296569515932],[179.37719377193775,-16.329673724055695],[179.3879938799388,-16.333050878595458],[179.37719377193775,-16.339805187674983],[179.3627936279363,-16.34149376494487],[179.34479344793448,-16.339805187674983],[179.32679326793271,-16.333050878595458],[179.32679326793271,-16.326296569515932],[179.3627936279363,-16.326296569515932]]],[[[-144.3740437404374,-16.339805187674983],[-144.40644406444065,-16.329673724055695],[-144.42444424444244,-16.333050878595458],[-144.43524435244353,-16.319542260436393],[-144.4280442804428,-16.32123083770628],[-144.4280442804428,-16.322919414976155],[-144.4280442804428,-16.326296569515932],[-144.41364413644135,-16.32123083770628],[-144.39564395643956,-16.324607992246044],[-144.38124381243813,-16.333050878595458],[-144.3740437404374,-16.339805187674983]]],[[[-145.61245612456125,-16.052747051794924],[-145.70965709657096,-16.061189938144338],[-145.65925659256592,-16.042615588175636],[-145.63045630456304,-16.037549856365985],[-145.61245612456125,-16.052747051794924]]],[[[-140.11160111601117,-15.976761074650213],[-140.11880118801187,-15.96156387922126],[-140.1440014400144,-15.959875301951385],[-140.17280172801728,-15.976761074650213],[-140.15120151201512,-15.958186724681497],[-140.1260012600126,-15.953120992871845],[-140.1080010800108,-15.959875301951385],[-140.11160111601117,-15.976761074650213]]],[[[-145.1660516605166,-15.949743838332083],[-145.23445234452345,-15.888955056616311],[-145.220052200522,-15.899086520235599],[-145.1660516605166,-15.949743838332083]]],[[[167.2054720547206,-15.750491720485925],[167.18747187471877,-15.750491720485925],[167.1730717307173,-15.7437374114064],[167.14427144271446,-15.72347448416781],[167.129871298713,-15.718408752358158],[167.10107101071014,-15.711654443278618],[167.09027090270905,-15.703211556929205],[167.07227072270723,-15.676194320611089],[167.0758707587076,-15.649177084292958],[167.09387093870941,-15.628914157054368],[167.12627126271263,-15.622159847974842],[167.19827198271986,-15.630602734324256],[167.23427234272344,-15.640734197943544],[167.2378723787238,-15.65930854791226],[167.22347223472235,-15.689702938770154],[167.23067230672308,-15.718408752358158],[167.23427234272344,-15.742048834136511],[167.2054720547206,-15.750491720485925]]],[[[-175.62955629556296,-15.559682488989182],[-175.61155611556114,-15.573191107148247],[-175.61875618756187,-15.601896920736252],[-175.64035640356403,-15.623848425244717],[-175.6691566915669,-15.622159847974842],[-175.6871568715687,-15.601896920736252],[-175.68355683556837,-15.581633993497661],[-175.66555665556655,-15.566436798068708],[-175.62955629556296,-15.559682488989182]]],[[[167.12267122671227,-14.963614712720585],[167.10107101071014,-14.939974630942231],[167.09747097470978,-14.928154590053055],[167.11547115471154,-14.933220321862706],[167.1406714067141,-14.953483249101296],[167.15867158671585,-14.956860403641059],[167.14787147871482,-14.965303289990473],[167.1406714067141,-14.970369021800124],[167.129871298713,-14.968680444530236],[167.12267122671227,-14.963614712720585]]],[[[-148.0460804608046,-14.99738625811824],[-148.05328053280533,-14.983877639959175],[-148.06768067680676,-14.970369021800124],[-148.08568085680855,-14.95517182637117],[-148.1108811088111,-14.939974630942231],[-148.17568175681757,-14.921400280973515],[-148.13248132481326,-14.924777435513292],[-148.08928089280892,-14.936597476402468],[-148.05328053280533,-14.960237558180822],[-148.0460804608046,-14.99738625811824]]],[[[-148.62928629286293,-14.894383044655399],[-148.64728647286472,-14.87243154014692],[-148.69048690486903,-14.853857190178218],[-148.66888668886688,-14.85723434471798],[-148.640086400864,-14.865677231067394],[-148.6220862208622,-14.877497271956571],[-148.62928629286293,-14.894383044655399]]],[[[-145.1948519485195,-14.661359381411586],[-145.20565205652056,-14.674867999570651],[-145.22365223652235,-14.688376617729702],[-145.24165241652418,-14.698508081349004],[-145.25965259652597,-14.701885235888767],[-145.26325263252633,-14.69006519499959],[-145.25245252452524,-14.663047958681474],[-145.23085230852308,-14.620833526934405],[-145.24885248852488,-14.671490845030888],[-145.2560525605256,-14.693442349539353],[-145.23445234452345,-14.688376617729702],[-145.1948519485195,-14.661359381411586]]],[[[-146.25686256862568,-14.497567386232959],[-146.24606246062461,-14.475615881724494],[-146.2388623886239,-14.455352954485889],[-146.27126271262713,-14.435090027247298],[-146.24246242462425,-14.438467181787075],[-146.23166231662316,-14.457041531755777],[-146.23526235262352,-14.478993036264256],[-146.25686256862568,-14.497567386232959]]],[[[-145.0040500405004,-14.511076004392024],[-144.95364953649536,-14.463795840835303],[-144.91044910449105,-14.44015575905695],[-144.8888488884889,-14.41820425454847],[-144.9140491404914,-14.428335718167773],[-144.95724957249573,-14.431712872707536],[-145.0040500405004,-14.443532913596712],[-144.9860498604986,-14.431712872707536],[-144.9608496084961,-14.426647140897884],[-144.91764917649175,-14.423269986358122],[-144.8960489604896,-14.411449945468945],[-144.88524885248853,-14.408072790929182],[-144.8780487804878,-14.411449945468945],[-144.88164881648817,-14.421581409088247],[-144.88164881648817,-14.426647140897884],[-144.90324903249032,-14.441844336326838],[-144.93564935649357,-14.46041868629554],[-144.94644946449463,-14.463795840835303],[-144.95364953649536,-14.470550149914843],[-144.9860498604986,-14.500944540772736],[-145.0040500405004,-14.511076004392024]]],[[[-145.84645846458466,-14.367546936452001],[-145.8428584285843,-14.347284009213396],[-145.86085860858608,-14.343906854673634],[-145.9148591485915,-14.347284009213396],[-145.85725857258572,-14.337152545594108],[-145.83565835658356,-14.34221827740376],[-145.84645846458466,-14.367546936452001]]],[[[-169.46269462694627,-14.224017868511964],[-169.44469444694448,-14.230772177591504],[-169.44109441094412,-14.245969373020444],[-169.44829448294482,-14.256100836639732],[-169.4590945909459,-14.251035104830095],[-169.46629466294664,-14.259477991179509],[-169.4770947709477,-14.262855145719271],[-169.48429484294843,-14.261166568449383],[-169.49509495094952,-14.25778941390962],[-169.49869498694986,-14.266232300259034],[-169.50589505895059,-14.271298032068685],[-169.5130951309513,-14.271298032068685],[-169.52389523895238,-14.271298032068685],[-169.52389523895238,-14.259477991179509],[-169.52749527495274,-14.249346527560206],[-169.53469534695347,-14.240903641210792],[-169.5418954189542,-14.23752648667103],[-169.52749527495274,-14.225706445781853],[-169.50589505895059,-14.22232929124209],[-169.46269462694627,-14.224017868511964]]],[[[167.70227702277026,-13.619507205893967],[167.7130771307713,-13.626261514973493],[167.71667716677166,-13.639770133132558],[167.71667716677166,-13.656655905831386],[167.7130771307713,-13.668475946720562],[167.70587705877062,-13.671853101260325],[167.6878768787688,-13.67860741033985],[167.66627666276662,-13.681984564879613],[167.65187651876522,-13.681984564879613],[167.6446764467645,-13.692116028498916],[167.6338763387634,-13.693804605768804],[167.6338763387634,-13.683673142149502],[167.66987669876698,-13.63639297859278],[167.68427684276844,-13.624572937703604],[167.70227702277026,-13.619507205893967]]],[[[167.3278732787328,-13.509749683351586],[167.33507335073352,-13.523258301510651],[167.34587345873462,-13.528324033320288],[167.36027360273602,-13.524946878780526],[167.3710737107371,-13.516503992431112],[167.36747367473674,-13.543521228749242],[167.3566735667357,-13.55365269236853],[167.3386733867339,-13.55365269236853],[167.3170731707317,-13.551964115098656],[167.30627306273067,-13.536766919669702],[167.29547295472958,-13.519881146970874],[167.29547295472958,-13.504683951541935],[167.30987309873098,-13.489486756112996],[167.33507335073352,-13.482732447033456],[167.35307353073534,-13.492863910652758],[167.35307353073534,-13.506372528811823],[167.3278732787328,-13.509749683351586]]],[[[166.57546575465756,-13.236200165630592],[166.589865898659,-13.222691547471527],[166.61146611466114,-13.215937238392002],[166.63306633066333,-13.215937238392002],[166.64386643866442,-13.229445856551052],[166.64386643866442,-13.248020206519769],[166.62946629466296,-13.261528824678834],[166.61146611466114,-13.26828313375836],[166.59706597065974,-13.264905979218597],[166.589865898659,-13.258151670139057],[166.58266582665829,-13.25308593832942],[166.57906579065792,-13.244643051980006],[166.57546575465756,-13.236200165630592]]],[[[122.359823598236,-8.43219783281431],[122.38862388623886,-8.435574987354073],[122.41022410224105,-8.444017873703487],[122.42102421024214,-8.460903646402315],[122.41022410224105,-8.486232305450557],[122.37782377823777,-8.501429500879496],[122.35262352623528,-8.479477996371031],[122.34542345423455,-8.449083605513138],[122.359823598236,-8.43219783281431]]],[[[121.71181711817121,-8.288668764874288],[121.73341733417334,-8.293734496683925],[121.74421744217443,-8.312308846652641],[121.74421744217443,-8.33426035116112],[121.72981729817297,-8.351146123859934],[121.70821708217085,-8.35452327839971],[121.69381693816939,-8.344391814780408],[121.67581675816757,-8.308931692112878],[121.68661686616866,-8.303865960303227],[121.69021690216903,-8.297111651223688],[121.69741697416976,-8.29204591941405],[121.71181711817121,-8.288668764874288]]],[[[158.28458284582848,-7.4122971618051565],[158.28098280982812,-7.4207400481545704],[158.27738277382775,-7.430871511773873],[158.27738277382775,-7.441002975393161],[158.27738277382775,-7.452823016282352],[158.2629826298263,-7.444380129932938],[158.25578255782557,-7.437625820853398],[158.2485824858249,-7.4730859435209425],[158.23418234182344,-7.46295447990164],[158.2269822698227,-7.449445861742575],[158.21618216182162,-7.439314398123287],[158.1945819458195,-7.437625820853398],[158.1945819458195,-7.432560089043747],[158.2089820898209,-7.417362893614808],[158.21618216182162,-7.417362893614808],[158.22338223382235,-7.419051470884696],[158.2485824858249,-7.395411389106329],[158.27018270182703,-7.390345657296692],[158.27018270182703,-7.417362893614808],[158.2737827378274,-7.415674316344919],[158.28098280982812,-7.413985739075045],[158.28458284582848,-7.4122971618051565]]],[[[154.19134191341914,-4.4640412485899645],[154.22014220142205,-4.475861289479141],[154.24174241742418,-4.499501371257509],[154.25254252542527,-4.526518607575625],[154.25254252542527,-4.555224421163629],[154.23094230942309,-4.580553080211871],[154.2057420574206,-4.572110193862457],[154.1841418414184,-4.546781534814215],[154.1841418414184,-4.519764298496099],[154.19134191341914,-4.5298957621153875],[154.19854198541987,-4.5518472666238665],[154.2057420574206,-4.56029015297328],[154.21654216542169,-4.568733039322694],[154.2237422374224,-4.56704446205282],[154.2381423814238,-4.5518472666238665],[154.24174241742418,-4.528207184845513],[154.22734227342272,-4.502878525797271],[154.20214202142023,-4.484304175828555],[154.1841418414184,-4.4724841349393785],[154.1841418414184,-4.474172712209267],[154.1841418414184,-4.475861289479141],[154.18054180541804,-4.47754986674903],[154.17694176941768,-4.479238444018918],[154.18054180541804,-4.4724841349393785],[154.1841418414184,-4.469106980399616],[154.19134191341914,-4.4640412485899645]]],[[[154.1517415174152,-4.438712589541723],[154.14814148141483,-4.416761085033258],[154.13734137341373,-4.394809580524779],[154.13374133741337,-4.377923807825951],[154.14454144541446,-4.369480921476537],[154.1517415174152,-4.3796123850958395],[154.15534155341555,-4.398186735064542],[154.15894158941592,-4.438712589541723],[154.1517415174152,-4.438712589541723]]],[[[152.4849248492485,-4.136457258232724],[152.50292502925032,-4.153343030931552],[152.50652506525068,-4.171917380900268],[152.50292502925032,-4.19049173086897],[152.49212492124923,-4.210754658107561],[152.4849248492485,-4.210754658107561],[152.48132481324814,-4.209066080837687],[152.45612456124564,-4.202311771758147],[152.45252452524528,-4.200623194488273],[152.45252452524528,-4.187114576329208],[152.44892448924492,-4.176983112709905],[152.4417244172442,-4.168540226360491],[152.4309243092431,-4.163474494550854],[152.45612456124564,-4.1465887218520265],[152.46332463324632,-4.136457258232724],[152.4741247412474,-4.122948640073659],[152.4849248492485,-4.131391526423073],[152.4849248492485,-4.136457258232724]]],[[[153.719737197372,-3.999682499372227],[153.73773737737378,-4.0013710766421156],[153.74853748537487,-4.0148796948011665],[153.7449374493745,-4.03007689023012],[153.7341373413734,-4.040208353849408],[153.719737197372,-4.038519776579534],[153.70893708937092,-4.03007689023012],[153.69813698136983,-4.02332258115058],[153.680136801368,-4.026699735690343],[153.68733687336874,-4.016568272071055],[153.70893708937092,-4.0064368084517525],[153.719737197372,-3.999682499372227]]],[[[121.21861218612185,5.821082902265545],[121.22941229412294,5.816017170455893],[121.2330123301233,5.810951438646256],[121.22941229412294,5.800819975026954],[121.22581225812257,5.79913139775708],[121.19701197011972,5.800819975026954],[121.16101161011613,5.787311356867889],[121.14661146611468,5.788999934137777],[121.13581135811359,5.807574284106494],[121.13581135811359,5.821082902265545],[121.14301143011431,5.83459152042461],[121.1538115381154,5.843034406774024],[121.1646116461165,5.848100138583675],[121.1790117901179,5.846411561313786],[121.19341193411935,5.839657252234261],[121.20781207812081,5.831214365884847],[121.21861218612185,5.821082902265545]]],[[[121.6290162901629,6.6569286508574805],[121.6290162901629,6.589385560062183],[121.62181621816217,6.567434055553704],[121.6146161461615,6.560679746474165],[121.61101611016113,6.5691226328235786],[121.60741607416077,6.591074137332058],[121.60021600216004,6.606271332760997],[121.58941589415895,6.619779950920062],[121.58221582215822,6.631599991809239],[121.58941589415895,6.63666572361889],[121.60021600216004,6.645108609968304],[121.60741607416077,6.66368295993702],[121.61821618216186,6.672125846286434],[121.6290162901629,6.6569286508574805]]],[[[134.27234272342724,7.074007236518511],[134.27954279542797,7.072318659248623],[134.28314283142834,7.06894150470886],[134.28314283142834,7.062187195629335],[134.2867428674287,7.055432886549795],[134.27954279542797,7.050367154740158],[134.27234272342724,7.03348138204133],[134.27954279542797,7.019972763882265],[134.2759427594276,7.016595609342502],[134.26514265142652,7.016595609342502],[134.2579425794258,7.01321845480274],[134.2435424354244,6.992955527564135],[134.2327423274233,6.984512641214721],[134.22914229142293,6.989578373024372],[134.23634236342366,7.0081527229930884],[134.27234272342724,7.074007236518511]]],[[[134.4631446314463,7.293522281603259],[134.4487444874449,7.2901451270634965],[134.45234452344522,7.281702240714083],[134.45954459544595,7.27157077709478],[134.4631446314463,7.263127890745366],[134.45954459544595,7.256373581665841],[134.44514445144455,7.252996427126078],[134.42714427144273,7.252996427126078],[134.41634416344164,7.247930695316427],[134.39114391143914,7.224290613538074],[134.3767437674377,7.219224881728422],[134.3659436594366,7.220913458998311],[134.3551435514355,7.227667768077836],[134.34794347943483,7.237799231697139],[134.34794347943483,7.249619272586315],[134.34794347943483,7.268193622555017],[134.35154351543514,7.27157077709478],[134.38394383943842,7.237799231697139],[134.38754387543878,7.239487808967013],[134.40194401944018,7.246242118046553],[134.43794437944382,7.27832508617432],[134.44514445144455,7.286767972523734],[134.44514445144455,7.29858801341291],[134.44154441544418,7.310408054302087],[134.44154441544418,7.3171623633816125],[134.4487444874449,7.315473786111738],[134.45594455944558,7.3120966315719755],[134.45954459544595,7.307030899762324],[134.4631446314463,7.301965167952673],[134.4631446314463,7.293522281603259]]],[[[134.47034470344704,7.362753949668459],[134.48834488344886,7.357688217858808],[134.51354513545135,7.3475567542395055],[134.5279452794528,7.332359558810566],[134.52074520745208,7.3120966315719755],[134.51354513545135,7.308719477032213],[134.50274502745026,7.318850940651501],[134.4955449554496,7.33404813608044],[134.49194491944922,7.342491022429854],[134.47754477544777,7.3475567542395055],[134.46674466744668,7.344179599699743],[134.4487444874449,7.328982404270803],[134.4487444874449,7.342491022429854],[134.4487444874449,7.355999640588919],[134.45594455944558,7.362753949668459],[134.47034470344704,7.362753949668459]]],[[[72.17172171721717,10.809140157499044],[72.17172171721717,10.829403084737635],[72.1789217892179,10.847977434706337],[72.18612186121862,10.85810889832564],[72.18972189721899,10.864863207405165],[72.19692196921969,10.873306093754579],[72.20052200522005,10.87837182556423],[72.20052200522005,10.864863207405165],[72.18972189721899,10.83615739381716],[72.17172171721717,10.809140157499044]]],[[[121.4058140581406,12.062064491751997],[121.41301413014133,12.046867296323057],[121.4166141661417,12.02998152362423],[121.41301413014133,12.01478432819529],[121.40221402214024,12.002964287306114],[121.38421384213842,12.001275710036225],[121.37341373413733,12.011407173655527],[121.3626136261363,12.026604369084467],[121.3626136261363,12.043490141783295],[121.3626136261363,12.05024445086282],[121.36621366213666,12.07050737810141],[121.36621366213666,12.080638841720713],[121.35901359013593,12.087393150800239],[121.35541355413557,12.094147459879778],[121.3626136261363,12.104278923499066],[121.35901359013593,12.11272180984848],[121.35901359013593,12.114410387118369],[121.36621366213666,12.111033232578606],[121.4058140581406,12.062064491751997]]],[[[53.24993249932501,12.121164696197894],[53.267932679326805,12.129607582547308],[53.2859328593286,12.127919005277434],[53.29673296732969,12.121164696197894],[53.30753307533075,12.117787541658132],[53.31113311133112,12.111033232578606],[53.27873278732787,12.114410387118369],[53.26433264332644,12.114410387118369],[53.24993249932501,12.121164696197894]]],[[[53.05193051930519,12.17519916883414],[53.06993069930701,12.17519916883414],[53.084330843308436,12.165067705214852],[53.0879308793088,12.148181932516025],[53.0879308793088,12.13467331435696],[53.07353073530737,12.129607582547308],[53.05553055530555,12.127919005277434],[53.02673026730267,12.13973904616661],[53.00513005130051,12.156624818865438],[52.983529835298356,12.163379127944964],[52.98712987129872,12.171822014294378],[53.00513005130051,12.176887746104029],[53.015930159301604,12.17519916883414],[53.02673026730267,12.180264900643792],[53.03753037530376,12.180264900643792],[53.05193051930519,12.17519916883414]]],[[[43.42903429034291,12.673329463449534],[43.44343443434434,12.666575154370008],[43.44343443434434,12.663197999830246],[43.45063450634507,12.653066536210943],[43.447034470344704,12.637869340782004],[43.43623436234364,12.632803608972353],[43.42903429034291,12.634492186242241],[43.41823418234182,12.646312227131418],[43.41103411034112,12.653066536210943],[43.40023400234003,12.64968938167118],[43.3930339303393,12.653066536210943],[43.389433894338964,12.666575154370008],[43.396633966339664,12.67164088617966],[43.407434074340756,12.673329463449534],[43.42903429034291,12.673329463449534]]],[[[111.19611196111964,15.77524590822405],[111.19251192511928,15.776934485493939],[111.19251192511928,15.778623062763828],[111.19611196111964,15.785377371843353],[111.19971199712,15.788754526383116],[111.20691206912068,15.788754526383116],[111.20691206912068,15.787065949113241],[111.20691206912068,15.78200021730359],[111.20331203312037,15.778623062763828],[111.19611196111964,15.77524590822405]]],[[[111.76491764917648,16.043729694135408],[111.75411754117545,16.045418271405282],[111.75411754117545,16.04710684867517],[111.76131761317612,16.04879542594506],[111.76491764917648,16.045418271405282],[111.76491764917648,16.043729694135408]]],[[[55.83475834758349,17.49084041442488],[55.831158311583124,17.50097187804417],[55.831158311583124,17.502660455314057],[55.83835838358385,17.509414764393583],[55.849158491584916,17.514480496203234],[55.86355863558637,17.519546228012885],[55.881558815588164,17.50772618712371],[55.892358923589256,17.504349032583946],[55.874358743587436,17.49590614623453],[55.84555845558455,17.49590614623453],[55.83475834758349,17.49084041442488]]],[[[37.265772657726586,20.854486336031215],[37.27657276572768,20.84773202695169],[37.280172801728014,20.8460434496818],[37.28377283772838,20.832534831522736],[37.272972729727314,20.766680317997313],[37.265772657726586,20.749794545298485],[37.254972549725494,20.749794545298485],[37.24417244172443,20.77343462707684],[37.24417244172443,20.80382901793473],[37.25137251372516,20.834223408792624],[37.265772657726586,20.854486336031215]]],[[[67.37647376473765,24.062783148808336],[67.39087390873911,24.049274530649285],[67.41247412474127,24.049274530649285],[67.45927459274594,24.062783148808336],[67.47727477274773,24.05096310791916],[67.48447484474846,24.049274530649285],[67.46647466474667,24.04083164429987],[67.45927459274594,24.027323026140806],[67.45567455674558,24.01381440798174],[67.4268742687427,24.007060098902215],[67.4088740887409,24.01381440798174],[67.39447394473945,24.027323026140806],[67.38367383673838,24.04083164429987],[67.38007380073802,24.045897376109508],[67.37647376473765,24.062783148808336]]],[[[54.52794527945281,26.310279495022215],[54.53154531545317,26.306902340482452],[54.53874538745387,26.303525185942675],[54.542345423454236,26.29677087686315],[54.5459454594546,26.290016567783624],[54.52794527945281,26.251179290576317],[54.52074520745208,26.251179290576317],[54.509945099451016,26.25455644511608],[54.499144991449924,26.25962217692573],[54.491944919449196,26.266376486005257],[54.491944919449196,26.278196526894448],[54.48834488344883,26.288327990513736],[54.48834488344883,26.298459454133038],[54.491944919449196,26.310279495022215],[54.499144991449924,26.31703380410174],[54.50634506345065,26.320410958641503],[54.517145171451716,26.31872238137163],[54.52794527945281,26.310279495022215]]],[[[127.81027810278101,26.73580096703266],[127.81027810278101,26.70709515344464],[127.78507785077852,26.702029421635004],[127.75987759877597,26.712160885254292],[127.75627756277567,26.72904665795312],[127.7670776707767,26.73411238976277],[127.79587795877961,26.73073523522301],[127.81027810278101,26.73580096703266]]],[[[56.3207632076321,26.83373844868585],[56.3279632796328,26.860755685003966],[56.342363423634254,26.879330034972682],[56.367563675636774,26.889461498591984],[56.40356403564036,26.892838653131747],[56.410764107641086,26.862444262273854],[56.37836378363784,26.8388041804955],[56.342363423634254,26.826984139606324],[56.3207632076321,26.83373844868585]]],[[[127.99387993879941,27.092090770977904],[128.00108001080014,27.092090770977904],[127.99387993879941,27.066762111929663],[127.97587975879759,27.039744875611532],[127.9506795067951,27.017793371103068],[127.92547925479255,27.009350484753654],[127.93627936279364,27.024547680182593],[127.98667986679868,27.07858215281884],[127.99387993879941,27.092090770977904]]],[[[56.47196471964722,27.10559938913697],[56.48276482764828,27.10053365732732],[56.493564935649374,27.095467925517667],[56.50436504365044,27.08871361643814],[56.50436504365044,27.087025039168253],[56.5079650796508,27.075204998279077],[56.50436504365044,27.06169638012001],[56.493564935649374,27.051564916500723],[56.486364863648646,27.049876339230835],[56.48276482764828,27.046499184691072],[56.46476464764649,27.04312203015131],[56.435964359643606,27.054942071040486],[56.435964359643606,27.080270730088728],[56.4539645396454,27.102222234597193],[56.47196471964722,27.10559938913697]]],[[[50.30510305103053,29.272044026396472],[50.32310323103232,29.263601140047058],[50.33390333903341,29.258535408237407],[50.33030330303305,29.24164963553858],[50.33390333903341,29.22476386283975],[50.326703267032684,29.20956666741081],[50.31590315903159,29.207878090140923],[50.30510305103053,29.21463239922045],[50.2979029790298,29.238272480998816],[50.29070290702907,29.25684683096752],[50.28350283502837,29.268666871856695],[50.294302943029436,29.275421180936235],[50.30510305103053,29.272044026396472]]],[[[48.08028080280803,30.004886561525552],[48.073080730807305,29.998132252446027],[48.06228062280624,29.988000788826724],[48.05868058680588,29.982935057017087],[48.02988029880299,29.971115016127897],[48.022680226802265,29.969426438858022],[48.015480154801566,29.974492170667673],[48.0118801188012,29.9812464797472],[48.00828008280084,29.98631221155685],[48.022680226802265,29.994755097906264],[48.04428044280445,30.018395179684617],[48.05508055080551,30.025149488764143],[48.09468094680949,30.02852664330392],[48.10908109081092,30.02852664330392],[48.105481054810554,30.018395179684617],[48.08028080280803,30.004886561525552]]],[[[130.2187021870219,30.470933888013178],[130.2439024390244,30.464179578933653],[130.26190261902622,30.447293806234825],[130.26190261902622,30.435473765345648],[130.24030240302403,30.435473765345648],[130.2331023310233,30.42365372445647],[130.21150211502118,30.420276569916695],[130.19350193501936,30.43885091988541],[130.19350193501936,30.452359538044476],[130.189901899019,30.46080242439389],[130.17190171901723,30.45404811531435],[130.1647016470165,30.469245310743304],[130.15030150301504,30.477688197092718],[130.14310143101432,30.489508237981894],[130.1647016470165,30.489508237981894],[130.189901899019,30.47599961982283],[130.20070200702008,30.48106535163248],[130.2187021870219,30.470933888013178]]],[[[-65.60885608856088,43.48311032972927],[-65.6160561605616,43.5084389887775],[-65.60525605256052,43.51350472058715],[-65.55845558455584,43.51012756604737],[-65.56925569255692,43.49493037061845],[-65.57285572855729,43.47635602064972],[-65.58725587255873,43.46284740249067],[-65.5980559805598,43.444273052521964],[-65.60885608856088,43.42738727982314],[-65.63045630456304,43.422321548013485],[-65.61965619656196,43.435830166172536],[-65.62685626856268,43.44596162979184],[-65.6340563405634,43.452715938871364],[-65.64485644856448,43.45947024795089],[-65.65565655656556,43.46284740249067],[-65.64485644856448,43.471290288840066],[-65.6340563405634,43.47635602064972],[-65.60885608856088,43.48311032972927]]],[[[-73.8889388893889,45.396268376506356],[-73.87453874538745,45.39457979923648],[-73.86373863738638,45.38951406742683],[-73.85653856538565,45.38951406742683],[-73.85653856538565,45.38613691288705],[-73.85653856538565,45.3810711810774],[-73.87093870938709,45.3810711810774],[-73.8781387813878,45.37938260380753],[-73.89973899738997,45.369251140188226],[-73.90693906939069,45.36756256291835],[-73.91413914139142,45.36587398564848],[-73.93213932139321,45.36756256291835],[-73.95013950139501,45.369251140188226],[-73.95013950139501,45.37093971745813],[-73.95373953739536,45.372628294728],[-73.96093960939609,45.37938260380753],[-73.97533975339753,45.391202644696705],[-73.98253982539825,45.39795695377623],[-73.98613986139861,45.40639984012566],[-73.98253982539825,45.413154149205184],[-73.97893978939788,45.41484272647506],[-73.97533975339753,45.41484272647506],[-73.91773917739177,45.40977699466541],[-73.90693906939069,45.40639984012566],[-73.90333903339032,45.404711262855756],[-73.89253892538925,45.39795695377623],[-73.8889388893889,45.396268376506356]]],[[[-73.93213932139321,45.489140126349895],[-73.93573935739357,45.489140126349895],[-73.93933939339394,45.4908287036198],[-73.94293942939429,45.494205858159546],[-73.94653946539465,45.49758301269932],[-73.94653946539465,45.502648744508974],[-73.94293942939429,45.507714476318625],[-73.93933939339394,45.511091630858374],[-73.93213932139321,45.51278020812825],[-73.89613896138961,45.52460024901745],[-73.89253892538925,45.52460024901745],[-73.88533885338853,45.52291167174755],[-73.88533885338853,45.51278020812825],[-73.89973899738997,45.50096016723907],[-73.91773917739177,45.49251728088967],[-73.93213932139321,45.489140126349895]]],[[[-63.88443884438844,50.19858213205276],[-63.913239132391325,50.20533644113229],[-63.92763927639275,50.22222221383112],[-63.9240392403924,50.239107986529945],[-63.90243902439023,50.25430518195887],[-63.89883898838988,50.24923945014922],[-63.89523895238952,50.247550872879344],[-63.888038880388805,50.24586229560947],[-63.85923859238592,50.217156482021466],[-63.85563855638556,50.20533644113229],[-63.88443884438844,50.19858213205276]]],[[[-79.7569975699757,53.5217021991819],[-79.76779767797677,53.531833662801205],[-79.76779767797677,53.53521081734095],[-79.76779767797677,53.53858797188073],[-79.76419764197641,53.54703085823013],[-79.70299702997029,53.51663646737225],[-79.70659706597066,53.5115707355626],[-79.71379713797138,53.509882158292726],[-79.72459724597246,53.50819358102285],[-79.73179731797318,53.513259312832474],[-79.74979749797498,53.518325044642125],[-79.7569975699757,53.5217021991819]]],[[[-77.9209792097921,58.33245884107771],[-77.81657816578165,58.308818759299356],[-77.69777697776978,58.254784286663096],[-77.6689766897669,58.25140713212335],[-77.6689766897669,58.24465282304382],[-77.69777697776978,58.241275668504045],[-77.73737737377374,58.249718554853445],[-77.94977949779498,58.32739310926806],[-77.94977949779498,58.33245884107771],[-77.92457924579246,58.334147418347584],[-77.91377913779138,58.33245884107771],[-77.9209792097921,58.33245884107771]]],[[[-78.6409864098641,58.62795986330718],[-78.62298622986229,58.616139822418006],[-78.48258482584825,58.55197388616247],[-78.45738457384573,58.54690815435282],[-78.45738457384573,58.53846526800339],[-78.63018630186302,58.5958768951794],[-78.68418684186841,58.62120555422766],[-78.6769867698677,58.62795986330718],[-78.67338673386733,58.63133701784696],[-78.66618666186662,58.63471417238671],[-78.65538655386554,58.63471417238671],[-78.65538655386554,58.641468481466234],[-78.67338673386733,58.64822279054576],[-78.68778687786877,58.660042831434964],[-78.69498694986949,58.67692860413379],[-78.69498694986949,58.69719153137237],[-78.68778687786877,58.68874864502297],[-78.68058680586806,58.68368291321332],[-78.67338673386733,58.678617181403666],[-78.66258662586625,58.67524002686389],[-78.65178651786518,58.66341998597471],[-78.61938619386194,58.64484563600601],[-78.60858608586085,58.63471417238671],[-78.61578615786158,58.62964844057706],[-78.62298622986229,58.62964844057706],[-78.63378633786337,58.62964844057706],[-78.6409864098641,58.63471417238671],[-78.6409864098641,58.62795986330718]]],[[[1.95301953019532,-70.60392433262538],[1.999819998199996,-70.59717002354586],[2.064620646206464,-70.60054717808562],[2.1222212222122323,-70.61743295078445],[2.1438214382143883,-70.64951591891221],[2.115021150211504,-70.67484457796046],[2.0538205382054002,-70.67315600069058],[1.9890198901989038,-70.65458165072187],[1.9494194941949559,-70.62925299167362],[1.95301953019532,-70.6224986825941],[1.95301953019532,-70.61743295078445],[1.95301953019532,-70.6123672189748],[1.95301953019532,-70.60392433262538]]],[[[-28.21168211682115,-56.71368771057031],[-28.19368193681936,-56.70355624695101],[-28.172081720817204,-56.7052448242209],[-28.16848168481684,-56.71537628784019],[-28.18648186481863,-56.72550775145949],[-28.21168211682115,-56.72550775145949],[-28.21168211682115,-56.71368771057031]]],[[[77.53217532175324,-38.7083882818111],[77.54657546575464,-38.72358547724004],[77.550175501755,-38.73033978631957],[77.54297542975428,-38.7370940953991],[77.53577535775361,-38.73878267266898],[77.51777517775179,-38.73540551812922],[77.51417514175142,-38.73033978631957],[77.5069750697507,-38.71345401362074],[77.51057510575106,-38.705011127271334],[77.51777517775179,-38.701633972731564],[77.52857528575288,-38.705011127271334],[77.53217532175324,-38.7083882818111]]],[[[-130.74430744307443,-23.924894283988067],[-130.74070740707407,-23.924894283988067],[-130.74070740707407,-23.928271438527837],[-130.7479074790748,-23.93333717033748],[-130.75150751507516,-23.93502574760737],[-130.75150751507516,-23.929960015797718],[-130.75150751507516,-23.926582861257955],[-130.7479074790748,-23.926582861257955],[-130.74430744307443,-23.924894283988067]]],[[[-176.2127621276213,-22.32412303213927],[-176.20556205562056,-22.32750018667904],[-176.19836198361983,-22.332565918488683],[-176.2019620196202,-22.335943073028453],[-176.20556205562056,-22.339320227568216],[-176.20916209162093,-22.339320227568216],[-176.21636216362162,-22.335943073028453],[-176.219962199622,-22.32918876394892],[-176.219962199622,-22.32412303213927],[-176.2127621276213,-22.32412303213927]]],[[[40.37980379803798,-22.32412303213927],[40.37980379803798,-22.315680145789855],[40.38700387003871,-22.317368723059744],[40.38700387003871,-22.339320227568216],[40.36900369003692,-22.362960309346576],[40.347403474034735,-22.364648886616457],[40.340203402034035,-22.359583154806806],[40.33300333003331,-22.34776311391763],[40.32940329403294,-22.3308773412188],[40.33660336603367,-22.320745877599506],[40.347403474034735,-22.317368723059744],[40.35820358203583,-22.315680145789855],[40.365403654036555,-22.319057300329625],[40.365403654036555,-22.32918876394892],[40.36180361803619,-22.334254495758564],[40.35820358203583,-22.339320227568216],[40.35460354603546,-22.344385959377867],[40.36180361803619,-22.351140268457392],[40.372603726037255,-22.34945169118751],[40.38340383403835,-22.339320227568216],[40.37980379803798,-22.32412303213927]]],[[[-136.73836738367385,-21.31773097928918],[-136.7419674196742,-21.31941955655907],[-136.74556745567455,-21.3160424020193],[-136.7419674196742,-21.31773097928918],[-136.73836738367385,-21.31773097928918]]],[[[154.3929439294393,-21.03067284340912],[154.38934389343893,-21.028984266139247],[154.3929439294393,-21.028984266139247],[154.3929439294393,-21.03067284340912]]],[[[-139.1359913599136,-20.799337757435197],[-139.14319143191432,-20.80271491197496],[-139.14319143191432,-20.804403489244848],[-139.14679146791468,-20.804403489244848],[-139.1359913599136,-20.799337757435197]]],[[[-157.31257312573126,-20.155989817609893],[-157.319773197732,-20.171187013038832],[-157.3269732697327,-20.179629899388246],[-157.34137341373415,-20.176252744848483],[-157.34857348573485,-20.16105554941953],[-157.34857348573485,-20.142481199450827],[-157.33777337773378,-20.137415467641176],[-157.32337323373233,-20.142481199450827],[-157.31257312573126,-20.155989817609893]]],[[[-158.07938079380793,-19.993886399701154],[-158.0829808298083,-20.012460749669856],[-158.09738097380975,-20.01921505874938],[-158.11538115381154,-20.01583790420962],[-158.12978129781297,-20.00064070878068],[-158.1369813698137,-19.977000627002326],[-158.1189811898119,-19.97362347246255],[-158.09738097380975,-19.982066358811963],[-158.07938079380793,-19.993886399701154]]],[[[-158.26658266582666,-19.831782981792415],[-158.2809828098281,-19.821651518173113],[-158.27738277382775,-19.823340095443],[-158.2737827378274,-19.826717249982764],[-158.26658266582666,-19.831782981792415]]],[[[-178.22518225182253,-19.84022586814183],[-178.22878228782287,-19.835160136332178],[-178.22878228782287,-19.828405827252638],[-178.22518225182253,-19.821651518173113],[-178.21438214382144,-19.814897209093587],[-178.2179821798218,-19.821651518173113],[-178.22158221582217,-19.828405827252638],[-178.22518225182253,-19.84022586814183]]],[[[-158.28818288182882,-19.809831477283936],[-158.29538295382955,-19.81658578636346],[-158.2989829898299,-19.81658578636346],[-158.29538295382955,-19.814897209093587],[-158.28818288182882,-19.809831477283936]]],[[[-158.92538925389255,-19.269486750921473],[-158.9361893618936,-19.264421019111822],[-158.95058950589507,-19.25428955549252],[-158.9541895418954,-19.245846669143106],[-158.9469894698947,-19.242469514603343],[-158.93978939789397,-19.247535246412994],[-158.9361893618936,-19.257666710032296],[-158.93258932589325,-19.264421019111822],[-158.91818918189182,-19.26104386457206],[-158.91818918189182,-19.264421019111822],[-158.92178921789218,-19.26610959638171],[-158.92538925389255,-19.269486750921473]]],[[[-178.41958419584196,-19.168172114728506],[-178.40158401584017,-19.132711992060976],[-178.39438394383944,-19.127646260251325],[-178.39078390783908,-19.146220610220027],[-178.39078390783908,-19.16648353745863],[-178.3979839798398,-19.17154926926827],[-178.40878408784087,-19.17154926926827],[-178.41958419584196,-19.17830357834781],[-178.42318423184233,-19.17661500107792],[-178.42318423184233,-19.173237846538157],[-178.41958419584196,-19.168172114728506]]],[[[-178.89838898388984,-18.877736824308684],[-178.90558905589057,-18.881113978848447],[-178.91638916389164,-18.88449113338821],[-178.92358923589236,-18.88449113338821],[-178.93078930789306,-18.882802556118335],[-178.919989199892,-18.872671092499033],[-178.90558905589057,-18.86422820614962],[-178.89478894788948,-18.857473897070093],[-178.88038880388802,-18.85409674253033],[-178.8839888398884,-18.860851051609856],[-178.88758887588875,-18.86760536068938],[-178.89478894788948,-18.872671092499033],[-178.89838898388984,-18.877736824308684]]],[[[-174.65394653946538,-18.816948042592912],[-174.66474664746647,-18.80175084716396],[-174.6611466114661,-18.78655365173502],[-174.65034650346504,-18.779799342655494],[-174.63234632346322,-18.78486507446513],[-174.62514625146252,-18.798373692624196],[-174.6287462874629,-18.8085051562435],[-174.63954639546395,-18.816948042592912],[-174.65394653946538,-18.816948042592912]]],[[[-178.5059850598506,-18.66497608830346],[-178.51678516785168,-18.649778892874522],[-178.50958509585095,-18.637958851985346],[-178.4987849878499,-18.632893120175694],[-178.4879848798488,-18.64133600652511],[-178.48438484384843,-18.651467470144397],[-178.49158491584916,-18.65991035649381],[-178.4987849878499,-18.66666466557335],[-178.5059850598506,-18.66497608830346]]],[[[-179.32319323193232,-17.77003013526563],[-179.33759337593375,-17.75821009437645],[-179.3339933399334,-17.73963574440775],[-179.31959319593196,-17.724438548978796],[-179.2979929799298,-17.72274997170892],[-179.279992799928,-17.73963574440775],[-179.279992799928,-17.75989867164634],[-179.2979929799298,-17.773407289805405],[-179.32319323193232,-17.77003013526563]]],[[[-179.15759157591575,-17.471151958496392],[-179.1719917199172,-17.457643340337327],[-179.17559175591757,-17.439068990368625],[-179.16479164791647,-17.42556037220956],[-179.14679146791468,-17.423871794939686],[-179.1359913599136,-17.435691835828862],[-179.13239132391323,-17.454266185797565],[-179.1359913599136,-17.469463381226518],[-179.15759157591575,-17.471151958496392]]],[[[-179.15759157591575,-17.271899840650235],[-179.15759157591575,-17.253325490681533],[-179.14679146791468,-17.248259758871882],[-179.1359913599136,-17.251636913411645],[-179.1287912879129,-17.26514553157071],[-179.13239132391323,-17.276965572459886],[-179.13959139591395,-17.28371988153941],[-179.15039150391505,-17.282031304269537],[-179.15759157591575,-17.271899840650235]]],[[[-144.10764107641077,-16.72311222793836],[-144.0788407884079,-16.718046496128707],[-144.06444064440643,-16.731555114287772],[-144.05364053640537,-16.75012946425649],[-144.050040500405,-16.760260927875777],[-144.06444064440643,-16.7484408869866],[-144.07524075240752,-16.729866537017898],[-144.08964089640898,-16.721423650668484],[-144.1112411124111,-16.739998000637186],[-144.1112411124111,-16.734932268827535],[-144.1112411124111,-16.731555114287772],[-144.10764107641077,-16.72311222793836]]],[[[-168.1630816308163,-14.533027508900503],[-168.17388173881739,-14.5228960452812],[-168.1630816308163,-14.519518890741438],[-168.15948159481596,-14.521207468011326],[-168.1630816308163,-14.533027508900503]]],[[[-169.6750967509675,-14.17504912768537],[-169.6678966789668,-14.168294818605844],[-169.6570965709657,-14.168294818605844],[-169.64629646296464,-14.171671973145607],[-169.63549635496355,-14.176737704955258],[-169.66069660696607,-14.188557745844435],[-169.67149671496716,-14.188557745844435],[-169.6750967509675,-14.17504912768537]]],[[[166.67266672666727,-13.45571521071534],[166.65826658266582,-13.415189356238159],[166.67266672666727,-13.40843504715862],[166.68706687066873,-13.423632242587573],[166.67266672666727,-13.45571521071534]]],[[[168.81108811088114,-12.266956812717922],[168.82188821888218,-12.266956812717922],[168.82548825488254,-12.282154008146861],[168.81828818288182,-12.285531162686624],[168.80388803888042,-12.290596894496275],[168.7966879668797,-12.282154008146861],[168.80388803888042,-12.273711121797447],[168.81108811088114,-12.266956812717922]]],[[[-171.0719107191072,-11.052869755672262],[-171.0719107191072,-11.061312642021676],[-171.08271082710826,-11.066378373831327],[-171.08631086310862,-11.059624064751787],[-171.08631086310862,-11.051181178402373],[-171.0719107191072,-11.052869755672262]]],[[[-165.82305823058232,-10.88232345141411],[-165.8158581585816,-10.88063487414422],[-165.81225812258123,-10.88063487414422],[-165.80865808658086,-10.88063487414422],[-165.81225812258123,-10.889077760493635],[-165.81945819458196,-10.890766337763523],[-165.82305823058232,-10.889077760493635],[-165.82305823058232,-10.88232345141411]]],[[[152.09612096120964,-10.402767506767418],[152.09972099721,-10.390947465878241],[152.1105211052111,-10.390947465878241],[152.10692106921073,-10.401078929497544],[152.09612096120964,-10.402767506767418]]],[[[165.74385743857442,-10.421341856736134],[165.7366573665737,-10.424719011275897],[165.72945729457297,-10.423030434006009],[165.72225722257224,-10.41289897038672],[165.72225722257224,-10.401078929497544],[165.7258572585726,-10.394324620418004],[165.73305733057333,-10.389258888608353],[165.74745747457473,-10.394324620418004],[165.75465754657546,-10.40614466130718],[165.75465754657546,-10.416276124926483],[165.74385743857442,-10.421341856736134]]],[[[-160.98460984609846,-10.382504579528828],[-160.99540995409953,-10.374061693179414],[-160.99540995409953,-10.370684538639651],[-160.9810098100981,-10.380816002258939],[-160.9378093780938,-10.423030434006009],[-160.98460984609846,-10.382504579528828]]],[[[151.86931869318693,-10.34535587959141],[151.86931869318693,-10.338601570511884],[151.87651876518765,-10.333535838702232],[151.86931869318693,-10.34535587959141]]],[[[151.85131851318516,-10.259238438827396],[151.8621186211862,-10.250795552477982],[151.86571865718656,-10.254172707017744],[151.85491854918553,-10.264304170637033],[151.85131851318516,-10.259238438827396]]],[[[-161.0890108901089,-10.034657661932997],[-161.0710107101071,-10.027903352853457],[-161.07461074610745,-10.03634623920287],[-161.0890108901089,-10.044789125552285],[-161.0890108901089,-10.034657661932997]]],[[[179.90639906399065,-9.399752608457092],[179.90639906399065,-9.418326958425808],[179.90639906399065,-9.420015535695683],[179.90279902799028,-9.399752608457092],[179.89919899198992,-9.386243990298041],[179.90279902799028,-9.387932567567915],[179.90639906399065,-9.399752608457092]]],[[[179.8667986679867,-9.344029558550972],[179.87399873998743,-9.347406713090734],[179.8775987759878,-9.3609153312498],[179.8775987759878,-9.362603908519674],[179.87039870398706,-9.350783867630497],[179.8667986679867,-9.344029558550972]]],[[[160.63540635406355,-7.891853106451848],[160.64620646206464,-7.9273132291193775],[160.64260642606428,-7.929001806389266],[160.63180631806318,-7.9273132291193775],[160.61380613806142,-7.9002959928012615],[160.6066060660607,-7.888475951912085],[160.61380613806142,-7.876655911022908],[160.62460624606246,-7.87496733375302],[160.62820628206282,-7.880033065562671],[160.63540635406355,-7.891853106451848]]],[[[130.06750067500678,-7.761832656670876],[130.07830078300782,-7.765209811210639],[130.08550085500855,-7.771964120290178],[130.08190081900818,-7.787161315719118],[130.06750067500678,-7.787161315719118],[130.05310053100533,-7.7770298520998296],[130.0459004590046,-7.775341274829941],[130.03150031500314,-7.775341274829941],[130.02430024300241,-7.771964120290178],[130.02790027900278,-7.768586965750416],[130.03150031500314,-7.761832656670876],[130.03870038700387,-7.761832656670876],[130.0459004590046,-7.763521233940764],[130.0567005670057,-7.761832656670876],[130.06750067500678,-7.761832656670876]]],[[[130.00630006300065,-7.7246839567334575],[130.01710017100174,-7.743258306702174],[130.00990009900102,-7.750012615781699],[129.99549995499956,-7.748324038511811],[129.99549995499956,-7.744946883972048],[129.9918999189992,-7.738192574892523],[129.98469984699847,-7.7331268430828715],[129.9810998109981,-7.721306802193695],[129.97749977499774,-7.712863915844281],[129.9810998109981,-7.704421029494867],[129.9918999189992,-7.7027324522249785],[130.0027000270003,-7.706109606764755],[130.00630006300065,-7.714552493114169],[130.00630006300065,-7.7246839567334575]]],[[[129.6750967509675,-7.571023425174133],[129.65349653496537,-7.560891961554844],[129.65349653496537,-7.547383343395779],[129.65709657096573,-7.535563302506603],[129.66429664296646,-7.537251879776477],[129.68229682296823,-7.554137652475305],[129.68949689496895,-7.559203384284956],[129.70029700297005,-7.559203384284956],[129.70749707497077,-7.554137652475305],[129.7146971469715,-7.5575148070150675],[129.71109711097114,-7.569334847904244],[129.69309693096932,-7.577777734253658],[129.68229682296823,-7.577777734253658],[129.6750967509675,-7.571023425174133]]],[[[129.12429124291242,-6.993529998874251],[129.1170911709117,-6.983398535254949],[129.1170911709117,-6.973267071635661],[129.12429124291242,-6.966512762556121],[129.1350913509135,-6.961447030746484],[129.1458914589146,-6.961447030746484],[129.15309153091533,-6.976644226175424],[129.14949149491497,-6.991841421604363],[129.14229142291424,-6.996907153414014],[129.1350913509135,-6.998595730683903],[129.12429124291242,-6.993529998874251]]],[[[129.48429484294843,-6.755440603820787],[129.48069480694807,-6.7605063356304385],[129.4770947709477,-6.755440603820787],[129.4770947709477,-6.743620562931611],[129.4878948789488,-6.728423367502671],[129.49869498694989,-6.72335763569302],[129.50949509495098,-6.72335763569302],[129.520295202952,-6.721669058423132],[129.52749527495274,-6.72335763569302],[129.5310953109531,-6.731800522042434],[129.52749527495274,-6.738554831121959],[129.5166951669517,-6.763883490170201],[129.51309513095134,-6.768949221979852],[129.50229502295025,-6.770637799249741],[129.49149491494916,-6.76557206744009],[129.4878948789488,-6.7605063356304385],[129.4878948789488,-6.753752026550913],[129.48429484294843,-6.755440603820787]]],[[[130.01350013500138,-6.328230554540468],[130.00630006300065,-6.3248534000007055],[129.99909999099992,-6.316410513651292],[129.99909999099992,-6.309656204571752],[130.0027000270003,-6.306279050031989],[130.0207002070021,-6.313033359111529],[130.02430024300241,-6.318099090921166],[130.0207002070021,-6.3248534000007055],[130.01350013500138,-6.328230554540468]]],[[[127.55107551075514,-5.512647733187123],[127.5546755467555,-5.505893424107597],[127.56187561875618,-5.517713464996774],[127.55107551075514,-5.512647733187123]]],[[[127.5546755467555,-5.490696228678644],[127.55827558275581,-5.499139115028058],[127.54747547475478,-5.495761960488295],[127.5546755467555,-5.490696228678644]]],[[[127.78867788677888,-5.4096445197242815],[127.79947799477998,-5.399513056104979],[127.80307803078034,-5.407955942454393],[127.78867788677888,-5.4096445197242815]]],[[[127.77787777877779,-5.348855738008496],[127.77787777877779,-5.34210142892897],[127.78507785077852,-5.3522328925482725],[127.77787777877779,-5.348855738008496]]],[[[131.98631986319862,-5.318461347150617],[131.9971199711997,-5.311707038071077],[132.0079200792008,-5.313395615340966],[132.01512015120153,-5.3302813880397935],[132.00072000720007,-5.372495819786863],[131.99351993519934,-5.377561551596514],[131.98631986319862,-5.377561551596514],[131.97911979119795,-5.3792501288663885],[131.97551975519758,-5.3876930152158025],[131.9647196471965,-5.389381592485691],[131.96111961119612,-5.372495819786863],[131.96111961119612,-5.343790006198859],[131.97911979119795,-5.323527078960268],[131.98631986319862,-5.318461347150617]]],[[[129.75789757897581,-4.523141453035862],[129.76149761497618,-4.518075721226211],[129.77949779497794,-4.5248300303057505],[129.7686976869769,-4.54002722573469],[129.75789757897581,-4.523141453035862]]],[[[144.6008460084601,-3.4998636274869455],[144.6116461164612,-3.503240782026708],[144.61884618846187,-3.5083065138363594],[144.61884618846187,-3.5167494001857733],[144.6152461524615,-3.520126554725536],[144.60804608046084,-3.518437977455662],[144.6008460084601,-3.518437977455662],[144.59724597245975,-3.5167494001857733],[144.59364593645938,-3.5133722456460106],[144.59364593645938,-3.506617936566485],[144.6008460084601,-3.4998636274869455]]],[[[144.06084060840607,-3.2144940688767747],[144.07524075240752,-3.197608296177947],[144.0968409684097,-3.189165409828533],[144.1220412204122,-3.2144940688767747],[144.1328413284133,-3.229691264305714],[144.11484114841147,-3.2482656142744304],[144.08244082440825,-3.2398227279250165],[144.06084060840607,-3.2144940688767747]]],[[[142.81882818828188,-1.7336118031896461],[142.81882818828188,-1.711660298681167],[142.83322833228334,-1.6964631032522277],[142.85122851228516,-1.693085948712465],[142.86562865628656,-1.7032174123317532],[142.85842858428583,-1.7049059896016416],[142.84402844028443,-1.7133488759510556],[142.82962829628298,-1.7234803395703437],[142.81882818828188,-1.7336118031896461]]],[[[73.09693096930971,-0.5988878778284743],[73.10413104131041,-0.6073307641778882],[73.11133111331114,-0.6174622277971764],[73.1149311493115,-0.6292822686863531],[73.11853118531187,-0.6411023095755439],[73.11133111331114,-0.6411023095755439],[73.09333093330935,-0.6039536096381255],[73.08973089730898,-0.5853792596694092],[73.10413104131041,-0.5786249505898837],[73.10413104131041,-0.5870678369392976],[73.10053100531007,-0.5870678369392976],[73.09693096930971,-0.5904449914790604],[73.09693096930971,-0.5938221460188231],[73.09693096930971,-0.5988878778284743]]],[[[-160.03060030600307,-0.3759956782039495],[-160.0090000900009,-0.3726185236641868],[-160.01260012600125,-0.3827499872834892],[-160.02340023400234,-0.38950429636301465],[-160.03060030600307,-0.3759956782039495]]],[[[-176.48636486364865,0.1964320162862805],[-176.48276482764828,0.1964320162862805],[-176.47916479164792,0.19812059355616896],[-176.47556475564755,0.19812059355616896],[-176.47556475564755,0.19305486174651776],[-176.47916479164792,0.18967770720675503],[-176.48276482764828,0.1913662844766293],[-176.48276482764828,0.19474343901639202],[-176.48636486364865,0.1964320162862805]]],[[[-176.46116461164613,0.225137829874285],[-176.45756457564576,0.21838352079475953],[-176.4647646476465,0.22176067533452226],[-176.46116461164613,0.225137829874285]]],[[[134.3119431194312,0.7570396698873338],[134.32634326343265,0.7654825562367478],[134.34434344343447,0.7654825562367478],[134.34794347943483,0.7519739380776826],[134.33714337143374,0.7367767426487433],[134.32274322743228,0.7300224335692178],[134.30474304743046,0.7333995881089805],[134.3011430114301,0.7435310517282687],[134.3119431194312,0.7570396698873338]]],[[[-176.63756637566377,0.7908112152849895],[-176.64116641166413,0.8026312561741662],[-176.64116641166413,0.8043198334440547],[-176.63756637566377,0.8076969879838174],[-176.63756637566377,0.8026312561741662],[-176.63756637566377,0.7908112152849895]]],[[[-29.406894068940687,0.885371542398417],[-29.381693816938167,0.8921258514779566],[-29.356493564935647,0.8819943878586542],[-29.345693456934555,0.8667971924297149],[-29.34929349293492,0.8532885742706497],[-29.356493564935647,0.8414685333814731],[-29.370893708937075,0.8330256470320592],[-29.388893888938895,0.8313370697621707],[-29.41049410494105,0.8347142243019334],[-29.421294212942115,0.8448456879212358],[-29.42489424894248,0.8583543060803009],[-29.42489424894248,0.8718629242393519],[-29.406894068940687,0.885371542398417]]],[[[154.8069480694807,0.9275859741454866],[154.81414814148144,0.9258973968756123],[154.8177481774818,0.9225202423358354],[154.81414814148144,0.9174545105261984],[154.80334803348035,0.9174545105261984],[154.79974799747998,0.9242088196057239],[154.80334803348035,0.9275859741454866],[154.8069480694807,0.9275859741454866]]],[[[154.71334713347136,0.964734674082905],[154.7205472054721,0.9698004058925562],[154.73134731347312,0.9664232513527935],[154.72774727747276,0.9613575195431423],[154.71334713347136,0.9613575195431423],[154.71334713347136,0.964734674082905]]],[[[154.79254792547925,0.9714889831624447],[154.79614796147962,0.9664232513527935],[154.79254792547925,0.9630460968130308],[154.78534785347853,0.9630460968130308],[154.7781477814778,0.9681118286226678],[154.7781477814778,0.973177560432319],[154.78534785347853,0.9748661377022074],[154.79254792547925,0.9714889831624447]]],[[[131.23751237512374,1.0187691467191513],[131.23751237512374,1.025523455798691],[131.24471244712447,1.0356549194179792],[131.24471244712447,1.0289006103384537],[131.23751237512374,1.0187691467191513]]],[[[131.25551255512556,1.0694264648156349],[131.2627126271263,1.0761807738951603],[131.26991269912702,1.0728036193553976],[131.26991269912702,1.060983578466221],[131.26631266312666,1.052540692116807],[131.25551255512556,1.044097805767393],[131.2519125191252,1.052540692116807],[131.25551255512556,1.0694264648156349]]],[[[126.39546395463958,1.3395988279968662],[126.40266402664025,1.3328445189173408],[126.39186391863922,1.3108930144088617],[126.39186391863922,1.3041387053293363],[126.38466384663849,1.28556435536062],[126.38106381063812,1.2838757780907315],[126.35946359463594,1.315958746218513],[126.35226352263521,1.3193359007582757],[126.3486634866349,1.3227130552980384],[126.35226352263521,1.3362216734571035],[126.3630636306363,1.3446645598065174],[126.37026370263703,1.3480417143462802],[126.37746377463776,1.3480417143462802],[126.38466384663849,1.342975982536629],[126.39546395463958,1.3395988279968662]]],[[[-91.82071820718207,1.386878991553587],[-91.81351813518135,1.3851904142836986],[-91.80991809918099,1.3767475279342847],[-91.81351813518135,1.3716817961246335],[-91.8171181711817,1.3683046415848708],[-91.82431824318243,1.3716817961246335],[-91.82431824318243,1.3767475279342847],[-91.82431824318243,1.3835018370138101],[-91.82071820718207,1.386878991553587]]],[[[-91.82071820718207,1.3936333006331125],[-91.8171181711817,1.395321877903001],[-91.82071820718207,1.391944723363224],[-91.82071820718207,1.3936333006331125]]],[[[-92.01152011520115,1.6587399320046927],[-92.00432004320042,1.663805663814344],[-92.00072000720007,1.6604285092745812],[-92.00072000720007,1.6519856229251673],[-92.00792007920079,1.6502970456552788],[-92.01152011520115,1.6587399320046927]]],[[[73.36333363333634,1.7904489590555528],[73.3669336693367,1.7904489590555528],[73.37413374133743,1.7887603817856643],[73.37053370533707,1.7820060727061389],[73.3669336693367,1.7836946499760131],[73.3669336693367,1.7870718045157759],[73.36333363333634,1.7904489590555528]]],[[[73.39933399333995,1.8056461544844922],[73.40293402934032,1.8022689999447294],[73.40293402934032,1.7972032681350782],[73.40293402934032,1.7955146908651898],[73.39933399333995,1.7955146908651898],[73.39573395733959,1.7955146908651898],[73.39573395733959,1.7988918454049667],[73.39573395733959,1.800580422674841],[73.39933399333995,1.8039575772146037],[73.39933399333995,1.8056461544844922]]],[[[73.45333453334536,1.8275976589929712],[73.46413464134642,1.8259090817230827],[73.45693456934569,1.8208433499134316],[73.45333453334536,1.8208433499134316],[73.45333453334536,1.8242205044531943],[73.45333453334536,1.8275976589929712]]],[[[73.51813518135182,1.8427948544219106],[73.5109351093511,1.8377291226122594],[73.50013500135003,1.8275976589929712],[73.49653496534967,1.8292862362628455],[73.50013500135003,1.8326633908026082],[73.5037350373504,1.8343519680724967],[73.50733507335073,1.8377291226122594],[73.51813518135182,1.8427948544219106]]],[[[73.53613536135362,1.8698120907400408],[73.53253532535325,1.861369204390627],[73.53253532535325,1.8596806271207384],[73.53253532535325,1.8630577816605012],[73.53253532535325,1.866434936200264],[73.53613536135362,1.8681235134701524],[73.53613536135362,1.8698120907400408]]],[[[73.2517325173252,1.8917635952485057],[73.24453244532447,1.888386440708743],[73.24453244532447,1.8934521725183941],[73.24453244532447,1.8951407497882684],[73.24813248132483,1.8934521725183941],[73.2517325173252,1.8917635952485057]]],[[[73.55413554135544,1.9322894497256868],[73.55053550535507,1.9120265224870963],[73.54693546935471,1.901895058867808],[73.53973539735398,1.8934521725183941],[73.53973539735398,1.8917635952485057],[73.55053550535507,1.9255351406461614],[73.55413554135544,1.9322894497256868]]],[[[73.55053550535507,1.976192458742645],[73.55053550535507,1.9660609951233425],[73.54693546935471,1.967749572393231],[73.54693546935471,1.9711267269329937],[73.55053550535507,1.976192458742645]]],[[[73.31653316533166,1.9913896541715843],[73.32013320133203,1.98970107690171],[73.32373323733239,1.9880124996318216],[73.32373323733239,1.9863239223619331],[73.32013320133203,1.9829467678221704],[73.31653316533166,1.9846353450920589],[73.31653316533166,1.9863239223619331],[73.31653316533166,1.9880124996318216],[73.31653316533166,1.9913896541715843]]],[[[73.54333543335434,2.0268497768391285],[73.54333543335434,2.0217840450294773],[73.53973539735398,2.0217840450294773],[73.54333543335434,2.02516119956924],[73.54333543335434,2.0268497768391285]]],[[[73.38853388533886,2.033604085918654],[73.38853388533886,2.0285383541090027],[73.3849338493385,2.030226931378891],[73.38853388533886,2.033604085918654]]],[[[173.289532895329,2.033604085918654],[173.28593285932862,2.038669817728305],[173.28593285932862,2.0403583949981794],[173.28233282332826,2.042046972268068],[173.2787327873279,2.0437355495379563],[173.27153271532717,2.0454241268078306],[173.26433264332644,2.0437355495379563],[173.26433264332644,2.0369812404584167],[173.2679326793268,2.020095467759589],[173.2679326793268,2.011652581410175],[173.2679326793268,2.0048982723306494],[173.26433264332644,1.998143963251124],[173.2571325713257,1.9964553859812355],[173.2571325713257,1.998143963251124],[173.26073260732608,2.0015211177908867],[173.26073260732608,2.006586849600538],[173.26073260732608,2.0133411586800634],[173.26073260732608,2.0184068904897146],[173.2571325713257,2.0285383541090027],[173.2571325713257,2.033604085918654],[173.26073260732608,2.0437355495379563],[173.26073260732608,2.050489858617482],[173.26433264332644,2.055555590427133],[173.2679326793268,2.0589327449668957],[173.27513275132753,2.0589327449668957],[173.2787327873279,2.0589327449668957],[173.28233282332826,2.055555590427133],[173.289532895329,2.050489858617482],[173.29313293132935,2.0437355495379563],[173.29313293132935,2.042046972268068],[173.29673296732966,2.033604085918654],[173.29673296732966,2.0133411586800634],[173.3039330393304,1.9930782314414728],[173.31113311133112,1.9846353450920589],[173.31113311133112,1.9812581905522961],[173.31473314733148,1.9795696132824077],[173.31833318333184,1.976192458742645],[173.31833318333184,1.9745038814727565],[173.31833318333184,1.9711267269329937],[173.31473314733148,1.967749572393231],[173.31473314733148,1.9660609951233425],[173.31113311133112,1.9643724178534683],[173.30753307533075,1.9626838405835798],[173.3039330393304,1.9609952633137055],[173.29673296732966,1.9609952633137055],[173.28593285932862,1.9643724178534683],[173.2679326793268,1.967749572393231],[173.26073260732608,1.9711267269329937],[173.2571325713257,1.9745038814727565],[173.2571325713257,1.9863239223619331],[173.2571325713257,1.98970107690171],[173.2571325713257,1.9930782314414728],[173.26073260732608,1.9930782314414728],[173.26433264332644,1.9913896541715843],[173.26433264332644,1.9880124996318216],[173.26433264332644,1.9829467678221704],[173.26433264332644,1.9778810360125334],[173.27153271532717,1.9745038814727565],[173.289532895329,1.9694381496631195],[173.29313293132935,1.9694381496631195],[173.30033300333002,1.9694381496631195],[173.3039330393304,1.9694381496631195],[173.30753307533075,1.9694381496631195],[173.30753307533075,1.9728153042028822],[173.30753307533075,1.976192458742645],[173.30753307533075,1.9812581905522961],[173.30033300333002,1.9863239223619331],[173.29673296732966,1.98970107690171],[173.29673296732966,1.9913896541715843],[173.29673296732966,1.9930782314414728],[173.29673296732966,1.9964553859812355],[173.29313293132935,2.0048982723306494],[173.29313293132935,2.015029735949952],[173.29313293132935,2.020095467759589],[173.29313293132935,2.0268497768391285],[173.289532895329,2.033604085918654]]],[[[73.55413554135544,2.082572826745249],[73.55053550535507,2.072441363125961],[73.55053550535507,2.0758185176657236],[73.55053550535507,2.077507094935612],[73.55413554135544,2.0791956722054863],[73.55413554135544,2.082572826745249]]],[[[73.56853568535686,2.1095900630633793],[73.58653586535866,2.1095900630633793],[73.58293582935829,2.107901485793491],[73.57933579335796,2.1062129085236165],[73.56853568535686,2.0977700221742026],[73.56133561335614,2.0943928676344257],[73.56133561335614,2.099458599444077],[73.56133561335614,2.1028357539838396],[73.56853568535686,2.1095900630633793]]],[[[125.34785347853477,2.107901485793491],[125.35145351453514,2.1095900630633793],[125.35865358653587,2.1095900630633793],[125.35865358653587,2.1146557948730305],[125.3550535505355,2.1163443721429047],[125.35145351453514,2.1230986812224444],[125.3550535505355,2.12985299030197],[125.35865358653587,2.1281644130320814],[125.3658536585366,2.1230986812224444],[125.36945369453696,2.126475835762207],[125.37305373053732,2.1247872584923186],[125.37665376653769,2.121410103952556],[125.38745387453878,2.118032949412793],[125.39465394653945,2.118032949412793],[125.40545405454054,2.12985299030197],[125.4090540905409,2.1230986812224444],[125.40545405454054,2.107901485793491],[125.40185401854018,2.1028357539838396],[125.39825398253981,2.104524331253728],[125.39465394653945,2.104524331253728],[125.39105391053914,2.1028357539838396],[125.39105391053914,2.1011471767139653],[125.37665376653769,2.0927042903645514],[125.36945369453696,2.091015713094663],[125.36225362253623,2.085949981285026],[125.3550535505355,2.077507094935612],[125.34785347853477,2.0707527858560724],[125.3406534065341,2.074129940395835],[125.33345333453337,2.082572826745249],[125.33345333453337,2.0927042903645514],[125.3406534065341,2.1011471767139653],[125.34425344253441,2.1028357539838396],[125.34785347853477,2.107901485793491]]],[[[73.0429304293043,2.1670016902393883],[73.0429304293043,2.1653131129695],[73.03933039330394,2.1653131129695],[73.0429304293043,2.1670016902393883]]],[[[73.10413104131041,2.187264617477979],[73.10413104131041,2.183887462938216],[73.10413104131041,2.1821988856683276],[73.10053100531007,2.1805103083984534],[73.10053100531007,2.1821988856683276],[73.10053100531007,2.183887462938216],[73.10053100531007,2.1855760402081046],[73.10413104131041,2.187264617477979]]],[[[73.1149311493115,2.1990846583671555],[73.11853118531187,2.1973960810972812],[73.12213122131223,2.19233034928763],[73.1149311493115,2.19233034928763],[73.1149311493115,2.1940189265575185],[73.1149311493115,2.1957075038273928],[73.1149311493115,2.1990846583671555]]],[[[72.94932949329495,2.275070635511881],[72.94572945729459,2.271693480972118],[72.94212942129423,2.2733820582419924],[72.94932949329495,2.275070635511881]]],[[[72.92772927729277,2.3274165308782386],[72.92772927729277,2.315596489989062],[72.92412924129243,2.3189736445288247],[72.92412924129243,2.3223507990686016],[72.92412924129243,2.324039376338476],[72.92772927729277,2.3274165308782386]]],[[[73.34533345333455,2.3476794581168434],[73.34533345333455,2.3443023035770665],[73.34173341733418,2.3426137263071922],[73.34533345333455,2.3476794581168434]]],[[[73.35253352533528,2.4371740534206197],[73.35973359733597,2.425354012531443],[73.3669336693367,2.4135339716422664],[73.3669336693367,2.411845394372378],[73.3669336693367,2.3983367762133128],[73.36333363333634,2.384828158054262],[73.35253352533528,2.4287311670712057],[73.35253352533528,2.4371740534206197]]],[[[73.31653316533166,2.5064057214858053],[73.31653316533166,2.4945856805966287],[73.3129331293313,2.4945856805966287],[73.3129331293313,2.496274257866517],[73.3129331293313,2.49965141240628],[73.3129331293313,2.5013399896761683],[73.31653316533166,2.5064057214858053]]],[[[73.14373143731439,2.553685885042526],[73.14373143731439,2.5503087305027634],[73.14013140131402,2.5503087305027634],[73.14373143731439,2.553685885042526]]],[[[72.89892898928991,2.6820177575536093],[72.90252902529025,2.680329180283735],[72.90612906129061,2.680329180283735],[72.90612906129061,2.675263448474084],[72.90252902529025,2.676952025743958],[72.89892898928991,2.676952025743958],[72.89892898928991,2.680329180283735],[72.89892898928991,2.6820177575536093]]],[[[72.8737287372874,2.693837798442786],[72.8737287372874,2.6837063348234977],[72.86652866528667,2.6870834893632605],[72.86652866528667,2.688772066633149],[72.87012870128703,2.690460643903023],[72.8737287372874,2.693837798442786]]],[[[73.02133021330215,2.7411179619995067],[73.03213032130321,2.7444951165392695],[73.02853028530285,2.737740807459744],[73.02493024930251,2.737740807459744],[73.02133021330215,2.7411179619995067]]],[[[73.35253352533528,2.778266661936925],[73.35253352533528,2.7748895073971624],[73.35253352533528,2.773200930127274],[73.35253352533528,2.7715123528573997],[73.34893348933491,2.7748895073971624],[73.34893348933491,2.7765780846670367],[73.35253352533528,2.778266661936925]]],[[[73.39933399333995,2.7850209710164506],[73.39213392133922,2.7748895073971624],[73.39213392133922,2.781643816476688],[73.39573395733959,2.7850209710164506],[73.39933399333995,2.7850209710164506]]],[[[73.54693546935471,2.893089916288943],[73.55053550535507,2.893089916288943],[73.55053550535507,2.891401339019069],[73.55053550535507,2.888024184479306],[73.54693546935471,2.893089916288943]]],[[[73.35973359733597,2.9032213799082456],[73.35973359733597,2.901532802638357],[73.36333363333634,2.899844225368483],[73.36333363333634,2.8981556480985944],[73.35973359733597,2.8981556480985944],[73.35613356133561,2.899844225368483],[73.35613356133561,2.901532802638357],[73.35973359733597,2.901532802638357],[73.35973359733597,2.9032213799082456]]],[[[73.0069300693007,2.953878698004729],[73.01413014130142,2.9471243889251895],[73.01053010530106,2.945435811655315],[73.01053010530106,2.9471243889251895],[73.01053010530106,2.948812966195078],[73.0069300693007,2.953878698004729]]],[[[73.5649356493565,2.9555672752746034],[73.5649356493565,2.953878698004729],[73.56133561335614,2.945435811655315],[73.56133561335614,2.948812966195078],[73.56133561335614,2.9505015434649664],[73.5649356493565,2.9555672752746034]]],[[[73.58653586535866,2.962321584354143],[73.57573575735759,2.9505015434649664],[73.57933579335796,2.957255852544492],[73.58293582935829,2.9606330070842546],[73.58653586535866,2.962321584354143]]],[[[72.87012870128703,2.9690758934336685],[72.86652866528667,2.9606330070842546],[72.86652866528667,2.9589444298143803],[72.86652866528667,2.9606330070842546],[72.87012870128703,2.9690758934336685]]],[[[72.90252902529025,3.0838991477857007],[72.90252902529025,3.0822105705158123],[72.90612906129061,3.080521993245924],[72.90612906129061,3.077144838706161],[72.89892898928991,3.077144838706161],[72.89892898928991,3.0788334159760495],[72.89892898928991,3.080521993245924],[72.90252902529025,3.0838991477857007]]],[[[73.61173611736118,3.107539229564054],[73.61173611736118,3.102473497754403],[73.60813608136081,3.1007849204845144],[73.61173611736118,3.107539229564054]]],[[[72.97812978129781,3.1109163841038168],[72.97812978129781,3.1092278068339283],[72.97812978129781,3.107539229564054],[72.98172981729817,3.1058506522941656],[72.97812978129781,3.102473497754403],[72.97452974529747,3.1041620750242913],[72.97452974529747,3.1058506522941656],[72.97812978129781,3.107539229564054],[72.97812978129781,3.1109163841038168]]],[[[73.0429304293043,3.205476711217244],[73.0429304293043,3.20378813394737],[73.04653046530467,3.2020995566774815],[73.04653046530467,3.1987224021377187],[73.03933039330394,3.1987224021377187],[73.03933039330394,3.200410979407607],[73.0429304293043,3.2020995566774815],[73.0429304293043,3.205476711217244]]],[[[73.03213032130321,3.252756874773965],[73.03213032130321,3.2510682975040766],[73.03573035730358,3.2493797202342023],[73.03573035730358,3.247691142964314],[73.03213032130321,3.2460025656944396],[73.02853028530285,3.247691142964314],[73.03213032130321,3.2510682975040766],[73.03213032130321,3.252756874773965]]],[[[72.83412834128342,3.3118570792198625],[72.83412834128342,3.310168501949974],[72.83772837728378,3.310168501949974],[72.83772837728378,3.3084799246800998],[72.83772837728378,3.3067913474102113],[72.83052830528305,3.305102770140323],[72.83052830528305,3.3067913474102113],[72.83412834128342,3.3084799246800998],[72.83412834128342,3.3118570792198625]]],[[[73.51813518135182,3.3608258200464576],[73.51813518135182,3.359137242776569],[73.51813518135182,3.3557600882368064],[73.51813518135182,3.3608258200464576]]],[[[73.74853748537487,3.450320415350234],[73.75213752137523,3.446943260810471],[73.74853748537487,3.4486318380803596],[73.74853748537487,3.450320415350234]]],[[[73.50733507335073,3.5009777334467174],[73.50733507335073,3.495912001637066],[73.50733507335073,3.4976005789069546],[73.50733507335073,3.5009777334467174]]],[[[72.95292952929529,3.7340013966905303],[72.95292952929529,3.732312819420656],[72.95652956529565,3.7306242421507676],[72.95652956529565,3.728935664880879],[72.95292952929529,3.727247087611005],[72.94932949329495,3.728935664880879],[72.94932949329495,3.7306242421507676],[72.95292952929529,3.732312819420656],[72.95292952929529,3.7340013966905303]]],[[[72.94572945729459,3.7728386738978372],[72.94572945729459,3.7694615193580745],[72.94932949329495,3.7694615193580745],[72.94932949329495,3.767772942088186],[72.94572945729459,3.7643957875484233],[72.94572945729459,3.7660843648182976],[72.94212942129423,3.767772942088186],[72.94572945729459,3.7694615193580745],[72.94572945729459,3.7728386738978372]]],[[[154.87894878948788,3.7525757466592466],[154.87534875348757,3.767772942088186],[154.89334893348934,3.7795929829773627],[154.89334893348934,3.762707210278535],[154.87894878948788,3.7525757466592466]]],[[[154.7889478894789,3.7914130238665393],[154.79254792547925,3.7762158284376],[154.7745477454775,3.7660843648182976],[154.77094770947713,3.781281560247251],[154.7889478894789,3.7914130238665393]]],[[[72.94572945729459,3.8370046101533717],[72.94572945729459,3.8353160328834974],[72.94572945729459,3.833627455613609],[72.94932949329495,3.833627455613609],[72.94932949329495,3.8319388783437347],[72.94572945729459,3.8302503010738462],[72.94212942129423,3.8319388783437347],[72.94212942129423,3.833627455613609],[72.94212942129423,3.8353160328834974],[72.94572945729459,3.8370046101533717]]],[[[73.4389343893439,3.847136073772674],[73.43533435334353,3.8454474965027856],[73.43173431734317,3.842070341963023],[73.43173431734317,3.8437589192329114],[73.43173431734317,3.847136073772674],[73.43533435334353,3.847136073772674],[73.4389343893439,3.847136073772674]]],[[[73.44253442534426,3.9197448963776367],[73.44253442534426,3.918056319107748],[73.4389343893439,3.9163677418378597],[73.44253442534426,3.9197448963776367]]],[[[73.34533345333455,3.9450735554258642],[73.34173341733418,3.9416964008861015],[73.34173341733418,3.94338497815599],[73.34533345333455,3.9450735554258642]]],[[[-81.6110161101611,3.9585821735849294],[-81.61461614616145,3.961959328124692],[-81.61461614616145,3.9636479053945806],[-81.61461614616145,3.9687136372042318],[-81.6110161101611,3.975467946283757],[-81.60381603816037,3.9771565235536457],[-81.60381603816037,3.97884510082352],[-81.60021600216002,3.9889765644428223],[-81.59661596615966,3.9906651417126966],[-81.58941589415893,3.9906651417126966],[-81.58581585815858,3.992353718982585],[-81.58221582215822,3.992353718982585],[-81.57861578615785,3.97884510082352],[-81.57861578615785,3.975467946283757],[-81.58581585815858,3.973779369013883],[-81.58941589415893,3.970402214474106],[-81.5930159301593,3.970402214474106],[-81.60741607416074,3.960270750854818],[-81.6110161101611,3.9585821735849294]]],[[[73.42093420934211,4.118997014223794],[73.42093420934211,4.115619859684017],[73.41733417334174,4.115619859684017],[73.42093420934211,4.118997014223794]]],[[[72.94572945729459,4.265903236703579],[72.96012960129602,4.2625260821638165],[72.95292952929529,4.260837504893928],[72.95292952929529,4.2625260821638165],[72.94572945729459,4.265903236703579]]],[[[73.59733597335975,4.3418892138483045],[73.59373593735938,4.340200636578416],[73.59013590135902,4.340200636578416],[73.59733597335975,4.3418892138483045]]],[[[73.61173611736118,4.3638407183567836],[73.61173611736118,4.362152141086895],[73.61173611736118,4.360463563817021],[73.61173611736118,4.358774986547132],[73.61173611736118,4.357086409277244],[73.60813608136081,4.35539783200737],[73.60813608136081,4.358774986547132],[73.60813608136081,4.360463563817021],[73.61173611736118,4.3638407183567836]]],[[[73.6369363693637,4.370595027436309],[73.6369363693637,4.3689064501664205],[73.6369363693637,4.365529295626658],[73.6369363693637,4.3638407183567836],[73.63333633336333,4.3638407183567836],[73.63333633336333,4.365529295626658],[73.63333633336333,4.3689064501664205],[73.6369363693637,4.3689064501664205],[73.6369363693637,4.370595027436309]]],[[[73.66933669336694,4.394235109214662],[73.66933669336694,4.3908579546749],[73.66933669336694,4.389169377405025],[73.66933669336694,4.387480800135137],[73.66573665736658,4.385792222865248],[73.66573665736658,4.389169377405025],[73.66573665736658,4.3908579546749],[73.66933669336694,4.394235109214662]]],[[[72.95652956529565,4.43813811823162],[72.95652956529565,4.422940922802681],[72.94932949329495,4.422940922802681],[72.94572945729459,4.422940922802681],[72.94212942129423,4.431383809152081],[72.95652956529565,4.43813811823162]]],[[[73.55413554135544,4.62050446337895],[73.55413554135544,4.617127308839187],[73.55413554135544,4.615438731569299],[73.55413554135544,4.613750154299424],[73.55053550535507,4.613750154299424],[73.55053550535507,4.615438731569299],[73.55053550535507,4.617127308839187],[73.55053550535507,4.618815886109061],[73.55413554135544,4.62050446337895]]],[[[-160.40860408604087,4.709999058682726],[-160.41580415804157,4.716753367762266],[-160.41220412204123,4.721819099571917],[-160.40140401404014,4.723507676841791],[-160.39060390603908,4.721819099571917],[-160.37980379803798,4.713376213222503],[-160.38340383403835,4.706621904142963],[-160.3942039420394,4.704933326873089],[-160.40860408604087,4.709999058682726]]],[[[132.22032220322205,5.2925582167922585],[132.21312213122133,5.307755412221212],[132.22032220322205,5.309443989491086],[132.22752227522278,5.304378257681449],[132.22032220322205,5.2925582167922585]]],[[[153.66933669336697,5.285803907712733],[153.67293672936728,5.29762394860191],[153.68373683736837,5.309443989491086],[153.7017370173702,5.316198298570626],[153.70893708937092,5.3145097213007375],[153.70893708937092,5.306066834951324],[153.69453694536946,5.295935371332035],[153.67653676536764,5.289181062252496],[153.66933669336697,5.285803907712733]]],[[[73.629736297363,5.419201512033467],[73.63333633336333,5.410758625684053],[73.6369363693637,5.4023157393346395],[73.6369363693637,5.393872852985226],[73.63333633336333,5.385429966635812],[73.62613626136263,5.412447202953942],[73.629736297363,5.419201512033467]]],[[[73.0069300693007,5.463104521050411],[73.00333003330033,5.461415943780537],[73.00333003330033,5.458038789240774],[72.9997299973,5.456350211970886],[72.9997299973,5.461415943780537],[72.9997299973,5.463104521050411],[73.00333003330033,5.463104521050411],[73.0069300693007,5.463104521050411]]],[[[72.88452884528846,5.493498911908304],[72.8809288092881,5.491810334638416],[72.8809288092881,5.4901217573685415],[72.8809288092881,5.488433180098653],[72.87732877328773,5.491810334638416],[72.87732877328773,5.493498911908304],[72.8809288092881,5.493498911908304],[72.88452884528846,5.493498911908304]]],[[[126.58986589865901,5.557664848163853],[126.59706597065974,5.566107734513267],[126.60426604266041,5.564419157243378],[126.6006660066601,5.554287693624076],[126.59706597065974,5.549221961814439],[126.58986589865901,5.557664848163853]]],[[[73.01773017730179,5.618453629879625],[73.01773017730179,5.615076475339862],[73.01773017730179,5.613387898069973],[73.01773017730179,5.611699320800099],[73.01413014130142,5.611699320800099],[73.01413014130142,5.615076475339862],[73.01413014130142,5.616765052609736],[73.01773017730179,5.616765052609736],[73.01773017730179,5.618453629879625]]],[[[169.11349113491138,5.638716557118215],[169.11709117091175,5.648848020737518],[169.12069120691206,5.647159443467629],[169.11349113491138,5.638716557118215]]],[[[73.01413014130142,5.677553834325522],[73.01413014130142,5.675865257055634],[73.01413014130142,5.672488102515871],[73.01053010530106,5.670799525245982],[73.0069300693007,5.674176679785759],[73.01053010530106,5.675865257055634],[73.01413014130142,5.677553834325522]]],[[[73.39213392133922,5.738342616041294],[73.39213392133922,5.7366540387714196],[73.38133381333813,5.7147025342629405],[73.38133381333813,5.721456843342466],[73.39213392133922,5.738342616041294]]],[[[72.98532985329854,5.770425584169061],[72.98532985329854,5.765359852359424],[72.98172981729817,5.761982697819647],[72.98532985329854,5.770425584169061]]],[[[157.16137161371614,5.773802738708838],[157.16137161371614,5.775491315978712],[157.15777157771578,5.777179893248601],[157.15777157771578,5.778868470518475],[157.16137161371614,5.780557047788363],[157.1649716497165,5.778868470518475],[157.1649716497165,5.777179893248601],[157.16137161371614,5.775491315978712],[157.16137161371614,5.773802738708838]]],[[[73.38133381333813,5.795754243217303],[73.38133381333813,5.794065665947429],[73.38133381333813,5.79237708867754],[73.3849338493385,5.788999934137777],[73.3849338493385,5.787311356867889],[73.38133381333813,5.783934202328126],[73.3777337773378,5.787311356867889],[73.3777337773378,5.788999934137777],[73.38133381333813,5.79237708867754],[73.38133381333813,5.795754243217303]]],[[[72.97812978129781,5.814328593186019],[72.97452974529747,5.804197129566717],[72.97092970929711,5.807574284106494],[72.97092970929711,5.810951438646256],[72.97452974529747,5.810951438646256],[72.97812978129781,5.814328593186019]]],[[[73.44973449734499,5.841345829504135],[73.43533435334353,5.831214365884847],[73.43173431734317,5.831214365884847],[73.4389343893439,5.837968674964372],[73.44253442534426,5.841345829504135],[73.44613446134463,5.841345829504135],[73.44973449734499,5.841345829504135]]],[[[72.96372963729638,5.864985911282503],[72.96372963729638,5.863297334012614],[72.96732967329675,5.849788715853549],[72.96372963729638,5.853165870393326],[72.96012960129602,5.856543024933089],[72.96372963729638,5.864985911282503]]],[[[73.42813428134284,5.910577497569335],[73.42813428134284,5.908888920299447],[73.42813428134284,5.905511765759684],[73.42813428134284,5.903823188489795],[73.42453424534247,5.903823188489795],[73.42453424534247,5.907200343029572],[73.42453424534247,5.908888920299447],[73.42813428134284,5.908888920299447],[73.42813428134284,5.910577497569335]]],[[[72.93132931329313,5.9696777020152325],[72.93132931329313,5.956169083856167],[72.92412924129243,5.962923392935693],[72.92772927729277,5.966300547475456],[72.93132931329313,5.9696777020152325]]],[[[73.38853388533886,5.9696777020152325],[73.39573395733959,5.957857661126042],[73.3849338493385,5.961234815665819],[73.3849338493385,5.964611970205581],[73.38853388533886,5.9696777020152325]]],[[[72.9169291692917,5.981497742904409],[72.91332913329134,5.979809165634521],[72.91332913329134,5.978120588364646],[72.91332913329134,5.976432011094758],[72.90972909729098,5.976432011094758],[72.90972909729098,5.978120588364646],[72.90972909729098,5.981497742904409],[72.90972909729098,5.983186320174283],[72.91332913329134,5.981497742904409],[72.9169291692917,5.981497742904409]]],[[[73.2517325173252,6.082812379097362],[73.24813248132483,6.079435224557599],[73.24453244532447,6.079435224557599],[73.2517325173252,6.082812379097362]]],[[[73.2517325173252,6.111518192685367],[73.24813248132483,6.108141038145604],[73.24813248132483,6.109829615415492],[73.2517325173252,6.111518192685367]]],[[[73.21933219332195,6.131781119923971],[73.21933219332195,6.130092542654083],[73.21573215732158,6.128403965384194],[73.21933219332195,6.131781119923971]]],[[[73.26973269732699,6.157109778972199],[73.26973269732699,6.153732624432436],[73.26973269732699,6.152044047162562],[73.26613266132662,6.1503554698926735],[73.26613266132662,6.153732624432436],[73.26613266132662,6.155421201702325],[73.26973269732699,6.155421201702325],[73.26973269732699,6.157109778972199]]],[[[73.21933219332195,6.1723069744011525],[73.21573215732158,6.16892981986139],[73.21573215732158,6.170618397131264],[73.21933219332195,6.1723069744011525]]],[[[73.26973269732699,6.18919274709998],[73.26973269732699,6.179061283480678],[73.26613266132662,6.182438438020441],[73.26613266132662,6.185815592560218],[73.26973269732699,6.187504169830092],[73.26973269732699,6.18919274709998]]],[[[73.03573035730358,6.222964292497636],[73.02853028530285,6.219587137957859],[73.03213032130321,6.221275715227748],[73.03573035730358,6.222964292497636]]],[[[73.2409324093241,6.239850065196464],[73.2409324093241,6.236472910656687],[73.24453244532447,6.234784333386813],[73.24453244532447,6.23140717884705],[73.2409324093241,6.2297186015771615],[73.23733237332374,6.23140717884705],[73.23733237332374,6.234784333386813],[73.2409324093241,6.236472910656687],[73.2409324093241,6.239850065196464]]],[[[73.12933129331293,6.2871302287531705],[73.1257312573126,6.283753074213408],[73.12213122131223,6.283753074213408],[73.12933129331293,6.2871302287531705]]],[[[73.21573215732158,6.295573115102584],[73.21573215732158,6.29388453783271],[73.21213212132122,6.288818806023059],[73.20853208532085,6.2871302287531705],[73.21573215732158,6.295573115102584]]],[[[73.08253082530825,6.30908173326165],[73.08253082530825,6.305704578721887],[73.07893078930789,6.305704578721887],[73.08253082530825,6.30908173326165]]],[[[73.19773197731979,6.327656083230352],[73.19773197731979,6.324278928690589],[73.20133201332015,6.324278928690589],[73.20133201332015,6.322590351420715],[73.20133201332015,6.3175246196110635],[73.19413194131943,6.319213196880938],[73.19413194131943,6.320901774150826],[73.19773197731979,6.324278928690589],[73.19773197731979,6.327656083230352]]],[[[73.1257312573126,6.332721815040003],[73.11853118531187,6.32934466050024],[73.12213122131223,6.331033237770129],[73.1257312573126,6.332721815040003]]],[[[73.1869318693187,6.351296165008719],[73.18333183331833,6.349607587738831],[73.18333183331833,6.3479190104689565],[73.18333183331833,6.346230433199068],[73.17973179731797,6.3479190104689565],[73.17973179731797,6.349607587738831],[73.18333183331833,6.351296165008719],[73.18333183331833,6.349607587738831],[73.1869318693187,6.351296165008719]]],[[[73.02133021330215,6.368181937707547],[73.02133021330215,6.366493360437659],[73.02493024930251,6.366493360437659],[73.02493024930251,6.364804783167784],[73.02493024930251,6.363116205897896],[73.01773017730179,6.363116205897896],[73.01773017730179,6.364804783167784],[73.02133021330215,6.366493360437659],[73.02133021330215,6.368181937707547]]],[[[72.69012690126902,6.412084946724491],[72.69012690126902,6.410396369454617],[72.68652686526866,6.40701921491484],[72.68652686526866,6.408707792184728],[72.68652686526866,6.412084946724491],[72.69012690126902,6.412084946724491]]],[[[72.90252902529025,6.440790760312495],[72.90612906129061,6.437413605772733],[72.90612906129061,6.435725028502844],[72.90612906129061,6.43403645123297],[72.90252902529025,6.43403645123297],[72.90252902529025,6.435725028502844],[72.90252902529025,6.439102183042621],[72.90252902529025,6.440790760312495]]],[[[73.05013050130503,6.440790760312495],[73.04653046530467,6.435725028502844],[73.0429304293043,6.43403645123297],[73.05013050130503,6.440790760312495]]],[[[72.96372963729638,6.55899116920429],[72.96012960129602,6.557302591934402],[72.96012960129602,6.555614014664528],[72.95652956529565,6.553925437394639],[72.95652956529565,6.555614014664528],[72.95652956529565,6.560679746474165],[72.96012960129602,6.560679746474165],[72.96012960129602,6.55899116920429],[72.96372963729638,6.55899116920429]]],[[[72.92412924129243,6.565745478283816],[72.92412924129243,6.562368323744053],[72.92772927729277,6.562368323744053],[72.92772927729277,6.560679746474165],[72.92772927729277,6.55899116920429],[72.92412924129243,6.560679746474165],[72.92412924129243,6.564056901013942],[72.92412924129243,6.565745478283816]]],[[[73.02853028530285,6.582631250982644],[73.02853028530285,6.579254096442881],[73.02853028530285,6.5775655191729925],[73.03213032130321,6.575876941903118],[73.02853028530285,6.575876941903118],[73.02493024930251,6.579254096442881],[73.02493024930251,6.580942673712769],[73.02853028530285,6.580942673712769],[73.02853028530285,6.582631250982644]]],[[[73.04653046530467,6.621468528189951],[73.0429304293043,6.619779950920062],[73.0429304293043,6.618091373650188],[73.03933039330394,6.616402796380299],[73.03933039330394,6.618091373650188],[73.03933039330394,6.623157105459825],[73.0429304293043,6.623157105459825],[73.04653046530467,6.621468528189951]]],[[[73.06813068130683,6.668748691746657],[73.0609306093061,6.660305805397243],[73.0609306093061,6.667060114476783],[73.06453064530646,6.668748691746657],[73.06813068130683,6.668748691746657]]],[[[73.10773107731077,6.7092745462238526],[73.10413104131041,6.705897391684076],[73.10053100531007,6.702520237144313],[73.10053100531007,6.69914308260455],[73.09693096930971,6.69914308260455],[73.09693096930971,6.705897391684076],[73.10053100531007,6.7092745462238526],[73.10773107731077,6.7092745462238526]]],[[[149.3168931689317,6.697454505334676],[149.3168931689317,6.704208814414201],[149.3168931689317,6.7092745462238526],[149.32049320493206,6.7143402780334895],[149.32409324093243,6.719406009843141],[149.32409324093243,6.712651700763615],[149.32409324093243,6.707585968953964],[149.32049320493206,6.702520237144313],[149.3168931689317,6.697454505334676]]],[[[157.93537935379356,6.7177174325732665],[157.93897938979393,6.727848896192555],[157.9425794257943,6.731226050732317],[157.94977949779496,6.731226050732317],[157.94977949779496,6.72616031892268],[157.94617946179466,6.7227831643829035],[157.93537935379356,6.7177174325732665]]],[[[73.03573035730358,6.759931864320322],[73.03573035730358,6.756554709780559],[73.03573035730358,6.754866132510685],[73.03573035730358,6.753177555240796],[73.03213032130321,6.753177555240796],[73.03213032130321,6.756554709780559],[73.03213032130321,6.758243287050448],[73.03573035730358,6.758243287050448],[73.03573035730358,6.759931864320322]]],[[[72.9169291692917,6.763309018860099],[72.9169291692917,6.76162044159021],[72.9169291692917,6.759931864320322],[72.91332913329134,6.759931864320322],[72.91332913329134,6.764997596129973],[72.9169291692917,6.764997596129973],[72.9169291692917,6.763309018860099]]],[[[73.15813158131581,6.786949100638452],[73.16533165331654,6.786949100638452],[73.16533165331654,6.785260523368564],[73.16533165331654,6.783571946098689],[73.16533165331654,6.780194791558927],[73.15453154531545,6.749800400701034],[73.14373143731439,6.736291782541969],[73.1329313293133,6.724471741652792],[73.13653136531366,6.74135751435162],[73.15093150931511,6.768374750669736],[73.15813158131581,6.786949100638452]]],[[[73.18333183331833,6.830852109655396],[73.19773197731979,6.827474955115633],[73.19053190531906,6.822409223305982],[73.18333183331833,6.820720646036108],[73.17973179731797,6.824097800575871],[73.18333183331833,6.830852109655396]]],[[[72.99612996129963,6.840983573274698],[72.99252992529927,6.83929499600481],[72.99252992529927,6.837606418734936],[72.99252992529927,6.835917841465047],[72.9889298892989,6.837606418734936],[72.9889298892989,6.842672150544587],[72.99252992529927,6.842672150544587],[72.99612996129963,6.840983573274698]]],[[[73.14373143731439,6.842672150544587],[73.14013140131402,6.83929499600481],[73.13653136531366,6.83929499600481],[73.14013140131402,6.844360727814461],[73.14373143731439,6.844360727814461],[73.14373143731439,6.842672150544587]]],[[[72.97452974529747,6.852803614163875],[72.97452974529747,6.851115036894001],[72.97452974529747,6.847737882354224],[72.97452974529747,6.84604930508435],[72.97092970929711,6.849426459624112],[72.97092970929711,6.851115036894001],[72.97452974529747,6.852803614163875]]],[[[73.09693096930971,6.852803614163875],[73.09693096930971,6.851115036894001],[73.09333093330935,6.849426459624112],[73.09333093330935,6.847737882354224],[73.09333093330935,6.852803614163875],[73.09333093330935,6.8544921914337635],[73.09693096930971,6.852803614163875]]],[[[72.96372963729638,6.861246500513289],[72.96372963729638,6.859557923243415],[72.96012960129602,6.857869345973526],[72.96012960129602,6.856180768703638],[72.96012960129602,6.861246500513289],[72.96012960129602,6.8629350777831775],[72.96372963729638,6.861246500513289]]],[[[73.10773107731077,6.896706623180833],[73.10413104131041,6.893329468641056],[73.10773107731077,6.891640891371182],[73.10773107731077,6.8899523141012935],[73.10413104131041,6.8899523141012935],[73.10053100531007,6.893329468641056],[73.10053100531007,6.895018045910945],[73.10413104131041,6.895018045910945],[73.10773107731077,6.896706623180833]]],[[[73.21573215732158,6.918658127689298],[73.21213212132122,6.905149509530247],[73.20853208532085,6.891640891371182],[73.20493204932049,6.884886582291642],[73.20133201332015,6.893329468641056],[73.20133201332015,6.90177235499047],[73.20493204932049,6.9119038186097725],[73.20853208532085,6.918658127689298],[73.21573215732158,6.918658127689298]]],[[[134.16074160741607,6.884886582291642],[134.14634146341467,6.898395200450707],[134.13554135541358,6.918658127689298],[134.13914139141394,6.933855323118252],[134.16074160741607,6.935543900388126],[134.17154171541716,6.925412436768838],[134.1787417874179,6.90852666407001],[134.17514175141753,6.893329468641056],[134.16074160741607,6.884886582291642]]],[[[72.92772927729277,6.957495404896605],[72.92772927729277,6.954118250356842],[72.92412924129243,6.952429673086954],[72.92772927729277,6.957495404896605]]],[[[73.19773197731979,6.97100402305567],[73.19413194131943,6.950741095817079],[73.19053190531906,6.952429673086954],[73.19053190531906,6.960872559436368],[73.19053190531906,6.967626868515907],[73.19413194131943,6.97100402305567],[73.19773197731979,6.97100402305567]]],[[[72.89172891728919,6.991266950294261],[72.89172891728919,6.987889795754498],[72.89172891728919,6.986201218484609],[72.89172891728919,6.991266950294261]]],[[[72.97812978129781,7.028415650231679],[72.97812978129781,7.0267270729617906],[72.98172981729817,7.01321845480274],[72.97812978129781,7.018284186612377],[72.97812978129781,7.023349918422028],[72.97812978129781,7.028415650231679]]],[[[72.94932949329495,7.0571214638196835],[72.94932949329495,7.050367154740158],[72.94932949329495,7.053744309279921],[72.94932949329495,7.0571214638196835]]],[[[171.79191791917918,7.055432886549795],[171.79551795517955,7.0571214638196835],[171.79551795517955,7.060498618359446],[171.7991179911799,7.062187195629335],[171.80271802718028,7.062187195629335],[171.79551795517955,7.050367154740158],[171.78471784717846,7.038547113850967],[171.77751777517778,7.028415650231679],[171.76311763117633,7.019972763882265],[171.77031770317706,7.028415650231679],[171.79191791917918,7.055432886549795]]],[[[72.91332913329134,7.0925815864872135],[72.91332913329134,7.082450122867925],[72.90612906129061,7.089204431947451],[72.90612906129061,7.090893009217339],[72.90972909729098,7.090893009217339],[72.91332913329134,7.0925815864872135]]],[[[72.88452884528846,7.107778781916167],[72.88452884528846,7.106090204646279],[72.88452884528846,7.104401627376404],[72.8809288092881,7.101024472836627],[72.88452884528846,7.107778781916167]]],[[[151.8585185851859,7.3171623633816125],[151.85491854918553,7.354311063319045],[151.85491854918553,7.3695082587479845],[151.8621186211862,7.361065372398571],[151.86571865718656,7.350933908779268],[151.86571865718656,7.339113867890092],[151.8621186211862,7.327293827000915],[151.8585185851859,7.3171623633816125]]],[[[149.18729187291876,7.371196836017859],[149.18009180091804,7.381328299637161],[149.18729187291876,7.381328299637161],[149.18729187291876,7.379639722367273],[149.18729187291876,7.37626256782751],[149.18729187291876,7.371196836017859]]],[[[168.96588965889663,7.573826108403793],[168.96588965889663,7.5805804174833185],[168.96948969489694,7.583957572023081],[168.96228962289626,7.592400458372495],[168.95148951489517,7.595777612912258],[168.93708937089372,7.595777612912258],[168.94428944289444,7.597466190182146],[168.95148951489517,7.599154767452035],[168.9586895868959,7.599154767452035],[168.96588965889663,7.595777612912258],[168.96948969489694,7.587334726562858],[168.96948969489694,7.583957572023081],[168.96948969489694,7.578891840213444],[168.96948969489694,7.57044895386403],[168.96588965889663,7.573826108403793]]],[[[167.40347403474038,8.318488684422064],[167.40707407074075,8.306668643532888],[167.39987399874002,8.31004579807265],[167.40347403474038,8.318488684422064]]],[[[150.40770407704076,8.57515242944423],[150.4041040410404,8.585283893063533],[150.40770407704076,8.585283893063533],[150.41130411304113,8.581906738523756],[150.40770407704076,8.578529583983993],[150.40770407704076,8.57515242944423]]],[[[149.66969669696698,8.57515242944423],[149.66609666096662,8.586972470333407],[149.66609666096662,8.603858243032235],[149.6768967689677,8.615678283921412],[149.6876968769688,8.615678283921412],[149.6876968769688,8.607235397571998],[149.68409684096844,8.593726779412933],[149.67329673296734,8.581906738523756],[149.66969669696698,8.57515242944423]]],[[[167.73107731077312,8.725435806463793],[167.73107731077312,8.730501538273444],[167.73107731077312,8.73556727008308],[167.73467734677348,8.738944424622858],[167.7418774187742,8.744010156432495],[167.7418774187742,8.73725584735297],[167.73827738277384,8.733878692813207],[167.73107731077312,8.725435806463793]]],[[[119.9585995859959,8.880784915292992],[119.9621996219962,8.87740776075323],[119.9585995859959,8.87740776075323],[119.9585995859959,8.880784915292992]]],[[[119.96939969399693,8.880784915292992],[119.96939969399693,8.884162069832769],[119.9729997299973,8.88247349256288],[119.9729997299973,8.880784915292992],[119.96939969399693,8.880784915292992]]],[[[119.96579965799657,8.887539224372532],[119.96579965799657,8.885850647102643],[119.96579965799657,8.884162069832769],[119.96579965799657,8.885850647102643],[119.9621996219962,8.887539224372532],[119.96579965799657,8.887539224372532]]],[[[119.96939969399693,8.890916378912294],[119.96939969399693,8.892604956182183],[119.96939969399693,8.889227801642406],[119.96579965799657,8.889227801642406],[119.96579965799657,8.890916378912294],[119.96939969399693,8.892604956182183],[119.96939969399693,8.890916378912294]]],[[[170.85230852308524,8.89767068799182],[170.8451084510845,8.885850647102643],[170.83790837908379,8.887539224372532],[170.83790837908379,8.889227801642406],[170.84150841508415,8.899359265261708],[170.8451084510845,8.901047842531597],[170.84870848708488,8.901047842531597],[170.85230852308524,8.89767068799182]]],[[[150.11970119701198,8.977033819676308],[150.12330123301234,8.985476706025722],[150.1269012690127,8.98716528329561],[150.13410134101343,8.985476706025722],[150.13050130501307,8.98041097421607],[150.1269012690127,8.978722396946196],[150.12330123301234,8.978722396946196],[150.11970119701198,8.977033819676308]]],[[[170.24030240302403,9.449835455243473],[170.24030240302403,9.466721227942301],[170.2439024390244,9.466721227942301],[170.24750247502476,9.458278341592887],[170.24030240302403,9.449835455243473]]],[[[97.86877868778691,9.424506796195232],[97.8507785077851,9.44139256889406],[97.85437854378546,9.46165549613265],[97.87237872378722,9.473475537021827],[97.8939789397894,9.466721227942301],[97.90117901179013,9.46165549613265],[97.90117901179013,9.453212609783236],[97.89757897578977,9.444769723433822],[97.8939789397894,9.438015414354282],[97.88677886778868,9.438015414354282],[97.87597875978759,9.44139256889406],[97.86877868778691,9.44139256889406],[97.86877868778691,9.424506796195232]]],[[[140.5148051480515,9.767287981981411],[140.52200522005222,9.774042291060951],[140.5328053280533,9.775730868330825],[140.5328053280533,9.772353713791063],[140.5256052560526,9.763910827441649],[140.5148051480515,9.760533672901886],[140.5148051480515,9.767287981981411]]],[[[115.36855368553688,10.2367124630088],[115.36495364953652,10.238401040278688],[115.36855368553688,10.238401040278688],[115.36855368553688,10.2367124630088]]],[[[170.87390873908743,10.273861162946218],[170.87390873908743,10.287369781105284],[170.8775087750878,10.287369781105284],[170.8775087750878,10.275549740216107],[170.87390873908743,10.273861162946218]]],[[[108.94248942489423,10.552476412476864],[108.96048960489605,10.537279217047924],[108.96768967689678,10.517016289809334],[108.96048960489605,10.503507671650269],[108.93888938889393,10.503507671650269],[108.9316893168932,10.515327712539445],[108.92448924489247,10.530524907968399],[108.92808928089283,10.54403352612745],[108.94248942489423,10.552476412476864]]],[[[165.5386553865539,11.633165865201804],[165.54225542255426,11.633165865201804],[165.54585545855457,11.631477287931915],[165.54945549455493,11.626411556122264],[165.5530555305553,11.619657247042738],[165.5386553865539,11.633165865201804]]],[[[165.28305283052833,11.695643224187464],[165.28305283052833,11.709151842346515],[165.2866528665287,11.710840419616403],[165.29025290252906,11.705774687806752],[165.28305283052833,11.695643224187464]]],[[[-66.750067500675,11.778383510411714],[-66.73566735667356,11.783449242221351],[-66.72846728467285,11.783449242221351],[-66.72846728467285,11.781760664951477],[-66.77526775267752,11.763186314982761],[-66.77886778867789,11.75812058317311],[-66.80766807668077,11.751366274093584],[-66.81846818468185,11.74967769682371],[-66.82926829268293,11.746300542283933],[-66.85086850868508,11.746300542283933],[-66.85446854468545,11.751366274093584],[-66.83286832868329,11.74967769682371],[-66.81846818468185,11.751366274093584],[-66.81486814868148,11.753054851363473],[-66.81126811268112,11.753054851363473],[-66.750067500675,11.778383510411714]]],[[[-66.73206732067321,11.86956668298538],[-66.71766717667177,11.871255260255253],[-66.71046710467104,11.86787810571549],[-66.73566735667356,11.864500951175728],[-66.73926739267392,11.866189528445602],[-66.75366753667537,11.86281237390584],[-66.77166771667716,11.866189528445602],[-66.77886778867789,11.866189528445602],[-66.7860678606786,11.86787810571549],[-66.81846818468185,11.871255260255253],[-66.81486814868148,11.872943837525142],[-66.73206732067321,11.86956668298538]]],[[[-67.65727657276572,11.984389937337397],[-67.65007650076501,11.984389937337397],[-67.63927639276392,11.979324205527746],[-67.64647646476465,11.979324205527746],[-67.66447664476644,11.982701360067509],[-67.67527675276753,11.986078514607286],[-67.67527675276753,11.989455669147048],[-67.67167671676717,11.992832823686811],[-67.6680766807668,11.991144246416923],[-67.66087660876609,11.98776709187716],[-67.65727657276572,11.984389937337397]]],[[[-67.67887678876788,12.028292946354355],[-67.67887678876788,12.024915791814578],[-67.68247682476824,12.026604369084467],[-67.67887678876788,12.028292946354355]]],[[[-67.67887678876788,12.028292946354355],[-67.67887678876788,12.02998152362423],[-67.67527675276753,12.028292946354355],[-67.67527675276753,12.026604369084467],[-67.67887678876788,12.028292946354355]]],[[[-67.67887678876788,12.05024445086282],[-67.67527675276753,12.048555873592946],[-67.67527675276753,12.045178719053169],[-67.67527675276753,12.046867296323057],[-67.67887678876788,12.05024445086282]]],[[[-67.68247682476824,12.063753069021885],[-67.68247682476824,12.062064491751997],[-67.68607686076861,12.063753069021885],[-67.68247682476824,12.063753069021885]]],[[[-67.68607686076861,12.065441646291774],[-67.68967689676896,12.068818800831536],[-67.68607686076861,12.067130223561648],[-67.68607686076861,12.065441646291774]]],[[[121.72261722617225,12.91479601304276],[121.71901719017194,12.913107435772886],[121.71901719017194,12.911418858502998],[121.71901719017194,12.908041703963235],[121.72261722617225,12.902975972153584],[121.71901719017194,12.899598817613821],[121.71181711817121,12.899598817613821],[121.70821708217085,12.904664549423472],[121.70461704617048,12.904664549423472],[121.69741697416976,12.904664549423472],[121.69021690216903,12.91479601304276],[121.6830168301683,12.919861744852412],[121.6830168301683,12.924927476662063],[121.6830168301683,12.935058940281351],[121.69021690216903,12.946878981170542],[121.70101701017012,12.950256135710305],[121.71541715417158,12.946878981170542],[121.71901719017194,12.946878981170542],[121.72621726217261,12.940124672091002],[121.73341733417334,12.928304631201826],[121.72981729817297,12.919861744852412],[121.72261722617225,12.91479601304276]]],[[[121.08901089010891,13.531126716549949],[121.07101071010709,13.5361924483596],[121.04221042210423,13.561521107407842],[121.04221042210423,13.568275416487367],[121.05301053010533,13.568275416487367],[121.05661056610569,13.564898261947604],[121.06741067410672,13.566586839217493],[121.07821078210782,13.57165257102713],[121.08541085410855,13.569963993757256],[121.09261092610927,13.561521107407842],[121.09261092610927,13.537881025629474],[121.08901089010891,13.531126716549949]]],[[[169.00909009090094,14.610127592005],[169.0126901269013,14.610127592005],[169.00909009090094,14.60337328292546],[168.99828998289985,14.593241819306172],[168.98748987489876,14.586487510226632],[168.99828998289985,14.59830755111581],[169.00909009090094,14.610127592005]]],[[[-63.639636396363954,15.695882776539577],[-63.64323643236432,15.700948508349214],[-63.639636396363954,15.702637085619102],[-63.636036360363605,15.700948508349214],[-63.63243632436324,15.695882776539577],[-63.636036360363605,15.694194199269688],[-63.639636396363954,15.695882776539577]]],[[[145.7888578885789,16.675257593071535],[145.76725767257676,16.695520520310126],[145.78525785257852,16.700586252119777],[145.80325803258035,16.69383194304025],[145.7888578885789,16.675257593071535]]],[[[145.85365853658539,17.286522564769072],[145.83565835658356,17.30509691473779],[145.85005850058502,17.310162646547425],[145.86805868058684,17.30171976019801],[145.85365853658539,17.286522564769072]]],[[[145.85365853658539,17.566826391569606],[145.8320583205832,17.576957855188894],[145.82845828458284,17.593843627887722],[145.83565835658356,17.6056636687769],[145.85005850058502,17.607352246046787],[145.86445864458648,17.598909359697373],[145.86805868058684,17.587089318808196],[145.86805868058684,17.57526927791902],[145.85365853658539,17.566826391569606]]],[[[-63.427234272342716,18.593481371658285],[-63.427234272342716,18.6019242580077],[-63.423634236342366,18.60023568073781],[-63.427234272342716,18.593481371658285]]],[[[166.61866618666187,19.28242089777042],[166.62946629466296,19.28242089777042],[166.6366663666637,19.285798052310184],[166.64026640266405,19.2942409386596],[166.63306633066333,19.306060979548775],[166.64746647466478,19.29761809319936],[166.65106651066515,19.28410947504031],[166.64386643866442,19.275666588690896],[166.61866618666187,19.28242089777042]]],[[[145.40725407254075,19.65221931987473],[145.3928539285393,19.660662206224146],[145.3820538205382,19.672482247113322],[145.3820538205382,19.6843022880025],[145.39645396453966,19.68936801981215],[145.41085410854112,19.6843022880025],[145.41445414454148,19.67417082438321],[145.41445414454148,19.662350783494034],[145.40725407254075,19.65221931987473]]],[[[145.25245252452527,20.010197701089865],[145.24165241652418,20.013574855629628],[145.23085230852308,20.020329164709167],[145.22725227252272,20.030460628328456],[145.23085230852308,20.040592091947758],[145.2380523805238,20.050723555567046],[145.24165241652418,20.045657823757395],[145.24525245252454,20.035526360138107],[145.24525245252454,20.030460628328456],[145.25245252452527,20.032149205598344],[145.26325263252636,20.03383778286822],[145.27045270452703,20.035526360138107],[145.2740527405274,20.032149205598344],[145.27045270452703,20.02370631924893],[145.26685266852672,20.01695201016939],[145.259652596526,20.011886278359754],[145.25245252452527,20.010197701089865]]],[[[144.91404914049144,20.516770882054672],[144.90684906849071,20.526902345673975],[144.90324903249035,20.540410963833025],[144.90684906849071,20.552231004722216],[144.9212492124921,20.55560815926198],[144.9320493204932,20.54885385018244],[144.9320493204932,20.537033809293263],[144.92484924849248,20.525213768404086],[144.91404914049144,20.516770882054672]]],[[[109.10089100891008,21.021655485749605],[109.09729097290972,21.021655485749605],[109.09009090090905,21.041918412988196],[109.10089100891008,21.060492762956898],[109.12249122491227,21.06555849476655],[109.13689136891372,21.05036129933761],[109.12609126091263,21.031786949368893],[109.11169111691117,21.026721217559242],[109.10449104491045,21.025032640289368],[109.10089100891008,21.021655485749605]]],[[[121.9350193501935,21.06555849476655],[121.93141931419314,21.063869917496675],[121.9350193501935,21.074001381115963],[121.9350193501935,21.06555849476655]]],[[[121.94581945819459,21.116215812863032],[121.94941949419496,21.122970121942558],[121.95301953019532,21.11790439013292],[121.94941949419496,21.10608434924373],[121.94581945819459,21.116215812863032]]],[[[121.45981459814601,22.65957543753582],[121.45621456214565,22.673084055694886],[121.45621456214565,22.67646121023465],[121.4958149581496,22.678149787504523],[121.49941499414996,22.67646121023465],[121.50301503015032,22.66970690115511],[121.49941499414996,22.65619828299606],[121.4958149581496,22.64944397391652],[121.4958149581496,22.644378242106868],[121.4958149581496,22.63931251029723],[121.4958149581496,22.63424677848758],[121.49221492214923,22.635935355757468],[121.4850148501485,22.635935355757468],[121.48141481414814,22.635935355757468],[121.48141481414814,22.637623933027342],[121.47061470614705,22.641001087567105],[121.45981459814601,22.65957543753582]]],[[[-161.94941949419496,23.037816745989545],[-161.9458194581946,23.041193900529308],[-161.9458194581946,23.04457105506907],[-161.9458194581946,23.04625963233896],[-161.93861938619386,23.04625963233896],[-161.94221942219423,23.041193900529308],[-161.9458194581946,23.03950532325942],[-161.94941949419496,23.037816745989545]]],[[[-79.51579515795157,23.495421186127757],[-79.51579515795157,23.49373260885787],[-79.53739537395374,23.507241227016934],[-79.53739537395374,23.510618381556696],[-79.51579515795157,23.495421186127757]]],[[[-79.56259562595626,23.54607850422424],[-79.55179551795517,23.53425846333505],[-79.55539555395553,23.532569886065176],[-79.5949959499595,23.574784317812245],[-79.58779587795878,23.571407163272482],[-79.56259562595626,23.54607850422424]]],[[[-164.70344703447034,23.579850049621896],[-164.69984699846998,23.569718586002594],[-164.7070470704707,23.573095740542357],[-164.7070470704707,23.574784317812245],[-164.7070470704707,23.57647289508212],[-164.70344703447034,23.579850049621896]]],[[[141.45441454414544,24.2231979894472],[141.46161461614616,24.226575143986963],[141.4688146881469,24.226575143986963],[141.47241472414726,24.219820834907438],[141.4688146881469,24.213066525827898],[141.46161461614616,24.211377948558024],[141.45441454414544,24.21644368036766],[141.45441454414544,24.2231979894472]]],[[[153.9717397173972,24.289052502972623],[153.98253982539825,24.29580681205215],[153.9861398613986,24.290741080242512],[153.98253982539825,24.282298193893098],[153.97893978939788,24.282298193893098],[153.9717397173972,24.283986771162972],[153.9717397173972,24.289052502972623]]],[[[54.265142651426515,24.294118234782275],[54.257942579425816,24.287363925702735],[54.24714247142472,24.283986771162972],[54.239942399423995,24.28060961662321],[54.22914229142293,24.28060961662321],[54.2219422194222,24.283986771162972],[54.20394203942041,24.30256112113169],[54.19314193141932,24.311004007481102],[54.182341823418255,24.314381162020865],[54.17874178741789,24.32113547110039],[54.18594185941859,24.336332666529344],[54.19314193141932,24.346464130148632],[54.20394203942041,24.353218439228172],[54.21834218342184,24.35828417103781],[54.232742327423296,24.35828417103781],[54.239942399423995,24.34139839833898],[54.25074250742509,24.326201202910042],[54.27234272342724,24.30256112113169],[54.265142651426515,24.294118234782275]]],[[[-167.99747997479975,25.001632110863127],[-168.0010800108001,25.01514072902218],[-168.0010800108001,25.016829306292067],[-167.99387993879938,25.011763574482416],[-167.99387993879938,25.008386419942653],[-167.99747997479975,25.00500926540289],[-167.99747997479975,25.001632110863127]]],[[[141.28881288812892,25.41702211925427],[141.27441274412746,25.427153582873558],[141.2708127081271,25.440662201032623],[141.27441274412746,25.450793664651925],[141.28881288812892,25.4524822419218],[141.2960129601296,25.445727932842274],[141.29961299612995,25.435596469222972],[141.2960129601296,25.423776428333795],[141.28881288812892,25.41702211925427]]],[[[-79.26739267392674,25.538599682685813],[-79.26379263792637,25.528468219066525],[-79.26739267392674,25.538599682685813],[-79.26739267392674,25.538599682685813]]],[[[-79.28899288992889,25.558862609924418],[-79.28899288992889,25.56223976446418],[-79.27819278192781,25.55210830084488],[-79.27819278192781,25.547042569035227],[-79.28899288992889,25.558862609924418]]],[[[-171.72351723517235,25.773311923199515],[-171.73071730717308,25.751360418691036],[-171.73791737917378,25.756426150500687],[-171.74151741517414,25.768246191389863],[-171.72351723517235,25.773311923199515]]],[[[131.29151291512915,25.950612536537193],[131.30231302313024,25.95398969107697],[131.32031320313206,25.94723538199743],[131.3275132751328,25.937103918378142],[131.32391323913242,25.92697245475884],[131.3167131671317,25.923595300219077],[131.30951309513097,25.923595300219077],[131.30231302313024,25.92697245475884],[131.29151291512915,25.938792495648016],[131.29151291512915,25.950612536537193]]],[[[-173.96633966339664,26.07219009996875],[-173.96273962739627,26.0671243681591],[-173.9591395913959,26.063747213619337],[-173.9591395913959,26.060370059079574],[-173.9591395913959,26.055304327269923],[-173.96633966339664,26.058681481809685],[-173.96633966339664,26.062058636349462],[-173.96633966339664,26.065435790889225],[-173.96633966339664,26.07219009996875]]],[[[127.22347223472235,26.59902620817215],[127.23427234272344,26.600714785442037],[127.24147241472417,26.597337630902274],[127.24507245072454,26.58720616728297],[127.23787237872381,26.578763280933558],[127.22707227072272,26.578763280933558],[127.21627216272162,26.577074703663683],[127.2090720907209,26.58214043547332],[127.21627216272162,26.592271899092623],[127.22347223472235,26.59902620817215]]],[[[-113.24453244532445,26.72398092614347],[-113.23013230132301,26.732423812492883],[-113.21933219332193,26.73073523522301],[-113.2121321213212,26.727358080683246],[-113.20133201332013,26.722292348873594],[-113.20493204932049,26.717226617063943],[-113.19413194131941,26.71384946252418],[-113.19053190531905,26.717226617063943],[-113.18693186931868,26.720603771603706],[-113.17973179731797,26.722292348873594],[-113.1761317613176,26.720603771603706],[-113.16173161731616,26.705406576174767],[-113.14733147331474,26.683455071666287],[-113.14013140131401,26.673323608047],[-113.13653136531364,26.664880721697585],[-113.14733147331474,26.664880721697585],[-113.15453154531545,26.67163503077711],[-113.16533165331653,26.676700762586762],[-113.19053190531905,26.68683222620605],[-113.2229322293223,26.695275112555464],[-113.24813248132482,26.702029421635004],[-113.2589325893259,26.705406576174767],[-113.26613266132661,26.70878373071453],[-113.2589325893259,26.717226617063943],[-113.24453244532445,26.72398092614347]]],[[[128.4546845468455,27.048187761960946],[128.4546845468455,27.027924834722356],[128.44748447484477,27.02117052564283],[128.43308433084331,27.02117052564283],[128.4114841148412,27.03130198926212],[128.40788407884082,27.034679143801895],[128.4006840068401,27.03636772107177],[128.39708397083973,27.04143345288142],[128.39708397083973,27.048187761960946],[128.4006840068401,27.051564916500723],[128.40788407884082,27.051564916500723],[128.4150841508415,27.060007802850137],[128.42948429484295,27.066762111929663],[128.4438844388444,27.0633849573899],[128.45108451084513,27.054942071040486],[128.4546845468455,27.048187761960946]]],[[[142.1888218882189,27.14612524361415],[142.18522185221855,27.157945284503327],[142.18522185221855,27.174831057202155],[142.19242192421927,27.184962520821458],[142.19962199621995,27.18327394355157],[142.2032220322203,27.173142479932267],[142.2032220322203,27.16301101631298],[142.19602196021964,27.152879552693676],[142.1888218882189,27.14612524361415]]],[[[142.19602196021964,27.59866395194271],[142.17802178021782,27.612172570101777],[142.18162181621818,27.618926879181302],[142.19242192421927,27.61554972464154],[142.19602196021964,27.59866395194271]]],[[[142.0808208082081,27.716864360834506],[142.07722077220774,27.726995824453795],[142.0808208082081,27.730372978993557],[142.08442084420847,27.72530724718392],[142.0808208082081,27.716864360834506]]],[[[128.23508235082352,27.867147737854054],[128.23868238682388,27.86039342877453],[128.24228242282425,27.857016274234766],[128.24228242282425,27.84519623334559],[128.23148231482315,27.853639119695004],[128.23148231482315,27.868836315123943],[128.23508235082352,27.867147737854054]]],[[[-177.32877328773287,28.211617500910137],[-177.32157321573214,28.20824034637036],[-177.32157321573214,28.206551769100486],[-177.3251732517325,28.204863191830597],[-177.3359733597336,28.204863191830597],[-177.32877328773287,28.211617500910137]]],[[[-177.35757357573576,28.2149946554499],[-177.36477364773648,28.20824034637036],[-177.37197371973718,28.203174614560723],[-177.3791737917379,28.19810888275107],[-177.389973899739,28.19810888275107],[-177.38637386373864,28.206551769100486],[-177.3791737917379,28.21330607818001],[-177.36837368373685,28.2149946554499],[-177.35757357573576,28.2149946554499]]],[[[-178.289982899829,28.40242673240688],[-178.28638286382863,28.392295268787578],[-178.29358293582936,28.390606691517704],[-178.29718297182973,28.387229536977927],[-178.30438304383043,28.387229536977927],[-178.29718297182973,28.390606691517704],[-178.29358293582936,28.39567242332734],[-178.29358293582936,28.39736100059723],[-178.289982899829,28.40242673240688]]],[[[129.59229592295924,29.44934463973415],[129.58869588695887,29.457787526083564],[129.59229592295924,29.467918989702852],[129.59949599495997,29.472984721512503],[129.59949599495997,29.47129614424263],[129.60309603096033,29.46960756697274],[129.6066960669607,29.46960756697274],[129.61029610296106,29.466230412432978],[129.61389613896142,29.4544103715438],[129.61389613896142,29.442590330654625],[129.59949599495997,29.442590330654625],[129.59229592295924,29.44934463973415]]],[[[129.52749527495274,29.90188334806271],[129.52749527495274,29.90863765714225],[129.53469534695347,29.910326234412125],[129.5418954189542,29.90863765714225],[129.54909549095493,29.9035719253326],[129.5526955269553,29.89681761625306],[129.5526955269553,29.893440461713297],[129.53829538295383,29.890063307173534],[129.53469534695347,29.893440461713297],[129.52749527495274,29.90188334806271]]],[[[129.94509945099452,29.96604928431826],[129.94509945099452,29.96098355250861],[129.94869948699488,29.95929497523872],[129.94149941499415,29.952540666159194],[129.92349923499233,29.957606397968846],[129.9126991269913,29.96098355250861],[129.9018990189902,29.971115016127897],[129.9018990189902,29.972803593397785],[129.89829898298984,29.976180747937548],[129.9018990189902,29.9812464797472],[129.9018990189902,29.98462363428696],[129.9126991269913,29.9913779433665],[129.90909909099094,29.999820829715915],[129.9126991269913,29.999820829715915],[129.92349923499233,30.004886561525552],[129.9270992709927,29.993066520636376],[129.93429934299343,29.982935057017087],[129.94509945099452,29.96604928431826]]],[[[-16.02916029160292,30.033592375113557],[-16.021960219602192,30.031903797843682],[-16.021960219602192,30.02852664330392],[-16.025560255602556,30.030215220573794],[-16.02916029160292,30.033592375113557]]],[[[-15.863558635586344,30.15179278400535],[-15.856358563585644,30.1467270521957],[-15.856358563585644,30.139972743116175],[-15.85995859958598,30.133218434036635],[-15.863558635586344,30.134907011306524],[-15.870758707587072,30.136595588576412],[-15.874358743587436,30.138284165846287],[-15.874358743587436,30.139972743116175],[-15.874358743587436,30.14166132038605],[-15.874358743587436,30.143349897655938],[-15.863558635586344,30.15179278400535]]],[[[140.3060030600306,30.49119681525177],[140.3168031680317,30.49119681525177],[140.3276032760328,30.484442506172243],[140.32040320403206,30.47599961982283],[140.3060030600306,30.47431104255294],[140.30240302403024,30.48106535163248],[140.30240302403024,30.48613108344213],[140.3060030600306,30.49119681525177]]],[[[129.42669426694266,30.84579804192714],[129.43029430294303,30.847486619197028],[129.4338943389434,30.844109464657265],[129.43029430294303,30.840732310117488],[129.42669426694266,30.84579804192714]]],[[[129.94509945099452,30.844109464657265],[129.95949959499598,30.837355155577725],[129.95949959499598,30.82891226922831],[129.94869948699488,30.818780805609023],[129.9378993789938,30.813715073799372],[129.9270992709927,30.813715073799372],[129.9126991269913,30.820469382878898],[129.90909909099094,30.822157960148786],[129.90909909099094,30.82553511468855],[129.90549905499057,30.833978001037963],[129.90909909099094,30.839043732847614],[129.91629916299166,30.842420887387377],[129.9270992709927,30.849175196466902],[129.93069930699306,30.85255235100668],[129.94149941499415,30.849175196466902],[129.94509945099452,30.844109464657265]]],[[[140.0432004320043,31.4452429727355],[140.04680046800468,31.44355439546561],[140.0432004320043,31.44355439546561],[140.03960039600395,31.44355439546561],[140.03960039600395,31.446931550005388],[140.0432004320043,31.4452429727355]]],[[[139.75519755197553,32.45163502558559],[139.7587975879759,32.47020937555429],[139.77319773197735,32.441503561966286],[139.75519755197553,32.45163502558559]]],[[[139.2979929799298,33.65052488720231],[139.29439294392944,33.65052488720231],[139.2979929799298,33.65052488720231],[139.2979929799298,33.65052488720231]]],[[[139.62199621996223,33.885237127715996],[139.62919629196296,33.87172850955693],[139.62919629196296,33.864974200477405],[139.62199621996223,33.85653131412799],[139.61119611196114,33.85315415958823],[139.59319593195931,33.8548427368581],[139.58239582395822,33.86328562320752],[139.57879578795792,33.880171395906345],[139.59319593195931,33.8953685913353],[139.61119611196114,33.89705716860517],[139.61839618396186,33.89030285952565],[139.62199621996223,33.885237127715996]]],[[[127.30987309873098,34.02032330930662],[127.31347313473134,34.01525757749697],[127.32067320673207,34.01356900022708],[127.32427324273243,34.01019184568732],[127.32427324273243,34.005126113877665],[127.30987309873098,34.011880422957205],[127.29547295472958,34.01356900022708],[127.29187291872921,34.016946154766856],[127.28827288272885,34.02370046384638],[127.28827288272885,34.032143350195796],[127.28467284672848,34.03383192746567],[127.28107281072812,34.03720908200545],[127.27747277472776,34.04396339108497],[127.28107281072812,34.04902912289462],[127.28107281072812,34.054094854704275],[127.28107281072812,34.05747200924404],[127.28467284672848,34.05747200924404],[127.28827288272885,34.05747200924404],[127.29187291872921,34.05916058651391],[127.29547295472958,34.0608491637838],[127.29907299072994,34.05747200924404],[127.29547295472958,34.047340545624735],[127.29547295472958,34.03720908200545],[127.30987309873098,34.02032330930662]]],[[[127.53307533075332,34.4509105131267],[127.53667536675368,34.44077904950741],[127.53667536675368,34.43402474042787],[127.52947529475296,34.42727043134835],[127.51147511475114,34.41882754499893],[127.49347493474937,34.41376181318928],[127.48987489874901,34.417138967729045],[127.48987489874901,34.42558185407846],[127.48267482674828,34.43064758588811],[127.47187471874719,34.43402474042787],[127.46827468274682,34.439090472237524],[127.46827468274682,34.44246762677729],[127.45747457474573,34.449221935856826],[127.45387453874542,34.45259909039659],[127.45747457474573,34.461041976746],[127.45387453874542,34.46610770855564],[127.45387453874542,34.47117344036529],[127.45747457474573,34.47286201763518],[127.46467464674646,34.47117344036529],[127.47187471874719,34.46610770855564],[127.48627486274864,34.464419131285766],[127.48627486274864,34.461041976746],[127.49347493474937,34.46273055401588],[127.5006750067501,34.46948486309542],[127.51147511475114,34.46948486309542],[127.53307533075332,34.4509105131267]]],[[[127.78147781477816,34.506633563032835],[127.78867788677888,34.50325640849307],[127.79227792277925,34.49819067668342],[127.79227792277925,34.49143636760388],[127.77787777877779,34.48805921306412],[127.77067770677706,34.48805921306412],[127.77067770677706,34.48974779033401],[127.7670776707767,34.49312494487377],[127.75627756277567,34.49819067668342],[127.74187741877421,34.501567831223184],[127.73107731077312,34.50832214030271],[127.72747727477275,34.51676502665212],[127.72387723877239,34.52351933573166],[127.7130771307713,34.526896490271426],[127.70587705877062,34.53365079935095],[127.7130771307713,34.542093685700365],[127.73107731077312,34.548847994779905],[127.74907749077494,34.55053657204978],[127.75987759877597,34.543782262970254],[127.77787777877779,34.51845360392201],[127.77427774277743,34.51169929484249],[127.77427774277743,34.50832214030271],[127.78147781477816,34.506633563032835]]],[[[126.10026100261001,34.59612815833661],[126.10386103861038,34.59443958106674],[126.10386103861038,34.589373849257086],[126.10386103861038,34.579242385637784],[126.10026100261001,34.569110922018496],[126.10026100261001,34.55897945839919],[126.09306093060934,34.55391372658954],[126.08586085860861,34.548847994779905],[126.07866078660788,34.542093685700365],[126.0570605706057,34.53196222208108],[126.04626046260466,34.53196222208108],[126.03546035460357,34.53365079935095],[126.03186031860321,34.5387165311606],[126.03906039060394,34.54040510843049],[126.0426604266043,34.54040510843049],[126.04986049860497,34.54547084024013],[126.05346053460534,34.548847994779905],[126.05346053460534,34.55222514931967],[126.03186031860321,34.55560230385943],[126.03546035460357,34.562356612938956],[126.04986049860497,34.564045190208844],[126.06426064260643,34.564045190208844],[126.07506075060752,34.57079949928837],[126.08226082260825,34.58093096290767],[126.07506075060752,34.59106242652696],[126.06786067860679,34.604571044686026],[126.06066060660606,34.62145681738485],[126.06786067860679,34.624833971924616],[126.07866078660788,34.61807966284509],[126.08586085860861,34.611325353765565],[126.10026100261001,34.606259621955914],[126.10026100261001,34.59612815833661]]],[[[126.03906039060394,34.569110922018496],[126.02826028260284,34.56573376747873],[126.02106021060212,34.57079949928837],[126.01746017460175,34.606259621955914],[126.02106021060212,34.624833971924616],[126.02826028260284,34.63496543554392],[126.0426604266043,34.611325353765565],[126.05346053460534,34.5978167356065],[126.06066060660606,34.584308117447435],[126.0570605706057,34.57248807655826],[126.04986049860497,34.57079949928837],[126.03906039060394,34.569110922018496]]],[[[125.44505445054449,34.688999908180165],[125.45585455854558,34.69068848545004],[125.45945459454595,34.687311330910276],[125.44865448654485,34.67886844456086],[125.44505445054449,34.6754912900211],[125.44145441454418,34.668736980941574],[125.42705427054273,34.65353978551262],[125.42345423454236,34.646785476433095],[125.41625416254163,34.63834259008368],[125.41265412654127,34.631588281004156],[125.4090540905409,34.62821112646439],[125.39825398253981,34.631588281004156],[125.39105391053914,34.646785476433095],[125.39465394653945,34.66029409459216],[125.39825398253981,34.67211413548134],[125.40545405454054,34.68224559910064],[125.41265412654127,34.69237706271993],[125.419854198542,34.69744279452958],[125.43065430654309,34.69913137179945],[125.43425434254345,34.69575421725969],[125.43785437854382,34.688999908180165],[125.44505445054449,34.688999908180165]]],[[[126.24786247862482,34.91695783961433],[126.23706237062373,34.913580685074564],[126.22626226262264,34.913580685074564],[126.21906219062191,34.92202357142398],[126.22266222662228,34.932155035043266],[126.229862298623,34.93553218958304],[126.24786247862482,34.93553218958304],[126.25146251462513,34.933843612313154],[126.2550625506255,34.9287778805035],[126.25146251462513,34.918646416884215],[126.24786247862482,34.91695783961433]]],[[[126.17946179461796,35.04866686666517],[126.17946179461796,35.043601134855535],[126.18306183061833,35.038535403045884],[126.18306183061833,35.02840393942658],[126.1758617586176,35.02671536215671],[126.17226172261724,35.02333820761693],[126.16866168661687,35.02502678488682],[126.15786157861578,35.03346967123623],[126.15426154261542,35.03515824850612],[126.14706147061474,35.03346967123623],[126.14346143461438,35.03346967123623],[126.14346143461438,35.038535403045884],[126.13986139861402,35.04022398031576],[126.13266132661329,35.04022398031576],[126.13266132661329,35.04191255758565],[126.13986139861402,35.0469782893953],[126.13626136261365,35.0469782893953],[126.13266132661329,35.0469782893953],[126.12906129061292,35.04866686666517],[126.12906129061292,35.05204402120495],[126.13626136261365,35.057109753014586],[126.14346143461438,35.057109753014586],[126.15426154261542,35.053732598474824],[126.16506165061651,35.05542117574471],[126.1758617586176,35.053732598474824],[126.17946179461796,35.04866686666517]]],[[[128.84348843488436,35.021649630347056],[128.839888398884,35.001386703108466],[128.83268832688327,34.994632394028926],[128.82548825488254,34.99294381675905],[128.82548825488254,34.996320971298815],[128.81828818288182,35.01489532126753],[128.81108811088114,35.01996105307717],[128.80748807488078,35.02502678488682],[128.81108811088114,35.03346967123623],[128.80748807488078,35.04191255758565],[128.80028800288005,35.04866686666517],[128.80388803888042,35.057109753014586],[128.8146881468815,35.06048690755436],[128.82548825488254,35.06217548482424],[128.83628836288364,35.06048690755436],[128.84348843488436,35.0469782893953],[128.84348843488436,35.021649630347056]]],[[[126.25866258662586,35.57043724305893],[126.2550625506255,35.573814397598696],[126.25146251462513,35.58056870667822],[126.25146251462513,35.58732301575776],[126.26226262262622,35.59238874756741],[126.26226262262622,35.594077324837286],[126.2550625506255,35.595765902107175],[126.25866258662586,35.59914305664694],[126.26586265862659,35.600831633916826],[126.26946269462695,35.60589736572646],[126.27306273062732,35.60589736572646],[126.27666276662768,35.60758594299635],[126.27666276662768,35.612651674806],[126.28026280262804,35.612651674806],[126.29106291062914,35.610963097536114],[126.29826298262986,35.616028829345765],[126.30186301863017,35.61940598388553],[126.3090630906309,35.616028829345765],[126.3090630906309,35.610963097536114],[126.30546305463054,35.6025202111867],[126.28746287462877,35.590700170297524],[126.27666276662768,35.57888012940835],[126.26586265862659,35.573814397598696],[126.26226262262622,35.57212582032882],[126.25866258662586,35.57043724305893]]],[[[12.86112861128612,35.87269257436793],[12.868328683286848,35.87269257436793],[12.875528755287547,35.865938265288406],[12.875528755287547,35.855806801669104],[12.871928719287212,35.85242964712934],[12.857528575285755,35.85242964712934],[12.850328503285027,35.855806801669104],[12.846728467284692,35.86256111074864],[12.846728467284692,35.86762684255828],[12.853928539285391,35.87100399709806],[12.86112861128612,35.87269257436793]]],[[[23.884438844388455,36.84362450455049],[23.88803888038882,36.83855877274084],[23.88803888038882,36.83349304093119],[23.884438844388455,36.831804463661314],[23.877238772387727,36.83687019547095],[23.877238772387727,36.84362450455049],[23.884438844388455,36.84362450455049]]],[[[23.45963459634598,36.92129905896509],[23.463234632346342,36.91623332715544],[23.466834668346678,36.90610186353615],[23.463234632346342,36.90441328626626],[23.456034560345614,36.90610186353615],[23.456034560345614,36.912856172615676],[23.456034560345614,36.914544749885565],[23.45243452434525,36.91623332715544],[23.45243452434525,36.92129905896509],[23.448834488344886,36.929741945314504],[23.456034560345614,36.928053368044615],[23.45963459634598,36.92129905896509]]],[[[126.10026100261001,37.22862012208374],[126.09306093060934,37.22524296754398],[126.08946089460898,37.22524296754398],[126.08946089460898,37.23030869935363],[126.09306093060934,37.24550589478257],[126.0966609666097,37.25901451294163],[126.10386103861038,37.26745739929105],[126.1110611106111,37.262391667481396],[126.11826118261183,37.25394878113198],[126.12546125461256,37.24888304932233],[126.15066150661505,37.23875158570304],[126.15786157861578,37.2319972766235],[126.15426154261542,37.22524296754398],[126.14346143461438,37.215111503924675],[126.13266132661329,37.21173434938491],[126.1218612186122,37.21173434938491],[126.1110611106111,37.215111503924675],[126.10386103861038,37.22355439027409],[126.10386103861038,37.22862012208374],[126.10026100261001,37.22862012208374]]],[[[126.48546485464857,37.27927744018022],[126.4926649266493,37.27421170837057],[126.49986499865003,37.26070309021151],[126.4926649266493,37.257325935671744],[126.4818648186482,37.25394878113198],[126.47826478264784,37.247194472052456],[126.47826478264784,37.242128740242805],[126.47106471064711,37.23368585389339],[126.45666456664566,37.2319972766235],[126.44946449464499,37.23537443116328],[126.44226442264426,37.23537443116328],[126.43506435064353,37.23875158570304],[126.43506435064353,37.25057162659222],[126.43506435064353,37.264080244751284],[126.44226442264426,37.2725231311007],[126.46026460264602,37.28096601745011],[126.48546485464857,37.27927744018022]]],[[[126.6150661506615,37.25563735840187],[126.6150661506615,37.25057162659222],[126.61866618666187,37.242128740242805],[126.6150661506615,37.2319972766235],[126.5610656106561,37.199914308495735],[126.53946539465397,37.19822573122585],[126.53946539465397,37.2032914630355],[126.55026550265507,37.215111503924675],[126.55026550265507,37.221865813004214],[126.5466654666547,37.226931544813866],[126.5610656106561,37.23875158570304],[126.5610656106561,37.25057162659222],[126.55386553865537,37.26576882202116],[126.5466654666547,37.27590028564046],[126.53946539465397,37.282654594719986],[126.54306543065434,37.284343171989875],[126.5610656106561,37.27927744018022],[126.5718657186572,37.28772032652964],[126.57546575465756,37.28772032652964],[126.57546575465756,37.27927744018022],[126.57906579065792,37.27083455383081],[126.58986589865901,37.26576882202116],[126.60786607866078,37.25901451294163],[126.6150661506615,37.25563735840187]]],[[[125.68985689856902,37.679470253142426],[125.70065700657005,37.67778167587254],[125.70785707857078,37.67271594406289],[125.70425704257042,37.66089590317371],[125.69345693456938,37.654141594094185],[125.68625686256865,37.652453016824296],[125.68625686256865,37.65751874863395],[125.67905679056793,37.669338789523124],[125.67905679056793,37.67778167587254],[125.68985689856902,37.679470253142426]]],[[[125.32985329853301,37.76727627117633],[125.33705337053374,37.7689648484462],[125.31185311853119,37.74194761212809],[125.29745297452973,37.72843899396902],[125.26865268652688,37.714930375809956],[125.26145261452615,37.70817606673043],[125.2470524705247,37.69973318038102],[125.22545225452257,37.696356025841254],[125.2218522185222,37.70311033492078],[125.25065250652506,37.731816148508784],[125.26505265052651,37.736881880318435],[125.2758527585276,37.73350472577867],[125.2758527585276,37.7402590348582],[125.27945279452797,37.74870192120761],[125.28305283052833,37.74870192120761],[125.2866528665287,37.7503904984775],[125.29025290252906,37.75376765301726],[125.29385293852937,37.75545623028714],[125.3010530105301,37.75545623028714],[125.32985329853301,37.76727627117633]]],[[[125.14625146251461,37.78585062114503],[125.14265142651425,37.794293507494444],[125.14265142651425,37.799359239304096],[125.14625146251461,37.80273639384386],[125.1678516785168,37.81286785746316],[125.18225182251825,37.819622166542686],[125.18945189451898,37.819622166542686],[125.19305193051929,37.81624501200292],[125.19305193051929,37.81117928019327],[125.18945189451898,37.809490702923384],[125.18585185851862,37.80780212565351],[125.17145171451716,37.79767066203421],[125.1570515705157,37.78585062114503],[125.14625146251461,37.78585062114503]]],[[[125.03105031050313,37.836507939241514],[125.04185041850417,37.834819361971626],[125.04545045450453,37.82468789835234],[125.04185041850417,37.8179335892728],[125.03825038250386,37.8179335892728],[125.0346503465035,37.8179335892728],[125.0238502385024,37.80780212565351],[125.01665016650168,37.80611354838362],[125.00585005850058,37.80611354838362],[124.99864998649986,37.80780212565351],[124.99864998649986,37.81286785746316],[125.00225002250022,37.81624501200292],[125.00585005850058,37.819622166542686],[125.01305013050131,37.821310743812575],[125.02025020250204,37.819622166542686],[125.0238502385024,37.8179335892728],[125.02745027450277,37.819622166542686],[125.03105031050313,37.82299932108245],[125.03105031050313,37.82468789835234],[125.02745027450277,37.82975363016199],[125.03105031050313,37.836507939241514]]],[[[124.7178471784718,37.846639402860816],[124.72504725047253,37.84326224832104],[124.72504725047253,37.8381965165114],[124.72144721447216,37.8280650528921],[124.7178471784718,37.8179335892728],[124.71424714247144,37.809490702923384],[124.70704707047071,37.80611354838362],[124.69984699846998,37.80611354838362],[124.69264692646925,37.80442497111375],[124.68904689046889,37.80104781657397],[124.68544685446858,37.799359239304096],[124.68544685446858,37.80273639384386],[124.68544685446858,37.80442497111375],[124.68184681846822,37.809490702923384],[124.67464674646749,37.81624501200292],[124.67824678246785,37.82468789835234],[124.69264692646925,37.834819361971626],[124.70344703447034,37.84495082559093],[124.71064710647107,37.84832798013069],[124.7178471784718,37.846639402860816]]],[[[120.74700747007472,37.939511152704355],[120.75780757807581,37.92262538000553],[120.75780757807581,37.90742818457659],[120.75420754207545,37.897296720957286],[120.74700747007472,37.897296720957286],[120.73620736207363,37.904051030036825],[120.72540725407254,37.90911676184646],[120.72180721807217,37.919248225465765],[120.72540725407254,37.94795403905377],[120.73620736207363,37.94795403905377],[120.74700747007472,37.939511152704355]]],[[[120.60660606606069,37.98003700718154],[120.61740617406173,37.981725584451425],[120.62460624606246,37.97328269810201],[120.62460624606246,37.95808550267307],[120.62460624606246,37.94795403905377],[120.61740617406173,37.946265461783895],[120.61380613806136,37.94795403905377],[120.61020610206106,37.95470834813331],[120.60300603006033,37.96990554356225],[120.60660606606069,37.98003700718154]]],[[[120.72180721807217,37.981725584451425],[120.7290072900729,37.96990554356225],[120.72180721807217,37.9648398117526],[120.70740707407077,37.966528389022486],[120.70020700207004,37.96990554356225],[120.69660696606968,37.9749712753719],[120.68940689406895,37.981725584451425],[120.68940689406895,37.98510273899119],[120.68940689406895,37.99016847080084],[120.70380703807041,37.99016847080084],[120.72180721807217,37.981725584451425]]],[[[120.76140761407618,38.170846238678294],[120.77220772207721,38.16578050686864],[120.77220772207721,38.1590261977891],[120.76140761407618,38.15733762051923],[120.75420754207545,38.1590261977891],[120.74700747007472,38.16240335232888],[120.73980739807399,38.17591197048793],[120.74340743407436,38.18773201137711],[120.76140761407618,38.170846238678294]]],[[[120.80820808208085,38.289046647570075],[120.80100801008012,38.2873580703002],[120.80100801008012,38.294112379379726],[120.80100801008012,38.29917811118938],[120.80820808208085,38.304243842999014],[120.81900819008189,38.31437530661832],[120.83340833408334,38.31268672934843],[120.83700837008371,38.304243842999014],[120.82980829808298,38.29917811118938],[120.82260822608225,38.29748953391949],[120.81900819008189,38.29748953391949],[120.81180811808122,38.294112379379726],[120.80820808208085,38.289046647570075]]],[[[120.9126091260913,38.3836069746835],[120.90900909009093,38.38529555195339],[120.90540905409057,38.392049861032916],[120.9162091620916,38.39542701557269],[120.92340923409233,38.38698412922328],[120.92340923409233,38.3836069746835],[120.9162091620916,38.3836069746835],[120.9126091260913,38.3836069746835]]],[[[14.347943479434804,38.53557892897295],[14.34434344343444,38.54739896986213],[14.358743587435868,38.55077612440189],[14.362343623436232,38.538956083512716],[14.347943479434804,38.53557892897295]]],[[[14.574745747457484,38.576104783450134],[14.578345783457848,38.565973319830846],[14.585545855458548,38.560907588021195],[14.585545855458548,38.55753043348143],[14.574745747457484,38.55584185621154],[14.553145531455328,38.560907588021195],[14.542345423454236,38.574416206180246],[14.542345423454236,38.586236247069436],[14.5459454594546,38.58792482433931],[14.563945639456392,38.58454766979955],[14.574745747457484,38.576104783450134]]],[[[13.170731707317088,38.71794527412028],[13.185131851318516,38.71794527412028],[13.195931959319608,38.71119096504076],[13.195931959319608,38.70781381050098],[13.177931779317788,38.69261661507204],[13.16353163531636,38.69092803780215],[13.152731527315268,38.69430519234193],[13.152731527315268,38.70274807869134],[13.156331563315632,38.70950238777087],[13.170731707317088,38.71794527412028]]],[[[15.226352263522642,38.810817023963835],[15.23355233552337,38.80743986942406],[15.24075240752407,38.804062714884296],[15.237152371523734,38.79561982853488],[15.23355233552337,38.788865519455356],[15.229952299523006,38.783799787645705],[15.226352263522642,38.77704547856618],[15.219152191521914,38.77366832402642],[15.204752047520486,38.77535690129629],[15.186751867518694,38.788865519455356],[15.186751867518694,38.79224267399512],[15.193951939519394,38.79730840580477],[15.204752047520486,38.80237413761442],[15.20835208352085,38.805751292154184],[15.211952119521214,38.810817023963835],[15.219152191521914,38.81250560123371],[15.226352263522642,38.810817023963835]]],[[[123.18063180631805,39.091120850764355],[123.18423184231841,39.086055118954704],[123.1950319503195,39.06579219171611],[123.1950319503195,39.05228357355706],[123.18423184231841,39.04215210993776],[123.17343173431738,39.033709223588346],[123.15903159031592,39.028643491778695],[123.14823148231483,39.03708637812811],[123.14463144631446,39.04384068720765],[123.14823148231483,39.055660728096825],[123.15183151831519,39.06241503717635],[123.16623166231665,39.060726459906476],[123.16623166231665,39.06579219171611],[123.15903159031592,39.070857923525764],[123.15183151831519,39.07423507806553],[123.14463144631446,39.075923655335416],[123.14463144631446,39.08098938714507],[123.16983169831701,39.08436654168483],[123.17703177031774,39.08943227349448],[123.18063180631805,39.091120850764355]]],[[[124.68904689046889,39.52677378639409],[124.69264692646925,39.5352166727435],[124.70344703447034,39.53690525001339],[124.70704707047071,39.530150940933865],[124.70704707047071,39.52001947731456],[124.70344703447034,39.508199436425386],[124.69624696246962,39.503133704615735],[124.68544685446858,39.503133704615735],[124.68184681846822,39.508199436425386],[124.68544685446858,39.5166423227748],[124.68184681846822,39.52170805458445],[124.68904689046889,39.52677378639409]]],[[[124.68544685446858,39.545348136362804],[124.67464674646749,39.53859382728328],[124.66024660246603,39.53859382728328],[124.64584645846458,39.54703671363269],[124.60264602646026,39.53859382728328],[124.5990459904599,39.53690525001339],[124.59544595445954,39.53859382728328],[124.5990459904599,39.545348136362804],[124.60624606246063,39.54872529090257],[124.61344613446136,39.55379102271222],[124.63144631446318,39.565611063601395],[124.63504635046354,39.56392248633152],[124.64944649446494,39.565611063601395],[124.67464674646749,39.570676795411046],[124.69264692646925,39.56898821814116],[124.69984699846998,39.56223390906163],[124.69624696246962,39.55379102271222],[124.68544685446858,39.545348136362804]]],[[[13.419134191341925,40.794895316075994],[13.42273422734229,40.799961047885645],[13.433534335343353,40.801649625155534],[13.426334263342653,40.79151816153623],[13.415534155341561,40.786452429726594],[13.419134191341925,40.794895316075994]]],[[[139.33759337593375,41.5176063875858],[139.33759337593375,41.519294964855675],[139.3411934119341,41.524360696665326],[139.34839348393484,41.524360696665326],[139.35559355593557,41.52267211939544],[139.3735937359374,41.52267211939544],[139.37719377193775,41.519294964855675],[139.38079380793812,41.51422923304604],[139.3735937359374,41.504097769426735],[139.35919359193593,41.499032037617084],[139.34479344793448,41.49396630580743],[139.3411934119341,41.49734346034721],[139.33759337593375,41.51085207850626],[139.33759337593375,41.5176063875858]]],[[[-122.70542705427054,47.182783128042246],[-122.68382683826837,47.18109455077237],[-122.67662676626766,47.17602881896272],[-122.67302673026731,47.164208778073544],[-122.67302673026731,47.155765891724116],[-122.67662676626766,47.13888011902529],[-122.6910269102691,47.128748655406014],[-122.70182701827018,47.12368292359636],[-122.70542705427054,47.12368292359636],[-122.71622716227162,47.128748655406014],[-122.72342723427235,47.13212580994576],[-122.73782737827378,47.142257273565065],[-122.74142741427414,47.14394585083494],[-122.7450274502745,47.15407731445424],[-122.73782737827378,47.15745446899402],[-122.73062730627306,47.16252020080367],[-122.72342723427235,47.17265166442294],[-122.71982719827199,47.18109455077237],[-122.70542705427054,47.182783128042246]]],[[[-123.28863288632886,48.81226019347906],[-123.2670326703267,48.800440152589886],[-123.25263252632527,48.79030868897058],[-123.24903249032491,48.776800070811504],[-123.24903249032491,48.76666860719223],[-123.24183241832418,48.76160287538258],[-123.22023220232202,48.76160287538258],[-123.20223202232023,48.7582257208428],[-123.18783187831878,48.75653714357293],[-123.18423184231841,48.74302852541388],[-123.18783187831878,48.73627421633432],[-123.19863198631987,48.732897061794574],[-123.22383223832239,48.73458563906445],[-123.24183241832418,48.73627421633432],[-123.25623256232562,48.7396513708741],[-123.28143281432814,48.751471411763276],[-123.29223292232922,48.75653714357293],[-123.30663306633066,48.76498002992233],[-123.31023310233101,48.77173433900188],[-123.31023310233101,48.78862011170071],[-123.31023310233101,48.79706299805011],[-123.3210332103321,48.80550588439954],[-123.3210332103321,48.81226019347906],[-123.31383313833138,48.81732592528871],[-123.29943299432995,48.81563734801881],[-123.28863288632886,48.81226019347906]]],[[[-123.09063090630906,48.768357184462104],[-123.10143101431015,48.76160287538258],[-123.11943119431194,48.76498002992233],[-123.13743137431373,48.76498002992233],[-123.15903159031589,48.76329145265245],[-123.16983169831698,48.768357184462104],[-123.18423184231841,48.77511149354163],[-123.20223202232023,48.78524295716093],[-123.20223202232023,48.79368584351033],[-123.20223202232023,48.80212872985976],[-123.20223202232023,48.808883038939285],[-123.20943209432093,48.81563734801881],[-123.21663216632166,48.82070307982846],[-123.22383223832239,48.822391657098336],[-123.22383223832239,48.83252312071764],[-123.20223202232023,48.82914596617789],[-123.18063180631806,48.81563734801881],[-123.1410314103141,48.80212872985976],[-123.09063090630906,48.79875157531998],[-123.05463054630546,48.795374420780234],[-123.04383043830438,48.78862011170071],[-123.04383043830438,48.78524295716093],[-123.05463054630546,48.78355437989106],[-123.0690306903069,48.77848864808141],[-123.07623076230763,48.776800070811504],[-123.09063090630906,48.768357184462104]]],[[[-2.363423634236341,49.44716524695494],[-2.3562235622356127,49.44041093787541],[-2.3526235262352486,49.428590896986236],[-2.363423634236341,49.418459433366934],[-2.3742237422374046,49.41170512428741],[-2.3778237782377687,49.41339370155728],[-2.3742237422374046,49.418459433366934],[-2.3742237422374046,49.423525165176585],[-2.3742237422374046,49.43027947425611],[-2.3742237422374046,49.43534520606576],[-2.3742237422374046,49.43872236060554],[-2.370623706237069,49.44209951514529],[-2.367023670236705,49.445476669685064],[-2.363423634236341,49.44716524695494]]],[[[-2.176221762217608,49.730846228295235],[-2.1690216902169084,49.72915765102536],[-2.1690216902169084,49.722403341945835],[-2.1870218702187003,49.71058330105666],[-2.201422014220128,49.70551756924701],[-2.2158221582215845,49.70382899197713],[-2.2266222662226482,49.70720614651688],[-2.2194221942219485,49.71902618740606],[-2.2050220502204922,49.72409191921571],[-2.1942219422194285,49.72409191921571],[-2.179821798217972,49.730846228295235],[-2.176221762217608,49.730846228295235]]],[[[-6.298262982629808,49.93516407795104],[-6.291062910629108,49.931786923411295],[-6.28386283862838,49.92334403706187],[-6.287462874628744,49.913212573442564],[-6.298262982629808,49.909835418902816],[-6.3090630906309,49.913212573442564],[-6.3090630906309,49.926721191601644],[-6.298262982629808,49.93516407795104]]],[[[-6.33426334263342,49.9604927369993],[-6.327063270632692,49.95711558245952],[-6.327063270632692,49.94867269611012],[-6.33426334263342,49.94191838703057],[-6.341463414634148,49.945295541570346],[-6.348663486634848,49.95542700518965],[-6.348663486634848,49.96386989153905],[-6.341463414634148,49.96386989153905],[-6.337863378633784,49.9604927369993],[-6.33426334263342,49.9604927369993]]],[[[-4.663846638466367,51.18302268039437],[-4.663846638466367,51.17626837131482],[-4.663846638466367,51.16444833042564],[-4.671046710467095,51.15938259861599],[-4.6782467824678236,51.16782548496542],[-4.6782467824678236,51.18133410312447],[-4.6746467464674595,51.19315414401365],[-4.671046710467095,51.19484272128355],[-4.667446674466731,51.188088412204024],[-4.663846638466367,51.18302268039437]]],[[[-9.815498154981555,51.6389385432627],[-9.808298082980826,51.64062712053257],[-9.801098010980098,51.63724996599282],[-9.808298082980826,51.63049565691327],[-9.81189811898119,51.62711850237352],[-9.891098910989115,51.611921306944566],[-9.901899018990179,51.61360988421444],[-9.916299162991635,51.61867561602409],[-9.916299162991635,51.628807079643394],[-9.901899018990179,51.63724996599282],[-9.880298802988023,51.64062712053257],[-9.858698586985867,51.642315697802445],[-9.822698226982254,51.6389385432627],[-9.815498154981555,51.6389385432627]]],[[[-10.312303123031228,51.92599667914274],[-10.301503015030136,51.92430810187287],[-10.297902979029772,51.919242370063216],[-10.3051030510305,51.91079948371382],[-10.323103231032292,51.90404517463426],[-10.362703627036268,51.892225133745086],[-10.395103951039516,51.89053655647521],[-10.40590405904058,51.883782247395686],[-10.427504275042736,51.88209367012581],[-10.427504275042736,51.89053655647521],[-10.413104131041308,51.90404517463426],[-10.362703627036268,51.92599667914274],[-10.351903519035176,51.93106241095239],[-10.333903339033384,51.93106241095239],[-10.326703267032656,51.92937383368252],[-10.319503195031956,51.92430810187287],[-10.312303123031228,51.92599667914274]]],[[[-9.649896498964978,53.10124645898111],[-9.646296462964614,53.10293503625098],[-9.64269642696425,53.10124645898111],[-9.64269642696425,53.09449214990158],[-9.66069660696607,53.09111499536181],[-9.779497794977942,53.12319796348959],[-9.81189811898119,53.13839515891854],[-9.801098010980098,53.14683804526794],[-9.775897758977578,53.14683804526794],[-9.750697506975058,53.135018004378765],[-9.739897398973994,53.135018004378765],[-9.714697146971474,53.13839515891854],[-9.696696966969654,53.13670658164864],[-9.671496714967134,53.12995227256911],[-9.664296642966434,53.12319796348959],[-9.671496714967134,53.11644365441006],[-9.671496714967134,53.10968934533051],[-9.649896498964978,53.10124645898111]]],[[[8.634686346863475,54.543291447460945],[8.699486994869943,54.55848864288987],[8.699486994869943,54.54835717927057],[8.692286922869243,54.52302852022234],[8.670686706867087,54.50107701571386],[8.641886418864203,54.49263412936446],[8.620286202862047,54.49263412936446],[8.605886058860591,54.49938843844399],[8.595085950859527,54.51289705660304],[8.602286022860227,54.529782829301865],[8.620286202862047,54.53822571565129],[8.627486274862747,54.53991429292117],[8.634686346863475,54.543291447460945]]],[[[15.705157051570524,56.1170454629916],[15.719557195571952,56.1170454629916],[15.72675726757268,56.1187340402615],[15.72675726757268,56.11366830845185],[15.715957159571616,56.106913999372324],[15.70155701557016,56.10522542210242],[15.697956979569796,56.10015969029277],[15.70155701557016,56.090028226673496],[15.705157051570524,56.079896763054194],[15.70155701557016,56.07651960851442],[15.697956979569796,56.07483103124454],[15.687156871568732,56.07483103124454],[15.683556835568368,56.07483103124454],[15.65115651156512,56.090028226673496],[15.643956439564391,56.10522542210242],[15.654756547565484,56.1187340402615],[15.669156691566911,56.12379977207115],[15.67635676356764,56.120422617531375],[15.683556835568368,56.1170454629916],[15.694356943569431,56.1170454629916],[15.705157051570524,56.1170454629916]]],[[[-13.689136891368918,57.59623915140884],[-13.692736927369282,57.59623915140884],[-13.692736927369282,57.59792772867874],[-13.689136891368918,57.59792772867874],[-13.689136891368918,57.59623915140884]]],[[[23.26163261632618,57.814065619223726],[23.272432724327246,57.8073113101442],[23.27603276032761,57.79886842379477],[23.26883268832688,57.78535980563572],[23.25083250832509,57.78367122836582],[23.229232292322934,57.79211411471525],[23.21843218432184,57.80055700106465],[23.21843218432184,57.808999887414075],[23.222032220322205,57.817442773763474],[23.22563225632257,57.82419708284303],[23.240032400323997,57.822508505573126],[23.26163261632618,57.814065619223726]]],[[[16.86796867968681,58.303753027489705],[16.878768787687875,58.30037587294993],[16.88236882368824,58.2936215638704],[16.878768787687875,58.28011294571135],[16.86796867968681,58.273358636631826],[16.85716857168572,58.271670059361924],[16.846368463684655,58.2750472139017],[16.835568355683563,58.290244409330654],[16.8319683196832,58.303753027489705],[16.846368463684655,58.31050733656923],[16.86796867968681,58.303753027489705]]],[[[16.89316893168933,58.334147418347584],[16.911169111691123,58.33752457288736],[16.91836918369185,58.33583599561749],[16.914769147691487,58.33583599561749],[16.914769147691487,58.334147418347584],[16.90756907569076,58.32908168653793],[16.903969039690395,58.325704531998184],[16.896768967689695,58.32063880018853],[16.88236882368824,58.317261645648756],[16.864368643686447,58.317261645648756],[16.846368463684655,58.32063880018853],[16.828368283682835,58.32739310926806],[16.813968139681407,58.339213150157235],[16.810368103681043,58.34765603650666],[16.803168031680315,58.352721768316314],[16.79956799567995,58.35778750012594],[16.803168031680315,58.36454180920549],[16.795967959679615,58.37129611828502],[16.785167851678523,58.379739004634416],[16.788767887678887,58.38987046825372],[16.80676806768068,58.39493620006337],[16.81756817568177,58.39493620006337],[16.828368283682835,58.40000193187302],[16.835568355683563,58.40000193187302],[16.839168391683927,58.39831335460315],[16.853568535685355,58.401690509142895],[16.860768607686083,58.40000193187302],[16.864368643686447,58.39831335460315],[16.860768607686083,58.39155904552359],[16.84996849968499,58.38311615917419],[16.839168391683927,58.379739004634416],[16.828368283682835,58.38142758190432],[16.846368463684655,58.37129611828502],[16.846368463684655,58.369607541015114],[16.835568355683563,58.369607541015114],[16.828368283682835,58.36285323193559],[16.8319683196832,58.35609892285606],[16.846368463684655,58.34596745923676],[16.871568715687175,58.33245884107771],[16.89316893168933,58.334147418347584]]],[[[18.322383223832247,58.96905247182349],[18.35118351183513,58.97918393544279],[18.35838358383586,58.97749535817289],[18.354783547835495,58.967363894553614],[18.34038340383404,58.95723243093431],[18.318783187831883,58.95216669912466],[18.30798307983082,58.94710096731501],[18.30078300783009,58.945412390045135],[18.293582935829363,58.94710096731501],[18.289982899829,58.94203523550536],[18.30078300783009,58.93359234915596],[18.31518315183152,58.93021519461618],[18.31518315183152,58.926838040076404],[18.289982899829,58.923460885536656],[18.271982719827207,58.918395153727005],[18.23958239582396,58.913329421917354],[18.217982179821803,58.904886535567954],[18.20718207182074,58.904886535567954],[18.19998199982001,58.9082636901077],[18.192781927819283,58.91164084464748],[18.196381963819647,58.92008373099688],[18.210782107821075,58.93528092642583],[18.22518225182253,58.945412390045135],[18.261182611826115,58.958921008204186],[18.27558275582757,58.96060958547406],[18.289982899829,58.96060958547406],[18.30078300783009,58.96229816274396],[18.304383043830455,58.96567531728371],[18.322383223832247,58.96905247182349]]],[[[18.19998199982001,59.00957832630067],[18.196381963819647,58.99775828541149],[18.18918189181892,58.994381130871716],[18.18198181981822,58.99944686268137],[18.17478174781749,59.00113543995127],[18.167581675816763,58.99775828541149],[18.160381603816035,58.99775828541149],[18.14958149581497,59.00451259449102],[18.145981459814607,59.00451259449102],[18.14958149581497,58.994381130871716],[18.14958149581497,58.985938244522316],[18.14958149581497,58.97749535817289],[18.145981459814607,58.96905247182349],[18.13158131581318,58.96398674001384],[18.117181171811723,58.967363894553614],[18.09918099180993,58.97918393544279],[18.095580955809567,58.97749535817289],[18.08838088380884,58.975806780903014],[18.070380703807047,58.96567531728371],[18.05598055980562,58.958921008204186],[18.052380523805255,58.96060958547406],[18.04878048780489,58.967363894553614],[18.052380523805255,58.97074104909336],[18.059580595805954,58.98424966725244],[18.066780667806682,58.99100397633197],[18.077580775807775,58.99269255360184],[18.08118081180814,58.99606970814162],[18.08118081180814,59.002824017221144],[18.08118081180814,59.00957832630067],[18.091980919809203,59.0180212126501],[18.102781027810295,59.02308694445972],[18.12438124381245,59.021398367189846],[18.14958149581497,59.02477552172962],[18.171181711817127,59.02815267626937],[18.217982179821803,59.02477552172962],[18.21438214382144,59.01970978991997],[18.178381783817855,59.011266903570544],[18.18198181981822,59.00957832630067],[18.185581855818555,59.011266903570544],[18.192781927819283,59.011266903570544],[18.19998199982001,59.00957832630067]]],[[[11.071910719107194,59.078809994365855],[11.075510755107558,59.08049857163576],[11.082710827108286,59.07712141709598],[11.082710827108286,59.06867853074655],[11.075510755107558,59.05854706712728],[11.064710647106466,59.051792758047725],[11.050310503105038,59.0467270262381],[11.050310503105038,59.04166129442845],[11.053910539105402,59.0365955626188],[11.046710467104674,59.0264640989995],[11.032310323103246,59.021398367189846],[11.01791017910179,59.01970978991997],[11.014310143101426,59.021398367189846],[11.01071010710109,59.02477552172962],[11.01071010710109,59.029841253539274],[10.999909999099998,59.029841253539274],[10.99270992709927,59.03321840807902],[10.99270992709927,59.0467270262381],[10.99270992709927,59.06192422166703],[10.99270992709927,59.07712141709598],[11.003510035100362,59.08725288071528],[11.021510215102154,59.09063003525503],[11.03591035910361,59.08894145798516],[11.039510395103946,59.08049857163576],[11.039510395103946,59.073744262556204],[11.046710467104674,59.073744262556204],[11.071910719107194,59.07543283982611],[11.06831068310683,59.07712141709598],[11.071910719107194,59.078809994365855]]],[[[10.90990909909101,59.11595869430329],[10.913509135091346,59.11089296249364],[10.913509135091346,59.100761498874334],[10.906309063090646,59.09063003525503],[10.88470884708849,59.07205568528633],[10.877508775087762,59.07205568528633],[10.873908739087398,59.07543283982611],[10.870308703087034,59.07712141709598],[10.855908559085606,59.073744262556204],[10.845108451084513,59.07543283982611],[10.84150841508415,59.08049857163576],[10.837908379083785,59.08725288071528],[10.830708307083086,59.09907292160446],[10.83430834308345,59.10413865341411],[10.84150841508415,59.10920438522376],[10.855908559085606,59.11595869430329],[10.86670866708667,59.11595869430329],[10.86670866708667,59.11258153976351],[10.86670866708667,59.10920438522376],[10.85950859508597,59.105827230683985],[10.855908559085606,59.10245007614421],[10.855908559085606,59.09907292160446],[10.870308703087034,59.105827230683985],[10.899108991089918,59.11595869430329],[10.90990909909101,59.11595869430329]]],[[[-1.3158131581315615,60.09364493356537],[-1.3086130861308618,60.09364493356537],[-1.3050130501304977,60.08689062448585],[-1.3086130861308618,60.076759160866544],[-1.3194131941319256,60.06662769724724],[-1.3266132661326537,60.05143050181829],[-1.3338133381333819,60.04298761546889],[-1.337413374133746,60.04467619273876],[-1.337413374133746,60.05143050181829],[-1.3338133381333819,60.06156196543759],[-1.3338133381333819,60.07338200632677],[-1.3338133381333819,60.076759160866544],[-1.337413374133746,60.07000485178702],[-1.337413374133746,60.063250542707465],[-1.3554135541355379,60.05143050181829],[-1.3662136621366017,60.04467619273876],[-1.3698136981369657,60.049741924548414],[-1.3554135541355379,60.058184810897814],[-1.3518135181351738,60.07000485178702],[-1.3482134821348097,60.08351346994607],[-1.337413374133746,60.09364493356537],[-1.3410134101340816,60.1003992426449],[-1.3482134821348097,60.103776397184646],[-1.3446134461344457,60.1088421289943],[-1.3266132661326537,60.112219283534074],[-1.3194131941319256,60.11559643807385],[-1.3158131581315615,60.11559643807385],[-1.3158131581315615,60.10715355172442],[-1.3230132301322897,60.09364493356537],[-1.3230132301322897,60.08857920175572],[-1.3158131581315615,60.09364493356537]]],[[[-2.053820538205372,60.15612229255103],[-2.0502205022050077,60.147679406201604],[-2.0466204662046437,60.1291050562329],[-2.064620646206464,60.117285015343725],[-2.08622086220862,60.12403932442325],[-2.104221042210412,60.13248221077268],[-2.11142111421114,60.1375479425823],[-2.11142111421114,60.14599082893173],[-2.104221042210412,60.14936798347148],[-2.08622086220862,60.15612229255103],[-2.064620646206464,60.157810869820906],[-2.053820538205372,60.15612229255103]]],[[[-1.0638106381063608,60.16456517890043],[-1.049410494104933,60.16963091071008],[-1.049410494104933,60.16287660163056],[-1.053010530105297,60.147679406201604],[-1.0602106021060251,60.1375479425823],[-1.0674106741067249,60.1291050562329],[-1.074610746107453,60.10715355172442],[-1.0854108541085452,60.10546497445455],[-1.114211142111401,60.11559643807385],[-1.121411214112129,60.12235074715338],[-1.117811178111765,60.15612229255103],[-1.1358113581135854,60.16794233344021],[-1.1358113581135854,60.17807379705951],[-1.114211142111401,60.179762374329385],[-1.096210962109609,60.17638521978961],[-1.0890108901088809,60.17807379705951],[-1.0854108541085452,60.18651668340891],[-1.078210782107817,60.188205260678785],[-1.074610746107453,60.183139528869134],[-1.074610746107453,60.17300806524986],[-1.071010710107089,60.16456517890043],[-1.0638106381063608,60.16456517890043]]],[[[-0.9198091980919685,60.38576880125507],[-0.9126091260912403,60.38745737852494],[-0.9126091260912403,60.38239164671529],[-0.9162091620916044,60.37732591490567],[-0.9306093060930607,60.36888302855624],[-0.9486094860948526,60.35537441039719],[-0.9774097740977368,60.340177214968236],[-1.0134101341013206,60.33342290588871],[-1.035010350103505,60.340177214968236],[-1.027810278102777,60.34524294677789],[-1.0242102421024128,60.348620101317664],[-1.0206102061020488,60.35368583312729],[-1.0170101701016847,60.362128719476715],[-1.006210062100621,60.36888302855624],[-0.9954099540995287,60.37226018309602],[-0.9846098460984649,60.37226018309602],[-0.9738097380973727,60.375637337635766],[-0.9666096660966446,60.38070306944542],[-0.9306093060930607,60.38239164671529],[-0.9234092340923326,60.384080223985194],[-0.9198091980919685,60.38576880125507]]],[[[4.923049230492325,60.86701332317165],[4.92664926649266,60.86363616863187],[4.930249302493024,60.861947591362],[4.930249302493024,60.85857043682222],[4.92664926649266,60.85519328228247],[4.9194491944919605,60.85519328228247],[4.8978489784898045,60.85857043682222],[4.879848798487984,60.865324745901745],[4.872648726487284,60.87545620952105],[4.872648726487284,60.883899095870476],[4.86904869048692,60.887276250410224],[4.865448654486556,60.88558767314035],[4.861848618486192,60.883899095870476],[4.8438484384844,60.89065340495],[4.833048330483308,60.89571913675965],[4.829448294482944,60.90247344583918],[4.833048330483308,60.9092277549187],[4.829448294482944,60.914293486728354],[4.82584825848258,60.92104779580788],[4.822248222482244,60.919359218538006],[4.81864818648188,60.91091633218858],[4.807848078480788,60.91260490945848],[4.80064800648006,60.91767064126813],[4.789847898478996,60.91767064126813],[4.782647826478268,60.91767064126813],[4.782647826478268,60.92104779580788],[4.782647826478268,60.92442495034766],[4.77544775447754,60.92949068215731],[4.782647826478268,60.93455641396696],[4.79344793447936,60.93962214577658],[4.836648366483672,60.94299930031636],[4.8438484384844,60.93962214577658],[4.836648366483672,60.932867836697056],[4.82584825848258,60.92949068215731],[4.854648546485464,60.932867836697056],[4.86904869048692,60.932867836697056],[4.883448834488348,60.92949068215731],[4.883448834488348,60.92611352761753],[4.87624876248762,60.92611352761753],[4.872648726487284,60.92442495034766],[4.872648726487284,60.91767064126813],[4.887048870488712,60.914293486728354],[4.8978489784898045,60.90753917764883],[4.923049230492325,60.878833364060824],[4.923049230492325,60.870390477711396],[4.9194491944919605,60.86870190044152],[4.923049230492325,60.86701332317165]]],[[[4.721447214472164,61.04093678196955],[4.732247322473228,61.0358710501599],[4.739447394473956,61.0274281638105],[4.739447394473956,61.01391954565145],[4.732247322473228,61.00041092749237],[4.7178471784718,60.990279463873065],[4.707047070470708,60.98859088660319],[4.703447034470344,60.99365661841284],[4.6998469984699796,61.00209950476224],[4.707047070470708,61.01054239111167],[4.707047070470708,61.01898527746107],[4.696246962469644,61.00716523657189],[4.69264692646928,61.00209950476224],[4.689046890468916,60.998722350222494],[4.681846818468188,60.99703377295262],[4.671046710467124,61.003788082032145],[4.66744667446676,61.01391954565145],[4.663846638466396,61.01898527746107],[4.6566465664656675,61.01898527746107],[4.649446494464939,61.025739586540624],[4.645846458464604,61.0358710501599],[4.645846458464604,61.0460025137792],[4.649446494464939,61.052756822858726],[4.649446494464939,61.05444540012863],[4.64224642246424,61.05782255466838],[4.645846458464604,61.05951113193828],[4.660246602466032,61.066265441017805],[4.663846638466396,61.06795401828768],[4.66744667446676,61.06795401828768],[4.6746467464674595,61.07301975009733],[4.6782467824678236,61.079774059176856],[4.689046890468916,61.08315121371663],[4.6998469984699796,61.08146263644673],[4.707047070470708,61.07639690463711],[4.710647106471072,61.06795401828768],[4.714247142471436,61.05951113193828],[4.710647106471072,61.05444540012863],[4.710647106471072,61.047691091049074],[4.721447214472164,61.04093678196955]]],[[[-7.558275582755812,62.108117616535424],[-7.547475474754748,62.1013633074559],[-7.536675366753656,62.09798615291612],[-7.547475474754748,62.09629757564625],[-7.558275582755812,62.09629757564625],[-7.6410764107641,62.099674730185995],[-7.644676446764464,62.10642903926555],[-7.61587615876158,62.11487192561495],[-7.587075870758696,62.11487192561495],[-7.558275582755812,62.108117616535424]]],[[[-6.319863198631992,62.30736973438158],[-6.291062910629108,62.30736973438158],[-6.276662766627652,62.30230400257193],[-6.276662766627652,62.295549693492404],[-6.305463054630536,62.28204107533335],[-6.298262982629808,62.27190961171405],[-6.298262982629808,62.26177814809475],[-6.305463054630536,62.2567124162851],[-6.312663126631264,62.24995810720557],[-6.327063270632692,62.246580952665795],[-6.341463414634148,62.24489237539592],[-6.35946359463594,62.246580952665795],[-6.370263702637033,62.2567124162851],[-6.381063810638096,62.268532457174274],[-6.38466384663846,62.28035249806345],[-6.373863738637368,62.28879538441288],[-6.355863558635576,62.29217253895263],[-6.319863198631992,62.30736973438158]]],[[[5.635856358563586,62.31918977527076],[5.61425614256143,62.32425550708041],[5.603456034560338,62.32932123889006],[5.610656106561066,62.33438697069971],[5.628656286562858,62.34114127977924],[5.653856538565378,62.34451843431901],[5.671856718567199,62.34451843431901],[5.679056790567898,62.34620701158889],[5.679056790567898,62.35464989793829],[5.6862568625686265,62.36140420701784],[5.697056970569719,62.36478136155759],[5.715057150571511,62.36478136155759],[5.718657186571875,62.363092784287716],[5.722257222572239,62.35971562974794],[5.7294572945729385,62.36140420701784],[5.740257402574031,62.36140420701784],[5.743857438574395,62.349584166128636],[5.733057330573303,62.33776412523946],[5.733057330573303,62.33269839342981],[5.740257402574031,62.33269839342981],[5.7294572945729385,62.32594408435028],[5.700657006570083,62.32087835254063],[5.675456754567563,62.322566929810534],[5.668256682566835,62.327632661620186],[5.668256682566835,62.32932123889006],[5.661056610566106,62.327632661620186],[5.653856538565378,62.32425550708041],[5.650256502565043,62.31918977527076],[5.635856358563586,62.31918977527076]]],[[[5.592655926559274,62.33945270250936],[5.578255782557818,62.336075547969585],[5.542255422554234,62.331009816159934],[5.520655206552078,62.33438697069971],[5.517055170551714,62.34114127977924],[5.51345513455135,62.34620701158889],[5.517055170551714,62.349584166128636],[5.509855098550986,62.36478136155759],[5.524255242552442,62.36984709336724],[5.545855458554598,62.36815851609737],[5.56385563855639,62.36140420701784],[5.581855818558182,62.358027052478064],[5.596255962559638,62.35464989793829],[5.596255962559638,62.34451843431901],[5.592655926559274,62.33945270250936]]],[[[-6.586265862658621,62.29048396168275],[-6.579065790657893,62.28204107533335],[-6.579065790657893,62.2668438799044],[-6.593465934659349,62.26177814809475],[-6.615066150661505,62.2668438799044],[-6.636666366663661,62.28035249806345],[-6.647466474664753,62.28879538441288],[-6.6726667266672735,62.32087835254063],[-6.683466834668337,62.34451843431901],[-6.679866798667973,62.366469938827464],[-6.665466654666545,62.37491282517689],[-6.647466474664753,62.366469938827464],[-6.640266402664025,62.35127274339854],[-6.597065970659713,62.303992579841804],[-6.586265862658621,62.29048396168275]]],[[[-6.654666546665453,62.26346672536462],[-6.647466474664753,62.260089570824874],[-6.640266402664025,62.2482695299357],[-6.643866438664389,62.238138066316395],[-6.658266582665817,62.23644948904652],[-6.676266762667609,62.241515220856144],[-6.690666906669065,62.251646684475446],[-6.6978669786697935,62.268532457174274],[-6.708667086670857,62.28372965260323],[-6.7158671586715855,62.28879538441288],[-6.7374673746737415,62.303992579841804],[-6.7626676266762615,62.327632661620186],[-6.76986769867699,62.336075547969585],[-6.787867878678782,62.36140420701784],[-6.787867878678782,62.37491282517689],[-6.7806678066780535,62.37997855698654],[-6.766267662676626,62.37322424790702],[-6.751867518675169,62.36140420701784],[-6.723067230672314,62.32932123889006],[-6.654666546665453,62.26346672536462]]],[[[-6.4098640986409805,62.32425550708041],[-6.402664026640252,62.31918977527076],[-6.395463954639553,62.309058311651455],[-6.399063990639888,62.300615425302055],[-6.406264062640616,62.29386111622253],[-6.424264242642408,62.29048396168275],[-6.456664566645657,62.295549693492404],[-6.485464854648541,62.31074688892136],[-6.510665106651061,62.32932123889006],[-6.525065250652489,62.34620701158889],[-6.532265322653217,62.371535670637115],[-6.546665466654673,62.37828997971664],[-6.557465574655737,62.390110020605846],[-6.543065430654309,62.398552906955246],[-6.517865178651789,62.39517575241547],[-6.503465034650333,62.38842144333594],[-6.496264962649633,62.37491282517689],[-6.485464854648541,62.35971562974794],[-6.4746647466474485,62.349584166128636],[-6.460264602646021,62.33945270250936],[-6.4530645306452925,62.331009816159934],[-6.4530645306452925,62.32425550708041],[-6.449464494644928,62.31750119800088],[-6.438664386643865,62.31918977527076],[-6.427864278642772,62.32594408435028],[-6.417064170641709,62.32594408435028],[-6.4098640986409805,62.32425550708041]]],[[[18.12438124381245,62.68729962010519],[18.077580775807775,62.68054531102567],[18.027180271802735,62.683922465565416],[18.00558005580058,62.705873970073895],[18.016380163801642,62.72275974277272],[18.02358023580237,62.7345797836619],[18.027180271802735,62.7447112472812],[18.041580415804162,62.754842710900505],[18.06318063180632,62.75821986544025],[18.08118081180814,62.754842710900505],[18.091980919809203,62.74808840182098],[18.102781027810295,62.7447112472812],[18.127981279812815,62.75146555636073],[18.14958149581497,62.74977697909085],[18.160381603816035,62.74639982455108],[18.160381603816035,62.73964551547155],[18.1567815678157,62.7261368973125],[18.14958149581497,62.7160054336932],[18.145981459814607,62.70925112461367],[18.142381423814243,62.705873970073895],[18.13158131581318,62.70756254734377],[18.120781207812087,62.705873970073895],[18.117181171811723,62.70249681553412],[18.12438124381245,62.69911966099437],[18.13158131581318,62.69405392918472],[18.12438124381245,62.68729962010519]]],[[[8.314283142831442,63.182052760180824],[8.317883178831806,63.17698702837117],[8.325083250832506,63.17192129656152],[8.307083070830714,63.16685556475187],[8.231482314823154,63.160101255672345],[8.209882098820998,63.16178983294222],[8.195481954819542,63.16685556475187],[8.191881918819206,63.1752984511013],[8.181081810818114,63.200627110149526],[8.173881738817386,63.209069996498954],[8.166681666816686,63.21413572830858],[8.170281702817022,63.22089003738813],[8.188281882818842,63.22595576919778],[8.209882098820998,63.227644346467656],[8.235082350823518,63.222578614658005],[8.27828278282783,63.200627110149526],[8.289082890828922,63.19724995560978],[8.307083070830714,63.18880706926035],[8.314283142831442,63.182052760180824]]],[[[22.026820268202698,63.32220467358107],[22.034020340203398,63.32220467358107],[22.059220592205918,63.30194174634249],[22.059220592205918,63.29518743726297],[22.048420484204854,63.28167881910389],[22.030420304203062,63.27661308729424],[22.012420124201242,63.27830166456414],[22.008820088200878,63.28167881910389],[22.008820088200878,63.28843312818344],[22.005220052200542,63.29181028272319],[21.998019980199814,63.28843312818344],[21.99441994419945,63.285055973643665],[21.99441994419945,63.279990241834014],[21.990819908199086,63.27830166456414],[21.983619836198358,63.27661308729424],[21.980019800198022,63.279990241834014],[21.972819728197294,63.28674455091354],[21.976419764197658,63.298564591802716],[21.990819908199086,63.31038463269189],[22.001620016200178,63.31376178723167],[22.023220232202334,63.307007478152144],[22.030420304203062,63.30869605542202],[22.026820268202698,63.31376178723167],[22.012420124201242,63.320516096311195],[22.008820088200878,63.325581828120846],[22.012420124201242,63.325581828120846],[22.01962019620197,63.325581828120846],[22.023220232202334,63.32389325085097],[22.026820268202698,63.32220467358107]]],[[[22.14562145621457,63.25128442824601],[22.134821348213478,63.25128442824601],[22.084420844208438,63.26141589186531],[22.080820808208102,63.26648162367496],[22.084420844208438,63.26985877821471],[22.07722077220774,63.27492451002436],[22.066420664206646,63.27830166456414],[22.07002070020701,63.28336739637379],[22.07722077220774,63.28674455091354],[22.084420844208438,63.28843312818344],[22.088020880208802,63.29518743726297],[22.084420844208438,63.30363032361237],[22.073620736207374,63.312073209961795],[22.07002070020701,63.31882751904132],[22.07722077220774,63.32220467358107],[22.091620916209166,63.32389325085097],[22.109621096210958,63.32895898266062],[22.124021240212414,63.325581828120846],[22.131221312213142,63.325581828120846],[22.138421384213842,63.32220467358107],[22.149221492214934,63.315450364501544],[22.156421564215663,63.31038463269189],[22.163621636216362,63.312073209961795],[22.163621636216362,63.31713894177145],[22.17082170821709,63.31882751904132],[22.17802178021782,63.31713894177145],[22.18522185221852,63.315450364501544],[22.188821888218882,63.31038463269189],[22.19602196021961,63.31038463269189],[22.20322203222034,63.312073209961795],[22.206822068220703,63.31713894177145],[22.21042210422104,63.325581828120846],[22.214022140221402,63.33233613720037],[22.22122221222213,63.3390904462799],[22.224822248222495,63.3407790235498],[22.232022320223223,63.3390904462799],[22.23562235622356,63.3306475599305],[22.23562235622356,63.325581828120846],[22.239222392223922,63.31376178723167],[22.24642246422465,63.307007478152144],[22.242822428224287,63.30194174634249],[22.23562235622356,63.293498859993065],[22.22122221222213,63.279990241834014],[22.21042210422104,63.27323593275449],[22.188821888218882,63.27323593275449],[22.156421564215663,63.28843312818344],[22.113221132211322,63.28336739637379],[22.113221132211322,63.28167881910389],[22.138421384213842,63.27830166456414],[22.160021600215998,63.27323593275449],[22.163621636216362,63.263104469135186],[22.156421564215663,63.25635016005566],[22.149221492214934,63.25635016005566],[22.14562145621457,63.254661582785786],[22.14562145621457,63.25128442824601]]],[[[21.958419584195838,63.33233613720037],[21.947619476194774,63.334024714470274],[21.947619476194774,63.33740186901002],[21.947619476194774,63.3407790235498],[21.951219512195138,63.34415617808955],[21.954819548195502,63.3492219098992],[21.9620196201962,63.35428764170885],[21.965619656196566,63.3593533735185],[21.972819728197294,63.36441910532815],[21.976419764197658,63.369484837137804],[21.983619836198358,63.37286199167755],[21.98721987219872,63.377927723487204],[21.998019980199814,63.38468203256673],[22.016020160201606,63.38468203256673],[22.030420304203062,63.382993455296855],[22.04482044820449,63.388059187106506],[22.059220592205918,63.388059187106506],[22.066420664206646,63.38637060983663],[22.07002070020701,63.38468203256673],[22.080820808208102,63.382993455296855],[22.088020880208802,63.38468203256673],[22.09522095220953,63.382993455296855],[22.09522095220953,63.37961630075711],[22.088020880208802,63.377927723487204],[22.080820808208102,63.37623914621733],[22.080820808208102,63.37286199167755],[22.084420844208438,63.3677962598679],[22.07722077220774,63.3593533735185],[22.059220592205918,63.35766479624863],[22.026820268202698,63.36610768259803],[22.012420124201242,63.36441910532815],[22.001620016200178,63.35428764170885],[21.998019980199814,63.3492219098992],[21.983619836198358,63.3407790235498],[21.965619656196566,63.33233613720037],[21.958419584195838,63.33233613720037]]],[[[9.160291602916033,63.64810008666845],[9.16749167491676,63.64641150939855],[9.171091710917125,63.641345777588924],[9.163891638916397,63.63459146850937],[9.131491314913148,63.627837159429845],[9.109891098910992,63.62108285035032],[9.077490774907744,63.61263996400092],[9.030690306903068,63.61770569581054],[9.012690126901276,63.62614858215997],[9.027090270902704,63.62952573669975],[9.030690306903068,63.632902891239496],[9.030690306903068,63.63796862304915],[9.037890378903796,63.64472293212867],[9.04149041490416,63.649788663938324],[9.04149041490416,63.654854395747975],[9.048690486904889,63.659920127557626],[9.059490594905952,63.6616087048275],[9.084690846908472,63.6616087048275],[9.106291062910628,63.659920127557626],[9.11709117091172,63.654854395747975],[9.120691206912085,63.6514772412082],[9.124291242912449,63.649788663938324],[9.145891458914605,63.6531658184781],[9.149491494914969,63.6514772412082],[9.156691566915669,63.64810008666845],[9.160291602916033,63.64810008666845]]],[[[20.87120871208714,63.67005159117693],[20.86400864008641,63.659920127557626],[20.856808568085683,63.6514772412082],[20.842408424084255,63.64472293212867],[20.824408244082434,63.6430343548588],[20.8280082800828,63.6531658184781],[20.86400864008641,63.676805900256454],[20.867608676086775,63.67511732298658],[20.87120871208714,63.67005159117693]]],[[[-17.749977499774985,63.717331754733635],[-17.742777427774286,63.712266022923984],[-17.742777427774286,63.703823136574584],[-17.749977499774985,63.69200309568541],[-17.76437764377644,63.681871632066105],[-17.77157771577714,63.6801830547962],[-17.76437764377644,63.685248786605854],[-17.760777607776078,63.690314518415505],[-17.760777607776078,63.695380250225156],[-17.767977679776806,63.69875740476493],[-17.77877778777787,63.69875740476493],[-17.82197821978218,63.69200309568541],[-17.82197821978218,63.70044598203481],[-17.78957789577896,63.71395460019386],[-17.77157771577714,63.717331754733635],[-17.76437764377644,63.71902033200351],[-17.749977499774985,63.717331754733635]]],[[[20.89640896408966,63.75448045467104],[20.907209072090723,63.75616903194094],[20.918009180091815,63.76461191829034],[20.93960939609397,63.77305480463977],[20.9468094680947,63.774743381909644],[20.9468094680947,63.77305480463977],[20.943209432094335,63.76967765009999],[20.93960939609397,63.766300495560245],[20.943209432094335,63.76123476375059],[20.943209432094335,63.75616903194094],[20.936009360093607,63.752791877401165],[20.932409324093243,63.74603756832164],[20.936009360093607,63.73759468197224],[20.936009360093607,63.72746321835294],[20.932409324093243,63.71564317746376],[20.92160921609218,63.703823136574584],[20.907209072090723,63.695380250225156],[20.892808928089295,63.690314518415505],[20.885608856088567,63.690314518415505],[20.87840878408784,63.690314518415505],[20.86400864008641,63.68356020933598],[20.860408604086047,63.69369167295528],[20.882008820088203,63.74266041378186],[20.88920889208893,63.74941472286142],[20.89640896408966,63.75448045467104]]],[[[22.80802808028082,63.779809113719296],[22.82242822428225,63.779809113719296],[22.829628296282976,63.77643195917952],[22.826028260282612,63.77305480463977],[22.82242822428225,63.77136622736987],[22.818828188281884,63.76967765009999],[22.818828188281884,63.76292334102047],[22.81522815228152,63.75616903194094],[22.811628116281156,63.752791877401165],[22.80802808028082,63.747726145591514],[22.800828008280092,63.73759468197224],[22.793627936279364,63.74097183651199],[22.7828278282783,63.744348991051766],[22.775627756277572,63.74097183651199],[22.779227792277936,63.73421752743246],[22.775627756277572,63.72746321835294],[22.76482764827648,63.72746321835294],[22.75762757627578,63.72239748654329],[22.73962739627396,63.72070890927341],[22.718027180271804,63.72746321835294],[22.703627036270376,63.73590610470234],[22.692826928269284,63.75110330013129],[22.685626856268584,63.75448045467104],[22.68202682026822,63.75785760921082],[22.68202682026822,63.76292334102047],[22.703627036270376,63.76967765009999],[22.710827108271076,63.77305480463977],[22.718027180271804,63.77812053644942],[22.736027360273596,63.78487484552895],[22.76482764827648,63.79162915460847],[22.7828278282783,63.7899405773386],[22.790027900279,63.78318626825907],[22.797227972279728,63.77812053644942],[22.800828008280092,63.77643195917952],[22.804428044280456,63.77812053644942],[22.80802808028082,63.779809113719296]]],[[[9.930699306993063,64.02802997239206],[9.941499414994155,64.02296424058241],[9.945099450994519,64.01114419969323],[9.927099270992727,64.0027013133438],[9.909099090990907,63.997635581534155],[9.891098910989115,63.997635581534155],[9.880298802988023,64.0027013133438],[9.865898658986595,64.00607846788358],[9.855098550985502,64.00945562242333],[9.855098550985502,64.01283277696311],[9.873098730987323,64.01620993150289],[9.880298802988023,64.01958708604263],[9.876698766987687,64.02296424058241],[9.865898658986595,64.02296424058241],[9.855098550985502,64.02296424058241],[9.847898478984803,64.02634139512216],[9.844298442984439,64.03309570420168],[9.851498514985167,64.03816143601134],[9.876698766987687,64.03816143601134],[9.880298802988023,64.04322716782099],[9.88749887498875,64.04829289963064],[9.901899018990207,64.04491574509089],[9.916299162991635,64.03647285874146],[9.919899198991999,64.03140712693181],[9.919899198991999,64.02802997239206],[9.930699306993063,64.02802997239206]]],[[[40.00180001800018,64.73723242574277],[39.980199801998026,64.72878953939338],[39.944199441994414,64.72878953939338],[39.95139951399514,64.74229815755243],[39.987399873998754,64.74398673482233],[40.00180001800018,64.73723242574277]]],[[[36.01296012960131,65.05130779794098],[36.023760237602374,65.04624206613133],[36.02736027360274,65.03611060251203],[36.016560165601675,65.0293562934325],[36.00576005760058,65.02597913889272],[35.95535955359554,65.02597913889272],[35.91935919359193,65.02091340708307],[35.9049590495905,65.02260198435297],[35.90135901359014,65.02597913889272],[35.897758977589774,65.03273344797225],[35.890558905589074,65.04117633432168],[35.90135901359014,65.0479306434012],[35.92655926559266,65.05468495248073],[35.95535955359554,65.05468495248073],[35.96255962559627,65.05468495248073],[35.973359733597334,65.0563735297506],[35.99495994959949,65.05468495248073],[36.00576005760058,65.05299637521085],[36.01296012960131,65.05130779794098]]],[[[36.21096210962111,65.15768816594357],[36.250562505625055,65.15937674321347],[36.26136261362615,65.15431101140382],[36.23616236162363,65.14586812505439],[36.200162001620015,65.13911381597487],[36.13536135361355,65.13742523870499],[36.099360993609935,65.13067092962547],[36.074160741607415,65.13067092962547],[36.074160741607415,65.12729377508569],[36.066960669606715,65.12560519781582],[36.04536045360453,65.12729377508569],[36.0309603096031,65.13067092962547],[36.023760237602374,65.13235950689534],[35.95175951759518,65.14586812505439],[35.940959409594115,65.15431101140382],[35.94455944559445,65.16781962956287],[35.948159481594814,65.18132824772192],[35.966159661596635,65.18808255680148],[35.991359913599155,65.19145971134122],[35.991359913599155,65.18977113407135],[35.991359913599155,65.18301682499182],[35.998559985599854,65.1847054022617],[36.00936009360095,65.18301682499182],[36.023760237602374,65.17795109318217],[36.03816038160383,65.16950820683275],[36.048960489604895,65.166131052293],[36.05616056160562,65.16275389775322],[36.05976059760599,65.15937674321347],[36.07056070560705,65.15768816594357],[36.192961929619315,65.1559995886737],[36.21096210962111,65.15768816594357]]],[[[22.408424084240863,65.45487776544294],[22.419224192241927,65.4498120336333],[22.4120241202412,65.44136914728387],[22.38682386823868,65.43292626093447],[22.376023760237615,65.43123768366456],[22.293222932229327,65.42786052912481],[22.2860228602286,65.43123768366456],[22.2860228602286,65.44305772455374],[22.293222932229327,65.45318918817304],[22.307623076230783,65.45487776544294],[22.318423184231847,65.45150061090317],[22.32202322023221,65.44643487909352],[22.332823328233303,65.44305772455374],[22.350823508235095,65.4498120336333],[22.37242372423725,65.45994349725257],[22.390423904239043,65.45994349725257],[22.408424084240863,65.45487776544294]]],[[[22.1528215282153,65.42954910639469],[22.149221492214934,65.43461483820434],[22.142021420214206,65.44643487909352],[22.14562145621457,65.45487776544294],[22.14562145621457,65.45825491998269],[22.14562145621457,65.468386383602],[22.156421564215663,65.47514069268152],[22.174421744217454,65.47514069268152],[22.21042210422104,65.46500922906222],[22.214022140221402,65.45994349725257],[22.206822068220703,65.45656634271282],[22.206822068220703,65.4498120336333],[22.217622176221766,65.44136914728387],[22.22842228422286,65.43630341547421],[22.232022320223223,65.43123768366456],[22.232022320223223,65.42448337458504],[22.232022320223223,65.41772906550551],[22.22122221222213,65.41941764277539],[22.21042210422104,65.42279479731516],[22.20322203222034,65.42617195185491],[22.1528215282153,65.42954910639469]]],[[[22.595625956259568,65.52748658804788],[22.610026100261024,65.52410943350813],[22.617226172261724,65.5173551244286],[22.61362613626136,65.51228939261895],[22.60642606426066,65.51060081534905],[22.58842588425884,65.51228939261895],[22.566825668256683,65.5173551244286],[22.552425524255256,65.53086374258766],[22.559625596255984,65.53761805166718],[22.577625776257776,65.53255231985753],[22.584825848258504,65.52917516531778],[22.595625956259568,65.52748658804788]]],[[[22.217622176221766,65.5072236608093],[22.192421924219246,65.525798010778],[22.18522185221852,65.53761805166718],[22.199621996219975,65.54268378347683],[22.21042210422104,65.5443723607467],[22.224822248222495,65.5443723607467],[22.30402304023042,65.52242085623823],[22.31122311223112,65.52242085623823],[22.318423184231847,65.52410943350813],[22.325623256232575,65.52073227896835],[22.33642336423364,65.51228939261895],[22.358023580235823,65.50384650626953],[22.358023580235823,65.49540361992013],[22.343623436234367,65.49033788811047],[22.332823328233303,65.49202646538035],[22.32202322023221,65.50046935172978],[22.307623076230783,65.5072236608093],[22.293222932229327,65.51060081534905],[22.2788227882279,65.51397796988883],[22.27162271622717,65.51060081534905],[22.275222752227535,65.50046935172978],[22.27162271622717,65.50046935172978],[22.27162271622717,65.49709219719],[22.27162271622717,65.49033788811047],[22.282422824228263,65.48358357903095],[22.2860228602286,65.4785178472213],[22.2788227882279,65.4785178472213],[22.264422644226443,65.48189500176105],[22.217622176221766,65.5072236608093]]],[[[22.577625776257776,65.58320963795401],[22.62442624426245,65.59334110157332],[22.642426424264244,65.58827536976366],[22.63882638826388,65.57983248341426],[22.620826208262088,65.57645532887449],[22.61362613626136,65.57138959706484],[22.61362613626136,65.56294671071544],[22.60642606426066,65.55788097890579],[22.595625956259568,65.55450382436601],[22.58842588425884,65.55450382436601],[22.57402574025741,65.55788097890579],[22.570425704257048,65.55788097890579],[22.577625776257776,65.55450382436601],[22.570425704257048,65.55450382436601],[22.5380253802538,65.56294671071544],[22.534425344253464,65.56801244252506],[22.5308253082531,65.57645532887449],[22.534425344253464,65.58152106068414],[22.545225452254527,65.58152106068414],[22.559625596255984,65.58152106068414],[22.577625776257776,65.58320963795401]]],[[[22.570425704257048,65.59502967884319],[22.559625596255984,65.60178398792272],[22.55602556025562,65.60516114246249],[22.566825668256683,65.61191545154202],[22.595625956259568,65.61360402881189],[22.602826028260296,65.60009541065284],[22.58842588425884,65.59334110157332],[22.570425704257048,65.59502967884319]]],[[[22.962829628296276,65.71660724227476],[22.977229772297733,65.70985293319521],[22.98442984429846,65.69972146957593],[22.980829808298097,65.69296716049638],[22.970029700297005,65.69634431503616],[22.962829628296276,65.69634431503616],[22.95922959229594,65.68959000595663],[22.962829628296276,65.6811471196072],[22.97362973629737,65.66763850144815],[22.955629556295577,65.67101565598793],[22.926829268292693,65.68452427414698],[22.89802898028981,65.70141004684581],[22.88362883628838,65.71998439681451],[22.887228872288716,65.73687016951334],[22.905229052290537,65.74193590132299],[22.930429304293057,65.74193590132299],[22.955629556295577,65.73349301497359],[22.95922959229594,65.72505012862416],[22.944829448294485,65.72505012862416],[22.944829448294485,65.72167297408438],[22.962829628296276,65.71660724227476]]],[[[23.798037980379803,65.75375594221217],[23.801638016380167,65.75037878767242],[23.801638016380167,65.74362447859286],[23.798037980379803,65.73518159224346],[23.79443794437944,65.72842728316394],[23.78723787237874,65.72505012862416],[23.783637836378375,65.72167297408438],[23.783637836378375,65.71829581954464],[23.772837728377283,65.71154151046511],[23.7368373683737,65.69634431503616],[23.700837008370087,65.70816435592533],[23.682836828368295,65.72167297408438],[23.682836828368295,65.74362447859286],[23.690036900369023,65.74869021040251],[23.697236972369723,65.74024732405312],[23.70443704437045,65.73518159224346],[23.71163711637118,65.74024732405312],[23.715237152371543,65.75206736494229],[23.71883718837188,65.75037878767242],[23.72963729637297,65.74531305586277],[23.740437404374063,65.74193590132299],[23.75483754837549,65.74193590132299],[23.765637656376583,65.74362447859286],[23.776437764377647,65.75037878767242],[23.78003780037801,65.74869021040251],[23.78723787237874,65.74362447859286],[23.790837908379103,65.74700163313264],[23.79443794437944,65.75375594221217],[23.798037980379803,65.75375594221217]]],[[[22.73962739627396,65.71323008773498],[22.73242732427326,65.71829581954464],[22.725227252272532,65.72336155135429],[22.725227252272532,65.73011586043381],[22.728827288272896,65.73855874678321],[22.73242732427326,65.75206736494229],[22.736027360273596,65.76557598310134],[22.746827468274688,65.770641714911],[22.790027900279,65.75037878767242],[22.800828008280092,65.73518159224346],[22.811628116281156,65.71491866500486],[22.804428044280456,65.70478720138556],[22.761227612276116,65.70816435592533],[22.73962739627396,65.71323008773498]]],[[[-18.009180091800914,66.56427303175587],[-17.983979839798394,66.5507644135968],[-17.976779767797666,66.54907583632692],[-17.98037980379803,66.53894437270762],[-17.998379983799822,66.53387864089797],[-18.016380163801642,66.54569868178714],[-18.019980199802006,66.5608958772161],[-18.009180091800914,66.56427303175587]]],[[[54.32994329943301,68.31195050608446],[54.340743407434076,68.3068847742748],[54.34434344343444,68.29337615611576],[54.33714337143371,68.27649038341693],[54.32634326343265,68.26298176525785],[54.315543155431556,68.2596046107181],[54.2219422194222,68.24440741528915],[54.20394203942041,68.2494731470988],[54.20034200342005,68.25622745617832],[54.19674196741968,68.26298176525785],[54.20034200342005,68.26467034252775],[54.20034200342005,68.2697360743374],[54.20034200342005,68.2781789606868],[54.21114211142111,68.29168757884585],[54.239942399423995,68.30350761973506],[54.30114301143013,68.32714770151341],[54.32994329943301,68.33052485605316],[54.33714337143371,68.32714770151341],[54.32634326343265,68.32208196970376],[54.30114301143013,68.31701623789411],[54.297542975429764,68.31363908335433],[54.308343083430856,68.31363908335433],[54.31914319143192,68.31195050608446],[54.32994329943301,68.31195050608446]]],[[[53.912339123391234,68.36260782418094],[53.96633966339664,68.35754209237129],[53.99153991539916,68.34572205148211],[53.98433984339843,68.32377054697363],[53.95913959139591,68.29337615611576],[53.91953919539196,68.2883104243061],[53.887138871388714,68.2967533106555],[53.86553865538656,68.3068847742748],[53.85833858338583,68.31870481516398],[53.854738547385494,68.32883627878329],[53.854738547385494,68.33727916513268],[53.85833858338583,68.34572205148211],[53.872738727387286,68.35247636056164],[53.88353883538835,68.35416493783151],[53.912339123391234,68.36260782418094]]],[[[49.04869048690489,68.67837177364899],[49.07389073890741,68.67668319637912],[49.12429124291245,68.66824031002972],[49.120691206912085,68.66317457822007],[48.76428764287644,68.6901918145382],[48.76428764287644,68.69694612361772],[48.811088110881116,68.69694612361772],[49.04869048690489,68.67837177364899]]],[[[49.57789577895781,68.81852368704926],[49.5958959589596,68.82021226431914],[49.599495994959966,68.81514653250949],[49.59229592295924,68.80839222342996],[49.549095490954926,68.79488360527091],[49.498694986949886,68.78475214165161],[49.49149491494916,68.79319502800104],[49.55269552695529,68.81176937796974],[49.57069570695708,68.81683510977939],[49.57789577895781,68.81852368704926]]],[[[54.265142651426515,68.81683510977939],[54.373143731437324,68.79150645073113],[54.39474394743948,68.78306356438173],[54.38754387543875,68.77799783257208],[54.22914229142293,68.79657218254079],[54.21114211142111,68.80163791435044],[54.19674196741968,68.80839222342996],[54.19314193141932,68.81345795523961],[54.20394203942041,68.81852368704926],[54.214742147421475,68.82021226431914],[54.2219422194222,68.82021226431914],[54.265142651426515,68.81683510977939]]],[[[49.815498154981555,68.89957539600363],[49.82269822698228,68.9029525505434],[49.840698406984075,68.90632970508318],[49.840698406984075,68.90126397327353],[49.783097830978306,68.88100104603492],[49.765097650976514,68.87762389149515],[49.75069750697509,68.87762389149515],[49.75429754297545,68.88100104603492],[49.78669786697867,68.88944393238435],[49.815498154981555,68.89957539600363]]],[[[54.97434974349744,68.94010125048081],[55.01395013950139,68.93503551867119],[55.02115021150212,68.92828120959163],[55.02115021150212,68.91477259143258],[54.98874988749887,68.9113954368928],[54.94914949149492,68.91814974597236],[54.9239492394924,68.92490405505188],[54.91314913149131,68.93165836413141],[54.91314913149131,68.93672409594106],[54.927549275492765,68.94010125048081],[54.97434974349744,68.94010125048081]]],[[[50.08190081900821,68.96036417771941],[50.092700927009275,68.96374133225919],[50.10710107101073,68.96374133225919],[50.09630096300964,68.95360986863989],[50.07110071100712,68.94347840502058],[50.00270002700029,68.92996978686153],[49.99909999099992,68.93165836413141],[50.04950049500496,68.94516698229046],[50.07110071100712,68.95529844590976],[50.08190081900821,68.96036417771941]]],[[[66.83646836468367,70.39227770257995],[66.86526865268652,70.38383481623052],[66.86886868868689,70.38045766169077],[66.8508685086851,70.38383481623052],[66.76446764467644,70.40240916619925],[66.60606606066062,70.46150937064513],[66.59166591665917,70.47332941153431],[66.59526595265953,70.49021518423314],[66.63846638466384,70.52567530690067],[66.66726667266673,70.53749534778984],[66.67446674466746,70.53580677051997],[66.66726667266673,70.52060957509102],[66.67086670866709,70.50710095693196],[66.67806678066782,70.50034664785244],[66.68886688866888,70.49359233877291],[66.69966699666998,70.49021518423314],[66.70326703267034,70.48514945242349],[66.69966699666998,70.47670656607409],[66.7068670686707,70.47164083426443],[66.72126721267213,70.46826367972466],[66.73206732067322,70.463197947915],[66.73566735667359,70.45644363883548],[66.73926739267392,70.44968932975596],[66.74646746467465,70.44631217521618],[66.75006750067502,70.44293502067643],[66.75006750067502,70.43955786613665],[66.75366753667538,70.4361807115969],[66.76086760867611,70.43280355705713],[66.80766807668078,70.40072058892935],[66.81846818468185,70.3956548571197],[66.83646836468367,70.39227770257995]]],[[[24.838448384483854,71.09472584685113],[24.816848168481698,71.08628296050173],[24.813248132481334,71.07952865142221],[24.827648276482762,71.07615149688243],[24.820448204482062,71.07446291961256],[24.788047880478814,71.06770861053303],[24.777247772477722,71.0592657241836],[24.788047880478814,71.05251141510408],[24.788047880478814,71.04744568329443],[24.770047700477022,71.02549417878595],[24.755647556475566,71.02549417878595],[24.723247232472346,71.02718275605585],[24.705247052470526,71.03224848786547],[24.687246872468734,71.03731421967512],[24.669246692466942,71.04237995148478],[24.63324633246333,71.0491342605643],[24.615246152461538,71.05588856964386],[24.6188461884619,71.0693971878029],[24.647646476464786,71.08290580596196],[24.672846728467306,71.08797153777161],[24.694446944469462,71.08459438323186],[24.705247052470526,71.0778400741523],[24.70164701647016,71.07277434234268],[24.705247052470526,71.0693971878029],[24.719647196471982,71.06770861053303],[24.73404734047341,71.0693971878029],[24.737647376473774,71.07277434234268],[24.730447304473046,71.08290580596196],[24.70884708847089,71.09810300139091],[24.712447124471254,71.10823446501021],[24.744847448474502,71.10823446501021],[24.762847628476294,71.10485731047044],[24.766447664476658,71.09979157866078],[24.773647736477386,71.09641442412104],[24.780847808478086,71.09303726958126],[24.788047880478814,71.09303726958126],[24.806048060480606,71.09810300139091],[24.816848168481698,71.09810300139091],[24.83484834848349,71.09979157866078],[24.838448384483854,71.09472584685113]]],[[[53.368733687336885,71.29228938742742],[53.37953379533795,71.28384650107802],[53.393933939339405,71.28046934653824],[53.39033390333904,71.27878076926837],[53.37233372333725,71.27878076926837],[53.35433354333543,71.28046934653824],[53.242732427324285,71.30917516012624],[53.23193231932319,71.31592946920577],[53.210332103321036,71.3345038191745],[53.19953199531997,71.34125812825403],[53.17073170731709,71.34970101460343],[53.159931599315996,71.35476674641308],[53.17073170731709,71.35814390095285],[53.185131851318516,71.35645532368295],[53.19953199531997,71.35476674641308],[53.2139321393214,71.35814390095285],[53.23913239132392,71.35476674641308],[53.368733687336885,71.29228938742742]]],[[[156.6609666096661,77.10774950490344],[156.66456664566647,77.10437235036366],[156.6717667176672,77.09592946401426],[156.6717667176672,77.08748657766483],[156.6609666096661,77.08410942312508],[156.65376653766538,77.08410942312508],[156.5169651696517,77.08748657766483],[156.49176491764916,77.09761804128414],[156.50616506165062,77.11112665944319],[156.5277652776528,77.12125812306249],[156.54936549365493,77.12632385487214],[156.58896588965894,77.12632385487214],[156.63936639366398,77.11619239125284],[156.6609666096661,77.10774950490344]]],[[[-73.03573035730356,-54.456059900737145],[-72.97452974529745,-54.44423985984797],[-72.95652956529565,-54.44592843711784],[-72.95292952929529,-54.456059900737145],[-72.96372963729637,-54.46619136435644],[-72.97452974529745,-54.48645429159503],[-72.98892988929889,-54.494897177944445],[-73.01413014130141,-54.4898314461348],[-73.03933039330393,-54.48645429159503],[-73.05733057330573,-54.49320860067456],[-73.0861308613086,-54.494897177944445],[-73.0969309693097,-54.48645429159503],[-73.07893078930789,-54.471257096166084],[-73.05373053730537,-54.456059900737145],[-73.03573035730356,-54.456059900737145]]],[[[-70.40410404104041,-54.07781859228342],[-70.36090360903609,-54.07106428320389],[-70.33930339303393,-54.05755566504483],[-70.31410314103141,-54.05248993323518],[-70.29250292502924,-54.06768712866412],[-70.29250292502924,-54.09301578771236],[-70.29970299702997,-54.126787333110016],[-70.32130321303212,-54.15042741488837],[-70.35010350103501,-54.15549314669802],[-70.40410404104041,-54.15042741488837],[-70.46890468904688,-54.12341017857025],[-70.5121051210512,-54.09132721044248],[-70.50490504905049,-54.07275286047377],[-70.47970479704797,-54.06937570593401],[-70.43650436504365,-54.08457290136295],[-70.40410404104041,-54.07781859228342]]],[[[-70.68850688506885,-52.84684576253893],[-70.63090630906309,-52.83333714437987],[-70.620106201062,-52.843468607999164],[-70.63450634506344,-52.85360007161846],[-70.64890648906488,-52.87724015339682],[-70.67770677706777,-52.89412592609565],[-70.72450724507245,-52.91438885333424],[-70.76410764107641,-52.91607743060412],[-70.78930789307893,-52.90088023517518],[-70.76770767707677,-52.887371617016115],[-70.73170731707317,-52.868797267047405],[-70.68850688506885,-52.84684576253893]]],[[[-74.4289442894429,-52.50406457675274],[-74.41454414544145,-52.50406457675274],[-74.39294392943928,-52.519261772181686],[-74.3821438214382,-52.542901853960046],[-74.36054360543605,-52.57160766754805],[-74.35334353343534,-52.600313481136055],[-74.34974349743497,-52.622264985644534],[-74.36774367743676,-52.62901929472406],[-74.4181441814418,-52.60875636748547],[-74.46134461344613,-52.59018201751676],[-74.48294482944829,-52.57160766754805],[-74.49014490144901,-52.55134474030946],[-74.4649446494465,-52.536147544880514],[-74.45054450544505,-52.52939323580098],[-74.4289442894429,-52.50406457675274]]],[[[-59.769597695976955,-52.32676396341506],[-59.75159751597515,-52.30987819071623],[-59.72639726397263,-52.3031238816367],[-59.693996939969395,-52.3031238816367],[-59.69039690396903,-52.31494392252588],[-59.7119971199712,-52.32000965433553],[-59.7119971199712,-52.333518272494594],[-59.72999729997299,-52.34364973611389],[-59.74079740797407,-52.35715835427295],[-59.719197191971915,-52.36728981789224],[-59.67959679596795,-52.36391266335248],[-59.65439654396543,-52.355469777003066],[-59.643596435964355,-52.36728981789224],[-59.668796687966875,-52.379109858781426],[-59.68679686796868,-52.392618476940484],[-59.69759697596976,-52.40612709509955],[-59.72279722797228,-52.397684208750135],[-59.744397443974435,-52.38924132240072],[-59.76239762397624,-52.379109858781426],[-59.78759787597876,-52.38079843605131],[-59.79839798397984,-52.368978395162124],[-59.819998199981995,-52.35884693154283],[-59.79119791197911,-52.341961158844],[-59.76599765997659,-52.33858400430424],[-59.769597695976955,-52.32676396341506]]],[[[-59.67959679596795,-51.965408427660165],[-59.67239672396724,-51.97047415946981],[-59.67239672396724,-51.980605623089104],[-59.67959679596795,-51.98735993216864],[-59.69039690396903,-51.9907370867084],[-59.69759697596976,-51.98904850943852],[-59.69759697596976,-51.985671354898756],[-59.70119701197011,-51.982294200358986],[-59.70479704797047,-51.97891704581922],[-59.70839708397084,-51.97891704581922],[-59.71559715597155,-51.980605623089104],[-59.719197191971915,-51.97553989127946],[-59.7119971199712,-51.96371985039028],[-59.71559715597155,-51.95696554131075],[-59.7119971199712,-51.94514550042157],[-59.69759697596976,-51.93839119134204],[-59.69039690396903,-51.94007976861192],[-59.68679686796868,-51.946834077691456],[-59.69039690396903,-51.95527696404086],[-59.68679686796868,-51.962031273120395],[-59.67959679596795,-51.965408427660165]]],[[[-60.53280532805327,-51.283223210627554],[-60.51840518405183,-51.29335467424685],[-60.51480514805148,-51.305174715136026],[-60.52200522005219,-51.31530617875532],[-60.52560525605256,-51.3169947560252],[-60.52920529205292,-51.31024044694568],[-60.53280532805327,-51.305174715136026],[-60.53280532805327,-51.30179756059626],[-60.54720547205471,-51.29842040605649],[-60.56520565205652,-51.29504325151673],[-60.586805868058676,-51.284911787897435],[-60.597605976059754,-51.262960283388956],[-60.58320583205831,-51.25451739703954],[-60.55440554405544,-51.26971459246849],[-60.540005400054,-51.279846056087784],[-60.53280532805327,-51.283223210627554]]],[[[-74.25254252542526,-43.35028719671863],[-74.24894248942489,-43.351975773988514],[-74.24534245342453,-43.37055012395722],[-74.25254252542526,-43.38912447392594],[-74.24534245342453,-43.399255937545234],[-74.23094230942309,-43.40601024662476],[-74.23094230942309,-43.41276455570429],[-74.24534245342453,-43.41276455570429],[-74.25254252542526,-43.417830287513944],[-74.2561425614256,-43.42796175113324],[-74.2669426694267,-43.424584596593476],[-74.28494284942849,-43.417830287513944],[-74.28134281342813,-43.40769882389465],[-74.27774277742778,-43.38912447392594],[-74.27414274142741,-43.37055012395722],[-74.27414274142741,-43.36041866033793],[-74.25254252542526,-43.35028719671863]]],[[[-73.69093690936909,-43.18818377880989],[-73.6729367293673,-43.189872356079775],[-73.65493654936549,-43.19662666515931],[-73.64773647736477,-43.22870963328708],[-73.66213662136622,-43.24559540598591],[-73.68733687336874,-43.23039821055696],[-73.71973719737197,-43.21520101512802],[-73.72693726937268,-43.19156093334966],[-73.7161371613716,-43.17974089246048],[-73.69093690936909,-43.18818377880989]]],[[[-73.30573305733057,-42.62757612520884],[-73.27693276932769,-42.62757612520884],[-73.27333273332734,-42.62757612520884],[-73.24093240932409,-42.6309532797486],[-73.23733237332372,-42.65121620698719],[-73.2589325893259,-42.657970516066726],[-73.29493294932949,-42.65459336152696],[-73.32373323733236,-42.64277332063779],[-73.35613356133561,-42.62926470247872],[-73.34533345333453,-42.62082181612931],[-73.30573305733057,-42.62757612520884]]],[[[-62.156421564215634,-40.37501404718532],[-62.127621276212764,-40.3767026244552],[-62.095220952209516,-40.3767026244552],[-62.06642066420663,-40.39865412896368],[-62.04842048420484,-40.42735994255168],[-62.026820268202684,-40.454377178869805],[-62.03762037620376,-40.48477156972769],[-62.06642066420663,-40.511788806045814],[-62.08442084420844,-40.54387177417359],[-62.10962109621096,-40.56413470141218],[-62.13482134821348,-40.56413470141218],[-62.160021600216,-40.557380392332654],[-62.156421564215634,-40.52698600147476],[-62.16722167221671,-40.51010022877593],[-62.19242192421923,-40.52192026966512],[-62.221222212222116,-40.52192026966512],[-62.23562235622356,-40.51010022877593],[-62.221222212222116,-40.491525878807224],[-62.19962199621996,-40.46282006521922],[-62.19242192421923,-40.42398278801192],[-62.17442174421744,-40.37501404718532],[-62.156421564215634,-40.37501404718532]]],[[[-62.120421204212036,-40.13017034305233],[-62.09882098820988,-40.13017034305233],[-62.070020700206996,-40.13692465213186],[-62.04122041220411,-40.147056115751155],[-62.01602016020159,-40.17576192933916],[-62.019620196201956,-40.21797636108623],[-62.019620196201956,-40.27369941099236],[-62.01602016020159,-40.3277338836286],[-62.019620196201956,-40.34293107905755],[-62.030420304203034,-40.32266815181895],[-62.04122041220411,-40.29733949277072],[-62.06642066420663,-40.27369941099236],[-62.10962109621096,-40.21966493835611],[-62.13482134821348,-40.18082766114881],[-62.120421204212036,-40.13017034305233]]],[[[-73.53973539735397,-36.98941662107051],[-73.53253532535325,-36.97253084837168],[-73.52173521735217,-36.975908002911446],[-73.52173521735217,-36.98941662107051],[-73.52173521735217,-37.00630239376934],[-73.50733507335073,-37.018122434658515],[-73.48573485734858,-37.02487674373805],[-73.47133471334713,-37.036696784627225],[-73.46053460534606,-37.0485168255164],[-73.44613446134461,-37.0586482891357],[-73.4641346413464,-37.055271134595934],[-73.47493474934748,-37.05020540278628],[-73.49293492934929,-37.04176251643687],[-73.5109351093511,-37.05020540278628],[-73.51453514535145,-37.07046833002488],[-73.51813518135181,-37.080599793644176],[-73.52893528935289,-37.06877975275499],[-73.53613536135362,-37.04176251643687],[-73.55053550535504,-37.02825389827781],[-73.54333543335433,-37.018122434658515],[-73.53973539735397,-36.999548084689806],[-73.53973539735397,-36.98941662107051]]],[[[115.49095490954909,-31.996293634027367],[115.52335523355237,-31.994605056757486],[115.54135541355413,-31.999670788567137],[115.55215552155522,-32.00642509764666],[115.5305553055531,-32.018245138535846],[115.51615516155164,-32.02499944761537],[115.49095490954909,-32.01993371580573],[115.45855458554587,-32.02331087034549],[115.44055440554405,-32.02162229307561],[115.45855458554587,-32.00980225218643],[115.48375483754836,-32.011490829456314],[115.49095490954909,-31.996293634027367]]],[[[113.68013680136801,-28.451969944543585],[113.70173701737019,-28.448592790003822],[113.71253712537128,-28.43846132638452],[113.71973719737201,-28.428329862765224],[113.73413734137341,-28.428329862765224],[113.74853748537487,-28.428329862765224],[113.73053730537305,-28.44352705819417],[113.71613716137165,-28.46210140816288],[113.70173701737019,-28.472232871782175],[113.69453694536946,-28.48405291267136],[113.68373683736837,-28.48574148994124],[113.68013680136801,-28.468855717242413],[113.68013680136801,-28.451969944543585]]],[[[-48.32148321483214,-25.383825045166724],[-48.299882998829986,-25.366939272467896],[-48.26748267482674,-25.348364922499186],[-48.256682566825674,-25.348364922499186],[-48.249482494824946,-25.365250695198014],[-48.256682566825674,-25.388890776976368],[-48.26748267482674,-25.426039476913786],[-48.26748267482674,-25.446302404152384],[-48.256682566825674,-25.466565331390974],[-48.2710827108271,-25.47669679501027],[-48.29268292682926,-25.488516835899446],[-48.31068310683105,-25.485139681359684],[-48.325083250832506,-25.468253908660856],[-48.31788317883178,-25.454745290501798],[-48.32148321483214,-25.441236672342733],[-48.339483394833934,-25.426039476913786],[-48.339483394833934,-25.407465126945077],[-48.32148321483214,-25.383825045166724]]],[[[-159.7857978579786,-18.830456660751963],[-159.77139771397714,-18.82876808348209],[-159.76059760597605,-18.837210969831503],[-159.76059760597605,-18.845653856180917],[-159.7641976419764,-18.84227670164114],[-159.76779767797677,-18.835522392561614],[-159.77139771397714,-18.83383381529174],[-159.77859778597787,-18.852408165260442],[-159.77859778597787,-18.855785319800205],[-159.7749977499775,-18.877736824308684],[-159.78219782197823,-18.887868287927986],[-159.7929979299793,-18.887868287927986],[-159.80019800198002,-18.877736824308684],[-159.80379803798039,-18.865916783419507],[-159.79659796597966,-18.84734243345079],[-159.7929979299793,-18.840588124371266],[-159.7857978579786,-18.830456660751963]]],[[[-76.19656196561965,-14.262855145719271],[-76.18936189361894,-14.274675186608448],[-76.18576185761857,-14.283118072957862],[-76.1749617496175,-14.288183804767513],[-76.17856178561786,-14.294938113847039],[-76.19296192961929,-14.29324953657715],[-76.20736207362073,-14.281429495687973],[-76.22176221762217,-14.274675186608448],[-76.22176221762217,-14.262855145719271],[-76.2109621096211,-14.259477991179509],[-76.19656196561965,-14.262855145719271]]],[[[-76.44496444964449,-13.830579364629301],[-76.43776437764377,-13.833956519169064],[-76.43776437764377,-13.844087982788352],[-76.44136441364414,-13.854219446407654],[-76.45216452164522,-13.855908023677543],[-76.4629646296463,-13.855908023677543],[-76.47016470164701,-13.854219446407654],[-76.46656466564666,-13.842399405518478],[-76.45936459364593,-13.833956519169064],[-76.45576455764558,-13.822136478279887],[-76.44496444964449,-13.823825055549761],[-76.44496444964449,-13.830579364629301]]],[[[-77.23337233372334,-12.066016117601876],[-77.19377193771938,-12.099787662999532],[-77.18657186571865,-12.109919126618834],[-77.1829718297183,-12.11667343569836],[-77.19377193771938,-12.113296281158597],[-77.20457204572045,-12.114984858428471],[-77.2189721897219,-12.104853394809183],[-77.23697236972369,-12.093033353920006],[-77.24777247772478,-12.077836158491053],[-77.2549725497255,-12.064327540332002],[-77.24417244172442,-12.05926180852235],[-77.23337233372334,-12.066016117601876]]],[[[166.9858698586986,-11.615165986543204],[166.9858698586986,-11.623608872892603],[166.97866978669788,-11.638806068321557],[166.96426964269642,-11.650626109210734],[166.94626946269466,-11.654003263750496],[166.93906939069393,-11.64218322286132],[166.9426694266943,-11.625297450162492],[166.9570695706957,-11.611788832003427],[166.97506975069751,-11.611788832003427],[166.9858698586986,-11.615165986543204]]],[[[121.6146161461615,-10.602019624613575],[121.62181621816217,-10.602019624613575],[121.63261632616326,-10.603708201883464],[121.63261632616326,-10.61552824277264],[121.6146161461615,-10.627348283661817],[121.59661596615967,-10.634102592741343],[121.57501575015749,-10.639168324550994],[121.55341553415536,-10.640856901820882],[121.53181531815318,-10.639168324550994],[121.52821528215281,-10.629036860931706],[121.54261542615427,-10.61552824277264],[121.56421564215646,-10.603708201883464],[121.59661596615967,-10.600331047343701],[121.6146161461615,-10.602019624613575]]],[[[151.02331023310234,-9.639530580780445],[151.03051030510306,-9.642907735320208],[151.03411034110343,-9.649662044399733],[151.03051030510306,-9.66148208528891],[151.01971019710197,-9.66823639436845],[151.01251012510124,-9.664859239828687],[151.01251012510124,-9.653039198939496],[151.00531005310052,-9.64628488985997],[151.0017100171002,-9.642907735320208],[150.99810998109984,-9.634464848970794],[150.96930969309693,-9.620956230811728],[150.95490954909548,-9.607447612652663],[150.95850958509584,-9.592250417223724],[150.97650976509766,-9.582118953604422],[150.99810998109984,-9.580430376334547],[151.01251012510124,-9.585496108144199],[151.02331023310234,-9.590561839953835],[151.02331023310234,-9.600693303573138],[151.0269102691027,-9.602381880843026],[151.0269102691027,-9.607447612652663],[151.02331023310234,-9.624333385351491],[151.01971019710197,-9.62602196262138],[151.0161101611016,-9.627710539891254],[151.0161101611016,-9.634464848970794],[151.01971019710197,-9.637842003510556],[151.02331023310234,-9.639530580780445]]],[[[143.8160381603816,-8.49467519179997],[143.82323823238232,-8.499740923609622],[143.82323823238232,-8.50987238722891],[143.81243812438123,-8.5301353144675],[143.79443794437947,-8.538578200816914],[143.78363783637838,-8.526758159927738],[143.780037800378,-8.513249541768687],[143.7908379083791,-8.504806655419273],[143.8016380163802,-8.501429500879496],[143.80883808838092,-8.496363769069859],[143.8160381603816,-8.49467519179997]]],[[[156.54576545765457,-7.792227047528769],[156.54936549365493,-7.795604202068532],[156.56016560165602,-7.802358511148057],[156.55656556565566,-7.817555706577011],[156.53496534965353,-7.827687170196299],[156.5169651696517,-7.817555706577011],[156.5169651696517,-7.809112820227597],[156.52416524165244,-7.798981356608294],[156.53496534965353,-7.7905384702588805],[156.54576545765457,-7.792227047528769]]],[[[-80.84420844208442,-6.3822650271767145],[-80.84780847808477,-6.38901933625624],[-80.8550085500855,-6.405905108955068],[-80.85140851408514,-6.419413727114133],[-80.84060840608406,-6.429545190733435],[-80.84060840608406,-6.441365231622612],[-80.84060840608406,-6.45825100432144],[-80.84060840608406,-6.475136777020268],[-80.85140851408514,-6.476825354290142],[-80.86220862208621,-6.475136777020268],[-80.86580865808658,-6.466693890670854],[-80.86220862208621,-6.456562427051551],[-80.86580865808658,-6.441365231622612],[-80.87660876608766,-6.432922345273198],[-80.86940869408694,-6.424479458923784],[-80.86580865808658,-6.4092822634948305],[-80.85140851408514,-6.375510718097189],[-80.84420844208442,-6.3822650271767145]]],[[[110.43290432904331,-5.8368545690046005],[110.4581045810458,-5.831788837194949],[110.46530465304653,-5.840231723544363],[110.46530465304653,-5.857117496243191],[110.45090450904507,-5.874003268942019],[110.43650436504367,-5.880757578021559],[110.42930429304295,-5.874003268942019],[110.42570425704258,-5.862183228052842],[110.42210422104222,-5.85205176443354],[110.42210422104222,-5.84360887808414],[110.43290432904331,-5.8368545690046005]]],[[[39.22779227792279,-5.769311478209289],[39.224192241922424,-5.782820096368354],[39.23139231392315,-5.801394446337071],[39.23859238592388,-5.813214487226247],[39.23139231392315,-5.823345950845535],[39.23859238592388,-5.8368545690046005],[39.23859238592388,-5.855428918973317],[39.224192241922424,-5.85880607351308],[39.21339213392136,-5.85880607351308],[39.21339213392136,-5.84360887808414],[39.21339213392136,-5.826723105385312],[39.216992169921696,-5.798017291797294],[39.21339213392136,-5.777754364558703],[39.22779227792279,-5.769311478209289]]],[[[134.2111421114211,-5.759180014590001],[134.22554225542257,-5.771000055479178],[134.22914229142293,-5.772688632749066],[134.22914229142293,-5.789574405447894],[134.2219422194222,-5.8149030644961215],[134.20754207542075,-5.826723105385312],[134.19314193141935,-5.830100259925075],[134.1787417874179,-5.826723105385312],[134.1679416794168,-5.811525909956359],[134.1679416794168,-5.789574405447894],[134.1679416794168,-5.767622900939415],[134.1787417874179,-5.75411428278035],[134.19314193141935,-5.752425705510461],[134.20034200342002,-5.755802860050238],[134.20394203942038,-5.755802860050238],[134.2111421114211,-5.759180014590001]]],[[[39.576995769957705,-5.394447324295342],[39.58419584195843,-5.399513056104979],[39.59859598595986,-5.407955942454393],[39.60939609396095,-5.423153137883347],[39.62019620196202,-5.441727487852049],[39.63819638196384,-5.4467932196617],[39.652596525965265,-5.450170374201463],[39.66339663396636,-5.463678992360528],[39.65979659796599,-5.475499033249704],[39.63459634596347,-5.477187610519593],[39.61659616596168,-5.463678992360528],[39.59859598595986,-5.4451046423918115],[39.59139591395916,-5.433284601502635],[39.58059580595807,-5.421464560613458],[39.56979569795698,-5.406267365184519],[39.576995769957705,-5.394447324295342]]],[[[143.58563585635858,-3.378286064055388],[143.56763567635676,-3.378286064055388],[143.5388353883539,-3.3681546004360996],[143.53523535235354,-3.366466023166211],[143.52443524435245,-3.36140029135656],[143.50643506435068,-3.347891673197509],[143.510035100351,-3.3377602095782066],[143.51363513635135,-3.331005900498681],[143.51723517235172,-3.3208744368793788],[143.52443524435245,-3.3141201277998533],[143.54243542435427,-3.317497282339616],[143.56763567635676,-3.331005900498681],[143.5928359283593,-3.347891673197509],[143.60003600036003,-3.3681546004360996],[143.58563585635858,-3.378286064055388]]],[[[-43.565835658356576,-2.361762547586011],[-43.54423544235442,-2.3600739703161224],[-43.540635406354056,-2.371894011205299],[-43.54423544235442,-2.3904683611740154],[-43.55503555035551,-2.4039769793330805],[-43.56223562235621,-2.4174855974921314],[-43.573035730357304,-2.424239906571671],[-43.58383583835837,-2.415797020222257],[-43.60183601836019,-2.4124198656824944],[-43.60903609036089,-2.397222670253541],[-43.61263612636125,-2.385402629364364],[-43.60903609036089,-2.3735825884751875],[-43.591035910359096,-2.3685168566655364],[-43.58023580235803,-2.3651397021257736],[-43.565835658356576,-2.361762547586011]]],[[[150.00450004500044,-1.6728230214738744],[150.0189001890019,-1.671134444203986],[150.02250022500226,-1.6745115987437487],[150.0189001890019,-1.6812659078232883],[150.00090000900008,-1.6863316396329253],[149.97569975699759,-1.684643062363051],[149.96129961299613,-1.6778887532835114],[149.95769957699576,-1.6762001760136371],[149.94689946899473,-1.6728230214738744],[149.939699396994,-1.6762001760136371],[149.93609936099364,-1.6778887532835114],[149.93609936099364,-1.6829544850931626],[149.9288992889929,-1.684643062363051],[149.91809918099182,-1.6762001760136371],[149.9108991089911,-1.6643801351244605],[149.9108991089911,-1.654248671505158],[149.92169921699218,-1.6508715169653954],[149.94329943299437,-1.6576258260449208],[149.9540995409954,-1.6508715169653954],[149.95769957699576,-1.6339857442665675],[149.9648996489965,-1.6306085897268048],[149.97569975699759,-1.6424286306159814],[149.9828998289983,-1.6576258260449208],[149.99009990099904,-1.6677572896642232],[150.00450004500044,-1.6728230214738744]]],[[[104.72324723247232,0.7502853608078084],[104.74124741247414,0.7485967835379199],[104.7556475564756,0.7367767426487433],[104.74844748447487,0.7232681244896781],[104.73764737647377,0.7165138154101527],[104.73044730447305,0.7232681244896781],[104.71964719647195,0.7384653199186317],[104.72324723247232,0.7502853608078084]]],[[[104.65844658446588,0.8465342651911243],[104.66204662046624,0.8347142243019334],[104.66204662046624,0.8296484924922964],[104.66204662046624,0.819517028872994],[104.65484654846551,0.8144512970633428],[104.65124651246515,0.8093855652537059],[104.64404644046442,0.8060084107139289],[104.62964629646297,0.8060084107139289],[104.6260462604626,0.8110741425235801],[104.62964629646297,0.8161398743332313],[104.6368463684637,0.827959915222408],[104.64044640446406,0.8482228424609985],[104.64764647646479,0.8583543060803009],[104.65844658446588,0.8465342651911243]]],[[[125.17145171451716,1.7988918454049667],[125.17505175051753,1.792137536325427],[125.17865178651789,1.778628918166362],[125.15345153451534,1.756677413657897],[125.15345153451534,1.7482345273084832],[125.14985149851498,1.7414802182289435],[125.14625146251461,1.7414802182289435],[125.13545135451358,1.7482345273084832],[125.13185131851321,1.7583659909277713],[125.12825128251285,1.7718746090868365],[125.12465124651249,1.7887603817856643],[125.12105121051212,1.8073347317543806],[125.12465124651249,1.8157776181037804],[125.12825128251285,1.8275976589929712],[125.13545135451358,1.830974813532734],[125.14625146251461,1.82253192718332],[125.15345153451534,1.8107118862941434],[125.16425164251643,1.8022689999447294],[125.17145171451716,1.7988918454049667]]],[[[131.79191791917918,2.9775187797830824],[131.80631806318064,2.9741416252433197],[131.81351813518137,2.9606330070842546],[131.79551795517955,2.948812966195078],[131.77751777517778,2.9521901207348407],[131.77391773917742,2.9640101616240173],[131.78471784717846,2.9741416252433197],[131.79191791917918,2.9775187797830824]]],[[[-78.18738187381874,2.9910273979421476],[-78.1729817298173,3.002847438831324],[-78.16578165781658,3.0011588615614357],[-78.16578165781658,2.987650243402385],[-78.16578165781658,2.9741416252433197],[-78.16578165781658,2.9589444298143803],[-78.18378183781837,2.9437472343854267],[-78.19458194581945,2.9336157707661386],[-78.20898208982089,2.9302386162263616],[-78.21978219782197,2.9336157707661386],[-78.21978219782197,2.9437472343854267],[-78.20538205382053,2.945435811655315],[-78.19818198181981,2.9606330070842546],[-78.19458194581945,2.980895934322845],[-78.18738187381874,2.9910273979421476]]],[[[101.2708127081271,3.046750447848268],[101.26721267212673,3.0349304069590914],[101.260012600126,3.0298646751494545],[101.24561245612455,3.0264875206096775],[101.23841238412388,3.0349304069590914],[101.24561245612455,3.0484390251181566],[101.26361263612637,3.0568819114675705],[101.2708127081271,3.046750447848268]]],[[[127.129871298713,4.774164994938275],[127.14067140671409,4.767410685858749],[127.14427144271446,4.752213490429796],[127.13707137071373,4.740393449540619],[127.12267122671227,4.752213490429796],[127.12267122671227,4.7690992631286235],[127.12267122671227,4.772476417668386],[127.129871298713,4.774164994938275]]],[[[119.83259832598327,4.8214451584949956],[119.85419854198545,4.80793654033593],[119.85779857798582,4.797805076716628],[119.85059850598509,4.796116499446754],[119.83259832598327,4.796116499446754],[119.81819818198181,4.804559385796168],[119.81099810998109,4.816379426685344],[119.83259832598327,4.8214451584949956]]],[[[119.83619836198363,4.863659590242065],[119.82179821798218,4.861971012972177],[119.80019800198005,4.880545362940879],[119.78939789397896,4.905874021989121],[119.79299792997932,4.921071217418074],[119.80379803798041,4.9278255264976],[119.81459814598145,4.922759794687948],[119.82179821798218,4.9143169083385345],[119.84339843398436,4.904185444719246],[119.85059850598509,4.8872996720204185],[119.85059850598509,4.873791053861353],[119.84339843398436,4.865348167511939],[119.83619836198363,4.863659590242065]]],[[[119.79659796597969,5.057845976278571],[119.79299792997932,5.056157399008683],[119.78939789397896,5.05278024446892],[119.7857978579786,5.046025935389395],[119.7749977499775,5.042648780849618],[119.75339753397537,5.035894471770092],[119.74619746197465,5.044337358119506],[119.74979749797501,5.062911708088222],[119.76779767797677,5.098371830755752],[119.78219782197823,5.110191871644929],[119.79659796597969,5.1203233352642314],[119.80739807398078,5.118634757994343],[119.80379803798041,5.105126139835278],[119.80739807398078,5.093306098946101],[119.81099810998109,5.083174635326813],[119.81099810998109,5.069666017167748],[119.80739807398078,5.057845976278571],[119.80019800198005,5.0544688217388085],[119.79659796597969,5.057845976278571]]],[[[-87.09747097470975,5.515450416416783],[-87.1190711907119,5.515450416416783],[-87.10467104671046,5.537401920925248],[-87.09387093870939,5.5475333845445505],[-87.07947079470794,5.554287693624076],[-87.0650706507065,5.557664848163853],[-87.0650706507065,5.5475333845445505],[-87.0650706507065,5.534024766385485],[-87.07947079470794,5.520516148226434],[-87.09747097470975,5.515450416416783]]],[[[120.8586085860859,5.704571070643638],[120.88020880208802,5.69443960702435],[120.88380883808838,5.685996720674936],[120.87300873008729,5.682619566135173],[120.8586085860859,5.675865257055634],[120.84060840608407,5.669110947976108],[120.81900819008189,5.66742237070622],[120.80820808208085,5.664045216166457],[120.80100801008012,5.66742237070622],[120.79740797407976,5.679242411595396],[120.80820808208085,5.696128184294224],[120.83340833408334,5.706259647913527],[120.8478084780848,5.706259647913527],[120.8586085860859,5.704571070643638]]],[[[120.90540905409057,5.758605543279884],[120.9162091620916,5.753539811470247],[120.93060930609306,5.733276884231643],[120.92340923409233,5.711325379723178],[120.90900909009093,5.699505338834001],[120.89100891008911,5.709636802453289],[120.89100891008911,5.7417197705810565],[120.90540905409057,5.758605543279884]]],[[[-83.8970389703897,8.706861456495076],[-83.88263882638826,8.713615765574616],[-83.86823868238682,8.713615765574616],[-83.87183871838718,8.701795724685425],[-83.8790387903879,8.698418570145662],[-83.88983889838899,8.701795724685425],[-83.8970389703897,8.706861456495076]]],[[[-60.74520745207451,8.718681497384253],[-60.72720727207272,8.72205865192403],[-60.712807128071276,8.733878692813207],[-60.698406984069834,8.744010156432495],[-60.68400684006839,8.75751877459156],[-60.67680676806768,8.762584506401211],[-60.673206732067314,8.759207351861448],[-60.67680676806768,8.749075888242146],[-60.687606876068756,8.730501538273444],[-60.687606876068756,8.710238611034839],[-60.68040680406804,8.693352838336025],[-60.6660066600666,8.686598529256486],[-60.637206372063716,8.686598529256486],[-60.612006120061196,8.683221374716723],[-60.60480604806048,8.671401333827546],[-60.60840608406083,8.654515561128719],[-60.61920619206191,8.635941211160002],[-60.63360633606335,8.63256405662024],[-60.65160651606516,8.634252633890128],[-60.673206732067314,8.642695520239542],[-60.69480694806947,8.642695520239542],[-60.712807128071276,8.63762978842989],[-60.73440734407343,8.63762978842989],[-60.7560075600756,8.63762978842989],[-60.77040770407703,8.630875479350365],[-60.7920079200792,8.630875479350365],[-60.80640806408064,8.63256405662024],[-60.81000810008099,8.642695520239542],[-60.799207992079914,8.656204138398593],[-60.788407884078836,8.67477848836731],[-60.774007740077394,8.696729992875788],[-60.75960759607595,8.716992920114379],[-60.74520745207451,8.718681497384253]]],[[[-79.56979569795698,8.798044629068741],[-79.56259562595626,8.80479893814828],[-79.55539555395553,8.803110360878392],[-79.55179551795517,8.79973320633863],[-79.55539555395553,8.798044629068741],[-79.55179551795517,8.791290319989216],[-79.54819548195482,8.789601742719327],[-79.54099540995409,8.786224588179564],[-79.54099540995409,8.781158856369913],[-79.54459544595446,8.776093124560276],[-79.54819548195482,8.774404547290388],[-79.55179551795517,8.779470279100039],[-79.55539555395553,8.782847433639802],[-79.56259562595626,8.781158856369913],[-79.56979569795698,8.782847433639802],[-79.57339573395734,8.789601742719327],[-79.56979569795698,8.798044629068741]]],[[[-81.56781567815678,9.108742846727168],[-81.56421564215641,9.105365692187391],[-81.56061560615606,9.103677114917517],[-81.5570155701557,9.105365692187391],[-81.55341553415533,9.105365692187391],[-81.54621546215462,9.101988537647628],[-81.54261542615426,9.098611383107865],[-81.53901539015389,9.095234228568103],[-81.53541535415354,9.09185707402834],[-81.53541535415354,9.088479919488563],[-81.53541535415354,9.0851027649488],[-81.53901539015389,9.0851027649488],[-81.54261542615426,9.088479919488563],[-81.55341553415533,9.090168496758452],[-81.56061560615606,9.090168496758452],[-81.56781567815678,9.090168496758452],[-81.57141571415714,9.090168496758452],[-81.57141571415714,9.095234228568103],[-81.5750157501575,9.100299960377754],[-81.57861578615785,9.105365692187391],[-81.5750157501575,9.10705426945728],[-81.56781567815678,9.108742846727168]]],[[[-82.04662046620466,9.172908782982702],[-82.05382053820537,9.177974514792353],[-82.05022050220502,9.181351669332116],[-82.04662046620466,9.179663092062242],[-82.0430204302043,9.172908782982702],[-82.03582035820358,9.16953162844294],[-82.02862028620285,9.16953162844294],[-82.0250202502025,9.161088742093526],[-82.02142021420214,9.154334433014],[-82.01782017820177,9.150957278474223],[-82.0070200702007,9.14758012393446],[-82.01062010620106,9.140825814854935],[-82.02142021420214,9.137448660315172],[-82.02862028620285,9.132382928505521],[-82.03222032220322,9.13407150577541],[-82.0430204302043,9.140825814854935],[-82.05022050220502,9.145891546664586],[-82.05382053820537,9.154334433014],[-82.05382053820537,9.161088742093526],[-82.04662046620466,9.172908782982702]]],[[[114.37494374943748,9.687924850296923],[114.37494374943748,9.689613427566812],[114.37854378543784,9.692990582106574],[114.3821438214382,9.692990582106574],[114.3821438214382,9.689613427566812],[114.3821438214382,9.686236273027049],[114.37494374943748,9.67948196394751],[114.37134371343717,9.681170541217398],[114.37134371343717,9.68454769575716],[114.37494374943748,9.687924850296923]]],[[[-62.332823328233275,9.920948513540736],[-62.3220232202322,9.910817049921448],[-62.31482314823148,9.885488390873206],[-62.31842318423183,9.861848309094853],[-62.32562325623256,9.844962536396025],[-62.340023400234,9.844962536396025],[-62.35082350823508,9.871979772714141],[-62.35082350823508,9.897308431762383],[-62.34722347223472,9.91419420446121],[-62.34362343623435,9.924325668080499],[-62.33642336423364,9.924325668080499],[-62.332823328233275,9.920948513540736]]],[[[114.02934029340292,10.012131686114401],[114.02934029340292,10.015508840654178],[114.02934029340292,10.017197417924052],[114.03654036540365,10.020574572463815],[114.04014040140402,10.01888599519394],[114.03294032940329,10.012131686114401],[114.02934029340292,10.012131686114401]]],[[[-62.404824048240485,10.007065954304764],[-62.39762397623976,10.003688799764987],[-62.39042390423904,9.993557336145699],[-62.39762397623976,9.978360140716745],[-62.408424084240835,9.973294408907108],[-62.41922419224191,9.983425872526396],[-62.42642426424264,10.000311645225224],[-62.43722437224372,10.032394613352992],[-62.43722437224372,10.045903231512057],[-62.42642426424264,10.04928038605182],[-62.41562415624156,10.035771767892768],[-62.404824048240485,10.007065954304764]]],[[[-62.23922239222392,10.050968963321708],[-62.23562235622356,10.044214654242182],[-62.232022320223194,10.027328881543355],[-62.23562235622356,10.01382026338429],[-62.246422464224636,10.003688799764987],[-62.257222572225714,9.993557336145699],[-62.27522275222752,9.990180181605936],[-62.28962289622896,9.988491604336048],[-62.29682296822968,9.983425872526396],[-62.29682296822968,9.996934490685462],[-62.2860228602286,10.023951727003592],[-62.26802268022679,10.044214654242182],[-62.250022500225,10.052657540591596],[-62.23922239222392,10.050968963321708]]],[[[124.60624606246063,10.140463558625498],[124.59544595445954,10.12357778592667],[124.59544595445954,10.108380590497717],[124.5990459904599,10.094871972338652],[124.5882458824588,10.086429085989252],[124.57744577445777,10.089806240529015],[124.55944559445595,10.086429085989252],[124.54864548645486,10.069543313290424],[124.54144541445413,10.06110042694101],[124.5306453064531,10.067854736020536],[124.52704527045273,10.077986199639838],[124.52704527045273,10.086429085989252],[124.52344523445237,10.098249126878429],[124.52344523445237,10.11175774503748],[124.52704527045273,10.11682347684713],[124.53424534245346,10.115134899577257],[124.54144541445413,10.115134899577257],[124.54864548645486,10.121889208656782],[124.55224552245522,10.126954940466433],[124.55584555845559,10.125266363196545],[124.56664566645668,10.126954940466433],[124.58104581045814,10.137086404085721],[124.5846458464585,10.142152135895373],[124.59184591845917,10.145529290435135],[124.60624606246063,10.147217867705024],[124.60624606246063,10.140463558625498]]],[[[114.36414364143644,10.175923681293028],[114.36054360543608,10.175923681293028],[114.35694356943571,10.179300835832791],[114.36054360543608,10.182677990372554],[114.36414364143644,10.187743722182205],[114.3677436774368,10.187743722182205],[114.37134371343717,10.184366567642442],[114.37134371343717,10.18098941310268],[114.36414364143644,10.175923681293028]]],[[[-109.21249212492124,10.302566976534237],[-109.20889208892089,10.289058358375172],[-109.21969219692197,10.282304049295632],[-109.22689226892268,10.292435512914935],[-109.23409234092341,10.307632708343874],[-109.22689226892268,10.311009862883637],[-109.21249212492124,10.302566976534237]]],[[[-75.5881558815588,10.36842149005966],[-75.57735577355773,10.378552953678948],[-75.56655566555665,10.373487221869297],[-75.55575555755557,10.36842149005966],[-75.53775537755376,10.363355758250009],[-75.53415534155342,10.349847140090944],[-75.5449554495545,10.339715676471656],[-75.55575555755557,10.339715676471656],[-75.56655566555665,10.343092831011418],[-75.57735577355773,10.338027099201767],[-75.57735577355773,10.32620705831259],[-75.58095580955809,10.31945274923305],[-75.59175591755917,10.31945274923305],[-75.59535595355953,10.331272790122242],[-75.59535595355953,10.34815856282107],[-75.59175591755917,10.359978603710246],[-75.5881558815588,10.36842149005966]]],[[[114.46494464944652,10.366732912789772],[114.46134461344616,10.371798644599423],[114.46494464944652,10.378552953678948],[114.46854468544689,10.378552953678948],[114.46854468544689,10.376864376409074],[114.47214472144725,10.371798644599423],[114.46854468544689,10.36842149005966],[114.46494464944652,10.366732912789772]]],[[[114.36414364143644,10.36842149005966],[114.36054360543608,10.371798644599423],[114.35694356943571,10.376864376409074],[114.36054360543608,10.378552953678948],[114.3677436774368,10.373487221869297],[114.3677436774368,10.370110067329534],[114.3677436774368,10.36842149005966],[114.36414364143644,10.36842149005966]]],[[[114.45414454144543,10.38868441729825],[114.45054450544507,10.390372994568125],[114.45054450544507,10.393750149107902],[114.45054450544507,10.397127303647665],[114.45414454144543,10.397127303647665],[114.4577445774458,10.395438726377776],[114.46134461344616,10.392061571838013],[114.45414454144543,10.38868441729825]]],[[[103.33363333633338,10.584559380604645],[103.33723337233374,10.582870803334757],[103.33723337233374,10.579493648794994],[103.33723337233374,10.572739339715469],[103.33363333633338,10.564296453366055],[103.33003330033301,10.554164989746752],[103.32283322833229,10.545722103397338],[103.3120331203312,10.552476412476864],[103.29043290432907,10.582870803334757],[103.2868328683287,10.599756576033585],[103.29043290432907,10.61326519419265],[103.30123301233016,10.6183309260023],[103.3120331203312,10.620019503272175],[103.31923319233192,10.616642348732412],[103.32283322833229,10.609888039652887],[103.3120331203312,10.596379421493822],[103.3120331203312,10.59131368968417],[103.3120331203312,10.58624795787452],[103.3120331203312,10.579493648794994],[103.31923319233192,10.574427916985343],[103.32643326433265,10.574427916985343],[103.33003330033301,10.579493648794994],[103.33363333633338,10.584559380604645]]],[[[115.82935829358297,10.734842757624207],[115.83295832958333,10.734842757624207],[115.83295832958333,10.729777025814556],[115.83295832958333,10.728088448544668],[115.82935829358297,10.728088448544668],[115.8257582575826,10.726399871274793],[115.81855818558188,10.721334139465142],[115.81495814958151,10.723022716735017],[115.81135811358115,10.728088448544668],[115.81495814958151,10.734842757624207],[115.81855818558188,10.734842757624207],[115.82935829358297,10.736531334894082],[115.82935829358297,10.734842757624207]]],[[[-64.16884168841688,10.827714507467746],[-64.1580415804158,10.824337352927984],[-64.15444154441543,10.812517312038807],[-64.1760417604176,10.799008693879742],[-64.20124201242012,10.797320116609868],[-64.21924219242192,10.805763002959281],[-64.21924219242192,10.82096019838822],[-64.20484204842047,10.827714507467746],[-64.19044190441905,10.827714507467746],[-64.17244172441724,10.826025930197872],[-64.16884168841688,10.827714507467746]]],[[[115.840158401584,10.822648775658095],[115.83295832958333,10.824337352927984],[115.82935829358297,10.827714507467746],[115.82935829358297,10.831091662007509],[115.83295832958333,10.832780239277398],[115.840158401584,10.832780239277398],[115.84375843758437,10.831091662007509],[115.84735847358473,10.826025930197872],[115.84735847358473,10.822648775658095],[115.840158401584,10.822648775658095]]],[[[114.27774277742776,11.040475243472969],[114.27054270542709,11.043852398012731],[114.27054270542709,11.04554097528262],[114.27774277742776,11.050606707092271],[114.28134281342813,11.050606707092271],[114.28854288542885,11.047229552552494],[114.28134281342813,11.040475243472969],[114.27774277742776,11.040475243472969]]],[[[115.01935019350196,11.106329756998392],[115.01215012150124,11.10801833426828],[115.00855008550087,11.113084066077931],[115.00855008550087,11.116461220617694],[115.01215012150124,11.114772643347806],[115.01935019350196,11.118149797887568],[115.02295022950233,11.114772643347806],[115.01935019350196,11.109706911538154],[115.01935019350196,11.106329756998392]]],[[[121.47421474214741,11.866189528445602],[121.51021510215105,11.856058064826314],[121.52461524615245,11.845926601207012],[121.51741517415178,11.837483714857598],[121.4958149581496,11.82735225123831],[121.47421474214741,11.82735225123831],[121.45621456214565,11.83241798304796],[121.44541445414455,11.835795137587724],[121.43821438214383,11.837483714857598],[121.43461434614346,11.839172292127486],[121.4310143101431,11.844238023937137],[121.42741427414273,11.842549446667249],[121.4166141661417,11.837483714857598],[121.41301413014133,11.840860869397375],[121.4166141661417,11.849303755746789],[121.42741427414273,11.861123796635965],[121.44181441814419,11.86787810571549],[121.45261452614528,11.86787810571549],[121.47421474214741,11.866189528445602]]],[[[124.20664206642067,12.080638841720713],[124.22824228242285,12.073884532641188],[124.22824228242285,12.063753069021885],[124.21024210242103,12.060375914482123],[124.19944199441994,12.051933028132709],[124.17784177841781,12.040112987243532],[124.16344163441636,12.038424409973643],[124.1490414904149,12.043490141783295],[124.14544145441454,12.053621605402583],[124.15264152641527,12.065441646291774],[124.16704167041672,12.075573109911062],[124.18144181441818,12.080638841720713],[124.20664206642067,12.080638841720713]]],[[[124.16704167041672,12.398091368458665],[124.1490414904149,12.414977141157493],[124.13824138241381,12.436928645665958],[124.1346413464135,12.458880150174437],[124.1346413464135,12.470700191063614],[124.14184141841417,12.46901161379374],[124.159841598416,12.455502995634674],[124.17784177841781,12.431862913856307],[124.18144181441818,12.40653425480808],[124.16704167041672,12.398091368458665]]],[[[-61.440014400143994,12.60747494992411],[-61.429214292142916,12.600720640844585],[-61.42561425614255,12.592277754495171],[-61.43281432814328,12.58721202268552],[-61.44361443614436,12.585523445415646],[-61.454414544145436,12.585523445415646],[-61.461614616146164,12.592277754495171],[-61.454414544145436,12.597343486304823],[-61.454414544145436,12.600720640844585],[-61.4580145801458,12.604097795384348],[-61.454414544145436,12.60747494992411],[-61.44721447214472,12.609163527194],[-61.440014400143994,12.60747494992411]]],[[[109.39249392493929,12.60240921811446],[109.39969399693996,12.582146290875869],[109.40329403294032,12.570326249986692],[109.39969399693996,12.558506209097516],[109.38529385293856,12.563571940907167],[109.34569345693455,12.588900599955409],[109.34209342093425,12.595654909034934],[109.33489334893352,12.604097795384348],[109.32409324093243,12.605786372654237],[109.31329313293134,12.61422925900365],[109.32049320493206,12.627737877162701],[109.34569345693455,12.631115031702478],[109.36729367293674,12.627737877162701],[109.3816938169382,12.624360722622939],[109.38889388893892,12.61422925900365],[109.39249392493929,12.60240921811446]]],[[[-61.31761317613176,12.73411824516532],[-61.31761317613176,12.730741090625557],[-61.314013140131394,12.720609627006255],[-61.32121321213212,12.713855317926729],[-61.32481324813247,12.708789586117078],[-61.328413284132836,12.698658122497775],[-61.335613356133564,12.693592390688138],[-61.34281342813428,12.693592390688138],[-61.353613536135356,12.696969545227901],[-61.35001350013499,12.700346699767664],[-61.339213392133914,12.702035277037538],[-61.335613356133564,12.708789586117078],[-61.335613356133564,12.717232472466492],[-61.335613356133564,12.72736393608578],[-61.32481324813247,12.732429667895431],[-61.31761317613176,12.73411824516532]]],[[[-61.19161191611916,12.867515849486054],[-61.18441184411844,12.882713044914993],[-61.17361173611735,12.881024467645105],[-61.18441184411844,12.862450117676403],[-61.18801188011879,12.855695808596877],[-61.19161191611916,12.855695808596877],[-61.19161191611916,12.867515849486054]]],[[[-87.72747727477274,13.198476994383057],[-87.72747727477274,13.210297035272234],[-87.72027720277202,13.215362767081885],[-87.70587705877058,13.211985612542122],[-87.69867698676987,13.193411262573406],[-87.69867698676987,13.178214067144467],[-87.69147691476914,13.168082603525164],[-87.70227702277022,13.163016871715527],[-87.71307713077131,13.168082603525164],[-87.72387723877239,13.164705448985401],[-87.72387723877239,13.174836912604704],[-87.72747727477274,13.184968376223992],[-87.72747727477274,13.198476994383057]]],[[[-87.7670776707767,13.247445735209652],[-87.75627756277562,13.24406858066989],[-87.75267752677526,13.22887138524095],[-87.75627756277562,13.220428498891536],[-87.76347763477635,13.213674189811996],[-87.77787777877778,13.225494230701187],[-87.78147781477814,13.242380003400015],[-87.77427774277743,13.247445735209652],[-87.7670776707767,13.247445735209652]]],[[[123.79983799837999,13.365646144101447],[123.7746377463775,13.390974803149689],[123.77103771037713,13.402794844038866],[123.78903789037889,13.399417689499103],[123.80343803438035,13.390974803149689],[123.82143821438217,13.380843339530387],[123.8286382863829,13.372400453180973],[123.83223832238326,13.372400453180973],[123.8430384303843,13.372400453180973],[123.84663846638466,13.367334721371321],[123.83583835838357,13.355514680482145],[123.82143821438217,13.352137525942382],[123.79983799837999,13.365646144101447]]],[[[-80.08820088200882,13.57840688010667],[-80.08820088200882,13.576718302836781],[-80.09180091800917,13.576718302836781],[-80.09180091800917,13.57840688010667],[-80.08820088200882,13.57840688010667]]],[[[122.41022410224105,14.726639423626906],[122.41742417424177,14.719885114547367],[122.42102421024214,14.704687919118427],[122.39942399423995,14.686113569149711],[122.37422374223746,14.681047837340074],[122.35262352623528,14.679359260070186],[122.32022320223206,14.682736414609948],[122.3166231662317,14.699622187308776],[122.34182341823418,14.713130805467841],[122.36342363423637,14.719885114547367],[122.38142381423813,14.72832800089678],[122.39582395823959,14.731705155436543],[122.41022410224105,14.726639423626906]]],[[[-61.62361623616236,15.871494812607366],[-61.620016200162,15.868117658067604],[-61.616416164161635,15.85967477171819],[-61.620016200162,15.852920462638664],[-61.62721627216271,15.846166153559125],[-61.63801638016379,15.852920462638664],[-61.63441634416344,15.866429080797715],[-61.62361623616236,15.871494812607366]]],[[[-61.566015660156594,15.878249121686906],[-61.566015660156594,15.876560544417018],[-61.566015660156594,15.87487196714713],[-61.56961569615696,15.869806235337492],[-61.58041580415804,15.861363348988078],[-61.591215912159115,15.857986194448316],[-61.59481594815948,15.863051926257953],[-61.591215912159115,15.868117658067604],[-61.5840158401584,15.871494812607366],[-61.58041580415804,15.881626276226669],[-61.57321573215732,15.883314853496543],[-61.56961569615696,15.881626276226669],[-61.566015660156594,15.878249121686906]]],[[[111.59931599315996,16.52666279332186],[111.59931599315996,16.5317285251315],[111.60291602916033,16.533417102401387],[111.60651606516069,16.533417102401387],[111.60651606516069,16.5317285251315],[111.610116101161,16.528351370591736],[111.610116101161,16.52666279332186],[111.60651606516069,16.524974216051973],[111.60291602916033,16.524974216051973],[111.59931599315996,16.52666279332186]]],[[[112.73332733327334,16.658371820372707],[112.72972729727297,16.660060397642596],[112.72612726127261,16.66681470672212],[112.72612726127261,16.66850328399201],[112.72972729727297,16.66850328399201],[112.73332733327334,16.66681470672212],[112.7369273692737,16.660060397642596],[112.73332733327334,16.658371820372707]]],[[[-169.5310953109531,16.732669220247544],[-169.52389523895238,16.732669220247544],[-169.5418954189542,16.722537756628256],[-169.5490954909549,16.720849179358368],[-169.5490954909549,16.72422633389813],[-169.5490954909549,16.727603488437893],[-169.5310953109531,16.732669220247544]]],[[[-169.5130951309513,16.74448926113672],[-169.5130951309513,16.74617783840661],[-169.5130951309513,16.74448926113672],[-169.5130951309513,16.74448926113672]]],[[[112.33372333723338,16.825540970091097],[112.32652326523265,16.82891812463086],[112.32652326523265,16.83398385644051],[112.32652326523265,16.837361010980274],[112.33012330123302,16.837361010980274],[112.33372333723338,16.832295279170623],[112.33732337323374,16.82891812463086],[112.33372333723338,16.825540970091097]]],[[[112.33372333723338,16.93360991536359],[112.33732337323374,16.9319213380937],[112.34092340923411,16.92685560628405],[112.34092340923411,16.923478451744288],[112.33372333723338,16.923478451744288],[112.33372333723338,16.92685560628405],[112.33372333723338,16.93360991536359]]],[[[-88.09468094680946,17.517857650742997],[-88.07668076680767,17.504349032583946],[-88.06948069480694,17.49084041442488],[-88.06948069480694,17.480708950805578],[-88.0730807308073,17.475643218995927],[-88.0730807308073,17.47057748718629],[-88.07668076680767,17.460446023566988],[-88.08388083880838,17.462134600836876],[-88.08748087480875,17.47057748718629],[-88.08748087480875,17.49084041442488],[-88.08748087480875,17.49590614623453],[-88.09828098280983,17.494217568964643],[-88.10548105481054,17.497594723504406],[-88.11268112681127,17.504349032583946],[-88.11268112681127,17.509414764393583],[-88.11628116281163,17.51279191893336],[-88.11628116281163,17.519546228012885],[-88.1090810908109,17.522923382552648],[-88.09468094680946,17.517857650742997]]],[[[-63.240032400324,17.64618952325408],[-63.22923229232292,17.642812368714317],[-63.222032220322205,17.629303750555266],[-63.22923229232292,17.617483709666075],[-63.240032400324,17.614106555126313],[-63.250832508325075,17.624238018745615],[-63.247232472324725,17.641123791444443],[-63.240032400324,17.64618952325408]]],[[[-87.96867968679686,18.09028534523324],[-87.96507965079651,18.093662499773004],[-87.96147961479615,18.09028534523324],[-87.96147961479615,18.08015388161394],[-87.97227972279723,18.073399572534413],[-87.9830798307983,18.071710995264525],[-87.9830798307983,18.076776727074176],[-87.97587975879759,18.086908190693464],[-87.97227972279723,18.09028534523324],[-87.96867968679686,18.09028534523324]]],[[[-87.93987939879399,18.118991158821245],[-87.93627936279363,18.113925427011594],[-87.93627936279363,18.10379396339229],[-87.94347943479434,18.093662499773004],[-87.95067950679507,18.086908190693464],[-87.95427954279542,18.088596767963352],[-87.95427954279542,18.093662499773004],[-87.95787957879578,18.097039654312766],[-87.95427954279542,18.10041680885253],[-87.95067950679507,18.10379396339229],[-87.94347943479434,18.10717111793207],[-87.94347943479434,18.113925427011594],[-87.93987939879399,18.117302581551357],[-87.93987939879399,18.118991158821245]]],[[[-87.87867878678786,18.20848575412502],[-87.87507875078751,18.206797176855147],[-87.87507875078751,18.201731445045496],[-87.87507875078751,18.196665713235845],[-87.87867878678786,18.186534249616557],[-87.88947889478895,18.176402785997254],[-87.8930789307893,18.179779940537017],[-87.88947889478895,18.196665713235845],[-87.88587885878859,18.20342002231537],[-87.88227882278822,18.201731445045496],[-87.88227882278822,18.20342002231537],[-87.88587885878859,18.206797176855147],[-87.88587885878859,18.20848575412502],[-87.88227882278822,18.20848575412502],[-87.87867878678786,18.20848575412502]]],[[[-64.56844568445685,18.358769131144584],[-64.56844568445685,18.35032624479517],[-64.56844568445685,18.336817626636105],[-64.5720457204572,18.33512904936623],[-64.57564575645756,18.343571935715644],[-64.58644586445864,18.348637667525296],[-64.60084600846008,18.35201482206506],[-64.60444604446045,18.35539197660482],[-64.59364593645937,18.35708055387471],[-64.58644586445864,18.358769131144584],[-64.58284582845828,18.358769131144584],[-64.57924579245793,18.360457708414472],[-64.56844568445685,18.358769131144584]]],[[[-75.02295022950229,18.41786933559048],[-75.01935019350194,18.416180758320593],[-75.01215012150121,18.416180758320593],[-75.00855008550086,18.41449218105072],[-75.0049500495005,18.411115026510956],[-75.00135001350013,18.409426449241067],[-75.00135001350013,18.406049294701305],[-75.00135001350013,18.404360717431416],[-75.0049500495005,18.404360717431416],[-75.0049500495005,18.39760640835189],[-75.0049500495005,18.395917831082002],[-75.00855008550086,18.395917831082002],[-75.00855008550086,18.394229253812128],[-75.01215012150121,18.394229253812128],[-75.01215012150121,18.395917831082002],[-75.01575015750157,18.395917831082002],[-75.01935019350194,18.395917831082002],[-75.01935019350194,18.39760640835189],[-75.01935019350194,18.399294985621765],[-75.01935019350194,18.400983562891653],[-75.01935019350194,18.402672140161542],[-75.02295022950229,18.406049294701305],[-75.02295022950229,18.40773787197118],[-75.02655026550265,18.40773787197118],[-75.03015030150301,18.41280360378083],[-75.03015030150301,18.41786933559048],[-75.02295022950229,18.41786933559048]]],[[[-64.73044730447305,18.45332945825801],[-64.72684726847268,18.44995230371825],[-64.72324723247232,18.443197994638723],[-64.73044730447305,18.438132262829072],[-64.75924759247592,18.441509417368835],[-64.77364773647736,18.441509417368835],[-64.770047700477,18.44995230371825],[-64.74124741247412,18.4550180355279],[-64.73044730447305,18.45332945825801]]],[[[-64.53244532445324,18.493855312735207],[-64.52884528845289,18.492166735465318],[-64.52884528845289,18.482035271846016],[-64.52884528845289,18.47696954003638],[-64.53244532445324,18.466838076417076],[-64.5360453604536,18.461772344607425],[-64.53964539645396,18.465149499147202],[-64.5360453604536,18.471903808226728],[-64.53964539645396,18.482035271846016],[-64.5360453604536,18.49047815819543],[-64.53244532445324,18.493855312735207]]],[[[-16.32076320763207,19.728205297019457],[-16.309963099630977,19.73158245155922],[-16.302763027630277,19.723139565209806],[-16.31356313563134,19.70456521524109],[-16.33156331563316,19.68936801981215],[-16.342363423634225,19.675859401653085],[-16.360363603636017,19.64715358806508],[-16.392763927639265,19.599873424508374],[-16.39636396363963,19.599873424508374],[-16.392763927639265,19.6167591972072],[-16.35676356763568,19.677547978922973],[-16.32076320763207,19.728205297019457]]],[[[-16.457564575645762,20.614708363707877],[-16.450364503645034,20.613019786437988],[-16.44676446764467,20.607954054628337],[-16.44676446764467,20.57418250923068],[-16.453964539645398,20.57080535469092],[-16.468364683646826,20.57587108650057],[-16.475564755647554,20.59444543646927],[-16.468364683646826,20.609642631898225],[-16.457564575645762,20.614708363707877]]],[[[-78.58338583385833,20.661988527264583],[-78.57978579785798,20.656922795454932],[-78.57978579785798,20.648479909105518],[-78.5869858698587,20.64341417729588],[-78.59418594185942,20.64341417729588],[-78.60138601386014,20.645102754565755],[-78.6049860498605,20.650168486375406],[-78.61218612186121,20.65354564091517],[-78.61218612186121,20.65861137272482],[-78.60858608586085,20.66029994999471],[-78.6049860498605,20.65861137272482],[-78.57978579785798,20.65354564091517],[-78.57978579785798,20.656922795454932],[-78.57978579785798,20.65861137272482],[-78.58338583385833,20.661988527264583]]],[[[-78.65178651786518,20.665365681804346],[-78.64458644586446,20.66367710453447],[-78.63018630186302,20.65861137272482],[-78.63018630186302,20.65354564091517],[-78.64818648186481,20.651857063645295],[-78.65538655386554,20.65861137272482],[-78.65538655386554,20.66367710453447],[-78.65178651786518,20.665365681804346]]],[[[110.47250472504726,20.646791331835644],[110.47610476104762,20.631594136406704],[110.47970479704799,20.6113312091681],[110.47610476104762,20.59613401373916],[110.47250472504726,20.592756859199397],[110.46530465304653,20.59106828192951],[110.4581045810458,20.587691127389746],[110.45090450904507,20.589379704659635],[110.44730447304477,20.59613401373916],[110.44010440104404,20.629905559136816],[110.43650436504367,20.63834844548623],[110.42570425704258,20.64341417729588],[110.41850418504185,20.655234218185058],[110.42210422104222,20.661988527264583],[110.42930429304295,20.661988527264583],[110.43290432904331,20.66367710453447],[110.43290432904331,20.667054259074234],[110.43650436504367,20.668742836344123],[110.4437044370444,20.66367710453447],[110.44730447304477,20.65861137272482],[110.46170461704617,20.655234218185058],[110.47250472504726,20.646791331835644]]],[[[107.36927369273695,20.82578052244321],[107.38007380073805,20.81902621336367],[107.38367383673835,20.812271904284145],[107.38367383673835,20.79876328612508],[107.38007380073805,20.797074708855206],[107.37647376473768,20.80382901793473],[107.36927369273695,20.807206172474494],[107.36207362073623,20.80551759520462],[107.35127351273513,20.810583327014257],[107.34047340473404,20.829157676982973],[107.34047340473404,20.84266629514204],[107.3440734407344,20.84266629514204],[107.35847358473586,20.829157676982973],[107.36927369273695,20.82578052244321]]],[[[107.38367383673835,20.88825788142887],[107.39087390873908,20.884880726889108],[107.39447394473945,20.87812641780957],[107.39447394473945,20.874749263269806],[107.39087390873908,20.871372108730043],[107.39087390873908,20.869683531460154],[107.39087390873908,20.86799495419028],[107.38727387273872,20.864617799650503],[107.37287372873732,20.859552067840866],[107.36927369273695,20.857863490570978],[107.36207362073623,20.859552067840866],[107.3548735487355,20.864617799650503],[107.3440734407344,20.87812641780957],[107.34047340473404,20.874749263269806],[107.33687336873368,20.876437840539694],[107.33327333273331,20.88319214961922],[107.33327333273331,20.88825788142887],[107.34047340473404,20.889946458698745],[107.34767347673477,20.88825788142887],[107.35127351273513,20.886569304158982],[107.3548735487355,20.886569304158982],[107.36567365673659,20.88825788142887],[107.38367383673835,20.88825788142887]]],[[[107.82647826478268,21.025032640289368],[107.84087840878408,21.035164103908656],[107.85527855278553,21.03347552663878],[107.85167851678517,21.019966908479716],[107.84447844478444,21.011524022130303],[107.82647826478268,20.989572517621824],[107.81927819278195,20.98788394035195],[107.81567815678159,21.00645829032065],[107.82647826478268,21.025032640289368]]],[[[-71.68931689316892,21.30027073528025],[-71.68211682116821,21.303647889820013],[-71.6749167491675,21.307025044359776],[-71.67851678516784,21.298582158010362],[-71.69651696516965,21.290139271660948],[-71.70011700117001,21.291827848930836],[-71.68931689316892,21.30027073528025]]],[[[-71.63531635316353,21.318845085248952],[-71.6281162811628,21.323910817058604],[-71.6281162811628,21.31040219889954],[-71.63531635316353,21.2952050034706],[-71.64251642516425,21.303647889820013],[-71.63531635316353,21.318845085248952]]],[[[-71.21051210512104,21.34079658975743],[-71.19971199711996,21.34079658975743],[-71.19251192511925,21.33573085794778],[-71.19971199711996,21.322222239788715],[-71.2141121411214,21.31040219889954],[-71.21771217712177,21.3137793534393],[-71.2141121411214,21.332353703408018],[-71.21051210512104,21.34079658975743]]],[[[-71.49851498514985,21.568754521191593],[-71.49491494914949,21.563688789381942],[-71.49851498514985,21.529917243984286],[-71.49491494914949,21.50796573947582],[-71.50571505715057,21.494457121316756],[-71.52011520115201,21.489391389507105],[-71.5381153811538,21.499522853126408],[-71.5381153811538,21.516408625825235],[-71.52731527315272,21.52485151217465],[-71.51651516515165,21.52316293490476],[-71.50931509315093,21.528228666714412],[-71.50931509315093,21.551868748492765],[-71.5021150211502,21.568754521191593],[-71.49851498514985,21.568754521191593]]],[[[-81.98181981819818,21.64811765287608],[-81.97461974619746,21.639674766526667],[-81.9710197101971,21.62278899382784],[-81.9890198901989,21.609280375668774],[-82.02862028620285,21.595771757509723],[-82.05742057420574,21.58226313935066],[-82.06462064620646,21.58057456208077],[-82.07182071820718,21.577197407541007],[-82.07542075420754,21.572131675731356],[-82.08982089820898,21.568754521191593],[-82.11142111421114,21.56706594392172],[-82.1150211502115,21.57044309846148],[-82.10062100621006,21.573820253001244],[-82.08262082620826,21.590706025700072],[-82.07182071820718,21.592394602969947],[-82.0610206102061,21.599148912049486],[-82.05382053820537,21.60590322112901],[-82.04662046620466,21.610968952938663],[-82.02142021420214,21.621100416557965],[-82.0070200702007,21.621100416557965],[-81.99621996219962,21.626166148367602],[-81.9890198901989,21.634609034717016],[-81.98541985419854,21.641363343796556],[-81.98181981819818,21.646429075606193],[-81.98181981819818,21.64811765287608]]],[[[-81.85221852218523,21.66331484830502],[-81.83781837818378,21.666692002844798],[-81.83781837818378,21.661626271035146],[-81.85221852218523,21.64980623014597],[-81.87021870218702,21.639674766526667],[-81.90261902619025,21.616034684748314],[-81.92061920619206,21.616034684748314],[-81.93141931419314,21.62785472563749],[-81.9350193501935,21.641363343796556],[-81.93141931419314,21.639674766526667],[-81.92061920619206,21.62954330290738],[-81.90621906219062,21.631231880177253],[-81.89181891818917,21.641363343796556],[-81.88821888218882,21.646429075606193],[-81.89181891818917,21.64811765287608],[-81.88821888218882,21.64980623014597],[-81.85941859418594,21.661626271035146],[-81.85221852218523,21.66331484830502]]],[[[-72.12492124921249,21.854124079801778],[-72.11772117721176,21.85750123434154],[-72.11772117721176,21.854124079801778],[-72.12492124921249,21.84736977072224],[-72.1321213212132,21.84736977072224],[-72.12492124921249,21.854124079801778]]],[[[-72.0961209612096,21.882829893389783],[-72.0889208892089,21.886207047929545],[-72.08532085320853,21.881141316119894],[-72.08532085320853,21.87269842977048],[-72.09252092520924,21.86763269796083],[-72.09972099720997,21.864255543421066],[-72.10332103321034,21.871009852500592],[-72.0961209612096,21.882829893389783]]],[[[113.27693276932769,21.925044325136838],[113.28053280532805,21.923355747866964],[113.28413284132841,21.918290016057313],[113.28413284132841,21.91322428424766],[113.27693276932769,21.908158552438024],[113.27693276932769,21.898027088818722],[113.26613266132665,21.886207047929545],[113.25893258932592,21.881141316119894],[113.2517325173252,21.882829893389783],[113.23373233732337,21.89296135700907],[113.23013230132301,21.898027088818722],[113.22653226532265,21.901404243358485],[113.22293222932228,21.91491286151755],[113.23013230132301,21.93517578875614],[113.24813248132483,21.943618675105554],[113.25893258932592,21.946995829645317],[113.26613266132665,21.943618675105554],[113.27693276932769,21.931798634216378],[113.27693276932769,21.925044325136838]]],[[[-82.64422644226443,21.953750138724857],[-82.60822608226081,21.938552943295903],[-82.59022590225902,21.926732902406727],[-82.60462604626046,21.921667170597075],[-82.62982629826298,21.9199785933272],[-82.65862658626585,21.931798634216378],[-82.66942669426695,21.948684406915206],[-82.64422644226443,21.953750138724857]]],[[[-83.55143551435513,21.96219302507427],[-83.54423544235442,21.960504447804382],[-83.55143551435513,21.958815870534494],[-83.56943569435694,21.958815870534494],[-83.5910359103591,21.960504447804382],[-83.6090360903609,21.967258756883908],[-83.59823598235982,21.97232448869356],[-83.56943569435694,21.965570179614033],[-83.55143551435513,21.96219302507427]]],[[[113.77013770137705,22.001030302281563],[113.77733777337772,21.985833106852624],[113.76293762937632,21.967258756883908],[113.74853748537487,21.97232448869356],[113.73773737737378,21.985833106852624],[113.73773737737378,21.9976531477418],[113.7449374493745,21.9976531477418],[113.7557375573756,22.001030302281563],[113.77013770137705,22.001030302281563]]],[[[114.30654306543067,22.056753352187698],[114.30654306543067,22.04999904310816],[114.30294302943031,22.04493331129852],[114.22374223742236,22.021293229520154],[114.2057420574206,22.026358961329805],[114.21654216542169,22.031424693139456],[114.27054270542709,22.04999904310816],[114.28134281342813,22.053376197647935],[114.29214292142922,22.058441929457572],[114.29574295742958,22.063507661267224],[114.29934299342995,22.066884815806986],[114.30294302943031,22.068573393076875],[114.31014310143104,22.068573393076875],[114.31014310143104,22.06181908399735],[114.30654306543067,22.056753352187698]]],[[[-81.5570155701557,22.065196238537112],[-81.54981549815498,22.058441929457572],[-81.54621546215462,22.04493331129852],[-81.55341553415533,22.043244734028633],[-81.56421564215641,22.04999904310816],[-81.5750157501575,22.048310465838284],[-81.58221582215822,22.04999904310816],[-81.58581585815858,22.056753352187698],[-81.58941589415893,22.065196238537112],[-81.58941589415893,22.071950547616638],[-81.58221582215822,22.07701627942629],[-81.57141571415714,22.073639124886526],[-81.56061560615606,22.068573393076875],[-81.5570155701557,22.065196238537112]]],[[[113.47493474934748,22.098967783934768],[113.46773467734681,22.10234493847453],[113.46413464134645,22.10741067028418],[113.47133471334712,22.114164979363707],[113.51813518135185,22.127673597522772],[113.52533525335252,22.125985020252884],[113.53253532535325,22.120919288443233],[113.53253532535325,22.11247640209382],[113.52533525335252,22.105722093014293],[113.53253532535325,22.09559062939499],[113.54693546935471,22.092213474855228],[113.53973539735398,22.08208201123594],[113.48573485734858,22.071950547616638],[113.47133471334712,22.07701627942629],[113.47493474934748,22.088836320315465],[113.47493474934748,22.098967783934768]]],[[[-75.72135721357213,22.20197099739761],[-75.71775717757177,22.19521668831807],[-75.7141571415714,22.183396647428893],[-75.72135721357213,22.17495376107948],[-75.73575735757358,22.17495376107948],[-75.74295742957429,22.183396647428893],[-75.75015750157502,22.196905265587958],[-75.75015750157502,22.205348151937372],[-75.74655746557465,22.205348151937372],[-75.73935739357393,22.203659574667483],[-75.73215732157321,22.20028242012772],[-75.73575735757358,22.205348151937372],[-75.73935739357393,22.2222339246362],[-75.73575735757358,22.225611079175962],[-75.73215732157321,22.218856770096437],[-75.72135721357213,22.20197099739761]]],[[[114.13734137341373,22.178330915619256],[114.11214112141124,22.176642338349367],[114.1157411574116,22.18508522469878],[114.1157411574116,22.215479615556674],[114.10494104941051,22.215479615556674],[114.10494104941051,22.2222339246362],[114.10494104941051,22.235742542795265],[114.11214112141124,22.234053965525376],[114.1157411574116,22.2222339246362],[114.12654126541264,22.213791038286786],[114.13374133741337,22.215479615556674],[114.13374133741337,22.210413883747023],[114.12654126541264,22.205348151937372],[114.13734137341373,22.205348151937372],[114.14814148141483,22.205348151937372],[114.15534155341555,22.203659574667483],[114.14454144541446,22.196905265587958],[114.13734137341373,22.191839533778307],[114.14454144541446,22.178330915619256],[114.13734137341373,22.178330915619256]]],[[[-75.74655746557465,22.235742542795265],[-75.75015750157502,22.234053965525376],[-75.75375753757537,22.23743112006514],[-75.75015750157502,22.26275977911338],[-75.74655746557465,22.261071201843507],[-75.74655746557465,22.24418542914468],[-75.74655746557465,22.235742542795265]]],[[[-75.81135811358114,22.370828724385873],[-75.80775807758077,22.365762992576222],[-75.80415804158041,22.353942951687046],[-75.80415804158041,22.34718864260752],[-75.81135811358114,22.355631528956934],[-75.81855818558185,22.370828724385873],[-75.82215822158221,22.386025919814827],[-75.81855818558185,22.3877144970847],[-75.81495814958149,22.377583033465413],[-75.81135811358114,22.370828724385873]]],[[[113.62253622536224,22.440060392451073],[113.63333633336333,22.438371815181185],[113.65133651336515,22.438371815181185],[113.65853658536588,22.43161750610166],[113.65853658536588,22.423174619752245],[113.65493654936552,22.413043156132943],[113.64413644136442,22.41135457886307],[113.64413644136442,22.399534537973878],[113.62973629736297,22.396157383434115],[113.62253622536224,22.391091651624464],[113.6117361173612,22.397845960704004],[113.6117361173612,22.413043156132943],[113.6117361173612,22.42992892883177],[113.62253622536224,22.440060392451073]]],[[[-78.73818738187381,22.548129337723566],[-78.73458734587345,22.55150649226333],[-78.72738727387274,22.548129337723566],[-78.72738727387274,22.541375028644026],[-78.73458734587345,22.531243565024738],[-78.73818738187381,22.5244892559452],[-78.75618756187562,22.517734946865673],[-78.7669876698767,22.51942352413556],[-78.7669876698767,22.5244892559452],[-78.7669876698767,22.541375028644026],[-78.76338763387633,22.543063605913915],[-78.74898748987489,22.539686451374152],[-78.73818738187381,22.541375028644026],[-78.73818738187381,22.548129337723566]]],[[[-73.61893618936189,22.600475233089924],[-73.60453604536045,22.608918119439338],[-73.59373593735937,22.602163810359812],[-73.60813608136081,22.57683515131157],[-73.6261362613626,22.573457996771808],[-73.61893618936189,22.600475233089924]]],[[[-82.51462514625146,22.625803892138165],[-82.5110251102511,22.61398385124899],[-82.50742507425073,22.59034376947062],[-82.51462514625146,22.57176941950192],[-82.51822518225183,22.565015110422394],[-82.52182521825218,22.559949378612743],[-82.5290252902529,22.563326533152505],[-82.52542525425254,22.625803892138165],[-82.5290252902529,22.63424677848758],[-82.5290252902529,22.63931251029723],[-82.52542525425254,22.641001087567105],[-82.51822518225183,22.635935355757468],[-82.51462514625146,22.629181046677928],[-82.51462514625146,22.625803892138165]]],[[[-79.22419224192241,22.63931251029723],[-79.2169921699217,22.642689664836993],[-79.17739177391773,22.644378242106868],[-79.18819188191881,22.63424677848758],[-79.20619206192062,22.624115314868277],[-79.21339213392133,22.624115314868277],[-79.21339213392133,22.630869623947817],[-79.2169921699217,22.635935355757468],[-79.22419224192241,22.63931251029723]]],[[[-79.68139681396814,22.85882755538198],[-79.6669966699667,22.852073246302453],[-79.65979659796598,22.845318937222913],[-79.67059670596706,22.8368760508735],[-79.6849968499685,22.833498896333737],[-79.69219692196921,22.840253205413262],[-79.69219692196921,22.8470075144928],[-79.69579695796958,22.850384669032564],[-79.69939699396994,22.852073246302453],[-79.70299702997029,22.852073246302453],[-79.71019710197102,22.853761823572327],[-79.73179731797318,22.865581864461504],[-79.73899738997389,22.875713328080806],[-79.73899738997389,22.885844791700094],[-79.72459724597246,22.88922194623987],[-79.72819728197281,22.895976255319397],[-79.72819728197281,22.90441914166881],[-79.7209972099721,22.907796296208573],[-79.71379713797138,22.895976255319397],[-79.71739717397173,22.880779059890457],[-79.71019710197102,22.87740190535068],[-79.69219692196921,22.874024750810918],[-79.6849968499685,22.865581864461504],[-79.68139681396814,22.85882755538198]]],[[[-79.82539825398254,22.965207923384583],[-79.81819818198181,22.955076459765294],[-79.81819818198181,22.94663357341588],[-79.82179821798218,22.943256418876118],[-79.83619836198362,22.938190687066466],[-79.84339843398433,22.931436377986927],[-79.83619836198362,22.92637064617729],[-79.82899828998289,22.9246820689074],[-79.82899828998289,22.91961633709775],[-79.83619836198362,22.911173450748336],[-79.8469984699847,22.911173450748336],[-79.85779857798578,22.916239182557987],[-79.86499864998649,22.92637064617729],[-79.86139861398614,22.931436377986927],[-79.85419854198541,22.936502109796578],[-79.85419854198541,22.94156784160623],[-79.86139861398614,22.943256418876118],[-79.87219872198722,22.948322150685755],[-79.86139861398614,22.96183076884482],[-79.83979839798397,22.96858507792436],[-79.82539825398254,22.965207923384583]]],[[[113.52893528935289,22.960142191574946],[113.52893528935289,22.948322150685755],[113.54693546935471,22.938190687066466],[113.55413554135544,22.911173450748336],[113.55413554135544,22.885844791700094],[113.54333543335434,22.880779059890457],[113.52533525335252,22.895976255319397],[113.51093510935112,22.92130491436764],[113.50733507335076,22.95169930522553],[113.51453514535149,22.96858507792436],[113.52893528935289,22.960142191574946]]],[[[-80.0630006300063,23.04963678687872],[-80.05940059400594,23.042882477799196],[-80.05220052200522,23.02937385964013],[-80.05580055800557,23.02599670510037],[-80.0630006300063,23.034439591449782],[-80.06660066600665,23.03950532325942],[-80.07020070200701,23.037816745989545],[-80.07740077400774,23.037816745989545],[-80.08460084600846,23.037816745989545],[-80.09180091800917,23.042882477799196],[-80.09540095400953,23.047948209608833],[-80.09540095400953,23.05132536414861],[-80.09180091800917,23.04963678687872],[-80.08820088200882,23.054702518688373],[-80.08820088200882,23.068211136847438],[-80.07740077400774,23.069899714117312],[-80.0630006300063,23.058079673228136],[-80.0630006300063,23.04963678687872]]],[[[-80.24300243002429,23.10704841405473],[-80.24300243002429,23.103671259514968],[-80.23940239402394,23.096916950435443],[-80.23940239402394,23.09185121862579],[-80.24300243002429,23.08509690954625],[-80.25020250202502,23.08509690954625],[-80.25740257402573,23.08847406408603],[-80.2610026100261,23.096916950435443],[-80.26460264602646,23.103671259514968],[-80.27540275402754,23.10704841405473],[-80.28980289802898,23.11380272313427],[-80.29340293402933,23.115491300404145],[-80.29340293402933,23.120557032213796],[-80.2970029700297,23.122245609483684],[-80.30420304203042,23.125622764023447],[-80.30420304203042,23.13406565037286],[-80.2970029700297,23.140819959452386],[-80.28980289802898,23.142508536722275],[-80.28260282602825,23.142508536722275],[-80.27180271802717,23.140819959452386],[-80.27180271802717,23.13406565037286],[-80.26460264602646,23.12731134129332],[-80.25020250202502,23.115491300404145],[-80.24300243002429,23.10704841405473]]],[[[-80.40140401404014,23.15432857761145],[-80.39060390603906,23.15432857761145],[-80.37620376203762,23.152640000341563],[-80.37620376203762,23.147574268531912],[-80.3870038700387,23.145885691262038],[-80.39420394203941,23.145885691262038],[-80.41940419404193,23.14419711399215],[-80.43020430204302,23.135754227642735],[-80.44460444604445,23.1306884958331],[-80.4590045900459,23.12731134129332],[-80.4590045900459,23.12899991856321],[-80.46260462604626,23.135754227642735],[-80.4590045900459,23.137442804912624],[-80.44820448204482,23.135754227642735],[-80.45180451804518,23.145885691262038],[-80.44460444604445,23.15095142307169],[-80.43020430204302,23.152640000341563],[-80.4230042300423,23.152640000341563],[-80.40140401404014,23.15432857761145]]],[[[-80.66780667806678,23.21174020478746],[-80.66420664206642,23.208363050247698],[-80.66420664206642,23.201608741168158],[-80.66780667806678,23.194854432088633],[-80.67140671406713,23.194854432088633],[-80.6750067500675,23.194854432088633],[-80.6750067500675,23.18641154573922],[-80.67860678606786,23.18641154573922],[-80.6930069300693,23.188100123009107],[-80.70020700207002,23.184722968469345],[-80.70020700207002,23.177968659389805],[-80.70380703807038,23.179657236659693],[-80.70380703807038,23.193165854818744],[-80.69660696606965,23.203297318438047],[-80.67860678606786,23.210051627517572],[-80.66780667806678,23.21174020478746]]],[[[-80.77580775807758,23.20667447297781],[-80.7110071100711,23.199920163898284],[-80.7110071100711,23.19654300935852],[-80.7110071100711,23.19147727754887],[-80.71820718207182,23.18978870027898],[-80.72540725407254,23.193165854818744],[-80.73260732607326,23.193165854818744],[-80.73620736207361,23.18641154573922],[-80.73980739807398,23.184722968469345],[-80.76140761407613,23.193165854818744],[-80.77220772207721,23.19654300935852],[-80.77940779407794,23.198231586628395],[-80.8010080100801,23.19654300935852],[-80.81180811808117,23.19654300935852],[-80.8370083700837,23.20667447297781],[-80.84780847808477,23.208363050247698],[-80.8550085500855,23.218494513866986],[-80.86220862208621,23.220183091136875],[-80.85860858608585,23.225248822946526],[-80.8370083700837,23.223560245676637],[-80.80820808208081,23.21342878205735],[-80.77580775807758,23.20667447297781]]],[[[-80.88020880208802,23.250577481994767],[-80.87300873008729,23.24888890472488],[-80.86940869408694,23.240446018375465],[-80.88020880208802,23.23200313202605],[-80.8910089100891,23.23369170929594],[-80.90180901809018,23.237068863835702],[-80.91260912609125,23.23875744110559],[-80.92340923409233,23.243823172915228],[-80.93060930609306,23.250577481994767],[-80.93420934209341,23.25395463653453],[-80.94140941409414,23.257331791074293],[-80.93420934209341,23.262397522883944],[-80.91260912609125,23.265774677423707],[-80.88740887408873,23.250577481994767],[-80.88020880208802,23.250577481994767]]],[[[120.02340023400234,23.4515181771108],[120.07380073800738,23.50048691793741],[120.11700117001169,23.547767081494115],[120.12420124201242,23.551144236033878],[120.0918009180092,23.49879834066752],[120.07380073800738,23.48360114523858],[120.06300063000629,23.47178110434939],[120.04860048600489,23.45827248619034],[120.0378003780038,23.4515181771108],[120.01980019800197,23.438009558951748],[120.00900009000094,23.432943827142097],[120.02340023400234,23.4515181771108]]],[[[116.99576995769957,23.56296427692307],[117.00657006570066,23.56296427692307],[117.01017010170102,23.554521390573655],[117.0029700297003,23.54607850422424],[116.99576995769957,23.5393241951447],[116.9921699216992,23.53425846333505],[116.9885698856989,23.52412699971576],[116.97056970569707,23.51399553609646],[116.95256952569525,23.517372690636236],[116.93816938169385,23.525815576985636],[116.93456934569349,23.53594704060494],[116.94536945369452,23.5393241951447],[116.95616956169562,23.544389926954352],[116.96696966969671,23.554521390573655],[116.97416974169744,23.55958712238329],[116.9777697776978,23.55958712238329],[116.98496984969853,23.56127569965318],[116.99576995769957,23.56296427692307]]],[[[-75.10935109351094,23.84664525826335],[-75.10575105751057,23.841579526453714],[-75.10575105751057,23.83144806283441],[-75.10935109351094,23.817939444675346],[-75.11655116551165,23.814562290135584],[-75.12375123751237,23.83144806283441],[-75.11655116551165,23.844956680993477],[-75.10935109351094,23.84664525826335]]],[[[153.96453964539648,24.309315430211214],[153.9537395373954,24.292429657512386],[153.93933939339394,24.311004007481102],[153.9537395373954,24.31606973929074],[153.96453964539648,24.309315430211214]]],[[[-77.87057870578705,24.346464130148632],[-77.83817838178382,24.349841284688395],[-77.83457834578346,24.349841284688395],[-77.83817838178382,24.34139839833898],[-77.8489784897849,24.32788978017993],[-77.86697866978669,24.319446893830516],[-77.8849788497885,24.32788978017993],[-77.8849788497885,24.34139839833898],[-77.87057870578705,24.346464130148632]]],[[[54.32634326343265,24.373481366466763],[54.333543335433376,24.36334990284746],[54.33714337143371,24.349841284688395],[54.32634326343265,24.32113547110039],[54.308343083430856,24.314381162020865],[54.283142831428336,24.35828417103781],[54.27954279542797,24.36503848011735],[54.28674286742867,24.36503848011735],[54.297542975429764,24.36334990284746],[54.308343083430856,24.356595593767935],[54.31194311943119,24.354907016498046],[54.31194311943119,24.359972748307698],[54.308343083430856,24.36503848011735],[54.2939429394294,24.375169943736637],[54.290342903429035,24.38530140735594],[54.30474304743049,24.38530140735594],[54.32634326343265,24.373481366466763]]],[[[52.31032310323104,24.538961938915264],[52.3319233192332,24.5254533207562],[52.339123391233926,24.501813238977846],[52.32472324723247,24.479861734469367],[52.313923139231406,24.476484579929604],[52.29952299522995,24.48323888900913],[52.295922959229614,24.48830462081878],[52.288722887228886,24.491681775358543],[52.28152281522816,24.496747507168195],[52.28152281522816,24.51025612532726],[52.29232292322925,24.522076166216436],[52.29952299522995,24.533896207105613],[52.31032310323104,24.538961938915264]]],[[[-76.77256772567725,24.538961938915264],[-76.77256772567725,24.532207629835725],[-76.77256772567725,24.518699011676674],[-76.77976779767798,24.513633279867022],[-76.79056790567905,24.518699011676674],[-76.79416794167942,24.532207629835725],[-76.79416794167942,24.549093402534552],[-76.78336783367833,24.55247055707433],[-76.77616776167761,24.544027670724915],[-76.77256772567725,24.538961938915264]]],[[[-82.11862118621185,24.555847711614092],[-82.1150211502115,24.557536288883966],[-82.11862118621185,24.554159134344204],[-82.12942129421293,24.55078197980444],[-82.12942129421293,24.554159134344204],[-82.11862118621185,24.555847711614092]]],[[[-82.11862118621185,24.584553525202097],[-82.12942129421293,24.589619257011748],[-82.1330213302133,24.59299641155151],[-82.14022140221402,24.59299641155151],[-82.14742147421474,24.59299641155151],[-82.14382143821437,24.596373566091273],[-82.1330213302133,24.59806214336116],[-82.11862118621185,24.594684988821385],[-82.10782107821078,24.58624210247197],[-82.10782107821078,24.574422061582794],[-82.11142111421114,24.56597917523338],[-82.11142111421114,24.57104490704303],[-82.11862118621185,24.584553525202097]]],[[[-81.42381423814238,24.65547377053717],[-81.41661416614166,24.658850925076933],[-81.40941409414094,24.65547377053717],[-81.41301413014129,24.647030884187757],[-81.42021420214202,24.652096615997408],[-81.42381423814238,24.65547377053717]]],[[[-81.26541265412654,24.67067096596611],[-81.26181261812617,24.672359543236],[-81.25821258212582,24.667293811426347],[-81.26541265412654,24.660539502346822],[-81.27621276212761,24.65547377053717],[-81.27621276212761,24.657162347807045],[-81.26541265412654,24.67067096596611]]],[[[-81.4490144901449,24.680802429585412],[-81.44181441814418,24.672359543236],[-81.43821438214381,24.660539502346822],[-81.44181441814418,24.65040803872752],[-81.44541445414454,24.65040803872752],[-81.4490144901449,24.65547377053717],[-81.45981459814598,24.663916656886585],[-81.46341463414633,24.67067096596611],[-81.45621456214562,24.67573669777576],[-81.45261452614525,24.67742527504565],[-81.45621456214562,24.67742527504565],[-81.45621456214562,24.680802429585412],[-81.4490144901449,24.680802429585412]]],[[[-81.48141481414814,24.682491006855287],[-81.48141481414814,24.672359543236],[-81.47781477814777,24.653785193267282],[-81.48141481414814,24.65040803872752],[-81.4850148501485,24.657162347807045],[-81.49221492214922,24.662228079616696],[-81.49581495814958,24.663916656886585],[-81.5030150301503,24.662228079616696],[-81.50661506615066,24.660539502346822],[-81.51021510215102,24.660539502346822],[-81.51381513815137,24.663916656886585],[-81.51741517415174,24.66560523415646],[-81.5210152101521,24.674048120505873],[-81.51741517415174,24.687556738664938],[-81.51381513815137,24.69768820228424],[-81.51021510215102,24.69768820228424],[-81.50661506615066,24.695999625014352],[-81.49941499414994,24.695999625014352],[-81.49221492214922,24.69262247047459],[-81.4850148501485,24.685868161395064],[-81.48141481414814,24.682491006855287]]],[[[-110.58770587705877,24.83277438387485],[-110.57330573305732,24.83952869295439],[-110.56970569705697,24.844594424764026],[-110.56610566105661,24.841217270224263],[-110.56610566105661,24.829397229335086],[-110.56610566105661,24.826020074795323],[-110.56250562505625,24.820954342985672],[-110.56250562505625,24.814200033906147],[-110.56970569705697,24.81588861117602],[-110.56970569705697,24.82264292025556],[-110.57330573305732,24.82264292025556],[-110.58050580505805,24.820954342985672],[-110.58770587705877,24.829397229335086],[-110.58770587705877,24.83277438387485]]],[[[125.20385203852038,24.846283002033914],[125.21105211052111,24.83615153841461],[125.21825218252184,24.81588861117602],[125.20385203852038,24.805757147556733],[125.1678516785168,24.80069141574708],[125.14985149851498,24.804068570286844],[125.13905139051394,24.81588861117602],[125.14265142651425,24.829397229335086],[125.14985149851498,24.83277438387485],[125.1570515705157,24.834462961144737],[125.16065160651607,24.844594424764026],[125.16425164251643,24.854725888383328],[125.17865178651789,24.856414465653216],[125.19305193051929,24.849660156573677],[125.20385203852038,24.846283002033914]]],[[[-80.70020700207002,24.881743124701444],[-80.70020700207002,24.876677392891807],[-80.7110071100711,24.864857352002616],[-80.71820718207182,24.85979162019298],[-80.73260732607326,24.849660156573677],[-80.73980739807398,24.851348733843565],[-80.73620736207361,24.85810304292309],[-80.7290072900729,24.863168774732742],[-80.72180721807217,24.866545929272505],[-80.70020700207002,24.881743124701444]]],[[[-115.75375753757537,24.954351947306407],[-115.75375753757537,24.952663370036518],[-115.75375753757537,24.954351947306407],[-115.75375753757537,24.954351947306407]]],[[[119.55179551795521,25.2093271150587],[119.56259562595625,25.2093271150587],[119.56619566195661,25.204261383249047],[119.56259562595625,25.199195651439396],[119.55179551795521,25.195818496899633],[119.54819548195485,25.18568703328033],[119.54819548195485,25.17217841512128],[119.54099540995412,25.16542410604174],[119.53019530195303,25.16542410604174],[119.51579515795157,25.17217841512128],[119.51219512195121,25.18230987874057],[119.51219512195121,25.190752765089982],[119.51219512195121,25.199195651439396],[119.50499504995054,25.204261383249047],[119.49419494194944,25.200884228709285],[119.49059490594908,25.195818496899633],[119.46179461794617,25.20257280597916],[119.45099450994513,25.214392846868336],[119.4437944379444,25.22959004229729],[119.44739447394477,25.236344351376815],[119.4545945459455,25.238032928646703],[119.4581945819458,25.241410083186466],[119.4689946899469,25.251541546805754],[119.47619476194762,25.24985296953588],[119.47979479794799,25.24478723772623],[119.48699486994872,25.24478723772623],[119.49059490594908,25.241410083186466],[119.49779497794981,25.231278619567163],[119.50139501395017,25.221147155947875],[119.51219512195121,25.21270426959846],[119.5229952299523,25.20763853778881],[119.53379533795339,25.20763853778881],[119.54459544595449,25.2093271150587],[119.55179551795521,25.2093271150587]]],[[[-81.04581045810458,25.308953173981777],[-81.04221042210422,25.30726459671189],[-81.03861038610385,25.2971331330926],[-81.04941049410493,25.28531309220341],[-81.0530105301053,25.278558783123884],[-81.06021060210601,25.273493051314233],[-81.06741067410674,25.276870205853996],[-81.07461074610745,25.288690246743187],[-81.07821078210782,25.302198864902238],[-81.07461074610745,25.31064175125165],[-81.06021060210601,25.31233032852154],[-81.04581045810458,25.308953173981777]]],[[[-110.71370713707137,25.305576019442],[-110.70650706507065,25.305576019442],[-110.69570695706958,25.30726459671189],[-110.69210692106921,25.31233032852154],[-110.68850688506885,25.308953173981777],[-110.69570695706958,25.302198864902238],[-110.70290702907029,25.288690246743187],[-110.70650706507065,25.27180447404436],[-110.71370713707137,25.26505016496482],[-110.7209072090721,25.259984433155168],[-110.72810728107281,25.259984433155168],[-110.72810728107281,25.266738742234708],[-110.73530735307352,25.278558783123884],[-110.73170731707317,25.288690246743187],[-110.71370713707137,25.305576019442]]],[[[-81.0890108901089,25.339347564839656],[-81.08541085410853,25.330904678490242],[-81.08541085410853,25.32752752395048],[-81.0890108901089,25.322461792140828],[-81.0890108901089,25.31233032852154],[-81.09981099810997,25.31739606033119],[-81.1070110701107,25.324150369410717],[-81.12141121411214,25.335970410299893],[-81.11781117811178,25.342724719379433],[-81.11061110611105,25.341036142109544],[-81.11421114211142,25.33765898756978],[-81.1070110701107,25.33765898756978],[-81.09621096210962,25.339347564839656],[-81.0890108901089,25.339347564839656]]],[[[-77.86337863378634,25.408579232904856],[-77.87777877778777,25.408579232904856],[-77.88857888578886,25.408579232904856],[-77.90657906579065,25.408579232904856],[-77.90657906579065,25.41026781017473],[-77.89937899378994,25.41533354198438],[-77.89217892178921,25.418710696524144],[-77.8849788497885,25.418710696524144],[-77.87417874178742,25.418710696524144],[-77.85977859778598,25.418710696524144],[-77.8489784897849,25.425465005603684],[-77.83817838178382,25.435596469222972],[-77.83817838178382,25.433907891953098],[-77.84177841778417,25.423776428333795],[-77.85257852578525,25.41195638744462],[-77.86337863378634,25.408579232904856]]],[[[37.02817028170281,25.420399273794033],[37.038970389703906,25.41195638744462],[37.04257042570427,25.406890655634967],[37.038970389703906,25.406890655634967],[37.03537035370354,25.408579232904856],[37.02817028170281,25.408579232904856],[37.02817028170281,25.405202078365093],[37.03177031770318,25.398447769285553],[37.02457024570248,25.400136346555442],[37.00297002970029,25.41195638744462],[36.99936999369996,25.422087851063907],[36.99936999369996,25.428842160143446],[36.99216992169923,25.43053073741332],[36.97776977769777,25.427153582873558],[36.97056970569707,25.435596469222972],[36.96696966969671,25.449105087382037],[36.95616956169562,25.449105087382037],[36.94536945369455,25.44235077830251],[36.94536945369455,25.449105087382037],[36.95256952569525,25.467679437350753],[36.95976959769598,25.47781090097004],[36.97416974169744,25.47781090097004],[36.988569885698865,25.476122323700153],[36.99936999369996,25.469368014620628],[37.01017010170102,25.449105087382037],[37.013770137701385,25.450793664651925],[37.01737017370175,25.45754797373145],[37.020970209702114,25.4524822419218],[37.02817028170281,25.420399273794033]]],[[[-112.10692106921069,25.484565210049567],[-112.10332103321034,25.489630941859218],[-112.09972099720997,25.486253787319455],[-112.09972099720997,25.47274516916039],[-112.0961209612096,25.455859396461562],[-112.09972099720997,25.43053073741332],[-112.09972099720997,25.41195638744462],[-112.10692106921069,25.391693460206028],[-112.11052110521105,25.362987646618024],[-112.10332103321034,25.342724719379433],[-112.10692106921069,25.325838946680605],[-112.11412114121141,25.314018905791414],[-112.11772117721176,25.300510287632363],[-112.11772117721176,25.283624514933535],[-112.12132121321213,25.281935937663647],[-112.1321213212132,25.288690246743187],[-112.13932139321393,25.2971331330926],[-112.13572135721357,25.31233032852154],[-112.12492124921249,25.32752752395048],[-112.11772117721176,25.361299069348135],[-112.11412114121141,25.403513501095205],[-112.10692106921069,25.44235077830251],[-112.10332103321034,25.460925128271214],[-112.10692106921069,25.484565210049567]]],[[[36.84816848168484,25.533533950876176],[36.84096840968411,25.53522252814605],[36.82656826568265,25.547042569035227],[36.83016830168302,25.560551187194292],[36.84096840968411,25.570682650813595],[36.85536855368554,25.568994073543706],[36.86616866168663,25.55717403265453],[36.86616866168663,25.545353991765353],[36.85536855368554,25.53691110541594],[36.84816848168484,25.533533950876176]]],[[[119.34659346593469,25.567305496273832],[119.34659346593469,25.560551187194292],[119.35379353793542,25.55210830084488],[119.35019350193505,25.543665414495464],[119.34299342993432,25.51495960090746],[119.3357933579336,25.489630941859218],[119.33219332193323,25.467679437350753],[119.3357933579336,25.449105087382037],[119.3357933579336,25.43728504649286],[119.3249932499325,25.433907891953098],[119.31419314193141,25.43053073741332],[119.30339303393038,25.422087851063907],[119.29619296192965,25.422087851063907],[119.28899288992892,25.444039355572386],[119.28539285392856,25.45417081919169],[119.28179281792819,25.464302282810976],[119.28179281792819,25.482876632779693],[119.30339303393038,25.53691110541594],[119.30339303393038,25.543665414495464],[119.30699306993068,25.547042569035227],[119.31059310593105,25.548731146305116],[119.31779317793178,25.55717403265453],[119.32139321393214,25.560551187194292],[119.33219332193323,25.570682650813595],[119.34299342993432,25.574059805353357],[119.34659346593469,25.567305496273832]]],[[[36.90216902169021,25.548731146305116],[36.89856898568988,25.57743695989312],[36.89856898568988,25.584191268972646],[36.89856898568988,25.596011309861836],[36.90576905769058,25.602765618941362],[36.912969129691305,25.606142773481125],[36.9237692376924,25.602765618941362],[36.92736927369273,25.59263415532206],[36.92736927369273,25.584191268972646],[36.92736927369273,25.575748382623246],[36.92016920169203,25.575748382623246],[36.91656916569167,25.580814114432883],[36.912969129691305,25.57912553716301],[36.91656916569167,25.570682650813595],[36.91656916569167,25.567305496273832],[36.912969129691305,25.568994073543706],[36.92016920169203,25.55548545538464],[36.92736927369273,25.528468219066525],[36.9237692376924,25.52002533271711],[36.912969129691305,25.53522252814605],[36.90576905769058,25.538599682685813],[36.90216902169021,25.548731146305116]]],[[[-111.05931059310593,25.700703100594552],[-111.05931059310593,25.70745740967409],[-111.04491044910449,25.70745740967409],[-111.04491044910449,25.712523141483743],[-111.03771037710376,25.714211718753617],[-111.03051030510305,25.70408025513433],[-111.02331023310232,25.69732594605479],[-111.01971019710197,25.693948791515027],[-111.01251012510124,25.678751596086087],[-111.01611016110161,25.668620132466785],[-111.02331023310232,25.66017724611737],[-111.02691026910269,25.651734359767957],[-111.03411034110341,25.653422937037845],[-111.04491044910449,25.665242977927022],[-111.04851048510484,25.670308709736673],[-111.04491044910449,25.678751596086087],[-111.0521105211052,25.693948791515027],[-111.05931059310593,25.700703100594552]]],[[[-79.24939249392493,25.775000500469403],[-79.24579245792458,25.763180459580212],[-79.24219242192422,25.74291753234162],[-79.24579245792458,25.734474645992208],[-79.24939249392493,25.73954037780186],[-79.2529925299253,25.736163223262096],[-79.26739267392674,25.732786068722334],[-79.26739267392674,25.741228955071747],[-79.26019260192602,25.756426150500687],[-79.26379263792637,25.761491882310338],[-79.27819278192781,25.74967184142116],[-79.28539285392854,25.741228955071747],[-79.29259292592926,25.734474645992208],[-79.29259292592926,25.720966027833157],[-79.28179281792818,25.712523141483743],[-79.26739267392674,25.70745740967409],[-79.25659256592566,25.699014523324678],[-79.26019260192602,25.693948791515027],[-79.28899288992889,25.69732594605479],[-79.29979299792997,25.69732594605479],[-79.30339303393033,25.70239167786444],[-79.29979299792997,25.71758887329338],[-79.29259292592926,25.736163223262096],[-79.28179281792818,25.756426150500687],[-79.26019260192602,25.771623345929626],[-79.24939249392493,25.775000500469403]]],[[[-111.25731257312573,25.81214920040682],[-111.25371253712537,25.810460623136933],[-111.25371253712537,25.80201773678752],[-111.24651246512465,25.798640582247756],[-111.250112501125,25.795263427707994],[-111.24651246512465,25.790197695898343],[-111.24291242912429,25.78682054135858],[-111.24651246512465,25.783443386818817],[-111.24651246512465,25.776689077739277],[-111.24291242912429,25.771623345929626],[-111.24291242912429,25.76655761411999],[-111.24651246512465,25.7648690368501],[-111.25371253712537,25.773311923199515],[-111.25731257312573,25.78175480954893],[-111.25731257312573,25.79188627316823],[-111.25731257312573,25.80201773678752],[-111.2609126091261,25.810460623136933],[-111.25731257312573,25.81214920040682]]],[[[-81.38061380613806,25.820592086756236],[-81.37341373413734,25.815526354946584],[-81.36981369813698,25.810460623136933],[-81.3770137701377,25.80708346859717],[-81.38781387813877,25.805394891327282],[-81.3950139501395,25.80201773678752],[-81.39861398613986,25.796952004977868],[-81.39861398613986,25.795263427707994],[-81.39861398613986,25.79188627316823],[-81.40221402214021,25.793574850438105],[-81.40581405814058,25.796952004977868],[-81.41661416614166,25.808772045867045],[-81.42381423814238,25.81214920040682],[-81.43461434614346,25.805394891327282],[-81.43821438214381,25.803706314057408],[-81.43821438214381,25.825657818565873],[-81.44181441814418,25.832412127645412],[-81.44181441814418,25.8425435912647],[-81.4310143101431,25.850986477614114],[-81.41301413014129,25.8425435912647],[-81.40581405814058,25.837477859455063],[-81.38781387813877,25.823969241296],[-81.38061380613806,25.820592086756236]]],[[[-81.45261452614525,25.825657818565873],[-81.45981459814598,25.82228066402611],[-81.4670146701467,25.82903497310565],[-81.47061470614706,25.835789282185175],[-81.47421474214742,25.840855013994826],[-81.47781477814777,25.84760932307435],[-81.49581495814958,25.84929790034424],[-81.49941499414994,25.852675054884003],[-81.5030150301503,25.856052209423765],[-81.50661506615066,25.852675054884003],[-81.50661506615066,25.84760932307435],[-81.51021510215102,25.84423216853459],[-81.51021510215102,25.837477859455063],[-81.51381513815137,25.835789282185175],[-81.51381513815137,25.840855013994826],[-81.51381513815137,25.8425435912647],[-81.5210152101521,25.84929790034424],[-81.51741517415174,25.859429363963528],[-81.5030150301503,25.866183673043068],[-81.49581495814958,25.867872250312942],[-81.48861488614885,25.86956082758283],[-81.47421474214742,25.872937982122593],[-81.46341463414633,25.866183673043068],[-81.45621456214562,25.850986477614114],[-81.45621456214562,25.8425435912647],[-81.45261452614525,25.839166436724938],[-81.4490144901449,25.832412127645412],[-81.45261452614525,25.825657818565873]]],[[[-81.67581675816758,25.901643795710598],[-81.66501665016649,25.896578063900947],[-81.66141661416614,25.88644660028166],[-81.67221672216722,25.867872250312942],[-81.67581675816758,25.861117941233417],[-81.69021690216901,25.86280651850329],[-81.69741697416974,25.866183673043068],[-81.69741697416974,25.872937982122593],[-81.7010170101701,25.878003713932245],[-81.70461704617045,25.881380868472007],[-81.70821708217082,25.883069445741896],[-81.71181711817118,25.88982375482142],[-81.70821708217082,25.898266641170835],[-81.69741697416974,25.899955218440724],[-81.69021690216901,25.899955218440724],[-81.67581675816758,25.901643795710598]]],[[[-81.54261542615426,25.88982375482142],[-81.53541535415354,25.88475802301177],[-81.53181531815318,25.878003713932245],[-81.53541535415354,25.871249404852705],[-81.54621546215462,25.85436363215389],[-81.54981549815498,25.857740786693654],[-81.54621546215462,25.872937982122593],[-81.54621546215462,25.881380868472007],[-81.55341553415533,25.88475802301177],[-81.5570155701557,25.88982375482142],[-81.56061560615606,25.894889486631072],[-81.5570155701557,25.903332372980486],[-81.54621546215462,25.901643795710598],[-81.53901539015389,25.894889486631072],[-81.54261542615426,25.893200909361184],[-81.54261542615426,25.88982375482142]]],[[[54.5459454594546,25.92697245475884],[54.55314553145533,25.918529568409426],[54.55314553145533,25.899955218440724],[54.542345423454236,25.893200909361184],[54.52794527945281,25.896578063900947],[54.51354513545135,25.903332372980486],[54.509945099451016,25.913463836599774],[54.524345243452444,25.920218145679314],[54.5459454594546,25.92697245475884]]],[[[119.62739627396274,26.107650222636295],[119.63819638196384,26.08907587266758],[119.64539645396457,26.07894440904829],[119.63819638196384,26.070501522698876],[119.62019620196202,26.063747213619337],[119.56619566195661,26.080632986318165],[119.55539555395558,26.095830181747104],[119.57339573395734,26.11947026352547],[119.59859598595989,26.127913149874885],[119.61299612996129,26.121158840795346],[119.62739627396274,26.107650222636295]]],[[[-111.28611286112861,26.126224572604997],[-111.27531275312752,26.1363560362243],[-111.26811268112681,26.1363560362243],[-111.26451264512644,26.13466745895441],[-111.2609126091261,26.126224572604997],[-111.26451264512644,26.117781686255583],[-111.26811268112681,26.11440453171582],[-111.2609126091261,26.111027377176057],[-111.26451264512644,26.104273068096518],[-111.27531275312752,26.104273068096518],[-111.28251282512825,26.104273068096518],[-111.28611286112861,26.102584490826644],[-111.28251282512825,26.105961645366406],[-111.27891278912789,26.111027377176057],[-111.27891278912789,26.11440453171582],[-111.28611286112861,26.11947026352547],[-111.28611286112861,26.126224572604997]]],[[[127.37107371073711,26.2140305906389],[127.37107371073711,26.210653436099136],[127.37107371073711,26.203899127019596],[127.36747367473674,26.190390508860546],[127.36387363873638,26.17688189070148],[127.36027360273602,26.163373272542415],[127.35307353073534,26.153241808923127],[127.34587345873462,26.158307540732764],[127.34227342273425,26.170127581621955],[127.34227342273425,26.180259045241243],[127.34227342273425,26.185324777050894],[127.34587345873462,26.205587704289485],[127.35307353073534,26.21909632244855],[127.36387363873638,26.220784899718424],[127.37107371073711,26.2140305906389]]],[[[-77.24417244172442,26.47913722201048],[-77.23697236972369,26.474071490200828],[-77.23697236972369,26.470694335661065],[-77.23697236972369,26.46900575839119],[-77.23697236972369,26.470694335661065],[-77.24057240572405,26.470694335661065],[-77.24417244172442,26.46900575839119],[-77.24057240572405,26.467317181121302],[-77.24417244172442,26.465628603851428],[-77.24417244172442,26.453808562962237],[-77.24057240572405,26.44198852207306],[-77.24777247772478,26.438611367533298],[-77.25137251372513,26.438611367533298],[-77.2549725497255,26.438611367533298],[-77.26217262172621,26.44198852207306],[-77.26577265772657,26.453808562962237],[-77.2729727297273,26.460562872041777],[-77.27657276572765,26.465628603851428],[-77.27657276572765,26.470694335661065],[-77.2729727297273,26.46900575839119],[-77.26577265772657,26.472382912930954],[-77.26217262172621,26.477448644740605],[-77.2549725497255,26.480825799280368],[-77.24417244172442,26.47913722201048]]],[[[-77.85257852578525,26.600714785442037],[-77.8489784897849,26.605780517251688],[-77.83817838178382,26.614223403601102],[-77.83457834578346,26.61084624906134],[-77.84537845378453,26.600714785442037],[-77.84537845378453,26.595649053632386],[-77.84537845378453,26.590583321822734],[-77.85257852578525,26.58382901274321],[-77.85617856178561,26.572008971854032],[-77.86337863378634,26.56356608550462],[-77.86697866978669,26.56356608550462],[-77.87057870578705,26.56694324004438],[-77.87417874178742,26.570320394584144],[-77.8849788497885,26.585517590013097],[-77.89217892178921,26.59396047636251],[-77.89217892178921,26.602403362711925],[-77.88857888578886,26.605780517251688],[-77.85617856178561,26.612534826331213],[-77.85257852578525,26.607469094521562],[-77.86337863378634,26.597337630902274],[-77.86337863378634,26.59396047636251],[-77.85617856178561,26.597337630902274],[-77.85257852578525,26.600714785442037]]],[[[55.89595895958959,26.680077917126525],[55.90315903159032,26.668257876237348],[55.90315903159032,26.64461779445898],[55.88875888758889,26.62435486722039],[55.87075870758707,26.612534826331213],[55.85275852758528,26.620977712680627],[55.856358563585644,26.64461779445898],[55.867158671586736,26.66656929896746],[55.88515885158853,26.678389339856636],[55.89595895958959,26.680077917126525]]],[[[53.63873638736388,26.68852080347594],[53.64953649536497,26.683455071666287],[53.660336603366034,26.668257876237348],[53.645936459364606,26.65643783534817],[53.627936279362814,26.659814989887934],[53.60993609936099,26.66656929896746],[53.602736027360294,26.680077917126525],[53.60993609936099,26.690209380745813],[53.627936279362814,26.6918979580157],[53.63873638736388,26.68852080347594]]],[[[120.32580325803258,26.940118816688454],[120.31860318603185,26.948561703037868],[120.31860318603185,26.95869316665717],[120.32220322203221,26.962070321196933],[120.32580325803258,26.962070321196933],[120.33660336603367,26.970513207546347],[120.3438034380344,26.972201784816235],[120.35100351003513,26.970513207546347],[120.35460354603549,26.96882463027646],[120.35820358203586,26.965447475736696],[120.36180361803616,26.96375889846682],[120.36900369003689,26.955316012117407],[120.37260372603726,26.94349597122823],[120.37620376203762,26.940118816688454],[120.38340383403835,26.93843023941858],[120.38700387003871,26.935053084878817],[120.35100351003513,26.923233043989626],[120.32580325803258,26.940118816688454]]],[[[-112.0961209612096,27.22379979802875],[-112.11052110521105,27.237308416187815],[-112.0889208892089,27.259259920696294],[-112.06372063720637,27.240685570727578],[-112.04572045720457,27.217045488949225],[-112.0529205292053,27.193405407170857],[-112.06732067320672,27.178208211741918],[-112.0889208892089,27.18327394355157],[-112.09252092520924,27.20353687079016],[-112.0961209612096,27.22379979802875]]],[[[-111.8909189091891,27.429806224954447],[-111.90531905319052,27.43824911130386],[-111.90171901719017,27.450069152193038],[-111.880118801188,27.4534463067328],[-111.86211862118621,27.446691997653275],[-111.85491854918548,27.43824911130386],[-111.85851858518585,27.429806224954447],[-111.880118801188,27.42811764768456],[-111.8909189091891,27.429806224954447]]],[[[121.07461074610745,27.478774965781042],[121.08181081810818,27.47370923397139],[121.09261092610927,27.466954924891866],[121.10341103411037,27.460200615812326],[121.10341103411037,27.451757729462912],[121.09261092610927,27.4534463067328],[121.07461074610745,27.456823461272563],[121.06741067410672,27.45513488400269],[121.07101071010709,27.446691997653275],[121.07821078210782,27.43824911130386],[121.06741067410672,27.436560534033973],[121.06021060210605,27.443314843113498],[121.04941049410496,27.456823461272563],[121.0458104581046,27.465266347621977],[121.05301053010533,27.47370923397139],[121.07461074610745,27.478774965781042]]],[[[142.1060210602106,27.726995824453795],[142.10962109621096,27.730372978993557],[142.11322113221132,27.72530724718392],[142.1060210602106,27.716864360834506],[142.1060210602106,27.726995824453795]]],[[[121.18261182611826,27.86545916058418],[121.18981189811899,27.86377058331429],[121.18981189811899,27.855327696964878],[121.18981189811899,27.848573387885352],[121.18621186211863,27.84519623334559],[121.18621186211863,27.8435076560757],[121.1790117901179,27.841819078805827],[121.17541175411753,27.8435076560757],[121.17181171811717,27.841819078805827],[121.17541175411753,27.826621883376873],[121.17181171811717,27.81817899702746],[121.16101161011613,27.81817899702746],[121.14661146611468,27.824933306107],[121.13941139411395,27.824933306107],[121.12861128611286,27.819867574297348],[121.11781117811177,27.81817899702746],[121.09621096210964,27.81817899702746],[121.09621096210964,27.82831046064676],[121.11421114211146,27.8435076560757],[121.13221132211322,27.846884810615464],[121.15021150211504,27.84519623334559],[121.15741157411577,27.848573387885352],[121.1538115381154,27.851950542425115],[121.1538115381154,27.857016274234766],[121.15741157411577,27.85870485150464],[121.1682116821168,27.86039342877453],[121.18261182611826,27.86545916058418]]],[[[-115.20295202952029,27.892476396902296],[-115.19575195751958,27.890787819632422],[-115.1849518495185,27.882344933283008],[-115.17055170551706,27.873902046933594],[-115.16335163351633,27.868836315123943],[-115.15975159751598,27.86039342877453],[-115.16335163351633,27.851950542425115],[-115.1741517415174,27.848573387885352],[-115.17775177751777,27.85026196515524],[-115.18135181351813,27.868836315123943],[-115.19215192151921,27.88065635601312],[-115.21015210152102,27.884033510552882],[-115.2209522095221,27.889099242362533],[-115.21735217352173,27.895853551442073],[-115.20295202952029,27.892476396902296]]],[[[34.73134731347315,27.956642333157845],[34.73134731347315,27.919493633220426],[34.70614706147063,27.90767359233125],[34.68094680946811,27.914427901410775],[34.66294662946629,27.929625096839715],[34.68094680946811,27.958330910427733],[34.73134731347315,27.956642333157845]]],[[[121.04941049410496,27.951576601348194],[121.0458104581046,27.951576601348194],[121.03861038610387,27.958330910427733],[121.0458104581046,27.966773796777147],[121.06381063810642,27.981970992206087],[121.07101071010709,27.98365956947596],[121.07461074610745,27.981970992206087],[121.08181081810818,27.980282414936198],[121.1106111061111,27.98365956947596],[121.12861128611286,27.976905260396435],[121.13941139411395,27.96508521950726],[121.13941139411395,27.956642333157845],[121.1250112501125,27.951576601348194],[121.10341103411037,27.946510869538542],[121.09261092610927,27.94819944680843],[121.08181081810818,27.954953755887956],[121.07101071010709,27.956642333157845],[121.04941049410496,27.951576601348194]]],[[[-111.3869138691387,27.96846237404702],[-111.39411394113941,27.978593837666324],[-111.3869138691387,27.988725301285612],[-111.37251372513725,27.96846237404702],[-111.36531365313652,27.953265178618082],[-111.38331383313833,27.956642333157845],[-111.3869138691387,27.96846237404702]]],[[[-115.59535595355953,28.31799786891274],[-115.58815588155882,28.309554982563327],[-115.58095580955809,28.31462071437298],[-115.56655566555665,28.31293213710309],[-115.5629556295563,28.30786640529344],[-115.57375573755738,28.30786640529344],[-115.57735577355773,28.301112096213913],[-115.59175591755917,28.29773494167415],[-115.60255602556025,28.304489250753676],[-115.60255602556025,28.309554982563327],[-115.60255602556025,28.316309291642852],[-115.59535595355953,28.31799786891274]]],[[[-82.66582665826658,28.735076454573772],[-82.66582665826658,28.721567836414707],[-82.6730267302673,28.71481352733518],[-82.67662676626766,28.71481352733518],[-82.68022680226802,28.716502104605055],[-82.68022680226802,28.721567836414707],[-82.69462694626947,28.72494499095447],[-82.69462694626947,28.728322145494232],[-82.6910269102691,28.728322145494232],[-82.68742687426874,28.728322145494232],[-82.68382683826837,28.73001072276412],[-82.6910269102691,28.73169930003401],[-82.68742687426874,28.735076454573772],[-82.68382683826837,28.738453609113535],[-82.67662676626766,28.736765031843646],[-82.6730267302673,28.736765031843646],[-82.66582665826658,28.735076454573772]]],[[[-82.69462694626947,28.763782268161776],[-82.6910269102691,28.768847999971427],[-82.6910269102691,28.773913731781064],[-82.69462694626947,28.775602309050953],[-82.69822698226982,28.78235661813048],[-82.69462694626947,28.78742234994013],[-82.68742687426874,28.78742234994013],[-82.68022680226802,28.784045195400367],[-82.6730267302673,28.77729088632084],[-82.6730267302673,28.76715942270154],[-82.68382683826837,28.760405113622014],[-82.6910269102691,28.760405113622014],[-82.69822698226982,28.762093690891888],[-82.69462694626947,28.763782268161776]]],[[[-90.65070650706507,29.067726176740663],[-90.6471064710647,29.069414754010538],[-90.64350643506435,29.072791908550315],[-90.64350643506435,29.071103331280426],[-90.65790657906578,29.062660444931012],[-90.67230672306722,29.05759471312136],[-90.74790747907478,29.040708940422533],[-90.76590765907659,29.040708940422533],[-90.76590765907659,29.047463249502073],[-90.74070740707407,29.05252898131171],[-90.73350733507334,29.05759471312136],[-90.71550715507155,29.066037599470775],[-90.70830708307082,29.066037599470775],[-90.70470704707047,29.060971867661124],[-90.69750697506974,29.05928329039125],[-90.6831068310683,29.060971867661124],[-90.67590675906759,29.0643490222009],[-90.67230672306722,29.067726176740663],[-90.65790657906578,29.066037599470775],[-90.65070650706507,29.067726176740663]]],[[[-90.41670416704167,29.055906135851487],[-90.41310413104131,29.05252898131171],[-90.41310413104131,29.049151826771947],[-90.42030420304202,29.049151826771947],[-90.46350463504635,29.05759471312136],[-90.51390513905139,29.07448048582019],[-90.51030510305102,29.07954621762984],[-90.45270452704527,29.069414754010538],[-90.42750427504275,29.060971867661124],[-90.41670416704167,29.055906135851487]]],[[[-113.51813518135181,29.09474341305878],[-113.5109351093511,29.09474341305878],[-113.50373503735037,29.091366258519017],[-113.50373503735037,29.087989103979254],[-113.50733507335073,29.082923372169603],[-113.50733507335073,29.07954621762984],[-113.50373503735037,29.07448048582019],[-113.50733507335073,29.071103331280426],[-113.50733507335073,29.062660444931012],[-113.50013500135002,29.055906135851487],[-113.50013500135002,29.050840404041836],[-113.49653496534965,29.049151826771947],[-113.49653496534965,29.04239751769242],[-113.49293492934929,29.03902036315266],[-113.49293492934929,29.035643208612882],[-113.50013500135002,29.035643208612882],[-113.50733507335073,29.03902036315266],[-113.50373503735037,29.044086094962296],[-113.50733507335073,29.049151826771947],[-113.51453514535145,29.05252898131171],[-113.5109351093511,29.05759471312136],[-113.5109351093511,29.060971867661124],[-113.51453514535145,29.062660444931012],[-113.51453514535145,29.069414754010538],[-113.51453514535145,29.076169063090077],[-113.52173521735217,29.07954621762984],[-113.52173521735217,29.086300526709365],[-113.52893528935289,29.093054835788905],[-113.51813518135181,29.09474341305878]]],[[[121.86301863018633,29.130203535726324],[121.86301863018633,29.123449226646784],[121.8666186661867,29.11500634029737],[121.85941859418597,29.106563453947956],[121.85221852218524,29.098120567598542],[121.84141841418415,29.09474341305878],[121.83781837818378,29.09980914486843],[121.82701827018269,29.108252031217845],[121.81621816218166,29.11500634029737],[121.8018180181802,29.118383494837147],[121.79101791017911,29.118383494837147],[121.78741787417874,29.12007207210702],[121.78381783817838,29.125137803916672],[121.78381783817838,29.133580690266086],[121.78741787417874,29.143712153885375],[121.79101791017911,29.150466462964914],[121.79461794617947,29.148777885695026],[121.84501845018451,29.1420235766155],[121.8558185581856,29.133580690266086],[121.86301863018633,29.130203535726324]]],[[[-83.03663036630365,29.145400731155263],[-83.0330303303033,29.1420235766155],[-83.02943029430294,29.140334999345612],[-83.03663036630365,29.13695784480585],[-83.0510305103051,29.131892112996198],[-83.05823058230582,29.13695784480585],[-83.05823058230582,29.150466462964914],[-83.0510305103051,29.155532194774565],[-83.04383043830438,29.150466462964914],[-83.03663036630365,29.145400731155263]]],[[[-90.4491044910449,29.234895326459053],[-90.45270452704527,29.22476386283975],[-90.45270452704527,29.238272480998816],[-90.44550445504454,29.26022398550728],[-90.43470434704346,29.265289717316932],[-90.43470434704346,29.255158253697644],[-90.44190441904419,29.248403944618104],[-90.44550445504454,29.24164963553858],[-90.4491044910449,29.234895326459053]]],[[[-89.92709927099271,29.2889297990953],[-89.92349923499235,29.2889297990953],[-89.91269912699127,29.290618376365174],[-89.91269912699127,29.285552644555523],[-89.93069930699306,29.27710975820611],[-89.93789937899379,29.27710975820611],[-89.93429934299343,29.28386406728565],[-89.92709927099271,29.2889297990953]]],[[[-89.99549995499954,29.456098948813676],[-89.99189991899918,29.457787526083564],[-89.99189991899918,29.456098948813676],[-89.99189991899918,29.44934463973415],[-89.99549995499954,29.4442789079245],[-90.00270002700027,29.445967485194387],[-90.0171001710017,29.4442789079245],[-90.02070020700206,29.44765606246426],[-90.02430024300243,29.456098948813676],[-90.03150031500314,29.462853257893215],[-90.03870038700387,29.46454183516309],[-90.04590045900459,29.461164680623327],[-90.04950049500495,29.461164680623327],[-90.05310053100531,29.462853257893215],[-90.05670056700566,29.466230412432978],[-90.06030060300603,29.472984721512503],[-90.06030060300603,29.478050453322155],[-90.06390063900639,29.478050453322155],[-90.07830078300783,29.476361876052266],[-90.09270092700926,29.472984721512503],[-90.10350103501035,29.478050453322155],[-90.11790117901178,29.49662480329087],[-90.12150121501215,29.505067689640285],[-90.11430114301143,29.510133421449922],[-90.10350103501035,29.51182199871981],[-90.09630096300963,29.510133421449922],[-90.08190081900818,29.51182199871981],[-90.06030060300603,29.505067689640285],[-90.05310053100531,29.500001957830634],[-90.04950049500495,29.49662480329087],[-90.04230042300422,29.493247648751094],[-90.03150031500314,29.49155907148122],[-90.02070020700206,29.48649333967157],[-90.01350013500135,29.478050453322155],[-90.0171001710017,29.474673298782392],[-90.0279002790028,29.474673298782392],[-90.0279002790028,29.47129614424263],[-90.0171001710017,29.461164680623327],[-90.00990009900099,29.457787526083564],[-90.00270002700027,29.459476103353452],[-89.99909999099991,29.461164680623327],[-89.99909999099991,29.466230412432978],[-89.99549995499954,29.46454183516309],[-89.99549995499954,29.459476103353452],[-89.99549995499954,29.456098948813676]]],[[[-89.05589055890559,29.562479316816294],[-89.05589055890559,29.564167894086168],[-89.04869048690486,29.564167894086168],[-89.05229052290522,29.55910216227653],[-89.08469084690847,29.528707771418638],[-89.09189091890919,29.523642039608987],[-89.0990909909099,29.520264885069224],[-89.05589055890559,29.562479316816294]]],[[[-88.98028980289803,29.633399562151368],[-88.96948969489695,29.640153871230893],[-88.96588965889659,29.643531025770656],[-88.96948969489695,29.638465293961005],[-88.97668976689766,29.63171098488148],[-88.98028980289803,29.633399562151368]]],[[[122.3058230582306,29.81745448456857],[122.31302313023133,29.795502980060107],[122.31302313023133,29.78368293917093],[122.30942309423097,29.77692863009139],[122.29502295022951,29.77861720736128],[122.27342273422738,29.792125825520344],[122.26622266222665,29.79719155732998],[122.2518225182252,29.805634443679395],[122.23742237422374,29.82420879364811],[122.23382233822338,29.827585948187874],[122.23022230222301,29.836028834537288],[122.24822248222483,29.84616029815659],[122.26982269822702,29.84616029815659],[122.28422284222842,29.842783143616813],[122.31302313023133,29.829274525457762],[122.30942309423097,29.82420879364811],[122.3058230582306,29.81745448456857]]],[[[121.97101971019714,29.94409777980978],[121.98541985419854,29.930589161650715],[121.99261992619927,29.91876912076154],[121.99261992619927,29.90863765714225],[121.97461974619745,29.900194770792837],[121.94581945819459,29.9035719253326],[121.9350193501935,29.9221462753013],[121.94221942219423,29.937343470730255],[121.95301953019532,29.947474934349543],[121.96021960219605,29.952540666159194],[121.96741967419678,29.952540666159194],[121.97101971019714,29.947474934349543],[121.97101971019714,29.94409777980978]]],[[[-114.41814418144182,29.98631221155685],[-114.40014400144001,29.98631221155685],[-114.40014400144001,29.969426438858022],[-114.39654396543965,29.96098355250861],[-114.40734407344073,29.95929497523872],[-114.42174421744217,29.96604928431826],[-114.41454414544145,29.976180747937548],[-114.41814418144182,29.98631221155685]]],[[[122.34542345423455,30.241287379309142],[122.32742327423273,30.239598802039254],[122.3166231662317,30.239598802039254],[122.3058230582306,30.239598802039254],[122.29502295022951,30.23622164749949],[122.28422284222842,30.234533070229602],[122.27702277022769,30.23622164749949],[122.27702277022769,30.241287379309142],[122.28782287822878,30.248041688388668],[122.30222302223024,30.25141884292843],[122.31302313023133,30.259861729277844],[122.32022320223206,30.268304615627258],[122.32382323823242,30.27168177016702],[122.33102331023309,30.27337034743691],[122.34182341823418,30.27337034743691],[122.38142381423813,30.276747501976672],[122.39942399423995,30.275058924706784],[122.40662406624068,30.26661603835737],[122.41022410224105,30.254795997468193],[122.41022410224105,30.244664533848905],[122.39582395823959,30.239598802039254],[122.3850238502385,30.249730265658542],[122.3850238502385,30.261550306547733],[122.38142381423813,30.263238883817607],[122.37422374223746,30.261550306547733],[122.35622356223564,30.248041688388668],[122.34542345423455,30.241287379309142]]],[[[-116.11376113761138,30.49626254706142],[-116.11016110161101,30.494573969791546],[-116.1029610296103,30.487819660712006],[-116.1029610296103,30.482753928902355],[-116.11376113761138,30.482753928902355],[-116.12456124561245,30.484442506172243],[-116.12456124561245,30.49119681525177],[-116.11376113761138,30.49626254706142]]],[[[122.52902529025289,30.72084332395582],[122.52542525425253,30.714089014876294],[122.53262532625325,30.70395755125699],[122.52542525425253,30.702268973987117],[122.4930249302493,30.702268973987117],[122.48582485824858,30.702268973987117],[122.47502475024748,30.702268973987117],[122.46782467824681,30.69889181944734],[122.46422464224645,30.695514664907577],[122.46062460624609,30.693826087637703],[122.45702457024572,30.693826087637703],[122.44622446224463,30.697203242177466],[122.43182431824317,30.697203242177466],[122.42822428224281,30.70395755125699],[122.43182431824317,30.714089014876294],[122.43542435424354,30.72759763303536],[122.42822428224281,30.737729096654647],[122.42822428224281,30.742794828464298],[122.4390243902439,30.74110625119441],[122.45702457024572,30.73097478757512],[122.47142471424718,30.717466169416056],[122.48582485824858,30.714089014876294],[122.49662496624967,30.717466169416056],[122.50022500225003,30.719154746685945],[122.51102511025113,30.72084332395582],[122.52542525425253,30.72422047849558],[122.52902529025289,30.72084332395582]]],[[[-81.16101161011609,31.6698237496299],[-81.15021150211501,31.698529563217903],[-81.13581135811357,31.698529563217903],[-81.13221132211322,31.693463831408252],[-81.13221132211322,31.6799552132492],[-81.13221132211322,31.656315131470834],[-81.12861128611286,31.629297895152718],[-81.13941139411394,31.61241212245389],[-81.15021150211501,31.587083463405648],[-81.16101161011609,31.566820536167057],[-81.17541175411753,31.57019769070682],[-81.17181171811718,31.587083463405648],[-81.16821168211682,31.600592081564713],[-81.1790117901179,31.61241212245389],[-81.1790117901179,31.636052204232243],[-81.17181171811718,31.65293797693107],[-81.16101161011609,31.6698237496299]]],[[[129.93429934299343,31.867387290206167],[129.9270992709927,31.864010135666405],[129.9270992709927,31.858944403856754],[129.93069930699306,31.853878672047117],[129.9270992709927,31.847124362967577],[129.9270992709927,31.84037005388805],[129.93069930699306,31.83699289934829],[129.93069930699306,31.833615744808526],[129.93069930699306,31.826861435728986],[129.92349923499233,31.82010712664946],[129.9126991269913,31.82010712664946],[129.9018990189902,31.818418549379572],[129.89109891098911,31.80997566303016],[129.87669876698766,31.811664240300047],[129.869498694987,31.818418549379572],[129.86229862298626,31.82010712664946],[129.8586985869859,31.823484281189224],[129.8586985869859,31.828550012998875],[129.85509855098553,31.8353043220784],[129.8478984789848,31.843747208427814],[129.8478984789848,31.850501517507354],[129.85509855098553,31.85556724931699],[129.85149851498517,31.85725582658688],[129.84069840698407,31.853878672047117],[129.83349833498335,31.843747208427814],[129.82269822698225,31.84205863115794],[129.81909819098195,31.845435785697703],[129.81909819098195,31.852190094777228],[129.82269822698225,31.86232155839653],[129.83349833498335,31.874141599285707],[129.84429844298444,31.880895908365233],[129.86589865898662,31.87583017655558],[129.9018990189902,31.848812940237465],[129.90909909099094,31.845435785697703],[129.9126991269913,31.852190094777228],[129.90909909099094,31.86232155839653],[129.9126991269913,31.867387290206167],[129.9270992709927,31.869075867476056],[129.93429934299343,31.867387290206167]]],[[[130.2439024390244,32.301351648566026],[130.26190261902622,32.2945973394865],[130.26550265502658,32.28784303040696],[130.26190261902622,32.281088721327436],[130.2547025470255,32.27095725770813],[130.2439024390244,32.26251437135872],[130.2331023310233,32.25913721681896],[130.22230222302227,32.25744863954908],[130.21510215102154,32.25238290773943],[130.21150211502118,32.255760062279194],[130.21150211502118,32.265891525898496],[130.21150211502118,32.276022989517784],[130.2187021870219,32.28615445313709],[130.22230222302227,32.29122018494674],[130.22950229502294,32.29290876221661],[130.22950229502294,32.2945973394865],[130.2331023310233,32.29797449402626],[130.2439024390244,32.301351648566026]]],[[[-117.2549725497255,32.421240634727695],[-117.24777247772477,32.41786348018793],[-117.24417244172442,32.41448632564817],[-117.24057240572405,32.40435486202887],[-117.24057240572405,32.39760055294934],[-117.24057240572405,32.38915766659993],[-117.24417244172442,32.38915766659993],[-117.24777247772477,32.39928913021923],[-117.24777247772477,32.407732016568644],[-117.25137251372513,32.41110917110841],[-117.2549725497255,32.421240634727695]]],[[[130.44550445504456,32.5968526707955],[130.45270452704528,32.590098361715974],[130.45270452704528,32.57996689809667],[130.45270452704528,32.563081125397844],[130.44550445504456,32.552949661778555],[130.4311043110431,32.54957250723878],[130.42390423904243,32.546195352699016],[130.42750427504274,32.5377524663496],[130.42030420304206,32.541129620889365],[130.40950409504097,32.54957250723878],[130.4059040590406,32.56139254812797],[130.41310413104134,32.573212589017146],[130.40950409504097,32.58165547536656],[130.39870398703988,32.5867212071762],[130.39870398703988,32.59347551625574],[130.41310413104134,32.61373844349433],[130.4167041670417,32.61373844349433],[130.4167041670417,32.610361288954564],[130.42030420304206,32.61204986622444],[130.42750427504274,32.61711559803409],[130.43830438304383,32.62049275257385],[130.44550445504456,32.61711559803409],[130.45270452704528,32.610361288954564],[130.44910449104492,32.603606979875025],[130.44550445504456,32.5968526707955]]],[[[132.56232562325624,32.74207031600541],[132.56952569525697,32.733627429655996],[132.57312573125733,32.72518454330658],[132.56952569525697,32.71674165695717],[132.56232562325624,32.70998734787764],[132.5479254792548,32.70492161606799],[132.54432544325442,32.708298770607755],[132.54072540725406,32.72180738876682],[132.54072540725406,32.733627429655996],[132.54432544325442,32.74544747054517],[132.5479254792548,32.750513202354824],[132.55512555125551,32.74713604781506],[132.55872558725588,32.74544747054517],[132.56232562325624,32.74207031600541]]],[[[128.90108901089013,32.818056293150136],[128.90108901089013,32.81467913861037],[128.90828908289086,32.80117052045131],[128.90828908289086,32.79441621137178],[128.8938889388894,32.78090759321272],[128.8830888308883,32.765710397783764],[128.87588875888758,32.76402182051389],[128.8650886508865,32.765710397783764],[128.84708847088473,32.77415328413318],[128.839888398884,32.777530438672954],[128.83628836288364,32.78766190229224],[128.83628836288364,32.81974487042001],[128.83628836288364,32.82649917949955],[128.83628836288364,32.833253488579075],[128.84708847088473,32.83494206584896],[128.85788857888582,32.82987633403931],[128.8650886508865,32.818056293150136],[128.8650886508865,32.80792482953083],[128.86868868688686,32.80117052045131],[128.87228872288722,32.79948194318142],[128.87588875888758,32.80117052045131],[128.87588875888758,32.80454767499107],[128.87228872288722,32.80792482953083],[128.87228872288722,32.81636771588025],[128.8650886508865,32.82481060222966],[128.86148861488618,32.83494206584896],[128.86868868688686,32.838319220388726],[128.8938889388894,32.82312202495979],[128.90108901089013,32.818056293150136]]],[[[128.95148951489517,32.873779343056256],[128.95508955089554,32.86364787943697],[128.9586895868959,32.84169637492849],[128.95508955089554,32.82987633403931],[128.9478894788948,32.828187756769424],[128.94428944289444,32.82312202495979],[128.9478894788948,32.81974487042001],[128.9478894788948,32.812990561340484],[128.94428944289444,32.80454767499107],[128.94068940689408,32.80454767499107],[128.93708937089372,32.812990561340484],[128.93348933489335,32.81636771588025],[128.92268922689226,32.818056293150136],[128.9190891908919,32.8214334476899],[128.92268922689226,32.82481060222966],[128.92268922689226,32.82987633403931],[128.9190891908919,32.83494206584896],[128.91548915489153,32.838319220388726],[128.90828908289086,32.84169637492849],[128.89748897488977,32.85689357035743],[128.89028890288904,32.85858214762732],[128.8830888308883,32.855204993087554],[128.87948879488795,32.86195930216708],[128.89028890288904,32.87040218851649],[128.90828908289086,32.86702503397673],[128.92268922689226,32.85182783854779],[128.929889298893,32.8501392612779],[128.92628926289262,32.86195930216708],[128.929889298893,32.86533645670684],[128.93708937089372,32.860270724897205],[128.94068940689408,32.86533645670684],[128.94428944289444,32.875467920326145],[128.9478894788948,32.880533652135796],[128.95148951489517,32.87715649759603],[128.95148951489517,32.873779343056256]]],[[[129.1350913509135,33.2993008150667],[129.14229142291424,33.28410361963776],[129.14949149491497,33.27734931055822],[129.14949149491497,33.26890642420881],[129.1350913509135,33.25877496058952],[129.12789127891278,33.24695491970034],[129.12069120691206,33.24695491970034],[129.1026910269103,33.24864349697022],[129.0918909189092,33.25539780604976],[129.08469084690847,33.260463537859394],[129.0810908109081,33.260463537859394],[129.07389073890738,33.260463537859394],[129.07749077490774,33.26890642420881],[129.08829088290884,33.28410361963776],[129.1026910269103,33.28916935144741],[129.11349113491138,33.29085792871729],[129.12789127891278,33.30098939233659],[129.1350913509135,33.2993008150667]]],[[[129.55629556295565,33.49348720110321],[129.57429574295742,33.496864355642984],[129.57789577895778,33.48842146929357],[129.56709567095675,33.47829000567427],[129.5526955269553,33.473224273864616],[129.53829538295383,33.474912851134505],[129.52749527495274,33.479978582944156],[129.520295202952,33.47829000567427],[129.5166951669517,33.473224273864616],[129.51309513095134,33.473224273864616],[129.50229502295025,33.473224273864616],[129.5058950589506,33.48335573748392],[129.52389523895238,33.496864355642984],[129.5418954189542,33.50699581926227],[129.5526955269553,33.50699581926227],[129.55629556295565,33.50024151018275],[129.55629556295565,33.49348720110321]]],[[[-118.23418234182341,33.76365956428444],[-118.2269822698227,33.76534814155433],[-118.22338223382233,33.75690525520491],[-118.2449824498245,33.75015094612539],[-118.23778237782378,33.72819944161691],[-118.24858248582485,33.72313370980726],[-118.2449824498245,33.71469082345784],[-118.25938259382593,33.71637940072773],[-118.2629826298263,33.724822287077146],[-118.25938259382593,33.7298880188868],[-118.2449824498245,33.734953750696434],[-118.24858248582485,33.75015094612539],[-118.25218252182522,33.74677379158561],[-118.25218252182522,33.73664232796632],[-118.25938259382593,33.73326517342656],[-118.27018270182703,33.72819944161691],[-118.27018270182703,33.740019482506085],[-118.26658266582666,33.74677379158561],[-118.25578255782557,33.7585938324748],[-118.24858248582485,33.75690525520491],[-118.2449824498245,33.760282409744676],[-118.23418234182341,33.76365956428444]]],[[[132.64152641526414,34.01356900022708],[132.6451264512645,34.011880422957205],[132.6451264512645,34.00006038206803],[132.64152641526414,33.989928918448726],[132.64152641526414,33.9831746093692],[132.63792637926383,33.97979745482942],[132.63432634326347,33.97473172301979],[132.63432634326347,33.964600259400484],[132.619926199262,33.954468795781196],[132.6019260192602,33.949403063971545],[132.5875258752588,33.95615737305107],[132.5875258752588,33.969665991210135],[132.59472594725946,33.98148603209931],[132.60552605526055,33.989928918448726],[132.61272612726128,33.99330607298849],[132.61632616326165,33.99499465025838],[132.62352623526237,33.99837180479814],[132.63792637926383,34.00850326841744],[132.64152641526414,34.01356900022708]]],[[[125.12825128251285,34.04902912289462],[125.12105121051212,34.0507177001645],[125.1030510305103,34.06591489559345],[125.09225092250921,34.0709806274031],[125.0886508865089,34.0794235137525],[125.09585095850957,34.089554977371805],[125.1030510305103,34.09630928645133],[125.1138511385114,34.09293213191157],[125.12105121051212,34.08448924556215],[125.13545135451358,34.05916058651391],[125.13905139051394,34.0507177001645],[125.13545135451358,34.047340545624735],[125.12825128251285,34.047340545624735],[125.12825128251285,34.04902912289462]]],[[[126.6006660066601,34.16891810905629],[126.60786607866078,34.16554095451653],[126.6150661506615,34.157098068167116],[126.6150661506615,34.152032336357465],[126.60786607866078,34.15540949089723],[126.60426604266041,34.15540949089723],[126.60426604266041,34.152032336357465],[126.6006660066601,34.15372091362735],[126.58986589865901,34.157098068167116],[126.58266582665829,34.157098068167116],[126.57546575465756,34.15372091362735],[126.5718657186572,34.14696660454781],[126.5610656106561,34.14190087273816],[126.55026550265507,34.13345798638875],[126.53586535865361,34.12670367730922],[126.51786517865179,34.12670367730922],[126.5070650706507,34.1385237181984],[126.5070650706507,34.15372091362735],[126.51426514265142,34.16891810905629],[126.53226532265325,34.179049572675595],[126.5466654666547,34.179049572675595],[126.56826568265683,34.16891810905629],[126.57546575465756,34.167229531786404],[126.58266582665829,34.17060668632618],[126.59346593465938,34.17060668632618],[126.6006660066601,34.16891810905629]]],[[[133.0951309513095,34.173983840865944],[133.09873098730986,34.17567241813582],[133.10233102331023,34.17060668632618],[133.0951309513095,34.16047522270688],[133.04473044730446,34.11826079095981],[133.0267302673027,34.111506481880284],[133.0159301593016,34.11826079095981],[133.0159301593016,34.136835140928525],[133.01953019530197,34.150343759087576],[133.0267302673027,34.15372091362735],[133.03033030330306,34.15372091362735],[133.0375303753038,34.15372091362735],[133.03393033930342,34.16216379997677],[133.0267302673027,34.17567241813582],[133.03393033930342,34.18918103629488],[133.05553055530555,34.194246768104534],[133.069930699307,34.187492459024995],[133.07713077130774,34.18073814994547],[133.08433084330846,34.17567241813582],[133.0951309513095,34.173983840865944]]],[[[126.67266672666727,34.15372091362735],[126.67626676266764,34.152032336357465],[126.679866798668,34.14696660454781],[126.67626676266764,34.14358945000805],[126.67266672666727,34.14358945000805],[126.66906669066691,34.136835140928525],[126.66906669066691,34.12670367730922],[126.66546665466655,34.11826079095981],[126.65466654666545,34.116572213689935],[126.65106651066515,34.1199493682297],[126.64746647466478,34.12332652276946],[126.64386643866442,34.12670367730922],[126.64026640266405,34.12839225457911],[126.63666636666369,34.14190087273816],[126.64386643866442,34.16385237724664],[126.64386643866442,34.17736099540571],[126.63666636666369,34.18242672721536],[126.63666636666369,34.187492459024995],[126.64386643866442,34.194246768104534],[126.64386643866442,34.1976239226443],[126.65466654666545,34.1976239226443],[126.66906669066691,34.18918103629488],[126.67266672666727,34.18073814994547],[126.66186661866618,34.173983840865944],[126.66186661866618,34.16554095451653],[126.67266672666727,34.15372091362735]]],[[[132.7387273872739,34.1976239226443],[132.75672756727568,34.18918103629488],[132.76032760327604,34.17736099540571],[132.75672756727568,34.167229531786404],[132.74592745927458,34.16216379997677],[132.7387273872739,34.16047522270688],[132.7387273872739,34.16216379997677],[132.7387273872739,34.16891810905629],[132.73152731527318,34.17060668632618],[132.72432724327246,34.17060668632618],[132.6991269912699,34.18073814994547],[132.68832688326887,34.18918103629488],[132.69552695526954,34.199312499914186],[132.709927099271,34.20268965445395],[132.72792727927282,34.199312499914186],[132.7387273872739,34.1976239226443]]],[[[126.91026910269102,34.1976239226443],[126.91746917469175,34.19086961356477],[126.92466924669247,34.18411530448523],[126.92106921069211,34.172295263596055],[126.92106921069211,34.167229531786404],[126.91386913869138,34.157098068167116],[126.90306903069029,34.152032336357465],[126.88866888668889,34.152032336357465],[126.87426874268743,34.15540949089723],[126.8670686706867,34.16216379997677],[126.85986859868598,34.16216379997677],[126.85626856268561,34.157098068167116],[126.85266852668525,34.15878664543699],[126.84906849068494,34.173983840865944],[126.85626856268561,34.18411530448523],[126.85626856268561,34.194246768104534],[126.85986859868598,34.20268965445395],[126.8670686706867,34.2077553862636],[126.88146881468816,34.21282111807324],[126.89946899468998,34.209443963533474],[126.91026910269102,34.1976239226443]]],[[[126.61146611466114,34.21788684988289],[126.6150661506615,34.21282111807324],[126.61866618666187,34.20437823172382],[126.61146611466114,34.199312499914186],[126.60786607866078,34.187492459024995],[126.59346593465938,34.187492459024995],[126.58266582665829,34.18580388175512],[126.58986589865901,34.179049572675595],[126.58266582665829,34.17567241813582],[126.56826568265683,34.179049572675595],[126.5610656106561,34.18580388175512],[126.55746557465574,34.18918103629488],[126.55386553865537,34.19086961356477],[126.55026550265507,34.19086961356477],[126.55026550265507,34.194246768104534],[126.55386553865537,34.20606680899371],[126.55746557465574,34.21113254080336],[126.55746557465574,34.214509695343125],[126.55386553865537,34.21619827261301],[126.55746557465574,34.21788684988289],[126.5610656106561,34.219575427152776],[126.5610656106561,34.22295258169254],[126.5610656106561,34.22464115896243],[126.55746557465574,34.23139546804195],[126.5610656106561,34.234772622581715],[126.56826568265683,34.23308404531184],[126.57546575465756,34.229706890772064],[126.59706597065974,34.2263297362323],[126.60786607866078,34.22126400442265],[126.61146611466114,34.21788684988289]]],[[[132.92232922329225,34.276987054328785],[132.92952929529298,34.28374136340831],[132.93312933129334,34.2752984770589],[132.92952929529298,34.25165839528054],[132.9187291872919,34.23308404531184],[132.91512915129152,34.22126400442265],[132.90432904329043,34.21282111807324],[132.8827288272883,34.209443963533474],[132.86472864728648,34.2077553862636],[132.85032850328503,34.214509695343125],[132.8431284312843,34.22801831350219],[132.84672846728466,34.23983835439137],[132.8539285392854,34.24490408620102],[132.85752857528576,34.24659266347089],[132.88632886328867,34.256724127090195],[132.8971289712897,34.256724127090195],[132.9079290792908,34.26347843616972],[132.92232922329225,34.276987054328785]]],[[[132.3391233912339,34.3040042906469],[132.34272342723426,34.2955614042975],[132.34632346323463,34.28711851794809],[132.34632346323463,34.282052786138436],[132.3247232472325,34.26516701343961],[132.29592295922959,34.24321550893113],[132.27792277922782,34.23814977712148],[132.26712267122673,34.24490408620102],[132.26712267122673,34.25334697255043],[132.28512285122855,34.278675631598674],[132.29952299522995,34.292184249757725],[132.3139231392314,34.30062713610714],[132.32832328323286,34.30569286791679],[132.3391233912339,34.3040042906469]]],[[[126.08946089460898,34.30738144518668],[126.08946089460898,34.297249981567376],[126.08946089460898,34.28880709521796],[126.08586085860861,34.28374136340831],[126.07506075060752,34.282052786138436],[126.06786067860679,34.278675631598674],[126.06426064260643,34.28036420886855],[126.06066060660606,34.2854299406782],[126.0570605706057,34.2854299406782],[126.0570605706057,34.28036420886855],[126.04986049860497,34.28036420886855],[126.02826028260284,34.28711851794809],[126.02106021060212,34.2955614042975],[126.02106021060212,34.30062713610714],[126.02466024660248,34.30569286791679],[126.02466024660248,34.31075859972644],[126.03186031860321,34.3141357542662],[126.06786067860679,34.30907002245655],[126.08226082260825,34.31075859972644],[126.08946089460898,34.30738144518668]]],[[[126.85266852668525,34.30907002245655],[126.84906849068494,34.30569286791679],[126.84186841868421,34.3040042906469],[126.83466834668349,34.30907002245655],[126.83466834668349,34.317512908805966],[126.82746827468276,34.32257864061562],[126.82026820268203,34.32595579515538],[126.80946809468094,34.324267217885506],[126.7986679866799,34.32089006334573],[126.78786787867881,34.32089006334573],[126.78426784267845,34.32257864061562],[126.78066780667808,34.324267217885506],[126.7590675906759,34.33271010423492],[126.7590675906759,34.33608725877468],[126.76626766267663,34.33777583604456],[126.77706777067772,34.339464413314445],[126.78066780667808,34.341152990584334],[126.78426784267845,34.34284156785421],[126.79506795067954,34.34284156785421],[126.80226802268021,34.339464413314445],[126.8130681306813,34.34284156785421],[126.82746827468276,34.35128445420362],[126.83826838268385,34.35297303147351],[126.84186841868421,34.34959587693375],[126.84906849068494,34.34790729966386],[126.85626856268561,34.34790729966386],[126.85986859868598,34.34959587693375],[126.87066870668707,34.34790729966386],[126.88506885068853,34.34621872239397],[126.89226892268925,34.341152990584334],[126.89226892268925,34.334398681504794],[126.88506885068853,34.32764437242527],[126.88506885068853,34.324267217885506],[126.88146881468816,34.317512908805966],[126.8778687786878,34.312447176996315],[126.8670686706867,34.3141357542662],[126.85986859868598,34.312447176996315],[126.85266852668525,34.30907002245655]]],[[[127.09027090270905,34.3445301451241],[127.09387093870941,34.34284156785421],[127.09747097470978,34.33777583604456],[127.09027090270905,34.33608725877468],[127.08307083070832,34.339464413314445],[127.07227072270723,34.34284156785421],[127.0650706507065,34.339464413314445],[127.06867068670687,34.33777583604456],[127.07227072270723,34.334398681504794],[127.0650706507065,34.32764437242527],[127.0506705067051,34.317512908805966],[127.03987039870401,34.312447176996315],[127.03627036270365,34.32089006334573],[127.04347043470437,34.32764437242527],[127.0506705067051,34.33102152696503],[127.04707047070474,34.33608725877468],[127.02547025470255,34.339464413314445],[127.02547025470255,34.34284156785421],[127.02547025470255,34.34790729966386],[127.01827018270183,34.35128445420362],[127.00027000270006,34.35297303147351],[126.99306993069933,34.354661608743385],[126.99306993069933,34.35635018601327],[126.99306993069933,34.35803876328315],[127.00027000270006,34.359727340553036],[127.00747007470073,34.3631044950928],[127.01467014670146,34.37154738144221],[127.02547025470255,34.37830169052175],[127.02547025470255,34.381678845061515],[127.02907029070292,34.37999026779163],[127.03627036270365,34.374924535981975],[127.04347043470437,34.36648164963256],[127.04707047070474,34.35803876328315],[127.05427054270541,34.354661608743385],[127.06867068670687,34.35803876328315],[127.0758707587076,34.359727340553036],[127.08307083070832,34.35635018601327],[127.08667086670869,34.35128445420362],[127.09027090270905,34.3445301451241]]],[[[133.71433714337144,34.396876040490454],[133.72513725137253,34.38505599960128],[133.72513725137253,34.37154738144221],[133.72153721537217,34.3631044950928],[133.71433714337144,34.359727340553036],[133.7071370713707,34.354661608743385],[133.70353703537035,34.35128445420362],[133.69633696336962,34.354661608743385],[133.68913689136895,34.36648164963256],[133.6927369273693,34.37830169052175],[133.70353703537035,34.3918103086808],[133.7071370713707,34.396876040490454],[133.71433714337144,34.396876040490454]]],[[[126.76266762667626,34.38336742233139],[126.7590675906759,34.38336742233139],[126.75186751867517,34.386744576871166],[126.75546755467553,34.39349888595069],[126.76266762667626,34.39856461776034],[126.76986769867699,34.412073235919394],[126.78426784267845,34.42727043134835],[126.80226802268021,34.43571331769776],[126.8238682386824,34.439090472237524],[126.83466834668349,34.437401894967635],[126.84186841868421,34.432336163158],[126.84186841868421,34.42558185407846],[126.83466834668349,34.42051612226881],[126.83826838268385,34.41882754499893],[126.84546845468458,34.41376181318928],[126.85266852668525,34.40700750410976],[126.85986859868598,34.39856461776034],[126.85986859868598,34.39349888595069],[126.85266852668525,34.3918103086808],[126.83466834668349,34.396876040490454],[126.8238682386824,34.39518746322058],[126.82026820268203,34.38843315414104],[126.79506795067954,34.37830169052175],[126.78426784267845,34.36817022690245],[126.78066780667808,34.35803876328315],[126.77706777067772,34.354661608743385],[126.76986769867699,34.361415917822924],[126.76986769867699,34.37154738144221],[126.76626766267663,34.37999026779163],[126.76266762667626,34.38336742233139]]],[[[135.20475204752051,34.43064758588811],[135.2407524075241,34.45428766766646],[135.25875258752586,34.43571331769776],[135.22275222752228,34.417138967729045],[135.2119521195212,34.422204699538696],[135.20475204752051,34.43064758588811]]],[[[134.0491404914049,34.474550594905054],[134.03834038340386,34.47792774944483],[134.03834038340386,34.481304903984594],[134.03834038340386,34.48299348125447],[134.0455404554046,34.48805921306412],[134.05634056340563,34.48805921306412],[134.07074070740708,34.49819067668342],[134.08514085140854,34.499879253953296],[134.0887408874089,34.49819067668342],[134.09594095940963,34.49143636760388],[134.1031410314103,34.49143636760388],[134.1031410314103,34.48974779033401],[134.1031410314103,34.481304903984594],[134.08514085140854,34.459353399476115],[134.0779407794078,34.461041976746],[134.06714067140672,34.46610770855564],[134.06714067140672,34.46779628582553],[134.0491404914049,34.474550594905054]]],[[[136.89316893168933,34.49650209941353],[136.90036900369006,34.50325640849307],[136.9075690756908,34.501567831223184],[136.9075690756908,34.49481352214366],[136.90396903969042,34.486370635794245],[136.88956889568897,34.479616326714705],[136.88236882368824,34.474550594905054],[136.87876878768787,34.48299348125447],[136.87156871568715,34.49143636760388],[136.89316893168933,34.49650209941353]]],[[[136.88956889568897,34.53196222208108],[136.8967689676897,34.5387165311606],[136.91116911169115,34.54040510843049],[136.90396903969042,34.53196222208108],[136.90396903969042,34.52520791300154],[136.88956889568897,34.521830758461775],[136.8751687516875,34.51338787211236],[136.85716857168575,34.5100107175726],[136.84996849968502,34.51507644938225],[136.86436864368648,34.521830758461775],[136.88956889568897,34.53196222208108]]],[[[128.29628296282965,34.64003116735357],[128.29628296282965,34.63665401281379],[128.29628296282965,34.631588281004156],[128.28548285482856,34.62145681738485],[128.2818828188282,34.61976824011498],[128.27468274682747,34.61976824011498],[128.26748267482674,34.62145681738485],[128.2566825668257,34.61976824011498],[128.2458824588246,34.61470250830533],[128.24228242282425,34.611325353765565],[128.23508235082352,34.60963677649568],[128.23508235082352,34.61470250830533],[128.23868238682388,34.61976824011498],[128.23868238682388,34.626522549194505],[128.23508235082352,34.62989970373427],[128.2278822788228,34.62989970373427],[128.22428224282243,34.63327685827403],[128.22428224282243,34.63834259008368],[128.2278822788228,34.641719744623444],[128.2278822788228,34.648474053702984],[128.23148231482315,34.651851208242746],[128.23868238682388,34.651851208242746],[128.2710827108271,34.63834259008368],[128.2710827108271,34.631588281004156],[128.27468274682747,34.631588281004156],[128.29628296282965,34.64003116735357]]],[[[128.38628386283864,34.82070893523101],[128.39708397083973,34.82408608977077],[128.4114841148412,34.82577466704066],[128.42948429484295,34.82746324431055],[128.43668436684368,34.819020357961136],[128.44028440284404,34.807200317071946],[128.43668436684368,34.79875743072253],[128.44028440284404,34.793691698912895],[128.43308433084331,34.78862596710324],[128.4258842588426,34.792003121643006],[128.42228422284222,34.78862596710324],[128.42228422284222,34.786937389833355],[128.42948429484295,34.78524881256348],[128.43668436684368,34.78018308075383],[128.43308433084331,34.773428771674304],[128.42228422284222,34.763297308055],[128.40788407884082,34.763297308055],[128.4006840068401,34.77005161713453],[128.39708397083973,34.77849450348394],[128.38628386283864,34.77849450348394],[128.389883898839,34.78524881256348],[128.38628386283864,34.792003121643006],[128.37188371883718,34.793691698912895],[128.36828368283682,34.79706885345266],[128.3790837908379,34.80213458526231],[128.3790837908379,34.81057747161172],[128.37188371883718,34.81733178069125],[128.35388353883542,34.8223975125009],[128.33948339483396,34.819020357961136],[128.3358833588336,34.819020357961136],[128.33228332283323,34.82577466704066],[128.33948339483396,34.83252897612019],[128.35028350283505,34.835906130659964],[128.36828368283682,34.83084039885031],[128.3790837908379,34.8223975125009],[128.38628386283864,34.82070893523101]]],[[[128.23868238682388,34.835906130659964],[128.2566825668257,34.8223975125009],[128.26028260282607,34.813954626151485],[128.2566825668257,34.808888894341834],[128.2458824588246,34.808888894341834],[128.24228242282425,34.807200317071946],[128.24228242282425,34.80044600799242],[128.23868238682388,34.79706885345266],[128.2278822788228,34.79875743072253],[128.22428224282243,34.80213458526231],[128.21348213482133,34.807200317071946],[128.20628206282066,34.81564320342136],[128.20628206282066,34.82070893523101],[128.21348213482133,34.83084039885031],[128.2278822788228,34.83928328519973],[128.23868238682388,34.835906130659964]]],[[[136.79956799567998,34.876431985137145],[136.81036810368107,34.876431985137145],[136.82476824768247,34.86123478970819],[136.82476824768247,34.849414748819015],[136.81396813968144,34.84603759427925],[136.81396813968144,34.83928328519973],[136.8067680676807,34.83928328519973],[136.79956799567998,34.876431985137145]]],[[[126.34146341463418,34.86461194424797],[126.35946359463594,34.85785763516843],[126.3630636306363,34.83759470792984],[126.34146341463418,34.8223975125009],[126.33066330663308,34.82577466704066],[126.33786337863381,34.83252897612019],[126.34146341463418,34.83759470792984],[126.33786337863381,34.8409718624696],[126.3090630906309,34.854480480628666],[126.30546305463054,34.856169057898555],[126.27666276662768,34.85279190335878],[126.26226262262622,34.84603759427925],[126.24786247862482,34.84434901700938],[126.23706237062373,34.84772617154914],[126.229862298623,34.854480480628666],[126.23706237062373,34.85954621243832],[126.25146251462513,34.86123478970819],[126.27306273062732,34.86630052151784],[126.27666276662768,34.869677676057606],[126.28026280262804,34.87305483059738],[126.28026280262804,34.87812056240702],[126.29106291062914,34.8814977169468],[126.29826298262986,34.886563448756434],[126.29826298262986,34.89500633510585],[126.29106291062914,34.90344922145526],[126.28746287462877,34.913580685074564],[126.29826298262986,34.91695783961433],[126.31626316263163,34.913580685074564],[126.33426334263345,34.90682637599504],[126.34506345063454,34.896694912375736],[126.34506345063454,34.88994060329621],[126.33426334263345,34.88994060329621],[126.31986319863199,34.8814977169468],[126.31986319863199,34.876431985137145],[126.31986319863199,34.871366253327494],[126.31986319863199,34.86630052151784],[126.32706327063272,34.86461194424797],[126.34146341463418,34.86461194424797]]],[[[126.23346233462337,35.0469782893953],[126.23706237062373,35.05204402120495],[126.229862298623,35.053732598474824],[126.20466204662046,35.057109753014586],[126.19746197461978,35.06048690755436],[126.19026190261906,35.06217548482424],[126.18306183061833,35.06217548482424],[126.17946179461796,35.065552639364],[126.1758617586176,35.06892979390378],[126.16866168661687,35.073995525713414],[126.15786157861578,35.094258452952005],[126.16506165061651,35.10270133930142],[126.1758617586176,35.106078493841196],[126.19026190261906,35.10270133930142],[126.19746197461978,35.09763560749178],[126.20826208262082,35.099324184761656],[126.21546215462155,35.10438991657131],[126.22266222662228,35.101012762031544],[126.22626226262264,35.09594703022189],[126.229862298623,35.09763560749178],[126.23706237062373,35.09763560749178],[126.23706237062373,35.09256987568213],[126.229862298623,35.08581556660259],[126.22266222662228,35.08581556660259],[126.21906219062191,35.08243841206283],[126.21906219062191,35.07737268025318],[126.229862298623,35.06724121663389],[126.23706237062373,35.063864062094126],[126.24786247862482,35.063864062094126],[126.2550625506255,35.057109753014586],[126.25866258662586,35.0469782893953],[126.26226262262622,35.04191255758565],[126.26586265862659,35.03346967123623],[126.26226262262622,35.02502678488682],[126.25866258662586,35.021649630347056],[126.2550625506255,35.02502678488682],[126.24426244262446,35.02671536215671],[126.23706237062373,35.031781093966345],[126.23346233462337,35.038535403045884],[126.23346233462337,35.0469782893953]]],[[[12.623526235262347,35.50964846134316],[12.61992619926201,35.50795988407327],[12.623526235262347,35.50120557499375],[12.61992619926201,35.49276268864433],[12.612726127261283,35.48938553410456],[12.60192601926019,35.491074111374445],[12.598325983259826,35.49445126591421],[12.59472594725949,35.49445126591421],[12.555125551255514,35.50795988407327],[12.537125371253723,35.513025615882924],[12.52632526325263,35.51640277042269],[12.533525335253358,35.52146850223234],[12.555125551255514,35.52146850223234],[12.565925659256607,35.51977992496245],[12.612726127261283,35.5147141931528],[12.61992619926201,35.513025615882924],[12.623526235262347,35.511337038613036],[12.623526235262347,35.50964846134316]]],[[[27.567275672756722,36.24417957374213],[27.617676176761762,36.24249099647224],[27.617676176761762,36.237425264662605],[27.617676176761762,36.2272938010433],[27.614076140761426,36.21885091469389],[27.610476104761062,36.217162337424],[27.603276032760334,36.217162337424],[27.581675816758178,36.21209660561436],[27.567275672756722,36.215473760154126],[27.54927549275493,36.215473760154126],[27.531275312753138,36.21209660561436],[27.520475204752046,36.217162337424],[27.51687516875168,36.230670955583065],[27.527675276752774,36.24080241920237],[27.534875348753502,36.24249099647224],[27.54927549275493,36.24417957374213],[27.567275672756722,36.24417957374213]]],[[[27.185671856718585,36.61566657311633],[27.19647196471965,36.607223686766915],[27.20727207272074,36.58696075952831],[27.19647196471965,36.56838640955961],[27.174871748717493,36.559943523210194],[27.160471604716065,36.559943523210194],[27.13887138871388,36.56332067774996],[27.128071280712817,36.570074986829496],[27.124471244712453,36.580206450448784],[27.13887138871388,36.600469377687375],[27.167671676716765,36.61566657311633],[27.185671856718585,36.61566657311633]]],[[[137.04797047970482,37.152634144939015],[137.04437044370445,37.14587983585949],[137.04437044370445,37.137436949510075],[137.04437044370445,37.12730548589079],[137.03717037170372,37.12055117681125],[137.02277022770227,37.11379686773172],[137.0047700477005,37.11379686773172],[136.98676986769868,37.10873113592207],[136.97236972369723,37.101976826842545],[136.9615696156962,37.101976826842545],[136.94716947169474,37.096911095032894],[136.94356943569437,37.096911095032894],[136.93636936369364,37.10873113592207],[136.91476914769152,37.12730548589079],[136.90396903969042,37.1441912585896],[136.91116911169115,37.15094556766914],[136.91836918369182,37.14756841312938],[136.9219692196922,37.14081410404984],[136.92916929169292,37.137436949510075],[136.93276932769328,37.142502681319726],[136.939969399694,37.1441912585896],[136.9507695076951,37.1441912585896],[136.95796957969583,37.14756841312938],[136.96516965169656,37.152634144939015],[136.97236972369723,37.152634144939015],[136.97956979569796,37.15094556766914],[136.99036990369905,37.14587983585949],[136.99756997569978,37.139125526779964],[137.00837008370087,37.14081410404984],[137.0155701557016,37.1441912585896],[137.02637026370263,37.15601129947879],[137.0407704077041,37.159388454018554],[137.04797047970482,37.152634144939015]]],[[[26.598865988659895,37.35526341732495],[26.60246602466026,37.3501976855153],[26.606066060660623,37.340066221895995],[26.60246602466026,37.33668906735623],[26.59526595265953,37.341754799165884],[26.588065880658803,37.345131953705646],[26.584465844658467,37.345131953705646],[26.580865808658103,37.346820530975535],[26.573665736657375,37.346820530975535],[26.562865628656283,37.341754799165884],[26.559265592655947,37.33500049008636],[26.559265592655947,37.32993475827671],[26.555665556655583,37.326557603736944],[26.548465484654855,37.326557603736944],[26.555665556655583,37.319803294657405],[26.566465664656647,37.30798325376823],[26.566465664656647,37.27421170837057],[26.555665556655583,37.27083455383081],[26.54486544865449,37.277588862910335],[26.548465484654855,37.284343171989875],[26.54486544865449,37.28772032652964],[26.534065340653427,37.2910974810694],[26.5268652686527,37.3012289446887],[26.534065340653427,37.324869026467056],[26.537665376653763,37.33162333554658],[26.537665376653763,37.33837764462612],[26.534065340653427,37.346820530975535],[26.534065340653427,37.360329149134586],[26.537665376653763,37.37214919002378],[26.54486544865449,37.37383776729365],[26.555665556655583,37.37214919002378],[26.57006570065701,37.37383776729365],[26.580865808658103,37.37046061275389],[26.591665916659167,37.36370630367436],[26.59526595265953,37.35864057186471],[26.598865988659895,37.35526341732495]]],[[[24.737647376473774,37.613615739617],[24.737647376473774,37.60855000780735],[24.741247412474138,37.59504138964829],[24.719647196471982,37.5933528123784],[24.672846728467306,37.60010712145794],[24.65844658446585,37.606861430537464],[24.67644676446764,37.61023858507723],[24.694446944469462,37.61530431688688],[24.705247052470526,37.62543578050618],[24.716047160471618,37.63050151231582],[24.73404734047341,37.632190089585706],[24.741247412474138,37.62543578050618],[24.737647376473774,37.613615739617]]],[[[12.072720727207269,37.96821696629236],[12.076320763207633,37.959774079942946],[12.079920799207997,37.94964261632366],[12.06552065520657,37.95133119359353],[12.047520475204749,37.961462657212834],[12.036720367203685,37.97328269810201],[12.029520295202957,37.98510273899119],[12.036720367203685,37.99185704807073],[12.054720547205477,37.99185704807073],[12.06552065520657,37.986791316261076],[12.072720727207269,37.96821696629236]]],[[[20.9468094680947,38.65209076059486],[20.950409504095035,38.6487136060551],[20.9540095400954,38.638582142435794],[20.943209432094335,38.62676210154662],[20.92880928809288,38.62000779246709],[20.91440914409145,38.61325348338755],[20.907209072090723,38.60987632884779],[20.89640896408966,38.60649917430803],[20.885608856088567,38.596367710688725],[20.87840878408784,38.58454766979955],[20.87120871208714,38.58285909252966],[20.867608676086775,38.59299055614896],[20.87120871208714,38.603122019768264],[20.88920889208893,38.62845067881649],[20.90360903609036,38.64195929697556],[20.92160921609218,38.6487136060551],[20.9468094680947,38.65209076059486]]],[[[20.799207992079914,38.665599378753924],[20.806408064080642,38.665599378753924],[20.806408064080642,38.66222222421415],[20.80280802808028,38.65715649240451],[20.79560795607958,38.65040218332497],[20.78840788407885,38.64533645151532],[20.76320763207633,38.638582142435794],[20.759607596075966,38.62676210154662],[20.774007740077394,38.618319215197204],[20.781207812078122,38.61156490611768],[20.784807848078486,38.60987632884779],[20.792007920079215,38.60481059703814],[20.799207992079914,38.59467913341885],[20.78840788407885,38.59974486522849],[20.752407524075238,38.62676210154662],[20.73800738007381,38.65209076059486],[20.74520745207454,38.663910801484036],[20.76320763207633,38.665599378753924],[20.784807848078486,38.67573084237321],[20.78840788407885,38.67066511056356],[20.792007920079215,38.66897653329369],[20.799207992079914,38.67066511056356],[20.799207992079914,38.66897653329369],[20.799207992079914,38.665599378753924]]],[[[-9.041490414904132,38.868228651139844],[-9.034290342903432,38.86991722840972],[-9.034290342903432,38.86485149660008],[-9.041490414904132,38.84965430117113],[-9.055890558905588,38.8327685284723],[-9.07389073890738,38.81757133304336],[-9.081090810908108,38.820948487583124],[-9.070290702907016,38.83783426028195],[-9.063090630906316,38.85303145571089],[-9.04869048690486,38.861474342060305],[-9.045090450904496,38.866540073869956],[-9.041490414904132,38.868228651139844]]],[[[2.986229862298643,39.16541825063919],[2.982629826298279,39.138401014321076],[2.961029610296123,39.1164495098126],[2.9322293222932387,39.118138087082485],[2.9142291422914184,39.15190963248014],[2.9394293942939385,39.17217255971873],[2.979029790297915,39.18568117787778],[2.986229862298643,39.16541825063919]]],[[[24.082440824408252,39.35285032759617],[24.08964089640898,39.34947317305641],[24.093240932409344,39.34609601851665],[24.093240932409344,39.32921024581782],[24.082440824408252,39.305570164039466],[24.06444064440646,39.29712727769005],[24.053640536405368,39.305570164039466],[24.053640536405368,39.31232447311899],[24.060840608406096,39.31401305038888],[24.057240572405732,39.31907878219852],[24.04644046440464,39.32414451400817],[24.042840428404304,39.33089882308771],[24.04644046440464,39.341030286706996],[24.050040500405004,39.3511617503263],[24.057240572405732,39.361293213945586],[24.068040680406824,39.362981791215475],[24.068040680406824,39.35285032759617],[24.068040680406824,39.34609601851665],[24.075240752407524,39.34947317305641],[24.082440824408252,39.35285032759617]]],[[[124.59544595445954,39.430524882010786],[124.59184591845917,39.4389677683602],[124.59184591845917,39.447410654709614],[124.60264602646026,39.44909923197949],[124.61344613446136,39.4575421183289],[124.61344613446136,39.44909923197949],[124.61344613446136,39.447410654709614],[124.61704617046172,39.44403350016984],[124.62064620646208,39.43221345928066],[124.60624606246063,39.4288363047409],[124.60264602646026,39.42714772747101],[124.59544595445954,39.430524882010786]]],[[[124.2138421384214,39.80707761319462],[124.22104221042213,39.810454767734385],[124.21744217442176,39.815520499544036],[124.22104221042213,39.815520499544036],[124.22464224642249,39.817209076813924],[124.22104221042213,39.8188976540838],[124.22464224642249,39.82058623135369],[124.22824228242285,39.82058623135369],[124.23184231842322,39.8188976540838],[124.23544235442358,39.817209076813924],[124.23544235442358,39.81383192227415],[124.23904239042389,39.81214334500427],[124.23904239042389,39.810454767734385],[124.23904239042389,39.80707761319462],[124.24264242642425,39.80707761319462],[124.24264242642425,39.80538903592473],[124.24264242642425,39.80201188138497],[124.23904239042389,39.800323304115096],[124.23544235442358,39.79863472684521],[124.23184231842322,39.79863472684521],[124.22824228242285,39.795257572305445],[124.22464224642249,39.79188041776568],[124.22104221042213,39.79356899503556],[124.21744217442176,39.795257572305445],[124.21024210242103,39.795257572305445],[124.21024210242103,39.800323304115096],[124.2138421384214,39.80370045865486],[124.2138421384214,39.80707761319462]]],[[[27.646476464764646,40.46055701663923],[27.653676536765374,40.46055701663923],[27.65727657276574,40.457179862099466],[27.65727657276574,40.44873697575005],[27.646476464764646,40.44704839848016],[27.63207632076322,40.4538027075597],[27.614076140761426,40.457179862099466],[27.596075960759606,40.457179862099466],[27.581675816758178,40.46562274844888],[27.581675816758178,40.47575421206817],[27.592475924759242,40.48419709841758],[27.59967599675997,40.49601713930676],[27.606876068760698,40.50614860292606],[27.639276392763946,40.494328562036884],[27.642876428764282,40.487574252957344],[27.635676356763582,40.47913136660793],[27.635676356763582,40.467311325718754],[27.646476464764646,40.46055701663923]]],[[[-72.3409234092341,41.09039633830547],[-72.3409234092341,41.10390495646453],[-72.32652326523265,41.10559353373442],[-72.32292322923229,41.093773492845244],[-72.30492304923048,41.08364202922594],[-72.2941229412294,41.08195345195605],[-72.27972279722796,41.07857629741629],[-72.28332283322833,41.068444833797],[-72.27972279722796,41.0583133701777],[-72.28332283322833,41.04818190655841],[-72.27612276122761,41.039739020209],[-72.27612276122761,41.031296133859584],[-72.28692286922869,41.03467328839935],[-72.29772297722977,41.04142759747887],[-72.31932319323192,41.04818190655841],[-72.3409234092341,41.04818190655841],[-72.35892358923589,41.04649332928852],[-72.36972369723696,41.05493621563794],[-72.37332373323733,41.068444833797],[-72.36252362523625,41.08026487468618],[-72.3409234092341,41.09039633830547]]],[[[-72.1321213212132,41.12079072916336],[-72.11052110521105,41.107282111004295],[-72.09252092520924,41.10221637919466],[-72.07812078120782,41.10052780192477],[-72.07812078120782,41.09546207011512],[-72.08532085320853,41.092084915575356],[-72.08532085320853,41.08364202922594],[-72.08172081720816,41.07519914287653],[-72.08532085320853,41.068444833797],[-72.09252092520924,41.06169052471746],[-72.09972099720997,41.05493621563794],[-72.09972099720997,41.066756256527114],[-72.10332103321034,41.08195345195605],[-72.10692106921069,41.09039633830547],[-72.12132121321213,41.093773492845244],[-72.13572135721357,41.092084915575356],[-72.14292142921428,41.09715064738501],[-72.13572135721357,41.10221637919466],[-72.12852128521286,41.108970688274184],[-72.1321213212132,41.12079072916336]]],[[[9.473494734947366,41.23561398351539],[9.47709477094773,41.22885967443585],[9.480694806948065,41.2237939426262],[9.480694806948065,41.217039633546676],[9.469894698947002,41.190022397228546],[9.473494734947366,41.18495666541891],[9.473494734947366,41.17989093360926],[9.469894698947002,41.171448047259844],[9.462694626946274,41.17313662452973],[9.455494554945545,41.17989093360926],[9.448294482944846,41.18495666541891],[9.441094410944117,41.18326808814902],[9.437494374943753,41.18664524268878],[9.448294482944846,41.2052195926575],[9.444694446944482,41.211973901737025],[9.444694446944482,41.22041678808644],[9.455494554945545,41.233925406245504],[9.45909459094591,41.24236829259492],[9.466294662946638,41.24067971532503],[9.473494734947366,41.23561398351539]]],[[[9.430294302943025,41.22548251989609],[9.43389433894339,41.22041678808644],[9.43389433894339,41.217039633546676],[9.394293942939441,41.21028532446715],[9.37629376293765,41.21366247900691],[9.372693726937285,41.22210536535633],[9.372693726937285,41.23054825170574],[9.37629376293765,41.233925406245504],[9.38349383493835,41.23730256078527],[9.390693906939077,41.24067971532503],[9.397893978939805,41.24743402440457],[9.397893978939805,41.25587691075398],[9.40149401494017,41.25756548802386],[9.40869408694087,41.25756548802386],[9.415894158941597,41.26263121983351],[9.423094230942326,41.26094264256362],[9.42669426694269,41.254188333484095],[9.430294302943025,41.24574544713468],[9.430294302943025,41.23730256078527],[9.430294302943025,41.22885967443585],[9.430294302943025,41.22548251989609]]],[[[-70.82890828908289,41.26094264256362],[-70.82170821708216,41.26094264256362],[-70.81450814508145,41.26263121983351],[-70.81090810908108,41.259254065293746],[-70.80010800108,41.25756548802386],[-70.80010800108,41.24743402440457],[-70.81090810908108,41.24743402440457],[-70.82170821708216,41.25081117894433],[-70.83250832508325,41.25587691075398],[-70.82890828908289,41.26094264256362]]],[[[-70.8721087210872,41.43824325590131],[-70.85770857708577,41.4483747195206],[-70.85770857708577,41.443308987710964],[-70.84690846908468,41.43486610136155],[-70.85410854108541,41.4298003695519],[-70.87570875708757,41.42304606047236],[-70.89370893708937,41.42304606047236],[-70.90810908109081,41.42304606047236],[-70.92970929709297,41.41798032866272],[-70.93690936909368,41.41122601958318],[-70.94770947709476,41.414603174122945],[-70.94050940509405,41.421357483202485],[-70.9261092610926,41.42811179228201],[-70.91170911709116,41.4298003695519],[-70.89730897308972,41.436554678631424],[-70.8721087210872,41.43824325590131]]],[[[-70.72450724507245,41.51085207850626],[-70.710107101071,41.519294964855675],[-70.69570695706956,41.5176063875858],[-70.67770677706777,41.51085207850626],[-70.69930699306992,41.50240919215685],[-70.71730717307173,41.49227772853756],[-70.74250742507425,41.482146264918256],[-70.7569075690757,41.47539195583873],[-70.7569075690757,41.46863764675919],[-70.76770767707677,41.46019476040978],[-70.78930789307893,41.4483747195206],[-70.80730807308073,41.44668614225073],[-70.83250832508325,41.443308987710964],[-70.83970839708397,41.45006329679049],[-70.82890828908289,41.456817605870015],[-70.81450814508145,41.45512902860014],[-70.80370803708037,41.463571914949554],[-70.78210782107821,41.478769110378494],[-70.74250742507425,41.50072061488697],[-70.72450724507245,41.51085207850626]]],[[[10.2979029790298,42.34500924982832],[10.305103051030528,42.35176355890785],[10.315903159031592,42.33994351801867],[10.312303123031228,42.32474632258973],[10.294302943029436,42.328123477129495],[10.2979029790298,42.34500924982832]]],[[[10.092700927009275,42.59660726304084],[10.09630096300964,42.59154153123119],[10.09630096300964,42.588164376691424],[10.09630096300964,42.58309864488177],[10.09630096300964,42.57634433580225],[10.085500855008547,42.572967181262484],[10.07110071100712,42.572967181262484],[10.060300603006027,42.57634433580225],[10.049500495004963,42.5814100676119],[10.053100531005327,42.58985295396131],[10.063900639006391,42.59154153123119],[10.07110071100712,42.5999844175806],[10.078300783007847,42.613493035739666],[10.085500855008547,42.615181613009554],[10.089100891008911,42.60336157212038],[10.092700927009275,42.59660726304084]]],[[[132.45072450724507,42.82794234901476],[132.4687246872469,42.811056576315934],[132.47592475924762,42.80430226723641],[132.47592475924762,42.80092511269666],[132.4687246872469,42.79754795815688],[132.4579245792458,42.79754795815688],[132.45432454324543,42.80092511269666],[132.4471244712447,42.807679421776186],[132.43992439924398,42.81781088539549],[132.42912429124294,42.82625377174489],[132.41832418324185,42.829630926284665],[132.40752407524076,42.82794234901476],[132.40032400324003,42.83131950355454],[132.40032400324003,42.84145096717384],[132.40032400324003,42.851582430793115],[132.4039240392404,42.85833673987267],[132.4147241472415,42.865091048952195],[132.41832418324185,42.88028824438112],[132.42912429124294,42.895485439810074],[132.43992439924398,42.892108285270325],[132.4471244712447,42.87691108984137],[132.45432454324543,42.86171389441242],[132.45072450724507,42.84482812171359],[132.45072450724507,42.82794234901476]]],[[[6.23346233462334,43.02212873505127],[6.240662406624068,43.025505889591045],[6.25146251462516,43.017063003241645],[6.25146251462516,43.00186580781269],[6.229862298623004,42.995111498733166],[6.215462154621548,42.990045766923515],[6.20106201062012,42.98666861238374],[6.190261902619028,42.990045766923515],[6.165061650616508,43.00017723054282],[6.165061650616508,43.00524296235244],[6.1758617586176,43.00862011689222],[6.204662046620484,43.00862011689222],[6.211862118621184,43.011997271431994],[6.215462154621548,43.01537442597174],[6.219062190621912,43.01537442597174],[6.222662226622276,43.01537442597174],[6.23346233462334,43.01537442597174],[6.23346233462334,43.02212873505127]]],[[[16.309963099631005,43.5084389887775],[16.335163351633526,43.50168467969797],[16.374763747637473,43.4898646388088],[16.37116371163711,43.484798906999146],[16.33156331563316,43.48142175245937],[16.28116281162812,43.488176061538894],[16.266762667626693,43.48648748426902],[16.259562595625965,43.48311032972927],[16.245162451624537,43.48142175245937],[16.23076230762308,43.48311032972927],[16.219962199622017,43.48648748426902],[16.21276212762129,43.4898646388088],[16.21276212762129,43.49493037061845],[16.219962199622017,43.4983075251582],[16.223562235622353,43.49661894788832],[16.23076230762308,43.49661894788832],[16.245162451624537,43.49493037061845],[16.252362523625237,43.49999610242807],[16.248762487624873,43.5084389887775],[16.26316263162633,43.51350472058715],[16.309963099631005,43.5084389887775]]],[[[14.758347583475853,44.29193884200308],[14.772747727477281,44.28518453292355],[14.790747907479073,44.27336449203435],[14.790747907479073,44.26661018295482],[14.776347763477645,44.26661018295482],[14.765547655476553,44.26492160568495],[14.758347583475853,44.259855873875296],[14.74754747547476,44.26154445114517],[14.736747367473669,44.27167591476447],[14.740347403474033,44.2801188011139],[14.751147511475125,44.2801188011139],[14.754747547475489,44.28349595565365],[14.754747547475489,44.290250264733174],[14.758347583475853,44.29193884200308]]],[[[14.614346143461432,44.34090758282966],[14.643146431464316,44.32571038740073],[14.661146611466108,44.308824614701905],[14.657546575465773,44.30544746016213],[14.639546395463952,44.31220176924165],[14.599945999460004,44.339219005559784],[14.59634596345964,44.34766189190921],[14.614346143461432,44.34090758282966]]],[[[14.797947979479801,44.37805628276709],[14.80514805148053,44.36792481914779],[14.812348123481229,44.349350469179086],[14.801548015480165,44.34259616009956],[14.783547835478373,44.34766189190921],[14.772747727477281,44.352727623718835],[14.754747547475489,44.36454766460804],[14.758347583475853,44.37299055095744],[14.769147691476917,44.384810591846616],[14.761947619476189,44.415204982704495],[14.765547655476553,44.4168935599744],[14.772747727477281,44.41858213724427],[14.783547835478373,44.41858213724427],[14.794347943479437,44.415204982704495],[14.801548015480165,44.40507351908522],[14.80514805148053,44.39494205546592],[14.797947979479801,44.38818774638639],[14.797947979479801,44.38143343730684],[14.797947979479801,44.37805628276709]]],[[[14.24354243542436,44.66173726410739],[14.265142651426515,44.68031161407609],[14.279542795427972,44.67693445953631],[14.279542795427972,44.66849157318691],[14.275942759427608,44.66173726410739],[14.261542615426151,44.660048686837484],[14.257942579425787,44.65836010956761],[14.257942579425787,44.656671532297736],[14.257942579425787,44.65329437775796],[14.257942579425787,44.64822864594831],[14.257942579425787,44.643162914138685],[14.257942579425787,44.63640860505913],[14.257942579425787,44.63472002778926],[14.265142651426515,44.624588564169954],[14.272342723427244,44.61276852328078],[14.265142651426515,44.6110799460109],[14.250742507425088,44.616145677820555],[14.239942399423995,44.6195228323603],[14.232742327423267,44.62627714143986],[14.232742327423267,44.63472002778926],[14.236342363423631,44.64147433686878],[14.24354243542436,44.66173726410739]]],[[[50.74430744307443,44.88631804100177],[50.75870758707589,44.87112084557285],[50.762307623076225,44.86436653649329],[50.74070740707407,44.86774369103307],[50.72630726307264,44.866055113763196],[50.711907119071185,44.85930080468367],[50.69750697506976,44.85761222741377],[50.69390693906939,44.86436653649329],[50.70110701107012,44.874498000112595],[50.70110701107012,44.88125230919212],[50.69030690306903,44.88294088646202],[50.69030690306903,44.88969519554155],[50.69390693906939,44.89982665916085],[50.686706867068665,44.91164670005003],[50.63990639906399,44.93359820455851],[50.62550625506256,44.950483977257335],[50.629106291062925,44.96736974995616],[50.636306363063625,44.96736974995616],[50.64350643506435,44.95217255452721],[50.65790657906581,44.93866393636813],[50.679506795067965,44.93528678182838],[50.69390693906939,44.94035251363803],[50.70110701107012,44.94879539998743],[50.70830708307085,44.95386113179708],[50.71550715507155,44.95386113179708],[50.71550715507155,44.94710682271756],[50.71910719107191,44.94204109090791],[50.72630726307264,44.94035251363803],[50.73350733507337,44.93022105001873],[50.737107371073705,44.90826954551025],[50.737107371073705,44.896449504621074],[50.74430744307443,44.88631804100177]]],[[[12.328323283232834,45.458745735492016],[12.346323463234626,45.458745735492016],[12.364323643236446,45.45030284914259],[12.360723607236082,45.43848280825341],[12.353523535235354,45.43341707644376],[12.335523355233562,45.426662767364235],[12.321123211232106,45.43003992190401],[12.31752317523177,45.44354854006306],[12.328323283232834,45.458745735492016]]],[[[-62.54522545225451,45.82685558032645],[-62.534425344253435,45.828544157596326],[-62.51642516425164,45.82685558032645],[-62.505625056250565,45.828544157596326],[-62.51282512825128,45.823478425786675],[-62.51282512825128,45.815035539437275],[-62.52722527225272,45.809969807627624],[-62.54882548825488,45.8032154985481],[-62.556025560255605,45.79983834400832],[-62.56682566825668,45.801526921278196],[-62.57762577625776,45.80490407581797],[-62.59562595625955,45.8032154985481],[-62.60282602826028,45.80490407581797],[-62.60282602826028,45.809969807627624],[-62.59562595625955,45.815035539437275],[-62.5740257402574,45.823478425786675],[-62.56322563225632,45.823478425786675],[-62.55242552425524,45.823478425786675],[-62.54522545225451,45.82685558032645]]],[[[-59.70839708397084,45.99402473004483],[-59.71559715597155,45.997401884584605],[-59.72639726397263,46.00077903912435],[-59.75879758797588,46.00077903912435],[-59.78039780397803,46.00415619366413],[-59.77679776797767,46.01259908001353],[-59.72279722797228,46.02948485271236],[-59.693996939969395,46.03455058452201],[-59.69039690396903,46.02948485271236],[-59.70119701197011,46.02273054363283],[-59.70479704797047,46.010910502743656],[-59.70479704797047,45.99909046185448],[-59.70839708397084,45.99402473004483]]],[[[-123.41823418234182,46.20509688878016],[-123.40383403834039,46.20171973424041],[-123.38943389433894,46.18989969335124],[-123.36783367833678,46.179768229731934],[-123.34983349833499,46.166259611572855],[-123.32463324633247,46.15443957068368],[-123.31743317433174,46.14937383887403],[-123.3390333903339,46.14768526160415],[-123.3570335703357,46.15106241614393],[-123.37863378633787,46.15612814795358],[-123.39663396633966,46.16963676611263],[-123.41103411034109,46.17470249792228],[-123.42183421834218,46.184833961541585],[-123.42183421834218,46.188211116081334],[-123.41823418234182,46.20509688878016]]],[[[-123.47943479434794,46.255754206876645],[-123.47223472234722,46.25406562960677],[-123.46143461434613,46.247311320527245],[-123.44343443434434,46.23549127963807],[-123.43623436234361,46.220294084209115],[-123.43983439834398,46.21353977512959],[-123.45423454234542,46.21860550693924],[-123.46863468634686,46.225359816018766],[-123.47943479434794,46.23549127963807],[-123.4830348303483,46.24899989779712],[-123.47943479434794,46.255754206876645]]],[[[-54.79434794347944,47.27903203242556],[-54.77634776347763,47.27396630061591],[-54.79074790747907,47.258769105186985],[-54.79794797947979,47.24188333248816],[-54.81234812348123,47.231751868868855],[-54.82674826748267,47.24357190975803],[-54.830348303483035,47.267211991536385],[-54.79434794347944,47.27903203242556]]],[[[-54.19674196741967,47.39385528677758],[-54.17874178741786,47.41749536855593],[-54.15714157141571,47.414118214016185],[-54.14634146341463,47.400609595857105],[-54.15354153541534,47.36852662772935],[-54.17874178741786,47.360083741379924],[-54.21114211142111,47.360083741379924],[-54.22194221942219,47.36852662772935],[-54.218342183421825,47.3820352458884],[-54.20394203942038,47.38541240042818],[-54.19674196741967,47.39385528677758]]],[[[-70.3681036810368,47.427626832175235],[-70.33930339303393,47.427626832175235],[-70.32490324903249,47.427626832175235],[-70.32850328503285,47.419183945825836],[-70.37530375303753,47.38372382315828],[-70.39330393303932,47.373592359539],[-70.41130411304113,47.370215204999226],[-70.42930429304293,47.3719037822691],[-70.43650436504365,47.37696951407875],[-70.43650436504365,47.387100977698054],[-70.43290432904328,47.39554386404748],[-70.42570425704257,47.405675327666756],[-70.41130411304113,47.414118214016185],[-70.38970389703897,47.422561100365584],[-70.3681036810368,47.427626832175235]]],[[[-52.95472954729547,47.6555847636094],[-52.91872918729187,47.65220760906965],[-52.91512915129151,47.63363325910092],[-52.94752947529474,47.61843606367199],[-52.97632976329763,47.596484559163514],[-53.00513005130051,47.59310740462374],[-53.03033030330303,47.59986171370326],[-53.019530195301954,47.61843606367199],[-52.95472954729547,47.6555847636094]]],[[[-68.86328863288632,48.407001648707194],[-68.85608856088561,48.41375595778675],[-68.84168841688417,48.41544453505662],[-68.8380883808838,48.41375595778675],[-68.84168841688417,48.41037880324697],[-68.84168841688417,48.40531307143732],[-68.84528845288453,48.39518160781802],[-68.86328863288632,48.38842729873849],[-68.87768877688777,48.38842729873849],[-68.89208892088921,48.38842729873849],[-68.89208892088921,48.39180445327827],[-68.88848888488884,48.39687018508792],[-68.88128881288813,48.403624494167445],[-68.86328863288632,48.407001648707194]]],[[[-125.86265862658627,49.23778166548951],[-125.83025830258302,49.23778166548951],[-125.79785797857978,49.227650201870205],[-125.7870578705787,49.209075851901474],[-125.79425794257942,49.18037003831347],[-125.80145801458013,49.143221338376065],[-125.84105841058411,49.13308987475676],[-125.88065880658806,49.14659849291584],[-125.88065880658806,49.16179568834477],[-125.88785887858879,49.173615729233944],[-125.91665916659167,49.17699288377372],[-125.92385923859239,49.1972558110123],[-125.91665916659167,49.21245300644125],[-125.90225902259021,49.2259616246003],[-125.86265862658627,49.23778166548951]]],[[[-55.852758527585266,50.20533644113229],[-55.849158491584916,50.21377932748169],[-55.84195841958419,50.21546790475156],[-55.83115831158311,50.212090750211814],[-55.823958239582396,50.203647863862386],[-55.834758347583474,50.19520497751299],[-55.84555845558455,50.190139245703335],[-55.86715867158671,50.19351640024311],[-55.885158851588514,50.19689355478286],[-55.88155881558815,50.203647863862386],[-55.852758527585266,50.20533644113229]]],[[[-55.76275762757628,50.23235367745039],[-55.751957519575186,50.23235367745039],[-55.73035730357303,50.230665100180516],[-55.71235712357124,50.220533636561214],[-55.701557015570145,50.203647863862386],[-55.69435694356943,50.19351640024311],[-55.70875708757087,50.190139245703335],[-55.73035730357303,50.19858213205276],[-55.75555755557555,50.20027070932264],[-55.7879578795788,50.20702501840216],[-55.802358023580226,50.220533636561214],[-55.798757987579876,50.230665100180516],[-55.76275762757628,50.23235367745039]]],[[[-128.63828638286384,50.804781371940635],[-128.62748627486275,50.81153568102016],[-128.6058860588606,50.81153568102016],[-128.60228602286023,50.81997856736959],[-128.59148591485916,50.81322425829006],[-128.57348573485734,50.80815852648041],[-128.57348573485734,50.80309279467076],[-128.57348573485734,50.79464990832133],[-128.5878858788588,50.79464990832133],[-128.60228602286023,50.79296133105146],[-128.60228602286023,50.78451844470206],[-128.61668616686165,50.782829867432156],[-128.63468634686348,50.78958417651168],[-128.63828638286384,50.799715640130984],[-128.63828638286384,50.804781371940635]]],[[[-58.86238862388623,50.83348718552864],[-58.851588515885155,50.81322425829006],[-58.84798847988479,50.78958417651168],[-58.86238862388623,50.77945271289241],[-58.88038880388804,50.78451844470206],[-58.88398883988839,50.79464990832133],[-58.86238862388623,50.83348718552864]]],[[[-128.7030870308703,50.836864340068416],[-128.69948699486994,50.831798608258765],[-128.68148681486815,50.82842145371899],[-128.67428674286742,50.82842145371899],[-128.66348663486633,50.82504429917924],[-128.67068670686706,50.818289990099686],[-128.6670866708667,50.81322425829006],[-128.65628656286563,50.80815852648041],[-128.66348663486633,50.804781371940635],[-128.68148681486815,50.80309279467076],[-128.69228692286924,50.801404217400886],[-128.7030870308703,50.80646994921051],[-128.71748717487174,50.81491283555994],[-128.71388713887137,50.82335572190934],[-128.71028710287104,50.831798608258765],[-128.7030870308703,50.836864340068416]]],[[[-57.24957249572495,50.840241494608165],[-57.231572315723156,50.840241494608165],[-57.22797227972279,50.836864340068416],[-57.22077220772208,50.840241494608165],[-57.209972099720986,50.840241494608165],[-57.20277202772027,50.835175762798514],[-57.191971919719194,50.82842145371899],[-57.18477184771848,50.82335572190934],[-57.19557195571956,50.81997856736959],[-57.206372063720636,50.81491283555994],[-57.22437224372243,50.809847103750286],[-57.22437224372243,50.80309279467076],[-57.23877238772387,50.796338485591235],[-57.25317253172531,50.796338485591235],[-57.260372603726026,50.799715640130984],[-57.25317253172531,50.80309279467076],[-57.23877238772387,50.80646994921051],[-57.2459724597246,50.809847103750286],[-57.260372603726026,50.80815852648041],[-57.27117271172712,50.809847103750286],[-57.27837278372783,50.81660141282981],[-57.27477274772747,50.826732876449114],[-57.26397263972639,50.836864340068416],[-57.24957249572495,50.840241494608165]]],[[[-127.77787777877779,50.90103027632395],[-127.74547745477454,50.91285031721313],[-127.7130771307713,50.91285031721313],[-127.68787687876878,50.90103027632395],[-127.66987669876698,50.880767349085346],[-127.66267662676626,50.86050442184677],[-127.65547655476556,50.83855291733829],[-127.67347673476735,50.836864340068416],[-127.72747727477275,50.845307226417816],[-127.75267752677527,50.858815844576895],[-127.78147781477814,50.862192999116644],[-127.81747817478174,50.86894730819617],[-127.83547835478355,50.87907877181547],[-127.83547835478355,50.889210235434774],[-127.77787777877779,50.90103027632395]]],[[[-58.30798307983079,51.25225434845956],[-58.30798307983079,51.23536857576073],[-58.3259832598326,51.22017138033178],[-58.361983619836195,51.201597030363075],[-58.412384123841235,51.201597030363075],[-58.412384123841235,51.22185995760165],[-58.387183871838715,51.23874573030048],[-58.30798307983079,51.25225434845956]]],[[[-128.43668436684368,51.980031151779],[-128.43308433084331,51.99522834720793],[-128.41868418684186,52.003671233557355],[-128.4150841508415,51.98340830631875],[-128.42228422284222,51.95301391546087],[-128.42228422284222,51.92599667914274],[-128.43308433084331,51.90235659736439],[-128.44388443884438,51.89729086555474],[-128.45468454684547,51.91755379279334],[-128.479884798848,51.90742232917404],[-128.49428494284942,51.92599667914274],[-128.48708487084872,51.95301391546087],[-128.43668436684368,51.980031151779]]],[[[-79.02619026190261,52.11342875609972],[-79.0189901899019,52.11174017882985],[-79.0009900099001,52.10836302429007],[-79.00819008190082,52.0982315606708],[-79.03339033390334,52.093165828861146],[-79.08739087390873,52.0982315606708],[-79.08019080190802,52.1066744470202],[-79.04419044190442,52.11342875609972],[-79.02619026190261,52.11342875609972]]],[[[-79.40419404194041,52.26033497857952],[-79.38619386193862,52.25526924676987],[-79.3789937899379,52.25189209223012],[-79.38259382593826,52.24513778315057],[-79.40059400594005,52.240072051340945],[-79.47619476194761,52.23669489680117],[-79.50139501395013,52.23331774226139],[-79.50139501395013,52.23669489680117],[-79.49419494194942,52.24513778315057],[-79.48339483394834,52.253580669499996],[-79.44739447394474,52.262023555849396],[-79.40419404194041,52.26033497857952]]],[[[-78.73458734587345,52.444389900996725],[-78.72018720187201,52.44607847826663],[-78.70578705787058,52.4477670555365],[-78.70938709387093,52.444389900996725],[-78.72378723787237,52.43425843737745],[-78.73818738187381,52.4275041282979],[-78.75618756187562,52.422438396488275],[-78.75258752587526,52.4190612419485],[-78.72738727387274,52.41737266467862],[-78.72738727387274,52.41230693286897],[-78.74898748987489,52.40555262378945],[-78.75978759787597,52.40724120105932],[-78.75978759787597,52.4106183555991],[-78.76338763387633,52.41399551013885],[-78.7669876698767,52.41230693286897],[-78.77418774187741,52.41230693286897],[-78.78138781387814,52.41399551013885],[-78.78498784987849,52.41399551013885],[-78.78498784987849,52.41230693286897],[-78.79218792187922,52.4106183555991],[-78.79578795787957,52.41230693286897],[-78.79218792187922,52.41399551013885],[-78.79578795787957,52.41399551013885],[-78.79938799387993,52.41230693286897],[-78.8029880298803,52.41737266467862],[-78.79938799387993,52.4291927055678],[-78.8029880298803,52.43425843737745],[-78.80658806588066,52.4291927055678],[-78.82098820988209,52.42412697375815],[-78.82818828188282,52.4275041282979],[-78.81378813788137,52.435947014647326],[-78.79578795787957,52.4393241691871],[-78.7669876698767,52.4477670555365],[-78.75258752587526,52.4477670555365],[-78.73458734587345,52.444389900996725]]],[[[-79.58419584195842,52.555836000808995],[-79.57339573395734,52.547393114459595],[-79.56619566195661,52.54570453718969],[-79.57339573395734,52.542327382649944],[-79.58059580595805,52.54063880538004],[-79.60939609396094,52.53557307357042],[-79.63819638196382,52.53219591903064],[-79.63819638196382,52.53726165084029],[-79.62019620196202,52.555836000808995],[-79.61659616596165,52.57272177350782],[-79.6129961299613,52.577787505317474],[-79.60219602196021,52.577787505317474],[-79.59139591395913,52.5760989280476],[-79.58779587795878,52.57103319623795],[-79.58779587795878,52.56427888715842],[-79.58419584195842,52.555836000808995]]],[[[-129.4338943389434,52.68247929605019],[-129.41229412294123,52.68754502785984],[-129.40149401494014,52.67910214151044],[-129.40149401494014,52.66390494608149],[-129.40149401494014,52.64701917338266],[-129.41949419494193,52.645330596112785],[-129.4338943389434,52.63688770976336],[-129.44829448294482,52.64364201884291],[-129.43749437494375,52.658839214271836],[-129.42669426694266,52.67403640970079],[-129.4338943389434,52.68247929605019]]],[[[-55.852758527585266,52.77197389135398],[-55.83115831158311,52.770285314084106],[-55.81315813158132,52.770285314084106],[-55.809558095580954,52.76184242773468],[-55.809558095580954,52.743268077765975],[-55.809558095580954,52.7314480368768],[-55.83115831158311,52.72638230506715],[-55.859958599585994,52.729759459606925],[-55.86715867158671,52.743268077765975],[-55.885158851588514,52.751710964115404],[-55.89595895958959,52.76353100500458],[-55.88875888758888,52.77535104589376],[-55.852758527585266,52.77197389135398]]],[[[-129.35469354693547,52.863157063927645],[-129.32949329493294,52.849648445768594],[-129.31149311493115,52.83951698214929],[-129.32229322293222,52.82094263218059],[-129.32949329493294,52.79899112767211],[-129.34749347493474,52.800679704941984],[-129.36549365493656,52.814188323101064],[-129.3690936909369,52.84458271395894],[-129.35469354693547,52.863157063927645]]],[[[-55.809558095580954,53.00668613186767],[-55.802358023580226,53.015129018217095],[-55.7879578795788,53.01681759548697],[-55.777157771577706,53.010063286407444],[-55.784357843578434,53.001620400058016],[-55.7879578795788,52.99486609097849],[-55.76995769957699,52.99655466824839],[-55.76635766357663,52.988111781898965],[-55.78075780757807,52.97629174100979],[-55.7879578795788,52.96278312285074],[-55.7879578795788,52.947585927421784],[-55.802358023580226,52.94420877288201],[-55.82035820358203,52.95940596831096],[-55.834758347583474,52.97629174100979],[-55.849158491584916,52.99148893643874],[-55.849158491584916,53.00330897732792],[-55.809558095580954,53.00668613186767]]],[[[-55.827558275582746,53.07929495447263],[-55.79155791557915,53.09449214990158],[-55.76995769957699,53.08942641809193],[-55.75555755557555,53.07591779993288],[-55.751957519575186,53.05903202723405],[-55.76995769957699,53.04890056361475],[-55.759157591575914,53.0337033681858],[-55.773557735577356,53.028637636376146],[-55.802358023580226,53.03201479091592],[-55.81675816758167,53.023571904566495],[-55.84555845558455,53.023571904566495],[-55.87075870758707,53.02694905910627],[-55.874358743587436,53.03876909999545],[-55.874358743587436,53.05734344996415],[-55.86355863558636,53.07085206812323],[-55.849158491584916,53.080983531742504],[-55.827558275582746,53.07929495447263]]],[[[-130.5931059310593,53.496373540133646],[-130.58590585905858,53.477799190164944],[-130.58590585905858,53.46597914927577],[-130.6039060390604,53.47104488108542],[-130.62550625506253,53.48117634470472],[-130.63630636306362,53.49806211740355],[-130.61830618306183,53.50650500375295],[-130.5931059310593,53.496373540133646]]],[[[-57.15237152371523,53.69393708070993],[-57.130771307713076,53.70406854432923],[-57.10197101971019,53.70406854432923],[-57.080370803708036,53.70406854432923],[-57.06597065970659,53.70913427613888],[-57.04437044370444,53.71588858521841],[-57.029970299702995,53.71251143067863],[-57.05157051570515,53.700691389789455],[-57.06597065970659,53.68549419436053],[-57.080370803708036,53.68042846255088],[-57.0839708397084,53.6669198443918],[-57.0839708397084,53.656788380772525],[-57.09117091170911,53.65003407169297],[-57.11277112771127,53.643279762613446],[-57.155971559715596,53.64665691715322],[-57.17037170371704,53.660165535312274],[-57.166771667716674,53.678739885281004],[-57.15237152371523,53.69393708070993]]],[[[7.903879038790393,54.18024733443616],[7.900279002790029,54.17855875716626],[7.896678966789665,54.181935911706034],[7.893078930789301,54.18362448897591],[7.889478894788965,54.187001643515686],[7.885878858788601,54.19037879805546],[7.878678786787873,54.19375595259521],[7.893078930789301,54.195444529865085],[7.900279002790029,54.19037879805546],[7.903879038790393,54.18024733443616]]],[[[7.911079110791121,54.19206737532534],[7.929079290792913,54.195444529865085],[7.932679326793277,54.19037879805546],[7.918279182791821,54.187001643515686],[7.911079110791121,54.19206737532534]]],[[[-57.32877328773287,54.28831627970865],[-57.292772927729274,54.283250547899],[-57.307173071730716,54.276496238819476],[-57.32157321573216,54.26974192973992],[-57.310773107731066,54.25961046612065],[-57.29997299972999,54.249479002501346],[-57.31437314373143,54.23934753888204],[-57.33957339573395,54.24779042523147],[-57.368373683736834,54.25961046612065],[-57.368373683736834,54.26974192973992],[-57.35037350373503,54.276496238819476],[-57.32877328773287,54.28831627970865]]],[[[-81.1070110701107,54.33221928872558],[-81.1070110701107,54.342350752344885],[-81.11061110611105,54.35417079323406],[-81.1070110701107,54.36599083412324],[-81.10341103411034,54.374433720472666],[-81.09261092610926,54.369367988663015],[-81.0890108901089,54.35923652504371],[-81.08541085410853,54.347416484154536],[-81.0890108901089,54.337285020535234],[-81.09621096210962,54.33221928872558],[-81.09981099810997,54.33053071145571],[-81.1070110701107,54.33221928872558]]],[[[-57.2459724597246,54.48419124301503],[-57.22797227972279,54.49263412936446],[-57.22077220772208,54.480814088475285],[-57.209972099720986,54.47068262485598],[-57.19917199171991,54.4487311203475],[-57.22437224372243,54.45210827488728],[-57.2459724597246,54.467305470316205],[-57.27117271172712,54.46055116123668],[-57.292772927729274,54.46899404758611],[-57.285572855728546,54.48250266574516],[-57.2459724597246,54.48419124301503]]],[[[-130.81630816308163,54.48587982028491],[-130.7911079110791,54.494322706634335],[-130.7659076590766,54.46899404758611],[-130.72990729907298,54.4385996567282],[-130.72990729907298,54.4200253067595],[-130.78390783907838,54.41158242041007],[-130.82350823508236,54.4200253067595],[-130.8271082710827,54.4385996567282],[-130.87030870308703,54.43522250218845],[-130.8631086310863,54.45548542942703],[-130.81630816308163,54.48587982028491]]],[[[-57.30357303573035,54.5753744155887],[-57.27477274772747,54.58044014739835],[-57.27117271172712,54.5669315292393],[-57.281972819728196,54.556800065619996],[-57.27117271172712,54.54498002473082],[-57.25317253172531,54.53822571565129],[-57.25317253172531,54.52640567476212],[-57.267572675726754,54.502765592983735],[-57.292772927729274,54.502765592983735],[-57.33957339573395,54.50107701571386],[-57.361173611736106,54.507831324793386],[-57.36477364773647,54.52302852022234],[-57.35037350373503,54.54160287019104],[-57.34677346773468,54.55511148835012],[-57.30357303573035,54.5753744155887]]],[[[139.22599225992263,54.58888303374778],[139.24039240392403,54.58888303374778],[139.26199261992622,54.59901449736705],[139.26919269192695,54.61083453825623],[139.27639276392767,54.61252311552613],[139.27639276392767,54.60745738371648],[139.26199261992622,54.592260188287526],[139.2439924399244,54.58044014739835],[139.2187921879219,54.58044014739835],[139.21519215192154,54.585505879208],[139.22599225992263,54.58888303374778]]],[[[-131.09711097110971,54.627720310955056],[-131.05751057510577,54.62603173368518],[-131.05031050310504,54.605768806446605],[-131.06831068310683,54.587194456477874],[-131.089910899109,54.58212872466822],[-131.10071100711008,54.5956373428273],[-131.09711097110971,54.627720310955056]]],[[[138.18918189181892,54.71552632898897],[138.2251822518225,54.71552632898897],[138.23958239582396,54.7138377517191],[138.23238232382323,54.707083442639544],[138.2107821078211,54.70032913356002],[138.19638196381965,54.70032913356002],[138.1819818198182,54.707083442639544],[138.1819818198182,54.71552632898897],[138.18918189181892,54.71552632898897]]],[[[-133.519935199352,54.81346381064216],[-133.519935199352,54.80839807883251],[-133.51633516335164,54.796578037943334],[-133.51633516335164,54.78306941978428],[-133.52353523535237,54.766183647085455],[-133.53073530735307,54.76787222435533],[-133.5451354513545,54.779692265244506],[-133.5451354513545,54.78475799705416],[-133.5451354513545,54.79488946067346],[-133.5451354513545,54.79995519248311],[-133.5451354513545,54.801643769752985],[-133.5451354513545,54.80502092429276],[-133.5451354513545,54.81684096518194],[-133.5451354513545,54.82190669699159],[-133.5451354513545,54.832038160610864],[-133.5379353793538,54.83541531515064],[-133.53073530735307,54.83034958334099],[-133.519935199352,54.82021811972169],[-133.519935199352,54.81346381064216]]],[[[-131.19071190711907,55.103899101061984],[-131.1871118711187,55.07519328747398],[-131.19071190711907,55.04817605115585],[-131.2159121591216,55.04817605115585],[-131.25551255512556,55.068438978394454],[-131.24471244712447,55.09207906017281],[-131.20511205112052,55.11065341014151],[-131.19071190711907,55.103899101061984]]],[[[-133.30753307533075,55.43148309141924],[-133.2679326793268,55.443303132308415],[-133.23553235532356,55.43992597776864],[-133.23913239132392,55.41459731872041],[-133.2751327513275,55.40446585510111],[-133.31473314733148,55.40446585510111],[-133.3219332193322,55.42304020506981],[-133.30753307533075,55.43148309141924]]],[[[-76.72936729367294,56.160948472008556],[-76.72576725767257,56.15419416292903],[-76.7149671496715,56.1373083902302],[-76.72216722167221,56.125488349341026],[-76.73296732967329,56.1187340402615],[-76.77616776167761,56.10353684483255],[-76.77976779767798,56.1086025766422],[-76.77256772567725,56.12379977207115],[-76.7689676896769,56.13899696750008],[-76.77256772567725,56.152505585659156],[-76.77256772567725,56.16601420381821],[-76.76536765367653,56.17614566743751],[-76.7581675816758,56.17952282197726],[-76.74376743767438,56.16601420381821],[-76.73656736567365,56.16263704927843],[-76.72936729367294,56.160948472008556]]],[[[-77.8489784897849,56.31460900356788],[-77.8849788497885,56.302788962678704],[-77.91377913779138,56.29772323086905],[-77.92817928179281,56.29941180813893],[-77.97137971379713,56.28590318997988],[-77.97857978579785,56.28590318997988],[-77.97137971379713,56.29603465359918],[-77.96417964179642,56.30616611721848],[-77.96057960579606,56.30954327175823],[-77.95697956979569,56.31123184902813],[-77.94977949779498,56.31292042629801],[-77.9389793897939,56.31123184902813],[-77.8489784897849,56.32305188991731],[-77.84177841778417,56.32305188991731],[-77.84177841778417,56.31967473537753],[-77.8489784897849,56.31460900356788]]],[[[-77.48537485374854,56.44294087607898],[-77.48177481774817,56.441252298809076],[-77.47817478174781,56.436186566999424],[-77.47817478174781,56.4311208351898],[-77.48537485374854,56.427743680650025],[-77.48897488974889,56.41761221703072],[-77.50337503375033,56.387217826172844],[-77.52137521375214,56.37539778528367],[-77.53577535775358,56.378774939823415],[-77.53577535775358,56.38890640344272],[-77.53577535775358,56.397349289792146],[-77.52857528575285,56.40410359887167],[-77.51417514175141,56.4108579079512],[-77.5069750697507,56.41761221703072],[-77.50337503375033,56.422677948840374],[-77.50337503375033,56.4294322579199],[-77.49977499774998,56.436186566999424],[-77.49257492574925,56.441252298809076],[-77.48537485374854,56.44294087607898]]],[[[-78.81018810188101,56.65739018935406],[-78.82098820988209,56.66076734389384],[-78.83178831788318,56.66921023024324],[-78.8389883898839,56.66921023024324],[-78.84978849788497,56.672587384783014],[-78.8389883898839,56.67596453932279],[-78.77778777787778,56.67596453932279],[-78.76338763387633,56.677653116592666],[-78.74898748987489,56.67596453932279],[-78.73818738187381,56.66752165297336],[-78.75258752587526,56.65739018935406],[-78.78138781387814,56.65570161208419],[-78.81018810188101,56.65739018935406]]],[[[-76.62496624966249,56.68103027113244],[-76.62496624966249,56.67934169386254],[-76.62856628566286,56.67596453932279],[-76.62496624966249,56.672587384783014],[-76.62136621366213,56.65570161208419],[-76.62136621366213,56.64894730300466],[-76.62496624966249,56.64388157119501],[-76.62496624966249,56.63375010757571],[-76.62136621366213,56.61686433487688],[-76.61776617766178,56.586469944019],[-76.62496624966249,56.56958417132017],[-76.64656646566465,56.55100982135147],[-76.65376653766538,56.54932124408157],[-76.65016650166501,56.561141284970745],[-76.65016650166501,56.574649903129824],[-76.65376653766538,56.588158521288875],[-76.65376653766538,56.6050442939877],[-76.64656646566465,56.62699579849618],[-76.63576635766357,56.65739018935406],[-76.63576635766357,56.71480181653007],[-76.62496624966249,56.70973608472045],[-76.61776617766178,56.69622746656137],[-76.62136621366213,56.68440742567219],[-76.62496624966249,56.68103027113244]]],[[[-76.65376653766538,57.07109162047533],[-76.65376653766538,57.06771446593558],[-76.66096660966609,57.06602588866568],[-76.67536675366753,57.06602588866568],[-76.69336693366934,57.0727801977452],[-76.70056700567005,57.082911661364506],[-76.70776707767077,57.10148601133321],[-76.70776707767077,57.109928897682636],[-76.71856718567186,57.131880402191115],[-76.72216722167221,57.14201186581042],[-76.71856718567186,57.14707759762004],[-76.72936729367294,57.15720906123934],[-76.73296732967329,57.17578341120807],[-76.73296732967329,57.18591487482735],[-76.72576725767257,57.190980606637],[-76.71136711367113,57.19604633844665],[-76.69696696966969,57.1926691839069],[-76.68256682566825,57.17071767939842],[-76.6789667896679,57.15214332942969],[-76.66816668166682,57.145389020350166],[-76.65736657366573,57.140323288540515],[-76.65376653766538,57.12850324765134],[-76.66096660966609,57.12006036130194],[-76.67176671766717,57.11668320676216],[-76.67536675366753,57.10824032041276],[-76.67176671766717,57.09810885679346],[-76.65376653766538,57.08797739317416],[-76.65376653766538,57.082911661364506],[-76.65736657366573,57.077845929554854],[-76.65736657366573,57.074468775015106],[-76.65376653766538,57.07109162047533]]],[[[-78.26658266582666,57.199423492986426],[-78.2629826298263,57.197734915716524],[-78.25578255782557,57.194357761176775],[-78.2629826298263,57.190980606637],[-78.27018270182701,57.190980606637],[-78.27738277382774,57.190980606637],[-78.28458284582845,57.189292029367124],[-78.28818288182882,57.190980606637],[-78.29178291782918,57.1926691839069],[-78.29538295382953,57.190980606637],[-78.2989829898299,57.18591487482735],[-78.30978309783097,57.17747198847795],[-78.32418324183242,57.172406256668296],[-78.33138331383313,57.17071767939842],[-78.34218342183422,57.17071767939842],[-78.35658356583565,57.17071767939842],[-78.38178381783817,57.17409483393817],[-78.38178381783817,57.17747198847795],[-78.37458374583746,57.18591487482735],[-78.36738367383674,57.189292029367124],[-78.36018360183601,57.18760345209725],[-78.36018360183601,57.190980606637],[-78.35658356583565,57.19604633844665],[-78.3529835298353,57.197734915716524],[-78.32418324183242,57.207866379335826],[-78.31338313383134,57.2095549566057],[-78.2989829898299,57.20617780206595],[-78.26658266582666,57.199423492986426]]],[[[-78.3349833498335,57.305803860989016],[-78.37818378183782,57.28891808829019],[-78.41418414184142,57.278786624670914],[-78.42858428584286,57.278786624670914],[-78.46818468184682,57.287229511020314],[-78.4789847898479,57.287229511020314],[-78.4789847898479,57.29060666556009],[-78.47538475384754,57.297360974639616],[-78.45738457384573,57.30411528371914],[-78.38178381783817,57.3294439427674],[-78.34578345783457,57.327755365497495],[-78.32778327783278,57.31762390187819],[-78.3349833498335,57.305803860989016]]],[[[-152.2869228692287,57.39698703356268],[-152.26172261722616,57.390232724483155],[-152.25452254522546,57.38347841540363],[-152.26892268922688,57.37503552905423],[-152.29772297722977,57.363215488165054],[-152.31572315723156,57.363215488165054],[-152.30132301323013,57.37334695178433],[-152.2869228692287,57.39698703356268]]],[[[-76.79056790567905,57.33619825184692],[-76.79056790567905,57.34464113819632],[-76.80856808568085,57.36490406543493],[-76.81576815768157,57.38010126086385],[-76.81936819368194,57.390232724483155],[-76.82296822968229,57.40036418810246],[-76.83376833768337,57.408807074451886],[-76.8409684096841,57.41893853807116],[-76.83376833768337,57.425692847150685],[-76.82656826568265,57.42231569261094],[-76.81936819368194,57.41556138353141],[-76.80856808568085,57.412184228991634],[-76.80136801368013,57.40542991991211],[-76.77256772567725,57.390232724483155],[-76.7581675816758,57.38010126086385],[-76.75456754567546,57.37503552905423],[-76.75096750967509,57.36996979724458],[-76.74376743767438,57.35983833362528],[-76.74376743767438,57.349706870005974],[-76.74736747367473,57.341263983656575],[-76.75096750967509,57.33450967457702],[-76.75096750967509,57.32606678822762],[-76.74376743767438,57.31593532460832],[-76.74016740167401,57.305803860989016],[-76.73296732967329,57.29398382009984],[-76.74016740167401,57.283852356480566],[-76.75456754567546,57.28047520194079],[-76.76536765367653,57.28554093375044],[-76.7689676896769,57.30411528371914],[-76.77616776167761,57.31086959279867],[-76.78336783367833,57.32100105641797],[-76.79056790567905,57.33619825184692]]],[[[-136.13716137161373,58.2649157502824],[-136.14436144361443,58.285178677521],[-136.10836108361084,58.303753027489705],[-136.04356043560435,58.31895022291866],[-136.02916029160292,58.29531014114028],[-136.06156061560614,58.268292904822175],[-136.11196111961118,58.25816144120287],[-136.13716137161373,58.2649157502824]]],[[[-135.71955719557195,58.34596745923676],[-135.7159571595716,58.37129611828502],[-135.65475654756548,58.379739004634416],[-135.56835568355683,58.37298469555489],[-135.5431554315543,58.334147418347584],[-135.59355593555935,58.32739310926806],[-135.6691566915669,58.330770263807835],[-135.71955719557195,58.34596745923676]]],[[[-78.63018630186302,58.77993181759663],[-78.62658626586266,58.77824324032673],[-78.62658626586266,58.77317750851708],[-78.63018630186302,58.771488931247205],[-78.63738637386373,58.77317750851708],[-78.64818648186481,58.771488931247205],[-78.65178651786518,58.77317750851708],[-78.65538655386554,58.77824324032673],[-78.65538655386554,58.77993181759663],[-78.68418684186841,58.77993181759663],[-78.69498694986949,58.77824324032673],[-78.70578705787058,58.77993181759663],[-78.70938709387093,58.78668612667616],[-78.70218702187022,58.79175185848581],[-78.69858698586985,58.793440435755684],[-78.69138691386914,58.79175185848581],[-78.68418684186841,58.79006328121591],[-78.68058680586806,58.78837470394603],[-78.67338673386733,58.79175185848581],[-78.68058680586806,58.79512901302556],[-78.69138691386914,58.798506167565336],[-78.68418684186841,58.80188332210511],[-78.65178651786518,58.80188332210511],[-78.63738637386373,58.79681759029546],[-78.64458644586446,58.79512901302556],[-78.63378633786337,58.79175185848581],[-78.63018630186302,58.784997549406285],[-78.63018630186302,58.77993181759663]]],[[[-78.90018900189001,58.83227771296299],[-78.89658896588965,58.82214624934369],[-78.88578885788857,58.81032620845451],[-78.88578885788857,58.80863763118464],[-78.90018900189001,58.81370336299429],[-78.90378903789038,58.81708051753404],[-78.90378903789038,58.820457672073815],[-78.90738907389074,58.82383482661356],[-78.91458914589145,58.825523403883466],[-78.9289892898929,58.828900558423214],[-78.93978939789397,58.833966290232866],[-78.94338943389434,58.83734344477264],[-78.93978939789397,58.842409176582294],[-78.93618936189361,58.847474908391945],[-78.93618936189361,58.86436068109077],[-78.92538925389253,58.86604925836065],[-78.91458914589145,58.85422921747147],[-78.90018900189001,58.83227771296299]]],[[[-152.0349203492035,58.95216669912466],[-152.01332013320132,58.945412390045135],[-152.01332013320132,58.940346658235484],[-152.0421204212042,58.93021519461618],[-152.04932049320493,58.923460885536656],[-152.05652056520566,58.91501799918723],[-152.06372063720636,58.91164084464748],[-152.07452074520745,58.91501799918723],[-152.07452074520745,58.92008373099688],[-152.0709207092071,58.926838040076404],[-152.06372063720636,58.931903771886056],[-152.06012060120602,58.93865808096561],[-152.06372063720636,58.94203523550536],[-152.06012060120602,58.94372381277523],[-152.04572045720457,58.94372381277523],[-152.04572045720457,58.94710096731501],[-152.0421204212042,58.95216669912466],[-152.0349203492035,58.95216669912466]]],[[[-68.99648996489965,59.016332635380195],[-68.98568985689856,59.00451259449102],[-68.97488974889748,58.989315399062065],[-69.01449014490144,58.972429626363265],[-69.0720907209072,58.96229816274396],[-69.11889118891189,58.95723243093431],[-69.11169111691116,58.97074104909336],[-69.08289082890829,58.99606970814162],[-69.06129061290612,59.011266903570544],[-68.99648996489965,59.016332635380195]]],[[[-80.55260552605526,59.11089296249364],[-80.53820538205382,59.105827230683985],[-80.53460534605345,59.100761498874334],[-80.53820538205382,59.09400718979481],[-80.5490054900549,59.09063003525503],[-80.57780577805778,59.092318612524934],[-80.58140581405814,59.09907292160446],[-80.57060570605705,59.105827230683985],[-80.55260552605526,59.11089296249364]]],[[[-151.68931689316892,59.12946731246234],[-151.67131671316713,59.11764727157316],[-151.64251642516425,59.11595869430329],[-151.6461164611646,59.10413865341411],[-151.6641166411664,59.09738434433456],[-151.67851678516786,59.100761498874334],[-151.70011700117,59.09738434433456],[-151.71451714517144,59.105827230683985],[-151.72171721717217,59.12271300338281],[-151.70731707317074,59.13115588973221],[-151.68931689316892,59.12946731246234]]],[[[5.765457654576551,59.11764727157316],[5.776257762577643,59.11258153976351],[5.779857798577979,59.100761498874334],[5.776257762577643,59.08049857163576],[5.751057510575123,59.07205568528633],[5.668256682566835,59.100761498874334],[5.5998559985600025,59.11595869430329],[5.574655746557482,59.12440158065269],[5.585455854558546,59.127778735192464],[5.592655926559274,59.132844467002116],[5.607056070560702,59.13453304427199],[5.625056250562523,59.13115588973221],[5.635856358563586,59.13115588973221],[5.646656466564679,59.13115588973221],[5.679056790567898,59.12271300338281],[5.697056970569719,59.12102442611294],[5.722257222572239,59.12609015792259],[5.740257402574031,59.12440158065269],[5.765457654576551,59.11764727157316]]],[[[-151.4661146611466,59.13791019881177],[-151.4481144811448,59.136221621541864],[-151.43371433714339,59.13453304427199],[-151.43731437314372,59.127778735192464],[-151.42651426514266,59.11764727157316],[-151.43731437314372,59.10751580795386],[-151.45891458914588,59.10920438522376],[-151.48051480514806,59.11764727157316],[-151.50931509315092,59.127778735192464],[-151.49851498514985,59.13791019881177],[-151.4661146611466,59.13791019881177]]],[[[-151.85851858518586,59.163238857859994],[-151.81531815318152,59.16999316693952],[-151.790117901179,59.15310739424069],[-151.8009180091801,59.13959877608164],[-151.8549185491855,59.14466450789129],[-151.89451894518945,59.14466450789129],[-151.88731887318875,59.15648454878047],[-151.85851858518586,59.163238857859994]]],[[[149.03249032490328,59.191944671448],[149.039690396904,59.203764712337176],[149.05049050490504,59.203764712337176],[149.07209072090723,59.19701040325765],[149.09009090090905,59.203764712337176],[149.1188911889119,59.20883044414683],[149.1404914049141,59.20714186687695],[149.13689136891372,59.19701040325765],[149.1188911889119,59.190256094178125],[149.09729097290972,59.17505889874917],[149.10449104491045,59.16155028059012],[149.07929079290795,59.16155028059012],[149.03609036090364,59.16999316693952],[149.03249032490328,59.1835017850986],[149.03249032490328,59.191944671448]]],[[[5.46305463054631,59.2105190214167],[5.466654666546674,59.203764712337176],[5.466654666546674,59.19701040325765],[5.46305463054631,59.1835017850986],[5.452254522545246,59.163238857859994],[5.441454414544154,59.15817312605034],[5.434254342543426,59.16155028059012],[5.430654306543062,59.16492743512987],[5.434254342543426,59.16661601239977],[5.430654306543062,59.16999316693952],[5.427054270542726,59.17505889874917],[5.423454234542362,59.17843605328895],[5.394653946539478,59.18856751690825],[5.383853838538386,59.195321825987776],[5.376653766537686,59.20714186687695],[5.376653766537686,59.21896190776613],[5.376653766537686,59.22740479411553],[5.383853838538386,59.23415910319508],[5.394653946539478,59.24091341227461],[5.405454054540542,59.24260198954448],[5.41265412654127,59.24091341227461],[5.427054270542726,59.23584768046496],[5.430654306543062,59.23247052592518],[5.43785437854379,59.22909337138543],[5.452254522545246,59.22233906230588],[5.46305463054631,59.2105190214167]]],[[[-146.3252632526325,59.45198557100994],[-146.31446314463145,59.45536272554969],[-146.30726307263072,59.44691983920029],[-146.32166321663217,59.426656911961686],[-146.33966339663397,59.41145971653276],[-146.35766357663576,59.40977113926286],[-146.35766357663576,59.42159118015206],[-146.3252632526325,59.45198557100994]]],[[[-80.52020520205201,59.69514069787306],[-80.5130051300513,59.69682927514293],[-80.50940509405093,59.69176354333328],[-80.50940509405093,59.68332065698388],[-80.52380523805238,59.67487777063445],[-80.55260552605526,59.649549111586225],[-80.5670056700567,59.64617195704645],[-80.57420574205742,59.652926266125974],[-80.57780577805778,59.657991997935625],[-80.58860588605886,59.6613691524754],[-80.58140581405814,59.6698120388248],[-80.54180541805418,59.68332065698388],[-80.53820538205382,59.688386388793504],[-80.52020520205201,59.69514069787306]]],[[[-80.3870038700387,59.712026470571885],[-80.37980379803798,59.712026470571885],[-80.36900369003689,59.70864931603211],[-80.37260372603726,59.70527216149233],[-80.38340383403833,59.70020642968268],[-80.3870038700387,59.693452120603155],[-80.39060390603906,59.685009234253755],[-80.39780397803978,59.68332065698388],[-80.40860408604085,59.685009234253755],[-80.40860408604085,59.68163207971398],[-80.40860408604085,59.67487777063445],[-80.41580415804158,59.66812346155493],[-80.4230042300423,59.6613691524754],[-80.43020430204302,59.652926266125974],[-80.44460444604445,59.64786053431632],[-80.44820448204482,59.657991997935625],[-80.43740437404374,59.67825492517423],[-80.4230042300423,59.69514069787306],[-80.39780397803978,59.706960738762234],[-80.3870038700387,59.712026470571885]]],[[[22.49842498424985,59.87750704302039],[22.509225092250944,59.875818465750484],[22.51282512825128,59.87412988848061],[22.50562505625058,59.86906415667096],[22.444424444244447,59.85217838397213],[22.426424264242655,59.84880122943238],[22.415624156241563,59.85217838397213],[22.415624156241563,59.86062127032156],[22.42282422824229,59.86568700213121],[22.426424264242655,59.86568700213121],[22.433624336243383,59.867375579401084],[22.458824588245903,59.872441311210736],[22.48042480424806,59.87412988848061],[22.48762487624876,59.875818465750484],[22.49842498424985,59.87750704302039]]],[[[20.280802808028085,59.97713310194345],[20.30240302403024,59.99908460645193],[20.338403384033853,60.019347533690535],[20.363603636036373,60.01765895642063],[20.399603996039957,60.00921607007123],[20.43560435604357,60.00415033826158],[20.44640446404466,59.99570745191215],[20.399603996039957,59.98051025648323],[20.367203672036737,59.9821988337531],[20.338403384033853,59.98051025648323],[20.324003240032397,59.97713310194345],[20.324003240032397,59.961935906514526],[20.306003060030605,59.9534930201651],[20.28440284402845,59.95855875197475],[20.280802808028085,59.97713310194345]]],[[[-152.5641256412564,60.14936798347148],[-152.5569255692557,60.13417078804255],[-152.5569255692557,60.1088421289943],[-152.57852578525785,60.10715355172442],[-152.6109261092611,60.130793633502776],[-152.6289262892629,60.14936798347148],[-152.63612636126362,60.157810869820906],[-152.63972639726398,60.16794233344021],[-152.63252632526326,60.174696642519734],[-152.62172621726216,60.179762374329385],[-152.60372603726037,60.17807379705951],[-152.58572585725858,60.17131948797996],[-152.56772567725676,60.15949944709078],[-152.5641256412564,60.14936798347148]]],[[[21.60201602016022,60.25405977420422],[21.61641616416165,60.2557483514741],[21.62721627216274,60.25237119693435],[21.620016200162013,60.24392831058492],[21.60921609216092,60.23548542423552],[21.605616056160557,60.228731115155966],[21.60201602016022,60.22197680607644],[21.59121591215913,60.22197680607644],[21.587615876158765,60.22197680607644],[21.5768157681577,60.22197680607644],[21.562415624156245,60.22704253788609],[21.562415624156245,60.24055115604517],[21.569615696156973,60.2557483514741],[21.587615876158765,60.269256969633176],[21.605616056160557,60.269256969633176],[21.605616056160557,60.26081408328375],[21.598415984159857,60.25743692874397],[21.60201602016022,60.25405977420422]]],[[[-147.3620736207362,60.30133993776093],[-147.34767347673477,60.30133993776093],[-147.3440734407344,60.29796278322118],[-147.3440734407344,60.2844541650621],[-147.34767347673477,60.2743227014428],[-147.36927369273693,60.26250266055362],[-147.47367473674737,60.228731115155966],[-147.49167491674916,60.228731115155966],[-147.49527495274953,60.237174001505394],[-147.49167491674916,60.25237119693435],[-147.50247502475025,60.25912550601387],[-147.49527495274953,60.26250266055362],[-147.46647466474664,60.2658798150934],[-147.44847448474485,60.272634124172924],[-147.44487444874449,60.272634124172924],[-147.43767437674376,60.272634124172924],[-147.36567365673656,60.299651360491055],[-147.3620736207362,60.30133993776093]]],[[[21.087210872108727,60.48032912836851],[21.094410944109455,60.47526339655886],[21.09801098010982,60.46344335566968],[21.087210872108727,60.451623314780505],[21.080010800108,60.44824616024073],[21.06561065610657,60.455000469320254],[21.058410584105843,60.46682051020943],[21.06561065610657,60.473574819288984],[21.076410764107635,60.48032912836851],[21.083610836108363,60.48032912836851],[21.087210872108727,60.48032912836851]]],[[[4.847448474484764,60.62892392811818],[4.8510485104851,60.620481041768755],[4.8510485104851,60.61372673268923],[4.8438484384844,60.612038155419356],[4.840248402484036,60.606972423609704],[4.8438484384844,60.59008665091088],[4.836648366483672,60.5867094963711],[4.822248222482244,60.585020919101225],[4.80064800648006,60.5867094963711],[4.782647826478268,60.593463805450654],[4.779047790477904,60.598529537260276],[4.789847898478996,60.5968409599904],[4.789847898478996,60.60021811453018],[4.786247862478632,60.612038155419356],[4.786247862478632,60.615415309959104],[4.789847898478996,60.61372673268923],[4.79344793447936,60.61372673268923],[4.79344793447936,60.615415309959104],[4.79344793447936,60.61710388722901],[4.789847898478996,60.63061250538806],[4.789847898478996,60.63736681446758],[4.786247862478632,60.64412112354711],[4.786247862478632,60.64918685535676],[4.786247862478632,60.655941164436314],[4.789847898478996,60.66607262805559],[4.80064800648006,60.66776120532549],[4.811448114481152,60.66100689624594],[4.822248222482244,60.655941164436314],[4.822248222482244,60.65087543262666],[4.822248222482244,60.64580970081701],[4.82584825848258,60.64412112354711],[4.829448294482944,60.64074396900736],[4.829448294482944,60.63567823719771],[4.82584825848258,60.63061250538806],[4.829448294482944,60.62892392811818],[4.836648366483672,60.63061250538806],[4.847448474484764,60.62892392811818]]],[[[-173.06273062730628,60.642432546277234],[-173.05553055530555,60.63061250538806],[-173.0519305193052,60.62385819630853],[-173.05913059130592,60.620481041768755],[-173.06993069930698,60.62385819630853],[-173.1059310593106,60.64412112354711],[-173.11313113131132,60.65256400989654],[-173.11313113131132,60.66438405078571],[-173.0951309513095,60.67958124621467],[-173.06993069930698,60.68633555529419],[-173.06273062730628,60.677892668944764],[-173.06273062730628,60.669449782595365],[-173.05913059130592,60.65931831897606],[-173.06273062730628,60.647498278086886],[-173.06273062730628,60.642432546277234]]],[[[21.260012600126004,60.85350470501257],[21.267212672126732,60.851816127742694],[21.267212672126732,60.83830750958364],[21.263612636126368,60.829864623234215],[21.24921249212494,60.83324177777399],[21.209612096120964,60.84506181866317],[21.2060120601206,60.843373241393294],[21.202412024120235,60.84506181866317],[21.202412024120235,60.84843897320292],[21.195211952119536,60.851816127742694],[21.188011880118808,60.856881859552345],[21.188011880118808,60.86025901409212],[21.2060120601206,60.86363616863187],[21.220412204122056,60.85857043682222],[21.22401224012242,60.85012755047282],[21.227612276122755,60.84675039593304],[21.234812348123484,60.84843897320292],[21.24201242012421,60.84843897320292],[21.245612456124576,60.84675039593304],[21.252812528125276,60.84675039593304],[21.260012600126004,60.85350470501257]]],[[[-146.8220682206822,60.84168466412339],[-146.80766807668076,60.85350470501257],[-146.77526775267754,60.856881859552345],[-146.76086760867608,60.86870190044152],[-146.76086760867608,60.878833364060824],[-146.73926739267392,60.870390477711396],[-146.7140671406714,60.85350470501257],[-146.70326703267034,60.83999608685352],[-146.71766717667177,60.82817604596434],[-146.73566735667356,60.81466742780526],[-146.76446764467644,60.80115880964621],[-146.7968679686797,60.80622454145586],[-146.81126811268112,60.81804458234504],[-146.8220682206822,60.84168466412339]]],[[[-147.09567095670957,60.89740771402953],[-147.07767077670775,60.892341982219875],[-147.07767077670775,60.887276250410224],[-147.08487084870848,60.878833364060824],[-147.1028710287103,60.865324745901745],[-147.13887138871388,60.85519328228247],[-147.16767167671676,60.85519328228247],[-147.1820718207182,60.85857043682222],[-147.18927189271892,60.86363616863187],[-147.18567185671856,60.86870190044152],[-147.1820718207182,60.87545620952105],[-147.18927189271892,60.87714478679092],[-147.21087210872108,60.87714478679092],[-147.2180721807218,60.87714478679092],[-147.22167221672217,60.87545620952105],[-147.2180721807218,60.8720790549813],[-147.22887228872287,60.86701332317165],[-147.25407254072542,60.86870190044152],[-147.31167311673116,60.87376763225117],[-147.31887318873189,60.87714478679092],[-147.31887318873189,60.878833364060824],[-147.31167311673116,60.8805219413307],[-147.30447304473046,60.88221051860057],[-147.29727297272973,60.887276250410224],[-147.290072900729,60.88896482768013],[-147.27567275672757,60.88896482768013],[-147.26487264872648,60.88896482768013],[-147.25767257672578,60.89740771402953],[-147.2468724687247,60.90247344583918],[-147.23247232472323,60.90416202310905],[-147.22527225272253,60.90753917764883],[-147.21447214472144,60.90753917764883],[-147.21447214472144,60.90247344583918],[-147.2180721807218,60.89403055948975],[-147.21447214472144,60.892341982219875],[-147.20727207272074,60.8990962912994],[-147.19287192871928,60.90416202310905],[-147.1820718207182,60.90247344583918],[-147.1748717487175,60.9007848685693],[-147.17847178471783,60.89740771402953],[-147.17847178471783,60.89403055948975],[-147.16767167671676,60.892341982219875],[-147.14247142471424,60.9092277549187],[-147.13527135271352,60.90753917764883],[-147.13527135271352,60.9007848685693],[-147.1280712807128,60.90247344583918],[-147.1208712087121,60.905850600378955],[-147.1208712087121,60.89740771402953],[-147.13167131671315,60.887276250410224],[-147.1568715687157,60.87545620952105],[-147.15327153271534,60.87376763225117],[-147.13167131671315,60.878833364060824],[-147.1208712087121,60.88221051860057],[-147.11367113671136,60.883899095870476],[-147.10647106471066,60.887276250410224],[-147.1028710287103,60.89740771402953],[-147.09567095670957,60.8990962912994],[-147.09567095670957,60.89740771402953]]],[[[-69.92169921699217,61.01391954565145],[-69.91089910899109,61.00041092749237],[-69.95049950499505,60.985213732063414],[-69.95049950499505,60.96495080482484],[-69.9720997209972,60.95313076393566],[-69.97929979299792,60.92949068215731],[-70.00450004500044,60.93455641396696],[-70.00090000900009,60.968327959364615],[-70.01170011700117,60.99703377295262],[-69.98649986499865,61.01898527746107],[-69.95769957699576,61.03418247289002],[-69.92169921699217,61.030805318350275],[-69.92169921699217,61.01391954565145]]],[[[21.422014220142216,61.17602296356017],[21.429214292142916,61.172645809020395],[21.43281432814328,61.17095723175052],[21.422014220142216,61.172645809020395],[21.389613896138968,61.18108869536982],[21.368013680136812,61.17602296356017],[21.353613536135356,61.17602296356017],[21.346413464134656,61.177711540830046],[21.35001350013502,61.177711540830046],[21.346413464134656,61.18108869536982],[21.342813428134292,61.191220158989125],[21.346413464134656,61.19628589079878],[21.353613536135356,61.19797446806865],[21.35721357213572,61.199663045338525],[21.35721357213572,61.2030401998783],[21.364413644136448,61.20810593168795],[21.378813788137876,61.21486024076748],[21.389613896138968,61.20979450895783],[21.386013860138604,61.2013516226084],[21.389613896138968,61.192908736259],[21.422014220142216,61.17602296356017]]],[[[-71.55971559715597,61.333060649659274],[-71.48771487714876,61.33643780419902],[-71.48411484114841,61.319552031500194],[-71.48771487714876,61.302666258801366],[-71.51291512915128,61.29928910426162],[-71.55611556115561,61.29591194972184],[-71.58491584915849,61.302666258801366],[-71.58491584915849,61.324617763309845],[-71.55971559715597,61.333060649659274]]],[[[21.522815228152297,61.6336274036984],[21.52641526415266,61.62856167188875],[21.522815228152297,61.62518451734897],[21.51561515615157,61.62518451734897],[21.512015120151204,61.62180736280919],[21.50841508415084,61.618430208269444],[21.50121501215014,61.618430208269444],[21.479614796147956,61.62011878553932],[21.461614616146164,61.626873094618844],[21.461614616146164,61.62856167188875],[21.472414724147256,61.63025024915862],[21.48321483214832,61.64038171277792],[21.522815228152297,61.6336274036984]]],[[[4.836648366483672,61.67415325817558],[4.833048330483308,61.680907567255105],[4.829448294482944,61.689350453604504],[4.833048330483308,61.69610476268406],[4.840248402484036,61.69948191722381],[4.847448474484764,61.70117049449368],[4.858248582485828,61.702859071763584],[4.861848618486192,61.707924803573235],[4.86904869048692,61.71467911265276],[4.879848798487984,61.71130195811298],[4.87624876248762,61.70117049449368],[4.883448834488348,61.69610476268406],[4.890648906489076,61.68766187633463],[4.89424894248944,61.68428472179485],[4.905049050490504,61.67584183544545],[4.905049050490504,61.6606446400165],[4.90144901449014,61.6522017536671],[4.90144901449014,61.653890330936974],[4.8978489784898045,61.658956062746626],[4.890648906489076,61.6623332172864],[4.883448834488348,61.66402179455628],[4.865448654486556,61.658956062746626],[4.858248582485828,61.6623332172864],[4.854648546485464,61.66402179455628],[4.847448474484764,61.66571037182615],[4.840248402484036,61.66908752636593],[4.836648366483672,61.67415325817558]]],[[[-72.09252092520924,61.895356880530215],[-72.02052020520205,61.876782530561485],[-71.99531995319953,61.87002822148196],[-71.97371973719737,61.85820818059278],[-72.01692016920168,61.85314244878313],[-72.06012060120601,61.84976529424338],[-72.10692106921069,61.87002822148196],[-72.1321213212132,61.88860257145066],[-72.11412114121141,61.903799766879615],[-72.09252092520924,61.895356880530215]]],[[[-92.79992799927999,61.94770277589657],[-92.7711277112771,61.9358827350074],[-92.78912789127891,61.92912842592784],[-92.8179281792818,61.9358827350074],[-92.83592835928359,61.925751271388094],[-92.86472864728647,61.930817003197745],[-92.87552875528755,61.939259889547145],[-92.85032850328503,61.94770277589657],[-92.79992799927999,61.94770277589657]]],[[[-72.41292412924129,62.03888594847024],[-72.3841238412384,62.03213163939071],[-72.32652326523265,62.015245866691885],[-72.35172351723517,62.00004867126293],[-72.39492394923948,62.01355728942198],[-72.44172441724417,62.02706590758106],[-72.46332463324633,62.037197371200335],[-72.41292412924129,62.03888594847024]]],[[[-165.9490594905949,62.028754484850936],[-165.94545945459456,62.02537733031116],[-165.94545945459456,62.01862302123163],[-165.9490594905949,62.015245866691885],[-165.95625956259562,62.020311598501536],[-165.96345963459635,62.02200017577141],[-165.9670596705967,62.020311598501536],[-165.97425974259744,62.01862302123163],[-165.98145981459814,62.015245866691885],[-165.9850598505985,62.015245866691885],[-165.98865988659887,62.01862302123163],[-165.99945999459993,62.01862302123163],[-166.01026010260102,62.023688753041284],[-166.01026010260102,62.037197371200335],[-165.9958599585996,62.05408314389916],[-165.98145981459814,62.06590318478837],[-165.97065970659708,62.072657493867894],[-165.9670596705967,62.07096891659799],[-165.97065970659708,62.059148875708814],[-165.97785977859778,62.04395168027989],[-165.96345963459635,62.03213163939071],[-165.9490594905949,62.028754484850936]]],[[[-92.64152641526415,62.06083745297872],[-92.63792637926379,62.04057452574011],[-92.65232652326523,62.02706590758106],[-92.68832688326883,62.04226310300999],[-92.69552695526954,62.05746029843894],[-92.6991269912699,62.07434607113777],[-92.64152641526415,62.06083745297872]]],[[[-66.43686436864368,62.89499462430075],[-66.36486364863649,62.8713545425224],[-66.34326343263432,62.84940303801392],[-66.41166411664116,62.847714460744044],[-66.49446494464944,62.87810885160192],[-66.570065700657,62.915257551539355],[-66.56286562865628,62.93045474696831],[-66.43686436864368,62.89499462430075]]],[[[21.209612096120964,62.945651942397234],[21.19161191611917,62.95409482874666],[21.184411844118443,62.950717674206885],[21.16641166411665,62.945651942397234],[21.14841148411486,62.95409482874666],[21.137611376113767,62.96253771509606],[21.137611376113767,62.96760344690571],[21.14121141211413,62.96760344690571],[21.14841148411486,62.96591486963584],[21.152011520115195,62.964226292365964],[21.15561155611556,62.96760344690571],[21.159211592115923,62.97604633325514],[21.152011520115195,62.97942348779489],[21.14121141211413,62.98448921960454],[21.13041130411304,62.99293210595397],[21.13041130411304,63.00137499230337],[21.137611376113767,63.00644072411302],[21.144811448114496,63.0098178786528],[21.152011520115195,63.0098178786528],[21.15561155611556,63.00644072411302],[21.159211592115923,63.004752146843146],[21.184411844118443,62.999686415033494],[21.195211952119536,62.99462068322384],[21.2060120601206,62.986177796874415],[21.21681216812169,62.97435775598524],[21.220412204122056,62.96084913782619],[21.220412204122056,62.950717674206885],[21.21681216812169,62.94734051966714],[21.209612096120964,62.945651942397234]]],[[[-68.14688146881468,63.27323593275449],[-68.05688056880568,63.222578614658005],[-68.04968049680497,63.192184223800126],[-68.12888128881288,63.22089003738813],[-68.18648186481865,63.249595850976135],[-68.21528215282153,63.27661308729424],[-68.14688146881468,63.27323593275449]]],[[[-68.02448024480245,63.30025316907262],[-67.93087930879308,63.23271007827731],[-67.89487894878948,63.18880706926035],[-67.95967959679597,63.21920146011823],[-68.03168031680316,63.271547355484614],[-68.09288092880928,63.320516096311195],[-68.02448024480245,63.30025316907262]]],[[[-67.85167851678517,63.34584475535945],[-67.84447844478444,63.325581828120846],[-67.81927819278192,63.29181028272319],[-67.8660786607866,63.29181028272319],[-67.91287912879129,63.33740186901002],[-67.95247952479524,63.38130487802698],[-67.96327963279633,63.410010691614985],[-67.91287912879129,63.39312491891616],[-67.85167851678517,63.34584475535945]]],[[[-20.262802628026265,63.445470814282515],[-20.2592025920259,63.440405082472864],[-20.2520025200252,63.43027361885356],[-20.2592025920259,63.418453577964385],[-20.270002700026993,63.40832211434511],[-20.280802808028085,63.40325638253546],[-20.288002880028785,63.40663353707521],[-20.29160291602915,63.41507642342464],[-20.298802988029877,63.423519309774036],[-20.306003060030605,63.43533935066321],[-20.30240302403024,63.445470814282515],[-20.28440284402842,63.45053654609217],[-20.2592025920259,63.45053654609217],[-20.255602556025565,63.44884796882229],[-20.262802628026265,63.445470814282515]]],[[[-64.04284042840428,63.56367122317431],[-64.06444064440645,63.53327683231643],[-64.08964089640897,63.4859966687597],[-64.14724147241472,63.54003114139596],[-64.16884168841688,63.60419707765149],[-64.13644136441364,63.61770569581054],[-64.04284042840428,63.56367122317431]]],[[[-76.48456484564845,64.18169050395139],[-76.52416524165241,64.19688769938031],[-76.56736567365674,64.20533058572974],[-76.57096570965709,64.23403639931774],[-76.53136531365313,64.24585644020692],[-76.49896498964989,64.24247928566714],[-76.49536495364953,64.22390493569844],[-76.47016470164701,64.20533058572974],[-76.48456484564845,64.18169050395139]]],[[[-76.66456664566645,64.24247928566714],[-76.68976689766897,64.25261074928645],[-76.68976689766897,64.26443079017562],[-76.65376653766538,64.26274221290575],[-76.61416614166141,64.27118509925515],[-76.56376563765637,64.25429932655632],[-76.59616596165961,64.2391021311274],[-76.60696606966069,64.22052778115867],[-76.62856628566286,64.22221635842857],[-76.66456664566645,64.24247928566714]]],[[[-168.03708037080372,64.98545328441554],[-168.02628026280263,64.98038755260589],[-168.02628026280263,64.96856751171671],[-168.04788047880479,64.95843604809741],[-168.08028080280803,64.95674747082754],[-168.09828098280983,64.96519035717694],[-168.08748087480876,64.97869897533602],[-168.06588065880658,64.98545328441554],[-168.03708037080372,64.98545328441554]]],[[[-66.93366933669336,65.31641442931254],[-66.9660696606966,65.28264288391489],[-66.99846998469984,65.29784007934384],[-67.01647016470164,65.31979158385232],[-66.96966969669697,65.34680882017045],[-66.92286922869228,65.36538317013915],[-66.90126901269012,65.34512024290055],[-66.93366933669336,65.31641442931254]]],[[[-89.04509045090451,65.40590902461634],[-89.02349023490234,65.41435191096573],[-89.01269012690126,65.40759760188621],[-89.00909009090091,65.40084329280668],[-88.98748987489874,65.39240040645728],[-88.96948969489695,65.38733467464763],[-88.98028980289803,65.38226894283798],[-89.00189001890018,65.38564609737773],[-89.03069030690307,65.39071182918738],[-89.05589055890559,65.40084329280668],[-89.07389073890738,65.39577756099703],[-89.08829088290882,65.39240040645728],[-89.10269102691026,65.3974661382669],[-89.10269102691026,65.40928617915611],[-89.0990909909099,65.41604048823564],[-89.08829088290882,65.41097475642599],[-89.07749077490774,65.40759760188621],[-89.05949059490595,65.40928617915611],[-89.04509045090451,65.40590902461634]]],[[[-88.42948429484295,65.4869607335707],[-88.38268382683826,65.47176353814177],[-88.37188371883718,65.46163207452247],[-88.38988389883899,65.45825491998269],[-88.42228422284222,65.45656634271282],[-88.45828458284582,65.45487776544294],[-88.48348483484834,65.46500922906222],[-88.49068490684907,65.47345211541165],[-88.4870848708487,65.48189500176105],[-88.4510845108451,65.48189500176105],[-88.42948429484295,65.4869607335707]]],[[[-67.43407434074341,65.74193590132299],[-67.39087390873908,65.73687016951334],[-67.42327423274233,65.72673870589404],[-67.47727477274772,65.70816435592533],[-67.52767527675276,65.71323008773498],[-67.62127621276213,65.70141004684581],[-67.68247682476824,65.68959000595663],[-67.70047700477005,65.70141004684581],[-67.7040770407704,65.71660724227476],[-67.67527675276753,65.72673870589404],[-67.62487624876249,65.73349301497359],[-67.56007560075601,65.73855874678321],[-67.43407434074341,65.74193590132299]]],[[[-168.90828908289083,65.76895313764112],[-168.9010890108901,65.7621988285616],[-168.9010890108901,65.74700163313264],[-168.90828908289083,65.74024732405312],[-168.92628926289262,65.74024732405312],[-168.94068940689408,65.74362447859286],[-168.95148951489514,65.75375594221217],[-168.94428944289442,65.76388740583147],[-168.9190891908919,65.76895313764112],[-168.90828908289083,65.76895313764112]]],[[[-167.7778777787778,65.77233029218087],[-167.75267752677527,65.77739602399052],[-167.73827738277382,65.77739602399052],[-167.74187741877418,65.77233029218087],[-167.75987759877597,65.76388740583147],[-167.78147781477816,65.75882167402182],[-167.79227792277922,65.75375594221217],[-167.810278102781,65.74531305586277],[-167.82827828278283,65.73855874678321],[-167.84267842678426,65.73855874678321],[-167.849878498785,65.74362447859286],[-167.8318783187832,65.75206736494229],[-167.8210782107821,65.75882167402182],[-167.7778777787778,65.77233029218087]]],[[[-65.78525785257852,65.70141004684581],[-65.79965799657997,65.6828356968771],[-65.83565835658356,65.67776996506745],[-65.86085860858608,65.70478720138556],[-65.85725857258572,65.74869021040251],[-65.86445864458643,65.7807731785303],[-65.80685806858068,65.77739602399052],[-65.77085770857708,65.76388740583147],[-65.78525785257852,65.70141004684581]]],[[[-167.66987669876698,65.79428179668935],[-167.56547565475654,65.81623330119783],[-167.55467554675548,65.8179218784677],[-167.57267572675727,65.8094789921183],[-167.64827648276483,65.7909046421496],[-167.66267662676626,65.78246175580017],[-167.65907659076592,65.77233029218087],[-167.6410764107641,65.77401886945077],[-167.6950769507695,65.74024732405312],[-167.71667716677166,65.73855874678321],[-167.73107731077312,65.74531305586277],[-167.7238772387724,65.75882167402182],[-167.72027720277202,65.76895313764112],[-167.72027720277202,65.77739602399052],[-167.70227702277023,65.78583891033995],[-167.66987669876698,65.79428179668935]]],[[[-66.930069300693,65.94963090551857],[-66.96246962469624,65.95131948278845],[-66.98766987669876,65.97327098729693],[-67.0560705607056,65.9834024509162],[-67.08847088470884,65.97327098729693],[-67.10647106471065,65.95807379186797],[-67.1280712807128,65.97833671910658],[-67.14967149671496,65.99522249180541],[-67.12087120871209,66.00704253269458],[-67.05247052470524,66.00873110996446],[-66.96246962469624,65.99691106907528],[-66.92286922869228,65.9749595645668],[-66.930069300693,65.94963090551857]]],[[[-18.379983799837987,66.01210826450423],[-18.37278372783726,66.00704253269458],[-18.35838358383583,65.9935339145355],[-18.35838358383583,65.98171387364633],[-18.369183691836923,65.97833671910658],[-18.38358383583835,65.98002529637645],[-18.39078390783908,65.9834024509162],[-18.39798397983978,65.99015675999576],[-18.39798397983978,65.99691106907528],[-18.405184051840507,66.00873110996446],[-18.4159841598416,66.02392830539341],[-18.40878408784087,66.02730545993316],[-18.39078390783908,66.01886257358376],[-18.379983799837987,66.01210826450423]]],[[[-85.02025020250203,66.0830285098393],[-85.00225002250022,66.0745856234899],[-85.00945009450095,66.06614273714047],[-84.99864998649986,66.05769985079107],[-85.0310503105031,66.05094554171151],[-85.06345063450634,66.04925696444164],[-85.09225092250922,66.05094554171151],[-85.1030510305103,66.05938842806094],[-85.09945099450994,66.0745856234899],[-85.08145081450814,66.08133993256942],[-85.02025020250203,66.0830285098393]]],[[[-83.59463594635946,66.04081407809224],[-83.60543605436054,66.03743692355246],[-83.61983619836198,66.04081407809224],[-83.62343623436234,66.04925696444164],[-83.61263612636127,66.05432269625129],[-83.60543605436054,66.06107700533082],[-83.60543605436054,66.06614273714047],[-83.60183601836017,66.06951989168024],[-83.59463594635946,66.07627420075977],[-83.57663576635765,66.0830285098393],[-83.56943569435694,66.0830285098393],[-83.5730357303573,66.07796277802964],[-83.56943569435694,66.07120846895012],[-83.56583565835658,66.05938842806094],[-83.55863558635586,66.05094554171151],[-83.55863558635586,66.04587980990186],[-83.56943569435694,66.04419123263199],[-83.5730357303573,66.04587980990186],[-83.57663576635765,66.04756838717176],[-83.58383583835838,66.04587980990186],[-83.5910359103591,66.04250265536211],[-83.59463594635946,66.04081407809224]]],[[[-83.61263612636127,66.08471708710917],[-83.61983619836198,66.08471708710917],[-83.62343623436234,66.08133993256942],[-83.63063630636306,66.07627420075977],[-83.64863648636486,66.07120846895012],[-83.6450364503645,66.07627420075977],[-83.64143641436414,66.08471708710917],[-83.65223652236521,66.0914713961887],[-83.65943659436594,66.09991428253812],[-83.65583655836558,66.11342290069717],[-83.64863648636486,66.12355436431648],[-83.63063630636306,66.1218657870466],[-83.61263612636127,66.11342290069717],[-83.60183601836017,66.11511147796708],[-83.59823598235982,66.11848863250682],[-83.5910359103591,66.11848863250682],[-83.5730357303573,66.11004574615743],[-83.5730357303573,66.10666859161765],[-83.57663576635765,66.101602859808],[-83.5910359103591,66.09822570526825],[-83.5910359103591,66.0931599734586],[-83.59823598235982,66.08809424164895],[-83.61263612636127,66.08471708710917]]],[[[-85.95625956259562,66.46295839556291],[-85.90945909459094,66.46126981829303],[-85.8950589505895,66.45451550921348],[-85.89865898658987,66.4426954683243],[-85.92745927459275,66.44100689105443],[-85.96345963459635,66.43931831378455],[-85.97425974259743,66.45113835467373],[-85.98145981459814,66.46464697283278],[-85.95625956259562,66.46295839556291]]],[[[14.409144091440908,67.42544743939604],[14.412744127441272,67.42544743939604],[14.419944199442,67.42375886212616],[14.412744127441272,67.41362739850686],[14.391143911439116,67.39843020307791],[14.365943659436596,67.39167589399838],[14.283142831428307,67.3798558531092],[14.275942759427608,67.37647869856943],[14.254342543425452,67.37310154402968],[14.239942399423995,67.37479012129955],[14.225542255422567,67.37816727583933],[14.229142291422932,67.38492158491886],[14.247142471424723,67.38829873945863],[14.24354243542436,67.39336447126826],[14.247142471424723,67.39505304853816],[14.257942579425787,67.39505304853816],[14.26874268742688,67.40011878034781],[14.279542795427972,67.40856166669721],[14.308343083430827,67.42375886212616],[14.373143731437324,67.44064463482499],[14.391143911439116,67.44064463482499],[14.401944019440208,67.43726748028521],[14.401944019440208,67.43051317120569],[14.398343983439844,67.42375886212616],[14.398343983439844,67.42207028485626],[14.409144091440908,67.42544743939604]]],[[[-113.0069300693007,67.9472178157898],[-112.94572945729458,67.95059497032955],[-112.88452884528846,67.96072643394885],[-112.81612816128161,67.96916932029828],[-112.7621276212762,67.96410358848863],[-112.81612816128161,67.95059497032955],[-112.86652866528665,67.9472178157898],[-112.89532895328954,67.9286434658211],[-112.93852938529385,67.92020057947167],[-113.05373053730537,67.92020057947167],[-113.12213122131222,67.91513484766202],[-113.15453154531545,67.92188915674154],[-113.14013140131401,67.9370863521705],[-113.0069300693007,67.9472178157898]]],[[[-112.83772837728377,68.17011001541431],[-112.74772747727476,68.16842143814443],[-112.7189271892719,68.15660139725526],[-112.7621276212762,68.14478135636608],[-112.79092790927909,68.12958416093713],[-112.82692826928269,68.1414042018263],[-112.8809288092881,68.1414042018263],[-112.91332913329133,68.14478135636608],[-112.90252902529025,68.159978551795],[-112.89172891728917,68.17348716995409],[-112.85572855728557,68.17517574722396],[-112.83772837728377,68.17011001541431]]],[[[67.38007380073802,68.79150645073113],[67.4088740887409,68.77630925530221],[67.40527405274054,68.76786636895278],[67.40167401674017,68.76111205987326],[67.39447394473945,68.75773490533348],[67.35127351273513,68.7661777916829],[67.3368733687337,68.76448921441303],[67.33327333273334,68.76111205987326],[67.34047340473407,68.75942348260338],[67.33327333273334,68.75773490533348],[67.20727207272074,68.80163791435044],[67.19287192871928,68.80163791435044],[67.1568715687157,68.78812929619139],[67.13887138871391,68.78812929619139],[67.12087120871209,68.79319502800104],[67.11727117271172,68.79826075981069],[67.12087120871209,68.80501506889021],[67.23607236072363,68.82021226431914],[67.3368733687337,68.80839222342996],[67.38007380073802,68.79150645073113]]],[[[-34.58734587345873,-55.06225914062503],[-34.580145801458,-55.05719340881538],[-34.565745657456574,-55.05888198608527],[-34.558545585455846,-55.06901344970456],[-34.565745657456574,-55.07745633605398],[-34.580145801458,-55.07745633605398],[-34.58734587345873,-55.072390604244326],[-34.58734587345873,-55.06225914062503]]],[[[-34.666546665466655,-55.02004470887796],[-34.64854648546486,-55.01160182252855],[-34.63054630546304,-55.01497897706832],[-34.62334623346234,-55.030176172497264],[-34.634146341463406,-55.04706194519609],[-34.6521465214652,-55.055504831545505],[-34.67014670146702,-55.048750522465966],[-34.67734677346772,-55.03524190430691],[-34.666546665466655,-55.02004470887796]]],[[[-34.72774727747276,-54.97783027713089],[-34.7061470614706,-54.98120743167066],[-34.6989469894699,-54.989650318020075],[-34.6989469894699,-54.99640462709961],[-34.71334713347133,-55.00315893617913],[-34.73134731347312,-55.00315893617913],[-34.74574745747458,-54.99809320436949],[-34.74934749347494,-54.986273163480305],[-34.72774727747276,-54.97783027713089]]],[[[-41.755017550175495,-53.56111394769931],[-41.7370173701737,-53.56111394769931],[-41.72261722617225,-53.57799972039814],[-41.73341733417334,-53.59488549309697],[-41.755017550175495,-53.589819761287316],[-41.76221762217622,-53.57462256585838],[-41.755017550175495,-53.56111394769931]]],[[[-42.11142111421114,-53.45811073423647],[-42.097020970209684,-53.45642215696658],[-42.07902079020789,-53.4749965069353],[-42.07902079020789,-53.49525943417389],[-42.097020970209684,-53.49525943417389],[-42.11142111421114,-53.486816547824475],[-42.11862118621187,-53.47161935239553],[-42.11142111421114,-53.45811073423647]]],[[[166.6366663666637,-47.99387468889606],[166.63306633066333,-48.00062899797559],[166.62226622266223,-48.02089192521418],[166.62946629466296,-48.029334811563594],[166.63306633066333,-48.03946627518289],[166.6366663666637,-48.051286316072066],[166.6366663666637,-48.06310635696124],[166.62946629466296,-48.0580406251516],[166.62226622266223,-48.05297489334195],[166.61146611466114,-48.03777769791301],[166.6042660426604,-48.03608912064312],[166.56826568265683,-48.04115485245277],[166.56826568265683,-48.03440054337324],[166.61866618666187,-47.99725184343582],[166.6366663666637,-47.99387468889606]]],[[[167.41787417874178,-47.23232634017896],[167.43227432274324,-47.2188177220199],[167.45387453874542,-47.206997681130716],[167.47907479074792,-47.205309103860834],[167.48627486274864,-47.2188177220199],[167.47547475474755,-47.22726060836931],[167.45027450274506,-47.23908064925849],[167.4250742507425,-47.244146381068134],[167.41787417874178,-47.23232634017896]]],[[[167.70947709477093,-46.78485336366004],[167.6986769867699,-46.79160767273957],[167.68427684276844,-46.794984827279336],[167.66987669876698,-46.79160767273957],[167.66267662676626,-46.778099054580515],[167.66627666276662,-46.76459043642145],[167.6770767707677,-46.75783612734192],[167.69507695076953,-46.75783612734192],[167.70587705877062,-46.7595247046118],[167.72027720277202,-46.76796759096121],[167.70947709477093,-46.78485336366004]]],[[[168.59148591485916,-46.732507468293676],[168.60588605886062,-46.754458972802155],[168.59508595085953,-46.774721900040745],[168.57348573485734,-46.79160767273957],[168.5626856268563,-46.80173913635887],[168.56628566285661,-46.78991909546969],[168.5626856268563,-46.78147620912028],[168.55188551885522,-46.773033322770864],[168.54108541085412,-46.7595247046118],[168.55908559085594,-46.75783612734192],[168.57348573485734,-46.754458972802155],[168.58428584285843,-46.74601608645274],[168.59148591485916,-46.732507468293676]]],[[[174.38034380343805,-41.10616800504453],[174.39834398343987,-41.10785658231441],[174.39834398343987,-41.116299468663826],[174.39834398343987,-41.12643093228312],[174.40194401944018,-41.13993955044218],[174.3947439474395,-41.153448168601244],[174.38754387543878,-41.18384255945913],[174.38034380343805,-41.195662600348314],[174.3659436594366,-41.20241690942784],[174.34794347943483,-41.20410548669772],[174.329943299433,-41.20241690942784],[174.3119431194312,-41.20241690942784],[174.2975429754298,-41.20748264123749],[174.27234272342724,-41.22436841393632],[174.26514265142652,-41.22943414574596],[174.24714247142475,-41.23281130028573],[174.1967419674197,-41.22943414574596],[174.20394203942038,-41.2260569912062],[174.21474214742148,-41.217614104856786],[174.21474214742148,-41.215925527586904],[174.22554225542257,-41.215925527586904],[174.25074250742506,-41.217614104856786],[174.26154261542615,-41.212548373047134],[174.3119431194312,-41.16864536403019],[174.329943299433,-41.18215398218925],[174.35154351543514,-41.175399673109716],[174.3659436594366,-41.15851390041089],[174.3659436594366,-41.13993955044218],[174.3551435514355,-41.14669385952171],[174.3407434074341,-41.14500528225183],[174.33354333543338,-41.1382509731723],[174.32634326343265,-41.12643093228312],[174.34434344343447,-41.12643093228312],[174.3551435514355,-41.11798804593371],[174.36954369543696,-41.111233736854174],[174.38034380343805,-41.10616800504453]]],[[[175.84915849158494,-36.624683930775845],[175.84195841958422,-36.626372508045726],[175.8347583475835,-36.62806108531561],[175.82755827558276,-36.629749662585496],[175.82035820358203,-36.62806108531561],[175.81675816758167,-36.62806108531561],[175.809558095581,-36.626372508045726],[175.7987579875799,-36.62130677623608],[175.79515795157954,-36.61792962169631],[175.79515795157954,-36.61455246715655],[175.7987579875799,-36.6094867353469],[175.7987579875799,-36.60779815807702],[175.80235802358027,-36.604421003537254],[175.80235802358027,-36.601043848997485],[175.7987579875799,-36.59766669445772],[175.79155791557918,-36.59260096264808],[175.78435784357845,-36.59091238537819],[175.77715777157772,-36.58753523083843],[175.77355773557736,-36.57740376721913],[175.7987579875799,-36.56896088086972],[175.80595805958063,-36.57740376721913],[175.81675816758167,-36.604421003537254],[175.82755827558276,-36.604421003537254],[175.8347583475835,-36.60779815807702],[175.84195841958422,-36.61455246715655],[175.84915849158494,-36.624683930775845]]],[[[174.85194851948523,-36.39166026753203],[174.86634866348663,-36.3849059584525],[174.8807488074881,-36.38997169026215],[174.89514895148955,-36.40179173115133],[174.90234902349027,-36.41530034931039],[174.90954909549095,-36.438940431088746],[174.90594905949058,-36.44907189470805],[174.89154891548918,-36.45244904924781],[174.85554855548554,-36.45244904924781],[174.8447484474845,-36.44907189470805],[174.8591485914859,-36.438940431088746],[174.8591485914859,-36.42880896746945],[174.85194851948523,-36.40348030842121],[174.85194851948523,-36.39166026753203]]],[[[175.1327513275133,-36.17552237698705],[175.13995139951402,-36.18227668606658],[175.14715147151475,-36.19071957241599],[175.15435154351547,-36.20085103603529],[175.15435154351547,-36.21435965419435],[175.14715147151475,-36.22111396327388],[175.12915129151293,-36.22617969508353],[175.11475114751147,-36.22786827235341],[175.10035100351007,-36.22786827235341],[175.08235082350825,-36.20591676784494],[175.0967509675097,-36.18734241787622],[175.1219512195122,-36.17552237698705],[175.1327513275133,-36.17552237698705]]],[[[155.17055170551708,-22.20254546870772],[155.17055170551708,-22.200856891437837],[155.17055170551708,-22.20254546870772],[155.17055170551708,-22.20254546870772]]],[[[155.45855458554587,-22.175528232389595],[155.46215462154623,-22.173839655119714],[155.46215462154623,-22.175528232389595],[155.45855458554587,-22.177216809659477],[155.45855458554587,-22.175528232389595]]],[[[153.55413554135544,-21.910421601018008],[153.55053550535507,-21.910421601018008],[153.55413554135544,-21.908733023748127],[153.55413554135544,-21.910421601018008]]],[[[153.5577355773558,-21.910421601018008],[153.5577355773558,-21.908733023748127],[153.5577355773558,-21.910421601018008],[153.5577355773558,-21.910421601018008]]],[[[153.50733507335076,-21.8918472510493],[153.50733507335076,-21.890158673779418],[153.50733507335076,-21.8918472510493],[153.50733507335076,-21.8918472510493]]],[[[153.64053640536406,-21.858075705651643],[153.64413644136442,-21.856387128381762],[153.64413644136442,-21.858075705651643],[153.64053640536406,-21.858075705651643]]],[[[153.75933759337596,-21.636872083297014],[153.76293762937632,-21.635183506027133],[153.76293762937632,-21.636872083297014],[153.75933759337596,-21.636872083297014]]],[[[39.69219692196924,-21.500097324436517],[39.69219692196924,-21.495031592626866],[39.69579695796958,-21.49840874716663],[39.69219692196924,-21.500097324436517]]],[[[39.73539735397355,-21.447751429070152],[39.73539735397355,-21.44606285180027],[39.73539735397355,-21.447751429070152],[39.73539735397355,-21.447751429070152]]],[[[39.728197281972825,-21.444374274530382],[39.728197281972825,-21.4426856972605],[39.73179731797319,-21.444374274530382],[39.728197281972825,-21.444374274530382]]],[[[155.73215732157325,-21.285648011161413],[155.73215732157325,-21.283959433891532],[155.73215732157325,-21.285648011161413],[155.73215732157325,-21.285648011161413]]],[[[155.7969579695797,-21.27382797027223],[155.80055800558006,-21.270450815732467],[155.80055800558006,-21.272139393002348],[155.80055800558006,-21.27382797027223],[155.7969579695797,-21.27382797027223]]],[[[148.51768517685178,-17.866279039648944],[148.51768517685178,-17.867967616918833],[148.51408514085142,-17.867967616918833],[148.51408514085142,-17.866279039648944],[148.51768517685178,-17.86459046237907],[148.51768517685178,-17.866279039648944]]],[[[148.4420844208442,-17.736258589867973],[148.43848438484383,-17.7345700125981],[148.4420844208442,-17.73288143532821],[148.4420844208442,-17.736258589867973]]],[[[148.4276842768428,-17.65520688091361],[148.43128431284316,-17.65351830364372],[148.43128431284316,-17.65520688091361],[148.43128431284316,-17.6568954581835],[148.4276842768428,-17.65520688091361]]],[[[149.92169921699218,-16.962890200261697],[149.92169921699218,-16.964578777531585],[149.91809918099182,-16.966267354801474],[149.91809918099182,-16.964578777531585],[149.91809918099182,-16.962890200261697],[149.92169921699218,-16.962890200261697]]],[[[150.00090000900008,-16.93587296394358],[150.00090000900008,-16.939250118483343],[149.99729997299977,-16.93587296394358],[150.00090000900008,-16.93587296394358]]],[[[147.88047880478808,-16.479957101075257],[147.88407884078845,-16.479957101075257],[147.88407884078845,-16.48164567834513],[147.88047880478808,-16.48164567834513],[147.88047880478808,-16.479957101075257]]],[[[150.00090000900008,-16.230047665132616],[150.00090000900008,-16.23173624240249],[149.99729997299977,-16.230047665132616],[150.00090000900008,-16.230047665132616]]],[[[150.0081000810008,-16.1337987607493],[150.0081000810008,-16.137175915289063],[150.00090000900008,-16.135487338019175],[149.99729997299977,-16.135487338019175],[150.00090000900008,-16.1337987607493],[150.00450004500044,-16.135487338019175],[150.0081000810008,-16.1337987607493]]],[[[149.99009990099904,-16.1337987607493],[149.99729997299977,-16.1337987607493],[149.99009990099904,-16.1337987607493],[149.99009990099904,-16.1337987607493]]],[[[54.51354513545135,-15.888955056616311],[54.52074520745208,-15.885577902076548],[54.52074520745208,-15.894020788425962],[54.51354513545135,-15.888955056616311]]],[[[123.59823598235982,-12.42906023062666],[123.59823598235982,-12.439191694245949],[123.5766357663577,-12.437503116976075],[123.5766357663577,-12.427371653356772],[123.59823598235982,-12.42906023062666]]],[[[47.28827288272885,-11.566197245716594],[47.29907299072991,-11.551000050287655],[47.30627306273064,-11.569574400256357],[47.28827288272885,-11.566197245716594]]],[[[-162.0610206102061,5.8869374157909675],[-162.05742057420574,5.8818716839813305],[-162.0610206102061,5.873428797631917],[-162.0718207182072,5.87005164309214],[-162.08982089820898,5.871740220362028],[-162.09342093420935,5.875117374901791],[-162.08982089820898,5.875117374901791],[-162.08622086220862,5.878494529441554],[-162.07542075420753,5.885248838521093],[-162.0790207902079,5.885248838521093],[-162.08262082620826,5.883560261251205],[-162.08622086220862,5.883560261251205],[-162.09342093420935,5.885248838521093],[-162.10062100621008,5.8869374157909675],[-162.1042210422104,5.888625993060856],[-162.10062100621008,5.8903145703307445],[-162.0718207182072,5.8903145703307445],[-162.0610206102061,5.8869374157909675]]],[[[-79.13419134191342,8.956770892437717],[-79.13059130591306,8.96014804697748],[-79.13059130591306,8.958459469707606],[-79.1269912699127,8.955082315167843],[-79.12339123391233,8.951705160628066],[-79.1269912699127,8.948328006088303],[-79.1269912699127,8.943262274278652],[-79.13059130591306,8.943262274278652],[-79.13419134191342,8.94495085154854],[-79.13059130591306,8.948328006088303],[-79.13059130591306,8.950016583358192],[-79.13419134191342,8.951705160628066],[-79.13419134191342,8.955082315167843],[-79.13419134191342,8.956770892437717]]],[[[-63.250832508325075,18.27265169038057],[-63.26163261632615,18.276028844920333],[-63.26163261632615,18.28278315399986],[-63.25443254432544,18.286160308539635],[-63.247232472324725,18.28278315399986],[-63.23643236432363,18.28278315399986],[-63.250832508325075,18.27265169038057]]],[[[52.00432004320044,24.25359238030508],[52.01512015120153,24.256969534844856],[52.02592025920259,24.24514949395568],[52.02592025920259,24.241772339415903],[52.02232022320223,24.23839518487614],[52.02592025920259,24.235018030336377],[52.01872018720189,24.219820834907438],[52.0079200792008,24.211377948558024],[52.00432004320044,24.213066525827898],[51.99711997119971,24.21644368036766],[51.99351993519937,24.219820834907438],[51.99711997119971,24.226575143986963],[51.99711997119971,24.236706607606266],[52.00432004320044,24.25359238030508]]],[[[51.72351723517235,24.60819360698045],[51.734317343173444,24.599750720631036],[51.73791737917381,24.591307834281622],[51.73791737917381,24.584553525202097],[51.73791737917381,24.581176370662334],[51.734317343173444,24.57273348431292],[51.73071730717308,24.56597917523338],[51.72351723517235,24.569356329773157],[51.72351723517235,24.582864947932208],[51.727117271172716,24.58793067974186],[51.72351723517235,24.58624210247197],[51.72351723517235,24.591307834281622],[51.72351723517235,24.594684988821385],[51.71991719917199,24.59299641155151],[51.71991719917199,24.591307834281622],[51.71631716317165,24.591307834281622],[51.71991719917199,24.58793067974186],[51.71271712717129,24.59299641155151],[51.71271712717129,24.601439297900924],[51.71991719917199,24.60819360698045],[51.72351723517235,24.60819360698045]]],[[[53.059130591305916,24.893563165590635],[53.08073080730807,24.890186011050858],[53.084330843308436,24.87330023835203],[53.08073080730807,24.85303731111344],[53.07353073530737,24.85979162019298],[53.06993069930701,24.863168774732742],[53.06273062730628,24.87330023835203],[53.059130591305916,24.886808856511095],[53.059130591305916,24.893563165590635]]],[[[54.21114211142111,25.24985296953588],[54.232742327423296,25.243098660456354],[54.239942399423995,25.2093271150587],[54.22554225542257,25.214392846868336],[54.214742147421475,25.214392846868336],[54.19674196741968,25.231278619567163],[54.21114211142111,25.24985296953588]]],[[[123.60543605436055,25.73954037780186],[123.60183601836019,25.73954037780186],[123.60183601836019,25.746294686881384],[123.60543605436055,25.73954037780186]]],[[[123.59463594635946,25.753048995960924],[123.59463594635946,25.74460610961151],[123.58743587435873,25.751360418691036],[123.59463594635946,25.753048995960924]]],[[[123.55863558635588,25.756426150500687],[123.55863558635588,25.7547375732308],[123.55503555035551,25.758114727770575],[123.55863558635588,25.756426150500687]]],[[[123.54423544235442,25.761491882310338],[123.52983529835302,25.761491882310338],[123.5118351183512,25.758114727770575],[123.51543515435156,25.769934768659752],[123.52983529835302,25.773311923199515],[123.53703537035369,25.773311923199515],[123.54423544235442,25.761491882310338]]],[[[123.61983619836201,25.775000500469403],[123.61983619836201,25.773311923199515],[123.61623616236164,25.775000500469403],[123.61983619836201,25.775000500469403]]],[[[123.59463594635946,25.80201773678752],[123.59463594635946,25.796952004977868],[123.5910359103591,25.796952004977868],[123.59463594635946,25.80201773678752]]],[[[124.57024570245704,25.896578063900947],[124.56664566645668,25.894889486631072],[124.56664566645668,25.896578063900947],[124.56664566645668,25.898266641170835],[124.57024570245704,25.896578063900947]]],[[[123.67383673836741,25.92697245475884],[123.67023670236705,25.930349609298602],[123.67383673836741,25.928661032028728],[123.67383673836741,25.92697245475884]]],[[[123.67383673836741,25.92697245475884],[123.67743677436778,25.930349609298602],[123.68463684636845,25.92528387748895],[123.68463684636845,25.923595300219077],[123.68463684636845,25.920218145679314],[123.67743677436778,25.918529568409426],[123.67383673836741,25.92697245475884]]],[[[-4.811448114481152,54.06035834827449],[-4.80064800648006,54.05866977100459],[-4.807848078480788,54.04684973011541],[-4.811448114481152,54.040095421035886],[-4.815048150481488,54.04347257557566],[-4.822248222482216,54.04347257557566],[-4.829448294482944,54.05022688465519],[-4.829448294482944,54.05529261646484],[-4.811448114481152,54.06035834827449]]],[[[-80.14580145801457,69.40108284515881],[-80.12420124201242,69.39263995880938],[-80.07020070200701,69.38419707245998],[-80.08820088200882,69.36562272249125],[-80.13140131401313,69.3622455679515],[-80.18180181801817,69.37913134065033],[-80.20700207002069,69.40783715423834],[-80.19980199801998,69.42810008147691],[-80.14580145801457,69.40108284515881]]],[[[153.48933489334894,-21.847944242032348],[153.48933489334894,-21.849632819302236],[153.48573485734858,-21.847944242032348],[153.48933489334894,-21.846255664762467],[153.48933489334894,-21.847944242032348]]],[[[149.97569975699759,-16.292525024118277],[149.97569975699759,-16.29590217865804],[149.97569975699759,-16.292525024118277],[149.97569975699759,-16.292525024118277]]],[[[134.70794707947078,-6.588271454102397],[134.71874718747188,-6.595025763181937],[134.72954729547297,-6.605157226801225],[134.7367473674737,-6.616977267690416],[134.7367473674737,-6.630485885849467],[134.72954729547297,-6.6642574312471226],[134.72234722347224,-6.682831781215839],[134.7151471514715,-6.69634039937489],[134.70434704347042,-6.708160440264081],[134.67914679146793,-6.743620562931611],[134.67554675546756,-6.757129181090676],[134.66834668346684,-6.772326376519615],[134.65394653946538,-6.768949221979852],[134.62154621546216,-6.746997717471373],[134.6287462874629,-6.735177676582197],[134.63234632346325,-6.726734790232783],[134.6287462874629,-6.709849017533955],[134.63234632346325,-6.699717553914667],[134.66474664746647,-6.650748813088057],[134.67554675546756,-6.610222958610876],[134.6827468274683,-6.600091494991588],[134.68634686346866,-6.591648608642174],[134.69714697146975,-6.588271454102397],[134.70794707947078,-6.588271454102397]]],[[[134.84114841148414,-6.287704700063287],[134.85554855548554,-6.284327545523524],[134.87354873548736,-6.287704700063287],[134.88434884348845,-6.299524740952464],[134.88794887948882,-6.314721936381403],[134.88434884348845,-6.336673440889882],[134.87714877148773,-6.355247790858584],[134.86274862748627,-6.390707913526128],[134.83754837548378,-6.459939581591314],[134.82674826748269,-6.473448199750379],[134.81234812348123,-6.465005313400965],[134.79794797947983,-6.4514966952419],[134.79434794347947,-6.441365231622612],[134.8051480514805,-6.43123376800331],[134.8051480514805,-6.424479458923784],[134.79434794347947,-6.402527954415305],[134.79794797947983,-6.370444986287538],[134.8159481594816,-6.345116327239296],[134.8339483394834,-6.341739172699533],[134.8339483394834,-6.31134478184164],[134.8339483394834,-6.296147586412701],[134.84114841148414,-6.287704700063287]]],[[[124.06624066240664,-5.961809286975921],[124.07344073440737,-5.985449368754274],[124.069840698407,-6.010778027802516],[124.05904059040591,-6.027663800501344],[124.0410404104041,-6.020909491421818],[124.03744037440373,-6.0124666050724045],[124.03744037440373,-5.987137946024163],[124.03024030240306,-5.975317905134986],[124.01944019440197,-5.968563596055446],[123.99423994239942,-5.961809286975921],[123.98343983439838,-5.9550549778963955],[123.96903969039693,-5.934792050657805],[123.96543965439656,-5.916217700689089],[123.96903969039693,-5.8942661961806095],[123.97983979839802,-5.870626114402256],[123.98703987039869,-5.87906900075167],[124.03744037440373,-5.9145291234192],[124.04464044640446,-5.926349164308391],[124.05904059040591,-5.951677823356633],[124.06624066240664,-5.961809286975921]]],[[[123.54063540635406,-5.245852524545654],[123.56223562235624,-5.252606833625194],[123.59463594635946,-5.255983988164957],[123.62343623436237,-5.266115451784245],[123.63423634236341,-5.291444110832487],[123.63783637836377,-5.343790006198859],[123.63423634236341,-5.367430087977212],[123.61983619836201,-5.375872974326626],[123.5910359103591,-5.374184397056737],[123.57303573035733,-5.365741510707323],[123.55863558635588,-5.350544315278384],[123.52263522635229,-5.277935492673436],[123.51903519035193,-5.250918256355305],[123.54063540635406,-5.245852524545654]]],[[[127.61587615876158,-3.3073658187203137],[127.63027630276304,-3.3225630141492672],[127.64107641076413,-3.339448786848095],[127.64467644676449,-3.356334559546923],[127.62307623076231,-3.36140029135656],[127.60147601476018,-3.356334559546923],[127.56547565475654,-3.3377602095782066],[127.51867518675186,-3.331005900498681],[127.50427504275046,-3.3208744368793788],[127.48987489874901,-3.3073658187203137],[127.47907479074792,-3.2938572005612627],[127.48627486274864,-3.2921686232913743],[127.50787507875077,-3.276971427862435],[127.51147511475114,-3.273594273322672],[127.52227522275223,-3.2617742324334813],[127.52587525875259,-3.2567085006238443],[127.52587525875259,-3.255019923353956],[127.52947529475296,-3.2533313460840674],[127.53307533075332,-3.255019923353956],[127.56547565475654,-3.255019923353956],[127.58347583475836,-3.268528541513021],[127.61587615876158,-3.3073658187203137]]],[[[127.95427954279546,-2.917304469377413],[127.96867968679686,-2.920681623917176],[127.98667986679868,-2.9291245102665897],[127.99387993879941,-2.939255973885892],[127.99027990279905,-2.942633128425655],[127.98307983079832,-2.9493874375051945],[127.96867968679686,-2.973027519283548],[127.9650796507965,-2.978093251093199],[127.96147961479613,-2.983158982902836],[127.9506795067951,-3.0101762192209662],[127.94707947079473,-3.01861910557038],[127.93267932679328,-3.0253734146499056],[127.91827918279182,-3.0287505691896683],[127.83907839078392,-3.0338163009993195],[127.82827828278283,-3.0287505691896683],[127.82467824678247,-3.0169305283004917],[127.83547835478356,-3.0017333328715523],[127.85347853478538,-2.9899132919823757],[127.86787867878678,-2.9848475601727245],[127.87507875078751,-2.983158982902836],[127.87867878678787,-2.9797818283630733],[127.88947889478897,-2.9679617874738966],[127.8966789667897,-2.961207478394371],[127.90387903879042,-2.9628960556642454],[127.90747907479079,-2.964584632934134],[127.91107911079109,-2.964584632934134],[127.92547925479255,-2.9544531693148315],[127.93267932679328,-2.9460102829654176],[127.93267932679328,-2.934190242076241],[127.92547925479255,-2.917304469377413],[127.95427954279546,-2.917304469377413]]],[[[-78.90018900189001,1.373370373394522],[-78.90018900189001,1.364927487045108],[-78.90018900189001,1.3581731779655826],[-78.89658896588965,1.3463531370763917],[-78.8929889298893,1.3125815916787502],[-78.90018900189001,1.2720557372015548],[-78.91098910989109,1.2450385008834388],[-78.93618936189361,1.2568585417726155],[-78.94698946989469,1.2450385008834388],[-78.95778957789578,1.236595614534025],[-78.97578975789757,1.2517928099629643],[-78.99378993789938,1.2686785826617921],[-78.99378993789938,1.2872529326305084],[-78.97938979389794,1.307515859869099],[-78.90018900189001,1.373370373394522]]],[[[-78.12978129781297,2.627983284917363],[-78.12978129781297,2.622917553107712],[-78.10818108181081,2.5942117395197073],[-78.09738097380973,2.5722602350112425],[-78.09738097380973,2.540177266883461],[-78.10818108181081,2.513160030565345],[-78.13338133381333,2.504717144215931],[-78.15858158581585,2.518225762374996],[-78.18378183781837,2.545242998693112],[-78.20538205382053,2.575637389551005],[-78.21618216182162,2.59758889405947],[-78.21258212582126,2.611097512218535],[-78.20538205382053,2.6161632440281863],[-78.19818198181981,2.6212289758378375],[-78.19458194581945,2.6313604394571257],[-78.20178201782018,2.6431804803463166],[-78.21618216182162,2.6701977166644326],[-78.21618216182162,2.6820177575536093],[-78.20538205382053,2.6870834893632605],[-78.18738187381874,2.6786406030138465],[-78.16578165781658,2.685394912093372],[-78.14418144181441,2.6735748712041953],[-78.14058140581406,2.6550005212354932],[-78.13338133381333,2.6465576348860793],[-78.12978129781297,2.633049016727014],[-78.12978129781297,2.627983284917363]]],[[[-79.09459094590946,8.308357220802762],[-79.08739087390873,8.296537179913585],[-79.08379083790838,8.274585675405106],[-79.07659076590765,8.266142789055692],[-79.06939069390694,8.264454211785818],[-79.06579065790658,8.261077057246041],[-79.06939069390694,8.257699902706278],[-79.08019080190802,8.254322748166516],[-79.0909909099091,8.259388479976167],[-79.10539105391054,8.252634170896641],[-79.10539105391054,8.244191284547227],[-79.09819098190981,8.239125552737576],[-79.09819098190981,8.230682666388162],[-79.10539105391054,8.228994089118274],[-79.1089910899109,8.223928357308623],[-79.1089910899109,8.210419739149572],[-79.12339123391233,8.208731161879683],[-79.14139141391414,8.244191284547227],[-79.13779137791377,8.257699902706278],[-79.13059130591306,8.256011325436404],[-79.13059130591306,8.264454211785818],[-79.1269912699127,8.277962829944869],[-79.13059130591306,8.286405716294283],[-79.12339123391233,8.30329148899311],[-79.11259112591125,8.316800107152176],[-79.10539105391054,8.318488684422064],[-79.10179101791017,8.316800107152176],[-79.09459094590946,8.311734375342525],[-79.09459094590946,8.308357220802762]]],[[[125.9886598865989,9.686236273027049],[126.0030600306003,9.676104809407747],[125.99585995859962,9.655841882169156],[125.98145981459817,9.61700460496185],[125.98505985059853,9.605184564072673],[125.98505985059853,9.589987368643733],[125.9778597785978,9.574790173214794],[125.97065970659708,9.569724441405143],[125.95265952659526,9.56634728686538],[125.94545945459458,9.56634728686538],[125.95265952659526,9.58154448229432],[125.94545945459458,9.588298791373845],[125.93465934659349,9.589987368643733],[125.9238592385924,9.589987368643733],[125.9238592385924,9.596741677723259],[125.93465934659349,9.596741677723259],[125.93825938259386,9.596741677723259],[125.93825938259386,9.603495986802798],[125.91665916659167,9.61700460496185],[125.91665916659167,9.610250295882324],[125.91665916659167,9.618693182231738],[125.91665916659167,9.62882464585104],[125.9238592385924,9.650776150359505],[125.93105931059313,9.657530459439045],[125.93465934659349,9.660907613978807],[125.93825938259386,9.66428476851857],[125.93825938259386,9.672727654867984],[125.93825938259386,9.681170541217398],[125.93825938259386,9.692990582106574],[125.93825938259386,9.6997448911861],[125.92745927459276,9.714942086615054],[125.92745927459276,9.738582168393407],[125.93465934659349,9.760533672901886],[125.95265952659526,9.7689765592513],[125.95625956259562,9.76222225017176],[125.95985959859598,9.755467941092235],[125.95985959859598,9.74702505474282],[125.97065970659708,9.752090786552472],[125.97425974259744,9.755467941092235],[125.97425974259744,9.738582168393407],[125.97425974259744,9.714942086615054],[125.97425974259744,9.694679159376463],[125.9886598865989,9.686236273027049]]],[[[107.17127171271716,10.464670394442976],[107.20367203672038,10.437653158124846],[107.2108721087211,10.425833117235669],[107.20727207272074,10.427521694505543],[107.20367203672038,10.429210271775432],[107.20007200072001,10.429210271775432],[107.19647196471965,10.432587426315195],[107.18927189271892,10.432587426315195],[107.18927189271892,10.420767385426018],[107.18207182071819,10.415701653616367],[107.17487174871752,10.41063592180673],[107.16407164071643,10.390372994568125],[107.1568715687157,10.385307262758488],[107.13527135271352,10.378552953678948],[107.12087120871212,10.366732912789772],[107.09927099270993,10.334649944662004],[107.08847088470884,10.322829903772828],[107.07407074070744,10.371798644599423],[107.0776707767078,10.390372994568125],[107.12087120871212,10.400504458187427],[107.14967149671497,10.417390230886255],[107.1568715687157,10.422455962695906],[107.1568715687157,10.432587426315195],[107.16047160471607,10.44609604447426],[107.16407164071643,10.457916085363436],[107.17127171271716,10.464670394442976]]],[[[124.37944379443798,10.69093974860725],[124.3866438664387,10.679119707718073],[124.3866438664387,10.667299666828896],[124.39024390243901,10.641971007780654],[124.37944379443798,10.628462389621589],[124.30024300243002,10.589625112414282],[124.28584285842862,10.603133730573347],[124.28944289442893,10.616642348732412],[124.30024300243002,10.631839544161352],[124.30744307443075,10.64872531686018],[124.31104311043111,10.662233935019245],[124.31464314643148,10.677431130448184],[124.31824318243184,10.692628325877138],[124.32904329043294,10.704448366766314],[124.33984339843397,10.71120267584584],[124.35424354243543,10.71120267584584],[124.36864368643688,10.702759789496426],[124.37944379443798,10.69093974860725]]],[[[103.2976329763298,10.73146560308443],[103.30123301233016,10.726399871274793],[103.30843308433083,10.726399871274793],[103.31923319233192,10.721334139465142],[103.31923319233192,10.706136944036189],[103.30483304833047,10.702759789496426],[103.29403294032943,10.6960054804169],[103.28323283232834,10.687562594067487],[103.27603276032761,10.672365398638547],[103.26883268832688,10.679119707718073],[103.26523265232652,10.69093974860725],[103.26163261632615,10.702759789496426],[103.26163261632615,10.706136944036189],[103.26163261632615,10.709514098575966],[103.22923229232293,10.721334139465142],[103.21483214832148,10.733154180354319],[103.20043200432008,10.748351375783258],[103.19683196831971,10.761859993942323],[103.20763207632075,10.775368612101389],[103.22923229232293,10.782122921180914],[103.24363243632439,10.778745766641151],[103.25803258032579,10.766925725751975],[103.26883268832688,10.755105684862798],[103.27243272432725,10.751728530323035],[103.27603276032761,10.744974221243496],[103.27603276032761,10.741597066703733],[103.28323283232834,10.739908489433844],[103.29043290432907,10.739908489433844],[103.29403294032943,10.73821991216397],[103.2976329763298,10.73146560308443]]],[[[-72.99972999729997,21.452242689569687],[-73.03213032130321,21.43535691687086],[-73.04293042930429,21.42522545325157],[-73.05373053730537,21.42522545325157],[-73.05373053730537,21.43535691687086],[-73.05373053730537,21.447176957760036],[-73.06093060930608,21.46743988499864],[-73.07173071730718,21.486014234967342],[-73.07533075330753,21.506277162205933],[-73.06453064530645,21.514720048555347],[-73.04293042930429,21.521474357634887],[-73.02493024930249,21.531605821254175],[-73.0069300693007,21.551868748492765],[-72.99252992529925,21.562000212112068],[-72.98172981729817,21.556934480302417],[-72.9709297092971,21.541737284873477],[-72.960129601296,21.533294398524063],[-72.93852938529385,21.52316293490476],[-72.92052920529206,21.514720048555347],[-72.90972909729096,21.50458858493606],[-72.91332913329133,21.484325657697454],[-72.93492934929348,21.474194194078166],[-72.9709297092971,21.469128462268515],[-72.98892988929889,21.453931266839575],[-72.99972999729997,21.452242689569687]]],[[[112.64692646926471,21.71228358913163],[112.65412654126544,21.698774970972565],[112.65052650526508,21.688643507353262],[112.64332643326435,21.678512043733974],[112.63972639726398,21.66500342557491],[112.65052650526508,21.64980623014597],[112.65052650526508,21.639674766526667],[112.62532625326253,21.632920457447142],[112.6181261812618,21.619411839288077],[112.60732607326077,21.616034684748314],[112.57852578525785,21.616034684748314],[112.56772567725676,21.61772326201819],[112.55692556925572,21.62278899382784],[112.549725497255,21.616034684748314],[112.5389253892539,21.599148912049486],[112.53532535325354,21.595771757509723],[112.52452524525245,21.599148912049486],[112.52092520925208,21.60590322112901],[112.51732517325172,21.616034684748314],[112.52452524525245,21.626166148367602],[112.56052560525609,21.64811765287608],[112.56772567725676,21.659937693765258],[112.55692556925572,21.678512043733974],[112.57852578525785,21.683577775543625],[112.62172621726216,21.703840702782216],[112.64692646926471,21.71228358913163]]],[[[-72.02052020520205,21.904781397898248],[-72.02772027720277,21.91322428424766],[-72.02412024120241,21.923355747866964],[-72.02412024120241,21.931798634216378],[-72.03492034920349,21.938552943295903],[-72.03132031320312,21.946995829645317],[-72.02412024120241,21.95206156145497],[-72.01692016920168,21.95712729326462],[-72.00972009720097,21.958815870534494],[-71.94851948519485,21.958815870534494],[-71.94491944919449,21.958815870534494],[-71.93051930519304,21.953750138724857],[-71.92331923319233,21.95206156145497],[-71.91251912519125,21.948684406915206],[-71.90891908919089,21.94024152056579],[-71.91251912519125,21.925044325136838],[-71.90171901719017,21.865944120690955],[-71.88731887318873,21.845681193452364],[-71.85851858518585,21.843992616182476],[-71.87651876518765,21.828795420753536],[-71.89451894518945,21.8321725752933],[-71.90891908919089,21.843992616182476],[-71.92331923319233,21.849058347992127],[-71.93051930519304,21.85243550253189],[-71.94131941319412,21.85750123434154],[-71.95571955719556,21.86763269796083],[-71.95931959319593,21.876075584310243],[-71.95931959319593,21.889584202469308],[-71.94491944919449,21.91322428424766],[-71.94131941319412,21.925044325136838],[-71.94851948519485,21.941930097835666],[-71.96291962919629,21.933487211486252],[-71.98811988119881,21.908158552438024],[-71.99171991719916,21.89971566608861],[-72.00252002520025,21.898027088818722],[-72.01332013320133,21.89971566608861],[-72.02052020520205,21.904781397898248]]],[[[-73.46773467734677,22.58696661493086],[-73.47493474934748,22.58696661493086],[-73.51813518135181,22.598786655820035],[-73.53613536135362,22.603852387629686],[-73.55773557735577,22.60722954216945],[-73.55773557735577,22.6122952739791],[-73.53973539735397,22.61398385124899],[-73.52533525335252,22.615672428518863],[-73.50013500135,22.610606696709226],[-73.47853478534785,22.600475233089924],[-73.46773467734677,22.58696661493086]]],[[[113.59373593735938,22.78453015550714],[113.60453604536048,22.772710114617965],[113.60453604536048,22.762578650998663],[113.59373593735938,22.755824341919137],[113.57933579335793,22.75413576464925],[113.5577355773558,22.75751291918901],[113.54333543335434,22.769332960078188],[113.53613536135362,22.78453015550714],[113.52893528935289,22.80141592820597],[113.52173521735216,22.787907310046904],[113.50733507335076,22.798038773666207],[113.49653496534967,22.813235969095146],[113.48213482134821,22.848696091762676],[113.47493474934748,22.848696091762676],[113.47493474934748,22.825056009984323],[113.45693456934572,22.830121741793974],[113.43533435334353,22.848696091762676],[113.40293402934032,22.88246763716033],[113.39573395733959,22.897664832589285],[113.40653406534068,22.907796296208573],[113.43173431734317,22.911173450748336],[113.47493474934748,22.901041987129048],[113.48933489334894,22.892599100779634],[113.52533525335252,22.8470075144928],[113.54693546935471,22.835187473603625],[113.5721357213572,22.830121741793974],[113.57573575735756,22.823367432714434],[113.58653586535866,22.79466161912643],[113.59373593735938,22.78453015550714]]],[[[34.583745837458395,27.954953755887956],[34.60174601746019,27.94313371499878],[34.61974619746198,27.92793651956984],[34.61974619746198,27.9211822104903],[34.583745837458395,27.917805055950538],[34.54774547745478,27.919493633220426],[34.5189451894519,27.929625096839715],[34.49734497344974,27.953265178618082],[34.49734497344974,27.954953755887956],[34.49734497344974,27.96846237404702],[34.49374493744938,27.988725301285612],[34.490144901449014,27.99547961036515],[34.49374493744938,28.00054534217479],[34.49374493744938,28.002233919444677],[34.49734497344974,27.99547961036515],[34.500945009450106,28.003922496714566],[34.50454504545047,28.01067680579409],[34.51174511745117,28.014053960333854],[34.5189451894519,28.015742537603742],[34.533345333453354,28.008988228524203],[34.540545405454054,28.003922496714566],[34.54414544145442,27.99547961036515],[34.5189451894519,27.992102455825375],[34.508145081450834,27.987036724015738],[34.50454504545047,27.975216683126547],[34.508145081450834,27.971839528586784],[34.51174511745117,27.966773796777147],[34.52974529745299,27.96508521950726],[34.558545585455875,27.97015095131691],[34.56934569345694,27.973528105856673],[34.5729457294573,27.971839528586784],[34.57654576545767,27.971839528586784],[34.58014580145803,27.96508521950726],[34.583745837458395,27.958330910427733],[34.583745837458395,27.954953755887956]]],[[[129.7830978309783,31.79984419941087],[129.79029790297903,31.784647003981917],[129.79749797497976,31.764384076743326],[129.80109801098013,31.745809726774624],[129.78669786697867,31.73736684042521],[129.77589775897758,31.728923954075796],[129.74349743497436,31.676578058709424],[129.7290972909729,31.644495090581657],[129.71829718297187,31.63774078150213],[129.69669696696968,31.620855008803304],[129.67869678696786,31.629297895152718],[129.6606966069661,31.641117936041894],[129.65709657096573,31.659692286010596],[129.6750967509675,31.666446595090136],[129.68949689496895,31.70021814048779],[129.71829718297187,31.73061253134567],[129.73269732697327,31.73736684042521],[129.75429754297545,31.744121149504736],[129.7686976869769,31.759318344933675],[129.77589775897758,31.77958127217228],[129.7830978309783,31.79984419941087]]],[[[-114.78534785347853,31.803221353950633],[-114.75654756547566,31.798155622140982],[-114.70974709747097,31.764384076743326],[-114.67014670146702,31.720481067726382],[-114.65214652146521,31.69008667686849],[-114.66654666546665,31.69008667686849],[-114.67734677346773,31.69515240867814],[-114.68814688146881,31.701906717757666],[-114.69534695346954,31.71034960410708],[-114.7169471694717,31.69515240867814],[-114.76374763747637,31.71541533591673],[-114.79974799747997,31.755941190393912],[-114.78534785347853,31.803221353950633]]],[[[124.92664926649269,39.6044483408087],[124.92304923049232,39.59769403172916],[124.90864908649087,39.5943168771894],[124.91944919449196,39.57236537268092],[124.93384933849342,39.550413868172456],[124.91224912249123,39.54028240455315],[124.88344883448838,39.52677378639409],[124.86184861848619,39.508199436425386],[124.84384843848437,39.50482228188562],[124.81864818648188,39.49469081826632],[124.8366483664837,39.52170805458445],[124.8510485104851,39.5166423227748],[124.85824858248583,39.52846236366398],[124.84384843848437,39.53859382728328],[124.84384843848437,39.543659559092916],[124.85824858248583,39.543659559092916],[124.85824858248583,39.54872529090257],[124.85824858248583,39.55379102271222],[124.85464854648546,39.55716817725198],[124.85464854648546,39.57405394995081],[124.86904869048692,39.580808259030334],[124.86904869048692,39.59600545445929],[124.88344883448838,39.6044483408087],[124.87984879848801,39.612891227158116],[124.89784897848978,39.61457980442799],[124.92664926649269,39.6044483408087]]],[[[-56.15156151561516,46.794410355969234],[-56.15516155161551,46.78934462415958],[-56.162361623616235,46.78427889234993],[-56.162361623616235,46.77921316054028],[-56.165961659616585,46.772458851460755],[-56.15156151561516,46.7673931196511],[-56.14436144361443,46.76570454238123],[-56.16956169561695,46.7572616560318],[-56.19476194761947,46.75219592422215],[-56.22356223562235,46.75388450149205],[-56.241562415624145,46.76570454238123],[-56.21996219962199,46.78765604688971],[-56.20916209162091,46.79778751050898],[-56.191161911619105,46.80623039685841],[-56.18036180361803,46.80960755139819],[-56.162361623616235,46.81129612866806],[-56.14796147961479,46.807918974128285],[-56.15156151561516,46.794410355969234]]],[[[-55.51075510755108,50.804781371940635],[-55.49275492754927,50.80815852648041],[-55.46755467554675,50.804781371940635],[-55.45315453154531,50.796338485591235],[-55.46395463954639,50.78789559924181],[-55.471154711547115,50.78620702197193],[-55.471154711547115,50.782829867432156],[-55.474754747547465,50.78114129016228],[-55.47835478354783,50.78114129016228],[-55.47835478354783,50.777764135622505],[-55.474754747547465,50.77269840381285],[-55.471154711547115,50.769321249273105],[-55.46395463954639,50.76763267200323],[-55.496354963549635,50.75243547657428],[-55.51075510755108,50.742304012954975],[-55.50715507155071,50.733861126605575],[-55.525155251552505,50.720352508446496],[-55.58275582755827,50.69840100393802],[-55.58995589955899,50.70853246755732],[-55.597155971559715,50.71697535390675],[-55.60795607956079,50.71866393117662],[-55.61515615156151,50.71359819936697],[-55.64395643956439,50.72372966298627],[-55.647556475564755,50.73217254933567],[-55.622356223562235,50.76087836292368],[-55.622356223562235,50.76594409473333],[-55.625956259562585,50.77269840381285],[-55.625956259562585,50.78114129016228],[-55.61875618756187,50.791272753781584],[-55.61155611556116,50.796338485591235],[-55.60435604356043,50.791272753781584],[-55.597155971559715,50.782829867432156],[-55.597155971559715,50.774386981082756],[-55.575555755557545,50.77945271289241],[-55.52875528755287,50.79464990832133],[-55.51075510755108,50.804781371940635]]],[[[-55.35235352353523,51.883782247395686],[-55.409954099541,51.88209367012581],[-55.42795427954279,51.89053655647521],[-55.41715417154171,51.919242370063216],[-55.38475384753848,51.9597682245404],[-55.373953739537384,51.963145379080174],[-55.345153451534514,51.971588265429574],[-55.33075330753307,51.97327684269948],[-55.312753127531266,51.98340830631875],[-55.287552875528746,52.00029407901758],[-55.269552695526954,52.00535981082723],[-55.273152731527304,51.980031151779],[-55.287552875528746,51.9597682245404],[-55.33075330753307,51.89729086555474],[-55.35235352353523,51.883782247395686]]],[[[-145.17325173251731,60.38239164671529],[-145.1192511925119,60.40940888303342],[-145.09405094050942,60.41616319211295],[-145.09405094050942,60.402654573953896],[-145.09765097650975,60.389145955794845],[-145.11565115651155,60.370571605826115],[-145.1192511925119,60.35537441039719],[-145.1192511925119,60.32498001953928],[-145.12285122851227,60.31147140138023],[-145.13725137251373,60.30640566957058],[-145.14445144451446,60.308094246840454],[-145.16245162451625,60.31822571045976],[-145.18045180451804,60.31991428772963],[-145.2020520205202,60.31484855592001],[-145.2128521285213,60.313159978650106],[-145.23445234452345,60.31653713318988],[-145.26325263252633,60.33342290588871],[-145.2848528485285,60.33342290588871],[-145.2848528485285,60.34186579223811],[-145.17325173251731,60.38239164671529]]],[[[-151.86931869318693,60.48539486017816],[-151.88011880118802,60.47695197382873],[-151.89091890918908,60.45837762386003],[-151.8981189811898,60.4499347375106],[-151.9089190891909,60.44318042843108],[-151.91971919719197,60.4414918511612],[-151.93051930519306,60.43980327389133],[-151.9449194491945,60.43642611935155],[-151.96291962919628,60.42629465573225],[-151.97731977319773,60.40772030576355],[-151.9809198091981,60.389145955794845],[-151.96651966519664,60.375637337635766],[-152.03852038520384,60.35030867858754],[-152.06012060120602,60.34693152404776],[-152.07452074520745,60.35030867858754],[-152.08532085320854,60.35368583312729],[-152.08892088920888,60.35875156493694],[-152.08532085320854,60.36044014220684],[-152.03852038520384,60.36550587401649],[-152.02772027720277,60.36888302855624],[-152.02052020520205,60.375637337635766],[-152.02052020520205,60.38576880125507],[-152.0241202412024,60.394211687604496],[-152.02052020520205,60.402654573953896],[-152.01332013320132,60.40772030576355],[-151.99171991719916,60.419540346652724],[-151.98451984519846,60.42629465573225],[-151.9809198091981,60.43980327389133],[-151.970119701197,60.451623314780505],[-151.96651966519664,60.465131932939556],[-151.9809198091981,60.48539486017816],[-151.95211952119521,60.509034941956514],[-151.94131941319412,60.51241209649626],[-151.91971919719197,60.51241209649626],[-151.90531905319054,60.51072351922639],[-151.88371883718838,60.50565778741674],[-151.86571865718656,60.49721490106734],[-151.8549185491855,60.48539486017816],[-151.86931869318693,60.48539486017816]]],[[[-148.08568085680855,60.799470232376336],[-148.11448114481144,60.79778165510646],[-148.1288812888129,60.80115880964621],[-148.1360813608136,60.81297885053539],[-148.1360813608136,60.82648746869447],[-148.13248132481326,60.83661893231374],[-148.1288812888129,60.84675039593304],[-148.1288812888129,60.85857043682222],[-148.1108811088111,60.87714478679092],[-148.08208082080822,60.892341982219875],[-148.07128071280712,60.90416202310905],[-148.10728107281074,60.91598206399823],[-148.10728107281074,60.922736373077754],[-148.08928089280892,60.922736373077754],[-148.03168031680318,60.93117925942718],[-147.96687966879668,60.905850600378955],[-147.94167941679416,60.88558767314035],[-147.94167941679416,60.861947591362],[-147.920079200792,60.83830750958364],[-147.9128791287913,60.824798891424564],[-147.91647916479164,60.81297885053539],[-147.9308793087931,60.80622454145586],[-147.94167941679416,60.81297885053539],[-147.95607956079562,60.821421736884815],[-147.96687966879668,60.82817604596434],[-148.01008010080102,60.79609307783656],[-148.02448024480245,60.79102734602691],[-148.08568085680855,60.799470232376336]]],[[[-108.910089100891,67.92020057947167],[-108.88128881288813,67.9185120022018],[-108.8740887408874,67.89993765223309],[-108.88488884888848,67.88136330226436],[-108.910089100891,67.87292041591496],[-108.94248942489425,67.87629757045471],[-109.14049140491404,67.93202062036084],[-109.18369183691837,67.9573492794091],[-109.19809198091981,67.9944979793465],[-109.1620916209162,67.98098936118745],[-109.04689046890469,67.95397212486932],[-109.06849068490685,67.97085789756815],[-109.07569075690756,67.9759236293778],[-109.05769057690577,67.9759236293778],[-109.01449014490144,67.96916932029828],[-109.00729007290073,67.97085789756815],[-108.99648996489965,67.97930078391755],[-108.99288992889929,67.98098936118745],[-108.98208982089821,67.98098936118745],[-108.93528935289352,67.97085789756815],[-108.90288902889029,67.9573492794091],[-108.88488884888848,67.95397212486932],[-108.88488884888848,67.95059497032955],[-108.910089100891,67.92020057947167]]],[[[-109.35649356493565,68.05697533833217],[-109.33489334893349,68.04684387471286],[-109.31689316893168,68.02995810201404],[-109.30969309693097,68.00800659750558],[-109.31689316893168,67.9843665157272],[-109.3420934209342,67.98098936118745],[-109.38169381693817,67.98943224753685],[-109.52569525695257,68.04346672017311],[-109.54729547295473,68.05697533833217],[-109.52929529295292,68.05359818379242],[-109.50769507695077,68.04684387471286],[-109.48609486094861,68.04346672017311],[-109.47169471694717,68.05022102925264],[-109.47169471694717,68.06204107014182],[-109.48249482494825,68.07217253376112],[-109.49689496894969,68.08061542011052],[-109.50769507695077,68.08568115192017],[-109.49689496894969,68.09581261553947],[-109.48249482494825,68.09918977007925],[-109.45009450094501,68.09750119280935],[-109.4248942489425,68.09074688372982],[-109.4140941409414,68.0839925746503],[-109.41049410494105,68.073861111031],[-109.40329403294032,68.06372964741169],[-109.38889388893888,68.05866391560204],[-109.35649356493565,68.05697533833217]]],[[[96.8967689676897,76.25670656088255],[96.92916929169292,76.2617722926922],[97.04077040770409,76.23982078818372],[97.01197011970123,76.22968932456442],[96.93996939969401,76.22631217002467],[96.90756907569079,76.22124643821502],[96.75996759967603,76.17565485192819],[96.74196741967421,76.17565485192819],[96.72756727567275,76.18072058373784],[96.72396723967239,76.18747489281736],[96.72036720367203,76.20098351097641],[96.71676716767166,76.20942639732584],[96.71676716767166,76.2229350154849],[96.73116731167312,76.23813221091385],[96.74196741967421,76.2516408290729],[96.72756727567275,76.26008371542233],[96.74196741967421,76.27021517904163],[96.78156781567816,76.2803466426609],[96.81396813968138,76.30398672443926],[96.87516875168751,76.32256107440799],[96.86436864368642,76.32931538348751],[96.82836828368283,76.34113542437669],[96.85356853568538,76.35633261980564],[96.8859688596886,76.35464404253574],[96.94356943569437,76.33944684710681],[97.0047700477005,76.34282400164656],[97.029970299703,76.34113542437669],[97.03357033570336,76.32762680621764],[97.04437044370445,76.32087249713808],[97.05157051570518,76.31411818805856],[97.07677076770767,76.30736387897903],[97.029970299703,76.2904781062802],[96.98676986769868,76.2820352199308],[96.88956889568897,76.2803466426609],[96.86076860768611,76.2719037563115],[96.83556835568356,76.2533294063428],[96.81396813968138,76.23137790183432],[96.78876788767889,76.21280355186559],[96.81756817568174,76.2144921291355],[96.84636846368466,76.22631217002467],[96.8967689676897,76.25670656088255]]],[[[95.26595265952659,76.67040799200382],[95.31275312753127,76.66871941473394],[95.32715327153272,76.66365368292429],[95.28395283952841,76.64170217841581],[95.22635226352264,76.64001360114594],[95.11835118351183,76.65014506476521],[94.84834848348487,76.63832502387604],[94.82314823148232,76.64339075568569],[94.8159481594816,76.65352221930499],[94.83754837548378,76.66871941473394],[94.86634866348663,76.6737851465436],[95.01755017550175,76.68391661016287],[95.04635046350467,76.67885087835322],[95.06435064350643,76.68053945562312],[95.08595085950861,76.6923594965123],[95.1219512195122,76.71937673283043],[95.12915129151293,76.71262242375087],[95.12915129151293,76.70755669194122],[95.13635136351365,76.70586811467135],[95.15075150751511,76.70586811467135],[95.16155161551615,76.70586811467135],[95.19755197551979,76.68729376470264],[95.26595265952659,76.67040799200382]]],[[[92.30672306723068,79.4531833327705],[92.47232472324725,79.43292040553192],[92.4471244712447,79.42616609645239],[92.36792367923681,79.42616609645239],[92.29232292322922,79.41265747829331],[92.26352263522637,79.41265747829331],[92.2707227072271,79.40421459194391],[92.28152281522819,79.39914886013426],[92.30672306723068,79.39239455105474],[92.24552245522455,79.38226308743543],[91.78471784717846,79.41941178737284],[91.95031950319503,79.42278894191261],[92.02952029520299,79.41265747829331],[92.06912069120693,79.41434605556319],[92.11232112321125,79.42110036464274],[92.1807218072181,79.44811760096084],[92.22392223922242,79.4531833327705],[92.30672306723068,79.4531833327705]]],[[[91.3707137071371,79.48526630089827],[91.53271532715326,79.44980617823074],[91.46431464314645,79.45993764185005],[91.3851138511385,79.46162621911992],[91.35991359913601,79.46669195092957],[91.36351363513637,79.47175768273922],[91.36351363513637,79.47851199181875],[91.33471334713346,79.48526630089827],[91.19431194311943,79.51566069175615],[90.81990819908202,79.55618654623333],[90.79470794707947,79.56294085531289],[91.14391143911439,79.53761219626463],[91.3707137071371,79.48526630089827]]],[[[100.20160201602016,79.67945268693478],[100.25560255602556,79.68114126420465],[100.28800288002878,79.6777641096649],[100.30960309603097,79.66594406877573],[100.1872018720187,79.6591897596962],[100.06840068400686,79.6389268324576],[99.98559985599854,79.60177813252017],[99.94239942399423,79.58995809163099],[99.90639906399065,79.60346670979007],[99.91719917199174,79.61359817340937],[99.92799927999283,79.62204105975877],[99.9351993519935,79.63217252337807],[99.93879938799387,79.64568114153712],[99.93879938799387,79.65581260515643],[99.9351993519935,79.66425549150583],[99.9351993519935,79.67438695512513],[99.9459994599946,79.6862069960143],[99.98199981999824,79.69802703690348],[100.02160021600218,79.70140419144326],[100.09720097200972,79.70140419144326],[100.08280082800832,79.6862069960143],[100.20160201602016,79.67945268693478]]],[[[173.0375303753038,1.3412874052667547],[173.02313023130233,1.3362216734571035],[173.01953019530197,1.3362216734571035],[173.01233012330124,1.3379102507269778],[173.05913059130592,1.3598617552354568],[173.08433084330846,1.3666160643149965],[173.15273152731527,1.3716817961246335],[173.159931599316,1.3750589506643962],[173.14193141931423,1.3801246824740474],[173.15273152731527,1.386878991553587],[173.16353163531636,1.3835018370138101],[173.1707317073171,1.373370373394522],[173.1707317073171,1.3615503325053453],[173.16353163531636,1.356484600695694],[173.1491314913149,1.356484600695694],[173.12753127531278,1.3615503325053453],[173.1059310593106,1.3615503325053453],[173.07713077130774,1.3598617552354568],[173.05553055530555,1.3531074461559314],[173.0375303753038,1.3412874052667547]]],[[[-82.12222122221222,9.323192160002264],[-82.0970209702097,9.311372119113088],[-82.08622086220862,9.302929232763674],[-82.07542075420754,9.287732037334735],[-82.09342093420933,9.291109191874497],[-82.1150211502115,9.282666305525083],[-82.12942129421293,9.26746911009613],[-82.14022140221402,9.245517605587665],[-82.14382143821437,9.24720618285754],[-82.15462154621545,9.259026223746716],[-82.1510215102151,9.260714801016604],[-82.1510215102151,9.264091955556367],[-82.1510215102151,9.287732037334735],[-82.15462154621545,9.296174923684148],[-82.16542165421654,9.302929232763674],[-82.16542165421654,9.307994964573325],[-82.1510215102151,9.302929232763674],[-82.15822158221582,9.323192160002264],[-82.17262172621726,9.32994646908179],[-82.19422194221941,9.333323623621567],[-82.21222212222122,9.343455087240855],[-82.21222212222122,9.348520819050506],[-82.20502205022049,9.353586550860157],[-82.20142201422014,9.35696370539992],[-82.19782197821978,9.355275128130032],[-82.19062190621906,9.348520819050506],[-82.18342183421834,9.345143664510744],[-82.17262172621726,9.343455087240855],[-82.16542165421654,9.345143664510744],[-82.15822158221582,9.348520819050506],[-82.14742147421474,9.345143664510744],[-82.12222122221222,9.323192160002264]]],[[[-82.32742327423274,9.412686755306055],[-82.30222302223022,9.432949682544645],[-82.28422284222842,9.439703991624171],[-82.26622266222662,9.439703991624171],[-82.23742237422374,9.39917813714699],[-82.23022230222301,9.373849478098748],[-82.24462244622445,9.35696370539992],[-82.24462244622445,9.348520819050506],[-82.2410224102241,9.345143664510744],[-82.2410224102241,9.34176650997098],[-82.2410224102241,9.338389355431204],[-82.24462244622445,9.32994646908179],[-82.2590225902259,9.353586550860157],[-82.28062280622805,9.375538055368622],[-82.32742327423274,9.412686755306055]]],[[[-85.91305913059131,16.462496857066313],[-85.8950589505895,16.489514093384443],[-85.88425884258842,16.503022711543494],[-85.85185851858519,16.51653132970256],[-85.83385833858338,16.509777020623034],[-85.81585815858158,16.497956979733857],[-85.8230582305823,16.486136938844666],[-85.84465844658446,16.484448361574792],[-85.84825848258482,16.469251166145852],[-85.86265862658627,16.452365393447025],[-85.88065880658806,16.450676816177136],[-85.8950589505895,16.43716819801807],[-85.94545945459454,16.403396652620415],[-85.9490594905949,16.41183953896983],[-85.94185941859418,16.430413888938546],[-85.92745927459275,16.4540539707169],[-85.91305913059131,16.462496857066313]]],[[[-62.145621456214556,16.74448926113672],[-62.14922149221492,16.737734952057195],[-62.152821528215284,16.72422633389813],[-62.14922149221492,16.720849179358368],[-62.14922149221492,16.715783447548716],[-62.145621456214556,16.70902913846919],[-62.14202142021419,16.70227482938965],[-62.14202142021419,16.697209097580014],[-62.145621456214556,16.6887662112306],[-62.14922149221492,16.68201190215106],[-62.156421564215634,16.676946170341424],[-62.16722167221671,16.675257593071535],[-62.21762217622175,16.6887662112306],[-62.228422284222844,16.727603488437893],[-62.21762217622175,16.776572229264502],[-62.203222032220324,16.818786661011558],[-62.18882188821888,16.81372092920192],[-62.181621816218154,16.812032351932032],[-62.17442174421744,16.81372092920192],[-62.178021780217804,16.795146579233204],[-62.170821708217076,16.776572229264502],[-62.156421564215634,16.759686456565674],[-62.145621456214556,16.74448926113672]]],[[[-62.59922599225992,17.20378227854482],[-62.57762577625776,17.202093701274933],[-62.559625596255955,17.19702796946528],[-62.54522545225451,17.18351935130623],[-62.5380253802538,17.16156784679775],[-62.5380253802538,17.153124960448338],[-62.5380253802538,17.129484878669984],[-62.5380253802538,17.12104199232057],[-62.54522545225451,17.109221951431394],[-62.54882548825488,17.104156219621743],[-62.56682566825668,17.10077906508198],[-62.61362613626136,17.104156219621743],[-62.6280262802628,17.14130491955916],[-62.617226172261724,17.18351935130623],[-62.59922599225992,17.20378227854482]]],[[[-63.01683016830168,18.122368313361008],[-63.01683016830168,18.10041680885253],[-63.00963009630095,18.07002241799465],[-63.00963009630095,18.04131660440663],[-63.01683016830168,18.032873718057218],[-63.03123031230312,18.019365099898167],[-63.096030960309605,18.036250872596995],[-63.11043110431103,18.04300518167652],[-63.11763117631176,18.051448068025934],[-63.10683106831068,18.059890954375348],[-63.10683106831068,18.061579531645236],[-63.10683106831068,18.066645263454873],[-63.1140311403114,18.064956686185],[-63.1320313203132,18.059890954375348],[-63.13563135631355,18.059890954375348],[-63.14283142831428,18.064956686185],[-63.146431464314645,18.07002241799465],[-63.14283142831428,18.073399572534413],[-63.1140311403114,18.075088149804287],[-63.096030960309605,18.078465304344064],[-63.08523085230851,18.088596767963352],[-63.0780307803078,18.10379396339229],[-63.070830708307085,18.11054827247183],[-63.05283052830528,18.117302581551357],[-63.03123031230312,18.122368313361008],[-63.01683016830168,18.122368313361008]]],[[[-63.0060300603006,18.27265169038057],[-62.98442984429843,18.276028844920333],[-62.973629736297354,18.276028844920333],[-62.973629736297354,18.269274535840808],[-62.99162991629916,18.237191567713026],[-62.998829988299875,18.227060104093738],[-63.01323013230132,18.2203057950142],[-63.03843038430384,18.213551485934673],[-63.099630996309955,18.176402785997254],[-63.10323103231032,18.179779940537017],[-63.11043110431103,18.18484567234667],[-63.1140311403114,18.18991140415632],[-63.13563135631355,18.17302563145749],[-63.150031500314995,18.16964847691773],[-63.1680316803168,18.16964847691773],[-63.14283142831428,18.198354290505733],[-63.13563135631355,18.20342002231537],[-63.121231212312125,18.20848575412502],[-63.096030960309605,18.211862908664784],[-63.08523085230851,18.216928640474435],[-63.06723067230672,18.237191567713026],[-63.05643056430564,18.254077340411854],[-63.03843038430384,18.26758595857092],[-63.0060300603006,18.27265169038057]]],[[[-64.70164701647016,18.343571935715644],[-64.70884708847088,18.34019478117588],[-64.6980469804698,18.326686163016817],[-64.70524705247053,18.303046081238463],[-64.73764737647376,18.319931853937277],[-64.7880478804788,18.31486612212764],[-64.80244802448024,18.32837474028669],[-64.7880478804788,18.35032624479517],[-64.770047700477,18.35708055387471],[-64.7520475204752,18.362146285684346],[-64.75564755647557,18.368900594763886],[-64.74844748447484,18.373966326573523],[-64.71244712447124,18.36552344022411],[-64.6980469804698,18.362146285684346],[-64.68364683646836,18.35539197660482],[-64.66564665646656,18.346949090255407],[-64.6620466204662,18.336817626636105],[-64.67284672846728,18.33512904936623],[-64.70164701647016,18.343571935715644]]],[[[-64.87084870848707,18.31486612212764],[-64.8780487804878,18.304734658508337],[-64.91044910449104,18.316554699397514],[-64.92124921249211,18.323309008477054],[-64.9320493204932,18.34019478117588],[-64.93564935649356,18.33006331755658],[-64.94284942849428,18.336817626636105],[-64.96444964449644,18.333440472096342],[-64.98244982449825,18.33512904936623],[-64.99324993249932,18.348637667525296],[-65.02565025650256,18.338506203905993],[-65.040050400504,18.353703399334933],[-65.01125011250112,18.368900594763886],[-64.9860498604986,18.37565490384341],[-64.950049500495,18.373966326573523],[-64.93564935649356,18.363834862954235],[-64.92484924849248,18.36552344022411],[-64.94284942849428,18.3773434811133],[-64.950049500495,18.385786367462714],[-64.92844928449284,18.380720635653063],[-64.89244892448924,18.360457708414472],[-64.85644856448565,18.34019478117588],[-64.83844838448384,18.318243276667403],[-64.85284852848528,18.316554699397514],[-64.860048600486,18.318243276667403],[-64.87084870848707,18.31486612212764]]],[[[-64.63684636846368,18.406049294701305],[-64.64404644046441,18.394229253812128],[-64.65844658446584,18.382409212922937],[-64.67644676446764,18.384097790192826],[-64.69084690846908,18.384097790192826],[-64.71244712447124,18.385786367462714],[-64.70164701647016,18.39760640835189],[-64.68364683646836,18.399294985621765],[-64.67284672846728,18.41280360378083],[-64.66564665646656,18.424623644670007],[-64.6620466204662,18.43982084009896],[-64.64044640446404,18.451640880988137],[-64.6260462604626,18.446575149178486],[-64.60444604446045,18.451640880988137],[-64.59364593645937,18.448263726448374],[-64.56124561245612,18.45332945825801],[-64.52884528845289,18.44995230371825],[-64.51804518045181,18.43982084009896],[-64.52164521645216,18.43475510828931],[-64.53244532445324,18.436443685559183],[-64.54684546845468,18.43982084009896],[-64.56124561245612,18.43306653101942],[-64.56484564845648,18.426312221939895],[-64.57564575645756,18.419557912860355],[-64.58284582845828,18.416180758320593],[-64.590045900459,18.41786933559048],[-64.59724597245972,18.421246490130244],[-64.60444604446045,18.422935067400132],[-64.61164611646116,18.422935067400132],[-64.61164611646116,18.419557912860355],[-64.62244622446224,18.411115026510956],[-64.62964629646297,18.404360717431416],[-64.63684636846368,18.406049294701305]]],[[[-64.38124381243811,18.48034669457614],[-64.38844388443884,18.471903808226728],[-64.40644406444063,18.456706612797788],[-64.4280442804428,18.444886571908597],[-64.44244442444425,18.443197994638723],[-64.41724417244173,18.47528096276649],[-64.410044100441,18.492166735465318],[-64.41364413644136,18.51242966270391],[-64.410044100441,18.51242966270391],[-64.40644406444063,18.510741085434034],[-64.40644406444063,18.507363930894257],[-64.40284402844028,18.505675353624383],[-64.34524345243452,18.507363930894257],[-64.32724327243272,18.51242966270391],[-64.33444334443344,18.49723246727497],[-64.35244352443524,18.487101003655667],[-64.37044370443704,18.482035271846016],[-64.38124381243811,18.48034669457614]]],[[[-86.70146701467014,21.198956099087283],[-86.71946719467195,21.21246471724635],[-86.7410674106741,21.24285910810424],[-86.74826748267482,21.27325349896212],[-86.7410674106741,21.288450694391074],[-86.73746737467374,21.266499189882595],[-86.72666726667266,21.24285910810424],[-86.70146701467014,21.198956099087283]]],[[[-73.66573665736657,23.090162641355903],[-73.75573755737557,23.073276868657075],[-73.7989379893799,23.073276868657075],[-73.81693816938169,23.103671259514968],[-73.74133741337413,23.096916950435443],[-73.68733687336874,23.10198268224508],[-73.66573665736657,23.096916950435443],[-73.66573665736657,23.090162641355903]]],[[[-81.74781747817478,24.576110638852683],[-81.74061740617405,24.57273348431292],[-81.7370173701737,24.569356329773157],[-81.73341733417334,24.564290597963506],[-81.73341733417334,24.555847711614092],[-81.7370173701737,24.557536288883966],[-81.74061740617405,24.560913443423743],[-81.74421744217442,24.564290597963506],[-81.74781747817478,24.569356329773157],[-81.74781747817478,24.56766775250327],[-81.74781747817478,24.564290597963506],[-81.75141751417515,24.569356329773157],[-81.7550175501755,24.562602020693618],[-81.75861758617586,24.555847711614092],[-81.76941769417694,24.55078197980444],[-81.78381783817838,24.54571624799479],[-81.81621816218161,24.542339093455027],[-81.8090180901809,24.557536288883966],[-81.80181801818019,24.560913443423743],[-81.7910179101791,24.557536288883966],[-81.78021780217802,24.555847711614092],[-81.7730177301773,24.559224866153855],[-81.75141751417515,24.576110638852683],[-81.74781747817478,24.576110638852683]]],[[[-80.8010080100801,24.84290584749415],[-80.8010080100801,24.834462961144737],[-80.8010080100801,24.827708652065198],[-80.8010080100801,24.826020074795323],[-80.79380793807938,24.831085806604975],[-80.78660786607865,24.831085806604975],[-80.78660786607865,24.826020074795323],[-80.79020790207902,24.82264292025556],[-80.79380793807938,24.81757718844591],[-80.8010080100801,24.809134302096496],[-80.8190081900819,24.805757147556733],[-80.8550085500855,24.804068570286844],[-80.84420844208442,24.814200033906147],[-80.8010080100801,24.84290584749415]]],[[[-82.12942129421293,26.460562872041777],[-82.0970209702097,26.453808562962237],[-82.07542075420754,26.455497140232126],[-82.06822068220681,26.467317181121302],[-82.02862028620285,26.447054253882712],[-82.04662046620466,26.44367709934295],[-82.07182071820718,26.425102749374233],[-82.08982089820898,26.42003701756458],[-82.10422104221041,26.42172559483447],[-82.16542165421654,26.453808562962237],[-82.17622176221762,26.46225144931165],[-82.18342183421834,26.474071490200828],[-82.19062190621906,26.48926868562978],[-82.20142201422014,26.519663076487674],[-82.20502205022049,26.550057467345553],[-82.19782197821978,26.544991735535902],[-82.19062190621906,26.536548849186488],[-82.1870218702187,26.5264173855672],[-82.18342183421834,26.516285921947897],[-82.17622176221762,26.494334417439433],[-82.16542165421654,26.47913722201048],[-82.14742147421474,26.46900575839119],[-82.12942129421293,26.460562872041777]]],[[[-82.13662136621366,26.58382901274321],[-82.1330213302133,26.60915767179145],[-82.14742147421474,26.639552062649344],[-82.16542165421654,26.67163503077711],[-82.17622176221762,26.702029421635004],[-82.16542165421654,26.702029421635004],[-82.14382143821437,26.695275112555464],[-82.12582125821258,26.676700762586762],[-82.1150211502115,26.654749258078283],[-82.12222122221222,26.619289135410753],[-82.11142111421114,26.595649053632386],[-82.0970209702097,26.575386126393795],[-82.08982089820898,26.560188930964856],[-82.08262082620826,26.509531612868372],[-82.08262082620826,26.490957262899656],[-82.09342093420933,26.496022994709307],[-82.10782107821078,26.516285921947897],[-82.12222122221222,26.565254662774507],[-82.13662136621366,26.58382901274321]]],[[[-94.8159481594816,29.353095735350834],[-94.72594725947259,29.332832808112244],[-94.89154891548915,29.22476386283975],[-94.94554945549456,29.194369471981858],[-95.07515075150751,29.113317763027496],[-95.10755107551076,29.087989103979254],[-95.11475114751147,29.08967768124913],[-95.10395103951039,29.111629185757607],[-95.08235082350824,29.13526926753596],[-95.03555035550355,29.16228650385409],[-94.96714967149671,29.207878090140923],[-94.9419494194942,29.223075285569863],[-94.92754927549275,29.236583903728928],[-94.92034920349204,29.250092521887993],[-94.91674916749167,29.255158253697644],[-94.87354873548735,29.28386406728565],[-94.86634866348663,29.300749839984476],[-94.86274862748627,29.305815571794113],[-94.84114841148411,29.310881303603765],[-94.83754837548375,29.310881303603765],[-94.82674826748267,29.317635612683304],[-94.8231482314823,29.331144230842355],[-94.8231482314823,29.342964271731546],[-94.84114841148411,29.34634142627131],[-94.84114841148411,29.353095735350834],[-94.83754837548375,29.353095735350834],[-94.83394833948338,29.354784312620723],[-94.83394833948338,29.356472889890597],[-94.83394833948338,29.35985004443036],[-94.83034830348304,29.35985004443036],[-94.82674826748267,29.35985004443036],[-94.82674826748267,29.354784312620723],[-94.8159481594816,29.353095735350834]]],[[[-84.73584735847358,29.73640277561421],[-84.7250472504725,29.739779930153972],[-84.70344703447034,29.75835428012269],[-84.69264692646927,29.765108589202214],[-84.69264692646927,29.7566657028528],[-84.69984699846998,29.75497712558291],[-84.70704707047071,29.748222816503386],[-84.70704707047071,29.743157084693735],[-84.72864728647286,29.73640277561421],[-84.78984789847898,29.695876921137028],[-84.8870488704887,29.65872822119961],[-84.90864908649087,29.641842448500782],[-84.96984969849699,29.61144805764289],[-84.99144991449914,29.606382325833238],[-85.0490504905049,29.606382325833238],[-85.07065070650707,29.61144805764289],[-85.09585095850959,29.62664525307183],[-85.08145081450814,29.623268098532066],[-85.05265052650526,29.609759480373],[-85.0310503105031,29.61144805764289],[-84.98784987849878,29.619890943992303],[-84.77544775447754,29.70938553929608],[-84.77184771847718,29.71445127110573],[-84.77184771847718,29.717828425645493],[-84.76824768247683,29.72120558018527],[-84.75744757447575,29.722894157455144],[-84.75024750247502,29.726271311994907],[-84.74664746647466,29.729648466534684],[-84.7430474304743,29.73471419834432],[-84.73584735847358,29.73640277561421]]],[[[-88.87228872288722,30.0589210341618],[-88.85068850688506,30.047100993272622],[-88.83988839888399,30.025149488764143],[-88.83268832688327,30.00150940698579],[-88.81828818288183,29.982935057017087],[-88.8110881108811,29.915391966221776],[-88.82188821888218,29.832651679997525],[-88.82908829088291,29.810700175489046],[-88.85428854288543,29.768485743741977],[-88.85428854288543,29.775240052821516],[-88.85428854288543,29.780305784631153],[-88.85428854288543,29.785371516440804],[-88.85788857888579,29.792125825520344],[-88.82908829088291,29.842783143616813],[-88.82548825488254,29.86135749358553],[-88.82188821888218,29.913703388951888],[-88.82548825488254,29.92890058438084],[-88.81828818288183,29.935654893460367],[-88.83268832688327,29.962672129778497],[-88.83628836288362,29.977869325207436],[-88.83268832688327,29.989689366096613],[-88.83988839888399,29.99644367517614],[-88.8470884708847,30.033592375113557],[-88.85788857888579,30.04878957054251],[-88.87228872288722,30.0589210341618]]],[[[-89.1890918909189,30.07918396140039],[-89.1890918909189,30.06398676597145],[-89.19269192691927,30.04878957054251],[-89.19989199891998,30.04203526146297],[-89.21429214292142,30.045412416002748],[-89.22149221492215,30.033592375113557],[-89.22869228692286,30.035280952383445],[-89.2430924309243,30.052166725082273],[-89.24669246692467,30.057232456891924],[-89.25029250292502,30.06398676597145],[-89.25389253892538,30.07074107505099],[-89.26109261092611,30.072429652320864],[-89.26829268292683,30.07074107505099],[-89.27189271892719,30.065675343241338],[-89.27549275492754,30.060609611431687],[-89.27549275492754,30.0589210341618],[-89.28269282692827,30.0589210341618],[-89.28989289892898,30.062298188701575],[-89.28989289892898,30.065675343241338],[-89.29349293492935,30.065675343241338],[-89.30069300693006,30.06398676597145],[-89.30789307893079,30.0589210341618],[-89.31149311493115,30.05385530235216],[-89.31149311493115,30.052166725082273],[-89.33309333093331,30.04878957054251],[-89.34029340293402,30.052166725082273],[-89.34389343893439,30.065675343241338],[-89.33309333093331,30.067363920511212],[-89.31869318693187,30.07074107505099],[-89.30789307893079,30.075806806860626],[-89.30429304293042,30.082561115940166],[-89.29709297092971,30.08424969321004],[-89.28629286292863,30.08424969321004],[-89.27549275492754,30.08931542501969],[-89.28269282692827,30.107889774988408],[-89.26829268292683,30.11126692952817],[-89.25389253892538,30.118021238607696],[-89.22869228692286,30.134907011306524],[-89.21069210692107,30.155169938545114],[-89.19629196291963,30.165301402164417],[-89.18189181891819,30.16867855670418],[-89.18189181891819,30.161924247624654],[-89.19269192691927,30.155169938545114],[-89.20709207092071,30.1467270521957],[-89.23589235892359,30.12139839314746],[-89.25029250292502,30.102824043178757],[-89.23589235892359,30.092692579559454],[-89.21789217892179,30.08593827047993],[-89.22149221492215,30.072429652320864],[-89.21789217892179,30.06398676597145],[-89.21429214292142,30.0589210341618],[-89.20709207092071,30.06398676597145],[-89.20349203492034,30.067363920511212],[-89.19629196291963,30.072429652320864],[-89.19269192691927,30.07918396140039],[-89.1890918909189,30.07918396140039]]],[[[-88.64188641886419,30.241287379309142],[-88.62028620286202,30.23115591568984],[-88.5590855908559,30.23115591568984],[-88.53748537485374,30.224401606610314],[-88.54468544685446,30.221024452070537],[-88.55548555485555,30.2159587202609],[-88.75708757087571,30.244664533848905],[-88.75708757087571,30.249730265658542],[-88.73188731887319,30.25648457473808],[-88.69948699486994,30.258173152007956],[-88.66348663486635,30.25310742019832],[-88.64188641886419,30.241287379309142]]],[[[-88.06948069480694,30.249730265658542],[-88.08388083880838,30.24635311111878],[-88.09108091080911,30.244664533848905],[-88.31068310683106,30.23622164749949],[-88.29628296282962,30.244664533848905],[-88.20628206282062,30.258173152007956],[-88.14868148681487,30.258173152007956],[-88.13428134281342,30.259861729277844],[-88.12708127081271,30.264927461087495],[-88.11628116281163,30.27168177016702],[-88.1090810908109,30.276747501976672],[-88.06948069480694,30.258173152007956],[-88.06948069480694,30.249730265658542]]],[[[-81.47781477814777,30.805272187449958],[-81.47781477814777,30.832289423768074],[-81.47781477814777,30.840732310117488],[-81.48141481414814,30.849175196466902],[-81.49221492214922,30.86774954643562],[-81.49221492214922,30.874503855515144],[-81.48141481414814,30.904898246373037],[-81.4310143101431,30.938669791770693],[-81.42381423814238,30.97075275989846],[-81.41661416614166,30.97075275989846],[-81.41661416614166,30.95048983265987],[-81.42021420214202,30.925161173611627],[-81.42741427414273,30.89307820548386],[-81.4310143101431,30.862683814625967],[-81.44181441814418,30.827223691958437],[-81.45621456214562,30.800206455640307],[-81.45621456214562,30.785009260211368],[-81.4490144901449,30.754614869353475],[-81.45261452614525,30.734351942114884],[-81.46341463414633,30.72590905576547],[-81.47061470614706,30.729286210305233],[-81.47781477814777,30.805272187449958]]],[[[-118.36018360183601,32.828187756769424],[-118.34938349383494,32.818056293150136],[-118.36378363783638,32.81636771588025],[-118.38538385383853,32.82481060222966],[-118.39978399783998,32.81974487042001],[-118.40338403384034,32.812990561340484],[-118.41058410584105,32.80961340680072],[-118.4249842498425,32.80285909772118],[-118.42858428584286,32.80285909772118],[-118.43938439384394,32.81636771588025],[-118.45018450184502,32.818056293150136],[-118.47538475384754,32.838319220388726],[-118.48978489784898,32.84507352946825],[-118.50058500585006,32.8501392612779],[-118.50778507785077,32.86533645670684],[-118.50778507785077,32.87715649759603],[-118.51858518585186,32.88559938394545],[-118.53298532985329,32.90417373391415],[-118.53658536585365,32.90586231118404],[-118.54738547385475,32.91937092934309],[-118.54738547385475,32.937945279311805],[-118.5509855098551,32.94469958839133],[-118.55818558185581,32.953142474740744],[-118.57618576185762,32.9683396701697],[-118.57978579785798,32.98860259740829],[-118.5869858698587,33.00379979283723],[-118.59418594185942,33.01393125645653],[-118.60858608586085,33.01393125645653],[-118.60858608586085,33.03081702915536],[-118.59418594185942,33.035882760964995],[-118.59058590585906,33.02912845188547],[-118.57618576185762,33.03250560642523],[-118.56538565385654,33.02406272007582],[-118.56538565385654,33.01899698826618],[-118.56178561785617,33.005488370107116],[-118.5509855098551,33.00211121556735],[-118.54378543785438,32.985225442868526],[-118.5149851498515,32.958208206550395],[-118.50418504185042,32.94132243385157],[-118.48258482584825,32.92105950661298],[-118.46818468184682,32.91430519753345],[-118.45018450184502,32.897419424834624],[-118.40698406984069,32.86364787943697],[-118.38178381783817,32.84845068400803],[-118.36018360183601,32.828187756769424]]],[[[-119.48699486994869,33.267217846938934],[-119.48339483394834,33.26384069239917],[-119.46179461794617,33.25708638331963],[-119.44379443794438,33.24188918789069],[-119.4329943299433,33.23175772427139],[-119.4329943299433,33.223314837921976],[-119.44019440194401,33.21993768338221],[-119.44739447394474,33.21993768338221],[-119.45819458194582,33.21656052884245],[-119.4689946899469,33.21656052884245],[-119.47259472594726,33.21487195157256],[-119.48699486994869,33.21824910611234],[-119.49059490594905,33.21824910611234],[-119.49419494194942,33.21656052884245],[-119.50139501395014,33.2216262606521],[-119.51579515795157,33.2216262606521],[-119.5229952299523,33.22838056973163],[-119.54459544595446,33.23175772427139],[-119.56619566195661,33.24695491970034],[-119.56619566195661,33.25202065150998],[-119.57339573395734,33.25877496058952],[-119.57339573395734,33.265529269669045],[-119.58059580595805,33.27566073328835],[-119.5769957699577,33.27903788782811],[-119.56259562595625,33.272283578748585],[-119.55179551795518,33.280726465098],[-119.54459544595446,33.280726465098],[-119.53379533795338,33.285792196907636],[-119.51219512195121,33.27566073328835],[-119.49779497794978,33.265529269669045],[-119.48699486994869,33.267217846938934]]],[[[-118.5149851498515,33.42256695576813],[-118.52218522185223,33.427632687577784],[-118.52938529385294,33.42932126484767],[-118.53658536585365,33.42932126484767],[-118.54378543785438,33.432698419387435],[-118.5509855098551,33.432698419387435],[-118.55818558185581,33.432698419387435],[-118.56538565385654,33.4360755739272],[-118.57258572585727,33.43776415119709],[-118.57258572585727,33.44114130573685],[-118.57258572585727,33.4462070375465],[-118.57978579785798,33.447895614816375],[-118.58338583385833,33.452961346626026],[-118.59058590585906,33.459715655705565],[-118.59418594185942,33.46646996478509],[-118.60138601386014,33.47153569659474],[-118.60498604986049,33.47660142840438],[-118.59778597785979,33.47660142840438],[-118.5869858698587,33.474912851134505],[-118.57978579785798,33.47660142840438],[-118.5689856898569,33.474912851134505],[-118.56178561785617,33.473224273864616],[-118.54738547385475,33.474912851134505],[-118.54018540185402,33.47660142840438],[-118.53658536585365,33.47660142840438],[-118.52938529385294,33.469847119324854],[-118.52578525785258,33.46646996478509],[-118.51858518585186,33.459715655705565],[-118.50778507785077,33.454649923895914],[-118.50058500585006,33.45127276935615],[-118.50058500585006,33.447895614816375],[-118.4969849698497,33.44282988300674],[-118.49338493384934,33.44114130573685],[-118.48978489784898,33.44282988300674],[-118.48618486184861,33.44451846027661],[-118.48258482584825,33.447895614816375],[-118.47538475384754,33.447895614816375],[-118.47178471784719,33.44114130573685],[-118.46818468184682,33.44282988300674],[-118.46458464584646,33.43945272846696],[-118.45738457384573,33.434386996657324],[-118.45018450184502,33.432698419387435],[-118.44658446584467,33.42932126484767],[-118.43578435784357,33.42932126484767],[-118.43218432184321,33.427632687577784],[-118.42858428584286,33.427632687577784],[-118.42138421384215,33.427632687577784],[-118.39618396183963,33.41581264668861],[-118.3889838898389,33.417501223958496],[-118.38178381783817,33.410746914878956],[-118.37818378183782,33.410746914878956],[-118.37458374583746,33.410746914878956],[-118.3709837098371,33.40905833760908],[-118.36738367383674,33.40568118306932],[-118.36738367383674,33.39892687398978],[-118.3709837098371,33.39554971945002],[-118.36738367383674,33.38879541037049],[-118.36378363783638,33.38879541037049],[-118.35658356583565,33.3769753694813],[-118.34218342183422,33.36684390586201],[-118.33138331383313,33.3584010195126],[-118.32778327783278,33.348269555893296],[-118.32778327783278,33.34489240135353],[-118.32418324183242,33.34320382408366],[-118.3169831698317,33.34320382408366],[-118.30978309783097,33.33644951500412],[-118.30258302583026,33.31956374230529],[-118.30618306183061,33.31956374230529],[-118.30978309783097,33.31449801049564],[-118.30258302583026,33.309432278686],[-118.31338313383134,33.306055124146226],[-118.31338313383134,33.30098939233659],[-118.32778327783278,33.2993008150667],[-118.34578345783459,33.306055124146226],[-118.35658356583565,33.312809433225766],[-118.36378363783638,33.31449801049564],[-118.37458374583746,33.31956374230529],[-118.39618396183963,33.31956374230529],[-118.41058410584105,33.31956374230529],[-118.42138421384215,33.31618658776553],[-118.4429844298443,33.31956374230529],[-118.46458464584646,33.322940896845054],[-118.47178471784719,33.33307236046436],[-118.48258482584825,33.34658097862342],[-118.48978489784898,33.3584010195126],[-118.48618486184861,33.36853248313189],[-118.48618486184861,33.37190963767166],[-118.4789847898479,33.38035252402108],[-118.47538475384754,33.38204110129095],[-118.4789847898479,33.3871068331006],[-118.48618486184861,33.40230402852954],[-118.48618486184861,33.40568118306932],[-118.48618486184861,33.40905833760908],[-118.48618486184861,33.41581264668861],[-118.48978489784898,33.41918980122837],[-118.4969849698497,33.42087837849826],[-118.50418504185042,33.42256695576813],[-118.51138511385113,33.42425553303802],[-118.5149851498515,33.42256695576813]]],[[[-120.0450004500045,34.03720908200545],[-120.04140041400413,34.02876619565603],[-120.04860048600486,34.01525757749697],[-120.04860048600486,34.00343753660779],[-120.03420034200342,33.989928918448726],[-120.0090000900009,33.97979745482942],[-119.98019980199803,33.9831746093692],[-119.98019980199803,33.95953452759083],[-119.96939969399693,33.95278021851131],[-119.96939969399693,33.94096017762213],[-119.99819998199982,33.94096017762213],[-120.01980019800197,33.93420586854259],[-120.04860048600486,33.913942941304],[-120.07020070200701,33.912254364034126],[-120.0810008100081,33.907188632224475],[-120.10260102601026,33.907188632224475],[-120.10980109801098,33.90043432314495],[-120.10980109801098,33.89368001406541],[-120.12420124201242,33.8953685913353],[-120.1350013500135,33.902122900414824],[-120.1530015300153,33.912254364034126],[-120.17460174601746,33.922385827653414],[-120.18540185401854,33.93758302308237],[-120.1890018900189,33.94433733216189],[-120.19980199801998,33.95278021851131],[-120.21060210602106,33.9730431457499],[-120.21780217802177,33.97642030028966],[-120.2250022500225,33.98824034117884],[-120.23580235802358,33.991617495718614],[-120.25020250202502,34.0017489593379],[-120.23580235802358,34.00850326841744],[-120.21780217802177,34.01019184568732],[-120.19980199801998,34.005126113877665],[-120.18540185401854,34.00850326841744],[-120.1710017100171,34.006814691147554],[-120.16020160201602,34.01525757749697],[-120.14580145801457,34.02370046384638],[-120.1350013500135,34.025389041116256],[-120.09540095400953,34.01863473203673],[-120.07380073800738,34.025389041116256],[-120.05940059400594,34.03720908200545],[-120.0450004500045,34.03720908200545]]],[[[-120.34380343803437,34.04565196835486],[-120.33660336603366,34.04902912289462],[-120.32940329403294,34.047340545624735],[-120.31860318603185,34.04058623654521],[-120.31140311403114,34.03383192746567],[-120.30780307803079,34.027077618386144],[-120.30780307803079,34.01863473203673],[-120.32940329403294,34.01863473203673],[-120.3510035100351,34.01863473203673],[-120.36180361803618,34.01525757749697],[-120.37260372603726,34.016946154766856],[-120.38340383403835,34.02370046384638],[-120.39420394203941,34.025389041116256],[-120.4050040500405,34.032143350195796],[-120.41580415804158,34.032143350195796],[-120.4230042300423,34.025389041116256],[-120.43740437404374,34.02876619565603],[-120.44460444604445,34.03045477292591],[-120.44820448204482,34.03552050473556],[-120.43740437404374,34.03889765927532],[-120.41580415804158,34.054094854704275],[-120.4050040500405,34.0507177001645],[-120.39420394203941,34.054094854704275],[-120.37980379803798,34.0608491637838],[-120.36900369003689,34.0709806274031],[-120.36900369003689,34.07604635921274],[-120.36180361803618,34.0709806274031],[-120.35820358203583,34.06422631832356],[-120.35460354603546,34.05916058651391],[-120.36180361803618,34.052406277434386],[-120.35460354603546,34.047340545624735],[-120.34380343803437,34.04565196835486]]],[[[-119.53019530195301,34.025389041116256],[-119.54099540995409,34.02032330930662],[-119.54459544595446,34.01356900022708],[-119.54819548195482,34.00343753660779],[-119.5589955899559,33.99499465025838],[-119.58059580595805,33.99330607298849],[-119.58779587795877,33.98824034117884],[-119.62379623796238,33.98655176390896],[-119.64539645396454,33.98655176390896],[-119.65619656196561,33.98655176390896],[-119.6669966699667,33.9831746093692],[-119.67419674196742,33.97810887755955],[-119.68139681396814,33.97642030028966],[-119.6849968499685,33.9730431457499],[-119.69939699396994,33.96797741394025],[-119.70659706597066,33.96797741394025],[-119.71379713797137,33.96122310486072],[-119.7209972099721,33.95953452759083],[-119.74259742597425,33.96291168213061],[-119.75339753397535,33.96291168213061],[-119.76059760597606,33.95784595032096],[-119.77139771397714,33.95953452759083],[-119.78939789397893,33.95953452759083],[-119.80019800198002,33.96291168213061],[-119.81819818198181,33.95953452759083],[-119.82539825398254,33.96628883667037],[-119.83979839798397,33.969665991210135],[-119.85059850598506,33.96797741394025],[-119.86499864998649,33.97810887755955],[-119.87579875798758,33.97979745482942],[-119.8829988299883,33.991617495718614],[-119.8829988299883,34.0017489593379],[-119.88659886598866,34.00850326841744],[-119.87579875798758,34.02370046384638],[-119.87579875798758,34.032143350195796],[-119.88659886598866,34.03889765927532],[-119.89739897398974,34.04902912289462],[-119.91179911799118,34.05578343197415],[-119.9189991899919,34.05747200924404],[-119.92259922599226,34.054094854704275],[-119.92979929799299,34.05578343197415],[-119.93339933399334,34.0608491637838],[-119.92259922599226,34.067603472863325],[-119.92259922599226,34.07266920467298],[-119.9189991899919,34.0794235137525],[-119.90459904599047,34.074357781942865],[-119.88659886598866,34.074357781942865],[-119.85779857798578,34.0709806274031],[-119.83619836198362,34.06422631832356],[-119.82539825398254,34.05578343197415],[-119.80739807398074,34.052406277434386],[-119.78939789397893,34.05578343197415],[-119.77859778597787,34.05578343197415],[-119.76059760597606,34.05578343197415],[-119.75339753397535,34.052406277434386],[-119.74259742597425,34.052406277434386],[-119.73539735397354,34.04565196835486],[-119.73179731797318,34.04902912289462],[-119.71019710197102,34.042274813815084],[-119.7029970299703,34.03383192746567],[-119.69219692196921,34.02876619565603],[-119.6849968499685,34.02032330930662],[-119.67779677796779,34.02032330930662],[-119.6669966699667,34.016946154766856],[-119.65619656196561,34.01863473203673],[-119.63459634596346,34.01356900022708],[-119.61659616596165,34.02032330930662],[-119.60939609396094,34.02876619565603],[-119.60939609396094,34.03889765927532],[-119.58779587795877,34.04902912289462],[-119.5769957699577,34.0507177001645],[-119.56619566195661,34.05578343197415],[-119.53379533795338,34.04058623654521],[-119.5229952299523,34.03383192746567],[-119.53019530195301,34.025389041116256]]],[[[-76.56376563765637,34.67042555821145],[-76.55656556565565,34.66367124913192],[-76.54216542165422,34.65353978551262],[-76.53856538565385,34.641719744623444],[-76.5529655296553,34.63665401281379],[-76.55656556565565,34.64003116735357],[-76.59256592565926,34.66367124913192],[-76.6429664296643,34.67886844456086],[-76.65376653766538,34.683934176370514],[-76.65376653766538,34.69068848545004],[-76.63576635766357,34.69068848545004],[-76.56376563765637,34.67042555821145]]],[[[-76.25776257762577,34.913580685074564],[-76.25056250562506,34.92202357142398],[-76.23256232562325,34.932155035043266],[-76.21456214562146,34.94059792139268],[-76.20376203762038,34.94397507593246],[-76.22176221762217,34.91695783961433],[-76.25056250562506,34.90344922145526],[-76.3009630096301,34.85785763516843],[-76.32256322563225,34.849414748819015],[-76.34056340563406,34.83928328519973],[-76.39456394563945,34.786937389833355],[-76.52056520565205,34.6163910855752],[-76.53136531365313,34.589373849257086],[-76.53856538565385,34.60794819922579],[-76.52416524165241,34.63834259008368],[-76.40896408964089,34.793691698912895],[-76.30456304563046,34.88318629421667],[-76.26136261362613,34.90682637599504],[-76.25776257762577,34.913580685074564]]],[[[-75.99135991359913,35.12296426654002],[-75.9661596615966,35.11789853473037],[-75.94095940959409,35.126341421079786],[-75.8869588695887,35.156735811937665],[-75.80055800558006,35.183753048255795],[-75.77175771757717,35.19726166641486],[-75.77535775357754,35.19050735733532],[-75.78255782557825,35.18544162552567],[-75.7969579695797,35.178687316446144],[-75.81855818558185,35.163490121017205],[-75.90855908559085,35.136472884699074],[-76.01656016560165,35.0756841029833],[-76.00576005760057,35.08581556660259],[-75.99855998559985,35.09763560749178],[-75.99135991359913,35.12296426654002]]],[[[-75.7141571415714,35.925038469734304],[-75.72135721357213,35.93010420154394],[-75.72855728557285,35.93516993335359],[-75.72855728557285,35.94023566516324],[-75.72135721357213,35.945301396972894],[-75.7141571415714,35.94698997424277],[-75.70335703357033,35.945301396972894],[-75.69615696156961,35.94192424243313],[-75.68895688956889,35.938547087893355],[-75.67455674556746,35.93348135608372],[-75.66735667356673,35.93010420154394],[-75.66015660156602,35.925038469734304],[-75.66015660156602,35.914907006115],[-75.64575645756457,35.89970981068606],[-75.61335613356133,35.86256111074864],[-75.62055620556205,35.845675338049816],[-75.62055620556205,35.83385529716064],[-75.62415624156242,35.83047814262086],[-75.64215642156421,35.82878956535099],[-75.66015660156602,35.83554387443051],[-75.66735667356673,35.85242964712934],[-75.6709567095671,35.87100399709806],[-75.67815678156781,35.886201192527],[-75.70695706957069,35.91321842884511],[-75.7141571415714,35.925038469734304]]],[[[-74.13374133741337,39.71420586335107],[-74.11934119341193,39.737845945129436],[-74.10854108541085,39.74966598601861],[-74.09774097740977,39.75642029509814],[-74.10494104941048,39.72940305878002],[-74.130141301413,39.70069724519202],[-74.14814148141481,39.66523712252447],[-74.18414184141841,39.61626838169788],[-74.23094230942309,39.55379102271222],[-74.2561425614256,39.52170805458445],[-74.2561425614256,39.530150940933865],[-74.2561425614256,39.5352166727435],[-74.2561425614256,39.54703671363269],[-74.24174241742418,39.5757425272207],[-74.15894158941589,39.685500049763064],[-74.13374133741337,39.71420586335107]]],[[[-71.35811358113581,41.55813224206298],[-71.35811358113581,41.5361807375545],[-71.36171361713616,41.51422923304604],[-71.36531365313652,41.49565488307732],[-71.37251372513725,41.482146264918256],[-71.3761137611376,41.477080533108605],[-71.38331383313833,41.46863764675919],[-71.39411394113941,41.463571914949554],[-71.39771397713977,41.461883337679666],[-71.40131401314012,41.46863764675919],[-71.39411394113941,41.49058915126767],[-71.39771397713977,41.50240919215685],[-71.39051390513904,41.505786346696624],[-71.39051390513904,41.50916350123639],[-71.38691386913868,41.51254065577615],[-71.38331383313833,41.5176063875858],[-71.39411394113941,41.526049273935215],[-71.39411394113941,41.54293504663404],[-71.3761137611376,41.57839516930157],[-71.36891368913689,41.576706592031684],[-71.36171361713616,41.57164086022205],[-71.35811358113581,41.566575128412396],[-71.35811358113581,41.55813224206298]]],[[[-71.2861128611286,41.581772323841335],[-71.27891278912789,41.59359236473051],[-71.27531275312752,41.62060960104864],[-71.26811268112681,41.63242964193782],[-71.25731257312573,41.64087252828723],[-71.23211232112321,41.65269256917641],[-71.22131221312213,41.66113545552582],[-71.22131221312213,41.64087252828723],[-71.23211232112321,41.6054124056197],[-71.23211232112321,41.53111500574485],[-71.23571235712356,41.519294964855675],[-71.23931239312392,41.50916350123639],[-71.23931239312392,41.50072061488697],[-71.23211232112321,41.488900573997796],[-71.26451264512644,41.49565488307732],[-71.2861128611286,41.482146264918256],[-71.3041130411304,41.46694906948932],[-71.32211322113221,41.46863764675919],[-71.33651336513364,41.4585061831399],[-71.34731347313473,41.45512902860014],[-71.35451354513545,41.4585061831399],[-71.35811358113581,41.47201480129897],[-71.35091350913508,41.477080533108605],[-71.31851318513185,41.488900573997796],[-71.30771307713077,41.49565488307732],[-71.32211322113221,41.50916350123639],[-71.32571325713256,41.519294964855675],[-71.32211322113221,41.53111500574485],[-71.31131311313112,41.541246469364154],[-71.30771307713077,41.546312201173805],[-71.30771307713077,41.55306651025333],[-71.30771307713077,41.568263705682284],[-71.3041130411304,41.57164086022205],[-71.28971289712896,41.57839516930157],[-71.2861128611286,41.581772323841335]]],[[[-122.43542435424354,47.42593825490536],[-122.42102421024211,47.40905248220653],[-122.40662406624065,47.400609595857105],[-122.38862388623886,47.39385528677758],[-122.3670236702367,47.38372382315828],[-122.37422374223742,47.38372382315828],[-122.41742417424175,47.370215204999226],[-122.44982449824498,47.34826370049075],[-122.46782467824679,47.33644365960157],[-122.4750247502475,47.34995227776065],[-122.4750247502475,47.3634608959197],[-122.46782467824679,47.373592359539],[-122.45342453424534,47.37696951407875],[-122.44262442624427,47.3820352458884],[-122.4390243902439,47.392166709507705],[-122.44622446224463,47.400609595857105],[-122.46422464224642,47.39723244131736],[-122.4570245702457,47.39047813223783],[-122.4750247502475,47.38372382315828],[-122.48582485824858,47.38034666861853],[-122.48942489424894,47.373592359539],[-122.48942489424894,47.3533294323004],[-122.4930249302493,47.344886545951],[-122.49662496624967,47.33644365960157],[-122.50382503825038,47.33137792779192],[-122.5110251102511,47.33137792779192],[-122.51822518225183,47.338132236871445],[-122.5290252902529,47.34657512322087],[-122.53262532625325,47.356706586840176],[-122.5290252902529,47.36683805045948],[-122.52182521825219,47.373592359539],[-122.51822518225183,47.38034666861853],[-122.5110251102511,47.45633264576324],[-122.50382503825038,47.46815268665242],[-122.48942489424894,47.48334988208137],[-122.47142471424715,47.49516992297055],[-122.4570245702457,47.5002356547802],[-122.46062460624606,47.48672703662115],[-122.4570245702457,47.47997272754159],[-122.44982449824498,47.47490699573197],[-122.44262442624427,47.46646410938254],[-122.4390243902439,47.45633264576324],[-122.4390243902439,47.436069718524664],[-122.43542435424354,47.42593825490536]]],[[[-122.49662496624967,47.606616022782816],[-122.49662496624967,47.601550290973165],[-122.4930249302493,47.59479598189364],[-122.48942489424894,47.58973025008399],[-122.47862478624786,47.58635309554421],[-122.48942489424894,47.58128736373456],[-122.50022500225002,47.57115590011526],[-122.52182521825219,47.574533054655035],[-122.54342543425435,47.59479598189364],[-122.55782557825577,47.59817313643339],[-122.57222572225723,47.596484559163514],[-122.57942579425794,47.601550290973165],[-122.56862568625687,47.61843606367199],[-122.56862568625687,47.63025610456117],[-122.57582575825758,47.63869899091057],[-122.57942579425794,47.64883045452987],[-122.57942579425794,47.66233907268892],[-122.57942579425794,47.66909338176848],[-122.56142561425614,47.685979154467304],[-122.55782557825577,47.69611061808658],[-122.55782557825577,47.70624208170588],[-122.55782557825577,47.712996390785406],[-122.54702547025471,47.71637354532518],[-122.53622536225362,47.71468496805531],[-122.52542525425254,47.70961923624566],[-122.51822518225183,47.70286492716613],[-122.5110251102511,47.69611061808658],[-122.50742507425073,47.664027649958825],[-122.50022500225002,47.64883045452987],[-122.48942489424894,47.642076145450346],[-122.49662496624967,47.63363325910092],[-122.50382503825038,47.63025610456117],[-122.5110251102511,47.62687895002139],[-122.50022500225002,47.62012464094187],[-122.50022500225002,47.61168175459247],[-122.49662496624967,47.606616022782816]]],[[[-122.86022860228601,48.48974193493146],[-122.86022860228601,48.47285616223263],[-122.84942849428495,48.461036121343454],[-122.8350283502835,48.45934754407358],[-122.82062820628207,48.47285616223263],[-122.80982809828097,48.45765896680368],[-122.80622806228062,48.44246177137475],[-122.81342813428134,48.4272645759458],[-122.82782827828278,48.417133112326496],[-122.8890288902889,48.42388742140602],[-122.88182881828818,48.44077319410485],[-122.89982899828999,48.4475275031844],[-122.92142921429215,48.45090465772415],[-122.93582935829357,48.45765896680368],[-122.9430294302943,48.47623331677241],[-122.93582935829357,48.493119089471236],[-122.92502925029251,48.50662770763029],[-122.91062910629105,48.51338201670981],[-122.91782917829178,48.523513480329115],[-122.91782917829178,48.53364494394842],[-122.91422914229142,48.54208783029782],[-122.91062910629105,48.54715356210747],[-122.88542885428853,48.564039334806296],[-122.87822878228782,48.56572791207617],[-122.86022860228601,48.54039925302794],[-122.86022860228601,48.52182490305924],[-122.86022860228601,48.48974193493146]]],[[[-123.65223652236523,49.0334638158337],[-123.65943659436594,49.0419067021831],[-123.6990369903699,49.08243255666028],[-123.70263702637027,49.09931832935911],[-123.6990369903699,49.10944979297841],[-123.68823688236881,49.107761215708535],[-123.65943659436594,49.07230109304098],[-123.56943569435694,48.991249384086615],[-123.54783547835478,48.97605218865769],[-123.47223472234722,48.93890348872026],[-123.45783457834578,48.933837756910606],[-123.42903429034291,48.93046060237083],[-123.38943389433894,48.920329138751555],[-123.36423364233642,48.906820520592476],[-123.33543335433353,48.90344336605273],[-123.3210332103321,48.8966890569732],[-123.31383313833138,48.88149186154425],[-123.31743317433174,48.86967182065507],[-123.32823328233283,48.86460608884542],[-123.34263342633426,48.86967182065507],[-123.36783367833678,48.86122893430564],[-123.3930339303393,48.87304897519482],[-123.43623436234361,48.90344336605273],[-123.52983529835298,48.942280643260034],[-123.63423634236342,49.02502092948427],[-123.65223652236523,49.0334638158337]]],[[[-93.02673026730267,61.917308385038666],[-93.02673026730267,61.91224265322904],[-93.0339303393034,61.903799766879615],[-92.98352983529836,61.890291148720564],[-92.96552965529655,61.88860257145066],[-92.98352983529836,61.868339644212085],[-93.01953019530195,61.84469956243373],[-93.05913059130592,61.82950236700478],[-93.08793087930879,61.83456809881443],[-93.10233102331023,61.846388139703606],[-93.13113131131311,61.87509395329161],[-93.1491314913149,61.88353683964101],[-93.1959319593196,61.876782530561485],[-93.21753217532175,61.881848262371136],[-93.22473224732246,61.90717692141939],[-93.21393213932139,61.92068553957844],[-93.1959319593196,61.92406269411822],[-93.10233102331023,61.92237411684832],[-93.08433084330844,61.925751271388094],[-93.06633066330663,61.93757131227727],[-93.04473044730447,61.925751271388094],[-93.02673026730267,61.917308385038666]]],[[[-64.0860408604086,63.33571329174015],[-64.10044100441004,63.32220467358107],[-64.08964089640897,63.30869605542202],[-64.07164071640716,63.293498859993065],[-64.06084060840608,63.27492451002436],[-64.09324093240932,63.279990241834014],[-64.1580415804158,63.320516096311195],[-64.18324183241832,63.320516096311195],[-64.17244172441724,63.315450364501544],[-64.16884168841688,63.30869605542202],[-64.17244172441724,63.30363032361237],[-64.18684186841868,63.30194174634249],[-64.20124201242012,63.30531890088227],[-64.22284222842228,63.31882751904132],[-64.25884258842588,63.32727040539072],[-64.28044280442803,63.3407790235498],[-64.31284312843128,63.369484837137804],[-64.31644316443165,63.374550568947456],[-64.32364323643236,63.38130487802698],[-64.33084330843307,63.388059187106506],[-64.34164341643417,63.38974776437638],[-64.35244352443524,63.39481349618603],[-64.3560435604356,63.404944959805334],[-64.35964359643596,63.418453577964385],[-64.36324363243632,63.42689646431381],[-64.36684366843669,63.43027361885356],[-64.3740437404374,63.431962196123465],[-64.37764377643776,63.43365077339334],[-64.38124381243811,63.43871650520299],[-64.38844388443884,63.45053654609217],[-64.38844388443884,63.45222512336204],[-64.39924399243992,63.46573374152112],[-64.410044100441,63.47079947333077],[-64.42084420844208,63.472488050600646],[-64.40644406444063,63.480930936950045],[-64.38844388443884,63.4859966687597],[-64.3920439204392,63.4876852460296],[-64.40284402844028,63.49106240056935],[-64.410044100441,63.49275097783922],[-64.40644406444063,63.51132532780795],[-64.41724417244173,63.53158825504653],[-64.43524435244352,63.54847402774536],[-64.45324453244532,63.55522833682488],[-64.4640446404464,63.561982645904436],[-64.48564485644856,63.60250850038162],[-64.49644496444964,63.61601711854067],[-64.48564485644856,63.62614858215997],[-64.47844478444784,63.63796862304915],[-64.4640446404464,63.64641150939855],[-64.4460444604446,63.6514772412082],[-64.4280442804428,63.6514772412082],[-64.40644406444063,63.654854395747975],[-64.39564395643956,63.663297282097375],[-64.39564395643956,63.676805900256454],[-64.3740437404374,63.676805900256454],[-64.3560435604356,63.668363013907026],[-64.3380433804338,63.65654297301785],[-64.32724327243272,63.64472293212867],[-64.32364323643236,63.59406561403219],[-64.31644316443165,63.57380268679361],[-64.30564305643055,63.55522833682488],[-64.29124291242913,63.534965409586306],[-64.28044280442803,63.516391059617604],[-64.2840428404284,63.499505286918776],[-64.30564305643055,63.4859966687597],[-64.2840428404284,63.47924235968017],[-64.27324273242732,63.47079947333077],[-64.25164251642516,63.445470814282515],[-64.27324273242732,63.445470814282515],[-64.2840428404284,63.44209365974277],[-64.29124291242913,63.43871650520299],[-64.28044280442803,63.43027361885356],[-64.27324273242732,63.42858504158369],[-64.26244262442624,63.42689646431381],[-64.25164251642516,63.42520788704394],[-64.24444244442444,63.418453577964385],[-64.230042300423,63.40325638253546],[-64.230042300423,63.39987922799568],[-64.22284222842228,63.39481349618603],[-64.21564215642157,63.38974776437638],[-64.20844208442084,63.38974776437638],[-64.1940419404194,63.396502073455935],[-64.19044190441905,63.39819065072581],[-64.18324183241832,63.39312491891616],[-64.16884168841688,63.37623914621733],[-64.16884168841688,63.37286199167755],[-64.16884168841688,63.36610768259803],[-64.16884168841688,63.36273052805828],[-64.16524165241653,63.361041950788376],[-64.15444154441543,63.3593533735185],[-64.11844118441184,63.3407790235498],[-64.1040410404104,63.33571329174015],[-64.0860408604086,63.33571329174015]]],[[[-83.27423274232741,66.30929786400358],[-83.28863288632886,66.30929786400358],[-83.29583295832958,66.31267501854333],[-83.29583295832958,66.31942932762288],[-83.28863288632886,66.32956079124216],[-83.27423274232741,66.34306940940124],[-83.26343263432634,66.34644656394099],[-83.23463234632347,66.34475798667111],[-83.22383223832237,66.34138083213134],[-83.19863198631985,66.31942932762288],[-83.18423184231843,66.31605217308311],[-83.15183151831518,66.31267501854333],[-83.13743137431373,66.30929786400358],[-83.1590315903159,66.30254355492406],[-83.16983169831698,66.2974778231144],[-83.1770317703177,66.28903493676498],[-83.1590315903159,66.28565778222523],[-83.10143101431014,66.28903493676498],[-83.09063090630906,66.28565778222523],[-83.06543065430654,66.2670834322565],[-83.04743047430473,66.26201770044685],[-82.92862928629286,66.28059205041558],[-82.90342903429034,66.2687720095264],[-82.93942939429394,66.25526339136732],[-82.95742957429574,66.24344335047815],[-82.98982989829898,66.20967180508049],[-83.00783007830078,66.19954034146119],[-83.04023040230402,66.19447460965156],[-83.07623076230762,66.19785176419131],[-83.11223112231121,66.20798322781062],[-83.1410314103141,66.22486900050944],[-83.18783187831878,66.24175477320827],[-83.25263252632526,66.25019765955767],[-83.29223292232922,66.2670834322565],[-83.27423274232741,66.30929786400358]]],[[[-91.46431464314642,69.77763557634265],[-91.47511475114752,69.7624383809137],[-91.49311493114931,69.74892976275464],[-91.53271532715327,69.73035541278591],[-91.55791557915579,69.72866683551604],[-91.60831608316083,69.74555260821487],[-91.63351633516335,69.75061834002452],[-91.64431644316443,69.75230691729439],[-91.67671676716766,69.77425842180287],[-91.6911169111691,69.77932415361252],[-91.7379173791738,69.7911441945017],[-91.7379173791738,69.79789850358122],[-91.6119161191612,69.82153858535958],[-91.57231572315723,69.83504720351866],[-91.55431554315543,69.8384243580584],[-91.52191521915219,69.83335862624878],[-91.50391503915039,69.8384243580584],[-91.49671496714967,69.8485558216777],[-91.49311493114931,69.86037586256688],[-91.48951489514894,69.87219590345606],[-91.47871478714787,69.87895021253561],[-91.46071460714607,69.88063878980549],[-91.44271442714427,69.88401594434524],[-91.42471424714248,69.88570452161514],[-91.41031410314103,69.87895021253561],[-91.41751417514175,69.87219590345606],[-91.43191431914319,69.86713017164641],[-91.45711457114571,69.86037586256688],[-91.44271442714427,69.85193297621748],[-91.45351453514535,69.83673578078853],[-91.47871478714787,69.82322716262948],[-91.50391503915039,69.81816143081983],[-91.47151471514715,69.79958708085113],[-91.46431464314642,69.78945561723182],[-91.46431464314642,69.77763557634265]]],[[[-71.50931509315093,71.01705129243655],[-71.36531365313652,71.01536271516665],[-71.34371343713437,71.00691982881725],[-71.34731347313473,70.98496832430877],[-71.36171361713616,70.97145970614972],[-71.39771397713977,70.94950820164124],[-71.38691386913868,70.92924527440263],[-71.40491404914049,70.91573665624358],[-71.43731437314372,70.91067092443393],[-71.62451624516245,70.90053946081463],[-71.89811898118981,70.85325929725792],[-71.91971919719197,70.84481641090849],[-71.94851948519485,70.82624206093979],[-71.96651966519664,70.81779917459039],[-72.00252002520025,70.81273344278074],[-72.04932049320493,70.80935628824096],[-72.0889208892089,70.81273344278074],[-72.11772117721176,70.82624206093979],[-72.11772117721176,70.82793063820966],[-72.11412114121141,70.8363735245591],[-72.11772117721176,70.8465049881784],[-72.12132121321213,70.8566364517977],[-72.1321213212132,70.86339076087722],[-72.14292142921428,70.86845649268687],[-72.16452164521645,70.8735222244965],[-72.18612186121861,70.88196511084593],[-72.20052200522005,70.89209657446523],[-72.22932229322292,70.9224909653231],[-72.22572225722257,70.92755669713276],[-72.22932229322292,70.93093385167253],[-72.22932229322292,70.93599958348216],[-72.1789217892179,70.94275389256171],[-72.15732157321573,70.94106531529181],[-72.1321213212132,70.93599958348216],[-72.15012150121501,70.92755669713276],[-72.12492124921249,70.92080238805323],[-72.0961209612096,70.9224909653231],[-72.06732067320672,70.93093385167253],[-72.04572045720457,70.94613104710146],[-72.03852038520385,70.96132824253041],[-72.02772027720277,70.99847694246782],[-72.01692016920168,71.01367413789677],[-72.01332013320133,71.0221170242462],[-72.01692016920168,71.0305599105956],[-72.02052020520205,71.03900279694503],[-72.02052020520205,71.04575710602455],[-72.01332013320133,71.05251141510408],[-71.85851858518585,71.0778400741523],[-71.82971829718296,71.07277434234268],[-71.83691836918369,71.06602003326313],[-71.82611826118261,71.06095430145348],[-71.81891818918189,71.0592657241836],[-71.79731797317973,71.0592657241836],[-71.50931509315093,71.01705129243655]]],[[[-108.08928089280893,73.59044305173776],[-108.01368013680137,73.62252601986555],[-107.8480784807848,73.63265748348485],[-107.67527675276753,73.62590317440532],[-107.58167581675816,73.60057451535707],[-107.59247592475924,73.58706589719802],[-107.60687606876068,73.57862301084859],[-107.62847628476284,73.57355727903894],[-107.67527675276753,73.57355727903894],[-107.73287732877328,73.56342581541966],[-107.99567995679956,73.54654004272084],[-108.02448024480245,73.55329435180036],[-108.03168031680316,73.55667150634011],[-108.05328053280533,73.57355727903894],[-108.0820808208082,73.58537731992811],[-108.08928089280893,73.59044305173776]]],[[[-120.99900999009989,75.9308111477952],[-120.96660966609666,75.93756545687472],[-120.91980919809197,75.9409426114145],[-120.88380883808838,75.93587687960485],[-120.86940869408693,75.91730252963612],[-120.87300873008729,75.91054822055659],[-120.87660876608766,75.90210533420719],[-120.87300873008729,75.89197387058789],[-120.86940869408693,75.88353098423849],[-120.87660876608766,75.87339952061919],[-120.89820898208981,75.83793939795166],[-120.90180901809018,75.82443077979258],[-120.91260912609127,75.81092216163353],[-120.99180991809918,75.76364199807679],[-121.06021060210603,75.74000191629844],[-121.09261092610926,75.73493618448879],[-121.16821168211682,75.73324760721891],[-121.25821258212582,75.74506764810809],[-121.29421294212942,75.76026484353704],[-121.2510125101251,75.77715061623587],[-121.11781117811178,75.8024792752841],[-121.08541085410855,75.8126107389034],[-121.07101071010709,75.81429931617328],[-121.0530105301053,75.81429931617328],[-121.0350103501035,75.81767647071305],[-121.02421024210241,75.8227422025227],[-121.02061020610205,75.832873666142],[-121.03141031410314,75.8413165524914],[-121.02061020610205,75.84807086157093],[-120.99900999009989,75.87002236607941],[-121.00981009810098,75.87846525242884],[-121.04581045810457,75.89703960239754],[-121.04221042210422,75.90885964328672],[-121.03141031410314,75.91899110690602],[-120.99900999009989,75.9308111477952]]],[[[-85.16065160651605,77.45897357703905],[-85.17865178651786,77.4640393088487],[-85.17145171451715,77.47754792700775],[-85.1390513905139,77.49949943151623],[-85.15345153451534,77.51300804967528],[-85.1750517505175,77.51638520421506],[-85.20025200252002,77.51807378148493],[-85.24345243452434,77.53327097691388],[-85.54225542255422,77.54002528599341],[-85.52425524255243,77.54846817234281],[-85.46665466654666,77.55522248142236],[-85.44865448654487,77.56028821323198],[-85.41625416254162,77.57210825412119],[-85.38025380253802,77.57717398593081],[-85.34425344253442,77.58730544955012],[-85.32265322653227,77.58899402681999],[-85.01665016650166,77.58392829501037],[-84.99144991449914,77.57210825412119],[-84.94464944649447,77.53495955418376],[-84.93384933849339,77.52820524510423],[-84.90144901449014,77.5214509360247],[-84.87264872648726,77.5197623587548],[-84.84384843848439,77.51638520421506],[-84.8150481504815,77.49949943151623],[-84.8690486904869,77.4826136588174],[-85.0490504905049,77.45897357703905],[-85.16065160651605,77.45897357703905]]],[[[-95.85275852758527,80.65207319438721],[-96.15156151561516,80.6655818125463],[-96.1119611196112,80.68584473978487],[-96.05436054360543,80.6942876261343],[-95.71955719557195,80.6942876261343],[-95.72675726757268,80.69935335794392],[-95.53235532355323,80.69935335794392],[-95.47835478354783,80.70779624429335],[-95.42435424354244,80.69766478067405],[-95.16515165151651,80.69935335794392],[-95.0679506795068,80.68753331705474],[-95.05715057150572,80.68246758524512],[-95.04275042750427,80.67740185343547],[-95.0319503195032,80.66895896708604],[-95.02475024750247,80.66220465800652],[-94.98154981549816,80.64869603984747],[-94.97074970749708,80.63856457622816],[-95.18675186751867,80.6132359171799],[-95.48195481954819,80.63012168987873],[-95.62955629556295,80.65713892619686],[-95.85275852758527,80.65207319438721]]],[[[-14.355143551435503,-7.885098797372322],[-14.347943479434775,-7.9002959928012615],[-14.311943119431191,-7.9273132291193775],[-14.2939429394294,-7.945887579088094],[-14.304743047430463,-7.952641888167619],[-14.329943299432983,-7.962773351786922],[-14.340743407434076,-7.969527660866447],[-14.35154351543514,-7.974593392676098],[-14.37674376743766,-7.976281969945987],[-14.391143911439116,-7.9796591244857495],[-14.405544055440544,-7.974593392676098],[-14.412744127441272,-7.962773351786922],[-14.412744127441272,-7.950953310897745],[-14.416344163441636,-7.939133270008568],[-14.405544055440544,-7.923936074579615],[-14.391143911439116,-7.890164529181959],[-14.37674376743766,-7.878344488292782],[-14.373143731437295,-7.885098797372322],[-14.36954369543696,-7.890164529181959],[-14.365943659436596,-7.890164529181959],[-14.355143551435503,-7.885098797372322]]],[[[-15.946359463594632,11.200890084111819],[-15.92835928359284,11.18569288868288],[-15.91035910359102,11.167118538714178],[-15.90315903159032,11.141789879665936],[-15.895958959589592,11.099575447918866],[-15.888758887588864,11.089443984299564],[-15.881558815588164,11.082689675220038],[-15.8779587795878,11.074246788870624],[-15.881558815588164,11.06073817071156],[-15.895958959589592,11.053983861632034],[-15.906759067590684,11.053983861632034],[-15.917559175591748,11.055672438901908],[-15.924759247592476,11.050606707092271],[-15.93555935559354,11.052295284362145],[-15.964359643596424,11.055672438901908],[-15.964359643596424,11.053983861632034],[-15.971559715597152,11.050606707092271],[-15.97875978759788,11.048918129822383],[-15.982359823598216,11.052295284362145],[-15.982359823598216,11.06073817071156],[-15.982359823598216,11.06580390252121],[-15.97875978759788,11.069181057060973],[-15.971559715597152,11.069181057060973],[-15.96075960759606,11.072558211600736],[-15.931959319593176,11.086066829759801],[-15.924759247592476,11.091132561569452],[-15.931959319593176,11.10126402518874],[-15.942759427594268,11.104641179728517],[-15.95355953559536,11.099575447918866],[-15.95355953559536,11.084378252489927],[-15.96075960759606,11.089443984299564],[-15.967959679596788,11.097886870648978],[-15.957159571595696,11.113084066077931],[-15.95355953559536,11.124904106967108],[-15.95355953559536,11.136724147856285],[-15.95355953559536,11.151921343285224],[-15.957159571595696,11.173872847793703],[-15.957159571595696,11.187381465952768],[-15.946359463594632,11.200890084111819]]],[[[-15.474754747547479,11.631477287931915],[-15.474754747547479,11.61796866977285],[-15.485554855548543,11.607837206153562],[-15.489154891548907,11.594328587994497],[-15.481954819548179,11.584197124375194],[-15.471154711547115,11.574065660755906],[-15.471154711547115,11.565622774406492],[-15.489154891548907,11.563934197136604],[-15.503555035550363,11.565622774406492],[-15.510755107551063,11.570688506216143],[-15.521555215552155,11.570688506216143],[-15.521555215552155,11.567311351676366],[-15.543155431554311,11.550425578977539],[-15.546755467554675,11.548737001707664],[-15.568355683556831,11.550425578977539],[-15.568355683556831,11.543671269898013],[-15.546755467554675,11.5352283835486],[-15.553955539555403,11.52003118811966],[-15.564755647556467,11.509899724500357],[-15.57555575555756,11.521719765389534],[-15.586355863558623,11.52003118811966],[-15.60075600756008,11.52003118811966],[-15.611556115561143,11.523408342659422],[-15.615156151561507,11.525096919929311],[-15.622356223562235,11.521719765389534],[-15.629556295562963,11.528474074469074],[-15.633156331563299,11.538605538088362],[-15.622356223562235,11.543671269898013],[-15.607956079560779,11.550425578977539],[-15.597155971559715,11.565622774406492],[-15.586355863558623,11.577442815295669],[-15.561155611556103,11.577442815295669],[-15.561155611556103,11.592640010724608],[-15.55035550355504,11.60277147434391],[-15.539555395553947,11.612902937963199],[-15.528755287552883,11.62472297885239],[-15.510755107551063,11.619657247042738],[-15.496354963549635,11.62472297885239],[-15.485554855548543,11.631477287931915],[-15.474754747547479,11.631477287931915]]],[[[11.266312663126627,34.773428771674304],[11.273512735127355,34.77005161713453],[11.280712807128083,34.763297308055],[11.305913059130603,34.74303438081641],[11.298712987129875,34.729525762657346],[11.197911979119795,34.694065639989816],[11.147511475114754,34.668736980941574],[11.129511295112962,34.66367124913192],[11.122311223112234,34.68055702183075],[11.13671136711369,34.694065639989816],[11.151111511115118,34.70757425814887],[11.16911169111691,34.72783718538747],[11.172711727117274,34.74303438081641],[11.172711727117274,34.74810011262606],[11.172711727117274,34.75823157624535],[11.179911799118003,34.76160873078511],[11.183511835118367,34.751477267165825],[11.197911979119795,34.744722958086285],[11.223112231122315,34.74810011262606],[11.223112231122315,34.77005161713453],[11.215912159121586,34.78187165802372],[11.226712267122679,34.79538027618277],[11.23751237512377,34.80382316253218],[11.24471244712447,34.81564320342136],[11.255512555125563,34.82577466704066],[11.26991269912699,34.81733178069125],[11.298712987129875,34.813954626151485],[11.305913059130603,34.80551173980207],[11.277112771127719,34.79706885345266],[11.273512735127355,34.792003121643006],[11.26991269912699,34.78524881256348],[11.266312663126627,34.773428771674304]]],[[[14.257942579425787,36.07532184675385],[14.283142831428307,36.068567537674326],[14.315543155431556,36.0516817649755],[14.333543335433347,36.03479599227667],[14.322743227432284,36.02635310592726],[14.304743047430492,36.02635310592726],[14.275942759427608,36.01622164230797],[14.261542615426151,36.012844487768206],[14.239942399423995,36.01453306503808],[14.221942219422203,36.01959879684773],[14.200342003420047,36.02635310592726],[14.185941859418591,36.03479599227667],[14.189541895418955,36.04492745589597],[14.185941859418591,36.05674749678515],[14.182341823418227,36.06519038313456],[14.196741967419683,36.068567537674326],[14.257942579425787,36.07532184675385]]],[[[25.382053820538204,36.47889181425582],[25.418054180541816,36.4704489279064],[25.4540545405454,36.45018600066781],[25.47925479254792,36.42485734161957],[25.490054900549012,36.397840105301455],[25.490054900549012,36.377577178062865],[25.47925479254792,36.357314250824274],[25.464854648546492,36.34211705539532],[25.4468544685447,36.33705132358568],[25.425254252542544,36.33873990085556],[25.37845378453784,36.34887136447486],[25.360453604536048,36.357314250824274],[25.374853748537504,36.36237998263391],[25.39645396453966,36.36069140536404],[25.410854108541088,36.3640685599038],[25.418054180541816,36.370822868983325],[25.42885428854288,36.38602006441228],[25.436054360543608,36.39108579622193],[25.42885428854288,36.41641445527016],[25.425254252542544,36.42654591888946],[25.418054180541816,36.433300227968985],[25.418054180541816,36.438365959778636],[25.42165421654218,36.4518745779377],[25.407254072540724,36.45862888701723],[25.367653676536776,36.46707177336664],[25.367653676536776,36.47382608244618],[25.374853748537504,36.475514659716055],[25.37845378453784,36.47720323698594],[25.382053820538204,36.47889181425582]]],[[[27.869678696786963,36.59033791406809],[27.869678696786963,36.578517873178896],[27.873278732787327,36.570074986829496],[27.87687876878769,36.56163210048008],[27.866078660786627,36.55656636867043],[27.862478624786263,36.55487779140054],[27.869678696786963,36.55318921413067],[27.873278732787327,36.54981205959089],[27.873278732787327,36.54643490505113],[27.87687876878769,36.54136917324148],[27.855278552785535,36.53123770962219],[27.844478444784443,36.52786055508243],[27.830078300783015,36.52786055508243],[27.830078300783015,36.53461486416195],[27.83367833678338,36.53630344143184],[27.840878408784107,36.543057750511366],[27.848078480784807,36.54812348232102],[27.804878048780495,36.559943523210194],[27.794077940779403,36.56669783228972],[27.80847808478086,36.57514071863913],[27.761677616776183,36.57514071863913],[27.765277652776547,36.585272182258436],[27.77607776077761,36.595403645877724],[27.786877868778703,36.605535109497026],[27.786877868778703,36.6173551503862],[27.794077940779403,36.6173551503862],[27.794077940779403,36.61904372765609],[27.80127801278013,36.62410945946574],[27.80127801278013,36.6173551503862],[27.819278192781923,36.63424092308503],[27.840878408784107,36.64437238670433],[27.862478624786263,36.64606096397421],[27.862478624786263,36.63761807762479],[27.83367833678338,36.63086376854527],[27.822878228782287,36.62410945946574],[27.815678156781587,36.61060084130668],[27.822878228782287,36.61228941857655],[27.830078300783015,36.61228941857655],[27.837278372783743,36.60215795495726],[27.869678696786963,36.62410945946574],[27.873278732787327,36.620732304925966],[27.873278732787327,36.61904372765609],[27.87687876878769,36.6173551503862],[27.869678696786963,36.61397799584644],[27.869678696786963,36.60891226403679],[27.866078660786627,36.605535109497026],[27.862478624786263,36.60215795495726],[27.869678696786963,36.607223686766915],[27.873278732787327,36.605535109497026],[27.873278732787327,36.5987808004175],[27.869678696786963,36.59033791406809]]],[[[25.274052740527424,36.720358363849044],[25.274052740527424,36.72204694111893],[25.27765277652776,36.72204694111893],[25.27765277652776,36.72373551838882],[25.281252812528123,36.727112672928584],[25.27045270452706,36.725424095658695],[25.25245252452524,36.727112672928584],[25.256052560525603,36.735555559278],[25.26325263252633,36.74906417743705],[25.26325263252633,36.762572795596114],[25.26325263252633,36.767638527405765],[25.306453064530643,36.794655763723895],[25.3208532085321,36.78114714556483],[25.335253352533528,36.75750706378646],[25.349653496534984,36.747375600167175],[25.367653676536776,36.73893271381776],[25.382053820538204,36.735555559278],[25.400054000540024,36.72880125019846],[25.410854108541088,36.71191547749963],[25.39645396453966,36.710226900229756],[25.38925389253893,36.703472591150216],[25.38925389253893,36.6950297048008],[25.39645396453966,36.684898241181514],[25.39645396453966,36.67814393210199],[25.374853748537504,36.65450385032362],[25.33885338853389,36.66801246848269],[25.274052740527424,36.720358363849044]]],[[[12.000720007200073,36.83518161820108],[12.036720367203685,36.80647580461307],[12.051120511205113,36.789590031914244],[12.054720547205477,36.767638527405765],[12.029520295202957,36.740621291087635],[11.997119971199709,36.745687022897286],[11.961119611196125,36.76594995013588],[11.935919359193605,36.789590031914244],[11.93231932319324,36.79634434099377],[11.925119251192513,36.81154153642271],[11.921519215192149,36.82842730912154],[11.935919359193605,36.83518161820108],[11.939519395193969,36.83687019547095],[11.946719467194669,36.8419359272806],[11.950319503195033,36.8419359272806],[11.95751957519576,36.84024735001073],[11.968319683196825,36.831804463661314],[11.971919719197189,36.82842730912154],[11.979119791197917,36.82673873185166],[11.986319863198645,36.8233615773119],[11.993519935199345,36.825050154581774],[12.000720007200073,36.83518161820108]]],[[[24.705247052470526,37.034433736047234],[24.716047160471618,37.02092511788817],[24.7520475204752,36.98546499522064],[24.766447664476658,36.956759181632634],[24.766447664476658,36.950004872553095],[24.762847628476294,36.94493914074344],[24.748447484474866,36.939873408933806],[24.744847448474502,36.934807677124155],[24.70884708847089,36.90441328626626],[24.694446944469462,36.92298763623498],[24.680046800468006,36.95169344982298],[24.669246692466942,36.9787106861411],[24.67644676446764,36.99390788157005],[24.67644676446764,37.00066219064958],[24.665646656466578,37.0074164997291],[24.654846548465486,37.02430227242793],[24.64404644046442,37.027679426967694],[24.64404644046442,37.032745158777345],[24.64404644046442,37.03612231331711],[24.65124651246512,37.04118804512676],[24.64404644046442,37.04287662239665],[24.64404644046442,37.04456519966652],[24.64404644046442,37.04963093147617],[24.654846548465486,37.04963093147617],[24.680046800468006,37.032745158777345],[24.690846908469098,37.02936800423758],[24.698046980469826,37.034433736047234],[24.705247052470526,37.034433736047234]]],[[[26.91206912069123,36.94662771801333],[26.919269192691928,36.95844775890251],[26.926469264692656,36.96351349071216],[26.93006930069302,36.96689064525192],[26.926469264692656,36.98208784068086],[26.93006930069302,36.99390788157005],[26.93726937269375,37.00403934518934],[26.944469444694448,37.01417080880864],[26.948069480694812,37.01585938607852],[26.951669516695176,37.02092511788817],[26.95526955269554,37.027679426967694],[26.951669516695176,37.034433736047234],[26.944469444694448,37.04118804512676],[26.933669336693384,37.039499467856885],[26.93006930069302,37.03612231331711],[26.922869228692292,37.034433736047234],[26.915669156691564,37.04118804512676],[26.91206912069123,37.04625377693641],[26.9048690486905,37.06313954963524],[26.897668976689772,37.06820528144489],[26.890468904689044,37.07158243598465],[26.88686886868871,37.074959590524415],[26.890468904689044,37.090156785953354],[26.901269012690136,37.0766481677943],[26.98766987669876,37.04963093147617],[26.98766987669876,37.04118804512676],[26.973269732697332,37.04118804512676],[26.98046980469806,37.02936800423758],[26.99486994869949,37.02261369515806],[27.00567005670058,37.01585938607852],[27.00567005670058,37.00066219064958],[27.016470164701644,37.00910507699899],[27.023670236702372,37.012482231538755],[27.0308703087031,37.012482231538755],[27.041670416704164,37.0074164997291],[27.04527045270453,36.99559645883993],[27.0380703807038,36.9787106861411],[27.041670416704164,36.96689064525192],[27.0380703807038,36.9601363361724],[27.034470344703465,36.956759181632634],[27.034470344703465,36.95338202709286],[27.041670416704164,36.95338202709286],[27.041670416704164,36.9601363361724],[27.048870488704893,36.9601363361724],[27.041670416704164,36.94493914074344],[27.023670236702372,36.94493914074344],[26.99486994869949,36.95338202709286],[26.98766987669876,36.94662771801333],[26.98766987669876,36.93818483166392],[26.984069840698425,36.929741945314504],[26.976869768697696,36.92636479077474],[26.966069660696604,36.928053368044615],[26.958869588695904,36.93143052258439],[26.951669516695176,36.93143052258439],[26.944469444694448,36.92636479077474],[26.93726937269375,36.934807677124155],[26.93006930069302,36.94325056347357],[26.922869228692292,36.94662771801333],[26.91206912069123,36.94662771801333]]],[[[24.44244442444426,37.177962803987256],[24.435244352443533,37.184717113066796],[24.46764467644678,37.201602885765624],[24.485644856448573,37.20666861757526],[24.50004500045,37.199914308495735],[24.503645036450365,37.199914308495735],[24.510845108451093,37.20498004030539],[24.514445144451457,37.20666861757526],[24.521645216452185,37.2032914630355],[24.52524525245252,37.199914308495735],[24.53244532445325,37.18640569033667],[24.536045360453613,37.16783134036797],[24.536045360453613,37.14756841312938],[24.53244532445325,37.13068264043055],[24.52524525245252,37.1441912585896],[24.51804518045182,37.1441912585896],[24.51804518045182,37.132371217700424],[24.514445144451457,37.122239754081136],[24.50724507245073,37.115485445001596],[24.50004500045,37.11041971319196],[24.496444964449665,37.11379686773172],[24.4928449284493,37.115485445001596],[24.4928449284493,37.117174022271485],[24.489244892448937,37.122239754081136],[24.4928449284493,37.12392833135101],[24.496444964449665,37.122239754081136],[24.50004500045,37.12392833135101],[24.489244892448937,37.12730548589079],[24.48204482044821,37.12899406316066],[24.471244712447145,37.12899406316066],[24.464044640446417,37.12392833135101],[24.460444604446053,37.13405979497031],[24.460444604446053,37.137436949510075],[24.45684456844569,37.13574837224019],[24.44964449644496,37.13068264043055],[24.44244442444426,37.13405979497031],[24.435244352443533,37.13405979497031],[24.428044280442805,37.13068264043055],[24.420844208442105,37.12392833135101],[24.420844208442105,37.13574837224019],[24.420844208442105,37.137436949510075],[24.43164431644317,37.1441912585896],[24.42444424444244,37.14925699039925],[24.42444424444244,37.1543227222089],[24.428044280442805,37.159388454018554],[24.435244352443533,37.164454185828205],[24.43164431644317,37.17289707217762],[24.435244352443533,37.17627422671738],[24.44244442444426,37.177962803987256]]],[[[24.3668436684367,37.41267504450096],[24.3740437404374,37.4380037035492],[24.395643956439585,37.4565780535179],[24.420844208442105,37.471775248946855],[24.435244352443533,37.486972444375795],[24.44244442444426,37.486972444375795],[24.44244442444426,37.47346382621673],[24.44244442444426,37.465020939867316],[24.435244352443533,37.451512321708265],[24.43164431644317,37.44644658989861],[24.46764467644678,37.4278722399299],[24.48204482044821,37.41267504450096],[24.478444784447845,37.39072353999248],[24.464044640446417,37.39410069453224],[24.453244532445325,37.38396923091295],[24.446044460444625,37.36539488094424],[24.44244442444426,37.3501976855153],[24.428044280442805,37.33837764462612],[24.410044100441013,37.32318044919717],[24.388443884438857,37.31473756284775],[24.3668436684367,37.309671831038116],[24.377643776437765,37.345131953705646],[24.384843848438493,37.360329149134586],[24.402844028440285,37.37046061275389],[24.402844028440285,37.37721492183341],[24.39924399243992,37.3789034991033],[24.39204392043922,37.382280653643065],[24.388443884438857,37.38396923091295],[24.388443884438857,37.39072353999248],[24.395643956439585,37.40085500361178],[24.395643956439585,37.41098646723107],[24.384843848438493,37.41605219904072],[24.3668436684367,37.41267504450096]]],[[[24.9428494284943,37.43631512627931],[24.946449464494663,37.43293797173955],[24.953649536495362,37.429560817199786],[24.96084960849609,37.424495085390134],[24.964449644496455,37.41774077631061],[24.964449644496455,37.40760931269131],[24.964449644496455,37.402543580881655],[24.957249572495726,37.39747784907202],[24.896048960489622,37.37214919002378],[24.881648816488166,37.36370630367436],[24.881648816488166,37.37383776729365],[24.881648816488166,37.38059207637319],[24.88524885248853,37.38565780818283],[24.888848888488894,37.39072353999248],[24.888848888488894,37.39747784907202],[24.881648816488166,37.39747784907202],[24.86004860048601,37.39747784907202],[24.863648636486374,37.40760931269131],[24.86724867248674,37.41436362177083],[24.874448744487438,37.42111793085037],[24.881648816488166,37.42618366266002],[24.878048780487802,37.42618366266002],[24.86724867248674,37.43124939446966],[24.88524885248853,37.43462654900944],[24.899648996489958,37.44813516716849],[24.903249032490322,37.465020939867316],[24.903249032490322,37.48021813529627],[24.896048960489622,37.502169639804734],[24.896048960489622,37.51061252615415],[24.903249032490322,37.51061252615415],[24.928449284492842,37.508923948884274],[24.939249392493934,37.50048106253486],[24.946449464494663,37.485283867105906],[24.953649536495362,37.47008667167697],[24.957249572495726,37.45995520805768],[24.953649536495362,37.45320089897814],[24.946449464494663,37.44306943535885],[24.9428494284943,37.43631512627931]]],[[[23.409234092340938,37.898985298227174],[23.40203402034021,37.9057396073067],[23.40203402034021,37.91249391638624],[23.409234092340938,37.92262538000553],[23.423634236342366,37.93275684362483],[23.438034380343822,37.939511152704355],[23.466834668346678,37.93275684362483],[23.481234812348134,37.941199729974244],[23.492034920349198,37.95639692540318],[23.499234992349926,37.966528389022486],[23.4848348483485,37.966528389022486],[23.47763477634777,37.961462657212834],[23.470434704347042,37.95470834813331],[23.45963459634598,37.95301977086342],[23.45243452434525,37.95470834813331],[23.434434344343458,37.959774079942946],[23.423634236342366,37.959774079942946],[23.456034560345614,37.97328269810201],[23.445234452344522,37.97834842991166],[23.430834308343094,37.98847989353095],[23.441634416344158,37.98847989353095],[23.45243452434525,37.98847989353095],[23.463234632346342,37.98510273899119],[23.470434704347042,37.98003700718154],[23.474034740347406,37.98847989353095],[23.474034740347406,37.99016847080084],[23.470434704347042,37.9935456253406],[23.47763477634777,37.99861135715025],[23.4848348483485,38.001988511690016],[23.495634956349562,38.001988511690016],[23.517235172351718,37.99861135715025],[23.531635316353174,37.99523420261049],[23.53523535235354,37.98847989353095],[23.531635316353174,37.98003700718154],[23.531635316353174,37.9749712753719],[23.53523535235354,37.96821696629236],[23.542435424354238,37.96315123448271],[23.546035460354602,37.95808550267307],[23.546035460354602,37.95301977086342],[23.574835748357486,37.95301977086342],[23.538835388353903,37.939511152704355],[23.542435424354238,37.92937968908507],[23.520835208352082,37.914182493656114],[23.517235172351718,37.898985298227174],[23.513635136351382,37.898985298227174],[23.50283502835029,37.9057396073067],[23.492034920349198,37.90067387549706],[23.481234812348134,37.89054241187776],[23.466834668346678,37.883788102798235],[23.45243452434525,37.88547668006811],[23.420034200342002,37.89223098914765],[23.409234092340938,37.898985298227174]]],[[[20.716407164071654,38.392049861032916],[20.727207272072718,38.38867270649315],[20.73800738007381,38.3836069746835],[20.756007560075602,38.371786933794326],[20.752407524075238,38.371786933794326],[20.73800738007381,38.371786933794326],[20.74520745207454,38.34476969747621],[20.748807488074874,38.33463823385691],[20.76320763207633,38.331261079317144],[20.76320763207633,38.32281819296773],[20.734407344073446,38.31944103842797],[20.72000720007202,38.316063883888205],[20.705607056070562,38.31775246115808],[20.68760687606877,38.336326811126796],[20.6948069480695,38.34308112020632],[20.680406804068042,38.356589738365386],[20.666006660066614,38.371786933794326],[20.648006480064794,38.40555847919198],[20.644406444064458,38.414001365541395],[20.644406444064458,38.435952870049874],[20.640806408064094,38.44608433366916],[20.633606336063366,38.4528386427487],[20.622806228062274,38.45790437455835],[20.615606156061574,38.46634726090775],[20.619206192061938,38.48154445633671],[20.63720637206373,38.47310156998729],[20.644406444064458,38.478167301796944],[20.655206552065522,38.5018073835753],[20.673206732067314,38.496741651765646],[20.673206732067314,38.48492161087647],[20.669606696066978,38.471412992717404],[20.66240662406625,38.461281529098116],[20.676806768067678,38.461281529098116],[20.68760687606877,38.45790437455835],[20.698406984069834,38.4528386427487],[20.709207092070926,38.44608433366916],[20.702007020070198,38.42582140643057],[20.6948069480695,38.408935633731744],[20.673206732067314,38.37685266560398],[20.684006840068406,38.373475511064214],[20.691206912069134,38.371786933794326],[20.705607056070562,38.37009835652445],[20.716407164071654,38.371786933794326],[20.716407164071654,38.37685266560398],[20.702007020070198,38.38529555195339],[20.723607236072354,38.38529555195339],[20.716407164071654,38.392049861032916]]],[[[8.45468454684547,39.07423507806553],[8.458284582845835,39.067480768986],[8.461884618846199,39.06579219171611],[8.469084690846927,39.06579219171611],[8.476284762847627,39.06916934625589],[8.476284762847627,39.070857923525764],[8.47988479884799,39.07254650079565],[8.483484834848355,39.06916934625589],[8.465484654846563,39.0573493053667],[8.458284582845835,39.050594996287174],[8.461884618846199,39.04215210993776],[8.45468454684547,39.028643491778695],[8.447484474844742,38.99487194638104],[8.436684366843679,38.96785471006292],[8.433084330843315,38.96278897825327],[8.422284222842222,38.9611004009834],[8.411484114841159,38.9611004009834],[8.40428404284043,38.966166132793035],[8.40428404284043,38.97460901914245],[8.400684006840066,38.98136332822199],[8.364683646836482,39.028643491778695],[8.350283502835026,39.06241503717635],[8.35388353883539,39.08267796441494],[8.35388353883539,39.091120850764355],[8.346683466834662,39.091120850764355],[8.346683466834662,39.097875159843895],[8.361083610836118,39.118138087082485],[8.386283862838638,39.10462946892342],[8.418684186841887,39.10631804619331],[8.443884438844407,39.10294089165353],[8.45468454684547,39.07423507806553]]],[[[23.66843668436684,39.118138087082485],[23.657636576365775,39.12320381889214],[23.62883628836289,39.14684390067049],[23.621636216362162,39.155286787019904],[23.6180361803618,39.16879540517897],[23.58563585635858,39.20763268238626],[23.600036000360006,39.2143869914658],[23.60363603636037,39.20932125965615],[23.60363603636037,39.20763268238626],[23.6108361083611,39.20763268238626],[23.614436144361463,39.20763268238626],[23.639636396363983,39.18736975514767],[23.664836648366503,39.17048398244884],[23.697236972369723,39.155286787019904],[23.72963729637297,39.14684390067049],[23.726037260372607,39.131646705241536],[23.747637476374763,39.12826955070177],[23.772837728377283,39.12995812797166],[23.79443794437944,39.12489239616201],[23.79443794437944,39.118138087082485],[23.76203762037622,39.091120850764355],[23.740437404374063,39.08098938714507],[23.715237152371543,39.07761223260529],[23.708037080370815,39.07930080987518],[23.69363693636936,39.08943227349448],[23.664836648366503,39.09280942803424],[23.657636576365775,39.097875159843895],[23.657636576365775,39.10462946892342],[23.66843668436684,39.111383778002946],[23.66843668436684,39.118138087082485]]],[[[23.934839348393496,39.22114130054533],[23.92043920439204,39.190746909687434],[23.89523895238952,39.16204109609943],[23.8628386283863,39.14346674613073],[23.834038340383415,39.14684390067049],[23.848438484384843,39.160352518829555],[23.859238592385935,39.16879540517897],[23.873638736387363,39.180615446068146],[23.88803888038882,39.217764146005564],[23.93843938439386,39.280241504991224],[23.95643956439565,39.28868439134064],[23.95643956439565,39.285307236800875],[23.95643956439565,39.2819300822611],[23.952839528395288,39.278552927721336],[23.949239492394923,39.27517577318157],[23.97083970839708,39.27179861864181],[23.967239672396744,39.25153569140322],[23.949239492394923,39.22958418689474],[23.934839348393496,39.22114130054533]]],[[[13.944739447394483,40.702023566232455],[13.93393933939339,40.70540072077222],[13.919539195391962,40.70371214350233],[13.905139051390535,40.70033498896257],[13.890738907389078,40.69358067988304],[13.88353883538835,40.70033498896257],[13.85833858338583,40.707089298042106],[13.847538475384766,40.71553218439152],[13.854738547385494,40.73410653436022],[13.861938619386194,40.744237997979525],[13.869138691386922,40.74930372978916],[13.865538655386558,40.75268088432894],[13.861938619386194,40.76281234794823],[13.88353883538835,40.76281234794823],[13.944739447394483,40.7459265752494],[13.966339663396639,40.73579511163011],[13.962739627396274,40.72904080255057],[13.962739627396274,40.722286493471046],[13.966339663396639,40.71553218439152],[13.95913959139591,40.71215502985174],[13.944739447394483,40.702023566232455]]],[[[8.274682746827466,41.056624792907826],[8.249482494824946,41.04311617474876],[8.249482494824946,41.01609893843063],[8.245882458824582,40.994147433922166],[8.209882098820998,40.99583601119204],[8.217082170821726,41.004278897541454],[8.220682206822062,41.014410361160756],[8.224282242822426,41.024541824780044],[8.224282242822426,41.03298471112946],[8.22788227882279,41.04142759747887],[8.242282422824246,41.051559061098175],[8.260282602826038,41.06506767925724],[8.274682746827466,41.07013341106688],[8.27828278282783,41.08195345195605],[8.274682746827466,41.09546207011512],[8.27828278282783,41.10559353373442],[8.285482854828558,41.107282111004295],[8.30348303483035,41.10559353373442],[8.307083070830714,41.108970688274184],[8.307083070830714,41.114036420083835],[8.314283142831442,41.119102151893486],[8.325083250832506,41.12585646097301],[8.325083250832506,41.119102151893486],[8.32868328683287,41.112347842813946],[8.332283322833234,41.10559353373442],[8.343083430834326,41.09715064738501],[8.343083430834326,41.087019183765705],[8.343083430834326,41.07351056560664],[8.332283322833234,41.06506767925724],[8.274682746827466,41.056624792907826]]],[[[17.659976599765997,42.74351348552064],[17.677976779767818,42.73000486736157],[17.731977319773193,42.713119094662744],[17.749977499775014,42.69454474469404],[17.38637386373864,42.77053072183875],[17.375573755737577,42.760399258219465],[17.353973539735392,42.76715356729899],[17.3359733597336,42.780662185458056],[17.325173251732537,42.79079364907736],[17.34317343173433,42.79417080361711],[17.375573755737577,42.802613689966535],[17.39357393573937,42.80092511269666],[17.38637386373864,42.80092511269666],[17.382773827738276,42.79754795815688],[17.371973719737213,42.79079364907736],[17.382773827738276,42.79248222634723],[17.39357393573937,42.79079364907736],[17.404374043740432,42.789105071807455],[17.41157411574116,42.78403933999783],[17.41877418774189,42.79079364907736],[17.43677436774368,42.78235076272793],[17.48717487174872,42.78235076272793],[17.523175231752333,42.765464990029116],[17.573575735757373,42.7570221036797],[17.598775987759893,42.75026779460016],[17.59517595175953,42.74857921733029],[17.59517595175953,42.7468906400604],[17.591575915759165,42.74351348552064],[17.649176491764933,42.738447753710986],[17.659976599765997,42.74351348552064]]],[[[15.301953019530202,43.9660434289157],[15.298352983529838,43.9778634698049],[15.269552695526954,43.99981497431335],[15.262352623526255,44.01163501520253],[15.280352803528046,44.01163501520253],[15.294752947529474,44.004880706123004],[15.348753487534879,43.976174892535],[15.377553775537763,43.97110916072535],[15.38475384753849,43.969420583455474],[15.388353883538855,43.96435485164582],[15.388353883538855,43.947469078946995],[15.39195391953919,43.94240334713734],[15.399153991539919,43.93733761532769],[15.409954099541011,43.93227188351804],[15.41715417154171,43.92889472897829],[15.427954279542803,43.92214041989877],[15.435154351543531,43.912008956279465],[15.44235442354423,43.898500338120414],[15.445954459544595,43.88668029723121],[15.438754387543895,43.890057451770986],[15.431554315543167,43.89343460631076],[15.424354243542439,43.89343460631076],[15.413554135541375,43.89512318358064],[15.406354063540647,43.89681176085051],[15.402754027540283,43.90018891539029],[15.402754027540283,43.90525464719994],[15.399153991539919,43.90863180173969],[15.370353703537035,43.91369753354934],[15.35955359553597,43.91876326535899],[15.348753487534879,43.92889472897829],[15.355953559535607,43.93227188351804],[15.355953559535607,43.93564903805782],[15.345153451534514,43.939026192597595],[15.327153271532723,43.94915765621687],[15.30915309153093,43.9576005425663],[15.301953019530202,43.9660434289157]]],[[[15.255152551525526,44.01838932428208],[15.24075240752407,44.02852078790136],[15.23355233552337,44.042029406060436],[15.222752227522278,44.050472292409836],[15.211952119521214,44.045406560600185],[15.20835208352085,44.045406560600185],[15.204752047520486,44.050472292409836],[15.204752047520486,44.05216086967974],[15.201152011520122,44.05553802421949],[15.197551975519758,44.058915178759264],[15.19035190351903,44.04709513787009],[15.168751687516874,44.058915178759264],[15.147151471514718,44.07580095145809],[15.121951219512198,44.09268672415692],[15.085950859508614,44.1230811150148],[15.067950679506794,44.1332125786341],[15.071550715507158,44.13827831044375],[15.075150751507522,44.1416554649835],[15.071550715507158,44.14672119679315],[15.060750607506094,44.161918392222105],[15.226352263522642,44.06566948783879],[15.247952479524798,44.04709513787009],[15.255152551525526,44.01838932428208]]],[[[-2.5794257942579293,49.49275683324177],[-2.5578255782557733,49.499511142321325],[-2.5398253982539813,49.5096426059406],[-2.5182251822518253,49.51470833775025],[-2.500225002250005,49.50626545140085],[-2.507425074250733,49.49782256505142],[-2.5218252182521894,49.47924821508272],[-2.525425254252525,49.458985287844115],[-2.532625326253253,49.44209951514529],[-2.532625326253253,49.43872236060554],[-2.532625326253253,49.437033783335664],[-2.5434254342543454,49.43027947425611],[-2.550625506255045,49.42690231971636],[-2.5578255782557733,49.42690231971636],[-2.5650256502565014,49.43027947425611],[-2.5722257222572296,49.43027947425611],[-2.669426694266946,49.43027947425611],[-2.67302673026731,49.43365662879589],[-2.669426694266946,49.43872236060554],[-2.6622266222662176,49.44378809241519],[-2.6514265142651254,49.445476669685064],[-2.6550265502654895,49.458985287844115],[-2.6514265142651254,49.464051019653766],[-2.6370263702636976,49.464051019653766],[-2.6262262622626054,49.46573959692367],[-2.5794257942579293,49.49275683324177]]],[[[-176.26316263162633,51.80948484752085],[-176.27036270362703,51.80610769298107],[-176.2739627396274,51.802730538441324],[-176.27756277562776,51.79597622936177],[-176.27756277562776,51.78753334301237],[-176.26316263162633,51.78246761120272],[-176.25956259562597,51.78246761120272],[-176.25956259562597,51.775713302123194],[-176.2739627396274,51.775713302123194],[-176.28476284762849,51.76895899304367],[-176.29196291962919,51.75713895215449],[-176.29196291962919,51.74194175672554],[-176.2991629916299,51.74194175672554],[-176.30636306363064,51.75207322034484],[-176.3171631716317,51.75038464307494],[-176.33156331563316,51.73012171583636],[-176.34236342363423,51.72505598402671],[-176.35316353163532,51.740253179455664],[-176.36036360363605,51.73349887037611],[-176.3711637116371,51.73687602491589],[-176.38556385563857,51.73687602491589],[-176.39636396363963,51.74194175672554],[-176.40356403564036,51.758827529424366],[-176.41076410764109,51.8229934656799],[-176.40356403564036,51.821304888410026],[-176.39276392763927,51.81792773387025],[-176.38916389163893,51.816239156600375],[-176.39636396363963,51.82637062021968],[-176.42156421564215,51.851699279267905],[-176.39276392763927,51.86351932015708],[-176.3459634596346,51.870273629236635],[-176.30276302763028,51.86858505196673],[-176.27756277562776,51.856765011077556],[-176.29196291962919,51.843256392918505],[-176.31356313563137,51.83987923837873],[-176.33516335163353,51.83987923837873],[-176.35316353163532,51.83650208383898],[-176.35316353163532,51.829747774759426],[-176.3459634596346,51.829747774759426],[-176.3279632796328,51.829747774759426],[-176.32076320763207,51.829747774759426],[-176.32436324363243,51.8145505793305],[-176.3279632796328,51.80948484752085],[-176.2991629916299,51.821304888410026],[-176.28476284762849,51.8229934656799],[-176.26316263162633,51.816239156600375],[-176.26316263162633,51.80948484752085]]],[[[-176.01116011160113,51.829747774759426],[-176.01836018360183,51.8229934656799],[-176.00036000360004,51.811173424790724],[-175.98955989559894,51.80948484752085],[-175.99675996759967,51.802730538441324],[-176.02556025560256,51.8229934656799],[-176.03276032760328,51.829747774759426],[-176.05076050760508,51.824682042949775],[-176.0651606516065,51.824682042949775],[-176.09756097560975,51.829747774759426],[-176.10476104761048,51.82637062021968],[-176.10476104761048,51.81792773387025],[-176.0939609396094,51.79597622936177],[-176.10836108361084,51.79935338390155],[-176.12276122761227,51.80610769298107],[-176.129961299613,51.816239156600375],[-176.13716137161373,51.829747774759426],[-176.1479614796148,51.81792773387025],[-176.15156151561516,51.8044191157112],[-176.1479614796148,51.79091049755215],[-176.14076140761406,51.775713302123194],[-176.1479614796148,51.775713302123194],[-176.15156151561516,51.77909045666294],[-176.15876158761588,51.79091049755215],[-176.16236162361625,51.79597622936177],[-176.16236162361625,51.79935338390155],[-176.16236162361625,51.807796270250975],[-176.16236162361625,51.80948484752085],[-176.16596165961658,51.811173424790724],[-176.17676176761768,51.811173424790724],[-176.19476194761947,51.81961631114015],[-176.20916209162093,51.81961631114015],[-176.219962199622,51.824682042949775],[-176.22356223562235,51.843256392918505],[-176.2019620196202,51.8415678156486],[-176.19836198361983,51.848322124728156],[-176.20916209162093,51.86689647469686],[-176.20556205562056,51.88040509285591],[-176.1911619116191,51.887159401935435],[-176.1731617316173,51.88547082466556],[-176.16236162361625,51.87702793831616],[-176.13716137161373,51.86858505196673],[-176.129961299613,51.86351932015708],[-176.129961299613,51.86014216561733],[-176.1191611916119,51.846633547458254],[-176.1119611196112,51.838190661108854],[-176.10836108361084,51.846633547458254],[-176.0939609396094,51.85845358834743],[-176.06156061560617,51.85507643380768],[-176.02916029160292,51.843256392918505],[-176.01116011160113,51.829747774759426]]],[[[4.879848798487984,53.22113544514278],[4.9194491944919605,53.25321841327056],[4.987849878498793,53.290367113207964],[5.056250562505625,53.31400719498632],[5.103051030510301,53.308941463176694],[5.103051030510301,53.30218715409714],[5.077850778507781,53.30218715409714],[5.067050670506717,53.29880999955739],[5.038250382503833,53.292055690477866],[4.959049590495908,53.24477552692113],[4.937449374493752,53.22620117695243],[4.908649086490868,53.21269255879338],[4.879848798487984,53.22113544514278]]],[[[5.423454234542362,53.43051902660824],[5.43785437854379,53.43727333568776],[5.585455854558546,53.45415910838659],[5.560255602556026,53.433896181147986],[5.535055350553506,53.42883044933836],[5.473854738547402,53.42714187206846],[5.477454774547766,53.42376471752871],[5.481054810548102,53.41701040844919],[5.481054810548102,53.411944676639536],[5.470254702547038,53.40856752209976],[5.427054270542726,53.406878944829884],[5.383853838538386,53.39505890394071],[5.347853478534802,53.38999317213106],[5.207452074520745,53.352844472193624],[5.178651786517861,53.352844472193624],[5.167851678516797,53.36804166762258],[5.178651786517861,53.384927440321405],[5.232652326523265,53.39674748121058],[5.2506525065250855,53.406878944829884],[5.2722527225272415,53.406878944829884],[5.405454054540542,53.42207614025881],[5.423454234542362,53.43051902660824]]],[[[5.675456754567563,53.46766772654564],[5.913059130591307,53.474422035625196],[5.956259562595619,53.46091341746612],[5.855458554585539,53.447404799307066],[5.751057510575123,53.447404799307066],[5.725857258572603,53.44402764476729],[5.679056790567898,53.43051902660824],[5.653856538565378,53.433896181147986],[5.635856358563586,53.44909337657694],[5.6430564305643145,53.46260199473602],[5.657456574565742,53.47104488108542],[5.675456754567563,53.46766772654564]]],[[[6.211862118621184,53.50819358102285],[6.3090630906309,53.51494789010238],[6.337863378633784,53.50819358102285],[6.337863378633784,53.5014392719433],[6.3234632346323565,53.5014392719433],[6.154261542615444,53.469356303815545],[6.13266132661326,53.45415910838659],[6.129061290612924,53.45922484019624],[6.12546125461256,53.46260199473602],[6.13266132661326,53.46766772654564],[6.121861218612196,53.48117634470472],[6.147061470614716,53.49468496286377],[6.186661866618664,53.504816426483075],[6.211862118621184,53.50819358102285]]],[[[6.798667986679874,53.60444248540614],[6.777067770677718,53.602753908136265],[6.7410674106741055,53.59262244451696],[6.723067230672314,53.59093386724709],[6.723067230672314,53.58417955816756],[6.733867338673406,53.58249098089769],[6.7410674106741055,53.57911382635791],[6.748267482674834,53.572359517278386],[6.755467554675562,53.562228053659084],[6.748267482674834,53.56560520819886],[6.733867338673406,53.575736671818134],[6.726667266672678,53.57742524908804],[6.7158671586715855,53.575736671818134],[6.701467014670158,53.57067094000851],[6.6942669426694295,53.57067094000851],[6.6762667626676375,53.575736671818134],[6.661866618666181,53.58755671270734],[6.658266582665846,53.599376753596516],[6.6726667266672735,53.60444248540614],[6.748267482674834,53.61795110356522],[6.784267842678446,53.61963968083509],[6.798667986679874,53.60444248540614]]],[[[-166.13626136261362,53.83746614864995],[-166.12546125461256,53.84084330318973],[-166.11466114661147,53.84590903499938],[-166.10746107461074,53.847597612269254],[-166.08946089460895,53.844220457729506],[-166.10026100261,53.8340889941102],[-166.10386103861038,53.83071183957043],[-166.11466114661147,53.83071183957043],[-166.1218612186122,53.825646107760775],[-166.12546125461256,53.820580375951124],[-166.1290612906129,53.81044891233185],[-166.11826118261183,53.80200602598242],[-166.11826118261183,53.79356313963302],[-166.1218612186122,53.78343167601372],[-166.1290612906129,53.776677366934194],[-166.14346143461435,53.77330021239442],[-166.1758617586176,53.776677366934194],[-166.19026190261903,53.776677366934194],[-166.1758617586176,53.75810301696549],[-166.17226172261724,53.74797155334619],[-166.1758617586176,53.73784008972689],[-166.1830618306183,53.73446293518711],[-166.22626226262264,53.727708626107585],[-166.22266222662228,53.722642894297934],[-166.21186211862118,53.70744569886901],[-166.23346233462334,53.71757716248828],[-166.27306273062732,53.74290582153654],[-166.2910629106291,53.749660130616064],[-166.29826298262984,53.75979159423537],[-166.29826298262984,53.781743098743846],[-166.2910629106291,53.7952517169029],[-166.2658626586266,53.78343167601372],[-166.2658626586266,53.79694029417277],[-166.26226262262622,53.803694603252325],[-166.25146251462513,53.80707175779207],[-166.24426244262443,53.8138260668716],[-166.2370623706237,53.8155146441415],[-166.2370623706237,53.8053831805222],[-166.24066240662407,53.78343167601372],[-166.23346233462334,53.78343167601372],[-166.21186211862118,53.82226895322103],[-166.19746197461976,53.83746614864995],[-166.17946179461794,53.83071183957043],[-166.16866168661687,53.8425318804596],[-166.16146161461614,53.844220457729506],[-166.15066150661505,53.839154725919855],[-166.13626136261362,53.83746614864995]]],[[[8.497884978849783,54.75605218346615],[8.551885518855187,54.75436360619628],[8.577085770857707,54.74592071984685],[8.595085950859527,54.72903494714802],[8.595085950859527,54.7222806380685],[8.584285842858435,54.7138377517191],[8.573485734857343,54.69357482448049],[8.566285662856643,54.68682051540097],[8.551885518855187,54.68513193813109],[8.533885338853395,54.68682051540097],[8.519485194851967,54.690197669940716],[8.512285122851239,54.69357482448049],[8.483484834848355,54.68850909267084],[8.451084510845106,54.69357482448049],[8.393483934839367,54.71552632898897],[8.415084150841523,54.73578925622755],[8.436684366843679,54.74929787438663],[8.465484654846563,54.75436360619628],[8.497884978849783,54.75605218346615]]],[[[10.44910449104492,54.899581251406175],[10.467104671046712,54.891138365056776],[10.485104851048504,54.88438405597725],[10.49950499504996,54.87425259235795],[10.49950499504996,54.859055396928994],[10.506705067050689,54.855678242389246],[10.517505175051753,54.85230108784947],[10.441904419044192,54.842169624230166],[10.420304203042036,54.828661006071115],[10.405904059040608,54.82528385153134],[10.384303843038424,54.83034958334099],[10.211502115021148,54.94010710588336],[10.193501935019356,54.962058610391836],[10.189901899018992,54.97725580582079],[10.204302043020448,54.96881291947136],[10.287102871028708,54.94010710588336],[10.312303123031228,54.92828706499418],[10.337503375033748,54.9063355604857],[10.34830348303484,54.89620409686643],[10.362703627036268,54.89282694232665],[10.380703807038088,54.89282694232665],[10.391503915039152,54.89620409686643],[10.395103951039516,54.90295840594595],[10.387903879038788,54.91984417864478],[10.402304023040244,54.9080241377556],[10.416704167041672,54.8793183241676],[10.427504275042764,54.872564015088045],[10.445504455044556,54.872564015088045],[10.459904599045984,54.87425259235795],[10.463504635046348,54.88269547870735],[10.44910449104492,54.899581251406175]]],[[[-159.38979389793897,55.02284739210762],[-159.3789937899379,55.01778166029797],[-159.36459364593645,55.00258446486902],[-159.33939339393393,54.975567228550915],[-159.40059400594006,54.95023856950266],[-159.4329943299433,54.94179568315326],[-159.46179461794617,54.948549992232785],[-159.4509945099451,54.956992878582184],[-159.4509945099451,54.96543576493161],[-159.45459454594547,54.975567228550915],[-159.45459454594547,54.98232153763044],[-159.44739447394474,54.98569869217019],[-159.42219422194222,54.98232153763044],[-159.40779407794076,54.98232153763044],[-159.41139411394113,54.99245300124974],[-159.42579425794258,55.02960170118715],[-159.440194401944,55.02791312391727],[-159.48339483394835,55.016093083028096],[-159.4581945819458,55.038044587536575],[-159.45459454594547,55.04986462842575],[-159.46179461794617,55.05830751477515],[-159.46179461794617,55.06506182385468],[-159.44379443794438,55.06168466931493],[-159.36459364593645,55.05830751477515],[-159.3537935379354,55.0549303602354],[-159.34659346593466,55.04986462842575],[-159.35019350193502,55.041421742076324],[-159.3537935379354,55.038044587536575],[-159.36459364593645,55.03635601026667],[-159.37539375393754,55.03635601026667],[-159.38259382593827,55.0346674329968],[-159.38979389793897,55.02960170118715],[-159.39339393393934,55.024535969377496],[-159.38979389793897,55.02284739210762]]],[[[12.41832418324185,55.02960170118715],[12.504725047250474,55.019470237567845],[12.537125371253723,55.00258446486902],[12.555125551255514,54.96881291947136],[12.55152551525515,54.956992878582184],[12.54432544325445,54.95192714677253],[12.52632526325263,54.948549992232785],[12.50112501125011,54.948549992232785],[12.385923859238602,54.96374718766174],[12.34992349923499,54.96037003312196],[12.313923139231406,54.95023856950266],[12.281522815228158,54.935041374073705],[12.227522275222753,54.89282694232665],[12.209522095220962,54.886072633247124],[12.177121771217713,54.88944978778687],[12.11592115921161,54.9080241377556],[12.11592115921161,54.913089869565255],[12.130321303213037,54.913089869565255],[12.12312123121231,54.92322133318453],[12.130321303213037,54.93166421953396],[12.137521375213765,54.93672995134361],[12.14832148321483,54.94010710588336],[12.144721447214465,54.94348426042313],[12.133921339213401,54.95192714677253],[12.130321303213037,54.953615724042436],[12.151921519215193,54.96881291947136],[12.162721627216285,54.97219007401114],[12.177121771217713,54.96881291947136],[12.184321843218441,54.975567228550915],[12.177121771217713,54.989075846709966],[12.19152191521917,54.989075846709966],[12.21672216722169,54.97894438309066],[12.231122311223118,54.975567228550915],[12.24192241922421,54.97725580582079],[12.27432274322743,54.984010114900315],[12.285122851228522,54.989075846709966],[12.281522815228158,54.99920731032927],[12.281522815228158,55.00765019667867],[12.285122851228522,55.01271592848832],[12.295922959229586,55.016093083028096],[12.295922959229586,55.02284739210762],[12.259922599226002,55.03635601026667],[12.252722527225274,55.0431103193462],[12.24912249122491,55.0532417829655],[12.252722527225274,55.059996092045026],[12.263522635226366,55.06506182385468],[12.281522815228158,55.06506182385468],[12.303123031230314,55.041421742076324],[12.335523355233562,55.032978855726924],[12.41832418324185,55.02960170118715]]],[[[-159.5229952299523,55.07181613293423],[-159.49419494194942,55.0633732465848],[-159.49059490594905,55.05830751477515],[-159.49419494194942,55.04817605115585],[-159.5049950499505,55.0431103193462],[-159.51579515795157,55.0431103193462],[-159.52659526595266,55.046487473885975],[-159.55179551795518,55.073504710204105],[-159.56259562595625,55.08532475109328],[-159.5769957699577,55.09207906017281],[-159.58059580595807,55.081947596553505],[-159.58419584195843,55.07012755566433],[-159.58419584195843,55.059996092045026],[-159.5769957699577,55.04986462842575],[-159.5949959499595,55.051553205695626],[-159.62019620196202,55.05661893750528],[-159.63459634596347,55.05830751477515],[-159.6381963819638,55.0532417829655],[-159.64539645396454,55.046487473885975],[-159.6489964899649,55.0431103193462],[-159.65619656196563,55.04986462842575],[-159.65979659796596,55.06506182385468],[-159.65259652596527,55.073504710204105],[-159.63459634596347,55.08532475109328],[-159.62739627396274,55.087013328363156],[-159.62019620196202,55.087013328363156],[-159.61659616596165,55.087013328363156],[-159.6129961299613,55.09207906017281],[-159.6129961299613,55.09883336925233],[-159.6129961299613,55.10221052379211],[-159.61659616596165,55.10558767833186],[-159.62379623796238,55.10558767833186],[-159.64539645396454,55.11234198741141],[-159.6489964899649,55.12585060557046],[-159.64179641796417,55.13429349191989],[-159.59139591395913,55.11065341014151],[-159.5769957699577,55.11234198741141],[-159.5769957699577,55.122473451030686],[-159.59859598595986,55.13260491464999],[-159.58419584195843,55.14104780099942],[-159.55179551795518,55.14273637826929],[-159.54459544595446,55.149490687348816],[-159.55179551795518,55.15962215096812],[-159.59139591395913,55.162999305507896],[-159.6057960579606,55.16806503731752],[-159.58419584195843,55.17650792366695],[-159.58419584195843,55.193393696365774],[-159.58779587795877,55.20859089179473],[-159.5769957699577,55.21534520087425],[-159.56259562595625,55.21534520087425],[-159.55539555395555,55.21703377814413],[-159.55179551795518,55.22209950995378],[-159.54459544595446,55.228853819033304],[-159.5409954099541,55.23729670538273],[-159.5409954099541,55.247428169002006],[-159.5337953379534,55.25080532354178],[-159.51939519395194,55.242362437192384],[-159.51939519395194,55.22716524176343],[-159.53019530195303,55.21703377814413],[-159.5409954099541,55.20859089179473],[-159.54459544595446,55.198459428175426],[-159.53739537395373,55.18326223274647],[-159.5229952299523,55.17650792366695],[-159.5121951219512,55.17313076912717],[-159.50859508595084,55.171442191857295],[-159.5121951219512,55.16131072823799],[-159.5229952299523,55.11909629649094],[-159.5229952299523,55.078570442013756],[-159.5229952299523,55.07181613293423]]],[[[12.616326163261647,55.688146836441405],[12.673926739267387,55.60540655021714],[12.673926739267387,55.60202939567739],[12.637926379263803,55.57838931389904],[12.623526235262347,55.57501215935926],[12.605526055260555,55.56994642754961],[12.587525875258763,55.56150354120021],[12.57672576725767,55.554749232120656],[12.555125551255514,55.54968350031103],[12.533525335253358,55.56994642754961],[12.51912519125193,55.59696366386774],[12.51912519125193,55.61891516837622],[12.529925299252994,55.63242378653527],[12.54432544325445,55.6408666728847],[12.555125551255514,55.647620981964224],[12.565925659256607,55.65437529104375],[12.57672576725767,55.666195331932926],[12.59472594725949,55.69152399098118],[12.609126091260919,55.701655454600456],[12.612726127261283,55.69490114552093],[12.612726127261283,55.693212568251056],[12.616326163261647,55.688146836441405]]],[[[-6.82026820268203,56.53750120319239],[-6.766267662676626,56.54932124408157],[-6.7410674106741055,56.547632666811694],[-6.730267302673013,56.530746894112866],[-6.74466744667447,56.517238275953815],[-6.8022680226802095,56.51386112141404],[-6.8058680586805735,56.49697534871521],[-6.823868238682394,56.48684388509591],[-6.849068490684914,56.485155307826034],[-6.87066870668707,56.48008957601638],[-6.888668886688862,56.46151522604768],[-6.881468814688134,56.44462945334885],[-6.90306903069029,56.44294087607898],[-6.964269642696422,56.459826648777806],[-6.975069750697514,56.47164668966698],[-6.97866978669785,56.48684388509591],[-6.989469894698942,56.503729657794736],[-6.967869678696786,56.51048396687429],[-6.899468994689954,56.517238275953815],[-6.87786877868777,56.520615430493564],[-6.841868418684186,56.53412404865264],[-6.82026820268203,56.53750120319239]]],[[[-6.460264602646021,56.677653116592666],[-6.467464674646749,56.66752165297336],[-6.481864818648177,56.64725872573479],[-6.489064890648905,56.64050441665523],[-6.496264962649633,56.63375010757571],[-6.503465034650333,56.63037295303596],[-6.514265142651425,56.62699579849618],[-6.528665286652853,56.62699579849618],[-6.564665646656465,56.59828998490818],[-6.615066150661505,56.574649903129824],[-6.633066330663297,56.57127274859005],[-6.658266582665817,56.57802705766957],[-6.669066690666909,56.57802705766957],[-6.6726667266672735,56.5678955940503],[-6.676266762667609,56.557764130430996],[-6.687066870668701,56.56451843951052],[-6.6978669786697935,56.5763384803997],[-6.701467014670129,56.586469944019],[-6.676266762667609,56.588158521288875],[-6.647466474664753,56.60335571671783],[-6.604266042660413,56.64388157119501],[-6.589865898658985,56.65232445754441],[-6.557465574655737,56.66583307570349],[-6.535865358653581,56.67089880751314],[-6.507065070650697,56.686096002942065],[-6.489064890648905,56.68947315748184],[-6.463864638646385,56.69116173475172],[-6.4530645306452925,56.68778458021197],[-6.460264602646021,56.677653116592666]]],[[[-7.392673926739263,57.01030283875954],[-7.389073890738899,57.00354852968002],[-7.385473854738535,56.99510564333062],[-7.381873818738171,56.98835133425109],[-7.3746737467374714,56.98328560244144],[-7.403474034740327,56.98328560244144],[-7.410674106741055,56.979908447901664],[-7.4178741787417835,56.97315413882214],[-7.428674286742847,56.96808840701249],[-7.435874358743575,56.96471125247271],[-7.4430744307443035,56.963022675202836],[-7.435874358743575,56.952891211583534],[-7.446674466744668,56.94782547977388],[-7.4610746107460955,56.94275974796426],[-7.475474754747552,56.94107117069436],[-7.54027540275402,56.949514057043785],[-7.558275582755812,56.952891211583534],[-7.554675546755448,56.963022675202836],[-7.543875438754384,56.97315413882214],[-7.5294752947529275,56.976531293361916],[-7.5150751507515,56.98159702517154],[-7.511475114751136,56.99172848879084],[-7.5150751507515,57.00354852968002],[-7.525875258752592,57.01030283875954],[-7.500675006750072,57.020434302378845],[-7.475474754747552,57.02381145691862],[-7.457474574745731,57.03225434326802],[-7.450274502745032,57.05927157958615],[-7.4430744307443035,57.05927157958615],[-7.4430744307443035,57.05758300231628],[-7.435874358743575,57.05251727050663],[-7.428674286742847,57.05082869323675],[-7.4214742147421475,57.05082869323675],[-7.4178741787417835,57.047451538696976],[-7.414274142741419,57.0440743841572],[-7.428674286742847,57.02718861145837],[-7.435874358743575,57.02381145691862],[-7.403474034740327,57.015368570569194],[-7.392673926739263,57.01030283875954]]],[[[-6.323463234632328,57.05927157958615],[-6.273062730627288,57.04069722961745],[-6.251462514625132,57.02718861145837],[-6.269462694626952,57.0170571478391],[-6.269462694626952,57.01030283875954],[-6.244262442624432,57.01030283875954],[-6.255062550625496,56.97315413882214],[-6.276662766627652,56.952891211583534],[-6.301863018630172,56.944448325234134],[-6.341463414634148,56.94107117069436],[-6.35946359463594,56.94782547977388],[-6.377463774637732,56.971465561552264],[-6.391863918639189,56.976531293361916],[-6.406264062640616,56.979908447901664],[-6.435064350643501,56.998482797870366],[-6.456664566645657,57.00354852968002],[-6.395463954639553,57.042385806887324],[-6.363063630636304,57.055894425046375],[-6.323463234632328,57.05927157958615]]],[[[19.272792727927282,57.97616903713245],[19.30519305193053,57.97616903713245],[19.319593195931958,57.9727918825927],[19.33759337593378,57.964348996243274],[19.333993339933414,57.95928326443362],[19.326793267932686,57.955906109893874],[19.319593195931958,57.955906109893874],[19.308793087930894,57.955906109893874],[19.294392943929438,57.9440860690047],[19.247592475924762,57.9525289553541],[19.225992259922606,57.94577464627457],[19.20439204392045,57.93564318265527],[19.161191611916138,57.92551171903597],[19.139591395913953,57.90862594633714],[19.15399153991541,57.901871637257614],[19.161191611916138,57.89680590544796],[19.161191611916138,57.89005159636844],[19.161191611916138,57.879920132749135],[19.132391323913254,57.85290289643103],[19.12879128791289,57.84614858735148],[19.114391143911433,57.84783716462138],[19.099990999910005,57.85290289643103],[19.085590855908578,57.85965720551056],[19.07119071190712,57.86810009185996],[19.035190351903537,57.90524879179739],[19.038790387903873,57.91706883268657],[19.0459904599046,57.92382314176609],[19.067590675906757,57.939020337195046],[19.074790747907485,57.94915180081435],[19.07839078390785,57.95928326443362],[19.085590855908578,57.96772615078305],[19.099990999910005,57.97616903713245],[19.114391143911433,57.97954619167223],[19.150391503915046,57.97954619167223],[19.164791647916473,57.98630050075175],[19.1719917199172,57.98798907802163],[19.186391863918658,57.98461192348188],[19.20439204392045,57.982923346211976],[19.222392223922242,57.98967765529153],[19.225992259922606,57.974480459862576],[19.240392403924034,57.9711033053228],[19.272792727927282,57.97616903713245]]],[[[-2.9538295382953663,58.84072059931239],[-2.9070290702906902,58.83734344477264],[-2.8854288542885342,58.83227771296299],[-2.8854288542885342,58.820457672073815],[-2.9142291422914184,58.81032620845451],[-2.9178291782917825,58.806949053914735],[-2.9214292142921465,58.79681759029546],[-2.9142291422914184,58.79006328121591],[-2.9142291422914184,58.784997549406285],[-2.9250292502925106,58.77993181759663],[-2.9142291422914184,58.7613574676279],[-2.9106291062910543,58.74784884946885],[-2.9178291782917825,58.73771738584955],[-2.9394293942939385,58.730963076770024],[-2.9862298622986145,58.757980313088154],[-2.9862298622986145,58.76473462216768],[-2.9754297542975507,58.771488931247205],[-2.9862298622986145,58.78668612667616],[-3.0150301503014987,58.81201478572439],[-3.0042300423004065,58.80863763118464],[-2.9898298982989786,58.806949053914735],[-2.9790297902978864,58.80863763118464],[-2.9682296822968226,58.81201478572439],[-2.9682296822968226,58.820457672073815],[-3.0366303663036547,58.820457672073815],[-3.0366303663036547,58.825523403883466],[-2.9970299702997067,58.83565486750274],[-2.9538295382953663,58.84072059931239]]],[[[-2.446224462244629,59.293259307640966],[-2.4246242462424448,59.310145080339794],[-2.410224102241017,59.31858796668919],[-2.406624066240653,59.31689938941932],[-2.395823958239589,59.29494788491084],[-2.392223922239225,59.28481642129154],[-2.439024390243901,59.28481642129154],[-2.460624606246057,59.279750689481915],[-2.467824678246785,59.26793064859271],[-2.478624786247849,59.26286491678309],[-2.4966249662496693,59.239224835004705],[-2.503825038250369,59.23415910319508],[-2.5146251462514613,59.230781948655306],[-2.5146251462514613,59.252733453163785],[-2.532625326253253,59.25104487589391],[-2.575825758257565,59.22402763957578],[-2.5722257222572296,59.23415910319508],[-2.5686256862568655,59.23753625773483],[-2.5686256862568655,59.24429056681436],[-2.5902259022590215,59.239224835004705],[-2.5974259742597496,59.239224835004705],[-2.6046260462604494,59.24429056681436],[-2.6406264062640616,59.217273330496255],[-2.6622266222662176,59.20714186687695],[-2.6802268022680096,59.2105190214167],[-2.6802268022680096,59.19701040325765],[-2.6874268742687377,59.190256094178125],[-2.691026910269102,59.191944671448],[-2.694626946269466,59.203764712337176],[-2.6874268742687377,59.217273330496255],[-2.6802268022680096,59.22233906230588],[-2.67302673026731,59.225716216845655],[-2.6586265862658536,59.230781948655306],[-2.6514265142651254,59.23753625773483],[-2.6334263342633335,59.252733453163785],[-2.6262262622626054,59.257799184973436],[-2.6118261182611775,59.261176339513185],[-2.6010260102600853,59.261176339513185],[-2.5938259382593856,59.26455349405296],[-2.5902259022590215,59.27806211221201],[-2.5974259742597496,59.28143926675179],[-2.6118261182611775,59.293259307640966],[-2.5866258662586574,59.293259307640966],[-2.5470254702547095,59.30507934853014],[-2.5218252182521894,59.30676792580002],[-2.5218252182521894,59.30001361672049],[-2.5362253622536173,59.29494788491084],[-2.550625506255045,59.288193575831315],[-2.575825758257565,59.27130780313249],[-2.5686256862568655,59.26961922586261],[-2.5650256502565014,59.26961922586261],[-2.5614256142561374,59.26455349405296],[-2.550625506255045,59.27130780313249],[-2.5182251822518253,59.274684957672264],[-2.4930249302493053,59.28988215310119],[-2.478624786247849,59.29157073037109],[-2.460624606246057,59.28988215310119],[-2.446224462244629,59.293259307640966]]],[[[-43.70623706237063,59.902835702068614],[-43.65943659436593,59.88257277483004],[-43.63783637836377,59.86906415667096],[-43.6450364503645,59.85386696124203],[-43.65583655836559,59.85217838397213],[-43.67023670236702,59.85724411578178],[-43.67743677436775,59.86399842486131],[-43.68463684636845,59.86906415667096],[-43.69543695436954,59.86568700213121],[-43.72783727837279,59.840358343082954],[-43.73143731437315,59.84204692035283],[-43.73863738637385,59.845424074892605],[-43.74583745837458,59.84711265216248],[-43.749437494374945,59.84373549762273],[-43.75303753037531,59.840358343082954],[-43.75663756637567,59.83022687946365],[-43.75663756637567,59.8268497249239],[-43.7710377103771,59.823472570384126],[-43.78183781837819,59.818406838574475],[-43.79263792637926,59.8167182613046],[-43.80343803438035,59.8268497249239],[-43.79623796237962,59.840358343082954],[-43.79623796237962,59.84204692035283],[-43.80343803438035,59.84880122943238],[-43.78183781837819,59.86230984759143],[-43.76743767437674,59.87750704302039],[-43.76743767437674,59.88932708390956],[-43.78903789037889,59.88932708390956],[-43.807038070380685,59.87919562029026],[-43.825038250382505,59.86399842486131],[-43.83583835838357,59.845424074892605],[-43.82863828638287,59.8268497249239],[-43.84663846638466,59.81165252949495],[-43.87183871838718,59.7981439113359],[-43.8970389703897,59.79307817952625],[-43.91863918639186,59.796455334065996],[-43.933039330393285,59.809963952225075],[-43.933039330393285,59.8268497249239],[-43.90423904239043,59.87075273394083],[-43.900639006390065,59.875818465750484],[-43.900639006390065,59.880884197560135],[-43.90423904239043,59.88932708390956],[-43.91503915039149,59.89608139298909],[-43.92223922239222,59.89101566117944],[-43.925839258392585,59.880884197560135],[-43.92943929439295,59.87075273394083],[-43.94383943839438,59.86399842486131],[-43.96543965439653,59.85724411578178],[-43.97983979839799,59.84880122943238],[-43.97263972639726,59.83360403400343],[-44.008640086400845,59.818406838574475],[-44.05544055440555,59.8065867976853],[-44.0950409504095,59.8082753749552],[-44.116641166411654,59.83360403400343],[-44.116641166411654,59.84204692035283],[-44.11304113041129,59.86062127032156],[-44.109441094410926,59.86906415667096],[-44.10584105841059,59.87750704302039],[-44.06984069840698,59.90621285660839],[-44.026640266402666,59.93323009292649],[-44.01224012240121,59.94673871108557],[-43.96183961839617,59.978821679213326],[-43.91503915039149,59.970378792863926],[-43.86463864638645,59.95011586562532],[-43.81063810638105,59.93660724746627],[-43.78183781837819,59.934918670196396],[-43.75663756637567,59.92647578384697],[-43.70623706237063,59.902835702068614]]],[[[21.497614976149777,60.13585936531243],[21.530015300152996,60.15949944709078],[21.569615696156973,60.16963091071008],[21.612816128161285,60.16963091071008],[21.656016560165597,60.15612229255103],[21.648816488164897,60.144302251661856],[21.638016380163805,60.139236519852204],[21.612816128161285,60.1291050562329],[21.630816308163077,60.1291050562329],[21.638016380163805,60.12403932442325],[21.63441634416344,60.11559643807385],[21.62721627216274,60.10715355172442],[21.612816128161285,60.10208781991477],[21.598415984159857,60.10208781991477],[21.573215732157337,60.10715355172442],[21.562415624156245,60.10715355172442],[21.53361533615336,60.10208781991477],[21.522815228152297,60.09702208810512],[21.51561515615157,60.09702208810512],[21.504815048150476,60.103776397184646],[21.494014940149412,60.1105307062642],[21.48321483214832,60.11559643807385],[21.497614976149777,60.120662169883474],[21.519215192151933,60.12235074715338],[21.55881558815588,60.12235074715338],[21.548015480154817,60.13417078804255],[21.53361533615336,60.1375479425823],[21.497614976149777,60.13585936531243]]],[[[-43.17343173431735,60.07338200632677],[-43.15183151831519,60.07169342905689],[-43.13023130231301,60.06662769724724],[-43.137431374313735,60.059873388167716],[-43.1410314103141,60.054807656358065],[-43.15183151831519,60.049741924548414],[-43.15903159031589,60.04636477000864],[-43.1410314103141,60.032856151849586],[-43.15543155431553,60.01259322461098],[-43.187831878318775,59.99570745191215],[-43.22023220232202,59.99064172010253],[-43.238232382323815,59.99570745191215],[-43.24543245432454,60.00246176099171],[-43.25623256232561,60.01090464734111],[-43.2670326703267,60.019347533690535],[-43.28503285032849,60.024413265500186],[-43.321033210332104,60.02610184277006],[-43.33543335433353,60.032856151849586],[-43.34263342633426,60.03961046092911],[-43.346233462334624,60.04805334727854],[-43.34983349833499,60.05649623362794],[-43.364233642336416,60.059873388167716],[-43.371433714337144,60.05649623362794],[-43.37503375033751,60.04805334727854],[-43.38223382233821,60.041299038198986],[-43.389433894338936,60.04298761546889],[-43.396633966339664,60.04636477000864],[-43.42543425434255,60.05311907908819],[-43.50103501035011,60.07844773813642],[-43.540635406354056,60.085202047215944],[-43.57663576635767,60.08013631540629],[-43.57663576635767,60.07338200632677],[-43.52623526235263,60.07000485178702],[-43.497434974349744,60.063250542707465],[-43.47943479434795,60.05311907908819],[-43.48303483034829,60.03961046092911],[-43.490234902349016,60.02103611096041],[-43.497434974349744,60.00415033826158],[-43.50463504635047,59.997396029182056],[-43.5190351903519,59.99064172010253],[-43.522635226352264,59.9636244837844],[-43.540635406354056,59.956870174704875],[-43.55143551435515,59.95011586562532],[-43.55503555035551,59.93660724746627],[-43.565835658356576,59.92478720657709],[-43.591035910359096,59.92309862930722],[-43.60183601836019,59.92478720657709],[-43.61263612636125,59.92816436111687],[-43.623436234362345,59.93323009292649],[-43.63423634236341,59.93998440200605],[-43.64143641436414,59.94673871108557],[-43.64143641436414,59.951804442895224],[-43.64143641436414,59.956870174704875],[-43.648636486364865,59.9737559474037],[-43.648636486364865,59.98051025648323],[-43.648636486364865,59.987264565562754],[-43.65943659436593,59.99401887464228],[-43.67023670236702,59.99908460645193],[-43.67743677436775,59.997396029182056],[-43.68463684636845,59.992330297372405],[-43.68463684636845,59.98051025648323],[-43.68463684636845,59.965313061054275],[-43.68463684636845,59.956870174704875],[-43.69543695436954,59.951804442895224],[-43.72063720637206,59.951804442895224],[-43.7710377103771,59.95518159743497],[-43.79623796237962,59.961935906514526],[-43.81783817838178,59.970378792863926],[-43.83943839438393,59.97544452467358],[-43.900639006390065,59.992330297372405],[-43.91863918639186,60.00415033826158],[-43.882638826388245,60.022724688230284],[-43.86103861038609,60.02947899730981],[-43.774637746377465,60.04805334727854],[-43.76743767437674,60.04636477000864],[-43.724237242372425,60.063250542707465],[-43.79263792637926,60.063250542707465],[-43.825038250382505,60.05311907908819],[-43.857438574385725,60.059873388167716],[-43.87183871838718,60.059873388167716],[-43.91143911439113,60.04805334727854],[-43.925839258392585,60.04636477000864],[-43.94023940239401,60.04805334727854],[-43.95463954639547,60.05311907908819],[-43.96543965439653,60.059873388167716],[-43.976239762397626,60.07000485178702],[-43.99063990639905,60.076759160866544],[-44.01944019440194,60.08013631540629],[-44.091440914409134,60.1003992426449],[-44.11304113041129,60.112219283534074],[-44.109441094410926,60.1291050562329],[-44.13104131041311,60.14261367439195],[-44.12384123841238,60.157810869820906],[-44.09864098640986,60.17131948797996],[-44.07344073440734,60.17638521978961],[-43.623436234362345,60.125727901693125],[-43.17343173431735,60.07338200632677]]],[[[21.74241742417425,60.18989383794869],[21.800018000180017,60.19664814702821],[21.85401854018542,60.19664814702821],[21.88641886418864,60.183139528869134],[21.88641886418864,60.17638521978961],[21.875618756187578,60.17638521978961],[21.864818648186485,60.17638521978961],[21.85401854018542,60.174696642519734],[21.846818468184694,60.16963091071008],[21.85401854018542,60.16794233344021],[21.86841868418685,60.15612229255103],[21.79281792817929,60.15612229255103],[21.825218252182538,60.14936798347148],[21.81801818018181,60.14599082893173],[21.807218072180717,60.14261367439195],[21.796417964179653,60.14092509712208],[21.800018000180017,60.139236519852204],[21.807218072180717,60.13585936531243],[21.782017820178197,60.12403932442325],[21.75321753217534,60.11559643807385],[21.720817208172093,60.11390786080395],[21.695616956169573,60.12235074715338],[21.7028170281703,60.12741647896303],[21.706417064170637,60.1291050562329],[21.7028170281703,60.14261367439195],[21.71721717217173,60.147679406201604],[21.720817208172093,60.14936798347148],[21.720817208172093,60.15612229255103],[21.706417064170637,60.16118802436068],[21.706417064170637,60.17131948797996],[21.724417244172457,60.183139528869134],[21.74241742417425,60.18989383794869]]],[[[19.63999639996402,60.22028822880657],[19.643596435964355,60.21353391972704],[19.661596615966175,60.20340245610774],[19.668796687966875,60.19664814702821],[19.67239672396724,60.18989383794869],[19.67239672396724,60.18482810613904],[19.675996759967603,60.166253756170306],[19.67239672396724,60.157810869820906],[19.661596615966175,60.15612229255103],[19.654396543965447,60.157810869820906],[19.64719647196472,60.15612229255103],[19.63279632796329,60.166253756170306],[19.611196111961135,60.188205260678785],[19.593195931959315,60.19664814702821],[19.600396003960043,60.179762374329385],[19.603996039960407,60.16456517890043],[19.600396003960043,60.14936798347148],[19.585995859958615,60.13585936531243],[19.56439564395646,60.130793633502776],[19.54639546395464,60.13417078804255],[19.528395283952847,60.14936798347148],[19.517595175951755,60.16963091071008],[19.51399513995142,60.179762374329385],[19.51399513995142,60.183139528869134],[19.517595175951755,60.188205260678785],[19.53199531995321,60.193270992488436],[19.535595355953575,60.201713878837865],[19.535595355953575,60.21184534245714],[19.535595355953575,60.22197680607644],[19.535595355953575,60.23210826969574],[19.542795427954275,60.237174001505394],[19.560795607956095,60.24899404239457],[19.567995679956795,60.2557483514741],[19.578795787957887,60.26081408328375],[19.593195931959315,60.26081408328375],[19.60759607596077,60.25743692874397],[19.629196291962927,60.2473054651247],[19.63279632796329,60.24055115604517],[19.63999639996402,60.23210826969574],[19.63999639996402,60.22028822880657]]],[[[21.998019980199814,60.33342290588871],[21.980019800198022,60.32835717407906],[21.9620196201962,60.32835717407906],[21.940419404194046,60.33004575134893],[21.922419224192254,60.33342290588871],[21.91881918819189,60.33342290588871],[21.915219152191526,60.33004575134893],[21.908019080190797,60.326668596809185],[21.900819008190098,60.326668596809185],[21.900819008190098,60.33004575134893],[21.900819008190098,60.33848863769836],[21.900819008190098,60.34186579223811],[21.87921879218794,60.35030867858754],[21.86841868418685,60.35368583312729],[21.8360183601836,60.357062987667064],[21.814418144181445,60.36381729674659],[21.79281792817929,60.37394876036589],[21.78561785617856,60.38576880125507],[21.79281792817929,60.397588842144245],[21.807218072180717,60.40603172849367],[21.8288182881829,60.40940888303342],[21.846818468184694,60.40940888303342],[21.846818468184694,60.41616319211295],[21.800018000180017,60.44318042843108],[21.80361803618038,60.45668904659016],[21.807218072180717,60.46682051020943],[21.81801818018181,60.47188624201908],[21.832418324183237,60.47188624201908],[21.846818468184694,60.46344335566968],[21.89361893618937,60.4499347375106],[21.900819008190098,60.43980327389133],[21.904419044190462,60.4313603875419],[21.91161911619116,60.42629465573225],[21.922419224192254,60.424606078462375],[21.933219332193318,60.4229175011925],[21.951219512195138,60.402654573953896],[21.951219512195138,60.39590026487437],[21.922419224192254,60.40096599668402],[21.908019080190797,60.40096599668402],[21.89361893618937,60.39590026487437],[21.908019080190797,60.39083453306472],[21.93681936819368,60.38239164671529],[21.951219512195138,60.375637337635766],[21.94401944019441,60.36888302855624],[21.976419764197658,60.36888302855624],[21.98721987219872,60.36550587401649],[21.998019980199814,60.35537441039719],[21.972819728197294,60.348620101317664],[21.9620196201962,60.34693152404776],[21.980019800198022,60.34186579223811],[21.98721987219872,60.34186579223811],[21.998019980199814,60.34186579223811],[21.998019980199814,60.33342290588871]]],[[[4.959049590495908,61.177711540830046],[4.987849878498793,61.12029991365404],[4.9842498424984285,61.10510271822511],[4.966249662496637,61.09159410006603],[4.92664926649266,61.07639690463711],[4.908649086490868,61.0645768637479],[4.89424894248944,61.0561339773985],[4.883448834488348,61.06964259555755],[4.87624876248762,61.08990552279616],[4.858248582485828,61.101725563685335],[4.854648546485464,61.096659831875684],[4.82584825848258,61.079774059176856],[4.822248222482244,61.07808548190698],[4.815048150481516,61.06964259555755],[4.815048150481516,61.061199709208154],[4.811448114481152,61.05444540012863],[4.804248042480424,61.0460025137792],[4.797047970479724,61.06288828647803],[4.797047970479724,61.08315121371663],[4.797047970479724,61.11861133638416],[4.797047970479724,61.12536564546369],[4.789847898478996,61.137185686352865],[4.789847898478996,61.14562857270229],[4.79344793447936,61.15407145905169],[4.81864818648188,61.15576003632157],[4.829448294482944,61.16251434540112],[4.8510485104851,61.128742800003465],[4.861848618486192,61.12198849092394],[4.872648726487284,61.137185686352865],[4.86904869048692,61.150694304511944],[4.8438484384844,61.19797446806865],[4.861848618486192,61.2030401998783],[4.872648726487284,61.194597313528874],[4.887048870488712,61.16251434540112],[4.890648906489076,61.14562857270229],[4.89424894248944,61.137185686352865],[4.90144901449014,61.13887426362277],[4.905049050490504,61.14562857270229],[4.905049050490504,61.15576003632157],[4.905049050490504,61.164202922670995],[4.90144901449014,61.169268654480646],[4.908649086490868,61.169268654480646],[4.9194491944919605,61.17095723175052],[4.92664926649266,61.172645809020395],[4.933849338493388,61.177711540830046],[4.930249302493024,61.18108869536982],[4.923049230492325,61.186154427179474],[4.9194491944919605,61.191220158989125],[4.933849338493388,61.192908736259],[4.944649446494481,61.18953158171922],[4.95184951849518,61.1844658499096],[4.959049590495908,61.177711540830046]]],[[[4.865448654486556,61.88860257145066],[4.908649086490868,61.898734035069964],[4.95184951849518,61.89704545780009],[5.221852218522201,61.84807671697348],[5.203852038520381,61.83456809881443],[5.175051750517525,61.826125212465],[5.117451174511757,61.82105948065535],[5.131851318513185,61.827813789734904],[5.139051390513913,61.83794525335418],[5.139051390513913,61.84807671697348],[5.124651246512485,61.85651960332291],[5.092250922509237,61.827813789734904],[5.052650526505261,61.80923943976617],[5.013050130501313,61.79573082160712],[4.915849158491596,61.78053362617817],[4.890648906489076,61.78559935798782],[4.872648726487284,61.800796553416774],[4.86904869048692,61.81261659430595],[4.879848798487984,61.814305171575825],[4.90144901449014,61.8075508624963],[4.908649086490868,61.810928017036076],[4.915849158491596,61.81599374884573],[4.92664926649266,61.827813789734904],[4.8978489784898045,61.827813789734904],[4.829448294482944,61.83456809881443],[4.804248042480424,61.841322407893955],[4.822248222482244,61.85314244878313],[4.847448474484764,61.863273912402434],[4.865448654486556,61.873405376021736],[4.865448654486556,61.88860257145066]]],[[[-6.535865358653581,62.19085790275969],[-6.571865718657193,62.21280940726814],[-6.582665826658257,62.22800660269709],[-6.579065790657893,62.24489237539592],[-6.571865718657193,62.251646684475446],[-6.568265682656829,62.251646684475446],[-6.564665646656465,62.2482695299357],[-6.561065610656101,62.24489237539592],[-6.553865538655373,62.246580952665795],[-6.550265502655009,62.251646684475446],[-6.550265502655009,62.2567124162851],[-6.546665466654673,62.26346672536462],[-6.546665466654673,62.27190961171405],[-6.550265502655009,62.29892684803218],[-6.550265502655009,62.30736973438158],[-6.564665646656465,62.327632661620186],[-6.571865718657193,62.34620701158889],[-6.568265682656829,62.36140420701784],[-6.535865358653581,62.36984709336724],[-6.546665466654673,62.363092784287716],[-6.517865178651789,62.322566929810534],[-6.481864818648177,62.295549693492404],[-6.438664386643865,62.2752867662538],[-6.3882638826388245,62.260089570824874],[-6.406264062640616,62.24489237539592],[-6.435064350643501,62.243203798126046],[-6.467464674646749,62.2482695299357],[-6.489064890648905,62.260089570824874],[-6.496264962649633,62.25333526174535],[-6.460264602646021,62.22800660269709],[-6.438664386643865,62.21956371634769],[-6.420664206642073,62.22631802542722],[-6.417064170641709,62.20774367545849],[-6.413464134641345,62.202677943648865],[-6.406264062640616,62.197612211839214],[-6.406264062640616,62.19085790275969],[-6.424264242642408,62.18579217095004],[-6.445864458644593,62.18241501641026],[-6.463864638646385,62.18579217095004],[-6.478264782647813,62.19423505729944],[-6.507065070650697,62.22125229361757],[-6.521465214652153,62.22969517996697],[-6.535865358653581,62.22631802542722],[-6.514265142651425,62.19254648002956],[-6.507065070650697,62.180726439140386],[-6.503465034650333,62.17397213006086],[-6.510665106651061,62.17397213006086],[-6.517865178651789,62.175660707330735],[-6.528665286652853,62.180726439140386],[-6.532265322653217,62.184103593680135],[-6.535865358653581,62.18748074821991],[-6.535865358653581,62.19085790275969]]],[[[7.6410764107641285,63.05540946493963],[7.651876518765192,63.05203231039985],[7.6626766267662845,63.04190084678055],[7.680676806768076,63.01994934227207],[7.698676986769868,63.0098178786528],[7.7058770587705965,63.00644072411302],[7.680676806768076,62.99630926049372],[7.6626766267662845,62.99293210595397],[7.623076230762308,62.98955495141419],[7.60867608676088,62.98280064233467],[7.597875978759788,62.97435775598524],[7.525875258752592,62.945651942397234],[7.5078750787508,62.942274787857485],[7.489874898749008,62.945651942397234],[7.489874898749008,62.94734051966714],[7.471874718747188,62.96253771509606],[7.464674646746488,62.96591486963584],[7.392673926739263,62.97942348779489],[7.3746737467374714,62.98786637414432],[7.367473674736743,62.99630926049372],[7.3746737467374714,63.00644072411302],[7.3962739627396274,63.013195033192545],[7.435874358743604,63.01994934227207],[7.4214742147421475,63.0283922286215],[7.4178741787417835,63.0368351149709],[7.4214742147421475,63.043589424050424],[7.435874358743604,63.0469665785902],[7.4178741787417835,63.053720887669726],[7.410674106741084,63.05540946493963],[7.3998739987399915,63.05540946493963],[7.3998739987399915,63.06047519674925],[7.425074250742512,63.06047519674925],[7.489874898749008,63.067229505828806],[7.475474754747552,63.05540946493963],[7.504275042750436,63.053720887669726],[7.525875258752592,63.0469665785902],[7.565475654756568,63.01994934227207],[7.572675726757268,63.026703651351625],[7.576275762757632,63.0368351149709],[7.576275762757632,63.043589424050424],[7.561875618756204,63.05034373312998],[7.572675726757268,63.0570980422095],[7.590675906759088,63.062163774019155],[7.594275942759424,63.06385235128903],[7.605076050760516,63.07904954671798],[7.605076050760516,63.089181010337256],[7.58347583475836,63.11619824665539],[7.619476194761944,63.11788682392529],[7.637476374763764,63.11619824665539],[7.648276482764828,63.10944393757586],[7.648276482764828,63.09255816487703],[7.651876518765192,63.08073812398786],[7.648276482764828,63.06891808309868],[7.6410764107641285,63.05540946493963]]],[[[8.112681126811282,63.23946438735683],[8.134281342813438,63.22933292373753],[8.155881558815594,63.21075857376883],[8.170281702817022,63.192184223800126],[8.166681666816686,63.17867560564105],[8.181081810818114,63.16685556475187],[8.188281882818842,63.165166987481996],[8.188281882818842,63.15672410113257],[8.019080190801901,63.138149751163866],[7.975879758797589,63.14321548297352],[7.929079290792913,63.17867560564105],[7.936279362793641,63.18542991472057],[7.990279902799045,63.19893853287965],[8.047880478804785,63.231021501007405],[8.07668076680767,63.24115296462671],[8.112681126811282,63.23946438735683]]],[[[-41.14661146611465,63.285055973643665],[-41.1070110701107,63.24284154189661],[-41.09981099810997,63.222578614658005],[-41.12141121411213,63.2124471510387],[-41.15741157411574,63.21920146011823],[-41.186211862118626,63.23946438735683],[-41.24021240212403,63.28843312818344],[-41.2330123301233,63.25972731459541],[-41.218612186121845,63.23777581008696],[-41.218612186121845,63.22426719192788],[-41.261812618126186,63.21920146011823],[-41.29061290612907,63.23439865554718],[-41.34101341013411,63.285055973643665],[-41.369813698136966,63.28167881910389],[-41.351813518135174,63.271547355484614],[-41.344613446134446,63.258038737325535],[-41.34821348213481,63.24284154189661],[-41.362613626136266,63.23271007827731],[-41.387813878138786,63.22933292373753],[-41.413014130141306,63.23271007827731],[-41.438214382143826,63.24115296462671],[-41.45981459814598,63.252973005515884],[-41.4850148501485,63.26648162367496],[-41.553415534155334,63.312073209961795],[-41.67221672216721,63.36273052805828],[-41.71901719017188,63.38974776437638],[-41.7370173701737,63.39481349618603],[-41.77661776617765,63.40156780526556],[-41.84861848618485,63.43365077339334],[-41.86661866618667,63.45053654609217],[-41.8630186301863,63.472488050600646],[-41.83781837818378,63.4876852460296],[-41.80181801818017,63.496128132379],[-41.70101701017009,63.499505286918776],[-41.6830168301683,63.496128132379],[-41.654216542165415,63.480930936950045],[-41.62181621816217,63.472488050600646],[-41.6110161101611,63.46573374152112],[-41.60741607416074,63.46066800971147],[-41.60021600216001,63.445470814282515],[-41.596615966159646,63.43871650520299],[-41.58221582215822,63.43027361885356],[-41.53541535415354,63.41507642342464],[-41.51741517415175,63.41169926888486],[-41.4850148501485,63.418453577964385],[-41.46701467014671,63.41507642342464],[-41.42381423814237,63.396502073455935],[-41.41661416614167,63.38974776437638],[-41.413014130141306,63.374550568947456],[-41.41661416614167,63.36441910532815],[-41.445414454144526,63.3492219098992],[-41.27981279812798,63.3492219098992],[-41.261812618126186,63.347533332629325],[-41.236612366123666,63.3407790235498],[-41.21501215012151,63.3306475599305],[-41.19701197011969,63.307007478152144],[-41.14661146611465,63.285055973643665]]],[[[-40.67140671406713,64.21883920388879],[-40.657006570065704,64.21546204934904],[-40.64620646206461,64.21546204934904],[-40.63540635406355,64.22052778115867],[-40.62100621006209,64.22728209023822],[-40.631806318063184,64.20701916299961],[-40.649806498064976,64.20364200845984],[-40.69660696606965,64.21377347207914],[-40.93060930609306,64.21377347207914],[-41.017010170101685,64.20195343118996],[-41.035010350103505,64.20533058572974],[-41.04581045810457,64.21883920388879],[-41.0530105301053,64.22390493569844],[-41.060210602106025,64.22728209023822],[-41.060210602106025,64.23403639931774],[-41.04941049410493,64.23572497658762],[-41.042210422104205,64.2391021311274],[-41.042210422104205,64.24585644020692],[-41.04941049410493,64.25429932655632],[-41.035010350103505,64.2576764810961],[-41.009810098100985,64.26105363563588],[-40.99900999009989,64.26443079017562],[-40.991809918099165,64.27118509925515],[-40.9810098100981,64.28300514014433],[-40.97380973809737,64.28807087195398],[-40.95220952209522,64.2965137583034],[-40.826208262082616,64.31339953100223],[-40.72180721807217,64.30664522192271],[-40.67860678606786,64.29482518103353],[-40.689406894068924,64.28975944922388],[-40.69660696606965,64.28131656287445],[-40.71100711007111,64.26105363563588],[-40.707407074070744,64.2576764810961],[-40.69660696606965,64.2492335947467],[-40.69300693006929,64.2475450174768],[-40.71100711007111,64.2391021311274],[-40.732607326073264,64.23403639931774],[-40.71820718207181,64.22728209023822],[-40.707407074070744,64.22559351296832],[-40.664206642066404,64.2289706675081],[-40.66060660606607,64.22728209023822],[-40.67140671406713,64.21883920388879]]],[[[12.004320043200437,65.68959000595663],[12.000720007200073,65.67776996506745],[11.986319863198645,65.6727042332578],[11.95751957519576,65.66426134690838],[11.971919719197189,65.64906415147945],[11.975519755197553,65.6423098423999],[11.971919719197189,65.63217837878062],[11.95751957519576,65.62204691516132],[11.925119251192513,65.59671825611306],[11.917919179191813,65.58996394703354],[11.90711907119072,65.58996394703354],[11.903519035190357,65.59502967884319],[11.899918999189993,65.60178398792272],[11.889118891188929,65.60347256519262],[11.878318783187837,65.60178398792272],[11.867518675186773,65.59840683338297],[11.860318603186045,65.59840683338297],[11.849518495184952,65.60347256519262],[11.867518675186773,65.61022687427214],[11.845918459184588,65.61360402881189],[11.78111781117812,65.60684971973237],[11.759517595175964,65.61866976062154],[11.766717667176692,65.63555553332037],[11.784717847178484,65.66088419236863],[11.809918099181004,65.6828356968771],[11.824318243182432,65.69296716049638],[11.892718927189293,65.70647577865546],[11.925119251192513,65.70816435592533],[11.953919539195397,65.69634431503616],[11.964719647196489,65.69634431503616],[11.98271982719828,65.69972146957593],[11.997119971199709,65.69972146957593],[12.004320043200437,65.68959000595663]]],[[[-37.45297452974529,65.79259321941947],[-37.46017460174602,65.79765895122912],[-37.47457474574745,65.80441326030865],[-37.4889748897489,65.8094789921183],[-37.4961749617496,65.8094789921183],[-37.49977499774997,65.80272468303878],[-37.4889748897489,65.79597037395925],[-37.47817478174781,65.7892160648797],[-37.47097470974708,65.78246175580017],[-37.46737467374672,65.77233029218087],[-37.47097470974708,65.76557598310134],[-37.47457474574745,65.75882167402182],[-37.47097470974708,65.74869021040251],[-37.46017460174602,65.74193590132299],[-37.41697416974168,65.73349301497359],[-37.47817478174781,65.72673870589404],[-37.4961749617496,65.71998439681451],[-37.47097470974708,65.70816435592533],[-37.38457384573846,65.71829581954464],[-37.35217352173521,65.70985293319521],[-37.33777337773378,65.70478720138556],[-37.323373233732326,65.70141004684581],[-37.31257312573126,65.69465573776628],[-37.31257312573126,65.67945854233733],[-37.323373233732326,65.66763850144815],[-37.35937359373594,65.6625727696385],[-37.373773737737366,65.65075272874932],[-37.370173701737,65.64062126513002],[-37.38457384573846,65.6338669560505],[-37.424174241742406,65.63217837878062],[-37.41697416974168,65.64568699693967],[-37.424174241742406,65.6541298832891],[-37.4421744217442,65.65750703782885],[-37.456574565745655,65.65075272874932],[-37.45297452974529,65.64906415147945],[-37.449374493744926,65.6423098423999],[-37.4421744217442,65.63893268786015],[-37.47097470974708,65.6338669560505],[-37.47817478174781,65.63217837878062],[-37.47817478174781,65.62711264697097],[-37.47817478174781,65.61866976062154],[-37.481774817748175,65.61360402881189],[-37.49257492574924,65.61022687427214],[-37.51057510575106,65.61360402881189],[-37.51777517775176,65.62204691516132],[-37.52137521375212,65.63217837878062],[-37.52497524975249,65.63893268786015],[-37.54657546575464,65.63724411059027],[-37.557375573755735,65.62035833789145],[-37.5681756817568,65.60178398792272],[-37.60057600576005,65.59671825611306],[-37.59337593375932,65.61191545154202],[-37.58617586175862,65.61866976062154],[-37.59337593375932,65.62035833789145],[-37.6149761497615,65.63217837878062],[-37.60057600576005,65.63893268786015],[-37.6149761497615,65.6439984196698],[-37.62577625776257,65.64737557420955],[-37.6941769417694,65.65581846055898],[-37.71217712177122,65.6541298832891],[-37.71577715777158,65.64906415147945],[-37.70137701377013,65.6338669560505],[-37.6941769417694,65.62711264697097],[-37.683376833768335,65.6237354924312],[-37.66897668976688,65.6237354924312],[-37.65097650976509,65.62035833789145],[-37.63657636576366,65.61360402881189],[-37.62937629376293,65.60347256519262],[-37.70497704977049,65.57307817433471],[-37.73737737377374,65.56970101979496],[-37.75537755377553,65.57307817433471],[-37.791377913779144,65.58658679249379],[-37.841778417784184,65.59502967884319],[-37.85617856178561,65.59334110157332],[-37.84897848978488,65.58320963795401],[-37.874178741787404,65.57645532887449],[-37.90657906579065,65.58827536976366],[-37.935379353793536,65.60684971973237],[-37.949779497794964,65.6237354924312],[-37.9461794617946,65.63555553332037],[-37.949779497794964,65.64737557420955],[-37.95337953379533,65.66088419236863],[-37.95697956979569,65.6727042332578],[-37.960579605796056,65.67945854233733],[-37.96417964179642,65.6811471196072],[-37.967779677796784,65.68452427414698],[-37.98217982179821,65.69634431503616],[-37.985779857798576,65.69803289230603],[-37.985779857798576,65.70141004684581],[-37.97137971379712,65.73687016951334],[-37.96417964179642,65.75206736494229],[-37.96417964179642,65.77233029218087],[-37.95337953379533,65.79597037395925],[-37.93177931779317,65.80272468303878],[-37.90297902979029,65.80103610576887],[-37.874178741787404,65.80272468303878],[-37.859778597785976,65.81623330119783],[-37.83817838178382,65.86182488748466],[-37.82377823778236,65.87026777383409],[-37.809378093780936,65.87364492837384],[-37.758977589775895,65.88546496926301],[-37.69777697776976,65.89221927834254],[-37.6941769417694,65.89390785561244],[-37.69777697776976,65.89897358742209],[-37.69777697776976,65.90403931923174],[-37.6941769417694,65.90572789650162],[-37.64017640176402,65.90572789650162],[-37.60417604176041,65.90066216469197],[-37.58617586175862,65.89559643288231],[-37.52137521375212,65.85507057840513],[-37.4961749617496,65.84325053751596],[-37.431374313743135,65.83311907389665],[-37.39537395373952,65.82298761027735],[-37.36657366573667,65.78752748760982],[-37.272972729727286,65.76051025129169],[-37.29457294572944,65.75544451948204],[-37.40257402574025,65.75713309675194],[-37.42057420574204,65.76557598310134],[-37.43857438574386,65.77739602399052],[-37.45297452974529,65.79259321941947]]],[[[16.42156421564215,68.49262827396191],[16.43236432364324,68.48587396488239],[16.453964539645398,68.47574250126308],[16.46476464764649,68.46898819218356],[16.443164431644334,68.462233883104],[16.392763927639294,68.45547957402448],[16.37116371163711,68.44703668767508],[16.385563855638566,68.44028237859555],[16.403564035640358,68.43015091497625],[16.41436414364145,68.41833087408708],[16.399963999639994,68.41326514227742],[16.23076230762308,68.40988798773765],[16.18036180361804,68.39975652411835],[16.140761407614093,68.38455932868942],[16.122761227612273,68.37949359687977],[16.119161191611937,68.3862479059593],[16.093960939609417,68.39806794684847],[16.115561155611573,68.40988798773765],[16.173161731617313,68.42846233770635],[16.158761587615885,68.42677376043648],[16.144361443614457,68.42846233770635],[16.119161191611937,68.433528069516],[16.13716137161373,68.46898819218356],[16.169561695616977,68.49938258304144],[16.191161911619133,68.51457977847039],[16.219962199622017,68.52302266481979],[16.342363423634254,68.53653128297884],[16.360363603636046,68.53484270570897],[16.38916389163893,68.52471124208967],[16.403564035640358,68.52302266481979],[16.410764107641086,68.51964551028004],[16.417964179641814,68.51120262393061],[16.417964179641814,68.49938258304144],[16.42156421564215,68.49262827396191]]],[[[17.05157051570515,68.81683510977939],[17.073170731707336,68.81176937796974],[17.130771307713076,68.78306356438173],[17.145171451714532,68.76955494622266],[17.105571055710556,68.75773490533348],[16.84276842768429,68.72565193720573],[16.81756817568177,68.73578340082503],[16.82476824768247,68.73916055536478],[16.8319683196832,68.7476034417142],[16.835568355683563,68.7560463280636],[16.835568355683563,68.7661777916829],[16.84276842768429,68.77293210076243],[16.878768787687875,68.78812929619139],[16.911169111691123,68.79657218254079],[16.97596975969759,68.8455409233674],[17.00117001170011,68.85904954152645],[17.015570155701568,68.86073811879635],[17.022770227702296,68.84891807790714],[17.02637026370263,68.84722950063727],[17.05157051570515,68.81683510977939]]],[[[16.56556565565657,68.96880706406884],[16.583565835658362,68.96205275498929],[16.59796597965979,68.94685555956036],[16.601566015660154,68.93165836413141],[16.583565835658362,68.9215269005121],[16.587165871658726,68.89788681873375],[16.56556565565657,68.88775535511445],[16.475564755647554,68.88606677784458],[16.435964359643606,68.89113250965423],[16.39636396363963,68.90126397327353],[16.342363423634254,68.93334694140128],[16.284762847628485,68.95192129137001],[16.26316263162633,68.96880706406884],[16.30636306363064,68.99582430038694],[16.360363603636046,68.99075856857729],[16.41436414364145,68.97218421860859],[16.468364683646854,68.96205275498929],[16.518765187651894,68.96205275498929],[16.56556565565657,68.96880706406884]]],[[[-54.71874718747188,70.38045766169077],[-54.855548555485555,70.3686376208016],[-54.92754927549275,70.37539192988112],[-54.985149851498505,70.40072058892935],[-54.9959499594996,70.41085205254865],[-55.006750067500676,70.4243606707077],[-55.01755017550175,70.43786928886678],[-55.02475024750247,70.47670656607409],[-55.02835028350283,70.48683802969336],[-55.02115021150212,70.49021518423314],[-54.79794797947979,70.45813221610535],[-54.682746827468264,70.41422920708843],[-54.66474664746647,70.40072058892935],[-54.653946539465394,70.38214623896064],[-54.66834668346684,70.37708050715099],[-54.71874718747188,70.38045766169077]]],[[[24.07164071640716,70.96301681980029],[24.208442084420852,70.96639397434006],[24.244442444424465,70.95626251072076],[24.212042120421216,70.95626251072076],[24.212042120421216,70.94613104710146],[24.201242012420124,70.94106531529181],[24.183241832418332,70.94106531529181],[24.168841688416904,70.94275389256171],[24.176041760417604,70.93599958348216],[24.161641616416176,70.92755669713276],[24.143641436414384,70.93093385167253],[24.125641256412564,70.93431100621228],[24.107641076410772,70.93599958348216],[24.09684096840968,70.92924527440263],[24.08964089640898,70.92080238805323],[24.078840788407888,70.9140480789737],[24.042840428404304,70.9140480789737],[24.02124021240212,70.91742523351346],[24.00684006840069,70.9224909653231],[23.999639996399964,70.93093385167253],[23.985239852398536,70.94275389256171],[23.909639096390976,70.95626251072076],[23.93843938439386,70.96470539707019],[24.00684006840069,70.96639397434006],[24.03924039240394,70.97652543795937],[24.00684006840069,70.98327974703889],[23.942039420394224,70.97821401522924],[23.909639096390976,70.98327974703889],[23.884438844388455,70.99678836519794],[23.89523895238952,71.0018540970076],[23.949239492394923,71.00354267427747],[23.93843938439386,71.0119855606269],[23.93123931239313,71.01536271516665],[23.924039240392403,71.01705129243655],[23.960039600396016,71.02887133332572],[24.086040860408616,71.02380560151607],[24.078840788407888,71.01367413789677],[24.07164071640716,71.01029698335702],[24.107641076410772,71.0018540970076],[24.186841868418696,71.00523125154737],[24.22284222842228,70.99678836519794],[24.186841868418696,70.99003405611842],[24.107641076410772,70.9934112106582],[24.07164071640716,70.98327974703889],[24.078840788407888,70.97990259249912],[24.082440824408252,70.97652543795937],[24.082440824408252,70.97314828341959],[24.086040860408616,70.96808255160994],[24.07164071640716,70.96301681980029]]],[[[-52.483124831248304,71.26358357383941],[-52.5191251912519,71.26020641929964],[-52.56232562325623,71.25176353295024],[-52.60192601926019,71.23656633752128],[-52.630726307263075,71.21968056482245],[-52.63792637926379,71.20786052393328],[-52.63792637926379,71.1960404830441],[-52.63792637926379,71.1875975966947],[-52.63792637926379,71.17915471034527],[-52.66312663126631,71.16902324672597],[-52.95832958329582,71.15382605129705],[-52.97632976329763,71.1572032058368],[-53.087930879308786,71.19941763758388],[-53.10593105931059,71.20279479212363],[-53.120331203312034,71.21292625574293],[-53.13473134731346,71.23656633752128],[-53.170731707317074,71.30242085104672],[-53.17793177931779,71.32774951009495],[-53.170731707317074,71.34632386006368],[-53.13473134731346,71.3530781691432],[-53.095130951309514,71.35814390095285],[-52.97272972729726,71.38684971454086],[-52.69192691926919,71.36996394184203],[-52.407524075240744,71.3530781691432],[-52.38952389523895,71.34632386006368],[-52.34992349923499,71.30917516012624],[-52.328323283232834,71.29904369650694],[-52.353523535235354,71.27709219199846],[-52.396723967239666,71.26696072837919],[-52.483124831248304,71.26358357383941]]],[[[-53.29313293132931,71.53882166883028],[-53.40473404734047,71.54726455517971],[-53.4371343713437,71.55908459606889],[-53.45513455134551,71.57934752330749],[-53.46593465934659,71.63338199594372],[-53.476734767347665,71.6553335004522],[-53.4371343713437,71.66884211861125],[-53.397533975339755,71.6739078504209],[-53.138331383313826,71.67053069588115],[-53.07713077130771,71.66039923226185],[-53.05553055530555,71.65871065499198],[-52.994329943299434,71.66715354134138],[-52.77832778327783,71.6654649640715],[-52.760327603276025,71.66208780953173],[-52.810728107281065,71.6367591504835],[-52.907929079290795,71.60974191416537],[-53.073530735307344,71.58610183238702],[-53.10233102331023,71.57259321422794],[-53.10233102331023,71.56752748241831],[-53.098730987309864,71.56077317333876],[-53.098730987309864,71.55233028698936],[-53.10233102331023,71.54557597790983],[-53.113131131311306,71.54051024610018],[-53.163531635316346,71.53037878248088],[-53.22833228332283,71.53037878248088],[-53.29313293132931,71.53882166883028]]],[[[-55.68715687156872,71.91706297728402],[-55.647556475564755,71.92719444090332],[-55.60435604356043,71.93226017271297],[-55.56115561155612,71.93394874998285],[-55.46395463954639,71.91706297728402],[-55.43515435154352,71.90862009093462],[-55.409954099541,71.89342289550567],[-55.449554495544945,71.86302850464776],[-55.50355503555035,71.83769984559953],[-55.56115561155612,71.8208140729007],[-55.61155611556116,71.8208140729007],[-55.697956979569796,71.83263411378988],[-55.726757267572665,71.84276557740918],[-55.76635766357663,71.86809423645741],[-55.784357843578434,71.87653712280684],[-55.809558095580954,71.88160285461649],[-55.7879578795788,71.90017720458519],[-55.68715687156872,71.91706297728402]]],[[[-55.60795607956079,73.03658970721625],[-55.58635586355864,73.0416554390259],[-55.5359553595536,73.04503259356565],[-55.521555215552155,73.0517869026452],[-55.157951579515796,72.99775243000894],[-55.10035100351003,72.98086665731012],[-55.067950679506794,72.95722657553176],[-55.082350823508236,72.95722657553176],[-55.096750967509664,72.95553799826189],[-55.107551075510756,72.94878368918233],[-55.118351183511834,72.94034080283294],[-55.132751327513276,72.9318979164835],[-55.298352983529824,72.92176645286423],[-55.33075330753307,72.93020933921363],[-55.31635316353163,72.94540653464259],[-55.323553235532344,72.95722657553176],[-55.35595355953559,72.97073519369081],[-55.35235352353523,72.97580092550047],[-55.348753487534864,72.98593238911977],[-55.348753487534864,72.99437527546917],[-55.35595355953559,72.99775243000894],[-55.363153631536306,72.99606385273907],[-55.370353703537035,72.99099812092942],[-55.370353703537035,72.98255523457999],[-55.37755377553775,72.97748950277034],[-55.40275402754027,72.96735803915107],[-55.43515435154352,72.95891515280164],[-55.499954999549985,72.95047226645224],[-55.525155251552505,72.95384942099199],[-55.597155971559715,72.97748950277034],[-55.672756727567275,72.98593238911977],[-55.69075690756907,72.99775243000894],[-55.60795607956079,73.03658970721625]]],[[[-56.12636126361264,73.82684386952135],[-56.162361623616235,73.82515529225148],[-56.19836198361983,73.81333525136228],[-56.23436234362343,73.79476090139357],[-56.24516245162451,73.7930723241237],[-56.317163171631705,73.78631801504417],[-56.34956349563495,73.78969516958392],[-56.35676356763567,73.80658094228275],[-56.34596345963459,73.80995809682253],[-56.33516335163351,73.81671240590205],[-56.32436324363243,73.82346671498158],[-56.317163171631705,73.83359817860088],[-56.33516335163351,73.8403524876804],[-56.615966159661596,73.81671240590205],[-56.65916659166591,73.81840098317193],[-56.691566915669156,73.84204106495031],[-56.63036630366304,73.86061541491901],[-56.65556655566556,73.87918976488771],[-56.745567455674546,73.86905830126841],[-56.77436774367743,73.88256691942749],[-56.62316623166231,73.92309277390467],[-56.590765907659076,73.91296131028537],[-56.288362883628835,73.88425549669736],[-55.985959859598594,73.85554968310936],[-55.96435964359644,73.84710679675993],[-55.953559535595346,73.83359817860088],[-55.96435964359644,73.81333525136228],[-55.99675996759967,73.80489236501288],[-56.12636126361264,73.82684386952135]]],[[[-56.518765187651866,74.49552046839489],[-56.727567275672754,74.49383189112501],[-56.727567275672754,74.49720904566479],[-57.09477094770948,74.48876615931536],[-57.19557195571956,74.47356896388644],[-57.50877508775088,74.48201185023584],[-57.55557555575555,74.49214331385514],[-57.55557555575555,74.49720904566479],[-57.20277202772027,74.51916055017327],[-56.84636846368463,74.53942347741184],[-56.76716767167672,74.55630925011067],[-56.71316713167131,74.56137498192032],[-56.619566195661946,74.55124351830102],[-56.525965259652594,74.53266916833232],[-56.52956529565296,74.5259148592528],[-56.53316533165331,74.52253770471302],[-56.54756547565475,74.51916055017327],[-56.468364683646826,74.51240624109371],[-56.48636486364863,74.49889762293466],[-56.518765187651866,74.49552046839489]]],[[[-69.49689496894969,76.5927334375892],[-69.48249482494825,76.58597912850968],[-69.47169471694717,76.5826019739699],[-69.4680946809468,76.57922481943015],[-69.47889478894788,76.56740477854098],[-69.49329493294933,76.56233904673132],[-69.53649536495365,76.55727331492167],[-69.5940959409594,76.54207611949272],[-69.67689676896768,76.53363323314332],[-70.01530015300153,76.55727331492167],[-70.03330033300333,76.56740477854098],[-70.01890018900188,76.5826019739699],[-69.97929979299792,76.59104486031933],[-69.55809558095581,76.61468494209768],[-69.52209522095221,76.60961921028803],[-69.49689496894969,76.5927334375892]]],[[[-70.35730357303572,77.41844772256184],[-70.13050130501304,77.41507056802209],[-70.05490054900548,77.40493910440279],[-70.09090090900908,77.39480764078348],[-70.170101701017,77.39649621805339],[-70.24570245702456,77.38636475443408],[-70.66330663306633,77.38129902262443],[-71.08091080910809,77.37792186808466],[-71.10971109711097,77.3829875998943],[-71.13851138511384,77.39311906351361],[-71.16731167311673,77.41507056802209],[-71.19611196111961,77.43026776345104],[-71.3041130411304,77.45221926795949],[-71.28971289712896,77.45728499976914],[-71.27171271712717,77.45897357703905],[-71.20331203312033,77.45728499976914],[-71.12771127711277,77.4640393088487],[-70.97290972909728,77.46066215430892],[-70.89730897308972,77.47417077246797],[-70.62730627306273,77.44546495887997],[-70.35730357303572,77.41844772256184]]],[[[-53.275132751327504,82.17179273728163],[-53.33633336333362,82.19205566452024],[-53.350733507335065,82.20218712813954],[-53.33993339933399,82.25791017804568],[-53.246332463324634,82.29843603252286],[-53.05193051930519,82.33051900065061],[-52.785527855278545,82.31701038249156],[-52.555125551255514,82.27648452801438],[-52.60192601926019,82.26973021893485],[-52.59472594725946,82.25959875531555],[-52.583925839258384,82.25284444623603],[-52.529925299252994,82.21907290083837],[-52.51552515525155,82.21400716902872],[-52.46512465124651,82.20049855086964],[-52.05472054720546,82.13802119188398],[-51.64431644316443,82.07554383289835],[-51.230312303123014,82.01475505118256],[-51.190711907119066,81.99618070121386],[-51.20151201512016,81.99111496940421],[-51.23751237512374,81.98773781486443],[-51.29511295112951,81.97929492851503],[-51.69831698316983,81.98773781486443],[-52.1051210512105,81.99618070121386],[-52.20952209522095,82.01813220572231],[-52.533525335253344,82.04852659658022],[-52.61272612726127,82.06541236927904],[-53.01593015930159,82.0890524510574],[-53.087930879308786,82.10593822375623],[-53.188731887318866,82.11269253283575],[-53.23193231932319,82.13126688280445],[-53.23193231932319,82.1363326146141],[-53.23553235532354,82.14815265550328],[-53.239132391323906,82.15321838731293],[-53.246332463324634,82.15997269639246],[-53.25713257132571,82.16503842820211],[-53.275132751327504,82.17179273728163]]],[[[-47.85347853478535,82.78305770897919],[-48.332283322833234,82.79150059532859],[-48.36828368283682,82.79825490440814],[-48.400684006840066,82.81007494529732],[-48.415084150841494,82.82864929526602],[-48.41148411484113,82.85228937704437],[-48.407884078840794,82.86748657247333],[-48.39348393483934,82.87761803609263],[-48.364683646836454,82.88606092244203],[-48.28548285482853,82.89619238606133],[-47.896678966789665,82.86242084066367],[-47.50787507875077,82.82864929526602],[-47.4430744307443,82.81176352256719],[-47.479074790747916,82.79150059532859],[-47.53307533075329,82.78474628624906],[-47.85347853478535,82.78305770897919]]],[[[103.8016380163802,0.8532885742706497],[103.8160381603816,0.8414685333814731],[103.83043830438305,0.8161398743332313],[103.84123841238414,0.7891226380151011],[103.83763837638378,0.7688597107765105],[103.83403834038342,0.7654825562367478],[103.82683826838269,0.7654825562367478],[103.81963819638196,0.7688597107765105],[103.8016380163802,0.7840569062054641],[103.76563765637655,0.8043198334440547],[103.74763747637479,0.8228941834127568],[103.72963729637297,0.8482228424609985],[103.7260372603726,0.8735515015092403],[103.74403744037443,0.8938144287478309],[103.75123751237516,0.8887486969381797],[103.76923769237692,0.8836829651285427],[103.77643776437765,0.8803058105887658],[103.8016380163802,0.8532885742706497]]],[[[108.84168841688415,2.9741416252433197],[108.85608856088561,3.002847438831324],[108.88128881288816,3.002847438831324],[108.89928899288992,2.9825845115927336],[108.88488884888852,2.953878698004729],[108.88488884888852,2.9420586571155525],[108.8920889208892,2.9032213799082456],[108.88848888488889,2.888024184479306],[108.88488884888852,2.8846470299395293],[108.86328863288634,2.877892720860004],[108.85608856088561,2.874515566320241],[108.85248852488525,2.8677612572407156],[108.84528845288452,2.8508754845418878],[108.84168841688415,2.8458097527322366],[108.83088830888312,2.847498330002111],[108.81648816488166,2.8559412163515248],[108.79848798487984,2.874515566320241],[108.78408784087844,2.882958452669655],[108.77688776887771,2.888024184479306],[108.77688776887771,2.8947784935588317],[108.77688776887771,2.89646707082872],[108.79848798487984,2.9082871117178968],[108.8128881288813,2.921795729876962],[108.83088830888312,2.9369929253059013],[108.83448834488348,2.9471243889251895],[108.84168841688415,2.9606330070842546],[108.84168841688415,2.9741416252433197]]],[[[99.03519035190351,7.644746353738867],[99.06399063990642,7.614351962880974],[99.07479074790751,7.609286231071323],[99.07479074790751,7.573826108403793],[99.08559085590855,7.536677408466375],[99.09999099991,7.502905863068719],[99.11799117991183,7.479265781290351],[99.09999099991,7.467445740401175],[99.07839078390782,7.48095435856024],[99.0567905679057,7.504594440338593],[99.03159031590314,7.562006067514616],[99.02799027990278,7.5721375311339045],[99.02799027990278,7.60590907653156],[99.02799027990278,7.622794849230388],[99.02079020790211,7.636303467389453],[99.02439024390247,7.639680621929216],[99.02439024390247,7.641369199199104],[99.02799027990278,7.644746353738867],[99.03519035190351,7.644746353738867]]],[[[98.5419854198542,8.105727948416842],[98.58518585185851,8.078710712098712],[98.60318603186033,8.063513516669772],[98.61038610386106,8.034807703081768],[98.61038610386106,7.926738757809275],[98.60318603186033,7.903098676030922],[98.58878588785888,7.904787253300796],[98.57798577985778,7.91998444872975],[98.57078570785711,7.938558798698452],[98.56718567185675,7.963887457746694],[98.56358563585638,7.977396075905759],[98.56358563585638,7.985838962255173],[98.56718567185675,7.992593271334698],[98.57438574385748,7.994281848604587],[98.58158581585815,7.995970425874461],[98.58158581585815,8.006101889493763],[98.58158581585815,8.014544775843177],[98.57798577985778,8.024676239462465],[98.57438574385748,8.031430548542005],[98.56718567185675,8.034807703081768],[98.55638556385566,8.036496280351642],[98.55278552785529,8.043250589431182],[98.54918549185493,8.050004898510707],[98.53838538385384,8.071956403019186],[98.53118531185311,8.088842175718014],[98.52758527585274,8.107416525686716],[98.52758527585274,8.124302298385544],[98.53118531185311,8.119236566575907],[98.53478534785347,8.11585941203613],[98.5419854198542,8.105727948416842]]],[[[73.07893078930789,8.315111529882287],[73.08253082530825,8.315111529882287],[73.08253082530825,8.311734375342525],[73.08253082530825,8.308357220802762],[73.06453064530646,8.271208520865343],[73.05733057330573,8.259388479976167],[73.0429304293043,8.252634170896641],[73.03213032130321,8.249257016356864],[73.02493024930251,8.256011325436404],[73.02133021330215,8.274585675405106],[73.02853028530285,8.274585675405106],[73.02853028530285,8.26276563451593],[73.02853028530285,8.259388479976167],[73.05013050130503,8.26783136632558],[73.06453064530646,8.279651407214757],[73.07173071730719,8.294848602643697],[73.07893078930789,8.315111529882287]]],[[[93.1347313473135,8.24081413000745],[93.159931599316,8.228994089118274],[93.17433174331745,8.22055120276886],[93.17793177931782,8.212108316419446],[93.16713167131672,8.20535400733992],[93.15273152731527,8.20535400733992],[93.12393123931241,8.212108316419446],[93.10233102331023,8.222239780038748],[93.0807308073081,8.242502707277339],[93.06633066330664,8.26783136632558],[93.05913059130592,8.291471448103934],[93.06273062730628,8.320177261691938],[93.06273062730628,8.335374457120892],[93.06993069930701,8.347194498010069],[93.08433084330846,8.355637384359483],[93.0951309513095,8.355637384359483],[93.10233102331023,8.34550592074018],[93.10233102331023,8.299914334453348],[93.10233102331023,8.276274252674995],[93.11313113131132,8.256011325436404],[93.1347313473135,8.24081413000745]]],[[[106.66366663666639,8.740633001892732],[106.63846638466384,8.73725584735297],[106.63846638466384,8.727124383733667],[106.64926649266494,8.711927188304728],[106.65646656466566,8.698418570145662],[106.64206642066421,8.703484301955314],[106.63126631266312,8.703484301955314],[106.62406624066244,8.700107147415551],[106.60966609666099,8.698418570145662],[106.60246602466026,8.6950414156059],[106.5988659886599,8.684909951986612],[106.60246602466026,8.67308991109742],[106.5988659886599,8.664647024748007],[106.60246602466026,8.65958129293837],[106.60246602466026,8.656204138398593],[106.5988659886599,8.65282698385883],[106.58446584465844,8.651138406588956],[106.57726577265771,8.656204138398593],[106.56286562865631,8.676467065637198],[106.55926559265595,8.681532797446835],[106.57006570065704,8.705172879225202],[106.5988659886599,8.732190115543318],[106.63126631266312,8.754141620051797],[106.66006660066603,8.765961660940974],[106.66366663666639,8.764273083671085],[106.66726667266676,8.762584506401211],[106.66726667266676,8.759207351861448],[106.66726667266676,8.754141620051797],[106.66726667266676,8.752453042781909],[106.65646656466566,8.754141620051797],[106.66006660066603,8.747387310972272],[106.66006660066603,8.744010156432495],[106.66366663666639,8.740633001892732]]],[[[79.71379713797137,9.074971301329512],[79.70299702997033,9.080037033139163],[79.69939699396997,9.090168496758452],[79.69939699396997,9.098611383107865],[79.71379713797137,9.103677114917517],[79.76059760597605,9.103677114917517],[79.77859778597787,9.098611383107865],[79.80019800198005,9.093545651298214],[79.84339843398436,9.076659878599386],[79.88299882998831,9.053019796821033],[79.91539915399153,9.020936828693266],[79.90099900999013,9.024313983233029],[79.87219872198722,9.037822601392094],[79.85419854198545,9.041199755931856],[79.87939879398795,9.012493942343852],[79.90099900999013,8.988853860565484],[79.9081990819908,8.973656665136545],[79.88659886598867,8.977033819676308],[79.86859868598685,8.988853860565484],[79.85779857798576,9.000673901454675],[79.85059850598509,9.0074282105342],[79.839798397984,9.012493942343852],[79.80019800198005,9.04964264228127],[79.77859778597787,9.058085528630684],[79.76059760597605,9.066528414980098],[79.74259742597428,9.07159414678975],[79.73539735397355,9.073282724059624],[79.71379713797137,9.074971301329512]]],[[[98.29718297182973,9.145891546664586],[98.30798307983082,9.132382928505521],[98.31878318783191,9.117185733076582],[98.32238322383228,9.098611383107865],[98.32238322383228,9.076659878599386],[98.30078300783009,9.054708374090922],[98.30798307983082,9.04964264228127],[98.29358293582936,9.041199755931856],[98.27558275582754,9.036134024122205],[98.25398253982542,9.036134024122205],[98.23958239582396,9.04964264228127],[98.23958239582396,9.063151260440335],[98.24678246782469,9.144202969394698],[98.24678246782469,9.149268701204349],[98.25038250382505,9.154334433014],[98.26118261182614,9.157711587553763],[98.27198271982724,9.159400164823637],[98.28278282782827,9.156023010283874],[98.29718297182973,9.145891546664586]]],[[[92.81072810728108,9.2320089874286],[92.83232832328326,9.201614596570707],[92.83232832328326,9.144202969394698],[92.79992799927999,9.110431423997042],[92.73152731527318,9.130694351235633],[92.72072720727209,9.14758012393446],[92.709927099271,9.17459736025259],[92.709927099271,9.201614596570707],[92.71352713527136,9.213434637459883],[92.72792727927282,9.218500369269535],[92.74592745927458,9.228631832888837],[92.75312753127531,9.243829028317776],[92.74952749527495,9.260714801016604],[92.7639276392764,9.264091955556367],[92.77112771127713,9.259026223746716],[92.79632796327962,9.240451873778014],[92.81072810728108,9.2320089874286]]],[[[79.89739897398977,9.61700460496185],[79.87939879398795,9.62882464585104],[79.86499864998649,9.650776150359505],[79.839798397984,9.6997448911861],[79.85059850598509,9.716630663884928],[79.85419854198545,9.738582168393407],[79.86139861398613,9.755467941092235],[79.88299882998831,9.760533672901886],[79.8937989379894,9.757156518362123],[79.8937989379894,9.74871363201271],[79.89019890198904,9.736893591123533],[79.89019890198904,9.723384972964467],[79.89019890198904,9.709876354805402],[79.89019890198904,9.6997448911861],[79.89019890198904,9.698056313916226],[79.89019890198904,9.696367736646337],[79.8937989379894,9.687924850296923],[79.90099900999013,9.682859118487286],[79.9045990459905,9.67948196394751],[79.9081990819908,9.677793386677635],[79.92619926199262,9.67948196394751],[79.92979929799299,9.676104809407747],[79.92979929799299,9.660907613978807],[79.93339933399335,9.654153304899268],[79.94419944199444,9.647398995819742],[79.9621996219962,9.640644686740217],[79.9729997299973,9.633890377660677],[79.9729997299973,9.632201800390803],[79.97659976599766,9.623758914041389],[79.96939969399693,9.61700460496185],[79.95859958599584,9.61700460496185],[79.94419944199444,9.6220703367715],[79.93339933399335,9.627136068581152],[79.92619926199262,9.62882464585104],[79.9081990819908,9.618693182231738],[79.89739897398977,9.61700460496185]]],[[[100.03600036000358,9.795993795569416],[100.06840068400686,9.775730868330825],[100.07920079200795,9.74195932293317],[100.09000090000899,9.665973345788458],[100.07920079200795,9.674416232137872],[100.0540005400054,9.687924850296923],[100,9.709876354805402],[99.98919989199891,9.720007818424705],[99.99279992799927,9.731827859313881],[99.98919989199891,9.743647900203058],[99.97119971199714,9.763910827441649],[99.97119971199714,9.770665136521174],[99.98199981999824,9.792616641029653],[99.98919989199891,9.801059527379067],[99.99639996399964,9.797682372839304],[100.00720007200073,9.795993795569416],[100.02520025200255,9.797682372839304],[100.03600036000358,9.795993795569416]]],[[[98.52758527585274,10.974620729947546],[98.52038520385207,10.971243575407783],[98.51318513185134,10.964489266328243],[98.50958509585098,10.95604637997883],[98.50958509585098,10.945914916359541],[98.48438484384843,10.95604637997883],[98.4771847718477,10.972932152677657],[98.4771847718477,10.993195079916248],[98.4879848798488,11.008392275345201],[98.50238502385025,11.021900893504267],[98.50958509585098,11.026966625313904],[98.51318513185134,11.035409511663318],[98.51678516785171,11.04554097528262],[98.51318513185134,11.062426747981448],[98.51318513185134,11.069181057060973],[98.52398523985244,11.086066829759801],[98.53118531185311,11.084378252489927],[98.53838538385384,11.069181057060973],[98.54558545585456,11.032032357123555],[98.54558545585456,11.015146584424727],[98.5419854198542,10.988129348106611],[98.5419854198542,10.959423534518606],[98.5419854198542,10.954357802708955],[98.53478534785347,10.950980648169192],[98.53118531185311,10.957734957248718],[98.52758527585274,10.966177843598132],[98.52758527585274,10.974620729947546]]],[[[103.03843038430387,11.357927770210921],[103.04203042030423,11.346107729321744],[103.0456304563046,11.33766484297233],[103.04923049230496,11.33091053389279],[103.04203042030423,11.324156224813265],[103.04923049230496,11.3106476066542],[103.04923049230496,11.292073256685498],[103.04203042030423,11.273498906716782],[103.03843038430387,11.261678865827605],[103.02403024030241,11.254924556748065],[103.00603006030059,11.254924556748065],[102.99882998829992,11.259990288557717],[103.00243002430028,11.26843317490713],[102.99162991629919,11.280253215796307],[102.98802988029882,11.300516143034912],[102.98802988029882,11.33766484297233],[102.9808298082981,11.379879274719386],[102.9808298082981,11.405207933767628],[102.98802988029882,11.425470861006218],[102.99162991629919,11.422093706466455],[102.99522995229955,11.417027974656818],[102.99522995229955,11.411962242847167],[103.00603006030059,11.422093706466455],[103.01683016830168,11.423782283736344],[103.02403024030241,11.417027974656818],[103.03843038430387,11.391699315608577],[103.03843038430387,11.381567851989274],[103.0348303483035,11.371436388369972],[103.03843038430387,11.357927770210921]]],[[[92.67752677526778,11.411962242847167],[92.68472684726851,11.40014220195799],[92.69552695526954,11.391699315608577],[92.6991269912699,11.384945006529037],[92.68112681126814,11.371436388369972],[92.67392673926742,11.368059233830209],[92.6451264512645,11.359616347480795],[92.63432634326347,11.357927770210921],[92.61992619926201,11.361304924750684],[92.60912609126092,11.366370656560335],[92.60552605526055,11.37312496563986],[92.59472594725946,11.378190697449512],[92.59832598325983,11.401830779227865],[92.60192601926019,11.406896511037516],[92.60912609126092,11.411962242847167],[92.62352623526237,11.411962242847167],[92.6307263072631,11.417027974656818],[92.63792637926377,11.43053659281587],[92.63432634326347,11.447422365514697],[92.62712627126274,11.47781675637259],[92.63432634326347,11.508211147230483],[92.6559265592656,11.508211147230483],[92.67392673926742,11.489636797261767],[92.68832688326881,11.467685292753288],[92.69552695526954,11.454176674594237],[92.68832688326881,11.442356633705046],[92.68112681126814,11.428848015545995],[92.67752677526778,11.411962242847167]]],[[[102.56322563225632,11.70746326507664],[102.58842588425887,11.710840419616403],[102.60642606426063,11.683823183298273],[102.60642606426063,11.648363060630743],[102.59202592025923,11.61796866977285],[102.59202592025923,11.611214360693324],[102.60642606426063,11.611214360693324],[102.5956259562596,11.59770574253426],[102.5956259562596,11.589262856184845],[102.59922599225996,11.563934197136604],[102.59202592025923,11.563934197136604],[102.5848258482585,11.568999928946255],[102.57762577625778,11.584197124375194],[102.57042570425705,11.590951433454734],[102.56322563225632,11.59601716526437],[102.5308253082531,11.604460051613785],[102.53802538025383,11.616280092502976],[102.54162541625419,11.621345824312613],[102.54522545225456,11.626411556122264],[102.54522545225456,11.63823159701144],[102.54162541625419,11.648363060630743],[102.5308253082531,11.670314565139222],[102.5308253082531,11.68044602875851],[102.54882548825492,11.753054851363473],[102.55602556025559,11.759809160442998],[102.56322563225632,11.754743428633347],[102.56682566825668,11.744611965014059],[102.57042570425705,11.732791924124882],[102.57042570425705,11.720971883235691],[102.56322563225632,11.70746326507664]]],[[[98.05598055980562,11.7007089559971],[98.06318063180635,11.697331801457338],[98.06678066780671,11.690577492377813],[98.06678066780671,11.682134606028399],[98.06318063180635,11.673691719678985],[98.07758077580775,11.653428792440394],[98.08478084780847,11.64498590609098],[98.08838088380884,11.631477287931915],[98.06678066780671,11.646674483360854],[98.05598055980562,11.653428792440394],[98.05598055980562,11.66018310151992],[98.04878048780489,11.66524883332957],[98.03438034380343,11.68720033783805],[98.01638016380167,11.697331801457338],[98.0127801278013,11.704086110536863],[98.02358023580234,11.70746326507664],[98.0271802718027,11.717594728695929],[98.0271802718027,11.736169078664645],[98.02358023580234,11.756432005903235],[98.00558005580058,11.761497737712887],[98.0127801278013,11.786826396761128],[97.99837998379985,11.842549446667249],[98.0127801278013,11.864500951175728],[98.0127801278013,11.82735225123831],[98.0127801278013,11.817220787619007],[98.01998019980203,11.810466478539482],[98.04518045180453,11.788514974031003],[98.05238052380525,11.776694933141826],[98.05238052380525,11.74967769682371],[98.05958059580598,11.729414769585105],[98.08118081180811,11.734480501394756],[98.08118081180811,11.72266046050558],[98.07398073980738,11.712528996886277],[98.06678066780671,11.705774687806752],[98.05598055980562,11.7007089559971]]],[[[93.0411304113041,11.960749855559044],[93.04833048330482,11.95230696920963],[93.06633066330664,11.898272496573384],[93.04833048330482,11.896583919303495],[93.03393033930342,11.911781114732449],[93.0267302673027,11.93204404197104],[93.02313023130233,11.940486928320453],[93.0159301593016,11.94555266013009],[93.00153001530015,11.948929814669867],[92.99072990729906,11.953995546479504],[92.97992979929802,11.964127010098807],[92.97272972729729,11.97256989644822],[92.96912969129693,11.979324205527746],[92.95472954729547,11.981012782797634],[92.94752947529474,11.989455669147048],[92.95832958329584,12.00803001911575],[92.97272972729729,12.028292946354355],[92.97992979929802,12.036735832703755],[93.0159301593016,12.036735832703755],[93.0267302673027,12.031670100894118],[93.01953019530197,12.016472905465164],[93.0411304113041,11.969192741908458],[93.0411304113041,11.960749855559044]]],[[[92.73152731527318,12.972207640218784],[92.73872738727385,12.962076176599481],[92.73152731527318,12.945190403900654],[92.73152731527318,12.89453308580417],[92.72432724327246,12.872581581295691],[92.71712717127173,12.862450117676403],[92.70272702727027,12.843875767707686],[92.69552695526954,12.83881003589805],[92.69552695526954,12.825301417738984],[92.69552695526954,12.813481376849808],[92.69552695526954,12.803349913230505],[92.68112681126814,12.79659560415098],[92.67032670326705,12.867515849486054],[92.67392673926742,12.87933589037523],[92.67752677526778,12.891155931264407],[92.68472684726851,12.945190403900654],[92.68112681126814,12.962076176599481],[92.69552695526954,12.973896217488658],[92.70272702727027,12.982339103838072],[92.709927099271,12.989093412917597],[92.71712717127173,12.989093412917597],[92.72072720727209,12.985716258377835],[92.72792727927282,12.982339103838072],[92.73152731527318,12.97727337202842],[92.73152731527318,12.972207640218784]]],[[[94.82674826748269,15.932283594323152],[94.83034830348305,15.917086398894199],[94.84114841148414,15.890069162576083],[94.84114841148414,15.878249121686906],[94.83754837548378,15.864740503527841],[94.81954819548196,15.834346112669948],[94.8051480514805,15.79719741273253],[94.77634776347765,15.792131680922878],[94.74754747547479,15.798885990002418],[94.7259472594726,15.812394608161469],[94.7259472594726,15.819148917241009],[94.74394743947443,15.832657535400074],[94.75834758347582,15.852920462638664],[94.77994779947801,15.893446317115846],[94.8051480514805,15.930595017053264],[94.82314823148232,15.945792212482203],[94.82674826748269,15.932283594323152]]],[[[106.840068400684,20.879814995079457],[106.84726847268473,20.86630637692039],[106.88326883268832,20.82071479063356],[106.88686886868868,20.795386131585317],[106.87246872468728,20.790320399775666],[106.85446854468546,20.793697554315443],[106.84726847268473,20.797074708855206],[106.84366843668437,20.813960481554034],[106.82206822068224,20.852797758761326],[106.81846818468188,20.876437840539694],[106.81486814868151,20.86799495419028],[106.81126811268115,20.859552067840866],[106.81486814868151,20.851109181491452],[106.81846818468188,20.84266629514204],[106.81126811268115,20.84266629514204],[106.80046800468006,20.849420604221564],[106.78246782467824,20.852797758761326],[106.7716677166772,20.857863490570978],[106.76446764467647,20.876437840539694],[106.77526775267756,20.9051436541277],[106.7860678606786,20.93047231317594],[106.8256682566826,20.915275117746987],[106.83646836468364,20.901766499587936],[106.840068400684,20.879814995079457]]],[[[107.53127531275311,21.019966908479716],[107.54567545675457,21.035164103908656],[107.5528755287553,21.038541258448433],[107.56007560075602,21.035164103908656],[107.5528755287553,21.021655485749605],[107.53847538475384,20.98619536308206],[107.5276752767528,20.95073524041453],[107.52047520475207,20.937226622255466],[107.51327513275135,20.9237180040964],[107.49887498874989,20.916963695016875],[107.48087480874807,20.911897963207224],[107.45567455674558,20.91020938593735],[107.41247412474127,20.900077922318047],[107.39447394473945,20.896700767778285],[107.39447394473945,20.90345507685781],[107.42327423274236,20.915275117746987],[107.45207452074521,20.93047231317594],[107.4736747367474,20.947358085874768],[107.49167491674916,20.964243858573596],[107.4880748807488,20.976063899462773],[107.49167491674916,20.991261094891712],[107.50607506075062,21.019966908479716],[107.50967509675098,21.016589753939954],[107.52047520475207,21.01321259940019],[107.52407524075244,21.021655485749605],[107.53127531275311,21.040229835718307],[107.53127531275311,21.019966908479716]]],[[[91.8891188911889,21.865944120690955],[91.88551885518854,21.850746925262],[91.87111871118714,21.82541826621376],[91.86391863918641,21.78995814354623],[91.84231842318422,21.735923670909983],[91.83151831518319,21.72579220729068],[91.82431824318246,21.74267797998951],[91.83871838718386,21.82541826621376],[91.83151831518319,21.876075584310243],[91.8351183511835,21.89464993427896],[91.84231842318422,21.906469975168136],[91.86751867518677,21.931798634216378],[91.87111871118714,21.928421479676615],[91.87111871118714,21.925044325136838],[91.8747187471875,21.918290016057313],[91.88551885518854,21.879452738850006],[91.8891188911889,21.865944120690955]]],[[[90.6687066870669,22.953387882495406],[90.63990639906399,22.95169930522553],[90.63270632706326,22.953387882495406],[90.64350643506435,22.94663357341588],[90.65430654306545,22.936502109796578],[90.66150661506617,22.928059223447164],[90.6687066870669,22.917927759827876],[90.63630636306362,22.92130491436764],[90.62550625506253,22.9246820689074],[90.61830618306186,22.933124955256815],[90.60750607506077,22.953387882495406],[90.60030600306004,22.958453614305057],[90.58950589505895,22.96183076884482],[90.58590585905858,22.960142191574946],[90.58230582305822,22.95676503703517],[90.57150571505719,22.953387882495406],[90.5607056070561,22.95169930522553],[90.53550535505354,22.95169930522553],[90.52470524705245,22.953387882495406],[90.50670506705069,22.975339387003885],[90.52830528305282,23.007422355131652],[90.5607056070561,23.032751014179894],[90.58590585905858,23.034439591449782],[90.60750607506077,23.017553818750955],[90.64710647106472,22.975339387003885],[90.6687066870669,22.958453614305057],[90.6687066870669,22.953387882495406]]],[[[118.09378093780941,24.555847711614092],[118.11178111781118,24.54571624799479],[118.13698136981372,24.537273361645376],[118.16218162181622,24.532207629835725],[118.18018180181804,24.5355847843755],[118.1837818378184,24.522076166216436],[118.19098190981913,24.50350181624772],[118.18738187381877,24.493370352628432],[118.18018180181804,24.48323888900913],[118.17298172981731,24.47817315719948],[118.16218162181622,24.471418848119953],[118.16218162181622,24.456221652691013],[118.15498154981549,24.437647302722297],[118.13698136981372,24.429204416372883],[118.11538115381154,24.43089299364277],[118.09378093780941,24.437647302722297],[118.07938079380796,24.444401611801837],[118.07218072180723,24.45284449815125],[118.06858068580686,24.459598807230776],[118.07218072180723,24.46804169358019],[118.08298082980832,24.47310742538984],[118.09378093780941,24.474796002659716],[118.10458104581045,24.479861734469367],[118.10458104581045,24.493370352628432],[118.08298082980832,24.481550311739255],[118.07578075780759,24.48323888900913],[118.07218072180723,24.498436084438083],[118.07578075780759,24.511944702597134],[118.09018090180905,24.538961938915264],[118.09378093780941,24.555847711614092]]],[[[142.19242192421927,26.64630637172887],[142.18162181621818,26.64461779445898],[142.17442174421745,26.637863485379455],[142.17442174421745,26.62942059903004],[142.18162181621818,26.619289135410753],[142.160021600216,26.632797753569804],[142.13842138421387,26.663192144427697],[142.10962109621096,26.720603771603706],[142.1168211682117,26.722292348873594],[142.12402124021241,26.720603771603706],[142.13122131221314,26.715538039794055],[142.1348213482135,26.70709515344464],[142.14202142021423,26.702029421635004],[142.15282152821527,26.700340844365115],[142.16722167221673,26.702029421635004],[142.16722167221673,26.695275112555464],[142.15282152821527,26.68683222620605],[142.15642156421563,26.678389339856636],[142.16722167221673,26.675012185316874],[142.18162181621818,26.673323608047],[142.18162181621818,26.66656929896746],[142.17442174421745,26.663192144427697],[142.17442174421745,26.66150356715781],[142.17442174421745,26.659814989887934],[142.17442174421745,26.653060680808395],[142.18162181621818,26.65643783534817],[142.18522185221855,26.658126412618046],[142.1888218882189,26.654749258078283],[142.19242192421927,26.64630637172887]]],[[[129.29709297092973,28.118745751066584],[129.32589325893258,28.123811482876235],[129.34749347493477,28.106925710177407],[129.35109351093513,28.086662782938816],[129.32229322293222,28.078219896589403],[129.30789307893082,28.093417092018342],[129.30429304293045,28.096794246558105],[129.3006930069301,28.100171401097867],[129.29349293492936,28.098482823827993],[129.289892898929,28.09510566928823],[129.289892898929,28.093417092018342],[129.289892898929,28.08835136020869],[129.28629286292863,28.081597051129165],[129.2790927909279,28.076531319319514],[129.27549275492754,28.081597051129165],[129.27189271892718,28.08328562839904],[129.2646926469265,28.096794246558105],[129.2646926469265,28.098482823827993],[129.25029250292505,28.100171401097867],[129.23229232292323,28.096794246558105],[129.22149221492214,28.098482823827993],[129.21789217892177,28.106925710177407],[129.21429214292147,28.13056579195576],[129.21429214292147,28.140697255575063],[129.18549185491855,28.17446880097272],[129.1818918189182,28.189665996401658],[129.19629196291964,28.19473172821131],[129.22869228692286,28.19473172821131],[129.22149221492214,28.176157378242593],[129.23229232292323,28.17109164643294],[129.2682926829268,28.17446880097272],[129.2646926469265,28.16771449189318],[129.25749257492578,28.159271605543765],[129.25029250292505,28.15082871919435],[129.25029250292505,28.144074410114825],[129.2646926469265,28.133942946495523],[129.28629286292863,28.12550006014611],[129.29709297092973,28.118745751066584]]],[[[122.14382143821439,29.733025621074447],[122.17622176221761,29.697565498406902],[122.1870218702187,29.67392541662855],[122.16182161821621,29.655351066659833],[122.16902169021694,29.675613993898438],[122.16542165421657,29.67392541662855],[122.15102151021512,29.668859684818898],[122.15102151021512,29.682368302977963],[122.14022140221402,29.67223683935866],[122.1330213302133,29.668859684818898],[122.12582125821257,29.668859684818898],[122.12582125821257,29.67392541662855],[122.12222122221226,29.685745457517726],[122.12222122221226,29.69249976659725],[122.11502115021153,29.697565498406902],[122.1078210782108,29.704319807486442],[122.10422104221044,29.711074116565968],[122.10062100621008,29.71951700291538],[122.09342093420935,29.726271311994907],[122.07542075420753,29.724582734725033],[122.05742057420576,29.71951700291538],[122.0538205382054,29.71613984837562],[122.04662046620467,29.717828425645493],[122.03942039420394,29.71613984837562],[122.03582035820358,29.717828425645493],[122.03222032220322,29.722894157455144],[122.03222032220322,29.731337043804558],[122.03582035820358,29.739779930153972],[122.03942039420394,29.748222816503386],[122.04302043020431,29.75159997104315],[122.05022050220504,29.7566657028528],[122.05742057420576,29.768485743741977],[122.06822068220686,29.780305784631153],[122.08622086220862,29.785371516440804],[122.09702097020971,29.787060093710693],[122.1078210782108,29.790437248250456],[122.11502115021153,29.788748670980567],[122.12222122221226,29.77861720736128],[122.12222122221226,29.770174321011865],[122.12222122221226,29.75835428012269],[122.12222122221226,29.75159997104315],[122.12582125821257,29.744845661963623],[122.14022140221402,29.73471419834432],[122.14382143821439,29.733025621074447]]],[[[122.39582395823959,29.88330899809401],[122.39222392223922,29.87655468901447],[122.3850238502385,29.871488957204818],[122.38142381423813,29.864734648125292],[122.3850238502385,29.85629176177588],[122.39582395823959,29.847848875426465],[122.39582395823959,29.842783143616813],[122.39582395823959,29.832651679997525],[122.3850238502385,29.836028834537288],[122.37782377823777,29.83940598907705],[122.36702367023673,29.849537452696353],[122.35622356223564,29.86135749358553],[122.359823598236,29.869800379934944],[122.36702367023673,29.87655468901447],[122.3706237062371,29.88330899809401],[122.36702367023673,29.895129038983185],[122.36342363423637,29.905260502602474],[122.35262352623528,29.910326234412125],[122.33462334623346,29.920457698031427],[122.32382323823242,29.927212007110953],[122.32022320223206,29.937343470730255],[122.32382323823242,29.94916351161943],[122.32382323823242,29.954229243429083],[122.33102331023309,29.957606397968846],[122.33462334623346,29.96098355250861],[122.34182341823418,29.962672129778497],[122.34542345423455,29.94916351161943],[122.359823598236,29.94578635707967],[122.38862388623886,29.94916351161943],[122.39942399423995,29.952540666159194],[122.40662406624068,29.952540666159194],[122.41022410224105,29.94578635707967],[122.41022410224105,29.937343470730255],[122.40662406624068,29.930589161650715],[122.40302403024032,29.925523429841064],[122.39582395823959,29.9221462753013],[122.41022410224105,29.912014811682013],[122.40662406624068,29.900194770792837],[122.39582395823959,29.88330899809401]]],[[[139.7911979119791,33.135508819888074],[139.8127981279813,33.1236887789989],[139.8379983799838,33.11693446991937],[139.86319863198634,33.10680300630007],[139.8775987759878,33.08822865633137],[139.87039870398706,33.0747200381723],[139.84519845198452,33.0460142245843],[139.83439834398342,33.03925991550477],[139.81999819998202,33.040948492774646],[139.8019980199802,33.047702801854186],[139.78759787597875,33.057834265473474],[139.7767977679777,33.07978576998195],[139.74439744397444,33.11862304718926],[139.74079740797407,33.1338202426182],[139.75159751597516,33.145640283507376],[139.76599765997662,33.15070601531703],[139.7911979119791,33.135508819888074]]],[[[132.55512555125551,34.0709806274031],[132.5335253352534,34.08280066829228],[132.47952479524798,34.08111209102239],[132.45432454324543,34.087866400101916],[132.47232472324725,34.104752172800744],[132.49752497524975,34.116572213689935],[132.50832508325084,34.131769409118874],[132.49752497524975,34.157098068167116],[132.50832508325084,34.167229531786404],[132.51912519125193,34.173983840865944],[132.5335253352534,34.17736099540571],[132.54432544325442,34.17736099540571],[132.55152551525515,34.17060668632618],[132.5479254792548,34.16554095451653],[132.5479254792548,34.16216379997677],[132.54432544325442,34.15878664543699],[132.53712537125375,34.157098068167116],[132.5479254792548,34.14527802727794],[132.5479254792548,34.13345798638875],[132.5479254792548,34.12163794549957],[132.55152551525515,34.10812932734052],[132.5767257672577,34.11826079095981],[132.58032580325806,34.09968644099111],[132.56952569525697,34.07604635921274],[132.55512555125551,34.0709806274031]]],[[[127.78147781477816,34.683934176370514],[127.79227792277925,34.68224559910064],[127.80307803078034,34.67042555821145],[127.81027810278101,34.65522836278251],[127.81747817478174,34.631588281004156],[127.81747817478174,34.6163910855752],[127.81387813878138,34.60119389014626],[127.8066780667807,34.5876852719872],[127.79947799477998,34.579242385637784],[127.78507785077852,34.579242385637784],[127.77427774277743,34.584308117447435],[127.73827738277384,34.61301393103544],[127.73467734677348,34.624833971924616],[127.74187741877421,34.64340832189333],[127.74547745477457,34.648474053702984],[127.76347763477634,34.66029409459216],[127.7670776707767,34.66535982640181],[127.77427774277743,34.69068848545004],[127.75987759877597,34.704197103609104],[127.76347763477634,34.71263998995852],[127.77427774277743,34.71770572176817],[127.78507785077852,34.71770572176817],[127.79587795877961,34.71432856722841],[127.79947799477998,34.704197103609104],[127.79587795877961,34.694065639989816],[127.78147781477816,34.683934176370514]]],[[[139.4167941679417,34.78018308075383],[139.43839438394383,34.771740194404416],[139.44919449194492,34.756542998975476],[139.45639456394565,34.73796864900676],[139.45999459994601,34.71432856722841],[139.45639456394565,34.69068848545004],[139.4527945279453,34.67886844456086],[139.4419944199442,34.67717986729099],[139.42039420394207,34.67717986729099],[139.35919359193593,34.70250852633923],[139.3519935199352,34.71939429903806],[139.3519935199352,34.766674462594764],[139.35559355593557,34.79706885345266],[139.40239402394025,34.78862596710324],[139.4167941679417,34.78018308075383]]],[[[128.749887498875,34.869677676057606],[128.74628746287465,34.85785763516843],[128.74268742687428,34.84434901700938],[128.73548735487356,34.83759470792984],[128.7210872108721,34.84266043973949],[128.72468724687246,34.829151821580425],[128.73908739087392,34.80551173980207],[128.74268742687428,34.79031454437313],[128.73548735487356,34.78862596710324],[128.71748717487174,34.793691698912895],[128.69948699486997,34.80213458526231],[128.68508685086852,34.808888894341834],[128.68148681486815,34.793691698912895],[128.68148681486815,34.786937389833355],[128.6634866348664,34.77005161713453],[128.65628656286566,34.756542998975476],[128.67068670686706,34.74978868989594],[128.68508685086852,34.74303438081641],[128.69228692286924,34.736280071736886],[128.6778867788678,34.724460030847695],[128.60588605886062,34.70588568087899],[128.58428584285843,34.70588568087899],[128.61668616686165,34.72614860811758],[128.60228602286026,34.731214339927234],[128.5986859868599,34.73965722627665],[128.5986859868599,34.751477267165825],[128.60588605886062,34.766674462594764],[128.57348573485734,34.7531658444357],[128.5626856268563,34.75823157624535],[128.55908559085594,34.77005161713453],[128.55908559085594,34.78187165802372],[128.56628566285661,34.786937389833355],[128.59148591485916,34.792003121643006],[128.5986859868599,34.80213458526231],[128.5986859868599,34.81733178069125],[128.60588605886062,34.835906130659964],[128.59148591485916,34.84266043973949],[128.58068580685807,34.83252897612019],[128.5446854468545,34.819020357961136],[128.53028530285303,34.808888894341834],[128.51588515885157,34.8223975125009],[128.50148501485018,34.835906130659964],[128.49068490684908,34.849414748819015],[128.48708487084872,34.869677676057606],[128.49428494284945,34.87980913967691],[128.5086850868509,34.891629180566085],[128.5230852308523,34.898383489645624],[128.53748537485376,34.90344922145526],[128.57348573485734,34.9102035305348],[128.58428584285843,34.9102035305348],[128.5986859868599,34.90344922145526],[128.61308613086135,34.896694912375736],[128.62748627486275,34.891629180566085],[128.64548645486457,34.88994060329621],[128.64548645486457,34.896694912375736],[128.62748627486275,34.90682637599504],[128.61668616686165,34.92202357142398],[128.61308613086135,34.938909344122806],[128.60948609486098,34.954106539551745],[128.62388623886238,34.954106539551745],[128.69228692286924,34.98618950767951],[128.68148681486815,35.00476385764823],[128.68868688686888,35.02333820761693],[128.70308703087034,35.03346967123623],[128.7210872108721,35.02671536215671],[128.72468724687246,35.018272475807294],[128.72468724687246,35.00982958945788],[128.71748717487174,34.97268088952046],[128.71748717487174,34.96592658044092],[128.72468724687246,34.954106539551745],[128.72828728287283,34.94566365320233],[128.73548735487356,34.93553218958304],[128.73548735487356,34.92202357142398],[128.7318873188732,34.9102035305348],[128.71388713887143,34.876431985137145],[128.73548735487356,34.8814977169468],[128.74268742687428,34.88825202602632],[128.74628746287465,34.886563448756434],[128.749887498875,34.869677676057606]]],[[[130.90270902709028,37.54607264882169],[130.9207092070921,37.53594118520239],[130.9207092070921,37.51061252615415],[130.909909099091,37.48190671256614],[130.89550895508955,37.46333236259744],[130.8775087750878,37.45488947624803],[130.85230852308524,37.45995520805768],[130.82710827108275,37.471775248946855],[130.8127081270813,37.486972444375795],[130.80550805508057,37.507235371614385],[130.8127081270813,37.522432567043325],[130.83070830708306,37.53256403066263],[130.8667086670867,37.53762976247228],[130.8919089190892,37.544384071551804],[130.90270902709028,37.54607264882169]]],[[[124.73224732247326,37.98003700718154],[124.74304743047429,37.96990554356225],[124.74304743047429,37.95470834813331],[124.72864728647289,37.946265461783895],[124.70704707047071,37.95639692540318],[124.68184681846822,37.95470834813331],[124.67824678246785,37.95301977086342],[124.67824678246785,37.941199729974244],[124.68904689046889,37.93782257543448],[124.69984699846998,37.93613399816459],[124.70704707047071,37.93275684362483],[124.68544685446858,37.919248225465765],[124.64584645846458,37.924313957275416],[124.61344613446136,37.94457688451401],[124.62424624246245,37.98003700718154],[124.64944649446494,37.97328269810201],[124.70344703447034,37.98847989353095],[124.73224732247326,37.98003700718154]]],[[[153.02133021330212,47.79911383154945],[153.05013050130503,47.80755671789885],[153.06093060930613,47.7940480997398],[153.0645306453065,47.78053948158072],[153.0681306813068,47.761965131612016],[153.0681306813068,47.74339078164331],[153.06093060930613,47.721439277134834],[153.04653046530467,47.70624208170588],[153.02853028530285,47.69779919535648],[153.0105301053011,47.69779919535648],[152.99252992529927,47.69779919535648],[152.9781297812978,47.6842905771974],[152.96732967329672,47.69611061808658],[152.96732967329672,47.71637354532518],[152.97092970929708,47.734947895293885],[152.97092970929708,47.75183366799271],[152.98172981729817,47.770408017961415],[153.00333003330036,47.78560521339037],[153.02133021330212,47.79911383154945]]],[[[178.53478534785347,51.98678546085853],[178.57438574385748,51.97496541996935],[178.58878588785888,51.968211110889825],[178.60318603186033,51.95301391546087],[178.60318603186033,51.93781672003192],[178.5959859598596,51.92937383368252],[178.58158581585815,51.92261952460299],[178.56718567185675,51.91248806098369],[178.57438574385748,51.905733751904165],[178.55998559985602,51.900668020094514],[178.53838538385384,51.89729086555474],[178.5167851678517,51.89560228828486],[178.50238502385025,51.90235659736439],[178.46998469984703,51.92599667914274],[178.4627846278463,51.93275098822227],[178.45918459184594,51.94457102911147],[178.4627846278463,51.951325338191],[178.46998469984703,51.9614568018103],[178.4735847358474,51.976653997239225],[178.4771847718477,51.98509688358865],[178.49158491584916,51.9884740381284],[178.50598505985062,51.990162615398305],[178.52038520385207,51.99353976993805],[178.52398523985244,51.990162615398305],[178.52758527585274,51.9884740381284],[178.53478534785347,51.98678546085853]]],[[[-160.32580325803258,55.358874268814276],[-160.3330033300333,55.35211995973475],[-160.32580325803258,55.31328268252744],[-160.32220322203221,55.29470833255874],[-160.32580325803258,55.27613398259001],[-160.33660336603367,55.24911674627191],[-160.34740347403473,55.25080532354178],[-160.3618036180362,55.255871055351435],[-160.37620376203762,55.260936787161086],[-160.40140401404014,55.28626544620931],[-160.49860498604986,55.30146264163827],[-160.5310053100531,55.32510272341662],[-160.520205202052,55.326791300686494],[-160.50940509405095,55.331857032496146],[-160.50580505805058,55.33861134157567],[-160.50940509405095,55.345365650655225],[-160.4878048780488,55.353808537004625],[-160.46260462604627,55.350431382464876],[-160.43740437404375,55.345365650655225],[-160.41580415804157,55.345365650655225],[-160.3690036900369,55.367317155163704],[-160.34380343803437,55.37069430970345],[-160.32580325803258,55.358874268814276]]],[[[18.48438484384843,59.09738434433456],[18.487984879848796,59.09569576706468],[18.49158491584916,59.08894145798516],[18.487984879848796,59.08556430344538],[18.48438484384843,59.08218714890563],[18.455584555845576,59.056858489857376],[18.437584375843755,59.05010418077785],[18.43398433984339,59.043349871698325],[18.430384303843056,59.038284139888674],[18.430384303843056,59.03152983080915],[18.42678426784269,59.0264640989995],[18.423184231842328,59.021398367189846],[18.419584195841963,59.016332635380195],[18.412384123841235,59.011266903570544],[18.405184051840536,59.007889749030795],[18.394383943839443,59.011266903570544],[18.39078390783908,59.011266903570544],[18.387183871838715,59.007889749030795],[18.37638376383765,59.00620117176089],[18.36558365583656,59.00957832630067],[18.354783547835495,59.016332635380195],[18.343983439834403,59.0264640989995],[18.34038340383404,59.03321840807902],[18.347583475834767,59.0365955626188],[18.354783547835495,59.0365955626188],[18.361983619836195,59.03997271715855],[18.35838358383586,59.0450384489682],[18.35118351183513,59.05348133531763],[18.35118351183513,59.056858489857376],[18.35838358383586,59.0551699125875],[18.36558365583656,59.05854706712728],[18.37638376383765,59.06361279893693],[18.379983799838016,59.070367108016455],[18.372783727837287,59.073744262556204],[18.37638376383765,59.078809994365855],[18.4159841598416,59.092318612524934],[18.43398433984339,59.10413865341411],[18.45198451984521,59.11258153976351],[18.46638466384664,59.11764727157316],[18.480784807848096,59.11595869430329],[18.48438484384843,59.105827230683985],[18.48438484384843,59.09738434433456]]],[[[18.657186571865736,59.506020043646174],[18.646386463864644,59.5043314663763],[18.639186391863916,59.49926573456665],[18.631986319863216,59.489134270947346],[18.624786247862488,59.48744569367747],[18.606786067860696,59.494200002757],[18.603186031860332,59.49251142548712],[18.603186031860332,59.48744569367747],[18.599585995859968,59.4857571164076],[18.595985959859604,59.48744569367747],[18.606786067860696,59.467182766438896],[18.603186031860332,59.45536272554969],[18.59238592385924,59.45198557100994],[18.581585815858176,59.45536272554969],[18.577985779857812,59.46380561189912],[18.581585815858176,59.43003406650146],[18.574385743857448,59.43172264377134],[18.563585635856356,59.42834548923159],[18.556385563855656,59.42159118015206],[18.549185491854928,59.42327975742194],[18.545585455854564,59.42834548923159],[18.5419854198542,59.43678837558099],[18.53478534785347,59.44691983920029],[18.527585275852772,59.45536272554969],[18.520385203852044,59.46380561189912],[18.51678516785168,59.47393707551842],[18.513185131851316,59.47900280732807],[18.50958509585095,59.48237996186782],[18.513185131851316,59.49082284821725],[18.523985239852408,59.4958885800269],[18.538385383853836,59.4958885800269],[18.549185491854928,59.49251142548712],[18.556385563855656,59.48237996186782],[18.556385563855656,59.48744569367747],[18.55998559985599,59.49082284821725],[18.563585635856356,59.49251142548712],[18.570785707857084,59.494200002757],[18.577985779857812,59.4958885800269],[18.570785707857084,59.4958885800269],[18.563585635856356,59.4958885800269],[18.55998559985599,59.497577157296774],[18.556385563855656,59.49926573456665],[18.549185491854928,59.49926573456665],[18.545585455854564,59.502642889106426],[18.552785527855292,59.50939719818595],[18.55998559985599,59.51784008453535],[18.581585815858176,59.529660125424556],[18.59238592385924,59.538103011773956],[18.610386103861032,59.54485732085348],[18.631986319863216,59.54992305266313],[18.653586535865372,59.54992305266313],[18.67518675186753,59.54485732085348],[18.685986859868592,59.53979158904383],[18.685986859868592,59.53472585723418],[18.689586895868956,59.533037279964304],[18.69318693186932,59.533037279964304],[18.739987399873996,59.53979158904383],[18.736387363873632,59.53472585723418],[18.682386823868256,59.52121723907513],[18.657186571865736,59.506020043646174]]],[[[20.608406084060846,60.04467619273876],[20.61200612006121,60.04298761546889],[20.619206192061938,60.04298761546889],[20.615606156061574,60.041299038198986],[20.60480604806048,60.03961046092911],[20.601206012060118,60.03961046092911],[20.608406084060846,60.03623330638936],[20.608406084060846,60.02947899730981],[20.60480604806048,60.022724688230284],[20.597605976059754,60.01597037915076],[20.58680586805869,60.00752749280136],[20.576005760057598,60.005838915531456],[20.550805508055078,60.019347533690535],[20.547205472054713,60.01597037915076],[20.540005400054014,60.00921607007123],[20.525605256052557,60.005838915531456],[20.51120511205113,60.005838915531456],[20.500405004050037,60.01259322461098],[20.5040050400504,60.024413265500186],[20.52920529205292,60.04805334727854],[20.543605436054378,60.05649623362794],[20.558005580055806,60.058184810897814],[20.568805688056898,60.05649623362794],[20.576005760057598,60.059873388167716],[20.583205832058326,60.059873388167716],[20.58680586805869,60.05649623362794],[20.58680586805869,60.05143050181829],[20.590405904059054,60.05143050181829],[20.597605976059754,60.05311907908819],[20.60480604806048,60.05143050181829],[20.608406084060846,60.04805334727854],[20.608406084060846,60.04467619273876]]],[[[20.424804248042477,60.054807656358065],[20.450004500044997,60.06493911997737],[20.46080460804609,60.06662769724724],[20.450004500044997,60.03961046092911],[20.432004320043205,60.024413265500186],[20.40320403204032,60.02103611096041],[20.388803888038893,60.027790420039935],[20.40320403204032,60.041299038198986],[20.424804248042477,60.054807656358065]]],[[[20.522005220052222,60.04805334727854],[20.518405184051858,60.04298761546889],[20.500405004050037,60.03623330638936],[20.47160471604718,60.041299038198986],[20.468004680046818,60.058184810897814],[20.489604896048974,60.06156196543759],[20.522005220052222,60.06493911997737],[20.525605256052557,60.06493911997737],[20.514805148051494,60.06662769724724],[20.518405184051858,60.07000485178702],[20.532805328053286,60.07338200632677],[20.543605436054378,60.07169342905689],[20.53640536405365,60.06493911997737],[20.525605256052557,60.05649623362794],[20.522005220052222,60.04805334727854]]],[[[42.644226442264426,66.74157364509355],[42.66582665826658,66.72299929512485],[42.669426694266946,66.70104779061637],[42.68022680226804,66.68247344064764],[42.669426694266946,66.66727624521872],[42.644226442264426,66.66558766794881],[42.58302583025832,66.67909628610789],[42.48222482224824,66.7078020996959],[42.442624426244265,66.72975360420438],[42.42822428224284,66.75170510871286],[42.45342453424536,66.7736566132213],[42.5038250382504,66.77872234503096],[42.53622536225362,66.77534519049121],[42.58302583025832,66.77027945868156],[42.629826298263,66.7550822632526],[42.644226442264426,66.74157364509355]]],[[[19.812798127981296,70.00221635323703],[19.83439834398345,69.9954620441575],[19.855998559985608,69.97351053964903],[19.83439834398345,69.94987045787067],[19.79119791197914,69.92454179882245],[19.75879758797589,69.89245883069466],[19.719197191971915,69.86544159437653],[19.675996759967603,69.85531013075723],[19.485194851948535,69.8384243580584],[19.434794347943495,69.8401129353283],[19.441994419944194,69.85868728529701],[19.510395103951055,69.89414740796454],[19.53199531995321,69.9194760670128],[19.54639546395464,69.92623037609232],[19.59679596795968,69.93467326244172],[19.693996939969395,69.96337907602972],[19.726397263972643,69.97857627145868],[19.7479974799748,69.9954620441575],[19.77319773197732,70.00559350777681],[19.801998019980203,70.00390493050693],[19.812798127981296,70.00221635323703]]],[[[160.72180721807217,70.83806210182897],[160.74340743407436,70.82624206093979],[160.76500765007654,70.80429055643131],[160.68220682206822,70.80260197916144],[160.5958059580596,70.79247051554213],[160.5058050580506,70.80429055643131],[160.50940509405098,70.83299637001932],[160.54540545405456,70.85157071998805],[160.5526055260553,70.8853422653857],[160.50220502205025,70.89040799719533],[160.48060480604806,70.87689937903627],[160.4518045180452,70.87183364722662],[160.4086040860409,70.9140480789737],[160.42660426604266,70.92755669713276],[160.45540455404557,70.93431100621228],[160.51660516605165,70.93599958348216],[160.5418054180542,70.93093385167253],[160.6750067500675,70.9140480789737],[160.69300693006932,70.89547372900498],[160.69660696606968,70.88703084265558],[160.70740707407077,70.87689937903627],[160.72180721807217,70.83806210182897]]],[[[76.69336693366932,73.1868730842358],[76.72216722167224,73.17505304334662],[76.73296732967333,73.16661015699722],[76.7365673656737,73.15479011610805],[76.72936729367296,73.14465865248874],[76.71136711367114,73.14128149794897],[76.69336693366932,73.14128149794897],[76.63216632166325,73.13115003432969],[76.31896318963192,73.14803580702849],[76.17136171361716,73.18180735242615],[76.14256142561425,73.1970045478551],[76.13176131761321,73.20882458874428],[76.14616146161461,73.2155788978238],[76.18576185761856,73.2172674750937],[76.5277652776528,73.19025023877558],[76.65736657366574,73.1970045478551],[76.69336693366932,73.1868730842358]]],[[[124.5846458464585,73.91633846482515],[124.63504635046354,73.90958415574559],[124.65664656646567,73.90282984666607],[124.66024660246603,73.89269838304676],[124.62784627846281,73.87243545580819],[124.51264512645128,73.84204106495031],[124.50544505445055,73.84204106495031],[124.48744487444878,73.85217252856958],[124.46224462244624,73.85723826037923],[124.43704437044374,73.85554968310936],[124.41544415444156,73.84879537402983],[124.39024390243901,73.84710679675993],[124.36864368643688,73.85386110583948],[124.35064350643506,73.86399256945876],[124.32904329043294,73.86736972399854],[124.31104311043111,73.86905830126841],[124.29664296642966,73.87243545580819],[124.28944289442893,73.88087834215759],[124.2930429304293,73.89607553758654],[124.31104311043111,73.90451842393597],[124.35784357843579,73.90451842393597],[124.37584375843761,73.91633846482515],[124.36144361443615,73.91464988755524],[124.3470434704347,73.91633846482515],[124.33624336243366,73.9197156193649],[124.3218432184322,73.92309277390467],[124.37944379443798,73.9399785466035],[124.57744577445777,73.9501100102228],[124.48744487444878,73.93491281479385],[124.45864458644587,73.92309277390467],[124.5846458464585,73.91633846482515]]],[[[82.5686256862569,74.16287074622801],[82.74142741427414,74.10208196451222],[82.71262712627129,74.0851961918134],[82.66582665826661,74.06831041911457],[82.61902619026193,74.05480180095552],[82.59382593825939,74.05649037822539],[82.55062550625507,74.07337615092422],[82.35262352623528,74.08013046000374],[82.33462334623346,74.0851961918134],[82.32022320223206,74.10208196451222],[82.3166231662317,74.11727915994118],[82.32382323823236,74.12741062356048],[82.33462334623346,74.13416493264],[82.34902349023491,74.14091924171953],[82.39942399423995,74.1527392826087],[82.45342453424536,74.16118216895813],[82.5686256862569,74.16287074622801]]],[[[116.09936099360993,74.35536855499464],[116.11736117361176,74.34017135956569],[116.12456124561248,74.32328558686686],[116.11736117361176,74.3080883914379],[116.0921609216092,74.29289119600898],[116.05256052560526,74.28444830965955],[116.00576005760058,74.28444830965955],[115.9589595895959,74.2895140414692],[115.91935919359196,74.2996455050885],[115.89775897758977,74.30133408235838],[115.89055890558905,74.30302265962828],[115.89055890558905,74.30639981416803],[115.88695886958868,74.32328558686686],[115.89775897758977,74.34185993683556],[115.91935919359196,74.35874570953439],[115.94095940959409,74.36887717315369],[115.98055980559809,74.37732005950312],[116.0237602376024,74.379008636773],[116.06336063360635,74.37056575042357],[116.09936099360993,74.35536855499464]]],[[[84.87264872648728,74.50565193201419],[84.90864908649087,74.50227477747444],[84.93384933849342,74.49214331385514],[84.93384933849342,74.48201185023584],[84.89784897848978,74.47188038661653],[84.8510485104851,74.46850323207678],[84.67464674646749,74.47694611842618],[84.57744577445777,74.46850323207678],[84.54144541445413,74.45668319118761],[84.76824768247684,74.40940302763087],[84.73224732247326,74.39589440947182],[84.44064440644405,74.4262888003297],[84.39744397443974,74.43979741848878],[84.38664386643865,74.45837176845748],[84.41904419044192,74.46850323207678],[84.59184591845917,74.49889762293466],[84.87264872648728,74.50565193201419]]],[[[85.22545225452257,74.74542990433753],[85.1138511385114,74.74542990433753],[85.09585095850957,74.75556136795683],[85.1138511385114,74.76569283157613],[85.34785347853477,74.77751287246531],[85.4090540905409,74.78933291335449],[85.46665466654667,74.81466157240274],[85.49545495454953,74.81466157240274],[85.5386553865539,74.80284153151356],[85.56025560255603,74.79946437697379],[85.61065610656107,74.80453010878344],[85.63585635856361,74.80284153151356],[85.65745657456574,74.79271006789426],[85.65025650256501,74.77075856338578],[85.6610566105661,74.75387279068696],[85.68265682656829,74.7403641725279],[85.70785707857078,74.73192128617848],[85.67905679056793,74.72347839982908],[85.65385653856538,74.72516697709895],[85.60345603456034,74.738675595258],[85.50625506255062,74.71672409074952],[85.4846548465485,74.72178982255917],[85.46305463054631,74.73529844071825],[85.42705427054273,74.74542990433753],[85.3658536585366,74.75218421341708],[85.22545225452257,74.74542990433753]]],[[[83.27783277832782,75.95613980684342],[83.29583295832958,75.94263118868437],[83.27783277832782,75.9308111477952],[83.21303213032132,75.91730252963612],[83.17343173431738,75.91730252963612],[83.0618306183062,75.9308111477952],[83.02583025830262,75.9308111477952],[82.91782917829181,75.91730252963612],[82.8638286382864,75.91730252963612],[82.84222842228422,75.92405683871567],[82.85662856628568,75.94431976595425],[82.82422824228246,75.95445122957355],[82.70902709027092,75.94431976595425],[82.53262532625325,75.95782838411333],[82.38862388623886,75.94431976595425],[82.3166231662317,75.94769692049402],[82.27702277022769,75.95613980684342],[82.25902259022592,75.97302557954225],[82.41382413824141,75.96458269319285],[82.46422464224645,75.97302557954225],[82.53622536225362,75.99497708405073],[82.56142561425617,75.99835423859051],[82.65862658626588,75.99835423859051],[82.69462694626947,75.98991135224108],[82.96822968229685,75.97640273408203],[83.24543245432454,75.96289411592298],[83.27783277832782,75.95613980684342]]],[[[96.47196471964719,76.6923594965123],[96.3927639276393,76.68053945562312],[96.36036360363607,76.66534226019417],[96.37116371163711,76.64339075568569],[96.34596345963462,76.63157071479651],[96.31356313563134,76.62312782844711],[96.25236252362527,76.61637351936756],[96.15516155161555,76.62312782844711],[96.09036090360905,76.61468494209768],[95.9967599675997,76.62312782844711],[95.98235982359824,76.62143925117721],[95.95715957159575,76.61130778755793],[95.9427594275943,76.60961921028803],[95.88875888758889,76.61637351936756],[95.89595895958962,76.62650498298686],[95.89595895958962,76.63494786933629],[95.89595895958962,76.64339075568569],[95.88875888758889,76.65014506476521],[95.92475924759248,76.66534226019417],[95.96435964359642,76.67716230108334],[96.00396003960043,76.67885087835322],[96.07956079560796,76.66871941473394],[96.1947619476195,76.69404807378217],[96.21636216362162,76.70924526921112],[96.23076230762308,76.71262242375087],[96.29556295562958,76.70586811467135],[96.33516335163353,76.70924526921112],[96.3819638196382,76.70586811467135],[96.46476464764646,76.71262242375087],[96.46836468364683,76.70755669194122],[96.47196471964719,76.6923594965123]]],[[[97.47637476374763,76.65014506476521],[97.48357483574836,76.62988213752664],[97.5231752317523,76.61806209663746],[97.59517595175953,76.6028649012085],[97.56637566375667,76.58597912850968],[97.52677526775267,76.5826019739699],[97.48357483574836,76.58597912850968],[97.41877418774186,76.59948774666873],[97.34317343173433,76.59948774666873],[97.31437314373147,76.60961921028803],[97.37197371973718,76.62481640571698],[97.389973899739,76.63494786933629],[97.38637386373864,76.65352221930499],[97.37917379173791,76.66365368292429],[97.37557375573755,76.66871941473394],[97.37197371973718,76.67209656927369],[97.35757357573578,76.67716230108334],[97.30357303573038,76.68391661016287],[97.28917289172892,76.6923594965123],[97.32517325173251,76.69573665105204],[97.38277382773828,76.71431100102077],[97.41877418774186,76.71937673283043],[97.44757447574477,76.71431100102077],[97.4691746917469,76.69742522832195],[97.47997479974799,76.67209656927369],[97.47637476374763,76.65014506476521]]],[[[107.74367743677436,77.32895312725807],[107.74367743677436,77.31375593182912],[107.72927729277296,77.30531304547972],[107.7148771487715,77.30193589093994],[107.70407704077041,77.29349300459054],[107.70767707677078,77.28505011824112],[107.71847718477187,77.27660723189172],[107.72207722077223,77.26985292281216],[107.69687696876969,77.26647576827241],[107.62487624876252,77.26816434554229],[107.3440734407344,77.23270422287476],[107.27207272072724,77.24114710922416],[107.24687246872469,77.23945853195428],[107.22527225272256,77.23270422287476],[107.20367203672038,77.23439280014463],[107.20727207272074,77.24114710922416],[107.2216722167222,77.24790141830368],[107.23967239672396,77.25296715011334],[107.42327423274236,77.26985292281216],[107.45567455674558,77.27998438643147],[107.41247412474127,77.29011585005077],[107.31887318873191,77.28673869551099],[107.27927279272797,77.30193589093994],[107.3548735487355,77.3458388999569],[107.39447394473945,77.36103609538583],[107.44127441274412,77.3542817863063],[107.47007470074703,77.34752747722678],[107.5276752767528,77.344150322687],[107.57807578075784,77.33233028179782],[107.6068760687607,77.32895312725807],[107.63567635676355,77.32895312725807],[107.65007650076501,77.32895312725807],[107.66807668076683,77.33401885906773],[107.70047700477005,77.33739601360747],[107.72927729277296,77.33739601360747],[107.74367743677436,77.32895312725807]]],[[[106.86166861668619,77.44546495887997],[106.88326883268832,77.43364491799079],[106.87966879668795,77.42520203164139],[106.86526865268655,77.41844772256184],[106.840068400684,77.41844772256184],[106.78966789667896,77.42520203164139],[106.76446764467647,77.42689060891126],[106.74286742867429,77.41844772256184],[106.75366753667538,77.41169341348231],[106.69966699666998,77.3829875998943],[106.64206642066421,77.37961044535456],[106.52326523265236,77.38974190897383],[106.52686526865267,77.40493910440279],[106.56286562865631,77.42182487710161],[106.55926559265595,77.43871064980044],[106.58446584465844,77.44546495887997],[106.63846638466384,77.44377638161009],[106.66366663666639,77.44884211341974],[106.68166681666816,77.45728499976914],[106.7320673206732,77.47079361792822],[106.82926829268291,77.4724821951981],[106.87606876068764,77.46572788611857],[106.92646926469268,77.46741646338845],[106.94446944469445,77.45897357703905],[106.92646926469268,77.45221926795949],[106.87966879668795,77.44546495887997],[106.86166861668619,77.44546495887997]]],[[[20.05760057600577,79.37719735562578],[20.154801548015485,79.36368873746673],[20.17640176401764,79.35355727384743],[20.172801728017276,79.34342581022813],[20.14400144001442,79.3366715011486],[20.111601116011173,79.33498292387873],[20.090000900009017,79.34004865568835],[20.064800648006496,79.35355727384743],[20.036000360003612,79.35693442838718],[19.701197011970123,79.3366715011486],[19.67239672396724,79.34004865568835],[19.661596615966175,79.3468029647679],[19.661596615966175,79.35862300565708],[19.679596795967967,79.37719735562578],[19.63999639996402,79.39070597378483],[19.625596255962563,79.39239455105474],[19.668796687966875,79.40421459194391],[19.711997119971215,79.40759174648366],[19.805598055980568,79.40590316921379],[19.8667986679867,79.39070597378483],[20.05760057600577,79.37719735562578]]],[[[18.297182971829727,80.27552046320338],[18.160381603816035,80.27889761774316],[18.117181171811723,80.28902908136243],[18.13878138781388,80.30929200860103],[18.1567815678157,80.31773489495043],[18.18918189181892,80.32111204949021],[18.20718207182074,80.32617778129986],[18.23958239582396,80.34306355399869],[18.30078300783009,80.36332648123727],[18.31518315183152,80.36501505850717],[18.585185851858512,80.34137497672882],[18.671586715867164,80.31942347222034],[18.685986859868592,80.31266916314078],[18.70038700387005,80.30929200860103],[18.714787147871476,80.31098058587091],[18.729187291872933,80.31266916314078],[18.739987399873996,80.31266916314078],[18.754387543875453,80.30253769952151],[18.70038700387005,80.29071765863233],[18.678786787867892,80.28902908136243],[18.664386643866436,80.28565192682268],[18.639186391863916,80.26538899958408],[18.624786247862488,80.26201184504433],[18.49158491584916,80.23837176326595],[18.448384483844848,80.2434374950756],[18.297182971829727,80.27552046320338]]],[[[50.477904779047805,81.06915178004826],[50.34830348303484,81.09110328455671],[50.38790387903879,81.10461190271579],[50.38430384303845,81.10967763452544],[50.37350373503736,81.12149767541462],[50.36630366303663,81.12487482995436],[50.4959049590496,81.12487482995436],[50.51750517505175,81.12825198449414],[50.53910539105391,81.13838344811344],[50.528305283052845,81.14682633446284],[50.49230492304923,81.15864637535202],[50.528305283052845,81.16708926170145],[50.77670776707768,81.1704664162412],[50.81990819908199,81.16540068443155],[50.913509135091346,81.1434491799231],[50.94950949509496,81.12487482995436],[50.97830978309784,81.10630047998566],[50.96750967509675,81.09616901636636],[50.938709387093866,81.09110328455671],[50.76590765907659,81.08772613001696],[50.74430744307443,81.07759466639766],[50.75150751507516,81.06746320277836],[50.780307803078045,81.0623974709687],[50.78390783907841,81.0539545846193],[50.77310773107732,81.043823121],[50.75150751507516,81.04044596646023],[50.57510575105752,81.04720027553978],[50.452704527045285,81.01680588468187],[50.40950409504097,81.01342873014212],[50.37350373503736,81.0235601937614],[50.377103771037724,81.02693734830117],[50.38070380703809,81.03031450284095],[50.39150391503915,81.03706881192048],[50.41310413104131,81.04044596646023],[50.44190441904419,81.04888885280965],[50.46350463504635,81.05902031642896],[50.477904779047805,81.06915178004826]]],[[[158.89298892988933,-54.51009437337339],[158.90738907389073,-54.496585755214326],[158.94698946989473,-54.48645429159503],[158.96138961389613,-54.4695685188962],[158.9649896498965,-54.4898314461348],[158.9541895418954,-54.55062022785057],[158.94698946989473,-54.57088315508916],[158.92538925389255,-54.616474741375995],[158.91458914589145,-54.65024628677365],[158.89298892988933,-54.68739498671107],[158.8857888578886,-54.705969336679786],[158.8857888578886,-54.7329865729979],[158.88218882188823,-54.74649519115697],[158.86418864188641,-54.74987234569673],[158.83898838988392,-54.74987234569673],[158.8317883178832,-54.73805230480755],[158.8317883178832,-54.7329865729979],[158.83898838988392,-54.72960941845814],[158.8317883178832,-54.71103506848943],[158.83538835388356,-54.68908356398096],[158.84618846188465,-54.6553120185833],[158.84978849788502,-54.65024628677365],[158.8569885698857,-54.640114823154356],[158.86058860588605,-54.63336051407482],[158.8569885698857,-54.62998335953506],[158.8569885698857,-54.62491762772541],[158.85338853388538,-54.619851895915765],[158.85338853388538,-54.61309758683623],[158.8569885698857,-54.60296612321694],[158.86058860588605,-54.59958896867717],[158.86418864188641,-54.59452323686752],[158.87138871388714,-54.58608035051811],[158.88218882188823,-54.56581742327952],[158.89298892988933,-54.51009437337339]]],[[[169.25029250292505,-52.52095034945157],[169.26109261092614,-52.54459043122993],[169.26109261092614,-52.55472189484922],[169.24669246692469,-52.56316478119864],[169.2358923589236,-52.57329624481793],[169.22869228692286,-52.586804862977],[169.19629196291964,-52.600313481136055],[169.1674916749168,-52.598624903866174],[169.13149131491315,-52.59524774932641],[169.12069120691206,-52.58849344024688],[169.09909099090993,-52.580050553897465],[169.08469084690847,-52.57498482208781],[169.07389073890738,-52.56485335846852],[169.06309063090634,-52.561476203928756],[169.05229052290525,-52.56823051300829],[169.0270902709027,-52.55303331757934],[169.01629016290167,-52.542901853960046],[169.02349023490234,-52.53445896761063],[169.04509045090452,-52.53445896761063],[169.0810908109081,-52.541213276690165],[169.11349113491138,-52.54627900849981],[169.12069120691206,-52.5277046585311],[169.12789127891278,-52.50913030856239],[169.1458914589146,-52.49055595859368],[169.16029160291606,-52.480424494974386],[169.18549185491855,-52.46860445408521],[169.20349203492037,-52.46860445408521],[169.21429214292147,-52.475358763164735],[169.2106921069211,-52.48380164951415],[169.22149221492214,-52.48380164951415],[169.2358923589236,-52.4888673813238],[169.24309243092432,-52.497310267673214],[169.27549275492754,-52.50575315402263],[169.29349293492936,-52.52095034945157],[169.27549275492754,-52.52432750399134],[169.25029250292505,-52.52095034945157]]],[[[-176.14436144361443,-44.24861030429623],[-176.13716137161373,-44.251987458836],[-176.11556115561154,-44.265496076995056],[-176.1479614796148,-44.282381849693884],[-176.15876158761588,-44.29589046785294],[-176.16236162361625,-44.31615339509154],[-176.19836198361983,-44.33472774506025],[-176.219962199622,-44.341482054139775],[-176.21636216362162,-44.32797343598072],[-176.219962199622,-44.324596281440954],[-176.22716227162272,-44.31615339509154],[-176.23076230762308,-44.31277624055177],[-176.22716227162272,-44.30939908601201],[-176.23076230762308,-44.306021931472245],[-176.22716227162272,-44.29926762239271],[-176.2127621276213,-44.27225038607459],[-176.20916209162093,-44.265496076995056],[-176.219962199622,-44.251987458836],[-176.23436234362345,-44.24692172702635],[-176.23436234362345,-44.241855995216696],[-176.22356223562235,-44.2317245315974],[-176.20916209162093,-44.224970222517875],[-176.18756187561877,-44.221593067978105],[-176.16956169561695,-44.221593067978105],[-176.15516155161552,-44.224970222517875],[-176.15156151561516,-44.22834737705764],[-176.1479614796148,-44.23510168613717],[-176.1479614796148,-44.241855995216696],[-176.14436144361443,-44.24861030429623]]],[[[148.11448114481146,-40.523608846935],[148.13248132481328,-40.5134773833157],[148.17208172081723,-40.50672307423617],[148.18648186481863,-40.49996876515664],[148.25128251282513,-40.48983730153734],[148.2440824408244,-40.498280187886756],[148.23688236882367,-40.51010022877593],[148.229682296823,-40.516854537855465],[148.229682296823,-40.52867457874464],[148.229682296823,-40.540494619633826],[148.22608226082264,-40.54893750598324],[148.21528215282154,-40.552314660523],[148.20808208082082,-40.5624461241423],[148.20448204482045,-40.58270905138089],[148.19368193681936,-40.59621766953995],[148.16848168481687,-40.58608620592066],[148.16128161281614,-40.57088901049171],[148.14688146881468,-40.56582327868206],[148.12888128881292,-40.56582327868206],[148.1216812168122,-40.5624461241423],[148.11808118081183,-40.557380392332654],[148.1108811088111,-40.54387177417359],[148.10728107281074,-40.537117465094056],[148.10728107281074,-40.53036315601453],[148.10368103681037,-40.53036315601453],[148.10728107281074,-40.53036315601453],[148.11448114481146,-40.523608846935]]],[[[144.79164791647918,-40.42060563347215],[144.79164791647918,-40.42735994255168],[144.79164791647918,-40.50165734242652],[144.7880478804788,-40.51010022877593],[144.76644766447663,-40.52529742420488],[144.76644766447663,-40.58439762865078],[144.74124741247414,-40.59284051500019],[144.7340473404734,-40.577643319571244],[144.73044730447305,-40.56920043322183],[144.73044730447305,-40.5134773833157],[144.72684726847268,-40.50503449696629],[144.71244712447128,-40.496591610616875],[144.70884708847092,-40.48983730153734],[144.7160471604716,-40.476328683378284],[144.73044730447305,-40.474640106108396],[144.74844748447487,-40.476328683378284],[144.76284762847632,-40.46957437429875],[144.76644766447663,-40.459442910679456],[144.77724777247772,-40.410474169852854],[144.7808478084781,-40.40540843804321],[144.78444784447845,-40.40878559258297],[144.79164791647918,-40.42060563347215]]],[[[145.33525335253353,-38.50913616396494],[145.34245342453426,-38.51082474123482],[145.34605346053462,-38.51420189577458],[145.34245342453426,-38.51757905031435],[145.34605346053462,-38.522644782124],[145.35325353253535,-38.53446482301318],[145.36045360453608,-38.54797344117224],[145.36045360453608,-38.561482059331304],[145.35325353253535,-38.5716135229506],[145.35325353253535,-38.56654779114095],[145.34965349653498,-38.563170636601185],[145.34965349653498,-38.561482059331304],[145.34605346053462,-38.55641632752165],[145.32085320853207,-38.539530554822825],[145.29205292052922,-38.52602193666377],[145.26325263252636,-38.519267627584235],[145.22725227252272,-38.522644782124],[145.220052200522,-38.52939909120353],[145.21285212852132,-38.53446482301318],[145.2056520565206,-38.53615340028306],[145.19845198451986,-38.53446482301318],[145.18045180451804,-38.52602193666377],[145.17685176851768,-38.522644782124],[145.15885158851592,-38.52433335939388],[145.130051300513,-38.53108766847341],[145.11205112051124,-38.53108766847341],[145.1192511925119,-38.519267627584235],[145.15525155251555,-38.495627545805874],[145.17685176851768,-38.47536461856728],[145.18765187651877,-38.46692173221787],[145.20205202052023,-38.46185600040822],[145.26325263252636,-38.45510169132869],[145.2740527405274,-38.45341311405881],[145.27765277652776,-38.45172453678892],[145.2848528485285,-38.45172453678892],[145.29925299252994,-38.45510169132869],[145.30645306453067,-38.458478845868456],[145.3136531365314,-38.46523315494799],[145.31725317253176,-38.46861030948775],[145.31005310053104,-38.4736760412974],[145.3028530285303,-38.47536461856728],[145.3136531365314,-38.49056181399623],[145.31725317253176,-38.495627545805874],[145.3136531365314,-38.50407043215529],[145.31725317253176,-38.50744758669506],[145.32445324453244,-38.50913616396494],[145.33525335253353,-38.50913616396494]]],[[[-128.32868328683287,-24.32508709695027],[-128.30348303483035,-24.335218560569565],[-128.28908289082892,-24.36561295142745],[-128.28908289082892,-24.397695919555225],[-128.29988299883,-24.412893114984172],[-128.32148321483214,-24.401073074094988],[-128.3430834308343,-24.372367260506984],[-128.35028350283503,-24.341972869649098],[-128.32868328683287,-24.32508709695027]]],[[[150.53730537305375,-22.275154291312674],[150.54450544505448,-22.276842868582555],[150.55170551705515,-22.281908600392207],[150.55890558905588,-22.288662909471732],[150.56250562505625,-22.295417218551265],[150.55530555305552,-22.30554868217056],[150.54810548105485,-22.312302991250093],[150.53730537305375,-22.315680145789855],[150.5337053370534,-22.319057300329625],[150.53010530105303,-22.32750018667904],[150.52650526505266,-22.334254495758564],[150.51930519305193,-22.341008804838097],[150.5121051210512,-22.344385959377867],[150.49410494104944,-22.351140268457392],[150.48330483304835,-22.344385959377867],[150.479704797048,-22.332565918488683],[150.49050490504908,-22.315680145789855],[150.47610476104762,-22.30554868217056],[150.47250472504726,-22.302171527630797],[150.4689046890469,-22.30554868217056],[150.46530465304653,-22.30723725944044],[150.4581045810458,-22.31061441398021],[150.46530465304653,-22.293728641281383],[150.48330483304835,-22.275154291312674],[150.49410494104944,-22.254891364074084],[150.48690486904871,-22.238005591375256],[150.479704797048,-22.22956270502584],[150.47610476104762,-22.221119818676428],[150.479704797048,-22.216054086866777],[150.49050490504908,-22.214365509596895],[150.50490504905048,-22.216054086866777],[150.5121051210512,-22.22449697321619],[150.51570515705157,-22.234628436835486],[150.5229052290523,-22.24475990045478],[150.52650526505266,-22.253202786804195],[150.52650526505266,-22.263334250423497],[150.53010530105303,-22.271777136772904],[150.53730537305375,-22.275154291312674]]],[[[149.91809918099182,-22.04213062806886],[149.9108991089911,-22.075902173466517],[149.9108991089911,-22.086033637085812],[149.91449914499145,-22.10123083251476],[149.92529925299255,-22.12149375975335],[149.9288992889929,-22.135002377912407],[149.9288992889929,-22.16033103696065],[149.92169921699218,-22.190725427818535],[149.90729907299072,-22.216054086866777],[149.88929889298896,-22.226185550486072],[149.87849878498787,-22.219431241406546],[149.87849878498787,-22.212676932327014],[149.88209882098823,-22.2042340459776],[149.88209882098823,-22.192414005088423],[149.87849878498787,-22.18565969600889],[149.8748987489875,-22.182282541469128],[149.87129871298714,-22.175528232389595],[149.86769867698678,-22.16201961423053],[149.86769867698678,-22.14175668699194],[149.8748987489875,-22.11811660521358],[149.88209882098823,-22.096165100705107],[149.8964989649897,-22.082656482546042],[149.88929889298896,-22.072525018926747],[149.89289892898933,-22.06070497803757],[149.90369903699036,-22.048884937148394],[149.91809918099182,-22.04213062806886]]],[[[149.06849068490686,-20.314716080978855],[149.05769057690577,-20.309650349169218],[149.05049050490504,-20.302896040089678],[149.039690396904,-20.28769884466074],[149.02529025290255,-20.319781812788506],[149.01809018090182,-20.32822469913792],[149.00369003690037,-20.311338926439092],[148.98928989289897,-20.314716080978855],[148.98208982089824,-20.32315896732827],[148.97128971289715,-20.321470390058394],[148.97128971289715,-20.280944535581213],[148.95328953289533,-20.29276457647039],[148.9460894608946,-20.294453153740264],[148.93888938889393,-20.294453153740264],[148.9316893168932,-20.29276457647039],[148.92808928089283,-20.28769884466074],[148.9316893168932,-20.277567381041436],[148.96408964089642,-20.25055014472332],[148.96768967689678,-20.237041526564255],[148.94968949689496,-20.231975794754604],[148.96048960489605,-20.211712867516013],[148.96408964089642,-20.18638420846777],[148.97128971289715,-20.164432703959307],[148.9856898568986,-20.15092408580024],[148.98928989289897,-20.16612128122918],[149.00369003690037,-20.189761363007534],[149.00369003690037,-20.201581403896725],[149.00369003690037,-20.22859864021484],[149.0108901089011,-20.237041526564255],[149.02889028890291,-20.238730103834143],[149.02889028890291,-20.24548441291367],[149.04689046890468,-20.274190226501673],[149.06849068490686,-20.289387421930613],[149.07209072090723,-20.299518885549915],[149.06849068490686,-20.314716080978855]]],[[[148.9568895688957,-20.1441697767207],[148.95328953289533,-20.15092408580024],[148.92448924489247,-20.177941322118357],[148.92808928089283,-20.157678394879767],[148.92448924489247,-20.15092408580024],[148.9208892088921,-20.152612663070116],[148.91728917289174,-20.157678394879767],[148.91368913689138,-20.155989817609893],[148.91368913689138,-20.154301240340004],[148.91368913689138,-20.15092408580024],[148.910089100891,-20.15092408580024],[148.90288902889029,-20.164432703959307],[148.89568895688956,-20.16105554941953],[148.8884888848889,-20.154301240340004],[148.88488884888852,-20.14754693126048],[148.88128881288816,-20.137415467641176],[148.8884888848889,-20.122218272212237],[148.91728917289174,-20.08844672681458],[148.91368913689138,-20.086758149544693],[148.910089100891,-20.08169241773504],[148.90648906489065,-20.074938108655516],[148.910089100891,-20.06818379957599],[148.9208892088921,-20.06142949049645],[148.92448924489247,-20.06311806776634],[148.9316893168932,-20.06818379957599],[148.93528935289356,-20.06818379957599],[148.94968949689496,-20.06311806776634],[148.95328953289533,-20.05805233595669],[148.96048960489605,-20.051298026877163],[148.96408964089642,-20.04116656325786],[148.97848978489787,-20.056363758686814],[148.97128971289715,-20.076626685925405],[148.95328953289533,-20.096889613163995],[148.94248942489423,-20.113775385862823],[148.9460894608946,-20.12052969494235],[148.9568895688957,-20.134038313101414],[148.9568895688957,-20.1441697767207]]],[[[-178.58878588785888,-19.122580528441674],[-178.58158581585815,-19.137777723870613],[-178.56718567185672,-19.151286342029678],[-178.54918549185493,-19.159729228379092],[-178.53478534785347,-19.15635207383933],[-178.53838538385384,-19.17661500107792],[-178.55638556385563,-19.17492642380803],[-178.59238592385924,-19.15635207383933],[-178.59958599585997,-19.147909187489915],[-178.5959859598596,-19.1293348375212],[-178.58158581585815,-19.110760487552497],[-178.5527855278553,-19.10907191028261],[-178.559985599856,-19.11920337390191],[-178.56718567185672,-19.120891951171785],[-178.57438574385745,-19.120891951171785],[-178.58878588785888,-19.122580528441674]]],[[[-179.8631986319863,-18.965542842342586],[-179.84879848798488,-18.923328410595516],[-179.81279812798127,-18.92670556513528],[-179.78759787597875,-18.955411378723284],[-179.80919809198093,-18.985805769581177],[-179.81639816398163,-18.95203422418352],[-179.8379983799838,-18.948657069643758],[-179.8559985599856,-18.963854265072698],[-179.85239852398524,-18.982428615041414],[-179.84519845198452,-19.002691542280004],[-179.85959859598597,-19.006068696819767],[-179.87039870398704,-18.99424865593059],[-179.8631986319863,-18.965542842342586]]],[[[-178.76518765187652,-18.190485875466422],[-178.7507875078751,-18.203994493625487],[-178.74718747187472,-18.220880266324315],[-178.7507875078751,-18.237766039023143],[-178.76158761587615,-18.246208925372557],[-178.79758797587976,-18.246208925372557],[-178.80838808388083,-18.244520348102668],[-178.81558815588156,-18.239454616293017],[-178.81918819188192,-18.23438888448338],[-178.82638826388265,-18.23270030721349],[-178.84438844388444,-18.217503111784552],[-178.82638826388265,-18.188797298196548],[-178.79038790387904,-18.17191152549772],[-178.76518765187652,-18.190485875466422]]],[[[-179.04959049590497,-17.955773634952735],[-179.03159031590314,-17.965905098572023],[-179.0279902799028,-17.98954518035039],[-179.0279902799028,-18.00305379850944],[-179.0459904599046,-18.008119530319092],[-179.06039060390603,-18.001365221239567],[-179.06759067590676,-17.98954518035039],[-179.07839078390785,-17.965905098572023],[-179.06039060390603,-17.952396480412972],[-179.04959049590497,-17.955773634952735]]],[[[-178.29358293582936,-17.883164812347772],[-178.28278282782827,-17.888230544157423],[-178.26118261182611,-17.90173916231649],[-178.2467824678247,-17.916936357745428],[-178.23958239582396,-17.933822130444256],[-178.25038250382505,-17.952396480412972],[-178.2719827198272,-17.96252794403226],[-178.29718297182973,-17.96252794403226],[-178.32238322383225,-17.959150789492497],[-178.35118351183513,-17.945642171333432],[-178.35838358383583,-17.913559203205665],[-178.33678336783368,-17.886541966887535],[-178.29358293582936,-17.883164812347772]]],[[[-140.68040680406804,-17.78016159888493],[-140.72720727207272,-17.807178835203047],[-140.75960759607597,-17.830818916981414],[-140.7848078480785,-17.85783615329953],[-140.79560795607955,-17.86290188510918],[-140.81360813608137,-17.86290188510918],[-140.8280082800828,-17.85952473056942],[-140.83880838808386,-17.854458998759767],[-140.83880838808386,-17.84263895787059],[-140.83520835208353,-17.830818916981414],[-140.82440824408243,-17.807178835203047],[-140.80280802808028,-17.786915907964456],[-140.78120781207812,-17.751455785296926],[-140.7452074520745,-17.729504280788447],[-140.6732067320673,-17.69742131266068],[-140.65160651606516,-17.683912694501615],[-140.62640626406264,-17.687289849041377],[-140.6192061920619,-17.707552776279968],[-140.630006300063,-17.727815703518573],[-140.6480064800648,-17.744701476217386],[-140.68040680406804,-17.78016159888493]]],[[[-178.9631896318963,-17.177339513536808],[-178.93438934389343,-17.190848131695873],[-178.91638916389164,-17.20097959531516],[-178.9091890918909,-17.214488213474226],[-178.92718927189273,-17.246571181601993],[-178.92718927189273,-17.253325490681533],[-178.94518945189452,-17.25839122249117],[-178.96678966789668,-17.275276995189998],[-178.9811898118981,-17.29553992242859],[-178.98478984789847,-17.314114272397305],[-178.99918999189993,-17.302294231508128],[-178.99918999189993,-17.28371988153941],[-178.98478984789847,-17.26345695430082],[-178.97038970389704,-17.253325490681533],[-178.9739897398974,-17.239816872522468],[-178.97038970389704,-17.233062563442928],[-178.9631896318963,-17.229685408903165],[-178.95958959589595,-17.22461967709353],[-178.95958959589595,-17.211111058934463],[-178.95958959589595,-17.206045327124812],[-178.97038970389704,-17.1976024407754],[-178.9811898118981,-17.192536708965747],[-179.0027900279003,-17.189159554425984],[-179.01359013590135,-17.184093822616333],[-179.01719017190172,-17.177339513536808],[-179.01719017190172,-17.157076586298217],[-179.02079020790208,-17.148633699948803],[-179.00639006390062,-17.15538800902833],[-178.99558995589956,-17.16551947264763],[-178.98478984789847,-17.17565093626692],[-178.9631896318963,-17.177339513536808]]],[[[-151.45891458914588,-16.62855190082493],[-151.45891458914588,-16.660634868952698],[-151.46251462514624,-16.674143487111763],[-151.47331473314733,-16.669077755302112],[-151.48051480514806,-16.66570060076235],[-151.53451534515347,-16.642060518983996],[-151.54171541715417,-16.636994787174345],[-151.54171541715417,-16.630240478094805],[-151.53451534515347,-16.594780355427275],[-151.52371523715237,-16.5829603145381],[-151.50211502115022,-16.579583159998336],[-151.47331473314733,-16.58127173726821],[-151.4769147691477,-16.589714623617624],[-151.48051480514806,-16.594780355427275],[-151.45891458914588,-16.593091778157387],[-151.4481144811448,-16.594780355427275],[-151.44451444514445,-16.598157509967038],[-151.44451444514445,-16.6015346645068],[-151.43731437314372,-16.609977550856215],[-151.43731437314372,-16.615043282665866],[-151.44091440914409,-16.620109014475517],[-151.4481144811448,-16.62348616901528],[-151.45891458914588,-16.62855190082493]]],[[[136.8967689676897,-15.586699725307298],[136.88236882368824,-15.590076879847075],[136.8751687516875,-15.5968311889266],[136.87156871568715,-15.606962652545903],[136.8751687516875,-15.622159847974842],[136.86796867968678,-15.623848425244717],[136.8607686076861,-15.625537002514605],[136.84996849968502,-15.635668466133907],[136.84636846368466,-15.630602734324256],[136.84636846368466,-15.627225579784493],[136.8427684276843,-15.625537002514605],[136.8427684276843,-15.622159847974842],[136.84636846368466,-15.620471270704954],[136.84636846368466,-15.617094116165191],[136.8427684276843,-15.608651229815777],[136.83556835568356,-15.598519766196489],[136.83916839168393,-15.595142611656712],[136.84636846368466,-15.59176545711695],[136.84996849968502,-15.586699725307298],[136.84996849968502,-15.583322570767535],[136.85356853568538,-15.574879684418121],[136.85716857168575,-15.56981395260847],[136.85356853568538,-15.564748220798833],[136.8427684276843,-15.55630533444942],[136.8427684276843,-15.552928179909657],[136.84636846368466,-15.536042407210829],[136.85716857168575,-15.520845211781875],[136.87156871568715,-15.507336593622824],[136.88236882368824,-15.49889370727341],[136.8751687516875,-15.522533789051764],[136.87876878768787,-15.544485293560243],[136.8967689676897,-15.586699725307298]]],[[[-178.14238142381424,-14.244280795750555],[-178.10638106381063,-14.2797409184181],[-178.10638106381063,-14.28480665022775],[-178.0919809198092,-14.288183804767513],[-178.04518045180453,-14.311823886545866],[-178.04518045180453,-14.32026677289528],[-178.09918099180993,-14.31520104108563],[-178.109981099811,-14.32026677289528],[-178.1207812078121,-14.313512463815755],[-178.1459814598146,-14.310135309275978],[-178.15678156781567,-14.305069577466341],[-178.1747817478175,-14.276363763878336],[-178.18558185581855,-14.247657950290318],[-178.17838178381783,-14.232460754861378],[-178.14238142381424,-14.244280795750555]]],[[[-151.80811808118082,-11.385519477839154],[-151.79731797317973,-11.400716673268093],[-151.7829178291783,-11.429422486856097],[-151.77931779317794,-11.45475114590434],[-151.8009180091801,-11.461505454983865],[-151.81171811718116,-11.442931105015163],[-151.8189181891819,-11.420979600506683],[-151.8189181891819,-11.399028095998219],[-151.80811808118082,-11.385519477839154]]],[[[150.87570875708758,-10.536165111088152],[150.88650886508867,-10.542919420167678],[150.90090900909013,-10.551362306517092],[150.90090900909013,-10.563182347406283],[150.89010890108904,-10.578379542835222],[150.89730897308976,-10.585133851914748],[150.8937089370894,-10.59526531553405],[150.8937089370894,-10.608773933693115],[150.89010890108904,-10.618905397312403],[150.89730897308976,-10.629036860931706],[150.89730897308976,-10.639168324550994],[150.8937089370894,-10.647611210900408],[150.8829088290883,-10.652676942710059],[150.86130861308612,-10.644234056360645],[150.839708397084,-10.635791170011231],[150.81450814508145,-10.634102592741343],[150.79290792907932,-10.639168324550994],[150.78210782107823,-10.620593974582292],[150.7749077490775,-10.61046251096299],[150.76770767707677,-10.605396779153338],[150.7749077490775,-10.598642470073813],[150.78930789307896,-10.608773933693115],[150.80370803708036,-10.617216820042529],[150.82170821708218,-10.622282551852166],[150.839708397084,-10.625659706391929],[150.86130861308612,-10.625659706391929],[150.8649086490865,-10.623971129122054],[150.86130861308612,-10.617216820042529],[150.79290792907932,-10.558116615596632],[150.78930789307896,-10.549673729247218],[150.78930789307896,-10.539542265627915],[150.80010800108005,-10.534476533818264],[150.80730807308072,-10.536165111088152],[150.8181081810818,-10.542919420167678],[150.82170821708218,-10.549673729247218],[150.83610836108363,-10.547985151977329],[150.8505085050851,-10.547985151977329],[150.86130861308612,-10.546296574707455],[150.87570875708758,-10.536165111088152]]],[[[-138.70038700387005,-10.426407588545771],[-138.66438664386644,-10.42809616581566],[-138.649986499865,-10.431473320355423],[-138.63558635586355,-10.439916206704837],[-138.62118621186212,-10.471999174832604],[-138.62118621186212,-10.51083645203991],[-138.63558635586355,-10.542919420167678],[-138.67158671586716,-10.549673729247218],[-138.6859868598686,-10.542919420167678],[-138.69318693186932,-10.52603364746885],[-138.69318693186932,-10.507459297500148],[-138.67878678786786,-10.473687752102492],[-138.68238682386823,-10.458490556673553],[-138.70038700387005,-10.426407588545771]]],[[[142.1888218882189,-10.080249248219829],[142.19602196021964,-10.092069289109006],[142.19602196021964,-10.102200752728294],[142.1888218882189,-10.144415184475363],[142.18162181621818,-10.152858070824777],[142.17442174421745,-10.161300957174191],[142.16722167221673,-10.181563884412782],[142.15642156421563,-10.188318193492321],[142.14202142021423,-10.184941038952545],[142.13842138421387,-10.173120998063368],[142.12402124021241,-10.157923802634429],[142.10962109621096,-10.147792339015126],[142.09882098820987,-10.13597229812595],[142.09522095220956,-10.119086525427122],[142.14202142021423,-10.049854857361936],[142.15642156421563,-10.053232011901699],[142.1708217082171,-10.059986320981238],[142.1888218882189,-10.080249248219829]]],[[[-139.08199081990819,-9.899571480342374],[-139.06759067590676,-9.904637212152025],[-139.0567905679057,-9.913080098501439],[-139.0459904599046,-9.923211562120727],[-139.04959049590497,-9.926588716660504],[-139.0567905679057,-9.928277293930378],[-139.0567905679057,-9.931654448470141],[-139.06039060390603,-9.936720180279792],[-139.06039060390603,-9.940097334819555],[-139.06759067590676,-9.943474489359332],[-139.07839078390782,-9.945163066629206],[-139.08199081990819,-9.946851643899095],[-139.09639096390964,-9.962048839328034],[-139.1179911799118,-10.00088611653534],[-139.13239132391323,-10.014394734694392],[-139.14319143191432,-9.997508961995578],[-139.14319143191432,-9.978934612026862],[-139.13959139591395,-9.958671684788271],[-139.14319143191432,-9.940097334819555],[-139.13239132391323,-9.928277293930378],[-139.12159121591216,-9.904637212152025],[-139.10359103591037,-9.887751439453197],[-139.08199081990819,-9.899571480342374]]],[[[-140.07560075600756,-9.323766631312381],[-140.0540005400054,-9.345718135820846],[-140.0432004320043,-9.350783867630497],[-140.02880028800288,-9.344029558550972],[-140.03960039600395,-9.37442394940885],[-140.05040050400504,-9.408195494806506],[-140.06120061200613,-9.435212731124636],[-140.09360093600935,-9.447032772013813],[-140.11160111601117,-9.438589885664399],[-140.15840158401585,-9.371046794869088],[-140.14040140401403,-9.357538176710023],[-140.12240122401224,-9.340652404011209],[-140.10080100801008,-9.325455208582255],[-140.07560075600756,-9.323766631312381]]],[[[-139.5139951399514,-8.884736541142871],[-139.50319503195033,-8.898245159301936],[-139.5067950679507,-8.911753777461001],[-139.52479524795248,-8.92188524108029],[-139.54279542795427,-8.92695097288994],[-139.5859958599586,-8.92863955015983],[-139.6039960399604,-8.937082436509243],[-139.61839618396183,-8.953968209208071],[-139.61119611196114,-8.938771013779117],[-139.61839618396183,-8.925262395620052],[-139.62559625596256,-8.910065200191113],[-139.62919629196293,-8.894868004762174],[-139.59679596795968,-8.857719304824755],[-139.58959589595895,-8.857719304824755],[-139.58239582395822,-8.869539345713932],[-139.57519575195752,-8.869539345713932],[-139.55719557195573,-8.86447361390428],[-139.54639546395464,-8.867850768444043],[-139.5139951399514,-8.884736541142871]]],[[[158.2269822698227,-8.774979018600504],[158.25578255782557,-8.785110482219793],[158.25578255782557,-8.795241945839095],[158.2521825218252,-8.80199625491862],[158.24498244982453,-8.808750563998146],[158.22338223382235,-8.813816295807797],[158.20178201782016,-8.830702068506625],[158.18738187381877,-8.837456377586165],[158.16938169381694,-8.807061986728272],[158.16218162181622,-8.80199625491862],[158.1549815498155,-8.79693052310897],[158.1549815498155,-8.783421904949918],[158.16218162181622,-8.758093245901676],[158.16578165781658,-8.749650359552263],[158.1945819458195,-8.727698855043784],[158.19818198181986,-8.717567391424481],[158.20538205382053,-8.707435927805193],[158.2089820898209,-8.693927309646128],[158.2089820898209,-8.678730114217188],[158.21618216182162,-8.678730114217188],[158.21618216182162,-8.700681618725653],[158.22338223382235,-8.714190236884718],[158.23058230582308,-8.737830318663072],[158.23418234182344,-8.76147040044144],[158.2269822698227,-8.774979018600504]]],[[[179.189991899919,-8.541955355356691],[179.20079200792009,-8.5301353144675],[179.20439204392045,-8.518315273578324],[179.20079200792009,-8.50987238722891],[179.19719197191972,-8.498052346339733],[179.19719197191972,-8.481166573640905],[179.20079200792009,-8.460903646402315],[179.2079920799208,-8.47441226456138],[179.2079920799208,-8.498052346339733],[179.21519215192154,-8.511560964498798],[179.2187921879219,-8.520003850848212],[179.2079920799208,-8.5301353144675],[179.189991899919,-8.541955355356691]]],[[[178.379983799838,-8.070842297059414],[178.37278372783732,-8.069153719789526],[178.37638376383762,-8.055645101630475],[178.38358383583835,-8.038759328931647],[178.39078390783908,-8.026939288042456],[178.379983799838,-8.070842297059414]]],[[[-155.89775897758977,-5.617339523919853],[-155.87975879758798,-5.608896637570439],[-155.86535865358653,-5.615650946649964],[-155.85815858158583,-5.625782410269267],[-155.8689586895869,-5.630848142078918],[-155.9049590495905,-5.635913873888555],[-155.9229592295923,-5.629159564809029],[-155.9337593375934,-5.608896637570439],[-155.9229592295923,-5.608896637570439],[-155.91575915759157,-5.608896637570439],[-155.90855908559087,-5.6122737921102015],[-155.89775897758977,-5.617339523919853]]],[[[-155.0121501215012,-4.046962662928948],[-154.96174961749617,-4.031765467499994],[-154.940149401494,-4.031765467499994],[-154.94734947349474,-4.053716972008473],[-154.95454954549547,-4.060471281087999],[-154.9581495814958,-4.070602744707301],[-154.9581495814958,-4.082422785596478],[-154.95454954549547,-4.0942428264856545],[-154.96534965349653,-4.0942428264856545],[-154.97614976149762,-4.079045631056715],[-154.99054990549905,-4.073979899247064],[-154.99774997749978,-4.070602744707301],[-155.0121501215012,-4.060471281087999],[-155.01935019350194,-4.052028394738585],[-155.0121501215012,-4.046962662928948]]],[[[107.39447394473945,-2.868335728550818],[107.40167401674017,-2.85144995585199],[107.42687426874272,-2.8345641831531623],[107.45927459274594,-2.824432719533874],[107.48447484474843,-2.821055564994097],[107.49527495274953,-2.8227441422639856],[107.49527495274953,-2.837941337692925],[107.49887498874989,-2.8446956467724647],[107.50607506075062,-2.854827110391753],[107.49527495274953,-2.876778614900232],[107.48087480874807,-2.898730119408711],[107.4628746287463,-2.915615892107539],[107.42687426874272,-2.925747355726827],[107.4088740887409,-2.947698860235306],[107.39807398073981,-2.939255973885892],[107.36927369273695,-2.9054844284882364],[107.34047340473404,-2.8869100785195343],[107.34767347673477,-2.8750900376303434],[107.36567365673659,-2.881844346709883],[107.38007380073805,-2.8750900376303434],[107.39447394473945,-2.868335728550818]]],[[[152.01332013320132,-2.8075469468350462],[152.00612006120065,-2.821055564994097],[151.98811988119883,-2.8311870286133995],[151.96651966519664,-2.837941337692925],[151.9269192691927,-2.85144995585199],[151.9161191611916,-2.8446956467724647],[151.9161191611916,-2.8126126786446832],[151.91251912519124,-2.78897259686633],[151.90891908919093,-2.7535124741988],[151.91251912519124,-2.706232310642079],[151.93411934119342,-2.706232310642079],[151.97731977319773,-2.7214295060710185],[151.98451984519846,-2.7248066606107955],[152.00612006120065,-2.741692433309609],[152.009720097201,-2.745069587849386],[152.009720097201,-2.7535124741988],[152.009720097201,-2.7737754014373905],[152.009720097201,-2.7923497514060927],[151.9917199171992,-2.8007926377555066],[151.99531995319956,-2.802481215025395],[151.99891998919992,-2.8143012559145717],[152.009720097201,-2.8075469468350462],[152.01332013320132,-2.8075469468350462]]],[[[147.82647826478268,-2.2368078296146905],[147.8480784807848,-2.265513643202695],[147.86247862478626,-2.27902226136176],[147.88047880478808,-2.2857765704412856],[147.8588785887859,-2.3246138476485925],[147.84087840878408,-2.3414996203474203],[147.8156781567816,-2.3482539294269458],[147.77607776077764,-2.3482539294269458],[147.76167761677618,-2.3465653521570715],[147.7508775087751,-2.3414996203474203],[147.72927729277296,-2.3263024249184667],[147.73287732877333,-2.3195481158389413],[147.73287732877333,-2.3161709612991785],[147.73647736477363,-2.312793806759416],[147.76167761677618,-2.3212366931088297],[147.78687786877867,-2.3111052294895273],[147.80127801278013,-2.2908423022509368],[147.7940779407794,-2.265513643202695],[147.80127801278013,-2.260447911393044],[147.80847808478086,-2.25200502504363],[147.81207812078122,-2.2452507159641044],[147.81207812078122,-2.2368078296146905],[147.82647826478268,-2.2368078296146905]]],[[[134.38394383943842,-2.0037841663708775],[134.39834398343987,-2.005472743640766],[134.4091440914409,-2.0122270527202915],[134.419944199442,-2.0223585163395796],[134.42714427144273,-2.032489979958882],[134.42714427144273,-2.0392442890384075],[134.42354423544236,-2.045998598117947],[134.39834398343987,-2.0915901844047795],[134.39114391143914,-2.1321160388819607],[134.3767437674377,-2.1490018115807885],[134.35874358743587,-2.1540675433904397],[134.3407434074341,-2.1354931934217234],[134.33354333543338,-2.11185311164337],[134.33354333543338,-2.0831472980553656],[134.3407434074341,-2.0561300617372353],[134.35154351543514,-2.032489979958882],[134.3551435514355,-2.0223585163395796],[134.3659436594366,-2.01391562999018],[134.37314373143732,-2.0071613209106403],[134.38394383943842,-2.0037841663708775]]],[[[123.85743857438575,-1.9497496937346313],[123.86463864638648,-1.9902755482118124],[123.86823868238685,-1.9987184345612263],[123.85743857438575,-1.9919641254817009],[123.84663846638466,-1.9953412800214636],[123.83943839438393,-2.002095589100989],[123.83223832238326,-2.005472743640766],[123.81063810638108,-2.000407011831115],[123.79263792637926,-1.9919641254817009],[123.78903789037889,-1.9801440845925242],[123.7746377463775,-1.922732457416501],[123.77103771037713,-1.895715221098385],[123.78903789037889,-1.873763716589906],[123.8430384303843,-1.9294867664960407],[123.85383853838539,-1.9379296528454546],[123.85743857438575,-1.9497496937346313]]],[[[123.13383133831337,-1.7656947713174134],[123.14463144631446,-1.7758262349367158],[123.15183151831519,-1.799466316715069],[123.15183151831519,-1.8231063984934224],[123.1410314103141,-1.8399921711922502],[123.130231302313,-1.84674648027179],[123.11583115831161,-1.8585665211609665],[123.10503105031052,-1.8703865620501432],[123.10143101431015,-1.8855837574790826],[123.09783097830979,-1.895715221098385],[123.08343083430833,-1.9024695301779104],[123.0726307263073,-1.9024695301779104],[123.06903069030693,-1.8923380665586222],[123.06903069030693,-1.8399921711922502],[123.07623076230766,-1.8197292439536596],[123.09063090630906,-1.7792033894764785],[123.09423094230942,-1.769071925857176],[123.09423094230942,-1.7555633076981252],[123.10143101431015,-1.7488089986185855],[123.11583115831161,-1.7521861531583482],[123.130231302313,-1.7606290395077622],[123.13383133831337,-1.7656947713174134]]],[[[174.76554765547655,-1.2033985404464715],[174.77274772747728,-1.2473015494634296],[174.779947799478,-1.2641873221622575],[174.75474754747546,-1.2574330130827178],[174.7475474754748,-1.2371700858441272],[174.75114751147515,-1.2000213859067088],[174.7475474754748,-1.1865127677476437],[174.7151471514715,-1.1341668723812859],[174.7259472594726,-1.1358554496511744],[174.73314733147333,-1.1375440269210486],[174.7367473674737,-1.1426097587306998],[174.74394743947443,-1.147675490540351],[174.7475474754748,-1.1662498405090531],[174.76554765547655,-1.2033985404464715]]],[[[174.47754477544777,-0.7103339776407296],[174.47754477544777,-0.720465441260032],[174.49194491944922,-0.747482677578148],[174.49914499144995,-0.7896971093252176],[174.49914499144995,-0.7964514184047431],[174.4955449554496,-0.804894304754157],[174.4847448474485,-0.8200915001831106],[174.4739447394474,-0.813337191103571],[174.47034470344704,-0.8065828820240455],[174.4739447394474,-0.8015171502143943],[174.4847448474485,-0.7981399956746316],[174.48114481144813,-0.804894304754157],[174.48114481144813,-0.8065828820240455],[174.4847448474485,-0.813337191103571],[174.49914499144995,-0.7964514184047431],[174.49914499144995,-0.7947628411348688],[174.4955449554496,-0.7761884911661525],[174.47754477544777,-0.7407283684986226],[174.4631446314463,-0.6478566186550694],[174.47754477544777,-0.6698081231635484],[174.47754477544777,-0.7103339776407296]]],[[[174.43794437944382,-0.6275936914164788],[174.4487444874449,-0.6309708459562415],[174.45954459544595,-0.637725155035767],[174.4631446314463,-0.6444794641153067],[174.45234452344522,-0.6478566186550694],[174.43794437944382,-0.6411023095755439],[174.39114391143914,-0.6056421869079998],[174.38034380343805,-0.5921335687489346],[174.3947439474395,-0.5921335687489346],[174.40194401944018,-0.602265032368237],[174.4307443074431,-0.6242165368767161],[174.43794437944382,-0.6275936914164788]]],[[[166.93906939069393,-0.49081893255598175],[166.9570695706957,-0.4975732416355072],[166.9570695706957,-0.5178361688740978],[166.94986949869502,-0.5397876733825768],[166.93906939069393,-0.5516077142717535],[166.91746917469175,-0.5482305597319908],[166.90666906669065,-0.5245904779536374],[166.91386913869138,-0.5009503961752699],[166.93906939069393,-0.49081893255598175]]],[[[127.4610746107461,-0.004508678829765245],[127.4610746107461,-0.024771606068355823],[127.4610746107461,-0.038280224227420945],[127.45387453874542,-0.04165737876718367],[127.4358743587436,-0.02814876060811855],[127.43227432274324,-0.021394451528593095],[127.43227432274324,-0.0112629879092907],[127.43227432274324,0.007311362059411408],[127.42867428674288,0.008999939329299877],[127.41427414274142,0.024197134758239258],[127.41067410674106,0.015754248408825333],[127.41067410674106,0.010688516599188347],[127.40707407074069,0.007311362059411408],[127.39987399874002,0.002245630249774422],[127.39267392673929,0.025885712028127728],[127.39267392673929,0.05290294834624376],[127.39987399874002,0.10693742098249004],[127.40707407074069,0.1474632754596854],[127.43947439474397,0.13902038911027148],[127.45387453874542,0.14070896638014574],[127.4466744667447,0.13395465730062028],[127.43947439474397,0.12044603914155516],[127.4610746107461,-0.004508678829765245]]],[[[127.37827378273784,0.6236420655665995],[127.37467374673747,0.6337735291859019],[127.36387363873638,0.6489707246148413],[127.36027360273602,0.6658564973136691],[127.37467374673747,0.6996280427113248],[127.38547385473856,0.7570396698873338],[127.39627396273966,0.7519739380776826],[127.40347403474038,0.7502853608078084],[127.41067410674106,0.7519739380776826],[127.41787417874178,0.7570396698873338],[127.42507425074251,0.7536625153475711],[127.43227432274324,0.7502853608078084],[127.4358743587436,0.7469082062680457],[127.43947439474397,0.7435310517282687],[127.44307443074433,0.7266452790294409],[127.4466744667447,0.7063823517908503],[127.45027450274506,0.6844308472823855],[127.4466744667447,0.6675450745835576],[127.43227432274324,0.652347879154604],[127.41067410674106,0.6320849519160134],[127.38907389073893,0.6185763337569483],[127.37827378273784,0.6236420655665995]]],[[[127.37107371073711,0.7840569062054641],[127.36027360273602,0.7654825562367478],[127.34587345873462,0.7570396698873338],[127.33147331473316,0.7570396698873338],[127.31347313473134,0.7570396698873338],[127.3026730267303,0.7654825562367478],[127.29187291872921,0.7823683289355756],[127.28467284672848,0.8026312561741662],[127.28107281072812,0.8144512970633428],[127.28827288272885,0.8364028015718219],[127.30627306273061,0.8549771515405382],[127.32427324273243,0.8634200378899521],[127.36387363873638,0.8414685333814731],[127.37467374673747,0.8262713379525195],[127.37827378273784,0.8076969879838174],[127.37107371073711,0.7840569062054641]]],[[[172.9907299072991,0.8347142243019334],[172.99792997929978,0.8448456879212358],[173.01233012330124,0.8600428833501752],[173.02313023130233,0.8819943878586542],[173.04833048330482,0.9022573150972448],[173.05553055530555,0.9275859741454866],[173.06273062730628,0.937717437764789],[173.069930699307,0.9495374786539656],[173.07353073530737,0.9630460968130308],[173.06273062730628,0.9748661377022074],[173.04473044730446,0.9883747558612583],[173.0267302673027,0.9985062194805607],[173.00873008730088,1.003571951290212],[173.00873008730088,1.0001947967504492],[173.00873008730088,0.9900633331311468],[173.0051300513005,0.9900633331311468],[173.0051300513005,1.0018833740203235],[173.00153001530015,1.0103262603697374],[172.99432994329942,1.0187691467191513],[172.9907299072991,1.0238348785288025],[173.0051300513005,1.0238348785288025],[173.0159301593016,1.0086376830998631],[173.06633066330664,0.9765547149720817],[173.07713077130774,0.9664232513527935],[173.0807308073081,0.9596689422732538],[173.0807308073081,0.9444717468443145],[173.06273062730628,0.9140773559864215],[173.04833048330482,0.9039458923671333],[173.01233012330124,0.8549771515405382],[172.9907299072991,0.8347142243019334]]],[[[173.0375303753038,1.7769403408964877],[173.0375303753038,1.743168795498832],[173.03033030330306,1.7161515591807017],[173.0051300513005,1.7093972501011763],[172.99792997929978,1.7110858273710647],[172.99432994329942,1.712774404640939],[172.9907299072991,1.7161515591807017],[173.02313023130233,1.721217290990353],[173.03393033930342,1.743168795498832],[173.03393033930342,1.773563186356725],[173.02313023130233,1.8056461544844922],[173.0267302673027,1.8056461544844922],[173.0267302673027,1.8073347317543806],[173.0267302673027,1.809023309024255],[173.0267302673027,1.8107118862941434],[173.0375303753038,1.7769403408964877]]],[[[172.97992979929802,1.8816321316292175],[173.01953019530197,1.8275976589929712],[173.02313023130233,1.8208433499134316],[172.97632976329766,1.8731892452798036],[172.9619296192962,1.9002064815979196],[172.95472954729547,1.9086493679473335],[172.9367293672937,1.9238465633762871],[172.93312933129334,1.9322894497256868],[172.93312933129334,1.9424209133449892],[172.94032940329407,1.9272237179160498],[172.96912969129693,1.9069607906774593],[172.97632976329766,1.8968293270581569],[172.97992979929802,1.8816321316292175]]],[[[125.44505445054449,2.7934638573658646],[125.45225452254522,2.778266661936925],[125.44865448654485,2.76475804377786],[125.44145441454418,2.7529380028886834],[125.41625416254163,2.7309864983802044],[125.4090540905409,2.724232189300679],[125.40545405454054,2.7174778802211534],[125.40185401854018,2.7005921075223256],[125.40545405454054,2.6870834893632605],[125.419854198542,2.668509139394544],[125.42345423454236,2.6566890985053675],[125.42345423454236,2.644869057616191],[125.419854198542,2.6347375939969027],[125.41265412654127,2.627983284917363],[125.39105391053914,2.6296718621872515],[125.38385383853841,2.641491903076428],[125.37665376653769,2.6600662530451302],[125.37665376653769,2.6786406030138465],[125.37305373053732,2.693837798442786],[125.35865358653587,2.7225436120307904],[125.3550535505355,2.7411179619995067],[125.35865358653587,2.7529380028886834],[125.38025380253805,2.7917752800959903],[125.38745387453878,2.8019067437152785],[125.40185401854018,2.8103496300646924],[125.41625416254163,2.8103496300646924],[125.43065430654309,2.803595320985167],[125.44505445054449,2.7934638573658646]]],[[[172.74952749527495,3.0315532524193287],[172.77112771127713,3.023110366069915],[172.78912789127895,3.0298646751494545],[172.80352803528035,3.041684716038631],[172.81432814328144,3.0568819114675705],[172.8287282872829,3.063636220547096],[172.86832868328685,3.067013375086873],[172.88632886328867,3.0737676841663983],[172.88632886328867,3.067013375086873],[172.88632886328867,3.0619476432772217],[172.87912879128794,3.0518161796579193],[172.8431284312843,3.060259066007333],[172.81072810728108,3.0399961387687426],[172.7855278552786,3.0163560569903893],[172.77112771127713,3.011290325180738],[172.7639276392764,3.014667479720501],[172.75672756727568,3.019733211530152],[172.7531275312753,3.0247989433398033],[172.74952749527495,3.0315532524193287]]],[[[172.9619296192962,3.1413107749617097],[172.96552965529656,3.1362450431520585],[172.96912969129693,3.132867888612296],[172.96912969129693,3.1278021568026446],[172.94752947529474,3.1227364249929934],[172.90072900729007,3.1007849204845144],[172.88632886328867,3.1007849204845144],[172.94392943929438,3.1278021568026446],[172.9619296192962,3.1413107749617097]]],[[[126.7446674466745,3.8538903828521995],[126.78066780667808,3.8437589192329114],[126.8130681306813,3.8234959919943208],[126.83466834668349,3.7964787556761905],[126.84186841868421,3.7795929829773627],[126.85626856268561,3.757641478468898],[126.83826838268385,3.7441328603098327],[126.8130681306813,3.732312819420656],[126.76626766267663,3.7728386738978372],[126.73746737467377,3.8234959919943208],[126.7446674466745,3.8538903828521995]]],[[[-159.28539285392853,3.87415331009079],[-159.27819278192783,3.8657104237413904],[-159.26739267392674,3.8454474965027856],[-159.2529925299253,3.8285617238039578],[-159.24939249392494,3.820118837454544],[-159.2529925299253,3.8099873738352557],[-159.26379263792637,3.7998559102159533],[-159.28539285392853,3.789724446596665],[-159.30699306993068,3.784658714787014],[-159.33219332193323,3.7863472920569023],[-159.3537935379354,3.7998559102159533],[-159.3609936099361,3.820118837454544],[-159.3429934299343,3.820118837454544],[-159.29619296192962,3.806610219295493],[-159.28539285392853,3.811675951105144],[-159.28539285392853,3.8234959919943208],[-159.28539285392853,3.8370046101533717],[-159.29259292592926,3.847136073772674],[-159.29979299792998,3.8538903828521995],[-159.3249932499325,3.8657104237413904],[-159.33579335793357,3.8707761555510274],[-159.3429934299343,3.88090761917033],[-159.34659346593466,3.902859123678809],[-159.3537935379354,3.9096134327583343],[-159.36459364593645,3.9113020100282228],[-159.3789937899379,3.907924855488446],[-159.3861938619386,3.899481969139032],[-159.39339393393934,3.8893505055197437],[-159.36819368193682,3.8403817646931486],[-159.41139411394113,3.8623332692016135],[-159.40779407794076,3.902859123678809],[-159.37539375393754,3.9332535145366876],[-159.3429934299343,3.926499205457162],[-159.33219332193323,3.9113020100282228],[-159.3249932499325,3.9011705464089204],[-159.3249932499325,3.891039082789618],[-159.32139321393214,3.8792190419004413],[-159.30699306993068,3.8758418873606786],[-159.29619296192962,3.877530464630567],[-159.28539285392853,3.87415331009079]]],[[[163.02583025830262,5.341526957618868],[163.02943029430298,5.336461225809217],[163.03663036630365,5.333084071269454],[163.04383043830438,5.331395493999565],[163.04743047430475,5.322952607650151],[163.04383043830438,5.311132566760975],[163.02583025830262,5.280738175903082],[163.0186301863019,5.272295289553668],[163.00423004230043,5.268918135013905],[162.99342993429934,5.272295289553668],[162.98262982629825,5.277361021363319],[162.96822968229685,5.280738175903082],[162.94662946629467,5.280738175903082],[162.9322293222932,5.28242675317297],[162.9178291782918,5.2874924849826215],[162.91062910629108,5.304378257681449],[162.92502925029254,5.321264030380263],[162.97182971829722,5.361789884857458],[162.98982989829898,5.375298503016509],[163.01143011430116,5.38036423482616],[163.02583025830262,5.368544193936984],[163.02583025830262,5.363478462127333],[163.02583025830262,5.348281266698393],[163.02583025830262,5.341526957618868]]],[[[169.58869588695887,5.800819975026954],[169.61029610296106,5.812640015916131],[169.6174961749618,5.817705747725782],[169.62469624696246,5.827837211345084],[169.62829628296282,5.839657252234261],[169.6390963909639,5.87005164309214],[169.64629646296464,5.9173318066488605],[169.65709657096573,5.942660465697102],[169.6750967509675,5.961234815665819],[169.70029700297005,5.976432011094758],[169.71829718297187,5.993317783793586],[169.73629736297363,6.013580711032176],[169.72189721897217,5.976432011094758],[169.66429664296646,5.9392833111573395],[169.65349653496537,5.900446033950033],[169.64629646296464,5.87005164309214],[169.63549635496355,5.8295257886149585],[169.61389613896142,5.79913139775708],[169.58869588695887,5.800819975026954]]],[[[171.7559175591756,6.972692600325544],[171.7307173071731,6.976069754865321],[171.68751687516874,7.0064641457232],[171.65871658716588,7.01321845480274],[171.61551615516157,7.0064641457232],[171.5939159391594,7.014907032072614],[171.57591575915762,7.046990000200381],[171.58671586715866,7.03348138204133],[171.59751597515975,7.025038495691916],[171.6119161191612,7.019972763882265],[171.6767167671677,7.023349918422028],[171.6911169111691,7.019972763882265],[171.73431734317347,6.984512641214721],[171.7559175591756,6.972692600325544]]],[[[171.39231392313923,7.109467359186041],[171.36711367113674,7.094270163757102],[171.2951129511295,7.084138700137814],[171.2627126271263,7.067252927438986],[171.23391233912338,7.067252927438986],[171.20151201512016,7.072318659248623],[171.06111061110613,7.134796018234283],[171.03591035910358,7.155058945472874],[171.05031050310504,7.170256140901827],[171.05031050310504,7.161813254552413],[171.0539105391054,7.155058945472874],[171.05751057510577,7.143238904583697],[171.2267122671227,7.0756958137884],[171.23751237512374,7.0756958137884],[171.2627126271263,7.080761545598037],[171.28431284312842,7.0875158546775765],[171.39231392313923,7.109467359186041]]],[[[168.75708757087574,7.308719477032213],[168.8290882908829,7.308719477032213],[168.8146881468815,7.291833704333385],[168.79308793087932,7.293522281603259],[168.74628746287465,7.303653745222562],[168.6958869588696,7.31378520884185],[168.67428674286742,7.3205395179213895],[168.6778867788678,7.335736713350329],[168.69228692286924,7.322228095191264],[168.71748717487174,7.315473786111738],[168.73908739087392,7.308719477032213],[168.75708757087574,7.308719477032213]]],[[[151.58851588515887,7.38301687690705],[151.6209162091621,7.391459763256464],[151.63531635316355,7.386394031446812],[151.649716497165,7.3695082587479845],[151.649716497165,7.354311063319045],[151.64611646116464,7.335736713350329],[151.63531635316355,7.327293827000915],[151.62451624516245,7.342491022429854],[151.61731617316173,7.342491022429854],[151.6065160651607,7.335736713350329],[151.5957159571596,7.337425290620217],[151.58131581315814,7.34080244515998],[151.56691566915669,7.342491022429854],[151.57051570515705,7.345868176969631],[151.5741157411574,7.3475567542395055],[151.58131581315814,7.349245331509394],[151.59211592115923,7.352622486049157],[151.61731617316173,7.359376795128682],[151.62451624516245,7.366131104208222],[151.61731617316173,7.37626256782751],[151.5957159571596,7.372885413287747],[151.58851588515887,7.38301687690705]]],[[[151.87651876518765,7.459002854051761],[151.88371883718838,7.464068585861412],[151.8909189091891,7.462380008591538],[151.9017190171902,7.459002854051761],[151.9161191611916,7.459002854051761],[151.90891908919093,7.447182813162584],[151.8909189091891,7.4353627722734075],[151.8729187291873,7.4269198859239935],[151.85491854918553,7.425231308654105],[151.85491854918553,7.437051349543296],[151.8585185851859,7.447182813162584],[151.8621186211862,7.4657571631313004],[151.86571865718656,7.464068585861412],[151.86931869318693,7.464068585861412],[151.87651876518765,7.459002854051761]]],[[[166.90306903069035,11.172184270523815],[166.89586895868962,11.155298497824987],[166.87426874268743,11.145167034205699],[166.8526685266853,11.145167034205699],[166.8346683466835,11.158675652364764],[166.87066870668707,11.162052806904526],[166.90306903069035,11.172184270523815]]],[[[122.28062280622805,12.605786372654237],[122.29862298622987,12.573703404526455],[122.31302313023133,12.536554704589037],[122.30942309423097,12.501094581921507],[122.28062280622805,12.474077345603376],[122.26262262622629,12.492651695572093],[122.25542255422556,12.511226045540795],[122.2518225182252,12.529800395509511],[122.2518225182252,12.550063322748102],[122.2518225182252,12.553440477287864],[122.24822248222483,12.558506209097516],[122.24462244622447,12.565260518177041],[122.24462244622447,12.570326249986692],[122.24822248222483,12.575391981796344],[122.25542255422556,12.578769136336106],[122.25902259022592,12.583834868145757],[122.26622266222665,12.604097795384348],[122.26982269822702,12.612540681733762],[122.28062280622805,12.619294990813287],[122.28062280622805,12.605786372654237]]],[[[121.21141211412117,19.176040529767818],[121.21861218612185,19.170974797958166],[121.22581225812257,19.165909066148515],[121.22941229412294,19.15915475706899],[121.24021240212403,19.118628902591794],[121.25101251012512,19.081480202654376],[121.25821258212585,19.046020079986846],[121.2438124381244,19.019002843668716],[121.20781207812081,19.04939723452661],[121.19701197011972,19.066283007225437],[121.18981189811899,19.086545934464027],[121.19341193411935,19.11187459351227],[121.20781207812081,19.15408902525934],[121.21141211412117,19.176040529767818]]],[[[122.01062010620109,20.488065068466668],[122.01782017820182,20.48637649119678],[122.02862028620285,20.481310759387142],[122.03222032220322,20.47286787303773],[122.03222032220322,20.464424986688314],[122.02502025020249,20.4559821003389],[121.99261992619927,20.432342018560533],[121.96741967419678,20.41376766859183],[121.96381963819641,20.407013359512305],[121.96741967419678,20.39350474135324],[121.97101971019714,20.3867504322737],[121.97461974619745,20.379996123194175],[121.97101971019714,20.368176082305],[121.95661956619568,20.354667464145933],[121.93861938619386,20.347913155066408],[121.9206192061921,20.354667464145933],[121.91701917019174,20.376618968654412],[121.9206192061921,20.39350474135324],[121.96381963819641,20.45091636852925],[121.96741967419678,20.46104783214855],[121.98181981819818,20.47286787303773],[121.99621996219963,20.484687913926905],[122.01062010620109,20.488065068466668]]],[[[121.87741877418773,20.770057472537076],[121.8666186661867,20.744728813488834],[121.85221852218524,20.719400154440592],[121.83061830618306,20.699137227202],[121.8018180181802,20.690694340852588],[121.78741787417874,20.702514381741764],[121.79101791017911,20.729531618059895],[121.80541805418056,20.7582374316479],[121.82341823418233,20.786943245235904],[121.83781837818378,20.82071479063356],[121.84501845018451,20.83084625425286],[121.8558185581856,20.837600563332387],[121.8666186661867,20.837600563332387],[121.87381873818737,20.827469099713085],[121.8810188101881,20.813960481554034],[121.8810188101881,20.79876328612508],[121.8810188101881,20.78525466796603],[121.87741877418773,20.770057472537076]]],[[[-79.95139951399514,53.35115589492375],[-79.95499954999549,53.322450081335745],[-79.9189991899919,53.29712142228749],[-79.92259922599226,53.27516991777904],[-79.94779947799478,53.26672703142961],[-79.98379983799838,53.265038454159736],[-80.01980019800197,53.273481340509136],[-80.0450004500045,53.308941463176694],[-80.07020070200701,53.31907292679597],[-80.08460084600846,53.330892967685145],[-80.07020070200701,53.35453304946353],[-80.04140041400413,53.3663530903527],[-79.9729997299973,53.3646645130828],[-79.94419944199441,53.371418822162326],[-79.94779947799478,53.3663530903527],[-79.94779947799478,53.36128735854305],[-79.94779947799478,53.357910204003275],[-79.95139951399514,53.35115589492375]]],[[[-79.5949959499595,56.770524866436205],[-79.58059580595805,56.77727917551573],[-79.57339573395734,56.77727917551573],[-79.57339573395734,56.784033484595284],[-79.58419584195842,56.789099216404935],[-79.58779587795878,56.79585352548446],[-79.58779587795878,56.802607834563986],[-79.58059580595805,56.81273929818329],[-79.57339573395734,56.81780502999294],[-79.56979569795698,56.81611645272304],[-79.56619566195661,56.811050720913386],[-79.5589955899559,56.80598498910376],[-79.5589955899559,56.802607834563986],[-79.55179551795517,56.78741063913503],[-79.55179551795517,56.784033484595284],[-79.54459544595446,56.784033484595284],[-79.53739537395374,56.78572206186516],[-79.52659526595265,56.784033484595284],[-79.51939519395194,56.78572206186516],[-79.51219512195122,56.784033484595284],[-79.5049950499505,56.770524866436205],[-79.5049950499505,56.775590598245856],[-79.50139501395013,56.77390202097598],[-79.49779497794978,56.770524866436205],[-79.48339483394834,56.740130475578326],[-79.47979479794797,56.7232447028795],[-79.49059490594905,56.71649039379997],[-79.47979479794797,56.704670352910796],[-79.47979479794797,56.69453888929149],[-79.4869948699487,56.664144498433615],[-79.49419494194942,56.66076734389384],[-79.51579515795157,56.66752165297336],[-79.53019530195301,56.65570161208419],[-79.54819548195482,56.63375010757571],[-79.56619566195661,56.62024148941666],[-79.58059580595805,56.63375010757571],[-79.58419584195842,56.64894730300466],[-79.57699576995769,56.65739018935406],[-79.56979569795698,56.664144498433615],[-79.56259562595626,56.67596453932279],[-79.55539555395553,56.70129319837102],[-79.55539555395553,56.704670352910796],[-79.54819548195482,56.72831043468915],[-79.5589955899559,56.74688478465785],[-79.5949959499595,56.770524866436205]]],[[[-79.7929979299793,57.42907000169046],[-79.80739807398074,57.43413573350011],[-79.82899828998289,57.452710083468816],[-79.8469984699847,57.47297301070742],[-79.85059850598506,57.48648162886647],[-79.83979839798397,57.48985878340625],[-79.82539825398254,57.4847930515966],[-79.8109981099811,57.4847930515966],[-79.80379803798037,57.51181028791473],[-79.7929979299793,57.51856459699425],[-79.78579785797858,57.521941751534],[-79.77859778597785,57.52700748334365],[-79.78579785797858,57.537138946962955],[-79.79659796597966,57.53545036969308],[-79.81819818198181,57.523630328803904],[-79.82899828998289,57.528696060613555],[-79.82539825398254,57.53882752423283],[-79.81459814598145,57.55571329693166],[-79.80739807398074,57.569221915090736],[-79.78939789397893,57.586107687789564],[-79.77139771397714,57.60130488321849],[-79.75339753397533,57.60805919229804],[-79.74979749797498,57.61143634683779],[-79.74259742597425,57.61819065591732],[-79.73539735397354,57.621567810457094],[-79.72819728197281,57.61650207864744],[-79.7209972099721,57.60805919229804],[-79.71379713797138,57.58948484232931],[-79.70299702997029,57.572599069630485],[-79.69579695796958,57.55233614239191],[-79.69579695796958,57.528696060613555],[-79.70299702997029,57.51181028791473],[-79.7209972099721,57.501678824295425],[-79.76059760597606,57.52025317426413],[-79.77859778597785,57.51181028791473],[-79.78579785797858,57.493235937946],[-79.78579785797858,57.444267197119416],[-79.7929979299793,57.42907000169046]]],[[[-80.2250022500225,59.73060082054059],[-80.21060210602106,59.72215793419116],[-80.16740167401673,59.715403625111634],[-80.14940149401494,59.71033789330198],[-80.15660156601565,59.70189500695258],[-80.16020160201602,59.69682927514293],[-80.16020160201602,59.69176354333328],[-80.15660156601565,59.68332065698388],[-80.16020160201602,59.68332065698388],[-80.16380163801638,59.68163207971398],[-80.1710017100171,59.67656634790433],[-80.20700207002069,59.66812346155493],[-80.22140221402213,59.663057729745276],[-80.23580235802358,59.652926266125974],[-80.23940239402394,59.64786053431632],[-80.25020250202502,59.6326633388874],[-80.25740257402573,59.62590902980784],[-80.26460264602646,59.62422045253797],[-80.28620286202862,59.62084329799822],[-80.30780307803077,59.61577756618857],[-80.31860318603185,59.61408898891867],[-80.32580325803258,59.61408898891867],[-80.34380343803437,59.61915472072832],[-80.34380343803437,59.622531875268095],[-80.33660336603366,59.627597607077746],[-80.33300333003329,59.63941764796692],[-80.32580325803258,59.64786053431632],[-80.30780307803077,59.65461484339585],[-80.2970029700297,59.663057729745276],[-80.30060300603006,59.67656634790433],[-80.28620286202862,59.68163207971398],[-80.27540275402754,59.68163207971398],[-80.2610026100261,59.67825492517423],[-80.24660246602465,59.67656634790433],[-80.24660246602465,59.68332065698388],[-80.25020250202502,59.685009234253755],[-80.25380253802538,59.69176354333328],[-80.25740257402573,59.69682927514293],[-80.25020250202502,59.70189500695258],[-80.23940239402394,59.71033789330198],[-80.23580235802358,59.720469356921285],[-80.23220232202321,59.73060082054059],[-80.22860228602286,59.725535088730936],[-80.2250022500225,59.72722366600081],[-80.2250022500225,59.73060082054059]]],[[[-23.438034380343794,69.74217545367512],[-23.348033480334806,69.74724118548474],[-23.297632976329766,69.74217545367512],[-23.25803258032579,69.72866683551604],[-23.229232292322905,69.6830752492292],[-23.22563225632257,69.67125520834003],[-23.240032400323997,69.65268085837133],[-23.27603276032761,69.6459265492918],[-23.481234812348106,69.65605801291107],[-23.546035460354602,69.67632094014968],[-23.59283592835928,69.71515821735699],[-23.56043560435603,69.72697825824616],[-23.517235172351718,69.73542114459556],[-23.438034380343794,69.74217545367512]]],[[[-24.798847988479878,72.91670072105458],[-24.788047880478786,72.91501214378471],[-24.777247772477722,72.9133235665148],[-24.773647736477358,72.90994641197506],[-24.780847808478086,72.90150352562563],[-24.798847988479878,72.88799490746658],[-24.881648816488166,72.86773198022797],[-24.870848708487074,72.85422336206892],[-24.86724867248671,72.83396043483032],[-24.870848708487074,72.81538608486161],[-24.874448744487438,72.79850031216279],[-24.899648996489958,72.78161453946396],[-24.94284942849427,72.77992596219408],[-25.040050400503986,72.78836884854348],[-25.09405094050939,72.80525462124231],[-25.28845288452885,72.83396043483032],[-25.32085320853207,72.8474690529894],[-25.28845288452885,72.8457804757195],[-25.21285212852129,72.85253478479905],[-25.184051840518407,72.86097767114845],[-25.173251732517315,72.8660434029581],[-25.158851588515887,72.88292917565693],[-25.148051480514795,72.88799490746658],[-25.130051300513003,72.89306063927623],[-25.058050580505807,72.88799490746658],[-25.03645036450365,72.89137206200633],[-24.996849968499674,72.9048806801654],[-24.97524975249752,72.90825783470515],[-24.798847988479878,72.91670072105458]]],[[[-18.736387363873632,74.63229522725541],[-18.72558725587254,74.63229522725541],[-18.721987219872204,74.62722949544576],[-18.729187291872904,74.61878660909633],[-18.74358743587436,74.61540945455658],[-18.74358743587436,74.6120323000168],[-18.74358743587436,74.60865514547703],[-18.74358743587436,74.60696656820716],[-18.75078750787506,74.60865514547703],[-18.729187291872904,74.58839221823845],[-18.736387363873632,74.5731950228095],[-18.75798757987579,74.5630635591902],[-18.822788227882285,74.54786636376127],[-19.14679146791468,74.55124351830102],[-19.1719917199172,74.5444892092215],[-19.16119161191611,74.55124351830102],[-19.157591575915745,74.55630925011067],[-19.15399153991538,74.56137498192032],[-19.189991899918994,74.56981786826975],[-19.207992079920785,74.57657217734928],[-19.222392223922242,74.58670364096855],[-19.20439204392042,74.59683510458785],[-19.14679146791468,74.60865514547703],[-19.081990819908185,74.63567238179516],[-18.905589055890545,74.67619823627234],[-18.855188551885504,74.67619823627234],[-18.7939879398794,74.67113250446269],[-18.765187651876516,74.66268961811329],[-18.75078750787506,74.64918099995421],[-18.786787867878672,74.64073811360481],[-18.8011880118801,74.63398380452529],[-18.811988119881192,74.62216376363611],[-18.772387723877245,74.62385234090598],[-18.754387543875424,74.62554091817586],[-18.736387363873632,74.63229522725541]]],[[[-18.37278372783726,74.71165835893987],[-18.318783187831883,74.71334693620977],[-18.304383043830427,74.71165835893987],[-18.311583115831155,74.70659262713025],[-18.318783187831883,74.70321547259047],[-18.329583295832947,74.70321547259047],[-18.336783367833675,74.70490404986035],[-18.34758347583474,74.70321547259047],[-18.35838358383583,74.6998383180507],[-18.379983799837987,74.68970685443142],[-18.379983799837987,74.68295254535187],[-18.34758347583474,74.67113250446269],[-18.325983259832583,74.65255815449399],[-18.32238322383222,74.63567238179516],[-18.35838358383583,74.62891807271563],[-18.480784807848067,74.62891807271563],[-18.49878498784986,74.63229522725541],[-18.495184951849524,74.64242669087469],[-18.50958509585095,74.65424673176386],[-18.53478534785347,74.66775534992294],[-18.5491854918549,74.67619823627234],[-18.5491854918549,74.69308400897117],[-18.55998559985599,74.70490404986035],[-18.577985779857784,74.71503551347965],[-18.59238592385924,74.72516697709895],[-18.469984699847004,74.71165835893987],[-18.37278372783726,74.71165835893987]]],[[[-19.809198091980903,74.89064754954745],[-19.76599765997659,74.88727039500768],[-19.74079740797407,74.88051608592815],[-19.729997299973007,74.86869604503897],[-19.733597335973343,74.85518742687992],[-19.751597515975163,74.84505596326062],[-19.79119791197911,74.83492449964132],[-19.89199891998919,74.77413571792553],[-19.967599675996752,74.7572499452267],[-20.046800468004676,74.71672409074952],[-20.086400864008624,74.70490404986035],[-20.136801368013664,74.6998383180507],[-20.2520025200252,74.70659262713025],[-20.32760327603276,74.72516697709895],[-20.432004320043205,74.73360986344835],[-20.66240662406622,74.80453010878344],[-20.680406804068042,74.82141588148227],[-20.658806588065886,74.83492449964132],[-20.59400594005939,74.86194173595945],[-20.576005760057598,74.87376177684862],[-20.56160561605614,74.89064754954745],[-20.550805508055078,74.90753332224628],[-20.54360543605435,74.92779624948486],[-20.550805508055078,74.94637059945359],[-20.572405724057234,74.96156779488251],[-20.61200612006118,74.9852078766609],[-20.601206012060118,74.99871649481994],[-20.56160561605614,75.00715938116934],[-20.47880478804788,75.03924234929713],[-20.338403384033825,75.05443954472608],[-20.187201872018704,75.04430808110678],[-20.10080100801008,75.02404515386817],[-20.007200072000728,75.01729084478865],[-19.978399783997844,75.01053653570912],[-19.960399603996024,74.99871649481994],[-19.967599675996752,74.9852078766609],[-19.985599855998544,74.97507641304159],[-20.17640176401764,74.93961629037406],[-20.20160201602016,74.92441909494511],[-20.194401944019432,74.91091047678606],[-20.17640176401764,74.9041561677065],[-20.154801548015485,74.90077901316675],[-20.136801368013664,74.90077901316675],[-20.13320133201333,74.90753332224628],[-20.129601296012964,74.91597620859568],[-20.122401224012236,74.92610767221498],[-20.111601116011144,74.93117340402463],[-20.10080100801008,74.92610767221498],[-20.086400864008624,74.92610767221498],[-20.061200612006104,74.93117340402463],[-20.028800288002884,74.92948482675476],[-20.018000180001792,74.92779624948486],[-20.018000180001792,74.92441909494511],[-19.992799927999272,74.92441909494511],[-19.809198091980903,74.89064754954745]]],[[[-19.319593195931958,77.88280647177959],[-19.290792907929074,77.87774073996994],[-19.26199261992619,77.86423212181089],[-19.240392403924034,77.84734634911206],[-19.23679236792367,77.82877199914336],[-19.26199261992619,77.80850907190475],[-19.308793087930866,77.8034433400951],[-19.69759697596976,77.85241208092171],[-20.086400864008624,77.89969224447842],[-20.475204752047517,77.94866098530503],[-20.489604896048945,77.9604810261942],[-20.46800468004679,77.9706124898135],[-20.439204392043905,77.97736679889303],[-20.205202052020525,77.97230106708338],[-20.162001620016184,77.97736679889303],[-20.118801188011872,77.98749826251233],[-20.054000540005404,77.99087541705208],[-20.014400144001428,77.99931830340151],[-19.996399963999636,77.99931830340151],[-19.97479974799748,77.99425257159186],[-19.956799567995688,77.98243253070268],[-19.927999279992804,77.9503495625749],[-19.909999099990983,77.93684094441585],[-19.89919899198992,77.9300866353363],[-19.7479974799748,77.89462651266876],[-19.359193591935906,77.89800366720854],[-19.319593195931958,77.88280647177959]]],[[[-20.3780037800378,78.136093062262],[-20.432004320043205,78.12765017591258],[-20.601206012060118,78.13271590772223],[-20.813608136081342,78.17493033946931],[-20.788407884078822,78.18168464854884],[-20.712807128071262,78.19012753489824],[-20.684006840068406,78.19688184397776],[-20.550805508055078,78.2424734302646],[-20.5040050400504,78.25091631661402],[-20.46800468004679,78.24922773934415],[-20.432004320043205,78.24078485299472],[-20.396003960039593,78.22558765756577],[-20.36720367203671,78.20532473032719],[-20.345603456034553,78.18337322581871],[-20.34200342003419,78.16311029858011],[-20.35280352803528,78.14791310315118],[-20.3780037800378,78.136093062262]]],[[[-18.235982359823595,78.61733758417856],[-18.250382503825023,78.60551754328938],[-18.31518315183152,78.58018888424115],[-18.47358473584734,78.54979449338325],[-18.47358473584734,78.5464173388435],[-18.469984699847004,78.53966302976397],[-18.46638466384664,78.53459729795432],[-18.50958509585095,78.52615441160489],[-18.563585635856356,78.52446583433502],[-18.61758617586176,78.53290872068442],[-18.653586535865344,78.5548602251929],[-18.631986319863188,78.56836884335198],[-18.563585635856356,78.58187746151103],[-18.502385023850223,78.61058327509903],[-18.451984519845183,78.62578047052799],[-18.39078390783908,78.63591193414729],[-18.25758257582575,78.63253477960751],[-18.228782287822867,78.62409189325811],[-18.235982359823595,78.61733758417856]]],[[[-19.125191251912526,78.71020933402212],[-19.15399153991538,78.7017664476727],[-19.315993159931594,78.69501213859317],[-19.39519395193952,78.70514360221247],[-19.510395103951026,78.74229230214988],[-19.578795787957887,78.74735803395953],[-19.603996039960407,78.75580092030896],[-19.611196111961107,78.76930953846801],[-19.582395823958223,78.78957246570661],[-19.15399153991538,78.92803580183698],[-19.114391143911433,78.93141295637676],[-19.074790747907485,78.93141295637676],[-19.049590495904965,78.92297007002733],[-19.0531905319053,78.91959291548756],[-19.0531905319053,78.91621576094781],[-19.0531905319053,78.91283860640803],[-19.056790567905665,78.90946145186828],[-19.164791647916473,78.8959528337092],[-19.15399153991538,78.89088710189955],[-19.14679146791468,78.88582137008993],[-19.14679146791468,78.8773784837405],[-19.150391503915046,78.8689355973911],[-19.139591395913953,78.86386986558145],[-19.099990999910005,78.8689355973911],[-19.02079020790208,78.8689355973911],[-19.049590495904965,78.85036124742237],[-19.150391503915046,78.83685262926332],[-19.18639186391863,78.81996685656449],[-19.175591755917566,78.82165543383437],[-19.164791647916473,78.82165543383437],[-19.15399153991538,78.81827827929462],[-19.143191431914317,78.81321254748497],[-19.16119161191611,78.80308108386566],[-19.175591755917566,78.79632677478614],[-19.193591935919358,78.79294962024636],[-19.21159211592115,78.79294962024636],[-19.1791917919179,78.78281815662706],[-19.056790567905665,78.79294962024636],[-19.063990639906393,78.78619531116684],[-19.042390423904237,78.77944100208731],[-19.09639096390964,78.76424380665836],[-19.27999279992798,78.76593238392823],[-19.26199261992619,78.75242376576918],[-19.222392223922242,78.74735803395953],[-19.1791917919179,78.7490466112294],[-19.12159121591216,78.75748949757883],[-19.049590495904965,78.75242376576918],[-19.02079020790208,78.74566945668965],[-19.042390423904237,78.73553799307035],[-19.13599135991359,78.71696364310165],[-19.125191251912526,78.71020933402212]]],[[[-17.533975339753397,79.0327275925697],[-17.681576815768153,79.03779332437935],[-17.70317703177031,79.0327275925697],[-17.68877688776888,79.02090755168052],[-17.681576815768153,79.01753039714077],[-17.699576995769945,79.01077608806125],[-17.724777247772465,79.0057103562516],[-17.77157771577714,79.0040217789817],[-17.75357753577535,78.99389031536242],[-17.74637746377462,78.99051316082264],[-17.76437764377644,78.98375885174312],[-17.78957789577896,78.97869311993347],[-17.832778327783274,78.9770045426636],[-17.81477814778148,78.96856165631417],[-17.82917829178291,78.96011876996477],[-17.89757897578974,78.94829872907559],[-17.919179191791926,78.94829872907559],[-17.944379443794446,78.94998730634546],[-17.965979659796602,78.95505303815511],[-17.951579515795146,78.96180734723464],[-17.933579335793354,78.96687307904429],[-17.89757897578974,78.97025023358404],[-17.919179191791926,78.98375885174312],[-17.944379443794446,78.99389031536242],[-17.958779587795874,79.00908751079135],[-17.951579515795146,79.03779332437935],[-17.92277922779226,79.0631219834276],[-17.800378003780025,79.10027068336501],[-17.74637746377462,79.15430515600127],[-17.724777247772465,79.1610594650808],[-17.685176851768517,79.1711909287001],[-17.64557645576454,79.18638812412902],[-17.605976059760593,79.19314243320858],[-17.566375663756645,79.17625666050975],[-17.530375303753033,79.17287950596997],[-17.422374223742224,79.13573080603254],[-17.404374043740432,79.12391076514336],[-17.407974079740796,79.10533641517466],[-17.41877418774186,79.08676206520596],[-17.45117451174511,79.04454763345888],[-17.4619746197462,79.042859056189],[-17.497974979749785,79.04454763345888],[-17.508775087750877,79.042859056189],[-17.523175231752305,79.0344161698396],[-17.533975339753397,79.0327275925697]]],[[[-19.52119521195212,80.03067675907039],[-19.654396543965447,80.02223387272096],[-19.66519665196651,80.02729960453061],[-19.704797047970487,80.05769399538852],[-19.643596435964355,80.07457976808735],[-19.629196291962927,80.08471123170662],[-19.63999639996399,80.08977696351627],[-19.63999639996399,80.09315411805605],[-19.629196291962927,80.10497415894523],[-19.625596255962563,80.108351313485],[-19.611196111961107,80.11172846802475],[-19.603996039960407,80.11510562256453],[-19.600396003960043,80.12017135437418],[-19.603996039960407,80.12523708618383],[-19.603996039960407,80.1269256634537],[-19.607596075960743,80.1269256634537],[-19.603996039960407,80.13199139526336],[-19.603996039960407,80.1455000134224],[-19.600396003960043,80.15394289977183],[-19.593195931959315,80.16069720885136],[-19.56439564395643,80.17082867247066],[-19.48879488794887,80.19615733151889],[-19.348393483934842,80.21304310421772],[-19.207992079920785,80.20966594967794],[-18.736387363873632,80.13874570434288],[-18.703987039870384,80.1269256634537],[-18.71838718387184,80.12185993164405],[-18.754387543875424,80.1167941998344],[-18.772387723877245,80.11172846802475],[-19.14679146791468,80.07120261354757],[-19.52119521195212,80.03067675907039]]],[[[-17.731977319773193,81.59598788825164],[-17.79677796777966,81.61625081549025],[-18.21438214382144,81.69223679263496],[-18.28278282782827,81.71925402895309],[-18.25758257582575,81.72938549257239],[-18.225182251822503,81.73613980165192],[-17.793177931779326,81.74627126527122],[-17.77157771577714,81.73613980165192],[-17.749977499774985,81.72094260622296],[-17.7211772117721,81.71249971987356],[-17.66357663576636,81.70574541079401],[-17.56277562775628,81.67366244266626],[-17.508775087750877,81.648333783618],[-17.483574835748357,81.6398908972686],[-17.42597425974259,81.63144801091917],[-17.364773647736484,81.6111850836806],[-17.3359733597336,81.60780792914082],[-17.3359733597336,81.60274219733117],[-17.379173791737912,81.59092215644199],[-17.731977319773193,81.59598788825164]]],[[[-49.25749257492575,-77.8732494794704],[-49.39069390693908,-77.88000378854994],[-49.4158941589416,-77.87831521128005],[-49.44469444694445,-77.86480659312099],[-49.45189451894518,-77.86311801585111],[-49.430294302943025,-77.85298655223181],[-49.33669336693367,-77.82934647045346],[-48.987489874898756,-77.78375488416663],[-48.8470884708847,-77.74491760695932],[-48.81468814688145,-77.7381632978798],[-48.78228782287823,-77.73985187514967],[-48.74988749887498,-77.74829476149908],[-48.77148771487714,-77.74998333876897],[-49.24669246692466,-77.86649517039088],[-49.25749257492575,-77.8732494794704]]],[[[-89.8910989109891,-72.88519222423692],[-89.88029880298802,-72.87337218334774],[-89.86949869498694,-72.86492929699833],[-89.85149851498515,-72.85817498791879],[-89.82989829898298,-72.85479783337902],[-89.78669786697867,-72.84973210156937],[-89.57069570695707,-72.86324071972844],[-89.4050940509405,-72.8953236878562],[-89.32949329493294,-72.92740665598399],[-89.35829358293583,-72.94598100595269],[-89.4770947709477,-72.97637539681058],[-89.50949509495095,-72.99663832404917],[-89.55629556295563,-73.05067279668542],[-89.58509585095851,-73.07093572392401],[-89.63189631896319,-73.08444434208307],[-89.68949689496894,-73.0911986511626],[-89.79749797497975,-73.09288722843249],[-89.99549995499954,-73.06755856938425],[-90.13230132301322,-73.09457580570236],[-90.21870218702186,-73.08444434208307],[-90.29430294302942,-73.04898421941553],[-90.33750337503375,-72.98819543769976],[-90.28350283502834,-72.94091527414304],[-90.21510215102151,-72.94429242868281],[-90.09270092700926,-72.98650686042987],[-90.04950049500495,-72.98650686042987],[-90.00630006300062,-72.97637539681058],[-89.96309963099631,-72.95780104684187],[-89.93069930699306,-72.93078381052375],[-89.8910989109891,-72.88519222423692]]],[[[-93.75033750337504,-72.88856937877668],[-93.75033750337504,-72.90545515147551],[-93.77193771937719,-72.91896376963457],[-93.8151381513815,-72.9257180787141],[-93.8619386193862,-72.92740665598399],[-93.99873998739987,-72.91896376963457],[-94.07074070740707,-72.90207799693574],[-94.12834128341284,-72.87337218334774],[-94.0671406714067,-72.82609201979102],[-93.98433984339843,-72.8193377107115],[-93.81873818738187,-72.85648641064891],[-93.77193771937719,-72.87337218334774],[-93.75753757537575,-72.88181506969715],[-93.75033750337504,-72.88856937877668]]],[[[-93.35793357933579,-72.57955973838814],[-93.32553325533254,-72.56098538841944],[-93.2751327513275,-72.5457881929905],[-93.21753217532175,-72.54241103845072],[-93.159931599316,-72.54747677026037],[-93.10953109531096,-72.55929681114955],[-93.13113131131311,-72.5930683565472],[-93.159931599316,-72.61501986105569],[-93.19953199531994,-72.62683990194486],[-93.23553235532356,-72.63528278829428],[-93.2751327513275,-72.63697136556416],[-93.31473314733147,-72.63021705648463],[-93.35433354333543,-72.61839701559545],[-93.39033390333903,-72.60319982016651],[-93.35793357933579,-72.57955973838814]]],[[[-59.43479434794348,-65.23424861439841],[-59.51399513995139,-65.24606865528759],[-59.64719647196472,-65.22073999623935],[-59.77679776797767,-65.17514840995251],[-59.84159841598415,-65.12786824639579],[-59.769597695976955,-65.08565381464874],[-59.64719647196472,-65.12111393731627],[-59.43479434794348,-65.23424861439841]]],[[[-61.93681936819368,-63.991455743764746],[-61.926019260192604,-63.986390011955095],[-61.91521915219151,-63.984701434685206],[-61.87921879218791,-63.984701434685206],[-61.83241832418324,-63.97794712560568],[-61.8360183601836,-63.97456997106592],[-61.83961839618395,-63.96781566198638],[-61.843218432184315,-63.964438507446616],[-61.82881828818287,-63.95937277563697],[-61.81441814418143,-63.96106135290685],[-61.79641796417964,-63.964438507446616],[-61.78561785617856,-63.96950423925627],[-61.80001800018,-63.97625854833579],[-61.8360183601836,-64.00158720738403],[-61.84681846818468,-64.00665293919369],[-61.87921879218791,-64.01340724827321],[-61.88641886418864,-64.01847298008286],[-61.91161911619116,-64.03873590732145],[-61.918819188191875,-64.05055594821064],[-61.9080190801908,-64.05562168002028],[-61.926019260192604,-64.05731025729017],[-61.93681936819368,-64.06575314363958],[-61.9620196201962,-64.08432749360828],[-61.98361983619836,-64.09108180268782],[-62.00882008820088,-64.09108180268782],[-62.0340203402034,-64.08601607087817],[-62.055620556205554,-64.07757318452876],[-62.06282062820628,-64.07081887544922],[-62.06642066420663,-64.06237598909982],[-62.05922059220592,-64.0539331027504],[-62.052020520205204,-64.04717879367087],[-62.044820448204476,-64.04549021640099],[-62.0340203402034,-64.04549021640099],[-62.026820268202684,-64.0438016391311],[-62.02322023220232,-64.04042448459134],[-62.02322023220232,-64.03535875278169],[-62.019620196201956,-64.03198159824193],[-62.01242012420124,-64.02860444370216],[-62.019620196201956,-64.02016155735275],[-62.02322023220232,-64.01678440281299],[-62.00882008820088,-64.01171867100334],[-61.96561965619655,-64.00496436192381],[-61.95841958419584,-64.00158720738403],[-61.93681936819368,-63.991455743764746]]],[[[-61.951219512195124,-63.31095910400201],[-61.976419764197644,-63.33291060851049],[-62.01242012420124,-63.344730649399665],[-62.08442084420844,-63.35317353574908],[-62.278822788227885,-63.3514849584792],[-62.26802268022679,-63.348107803939435],[-62.257222572225714,-63.33966491759002],[-62.246422464224636,-63.329533453970726],[-62.24282242822427,-63.31940199035142],[-62.23922239222392,-63.304204794922484],[-62.246422464224636,-63.29238475403331],[-62.253622536225365,-63.282253290414005],[-62.26442264422644,-63.27381040406459],[-62.257222572225714,-63.27212182679472],[-62.21042210422104,-63.25523605409589],[-62.21042210422104,-63.25185889955612],[-62.2140221402214,-63.245104590476586],[-62.2140221402214,-63.23835028139706],[-62.203222032220324,-63.23666170412717],[-62.18522185221852,-63.24003885866694],[-62.152821528215284,-63.25017032228624],[-62.0340203402034,-63.25861320863565],[-62.019620196201956,-63.261990363175414],[-62.01242012420124,-63.26536751771518],[-62.005220052200514,-63.27043324952483],[-62.001620016200164,-63.27718755860436],[-61.9980199801998,-63.29238475403331],[-61.994419944199436,-63.29913906311283],[-61.98361983619836,-63.302516217652595],[-61.97281972819728,-63.30758194946225],[-61.951219512195124,-63.31095910400201]]],[[[-60.49680496804967,-62.96480076367606],[-60.52560525605256,-62.98168653637489],[-60.56520565205652,-62.97830938183512],[-60.59400594005939,-62.959735031866416],[-60.60120601206012,-62.934406372818174],[-60.622806228062274,-62.92596348646876],[-60.64440644406443,-62.922586331929],[-60.6660066600666,-62.922586331929],[-60.68400684006839,-62.92596348646876],[-60.687606876068756,-62.93102921827841],[-60.698406984069834,-62.94960356824711],[-60.7020070200702,-62.95298072278688],[-60.698406984069834,-62.959735031866416],[-60.698406984069834,-62.96311218640618],[-60.69480694806947,-62.96648934094594],[-60.673206732067314,-62.97662080456524],[-60.55800558005579,-63.00701519542313],[-60.58320583205831,-63.017146659042425],[-60.61920619206191,-63.017146659042425],[-60.68400684006839,-63.00363804088336],[-60.70560705607056,-62.995195154533945],[-60.72720727207272,-62.98168653637489],[-60.74160741607416,-62.96480076367606],[-60.74520745207451,-62.9411606818977],[-60.69120691206912,-62.89556909561087],[-60.61920619206191,-62.897257672880755],[-60.54720547205471,-62.92596348646876],[-60.49680496804967,-62.96480076367606]]],[[[-61.50841508415084,-62.812828809386616],[-61.51201512015119,-62.80945165484685],[-61.51921519215192,-62.80607450030709],[-61.52281522815228,-62.80100876849744],[-61.52281522815228,-62.79425445941791],[-61.52281522815228,-62.78412299579861],[-61.51921519215192,-62.773991532179316],[-61.515615156151554,-62.7655486458299],[-61.50841508415084,-62.75879433675037],[-61.486814868148684,-62.745285718591305],[-61.461614616146164,-62.7368428322419],[-61.40761407614076,-62.730088523162365],[-61.19881198811987,-62.728399945892484],[-61.227612276122755,-62.73346567770213],[-61.24561245612456,-62.74190856405154],[-61.25641256412564,-62.75372860494072],[-61.252812528125276,-62.76892580036967],[-61.40761407614076,-62.82296027300592],[-61.465214652146514,-62.82464885027579],[-61.49761497614976,-62.81789454119627],[-61.50841508415084,-62.812828809386616]]],[[[-54.03474034740347,-61.245829102935474],[-54.04554045540455,-61.26946918471383],[-54.05634056340563,-61.288043534682544],[-54.07434074340743,-61.30324073011148],[-54.09954099540995,-61.3116836164609],[-54.12114121141211,-61.308306461921134],[-54.20394203942038,-61.284666380142774],[-54.2291422914229,-61.26946918471383],[-54.20754207542075,-61.252583412015],[-54.08514085140851,-61.17997458941005],[-54.07434074340743,-61.168154548520874],[-54.07074070740707,-61.15971166217146],[-54.05634056340563,-61.13269442585333],[-54.05634056340563,-61.127628694043686],[-54.02394023940239,-61.13100584858345],[-54.00954009540095,-61.13776015766298],[-54.00594005940059,-61.15295735309192],[-54.016740167401665,-61.16308881671122],[-54.03114031140311,-61.168154548520874],[-54.04914049140491,-61.1749088576004],[-54.05634056340563,-61.19179463029923],[-54.05634056340563,-61.20192609391852],[-54.05274052740526,-61.20699182572817],[-54.04554045540455,-61.21036898026794],[-54.038340383403835,-61.21712328934747],[-54.03474034740347,-61.223877598426995],[-54.03474034740347,-61.228943330236646],[-54.03474034740347,-61.245829102935474]]],[[[-26.260462604626042,-58.43603652585067],[-26.256862568625678,-58.44447941220008],[-26.24246242462425,-58.4613651848989],[-26.238862388623886,-58.468119493978435],[-26.246062460624614,-58.488382421217025],[-26.246062460624614,-58.49851388483633],[-26.24966249662495,-58.49513673029656],[-26.253262532625314,-58.49344815302668],[-26.256862568625678,-58.49344815302668],[-26.30006300062999,-58.47656238032785],[-26.429664296642954,-58.45292229854949],[-26.45846458464584,-58.425905062231365],[-26.454864548645475,-58.420839330421714],[-26.447664476644775,-58.41408502134219],[-26.440464404644047,-58.40395355772289],[-26.436864368643683,-58.39213351683371],[-26.429664296642954,-58.385379207754184],[-26.415264152641527,-58.38200205321442],[-26.310863108631082,-58.38200205321442],[-26.278462784627834,-58.387067785024065],[-26.246062460624614,-58.40226498045301],[-26.260462604626042,-58.43603652585067]]],[[[-66.4260642606426,-55.18552528132647],[-66.42246422464224,-55.200722476755416],[-66.43686436864368,-55.20916536310483],[-66.47286472864728,-55.215919672184356],[-66.48366483664836,-55.22773971307353],[-66.50526505265053,-55.258134103931425],[-66.5160651606516,-55.26488841301095],[-66.5340653406534,-55.26826556755072],[-66.570065700657,-55.28177418570978],[-66.5880658806588,-55.28515134024955],[-66.59526595265952,-55.28177418570978],[-66.59886598865988,-55.27501987663025],[-66.60246602466025,-55.2699541448206],[-66.62046620466204,-55.280085608439904],[-66.63126631266313,-55.278397031170016],[-66.63846638466384,-55.27164272209049],[-66.64206642066421,-55.26488841301095],[-66.64566645666456,-55.25137979485189],[-66.64206642066421,-55.232805444883184],[-66.63846638466384,-55.215919672184356],[-66.63126631266313,-55.20578820856506],[-66.62046620466204,-55.19734532221565],[-66.56646566465665,-55.1821481267867],[-66.54486544865448,-55.16863950862764],[-66.5340653406534,-55.163573776818],[-66.52326523265232,-55.16019662227823],[-66.50886508865088,-55.163573776818],[-66.48366483664836,-55.177082394977056],[-66.47286472864728,-55.1821481267867],[-66.4620646206462,-55.18383670405659],[-66.43686436864368,-55.1821481267867],[-66.4260642606426,-55.18552528132647]]],[[[-69.90369903699036,-54.99640462709961],[-69.91089910899109,-54.98458458621043],[-69.92169921699217,-54.98120743167066],[-69.93609936099361,-54.97951885440078],[-69.95049950499505,-54.97276454532125],[-69.95049950499505,-54.95250161808266],[-69.91449914499145,-54.945747309003124],[-69.84249842498424,-54.94912446354289],[-69.84249842498424,-54.94237015446336],[-69.90729907299072,-54.925484381764534],[-69.92529925299253,-54.91366434087536],[-69.92889928899288,-54.89846714544641],[-69.91449914499145,-54.88664710455723],[-69.89289892898928,-54.88158137274758],[-69.86049860498605,-54.87820421820781],[-69.84969849698497,-54.87313848639817],[-69.83529835298353,-54.87144990912829],[-69.82449824498245,-54.87651564093794],[-69.80649806498064,-54.90015572271629],[-69.78489784897849,-54.906910031795825],[-69.78129781297812,-54.92041864995488],[-69.77769777697776,-54.9389929999236],[-69.77409774097741,-54.95587877262242],[-69.76329763297633,-54.945747309003124],[-69.75249752497524,-54.93730442265371],[-69.73809738097381,-54.93730442265371],[-69.72369723697237,-54.945747309003124],[-69.71289712897129,-54.94912446354289],[-69.7020970209702,-54.945747309003124],[-69.69849698496985,-54.9389929999236],[-69.7020970209702,-54.930550113574185],[-69.73449734497345,-54.91366434087536],[-69.72369723697237,-54.908598609065706],[-69.71289712897129,-54.908598609065706],[-69.7020970209702,-54.91028718633559],[-69.69129691296912,-54.91366434087536],[-69.70569705697056,-54.90015572271629],[-69.71289712897129,-54.89508999090664],[-69.72369723697237,-54.89340141363677],[-69.75249752497524,-54.89171283636688],[-69.76689766897668,-54.888335681827115],[-69.77409774097741,-54.8798927954777],[-69.75969759697597,-54.868072754588525],[-69.72729727297272,-54.864695600048755],[-69.66969669696697,-54.866384177318636],[-69.51489514895148,-54.89340141363677],[-69.50769507695077,-54.89846714544641],[-69.50769507695077,-54.908598609065706],[-69.52209522095221,-54.9288615363043],[-69.52929529295292,-54.94068157719347],[-69.52929529295292,-54.945747309003124],[-69.51489514895148,-54.94912446354289],[-69.50049500495004,-54.94743588627301],[-69.49329493294933,-54.94237015446336],[-69.46449464494644,-54.91366434087536],[-69.44649446494465,-54.90522145452594],[-69.42489424894248,-54.90015572271629],[-69.39609396093961,-54.90015572271629],[-69.37089370893709,-54.906910031795825],[-69.32769327693276,-54.923795804494645],[-69.30249302493024,-54.9288615363043],[-69.23409234092341,-54.93223869084406],[-69.17289172891728,-54.95419019535254],[-69.16569165691656,-54.95587877262242],[-69.20889208892089,-54.96938739078148],[-69.25929259292593,-54.971075968051366],[-69.35649356493565,-54.95587877262242],[-69.33849338493384,-54.971075968051366],[-69.33129331293313,-54.97951885440078],[-69.33849338493384,-54.98289600894054],[-69.36729367293673,-54.986273163480305],[-69.42849428494284,-54.99809320436949],[-69.44289442894429,-54.99809320436949],[-69.45369453694536,-54.993027472559845],[-69.47529475294752,-54.97951885440078],[-69.48609486094861,-54.97445312259113],[-69.50049500495004,-54.97614169986102],[-69.48609486094861,-54.99471604982972],[-69.49689496894969,-55.0065360907189],[-69.52569525695256,-55.009913245258666],[-69.54729547295473,-55.009913245258666],[-69.59049590495904,-55.00315893617913],[-69.60129601296012,-55.00315893617913],[-69.61209612096121,-55.0065360907189],[-69.630096300963,-55.02004470887796],[-69.63729637296373,-55.023421863417724],[-69.77769777697776,-55.03524190430691],[-69.79569795697957,-55.030176172497264],[-69.81729817298172,-55.0166675543382],[-69.83529835298353,-55.033553327037026],[-69.86049860498605,-55.03861905884668],[-69.9180991809918,-55.03861905884668],[-69.9180991809918,-55.030176172497264],[-69.90729907299072,-55.02511044068761],[-69.90369903699036,-55.0166675543382],[-69.90009900099001,-55.008224667988785],[-69.90369903699036,-54.99640462709961]]],[[[-59.693996939969395,-52.20856355452327],[-59.67599675996759,-52.2153178636028],[-59.67959679596795,-52.228826481761864],[-59.693996939969395,-52.24233509992092],[-59.7119971199712,-52.249089409000455],[-59.719197191971915,-52.249089409000455],[-59.72999729997299,-52.254155140810106],[-59.73719737197372,-52.25922087261975],[-59.7479974799748,-52.274418068048696],[-59.75519755197551,-52.274418068048696],[-59.76599765997659,-52.26597518169928],[-59.76599765997659,-52.254155140810106],[-59.76599765997659,-52.252466563540224],[-59.76599765997659,-52.250777986270336],[-59.76599765997659,-52.249089409000455],[-59.769597695976955,-52.249089409000455],[-59.75879758797588,-52.24064652265104],[-59.7479974799748,-52.22713790449198],[-59.744397443974435,-52.211940709063036],[-59.7479974799748,-52.19336635909433],[-59.76239762397624,-52.18154631820515],[-59.77679776797767,-52.17479200912562],[-59.79119791197911,-52.166349122776204],[-59.79839798397984,-52.149463350077376],[-59.79119791197911,-52.13088900010867],[-59.78039780397803,-52.13933188645808],[-59.76599765997659,-52.166349122776204],[-59.71559715597155,-52.16297196823644],[-59.693996939969395,-52.166349122776204],[-59.67959679596795,-52.17985774093526],[-59.68319683196832,-52.18492347274491],[-59.69039690396903,-52.191677781824446],[-59.693996939969395,-52.19843209090397],[-59.693996939969395,-52.20856355452327]]],[[[-61.19521195211952,-51.816813627910484],[-61.2060120601206,-51.818502205180366],[-61.234812348123484,-51.83201082333943],[-61.234812348123484,-51.837076555149075],[-61.22401224012239,-51.840453709688845],[-61.21681216812168,-51.842142286958726],[-61.2060120601206,-51.840453709688845],[-61.19521195211952,-51.837076555149075],[-61.21681216812168,-51.86240521419732],[-61.252812528125276,-51.86240521419732],[-61.288812888128874,-51.84720801876837],[-61.31761317613176,-51.8252565142599],[-61.314013140131394,-51.821879359720135],[-61.30681306813068,-51.818502205180366],[-61.2960129601296,-51.816813627910484],[-61.288812888128874,-51.82019078245025],[-61.26721267212672,-51.82356793699002],[-61.24921249212491,-51.83369940060931],[-61.24561245612456,-51.83032224606955],[-61.2420124201242,-51.816813627910484],[-61.23841238412383,-51.81174789610083],[-61.23841238412383,-51.80499358702131],[-61.23121231212312,-51.799927855211656],[-61.22401224012239,-51.796550700671894],[-61.21321213212131,-51.798239277941775],[-61.2060120601206,-51.80161643248154],[-61.19881198811987,-51.80837074156107],[-61.19521195211952,-51.816813627910484]]],[[[-61.27081270812708,-51.68003886904999],[-61.24921249212491,-51.68003886904999],[-61.21321213212131,-51.69017033266928],[-61.19521195211952,-51.693547487209045],[-61.20961209612096,-51.70030179628858],[-61.24921249212491,-51.698613219018696],[-61.26721267212672,-51.70367895082834],[-61.27441274412743,-51.71381041444764],[-61.278012780127796,-51.72563045533682],[-61.278012780127796,-51.756024846194705],[-61.288812888128874,-51.75264769165494],[-61.303213032130316,-51.74758195984529],[-61.314013140131394,-51.73913907349588],[-61.31761317613176,-51.72900760987658],[-61.310413104131044,-51.70874468263799],[-61.303213032130316,-51.695236064478934],[-61.29241292412924,-51.68679317812952],[-61.27081270812708,-51.68003886904999]]],[[[-59.89919899198992,-51.303486137866145],[-59.91359913599136,-51.31024044694568],[-59.920799207992076,-51.31024044694568],[-59.920799207992076,-51.3169947560252],[-59.906399063990634,-51.328814796914386],[-59.91719917199171,-51.33894626053368],[-59.94239942399423,-51.344011992343326],[-59.96039960399604,-51.344011992343326],[-59.981999819998194,-51.33556910599392],[-59.996399963999636,-51.32543764237462],[-60.01080010800108,-51.31192902421556],[-60.021600216002156,-51.29673182878661],[-59.97479974799748,-51.28660036516732],[-59.96039960399604,-51.28660036516732],[-59.945999459994596,-51.28997751970708],[-59.906399063990634,-51.303486137866145],[-59.89919899198992,-51.303486137866145]]],[[[-75.44775447754478,-49.7753237086223],[-75.47655476554765,-49.782078017701835],[-75.49095490954909,-49.78714374951148],[-75.50535505355053,-49.79558663586089],[-75.51975519755197,-49.800652367670544],[-75.54135541355413,-49.80740667675008],[-75.54135541355413,-49.8242924494489],[-75.5449554495545,-49.83611249033808],[-75.57375573755738,-49.84793253122726],[-75.61695616956169,-49.864818303926086],[-75.6349563495635,-49.82766960398867],[-75.62055620556205,-49.80909525401996],[-75.6349563495635,-49.782078017701835],[-75.62775627756277,-49.75674935865359],[-75.5881558815588,-49.74492931776442],[-75.55575555755557,-49.734797854145114],[-75.52695526955269,-49.739863585954765],[-75.51255512555124,-49.71791208144629],[-75.51975519755197,-49.70440346328723],[-75.54135541355413,-49.70440346328723],[-75.56295562955628,-49.70778061782699],[-75.5881558815588,-49.6875176905884],[-75.58455584555846,-49.66556618607993],[-75.58095580955809,-49.64192610430157],[-75.61335613356133,-49.636860372491924],[-75.57375573755738,-49.61322029071356],[-75.56295562955628,-49.5997116725545],[-75.54855548555486,-49.5895802089352],[-75.53055530555305,-49.58620305439544],[-75.51255512555124,-49.58789163166532],[-75.49815498154982,-49.58282589985568],[-75.49815498154982,-49.574383013506264],[-75.5089550895509,-49.56425154988696],[-75.50535505355053,-49.557497240807436],[-75.49455494554945,-49.557497240807436],[-75.48375483754837,-49.56425154988696],[-75.4729547295473,-49.572694436236375],[-75.45855458554585,-49.571005858966494],[-75.44775447754478,-49.57944874531591],[-75.43335433354333,-49.58282589985568],[-75.41175411754118,-49.58451447712556],[-75.39375393753937,-49.591268786205084],[-75.3829538295383,-49.60308882709427],[-75.35415354153541,-49.6098431361738],[-75.3469534695347,-49.635171795222035],[-75.32895328953289,-49.65205756792086],[-75.3109531095311,-49.672320495159454],[-75.30735307353073,-49.68076338150887],[-75.30015300153,-49.699337731477584],[-75.29655296552966,-49.70609204055711],[-75.29295292952929,-49.70946919509688],[-75.28215282152821,-49.71115777236676],[-75.27495274952749,-49.71453492690652],[-75.26775267752677,-49.72804354506559],[-75.26775267752677,-49.73142069960535],[-75.26415264152641,-49.736486431415],[-75.26415264152641,-49.74492931776442],[-75.25335253352533,-49.760126513193356],[-75.21015210152102,-49.79220948132113],[-75.20295202952029,-49.81247240855972],[-75.17775177751777,-49.883392653894795],[-75.18135181351813,-49.90534415840327],[-75.19215192151921,-49.89183554024421],[-75.20655206552065,-49.885081231164676],[-75.2209522095221,-49.88001549935503],[-75.23535235352354,-49.87157261300562],[-75.24615246152462,-49.85637541757667],[-75.25335253352533,-49.84286679941761],[-75.26415264152641,-49.8344239130682],[-75.28575285752858,-49.82935818125855],[-75.27495274952749,-49.841178222147725],[-75.26775267752677,-49.85637541757667],[-75.26415264152641,-49.8732611902755],[-75.26415264152641,-49.888458385704446],[-75.27135271352714,-49.89858984932374],[-75.28575285752858,-49.89521269478397],[-75.30375303753037,-49.885081231164676],[-75.3109531095311,-49.87663834481526],[-75.33975339753397,-49.859752572116435],[-75.36855368553685,-49.82935818125855],[-75.37575375753757,-49.79896379040066],[-75.3469534695347,-49.782078017701835],[-75.36495364953649,-49.719600658716175],[-75.37215372153722,-49.719600658716175],[-75.3829538295383,-49.74830647230418],[-75.42975429754297,-49.758437935923475],[-75.44775447754478,-49.7753237086223]]],[[[-75.32895328953289,-48.55279376522723],[-75.32175321753218,-48.56123665157664],[-75.31815318153181,-48.5747452697357],[-75.31815318153181,-48.58994246516465],[-75.32175321753218,-48.60007392878394],[-75.33975339753397,-48.61527112421289],[-75.50535505355053,-48.69463425589738],[-75.54135541355413,-48.7013885649769],[-75.55575555755557,-48.7013885649769],[-75.57375573755738,-48.69969998770702],[-75.5881558815588,-48.69463425589738],[-75.60255602556025,-48.68619136954796],[-75.60615606156061,-48.67774848319855],[-75.60975609756098,-48.667617019579254],[-75.60615606156061,-48.66086271049972],[-75.59535595355953,-48.65917413322984],[-75.52695526955269,-48.664239865039484],[-75.49815498154982,-48.66086271049972],[-75.4729547295473,-48.647354092340656],[-75.45135451354513,-48.630468319641835],[-75.44055440554405,-48.61020539240324],[-75.46575465754657,-48.61358254694301],[-75.51255512555124,-48.63215689691172],[-75.5449554495545,-48.63722262872136],[-75.53055530555305,-48.62877974237195],[-75.49815498154982,-48.61527112421289],[-75.48735487354872,-48.60345108332371],[-75.53775537755376,-48.606828237863475],[-75.5521555215552,-48.61020539240324],[-75.58455584555846,-48.6338454741816],[-75.5989559895599,-48.63722262872136],[-75.62775627756277,-48.63215689691172],[-75.64575645756457,-48.61864827875265],[-75.67455674556746,-48.583188156085114],[-75.65655656556565,-48.56630238338629],[-75.65295652956529,-48.54772803341758],[-75.66015660156602,-48.50382502440063],[-75.65655656556565,-48.48525067443192],[-75.64215642156421,-48.481873519892154],[-75.62775627756277,-48.481873519892154],[-75.61335613356133,-48.46667632446321],[-75.61335613356133,-48.458233438113794],[-75.62055620556205,-48.45147912903427],[-75.62415624156242,-48.44641339722462],[-75.60615606156061,-48.439659088145085],[-75.59535595355953,-48.439659088145085],[-75.58095580955809,-48.444724819954736],[-75.56295562955628,-48.44979055176439],[-75.55935559355594,-48.45654486084391],[-75.54855548555486,-48.47343063354274],[-75.52335523355234,-48.47174205627286],[-75.49815498154982,-48.461610592653564],[-75.48375483754837,-48.45316770630415],[-75.45135451354513,-48.42952762452579],[-75.4369543695437,-48.42783904725591],[-75.42975429754297,-48.458233438113794],[-75.42255422554226,-48.458233438113794],[-75.41535415354153,-48.45316770630415],[-75.41175411754118,-48.43628193360532],[-75.40815408154081,-48.42952762452579],[-75.40095400954009,-48.42615046998603],[-75.39375393753937,-48.424461892716145],[-75.3829538295383,-48.42783904725591],[-75.3829538295383,-48.43459335633544],[-75.38655386553866,-48.444724819954736],[-75.37935379353793,-48.45654486084391],[-75.37935379353793,-48.45992201538368],[-75.37575375753757,-48.45992201538368],[-75.36495364953649,-48.45316770630415],[-75.36495364953649,-48.4481019744945],[-75.35415354153541,-48.43628193360532],[-75.34335343353433,-48.42783904725591],[-75.33975339753397,-48.43628193360532],[-75.33975339753397,-48.458233438113794],[-75.35415354153541,-48.520710797099454],[-75.35415354153541,-48.525776528909105],[-75.36495364953649,-48.54097372433805],[-75.35415354153541,-48.54097372433805],[-75.34335343353433,-48.54266230160793],[-75.33615336153362,-48.546039456147696],[-75.32895328953289,-48.55279376522723]]],[[[-75.27135271352714,-48.02764623429371],[-75.23175231752317,-48.00569472978523],[-75.22455224552245,-47.992186111626175],[-75.23535235352354,-47.97192318438758],[-75.20655206552065,-47.91620013448145],[-75.16695166951669,-47.89424862997298],[-75.08775087750877,-47.867231393654855],[-75.04455044550446,-47.868919970924736],[-75.00855008550086,-47.868919970924736],[-74.94374943749438,-47.88411716635368],[-74.9221492214922,-47.86554281638497],[-74.90054900549005,-47.84696846641626],[-74.88974889748897,-47.82839411644755],[-74.87174871748716,-47.81488549828849],[-74.85374853748537,-47.823328384637904],[-74.8429484294843,-47.81826265282825],[-74.83214832148322,-47.81150834374873],[-74.81774817748177,-47.81488549828849],[-74.78894788947889,-47.81150834374873],[-74.77814778147781,-47.82839411644755],[-74.76734767347673,-47.85372277549579],[-74.76734767347673,-47.88411716635368],[-74.78174781747818,-47.90269151632239],[-74.78894788947889,-47.91620013448145],[-74.8069480694807,-47.92802017537063],[-74.81414814148141,-47.93815163898993],[-74.78534785347853,-47.949971679879106],[-74.77814778147781,-47.970234607117696],[-74.78534785347853,-47.988808957086405],[-74.81774817748177,-47.99387468889606],[-74.83574835748357,-48.007383307055115],[-74.82134821348212,-48.01413761613465],[-74.78534785347853,-48.012449038864766],[-74.76374763747637,-48.02089192521418],[-74.75654756547566,-48.04284342972265],[-74.72774727747277,-48.10532078870831],[-74.79254792547925,-48.07830355239019],[-74.85374853748537,-48.071549243310656],[-74.89694896948969,-48.06817208877089],[-74.94014940149401,-48.05635204788172],[-74.96534965349653,-48.04622058426242],[-75.01215012150121,-48.04115485245277],[-75.03375033750338,-48.031023388833475],[-75.03735037350373,-48.02258050248406],[-75.02655026550265,-48.00569472978523],[-75.03015030150301,-47.99387468889606],[-75.03735037350373,-47.988808957086405],[-75.05175051750517,-47.98543180254664],[-75.06615066150661,-47.98543180254664],[-75.10215102151021,-47.99049753435629],[-75.12015120151202,-47.99725184343582],[-75.13455134551346,-48.009071884324996],[-75.14895148951489,-48.02426907975394],[-75.17055170551706,-48.03440054337324],[-75.19935199351993,-48.03946627518289],[-75.22815228152281,-48.04284342972265],[-75.24975249752497,-48.04115485245277],[-75.25335253352533,-48.03946627518289],[-75.27135271352714,-48.02764623429371]]],[[[-74.75294752947529,-45.807167124397964],[-74.73494734947349,-45.807167124397964],[-74.72054720547204,-45.810544278937726],[-74.71334713347133,-45.8223643198269],[-74.71334713347133,-45.847692978875145],[-74.72414724147241,-45.866267328843854],[-74.74574745747456,-45.90003887424151],[-74.75294752947529,-45.92705611055963],[-74.76374763747637,-45.95745050141752],[-74.76734767347673,-45.98953346954529],[-74.77094770947708,-45.99797635589471],[-74.78174781747818,-46.011484974053765],[-74.7961479614796,-46.02499359221283],[-74.81414814148141,-46.035125055832125],[-74.85374853748537,-46.04525651945142],[-74.86814868148682,-46.0570765603406],[-74.89334893348934,-46.08747095119849],[-74.91854918549186,-46.10435672389732],[-74.95094950949509,-46.111111032976844],[-74.98694986949869,-46.11279961024673],[-75.0481504815048,-46.1060453011672],[-75.06255062550625,-46.10097956935755],[-75.07335073350733,-46.094225260278016],[-75.08055080550805,-46.08071664211896],[-75.08775087750877,-46.06889660122978],[-75.0949509495095,-46.055387983070716],[-75.10575105751057,-46.0469450967213],[-75.09855098550985,-46.035125055832125],[-75.08415084150842,-46.02668216948271],[-74.99054990549905,-46.00473066497424],[-74.95454954549545,-46.00641924224412],[-74.9221492214922,-46.014862128593535],[-74.88974889748897,-46.016550705863416],[-74.85734857348574,-45.99797635589471],[-74.86454864548645,-45.992910624085056],[-74.90054900549005,-46.00641924224412],[-74.91494914949149,-46.013173551323646],[-74.96534965349653,-45.98277916046576],[-74.98334983349834,-45.979402005926],[-74.99414994149942,-45.98109058319588],[-75.01935019350194,-45.98953346954529],[-75.03375033750338,-45.992910624085056],[-75.04455044550446,-45.991222046815174],[-75.08055080550805,-45.98446773773564],[-75.06975069750698,-45.97433627411635],[-75.0589505895059,-45.970959119576584],[-75.03015030150301,-45.972647696846465],[-75.03015030150301,-45.96420481049705],[-75.08775087750877,-45.95069619233799],[-75.08415084150842,-45.91692464694034],[-75.09135091350913,-45.910170337860805],[-75.10935109351094,-45.891595987892096],[-75.11295112951129,-45.88484167881256],[-75.10935109351094,-45.87471021519327],[-75.0949509495095,-45.866267328843854],[-75.08055080550805,-45.86289017430409],[-75.06975069750698,-45.86289017430409],[-75.05535055350553,-45.86289017430409],[-75.01575015750157,-45.87639879246315],[-74.9689496894969,-45.88484167881256],[-74.95814958149582,-45.89328456516198],[-74.94014940149401,-45.90679318332104],[-74.91494914949149,-45.9203018014801],[-74.88254882548826,-45.928744687829514],[-74.85734857348574,-45.92367895601986],[-74.8789487894879,-45.908481760590924],[-74.96534965349653,-45.871333060653505],[-74.9689496894969,-45.86289017430409],[-74.96174961749617,-45.85444728795468],[-74.94734947349473,-45.85444728795468],[-74.93654936549365,-45.86120159703421],[-74.92934929349293,-45.871333060653505],[-74.91854918549186,-45.87639879246315],[-74.90774907749078,-45.87808736973303],[-74.89694896948969,-45.8814645242728],[-74.88974889748897,-45.8814645242728],[-74.8861488614886,-45.87302163792339],[-74.8861488614886,-45.85613586522456],[-74.8789487894879,-45.85444728795468],[-74.87174871748716,-45.85951301976432],[-74.86094860948609,-45.86289017430409],[-74.83574835748357,-45.85951301976432],[-74.82854828548285,-45.849381556145026],[-74.83214832148322,-45.8324957834462],[-74.83214832148322,-45.807167124397964],[-74.80334803348033,-45.81898716528714],[-74.79254792547925,-45.82067574255702],[-74.78174781747818,-45.81898716528714],[-74.76374763747637,-45.810544278937726],[-74.75294752947529,-45.807167124397964]]],[[[-75.09135091350913,-44.795709339738224],[-75.06255062550625,-44.83116946240576],[-75.02295022950229,-44.84298950329494],[-75.02655026550265,-44.85312096691423],[-75.04095040950409,-44.87000673961306],[-75.03375033750338,-44.89026966685166],[-75.03015030150301,-44.903778285010716],[-75.05175051750517,-44.9054668622806],[-75.06975069750698,-44.920664057709544],[-75.08415084150842,-44.92404121224931],[-75.10935109351094,-44.92572978951919],[-75.1309513095131,-44.92572978951919],[-75.15255152551525,-44.920664057709544],[-75.16335163351633,-44.91390974863001],[-75.15975159751598,-44.9054668622806],[-75.14895148951489,-44.89026966685166],[-75.14535145351454,-44.878449625962475],[-75.15615156151561,-44.86494100780342],[-75.1849518495185,-44.83792377148529],[-75.19935199351993,-44.815972266976814],[-75.19935199351993,-44.8075293806274],[-75.1741517415174,-44.78388929884905],[-75.14895148951489,-44.76362637161045],[-75.11295112951129,-44.76700352615022],[-75.09855098550985,-44.777134989769515],[-75.09135091350913,-44.795709339738224]]],[[[-174.9131491314913,-21.292402320240946],[-174.90954909549095,-21.329551020178364],[-174.90954909549095,-21.344748215607304],[-174.9131491314913,-21.381896915544722],[-174.9131491314913,-21.444374274530382],[-174.92034920349204,-21.454505738149685],[-174.93474934749347,-21.44606285180027],[-174.9419494194942,-21.430865656371324],[-174.95634956349562,-21.41735703821226],[-174.9851498514985,-21.39709411097367],[-174.9851498514985,-21.390339801894136],[-174.9779497794978,-21.388651224624255],[-174.97074970749708,-21.38358549281461],[-174.97434974349744,-21.373454029195315],[-174.9779497794978,-21.35994541103625],[-174.97074970749708,-21.348125370147073],[-174.95274952749529,-21.33968248379766],[-174.94554945549456,-21.332928174718127],[-174.93474934749347,-21.3160424020193],[-174.93474934749347,-21.309288092939767],[-174.92754927549277,-21.294090897510827],[-174.91674916749167,-21.283959433891532],[-174.9131491314913,-21.292402320240946]]],[[[-159.79659796597966,-21.186021952238335],[-159.77859778597787,-21.18771052950821],[-159.7569975699757,-21.191087684047986],[-159.74259742597425,-21.201219147667274],[-159.73539735397355,-21.216416343096228],[-159.73539735397355,-21.23667927033481],[-159.7389973899739,-21.246810733954106],[-159.74259742597425,-21.25356504303364],[-159.77139771397714,-21.250187888493876],[-159.7749977499775,-21.250187888493876],[-159.7929979299793,-21.241745002144462],[-159.83259832598327,-21.245122156684225],[-159.8469984699847,-21.23330211579505],[-159.83979839798397,-21.226547806715516],[-159.83259832598327,-21.207973456746814],[-159.83259832598327,-21.196153415857623],[-159.82179821798218,-21.189399106778097],[-159.79659796597966,-21.186021952238335]]],[[[-138.53478534785347,-20.877012311849796],[-138.52038520385204,-20.86012653915097],[-138.51678516785168,-20.84999507553168],[-138.5419854198542,-20.789206293815894],[-138.54558545585456,-20.784140562006257],[-138.54918549185493,-20.78245198473637],[-138.56718567185672,-20.78751771654602],[-138.56358563585636,-20.784140562006257],[-138.5527855278553,-20.78076340746648],[-138.54918549185493,-20.78076340746648],[-138.5419854198542,-20.78076340746648],[-138.52038520385204,-20.814534952864136],[-138.51318513185132,-20.858437961881094],[-138.53478534785347,-20.877012311849796]]],[[[-136.31356313563134,-18.56703860665027],[-136.31356313563134,-18.565350029380383],[-136.31356313563134,-18.560284297570732],[-136.31356313563134,-18.553529988491206],[-136.3171631716317,-18.54677567941168],[-136.32076320763207,-18.538332793062267],[-136.33156331563316,-18.533267061252616],[-136.34236342363423,-18.528201329442965],[-136.37476374763747,-18.518069865823662],[-136.3819638196382,-18.5146927112839],[-136.38916389163893,-18.50962697947425],[-136.39276392763927,-18.50456124766461],[-136.40356403564036,-18.496118361315197],[-136.45036450364503,-18.47247827953683],[-136.4611646116461,-18.469101124997067],[-136.46476464764646,-18.47416685680672],[-136.46476464764646,-18.482609743156132],[-136.46476464764646,-18.485986897695895],[-136.46836468364683,-18.482609743156132],[-136.46836468364683,-18.47754401134648],[-136.4719647196472,-18.47416685680672],[-136.47916479164792,-18.47247827953683],[-136.45756457564576,-18.464035393187416],[-136.4251642516425,-18.475855434076607],[-136.39636396363963,-18.49442978404531],[-136.3819638196382,-18.50962697947425],[-136.33156331563316,-18.528201329442965],[-136.30636306363064,-18.545087102141792],[-136.31356313563134,-18.56703860665027]]],[[[-140.6732067320673,-18.41675522963071],[-140.6732067320673,-18.413378075090947],[-140.68040680406804,-18.401558034201756],[-140.69480694806947,-18.38973799331258],[-140.75240752407524,-18.364409334264337],[-140.77040770407703,-18.350900716105286],[-140.77760777607776,-18.33908067521611],[-140.78120781207812,-18.335703520676333],[-140.7560075600756,-18.35427787064505],[-140.68760687606874,-18.38973799331258],[-140.68040680406804,-18.403246611471644],[-140.6732067320673,-18.41675522963071]]],[[[-136.97236972369723,-18.362720756994463],[-137.06597065970658,-18.266471852611147],[-137.0407704077041,-18.278291893500324],[-137.0119701197012,-18.303620552548566],[-136.98316983169832,-18.335703520676333],[-136.97236972369723,-18.362720756994463]]],[[[-140.82440824408243,-18.217503111784552],[-140.84960849608495,-18.182042989117008],[-140.89640896408963,-18.148271443719352],[-140.91800918009181,-18.10774558924217],[-140.92880928809288,-18.095925548352994],[-140.9720097200972,-18.060465425685464],[-140.9648096480965,-18.06721973476499],[-140.92520925209251,-18.084105507463818],[-140.90000900009,-18.12969709375065],[-140.87840878408784,-18.14996002098924],[-140.84960849608495,-18.17022294822783],[-140.83160831608316,-18.190485875466422],[-140.82440824408243,-18.217503111784552]]],[[[179.4527945279453,-17.29047419061895],[179.44919449194492,-17.315802849667193],[179.4419944199442,-17.339442931445546],[179.43119431194316,-17.35801728141425],[179.4167941679417,-17.374903054113076],[179.39159391593915,-17.396854558621555],[179.38439384393843,-17.39010024954203],[179.38439384393843,-17.331000045096133],[179.38079380793812,-17.315802849667193],[179.37719377193775,-17.30060565423824],[179.36999369993703,-17.287097036079174],[179.3735937359374,-17.273588417920124],[179.36999369993703,-17.26007979976106],[179.37719377193775,-17.249948336141756],[179.42039420394207,-17.24319402706223],[179.4275942759428,-17.241505449792342],[179.43839438394383,-17.241505449792342],[179.44919449194492,-17.249948336141756],[179.44919449194492,-17.255014067951407],[179.4527945279453,-17.29047419061895]]],[[[177.2711727117271,-17.08109060915349],[177.27477274772747,-17.074336300073966],[177.28557285572856,-17.047319063755836],[177.2927729277293,-17.059139104645013],[177.2927729277293,-17.072647722804078],[177.28917289172892,-17.084467763693254],[177.27837278372783,-17.094599227312557],[177.2711727117271,-17.11317357728126],[177.24237242372425,-17.13343650451985],[177.23877238772388,-17.148633699948803],[177.23517235172352,-17.14525654540904],[177.23157231572316,-17.143567968139152],[177.2279722797228,-17.141879390869263],[177.22437224372243,-17.135125081789738],[177.2135721357214,-17.141879390869263],[177.20637206372066,-17.148633699948803],[177.2027720277203,-17.157076586298217],[177.2027720277203,-17.168896627187394],[177.17757177571775,-17.163830895377743],[177.17757177571775,-17.15538800902833],[177.18837188371884,-17.157076586298217],[177.1919719197192,-17.15538800902833],[177.18477184771848,-17.146945122678915],[177.18477184771848,-17.131747927249975],[177.18477184771848,-17.1199278863608],[177.1919719197192,-17.114862154551147],[177.2027720277203,-17.111485000011385],[177.20637206372066,-17.101353536392082],[177.20637206372066,-17.089533495502906],[177.20997209972103,-17.08109060915349],[177.21717217172176,-17.074336300073966],[177.23877238772388,-17.05745052737514],[177.24957249572498,-17.054073372835376],[177.24957249572498,-17.05745052737514],[177.26037260372607,-17.07602487734384],[177.2675726757268,-17.08109060915349],[177.2711727117271,-17.08109060915349]]],[[[-143.38763387633875,-16.669077755302112],[-143.45243452434525,-16.62517474628517],[-143.50643506435063,-16.626863323555042],[-143.54963549635497,-16.62179759174539],[-143.4632346323463,-16.615043282665866],[-143.44163441634416,-16.620109014475517],[-143.420034200342,-16.635306209904456],[-143.38763387633875,-16.669077755302112]]],[[[-143.57123571235712,-16.635306209904456],[-143.62163621636216,-16.631929055364694],[-143.6612366123661,-16.6015346645068],[-143.7008370083701,-16.58127173726821],[-143.66483664836647,-16.58802604634775],[-143.61083610836107,-16.630240478094805],[-143.57123571235712,-16.635306209904456]]],[[[-145.48285482854828,-16.348248074024397],[-145.50085500855008,-16.33642803313522],[-145.52965529655296,-16.27901640595921],[-145.55485554855548,-16.25199916964108],[-145.57645576455764,-16.203030428814486],[-145.5908559085591,-16.152373110718003],[-145.60525605256052,-16.12873302893965],[-145.61245612456125,-16.079764288113054],[-145.61245612456125,-16.096650060811882],[-145.60525605256052,-16.120290142590235],[-145.59445594455946,-16.140553069828826],[-145.58365583655836,-16.14899595617824],[-145.57645576455764,-16.160815997067417],[-145.5692556925569,-16.21316189243379],[-145.5620556205562,-16.224981933322965],[-145.55845558455584,-16.23342481967238],[-145.51885518855187,-16.27901640595921],[-145.49365493654938,-16.334739455865346],[-145.48285482854828,-16.348248074024397]]],[[[-142.53082530825307,-16.10847010170106],[-142.52362523625237,-16.084830019922705],[-142.50922509225092,-16.059501360874464],[-142.4948249482495,-16.035861279096096],[-142.48042480424803,-16.01897550639727],[-142.53082530825307,-16.10847010170106]]],[[[-145.0580505805058,-15.902463674775362],[-145.0760507605076,-15.858560665758418],[-145.130051300513,-15.777508956804056],[-145.16245162451625,-15.75724602956545],[-145.13365133651337,-15.762311761375102],[-145.1192511925119,-15.780886111343818],[-145.09405094050942,-15.82647769763065],[-145.0652506525065,-15.85687208848853],[-145.0580505805058,-15.875446438457246],[-145.0580505805058,-15.902463674775362]]],[[[-176.15516155161552,-13.209182929312462],[-176.14436144361443,-13.231134433820941],[-176.129961299613,-13.248020206519769],[-176.12636126361264,-13.264905979218597],[-176.13716137161373,-13.285168906457187],[-176.13356133561336,-13.28854606099695],[-176.129961299613,-13.291923215536713],[-176.129961299613,-13.298677524616252],[-176.14436144361443,-13.300366101886127],[-176.1479614796148,-13.310497565505429],[-176.14076140761406,-13.33582622455367],[-176.1479614796148,-13.347646265442847],[-176.15876158761588,-13.35102341998261],[-176.1731617316173,-13.345957688172959],[-176.1839618396184,-13.339203379093433],[-176.1839618396184,-13.324006183664494],[-176.19476194761947,-13.307120410965666],[-176.19836198361983,-13.290234638266838],[-176.1839618396184,-13.278414597377662],[-176.1911619116191,-13.256463092869183],[-176.1839618396184,-13.237888742900466],[-176.16956169561695,-13.221002970201639],[-176.15516155161552,-13.209182929312462]]],[[[177.12357123571235,-12.48647185780267],[177.13077130771308,-12.501669053231609],[177.1127711277113,-12.511800516850911],[177.09117091170913,-12.516866248660563],[177.0731707317073,-12.516866248660563],[177.0587705877059,-12.511800516850911],[177.04437044370445,-12.508423362311149],[177.02637026370263,-12.50673478504126],[177.01197011970123,-12.510111939581023],[177.00837008370087,-12.494914744152084],[177.0047700477005,-12.489849012342432],[177.0191701917019,-12.493226166882195],[177.03357033570336,-12.49153758961232],[177.0587705877059,-12.474651816913493],[177.07677076770767,-12.481406125993018],[177.1127711277113,-12.481406125993018],[177.12357123571235,-12.48647185780267]]],[[[114.3677436774368,-7.089778903257567],[114.3821438214382,-7.113418985035921],[114.39654396543966,-7.131993335004637],[114.3929439294393,-7.157321994052879],[114.3929439294393,-7.179273498561344],[114.37854378543784,-7.177584921291469],[114.35694356943571,-7.167453457672167],[114.33174331743317,-7.159010571322753],[114.32454324543244,-7.147190530433576],[114.30654306543067,-7.148879107703465],[114.29214292142922,-7.143813375893814],[114.28494284942849,-7.126927603194986],[114.2741427414274,-7.101598944146744],[114.27054270542709,-7.081336016908153],[114.29574295742958,-7.054318780590023],[114.32094320943213,-7.049253048780386],[114.34254342543426,-7.056007357859912],[114.35694356943571,-7.069515976018977],[114.3677436774368,-7.089778903257567]]],[[[-172.2239222392224,-4.506255680337034],[-172.21312213122133,-4.518075721226211],[-172.20232202322023,-4.5214528757659735],[-172.1879218792188,-4.518075721226211],[-172.17352173521735,-4.513009989416574],[-172.20232202322023,-4.531584339385276],[-172.22752227522275,-4.518075721226211],[-172.23112231122312,-4.49781279398762],[-172.19872198721987,-4.492747062177969],[-172.20232202322023,-4.496124216717746],[-172.20232202322023,-4.499501371257509],[-172.2059220592206,-4.501189948527383],[-172.2239222392224,-4.506255680337034]]],[[[153.6657366573666,-4.040208353849408],[153.65853658536588,-4.046962662928948],[153.66933669336697,-4.090865671945892],[153.65853658536588,-4.122948640073659],[153.62973629736297,-4.129702949153199],[153.60453604536048,-4.100997135565194],[153.6009360093601,-4.099308558295306],[153.59733597335975,-4.100997135565194],[153.59373593735938,-4.100997135565194],[153.59013590135902,-4.0942428264856545],[153.59013590135902,-4.087488517406129],[153.59373593735938,-4.084111362866366],[153.59373593735938,-4.079045631056715],[153.6009360093601,-4.063848435627776],[153.61533615336157,-4.048651240198822],[153.61533615336157,-4.043585508389171],[153.6261362613626,-4.033454044769883],[153.64413644136442,-4.02332258115058],[153.66213662136624,-4.021634003880706],[153.6657366573666,-4.040208353849408]]],[[[72.78732787327874,11.261678865827605],[72.7909279092791,11.261678865827605],[72.79452794527947,11.261678865827605],[72.79452794527947,11.256613134017954],[72.79452794527947,11.254924556748065],[72.7909279092791,11.251547402208303],[72.78732787327874,11.24817024766854],[72.78732787327874,11.2329730522396],[72.78372783727838,11.216087279540773],[72.77652776527765,11.187381465952768],[72.77292772927731,11.200890084111819],[72.76932769327695,11.204267238651596],[72.77292772927731,11.222841588620298],[72.78732787327874,11.261678865827605]]],[[[42.719827198271986,13.742198875285283],[42.7630276302763,13.772593266143176],[42.78102781027812,13.779347575222701],[42.795427954279546,13.769216111603413],[42.79182791827918,13.750641761634697],[42.7630276302763,13.71855879350693],[42.7558275582756,13.698295866268339],[42.745027450274506,13.688164402649036],[42.68742687426874,13.664524320870683],[42.68742687426874,13.67634436175986],[42.68742687426874,13.678032939029748],[42.694626946269466,13.699984443538213],[42.719827198271986,13.742198875285283]]],[[[42.75942759427596,14.064717133832886],[42.76662766627666,14.071471442912411],[42.795427954279546,14.037699897514756],[42.802628026280274,14.022502702085816],[42.802628026280274,14.012371238466514],[42.78822788227882,13.975222538529096],[42.78822788227882,13.944828147671217],[42.78822788227882,13.9262537977025],[42.78102781027812,13.919499488622975],[42.7558275582756,13.92118806589285],[42.76662766627666,13.94820530221098],[42.745027450274506,13.956648188560393],[42.719827198271986,13.970156806719459],[42.71262712627126,13.976911115798984],[42.701827018270194,13.98873115668816],[42.69822698226983,13.992108311227923],[42.6910269102691,14.012371238466514],[42.701827018270194,14.027568433895468],[42.719827198271986,14.04614278386417],[42.745027450274506,14.059651402023235],[42.75942759427596,14.064717133832886]]],[[[145.2056520565206,14.181228965454793],[145.25245252452527,14.199803315423495],[145.28125281252812,14.203180469963257],[145.29205292052922,14.181228965454793],[145.28845288452885,14.169408924565616],[145.28125281252812,14.160966038216202],[145.2740527405274,14.15590030640655],[145.259652596526,14.154211729136662],[145.2488524885249,14.1508345745969],[145.24165241652418,14.140703110977611],[145.2380523805238,14.12888307008842],[145.22725227252272,14.120440183739007],[145.20925209252096,14.110308720119718],[145.19845198451986,14.113685874659481],[145.19125191251914,14.122128761008895],[145.17325173251731,14.125505915548658],[145.1408514085141,14.122128761008895],[145.12645126451264,14.123817338278783],[145.1192511925119,14.12888307008842],[145.130051300513,14.147457420057137],[145.15885158851592,14.164343192755965],[145.18765187651877,14.176163233645141],[145.2056520565206,14.181228965454793]]],[[[145.64845648456486,15.072797763952849],[145.65205652056522,15.059289145793798],[145.65205652056522,15.045780527634733],[145.64845648456486,15.032271909475668],[145.64845648456486,15.017074714046728],[145.65205652056522,15.008631827697315],[145.66645666456668,14.993434632268361],[145.66645666456668,14.983303168649073],[145.66285662856632,14.956285932330943],[145.6448564485645,14.929268696012826],[145.62685626856268,14.915760077853761],[145.60525605256055,14.927580118742938],[145.60165601656018,14.941088736902003],[145.59805598055982,14.968105973220133],[145.5908559085591,14.983303168649073],[145.580055800558,14.998500364078012],[145.57645576455764,15.005254673157552],[145.580055800558,15.017074714046728],[145.5908559085591,15.040714795825082],[145.61245612456128,15.066043454873324],[145.6340563405634,15.082929227572151],[145.64845648456486,15.072797763952849]]],[[[145.709657096571,16.367936529952885],[145.71685716857172,16.352739334523946],[145.709657096571,16.344296448174532],[145.69525695256954,16.342607870904644],[145.67005670056705,16.33923071636488],[145.6556565565656,16.340919293634755],[145.6448564485645,16.344296448174532],[145.6340563405634,16.352739334523946],[145.62685626856268,16.364559375413123],[145.63045630456304,16.373002261762537],[145.63765637656377,16.379756570842062],[145.6556565565656,16.38144514811195],[145.66645666456668,16.378067993572174],[145.6988569885699,16.373002261762537],[145.709657096571,16.367936529952885]]],[[[145.77085770857713,18.174714208727366],[145.81045810458107,18.174714208727366],[145.82485824858247,18.16795989964784],[145.83565835658356,18.157828436028538],[145.83925839258393,18.144319817869487],[145.83565835658356,18.129122622440534],[145.82485824858247,18.118991158821245],[145.81405814058144,18.112236849741706],[145.80325803258035,18.10379396339229],[145.75645756457567,18.061579531645236],[145.7420574205742,18.053136645295822],[145.72045720457209,18.054825222565697],[145.71325713257136,18.076776727074176],[145.73845738457385,18.09028534523324],[145.74925749257494,18.113925427011594],[145.75645756457567,18.161205590568315],[145.77085770857713,18.174714208727366]]],[[[145.66285662856632,18.723501821439243],[145.6340563405634,18.74714190321761],[145.6340563405634,18.78766775769479],[145.65205652056522,18.80961926220327],[145.6880568805688,18.807930684933382],[145.70245702457026,18.791044912234554],[145.709657096571,18.779224871345377],[145.709657096571,18.7674048304562],[145.709657096571,18.748830480487484],[145.70605706057063,18.737010439598308],[145.69525695256954,18.728567553248894],[145.67725677256772,18.72181324416937],[145.66285662856632,18.723501821439243]]],[[[119.64899648996493,23.60349013140025],[119.6669966699667,23.573095740542357],[119.67059670596706,23.55958712238329],[119.6669966699667,23.549455658764003],[119.65979659796596,23.55620996784353],[119.6525965259653,23.56127569965318],[119.6417964179642,23.56296427692307],[119.62739627396274,23.55620996784353],[119.61659616596165,23.554521390573655],[119.60939609396092,23.551144236033878],[119.60579605796062,23.54607850422424],[119.60219602196025,23.532569886065176],[119.59859598595989,23.529192731525413],[119.58059580595807,23.51906126790611],[119.56259562595625,23.517372690636236],[119.54459544595449,23.522438422445873],[119.52659526595266,23.5393241951447],[119.53019530195303,23.549455658764003],[119.54099540995412,23.537635617874827],[119.55899558995588,23.53425846333505],[119.57339573395734,23.5393241951447],[119.5877958779588,23.549455658764003],[119.5769957699577,23.551144236033878],[119.56979569795698,23.55620996784353],[119.56619566195661,23.56127569965318],[119.55899558995588,23.569718586002594],[119.55539555395558,23.56634143146283],[119.55539555395558,23.564652854192943],[119.55179551795521,23.56296427692307],[119.55179551795521,23.57647289508212],[119.55179551795521,23.589981513241185],[119.55899558995588,23.589981513241185],[119.56619566195661,23.588292935971296],[119.59499594995953,23.605178708670124],[119.61299612996129,23.610244440479775],[119.60939609396092,23.595047245050836],[119.60579605796062,23.589981513241185],[119.62019620196202,23.595047245050836],[119.63459634596347,23.593358667780947],[119.6417964179642,23.593358667780947],[119.64899648996493,23.60349013140025]]],[[[119.47619476194762,23.60349013140025],[119.49059490594908,23.63895025406778],[119.50139501395017,23.650770294956956],[119.51579515795157,23.637261676797905],[119.50859508595084,23.632195944988254],[119.50139501395017,23.620375904099078],[119.49059490594908,23.589981513241185],[119.49059490594908,23.58322720416166],[119.49419494194944,23.57647289508212],[119.49059490594908,23.571407163272482],[119.47979479794799,23.569718586002594],[119.47259472594726,23.569718586002594],[119.46539465394653,23.568030008732705],[119.46179461794617,23.56634143146283],[119.4581945819458,23.56296427692307],[119.4437944379444,23.56296427692307],[119.4437944379444,23.569718586002594],[119.45099450994513,23.574784317812245],[119.4581945819458,23.57647289508212],[119.46539465394653,23.57647289508212],[119.47619476194762,23.579850049621896],[119.47619476194762,23.586604358701422],[119.47619476194762,23.60349013140025]]],[[[119.57339573395734,23.627130213178603],[119.56979569795698,23.63895025406778],[119.56259562595625,23.649081717687082],[119.54459544595449,23.66427891311602],[119.56619566195661,23.679476108544975],[119.58059580595807,23.672721799465435],[119.59139591395916,23.66427891311602],[119.59499594995953,23.652458872226845],[119.5877958779588,23.64570456314732],[119.59139591395916,23.632195944988254],[119.58419584195843,23.62544163590873],[119.5769957699577,23.62206448136895],[119.57339573395734,23.627130213178603]]],[[[52.573125731257335,24.344775552878758],[52.58752587525876,24.359972748307698],[52.61272612726128,24.373481366466763],[52.63432634326344,24.366727057387223],[52.64512645126453,24.351529861958284],[52.65232652326523,24.324512625640153],[52.648726487264895,24.309315430211214],[52.62712627126271,24.283986771162972],[52.60912609126092,24.268789575734033],[52.59112591125913,24.25359238030508],[52.580325803258035,24.267100998464144],[52.56952569525697,24.282298193893098],[52.555125551255514,24.307626852941326],[52.55872558725588,24.326201202910042],[52.573125731257335,24.344775552878758]]],[[[54.383943839438416,24.439335879992186],[54.333543335433376,24.45284449815125],[54.333543335433376,24.469730270850064],[54.37674376743769,24.50350181624772],[54.391143911439116,24.522076166216436],[54.39474394743948,24.522076166216436],[54.391143911439116,24.501813238977846],[54.398343983439844,24.48323888900913],[54.41274412744127,24.471418848119953],[54.45234452344525,24.45284449815125],[54.47034470344704,24.435958725452423],[54.47034470344704,24.42582726183312],[54.45594455944561,24.42076153002347],[54.43074430744309,24.42582726183312],[54.383943839438416,24.439335879992186]]],[[[-68.84888848888488,44.09606387869667],[-68.82728827288273,44.08930956961714],[-68.7840878408784,44.08424383780749],[-68.77328773287732,44.08255526053762],[-68.77328773287732,44.06229233329901],[-68.78768787687876,44.05216086967974],[-68.8020880208802,44.04709513787009],[-68.80568805688057,44.036963674250785],[-68.81648816488165,44.031897942441134],[-68.83448834488344,44.03527509698091],[-68.87048870488705,44.04878371513996],[-68.85968859688596,44.06566948783879],[-68.86688866888669,44.07917810599784],[-68.88848888488884,44.08930956961714],[-68.910089100891,44.09606387869667],[-68.90288902889029,44.1146382286654],[-68.88488884888848,44.1146382286654],[-68.84888848888488,44.09606387869667]]],[[[-68.64368643686437,44.259855873875296],[-68.6220862208622,44.24972441025599],[-68.61488614886149,44.23790436936682],[-68.61488614886149,44.224395751207766],[-68.60768607686076,44.21257571031859],[-68.61848618486185,44.20919855577881],[-68.64368643686437,44.20244424669929],[-68.6580865808658,44.19906709215951],[-68.65088650886509,44.19062420581011],[-68.64368643686437,44.183869896730585],[-68.6220862208622,44.17711558765106],[-68.6220862208622,44.17204985584141],[-68.66168661686616,44.156852660412454],[-68.68328683286832,44.1517869286028],[-68.71568715687157,44.16698412403176],[-68.71928719287193,44.17204985584141],[-68.71568715687157,44.18049274219081],[-68.7120871208712,44.19062420581011],[-68.7120871208712,44.20075566942941],[-68.72288722887228,44.219330019398114],[-68.71568715687157,44.21764144212824],[-68.69768697686976,44.219330019398114],[-68.69048690486905,44.219330019398114],[-68.69408694086941,44.22946148301742],[-68.69768697686976,44.23959294663672],[-68.69408694086941,44.24972441025599],[-68.69048690486905,44.259855873875296],[-68.67968679686797,44.2699873374946],[-68.66888668886689,44.2699873374946],[-68.64368643686437,44.259855873875296]]],[[[-66.23166231662316,44.38649916911649],[-66.21366213662137,44.39663063273579],[-66.20286202862029,44.39156490092614],[-66.20286202862029,44.38143343730684],[-66.21726217262172,44.36792481914779],[-66.23886238862389,44.33753042828991],[-66.29646296462964,44.28349595565365],[-66.31446314463145,44.251412987525896],[-66.32886328863289,44.25816729660542],[-66.28566285662856,44.32402181013083],[-66.25686256862568,44.35441620098874],[-66.24246242462424,44.37805628276709],[-66.23166231662316,44.38649916911649]]],[[[-68.2440824408244,44.4253364463238],[-68.24048240482405,44.40507351908522],[-68.18648186481865,44.357793355528486],[-68.17568175681757,44.32908754194048],[-68.19728197281972,44.308824614701905],[-68.24048240482405,44.295315996542826],[-68.28368283682836,44.29193884200308],[-68.30528305283052,44.308824614701905],[-68.31248312483125,44.308824614701905],[-68.31968319683196,44.28518453292355],[-68.30888308883088,44.27167591476447],[-68.2980829808298,44.26154445114517],[-68.2980829808298,44.24972441025599],[-68.30888308883088,44.23790436936682],[-68.32688326883269,44.22608432847764],[-68.34128341283413,44.224395751207766],[-68.34848348483484,44.23959294663672],[-68.35208352083521,44.23790436936682],[-68.36288362883629,44.23452721482707],[-68.370083700837,44.232838637557165],[-68.38088380883808,44.246347255716245],[-68.41328413284133,44.25816729660542],[-68.4240842408424,44.27505306930425],[-68.40968409684096,44.278430223844],[-68.4060840608406,44.28518453292355],[-68.41328413284133,44.29193884200308],[-68.42768427684277,44.295315996542826],[-68.43488434884348,44.30038172835248],[-68.43488434884348,44.31220176924165],[-68.42768427684277,44.32571038740073],[-68.40968409684096,44.35948193279839],[-68.40248402484025,44.371301973687565],[-68.39168391683917,44.376367705497216],[-68.37728377283773,44.379744860036965],[-68.36648366483665,44.38649916911649],[-68.36288362883629,44.39494205546592],[-68.37728377283773,44.40338494181532],[-68.35568355683556,44.42364786905392],[-68.31608316083161,44.437156487212974],[-68.27288272882728,44.43884506448288],[-68.2440824408244,44.4253364463238]]],[[[-60.91440914409144,45.56681468076451],[-60.90720907209072,45.57694614438381],[-60.900009000089995,45.578634721653685],[-60.88920889208892,45.573568989844034],[-60.87840878408784,45.56681468076451],[-60.88560885608855,45.55837179441508],[-60.89280892808928,45.55330606260546],[-60.90360903609036,45.551617485335555],[-60.91440914409144,45.55330606260546],[-60.9540095400954,45.53135455809698],[-60.96120961209611,45.5178459399379],[-60.94680946809467,45.49758301269932],[-60.96840968409684,45.48745154908002],[-60.98640986409863,45.47056577638119],[-61.00441004410044,45.46043431276189],[-61.02241022410223,45.47056577638119],[-61.01161011610115,45.47732008546072],[-61.00441004410044,45.485762971810146],[-61.000810008100075,45.494205858159546],[-61.01161011610115,45.49758301269932],[-61.04041040410404,45.4992715899692],[-61.051210512105115,45.50096016723907],[-61.06561065610656,45.50433732177885],[-61.076410764107635,45.511091630858374],[-61.09081090810908,45.52291167174755],[-61.10521105211052,45.52628882628733],[-61.10521105211052,45.53135455809698],[-61.10521105211052,45.53642028990663],[-61.11241112411123,45.54824033079581],[-61.10521105211052,45.551617485335555],[-61.09081090810908,45.55330606260546],[-61.076410764107635,45.56343752622473],[-61.05481054810548,45.57188041257416],[-61.02961029610296,45.57694614438381],[-61.0080100801008,45.58032329892356],[-60.95760957609576,45.58201187619346],[-60.93240932409324,45.57694614438381],[-60.91440914409144,45.56681468076451]]],[[[150.84330843308436,46.44825201564328],[150.84690846908472,46.44149770656375],[150.83250832508327,46.44149770656375],[150.80730807308072,46.4465634383734],[150.77850778507786,46.45669490199268],[150.7857078570786,46.46344921107223],[150.78930789307896,46.46682636561198],[150.80010800108005,46.48033498377106],[150.80730807308072,46.487089292850584],[150.8181081810818,46.478646406501156],[150.82530825308254,46.465137788342105],[150.839708397084,46.4550063247228],[150.84330843308436,46.44825201564328]]],[[[-64.54684546845468,47.971348713077475],[-64.52524525245252,48.020317453904056],[-64.51084510845108,48.033826072063135],[-64.48564485644856,48.020317453904056],[-64.47844478444784,47.998365949395605],[-64.47124471244712,47.98148017669678],[-64.47124471244712,47.96290582672805],[-64.48564485644856,47.94095432221957],[-64.50724507245071,47.92913428133039],[-64.56844568445685,47.90718277682194],[-64.590045900459,47.903805622282164],[-64.59364593645937,47.913937085901466],[-64.57564575645756,47.939265744949694],[-64.54684546845468,47.971348713077475]]],[[[-79.90459904599045,56.86677377081952],[-79.87219872198722,56.86677377081952],[-79.85779857798578,56.865085193549646],[-79.82539825398254,56.84819942085082],[-79.81819818198181,56.83131364815199],[-79.82179821798218,56.81273929818329],[-79.83619836198362,56.79416494821456],[-79.84339843398433,56.79078779367481],[-79.85779857798578,56.789099216404935],[-79.86139861398614,56.784033484595284],[-79.86499864998649,56.78065633005551],[-79.86499864998649,56.76883628916633],[-79.86859868598685,56.76377055735668],[-79.87939879398793,56.7519505164675],[-79.88659886598866,56.748573361927726],[-79.91179911799118,56.75026193919763],[-79.94059940599405,56.7603934028169],[-79.95139951399514,56.78572206186516],[-79.95139951399514,56.81442787545316],[-79.94419944199441,56.83975653450139],[-79.9369993699937,56.84482226631104],[-79.91539915399153,56.86339661627977],[-79.90459904599045,56.86677377081952]]],[[[61.90441904419046,81.60443077460107],[62.01242012420124,81.60274219733117],[62.073620736207374,81.58923357917212],[62.142021420214206,81.58585642463234],[62.174421744217454,81.57741353828294],[62.19602196021961,81.56559349739376],[62.18522185221852,81.55883918831424],[62.066420664206646,81.54701914742506],[61.8288182881829,81.56390492012389],[61.713617136171365,81.59767646552152],[61.65241652416526,81.60443077460107],[61.68481684816848,81.6111850836806],[61.90441904419046,81.60443077460107]]],[[[-169.03069030690307,-83.1534306023936],[-168.89748897488974,-83.18889072506114],[-168.81108811088112,-83.20239934322021],[-168.7858878588786,-83.21421938410938],[-168.8470884708847,-83.22603942499856],[-169.32589325893258,-83.20577649775997],[-169.8010980109801,-83.18382499325149],[-169.81549815498155,-83.18044783871173],[-169.82989829898298,-83.1736935296322],[-169.85149851498514,-83.15511917966349],[-169.86229862298623,-83.14667629331407],[-170.35550355503554,-83.075756047979],[-170.84870848708488,-83.00483580264392],[-171.33831338313382,-82.93391555730885],[-171.83151831518316,-82.86299531197378],[-171.89991899919,-82.84273238473519],[-171.82071820718207,-82.82415803476648],[-171.35631356313564,-82.8798810846726],[-170.8919089190892,-82.93391555730885],[-170.4239042390424,-82.98963860721499],[-169.95949959499595,-83.04367307985123],[-169.49509495094952,-83.09939612975735],[-169.03069030690307,-83.1534306023936]]],[[[-163.10143101431015,-79.74588167177032],[-162.7342273422734,-79.79316183532704],[-162.7090270902709,-79.80160472167645],[-162.68742687426874,-79.8151133398355],[-162.73062730627305,-79.8353762670741],[-162.7810278102781,-79.84213057615364],[-163.06543065430654,-79.82017907164516],[-163.349833498335,-79.79822756713668],[-163.40023400234003,-79.78303037170774],[-163.310233102331,-79.77965321716798],[-163.2490324903249,-79.7678331762788],[-163.1518315183152,-79.7678331762788],[-163.06543065430654,-79.78134179443785],[-163.03663036630365,-79.77627606262821],[-163.04743047430475,-79.7678331762788],[-163.06183061830617,-79.76445602173902],[-163.07623076230763,-79.76445602173902],[-163.14823148231483,-79.7475702490402],[-163.16263162631626,-79.7391273626908],[-163.10143101431015,-79.74588167177032]]],[[[-148.71568715687158,-76.70644258598146],[-148.73728737287374,-76.7030654314417],[-148.77328773287732,-76.69968827690192],[-148.7912879128791,-76.70137685417181],[-148.94248942489423,-76.68449108147298],[-149.1368913689137,-76.63889949518615],[-149.14769147691476,-76.63721091791626],[-148.99648996489964,-76.60681652705838],[-148.8128881288813,-76.61188225886804],[-148.46728467284672,-76.67773677239346],[-148.47088470884708,-76.67773677239346],[-148.47088470884708,-76.67942534966333],[-148.51768517685176,-76.69631112236216],[-148.5788857888579,-76.70475400871157],[-148.71568715687158,-76.70644258598146]]],[[[-147.72927729277293,-76.65409669061509],[-147.9920799207992,-76.59837364070897],[-147.98847988479883,-76.59330790889932],[-147.98487984879847,-76.59161933162943],[-147.99567995679956,-76.58148786801014],[-147.99927999279993,-76.5747335589306],[-148.00648006480066,-76.57304498166073],[-147.94527945279452,-76.55953636350166],[-147.8840788407884,-76.55784778623179],[-147.73287732877327,-76.5848650225499],[-147.62127621276213,-76.62032514521745],[-147.56007560075602,-76.6625395769645],[-147.63567635676355,-76.66591673150428],[-147.72927729277293,-76.65409669061509]]],[[[162.9178291782918,-75.55821004246123],[162.95742957429576,-75.55314431065158],[162.97182971829722,-75.55483288792146],[162.97902979029794,-75.56496435154075],[162.97182971829722,-75.57340723789017],[162.89982899829,-75.618998824177],[162.88542885428853,-75.63081886506617],[162.88542885428853,-75.63588459687583],[162.88182881828817,-75.64939321503489],[162.87822878228786,-75.65445894684454],[162.87102871028713,-75.6595246786542],[162.85302853028531,-75.66459041046383],[162.8458284582846,-75.66796756500361],[162.84222842228422,-75.67303329681324],[162.82782827828282,-75.68485333770244],[162.8206282062821,-75.68991906951207],[162.81342813428137,-75.69329622405183],[162.80262802628027,-75.69498480132172],[162.74142741427414,-75.70173911040126],[162.63342633426333,-75.68991906951207],[162.6010260102601,-75.67978760589278],[162.57582575825762,-75.66290183319396],[162.71622716227165,-75.60380162874806],[162.7342273422734,-75.58691585604923],[162.7666276662767,-75.57678439242994],[162.9178291782918,-75.55821004246123]]],[[[-119.82179821798218,-74.12123078579106],[-119.89019890198901,-74.11109932217175],[-119.92259922599226,-74.10096785855245],[-119.92979929799299,-74.08408208585362],[-119.91179911799118,-74.07057346769457],[-119.88659886598866,-74.06550773588492],[-119.83619836198362,-74.0587534268054],[-119.83619836198362,-74.05706484953551],[-119.83619836198362,-74.05199911772586],[-119.8289982899829,-74.04186765410657],[-119.8289982899829,-74.03849049956679],[-119.81819818198181,-74.03511334502703],[-119.80019800198002,-74.0283590359475],[-119.78939789397893,-74.02667045867761],[-119.69579695796958,-74.01991614959809],[-119.66339663396633,-74.01485041778844],[-119.63459634596346,-74.00134179962937],[-119.6489964899649,-73.9895217587402],[-119.6669966699667,-73.97939029512091],[-119.76059760597606,-73.94730732699313],[-119.7749977499775,-73.93886444064373],[-119.78219782197822,-73.9304215542943],[-119.78939789397893,-73.90678147251595],[-119.79659796597966,-73.89665000889666],[-119.8109981099811,-73.88820712254724],[-119.85779857798578,-73.87638708165807],[-119.83619836198362,-73.86963277257853],[-119.78939789397893,-73.86118988622911],[-119.76779767797677,-73.85105842260981],[-119.89019890198901,-73.83248407264111],[-119.90459904599047,-73.82572976356158],[-119.69939699396994,-73.81897545448204],[-119.58059580595805,-73.78689248635428],[-119.49419494194942,-73.77338386819521],[-119.12339123391234,-73.78013817727475],[-118.97578975789759,-73.80546683632298],[-118.91458914589145,-73.82741834083146],[-118.90378903789038,-73.83248407264111],[-118.90018900189003,-73.83923838172063],[-118.89658896588966,-73.84768126807005],[-118.90018900189003,-73.86456704076888],[-118.90018900189003,-73.87300992711829],[-118.89658896588966,-73.87976423619783],[-118.88578885788857,-73.88314139073759],[-118.87138871388714,-73.88651854527735],[-118.9469894698947,-73.9219786679449],[-118.9649896498965,-73.9304215542943],[-118.9649896498965,-73.93717586337384],[-118.9469894698947,-73.9506844815329],[-118.97218972189722,-73.9692588315016],[-119.00459004590046,-73.98276744966067],[-119.22419224192242,-74.04355623137644],[-119.4329943299433,-74.06719631315481],[-119.44739447394474,-74.07226204496445],[-119.45819458194582,-74.08070493131386],[-119.4689946899469,-74.09083639493316],[-119.47979479794797,-74.09927928128258],[-119.50139501395014,-74.1060335903621],[-119.69579695796958,-74.1262965176007],[-119.82179821798218,-74.12123078579106]]],[[[69.92529925299255,-71.90919456224472],[69.91449914499145,-71.93114606675319],[69.90009900099002,-71.94803183945201],[69.80649806498067,-72.02401781659674],[69.79569795697958,-72.04259216656544],[69.79929799297994,-72.04259216656544],[69.79929799297994,-72.04428074383533],[69.80289802898031,-72.04596932110522],[69.80649806498067,-72.04765789837509],[69.79569795697958,-72.05272363018474],[69.78849788497885,-72.0561007847245],[69.7668976689767,-72.05947793926427],[69.75969759697597,-72.05947793926427],[69.73449734497345,-72.0561007847245],[69.72729727297275,-72.0561007847245],[69.7488974889749,-72.04090358929557],[69.70209702097023,-71.98855769392921],[69.68409684096841,-71.97504907577014],[69.69849698496986,-71.9682947666906],[69.72369723697238,-71.95140899399178],[69.72729727297275,-71.94803183945201],[69.72729727297275,-71.94465468491225],[69.72729727297275,-71.94127753037249],[69.72729727297275,-71.93283464402307],[69.72369723697238,-71.93114606675319],[69.75249752497527,-71.91594887132425],[69.76329763297633,-71.90919456224472],[69.7668976689767,-71.90581740770494],[69.7668976689767,-71.90244025316518],[69.7668976689767,-71.90075167589531],[69.77409774097742,-71.89737452135553],[69.79209792097922,-71.890620212276],[69.81729817298174,-71.88893163500612],[69.86049860498605,-71.890620212276],[69.92529925299255,-71.90919456224472]]],[[[85.20385203852038,-66.56822465760574],[85.2326523265233,-66.5817332757648],[85.34425344253441,-66.60537335754316],[85.2866528665287,-66.63745632567093],[85.20025200252002,-66.64589921202034],[85.1138511385114,-66.63576774840105],[85.05625056250562,-66.60537335754316],[85.07785077850781,-66.57666754395515],[85.09225092250921,-66.54458457582739],[85.11025110251103,-66.52094449404902],[85.15345153451534,-66.51587876223937],[85.1678516785168,-66.5243216485888],[85.18945189451898,-66.55471603944667],[85.20385203852038,-66.56822465760574]]],[[[100.3060030600306,-66.13088314470612],[100.30960309603097,-66.13763745378566],[100.3168031680317,-66.15114607194471],[100.3168031680317,-66.15790038102425],[100.30960309603097,-66.17309757645319],[100.29160291602915,-66.17985188553271],[100.2520025200252,-66.18491761734236],[100.25560255602556,-66.18660619461225],[100.27000270002702,-66.19504908096167],[100.27360273602739,-66.19842623550143],[100.28440284402848,-66.19842623550143],[100.29880298802988,-66.19842623550143],[100.3060030600306,-66.19842623550143],[100.29880298802988,-66.20180339004119],[100.2520025200252,-66.22206631727978],[100.1836018360184,-66.23219778089909],[100.11520115201154,-66.2305092036292],[100.07920079200795,-66.22037774000991],[100.0648006480065,-66.20349196731108],[100.07920079200795,-66.18322904007249],[100.15480154801548,-66.13932603105553],[100.20520205202052,-66.11399737200729],[100.23400234002344,-66.10724306292776],[100.2628026280263,-66.10555448565788],[100.28800288002878,-66.11230879473742],[100.29520295202951,-66.11399737200729],[100.29880298802988,-66.11906310381694],[100.3060030600306,-66.13088314470612]]],[[[174.61434614346143,-21.71116948317185],[174.59634596345967,-21.697660865012793],[174.58914589145894,-21.680775092313965],[174.5927459274593,-21.66895505142478],[174.61434614346143,-21.66895505142478],[174.62514625146252,-21.675709360504314],[174.63234632346325,-21.68921797866338],[174.6287462874629,-21.702726596822437],[174.61434614346143,-21.71116948317185]]],[[[-178.71838718387184,-20.671005884924114],[-178.72558725587257,-20.664251575844574],[-178.73278732787327,-20.65749726676505],[-178.72918729187293,-20.650742957685523],[-178.72558725587257,-20.64230007133611],[-178.72558725587257,-20.650742957685523],[-178.7219872198722,-20.659185844034937],[-178.71478714787148,-20.665940153114462],[-178.70758707587075,-20.671005884924114],[-178.7111871118711,-20.671005884924114],[-178.71838718387184,-20.671005884924114]]],[[[-171.19071190711907,-9.355849599440148],[-171.19431194311943,-9.350783867630497],[-171.1979119791198,-9.344029558550972],[-171.20151201512016,-9.337275249471432],[-171.20511205112052,-9.330520940391906],[-171.1979119791198,-9.335586672201558],[-171.19071190711907,-9.344029558550972],[-171.1871118711187,-9.352472444900386],[-171.1871118711187,-9.3609153312498],[-171.19071190711907,-9.3609153312498],[-171.19071190711907,-9.357538176710023],[-171.19071190711907,-9.355849599440148]]],[[[-172.48672486724868,-8.565595437135045],[-172.49392493924938,-8.555463973515742],[-172.5011250112501,-8.543643932626566],[-172.49032490324902,-8.55208681897598],[-172.48312483124832,-8.562218282595282],[-172.47952479524795,-8.574038323484459],[-172.48312483124832,-8.585858364373635],[-172.48312483124832,-8.580792632563984],[-172.48672486724868,-8.565595437135045]]],[[[178.68238682386823,-7.491660293489645],[178.66798667986683,-7.46295447990164],[178.66438664386646,-7.454511593552226],[178.68958689586896,-7.474774520790817],[178.69318693186932,-7.483217407140231],[178.69318693186932,-7.493348870759533],[178.69318693186932,-7.498414602569184],[178.68238682386823,-7.491660293489645]]],[[[-174.50634506345062,-4.688622025484364],[-174.49914499144992,-4.693687757294015],[-174.50274502745026,-4.6970649118337775],[-174.51354513545135,-4.691999180024126],[-174.52074520745208,-4.683556293674712],[-174.51714517145172,-4.683556293674712],[-174.50634506345062,-4.688622025484364]]],[[[-174.5279452794528,-4.683556293674712],[-174.5351453514535,-4.68017913913495],[-174.54234542345424,-4.673424830055424],[-174.53874538745387,-4.671736252785536],[-174.5351453514535,-4.676801984595187],[-174.5279452794528,-4.683556293674712]]],[[[-174.49914499144992,-4.690310602754252],[-174.51354513545135,-4.676801984595187],[-174.5279452794528,-4.666670520975899],[-174.53874538745387,-4.66498194370601],[-174.54234542345424,-4.659916211896359],[-174.53874538745387,-4.656539057356596],[-174.52434524345244,-4.66498194370601],[-174.50274502745026,-4.686933448214489],[-174.49914499144992,-4.690310602754252]]],[[[-171.2591125911259,-4.443778321351374],[-171.24471244712447,-4.4420897440815],[-171.23391233912338,-4.448844053161025],[-171.23031230312304,-4.460664094050202],[-171.23751237512374,-4.469106980399616],[-171.24831248312483,-4.469106980399616],[-171.2591125911259,-4.465729825859853],[-171.26271262712626,-4.455598362240551],[-171.2591125911259,-4.443778321351374]]],[[[-171.09351093510935,-3.131753782652524],[-171.089910899109,-3.1216223190332215],[-171.08631086310862,-3.1114908554139333],[-171.08271082710826,-3.1300652053826354],[-171.08631086310862,-3.1435738235417006],[-171.09351093510935,-3.145262400811575],[-171.09351093510935,-3.131753782652524]]],[[[169.53829538295383,-0.8741259728193569],[169.53469534695347,-0.8724373955494684],[169.53469534695347,-0.87074881827958],[169.5310953109531,-0.87074881827958],[169.52749527495274,-0.8724373955494684],[169.52389523895238,-0.87074881827958],[169.52389523895238,-0.8690602410097057],[169.52389523895238,-0.865683086469943],[169.52389523895238,-0.8606173546602918],[169.52389523895238,-0.8589287773904033],[169.52389523895238,-0.857240200120529],[169.52389523895238,-0.8538630455807521],[169.52749527495274,-0.8504858910409894],[169.5310953109531,-0.8487973137711151],[169.53469534695347,-0.8471087365012266],[169.5418954189542,-0.8471087365012266],[169.54549545495456,-0.8471087365012266],[169.54909549095493,-0.8521744683108778],[169.5526955269553,-0.8538630455807521],[169.5526955269553,-0.8555516228506406],[169.55629556295565,-0.8589287773904033],[169.55629556295565,-0.8606173546602918],[169.55629556295565,-0.8639945092000545],[169.55629556295565,-0.865683086469943],[169.5526955269553,-0.8690602410097057],[169.5526955269553,-0.8724373955494684],[169.5526955269553,-0.8741259728193569],[169.54909549095493,-0.8758145500892311],[169.54909549095493,-0.8775031273591196],[169.54549545495456,-0.8775031273591196],[169.5418954189542,-0.8775031273591196],[169.53829538295383,-0.8758145500892311],[169.53829538295383,-0.8741259728193569]]],[[[131.14031140311403,3.046750447848268],[131.1619116191162,3.058570488737459],[131.18351183511834,3.060259066007333],[131.19071190711907,3.0484390251181566],[131.17991179911797,3.033241829689217],[131.1619116191162,3.023110366069915],[131.13671136711366,3.019733211530152],[131.12951129511293,3.0298646751494545],[131.14031140311403,3.046750447848268]]],[[[73.54693546935471,4.242263154925226],[73.55413554135544,4.237197423115575],[73.55053550535507,4.228754536766161],[73.55053550535507,4.211868764067333],[73.53973539735398,4.183162950479328],[73.52533525335255,4.171342909590152],[73.5109351093511,4.162900023240738],[73.48573485734858,4.164588600510626],[73.47493474934751,4.167965755050389],[73.43173431734317,4.184851527749217],[73.43173431734317,4.189917259558868],[73.5109351093511,4.186540105019091],[73.52173521735219,4.191605836828742],[73.52533525335255,4.20849160952757],[73.53253532535325,4.230443114036049],[73.54693546935471,4.242263154925226]]],[[[-122.86742867428674,47.26890056880626],[-122.86742867428674,47.25539195064721],[-122.8710287102871,47.24357190975803],[-122.85662856628566,47.231751868868855],[-122.84942849428495,47.21993182797968],[-122.84942849428495,47.2081117870905],[-122.84942849428495,47.19291459166155],[-122.86022860228601,47.177717396232595],[-122.87462874628747,47.16758593261329],[-122.87822878228782,47.17265166442294],[-122.88182881828818,47.18109455077237],[-122.8890288902889,47.19291459166155],[-122.8890288902889,47.199668900741074],[-122.89622896228963,47.2081117870905],[-122.91062910629105,47.218243250709776],[-122.92142921429215,47.22837471432908],[-122.92142921429215,47.236817600678506],[-122.91422914229142,47.25539195064721],[-122.91062910629105,47.26890056880626],[-122.90342903429034,47.27903203242556],[-122.8890288902889,47.27903203242556],[-122.88182881828818,47.28409776423521],[-122.86382863828638,47.289163496044864],[-122.85662856628566,47.29254065058461],[-122.84582845828459,47.297606382394264],[-122.8530285302853,47.28578634150509],[-122.86742867428674,47.27903203242556],[-122.86742867428674,47.26890056880626]]],[[[40.145801458014574,64.73385527120303],[40.07380073800738,64.75749535298138],[40.03420034200343,64.76087250752113],[40.04860048600486,64.76931539387056],[40.10980109801099,64.78113543475973],[40.221402214022135,64.78451258929951],[40.33300333003331,64.77269254841033],[40.36180361803619,64.75749535298138],[40.38700387003871,64.7355438484729],[40.40140401404014,64.71190376669455],[40.40140401404014,64.66293502586794],[40.4050040500405,64.65111498497876],[40.4050040500405,64.64267209862936],[40.397803978039775,64.62916348047028],[40.36900369003692,64.62747490320041],[40.32580325803258,64.63760636681971],[40.30420304203042,64.65111498497876],[40.28620286202863,64.67306648948724],[40.25380253802538,64.69839514853547],[40.20340203402034,64.72034665304395],[40.17460174601746,64.72878953939338],[40.145801458014574,64.73385527120303]]],[[[66.55926559265595,70.5442496568694],[66.57366573665738,70.51554384328139],[66.5808658086581,70.50203522512231],[66.56646566465665,70.49865807058256],[66.5268652686527,70.50710095693196],[66.47646476464766,70.53580677051997],[66.44046440464405,70.56788973864775],[66.41526415264153,70.59659555223575],[66.39726397263973,70.63036709763341],[66.390063900639,70.66751579757081],[66.38646386463864,70.69453303388894],[66.390063900639,70.71141880658777],[66.39726397263973,70.73505888836613],[66.4008640086401,70.75025608379508],[66.40446404464046,70.76883043376378],[66.41526415264153,70.78740478373248],[66.42966429664298,70.79922482462166],[66.44046440464405,70.79753624735179],[66.4620646206462,70.77727332011321],[66.46926469264693,70.77220758830356],[66.48006480064802,70.76376470195413],[66.48366483664839,70.75363323833483],[66.47646476464766,70.74350177471555],[66.46566465664657,70.73337031109625],[66.4620646206462,70.71986169293717],[66.4548645486455,70.70466449750825],[66.4548645486455,70.68440157026964],[66.4728647286473,70.66582722030094],[66.49086490864909,70.65569575668164],[66.49806498064981,70.64725287033224],[66.50166501665018,70.63880998398281],[66.50166501665018,70.63205567490328],[66.50886508865091,70.62530136582376],[66.5268652686527,70.61516990220446],[66.54126541265413,70.60841559312493],[66.54486544865449,70.60334986131528],[66.55206552065522,70.58646408861645],[66.55926559265595,70.5442496568694]]],[[[152.87372873728737,76.15201477014983],[152.88452884528846,76.14526046107031],[152.89172891728919,76.135128997451],[152.88452884528846,76.1165546474823],[152.8557285572856,76.10135745205335],[152.82332823328233,76.08953741116417],[152.77292772927728,76.08278310208465],[152.70452704527048,76.09460314297382],[152.58572585725858,76.12668611110158],[152.55332553325536,76.13850615199075],[152.57132571325712,76.15201477014983],[152.62172621726216,76.16890054284866],[152.70812708127085,76.18747489281736],[152.83052830528305,76.19591777916676],[152.84852848528487,76.19591777916676],[152.87732877328773,76.19085204735714],[152.87372873728737,76.18072058373784],[152.86292862928633,76.16552338830888],[152.87372873728737,76.15201477014983]]],[[[58.81558815588156,79.91585350471837],[58.86238862388626,79.91078777290872],[58.86958869588696,79.90065630928942],[58.81918819188192,79.88714769113037],[58.81198811988122,79.88545911386046],[58.76158761587618,79.88377053659059],[58.65358653586537,79.89221342294002],[58.63558635586358,79.89896773201954],[58.621186211862124,79.9124763501786],[58.58518585185854,79.92598496833764],[58.531185311853136,79.9327392774172],[58.24678246782469,79.9327392774172],[58.25038250382505,79.93949358649672],[58.613986139861396,79.9800194409739],[58.62838628386285,79.97833086370403],[58.646386463864644,79.97495370916425],[58.646386463864644,79.97157655462448],[58.63558635586358,79.96482224554495],[58.63558635586358,79.9597565137353],[58.714787147871476,79.92936212287742],[58.765187651876516,79.91923065925812],[58.79038790387904,79.91585350471837],[58.81558815588156,79.91585350471837]]],[[[54.409144091440936,80.28565192682268],[54.419944199442,80.27889761774316],[54.42714427144273,80.2721433086636],[54.423544235442364,80.26538899958408],[54.409144091440936,80.26032326777442],[54.398343983439844,80.25863469050455],[54.398343983439844,80.25188038142502],[54.40554405544057,80.23668318599607],[54.40554405544057,80.22148599056712],[54.38034380343805,80.20966594967794],[54.315543155431556,80.20122306332854],[54.207542075420776,80.20122306332854],[54.19674196741968,80.19784590878876],[54.189541895418955,80.19278017697911],[54.17874178741789,80.18940302243936],[54.157141571415735,80.18940302243936],[54.14274142741428,80.19278017697911],[54.139141391413915,80.19615733151889],[54.139141391413915,80.20122306332854],[54.14634146341464,80.20628879513819],[54.14994149941501,80.21135452694784],[54.14994149941501,80.2164202587575],[54.157141571415735,80.22148599056712],[54.1679416794168,80.22824029964667],[54.1679416794168,80.23668318599607],[54.15354153541537,80.2434374950756],[54.12114121141212,80.24850322688525],[54.11034110341103,80.25188038142502],[54.10314103141033,80.26032326777442],[54.09954099540997,80.2721433086636],[54.11034110341103,80.28734050409255],[54.131941319413215,80.29409481317208],[54.19314193141932,80.30760343133116],[54.24354243542436,80.30929200860103],[54.30114301143013,80.30422627679138],[54.39474394743948,80.28902908136243],[54.409144091440936,80.28565192682268]]],[[[55.49995499955,80.31604631768056],[55.514355143551455,80.31266916314078],[55.52515525155252,80.30591485406126],[55.514355143551455,80.29916054498173],[55.50355503555036,80.29409481317208],[55.50715507155073,80.28565192682268],[55.49995499955,80.27720904047325],[55.45675456754569,80.26707757685395],[55.42435424354244,80.26032326777442],[55.29835298352984,80.24681464961537],[55.25875258752589,80.23330603145632],[55.23355233552337,80.22824029964667],[55.07515075150752,80.21979741329724],[55.04635046350464,80.22317456783702],[54.9959499594996,80.23837176326595],[54.98154981549817,80.23837176326595],[54.97434974349744,80.23837176326595],[54.952749527495286,80.23837176326595],[54.94194941949419,80.24006034053585],[54.93114931149313,80.2434374950756],[54.93114931149313,80.24681464961537],[54.94194941949419,80.24850322688525],[54.94194941949419,80.2535689586949],[54.934749347493494,80.25694611323468],[54.93114931149313,80.26032326777442],[54.93834938349383,80.2637004223142],[54.96354963549635,80.2637004223142],[54.977949779497806,80.26201184504433],[55.010350103501054,80.26032326777442],[55.028350283502846,80.26201184504433],[55.04635046350464,80.26538899958408],[55.154351543515446,80.27552046320338],[55.15795157951581,80.27889761774316],[55.13995139951399,80.28396334955278],[55.12555125551256,80.28565192682268],[55.08955089550895,80.28565192682268],[55.067950679506794,80.2924062359022],[55.07155071550716,80.3008491222516],[55.294752947529474,80.33293209037939],[55.35235352353524,80.33293209037939],[55.3739537395374,80.32955493583961],[55.38475384753849,80.32786635856974],[55.49995499955,80.31604631768056]]],[[[54.84114841148411,80.43086957203258],[54.84474844748448,80.4291809947627],[54.851948519485205,80.42580384022293],[54.851948519485205,80.42073810841327],[54.84474844748448,80.41736095387353],[54.83754837548378,80.41398379933375],[54.80514805148053,80.40554091298435],[54.79434794347944,80.4004751811747],[54.78354783547837,80.39540944936505],[54.77274772747728,80.39372087209517],[54.524345243452444,80.37514652212644],[54.398343983439844,80.38358940847587],[54.391143911439116,80.38696656301565],[54.39474394743948,80.38865514028552],[54.409144091440936,80.3903437175554],[54.434344343443456,80.39540944936505],[54.459544595445976,80.40216375844457],[54.473944739447404,80.41229522206388],[54.491944919449196,80.43424672657235],[54.51354513545135,80.44606676746153],[54.574745747457484,80.46295254016036],[54.599945999460004,80.47139542650976],[54.625146251462525,80.47646115831941],[54.70794707947081,80.47646115831941],[54.725947259472605,80.47139542650976],[54.74034740347403,80.46632969470014],[54.801548015480165,80.44944392200131],[54.81594815948159,80.44100103565188],[54.84114841148411,80.43086957203258]]],[[[54.82314823148232,80.46464111743023],[54.63234632346325,80.50178981736767],[54.62154621546216,80.51192128098697],[54.64314643146432,80.51698701279659],[54.70794707947081,80.52542989914602],[54.88794887948879,80.53387278549542],[55.05715057150573,80.50347839463754],[55.067950679506794,80.49841266282789],[55.07155071550716,80.49165835374836],[55.07155071550716,80.48659262193871],[55.07155071550716,80.48490404466884],[55.06435064350643,80.47814973558931],[55.04635046350464,80.46801827197001],[55.02115021150212,80.45788680835071],[54.98154981549817,80.44944392200131],[54.82314823148232,80.46464111743023]]],[[[60.56160561605617,81.27346962970404],[60.565205652056534,81.27178105243416],[60.57240572405726,81.26840389789442],[60.55080550805508,81.25996101154499],[60.47520475204752,81.24645239338594],[60.432004320043205,81.24476381611603],[60.13680136801369,81.26502674335464],[59.84159841598418,81.28697824786312],[59.84159841598418,81.29204397967277],[59.84879848798488,81.29710971148242],[60.03240032400325,81.31061832964147],[60.514805148051494,81.29035540240287],[60.53640536405365,81.28360109332334],[60.56160561605617,81.27346962970404]]],[[[-90.60750607506074,-68.81740958108949],[-90.6111061110611,-68.81572100381962],[-90.61470614706147,-68.81065527200997],[-90.62550625506255,-68.80221238566055],[-90.63270632706326,-68.79376949931114],[-90.63990639906399,-68.78532661296173],[-90.63630636306362,-68.77350657207255],[-90.62550625506255,-68.7684408402629],[-90.62190621906218,-68.76168653118336],[-90.62190621906218,-68.75155506756407],[-90.61830618306183,-68.74311218121466],[-90.61470614706147,-68.73635787213513],[-90.61470614706147,-68.73129214032548],[-90.6111061110611,-68.7279149857857],[-90.60390603906039,-68.72622640851583],[-90.58590585905858,-68.72622640851583],[-90.5751057510575,-68.7279149857857],[-90.5571055710557,-68.7279149857857],[-90.54990549905499,-68.72960356305559],[-90.53550535505354,-68.73298071759535],[-90.5211052110521,-68.74311218121466],[-90.51030510305102,-68.75324364483396],[-90.51030510305102,-68.75662079937372],[-90.51030510305102,-68.76337510845325],[-90.50670506705066,-68.77012941753279],[-90.50670506705066,-68.77857230388219],[-90.49950499504995,-68.78532661296173],[-90.50310503105031,-68.7971466538509],[-90.51390513905139,-68.80896669474008],[-90.5211052110521,-68.81065527200997],[-90.5211052110521,-68.81234384927984],[-90.53190531905318,-68.81234384927984],[-90.55350553505535,-68.81234384927984],[-90.56790567905679,-68.81234384927984],[-90.58230582305822,-68.81403242654973],[-90.59670596705966,-68.81572100381962],[-90.60390603906039,-68.81740958108949],[-90.60750607506074,-68.81740958108949]]],[[[-58.4159841598416,-51.99411424124817],[-58.40158401584016,-52.00255712759758],[-58.40158401584016,-52.004245704867465],[-58.40518405184051,-52.004245704867465],[-58.40878408784087,-52.01268859121688],[-58.412384123841235,-52.01944290029641],[-58.42318423184231,-52.02113147756629],[-58.44118441184412,-52.01606574575664],[-58.4519845198452,-52.01606574575664],[-58.4519845198452,-52.01944290029641],[-58.44478444784447,-52.02957436391571],[-58.44838448384483,-52.03295151845547],[-58.45918459184591,-52.03295151845547],[-58.462784627846275,-52.03632867299523],[-58.4519845198452,-52.039705827535],[-58.44118441184412,-52.03632867299523],[-58.43038430384303,-52.03126294118559],[-58.43038430384303,-52.03295151845547],[-58.43398433984339,-52.04139440480488],[-58.437584375843755,-52.05152586842418],[-58.43398433984339,-52.061657332043474],[-58.42678426784268,-52.07178879566277],[-58.42678426784268,-52.0785431047423],[-58.43038430384303,-52.08192025928207],[-58.43038430384303,-52.0886745683616],[-58.42318423184231,-52.09711745471101],[-58.42678426784268,-52.10049460925078],[-58.44838448384483,-52.09880603198089],[-58.45558455584555,-52.09374030017125],[-58.44838448384483,-52.086985991091716],[-58.44838448384483,-52.08023168201218],[-58.45558455584555,-52.08023168201218],[-58.46638466384664,-52.08360883655195],[-58.48078480784807,-52.0785431047423],[-58.49518495184951,-52.07178879566277],[-58.51678516785168,-52.063345909313355],[-58.52038520385203,-52.05828017750371],[-58.52038520385203,-52.0498372911543],[-58.523985239852394,-52.04139440480488],[-58.538385383853836,-52.03464009572535],[-58.54558545585455,-52.02619720937594],[-58.538385383853836,-52.01944290029641],[-58.52758527585276,-52.01268859121688],[-58.513185131851316,-52.00931143667711],[-58.498784987849874,-52.005934282137346],[-58.487984879848796,-52.00255712759758],[-58.48078480784807,-52.0008685503277],[-58.47718477184772,-51.999179973057814],[-58.48438484384843,-51.99580281851805],[-58.48078480784807,-51.99242566397829],[-58.46638466384664,-51.99242566397829],[-58.45558455584555,-51.99580281851805],[-58.44838448384483,-52.0008685503277],[-58.44478444784447,-52.004245704867465],[-58.437584375843755,-52.005934282137346],[-58.43038430384303,-52.004245704867465],[-58.42318423184231,-52.0008685503277],[-58.42678426784268,-51.99411424124817],[-58.41958419584195,-51.99242566397829],[-58.4159841598416,-51.99411424124817]]],[[[-61.05481054810548,-51.07046247462233],[-61.051210512105115,-51.07552820643198],[-61.04761047610475,-51.08059393824163],[-61.05481054810548,-51.08228251551151],[-61.06921069210692,-51.078905360971746],[-61.101611016110155,-51.06877389735245],[-61.1160111601116,-51.06708532008257],[-61.126811268112675,-51.06539674281268],[-61.126811268112675,-51.060331011003036],[-61.11961119611196,-51.055265279193385],[-61.11241112411123,-51.05019954738374],[-61.11241112411123,-51.04682239284397],[-61.11961119611196,-51.036690929224676],[-61.11961119611196,-51.02824804287526],[-61.10521105211052,-51.02993662014515],[-61.09081090810908,-51.03837950649456],[-61.080010800108,-51.05019954738374],[-61.07281072810727,-51.056953856463274],[-61.06921069210692,-51.0637081655428],[-61.06921069210692,-51.06708532008257],[-61.05481054810548,-51.07046247462233]]],[[[-180,-16.490088564694545],[180,-16.54074588279103],[179.99279992799927,-16.542434460060917],[179.9891998919989,-16.542434460060917],[179.9855998559986,-16.53905730552114],[179.9855998559986,-16.530614419171727],[179.9855998559986,-16.51879437828255],[180,-16.491777141964434],[-180,-16.490088564694545]]],[[[166.25146251462513,-10.264304170637033],[166.2658626586266,-10.264304170637033],[166.28026280262804,-10.272747056986447],[166.26946269462695,-10.291321406955163],[166.25146251462513,-10.309895756923865],[166.23706237062373,-10.311584334193753],[166.23706237062373,-10.296387138764814],[166.23706237062373,-10.282878520605749],[166.229862298623,-10.282878520605749],[166.229862298623,-10.276124211526223],[166.23706237062373,-10.255861284287619],[166.2406624066241,-10.233909779779154],[166.23706237062373,-10.215335429810438],[166.24426244262446,-10.220401161620089],[166.2406624066241,-10.269369902446684],[166.24786247862482,-10.265992747906921],[166.25146251462513,-10.264304170637033]]],[[[134.72954729547297,-6.503842590608272],[134.72954729547297,-6.51397405422756],[134.73314733147333,-6.525794095116737],[134.72954729547297,-6.546057022355342],[134.7151471514715,-6.552811331434867],[134.7007470074701,-6.551122754164979],[134.69354693546939,-6.552811331434867],[134.68994689946902,-6.5578770632445185],[134.67554675546756,-6.56294279505417],[134.65754657546574,-6.559565640514393],[134.6467464674647,-6.542679867815565],[134.64314643146434,-6.5207283633071],[134.63594635946362,-6.5055311678781464],[134.62514625146252,-6.4970882815287325],[134.62514625146252,-6.485268240639556],[134.63234632346325,-6.475136777020268],[134.64314643146434,-6.465005313400965],[134.66474664746647,-6.454873849781677],[134.6827468274683,-6.45825100432144],[134.70434704347042,-6.4700710452106165],[134.71874718747188,-6.486956817909444],[134.72954729547297,-6.503842590608272]]],[[[98.54918549185493,0.15928331634886206],[98.58878588785888,0.1711033572380387],[98.62478624786252,0.17448051177780144],[98.67158671586719,0.16941477996815024],[98.71838718387187,0.17448051177780144],[98.74358743587436,0.16603762542838751],[98.76518765187654,0.16603762542838751],[98.80478804788049,0.16097189361873632],[98.83718837188371,0.14070896638014574],[98.85158851588517,0.11031457552226698],[98.84438844388444,0.0849859164740252],[98.80118801188013,0.08667449374389946],[98.76158761587618,0.08667449374389946],[98.7255872558726,0.07485445285472281],[98.68958689586896,0.07147729831496008],[98.64998649986501,0.079920184664374],[98.62118621186215,0.08667449374389946],[98.57438574385748,0.08667449374389946],[98.53838538385384,0.0900516482836764],[98.52758527585274,0.11200315279214124],[98.52398523985244,0.14577469818979694],[98.54918549185493,0.15928331634886206]]],[[[101.33921339213396,3.0518161796579193],[101.33561335613359,3.045061870578394],[101.33921339213396,3.0315532524193287],[101.33561335613359,3.0096017479108497],[101.32121321213214,2.9960931297517988],[101.30321303213032,2.989338820672259],[101.28881288812892,2.9775187797830824],[101.28161281612819,2.9724530479734312],[101.27441274412746,2.9673873161637943],[101.26721267212673,2.965698738893906],[101.26721267212673,2.970764470703557],[101.26721267212673,2.9825845115927336],[101.29241292412922,3.0433732933085054],[101.30681306813068,3.063636220547096],[101.3248132481325,3.0703905296266356],[101.33561335613359,3.0653247978169844],[101.33921339213396,3.0518161796579193]]],[[[-60.950409504095035,8.828439019926634],[-60.90360903609036,8.833504751736285],[-60.8820088200882,8.84025906081581],[-60.87120871208711,8.857144833514639],[-60.86040860408603,8.870653451673704],[-60.83160831608316,8.870653451673704],[-60.77760777607776,8.870653451673704],[-60.7560075600756,8.88247349256288],[-60.73080730807308,8.892604956182183],[-60.72720727207272,8.879096338023118],[-60.738007380073796,8.867276297133941],[-60.73080730807308,8.858833410784527],[-60.71640716407164,8.853767678974876],[-60.712807128071276,8.83519332900616],[-60.70920709207091,8.823373288116983],[-60.698406984069834,8.811553247227806],[-60.687606876068756,8.789601742719327],[-60.698406984069834,8.77778170183015],[-60.723607236072354,8.762584506401211],[-60.748807488074874,8.760895929131323],[-60.77040770407703,8.74232157916262],[-60.78480784807847,8.71530434284449],[-60.799207992079914,8.693352838336025],[-60.80640806408064,8.67308991109742],[-60.8280082800828,8.651138406588956],[-60.84600846008459,8.63762978842989],[-60.88560885608855,8.635941211160002],[-60.92160921609215,8.63931836569978],[-60.94680946809467,8.634252633890128],[-60.96840968409684,8.629186902080477],[-61.00441004410044,8.63931836569978],[-61.05481054810548,8.63931836569978],[-61.09441094410944,8.634252633890128],[-61.11241112411123,8.624121170270826],[-61.13041130411304,8.61061255211176],[-61.14121141211412,8.602169665762347],[-61.152011520115195,8.595415356682821],[-61.170011700117,8.595415356682821],[-61.177211772117715,8.603858243032235],[-61.17361173611735,8.624121170270826],[-61.170011700117,8.63762978842989],[-61.170011700117,8.662958447478132],[-61.16641166411664,8.700107147415551],[-61.15561155611556,8.72205865192403],[-61.126811268112675,8.755830197321671],[-61.09441094410944,8.779470279100039],[-61.05841058410584,8.798044629068741],[-61.03321033210332,8.808176092688043],[-60.99720997209971,8.821684710847109],[-60.97200972009719,8.825061865386871],[-60.950409504095035,8.828439019926634]]],[[[42.6370263702637,15.445973340596936],[42.61182611826118,15.429087567898108],[42.60822608226084,15.422333258818568],[42.61182611826118,15.420644681548694],[42.61182611826118,15.417267527008931],[42.60822608226084,15.410513217929392],[42.59742597425975,15.403758908849866],[42.58302583025832,15.397004599770327],[42.58302583025832,15.39193886796069],[42.593825938259386,15.390250290690801],[42.60462604626048,15.393627445230564],[42.619026190261906,15.400381754310104],[42.629826298263,15.398693177040215],[42.629826298263,15.386873136151038],[42.61542615426154,15.348035858943732],[42.61182611826118,15.334527240784666],[42.61542615426154,15.326084354435253],[42.61182611826118,15.319330045355727],[42.60822608226084,15.314264313546076],[42.60822608226084,15.312575736276202],[42.61542615426154,15.314264313546076],[42.61542615426154,15.30751000446655],[42.593825938259386,15.278804190878546],[42.58302583025832,15.268672727259244],[42.568625686256865,15.268672727259244],[42.5578255782558,15.277115613608657],[42.54702547025471,15.294001386307485],[42.54702547025471,15.317641468085839],[42.5578255782558,15.341281549864206],[42.5578255782558,15.393627445230564],[42.57222572225723,15.410513217929392],[42.58302583025832,15.422333258818568],[42.593825938259386,15.430776145167982],[42.59742597425975,15.439219031517396],[42.601026010260114,15.445973340596936],[42.62262622626227,15.457793381486113],[42.629826298263,15.45441622694635],[42.6370263702637,15.445973340596936]]],[[[40.095400954009534,16.04710684867517],[40.081000810008106,16.033598230516105],[40.07740077400774,16.018401035087166],[40.08460084600847,16.013335303277515],[40.0918009180092,16.008269571467864],[40.0990009900099,16.001515262388338],[40.10980109801099,15.994760953308813],[40.113401134011355,15.986318066959399],[40.095400954009534,15.981252335149748],[40.06660066600668,15.989695221499161],[40.04140041400416,16.003203839658227],[40.00180001800018,16.008269571467864],[39.99099990999912,16.018401035087166],[39.99099990999912,16.033598230516105],[39.99819998199982,16.04879542594506],[40.01620016200164,16.055549735024584],[40.037800378003794,16.057238312294473],[40.04860048600486,16.063992621374],[40.045000450004494,16.072435507723412],[40.04140041400416,16.080878394072826],[40.04140041400416,16.092698434962003],[40.045000450004494,16.102829898581305],[40.05220052200522,16.107895630390942],[40.07740077400774,16.08763270315235],[40.08460084600847,16.08425554861259],[40.0918009180092,16.082566971342715],[40.10980109801099,16.0741240849933],[40.120601206012054,16.06230404410411],[40.113401134011355,16.05217258048482],[40.095400954009534,16.04710684867517]]],[[[114.21654216542169,22.28639986089175],[114.22014220142205,22.27964555181221],[114.22734227342272,22.281334129082097],[114.23454234542345,22.277956974542334],[114.24534245342454,22.26444835638327],[114.25254252542527,22.259382624573618],[114.25254252542527,22.249251160954316],[114.24534245342454,22.24249685187479],[114.2489424894249,22.232365388255502],[114.25254252542527,22.223922501906088],[114.2489424894249,22.2222339246362],[114.25614256142563,22.203659574667483],[114.24534245342454,22.20197099739761],[114.24174241742418,22.205348151937372],[114.23454234542345,22.212102461016897],[114.23094230942309,22.2222339246362],[114.23094230942309,22.234053965525376],[114.22374223742236,22.239119697335028],[114.21654216542169,22.234053965525376],[114.22374223742236,22.232365388255502],[114.22374223742236,22.223922501906088],[114.22014220142205,22.223922501906088],[114.21294212942132,22.215479615556674],[114.22014220142205,22.205348151937372],[114.21654216542169,22.198593842857846],[114.22014220142205,22.191839533778307],[114.20934209342096,22.190150956508433],[114.2057420574206,22.205348151937372],[114.20934209342096,22.20703672920726],[114.2057420574206,22.212102461016897],[114.1949419494195,22.20703672920726],[114.19134191341914,22.210413883747023],[114.1949419494195,22.215479615556674],[114.18774187741877,22.218856770096437],[114.1949419494195,22.225611079175962],[114.19134191341914,22.230676810985614],[114.18414184141841,22.232365388255502],[114.18414184141841,22.240808274604916],[114.16974169741701,22.234053965525376],[114.16614166141665,22.22729965644585],[114.16254162541628,22.234053965525376],[114.16254162541628,22.240808274604916],[114.15174151741519,22.24418542914468],[114.13734137341373,22.245874006414553],[114.130141301413,22.249251160954316],[114.12654126541264,22.256005470033855],[114.12294122941228,22.261071201843507],[114.11934119341197,22.26951408819292],[114.11214112141124,22.271202665462795],[114.11214112141124,22.277956974542334],[114.1157411574116,22.27964555181221],[114.11934119341197,22.281334129082097],[114.130141301413,22.28639986089175],[114.13734137341373,22.288088438161623],[114.14814148141483,22.28639986089175],[114.15534155341555,22.281334129082097],[114.16614166141665,22.27964555181221],[114.18054180541804,22.27964555181221],[114.18774187741877,22.28639986089175],[114.19854198541987,22.291465592701385],[114.2057420574206,22.288088438161623],[114.21654216542169,22.28639986089175]]],[[[-80.62460624606246,24.93577759733769],[-80.61740617406174,24.94084332914734],[-80.61740617406174,24.93746617460758],[-80.61740617406174,24.93577759733769],[-80.62460624606246,24.923957556448514],[-80.64620646206461,24.90538320647981],[-80.6570065700657,24.90031747467016],[-80.62460624606246,24.93577759733769]]],[[[36.545765457654596,25.731097491452445],[36.54216542165423,25.73954037780186],[36.53856538565387,25.75980330504045],[36.54216542165423,25.80201773678752],[36.560165601656024,25.835789282185175],[36.585365853658544,25.857740786693654],[36.59256592565927,25.861117941233417],[36.578165781657816,25.84929790034424],[36.56736567365675,25.832412127645412],[36.55656556565566,25.815526354946584],[36.55656556565566,25.796952004977868],[36.56376563765639,25.778377655009166],[36.58176581765818,25.761491882310338],[36.59256592565927,25.75980330504045],[36.596165961659636,25.758114727770575],[36.596165961659636,25.751360418691036],[36.58896588965891,25.737851800531985],[36.585365853658544,25.726031759642794],[36.585365853658544,25.71927745056327],[36.58896588965891,25.714211718753617],[36.596165961659636,25.709145986943966],[36.6069660696607,25.710834564213854],[36.610566105661064,25.709145986943966],[36.6069660696607,25.700703100594552],[36.596165961659636,25.69732594605479],[36.58176581765818,25.699014523324678],[36.56376563765639,25.712523141483743],[36.552965529655296,25.71927745056327],[36.545765457654596,25.731097491452445]]],[[[-88.92628926289262,29.682368302977963],[-88.9370893708937,29.67392541662855],[-88.87588875888758,29.748222816503386],[-88.89028890288903,29.724582734725033],[-88.92628926289262,29.682368302977963]]],[[[126.76266762667626,34.30907002245655],[126.76626766267663,34.30231571337703],[126.76986769867699,34.292184249757725],[126.76986769867699,34.28880709521796],[126.76266762667626,34.29049567248785],[126.7590675906759,34.29049567248785],[126.74826748267486,34.29387282702761],[126.74106741067413,34.298938558837264],[126.73746737467377,34.297249981567376],[126.73746737467377,34.292184249757725],[126.73026730267304,34.28880709521796],[126.72306723067231,34.292184249757725],[126.70866708667086,34.2955614042975],[126.6906669066691,34.30062713610714],[126.68706687066873,34.30738144518668],[126.69786697866982,34.3141357542662],[126.69426694266946,34.32089006334573],[126.68706687066873,34.32257864061562],[126.67626676266764,34.32089006334573],[126.66186661866618,34.324267217885506],[126.65106651066515,34.32933294969514],[126.64386643866442,34.33777583604456],[126.64026640266405,34.34790729966386],[126.64026640266405,34.359727340553036],[126.64026640266405,34.3732359587121],[126.64746647466478,34.38505599960128],[126.65466654666545,34.39518746322058],[126.66546665466655,34.40025319503022],[126.66906669066691,34.40025319503022],[126.68706687066873,34.401941772300106],[126.69786697866982,34.39856461776034],[126.70866708667086,34.39349888595069],[126.72306723067231,34.381678845061515],[126.73026730267304,34.361415917822924],[126.7338673386734,34.34621872239397],[126.73746737467377,34.339464413314445],[126.74106741067413,34.33271010423492],[126.7446674466745,34.324267217885506],[126.76266762667626,34.30907002245655]]],[[[118.6337863378634,39.07423507806553],[118.64818648186485,39.055660728096825],[118.64818648186485,39.04384068720765],[118.59418594185945,38.972920441872574],[118.5149851498515,38.91888596923633],[118.5041850418504,38.91888596923633],[118.47898478984791,38.93408316466527],[118.489784897849,38.94252605101468],[118.47178471784719,38.971231864602686],[118.46818468184682,39.00669198727023],[118.47898478984791,39.04215210993776],[118.489784897849,39.050594996287174],[118.52578525785259,39.04721784174741],[118.55818558185581,39.00331483273045],[118.57618576185763,39.008380564540104],[118.60858608586085,39.033709223588346],[118.63018630186303,39.048906419017285],[118.61578615786158,39.067480768986],[118.6337863378634,39.07423507806553]]],[[[52.69192691926921,45.46043431276189],[52.699126991269935,45.44185996279319],[52.70272702727027,45.42497419009436],[52.70272702727027,45.404711262855756],[52.67752677526775,45.396268376506356],[52.62712627126271,45.40977699466541],[52.58752587525876,45.43341707644376],[52.56232562325624,45.45705715822214],[52.55152551525515,45.47900866273062],[52.56592565925661,45.494205858159546],[52.5839258392584,45.502648744508974],[52.59472594725949,45.5094030535885],[52.598325983259855,45.516157362668025],[52.59472594725949,45.52291167174755],[52.598325983259855,45.5279774035572],[52.63432634326344,45.52628882628733],[52.655926559265595,45.521223094477676],[52.673926739267415,45.50433732177885],[52.68832688326884,45.475631508190844],[52.69192691926921,45.46043431276189]]],[[[47.997479974799745,45.467188621841416],[47.997479974799745,45.453680003682365],[47.997479974799745,45.45199142641249],[47.997479974799745,45.448614271872714],[47.990279902799045,45.448614271872714],[47.98307983079832,45.453680003682365],[47.97947979479795,45.45536858095224],[47.96147961479616,45.475631508190844],[47.94347943479437,45.4992715899692],[47.92907929079291,45.53473171263673],[47.91827918279185,45.570191835304286],[47.91827918279185,45.578634721653685],[47.914679146791485,45.59552049435251],[47.91827918279185,45.609029112511564],[47.914679146791485,45.62253773067064],[47.91827918279185,45.632669194289946],[47.92907929079291,45.636046348829694],[47.93627936279364,45.636046348829694],[47.947079470794705,45.64448923517912],[47.9578795787958,45.65124354425865],[47.96147961479616,45.63942350336947],[47.96147961479616,45.62422630794052],[47.965079650796525,45.605651957971816],[47.97947979479795,45.58370045346334],[47.98307983079832,45.56343752622473],[47.98307983079832,45.54992890806568],[47.990279902799045,45.53642028990663],[47.997479974799745,45.521223094477676],[47.997479974799745,45.467188621841416]]],[[[20.032400324003248,60.063250542707465],[20.06840068400686,60.07338200632677],[20.10080100801008,60.095333510835246],[20.129601296012964,60.08689062448585],[20.162001620016213,60.08857920175572],[20.19440194401946,60.06493911997737],[20.212402124021253,60.03623330638936],[20.223202232022317,60.014281801880884],[20.22680226802268,60.005838915531456],[20.212402124021253,59.99064172010253],[20.187201872018733,59.97713310194345],[20.17640176401764,59.9720673701338],[20.18360183601837,59.992330297372405],[20.172801728017276,59.99908460645193],[20.15120151201512,59.992330297372405],[20.122401224012236,59.98895314283263],[20.104401044010444,59.99570745191215],[20.115201152011537,60.005838915531456],[20.122401224012236,60.01597037915076],[20.104401044010444,60.027790420039935],[20.079200792007924,60.027790420039935],[20.05760057600577,60.03961046092911],[20.02520025200252,60.04298761546889],[20.032400324003248,60.063250542707465]]],[[[-166.08946089460895,66.25695196863722],[-166.05346053460534,66.26201770044685],[-166.04266042660427,66.26032912317697],[-166.04626046260464,66.25526339136732],[-166.10386103861038,66.2383776186685],[-166.1290612906129,66.22655757777932],[-166.14706147061472,66.21980326869979],[-166.15786157861578,66.22655757777932],[-166.14706147061472,66.23500046412875],[-166.1290612906129,66.24344335047815],[-166.08946089460895,66.25695196863722]]],[[[-165.86265862658627,66.31605217308311],[-165.8158581585816,66.32618363670241],[-165.81225812258123,66.32280648216263],[-165.87345873458736,66.30085497765415],[-165.89865898658985,66.29410066857463],[-165.94545945459456,66.27046058679628],[-165.96345963459635,66.26370627771675],[-166.01026010260102,66.25695196863722],[-166.00666006660066,66.2670834322565],[-165.98145981459814,66.28059205041558],[-165.97065970659708,66.2873463594951],[-165.86265862658627,66.31605217308311]]],[[[166.97506975069751,-45.16381918457265],[166.98226982269824,-45.19927930724019],[166.9966699666997,-45.233050852637845],[167.03267032670328,-45.30059394343315],[167.00027000270006,-45.3056596752428],[166.9858698586986,-45.30228252070303],[166.97146971469715,-45.28877390254397],[166.9534695346954,-45.28201959346444],[166.9318693186932,-45.276953861654796],[166.91386913869138,-45.270199552575264],[166.90306903069035,-45.2566909344162],[166.89226892268925,-45.24318231625714],[166.89226892268925,-45.23642800717761],[166.89946899468998,-45.23136227536796],[166.89946899468998,-45.227985120828194],[166.90666906669065,-45.2178536572089],[166.9678696786968,-45.15031056641359],[166.9678696786968,-45.15368772095336],[166.9678696786968,-45.15706487549312],[166.97146971469715,-45.16044203003289],[166.97506975069751,-45.16381918457265]]],[[[-173.73233732337323,-15.939612374712794],[-173.72153721537217,-15.93116948836338],[-173.71433714337144,-15.932858065633255],[-173.71433714337144,-15.94636668379232],[-173.7251372513725,-15.963252456491148],[-173.73953739537396,-15.976761074650213],[-173.75753757537575,-15.976761074650213],[-173.76473764737648,-15.96662961103091],[-173.76473764737648,-15.958186724681497],[-173.75393753937539,-15.949743838332083],[-173.73233732337323,-15.939612374712794]]],[[[-177.98037980379803,-14.343906854673634],[-177.97677976779767,-14.347284009213396],[-177.9839798397984,-14.354038318292936],[-178.0019800198002,-14.36248120464235],[-178.01638016380164,-14.370924090991764],[-178.02358023580237,-14.379366977341178],[-178.03438034380343,-14.379366977341178],[-178.05958059580595,-14.367546936452001],[-178.06678066780668,-14.360792627372462],[-178.06678066780668,-14.352349741023048],[-178.05958059580595,-14.345595431943522],[-178.0271802718027,-14.330398236514583],[-178.01638016380164,-14.333775391054346],[-178.0019800198002,-14.338841122863997],[-177.9947799477995,-14.340529700133871],[-177.99117991179912,-14.340529700133871],[-177.98037980379803,-14.343906854673634]]],[[[120.90900909009093,13.659458589061032],[120.9270092700927,13.657770011791158],[120.93780937809379,13.651015702711618],[120.93420934209342,13.637507084552567],[120.92340923409233,13.629064198203153],[120.90900909009093,13.627375620933265],[120.87660876608766,13.63412993001279],[120.84060840608407,13.656081434521269],[120.83700837008371,13.66114716633092],[120.82620826208262,13.684787248109274],[120.82620826208262,13.688164402649036],[120.82980829808298,13.689852979918925],[120.84060840608407,13.67634436175986],[120.84420844208444,13.671278629950208],[120.88380883808838,13.659458589061032],[120.90900909009093,13.659458589061032]]],[[[123.66303663036632,13.965091074909807],[123.67023670236705,13.963402497639919],[123.67383673836741,13.951582456750742],[123.66663666636668,13.939762415861566],[123.61983619836201,13.909368025003673],[123.61623616236164,13.912745179543435],[123.61263612636128,13.916122334083212],[123.60903609036092,13.916122334083212],[123.60183601836019,13.916122334083212],[123.60183601836019,13.924565220432612],[123.59823598235982,13.934696684051914],[123.59463594635946,13.94145099313144],[123.59463594635946,13.946516724941091],[123.60183601836019,13.960025343100156],[123.60543605436055,13.961713920370045],[123.60543605436055,13.954959611290505],[123.60903609036092,13.951582456750742],[123.61263612636128,13.95327103402063],[123.61623616236164,13.949893879480854],[123.61983619836201,13.946516724941091],[123.61983619836201,13.94820530221098],[123.61983619836201,13.956648188560393],[123.62343623436237,13.960025343100156],[123.6306363063631,13.960025343100156],[123.63423634236341,13.963402497639919],[123.64143641436414,13.963402497639919],[123.6450364503645,13.960025343100156],[123.64863648636486,13.956648188560393],[123.64863648636486,13.95327103402063],[123.65223652236523,13.95327103402063],[123.65223652236523,13.958336765830268],[123.65223652236523,13.963402497639919],[123.6450364503645,13.971845383989333],[123.64143641436414,13.970156806719459],[123.63783637836377,13.970156806719459],[123.63783637836377,13.975222538529096],[123.63783637836377,13.981976847608635],[123.64143641436414,13.981976847608635],[123.65223652236523,13.976911115798984],[123.65943659436596,13.96846822944957],[123.66303663036632,13.965091074909807]]],[[[55.049950499505,25.88644660028166],[55.049950499505,25.876315136662356],[55.053550535505366,25.86449509577318],[55.04635046350464,25.857740786693654],[55.03915039150391,25.857740786693654],[55.03195031950321,25.85436363215389],[55.02475024750248,25.86280651850329],[55.01755017550175,25.859429363963528],[55.01755017550175,25.866183673043068],[55.01395013950139,25.871249404852705],[55.010350103501054,25.881380868472007],[55.02475024750248,25.888135177551533],[55.042750427504274,25.893200909361184],[55.049950499505,25.88644660028166]]],[[[146.09126091260913,43.44765020706171],[146.09846098460986,43.44765020706171],[146.1056610566106,43.43920732071231],[146.10206102061022,43.43245301163279],[146.09846098460986,43.43245301163279],[146.09126091260913,43.42907585709301],[146.0840608406084,43.42063297074361],[146.08046080460804,43.41556723893396],[146.06606066060664,43.417255816203834],[146.05526055260555,43.41556723893396],[146.04446044460445,43.40205862077488],[146.0408604086041,43.40205862077488],[146.030060300603,43.40712435258453],[146.02646026460263,43.41050150712431],[146.02646026460263,43.41556723893396],[146.030060300603,43.41894439347371],[146.04446044460445,43.430764434362885],[146.05526055260555,43.42738727982314],[146.0588605886059,43.43414158890266],[146.06606066060664,43.42738727982314],[146.08046080460804,43.430764434362885],[146.0840608406084,43.435830166172536],[146.0840608406084,43.44258447525206],[146.0840608406084,43.444273052521964],[146.09126091260913,43.44765020706171]]],[[[145.93645936459365,43.43920732071231],[145.940059400594,43.43414158890266],[145.94725947259474,43.42907585709301],[145.94725947259474,43.42401012528336],[145.93285932859328,43.422321548013485],[145.92205922059225,43.42401012528336],[145.91845918459188,43.425698702553234],[145.9076590765908,43.42401012528336],[145.90045900459006,43.41894439347371],[145.8968589685897,43.417255816203834],[145.8968589685897,43.42063297074361],[145.8968589685897,43.42401012528336],[145.88965889658897,43.425698702553234],[145.88965889658897,43.42907585709301],[145.88965889658897,43.430764434362885],[145.89325893258933,43.43751874344241],[145.88965889658897,43.444273052521964],[145.86445864458648,43.452715938871364],[145.86445864458648,43.45609309341114],[145.87885878858788,43.45947024795089],[145.8860588605886,43.45947024795089],[145.88965889658897,43.452715938871364],[145.8968589685897,43.449338784331616],[145.90405904059043,43.44765020706171],[145.92565925659255,43.45440451614124],[145.93645936459365,43.45609309341114],[145.940059400594,43.45102736160149],[145.93645936459365,43.44765020706171],[145.93285932859328,43.444273052521964],[145.93645936459365,43.43920732071231]]],[[[146.35406354063542,43.63845943855847],[146.3576635766358,43.62157366585964],[146.34326343263433,43.61988508858977],[146.27126271262716,43.626639397669294],[146.27126271262716,43.62832797493917],[146.27486274862747,43.63001655220904],[146.28566285662856,43.63001655220904],[146.30006300063002,43.635082284018694],[146.3108631086311,43.64859090217777],[146.31806318063184,43.65027947944765],[146.33966339663397,43.640148015828345],[146.3468634686347,43.640148015828345],[146.35406354063542,43.63845943855847]]],[[[-66.77526775267752,80.59803872175098],[-66.78966789667896,80.59803872175098],[-66.80046800468004,80.59972729902086],[-66.81126811268112,80.59972729902086],[-66.8220682206822,80.60141587629073],[-66.84726847268472,80.60648160810038],[-66.84726847268472,80.61154733991003],[-66.86166861668616,80.61492449444981],[-66.88686886868868,80.61492449444981],[-66.89046890468904,80.61661307171968],[-66.90126901269012,80.61661307171968],[-66.90846908469084,80.61661307171968],[-66.9120691206912,80.61830164898956],[-66.9120691206912,80.61999022625946],[-66.92286922869228,80.62336738079921],[-66.93366933669336,80.62674453533899],[-66.93726937269372,80.63012168987873],[-66.94446944469445,80.63181026714864],[-66.94446944469445,80.63349884441851],[-66.95166951669516,80.63518742168839],[-66.95166951669516,80.64025315349804],[-66.95886958869588,80.64025315349804],[-66.95886958869588,80.65038461711734],[-66.96246962469624,80.65038461711734],[-66.96246962469624,80.65376177165709],[-66.96966969669697,80.65545034892699],[-66.96966969669697,80.65882750346674],[-66.97326973269732,80.65882750346674],[-66.97686976869768,80.6655818125463],[-66.98046980469805,80.6655818125463],[-66.9840698406984,80.66727038981617],[-66.9840698406984,80.67233612162582],[-66.97686976869768,80.67233612162582],[-66.97686976869768,80.67402469889569],[-66.9660696606966,80.67571327616557],[-66.95886958869588,80.67571327616557],[-66.95526955269553,80.67571327616557],[-66.95166951669516,80.67571327616557],[-66.9120691206912,80.67571327616557],[-66.90486904869049,80.67571327616557],[-66.89406894068941,80.67402469889569],[-66.88686886868868,80.67402469889569],[-66.87966879668797,80.67402469889569],[-66.86886868868689,80.67233612162582],[-66.86166861668616,80.67233612162582],[-66.85086850868508,80.67064754435592],[-66.840068400684,80.67064754435592],[-66.82926829268293,80.66895896708604],[-66.82566825668256,80.66895896708604],[-66.81126811268112,80.66727038981617],[-66.8040680406804,80.66727038981617],[-66.75726757267573,80.65882750346674],[-66.74286742867429,80.65545034892699],[-66.73206732067321,80.65376177165709],[-66.72846728467285,80.65207319438721],[-66.71766717667177,80.64700746257756],[-66.71766717667177,80.64531888530769],[-66.70326703267033,80.64194173076791],[-66.65286652866529,80.63349884441851],[-66.65286652866529,80.63181026714864],[-66.63486634866348,80.63012168987873],[-66.63126631266313,80.63012168987873],[-66.61686616866169,80.62674453533899],[-66.61686616866169,80.62505595806908],[-66.60966609666096,80.62505595806908],[-66.60606606066061,80.62336738079921],[-66.59166591665917,80.62167880352933],[-66.5880658806588,80.61999022625946],[-66.5880658806588,80.61154733991003],[-66.59886598865988,80.60817018537026],[-66.60966609666096,80.60817018537026],[-66.63486634866348,80.60817018537026],[-66.64206642066421,80.60648160810038],[-66.69966699666996,80.60648160810038],[-66.70686706867069,80.60648160810038],[-66.7140671406714,80.6047930308305],[-66.72486724867248,80.6047930308305],[-66.73566735667356,80.6047930308305],[-66.74646746467464,80.60310445356063],[-66.75726757267573,80.60141587629073],[-66.76446764467644,80.59972729902086],[-66.77526775267752,80.59803872175098]]],[[[-80.05940059400594,-2.6623293016251353],[-80.01620016200161,-2.6640178788950095],[-79.94419944199441,-2.706232310642079],[-79.90459904599045,-2.718052351531256],[-79.90459904599045,-2.7248066606107955],[-79.90819908199082,-2.731560969690321],[-79.91179911799118,-2.7383152787698464],[-79.91539915399153,-2.745069587849386],[-79.92619926199262,-2.7535124741988],[-79.97659976599766,-2.775463978707265],[-79.98019980199801,-2.7839068650566787],[-79.99459994599945,-2.797415483215744],[-79.99819998199982,-2.8041697922952693],[-80.00540005400053,-2.819366987724223],[-80.01260012600126,-2.8345641831531623],[-80.01980019800197,-2.843007069502576],[-80.02340023400234,-2.843007069502576],[-80.03420034200342,-2.8615814194712925],[-80.0450004500045,-2.885221501249646],[-80.05940059400594,-2.908861583027999],[-80.06660066600665,-2.9240587784569527],[-80.08100081000809,-2.930813087536478],[-80.09540095400953,-2.9460102829654176],[-80.09540095400953,-2.969650364743785],[-80.10980109801098,-2.983158982902836],[-80.11340113401134,-2.9983561783317896],[-80.13140131401313,-3.0203076828402544],[-80.16740167401673,-3.0169305283004917],[-80.18540185401854,-3.0287505691896683],[-80.20340203402034,-3.0338163009993195],[-80.22860228602286,-3.0321277237294453],[-80.25020250202502,-3.0253734146499056],[-80.26460264602646,-3.01861910557038],[-80.27180271802717,-2.996667601061901],[-80.26460264602646,-2.961207478394371],[-80.2610026100261,-2.841318492232702],[-80.25740257402573,-2.827809874073637],[-80.2250022500225,-2.7653325150879766],[-80.21060210602106,-2.7248066606107955],[-80.19620196201961,-2.714675196991493],[-80.1350013500135,-2.697789424292665],[-80.08100081000809,-2.6690836107046607],[-80.05940059400594,-2.6623293016251353]]],[[[-90.19350193501934,-0.5380990961126884],[-90.17910179101791,-0.5482305597319908],[-90.18270182701826,-0.5718706415103441],[-90.1971019710197,-0.6140850732574137],[-90.19350193501934,-0.6259051141465903],[-90.18990189901899,-0.6411023095755439],[-90.18990189901899,-0.6512337731948321],[-90.18990189901899,-0.6546109277345948],[-90.20070200702007,-0.6765624322430739],[-90.1971019710197,-0.6816281640527251],[-90.21510215102151,-0.6883824731322505],[-90.22590225902259,-0.7035796685612041],[-90.23670236702367,-0.7221540185299062],[-90.25110251102511,-0.7373512139588598],[-90.25830258302582,-0.7441055230383853],[-90.26550265502655,-0.7457941003082595],[-90.31230312303123,-0.7441055230383853],[-90.31950319503194,-0.747482677578148],[-90.3231032310323,-0.7660570275468643],[-90.33750337503375,-0.7761884911661525],[-90.35550355503555,-0.7795656457059152],[-90.37350373503735,-0.777877068436041],[-90.4059040590406,-0.7660570275468643],[-90.42750427504275,-0.7626798730070874],[-90.43470434704346,-0.7576141411974504],[-90.44190441904419,-0.7525484093877992],[-90.44550445504454,-0.7508598321179107],[-90.45270452704527,-0.7441055230383853],[-90.47430474304743,-0.712022554910618],[-90.48150481504814,-0.7018910912913157],[-90.49590495904958,-0.7035796685612041],[-90.51750517505175,-0.7002025140214272],[-90.53550535505354,-0.6917596276720133],[-90.54630546305462,-0.6816281640527251],[-90.54630546305462,-0.66811954589366],[-90.54630546305462,-0.6208393823369533],[-90.53910539105391,-0.5938221460188231],[-90.52830528305283,-0.5701820642404698],[-90.51390513905139,-0.5482305597319908],[-90.49590495904958,-0.5313447870331629],[-90.48870488704887,-0.5262790552235117],[-90.45990459904598,-0.514459014334335],[-90.4491044910449,-0.5110818597945723],[-90.43830438304383,-0.5110818597945723],[-90.41670416704167,-0.5161475916042235],[-90.40950409504094,-0.5178361688740978],[-90.39870398703987,-0.514459014334335],[-90.38790387903879,-0.5077047052548096],[-90.38070380703807,-0.5043275507150469],[-90.28710287102871,-0.4941960870957445],[-90.26550265502655,-0.4823760462065678],[-90.25830258302582,-0.48575320074633055],[-90.25110251102511,-0.4891303552860933],[-90.24750247502475,-0.492507509825856],[-90.24390243902438,-0.4975732416355072],[-90.24030240302403,-0.5077047052548096],[-90.24030240302403,-0.5178361688740978],[-90.24030240302403,-0.5279676324934002],[-90.2331023310233,-0.5313447870331629],[-90.22230222302223,-0.5330333643030514],[-90.20430204302043,-0.5380990961126884],[-90.19350193501934,-0.5380990961126884]]],[[[-50.97470974709748,-0.2915668147098245],[-51.014310143101426,-0.27299246474110817],[-51.039510395103946,-0.23584376480368974],[-51.039510395103946,-0.20038364213615978],[-51.003510035100334,-0.18856360124696891],[-51.003510035100334,-0.18180929216744346],[-51.014310143101426,-0.1801207148975692],[-51.03231032310322,-0.16830067400837834],[-50.98190981909818,-0.08556038778412756],[-50.971109711097114,-0.04334595603705793],[-50.945909459094594,-0.0112629879092907],[-50.92430924309244,-0.006197256099639503],[-50.888308883088825,0.0005570529798859525],[-50.81630816308163,0.03432859837754165],[-50.76590765907659,0.046148639266718305],[-50.74070740707407,0.03432859837754165],[-50.72630726307261,0.007311362059411408],[-50.70110701107009,-0.0028201015598767754],[-50.67590675906757,-0.0112629879092907],[-50.66510665106651,-0.014640142449053428],[-50.65430654306542,-0.023083028798467353],[-50.64710647106472,-0.03321449241776975],[-50.64350643506435,-0.0450345333069464],[-50.63990639906399,-0.0501002651165976],[-50.64350643506435,-0.06023172873588578],[-50.64350643506435,-0.06529746054553698],[-50.6291062910629,-0.08218323324436483],[-50.6291062910629,-0.08556038778412756],[-50.6291062910629,-0.10413473775284388],[-50.63990639906399,-0.12102051045167173],[-50.67590675906757,-0.15479205584932743],[-50.69390693906939,-0.16661209673850408],[-50.75870758707586,-0.19531791032650858],[-50.78030780307802,-0.21051510575544796],[-50.837908379083785,-0.26792673293145697],[-50.85590855908558,-0.28312392836041056],[-50.895508955089554,-0.30676401013876387],[-50.92430924309244,-0.33040409191711717],[-50.93150931509314,-0.3287155146472429],[-50.94230942309423,-0.32196120556770325],[-50.963909639096386,-0.3135183192182893],[-50.96750967509675,-0.3050754328688754],[-50.971109711097114,-0.2949439692495872],[-50.97470974709748,-0.2915668147098245]]],[[[-49.83349833498335,-0.1024461604829554],[-49.822698226982254,-0.07036319235518818],[-49.8010980109801,-0.04672311057683487],[-49.739897398973994,-0.0011315242900025169],[-49.6750967509675,0.027574289298016197],[-49.62829628296282,0.05796868015589496],[-49.52389523895238,0.07316587558484855],[-49.49509495094949,0.0849859164740252],[-49.49509495094949,0.079920184664374],[-49.48429484294843,0.06978872104507161],[-49.48429484294843,0.06303441196554616],[-49.46989469894697,0.06978872104507161],[-49.455494554945545,0.07485445285472281],[-49.44109441094412,0.07485445285472281],[-49.42669426694266,0.07147729831496008],[-49.39069390693908,0.0512143710763695],[-49.379893798937985,0.044460061996829836],[-49.36909369093689,0.027574289298016197],[-49.36909369093689,0.015754248408825333],[-49.37269372693726,0.007311362059411408],[-49.36909369093689,-0.0011315242900025169],[-49.35829358293583,-0.007885833369527973],[-49.3510935109351,-0.007885833369527973],[-49.34749347493474,-0.009574410639416442],[-49.34749347493474,-0.021394451528593095],[-49.34749347493474,-0.03152591514788128],[-49.354693546935465,-0.036591646957532475],[-49.35829358293583,-0.0450345333069464],[-49.35829358293583,-0.05854315146601152],[-49.36549365493656,-0.05685457419612305],[-49.37629376293762,-0.053477419656360325],[-49.379893798937985,-0.051788842386471856],[-49.38709387093871,-0.07036319235518818],[-49.41949419494193,-0.09569185140342995],[-49.42669426694266,-0.11088904683236933],[-49.43749437494375,-0.12102051045167173],[-49.46269462694627,-0.12777481953119718],[-49.49149491494916,-0.13284055134084838],[-49.68589685896859,-0.1362177058806111],[-49.714697146971474,-0.14803774676978776],[-49.83349833498335,-0.1024461604829554]]],[[[-90.81270812708127,-0.7305969048793202],[-90.80190801908019,-0.7356626366889714],[-90.79470794707947,-0.7356626366889714],[-90.79110791107911,-0.7390397912287341],[-90.79110791107911,-0.7542369866576735],[-90.79830798307982,-0.7593027184673247],[-90.819908199082,-0.7694341820866271],[-90.83070830708307,-0.7744999138962783],[-90.85950859508594,-0.8724373955494684],[-90.85590855908559,-0.8977660545977102],[-90.85950859508594,-0.914651827296538],[-90.88110881108811,-0.9095860954868868],[-90.89190891908919,-0.9247832909158262],[-90.91710917109171,-0.9534891045038449],[-90.92790927909279,-0.9703748772026586],[-90.9459094590946,-0.9619319908532447],[-90.96390963909639,-0.9602434135833704],[-90.99270992709927,-0.9636205681231331],[-91.01431014310143,-0.9686862999327843],[-91.04671046710467,-0.9923263817111376],[-91.15831158311583,-1.029475081648556],[-91.18351183511835,-1.0244093498389049],[-91.1979119791198,-1.029475081648556],[-91.28791287912878,-1.0176550407593794],[-91.39951399513996,-1.0176550407593794],[-91.42111421114211,-1.0125893089497282],[-91.43551435514355,-0.9973921135207888],[-91.4391143911439,-0.9872606499014864],[-91.44271442714427,-0.9754406090123098],[-91.44271442714427,-0.9534891045038449],[-91.44631446314463,-0.9416690636146541],[-91.45351453514535,-0.9382919090748914],[-91.46791467914679,-0.9382919090748914],[-91.47871478714787,-0.9349147545351286],[-91.50391503915039,-0.8960774773278217],[-91.49311493114931,-0.8504858910409894],[-91.46431464314642,-0.8082714592939197],[-91.43551435514355,-0.777877068436041],[-91.32031320313203,-0.7018910912913157],[-91.3131131311313,-0.6951367822117902],[-91.3131131311313,-0.6883824731322505],[-91.30951309513095,-0.6833167413226136],[-91.29511295112951,-0.6816281640527251],[-91.26991269912699,-0.6714967004334227],[-91.23391233912339,-0.6613652368141345],[-91.22311223112231,-0.6613652368141345],[-91.21231212312122,-0.6647423913538972],[-91.20511205112051,-0.6698081231635484],[-91.20151201512014,-0.6731852777033112],[-91.1979119791198,-0.6765624322430739],[-91.17991179911799,-0.6816281640527251],[-91.16911169111691,-0.6833167413226136],[-91.15831158311583,-0.6782510095129624],[-91.1511115111151,-0.6731852777033112],[-91.14391143911439,-0.6579880822743718],[-91.13671136711366,-0.6546109277345948],[-91.13671136711366,-0.6444794641153067],[-91.12951129511295,-0.6242165368767161],[-91.1151111511115,-0.6073307641778882],[-91.10071100711006,-0.6140850732574137],[-91.08631086310862,-0.5971993005585858],[-91.08631086310862,-0.5820021051296465],[-91.09351093510935,-0.5701820642404698],[-91.10791107911079,-0.5583620233512931],[-91.11871118711187,-0.5516077142717535],[-91.1511115111151,-0.5431648279223396],[-91.16191161911618,-0.5380990961126884],[-91.18351183511835,-0.5161475916042235],[-91.20871208712087,-0.4840646234764421],[-91.22671226712266,-0.4486045008089121],[-91.23751237512374,-0.4148329554112564],[-91.23391233912339,-0.3861271418232519],[-91.23751237512374,-0.3759956782039495],[-91.25191251912518,-0.3675527918545356],[-91.25911259112591,-0.36417563731477287],[-91.27351273512735,-0.3624870600448986],[-91.2771127711277,-0.36079848277501014],[-91.28071280712807,-0.35573275096535895],[-91.29151291512915,-0.3388469782665311],[-91.35271352713526,-0.30676401013876387],[-91.37431374313744,-0.2814353510905221],[-91.37431374313744,-0.24935238296275486],[-91.39231392313923,-0.2375323420735782],[-91.40671406714067,-0.21558083756509916],[-91.4031140311403,-0.19531791032650858],[-91.38151381513815,-0.18856360124696891],[-91.39951399513996,-0.16323494219874135],[-91.40671406714067,-0.14803774676978776],[-91.41031410314103,-0.1311519740709599],[-91.41031410314103,-0.09569185140342995],[-91.41031410314103,-0.08724896505401603],[-91.41391413914138,-0.07205176962507664],[-91.41391413914138,-0.06192030600577425],[-91.42471424714248,-0.02814876060811855],[-91.44631446314463,-0.0112629879092907],[-91.47511475114752,-0.0112629879092907],[-91.51111511115111,-0.024771606068355823],[-91.54711547115471,-0.04841168784670913],[-91.56151561515615,-0.051788842386471856],[-91.58311583115831,-0.04165737876718367],[-91.60471604716047,-0.014640142449053428],[-91.60831608316083,-0.007885833369527973],[-91.60471604716047,0.002245630249774422],[-91.59751597515975,0.00562278478953715],[-91.59031590315902,0.008999939329299877],[-91.52191521915219,0.046148639266718305],[-91.50391503915039,0.06641156650530888],[-91.49671496714967,0.10693742098249004],[-91.47151471514715,0.09849453463307611],[-91.45351453514535,0.10356026644272731],[-91.43551435514355,0.1136917300620297],[-91.39951399513996,0.12213461641144363],[-91.39591395913959,0.13057750276085756],[-91.38871388713886,0.14070896638014574],[-91.38151381513815,0.1474632754596854],[-91.3671136711367,0.15084042999944813],[-91.34911349113491,0.14915185272955966],[-91.33831338313382,0.15421758453921086],[-91.3239132391324,0.13902038911027148],[-91.31671316713167,0.11706888460179243],[-91.3131131311313,0.09511738009331339],[-91.30951309513095,0.0849859164740252],[-91.29511295112951,0.07654303012461128],[-91.28431284312843,0.03264002110765318],[-91.27351273512735,0.024197134758239258],[-91.26991269912699,0.019131402948602272],[-91.25551255512555,0.0005570529798859525],[-91.24831248312483,-0.004508678829765245],[-91.22671226712266,-0.004508678829765245],[-91.21591215912159,-0.006197256099639503],[-91.20871208712087,-0.0112629879092907],[-91.20151201512014,-0.02814876060811855],[-91.20151201512014,-0.053477419656360325],[-91.20151201512014,-0.09906900594319268],[-91.18351183511835,-0.21051510575544796],[-91.17271172711727,-0.22908945572416428],[-91.13311133111331,-0.2662381556615827],[-91.12951129511295,-0.2713038874712339],[-91.12591125911258,-0.2763696192808709],[-91.12591125911258,-0.28818966017006176],[-91.12591125911258,-0.3000097010592384],[-91.11871118711187,-0.3050754328688754],[-91.11151111511114,-0.30676401013876387],[-91.10791107911079,-0.30845258740865233],[-91.00351003510035,-0.3726185236641868],[-90.99630996309963,-0.38443856455336345],[-90.99630996309963,-0.3928814509027774],[-90.9891098910989,-0.4013243372521913],[-90.97470974709746,-0.4148329554112564],[-90.97110971109711,-0.41821010995101915],[-90.95670956709567,-0.4215872644907819],[-90.95670956709567,-0.42834157357032154],[-90.95670956709567,-0.43340730537997274],[-90.96030960309602,-0.4384730371896097],[-90.96390963909639,-0.44185019172938667],[-90.95310953109531,-0.48068746893667935],[-90.94950949509494,-0.5212133234138605],[-90.95670956709567,-0.5397876733825768],[-90.98190981909819,-0.5634277551609301],[-90.9891098910989,-0.5786249505898837],[-90.96750967509675,-0.5651163324308186],[-90.96030960309602,-0.5735592187802325],[-90.96030960309602,-0.5921335687489346],[-90.95670956709567,-0.6073307641778882],[-90.91350913509135,-0.6140850732574137],[-90.89190891908919,-0.6259051141465903],[-90.89550895508955,-0.6478566186550694],[-90.88110881108811,-0.6495451959249579],[-90.87030870308703,-0.6546109277345948],[-90.85950859508594,-0.6647423913538972],[-90.85230852308523,-0.6765624322430739],[-90.85950859508594,-0.690071050402139],[-90.84510845108451,-0.6951367822117902],[-90.81270812708127,-0.7305969048793202]]],[[[-50.63270632706326,0.07147729831496008],[-50.636306363063625,0.079920184664374],[-50.636306363063625,0.08836307101378793],[-50.63270632706326,0.09680595736320186],[-50.63270632706326,0.10693742098249004],[-50.636306363063625,0.11706888460179243],[-50.64710647106472,0.13902038911027148],[-50.64710647106472,0.15084042999944813],[-50.636306363063625,0.16603762542838751],[-50.611106111061105,0.18292339812721536],[-50.58230582305822,0.18461197539710383],[-50.560705607056065,0.1761690890476899],[-50.54270542705427,0.1711033572380387],[-50.51390513905139,0.16603762542838751],[-50.48870488704887,0.15928331634886206],[-50.47070470704708,0.14577469818979694],[-50.445504455044556,0.12551177095120636],[-50.445504455044556,0.10862599825237851],[-50.445504455044556,0.08160876193426247],[-50.44190441904419,0.061345834695657686],[-50.4311043110431,0.03601717564743012],[-50.4311043110431,0.017442825678713803],[-50.43830438304383,0.0005570529798859525],[-50.44910449104489,-0.014640142449053428],[-50.48870488704887,-0.018017296988816156],[-50.4959049590496,-0.016328719718941898],[-50.50670506705066,-0.014640142449053428],[-50.51390513905139,-0.0112629879092907],[-50.51750517505175,-0.007885833369527973],[-50.52470524705245,-0.004508678829765245],[-50.560705607056065,-0.004508678829765245],[-50.57150571505716,0.002245630249774422],[-50.58950589505895,0.012377093869062605],[-50.60030600306001,0.024197134758239258],[-50.60750607506074,0.03432859837754165],[-50.611106111061105,0.05290294834624376],[-50.61470614706147,0.05965725742578343],[-50.62550625506253,0.061345834695657686],[-50.63270632706326,0.07147729831496008]]],[[[-50.03510035100351,0.29943522974912185],[-50.00270002700026,0.30956669336842424],[-49.95949959499595,0.30787811609853577],[-49.919899198992,0.2926809206695964],[-49.85869858698587,0.3011238070190103],[-49.82629826298262,0.3213867342576009],[-49.747097470974694,0.3534697023853681],[-49.64989649896498,0.38555267051313535],[-49.55989559895599,0.38555267051313535],[-49.531095310953106,0.3534697023853681],[-49.52749527495274,0.3011238070190103],[-49.6030960309603,0.26566368435146615],[-49.64269642696428,0.23189213895381044],[-49.69309693096932,0.2048749026356944],[-49.765097650976514,0.13395465730062028],[-49.78669786697867,0.09174022555355066],[-49.80469804698046,0.047837216536606775],[-49.82989829898298,0.010688516599188347],[-49.865898658986595,-0.0112629879092907],[-49.93429934299343,-0.02814876060811855],[-49.96309963099631,-0.03321449241776975],[-49.973899738997375,-0.036591646957532475],[-49.98469984699847,-0.04334595603705793],[-49.99549995499956,-0.04841168784670913],[-50.00630006300062,-0.053477419656360325],[-50.01350013500135,-0.0450345333069464],[-50.024300243002415,-0.024771606068355823],[-50.0459004590046,-0.0028201015598767754],[-50.07110071100712,0.015754248408825333],[-50.09630096300964,0.030951443837778925],[-50.12870128701286,0.03770575291730438],[-50.175501755017535,0.029262866567890455],[-50.18270182701826,0.03432859837754165],[-50.18990189901899,0.04108290745706711],[-50.20790207902078,0.03939433018719285],[-50.22230222302224,0.03432859837754165],[-50.225902259022575,0.030951443837778925],[-50.24750247502473,0.024197134758239258],[-50.27270272702725,0.014065671138951075],[-50.29790297902977,0.012377093869062605],[-50.32310323103229,0.027574289298016197],[-50.344703447034476,0.047837216536606775],[-50.351903519035176,0.05965725742578343],[-50.351903519035176,0.07823160739448554],[-50.34110341103411,0.11538030733190396],[-50.34110341103411,0.13395465730062028],[-50.351903519035176,0.12720034822109483],[-50.359103591035904,0.11706888460179243],[-50.36630366303663,0.09174022555355066],[-50.38070380703806,0.11031457552226698],[-50.384303843038424,0.13057750276085756],[-50.38070380703806,0.19474343901639202],[-50.377103771037696,0.20825205717545714],[-50.36630366303663,0.2150063662549826],[-50.3051030510305,0.21669494352487106],[-50.27990279902798,0.22851498441404772],[-50.25470254702546,0.2302035616839362],[-50.233102331023304,0.225137829874285],[-50.200702007020055,0.22344925260439652],[-50.12870128701286,0.22176067533452226],[-50.1071010710107,0.22176067533452226],[-50.06390063900639,0.2622865298117034],[-50.03510035100351,0.29943522974912185]]],[[[-50.377103771037696,0.24540075711287557],[-50.395103951039516,0.24033502530322437],[-50.41310413104131,0.22682640714417346],[-50.420304203042036,0.20318632536580594],[-50.420304203042036,0.18967770720675503],[-50.41670416704167,0.1761690890476899],[-50.420304203042036,0.16772620269827598],[-50.427504275042736,0.16772620269827598],[-50.44910449104489,0.17785766631756417],[-50.459904599045984,0.1812348208573411],[-50.48150481504814,0.18292339812721536],[-50.49230492304923,0.1863005526669781],[-50.503105031050296,0.1913662844766293],[-50.51750517505175,0.20825205717545714],[-50.51750517505175,0.2150063662549826],[-50.51750517505175,0.2437121798430013],[-50.51390513905139,0.2572207980020522],[-50.50670506705066,0.26566368435146615],[-50.4959049590496,0.27072941616111734],[-50.485104851048504,0.2690408388912289],[-50.48150481504814,0.26566368435146615],[-50.477904779047776,0.26566368435146615],[-50.47070470704708,0.27072941616111734],[-50.47070470704708,0.27410657070088007],[-50.43830438304383,0.3973727114023262],[-50.4311043110431,0.41425848410115407],[-50.4311043110431,0.4159470613710283],[-50.42390423904237,0.41932421591079105],[-50.41310413104131,0.4210127931806795],[-50.409504095040944,0.4210127931806795],[-50.40590405904058,0.4311442567999677],[-50.409504095040944,0.4362099886096189],[-50.41670416704167,0.4412757204192701],[-50.420304203042036,0.44803002949879556],[-50.427504275042736,0.4649158021976234],[-50.4311043110431,0.47842442035668853],[-50.4311043110431,0.507130233944693],[-50.4311043110431,0.5341474702628233],[-50.4311043110431,0.5476560884218742],[-50.420304203042036,0.564541861120702],[-50.38070380703806,0.6118220246774229],[-50.36630366303663,0.6202649110268368],[-50.36630366303663,0.6151991792171856],[-50.36630366303663,0.6118220246774229],[-50.36270362703627,0.6101334474075344],[-50.359103591035904,0.6067562928677717],[-50.34830348303481,0.5712961702002417],[-50.344703447034476,0.5273931611832836],[-50.35550355503554,0.4125699068312656],[-50.351903519035176,0.40074986594208895],[-50.34830348303481,0.39061840232278655],[-50.33750337503375,0.3686668978143217],[-50.32310323103229,0.339961084226303],[-50.31590315903159,0.30956669336842424],[-50.32310323103229,0.2876151888599452],[-50.33750337503375,0.27072941616111734],[-50.34830348303481,0.25215506619241523],[-50.36270362703627,0.2487779116526383],[-50.377103771037696,0.24540075711287557]]],[[[-113.13653136531364,29.0643490222009],[-113.12573125731257,29.060971867661124],[-113.11853118531185,29.055906135851487],[-113.10053100531005,29.05252898131171],[-113.11493114931149,29.025511744993594],[-113.11493114931149,29.013691704104417],[-113.11493114931149,28.984985890516413],[-113.12213122131222,28.986674467786287],[-113.13653136531364,29.000183085945352],[-113.14733147331474,29.003560240485115],[-113.15813158131581,29.01706885864418],[-113.19053190531905,29.028888899533356],[-113.19773197731978,29.047463249502073],[-113.21573215732157,29.055906135851487],[-113.23013230132301,29.05928329039125],[-113.24453244532445,29.069414754010538],[-113.25173251732517,29.081234794899714],[-113.2589325893259,29.087989103979254],[-113.26253262532624,29.103186299408193],[-113.27693276932769,29.11669491756726],[-113.29133291332913,29.133580690266086],[-113.3021330213302,29.145400731155263],[-113.31293312933128,29.14708930842515],[-113.32013320133201,29.155532194774565],[-113.33453334533345,29.160597926584202],[-113.35253352533525,29.170729390203505],[-113.36333363333632,29.187615162902333],[-113.38853388533884,29.19774662652162],[-113.40653406534065,29.211255244680686],[-113.43173431734317,29.243338212808467],[-113.4281342813428,29.251781099157867],[-113.43533435334353,29.26697829458682],[-113.44973449734498,29.280486912745886],[-113.4641346413464,29.278798335475997],[-113.48213482134821,29.278798335475997],[-113.49653496534965,29.285552644555523],[-113.50373503735037,29.297372685444714],[-113.50373503735037,29.315947035413416],[-113.5109351093511,29.326078499032718],[-113.52533525335254,29.334521385382132],[-113.53253532535325,29.34971858081107],[-113.53973539735397,29.354784312620723],[-113.54333543335433,29.3666043535099],[-113.55773557735577,29.378424394399076],[-113.56133561335614,29.38686728074849],[-113.57213572135721,29.396998744367792],[-113.590135901359,29.40881878525697],[-113.59373593735937,29.43414744430521],[-113.590135901359,29.456098948813676],[-113.57213572135721,29.478050453322155],[-113.56493564935649,29.508444844180048],[-113.56853568535685,29.523642039608987],[-113.57213572135721,29.540527812307815],[-113.56133561335614,29.543904966847577],[-113.55773557735577,29.538839235037926],[-113.55053550535506,29.53377350322829],[-113.53613536135362,29.538839235037926],[-113.52533525335254,29.543904966847577],[-113.52533525335254,29.550659275927117],[-113.5109351093511,29.54897069865723],[-113.5109351093511,29.537150657768052],[-113.50013500135002,29.535462080498164],[-113.47853478534785,29.5320849259584],[-113.4641346413464,29.518576307799336],[-113.43173431734317,29.493247648751094],[-113.4209342093421,29.466230412432978],[-113.39573395733957,29.459476103353452],[-113.39573395733957,29.45103321700404],[-113.3849338493385,29.442590330654625],[-113.3849338493385,29.435836021575085],[-113.37413374133742,29.42232740341602],[-113.35973359733597,29.40206447617743],[-113.36333363333632,29.393621589828015],[-113.3489334893349,29.383490126208727],[-113.35973359733597,29.373358662589425],[-113.37413374133742,29.361538621700248],[-113.37773377733777,29.34465284900142],[-113.37413374133742,29.334521385382132],[-113.37053370533705,29.30919272633389],[-113.34533345333453,29.295684108174825],[-113.30573305733057,29.290618376365174],[-113.29853298532986,29.280486912745886],[-113.28413284132841,29.280486912745886],[-113.27693276932769,29.2889297990953],[-113.26253262532624,29.2889297990953],[-113.25533255332553,29.285552644555523],[-113.23733237332372,29.2889297990953],[-113.21933219332193,29.2889297990953],[-113.20493204932049,29.285552644555523],[-113.18333183331833,29.2889297990953],[-113.16893168931689,29.275421180936235],[-113.17973179731797,29.26022398550728],[-113.1761317613176,29.238272480998816],[-113.17253172531726,29.22645244010964],[-113.17253172531726,29.206189512871035],[-113.17253172531726,29.194369471981858],[-113.16533165331653,29.189303740172207],[-113.17253172531726,29.17917227655292],[-113.17253172531726,29.15722077204444],[-113.17253172531726,29.128514958456435],[-113.16893168931689,29.12007207210702],[-113.15813158131581,29.09980914486843],[-113.15453154531545,29.093054835788905],[-113.15813158131581,29.082923372169603],[-113.14733147331474,29.066037599470775],[-113.13653136531364,29.0643490222009]]],[[[-129.74349743497436,53.23464406330183],[-129.73629736297363,53.21606971333313],[-129.73629736297363,53.1907410542849],[-129.74709747097472,53.170478127046295],[-129.76869768697688,53.15865808615712],[-129.78669786697867,53.162035240696895],[-129.79749797497976,53.17216670431617],[-129.80469804698046,53.1806095906656],[-129.81909819098192,53.18736389974512],[-129.82989829898298,53.183986745205374],[-129.84069840698407,53.175543858855946],[-129.85149851498514,53.16541239523664],[-129.85869858698587,53.15865808615712],[-129.88749887498875,53.156969508887244],[-129.91269912699127,53.15865808615712],[-129.9270992709927,53.16372381796677],[-129.9378993789938,53.16878954977642],[-129.99549995499956,53.21438113606325],[-130.00630006300062,53.23126690876208],[-130.009900099001,53.24815268146091],[-130.0531005310053,53.259972722350085],[-130.07470074700745,53.268415608699485],[-130.08550085500855,53.27854707231879],[-130.08550085500855,53.29880999955739],[-130.08550085500855,53.31231861771644],[-130.09270092700928,53.322450081335745],[-130.11070110701107,53.330892967685145],[-130.14310143101432,53.330892967685145],[-130.15390153901538,53.3376472767647],[-130.1611016110161,53.35453304946353],[-130.16470164701647,53.362975935812926],[-130.17550175501754,53.3663530903527],[-130.19710197101972,53.3646645130828],[-130.20070200702008,53.36804166762258],[-130.20430204302042,53.3747959767021],[-130.2151021510215,53.38155028578163],[-130.2223022230222,53.384927440321405],[-130.3159031590316,53.393370326670805],[-130.32670326703266,53.40012463575036],[-130.36630366303663,53.447404799307066],[-130.39510395103952,53.469356303815545],[-130.40590405904058,53.48455349924447],[-130.4131041310413,53.49806211740355],[-130.40590405904058,53.509882158292726],[-130.38070380703806,53.51494789010238],[-130.33750337503375,53.51663646737225],[-130.36630366303663,53.526767930991554],[-130.38430384303842,53.526767930991554],[-130.40590405904058,53.52001362191203],[-130.43470434704346,53.51663646737225],[-130.44910449104492,53.51663646737225],[-130.45990459904598,53.52001362191203],[-130.47070470704708,53.52507935372168],[-130.50310503105032,53.55040801276991],[-130.51030510305102,53.55040801276991],[-130.51750517505175,53.55040801276991],[-130.52830528305282,53.55209659003978],[-130.53190531905318,53.56053947638921],[-130.52830528305282,53.58249098089769],[-130.52470524705245,53.60950821721579],[-130.5139051390514,53.629771144454395],[-130.4959049590496,53.6399026080737],[-130.44550445504456,53.634836876264046],[-130.4131041310413,53.62808256718452],[-130.39150391503915,53.61795110356522],[-130.36630366303663,53.61288537175557],[-130.3159031590316,53.589245289977214],[-130.2619026190262,53.580802403627786],[-130.23670236702367,53.57067094000851],[-130.18630186301863,53.54365370369038],[-130.11430114301143,53.52001362191203],[-130.07470074700745,53.4929963855939],[-129.97389973899737,53.45753626292637],[-129.9270992709927,53.43220760387811],[-129.90189901899018,53.40856752209976],[-129.89109891098911,53.40350179029011],[-129.8838988389884,53.398436058480456],[-129.87669876698766,53.37817313124188],[-129.86949869498693,53.36804166762258],[-129.76509765097651,53.265038454159736],[-129.74349743497436,53.23464406330183]]],[[[-132.64872648726487,54.81852954245181],[-132.63792637926377,54.81346381064216],[-132.6271262712627,54.80502092429276],[-132.61632616326165,54.793200883403586],[-132.61272612726128,54.78306941978428],[-132.61632616326165,54.75942933800593],[-132.63432634326344,54.75774076073603],[-132.66312663126632,54.76787222435533],[-132.68112681126811,54.78306941978428],[-132.68472684726848,54.788135151593934],[-132.68832688326881,54.801643769752985],[-132.69192691926918,54.806709501562636],[-132.6991269912699,54.81177523337229],[-132.71352713527136,54.81684096518194],[-132.72072720727206,54.82190669699159],[-132.72432724327243,54.82697242880121],[-132.7279272792728,54.84048104696029],[-132.73152731527315,54.84385820150004],[-132.73512735127352,54.84723535603982],[-132.74952749527495,54.84892393330969],[-132.75672756727568,54.85230108784947],[-132.7711277112771,54.86243255146877],[-132.77832778327783,54.87087543781817],[-132.77832778327783,54.877629746897696],[-132.7891278912789,54.88944978778687],[-132.79272792727926,54.90126982867608],[-132.7891278912789,54.91140129229535],[-132.7819278192782,54.918155601374906],[-132.78552785527856,54.92828706499418],[-132.77832778327783,54.935041374073705],[-132.77472774727747,54.92997564226408],[-132.75672756727568,54.91984417864478],[-132.74952749527495,54.93166421953396],[-132.73872738727385,54.935041374073705],[-132.72432724327243,54.93672995134361],[-132.709927099271,54.94010710588336],[-132.71352713527136,54.93335279680383],[-132.72072720727206,54.926598487724306],[-132.7279272792728,54.92322133318453],[-132.73512735127352,54.91984417864478],[-132.72432724327243,54.91477844683513],[-132.71352713527136,54.91477844683513],[-132.70632706327063,54.91984417864478],[-132.69552695526954,54.92828706499418],[-132.68472684726848,54.921532755914654],[-132.6739267392674,54.916467024105],[-132.6667266672667,54.91140129229535],[-132.66312663126632,54.90295840594595],[-132.6559265592656,54.90295840594595],[-132.64152641526414,54.90464698321583],[-132.63072630726307,54.90464698321583],[-132.61992619926198,54.89282694232665],[-132.61632616326165,54.88269547870735],[-132.61632616326165,54.87594116962782],[-132.62352623526235,54.87425259235795],[-132.63432634326344,54.8793183241676],[-132.63432634326344,54.86749828327842],[-132.63072630726307,54.855678242389246],[-132.6271262712627,54.84723535603982],[-132.63792637926377,54.84385820150004],[-132.65232652326523,54.84554677876994],[-132.66312663126632,54.84892393330969],[-132.6739267392674,54.850612510579595],[-132.68832688326881,54.84385820150004],[-132.6739267392674,54.837103892420515],[-132.67032670326702,54.828661006071115],[-132.66312663126632,54.82021811972169],[-132.64872648726487,54.81852954245181]]],[[[-132.70272702727027,54.70201771082992],[-132.67032670326702,54.676689051781665],[-132.68832688326881,54.67331189724189],[-132.72432724327243,54.676689051781665],[-132.75672756727568,54.67331189724189],[-132.76752767527677,54.69357482448049],[-132.79272792727926,54.698640556290144],[-132.8431284312843,54.69357482448049],[-132.8431284312843,54.698640556290144],[-132.8539285392854,54.71890348352872],[-132.86472864728648,54.734100678957674],[-132.86472864728648,54.7408549880372],[-132.85752857528576,54.744232142576976],[-132.83952839528393,54.7425435653071],[-132.93672936729368,54.788135151593934],[-132.95472954729547,54.80333234702286],[-132.94392943929438,54.806709501562636],[-132.9259292592926,54.815152387912036],[-132.91152911529116,54.82697242880121],[-132.9079290792908,54.83879246969042],[-132.92232922329222,54.84554677876994],[-132.94392943929438,54.842169624230166],[-132.979929799298,54.832038160610864],[-132.99792997929978,54.83879246969042],[-133.00873008730088,54.86580970600852],[-133.0231302313023,54.872564015088045],[-133.03753037530376,54.877629746897696],[-133.04833048330482,54.88944978778687],[-133.0519305193052,54.90295840594595],[-133.03753037530376,54.913089869565255],[-133.0519305193052,54.918155601374906],[-133.069930699307,54.91984417864478],[-133.10233102331023,54.91984417864478],[-133.10233102331023,54.92828706499418],[-133.0771307713077,54.93166421953396],[-133.06273062730628,54.935041374073705],[-133.05913059130592,54.94010710588336],[-133.06633066330664,54.94686141496291],[-133.0771307713077,54.948549992232785],[-133.1059310593106,54.948549992232785],[-133.1311313113131,54.94348426042313],[-133.13833138331384,54.94517283769301],[-133.1491314913149,54.953615724042436],[-133.14553145531454,54.95530430131231],[-133.14193141931418,54.96374718766174],[-133.14193141931418,54.97387865128101],[-133.15633156331563,54.98232153763044],[-133.13473134731348,54.997518733059366],[-133.15273152731527,55.02115881483775],[-133.2031320313203,55.05830751477515],[-133.19953199531994,55.06506182385468],[-133.2031320313203,55.07519328747398],[-133.21033210332104,55.087013328363156],[-133.21753217532176,55.09883336925233],[-133.16713167131672,55.09714479198246],[-133.12033120331205,55.09883336925233],[-133.13833138331384,55.11571914195116],[-133.18873188731888,55.122473451030686],[-133.2031320313203,55.13260491464999],[-133.18153181531815,55.13260491464999],[-133.21753217532176,55.15455641915847],[-133.20673206732067,55.15624499642834],[-133.18153181531815,55.15286784188859],[-133.16713167131672,55.15455641915847],[-133.1779317793178,55.16468788277777],[-133.18873188731888,55.171442191857295],[-133.19953199531994,55.17481934639707],[-133.21753217532176,55.17481934639707],[-133.21753217532176,55.1815736554766],[-133.15633156331563,55.19508227363565],[-133.18873188731888,55.21365662360435],[-133.19233192331922,55.22209950995378],[-133.18153181531815,55.23560812811283],[-133.16713167131672,55.242362437192384],[-133.14193141931418,55.24911674627191],[-133.12033120331205,55.25080532354178],[-133.1059310593106,55.24911674627191],[-133.0951309513095,55.233919550842955],[-133.10233102331023,55.220410932683905],[-133.1059310593106,55.211968046334476],[-133.08433084330844,55.20859089179473],[-133.06633066330664,55.2001480054453],[-133.06273062730628,55.18326223274647],[-133.06633066330664,55.149490687348816],[-133.05553055530555,55.144424955539165],[-133.01233012330124,55.13260491464999],[-132.99792997929978,55.12585060557046],[-132.99432994329942,55.11909629649094],[-132.99432994329942,55.100521946522235],[-132.99072990729906,55.09207906017281],[-132.95472954729547,55.06506182385468],[-132.98352983529836,55.07519328747398],[-133.01953019530197,55.09714479198246],[-133.05553055530555,55.108964832871635],[-133.0879308793088,55.09207906017281],[-132.99792997929978,55.06506182385468],[-132.99792997929978,55.05830751477515],[-133.0339303393034,55.04986462842575],[-133.04473044730446,55.04986462842575],[-133.04473044730446,55.0431103193462],[-133.01233012330124,55.0346674329968],[-132.98352983529836,55.03129027845702],[-132.95832958329584,55.02284739210762],[-132.94392943929438,54.99583015578949],[-132.94032940329402,54.953615724042436],[-132.94392943929438,54.948549992232785],[-132.93312933129332,54.94517283769301],[-132.9079290792908,54.95192714677253],[-132.89352893528934,54.948549992232785],[-132.90072900729007,54.94010710588336],[-132.89352893528934,54.93841852861348],[-132.88992889928898,54.93672995134361],[-132.88632886328864,54.935041374073705],[-132.89352893528934,54.92997564226408],[-132.90072900729007,54.913089869565255],[-132.86112861128612,54.899581251406175],[-132.8431284312843,54.88944978778687],[-132.83952839528393,54.872564015088045],[-132.8251282512825,54.87594116962782],[-132.81432814328144,54.86749828327842],[-132.81432814328144,54.855678242389246],[-132.8251282512825,54.84385820150004],[-132.81432814328144,54.84048104696029],[-132.78552785527856,54.837103892420515],[-132.7711277112771,54.832038160610864],[-132.7639276392764,54.82528385153134],[-132.76032760327604,54.81852954245181],[-132.75672756727568,54.81177523337229],[-132.74952749527495,54.80333234702286],[-132.72072720727206,54.77631511070476],[-132.72432724327243,54.76787222435533],[-132.74952749527495,54.75605218346615],[-132.74232742327422,54.74929787438663],[-132.74952749527495,54.74760929711675],[-132.7531275312753,54.74592071984685],[-132.75672756727568,54.7425435653071],[-132.70632706327063,54.72903494714802],[-132.68832688326881,54.717214906258846],[-132.70272702727027,54.70201771082992]]],[[[-133.2931329313293,55.26262536443096],[-133.27873278732787,55.282888291669565],[-133.26073260732608,55.28119971439966],[-133.23553235532356,55.27444540532014],[-133.21033210332104,55.27106825078039],[-133.22833228332283,55.25249390081166],[-133.23553235532356,55.242362437192384],[-133.23913239132392,55.220410932683905],[-133.24993249932498,55.21703377814413],[-133.27153271532717,55.21534520087425],[-133.30753307533075,55.20352515998508],[-133.31473314733148,55.201836582715174],[-133.3291332913329,55.20352515998508],[-133.33273332733327,55.206902314524825],[-133.339933399334,55.2102794690646],[-133.3471334713347,55.21534520087425],[-133.36873368733688,55.22209950995378],[-133.3831338313383,55.22378808722365],[-133.38673386733868,55.218722355414],[-133.39033390333904,55.20859089179473],[-133.4011340113401,55.20352515998508],[-133.4119341193412,55.2001480054453],[-133.4227342273423,55.201836582715174],[-133.43713437134372,55.211968046334476],[-133.44433444334442,55.228853819033304],[-133.45153451534514,55.25080532354178],[-133.44793447934478,55.27106825078039],[-133.43713437134372,55.26600251897074],[-133.42633426334262,55.26262536443096],[-133.4119341193412,55.264313941700834],[-133.4011340113401,55.27106825078039],[-133.43353433534335,55.28626544620931],[-133.44433444334442,55.29808548709849],[-133.43353433534335,55.31497125979732],[-133.41553415534156,55.318348414337095],[-133.39033390333904,55.31497125979732],[-133.37593375933758,55.31665983706722],[-133.3831338313383,55.331857032496146],[-133.36153361533616,55.33354560976605],[-133.339933399334,55.3369227643058],[-133.31833318333184,55.33861134157567],[-133.30033300333002,55.331857032496146],[-133.2859328593286,55.318348414337095],[-133.2931329313293,55.30146264163827],[-133.31833318333184,55.27106825078039],[-133.2931329313293,55.26262536443096]]],[[[-133.88353883538835,56.490221039635685],[-133.86913869138692,56.48684388509591],[-133.8619386193862,56.47840099874651],[-133.85833858338583,56.46658095785733],[-133.85473854738547,56.454760916968155],[-133.84753847538474,56.45138376242838],[-133.82593825938258,56.44294087607898],[-133.8439384393844,56.43449798972955],[-133.88713887138871,56.4395637215392],[-133.90873908739087,56.43449798972955],[-133.89793897938978,56.42436652611025],[-133.88353883538835,56.41761221703072],[-133.87633876338762,56.4108579079512],[-133.879938799388,56.39397213525237],[-133.88713887138871,56.392283557982495],[-133.89793897938978,56.39397213525237],[-133.90873908739087,56.39059498071259],[-133.9159391593916,56.373709208013764],[-133.85833858338583,56.35851201258484],[-133.8439384393844,56.34838054896554],[-133.84033840338404,56.338249085346234],[-133.85473854738547,56.31123184902813],[-133.84753847538474,56.29772323086905],[-133.86913869138692,56.28421461271],[-133.89793897938978,56.30616611721848],[-133.93033930339303,56.33993766261614],[-133.95553955539555,56.36020058985471],[-133.97353973539737,56.36020058985471],[-133.97353973539737,56.351757703505314],[-133.97353973539737,56.33656050807636],[-133.969939699397,56.31798615810766],[-133.9771397713977,56.29603465359918],[-133.98073980739807,56.28421461271],[-133.9771397713977,56.27914888090035],[-133.9591395913959,56.27746030363048],[-133.92313923139233,56.280837458170225],[-133.90873908739087,56.275771726360574],[-133.89073890738908,56.23018014007374],[-133.89433894338944,56.22004867645444],[-133.94473944739448,56.21160579010504],[-133.94473944739448,56.20147432648574],[-133.92673926739266,56.17276851289773],[-133.91953919539196,56.16770278108808],[-133.9159391593916,56.15925989473868],[-133.91953919539196,56.150817008389254],[-133.93753937539375,56.1373083902302],[-133.94113941139412,56.13055408115068],[-133.9339393393934,56.1187340402615],[-133.94113941139412,56.10353684483255],[-133.94833948339482,56.09171680394337],[-133.96273962739627,56.08665107213372],[-133.98073980739807,56.084962494863845],[-133.99513995139952,56.08833964940359],[-134.0311403114031,56.10522542210242],[-134.03834038340383,56.11197973118195],[-134.03834038340383,56.12379977207115],[-134.00954009540095,56.18458855378691],[-134.01674016740168,56.196408594676086],[-134.0311403114031,56.20654005829539],[-134.03834038340383,56.21667152191469],[-134.03834038340383,56.23862302642317],[-134.0311403114031,56.2740831490907],[-134.0311403114031,56.30616611721848],[-134.05274052740526,56.31798615810766],[-134.07074070740708,56.302788962678704],[-134.06714067140672,56.2740831490907],[-134.07074070740708,56.24875449004247],[-134.10674106741067,56.24368875823282],[-134.08874088740887,56.19303144013634],[-134.12114121141212,56.17952282197726],[-134.1679416794168,56.182899976517035],[-134.18954189541896,56.177834244707384],[-134.16074160741607,56.14068554476998],[-134.14994149941498,56.1373083902302],[-134.14634146341464,56.14068554476998],[-134.14274142741428,56.14406269930973],[-134.1319413194132,56.147439853849505],[-134.1031410314103,56.14068554476998],[-134.09954099540994,56.12379977207115],[-134.09954099540994,56.10522542210242],[-134.0851408514085,56.09171680394337],[-134.09234092340924,56.08327391759394],[-134.09954099540994,56.07651960851442],[-134.12114121141212,56.06469956762524],[-134.10674106741067,56.052879526736064],[-134.09954099540994,56.03261659949749],[-134.1031410314103,56.01066509498901],[-134.1139411394114,55.99715647682993],[-134.12834128341282,55.99884505409983],[-134.14994149941498,56.01235367225888],[-134.1571415714157,56.027550867687836],[-134.14274142741428,56.044436640386664],[-134.16434164341644,56.052879526736064],[-134.2111421114211,56.063010990355366],[-134.22554225542257,56.07820818578432],[-134.2111421114211,56.08665107213372],[-134.20754207542075,56.098471113022896],[-134.21474214742148,56.1086025766422],[-134.23274232742327,56.11197973118195],[-134.23634236342363,56.1187340402615],[-134.22554225542257,56.13055408115068],[-134.20034200342002,56.150817008389254],[-134.19674196741965,56.16263704927843],[-134.2111421114211,56.16770278108808],[-134.23274232742327,56.169391358357984],[-134.23634236342363,56.16770278108808],[-134.2471424714247,56.177834244707384],[-134.25074250742506,56.187965708326686],[-134.25074250742506,56.21667152191469],[-134.25434254342542,56.22849156280387],[-134.26154261542615,56.24706591277257],[-134.26514265142652,56.26057453093165],[-134.2579425794258,56.272394571820826],[-134.22554225542257,56.25719737639187],[-134.21834218342184,56.267328840011174],[-134.21834218342184,56.2825260354401],[-134.21474214742148,56.29096892178953],[-134.20754207542075,56.29772323086905],[-134.18954189541896,56.30447753994858],[-134.16434164341644,56.30616611721848],[-134.16074160741607,56.31292042629801],[-134.1679416794168,56.33318335353658],[-134.18234182341823,56.32642904445706],[-134.23274232742327,56.31123184902813],[-134.24354243542436,56.30110038540883],[-134.25074250742506,56.29772323086905],[-134.26154261542615,56.29603465359918],[-134.27234272342724,56.294346076329305],[-134.2831428314283,56.294346076329305],[-134.2939429394294,56.29772323086905],[-134.2939429394294,56.30447753994858],[-134.26154261542615,56.316297580837755],[-134.26514265142652,56.329806198996835],[-134.2831428314283,56.34669197169566],[-134.2831428314283,56.36357774439449],[-134.26874268742688,56.365266321664365],[-134.23634236342363,56.365266321664365],[-134.23274232742327,56.370332053474016],[-134.239942399424,56.40410359887167],[-134.23634236342363,56.414235062490974],[-134.2291422914229,56.4209893715705],[-134.21834218342184,56.41592363976085],[-134.20754207542075,56.4108579079512],[-134.19674196741965,56.40748075341142],[-134.17874178741786,56.41254648522107],[-134.17874178741786,56.419300794300625],[-134.17874178741786,56.427743680650025],[-134.18234182341823,56.43787514426933],[-134.17874178741786,56.441252298809076],[-134.1679416794168,56.43449798972955],[-134.16074160741607,56.422677948840374],[-134.1571415714157,56.4108579079512],[-134.1571415714157,56.365266321664365],[-134.14634146341464,56.373709208013764],[-134.1139411394114,56.39397213525237],[-134.1139411394114,56.39566071252224],[-134.11754117541176,56.400726444331895],[-134.1139411394114,56.405792176141546],[-134.1031410314103,56.40748075341142],[-134.08154081540815,56.400726444331895],[-134.07074070740708,56.38890640344272],[-134.059940599406,56.37539778528367],[-134.0491404914049,56.36695489893424],[-134.03834038340383,56.373709208013764],[-134.03474034740347,56.38384067163307],[-134.03474034740347,56.40916933068132],[-134.0311403114031,56.4209893715705],[-134.0419404194042,56.432809412459676],[-134.059940599406,56.44800660788863],[-134.06714067140672,56.46151522604768],[-134.06714067140672,56.47840099874651],[-134.059940599406,56.485155307826034],[-134.0491404914049,56.48346673055616],[-134.0311403114031,56.47502384420673],[-134.03474034740347,56.485155307826034],[-134.03834038340383,56.49697534871521],[-134.04554045540456,56.50710681233451],[-134.05634056340563,56.51048396687429],[-134.059940599406,56.51554969868391],[-134.06354063540635,56.53750120319239],[-134.06714067140672,56.54425551227192],[-134.08154081540815,56.55100982135147],[-134.09234092340924,56.53581262592252],[-134.1031410314103,56.512172544144164],[-134.12114121141212,56.49697534871521],[-134.13914139141392,56.498663925985085],[-134.1571415714157,56.512172544144164],[-134.17154171541716,56.530746894112866],[-134.18954189541896,56.54425551227192],[-134.21834218342184,56.55607555316112],[-134.2471424714247,56.56282986224065],[-134.2759427594276,56.56451843951052],[-134.30474304743046,56.557764130430996],[-134.30474304743046,56.56451843951052],[-134.2291422914229,56.60673287125758],[-134.18234182341823,56.615175757607005],[-134.16074160741607,56.63037295303596],[-134.14274142741428,56.63375010757571],[-134.10674106741067,56.628684375766056],[-134.09234092340924,56.63206153030583],[-134.0851408514085,56.64725872573479],[-134.11754117541176,56.65401303481431],[-134.14274142741428,56.65232445754441],[-134.22554225542257,56.623618643956405],[-134.2471424714247,56.62024148941666],[-134.26514265142652,56.62699579849618],[-134.28674286742867,56.64725872573479],[-134.26514265142652,56.65570161208419],[-134.239942399424,56.65570161208419],[-134.22554225542257,56.66245592116371],[-134.21834218342184,56.68440742567219],[-134.2219422194222,56.69453888929149],[-134.23274232742327,56.69622746656137],[-134.2471424714247,56.69453888929149],[-134.25074250742506,56.69285031202162],[-134.25434254342542,56.67596453932279],[-134.26154261542615,56.67089880751314],[-134.30834308343083,56.66583307570349],[-134.33354333543335,56.66752165297336],[-134.35874358743587,56.67596453932279],[-134.3659436594366,56.69285031202162],[-134.39114391143912,56.71986754833972],[-134.39834398343982,56.72999901195902],[-134.39474394743948,56.7418190528482],[-134.38754387543875,56.757016248277154],[-134.39114391143912,56.78065633005551],[-134.40554405544054,56.819493607262814],[-134.4091440914409,56.84313368904117],[-134.40554405544054,56.85326515266047],[-134.39834398343982,56.860019461739995],[-134.38754387543875,56.865085193549646],[-134.3767437674377,56.86677377081952],[-134.36234362343623,56.86339661627977],[-134.35154351543514,56.854953729930344],[-134.33354333543335,56.83131364815199],[-134.3011430114301,56.802607834563986],[-134.27954279542794,56.792476370944684],[-134.27234272342724,56.80091925729411],[-134.2759427594276,56.82118218453269],[-134.29034290342904,56.83469080269177],[-134.30474304743046,56.846510843580944],[-134.31914319143192,56.860019461739995],[-134.32994329943298,56.888725275328],[-134.30474304743046,56.89716816167743],[-134.23274232742327,56.89379100713765],[-134.2219422194222,56.890413852597874],[-134.18234182341823,56.860019461739995],[-134.1679416794168,56.85326515266047],[-134.14634146341464,56.84819942085082],[-134.1247412474125,56.846510843580944],[-134.10674106741067,56.846510843580944],[-134.10674106741067,56.85326515266047],[-134.12114121141212,56.86170803900987],[-134.14274142741428,56.88534812078822],[-134.1571415714157,56.89379100713765],[-134.19674196741965,56.900545316217176],[-134.21474214742148,56.9072996252967],[-134.2111421114211,56.922496820725655],[-134.2219422194222,56.92925112980518],[-134.26514265142652,56.94107117069436],[-134.239942399424,56.94107117069436],[-134.17514175141753,56.922496820725655],[-134.12834128341282,56.917431088916004],[-134.10674106741067,56.91236535710635],[-134.0851408514085,56.900545316217176],[-134.05274052740526,56.895479584407525],[-134.01314013140131,56.88534812078822],[-133.9879398793988,56.865085193549646],[-133.99153991539916,56.83131364815199],[-133.969939699397,56.83637937996164],[-133.96273962739627,56.83131364815199],[-133.95553955539555,56.797542102754335],[-133.95193951939518,56.802607834563986],[-133.94113941139412,56.80767356637364],[-133.9339393393934,56.81273929818329],[-133.93033930339303,56.80091925729411],[-133.91953919539196,56.770524866436205],[-133.91233912339123,56.76377055735668],[-133.9051390513905,56.7603934028169],[-133.9051390513905,56.75363909373738],[-133.90873908739087,56.74688478465785],[-133.92313923139233,56.740130475578326],[-133.92313923139233,56.7333761664988],[-133.91953919539196,56.7232447028795],[-133.92313923139233,56.71649039379997],[-133.92673926739266,56.71142466199032],[-133.93753937539375,56.70635893018067],[-133.94473944739448,56.70298177564089],[-133.95553955539555,56.677653116592666],[-133.9591395913959,56.67089880751314],[-133.97353973539737,56.66076734389384],[-133.9879398793988,56.65570161208419],[-134.0239402394024,56.65401303481431],[-133.99513995139952,56.63881583938536],[-133.96273962739627,56.64388157119501],[-133.93753937539375,56.65907876662396],[-133.9159391593916,56.68103027113244],[-133.9159391593916,56.68778458021197],[-133.91953919539196,56.69453888929149],[-133.91953919539196,56.699604621101145],[-133.91233912339123,56.70298177564089],[-133.90153901539014,56.70298177564089],[-133.88713887138871,56.708047507450544],[-133.87633876338762,56.708047507450544],[-133.86913869138692,56.71480181653007],[-133.8619386193862,56.72999901195902],[-133.85833858338583,56.74519620738798],[-133.85473854738547,56.757016248277154],[-133.85833858338583,56.78065633005551],[-133.86553865538656,56.80091925729411],[-133.8619386193862,56.80936214364351],[-133.8331383313833,56.797542102754335],[-133.81153811538115,56.78065633005551],[-133.80073800738006,56.77727917551573],[-133.76833768337684,56.78572206186516],[-133.75033750337502,56.784033484595284],[-133.73233732337323,56.77896775278563],[-133.7179371793718,56.770524866436205],[-133.77553775537754,56.699604621101145],[-133.7791377913779,56.686096002942065],[-133.7719377193772,56.67596453932279],[-133.7611376113761,56.66921023024324],[-133.73233732337323,56.66245592116371],[-133.72873728737287,56.65232445754441],[-133.72873728737287,56.642192993925136],[-133.72873728737287,56.63375010757571],[-133.7071370713707,56.60335571671783],[-133.71073710737107,56.5949128303684],[-133.7359373593736,56.5678955940503],[-133.74673746737466,56.561141284970745],[-133.75753757537575,56.55945270770087],[-133.7719377193772,56.557764130430996],[-133.7791377913779,56.56282986224065],[-133.79353793537936,56.588158521288875],[-133.80073800738006,56.59828998490818],[-133.82233822338225,56.60842144852748],[-133.9051390513905,56.62024148941666],[-133.92313923139233,56.61686433487688],[-133.90873908739087,56.601667139447954],[-133.85833858338583,56.588158521288875],[-133.84753847538474,56.56451843951052],[-133.8511385113851,56.56451843951052],[-133.8727387273873,56.53581262592252],[-133.8727387273873,56.530746894112866],[-133.88713887138871,56.52399258503334],[-133.90873908739087,56.520615430493564],[-133.91953919539196,56.51386112141404],[-133.91953919539196,56.50541823506464],[-133.90873908739087,56.49697534871521],[-133.89433894338944,56.49190961690556],[-133.88353883538835,56.490221039635685]]],[[[-133.91233912339123,57.082911661364506],[-133.90153901539014,57.08966597044403],[-133.88713887138871,57.08966597044403],[-133.76473764737648,57.07615735228498],[-133.67113671136713,57.06096015685603],[-133.5811358113581,57.05082869323675],[-133.5451354513545,57.03732007507767],[-133.49113491134912,57.03056576599815],[-133.4659346593466,57.02381145691862],[-133.4119341193412,57.00354852968002],[-133.38673386733868,56.99679422060049],[-133.33633336333364,56.99679422060049],[-133.31473314733148,56.99003991152097],[-133.30033300333002,56.96977698428236],[-133.28953289532896,56.95120263431366],[-133.27873278732787,56.93262828434496],[-133.26433264332644,56.92587397526543],[-133.23553235532356,56.93431686161483],[-133.2751327513275,56.96639982974261],[-133.2931329313293,56.98835133425109],[-133.30033300333002,57.01030283875954],[-133.23913239132392,56.99679422060049],[-133.10953109531096,56.998482797870366],[-133.0519305193052,56.98328560244144],[-133.04473044730446,56.96639982974261],[-133.02673026730267,56.95120263431366],[-133.00153001530015,56.93938259342448],[-132.979929799298,56.93431686161483],[-132.96912969129693,56.92587397526543],[-132.95472954729547,56.90561104802683],[-132.93672936729368,56.86677377081952],[-132.93672936729368,56.84988799812069],[-132.94752947529474,56.83469080269177],[-132.96552965529656,56.82287076180256],[-132.98712987129872,56.81780502999294],[-132.99072990729906,56.80767356637364],[-132.979929799298,56.78741063913503],[-132.95472954729547,56.757016248277154],[-132.9511295112951,56.74688478465785],[-132.94752947529474,56.70973608472045],[-132.9511295112951,56.70129319837102],[-132.9511295112951,56.69622746656137],[-132.94752947529474,56.69116173475172],[-132.94032940329402,56.68778458021197],[-132.93672936729368,56.68440742567219],[-132.93672936729368,56.677653116592666],[-132.93312933129332,56.642192993925136],[-132.94032940329402,56.62699579849618],[-132.9619296192962,56.61348718033713],[-132.97272972729726,56.610110025797354],[-132.99792997929978,56.6050442939877],[-133.01233012330124,56.60673287125758],[-133.0231302313023,56.61348718033713],[-133.04833048330482,56.63543868484561],[-133.06273062730628,56.64050441665523],[-133.08433084330844,56.645570148464884],[-133.10953109531096,56.66076734389384],[-133.18513185131852,56.721556125609624],[-133.19953199531994,56.73675332103855],[-133.20673206732067,56.770524866436205],[-133.21753217532176,56.78741063913503],[-133.2319323193232,56.802607834563986],[-133.24993249932498,56.81273929818329],[-133.2571325713257,56.80091925729411],[-133.2751327513275,56.80429641183386],[-133.33273332733327,56.83469080269177],[-133.3471334713347,56.838067957231516],[-133.35073350733506,56.833002225421865],[-133.3219332193322,56.79923068002421],[-133.3219332193322,56.78741063913503],[-133.32553325533254,56.775590598245856],[-133.32553325533254,56.76377055735668],[-133.31833318333184,56.75026193919763],[-133.3039330393304,56.735064743768675],[-133.2859328593286,56.726621857419275],[-133.2679326793268,56.7333761664988],[-133.24993249932498,56.7435076301181],[-133.23553235532356,56.7418190528482],[-133.22113221132213,56.7316875892289],[-133.21753217532176,56.71142466199032],[-133.21753217532176,56.677653116592666],[-133.22113221132213,56.67089880751314],[-133.23913239132392,56.65739018935406],[-133.24273242732426,56.64725872573479],[-133.24273242732426,56.63375010757571],[-133.23553235532356,56.63543868484561],[-133.22833228332283,56.642192993925136],[-133.22473224732246,56.64725872573479],[-133.2139321393214,56.645570148464884],[-133.19233192331922,56.642192993925136],[-133.16353163531636,56.63881583938536],[-133.1311313113131,56.63206153030583],[-133.1059310593106,56.62024148941666],[-133.0951309513095,56.60673287125758],[-133.1059310593106,56.59828998490818],[-133.12033120331205,56.6050442939877],[-133.13473134731348,56.610110025797354],[-133.15273152731527,56.61348718033713],[-133.16713167131672,56.61348718033713],[-133.16713167131672,56.60673287125758],[-133.11313113131132,56.593224253098526],[-133.10233102331023,56.586469944019],[-133.0951309513095,56.57296132585995],[-133.0879308793088,56.54425551227192],[-133.08073080730807,56.530746894112866],[-133.13473134731348,56.530746894112866],[-133.12393123931238,56.51048396687429],[-133.12393123931238,56.49190961690556],[-133.1311313113131,56.47502384420673],[-133.1491314913149,56.46151522604768],[-133.159931599316,56.4581380715079],[-133.17433174331742,56.45644949423803],[-133.19953199531994,56.454760916968155],[-133.22473224732246,56.46151522604768],[-133.22833228332283,56.46489238058746],[-133.2319323193232,56.46995811239708],[-133.23553235532356,56.47502384420673],[-133.26433264332644,56.47840099874651],[-133.31833318333184,56.47164668966698],[-133.3471334713347,56.47502384420673],[-133.3579335793358,56.48346673055616],[-133.36153361533616,56.49359819417546],[-133.36873368733688,56.50035250325499],[-133.38673386733868,56.503729657794736],[-133.43713437134372,56.503729657794736],[-133.42633426334262,56.498663925985085],[-133.41913419134193,56.49190961690556],[-133.4119341193412,56.485155307826034],[-133.40833408334083,56.47502384420673],[-133.429934299343,56.47502384420673],[-133.4227342273423,56.463203803317555],[-133.44073440734408,56.45307233969825],[-133.5271352713527,56.4395637215392],[-133.62073620736209,56.44294087607898],[-133.66033660336603,56.46489238058746],[-133.6531365313653,56.55607555316112],[-133.68913689136892,56.57127274859005],[-133.67833678336783,56.58478136674913],[-133.64593645936458,56.593224253098526],[-133.6351363513635,56.60673287125758],[-133.6531365313653,56.6050442939877],[-133.66033660336603,56.615175757607005],[-133.65673656736567,56.628684375766056],[-133.66033660336603,56.64050441665523],[-133.67473674736746,56.64894730300466],[-133.68553685536855,56.65232445754441],[-133.69633696336962,56.65907876662396],[-133.70353703537035,56.67427596205289],[-133.69993699936998,56.69453888929149],[-133.69273692736928,56.71142466199032],[-133.68913689136892,56.72999901195902],[-133.69633696336962,56.757016248277154],[-133.6819368193682,56.7603934028169],[-133.67833678336783,56.76545913462655],[-133.67833678336783,56.77221344370611],[-133.68553685536855,56.78065633005551],[-133.69273692736928,56.792476370944684],[-133.68913689136892,56.79923068002421],[-133.67833678336783,56.797542102754335],[-133.66033660336603,56.79078779367481],[-133.67113671136713,56.81273929818329],[-133.67473674736746,56.838067957231516],[-133.67833678336783,56.85326515266047],[-133.69633696336962,56.85326515266047],[-133.69633696336962,56.84988799812069],[-133.69633696336962,56.83637937996164],[-133.69633696336962,56.83131364815199],[-133.70353703537035,56.829625070882116],[-133.71433714337144,56.82624791634234],[-133.72153721537217,56.82287076180256],[-133.72873728737287,56.81442787545316],[-133.73953739537396,56.80936214364351],[-133.75393753937539,56.80767356637364],[-133.76473764737648,56.81273929818329],[-133.75033750337502,56.81780502999294],[-133.75033750337502,56.82624791634234],[-133.76473764737648,56.824559339072465],[-133.78273782737827,56.82624791634234],[-133.79353793537936,56.83131364815199],[-133.8079380793808,56.83975653450139],[-133.80433804338043,56.84313368904117],[-133.80073800738006,56.85326515266047],[-133.81153811538115,56.85326515266047],[-133.81873818738188,56.854953729930344],[-133.82233822338225,56.86170803900987],[-133.81873818738188,56.873528079899046],[-133.83673836738367,56.87183950262917],[-133.8511385113851,56.868462348089395],[-133.8619386193862,56.868462348089395],[-133.87633876338762,56.87690523443882],[-133.89073890738908,56.89379100713765],[-133.88713887138871,56.90223389348705],[-133.87633876338762,56.90223389348705],[-133.8619386193862,56.900545316217176],[-133.7971379713797,56.881970966248474],[-133.76473764737648,56.8802823889786],[-133.7359373593736,56.89379100713765],[-133.75393753937539,56.900545316217176],[-133.84033840338404,56.91911966618588],[-133.88713887138871,56.95626836612331],[-134.01674016740168,57.0170571478391],[-134.01674016740168,57.02381145691862],[-134.01314013140131,57.02887718872827],[-134.00954009540095,57.0356314978078],[-134.01314013140131,57.055894425046375],[-134.0059400594006,57.0643373113958],[-133.9879398793988,57.06602588866568],[-133.95553955539555,57.06602588866568],[-133.94473944739448,57.06771446593558],[-133.9339393393934,57.07109162047533],[-133.92313923139233,57.07615735228498],[-133.91233912339123,57.082911661364506]]],[[[-153.41733417334174,58.06566363243624],[-153.32373323733236,58.1281409914219],[-153.3309333093331,58.13489530050143],[-153.3129331293313,58.14164960958095],[-153.2949329493295,58.1467153413906],[-153.2769327693277,58.1467153413906],[-153.26253262532626,58.14164960958095],[-153.22653226532265,58.11294379599295],[-153.20133201332013,58.0994351778339],[-153.18333183331833,58.09268086875437],[-153.12933129331293,58.0994351778339],[-153.11853118531184,58.0994351778339],[-153.10773107731077,58.094369446024245],[-153.08973089730898,58.07579509605554],[-153.0789307893079,58.072417941515766],[-153.07533075330753,58.067352209706115],[-153.05733057330573,58.04202355065789],[-153.04653046530464,58.03695781884824],[-152.99972999729997,58.031892087038585],[-152.89172891728919,57.99812054164093],[-152.90252902529025,57.991366232561404],[-152.91692916929168,57.991366232561404],[-152.93132931329313,57.996431964371055],[-152.94572945729456,57.99812054164093],[-152.98532985329854,57.98630050075175],[-152.99972999729997,57.98461192348188],[-153.02853028530285,57.98798907802163],[-153.08253082530825,58.00656342799036],[-153.1149311493115,58.01331773706988],[-153.16893168931688,58.031892087038585],[-153.20133201332013,58.03020350976871],[-153.21573215732158,58.03526924157836],[-153.24453244532447,58.072417941515766],[-153.26253262532626,58.085926559674846],[-153.28773287732878,58.085926559674846],[-153.26253262532626,58.058909323356716],[-153.25173251732517,58.05215501427719],[-153.34173341733418,58.04708928246754],[-153.38133381333813,58.04877785973741],[-153.41733417334174,58.06566363243624]]],[[[-134.3551435514355,57.09304312498381],[-134.3551435514355,57.08628881590428],[-134.40554405544054,57.06771446593558],[-134.4379443794438,57.06096015685603],[-134.47034470344704,57.03900865234755],[-134.48474484744847,57.03056576599815],[-134.50274502745026,57.02887718872827],[-134.55674556745566,57.03056576599815],[-134.57474574745748,57.02887718872827],[-134.61434614346143,57.01030283875954],[-134.59994599945998,57.04914011596685],[-134.59994599945998,57.069403043205455],[-134.62154621546216,57.11161747495251],[-134.61434614346143,57.126814670381464],[-134.59274592745928,57.140323288540515],[-134.57834578345785,57.15552048396947],[-134.61434614346143,57.17578341120807],[-134.62514625146252,57.18422629755747],[-134.63234632346322,57.19604633844665],[-134.6359463594636,57.2112435338756],[-134.63234632346322,57.224752152034654],[-134.62154621546216,57.229817883844305],[-134.55674556745566,57.216309265685254],[-134.52434524345244,57.216309265685254],[-134.50634506345062,57.23657219292383],[-134.53874538745387,57.23994934746361],[-134.55674556745566,57.24501507927326],[-134.57114571145712,57.25345796562266],[-134.58194581945818,57.265278006511835],[-134.58194581945818,57.26865516105161],[-134.56754567545676,57.283852356480566],[-134.54234542345424,57.30073812917939],[-134.51714517145172,57.30918101552879],[-134.45594455944558,57.31255817006857],[-134.4631446314463,57.319312479148095],[-134.48834488344883,57.33619825184692],[-134.4991449914499,57.33957540638667],[-134.53154531545314,57.33957540638667],[-134.5459454594546,57.34295256092645],[-134.56034560345603,57.35308402454575],[-134.5531455314553,57.363215488165054],[-134.56034560345603,57.38685556994341],[-134.55674556745566,57.39698703356268],[-134.54234542345424,57.403741342642235],[-134.52074520745208,57.403741342642235],[-134.509945099451,57.39529845629281],[-134.51354513545135,57.38010126086385],[-134.40194401944018,57.35983833362528],[-134.34074340743408,57.33450967457702],[-134.3119431194312,57.332821097307146],[-134.32274322743228,57.34464113819632],[-134.3371433714337,57.354772601815625],[-134.3659436594366,57.3665926427048],[-134.3659436594366,57.37334695178433],[-134.35154351543514,57.37503552905423],[-134.33354333543335,57.37841268359398],[-134.31914319143192,57.385166992673504],[-134.30474304743046,57.39360987902293],[-134.34074340743408,57.39698703356268],[-134.42354423544236,57.385166992673504],[-134.4631446314463,57.39360987902293],[-134.4739447394474,57.40036418810246],[-134.4991449914499,57.42907000169046],[-134.5351453514535,57.45777581527847],[-134.5351453514535,57.46284154708812],[-134.54954549545494,57.46790727889777],[-134.5639456394564,57.479727319786946],[-134.56754567545676,57.49154736067612],[-134.56034560345603,57.49830166975565],[-134.54954549545494,57.496613092485774],[-134.53154531545314,57.49154736067612],[-134.52074520745208,57.48985878340625],[-134.51354513545135,57.49154736067612],[-134.49554495544956,57.501678824295425],[-134.4739447394474,57.506744556105076],[-134.44154441544416,57.52025317426413],[-134.40554405544054,57.52700748334365],[-134.3551435514355,57.54389325604248],[-134.3767437674377,57.55233614239191],[-134.48834488344883,57.532073215153304],[-134.54234542345424,57.51181028791473],[-134.56754567545676,57.51181028791473],[-134.57834578345785,57.523630328803904],[-134.60354603546034,57.564156183281085],[-134.6179461794618,57.572599069630485],[-134.63954639546395,57.57935337871004],[-134.65394653946538,57.59792772867874],[-134.66474664746647,57.621567810457094],[-134.66834668346684,57.6418307376957],[-134.6719467194672,57.67222512855358],[-134.67554675546756,57.68235659217288],[-134.70074700747006,57.70768525122111],[-134.70434704347042,57.71275098303076],[-134.7151471514715,57.746522528428414],[-134.7151471514715,57.74989968296819],[-134.70794707947078,57.75665399204772],[-134.70434704347042,57.76847403293689],[-134.69714697146972,57.79211411471525],[-134.69714697146972,57.81237704195382],[-134.7151471514715,57.85628005097078],[-134.72234722347224,57.89680590544796],[-134.7511475114751,57.955906109893874],[-134.7619476194762,57.9727918825927],[-134.7619476194762,57.97954619167223],[-134.7511475114751,57.98967765529153],[-134.76554765547655,58.00656342799036],[-134.78354783547834,58.02007204614941],[-134.80154801548014,58.03526924157836],[-134.8051480514805,58.05553216881694],[-134.7979479794798,58.072417941515766],[-134.75474754747546,58.094369446024245],[-134.7439474394744,58.11294379599295],[-134.74754747547476,58.124763836882124],[-134.7511475114751,58.13658387777133],[-134.75474754747546,58.14502676412073],[-134.75834758347582,58.148403918660506],[-134.75474754747546,58.16022395954968],[-134.7439474394744,58.16697826862921],[-134.73674736747367,58.17204400043886],[-134.72954729547297,58.178798309518385],[-134.73674736747367,58.18892977313769],[-134.74754747547476,58.187241195867784],[-134.76914769147692,58.17542115497861],[-134.77634776347765,58.17204400043886],[-134.77634776347765,58.16022395954968],[-134.77274772747728,58.1467153413906],[-134.77274772747728,58.13489530050143],[-134.78354783547834,58.11125521872307],[-134.7979479794798,58.11294379599295],[-134.83034830348305,58.151781073200254],[-134.84474844748448,58.17204400043886],[-134.85194851948518,58.178798309518385],[-134.87354873548736,58.18555261859791],[-134.89154891548915,58.192306927677436],[-134.90594905949058,58.200749814026864],[-134.91674916749167,58.20919270037626],[-134.90954909549095,58.23114420488474],[-134.8879488794888,58.246341400313696],[-134.88434884348843,58.254784286663096],[-134.9131491314913,58.25816144120287],[-134.93114931149313,58.263227173012524],[-134.94554945549456,58.27842436844145],[-134.95274952749526,58.298687295680054],[-134.97074970749708,58.36285323193559],[-134.97074970749708,58.38480473644407],[-134.95994959949599,58.40506766368267],[-134.94914949149492,58.41013339549232],[-134.93834938349383,58.40506766368267],[-134.92754927549277,58.396624777333244],[-134.9239492394924,58.38480473644407],[-134.91674916749167,58.37298469555489],[-134.90234902349022,58.37129611828502],[-134.8879488794888,58.37129611828502],[-134.87354873548736,58.36791896374524],[-134.85554855548554,58.35441034558619],[-134.83394833948338,58.344278881966886],[-134.80874808748086,58.330770263807835],[-134.7979479794798,58.308818759299356],[-134.79434794347944,58.298687295680054],[-134.7871478714787,58.29193298660053],[-134.77634776347765,58.28686725479088],[-134.76914769147692,58.281801522981226],[-134.73674736747367,58.24465282304382],[-134.7259472594726,58.23452135942452],[-134.71874718747188,58.22945562761487],[-134.71154711547115,58.22270131853534],[-134.70434704347042,58.20919270037626],[-134.69714697146972,58.17373257770873],[-134.69354693546936,58.16866684589908],[-134.60354603546034,58.17035542316896],[-134.56034560345603,58.178798309518385],[-134.55674556745566,58.18048688678826],[-134.54954549545494,58.18217546405816],[-134.4739447394474,58.18217546405816],[-134.44514445144452,58.17710973224851],[-134.39114391143912,58.15515822774003],[-134.36234362343623,58.148403918660506],[-134.32994329943298,58.148403918660506],[-134.1859418594186,58.16866684589908],[-134.17874178741786,58.16360111408943],[-134.1679416794168,58.151781073200254],[-134.16074160741607,58.138272455041204],[-134.16074160741607,58.1281409914219],[-134.17154171541716,58.12307525961225],[-134.18234182341823,58.12307525961225],[-134.20394203942038,58.1281409914219],[-134.18954189541896,58.116320950532725],[-134.17514175141753,58.10618948691342],[-134.1679416794168,58.07748367332542],[-134.08874088740887,58.026826355228934],[-134.0851408514085,57.99812054164093],[-134.0311403114031,57.964348996243274],[-134.00234002340022,57.939020337195046],[-133.98073980739807,57.87823155547926],[-133.95193951939518,57.844460010081605],[-133.91953919539196,57.817442773763474],[-133.88713887138871,57.79886842379477],[-133.89433894338944,57.78873696017547],[-133.89433894338944,57.78029407382607],[-133.89433894338944,57.76847403293689],[-133.89433894338944,57.75834256931759],[-133.89073890738908,57.746522528428414],[-133.88353883538835,57.72963675572959],[-133.879938799388,57.719505292110284],[-133.879938799388,57.692488055792154],[-133.8727387273873,57.67391370582345],[-133.85833858338583,57.6587165103945],[-133.80433804338043,57.60974776956792],[-133.789937899379,57.58948484232931],[-133.80433804338043,57.57935337871004],[-133.82593825938258,57.586107687789564],[-133.8439384393844,57.60130488321849],[-133.85473854738547,57.621567810457094],[-133.8727387273873,57.6418307376957],[-133.96273962739627,57.692488055792154],[-133.96633966339664,57.70430809668133],[-133.98073980739807,57.716128137570536],[-133.98433984339843,57.72625960118981],[-133.98433984339843,57.738079642078986],[-133.9879398793988,57.746522528428414],[-133.99513995139952,57.75327683750794],[-133.99873998739986,57.76509687839712],[-134.00954009540095,57.8073113101442],[-134.0239402394024,57.82081992830325],[-134.06714067140672,57.830951391922554],[-134.08874088740887,57.84614858735148],[-134.1031410314103,57.86303436005031],[-134.1139411394114,57.879920132749135],[-134.1319413194132,57.937331759925144],[-134.14274142741428,57.955906109893874],[-134.16074160741607,57.97616903713245],[-134.18234182341823,57.99474338710118],[-134.23274232742327,58.02513777795906],[-134.23274232742327,58.031892087038585],[-134.2111421114211,58.026826355228934],[-134.18954189541896,58.01669489160963],[-134.1571415714157,57.98967765529153],[-134.17154171541716,58.01331773706988],[-134.20034200342002,58.04033497338801],[-134.2291422914229,58.062286477896464],[-134.2579425794258,58.072417941515766],[-134.27234272342724,58.072417941515766],[-134.27954279542794,58.07579509605554],[-134.28674286742867,58.08254940513507],[-134.2939429394294,58.089303714214594],[-134.30834308343083,58.09774660056402],[-134.30834308343083,58.09268086875437],[-134.30834308343083,58.08423798240494],[-134.3011430114301,58.07917225059529],[-134.29034290342904,58.07410651878567],[-134.2759427594276,58.058909323356716],[-134.26874268742688,58.04202355065789],[-134.26514265142652,58.02513777795906],[-134.29034290342904,58.03526924157836],[-134.30474304743046,58.03864639611811],[-134.31914319143192,58.03864639611811],[-134.31914319143192,58.031892087038585],[-134.26154261542615,58.00825200526023],[-134.23634236342363,57.99305480983128],[-134.22554225542257,57.969414728052925],[-134.24354243542436,57.969414728052925],[-134.26514265142652,57.97616903713245],[-134.3011430114301,57.99474338710118],[-134.31554315543156,57.996431964371055],[-134.3119431194312,57.97954619167223],[-134.2939429394294,57.94577464627457],[-134.29034290342904,57.93564318265527],[-134.27234272342724,57.906937369067265],[-134.27234272342724,57.88836301909856],[-134.27954279542794,57.86978866912986],[-134.28674286742867,57.85290289643103],[-134.29034290342904,57.836017123732205],[-134.27954279542794,57.8258856601129],[-134.25074250742506,57.85628005097078],[-134.20754207542075,57.83939427827195],[-134.05634056340563,57.69586521033193],[-134.04554045540456,57.684045169442754],[-134.05274052740526,57.67222512855358],[-134.08154081540815,57.662093664934275],[-134.06714067140672,57.6502736240451],[-134.00954009540095,57.653650778584876],[-133.9879398793988,57.64520789223545],[-133.969939699397,57.63338785134627],[-133.95193951939518,57.62832211953662],[-133.93753937539375,57.61819065591732],[-133.93033930339303,57.59286199686909],[-133.93033930339303,57.55571329693166],[-133.92673926739266,57.54389325604248],[-133.89793897938978,57.506744556105076],[-133.85473854738547,57.47635016524717],[-133.84033840338404,57.46284154708812],[-133.8619386193862,57.45608723800859],[-133.8727387273873,57.466218701627895],[-133.879938799388,57.48141589705682],[-133.89073890738908,57.48985878340625],[-133.90153901539014,57.48985878340625],[-133.9051390513905,57.49154736067612],[-133.91233912339123,57.49154736067612],[-133.92313923139233,57.48985878340625],[-133.91953919539196,57.48648162886647],[-133.91953919539196,57.47635016524717],[-133.92313923139233,57.46790727889777],[-133.9339393393934,57.47297301070742],[-133.96273962739627,57.48141589705682],[-134.03834038340383,57.4949245152159],[-134.05634056340563,57.49999024702555],[-134.07434074340745,57.51181028791473],[-134.07794077940778,57.50843313337495],[-134.0851408514085,57.49830166975565],[-134.06714067140672,57.488170206136346],[-134.05634056340563,57.4847930515966],[-134.04554045540456,57.48310447432672],[-134.04554045540456,57.47635016524717],[-134.09954099540994,57.47635016524717],[-134.06714067140672,57.461152969818244],[-134.01314013140131,57.45777581527847],[-133.9771397713977,57.44933292892907],[-133.99873998739986,57.41556138353141],[-133.98073980739807,57.41387280626151],[-133.94113941139412,57.425692847150685],[-133.91953919539196,57.42907000169046],[-133.9159391593916,57.43075857896034],[-133.9051390513905,57.43582431076999],[-133.89433894338944,57.43582431076999],[-133.88713887138871,57.425692847150685],[-133.88713887138871,57.42231569261094],[-133.879938799388,57.40542991991211],[-133.87633876338762,57.40036418810246],[-133.86913869138692,57.39192130175306],[-133.86553865538656,57.37334695178433],[-133.86553865538656,57.354772601815625],[-133.87633876338762,57.346329715466226],[-133.90153901539014,57.34295256092645],[-133.9159391593916,57.33450967457702],[-133.93753937539375,57.30918101552879],[-133.9591395913959,57.30411528371914],[-133.98073980739807,57.30918101552879],[-134.05274052740526,57.33957540638667],[-134.059940599406,57.346329715466226],[-134.06354063540635,57.35308402454575],[-134.06714067140672,57.3564611790855],[-134.08154081540815,57.35308402454575],[-134.07794077940778,57.346329715466226],[-134.07434074340745,57.33619825184692],[-134.07794077940778,57.32606678822762],[-134.09234092340924,57.32606678822762],[-134.09954099540994,57.3294439427674],[-134.1031410314103,57.34464113819632],[-134.10674106741067,57.35308402454575],[-134.12114121141212,57.363215488165054],[-134.13554135541355,57.37503552905423],[-134.1571415714157,57.385166992673504],[-134.17514175141753,57.38685556994341],[-134.14274142741428,57.349706870005974],[-134.1319413194132,57.327755365497495],[-134.14994149941498,57.31255817006857],[-134.14274142741428,57.30411528371914],[-134.13554135541355,57.297360974639616],[-134.11754117541176,57.305803860989016],[-134.1031410314103,57.30073812917939],[-134.07434074340745,57.27709804740101],[-134.0851408514085,57.256835120162435],[-134.09954099540994,57.256835120162435],[-134.1139411394114,57.26358942924196],[-134.12834128341282,57.265278006511835],[-134.13554135541355,57.25345796562266],[-134.14634146341464,57.216309265685254],[-134.1571415714157,57.202800647526175],[-134.1679416794168,57.190980606637],[-134.18234182341823,57.18422629755747],[-134.20034200342002,57.17747198847795],[-134.21834218342184,57.17409483393817],[-134.22554225542257,57.17578341120807],[-134.23634236342363,57.180849143017696],[-134.2471424714247,57.1825377202876],[-134.25434254342542,57.17747198847795],[-134.26154261542615,57.172406256668296],[-134.28674286742867,57.16058621577912],[-134.26874268742688,57.14201186581042],[-134.2831428314283,57.13525755673086],[-134.3119431194312,57.13525755673086],[-134.32634326343265,57.13356897946099],[-134.32274322743228,57.13019182492124],[-134.31914319143192,57.12006036130194],[-134.32994329943298,57.12006036130194],[-134.34074340743408,57.12343751584169],[-134.36234362343623,57.13356897946099],[-134.3659436594366,57.12343751584169],[-134.36954369543696,57.11499462949229],[-134.3767437674377,57.109928897682636],[-134.38754387543875,57.10655174314286],[-134.38034380343802,57.10148601133321],[-134.37314373143732,57.096420279523585],[-134.36234362343623,57.09473170225368],[-134.3551435514355,57.09304312498381]]],[[[-152.80172801728017,58.28855583206075],[-152.79452794527944,58.28686725479088],[-152.76572765727656,58.25816144120287],[-152.75132751327513,58.273358636631826],[-152.7549275492755,58.285178677521],[-152.76212762127622,58.298687295680054],[-152.76572765727656,58.31557306837888],[-152.76932769327692,58.33245884107771],[-152.77652776527765,58.33752457288736],[-152.78372783727838,58.34090172742711],[-152.80172801728017,58.35441034558619],[-152.7909279092791,58.352721768316314],[-152.780127801278,58.352721768316314],[-152.76932769327692,58.35609892285606],[-152.76212762127622,58.35947607739584],[-152.78372783727838,58.37129611828502],[-152.86652866528664,58.39493620006337],[-152.88452884528846,58.40844481822242],[-152.8629286292863,58.41351055003207],[-152.8161281612816,58.41351055003207],[-152.77292772927728,58.41688770457185],[-152.7549275492755,58.43883920908033],[-152.74772747727476,58.45234782723938],[-152.73332733327334,58.45403640450925],[-152.71892718927188,58.45234782723938],[-152.71172711727118,58.4489706726996],[-152.7009270092701,58.442216363620076],[-152.69732697326972,58.43377347727068],[-152.69372693726936,58.432084900000774],[-152.6829268292683,58.43883920908033],[-152.67572675726757,58.450659249969505],[-152.6721267212672,58.464167868128555],[-152.66492664926648,58.47598790901773],[-152.65052650526505,58.48443079536716],[-152.63252632526326,58.48443079536716],[-152.6181261812618,58.47936506355751],[-152.60732607326074,58.46923359993821],[-152.60372603726037,58.455724981779156],[-152.58212582125822,58.46585644539843],[-152.5569255692557,58.46754502266833],[-152.49932499324993,58.46247929085868],[-152.50652506525066,58.4489706726996],[-152.52092520925208,58.428707745461026],[-152.5281252812528,58.415199127301975],[-152.4921249212492,58.41351055003207],[-152.47772477724777,58.41013339549232],[-152.46692466924668,58.401690509142895],[-152.48132481324814,58.388181890983844],[-152.4849248492485,58.37298469555489],[-152.47772477724777,58.361164654665714],[-152.45972459724598,58.35947607739584],[-152.4489244892449,58.366230386475365],[-152.44532445324452,58.37298469555489],[-152.43812438124382,58.37636185009467],[-152.42372423724237,58.37298469555489],[-152.41652416524164,58.369607541015114],[-152.40572405724058,58.36285323193559],[-152.4021240212402,58.35441034558619],[-152.420124201242,58.32232737745841],[-152.39852398523985,58.32908168653793],[-152.37332373323733,58.344278881966886],[-152.38052380523806,58.35441034558619],[-152.37332373323733,58.361164654665714],[-152.36252362523624,58.379739004634416],[-152.3589235892359,58.40000193187302],[-152.36252362523624,58.415199127301975],[-152.3481234812348,58.4219534363815],[-152.3229232292323,58.41351055003207],[-152.3121231212312,58.41857628184172],[-152.29772297722977,58.42701916819115],[-152.2869228692287,58.42533059092125],[-152.26172261722616,58.415199127301975],[-152.26172261722616,58.41013339549232],[-152.26532265322652,58.40844481822242],[-152.26532265322652,58.40506766368267],[-152.26532265322652,58.401690509142895],[-152.24732247322473,58.39493620006337],[-152.26172261722616,58.388181890983844],[-152.26532265322652,58.388181890983844],[-152.25812258122582,58.37129611828502],[-152.23652236522366,58.35947607739584],[-152.21132211322114,58.352721768316314],[-152.18972189721896,58.35441034558619],[-152.150121501215,58.38649331371394],[-152.13932139321392,58.39155904552359],[-152.11772117721176,58.401690509142895],[-152.1069210692107,58.38987046825372],[-152.09252092520924,58.38142758190432],[-152.08172081720818,58.37298469555489],[-152.0961209612096,58.36791896374524],[-152.13572135721358,58.303753027489705],[-152.15372153721538,58.26153859574262],[-152.14292142921428,58.23452135942452],[-152.13212132121322,58.23789851396427],[-152.12132121321213,58.254784286663096],[-152.1141211412114,58.276735791171575],[-152.11052110521106,58.29531014114028],[-152.09972099720997,58.312195913839105],[-152.08172081720818,58.317261645648756],[-152.06732067320672,58.30713018202948],[-152.06732067320672,58.27842436844145],[-152.0529205292053,58.28855583206075],[-152.03132031320314,58.30713018202948],[-152.01332013320132,58.325704531998184],[-152.00612006120062,58.34259030469701],[-152.00252002520025,58.35103319104641],[-151.9881198811988,58.34765603650666],[-151.97371973719737,58.339213150157235],[-151.96651966519664,58.33245884107771],[-151.96651966519664,58.32063880018853],[-151.970119701197,58.31050733656923],[-151.98451984519846,58.29193298660053],[-151.970119701197,58.2834901002511],[-151.9809198091981,58.254784286663096],[-151.97371973719737,58.23789851396427],[-151.99171991719916,58.22438989580522],[-152.03132031320314,58.20919270037626],[-152.04932049320493,58.19568408221721],[-152.04572045720457,58.19568408221721],[-152.04932049320493,58.18892977313769],[-152.0529205292053,58.18217546405816],[-152.05652056520566,58.17542115497861],[-152.05652056520566,58.17373257770873],[-152.11772117721176,58.148403918660506],[-152.12852128521286,58.16697826862921],[-152.1969219692197,58.18555261859791],[-152.21852218522184,58.20243839129674],[-152.2329223292233,58.246341400313696],[-152.24732247322473,58.268292904822175],[-152.26172261722616,58.25816144120287],[-152.26892268922688,58.263227173012524],[-152.2761227612276,58.2649157502824],[-152.28332283322834,58.25985001847275],[-152.2869228692287,58.25140713212335],[-152.3049230492305,58.25816144120287],[-152.31572315723156,58.249718554853445],[-152.3229232292323,58.23283278215462],[-152.33012330123302,58.21594700945579],[-152.30852308523086,58.214258432185915],[-152.29772297722977,58.20750412310639],[-152.2941229412294,58.19737265948709],[-152.30852308523086,58.18892977313769],[-152.3229232292323,58.19061835040756],[-152.35532355323554,58.205815545836515],[-152.36972369723696,58.20243839129674],[-152.36252362523624,58.19399550494734],[-152.35532355323554,58.18892977313769],[-152.34092340923408,58.18892977313769],[-152.33012330123302,58.18892977313769],[-152.33372333723338,58.17373257770873],[-152.33012330123302,58.165289691359334],[-152.30852308523086,58.15515822774003],[-152.28332283322834,58.138272455041204],[-152.27252272522725,58.13489530050143],[-152.2869228692287,58.13151814596168],[-152.30852308523086,58.13489530050143],[-152.31932319323192,58.13151814596168],[-152.33732337323374,58.11125521872307],[-152.34452344523444,58.10618948691342],[-152.3481234812348,58.1095666414532],[-152.3589235892359,58.124763836882124],[-152.36972369723696,58.1281409914219],[-152.39852398523985,58.124763836882124],[-152.40932409324094,58.12645241415203],[-152.42372423724237,58.13151814596168],[-152.45612456124562,58.13658387777133],[-152.48852488524886,58.1281409914219],[-152.52092520925208,58.1095666414532],[-152.54972549725497,58.085926559674846],[-152.5569255692557,58.10112375510377],[-152.56052560525606,58.11125521872307],[-152.5641256412564,58.178798309518385],[-152.56052560525606,58.19568408221721],[-152.55332553325533,58.20919270037626],[-152.5749257492575,58.20750412310639],[-152.58932589325894,58.19737265948709],[-152.59292592925928,58.18217546405816],[-152.60012600126,58.14502676412073],[-152.60372603726037,58.13320672323155],[-152.6109261092611,58.1196981050725],[-152.62532625326253,58.102812332373674],[-152.63252632526326,58.094369446024245],[-152.63252632526326,58.08761513694472],[-152.63612636126362,58.080860827865195],[-152.64332643326432,58.072417941515766],[-152.6541265412654,58.06904078697602],[-152.67932679326793,58.067352209706115],[-152.70812708127082,58.05215501427719],[-152.73332733327334,58.053843591547064],[-152.7549275492755,58.06397505516637],[-152.76572765727656,58.07917225059529],[-152.77652776527765,58.06397505516637],[-152.76572765727656,58.023449200689186],[-152.77652776527765,58.00149769618071],[-152.80532805328053,57.991366232561404],[-152.92772927729277,58.01500631433976],[-153.01413014130142,58.045400705197636],[-153.03573035730358,58.058909323356716],[-153.05733057330573,58.07917225059529],[-153.0681306813068,58.09774660056402],[-153.050130501305,58.10618948691342],[-153.08253082530825,58.11125521872307],[-153.12573125731257,58.107878064183296],[-153.16893168931688,58.11125521872307],[-153.18333183331833,58.13151814596168],[-153.230132301323,58.16866684589908],[-153.230132301323,58.18217546405816],[-153.1869318693187,58.219324163995566],[-153.16173161731618,58.219324163995566],[-153.02853028530285,58.19568408221721],[-153.02493024930249,58.192306927677436],[-153.01413014130142,58.178798309518385],[-153.01053010530106,58.17542115497861],[-153.00333003330033,58.178798309518385],[-152.99972999729997,58.18217546405816],[-152.99972999729997,58.187241195867784],[-152.99252992529927,58.18892977313769],[-152.97092970929708,58.18555261859791],[-152.92772927729277,58.17035542316896],[-152.9061290612906,58.16866684589908],[-152.9061290612906,58.17542115497861],[-153.0069300693007,58.21256985491604],[-153.01413014130142,58.22270131853534],[-153.02853028530285,58.22945562761487],[-153.0429304293043,58.23452135942452],[-153.07173071730716,58.23958709123417],[-153.08613086130862,58.24802997758357],[-153.11133111331114,58.271670059361924],[-153.0609306093061,58.298687295680054],[-153.0429304293043,58.30544160475958],[-153.01773017730176,58.30713018202948],[-152.9889298892989,58.303753027489705],[-152.96012960129602,58.298687295680054],[-152.94212942129423,58.28855583206075],[-152.90252902529025,58.28011294571135],[-152.84492844928448,58.28855583206075],[-152.80172801728017,58.28855583206075]]],[[[-147.10647106471066,60.286142742332004],[-147.0812708127081,60.28107701052235],[-146.9228692286923,60.313159978650106],[-146.9228692286923,60.30640566957058],[-146.930069300693,60.304717092300706],[-146.93366933669336,60.30133993776093],[-146.93726937269372,60.29796278322118],[-146.94086940869408,60.29289705141153],[-146.96966969669697,60.25912550601387],[-147.00927009270092,60.23379684696562],[-147.23247232472323,60.13248221077268],[-147.32967329673295,60.07000485178702],[-147.3728737287373,60.02947899730981],[-147.37647376473765,60.01597037915076],[-147.36927369273693,60.00752749280136],[-147.35847358473586,59.99908460645193],[-147.3548735487355,59.99064172010253],[-147.36567365673656,59.9720673701338],[-147.4268742687427,59.97713310194345],[-147.4520745207452,59.96700163832415],[-147.48447484474843,59.94673871108557],[-147.4880748807488,59.943361556545796],[-147.49167491674916,59.93998440200605],[-147.47727477274773,59.929852938386745],[-147.45567455674558,59.916344320227694],[-147.4520745207452,59.89608139298909],[-147.46647466474664,59.87750704302039],[-147.49167491674916,59.86230984759143],[-147.52047520475205,59.85386696124203],[-147.59967599675997,59.867375579401084],[-147.64287642876428,59.86230984759143],[-147.6680766807668,59.82009541584438],[-147.68247682476823,59.8167182613046],[-147.71847718477184,59.82009541584438],[-147.80127801278013,59.80320964314555],[-147.84087840878408,59.78632387044672],[-147.86247862478626,59.782946715906945],[-147.88047880478805,59.782946715906945],[-147.91647916479164,59.79307817952625],[-147.91647916479164,59.79983248860577],[-147.89847898478985,59.809963952225075],[-147.89487894878948,59.83360403400343],[-147.88767887678875,59.85724411578178],[-147.8588785887859,59.86906415667096],[-147.82647826478265,59.87075273394083],[-147.7940779407794,59.87750704302039],[-147.76527765277652,59.88932708390956],[-147.73647736477363,59.902835702068614],[-147.76167761677618,59.907901433878266],[-147.79047790477904,59.91127858841804],[-147.8048780487805,59.91972147476744],[-147.77967779677797,59.943361556545796],[-147.7508775087751,59.9534930201651],[-147.6968769687697,59.961935906514526],[-147.6680766807668,59.970378792863926],[-147.67527675276753,59.98051025648323],[-147.68247682476823,59.987264565562754],[-147.70407704077041,59.997396029182056],[-147.68247682476823,60.00921607007123],[-147.53487534875347,60.058184810897814],[-147.51327513275132,60.07000485178702],[-147.42327423274233,60.1105307062642],[-147.380073800738,60.139236519852204],[-147.38727387273872,60.16287660163056],[-147.3728737287373,60.17131948797996],[-147.34047340473404,60.179762374329385],[-147.32967329673295,60.18651668340891],[-147.30447304473046,60.22704253788609],[-147.29727297272973,60.23210826969574],[-147.28647286472864,60.23041969242587],[-147.26487264872648,60.22535396061622],[-147.25407254072542,60.22535396061622],[-147.2468724687247,60.22704253788609],[-147.22887228872287,60.23548542423552],[-147.20007200072,60.242239733315046],[-147.19647196471965,60.250682619664445],[-147.20367203672038,60.269256969633176],[-147.20367203672038,60.2743227014428],[-147.20727207272074,60.28107701052235],[-147.20727207272074,60.286142742332004],[-147.21087210872108,60.286142742332004],[-147.20727207272074,60.2945856286814],[-147.20367203672038,60.29796278322118],[-147.20007200072,60.299651360491055],[-147.19647196471965,60.30640566957058],[-147.19287192871928,60.30978282411036],[-147.18567185671856,60.313159978650106],[-147.17847178471783,60.31822571045976],[-147.1748717487175,60.326668596809185],[-147.17847178471783,60.331734328618836],[-147.20007200072,60.33848863769836],[-147.20367203672038,60.34186579223811],[-147.18927189271892,60.362128719476715],[-147.1568715687157,60.375637337635766],[-147.11727117271172,60.38239164671529],[-147.08847088470884,60.375637337635766],[-147.10647106471066,60.36381729674659],[-147.11367113671136,60.357062987667064],[-147.1208712087121,60.34693152404776],[-147.00927009270092,60.34693152404776],[-147.0272702727027,60.33004575134893],[-147.10647106471066,60.286142742332004]]],[[[14.873548735487361,68.22245591078067],[14.844748447484477,68.22583306532044],[14.812348123481229,68.23258737439997],[14.794347943479437,68.24609599255902],[14.815948159481593,68.2680474970675],[14.887948879488789,68.30013046519528],[14.93834938349383,68.30181904246516],[14.952749527495286,68.2781789606868],[14.898748987489881,68.24271883801927],[14.873548735487361,68.22245591078067]]],[[[161.48861488614887,69.02621869124485],[161.51741517415178,68.98062710495802],[161.51381513815141,68.93503551867119],[161.48141481414814,68.9029525505434],[161.42381423814237,68.8928210869241],[161.40941409414097,68.8928210869241],[161.42381423814237,68.91477259143258],[161.46341463414637,68.95360986863989],[161.47781477814777,68.97556137314837],[161.45621456214565,69.0008900321966],[161.420214202142,69.0211529594352],[161.38421384213842,69.03803873213403],[161.30501305013053,69.0599902366425],[161.1430114301143,69.08700747296061],[161.13581135811359,69.09207320477026],[161.13581135811359,69.09713893657991],[161.13581135811359,69.10389324565944],[161.13941139411395,69.10895897746909],[161.1430114301143,69.11402470927874],[161.13941139411395,69.13259905924744],[161.13941139411395,69.13766479105709],[161.12861128611286,69.15455056375592],[161.12141121411213,69.168059181915],[161.12141121411213,69.17481349099452],[161.13221132211322,69.21702792274158],[161.13221132211322,69.22547080909101],[161.12861128611286,69.23560227271028],[161.12861128611286,69.23897942725006],[161.13221132211322,69.24066800451993],[161.13581135811359,69.24235658178983],[161.13941139411395,69.26937381810794],[161.1646116461165,69.3048339407755],[161.1682116821168,69.32509686801407],[161.15021150211504,69.35380268160208],[161.08181081810818,69.39263995880938],[161.06741067410672,69.41796861785761],[161.07461074610745,69.44498585417574],[161.09261092610927,69.46524878141435],[161.11781117811177,69.4787573995734],[161.2546125461255,69.52434898586023],[161.2618126181262,69.5277261404],[161.26901269012689,69.53448044947953],[161.27981279812798,69.53785760401931],[161.30501305013053,69.53785760401931],[161.31941319413193,69.53954618128918],[161.33741337413375,69.54630049036871],[161.35901359013593,69.54967764490848],[161.37341373413733,69.54630049036871],[161.3878138781388,69.5074632131614],[161.39141391413915,69.49564317227222],[161.38061380613806,69.4787573995734],[161.38421384213842,69.47369166776375],[161.3878138781388,69.46693735868422],[161.3878138781388,69.46187162687457],[161.38061380613806,69.45680589506492],[161.31581315813162,69.43654296782634],[161.2978129781298,69.42810008147691],[161.29421294212943,69.41459146331786],[161.30501305013053,69.40108284515881],[161.3518135181352,69.3808199179202],[161.35901359013593,69.3622455679515],[161.35901359013593,69.35042552706233],[161.3518135181352,69.34029406344303],[161.3518135181352,69.3318511770936],[161.37341373413733,69.29639105442607],[161.36621366213666,69.27950528172724],[161.31941319413193,69.24235658178983],[161.33381333813338,69.2237822318211],[161.37341373413733,69.20351930458253],[161.3878138781388,69.18832210915357],[161.38061380613806,69.17987922280417],[161.3878138781388,69.16299345010535],[161.38421384213842,69.11909044108839],[161.39141391413915,69.10220466838956],[161.41301413014133,69.08194174115096],[161.48861488614887,69.02621869124485]]],[[[161.63261632616326,69.56149768579766],[161.62541625416253,69.55305479944823],[161.6146161461615,69.53954618128918],[161.61101611016113,69.53448044947953],[161.60741607416077,69.5175946767807],[161.61821618216186,69.499020326812],[161.62541625416253,69.48213455411317],[161.60741607416077,69.4686259359541],[161.6146161461615,69.45005158598539],[161.58941589415895,69.43654296782634],[161.549815498155,69.42641150420704],[161.40941409414097,69.41628004058774],[161.37341373413733,69.40783715423834],[161.37341373413733,69.41459146331786],[161.35901359013593,69.41459146331786],[161.37341373413733,69.42641150420704],[161.40941409414097,69.44160869963599],[161.42381423814237,69.45511731779504],[161.42741427414273,69.46524878141435],[161.42741427414273,69.51252894497105],[161.42741427414273,69.52097183132048],[161.4166141661417,69.54461191309883],[161.40221402214024,69.58007203576636],[161.39501395013951,69.59189207665554],[161.45261452614528,69.60202354027484],[161.46341463414637,69.60877784935437],[161.46341463414637,69.62059789024354],[161.46701467014674,69.63072935386285],[161.4742147421474,69.63748366294237],[161.48861488614887,69.64086081748215],[161.52461524615245,69.63917224021225],[161.5606156061561,69.63241793113272],[161.58941589415895,69.61890931297367],[161.61821618216186,69.59526923119532],[161.63261632616326,69.58007203576636],[161.63621636216362,69.56994057214706],[161.63261632616326,69.56149768579766]]],[[[71.35451354513546,73.38443662481208],[71.3329133291333,73.3726165839229],[71.32931329313294,73.36755085211325],[71.3329133291333,73.36079654303373],[71.34731347313473,73.3523536566843],[71.3509135091351,73.34728792487468],[71.34371343713437,73.33209072944572],[71.3329133291333,73.32702499763607],[71.31491314913151,73.32702499763607],[71.29691296912969,73.3253364203662],[71.26451264512647,73.3152049567469],[71.25011250112502,73.30845064766737],[71.23571235712359,73.2966306067782],[71.21411214112143,73.28481056588902],[71.18891188911891,73.28649914315889],[71.16371163711639,73.29156487496854],[71.13851138511387,73.29325345223842],[71.14931149311494,73.30169633858785],[71.14931149311494,73.31182780220712],[71.14571145711457,73.34053361579512],[71.14211142111421,73.34728792487468],[71.16371163711639,73.36417369757348],[71.21771217712177,73.38612520208196],[71.22851228512286,73.39963382024104],[71.25011250112502,73.41820817020974],[71.29691296912969,73.41651959293986],[71.34371343713437,73.40301097478078],[71.35451354513546,73.38443662481208]]],[[[-63.84843848438484,11.135035570586396],[-63.84483844838448,11.114772643347806],[-63.83043830438304,11.077623943410387],[-63.82683826838267,11.06073817071156],[-63.79443794437944,11.001637966265662],[-63.787237872378725,10.974620729947546],[-63.81963819638196,10.981375039027071],[-63.81963819638196,10.974620729947546],[-63.81963819638196,10.96111211178848],[-63.81963819638196,10.954357802708955],[-63.8340383403834,10.964489266328243],[-63.841238412384115,10.96786642086802],[-63.84843848438484,10.964489266328243],[-63.84843848438484,10.957734957248718],[-63.870038700387,10.937472030010127],[-63.89883898838988,10.885126134643755],[-63.95643956439564,10.89356902099317],[-63.97803978039779,10.891880443723295],[-64.04284042840428,10.868240361944927],[-64.06084060840608,10.85810889832564],[-64.05724057240572,10.886814711913644],[-64.07524075240752,10.890191866453407],[-64.09684096840968,10.890191866453407],[-64.11484114841149,10.929029143660713],[-64.13644136441364,10.944226339089653],[-64.16164161641616,10.95604637997883],[-64.1760417604176,10.96786642086802],[-64.20124201242012,10.944226339089653],[-64.22284222842228,10.939160607280002],[-64.29844298442984,10.947603493629416],[-64.3020430204302,10.949292070899304],[-64.30564305643055,10.952669225439067],[-64.31284312843128,10.954357802708955],[-64.3380433804338,10.952669225439067],[-64.34884348843488,10.954357802708955],[-64.38844388443884,10.966177843598132],[-64.410044100441,10.96786642086802],[-64.38484384843848,11.020212316234378],[-64.38124381243811,11.032032357123555],[-64.37764377643776,11.053983861632034],[-64.37044370443704,11.062426747981448],[-64.3560435604356,11.064115325251322],[-64.33444334443344,11.064115325251322],[-64.32364323643236,11.06580390252121],[-64.31644316443165,11.069181057060973],[-64.3020430204302,11.08100109795015],[-64.29124291242913,11.084378252489927],[-64.26964269642696,11.077623943410387],[-64.24444244442444,11.08775540702969],[-64.21924219242192,11.091132561569452],[-64.19764197641976,11.08775540702969],[-64.19044190441905,11.074246788870624],[-64.19044190441905,11.06073817071156],[-64.18684186841868,11.04554097528262],[-64.18324183241832,11.033720934393443],[-64.14724147241472,11.02358947077414],[-64.11124111241112,10.999949388995788],[-64.08964089640897,10.994883657186136],[-64.050040500405,10.991506502646374],[-64.0320403204032,10.996572234456025],[-64.01764017640176,11.015146584424727],[-64.0140401404014,11.02527804804403],[-64.01764017640176,11.055672438901908],[-64.01044010440104,11.06580390252121],[-63.9960399603996,11.075935366140513],[-63.992439924399235,11.084378252489927],[-63.98523985239852,11.094509716109215],[-63.988839888398886,11.102952602458629],[-63.98523985239852,11.109706911538154],[-63.97803978039779,11.118149797887568],[-63.967239672396715,11.121526952427345],[-63.94563945639456,11.12321552969722],[-63.93483934839348,11.124904106967108],[-63.92043920439204,11.138412725126173],[-63.89523895238952,11.168807115984052],[-63.88083880838808,11.178938579603354],[-63.87723877238771,11.160364229634638],[-63.866438664386635,11.151921343285224],[-63.85203852038519,11.145167034205699],[-63.84843848438484,11.135035570586396]]],[[[-60.81000810008099,14.461532792255312],[-60.824408244082434,14.456467060445675],[-60.83520835208351,14.427761246857656],[-60.84600846008459,14.414252628698605],[-60.85680856808568,14.409186896888954],[-60.87120871208711,14.407498319619066],[-60.8820088200882,14.412564051428717],[-60.88560885608855,14.427761246857656],[-60.8820088200882,14.437892710476959],[-60.87120871208711,14.441269865016721],[-60.86040860408603,14.446335596826373],[-60.86040860408603,14.461532792255312],[-60.86760867608676,14.476729987684266],[-60.8820088200882,14.469975678604726],[-60.89640896408963,14.461532792255312],[-60.91440914409144,14.461532792255312],[-60.91440914409144,14.471664255874614],[-60.92160921609215,14.473352833144503],[-60.94680946809467,14.468287101334852],[-61.00441004410044,14.476729987684266],[-61.02241022410223,14.473352833144503],[-61.04761047610475,14.464909946795089],[-61.06201062010619,14.461532792255312],[-61.06921069210692,14.466598524064963],[-61.09081090810908,14.496992914922856],[-61.09081090810908,14.503747224002382],[-61.09081090810908,14.508812955812033],[-61.09801098010979,14.512190110351796],[-61.10521105211052,14.517255842161447],[-61.080010800108,14.544273078479563],[-61.051210512105115,14.557781696638628],[-61.0440104401044,14.564536005718168],[-61.03321033210332,14.549338810289214],[-61.01881018810188,14.545961655749451],[-61.00441004410044,14.551027387559103],[-60.99720997209971,14.564536005718168],[-61.000810008100075,14.571290314797693],[-61.0080100801008,14.581421778416995],[-61.01521015210152,14.596618973845935],[-61.01521015210152,14.613504746544763],[-61.02961029610296,14.608439014735112],[-61.0440104401044,14.605061860195349],[-61.05481054810548,14.605061860195349],[-61.06561065610656,14.606750437465223],[-61.08721087210871,14.605061860195349],[-61.09081090810908,14.606750437465223],[-61.09441094410944,14.610127592005],[-61.101611016110155,14.621947632894177],[-61.10521105211052,14.627013364703828],[-61.14121141211412,14.650653446482181],[-61.15921159211592,14.667539219181009],[-61.16641166411664,14.684424991879837],[-61.16641166411664,14.691179300959362],[-61.170011700117,14.696245032769014],[-61.17361173611735,14.701310764578665],[-61.177211772117715,14.706376496388302],[-61.18081180811808,14.713130805467841],[-61.18081180811808,14.719885114547367],[-61.177211772117715,14.726639423626906],[-61.17361173611735,14.733393732706432],[-61.177211772117715,14.745213773595609],[-61.18441184411844,14.757033814484785],[-61.19161191611916,14.767165278104088],[-61.22041220412204,14.795871091692092],[-61.227612276122755,14.807691132581269],[-61.227612276122755,14.821199750740334],[-61.227612276122755,14.834708368899399],[-61.22041220412204,14.846528409788576],[-61.20961209612096,14.85497129613799],[-61.170011700117,14.876922800646454],[-61.13761137611375,14.876922800646454],[-61.101611016110155,14.866791337027166],[-61.05841058410584,14.838085523439162],[-61.01881018810188,14.821199750740334],[-61.000810008100075,14.811068287121032],[-60.99720997209971,14.804313978041506],[-60.99720997209971,14.795871091692092],[-60.990009900099,14.787428205342678],[-60.97920979209792,14.784051050802915],[-60.96120961209611,14.75027950540526],[-60.94680946809467,14.762099546294436],[-60.925209252092515,14.77054243264385],[-60.90360903609036,14.777296741723376],[-60.87840878408784,14.777296741723376],[-60.88560885608855,14.772231009913739],[-60.89280892808928,14.767165278104088],[-60.89640896408963,14.763788123564325],[-60.89280892808928,14.757033814484785],[-60.91440914409144,14.736770887246195],[-60.925209252092515,14.755345237214911],[-60.93240932409324,14.75027950540526],[-60.93600936009359,14.731705155436543],[-60.93600936009359,14.709753650928079],[-60.925209252092515,14.713130805467841],[-60.9180091800918,14.711442228197953],[-60.91440914409144,14.70806507365819],[-60.90720907209072,14.702999341848539],[-60.93600936009359,14.6878021464196],[-60.92880928809288,14.681047837340074],[-60.93960939609396,14.674293528260534],[-60.93600936009359,14.66585064191112],[-60.92880928809288,14.664162064641246],[-60.92160921609215,14.674293528260534],[-60.88560885608855,14.66078491010147],[-60.89280892808928,14.659096332831595],[-60.900009000089995,14.657407755561707],[-60.900009000089995,14.655719178291832],[-60.90720907209072,14.654030601021944],[-60.900009000089995,14.638833405593004],[-60.89280892808928,14.63039051924359],[-60.874808748087474,14.620259055624288],[-60.87120871208711,14.615193323814637],[-60.86760867608676,14.608439014735112],[-60.864008640086396,14.601684705655586],[-60.85680856808568,14.59830755111581],[-60.849608496084954,14.596618973845935],[-60.84600846008459,14.588176087496521],[-60.84600846008459,14.579733201147107],[-60.84600846008459,14.571290314797693],[-60.83160831608316,14.578044623877219],[-60.83520835208351,14.566224582988042],[-60.83520835208351,14.552715964828977],[-60.83160831608316,14.5408959239398],[-60.824408244082434,14.530764460320512],[-60.83160831608316,14.52738730578075],[-60.83160831608316,14.524010151240972],[-60.83520835208351,14.52063299670121],[-60.838808388083876,14.517255842161447],[-60.824408244082434,14.510501533081921],[-60.82080820808207,14.496992914922856],[-60.81720817208172,14.480107142224028],[-60.81000810008099,14.468287101334852],[-60.81000810008099,14.461532792255312]]],[[[-61.364413644136434,15.201129636463932],[-61.37521375213751,15.204506791003709],[-61.37521375213751,15.212949677353123],[-61.37161371613716,15.236589759131476],[-61.37161371613716,15.26698414998937],[-61.37161371613716,15.270361304529132],[-61.378813788137876,15.282181345418309],[-61.389613896138954,15.295689963577374],[-61.39321393213932,15.30751000446655],[-61.39321393213932,15.332838663514792],[-61.40041400414003,15.351413013483494],[-61.414814148141474,15.380118827071499],[-61.414814148141474,15.386873136151038],[-61.41841418414184,15.40544748611974],[-61.4220142201422,15.415578949739043],[-61.44361443614436,15.437530454247522],[-61.44721447214472,15.445973340596936],[-61.45081450814507,15.45441622694635],[-61.454414544145436,15.464547690565638],[-61.461614616146164,15.472990576915052],[-61.465214652146514,15.476367731454815],[-61.47241472414724,15.481433463264466],[-61.47601476014759,15.493253504153643],[-61.47601476014759,15.518582163201884],[-61.479614796147956,15.525336472281424],[-61.48321483214832,15.530402204091061],[-61.490414904149034,15.535467935900712],[-61.490414904149034,15.545599399520015],[-61.48321483214832,15.55235370859954],[-61.46881468814688,15.562485172218842],[-61.461614616146164,15.57261663583813],[-61.46881468814688,15.574305213108019],[-61.479614796147956,15.57937094491767],[-61.490414904149034,15.57937094491767],[-61.479614796147956,15.591190985806847],[-61.46881468814688,15.633405417553917],[-61.45081450814507,15.633405417553917],[-61.436414364143644,15.633405417553917],[-61.42561425614255,15.628339685744265],[-61.414814148141474,15.619896799394851],[-61.39681396813968,15.596256717616484],[-61.386013860138604,15.58781383126707],[-61.3680136801368,15.596256717616484],[-61.35721357213572,15.597945294886372],[-61.30681306813068,15.57937094491767],[-61.30681306813068,15.57261663583813],[-61.29961299612995,15.557419440409191],[-61.288812888128874,15.540533667710363],[-61.285212852128524,15.53209078136095],[-61.26721267212672,15.51013927685247],[-61.26721267212672,15.508450699582596],[-61.25641256412564,15.472990576915052],[-61.25641256412564,15.435841876977634],[-61.26361263612635,15.407136063389629],[-61.260012600126004,15.407136063389629],[-61.252812528125276,15.403758908849866],[-61.24921249212491,15.400381754310104],[-61.25641256412564,15.36492163164256],[-61.252812528125276,15.332838663514792],[-61.252812528125276,15.324395777165378],[-61.25641256412564,15.285558499958071],[-61.278012780127796,15.250098377290541],[-61.285212852128524,15.24503264548089],[-61.288812888128874,15.243344068211002],[-61.29241292412924,15.243344068211002],[-61.303213032130316,15.243344068211002],[-61.310413104131044,15.24503264548089],[-61.31761317613176,15.243344068211002],[-61.32481324813247,15.238278336401365],[-61.328413284132836,15.2247697182423],[-61.34281342813428,15.219703986432648],[-61.34641346413464,15.212949677353123],[-61.34641346413464,15.211261100083235],[-61.35001350013499,15.204506791003709],[-61.364413644136434,15.201129636463932]]],[[[-61.55161551615515,16.285196243728635],[-61.5480154801548,16.280130511918983],[-61.555215552155516,16.258179007410504],[-61.5480154801548,16.237916080171914],[-61.555215552155516,16.23622750290204],[-61.57321573215732,16.232850348362263],[-61.58041580415804,16.222718884742974],[-61.57681576815767,16.175438721186254],[-61.566015660156594,16.141667175788598],[-61.55881558815588,16.085944125882477],[-61.566015660156594,16.033598230516105],[-61.59841598415984,15.996449530578687],[-61.64521645216452,15.971120871530445],[-61.69561695616956,15.94916936702198],[-61.69561695616956,15.954235098831617],[-61.70281702817027,15.96943229426057],[-61.69561695616956,15.976186603340096],[-61.70281702817027,15.989695221499161],[-61.710017100171,15.998138107848575],[-61.72081720817208,16.003203839658227],[-61.73161731617316,16.013335303277515],[-61.73881738817387,16.02515534416669],[-61.742417424174235,16.036975385055868],[-61.7460174601746,16.04710684867517],[-61.75681756817568,16.05217258048482],[-61.767617676176755,16.08763270315235],[-61.77121771217712,16.16699583483684],[-61.78561785617856,16.202455957504384],[-61.77841778417783,16.217653152933323],[-61.78561785617856,16.2294731938225],[-61.792817928179275,16.239604657441802],[-61.79641796417964,16.25142469833098],[-61.79641796417964,16.268310471029807],[-61.792817928179275,16.2987048618877],[-61.79641796417964,16.31221348004675],[-61.78921789217891,16.320656366396165],[-61.77121771217712,16.34936217998417],[-61.75681756817568,16.36118222087336],[-61.73881738817387,16.364559375413123],[-61.72801728017279,16.35949364360347],[-61.72081720817208,16.351050757254058],[-61.71361713617135,16.345985025444406],[-61.68841688416883,16.340919293634755],[-61.64881648816488,16.32909925274558],[-61.616416164161635,16.31221348004675],[-61.59841598415984,16.29195055280816],[-61.61281612816127,16.285196243728635],[-61.60561605616056,16.281819089188872],[-61.60201602016019,16.281819089188872],[-61.59841598415984,16.285196243728635],[-61.59481594815948,16.281819089188872],[-61.5840158401584,16.27168762556957],[-61.58041580415804,16.281819089188872],[-61.56961569615696,16.290261975538286],[-61.55881558815588,16.29195055280816],[-61.55161551615515,16.285196243728635]]],[[[-61.54441544415444,16.285196243728635],[-61.52641526415263,16.337542139094992],[-61.51921519215192,16.34936217998417],[-61.50121501215011,16.352739334523946],[-61.49761497614976,16.35611648906371],[-61.4940149401494,16.364559375413123],[-61.4940149401494,16.37469083903241],[-61.49761497614976,16.38144514811195],[-61.50121501215011,16.384822302651713],[-61.50841508415084,16.389888034461364],[-61.515615156151554,16.393265189001127],[-61.52281522815228,16.394953766271],[-61.530015300152996,16.430413888938546],[-61.53361533615336,16.43885677528796],[-61.53361533615336,16.448988238907248],[-61.52641526415263,16.462496857066313],[-61.50841508415084,16.48107120703503],[-61.504815048150476,16.486136938844666],[-61.49761497614976,16.492891247924206],[-61.465214652146514,16.509777020623034],[-61.461614616146164,16.513154175162796],[-61.4580145801458,16.511465597892908],[-61.42561425614255,16.489514093384443],[-61.40761407614076,16.472628320685615],[-61.39681396813968,16.452365393447025],[-61.39321393213932,16.425348157128894],[-61.39681396813968,16.400019498080653],[-61.39321393213932,16.389888034461364],[-61.386013860138604,16.373002261762537],[-61.37521375213751,16.35949364360347],[-61.364413644136434,16.34936217998417],[-61.353613536135356,16.340919293634755],[-61.339213392133914,16.33247640728534],[-61.3320133201332,16.340919293634755],[-61.32121321213212,16.33416498455523],[-61.310413104131044,16.33416498455523],[-61.303213032130316,16.33416498455523],[-61.288812888128874,16.33247640728534],[-61.28161281612816,16.327410675475704],[-61.260012600126004,16.308836325506988],[-61.252812528125276,16.305459170967225],[-61.2420124201242,16.300393439157574],[-61.18801188011879,16.263244739220156],[-61.170011700117,16.258179007410504],[-61.16281162811627,16.253113275600853],[-61.17361173611735,16.244670389251453],[-61.18441184411844,16.244670389251453],[-61.20961209612096,16.25142469833098],[-61.22041220412204,16.25480185287074],[-61.234812348123484,16.258179007410504],[-61.411214112141124,16.21934173020321],[-61.44361443614436,16.205833112044147],[-61.461614616146164,16.202455957504384],[-61.48321483214832,16.205833112044147],[-61.504815048150476,16.212587421123672],[-61.51921519215192,16.222718884742974],[-61.53361533615336,16.232850348362263],[-61.54441544415444,16.246358966521328],[-61.5480154801548,16.258179007410504],[-61.5480154801548,16.27168762556957],[-61.54441544415444,16.285196243728635]]],[[[-73.2589325893259,18.878850930268456],[-73.27693276932769,18.890670971157633],[-73.28413284132841,18.895736702967284],[-73.29133291332913,18.904179589316698],[-73.29493294932949,18.914311052936],[-73.29853298532984,18.926131093825177],[-73.29493294932949,18.936262557444465],[-73.28413284132841,18.94977117560353],[-73.26613266132661,18.961591216492707],[-73.24453244532445,18.968345525572246],[-73.2229322293223,18.97172268011201],[-73.20133201332013,18.968345525572246],[-73.06093060930608,18.91262247566611],[-72.99252992529925,18.89235954842752],[-72.91692916929169,18.855210848490103],[-72.8449284492845,18.826505034902098],[-72.81612816128161,18.792733489504442],[-72.80892808928088,18.770781984995963],[-72.80532805328053,18.74545332594772],[-72.80892808928088,18.72012466689948],[-72.81972819728198,18.69986173966089],[-72.83052830528305,18.696484585121127],[-72.83772837728377,18.703238894200652],[-72.84852848528485,18.72012466689948],[-72.85572855728557,18.72687897597902],[-72.86292862928629,18.730256130518782],[-72.88452884528844,18.730256130518782],[-72.97452974529745,18.750519057757373],[-73.0069300693007,18.752207635027247],[-73.03573035730356,18.758961944106787],[-73.12573125731257,18.812996416743033],[-73.21573215732157,18.836636498521386],[-73.23733237332372,18.85183369395034],[-73.2589325893259,18.878850930268456]]],[[[-73.64773647736477,21.062181340226786],[-73.64413644136441,21.080755690195502],[-73.65853658536585,21.094264308354553],[-73.66933669336693,21.104395771973856],[-73.66933669336693,21.114527235593144],[-73.63333633336333,21.099330040164205],[-73.61173611736118,21.10608434924373],[-73.59733597335973,21.11283865832327],[-73.58293582935829,21.121281544672684],[-73.55413554135541,21.129724431022098],[-73.5469354693547,21.149987358260688],[-73.52533525335252,21.16856170822939],[-73.51453514535145,21.187136058198107],[-73.49293492934929,21.182070326388455],[-73.47133471334713,21.192201790007758],[-73.44253442534425,21.192201790007758],[-73.43173431734317,21.193890367277632],[-73.42453424534244,21.197267521817395],[-73.41373413734136,21.20571040816681],[-73.39933399333992,21.224284758135525],[-73.38853388533884,21.23272764448494],[-73.3849338493385,21.229350489945176],[-73.38133381333813,21.207398985436697],[-73.36333363333632,21.19051321273787],[-73.34533345333453,21.165184553689627],[-73.31653316533165,21.15336451280045],[-73.25533255332553,21.13479016283175],[-73.23373233732337,21.1482987809908],[-73.2121321213212,21.158430244610102],[-73.16173161731616,21.17025028549928],[-73.13653136531364,21.197267521817395],[-73.11853118531185,21.2361047990247],[-73.06813068130681,21.31040219889954],[-73.05373053730537,21.328976548868255],[-73.03213032130321,21.34079658975743],[-73.01053010530104,21.332353703408018],[-73.00333003330033,21.3137793534393],[-73.0069300693007,21.291827848930836],[-73.02493024930249,21.183758903658344],[-73.03213032130321,21.156741667340214],[-73.0969309693097,21.080755690195502],[-73.12933129331293,20.9929496721616],[-73.15093150931509,20.982818208542298],[-73.22653226532265,20.952423817684405],[-73.26973269732697,20.959178126763945],[-73.28053280532805,20.955800972224182],[-73.29133291332913,20.95073524041453],[-73.30933309333093,20.937226622255466],[-73.31653316533165,20.937226622255466],[-73.31653316533165,20.94566950860488],[-73.30933309333093,20.95073524041453],[-73.32373323733236,20.96086670403382],[-73.34533345333453,20.964243858573596],[-73.39933399333992,20.935538044985577],[-73.43173431734317,20.937226622255466],[-73.49293492934929,20.9237180040964],[-73.53613536135362,20.94060377679523],[-73.60093600936008,20.947358085874768],[-73.61533615336153,20.94398093133499],[-73.62973629736297,20.937226622255466],[-73.6369363693637,20.928783735906052],[-73.64053640536405,20.920340849556638],[-73.64413644136441,20.911897963207224],[-73.65133651336512,20.913586540477112],[-73.66213662136622,20.920340849556638],[-73.67653676536764,20.935538044985577],[-73.68013680136801,20.94566950860488],[-73.68013680136801,20.962555281303707],[-73.68373683736837,20.98619536308206],[-73.70173701737016,21.014901176670065],[-73.70173701737016,21.019966908479716],[-73.69813698136981,21.026721217559242],[-73.66933669336693,21.03009837209902],[-73.65493654936549,21.040229835718307],[-73.64773647736477,21.062181340226786]]],[[[-82.56862568625687,21.636297611986905],[-82.57582575825758,21.624477571097728],[-82.56862568625687,21.61265753020855],[-82.55422554225542,21.60083748931936],[-82.53982539825398,21.595771757509723],[-82.55062550625506,21.58057456208077],[-82.57222572225722,21.56031163484218],[-82.59382593825939,21.541737284873477],[-82.61182611826118,21.533294398524063],[-82.62982629826298,21.529917243984286],[-82.75942759427593,21.470817039538403],[-82.8350283502835,21.44548838049016],[-82.9070290702907,21.437045494140747],[-82.91782917829178,21.4421112259504],[-82.92862928629286,21.450554112299812],[-82.99342993429934,21.452242689569687],[-83.00063000630006,21.45561984410945],[-83.02223022230221,21.46237415318899],[-83.0330303303033,21.465751307728752],[-83.0690306903069,21.465751307728752],[-83.07983079830798,21.469128462268515],[-83.11223112231121,21.509654316745696],[-83.1230312303123,21.519785780364998],[-83.15183151831518,21.5383601303337],[-83.16263162631626,21.548491593953003],[-83.16983169831698,21.568754521191593],[-83.1770317703177,21.595771757509723],[-83.18783187831878,21.621100416557965],[-83.19143191431914,21.62954330290738],[-83.18423184231843,21.62954330290738],[-83.17343173431733,21.619411839288077],[-83.1230312303123,21.58564029389042],[-83.11583115831158,21.572131675731356],[-83.10143101431014,21.56031163484218],[-83.08343083430834,21.551868748492765],[-83.06543065430654,21.548491593953003],[-83.02223022230221,21.548491593953003],[-83.02223022230221,21.551868748492765],[-82.99342993429934,21.575508830271133],[-82.97542975429754,21.58564029389042],[-82.96822968229682,21.590706025700072],[-82.96462964629646,21.599148912049486],[-82.9610296102961,21.597460334779598],[-82.95742957429574,21.592394602969947],[-82.95742957429574,21.58226313935066],[-82.96462964629646,21.568754521191593],[-82.95742957429574,21.562000212112068],[-82.93942939429394,21.592394602969947],[-82.94662946629465,21.604214643859137],[-82.97542975429754,21.609280375668774],[-82.98622986229861,21.619411839288077],[-83.07263072630725,21.761252329958225],[-83.0870308703087,21.800089607165532],[-83.07623076230762,21.843992616182476],[-83.0330303303033,21.87438700704037],[-83.02583025830258,21.88789562519942],[-83.01863018630186,21.898027088818722],[-82.99702997029969,21.911535706977787],[-82.97542975429754,21.921667170597075],[-82.95742957429574,21.925044325136838],[-82.97182971829717,21.93011005694649],[-82.98262982629826,21.931798634216378],[-82.99342993429934,21.931798634216378],[-83.00423004230042,21.93686436602603],[-83.00423004230042,21.94024152056579],[-82.99702997029969,21.941930097835666],[-82.98982989829898,21.948684406915206],[-82.86022860228601,21.933487211486252],[-82.77742777427774,21.91491286151755],[-82.71982719827199,21.89971566608861],[-82.70542705427054,21.89296135700907],[-82.6910269102691,21.881141316119894],[-82.68382683826837,21.865944120690955],[-82.68742687426874,21.84736977072224],[-82.69462694626947,21.835549729833062],[-82.6910269102691,21.823729688943885],[-82.67662676626766,21.80853249351493],[-82.63342633426333,21.7730723708474],[-82.6190261902619,21.77476094811729],[-82.60822608226081,21.76969521630764],[-82.60462604626046,21.757875175418462],[-82.59742597425974,21.746055134529286],[-82.59382593825939,21.735923670909983],[-82.59382593825939,21.729169361830458],[-82.59742597425974,21.717349320941267],[-82.60822608226081,21.698774970972565],[-82.61542615426154,21.698774970972565],[-82.61182611826118,21.69033208462315],[-82.60822608226081,21.681889198273737],[-82.61182611826118,21.673446311924323],[-82.61542615426154,21.66500342557491],[-82.59382593825939,21.651494807415844],[-82.5830258302583,21.646429075606193],[-82.56862568625687,21.64474049833632],[-82.56862568625687,21.636297611986905]]],[[[-76.16056160561605,25.16542410604174],[-76.13176131761317,25.148538333342913],[-76.11736117361173,25.133341137913973],[-76.11376113761138,25.114766787945257],[-76.12096120961209,25.030337924451132],[-76.12456124561245,25.013452151752304],[-76.12816128161282,25.00500926540289],[-76.13176131761317,24.994877801783588],[-76.1389613896139,24.988123492704062],[-76.14976149761497,24.9847463381643],[-76.15336153361534,24.981369183624523],[-76.15696156961569,24.96279483365582],[-76.15336153361534,24.944220483687104],[-76.14256142561425,24.918891824638862],[-76.13536135361353,24.90200605194005],[-76.14256142561425,24.854725888383328],[-76.14616146161461,24.834462961144737],[-76.17136171361713,24.799002838477193],[-76.1749617496175,24.785494220318142],[-76.17856178561786,24.716262552252942],[-76.1749617496175,24.67742527504565],[-76.16056160561605,24.64534230691787],[-76.19296192961929,24.658850925076933],[-76.2109621096211,24.6909338932047],[-76.22176221762217,24.726394015872245],[-76.23616236162361,24.75509982946025],[-76.25416254162542,24.765231293079538],[-76.29736297362973,24.782117065778365],[-76.31536315363154,24.792248529397668],[-76.3369633696337,24.814200033906147],[-76.33336333363333,24.824331497525435],[-76.31896318963189,24.826020074795323],[-76.2181621816218,24.81082287936637],[-76.2109621096211,24.81251145663626],[-76.20736207362073,24.819265765715784],[-76.20376203762038,24.827708652065198],[-76.20016200162001,24.834462961144737],[-76.18216182161821,24.847971579303803],[-76.17856178561786,24.85810304292309],[-76.1749617496175,24.871611661082156],[-76.1749617496175,24.89525174286051],[-76.18216182161821,24.888497433780984],[-76.19656196561965,24.87330023835203],[-76.20736207362073,24.864857352002616],[-76.2109621096211,24.87498881562192],[-76.2109621096211,24.90031747467016],[-76.20376203762038,24.945909060956993],[-76.19656196561965,24.96279483365582],[-76.19296192961929,24.96786056546547],[-76.18936189361894,24.974614874544997],[-76.16056160561605,24.99825495632335],[-76.15336153361534,25.00500926540289],[-76.14616146161461,25.0624208925789],[-76.14616146161461,25.084372397087378],[-76.16416164161642,25.12996398337421],[-76.19656196561965,25.153604065152564],[-76.23256232562325,25.17048983785139],[-76.2649626496265,25.194129919629745],[-76.34776347763477,25.303887442172126],[-76.37296372963729,25.322461792140828],[-76.40896408964089,25.335970410299893],[-76.48816488164881,25.351167605728847],[-76.53136531365313,25.36974195569755],[-76.59256592565926,25.422087851063907],[-76.6321663216632,25.433907891953098],[-76.65376653766538,25.435596469222972],[-76.69336693366934,25.444039355572386],[-76.71136711367113,25.44741651011215],[-76.73296732967329,25.44235077830251],[-76.7689676896769,25.423776428333795],[-76.78336783367833,25.427153582873558],[-76.7581675816758,25.450793664651925],[-76.74376743767438,25.489630941859218],[-76.72936729367294,25.563928341734055],[-76.73656736567365,25.563928341734055],[-76.70056700567005,25.563928341734055],[-76.68616686166861,25.56223976446418],[-76.67536675366753,25.55717403265453],[-76.68616686166861,25.54197683722559],[-76.68976689766897,25.526779641796637],[-76.68976689766897,25.508205291827935],[-76.68976689766897,25.487942364589344],[-76.67176671766717,25.506516714558046],[-76.66096660966609,25.498073828208632],[-76.65376653766538,25.47781090097004],[-76.6429664296643,25.467679437350753],[-76.62496624966249,25.462613705541102],[-76.49896498964989,25.37311911023731],[-76.45936459364593,25.35454476026861],[-76.41616416164162,25.344413296649307],[-76.36936369363693,25.342724719379433],[-76.35136351363514,25.339347564839656],[-76.3369633696337,25.32752752395048],[-76.28296282962829,25.261673010425056],[-76.22536225362254,25.20763853778881],[-76.16056160561605,25.16542410604174]]],[[[-67.88047880478804,60.49721490106734],[-67.84087840878408,60.48877201471791],[-67.82647826478265,60.465131932939556],[-67.8480784807848,60.41616319211295],[-67.88767887678877,60.37901449217554],[-67.90927909279092,60.37732591490567],[-67.93447934479344,60.34693152404776],[-67.95967959679597,60.331734328618836],[-67.9560795607956,60.30133993776093],[-67.97407974079741,60.28951989687175],[-67.98847988479885,60.28951989687175],[-68.00648006480064,60.29627420595128],[-68.06048060480605,60.2945856286814],[-68.07488074880749,60.28783131960188],[-68.08928089280893,60.277699855982576],[-68.11088110881109,60.269256969633176],[-68.13968139681397,60.2658798150934],[-68.1720817208172,60.25743692874397],[-68.18288182881828,60.23886257877527],[-68.20448204482044,60.22704253788609],[-68.24048240482405,60.21859965153669],[-68.28368283682836,60.21691107426679],[-68.31968319683196,60.19664814702821],[-68.37368373683736,60.19664814702821],[-68.42048420484204,60.210156765187264],[-68.43848438484385,60.25912550601387],[-68.41688416884169,60.308094246840454],[-68.38088380883808,60.375637337635766],[-68.3340833408334,60.4313603875419],[-68.30888308883088,60.47019766474921],[-68.29088290882909,60.50565778741674],[-68.24048240482405,60.585020919101225],[-68.12888128881288,60.5968409599904],[-68.10008100081001,60.593463805450654],[-68.07848078480784,60.59008665091088],[-68.0280802808028,60.58333234183135],[-67.99927999279993,60.5867094963711],[-67.98127981279812,60.563069414592746],[-67.94527945279452,60.53098644646499],[-67.90567905679056,60.509034941956514],[-67.88047880478804,60.49721490106734]]],[[[-64.8420484204842,61.351634999627976],[-64.85284852848528,61.333060649659274],[-64.87444874448744,61.33137207238937],[-64.89964899648996,61.3398149587388],[-64.9140491404914,61.36176646324728],[-64.9320493204932,61.35332357689785],[-64.95364953649536,61.3482578450882],[-64.97524975249752,61.3499464223581],[-64.98244982449825,61.36514361778703],[-64.97884978849788,61.378652235946106],[-64.96084960849608,61.387095122295506],[-64.93924939249392,61.39216085410516],[-64.92124921249211,61.40229231772446],[-64.97164971649715,61.41580093588351],[-65.0760507605076,61.41917809042329],[-65.12285122851227,61.43775244039199],[-65.12285122851227,61.444506749471515],[-65.10845108451085,61.44281817220164],[-65.09765097650975,61.444506749471515],[-65.09045090450904,61.449572481281166],[-65.08685086850868,61.458015367630594],[-65.13725137251372,61.45632679036069],[-65.16245162451624,61.45970394490047],[-65.18045180451804,61.46814683124987],[-65.1840518405184,61.476589717599296],[-65.18765187651876,61.493475490298124],[-65.19485194851949,61.501918376647524],[-65.2020520205202,61.506984108457175],[-65.220052200522,61.506984108457175],[-65.24885248852488,61.5052955311873],[-65.26325263252632,61.50867268572708],[-65.2740527405274,61.51711557207648],[-65.28125281252812,61.52724703569578],[-65.2920529205292,61.534001344775305],[-65.30645306453064,61.53737849931508],[-65.35325353253532,61.54075565385483],[-65.37485374853748,61.547509962934356],[-65.4180541805418,61.57115004471274],[-65.42885428854288,61.574527199252486],[-65.44685446854469,61.58634724014166],[-65.4720547205472,61.58972439468144],[-65.48645486454865,61.59985585830074],[-65.48285482854828,61.62180736280919],[-65.4720547205472,61.64375886731767],[-65.45045450454504,61.65726748547675],[-65.42885428854288,61.6623332172864],[-65.04725047250471,61.69779333995393],[-65.0220502205022,61.694416185414156],[-64.97524975249752,61.680907567255105],[-64.7160471604716,61.66402179455628],[-64.7340473404734,61.6505131763972],[-64.77364773647736,61.63531598096827],[-64.79164791647916,61.62180736280919],[-64.77724777247772,61.618430208269444],[-64.76284762847628,61.623495940079096],[-64.74124741247412,61.63025024915862],[-64.72324723247232,61.63531598096827],[-64.72324723247232,61.62856167188875],[-64.73764737647376,61.62180736280919],[-64.73764737647376,61.61505305372967],[-64.68364683646836,61.618430208269444],[-64.66924669246693,61.61505305372967],[-64.65844658446584,61.609987321920016],[-64.65124651246512,61.604921590110365],[-64.65124651246512,61.59985585830074],[-64.6620466204662,61.59479012649109],[-64.66924669246693,61.58803581741154],[-64.70164701647016,61.56608431290309],[-64.71244712447124,61.561018581093435],[-64.71964719647195,61.55764142655366],[-64.72324723247232,61.55088711747413],[-64.72324723247232,61.542444231124705],[-64.71964719647195,61.54075565385483],[-64.70164701647016,61.539067076584956],[-64.69084690846908,61.53737849931508],[-64.68364683646836,61.534001344775305],[-64.7160471604716,61.5137384175367],[-64.68724687246872,61.5137384175367],[-64.67644676446764,61.50867268572708],[-64.680046800468,61.495164067568],[-64.68364683646836,61.4867211812186],[-64.69084690846908,61.46814683124987],[-64.6980469804698,61.458015367630594],[-64.71964719647195,61.43944101766186],[-64.78084780847809,61.42424382223294],[-64.79884798847988,61.41073520407386],[-64.7880478804788,61.395538008644934],[-64.80244802448024,61.3769636586762],[-64.8420484204842,61.351634999627976]]],[[[-70.2421024210242,62.616379374770105],[-70.19890198901989,62.60962506569058],[-70.17730177301773,62.589362138452],[-70.19530195301952,62.567410633943524],[-70.23130231302312,62.550524861244696],[-70.27450274502745,62.54208197489527],[-70.36090360903609,62.52688477946634],[-70.44010440104401,62.53363908854587],[-70.56250562505625,62.540393397625394],[-70.5841058410584,62.545459129435045],[-70.62370623706236,62.56403347940375],[-70.64530645306452,62.5690992112134],[-70.65250652506525,62.56572205667362],[-70.67050670506704,62.550524861244696],[-70.68130681306813,62.54714770670492],[-70.72810728107281,62.553902015784445],[-70.73890738907389,62.55727917032422],[-70.72450724507245,62.5690992112134],[-70.72810728107281,62.580919252102575],[-70.73170731707317,62.59611644753153],[-70.78930789307893,62.602870756611054],[-70.82170821708216,62.62651083838941],[-70.81810818108181,62.673791001946114],[-70.84690846908468,62.69911966099437],[-70.86490864908649,62.719382588232946],[-70.9261092610926,62.74639982455108],[-70.90810908109081,62.7531541336306],[-70.89010890108901,62.754842710900505],[-70.8721087210872,62.7531541336306],[-70.85770857708577,62.74639982455108],[-70.85050850508505,62.7531541336306],[-70.8361083610836,62.74808840182098],[-70.81450814508145,62.7447112472812],[-70.79290792907929,62.7447112472812],[-70.77850778507785,62.74977697909085],[-70.77130771307712,62.76159701998003],[-70.77490774907749,62.77172848359933],[-70.78570785707856,62.77848279267886],[-70.80370803708037,62.78017136994873],[-70.8721087210872,62.77341706086921],[-70.90810908109081,62.77510563813908],[-70.95850958509585,62.803811451727086],[-70.9981099810998,62.812254338076514],[-71.03411034110341,62.81394291534639],[-71.07371073710736,62.80043429718734],[-71.09531095310953,62.798745719917434],[-71.15651156511565,62.803811451727086],[-71.16731167311673,62.80718860626686],[-71.1781117811178,62.81563149261626],[-71.14571145711457,62.825762956235565],[-71.07011070110701,62.82069722442591],[-71.03411034110341,62.82914011077534],[-71.14211142111421,62.839271574394644],[-71.19611196111961,62.84940303801392],[-71.23571235712356,62.87304311979227],[-71.23571235712356,62.88655173795135],[-71.20691206912069,62.888240315221225],[-70.78930789307893,62.84096015166452],[-70.60930609306092,62.798745719917434],[-70.55530555305553,62.77848279267886],[-70.4941049410494,62.76666275178968],[-70.47250472504724,62.74977697909085],[-70.44370443704436,62.74302267001133],[-70.41130411304113,62.73120262912215],[-70.39690396903968,62.719382588232946],[-70.41850418504184,62.719382588232946],[-70.42570425704257,62.719382588232946],[-70.42570425704257,62.71262827915342],[-70.3861038610386,62.69574250645459],[-70.32490324903249,62.68729962010519],[-70.35010350103501,62.67547957921602],[-70.37170371703716,62.66703669286659],[-70.35370353703537,62.66365953832684],[-70.32130321303212,62.66197096105694],[-70.29970299702997,62.66365953832684],[-70.27450274502745,62.656905229247286],[-70.25650256502564,62.63664230200871],[-70.2421024210242,62.616379374770105]]],[[[-77.53937539375393,63.28843312818344],[-77.5249752497525,63.285055973643665],[-77.5069750697507,63.28167881910389],[-77.49617496174962,63.27661308729424],[-77.50337503375033,63.25972731459541],[-77.55017550175502,63.227644346467656],[-77.56817568175681,63.20738141922905],[-77.5609756097561,63.192184223800126],[-77.5609756097561,63.18542991472057],[-77.64377643776437,63.14321548297352],[-77.70857708577086,63.12632971027469],[-77.7589775897759,63.111132514845735],[-77.82377823778238,63.102689628496336],[-77.88857888578886,63.089181010337256],[-77.9389793897939,63.08749243306738],[-77.96057960579606,63.09931247395656],[-78.0469804698047,63.129706864814466],[-78.04338043380433,63.14490406024339],[-78.0649806498065,63.14996979205304],[-78.09018090180902,63.15334694659282],[-78.11178111781118,63.16178983294222],[-78.12618126181262,63.1752984511013],[-78.15138151381514,63.18880706926035],[-78.1729817298173,63.200627110149526],[-78.20898208982089,63.21075857376883],[-78.24858248582485,63.23271007827731],[-78.3169831698317,63.28167881910389],[-78.34218342183422,63.29181028272319],[-78.45738457384573,63.355976218978725],[-78.49698496984969,63.369484837137804],[-78.50778507785077,63.374550568947456],[-78.53298532985329,63.38974776437638],[-78.51138511385113,63.410010691614985],[-78.53298532985329,63.418453577964385],[-78.52578525785258,63.431962196123465],[-78.54378543785438,63.44884796882229],[-78.51858518585186,63.48430809148982],[-78.48618486184861,63.51132532780795],[-78.43938439384394,63.51976821415735],[-78.41418414184142,63.49275097783922],[-78.37818378183782,63.45560227790182],[-78.27738277382774,63.48261951421995],[-78.18738187381874,63.49275097783922],[-78.15858158581585,63.48937382329947],[-78.10818108181081,63.47417662787052],[-78.07938079380793,63.472488050600646],[-78.05778057780577,63.48430809148982],[-78.05058050580506,63.4859966687597],[-77.98937989379894,63.47924235968017],[-77.89577895778957,63.47924235968017],[-77.84537845378453,63.472488050600646],[-77.82017820178201,63.45222512336204],[-77.82737827378273,63.45053654609217],[-77.83457834578346,63.44884796882229],[-77.84537845378453,63.43871650520299],[-77.82737827378273,63.431962196123465],[-77.80217802178021,63.42689646431381],[-77.7589775897759,63.42520788704394],[-77.74097740977409,63.42689646431381],[-77.70497704977049,63.43871650520299],[-77.68337683376834,63.43871650520299],[-77.68337683376834,63.43365077339334],[-77.6869768697687,63.423519309774036],[-77.69057690576905,63.418453577964385],[-77.67257672576726,63.418453577964385],[-77.65817658176582,63.41507642342464],[-77.64737647376474,63.410010691614985],[-77.6329763297633,63.40325638253546],[-77.64017640176401,63.40325638253546],[-77.65457654576545,63.39819065072581],[-77.64737647376474,63.396502073455935],[-77.63657636576366,63.39143634164628],[-77.62577625776257,63.38974776437638],[-77.62937629376293,63.38637060983663],[-77.6329763297633,63.382993455296855],[-77.63657636576366,63.37961630075711],[-77.64017640176401,63.37623914621733],[-77.62937629376293,63.355976218978725],[-77.60417604176041,63.342467600819674],[-77.57897578975789,63.33233613720037],[-77.55737557375573,63.31882751904132],[-77.55017550175502,63.31038463269189],[-77.54297542975429,63.293498859993065],[-77.53937539375393,63.28843312818344]]],[[[-76.68976689766897,63.4859966687597],[-76.65736657366573,63.4775537824103],[-76.58176581765817,63.475865205140394],[-76.54576545765457,63.46573374152112],[-76.54936549365493,63.46235658698134],[-76.5529655296553,63.458979432441595],[-76.57096570965709,63.458979432441595],[-76.61056610566105,63.43533935066321],[-76.62856628566286,63.43027361885356],[-76.65376653766538,63.43871650520299],[-76.65376653766538,63.431962196123465],[-76.63936639366393,63.42014215523429],[-76.65376653766538,63.39987922799568],[-76.6789667896679,63.37961630075711],[-76.70056700567005,63.369484837137804],[-76.72576725767257,63.369484837137804],[-76.7689676896769,63.37961630075711],[-76.83016830168302,63.38637060983663],[-76.85176851768517,63.38974776437638],[-76.86616866168661,63.39819065072581],[-76.86616866168661,63.40832211434511],[-76.89136891368913,63.41169926888486],[-76.94536945369454,63.41169926888486],[-76.97056970569706,63.40663353707521],[-76.98136981369814,63.40663353707521],[-77.0029700297003,63.42014215523429],[-77.03897038970389,63.431962196123465],[-77.06777067770678,63.45222512336204],[-77.0929709297093,63.46404516425122],[-77.15777157771578,63.50119386418865],[-77.16137161371613,63.507948173268176],[-77.17937179371793,63.507948173268176],[-77.19377193771938,63.50963675053805],[-77.20817208172082,63.5147024823477],[-77.22257222572226,63.521456791427255],[-77.22617226172261,63.52314536869713],[-77.23697236972369,63.524833945967],[-77.24417244172442,63.52821110050678],[-77.24417244172442,63.529899677776655],[-77.24417244172442,63.538342564126054],[-77.24417244172442,63.54171971866583],[-77.25137251372513,63.54847402774536],[-77.25857258572586,63.551851182285134],[-77.26577265772657,63.54847402774536],[-77.28737287372873,63.56029406863453],[-77.37377373773738,63.58224557314301],[-77.37017370173702,63.58562272768279],[-77.36657366573665,63.587311304952664],[-77.35937359373594,63.58899988222254],[-77.41697416974169,63.59068845949244],[-77.4349743497435,63.59575419130209],[-77.42777427774277,63.59913134584184],[-77.42057420574206,63.600819923111715],[-77.40977409774098,63.60250850038162],[-77.40257402574025,63.60250850038162],[-77.42057420574206,63.60419707765149],[-77.43857438574385,63.61263996400092],[-77.44217442174421,63.619394273080445],[-77.42417424174242,63.622771427620194],[-77.33417334173342,63.622771427620194],[-77.33417334173342,63.63121431396962],[-77.41337413374133,63.632902891239496],[-77.44937449374494,63.641345777588924],[-77.44577445774458,63.6616087048275],[-77.42417424174242,63.67849447752633],[-77.39537395373954,63.69369167295528],[-77.36657366573665,63.70213455930468],[-77.33417334173342,63.69875740476493],[-77.28737287372873,63.685248786605854],[-77.19737197371974,63.685248786605854],[-77.17937179371793,63.681871632066105],[-77.15057150571505,63.668363013907026],[-77.13617136171361,63.66498585936728],[-77.11097110971109,63.66667443663715],[-77.10737107371074,63.67005159117693],[-77.12177121771218,63.676805900256454],[-77.12177121771218,63.685248786605854],[-76.70776707767077,63.56704837771409],[-76.71856718567186,63.56367122317431],[-76.72216722167221,63.561982645904436],[-76.70776707767077,63.54509687320561],[-76.6789667896679,63.534965409586306],[-76.64656646566465,63.529899677776655],[-76.62496624966249,63.52821110050678],[-76.61776617766178,63.521456791427255],[-76.68976689766897,63.4859966687597]]],[[[-85.00225002250022,66.00704253269458],[-84.95544955449554,66.01548541904398],[-84.93024930249302,66.01548541904398],[-84.89784897848978,65.99015675999576],[-84.85824858248583,65.9665166782174],[-84.86544865448654,65.96313952367763],[-84.87624876248762,65.95976236913785],[-84.88344883448835,65.95300806005832],[-84.89064890648906,65.9462537509788],[-84.82944829448294,65.91417078285102],[-84.81144811448114,65.90235074196184],[-84.79344793447935,65.89221927834254],[-84.77184771847718,65.88546496926301],[-84.75744757447575,65.87702208291361],[-84.7610476104761,65.86351346475453],[-84.72864728647286,65.84493911478583],[-84.71424714247142,65.83480765116653],[-84.71784717847179,65.82298761027735],[-84.71424714247142,65.80779041484843],[-84.70344703447034,65.79597037395925],[-84.66024660246602,65.74869021040251],[-84.6530465304653,65.73687016951334],[-84.64224642246423,65.72336155135429],[-84.6350463504635,65.70985293319521],[-84.62784627846278,65.70309862411568],[-84.6170461704617,65.69803289230603],[-84.5990459904599,65.69296716049638],[-84.59184591845919,65.68621285141685],[-84.59184591845919,65.6828356968771],[-84.60264602646026,65.67439281052768],[-84.60264602646026,65.6727042332578],[-84.5990459904599,65.66932707871803],[-84.59184591845919,65.6625727696385],[-84.59184591845919,65.65919561509872],[-84.57744577445774,65.6439984196698],[-84.57384573845738,65.63555553332037],[-84.58824588245882,65.6254240697011],[-84.64944649446494,65.59334110157332],[-84.67464674646746,65.56801244252506],[-84.6890468904689,65.55956955617566],[-84.71424714247142,65.55450382436601],[-84.75024750247502,65.55619240163588],[-84.80064800648006,65.56632386525519],[-84.84024840248402,65.58827536976366],[-84.8510485104851,65.61866976062154],[-84.85464854648546,65.6237354924312],[-84.85824858248583,65.63048980151072],[-84.85824858248583,65.64906415147945],[-84.86184861848618,65.66088419236863],[-84.87624876248762,65.67101565598793],[-84.9230492304923,65.68959000595663],[-85.04545045450455,65.71660724227476],[-85.05985059850599,65.72336155135429],[-85.07785077850778,65.74024732405312],[-85.09585095850959,65.75037878767242],[-85.11385113851138,65.7621988285616],[-85.12465124651246,65.78246175580017],[-85.1390513905139,65.83987338297618],[-85.15345153451534,65.85675915567501],[-85.13545135451353,65.88039923745336],[-85.14625146251463,65.90572789650162],[-85.16785167851678,65.93105655554984],[-85.18585185851857,65.9462537509788],[-85.17865178651786,65.9563852145981],[-85.1750517505175,65.9665166782174],[-85.1750517505175,65.97664814183668],[-85.17865178651786,65.98846818272585],[-85.1570515705157,66.01041968723433],[-85.13185131851318,66.02392830539341],[-85.1030510305103,66.02899403720306],[-85.06345063450634,66.02899403720306],[-85.05265052650526,66.02730545993316],[-85.04545045450455,66.02392830539341],[-85.03825038250382,66.01886257358376],[-85.02385023850238,66.01210826450423],[-85.02025020250203,66.01041968723433],[-85.0130501305013,66.00873110996446],[-85.00225002250022,66.00704253269458]]],[[[-84.4730447304473,66.08978281891882],[-84.46944469444693,66.1032914370779],[-84.46944469444693,66.11680005523695],[-84.4730447304473,66.130308673396],[-84.4730447304473,66.13875155974543],[-84.45864458644586,66.14550586882496],[-84.43344433444334,66.14550586882496],[-84.40824408244082,66.1404401370153],[-84.3470434704347,66.11848863250682],[-84.1850418504185,66.08809424164895],[-84.14184141841417,66.08640566437907],[-84.12384123841238,66.0830285098393],[-84.10944109441094,66.07796277802964],[-84.09864098640986,66.07120846895012],[-84.08784087840878,66.06445415987059],[-84.06984069840698,66.06276558260069],[-84.05544055440554,66.06951989168024],[-84.03744037440374,66.08133993256942],[-84.0230402304023,66.08809424164895],[-84.0050400504005,66.07965135529952],[-83.99783997839978,66.06951989168024],[-83.99783997839978,66.05601127352116],[-83.99783997839978,66.04419123263199],[-84.00144001440015,66.03574834628259],[-83.98343983439834,66.02899403720306],[-83.94383943839438,66.02223972812351],[-83.83223832238322,65.97833671910658],[-83.77463774637746,65.96989383275715],[-83.74223742237422,65.95807379186797],[-83.71343713437135,65.94287659643902],[-83.69183691836918,65.9259908237402],[-83.6810368103681,65.88208781472326],[-83.71343713437135,65.85338200113526],[-83.80343803438033,65.82298761027735],[-83.78543785437854,65.81285614665805],[-83.72783727837277,65.80272468303878],[-83.72423724237242,65.799347528499],[-83.7170371703717,65.79597037395925],[-83.71343713437135,65.7909046421496],[-83.70263702637025,65.7892160648797],[-83.67743677436773,65.7892160648797],[-83.66663666636666,65.78583891033995],[-83.63423634236342,65.76726456037122],[-83.56223562235623,65.75544451948204],[-83.54063540635406,65.74869021040251],[-83.53343533435334,65.74362447859286],[-83.52623526235261,65.73687016951334],[-83.53343533435334,65.72505012862416],[-83.5370353703537,65.71660724227476],[-83.52983529835298,65.71323008773498],[-83.51543515435154,65.71660724227476],[-83.49023490234902,65.72505012862416],[-83.47223472234722,65.72842728316394],[-83.29223292232922,65.72842728316394],[-83.23823238232382,65.72167297408438],[-83.2130321303213,65.70647577865546],[-83.23463234632347,65.69972146957593],[-83.25983259832599,65.68959000595663],[-83.2670326703267,65.67776996506745],[-83.24543245432454,65.66426134690838],[-83.25623256232562,65.65750703782885],[-83.2670326703267,65.6524413060192],[-83.28863288632886,65.64568699693967],[-83.28143281432814,65.64568699693967],[-83.29943299432993,65.6338669560505],[-83.33543335433355,65.6237354924312],[-83.36783367833678,65.61866976062154],[-83.38583385833859,65.62035833789145],[-83.40743407434074,65.63555553332037],[-83.4290342903429,65.64568699693967],[-83.45423454234542,65.6541298832891],[-83.47943479434794,65.65919561509872],[-83.59463594635946,65.65919561509872],[-83.62343623436234,65.66426134690838],[-83.61623616236162,65.67776996506745],[-83.58383583835838,65.70647577865546],[-83.61623616236162,65.70309862411568],[-83.64863648636486,65.68959000595663],[-83.65583655836558,65.6727042332578],[-83.62343623436234,65.65919561509872],[-83.62343623436234,65.65075272874932],[-83.65943659436594,65.65581846055898],[-83.72783727837277,65.67101565598793],[-83.76023760237602,65.6727042332578],[-83.81423814238143,65.6524413060192],[-83.83943839438395,65.6524413060192],[-83.85023850238503,65.67608138779755],[-83.8430384303843,65.6828356968771],[-83.82863828638285,65.68452427414698],[-83.81423814238143,65.68452427414698],[-83.80343803438033,65.68621285141685],[-83.79623796237962,65.69465573776628],[-83.79623796237962,65.70141004684581],[-83.79983799837999,65.70816435592533],[-83.80343803438033,65.71660724227476],[-83.78543785437854,65.72842728316394],[-83.74943749437494,65.73855874678321],[-83.68463684636846,65.74869021040251],[-83.68463684636846,65.75544451948204],[-83.72423724237242,65.76388740583147],[-83.82863828638285,65.75544451948204],[-83.7890378903789,65.77570744672065],[-83.78183781837818,65.78246175580017],[-83.78543785437854,65.79259321941947],[-83.80343803438033,65.79428179668935],[-83.86823868238682,65.78246175580017],[-83.95823958239582,65.74024732405312],[-83.97983979839798,65.74024732405312],[-83.99423994239942,65.74531305586277],[-84.0050400504005,65.75375594221217],[-84.01944019440194,65.76051025129169],[-84.03744037440374,65.7621988285616],[-84.07344073440734,65.75544451948204],[-84.12744127441275,65.7621988285616],[-84.14184141841417,65.76726456037122],[-84.14184141841417,65.77908460126042],[-84.12744127441275,65.7892160648797],[-84.11664116641165,65.79428179668935],[-84.10944109441094,65.80272468303878],[-84.10224102241023,65.81623330119783],[-84.10944109441094,65.83649622843643],[-84.12384123841238,65.85675915567501],[-84.1310413104131,65.87702208291361],[-84.12384123841238,65.90741647377149],[-84.13464134641346,65.91585936012092],[-84.15264152641527,65.92261366920044],[-84.18864188641886,65.92936797827997],[-84.18864188641886,65.9361222873595],[-84.1850418504185,65.94794232824867],[-84.1850418504185,65.95976236913785],[-84.19584195841958,65.97158241002703],[-84.20664206642066,65.97664814183668],[-84.23184231842318,65.98171387364633],[-84.28944289442894,66.0036653781548],[-84.30744307443074,66.00704253269458],[-84.37224372243722,66.00704253269458],[-84.39744397443974,66.01210826450423],[-84.42624426244262,66.02899403720306],[-84.45144451444514,66.05263411898142],[-84.4730447304473,66.07627420075977],[-84.46584465844658,66.07627420075977],[-84.4730447304473,66.0830285098393],[-84.46584465844658,66.08978281891882],[-84.4730447304473,66.08978281891882]]],[[[-73.35973359733597,67.83746029324743],[-73.35973359733597,67.82395167508835],[-73.37053370533705,67.80368874784978],[-73.38853388533884,67.78511439788105],[-73.41013410134101,67.77667151153165],[-73.90693906939069,67.77667151153165],[-74.40374403744038,67.77836008880152],[-74.55134551345513,67.8104430569293],[-74.59814598145981,67.83070598416788],[-74.64134641346413,67.85603464321613],[-74.75294752947529,67.9472178157898],[-74.77094770947708,67.96410358848863],[-74.77814778147781,67.9843665157272],[-74.77454774547745,68.02995810201404],[-74.76734767347673,68.04853245198277],[-74.75654756547566,68.06372964741169],[-74.73134731347314,68.073861111031],[-74.65574655746558,68.0839925746503],[-74.47574475744757,68.07048395649124],[-74.46134461344613,68.07048395649124],[-74.44694446944469,68.07554968830087],[-74.43614436144361,68.08568115192017],[-74.43974439744397,68.0924354609997],[-74.43614436144361,68.09918977007925],[-74.43614436144361,68.10425550188887],[-74.4289442894429,68.10763265642865],[-74.41094410944109,68.11776412004795],[-74.40374403744038,68.11776412004795],[-74.38574385743857,68.12789558366725],[-74.36054360543605,68.17011001541431],[-74.3389433894339,68.18024147903361],[-74.31014310143101,68.17517574722396],[-74.25254252542526,68.14646993363596],[-74.22014220142201,68.13971562455643],[-74.2129421294213,68.13464989274678],[-74.21654216542166,68.12620700639735],[-74.22014220142201,68.11607554277808],[-74.24534245342453,68.10763265642865],[-74.25974259742597,68.09918977007925],[-74.27054270542705,68.08905830645995],[-74.27774277742778,68.07723826557077],[-74.2561425614256,68.06372964741169],[-74.16254162541625,68.07048395649124],[-74.12654126541265,68.06710680195147],[-74.09054090540906,68.05528676106229],[-73.92133921339213,68.03333525655381],[-73.85653856538565,68.01138375204533],[-73.82773827738276,68.00631802023568],[-73.80253802538024,67.99787513388628],[-73.78813788137882,67.9944979793465],[-73.77733777337772,67.99787513388628],[-73.74853748537485,68.01138375204533],[-73.73413734137341,68.01644948385498],[-73.7161371613716,68.01644948385498],[-73.65853658536585,68.00969517477546],[-73.60453604536045,68.01644948385498],[-73.52173521735217,68.00969517477546],[-73.44613446134461,67.99280940207663],[-73.41373413734136,67.96916932029828],[-73.43173431734317,67.94215208398015],[-73.43173431734317,67.93370919763072],[-73.43173431734317,67.92357773401145],[-73.4209342093421,67.91175769312227],[-73.41373413734136,67.90331480677284],[-73.40293402934029,67.89993765223309],[-73.39933399333992,67.89487192042344],[-73.39933399333992,67.88305187953426],[-73.40653406534065,67.86278895229566],[-73.39933399333992,67.85603464321613],[-73.36693366933669,67.84421460232696],[-73.35973359733597,67.83746029324743]]],[[[-86.57546575465754,68.28999900157598],[-86.50346503465035,68.26298176525785],[-86.43146431464314,68.21907875624092],[-86.41706417064171,68.21401302443127],[-86.40626406264062,68.20725871535174],[-86.41346413464134,68.19375009719266],[-86.4350643506435,68.16673286087453],[-86.4350643506435,68.1515356654456],[-86.4350643506435,68.09750119280935],[-86.43146431464314,68.08061542011052],[-86.41346413464134,68.06372964741169],[-86.40266402664027,68.04346672017311],[-86.39186391863919,68.02320379293451],[-86.37386373863738,67.95903785667898],[-86.37386373863738,67.9370863521705],[-86.3810638106381,67.9269548885512],[-86.41346413464134,67.84421460232696],[-86.46386463864638,67.7918687069606],[-86.47826478264783,67.78342582061117],[-86.51066510665106,67.77498293426177],[-86.56826568265683,67.73783423432434],[-86.5970659706597,67.72770277070504],[-86.64026640266403,67.72939134797494],[-86.67986679866799,67.73445707978456],[-86.69426694266943,67.74121138886412],[-86.70866708667086,67.75809716156294],[-86.71946719467195,67.76654004791234],[-86.7590675906759,67.77836008880152],[-86.83826838268382,67.7918687069606],[-86.87066870668707,67.8104430569293],[-86.8850688506885,67.82226309781848],[-86.92106921069211,67.86110037502579],[-86.92826928269282,67.87629757045471],[-86.93186931869319,67.88811761134389],[-86.94266942669427,67.90669196131262],[-86.94626946269463,67.91682342493192],[-86.94986949869498,67.92020057947167],[-86.95346953469534,67.92188915674154],[-86.95346953469534,67.92526631128132],[-86.94986949869498,67.93033204309097],[-86.94266942669427,67.9370863521705],[-86.93186931869319,67.93539777490062],[-86.92466924669246,67.93370919763072],[-86.91386913869138,67.93370919763072],[-86.90666906669067,67.93877492944037],[-86.89946899468994,67.95059497032955],[-86.89226892268923,67.95397212486932],[-86.88146881468815,67.9556607021392],[-86.8670686706867,67.9573492794091],[-86.85986859868598,67.96072643394885],[-86.8490684906849,67.9657921657585],[-86.84546845468455,67.9759236293778],[-86.83826838268382,67.99112082480676],[-86.83826838268382,67.99280940207663],[-86.8490684906849,68.02151521566464],[-86.87426874268742,68.03333525655381],[-86.9390693906939,68.04346672017311],[-86.96786967869679,68.05528676106229],[-86.98586985869858,68.06710680195147],[-86.98586985869858,68.0839925746503],[-86.97146971469715,68.10763265642865],[-86.96066960669606,68.11438696550817],[-86.91026910269102,68.1329613154769],[-86.89946899468994,68.13802704728653],[-86.89946899468994,68.1515356654456],[-86.91386913869138,68.17348716995409],[-86.89586895868959,68.19543867446254],[-86.82746827468274,68.22752164259032],[-86.79866798667986,68.24609599255902],[-86.7770677706777,68.2680474970675],[-86.74826748267482,68.28662184703623],[-86.71586715867159,68.30181904246516],[-86.6870668706687,68.31026192881458],[-86.65826658266582,68.31026192881458],[-86.57546575465754,68.28999900157598]]],[[[-79.08019080190802,68.87931246876505],[-79.1449914499145,68.86918100514575],[-79.16299162991629,68.86242669606622],[-79.21339213392133,68.83540945974809],[-79.22779227792277,68.83203230520832],[-79.26739267392674,68.83203230520832],[-79.28899288992889,68.83540945974809],[-79.34659346593466,68.85229523244692],[-79.38619386193862,68.85904954152645],[-79.3969939699397,68.86242669606622],[-79.40059400594005,68.8742467369554],[-79.3969939699397,68.88606677784458],[-79.39339393393934,68.89619824146388],[-79.38979389793897,68.90632970508318],[-79.3969939699397,68.9130840141627],[-79.41499414994149,68.91814974597236],[-79.42219422194222,68.92659263232176],[-79.36819368193682,68.94178982775071],[-79.32499324993249,68.97049564133872],[-79.24219242192422,69.06167881391238],[-79.22419224192241,69.07518743207143],[-79.20259202592025,69.08531889569073],[-79.17739177391773,69.09207320477026],[-79.15939159391594,69.09376178204013],[-79.11979119791198,69.09207320477026],[-79.09819098190981,69.09376178204013],[-79.06219062190621,69.10389324565944],[-79.04419044190442,69.10558182292934],[-78.97578975789757,69.10389324565944],[-78.95778957789578,69.10895897746909],[-78.92178921789217,69.12922190470769],[-78.91098910989109,69.13428763651734],[-78.87498874988749,69.14273052286674],[-78.86418864188641,69.1477962546764],[-78.85338853388534,69.15961629556557],[-78.85338853388534,69.17143633645475],[-78.8569885698857,69.19001068642345],[-78.85338853388534,69.20183072731263],[-78.8389883898839,69.2153393454717],[-78.76338763387633,69.25586519994889],[-78.72738727387274,69.26937381810794],[-78.65898658986589,69.25755377721876],[-78.62298622986229,69.26261950902841],[-78.64818648186481,69.28119385899711],[-78.70938709387093,69.30314536350559],[-78.7309873098731,69.32509686801407],[-78.72378723787237,69.33691690890325],[-78.70938709387093,69.3419826407129],[-78.6769867698677,69.34535979525268],[-78.65898658986589,69.35042552706233],[-78.60858608586085,69.37237703157078],[-78.5869858698587,69.37744276338043],[-78.52578525785258,69.37913134065033],[-78.4789847898479,69.39263995880938],[-78.45738457384573,69.39432853607926],[-78.41058410584105,69.38757422699973],[-78.31338313383134,69.38757422699973],[-78.27378273782737,69.36899987703103],[-78.24138241382414,69.32847402255385],[-78.21258212582126,69.30314536350559],[-78.21618216182162,69.29470247715619],[-78.23778237782378,69.28963674534654],[-78.2629826298263,69.28288243626702],[-78.29538295382953,69.26261950902841],[-78.32058320583205,69.23897942725006],[-78.33138331383313,69.21871650001145],[-78.34218342183422,69.20689645912228],[-78.36018360183601,69.19845357277288],[-78.37818378183782,69.19845357277288],[-78.3889838898389,69.2052078818524],[-78.39618396183961,69.21702792274158],[-78.41778417784178,69.22209365455123],[-78.43938439384394,69.22547080909101],[-78.45738457384573,69.22884796363076],[-78.47178471784717,69.21871650001145],[-78.47538475384754,69.2052078818524],[-78.47178471784717,69.17143633645475],[-78.48258482584825,69.16130487283544],[-78.54378543785438,69.14273052286674],[-78.56538565385654,69.13259905924744],[-78.5509855098551,69.10220466838956],[-78.6049860498605,69.0684331229919],[-78.71658716587166,69.01608722762555],[-78.72018720187201,69.00764434127612],[-78.72018720187201,68.98569283676764],[-78.72378723787237,68.97556137314837],[-78.73818738187381,68.96374133225919],[-78.79938799387993,68.95192129137001],[-78.81018810188101,68.94347840502058],[-78.81738817388174,68.93672409594106],[-78.82098820988209,68.92828120959163],[-78.82818828188282,68.91814974597236],[-78.84618846188461,68.90801828235305],[-78.87138871388713,68.9029525505434],[-78.93258932589326,68.89788681873375],[-78.9649896498965,68.88775535511445],[-79.08019080190802,68.87931246876505]]],[[[-76.69336693366934,69.41121430877809],[-76.65376653766538,69.39263995880938],[-76.64656646566465,69.38250849519008],[-76.65016650166501,69.3706884543009],[-76.65376653766538,69.3605569906816],[-76.65376653766538,69.35042552706233],[-76.64656646566465,69.33860548617315],[-76.67176671766717,69.33016259982372],[-76.6789667896679,69.3234082907442],[-76.67536675366753,69.31158824985502],[-76.70776707767077,69.30652251804537],[-76.76536765367653,69.28288243626702],[-76.79416794167942,69.27612812718749],[-76.81576815768157,69.27106239537784],[-76.85896858968589,69.24235658178983],[-76.8841688416884,69.23560227271028],[-76.90936909369093,69.23222511817053],[-76.9309693096931,69.22209365455123],[-76.94536945369454,69.20858503639218],[-76.94176941769418,69.18832210915357],[-76.92736927369273,69.17143633645475],[-76.90216902169021,69.16468202737522],[-76.88056880568806,69.16130487283544],[-76.85896858968589,69.15455056375592],[-76.87336873368733,69.14441910013662],[-76.88776887768877,69.13766479105709],[-76.92016920169202,69.12584475016791],[-76.90936909369093,69.11571328654861],[-76.90216902169021,69.11233613200886],[-76.90216902169021,69.10558182292934],[-76.9309693096931,69.11064755473896],[-76.94536945369454,69.11740186381851],[-76.95616956169562,69.12584475016791],[-76.95616956169562,69.14104194559687],[-76.99216992169922,69.14441910013662],[-77.07137071370714,69.13935336832697],[-77.13617136171361,69.12077901835826],[-77.15777157771578,69.11740186381851],[-77.26577265772657,69.14610767740652],[-77.31977319773198,69.18156780007405],[-77.36657366573665,69.2237822318211],[-77.38817388173881,69.26599666356819],[-77.3809738097381,69.28457101353689],[-77.35217352173521,69.30989967258512],[-77.34137341373413,69.32509686801407],[-77.33777337773377,69.34535979525268],[-77.3449734497345,69.3622455679515],[-77.35577355773557,69.37575418611056],[-77.35937359373594,69.3892628042696],[-77.32697326973269,69.41628004058774],[-77.25137251372513,69.43485439055644],[-77.11457114571145,69.44836300871552],[-77.08217082170822,69.43147723601669],[-77.04617046170462,69.41965719512751],[-76.97776977769777,69.40783715423834],[-76.78336783367833,69.40783715423834],[-76.7581675816758,69.41290288604799],[-76.73656736567365,69.42303434966726],[-76.71856718567186,69.42472292693716],[-76.69336693366934,69.41121430877809]]],[[[-79.96939969399693,69.63241793113272],[-80.02340023400234,69.6459265492918],[-80.05220052200522,69.64930370383155],[-80.07740077400774,69.63748366294237],[-80.0630006300063,69.61890931297367],[-79.96939969399693,69.55305479944823],[-79.9369993699937,69.5361690267494],[-79.96219962199622,69.5074632131614],[-79.99819998199982,69.50070890408188],[-80.0990009900099,69.51252894497105],[-80.14940149401494,69.52603756313013],[-80.21420214202142,69.53279187220966],[-80.23220232202321,69.54123475855906],[-80.23940239402394,69.55812053125788],[-80.22860228602286,69.57838345849649],[-80.21420214202142,69.60033496300497],[-80.21060210602106,69.61890931297367],[-80.23940239402394,69.6256636220532],[-80.2610026100261,69.6155321584339],[-80.30780307803077,69.56825199487719],[-80.33300333003329,69.55812053125788],[-80.33660336603366,69.57331772668684],[-80.34020340203402,69.59020349938567],[-80.34380343803437,69.60540069481459],[-80.3510035100351,69.6155321584339],[-80.36180361803618,69.62228646751342],[-80.40140401404014,69.6256636220532],[-80.41580415804158,69.63072935386285],[-80.43740437404374,69.6459265492918],[-80.49860498604986,69.66787805380025],[-80.56340563405634,69.6729437856099],[-80.76140761407613,69.66787805380025],[-80.79740797407973,69.67632094014968],[-80.81540815408154,69.69489529011838],[-80.80460804608046,69.70502675373768],[-80.75420754207542,69.72191252643651],[-80.73620736207361,69.73204399005581],[-80.73260732607326,69.74048687640521],[-80.7290072900729,69.74555260821487],[-80.72540725407254,69.75061834002452],[-80.71820718207182,69.75568407183417],[-80.64980649806498,69.75061834002452],[-80.58860588605886,69.72866683551604],[-80.53460534605345,69.72697825824616],[-80.52020520205201,69.72191252643651],[-80.50940509405093,69.72697825824616],[-80.49500495004949,69.72697825824616],[-80.4770047700477,69.72360110370639],[-80.46620466204662,69.71515821735699],[-80.4590045900459,69.70840390827746],[-80.45540455404554,69.68982955830873],[-80.45180451804518,69.68138667195933],[-80.42660426604266,69.66787805380025],[-80.40140401404014,69.66956663107015],[-80.39780397803978,69.6830752492292],[-80.4230042300423,69.7016495991979],[-80.41220412204122,69.70671533100756],[-80.3870038700387,69.71009248554734],[-80.37620376203762,69.71515821735699],[-80.40860408604085,69.71684679462686],[-80.43740437404374,69.72360110370639],[-80.46260462604626,69.73373256732569],[-80.48420484204841,69.75061834002452],[-80.49500495004949,69.76074980364382],[-80.50580505805058,69.77594699907274],[-80.50220502205022,69.78776703996195],[-80.4770047700477,69.7911441945017],[-80.44820448204482,69.79958708085113],[-80.40860408604085,69.80296423539087],[-80.34020340203402,69.79789850358122],[-80.33660336603366,69.7827013081523],[-80.30420304203042,69.78607846269205],[-80.23220232202321,69.80465281266078],[-80.20700207002069,69.801275658121],[-80.1710017100171,69.7911441945017],[-80.1350013500135,69.77594699907274],[-80.12420124201242,69.75906122637392],[-80.12780127801278,69.75230691729439],[-80.14940149401494,69.74048687640521],[-80.15660156601565,69.73204399005581],[-80.14940149401494,69.72360110370639],[-80.13860138601386,69.72528968097629],[-80.08100081000809,69.75230691729439],[-80.06660066600665,69.7539954945643],[-79.9729997299973,69.73035541278591],[-79.86499864998649,69.74555260821487],[-79.83259832598326,69.76074980364382],[-79.81459814598145,69.76412695818357],[-79.78579785797858,69.75568407183417],[-79.76779767797677,69.7539954945643],[-79.75339753397533,69.75906122637392],[-79.75339753397533,69.76412695818357],[-79.7569975699757,69.77425842180287],[-79.7569975699757,69.7810127308824],[-79.7569975699757,69.78607846269205],[-79.75339753397533,69.78945561723182],[-79.74619746197462,69.7911441945017],[-79.74259742597425,69.79452134904147],[-79.73539735397354,69.79620992631135],[-79.71379713797138,69.79620992631135],[-79.70299702997029,69.79789850358122],[-79.69939699396994,69.801275658121],[-79.69579695796958,69.81478427628005],[-79.69219692196921,69.81816143081983],[-79.67419674196742,69.8198500080897],[-79.53379533795338,69.79789850358122],[-79.51219512195122,69.80802996720053],[-79.45459454594545,69.801275658121],[-79.40779407794078,69.77932415361252],[-79.41499414994149,69.74217545367512],[-79.38619386193862,69.74217545367512],[-79.36459364593645,69.73710972186547],[-79.34659346593466,69.72697825824616],[-79.32859328593285,69.70840390827746],[-79.34659346593466,69.69489529011838],[-79.53379533795338,69.63241793113272],[-79.6129961299613,69.62059789024354],[-79.85419854198541,69.61215500389415],[-79.89739897398974,69.60540069481459],[-79.9189991899919,69.60540069481459],[-79.9369993699937,69.60877784935437],[-79.96219962199622,69.63072935386285],[-79.96939969399693,69.63241793113272]]],[[[-99.24759247592476,73.85554968310936],[-99.35559355593556,73.86568114672866],[-99.40959409594096,73.88256691942749],[-99.4419944199442,73.90958415574559],[-99.38799387993879,73.92309277390467],[-99.09639096390964,73.95686431930233],[-98.99918999189991,73.9501100102228],[-98.97398973989739,73.95686431930233],[-98.98838988389883,73.96024147384207],[-98.99918999189991,73.96699578292163],[-99.009990099901,73.97543866927103],[-99.02079020790208,73.98557013289033],[-98.98118981189812,73.99570159650963],[-98.84438844388444,74.00752163739881],[-98.76878768787688,74.03116171917716],[-98.75078750787507,74.03285029644704],[-98.52758527585276,74.03285029644704],[-98.17478174781748,74.09701623270257],[-97.72477724777248,74.12234489175083],[-97.68877688776888,74.1155905826713],[-97.65637656376563,74.10208196451222],[-97.64197641976419,74.07168757365434],[-97.69237692376923,74.03285029644704],[-97.80757807578075,73.9771272465409],[-97.90117901179012,73.95517574203242],[-97.99477994779947,73.94335570114325],[-98.00558005580055,73.9399785466035],[-98.03438034380343,73.92646992844442],[-98.04158041580415,73.92309277390467],[-98.05238052380524,73.92140419663477],[-98.05598055980559,73.91802704209502],[-98.06678066780667,73.90620700120584],[-98.0739807398074,73.89945269212632],[-98.08478084780847,73.89607553758654],[-98.09198091980919,73.89607553758654],[-98.12438124381244,73.88425549669736],[-98.14238142381423,73.87918976488771],[-98.3979839798398,73.85723826037923],[-98.649986499865,73.83528675587075],[-98.71838718387184,73.86568114672866],[-98.74358743587436,73.85386110583948],[-98.74718747187471,73.83697533314066],[-98.72198721987219,73.82684386952135],[-98.739987399874,73.81840098317193],[-98.76158761587615,73.81671240590205],[-98.83718837188371,73.8217781377117],[-98.89838898388983,73.81840098317193],[-98.95238952389523,73.80658094228275],[-99.14319143191432,73.8217781377117],[-99.1719917199172,73.83359817860088],[-99.14679146791468,73.8403524876804],[-98.82638826388263,73.831909601331],[-98.81918819188192,73.83697533314066],[-98.84438844388444,73.85217252856958],[-98.87678876788767,73.85723826037923],[-99.24759247592476,73.85554968310936]]],[[[-103.63963639636395,75.19965718993598],[-103.60003600036,75.18108283996727],[-103.58563585635856,75.1777056854275],[-103.60363603636036,75.15575418091905],[-103.64323643236432,75.13549125368044],[-103.7620376203762,75.08989966739361],[-103.86643866438664,75.06457100834538],[-104.16524165241653,75.03755377202725],[-104.23004230042301,75.01897942205855],[-104.25884258842588,75.01897942205855],[-104.3380433804338,75.0324880402176],[-104.46764467644677,75.03586519475735],[-104.52164521645216,75.04430808110678],[-104.59724597245972,75.04937381291643],[-104.70524705247053,75.069636740155],[-104.7880478804788,75.09834255374301],[-104.90684906849069,75.12367121279127],[-104.92844928449284,75.1405569854901],[-104.91044910449104,75.1591313354588],[-104.87084870848709,75.17095137634797],[-104.81324813248132,75.18277141723715],[-104.79884798847988,75.19459145812633],[-104.77724777247772,75.22498584898423],[-104.77004770047701,75.22836300352398],[-104.7520475204752,75.23342873533363],[-104.74844748447484,75.23511731260353],[-104.74844748447484,75.24524877622281],[-104.74844748447484,75.24862593076259],[-104.74484744847449,75.25200308530233],[-104.73044730447305,75.25706881711199],[-104.70164701647016,75.26213454892164],[-104.68724687246872,75.26720028073129],[-104.70884708847088,75.26551170346141],[-104.73044730447305,75.26888885800116],[-104.7520475204752,75.27395458981081],[-104.77004770047701,75.27902032162046],[-104.77004770047701,75.28746320796989],[-104.7520475204752,75.28915178523977],[-104.72684726847268,75.29590609431929],[-104.7160471604716,75.30434898066872],[-104.72324723247232,75.314480444288],[-104.70164701647016,75.33305479425673],[-104.67644676446764,75.34656341241578],[-104.4820448204482,75.41410650321109],[-104.40284402844028,75.43268085317979],[-104.12924129241293,75.43605800771957],[-104.07164071640716,75.41748365775086],[-103.96723967239672,75.40904077140144],[-103.94923949239492,75.40397503959178],[-103.89523895238952,75.37526922600378],[-103.81963819638196,75.36682633965438],[-103.80523805238052,75.3550062987652],[-103.81243812438125,75.33643194879647],[-103.7440374403744,75.28746320796989],[-103.74763747637476,75.23849446714328],[-103.72243722437224,75.22836300352398],[-103.66843668436684,75.2182315399047],[-103.66843668436684,75.2165429626348],[-103.66843668436684,75.2081000762854],[-103.66843668436684,75.20472292174563],[-103.66123661236612,75.20303434447575],[-103.63963639636395,75.19965718993598]]],[[[-102.87282872828727,75.7653305753467],[-102.86562865628656,75.76026484353704],[-102.89442894428944,75.75013337991774],[-103.32643326433264,75.75013337991774],[-103.38763387633875,75.7653305753467],[-103.27243272432725,75.79234781166483],[-103.25083250832508,75.80754500709375],[-103.31203312033121,75.80754500709375],[-103.25443254432544,75.82949651160223],[-103.18603186031861,75.83625082068176],[-103.05283052830528,75.83456224341188],[-103.0780307803078,75.8413165524914],[-103.1140311403114,75.84469370703118],[-103.13563135631357,75.85144801611071],[-103.1320313203132,75.87002236607941],[-103.11043110431105,75.88690813877824],[-103.0780307803078,75.89872817966742],[-103.04563045630456,75.90548248874694],[-102.76842768427684,75.93756545687472],[-102.49122491224912,75.9696484250025],[-102.40482404824049,75.9696484250025],[-102.2140221402214,75.99328850678086],[-102.070020700207,75.97302557954225],[-102.0880208802088,75.96289411592298],[-102.0880208802088,75.9595169613832],[-102.00162001620016,75.95613980684342],[-101.980019800198,75.95107407503377],[-101.98361983619836,75.94769692049402],[-101.98721987219872,75.94431976595425],[-101.98721987219872,75.9409426114145],[-101.98721987219872,75.93756545687472],[-102.09162091620917,75.91561395236624],[-102.39042390423904,75.89028529331802],[-102.44082440824408,75.87002236607941],[-102.45162451624516,75.85820232519023],[-102.47682476824768,75.82105362525283],[-102.49122491224912,75.80754500709375],[-102.50562505625057,75.79910212074435],[-102.60642606426065,75.77208488442622],[-102.66762667626676,75.7653305753467],[-102.71082710827108,75.77883919350575],[-102.73242732427325,75.77883919350575],[-102.72882728827288,75.76026484353704],[-102.76842768427684,75.75857626626717],[-102.78642786427864,75.76026484353704],[-102.80442804428044,75.7653305753467],[-102.79722797227971,75.7737734616961],[-102.87282872828727,75.7653305753467]]],[[[-102.57042570425703,75.99328850678086],[-102.94482944829448,75.95782838411333],[-103.31923319233192,75.92405683871567],[-103.690036900369,75.88859671604811],[-103.80163801638017,75.90379391147707],[-103.8880388803888,75.89872817966742],[-103.91323913239133,75.90379391147707],[-103.93123931239312,75.92743399325542],[-103.9420394203942,75.93249972506507],[-103.96363963639637,75.93756545687472],[-103.97443974439744,75.94431976595425],[-103.81963819638196,75.94769692049402],[-103.7260372603726,75.9780913113519],[-103.49923499234993,75.98315704316155],[-103.31923319233192,76.02368289763874],[-103.23283232832328,76.02030574309899],[-103.20763207632076,76.02368289763874],[-103.13923139231392,76.04732297941709],[-103.1140311403114,76.05070013395687],[-103.03123031230312,76.04732297941709],[-102.7360273602736,76.06927448392557],[-102.44442444424443,76.08953741116417],[-102.35082350823508,76.0760287930051],[-102.32922329223292,76.06589732938582],[-102.31842318423183,76.04394582487734],[-102.32562325623256,76.02199432036886],[-102.35442354423544,76.01355143401943],[-102.57042570425703,75.99328850678086]]],[[[-117.78417784177842,75.89703960239754],[-117.83097830978309,75.86664521153966],[-117.83817838178382,75.85482517065049],[-117.83097830978309,75.85482517065049],[-117.82737827378273,75.85144801611071],[-117.82377823778238,75.84807086157093],[-117.81657816578166,75.8413165524914],[-117.83817838178382,75.83456224341188],[-117.87777877778777,75.82780793433236],[-117.89577895778957,75.82105362525283],[-117.88857888578886,75.81429931617328],[-117.89937899378994,75.804167852554],[-117.92817928179281,75.79572496620457],[-117.94257942579426,75.78728207985517],[-117.94977949779498,75.7737734616961],[-117.94977949779498,75.76870772988644],[-117.94617946179461,75.76364199807679],[-117.94257942579426,75.75182195718762],[-117.9389793897939,75.746756225378],[-117.93177931779317,75.74000191629844],[-117.93537935379354,75.73493618448879],[-117.9749797497975,75.72987045267917],[-117.98937989379894,75.72480472086951],[-118.0109801098011,75.71129610271043],[-118.27018270182703,75.61673577559702],[-118.21978219782198,75.6082928892476],[-118.20178201782018,75.60153858016807],[-118.25218252182522,75.59647284835842],[-118.61218612186121,75.50360109851488],[-118.66258662586625,75.50191252124498],[-118.70938709387093,75.50866683032453],[-118.79578795787958,75.53061833483298],[-118.94338943389434,75.53399548937276],[-118.9289892898929,75.54581553026193],[-118.91098910989109,75.54919268480171],[-118.8929889298893,75.54919268480171],[-118.8749887498875,75.55425841661136],[-118.93618936189361,75.56270130296076],[-118.9649896498965,75.56101272569089],[-118.99738997389974,75.55594699388124],[-119.01179011790117,75.55594699388124],[-119.05859058590585,75.56776703477041],[-119.09459094590946,75.57283276658006],[-119.1989919899199,75.56438988023064],[-119.40779407794078,75.60153858016807],[-119.40779407794078,75.60660431197772],[-119.40779407794078,75.60998146651747],[-119.40059400594006,75.61673577559702],[-119.40779407794078,75.61673577559702],[-119.33219332193322,75.66063878461395],[-119.05139051390515,75.75182195718762],[-118.99378993789938,75.76195342080692],[-118.97218972189722,75.77039630715635],[-118.92178921789218,75.804167852554],[-118.84258842588426,75.83456224341188],[-118.79938799387995,75.84469370703118],[-118.7561875618756,75.84807086157093],[-118.74178741787418,75.87339952061919],[-118.68778687786877,75.90041675693732],[-118.6229862298623,75.92236826144577],[-118.32058320583207,75.97302557954225],[-118.20898208982089,75.9679598477326],[-118.1729817298173,75.97302557954225],[-118.15498154981549,75.9780913113519],[-118.14058140581406,75.9882227749712],[-118.11538115381154,76.01692858855921],[-118.08658086580866,76.03550293852791],[-118.05418054180541,76.03888009306769],[-118.01818018180182,76.03888009306769],[-117.88857888578886,76.0675859066557],[-117.88857888578886,76.07096306119547],[-117.89577895778957,76.08109452481474],[-117.79857798577986,76.11148891567265],[-117.65817658176582,76.12668611110158],[-117.62577625776257,76.1148660702124],[-117.58617586175862,76.1148660702124],[-117.54297542975429,76.10980033840275],[-117.46377463774638,76.08784883389427],[-117.48177481774817,76.08109452481474],[-117.49257492574925,76.07265163846535],[-117.50337503375033,76.04732297941709],[-117.51777517775177,76.03212578398816],[-117.53577535775358,76.02199432036886],[-117.57897578975789,76.00679712493991],[-117.57537575375753,75.98991135224108],[-117.58257582575825,75.9780913113519],[-117.60057600576005,75.9696484250025],[-117.61857618576185,75.96289411592298],[-117.63657636576366,75.95445122957355],[-117.66537665376654,75.93249972506507],[-117.67977679776797,75.92405683871567],[-117.7589775897759,75.90885964328672],[-117.78417784177842,75.89703960239754]]],[[[-103.81243812438125,76.03381436125804],[-103.94563945639456,76.04056867033756],[-103.88443884438844,76.04901155668699],[-103.87363873638736,76.05407728849664],[-104.06444064440645,76.0675859066557],[-104.0860408604086,76.06083159757617],[-104.07884078840789,76.05407728849664],[-104.36684366843669,76.0760287930051],[-104.39564395643956,76.08109452481474],[-104.410044100441,76.08953741116417],[-104.45324453244532,76.12668611110158],[-104.47844478444784,76.14019472926066],[-104.47844478444784,76.14694903834018],[-104.46764467644677,76.16045765649923],[-104.4460444604446,76.17227769738841],[-104.41724417244173,76.17734342919806],[-104.35964359643596,76.17734342919806],[-104.34164341643417,76.18240916100771],[-104.32724327243272,76.20773782005597],[-104.31284312843128,76.21280355186559],[-104.20124201242012,76.2246235927548],[-104.12924129241293,76.21955786094514],[-104.11124111241112,76.22124643821502],[-104.08244082440824,76.22968932456442],[-103.91323913239133,76.24488651999337],[-103.85563855638556,76.25670656088255],[-103.79443794437944,76.25501798361267],[-103.7080370803708,76.2617722926922],[-103.58923589235891,76.25839513815242],[-103.52443524435245,76.2719037563115],[-103.49563495634956,76.27021517904163],[-103.48483484834848,76.2719037563115],[-103.44523445234452,76.27865806539103],[-103.08523085230853,76.29723241535973],[-102.72522725227252,76.31580676532846],[-102.65322653226532,76.29385526081998],[-102.64242642426424,76.2719037563115],[-102.62442624426244,76.25839513815242],[-102.54162541625416,76.23137790183432],[-102.54162541625416,76.21955786094514],[-102.58482584825848,76.18409773827759],[-102.54162541625416,76.16552338830888],[-102.53082530825309,76.15708050195948],[-102.62442624426244,76.15708050195948],[-102.62082620826207,76.15370334741971],[-102.61362613626136,76.1435718838004],[-102.6820268202682,76.1165546474823],[-102.83682836828368,76.08109452481474],[-103.24363243632436,76.04732297941709],[-103.23643236432365,76.04732297941709],[-103.52443524435245,76.04056867033756],[-103.81243812438125,76.03381436125804]]],[[[-104.39924399243992,76.46946729688779],[-104.41364413644136,76.47959876050706],[-104.43884438844388,76.49141880139624],[-104.4640446404464,76.49817311047579],[-104.47844478444784,76.49648453320589],[-104.50004500045,76.48635306958661],[-104.52524525245252,76.48297591504684],[-104.5540455404554,76.48635306958661],[-104.5720457204572,76.49310737866614],[-104.56484564845648,76.49986168774566],[-104.57564575645756,76.50323884228544],[-104.58284582845828,76.50830457409506],[-104.59364593645937,76.52012461498427],[-104.58284582845828,76.52012461498427],[-104.57924579245793,76.52181319225414],[-104.5720457204572,76.52519034679389],[-104.56484564845648,76.5268789240638],[-104.590045900459,76.53869896495297],[-104.64404644046441,76.54714185130237],[-104.66924669246693,76.5555847376518],[-104.64044640446404,76.58091339670003],[-104.66564665646656,76.58935628304945],[-104.67284672846728,76.5944220148591],[-104.680046800468,76.6028649012085],[-104.65124651246512,76.6028649012085],[-104.35244352443524,76.66365368292429],[-104.02484024840248,76.67040799200382],[-103.96723967239672,76.66196510565439],[-103.9240392403924,76.64001360114594],[-103.93483934839348,76.62143925117721],[-104.05724057240572,76.56740477854098],[-104.02484024840248,76.56233904673132],[-103.94563945639456,76.57753624216028],[-103.88443884438844,76.57753624216028],[-103.85203852038521,76.60961921028803],[-103.82683826838269,76.62312782844711],[-103.79443794437944,76.62312782844711],[-103.76563765637655,76.61637351936756],[-103.67923679236792,76.57753624216028],[-103.63963639636395,76.57078193308072],[-103.55683556835568,76.56740477854098],[-103.5820358203582,76.5555847376518],[-103.58923589235891,76.54714185130237],[-103.59283592835928,76.53363323314332],[-103.57843578435784,76.5268789240638],[-103.38763387633875,76.49648453320589],[-103.30483304833048,76.49986168774566],[-103.26163261632617,76.50830457409506],[-103.25083250832508,76.50661599682519],[-103.24363243632436,76.50155026501554],[-103.24363243632436,76.49648453320589],[-103.24363243632436,76.49141880139624],[-103.25083250832508,76.49310737866614],[-103.24723247232473,76.48804164685649],[-103.24723247232473,76.48297591504684],[-103.24363243632436,76.47791018323719],[-103.23283232832328,76.47284445142753],[-103.21843218432184,76.47115587415766],[-103.07083070830708,76.46440156507813],[-103.02043020430204,76.45089294691905],[-103.00963009630097,76.42387571060095],[-103.0240302403024,76.41543282425152],[-103.33723337233371,76.33100396075739],[-103.60723607236072,76.32424965167786],[-103.88083880838808,76.31749534259833],[-103.94923949239492,76.32593822894773],[-104.37764377643776,76.32424965167786],[-104.40644406444063,76.33606969256704],[-104.38844388443884,76.34451257891646],[-104.34524345243452,76.35802119707552],[-104.33444334443344,76.36984123796469],[-104.34884348843488,76.38166127885387],[-104.35604356043561,76.38672701066352],[-104.36684366843669,76.3901041652033],[-104.3920439204392,76.39348131974305],[-104.43884438844388,76.3901041652033],[-104.46044460444604,76.39685847428282],[-104.43524435244352,76.40530136063222],[-104.40284402844028,76.42049855606118],[-104.38484384843848,76.44245006056966],[-104.39924399243992,76.46946729688779]]],[[[-89.66069660696607,77.3559703635762],[-89.64629646296463,77.344150322687],[-89.64629646296463,77.33233028179782],[-89.6570965709657,77.32388739544842],[-89.79029790297902,77.27154150008207],[-90.09270092700926,77.20399840928675],[-90.16470164701647,77.21244129563615],[-90.20070200702007,77.21075271836628],[-90.23670236702367,77.20568698655663],[-90.36270362703627,77.1989326774771],[-90.4059040590406,77.20399840928675],[-90.41670416704167,77.2090641410964],[-90.41670416704167,77.21412987290606],[-90.3951039510395,77.22426133652533],[-90.38790387903879,77.23270422287476],[-90.65430654306543,77.26985292281216],[-90.92430924309242,77.3070016227496],[-91.05391053910539,77.35259320903643],[-91.10071100711006,77.36272467265573],[-91.11871118711187,77.372856136275],[-91.13311133111331,77.38467617716421],[-91.17991179911799,77.39480764078348],[-91.1979119791198,77.40831625894256],[-91.20151201512014,77.42013629983174],[-91.19431194311943,77.43195634072092],[-91.17991179911799,77.44377638161009],[-91.16911169111691,77.45221926795949],[-91.19431194311943,77.50963089513553],[-91.20871208712087,77.5197623587548],[-91.1979119791198,77.53327097691388],[-91.19071190711907,77.53833670872353],[-91.18351183511835,77.54002528599341],[-91.1871118711187,77.55184532688259],[-91.20871208712087,77.57548540866094],[-91.20151201512014,77.58055114047059],[-91.19431194311943,77.58899402681999],[-91.1871118711187,77.59912549043929],[-91.18351183511835,77.6092569540586],[-91.16911169111691,77.61769984040802],[-91.12231122311223,77.62276557221765],[-91.08991089910899,77.61601126313812],[-91.05391053910539,77.62107699494777],[-90.95670956709567,77.65147138580565],[-90.88110881108811,77.6582256948852],[-90.59310593105931,77.64302849945625],[-90.30510305103051,77.6295198812972],[-90.22590225902259,77.61094553132847],[-90.21870218702186,77.60587979951882],[-90.21150211502115,77.60250264497907],[-90.21150211502115,77.59743691316942],[-90.20430204302043,77.59237118135977],[-90.18630186301863,77.58730544955012],[-90.14670146701467,77.58392829501037],[-89.77589775897759,77.48599081335715],[-89.71469714697146,77.45897357703905],[-89.72549725497255,77.44377638161009],[-89.71829718297182,77.42520203164139],[-89.70749707497075,77.40493910440279],[-89.6930969309693,77.38974190897383],[-89.70389703897038,77.38974190897383],[-89.71109711097111,77.38636475443408],[-89.71829718297182,77.37961044535456],[-89.71469714697146,77.36947898173526],[-89.70389703897038,77.35934751811595],[-89.68949689496894,77.35765894084608],[-89.67509675096751,77.35934751811595],[-89.66069660696607,77.3559703635762]]],[[[-104.39564395643956,77.19217836839758],[-104.44964449644496,77.1516525139204],[-104.51444514445144,77.1415210503011],[-104.64764647646476,77.13645531849144],[-104.75564755647557,77.11112665944319],[-104.79164791647916,77.10943808217331],[-104.8240482404824,77.11619239125284],[-104.85644856448565,77.12632385487214],[-104.9140491404914,77.15334109119027],[-104.95724957249573,77.16853828661922],[-105.0040500405004,77.17529259569875],[-105.10125101251012,77.1786697502385],[-105.1840518405184,77.16516113207945],[-105.22365223652237,77.16516113207945],[-105.26325263252632,77.1786697502385],[-105.24885248852489,77.1989326774771],[-105.24525245252453,77.20568698655663],[-105.27765277652776,77.21581845017593],[-105.35685356853568,77.21244129563615],[-105.39645396453965,77.21919560471568],[-105.39645396453965,77.22594991379523],[-105.37845378453784,77.21919560471568],[-105.35685356853568,77.2175070274458],[-105.33525335253353,77.21919560471568],[-105.31725317253172,77.22594991379523],[-105.35325353253532,77.24621284103381],[-105.38925389253892,77.25972145919289],[-105.46845468454684,77.27491865462181],[-105.45765457654576,77.27998438643147],[-105.43965439654396,77.28167296370134],[-105.40725407254072,77.27998438643147],[-105.40725407254072,77.28673869551099],[-105.490054900549,77.29518158186042],[-105.53685536855369,77.30362446820982],[-105.56565565655656,77.32219881817855],[-105.57285572855729,77.33233028179782],[-105.57285572855729,77.33908459087738],[-105.56565565655656,77.3559703635762],[-105.55125551255512,77.36610182719548],[-105.5440554405544,77.37116755900513],[-105.55125551255512,77.36947898173526],[-105.57285572855729,77.38129902262443],[-105.60165601656016,77.38467617716421],[-105.66285662856629,77.3829875998943],[-105.65565655656556,77.39311906351361],[-105.64845648456485,77.39818479532326],[-105.62685626856268,77.40493910440279],[-105.64125641256412,77.41169341348231],[-105.68805688056881,77.42520203164139],[-105.65925659256592,77.44039922707032],[-105.68085680856808,77.4539078452294],[-105.76365763657637,77.46572788611857],[-105.75645756457564,77.47923650427762],[-105.7420574205742,77.48599081335715],[-105.7240572405724,77.48767939062705],[-105.70965709657096,77.4927451224367],[-105.68805688056881,77.50794231786563],[-105.68085680856808,77.51638520421506],[-105.69165691656916,77.5197623587548],[-105.71325713257133,77.52313951329458],[-105.75645756457564,77.53158239964398],[-105.84285842858428,77.54171386326328],[-105.86085860858608,77.54846817234281],[-105.82485824858249,77.56028821323198],[-105.82125821258212,77.56873109958141],[-105.83925839258393,77.57548540866094],[-105.82485824858249,77.59574833589954],[-105.84285842858428,77.62107699494777],[-105.87525875258753,77.64302849945625],[-105.9040590405904,77.6565371176153],[-106.05166051660517,77.69537439482261],[-106.09126091260913,77.71563732206121],[-106.09486094860948,77.72914594022026],[-106.07686076860769,77.73927740383957],[-105.90765907659076,77.76798321742757],[-105.64845648456485,77.75447459926852],[-105.60165601656016,77.73927740383957],[-105.50445504455044,77.72070305387086],[-105.24885248852489,77.6295198812972],[-104.99684996849969,77.53664813145363],[-104.96444964449644,77.51638520421506],[-104.95364953649536,77.48767939062705],[-104.97524975249752,77.4724821951981],[-105.00765007650077,77.46066215430892],[-105.00765007650077,77.44208780434022],[-105.00765007650077,77.43195634072092],[-105.01485014850148,77.42182487710161],[-105.01485014850148,77.41507056802209],[-105.00045000450004,77.41169341348231],[-104.79164791647916,77.42182487710161],[-104.74844748447484,77.41844772256184],[-104.73044730447305,77.39311906351361],[-104.70524705247053,77.3829875998943],[-104.54324543245433,77.344150322687],[-104.50364503645037,77.3255759727183],[-104.48924489244892,77.32219881817855],[-104.43884438844388,77.315444509099],[-104.42084420844208,77.30869020001947],[-104.43524435244352,77.30362446820982],[-104.45324453244532,77.30193589093994],[-104.4640446404464,77.29855873640017],[-104.47484474844748,77.28673869551099],[-104.4460444604446,77.27829580916159],[-104.42084420844208,77.27660723189172],[-104.39564395643956,77.27323007735194],[-104.38124381243813,77.25296715011334],[-104.37044370443704,77.23439280014463],[-104.3740437404374,77.23101564560488],[-104.39564395643956,77.19217836839758]]],[[[-113.68733687336874,77.86592069908076],[-113.6729367293673,77.84565777184218],[-113.6009360093601,77.8321491536831],[-113.57573575735758,77.81526338098428],[-113.60453604536045,77.81019764917463],[-113.72333723337233,77.76967179469744],[-114.16254162541625,77.70719443571178],[-114.29934299342993,77.71394874479131],[-114.47934479344794,77.75109744472874],[-114.61974619746198,77.7561631765384],[-114.65214652146521,77.76798321742757],[-114.62334623346233,77.7747375265071],[-114.51534515345153,77.76122890834804],[-114.53694536945369,77.78318041285652],[-114.58014580145802,77.79668903101557],[-114.66654666546665,77.80850907190475],[-114.79974799747997,77.85072350365184],[-114.85734857348574,77.85916639000123],[-115.11655116551165,77.9604810261942],[-115.09855098550986,77.96554675800385],[-115.06975069750698,77.9689239125436],[-115.04095040950409,77.9689239125436],[-114.99054990549905,77.95879244892433],[-114.9689496894969,77.95710387165443],[-114.94734947349474,77.9604810261942],[-114.90054900549005,77.97398964435325],[-114.79614796147962,77.98243253070268],[-114.76734767347673,77.99087541705208],[-114.74214742147421,77.99931830340151],[-114.6809468094681,78.03477842606904],[-114.50094500945009,78.04828704422809],[-114.38934389343893,78.0769928578161],[-114.32814328143282,78.08037001235587],[-114.28134281342813,78.06179566238717],[-114.29214292142922,78.05166419876787],[-114.34974349743497,78.03477842606904],[-114.33174331743317,78.02802411698951],[-114.27054270542705,78.01451549883043],[-114.31734317343174,78.01451549883043],[-114.2561425614256,77.9891868397822],[-114.11574115741158,78.00100688067138],[-114.06534065340654,77.97230106708338],[-114.06894068940689,77.97230106708338],[-113.98613986139861,77.93684094441585],[-113.97533975339753,77.92839805806642],[-113.95013950139501,77.91826659444712],[-113.73773737737378,77.90138082174829],[-113.70173701737018,77.88956078085911],[-113.68733687336874,77.86592069908076]]],[[[-100.15120151201512,79.9985937909426],[-100.1620016200162,80.01041383183178],[-100.18360183601835,80.02054529545109],[-100.19440194401943,80.03236533634026],[-100.18000180001799,80.04587395449934],[-100.16560165601656,80.04925110903909],[-100.14040140401404,80.05431684084874],[-100.1260012600126,80.0593825726584],[-100.11880118801187,80.06444830446804],[-100.10440104401044,80.0779569226271],[-100.09720097200972,80.08302265443675],[-100.10440104401044,80.07626834535722],[-100.06120061200612,80.0965312725958],[-99.78039780397803,80.15056574523206],[-99.57159571595716,80.14212285888263],[-99.44919449194492,80.11172846802475],[-99.4239942399424,80.11172846802475],[-99.1179911799118,80.13367997253323],[-99.0639906399064,80.12523708618383],[-98.95958959589596,80.09484269532592],[-98.87318873188731,80.08302265443675],[-98.85158851588515,80.0695140362777],[-98.85878858788588,80.06782545900779],[-98.86958869588696,80.0593825726584],[-98.87678876788767,80.05600541811862],[-98.85518855188552,80.04587395449934],[-98.78678786787867,80.02223387272096],[-98.77958779587796,80.01210240910169],[-98.77958779587796,79.99690521367273],[-98.75438754387544,79.98508517278356],[-98.70758707587076,79.96651082281485],[-98.72558725587255,79.9614450910052],[-98.74358743587436,79.9513136273859],[-98.7579875798758,79.93949358649672],[-98.76878768787688,79.92598496833764],[-98.7759877598776,79.9040334638292],[-98.76878768787688,79.89559057747977],[-98.72558725587255,79.88545911386046],[-98.69678696786967,79.86857334116164],[-98.67158671586715,79.84324468211341],[-98.65718657186572,79.81791602306515],[-98.649986499865,79.79258736401692],[-98.66078660786607,79.78076732312775],[-98.67878678786788,79.76894728223857],[-98.70038700387003,79.75881581861927],[-98.71838718387184,79.75543866407949],[-98.72558725587255,79.74868435499997],[-98.73638736387363,79.73348715957104],[-98.75078750787507,79.71997854141196],[-98.77238772387723,79.71322423233244],[-98.77958779587796,79.70815850052279],[-98.7939879398794,79.68451841874443],[-98.80118801188011,79.67607553239503],[-98.82278822788227,79.66932122331548],[-98.84078840788408,79.66932122331548],[-98.87678876788767,79.67945268693478],[-98.87318873188731,79.69802703690348],[-98.8839888398884,79.70984707779266],[-98.95958959589596,79.72842142776139],[-99.30159301593015,79.75881581861927],[-99.33039330393304,79.76894728223857],[-99.31239312393123,79.78414447766752],[-99.30159301593015,79.78921020947715],[-99.31239312393123,79.79258736401692],[-99.33039330393304,79.80271882763623],[-99.33759337593375,79.80947313671575],[-99.3159931599316,79.81116171398563],[-99.29439294392944,79.81622744579528],[-99.30159301593015,79.8331132184941],[-99.30519305193052,79.84324468211341],[-99.31239312393123,79.84831041392306],[-99.58239582395824,79.89896773201954],[-99.61479614796147,79.89896773201954],[-99.70479704797047,79.88545911386046],[-100.0720007200072,79.87870480478094],[-100.09720097200972,79.88545911386046],[-100.15480154801547,79.90741061836894],[-100.18000180001799,79.9124763501786],[-100.17280172801728,79.9226078137979],[-100.14400144001439,79.9411821637666],[-100.13680136801368,79.94962505011603],[-100.13680136801368,79.95806793646543],[-100.13680136801368,79.9614450910052],[-100.13680136801368,79.96651082281485],[-100.13680136801368,79.97495370916425],[-100.14040140401404,79.9800194409739],[-100.14760147601476,79.98508517278356],[-100.15120151201512,79.99015090459321],[-100.15120151201512,79.9985937909426]]],[[[55.78795787957881,-21.103281666014084],[55.80235802358024,-21.111724552363498],[55.83835838358385,-21.126921747792437],[55.849158491584916,-21.13705321141174],[55.85275852758528,-21.15731613865033],[55.849158491584916,-21.174201911349158],[55.841958419584216,-21.191087684047986],[55.823958239582396,-21.263696506652934],[55.82035820358203,-21.285648011161413],[55.823958239582396,-21.304222361130122],[55.82035820358203,-21.324485288368713],[55.81315813158133,-21.343059638337422],[55.791557915579176,-21.349813947416955],[55.755557555575564,-21.348125370147073],[55.73755737557377,-21.351502524686836],[55.705157051570524,-21.366699720115783],[55.68355683556837,-21.370076874655545],[55.65835658356585,-21.370076874655545],[55.64395643956439,-21.363322565576013],[55.6259562595626,-21.370076874655545],[55.60075600756008,-21.370076874655545],[55.57555575555756,-21.368388297385664],[55.5539555395554,-21.363322565576013],[55.53595535955361,-21.3548796792266],[55.50715507155073,-21.332928174718127],[55.47475474754748,-21.326173865638594],[55.43515435154353,-21.310976670209655],[55.41715417154171,-21.30253378386024],[55.40995409954101,-21.294090897510827],[55.40275402754028,-21.283959433891532],[55.39915399153992,-21.277205124812],[55.388353883538855,-21.275516547542118],[55.35595355953561,-21.27382797027223],[55.34875348753488,-21.272139393002348],[55.34155341553415,-21.25694219757341],[55.30915309153093,-21.21979349763599],[55.294752947529474,-21.1995305703974],[55.29115291152911,-21.175890488619032],[55.29115291152911,-21.159004715920204],[55.287552875528775,-21.143807520491265],[55.2479524795248,-21.091461625124907],[55.23355233552337,-21.069510120616428],[55.22635226352264,-21.04755861610795],[55.22635226352264,-21.028984266139247],[55.229952299523006,-21.01040991617053],[55.24075240752407,-20.993524143471703],[55.27675276752768,-20.980015525312638],[55.287552875528775,-20.9648183298837],[55.29115291152911,-20.946243979914996],[55.287552875528775,-20.93273536175593],[55.294752947529474,-20.92598105267639],[55.294752947529474,-20.92260389813663],[55.294752947529474,-20.917538166326977],[55.287552875528775,-20.91247243451734],[55.3019530195302,-20.9057181254378],[55.33435334353345,-20.9057181254378],[55.363153631536335,-20.88545519819921],[55.40635406354065,-20.86350369369073],[55.45675456754569,-20.861815116420857],[55.471154711547115,-20.86350369369073],[55.49995499955,-20.873635157310034],[55.514355143551455,-20.875323734579922],[55.52875528755288,-20.87025800277027],[55.54315543155431,-20.875323734579922],[55.57915579155792,-20.875323734579922],[55.59355593555935,-20.88038946638956],[55.60435604356044,-20.888832352738973],[55.65115651156512,-20.897275239088387],[55.665556655566576,-20.9057181254378],[55.672756727567275,-20.91247243451734],[55.69435694356943,-20.934423939025805],[55.70155701557016,-20.94962113445476],[55.705157051570524,-20.981704102582526],[55.71235712357125,-20.993524143471703],[55.73755737557377,-21.017164225250056],[55.741157411574136,-21.023918534329596],[55.741157411574136,-21.044181461568186],[55.74475744757447,-21.05431292518749],[55.748357483574836,-21.06275581153689],[55.7519575195752,-21.06782154334654],[55.76995769957699,-21.07457585242608],[55.773557735577356,-21.079641584235716],[55.77715777157772,-21.084707316045368],[55.78795787957881,-21.103281666014084]]],[[[57.79677796777969,-20.22353290840519],[57.793177931779326,-20.247172990183557],[57.78957789577896,-20.274190226501673],[57.7787777877779,-20.304584617359566],[57.775177751777534,-20.319781812788506],[57.78237782377823,-20.33497900821746],[57.75717757177571,-20.34342189456686],[57.72837728377286,-20.363684821805464],[57.7139771397714,-20.387324903583817],[57.72117721177213,-20.404210676282645],[57.72117721177213,-20.41096498536217],[57.724777247772494,-20.419407871711584],[57.72837728377286,-20.424473603521236],[57.724777247772494,-20.434605067140538],[57.717577175771765,-20.436293644410412],[57.71037710377104,-20.436293644410412],[57.70677706777067,-20.4379822216803],[57.692376923769245,-20.461622303458654],[57.68517685176852,-20.471753767077956],[57.67077670776709,-20.48019665342737],[57.5879758797588,-20.505525312475612],[57.50517505175051,-20.51734535336479],[57.47277472774729,-20.5156567760949],[57.42597425974262,-20.50045958066596],[57.4007740077401,-20.498771003396072],[57.37917379173791,-20.507213889745486],[57.32157321573217,-20.45824514891889],[57.307173071730716,-20.444736530759826],[57.30357303573035,-20.43122791260076],[57.31797317973181,-20.424473603521236],[57.34317343173433,-20.429539335330887],[57.357573575735756,-20.427850758061],[57.364773647736484,-20.414342139901933],[57.36837368373685,-20.38563632631393],[57.36837368373685,-20.37550486269464],[57.357573575735756,-20.37043913088499],[57.364773647736484,-20.346799049106636],[57.364773647736484,-20.2910759992005],[57.37197371973721,-20.26068160834261],[57.37917379173791,-20.24379583564378],[57.4007740077401,-20.199892826626836],[57.4079740797408,-20.19313851754731],[57.41157411574116,-20.189761363007534],[57.43317433174332,-20.171187013038832],[57.44397443974441,-20.16780985849907],[57.465574655746565,-20.16105554941953],[57.47277472774729,-20.157678394879767],[57.490774907749085,-20.14079262218094],[57.49437494374945,-20.122218272212237],[57.49437494374945,-20.10364392224352],[57.50877508775088,-20.076626685925405],[57.52317523175233,-20.04116656325786],[57.5267752677527,-20.031035099638572],[57.5339753397534,-20.024280790559033],[57.55917559175592,-20.004017863320442],[57.566375663756645,-20.00064070878068],[57.58077580775807,-20.00064070878068],[57.58437584375844,-19.997263554240917],[57.591575915759165,-19.990509245161377],[57.59517595175953,-19.982066358811963],[57.60597605976059,-19.9786892042722],[57.62397623976241,-19.982066358811963],[57.667176671766725,-19.993886399701154],[57.67797677976782,-20.00064070878068],[57.68517685176852,-20.010772172399967],[57.67797677976782,-20.027657945098795],[57.68157681576815,-20.037789408718098],[57.68877688776888,-20.0479208723374],[57.69597695976961,-20.064806645036214],[57.70677706777067,-20.07831526319528],[57.71037710377104,-20.090135304084455],[57.7139771397714,-20.096889613163995],[57.717577175771765,-20.096889613163995],[57.72837728377286,-20.095201035894107],[57.73197731977319,-20.096889613163995],[57.74637746377465,-20.10533249951341],[57.74637746377465,-20.112086808592935],[57.742777427774286,-20.1441697767207],[57.75357753577538,-20.154301240340004],[57.76077760777608,-20.162744126689418],[57.77157771577717,-20.189761363007534],[57.78957789577896,-20.211712867516013],[57.79677796777969,-20.22353290840519]]],[[[43.465034650346524,-11.821172413468886],[43.46863468634686,-11.831303877088189],[43.47583475834759,-11.843123917977366],[43.497434974349744,-11.873518308835244],[43.497434974349744,-11.881961195184658],[43.48663486634868,-11.900535545153375],[43.483034830348316,-11.910667008772663],[43.483034830348316,-11.917421317852202],[43.47943479434795,-11.922487049661854],[43.472234722347224,-11.92755278147149],[43.46143461434616,-11.930929936011268],[43.45063450634507,-11.932618513281142],[43.43623436234364,-11.930929936011268],[43.432634326343276,-11.924175626931728],[43.42543425434255,-11.912355586042551],[43.371433714337144,-11.860009690676193],[43.35343353433535,-11.854943958866542],[43.313833138331404,-11.85156680432678],[43.30303303033031,-11.849878227056891],[43.288632886328884,-11.843123917977366],[43.27063270632706,-11.827926722548412],[43.263432634326364,-11.817795258929124],[43.259832598326,-11.80935237257971],[43.259832598326,-11.800909486230296],[43.25263252632527,-11.790778022610994],[43.22743227432275,-11.765449363562752],[43.21663216632166,-11.750252168133812],[43.213032130321324,-11.72492350908557],[43.21663216632166,-11.716480622736157],[43.22383223832239,-11.70466058184698],[43.24543245432454,-11.672577613719213],[43.24543245432454,-11.66244615009991],[43.24183241832418,-11.652314686480622],[43.24183241832418,-11.640494645591431],[43.25263252632527,-11.463194032253753],[43.25263252632527,-11.451373991364576],[43.24543245432454,-11.441242527745274],[43.256232562325636,-11.422668177776572],[43.2670326703267,-11.399028095998219],[43.27783277832779,-11.378765168759614],[43.288632886328884,-11.378765168759614],[43.331833318333196,-11.365256550600563],[43.357033570335716,-11.361879396060786],[43.37503375033751,-11.368633705140326],[43.3858338583386,-11.383830900569265],[43.396633966339664,-11.400716673268093],[43.40023400234003,-11.41760244596692],[43.37863378633787,-11.605034522923901],[43.3858338583386,-11.645560377401083],[43.42903429034291,-11.708037736386743],[43.447034470344704,-11.748563590863924],[43.447034470344704,-11.758695054483226],[43.447034470344704,-11.780646558991705],[43.447034470344704,-11.790778022610994],[43.45063450634507,-11.797532331690533],[43.457834578345796,-11.804286640770059],[43.465034650346524,-11.811040949849584],[43.465034650346524,-11.821172413468886]]],[[[39.54459544595446,-6.321476245460943],[39.54819548195482,-6.329919131810357],[39.57339573395734,-6.377199295367063],[39.56979569795698,-6.421102304384021],[39.54459544595446,-6.4514966952419],[39.50859508595087,-6.463316736131077],[39.47259472594726,-6.4514966952419],[39.45819458194583,-6.4396766543527235],[39.443794437944376,-6.421102304384021],[39.43299432994331,-6.400839377145431],[39.41499414994152,-6.316410513651292],[39.41499414994152,-6.301213318222338],[39.393393933939336,-6.307967627301878],[39.393393933939336,-6.319787668191054],[39.40419404194043,-6.331607709080231],[39.41139411394116,-6.345116327239296],[39.40779407794079,-6.368756409017649],[39.40419404194043,-6.373822140827301],[39.375393753937544,-6.363690677207998],[39.37899378993791,-6.343427749969408],[39.375393753937544,-6.328230554540468],[39.34659346593466,-6.301213318222338],[39.317793177931776,-6.252244577395743],[39.30699306993071,-6.2454902683162175],[39.299792997929984,-6.238735959236678],[39.285392853928556,-6.247178845586092],[39.285392853928556,-6.253933154665631],[39.292592925929256,-6.255621731935506],[39.292592925929256,-6.257310309205394],[39.292592925929256,-6.262376041015045],[39.292592925929256,-6.2674417728246965],[39.28179281792819,-6.258998886475283],[39.274592745927464,-6.274196081904222],[39.27819278192783,-6.296147586412701],[39.28899288992892,-6.307967627301878],[39.28899288992892,-6.309656204571752],[39.285392853928556,-6.31134478184164],[39.28179281792819,-6.31134478184164],[39.274592745927464,-6.307967627301878],[39.2637926379264,-6.3029018954922265],[39.260192601926036,-6.297836163682575],[39.260192601926036,-6.2944590091428125],[39.209792097920996,-6.2370473819668035],[39.198991989919904,-6.220161609267976],[39.184591845918476,-6.176258600251032],[39.17739177391775,-6.1576842502823155],[39.21339213392136,-6.113781241265372],[39.20619206192063,-6.056369614089348],[39.184591845918476,-5.993892255103688],[39.191791917919176,-5.938169205197568],[39.18819188191884,-5.926349164308391],[39.191791917919176,-5.9145291234192],[39.191791917919176,-5.904397659799912],[39.198991989919904,-5.895954773450498],[39.198991989919904,-5.9027090825300235],[39.209792097920996,-5.912840546149326],[39.209792097920996,-5.917906277958977],[39.22779227792279,-5.890889041640847],[39.2637926379264,-5.860494650782954],[39.28179281792819,-5.841920300814252],[39.28899288992892,-5.8098373326864845],[39.29619296192962,-5.737228510081522],[39.31419314193144,-5.71865416011282],[39.324993249932504,-5.749048550970699],[39.35739357393575,-5.803083023606945],[39.360993609936116,-5.838543146274489],[39.35379353793539,-5.880757578021559],[39.35379353793539,-5.895954773450498],[39.35739357393575,-5.912840546149326],[39.36459364593648,-5.939857782467442],[39.368193681936816,-5.9550549778963955],[39.37179371793718,-5.970252173325335],[39.393393933939336,-6.002335141453102],[39.40419404194043,-6.0479267277399344],[39.40779407794079,-6.051303882279711],[39.42939429394295,-6.054681036819474],[39.43299432994331,-6.068189654978539],[39.42939429394295,-6.080009695867716],[39.425794257942584,-6.093518314026767],[39.42219422194222,-6.107026932185832],[39.42219422194222,-6.1222241276147855],[39.425794257942584,-6.134044168503962],[39.42939429394295,-6.145864209393139],[39.43659436594368,-6.1576842502823155],[39.425794257942584,-6.172881445711255],[39.418594185941856,-6.181324332060669],[39.41499414994152,-6.191455795679971],[39.42939429394295,-6.18639006387032],[39.44019440194404,-6.191455795679971],[39.44739447394474,-6.203275836569148],[39.45819458194583,-6.211718722918562],[39.45819458194583,-6.196521527489622],[39.46539465394656,-6.1880786411402084],[39.47259472594726,-6.18639006387032],[39.476194761947625,-6.198210104759497],[39.48339483394835,-6.198210104759497],[39.48339483394835,-6.196521527489622],[39.48339483394835,-6.191455795679971],[39.501395013950145,-6.196521527489622],[39.501395013950145,-6.174570022981143],[39.49779497794978,-6.145864209393139],[39.49779497794978,-6.12391270488466],[39.5157951579516,-6.145864209393139],[39.526595265952665,-6.174570022981143],[39.54459544595446,-6.321476245460943]]],[[[39.6417964179642,-5.414710251533933],[39.6417964179642,-5.3792501288663885],[39.6489964899649,-5.362364356167561],[39.65619656196563,-5.348855738008496],[39.6489964899649,-5.338724274389207],[39.66339663396636,-5.337035697119319],[39.69939699396994,-5.34210142892897],[39.68859688596888,-5.328592810769905],[39.67059670596706,-5.303264151721663],[39.66339663396636,-5.28637837902285],[39.677796777967785,-5.291444110832487],[39.69939699396994,-5.293132688102375],[39.71739717397176,-5.289755533562612],[39.72459724597246,-5.27962406994331],[39.7137971379714,-5.277935492673436],[39.70659706597067,-5.274558338133659],[39.69579695796958,-5.267804029054133],[39.69219692196924,-5.259361142704719],[39.70659706597067,-5.259361142704719],[39.73179731797319,-5.254295410895068],[39.74619746197462,-5.252606833625194],[39.76419764197644,-5.262738297244482],[39.7749977499775,-5.259361142704719],[39.78219782197823,-5.239098215466129],[39.76059760597607,-5.247541101815543],[39.73539735397355,-5.240786792736003],[39.69219692196924,-5.2120809791479985],[39.68139681396815,-5.21714671095765],[39.66699666996672,-5.213769556417887],[39.65619656196563,-5.203638092798585],[39.6489964899649,-5.190129474639534],[39.65979659796599,-5.195195206449171],[39.66699666996672,-5.200260938258822],[39.67419674196742,-5.20194951552871],[39.68499684996851,-5.196883783719059],[39.69219692196924,-5.200260938258822],[39.728197281972825,-5.205326670068473],[39.74619746197462,-5.205326670068473],[39.73899738997392,-5.196883783719059],[39.74619746197462,-5.178309433750357],[39.74259742597428,-5.161423661051529],[39.73179731797319,-5.156357929241878],[39.71739717397176,-5.169866547400943],[39.72459724597246,-5.149603620162338],[39.72459724597246,-5.144537888352701],[39.7209972099721,-5.136095002003287],[39.7137971379714,-5.131029270193636],[39.702997029970305,-5.131029270193636],[39.69219692196924,-5.137783579273162],[39.69219692196924,-5.125963538383985],[39.69579695796958,-5.122586383844222],[39.69939699396994,-5.115832074764697],[39.69579695796958,-5.104012033875506],[39.69579695796958,-5.090503415716455],[39.69939699396994,-5.078683374827264],[39.70659706597067,-5.078683374827264],[39.7209972099721,-5.083749106636915],[39.72459724597246,-5.080371952097153],[39.72459724597246,-5.071929065747739],[39.71739717397176,-5.0617976021284505],[39.71019710197103,-5.056731870318799],[39.677796777967785,-5.044911829429623],[39.68139681396815,-5.03478036581032],[39.69579695796958,-5.022960324921144],[39.69939699396994,-5.012828861301841],[39.68499684996851,-5.019583170381381],[39.67419674196742,-5.001008820412665],[39.68139681396815,-4.9875002022535995],[39.69579695796958,-4.9824344704439625],[39.7137971379714,-4.992565934063251],[39.71739717397176,-4.977368738634311],[39.702997029970305,-4.967237275015009],[39.68859688596888,-4.958794388665595],[39.677796777967785,-4.945285770506544],[39.677796777967785,-4.933465729617353],[39.68139681396815,-4.904759916029349],[39.68499684996851,-4.889562720600409],[39.68499684996851,-4.8946284524100605],[39.68859688596888,-4.899694184219712],[39.69219692196924,-4.903071338759474],[39.69579695796958,-4.903071338759474],[39.702997029970305,-4.908137070569111],[39.70659706597067,-4.916579956918525],[39.71019710197103,-4.926711420537828],[39.7137971379714,-4.931777152347479],[39.72459724597246,-4.9300885750775905],[39.728197281972825,-4.9216456887281765],[39.728197281972825,-4.914891379648651],[39.73539735397355,-4.909825647839],[39.73899738997392,-4.913202802378763],[39.75699756997571,-4.9300885750775905],[39.76059760597607,-4.935154306887242],[39.80739807398075,-4.960482965935483],[39.81459814598148,-4.968925852284897],[39.81459814598148,-4.980745893174074],[39.81819818198184,-4.990877356793376],[39.82179821798218,-4.994254511333139],[39.828998289982906,-4.985811624983725],[39.828998289982906,-4.977368738634311],[39.82179821798218,-4.968925852284897],[39.82539825398254,-4.957105811395721],[39.836198361983634,-4.945285770506544],[39.836198361983634,-4.9520400795860695],[39.839798397984,-4.960482965935483],[39.84339843398436,-4.965548697745135],[39.85059850598506,-4.948662925046307],[39.854198541985426,-4.928399997807716],[39.85779857798579,-4.909825647839],[39.854198541985426,-4.898005606949823],[39.86859868598685,-4.906448493299237],[39.86859868598685,-4.926711420537828],[39.86859868598685,-4.950351502316181],[39.879398793987946,-4.9875002022535995],[39.86859868598685,-5.006074552222316],[39.85059850598506,-5.019583170381381],[39.836198361983634,-5.026337479460906],[39.839798397984,-5.044911829429623],[39.836198361983634,-5.063486179398325],[39.83259832598327,-5.083749106636915],[39.828998289982906,-5.102323456605632],[39.836198361983634,-5.1327178474635105],[39.839798397984,-5.137783579273162],[39.8469984699847,-5.1327178474635105],[39.8469984699847,-5.124274961114111],[39.8469984699847,-5.114143497494808],[39.8469984699847,-5.109077765685157],[39.861398613986154,-5.114143497494808],[39.861398613986154,-5.1327178474635105],[39.854198541985426,-5.169866547400943],[39.854198541985426,-5.228966751846826],[39.8469984699847,-5.245852524545654],[39.854198541985426,-5.252606833625194],[39.84339843398436,-5.267804029054133],[39.81459814598148,-5.355610047088035],[39.80739807398075,-5.365741510707323],[39.803798037980386,-5.370807242516975],[39.80019800198002,-5.377561551596514],[39.80019800198002,-5.394447324295342],[39.79659796597966,-5.406267365184519],[39.785797857978594,-5.4096445197242815],[39.78219782197823,-5.401201633374868],[39.785797857978594,-5.382627283406151],[39.78219782197823,-5.382627283406151],[39.7749977499775,-5.399513056104979],[39.77139771397714,-5.406267365184519],[39.76419764197644,-5.411333096994156],[39.7677976779768,-5.421464560613458],[39.76419764197644,-5.4315960242327606],[39.753397533975345,-5.443416065121937],[39.73899738997392,-5.451858951471351],[39.728197281972825,-5.453547528741225],[39.72459724597246,-5.450170374201463],[39.728197281972825,-5.443416065121937],[39.73899738997392,-5.438350333312286],[39.73899738997392,-5.4315960242327606],[39.72459724597246,-5.434973178772523],[39.7137971379714,-5.441727487852049],[39.70659706597067,-5.443416065121937],[39.69939699396994,-5.4315960242327606],[39.66339663396636,-5.4315960242327606],[39.6489964899649,-5.428218869692984],[39.6417964179642,-5.414710251533933]]],[[[6.679866798668002,0.4075041750216144],[6.705067050670522,0.392306979592675],[6.726667266672678,0.36697832054443325],[6.74466744667447,0.33827250695642874],[6.755467554675562,0.3112552706382985],[6.7626676266762615,0.28423803432018246],[6.759067590675926,0.2690408388912289],[6.755467554675562,0.25046648892252676],[6.748267482674834,0.2302035616839362],[6.7410674106741055,0.21838352079475953],[6.7158671586715855,0.19474343901639202],[6.701467014670158,0.1812348208573411],[6.6762667626676375,0.13395465730062028],[6.669066690666909,0.13057750276085756],[6.658266582665846,0.1288889254909691],[6.6546665466654815,0.12382319368131789],[6.658266582665846,0.10693742098249004],[6.6510665106651174,0.10356026644272731],[6.640266402664025,0.10018311190296458],[6.6330663306633255,0.09849453463307611],[6.618666186661869,0.08160876193426247],[6.615066150661505,0.07823160739448554],[6.582665826658285,0.07654303012461128],[6.579065790657921,0.07823160739448554],[6.568265682656829,0.04277148472695558],[6.557465574655765,0.027574289298016197],[6.543065430654309,0.044460061996829836],[6.535865358653581,0.025885712028127728],[6.525065250652517,0.024197134758239258],[6.517865178651789,0.03432859837754165],[6.510665106651061,0.0512143710763695],[6.510665106651061,0.05290294834624376],[6.517865178651789,0.06978872104507161],[6.517865178651789,0.07823160739448554],[6.514265142651425,0.08836307101378793],[6.510665106651061,0.09342880282343913],[6.507065070650725,0.09511738009331339],[6.503465034650361,0.09849453463307611],[6.467464674646749,0.21162921171521987],[6.460264602646021,0.22176067533452226],[6.467464674646749,0.2302035616839362],[6.467464674646749,0.24033502530322437],[6.467464674646749,0.26059795254181495],[6.471064710647113,0.2673522616213546],[6.489064890648905,0.2909923433997079],[6.492664926649269,0.29943522974912185],[6.496264962649633,0.3061895388286615],[6.496264962649633,0.31294384790818697],[6.532265322653245,0.3484039705757169],[6.539465394653945,0.35178112511549386],[6.579065790657921,0.3652897432745448],[6.607866078660805,0.39061840232278655],[6.640266402664025,0.41088132956137713],[6.679866798668002,0.4075041750216144]]],[[[8.922689226892288,3.750887169389358],[8.947889478894808,3.7171156239917025],[8.958689586895872,3.7002298512928746],[8.962289622896236,3.679966924054284],[8.962289622896236,3.6597039968156935],[8.958689586895872,3.6428182241168656],[8.951489514895144,3.6276210286879262],[8.944289442894444,3.614112410528861],[8.908289082890832,3.582029442401094],[8.897488974889768,3.5550122060829636],[8.86508865088652,3.5144863516057825],[8.861488614886156,3.5111091970660198],[8.839888398884,3.4587633016996477],[8.821888218882208,3.4435661062707084],[8.818288182881844,3.4216146017622293],[8.81468814688148,3.414860292682704],[8.81468814688148,3.411483138142941],[8.785887858878596,3.3945973654441133],[8.782287822878232,3.3794001700151597],[8.782287822878232,3.332120006458453],[8.775087750877503,3.3169228110294995],[8.728287282872827,3.2645769156631417],[8.695886958869607,3.208853865757007],[8.685086850868515,3.1970338248678303],[8.677886778867787,3.20378813394737],[8.652686526865267,3.213919597566658],[8.649086490864903,3.220673906646198],[8.641886418864203,3.217296752106421],[8.627486274862747,3.222362483916072],[8.598685986859863,3.2375596793450256],[8.591485914859163,3.235871102075137],[8.569885698857007,3.230805370265486],[8.559085590855915,3.230805370265486],[8.548285482854823,3.235871102075137],[8.526685266852667,3.2493797202342023],[8.515885158851603,3.2510682975040766],[8.494284942849447,3.252756874773965],[8.469084690846927,3.257822606583616],[8.451084510845106,3.2730198020125556],[8.443884438844407,3.30172561560056],[8.436684366843679,3.3135456564897368],[8.42948429484295,3.327054274648802],[8.422284222842222,3.3388743155379785],[8.425884258842586,3.350694356427155],[8.42948429484295,3.359137242776569],[8.436684366843679,3.4013516745236387],[8.443884438844407,3.4216146017622293],[8.45468454684547,3.446943260810471],[8.472684726847262,3.463829033509299],[8.497884978849783,3.4570747244297735],[8.508685086850875,3.463829033509299],[8.526685266852667,3.463829033509299],[8.562685626856279,3.4570747244297735],[8.580685806858071,3.463829033509299],[8.584285842858435,3.4790262289382525],[8.580685806858071,3.4976005789069546],[8.573485734857343,3.5111091970660198],[8.584285842858435,3.517863506145545],[8.602286022860227,3.529683547034722],[8.616686166861683,3.543192165193787],[8.620286202862047,3.5550122060829636],[8.627486274862747,3.647883955926517],[8.641886418864203,3.6833440785940468],[8.667086670866723,3.7255585103411164],[8.703087030870307,3.7610186330086606],[8.742687426874284,3.7728386738978372],[8.742687426874284,3.7694615193580745],[8.735487354873555,3.757641478468898],[8.767887678876804,3.750887169389358],[8.782287822878232,3.750887169389358],[8.793087930879324,3.757641478468898],[8.81468814688148,3.750887169389358],[8.847088470884728,3.745821437579707],[8.879488794887948,3.7475100148495954],[8.908289082890832,3.757641478468898],[8.911889118891196,3.754264323929121],[8.91548915489156,3.7525757466592466],[8.922689226892288,3.750887169389358]]],[[[-12.493924939249382,7.568760376594142],[-12.504725047250474,7.560317490244728],[-12.504725047250474,7.5501860266254255],[-12.497524975249746,7.519791635767547],[-12.50112501125011,7.502905863068719],[-12.508325083250838,7.491085822179542],[-12.519125191251902,7.48095435856024],[-12.52632526325263,7.4657571631313004],[-12.52632526325263,7.448871390432473],[-12.519125191251902,7.416788422304705],[-12.519125191251902,7.40327980414564],[-12.533525335253358,7.393148340526338],[-12.547925479254786,7.389771185986575],[-12.565925659256578,7.394836917796226],[-12.573125731257306,7.410034113225166],[-12.555125551255514,7.410034113225166],[-12.569525695256942,7.4353627722734075],[-12.583925839258399,7.460691431321649],[-12.605526055260555,7.479265781290351],[-12.62712627126271,7.486020090369891],[-12.641526415264138,7.487708667639765],[-12.731527315273155,7.511348749418133],[-12.763927639276375,7.528234522116961],[-12.850328503285027,7.540054563006137],[-12.951129511295107,7.568760376594142],[-12.951129511295107,7.575514685673667],[-12.915129151291495,7.583957572023081],[-12.91152911529116,7.597466190182146],[-12.897128971289703,7.610974808341211],[-12.882728827288275,7.616040540150863],[-12.843128431284299,7.622794849230388],[-12.735127351273519,7.622794849230388],[-12.717127171271699,7.6244834265002766],[-12.681126811268115,7.634614890119565],[-12.619926199261982,7.639680621929216],[-12.60192601926019,7.6379920446593275],[-12.580325803258035,7.6295491583099135],[-12.594725947259462,7.612663385611086],[-12.587525875258734,7.607597653801449],[-12.547925479254786,7.609286231071323],[-12.529925299252994,7.604220499261672],[-12.515525155251538,7.594089035642384],[-12.504725047250474,7.582268994753207],[-12.493924939249382,7.568760376594142]]],[[[-23.456034560345586,15.023829023126254],[-23.456034560345586,15.018763291316603],[-23.45243452434525,15.01538613677684],[-23.448834488344886,15.012008982237077],[-23.441634416344158,15.010320404967189],[-23.448834488344886,14.99512320953825],[-23.456034560345586,14.986680323188835],[-23.47763477634777,14.969794550490008],[-23.470434704347042,14.963040241410482],[-23.481234812348106,14.946154468711654],[-23.48483484834847,14.9309572732827],[-23.495634956349562,14.919137232393524],[-23.51003510035099,14.914071500583887],[-23.517235172351718,14.912382923313999],[-23.531635316353146,14.909005768774236],[-23.538835388353874,14.907317191504347],[-23.546035460354602,14.909005768774236],[-23.556835568355666,14.912382923313999],[-23.564035640356394,14.914071500583887],[-23.596435964359642,14.914071500583887],[-23.625236252362527,14.91744865512365],[-23.650436504365047,14.925891541473064],[-23.675636756367567,14.936023005092352],[-23.715237152371515,14.968105973220133],[-23.72963729637297,14.984991745918947],[-23.72963729637297,15.018763291316603],[-23.740437404374035,15.025517600396142],[-23.758437584375827,15.03058333220578],[-23.772837728377283,15.037337641285319],[-23.772837728377283,15.04240337309497],[-23.78003780037801,15.064354877603435],[-23.783637836378347,15.067732032143212],[-23.78723787237871,15.072797763952849],[-23.790837908379075,15.0778634957625],[-23.790837908379075,15.086306382111914],[-23.790837908379075,15.09306069119144],[-23.776437764377647,15.118389350239681],[-23.772837728377283,15.126832236589095],[-23.772837728377283,15.14034085474816],[-23.78723787237871,15.174112400145816],[-23.776437764377647,15.177489554685579],[-23.76923769237692,15.184243863765118],[-23.765637656376555,15.194375327384407],[-23.765637656376555,15.206195368273583],[-23.76203762037619,15.216326831892886],[-23.758437584375827,15.223081140972411],[-23.75483754837549,15.228146872782062],[-23.751237512375127,15.233212604591714],[-23.75483754837549,15.250098377290541],[-23.76203762037619,15.270361304529132],[-23.772837728377283,15.285558499958071],[-23.78723787237871,15.292312809037611],[-23.78003780037801,15.294001386307485],[-23.758437584375827,15.304132849926788],[-23.772837728377283,15.310887159006313],[-23.78003780037801,15.310887159006313],[-23.751237512375127,15.332838663514792],[-23.7440374403744,15.332838663514792],[-23.7440374403744,15.324395777165378],[-23.740437404374035,15.321018622625616],[-23.740437404374035,15.317641468085839],[-23.73683736837367,15.310887159006313],[-23.71883718837188,15.32270719989549],[-23.70443704437045,15.314264313546076],[-23.697236972369723,15.295689963577374],[-23.71163711637115,15.283869922688197],[-23.697236972369723,15.26529557271948],[-23.682836828368266,15.255164109100178],[-23.646836468364683,15.236589759131476],[-23.657636576365746,15.22983545005195],[-23.639636396363954,15.226458295512174],[-23.62883628836289,15.219703986432648],[-23.614436144361434,15.194375327384407],[-23.58563585635855,15.16229235925664],[-23.56763567635676,15.152160895637337],[-23.55323553235533,15.153849472907226],[-23.549635496354966,15.148783741097574],[-23.546035460354602,15.145406586557812],[-23.546035460354602,15.143718009287923],[-23.538835388353874,15.14034085474816],[-23.542435424354238,15.138652277478286],[-23.53523535235351,15.133586545668635],[-23.52803528035281,15.126832236589095],[-23.524435244352446,15.126832236589095],[-23.513635136351354,15.128520813858984],[-23.51003510035099,15.126832236589095],[-23.51003510035099,15.123455082049333],[-23.513635136351354,15.116700772969807],[-23.51003510035099,15.113323618430044],[-23.470434704347042,15.037337641285319],[-23.466834668346678,15.033960486745556],[-23.463234632346314,15.033960486745556],[-23.45963459634595,15.03058333220578],[-23.456034560345586,15.023829023126254]]],[[[-25.047250472504714,17.034924551556543],[-25.054450544505443,17.024793087937255],[-25.115651156511547,16.997775851619124],[-25.14445144451443,16.97075861530101],[-25.16245162451625,16.945429956252767],[-25.18765187651877,16.92854418355394],[-25.230852308523083,16.923478451744288],[-25.27045270452703,16.923478451744288],[-25.281252812528123,16.920101297204525],[-25.28845288452885,16.916724142664762],[-25.299252992529915,16.916724142664762],[-25.310053100531007,16.92685560628405],[-25.31365313653137,16.93867564717324],[-25.31365313653137,17.004530160698664],[-25.3280532805328,17.028170242477017],[-25.331653316533163,17.03154739701678],[-25.349653496534955,17.034924551556543],[-25.35325353253532,17.03830170609632],[-25.360453604536048,17.055187478795148],[-25.356853568535684,17.070384674224087],[-25.331653316533163,17.097401910542203],[-25.317253172531707,17.105844796891617],[-25.30285302853028,17.107533374161505],[-25.28845288452885,17.107533374161505],[-25.281252812528123,17.107533374161505],[-25.27045270452703,17.11428768324103],[-25.24525245252451,17.13623918774951],[-25.22725227252272,17.144682074098924],[-25.2020520205202,17.15819069225799],[-25.180451804518043,17.164945001337514],[-25.11925119251191,17.19365081492552],[-25.10125101251012,17.19702796946528],[-25.090450904509026,17.19365081492552],[-25.079650796507963,17.185207928576105],[-25.054450544505443,17.186896505845993],[-25.040050400503986,17.181830774036342],[-25.029250292502923,17.175076464956817],[-25.02565025650256,17.168322155877277],[-25.02565025650256,17.144682074098924],[-25.022050220502194,17.139616342289273],[-24.996849968499674,17.134550610479636],[-24.99324993249931,17.13117345593986],[-24.989649896498946,17.12610772413022],[-24.97524975249752,17.11428768324103],[-24.971649716497154,17.107533374161505],[-24.971649716497154,17.097401910542203],[-24.978849788497882,17.087270446922915],[-25.014850148501466,17.048433169715608],[-25.01845018450183,17.048433169715608],[-25.02565025650256,17.045056015175845],[-25.04365043650435,17.03830170609632],[-25.047250472504714,17.034924551556543]]],[[[-15.39195391953919,28.03093973303268],[-15.384753847538462,28.024185423953156],[-15.36675366753667,28.015742537603742],[-15.363153631536306,28.008988228524203],[-15.36675366753667,27.993791033095263],[-15.373953739537399,27.975216683126547],[-15.377553775537763,27.958330910427733],[-15.363153631536306,27.941445137728905],[-15.363153631536306,27.934690828649366],[-15.373953739537399,27.929625096839715],[-15.381153811538098,27.9211822104903],[-15.39195391953919,27.899230705981836],[-15.381153811538098,27.88572208782277],[-15.377553775537763,27.867147737854054],[-15.377553775537763,27.851950542425115],[-15.395553955539555,27.84519623334559],[-15.406354063540618,27.83844192426605],[-15.438754387543867,27.80298180159852],[-15.453154531545323,27.791161760709343],[-15.525155251552519,27.770898833470753],[-15.535955359553583,27.7658331016611],[-15.539555395553947,27.7658331016611],[-15.564755647556467,27.73881586534297],[-15.579155791557923,27.733750133533334],[-15.589955899558987,27.73881586534297],[-15.597155971559715,27.74557017442251],[-15.607956079560779,27.750635906232148],[-15.65115651156512,27.752324483502036],[-15.669156691566911,27.757390215311688],[-15.687156871568703,27.764144524391213],[-15.741157411574108,27.804670378868394],[-15.748357483574836,27.814801842487697],[-15.7519575195752,27.821556151567222],[-15.773557735577356,27.831687615186524],[-15.780757807578084,27.83844192426605],[-15.78435784357842,27.8435076560757],[-15.816758167581668,27.90091928325171],[-15.820358203582032,27.9211822104903],[-15.816758167581668,27.941445137728905],[-15.820358203582032,27.953265178618082],[-15.820358203582032,27.96846237404702],[-15.820358203582032,27.98365956947596],[-15.816758167581668,27.99547961036515],[-15.805958059580604,28.00561107398444],[-15.766357663576628,28.024185423953156],[-15.748357483574836,28.036005464842333],[-15.72675726757268,28.056268392080923],[-15.70875708757086,28.081597051129165],[-15.712357123571223,28.10523713290752],[-15.70155701557016,28.11536859652682],[-15.697956979569796,28.13225436922565],[-15.70155701557016,28.15251729646424],[-15.705157051570524,28.16771449189318],[-15.694356943569431,28.16771449189318],[-15.68355683556834,28.16771449189318],[-15.672756727567275,28.166025914623305],[-15.665556655566547,28.160960182813653],[-15.65115651156512,28.164337337353416],[-15.597155971559715,28.147451564654588],[-15.521555215552155,28.147451564654588],[-15.460354603546023,28.133942946495523],[-15.435154351543503,28.140697255575063],[-15.438754387543867,28.17446880097272],[-15.409954099540982,28.179534532782355],[-15.406354063540618,28.17784595551248],[-15.399153991539919,28.164337337353416],[-15.399153991539919,28.15758302827389],[-15.409954099540982,28.154205873734114],[-15.41715417154171,28.140697255575063],[-15.413554135541347,28.113680019256932],[-15.409954099540982,28.07484274204964],[-15.406354063540618,28.0680884329701],[-15.402754027540283,28.056268392080923],[-15.399153991539919,28.04275977392186],[-15.39195391953919,28.03093973303268]]],[[[-16.428764287642878,28.149140141924477],[-16.43956439564394,28.13225436922565],[-16.457564575645762,28.11536859652682],[-16.52236522365223,28.057956969350812],[-16.536765367653658,28.036005464842333],[-16.54756547565475,28.024185423953156],[-16.579965799657998,28.03093973303268],[-16.633966339663402,28.01236538306398],[-16.659166591665922,28.003922496714566],[-16.677166771667714,27.997168187635026],[-16.691566915669142,28.00054534217479],[-16.702367023670234,28.014053960333854],[-16.7059670596706,28.022496846683268],[-16.702367023670234,28.034316887572444],[-16.713167131671298,28.037694042112207],[-16.720367203672026,28.044448351191747],[-16.72396723967239,28.05289123754116],[-16.727567275672754,28.071465587509863],[-16.727567275672754,28.078219896589403],[-16.741967419674182,28.093417092018342],[-16.78156781567816,28.127188637415998],[-16.78876788767886,28.144074410114825],[-16.795967959679587,28.166025914623305],[-16.810368103681043,28.181223110052244],[-16.828368283682835,28.196420305481183],[-16.835568355683563,28.20824034637036],[-16.842768427684263,28.253831932657192],[-16.846368463684627,28.262274819006606],[-16.860768607686083,28.28253774624521],[-16.87516875168751,28.304489250753676],[-16.90756907569076,28.33488364161157],[-16.91476914769146,28.35514656885016],[-16.893168931689303,28.368655187009225],[-16.8391683916839,28.390606691517704],[-16.817568175681743,28.383852382438164],[-16.795967959679587,28.368655187009225],[-16.78156781567816,28.365278032469462],[-16.770767707677066,28.366966609739336],[-16.741967419674182,28.373720918818876],[-16.720367203672026,28.383852382438164],[-16.687966879668778,28.392295268787578],[-16.662766627666258,28.40073815513699],[-16.644766447664466,28.39567242332734],[-16.605166051660518,28.399049577867117],[-16.583565835658362,28.40073815513699],[-16.565565655656542,28.41593535056593],[-16.54036540365402,28.41762392783582],[-16.529565295652958,28.42268965964547],[-16.507965079650802,28.424378236915345],[-16.486364863648618,28.43788685507441],[-16.43956439564394,28.47503555501183],[-16.42156421564215,28.490232750440782],[-16.41436414364142,28.498675636790196],[-16.410764107641057,28.513872832219135],[-16.40716407164072,28.52062714129866],[-16.3891638916389,28.529070027648075],[-16.3819638196382,28.534135759457726],[-16.36396363963638,28.54257864580714],[-16.342363423634225,28.545955800346903],[-16.324363243632433,28.552710109426442],[-16.317163171631705,28.571284459395144],[-16.299162991629913,28.566218727585493],[-16.201962019620197,28.56453015031562],[-16.140761407614065,28.58310450028432],[-16.11916119161191,28.571284459395144],[-16.126361263612637,28.54426722307703],[-16.158761587615857,28.524004295838424],[-16.23076230762308,28.488544173170894],[-16.248762487624873,28.461526936852778],[-16.27036270362703,28.44295258688406],[-16.29556295562955,28.41762392783582],[-16.324363243632433,28.39736100059723],[-16.342363423634225,28.390606691517704],[-16.35676356763568,28.3804752278984],[-16.367563675636745,28.361900877929685],[-16.367563675636745,28.341637950691094],[-16.360363603636017,28.324752177992266],[-16.35676356763568,28.31462071437298],[-16.360363603636017,28.304489250753676],[-16.37116371163711,28.29773494167415],[-16.378363783637838,28.287603478054848],[-16.385563855638537,28.265651973546383],[-16.417964179641785,28.211617500910137],[-16.428764287642878,28.16771449189318],[-16.428764287642878,28.149140141924477]]],[[[-13.973539735397338,28.735076454573772],[-13.93393933939339,28.75027365000271],[-13.897938979389778,28.753650804542474],[-13.865538655386558,28.743519340923186],[-13.836738367383674,28.71481352733518],[-13.825938259382582,28.681041981937526],[-13.822338223382218,28.637138972920567],[-13.829538295382946,28.551021532156554],[-13.836738367383674,28.530758604917963],[-13.851138511385102,28.491921327710656],[-13.85833858338583,28.47841270955159],[-13.85833858338583,28.446329741423824],[-13.85833858338583,28.434509700534647],[-13.854738547385466,28.427755391455122],[-13.843938439384374,28.414246773296057],[-13.843938439384374,28.40749246421653],[-13.847538475384738,28.39736100059723],[-13.865538655386558,28.38216380516829],[-13.869138691386894,28.37709807335864],[-13.869138691386894,28.366966609739336],[-13.872738727387258,28.358523723389922],[-13.876338763387622,28.348392259770634],[-13.890738907389078,28.328129332532043],[-13.901539015390142,28.311243559833215],[-13.912339123391234,28.27747201443556],[-13.93393933939339,28.243700469037904],[-13.966339663396639,28.228503273608965],[-14.074340743407419,28.21330607818001],[-14.117541175411759,28.199797460020946],[-14.153541535415343,28.179534532782355],[-14.19314193141932,28.17109164643294],[-14.211142111421111,28.160960182813653],[-14.24354243542436,28.128877214685886],[-14.272342723427215,28.096794246558105],[-14.3011430114301,28.0680884329701],[-14.34434344343444,28.051202660271272],[-14.36954369543696,28.051202660271272],[-14.409144091440908,28.066399855700226],[-14.4271442714427,28.071465587509863],[-14.49554495544956,28.0680884329701],[-14.506345063450624,28.071465587509863],[-14.50274502745026,28.07484274204964],[-14.499144991449896,28.086662782938816],[-14.49554495544956,28.098482823827993],[-14.49554495544956,28.101859978367756],[-14.488344883448832,28.103548555637644],[-14.455944559445584,28.098482823827993],[-14.434344343443428,28.100171401097867],[-14.398343983439815,28.11199144198706],[-14.340743407434076,28.133942946495523],[-14.26874268742688,28.176157378242593],[-14.239942399423995,28.201486037290834],[-14.225542255422539,28.218371809989662],[-14.214742147421475,28.23525758268849],[-14.207542075420747,28.253831932657192],[-14.200342003420019,28.304489250753676],[-14.19314193141932,28.321375023452504],[-14.171541715417135,28.351769414310397],[-14.146341463414615,28.42268965964547],[-14.139141391413915,28.434509700534647],[-14.128341283412823,28.44295258688406],[-14.099540995409939,28.486855595901005],[-14.074340743407419,28.535824336727615],[-14.03474034740347,28.588170232093972],[-14.023940239402378,28.637138972920567],[-14.00954009540095,28.66753336377846],[-14.005940059400587,28.70299348644599],[-13.998739987399858,28.716502104605055],[-13.987939879398795,28.726633568224358],[-13.973539735397338,28.735076454573772]]],[[[-17.757177571775713,28.817816740798023],[-17.757177571775713,28.799242390829306],[-17.749977499774985,28.775602309050953],[-17.742777427774286,28.758716536352125],[-17.7211772117721,28.748585072732823],[-17.7211772117721,28.73001072276412],[-17.749977499774985,28.699616331906228],[-17.76437764377644,28.677664827397763],[-17.757177571775713,28.657401900159158],[-17.74637746377462,28.621941777491628],[-17.75357753577535,28.60336742752291],[-17.760777607776078,28.576350191204796],[-17.782377823778234,28.549332954886665],[-17.80397803978039,28.508807100409484],[-17.82197821978218,28.47503555501183],[-17.82917829178291,28.454772627773238],[-17.836378363783638,28.454772627773238],[-17.843578435784366,28.46490409139254],[-17.865178651786522,28.47503555501183],[-17.87237872378722,28.493609904980545],[-17.87957879578795,28.54426722307703],[-17.890378903789042,28.556087263966205],[-17.89757897578974,28.571284459395144],[-17.919179191791926,28.596613118443386],[-17.926379263792626,28.618564622951865],[-17.962379623796238,28.670910518318223],[-17.965979659796602,28.696239177366465],[-17.973179731797302,28.713124950065293],[-17.976779767797666,28.728322145494232],[-17.991179911799122,28.738453609113535],[-18.001980019800186,28.75027365000271],[-17.998379983799822,28.780668040860604],[-17.969579695796966,28.81275100898837],[-17.937179371793718,28.8397682453065],[-17.911979119791198,28.85496544073544],[-17.890378903789042,28.843145399846264],[-17.865178651786522,28.841456822576376],[-17.839978399784002,28.83470251349685],[-17.800378003780025,28.84989970892579],[-17.782377823778234,28.841456822576376],[-17.76437764377644,28.8296367816872],[-17.757177571775713,28.817816740798023]]],[[[-13.483934839348393,29.23996105826869],[-13.465934659346601,29.243338212808467],[-13.44793447934478,29.233206749189165],[-13.419134191341897,29.20956666741081],[-13.426334263342625,29.189303740172207],[-13.429934299342989,29.172417967473393],[-13.437134371343717,29.158909349314328],[-13.458734587345873,29.14708930842515],[-13.462334623346237,29.131892112996198],[-13.458734587345873,29.118383494837147],[-13.455134551345509,29.104874876678082],[-13.451534515345145,29.086300526709365],[-13.455134551345509,29.07954621762984],[-13.462334623346237,29.066037599470775],[-13.465934659346601,29.05759471312136],[-13.465934659346601,29.049151826771947],[-13.465934659346601,29.03226605407312],[-13.465934659346601,29.023823167723705],[-13.480334803348029,29.000183085945352],[-13.509135091350913,28.978231581436873],[-13.541535415354161,28.961345808738045],[-13.588335883358837,28.951214345118757],[-13.599135991359901,28.942771458769343],[-13.60633606336063,28.93263999515004],[-13.620736207362057,28.92757426334039],[-13.635136351363514,28.92757426334039],[-13.65673656736567,28.922508531530752],[-13.674736747367461,28.920819954260864],[-13.710737107371074,28.91406564518134],[-13.735937359373594,28.89717987248251],[-13.75753757537575,28.87016263616438],[-13.775537755377542,28.8397682453065],[-13.779137791377906,28.8397682453065],[-13.789937899378998,28.853276863465553],[-13.811538115381154,28.858342595275204],[-13.85833858338583,28.860031172545092],[-13.865538655386558,28.86509690435473],[-13.872738727387258,28.87691694524392],[-13.876338763387622,28.888736986133097],[-13.872738727387258,28.893802717942748],[-13.861938619386194,28.89717987248251],[-13.854738547385466,28.905622758831925],[-13.843938439384374,28.920819954260864],[-13.840338403384038,28.937705726959692],[-13.836738367383674,28.986674467786287],[-13.83313833138331,29.000183085945352],[-13.797137971379698,29.047463249502073],[-13.779137791377906,29.0643490222009],[-13.768337683376842,29.07448048582019],[-13.750337503375022,29.081234794899714],[-13.73233732337323,29.08461194943949],[-13.70713707137071,29.086300526709365],[-13.689136891368918,29.091366258519017],[-13.65673656736567,29.11669491756726],[-13.635136351363514,29.12682638118656],[-13.617136171361722,29.131892112996198],[-13.602736027360265,29.133580690266086],[-13.552335523355225,29.133580690266086],[-13.537935379353797,29.138646422075738],[-13.527135271352705,29.150466462964914],[-13.512735127351277,29.174106544743267],[-13.501935019350185,29.207878090140923],[-13.494734947349457,29.22476386283975],[-13.483934839348393,29.23996105826869]]],[[[-16.78876788767886,32.68634726609929],[-16.80676806768068,32.65764145251127],[-16.846368463684627,32.64413283435222],[-16.896768967689667,32.64075567981244],[-16.97596975969759,32.64750998889198],[-17.14157141571414,32.70492161606799],[-17.181171811718116,32.72518454330658],[-17.213572135721364,32.750513202354824],[-17.24237242372422,32.77921901594283],[-17.249572495724948,32.79610478864166],[-17.253172531725312,32.81467913861037],[-17.245972459724584,32.828187756769424],[-17.231572315723156,32.83494206584896],[-17.224372243722428,32.840007797658615],[-17.199171991719908,32.86871361124662],[-17.19197191971918,32.87209076578638],[-17.18477184771848,32.873779343056256],[-17.17757177571775,32.87209076578638],[-17.16677166771666,32.86871361124662],[-17.155971559715596,32.86195930216708],[-17.130771307713076,32.838319220388726],[-17.119971199711983,32.83494206584896],[-17.11637116371162,32.833253488579075],[-17.094770947709463,32.828187756769424],[-17.069570695706943,32.81467913861037],[-17.04077040770406,32.812990561340484],[-17.01557015570154,32.81636771588025],[-16.993969939699383,32.828187756769424],[-16.979569795697955,32.833253488579075],[-16.9579695796958,32.838319220388726],[-16.918369183691823,32.84169637492849],[-16.903969039690395,32.83663064311884],[-16.871568715687147,32.818056293150136],[-16.860768607686083,32.812990561340484],[-16.810368103681043,32.77921901594283],[-16.795967959679587,32.77415328413318],[-16.785167851678523,32.7724647068633],[-16.74916749167491,32.770776129593415],[-16.73116731167312,32.76739897505365],[-16.713167131671298,32.75895608870424],[-16.702367023670234,32.76402182051389],[-16.691566915669142,32.76739897505365],[-16.68076680766808,32.76402182051389],[-16.67356673566735,32.75895608870424],[-16.691566915669142,32.755578934164475],[-16.72396723967239,32.740381738735536],[-16.73836738367382,32.73869316146565],[-16.74916749167491,32.730250275116234],[-16.78156781567816,32.69647872971858],[-16.78876788767886,32.68634726609929]]],[[[28.240482404824064,36.433300227968985],[28.226082260822608,36.418103032540046],[28.2368823688237,36.37251144625321],[28.215282152821544,36.3640685599038],[28.21168211682118,36.357314250824274],[28.204482044820452,36.32185412815673],[28.197281972819724,36.31172266453744],[28.175681756817568,36.28977116002896],[28.172081720817204,36.277951119139786],[28.168481684816868,36.24924530555178],[28.164881648816504,36.237425264662605],[28.15408154081541,36.23235953285295],[28.146881468814684,36.225605223773414],[28.13608136081362,36.195210832915535],[28.12888128881289,36.18507936929623],[28.12888128881289,36.18676794656612],[28.1108811088111,36.18676794656612],[28.10368103681037,36.18507936929623],[28.100081000810007,36.18170221475647],[28.100081000810007,36.174947905676945],[28.096480964809643,36.168193596597405],[28.08568085680858,36.16481644205764],[28.06048060480606,36.11584770123105],[28.071280712807123,36.110781969421396],[28.07848078480785,36.10740481488163],[28.08568085680858,36.105716237611745],[28.096480964809643,36.10402766034187],[28.092880928809308,36.09558477399246],[28.089280892808944,36.08883046491292],[28.082080820808216,36.08207615583339],[28.074880748807487,36.07532184675385],[28.07848078480785,36.07194469221409],[28.089280892808944,36.05505891951526],[28.038880388803904,36.068567537674326],[28.017280172801748,36.068567537674326],[27.992079920799227,36.0618132285948],[27.948879488794887,36.03817314681643],[27.930879308793095,36.02466452865738],[27.891278912789147,35.97231863329101],[27.862478624786263,35.94023566516324],[27.82647826478265,35.91321842884511],[27.779677796777975,35.88957834706676],[27.740077400774027,35.91321842884511],[27.7328773287733,35.914907006115],[27.729277292772935,35.92166131519453],[27.711277112771143,35.95205570605242],[27.72567725677257,35.96725290148136],[27.754477544775455,36.03648456954656],[27.761677616776183,36.0618132285948],[27.75807758077582,36.083764733103266],[27.747277472774726,36.09558477399246],[27.7328773287733,36.10402766034187],[27.70767707677078,36.127667742120224],[27.70767707677078,36.132733473929875],[27.714877148771507,36.1394877830094],[27.711277112771143,36.14455351481905],[27.704077040770414,36.1496192466287],[27.696876968769686,36.1496192466287],[27.689676896768987,36.1496192466287],[27.68247682476826,36.15806213297812],[27.70047700477005,36.163127864787754],[27.740077400774027,36.18507936929623],[27.761677616776183,36.19183367837576],[27.772477724777247,36.1985879874553],[27.768877688776882,36.20534229653482],[27.77607776077761,36.21209660561436],[27.779677796777975,36.217162337424],[27.779677796777975,36.22391664650354],[27.779677796777975,36.23235953285295],[27.786877868778703,36.245868151012004],[27.794077940779403,36.25431103736142],[27.804878048780495,36.26950823279037],[27.80847808478086,36.27457396460002],[27.837278372783743,36.28132827367955],[27.840878408784107,36.28470542821931],[27.848078480784807,36.293148314568725],[27.88407884078842,36.32185412815673],[27.891278912789147,36.33198559177603],[27.898478984789847,36.340428478125446],[27.95967959679598,36.357314250824274],[28.071280712807123,36.40459441438098],[28.08568085680858,36.41472587800028],[28.118081180811828,36.42823449615935],[28.182881828818296,36.42485734161957],[28.215282152821544,36.455251732477464],[28.222482224822244,36.455251732477464],[28.229682296822972,36.45018600066781],[28.240482404824064,36.438365959778636],[28.240482404824064,36.433300227968985]]],[[[-25.198451984519835,37.86521375282952],[-25.158851588515887,37.85170513467045],[-25.133651336513367,37.82299932108245],[-25.133651336513367,37.78585062114503],[-25.155251552515523,37.75376765301726],[-25.19485194851947,37.7402590348582],[-25.3280532805328,37.72675041669913],[-25.37125371253711,37.716618953079845],[-25.42165421654215,37.71324179854008],[-25.464854648546492,37.714930375809956],[-25.490054900549012,37.71324179854008],[-25.50445504455044,37.70648748946054],[-25.533255332553324,37.71999610761961],[-25.558455584555844,37.72843899396902],[-25.616056160561612,37.7402590348582],[-25.702457024570236,37.74363618939796],[-25.824858248582473,37.81624501200292],[-25.860858608586085,37.85339371194034],[-25.842858428584293,37.9057396073067],[-25.76365763657637,37.91080533911635],[-25.73845738457385,37.9057396073067],[-25.702457024570236,37.882099525528346],[-25.698856988569872,37.87365663917893],[-25.698856988569872,37.861836598289756],[-25.69525695256951,37.85339371194034],[-25.68805688056881,37.846639402860816],[-25.68085680856808,37.84326224832104],[-25.55485554855548,37.82975363016199],[-25.540455404554052,37.83313078470175],[-25.511655116551168,37.846639402860816],[-25.49725497254971,37.85001655740058],[-25.490054900549012,37.84832798013069],[-25.468454684546828,37.834819361971626],[-25.457654576545764,37.82975363016199],[-25.443254432544308,37.836507939241514],[-25.33885338853389,37.861836598289756],[-25.198451984519835,37.86521375282952]]],[[[20.734407344073446,38.0627772934058],[20.72000720007202,38.066154447945564],[20.705607056070562,38.07628591156485],[20.680406804068042,38.09823741607333],[20.651606516065158,38.1117460342324],[20.615606156061574,38.12018892058181],[20.57960579605796,38.11512318877216],[20.565205652056534,38.08979452972392],[20.547205472054713,38.101614570613094],[20.51120511205113,38.11005745696251],[20.4968049680497,38.12525465239146],[20.493204932049338,38.13369753874086],[20.489604896048974,38.15227188870958],[20.489604896048974,38.1590261977891],[20.47160471604718,38.18266627956747],[20.468004680046818,38.19279774318676],[20.482404824048245,38.189420588646996],[20.4968049680497,38.17760054775782],[20.51120511205113,38.17253481594817],[20.51120511205113,38.17928912502771],[20.493204932049338,38.191109165916885],[20.482404824048245,38.206306361345824],[20.457204572045725,38.26202941125196],[20.44640446404466,38.27553802941101],[20.43560435604357,38.27891518395079],[20.42840428404284,38.26202941125196],[20.42840428404284,38.24514363855313],[20.43560435604357,38.21306067042535],[20.43560435604357,38.19279774318676],[20.424804248042477,38.17591197048793],[20.414004140041413,38.16746908413852],[20.399603996039957,38.16240335232888],[20.38520385203853,38.15227188870958],[20.381603816038165,38.15227188870958],[20.374403744037437,38.169157661408406],[20.34560345603458,38.18266627956747],[20.338403384033853,38.1995520522663],[20.342003420034217,38.20799493861571],[20.349203492034917,38.218126402235],[20.356403564035645,38.2282578658543],[20.356403564035645,38.23670075220372],[20.35280352803528,38.24514363855313],[20.35280352803528,38.253586524902545],[20.36000360003601,38.25865225671218],[20.367203672036737,38.26202941125196],[20.3780037800378,38.273849452141135],[20.392403924039257,38.30086668845925],[20.399603996039957,38.33294965658703],[20.399603996039957,38.36334404744491],[20.406804068040685,38.34983542928586],[20.406804068040685,38.34308112020632],[20.414004140041413,38.34308112020632],[20.42840428404284,38.36334404744491],[20.43560435604357,38.356589738365386],[20.442804428044298,38.33801538839667],[20.45360453604536,38.32281819296773],[20.464404644046454,38.331261079317144],[20.468004680046818,38.32619534750749],[20.47160471604718,38.31437530661832],[20.47880478804788,38.309309574808665],[20.489604896048974,38.31268672934843],[20.507605076050766,38.32788392477738],[20.52920529205292,38.33801538839667],[20.540005400054014,38.3549011610955],[20.540005400054014,38.373475511064214],[20.52920529205292,38.392049861032916],[20.550805508055078,38.38529555195339],[20.540005400054014,38.419067097351046],[20.53640536405365,38.42582140643057],[20.540005400054014,38.43933002458964],[20.543605436054378,38.44946148820894],[20.543605436054378,38.45959295182823],[20.53640536405365,38.46803583817764],[20.53640536405365,38.47310156998729],[20.572405724057234,38.47310156998729],[20.626406264062638,38.351524006555735],[20.626406264062638,38.34308112020632],[20.626406264062638,38.32788392477738],[20.619206192061938,38.31944103842797],[20.61200612006121,38.31268672934843],[20.597605976059754,38.30255526572914],[20.608406084060846,38.294112379379726],[20.630006300063002,38.25865225671218],[20.644406444064458,38.253586524902545],[20.655206552065522,38.26202941125196],[20.669606696066978,38.27553802941101],[20.680406804068042,38.28229233849055],[20.680406804068042,38.27891518395079],[20.676806768067678,38.27216087487125],[20.673206732067314,38.267095143061596],[20.6948069480695,38.26540656579172],[20.698406984069834,38.253586524902545],[20.702007020070198,38.24007790674348],[20.709207092070926,38.226569288584415],[20.752407524075238,38.19617489772652],[20.76320763207633,38.170846238678294],[20.799207992079914,38.13200896147099],[20.806408064080642,38.11512318877216],[20.806408064080642,38.09992599334322],[20.806408064080642,38.08304022064439],[20.79560795607958,38.066154447945564],[20.78840788407885,38.064465870675676],[20.76320763207633,38.06953160248533],[20.756007560075602,38.06953160248533],[20.74520745207454,38.064465870675676],[20.734407344073446,38.0627772934058]]],[[[26.163261632616326,38.54233323805248],[26.152461524615262,38.5305131971633],[26.148861488614898,38.51025026992471],[26.145261452614534,38.49336449722588],[26.123661236612378,38.48829876541623],[26.130861308613106,38.478167301796944],[26.13446134461344,38.476478724527055],[26.14166141661417,38.47310156998729],[26.138061380613806,38.46803583817764],[26.152461524615262,38.46803583817764],[26.156061560615626,38.461281529098116],[26.14166141661417,38.44608433366916],[26.138061380613806,38.43088713824022],[26.138061380613806,38.419067097351046],[26.148861488614898,38.34308112020632],[26.163261632616326,38.30255526572914],[26.138061380613806,38.29917811118938],[26.112861128611286,38.283980915760424],[26.102061020610222,38.26202941125196],[26.112861128611286,38.23670075220372],[26.112861128611286,38.22319213404465],[26.087660876608766,38.21306067042535],[26.04086040860409,38.1995520522663],[26.03366033660336,38.189420588646996],[26.02646026460266,38.16746908413852],[26.019260192601934,38.1590261977891],[26.00846008460084,38.15733762051923],[25.99045990459905,38.164091929598754],[25.97605976059762,38.16578050686864],[25.96525965259653,38.17253481594817],[25.943659436594373,38.19448632045665],[25.936459364593645,38.19617489772652],[25.93285932859328,38.19617489772652],[25.92565925659258,38.20292920680606],[25.91485914859149,38.21474924769524],[25.911259112591125,38.226569288584415],[25.904059040590425,38.22488071131454],[25.893258932589333,38.22319213404465],[25.88965889658897,38.21981497950489],[25.88965889658897,38.2282578658543],[25.88965889658897,38.241766484013354],[25.88965889658897,38.248520793092894],[25.871658716587177,38.24007790674348],[25.86445864458645,38.24514363855313],[25.868058680586813,38.26034083398207],[25.87525875258754,38.27553802941101],[25.886058860588605,38.28229233849055],[25.90045900459006,38.28566949303031],[25.918459184591853,38.289046647570075],[25.922059220592217,38.29242380210984],[25.93285932859328,38.30255526572914],[25.9580595805958,38.30086668845925],[25.96525965259653,38.30255526572914],[25.972459724597257,38.31437530661832],[25.972459724597257,38.32619534750749],[25.97605976059762,38.33801538839667],[25.99045990459905,38.34308112020632],[25.986859868598685,38.3549011610955],[25.99045990459905,38.378541242873865],[25.986859868598685,38.392049861032916],[25.98325983259832,38.38867270649315],[25.98325983259832,38.38698412922328],[25.979659796597986,38.38529555195339],[25.972459724597257,38.392049861032916],[25.968859688596893,38.398804170112456],[25.9580595805958,38.40218132465222],[25.9508595085951,38.40555847919198],[25.9580595805958,38.414001365541395],[25.954459544595466,38.42750998370046],[25.9508595085951,38.4427071791294],[25.943659436594373,38.4528386427487],[25.93285932859328,38.46297010636799],[25.922059220592217,38.46634726090775],[25.90765907659076,38.46803583817764],[25.88965889658897,38.47310156998729],[25.87525875258754,38.48323303360658],[25.842858428584293,38.51531600173436],[25.835658356583565,38.52882461989341],[25.8320583205832,38.54402181532237],[25.83925839258393,38.55584185621154],[25.846458464584657,38.565973319830846],[25.85005850058502,38.581170515259785],[25.994059940599413,38.60481059703814],[26.01566015660157,38.601433442498376],[26.062460624606246,38.5896134016092],[26.06606066060661,38.58285909252966],[26.10926109261092,38.54233323805248],[26.10926109261092,38.54739896986213],[26.112861128611286,38.55246470167178],[26.11646116461165,38.55584185621154],[26.123661236612378,38.55584185621154],[26.123661236612378,38.560907588021195],[26.120061200612014,38.56259616529107],[26.11646116461165,38.56259616529107],[26.130861308613106,38.56766189710072],[26.145261452614534,38.56428474256096],[26.156061560615626,38.55584185621154],[26.163261632616326,38.54233323805248]]],[[[3.353433534335352,39.78512610868614],[3.382233822338236,39.77837179960662],[3.439834398343976,39.75135456328849],[3.475834758347588,39.74966598601861],[3.46863468634686,39.73953452239931],[3.46863468634686,39.7310916360499],[3.472234722347224,39.72433732697037],[3.475834758347588,39.71589444062096],[3.472234722347224,39.710828708811306],[3.465034650346496,39.705762977001655],[3.4614346143461603,39.70069724519202],[3.46863468634686,39.68718862703295],[3.454234542345432,39.66017139071482],[3.44343443434434,39.64497419528588],[3.429034290342912,39.63990846347623],[3.414634146341456,39.63484273166658],[3.400234002340028,39.623022690777404],[3.400234002340028,39.607825495348465],[3.407434074340756,39.592628299919525],[3.364233642336444,39.56223390906163],[3.3246332463324677,39.523396631854325],[3.2922329223292195,39.47611646829762],[3.2814328143281557,39.420393418391484],[3.2742327423274276,39.425459150201135],[3.2670326703266994,39.42714772747101],[3.2526325263252716,39.38662187299383],[3.2202322023220233,39.35960463667571],[3.1302313023130353,39.315701627658754],[3.090630906309059,39.29037296861051],[3.083430834308359,39.280241504991224],[3.079830798307995,39.27686435045146],[3.069030690306903,39.27179861864181],[3.061830618306203,39.26842146410205],[3.058230582305839,39.273487195911684],[3.029430294302955,39.30388158676958],[3.022230222302227,39.30894731857923],[3.007830078300799,39.31401305038888],[3.000630006300071,39.31739020492864],[2.9970299702997067,39.32752166854793],[2.9934299342993427,39.33765313216723],[2.9898298982989786,39.347784595786536],[2.982629826298279,39.3511617503263],[2.9754297542975507,39.35285032759617],[2.957429574295759,39.362981791215475],[2.9502295022950307,39.36467036848535],[2.9394293942939385,39.36467036848535],[2.9214292142921465,39.35960463667571],[2.9142291422914184,39.357916059405824],[2.8242282422824303,39.362981791215475],[2.788227882278818,39.37649040937454],[2.763027630276298,39.40013049115289],[2.752227522275234,39.45416496378914],[2.737827378273778,39.46260785013855],[2.737827378273778,39.47780504556749],[2.755827558275598,39.503133704615735],[2.745027450274506,39.523396631854325],[2.716227162271622,39.543659559092916],[2.680226802268038,39.55885675452187],[2.655026550265518,39.56392248633152],[2.633426334263362,39.55885675452187],[2.5686256862568655,39.53183951820374],[2.5542255422554376,39.52001947731456],[2.5434254342543454,39.49300224099645],[2.5218252182521894,39.47273931375784],[2.4930249302493053,39.47105073648797],[2.4750247502475133,39.49637939553621],[2.4714247142471493,39.49806797280608],[2.467824678246785,39.5065108591555],[2.4714247142471493,39.51157659096515],[2.4822248222482415,39.5166423227748],[2.4534245342453573,39.53690525001339],[2.446224462244629,39.52846236366398],[2.439024390243901,39.525085209124214],[2.4318243182432013,39.52846236366398],[2.424624246242473,39.53690525001339],[2.399423994239953,39.525085209124214],[2.392223922239225,39.523396631854325],[2.381423814238161,39.52846236366398],[2.374223742237433,39.54703671363269],[2.356223562235641,39.55885675452187],[2.349023490234913,39.5757425272207],[2.352623526235277,39.59600545445929],[2.356223562235641,39.61120264988823],[2.4282242822428373,39.64666277255577],[2.4498244982449933,39.650039927095534],[2.467824678246785,39.66017139071482],[2.5182251822518253,39.70069724519202],[2.5326253262532816,39.705762977001655],[2.5506255062550736,39.70914013154143],[2.5686256862568655,39.712517286081194],[2.5866258662586574,39.72433732697037],[2.6190261902619056,39.74966598601861],[2.6226262262622697,39.754731717828264],[2.629826298262998,39.76655175871744],[2.629826298262998,39.7699289132572],[2.6370263702636976,39.77161749052709],[2.64782647826479,39.7699289132572],[2.651426514265154,39.7699289132572],[2.676626766267674,39.78850326322592],[2.680226802268038,39.79356899503556],[2.683826838268402,39.79694614957532],[2.705427054270558,39.81383192227415],[2.709027090270922,39.8188976540838],[2.716227162271622,39.82058623135369],[2.74862748627487,39.832406272242864],[2.763027630276298,39.84084915859228],[2.77382773827739,39.84929204494169],[2.7846278462784824,39.85604635402122],[2.7990279902799102,39.85942350856098],[2.8026280262802743,39.86111208583087],[2.8098280982810024,39.87124354945017],[2.813428134281338,39.872932126720045],[2.8350283502835225,39.87124354945017],[2.8422284222842222,39.872932126720045],[2.8746287462874704,39.88306359033935],[2.9322293222932387,39.915146558467114],[2.9646296462964585,39.920212290276766],[3.0186301863018628,39.92527802208642],[3.076230762307631,39.935409485705705],[3.1806318063180754,39.96918103110336],[3.191431914319139,39.955672412944296],[3.1986319863198673,39.95904956748407],[3.2022320223202314,39.96073814475395],[3.2130321303213236,39.955672412944296],[3.2022320223202314,39.94891810386477],[3.169831698316983,39.93709806297559],[3.1554315543155553,39.93372090843583],[3.141031410314099,39.92865517662618],[3.126631266312671,39.916835135737],[3.115831158311579,39.90839224938759],[3.105031050310515,39.913457981197226],[3.097830978309787,39.913457981197226],[3.094230942309423,39.88137501306946],[3.1302313023130353,39.87630928125981],[3.2058320583205955,39.893195053958635],[3.2058320583205955,39.88644074487911],[3.1950319503195033,39.88137501306946],[3.1950319503195033,39.87462070398993],[3.1950319503195033,39.86786639491039],[3.191431914319139,39.85942350856098],[3.1878318783188035,39.85435777675134],[3.1806318063180754,39.850980622211566],[3.166231662316619,39.84591489040193],[3.1338313383133993,39.83916058132239],[3.126631266312671,39.832406272242864],[3.126631266312671,39.810454767734385],[3.1374313743137634,39.78850326322592],[3.1626316263162835,39.7699289132572],[3.1950319503195033,39.754731717828264],[3.2238322383223874,39.74966598601861],[3.2922329223292195,39.74966598601861],[3.31023310233104,39.754731717828264],[3.339033390333924,39.77837179960662],[3.353433534335352,39.78512610868614]]],[[[4.3038430384303865,39.92527802208642],[4.307443074430751,39.91008082665746],[4.329043290432907,39.88306359033935],[4.336243362433635,39.86786639491039],[4.329043290432907,39.86786639491039],[4.3254432544325425,39.872932126720045],[4.318243182431843,39.879686435799584],[4.311043110431115,39.88475216760922],[4.3038430384303865,39.888129322149],[4.300243002430022,39.82227480862356],[4.249842498424982,39.817209076813924],[4.177841778417786,39.842537735862166],[4.015840158401602,39.92527802208642],[3.9798397983979896,39.935409485705705],[3.9402394023940417,39.93709806297559],[3.868238682386817,39.92527802208642],[3.8322383223832333,39.935409485705705],[3.8358383583835973,39.94722952659488],[3.8358383583835973,39.962426722023835],[3.8394383943839614,39.975935340182886],[3.850238502385025,39.9843782265323],[3.843038430384297,39.98944395834195],[3.821438214382141,39.9945096901516],[3.8142381423814413,40.00126399923113],[3.803438034380349,40.01308404012032],[3.803438034380349,40.018149771929956],[3.807038070380713,40.02321550373961],[3.8106381063810773,40.035035544628784],[3.821438214382141,40.04685558551796],[3.8898388983890015,40.060364203677025],[3.9150391503915216,40.05192131732761],[4.012240122401238,40.060364203677025],[4.051840518405186,40.05867562640715],[4.062640626406278,40.060364203677025],[4.077040770407706,40.06374135821679],[4.095040950409498,40.075561399105965],[4.10584105841059,40.07893855364574],[4.109441094410954,40.067118512756565],[4.116641166411682,40.060364203677025],[4.138241382413838,40.045167008248086],[4.138241382413838,40.0434784309782],[4.134641346413474,40.035035544628784],[4.134641346413474,40.02828123554926],[4.141841418414202,40.024904081009495],[4.149041490414902,40.02828123554926],[4.15624156241563,40.035035544628784],[4.167041670416722,40.045167008248086],[4.163441634416358,40.060364203677025],[4.170641706417058,40.06542993548668],[4.177841778417786,40.05867562640715],[4.174241742417422,40.045167008248086],[4.177841778417786,40.038412699168546],[4.20664206642067,40.024904081009495],[4.213842138421398,40.01646119466008],[4.2174421744217625,40.01308404012032],[4.228242282422826,40.004641153770905],[4.23184231842319,40.002952576501016],[4.246242462424618,39.999575421961254],[4.253442534425346,39.997886844691365],[4.264242642426439,39.98606680380219],[4.275042750427502,39.96918103110336],[4.271442714427138,39.955672412944296],[4.253442534425346,39.94891810386477],[4.271442714427138,39.94385237205512],[4.285842858428595,39.94385237205512],[4.296642966429658,39.942163794785245],[4.3038430384303865,39.92527802208642]]],[[[-176.4359643596436,51.78753334301237],[-176.43236432364324,51.77740187939307],[-176.42876428764288,51.76895899304367],[-176.4251642516425,51.76051610669424],[-176.41436414364145,51.75545037488459],[-176.42876428764288,51.74194175672554],[-176.4539645396454,51.73012171583636],[-176.4719647196472,51.71999025221706],[-176.489964899649,51.753761797614715],[-176.52236522365223,51.74194175672554],[-176.58716587165873,51.6862187068194],[-176.59436594365943,51.696350170438706],[-176.60156601566015,51.70310447951823],[-176.61236612366125,51.704793056788105],[-176.6231662316623,51.69972732497848],[-176.6159661596616,51.69297301589893],[-176.63036630366304,51.691284438629054],[-176.64116641166413,51.6862187068194],[-176.6519665196652,51.68115297500975],[-176.65916659166592,51.67777582047],[-176.669966699667,51.68115297500975],[-176.68436684366844,51.6862187068194],[-176.6951669516695,51.68790728408928],[-176.70956709567096,51.6862187068194],[-176.72036720367203,51.669332934120575],[-176.7239672396724,51.6575128932314],[-176.72036720367203,51.65244716142175],[-176.70956709567096,51.647381429612096],[-176.7059670596706,51.6389385432627],[-176.7059670596706,51.62711850237352],[-176.70956709567096,51.61698703875422],[-176.75276752767527,51.63724996599282],[-176.77076770767707,51.620364193293995],[-176.78516785167852,51.61360988421444],[-176.79956799567995,51.61023272967469],[-176.8139681396814,51.61529846148434],[-176.82476824768247,51.62542992510362],[-176.82476824768247,51.633872811453045],[-176.80676806768068,51.63724996599282],[-176.80676806768068,51.64569285234222],[-176.8211682116821,51.65920147050127],[-176.82836828368283,51.67439866593023],[-176.82836828368283,51.691284438629054],[-176.8211682116821,51.71323594313753],[-176.82836828368283,51.71999025221706],[-176.89676896768967,51.63724996599282],[-176.9039690396904,51.62711850237352],[-176.91116911169112,51.61360988421444],[-176.91836918369182,51.601789843325264],[-176.92556925569255,51.59672411151561],[-176.95076950769507,51.59165837970599],[-176.96876968769686,51.593346956975864],[-176.97956979569796,51.60010126605539],[-176.9759697596976,51.647381429612096],[-176.96516965169653,51.669332934120575],[-176.9039690396904,51.69972732497848],[-176.88956889568897,51.70985878859776],[-176.88236882368824,51.71999025221706],[-176.87876878768787,51.731810293106236],[-176.88236882368824,51.74700748853519],[-176.86076860768608,51.74869606580506],[-176.85356853568535,51.74700748853519],[-176.85716857168572,51.75207322034484],[-176.86076860768608,51.75545037488459],[-176.8211682116821,51.76895899304367],[-176.8211682116821,51.775713302123194],[-176.8427684276843,51.77402472485332],[-176.86796867968678,51.76895899304367],[-176.88956889568897,51.767270415773766],[-176.90756907569076,51.775713302123194],[-176.9147691476915,51.79259907482202],[-176.9039690396904,51.807796270250975],[-176.8859688596886,51.81961631114015],[-176.86436864368645,51.8229934656799],[-176.85356853568535,51.81792773387025],[-176.84636846368463,51.80610769298107],[-176.8319683196832,51.794287652091896],[-176.81036810368104,51.78753334301237],[-176.72756727567275,51.78246761120272],[-176.7059670596706,51.78753334301237],[-176.72036720367203,51.79597622936177],[-176.75636756367564,51.80610769298107],[-176.77076770767707,51.8128620020606],[-176.78156781567816,51.829747774759426],[-176.7779677796778,51.843256392918505],[-176.7671676716767,51.85338785653781],[-176.7491674916749,51.856765011077556],[-176.7059670596706,51.86014216561733],[-176.759967599676,51.883782247395686],[-176.7779677796778,51.909110906443914],[-176.78156781567816,51.936128142762044],[-176.7779677796778,51.94457102911147],[-176.759967599676,51.95301391546087],[-176.7419674196742,51.95807964727052],[-176.7239672396724,51.9597682245404],[-176.68436684366844,51.9597682245404],[-176.65916659166592,51.95301391546087],[-176.64836648366483,51.951325338191],[-176.63756637566377,51.95639107000065],[-176.62676626766267,51.97496541996935],[-176.6231662316623,51.980031151779],[-176.60516605166052,51.98678546085853],[-176.58356583565836,51.990162615398305],[-176.5619656196562,51.9884740381284],[-176.54756547565475,51.980031151779],[-176.55476554765548,51.97327684269948],[-176.55836558365584,51.9597682245404],[-176.5619656196562,51.94794818365122],[-176.55476554765548,51.93781672003192],[-176.54036540365405,51.93275098822227],[-176.5511655116551,51.914176638253565],[-176.56556565565657,51.909110906443914],[-176.579965799658,51.909110906443914],[-176.60156601566015,51.905733751904165],[-176.61236612366125,51.89560228828486],[-176.61956619566195,51.88209367012581],[-176.62676626766267,51.86858505196673],[-176.64116641166413,51.86351932015708],[-176.64116641166413,51.856765011077556],[-176.58716587165873,51.856765011077556],[-176.59436594365943,51.85001070199803],[-176.5979659796598,51.843256392918505],[-176.5979659796598,51.838190661108854],[-176.59436594365943,51.829747774759426],[-176.5691656916569,51.83987923837873],[-176.5511655116551,51.83481350656908],[-176.52956529565296,51.82805919748955],[-176.50436504365044,51.8229934656799],[-176.50436504365044,51.829747774759426],[-176.51156511565117,51.829747774759426],[-176.50436504365044,51.838190661108854],[-176.489964899649,51.843256392918505],[-176.4647646476465,51.851699279267905],[-176.43956439564397,51.8415678156486],[-176.42876428764288,51.83481350656908],[-176.4251642516425,51.82637062021968],[-176.43236432364324,51.8145505793305],[-176.42876428764288,51.8044191157112],[-176.4251642516425,51.794287652091896],[-176.4359643596436,51.78753334301237]]],[[[-174.05274052740526,52.240072051340945],[-174.08874088740887,52.226563433181866],[-174.18234182341823,52.22994058772164],[-174.20394203942038,52.213054815022815],[-174.19314193141932,52.20123477413364],[-174.18234182341823,52.191103310514336],[-174.15354153541534,52.172528960545634],[-174.11754117541176,52.15226603330703],[-174.09954099540997,52.14044599241785],[-174.09234092340924,52.128625951528676],[-174.09954099540997,52.11342875609972],[-174.1139411394114,52.11174017882985],[-174.14634146341464,52.128625951528676],[-174.1571415714157,52.128625951528676],[-174.16434164341644,52.1252487969889],[-174.17154171541716,52.12018306517925],[-174.17874178741786,52.11849448790937],[-174.18954189541896,52.11849448790937],[-174.2111421114211,52.1252487969889],[-174.2219422194222,52.1252487969889],[-174.21474214742148,52.1168059106395],[-174.21474214742148,52.10836302429007],[-174.21474214742148,52.0982315606708],[-174.21474214742148,52.08978867432137],[-174.2291422914229,52.09485440613102],[-174.27234272342724,52.0982315606708],[-174.27954279542794,52.101608715210546],[-174.30114301143013,52.11342875609972],[-174.30474304743046,52.11849448790937],[-174.32274322743228,52.123560219719025],[-174.3371433714337,52.12018306517925],[-174.3551435514355,52.115117333369625],[-174.37314373143732,52.11174017882985],[-174.41274412744127,52.11342875609972],[-174.43074430744306,52.110051601559974],[-174.43434434344343,52.0982315606708],[-174.419944199442,52.101608715210546],[-174.40554405544054,52.10498586975032],[-174.37314373143732,52.10498586975032],[-174.37314373143732,52.0982315606708],[-174.39114391143912,52.093165828861146],[-174.39834398343984,52.052639974383965],[-174.41274412744127,52.04250851076466],[-174.43434434344343,52.04419708803454],[-174.44514445144452,52.05095139711406],[-174.44874448744488,52.06277143800324],[-174.4631446314463,52.08303436524184],[-174.4739447394474,52.06952574708279],[-174.4919449194492,52.07121432435267],[-174.509945099451,52.08472294251172],[-174.52434524345244,52.0982315606708],[-174.52434524345244,52.08134578797197],[-174.49914499144992,52.052639974383965],[-174.4919449194492,52.03575420168514],[-174.50634506345062,52.04757424257431],[-174.52434524345244,52.05770570619359],[-174.54234542345424,52.061082860733364],[-174.56034560345603,52.05601712892371],[-174.5531455314553,52.052639974383965],[-174.54234542345424,52.04588566530441],[-174.53874538745387,52.04250851076466],[-174.53874538745387,52.03575420168514],[-174.54954549545496,52.03744277895501],[-174.57114571145712,52.04250851076466],[-174.58194581945818,52.04250851076466],[-174.59274592745928,52.04081993349476],[-174.61434614346143,52.030688469875486],[-174.6287462874629,52.02899989260558],[-174.65034650346504,52.03237704714536],[-174.69354693546936,52.05095139711406],[-174.70794707947078,52.04926281984419],[-174.70074700747008,52.04250851076466],[-174.69714697146972,52.03575420168514],[-174.70434704347042,52.030688469875486],[-174.7151471514715,52.02899989260558],[-174.70074700747008,52.02055700625618],[-174.7151471514715,52.017179851716406],[-174.75474754747546,52.01549127444653],[-174.7619476194762,52.017179851716406],[-174.78354783547834,52.025622738065834],[-174.8879488794888,52.04250851076466],[-174.89874898748988,52.039131356224885],[-174.92034920349204,52.030688469875486],[-174.92754927549277,52.02899989260558],[-174.9671496714967,52.030688469875486],[-174.9851498514985,52.02731131533571],[-174.99954999549996,52.01886842898631],[-175.03555035550355,52.003671233557355],[-175.32355323553236,52.00704838809713],[-175.34155341553415,52.01549127444653],[-175.3091530915309,52.02731131533571],[-175.2119521195212,52.03575420168514],[-175.16155161551615,52.04926281984419],[-175.139951399514,52.04926281984419],[-175.12555125551256,52.04757424257431],[-175.1111511115111,52.04419708803454],[-175.10755107551074,52.039131356224885],[-175.1219512195122,52.02899989260558],[-175.1039510395104,52.030688469875486],[-175.07515075150752,52.04081993349476],[-175.06075060750607,52.04250851076466],[-175.04275042750427,52.039131356224885],[-175.02835028350285,52.03237704714536],[-175.02115021150212,52.030688469875486],[-175.01035010350103,52.04250851076466],[-175.02475024750248,52.04757424257431],[-175.02835028350285,52.05432855165384],[-175.02475024750248,52.066148592543016],[-175.02115021150212,52.074591478892415],[-175.01035010350103,52.074591478892415],[-174.99954999549996,52.07121432435267],[-174.9959499594996,52.06952574708279],[-174.99234992349923,52.066148592543016],[-174.9851498514985,52.061082860733364],[-174.97434974349744,52.05770570619359],[-174.97074970749708,52.066148592543016],[-174.9671496714967,52.07965721070207],[-174.95634956349562,52.08134578797197],[-174.93834938349383,52.07628005616232],[-174.9311493114931,52.08641151978162],[-174.91674916749167,52.10498586975032],[-174.90594905949058,52.115117333369625],[-174.90234902349025,52.101608715210546],[-174.89514895148952,52.088100097051495],[-174.85554855548554,52.10498586975032],[-174.8411484114841,52.08978867432137],[-174.82314823148232,52.0982315606708],[-174.80874808748086,52.0982315606708],[-174.79434794347944,52.09147725159124],[-174.7871478714787,52.07628005616232],[-174.75474754747546,52.09485440613102],[-174.7439474394744,52.10329729248042],[-174.7439474394744,52.11849448790937],[-174.72234722347224,52.1252487969889],[-174.69714697146972,52.11174017882985],[-174.65034650346504,52.10498586975032],[-174.59994599946,52.10498586975032],[-174.57114571145712,52.11174017882985],[-174.59274592745928,52.115117333369625],[-174.59634596345964,52.12187164244915],[-174.5891458914589,52.13031452879855],[-174.57114571145712,52.13875741514798],[-174.5531455314553,52.13875741514798],[-174.5279452794528,52.137068837878076],[-174.509945099451,52.13875741514798],[-174.49914499144992,52.15226603330703],[-174.5279452794528,52.150577456037155],[-174.53874538745387,52.1539546105769],[-174.5531455314553,52.159020342386555],[-174.5459454594546,52.16577465146608],[-174.54954549545496,52.16915180600586],[-174.5531455314553,52.17084038327573],[-174.56034560345603,52.17928326962516],[-174.44874448744488,52.17928326962516],[-174.42354423544236,52.17084038327573],[-174.41274412744127,52.17084038327573],[-174.4091440914409,52.18266042416491],[-174.41274412744127,52.18941473324446],[-174.42714427144273,52.19616904232399],[-174.44874448744488,52.20630050594329],[-174.44874448744488,52.213054815022815],[-174.38754387543875,52.213054815022815],[-174.36234362343623,52.20461192867339],[-174.34074340743408,52.186037578704685],[-174.32994329943298,52.20292335140351],[-174.31554315543156,52.21474339229269],[-174.29754297542976,52.21980912410234],[-174.2831428314283,52.213054815022815],[-174.2759427594276,52.21980912410234],[-174.27234272342724,52.23162916499152],[-174.26874268742688,52.23838347407104],[-174.2579425794258,52.240072051340945],[-174.23634236342363,52.243449205880694],[-174.2291422914229,52.248514937690345],[-174.2291422914229,52.26708928765905],[-174.24354243542436,52.27384359673857],[-174.2831428314283,52.275532174008475],[-174.30114301143013,52.283975060357875],[-174.30834308343083,52.2924179467073],[-174.31554315543156,52.302549410326606],[-174.32634326343265,52.30930371940613],[-174.34434344343444,52.31605802848566],[-174.3551435514355,52.310992296676005],[-174.3551435514355,52.29917225578683],[-174.3479434794348,52.282286483088],[-174.3767437674377,52.283975060357875],[-174.41634416344164,52.29410652397718],[-174.44154441544416,52.30761514213623],[-174.43434434344343,52.32281233756518],[-174.36954369543696,52.324500914835056],[-174.3371433714337,52.33632095572423],[-174.3479434794348,52.365026769312266],[-174.33354333543335,52.37009250112189],[-174.32274322743228,52.368403923852014],[-174.3119431194312,52.36333819204236],[-174.29754297542976,52.365026769312266],[-174.28674286742867,52.37178107839179],[-174.2831428314283,52.38866685109062],[-174.24354243542436,52.39710973744002],[-174.18954189541896,52.41737266467862],[-174.16074160741607,52.4190612419485],[-174.14634146341464,52.408929778329195],[-174.1247412474125,52.400486891979796],[-174.1031410314103,52.395421160170145],[-174.0851408514085,52.39879831470989],[-174.07074070740708,52.381912542011065],[-174.05274052740526,52.368403923852014],[-174.03474034740347,52.359961037502615],[-174.00954009540095,52.35827246023271],[-174.00954009540095,52.341386687533884],[-173.9987399873999,52.32787806937483],[-173.99153991539916,52.31268087394588],[-173.9987399873999,52.2924179467073],[-174.0059400594006,52.28735221489765],[-174.01674016740168,52.282286483088],[-174.0239402394024,52.27722075127835],[-174.03474034740347,52.275532174008475],[-174.04554045540456,52.270466442198824],[-174.04914049140493,52.26033497857952],[-174.04914049140493,52.25020351496022],[-174.05274052740526,52.240072051340945]]],[[[-4.098640986409862,53.308941463176694],[-4.069840698406978,53.31063004044657],[-4.05544055440555,53.308941463176694],[-4.044640446404458,53.30218715409714],[-4.06264062640625,53.28867853593809],[-4.098640986409862,53.24984125873078],[-4.120241202412018,53.24139837238138],[-4.145441454414538,53.23970979511148],[-4.170641706417058,53.23126690876208],[-4.195841958419578,53.219446867872904],[-4.21384213842137,53.20762682698373],[-4.217442174421734,53.20424967244395],[-4.221042210422098,53.2008725179042],[-4.221042210422098,53.197495363364425],[-4.221042210422098,53.1907410542849],[-4.221042210422098,53.18229816793547],[-4.224642246422462,53.1806095906656],[-4.228242282422826,53.18229816793547],[-4.26424264242641,53.167100972506546],[-4.278642786427866,53.15528093161734],[-4.3434434344343344,53.13164084983899],[-4.354243542435427,53.12995227256911],[-4.3650436504364905,53.13164084983899],[-4.393843938439375,53.13839515891854],[-4.393843938439375,53.13670658164864],[-4.397443974439739,53.13332942710889],[-4.408244082440831,53.12995227256911],[-4.4118441184411665,53.13164084983899],[-4.415444154441531,53.13839515891854],[-4.415444154441531,53.14683804526794],[-4.4118441184411665,53.15528093161734],[-4.408244082440831,53.15865808615712],[-4.401044010440103,53.16372381796677],[-4.3902439024390105,53.17385528158607],[-4.3866438664386465,53.18229816793547],[-4.397443974439739,53.18736389974512],[-4.4118441184411665,53.18229816793547],[-4.433444334443351,53.16372381796677],[-4.447844478444779,53.15865808615712],[-4.447844478444779,53.162035240696895],[-4.480244802448027,53.1806095906656],[-4.483844838448391,53.1806095906656],[-4.491044910449091,53.17892101339572],[-4.494644946449455,53.1806095906656],[-4.494644946449455,53.18229816793547],[-4.494644946449455,53.1907410542849],[-4.494644946449455,53.19411820882465],[-4.494644946449455,53.19580678609455],[-4.494644946449455,53.20424967244395],[-4.498244982449819,53.211003981523476],[-4.519845198451975,53.22282402241265],[-4.552245522455223,53.26166129961996],[-4.570245702457015,53.27516991777904],[-4.570245702457015,53.28361280412844],[-4.566645666456651,53.29374426774774],[-4.563045630456287,53.308941463176694],[-4.563045630456287,53.330892967685145],[-4.559445594455951,53.362975935812926],[-4.559445594455951,53.37817313124188],[-4.570245702457015,53.393370326670805],[-4.552245522455223,53.40012463575036],[-4.426244262442623,53.42714187206846],[-4.4118441184411665,53.42714187206846],[-4.3434434344343344,53.420387562988935],[-4.3254432544325425,53.41869898571906],[-4.285842858428566,53.406878944829884],[-4.275042750427502,53.40181321302023],[-4.271442714427138,53.388304594861154],[-4.267842678426774,53.37648455397198],[-4.26424264242641,53.371418822162326],[-4.267842678426774,53.36973024489245],[-4.253442534425346,53.362975935812926],[-4.23904239042389,53.357910204003275],[-4.235442354423526,53.357910204003275],[-4.235442354423526,53.352844472193624],[-4.235442354423526,53.3460901631141],[-4.235442354423526,53.33933585403457],[-4.23184231842319,53.3376472767647],[-4.23184231842319,53.335958699494796],[-4.21384213842137,53.32413865860562],[-4.210242102421006,53.31231861771644],[-4.20664206642067,53.30387573136704],[-4.203042030420306,53.29880999955739],[-4.192241922419214,53.29712142228749],[-4.177841778417786,53.29712142228749],[-4.15624156241563,53.30218715409714],[-4.141841418414174,53.30218715409714],[-4.13824138241381,53.30556430863692],[-4.127441274412746,53.31400719498632],[-4.120241202412018,53.317384349526094],[-4.116641166411654,53.31569577225622],[-4.102241022410226,53.31063004044657],[-4.098640986409862,53.308941463176694]]],[[[-167.85707857078572,53.393370326670805],[-167.849878498785,53.384927440321405],[-167.8750787507875,53.371418822162326],[-167.93627936279364,53.34777874038397],[-167.9650796507965,53.344401585844224],[-167.98667986679868,53.33933585403457],[-168.1378813788138,53.273481340509136],[-168.17388173881739,53.265038454159736],[-168.22428224282243,53.259972722350085],[-168.25668256682567,53.24984125873078],[-168.2710827108271,53.24815268146091],[-168.28908289082892,53.24308694965126],[-168.31068310683108,53.219446867872904],[-168.32868328683287,53.21438113606325],[-168.3250832508325,53.20424967244395],[-168.32148321483214,53.2008725179042],[-168.33948339483396,53.189052477015],[-168.35028350283503,53.17216670431617],[-168.35748357483575,53.16034666342699],[-168.3790837908379,53.16541239523664],[-168.37548375483755,53.140083736188416],[-168.389883898839,53.12488654075946],[-168.41148411484116,53.113066499870285],[-168.43308433084331,53.09786930444133],[-168.46548465484653,53.05734344996415],[-168.49068490684908,53.042146254535226],[-168.51588515885157,53.050589140884625],[-168.53028530285303,53.03539194545567],[-168.58428584285843,53.03032621364605],[-168.6058860588606,53.018506172756844],[-168.62748627486275,53.00499755459779],[-168.67068670686706,52.983046050089314],[-168.68508685086852,52.96784885466039],[-168.68148681486815,52.96278312285074],[-168.6778867788678,52.95940596831096],[-168.74988749887498,52.95940596831096],[-168.7750877508775,52.956028813771184],[-168.77868778687787,52.947585927421784],[-168.77148771487714,52.93576588653261],[-168.75348753487535,52.92732300018318],[-168.76428764287644,52.91381438202413],[-168.77868778687787,52.91381438202413],[-168.79668796687966,52.922257268373556],[-168.80748807488075,52.93407730926273],[-168.81828818288182,52.91888011383378],[-168.83268832688327,52.91888011383378],[-168.8470884708847,52.920568691103654],[-168.86148861488616,52.915502959294],[-168.88668886688868,52.8969286093253],[-168.9010890108901,52.8884857229759],[-168.93348933489335,52.88341999116625],[-168.98748987489876,52.86484564119752],[-169.02349023490234,52.859779909387896],[-169.04149041490416,52.85302560030834],[-169.03429034290343,52.84458271395894],[-169.03429034290343,52.83782840487942],[-169.109891098911,52.82431978672034],[-169.09549095490954,52.83445125033964],[-169.07749077490774,52.83782840487942],[-169.05949059490595,52.841205559419166],[-169.04869048690486,52.85809133211799],[-169.05229052290522,52.859779909387896],[-169.05229052290522,52.86146848665777],[-169.0558905589056,52.86484564119752],[-168.99828998289982,52.87159995027707],[-168.98028980289803,52.8783542593566],[-168.96948969489694,52.895240032055426],[-168.96948969489694,52.92732300018318],[-168.95148951489514,52.94083161834226],[-168.929889298893,52.94420877288201],[-168.9118891188912,52.94083161834226],[-168.89028890288904,52.94083161834226],[-168.87228872288722,52.95434023650131],[-168.86148861488616,52.97122600920014],[-168.86148861488616,53.00668613186767],[-168.85068850688506,53.02188332729662],[-168.8290882908829,53.01681759548697],[-168.80748807488075,53.028637636376146],[-168.77148771487714,53.06747491358345],[-168.76788767887678,53.080983531742504],[-168.7930879308793,53.11475507714016],[-168.79668796687966,53.13839515891854],[-168.78948789487896,53.15190377707759],[-168.7750877508775,53.170478127046295],[-168.76068760687608,53.18736389974512],[-168.72828728287283,53.1991839406343],[-168.69948699486994,53.224512599682555],[-168.68508685086852,53.2278897542223],[-168.63828638286384,53.24984125873078],[-168.6310863108631,53.25828414508021],[-168.62388623886238,53.273481340509136],[-168.6058860588606,53.27516991777904],[-168.56988569885698,53.26166129961996],[-168.5518855188552,53.25321841327056],[-168.54108541085412,53.24984125873078],[-168.52668526685267,53.24815268146091],[-168.51948519485194,53.25152983600066],[-168.50148501485015,53.265038454159736],[-168.48348483484835,53.27010418596939],[-168.47268472684726,53.273481340509136],[-168.46548465484653,53.27685849504891],[-168.45468454684547,53.27516991777904],[-168.44748447484474,53.27010418596939],[-168.44028440284404,53.254906990540434],[-168.43308433084331,53.24815268146091],[-168.40428404284043,53.25828414508021],[-168.3790837908379,53.26166129961996],[-168.36108361083612,53.27179276323926],[-168.35028350283503,53.30218715409714],[-168.36108361083612,53.29712142228749],[-168.37188371883718,53.29880999955739],[-168.37548375483755,53.30556430863692],[-168.37188371883718,53.317384349526094],[-168.38628386283864,53.322450081335745],[-168.41868418684186,53.325827235875494],[-168.43308433084331,53.330892967685145],[-168.43308433084331,53.3376472767647],[-168.41868418684186,53.34271300857432],[-168.4078840788408,53.352844472193624],[-168.3970839708397,53.3663530903527],[-168.39348393483934,53.37817313124188],[-168.3970839708397,53.39674748121058],[-168.40428404284043,53.40350179029011],[-168.4078840788408,53.41025609936963],[-168.3970839708397,53.42714187206846],[-168.37188371883718,53.46091341746612],[-168.36468364683645,53.46766772654564],[-168.35028350283503,53.474422035625196],[-168.3142831428314,53.48117634470472],[-168.2710827108271,53.513259312832474],[-168.23508235082352,53.5301450855313],[-168.1990819908199,53.540276549150605],[-168.1270812708127,53.54703085823013],[-168.10548105481055,53.55209659003978],[-168.09468094680946,53.56053947638921],[-168.07668076680767,53.56391663092896],[-168.029880298803,53.56053947638921],[-168.00828008280084,53.57067094000851],[-167.96147961479613,53.53858797188073],[-167.93627936279364,53.526767930991554],[-167.90027900279003,53.5217021991819],[-167.8390783907839,53.52507935372168],[-167.80667806678068,53.52001362191203],[-167.79587795877958,53.5014392719433],[-167.80667806678068,53.477799190164944],[-167.85347853478535,53.447404799307066],[-167.87147871478714,53.42714187206846],[-167.86067860678605,53.42207614025881],[-167.85347853478535,53.41363325390941],[-167.849878498785,53.40350179029011],[-167.85707857078572,53.393370326670805]]],[[[-166.29466294662947,53.727708626107585],[-166.27666276662768,53.72433147156784],[-166.27666276662768,53.714200007948534],[-166.27666276662768,53.700691389789455],[-166.27306273062732,53.687182771630404],[-166.2910629106291,53.68042846255088],[-166.33066330663306,53.67367415347135],[-166.40626406264062,53.67198557620145],[-166.42426424264244,53.6669198443918],[-166.40986409864098,53.65509980350262],[-166.40266402664025,53.65341122623275],[-166.4278642786428,53.651722648962874],[-166.44946449464496,53.643279762613446],[-166.4710647106471,53.638214030803795],[-166.49266492664927,53.64665691715322],[-166.54666546665467,53.62639398991462],[-166.5610656106561,53.61795110356522],[-166.54666546665467,53.61457394902544],[-166.53586535865358,53.60950821721579],[-166.52506525065252,53.599376753596516],[-166.52146521465215,53.58417955816756],[-166.55026550265504,53.60106533086639],[-166.57546575465756,53.594311021786865],[-166.59346593465935,53.56898236273861],[-166.5970659706597,53.536899394610856],[-166.60786607866078,53.55547374457956],[-166.66546665466655,53.59768817632661],[-166.66546665466655,53.58249098089769],[-166.6438664386644,53.55040801276991],[-166.63666636666366,53.53352224007108],[-166.64746647466475,53.52845650826143],[-166.71226712267122,53.55040801276991],[-166.70866708667086,53.536899394610856],[-166.6978669786698,53.5301450855313],[-166.67986679866797,53.526767930991554],[-166.6690666906669,53.52001362191203],[-166.65466654666545,53.5031278492132],[-166.65826658266582,53.491307808324024],[-166.67266672666727,53.48793065378425],[-166.6978669786698,53.504816426483075],[-166.70866708667086,53.50819358102285],[-166.730267302673,53.50819358102285],[-166.73386733867338,53.5115707355626],[-166.7410674106741,53.52507935372168],[-166.74466744667447,53.5301450855313],[-166.769867698677,53.54871943550003],[-166.7950679506795,53.57067094000851],[-166.80946809468094,53.55716232184943],[-166.79866798667987,53.545342280960256],[-166.78066780667805,53.50819358102285],[-166.7518675186752,53.47948776743485],[-166.74466744667447,53.46766772654564],[-166.7518675186752,53.450781953846814],[-166.76626766267663,53.44909337657694],[-166.7950679506795,53.46091341746612],[-166.79866798667987,53.46429057200589],[-166.80226802268024,53.469356303815545],[-166.80586805868057,53.47104488108542],[-166.81666816668167,53.46766772654564],[-166.81666816668167,53.46429057200589],[-166.8238682386824,53.44571622203719],[-166.82746827468276,53.44065049022754],[-166.8670686706867,53.47611061289507],[-166.8778687786878,53.48117634470472],[-166.89226892268923,53.47611061289507],[-166.90306903069032,53.447404799307066],[-166.91746917469175,53.44065049022754],[-166.93186931869317,53.44571622203719],[-166.93546935469354,53.455847685656465],[-166.9390693906939,53.46429057200589],[-166.95346953469536,53.46091341746612],[-166.96066960669606,53.450781953846814],[-166.96426964269642,53.43896191295764],[-166.9678696786968,53.42883044933836],[-166.98586985869858,53.42714187206846],[-166.98586985869858,53.43051902660824],[-166.97866978669788,53.447404799307066],[-167.00747007470073,53.45247053111672],[-167.06867068670687,53.42714187206846],[-167.10107101071011,53.41869898571906],[-167.1190711907119,53.41869898571906],[-167.1370713707137,53.415321831179284],[-167.21267212672126,53.388304594861154],[-167.24147241472414,53.38323886305153],[-167.2738727387274,53.37310739943223],[-167.29187291872918,53.371418822162326],[-167.2990729907299,53.3663530903527],[-167.31347313473134,53.33933585403457],[-167.32067320673207,53.330892967685145],[-167.39267392673926,53.344401585844224],[-167.40707407074072,53.34102443130445],[-167.43947439474394,53.325827235875494],[-167.45747457474576,53.32413865860562],[-167.4538745387454,53.31400719498632],[-167.4538745387454,53.308941463176694],[-167.46827468274682,53.30387573136704],[-167.47907479074792,53.295432845017615],[-167.50067500675007,53.27516991777904],[-167.50427504275044,53.27010418596939],[-167.50427504275044,53.26334987688983],[-167.5078750787508,53.259972722350085],[-167.5258752587526,53.27179276323926],[-167.53667536675366,53.27516991777904],[-167.55827558275584,53.27516991777904],[-167.59067590675906,53.28023564958866],[-167.60507605076052,53.28023564958866],[-167.61947619476194,53.27179276323926],[-167.62667626676267,53.265038454159736],[-167.62667626676267,53.26334987688983],[-167.63027630276304,53.259972722350085],[-167.66627666276662,53.24139837238138],[-167.67347673476735,53.26166129961996],[-167.69867698676987,53.27010418596939],[-167.75267752677527,53.27516991777904],[-167.78147781477816,53.28023564958866],[-167.8030780307803,53.28867853593809],[-167.810278102781,53.29374426774774],[-167.810278102781,53.29880999955739],[-167.81387813878138,53.30218715409714],[-167.83547835478356,53.30387573136704],[-167.8390783907839,53.30387573136704],[-167.84627846278462,53.30556430863692],[-167.849878498785,53.308941463176694],[-167.71667716677166,53.38155028578163],[-167.70227702277023,53.384927440321405],[-167.66987669876698,53.384927440321405],[-167.65547655476556,53.38323886305153],[-167.6410764107641,53.3747959767021],[-167.63747637476374,53.37817313124188],[-167.59427594275942,53.37817313124188],[-167.59067590675906,53.38155028578163],[-167.5978759787598,53.393370326670805],[-167.5690756907569,53.39674748121058],[-167.5150751507515,53.38155028578163],[-167.48627486274862,53.37817313124188],[-167.4970749707497,53.384927440321405],[-167.5150751507515,53.406878944829884],[-167.5150751507515,53.411944676639536],[-167.50427504275044,53.41363325390941],[-167.50067500675007,53.41701040844919],[-167.49347493474934,53.42207614025881],[-167.47547475474755,53.433896181147986],[-167.45747457474576,53.433896181147986],[-167.43947439474394,53.43051902660824],[-167.40707407074072,53.41869898571906],[-167.3890738907389,53.41869898571906],[-167.39627396273963,53.42376471752871],[-167.39987399874,53.43051902660824],[-167.40347403474036,53.433896181147986],[-167.37827378273784,53.43220760387811],[-167.34227342273422,53.41869898571906],[-167.32067320673207,53.41701040844919],[-167.3350733507335,53.447404799307066],[-167.31347313473134,53.442339067497414],[-167.30267302673028,53.44571622203719],[-167.30267302673028,53.455847685656465],[-167.30267302673028,53.47104488108542],[-167.29187291872918,53.47611061289507],[-167.22707227072272,53.46091341746612],[-167.21267212672126,53.46260199473602],[-167.16947169471695,53.47104488108542],[-167.15867158671585,53.477799190164944],[-167.16227162271622,53.482864921974596],[-167.16587165871658,53.49806211740355],[-167.16587165871658,53.49468496286377],[-167.1730717307173,53.509882158292726],[-167.17667176671767,53.51663646737225],[-167.18387183871837,53.5217021991819],[-167.16947169471695,53.52339077645178],[-167.10827108271081,53.51494789010238],[-167.04347043470435,53.518325044642125],[-166.97866978669788,53.52845650826143],[-166.96066960669606,53.536899394610856],[-166.9822698226982,53.545342280960256],[-167.0038700387004,53.54365370369038],[-167.05067050670507,53.536899394610856],[-167.09747097470975,53.53858797188073],[-167.1190711907119,53.545342280960256],[-167.14427144271443,53.55716232184943],[-167.14067140671406,53.55885089911931],[-167.1370713707137,53.562228053659084],[-167.13347133471333,53.56560520819886],[-167.129871298713,53.57067094000851],[-167.15507155071552,53.580802403627786],[-167.16227162271622,53.602753908136265],[-167.15507155071552,53.62301683537487],[-167.13347133471333,53.63145972172427],[-167.0938709387094,53.62808256718452],[-167.0830708307083,53.62639398991462],[-167.07227072270723,53.61963968083509],[-167.06147061470614,53.602753908136265],[-167.0470704707047,53.59768817632661],[-167.05067050670507,53.60106533086639],[-167.05067050670507,53.602753908136265],[-167.05427054270544,53.602753908136265],[-167.05427054270544,53.60444248540614],[-167.0470704707047,53.61119679448569],[-167.05427054270544,53.62808256718452],[-167.03627036270362,53.62808256718452],[-166.9930699306993,53.61795110356522],[-167.00747007470073,53.63652545353392],[-167.04347043470435,53.65341122623275],[-167.06147061470614,53.6669198443918],[-167.0650706507065,53.68211703982075],[-167.05067050670507,53.69562565797983],[-167.02907029070292,53.70406854432923],[-166.94626946269463,53.71588858521841],[-166.91746917469175,53.71588858521841],[-166.8958689586896,53.70406854432923],[-166.87066870668707,53.67367415347135],[-166.86346863468634,53.656788380772525],[-166.86346863468634,53.63145972172427],[-166.8562685626856,53.63145972172427],[-166.85266852668528,53.64159118534357],[-166.8490684906849,53.6483454944231],[-166.8418684186842,53.660165535312274],[-166.8310683106831,53.65341122623275],[-166.80226802268024,53.63145972172427],[-166.82746827468276,53.69055992617018],[-166.82746827468276,53.70744569886901],[-166.78786787867878,53.692248503440055],[-166.76626766267663,53.69055992617018],[-166.74466744667447,53.700691389789455],[-166.7590675906759,53.69900281251958],[-166.769867698677,53.700691389789455],[-166.77706777067772,53.70406854432923],[-166.78786787867878,53.70744569886901],[-166.769867698677,53.714200007948534],[-166.7230672306723,53.714200007948534],[-166.7050670506705,53.72095431702806],[-166.73386733867338,53.72602004883771],[-166.80946809468094,53.72939720337746],[-166.8850688506885,53.754725862425715],[-166.89946899468995,53.75641443969559],[-166.9390693906939,53.76992305785467],[-166.9678696786968,53.77330021239442],[-166.98946989469894,53.76654590331489],[-167.0110701107011,53.75979159423537],[-167.03987039870398,53.754725862425715],[-167.10467104671048,53.803694603252325],[-167.10107101071011,53.8053831805222],[-167.09747097470975,53.812137489601724],[-167.0938709387094,53.81889179868125],[-167.09747097470975,53.8239575304909],[-167.10107101071011,53.825646107760775],[-167.1190711907119,53.8239575304909],[-167.129871298713,53.8239575304909],[-167.14427144271443,53.82226895322103],[-167.15147151471515,53.8239575304909],[-167.15507155071552,53.82902326230055],[-167.15867158671585,53.8425318804596],[-167.16227162271622,53.847597612269254],[-167.16227162271622,53.85772907588856],[-167.15147151471515,53.86279480769821],[-167.1370713707137,53.86448338496808],[-167.129871298713,53.86786053950786],[-167.12627126271263,53.874614848587385],[-167.10467104671048,53.906697816715166],[-167.08667086670866,53.92020643487422],[-167.05067050670507,53.942157939382696],[-167.03267032670325,53.95735513481165],[-167.0218702187022,53.9607322893514],[-166.9822698226982,53.95397798027187],[-166.97146971469715,53.95735513481165],[-166.9390693906939,53.97424090751048],[-166.91746917469175,53.9793066393201],[-166.8958689586896,53.98099521659],[-166.87426874268743,53.977618062050226],[-166.8562685626856,53.96748659843092],[-166.8310683106831,53.98268379385988],[-166.78066780667805,54.00294672109848],[-166.75546755467553,54.01645533925753],[-166.7410674106741,54.004635298368356],[-166.74466744667447,53.994503834749054],[-166.7518675186752,53.98437237112975],[-166.74466744667447,53.97424090751048],[-166.730267302673,53.97424090751048],[-166.71946719467195,53.98437237112975],[-166.70866708667086,53.99788098928883],[-166.6978669786698,54.008012452908105],[-166.6690666906669,54.013078184717756],[-166.6330663306633,54.004635298368356],[-166.6042660426604,53.986060948399654],[-166.58986589865899,53.9607322893514],[-166.61146611466114,53.95566655754175],[-166.6258662586626,53.950600825732096],[-166.62946629466293,53.94384651665257],[-166.6330663306633,53.93878078484292],[-166.63666636666366,53.92864932122362],[-166.63666636666366,53.923583589413994],[-166.6330663306633,53.91682928033444],[-166.62946629466293,53.910074971254915],[-166.6258662586626,53.906697816715166],[-166.62226622266223,53.906697816715166],[-166.63666636666366,53.87630342585726],[-166.6330663306633,53.87123769404761],[-166.61866618666187,53.874614848587385],[-166.60786607866078,53.88136915766691],[-166.5970659706597,53.88474631220669],[-166.58266582665826,53.879680580397036],[-166.60786607866078,53.844220457729506],[-166.61146611466114,53.83071183957043],[-166.58626586265862,53.839154725919855],[-166.4890648906489,53.89994350763561],[-166.47466474664748,53.89825493036574],[-166.46026460264602,53.88474631220669],[-166.45666456664566,53.896566353095864],[-166.43866438664386,53.92696074395374],[-166.43866438664386,53.92864932122362],[-166.43866438664386,53.942157939382696],[-166.43866438664386,53.94722367119235],[-166.42426424264244,53.950600825732096],[-166.4170641706417,53.95397798027187],[-166.40986409864098,53.98099521659],[-166.40266402664025,53.9894381029394],[-166.37026370263703,54.008012452908105],[-166.35946359463594,53.99281525747918],[-166.37026370263703,53.97424090751048],[-166.3738637386374,53.95735513481165],[-166.34866348663488,53.94722367119235],[-166.32706327063272,53.952289403002],[-166.30186301863017,53.96579802116105],[-166.27666276662768,53.97424090751048],[-166.26226262262622,53.96748659843092],[-166.2550625506255,53.950600825732096],[-166.25146251462513,53.937092207573045],[-166.2550625506255,53.923583589413994],[-166.2658626586266,53.91345212579469],[-166.2550625506255,53.91345212579469],[-166.24066240662407,53.91851785760434],[-166.2190621906219,53.93371505303327],[-166.2190621906219,53.91851785760434],[-166.22626226262264,53.90500923944526],[-166.23346233462334,53.89487777582599],[-166.2478624786248,53.88474631220669],[-166.2658626586266,53.874614848587385],[-166.28386283862838,53.86954911677773],[-166.30186301863017,53.86786053950786],[-166.32346323463236,53.87123769404761],[-166.32706327063272,53.87630342585726],[-166.33066330663306,53.883057734936784],[-166.33786337863378,53.888123466746435],[-166.3450634506345,53.883057734936784],[-166.34866348663488,53.87630342585726],[-166.3522635226352,53.85772907588856],[-166.35586355863558,53.85097476680903],[-166.3738637386374,53.8425318804596],[-166.41346413464134,53.83746614864995],[-166.43146431464314,53.83071183957043],[-166.4170641706417,53.8155146441415],[-166.40986409864098,53.81044891233185],[-166.42426424264244,53.8053831805222],[-166.52146521465215,53.78849740782337],[-166.5430654306543,53.790185985093245],[-166.5178651786518,53.78005452147394],[-166.5070650706507,53.77836594420407],[-166.49266492664927,53.776677366934194],[-166.49266492664927,53.76992305785467],[-166.52146521465215,53.76485732604502],[-166.53946539465394,53.75134870788594],[-166.57546575465756,53.714200007948534],[-166.5610656106561,53.71588858521841],[-166.55026550265504,53.71082285340876],[-166.55026550265504,53.700691389789455],[-166.55386553865537,53.687182771630404],[-166.53946539465394,53.69562565797983],[-166.52146521465215,53.72095431702806],[-166.51426514265142,53.727708626107585],[-166.49986499865,53.722642894297934],[-166.4890648906489,53.69562565797983],[-166.47466474664748,53.697314235249706],[-166.47466474664748,53.70237996705936],[-166.4710647106471,53.70913427613888],[-166.4710647106471,53.72433147156784],[-166.4710647106471,53.73446293518711],[-166.46746467464675,53.73784008972689],[-166.46026460264602,53.741217244266664],[-166.45666456664566,53.74459439880641],[-166.43866438664386,53.754725862425715],[-166.42066420664207,53.75810301696549],[-166.40626406264062,53.754725862425715],[-166.40266402664025,53.741217244266664],[-166.39546395463955,53.741217244266664],[-166.38466384663846,53.73615151245701],[-166.3810638106381,53.72939720337746],[-166.37746377463776,53.72095431702806],[-166.37026370263703,53.73446293518711],[-166.36666366663667,53.75810301696549],[-166.35946359463594,53.77330021239442],[-166.3450634506345,53.78343167601372],[-166.33426334263342,53.781743098743846],[-166.32346323463236,53.77498878966429],[-166.31626316263163,53.76148017150524],[-166.31266312663126,53.74797155334619],[-166.319863198632,53.73784008972689],[-166.31626316263163,53.73108578064736],[-166.29466294662947,53.727708626107585]]],[[[13.69993699937001,54.391319493171494],[13.72513725137253,54.364302256853364],[13.743137431374322,54.35079363869431],[13.764737647376478,54.34572790688466],[13.753937539375414,54.338973597805136],[13.739537395373958,54.33053071145571],[13.728737287372894,54.31702209329666],[13.72513725137253,54.30013632059783],[13.72513725137253,54.284939125168876],[13.721537215372166,54.27818481608935],[13.714337143371438,54.27818481608935],[13.689136891368918,54.283250547899],[13.703537035370374,54.283250547899],[13.710737107371074,54.28662770243875],[13.714337143371438,54.293382011518304],[13.710737107371074,54.30351347513758],[13.703537035370374,54.30351347513758],[13.696336963369646,54.29675916605805],[13.678336783367854,54.293382011518304],[13.663936639366398,54.293382011518304],[13.64953649536497,54.29675916605805],[13.64953649536497,54.30351347513758],[13.689136891368918,54.31364493875688],[13.703537035370374,54.320399247836406],[13.710737107371074,54.33221928872558],[13.660336603366034,54.33053071145571],[13.635136351363514,54.32546497964606],[13.617136171361722,54.31702209329666],[13.671136711367126,54.34066217507501],[13.689136891368918,54.34572790688466],[13.689136891368918,54.35248221596419],[13.663936639366398,54.35248221596419],[13.64953649536497,54.35248221596419],[13.638736387363878,54.34910506142441],[13.627936279362814,54.338973597805136],[13.617136171361722,54.34066217507501],[13.609936099360993,54.347416484154536],[13.59913599135993,54.35248221596419],[13.49833498334985,54.34572790688466],[13.480334803348029,54.338973597805136],[13.429934299342989,54.31026778421713],[13.419134191341925,54.30013632059783],[13.404734047340469,54.284939125168876],[13.383133831338313,54.28156197062913],[13.357933579335793,54.27480766154957],[13.354333543335429,54.249479002501346],[13.368733687336885,54.25623331158087],[13.368733687336885,54.26129904339052],[13.36513365133652,54.26129904339052],[13.361533615336157,54.2629876206604],[13.411934119341197,54.26805335247005],[13.419134191341925,54.266364775200174],[13.426334263342653,54.24272469342182],[13.42273422734229,54.23259322980252],[13.408334083340833,54.22752749799287],[13.379533795337949,54.230904652532644],[13.347133471334729,54.23765896161217],[13.311133111331117,54.25116757977122],[13.318333183331845,54.25623331158087],[13.325533255332573,54.26805335247005],[13.336333363333637,54.283250547899],[13.321933219332209,54.27818481608935],[13.31473314733148,54.27480766154957],[13.307533075330753,54.26974192973992],[13.311133111331117,54.266364775200174],[13.31473314733148,54.2629876206604],[13.293132931329325,54.2646761979303],[13.285932859328597,54.2629876206604],[13.275132751327533,54.25961046612065],[13.267932679326805,54.25623331158087],[13.257132571325712,54.25961046612065],[13.249932499325013,54.266364775200174],[13.242732427324285,54.26974192973992],[13.228332283322828,54.271430507009825],[13.210332103321036,54.276496238819476],[13.199531995319973,54.284939125168876],[13.203132031320308,54.29675916605805],[13.18873188731888,54.30013632059783],[13.159931599315996,54.2916934342484],[13.149131491314932,54.29000485697853],[13.141931419314204,54.298447743327955],[13.149131491314932,54.30520205240748],[13.16353163531636,54.306890629677355],[13.177931779317788,54.30351347513758],[13.177931779317788,54.31026778421713],[13.116731167311684,54.337285020535234],[13.127531275312748,54.35923652504371],[13.149131491314932,54.377810875012415],[13.174331743317452,54.38456518409197],[13.203132031320308,54.37274514320279],[13.210332103321036,54.37949945228232],[13.224732247322493,54.37274514320279],[13.235532355323556,54.374433720472666],[13.267932679326805,54.38625376136184],[13.249932499325013,54.38625376136184],[13.23913239132392,54.39300807044137],[13.235532355323556,54.40313953406067],[13.23913239132392,54.41327099767997],[13.23913239132392,54.4200253067595],[13.224732247322493,54.4200253067595],[13.217532175321764,54.42509103856915],[13.210332103321036,54.431845347648675],[13.203132031320308,54.43353392491855],[13.156331563315632,54.426779615839024],[13.174331743317452,54.44704254307763],[13.181531815318152,54.453796852157154],[13.210332103321036,54.4571740066969],[13.23913239132392,54.46561689304633],[13.260732607326077,54.46899404758611],[13.260732607326077,54.47574835666563],[13.267932679326805,54.47743693393551],[13.271532715327169,54.48250266574516],[13.246332463324649,54.48756839755481],[13.231932319323192,54.49263412936446],[13.224732247322493,54.502765592983735],[13.228332283322828,54.50445417025364],[13.231932319323192,54.50614274752351],[13.231932319323192,54.50951990206329],[13.231932319323192,54.516274211142814],[13.203132031320308,54.50951990206329],[13.185131851318516,54.507831324793386],[13.177931779317788,54.51289705660304],[13.174331743317452,54.516274211142814],[13.170731707317088,54.516274211142814],[13.167131671316724,54.51965136568256],[13.16353163531636,54.52640567476212],[13.16353163531636,54.53484856111152],[13.159931599315996,54.53991429292117],[13.152731527315268,54.543291447460945],[13.141931419314204,54.543291447460945],[13.167131671316724,54.55004575654047],[13.242732427324285,54.556800065619996],[13.260732607326077,54.55342291108022],[13.26433264332644,54.54835717927057],[13.275132751327533,54.54498002473082],[13.28953289532896,54.53991429292117],[13.293132931329325,54.52640567476212],[13.296732967329689,54.51965136568256],[13.303933039330389,54.52302852022234],[13.307533075330753,54.53484856111152],[13.300333003330053,54.55004575654047],[13.31473314733148,54.56186579742965],[13.332733327333273,54.57368583831882],[13.354333543335429,54.58212872466822],[13.368733687336885,54.585505879208],[13.357933579335793,54.565242951969395],[13.350733507335093,54.556800065619996],[13.343533435334365,54.55004575654047],[13.347133471334729,54.55004575654047],[13.354333543335429,54.55004575654047],[13.357933579335793,54.54835717927057],[13.361533615336157,54.543291447460945],[13.357933579335793,54.53822571565129],[13.347133471334729,54.52302852022234],[13.361533615336157,54.52302852022234],[13.375933759337613,54.52640567476212],[13.383133831338313,54.53147140657177],[13.390333903339041,54.543291447460945],[13.383133831338313,54.54498002473082],[13.372333723337249,54.54835717927057],[13.361533615336157,54.55004575654047],[13.361533615336157,54.556800065619996],[13.375933759337613,54.565242951969395],[13.386733867338677,54.551734333810344],[13.404734047340469,54.53822571565129],[13.415534155341561,54.524717097492214],[13.411934119341197,54.50951990206329],[13.429934299342989,54.49263412936446],[13.455134551345509,54.48756839755481],[13.505535055350549,54.48756839755481],[13.49833498334985,54.49601128390421],[13.509135091350913,54.50951990206329],[13.512735127351277,54.51289705660304],[13.519935199352005,54.516274211142814],[13.519935199352005,54.52302852022234],[13.512735127351277,54.53822571565129],[13.509135091350913,54.54498002473082],[13.49833498334985,54.55004575654047],[13.49833498334985,54.556800065619996],[13.505535055350549,54.56017722015977],[13.509135091350913,54.56186579742965],[13.512735127351277,54.56355437469952],[13.519935199352005,54.565242951969395],[13.519935199352005,54.57030868377905],[13.509135091350913,54.57030868377905],[13.501935019350213,54.565242951969395],[13.494734947349485,54.56017722015977],[13.487534875348757,54.556800065619996],[13.476734767347693,54.556800065619996],[13.440734407344081,54.556800065619996],[13.437134371343717,54.56017722015977],[13.429934299342989,54.5669315292393],[13.42273422734229,54.5753744155887],[13.415534155341561,54.5770629928586],[13.397533975339769,54.578751570128475],[13.393933939339405,54.583817301938126],[13.390333903339041,54.59057161101765],[13.383133831338313,54.59732592009718],[13.372333723337249,54.60745738371648],[13.368733687336885,54.61252311552613],[13.354333543335429,54.605768806446605],[13.347133471334729,54.600703074636954],[13.332733327333273,54.587194456477874],[13.307533075330753,54.578751570128475],[13.293132931329325,54.56862010650917],[13.271532715327169,54.56017722015977],[13.253532535325348,54.565242951969395],[13.249932499325013,54.5770629928586],[13.257132571325712,54.5956373428273],[13.271532715327169,54.61252311552613],[13.282332823328233,54.619277424605656],[13.285932859328597,54.62434315641531],[13.28953289532896,54.63278604276471],[13.293132931329325,54.64291750638401],[13.28953289532896,54.646294660923786],[13.246332463324649,54.63954035184426],[13.231932319323192,54.63447462003461],[13.224732247322493,54.63447462003461],[13.224732247322493,54.646294660923786],[13.231932319323192,54.65304897000331],[13.242732427324285,54.65980327908284],[13.253532535325348,54.66486901089249],[13.390333903339041,54.68850909267084],[13.419134191341925,54.68850909267084],[13.444334443344445,54.68006620632144],[13.444334443344445,54.67331189724189],[13.429934299342989,54.66655758816236],[13.408334083340833,54.65980327908284],[13.390333903339041,54.65136039273344],[13.383133831338313,54.636163197304484],[13.386733867338677,54.619277424605656],[13.393933939339405,54.6040802291767],[13.408334083340833,54.5939487655574],[13.426334263342653,54.585505879208],[13.465934659346601,54.5770629928586],[13.595535955359566,54.59057161101765],[13.638736387363878,54.585505879208],[13.671136711367126,54.5669315292393],[13.678336783367854,54.53991429292117],[13.64953649536497,54.516274211142814],[13.60633606336063,54.49938843844399],[13.584735847358473,54.48587982028491],[13.57393573935741,54.472371202125856],[13.577535775357774,54.45548542942703],[13.588335883358837,54.436911079458326],[13.59913599135993,54.423402461299276],[13.609936099360993,54.41327099767997],[13.63153631536315,54.40820526587032],[13.678336783367854,54.4014509567908],[13.69993699937001,54.391319493171494]]],[[[11.845918459184588,54.7324121016878],[11.835118351183525,54.72396921533837],[11.824318243182432,54.7222806380685],[11.813518135181369,54.71890348352872],[11.80631806318064,54.708772019909446],[11.845918459184588,54.698640556290144],[11.842318423184253,54.676689051781665],[11.809918099181004,54.654737547273186],[11.766717667176692,54.646294660923786],[11.611916119161208,54.66655758816236],[11.561515615156168,54.65980327908284],[11.511115111151128,54.646294660923786],[11.475114751147515,54.62603173368518],[11.45351453514536,54.627720310955056],[11.359913599136007,54.65980327908284],[11.298712987129875,54.69188624721062],[11.18711187111873,54.7324121016878],[11.13671136711369,54.739166410767325],[11.08631086310865,54.752675028926376],[11.032310323103246,54.761117915275804],[11.01071010710109,54.77124937889511],[10.999909999099998,54.78644657432403],[11.007110071100726,54.80333234702286],[11.032310323103246,54.81177523337229],[11.06111061110613,54.81008665610241],[11.089910899108986,54.81008665610241],[11.107911079110806,54.832038160610864],[11.09351093510935,54.83541531515064],[11.079110791107922,54.84048104696029],[11.025110251102518,54.8793183241676],[11.01791017910179,54.886072633247124],[11.01791017910179,54.90295840594595],[11.032310323103246,54.91984417864478],[11.075510755107558,54.948549992232785],[11.089910899108986,54.94348426042313],[11.230312303123043,54.962058610391836],[11.255512555125563,54.95530430131231],[11.302313023130239,54.93166421953396],[11.32031320313203,54.92828706499418],[11.338313383133851,54.91984417864478],[11.367113671136707,54.88100690143747],[11.392313923139227,54.872564015088045],[11.417514175141747,54.8691868605483],[11.593915939159388,54.81177523337229],[11.586715867158688,54.828661006071115],[11.572315723157232,54.83879246969042],[11.572315723157232,54.84723535603982],[11.593915939159388,54.859055396928994],[11.622716227162272,54.859055396928994],[11.647916479164792,54.86580970600852],[11.65511655116552,54.86580970600852],[11.647916479164792,54.877629746897696],[11.644316443164428,54.88944978778687],[11.647916479164792,54.90295840594595],[11.647916479164792,54.913089869565255],[11.727117271172716,54.872564015088045],[11.73071730717308,54.859055396928994],[11.7559175591756,54.84048104696029],[11.770317703177028,54.83372673788077],[11.788317883178848,54.832038160610864],[11.777517775177756,54.82528385153134],[11.773917739177392,54.82528385153134],[11.788317883178848,54.806709501562636],[11.838718387183889,54.78306941978428],[11.849518495184952,54.77293795616498],[11.853118531185316,54.75605218346615],[11.85671856718568,54.74929787438663],[11.85671856718568,54.744232142576976],[11.845918459184588,54.7324121016878]]],[[[10.665106651066509,55.06506182385468],[10.621906219062197,55.06506182385468],[10.603906039060405,55.0633732465848],[10.585905859058585,55.05830751477515],[10.567905679056793,55.04986462842575],[10.557105571055729,55.03973316480645],[10.539105391053909,55.02960170118715],[10.517505175051753,55.03129027845702],[10.477904779047805,55.0431103193462],[10.409504095040944,55.046487473885975],[10.387903879038788,55.04986462842575],[10.380703807038088,55.0549303602354],[10.369903699036996,55.05830751477515],[10.362703627036268,55.0633732465848],[10.351903519035204,55.06506182385468],[10.326703267032684,55.0633732465848],[10.312303123031228,55.0633732465848],[10.233102331023304,55.09207906017281],[10.204302043020448,55.09376763744268],[10.19710197101972,55.08532475109328],[10.19710197101972,55.06506182385468],[10.182701827018263,55.07012755566433],[10.157501575015743,55.087013328363156],[10.143101431014315,55.09207906017281],[10.12150121501216,55.09207906017281],[10.081900819008183,55.087013328363156],[10.067500675006755,55.09207906017281],[10.143101431014315,55.12585060557046],[10.157501575015743,55.139359223729514],[10.139501395013951,55.15455641915847],[10.125101251012524,55.171442191857295],[10.114301143011431,55.18326223274647],[10.092700927009275,55.18832796455612],[10.078300783007847,55.18663938728625],[10.067500675006755,55.1815736554766],[10.056700567005663,55.17988507820672],[10.038700387003871,55.1815736554766],[10.017100171001715,55.19508227363565],[10.002700027000287,55.19677085090555],[9.991899918999195,55.18832796455612],[9.99549995499956,55.17313076912717],[10.027900279002807,55.14273637826929],[10.024300243002443,55.12585060557046],[10.02070020700208,55.12416202830059],[9.984699846998467,55.12753918284034],[9.984699846998467,55.130916337380114],[9.984699846998467,55.13429349191989],[9.984699846998467,55.139359223729514],[9.988299882998831,55.139359223729514],[9.988299882998831,55.14273637826929],[9.988299882998831,55.15117926461869],[9.973899738997403,55.17481934639707],[9.970299702997039,55.184950810016346],[9.973899738997403,55.19508227363565],[9.981099810998103,55.20521373725495],[9.981099810998103,55.21365662360435],[9.963099630996311,55.218722355414],[9.923499234992363,55.22378808722365],[9.91269912699127,55.228853819033304],[9.901899018990207,55.233919550842955],[9.894698946989479,55.23898528265261],[9.894698946989479,55.24405101446226],[9.883898838988387,55.25418247808156],[9.880298802988023,55.25924820989118],[9.883898838988387,55.26600251897074],[9.894698946989479,55.27444540532014],[9.894698946989479,55.27951113712979],[9.894698946989479,55.291331178018964],[9.883898838988387,55.30821695071779],[9.880298802988023,55.31497125979732],[9.883898838988387,55.34874280519497],[9.873098730987323,55.353808537004625],[9.858698586985867,55.353808537004625],[9.829898298982982,55.35211995973475],[9.815498154981555,55.3554971142745],[9.801098010980127,55.36225142335405],[9.77949779497797,55.380825773322755],[9.793897938979399,55.3842029278625],[9.81189811898119,55.385891505132406],[9.829898298982982,55.389268659672155],[9.840698406984075,55.39940012329146],[9.78669786697867,55.41459731872041],[9.793897938979399,55.412908741450536],[9.819098190981919,55.41459731872041],[9.808298082980826,55.42472878233971],[9.790297902979034,55.43148309141924],[9.750697506975087,55.43486024595899],[9.73629736297363,55.438237400498764],[9.70389703897041,55.46187748227712],[9.70389703897041,55.46863179135664],[9.72909729097293,55.46187748227712],[9.757897578975786,55.446680286848164],[9.78669786697867,55.43654882322889],[9.81189811898119,55.44161455503854],[9.714697146971474,55.49058329586512],[9.675096750967526,55.49564902767477],[9.682296822968226,55.505780491294075],[9.693096930969318,55.51084622310373],[9.70389703897041,55.5125348003736],[9.718297182971838,55.51760053218325],[9.75429754297545,55.54461776850138],[9.808298082980826,55.54968350031103],[9.826298262982647,55.54799492304113],[9.829898298982982,55.54292919123148],[9.829898298982982,55.53448630488208],[9.840698406984075,55.52435484126278],[9.88749887498875,55.509157645833824],[9.941499414994155,55.519289109453126],[10.038700387003871,55.55812638666043],[10.168301683016836,55.581766468438786],[10.211502115021148,55.60034081840749],[10.236702367023668,55.60540655021714],[10.265502655026552,55.60709512748704],[10.27270272702728,55.60540655021714],[10.27270272702728,55.60202939567739],[10.279902799028008,55.58852077751831],[10.279902799028008,55.58514362297856],[10.294302943029436,55.58852077751831],[10.2979029790298,55.595275086597866],[10.294302943029436,55.61553801383644],[10.308703087030864,55.61891516837622],[10.337503375033748,55.61047228202679],[10.405904059040608,55.58345504570869],[10.4239042390424,55.571635004819484],[10.434704347043464,55.55981496393031],[10.445504455044556,55.55306065485078],[10.452704527045285,55.54968350031103],[10.470704707047076,55.54968350031103],[10.488704887048868,55.54630634577126],[10.517505175051753,55.532797727612206],[10.503105031050325,55.53786345942183],[10.485104851048504,55.53786345942183],[10.47430474304744,55.532797727612206],[10.470704707047076,55.52097768672303],[10.47430474304744,55.51591195491338],[10.488704887048868,55.509157645833824],[10.492304923049232,55.5024033367543],[10.485104851048504,55.4939604504049],[10.477904779047805,55.492271873134996],[10.467104671046712,55.492271873134996],[10.456304563045649,55.48889471859525],[10.420304203042036,55.45850032773737],[10.434704347043464,55.44161455503854],[10.470704707047076,55.443303132308415],[10.492304923049232,55.465254636816894],[10.503105031050325,55.46356605954699],[10.567905679056793,55.48214040951572],[10.603906039060405,55.48889471859525],[10.607506075060769,55.492271873134996],[10.607506075060769,55.49902618221455],[10.603906039060405,55.505780491294075],[10.596705967059677,55.509157645833824],[10.589505895058949,55.51084622310373],[10.578705787057885,55.514223377643475],[10.571505715057157,55.519289109453126],[10.567905679056793,55.52435484126278],[10.571505715057157,55.532797727612206],[10.582305823058249,55.52942057307243],[10.596705967059677,55.52097768672303],[10.600306003060041,55.51760053218325],[10.614706147061469,55.527731995802554],[10.611106111061105,55.54292919123148],[10.600306003060041,55.56150354120021],[10.593105931059313,55.57838931389904],[10.600306003060041,55.57332358208939],[10.614706147061469,55.56488069573996],[10.614706147061469,55.581766468438786],[10.607506075060769,55.60709512748704],[10.607506075060769,55.612160859296694],[10.629106291062925,55.61384943656657],[10.65790657906581,55.595275086597866],[10.704707047070485,55.54968350031103],[10.704707047070485,55.54461776850138],[10.70830708307085,55.53448630488208],[10.70830708307085,55.527731995802554],[10.715507155071549,55.52435484126278],[10.715507155071549,55.52097768672303],[10.737107371073705,55.509157645833824],[10.744307443074433,55.49564902767477],[10.74070740707407,55.48720614132537],[10.73350733507337,55.48214040951572],[10.704707047070485,55.470320368626545],[10.65790657906581,55.46018890500724],[10.589505895058949,55.46356605954699],[10.571505715057157,55.46187748227712],[10.560705607056065,55.45512317319759],[10.553505535055365,55.443303132308415],[10.564305643056429,55.43654882322889],[10.578705787057885,55.43654882322889],[10.593105931059313,55.44161455503854],[10.589505895058949,55.446680286848164],[10.589505895058949,55.45005744138794],[10.596705967059677,55.46018890500724],[10.614706147061469,55.456811750467466],[10.68310683106833,55.448368864118066],[10.697506975069757,55.43992597776864],[10.798307983079837,55.358874268814276],[10.801908019080201,55.350431382464876],[10.827108271082722,55.30652837344792],[10.83430834308345,55.28964260074909],[10.827108271082722,55.28964260074909],[10.81630816308163,55.30146264163827],[10.798307983079837,55.30821695071779],[10.780307803078045,55.304839796178044],[10.773107731077317,55.28626544620931],[10.780307803078045,55.27444540532014],[10.805508055080566,55.25080532354178],[10.812708127081265,55.23560812811283],[10.81630816308163,55.21365662360435],[10.812708127081265,55.19508227363565],[10.805508055080566,55.17819650093682],[10.79110791107911,55.15624499642834],[10.787507875078745,55.149490687348816],[10.787507875078745,55.12922776011024],[10.78390783907841,55.12416202830059],[10.75870758707589,55.10558767833186],[10.747907479074797,55.09376763744268],[10.744307443074433,55.081947596553505],[10.73350733507337,55.07181613293423],[10.719107191071913,55.06506182385468],[10.704707047070485,55.0633732465848],[10.665106651066509,55.06506182385468]]],[[[-5.689856898568991,56.43449798972955],[-5.679056790567898,56.427743680650025],[-5.6646566465664705,56.414235062490974],[-5.657456574565742,56.400726444331895],[-5.67185671856717,56.39397213525237],[-5.704257042570418,56.39397213525237],[-5.718657186571846,56.397349289792146],[-5.715057150571511,56.40748075341142],[-5.72225722257221,56.41254648522107],[-5.7294572945729385,56.414235062490974],[-5.733057330573303,56.414235062490974],[-5.743857438574366,56.414235062490974],[-5.740257402574031,56.400726444331895],[-5.7510575105750945,56.38890640344272],[-5.783457834578343,56.373709208013764],[-5.783457834578343,56.365266321664365],[-5.769057690576886,56.37202063074389],[-5.7510575105750945,56.37708636255354],[-5.711457114571147,56.38046351709332],[-5.69705697056969,56.37539778528367],[-5.704257042570418,56.365266321664365],[-5.718657186571846,56.35344628077519],[-5.808658086580863,56.31967473537753],[-5.848258482584811,56.31292042629801],[-5.880658806588059,56.32642904445706],[-5.873458734587331,56.32811762172693],[-5.862658626586267,56.334871930806486],[-5.851858518585175,56.343314817155886],[-5.851858518585175,56.35344628077519],[-5.859058590585903,56.35851201258484],[-5.873458734587331,56.35851201258484],[-5.898658986589851,56.35344628077519],[-5.902259022590215,56.35006912623541],[-5.909459094590943,56.343314817155886],[-5.913059130591307,56.334871930806486],[-5.923859238592371,56.33318335353658],[-5.956259562595619,56.32811762172693],[-6.0390603906039075,56.30447753994858],[-6.053460534605335,56.294346076329305],[-6.064260642606428,56.28928034451965],[-6.0786607866078555,56.29096892178953],[-6.089460894608948,56.29603465359918],[-6.1038610386103755,56.29772323086905],[-6.111061110611104,56.29603465359918],[-6.136261362613624,56.28759176724975],[-6.1470614706146876,56.28421461271],[-6.240662406624068,56.28421461271],[-6.244262442624432,56.280837458170225],[-6.251462514625132,56.2740831490907],[-6.255062550625496,56.267328840011174],[-6.265862658626588,56.2639516854714],[-6.280262802628016,56.2639516854714],[-6.298262982629808,56.267328840011174],[-6.327063270632692,56.27746030363048],[-6.3450634506345125,56.28759176724975],[-6.35946359463594,56.302788962678704],[-6.3666636666366685,56.32136331264741],[-6.355863558635576,56.33656050807636],[-6.33426334263342,56.34500339442576],[-6.3090630906309,56.34669197169566],[-6.291062910629108,56.34500339442576],[-6.273062730627288,56.334871930806486],[-6.262262622626224,56.31967473537753],[-6.247862478624768,56.31123184902813],[-6.229862298622976,56.31798615810766],[-6.229862298622976,56.32642904445706],[-6.237062370623704,56.32642904445706],[-6.240662406624068,56.32811762172693],[-6.244262442624432,56.329806198996835],[-6.251462514625132,56.33318335353658],[-6.23346233462334,56.33656050807636],[-6.186661866618664,56.33149477626671],[-6.172261722617208,56.33656050807636],[-6.154261542615416,56.34500339442576],[-6.085860858608584,56.35344628077519],[-6.0390603906039075,56.370332053474016],[-6.021060210602087,56.38215209436319],[-6.028260282602815,56.387217826172844],[-6.046260462604607,56.38384067163307],[-6.1038610386103755,56.365266321664365],[-6.154261542615416,56.35851201258484],[-6.179461794617936,56.36020058985471],[-6.197461974619728,56.370332053474016],[-6.204662046620456,56.38046351709332],[-6.197461974619728,56.39059498071259],[-6.190261902619028,56.397349289792146],[-6.179461794617936,56.400726444331895],[-6.165061650616508,56.4024150216018],[-6.15786157861578,56.40748075341142],[-6.143461434614352,56.427743680650025],[-6.139861398613988,56.43449798972955],[-6.136261362613624,56.44294087607898],[-6.1254612546125315,56.44800660788863],[-6.118261182611832,56.449695185158504],[-6.0822608226082195,56.44800660788863],[-6.021060210602087,56.46489238058746],[-6.010260102601023,56.46995811239708],[-6.003060030600295,56.48008957601638],[-6.003060030600295,56.490221039635685],[-6.006660066600659,56.49697534871521],[-6.0174601746017515,56.503729657794736],[-6.0822608226082195,56.485155307826034],[-6.1038610386103755,56.48346673055616],[-6.111061110611104,56.48008957601638],[-6.118261182611832,56.476712421476634],[-6.129061290612896,56.47502384420673],[-6.136261362613624,56.48008957601638],[-6.154261542615416,56.50035250325499],[-6.161461614616144,56.50879538960439],[-6.175861758617572,56.517238275953815],[-6.193861938619392,56.52399258503334],[-6.287462874628744,56.53243547138274],[-6.3090630906309,56.53750120319239],[-6.323463234632328,56.54425551227192],[-6.337863378633784,56.552698398621345],[-6.291062910629108,56.57127274859005],[-6.298262982629808,56.58140421220935],[-6.319863198631992,56.593224253098526],[-6.323463234632328,56.60673287125758],[-6.287462874628744,56.60842144852748],[-6.273062730627288,56.61179860306723],[-6.255062550625496,56.62024148941666],[-6.247862478624768,56.61179860306723],[-6.237062370623704,56.60842144852748],[-6.229862298622976,56.60842144852748],[-6.222662226622248,56.61348718033713],[-6.219062190621912,56.63206153030583],[-6.190261902619028,56.645570148464884],[-6.150661506615052,56.65232445754441],[-6.118261182611832,56.65401303481431],[-6.1038610386103755,56.64894730300466],[-6.0570605706056995,56.64050441665523],[-6.0606606066060635,56.63543868484561],[-6.064260642606428,56.62530722122631],[-6.064260642606428,56.62024148941666],[-6.031860318603179,56.61855291214678],[-6.010260102601023,56.59828998490818],[-5.967059670596711,56.54425551227192],[-5.963459634596347,56.53750120319239],[-5.963459634596347,56.530746894112866],[-5.963459634596347,56.525681162303215],[-5.952659526595255,56.52399258503334],[-5.851858518585175,56.52399258503334],[-5.844658446584447,56.520615430493564],[-5.837458374583747,56.51386112141404],[-5.830258302583019,56.51048396687429],[-5.812258122581227,56.517238275953815],[-5.805058050580499,56.517238275953815],[-5.7942579425794065,56.517238275953815],[-5.787057870578707,56.51386112141404],[-5.765457654576551,56.49359819417546],[-5.758257582575823,56.490221039635685],[-5.74745747457473,56.48853246236581],[-5.7294572945729385,56.490221039635685],[-5.72225722257221,56.490221039635685],[-5.711457114571147,56.485155307826034],[-5.69705697056969,56.47502384420673],[-5.6862568625686265,56.46489238058746],[-5.682656826568262,56.45138376242838],[-5.67185671856717,56.449695185158504],[-5.657456574565742,56.45138376242838],[-5.64665646656465,56.44800660788863],[-5.653856538565378,56.427743680650025],[-5.661056610566106,56.4311208351898],[-5.668256682566806,56.432809412459676],[-5.689856898568991,56.43449798972955]]],[[[17.123571235712376,57.319312479148095],[17.098370983709856,57.31762390187819],[17.07677076770767,57.305803860989016],[17.040770407704088,57.270343738321486],[17.065970659706608,57.24163792473348],[17.065970659706608,57.22644072930453],[17.05157051570515,57.2011120702563],[17.05157051570515,57.1926691839069],[17.047970479704816,57.18760345209725],[17.04437044370445,57.18591487482735],[17.03357033570336,57.1825377202876],[17.02637026370263,57.180849143017696],[17.022770227702296,57.172406256668296],[17.01917019170193,57.15720906123934],[17.015570155701568,57.14876617488994],[16.972369723697255,57.104863165872985],[16.96876968769689,57.08966597044403],[16.961569615696163,57.06264873412593],[16.94356943569437,57.05251727050663],[16.921969219692215,57.0457629614271],[16.90036900369003,57.03732007507767],[16.903969039690395,57.02887718872827],[16.911169111691123,57.02381145691862],[16.921969219692215,57.020434302378845],[16.93276932769328,57.0170571478391],[16.914769147691487,57.006925684219794],[16.90036900369003,56.99679422060049],[16.871568715687175,56.96977698428236],[16.878768787687875,56.95626836612331],[16.885968859688603,56.936005438884706],[16.88236882368824,56.91574251164613],[16.86796867968681,56.9072996252967],[16.85716857168572,56.89716816167743],[16.84276842768429,56.84482226631104],[16.8319683196832,56.82624791634234],[16.828368283682835,56.82624791634234],[16.78156781567816,56.811050720913386],[16.77436774367743,56.80598498910376],[16.76716767167673,56.797542102754335],[16.763567635676367,56.78741063913503],[16.763567635676367,56.77727917551573],[16.759967599676003,56.767147711896456],[16.75636756367564,56.74688478465785],[16.69876698766987,56.645570148464884],[16.687966879668807,56.62530722122631],[16.687966879668807,56.601667139447954],[16.684366843668442,56.593224253098526],[16.67356673566735,56.583092789479224],[16.662766627666286,56.574649903129824],[16.65556655566556,56.57127274859005],[16.644766447664495,56.5678955940503],[16.637566375663766,56.55945270770087],[16.63036630366304,56.53750120319239],[16.63036630366304,56.53243547138274],[16.637566375663766,56.52905831684299],[16.637566375663766,56.52399258503334],[16.633966339663402,56.51892685322369],[16.626766267662674,56.50879538960439],[16.62316623166231,56.503729657794736],[16.62316623166231,56.48684388509591],[16.619566195661974,56.47502384420673],[16.612366123661246,56.46658095785733],[16.59796597965979,56.44800660788863],[16.587165871658726,56.42605510338015],[16.576365763657634,56.405792176141546],[16.569165691656934,56.387217826172844],[16.569165691656934,56.378774939823415],[16.569165691656934,56.356823435314965],[16.56556565565657,56.34669197169566],[16.551165511655114,56.33149477626671],[16.54756547565475,56.32136331264741],[16.54036540365405,56.30616611721848],[16.48996489964901,56.240311603693044],[16.47196471964719,56.22680298553399],[16.450364503645034,56.218360099184565],[16.428764287642878,56.218360099184565],[16.41436414364145,56.22849156280387],[16.410764107641086,56.23862302642317],[16.41436414364145,56.26057453093165],[16.41436414364145,56.27070599455092],[16.399963999639994,56.29772323086905],[16.40716407164072,56.31967473537753],[16.40716407164072,56.34500339442576],[16.40716407164072,56.387217826172844],[16.41436414364145,56.4024150216018],[16.40716407164072,56.4209893715705],[16.39636396363963,56.4395637215392],[16.392763927639294,56.4581380715079],[16.399963999639994,56.54425551227192],[16.403564035640358,56.55438697589122],[16.417964179641814,56.586469944019],[16.443164431644334,56.60842144852748],[16.44676446764467,56.61686433487688],[16.453964539645398,56.637127262115484],[16.619566195661974,56.87183950262917],[16.637566375663766,56.881970966248474],[16.659166591665922,56.887036698058125],[16.687966879668807,56.887036698058125],[16.71676716767169,56.892102429867776],[16.73116731167312,56.90392247075695],[16.74916749167491,56.94107117069436],[16.79236792367925,57.00354852968002],[16.846368463684655,57.05927157958615],[16.889568895688967,57.118371784032036],[16.90756907569076,57.1926691839069],[16.911169111691123,57.202800647526175],[16.91836918369185,57.207866379335826],[16.939969399694007,57.21293211114548],[16.954369543695435,57.221374997494905],[16.9579695796958,57.23150646111418],[16.961569615696163,57.287229511020314],[16.965169651696527,57.30411528371914],[16.986769867698683,57.31762390187819],[17.01917019170193,57.34464113819632],[17.037170371703724,57.35308402454575],[17.055170551705515,57.3581497563554],[17.065970659706608,57.3581497563554],[17.073170731707336,57.34295256092645],[17.080370803708036,57.341263983656575],[17.091170911709128,57.34464113819632],[17.098370983709856,57.35308402454575],[17.105571055710556,57.35308402454575],[17.105571055710556,57.3480182927361],[17.105571055710556,57.346329715466226],[17.10917109171092,57.34295256092645],[17.10917109171092,57.33957540638667],[17.116371163711648,57.33450967457702],[17.119971199712012,57.33113252003727],[17.123571235712376,57.32437821095775],[17.123571235712376,57.319312479148095]]],[[[-6.564665646656465,57.346329715466226],[-6.579065790657893,57.33957540638667],[-6.6726667266672735,57.3564611790855],[-6.6942669426694295,57.36490406543493],[-6.7158671586715855,57.376724106324104],[-6.723067230672314,57.390232724483155],[-6.730267302673013,57.417249960801286],[-6.773467734677354,57.43413573350011],[-6.7842678426784175,57.45608723800859],[-6.723067230672314,57.45608723800859],[-6.7374673746737415,57.46453012435799],[-6.74466744667447,57.47635016524717],[-6.748267482674834,57.488170206136346],[-6.7410674106741055,57.49999024702555],[-6.726667266672649,57.51181028791473],[-6.7158671586715855,57.5134988651846],[-6.705067050670493,57.510121710644825],[-6.654666546665453,57.46790727889777],[-6.647466474664753,57.45946439254834],[-6.636666366663661,57.452710083468816],[-6.618666186661869,57.44595577438929],[-6.607866078660777,57.444267197119416],[-6.611466114661141,57.45608723800859],[-6.611466114661141,57.46284154708812],[-6.607866078660777,57.46453012435799],[-6.604266042660413,57.46790727889777],[-6.600666006660049,57.46959585616764],[-6.615066150661505,57.48141589705682],[-6.618666186661869,57.48310447432672],[-6.622266222662233,57.48648162886647],[-6.629466294662933,57.493235937946],[-6.633066330663297,57.49830166975565],[-6.629466294662933,57.501678824295425],[-6.622266222662233,57.5033674015653],[-6.618666186661869,57.506744556105076],[-6.611466114661141,57.51181028791473],[-6.593465934659349,57.51181028791473],[-6.564665646656465,57.5033674015653],[-6.575465754657529,57.521941751534],[-6.600666006660049,57.537138946962955],[-6.629466294662933,57.54895898785213],[-6.654666546665453,57.55233614239191],[-6.640266402664025,57.56246760601121],[-6.629466294662933,57.57597622417026],[-6.629466294662933,57.591173419599215],[-6.640266402664025,57.599616305948615],[-6.640266402664025,57.60805919229804],[-6.618666186661869,57.60637061502814],[-6.604266042660413,57.599616305948615],[-6.593465934659349,57.591173419599215],[-6.571865718657193,57.58273053324979],[-6.568265682656829,57.57428764690039],[-6.568265682656829,57.56584476055096],[-6.564665646656465,57.559090451471434],[-6.553865538655373,57.55233614239191],[-6.546665466654673,57.54895898785213],[-6.499864998649969,57.53545036969308],[-6.489064890648905,57.53038463788343],[-6.478264782647813,57.52025317426413],[-6.463864638646385,57.51181028791473],[-6.4530645306452925,57.5134988651846],[-6.438664386643865,57.51687601972438],[-6.420664206642073,57.51856459699425],[-6.442264422644229,57.488170206136346],[-6.435064350643501,57.48648162886647],[-6.413464134641345,57.501678824295425],[-6.399063990639888,57.52025317426413],[-6.3882638826388245,57.51687601972438],[-6.312663126631264,57.46284154708812],[-6.312663126631264,57.46959585616764],[-6.316263162631628,57.47297301070742],[-6.319863198631992,57.479727319786946],[-6.323463234632328,57.48310447432672],[-6.323463234632328,57.496613092485774],[-6.337863378633784,57.510121710644825],[-6.373863738637368,57.532073215153304],[-6.3882638826388245,57.55233614239191],[-6.38466384663846,57.56246760601121],[-6.373863738637368,57.572599069630485],[-6.35946359463594,57.59286199686909],[-6.370263702637033,57.591173419599215],[-6.38466384663846,57.59286199686909],[-6.391863918639189,57.59623915140884],[-6.399063990639888,57.599616305948615],[-6.395463954639553,57.613124924107666],[-6.402664026640252,57.621567810457094],[-6.4098640986409805,57.626633542266745],[-6.413464134641345,57.63338785134627],[-6.417064170641709,57.64520789223545],[-6.413464134641345,57.648585046775224],[-6.406264062640616,57.6502736240451],[-6.3666636666366685,57.66378224220415],[-6.35946359463594,57.6688479740138],[-6.352263522635212,57.68066801490298],[-6.3450634506345125,57.692488055792154],[-6.337863378633784,57.69924236487171],[-6.323463234632328,57.69586521033193],[-6.316263162631628,57.697553787601805],[-6.312663126631264,57.69924236487171],[-6.312663126631264,57.702619519411456],[-6.301863018630172,57.692488055792154],[-6.294662946629472,57.68573374671263],[-6.269462694626952,57.675602283093326],[-6.262262622626224,57.6688479740138],[-6.237062370623704,57.64689646950532],[-6.23346233462334,57.6418307376957],[-6.186661866618664,57.621567810457094],[-6.168661686616872,57.60805919229804],[-6.15786157861578,57.59792772867874],[-6.154261542615416,57.58948484232931],[-6.143461434614352,57.52025317426413],[-6.136261362613624,57.48985878340625],[-6.13266132661326,57.47635016524717],[-6.136261362613624,57.461152969818244],[-6.143461434614352,57.439201465309765],[-6.1470614706146876,57.425692847150685],[-6.154261542615416,57.417249960801286],[-6.179461794617936,57.403741342642235],[-6.186661866618664,57.39360987902293],[-6.175861758617572,57.40036418810246],[-6.15786157861578,57.40711849718198],[-6.139861398613988,57.41049565172176],[-6.1254612546125315,57.408807074451886],[-6.118261182611832,57.39698703356268],[-6.1218612186121675,57.38854414721328],[-6.13266132661326,57.38010126086385],[-6.139861398613988,57.37334695178433],[-6.136261362613624,57.3581497563554],[-6.1218612186121675,57.346329715466226],[-6.10746107461074,57.33957540638667],[-6.1002610026100115,57.332821097307146],[-6.10746107461074,57.322689633687844],[-6.139861398613988,57.31255817006857],[-6.154261542615416,57.305803860989016],[-6.067860678606792,57.31255817006857],[-6.046260462604607,57.30749243825892],[-6.042660426604272,57.30073812917939],[-6.053460534605335,57.29060666556009],[-6.0786607866078555,57.283852356480566],[-6.0786607866078555,57.27709804740101],[-6.049860498604971,57.278786624670914],[-6.028260282602815,57.28554093375044],[-6.006660066600659,57.287229511020314],[-5.985059850598503,57.27372089286126],[-5.977859778597775,57.270343738321486],[-5.963459634596347,57.26865516105161],[-5.938259382593827,57.270343738321486],[-5.923859238592371,57.26696658378174],[-5.913059130591307,57.25852369743231],[-5.905859058590579,57.24839223381301],[-5.902259022590215,57.243326502003356],[-5.887858878588787,57.24163792473348],[-5.877058770587695,57.24670365654313],[-5.869858698586967,57.25345796562266],[-5.866258662586631,57.256835120162435],[-5.823058230582291,57.256835120162435],[-5.7942579425794065,57.27203231559136],[-5.769057690576886,57.27709804740101],[-5.740257402574031,57.27709804740101],[-5.72225722257221,57.265278006511835],[-5.64665646656465,57.265278006511835],[-5.6646566465664705,57.23994934746361],[-5.6646566465664705,57.23319503838408],[-5.657456574565742,57.22306357476478],[-5.6646566465664705,57.21293211114548],[-5.67185671856717,57.20448922479608],[-5.689856898568991,57.189292029367124],[-5.725857258572574,57.172406256668296],[-5.743857438574366,57.16902910212852],[-5.783457834578343,57.16565194758877],[-5.790657906579071,57.158897638509245],[-5.790657906579071,57.136946134000766],[-5.801458014580135,57.12343751584169],[-5.823058230582291,57.11499462949229],[-5.841058410584111,57.10824032041276],[-5.851858518585175,57.10317458860311],[-5.859058590585903,57.09473170225368],[-5.920259202592007,57.05082869323675],[-5.934659346593463,57.04069722961745],[-5.952659526595255,57.033942920537925],[-6.006660066600659,57.02887718872827],[-6.021060210602087,57.03225434326802],[-6.031860318603179,57.0440743841572],[-6.028260282602815,57.06264873412593],[-5.999459994599931,57.08460023863441],[-6.003060030600295,57.09304312498381],[-6.003060030600295,57.09979743406333],[-5.995859958599567,57.10148601133321],[-5.995859958599567,57.104863165872985],[-5.988659886598867,57.11330605222241],[-5.988659886598867,57.118371784032036],[-5.981459814598139,57.12343751584169],[-5.963459634596347,57.14201186581042],[-5.952659526595255,57.14876617488994],[-5.941859418594191,57.15552048396947],[-5.844658446584447,57.180849143017696],[-5.844658446584447,57.18760345209725],[-5.873458734587331,57.17916056574782],[-5.902259022590215,57.17578341120807],[-5.985059850598503,57.17409483393817],[-5.9922599225992315,57.17747198847795],[-5.9922599225992315,57.1825377202876],[-5.9922599225992315,57.190980606637],[-5.995859958599567,57.19604633844665],[-6.021060210602087,57.21799784295513],[-6.031860318603179,57.22644072930453],[-6.042660426604272,57.229817883844305],[-6.0390603906039075,57.219686420225],[-6.0354603546035435,57.2112435338756],[-6.024660246602451,57.19604633844665],[-6.0354603546035435,57.180849143017696],[-6.0390603906039075,57.17409483393817],[-6.049860498604971,57.16902910212852],[-6.042660426604272,57.16058621577912],[-6.0570605706056995,57.15214332942969],[-6.064260642606428,57.14201186581042],[-6.075060750607491,57.131880402191115],[-6.089460894608948,57.126814670381464],[-6.1002610026100115,57.13525755673086],[-6.10746107461074,57.153831906699594],[-6.111061110611104,57.17409483393817],[-6.114661146611468,57.18760345209725],[-6.1218612186121675,57.194357761176775],[-6.1254612546125315,57.19604633844665],[-6.13266132661326,57.1926691839069],[-6.139861398613988,57.18760345209725],[-6.1470614706146876,57.194357761176775],[-6.154261542615416,57.199423492986426],[-6.165061650616508,57.2011120702563],[-6.175861758617572,57.202800647526175],[-6.175861758617572,57.19604633844665],[-6.161461614616144,57.18760345209725],[-6.175861758617572,57.180849143017696],[-6.319863198631992,57.16058621577912],[-6.319863198631992,57.16902910212852],[-6.305463054630536,57.17409483393817],[-6.276662766627652,57.19604633844665],[-6.276662766627652,57.202800647526175],[-6.294662946629472,57.202800647526175],[-6.312663126631264,57.199423492986426],[-6.330663306633056,57.194357761176775],[-6.3450634506345125,57.18760345209725],[-6.363063630636304,57.20448922479608],[-6.381063810638096,57.22306357476478],[-6.370263702637033,57.22644072930453],[-6.35946359463594,57.229817883844305],[-6.352263522635212,57.234883615653956],[-6.3450634506345125,57.243326502003356],[-6.391863918639189,57.23994934746361],[-6.4098640986409805,57.243326502003356],[-6.456664566645657,57.27709804740101],[-6.456664566645657,57.28047520194079],[-6.463864638646385,57.29060666556009],[-6.467464674646749,57.29398382009984],[-6.471064710647113,57.29904955190949],[-6.4746647466474485,57.30073812917939],[-6.478264782647813,57.30411528371914],[-6.481864818648177,57.31255817006857],[-6.435064350643501,57.3294439427674],[-6.417064170641709,57.33450967457702],[-6.395463954639553,57.332821097307146],[-6.377463774637732,57.32437821095775],[-6.35946359463594,57.31255817006857],[-6.337863378633784,57.30073812917939],[-6.312663126631264,57.297360974639616],[-6.323463234632328,57.31086959279867],[-6.3882638826388245,57.33957540638667],[-6.399063990639888,57.3480182927361],[-6.406264062640616,57.35139544727585],[-6.417064170641709,57.35308402454575],[-6.427864278642772,57.35139544727585],[-6.449464494644928,57.346329715466226],[-6.463864638646385,57.346329715466226],[-6.449464494644928,57.35308402454575],[-6.449464494644928,57.35983833362528],[-6.456664566645657,57.36152691089515],[-6.4746647466474485,57.3665926427048],[-6.467464674646749,57.368281219974676],[-6.467464674646749,57.36996979724458],[-6.463864638646385,57.37334695178433],[-6.471064710647113,57.376724106324104],[-6.478264782647813,57.381789838133756],[-6.481864818648177,57.390232724483155],[-6.4746647466474485,57.40036418810246],[-6.489064890648905,57.39867561083258],[-6.510665106651061,57.385166992673504],[-6.525065250652489,57.38010126086385],[-6.517865178651789,57.390232724483155],[-6.517865178651789,57.39867561083258],[-6.521465214652153,57.40711849718198],[-6.532265322653217,57.41556138353141],[-6.539465394653945,57.40205276537233],[-6.550265502655009,57.39867561083258],[-6.561065610656101,57.39529845629281],[-6.571865718657193,57.38685556994341],[-6.571865718657193,57.376724106324104],[-6.561065610656101,57.3581497563554],[-6.564665646656465,57.346329715466226]]],[[[19.038790387903873,57.86810009185996],[19.049590495904965,57.86303436005031],[19.07839078390785,57.8343285464623],[19.085590855908578,57.8258856601129],[19.013590135901353,57.822508505573126],[18.984789847898497,57.8073113101442],[18.981189811898133,57.77016261020677],[18.97038970389704,57.78029407382607],[18.955989559895613,57.78535980563572],[18.948789487894885,57.781982651095944],[18.948789487894885,57.77016261020677],[18.937989379893793,57.76340830112724],[18.930789307893093,57.751588260238066],[18.930789307893093,57.74145679661876],[18.941589415894157,57.72963675572959],[18.90198901989021,57.724571023919935],[18.865988659886597,57.72288244665006],[18.85158851588517,57.72625960118981],[18.833588335883377,57.73470248753924],[18.81918819188192,57.73639106480911],[18.808388083880857,57.73470248753924],[18.804788047880493,57.72794817845971],[18.808388083880857,57.719505292110284],[18.811988119881192,57.70937382849098],[18.797587975879765,57.675602283093326],[18.779587795877973,57.6502736240451],[18.772387723877245,57.640142160425796],[18.76878768787688,57.635076428616145],[18.765187651876516,57.626633542266745],[18.761587615876152,57.61650207864744],[18.76878768787688,57.61481350137757],[18.811988119881192,57.60805919229804],[18.80118801188013,57.591173419599215],[18.7939879398794,57.577664801440136],[18.790387903879036,57.564156183281085],[18.790387903879036,57.54895898785213],[18.783187831878337,57.53545036969308],[18.76878768787688,57.52025317426413],[18.761587615876152,57.50843313337495],[18.77598775987761,57.49830166975565],[18.76878768787688,57.48141589705682],[18.772387723877245,57.47297301070742],[18.786787867878672,57.46790727889777],[18.804788047880493,57.46959585616764],[18.797587975879765,57.46453012435799],[18.790387903879036,57.44933292892907],[18.829988299883013,57.439201465309765],[18.86958869588696,57.43582431076999],[18.873188731887325,57.439201465309765],[18.873188731887325,57.44595577438929],[18.880388803888053,57.44933292892907],[18.891188911889117,57.44595577438929],[18.909189091890937,57.439201465309765],[18.912789127891273,57.43582431076999],[18.919989199892,57.42907000169046],[18.92718927189273,57.41893853807116],[18.930789307893093,57.403741342642235],[18.92718927189273,57.39192130175306],[18.909189091890937,57.38685556994341],[18.880388803888053,57.38685556994341],[18.87678876788769,57.38854414721328],[18.862388623886233,57.39360987902293],[18.858788587885897,57.39360987902293],[18.85158851588517,57.39192130175306],[18.840788407884077,57.38347841540363],[18.833588335883377,57.38010126086385],[18.80118801188013,57.376724106324104],[18.76878768787688,57.36490406543493],[18.739987399873996,57.3480182927361],[18.71838718387184,57.3294439427674],[18.678786787867892,57.31086959279867],[18.6679866798668,57.297360974639616],[18.67518675186753,57.27709804740101],[18.682386823868256,57.27540947013114],[18.703987039870412,57.27709804740101],[18.711187111871112,57.27372089286126],[18.714787147871476,57.243326502003356],[18.678786787867892,57.23319503838408],[18.678786787867892,57.229817883844305],[18.59238592385924,57.21799784295513],[18.563585635856356,57.2095549566057],[18.563585635856356,57.202800647526175],[18.577985779857812,57.202800647526175],[18.577985779857812,57.19604633844665],[18.556385563855656,57.1926691839069],[18.430384303843056,57.153831906699594],[18.405184051840536,57.14370044308029],[18.387183871838715,57.126814670381464],[18.455584555845576,57.126814670381464],[18.430384303843056,57.11668320676216],[18.35838358383586,57.096420279523585],[18.343983439834403,57.082911661364506],[18.336783367833675,57.03056576599815],[18.347583475834767,57.01874572510897],[18.36558365583656,57.011991416029446],[18.40158401584017,57.00354852968002],[18.343983439834403,57.00354852968002],[18.343983439834403,56.99679422060049],[18.35838358383586,56.99003991152097],[18.33318333183334,56.976531293361916],[18.322383223832247,56.96977698428236],[18.311583115831155,56.94782547977388],[18.297182971829727,56.94107117069436],[18.203582035820375,56.91574251164613],[18.171181711817127,56.91236535710635],[18.13878138781388,56.922496820725655],[18.203582035820375,56.98666275698119],[18.20718207182074,56.99510564333062],[18.203582035820375,57.00523710694992],[18.19998199982001,57.0170571478391],[18.21438214382144,57.0255000341885],[18.25038250382505,57.033942920537925],[18.26478264782648,57.04069722961745],[18.271982719827207,57.0542058477765],[18.2827828278283,57.08122308409463],[18.289982899829,57.09304312498381],[18.26478264782648,57.08460023863441],[18.243182431824323,57.069403043205455],[18.221582215822167,57.06096015685603],[18.19998199982001,57.06602588866568],[18.19998199982001,57.0727801977452],[18.21438214382144,57.08122308409463],[18.22518225182253,57.09473170225368],[18.228782287822895,57.10824032041276],[18.21438214382144,57.11330605222241],[18.217982179821803,57.118371784032036],[18.22518225182253,57.12850324765134],[18.228782287822895,57.13356897946099],[18.185581855818555,57.145389020350166],[18.160381603816035,57.229817883844305],[18.09918099180993,57.25852369743231],[18.102781027810295,57.278786624670914],[18.117181171811723,57.297360974639616],[18.153181531815335,57.314246747338444],[18.167581675816763,57.33113252003727],[18.171181711817127,57.35139544727585],[18.167581675816763,57.3665926427048],[18.178381783817855,57.38010126086385],[18.178381783817855,57.385166992673504],[18.167581675816763,57.38854414721328],[18.160381603816035,57.39360987902293],[18.1567815678157,57.39867561083258],[18.145981459814607,57.408807074451886],[18.145981459814607,57.41387280626151],[18.145981459814607,57.425692847150685],[18.142381423814243,57.43244715623024],[18.13158131581318,57.44595577438929],[18.120781207812087,57.46453012435799],[18.11358113581136,57.488170206136346],[18.11358113581136,57.51181028791473],[18.127981279812815,57.54895898785213],[18.160381603816035,57.577664801440136],[18.32598325983261,57.67222512855358],[18.462784627846275,57.80393415560442],[18.498784987849888,57.8258856601129],[18.549185491854928,57.83939427827195],[18.563585635856356,57.83770570100208],[18.577985779857812,57.83263996919243],[18.595985959859604,57.830951391922554],[18.610386103861032,57.836017123732205],[18.613986139861396,57.84277143281173],[18.621186211862124,57.857968628240684],[18.624786247862488,57.86810009185996],[18.639186391863916,57.88667444182869],[18.657186571865736,57.901871637257614],[18.678786787867892,57.91369167814679],[18.70038700387005,57.92213456449622],[18.72558725587257,57.92382314176609],[18.74358743587436,57.91875740995644],[18.757987579875817,57.906937369067265],[18.76878768787688,57.88836301909856],[18.76878768787688,57.88329728728891],[18.76878768787688,57.87823155547926],[18.765187651876516,57.87485440093948],[18.761587615876152,57.871477246399735],[18.765187651876516,57.86472293732021],[18.76878768787688,57.86303436005031],[18.772387723877245,57.85965720551056],[18.77598775987761,57.85628005097078],[18.779587795877973,57.84783716462138],[18.783187831878337,57.83939427827195],[18.804788047880493,57.8258856601129],[18.811988119881192,57.85121431916113],[18.82638826388265,57.86303436005031],[18.84438844388444,57.87316582366961],[18.85158851588517,57.89174017363831],[18.847988479884805,57.89680590544796],[18.840788407884077,57.90524879179739],[18.837188371883713,57.912003100876916],[18.85158851588517,57.91538025541669],[18.912789127891273,57.92213456449622],[18.912789127891273,57.91538025541669],[18.898388983889845,57.898494482717865],[18.916389163891637,57.88836301909856],[18.941589415894157,57.88836301909856],[18.941589415894157,57.901871637257614],[18.955989559895613,57.90862594633714],[18.97758977589777,57.912003100876916],[18.99558995589956,57.912003100876916],[19.009990099901017,57.90862594633714],[19.00279002790029,57.901871637257614],[19.006390063900653,57.893428750908214],[19.013590135901353,57.88160871001904],[19.024390243902445,57.871477246399735],[19.038790387903873,57.86810009185996]]],[[[-6.95346953469533,57.74314537388864],[-6.975069750697514,57.733013910269364],[-6.982269822698214,57.73470248753924],[-7.032670326703254,57.76678545566699],[-7.039870398703982,57.77016261020677],[-7.101071010710115,57.81068846468395],[-7.1118711187111785,57.8157541964936],[-7.119071190711907,57.822508505573126],[-7.126271262712635,57.830951391922554],[-7.126271262712635,57.83770570100208],[-7.108271082710814,57.83939427827195],[-7.097470974709751,57.83770570100208],[-7.0902709027090225,57.83263996919243],[-7.083070830708294,57.8258856601129],[-7.07947079470793,57.81237704195382],[-6.99666996669967,57.85290289643103],[-6.985869858698578,57.86472293732021],[-6.960669606696058,57.86810009185996],[-6.913869138691382,57.86810009185996],[-6.964269642696422,57.88836301909856],[-6.964269642696422,57.89511732817809],[-6.910269102691018,57.91031452360704],[-6.881468814688134,57.91369167814679],[-6.85266852668525,57.91031452360704],[-6.831068310683094,57.901871637257614],[-6.841868418684186,57.906937369067265],[-6.85266852668525,57.912003100876916],[-6.859868598685978,57.91538025541669],[-6.863468634686342,57.91875740995644],[-6.867068670686706,57.92213456449622],[-6.84546845468455,57.92720029630587],[-6.838268382683822,57.928888873575744],[-6.838268382683822,57.93564318265527],[-6.89586895868959,57.93564318265527],[-6.910269102691018,57.939020337195046],[-6.935469354693538,57.95421753262397],[-6.95346953469533,57.955906109893874],[-7.011070110701098,57.955906109893874],[-7.036270362703618,57.960971841703525],[-7.043470434704346,57.97616903713245],[-7.057870578705774,57.9711033053228],[-7.065070650706502,57.9711033053228],[-7.1118711187111785,57.98967765529153],[-7.097470974709751,57.99812054164093],[-7.083070830708294,58.00656342799036],[-7.072270722707231,58.01162915980001],[-7.050670506705075,58.01162915980001],[-7.050670506705075,58.01669489160963],[-7.05427054270541,58.02007204614941],[-7.057870578705774,58.02176062341928],[-7.057870578705774,58.02513777795906],[-7.02907029070289,58.026826355228934],[-6.99666996669967,58.03358066430846],[-6.935469354693538,58.05215501427719],[-7.02907029070289,58.03864639611811],[-7.057870578705774,58.03864639611811],[-7.05427054270541,58.04708928246754],[-7.0470704707047105,58.05215501427719],[-7.036270362703618,58.053843591547064],[-7.0254702547025545,58.05215501427719],[-7.0254702547025545,58.058909323356716],[-7.050670506705075,58.058909323356716],[-7.043470434704346,58.062286477896464],[-7.036270362703618,58.06566363243624],[-7.02907029070289,58.072417941515766],[-7.0254702547025545,58.07917225059529],[-7.0686706867068665,58.062286477896464],[-7.075870758707595,58.062286477896464],[-7.10467104671045,58.094369446024245],[-7.1118711187111785,58.0994351778339],[-7.108271082710814,58.11125521872307],[-7.1118711187111785,58.116320950532725],[-7.122671226712271,58.1180095278026],[-7.126271262712635,58.124763836882124],[-7.122671226712271,58.13658387777133],[-7.1118711187111785,58.14502676412073],[-7.1118711187111785,58.15515822774003],[-7.10467104671045,58.156846805009906],[-7.101071010710115,58.16022395954968],[-7.097470974709751,58.16360111408943],[-7.093870938709387,58.16866684589908],[-7.101071010710115,58.17035542316896],[-7.108271082710814,58.17373257770873],[-7.1118711187111785,58.17542115497861],[-7.1118711187111785,58.18217546405816],[-7.036270362703618,58.183864041328036],[-7.018270182701826,58.18892977313769],[-7.043470434704346,58.19568408221721],[-7.05427054270541,58.200749814026864],[-7.057870578705774,58.21256985491604],[-7.05427054270541,58.22607847307509],[-7.050670506705075,58.23283278215462],[-7.032670326703254,58.24465282304382],[-7.014670146701462,58.23789851396427],[-6.97866978669785,58.227767050344994],[-6.967869678696786,58.22607847307509],[-6.960669606696058,58.22945562761487],[-6.906669066690654,58.21594700945579],[-6.906669066690654,58.20919270037626],[-6.935469354693538,58.210881277646166],[-6.931869318693174,58.19737265948709],[-6.910269102691018,58.18048688678826],[-6.89586895868959,58.17204400043886],[-6.899468994689954,58.156846805009906],[-6.888668886688862,58.13658387777133],[-6.874268742687434,58.116320950532725],[-6.859868598685978,58.10618948691342],[-6.859868598685978,58.116320950532725],[-6.863468634686342,58.121386682342376],[-6.859868598685978,58.13489530050143],[-6.867068670686706,58.14164960958095],[-6.881468814688134,58.15853538227978],[-6.888668886688862,58.16866684589908],[-6.87786877868777,58.17204400043886],[-6.874268742687434,58.178798309518385],[-6.874268742687434,58.18555261859791],[-6.87066870668707,58.18892977313769],[-6.823868238682394,58.19568408221721],[-6.816668166681666,58.19906123675699],[-6.798667986679874,58.20243839129674],[-6.773467734677354,58.19568408221721],[-6.748267482674834,58.18217546405816],[-6.7374673746737415,58.16866684589908],[-6.708667086670857,58.18892977313769],[-6.733867338673377,58.19737265948709],[-6.74466744667447,58.20243839129674],[-6.748267482674834,58.20919270037626],[-6.751867518675169,58.22438989580522],[-6.755467554675533,58.23114420488474],[-6.7626676266762615,58.23114420488474],[-6.777067770677689,58.22945562761487],[-6.7842678426784175,58.23114420488474],[-6.7842678426784175,58.23283278215462],[-6.787867878678782,58.241275668504045],[-6.791467914679146,58.24465282304382],[-6.8022680226802095,58.25309570939322],[-6.809468094680938,58.25816144120287],[-6.813068130681302,58.2649157502824],[-6.8058680586805735,58.26660432755227],[-6.8022680226802095,58.268292904822175],[-6.798667986679874,58.271670059361924],[-6.791467914679146,58.271670059361924],[-6.79506795067951,58.27842436844145],[-6.8022680226802095,58.2834901002511],[-6.809468094680938,58.285178677521],[-6.82026820268203,58.285178677521],[-6.7374673746737415,58.32401595472828],[-6.7158671586715855,58.339213150157235],[-6.705067050670493,58.33583599561749],[-6.6942669426694295,58.339213150157235],[-6.690666906669065,58.34259030469701],[-6.679866798667973,58.34596745923676],[-6.647466474664753,58.34596745923676],[-6.622266222662233,58.35103319104641],[-6.557465574655737,58.36791896374524],[-6.550265502655009,58.37298469555489],[-6.525065250652489,58.39155904552359],[-6.3450634506345125,58.46247929085868],[-6.294662946629472,58.49793941352621],[-6.265862658626588,58.51144803168526],[-6.244262442624432,58.51144803168526],[-6.222662226622248,58.499627990796085],[-6.204662046620456,58.48105364082738],[-6.193861938619392,58.46247929085868],[-6.186661866618664,58.44559351815985],[-6.168661686616872,58.4303963227309],[-6.165061650616508,58.4202648591116],[-6.186661866618664,58.415199127301975],[-6.193861938619392,58.40844481822242],[-6.215462154621548,58.36791896374524],[-6.20826208262082,58.361164654665714],[-6.193861938619392,58.35609892285606],[-6.1830618306183,58.35441034558619],[-6.168661686616872,58.35441034558619],[-6.168661686616872,58.34596745923676],[-6.190261902619028,58.34090172742711],[-6.23346233462334,58.32232737745841],[-6.251462514625132,58.312195913839105],[-6.244262442624432,58.303753027489705],[-6.247862478624768,58.29699871841018],[-6.255062550625496,58.2936215638704],[-6.265862658626588,58.29193298660053],[-6.280262802628016,58.28855583206075],[-6.287462874628744,58.2750472139017],[-6.316263162631628,58.268292904822175],[-6.319863198631992,58.26153859574262],[-6.316263162631628,58.25140713212335],[-6.319863198631992,58.24465282304382],[-6.327063270632692,58.23958709123417],[-6.337863378633784,58.23789851396427],[-6.3666636666366685,58.23789851396427],[-6.348663486634848,58.22101274126544],[-6.3090630906309,58.214258432185915],[-6.269462694626952,58.21594700945579],[-6.244262442624432,58.22270131853534],[-6.193861938619392,58.25140713212335],[-6.179461794617936,58.254784286663096],[-6.161461614616144,58.25816144120287],[-6.150661506615052,58.25816144120287],[-6.161461614616144,58.25140713212335],[-6.161461614616144,58.24465282304382],[-6.154261542615416,58.24465282304382],[-6.15786157861578,58.23958709123417],[-6.165061650616508,58.23283278215462],[-6.168661686616872,58.23114420488474],[-6.165061650616508,58.22607847307509],[-6.161461614616144,58.21594700945579],[-6.186661866618664,58.20919270037626],[-6.193861938619392,58.205815545836515],[-6.201062010620092,58.20243839129674],[-6.211862118621184,58.192306927677436],[-6.215462154621548,58.18892977313769],[-6.23346233462334,58.183864041328036],[-6.247862478624768,58.18555261859791],[-6.276662766627652,58.19568408221721],[-6.294662946629472,58.19906123675699],[-6.337863378633784,58.19568408221721],[-6.355863558635576,58.19906123675699],[-6.38466384663846,58.20919270037626],[-6.399063990639888,58.20919270037626],[-6.377463774637732,58.17373257770873],[-6.3666636666366685,58.16191253681956],[-6.373863738637368,58.156846805009906],[-6.377463774637732,58.15346965047013],[-6.377463774637732,58.148403918660506],[-6.373863738637368,58.14164960958095],[-6.391863918639189,58.13320672323155],[-6.442264422644229,58.1281409914219],[-6.4746647466474485,58.10450090964355],[-6.489064890648905,58.0994351778339],[-6.499864998649969,58.10112375510377],[-6.514265142651425,58.10618948691342],[-6.525065250652489,58.10618948691342],[-6.550265502655009,58.09268086875437],[-6.604266042660413,58.085926559674846],[-6.618666186661869,58.085926559674846],[-6.618666186661869,58.07917225059529],[-6.582665826658257,58.07917225059529],[-6.4530645306452925,58.09605802329412],[-6.420664206642073,58.10618948691342],[-6.406264062640616,58.10618948691342],[-6.395463954639553,58.10112375510377],[-6.38466384663846,58.09099229148447],[-6.377463774637732,58.07917225059529],[-6.381063810638096,58.06566363243624],[-6.377463774637732,58.06397505516637],[-6.3666636666366685,58.058909323356716],[-6.373863738637368,58.05215501427719],[-6.381063810638096,58.04877785973741],[-6.391863918639189,58.04708928246754],[-6.399063990639888,58.045400705197636],[-6.3882638826388245,58.04202355065789],[-6.377463774637732,58.03864639611811],[-6.3666636666366685,58.03864639611811],[-6.352263522635212,58.03864639611811],[-6.370263702637033,58.026826355228934],[-6.38466384663846,58.01669489160963],[-6.402664026640252,58.00656342799036],[-6.424264242642408,58.00318627345058],[-6.517865178651789,58.01331773706988],[-6.539465394653945,58.01669489160963],[-6.546665466654673,58.01669489160963],[-6.550265502655009,58.009940582530106],[-6.543065430654309,58.004874850720455],[-6.521465214652153,58.00149769618071],[-6.503465034650333,57.99305480983128],[-6.471064710647113,57.98630050075175],[-6.456664566645657,57.97616903713245],[-6.456664566645657,57.969414728052925],[-6.463864638646385,57.96603757351318],[-6.481864818648177,57.94915180081435],[-6.489064890648905,57.942397491734795],[-6.507065070650697,57.93564318265527],[-6.521465214652153,57.937331759925144],[-6.532265322653217,57.94070891446492],[-6.550265502655009,57.942397491734795],[-6.550265502655009,57.93564318265527],[-6.546665466654673,57.933954605385395],[-6.543065430654309,57.93057745084562],[-6.535865358653581,57.928888873575744],[-6.535865358653581,57.92213456449622],[-6.561065610656101,57.91538025541669],[-6.579065790657893,57.91706883268657],[-6.593465934659349,57.92551171903597],[-6.607866078660777,57.93564318265527],[-6.615066150661505,57.94915180081435],[-6.622266222662233,57.95421753262397],[-6.629466294662933,57.955906109893874],[-6.636666366663661,57.95084037808422],[-6.629466294662933,57.94070891446492],[-6.618666186661869,57.928888873575744],[-6.611466114661141,57.92213456449622],[-6.618666186661869,57.91538025541669],[-6.651066510665089,57.92382314176609],[-6.661866618666181,57.928888873575744],[-6.665466654666545,57.933954605385395],[-6.6726667266672735,57.94577464627457],[-6.701467014670129,57.97616903713245],[-6.708667086670857,57.98967765529153],[-6.708667086670857,58.00318627345058],[-6.6942669426694295,58.03020350976871],[-6.665466654666545,58.045400705197636],[-6.629466294662933,58.05046643700729],[-6.593465934659349,58.05215501427719],[-6.593465934659349,58.058909323356716],[-6.687066870668701,58.058909323356716],[-6.687066870668701,58.05215501427719],[-6.6942669426694295,58.04033497338801],[-6.7158671586715855,58.02513777795906],[-6.74466744667447,58.009940582530106],[-6.7626676266762615,58.00318627345058],[-6.751867518675169,57.99305480983128],[-6.730267302673013,57.9626604189734],[-6.7194671946719495,57.955906109893874],[-6.705067050670493,57.9525289553541],[-6.6942669426694295,57.94577464627457],[-6.683466834668337,57.93564318265527],[-6.6726667266672735,57.928888873575744],[-6.679866798667973,57.92720029630587],[-6.683466834668337,57.92382314176609],[-6.687066870668701,57.92213456449622],[-6.6942669426694295,57.92213456449622],[-6.690666906669065,57.91538025541669],[-6.679866798667973,57.912003100876916],[-6.6726667266672735,57.91031452360704],[-6.669066690666909,57.90862594633714],[-6.665466654666545,57.901871637257614],[-6.661866618666181,57.879920132749135],[-6.74466744667447,57.89174017363831],[-6.777067770677689,57.901871637257614],[-6.787867878678782,57.898494482717865],[-6.791467914679146,57.893428750908214],[-6.798667986679874,57.88667444182869],[-6.8058680586805735,57.879920132749135],[-6.79506795067951,57.876542978209386],[-6.773467734677354,57.871477246399735],[-6.7626676266762615,57.86810009185996],[-6.7410674106741055,57.844460010081605],[-6.7374673746737415,57.83939427827195],[-6.7410674106741055,57.830951391922554],[-6.755467554675533,57.8258856601129],[-6.773467734677354,57.82419708284303],[-6.791467914679146,57.8258856601129],[-6.791467914679146,57.81913135103338],[-6.7842678426784175,57.81913135103338],[-6.7842678426784175,57.81237704195382],[-6.8058680586805735,57.814065619223726],[-6.85266852668525,57.83263996919243],[-6.859868598685978,57.8258856601129],[-6.85266852668525,57.82419708284303],[-6.84546845468455,57.8157541964936],[-6.838268382683822,57.81237704195382],[-6.849068490684914,57.80224557833455],[-6.859868598685978,57.795491269255024],[-6.888668886688862,57.78535980563572],[-6.881468814688134,57.78367122836582],[-6.87786877868777,57.78029407382607],[-6.874268742687434,57.778605496556196],[-6.892268922689226,57.76678545566699],[-6.95346953469533,57.74314537388864]]],[[[20.20880208802089,60.22535396061622],[20.223202232022317,60.210156765187264],[20.230402304023045,60.20509103337761],[20.21960219602198,60.201713878837865],[20.20880208802089,60.201713878837865],[20.20160201602016,60.20002530156796],[20.190801908019097,60.193270992488436],[20.187201872018733,60.18651668340891],[20.17640176401764,60.17300806524986],[20.172801728017276,60.16963091071008],[20.162001620016213,60.16794233344021],[20.154801548015485,60.16963091071008],[20.147601476014756,60.174696642519734],[20.136801368013693,60.17638521978961],[20.097200972009716,60.17638521978961],[20.086400864008652,60.18145095159926],[20.090000900009017,60.19664814702821],[20.097200972009716,60.210156765187264],[20.10080100801008,60.22028822880657],[20.122401224012236,60.23041969242587],[20.172801728017276,60.23210826969574],[20.187201872018733,60.245616887854794],[20.147601476014756,60.245616887854794],[20.111601116011173,60.23886257877527],[20.08280082800829,60.223665383346344],[20.064800648006496,60.18989383794869],[20.05760057600577,60.18989383794869],[20.061200612006132,60.215222496996915],[20.046800468004676,60.22704253788609],[20.032400324003248,60.237174001505394],[20.02520025200252,60.2557483514741],[20.036000360003612,60.272634124172924],[20.05760057600577,60.29289705141153],[20.061200612006132,60.30978282411036],[20.02520025200252,60.313159978650106],[20.02520025200252,60.30640566957058],[20.032400324003248,60.2945856286814],[20.02520025200252,60.2760112787127],[20.003600036000364,60.26756839236327],[19.97479974799748,60.27938843325245],[19.978399783997844,60.26081408328375],[19.9927999279993,60.242239733315046],[20.014400144001456,60.22535396061622],[20.028800288002884,60.21691107426679],[20.021600216002156,60.210156765187264],[20.014400144001456,60.201713878837865],[20.014400144001456,60.193270992488436],[20.01800018000182,60.183139528869134],[19.963999639996416,60.19495956975834],[19.94959949599496,60.20509103337761],[19.953199531995324,60.210156765187264],[19.956799567995688,60.21353391972704],[19.953199531995324,60.22535396061622],[19.927999279992804,60.22197680607644],[19.913599135991376,60.21859965153669],[19.91719917199174,60.20846818791739],[19.927999279992804,60.19664814702821],[19.94239942399426,60.18651668340891],[19.960399603996052,60.179762374329385],[19.985599855998572,60.17300806524986],[19.996399963999636,60.166253756170306],[20.003600036000364,60.15949944709078],[20.010800108001092,60.15612229255103],[20.021600216002156,60.157810869820906],[20.028800288002884,60.16287660163056],[20.036000360003612,60.16963091071008],[20.04320043200434,60.17638521978961],[20.032400324003248,60.144302251661856],[20.028800288002884,60.1291050562329],[20.028800288002884,60.11559643807385],[20.032400324003248,60.112219283534074],[20.039600396003976,60.1088421289943],[20.046800468004676,60.10546497445455],[20.05040050400504,60.09702208810512],[20.04320043200434,60.08689062448585],[20.032400324003248,60.08689062448585],[20.007200072000728,60.09364493356537],[19.96759967599678,60.09195635629547],[19.94959949599496,60.08351346994607],[19.953199531995324,60.07000485178702],[19.956799567995688,60.05311907908819],[19.94959949599496,60.04805334727854],[19.938799387993896,60.049741924548414],[19.94239942399426,60.059873388167716],[19.92439924399244,60.09195635629547],[19.909999099991012,60.1003992426449],[19.884798847988492,60.1003992426449],[19.8739987399874,60.09702208810512],[19.870398703987036,60.090267779025595],[19.8667986679867,60.085202047215944],[19.85959859598597,60.08013631540629],[19.845198451984515,60.07844773813642],[19.830798307983088,60.08013631540629],[19.82359823598236,60.08351346994607],[19.82359823598236,60.09364493356537],[19.805598055980568,60.1003992426449],[19.787597875978776,60.09702208810512],[19.77319773197732,60.08689062448585],[19.762397623976256,60.07338200632677],[19.7479974799748,60.10208781991477],[19.711997119971215,60.14599082893173],[19.693996939969395,60.16963091071008],[19.686796867968695,60.20002530156796],[19.68319683196833,60.21184534245714],[19.67239672396724,60.21691107426679],[19.668796687966875,60.22535396061622],[19.64719647196472,60.2658798150934],[19.66519665196654,60.2658798150934],[19.68319683196833,60.264191237823525],[19.69039690396906,60.2557483514741],[19.686796867968695,60.23886257877527],[19.69759697596976,60.24899404239457],[19.701197011970123,60.26081408328375],[19.70839708397085,60.269256969633176],[19.719197191971915,60.272634124172924],[19.73359733597337,60.2743227014428],[19.769597695976955,60.286142742332004],[19.762397623976256,60.29120847414163],[19.75879758797589,60.29627420595128],[19.7479974799748,60.30640566957058],[19.769597695976955,60.30302851503083],[19.776797767977683,60.299651360491055],[19.78399783997841,60.30302851503083],[19.787597875978776,60.30302851503083],[19.794797947979475,60.299651360491055],[19.780397803978047,60.27094554690305],[19.76599765997662,60.24899404239457],[19.769597695976955,60.24055115604517],[19.776797767977683,60.23379684696562],[19.78399783997841,60.22535396061622],[19.79119791197914,60.20002530156796],[19.79839798397984,60.193270992488436],[19.812798127981296,60.18989383794869],[19.819998199981995,60.19664814702821],[19.82359823598236,60.20846818791739],[19.819998199981995,60.22197680607644],[19.81639816398166,60.23210826969574],[19.83439834398345,60.22704253788609],[19.852398523985244,60.21691107426679],[19.85959859598597,60.245616887854794],[19.881198811988128,60.25912550601387],[19.884798847988492,60.272634124172924],[19.884798847988492,60.29289705141153],[19.89199891998922,60.30640566957058],[19.89919899198992,60.29120847414163],[19.89919899198992,60.2844541650621],[19.89919899198992,60.2760112787127],[19.906399063990648,60.272634124172924],[19.91719917199174,60.272634124172924],[19.927999279992804,60.277699855982576],[19.935199351993532,60.28276558779223],[19.931599315993168,60.299651360491055],[19.92439924399244,60.31484855592001],[19.913599135991376,60.32498001953928],[19.89919899198992,60.33342290588871],[19.89199891998922,60.340177214968236],[19.888398883988856,60.34524294677789],[19.884798847988492,60.34524294677789],[19.877598775987764,60.33680006042846],[19.8667986679867,60.31991428772963],[19.855998559985608,60.313159978650106],[19.84879848798488,60.31653713318988],[19.83439834398345,60.33342290588871],[19.819998199981995,60.34693152404776],[19.801998019980203,60.35368583312729],[19.776797767977683,60.35537441039719],[19.79119791197914,60.36044014220684],[19.801998019980203,60.36888302855624],[19.80919809198093,60.37901449217554],[19.81639816398166,60.389145955794845],[19.837998379983816,60.40096599668402],[19.85959859598597,60.40603172849367],[19.881198811988128,60.40603172849367],[19.906399063990648,60.402654573953896],[19.913599135991376,60.389145955794845],[19.91719917199174,60.370571605826115],[19.927999279992804,60.357062987667064],[19.971199711997116,60.362128719476715],[19.996399963999636,60.357062987667064],[20.01800018000182,60.34693152404776],[20.036000360003612,60.33342290588871],[20.028800288002884,60.35368583312729],[20.02520025200252,60.36044014220684],[20.039600396003976,60.35875156493694],[20.072000720007196,60.35030867858754],[20.08280082800829,60.35199725585741],[20.09360093600938,60.35537441039719],[20.104401044010444,60.35030867858754],[20.1260012600126,60.33342290588871],[20.17640176401764,60.32329144226941],[20.190801908019097,60.313159978650106],[20.180001800018005,60.286142742332004],[20.198001980019797,60.28951989687175],[20.20160201602016,60.29289705141153],[20.216002160021617,60.286142742332004],[20.237602376023773,60.28107701052235],[20.27720277202772,60.27938843325245],[20.241202412024137,60.245616887854794],[20.237602376023773,60.23210826969574],[20.20880208802089,60.22535396061622]]],[[[-1.096210962109609,60.41616319211295],[-1.0890108901088809,60.433048964811775],[-1.071010710107089,60.44486900570095],[-1.053010530105297,60.4499347375106],[-1.035010350103505,60.4499347375106],[-1.049410494104933,60.433048964811775],[-1.117811178111765,60.39083453306472],[-1.1250112501124931,60.384080223985194],[-1.1250112501124931,60.375637337635766],[-1.117811178111765,60.37394876036589],[-1.1106111061110653,60.37901449217554],[-1.099810998109973,60.389145955794845],[-1.096210962109609,60.39083453306472],[-1.0818108181081811,60.39590026487437],[-1.0674106741067249,60.39590026487437],[-1.0638106381063608,60.38576880125507],[-1.0638106381063608,60.38070306944542],[-1.0638106381063608,60.36888302855624],[-1.071010710107089,60.35875156493694],[-1.078210782107817,60.35537441039719],[-1.1574115741157414,60.35030867858754],[-1.1718117181171692,60.34693152404776],[-1.1502115021150132,60.33680006042846],[-1.099810998109973,60.331734328618836],[-1.074610746107453,60.321602864999534],[-1.121411214112129,60.29627420595128],[-1.1358113581135854,60.29289705141153],[-1.139411394113921,60.29120847414163],[-1.139411394113921,60.286142742332004],[-1.1358113581135854,60.27938843325245],[-1.1358113581135854,60.2760112787127],[-1.1286112861128572,60.2743227014428],[-1.121411214112129,60.27938843325245],[-1.117811178111765,60.27938843325245],[-1.1106111061110653,60.2760112787127],[-1.096210962109609,60.2743227014428],[-1.0890108901088809,60.272634124172924],[-1.1286112861128572,60.25237119693435],[-1.1466114661146491,60.24899404239457],[-1.164611646116441,60.250682619664445],[-1.1754117541175333,60.264191237823525],[-1.1826118261182614,60.272634124172924],[-1.1934119341193252,60.272634124172924],[-1.2006120061200534,60.26756839236327],[-1.1970119701196893,60.26081408328375],[-1.1934119341193252,60.2557483514741],[-1.1862118621186255,60.250682619664445],[-1.1862118621186255,60.245616887854794],[-1.1934119341193252,60.245616887854794],[-1.2042120421204174,60.24392831058492],[-1.2186121861218453,60.23886257877527],[-1.2186121861218453,60.23210826969574],[-1.1790117901178974,60.23210826969574],[-1.1862118621186255,60.22535396061622],[-1.1898118981189612,60.21859965153669],[-1.2006120061200534,60.20509103337761],[-1.1826118261182614,60.21859965153669],[-1.1718117181171692,60.22197680607644],[-1.1574115741157414,60.22535396061622],[-1.1862118621186255,60.19158241521856],[-1.1934119341193252,60.17638521978961],[-1.1754117541175333,60.188205260678785],[-1.1538115381153773,60.193270992488436],[-1.143011430114285,60.188205260678785],[-1.1574115741157414,60.16963091071008],[-1.1250112501124931,60.15612229255103],[-1.1250112501124931,60.14936798347148],[-1.1502115021150132,60.14936798347148],[-1.1502115021150132,60.14261367439195],[-1.143011430114285,60.14261367439195],[-1.143011430114285,60.13585936531243],[-1.1610116101161054,60.14092509712208],[-1.1718117181171692,60.13585936531243],[-1.1826118261182614,60.1291050562329],[-1.2006120061200534,60.1291050562329],[-1.1862118621186255,60.12235074715338],[-1.1898118981189612,60.11390786080395],[-1.1934119341193252,60.1088421289943],[-1.2042120421204174,60.10715355172442],[-1.2114121141211456,60.10715355172442],[-1.2114121141211456,60.1003992426449],[-1.2042120421204174,60.1003992426449],[-1.1862118621186255,60.09364493356537],[-1.2006120061200534,60.08351346994607],[-1.1934119341193252,60.07000485178702],[-1.1754117541175333,60.059873388167716],[-1.164611646116441,60.059873388167716],[-1.1718117181171692,60.04636477000864],[-1.1862118621186255,60.03792188365924],[-1.2042120421204174,60.03623330638936],[-1.2186121861218453,60.03961046092911],[-1.2150121501214812,60.02610184277006],[-1.1934119341193252,59.997396029182056],[-1.2006120061200534,59.98557598829288],[-1.2150121501214812,59.987264565562754],[-1.2474124741247294,59.997396029182056],[-1.2438124381243654,59.97713310194345],[-1.2438124381243654,59.95518159743497],[-1.2546125461254576,59.93660724746627],[-1.2690126901268854,59.92309862930722],[-1.2726127261272495,59.92816436111687],[-1.2762127621276136,59.929852938386745],[-1.2654126541265214,59.91803289749757],[-1.2618126181261857,59.907901433878266],[-1.2654126541265214,59.89608139298909],[-1.2762127621276136,59.88257277483004],[-1.2654126541265214,59.87412988848061],[-1.2618126181261857,59.86568700213121],[-1.2654126541265214,59.858932693051656],[-1.2762127621276136,59.85386696124203],[-1.2798127981279777,59.858932693051656],[-1.2942129421294055,59.87412988848061],[-1.3014130141301337,59.86399842486131],[-1.3122131221312259,59.86568700213121],[-1.3122131221312259,59.872441311210736],[-1.3014130141301337,59.88257277483004],[-1.3014130141301337,59.88932708390956],[-1.3158131581315615,59.89608139298909],[-1.3482134821348097,59.89270423844931],[-1.362613626136266,59.89608139298909],[-1.3770137701376939,59.907901433878266],[-1.359013590135902,59.92141005203732],[-1.362613626136266,59.93660724746627],[-1.3554135541355379,59.9450501338157],[-1.3446134461344457,59.95011586562532],[-1.3338133381333819,59.951804442895224],[-1.3230132301322897,59.951804442895224],[-1.3230132301322897,59.956870174704875],[-1.3410134101340816,59.96700163832415],[-1.3482134821348097,59.970378792863926],[-1.3482134821348097,59.97713310194345],[-1.3230132301322897,59.97713310194345],[-1.3302133021330178,59.99570745191215],[-1.3194131941319256,60.01090464734111],[-1.3014130141301337,60.027790420039935],[-1.2870128701287058,60.07507058359664],[-1.2726127261272495,60.095333510835246],[-1.2618126181261857,60.11559643807385],[-1.2690126901268854,60.14261367439195],[-1.2726127261272495,60.14599082893173],[-1.2798127981279777,60.144302251661856],[-1.2834128341283417,60.14599082893173],[-1.2906129061290414,60.15612229255103],[-1.2870128701287058,60.15949944709078],[-1.2870128701287058,60.16456517890043],[-1.2690126901268854,60.18482810613904],[-1.2798127981279777,60.18482810613904],[-1.2942129421294055,60.179762374329385],[-1.2978129781297696,60.17638521978961],[-1.3086130861308618,60.17638521978961],[-1.3122131221312259,60.18145095159926],[-1.3086130861308618,60.188205260678785],[-1.2942129421294055,60.215222496996915],[-1.2870128701287058,60.22535396061622],[-1.2762127621276136,60.23379684696562],[-1.2690126901268854,60.23886257877527],[-1.2690126901268854,60.245616887854794],[-1.2870128701287058,60.245616887854794],[-1.3014130141301337,60.23548542423552],[-1.3302133021330178,60.20509103337761],[-1.3446134461344457,60.22704253788609],[-1.359013590135902,60.24392831058492],[-1.3770137701376939,60.25405977420422],[-1.409414094140942,60.25912550601387],[-1.409414094140942,60.250682619664445],[-1.3914139141391217,60.2473054651247],[-1.3770137701376939,60.237174001505394],[-1.362613626136266,60.22535396061622],[-1.3482134821348097,60.21184534245714],[-1.3554135541355379,60.19664814702821],[-1.3770137701376939,60.206779610647516],[-1.384213842138422,60.210156765187264],[-1.3986139861398499,60.21184534245714],[-1.3986139861398499,60.193270992488436],[-1.405814058140578,60.179762374329385],[-1.4130141301413062,60.17638521978961],[-1.4202142021420059,60.18989383794869],[-1.431014310143098,60.18482810613904],[-1.4346143461434622,60.174696642519734],[-1.4382143821438262,60.16287660163056],[-1.445414454144526,60.15612229255103],[-1.4562145621456182,60.15612229255103],[-1.495814958149566,60.16963091071008],[-1.495814958149566,60.17300806524986],[-1.5174151741517221,60.18482810613904],[-1.5210152101520862,60.183139528869134],[-1.5282152821528143,60.193270992488436],[-1.5282152821528143,60.19833672429809],[-1.5210152101520862,60.20509103337761],[-1.5102151021510224,60.210156765187264],[-1.4778147781477742,60.21353391972704],[-1.467014670146682,60.21691107426679],[-1.4778147781477742,60.22197680607644],[-1.5030150301502943,60.24392831058492],[-1.5066150661506583,60.23548542423552],[-1.5138151381513865,60.22197680607644],[-1.5246152461524503,60.21184534245714],[-1.5354153541535425,60.210156765187264],[-1.5426154261542422,60.22028822880657],[-1.5498154981549703,60.23041969242587],[-1.5642156421564266,60.22704253788609],[-1.5930159301592823,60.21691107426679],[-1.6146161461614668,60.215222496996915],[-1.6254162541625305,60.21691107426679],[-1.6290162901628946,60.22028822880657],[-1.6326163261632587,60.22535396061622],[-1.6326163261632587,60.23041969242587],[-1.6398163981639868,60.23210826969574],[-1.6614166141661428,60.23379684696562],[-1.6686166861668426,60.23886257877527],[-1.6794167941679348,60.2658798150934],[-1.690216902169027,60.2844541650621],[-1.686616866168663,60.29120847414163],[-1.6722167221672066,60.299651360491055],[-1.6578165781657788,60.30640566957058],[-1.6398163981639868,60.31147140138023],[-1.6182161821618024,60.31484855592001],[-1.6038160381603745,60.313159978650106],[-1.5894158941589467,60.30640566957058],[-1.5786157861578545,60.29796278322118],[-1.5642156421564266,60.29289705141153],[-1.5498154981549703,60.29289705141153],[-1.5570155701556985,60.30640566957058],[-1.5210152101520862,60.299651360491055],[-1.5210152101520862,60.30640566957058],[-1.5282152821528143,60.30640566957058],[-1.5282152821528143,60.313159978650106],[-1.4814148141481382,60.31653713318988],[-1.467014670146682,60.308094246840454],[-1.467014670146682,60.27938843325245],[-1.4598145981459822,60.27938843325245],[-1.44901449014489,60.2844541650621],[-1.445414454144526,60.286142742332004],[-1.452614526145254,60.29120847414163],[-1.4562145621456182,60.30302851503083],[-1.4598145981459822,60.30640566957058],[-1.4382143821438262,60.30640566957058],[-1.441814418144162,60.31147140138023],[-1.445414454144526,60.321602864999534],[-1.42381423814237,60.326668596809185],[-1.3950139501394858,60.321602864999534],[-1.3734137341373298,60.308094246840454],[-1.362613626136266,60.286142742332004],[-1.3482134821348097,60.29796278322118],[-1.337413374133746,60.30640566957058],[-1.362613626136266,60.321602864999534],[-1.3446134461344457,60.34693152404776],[-1.337413374133746,60.34355436950801],[-1.3302133021330178,60.34186579223811],[-1.3158131581315615,60.34186579223811],[-1.3266132661326537,60.35199725585741],[-1.3086130861308618,60.35537441039719],[-1.2618126181261857,60.35537441039719],[-1.2834128341283417,60.36381729674659],[-1.3122131221312259,60.367194451286366],[-1.337413374133746,60.37394876036589],[-1.3446134461344457,60.39590026487437],[-1.362613626136266,60.384080223985194],[-1.3734137341373298,60.38070306944542],[-1.384213842138422,60.38239164671529],[-1.3950139501394858,60.389145955794845],[-1.3986139861398499,60.39927741941412],[-1.3950139501394858,60.40940888303342],[-1.384213842138422,60.41616319211295],[-1.384213842138422,60.4229175011925],[-1.4166141661416418,60.4229175011925],[-1.427414274142734,60.424606078462375],[-1.4382143821438262,60.4313603875419],[-1.4346143461434622,60.44318042843108],[-1.4382143821438262,60.460066201129905],[-1.445414454144526,60.49214916925769],[-1.4598145981459822,60.473574819288984],[-1.470614706147046,60.46175477839978],[-1.4814148141481382,60.45668904659016],[-1.495814958149566,60.460066201129905],[-1.4994149941499302,60.46850908747933],[-1.492214922149202,60.47864055109861],[-1.4814148141481382,60.48539486017816],[-1.4994149941499302,60.48539486017816],[-1.5174151741517221,60.482017705638384],[-1.5318153181531784,60.48370628290826],[-1.5498154981549703,60.49214916925769],[-1.5570155701556985,60.48032912836851],[-1.5714157141571263,60.47695197382873],[-1.6074160741607386,60.47864055109861],[-1.6110161101611027,60.48370628290826],[-1.6038160381603745,60.495526323797435],[-1.5966159661596464,60.50734636468661],[-1.5858158581585826,60.51241209649626],[-1.5606156061560625,60.51072351922639],[-1.5570155701556985,60.51241209649626],[-1.5498154981549703,60.51916640557582],[-1.5498154981549703,60.52592071465534],[-1.5498154981549703,60.53267502373487],[-1.5498154981549703,60.53942933281439],[-1.5390153901539065,60.549560796433695],[-1.5282152821528143,60.55631510551322],[-1.5138151381513865,60.558003682783095],[-1.4994149941499302,60.54618364189392],[-1.4886148861488664,60.52592071465534],[-1.4562145621456182,60.509034941956514],[-1.4166141661416418,60.50228063287699],[-1.384213842138422,60.51241209649626],[-1.3950139501394858,60.517477828305914],[-1.409414094140942,60.51916640557582],[-1.4346143461434622,60.51916640557582],[-1.441814418144162,60.522543560115565],[-1.452614526145254,60.53098644646499],[-1.4634146341463463,60.53774075554452],[-1.4814148141481382,60.53942933281439],[-1.470614706147046,60.54618364189392],[-1.4562145621456182,60.563069414592746],[-1.452614526145254,60.5681351464024],[-1.441814418144162,60.5681351464024],[-1.409414094140942,60.579955187291574],[-1.4202142021420059,60.5867094963711],[-1.42381423814237,60.588398073641],[-1.4166141661416418,60.59515238272053],[-1.4130141301413062,60.60021811453018],[-1.4166141661416418,60.60359526906993],[-1.4202142021420059,60.60866100087958],[-1.3950139501394858,60.61372673268923],[-1.3662136621366017,60.612038155419356],[-1.3410134101340816,60.60528384633983],[-1.3158131581315615,60.593463805450654],[-1.3122131221312259,60.598529537260276],[-1.3086130861308618,60.60190669180005],[-1.3266132661326537,60.61034957814948],[-1.3230132301322897,60.620481041768755],[-1.3014130141301337,60.642432546277234],[-1.2906129061290414,60.62385819630853],[-1.2906129061290414,60.615415309959104],[-1.2942129421294055,60.60866100087958],[-1.2906129061290414,60.60021811453018],[-1.2942129421294055,60.593463805450654],[-1.2978129781297696,60.59008665091088],[-1.3086130861308618,60.588398073641],[-1.3014130141301337,60.56475799186265],[-1.3086130861308618,60.55462652824335],[-1.3230132301322897,60.54618364189392],[-1.337413374133746,60.53267502373487],[-1.3158131581315615,60.53267502373487],[-1.3194131941319256,60.527609291925216],[-1.3266132661326537,60.52592071465534],[-1.337413374133746,60.52592071465534],[-1.3302133021330178,60.52423213738544],[-1.3266132661326537,60.52085498284569],[-1.3230132301322897,60.51916640557582],[-1.3158131581315615,60.51916640557582],[-1.337413374133746,60.48539486017816],[-1.3266132661326537,60.487083437448035],[-1.3158131581315615,60.48877201471791],[-1.3086130861308618,60.49214916925769],[-1.3014130141301337,60.49890347833721],[-1.2942129421294055,60.49214916925769],[-1.3086130861308618,60.47695197382873],[-1.3122131221312259,60.47019766474921],[-1.3086130861308618,60.465131932939556],[-1.3086130861308618,60.45668904659016],[-1.3266132661326537,60.45331189205038],[-1.3518135181351738,60.41785176938285],[-1.3698136981369657,60.40940888303342],[-1.3698136981369657,60.402654573953896],[-1.359013590135902,60.40096599668402],[-1.3446134461344457,60.402654573953896],[-1.3338133381333819,60.40434315122377],[-1.3230132301322897,60.40940888303342],[-1.3230132301322897,60.427983233002124],[-1.2978129781297696,60.438114696621426],[-1.2330123301233016,60.44318042843108],[-1.2798127981279777,60.46175477839978],[-1.2942129421294055,60.47188624201908],[-1.2834128341283417,60.47864055109861],[-1.2726127261272495,60.48370628290826],[-1.2618126181261857,60.482017705638384],[-1.2618126181261857,60.465131932939556],[-1.2510125101250935,60.47019766474921],[-1.2294122941229375,60.48877201471791],[-1.2258122581225734,60.495526323797435],[-1.2186121861218453,60.49721490106734],[-1.2006120061200534,60.49214916925769],[-1.1862118621186255,60.482017705638384],[-1.1934119341193252,60.47188624201908],[-1.1790117901178974,60.46850908747933],[-1.1682116821168052,60.46344335566968],[-1.1610116101161054,60.455000469320254],[-1.1574115741157414,60.44318042843108],[-1.164611646116441,60.43980327389133],[-1.164611646116441,60.43642611935155],[-1.1502115021150132,60.4313603875419],[-1.164611646116441,60.42629465573225],[-1.1862118621186255,60.4313603875419],[-1.1970119701196893,60.42629465573225],[-1.2042120421204174,60.419540346652724],[-1.2150121501214812,60.41447461484307],[-1.2258122581225734,60.411097460303324],[-1.2222122221222094,60.40940888303342],[-1.2078120781207815,60.411097460303324],[-1.1862118621186255,60.41616319211295],[-1.1898118981189612,60.41447461484307],[-1.2006120061200534,60.40940888303342],[-1.2006120061200534,60.402654573953896],[-1.164611646116441,60.4127860375732],[-1.1538115381153773,60.40772030576355],[-1.1502115021150132,60.389145955794845],[-1.143011430114285,60.389145955794845],[-1.139411394113921,60.39927741941412],[-1.1358113581135854,60.39927741941412],[-1.1322113221132213,60.397588842144245],[-1.1250112501124931,60.402654573953896],[-1.121411214112129,60.40772030576355],[-1.117811178111765,60.41616319211295],[-1.1106111061110653,60.4229175011925],[-1.1034110341103371,60.4313603875419],[-1.099810998109973,60.427983233002124],[-1.099810998109973,60.424606078462375],[-1.096210962109609,60.41616319211295]]],[[[-7.223472234722351,62.170594975521084],[-7.230672306723051,62.175660707330735],[-7.234272342723415,62.180726439140386],[-7.237872378723779,62.18748074821991],[-7.234272342723415,62.197612211839214],[-7.227072270722715,62.20098936637896],[-7.219872198721987,62.20098936637896],[-7.216272162721623,62.20436652091874],[-7.209072090720895,62.21787513907779],[-7.209072090720895,62.22800660269709],[-7.205472054720531,62.23644948904652],[-7.187471874718739,62.23982664358627],[-7.209072090720895,62.25502383901522],[-7.209072090720895,62.2752867662538],[-7.194671946719467,62.314124043461106],[-7.191071910719103,62.309058311651455],[-7.183871838718375,62.309058311651455],[-7.180271802718011,62.309058311651455],[-7.176671766717675,62.30736973438158],[-7.10467104671045,62.300615425302055],[-7.072270722707231,62.29048396168275],[-7.057870578705774,62.2769753435237],[-7.0470704707047105,62.251646684475446],[-6.99666996669967,62.20774367545849],[-6.99666996669967,62.184103593680135],[-6.964269642696422,62.17903786187048],[-6.906669066690654,62.15539778009213],[-6.856268562685614,62.148643471012605],[-6.849068490684914,62.14188916193308],[-6.84546845468455,62.13344627558365],[-6.85266852668525,62.12331481196438],[-6.863468634686342,62.11487192561495],[-6.874268742687434,62.108117616535424],[-6.888668886688862,62.10474046199565],[-6.899468994689954,62.10305188472577],[-6.813068130681302,62.10474046199565],[-6.798667986679874,62.091231843836596],[-6.7842678426784175,62.07603464840764],[-6.7806678066780535,62.06590318478837],[-6.787867878678782,62.06083745297872],[-6.84546845468455,62.06083745297872],[-6.84546845468455,62.05408314389916],[-6.809468094680938,62.04564025754976],[-6.74466744667447,62.04732883481964],[-6.7158671586715855,62.03382021666059],[-6.726667266672649,62.02200017577141],[-6.733867338673377,62.00511440307258],[-6.730267302673013,61.9916057849135],[-6.6978669786697935,61.98147432129423],[-6.701467014670129,61.9730314349448],[-6.705067050670493,61.961211394055624],[-6.701467014670129,61.944325621356796],[-6.733867338673377,61.93757131227727],[-6.766267662676626,61.9544570849761],[-6.79506795067951,61.9747200122147],[-6.856268562685614,61.99498293945328],[-6.910269102691018,62.037197371200335],[-6.94626946269463,62.04732883481964],[-6.960669606696058,62.050705989359415],[-6.967869678696786,62.05746029843894],[-6.975069750697514,62.06928033932812],[-6.975069750697514,62.08447753475707],[-6.982269822698214,62.09460899837637],[-6.99666996669967,62.10305188472577],[-7.014670146701462,62.1114947710752],[-7.032670326703254,62.11656050288482],[-7.108271082710814,62.12331481196438],[-7.126271262712635,62.126691966504126],[-7.137071370713699,62.13682343012343],[-7.137071370713699,62.14695489374273],[-7.119071190711907,62.15033204828248],[-7.12987129871297,62.162152089171656],[-7.144271442714427,62.16046351190178],[-7.158671586715855,62.153709202822256],[-7.176671766717675,62.15033204828248],[-7.183871838718375,62.15202062555238],[-7.212672126721259,62.16552924371143],[-7.223472234722351,62.170594975521084]]],[[[-7.05427054270541,62.29048396168275],[-7.065070650706502,62.295549693492404],[-7.075870758707595,62.30230400257193],[-7.083070830708294,62.30736973438158],[-7.086670866708658,62.314124043461106],[-7.075870758707595,62.32087835254063],[-7.065070650706502,62.32087835254063],[-7.05427054270541,62.31581262073098],[-7.043470434704346,62.314124043461106],[-7.02187021870219,62.31918977527076],[-6.985869858698578,62.33269839342981],[-6.939069390693902,62.33776412523946],[-6.92826928269281,62.33438697069971],[-6.917469174691746,62.331009816159934],[-6.910269102691018,62.32594408435028],[-6.899468994689954,62.322566929810534],[-6.888668886688862,62.32087835254063],[-6.881468814688134,62.31074688892136],[-6.899468994689954,62.303992579841804],[-6.924669246692474,62.29723827076228],[-6.935469354693538,62.29048396168275],[-6.935469354693538,62.273598188983925],[-6.931869318693174,62.260089570824874],[-6.924669246692474,62.2482695299357],[-6.906669066690654,62.23982664358627],[-6.917469174691746,62.27022103444415],[-6.913869138691382,62.28204107533335],[-6.838268382683822,62.29386111622253],[-6.813068130681302,62.29386111622253],[-6.798667986679874,62.28035249806345],[-6.8058680586805735,62.278663920793576],[-6.823868238682394,62.273598188983925],[-6.748267482674834,62.2668438799044],[-6.7374673746737415,62.26177814809475],[-6.74466744667447,62.251646684475446],[-6.7626676266762615,62.243203798126046],[-6.7842678426784175,62.23982664358627],[-6.7842678426784175,62.23138375723687],[-6.773467734677354,62.22969517996697],[-6.751867518675169,62.22125229361757],[-6.74466744667447,62.21787513907779],[-6.733867338673377,62.21956371634769],[-6.7158671586715855,62.224629448157316],[-6.705067050670493,62.22631802542722],[-6.651066510665089,62.216186561807916],[-6.607866078660777,62.202677943648865],[-6.604266042660413,62.19592363456931],[-6.618666186661869,62.19254648002956],[-6.643866438664389,62.19085790275969],[-6.705067050670493,62.19592363456931],[-6.723067230672314,62.19085790275969],[-6.723067230672314,62.184103593680135],[-6.600666006660049,62.153709202822256],[-6.564665646656465,62.135134852853554],[-6.615066150661505,62.1385120073933],[-6.669066690666909,62.15033204828248],[-6.669066690666909,62.143577739202954],[-6.647466474664753,62.140200584663205],[-6.625866258662569,62.13344627558365],[-6.593465934659349,62.11656050288482],[-6.593465934659349,62.1098061938053],[-6.611466114661141,62.1098061938053],[-6.629466294662933,62.1098061938053],[-6.647466474664753,62.10474046199565],[-6.661866618666181,62.09460899837637],[-6.658266582665817,62.09292042110647],[-6.651066510665089,62.08954326656672],[-6.647466474664753,62.08785468929682],[-6.647466474664753,62.08110038021729],[-6.654666546665453,62.077723225677545],[-6.658266582665817,62.072657493867894],[-6.658266582665817,62.06759176205824],[-6.654666546665453,62.06083745297872],[-6.690666906669065,62.072657493867894],[-6.701467014670129,62.09460899837637],[-6.701467014670129,62.1199376574246],[-6.708667086670857,62.143577739202954],[-6.726667266672649,62.16046351190178],[-6.751867518675169,62.18241501641026],[-6.7842678426784175,62.19423505729944],[-6.813068130681302,62.19085790275969],[-6.787867878678782,62.17734928460061],[-6.7590675906758975,62.16552924371143],[-6.733867338673377,62.148643471012605],[-6.723067230672314,62.12331481196438],[-6.7410674106741055,62.1013633074559],[-6.7806678066780535,62.11656050288482],[-6.859868598685978,62.16384066644156],[-6.899468994689954,62.162152089171656],[-6.910269102691018,62.16721782098131],[-6.917469174691746,62.17228355279096],[-6.939069390693902,62.18241501641026],[-6.94626946269463,62.184103593680135],[-6.957069570695694,62.189169325489786],[-7.02187021870219,62.23982664358627],[-7.05427054270541,62.29048396168275]]],[[[14.999549995499962,68.36429640145082],[14.945549455494557,68.35078778329176],[14.96354963549635,68.34572205148211],[14.977949779497806,68.33727916513268],[14.934749347493494,68.32714770151341],[14.761947619476189,68.2596046107181],[14.736747367473669,68.25453887890845],[14.718747187471877,68.26298176525785],[14.72234722347224,68.27986753795668],[14.740347403474033,68.29506473338563],[14.776347763477645,68.31701623789411],[14.758347583475853,68.31701623789411],[14.74754747547476,68.32377054697363],[14.740347403474033,68.33221343332306],[14.733147331473333,68.33727916513268],[14.718747187471877,68.33727916513268],[14.707947079470813,68.33221343332306],[14.693546935469357,68.31026192881458],[14.704347043470449,68.2967533106555],[14.693546935469357,68.28662184703623],[14.675546755467565,68.27986753795668],[14.650346503465045,68.27649038341693],[14.639546395463952,68.27311322887715],[14.628746287462889,68.2680474970675],[14.625146251462525,68.26298176525785],[14.628746287462889,68.2579160334482],[14.6719467194672,68.2494731470988],[14.657546575465773,68.2410302607494],[14.614346143461432,68.22414448805057],[14.57114571145712,68.21907875624092],[14.556745567455692,68.21570160170114],[14.52074520745208,68.20050440627219],[14.499144991449924,68.19712725173244],[14.419944199442,68.19375009719266],[14.405544055440572,68.19206151992279],[14.391143911439116,68.18361863357336],[14.383943839438388,68.18024147903361],[14.36954369543696,68.18024147903361],[14.337143371433712,68.18699578811314],[14.322743227432284,68.18699578811314],[14.326343263432648,68.17686432449383],[14.329943299433012,68.17348716995409],[14.311943119431191,68.16842143814443],[14.275942759427608,68.16842143814443],[14.247142471424723,68.15828997452513],[14.211142111421111,68.15322424271548],[14.196741967419683,68.15322424271548],[14.207542075420747,68.16842143814443],[14.211142111421111,68.17348716995409],[14.214742147421475,68.17348716995409],[14.21834218342184,68.17517574722396],[14.21834218342184,68.18024147903361],[14.211142111421111,68.18530721084326],[14.207542075420747,68.18868436538301],[14.200342003420047,68.19543867446254],[14.196741967419683,68.20050440627219],[14.236342363423631,68.22076733351079],[14.31914319143192,68.23258737439997],[14.355143551435532,68.24271883801927],[14.301143011430128,68.23596452893975],[14.275942759427608,68.23765310620962],[14.254342543425452,68.2494731470988],[14.26874268742688,68.2579160334482],[14.290342903429035,68.26129318798797],[14.329943299433012,68.26298176525785],[14.304743047430492,68.27480180614702],[14.297542975429764,68.29337615611576],[14.304743047430492,68.31195050608446],[14.329943299433012,68.32377054697363],[14.358743587435868,68.32039339243386],[14.39474394743948,68.28662184703623],[14.423544235442364,68.28324469249645],[14.423544235442364,68.28999900157598],[14.412744127441272,68.2967533106555],[14.419944199442,68.30181904246516],[14.430744307443092,68.30519619700493],[14.437944379443792,68.31363908335433],[14.441544415444156,68.31870481516398],[14.452344523445248,68.31532766062423],[14.473944739447404,68.30350761973506],[14.49554495544956,68.3068847742748],[14.49554495544956,68.31701623789411],[14.484744847448468,68.33052485605316],[14.466744667446676,68.34403347421224],[14.455944559445612,68.33727916513268],[14.44514445144452,68.33727916513268],[14.434344343443428,68.34403347421224],[14.437944379443792,68.35923066964116],[14.39474394743948,68.36767355599059],[14.383943839438388,68.37273928780024],[14.491944919449196,68.3862479059593],[14.52074520745208,68.38287075141952],[14.563945639456392,68.36767355599059],[14.589145891458912,68.36429640145082],[14.581945819458213,68.38118217414964],[14.553145531455328,68.39469079230872],[14.542345423454236,68.4065108331979],[14.653946539465409,68.42846233770635],[14.6719467194672,68.41664229681717],[14.6719467194672,68.40313367865812],[14.679146791467929,68.3963793695786],[14.69714697146972,68.38287075141952],[14.707947079470813,68.3778050196099],[14.707947079470813,68.38962506049907],[14.704347043470449,68.41326514227742],[14.715147151471513,68.42339660589673],[14.725947259472605,68.43015091497625],[14.743947439474397,68.433528069516],[14.761947619476189,68.433528069516],[14.797947979479801,68.42677376043648],[14.815948159481593,68.42001945135695],[14.823148231482321,68.40988798773765],[14.826748267482685,68.39469079230872],[14.823148231482321,68.38962506049907],[14.754747547475489,68.35923066964116],[14.754747547475489,68.35078778329176],[14.783547835478373,68.35416493783151],[14.841148411484113,68.37442786507012],[14.869948699486997,68.37949359687977],[14.88074880748809,68.3862479059593],[14.884348843488453,68.42001945135695],[14.898748987489881,68.433528069516],[14.93114931149313,68.43690522405578],[15.010350103501054,68.42846233770635],[15.06435064350643,68.44872526494495],[15.100351003510042,68.4537909967546],[15.172351723517238,68.4537909967546],[15.154351543515446,68.43859380132565],[15.035550355503574,68.36429640145082],[15.01395013950139,68.35923066964116],[15.017550175501754,68.36429640145082],[15.017550175501754,68.37105071053034],[15.017550175501754,68.37611644233999],[15.01395013950139,68.37949359687977],[15.003150031500326,68.3778050196099],[15.003150031500326,68.37273928780024],[15.003150031500326,68.36767355599059],[14.999549995499962,68.36429640145082]]],[[[16.529565295652958,68.72227478266595],[16.576365763657634,68.707077587237],[16.56556565565657,68.6986347008876],[16.533165331653322,68.68174892818877],[16.561965619656206,68.67161746456947],[16.558365583655842,68.65473169187064],[16.543965439654414,68.63784591917181],[16.525965259652594,68.62264872374288],[16.511565115651166,68.61758299193323],[16.500765007650074,68.61251726012358],[16.48996489964901,68.60576295104406],[16.486364863648646,68.59394291015488],[16.493564935649374,68.5821228692657],[16.49716497164971,68.57874571472593],[16.500765007650074,68.57536856018615],[16.504365043650438,68.56861425110662],[16.49716497164971,68.55341705567767],[16.482764827648282,68.54835132386805],[16.457564575645762,68.54835132386805],[16.417964179641814,68.55679421021745],[16.34596345963459,68.56017136475722],[16.223562235622353,68.54666274659814],[16.15516155161552,68.52471124208967],[16.140761407614093,68.52302266481979],[16.129961299613,68.52639981935957],[16.119161191611937,68.53484270570897],[16.10476104761048,68.53821986024874],[16.093960939609417,68.5331541284391],[16.083160831608325,68.51626835574027],[16.068760687606897,68.48925111942214],[16.05436054360544,68.46561103764378],[16.01116011160113,68.44703668767508],[15.996759967599672,68.43015091497625],[15.967959679596817,68.39300221503882],[15.939159391593932,68.37949359687977],[15.90315903159032,68.36936213326047],[15.8779587795878,68.36936213326047],[15.8779587795878,68.3862479059593],[15.870758707587072,68.39975652411835],[15.874358743587436,68.4149537195473],[15.881558815588164,68.42846233770635],[15.885158851588528,68.4436595331353],[15.881558815588164,68.45716815129438],[15.874358743587436,68.46729961491366],[15.870758707587072,68.47911965580283],[15.870758707587072,68.49600542850166],[15.859958599586008,68.48587396488239],[15.859958599586008,68.47743107853296],[15.863558635586372,68.46729961491366],[15.863558635586372,68.4537909967546],[15.856358563585644,68.44028237859555],[15.849158491584916,68.4352166467859],[15.823958239582396,68.42339660589673],[15.813158131581332,68.42677376043648],[15.795157951579512,68.433528069516],[15.780757807578084,68.43859380132565],[15.773557735577356,68.43015091497625],[15.780757807578084,68.41833087408708],[15.805958059580604,68.40313367865812],[15.816758167581696,68.39300221503882],[15.791557915579176,68.39300221503882],[15.780757807578084,68.40144510138825],[15.773557735577356,68.41326514227742],[15.762757627576292,68.42339660589673],[15.748357483574836,68.4250851831666],[15.741157411574136,68.4149537195473],[15.733957339573408,68.40144510138825],[15.719557195571952,68.39300221503882],[15.723157231572316,68.38793648322917],[15.723157231572316,68.37611644233999],[15.72675726757268,68.37273928780024],[15.690756907569096,68.37273928780024],[15.672756727567275,68.37105071053034],[15.658356583565848,68.36429640145082],[15.669156691566911,68.36091924691107],[15.679956799568004,68.35923066964116],[15.694356943569431,68.35754209237129],[15.705157051570524,68.35923066964116],[15.690756907569096,68.34234489694234],[15.640356403564056,68.31701623789411],[15.636756367563692,68.30350761973506],[15.6259562595626,68.30013046519528],[15.597155971559715,68.30519619700493],[15.582755827558287,68.30350761973506],[15.589955899559016,68.30857335154468],[15.597155971559715,68.31026192881458],[15.597155971559715,68.31701623789411],[15.57555575555756,68.31870481516398],[15.543155431554311,68.33390201059294],[15.528755287552883,68.33727916513268],[15.377553775537763,68.32714770151341],[15.337953379533815,68.33221343332306],[15.323553235532358,68.35078778329176],[15.34155341553415,68.34741062875199],[15.35955359553597,68.35416493783151],[15.388353883538855,68.38287075141952],[15.406354063540647,68.39131363776895],[15.471154711547115,68.4065108331979],[15.507155071550727,68.42339660589673],[15.568355683556831,68.462233883104],[15.611556115561172,68.47574250126308],[15.579155791557923,68.48756254215226],[15.57555575555756,68.49262827396191],[15.571955719557195,68.50275973758121],[15.564755647556495,68.50951404666074],[15.553955539555403,68.51120262393061],[15.543155431554311,68.50951404666074],[15.553955539555403,68.48756254215226],[15.553955539555403,68.47574250126308],[15.543155431554311,68.46561103764378],[15.438754387543895,68.41833087408708],[15.413554135541375,68.41326514227742],[15.406354063540647,68.4149537195473],[15.38475384753849,68.42001945135695],[15.377553775537763,68.41664229681717],[15.370353703537035,68.41326514227742],[15.363153631536335,68.4065108331979],[15.31635316353163,68.39469079230872],[15.280352803528046,68.37273928780024],[15.211952119521214,68.36598497872069],[15.186751867518694,68.35078778329176],[15.21555215552155,68.35247636056164],[15.226352263522642,68.34909920602189],[15.23355233552337,68.33727916513268],[15.21555215552155,68.33559058786281],[15.143551435514354,68.31363908335433],[15.13275132751329,68.30857335154468],[15.11475114751147,68.28662184703623],[15.085950859508614,68.27142465160728],[15.03915039150391,68.25622745617832],[14.999549995499962,68.25285030163857],[14.985149851498534,68.2697360743374],[14.992349923499233,68.27142465160728],[14.999549995499962,68.27480180614702],[15.003150031500326,68.2781789606868],[15.00675006750069,68.28324469249645],[14.995949959499598,68.2984418879254],[15.010350103501054,68.31363908335433],[15.035550355503574,68.32714770151341],[15.05715057150573,68.33221343332306],[15.067950679506794,68.33896774240259],[15.103951039510406,68.3778050196099],[15.121951219512198,68.39300221503882],[15.193951939519394,68.4352166467859],[15.222752227522278,68.4436595331353],[15.251552515525162,68.45716815129438],[15.269552695526954,68.46054530583413],[15.355953559535607,68.46054530583413],[15.330753307533087,68.46392246037391],[15.25875258752589,68.46729961491366],[15.24075240752407,68.47574250126308],[15.247952479524798,68.48587396488239],[15.280352803528046,68.48925111942214],[15.337953379533815,68.48925111942214],[15.280352803528046,68.49600542850166],[15.273152731527318,68.49769400577156],[15.273152731527318,68.50613689212096],[15.276752767527682,68.51289120120049],[15.273152731527318,68.51626835574027],[15.179551795517966,68.52302266481979],[15.197551975519758,68.5432855920584],[15.21555215552155,68.55679421021745],[15.237152371523734,68.56354851929697],[15.269552695526954,68.56354851929697],[15.312753127531295,68.55848278748732],[15.323553235532358,68.56354851929697],[15.30915309153093,68.57874571472593],[15.395553955539555,68.58550002380545],[15.406354063540647,68.5804342919958],[15.435154351543531,68.5618599420271],[15.453154531545323,68.55679421021745],[15.438754387543895,68.57367998291627],[15.39195391953919,68.60576295104406],[15.406354063540647,68.60407437377415],[15.435154351543531,68.5990086419645],[15.453154531545323,68.59732006469463],[15.44235442354423,68.6091401055838],[15.438754387543895,68.61251726012358],[15.438754387543895,68.61927156920311],[15.55035550355504,68.62602587828263],[15.557555575555767,68.62433730101276],[15.568355683556831,68.61420583739346],[15.57555575555756,68.61082868285371],[15.589955899559016,68.60576295104406],[15.604356043560443,68.60576295104406],[15.615156151561536,68.60745152831393],[15.629556295562963,68.61251726012358],[15.615156151561536,68.61251726012358],[15.604356043560443,68.61927156920311],[15.593555935559351,68.62602587828263],[15.582755827558287,68.63278018736216],[15.561155611556131,68.63446876463206],[15.514355143551455,68.63615734190194],[15.496354963549635,68.64291165098146],[15.478354783547843,68.65642026914054],[15.456754567545687,68.66655173275981],[15.44235442354423,68.68174892818877],[15.438754387543895,68.707077587237],[15.44235442354423,68.72396335993582],[15.449554495544959,68.72902909174547],[15.568355683556831,68.72902909174547],[15.582755827558287,68.73071766901538],[15.593555935559351,68.73409482355513],[15.604356043560443,68.73578340082503],[15.618756187561871,68.73240624628525],[15.643956439564391,68.72396335993582],[15.661956619566212,68.7188976281262],[15.712357123571252,68.70201185542737],[15.687156871568732,68.71045474177677],[15.679956799568004,68.71552047358642],[15.67635676356764,68.7188976281262],[15.669156691566911,68.73240624628525],[15.665556655566576,68.73578340082503],[15.640356403564056,68.74253770990455],[15.499954999549999,68.74253770990455],[15.474754747547479,68.7476034417142],[15.460354603546051,68.7560463280636],[15.456754567545687,68.76955494622266],[15.460354603546051,68.79657218254079],[15.453154531545323,68.81176937796974],[15.463954639546415,68.81008080069986],[15.485554855548571,68.80501506889021],[15.496354963549635,68.80332649162031],[15.507155071550727,68.80670364616009],[15.514355143551455,68.81345795523961],[15.521555215552155,68.82021226431914],[15.528755287552883,68.82527799612879],[15.557555575555767,68.82696657339869],[15.615156151561536,68.81852368704926],[15.636756367563692,68.82527799612879],[15.618756187561871,68.83034372793844],[15.589955899559016,68.83372088247822],[15.564755647556495,68.83878661428787],[15.55035550355504,68.85229523244692],[15.553955539555403,68.87255815968552],[15.57555575555756,68.8826896233048],[15.6259562595626,68.88606677784458],[15.618756187561871,68.89450966419398],[15.615156151561536,68.90126397327353],[15.604356043560443,68.90464112781328],[15.597155971559715,68.90632970508318],[15.607956079560807,68.91983832324223],[15.629556295562963,68.94516698229046],[15.643956439564391,68.95529844590976],[15.67635676356764,68.96205275498929],[15.77715777157772,68.95529844590976],[15.856358563585644,68.97049564133872],[15.885158851588528,68.96880706406884],[15.906759067590684,68.95867560044954],[15.906759067590684,68.95698702317964],[15.910359103591048,68.95023271410011],[15.90315903159032,68.93672409594106],[15.899558995589956,68.91814974597236],[15.90315903159032,68.90464112781328],[15.917559175591776,68.89619824146388],[15.924759247592476,68.88606677784458],[15.913959139591412,68.86918100514575],[15.8779587795878,68.81683510977939],[15.874358743587436,68.81008080069986],[15.874358743587436,68.79826075981069],[15.870758707587072,68.78981787346126],[15.863558635586372,68.78306356438173],[15.849158491584916,68.77293210076243],[15.841958419584216,68.7661777916829],[15.823958239582396,68.7560463280636],[15.762757627576292,68.73578340082503],[15.805958059580604,68.73916055536478],[15.85275852758528,68.7476034417142],[15.899558995589956,68.76280063714313],[15.935559355593568,68.78644071892148],[15.957159571595724,68.79150645073113],[15.975159751597516,68.78137498711186],[15.989559895598973,68.76280063714313],[15.982359823598244,68.7459148644443],[15.971559715597152,68.73240624628525],[15.95355953559536,68.70538900996712],[15.942759427594297,68.6901918145382],[15.931959319593204,68.68343750545864],[15.924759247592476,68.68174892818877],[15.913959139591412,68.68174892818877],[15.90315903159032,68.67837177364899],[15.895958959589592,68.67161746456947],[15.8779587795878,68.65810884641041],[15.870758707587072,68.65304311460076],[15.849158491584916,68.64797738279111],[15.791557915579176,68.64291165098146],[15.773557735577356,68.63278018736216],[15.766357663576656,68.61589441466333],[15.769957699576992,68.60238579650428],[15.77715777157772,68.59225433288498],[15.780757807578084,68.57874571472593],[15.77715777157772,68.5618599420271],[15.766357663576656,68.55341705567767],[15.7519575195752,68.54497416932827],[15.741157411574136,68.52977697389932],[15.780757807578084,68.5415970147885],[15.80235802358024,68.5517284784078],[15.816758167581696,68.56354851929697],[15.820358203582032,68.58381144653558],[15.816758167581696,68.59732006469463],[15.816758167581696,68.61082868285371],[15.838358383583852,68.62602587828263],[15.859958599586008,68.63446876463206],[15.931959319593204,68.65304311460076],[15.97875978759788,68.67161746456947],[16.0039600396004,68.67837177364899],[16.02916029160292,68.67330604183937],[16.047160471604712,68.64291165098146],[16.06156061560617,68.63109161009228],[16.083160831608325,68.63953449644171],[16.090360903609053,68.65642026914054],[16.07956079560796,68.67330604183937],[16.05436054360544,68.69356896907794],[16.050760507605077,68.69525754634782],[16.039960399604013,68.70370043269725],[16.032760327603285,68.71214331904665],[16.047160471604712,68.71552047358642],[16.068760687606897,68.73071766901538],[16.075960759607597,68.73578340082503],[16.108361083610845,68.74084913263465],[16.21276212762129,68.73578340082503],[16.201962019620197,68.76111205987326],[16.18036180361804,68.77124352349256],[16.122761227612273,68.78475214165161],[16.108361083610845,68.79150645073113],[16.093960939609417,68.80163791435044],[16.090360903609053,68.81514653250949],[16.097560975609753,68.83203230520832],[16.108361083610845,68.83540945974809],[16.191161911619133,68.85736096425657],[16.20556205562056,68.85904954152645],[16.223562235622353,68.8556723869867],[16.252362523625237,68.84216376882762],[16.266762667626693,68.83878661428787],[16.284762847628485,68.84047519155774],[16.29556295562955,68.84722950063727],[16.29556295562955,68.8556723869867],[16.26316263162633,68.86749242787587],[16.248762487624873,68.8843782005747],[16.245162451624537,68.89957539600363],[16.2559625596256,68.9029525505434],[16.31356313563137,68.87086958241562],[16.38916389163893,68.8539838097168],[16.428764287642878,68.85229523244692],[16.43956439564397,68.84891807790714],[16.43956439564397,68.84216376882762],[16.43956439564397,68.82865515066857],[16.453964539645398,68.81514653250949],[16.529565295652958,68.82527799612879],[16.554765547655478,68.82527799612879],[16.54036540365405,68.81514653250949],[16.504365043650438,68.80332649162031],[16.493564935649374,68.78981787346126],[16.511565115651166,68.79150645073113],[16.529565295652958,68.78981787346126],[16.54756547565475,68.78306356438173],[16.554765547655478,68.76955494622266],[16.525965259652594,68.76111205987326],[16.525965259652594,68.75266917352383],[16.533165331653322,68.74084913263465],[16.529565295652958,68.72227478266595]]],[[[14.398343983439844,68.65979742368029],[14.387543875438752,68.66317457822007],[14.380343803438052,68.66992888729959],[14.36954369543696,68.68681465999842],[14.380343803438052,68.69694612361772],[14.39474394743948,68.70201185542737],[14.423544235442364,68.70201185542737],[14.427144271442728,68.71383189631655],[14.463144631446312,68.72396335993582],[14.542345423454236,68.73578340082503],[14.542345423454236,68.74253770990455],[14.517145171451716,68.74253770990455],[14.437944379443792,68.7560463280636],[14.455944559445612,68.77630925530221],[14.488344883448832,68.79488360527091],[14.524345243452444,68.80670364616009],[14.549545495454964,68.80332649162031],[14.553145531455328,68.79488360527091],[14.556745567455692,68.77124352349256],[14.560345603456028,68.7560463280636],[14.57114571145712,68.7459148644443],[14.585545855458548,68.73916055536478],[14.603546035460369,68.73578340082503],[14.625146251462525,68.73578340082503],[14.617946179461796,68.74084913263465],[14.607146071460733,68.74422628717443],[14.599945999460004,68.7476034417142],[14.589145891458912,68.74929201898408],[14.59634596345964,68.76786636895278],[14.607146071460733,68.77799783257208],[14.625146251462525,68.78475214165161],[14.643146431464316,68.78981787346126],[14.617946179461796,68.79826075981069],[14.607146071460733,68.80670364616009],[14.614346143461432,68.82190084158904],[14.628746287462889,68.83034372793844],[14.650346503465045,68.83372088247822],[14.668346683466837,68.83034372793844],[14.686346863468628,68.82527799612879],[14.679146791467929,68.81683510977939],[14.693546935469357,68.81176937796974],[14.679146791467929,68.76786636895278],[14.686346863468628,68.75773490533348],[14.718747187471877,68.76280063714313],[14.801548015480165,68.78981787346126],[14.844748447484477,68.79657218254079],[14.884348843488453,68.78981787346126],[14.873548735487361,68.77968640984196],[14.873548735487361,68.76955494622266],[14.88074880748809,68.75942348260338],[14.895148951489517,68.7560463280636],[14.90594905949061,68.75942348260338],[14.927549275492765,68.77968640984196],[14.945549455494557,68.78475214165161],[14.941949419494193,68.79319502800104],[14.941949419494193,68.80163791435044],[14.945549455494557,68.81008080069986],[14.952749527495286,68.81683510977939],[14.90594905949061,68.8455409233674],[14.941949419494193,68.85904954152645],[14.952749527495286,68.86580385060597],[14.974349743497442,68.84722950063727],[14.992349923499233,68.84216376882762],[14.992349923499233,68.83372088247822],[14.992349923499233,68.82527799612879],[14.992349923499233,68.81683510977939],[14.999549995499962,68.79994933708056],[15.00675006750069,68.79319502800104],[15.017550175501754,68.79994933708056],[15.024750247502482,68.80839222342996],[15.028350283502846,68.81514653250949],[15.028350283502846,68.82021226431914],[15.021150211502118,68.82527799612879],[15.049950499505002,68.85229523244692],[15.085950859508614,68.8455409233674],[15.121951219512198,68.82527799612879],[15.15795157951581,68.81683510977939],[15.147151471514718,68.84216376882762],[15.121951219512198,68.8556723869867],[15.093150931509314,68.86580385060597],[15.067950679506794,68.87931246876505],[15.075150751507522,68.89957539600363],[15.06435064350643,68.9130840141627],[15.028350283502846,68.93503551867119],[15.021150211502118,68.94516698229046],[15.010350103501054,68.96374133225919],[15.00675006750069,68.98062710495802],[15.085950859508614,69.0110214958159],[15.103951039510406,69.01439865035567],[15.125551255512562,69.01608722762555],[15.136351363513654,69.01271007308577],[15.154351543515446,69.00257860946647],[15.168751687516874,68.98906999130742],[15.172351723517238,68.97387279587846],[15.150751507515082,68.96205275498929],[15.193951939519394,68.94347840502058],[15.20835208352085,68.94010125048081],[15.197551975519758,68.93503551867119],[15.193951939519394,68.93503551867119],[15.193951939519394,68.92659263232176],[15.204752047520486,68.92828120959163],[15.219152191521914,68.92490405505188],[15.24075240752407,68.9130840141627],[15.20835208352085,68.9029525505434],[15.193951939519394,68.89619824146388],[15.186751867518694,68.88606677784458],[15.21555215552155,68.88100104603492],[15.273152731527318,68.91983832324223],[15.294752947529474,68.90632970508318],[15.280352803528046,68.86580385060597],[15.273152731527318,68.8539838097168],[15.24075240752407,68.82527799612879],[15.301953019530202,68.84216376882762],[15.319953199531994,68.8556723869867],[15.327153271532723,68.85904954152645],[15.33435334353345,68.85904954152645],[15.337953379533815,68.8556723869867],[15.34155341553415,68.84891807790714],[15.348753487534879,68.84722950063727],[15.38475384753849,68.85229523244692],[15.370353703537035,68.83540945974809],[15.363153631536335,68.81683510977939],[15.352353523535243,68.80332649162031],[15.330753307533087,68.79657218254079],[15.298352983529838,68.80332649162031],[15.28395283952841,68.80332649162031],[15.273152731527318,68.79657218254079],[15.276752767527682,68.79150645073113],[15.301953019530202,68.77630925530221],[15.28395283952841,68.7661777916829],[15.273152731527318,68.76280063714313],[15.312753127531295,68.75266917352383],[15.35955359553597,68.7459148644443],[15.395553955539555,68.73071766901538],[15.399153991539919,68.69356896907794],[15.373953739537399,68.66992888729959],[15.337953379533815,68.65304311460076],[15.06435064350643,68.57874571472593],[14.873548735487361,68.58381144653558],[14.841148411484113,68.59225433288498],[14.848348483484841,68.59394291015488],[14.859148591485933,68.60238579650428],[14.862748627486269,68.60576295104406],[14.808748087480893,68.61420583739346],[14.80514805148053,68.61589441466333],[14.808748087480893,68.61927156920311],[14.815948159481593,68.63784591917181],[14.833948339483413,68.64460022825133],[14.877148771487725,68.64628880552124],[14.949149491494921,68.66486315548994],[14.974349743497442,68.66655173275981],[15.035550355503574,68.66655173275981],[15.042750427504274,68.66992888729959],[15.049950499505002,68.67499461910924],[15.05715057150573,68.68174892818877],[15.060750607506094,68.68681465999842],[15.08955089550895,68.69525754634782],[15.13995139951399,68.69525754634782],[15.16515165151651,68.70201185542737],[15.154351543515446,68.71383189631655],[15.147151471514718,68.72565193720573],[15.143551435514354,68.73916055536478],[15.150751507515082,68.7560463280636],[15.024750247502482,68.77124352349256],[14.992349923499233,68.76280063714313],[15.01395013950139,68.76280063714313],[15.067950679506794,68.74929201898408],[15.049950499505002,68.72902909174547],[15.021150211502118,68.71214331904665],[14.985149851498534,68.70201185542737],[14.959949599496014,68.707077587237],[14.96354963549635,68.71552047358642],[14.96354963549635,68.7188976281262],[14.959949599496014,68.72227478266595],[14.959949599496014,68.72902909174547],[14.945549455494557,68.71383189631655],[14.923949239492401,68.69525754634782],[14.902349023490245,68.68174892818877],[14.88074880748809,68.68343750545864],[14.862748627486269,68.6901918145382],[14.826748267482685,68.67330604183937],[14.808748087480893,68.68174892818877],[14.819548195481957,68.69356896907794],[14.823148231482321,68.707077587237],[14.815948159481593,68.71552047358642],[14.80514805148053,68.71214331904665],[14.797947979479801,68.70032327815747],[14.783547835478373,68.68343750545864],[14.776347763477645,68.67330604183937],[14.751147511475125,68.66824031002972],[14.72234722347224,68.67330604183937],[14.69714697146972,68.68681465999842],[14.679146791467929,68.707077587237],[14.675546755467565,68.68681465999842],[14.661146611466108,68.67330604183937],[14.632346323463253,68.65304311460076],[14.625146251462525,68.64460022825133],[14.62154621546216,68.62940303282241],[14.617946179461796,68.62602587828263],[14.556745567455692,68.62771445555254],[14.5459454594546,68.62264872374288],[14.52074520745208,68.6091401055838],[14.491944919449196,68.60745152831393],[14.434344343443428,68.61251726012358],[14.416344163441636,68.61927156920311],[14.412744127441272,68.63615734190194],[14.419944199442,68.65473169187064],[14.430744307443092,68.66655173275981],[14.419944199442,68.67330604183937],[14.412744127441272,68.66824031002972],[14.409144091440908,68.66148600095016],[14.398343983439844,68.65979742368029]]],[[[15.528755287552883,68.9130840141627],[15.499954999549999,68.89619824146388],[15.463954639546415,68.8826896233048],[15.431554315543167,68.8843782005747],[15.41715417154171,68.9130840141627],[15.427954279542803,68.92490405505188],[15.427954279542803,68.93503551867119],[15.427954279542803,68.94685555956036],[15.424354243542439,68.96205275498929],[15.431554315543167,68.97724995041824],[15.453154531545323,69.0008900321966],[15.460354603546051,69.01271007308577],[15.517955179551791,69.05323592756295],[15.543155431554311,69.08025316388108],[15.568355683556831,69.10558182292934],[15.611556115561172,69.12584475016791],[15.658356583565848,69.13766479105709],[15.759157591575928,69.1477962546764],[15.791557915579176,69.16130487283544],[15.841958419584216,69.22040507728136],[15.870758707587072,69.22884796363076],[15.867158671586736,69.2339136954404],[15.867158671586736,69.24573373632958],[15.863558635586372,69.24911089086936],[15.881558815588164,69.25417662267901],[15.917559175591776,69.25924235448866],[15.931959319593204,69.26261950902841],[15.975159751597516,69.28794816807667],[16.101161011610117,69.31496540439477],[16.129961299613,69.31158824985502],[16.151561515615157,69.29132532261642],[16.147961479614793,69.26937381810794],[16.129961299613,69.24911089086936],[16.115561155611573,69.23222511817053],[16.097560975609753,69.21027361366205],[16.090360903609053,69.17143633645475],[16.075960759607597,69.15455056375592],[16.06156061560617,69.14441910013662],[16.014760147601493,69.13259905924744],[15.971559715597152,69.10895897746909],[15.957159571595724,69.10558182292934],[15.946359463594632,69.10220466838956],[15.935559355593568,69.09376178204013],[15.913959139591412,69.07518743207143],[15.910359103591048,69.07349885480156],[15.892358923589256,69.06674454572203],[15.8779587795878,69.06167881391238],[15.874358743587436,69.05661308210273],[15.874358743587436,69.0498587730232],[15.870758707587072,69.04479304121355],[15.856358563585644,69.03466157759425],[15.849158491584916,69.0295958457846],[15.816758167581696,69.02284153670507],[15.759157591575928,69.00595576400625],[15.633156331563328,68.98738141403754],[15.597155971559715,68.99582430038694],[15.568355683556831,69.01271007308577],[15.55035550355504,69.01608722762555],[15.528755287552883,69.00933291854602],[15.546755467554675,69.0008900321966],[15.561155611556131,68.99075856857729],[15.568355683556831,68.97724995041824],[15.568355683556831,68.96205275498929],[15.564755647556495,68.95192129137001],[15.528755287552883,68.9130840141627]]],[[[18.070380703807047,69.43823154509622],[18.077580775807775,69.42472292693716],[18.08118081180814,69.38757422699973],[18.08838088380884,69.37913134065033],[18.09918099180993,69.37575418611056],[18.09918099180993,69.36731129976116],[18.091980919809203,69.35886841341173],[18.084780847808474,69.3521141043322],[18.070380703807047,69.34873694979242],[18.016380163801642,69.3521141043322],[17.95517955179554,69.3419826407129],[17.92277922779229,69.3318511770936],[17.9047790477905,69.31834255893455],[17.919179191791926,69.31158824985502],[17.92277922779229,69.3048339407755],[17.92277922779229,69.29470247715619],[17.926379263792654,69.28288243626702],[17.937179371793718,69.27781670445736],[17.958779587795874,69.26768524083806],[17.965979659796602,69.26261950902841],[17.951579515795174,69.25079946813923],[17.926379263792654,69.24742231359949],[17.879578795787978,69.24911089086936],[17.879578795787978,69.24235658178983],[17.911979119791198,69.2339136954404],[17.933579335793354,69.22715938636088],[17.940779407794082,69.21871650001145],[17.94797947979481,69.2052078818524],[17.969579695796966,69.20183072731263],[17.991179911799122,69.20351930458253],[18.009180091800914,69.20183072731263],[17.987579875798758,69.1866335318837],[17.958779587795874,69.17987922280417],[17.82197821978221,69.16974775918487],[17.706777067770673,69.17312491372462],[17.609576095760957,69.15455056375592],[17.51957519575197,69.1579277182957],[17.48717487174872,69.15455056375592],[17.49437494374945,69.168059181915],[17.505175051750513,69.17987922280417],[17.530375303753033,69.20183072731263],[17.497974979749813,69.20351930458253],[17.472774727747293,69.20014215004275],[17.447574475744773,69.19338784096323],[17.41877418774189,69.17987922280417],[17.379173791737912,69.15455056375592],[17.23517235172352,69.10558182292934],[17.188371883718844,69.08363031842086],[17.15957159571596,69.0498587730232],[17.173971739717416,69.04479304121355],[17.199171991719936,69.0481701957533],[17.213572135721364,69.04479304121355],[17.18477184771848,69.02453011397495],[17.130771307713076,69.0110214958159],[17.073170731707336,69.00764434127612],[17.040770407704088,69.01608722762555],[17.04437044370445,69.03128442305447],[17.05877058770588,69.0397273094039],[17.080370803708036,69.04310446394368],[17.098370983709856,69.04479304121355],[17.087570875708764,69.0481701957533],[17.0839708397084,69.0498587730232],[17.091170911709128,69.06167881391238],[17.105571055710556,69.06674454572203],[17.123571235712376,69.0684331229919],[17.137971379713804,69.07181027753168],[17.10917109171092,69.08531889569073],[16.82476824768247,69.05492450483285],[16.810368103681043,69.06505596845213],[16.777967779677795,69.07012170026178],[16.77436774367743,69.08869605023051],[16.785167851678523,69.10895897746909],[16.81756817568177,69.11909044108839],[16.871568715687175,69.10389324565944],[16.896768967689695,69.10389324565944],[16.89316893168933,69.12584475016791],[16.986769867698683,69.13935336832697],[17.03357033570336,69.13259905924744],[17.055170551705515,69.13259905924744],[17.06957069570697,69.1477962546764],[17.065970659706608,69.14948483194627],[17.062370623706244,69.15286198648604],[17.05877058770588,69.1562391410258],[17.055170551705515,69.15961629556557],[17.145171451714532,69.18325637734392],[17.173971739717416,69.20183072731263],[17.0839708397084,69.18156780007405],[17.047970479704816,69.17987922280417],[16.97596975969759,69.1950764182331],[16.90036900369003,69.1950764182331],[16.90036900369003,69.20183072731263],[16.90756907569076,69.20351930458253],[16.911169111691123,69.2052078818524],[16.914769147691487,69.21027361366205],[16.91836918369185,69.2153393454717],[16.90036900369003,69.22040507728136],[16.889568895688967,69.22209365455123],[16.878768787687875,69.22209365455123],[16.94356943569437,69.23729084998018],[17.087570875708764,69.22884796363076],[17.145171451714532,69.25586519994889],[17.123571235712376,69.25079946813923],[17.116371163711648,69.24911089086936],[17.10917109171092,69.25248804540911],[17.105571055710556,69.25586519994889],[17.10917109171092,69.26093093175854],[17.10917109171092,69.26261950902841],[17.10917109171092,69.26768524083806],[17.098370983709856,69.28119385899711],[17.087570875708764,69.28963674534654],[17.0839708397084,69.27950528172724],[17.06957069570697,69.26768524083806],[17.040770407704088,69.26768524083806],[16.979569795697955,69.27612812718749],[16.979569795697955,69.28288243626702],[16.990369903699047,69.28457101353689],[16.997569975699776,69.28794816807667],[17.00837008370084,69.29807963169594],[16.92556925569255,69.29301389988632],[16.90756907569076,69.29807963169594],[16.896768967689695,69.31158824985502],[16.914769147691487,69.31834255893455],[17.130771307713076,69.31158824985502],[17.123571235712376,69.3132768271249],[17.105571055710556,69.32509686801407],[17.116371163711648,69.3318511770936],[17.07677076770767,69.33016259982372],[17.05877058770588,69.3335397543635],[17.040770407704088,69.34535979525268],[17.05877058770588,69.35042552706233],[17.07677076770767,69.3521141043322],[17.10917109171092,69.3521141043322],[17.0839708397084,69.3622455679515],[17.055170551705515,69.36393414522138],[16.972369723697255,69.35717983614185],[16.878768787687875,69.35886841341173],[16.878768787687875,69.36562272249125],[16.89316893168933,69.36562272249125],[16.90756907569076,69.36899987703103],[16.93276932769328,69.37913134065033],[16.929169291692915,69.38419707245998],[16.92556925569255,69.39432853607926],[16.939969399694007,69.39770569061903],[16.95076950769507,69.39770569061903],[16.979569795697955,69.39263995880938],[16.990369903699047,69.38757422699973],[16.997569975699776,69.38588564972986],[17.004770047700475,69.38757422699973],[17.015570155701568,69.39770569061903],[17.022770227702296,69.40108284515881],[17.040770407704088,69.39770569061903],[17.062370623706244,69.3892628042696],[17.07677076770767,69.38588564972986],[17.094770947709492,69.38757422699973],[17.123571235712376,69.39770569061903],[17.141571415714168,69.40108284515881],[17.274772747727496,69.39432853607926],[17.36837368373685,69.36731129976116],[17.400774007740097,69.36562272249125],[17.389973899739005,69.3808199179202],[17.371973719737213,69.38757422699973],[17.332373323733236,69.39432853607926],[17.296372963729652,69.41121430877809],[17.281972819728196,69.41459146331786],[17.447574475744773,69.41459146331786],[17.49437494374945,69.42810008147691],[17.325173251732537,69.43992012236609],[17.242372423724248,69.45511731779504],[17.18477184771848,69.50239748135175],[17.224372243722456,69.50070890408188],[17.245972459724612,69.49564317227222],[17.263972639726404,69.4787573995734],[17.281972819728196,69.470314513224],[17.303573035730352,69.46356020414447],[17.31797317973181,69.46187162687457],[17.307173071730716,69.47706882230352],[17.303573035730352,69.48213455411317],[17.371973719737213,69.47706882230352],[17.39357393573937,69.48213455411317],[17.36837368373685,69.49057744046257],[17.325173251732537,69.5175946767807],[17.303573035730352,69.52266040859035],[17.31797317973181,69.53448044947953],[17.34317343173433,69.53785760401931],[17.371973719737213,69.53448044947953],[17.404374043740432,69.52266040859035],[17.422374223742253,69.51928325405058],[17.451174511745137,69.5175946767807],[17.4619746197462,69.51421752224093],[17.476374763747657,69.499020326812],[17.48717487174872,69.49564317227222],[17.51237512375124,69.49395459500235],[17.530375303753033,69.49057744046257],[17.584375843758437,69.4686259359541],[17.602376023760257,69.46356020414447],[17.64557645576457,69.46187162687457],[17.64557645576457,69.4686259359541],[17.616776167761685,69.47538024503365],[17.602376023760257,69.48213455411317],[17.591575915759165,69.4888888631927],[17.584375843758437,69.4973317495421],[17.56997569975701,69.51928325405058],[17.566375663756645,69.52266040859035],[17.49437494374945,69.54123475855906],[17.476374763747657,69.55305479944823],[17.46917469174693,69.55980910852776],[17.4619746197462,69.57162914941696],[17.46917469174693,69.58007203576636],[17.472774727747293,69.58682634484589],[17.472774727747293,69.59358065392541],[17.46917469174693,69.60033496300497],[17.515975159751605,69.59695780846519],[17.555575555755553,69.57500630395671],[17.616776167761685,69.5175946767807],[17.631176311763113,69.51252894497105],[17.656376563765633,69.5091517904313],[17.681576815768153,69.5091517904313],[17.692376923769245,69.52097183132048],[17.68877688776888,69.52941471766988],[17.67077670776709,69.53279187220966],[17.667176671766725,69.54123475855906],[17.66357663576636,69.55136622217836],[17.659976599765997,69.56994057214706],[17.659976599765997,69.57838345849649],[17.656376563765633,69.58513776757601],[17.652776527765297,69.59020349938567],[17.652776527765297,69.59358065392541],[17.659976599765997,69.60033496300497],[17.674376743767453,69.60371211754472],[17.68877688776888,69.60033496300497],[17.699576995769974,69.59189207665554],[17.706777067770673,69.58513776757601],[17.735577355773557,69.55136622217836],[17.753577535775378,69.54123475855906],[17.77157771577717,69.54798906763858],[17.800378003780054,69.57500630395671],[17.818378183781846,69.58682634484589],[17.836378363783638,69.59189207665554],[17.857978579785794,69.58682634484589],[17.87237872378725,69.57331772668684],[17.893978939789406,69.5361690267494],[17.883178831788314,69.5277261404],[17.861578615786158,69.51590609951083],[17.850778507785094,69.5091517904313],[17.843578435784366,69.50239748135175],[17.843578435784366,69.4973317495421],[17.839978399784002,69.49226601773248],[17.836378363783638,69.48213455411317],[17.825578255782574,69.46524878141435],[17.82197821978221,69.45680589506492],[17.829178291782938,69.44836300871552],[17.843578435784366,69.44498585417574],[17.857978579785794,69.45174016325527],[17.875978759787614,69.47200309049387],[17.883178831788314,69.4888888631927],[17.890378903789042,69.499020326812],[17.919179191791926,69.50577463589153],[17.933579335793354,69.51928325405058],[17.944379443794446,69.52266040859035],[17.97317973179733,69.51928325405058],[18.04878048780489,69.49564317227222],[18.0379803798038,69.48551170865292],[18.019980199802006,69.48044597684327],[17.983979839798394,69.48213455411317],[17.994779947799486,69.46356020414447],[17.983979839798394,69.45005158598539],[17.940779407794082,69.42810008147691],[17.983979839798394,69.41290288604799],[18.001980019800214,69.40952573150821],[18.016380163801642,69.42134577239739],[18.009180091800914,69.43316581328656],[18.02358023580237,69.44160869963599],[18.04878048780489,69.44329727690587],[18.070380703807047,69.43823154509622]]],[[[18.999189991899925,69.82829289443913],[19.02079020790208,69.81478427628005],[19.0459904599046,69.80296423539087],[19.060390603906058,69.78776703996195],[19.056790567905693,69.76412695818357],[19.035190351903537,69.74386403094499],[18.97038970389704,69.73373256732569],[18.912789127891273,69.69827244465816],[18.87678876788769,69.69151813557863],[18.837188371883713,69.68982955830873],[18.804788047880493,69.68138667195933],[18.7939879398794,69.67632094014968],[18.783187831878337,69.66618947653038],[18.772387723877245,69.6543694356412],[18.76878768787688,69.6459265492918],[18.77598775987761,69.6357950856725],[18.7939879398794,69.63241793113272],[18.811988119881192,69.62904077659297],[18.82638826388265,69.62228646751342],[18.837188371883713,69.60371211754472],[18.822788227882285,69.59020349938567],[18.76878768787688,69.57162914941696],[18.732787327873297,69.56487484033741],[18.624786247862488,69.57838345849649],[18.613986139861396,69.57500630395671],[18.577985779857812,69.56149768579766],[18.55998559985599,69.55812053125788],[18.48438484384843,69.55812053125788],[18.261182611826115,69.53110329493975],[18.192781927819283,69.53110329493975],[18.167581675816763,69.54123475855906],[18.127981279812815,69.56487484033741],[18.10638106381066,69.57162914941696],[18.04878048780489,69.57162914941696],[18.019980199802006,69.57669488122659],[17.994779947799486,69.59189207665554],[18.00558005580058,69.60033496300497],[18.027180271802735,69.61384358116402],[18.0379803798038,69.61890931297367],[18.034380343803434,69.62397504478332],[18.0307803078031,69.63241793113272],[18.041580415804162,69.63241793113272],[18.04878048780489,69.63072935386285],[18.070380703807047,69.62397504478332],[18.08118081180814,69.62228646751342],[18.091980919809203,69.6256636220532],[18.11358113581136,69.63241793113272],[18.135181351813515,69.63748366294237],[18.235982359823595,69.62904077659297],[18.261182611826115,69.62228646751342],[18.268382683826843,69.6172207357038],[18.2827828278283,69.60540069481459],[18.279182791827935,69.60540069481459],[18.27558275582757,69.60033496300497],[18.279182791827935,69.59526923119532],[18.289982899829,69.59189207665554],[18.297182971829727,69.59526923119532],[18.31518315183152,69.60877784935437],[18.32598325983261,69.61215500389415],[18.322383223832247,69.61890931297367],[18.343983439834403,69.61890931297367],[18.354783547835495,69.62228646751342],[18.36558365583656,69.62904077659297],[18.39078390783908,69.63410650840262],[18.40158401584017,69.64086081748215],[18.32598325983261,69.63241793113272],[18.304383043830455,69.63410650840262],[18.289982899829,69.63917224021225],[18.185581855818555,69.70840390827746],[18.21438214382144,69.71346964008708],[18.31518315183152,69.70840390827746],[18.311583115831155,69.70840390827746],[18.354783547835495,69.70502675373768],[18.477184771847732,69.70840390827746],[18.610386103861032,69.69320671284851],[18.631986319863216,69.7016495991979],[18.59238592385924,69.71009248554734],[18.39078390783908,69.72022394916664],[18.35118351183513,69.73035541278591],[18.343983439834403,69.75061834002452],[18.32598325983261,69.76581553545347],[18.33318333183334,69.7810127308824],[18.35838358383586,69.79283277177157],[18.38358383583838,69.79789850358122],[18.394383943839443,69.79620992631135],[18.40158401584017,69.7911441945017],[18.419584195841963,69.7810127308824],[18.437584375843755,69.77594699907274],[18.46638466384664,69.77932415361252],[18.480784807848096,69.77763557634265],[18.48438484384843,69.76919268999322],[18.480784807848096,69.75906122637392],[18.48438484384843,69.75061834002452],[18.502385023850252,69.75061834002452],[18.513185131851316,69.7539954945643],[18.520385203852044,69.7624383809137],[18.53478534785347,69.7810127308824],[18.556385563855656,69.79620992631135],[18.585185851858512,69.80296423539087],[18.653586535865372,69.80465281266078],[18.64278642786428,69.75568407183417],[18.664386643866436,69.71346964008708],[18.707587075870777,69.68645240376898],[18.761587615876152,69.68814098103886],[18.74358743587436,69.69489529011838],[18.736387363873632,69.70671533100756],[18.739987399873996,69.72022394916664],[18.757987579875817,69.75230691729439],[18.790387903879036,69.78438988542217],[18.77598775987761,69.79620992631135],[18.689586895868956,69.83504720351866],[18.67518675186753,69.84686724440783],[18.6679866798668,69.86037586256688],[18.678786787867892,69.88570452161514],[18.71838718387184,69.88232736707536],[18.765187651876516,69.87050732618619],[18.797587975879765,69.87388448072596],[18.783187831878337,69.87895021253561],[18.80118801188013,69.88739309888501],[18.822788227882285,69.88570452161514],[18.840788407884077,69.87726163526571],[18.858788587885897,69.86544159437653],[18.847988479884805,69.86206443983679],[18.84438844388444,69.85699870802713],[18.837188371883713,69.84517866713796],[18.858788587885897,69.84517866713796],[18.898388983889845,69.8485558216777],[18.984789847898497,69.83335862624878],[18.999189991899925,69.82829289443913]]],[[[-51.223112231122315,69.91441033520314],[-51.19431194311943,69.92116464428267],[-51.13671136711366,69.91778748974289],[-51.08271082710826,69.92623037609232],[-51.014310143101426,69.92454179882245],[-51.003510035100334,69.92116464428267],[-50.92790927909277,69.89752456250432],[-50.90270902709025,69.89414740796454],[-50.837908379083785,69.90090171704406],[-50.80550805508054,69.90090171704406],[-50.77670776707765,69.88739309888501],[-50.78390783907838,69.88232736707536],[-50.79830798307984,69.86544159437653],[-50.67950679506794,69.87050732618619],[-50.661506615066145,69.85699870802713],[-50.661506615066145,69.84349008986806],[-50.661506615066145,69.83504720351866],[-50.66870668706687,69.829981471709],[-50.76590765907659,69.78438988542217],[-50.79110791107911,69.76919268999322],[-50.80550805508054,69.76412695818357],[-50.82710827108269,69.76412695818357],[-50.85950859508594,69.77594699907274],[-50.8739087390874,69.77763557634265],[-50.888308883088825,69.772569844533],[-50.9351093510935,69.74217545367512],[-50.963909639096386,69.73035541278591],[-50.971109711097114,69.72022394916664],[-50.963909639096386,69.69658386738826],[-50.963909639096386,69.68476382649908],[-50.963909639096386,69.6729437856099],[-50.96750967509675,69.6645008992605],[-50.98550985509854,69.6442379720219],[-50.98550985509854,69.63410650840262],[-50.98550985509854,69.61890931297367],[-50.95670956709566,69.57838345849649],[-50.94950949509496,69.55980910852776],[-50.978309783097814,69.55136622217836],[-50.9999099991,69.54967764490848],[-51.046710467104674,69.54123475855906],[-51.115111151111506,69.51252894497105],[-51.13671136711366,69.5091517904313],[-51.16911169111691,69.51252894497105],[-51.21231212312122,69.52097183132048],[-51.24471244712447,69.53785760401931],[-51.24111241112411,69.56149768579766],[-51.23751237512374,69.56487484033741],[-51.28431284312842,69.6070892720845],[-51.298712987129875,69.6256636220532],[-51.323913239132395,69.6746323628798],[-51.33471334713346,69.68814098103886],[-51.37071370713707,69.69489529011838],[-51.3851138511385,69.7016495991979],[-51.3851138511385,69.71178106281721],[-51.36351363513634,69.73035541278591],[-51.35271352713528,69.73879829913534],[-51.34191341913419,69.74217545367512],[-51.28791287912878,69.74048687640521],[-51.26271262712626,69.74724118548474],[-51.273512735127355,69.77088126726312],[-51.21591215912159,69.80465281266078],[-51.18351183511834,69.81816143081983],[-51.11871118711187,69.83167004897888],[-51.03231032310322,69.86881874891631],[-51.003510035100334,69.88739309888501],[-51.046710467104674,69.88401594434524],[-51.08631086310862,69.87726163526571],[-51.16191161911618,69.85362155348736],[-51.21231212312122,69.84349008986806],[-51.35991359913598,69.85362155348736],[-51.32031320313203,69.86881874891631],[-51.21231212312122,69.88908167615489],[-51.18351183511834,69.90765602612362],[-51.19431194311943,69.90596744885372],[-51.205112051120494,69.90765602612362],[-51.21591215912159,69.90934460339349],[-51.223112231122315,69.91441033520314]]],[[[19.618396183961835,70.01741354866598],[19.636396363963655,70.02079070320576],[19.654396543965447,70.02079070320576],[19.668796687966875,70.01741354866598],[19.68319683196833,70.00728208504668],[19.68319683196833,69.9853305805382],[19.64719647196472,69.97013338510928],[19.53919539195394,69.95155903514055],[19.53199531995321,69.9464933033309],[19.524795247952483,69.93467326244172],[19.52119521195212,69.93129610790197],[19.517595175951755,69.9194760670128],[19.517595175951755,69.91441033520314],[19.510395103951055,69.90765602612362],[19.492394923949234,69.90259029431397],[19.485194851948535,69.89752456250432],[19.474394743947443,69.88739309888501],[19.434794347943495,69.86881874891631],[19.423994239942402,69.86206443983679],[19.416794167941674,69.85362155348736],[19.41319413194134,69.84517866713796],[19.40599405994061,69.8384243580584],[19.373593735937362,69.82322716262948],[19.333993339933414,69.81309569901018],[19.12159121591216,69.78776703996195],[19.089190891908913,69.801275658121],[19.056790567905693,69.83167004897888],[19.042390423904237,69.8384243580584],[18.84438844388444,69.90259029431397],[18.765187651876516,69.91441033520314],[18.732787327873297,69.93129610790197],[18.729187291872933,69.9481818806008],[18.76878768787688,69.95493618968032],[18.865988659886597,69.94142757152127],[18.883988839888417,69.94480472606102],[18.912789127891273,69.96169049875985],[18.934389343893457,69.97013338510928],[18.87678876788769,69.97351053964903],[18.84438844388444,69.98195342599846],[18.829988299883013,69.99883919869728],[18.84438844388444,70.01572497139611],[18.87678876788769,70.02416785774551],[18.934389343893457,70.03092216682504],[18.984789847898497,70.02416785774551],[18.999189991899925,70.02585643501538],[19.017190171901717,70.03429932136481],[19.031590315903173,70.03767647590456],[19.042390423904237,70.03429932136481],[19.049590495904965,70.02754501228529],[19.05319053190533,70.02079070320576],[19.056790567905693,70.01741354866598],[19.074790747907485,70.01572497139611],[19.117991179911797,70.03092216682504],[19.10359103591037,70.04105363044434],[19.081990819908214,70.05118509406364],[19.067590675906757,70.06131655768294],[19.063990639906393,70.07820233038177],[19.085590855908578,70.07144802130222],[19.10359103591037,70.06975944403234],[19.117991179911797,70.07313659857212],[19.207992079920814,70.09846525762035],[19.225992259922606,70.0933995258107],[19.225992259922606,70.0849566394613],[19.222392223922242,70.07313659857212],[19.233192331923334,70.06469371222269],[19.25479254792549,70.06807086676247],[19.276392763927646,70.07820233038177],[19.297992979929802,70.08664521673117],[19.323193231932322,70.07820233038177],[19.308793087930894,70.0663822894926],[19.294392943929438,70.04780793952386],[19.290792907929074,70.03092216682504],[19.341193411934114,70.01741354866598],[19.391593915939154,69.99208488961773],[19.42039420394204,69.98870773507798],[19.42039420394204,70.01403639412621],[19.43839438394386,70.03261074409494],[19.467194671946714,70.04611936225399],[19.535595355953575,70.05793940314317],[19.55719557195573,70.05625082587329],[19.575195751957523,70.04780793952386],[19.58239582395825,70.03429932136481],[19.578795787957887,70.02416785774551],[19.57159571595716,70.01403639412621],[19.57159571595716,70.00390493050693],[19.58239582395825,69.99377346688763],[19.593195931959315,69.99715062142738],[19.60759607596077,70.00897066231656],[19.618396183961835,70.01741354866598]]],[[[22.42282422824229,70.51047811147174],[22.408424084240863,70.51385526601149],[22.39762397623977,70.51385526601149],[22.37242372423725,70.50372380239219],[22.343623436234367,70.49865807058256],[22.307623076230783,70.50372380239219],[22.293222932229327,70.51385526601149],[22.31122311223112,70.53074103871032],[22.2860228602286,70.54087250232962],[22.268022680226807,70.52905246144044],[22.242822428224287,70.49021518423314],[22.22122221222213,70.48008372061383],[22.18522185221852,70.47332941153431],[22.1528215282153,70.47164083426443],[22.142021420214206,70.48346087515361],[22.1528215282153,70.50034664785244],[22.160021600215998,70.51216668874162],[22.18522185221852,70.5341181932501],[22.20322203222034,70.5442496568694],[22.24642246422465,70.55606969775857],[22.264422644226443,70.5712668931875],[22.257222572225743,70.5729554704574],[22.23562235622356,70.57970977953693],[22.31122311223112,70.6016612840454],[22.332823328233303,70.61348132493458],[22.098820988209894,70.60672701585506],[22.091620916209166,70.60334986131528],[22.07722077220774,70.59490697496585],[22.07002070020701,70.59321839769598],[22.041220412204126,70.59321839769598],[22.012420124201242,70.5999727067755],[22.026820268202698,70.61179274766468],[22.055620556205582,70.62530136582376],[22.073620736207374,70.63374425217316],[22.008820088200878,70.63374425217316],[21.976419764197658,70.63712140671294],[21.951219512195138,70.64725287033224],[21.98721987219872,70.66245006576116],[22.04482044820449,70.65907291122141],[22.19602196021961,70.63205567490328],[22.22122221222213,70.63205567490328],[22.242822428224287,70.64049856125268],[22.250022500225015,70.64894144760211],[22.250022500225015,70.65907291122141],[22.242822428224287,70.66920437484072],[22.22842228422286,70.67427010665034],[22.264422644226443,70.67427010665034],[22.32202322023221,70.66076148849129],[22.415624156241563,70.62698994309363],[22.415624156241563,70.63374425217316],[22.401224012240135,70.64725287033224],[22.383223832238343,70.67258152938047],[22.37242372423725,70.69791018842872],[22.383223832238343,70.7097302293179],[22.4048240482405,70.7097302293179],[22.415624156241563,70.708041652048],[22.42282422824229,70.70297592023834],[22.433624336243383,70.69284445661907],[22.44802448024481,70.68271299299977],[22.469624696246967,70.67595868392024],[22.491224912249123,70.67595868392024],[22.51282512825128,70.6810244157299],[22.49842498424985,70.6894673020793],[22.494824948249487,70.6995987656986],[22.502025020250215,70.708041652048],[22.516425164251643,70.71479596112755],[22.541625416254163,70.7181731156673],[22.566825668256683,70.71310738385765],[22.653226532265336,70.68777872480942],[22.6568265682657,70.6810244157299],[22.642426424264244,70.67089295211059],[22.60642606426066,70.66076148849129],[22.595625956259568,70.65231860214189],[22.60642606426066,70.64049856125268],[22.63162631626318,70.63543282944306],[22.653226532265336,70.64556429306234],[22.671226712267128,70.65738433395151],[22.68922689226892,70.66076148849129],[22.703627036270376,70.65231860214189],[22.70722707227074,70.63712140671294],[22.70722707227074,70.62192421128398],[22.71442714427144,70.6101041703948],[22.725227252272532,70.60334986131528],[22.73242732427326,70.61179274766468],[22.736027360273596,70.62530136582376],[22.736027360273596,70.63712140671294],[22.746827468274688,70.64725287033224],[22.772027720277208,70.65063002487199],[22.826028260282612,70.64725287033224],[22.80802808028082,70.66245006576116],[22.786427864278636,70.67427010665034],[22.793627936279364,70.69284445661907],[22.779227792277936,70.70466449750825],[22.754027540275416,70.71310738385765],[22.728827288272896,70.72999315655647],[22.725227252272532,70.736747465636],[22.721627216272168,70.74350177471555],[22.721627216272168,70.7485675065252],[22.754027540275416,70.75194466106495],[22.804428044280456,70.76376470195413],[22.797227972279728,70.75363323833483],[22.793627936279364,70.75025608379508],[22.811628116281156,70.74350177471555],[22.851228512285132,70.74181319744565],[22.86562865628656,70.72999315655647],[22.854828548285496,70.72999315655647],[22.854828548285496,70.72323884747695],[22.87282872828729,70.72323884747695],[22.905229052290537,70.7283045792866],[22.92322923229233,70.72492742474682],[22.930429304293057,70.71648453839742],[22.92322923229233,70.708041652048],[22.894428944289444,70.69453303388894],[22.9160291602916,70.68440157026964],[22.944829448294485,70.67089295211059],[22.970029700297005,70.66076148849129],[22.99162991629916,70.66751579757081],[22.977229772297733,70.6810244157299],[22.99882998829989,70.68777872480942],[23.020430204302045,70.69284445661907],[23.031230312303137,70.70128734296847],[23.02403024030241,70.72323884747695],[23.04923049230493,70.72323884747695],[23.096030960309605,70.7097302293179],[23.121231212312125,70.7097302293179],[23.11043110431106,70.71479596112755],[23.09963099630997,70.72323884747695],[23.09243092430924,70.73168173382638],[23.09963099630997,70.736747465636],[23.164431644316437,70.72999315655647],[23.182431824318257,70.736747465636],[23.171631716317165,70.74012462017578],[23.164431644316437,70.74350177471555],[23.146431464314645,70.74350177471555],[23.13563135631358,70.74519035198543],[23.132031320313217,70.75025608379508],[23.132031320313217,70.75532181560473],[23.128431284312853,70.7570103928746],[23.070830708307085,70.76714185649391],[23.052830528305293,70.77389616557343],[23.031230312303137,70.79078193827226],[23.04923049230493,70.79753624735179],[23.09963099630997,70.79922482462166],[23.09243092430924,70.79922482462166],[23.081630816308177,70.80260197916144],[23.07443074430745,70.80597913370121],[23.06723067230672,70.81273344278074],[23.09243092430924,70.81442202005061],[23.139231392313917,70.79584767008191],[23.1608316083161,70.79078193827226],[23.182431824318257,70.79415909281204],[23.18603186031862,70.80260197916144],[23.178831788317893,70.81104486551084],[23.1608316083161,70.81779917459039],[23.1608316083161,70.82624206093979],[23.189631896318957,70.81611059732049],[23.24363243632436,70.78740478373248],[23.272432724327246,70.77727332011321],[23.286832868328702,70.77558474284331],[23.330033300333014,70.77896189738308],[23.340833408334078,70.78402762919274],[23.340833408334078,70.79922482462166],[23.31923319233192,70.81779917459039],[23.322833228332286,70.82961921547957],[23.322833228332286,70.83806210182897],[23.315633156331558,70.84988214271814],[23.312033120331222,70.86170218360732],[23.32643326433265,70.86676791541697],[23.340833408334078,70.86676791541697],[23.358833588335898,70.86339076087722],[23.373233732337326,70.85832502906757],[23.384033840338418,70.84988214271814],[23.394833948339482,70.84312783363862],[23.434434344343458,70.82961921547957],[23.441634416344158,70.82961921547957],[23.445234452344522,70.81273344278074],[23.456034560345614,70.80429055643131],[23.466834668346678,70.80091340189156],[23.4848348483485,70.79922482462166],[23.45963459634598,70.79078193827226],[23.412834128341302,70.79247051554213],[23.387633876338782,70.78402762919274],[23.40203402034021,70.77727332011321],[23.420034200342002,70.77389616557343],[23.456034560345614,70.77051901103366],[23.445234452344522,70.76714185649391],[23.423634236342366,70.76714185649391],[23.416434164341638,70.76376470195413],[23.409234092340938,70.75869897014448],[23.405634056340574,70.7468789292553],[23.40203402034021,70.74350177471555],[23.384033840338418,70.74350177471555],[23.348033480334806,70.75363323833483],[23.333633336333378,70.75025608379508],[23.32643326433265,70.74181319744565],[23.322833228332286,70.71986169293717],[23.31923319233192,70.7097302293179],[23.315633156331558,70.708041652048],[23.308433084330858,70.7097302293179],[23.297632976329766,70.7097302293179],[23.283232832328338,70.70128734296847],[23.25083250832509,70.69453303388894],[23.265232652326517,70.68440157026964],[23.272432724327246,70.6810244157299],[23.182431824318257,70.6894673020793],[23.1680316803168,70.69453303388894],[23.157231572315737,70.69453303388894],[23.153631536315373,70.67764726119012],[23.146431464314645,70.67258152938047],[23.14283142831428,70.66920437484072],[23.13563135631358,70.66751579757081],[23.14283142831428,70.65907291122141],[23.153631536315373,70.65569575668164],[23.182431824318257,70.65400717941176],[23.1680316803168,70.64894144760211],[23.153631536315373,70.63205567490328],[23.14283142831428,70.62698994309363],[23.121231212312125,70.62361278855388],[23.078030780307813,70.63036709763341],[23.06003060030602,70.62698994309363],[23.114031140311397,70.61348132493458],[23.088830888308877,70.58646408861645],[23.056430564305657,70.5915298204261],[23.01683016830168,70.60334986131528],[22.98442984429846,70.5999727067755],[23.006030060300617,70.59659555223575],[23.00963009630098,70.58477551134658],[22.99882998829989,70.5729554704574],[22.977229772297733,70.56620116137785],[22.952029520295213,70.56620116137785],[22.905229052290537,70.57802120226705],[22.880028800288017,70.57970977953693],[22.880028800288017,70.5712668931875],[22.937629376293756,70.55775827502845],[22.926829268292693,70.54931538867902],[22.912429124291236,70.5442496568694],[22.901629016290173,70.53918392505975],[22.887228872288716,70.53749534778984],[22.869228692286924,70.53918392505975],[22.844028440284404,70.54931538867902],[22.83322833228334,70.55100396594892],[22.82242822428225,70.54762681140915],[22.800828008280092,70.52736388417057],[22.790027900279,70.52398672963079],[22.772027720277208,70.52567530690067],[22.76482764827648,70.53074103871032],[22.768427684276844,70.53918392505975],[22.779227792277936,70.55100396594892],[22.68922689226892,70.5628240068381],[22.642426424264244,70.56451258410797],[22.635226352263544,70.55100396594892],[22.628026280262816,70.5442496568694],[22.635226352263544,70.53242961598019],[22.63162631626318,70.52567530690067],[22.620826208262088,70.52398672963079],[22.610026100261024,70.52398672963079],[22.602826028260296,70.52567530690067],[22.595625956259568,70.52905246144044],[22.58842588425884,70.52905246144044],[22.584825848258504,70.51554384328139],[22.577625776257776,70.50878953420184],[22.570425704257048,70.50541237966209],[22.566825668256683,70.50372380239219],[22.516425164251643,70.52736388417057],[22.48762487624876,70.53242961598019],[22.476824768247695,70.50710095693196],[22.469624696246967,70.49528091604279],[22.44802448024481,70.49696949331266],[22.43002430024302,70.50541237966209],[22.42282422824229,70.51047811147174]]],[[[116.63216632166325,-8.275160146715223],[116.66816668166683,-8.288668764874288],[116.70776707767078,-8.317374578462292],[116.7365673656737,-8.352834701129822],[116.74376743767436,-8.39167197833713],[116.7365673656737,-8.408557751035957],[116.70056700567005,-8.457526491862552],[116.69336693366932,-8.46765795548184],[116.68616686166865,-8.481166573640905],[116.68256682566829,-8.55715255078563],[116.66816668166683,-8.574038323484459],[116.62856628566288,-8.61456417796164],[116.61776617766179,-8.63482710520023],[116.59976599765997,-8.666910073328012],[116.58176581765821,-8.69730446418589],[116.55656556565566,-8.744584627742611],[116.52056520565208,-8.778356173140267],[116.49896498964989,-8.80199625491862],[116.50976509765098,-8.832390645776513],[116.50616506165062,-8.847587841205453],[116.50976509765098,-8.857719304824755],[116.52056520565208,-8.85940788209463],[116.5277652776528,-8.842522109395802],[116.5421654216542,-8.835767800316276],[116.54576545765457,-8.845899263935578],[116.56016560165602,-8.849276418475341],[116.57096570965712,-8.85940788209463],[116.58896588965888,-8.862785036634392],[116.56376563765639,-8.894868004762174],[116.52416524165244,-8.901622313841699],[116.50976509765098,-8.896556582032048],[116.47736477364776,-8.920196663810415],[116.44496444964449,-8.920196663810415],[116.43416434164345,-8.910065200191113],[116.45216452164522,-8.88642511841276],[116.45936459364594,-8.86447361390428],[116.47016470164704,-8.839144954856039],[116.45576455764558,-8.834079223046388],[116.42336423364236,-8.835767800316276],[116.39816398163981,-8.856030727554867],[116.39816398163981,-8.883047963872997],[116.40176401764018,-8.916819509270638],[116.40176401764018,-8.953968209208071],[116.39096390963908,-8.94890247739842],[116.38736387363872,-8.937082436509243],[116.38736387363872,-8.923573818350178],[116.38016380163805,-8.911753777461001],[116.36936369363696,-8.911753777461001],[116.36216362163623,-8.925262395620052],[116.35136351363514,-8.92695097288994],[116.34776347763477,-8.92188524108029],[116.34416344163441,-8.911753777461001],[116.33696336963368,-8.903310891111587],[116.32616326163264,-8.898245159301936],[116.31176311763119,-8.901622313841699],[116.27216272162724,-8.916819509270638],[116.25416254162542,-8.920196663810415],[116.25056250562506,-8.916819509270638],[116.24336243362433,-8.908376622921224],[116.2361623616236,-8.904999468381462],[116.22536225362256,-8.908376622921224],[116.21096210962111,-8.918508086540527],[116.20376203762038,-8.920196663810415],[116.19656196561965,-8.915130932000764],[116.17856178561789,-8.888113695682634],[116.1677616776168,-8.877982232063346],[116.15336153361534,-8.876293654793457],[116.10656106561066,-8.874605077523583],[116.1029610296103,-8.888113695682634],[116.0921609216092,-8.896556582032048],[116.0777607776078,-8.894868004762174],[116.06336063360635,-8.884736541142871],[116.07416074160744,-8.87967080933322],[116.08136081360817,-8.872916500253694],[116.08496084960848,-8.86447361390428],[116.0777607776078,-8.857719304824755],[116.06696066960671,-8.856030727554867],[116.05976059760599,-8.857719304824755],[116.0489604896049,-8.862785036634392],[116.04176041760417,-8.86447361390428],[116.03456034560344,-8.871227922983806],[116.0381603816038,-8.883047963872997],[116.04176041760417,-8.901622313841699],[116.03096030960313,-8.908376622921224],[116.02016020160204,-8.908376622921224],[116.00936009360095,-8.904999468381462],[116.00216002160022,-8.898245159301936],[115.99495994959949,-8.889802272952522],[115.98775987759876,-8.867850768444043],[115.98055980559809,-8.857719304824755],[115.969759697597,-8.849276418475341],[115.96615966159663,-8.850964995745215],[115.9589595895959,-8.854342150284978],[115.94455944559445,-8.857719304824755],[115.92655926559269,-8.854342150284978],[115.86895868958692,-8.820570604887337],[115.840158401584,-8.81719345034756],[115.82935829358297,-8.791864791299318],[115.82935829358297,-8.769913286790853],[115.83295832958333,-8.749650359552263],[115.84735847358473,-8.72432170050402],[115.86895868958692,-8.731076009583546],[115.87975879758801,-8.72432170050402],[115.88335883358837,-8.732764586853435],[115.88695886958868,-8.746273205012486],[115.89055890558905,-8.7547160913619],[115.91935919359196,-8.753027514092025],[115.94095940959409,-8.7547160913619],[115.95535955359554,-8.753027514092025],[115.969759697597,-8.747961782282374],[115.98415984159845,-8.737830318663072],[115.99135991359913,-8.742896050472723],[116.00216002160022,-8.742896050472723],[116.01296012960131,-8.746273205012486],[116.0237602376024,-8.747961782282374],[116.02736027360277,-8.744584627742611],[116.03456034560344,-8.73951889593296],[116.04176041760417,-8.734453164123309],[116.0489604896049,-8.734453164123309],[116.05256052560526,-8.73951889593296],[116.05616056160562,-8.749650359552263],[116.06696066960671,-8.75978182317155],[116.0777607776078,-8.742896050472723],[116.08856088560884,-8.737830318663072],[116.0921609216092,-8.727698855043784],[116.05976059760599,-8.714190236884718],[116.06336063360635,-8.673664382407537],[116.07056070560708,-8.638204259739993],[116.07416074160744,-8.577415478024221],[116.06336063360635,-8.521692428118087],[116.0381603816038,-8.499740923609622],[116.02736027360277,-8.445706450973375],[116.0489604896049,-8.415312060115482],[116.07056070560708,-8.406869173766069],[116.09936099360993,-8.408557751035957],[116.10656106561066,-8.40518059649618],[116.11016110161103,-8.398426287416655],[116.11736117361176,-8.381540514717827],[116.12456124561248,-8.374786205638301],[116.13896138961388,-8.362966164749125],[116.1677616776168,-8.347768969320171],[116.18216182161825,-8.337637505700883],[116.26856268562688,-8.248142910397092],[116.28656286562864,-8.236322869507916],[116.37656376563768,-8.20255132411026],[116.39456394563945,-8.200862746840386],[116.42336423364236,-8.217748519539214],[116.49896498964989,-8.238011446777804],[116.53856538565384,-8.243077178587441],[116.5529655296553,-8.251520064936855],[116.57456574565748,-8.263340105826046],[116.59256592565924,-8.270094414905572],[116.63216632166325,-8.275160146715223]]],[[[100.39960399603996,-3.1840996780188817],[100.41040410404105,-3.212805491606886],[100.4248042480425,-3.238134150655128],[100.46800468004682,-3.287102891481723],[100.47880478804791,-3.3158087050697276],[100.46080460804609,-3.334383055038444],[100.450004500045,-3.32594016868903],[100.42840428404287,-3.303988664180551],[100.41760417604178,-3.2938572005612627],[100.40680406804069,-3.287102891481723],[100.38520385203856,-3.276971427862435],[100.37800378003783,-3.2719056960527837],[100.37800378003783,-3.268528541513021],[100.37800378003783,-3.2482656142744304],[100.37800378003783,-3.2415113051948907],[100.3708037080371,-3.2398227279250165],[100.36360363603637,-3.2398227279250165],[100.36000360003601,-3.238134150655128],[100.33840338403382,-3.2229369552261886],[100.33120331203315,-3.212805491606886],[100.33120331203315,-3.197608296177947],[100.33840338403382,-3.197608296177947],[100.33840338403382,-3.202674027987598],[100.34200342003419,-3.207739759797235],[100.34560345603455,-3.211116914337012],[100.35280352803528,-3.211116914337012],[100.36000360003601,-3.207739759797235],[100.35640356403565,-3.197608296177947],[100.34560345603455,-3.1840996780188817],[100.33840338403382,-3.1621481735104027],[100.33840338403382,-3.1537052871609887],[100.34200342003419,-3.136819514462161],[100.34560345603455,-3.1266880508428727],[100.29160291602915,-3.0777193100162776],[100.27720277202775,-3.0726535782066264],[100.25920259202593,-3.0726535782066264],[100.24840248402484,-3.0692764236668637],[100.25560255602556,-3.05407922823791],[100.24480244802447,-3.043947764618622],[100.21240212402125,-3.0067990646812035],[100.20520205202052,-2.994979023792027],[100.20520205202052,-2.983158982902836],[100.19080190801907,-2.966273210204008],[100.1872018720187,-2.9544531693148315],[100.1872018720187,-2.9409445511557806],[100.1980019800198,-2.9291245102665897],[100.20160201602016,-2.920681623917176],[100.1980019800198,-2.8970415421388225],[100.18000180001803,-2.827809874073637],[100.18000180001803,-2.802481215025395],[100.19080190801907,-2.7906611741362184],[100.22680226802271,-2.772086824167502],[100.24120241202411,-2.7788411332470417],[100.24840248402484,-2.7839068650566787],[100.25560255602556,-2.7906611741362184],[100.27360273602739,-2.821055564994097],[100.28080280802811,-2.8261212968037484],[100.28800288002878,-2.829498451343511],[100.29160291602915,-2.8311870286133995],[100.29520295202951,-2.8345641831531623],[100.35280352803528,-2.8936643875990598],[100.38520385203856,-2.9139273148376503],[100.41760417604178,-2.966273210204008],[100.46800468004682,-3.0152419510306174],[100.47160471604718,-3.0371934555390823],[100.47160471604718,-3.052390650968036],[100.46800468004682,-3.0675878463969752],[100.47160471604718,-3.087850773635566],[100.47160471604718,-3.1131794326838076],[100.46440464404645,-3.131753782652524],[100.44640446404463,-3.128376628112747],[100.4356043560436,-3.1351309371922866],[100.4248042480425,-3.136819514462161],[100.41760417604178,-3.1351309371922866],[100.40680406804069,-3.128376628112747],[100.38520385203856,-3.1435738235417006],[100.3816038160382,-3.1520167098911145],[100.38880388803886,-3.1570824417007657],[100.40320403204032,-3.15877101897064],[100.40320403204032,-3.1655253280501796],[100.39960399603996,-3.1739682143995935],[100.39960399603996,-3.1840996780188817]]],[[[109.75969759697597,-1.103772481523393],[109.76329763297633,-1.108838213333044],[109.77049770497706,-1.1155925224125838],[109.77769777697779,-1.1223468314921092],[109.78129781297815,-1.1307897178415232],[109.77769777697779,-1.1409211814608113],[109.7668976689767,-1.147675490540351],[109.74529745297451,-1.1544297996198765],[109.69849698496984,-1.1898899222874206],[109.6876968769688,-1.196644231366946],[109.67329673296734,-1.2000213859067088],[109.60129601296012,-1.2304157767646018],[109.5688956889569,-1.2473015494634296],[109.53649536495368,-1.2591215903526063],[109.5040950409504,-1.292893135750262],[109.47889478894791,-1.2979588675599132],[109.46449464494646,-1.292893135750262],[109.44649446494464,-1.2810730948610853],[109.42489424894251,-1.2675644767020202],[109.41769417694178,-1.254055858542955],[109.42129421294214,-1.2321043540344903],[109.44289442894433,-1.16962699504883],[109.45369453694536,-1.0041464226003143],[109.46089460894609,-0.9855720726316122],[109.47529475294755,-0.9771291862821982],[109.489694896949,-0.9788177635520725],[109.52569525695259,-0.9889492271713749],[109.54369543695441,-0.9906378044412634],[109.55449554495544,-0.9872606499014864],[109.57609576095763,-0.9737520317424355],[109.58689586895872,-0.9703748772026586],[109.60489604896048,-0.9754406090123098],[109.64089640896412,-0.9957035362509004],[109.65529655296552,-1.0041464226003143],[109.67329673296734,-1.0041464226003143],[109.6876968769688,-0.9973921135207888],[109.69489694896947,-0.9889492271713749],[109.70569705697056,-0.9838834953617237],[109.72369723697238,-0.9872606499014864],[109.73809738097384,-0.9990806907906773],[109.75249752497524,-1.0142778862196167],[109.75969759697597,-1.0311636589184445],[109.75969759697597,-1.103772481523393]]],[[[99.27279272792731,-1.6356743215364418],[99.28719287192871,-1.654248671505158],[99.29439294392944,-1.6863316396329253],[99.29079290792907,-1.7184146077607068],[99.27279272792731,-1.7386775349992973],[99.26199261992622,-1.6694458669340975],[99.25479254792549,-1.654248671505158],[99.22599225992263,-1.613722817027977],[99.21519215192154,-1.6238542806472651],[99.20799207992081,-1.6255428579171536],[99.20079200792009,-1.6289200124569163],[99.21159211592118,-1.6390514760762187],[99.2439924399244,-1.7150374532209298],[99.25479254792549,-1.7555633076981252],[99.25479254792549,-1.772449080396953],[99.2439924399244,-1.7792033894764785],[99.22959229592294,-1.77751481220659],[99.20799207992081,-1.7707605031270646],[99.18279182791827,-1.7741376576668273],[99.1647916479165,-1.7792033894764785],[99.14679146791468,-1.785957698556004],[99.13599135991359,-1.7960891621753063],[99.11799117991183,-1.8028434712548318],[99.09999099991,-1.799466316715069],[98.98478984789847,-1.7403661122691716],[98.95958959589598,-1.7133488759510556],[98.89838898388984,-1.6880202169028138],[98.88398883988839,-1.6795773305533999],[98.84438844388444,-1.6204771261075024],[98.83718837188371,-1.6170999715677397],[98.82638826388268,-1.6120342397580885],[98.82278822788231,-1.6069685079484373],[98.82998829988298,-1.5698198080110188],[98.81198811988122,-1.5292939535338377],[98.64998649986501,-1.2979588675599132],[98.63558635586355,-1.2895159812104993],[98.63198631986319,-1.284450249400848],[98.62838628386282,-1.2793845175911969],[98.63198631986319,-1.2692530539719087],[98.63198631986319,-1.2641873221622575],[98.61398613986142,-1.2287271994947133],[98.6067860678607,-1.2202843131452994],[98.59238592385924,-1.1983328086368346],[98.59958599585997,-1.1763813041283555],[98.62478624786252,-1.1341668723812859],[98.64278642786428,-1.0936410179041047],[98.64998649986501,-1.0716895133956257],[98.64998649986501,-1.0497380088871466],[98.64998649986501,-1.0041464226003143],[98.64998649986501,-0.9821949180918494],[98.65718657186574,-0.9636205681231331],[98.66798667986683,-0.9551776817737192],[98.68598685986859,-0.9484233726941937],[98.70398703987041,-0.9433576408845425],[98.72198721987223,-0.9433576408845425],[98.73638736387363,-0.945046218154431],[98.76878768787691,-0.9568662590436077],[98.78678786787867,-0.9568662590436077],[98.80478804788049,-0.950111949964068],[98.82638826388268,-0.9264718681857147],[98.84078840788408,-0.923094713645952],[98.88398883988839,-0.9129632500266496],[98.89838898388984,-0.9163404045664123],[98.89118891188912,-0.9349147545351286],[98.91638916389167,-0.9399804863447798],[98.93798937989379,-0.9602434135833704],[98.94518945189452,-0.9838834953617237],[98.93798937989379,-1.0041464226003143],[98.93078930789306,-0.9973921135207888],[98.9235892358924,-0.9923263817111376],[98.91638916389167,-0.9906378044412634],[98.90558905589057,-0.9906378044412634],[98.9127891278913,-1.0058349998702028],[98.9235892358924,-1.0176550407593794],[98.93078930789306,-1.029475081648556],[98.93078930789306,-1.0497380088871466],[98.93798937989379,-1.0649352043161002],[98.95238952389525,-1.0750666679353884],[98.9667896678967,-1.0835095542848023],[98.9811898118981,-1.0936410179041047],[98.98838988389883,-1.1105267906029326],[99.00279002790029,-1.1442983360005883],[99.00999009990102,-1.1594955314295277],[99.02799027990278,-1.174692726858467],[99.03159031590314,-1.183135613207881],[99.03519035190351,-1.1932670768271834],[99.03519035190351,-1.20508711771636],[99.03879038790387,-1.2101528495260112],[99.0459904599046,-1.213530004065774],[99.06399063990642,-1.2337929313043645],[99.06759067590679,-1.24054724038389],[99.07119071190715,-1.2506787040031924],[99.06399063990642,-1.2523672812730808],[99.0567905679057,-1.2608101676224948],[99.05319053190533,-1.2726302085116714],[99.06039060390606,-1.2776959403213226],[99.07839078390782,-1.2827616721309596],[99.08919089190891,-1.2962702902900247],[99.09639096390964,-1.3334189902274431],[99.11799117991183,-1.3671905356250988],[99.14319143191432,-1.389142040133578],[99.1647916479165,-1.4144706991818197],[99.1647916479165,-1.4566851309288893],[99.15399153991541,-1.451619399119238],[99.12879128791286,-1.429667894610759],[99.12519125191255,-1.429667894610759],[99.13239132391323,-1.4482422445794754],[99.14679146791468,-1.4701937490879402],[99.1791917919179,-1.503965294485596],[99.189991899919,-1.5107196035651356],[99.19719197191972,-1.5124081808350098],[99.20439204392045,-1.517473912644661],[99.20799207992081,-1.5292939535338377],[99.20799207992081,-1.556311189851968],[99.20799207992081,-1.5731969625507816],[99.2187921879219,-1.5799512716303212],[99.2331923319233,-1.5816398489001955],[99.25119251192513,-1.5799512716303212],[99.26199261992622,-1.5867055807098467],[99.27279272792731,-1.6019027761388003],[99.27639276392767,-1.6204771261075024],[99.27279272792731,-1.6356743215364418]]],[[[98.50238502385025,-0.4604245416980888],[98.50598505985062,-0.4739331598571539],[98.50238502385025,-0.48575320074633055],[98.49518495184952,-0.49926181890539567],[98.4879848798488,-0.5110818597945723],[98.49518495184952,-0.5212133234138605],[98.50238502385025,-0.5347219415729256],[98.50598505985062,-0.5516077142717535],[98.49878498784989,-0.5651163324308186],[98.49518495184952,-0.5651163324308186],[98.49158491584916,-0.5583620233512931],[98.49158491584916,-0.553296291541642],[98.4879848798488,-0.5499191370018792],[98.4879848798488,-0.544853405192228],[98.48078480784807,-0.553296291541642],[98.4735847358474,-0.5566734460814047],[98.46638466384667,-0.5566734460814047],[98.45918459184594,-0.5516077142717535],[98.46638466384667,-0.5380990961126884],[98.4627846278463,-0.5296562097632744],[98.44838448384485,-0.5262790552235117],[98.43038430384303,-0.5313447870331629],[98.42678426784266,-0.5431648279223396],[98.42318423184236,-0.5617391778910559],[98.41958419584199,-0.5786249505898837],[98.42318423184236,-0.5870678369392976],[98.39078390783908,-0.5769363733199953],[98.31518315183155,-0.5347219415729256],[98.27558275582754,-0.5245904779536374],[98.28278282782827,-0.5212133234138605],[98.29358293582936,-0.5127704370644608],[98.30078300783009,-0.5110818597945723],[98.31158311583118,-0.5127704370644608],[98.32958329583295,-0.5195247461439862],[98.33678336783368,-0.5178361688740978],[98.34038340383404,-0.5060161279849211],[98.36558365583659,-0.44185019172938667],[98.36558365583659,-0.4215872644907819],[98.36198361983622,-0.37937283274372646],[98.36558365583659,-0.36079848277501014],[98.36918369183695,-0.3489784418858335],[98.39078390783908,-0.320272628297829],[98.39798397983981,-0.31182974194841506],[98.40518405184054,-0.30845258740865233],[98.41238412384126,-0.30676401013876387],[98.41958419584199,-0.30338685559900114],[98.42678426784266,-0.29832112378934994],[98.42678426784266,-0.28818966017006176],[98.41958419584199,-0.2577952693121688],[98.43038430384303,-0.24428665115310366],[98.44118441184412,-0.24597522842299213],[98.45198451984521,-0.2577952693121688],[98.49518495184952,-0.3287155146472429],[98.50598505985062,-0.36417563731477287],[98.49878498784989,-0.3878157190931404],[98.50958509585098,-0.40301291452207977],[98.51318513185134,-0.42327584176067035],[98.50958509585098,-0.44185019172938667],[98.50238502385025,-0.4604245416980888]]],[[[98.48078480784807,-0.15816921038909015],[98.49878498784989,-0.20038364213615978],[98.53118531185311,-0.23922091934345247],[98.55998559985602,-0.27805819655075936],[98.55638556385566,-0.3185840510279405],[98.55638556385566,-0.31182974194841506],[98.55278552785529,-0.32196120556770325],[98.5419854198542,-0.3337812464568941],[98.5419854198542,-0.34222413280630803],[98.5419854198542,-0.3540441736954847],[98.54918549185493,-0.36924136912442407],[98.54918549185493,-0.3810614100136007],[98.5419854198542,-0.3810614100136007],[98.51318513185134,-0.3185840510279405],[98.40518405184054,-0.16830067400837834],[98.39078390783908,-0.13959486042037383],[98.36198361983622,-0.0737403468949509],[98.3439834398344,-0.0450345333069464],[98.33318333183331,-0.036591646957532475],[98.31518315183155,-0.02814876060811855],[98.30078300783009,-0.018017296988816156],[98.29718297182973,-0.007885833369527973],[98.30438304383046,-0.0011315242900025169],[98.32598325983258,0.00393420751964868],[98.36558365583659,0.010688516599188347],[98.40518405184054,-0.007885833369527973],[98.44478444784448,-0.051788842386471856],[98.46998469984703,-0.1075118922926066],[98.48078480784807,-0.15816921038909015]]],[[[103.12483124831249,0.9275859741454866],[103.16443164431644,0.8988801605574821],[103.17523175231753,0.8819943878586542],[103.1680316803168,0.8583543060803009],[103.12843128431285,0.8347142243019334],[103.08523085230854,0.8414685333814731],[102.95202952029524,0.9242088196057239],[102.95202952029524,0.9275859741454866],[102.90522905229051,0.9681118286226678],[102.89442894428947,0.9748661377022074],[102.85842858428583,0.9883747558612583],[102.84402844028443,0.9900633331311468],[102.82602826028261,0.995129064940798],[102.81162811628116,1.0086376830998631],[102.80082800828012,1.022146301258914],[102.79002790027903,1.0322777648782164],[102.77202772027721,1.0356549194179792],[102.71082710827108,1.0322777648782164],[102.69282692826931,1.025523455798691],[102.67122671226713,1.0153919921793886],[102.64602646026464,1.0069491058299747],[102.62802628026282,1.0103262603697374],[102.62442624426245,1.022146301258914],[102.63882638826391,1.0407206512276304],[102.67122671226713,1.0761807738951603],[102.68562685626858,1.0947551238638766],[102.70362703627035,1.1369695556109463],[102.71442714427144,1.153855328309774],[102.75402754027539,1.167363946468825],[102.80082800828012,1.1639867919290623],[102.88722887228874,1.1335924010711835],[102.96642966429664,1.091377969324114],[103.03843038430387,1.044097805767393],[103.07803078030781,1.003571951290212],[103.12483124831249,0.9275859741454866]]],[[[104.65484654846551,1.096443701133751],[104.65484654846551,1.0795579284349373],[104.66924669246691,1.030589187608328],[104.65124651246515,1.0086376830998631],[104.64764647646479,0.9968176422106723],[104.65484654846551,0.9765547149720817],[104.65484654846551,0.9478489013840772],[104.65844658446588,0.9410945923045517],[104.66204662046624,0.937717437764789],[104.65844658446588,0.9275859741454866],[104.65124651246515,0.9191430877960727],[104.6368463684637,0.9140773559864215],[104.62244622446224,0.9123887787165472],[104.61524615246151,0.9056344696370076],[104.61524615246151,0.8971915832875936],[104.6116461164612,0.8836829651285427],[104.60084600846011,0.8347142243019334],[104.56844568445683,0.8296484924922964],[104.48204482044821,0.8583543060803009],[104.48924489244894,0.8752400787791288],[104.48204482044821,0.8938144287478309],[104.47124471244712,0.907323046906896],[104.44964449644499,0.9140773559864215],[104.44964449644499,0.9208316650659611],[104.47484474844748,0.9208316650659611],[104.48564485644857,0.9225202423358354],[104.48924489244894,0.9275859741454866],[104.48564485644857,0.937717437764789],[104.47484474844748,0.9394060150346633],[104.44964449644499,0.9410945923045517],[104.4280442804428,0.9495374786539656],[104.42084420844208,0.9562917877334911],[104.42084420844208,0.9681118286226678],[104.4280442804428,0.9748661377022074],[104.46404464044639,0.9833090240516213],[104.45684456844572,0.9934404876709095],[104.45684456844572,1.0018833740203235],[104.46404464044639,1.017080569449277],[104.46764467644675,1.0187691467191513],[104.47844478444784,1.025523455798691],[104.48564485644857,1.033966342148105],[104.47124471244712,1.0373434966878676],[104.46764467644675,1.0407206512276304],[104.45684456844572,1.0542292693866955],[104.45324453244535,1.0576064239264582],[104.4388443884439,1.0576064239264582],[104.43164431644317,1.0542292693866955],[104.38484384843849,1.030589187608328],[104.37044370443704,1.025523455798691],[104.34884348843491,1.0238348785288025],[104.34164341643418,1.0204577239890398],[104.32724327243272,1.0069491058299747],[104.31644316443163,1.003571951290212],[104.28044280442805,1.0018833740203235],[104.26964269642696,1.003571951290212],[104.24444244442446,1.017080569449277],[104.2408424084241,1.0356549194179792],[104.2408424084241,1.0559178466565697],[104.23364233642337,1.0761807738951603],[104.23364233642337,1.0930665465939882],[104.25524255242556,1.1082637420229418],[104.3056430564306,1.1268380919916439],[104.31644316443163,1.1335924010711835],[104.32364323643236,1.1386581328808205],[104.33084330843309,1.153855328309774],[104.33804338043382,1.1656753691989508],[104.33804338043382,1.1741182555483647],[104.34164341643418,1.1791839873580159],[104.35604356043564,1.1808725646278901],[104.37764377643776,1.175806832818239],[104.38844388443886,1.1791839873580159],[104.39564395643959,1.1910040282471925],[104.39924399243995,1.2028240691363692],[104.41364413644135,1.2011354918664807],[104.43524435244353,1.1876268737074298],[104.47484474844748,1.1774954100881274],[104.50724507245076,1.1791839873580159],[104.53964539645398,1.1910040282471925],[104.5720457204572,1.2095783782158946],[104.56844568445683,1.219709841835197],[104.57564575645756,1.2247755736448482],[104.58644586445865,1.219709841835197],[104.59364593645938,1.1994469145966065],[104.58644586445865,1.162298214659188],[104.58644586445865,1.1454124419603602],[104.60084600846011,1.1268380919916439],[104.64764647646479,1.1048865874831648],[104.65484654846551,1.096443701133751]]],[[[102.47322473224733,1.241661346343676],[102.48042480424806,1.219709841835197],[102.4768247682477,1.1943811827869553],[102.44802448024484,1.0998208556735278],[102.44442444424448,1.0761807738951603],[102.44802448024484,1.0508521148469185],[102.4660246602466,0.995129064940798],[102.46962469624697,0.973177560432319],[102.4660246602466,0.9630460968130308],[102.45522455224551,0.9630460968130308],[102.44802448024484,0.9630460968130308],[102.43722437224375,0.9596689422732538],[102.40842408424083,0.9326517059551378],[102.4012240122401,0.9275859741454866],[102.36882368823689,0.9360288604949005],[102.3328233282333,0.9630460968130308],[102.2680226802268,1.0373434966878676],[102.25002250022499,1.0660493102758721],[102.23922239222395,1.0829350829747],[102.23202232022322,1.0998208556735278],[102.23562235622359,1.1234609374518811],[102.24282242822431,1.167363946468825],[102.24642246422468,1.2045126464062434],[102.24282242822431,1.2213984191050713],[102.22122221222213,1.2382841918038991],[102.2140221402214,1.258547119042504],[102.20322203222031,1.2804986235509688],[102.19962199621995,1.2973843962497966],[102.20322203222031,1.3058272825992105],[102.2140221402214,1.3260902098378011],[102.2140221402214,1.3362216734571035],[102.20682206822067,1.3767475279342847],[102.21042210422104,1.3986990324427637],[102.21762217622177,1.408830496062052],[102.23202232022322,1.413896227871703],[102.25362253622535,1.413896227871703],[102.28962289622899,1.403764764252415],[102.32202322023221,1.3818132597439359],[102.37602376023762,1.3227130552980384],[102.45162451624515,1.2669900053919037],[102.4660246602466,1.2517928099629643],[102.47322473224733,1.241661346343676]]],[[[103.96003960039599,1.3902561460933498],[103.98523985239854,1.3851904142836986],[103.99963999639999,1.3801246824740474],[104.00324003240036,1.373370373394522],[103.99243992439926,1.3547960234258056],[103.97443974439744,1.334533096187215],[103.95283952839532,1.3176473234883872],[103.93123931239313,1.3108930144088617],[103.90603906039064,1.3092044371389733],[103.88803888038882,1.3007615507895594],[103.85203852038524,1.277121469011206],[103.84843848438487,1.2720557372015548],[103.84483844838451,1.2686785826617921],[103.83763837638378,1.2669900053919037],[103.82683826838269,1.263612850852141],[103.8016380163802,1.2653014281220294],[103.7908379083791,1.2686785826617921],[103.78363783637838,1.2737443144714433],[103.77643776437765,1.2872529326305084],[103.75483754837552,1.2973843962497966],[103.72963729637297,1.3024501280594478],[103.70803708037079,1.3058272825992105],[103.66483664836647,1.3041387053293363],[103.64683646836471,1.3092044371389733],[103.63963639636398,1.3227130552980384],[103.64323643236435,1.3379102507269778],[103.67563675636757,1.3801246824740474],[103.67923679236793,1.3986990324427637],[103.6828368283683,1.4105190733319404],[103.69363693636939,1.4206505369512428],[103.70803708037079,1.4290934233006425],[103.71883718837188,1.430782000570531],[103.74043740437406,1.4274048460307682],[103.76203762037619,1.430782000570531],[103.7908379083791,1.444290618729596],[103.80523805238056,1.4493563505392473],[103.83043830438305,1.4476677732693588],[103.8556385563856,1.4392248869199449],[103.93123931239313,1.400387609712638],[103.96003960039599,1.3902561460933498]]],[[[102.49482494824952,1.3632389097752196],[102.51282512825128,1.2956958189799224],[102.50922509225092,1.277121469011206],[102.48042480424806,1.2703671599316806],[102.43362433624338,1.299072973519685],[102.37242372423725,1.3598617552354568],[102.32922329223294,1.413896227871703],[102.31482314823148,1.4206505369512428],[102.30402304023039,1.4240276914910055],[102.28602286022863,1.4341591551102937],[102.1348213482135,1.4561106596187727],[102.09522095220956,1.474685009587489],[102.05562055620555,1.510145132255019],[102.0268202682027,1.5472938321924374],[102.00522005220051,1.5861311093997443],[102.00882008820088,1.6148369229877488],[102.05202052020519,1.6266569638769255],[102.07362073620737,1.6232798093371628],[102.12042120421205,1.6013283048286837],[102.1348213482135,1.589508263939507],[102.15282152821527,1.5810653775900931],[102.17442174421745,1.575999645780442],[102.23922239222395,1.5709339139707907],[102.29682296822972,1.559113873081614],[102.32922329223294,1.559113873081614],[102.33642336423367,1.559113873081614],[102.34722347223476,1.554048141271963],[102.36882368823689,1.5422281003827862],[102.37962379623798,1.537162368573135],[102.46242462424624,1.5152108640646702],[102.49122491224915,1.4898822050164284],[102.49482494824952,1.4426020414597076],[102.49482494824952,1.3632389097752196]]],[[[96.47916479164792,2.4152225489121406],[96.47556475564755,2.3983367762133128],[96.48276482764828,2.378073848974722],[96.48276482764828,2.3645652308156713],[96.45756457564579,2.35949949900602],[96.46476464764646,2.35949949900602],[96.43236432364324,2.3493680353867177],[96.42156421564215,2.3426137263071922],[96.41076410764111,2.3443023035770665],[96.37116371163711,2.367942385355434],[96.34956349563498,2.354433767196369],[96.33516335163353,2.3561223444662573],[96.32076320763207,2.362876653545783],[96.30636306363067,2.3746966944349595],[96.31356313563134,2.378073848974722],[96.32436324363243,2.389893889863899],[96.3279632796328,2.39495962167355],[96.30636306363067,2.4050910852928524],[96.28476284762849,2.4371740534206197],[96.24156241562417,2.4489940943097963],[96.0651606516065,2.579014544090768],[96.04356043560438,2.592523162249833],[96.02196021960219,2.5992774713293585],[96.0111601116011,2.600966048599247],[95.98595985959861,2.5992774713293585],[95.98235982359824,2.602654625869121],[95.97155971559715,2.6127860894884236],[95.96435964359642,2.614474666758298],[95.96075960759606,2.6077203576787724],[95.95715957159575,2.602654625869121],[95.95355953559539,2.5992774713293585],[95.94635946359466,2.59758889405947],[95.93915939159393,2.5959003167895958],[95.9319593195932,2.5959003167895958],[95.91035910359102,2.611097512218535],[95.89235892358926,2.6161632440281863],[95.88155881558816,2.6212289758378375],[95.8779587795878,2.627983284917363],[95.8779587795878,2.636426171266777],[95.87435874358744,2.6465576348860793],[95.86355863558634,2.6550005212354932],[95.79155791557918,2.6550005212354932],[95.78435784357845,2.6600662530451302],[95.78795787957881,2.6735748712041953],[95.79515795157954,2.6955263757126744],[95.78795787957881,2.7039692620620883],[95.7591575915759,2.724232189300679],[95.76275762757626,2.7394293847296183],[95.74835748357486,2.7495608483489207],[95.73395733957341,2.7580037346983346],[95.73395733957341,2.768135198317623],[95.74115741157414,2.778266661936925],[95.72675726757268,2.7799552392068136],[95.70875708757086,2.778266661936925],[95.69795697956982,2.778266661936925],[95.69435694356946,2.7917752800959903],[95.69435694356946,2.812038207334581],[95.69795697956982,2.8323011345731715],[95.71595715957159,2.8407440209225854],[95.76995769957699,2.8407440209225854],[95.78075780757808,2.8458097527322366],[95.78075780757808,2.8542526390816505],[95.77715777157772,2.861006948161176],[95.76995769957699,2.8643841027009387],[95.76635766357663,2.8677612572407156],[95.76635766357663,2.877892720860004],[95.77355773557736,2.8947784935588317],[95.77355773557736,2.904909957178134],[95.78435784357845,2.9251728844167246],[95.78795787957881,2.93192719349625],[95.79155791557918,2.9420586571155525],[95.80235802358027,2.9369929253059013],[95.80955809558094,2.926861461686599],[95.8131581315813,2.921795729876962],[95.88515885158853,2.918418575337185],[95.91035910359102,2.9065985344480083],[95.91035910359102,2.874515566320241],[95.89235892358926,2.8897127617491805],[95.88155881558816,2.8846470299395293],[95.88155881558816,2.8458097527322366],[95.91755917559175,2.861006948161176],[95.92835928359284,2.844121175462348],[95.96435964359642,2.8272354027635203],[95.98235982359824,2.790086702826102],[96.00396003960043,2.7765780846670367],[96.02916029160292,2.768135198317623],[96.09036090360905,2.7580037346983346],[96.10836108361087,2.7495608483489207],[96.12636126361264,2.7343636529199813],[96.129961299613,2.715789302951265],[96.10116101161015,2.675263448474084],[96.10116101161015,2.6550005212354932],[96.11916119161191,2.66682056212467],[96.129961299613,2.6651319848547814],[96.13716137161373,2.658377675775256],[96.14796147961482,2.6550005212354932],[96.15516155161555,2.6482462121559536],[96.16236162361622,2.6482462121559536],[96.16596165961658,2.6550005212354932],[96.16236162361622,2.6617548303150187],[96.14796147961482,2.6701977166644326],[96.14436144361446,2.6786406030138465],[96.15876158761591,2.680329180283735],[96.24516245162454,2.5992774713293585],[96.259562595626,2.592523162249833],[96.29196291962921,2.575637389551005],[96.3027630276303,2.5722602350112425],[96.32076320763207,2.565505925931703],[96.33516335163353,2.5519973077726377],[96.36036360363607,2.521602916914759],[96.36396363963638,2.508094298755694],[96.36756367563675,2.4895199487869775],[96.37476374763747,2.474322753358038],[96.38916389163893,2.469257021548387],[96.39636396363966,2.477699907897801],[96.39636396363966,2.4928971033267544],[96.39636396363966,2.5249800714545216],[96.41076410764111,2.508094298755694],[96.41796417964179,2.5064057214858053],[96.42516425164251,2.5097828760255823],[96.44316443164433,2.491208526056866],[96.46476464764646,2.4371740534206197],[96.47916479164792,2.4152225489121406]]],[[[117.69777697776976,4.11055412787438],[117.74097740977413,4.088602623365901],[117.75177751777517,4.080159737016487],[117.75177751777517,4.0514539234284825],[117.74097740977413,4.026125264380241],[117.70497704977049,3.987287987172934],[117.66537665376654,3.9822222553632827],[117.61857618576187,4.015993800760938],[117.59337593375938,4.063273964317659],[117.61137611376114,4.1088655506044915],[117.64737647376472,4.140948518732259],[117.66177661776618,4.149391405081673],[117.67257672576727,4.140948518732259],[117.69777697776976,4.11055412787438]]],[[[108.39528395283952,3.87415331009079],[108.40608406084061,3.8842847737100925],[108.40608406084061,3.87415331009079],[108.38808388083879,3.8218074147244323],[108.38088380883812,3.8099873738352557],[108.34128341283412,3.7559529011990094],[108.33408334083344,3.74075570577007],[108.32688326883272,3.723869933071242],[108.32328323283235,3.693475542213349],[108.31608316083162,3.6833440785940468],[108.30168301683017,3.6765897695145213],[108.2836828368284,3.674901192244633],[108.25488254882549,3.6765897695145213],[108.23688236882367,3.6765897695145213],[108.22248222482227,3.669835460434996],[108.19368193681936,3.652949687736168],[108.18288182881832,3.647883955926517],[108.1756817568176,3.6512611104662795],[108.14328143281432,3.6765897695145213],[108.10368103681037,3.6900983876735864],[108.09288092880928,3.696852696753112],[108.11808118081183,3.7255585103411164],[108.12168121681219,3.7340013966905303],[108.12528125281256,3.7475100148495954],[108.13248132481328,3.7525757466592466],[108.13968139681396,3.7525757466592466],[108.14688146881468,3.750887169389358],[108.1648816488165,3.757641478468898],[108.17208172081723,3.7711500966279488],[108.1756817568176,3.7863472920569023],[108.18648186481863,3.793101601136428],[108.20088200882009,3.793101601136428],[108.21528215282154,3.7914130238665393],[108.22608226082264,3.784658714787014],[108.23688236882367,3.7728386738978372],[108.26568265682658,3.7390671285001815],[108.28008280082804,3.732312819420656],[108.27648276482768,3.745821437579707],[108.26208262082622,3.793101601136428],[108.25848258482586,3.7947901784063163],[108.24768247682476,3.8099873738352557],[108.2440824408244,3.8133645283750184],[108.23688236882367,3.815053105644907],[108.20808208082082,3.8133645283750184],[108.17928179281796,3.816741682914781],[108.10368103681037,3.8454474965027856],[108.07128071280715,3.8522018055823253],[108.06408064080642,3.855578960122088],[108.05328053280533,3.864021846471502],[108.0460804608046,3.877530464630567],[108.0316803168032,3.9096134327583343],[108.02808028080284,3.918056319107748],[108.02448024480248,3.9332535145366876],[108.02448024480248,3.9416964008861015],[108.01728017280175,3.9467621326957527],[108.01008010080102,3.951827864505404],[108.00648006480066,3.956893596315055],[108.00288002880029,3.9636479053945806],[108.00648006480066,3.987287987172934],[108.00288002880029,3.9974194507922363],[107.99567995679956,4.0024851826018875],[107.98847988479883,4.00586233714165],[107.98487984879847,4.012616646221176],[107.98847988479883,4.02105953257059],[107.99567995679956,4.034568150729655],[108.02088020880211,4.063273964317659],[108.0316803168032,4.070028273397185],[108.04248042480424,4.071716850667073],[108.04968049680497,4.070028273397185],[108.06048060480606,4.073405427936962],[108.06768067680679,4.080159737016487],[108.08208082080824,4.097045509715315],[108.08568085680855,4.100422664255078],[108.09288092880928,4.105488396064729],[108.16848168481687,4.179785795939566],[108.18288182881832,4.2051144549878074],[108.19728197281972,4.220311650416747],[108.21168211682118,4.2355088458457],[108.22608226082264,4.245640309464989],[108.2440824408244,4.230443114036049],[108.25128251282513,4.211868764067333],[108.25128251282513,4.159522868700975],[108.25848258482586,4.130817055112971],[108.26928269282695,4.112242705144254],[108.30528305283053,4.0869140460960125],[108.36648366483666,4.015993800760938],[108.39168391683916,3.9974194507922363],[108.39528395283952,3.9906651417126966],[108.39888398883988,3.9771565235536457],[108.39888398883988,3.9501392872355154],[108.40248402484025,3.9366306690764503],[108.39168391683916,3.9248106281872737],[108.37728377283776,3.9163677418378597],[108.36648366483666,3.9062362782185716],[108.3628836288363,3.8893505055197437],[108.37368373683739,3.8927276600595064],[108.38088380883812,3.891039082789618],[108.39528395283952,3.87415331009079]]],[[[117.84897848978488,4.1966715686383935],[117.89577895778962,4.181474373209454],[117.89937899378992,4.171342909590152],[117.91377913779138,4.144325673272036],[117.91737917379174,4.100422664255078],[117.93537935379356,4.0598968097778965],[117.90297902979029,4.036256727999529],[117.88857888578889,4.031190996189892],[117.87417874178743,4.031190996189892],[117.83817838178385,4.039633882539306],[117.82017820178203,4.06833969612731],[117.76257762577626,4.100422664255078],[117.74097740977413,4.132505632382845],[117.69777697776976,4.169654332320263],[117.64377643776442,4.215245918607096],[117.64017640176405,4.2270659594962865],[117.64737647376472,4.240574577655337],[117.66537665376654,4.252394618544528],[117.68697686976873,4.2625260821638165],[117.70137701377013,4.267591813973468],[117.71937719377195,4.265903236703579],[117.75537755377553,4.2540831958144025],[117.77337773377735,4.252394618544528],[117.78417784177844,4.247328886734877],[117.79497794977954,4.2355088458457],[117.80937809378094,4.213557341337221],[117.81657816578166,4.2051144549878074],[117.82737827378276,4.200048723178156],[117.83457834578348,4.1966715686383935],[117.84897848978488,4.1966715686383935]]],[[[93.91953919539196,7.025038495691916],[93.93033930339305,7.011529877532851],[93.93033930339305,6.959183982166493],[93.91953919539196,6.933855323118252],[93.89433894338947,6.876443695942228],[93.8907389073891,6.840983573274698],[93.89433894338947,6.834229264195173],[93.89793897938978,6.827474955115633],[93.9051390513905,6.819032068766219],[93.90153901539014,6.808900605146931],[93.89793897938978,6.80383487333728],[93.8907389073891,6.800457718797517],[93.87993879938801,6.800457718797517],[93.87273872738729,6.80383487333728],[93.85833858338583,6.80383487333728],[93.84753847538474,6.785260523368564],[93.83313833138334,6.7447346688913825],[93.81153811538115,6.753177555240796],[93.80793807938079,6.768374750669736],[93.81153811538115,6.788637677908341],[93.81513815138152,6.808900605146931],[93.80433804338043,6.817343491496345],[93.79353793537939,6.825786377845759],[93.7827378273783,6.835917841465047],[93.79353793537939,6.849426459624112],[93.7827378273783,6.857869345973526],[93.77553775537757,6.8680008095928144],[93.7719377193772,6.878132273212117],[93.77913779137793,6.8899523141012935],[93.7719377193772,6.893329468641056],[93.76473764737648,6.90177235499047],[93.76473764737648,6.9119038186097725],[93.76473764737648,6.923723859498949],[93.74673746737466,6.923723859498949],[93.73593735937362,6.94398678673754],[93.7287372873729,6.97100402305567],[93.7179371793718,6.992955527564135],[93.70353703537035,7.0064641457232],[93.68553685536858,7.021661341152154],[93.6639366393664,7.0267270729617906],[93.64953649536494,7.01321845480274],[93.64953649536494,7.119598822805344],[93.6531365313653,7.13141886369452],[93.67473674736749,7.182076181791004],[93.68553685536858,7.183764759060892],[93.70713707137071,7.183764759060892],[93.7179371793718,7.187141913600655],[93.72513725137253,7.195584799950069],[93.7287372873729,7.2023391090295945],[93.73593735937362,7.205716263569357],[93.73953739537399,7.207404840839246],[93.76473764737648,7.219224881728422],[93.7719377193772,7.212470572648897],[93.7971379713797,7.234422077157362],[93.81513815138152,7.241176386236901],[93.82953829538297,7.23611065442725],[93.85473854738547,7.214159149918771],[93.86553865538656,7.200650531759706],[93.86913869138692,7.1803876045211155],[93.87633876338765,7.163501831822288],[93.87993879938801,7.1449274818535855],[93.88353883538838,7.104401627376404],[93.88713887138874,7.089204431947451],[93.90153901539014,7.060498618359446],[93.91233912339123,7.0351699593112045],[93.91953919539196,7.025038495691916]]],[[[92.58392583925843,10.771991457561626],[92.58752587525873,10.736531334894082],[92.59832598325983,10.709514098575966],[92.59472594725946,10.679119707718073],[92.57312573125733,10.65547962593972],[92.56232562325624,10.641971007780654],[92.55152551525515,10.635216698701129],[92.54072540725406,10.620019503272175],[92.54072540725406,10.59131368968417],[92.55512555125551,10.587936535144408],[92.57312573125733,10.581182226064882],[92.54792547925479,10.547410680667227],[92.5371253712537,10.525459176158748],[92.5119251192512,10.50857340345992],[92.47952479524798,10.515327712539445],[92.46512465124653,10.530524907968399],[92.44352443524434,10.545722103397338],[92.42192421924221,10.545722103397338],[92.40752407524076,10.52883633069851],[92.38232382323827,10.52883633069851],[92.3787237872379,10.540656371587687],[92.4039240392404,10.574427916985343],[92.41472414724149,10.60651088511311],[92.41832418324185,10.628462389621589],[92.40752407524076,10.647036739590305],[92.38952389523894,10.663922512289133],[92.3787237872379,10.672365398638547],[92.3787237872379,10.71795698492538],[92.3787237872379,10.750039953053147],[92.37512375123754,10.775368612101389],[92.37512375123754,10.783811498450802],[92.38592385923863,10.782122921180914],[92.40752407524076,10.790565807530328],[92.41472414724149,10.799008693879742],[92.42192421924221,10.822648775658095],[92.42912429124294,10.851354589246114],[92.48312483124835,10.885126134643755],[92.52632526325266,10.895257598263058],[92.54792547925479,10.874994671024467],[92.5659256592566,10.849666011976225],[92.56952569525697,10.81589446657857],[92.58032580325806,10.790565807530328],[92.58392583925843,10.771991457561626]]],[[[93.05193051930519,13.28459443514707],[93.07713077130774,13.269397239718131],[93.0807308073081,13.259265776098829],[93.05553055530555,13.225494230701187],[93.05193051930519,13.196788417113183],[93.05193051930519,13.132622480857634],[93.04833048330482,13.10391666726963],[93.03753037530379,13.06170223552256],[93.01953019530197,13.032996421934556],[92.99792997929978,13.043127885553844],[92.99072990729906,13.043127885553844],[92.98712987129875,13.032996421934556],[92.97992979929802,13.029619267394793],[92.96912969129693,13.031307844664667],[92.96552965529656,13.036373576474318],[92.9619296192962,13.048193617363495],[92.96552965529656,13.071833699141862],[92.96552965529656,13.085342317300913],[92.95832958329584,13.085342317300913],[92.95832958329584,13.063390812792449],[92.93672936729371,13.066767967332211],[92.92952929529298,13.049882194633383],[92.92952929529298,13.027930690124904],[92.93312933129334,13.012733494695965],[92.95112951129511,12.994159144727249],[92.95472954729547,12.982339103838072],[92.95112951129511,12.970519062948895],[92.94392943929438,12.953633290250067],[92.93672936729371,12.953633290250067],[92.93312933129334,12.972207640218784],[92.92592925929262,12.980650526568184],[92.91512915129152,12.982339103838072],[92.90432904329043,12.982339103838072],[92.90432904329043,12.973896217488658],[92.87912879128794,12.929993208471714],[92.87912879128794,12.9215503221223],[92.87552875528758,12.916484590312649],[92.87552875528758,12.911418858502998],[92.88632886328867,12.902975972153584],[92.8971289712897,12.899598817613821],[92.90432904329043,12.906353126693347],[92.91512915129152,12.919861744852412],[92.92592925929262,12.91479601304276],[92.92952929529298,12.904664549423472],[92.92952929529298,12.896221663074058],[92.93312933129334,12.892844508534296],[92.94032940329402,12.889467353994519],[92.96552965529656,12.864138694946277],[92.9619296192962,12.847252922247463],[92.96552965529656,12.825301417738984],[92.96912969129693,12.803349913230505],[92.95832958329584,12.783086985991915],[92.97272972729729,12.764512636023198],[92.98352983529838,12.745938286054496],[92.99072990729906,12.723986781546017],[92.99072990729906,12.700346699767664],[92.97632976329766,12.654755113480832],[92.97272972729729,12.627737877162701],[92.99072990729906,12.592277754495171],[92.99072990729906,12.56694909544693],[92.99072990729906,12.519668931890209],[92.97992979929802,12.506160313731158],[92.96552965529656,12.490963118302204],[92.95472954729547,12.47745450014314],[92.96912969129693,12.46901161379374],[92.9619296192962,12.453814418364786],[92.95112951129511,12.44706010928526],[92.94032940329402,12.438617222935846],[92.93672936729371,12.42004287296713],[92.92952929529298,12.42004287296713],[92.92232922329225,12.430174336586433],[92.91512915129152,12.44030580020572],[92.90432904329043,12.448748686555135],[92.89352893528934,12.453814418364786],[92.8971289712897,12.450437263825023],[92.90072900729007,12.433551491126195],[92.87192871928721,12.431862913856307],[92.84672846728466,12.433551491126195],[92.84672846728466,12.42679718204667],[92.85392853928539,12.416665718427367],[92.86472864728648,12.386271327569474],[92.87192871928721,12.379517018489949],[92.8827288272883,12.376139863950186],[92.89352893528934,12.367696977600772],[92.90072900729007,12.35756551398147],[92.90072900729007,12.344056895822419],[92.91512915129152,12.338991164012768],[92.91152911529116,12.333925432203117],[92.90432904329043,12.328859700393465],[92.89352893528934,12.323793968583814],[92.88632886328867,12.3153510822344],[92.8827288272883,12.3153510822344],[92.87912879128794,12.313662504964526],[92.87912879128794,12.303531041345224],[92.88632886328867,12.29508815499581],[92.89352893528934,12.290022423186173],[92.90072900729007,12.283268114106633],[92.90072900729007,12.269759495947568],[92.8971289712897,12.261316609598154],[92.88632886328867,12.252873723248754],[92.87912879128794,12.24443083689934],[92.88632886328867,12.23261079601015],[92.88992889928898,12.224167909660736],[92.89352893528934,12.214036446041447],[92.89352893528934,12.205593559692034],[92.88992889928898,12.200527827882382],[92.87192871928721,12.20221640515227],[92.87552875528758,12.183642055183554],[92.86472864728648,12.171822014294378],[92.8431284312843,12.156624818865438],[92.8287282872829,12.13973904616661],[92.83232832328326,12.126230428007545],[92.83232832328326,12.117787541658132],[92.82512825128254,12.116098964388243],[92.80712807128072,12.104278923499066],[92.81072810728108,12.095836037149652],[92.79992799927999,12.089081728070127],[92.78552785527859,12.085704573530364],[92.76752767527677,12.084015996260476],[92.75672756727568,12.07726168718095],[92.76752767527677,12.062064491751997],[92.79272792727926,12.036735832703755],[92.78192781927822,12.038424409973643],[92.77112771127713,12.036735832703755],[92.7639276392764,12.031670100894118],[92.76032760327604,12.021538637274816],[92.7639276392764,12.021538637274816],[92.74592745927458,11.996209978226574],[92.74232742327422,11.984389937337397],[92.73872738727385,11.960749855559044],[92.73872738727385,11.878009569334793],[92.74592745927458,11.878009569334793],[92.74952749527495,11.911781114732449],[92.75312753127531,11.93204404197104],[92.76032760327604,11.940486928320453],[92.7747277472775,11.938798351050565],[92.7891278912789,11.933732619240914],[92.79632796327962,11.921912578351737],[92.79992799927999,11.898272496573384],[92.79632796327962,11.864500951175728],[92.76032760327604,11.709151842346515],[92.75312753127531,11.7007089559971],[92.73512735127355,11.699020378727226],[92.72432724327246,11.693954646917575],[92.68832688326881,11.66018310151992],[92.68472684726851,11.650051637900617],[92.68112681126814,11.636543019741566],[92.68112681126814,11.614591515233087],[92.68832688326881,11.611214360693324],[92.69552695526954,11.611214360693324],[92.70632706327063,11.614591515233087],[92.709927099271,11.621345824312613],[92.709927099271,11.66018310151992],[92.71712717127173,11.656805946980157],[92.72792727927282,11.655117369710268],[92.73152731527318,11.653428792440394],[92.73152731527318,11.672003142409096],[92.73512735127355,11.682134606028399],[92.74592745927458,11.683823183298273],[92.76032760327604,11.673691719678985],[92.76032760327604,11.663560256059682],[92.7639276392764,11.629788710662027],[92.7639276392764,11.61796866977285],[92.76032760327604,11.609525783423436],[92.74592745927458,11.59770574253426],[92.74592745927458,11.587574278914957],[92.74592745927458,11.557179888057078],[92.73512735127355,11.523408342659422],[92.72792727927282,11.506522569960595],[92.71712717127173,11.494702529071418],[92.71352713527136,11.506522569960595],[92.70632706327063,11.511588301770246],[92.6991269912699,11.511588301770246],[92.68832688326881,11.514965456310009],[92.65952659526596,11.547048424437776],[92.6559265592656,11.55549131078719],[92.6559265592656,11.565622774406492],[92.6559265592656,11.574065660755906],[92.6451264512645,11.577442815295669],[92.63432634326347,11.58250854710532],[92.62712627126274,11.59601716526437],[92.61992619926201,11.609525783423436],[92.61992619926201,11.61796866977285],[92.62712627126274,11.62472297885239],[92.63792637926377,11.626411556122264],[92.6451264512645,11.629788710662027],[92.64872648726487,11.63823159701144],[92.64152641526414,11.64498590609098],[92.6307263072631,11.646674483360854],[92.61992619926201,11.651740215170506],[92.61272612726128,11.663560256059682],[92.61272612726128,11.673691719678985],[92.60912609126092,11.693954646917575],[92.60552605526055,11.704086110536863],[92.60552605526055,11.719283305965817],[92.59472594725946,11.720971883235691],[92.58752587525873,11.715906151426054],[92.58032580325806,11.714217574156166],[92.56232562325624,11.726037615045342],[92.55872558725588,11.741234810474296],[92.5659256592566,11.786826396761128],[92.5659256592566,11.82735225123831],[92.56232562325624,11.834106560317835],[92.55512555125551,11.837483714857598],[92.54432544325442,11.840860869397375],[92.53352533525339,11.8476151784769],[92.52992529925302,11.845926601207012],[92.52632526325266,11.845926601207012],[92.52632526325266,11.850992333016663],[92.52632526325266,11.857746642096203],[92.52632526325266,11.86281237390584],[92.52992529925302,11.864500951175728],[92.53352533525339,11.864500951175728],[92.54072540725406,11.894895342033621],[92.56232562325624,11.930355464701151],[92.56952569525697,11.93204404197104],[92.5767257672577,11.926978310161388],[92.5911259112591,11.90502680565291],[92.59472594725946,11.898272496573384],[92.60192601926019,11.894895342033621],[92.61272612726128,11.898272496573384],[92.60912609126092,11.88307530114443],[92.60912609126092,11.871255260255253],[92.61632616326165,11.866189528445602],[92.61992619926201,11.874632414795016],[92.62352623526237,11.930355464701151],[92.6307263072631,11.943864082860216],[92.62712627126274,11.959061278289155],[92.62352623526237,11.974258473718109],[92.61992619926201,11.98776709187716],[92.62352623526237,12.002964287306114],[92.63792637926377,12.024915791814578],[92.64152641526414,12.036735832703755],[92.64152641526414,12.136361891626848],[92.6451264512645,12.156624818865438],[92.66672666726669,12.200527827882382],[92.68112681126814,12.219102177851099],[92.68832688326881,12.207282136961908],[92.69552695526954,12.207282136961908],[92.70272702727027,12.225856486930624],[92.71352713527136,12.23261079601015],[92.72072720727209,12.225856486930624],[92.72432724327246,12.203904982422145],[92.72072720727209,12.185330632453443],[92.72072720727209,12.176887746104029],[92.72792727927282,12.173510591564266],[92.73512735127355,12.173510591564266],[92.73512735127355,12.176887746104029],[92.73872738727385,12.178576323373903],[92.74232742327422,12.180264900643792],[92.76032760327604,12.180264900643792],[92.7639276392764,12.180264900643792],[92.78552785527859,12.188707786993206],[92.7891278912789,12.195462096072731],[92.79272792727926,12.207282136961908],[92.78192781927822,12.247807991439103],[92.7747277472775,12.251185145978866],[92.76752767527677,12.256250877788517],[92.76032760327604,12.261316609598154],[92.76032760327604,12.266382341407805],[92.76032760327604,12.276513805027108],[92.7639276392764,12.27482522775722],[92.78192781927822,12.27989095956687],[92.7891278912789,12.27989095956687],[92.79272792727926,12.283268114106633],[92.79272792727926,12.296776732265698],[92.78552785527859,12.306908195885],[92.77832778327786,12.310285350424763],[92.75312753127531,12.310285350424763],[92.73512735127355,12.318728236774177],[92.72072720727209,12.33730258674288],[92.71712717127173,12.362631245791121],[92.72072720727209,12.599032063574697],[92.72792727927282,12.612540681733762],[92.74592745927458,12.632803608972353],[92.74952749527495,12.64462364986153],[92.75312753127531,12.64968938167118],[92.76032760327604,12.651377958941069],[92.7747277472775,12.651377958941069],[92.77832778327786,12.653066536210943],[92.78192781927822,12.66488657710012],[92.77832778327786,12.669952308909771],[92.76752767527677,12.67164088617966],[92.75312753127531,12.67670661798931],[92.74952749527495,12.69190381341825],[92.74592745927458,12.762824058753324],[92.73872738727385,12.806727067770268],[92.74232742327422,12.820235685929333],[92.74952749527495,12.828678572278747],[92.75672756727568,12.835432881358273],[92.7639276392764,12.845564344977575],[92.78552785527859,12.840498613167924],[92.79992799927999,12.857384385866752],[92.81072810728108,12.884401622184882],[92.81432814328144,12.906353126693347],[92.81432814328144,12.958699022059719],[92.8287282872829,12.985716258377835],[92.83592835928363,13.002602031076663],[92.8287282872829,13.009356340156202],[92.80712807128072,13.01948780377549],[92.81072810728108,13.044816462823732],[92.8287282872829,13.10391666726963],[92.84672846728466,13.135999635397397],[92.85392853928539,13.142753944476922],[92.85392853928539,13.1461310990167],[92.85032850328503,13.152885408096225],[92.83592835928363,13.16639402625529],[92.83232832328326,13.174836912604704],[92.8431284312843,13.18665695349388],[92.8431284312843,13.206919880732471],[92.8431284312843,13.227182807971062],[92.86472864728648,13.235625694320476],[92.86472864728648,13.24406858066989],[92.85032850328503,13.289660166956722],[92.85392853928539,13.304857362385675],[92.85392853928539,13.309923094195312],[92.83952839528393,13.325120289624266],[92.84672846728466,13.345383216862857],[92.88632886328867,13.392663380419563],[92.88992889928898,13.401106266768977],[92.89352893528934,13.412926307658168],[92.8971289712897,13.423057771277456],[92.89352893528934,13.44669785305581],[92.89352893528934,13.455140739405223],[92.90072900729007,13.468649357564288],[92.90432904329043,13.466960780294414],[92.91512915129152,13.475403666643814],[92.93672936729371,13.500732325692056],[92.94392943929438,13.50917521204147],[92.94392943929438,13.519306675660772],[92.94392943929438,13.5361924483596],[92.95112951129511,13.544635334709014],[92.95832958329584,13.549701066518665],[92.97632976329766,13.553078221058428],[92.98352983529838,13.558143952868079],[92.99072990729906,13.549701066518665],[92.99792997929978,13.546323911978888],[93.00153001530015,13.546323911978888],[93.01233012330124,13.55138964378854],[93.00513005130051,13.55645537559819],[93.00513005130051,13.561521107407842],[93.00513005130051,13.568275416487367],[93.01233012330124,13.57840688010667],[93.0159301593016,13.566586839217493],[93.02313023130233,13.566586839217493],[93.03033030330306,13.568275416487367],[93.0411304113041,13.57165257102713],[93.04833048330482,13.566586839217493],[93.06633066330664,13.537881025629474],[93.05553055530555,13.502420902961944],[93.05193051930519,13.472026512104051],[93.05913059130592,13.406171998578628],[93.06273062730628,13.407860575848517],[93.07713077130774,13.41123773038828],[93.0807308073081,13.412926307658168],[93.07713077130774,13.397729112229214],[93.05913059130592,13.382531916800275],[93.05193051930519,13.36902329864121],[93.04833048330482,13.357203257752033],[93.03393033930342,13.34876037140262],[93.0159301593016,13.340317485053205],[93.00513005130051,13.331874598703791],[93.00513005130051,13.34876037140262],[92.99432994329942,13.357203257752033],[92.98352983529838,13.357203257752033],[92.97632976329766,13.345383216862857],[92.97992979929802,13.330186021433903],[92.99072990729906,13.318365980544726],[93.00513005130051,13.3116116714652],[93.0267302673027,13.316677403274852],[93.03393033930342,13.30654593965555],[93.05193051930519,13.28459443514707]]],[[[128.3358833588336,26.79658974874843],[128.33228332283323,26.79321259420867],[128.32868328683287,26.78645828512913],[128.32868328683287,26.779703976049603],[128.3358833588336,26.772949666970078],[128.3358833588336,26.764506780620664],[128.33228332283323,26.75606389427125],[128.3250832508325,26.7509981624616],[128.3250832508325,26.745932430651948],[128.3106831068311,26.720603771603706],[128.30708307083074,26.717226617063943],[128.3106831068311,26.705406576174767],[128.30708307083074,26.700340844365115],[128.30348303483038,26.702029421635004],[128.29988299883001,26.702029421635004],[128.29628296282965,26.702029421635004],[128.26388263882637,26.653060680808395],[128.24228242282425,26.632797753569804],[128.2170821708217,26.62604344449028],[128.17388173881739,26.622666289950516],[128.159481594816,26.619289135410753],[128.15228152281526,26.612534826331213],[128.14148141481417,26.602403362711925],[128.13428134281344,26.590583321822734],[128.13068130681307,26.580451858203446],[128.13428134281344,26.578763280933558],[128.14148141481417,26.577074703663683],[128.14508145081453,26.57369754912392],[128.14508145081453,26.56356608550462],[128.14148141481417,26.556811776425093],[128.1378813788138,26.553434621885316],[128.13428134281344,26.553434621885316],[128.10908109081095,26.544991735535902],[128.09108091080913,26.543303158266028],[128.0730807308073,26.543303158266028],[128.05508055080554,26.550057467345553],[128.03708037080372,26.528105962837074],[127.98307983079832,26.47913722201048],[127.97227972279723,26.472382912930954],[127.96147961479613,26.470694335661065],[127.9506795067951,26.467317181121302],[127.94707947079473,26.450431408422475],[127.939879398794,26.447054253882712],[127.87147871478714,26.447054253882712],[127.86067860678605,26.445365676612823],[127.85347853478538,26.44198852207306],[127.83907839078392,26.425102749374233],[127.84267842678429,26.41665986302482],[127.85347853478538,26.413282708485056],[127.86427864278642,26.40652839940553],[127.87147871478714,26.393019781246466],[127.87507875078751,26.36431396765846],[127.87867878678787,26.352493926769284],[127.88947889478897,26.33898530861022],[127.91107911079109,26.32378811318128],[127.91827918279182,26.310279495022215],[127.90027900279006,26.305213763212564],[127.88227882278824,26.310279495022215],[127.86067860678605,26.31872238137163],[127.83907839078392,26.32378811318128],[127.82827828278283,26.31703380410174],[127.77787777877779,26.232604940607615],[127.77067770677706,26.215719167908787],[127.7670776707767,26.19714481794007],[127.77427774277743,26.185324777050894],[127.79227792277925,26.185324777050894],[127.81027810278101,26.188701931590657],[127.82467824678247,26.187013354320783],[127.81387813878138,26.166750427082178],[127.79587795877961,26.139733190764062],[127.77427774277743,26.121158840795346],[127.75627756277567,26.124535995335123],[127.74187741877421,26.11609310898571],[127.72387723877239,26.08907587266758],[127.70947709477093,26.084010140857927],[127.65187651876522,26.084010140857927],[127.65547655476558,26.121158840795346],[127.63747637476376,26.19207908613042],[127.63747637476376,26.2140305906389],[127.65907659076589,26.21234201336901],[127.67707677076771,26.230916363337727],[127.69147691476917,26.25624502238597],[127.6986769867699,26.27650794962456],[127.71667716677166,26.27481937235467],[127.73107731077312,26.290016567783624],[127.73827738277384,26.308590917752326],[127.74187741877421,26.320410958641503],[127.73827738277384,26.340673885880108],[127.72387723877239,26.38626547216694],[127.72027720277202,26.40652839940553],[127.72387723877239,26.430168481183884],[127.73107731077312,26.440299944803186],[127.74907749077494,26.44198852207306],[127.78147781477816,26.44198852207306],[127.79227792277925,26.44198852207306],[127.8066780667807,26.447054253882712],[127.81027810278101,26.457185717502014],[127.81387813878138,26.457185717502014],[127.82827828278283,26.48251437655024],[127.8318783187832,26.48926868562978],[127.86427864278642,26.50615445832861],[127.90387903879042,26.516285921947897],[127.93627936279364,26.53148311737685],[127.96147961479613,26.56356608550462],[127.96147961479613,26.58214043547332],[127.95427954279546,26.59396047636251],[127.939879398794,26.602403362711925],[127.89307893078933,26.60915767179145],[127.8858788587886,26.620977712680627],[127.8858788587886,26.636174908109567],[127.8858788587886,26.653060680808395],[127.87867878678787,26.68683222620605],[127.87867878678787,26.695275112555464],[127.8858788587886,26.695275112555464],[127.91827918279182,26.695275112555464],[127.9650796507965,26.696963689825353],[127.98667986679868,26.69358653528559],[128.00108001080014,26.680077917126525],[128.00108001080014,26.67163503077711],[127.99387993879941,26.663192144427697],[127.99027990279905,26.653060680808395],[127.99387993879941,26.639552062649344],[128.0046800468005,26.634486330839692],[128.01548015480154,26.634486330839692],[128.0586805868059,26.64461779445898],[128.11268112681125,26.673323608047],[128.10188101881022,26.6918979580157],[128.11268112681125,26.703717998904878],[128.15228152281526,26.73073523522301],[128.15588155881562,26.737489544302534],[128.1630816308163,26.757752471541124],[128.17028170281702,26.761129626080887],[128.17748177481775,26.762818203350776],[128.1810818108181,26.76619535789054],[128.18828188281884,26.779703976049603],[128.22428224282243,26.801655480558082],[128.23508235082352,26.81347552144726],[128.23868238682388,26.83204987141596],[128.25308253082534,26.864132839543743],[128.2566825668257,26.886084344052207],[128.33228332283323,26.81347552144726],[128.3358833588336,26.79658974874843]]],[[[129.70749707497077,28.461526936852778],[129.71109711097114,28.456461205043126],[129.71829718297187,28.449706895963587],[129.72189721897217,28.44464116415395],[129.72189721897217,28.434509700534647],[129.7146971469715,28.429443968724996],[129.70749707497077,28.429443968724996],[129.70029700297005,28.429443968724996],[129.69309693096932,28.429443968724996],[129.68229682296823,28.421001082375582],[129.6390963909639,28.405803886946643],[129.62469624696246,28.40242673240688],[129.6210962109621,28.40073815513699],[129.6174961749618,28.39567242332734],[129.61389613896142,28.388918114247815],[129.61029610296106,28.383852382438164],[129.60309603096033,28.3804752278984],[129.58149581495815,28.3703437642791],[129.5526955269553,28.328129332532043],[129.53469534695347,28.31799786891274],[129.5310953109531,28.31462071437298],[129.49869498694989,28.287603478054848],[129.4878948789488,28.28253774624521],[129.4626946269463,28.290980632594625],[129.44829448294485,28.290980632594625],[129.45549455494557,28.27747201443556],[129.44829448294485,28.265651973546383],[129.44109441094412,28.258897664466843],[129.43029430294303,28.253831932657192],[129.41949419494193,28.25045477811743],[129.43029430294303,28.24032331449814],[129.45549455494557,28.225126119069188],[129.46629466294667,28.2149946554499],[129.41589415894163,28.186288841861895],[129.40509405094053,28.184600264592007],[129.40149401494017,28.162648760083528],[129.3870938709387,28.162648760083528],[129.37269372693726,28.16771449189318],[129.35109351093513,28.160960182813653],[129.36549365493659,28.154205873734114],[129.37629376293762,28.140697255575063],[129.37989379893799,28.12550006014611],[129.37629376293762,28.118745751066584],[129.36549365493659,28.123811482876235],[129.33669336693367,28.147451564654588],[129.28629286292863,28.17784595551248],[129.2790927909279,28.189665996401658],[129.28269282692827,28.204863191830597],[129.2790927909279,28.218371809989662],[129.2682926829268,28.23019185087884],[129.25749257492578,28.2149946554499],[129.24309243092432,28.2149946554499],[129.20709207092074,28.23019185087884],[129.17469174691746,28.23525758268849],[129.16029160291606,28.24032331449814],[129.1458914589146,28.25045477811743],[129.1458914589146,28.25552050992708],[129.15309153091533,28.260586241736732],[129.16389163891643,28.262274819006606],[129.1710917109171,28.262274819006606],[129.1818918189182,28.25552050992708],[129.20709207092074,28.263963396276495],[129.24309243092432,28.25552050992708],[129.27189271892718,28.25552050992708],[129.289892898929,28.284226323515085],[129.2538925389254,28.284226323515085],[129.23949239492396,28.290980632594625],[129.22869228692286,28.304489250753676],[129.24309243092432,28.31293213710309],[129.2538925389254,28.321375023452504],[129.2646926469265,28.328129332532043],[129.289892898929,28.33319506434168],[129.29709297092973,28.336572218881457],[129.31509315093155,28.350080837040508],[129.32949329493294,28.363589455199573],[129.3330933309333,28.365278032469462],[129.35829358293586,28.368655187009225],[129.37989379893799,28.366966609739336],[129.3978939789398,28.372032341548987],[129.41229412294126,28.393983846057466],[129.4338943389434,28.387229536977927],[129.4518945189452,28.392295268787578],[129.46629466294667,28.404115309676754],[129.4770947709477,28.421001082375582],[129.48069480694807,28.410869618756294],[129.49149491494916,28.404115309676754],[129.5058950589506,28.399049577867117],[129.5166951669517,28.393983846057466],[129.53469534695347,28.431132545994885],[129.55989559895602,28.451395473233475],[129.62469624696246,28.483478441361243],[129.61389613896142,28.448018318693713],[129.6174961749618,28.43788685507441],[129.6318963189632,28.434509700534647],[129.64269642696428,28.4395754323443],[129.65349653496537,28.451395473233475],[129.6750967509675,28.483478441361243],[129.67149671496713,28.486855595901005],[129.66789667896683,28.49529848225042],[129.66789667896683,28.503741368599833],[129.67149671496713,28.510495677679373],[129.68949689496895,28.508807100409484],[129.69669696696968,28.49529848225042],[129.70749707497077,28.461526936852778]]],[[[121.84501845018451,31.60734639064424],[121.9206192061921,31.578640577056234],[121.98181981819818,31.539803299848927],[121.98541985419854,31.504343177181397],[121.97821978219781,31.477325940863267],[121.91341913419137,31.457063013624676],[121.85221852218524,31.438488663655974],[121.81621816218166,31.446931550005388],[121.78381783817838,31.46550589997409],[121.72981729817297,31.484080249942807],[121.71181711817121,31.495900290831983],[121.6830168301683,31.50603175445127],[121.6146161461615,31.521228949880225],[121.57141571415713,31.52967183622964],[121.54261542615427,31.553311918007992],[121.51741517415178,31.56850911343693],[121.4850148501485,31.580329154326108],[121.4058140581406,31.614100699723764],[121.3770137701377,31.634363626962354],[121.34461344613447,31.641117936041894],[121.31581315813162,31.656315131470834],[121.30141301413016,31.671512326899787],[121.2870128701287,31.703595295027554],[121.22581225812257,31.73736684042521],[121.20421204212045,31.755941190393912],[121.18621186211863,31.77451554036263],[121.17541175411753,31.784647003981917],[121.18261182611826,31.796467044871108],[121.19341193411935,31.804909931220507],[121.21861218612185,31.83023859026875],[121.26541265412658,31.84037005388805],[121.32301323013229,31.828550012998875],[121.3626136261363,31.818418549379572],[121.38781387813879,31.811664240300047],[121.42381423814237,31.796467044871108],[121.47421474214741,31.771138385822866],[121.49941499414996,31.75087545858426],[121.53541535415354,31.728923954075796],[121.57141571415713,31.713726758646843],[121.6038160381604,31.691775254138378],[121.62541625416253,31.676578058709424],[121.63981639816399,31.664758017820247],[121.66501665016654,31.65293797693107],[121.72261722617225,31.63098647242259],[121.84501845018451,31.60734639064424]]],[[[126.94626946269466,33.47829000567427],[126.95346953469533,33.4647813875152],[126.94986949869502,33.46140423297544],[126.93906939069393,33.45802707843568],[126.9318693186932,33.45127276935615],[126.9318693186932,33.4462070375465],[126.93906939069393,33.4360755739272],[126.93906939069393,33.43100984211755],[126.93546935469357,33.42594411030791],[126.92826928269284,33.41581264668861],[126.92466924669247,33.412435492148845],[126.90666906669065,33.39554971945002],[126.87426874268743,33.37359821494154],[126.86346863468634,33.35333528770295],[126.84906849068494,33.33138378319447],[126.84546845468458,33.322940896845054],[126.84186841868421,33.309432278686],[126.81666816668167,33.307743701416115],[126.80586805868057,33.30436654687635],[126.78066780667808,33.306055124146226],[126.74106741067413,33.280726465098],[126.64026640266405,33.26384069239917],[126.60786607866078,33.2402006106208],[126.56466564665647,33.23344630154128],[126.52146521465215,33.23682345608104],[126.47106471064711,33.22838056973163],[126.4278642786428,33.23851203335093],[126.33426334263345,33.23851203335093],[126.30546305463054,33.22669199246175],[126.28746287462877,33.19967475614362],[126.26946269462695,33.197986178873734],[126.2550625506255,33.20474048795327],[126.229862298623,33.23513487881117],[126.20106201062009,33.243577765160566],[126.17226172261724,33.26890642420881],[126.16146161461614,33.30098939233659],[126.17946179461796,33.34151524681377],[126.19746197461978,33.36684390586201],[126.20466204662046,33.375286792211426],[126.2406624066241,33.392172564910254],[126.26946269462695,33.4360755739272],[126.29826298262986,33.44114130573685],[126.3090630906309,33.4647813875152],[126.35586355863558,33.47829000567427],[126.46026460264602,33.50193008745262],[126.48546485464857,33.52050443742134],[126.58266582665829,33.52894732377075],[126.64746647466478,33.552587405549104],[126.66546665466655,33.54921025100934],[126.7446674466745,33.56103029189852],[126.79146791467917,33.56440744643828],[126.8238682386824,33.559341714628644],[126.83466834668349,33.54414451919969],[126.84906849068494,33.53570163285028],[126.89946899468998,33.51881586015145],[126.91386913869138,33.50699581926227],[126.92106921069211,33.47660142840438],[126.9318693186932,33.4647813875152],[126.93546935469357,33.469847119324854],[126.9426694266943,33.473224273864616],[126.94626946269466,33.47829000567427]]],[[[138.45918459184594,38.06953160248533],[138.49518495184952,38.066154447945564],[138.5419854198542,38.07628591156485],[138.57438574385748,38.07459733429498],[138.57438574385748,38.03576005708767],[138.56718567185675,38.01718570711897],[138.52398523985244,37.96315123448271],[138.51318513185134,37.94457688451401],[138.4987849878499,37.90742818457659],[138.4879848798488,37.89223098914765],[138.36918369183695,37.8280650528921],[138.2647826478265,37.79767066203421],[138.24318243182432,37.79598208476433],[138.23238232382323,37.79767066203421],[138.2215822158222,37.80273639384386],[138.21438214382147,37.809490702923384],[138.2107821078211,37.819622166542686],[138.21438214382147,37.82975363016199],[138.2251822518225,37.834819361971626],[138.27198271982724,37.841573671051165],[138.28278282782827,37.84832798013069],[138.28638286382863,37.861836598289756],[138.28638286382863,37.9057396073067],[138.29718297182973,37.92262538000553],[138.32958329583295,37.95133119359353],[138.3439834398344,37.966528389022486],[138.31518315183155,37.996922779880364],[138.2467824678247,37.97834842991166],[138.23238232382323,38.00705424349967],[138.23238232382323,38.03069432527802],[138.2359823598236,38.0526458297865],[138.24318243182432,38.071220179755215],[138.25398253982542,38.08979452972392],[138.29358293582936,38.13538611601075],[138.31158311583118,38.16746908413852],[138.32958329583295,38.18266627956747],[138.34758347583477,38.19279774318676],[138.35838358383586,38.20292920680606],[138.40158401584017,38.241766484013354],[138.42678426784266,38.25696367944231],[138.46998469984703,38.31268672934843],[138.4771847718477,38.31944103842797],[138.4879848798488,38.32281819296773],[138.51318513185134,38.32281819296773],[138.52038520385207,38.31775246115808],[138.52038520385207,38.30762099753879],[138.50598505985062,38.241766484013354],[138.4879848798488,38.18097770229758],[138.44478444784448,38.101614570613094],[138.43758437584376,38.08304022064439],[138.43758437584376,38.064465870675676],[138.44478444784448,38.0526458297865],[138.4519845198452,38.0526458297865],[138.45918459184594,38.06953160248533]]],[[[146.46926469264696,44.428713600863574],[146.55206552065522,44.45066510537205],[146.5736657366574,44.45066510537205],[146.55566555665558,44.40845067362497],[146.54846548465486,44.39831921000567],[146.5448654486545,44.393253478196044],[146.53766537665376,44.38312201457674],[146.5340653406534,44.37805628276709],[146.53046530465303,44.37299055095744],[146.519665196652,44.36792481914779],[146.51246512465127,44.36454766460804],[146.50166501665018,44.36285908733814],[146.47286472864732,44.376367705497216],[146.45846458464587,44.38143343730684],[146.44766447664477,44.37805628276709],[146.41526415264156,44.36792481914779],[146.40806408064083,44.36454766460804],[146.4008640086401,44.36285908733814],[146.37206372063724,44.32571038740073],[146.36486364863651,44.317267501051305],[146.3252632526325,44.29193884200308],[146.30366303663038,44.281807378383775],[146.27486274862747,44.27336449203435],[146.24246242462425,44.2699873374946],[146.22446224462243,44.278430223844],[146.2028620286203,44.2699873374946],[146.1380613806138,44.26492160568495],[146.11646116461168,44.254790142065644],[146.1128611286113,44.24803583298612],[146.1056610566106,44.24297010117647],[146.0948609486095,44.23959294663672],[146.08766087660877,44.23621579209694],[146.0840608406084,44.23452721482707],[146.08046080460804,44.219330019398114],[146.07686076860767,44.21426428758846],[146.06606066060664,44.20075566942941],[146.05526055260555,44.19400136034989],[146.04806048060482,44.188935628540236],[146.030060300603,44.18218131946068],[145.93285932859328,44.121392537744924],[145.92205922059225,44.112949651395496],[145.89325893258933,44.07917810599784],[145.8860588605886,44.06904664237857],[145.8860588605886,44.03865225152066],[145.88245882458824,44.02683221063148],[145.8716587165872,44.01838932428208],[145.85365853658539,44.02514363336161],[145.8320583205832,44.02007790155196],[145.81405814058144,44.006569283392906],[145.8068580685807,43.987994933424176],[145.80325803258035,43.9677320061856],[145.79245792457925,43.94915765621687],[145.7780577805778,43.93227188351804],[145.7636576365764,43.92214041989877],[145.74565745657458,43.91369753354934],[145.72765727657276,43.90694322446981],[145.66285662856632,43.898500338120414],[145.64845648456486,43.890057451770986],[145.619656196562,43.86641736999263],[145.58725587255873,43.84784302002393],[145.580055800558,43.83433440186485],[145.57285572855727,43.729642611132135],[145.55845558455587,43.65872236579705],[145.5548555485555,43.65196805671752],[145.55125551255514,43.65703378852717],[145.54765547655478,43.667165252146475],[145.54405544055442,43.673919561226],[145.54405544055442,43.68742817938505],[145.54765547655478,43.702625374814005],[145.54405544055442,43.70937968389353],[145.55125551255514,43.716133992973056],[145.51525515255156,43.73639692021166],[145.47565475654756,43.72626545659236],[145.44325443254434,43.724576879322484],[145.42885428854288,43.770168465609316],[145.42885428854288,43.79718570192745],[145.42885428854288,43.805628588276846],[145.42165421654215,43.81238289735637],[145.41445414454148,43.8208257837058],[145.41085410854112,43.8292686700552],[145.41085410854112,43.83602297913475],[145.42165421654215,43.84277728821428],[145.44325443254434,43.849531597293804],[145.45045450454506,43.85628590637333],[145.4720547205472,43.884991719961334],[145.48285482854828,43.89512318358064],[145.54045540455405,43.91876326535899],[145.55125551255514,43.925517574438516],[145.56205562055624,43.93733761532769],[145.66285662856632,43.99137208796395],[145.68085680856808,44.02007790155196],[145.68445684456844,44.02514363336161],[145.70605706057063,44.03020936517126],[145.72765727657276,44.04371798333031],[145.74565745657458,44.06060375602914],[145.75645756457567,44.07917810599784],[145.7636576365764,44.11801538320515],[145.76725767257676,44.12476969228467],[145.7888578885789,44.139966887713626],[145.79245792457925,44.1517869286028],[145.79965799657998,44.16022981495223],[145.84645846458466,44.18049274219081],[145.8608586085861,44.188935628540236],[145.8608586085861,44.197378514889635],[145.86445864458648,44.219330019398114],[145.86805868058684,44.227772905747514],[145.8968589685897,44.254790142065644],[145.91485914859152,44.26661018295482],[145.95445954459547,44.27674164657412],[145.96885968859692,44.28518453292355],[145.9760597605976,44.29193884200308],[145.97965979659796,44.30038172835248],[145.98325983259832,44.308824614701905],[145.98325983259832,44.31557892378143],[145.98685986859869,44.32402181013083],[146.0048600486005,44.33584185102001],[146.00846008460087,44.34259616009956],[146.01206012060123,44.366236241877914],[146.01926019260196,44.38312201457674],[146.030060300603,44.39663063273579],[146.04446044460445,44.40845067362497],[146.09126091260913,44.477682341690155],[146.12006120061204,44.50638815527816],[146.159661596616,44.51145388708781],[146.18486184861848,44.51145388708781],[146.19566195661957,44.50638815527816],[146.24606246062461,44.46755087807088],[146.25326253262534,44.464173723531104],[146.27846278462783,44.45741941445158],[146.33246332463324,44.428713600863574],[146.36486364863651,44.42195929178405],[146.46926469264696,44.428713600863574]]],[[[148.79848798487984,45.41484272647506],[148.80568805688057,45.404711262855756],[148.84528845288452,45.37093971745813],[148.84168841688415,45.3523653674894],[148.81648816488166,45.333791017520696],[148.78048780487808,45.31859382209174],[148.7588875888759,45.31352809028209],[148.73008730087304,45.31183951301222],[148.64368643686436,45.320282399361645],[148.58608586085865,45.315216667551994],[148.55728557285573,45.306773781202565],[148.46728467284674,45.25949361764586],[148.43848438484383,45.24936215402656],[148.34488344883448,45.239230690407254],[148.27648276482768,45.222344917708426],[148.21528215282154,45.195327681390324],[148.12888128881292,45.13116174513476],[148.0676806768068,45.078815849768404],[148.02448024480248,45.03828999529122],[147.9920799207992,45.00620702716344],[147.96327963279634,44.999452718083916],[147.9128791287913,44.96230401814651],[147.86607866078663,44.963992595416386],[147.8336783367834,44.96568117268626],[147.80847808478086,44.963992595416386],[147.79767797677977,44.96061544087661],[147.779677796778,44.94710682271756],[147.7688776887769,44.94372966817778],[147.740077400774,44.96736974995616],[147.7256772567726,44.99269840900439],[147.70047700477005,45.007895604433344],[147.65367653676537,44.994386986274264],[147.62487624876252,44.96905832722604],[147.62127621276215,44.950483977257335],[147.62847628476288,44.931909627288604],[147.650076500765,44.92177816366933],[147.64647646476465,44.90826954551025],[147.62847628476288,44.901515236430726],[147.6176761767618,44.89138377281142],[147.5852758527585,44.86774369103307],[147.57807578075784,44.85761222741377],[147.5636756367564,44.833972145635414],[147.55647556475566,44.82384068201611],[147.48447484474843,44.77824909572928],[147.38727387273872,44.736034663982224],[147.329673296733,44.68875450042552],[147.290072900729,44.660048686837484],[147.27207272072724,44.64147433686878],[147.22527225272256,44.580685555153025],[147.15327153271534,44.558734050644546],[147.1136711367114,44.57055409153372],[147.05607056070562,44.53678254613607],[147.02007020070204,44.50301100073841],[146.9948699486995,44.48105949622993],[146.97686976869772,44.45741941445158],[146.969669696697,44.437156487212974],[146.9588695886959,44.420270714514146],[146.93726937269372,44.42195929178405],[146.91206912069123,44.43209075540332],[146.87606876068764,44.433779332673225],[146.8616686166862,44.4455993735624],[146.85806858068582,44.46248514626123],[146.86526865268655,44.47599376442028],[146.87246872468728,44.48950238257933],[146.8940689406894,44.504699578008285],[146.90846908469086,44.52158535070711],[146.93726937269372,44.53678254613607],[146.9480694806948,44.54860258702524],[146.93726937269372,44.56886551426382],[146.930069300693,44.58575128696265],[146.930069300693,44.60770279147113],[146.93726937269372,44.624588564169954],[146.95166951669518,44.62289998690008],[146.9588695886959,44.602637059661475],[146.96246962469627,44.58406270969277],[146.9840698406984,44.5722426688036],[147.00207002070022,44.56548835972407],[147.02007020070204,44.5823741324229],[147.0380703807038,44.59925990512173],[147.02727027270276,44.621211409630206],[147.00927009270094,44.63472002778926],[146.99846998469985,44.66342584137726],[147.03087030870307,44.66849157318691],[147.0668706687067,44.64654006867843],[147.0920709207092,44.638097182329034],[147.12807128071285,44.64654006867843],[147.15327153271534,44.673557304996564],[147.19647196471965,44.714083159473745],[147.20007200072,44.73096893217257],[147.20367203672038,44.754609013950926],[147.16047160471607,44.76980620937988],[147.12087120871212,44.776560518459405],[147.09567095670957,44.79513486842811],[147.11007110071102,44.82721783655589],[147.15327153271534,44.833972145635414],[147.18927189271892,44.80864348658719],[147.21807218072183,44.798512022967884],[147.25047250472505,44.82046352747636],[147.23967239672396,44.85085791833424],[147.2648726487265,44.86774369103307],[147.36207362073623,44.901515236430726],[147.4088740887409,44.936975359098255],[147.4520745207452,44.958926863606735],[147.46647466474667,44.96736974995616],[147.48447484474843,44.985944099924865],[147.49527495274953,45.00451844989357],[147.50247502475025,45.026469954402046],[147.50247502475025,45.053487190720176],[147.50247502475025,45.06699580887923],[147.50247502475025,45.07375011795875],[147.50247502475025,45.078815849768404],[147.50967509675098,45.08725873611783],[147.5276752767528,45.09401304519736],[147.5420754207542,45.09232446792748],[147.55647556475566,45.08557015884793],[147.56727567275675,45.07712727249853],[147.59247592475924,45.06361865433945],[147.62127621276215,45.06530723160935],[147.64647646476465,45.075438695228655],[147.66807668076683,45.09401304519736],[147.73287732877333,45.16493329053242],[147.75807758077582,45.18519621777102],[147.779677796778,45.1970162586602],[147.88767887678875,45.21896776316868],[147.89487894878948,45.22403349497833],[147.89487894878948,45.23754211313738],[147.88407884078845,45.24767357675668],[147.87327873278736,45.257805040375985],[147.86607866078663,45.26793650399526],[147.87327873278736,45.31015093574234],[147.87327873278736,45.320282399361645],[147.86247862478626,45.342233903870095],[147.86247862478626,45.3540539447593],[147.87327873278736,45.3810711810774],[147.89127891278912,45.396268376506356],[147.91647916479167,45.40977699466541],[147.94167941679416,45.426662767364235],[147.95247952479525,45.431728499173886],[147.95967959679598,45.423285612824486],[147.96327963279634,45.40977699466541],[147.9668796687967,45.38444833561718],[147.97047970479707,45.37431687199788],[147.99927999279993,45.333791017520696],[148.0028800288003,45.32534813117127],[148.00648006480066,45.31352809028209],[148.00648006480066,45.298330894853166],[148.0028800288003,45.28988800850374],[148.0028800288003,45.28144512215434],[148.01368013680138,45.26793650399526],[148.03888038880388,45.25442788583621],[148.07128071280715,45.25105073129643],[148.31248312483126,45.27469081307481],[148.35928359283594,45.30001947212304],[148.39888398883988,45.33885674933035],[148.42408424084243,45.35911967656892],[148.44568445684456,45.36756256291835],[148.44928449284492,45.372628294728],[148.46728467284674,45.39795695377623],[148.47808478084784,45.404711262855756],[148.5068850688507,45.41990845828471],[148.53208532085324,45.43679423098354],[148.550085500855,45.45705715822214],[148.5608856088561,45.46381146730167],[148.56808568085683,45.46550004457154],[148.58968589685895,45.467188621841416],[148.60048600486004,45.47056577638119],[148.60768607686077,45.47732008546072],[148.61848618486187,45.494205858159546],[148.62208622086223,45.49758301269932],[148.62928629286296,45.50096016723907],[148.64728647286472,45.502648744508974],[148.72648726487267,45.52460024901745],[148.76248762487626,45.5279774035572],[148.79848798487984,45.5178459399379],[148.85248852488525,45.480697240000495],[148.8560885608856,45.46381146730167],[148.82728827288275,45.44354854006306],[148.8020880208802,45.43510565371366],[148.79848798487984,45.43003992190401],[148.79848798487984,45.41484272647506]]],[[[150.3357033570336,46.21016262058981],[150.39690396903973,46.23042554782842],[150.479704797048,46.21016262058981],[150.56970569705697,46.23211412509829],[150.51570515705157,46.18989969335124],[150.47250472504726,46.1611938797632],[150.4437044370444,46.1426195297945],[150.39330393303936,46.100405098047446],[150.36450364503645,46.081830748078744],[150.32130321303214,46.07001070718954],[150.28530285302855,46.046370625411186],[150.2457024570246,46.03623916179191],[150.2277022770228,46.00922192547378],[150.1917019170192,45.983893266425525],[150.1809018090181,45.948433143757995],[150.19890198901993,45.92985879378929],[150.1917019170192,45.926481639249516],[150.15570155701556,45.921415907439865],[150.14490144901453,45.91128444382059],[150.14130141301416,45.89777582566151],[150.11250112501125,45.87920147569281],[150.08730087300876,45.87075858934338],[150.03690036900372,45.84374135302528],[150.02250022500226,45.823478425786675],[149.99729997299977,45.818412693977024],[149.97209972099722,45.8201012712469],[149.94689946899473,45.8217898485168],[149.92169921699218,45.809969807627624],[149.92169921699218,45.793084034928796],[149.87129871298714,45.77788683949984],[149.84249842498429,45.761001066801015],[149.7560975609756,45.6833265123864],[149.7020970209702,45.64786638971887],[149.63729637296376,45.61071768978147],[149.60489604896048,45.605651957971816],[149.58329583295836,45.632669194289946],[149.57609576095763,45.63773492609957],[149.57609576095763,45.62422630794052],[149.57249572495726,45.609029112511564],[149.5688956889569,45.60396338070191],[149.56169561695617,45.600586226162164],[149.55089550895508,45.59045476254286],[149.52929529295295,45.58370045346334],[149.4356943569436,45.58707760800311],[149.44289442894433,45.59383191708264],[149.45369453694536,45.600586226162164],[149.46449464494646,45.62422630794052],[149.48249482494828,45.66981789422735],[149.51129511295113,45.67319504876713],[149.52929529295295,45.6934579760057],[149.53649536495368,45.698523707815355],[149.54729547295472,45.70527801689488],[149.55449554495544,45.71034374870453],[149.56529565295654,45.73229525321301],[149.59409594095945,45.76437822134079],[149.59769597695976,45.77113253042032],[149.59409594095945,45.782952571309494],[149.59769597695976,45.78970688038902],[149.60489604896048,45.793084034928796],[149.61929619296194,45.793084034928796],[149.62649626496267,45.796461189468545],[149.65169651696516,45.823478425786675],[149.66609666096662,45.853872816644554],[149.69489694896953,45.86062712572411],[149.75249752497524,45.86062712572411],[149.810098100981,45.87920147569281],[149.84969849698496,45.916350175630214],[149.8856988569886,45.96025318464717],[149.92169921699218,45.997401884584605],[150.0189001890019,46.073387861729316],[150.0945009450095,46.095339366237795],[150.10890108901089,46.095339366237795],[150.13410134101343,46.09365078896792],[150.1485014850149,46.095339366237795],[150.1809018090181,46.1054708298571],[150.19530195301957,46.1139137162065],[150.2061020610206,46.1240451798258],[150.20970209702097,46.1341766434451],[150.1809018090181,46.15950530249333],[150.20970209702097,46.179768229731934],[150.2457024570246,46.19158827062111],[150.28890288902892,46.19665400243076],[150.3357033570336,46.21016262058981]]],[[[156.12456124561248,50.63761222222226],[156.13536135361358,50.62410360406318],[156.1569615696157,50.608906408634255],[156.16056160561607,50.59708636774508],[156.1569615696157,50.58864348139565],[156.1461614616146,50.56331482234742],[156.1461614616146,50.551494781458246],[156.15336153361534,50.52954327694977],[156.15336153361534,50.519411813330464],[156.13536135361358,50.510968926981036],[156.12096120961212,50.497460308821985],[156.11016110161103,50.49408315428221],[156.1029610296103,50.492394577012334],[156.0921609216092,50.49408315428221],[156.08496084960854,50.49408315428221],[156.06696066960671,50.49070599974246],[156.05616056160562,50.48564026793281],[156.0489604896049,50.47888595885328],[156.04176041760417,50.467065917964106],[156.0381603816038,50.45355729980503],[156.0381603816038,50.44342583618575],[156.04176041760417,50.434982949836325],[156.04176041760417,50.421474331677274],[156.0381603816038,50.4096542907881],[156.02736027360277,50.40121140443867],[156.00936009360095,50.39614567262902],[155.99855998559985,50.38770278627962],[155.98775987759876,50.377571322660316],[155.9409594095941,50.31847111821443],[155.89775897758977,50.274568109197475],[155.89055890558905,50.26443664557817],[155.88335883358837,50.25430518195887],[155.86895868958692,50.24923945014922],[155.83655836558364,50.244173718339596],[155.82215822158224,50.23573083199017],[155.81135811358115,50.22728794564077],[155.7825578255783,50.190139245703335],[155.7717577175772,50.18676209116356],[155.62415624156245,50.18000778208403],[155.5629556295563,50.16649916392498],[155.50175501755018,50.13779335033698],[155.48015480154805,50.119219000368275],[155.42255422554229,50.034790136874136],[155.4117541175412,50.01115005509578],[155.39735397353974,49.99595285966683],[155.36495364953652,49.99933001420658],[155.37935379353797,50.02297009598496],[155.38295382953828,50.038167291413885],[155.3757537575376,50.04661017776331],[155.35055350553506,50.05505306411271],[155.2929529295293,50.065184527732015],[155.26415264152644,50.06349595046214],[155.24255242552425,50.05505306411271],[155.22815228152285,50.05505306411271],[155.21735217352176,50.06687310500189],[155.2137521375214,50.08038172316097],[155.2137521375214,50.095578918589894],[155.22095220952212,50.10908753674897],[155.22815228152285,50.12090757763815],[155.2389523895239,50.13103904125745],[155.24975249752498,50.141170504876726],[155.25335253352534,50.154679123035805],[155.25335253352534,50.16649916392498],[155.24255242552425,50.19351640024311],[155.24615246152462,50.20195928659251],[155.24975249752498,50.21546790475156],[155.2389523895239,50.22728794564077],[155.1921519215192,50.25430518195887],[155.18855188551885,50.261059491038395],[155.18855188551885,50.274568109197475],[155.2029520295203,50.29314245916618],[155.23175231752316,50.30496250005535],[155.2677526775268,50.306651077325256],[155.3217532175322,50.288076727356525],[155.3469534695347,50.301585345515605],[155.38655386553864,50.342111199992786],[155.4117541175412,50.36068554996149],[155.44055440554405,50.37081701358079],[155.4765547655477,50.37588274539044],[155.54135541355413,50.37588274539044],[155.54855548555486,50.377571322660316],[155.55575555755559,50.38094847720009],[155.5629556295563,50.394457095359144],[155.57015570155704,50.39783424989892],[155.5881558815588,50.39783424989892],[155.61695616956172,50.38770278627962],[155.63135631356317,50.38432563173984],[155.66015660156603,50.38939136354949],[155.68895688956889,50.40289998170854],[155.7177571775718,50.42316290894715],[155.76815768157684,50.46875449523398],[155.77535775357757,50.47888595885328],[155.77895778957793,50.489017422472585],[155.7861578615786,50.510968926981036],[155.78975789757897,50.519411813330464],[155.81855818558188,50.56331482234742],[155.85455854558546,50.60046352228483],[155.8617586175862,50.613972140443906],[155.87255872558728,50.65956372673074],[155.879758797588,50.67813807669944],[155.89055890558905,50.69164669485849],[155.97695976959773,50.747369744764626],[156.00936009360095,50.755812631114054],[156.04176041760417,50.77269840381285],[156.07416074160744,50.78114129016228],[156.1029610296103,50.76763267200323],[156.11736117361176,50.7490583220345],[156.12456124561248,50.728795394795924],[156.12456124561248,50.68151523123919],[156.12456124561248,50.671383767619915],[156.12096120961212,50.66125230400061],[156.12096120961212,50.65112084038131],[156.12456124561248,50.63761222222226]]],[[[173.3759337593376,52.83107409579986],[173.33633336333367,52.82600836399024],[173.3219332193322,52.82094263218059],[173.3219332193322,52.81081116856129],[173.29673296732966,52.82938551852999],[173.28233282332826,52.83782840487942],[173.26433264332644,52.84458271395894],[173.2427324273243,52.84627129122882],[173.22113221132213,52.84458271395894],[173.20673206732067,52.83445125033964],[173.19593195931958,52.81756547764081],[173.1887318873189,52.81756547764081],[173.1887318873189,52.82431978672034],[173.18153181531818,52.82431978672034],[173.17433174331745,52.80912259129141],[173.1887318873189,52.80236828221186],[173.1887318873189,52.79561397313233],[173.16353163531636,52.79392539586246],[173.14553145531454,52.78885966405281],[173.13113131131314,52.78885966405281],[173.11313113131132,52.80236828221186],[173.0951309513095,52.82600836399024],[173.08793087930883,52.83107409579986],[173.07713077130774,52.827696941260115],[173.05913059130592,52.81925405491069],[173.04833048330482,52.81756547764081],[173.0159301593016,52.80236828221186],[172.97992979929802,52.77197389135398],[172.94392943929438,52.7500223868455],[172.9079290792908,52.75508811865515],[172.91152911529116,52.7601538504648],[172.91152911529116,52.770285314084106],[172.91152911529116,52.78041677770341],[172.9079290792908,52.78885966405281],[172.89352893528934,52.79561397313233],[172.87912879128794,52.79561397313233],[172.85752857528576,52.78885966405281],[172.85032850328503,52.792236818592585],[172.839528395284,52.80236828221186],[172.83232832328326,52.80236828221186],[172.8287282872829,52.79899112767211],[172.82152821528217,52.78548250951303],[172.81432814328144,52.78210535497328],[172.80352803528035,52.78379393224316],[172.77832778327786,52.792236818592585],[172.7639276392764,52.79561397313233],[172.7639276392764,52.80236828221186],[172.77832778327786,52.81081116856129],[172.78192781927822,52.82263120945046],[172.78912789127895,52.85133702303847],[172.80712807128072,52.876665682086696],[172.81072810728108,52.8884857229759],[172.79632796327962,52.89186287751565],[172.78912789127895,52.890174300245775],[172.75672756727568,52.8783542593566],[172.74592745927458,52.876665682086696],[172.709927099271,52.8783542593566],[172.64152641526414,52.868222795737296],[172.62712627126274,52.87159995027707],[172.63432634326347,52.88004283662647],[172.65952659526596,52.91381438202413],[172.65232652326523,52.92394584564343],[172.64152641526414,52.92732300018318],[172.60552605526055,52.92732300018318],[172.5479254792548,52.912125804754254],[172.5335253352534,52.915502959294],[172.51912519125193,52.922257268373556],[172.49032490324902,52.920568691103654],[172.47592475924762,52.92732300018318],[172.55152551525515,52.96784885466039],[172.55872558725588,52.95940596831096],[172.5767257672577,52.97798031827966],[172.65952659526596,53.00837470913757],[172.73152731527318,52.99993182278814],[172.74592745927458,53.00499755459779],[172.7639276392764,53.01344044094722],[172.78192781927822,53.015129018217095],[172.90432904329043,53.001620400058016],[172.91152911529116,52.99824324551827],[172.91512915129152,52.993177513708616],[172.91512915129152,52.98642320462909],[172.92232922329225,52.98135747281944],[172.93312933129334,52.979668895549565],[172.95832958329584,52.979668895549565],[172.96912969129693,52.974603163739914],[173.00873008730088,52.98980035916884],[173.0267302673027,52.993177513708616],[173.12753127531278,52.99486609097849],[173.14193141931423,52.98980035916884],[173.17433174331745,52.97122600920014],[173.18513185131854,52.96784885466039],[173.18513185131854,52.961094545580835],[173.1707317073171,52.94927450469166],[173.14193141931423,52.92732300018318],[173.15273152731527,52.92901157745308],[173.159931599316,52.92732300018318],[173.16713167131672,52.922257268373556],[173.16713167131672,52.91381438202413],[173.22113221132213,52.93745446380248],[173.24993249932498,52.94420877288201],[173.2571325713257,52.93407730926273],[173.30033300333002,52.925634422913305],[173.3219332193322,52.915502959294],[173.3219332193322,52.90199434113495],[173.31113311133112,52.89355145478552],[173.29673296732966,52.885108568436124],[173.26433264332644,52.87159995027707],[173.30033300333002,52.859779909387896],[173.35073350733506,52.85302560030834],[173.4011340113401,52.85133702303847],[173.4407344073441,52.85809133211799],[173.43353433534338,52.83782840487942],[173.41913419134193,52.83107409579986],[173.3759337593376,52.83107409579986]]],[[[138.04518045180453,55.05830751477515],[138.13878138781388,55.0633732465848],[138.1819818198182,55.05830751477515],[138.2107821078211,55.03635601026667],[138.18918189181892,55.02115881483775],[138.13158131581315,55.016093083028096],[138.1135811358114,55.005961619408794],[138.0487804878049,54.94010710588336],[138.03438034380343,54.93672995134361],[138.01998019980203,54.93672995134361],[138.00918009180094,54.93335279680383],[138.00198001980021,54.90464698321583],[137.9947799477995,54.89620409686643],[137.99117991179912,54.887761210517],[137.98757987579876,54.88269547870735],[137.99117991179912,54.859055396928994],[138.00198001980021,54.83879246969042],[138.00558005580058,54.82021811972169],[137.98757987579876,54.79826661521321],[137.87957879578795,54.75942933800593],[137.8615786157862,54.739166410767325],[137.85797857978582,54.725657792608274],[137.84357843578437,54.71552632898897],[137.78957789577896,54.68513193813109],[137.76797767977683,54.66655758816236],[137.7607776077761,54.66486901089249],[137.74277742777429,54.65980327908284],[137.73917739177392,54.65642612454306],[137.73917739177392,54.646294660923786],[137.73917739177392,54.641228929114135],[137.73557735577356,54.636163197304484],[137.7175771757718,54.62434315641531],[137.7067770677707,54.62434315641531],[137.6779767797678,54.64291750638401],[137.6527765277653,54.654737547273186],[137.64557645576457,54.66149185635271],[137.58437584375844,54.7509864516565],[137.57357573575734,54.75942933800593],[137.5627756277563,54.766183647085455],[137.55197551975522,54.774626533434855],[137.5447754477545,54.78475799705416],[137.5339753397534,54.81346381064216],[137.51957519575194,54.83879246969042],[137.50157501575018,54.86243255146877],[137.48357483574836,54.8793183241676],[137.42957429574295,54.86580970600852],[137.39357393573937,54.850612510579595],[137.2927729277293,54.796578037943334],[137.26037260372607,54.78306941978428],[137.22437224372243,54.77800368797463],[137.24237242372425,54.79826661521321],[137.24957249572498,54.80839807883251],[137.25317253172534,54.82528385153134],[137.2567725677257,54.86074397419887],[137.26037260372607,54.872564015088045],[137.27477274772747,54.8978926741363],[137.29637296372965,54.92322133318453],[137.32157321573214,54.94348426042313],[137.35757357573578,54.96881291947136],[137.37557375573755,54.99583015578949],[137.389973899739,55.005961619408794],[137.40797407974082,55.011027351218445],[137.4439744397444,55.016093083028096],[137.46197461974623,55.0262245466474],[137.47637476374763,55.0447988966161],[137.49077490774908,55.07012755566433],[137.4979749797498,55.09714479198246],[137.49077490774908,55.11909629649094],[137.51597515975163,55.135982069189765],[137.5447754477545,55.17819650093682],[137.56637566375667,55.19508227363565],[137.60597605976062,55.2001480054453],[137.63837638376384,55.1917051190959],[137.70317703177034,55.16806503731752],[137.70317703177034,55.15117926461869],[137.7211772117721,55.14611353280907],[137.74637746377465,55.14611353280907],[137.76797767977683,55.14273637826929],[137.7859778597786,55.13767064645964],[137.85437854378546,55.13260491464999],[137.87957879578795,55.13767064645964],[137.9047790477905,55.14780211007894],[137.929979299793,55.15286784188859],[137.95157951579517,55.14611353280907],[137.96237962379627,55.13429349191989],[137.96597965979663,55.11909629649094],[137.9731797317973,55.10558767833186],[137.98757987579876,55.09883336925233],[137.96597965979663,55.07181613293423],[137.89757897578977,55.0262245466474],[137.8831788317883,55.00258446486902],[138.02358023580234,55.0549303602354],[138.04518045180453,55.05830751477515]]],[[[166.66546665466655,54.75605218346615],[166.66546665466655,54.734100678957674],[166.65826658266582,54.717214906258846],[166.65466654666545,54.70201771082992],[166.66546665466655,54.68006620632144],[166.65106651066515,54.68682051540097],[166.6258662586626,54.71046059717932],[166.61146611466114,54.71552632898897],[166.59346593465938,54.717214906258846],[166.57906579065792,54.725657792608274],[166.55386553865537,54.74929787438663],[166.50346503465033,54.779692265244506],[166.48546485464857,54.801643769752985],[166.49986499865003,54.82528385153134],[166.47466474664748,54.832038160610864],[166.44586445864462,54.83372673788077],[166.39906399063995,54.832038160610864],[166.3738637386374,54.83372673788077],[166.35586355863558,54.83879246969042],[166.29826298262986,54.88438405597725],[166.29106291062914,54.89282694232665],[166.28746287462877,54.90295840594595],[166.28026280262804,54.9080241377556],[166.2550625506255,54.918155601374906],[166.23346233462337,54.93166421953396],[166.20466204662046,54.93672995134361],[166.19386193861942,54.94517283769301],[166.19026190261906,54.953615724042436],[166.18306183061833,54.97219007401114],[166.17946179461796,54.98232153763044],[166.16146161461614,54.99920731032927],[166.08226082260825,55.059996092045026],[166.07866078660788,55.07012755566433],[166.0858608586086,55.08025901928363],[166.08946089460898,55.10221052379211],[166.08226082260825,55.12078487376081],[166.02466024660248,55.17819650093682],[165.98145981459817,55.193393696365774],[165.97065970659708,55.20521373725495],[165.99225992259926,55.22209950995378],[165.96345963459635,55.23054239630318],[165.89865898658985,55.25755963262131],[165.80145801458013,55.27275682805026],[165.76545765457655,55.282888291669565],[165.74745747457473,55.296396909828616],[165.81945819458196,55.30146264163827],[165.8590585905859,55.30821695071779],[165.89145891458918,55.32172556887684],[165.90225902259021,55.33016845522627],[165.91665916659167,55.350431382464876],[165.9238592385924,55.358874268814276],[165.94185941859422,55.3656285778938],[165.95625956259562,55.36394000062393],[166.17946179461796,55.32003699160697],[166.2406624066241,55.331857032496146],[166.2550625506255,55.331857032496146],[166.25866258662586,55.32172556887684],[166.2658626586266,55.31328268252744],[166.27666276662768,55.30821695071779],[166.28746287462877,55.30315121890814],[166.2406624066241,55.269379673510485],[166.22626226262264,55.25080532354178],[166.2406624066241,55.21534520087425],[166.2406624066241,55.17481934639707],[166.24426244262446,55.162999305507896],[166.25146251462513,55.15286784188859],[166.2658626586266,55.13260491464999],[166.28026280262804,55.122473451030686],[166.30546305463054,55.10558767833186],[166.319863198632,55.095456214712584],[166.3522635226352,55.0549303602354],[166.3630636306363,55.046487473885975],[166.37746377463776,55.03973316480645],[166.38826388263885,55.03129027845702],[166.39546395463958,55.005961619408794],[166.40626406264062,54.99920731032927],[166.4170641706417,54.99245300124974],[166.44946449464499,54.96037003312196],[166.47826478264784,54.94348426042313],[166.53946539465397,54.91984417864478],[166.5718657186572,54.913089869565255],[166.58626586265865,54.90464698321583],[166.589865898659,54.88944978778687],[166.65106651066515,54.84385820150004],[166.64746647466478,54.83372673788077],[166.64026640266405,54.823595274261464],[166.6366663666637,54.81177523337229],[166.64026640266405,54.796578037943334],[166.65826658266582,54.77124937889511],[166.66546665466655,54.75605218346615]]],[[[23.229232292322934,58.50469372260574],[23.254432544325454,58.499627990796085],[23.286832868328702,58.48780794990691],[23.31923319233192,58.472610754477984],[23.333633336333378,58.455724981779156],[23.32643326433265,58.442216363620076],[23.26163261632618,58.46585644539843],[23.23643236432366,58.455724981779156],[23.25083250832509,58.45403640450925],[23.26163261632618,58.45234782723938],[23.272432724327246,58.44559351815985],[23.279632796327974,58.437150631810425],[23.23643236432366,58.4405277863502],[23.214832148321477,58.44559351815985],[23.196831968319685,58.455724981779156],[23.19323193231932,58.46079071358881],[23.189631896318957,58.46754502266833],[23.182431824318257,58.47429933174786],[23.171631716317165,58.477676486287635],[23.157231572315737,58.477676486287635],[23.153631536315373,58.47598790901773],[23.15003150031501,58.46923359993821],[23.146431464314645,58.46585644539843],[23.14283142831428,58.45234782723938],[23.139231392313917,58.44559351815985],[23.132031320313217,58.43883920908033],[23.12483124831249,58.43546205454055],[23.11043110431106,58.428707745461026],[23.103231032310333,58.4303963227309],[23.09243092430924,58.432084900000774],[23.08523085230854,58.4303963227309],[23.081630816308177,58.41857628184172],[23.081630816308177,58.4118219727622],[23.081630816308177,58.40675624095255],[23.08523085230854,58.40000193187302],[23.08523085230854,58.39493620006337],[23.063630636306357,58.38480473644407],[23.0420304203042,58.37129611828502],[23.020430204302045,58.36285323193559],[22.977229772297733,58.38142758190432],[22.955629556295577,58.38142758190432],[22.94842948429485,58.37298469555489],[22.970029700297005,58.35947607739584],[22.901629016290173,58.312195913839105],[22.887228872288716,58.30713018202948],[22.869228692286924,58.30544160475958],[22.854828548285496,58.298687295680054],[22.826028260282612,58.27842436844145],[22.811628116281156,58.273358636631826],[22.790027900279,58.271670059361924],[22.743227432274324,58.273358636631826],[22.721627216272168,58.26998148209205],[22.710827108271076,58.25816144120287],[22.75762757627578,58.24296424577392],[22.721627216272168,58.22607847307509],[22.667626676266764,58.22101274126544],[22.653226532265336,58.24465282304382],[22.63882638826388,58.249718554853445],[22.620826208262088,58.25309570939322],[22.602826028260296,58.25140713212335],[22.584825848258504,58.24802997758357],[22.570425704257048,58.23958709123417],[22.56322563225632,58.23452135942452],[22.559625596255984,58.23789851396427],[22.54882548825489,58.24802997758357],[22.534425344253464,58.254784286663096],[22.527225272252736,58.24802997758357],[22.516425164251643,58.23114420488474],[22.509225092250944,58.227767050344994],[22.50562505625058,58.22438989580522],[22.50562505625058,58.22270131853534],[22.49842498424985,58.22270131853534],[22.49842498424985,58.22607847307509],[22.491224912249123,58.241275668504045],[22.491224912249123,58.24465282304382],[22.476824768247695,58.24465282304382],[22.458824588245903,58.241275668504045],[22.444424444244447,58.23452135942452],[22.433624336243383,58.22607847307509],[22.42282422824229,58.22101274126544],[22.408424084240863,58.22438989580522],[22.39762397623977,58.227767050344994],[22.38682386823868,58.22607847307509],[22.37962379623798,58.22270131853534],[22.36162361623616,58.21763558672569],[22.35442354423546,58.21594700945579],[22.32202322023221,58.205815545836515],[22.29682296822969,58.192306927677436],[22.282422824228263,58.18217546405816],[22.275222752227535,58.178798309518385],[22.27162271622717,58.17373257770873],[22.27162271622717,58.13658387777133],[22.264422644226443,58.11463237326285],[22.257222572225743,58.09268086875437],[22.22842228422286,58.05215501427719],[22.22122221222213,58.04371212792776],[22.21042210422104,58.03526924157836],[22.199621996219975,58.026826355228934],[22.199621996219975,58.01669489160963],[22.20322203222034,57.99474338710118],[22.188821888218882,57.98461192348188],[22.048420484204854,57.91538025541669],[22.016020160201606,57.91369167814679],[21.990819908199086,57.93564318265527],[21.99441994419945,57.947463223544446],[21.990819908199086,57.95759468716375],[21.980019800198022,57.96603757351318],[21.965619656196566,57.969414728052925],[21.965619656196566,57.9711033053228],[21.9620196201962,57.974480459862576],[21.9620196201962,57.97954619167223],[21.9620196201962,57.98461192348188],[21.990819908199086,57.982923346211976],[21.998019980199814,57.98461192348188],[22.005220052200542,57.991366232561404],[22.016020160201606,58.01162915980001],[22.01962019620197,58.02176062341928],[22.059220592205918,58.05215501427719],[22.07722077220774,58.07410651878567],[22.084420844208438,58.08254940513507],[22.09522095220953,58.085926559674846],[22.109621096210958,58.08423798240494],[22.124021240212414,58.07917225059529],[22.134821348213478,58.07748367332542],[22.149221492214934,58.07917225059529],[22.1528215282153,58.085926559674846],[22.160021600215998,58.107878064183296],[22.163621636216362,58.116320950532725],[22.20322203222034,58.148403918660506],[22.181621816218183,58.16022395954968],[22.142021420214206,58.16866684589908],[22.073620736207374,58.17542115497861],[22.052020520205218,58.187241195867784],[22.016020160201606,58.23452135942452],[21.99441994419945,58.24465282304382],[21.929619296192982,58.24465282304382],[21.897218972189734,58.25140713212335],[21.86841868418685,58.2649157502824],[21.850418504185058,58.281801522981226],[21.84321843218433,58.2936215638704],[21.84321843218433,58.30206445021983],[21.85401854018542,58.30713018202948],[21.908019080190797,58.298687295680054],[21.897218972189734,58.31388449110901],[21.87921879218794,58.32908168653793],[21.872018720187214,58.34090172742711],[21.89361893618937,58.34596745923676],[21.91161911619116,58.339213150157235],[21.929619296192982,58.32739310926806],[21.94401944019441,58.31895022291866],[21.9620196201962,58.32739310926806],[21.954819548195502,58.344278881966886],[21.96921969219693,58.35441034558619],[21.990819908199086,58.35778750012594],[22.012420124201242,58.35441034558619],[22.001620016200178,58.366230386475365],[21.990819908199086,58.38649331371394],[21.947619476194774,58.432084900000774],[21.926019260192618,58.44728209542973],[21.900819008190098,58.46923359993821],[21.88641886418864,58.477676486287635],[21.857618576185757,58.491185104446686],[21.832418324183237,58.51144803168526],[21.88641886418864,58.49793941352621],[21.900819008190098,58.49793941352621],[21.915219152191526,58.50131656806599],[21.91881918819189,58.50469372260574],[21.91881918819189,58.50975945441539],[21.929619296192982,58.518202340764816],[21.965619656196566,58.518202340764816],[21.99441994419945,58.513136608955165],[22.01962019620197,58.499627990796085],[22.062820628206282,58.45741355904903],[22.07002070020701,58.44728209542973],[22.073620736207374,58.432084900000774],[22.073620736207374,58.42701916819115],[22.07722077220774,58.423642013651374],[22.084420844208438,58.4219534363815],[22.088020880208802,58.4219534363815],[22.098820988209894,58.42533059092125],[22.098820988209894,58.43546205454055],[22.091620916209166,58.4489706726996],[22.098820988209894,58.47598790901773],[22.10242102421026,58.48780794990691],[22.113221132211322,58.49793941352621],[22.12762127621278,58.50469372260574],[22.160021600215998,58.513136608955165],[22.17082170821709,58.521579495304564],[22.181621816218183,58.535088113463644],[22.188821888218882,58.54353099981304],[22.19602196021961,58.54521957708292],[22.214022140221402,58.54690815435282],[22.214022140221402,58.54353099981304],[22.217622176221766,58.53846526800339],[22.22122221222213,58.53339953619374],[22.224822248222495,58.52833380438409],[22.224822248222495,58.51651376349491],[22.22842228422286,58.50975945441539],[22.242822428224287,58.50469372260574],[22.27162271622717,58.50131656806599],[22.282422824228263,58.521579495304564],[22.282422824228263,58.55028530889257],[22.289622896228963,58.5688596588613],[22.32202322023221,58.584056854290225],[22.46242462424624,58.59249974063965],[22.54882548825489,58.62964844057706],[22.584825848258504,58.63471417238671],[22.595625956259568,58.62964844057706],[22.61362613626136,58.606008358798704],[22.62442624426245,58.60094262698905],[22.63162631626318,58.597565472449304],[22.642426424264244,58.589122586099876],[22.649626496264972,58.58743400883],[22.6568265682657,58.589122586099876],[22.674826748267492,58.597565472449304],[22.68202682026822,58.60094262698905],[22.703627036270376,58.597565472449304],[22.718027180271804,58.59081116336975],[22.736027360273596,58.58743400883],[22.75762757627578,58.59249974063965],[22.790027900279,58.61445124514813],[22.811628116281156,58.62289413149753],[22.84762847628477,58.61276266787823],[22.89802898028981,58.619516976957755],[22.92322923229233,58.61782839968788],[22.944829448294485,58.60938551333848],[22.988029880298797,58.60094262698905],[23.0348303483035,58.584056854290225],[23.09243092430924,58.570548236131174],[23.11043110431106,58.55535104070222],[23.12483124831249,58.535088113463644],[23.132031320313217,58.52833380438409],[23.15003150031501,58.521579495304564],[23.189631896318957,58.50975945441539],[23.229232292322934,58.50469372260574]]],[[[22.293222932229327,58.89475507194865],[22.22842228422286,58.88631218559922],[22.19602196021961,58.888000762869126],[22.062820628206282,58.92514946280653],[22.04482044820449,58.93696950369571],[22.055620556205582,58.95216669912466],[22.09522095220953,58.95554385366444],[22.167221672216726,58.950478121854786],[22.46242462424624,58.97074104909336],[22.444424444244447,58.97749535817289],[22.440824408244083,58.98424966725244],[22.45522455224554,58.98762682179219],[22.476824768247695,58.980872512712665],[22.48762487624876,58.980872512712665],[22.48762487624876,59.016332635380195],[22.50562505625058,59.02477552172962],[22.527225272252736,59.0264640989995],[22.545225452254527,59.029841253539274],[22.559625596255984,59.038284139888674],[22.57402574025741,59.05348133531763],[22.577625776257776,59.06192422166703],[22.577625776257776,59.070367108016455],[22.577625776257776,59.078809994365855],[22.58842588425884,59.08725288071528],[22.59922599225993,59.08894145798516],[22.63882638826388,59.08725288071528],[22.642426424264244,59.08725288071528],[22.667626676266764,59.08556430344538],[22.696426964269648,59.078809994365855],[22.71442714427144,59.070367108016455],[22.692826928269284,59.04166129442845],[22.700027000270012,59.02477552172962],[22.721627216272168,59.011266903570544],[22.736027360273596,59.00451259449102],[22.836828368283676,59.007889749030795],[22.93402934029342,58.98424966725244],[22.94842948429485,58.97074104909336],[22.952029520295213,58.96060958547406],[22.94842948429485,58.945412390045135],[22.94842948429485,58.93696950369571],[22.95922959229594,58.926838040076404],[22.980829808298097,58.918395153727005],[22.988029880298797,58.91164084464748],[22.995229952299525,58.90657511283783],[23.00963009630098,58.8981322264884],[23.01683016830168,58.891377917408875],[23.01683016830168,58.888000762869126],[23.020430204302045,58.88124645378957],[23.01683016830168,58.8711149901703],[23.020430204302045,58.86436068109077],[23.027630276302773,58.86267210382087],[23.0348303483035,58.86267210382087],[23.038430384303837,58.860983526550996],[23.0420304203042,58.84072059931239],[23.0348303483035,58.83058913569312],[23.020430204302045,58.828900558423214],[22.977229772297733,58.84409775385217],[22.96642966429664,58.84578633112204],[22.955629556295577,58.847474908391945],[22.94842948429485,58.84409775385217],[22.94842948429485,58.83734344477264],[22.94122941229412,58.833966290232866],[22.930429304293057,58.84072059931239],[22.912429124291236,58.83565486750274],[22.894428944289444,58.83565486750274],[22.880028800288017,58.83227771296299],[22.86562865628656,58.820457672073815],[22.876428764287652,58.820457672073815],[22.88362883628838,58.81708051753404],[22.887228872288716,58.81201478572439],[22.887228872288716,58.80357189937499],[22.887228872288716,58.79006328121591],[22.88362883628838,58.78837470394603],[22.87282872828729,58.78837470394603],[22.862028620286196,58.78162039486651],[22.844028440284404,58.77655466305686],[22.81522815228152,58.77655466305686],[22.790027900279,58.78162039486651],[22.779227792277936,58.79175185848581],[22.790027900279,58.80188332210511],[22.811628116281156,58.81032620845451],[22.826028260282612,58.81876909480391],[22.818828188281884,58.828900558423214],[22.800828008280092,58.83058913569312],[22.779227792277936,58.82383482661356],[22.754027540275416,58.81539194026416],[22.736027360273596,58.806949053914735],[22.71442714427144,58.78162039486651],[22.68202682026822,58.7242087676905],[22.653226532265336,58.70225726318202],[22.610026100261024,58.69043722229284],[22.55602556025562,58.687060067753066],[22.502025020250215,58.695502954102494],[22.46242462424624,58.71576588134107],[22.47322473224733,58.71914303588085],[22.48042480424806,58.7242087676905],[22.49842498424985,58.73771738584955],[22.484024840248424,58.74784884946885],[22.466024660246603,58.766423199437554],[22.44802448024481,58.78668612667616],[22.444424444244447,58.80357189937499],[22.444424444244447,58.82721198115334],[22.440824408244083,58.84072059931239],[22.43002430024302,58.85254064020157],[22.383223832238343,58.882935031059475],[22.35442354423546,58.891377917408875],[22.325623256232575,58.896443649218526],[22.293222932229327,58.89475507194865]]],[[[164.7070470704707,58.97749535817289],[164.69264692646925,58.95554385366444],[164.68904689046894,58.940346658235484],[164.68184681846822,58.92514946280653],[164.68544685446858,58.91501799918723],[164.68184681846822,58.904886535567954],[164.63144631446318,58.86604925836065],[164.56664566645668,58.86267210382087],[164.46224462244624,58.86773783563052],[164.40824408244083,58.86436068109077],[164.35064350643506,58.84578633112204],[164.3038430384304,58.82721198115334],[164.28944289442893,58.80863763118464],[164.2570425704257,58.798506167565336],[164.23184231842322,58.81201478572439],[164.22104221042213,58.81370336299429],[164.21024210242103,58.81539194026416],[164.1922419224192,58.82383482661356],[164.18144181441818,58.825523403883466],[164.1706417064171,58.82383482661356],[164.159841598416,58.82214624934369],[164.1346413464135,58.80188332210511],[164.12024120241205,58.77993181759663],[164.08784087840877,58.76473462216768],[164.0410404104041,58.74784884946885],[163.9870398703987,58.72927449950015],[163.95463954639547,58.70732299499167],[163.91503915039152,58.700568685912145],[163.8826388263883,58.70225726318202],[163.84663846638466,58.69043722229284],[163.7890378903789,58.643157058736136],[163.67023670236705,58.5958768951794],[163.58383583835837,58.558728195242],[163.55143551435515,58.521579495304564],[163.51543515435156,58.49793941352621],[163.49023490234902,58.44390494088998],[163.47223472234725,58.46079071358881],[163.4470344703447,58.47598790901773],[163.44343443434434,58.50469372260574],[163.41463414634148,58.535088113463644],[163.41463414634148,58.55028530889257],[163.44343443434434,58.562105349781746],[163.5550355503555,58.57223681340105],[163.60903609036092,58.60769693606858],[163.63783637836377,58.651599945085536],[163.6558365583656,58.69043722229284],[163.6738367383674,58.71576588134107],[163.72423724237245,58.749537426738726],[163.74583745837458,58.77655466305686],[163.77823778237786,58.81032620845451],[163.77103771037713,58.83565486750274],[163.76743767437677,58.87280356744017],[163.78183781837822,58.89306649467878],[163.82143821438217,58.92514946280653],[163.86103861038612,58.96229816274396],[163.91143911439116,58.994381130871716],[163.89343893438934,59.00957832630067],[163.87903879038794,59.00957832630067],[163.84663846638466,59.00451259449102],[163.83583835838357,59.00620117176089],[163.80343803438035,59.016332635380195],[163.7890378903789,59.0180212126501],[163.75663756637567,59.007889749030795],[163.73143731437318,58.99606970814162],[163.69543695436954,58.99269255360184],[163.71703717037173,59.00620117176089],[163.74943749437494,59.01970978991997],[163.80343803438035,59.03152983080915],[163.96543965439656,59.02815267626937],[164.28224282242826,59.114270117033385],[164.31824318243184,59.13115588973221],[164.33984339843397,59.15141881697082],[164.39384393843937,59.1835017850986],[164.4550445504455,59.20883044414683],[164.55944559445595,59.239224835004705],[164.58104581045814,59.23415910319508],[164.57744577445777,59.191944671448],[164.58104581045814,59.1835017850986],[164.58824588245886,59.1818132078287],[164.609846098461,59.18519036236847],[164.61704617046172,59.1835017850986],[164.61704617046172,59.17843605328895],[164.61704617046172,59.16661601239977],[164.61704617046172,59.16155028059012],[164.6278462784628,59.11089296249364],[164.6386463864639,59.09907292160446],[164.6746467464675,59.083875726175506],[164.68904689046894,59.07712141709598],[164.7070470704707,59.048415603507976],[164.73584735847362,59.02308694445972],[164.71064710647107,59.00620117176089],[164.7070470704707,58.97749535817289]]],[[[14.995949959499598,68.90126397327353],[14.98874988749887,68.8843782005747],[14.959949599496014,68.87593531422527],[14.902349023490245,68.87255815968552],[14.891548915489153,68.87255815968552],[14.859148591485933,68.8826896233048],[14.844748447484477,68.88606677784458],[14.841148411484113,68.89113250965423],[14.85554855548557,68.90632970508318],[14.85554855548557,68.9130840141627],[14.851948519485205,68.91814974597236],[14.85554855548557,68.92321547778198],[14.873548735487361,68.92996978686153],[14.898748987489881,68.93165836413141],[14.959949599496014,68.92659263232176],[14.98154981549817,68.91814974597236],[14.995949959499598,68.90126397327353]]],[[[50.32310323103232,69.15117340921617],[50.31230312303123,69.11064755473896],[50.24750247502476,69.05661308210273],[50.168301683016836,69.0110214958159],[50.11430114301143,68.99582430038694],[50.12150121501216,69.00764434127612],[50.125101251012524,69.01271007308577],[50.13230132301325,69.01608722762555],[50.12150121501216,69.0397273094039],[50.13950139501395,69.06336739118225],[50.18990189901899,69.10558182292934],[50.218702187021876,69.14441910013662],[50.22230222302224,69.15455056375592],[50.20790207902081,69.1579277182957],[50.17910179101793,69.15286198648604],[50.13230132301325,69.14104194559687],[50.02430024300244,69.09207320477026],[49.98469984699847,69.08531889569073],[49.95589955899561,69.07518743207143],[49.87309873098732,69.02621869124485],[49.85509855098553,69.00933291854602],[49.89469894698948,69.01271007308577],[49.91269912699127,69.00933291854602],[49.90909909099091,68.99582430038694],[49.891098910989115,68.98400425949777],[49.82629826298265,68.96542990952906],[49.71829718297184,68.88944393238435],[49.68589685896859,68.87931246876505],[49.64269642696428,68.8742467369554],[49.599495994959966,68.86580385060597],[49.538295382953834,68.83540945974809],[49.423094230942326,68.81176937796974],[49.33309333093331,68.81514653250949],[49.304293042930425,68.81176937796974],[49.31149311493115,68.80332649162031],[49.25029250292505,68.77968640984196],[48.79668796687969,68.72902909174547],[48.77868778687787,68.73240624628525],[48.767887678876804,68.7374719780949],[48.760687606876076,68.74253770990455],[48.74988749887498,68.74929201898408],[48.735487354873555,68.75435775079373],[48.72108721087213,68.75773490533348],[48.70668706687067,68.75435775079373],[48.69948699486994,68.74253770990455],[48.685086850868515,68.73409482355513],[48.59148591485916,68.73071766901538],[48.56268562685628,68.74422628717443],[48.508685086850875,68.77630925530221],[48.41508415084152,68.81345795523961],[48.38628386283864,68.81683510977939],[48.375483754837546,68.82190084158904],[48.350283502835026,68.84047519155774],[48.33948339483396,68.8455409233674],[48.32868328683287,68.84722950063727],[48.28908289082892,68.86580385060597],[48.32148321483217,68.87931246876505],[48.332283322833234,68.88606677784458],[48.317883178831806,68.88606677784458],[48.292682926829286,68.89619824146388],[48.28548285482856,68.89957539600363],[48.27108271082713,68.89619824146388],[48.24588245882461,68.8826896233048],[48.23508235082352,68.8826896233048],[48.22068220682209,68.89619824146388],[48.217082170821726,68.90970685962293],[48.224282242822426,68.92490405505188],[48.22788227882279,68.94347840502058],[48.23868238682388,68.96374133225919],[48.256682566825674,68.97387279587846],[48.267482674826766,68.98231568222789],[48.249482494824946,68.99582430038694],[48.242282422824246,68.99582430038694],[48.23508235082352,68.9924471458472],[48.224282242822426,68.99075856857729],[48.217082170821726,68.99582430038694],[48.209882098821,69.0008900321966],[48.21348213482136,69.00426718673637],[48.21348213482136,69.00764434127612],[48.217082170821726,69.01271007308577],[48.22068220682209,69.0194643821653],[48.256682566825674,69.04479304121355],[48.22068220682209,69.0498587730232],[48.217082170821726,69.05323592756295],[48.217082170821726,69.06505596845213],[48.217082170821726,69.0684331229919],[48.22068220682209,69.07349885480156],[48.23868238682388,69.09713893657991],[48.2638826388264,69.11909044108839],[48.27108271082713,69.13259905924744],[48.267482674826766,69.13935336832697],[48.267482674826766,69.17143633645475],[48.267482674826766,69.17819064553427],[48.2638826388264,69.196764995503],[48.27108271082713,69.22715938636088],[48.28908289082892,69.25586519994889],[48.30348303483035,69.27612812718749],[48.3358833588336,69.29976820896584],[48.400684006840066,69.33860548617315],[48.42948429484295,69.3622455679515],[48.44748447484474,69.37237703157078],[48.508685086850875,69.3892628042696],[48.56628566285664,69.41965719512751],[48.80748807488075,69.49395459500235],[48.90468904689047,69.5074632131614],[49.08469084690847,69.5175946767807],[49.271892718927205,69.5074632131614],[49.69309693096932,69.39770569061903],[50.02430024300244,69.29976820896584],[50.16470164701647,69.26093093175854],[50.22230222302224,69.22884796363076],[50.276302763027644,69.19169926369335],[50.32310323103232,69.15117340921617]]],[[[169.44469444694448,69.8485558216777],[169.44829448294485,69.83335862624878],[169.4518945189452,69.82660431716923],[169.4518945189452,69.81816143081983],[169.44109441094412,69.80465281266078],[169.42669426694266,69.79789850358122],[169.41589415894163,69.79283277177157],[169.4086940869409,69.78438988542217],[169.41229412294126,69.77088126726312],[169.41229412294126,69.76412695818357],[169.30429304293045,69.77088126726312],[169.28629286292863,69.76750411272334],[169.2790927909279,69.75906122637392],[169.28269282692827,69.75061834002452],[169.30429304293045,69.74217545367512],[169.2790927909279,69.72022394916664],[169.28269282692827,69.70333817646781],[169.3006930069301,69.68814098103886],[169.31149311493118,69.6645008992605],[169.3006930069301,69.6459265492918],[169.2790927909279,69.62397504478332],[169.2358923589236,69.59189207665554],[169.18909189091892,69.57500630395671],[169.13869138691388,69.57162914941696],[169.0378903789038,69.57838345849649],[168.87588875888758,69.56825199487719],[168.5230852308523,69.63072935386285],[168.17388173881739,69.69489529011838],[168.13428134281344,69.71346964008708],[168.09828098280985,69.73879829913534],[168.0586805868059,69.76412695818357],[167.96867968679686,69.77594699907274],[167.88227882278824,69.79789850358122],[167.79227792277925,69.80802996720053],[167.7526775267753,69.83167004897888],[167.78507785077852,69.85868728529701],[167.8210782107821,69.88063878980549],[167.99027990279905,69.9566247669502],[168.19548195481957,70.00897066231656],[168.22428224282243,70.01065923958646],[168.23508235082352,70.01234781685633],[168.25308253082534,70.02247928047564],[168.26388263882637,70.02416785774551],[168.63828638286384,69.9853305805382],[168.68508685086852,69.97013338510928],[168.76788767887678,69.96337907602972],[168.8290882908829,69.93973899425137],[169.22869228692286,69.90765602612362],[169.27549275492754,69.89583598523444],[169.37269372693726,69.88401594434524],[169.4230942309423,69.87219590345606],[169.44469444694448,69.8485558216777]]],[[[19.243992439924398,70.20146847108319],[19.247592475924762,70.19302558473379],[19.251192511925126,70.18627127565426],[19.251192511925126,70.17445123476509],[19.22959229592297,70.15925403933613],[19.225992259922606,70.15418830752648],[19.225992259922606,70.14912257571683],[19.225992259922606,70.14405684390718],[19.22959229592297,70.14067968936743],[19.225992259922606,70.13561395755778],[19.175591755917566,70.11535103031918],[19.139591395913953,70.11028529850952],[19.10359103591037,70.11703960758905],[19.031590315903173,70.14067968936743],[19.009990099901017,70.14574542117705],[18.99558995589956,70.15249973025661],[19.00279002790029,70.15756546206626],[19.0459904599046,70.16938550295544],[19.063990639906393,70.17107408022531],[19.074790747907485,70.16600834841566],[19.089190891908913,70.15756546206626],[19.099990999910005,70.15756546206626],[19.09639096390964,70.18627127565426],[19.114391143911433,70.19302558473379],[19.135991359913618,70.19640273927354],[19.139591395913953,70.20146847108319],[19.117991179911797,70.20822278016271],[19.110791107911098,70.21666566651214],[19.114391143911433,70.22004282105192],[19.110791107911098,70.22510855286154],[19.09639096390964,70.2301742846712],[19.089190891908913,70.23355143921097],[19.092790927909277,70.23861717102062],[19.10359103591037,70.24199432556037],[19.135991359913618,70.2403057482905],[19.14679146791468,70.23861717102062],[19.150391503915046,70.23692859375075],[19.15399153991541,70.23861717102062],[19.15399153991541,70.24368290283027],[19.161191611916138,70.24874863463992],[19.168391683916838,70.25550294371945],[19.17919179191793,70.25550294371945],[19.186391863918658,70.25381436644955],[19.189991899918994,70.25381436644955],[19.19719197191972,70.25719152098932],[19.20439204392045,70.25381436644955],[19.211592115921178,70.2504372119098],[19.22959229592297,70.23355143921097],[19.22959229592297,70.22004282105192],[19.225992259922606,70.21159993470249],[19.243992439924398,70.20146847108319]]],[[[60.540005400054014,69.81816143081983],[60.54720547205474,69.81478427628005],[60.54720547205474,69.80802996720053],[60.540005400054014,69.801275658121],[60.52920529205292,69.79789850358122],[60.514805148051494,69.79620992631135],[60.4968049680497,69.79283277177157],[60.46800468004682,69.7810127308824],[60.450004500045,69.76581553545347],[60.4428044280443,69.75061834002452],[60.45360453604536,69.73542114459556],[60.47520475204752,69.72191252643651],[60.37440374403744,69.73035541278591],[60.35280352803528,69.72191252643651],[60.36000360003601,69.71515821735699],[60.255602556025565,69.68982955830873],[60.20160201602016,69.68476382649908],[60.09360093600938,69.71515821735699],[60.03240032400325,69.72191252643651],[60.003600036000364,69.72022394916664],[59.97479974799748,69.71178106281721],[59.920799207992076,69.68814098103886],[59.92439924399244,69.6830752492292],[59.93519935199353,69.66787805380025],[59.913599135991376,69.66956663107015],[59.89919899198992,69.67800951741955],[59.89199891998922,69.68645240376898],[59.88119881198813,69.69489529011838],[59.852398523985244,69.69827244465816],[59.769597695976955,69.69489529011838],[59.56439564395646,69.71515821735699],[59.57879578795789,69.73035541278591],[59.567995679956795,69.74217545367512],[59.54639546395464,69.75061834002452],[59.535595355953575,69.75906122637392],[59.54639546395464,69.77932415361252],[59.57159571595716,69.7827013081523],[59.60399603996041,69.7827013081523],[59.6219962199622,69.78776703996195],[59.6219962199622,69.80465281266078],[59.60399603996041,69.81816143081983],[59.47799477994781,69.86375301710666],[59.43119431194313,69.88908167615489],[59.39879398793988,69.89583598523444],[59.366393663936634,69.89414740796454],[59.30519305193053,69.88401594434524],[59.26919269192692,69.88908167615489],[59.2367923679237,69.89921313977419],[59.207992079920814,69.91103318066337],[59.17919179191793,69.9194760670128],[59.08199081990821,69.92116464428267],[58.93798937989382,69.94142757152127],[58.95238952389525,69.93129610790197],[58.97758977589777,69.9194760670128],[59.00639006390065,69.91103318066337],[59.05319053190533,69.90259029431397],[59.132391323913254,69.87388448072596],[59.1107911079111,69.86037586256688],[59.07839078390785,69.85699870802713],[59.01719017190172,69.86037586256688],[59.02079020790208,69.87388448072596],[59.00279002790029,69.87388448072596],[58.97758977589777,69.87895021253561],[58.95598955989561,69.88739309888501],[58.95238952389525,69.89414740796454],[58.94158941589416,69.90596744885372],[58.898388983889845,69.9279189533622],[58.696786967869684,70.00221635323703],[58.570785707857084,70.07820233038177],[58.60318603186033,70.1136624530493],[58.588785887858876,70.11872818485895],[58.55998559985602,70.1237939166686],[58.54918549185493,70.13392538028788],[58.563585635856356,70.13392538028788],[58.61038610386106,70.14067968936743],[58.60318603186033,70.14574542117705],[58.595985959859604,70.1508111529867],[58.58518585185854,70.15249973025661],[58.57798577985781,70.15418830752648],[58.581585815858176,70.15925403933613],[58.588785887858876,70.17613981203496],[58.59238592385924,70.18120554384461],[58.57438574385745,70.18458269838436],[58.556385563855656,70.18289412111449],[58.5419854198542,70.17782838930484],[58.520385203852044,70.17445123476509],[58.51678516785168,70.17613981203496],[58.513185131851316,70.18627127565426],[58.50958509585098,70.18964843019401],[58.495184951849524,70.19302558473379],[58.45198451984521,70.19471416200366],[58.462784627846275,70.20653420289284],[58.49158491584916,70.21835424378202],[58.50238502385025,70.2301742846712],[58.480784807848096,70.23355143921097],[58.44838448384485,70.23355143921097],[58.42318423184233,70.2403057482905],[58.412384123841235,70.2605686755291],[58.430384303843056,70.27070013914837],[58.46638466384664,70.27070013914837],[58.822788227882285,70.21666566651214],[58.81558815588156,70.22679713013144],[58.7939879398794,70.24368290283027],[58.79038790387904,70.25381436644955],[58.77598775987761,70.2588800982592],[58.696786967869684,70.2791430254978],[58.671586715867164,70.29434022092676],[58.6607866078661,70.29940595273641],[58.52398523985241,70.33148892086416],[58.495184951849524,70.33148892086416],[58.520385203852044,70.34837469356299],[58.55998559985602,70.34668611629311],[58.639186391863916,70.33148892086416],[58.631986319863216,70.34499753902324],[58.64998649986501,70.35344042537264],[58.67518675186753,70.36019473445216],[58.721987219872204,70.36694904353169],[58.72918729187293,70.3686376208016],[58.739987399873996,70.37370335261124],[58.75438754387545,70.3872119707703],[58.76158761587618,70.3973434343896],[58.75438754387545,70.39903201165947],[58.747187471874724,70.40072058892935],[58.739987399873996,70.4074748980089],[58.73638736387366,70.4159177843583],[58.7327873278733,70.4159177843583],[58.72918729187293,70.41760636162817],[58.739987399873996,70.42773782524748],[58.747187471874724,70.43111497978725],[58.77598775987761,70.434492134327],[58.873188731887325,70.434492134327],[58.90198901989021,70.43955786613665],[58.98118981189813,70.46995225699456],[59.024390243902445,70.48008372061383],[59.04239042390424,70.46657510245478],[59.0459904599046,70.4547550615656],[59.06039060390606,70.4446235979463],[59.07839078390785,70.43786928886678],[59.12159121591216,70.43111497978725],[59.315993159931594,70.37201477534134],[59.351993519935206,70.35344042537264],[59.43839438394386,70.2875859118472],[59.467194671946714,70.27745444822793],[59.510395103951055,70.27238871641828],[59.53199531995321,70.26563440733875],[59.542795427954275,70.25381436644955],[59.535595355953575,70.21666566651214],[59.535595355953575,70.20822278016271],[59.55359553595537,70.19977989381331],[59.63999639996402,70.20146847108319],[59.70479704797049,70.17782838930484],[59.72999729997301,70.17445123476509],[59.75159751597516,70.17445123476509],[59.76599765997662,70.17107408022531],[59.77319773197732,70.16263119387588],[59.77679776797768,70.14405684390718],[59.78399783997841,70.132236803018],[59.79839798397984,70.12717107120835],[59.837998379983816,70.12717107120835],[59.927999279992804,70.09846525762035],[59.95679956799569,70.09846525762035],[60.01080010800109,70.10353098943],[60.03600036000361,70.09846525762035],[60.05760057600577,70.07820233038177],[60.06840068400686,70.07313659857212],[60.097200972009716,70.06469371222269],[60.3240032400324,69.97013338510928],[60.32760327603276,69.9566247669502],[60.41400414004141,69.96337907602972],[60.42840428404284,69.95493618968032],[60.47520475204752,69.92116464428267],[60.46080460804609,69.91103318066337],[60.45360453604536,69.89752456250432],[60.45360453604536,69.88063878980549],[60.46080460804609,69.86544159437653],[60.47160471604718,69.85868728529701],[60.5040050400504,69.85193297621748],[60.514805148051494,69.84517866713796],[60.51840518405186,69.8401129353283],[60.52560525605256,69.829981471709],[60.52920529205292,69.82153858535958],[60.540005400054014,69.81816143081983]]],[[[53.23193231932319,71.2163034102827],[53.20673206732067,71.19772906031397],[53.20313203132031,71.19266332850435],[53.20673206732067,71.1859090194248],[53.217532175321764,71.1673346694561],[53.20313203132031,71.15213747402714],[53.16353163531636,71.13862885586809],[53.14913149131493,71.12680881497892],[53.14913149131493,71.12005450589939],[53.159931599315996,71.10823446501021],[53.159931599315996,71.10316873320056],[53.15273152731527,71.09472584685113],[53.141931419314204,71.09134869231139],[53.134731347313476,71.08797153777161],[53.12033120331205,71.08628296050173],[53.09873098730989,71.08628296050173],[53.08073080730807,71.09134869231139],[53.06273062730628,71.08797153777161],[53.04833048330485,71.07277434234268],[53.041130411304124,71.03393706513538],[53.06993069930701,71.01705129243655],[53.109531095310956,71.00691982881725],[53.13833138331384,70.9934112106582],[53.12033120331205,70.97652543795937],[53.06273062730628,70.96639397434006],[53.008730087300876,70.96808255160994],[53.01233012330124,70.99003405611842],[53.015930159301604,71.00354267427747],[52.97272972729729,71.02887133332572],[52.97272972729729,71.04575710602455],[52.95472954729547,71.05757714691373],[52.933129331293316,71.06433145599325],[52.79992799927999,71.09303726958126],[52.80352803528035,71.10654588774031],[52.79632796327965,71.11498877408974],[52.77472774727747,71.13018596951869],[52.77472774727747,71.13525170132834],[52.77472774727747,71.1572032058368],[52.77112771127713,71.1673346694561],[52.756727567275675,71.1774661330754],[52.68472684726848,71.18928617396458],[52.67032670326705,71.1960404830441],[52.65952659526596,71.21292625574293],[52.64152641526417,71.22305771936223],[52.605526055260555,71.23825491479118],[52.55872558725588,71.24838637841046],[52.5119251192512,71.25007495568036],[52.45072450724507,71.23656633752128],[52.353523535235354,71.24500922387071],[52.25632256322564,71.27371503745871],[52.22752227522275,71.28722365561777],[52.213122131221326,71.30748658285637],[52.21672216722169,71.3328152419046],[52.23112231122312,71.3429467055239],[52.25632256322564,71.34970101460343],[52.371523715237174,71.3632096327625],[52.389523895238966,71.36996394184203],[52.41112411124112,71.37671825092156],[52.46152461524616,71.37334109638178],[52.48312483124832,71.37671825092156],[52.50832508325084,71.38516113727096],[52.529925299252994,71.38853829181073],[52.64512645126453,71.38009540546133],[52.67032670326705,71.37334109638178],[52.70272702727027,71.35476674641308],[52.72072720727209,71.34970101460343],[52.73872738727388,71.3530781691432],[52.70272702727027,71.3716525191119],[52.68832688326884,71.38347256000108],[52.68832688326884,71.39698117816016],[52.709927099271,71.40711264177943],[52.74232742327425,71.40542406450956],[52.882728827288275,71.37840682819143],[52.907929079290795,71.36658678730225],[52.92232922329225,71.35645532368295],[52.94392943929441,71.3328152419046],[52.958329583295836,71.31930662374555],[52.97632976329763,71.31255231466602],[52.99432994329945,71.30579800558647],[53.01233012330124,71.29735511923707],[53.01953019530197,71.28215792380811],[53.00513005130051,71.27878076926837],[52.915129151291524,71.30917516012624],[52.90432904329043,71.31930662374555],[52.87912879128791,71.3429467055239],[52.86112861128612,71.3530781691432],[52.80352803528035,71.3716525191119],[52.77112771127713,71.37840682819143],[52.74592745927461,71.37334109638178],[52.77472774727747,71.36996394184203],[52.84672846728469,71.34632386006368],[52.87552875528755,71.3328152419046],[52.85392853928539,71.3243723555552],[52.82872828728287,71.3226837782853],[52.77832778327783,71.32606093282507],[52.77832778327783,71.31930662374555],[53.06273062730628,71.23825491479118],[53.11313113131132,71.23318918298153],[53.15633156331563,71.24332064660084],[53.13833138331384,71.25007495568036],[53.12033120331205,71.25176353295024],[53.08073080730807,71.25007495568036],[53.08073080730807,71.25682926475989],[53.09873098730989,71.26020641929964],[53.12753127531275,71.26864930564906],[53.141931419314204,71.27033788291894],[53.159931599315996,71.26864930564906],[53.192331923319244,71.26020641929964],[53.210332103321036,71.25682926475989],[53.19953199531997,71.24163206933093],[53.19593195931961,71.22643487390201],[53.20673206732067,71.2163034102827],[53.23193231932319,71.2163034102827]]],[[[78.27738277382775,72.55196803075992],[78.36738367383674,72.51144217628274],[78.39618396183965,72.49117924904414],[78.35658356583565,72.47260489907544],[78.26658266582666,72.4540305491067],[78.18018180181804,72.42194758097895],[78.07578075780759,72.3983074992006],[77.98217982179824,72.38986461285117],[77.93897938979393,72.37466741742222],[77.8129781297813,72.31556721297633],[77.76977769777699,72.30543574935703],[77.58617586175865,72.28517282211845],[77.20097200972009,72.2902385539281],[77.12537125371256,72.27841851303893],[76.91656916569167,72.29361570846785],[76.869768697687,72.30712432662693],[76.85176851768517,72.33245298567516],[76.85536855368554,72.33583014021494],[76.88416884168845,72.35947022199329],[76.9129691296913,72.37297884015234],[77.229772297723,72.46078485818626],[77.24777247772477,72.46922774453566],[77.25857258572586,72.48104778542483],[77.27657276572768,72.51819648536227],[77.31257312573126,72.54521372168037],[77.35577355773557,72.56041091710932],[77.44577445774456,72.57729668980815],[77.56817568175683,72.62795400790463],[77.61137611376114,72.63470831698416],[77.79497794977948,72.62795400790463],[78.02538025380255,72.58911673069733],[78.129781297813,72.58573957615758],[78.23058230582308,72.56885380345875],[78.27738277382775,72.55196803075992]]],[[[79.56259562595625,72.76810592130491],[79.57339573395734,72.74108868498678],[79.53739537395376,72.72589148955782],[79.39699396993973,72.70393998504935],[79.00099000990014,72.74446583952655],[78.91098910989109,72.74108868498678],[78.88218882188823,72.74615441679643],[78.79218792187925,72.77823738492418],[78.70938709387093,72.79005742581339],[78.66978669786698,72.80356604397244],[78.65538655386553,72.83058328029057],[78.65178651786516,72.8457804757195],[78.63738637386376,72.84915763025927],[78.62658626586267,72.8457804757195],[78.61578615786158,72.84071474390984],[78.61218612186121,72.83058328029057],[78.61218612186121,72.81538608486161],[78.60858608586085,72.80694319851219],[78.59778597785981,72.81538608486161],[78.58338583385836,72.84240332117975],[78.59058590585909,72.86266624841832],[78.61218612186121,72.87786344384727],[78.64098640986413,72.89137206200633],[78.66258662586625,72.8947492165461],[78.90018900189006,72.99606385273907],[79.14139141391416,73.09568991166213],[79.17379173791738,73.10075564347179],[79.2061920619206,73.09737848893204],[79.23499234992352,73.08724702531273],[79.32139321393214,73.04672117083555],[79.36819368193682,73.03490112994638],[79.38259382593827,73.02645824359695],[79.389793897939,73.01801535724755],[79.39339393393936,73.011261048168],[79.39339393393936,73.00450673908847],[79.39699396993973,72.99437527546917],[79.40059400594009,72.98762096638964],[79.4437944379444,72.96398088461129],[79.54099540995412,72.92514360740398],[79.55899558995588,72.90825783470515],[79.54099540995412,72.90994641197506],[79.5229952299523,72.9133235665148],[79.50859508595084,72.91501214378471],[79.49059490594908,72.90825783470515],[79.50859508595084,72.89812637108588],[79.51939519395194,72.88292917565693],[79.52659526595266,72.8660434029581],[79.51939519395194,72.8474690529894],[79.53019530195303,72.84071474390984],[79.53739537395376,72.83396043483032],[79.54099540995412,72.82382897121101],[79.54459544595449,72.81200893032184],[79.54459544595449,72.80863177578209],[79.53739537395376,72.80356604397244],[79.53379533795339,72.79850031216279],[79.53379533795339,72.79174600308326],[79.53739537395376,72.78499169400374],[79.54459544595449,72.77823738492418],[79.55539555395552,72.77486023038443],[79.56259562595625,72.76810592130491]]],[[[71.6677166771668,73.22739893871298],[71.6749167491675,73.2155788978238],[71.67851678516786,73.20375885693463],[71.67851678516786,73.19362739331532],[71.70731707317074,73.13452718886944],[71.75051750517505,73.0416554390259],[71.7289172891729,73.03490112994638],[71.61731617316175,73.09062417985248],[71.49491494914949,73.1497243842984],[71.37611376113762,73.1784301978864],[71.34011340113403,73.17674162061653],[71.31851318513185,73.16661015699722],[71.30051300513006,73.15141296156827],[71.2789127891279,73.14297007521887],[70.96930969309693,73.12270714798026],[70.66330663306633,73.10244422074166],[70.46170461704617,73.0517869026452],[70.25650256502567,73.03827828448613],[70.20250202502027,73.04672117083555],[70.16290162901629,73.0703612526139],[70.14130141301413,73.09062417985248],[70.1269012690127,73.09737848893204],[70.10890108901089,73.10075564347179],[70.08370083700837,73.09737848893204],[70.01530015300153,73.07204982988378],[70.0009000090001,73.0602297889946],[70.01530015300153,73.05347547991508],[70.06210062100621,73.04672117083555],[70.08370083700837,73.03827828448613],[70.10170101701019,73.02645824359695],[70.10170101701019,73.01801535724755],[70.01170011700117,73.03321255267647],[69.98289982899828,73.03321255267647],[69.93249932499324,73.02476966632707],[69.91089910899109,73.02476966632707],[69.88929889298893,73.02983539813673],[69.8748987489875,73.03827828448613],[69.87849878498787,73.05854121172473],[69.8928989289893,73.08724702531273],[69.90009900099002,73.10075564347179],[69.91089910899109,73.11426426163086],[69.93249932499324,73.13115003432969],[70.02250022500226,73.18349592969605],[70.03690036900369,73.1970045478551],[70.05130051300515,73.2155788978238],[70.06570065700657,73.23753040233228],[70.06930069300694,73.25779332957089],[70.05850058500585,73.27974483407937],[70.02250022500226,73.31013922493725],[70.01170011700117,73.33040215217585],[70.00450004500047,73.3439107703349],[69.96849968499686,73.37599373846268],[69.95769957699576,73.39963382024104],[69.98289982899828,73.40807670659044],[70.4689046890469,73.4992598791641],[70.50850508505087,73.4908169928147],[70.5229052290523,73.4806855291954],[70.56250562505625,73.4806855291954],[70.6489064890649,73.500948456434],[70.94770947709478,73.51783422913283],[71.22851228512286,73.46548833376644],[71.26811268112681,73.44353682925797],[71.23931239312395,73.43678252017844],[71.14931149311494,73.45029113833752],[71.10971109711099,73.44691398379774],[71.10971109711099,73.44015967471822],[71.12411124111242,73.42665105655914],[71.13851138511387,73.40807670659044],[71.13491134911351,73.39287951116151],[71.12411124111242,73.3810594702723],[71.10611106111062,73.37092800665303],[71.08811088110883,73.35741938849395],[71.0809108091081,73.34559934760478],[71.08451084510847,73.33209072944572],[71.08811088110883,73.32027068855655],[71.09531095310953,73.31351637947702],[71.06651066510665,73.29831918404807],[70.99810998109982,73.28818772042877],[70.98010980109802,73.26454763865041],[71.00171001710018,73.26623621592029],[71.06291062910631,73.27974483407937],[71.08451084510847,73.27974483407937],[71.14571145711457,73.27299052499981],[71.21051210512107,73.27467910226972],[71.23211232112322,73.27299052499981],[71.24651246512465,73.26792479319019],[71.27531275312754,73.25441617503111],[71.289712897129,73.25103902049136],[71.27531275312754,73.27805625680946],[71.29691296912969,73.29494202950829],[71.32931329313294,73.30676207039747],[71.40131401314014,73.31858211128664],[71.41931419314193,73.32702499763607],[71.42651426514266,73.3439107703349],[71.43731437314375,73.3523536566843],[71.4589145891459,73.34897650214455],[71.60651606516066,73.27467910226972],[71.62451624516245,73.26117048411064],[71.63171631716318,73.25103902049136],[71.6677166771668,73.22739893871298]]],[[[141.0980109801098,74.14936212806896],[141.08721087210876,74.13923066444966],[141.07641076410766,74.13247635537013],[141.0728107281073,74.12572204629058],[141.08001080010803,74.11221342813153],[141.0836108361084,74.105459119052],[141.07641076410766,74.10208196451222],[141.0728107281073,74.09870480997247],[141.06921069210694,74.09363907816282],[141.0728107281073,74.09026192362305],[141.08001080010803,74.08181903727365],[141.0836108361084,74.076753305464],[141.08001080010803,74.06493326457482],[141.07641076410766,74.05986753276517],[141.06561065610657,74.05649037822539],[141.05841058410584,74.04635891460609],[141.05481054810548,74.03791602825669],[141.05121051210511,74.02103025555786],[141.04761047610475,74.01258736920846],[141.03681036810372,74.00414448285903],[140.98640986409868,73.98557013289033],[140.939609396094,73.9771272465409],[140.84240842408423,73.9771272465409],[140.79560795607955,73.97037293746138],[140.7452074520745,73.95179858749268],[140.72360723607238,73.9501100102228],[140.67320673206734,73.9501100102228],[140.62640626406267,73.94335570114325],[140.56160561605617,73.9197156193649],[140.54360543605435,73.91633846482515],[140.4392043920439,73.90789557847572],[140.3276032760328,73.9382899693336],[140.1980019800198,74.02609598736751],[140.16560165601658,74.06999899638447],[140.1728017280173,74.10377054178213],[140.17640176401767,74.15442785987858],[140.19440194401943,74.18988798254614],[140.22320223202235,74.22028237340402],[140.34920349203492,74.25405391880167],[140.61920619206194,74.26587395969085],[140.89280892808927,74.27600542331015],[140.97920979209795,74.26249680515107],[141.05841058410584,74.23379099156307],[141.10521105211052,74.18482225073649],[141.10881108811088,74.16962505530753],[141.11241112411125,74.16624790076779],[141.0980109801098,74.14936212806896]]],[[[113.40653406534068,74.44486315029843],[113.41373413734141,74.43473168667913],[113.42093420934208,74.4161573367104],[113.4281342813428,74.40602587309112],[113.4281342813428,74.39420583220195],[113.41013410134104,74.3891401003923],[113.36333363333637,74.38238579131277],[113.36693366933673,74.35199140045486],[113.32733327333273,74.32666274140664],[113.2409324093241,74.2996455050885],[113.27333273332732,74.28782546419933],[113.28053280532805,74.2793825778499],[113.22293222932228,74.26418538242098],[113.20853208532088,74.2523653415318],[113.21933219332192,74.24561103245227],[113.15813158131584,74.22534810521367],[113.02853028530285,74.21183948705462],[112.96732967329672,74.19326513708589],[112.94932949329495,74.18313367346661],[112.91692916929168,74.15442785987858],[112.84492844928451,74.10883627359175],[112.77652776527765,74.08857334635317],[112.66852668526684,74.10714769632187],[112.57852578525785,74.10208196451222],[112.47772477724777,74.12234489175083],[112.16452164521644,74.13923066444966],[112.12132121321213,74.15105070533883],[112.04212042120423,74.18651082800636],[111.93771937719379,74.21690521886424],[111.58131581315814,74.2608082278812],[111.48411484114843,74.29289119600898],[111.45891458914588,74.31315412324756],[111.46971469714697,74.34523709137534],[111.50931509315092,74.36043428680429],[111.64611646116464,74.38069721404287],[111.7037170371704,74.37732005950312],[111.8081180811808,74.35536855499464],[111.85131851318516,74.35030282318499],[111.9017190171902,74.35536855499464],[111.95211952119524,74.37056575042357],[111.98811988119883,74.39589440947182],[111.97371973719737,74.40940302763087],[111.97371973719737,74.42122306852005],[111.98451984519846,74.43135453213935],[111.99891998919992,74.43979741848878],[112.00252002520028,74.44824030483818],[111.9809198091981,74.46512607753701],[111.97371973719737,74.47863469569606],[112.00612006120065,74.53773490014197],[112.11052110521103,74.55124351830102],[112.41292412924128,74.53266916833232],[112.75132751327516,74.49552046839489],[113.04653046530467,74.49552046839489],[113.31293312933133,74.48032327296596],[113.36693366933673,74.46681465480688],[113.40653406534068,74.44486315029843]]],[[[93.62793627936281,79.9327392774172],[93.72513725137253,79.92767354560755],[93.7719377193772,79.91754208198824],[93.81513815138152,79.89896773201954],[93.7827378273783,79.87363907297129],[93.74673746737466,79.85675330027246],[93.67113671136713,79.83142464122423],[93.46233462334624,79.80103025036632],[93.36153361533616,79.7757015913181],[93.2787327873279,79.7672587049687],[93.05193051930519,79.71491280960231],[92.62352623526237,79.67269837785526],[92.27432274322746,79.67607553239503],[91.92151921519218,79.67945268693478],[91.93591935919358,79.67945268693478],[91.94671946719467,79.68282984147456],[91.95751957519576,79.68789557328421],[91.97191971919722,79.69296130509383],[91.9287192871929,79.70646992325291],[91.91431914319145,79.70646992325291],[91.9431194311943,79.71660138687221],[92.14832148321483,79.73348715957104],[92.2059220592206,79.73011000503126],[92.28152281522819,79.71153565506256],[92.30672306723068,79.71491280960231],[92.33192331923323,79.72166711868186],[92.35352353523535,79.73348715957104],[92.32112321123213,79.7571272413494],[92.28152281522819,79.77063585950845],[92.09792097920979,79.80947313671575],[91.7559175591756,79.8229817548748],[91.41391413914141,79.83649037303388],[91.07191071910722,79.85168756846281],[91.05751057510577,79.86013045481224],[91.0647106471065,79.87701622751106],[91.08271082710826,79.88377053659059],[91.16551165511657,79.89727915474964],[91.26271262712629,79.90234488655929],[91.29871298712987,79.91923065925812],[91.23391233912338,79.9411821637666],[91.08631086310862,79.95300220465577],[91.01791017910182,79.96651082281485],[91.05031050310504,79.96651082281485],[91.15471154711548,79.9800194409739],[91.18351183511834,79.99521663640286],[91.17991179911797,80.01041383183178],[91.16191161911621,80.02729960453061],[91.13671136711366,80.04080822268969],[91.11511115111153,80.04925110903909],[91.08631086310862,80.04756253176922],[90.9891098910989,80.05600541811862],[90.89550895508955,80.05431684084874],[90.8667086670867,80.06275972719817],[90.90270902709028,80.07289119081744],[91.24831248312483,80.05600541811862],[91.59751597515975,80.03743106814991],[91.78111781117815,80.06444830446804],[92.04032040320402,80.03743106814991],[92.42552425524258,80.03067675907039],[92.64872648726487,79.98339659551368],[93.13833138331387,79.95806793646543],[93.62793627936281,79.9327392774172]]],[[[55.79515795157951,80.64194173076791],[55.748357483574836,80.65038461711734],[55.64395643956439,80.64869603984747],[55.60435604356044,80.6655818125463],[55.679956799568004,80.68753331705474],[55.705157051570524,80.69935335794392],[55.496354963549635,80.70104193521382],[55.43155431554317,80.71455055337287],[55.44235442354423,80.71961628518252],[55.49995499955,80.72805917153195],[55.546755467554675,80.73650205788135],[55.60795607956081,80.741567789691],[55.723157231572316,80.73312490334158],[55.75915759157593,80.741567789691],[55.76275762757629,80.75507640785005],[55.780757807578084,80.76183071692958],[56.15516155161552,80.77365075781879],[56.52956529565296,80.78715937597784],[56.576365763657634,80.77533933508866],[56.55836558365584,80.76351929419948],[56.569165691656934,80.75676498511996],[56.68076680766808,80.75507640785005],[56.846368463684655,80.72805917153195],[56.947169471694735,80.6942876261343],[56.93636936369364,80.68922189432465],[56.93276932769328,80.684156162515],[56.93636936369364,80.67740185343547],[56.93996939969401,80.66895896708604],[56.929169291692915,80.66220465800652],[56.626766267662674,80.64363030803781],[56.3279632796328,80.62505595806908],[56.342363423634254,80.63518742168839],[56.34956349563495,80.63856457622816],[56.31356313563137,80.65545034892699],[55.83835838358385,80.63181026714864],[55.79515795157951,80.64194173076791]]],[[[58.13158131581318,80.78040506689831],[58.08838088380884,80.78715937597784],[57.883178831788314,80.78715937597784],[57.843578435784366,80.79560226232724],[57.81477814778148,80.80911088048632],[57.843578435784366,80.82430807591524],[57.91557915579156,80.82937380772489],[57.944379443794446,80.83781669407432],[58.01638016380164,80.84119384861407],[58.1567815678157,80.87158823947198],[58.45198451984521,80.8867854349009],[58.747187471874724,80.90198263032985],[58.92718927189273,80.88171970309128],[58.95958959589598,80.87158823947198],[58.97758977589777,80.8580796213129],[59.00639006390065,80.83612811680445],[59.02799027990281,80.82430807591524],[59.01359013590138,80.82261949864537],[59.00639006390065,80.81755376683572],[58.98838988389886,80.80404514867666],[58.93438934389346,80.78040506689831],[58.89478894788948,80.77365075781879],[58.77598775987761,80.78209364416819],[58.696786967869684,80.77871648962841],[58.5419854198542,80.75507640785005],[58.41958419584196,80.74832209877053],[58.13158131581318,80.78040506689831]]],[[[55.766357663576656,80.78378222143806],[55.319953199531994,80.7516992533103],[54.877148771487725,80.7213048624524],[54.66474664746647,80.741567789691],[54.66834668346684,80.75507640785005],[54.68274682746829,80.76183071692958],[54.68994689946899,80.76858502600913],[54.67914679146793,80.78209364416819],[54.65754657546577,80.78884795324771],[54.58914589145891,80.78884795324771],[54.542345423454236,80.78040506689831],[54.27594275942761,80.78884795324771],[54.013140131401315,80.79560226232724],[53.99153991539916,80.80235657140679],[53.980739807398095,80.81586518956584],[53.98433984339843,80.82768523045502],[54.09954099540997,80.85132531223337],[54.322743227432284,80.86483393039245],[54.40554405544057,80.85132531223337],[54.72234722347224,80.87158823947198],[54.7439474394744,80.86989966220207],[54.76554765547655,80.86483393039245],[54.77274772747728,80.85639104404302],[54.75474754747549,80.84457100315385],[54.82314823148232,80.83612811680445],[54.85914859148593,80.8395052713442],[54.89154891548915,80.85132531223337],[54.952749527495286,80.88171970309128],[54.98154981549817,80.89185116671055],[55.02115021150212,80.8986054757901],[55.09675096750968,80.90198263032985],[55.25875258752589,80.89016258944068],[55.370353703537035,80.86145677585267],[55.67635676356764,80.83275096226467],[55.98595985959861,80.80404514867666],[55.931959319593204,80.79053653051761],[55.766357663576656,80.78378222143806]]],[[[58.65358653586537,81.043823121],[58.696786967869684,81.0252487710313],[58.606786067860696,80.9948543801734],[58.60318603186033,80.97459145293482],[58.55998559985602,80.95770568023599],[58.36558365583656,80.94588563934681],[58.253982539825415,80.95432852569621],[57.883178831788314,81.03031450284095],[57.839978399784,81.04720027553978],[57.843578435784366,81.05902031642896],[57.86517865178652,81.06577462550848],[58.001980019800214,81.08434897547718],[57.99117991179912,81.09785759363626],[58.01278012780128,81.10630047998566],[58.07038070380705,81.11136621179531],[58.361983619836195,81.07759466639766],[58.65358653586537,81.043823121]]],[[[57.3359733597336,80.89185116671055],[57.231572315723156,80.9070483621395],[57.199171991719936,80.90535978486963],[57.21717217172173,80.91886840302868],[57.23517235172352,80.93406559845764],[57.20277202772027,80.95432852569621],[57.14517145171453,80.96108283477577],[57.01557015570157,80.96108283477577],[56.9579695796958,80.96783714385529],[56.93276932769328,80.97459145293482],[56.91476914769149,80.98134576201434],[56.896768967689695,80.99316580290352],[56.89316893168933,81.00329726652282],[56.91836918369185,81.00836299833247],[56.896768967689695,81.01680588468187],[56.846368463684655,81.01342873014212],[56.821168211682135,81.01849446195178],[56.79956799567998,81.02693734830117],[56.47196471964722,81.06070889369883],[56.14436144361446,81.09279186182661],[56.09396093960942,81.09110328455671],[56.10116101161012,81.10123474817601],[56.10476104761048,81.10461190271579],[56.12276122761227,81.11812052087484],[56.14796147961479,81.12318625268449],[56.16956169561698,81.12149767541462],[56.22356223562235,81.10798905725554],[56.702367023670234,81.11305478906519],[56.777967779677795,81.09785759363626],[56.8319683196832,81.09279186182661],[56.94356943569437,81.07252893458801],[57.173971739717416,81.05733173915905],[57.256772567725676,81.06408604823861],[57.64557645576457,81.0235601937614],[57.65637656376563,81.02018303922165],[57.667176671766725,81.0049858437927],[57.67797677976782,80.99823153471317],[57.749977499775014,80.97121429839504],[58.01638016380164,80.94926279388656],[58.2827828278283,80.92731128937811],[58.24678246782469,80.91717982575881],[57.9659796597966,80.8884740121708],[57.87237872378725,80.8597681985828],[57.83637836378364,80.85301388950327],[57.5339753397534,80.86314535312255],[57.440374403744045,80.88340828036115],[57.3359733597336,80.89185116671055]]],[[[54.56394563945639,80.9948543801734],[54.448744487444884,80.99823153471317],[54.416344163441636,81.00836299833247],[54.42714427144273,81.0235601937614],[54.43074430744309,81.02862592557105],[54.45594455944561,81.04888885280965],[54.48834488344883,81.0539545846193],[54.52074520745208,81.05564316188918],[54.55314553145533,81.06408604823861],[54.53514535145354,81.07421751185788],[54.5459454594546,81.08434897547718],[54.64674646746468,81.12149767541462],[54.6719467194672,81.12487482995436],[54.71874718747188,81.11980909814471],[54.86274862748627,81.08434897547718],[55.319953199531994,81.05057743007953],[55.521555215552155,81.00836299833247],[55.57555575555756,81.0066744210626],[56.01836018360186,81.043823121],[56.3207632076321,81.01342873014212],[56.62316623166234,80.98134576201434],[56.651966519665194,80.94419706207694],[56.99396993969941,80.90198263032985],[57.339573395733964,80.8597681985828],[57.68157681576815,80.81755376683572],[57.699576995769974,80.80911088048632],[57.717577175771765,80.79391368505736],[57.70677706777067,80.78209364416819],[57.68517685176852,80.77702791235853],[57.63477634776348,80.77196218054888],[57.56277562775628,80.74832209877053],[57.31077310773108,80.71961628518252],[57.05877058770588,80.6925990488644],[57.00837008370084,80.69935335794392],[56.84276842768429,80.76183071692958],[56.71676716767169,80.77871648962841],[56.7059670596706,80.78209364416819],[56.695166951669535,80.78715937597784],[56.695166951669535,80.78884795324771],[56.695166951669535,80.79222510778749],[56.68796687966881,80.80066799413689],[56.669966699667015,80.80911088048632],[56.234362343623445,80.8310623849948],[55.798757987579876,80.85470246677315],[55.773557735577356,80.86145677585267],[55.76275762757629,80.87158823947198],[55.76275762757629,80.88171970309128],[55.755557555575564,80.8884740121708],[55.73755737557377,80.89185116671055],[55.546755467554675,80.8969168985202],[55.37755377553776,80.93406559845764],[55.40275402754028,80.95263994842634],[55.40635406354065,80.95770568023599],[55.39915399153992,80.96445998931551],[55.38115381153813,80.96783714385529],[55.31635316353163,80.97459145293482],[55.20835208352085,80.95432852569621],[54.99954999549996,80.95095137115646],[54.93114931149313,80.96277141204564],[54.88434884348845,80.97796860747457],[54.88074880748809,80.986411493824],[54.87354873548736,80.99316580290352],[54.86634866348663,80.99992011198304],[54.85914859148593,81.00160868925295],[54.56394563945639,80.9948543801734]]],[[[57.26757267572677,81.42713016126336],[57.0119701197012,81.43895020215257],[56.75636756367564,81.44908166577184],[56.74196741967421,81.4541473975815],[56.759967599676,81.46596743847067],[56.79236792367925,81.4727217475502],[56.93636936369364,81.4828532111695],[56.98316983169832,81.4929846747888],[57.00837008370084,81.50818187021775],[56.99036990369905,81.50987044748763],[56.97596975969762,81.5132476020274],[56.947169471694735,81.5216904883768],[57.0119701197012,81.53688768380576],[57.48357483574836,81.53351052926598],[57.515975159751605,81.54364199288528],[57.50517505175051,81.54701914742506],[57.49437494374945,81.55039630196481],[57.48357483574836,81.55208487923468],[57.51237512375124,81.56052776558411],[57.78237782377823,81.56559349739376],[57.82197821978221,81.55039630196481],[57.80397803978042,81.53857626107563],[57.79677796777969,81.53688768380576],[57.81477814778148,81.52844479745633],[57.84717847178473,81.5216904883768],[57.86517865178652,81.51662475656715],[57.857978579785794,81.5115590247575],[57.84717847178473,81.49973898386833],[57.843578435784366,81.49467325205867],[57.89037890378904,81.48623036570928],[58.14598145981461,81.47947605662975],[58.40158401584017,81.4744103248201],[58.545585455854564,81.43050731580314],[58.570785707857084,81.41362154310431],[58.51678516785168,81.40349007948501],[58.412384123841235,81.39673577040548],[58.304383043830455,81.37647284316691],[58.052380523805255,81.37816142043678],[57.79677796777969,81.37816142043678],[57.659976599766,81.40011292494526],[57.60237602376026,81.39504719313561],[57.57717577175774,81.39842434767536],[57.566375663756645,81.41531012037419],[57.56277562775628,81.42037585218384],[57.54477544775449,81.42375300672362],[57.440374403744045,81.43726162488267],[57.26757267572677,81.42713016126336]]],[[[-176.3819638196382,-43.89907480943051],[-176.38556385563857,-43.90582911851004],[-176.39276392763927,-43.909206273049804],[-176.39996399964,-43.90751769577992],[-176.40356403564036,-43.89907480943051],[-176.39996399964,-43.875434727652156],[-176.40356403564036,-43.86361468676297],[-176.41076410764109,-43.85348322314368],[-176.39276392763927,-43.84504033679426],[-176.37476374763747,-43.82646598682555],[-176.35676356763568,-43.80451448231708],[-176.35316353163532,-43.78594013234837],[-176.3711637116371,-43.765677205109775],[-176.40356403564036,-43.75892289603025],[-176.45756457564576,-43.75723431876037],[-176.51156511565117,-43.750480009680835],[-176.5367653676537,-43.75554574149048],[-176.53316533165332,-43.77918582326884],[-176.51516515165153,-43.791005864158016],[-176.42156421564215,-43.80620305958696],[-176.4971649716497,-43.851794645873795],[-176.50076500765007,-43.86361468676297],[-176.46836468364683,-43.89907480943051],[-176.46116461164613,-43.91089485031969],[-176.45756457564576,-43.92440346847875],[-176.46116461164613,-43.937912086637816],[-176.45756457564576,-43.94973212752699],[-176.43236432364324,-43.96324074568605],[-176.39636396363963,-43.937912086637816],[-176.38916389163893,-43.95986359114629],[-176.38556385563857,-43.976749363845116],[-176.3819638196382,-43.98519225019453],[-176.3639636396364,-44.00207802289336],[-176.35316353163532,-44.00883233197288],[-176.32436324363243,-44.013898063782534],[-176.31356313563137,-44.018963795592185],[-176.2991629916299,-44.04260387737054],[-176.3279632796328,-44.05104676371995],[-176.3711637116371,-44.052735340989834],[-176.39996399964,-44.056112495529604],[-176.40716407164072,-44.062866804609136],[-176.4359643596436,-44.06962111368866],[-176.46116461164613,-44.08650688638749],[-176.50436504365044,-44.101704081816436],[-176.51156511565117,-44.12196700905503],[-176.51876518765187,-44.12365558632491],[-176.579965799658,-44.12365558632491],[-176.60156601566015,-44.120278431785145],[-176.60876608766088,-44.11183554543573],[-176.61236612366125,-44.08988404092726],[-176.61956619566195,-44.07130969095854],[-176.64116641166413,-44.03247241375124],[-176.64836648366483,-44.0274066819416],[-176.65916659166592,-44.02402952740183],[-176.6627666276663,-44.018963795592185],[-176.65556655566556,-44.01220948651265],[-176.6339663396634,-44.00376660016324],[-176.57276572765727,-43.96999505476558],[-176.5619656196562,-43.95986359114629],[-176.55836558365584,-43.94973212752699],[-176.5367653676537,-43.937912086637816],[-176.51516515165153,-43.92271489120887],[-176.52236522365223,-43.89907480943051],[-176.56556565565657,-43.83828602771474],[-176.58716587165873,-43.81971167774602],[-176.61236612366125,-43.80620305958696],[-176.6231662316623,-43.80113732777731],[-176.63756637566377,-43.79944875050743],[-176.6519665196652,-43.8028259050472],[-176.6627666276663,-43.807891636856844],[-176.67356673566735,-43.809580214126726],[-176.68436684366844,-43.80620305958696],[-176.69156691566917,-43.812957368666495],[-176.68436684366844,-43.82646598682555],[-176.6951669516695,-43.82984314136532],[-176.70956709567096,-43.828154564095435],[-176.7239672396724,-43.833220295905086],[-176.75276752767527,-43.82308883228579],[-176.82476824768247,-43.83997460498462],[-176.85356853568535,-43.81971167774602],[-176.83916839168393,-43.80113732777731],[-176.8211682116821,-43.794383018697786],[-176.79956799567995,-43.791005864158016],[-176.7779677796778,-43.77918582326884],[-176.7779677796778,-43.77243151418931],[-176.78516785167852,-43.76398862783989],[-176.78516785167852,-43.75554574149048],[-176.77076770767707,-43.750480009680835],[-176.77076770767707,-43.7538571642206],[-176.74556745567455,-43.769054359649544],[-176.73476734767348,-43.77243151418931],[-176.64476644766447,-43.76398862783989],[-176.6231662316623,-43.7538571642206],[-176.61236612366125,-43.73528281425189],[-176.60876608766088,-43.71839704155306],[-176.60156601566015,-43.708265577933766],[-176.579965799658,-43.703199846124114],[-176.57276572765727,-43.704888423394],[-176.5511655116551,-43.7150198870133],[-176.54036540365405,-43.71670846428318],[-176.4971649716497,-43.7150198870133],[-176.48276482764828,-43.71670846428318],[-176.41796417964179,-43.74203712333142],[-176.39276392763927,-43.745414277871184],[-176.16956169561695,-43.731905659712126],[-176.16956169561695,-43.73697139152177],[-176.1839618396184,-43.73697139152177],[-176.19476194761947,-43.7437257006013],[-176.2019620196202,-43.75554574149048],[-176.2019620196202,-43.77243151418931],[-176.2451624516245,-43.7538571642206],[-176.28476284762849,-43.769054359649544],[-176.32076320763207,-43.80113732777731],[-176.3711637116371,-43.86192610949309],[-176.37836378363784,-43.87881188219192],[-176.3819638196382,-43.89907480943051]]],[[[148.01368013680138,-40.15043327029092],[148.01728017280175,-40.13692465213186],[148.01368013680138,-40.12003887943303],[148.0028800288003,-40.103153106734204],[147.9920799207992,-40.09302164311491],[147.97047970479707,-40.089644488575146],[147.95967959679598,-40.09133306584503],[147.95247952479525,-40.08626733403538],[147.9488794887949,-40.060938674987135],[147.94167941679416,-40.045741479558195],[147.9236792367924,-40.0356100159389],[147.9020790207902,-40.03223286139913],[147.88407884078845,-40.03054428412925],[147.88767887678875,-40.023789975049716],[147.90567905679058,-39.99001842965206],[147.90927909279094,-39.976509811493],[147.90567905679058,-39.961312616064056],[147.89127891278912,-39.93260680247605],[147.88767887678875,-39.917409607047105],[147.88047880478808,-39.89545810253863],[147.86247862478626,-39.89545810253863],[147.82647826478268,-39.91403245250734],[147.80847808478086,-39.91065529796758],[147.75807758077582,-39.878572329839805],[147.77247772477727,-39.86844086622051],[147.79767797677977,-39.84648936171203],[147.81207812078122,-39.838046475362624],[147.85527855278553,-39.82791501174332],[147.86247862478626,-39.81778354812403],[147.85527855278553,-39.797520620885436],[147.86247862478626,-39.79414346634567],[147.88047880478808,-39.78232342545649],[147.869678696787,-39.76881480729743],[147.86247862478626,-39.76037192094802],[147.86247862478626,-39.751929034598604],[147.86607866078663,-39.74348614824919],[147.87687876878772,-39.74517472551907],[147.88767887678875,-39.753617611868485],[147.89487894878948,-39.756994766408255],[147.90927909279094,-39.74855188005884],[147.95247952479525,-39.711403180121415],[148.14328143281432,-39.898835257078396],[148.14688146881468,-39.91065529796758],[148.16848168481687,-39.935983957015814],[148.21168211682118,-39.95118115244476],[148.2980829808298,-39.961312616064056],[148.29088290882908,-39.98495269784242],[148.29088290882908,-40.060938674987135],[148.2836828368284,-40.08120160222573],[148.24048240482404,-40.10653026127397],[148.22248222482227,-40.126793188512565],[148.2440824408244,-40.13354749759209],[148.26568265682658,-40.126793188512565],[148.2872828728287,-40.11497314762338],[148.2980829808298,-40.09977595219444],[148.3088830888309,-40.1132845703535],[148.319683196832,-40.13523607486198],[148.33408334083344,-40.17407335206928],[148.33048330483308,-40.19264770203799],[148.319683196832,-40.190959124768106],[148.29088290882908,-40.167319042989746],[148.2872828728287,-40.189270547498225],[148.30168301683017,-40.2010905883874],[148.32328323283235,-40.209533474736816],[148.32688326883272,-40.223042092895874],[148.3088830888309,-40.23823928832482],[148.2872828728287,-40.23148497924529],[148.26928269282695,-40.21628778381635],[148.24768247682476,-40.209533474736816],[148.22608226082264,-40.204467742927164],[148.21528215282154,-40.204467742927164],[148.20448204482045,-40.209533474736816],[148.19728197281972,-40.21797636108623],[148.19368193681936,-40.24499359740435],[148.18648186481863,-40.250059329214],[148.16848168481687,-40.25512506102365],[148.14688146881468,-40.26525652464294],[148.12528125281256,-40.270322256452594],[148.07488074880752,-40.25512506102365],[148.04968049680497,-40.24161644286458],[148.03888038880388,-40.223042092895874],[148.06048060480606,-40.20277916565728],[148.02808028080284,-40.17913908387892],[148.01368013680138,-40.16394188844998],[148.01368013680138,-40.15043327029092]]],[[[144.10404104041044,-39.89376952526875],[144.1112411124111,-39.902212411618166],[144.1220412204122,-39.90558956615793],[144.1328413284133,-39.90896672069769],[144.14004140041402,-39.91403245250734],[144.14364143641438,-39.92585249339652],[144.14364143641438,-39.935983957015814],[144.14364143641438,-39.94611542063512],[144.14004140041402,-39.981575543302654],[144.13644136441366,-39.99170700692195],[144.12924129241293,-39.99677273873159],[144.1220412204122,-40.00014989327136],[144.11844118441184,-40.01028135689066],[144.11484114841147,-40.022101397779835],[144.1112411124111,-40.03054428412925],[144.10404104041044,-40.03729859320878],[144.08244082440825,-40.045741479558195],[144.07164071640716,-40.05080721136784],[144.06444064440643,-40.05925009771725],[144.05724057240576,-40.06769298406667],[144.05004050040503,-40.07613587041608],[144.03924039240394,-40.07782444768596],[144.01764017640176,-40.08120160222573],[143.9240392403924,-40.126793188512565],[143.90243902439028,-40.126793188512565],[143.88803888038882,-40.10653026127397],[143.8808388083881,-40.09302164311491],[143.87363873638736,-40.05080721136784],[143.88803888038882,-40.05249578863772],[143.89163891638918,-40.03392143866901],[143.89163891638918,-39.99339558419183],[143.88443884438846,-39.96806692514359],[143.870038700387,-39.95624688425441],[143.85203852038524,-39.94949257517488],[143.83763837638378,-39.93429537974593],[143.83763837638378,-39.919098184316994],[143.84123841238414,-39.86506371168075],[143.84843848438487,-39.853243670791564],[143.86283862838627,-39.84311220717227],[143.86643866438664,-39.81947212539391],[143.86643866438664,-39.777257693646845],[143.86283862838627,-39.772191961837194],[143.8556385563856,-39.7620604982179],[143.85203852038524,-39.756994766408255],[143.85203852038524,-39.751929034598604],[143.86283862838627,-39.74179757097931],[143.86643866438664,-39.735043261899776],[143.85923859238596,-39.711403180121415],[143.86283862838627,-39.70127171650212],[143.87723877238773,-39.696205984692476],[143.89523895238955,-39.691140252882825],[143.91683916839168,-39.68100878926353],[143.93843938439386,-39.66750017110447],[143.94923949239495,-39.653991552945406],[143.9456394563946,-39.633728625706816],[143.93843938439386,-39.610088543928455],[143.9348393483935,-39.58813703941998],[143.9456394563946,-39.57969415307057],[143.95643956439568,-39.57800557580069],[143.97443974439744,-39.57293984399104],[143.98523985239854,-39.571251266721156],[143.99243992439926,-39.57462842126092],[144.02484024840248,-39.59995708030916],[144.06444064440643,-39.61515427573811],[144.08244082440825,-39.62697431662728],[144.0968409684097,-39.64892582113576],[144.10044100441007,-39.65568013021529],[144.1076410764108,-39.66581159383458],[144.1112411124111,-39.67763163472377],[144.10404104041044,-39.72153464374072],[144.1076410764108,-39.74686330278895],[144.1220412204122,-39.78738915726614],[144.12564125641256,-39.80765208450473],[144.1220412204122,-39.82960358901321],[144.10404104041044,-39.87181802076027],[144.10404104041044,-39.89376952526875]]],[[[138.1279812798128,-35.81585541850203],[138.12438124381242,-35.83105261393098],[138.1279812798128,-35.84962696389969],[138.12438124381242,-35.863135582058746],[138.09918099180993,-35.86988989113828],[138.08838088380884,-35.87664420021781],[138.05958059580598,-35.91041574561547],[138.0487804878049,-35.91885863196488],[138.0271802718027,-35.91885863196488],[138.00198001980021,-35.91379290015523],[137.9839798397984,-35.903661436535934],[137.95157951579517,-35.880021354757574],[137.93357933579335,-35.87495562294793],[137.91197911979123,-35.87495562294793],[137.89037890378904,-35.87833277748769],[137.87597875978759,-35.87664420021781],[137.84357843578437,-35.866512736598516],[137.82197821978218,-35.864824159328634],[137.7967779677797,-35.864824159328634],[137.75717757177574,-35.87157846840816],[137.67437674376743,-35.90197285926605],[137.62757627576275,-35.91041574561547],[137.61317613176135,-35.923924363774525],[137.60597605976062,-35.944187291013115],[137.60957609576099,-35.966138795521594],[137.61317613176135,-35.97289310460113],[137.6167761677617,-35.97627025914089],[137.62037620376202,-35.98302456822042],[137.62397623976238,-35.991467454569836],[137.62037620376202,-35.99991034091925],[137.6167761677617,-36.008353227268664],[137.60957609576099,-36.01341895907831],[137.60957609576099,-36.01848469088796],[137.60237602376026,-36.025238999967485],[137.55557555575558,-36.03537046358679],[137.49437494374945,-36.07083058625432],[137.45837458374587,-36.0826506271435],[137.4439744397444,-36.069142008984436],[137.41517415174155,-36.05563339082538],[137.37197371973718,-36.010041804538545],[137.33957339573396,-36.00159891818913],[137.28917289172892,-35.99822176364936],[137.24237242372425,-35.98302456822042],[137.2279722797228,-35.97964741368065],[137.20997209972103,-35.97964741368065],[137.18837188371884,-35.99315603183972],[137.18117181171812,-36.01341895907831],[137.17037170371702,-36.0336818863169],[137.14157141571417,-36.04212477266631],[137.12357123571235,-36.04043619539643],[137.09117091170913,-36.030304731777136],[137.0731707317073,-36.028616154507255],[137.04437044370445,-36.03537046358679],[137.029970299703,-36.0336818863169],[137.0191701917019,-36.02186184542772],[136.9507695076951,-36.04550192720608],[136.9219692196922,-36.048879081745845],[136.88956889568897,-36.04212477266631],[136.86796867968678,-36.030304731777136],[136.8607686076861,-36.028616154507255],[136.84996849968502,-36.030304731777136],[136.8319683196832,-36.04043619539643],[136.82476824768247,-36.04212477266631],[136.80316803168034,-36.04043619539643],[136.79236792367925,-36.04212477266631],[136.78516785167852,-36.04550192720608],[136.77076770767707,-36.05563339082538],[136.7635676356764,-36.05732196809526],[136.75996759967603,-36.05563339082538],[136.74556745567457,-36.05563339082538],[136.72756727567275,-36.06069912263502],[136.71676716767166,-36.06238769990491],[136.70596705967063,-36.05732196809526],[136.70596705967063,-36.03874761812655],[136.6987669876699,-36.02692757723737],[136.68436684366844,-36.006664649998775],[136.6555665556656,-35.97458168187101],[136.64116641166413,-35.967827372791476],[136.60516605166055,-35.962761640981824],[136.5907659076591,-35.9560073319023],[136.53316533165332,-35.91210432288535],[136.5367653676537,-35.90197285926605],[136.5367653676537,-35.881709932027455],[136.54036540365405,-35.86988989113828],[136.54396543965441,-35.864824159328634],[136.55116551165514,-35.861447004788864],[136.55836558365587,-35.85469269570933],[136.56196561965623,-35.8293640366611],[136.56556565565654,-35.82092115031168],[136.57276572765727,-35.81247826396227],[136.57636576365763,-35.80572395488274],[136.58356583565836,-35.79728106853332],[136.579965799658,-35.77701814129473],[136.579965799658,-35.76857525494532],[136.59796597965982,-35.75675521405614],[136.61956619566195,-35.75168948224649],[136.69156691566917,-35.74662375043684],[136.73836738367385,-35.72636082319825],[136.7671676716767,-35.72467224592837],[136.78156781567816,-35.721295091388605],[136.79596795967961,-35.7111636277693],[136.8067680676807,-35.70778647322954],[137.0731707317073,-35.672326350562],[137.0947709477095,-35.66557204148247],[137.14517145171453,-35.643620536974],[137.27837278372783,-35.616603300655875],[137.2927729277293,-35.60984899157634],[137.30357303573038,-35.598028950687166],[137.31797317973184,-35.58789748706787],[137.3359733597336,-35.58283175525822],[137.35397353973542,-35.58620890979799],[137.43677436774368,-35.60984899157634],[137.4439744397444,-35.611537568846224],[137.4547745477455,-35.60816041430646],[137.47277472774726,-35.596340373417284],[137.49077490774908,-35.596340373417284],[137.51597515975163,-35.598028950687166],[137.5339753397534,-35.596340373417284],[137.56997569975698,-35.58620890979799],[137.5879758797588,-35.58283175525822],[137.60237602376026,-35.58958606433775],[137.62397623976238,-35.58283175525822],[137.63477634776348,-35.59127464160763],[137.63477634776348,-35.60309468249681],[137.62037620376202,-35.611537568846224],[137.5987759877599,-35.616603300655875],[137.58437584375844,-35.63180049608482],[137.58077580775807,-35.64530911424388],[137.5987759877599,-35.65206342332341],[137.6311763117631,-35.65206342332341],[137.64557645576457,-35.65375200059329],[137.64917649176493,-35.658817732402945],[137.62397623976238,-35.68752354599095],[137.58077580775807,-35.72636082319825],[137.60237602376026,-35.74324659589708],[137.62397623976238,-35.74493517316696],[137.64557645576457,-35.741558018627195],[137.68517685176852,-35.75675521405614],[137.71037710377107,-35.75675521405614],[137.75357753577538,-35.74831232770673],[137.76437764377647,-35.74324659589708],[137.77157771577714,-35.739869441357314],[137.77877778777787,-35.739869441357314],[137.7859778597786,-35.74831232770673],[137.79317793177933,-35.75675521405614],[137.78957789577896,-35.76519810040555],[137.78957789577896,-35.77364098675496],[137.7859778597786,-35.785461027644146],[137.79317793177933,-35.804035377612855],[137.81117811178115,-35.81078968669239],[137.83637836378364,-35.8091011094225],[137.85437854378546,-35.802346800342974],[137.87237872378722,-35.79390391399356],[137.8831788317883,-35.778706718564614],[137.8939789397894,-35.761820945865786],[137.89757897578977,-35.74493517316696],[137.90837908379086,-35.72973797773802],[137.93717937179372,-35.72636082319825],[137.96597965979663,-35.72973797773802],[138.00558005580058,-35.739869441357314],[138.0487804878049,-35.75675521405614],[138.06318063180635,-35.761820945865786],[138.0667806678067,-35.76688667767544],[138.07398073980738,-35.798969645803204],[138.0811808118081,-35.8091011094225],[138.09558095580957,-35.81416684123215],[138.10998109981102,-35.81585541850203],[138.1279812798128,-35.81585541850203]]],[[[153.37053370533704,-24.98869796401417],[153.3741337413374,-25.012338045792525],[153.36693366933673,-25.029223818491353],[153.35613356133564,-25.04610959119018],[153.3489334893349,-25.061306786619127],[153.34533345333455,-25.081569713857718],[153.26613266132665,-25.255493172655633],[153.1617316173162,-25.463188176851205],[153.08253082530825,-25.66581744923713],[153.08613086130862,-25.691146108285373],[153.10053100531007,-25.72154049914326],[153.10053100531007,-25.757000621810796],[153.08253082530825,-25.78739501266869],[153.0537305373054,-25.797526476287985],[153.01773017730176,-25.753623467271034],[152.9997299973,-25.728294808222792],[152.99612996129963,-25.711409035523964],[153.00333003330036,-25.692834685555255],[152.98532985329854,-25.64555452199854],[152.98532985329854,-25.6202258629503],[152.95652956529568,-25.611782976600885],[152.9457294572946,-25.58307716301288],[152.94932949329495,-25.552682772154988],[152.9637296372964,-25.53748557672605],[152.98532985329854,-25.525665535836865],[152.99252992529927,-25.49527114497898],[152.9997299973,-25.4344823632632],[153.00693006930072,-25.420973745104142],[153.01773017730176,-25.412530858754728],[153.02853028530285,-25.407465126945077],[153.03573035730358,-25.399022240595663],[153.05013050130503,-25.366939272467896],[153.05733057330576,-25.355119231578712],[153.0681306813068,-25.329790572530477],[153.05733057330576,-25.27237894535446],[153.0681306813068,-25.248738863576108],[153.06093060930613,-25.236918822686924],[153.0537305373054,-25.23354166814716],[153.04653046530467,-25.23185309087728],[153.02133021330212,-25.223410204527866],[153.01773017730176,-25.223410204527866],[153.01413014130145,-25.221721627257985],[153.01413014130145,-25.21159016363869],[153.02133021330212,-25.198081545479624],[153.03933039330394,-25.182884350050678],[153.14733147331475,-25.113652681985492],[153.17973179731797,-25.08832402293725],[153.20493204932052,-25.057929632079357],[153.22653226532265,-25.02753524122147],[153.2409324093241,-24.993763695823816],[153.24813248132483,-24.954926418616516],[153.2409324093241,-24.912711986869446],[153.22293222932228,-24.88231759601156],[153.19413194131943,-24.84010316426449],[153.1617316173162,-24.813085927946368],[153.13653136531366,-24.816463082486138],[153.19413194131943,-24.748919991690826],[153.20493204932052,-24.745542837151064],[153.23373233732337,-24.721902755372703],[153.27333273332732,-24.69995125086423],[153.28053280532805,-24.6931969417847],[153.28773287732878,-24.73709995080165],[153.28053280532805,-24.8586775142332],[153.28413284132841,-24.87725186420191],[153.30213302133023,-24.929597759568274],[153.31293312933133,-24.94141780045745],[153.320133201332,-24.946483532267102],[153.359733597336,-24.975189345855107],[153.37053370533704,-24.98869796401417]]],[[[-149.18369183691837,-17.731192858058336],[-149.16209162091621,-17.756521517106577],[-149.14769147691476,-17.80211310339341],[-149.1548915489155,-17.846016112410354],[-149.1908919089191,-17.869656194188707],[-149.20529205292053,-17.866279039648944],[-149.25929259292593,-17.851081844220005],[-149.27729277292772,-17.844327535140465],[-149.30969309693097,-17.803801680663284],[-149.3348933489335,-17.75989867164634],[-149.34209342093422,-17.724438548978796],[-149.34929349293492,-17.71768423989927],[-149.35649356493565,-17.71768423989927],[-149.36369363693638,-17.724438548978796],[-149.36729367293674,-17.7345700125981],[-149.3708937089371,-17.73794716713786],[-149.39249392493926,-17.741324321677624],[-149.450094500945,-17.75989867164634],[-149.47169471694718,-17.75989867164634],[-149.4860948609486,-17.75821009437645],[-149.51849518495186,-17.746390053487275],[-149.5760957609576,-17.73794716713786],[-149.5868958689587,-17.731192858058336],[-149.60489604896048,-17.672092653612438],[-149.6120961209612,-17.663649767263024],[-149.6228962289623,-17.6568954581835],[-149.630096300963,-17.64000968548467],[-149.63729637296373,-17.619746758246066],[-149.6408964089641,-17.601172408277364],[-149.63369633696337,-17.553892244720643],[-149.60489604896048,-17.52518643113264],[-149.56529565295654,-17.5099892357037],[-149.51849518495186,-17.498169194814523],[-149.47529475294752,-17.49479204027476],[-149.42849428494284,-17.501546349354285],[-149.3888938889389,-17.518432122053113],[-149.35289352893528,-17.540383626561592],[-149.34569345693455,-17.55051509018088],[-149.3348933489335,-17.564023708339946],[-149.33129331293313,-17.579220903768885],[-149.32769327693276,-17.5977952537376],[-149.33129331293313,-17.663649767263024],[-149.32769327693276,-17.683912694501615],[-149.30249302493024,-17.71261850808962],[-149.2628926289263,-17.72274997170892],[-149.18369183691837,-17.731192858058336]]],[[[139.73359733597334,-16.44280840113784],[139.74079740797407,-16.454628442027015],[139.74079740797407,-16.473202791995718],[139.7371973719737,-16.491777141964434],[139.73359733597334,-16.5052857601235],[139.72999729997304,-16.500220028313848],[139.7227972279723,-16.490088564694545],[139.71919719197194,-16.485022832884894],[139.70839708397085,-16.495154296504197],[139.70839708397085,-16.50359718285361],[139.71199711997122,-16.512040069203024],[139.71199711997122,-16.522171532822313],[139.70839708397085,-16.527237264631964],[139.69759697596976,-16.5238601100922],[139.679596795968,-16.517105801012676],[139.6579965799658,-16.52048295555244],[139.63639636396363,-16.527237264631964],[139.61839618396186,-16.537368728251266],[139.61119611196114,-16.552565923680206],[139.60039600396004,-16.54074588279103],[139.57879578795792,-16.5052857601235],[139.5715957159572,-16.49853145104396],[139.5715957159572,-16.495154296504197],[139.5607956079561,-16.486711410154783],[139.55359553595537,-16.48333425561502],[139.549995499955,-16.48839998742467],[139.54639546395464,-16.491777141964434],[139.52839528395288,-16.512040069203024],[139.51759517595178,-16.5137286464729],[139.49239492394923,-16.515417223742787],[139.48879488794887,-16.517105801012676],[139.4851948519485,-16.528925841901852],[139.4959949599496,-16.535680150981378],[139.5067950679507,-16.53905730552114],[139.51759517595178,-16.53905730552114],[139.52839528395288,-16.54581161460068],[139.5247952479525,-16.557631655489857],[139.51399513995142,-16.56607454183927],[139.50319503195033,-16.564385964569382],[139.49239492394923,-16.55594307821997],[139.4815948159482,-16.554254500950094],[139.47439474394747,-16.557631655489857],[139.46719467194674,-16.567763119109145],[139.47439474394747,-16.598157509967038],[139.47439474394747,-16.60828897358634],[139.46719467194674,-16.615043282665866],[139.45639456394565,-16.631929055364694],[139.45639456394565,-16.635306209904456],[139.45999459994601,-16.640371941714108],[139.4527945279453,-16.652191982603284],[139.44559445594456,-16.66401202349246],[139.43479434794347,-16.669077755302112],[139.42399423994243,-16.66570060076235],[139.40959409594097,-16.64543767352376],[139.39879398793988,-16.642060518983996],[139.38439384393843,-16.65050340533341],[139.3735937359374,-16.689340682540703],[139.35919359193593,-16.697783568890117],[139.3411934119341,-16.70116072342988],[139.319593195932,-16.718046496128707],[139.30159301593017,-16.724800805208247],[139.23679236792367,-16.724800805208247],[139.22599225992263,-16.721423650668484],[139.2187921879219,-16.709603609779293],[139.189991899919,-16.672454909841875],[139.17919179191796,-16.662323446222587],[139.18279182791827,-16.682586373461177],[139.18639186391863,-16.71129218704918],[139.18279182791827,-16.73324369155766],[139.17199171991723,-16.731555114287772],[139.1647916479165,-16.745063732446837],[139.1539915399154,-16.755195196066126],[139.14319143191432,-16.755195196066126],[139.14319143191432,-16.72648938247812],[139.1359913599136,-16.70791503250942],[139.1359913599136,-16.697783568890117],[139.13959139591395,-16.69102925981059],[139.14679146791468,-16.682586373461177],[139.1539915399154,-16.672454909841875],[139.15759157591577,-16.658946291682824],[139.16119161191614,-16.635306209904456],[139.1647916479165,-16.616731859935754],[139.17199171991723,-16.599846087236926],[139.18639186391863,-16.58802604634775],[139.2079920799208,-16.569451696379033],[139.21519215192154,-16.55594307821997],[139.2187921879219,-16.535680150981378],[139.22239222392227,-16.52554868736209],[139.229592295923,-16.51879437828255],[139.24039240392403,-16.5137286464729],[139.25119251192513,-16.512040069203024],[139.25839258392585,-16.506974337393373],[139.27999279992804,-16.479957101075257],[139.2871928719287,-16.469825637455955],[139.3087930879309,-16.46138275110654],[139.33039330393308,-16.458005596566778],[139.3735937359374,-16.458005596566778],[139.48879488794887,-16.434365514788425],[139.54639546395464,-16.402282546660643],[139.58239582395822,-16.395528237581118],[139.6039960399604,-16.39890539212088],[139.6147961479615,-16.405659701200406],[139.61839618396186,-16.417479742089597],[139.62919629196296,-16.429299782978774],[139.64359643596435,-16.437742669328188],[139.66159661596618,-16.44111982386795],[139.69759697596976,-16.44280840113784],[139.69759697596976,-16.447874132947476],[139.6939969399694,-16.459694173836652],[139.69039690396903,-16.46307132837643],[139.70839708397085,-16.468137060186066],[139.71919719197194,-16.458005596566778],[139.7227972279723,-16.444496978407713],[139.73359733597334,-16.44280840113784]]],[[[136.9507695076951,-14.181803436764895],[136.94716947169474,-14.183492014034783],[136.94356943569437,-14.181803436764895],[136.939969399694,-14.181803436764895],[136.93636936369364,-14.188557745844435],[136.93636936369364,-14.197000632193848],[136.94356943569437,-14.207132095813137],[136.94356943569437,-14.212197827622788],[136.94716947169474,-14.21557498216255],[136.95436954369546,-14.224017868511964],[136.95796957969583,-14.232460754861378],[136.95436954369546,-14.23752648667103],[136.939969399694,-14.24259221848068],[136.93636936369364,-14.254412259369857],[136.94356943569437,-14.267920877528923],[136.9507695076951,-14.27805234114821],[136.939969399694,-14.274675186608448],[136.93276932769328,-14.276363763878336],[136.93276932769328,-14.283118072957862],[136.93636936369364,-14.291560959307276],[136.92556925569255,-14.283118072957862],[136.91476914769152,-14.2797409184181],[136.9075690756908,-14.28480665022775],[136.90396903969042,-14.298315268386801],[136.86796867968678,-14.2797409184181],[136.84996849968502,-14.276363763878336],[136.83556835568356,-14.28480665022775],[136.82476824768247,-14.274675186608448],[136.80316803168034,-14.267920877528923],[136.7635676356764,-14.264543722989146],[136.74556745567457,-14.25778941390962],[136.73476734767348,-14.256100836639732],[136.72036720367203,-14.261166568449383],[136.68076680766808,-14.28480665022775],[136.64116641166413,-14.2797409184181],[136.46116461164615,-14.21557498216255],[136.45396453964543,-14.213886404892676],[136.4359643596436,-14.198689209463723],[136.4251642516425,-14.19531205492396],[136.41436414364142,-14.197000632193848],[136.3819638196382,-14.207132095813137],[136.3567635676357,-14.225706445781853],[136.34236342363425,-14.230772177591504],[136.3387633876339,-14.230772177591504],[136.33156331563316,-14.232460754861378],[136.32436324363243,-14.229083600321616],[136.3279632796328,-14.21557498216255],[136.33516335163353,-14.208820673083025],[136.3567635676357,-14.197000632193848],[136.36756367563675,-14.188557745844435],[136.39996399964002,-14.176737704955258],[136.4107641076411,-14.166606241335955],[136.42156421564215,-14.139589005017825],[136.43236432364324,-14.129457541398537],[136.4359643596436,-14.121014655049123],[136.43236432364324,-14.109194614159946],[136.42156421564215,-14.088931686921356],[136.41436414364142,-14.056848718793574],[136.4107641076411,-13.997748514347691],[136.4107641076411,-13.96566554621991],[136.4251642516425,-13.9082539190439],[136.42876428764288,-13.877859528186008],[136.4251642516425,-13.864350910026957],[136.41436414364142,-13.849153714598003],[136.40716407164075,-13.832267941899175],[136.4107641076411,-13.818759323740125],[136.4251642516425,-13.81031643739071],[136.43956439564397,-13.817070746470236],[136.46476464764646,-13.839022250978715],[136.4719647196472,-13.833956519169064],[136.49716497164974,-13.833956519169064],[136.5115651156512,-13.833956519169064],[136.5259652596526,-13.818759323740125],[136.51876518765187,-13.80525070558106],[136.52956529565296,-13.786676355612343],[136.5367653676537,-13.790053510152106],[136.54756547565478,-13.81031643739071],[136.56196561965623,-13.820447901009999],[136.57276572765727,-13.79849639650152],[136.579965799658,-13.803562128311171],[136.59436594365945,-13.812005014660585],[136.59436594365945,-13.784987778342469],[136.6087660876609,-13.791742087421994],[136.6231662316623,-13.788364932882232],[136.63036630366304,-13.776544891993055],[136.61596615966158,-13.76303627383399],[136.6087660876609,-13.771479160183404],[136.60156601566018,-13.754593387484576],[136.60156601566018,-13.737707614785748],[136.59436594365945,-13.724198996626683],[136.57276572765727,-13.724198996626683],[136.579965799658,-13.714067533007395],[136.58356583565836,-13.703936069388092],[136.579965799658,-13.697181760308567],[136.56556565565654,-13.695493183038678],[136.57276572765727,-13.687050296689264],[136.579965799658,-13.681984564879613],[136.5907659076591,-13.680295987609739],[136.60156601566018,-13.681984564879613],[136.61596615966158,-13.68536171941939],[136.61956619566195,-13.688738873959153],[136.61596615966158,-13.692116028498916],[136.61596615966158,-13.695493183038678],[136.61596615966158,-13.70055891484833],[136.61596615966158,-13.712378955737506],[136.61596615966158,-13.715756110277269],[136.61956619566195,-13.717444687547157],[136.62676626766267,-13.715756110277269],[136.63036630366304,-13.710690378467632],[136.63036630366304,-13.709001801197743],[136.6339663396634,-13.70562464665798],[136.63756637566377,-13.70055891484833],[136.6447664476645,-13.697181760308567],[136.6555665556656,-13.702247492118218],[136.67356673566735,-13.675230255800088],[136.67716677166771,-13.6650987921808],[136.68076680766808,-13.656655905831386],[136.70596705967063,-13.656655905831386],[136.71676716767166,-13.648213019481972],[136.7239672396724,-13.6650987921808],[136.7239672396724,-13.687050296689264],[136.71316713167136,-13.707313223927855],[136.68436684366844,-13.72082184208692],[136.67716677166771,-13.730953305706223],[136.67716677166771,-13.744461923865273],[136.68076680766808,-13.754593387484576],[136.69156691566917,-13.761347696564101],[136.70236702367026,-13.76303627383399],[136.71316713167136,-13.76303627383399],[136.7239672396724,-13.76303627383399],[136.72036720367203,-13.771479160183404],[136.70596705967063,-13.791742087421994],[136.71316713167136,-13.806939282850934],[136.71316713167136,-13.818759323740125],[136.71676716767166,-13.828890787359413],[136.73116731167312,-13.839022250978715],[136.74556745567457,-13.844087982788352],[136.79596795967961,-13.852530869137766],[136.81396813968144,-13.849153714598003],[136.82836828368283,-13.84071082824859],[136.83916839168393,-13.82551363281965],[136.8427684276843,-13.808627860120822],[136.83916839168393,-13.801873551041297],[136.8319683196832,-13.796807819231645],[136.82476824768247,-13.79849639650152],[136.81756817568174,-13.800184973771408],[136.82476824768247,-13.795119241961757],[136.82836828368283,-13.791742087421994],[136.8427684276843,-13.749527655674925],[136.85716857168575,-13.757970542024339],[136.8859688596886,-13.752904810214687],[136.90396903969042,-13.757970542024339],[136.9075690756908,-13.764724851103878],[136.91836918369182,-13.77823346926293],[136.9219692196922,-13.793430664691883],[136.92556925569255,-13.80525070558106],[136.91476914769152,-13.817070746470236],[136.8859688596886,-13.84577656005824],[136.8751687516875,-13.859285178217306],[136.85716857168575,-13.915008228123426],[136.8211682116821,-13.904876764504138],[136.79236792367925,-13.918385382663203],[136.7671676716767,-13.94540261898132],[136.75996759967603,-13.977485587109086],[136.7635676356764,-13.996059937077803],[136.77076770767707,-14.004502823427217],[136.78156781567816,-14.009568555236868],[136.79236792367925,-14.018011441586282],[136.79596795967961,-14.018011441586282],[136.8067680676807,-14.023077173395919],[136.81036810368107,-14.029831482475458],[136.80316803168034,-14.031520059745333],[136.79596795967961,-14.033208637015221],[136.7887678876789,-14.036585791554984],[136.78156781567816,-14.043340100634524],[136.78156781567816,-14.051782986983937],[136.7635676356764,-14.045028677904398],[136.7527675276753,-14.051782986983937],[136.74916749167494,-14.063603027873114],[136.7527675276753,-14.078800223302053],[136.7419674196742,-14.066980182412877],[136.73116731167312,-14.061914450603226],[136.71676716767166,-14.063603027873114],[136.70596705967063,-14.073734491492402],[136.709567095671,-14.085554532381579],[136.709567095671,-14.099063150540644],[136.70596705967063,-14.126080386858774],[136.71676716767166,-14.166606241335955],[136.71676716767166,-14.178426282225132],[136.7239672396724,-14.185180591304658],[136.73476734767348,-14.188557745844435],[136.7527675276753,-14.190246323114309],[136.78156781567816,-14.186869168574546],[136.78516785167852,-14.186869168574546],[136.78156781567816,-14.18011485949502],[136.78156781567816,-14.164917664066067],[136.7887678876789,-14.149720468637128],[136.81036810368107,-14.15985193225643],[136.87156871568715,-14.207132095813137],[136.88236882368824,-14.208820673083025],[136.89316893168933,-14.198689209463723],[136.90036900369006,-14.188557745844435],[136.9075690756908,-14.176737704955258],[136.91476914769152,-14.163229086796193],[136.91836918369182,-14.14803189136724],[136.92556925569255,-14.14803189136724],[136.93636936369364,-14.154786200446779],[136.94716947169474,-14.154786200446779],[136.96516965169656,-14.149720468637128],[136.97956979569796,-14.14803189136724],[136.96876968769686,-14.154786200446779],[136.9615696156962,-14.164917664066067],[136.9507695076951,-14.181803436764895]]],[[[-172.20232202322023,-13.592489969575837],[-172.19872198721987,-13.60262143319514],[-172.1951219512195,-13.614441474084316],[-172.1951219512195,-13.63639297859278],[-172.19152191521914,-13.656655905831386],[-172.18072180721808,-13.668475946720562],[-172.1771217712177,-13.680295987609739],[-172.18072180721808,-13.702247492118218],[-172.19152191521914,-13.717444687547157],[-172.20232202322023,-13.730953305706223],[-172.21312213122133,-13.744461923865273],[-172.21672216722166,-13.768102005643641],[-172.21312213122133,-13.790053510152106],[-172.21312213122133,-13.800184973771408],[-172.22032220322203,-13.80525070558106],[-172.24192241922418,-13.80525070558106],[-172.25272252722527,-13.803562128311171],[-172.26352263522637,-13.79849639650152],[-172.2779227792278,-13.784987778342469],[-172.28872288722886,-13.774856314723166],[-172.29592295922959,-13.769790582913515],[-172.31752317523174,-13.771479160183404],[-172.36792367923678,-13.788364932882232],[-172.52272522725227,-13.80525070558106],[-172.53352533525336,-13.79849639650152],[-172.54432544325442,-13.784987778342469],[-172.55152551525515,-13.77823346926293],[-172.5659256592566,-13.768102005643641],[-172.57672576725767,-13.76303627383399],[-172.57672576725767,-13.754593387484576],[-172.58032580325803,-13.744461923865273],[-172.5911259112591,-13.724198996626683],[-172.5911259112591,-13.712378955737506],[-172.59832598325983,-13.70055891484833],[-172.60912609126092,-13.693804605768804],[-172.62352623526235,-13.687050296689264],[-172.63432634326344,-13.681984564879613],[-172.6559265592656,-13.649901596751846],[-172.6667266672667,-13.634704401322907],[-172.69192691926918,-13.624572937703604],[-172.70272702727027,-13.61613005135419],[-172.71712717127173,-13.60262143319514],[-172.72072720727206,-13.597555701385488],[-172.72432724327243,-13.587424237766186],[-172.72432724327243,-13.582358505956535],[-172.73152731527315,-13.578981351416772],[-172.74592745927458,-13.58066992868666],[-172.74952749527495,-13.578981351416772],[-172.76032760327604,-13.565472733257721],[-172.77472774727747,-13.541832651479353],[-172.7819278192782,-13.519881146970874],[-172.76752767527674,-13.509749683351586],[-172.73152731527315,-13.509749683351586],[-172.69552695526954,-13.524946878780526],[-172.65952659526596,-13.524946878780526],[-172.6379263792638,-13.521569724240763],[-172.61632616326165,-13.509749683351586],[-172.60552605526055,-13.506372528811823],[-172.58032580325803,-13.504683951541935],[-172.56952569525694,-13.501306797002172],[-172.54072540725406,-13.487798178843107],[-172.529925299253,-13.484421024303344],[-172.45072450724507,-13.484421024303344],[-172.43272432724328,-13.481043869763582],[-172.38952389523894,-13.467535251604517],[-172.36792367923678,-13.462469519794865],[-172.34272342723426,-13.462469519794865],[-172.3211232112321,-13.467535251604517],[-172.29952299522995,-13.47597813795393],[-172.28152281522816,-13.492863910652758],[-172.2239222392224,-13.558718424178181],[-172.22032220322203,-13.562095578717944],[-172.2239222392224,-13.57391561960712],[-172.2239222392224,-13.578981351416772],[-172.21672216722166,-13.582358505956535],[-172.2059220592206,-13.587424237766186],[-172.20232202322023,-13.592489969575837]]],[[[160.50220502205025,-11.736743549974747],[160.56340563405638,-11.772203672642291],[160.58140581405814,-11.794155177150756],[160.55980559805602,-11.811040949849584],[160.54540545405456,-11.811040949849584],[160.53820538205383,-11.807663795309821],[160.5310053100531,-11.805975218039947],[160.51660516605165,-11.811040949849584],[160.51300513005134,-11.817795258929124],[160.5058050580506,-11.838058186167714],[160.49860498604988,-11.846501072517128],[160.48420484204843,-11.84481249524724],[160.46980469804697,-11.831303877088189],[160.45900459004594,-11.814418104389361],[160.44820448204484,-11.804286640770059],[160.4338043380434,-11.811040949849584],[160.43020430204302,-11.811040949849584],[160.4230042300423,-11.80935237257971],[160.3870038700387,-11.784023713531468],[160.37980379803798,-11.777269404451943],[160.3690036900369,-11.735054972704873],[160.36180361803622,-11.716480622736157],[160.34020340203404,-11.701283427307217],[160.32940329403294,-11.697906272767455],[160.30780307803082,-11.696217695497566],[160.29700297002972,-11.694529118227678],[160.28620286202863,-11.687774809148152],[160.28260282602827,-11.681020500068627],[160.28620286202863,-11.674266190989087],[160.28620286202863,-11.667511881909562],[160.28260282602827,-11.65738041829026],[160.28620286202863,-11.648937531940845],[160.28260282602827,-11.64218322286132],[160.27180271802717,-11.633740336511906],[160.26100261002614,-11.628674604702255],[160.25020250202505,-11.62698602743238],[160.23940239402395,-11.625297450162492],[160.23220232202323,-11.62698602743238],[160.2250022500225,-11.630363181972143],[160.21780217802177,-11.647248954670971],[160.2106021060211,-11.654003263750496],[160.19980199802,-11.655691841020385],[160.18900189001891,-11.655691841020385],[160.16740167401673,-11.654003263750496],[160.15300153001533,-11.647248954670971],[160.11340113401133,-11.625297450162492],[160.0918009180092,-11.62023171835284],[160.09900099000993,-11.608411677463664],[160.09900099000993,-11.605034522923901],[160.0810008100081,-11.591525904764836],[160.06660066600665,-11.593214482034725],[160.05220052200525,-11.59996879111425],[160.04140041400416,-11.605034522923901],[160.02340023400234,-11.59996879111425],[160.00900009000094,-11.589837327494962],[159.98019980199803,-11.554377204827418],[159.97659976599766,-11.540868586668353],[159.9729997299973,-11.534114277588827],[159.96579965799657,-11.525671391239413],[159.9621996219962,-11.520605659429762],[159.96939969399693,-11.503719886730934],[159.97659976599766,-11.491899845841758],[159.99459994599948,-11.473325495873056],[160.0018000180002,-11.461505454983865],[160.00540005400057,-11.464882609523642],[160.00900009000094,-11.466571186793516],[160.01260012600125,-11.466571186793516],[160.0162001620016,-11.468259764063404],[160.03060030600307,-11.483456959492344],[160.04140041400416,-11.490211268571883],[160.05220052200525,-11.49527700038152],[160.0630006300063,-11.49527700038152],[160.08820088200883,-11.49527700038152],[160.09540095400956,-11.498654154921297],[160.1170011700117,-11.51722850489],[160.13860138601387,-11.529048545779176],[160.19260192601928,-11.556065782097306],[160.22140221402213,-11.578017286605771],[160.25740257402578,-11.594903059304599],[160.28620286202863,-11.616854563813078],[160.30780307803082,-11.62698602743238],[160.35100351003513,-11.640494645591431],[160.39420394203944,-11.65738041829026],[160.50220502205025,-11.736743549974747]]],[[[130.53550535505354,-11.70466058184698],[130.549905499055,-11.701283427307217],[130.57510575105755,-11.714792045466282],[130.61830618306186,-11.748563590863924],[130.63270632706326,-11.762072209022989],[130.63630636306362,-11.768826518102529],[130.63270632706326,-11.78740086807123],[130.6291062910629,-11.804286640770059],[130.61830618306186,-11.812729527119473],[130.57150571505719,-11.831303877088189],[130.52110521105215,-11.8296152998183],[130.4959049590496,-11.839746763437603],[130.4707047070471,-11.82454956800865],[130.43830438304383,-11.811040949849584],[130.4059040590406,-11.80259806350017],[130.3771037710377,-11.797532331690533],[130.35910359103593,-11.794155177150756],[130.33750337503375,-11.773892249912166],[130.31950319503198,-11.770515095372403],[130.30510305103053,-11.772203672642291],[130.27990279902798,-11.78233513626158],[130.23670236702367,-11.78908944534112],[130.14670146701468,-11.82454956800865],[130.11790117901182,-11.827926722548412],[130.08550085500855,-11.827926722548412],[130.05310053100533,-11.822860990738775],[130.03870038700387,-11.811040949849584],[130.02430024300241,-11.795843754420645],[130.01710017100174,-11.785712290801357],[130.01710017100174,-11.777269404451943],[130.02430024300241,-11.762072209022989],[130.03150031500314,-11.758695054483226],[130.05310053100533,-11.763760786292877],[130.07110071100715,-11.755317899943464],[130.07110071100715,-11.736743549974747],[130.06390063900642,-11.691151963687915],[130.07110071100715,-11.670889036449324],[130.0891008910089,-11.674266190989087],[130.11790117901182,-11.694529118227678],[130.14670146701468,-11.699594850037329],[130.16830168301686,-11.692840540957803],[130.18630186301863,-11.675954768258975],[130.20070200702008,-11.654003263750496],[130.19350193501936,-11.630363181972143],[130.18270182701826,-11.547622895747892],[130.19350193501936,-11.534114277588827],[130.19710197101972,-11.520605659429762],[130.19710197101972,-11.507097041270711],[130.19350193501936,-11.49527700038152],[130.18630186301863,-11.486834114032106],[130.17550175501754,-11.483456959492344],[130.1647016470165,-11.485145536762232],[130.14670146701468,-11.488522691301995],[130.17190171901723,-11.446308259554925],[130.18270182701826,-11.434488218665749],[130.19350193501936,-11.424356755046446],[130.2187021870219,-11.409159559617507],[130.22950229502294,-11.399028095998219],[130.25830258302585,-11.348370777901735],[130.26910269102694,-11.338239314282433],[130.29070290702907,-11.333173582472782],[130.3087030870309,-11.333173582472782],[130.32670326703266,-11.329796427933019],[130.34470344703448,-11.316287809773954],[130.34830348303484,-11.339927891552321],[130.35910359103593,-11.366945127870437],[130.3735037350374,-11.393962364188567],[130.39870398703988,-11.43279964139586],[130.39870398703988,-11.444619682285051],[130.3879038790388,-11.468259764063404],[130.38430384303842,-11.485145536762232],[130.3879038790388,-11.518917082159888],[130.39510395103952,-11.534114277588827],[130.44550445504456,-11.567885822986483],[130.459904599046,-11.591525904764836],[130.46350463504638,-11.62023171835284],[130.46350463504638,-11.650626109210734],[130.45630456304565,-11.675954768258975],[130.44910449104492,-11.694529118227678],[130.44910449104492,-11.701283427307217],[130.459904599046,-11.697906272767455],[130.46710467104674,-11.692840540957803],[130.47430474304747,-11.68946338641804],[130.4851048510485,-11.687774809148152],[130.49950499504996,-11.68946338641804],[130.53190531905318,-11.699594850037329],[130.53550535505354,-11.70466058184698]]],[[[153.76293762937632,-11.586460172955185],[153.7665376653767,-11.588148750225074],[153.77373773737736,-11.591525904764836],[153.77733777337772,-11.593214482034725],[153.7809378093781,-11.598280213844376],[153.77733777337772,-11.608411677463664],[153.77373773737736,-11.611788832003427],[153.7665376653767,-11.610100254733553],[153.76293762937632,-11.605034522923901],[153.75213752137523,-11.610100254733553],[153.74853748537487,-11.611788832003427],[153.74133741337414,-11.610100254733553],[153.7341373413734,-11.605034522923901],[153.72333723337232,-11.613477409273315],[153.70893708937092,-11.618543141082966],[153.69813698136983,-11.618543141082966],[153.68373683736837,-11.611788832003427],[153.680136801368,-11.625297450162492],[153.67653676536764,-11.625297450162492],[153.66933669336697,-11.62192029562273],[153.66213662136624,-11.62023171835284],[153.61533615336157,-11.62023171835284],[153.6117361173612,-11.618543141082966],[153.60813608136084,-11.611788832003427],[153.60453604536048,-11.611788832003427],[153.59733597335975,-11.615165986543204],[153.59013590135902,-11.623608872892603],[153.58653586535866,-11.62698602743238],[153.57573575735756,-11.630363181972143],[153.56493564935653,-11.637117491051669],[153.55413554135544,-11.635428913781794],[153.55053550535507,-11.62023171835284],[153.5577355773558,-11.62023171835284],[153.56493564935653,-11.618543141082966],[153.5721357213572,-11.613477409273315],[153.5685356853569,-11.605034522923901],[153.56493564935653,-11.59996879111425],[153.5577355773558,-11.59996879111425],[153.5469354693547,-11.603345945654013],[153.53973539735398,-11.605034522923901],[153.5289352893529,-11.601657368384139],[153.52533525335252,-11.594903059304599],[153.52173521735216,-11.588148750225074],[153.51813518135185,-11.586460172955185],[153.50733507335076,-11.588148750225074],[153.50013500135003,-11.589837327494962],[153.48933489334894,-11.591525904764836],[153.47853478534785,-11.586460172955185],[153.4821348213482,-11.581394441145548],[153.48573485734858,-11.571262977526246],[153.47853478534785,-11.569574400256357],[153.47493474934748,-11.566197245716594],[153.47133471334712,-11.561131513906957],[153.47133471334712,-11.551000050287655],[153.46413464134645,-11.55775435936718],[153.45333453334536,-11.567885822986483],[153.44613446134463,-11.574640132066008],[153.43533435334353,-11.578017286605771],[153.39933399333995,-11.55775435936718],[153.38133381333813,-11.566197245716594],[153.3741337413374,-11.559442936637069],[153.37053370533704,-11.54424574120813],[153.37053370533704,-11.530737123049065],[153.37773377733777,-11.52229423669965],[153.3849338493385,-11.513851350350237],[153.39213392133922,-11.505408464000823],[153.3849338493385,-11.49527700038152],[153.3741337413374,-11.490211268571883],[153.36693366933673,-11.493588423111646],[153.36693366933673,-11.500342732191172],[153.359733597336,-11.503719886730934],[153.35253352533528,-11.500342732191172],[153.3489334893349,-11.496965577651409],[153.34173341733418,-11.488522691301995],[153.32733327333273,-11.493588423111646],[153.31293312933133,-11.503719886730934],[153.28773287732878,-11.52229423669965],[153.28413284132841,-11.50203130946106],[153.32373323733236,-11.485145536762232],[153.32373323733236,-11.468259764063404],[153.31293312933133,-11.463194032253753],[153.29133291332914,-11.463194032253753],[153.28053280532805,-11.461505454983865],[153.27333273332732,-11.453062568634465],[153.25893258932592,-11.434488218665749],[153.2517325173252,-11.424356755046446],[153.24453244532447,-11.422668177776572],[153.23373233732337,-11.426045332316335],[153.230132301323,-11.426045332316335],[153.22653226532265,-11.41760244596692],[153.230132301323,-11.395650941458442],[153.230132301323,-11.388896632378916],[153.2157321573216,-11.385519477839154],[153.20853208532088,-11.383830900569265],[153.20133201332015,-11.375388014219851],[153.19413194131943,-11.368633705140326],[153.19053190531906,-11.361879396060786],[153.19413194131943,-11.35005935517161],[153.1977319773198,-11.338239314282433],[153.20493204932052,-11.316287809773954],[153.25893258932592,-11.353436509711372],[153.2769327693277,-11.358502241521023],[153.2949329493295,-11.353436509711372],[153.3057330573306,-11.353436509711372],[153.31293312933133,-11.3703222824102],[153.320133201332,-11.373699436949977],[153.3309333093331,-11.375388014219851],[153.34173341733418,-11.378765168759614],[153.36693366933673,-11.395650941458442],[153.37773377733777,-11.399028095998219],[153.39933399333995,-11.404093827807856],[153.41013410134104,-11.407470982347618],[153.4389343893439,-11.431111064125986],[153.50013500135003,-11.45475114590434],[153.5469354693547,-11.485145536762232],[153.5577355773558,-11.488522691301995],[153.57933579335793,-11.490211268571883],[153.69453694536946,-11.520605659429762],[153.70533705337056,-11.527359968509302],[153.70893708937092,-11.53749143212859],[153.71613716137165,-11.547622895747892],[153.72693726937268,-11.554377204827418],[153.74853748537487,-11.561131513906957],[153.75213752137523,-11.567885822986483],[153.76293762937632,-11.586460172955185]]],[[[131.53631536315362,-11.41253671415727],[131.53991539915398,-11.446308259554925],[131.53631536315362,-11.463194032253753],[131.52911529115295,-11.47501407314293],[131.51831518315186,-11.478391227682692],[131.49671496714967,-11.471636918603167],[131.48231482314822,-11.47501407314293],[131.47151471514718,-11.493588423111646],[131.4607146071461,-11.527359968509302],[131.45711457114572,-11.562820091176832],[131.46791467914682,-11.586460172955185],[131.46791467914682,-11.578017286605771],[131.47511475114754,-11.59996879111425],[131.45711457114572,-11.608411677463664],[131.43191431914317,-11.60672310019379],[131.42111421114214,-11.601657368384139],[131.41751417514178,-11.596591636574487],[131.3959139591396,-11.581394441145548],[131.3851138511385,-11.578017286605771],[131.37791377913783,-11.58477159568531],[131.3275132751328,-11.682709077338501],[131.30231302313024,-11.701283427307217],[131.29151291512915,-11.723234931815696],[131.28071280712805,-11.728300663625333],[131.26991269912702,-11.728300663625333],[131.25911259112593,-11.729989240895222],[131.23031230312301,-11.745186436324161],[131.21591215912161,-11.757006477213338],[131.2087120871209,-11.76713794083264],[131.20151201512016,-11.775580827182054],[131.10071100711008,-11.827926722548412],[130.97830978309787,-11.925864204201616],[130.96030960309605,-11.93430709055103],[130.94230942309423,-11.92755278147149],[130.9207092070921,-11.900535545153375],[130.89550895508955,-11.878584040644895],[130.85950859508597,-11.860009690676193],[130.80910809108093,-11.843123917977366],[130.7587075870759,-11.814418104389361],[130.75150751507516,-11.811040949849584],[130.73350733507334,-11.807663795309821],[130.7119071190712,-11.799220908960407],[130.69030690306903,-11.78908944534112],[130.67590675906763,-11.777269404451943],[130.67230672306727,-11.772203672642291],[130.6831068310683,-11.76713794083264],[130.67950679506794,-11.763760786292877],[130.67590675906763,-11.760383631753115],[130.66510665106654,-11.758695054483226],[130.66150661506617,-11.757006477213338],[130.61110611106113,-11.716480622736157],[130.58230582305822,-11.697906272767455],[130.57510575105755,-11.68946338641804],[130.56430564305646,-11.672577613719213],[130.55710557105573,-11.667511881909562],[130.5391053910539,-11.660757572830036],[130.51390513905142,-11.65738041829026],[130.4959049590496,-11.648937531940845],[130.48870488704887,-11.630363181972143],[130.4851048510485,-11.562820091176832],[130.48150481504814,-11.54424574120813],[130.47790477904778,-11.540868586668353],[130.46710467104674,-11.534114277588827],[130.459904599046,-11.530737123049065],[130.43830438304383,-11.498654154921297],[130.4311043110431,-11.485145536762232],[130.40950409504097,-11.375388014219851],[130.4059040590406,-11.35512508698126],[130.4059040590406,-11.35005935517161],[130.39870398703988,-11.346682200631847],[130.39510395103952,-11.343305046092084],[130.39150391503915,-11.33486215974267],[130.39510395103952,-11.323042118853493],[130.39510395103952,-11.31459923250408],[130.39870398703988,-11.304467768884777],[130.4059040590406,-11.296024882535363],[130.38070380703806,-11.269007646217247],[130.36990369903702,-11.25212187351842],[130.36630366303666,-11.231858946279829],[130.36630366303666,-11.204841709961698],[130.3735037350374,-11.184578782723108],[130.38430384303842,-11.16769301002428],[130.39870398703988,-11.15249581459534],[130.43470434704346,-11.203153132691824],[130.5067050670507,-11.277450532566661],[130.51750517505178,-11.296024882535363],[130.5247052470525,-11.289270573455838],[130.53550535505354,-11.280827687106424],[130.54630546305464,-11.27238480075701],[130.55710557105573,-11.270696223487121],[130.57510575105755,-11.275761955296772],[130.58590585905858,-11.28758199618595],[130.59670596705968,-11.301090614345014],[130.60030600306004,-11.316287809773954],[130.58950589505895,-11.333173582472782],[130.5607056070561,-11.361879396060786],[130.55710557105573,-11.378765168759614],[130.56790567905682,-11.393962364188567],[130.57870578705786,-11.39733951872833],[130.58950589505895,-11.392273786918679],[130.60030600306004,-11.385519477839154],[130.639906399064,-11.343305046092084],[130.6579065790658,-11.331485005202907],[130.6687066870669,-11.344993623361972],[130.65430654306545,-11.37707659148974],[130.6579065790658,-11.383830900569265],[130.6687066870669,-11.392273786918679],[130.69030690306903,-11.422668177776572],[130.6939069390694,-11.434488218665749],[130.7227072270723,-11.385519477839154],[130.78390783907838,-11.368633705140326],[130.8451084510845,-11.360190818790912],[130.87390873908743,-11.33486215974267],[130.88830888308883,-11.312910655234191],[130.9207092070921,-11.309533500694428],[130.95310953109532,-11.316287809773954],[130.96750967509678,-11.328107850663145],[130.9747097470975,-11.336550737012558],[131.00351003510036,-11.346682200631847],[131.0107101071011,-11.35512508698126],[131.01791017910182,-11.400716673268093],[131.02151021510218,-11.41253671415727],[131.02871028710285,-11.399028095998219],[131.05031050310504,-11.31459923250408],[131.06111061110613,-11.306156346154665],[131.0791107911079,-11.299402037075126],[131.10071100711008,-11.290959150725712],[131.1331113311133,-11.25718760532807],[131.15471154711548,-11.248744718978656],[131.1619116191162,-11.267319068947359],[131.1619116191162,-11.289270573455838],[131.16911169111694,-11.309533500694428],[131.17631176311767,-11.329796427933019],[131.21951219512198,-11.390585209648805],[131.21951219512198,-11.399028095998219],[131.23031230312301,-11.390585209648805],[131.23031230312301,-11.3703222824102],[131.21591215912161,-11.338239314282433],[131.21591215912161,-11.328107850663145],[131.21591215912161,-11.306156346154665],[131.21591215912161,-11.296024882535363],[131.21231212312125,-11.296024882535363],[131.20511205112052,-11.296024882535363],[131.1979119791198,-11.294336305265489],[131.19431194311943,-11.290959150725712],[131.19431194311943,-11.284204841646186],[131.20151201512016,-11.274073378026898],[131.20511205112052,-11.247056141708768],[131.21591215912161,-11.226793214470177],[131.23031230312301,-11.208218864501461],[131.24831248312483,-11.19471024634241],[131.27351273512738,-11.189644514532759],[131.29151291512915,-11.198087400882173],[131.30231302313024,-11.216661750850875],[131.3059130591306,-11.241990409899117],[131.30231302313024,-11.247056141708768],[131.29151291512915,-11.258876182597945],[131.29151291512915,-11.270696223487121],[131.30231302313024,-11.277450532566661],[131.3167131671317,-11.27238480075701],[131.32031320313206,-11.262253337137707],[131.32391323913242,-11.25043329624853],[131.3311133111331,-11.241990409899117],[131.3419134191342,-11.240301832629243],[131.35271352713528,-11.24536756443888],[131.359913599136,-11.25212187351842],[131.3707137071371,-11.255499028058182],[131.38151381513813,-11.253810450788293],[131.40311403114032,-11.243678987169005],[131.4139141391414,-11.241990409899117],[131.42831428314287,-11.25043329624853],[131.43551435514354,-11.265630491677484],[131.4391143911439,-11.284204841646186],[131.43551435514354,-11.302779191614903],[131.45711457114572,-11.309533500694428],[131.4607146071461,-11.331485005202907],[131.4607146071461,-11.356813664251149],[131.47151471514718,-11.38214232329939],[131.47511475114754,-11.390585209648805],[131.4787147871479,-11.395650941458442],[131.48231482314822,-11.388896632378916],[131.5039150391504,-11.378765168759614],[131.51831518315186,-11.380453746029502],[131.52911529115295,-11.387208055109028],[131.53271532715326,-11.39733951872833],[131.53631536315362,-11.41253671415727]]],[[[123.38943389433894,-10.591888160994287],[123.41463414634148,-10.605396779153338],[123.42183421834221,-10.618905397312403],[123.41823418234185,-10.662808406329361],[123.40743407434076,-10.679694179028175],[123.38943389433894,-10.679694179028175],[123.36783367833681,-10.674628447218538],[123.34983349833499,-10.674628447218538],[123.33183331833317,-10.683071333567952],[123.27783277832782,-10.725285765315022],[123.26703267032673,-10.728662919854784],[123.25623256232564,-10.733728651664435],[123.24183241832418,-10.737105806204198],[123.23823238232382,-10.745548692553612],[123.23823238232382,-10.769188774331965],[123.23463234632345,-10.779320237951268],[123.23103231032309,-10.789451701570556],[123.20943209432096,-10.81309178334891],[123.17703177031774,-10.819846092428449],[123.1410314103141,-10.823223246968212],[122.98982989829898,-10.865437678715281],[122.96822968229685,-10.87556914233457],[122.95742957429576,-10.88738918322376],[122.97182971829722,-10.899209224112937],[122.97182971829722,-10.905963533192462],[122.88182881828817,-10.92284930589129],[122.84222842228422,-10.921160728621402],[122.8206282062821,-10.892454915033397],[122.81342813428137,-10.804648896999495],[122.809828098281,-10.784385969760905],[122.81342813428137,-10.77763166068138],[122.8350283502835,-10.772565928871728],[122.85662856628568,-10.7556801561729],[122.91782917829181,-10.737105806204198],[122.9430294302943,-10.73541722893431],[122.96102961029612,-10.73541722893431],[122.97542975429758,-10.73541722893431],[122.98262982629825,-10.732040074394547],[122.99342993429934,-10.723597188045133],[123.00423004230043,-10.721908610775245],[123.01503015030153,-10.723597188045133],[123.02583025830262,-10.721908610775245],[123.04743047430475,-10.711777147155956],[123.09783097830979,-10.662808406329361],[123.11943119431197,-10.65098836544017],[123.16263162631628,-10.634102592741343],[123.17703177031774,-10.618905397312403],[123.18063180631805,-10.608773933693115],[123.18423184231841,-10.58851100645451],[123.19143191431914,-10.578379542835222],[123.19863198631987,-10.57331381102557],[123.20943209432096,-10.576690965565334],[123.21663216632169,-10.57500238829546],[123.21663216632169,-10.559805192866506],[123.22383223832242,-10.542919420167678],[123.24183241832418,-10.529410802008627],[123.28143281432813,-10.509147874770036],[123.33543335433353,-10.49057352480132],[123.35343353433535,-10.478753483912143],[123.37503375033754,-10.4432933612446],[123.38583385833857,-10.433161897625311],[123.39663396633966,-10.44835909305425],[123.39663396633966,-10.46355628848319],[123.3930339303393,-10.47537632937238],[123.37503375033754,-10.495639256610971],[123.3930339303393,-10.509147874770036],[123.38943389433894,-10.529410802008627],[123.37503375033754,-10.547985151977329],[123.37143371433717,-10.556428038326743],[123.3786337863379,-10.561493770136394],[123.37143371433717,-10.571625233755682],[123.36063360633608,-10.580068120105096],[123.35703357033572,-10.581756697374985],[123.36063360633608,-10.590199583724399],[123.36783367833681,-10.591888160994287],[123.3786337863379,-10.590199583724399],[123.38943389433894,-10.591888160994287]]],[[[151.17811178111782,-9.955294530248509],[151.20331203312037,-9.936720180279792],[151.24651246512468,-9.921522984850853],[151.28251282512826,-9.928277293930378],[151.30051300513009,-9.967114571137685],[151.29691296912972,-9.989066075646164],[151.2789127891279,-10.03128050739322],[151.2681126811268,-10.075183516410178],[151.23931239312395,-10.132595143586187],[151.23211232112322,-10.139349452665712],[151.2357123571236,-10.149480916285015],[151.22851228512286,-10.181563884412782],[151.23211232112322,-10.200138234381498],[151.21051210512104,-10.186629616222433],[151.17451174511746,-10.15623522536454],[151.15651156511564,-10.146103761745252],[151.05571055710556,-10.119086525427122],[151.00531005310052,-10.112332216347596],[150.98730987309875,-10.112332216347596],[150.96930969309693,-10.110643639077708],[150.95850958509584,-10.10557790726807],[150.95490954909548,-10.090380711839117],[150.95130951309517,-10.059986320981238],[150.95130951309517,-10.034657661932997],[150.96570965709657,-10.029591930123345],[150.9729097290973,-10.019460466504043],[150.98730987309875,-10.005951848344992],[150.99090990909912,-9.994131807455801],[150.9837098370984,-9.989066075646164],[150.97650976509766,-9.984000343836513],[150.96570965709657,-9.97386888021721],[150.95130951309517,-9.955294530248509],[150.94410944109444,-9.955294530248509],[150.9477094770948,-9.98062318929675],[150.92970929709298,-9.997508961995578],[150.9081090810908,-9.997508961995578],[150.89730897308976,-9.977246034756973],[150.8937089370894,-9.970491725677448],[150.89010890108904,-9.967114571137685],[150.88650886508867,-9.963737416597922],[150.8829088290883,-9.960360262058146],[150.8829088290883,-9.951917375708746],[150.8829088290883,-9.902948634882137],[150.87930879308794,-9.896194325802611],[150.85770857708576,-9.86917708948448],[150.8541085410854,-9.860734203135067],[150.8505085050851,-9.84891416224589],[150.84330843308436,-9.838782698626602],[150.83610836108363,-9.832028389547062],[150.81450814508145,-9.8286512350073],[150.81090810908108,-9.821896925927774],[150.81090810908108,-9.81345403957836],[150.80730807308072,-9.810076885038598],[150.80010800108005,-9.808388307768709],[150.7857078570786,-9.805011153228946],[150.77850778507786,-9.803322575959058],[150.76770767707677,-9.79319111233977],[150.76050760507604,-9.783059648720467],[150.75690756907568,-9.769551030561402],[150.75330753307531,-9.752665257862574],[150.75330753307531,-9.735779485163746],[150.75690756907568,-9.715516557925156],[150.7641076410764,-9.702007939766105],[150.79290792907932,-9.717205135195044],[150.81450814508145,-9.732402330623984],[150.8289082890829,-9.7509766805927],[150.83610836108363,-9.772928185101179],[150.84330843308436,-9.794879689609644],[150.86850868508685,-9.808388307768709],[150.8937089370894,-9.818519771388011],[150.91530915309153,-9.830339812277188],[150.9837098370984,-9.902948634882137],[150.99810998109984,-9.913080098501439],[151.02331023310234,-9.923211562120727],[151.04851048510488,-9.935031603009918],[151.06291062910628,-9.955294530248509],[151.0377103771038,-9.948540221168969],[151.03051030510306,-9.963737416597922],[151.03411034110343,-9.984000343836513],[151.04491044910452,-9.99582038472569],[151.05571055710556,-10.00088611653534],[151.08811088110883,-10.027903352853457],[151.10971109711096,-10.03634623920287],[151.12771127711278,-10.041411971012522],[151.1349113491135,-10.041411971012522],[151.14211142111424,-10.03634623920287],[151.14931149311496,-10.026214775583583],[151.14931149311496,-10.01608331196428],[151.1457114571146,-10.005951848344992],[151.13851138511387,-10.002574693805215],[151.13851138511387,-9.994131807455801],[151.15291152911533,-9.978934612026862],[151.17811178111782,-9.955294530248509]]],[[[150.80010800108005,-9.653039198939496],[150.80370803708036,-9.669924971638324],[150.7857078570786,-9.66823639436845],[150.74250742507428,-9.653039198939496],[150.67770677706778,-9.659793508019035],[150.6561065610656,-9.659793508019035],[150.62370623706238,-9.649662044399733],[150.5877058770588,-9.634464848970794],[150.54810548105485,-9.622644808081617],[150.50490504905048,-9.624333385351491],[150.46530465304653,-9.63108769443103],[150.4329043290433,-9.63108769443103],[150.42930429304295,-9.624333385351491],[150.4437044370444,-9.609136189922552],[150.479704797048,-9.58380753087431],[150.50130501305011,-9.571987489985133],[150.5121051210512,-9.560167449095957],[150.5121051210512,-9.546658830936892],[150.5121051210512,-9.526395903698301],[150.50490504905048,-9.516264440078999],[150.4581045810458,-9.487558626490994],[150.42570425704258,-9.418326958425808],[150.42210422104222,-9.389621144837804],[150.4329043290433,-9.365981063059436],[150.45450454504544,-9.349095290360609],[150.479704797048,-9.33896382674132],[150.50490504905048,-9.337275249471432],[150.56250562505625,-9.367669640329325],[150.5985059850599,-9.377801103948627],[150.60930609306092,-9.389621144837804],[150.62730627306274,-9.413261226616157],[150.6561065610656,-9.431835576584874],[150.67410674106742,-9.438589885664399],[150.68850688506888,-9.43690130839451],[150.70650706507064,-9.426769844775222],[150.72810728107282,-9.425081267505334],[150.74610746107464,-9.418326958425808],[150.76050760507604,-9.399752608457092],[150.80010800108005,-9.425081267505334],[150.8289082890829,-9.455475658363227],[150.83610836108363,-9.460541390172878],[150.83610836108363,-9.467295699252404],[150.83250832508327,-9.482492894681343],[150.83610836108363,-9.487558626490994],[150.84330843308436,-9.497690090110297],[150.85770857708576,-9.50613297645971],[150.87210872108722,-9.512887285539236],[150.88650886508867,-9.516264440078999],[150.89010890108904,-9.52133017188865],[150.8829088290883,-9.560167449095957],[150.87930879308794,-9.566921758175482],[150.86850868508685,-9.570298912715245],[150.8649086490865,-9.573676067255008],[150.86850868508685,-9.58380753087431],[150.87930879308794,-9.592250417223724],[150.89010890108904,-9.592250417223724],[150.90090900909013,-9.593938994493612],[150.9081090810908,-9.619267653541854],[150.91530915309153,-9.62602196262138],[150.92610926109262,-9.629399117161142],[150.92970929709298,-9.639530580780445],[150.92970929709298,-9.653039198939496],[150.92610926109262,-9.664859239828687],[150.91530915309153,-9.6733021261781],[150.90090900909013,-9.680056435257626],[150.8937089370894,-9.66823639436845],[150.87570875708758,-9.680056435257626],[150.839708397084,-9.713827980655282],[150.84330843308436,-9.696942207956454],[150.8505085050851,-9.6733021261781],[150.8541085410854,-9.663170662558798],[150.84690846908472,-9.654727776209384],[150.83250832508327,-9.651350621669621],[150.80010800108005,-9.653039198939496]]],[[[150.3681036810368,-9.371046794869088],[150.37170371703718,-9.371046794869088],[150.3789037890379,-9.38117825848839],[150.3789037890379,-9.386243990298041],[150.3789037890379,-9.391309722107678],[150.37170371703718,-9.394686876647455],[150.3681036810368,-9.399752608457092],[150.36450364503645,-9.414949803886046],[150.3465034650347,-9.452098503823464],[150.33930339303396,-9.46391854471264],[150.3357033570336,-9.470672853792166],[150.34290342903432,-9.474050008331929],[150.3609036090361,-9.474050008331929],[150.3609036090361,-9.484181471951231],[150.3609036090361,-9.490935781030757],[150.35370353703536,-9.50106724465006],[150.33930339303396,-9.519641594618761],[150.31050310503105,-9.519641594618761],[150.28530285302855,-9.509510130999473],[150.260102601026,-9.496001512840408],[150.25650256502564,-9.497690090110297],[150.25650256502564,-9.49937866738017],[150.25290252902528,-9.50106724465006],[150.25290252902528,-9.48587004922112],[150.25290252902528,-9.470672853792166],[150.2457024570246,-9.45885281290299],[150.2349023490235,-9.453787081093338],[150.22050220502206,-9.452098503823464],[150.1809018090181,-9.440278462934288],[150.17010170101702,-9.435212731124636],[150.16650166501665,-9.425081267505334],[150.15930159301593,-9.413261226616157],[150.1521015210152,-9.403129762996855],[150.11250112501125,-9.369358217599213],[150.10890108901089,-9.3609153312498],[150.10890108901089,-9.328832363122018],[150.11250112501125,-9.300126549534014],[150.12330123301234,-9.273109313215897],[150.14130141301416,-9.247780654167656],[150.16650166501665,-9.227517726929065],[150.1917019170192,-9.212320531500112],[150.21330213302133,-9.205566222420586],[150.23850238502388,-9.21400910877],[150.29250292502928,-9.241026345088116],[150.3141031410314,-9.259600695056832],[150.3357033570336,-9.283240776835186],[150.35370353703536,-9.327143785852144],[150.35730357303572,-9.350783867630497],[150.36450364503645,-9.364292485789562],[150.3681036810368,-9.371046794869088]]],[[[152.99612996129963,-9.141400286165037],[153.0105301053011,-9.149843172514451],[152.99612996129963,-9.161663213403642],[152.9889298892989,-9.17179467702293],[152.99252992529927,-9.17854898610247],[152.9889298892989,-9.183614717912107],[152.98532985329854,-9.192057604261521],[152.97452974529745,-9.195434758801284],[152.9637296372964,-9.190369026991647],[152.95652956529568,-9.181926140642233],[152.9457294572946,-9.175171831562693],[152.93852938529386,-9.180237563372344],[152.92772927729277,-9.192057604261521],[152.93132931329313,-9.19881191334106],[152.94932949329495,-9.21400910877],[152.97092970929708,-9.22920630419894],[152.97452974529745,-9.246092076897767],[152.96732967329672,-9.25622354051707],[152.96012960129605,-9.257912117786944],[152.95652956529568,-9.242714922358005],[152.94212942129423,-9.227517726929065],[152.92052920529204,-9.22920630419894],[152.89532895328955,-9.24946923143753],[152.8557285572856,-9.254534963247181],[152.83412834128342,-9.259600695056832],[152.8269282692827,-9.252846385977307],[152.8125281252813,-9.254534963247181],[152.8017280172802,-9.239337767818242],[152.78732787327874,-9.222451995119414],[152.77292772927728,-9.215697686039888],[152.75852758527589,-9.203877645150698],[152.75132751327516,-9.190369026991647],[152.74412744127443,-9.181926140642233],[152.7369273692737,-9.19374618153141],[152.7261272612726,-9.203877645150698],[152.72972729727297,-9.219074840579651],[152.75492754927552,-9.224140572389302],[152.75132751327516,-9.242714922358005],[152.7369273692737,-9.259600695056832],[152.71892718927188,-9.232583458738716],[152.70092700927012,-9.224140572389302],[152.6721267212672,-9.21400910877],[152.65412654126544,-9.203877645150698],[152.64332643326435,-9.181926140642233],[152.65052650526508,-9.168417522483168],[152.6721267212672,-9.185303295181996],[152.69732697326975,-9.18699187245187],[152.69012690126902,-9.17179467702293],[152.6937269372694,-9.161663213403642],[152.70092700927012,-9.158286058863865],[152.70812708127085,-9.156597481593991],[152.71532715327152,-9.154908904324103],[152.70452704527048,-9.144777440704814],[152.69732697326975,-9.139711708895163],[152.68652686526866,-9.134645977085512],[152.66492664926648,-9.12451451346621],[152.63612636126362,-9.100874431687856],[152.61452614526144,-9.083988658989028],[152.59652596525967,-9.068791463560089],[152.57132571325712,-9.078922927179377],[152.5641256412564,-9.072168618099852],[152.55332553325536,-9.060348577210675],[152.53532535325354,-9.050217113591373],[152.50652506525068,-9.038397072702196],[152.47052470524704,-9.045151381781736],[152.46332463324632,-9.036708495432322],[152.49932499324996,-9.023199877273257],[152.49932499324996,-9.014756990923843],[152.4957249572496,-8.999559795494903],[152.4741247412474,-8.975919713716536],[152.45252452524528,-8.965788250097248],[152.42732427324273,-8.982674022796076],[152.42372423724237,-8.999559795494903],[152.42732427324273,-9.018134145463605],[152.42732427324273,-9.056971422670912],[152.42732427324273,-9.070480040829963],[152.420124201242,-9.083988658989028],[152.41292412924133,-9.033331340892545],[152.38772387723878,-8.99111690914549],[152.4057240572406,-8.970853981906885],[152.45252452524528,-8.945525322858657],[152.47052470524704,-8.94890247739842],[152.51732517325172,-8.996182640955126],[152.60012600126004,-8.989428331875601],[152.64332643326435,-8.992805486415364],[152.66852668526684,-8.999559795494903],[152.70452704527048,-9.006314104574429],[152.7369273692737,-8.999559795494903],[152.75492754927552,-9.001248372764778],[152.77652776527765,-9.001248372764778],[152.79452794527947,-9.002936950034666],[152.80892808928093,-9.009691259114192],[152.8161281612816,-9.023199877273257],[152.83052830528305,-9.028265609082908],[152.84852848528487,-9.058659999940787],[152.86652866528664,-9.070480040829963],[152.8989289892899,-9.078922927179377],[152.91692916929168,-9.070480040829963],[152.94212942129423,-9.083988658989028],[152.95292952929532,-9.09412012260833],[152.94932949329495,-9.119448781656573],[152.97452974529745,-9.127891668005987],[152.99612996129963,-9.141400286165037]]],[[[123.92943929439298,-8.227879983158502],[123.94023940239401,-8.232945714968153],[123.94023940239401,-8.243077178587441],[123.93663936639365,-8.26502868309592],[123.93303933039334,-8.27178299217546],[123.92223922239225,-8.276848723985097],[123.87543875438757,-8.2869801876044],[123.81063810638108,-8.288668764874288],[123.78903789037889,-8.293734496683925],[123.7746377463775,-8.305554537573101],[123.76743767437677,-8.32244031027193],[123.74943749437494,-8.356211855669585],[123.72783727837282,-8.393360555607003],[123.68823688236881,-8.435574987354073],[123.67743677436778,-8.438952141893836],[123.67023670236705,-8.42713210100466],[123.66303663036632,-8.413623482845594],[123.65583655836559,-8.40518059649618],[123.64143641436414,-8.41193490557572],[123.62343623436237,-8.42713210100466],[123.60903609036092,-8.445706450973375],[123.60183601836019,-8.457526491862552],[123.59463594635946,-8.462592223672203],[123.58383583835837,-8.465969378211966],[123.57303573035733,-8.471035110021617],[123.56943569435697,-8.481166573640905],[123.57303573035733,-8.491298037260208],[123.60903609036092,-8.535201046277152],[123.59823598235982,-8.555463973515742],[123.58383583835837,-8.565595437135045],[123.5658356583566,-8.568972591674807],[123.54423544235442,-8.568972591674807],[123.53343533435333,-8.563906859865156],[123.5118351183512,-8.533512469007277],[123.50103501035011,-8.521692428118087],[123.45423454234543,-8.568972591674807],[123.4470344703447,-8.57234974621457],[123.42903429034294,-8.587546941643524],[123.42183421834221,-8.590924096183286],[123.40743407434076,-8.589235518913398],[123.40023400234003,-8.585858364373635],[123.38223382233821,-8.568972591674807],[123.34623346233462,-8.543643932626566],[123.3246332463325,-8.535201046277152],[123.31023310233104,-8.548709664436217],[123.30303303033031,-8.55208681897598],[123.29223292232922,-8.555463973515742],[123.28503285032849,-8.55715255078563],[123.27783277832782,-8.555463973515742],[123.26703267032673,-8.548709664436217],[123.26343263432636,-8.545332509896454],[123.25623256232564,-8.541955355356691],[123.24903249032491,-8.545332509896454],[123.24543245432454,-8.548709664436217],[123.23823238232382,-8.548709664436217],[123.22743227432278,-8.526758159927738],[123.25263252632527,-8.496363769069859],[123.3138331383314,-8.452460760052901],[123.35703357033572,-8.41193490557572],[123.37143371433717,-8.40518059649618],[123.38583385833857,-8.401803441956417],[123.46863468634689,-8.366343319288887],[123.47943479434798,-8.357900432939473],[123.48663486634865,-8.351146123859934],[123.48303483034829,-8.330883196621343],[123.47223472234725,-8.320751733002055],[123.43623436234361,-8.317374578462292],[123.37143371433717,-8.317374578462292],[123.36783367833681,-8.303865960303227],[123.3786337863379,-8.288668764874288],[123.40023400234003,-8.273471569445334],[123.41463414634148,-8.266717260365809],[123.42903429034294,-8.270094414905572],[123.44343443434434,-8.276848723985097],[123.4578345783458,-8.278537301254985],[123.46503465034652,-8.268405837635683],[123.47943479434798,-8.266717260365809],[123.50103501035011,-8.246454333127218],[123.51543515435156,-8.241388601317567],[123.54423544235442,-8.243077178587441],[123.56943569435697,-8.248142910397092],[123.56223562235624,-8.254897219476632],[123.56223562235624,-8.27178299217546],[123.56223562235624,-8.281914455794748],[123.55143551435515,-8.29204591941405],[123.52623526235266,-8.317374578462292],[123.51543515435156,-8.337637505700883],[123.51903519035193,-8.352834701129822],[123.52983529835302,-8.364654742018999],[123.54783547835478,-8.371409051098539],[123.56943569435697,-8.374786205638301],[123.58743587435873,-8.373097628368413],[123.60543605436055,-8.364654742018999],[123.60903609036092,-8.342703237510534],[123.60183601836019,-8.329194619351469],[123.58743587435873,-8.317374578462292],[123.58383583835837,-8.305554537573101],[123.60183601836019,-8.295423073953813],[123.61263612636128,-8.308931692112878],[123.62703627036274,-8.30724311484299],[123.63783637836377,-8.293734496683925],[123.6450364503645,-8.275160146715223],[123.63783637836377,-8.261651528556158],[123.6306363063631,-8.253208642206744],[123.62703627036274,-8.24476575585733],[123.6306363063631,-8.232945714968153],[123.63423634236341,-8.227879983158502],[123.64143641436414,-8.22281425134885],[123.64863648636486,-8.219437096809088],[123.65583655836559,-8.221125674078976],[123.66663666636668,-8.226191405888628],[123.66663666636668,-8.234634292238042],[123.66663666636668,-8.241388601317567],[123.67023670236705,-8.248142910397092],[123.68463684636845,-8.251520064936855],[123.70263702637027,-8.251520064936855],[123.71343713437136,-8.24476575585733],[123.70623706237063,-8.232945714968153],[123.70623706237063,-8.227879983158502],[123.73143731437318,-8.22281425134885],[123.74943749437494,-8.2093056331898],[123.76743767437677,-8.192419860490972],[123.78543785437853,-8.185665551411432],[123.78903789037889,-8.183976974141558],[123.79983799837999,-8.180599819601781],[123.80343803438035,-8.178911242331907],[123.81063810638108,-8.180599819601781],[123.81423814238144,-8.185665551411432],[123.81423814238144,-8.190731283221083],[123.8178381783818,-8.192419860490972],[123.82143821438217,-8.195797015030735],[123.83943839438393,-8.207617055919911],[123.85023850238503,-8.214371364999437],[123.86463864638648,-8.219437096809088],[123.8826388263883,-8.22281425134885],[123.92943929439298,-8.227879983158502]]],[[[124.30744307443075,-8.221125674078976],[124.2930429304293,-8.258274374016395],[124.28944289442893,-8.280225878524874],[124.29664296642966,-8.298800228493576],[124.30024300243002,-8.319063155732167],[124.28224282242826,-8.339326082970757],[124.24624246242462,-8.364654742018999],[124.23184231842322,-8.381540514717827],[124.21744217442176,-8.401803441956417],[124.21024210242103,-8.423754946464896],[124.2030420304203,-8.465969378211966],[124.19224192241921,-8.48960945999032],[124.17784177841781,-8.511560964498798],[124.16344163441636,-8.528446737197626],[124.1490414904149,-8.538578200816914],[124.13104131041314,-8.548709664436217],[124.10584105841059,-8.553775396245868],[124.08424084240846,-8.55715255078563],[124.05904059040591,-8.55208681897598],[124.05184051840519,-8.538578200816914],[124.05544055440555,-8.501429500879496],[124.05184051840519,-8.482855150910794],[124.03024030240306,-8.455837914592664],[124.0266402664027,-8.444017873703487],[124.01944019440197,-8.430509255544422],[123.99783997839978,-8.430509255544422],[123.97623976239765,-8.437263564623962],[123.94023940239401,-8.457526491862552],[123.92943929439298,-8.459215069132426],[123.92223922239225,-8.460903646402315],[123.9078390783908,-8.45414933732279],[123.91143911439116,-8.442329296433613],[123.92583925839261,-8.430509255544422],[123.93303933039334,-8.425443523734785],[123.96543965439656,-8.361277587479236],[123.98343983439838,-8.337637505700883],[124.02304023040233,-8.313997423922515],[124.04464044640446,-8.305554537573101],[124.05904059040591,-8.305554537573101],[124.069840698407,-8.315686001192404],[124.07344073440737,-8.320751733002055],[124.08424084240846,-8.34945754659006],[124.08424084240846,-8.352834701129822],[124.08424084240846,-8.356211855669585],[124.09864098640986,-8.376474782908176],[124.10224102241023,-8.381540514717827],[124.10944109441095,-8.38491766925759],[124.10944109441095,-8.362966164749125],[124.12384123841241,-8.34945754659006],[124.1490414904149,-8.329194619351469],[124.18504185041854,-8.27178299217546],[124.2030420304203,-8.251520064936855],[124.23184231842322,-8.2093056331898],[124.24624246242462,-8.195797015030735],[124.24984249842498,-8.189042705951195],[124.25704257042571,-8.18228839687167],[124.27144271442717,-8.178911242331907],[124.28584285842862,-8.183976974141558],[124.29664296642966,-8.194108437760846],[124.30744307443075,-8.221125674078976]]],[[[138.89838898388984,-8.337637505700883],[138.90558905589057,-8.351146123859934],[138.90918909189094,-8.374786205638301],[138.90918909189094,-8.39673771014678],[138.89478894788948,-8.40518059649618],[138.70038700387005,-8.395049132876892],[138.65358653586537,-8.376474782908176],[138.62838628386282,-8.371409051098539],[138.58158581585815,-8.373097628368413],[138.55998559985602,-8.366343319288887],[138.54918549185493,-8.347768969320171],[138.5527855278553,-8.32244031027193],[138.56358563585638,-8.30724311484299],[138.63918639186392,-8.256585796746506],[138.65718657186574,-8.241388601317567],[138.66438664386646,-8.22450282861874],[138.66798667986683,-8.20255132411026],[138.67518675186756,-8.189042705951195],[138.68958689586896,-8.180599819601781],[138.7291872918729,-8.177222665062018],[138.78678786787867,-8.158648315093316],[138.81558815588158,-8.162025469633079],[138.82998829988298,-8.185665551411432],[138.83358833588335,-8.219437096809088],[138.83358833588335,-8.251520064936855],[138.84078840788408,-8.276848723985097],[138.8587885878859,-8.297111651223688],[138.89838898388984,-8.337637505700883]]],[[[125.13545135451358,-8.217748519539214],[125.13905139051394,-8.232945714968153],[125.13905139051394,-8.320751733002055],[125.13545135451358,-8.339326082970757],[125.12465124651249,-8.352834701129822],[125.09945099450994,-8.357900432939473],[125.07785077850781,-8.359589010209348],[125.02025020250204,-8.371409051098539],[124.93384933849342,-8.378163360178064],[124.76464764647648,-8.408557751035957],[124.72504725047253,-8.410246328305831],[124.67104671046712,-8.403492019226306],[124.66024660246603,-8.403492019226306],[124.64944649446494,-8.40518059649618],[124.63864638646385,-8.410246328305831],[124.61704617046172,-8.423754946464896],[124.59544595445954,-8.428820678274548],[124.57744577445777,-8.437263564623962],[124.55944559445595,-8.440640719163724],[124.54864548645486,-8.445706450973375],[124.5450454504545,-8.44739502824325],[124.53784537845382,-8.445706450973375],[124.52704527045273,-8.435574987354073],[124.519845198452,-8.43219783281431],[124.50184501845018,-8.430509255544422],[124.49464494644945,-8.430509255544422],[124.48744487444878,-8.43219783281431],[124.46224462244624,-8.445706450973375],[124.4550445504455,-8.44739502824325],[124.44784447844478,-8.450772182783027],[124.44424444244441,-8.457526491862552],[124.43704437044374,-8.464280800942078],[124.42624426244265,-8.46765795548184],[124.41904419044192,-8.464280800942078],[124.40824408244083,-8.450772182783027],[124.39744397443974,-8.44739502824325],[124.39024390243901,-8.449083605513138],[124.37224372243725,-8.457526491862552],[124.36864368643688,-8.460903646402315],[124.35784357843579,-8.455837914592664],[124.35064350643506,-8.449083605513138],[124.3470434704347,-8.438952141893836],[124.33984339843397,-8.428820678274548],[124.3326433264333,-8.413623482845594],[124.3470434704347,-8.39673771014678],[124.37584375843761,-8.371409051098539],[124.3866438664387,-8.357900432939473],[124.40824408244083,-8.320751733002055],[124.4118441184412,-8.305554537573101],[124.47304473044733,-8.268405837635683],[124.50544505445055,-8.263340105826046],[124.51264512645128,-8.261651528556158],[124.519845198452,-8.258274374016395],[124.53424534245346,-8.243077178587441],[124.54144541445413,-8.238011446777804],[124.54864548645486,-8.231257137698265],[124.54864548645486,-8.22450282861874],[124.53784537845382,-8.221125674078976],[124.51624516245164,-8.226191405888628],[124.49464494644945,-8.232945714968153],[124.42264422644229,-8.266717260365809],[124.39384393843937,-8.26502868309592],[124.39744397443974,-8.221125674078976],[124.40464404644047,-8.210994210459674],[124.41904419044192,-8.20255132411026],[124.43344433444338,-8.190731283221083],[124.43704437044374,-8.175534087792144],[124.44064440644405,-8.162025469633079],[124.45144451444514,-8.148516851474014],[124.46224462244624,-8.138385387854726],[124.47664476644769,-8.133319656045074],[124.49464494644945,-8.138385387854726],[124.5450454504545,-8.129942501505312],[124.57024570245704,-8.131631078775186],[124.5846458464585,-8.145139696934251],[124.5882458824588,-8.190731283221083],[124.60264602646026,-8.207617055919911],[124.64224642246421,-8.180599819601781],[124.6638466384664,-8.170468355982493],[124.68904689046889,-8.165402624172842],[124.7718477184772,-8.158648315093316],[124.89784897848978,-8.168779778712604],[124.93744937449378,-8.158648315093316],[124.94464944649445,-8.155271160553553],[124.94824948249482,-8.151894006013777],[124.95184951849518,-8.150205428743902],[124.96624966249664,-8.151894006013777],[124.969849698497,-8.153582583283665],[124.97704977049773,-8.158648315093316],[124.98424984249846,-8.163714046902967],[124.99504995049949,-8.165402624172842],[125.04545045450453,-8.158648315093316],[125.08145081450817,-8.158648315093316],[125.0886508865089,-8.158648315093316],[125.09225092250921,-8.162025469633079],[125.1030510305103,-8.172156933252381],[125.12465124651249,-8.205928478650023],[125.13545135451358,-8.217748519539214]]],[[[157.79857798577984,-8.562218282595282],[157.80937809378094,-8.570661168944696],[157.82017820178203,-8.582481209833873],[157.8237782377824,-8.5993669825327],[157.81657816578166,-8.617941332501402],[157.80937809378094,-8.617941332501402],[157.80937809378094,-8.601055559802575],[157.8021780217802,-8.590924096183286],[157.79497794977954,-8.584169787103747],[157.79137791377917,-8.57910405529411],[157.7877778777788,-8.565595437135045],[157.77697776977772,-8.55208681897598],[157.75537755377553,-8.528446737197626],[157.73017730177304,-8.513249541768687],[157.67617676176764,-8.50987238722891],[157.6509765097651,-8.498052346339733],[157.6041760417604,-8.46765795548184],[157.58257582575828,-8.438952141893836],[157.57897578975792,-8.435574987354073],[157.57537575375756,-8.422066369195008],[157.56817568175683,-8.398426287416655],[157.56457564575646,-8.38491766925759],[157.56457564575646,-8.324128887541818],[157.5717757177572,-8.33426035116112],[157.57537575375756,-8.346080392050297],[157.57897578975792,-8.374786205638301],[157.58257582575828,-8.386606246527478],[157.60777607776078,-8.393360555607003],[157.61137611376114,-8.401803441956417],[157.6149761497615,-8.41193490557572],[157.62217622176223,-8.410246328305831],[157.62937629376296,-8.401803441956417],[157.63297632976332,-8.388294823797366],[157.6257762577626,-8.378163360178064],[157.6041760417604,-8.356211855669585],[157.59337593375938,-8.324128887541818],[157.58257582575828,-8.298800228493576],[157.56817568175683,-8.276848723985097],[157.550175501755,-8.261651528556158],[157.5357753577536,-8.258274374016395],[157.52857528575288,-8.261651528556158],[157.5177751777518,-8.26502868309592],[157.50337503375033,-8.268405837635683],[157.4961749617496,-8.26502868309592],[157.48897488974893,-8.256585796746506],[157.4817748177482,-8.256585796746506],[157.47457474574747,-8.268405837635683],[157.46377463774638,-8.261651528556158],[157.45657456574565,-8.261651528556158],[157.44217442174426,-8.268405837635683],[157.4385743857439,-8.270094414905572],[157.43137431374316,-8.273471569445334],[157.4277742777428,-8.275160146715223],[157.39177391773921,-8.275160146715223],[157.35577355773557,-8.27178299217546],[157.34497344973448,-8.275160146715223],[157.3377733777338,-8.288668764874288],[157.33057330573308,-8.30724311484299],[157.319773197732,-8.325817464811706],[157.2981729817298,-8.337637505700883],[157.28017280172804,-8.33426035116112],[157.2441724417244,-8.313997423922515],[157.23337233372337,-8.317374578462292],[157.229772297723,-8.317374578462292],[157.22257222572227,-8.22450282861874],[157.22617226172264,-8.217748519539214],[157.2405724057241,-8.197485592300609],[157.2441724417244,-8.192419860490972],[157.25857258572586,-8.192419860490972],[157.27297272972731,-8.192419860490972],[157.28017280172804,-8.18735412868132],[157.29097290972913,-8.178911242331907],[157.29457294572944,-8.192419860490972],[157.30177301773017,-8.195797015030735],[157.3089730897309,-8.192419860490972],[157.31617316173163,-8.185665551411432],[157.319773197732,-8.177222665062018],[157.319773197732,-8.155271160553553],[157.32337323373235,-8.145139696934251],[157.319773197732,-8.133319656045074],[157.32697326973272,-8.11981103788601],[157.34857348573485,-8.092793801567893],[157.35937359373594,-8.07759660613894],[157.3737737377374,-8.043825060741284],[157.3845738457385,-8.032005019852107],[157.42417424174243,-7.989790588105038],[157.44217442174426,-7.9796591244857495],[157.45657456574565,-7.97290481540621],[157.48897488974893,-7.966150506326684],[157.50337503375033,-7.959396197247159],[157.50337503375033,-7.964461929056796],[157.50337503375033,-7.966150506326684],[157.5069750697507,-7.966150506326684],[157.51057510575106,-7.966150506326684],[157.57897578975792,-8.004987783533991],[157.6041760417604,-8.008364938073754],[157.59697596975968,-8.025250710772582],[157.60057600576005,-8.038759328931647],[157.60777607776078,-8.050579369820824],[157.61137611376114,-8.065776565249763],[157.61137611376114,-8.10461384245707],[157.61137611376114,-8.123188192425772],[157.61857618576187,-8.138385387854726],[157.61137611376114,-8.156959737823428],[157.61137611376114,-8.168779778712604],[157.6365763657637,-8.189042705951195],[157.64377643776442,-8.205928478650023],[157.64017640176405,-8.217748519539214],[157.6365763657637,-8.22956856042839],[157.64017640176405,-8.241388601317567],[157.64737647376472,-8.232945714968153],[157.6509765097651,-8.234634292238042],[157.65817658176582,-8.239700024047679],[157.66537665376654,-8.241388601317567],[157.67257672576727,-8.238011446777804],[157.68697686976873,-8.231257137698265],[157.69417694176946,-8.227879983158502],[157.71217712177122,-8.22281425134885],[157.73017730177304,-8.22281425134885],[157.7445774457745,-8.227879983158502],[157.77337773377735,-8.249831487666981],[157.77697776977772,-8.253208642206744],[157.78417784177844,-8.261651528556158],[157.78417784177844,-8.268405837635683],[157.79137791377917,-8.288668764874288],[157.8021780217802,-8.305554537573101],[157.82737827378276,-8.32244031027193],[157.83817838178385,-8.337637505700883],[157.83817838178385,-8.362966164749125],[157.83817838178385,-8.371409051098539],[157.84537845378458,-8.379851937447953],[157.85977859778598,-8.39167197833713],[157.8669786697867,-8.398426287416655],[157.87417874178743,-8.415312060115482],[157.88137881378816,-8.450772182783027],[157.88497884978852,-8.46765795548184],[157.89217892178925,-8.471035110021617],[157.89577895778962,-8.471035110021617],[157.9029790297903,-8.472723687291492],[157.90657906579065,-8.481166573640905],[157.90657906579065,-8.491298037260208],[157.9029790297903,-8.499740923609622],[157.88497884978852,-8.531823891737389],[157.88137881378816,-8.538578200816914],[157.8777787777878,-8.548709664436217],[157.8777787777878,-8.55884112805552],[157.88137881378816,-8.567284014404933],[157.88137881378816,-8.575726900754333],[157.88497884978852,-8.582481209833873],[157.8237782377824,-8.55884112805552],[157.79857798577984,-8.55715255078563],[157.79857798577984,-8.562218282595282]]],[[[157.10377103771037,-8.12487676969566],[157.05337053370533,-8.128253924235423],[157.0029700297003,-8.086039492488354],[156.96336963369635,-8.026939288042456],[156.94536945369452,-7.9796591244857495],[156.9489694896949,-7.967839083596573],[156.95256952569525,-7.954330465437508],[156.95976959769598,-7.932378960929029],[156.98496984969853,-7.896918838261499],[156.9885698856989,-7.888475951912085],[157.0029700297003,-7.87496733375302],[157.0317703177032,-7.863147292863843],[157.0677706777068,-7.854704406514429],[157.08937089370897,-7.851327251974666],[157.13617136171365,-7.87496733375302],[157.17217172171723,-7.91042745642055],[157.19017190171905,-7.952641888167619],[157.2009720097201,-7.99992205172434],[157.2009720097201,-8.048890792550935],[157.2009720097201,-8.065776565249763],[157.18297182971833,-8.106302419726944],[157.16857168571687,-8.135008233314949],[157.14697146971469,-8.148516851474014],[157.12537125371256,-8.12487676969566],[157.11817118171183,-8.128253924235423],[157.1109711097111,-8.128253924235423],[157.10377103771037,-8.12487676969566]]],[[[156.80856808568086,-7.719618224923806],[156.8157681576816,-7.73481542035276],[156.79776797767977,-7.766898388480527],[156.76176761767618,-7.815867129307122],[156.74376743767436,-7.83275290200595],[156.71856718567187,-7.856392983784303],[156.70416704167042,-7.885098797372322],[156.71136711367114,-7.908738879150675],[156.72216722167224,-7.920558920039852],[156.72216722167224,-7.932378960929029],[156.7149671496715,-7.940821847278443],[156.70056700567005,-7.945887579088094],[156.6969669696697,-7.942510424548331],[156.68976689766902,-7.9357561154687914],[156.67896678966792,-7.932378960929029],[156.66456664566647,-7.939133270008568],[156.6609666096661,-7.939133270008568],[156.65736657366574,-7.918870342769964],[156.6609666096661,-7.898607415531373],[156.65736657366574,-7.883410220102434],[156.61056610566106,-7.871590179213257],[156.6069660696607,-7.854704406514429],[156.6177661776618,-7.8124899747673595],[156.61416614166143,-7.805735665687834],[156.6069660696607,-7.798981356608294],[156.5961659616596,-7.792227047528769],[156.59256592565924,-7.788849892989006],[156.57816578165784,-7.761832656670876],[156.57096570965712,-7.7550783475913505],[156.5529655296553,-7.748324038511811],[156.54576545765457,-7.746635461241937],[156.54576545765457,-7.743258306702174],[156.54576545765457,-7.739881152162397],[156.53496534965353,-7.716241070384044],[156.5277652776528,-7.712863915844281],[156.5169651696517,-7.719618224923806],[156.49536495364953,-7.6757152159068625],[156.50256502565026,-7.63012362962003],[156.53136531365317,-7.592974929682612],[156.57096570965712,-7.569334847904244],[156.58536585365857,-7.572712002444021],[156.59256592565924,-7.576089156983784],[156.60336603366034,-7.577777734253658],[156.61056610566106,-7.569334847904244],[156.61416614166143,-7.577777734253658],[156.6177661776618,-7.584532043333198],[156.63216632166325,-7.596352084222374],[156.6357663576636,-7.601417816032026],[156.63216632166325,-7.606483547841677],[156.63216632166325,-7.6098607023814395],[156.650166501665,-7.611549279651314],[156.65376653766538,-7.614926434191091],[156.65376653766538,-7.619992166000728],[156.65376653766538,-7.626746475080267],[156.65736657366574,-7.631812206889904],[156.66816668166683,-7.635189361429681],[156.67536675366756,-7.641943670509207],[156.68616686166865,-7.66558375228756],[156.69336693366932,-7.6723380613671],[156.7149671496715,-7.679092370446625],[156.70776707767078,-7.685846679526151],[156.72216722167224,-7.701043874955104],[156.74376743767436,-7.69260098860569],[156.76536765367655,-7.699355297685216],[156.78696786967873,-7.712863915844281],[156.80856808568086,-7.719618224923806]]],[[[126.83826838268385,-7.726372534003346],[126.83826838268385,-7.739881152162397],[126.83826838268385,-7.748324038511811],[126.83466834668349,-7.758455502131113],[126.8238682386824,-7.761832656670876],[126.8130681306813,-7.758455502131113],[126.80226802268021,-7.751701193051588],[126.79146791467917,-7.748324038511811],[126.74826748267486,-7.753389770321462],[126.72666726667268,-7.7550783475913505],[126.71226712267122,-7.748324038511811],[126.63306633066333,-7.775341274829941],[126.61866618666187,-7.7820955839094665],[126.59706597065974,-7.802358511148057],[126.58986589865901,-7.805735665687834],[126.56826568265683,-7.814178552037248],[126.5610656106561,-7.819244283846885],[126.50346503465033,-7.888475951912085],[126.50346503465033,-7.89523026099161],[126.50346503465033,-7.903673147341024],[126.50346503465033,-7.912116033690438],[126.49626496264966,-7.9222474973097405],[126.48906489064893,-7.932378960929029],[126.47466474664748,-7.956019042707396],[126.46746467464675,-7.966150506326684],[126.45306453064529,-7.9577076199772705],[126.43506435064353,-7.93744469273868],[126.42066420664207,-7.932378960929029],[126.3738637386374,-7.932378960929029],[126.3486634866349,-7.929001806389266],[126.30186301863017,-7.915493188230201],[126.27306273062732,-7.912116033690438],[126.19026190261906,-7.923936074579615],[126.16866168661687,-7.915493188230201],[126.15426154261542,-7.90198457007115],[126.13626136261365,-7.888475951912085],[126.11466114661147,-7.883410220102434],[126.08946089460898,-7.891853106451848],[126.07506075060752,-7.883410220102434],[126.05346053460534,-7.885098797372322],[125.99945999459993,-7.893541683721736],[125.98145981459817,-7.903673147341024],[125.97065970659708,-7.905361724610913],[125.94545945459458,-7.905361724610913],[125.93465934659349,-7.907050301880787],[125.9238592385924,-7.912116033690438],[125.9238592385924,-7.915493188230201],[125.92025920259204,-7.9273132291193775],[125.91665916659167,-7.932378960929029],[125.91305913059131,-7.9357561154687914],[125.90225902259021,-7.93744469273868],[125.89865898658985,-7.939133270008568],[125.81225812258123,-8.008364938073754],[125.7906579065791,-8.016807824423168],[125.77265772657728,-8.008364938073754],[125.77625776257764,-7.991479165374926],[125.78705787057874,-7.971216238136336],[125.79785797857977,-7.952641888167619],[125.8050580505805,-7.945887579088094],[125.80865808658086,-7.934067538198917],[125.80865808658086,-7.864835870133717],[125.81585815858159,-7.849638674704778],[125.82665826658268,-7.837818633815601],[125.83745837458378,-7.827687170196299],[125.85185851858517,-7.822621438386662],[125.869858698587,-7.814178552037248],[125.87705877058772,-7.793915624798643],[125.88065880658809,-7.771964120290178],[125.88425884258845,-7.7550783475913505],[125.88785887858882,-7.751701193051588],[125.90225902259021,-7.746635461241937],[125.90945909459094,-7.743258306702174],[125.91305913059131,-7.736503997622634],[125.92025920259204,-7.721306802193695],[125.94905949059489,-7.679092370446625],[125.95625956259562,-7.6672723295574485],[125.97065970659708,-7.660518020477923],[125.98145981459817,-7.658829443208035],[125.99225992259926,-7.662206597747797],[126.02106021060212,-7.6757152159068625],[126.03186031860321,-7.682469524986388],[126.03546035460357,-7.689223834065928],[126.04626046260466,-7.694289565875565],[126.20466204662046,-7.712863915844281],[126.21546215462155,-7.709486761304518],[126.24426244262446,-7.690912411335802],[126.26226262262622,-7.685846679526151],[126.28026280262804,-7.687535256796039],[126.30546305463054,-7.694289565875565],[126.32706327063272,-7.695978143145453],[126.34506345063454,-7.689223834065928],[126.39906399063995,-7.643632247779095],[126.45306453064529,-7.619992166000728],[126.48546485464857,-7.598040661492263],[126.50346503465033,-7.589597775142849],[126.60426604266041,-7.569334847904244],[126.61866618666187,-7.562580538824719],[126.6258662586626,-7.559203384284956],[126.63306633066333,-7.565957693364481],[126.62946629466296,-7.5879091978729605],[126.62946629466296,-7.598040661492263],[126.63306633066333,-7.606483547841677],[126.64746647466478,-7.616615011460965],[126.69426694266946,-7.636877938699556],[126.70146701467019,-7.647009402318858],[126.71226712267122,-7.658829443208035],[126.72306723067231,-7.6672723295574485],[126.73746737467377,-7.6723380613671],[126.7986679866799,-7.663895175017686],[126.8130681306813,-7.668960906827337],[126.82026820268203,-7.680780947716514],[126.82746827468276,-7.695978143145453],[126.83466834668349,-7.711175338574392],[126.83826838268385,-7.726372534003346]]],[[[131.69831698316983,-7.226553662118064],[131.68391683916838,-7.224865084848176],[131.67311673116734,-7.223176507578302],[131.6659166591666,-7.223176507578302],[131.65511655116552,-7.23330797119759],[131.64431644316443,-7.2451280120867665],[131.64431644316443,-7.255259475706069],[131.6479164791648,-7.282276712024199],[131.6479164791648,-7.30253963926279],[131.6479164791648,-7.309293948342315],[131.6479164791648,-7.310982525612204],[131.66951669516698,-7.344754071009859],[131.6767167671677,-7.35826268916891],[131.67311673116734,-7.371771307327975],[131.66231662316625,-7.383591348217152],[131.66951669516698,-7.393722811836454],[131.6767167671677,-7.40047712091598],[131.68751687516874,-7.405542852725631],[131.69471694716947,-7.4122971618051565],[131.69831698316983,-7.413985739075045],[131.7019170191702,-7.4122971618051565],[131.70551705517056,-7.4122971618051565],[131.70911709117092,-7.417362893614808],[131.70911709117092,-7.424117202694333],[131.7019170191702,-7.425805779964222],[131.69831698316983,-7.425805779964222],[131.69471694716947,-7.429182934503984],[131.68391683916838,-7.451134439012463],[131.68031680316807,-7.4730859435209425],[131.6767167671677,-7.479840252600468],[131.66951669516698,-7.484905984410119],[131.66231662316625,-7.486594561679993],[131.66951669516698,-7.508546066188472],[131.66231662316625,-7.532186147966826],[131.65151651516516,-7.554137652475305],[131.64431644316443,-7.599729238762137],[131.63351633516334,-7.619992166000728],[131.61911619116194,-7.636877938699556],[131.60111601116012,-7.643632247779095],[131.59751597515975,-7.648697979588732],[131.579515795158,-7.689223834065928],[131.57591575915762,-7.694289565875565],[131.5579155791558,-7.706109606764755],[131.53991539915398,-7.712863915844281],[131.5147151471515,-7.716241070384044],[131.49671496714967,-7.726372534003346],[131.5039150391504,-7.748324038511811],[131.49671496714967,-7.756766924861225],[131.48951489514894,-7.763521233940764],[131.48231482314822,-7.766898388480527],[131.46791467914682,-7.761832656670876],[131.47511475114754,-7.783784161179355],[131.46431464314645,-7.793915624798643],[131.449914499145,-7.800669933878183],[131.44271442714427,-7.805735665687834],[131.43551435514354,-7.814178552037248],[131.38871388713886,-7.846261520165015],[131.38151381513813,-7.85977013832408],[131.38151381513813,-7.873278756483131],[131.37791377913783,-7.891853106451848],[131.36711367113674,-7.903673147341024],[131.35631356313564,-7.912116033690438],[131.34911349113491,-7.9222474973097405],[131.33831338313382,-7.939133270008568],[131.34911349113491,-7.939133270008568],[131.35631356313564,-7.940821847278443],[131.359913599136,-7.947576156357982],[131.35631356313564,-7.956019042707396],[131.34911349113491,-7.964461929056796],[131.34911349113491,-7.969527660866447],[131.34911349113491,-7.976281969945987],[131.34551345513455,-7.986413433565275],[131.33471334713346,-8.001610628994229],[131.3167131671317,-8.018496401693042],[131.29871298712987,-8.025250710772582],[131.29151291512915,-8.011742092613517],[131.3059130591306,-7.97290481540621],[131.30951309513097,-7.954330465437508],[131.30231302313024,-7.945887579088094],[131.2951129511295,-7.942510424548331],[131.28791287912878,-7.93744469273868],[131.28431284312842,-7.9357561154687914],[131.26991269912702,-7.945887579088094],[131.26631266312666,-7.954330465437508],[131.2627126271263,-7.976281969945987],[131.25911259112593,-7.986413433565275],[131.23031230312301,-8.003299206264103],[131.19071190711907,-8.006676360803866],[131.11511115111153,-7.99992205172434],[131.1079110791108,-7.991479165374926],[131.11151111511117,-7.969527660866447],[131.12591125911263,-7.929001806389266],[131.12231122311226,-7.913804610960327],[131.11511115111153,-7.898607415531373],[131.10431104311044,-7.890164529181959],[131.09351093510935,-7.891853106451848],[131.08631086310862,-7.871590179213257],[131.089910899109,-7.849638674704778],[131.10431104311044,-7.829375747466187],[131.1187111871119,-7.815867129307122],[131.1331113311133,-7.815867129307122],[131.1439114391144,-7.820932861116773],[131.15111151111512,-7.822621438386662],[131.1619116191162,-7.809112820227597],[131.1619116191162,-7.798981356608294],[131.15471154711548,-7.792227047528769],[131.14751147511475,-7.7854727384492435],[131.14031140311403,-7.7820955839094665],[131.14031140311403,-7.775341274829941],[131.15831158311585,-7.773652697560053],[131.15831158311585,-7.765209811210639],[131.15111151111512,-7.753389770321462],[131.15471154711548,-7.739881152162397],[131.1439114391144,-7.744946883972048],[131.13671136711366,-7.743258306702174],[131.1331113311133,-7.738192574892523],[131.1331113311133,-7.726372534003346],[131.12591125911263,-7.726372534003346],[131.12591125911263,-7.7331268430828715],[131.1187111871119,-7.7331268430828715],[131.11511115111153,-7.70779818403463],[131.12231122311226,-7.690912411335802],[131.14031140311403,-7.685846679526151],[131.1619116191162,-7.69260098860569],[131.20511205112052,-7.712863915844281],[131.22311223112234,-7.714552493114169],[131.24831248312483,-7.706109606764755],[131.23031230312301,-7.7027324522249785],[131.21231212312125,-7.694289565875565],[131.19431194311943,-7.684158102256276],[131.17991179911797,-7.650386556858621],[131.17991179911797,-7.641943670509207],[131.19071190711907,-7.636877938699556],[131.19071190711907,-7.631812206889904],[131.19431194311943,-7.596352084222374],[131.20151201512016,-7.5794663115235466],[131.22311223112234,-7.545694766125891],[131.23031230312301,-7.5304975706969515],[131.23391233912338,-7.506857488918598],[131.2411124111241,-7.488283138949882],[131.25551255512556,-7.4730859435209425],[131.3167131671317,-7.422428625424459],[131.3275132751328,-7.417362893614808],[131.33471334713346,-7.422428625424459],[131.3419134191342,-7.430871511773873],[131.34551345513455,-7.437625820853398],[131.35631356313564,-7.435937243583524],[131.359913599136,-7.42749435723411],[131.37431374313746,-7.398788543646106],[131.37791377913783,-7.388657080026803],[131.3851138511385,-7.3852799254870405],[131.38871388713886,-7.381902770947278],[131.39231392313923,-7.370082730058087],[131.39231392313923,-7.368394152788213],[131.38871388713886,-7.35826268916891],[131.39231392313923,-7.348131225549622],[131.3959139591396,-7.343065493739971],[131.45351453514536,-7.334622607390557],[131.45351453514536,-7.3278682983110315],[131.449914499145,-7.3194254119616176],[131.449914499145,-7.309293948342315],[131.45351453514536,-7.290719598373613],[131.46431464314645,-7.278899557484422],[131.48231482314822,-7.255259475706069],[131.48591485914858,-7.2451280120867665],[131.48951489514894,-7.236685125737353],[131.4931149311493,-7.229930816657827],[131.50751507515076,-7.226553662118064],[131.52551525515258,-7.224865084848176],[131.53631536315362,-7.223176507578302],[131.54351543515435,-7.219799353038539],[131.53271532715326,-7.19109353945052],[131.52911529115295,-7.17083061221193],[131.53631536315362,-7.153944839513102],[131.5687156871569,-7.1303047577347485],[131.59031590315902,-7.12017329411546],[131.61551615516157,-7.111730407766046],[131.6371163711637,-7.108353253226269],[131.65511655116552,-7.113418985035921],[131.66231662316625,-7.12861618046486],[131.65511655116552,-7.165764880402293],[131.65511655116552,-7.172519189481818],[131.66951669516698,-7.167453457672167],[131.6767167671677,-7.1606991485926414],[131.6911169111691,-7.140436221354051],[131.70551705517056,-7.131993335004637],[131.70911709117092,-7.137059066814274],[131.7127171271713,-7.150567684973339],[131.73791737917378,-7.196159271260171],[131.7451174511745,-7.196159271260171],[131.73791737917378,-7.206290734879474],[131.72711727117274,-7.216422198498762],[131.7127171271713,-7.223176507578302],[131.69831698316983,-7.226553662118064]]],[[[114.04734047340474,-6.914166867189763],[114.06534065340657,-6.922609753539177],[114.09414094140942,-6.93274121715848],[114.10854108541088,-6.946249835317531],[114.12654126541264,-6.981709957985075],[114.09774097740979,-6.983398535254949],[114.05094050940511,-7.012104348842968],[113.98253982539825,-7.0205472351923675],[113.95733957339576,-7.044187316970735],[113.93573935739357,-7.049253048780386],[113.91053910539108,-7.047564471510498],[113.89253892538926,-7.059384512399674],[113.87093870938708,-7.0948446350672185],[113.88533885338853,-7.0999103668768555],[113.89613896138962,-7.110041830496158],[113.89613896138962,-7.12017329411546],[113.87453874538744,-7.12861618046486],[113.83133831338313,-7.131993335004637],[113.77733777337772,-7.125239025925097],[113.70533705337056,-7.113418985035921],[113.68733687336874,-7.113418985035921],[113.66573665736661,-7.110041830496158],[113.64413644136442,-7.1303047577347485],[113.6117361173612,-7.12861618046486],[113.59373593735938,-7.138747644084162],[113.58293582935829,-7.153944839513102],[113.57573575735756,-7.169142034942055],[113.5721357213572,-7.182650653101106],[113.56493564935653,-7.192782116720409],[113.5577355773558,-7.211356466689125],[113.55053550535507,-7.23330797119759],[113.53253532535325,-7.2400622802771295],[113.51453514535149,-7.248505166626543],[113.50733507335076,-7.2400622802771295],[113.49653496534967,-7.229930816657827],[113.47133471334712,-7.221487930308413],[113.42093420934208,-7.226553662118064],[113.26973269732696,-7.2181107757686505],[113.2517325173252,-7.2096678894192365],[113.23373233732337,-7.207979312149348],[113.1869318693187,-7.223176507578302],[113.16533165331657,-7.219799353038539],[113.15813158131584,-7.186027807640883],[113.15453154531548,-7.177584921291469],[113.14733147331475,-7.17083061221193],[113.14733147331475,-7.165764880402293],[113.15813158131584,-7.159010571322753],[113.15813158131584,-7.150567684973339],[113.14733147331475,-7.148879107703465],[113.1221312213122,-7.138747644084162],[113.11493114931153,-7.140436221354051],[113.11133111331117,-7.1522562622432275],[113.11133111331117,-7.17083061221193],[113.10413104131044,-7.179273498561344],[113.11493114931153,-7.19109353945052],[113.13653136531366,-7.202913580339711],[113.14733147331475,-7.214733621228888],[113.14373143731439,-7.226553662118064],[113.12933129331293,-7.231619393927716],[112.81972819728196,-7.1606991485926414],[112.77652776527765,-7.159010571322753],[112.74412744127443,-7.1606991485926414],[112.72612726127261,-7.159010571322753],[112.71892718927188,-7.147190530433576],[112.71532715327152,-7.116796139575683],[112.71892718927188,-7.103287521416632],[112.72612726127261,-7.089778903257567],[112.71892718927188,-7.083024594178028],[112.71172711727121,-7.096533212337093],[112.70092700927012,-7.091467480527442],[112.69372693726939,-7.076270285098502],[112.69372693726939,-7.0576959351298],[112.69372693726939,-7.039121585161084],[112.70092700927012,-7.034055853351433],[112.71532715327152,-7.032367276081558],[112.73332733327334,-7.027301544271907],[112.76212762127625,-7.010415771573079],[112.7909279092791,-6.983398535254949],[112.84492844928451,-6.924298330809066],[112.84132841328415,-6.909101135380112],[112.87372873728737,-6.8972810944909355],[112.91692916929168,-6.892215362681284],[112.94572945729459,-6.89052678541141],[112.98172981729817,-6.89052678541141],[113.0681306813068,-6.880395321792108],[113.14733147331475,-6.893903939951173],[113.27333273332732,-6.892215362681284],[113.44613446134463,-6.882083899061996],[113.52533525335252,-6.895592517221061],[113.67293672936728,-6.878706744522233],[113.79173791737918,-6.882083899061996],[113.92493924939248,-6.865198126363168],[113.96813968139685,-6.8702638581728195],[113.98973989739898,-6.877018167252345],[114.01134011340116,-6.887149630871647],[114.02934029340292,-6.898969671760824],[114.04734047340474,-6.914166867189763]]],[[[148.04968049680497,-5.605519483030676],[148.07128071280715,-5.630848142078918],[148.07848078480788,-5.657865378397034],[148.0676806768068,-5.747359973700824],[148.0460804608046,-5.796328714527419],[148.03888038880388,-5.821657373575661],[148.02808028080284,-5.818280219035898],[148.02448024480248,-5.8149030644961215],[148.02448024480248,-5.821657373575661],[148.02448024480248,-5.835165991734726],[148.02448024480248,-5.841920300814252],[148.01368013680138,-5.840231723544363],[148.00648006480066,-5.841920300814252],[147.99927999279993,-5.846986032623903],[147.9920799207992,-5.855428918973317],[147.98487984879853,-5.84360887808414],[147.98487984879853,-5.8098373326864845],[147.9776797767978,-5.794640137257531],[147.97047970479707,-5.786197250908117],[147.95607956079562,-5.78113151909848],[147.92727927279276,-5.77437721001894],[147.89487894878948,-5.771000055479178],[147.88047880478808,-5.764245746399652],[147.86607866078663,-5.745671396430936],[147.86607866078663,-5.73891708735141],[147.86247862478626,-5.71865416011282],[147.85527855278553,-5.710211273763406],[147.8156781567816,-5.678128305635624],[147.8048780487805,-5.662931110206685],[147.78327783277837,-5.630848142078918],[147.7688776887769,-5.6122737921102015],[147.76527765277655,-5.602142328490913],[147.76527765277655,-5.595388019411374],[147.77247772477727,-5.568370783093258],[147.7688776887769,-5.521090619536537],[147.77247772477727,-5.507582001377472],[147.78327783277837,-5.495761960488295],[147.80847808478086,-5.490696228678644],[147.81927819278195,-5.478876187789467],[147.82287822878232,-5.483941919599118],[147.82647826478268,-5.485630496869007],[147.83007830078304,-5.487319074138881],[147.8336783367834,-5.492384805948532],[147.83727837278371,-5.48900765140877],[147.84087840878408,-5.487319074138881],[147.84447844478444,-5.487319074138881],[147.8480784807848,-5.485630496869007],[147.8588785887859,-5.4974505377581835],[147.88047880478808,-5.522779196806425],[147.89487894878948,-5.534599237695602],[147.90927909279094,-5.541353546775127],[147.9488794887949,-5.548107855854667],[147.97407974079744,-5.558239319473955],[147.99927999279993,-5.57174793763302],[148.04968049680497,-5.605519483030676]]],[[[122.06822068220686,-5.215458133687775],[122.06462064620649,-5.223901020037189],[122.05742057420576,-5.227278174576952],[122.05022050220504,-5.230655329116715],[122.04662046620467,-5.2424753700058915],[122.05022050220504,-5.269492606324022],[122.0538205382054,-5.4315960242327606],[122.04662046620467,-5.451858951471351],[122.03222032220322,-5.465367569630402],[122.01422014220145,-5.465367569630402],[121.99621996219963,-5.461990415090639],[121.98181981819818,-5.468744724170179],[121.96741967419678,-5.468744724170179],[121.93861938619386,-5.421464560613458],[121.92421924219241,-5.40457878791463],[121.90981909819101,-5.399513056104979],[121.89901899018992,-5.399513056104979],[121.89181891818919,-5.397824478835105],[121.8810188101881,-5.391070169755565],[121.87741877418773,-5.382627283406151],[121.87021870218706,-5.360675778897686],[121.82701827018269,-5.2998869971819005],[121.80541805418056,-5.259361142704719],[121.81261812618129,-5.249229679085417],[121.81261812618129,-5.220523865497412],[121.81621816218166,-5.208703824608236],[121.82701827018269,-5.196883783719059],[121.83421834218342,-5.1850637428298825],[121.83781837818378,-5.173243701940706],[121.84141841418415,-5.159735083781641],[121.84501845018451,-5.152980774702115],[121.87381873818737,-5.147915042892464],[121.8810188101881,-5.144537888352701],[121.8810188101881,-5.134406424733399],[121.87381873818737,-5.122586383844222],[121.85221852218524,-5.102323456605632],[121.8666186661867,-5.087126261176678],[121.8810188101881,-5.071929065747739],[121.89901899018992,-5.0617976021284505],[121.91701917019174,-5.055043293048911],[121.90981909819101,-5.0702404884778645],[121.90981909819101,-5.085437683906804],[121.9206192061921,-5.095569147526092],[121.93861938619386,-5.095569147526092],[121.94581945819459,-5.092191992986329],[121.96021960219605,-5.071929065747739],[121.97101971019714,-5.0668633339380875],[121.97821978219781,-5.0702404884778645],[121.98181981819818,-5.078683374827264],[121.99621996219963,-5.137783579273162],[122.01062010620109,-5.152980774702115],[122.03222032220322,-5.149603620162338],[122.04662046620467,-5.164800815591292],[122.05742057420576,-5.17493227921058],[122.06462064620649,-5.190129474639534],[122.06822068220686,-5.215458133687775]]],[[[123.2058320583206,-3.9929281902927016],[123.23463234632345,-4.0148796948011665],[123.25263252632527,-4.050339817468711],[123.25263252632527,-4.089177094676003],[123.23823238232382,-4.122948640073659],[123.1950319503195,-4.187114576329208],[123.16983169831701,-4.220886121726863],[123.13743137431373,-4.2394604716955655],[123.0870308703087,-4.2343947398859285],[123.04383043830438,-4.209066080837687],[123.0078300783008,-4.171917380900268],[122.97902979029789,-4.12801437188331],[122.96822968229685,-4.10775144464472],[122.96102961029612,-4.06553701289765],[122.95022950229503,-4.046962662928948],[122.96102961029612,-4.035142622039757],[122.98622986229861,-4.018256849340929],[122.9970299702997,-4.0064368084517525],[123.01503015030153,-3.9811081494035108],[123.02943029430293,-3.9743538403239853],[123.04743047430475,-3.9794195721336365],[123.0618306183062,-3.986173881213162],[123.08343083430833,-4.0013710766421156],[123.10143101431015,-4.013191117531292],[123.11943119431197,-4.0098139629915295],[123.13383133831337,-3.999682499372227],[123.15903159031592,-3.9929281902927016],[123.18423184231841,-3.9895510357529247],[123.2058320583206,-3.9929281902927016]]],[[[128.33228332283323,-3.511683668376122],[128.35028350283505,-3.5302580183448384],[128.34308343083433,-3.542078059234015],[128.33228332283323,-3.5538981001231917],[128.3250832508325,-3.5707838728220196],[128.32868328683287,-3.59104680006061],[128.3358833588336,-3.6113097272992007],[128.3358833588336,-3.6265069227281543],[128.3106831068311,-3.6349498090775683],[128.30348303483038,-3.63326123180768],[128.2818828188282,-3.621441190918503],[128.26748267482674,-3.616375459108852],[128.26388263882637,-3.6146868818389777],[128.25308253082534,-3.6146868818389777],[128.2458824588246,-3.6197526136486147],[128.24948249482497,-3.63326123180768],[128.27468274682747,-3.6670327772053355],[128.27828278282783,-3.673787086284861],[128.27468274682747,-3.6805413953644006],[128.2566825668257,-3.709247208952405],[128.23508235082352,-3.7227558271114702],[128.21348213482133,-3.7295101361909957],[128.18468184681848,-3.731198713460884],[128.1630816308163,-3.739641599810284],[128.14508145081453,-3.7548387952392375],[128.1270812708127,-3.770035990668177],[128.09828098280985,-3.7734131452079396],[128.10548105481058,-3.7632816815886514],[128.1270812708127,-3.7497730634295863],[128.13068130681307,-3.743018754350061],[128.15228152281526,-3.7024928998728655],[128.2026820268203,-3.668721354475224],[128.22068220682206,-3.648458427236619],[128.2026820268203,-3.6400155408872052],[128.18468184681848,-3.646769849966745],[128.14508145081453,-3.677164240824638],[128.10548105481058,-3.6923614362535773],[128.08028080280803,-3.7075586316825166],[128.05508055080554,-3.712624363492168],[128.04428044280445,-3.717690095301819],[128.02268022680227,-3.736264445270521],[128.0046800468005,-3.7565273725091117],[127.98667986679868,-3.7717245679380653],[127.95427954279546,-3.7734131452079396],[127.93267932679328,-3.7632816815886514],[127.92547925479255,-3.7463959088898235],[127.92187921879218,-3.726132981651233],[127.91107911079109,-3.7024928998728655],[127.91467914679146,-3.6940500135234515],[127.96147961479613,-3.6400155408872052],[127.98307983079832,-3.6197526136486147],[128.03348033480336,-3.589358222790736],[128.0478804788048,-3.5842924909810847],[128.0622806228062,-3.5842924909810847],[128.1486814868149,-3.5876696455208474],[128.159481594816,-3.5842924909810847],[128.24228242282425,-3.5218151319954245],[128.28548285482856,-3.5049293592965967],[128.33228332283323,-3.511683668376122]]],[[[108.29448294482944,-2.8480728013122274],[108.28728287282871,-2.8666471512809295],[108.28008280082804,-2.8801557694399946],[108.26928269282695,-2.890287233059297],[108.26568265682658,-2.900418696678585],[108.25848258482586,-2.925747355726827],[108.21528215282154,-2.978093251093199],[108.20448204482045,-3.005110487411315],[108.20448204482045,-3.0152419510306174],[108.21168211682118,-3.030439146459557],[108.21168211682118,-3.0388820328089707],[108.20808208082082,-3.049013496428273],[108.20088200882009,-3.0692764236668637],[108.19728197281972,-3.0777193100162776],[108.19368193681936,-3.0810964645560404],[108.190081900819,-3.087850773635566],[108.18648186481863,-3.0962936599849797],[108.18288182881832,-3.1047365463343937],[108.18648186481863,-3.1114908554139333],[108.20448204482045,-3.1266880508428727],[108.21168211682118,-3.1351309371922866],[108.18648186481863,-3.136819514462161],[108.15048150481505,-3.1520167098911145],[108.13248132481328,-3.1570824417007657],[108.10728107281074,-3.1570824417007657],[108.08928089280892,-3.1621481735104027],[108.07848078480788,-3.172279637129705],[108.07488074880752,-3.190853987098407],[108.07488074880752,-3.2263141097659513],[108.06408064080642,-3.2313798415756025],[108.03528035280351,-3.2313798415756025],[108.01368013680138,-3.2364455733852537],[107.99567995679956,-3.243199882464779],[107.98127981279816,-3.2398227279250165],[107.97047970479707,-3.2178712234165374],[107.97047970479707,-3.172279637129705],[107.96687966879671,-3.150328132621226],[107.94167941679416,-3.1351309371922866],[107.88767887678875,-3.087850773635566],[107.89127891278912,-3.0861621963656916],[107.89127891278912,-3.079407887286152],[107.88767887678875,-3.0692764236668637],[107.88047880478808,-3.06083353731745],[107.86967869678699,-3.052390650968036],[107.86607866078663,-3.052390650968036],[107.8588785887859,-3.057456382777687],[107.84447844478444,-3.06083353731745],[107.82647826478268,-3.065899269127101],[107.82647826478268,-3.0810964645560404],[107.84087840878408,-3.1081137008741564],[107.84087840878408,-3.145262400811575],[107.81567815678159,-3.167213905320054],[107.75447754477545,-3.199296873447821],[107.6860768607686,-3.197608296177947],[107.65727657276574,-3.233068418845477],[107.63207632076319,-3.2415113051948907],[107.60327603276033,-3.229691264305714],[107.5960759607596,-3.2060511825273608],[107.6068760687607,-3.1773453689393563],[107.63927639276392,-3.131753782652524],[107.64287642876428,-3.128376628112747],[107.63927639276392,-3.1216223190332215],[107.63567635676355,-3.118245164493459],[107.63207632076319,-3.114868009953696],[107.62487624876252,-3.1047365463343937],[107.59967599675997,-3.084473619095803],[107.59247592475924,-3.0743421554765007],[107.59247592475924,-3.062522114587324],[107.5960759607596,-3.0507020736981474],[107.59247592475924,-3.0388820328089707],[107.58887588875888,-3.0287505691896683],[107.58527585275851,-3.0203076828402544],[107.58167581675815,-3.0101762192209662],[107.58167581675815,-2.9983561783317896],[107.58527585275851,-2.9848475601727245],[107.60327603276033,-2.964584632934134],[107.6068760687607,-2.9544531693148315],[107.61047610476106,-2.917304469377413],[107.6068760687607,-2.9139273148376503],[107.58887588875888,-2.917304469377413],[107.56367563675639,-2.9274359329967155],[107.5528755287553,-2.9274359329967155],[107.54567545675457,-2.917304469377413],[107.54927549275493,-2.9054844284882364],[107.55647556475566,-2.8936643875990598],[107.57087570875711,-2.885221501249646],[107.58527585275851,-2.881844346709883],[107.60327603276033,-2.8717128830905807],[107.61047610476106,-2.843007069502576],[107.6068760687607,-2.8126126786446832],[107.59247592475924,-2.785595442326567],[107.6068760687607,-2.780529710516916],[107.62127621276215,-2.770398246897628],[107.63567635676355,-2.758578206008437],[107.64287642876428,-2.7484467423891488],[107.63927639276392,-2.6842808061336],[107.65367653676537,-2.5846547472105215],[107.6716767167672,-2.561014665432168],[107.71127711277114,-2.5525717790827542],[107.72927729277296,-2.5525717790827542],[107.75807758077582,-2.561014665432168],[107.77247772477727,-2.561014665432168],[107.79047790477904,-2.5542603563526427],[107.81927819278195,-2.5323088518441637],[107.83367833678335,-2.525554542764624],[107.8480784807848,-2.5491946245429915],[107.88407884078839,-2.564391819971931],[107.92007920079203,-2.569457551781582],[107.93447934479343,-2.564391819971931],[107.98847988479883,-2.5745232835912333],[108.00648006480066,-2.5795890154008703],[108.01368013680138,-2.591409056290061],[108.0316803168032,-2.6420663743865305],[108.03888038880388,-2.6420663743865305],[108.0460804608046,-2.6150491380684144],[108.05328053280533,-2.603229097179238],[108.06768067680679,-2.594786210829824],[108.09648096480964,-2.608294828988889],[108.10368103681037,-2.6116719835286517],[108.11448114481146,-2.630246333497354],[108.11808118081183,-2.635312065307005],[108.13608136081359,-2.6386892198467677],[108.15048150481505,-2.6505092607359444],[108.15768157681578,-2.665706456164898],[108.16128161281614,-2.682592228863726],[108.18288182881832,-2.674149342514312],[108.19728197281972,-2.6775264970540746],[108.26568265682658,-2.7568896287385627],[108.27648276482768,-2.794038328675981],[108.29088290882908,-2.829498451343511],[108.29448294482944,-2.8480728013122274]]],[[[150.46530465304653,-2.5323088518441637],[150.47250472504726,-2.547506047273103],[150.46530465304653,-2.561014665432168],[150.45450454504544,-2.5745232835912333],[150.45090450904507,-2.591409056290061],[150.45090450904507,-2.608294828988889],[150.45450454504544,-2.62180344714794],[150.4581045810458,-2.6319349107672423],[150.46530465304653,-2.6420663743865305],[150.4581045810458,-2.6538864152757213],[150.45090450904507,-2.6589521470853583],[150.42930429304295,-2.6623293016251353],[150.39330393303936,-2.675837919784186],[150.38250382503827,-2.679215074323963],[150.37170371703718,-2.682592228863726],[150.36450364503645,-2.682592228863726],[150.3609036090361,-2.6724607652444234],[150.35370353703536,-2.6623293016251353],[150.33930339303396,-2.6640178788950095],[150.3249032490325,-2.674149342514312],[150.3141031410314,-2.682592228863726],[150.30690306903068,-2.679215074323963],[150.29970299703,-2.674149342514312],[150.29250292502928,-2.6690836107046607],[150.27810278102783,-2.674149342514312],[150.20250202502024,-2.6775264970540746],[150.19530195301957,-2.679215074323963],[150.18810188101884,-2.679215074323963],[150.17730177301775,-2.675837919784186],[150.17010170101702,-2.6690836107046607],[150.1377013770138,-2.635312065307005],[150.1161011610116,-2.6234920244178284],[150.10530105301052,-2.616737715338303],[150.09090090900912,-2.5660803972418194],[150.0477004770048,-2.51711165641521],[150.03330033300335,-2.5052916155260334],[150.0081000810008,-2.512045924605573],[149.97929979299795,-2.498537306446508],[149.95769957699576,-2.4782743792079174],[149.95769957699576,-2.463077183778964],[149.9648996489965,-2.459700029239201],[149.97209972099722,-2.463077183778964],[149.97929979299795,-2.468142915588615],[149.98649986499868,-2.4698314928585035],[149.9936999369994,-2.4664543383187407],[150.06570065700657,-2.415797020222257],[150.0837008370084,-2.4141084429523687],[150.09810098100985,-2.4141084429523687],[150.10890108901089,-2.4124198656824944],[150.11970119701198,-2.405665556602955],[150.15930159301593,-2.392156938443904],[150.15930159301593,-2.388779783904127],[150.17370173701738,-2.3870912066342527],[150.1917019170192,-2.3769597430149503],[150.2061020610206,-2.375271165745076],[150.23130231302315,-2.38371405209449],[150.28530285302855,-2.415797020222257],[150.30690306903068,-2.415797020222257],[150.3141031410314,-2.4208627520319084],[150.34290342903432,-2.432682792921085],[150.350103501035,-2.4360599474608478],[150.35370353703536,-2.437748524730736],[150.36450364503645,-2.4478799883500244],[150.3681036810368,-2.451257142889787],[150.39690396903973,-2.4563228746994383],[150.42210422104222,-2.4664543383187407],[150.44730447304477,-2.485028688287443],[150.4581045810458,-2.5086687700658103],[150.45090450904507,-2.539063160923689],[150.46170461704617,-2.533997429114038],[150.46530465304653,-2.5323088518441637]]],[[[147.4340743407434,-1.983521239132287],[147.44127441274412,-1.9902755482118124],[147.44487444874449,-2.005472743640766],[147.44127441274412,-2.0358671344986448],[147.4304743047431,-2.0611957935468865],[147.40167401674017,-2.0662615253565377],[147.3656736567366,-2.0645729480866493],[147.3332733327333,-2.0662615253565377],[147.33687336873368,-2.0611957935468865],[147.34767347673477,-2.045998598117947],[147.32607326073264,-2.045998598117947],[147.31527315273155,-2.0510643299275984],[147.31167311673119,-2.062884370816775],[147.30447304473046,-2.079770143515603],[147.3008730087301,-2.079770143515603],[147.290072900729,-2.0645729480866493],[147.28287282872827,-2.081458720785477],[147.2756727567276,-2.1084759571036074],[147.2756727567276,-2.1219845752626725],[147.2648726487265,-2.130427461612072],[147.23247232472323,-2.1709533160892676],[147.21807218072183,-2.182773356978444],[147.20727207272074,-2.186150511518207],[147.19647196471965,-2.186150511518207],[147.18927189271892,-2.186150511518207],[147.17487174871752,-2.182773356978444],[147.13887138871388,-2.1658875842796164],[147.13167131671315,-2.1625104297398536],[147.11007110071102,-2.167576161549505],[147.07047070470708,-2.1878390887880954],[147.04527045270453,-2.1895276660579697],[147.04527045270453,-2.186150511518207],[147.04527045270453,-2.182773356978444],[147.05247052470526,-2.1760190478989188],[147.02007020070204,-2.186150511518207],[146.98766987669876,-2.1929048205977324],[146.95526955269554,-2.194593397867621],[146.840068400684,-2.1760190478989188],[146.83646836468364,-2.1743304706290303],[146.8292682926829,-2.164199007009728],[146.82206822068224,-2.1625104297398536],[146.8148681486815,-2.164199007009728],[146.80766807668078,-2.167576161549505],[146.80406804068042,-2.169264738819379],[146.7968679686797,-2.1658875842796164],[146.78966789667896,-2.159133275200091],[146.78246782467824,-2.1523789661205512],[146.77526775267756,-2.1490018115807885],[146.76806768067684,-2.145624657041026],[146.7608676086761,-2.1321160388819607],[146.75726757267574,-2.1270503070723095],[146.75006750067502,-2.1236731525325467],[146.74646746467465,-2.1219845752626725],[146.72846728467283,-2.1219845752626725],[146.70326703267034,-2.1135416889132586],[146.6960669606696,-2.115230266183133],[146.69246692466925,-2.1236731525325467],[146.69246692466925,-2.1321160388819607],[146.6960669606696,-2.138870347961486],[146.7068670686707,-2.142247502501263],[146.72126721267216,-2.1490018115807885],[146.72846728467283,-2.1625104297398536],[146.72846728467283,-2.1760190478989188],[146.71406714067143,-2.182773356978444],[146.67446674466748,-2.1895276660579697],[146.65646656466566,-2.186150511518207],[146.64926649266494,-2.169264738819379],[146.62766627666275,-2.177707625168793],[146.609666096661,-2.1810847797085557],[146.5988659886599,-2.1895276660579697],[146.5880658806588,-2.224987788725514],[146.57006570065704,-2.2283649432652766],[146.55206552065522,-2.2199220569158626],[146.53766537665376,-2.203036284217035],[146.53046530465303,-2.1895276660579697],[146.519665196652,-2.1490018115807885],[146.519665196652,-2.138870347961486],[146.53766537665376,-2.120295997992784],[146.5448654486545,-2.1135416889132586],[146.5628656286563,-2.120295997992784],[146.5736657366574,-2.120295997992784],[146.60606606066062,-2.11185311164337],[146.61326613266135,-2.11185311164337],[146.61686616866172,-2.106787379833719],[146.62046620466208,-2.0932787616746538],[146.61686616866172,-2.0831472980553656],[146.61326613266135,-2.071327257166189],[146.5880658806588,-2.040932866308296],[146.58446584465844,-2.0308014026889936],[146.58086580865807,-2.0206699390697054],[146.58086580865807,-2.0088498981805287],[146.58086580865807,-1.9953412800214636],[146.58446584465844,-1.9919641254817009],[146.5988659886599,-1.9987184345612263],[146.60246602466026,-2.002095589100989],[146.609666096661,-2.0088498981805287],[146.61686616866172,-2.01391562999018],[146.62766627666275,-2.0122270527202915],[146.63126631266312,-2.0037841663708775],[146.63846638466384,-1.9767669300527473],[146.64566645666457,-1.9700126209732218],[146.64926649266494,-1.9683240437033334],[146.64926649266494,-1.966635466433459],[146.6528665286653,-1.9649468891635706],[146.65646656466566,-1.9632583118936964],[146.6636666366664,-1.9649468891635706],[146.67446674466748,-1.975078352782873],[146.6780667806678,-1.9784555073226358],[146.68886688866888,-1.9767669300527473],[146.7068670686707,-1.9717011982431103],[146.7176671766718,-1.9700126209732218],[146.72846728467283,-1.9733897755129846],[146.75366753667538,-1.9818326618623985],[146.76806768067684,-1.983521239132287],[146.77886778867787,-1.9801440845925242],[146.81846818468188,-1.9565040028141567],[146.84726847268473,-1.9480611164647428],[146.86886868868692,-1.9463725391948685],[146.8940689406894,-1.9514382710045197],[146.9156691566916,-1.9632583118936964],[146.94086940869408,-1.9548154255442824],[147.11007110071102,-1.9632583118936964],[147.12087120871212,-1.9683240437033334],[147.13167131671315,-1.9801440845925242],[147.14247142471424,-1.9936527027515751],[147.1460714607146,-2.005472743640766],[147.15327153271534,-2.005472743640766],[147.16047160471607,-1.9885869709419381],[147.17127171271716,-1.9801440845925242],[147.1820718207182,-1.9801440845925242],[147.18927189271892,-1.9868983936720497],[147.19647196471965,-1.9987184345612263],[147.2108721087211,-2.000407011831115],[147.2360723607236,-1.9987184345612263],[147.27927279272797,-2.015604207260054],[147.28647286472864,-2.015604207260054],[147.29367293672937,-2.018981361799817],[147.3332733327333,-2.032489979958882],[147.34767347673477,-2.0291128254191193],[147.37647376473768,-2.0291128254191193],[147.40167401674017,-2.0341785572287705],[147.41607416074163,-2.045998598117947],[147.42327423274236,-2.045998598117947],[147.42327423274236,-2.018981361799817],[147.419674196742,-2.010538475450403],[147.4088740887409,-1.9936527027515751],[147.4088740887409,-1.9868983936720497],[147.40167401674017,-1.9784555073226358],[147.38727387273872,-1.9683240437033334],[147.38007380073805,-1.961569734623808],[147.39447394473945,-1.9565040028141567],[147.40527405274054,-1.9632583118936964],[147.42327423274236,-1.9801440845925242],[147.4340743407434,-1.983521239132287]]],[[[126.33066330663308,-1.8197292439536596],[126.34146341463418,-1.8197292439536596],[126.34506345063454,-1.8180406666837854],[126.34506345063454,-1.829860707572962],[126.33426334263345,-1.838303593922376],[126.27306273062732,-1.8670094075103805],[126.25866258662586,-1.8686979847802547],[126.22266222662228,-1.8670094075103805],[126.20106201062009,-1.8703865620501432],[126.19026190261906,-1.873763716589906],[126.18666186661869,-1.8771408711296687],[126.17946179461796,-1.8838951802092083],[126.16866168661687,-1.8855837574790826],[126.14346143461438,-1.8822066029393199],[126.06066060660606,-1.8889609120188595],[126.04986049860497,-1.8906494892887338],[126.02466024660248,-1.9024695301779104],[125.99225992259926,-1.9007809529080362],[125.98145981459817,-1.9024695301779104],[125.94905949059489,-1.922732457416501],[125.92745927459276,-1.931175343765915],[125.90945909459094,-1.926109611956278],[125.88785887858882,-1.90922383925745],[125.87345873458736,-1.9024695301779104],[125.85545855458554,-1.904158107447799],[125.78705787057874,-1.9193553028767383],[125.62145621456216,-1.9159781483369756],[125.59985599855997,-1.9193553028767383],[125.5530555305553,-1.9328639210358034],[125.53145531455317,-1.9362410755755661],[125.4846548465485,-1.9362410755755661],[125.47025470254704,-1.9379296528454546],[125.43065430654309,-1.9497496937346313],[125.43785437854382,-1.9328639210358034],[125.44145441454418,-1.9126009937972128],[125.43785437854382,-1.895715221098385],[125.43065430654309,-1.8822066029393199],[125.42345423454236,-1.8754522938597944],[125.38025380253805,-1.8535007893513153],[125.37305373053732,-1.8585665211609665],[125.3658536585366,-1.8771408711296687],[125.3550535505355,-1.8822066029393199],[125.34785347853477,-1.8771408711296687],[125.3406534065341,-1.8686979847802547],[125.33705337053374,-1.8585665211609665],[125.33705337053374,-1.8501236348115526],[125.33705337053374,-1.8281721303030736],[125.34785347853477,-1.8112863576042457],[125.36225362253623,-1.8028434712548318],[125.37665376653769,-1.799466316715069],[125.38025380253805,-1.7893348530957809],[125.38385383853841,-1.780891966746367],[125.39105391053914,-1.7758262349367158],[125.40185401854018,-1.7741376576668273],[125.4090540905409,-1.7792033894764785],[125.42345423454236,-1.7944005849054179],[125.43065430654309,-1.7977777394451806],[125.44145441454418,-1.7977777394451806],[125.45945459454595,-1.7927120076355436],[125.4738547385474,-1.780891966746367],[125.4846548465485,-1.77751481220659],[125.48825488254886,-1.7825805440162412],[125.48825488254886,-1.7910234303656551],[125.48825488254886,-1.7977777394451806],[125.49185491854922,-1.8028434712548318],[125.49545495454953,-1.8062206257945945],[125.56025560255603,-1.7977777394451806],[125.58905589055894,-1.799466316715069],[125.61065610656107,-1.8129749348741342],[125.62505625056252,-1.8095977803343715],[125.70425704257042,-1.8197292439536596],[125.71145711457115,-1.8180406666837854],[125.72225722257224,-1.8146635121440085],[125.7366573665737,-1.807909203064483],[125.75465754657546,-1.7944005849054179],[125.76545765457655,-1.7944005849054179],[125.78705787057874,-1.799466316715069],[125.83025830258305,-1.8011548939849575],[125.94545945459458,-1.785957698556004],[125.99225992259926,-1.785957698556004],[126.11826118261183,-1.8062206257945945],[126.28746287462877,-1.8129749348741342],[126.33066330663308,-1.8197292439536596]]],[[[130.3879038790388,-1.8889609120188595],[130.35550355503557,-1.9126009937972128],[130.34470344703448,-1.9277981892261522],[130.43470434704346,-1.9632583118936964],[130.43830438304383,-1.9767669300527473],[130.4311043110431,-1.9801440845925242],[130.4167041670417,-1.9801440845925242],[130.4059040590406,-1.983521239132287],[130.39870398703988,-1.9902755482118124],[130.39510395103952,-1.9953412800214636],[130.39150391503915,-2.000407011831115],[130.38430384303842,-2.0088498981805287],[130.3735037350374,-2.0122270527202915],[130.36630366303666,-2.0088498981805287],[130.35910359103593,-2.002095589100989],[130.34830348303484,-1.9987184345612263],[130.3411034110341,-1.9936527027515751],[130.3411034110341,-1.983521239132287],[130.3411034110341,-1.9733897755129846],[130.34470344703448,-1.9700126209732218],[130.34470344703448,-1.9649468891635706],[130.3411034110341,-1.9548154255442824],[130.33750337503375,-1.9497496937346313],[130.32670326703266,-1.9598811573539336],[130.3087030870309,-1.9919641254817009],[130.30150301503016,-1.9987184345612263],[130.2871028710287,-2.0037841663708775],[130.27630276302762,-2.018981361799817],[130.26550265502658,-2.0358671344986448],[130.2547025470255,-2.045998598117947],[130.22230222302227,-2.057818639007124],[130.1539015390154,-2.0595072162770123],[130.1251012510125,-2.0662615253565377],[130.11790117901182,-2.0595072162770123],[130.11430114301146,-2.0527529071974726],[130.10710107101073,-2.04937575265771],[130.09990099901,-2.045998598117947],[130.10710107101073,-2.040932866308296],[130.11430114301146,-2.0392442890384075],[130.08550085500855,-2.0257356708793566],[130.06750067500678,-2.0223585163395796],[130.01350013500138,-2.0257356708793566],[129.97029970299707,-2.005472743640766],[129.9270992709927,-2.0037841663708775],[129.91629916299166,-2.002095589100989],[129.90549905499057,-1.9936527027515751],[129.8730987309873,-1.9818326618623985],[129.85509855098553,-1.9700126209732218],[129.84069840698407,-1.9632583118936964],[129.83349833498335,-1.9598811573539336],[129.81549815498158,-1.9413068073852173],[129.81189811898122,-1.9362410755755661],[129.7686976869769,-1.917666725606864],[129.74349743497436,-1.9126009937972128],[129.73269732697327,-1.904158107447799],[129.7146971469715,-1.8822066029393199],[129.74349743497436,-1.8636322529706177],[129.8730987309873,-1.8197292439536596],[129.87669876698766,-1.816352089413897],[129.87669876698766,-1.8112863576042457],[129.87669876698766,-1.807909203064483],[129.88029880298802,-1.8062206257945945],[129.89469894698948,-1.7960891621753063],[129.90549905499057,-1.7944005849054179],[129.9378993789938,-1.7893348530957809],[129.95949959499598,-1.780891966746367],[130.01350013500138,-1.750497575888474],[130.03150031500314,-1.7437432668089343],[130.05310053100533,-1.7386775349992973],[130.09630096300964,-1.7353003804595346],[130.1359013590136,-1.7251689168402322],[130.16110161101614,-1.7234803395703437],[130.2187021870219,-1.7353003804595346],[130.2331023310233,-1.7336118031896461],[130.24750247502476,-1.7184146077607068],[130.26910269102694,-1.7049059896016416],[130.29070290702907,-1.6913973714425765],[130.32310323103235,-1.6795773305533999],[130.33390333903338,-1.6762001760136371],[130.34470344703448,-1.6762001760136371],[130.3519035190352,-1.6795773305533999],[130.35550355503557,-1.6947745259823392],[130.3519035190352,-1.74205468953906],[130.4059040590406,-1.7792033894764785],[130.4167041670417,-1.7927120076355436],[130.4311043110431,-1.8146635121440085],[130.43830438304383,-1.8349264393826132],[130.43830438304383,-1.8501236348115526],[130.42750427504274,-1.8551893666212038],[130.42030420304206,-1.8551893666212038],[130.4167041670417,-1.8585665211609665],[130.41310413104134,-1.8822066029393199],[130.4059040590406,-1.8855837574790826],[130.39870398703988,-1.8855837574790826],[130.3879038790388,-1.8889609120188595]]],[[[125.31545315453155,-1.7792033894764785],[125.31905319053192,-1.7927120076355436],[125.32265322653228,-1.8636322529706177],[125.31905319053192,-1.8822066029393199],[125.30825308253083,-1.8855837574790826],[125.27225272252724,-1.873763716589906],[125.25065250652506,-1.873763716589906],[125.18945189451898,-1.8822066029393199],[125.17865178651789,-1.8805180256694456],[125.1570515705157,-1.8754522938597944],[125.14625146251461,-1.873763716589906],[125.13905139051394,-1.8771408711296687],[125.12105121051212,-1.8906494892887338],[125.11025110251103,-1.895715221098385],[125.09225092250921,-1.8940266438284965],[125.07065070650708,-1.8889609120188595],[125.0490504905049,-1.887272334748971],[125.03105031050313,-1.8990923756381477],[125.0238502385024,-1.9159781483369756],[125.02025020250204,-1.9328639210358034],[125.01305013050131,-1.94468396192498],[124.98784987849882,-1.9429953846551058],[124.95904959049591,-1.922732457416501],[124.94464944649445,-1.9193553028767383],[124.9158491584916,-1.922732457416501],[124.89064890648905,-1.917666725606864],[124.85464854648546,-1.8974037983682734],[124.82944829448297,-1.895715221098385],[124.78624786247866,-1.9075352619875616],[124.71064710647107,-1.953126848274394],[124.67104671046712,-1.9700126209732218],[124.58104581045814,-1.9936527027515751],[124.56664566645668,-2.002095589100989],[124.55584555845559,-2.005472743640766],[124.54144541445413,-2.0071613209106403],[124.51264512645128,-2.005472743640766],[124.45144451444514,-2.0122270527202915],[124.42984429844302,-2.0122270527202915],[124.40464404644047,-2.0037841663708775],[124.39744397443974,-1.9919641254817009],[124.39384393843937,-1.975078352782873],[124.33624336243366,-1.887272334748971],[124.32904329043294,-1.8703865620501432],[124.3326433264333,-1.8264835530331993],[124.33984339843397,-1.807909203064483],[124.35424354243543,-1.7893348530957809],[124.36864368643688,-1.750497575888474],[124.37224372243725,-1.7049059896016416],[124.3866438664387,-1.6677572896642232],[124.42624426244265,-1.6559372487750466],[124.44064440644405,-1.654248671505158],[124.48744487444878,-1.6458057851557442],[124.50184501845018,-1.6390514760762187],[124.519845198452,-1.6255428579171536],[124.52704527045273,-1.6255428579171536],[124.5306453064531,-1.6356743215364418],[124.52704527045273,-1.6559372487750466],[124.55584555845559,-1.640740053346093],[124.59184591845917,-1.6339857442665675],[124.63144631446318,-1.6306085897268048],[124.68904689046889,-1.6390514760762187],[124.72864728647289,-1.6508715169653954],[124.74304743047429,-1.6593144033148093],[124.75744757447575,-1.6643801351244605],[124.81504815048152,-1.6694458669340975],[124.87264872648728,-1.693085948712465],[124.93744937449378,-1.7032174123317532],[124.94464944649445,-1.7032174123317532],[124.95184951849518,-1.698151680522102],[124.95544955449554,-1.6964631032522277],[124.95904959049591,-1.698151680522102],[124.969849698497,-1.706594566871516],[124.97344973449736,-1.7099717214112928],[124.99864998649986,-1.7167260304908183],[125.00945009450095,-1.7167260304908183],[125.0238502385024,-1.7234803395703437],[125.0346503465035,-1.7521861531583482],[125.0490504905049,-1.7656947713174134],[125.0490504905049,-1.7606290395077622],[125.05265052650526,-1.7572518849679994],[125.05625056250562,-1.7521861531583482],[125.06705067050672,-1.7606290395077622],[125.08145081450817,-1.7640061940475391],[125.09585095850957,-1.7640061940475391],[125.11025110251103,-1.758940462237888],[125.09945099450994,-1.7538747304282367],[125.09585095850957,-1.7521861531583482],[125.1030510305103,-1.7369889577294089],[125.1138511385114,-1.6913973714425765],[125.12105121051212,-1.6829544850931626],[125.13185131851321,-1.684643062363051],[125.13905139051394,-1.689708794172688],[125.14265142651425,-1.6947745259823392],[125.14985149851498,-1.698151680522102],[125.18585185851862,-1.7032174123317532],[125.19665196651965,-1.7217917623004695],[125.19665196651965,-1.7437432668089343],[125.19305193051929,-1.7825805440162412],[125.19665196651965,-1.7893348530957809],[125.20745207452075,-1.7910234303656551],[125.2218522185222,-1.7893348530957809],[125.22545225452257,-1.7825805440162412],[125.22905229052293,-1.772449080396953],[125.2326523265233,-1.7606290395077622],[125.23985239852402,-1.7454318440788228],[125.25425254252542,-1.7336118031896461],[125.26865268652688,-1.728546071379995],[125.28305283052833,-1.7302346486498834],[125.29745297452973,-1.74205468953906],[125.3010530105301,-1.750497575888474],[125.29385293852937,-1.7606290395077622],[125.2866528665287,-1.7707605031270646],[125.27945279452797,-1.7825805440162412],[125.28305283052833,-1.785957698556004],[125.30465304653046,-1.77751481220659],[125.31545315453155,-1.7792033894764785]]],[[[136.84996849968502,-1.7656947713174134],[136.90036900369006,-1.7944005849054179],[136.90036900369006,-1.799466316715069],[136.88956889568897,-1.8028434712548318],[136.88236882368824,-1.816352089413897],[136.87156871568715,-1.8197292439536596],[136.79596795967961,-1.8214178212235481],[136.75996759967603,-1.8264835530331993],[136.73116731167312,-1.8264835530331993],[136.7239672396724,-1.829860707572962],[136.7239672396724,-1.8399921711922502],[136.71676716767166,-1.84674648027179],[136.70596705967063,-1.8518122120814269],[136.68436684366844,-1.856877943891078],[136.67356673566735,-1.8619436757007293],[136.66636666366662,-1.8686979847802547],[136.6555665556656,-1.873763716589906],[136.6447664476645,-1.8771408711296687],[136.5547655476555,-1.8670094075103805],[136.53316533165332,-1.8670094075103805],[136.53316533165332,-1.873763716589906],[136.54036540365405,-1.8788294483995571],[136.54756547565478,-1.8889609120188595],[136.54756547565478,-1.8974037983682734],[136.5367653676537,-1.9024695301779104],[136.5259652596526,-1.9007809529080362],[136.50796507965083,-1.8906494892887338],[136.49716497164974,-1.8889609120188595],[136.48636486364865,-1.8889609120188595],[136.46476464764646,-1.8940266438284965],[136.45396453964543,-1.895715221098385],[136.44316443164433,-1.8923380665586222],[136.41436414364142,-1.8822066029393199],[136.39636396363966,-1.8788294483995571],[136.3567635676357,-1.8636322529706177],[136.3387633876339,-1.8602550984308408],[136.33156331563316,-1.8636322529706177],[136.32436324363243,-1.8720751393200317],[136.3171631716317,-1.873763716589906],[136.3171631716317,-1.8754522938597944],[136.30996309963103,-1.8754522938597944],[136.29916299162994,-1.8754522938597944],[136.29916299162994,-1.873763716589906],[136.2919629196292,-1.8805180256694456],[136.28476284762849,-1.887272334748971],[136.27756277562776,-1.895715221098385],[136.2739627396274,-1.90922383925745],[136.26676266762667,-1.90922383925745],[136.259562595626,-1.8974037983682734],[136.25236252362527,-1.8923380665586222],[136.24156241562417,-1.8940266438284965],[136.23076230762308,-1.9024695301779104],[136.21636216362162,-1.873763716589906],[136.1839618396184,-1.8551893666212038],[136.10836108361087,-1.8399921711922502],[136.09756097560978,-1.8399921711922502],[136.0759607596076,-1.8416807484621387],[136.06876068760687,-1.8399921711922502],[136.05796057960583,-1.8349264393826132],[136.04356043560438,-1.8214178212235481],[136.03636036360365,-1.8197292439536596],[136.01476014760146,-1.8180406666837854],[135.9967599675997,-1.8146635121440085],[135.98235982359824,-1.807909203064483],[135.95715957159575,-1.7927120076355436],[135.91395913959138,-1.772449080396953],[135.90315903159035,-1.769071925857176],[135.89595895958962,-1.7572518849679994],[135.8779587795878,-1.7538747304282367],[135.8347583475835,-1.7521861531583482],[135.81675816758167,-1.7454318440788228],[135.78435784357845,-1.728546071379995],[135.74835748357486,-1.7234803395703437],[135.74115741157414,-1.720103185030581],[135.72675726757268,-1.706594566871516],[135.71955719557195,-1.7032174123317532],[135.70515705157055,-1.7049059896016416],[135.6907569075691,-1.7099717214112928],[135.679956799568,-1.7049059896016416],[135.6691566915669,-1.6947745259823392],[135.6547565475655,-1.689708794172688],[135.64755647556478,-1.693085948712465],[135.63315633156333,-1.6998402577919904],[135.6151561515615,-1.7049059896016416],[135.60435604356047,-1.6998402577919904],[135.57915579155792,-1.684643062363051],[135.55395553955543,-1.6829544850931626],[135.52515525155252,-1.6863316396329253],[135.49635496354966,-1.6829544850931626],[135.48555485554857,-1.6745115987437487],[135.4819548195482,-1.6660687123943347],[135.47835478354784,-1.6559372487750466],[135.47115471154711,-1.6424286306159814],[135.46755467554675,-1.640740053346093],[135.449554495545,-1.6424286306159814],[135.44235442354426,-1.6424286306159814],[135.44235442354426,-1.6356743215364418],[135.4387543875439,-1.627231435187042],[135.43515435154353,-1.6187885488376281],[135.4279542795428,-1.613722817027977],[135.42075420754207,-1.6103456624882142],[135.43515435154353,-1.6035913534086745],[135.449554495545,-1.596837044329149],[135.45675456754566,-1.596837044329149],[135.4639546395464,-1.5900827352496094],[135.47835478354784,-1.5900827352496094],[135.5827558275583,-1.613722817027977],[135.7879578795788,-1.6289200124569163],[135.85635856358567,-1.6441172078858557],[135.89595895958962,-1.6474943624256326],[135.95715957159575,-1.632297166996679],[136.03276032760328,-1.6525600942352696],[136.06156061560614,-1.6424286306159814],[136.09756097560978,-1.654248671505158],[136.19116191161913,-1.654248671505158],[136.23076230762308,-1.662691557854572],[136.2379623796238,-1.6660687123943347],[136.24516245162454,-1.6778887532835114],[136.25236252362527,-1.6829544850931626],[136.2631626316263,-1.6829544850931626],[136.28836288362885,-1.6812659078232883],[136.29556295562958,-1.6863316396329253],[136.31356313563134,-1.698151680522102],[136.33156331563316,-1.7099717214112928],[136.36756367563675,-1.7234803395703437],[136.38916389163893,-1.7251689168402322],[136.45396453964543,-1.7167260304908183],[136.61956619566195,-1.7386775349992973],[136.70596705967063,-1.7302346486498834],[136.7239672396724,-1.7336118031896461],[136.75996759967603,-1.7488089986185855],[136.7779677796778,-1.7521861531583482],[136.81396813968144,-1.7538747304282367],[136.8319683196832,-1.758940462237888],[136.84996849968502,-1.7656947713174134]]],[[[106.76806768067684,-2.561014665432168],[106.81486814868151,-2.561014665432168],[106.83286832868328,-2.5660803972418194],[106.83286832868328,-2.5795890154008703],[106.8256682566826,-2.58634332448041],[106.81846818468188,-2.58634332448041],[106.81126811268115,-2.5846547472105215],[106.80046800468006,-2.58634332448041],[106.76446764467647,-2.604917674449112],[106.75366753667538,-2.608294828988889],[106.73926739267392,-2.6150491380684144],[106.72126721267216,-2.6285577562274796],[106.67446674466748,-2.6994780015625537],[106.61326613266135,-2.8700243058207064],[106.60246602466026,-2.9105501602978876],[106.61326613266135,-2.942633128425655],[106.64926649266494,-2.964584632934134],[106.66006660066603,-2.966273210204008],[106.67446674466748,-2.966273210204008],[106.68166681666816,-2.9713389420136593],[106.69246692466925,-2.9797818283630733],[106.69966699666998,-2.988224714712487],[106.7068670686707,-2.994979023792027],[106.72126721267216,-2.9983561783317896],[106.73926739267392,-3.005110487411315],[106.74646746467465,-3.0203076828402544],[106.74646746467465,-3.0388820328089707],[106.73926739267392,-3.05407922823791],[106.74646746467465,-3.0692764236668637],[106.75366753667538,-3.0743421554765007],[106.74286742867429,-3.0810964645560404],[106.73566735667356,-3.076030732746389],[106.72846728467283,-3.0827850418259146],[106.72126721267216,-3.0895393509054543],[106.7068670686707,-3.0946050827151055],[106.69966699666998,-3.092916505445217],[106.69246692466925,-3.087850773635566],[106.68526685266852,-3.0861621963656916],[106.67086670866712,-3.0962936599849797],[106.66366663666639,-3.092916505445217],[106.66006660066603,-3.084473619095803],[106.65646656466566,-3.0810964645560404],[106.60246602466026,-3.070965000936738],[106.5736657366574,-3.076030732746389],[106.56646566465668,-3.101359391794631],[106.55566555665558,-3.0962936599849797],[106.55206552065522,-3.0946050827151055],[106.53046530465303,-3.106425123604282],[106.51606516065164,-3.0946050827151055],[106.50886508865091,-3.0726535782066264],[106.50526505265054,-3.0507020736981474],[106.49806498064981,-3.0388820328089707],[106.48726487264872,-3.030439146459557],[106.4656646566466,-3.0152419510306174],[106.45846458464587,-3.005110487411315],[106.44766447664477,-2.9814704056329617],[106.43686436864368,-2.9713389420136593],[106.41526415264156,-2.966273210204008],[106.36846368463688,-2.966273210204008],[106.35046350463506,-2.961207478394371],[106.30366303663038,-2.9139273148376503],[106.0948609486095,-2.841318492232702],[106.07326073260731,-2.8362527604230507],[106.00126001260014,-2.8311870286133995],[105.98685986859869,-2.821055564994097],[105.92205922059219,-2.7163637742613815],[105.90765907659079,-2.674149342514312],[105.90045900459006,-2.6285577562274796],[105.91125911259115,-2.58634332448041],[105.93285932859328,-2.542440315463452],[105.94365943659437,-2.498537306446508],[105.92925929259292,-2.4563228746994383],[105.8968589685897,-2.4360599474608478],[105.86085860858611,-2.4208627520319084],[105.82845828458284,-2.3955340929836666],[105.8176581765818,-2.3482539294269458],[105.82485824858247,-2.317859538569053],[105.82485824858247,-2.3077280749497646],[105.82485824858247,-2.2975966113304622],[105.81405814058144,-2.282399415901523],[105.81045810458107,-2.265513643202695],[105.79965799657998,-2.2452507159641044],[105.79965799657998,-2.235119252344802],[105.79965799657998,-2.2013477069471463],[105.79605796057962,-2.172641893359142],[105.78885788857889,-2.159133275200091],[105.78165781657816,-2.150690388850677],[105.7636576365764,-2.142247502501263],[105.74925749257494,-2.1354931934217234],[105.68805688056881,-2.1270503070723095],[105.68445684456844,-2.125361729802435],[105.67365673656735,-2.1169188434530213],[105.67005670056699,-2.115230266183133],[105.66285662856632,-2.115230266183133],[105.65205652056522,-2.120295997992784],[105.64845648456486,-2.1219845752626725],[105.61605616056164,-2.1169188434530213],[105.60885608856091,-2.115230266183133],[105.59445594455946,-2.103410225293956],[105.57645576455764,-2.076392988975826],[105.5656556565566,-2.0662615253565377],[105.54045540455405,-2.081458720785477],[105.49005490054901,-2.098344493484305],[105.46845468454683,-2.1084759571036074],[105.45045450454506,-2.1219845752626725],[105.43965439654397,-2.1236731525325467],[105.42165421654215,-2.1219845752626725],[105.35685356853571,-2.1219845752626725],[105.30645306453067,-2.1354931934217234],[105.29925299252994,-2.1321160388819607],[105.29205292052922,-2.1270503070723095],[105.27045270452703,-2.0949673389445422],[105.26685266852667,-2.088213029865017],[105.23085230852308,-2.0696386798963005],[105.21285212852132,-2.0662615253565377],[105.18045180451804,-2.0696386798963005],[105.16245162451628,-2.0747044117059517],[105.14805148051482,-2.079770143515603],[105.12645126451264,-2.0443100208480587],[105.12645126451264,-2.0037841663708775],[105.13725137251373,-1.9649468891635706],[105.15525155251555,-1.9362410755755661],[105.1840518405184,-1.917666725606864],[105.29925299252994,-1.873763716589906],[105.37485374853748,-1.8214178212235481],[105.40365403654039,-1.7825805440162412],[105.3928539285393,-1.7386775349992973],[105.35685356853571,-1.7150374532209298],[105.33525335253353,-1.698151680522102],[105.34245342453426,-1.689708794172688],[105.34965349653498,-1.6863316396329253],[105.34965349653498,-1.6778887532835114],[105.34605346053462,-1.6593144033148093],[105.34965349653498,-1.6491829396955069],[105.36045360453608,-1.6441172078858557],[105.37125371253711,-1.640740053346093],[105.37845378453784,-1.6356743215364418],[105.3820538205382,-1.6289200124569163],[105.38925389253893,-1.613722817027977],[105.3928539285393,-1.6069685079484373],[105.40005400054002,-1.6069685079484373],[105.41445414454148,-1.6069685079484373],[105.41805418054179,-1.6035913534086745],[105.46125461254616,-1.5630654989314934],[105.47205472054719,-1.5579997671218422],[105.51885518855187,-1.5596883443917307],[105.53685536855369,-1.5546226125820795],[105.54765547655478,-1.5495568807724283],[105.55485554855551,-1.5411139944230143],[105.5656556565566,-1.5326711080736004],[105.59445594455946,-1.525916798994075],[105.61245612456128,-1.53942541715314],[105.61965619656195,-1.5647540762013818],[105.61965619656195,-1.5900827352496094],[105.63045630456304,-1.613722817027977],[105.64845648456486,-1.6339857442665675],[105.67365673656735,-1.6474943624256326],[105.70245702457026,-1.6559372487750466],[105.69165691656917,-1.671134444203986],[105.65205652056522,-1.706594566871516],[105.64845648456486,-1.7217917623004695],[105.66285662856632,-1.7403661122691716],[105.68085680856808,-1.7555633076981252],[105.69525695256954,-1.7656947713174134],[105.71685716857172,-1.7741376576668273],[105.72765727657276,-1.772449080396953],[105.74205742057421,-1.7673833485873018],[105.76005760057603,-1.7656947713174134],[105.76725767257676,-1.769071925857176],[105.77085770857707,-1.785957698556004],[105.7780577805778,-1.7927120076355436],[105.78525785257852,-1.7944005849054179],[105.81405814058144,-1.7927120076355436],[105.80325803258035,-1.772449080396953],[105.79245792457925,-1.7538747304282367],[105.76005760057603,-1.720103185030581],[105.74925749257494,-1.7032174123317532],[105.74925749257494,-1.6829544850931626],[105.75645756457567,-1.6458057851557442],[105.7528575285753,-1.6424286306159814],[105.73845738457385,-1.613722817027977],[105.73485734857348,-1.605279930678563],[105.73125731257312,-1.5883941579797352],[105.73125731257312,-1.5799512716303212],[105.72405724057239,-1.566442653471256],[105.71685716857172,-1.552934035312191],[105.70605706057063,-1.5411139944230143],[105.69525695256954,-1.5326711080736004],[105.72045720457203,-1.5242282217241865],[105.81045810458107,-1.525916798994075],[105.83565835658356,-1.517473912644661],[105.87525875258751,-1.4887680990566565],[105.89325893258933,-1.4904566763265308],[105.91485914859152,-1.4938338308663077],[105.92205922059219,-1.503965294485596],[105.92925929259292,-1.5191624899145353],[105.94005940059401,-1.5360482626133631],[105.94725947259474,-1.53942541715314],[105.95805958059583,-1.53942541715314],[105.97965979659796,-1.53942541715314],[105.98685986859869,-1.5428025716929028],[106.03366033660336,-1.5765741170905585],[106.04086040860409,-1.583328426170084],[106.04446044460445,-1.5934598897893864],[106.04446044460445,-1.6035913534086745],[106.03366033660336,-1.613722817027977],[106.03366033660336,-1.6238542806472651],[106.03366033660336,-1.6660687123943347],[106.03726037260373,-1.6778887532835114],[106.04446044460445,-1.6863316396329253],[106.05166051660518,-1.6913973714425765],[106.05886058860591,-1.6964631032522277],[106.06246062460627,-1.7049059896016416],[106.069660696607,-1.7234803395703437],[106.07326073260731,-1.7302346486498834],[106.08046080460804,-1.7353003804595346],[106.0840608406084,-1.7403661122691716],[106.09126091260913,-1.7454318440788228],[106.0948609486095,-1.7555633076981252],[106.0948609486095,-1.7673833485873018],[106.09846098460986,-1.77751481220659],[106.10566105661059,-1.7842691212861297],[106.11646116461168,-1.785957698556004],[106.12726127261271,-1.7893348530957809],[106.12726127261271,-1.799466316715069],[106.12366123661235,-1.8112863576042457],[106.12006120061204,-1.8197292439536596],[106.17406174061739,-1.8788294483995571],[106.17766177661775,-1.8889609120188595],[106.17406174061739,-1.8974037983682734],[106.16326163261635,-1.9632583118936964],[106.16326163261635,-2.0071613209106403],[106.19926199261994,-2.177707625168793],[106.26406264062643,-2.3516310839667085],[106.28926289262893,-2.393845515713778],[106.31806318063184,-2.4309942156511966],[106.35406354063542,-2.463077183778964],[106.37206372063724,-2.4715200701283777],[106.39726397263973,-2.48165153374768],[106.41886418864192,-2.485028688287443],[106.42966429664295,-2.473208647398266],[106.44046440464405,-2.4715200701283777],[106.55206552065522,-2.5103573473356846],[106.68166681666816,-2.5323088518441637],[106.75006750067502,-2.5576375108924054],[106.76806768067684,-2.561014665432168]]],[[[128.14508145081453,-1.5934598897893864],[128.159481594816,-1.6373628988063302],[128.15228152281526,-1.6694458669340975],[128.1270812708127,-1.693085948712465],[128.09108091080913,-1.7099717214112928],[128.05148051480518,-1.7150374532209298],[127.93267932679328,-1.6829544850931626],[127.91467914679146,-1.6829544850931626],[127.87867878678787,-1.693085948712465],[127.85347853478538,-1.6964631032522277],[127.70227702277026,-1.689708794172688],[127.68427684276844,-1.6947745259823392],[127.66987669876698,-1.706594566871516],[127.65907659076589,-1.7184146077607068],[127.64827648276486,-1.7234803395703437],[127.5690756907569,-1.7319232259197577],[127.53307533075332,-1.7319232259197577],[127.49347493474937,-1.7167260304908183],[127.43227432274324,-1.6863316396329253],[127.37827378273784,-1.632297166996679],[127.3818738187382,-1.6103456624882142],[127.39987399874002,-1.5731969625507816],[127.39987399874002,-1.5546226125820795],[127.39627396273966,-1.5411139944230143],[127.39987399874002,-1.5276053762639492],[127.41427414274142,-1.5107196035651356],[127.40347403474038,-1.4921452535964193],[127.41067410674106,-1.473570903627703],[127.42147421474215,-1.4566851309288893],[127.42507425074251,-1.4397993582300614],[127.42867428674288,-1.4144706991818197],[127.4358743587436,-1.4127821219119312],[127.4610746107461,-1.429667894610759],[127.48267482674828,-1.4482422445794754],[127.48627486274864,-1.4499308218493496],[127.49347493474937,-1.4448650900396984],[127.51147511475114,-1.4212250082613451],[127.5150751507515,-1.4127821219119312],[127.52227522275223,-1.4009620810227545],[127.62307623076231,-1.3300418356876804],[127.6338763387634,-1.328353258417792],[127.7130771307713,-1.3452390311166198],[127.74187741877421,-1.3553704947359222],[127.7670776707767,-1.3688791128949873],[127.77427774277743,-1.3840763083239267],[127.78507785077852,-1.402650658292643],[127.8066780667807,-1.4195364309914567],[127.8318783187832,-1.4313564718806475],[127.85347853478538,-1.4364222036902845],[127.85707857078575,-1.4347336264204102],[127.87507875078751,-1.4246021628011079],[127.8858788587886,-1.4212250082613451],[127.90027900279006,-1.4262907400709963],[127.91827918279182,-1.446553667309587],[127.92907929079291,-1.4499308218493496],[128.00828008280087,-1.503965294485596],[128.02628026280263,-1.5292939535338377],[128.03708037080372,-1.53942541715314],[128.0478804788048,-1.5461797262326655],[128.06948069480694,-1.556311189851968],[128.08028080280803,-1.5630654989314934],[128.09108091080913,-1.5681312307411446],[128.09828098280985,-1.566442653471256],[128.10548105481058,-1.561376921661605],[128.11628116281162,-1.5596883443917307],[128.1270812708127,-1.5630654989314934],[128.13428134281344,-1.5731969625507816],[128.14508145081453,-1.5934598897893864]]],[[[123.50463504635047,-1.2641873221622575],[123.52263522635229,-1.2658758994321317],[123.54063540635406,-1.2726302085116714],[123.55143551435515,-1.284450249400848],[123.55503555035551,-1.3030245993695502],[123.55143551435515,-1.3249761038780292],[123.53703537035369,-1.3604362265455734],[123.53343533435333,-1.380699153784164],[123.53343533435333,-1.4127821219119312],[123.53343533435333,-1.4212250082613451],[123.52983529835302,-1.4330450491505218],[123.50463504635047,-1.460062285468652],[123.46143461434616,-1.4938338308663077],[123.45423454234543,-1.4988995626759447],[123.43623436234361,-1.5022767172157216],[123.42903429034294,-1.5073424490253586],[123.40743407434076,-1.5157853353747726],[123.38223382233821,-1.4988995626759447],[123.36063360633608,-1.5107196035651356],[123.35703357033572,-1.473570903627703],[123.34983349833499,-1.4566851309288893],[123.33183331833317,-1.4499308218493496],[123.32823328233286,-1.4448650900396984],[123.32823328233286,-1.4330450491505218],[123.32823328233286,-1.4212250082613451],[123.31743317433177,-1.416159276451694],[123.30663306633068,-1.416159276451694],[123.29583295832958,-1.4178478537215824],[123.28863288632886,-1.4212250082613451],[123.28143281432813,-1.429667894610759],[123.259832598326,-1.4668165945481775],[123.24903249032491,-1.5107196035651356],[123.25263252632527,-1.6002141988689118],[123.24903249032491,-1.6221657033773909],[123.24183241832418,-1.632297166996679],[123.23463234632345,-1.627231435187042],[123.23103231032309,-1.6035913534086745],[123.22743227432278,-1.5934598897893864],[123.21663216632169,-1.5951484670592606],[123.17703177031774,-1.6221657033773909],[123.16983169831701,-1.6187885488376281],[123.16263162631628,-1.6103456624882142],[123.15543155431556,-1.6002141988689118],[123.12303123031234,-1.5917713125194979],[123.11583115831161,-1.5867055807098467],[123.11223112231124,-1.5765741170905585],[123.10863108631088,-1.566442653471256],[123.11223112231124,-1.556311189851968],[123.11943119431197,-1.552934035312191],[123.130231302313,-1.547868303502554],[123.17703177031774,-1.517473912644661],[123.18423184231841,-1.4853909445168938],[123.16263162631628,-1.3536819174660337],[123.16623166231665,-1.3215989493382665],[123.16263162631628,-1.311467485718964],[123.15903159031592,-1.3064017539093271],[123.15183151831519,-1.301336022099676],[123.14463144631446,-1.2996474448297874],[123.13743137431373,-1.3249761038780292],[123.12303123031234,-1.3334189902274431],[123.10863108631088,-1.3384847220370943],[123.09423094230942,-1.3469276083865083],[123.0726307263073,-1.394207771943229],[123.06543065430657,-1.4009620810227545],[123.05463054630548,-1.40771639010228],[123.04383043830438,-1.4246021628011079],[123.03303033030329,-1.4566851309288893],[123.01503015030153,-1.4853909445168938],[122.99342993429934,-1.509031026295247],[122.92142921429217,-1.57488553982067],[122.89622896228963,-1.5900827352496094],[122.8746287462875,-1.5850170034399724],[122.81342813428137,-1.4431765127698242],[122.80622806228064,-1.4009620810227545],[122.809828098281,-1.358747649275685],[122.8206282062821,-1.3131560629888526],[122.8350283502835,-1.2743187857815457],[122.89982899828999,-1.1848241904777694],[122.91422914229145,-1.1763813041283555],[122.93582935829357,-1.1797584586681182],[122.97182971829722,-1.1949556540970576],[122.98622986229861,-1.196644231366946],[122.9970299702997,-1.1898899222874206],[123.01863018630189,-1.1730041495885928],[123.02943029430293,-1.16962699504883],[123.0726307263073,-1.1628726859692904],[123.11223112231124,-1.1628726859692904],[123.11943119431197,-1.1662498405090531],[123.1266312663127,-1.1730041495885928],[123.13383133831337,-1.1797584586681182],[123.14463144631446,-1.183135613207881],[123.15903159031592,-1.1797584586681182],[123.16263162631628,-1.16962699504883],[123.16263162631628,-1.1578069541596392],[123.16983169831701,-1.147675490540351],[123.18423184231841,-1.1426097587306998],[123.18783187831878,-1.1459869132704625],[123.1950319503195,-1.1510526450801137],[123.20223202232023,-1.1544297996198765],[123.24543245432454,-1.2236614676850763],[123.23823238232382,-1.2321043540344903],[123.23103231032309,-1.2422358176537784],[123.22383223832242,-1.248990126733304],[123.20943209432096,-1.2506787040031924],[123.20223202232023,-1.2557444358128436],[123.19863198631987,-1.2692530539719087],[123.19863198631987,-1.2962702902900247],[123.20223202232023,-1.3080903311792014],[123.20943209432096,-1.3165332175286153],[123.22023220232205,-1.3249761038780292],[123.22743227432278,-1.3334189902274431],[123.22743227432278,-1.3486161856563967],[123.22743227432278,-1.3790105765142755],[123.23103231032309,-1.394207771943229],[123.25623256232564,-1.3773219992444012],[123.27063270632709,-1.3553704947359222],[123.29943299432995,-1.3064017539093271],[123.30303303033031,-1.3030245993695502],[123.31743317433177,-1.2962702902900247],[123.32103321033213,-1.292893135750262],[123.33543335433353,-1.2726302085116714],[123.34263342633426,-1.2422358176537784],[123.35343353433535,-1.2287271994947133],[123.36423364233644,-1.2236614676850763],[123.38223382233821,-1.2236614676850763],[123.3930339303393,-1.2236614676850763],[123.40023400234003,-1.2202843131452994],[123.40743407434076,-1.2202843131452994],[123.41103411034112,-1.2287271994947133],[123.41103411034112,-1.24054724038389],[123.41463414634148,-1.2473015494634296],[123.42903429034294,-1.2574330130827178],[123.43623436234361,-1.2506787040031924],[123.44343443434434,-1.2371700858441272],[123.45423454234543,-1.2304157767646018],[123.46503465034652,-1.235481508574253],[123.48663486634865,-1.2591215903526063],[123.50463504635047,-1.2641873221622575]]],[[[136.37476374763747,-1.0936410179041047],[136.38556385563857,-1.1071496360631699],[136.3819638196382,-1.1240354087619977],[136.36756367563675,-1.1358554496511744],[136.34956349563498,-1.1409211814608113],[136.34236342363425,-1.147675490540351],[136.2919629196292,-1.183135613207881],[136.23076230762308,-1.1932670768271834],[136.21636216362162,-1.2000213859067088],[136.20196201962023,-1.2084642722561227],[136.18036180361804,-1.2152185813356624],[136.16236162361622,-1.2202843131452994],[136.14436144361446,-1.2236614676850763],[136.10116101161015,-1.2152185813356624],[136.03636036360365,-1.1763813041283555],[135.99315993159934,-1.16962699504883],[135.9679596795968,-1.1730041495885928],[135.92835928359284,-1.1865127677476437],[135.9067590675907,-1.1898899222874206],[135.88515885158853,-1.183135613207881],[135.86355863558634,-1.1679384177789416],[135.84555845558458,-1.147675490540351],[135.8347583475835,-1.1291011405716347],[135.82755827558276,-1.1071496360631699],[135.8347583475835,-1.0497380088871466],[135.83115831158312,-1.0396065452678585],[135.81675816758167,-1.0210321952991421],[135.8131581315813,-1.0142778862196167],[135.8131581315813,-1.0041464226003143],[135.7987579875799,-0.9703748772026586],[135.78075780757808,-0.8724373955494684],[135.76635766357663,-0.8386658501518127],[135.74115741157414,-0.8184029229132221],[135.71955719557195,-0.8251572319927476],[135.7015570155702,-0.8454201592313524],[135.68355683556837,-0.8673716637398172],[135.66195661956618,-0.8876345909784078],[135.64035640356406,-0.8808802818988823],[135.48555485554857,-0.7576141411974504],[135.47835478354784,-0.7694341820866271],[135.47835478354784,-0.7795656457059152],[135.4927549275493,-0.804894304754157],[135.46035460354602,-0.7930742638649804],[135.42435424354244,-0.7626798730070874],[135.39195391953922,-0.7238425957997947],[135.37035370353703,-0.6529223504647206],[135.37035370353703,-0.6360365777658927],[135.38835388353885,-0.6275936914164788],[135.39915399153995,-0.6309708459562415],[135.41355413554135,-0.6478566186550694],[135.42435424354244,-0.6546109277345948],[135.4279542795428,-0.6546109277345948],[135.44235442354426,-0.6529223504647206],[135.44595445954462,-0.6529223504647206],[135.45315453154535,-0.6546109277345948],[135.4639546395464,-0.6613652368141345],[135.46755467554675,-0.6647423913538972],[135.49995499955003,-0.6731852777033112],[135.55035550355507,-0.6765624322430739],[135.5611556115561,-0.6765624322430739],[135.5827558275583,-0.6664309686237857],[135.59355593555938,-0.6748738549731996],[135.6007560075601,-0.6951367822117902],[135.66555665556655,-0.6833167413226136],[135.67635676356764,-0.6850053185924878],[135.679956799568,-0.6917596276720133],[135.68715687156873,-0.7086454003708411],[135.6907569075691,-0.720465441260032],[135.69435694356946,-0.7289083276094459],[135.70515705157055,-0.7272197503395574],[135.7159571595716,-0.7187768639901435],[135.72675726757268,-0.717088286720255],[135.7555575555756,-0.7390397912287341],[135.77715777157772,-0.7491712548480365],[135.7879578795788,-0.7407283684986226],[135.79155791557918,-0.7289083276094459],[135.80955809558094,-0.7137111321804923],[135.82755827558276,-0.7002025140214272],[135.84915849158494,-0.6951367822117902],[135.87075870758707,-0.7035796685612041],[135.89235892358926,-0.720465441260032],[135.9679596795968,-0.7964514184047431],[136.04716047160474,-0.8538630455807521],[136.0651606516065,-0.8724373955494684],[136.0759607596076,-0.8994546318675987],[136.08316083160832,-0.9095860954868868],[136.09396093960942,-0.9197175591061892],[136.1047610476105,-0.9281604454556032],[136.10836108361087,-0.9399804863447798],[136.11196111961118,-0.9534891045038449],[136.11556115561154,-0.9636205681231331],[136.129961299613,-0.9788177635520725],[136.14796147961482,-0.9906378044412634],[136.16236162361622,-1.0041464226003143],[136.1731617316173,-1.0311636589184445],[136.18756187561877,-1.0497380088871466],[136.1947619476195,-1.0666237815859745],[136.20916209162095,-1.0632466270462118],[136.219962199622,-1.0564923179666863],[136.22356223562235,-1.0531151634269236],[136.24516245162454,-1.0480494316172724],[136.2739627396274,-1.0480494316172724],[136.29556295562958,-1.0548037406967978],[136.30636306363067,-1.0767552452052769],[136.3171631716317,-1.0851981315546908],[136.37476374763747,-1.0936410179041047]]],[[[104.5468454684547,-0.39794718271242857],[104.59364593645938,-0.4486045008089121],[104.60084600846011,-0.4638016962378515],[104.59004590045902,-0.4840646234764421],[104.5720457204572,-0.5009503961752699],[104.53244532445325,-0.5279676324934002],[104.52524525245252,-0.5482305597319908],[104.52164521645216,-0.5971993005585858],[104.51084510845112,-0.6140850732574137],[104.47844478444784,-0.6140850732574137],[104.44604446044463,-0.5887564142091719],[104.42084420844208,-0.5752477960501068],[104.39564395643959,-0.6140850732574137],[104.38484384843849,-0.6529223504647206],[104.3740437404374,-0.659676659544246],[104.35604356043564,-0.6613652368141345],[104.34524345243454,-0.5786249505898837],[104.33444334443345,-0.5431648279223396],[104.32724327243272,-0.5296562097632744],[104.31284312843127,-0.5313447870331629],[104.25524255242556,-0.47562173712702815],[104.25524255242556,-0.4604245416980888],[104.26244262442623,-0.44691592353902365],[104.27684276842768,-0.41314437814136795],[104.28404284042841,-0.4013243372521913],[104.31284312843127,-0.377684255473838],[104.32364323643236,-0.36417563731477287],[104.33084330843309,-0.347289864615945],[104.33804338043382,-0.347289864615945],[104.34524345243454,-0.36417563731477287],[104.33444334443345,-0.40470149179196824],[104.33804338043382,-0.42834157357032154],[104.34524345243454,-0.42834157357032154],[104.34884348843491,-0.40807864633173097],[104.35244352443527,-0.3878157190931404],[104.359643596436,-0.3878157190931404],[104.38124381243813,-0.4013243372521913],[104.41724417244171,-0.3827499872834892],[104.47124471244712,-0.33209266918700564],[104.48924489244894,-0.3489784418858335],[104.49644496444967,-0.3540441736954847],[104.5180451804518,-0.3624870600448986],[104.52524525245252,-0.3675527918545356],[104.53244532445325,-0.37430710093407527],[104.53964539645398,-0.38950429636301465],[104.5468454684547,-0.39794718271242857]]],[[[127.88947889478897,-0.7643684502769759],[127.8966789667897,-0.7677456048167386],[127.8966789667897,-0.7728113366263898],[127.89307893078933,-0.7846313775155664],[127.88947889478897,-0.8015171502143943],[127.87507875078751,-0.8184029229132221],[127.8318783187832,-0.8589287773904033],[127.8210782107821,-0.8639945092000545],[127.81387813878138,-0.8673716637398172],[127.79947799477998,-0.8673716637398172],[127.78507785077852,-0.87074881827958],[127.7670776707767,-0.8842574364386451],[127.75627756277567,-0.8876345909784078],[127.74907749077494,-0.8859460137085335],[127.72747727477275,-0.8673716637398172],[127.71667716677166,-0.862305931930166],[127.69507695076953,-0.8538630455807521],[127.68427684276844,-0.8538630455807521],[127.68067680676808,-0.8504858910409894],[127.67707677076771,-0.8437315819614639],[127.67347673476735,-0.8369772728819385],[127.66267662676626,-0.8336001183421615],[127.65187651876522,-0.8268458092626361],[127.65187651876522,-0.8150257683734594],[127.65907659076589,-0.7913856865951061],[127.65547655476558,-0.7812542229758037],[127.65187651876522,-0.7711227593565013],[127.64467644676449,-0.7626798730070874],[127.63747637476376,-0.7576141411974504],[127.62667626676267,-0.7525484093877992],[127.61947619476194,-0.7559255639275619],[127.61587615876158,-0.7609912957372131],[127.60867608676085,-0.7643684502769759],[127.59067590675909,-0.7694341820866271],[127.53667536675368,-0.7981399956746316],[127.46827468274682,-0.8184029229132221],[127.45747457474573,-0.8150257683734594],[127.45387453874542,-0.8015171502143943],[127.45027450274506,-0.7930742638649804],[127.44307443074433,-0.7728113366263898],[127.4358743587436,-0.7289083276094459],[127.43947439474397,-0.717088286720255],[127.47187471874719,-0.6529223504647206],[127.47187471874719,-0.6411023095755439],[127.46827468274682,-0.6394137323056555],[127.4358743587436,-0.6309708459562415],[127.42867428674288,-0.6259051141465903],[127.40707407074069,-0.6242165368767161],[127.39987399874002,-0.6208393823369533],[127.39627396273966,-0.6174622277971764],[127.39627396273966,-0.6039536096381255],[127.39267392673929,-0.5988878778284743],[127.38907389073893,-0.5971993005585858],[127.37467374673747,-0.5938221460188231],[127.37107371073711,-0.5921335687489346],[127.35307353073534,-0.5634277551609301],[127.34947349473498,-0.5549848688115162],[127.34587345873462,-0.544853405192228],[127.31347313473134,-0.522901900683749],[127.3026730267303,-0.5110818597945723],[127.29547295472958,-0.4941960870957445],[127.29187291872921,-0.4773103143969166],[127.29187291872921,-0.4604245416980888],[127.29907299072994,-0.4452273462691494],[127.31347313473134,-0.43171872811008427],[127.32067320673207,-0.4165215326811449],[127.3278732787328,-0.39794718271242857],[127.33147331473316,-0.37430710093407527],[127.3278732787328,-0.36586421458466134],[127.3170731707317,-0.3388469782665311],[127.33147331473316,-0.3388469782665311],[127.34947349473498,-0.3287155146472429],[127.36027360273602,-0.3253383601074802],[127.37107371073711,-0.3287155146472429],[127.3818738187382,-0.33715840099665684],[127.39987399874002,-0.3540441736954847],[127.40347403474038,-0.3591099055051217],[127.41067410674106,-0.3624870600448986],[127.41787417874178,-0.3675527918545356],[127.42147421474215,-0.38950429636301465],[127.42507425074251,-0.4013243372521913],[127.4358743587436,-0.4114558008714937],[127.4466744667447,-0.4148329554112564],[127.4610746107461,-0.4063900690618425],[127.46827468274682,-0.3861271418232519],[127.47547475474755,-0.3624870600448986],[127.47907479074792,-0.347289864615945],[127.48627486274864,-0.34222413280630803],[127.49707497074974,-0.3388469782665311],[127.50427504275046,-0.33546982372676837],[127.50787507875077,-0.3287155146472429],[127.50787507875077,-0.320272628297829],[127.51147511475114,-0.3101411646785266],[127.5150751507515,-0.30169827832911267],[127.52587525875259,-0.29832112378934994],[127.52947529475296,-0.29832112378934994],[127.52947529475296,-0.3000097010592384],[127.52947529475296,-0.30338685559900114],[127.53307533075332,-0.3050754328688754],[127.56547565475654,-0.31689547375806626],[127.579875798758,-0.3253383601074802],[127.58347583475836,-0.34222413280630803],[127.59067590675909,-0.3523555964255962],[127.61227612276122,-0.36586421458466134],[127.61947619476194,-0.377684255473838],[127.61947619476194,-0.3878157190931404],[127.62307623076231,-0.39963575998231704],[127.62667626676267,-0.4097672236016052],[127.63027630276304,-0.4148329554112564],[127.63747637476376,-0.4165215326811449],[127.64827648276486,-0.4148329554112564],[127.65187651876522,-0.4148329554112564],[127.65907659076589,-0.42834157357032154],[127.66627666276662,-0.435095882649847],[127.68427684276844,-0.4604245416980888],[127.6878768787688,-0.48068746893667935],[127.67707677076771,-0.5043275507150469],[127.61947619476194,-0.5735592187802325],[127.60867608676085,-0.5938221460188231],[127.60507605076054,-0.6174622277971764],[127.60507605076054,-0.6292822686863531],[127.61227612276122,-0.6360365777658927],[127.62307623076231,-0.6394137323056555],[127.6338763387634,-0.6411023095755439],[127.64827648276486,-0.6444794641153067],[127.65187651876522,-0.6529223504647206],[127.65187651876522,-0.6850053185924878],[127.64827648276486,-0.6968253594816645],[127.65187651876522,-0.7069568231009669],[127.66627666276662,-0.717088286720255],[127.67707677076771,-0.717088286720255],[127.69147691476917,-0.7137111321804923],[127.70227702277026,-0.7069568231009669],[127.70947709477093,-0.6985139367515529],[127.72387723877239,-0.6934482049419017],[127.78867788677888,-0.690071050402139],[127.80307803078034,-0.6934482049419017],[127.84987849878502,-0.7137111321804923],[127.85707857078575,-0.720465441260032],[127.86067860678605,-0.725531173069669],[127.87507875078751,-0.7441055230383853],[127.87867878678787,-0.7542369866576735],[127.87867878678787,-0.7609912957372131],[127.87867878678787,-0.7626798730070874],[127.88227882278824,-0.7643684502769759],[127.88947889478897,-0.7643684502769759]]],[[[131.29871298712987,-0.2375323420735782],[131.3059130591306,-0.2510409602326291],[131.33831338313382,-0.27805819655075936],[131.34551345513455,-0.28818966017006176],[131.33831338313382,-0.29663254651946147],[131.3167131671317,-0.3000097010592384],[131.31311313113133,-0.30845258740865233],[131.3059130591306,-0.32196120556770325],[131.2951129511295,-0.3287155146472429],[131.28791287912878,-0.33715840099665684],[131.28431284312842,-0.3540441736954847],[131.28071280712805,-0.3523555964255962],[131.26631266312666,-0.3489784418858335],[131.2627126271263,-0.347289864615945],[131.2627126271263,-0.3675527918545356],[131.2519125191252,-0.38443856455336345],[131.23751237512374,-0.38950429636301465],[131.21951219512198,-0.377684255473838],[131.17991179911797,-0.347289864615945],[131.15831158311585,-0.3337812464568941],[131.14751147511475,-0.33546982372676837],[131.1439114391144,-0.33209266918700564],[131.11151111511117,-0.33209266918700564],[131.10431104311044,-0.3287155146472429],[131.10071100711008,-0.3236497828375917],[131.09711097110971,-0.3236497828375917],[131.08631086310862,-0.3253383601074802],[131.06831068310686,-0.3337812464568941],[131.02151021510218,-0.3675527918545356],[131.02151021510218,-0.3523555964255962],[131.01431014310145,-0.35066701915572196],[130.99630996309963,-0.3540441736954847],[130.99630996309963,-0.35573275096535895],[130.99270992709927,-0.3574213282352474],[130.98550985509854,-0.3591099055051217],[130.97830978309787,-0.36079848277501014],[130.97110971109714,-0.3574213282352474],[130.9567095670957,-0.3489784418858335],[130.95310953109532,-0.347289864615945],[130.93150931509314,-0.3152068964881778],[130.90630906309065,-0.29832112378934994],[130.89910899108992,-0.2915668147098245],[130.90630906309065,-0.2848125056302848],[130.8919089190892,-0.26454957839169424],[130.8811088110881,-0.25441811477240606],[130.86310863108633,-0.2510409602326291],[130.83430834308342,-0.24935238296275486],[130.81630816308166,-0.24428665115310366],[130.80910809108093,-0.24428665115310366],[130.79830798307984,-0.23922091934345247],[130.79470794707947,-0.2274008784542758],[130.79830798307984,-0.2088265284855737],[130.7911079110791,-0.19025217851685738],[130.78390783907838,-0.1801207148975692],[130.72990729907298,-0.1311519740709599],[130.71910719107194,-0.11426620137213206],[130.71550715507158,-0.09400327413354148],[130.70830708307085,-0.09569185140342995],[130.70110701107012,-0.09569185140342995],[130.68670686706866,-0.09400327413354148],[130.6939069390694,-0.08556038778412756],[130.6939069390694,-0.0788060787046021],[130.67590675906763,-0.07711750143471363],[130.65070650706508,-0.08049465597447636],[130.6255062550626,-0.08556038778412756],[130.6147061470615,-0.09400327413354148],[130.63630636306362,-0.09906900594319268],[130.64710647106472,-0.10413473775284388],[130.65430654306545,-0.11426620137213206],[130.63630636306362,-0.11426620137213206],[130.6255062550626,-0.12608624226132292],[130.6291062910629,-0.1412834376902623],[130.66510665106654,-0.15479205584932743],[130.6831068310683,-0.1699892512782668],[130.71910719107194,-0.21726941483498763],[130.7371073710737,-0.2561066920422803],[130.74430744307443,-0.27468104201099663],[130.75150751507516,-0.28818966017006176],[130.7911079110791,-0.30676401013876387],[130.8127081270813,-0.3185840510279405],[130.81630816308166,-0.30169827832911267],[130.81990819908202,-0.2949439692495872],[130.82710827108275,-0.2915668147098245],[130.87030870308706,-0.29325539197969874],[130.88830888308883,-0.29663254651946147],[130.89550895508955,-0.30169827832911267],[130.89550895508955,-0.31182974194841506],[130.90270902709028,-0.31689547375806626],[130.91350913509137,-0.320272628297829],[130.9207092070921,-0.3253383601074802],[130.92790927909283,-0.33546982372676837],[130.93870938709387,-0.35573275096535895],[130.94950949509496,-0.3675527918545356],[130.93870938709387,-0.37092994639431254],[130.93150931509314,-0.37937283274372646],[130.92430924309247,-0.3878157190931404],[130.9207092070921,-0.39794718271242857],[130.91710917109174,-0.4063900690618425],[130.90630906309065,-0.41314437814136795],[130.8667086670867,-0.4300301508401958],[130.78030780307802,-0.4452273462691494],[130.75510755107553,-0.4452273462691494],[130.73350733507334,-0.44185019172938667],[130.71550715507158,-0.42834157357032154],[130.70470704707049,-0.4097672236016052],[130.67950679506794,-0.3388469782665311],[130.6939069390694,-0.33209266918700564],[130.69750697506976,-0.3185840510279405],[130.6939069390694,-0.30338685559900114],[130.68670686706866,-0.2915668147098245],[130.60750607506077,-0.3135183192182893],[130.57870578705786,-0.3337812464568941],[130.56430564305646,-0.37430710093407527],[130.57150571505719,-0.37430710093407527],[130.58230582305822,-0.36586421458466134],[130.57870578705786,-0.38443856455336345],[130.5607056070561,-0.4266529963004331],[130.55350553505536,-0.43340730537997274],[130.54630546305464,-0.43678445991973547],[130.54270542705427,-0.43171872811008427],[130.54630546305464,-0.4198986872209076],[130.55710557105573,-0.3878157190931404],[130.54270542705427,-0.3827499872834892],[130.5391053910539,-0.3675527918545356],[130.54630546305464,-0.347289864615945],[130.54270542705427,-0.3253383601074802],[130.5391053910539,-0.31689547375806626],[130.52110521105215,-0.30169827832911267],[130.51750517505178,-0.2915668147098245],[130.51750517505178,-0.28312392836041056],[130.52110521105215,-0.27468104201099663],[130.52830528305282,-0.2662381556615827],[130.5247052470525,-0.2577952693121688],[130.5067050670507,-0.2510409602326291],[130.4851048510485,-0.2561066920422803],[130.45630456304565,-0.2713038874712339],[130.45270452704528,-0.27468104201099663],[130.44550445504456,-0.28312392836041056],[130.4419044190442,-0.2848125056302848],[130.43470434704346,-0.28312392836041056],[130.4311043110431,-0.27299246474110817],[130.42750427504274,-0.2713038874712339],[130.40950409504097,-0.26961531020134544],[130.39870398703988,-0.26792673293145697],[130.39150391503915,-0.26454957839169424],[130.38070380703806,-0.2763696192808709],[130.3771037710377,-0.27468104201099663],[130.36990369903702,-0.26792673293145697],[130.36630366303666,-0.26454957839169424],[130.33750337503375,-0.26286100112182],[130.33750337503375,-0.26454957839169424],[130.31590315903162,-0.25948384658204304],[130.31230312303126,-0.2577952693121688],[130.3087030870309,-0.2527295375025176],[130.30510305103053,-0.2425980738832152],[130.30150301503016,-0.23415518753381548],[130.29430294302944,-0.23077803299403854],[130.26550265502658,-0.22402372391451308],[130.2331023310233,-0.21220368302533643],[130.2187021870219,-0.20038364213615978],[130.24030240302403,-0.19531791032650858],[130.25110251102512,-0.19700648759638284],[130.26910269102694,-0.20544937394579676],[130.27630276302762,-0.2088265284855737],[130.27990279902798,-0.2088265284855737],[130.30150301503016,-0.2088265284855737],[130.30510305103053,-0.2088265284855737],[130.33750337503375,-0.2037607966759225],[130.35550355503557,-0.20207221940603404],[130.36990369903702,-0.20544937394579676],[130.38430384303842,-0.2138922602952107],[130.39870398703988,-0.2138922602952107],[130.41310413104134,-0.2088265284855737],[130.42390423904243,-0.1986950648662713],[130.4311043110431,-0.18687502397709466],[130.4167041670417,-0.18349786943733193],[130.39870398703988,-0.18349786943733193],[130.3879038790388,-0.175054983087918],[130.40230402304024,-0.1699892512782668],[130.41310413104134,-0.15648063311920168],[130.41310413104134,-0.1412834376902623],[130.4059040590406,-0.12777481953119718],[130.39870398703988,-0.1463491694999135],[130.38430384303842,-0.15816921038909015],[130.3735037350374,-0.15648063311920168],[130.3735037350374,-0.13452912861072264],[130.36630366303666,-0.13452912861072264],[130.3627036270363,-0.14297201496013656],[130.35550355503557,-0.1463491694999135],[130.34830348303484,-0.14466059223002503],[130.33750337503375,-0.13959486042037383],[130.3411034110341,-0.15479205584932743],[130.34830348303484,-0.16830067400837834],[130.3519035190352,-0.1801207148975692],[130.34470344703448,-0.18856360124696891],[130.33390333903338,-0.18856360124696891],[130.31590315903162,-0.18180929216744346],[130.30150301503016,-0.17336640581802953],[130.2979029790298,-0.1649235194686156],[130.29430294302944,-0.1514149013095505],[130.27990279902798,-0.1311519740709599],[130.27630276302762,-0.117643355911909],[130.27990279902798,-0.10582331502271813],[130.29070290702907,-0.09906900594319268],[130.30510305103053,-0.09906900594319268],[130.31590315903162,-0.1075118922926066],[130.32310323103235,-0.1024461604829554],[130.33030330303302,-0.09738042867330421],[130.33390333903338,-0.08893754232389028],[130.33750337503375,-0.0788060787046021],[130.34470344703448,-0.09400327413354148],[130.34470344703448,-0.10920046956249507],[130.34830348303484,-0.12102051045167173],[130.35910359103593,-0.12777481953119718],[130.36990369903702,-0.12102051045167173],[130.36990369903702,-0.1075118922926066],[130.3627036270363,-0.09231469686366722],[130.35910359103593,-0.0788060787046021],[130.38070380703806,-0.0737403468949509],[130.39510395103952,-0.08218323324436483],[130.4059040590406,-0.09738042867330421],[130.42750427504274,-0.1075118922926066],[130.42390423904243,-0.08556038778412756],[130.42030420304206,-0.0788060787046021],[130.42750427504274,-0.0788060787046021],[130.4311043110431,-0.08724896505401603],[130.43470434704346,-0.09400327413354148],[130.47790477904778,-0.07542892416483937],[130.49950499504996,-0.06192030600577425],[130.51030510305105,-0.0450345333069464],[130.52110521105215,-0.0501002651165976],[130.52830528305282,-0.05685457419612305],[130.54270542705427,-0.07205176962507664],[130.54630546305464,-0.0686746150852997],[130.549905499055,-0.05854315146601152],[130.55350553505536,-0.06360888327566272],[130.55710557105573,-0.0686746150852997],[130.55710557105573,-0.07205176962507664],[130.5607056070561,-0.06529746054553698],[130.57150571505719,-0.0450345333069464],[130.57510575105755,-0.04841168784670913],[130.58590585905858,-0.05854315146601152],[130.59670596705968,-0.04672311057683487],[130.62190621906223,-0.051788842386471856],[130.639906399064,-0.0450345333069464],[130.66150661506617,-0.0450345333069464],[130.69030690306903,-0.034903069687644006],[130.71550715507158,-0.03321449241776975],[130.7227072270723,-0.051788842386471856],[130.7371073710737,-0.04672311057683487],[130.76590765907662,-0.0501002651165976],[130.78390783907838,-0.0450345333069464],[130.7767077670777,-0.036591646957532475],[130.76950769507698,-0.03321449241776975],[130.7587075870759,-0.02983733787800702],[130.7479074790748,-0.03152591514788128],[130.76230762307625,-0.018017296988816156],[130.78030780307802,-0.009574410639416442],[130.8019080190802,-0.004508678829765245],[130.8235082350824,-0.004508678829765245],[130.96030960309605,-0.0450345333069464],[130.96750967509678,-0.04841168784670913],[130.97110971109714,-0.053477419656360325],[130.9747097470975,-0.05685457419612305],[130.97830978309787,-0.055165996926248795],[130.98550985509854,-0.04841168784670913],[130.9891098910989,-0.04672311057683487],[131.02151021510218,-0.038280224227420945],[131.02511025110255,-0.038280224227420945],[131.0431104311043,-0.038280224227420945],[131.05751057510577,-0.04165737876718367],[131.05751057510577,-0.04841168784670913],[131.0431104311043,-0.06529746054553698],[131.06111061110613,-0.06698603781542545],[131.08631086310862,-0.07205176962507664],[131.11511115111153,-0.0737403468949509],[131.12591125911263,-0.07711750143471363],[131.15471154711548,-0.08556038778412756],[131.1619116191162,-0.09231469686366722],[131.16911169111694,-0.1024461604829554],[131.17991179911797,-0.10920046956249507],[131.19071190711907,-0.11426620137213206],[131.1979119791198,-0.11933193318178326],[131.20151201512016,-0.12946339680108565],[131.21231212312125,-0.13790628315049958],[131.23031230312301,-0.13452912861072264],[131.23391233912338,-0.13790628315049958],[131.23751237512374,-0.13959486042037383],[131.2519125191252,-0.13959486042037383],[131.2627126271263,-0.14297201496013656],[131.26991269912702,-0.14803774676978776],[131.27351273512738,-0.15310347857943896],[131.29871298712987,-0.1598577876589644],[131.3059130591306,-0.17167782854815528],[131.3167131671317,-0.2037607966759225],[131.3059130591306,-0.21726941483498763],[131.29871298712987,-0.2274008784542758],[131.29871298712987,-0.2375323420735782]]],[[[104.92844928449284,-0.2375323420735782],[105.01125011250116,-0.2814353510905221],[105.00405004050043,-0.2949439692495872],[104.98244982449825,-0.289878237439936],[104.95724957249575,-0.2814353510905221],[104.93564935649357,-0.27805819655075936],[104.91764917649175,-0.28818966017006176],[104.92124921249211,-0.29832112378934994],[104.9320493204932,-0.3135183192182893],[104.93564935649357,-0.33209266918700564],[104.88164881648817,-0.30845258740865233],[104.8636486364864,-0.3050754328688754],[104.85284852848531,-0.30169827832911267],[104.83124831248313,-0.28312392836041056],[104.77724777247772,-0.2577952693121688],[104.76284762847632,-0.2425980738832152],[104.75204752047523,-0.2274008784542758],[104.73404734047341,-0.2138922602952107],[104.71244712447128,-0.2088265284855737],[104.66924669246691,-0.21220368302533643],[104.65484654846551,-0.21558083756509916],[104.64044640446406,-0.22402372391451308],[104.61524615246151,-0.24090949661334093],[104.60444604446047,-0.24428665115310366],[104.60084600846011,-0.24428665115310366],[104.58644586445865,-0.2375323420735782],[104.57924579245793,-0.24090949661334093],[104.5720457204572,-0.2476638056928664],[104.56124561245616,-0.2527295375025176],[104.55044550445507,-0.26792673293145697],[104.53964539645398,-0.2713038874712339],[104.52884528845289,-0.26961531020134544],[104.52524525245252,-0.2662381556615827],[104.52164521645216,-0.25948384658204304],[104.5180451804518,-0.24935238296275486],[104.50724507245076,-0.23584376480368974],[104.49644496444967,-0.2274008784542758],[104.48564485644857,-0.22402372391451308],[104.46044460444608,-0.22402372391451308],[104.44604446044463,-0.22064656937475036],[104.4388443884439,-0.2138922602952107],[104.43524435244353,-0.2037607966759225],[104.43524435244353,-0.19194075578674585],[104.4388443884439,-0.18180929216744346],[104.44244442444426,-0.175054983087918],[104.45684456844572,-0.16830067400837834],[104.4928449284493,-0.1362177058806111],[104.51084510845112,-0.11426620137213206],[104.5180451804518,-0.08893754232389028],[104.52524525245252,-0.007885833369527973],[104.53604536045361,0.02081998021847653],[104.5576455764558,0.002245630249774422],[104.56124561245616,0.010688516599188347],[104.56484564845647,0.022508557488365],[104.56484564845647,0.030951443837778925],[104.5720457204572,0.017442825678713803],[104.58644586445865,0.008999939329299877],[104.61884618846187,-0.004508678829765245],[104.67644676446764,-0.053477419656360325],[104.680046800468,-0.06529746054553698],[104.64764647646479,-0.07205176962507664],[104.64764647646479,-0.08049465597447636],[104.65124651246515,-0.08893754232389028],[104.65844658446588,-0.09569185140342995],[104.66564665646655,-0.09906900594319268],[104.67644676446764,-0.09569185140342995],[104.68364683646837,-0.08893754232389028],[104.6908469084691,-0.08724896505401603],[104.70524705247055,-0.09569185140342995],[104.73764737647377,-0.12777481953119718],[104.7556475564756,-0.1699892512782668],[104.76644766447663,-0.18856360124696891],[104.78804788047881,-0.19531791032650858],[104.81324813248136,-0.1936293330566201],[104.82044820448203,-0.18349786943733193],[104.82044820448203,-0.1699892512782668],[104.82764827648276,-0.14803774676978776],[104.84924849248495,-0.13959486042037383],[104.8780487804878,-0.16661209673850408],[104.92844928449284,-0.2375323420735782]]],[[[97.92997929979299,0.9968176422106723],[97.94077940779408,0.9866861785913841],[97.93357933579335,0.9630460968130308],[97.91917919179195,0.9275859741454866],[97.91917919179195,0.9343402832250121],[97.90117901179013,0.9056344696370076],[97.89757897578977,0.8752400787791288],[97.9047790477905,0.8144512970633428],[97.90117901179013,0.8009426789042919],[97.8939789397894,0.7773025971259244],[97.88317883178831,0.718202392680027],[97.88317883178831,0.6422164155353158],[97.87597875978759,0.6219534882967253],[97.82557825578255,0.5628532838508278],[97.81837818378187,0.5577875520411766],[97.80757807578078,0.559476129311065],[97.80037800378005,0.5662304383905905],[97.7751777517775,0.5848047883593068],[97.76437764377647,0.567919015660479],[97.75357753577538,0.567919015660479],[97.72477724777247,0.5848047883593068],[97.72477724777247,0.5814276338195299],[97.71397713977143,0.5746733247400044],[97.70317703177034,0.572984747470116],[97.69597695976961,0.5864933656291811],[97.68877688776888,0.5915590974388323],[97.68517685176852,0.5966248292484835],[97.67797677976779,0.5983134065183577],[97.69237692376925,0.6236420655665995],[97.68517685176852,0.6422164155353158],[97.66717667176675,0.6591021882341437],[97.65997659976603,0.6742993836630831],[97.65637656376566,0.6878080018221482],[97.65997659976603,0.7148252381402642],[97.6527765277653,0.7266452790294409],[97.64917649176493,0.7367767426487433],[97.63477634776348,0.7688597107765105],[97.63117631176311,0.7806797516656871],[97.61317613176135,0.8228941834127568],[97.57357573575734,0.8617314606200637],[97.48717487174872,0.9140773559864215],[97.49077490774908,0.9326517059551378],[97.47997479974799,0.942783169574426],[97.45837458374587,0.9478489013840772],[97.43677436774368,0.9495374786539656],[97.39357393573937,0.9444717468443145],[97.389973899739,0.9529146331937284],[97.389973899739,0.9765547149720817],[97.38637386373864,1.0187691467191513],[97.37197371973718,1.0592950011963325],[97.32157321573214,1.140346710150709],[97.31077310773111,1.167363946468825],[97.30717307173074,1.1741182555483647],[97.29997299973002,1.1825611418977786],[97.28917289172892,1.1910040282471925],[97.27837278372783,1.1994469145966065],[97.2711727117271,1.2213984191050713],[97.2567725677257,1.2349070372641364],[97.25317253172534,1.246727078153313],[97.25317253172534,1.258547119042504],[97.24597245972461,1.2669900053919037],[97.23877238772388,1.2720557372015548],[97.23157231572316,1.277121469011206],[97.22437224372243,1.2821872008208572],[97.21357213572139,1.2838757780907315],[97.2027720277203,1.2889415099003827],[97.19197191971921,1.2973843962497966],[97.18477184771848,1.307515859869099],[97.17757177571775,1.3311559416474523],[97.16677166771666,1.342975982536629],[97.12717127171271,1.3818132597439359],[97.10557105571058,1.3970104551728753],[97.0839708397084,1.4071419187921776],[97.0839708397084,1.4054533415222892],[97.06957069570694,1.395321877903001],[97.06237062370627,1.4155848051415916],[97.08037080370804,1.4290934233006425],[97.10557105571058,1.4358477323801822],[97.13077130771308,1.4358477323801822],[97.1379713797138,1.4324705778404194],[97.15237152371526,1.4257162687608798],[97.15957159571599,1.4189619596813543],[97.16317163171635,1.4105190733319404],[97.17037170371702,1.4155848051415916],[97.18117181171812,1.4172733824114658],[97.20637206372066,1.413896227871703],[97.23517235172352,1.4172733824114658],[97.2567725677257,1.4240276914910055],[97.27837278372783,1.4358477323801822],[97.32157321573214,1.474685009587489],[97.33237332373324,1.4865050504766657],[97.3359733597336,1.5000136686357166],[97.33237332373324,1.5270309049538469],[97.3359733597336,1.537162368573135],[97.35037350373506,1.545605254922549],[97.37557375573755,1.518588018604433],[97.389973899739,1.5084565549851305],[97.40797407974082,1.5135222867947817],[97.41517415174155,1.518588018604433],[97.42597425974259,1.5152108640646702],[97.43677436774368,1.4949479368260796],[97.44037440374404,1.4848164732067772],[97.44037440374404,1.479750741397126],[97.44757447574477,1.4763735868573633],[97.45837458374587,1.4780621641272518],[97.4691746917469,1.4763735868573633],[97.47997479974799,1.4780621641272518],[97.48717487174872,1.4763735868573633],[97.48717487174872,1.4729964323176006],[97.49077490774908,1.4594878141585355],[97.49437494374945,1.4561106596187727],[97.51597515975163,1.4324705778404194],[97.5231752317523,1.4274048460307682],[97.52677526775267,1.422339114221117],[97.5339753397534,1.400387609712638],[97.54117541175412,1.3902561460933498],[97.59157591575917,1.3395988279968662],[97.60597605976062,1.3227130552980384],[97.61677616776171,1.2804986235509688],[97.69237692376925,1.1859382964375413],[97.71397713977143,1.1724296782784762],[97.75717757177574,1.1639867919290623],[97.7751777517775,1.1555439055796484],[97.79317793177933,1.1437238646904717],[97.80397803978042,1.1335924010711835],[97.81837818378187,1.109952319292816],[97.82557825578255,1.096443701133751],[97.82917829178291,1.0829350829747],[97.83637836378364,1.0694264648156349],[97.85437854378546,1.0643607330059837],[97.87237872378722,1.0626721557361094],[97.89037890378904,1.0576064239264582],[97.9047790477905,1.044097805767393],[97.92277922779226,1.003571951290212],[97.92997929979299,0.9968176422106723]]],[[[128.68508685086852,2.4844542169773405],[128.6958869588696,2.438862630690508],[128.68148681486815,2.3983367762133128],[128.65988659886602,2.362876653545783],[128.64548645486457,2.3257279536083644],[128.6418864188642,2.2615620173528157],[128.58428584285843,2.1551816493502116],[128.57348573485734,2.121410103952556],[128.56628566285661,2.1095900630633793],[128.5086850868509,2.0623098995066584],[128.49068490684908,2.0538670131572445],[128.3466834668347,2.0403583949981794],[128.33228332283323,2.0352926631885424],[128.31788317883178,2.020095467759589],[128.28908289082892,2.0015211177908867],[128.26748267482674,1.994766808711347],[128.27468274682747,2.016718313219826],[128.28908289082892,2.0403583949981794],[128.28548285482856,2.0572441676970072],[128.25308253082534,2.0893271358247887],[128.2458824588246,2.1062129085236165],[128.24948249482497,2.175444576588802],[128.24228242282425,2.222724740145523],[128.23148231482315,2.2463648219238763],[128.2170821708217,2.258184862813053],[128.19548195481957,2.266627749162467],[128.20628206282066,2.2868906764010575],[128.24948249482497,2.3257279536083644],[128.27828278282783,2.367942385355434],[128.32148321483214,2.4591255579290987],[128.35748357483578,2.4979628351363914],[128.4006840068401,2.518225762374996],[128.41868418684186,2.5334229578039356],[128.42948429484295,2.5671945032015913],[128.43668436684368,2.575637389551005],[128.45828458284586,2.5908345849799446],[128.46548465484653,2.5942117395197073],[128.47628476284763,2.5908345849799446],[128.48708487084872,2.579014544090768],[128.51588515885157,2.5739488122811167],[128.52668526685267,2.5823916986305306],[128.53028530285303,2.600966048599247],[128.5446854468545,2.6246061303776003],[128.56628566285661,2.633049016727014],[128.58428584285843,2.6246061303776003],[128.59508595085953,2.609408934948661],[128.62028620286202,2.5604401941220516],[128.6310863108631,2.545242998693112],[128.6418864188642,2.5384886896135868],[128.68508685086852,2.4844542169773405]]],[[[126.87066870668707,4.331757750229002],[126.89946899468998,4.3064290911807745],[126.92106921069211,4.282789009402407],[126.86346863468634,4.210180186797459],[126.80946809468094,4.157834291431087],[126.80946809468094,4.0869140460960125],[126.80946809468094,4.037945305269417],[126.7986679866799,4.017682378030827],[126.7590675906759,3.992353718982585],[126.71586715867159,4.010928068951301],[126.67626676266764,4.004173759871762],[126.66546665466655,4.034568150729655],[126.67626676266764,4.0598968097778965],[126.6906669066691,4.078471159746599],[126.71946719467195,4.097045509715315],[126.7590675906759,4.184851527749217],[126.80226802268021,4.22368880495651],[126.79146791467917,4.240574577655337],[126.77706777067772,4.245640309464989],[126.7590675906759,4.25070604127464],[126.71226712267122,4.264214659433705],[126.70866708667086,4.287854741212058],[126.71586715867159,4.308117668450649],[126.70866708667086,4.333446327498891],[126.7050670506705,4.343577791118193],[126.70146701467019,4.35539783200737],[126.69786697866982,4.367217872896546],[126.69786697866982,4.397612263754439],[126.7050670506705,4.422940922802681],[126.74106741067413,4.47359824089915],[126.74106741067413,4.48035254997869],[126.74106741067413,4.492172590867867],[126.74106741067413,4.502304054487155],[126.7338673386734,4.524255558995634],[126.7338673386734,4.536075599884811],[126.7446674466745,4.546207063504113],[126.76986769867699,4.549584218043876],[126.79506795067954,4.551272795313764],[126.81666816668167,4.546207063504113],[126.83106831068312,4.537764177154699],[126.83466834668349,4.527632713535397],[126.83466834668349,4.5175012499161085],[126.84186841868421,4.505681209026932],[126.85626856268561,4.498926899947392],[126.8670686706867,4.497238322677518],[126.87426874268743,4.493861168137741],[126.8778687786878,4.478663972708802],[126.88506885068853,4.4567124682003225],[126.8778687786878,4.436449540961732],[126.87066870668707,4.414498036453267],[126.86346863468634,4.392546531944788],[126.85986859868598,4.367217872896546],[126.87066870668707,4.331757750229002]]],[[[122.29502295022951,6.633288569079127],[122.33102331023309,6.613025641840537],[122.33462334623346,6.602894178221234],[122.32022320223206,6.589385560062183],[122.30222302223024,6.582631250982644],[122.25542255422556,6.580942673712769],[122.23382233822338,6.570811210093467],[122.22662226622265,6.55899116920429],[122.21582215822161,6.543793973775337],[122.20862208622088,6.528596778346397],[122.20502205022052,6.513399582917458],[122.19782197821979,6.467807996630626],[122.1870218702187,6.450922223931798],[122.16542165421657,6.444167914852258],[122.14382143821439,6.442479337582384],[122.12222122221226,6.439102183042621],[122.05742057420576,6.413773523994379],[122.03942039420394,6.410396369454617],[121.99621996219963,6.410396369454617],[121.96381963819641,6.4053306376449655],[121.95661956619568,6.40701921491484],[121.95661956619568,6.428970719423319],[121.95301953019532,6.437413605772733],[121.94941949419496,6.444167914852258],[121.8810188101881,6.503268119298156],[121.8810188101881,6.555614014664528],[121.87381873818737,6.57418836463323],[121.8558185581856,6.582631250982644],[121.83421834218342,6.584319828252532],[121.81621816218166,6.592762714601946],[121.80541805418056,6.619779950920062],[121.80901809018093,6.645108609968304],[121.82341823418233,6.660305805397243],[121.83781837818378,6.668748691746657],[121.93861938619386,6.677191578096071],[121.94941949419496,6.680568732635848],[121.95661956619568,6.695765928064787],[121.99621996219963,6.712651700763615],[122.01422014220145,6.729537473462443],[122.02142021420218,6.736291782541969],[122.03942039420394,6.739668937081731],[122.06822068220686,6.74135751435162],[122.07542075420753,6.739668937081731],[122.08262082620826,6.736291782541969],[122.09702097020971,6.721094587113029],[122.10422104221044,6.716028855303378],[122.11502115021153,6.710963123493727],[122.14022140221402,6.705897391684076],[122.15462154621548,6.704208814414201],[122.15462154621548,6.700831659874439],[122.16182161821621,6.690700196255136],[122.16902169021694,6.682257309905722],[122.17982179821797,6.677191578096071],[122.22662226622265,6.670437269016546],[122.23382233822338,6.6653715372068945],[122.2410224102241,6.660305805397243],[122.24462244622447,6.655240073587606],[122.2518225182252,6.650174341777955],[122.26262262622629,6.645108609968304],[122.28782287822878,6.638354300888778],[122.29502295022951,6.633288569079127]]],[[[124.56664566645668,9.870291195444253],[124.54864548645486,9.861848309094853],[124.57024570245704,9.839896804586374],[124.62424624246245,9.801059527379067],[124.5990459904599,9.750402209282583],[124.59544595445954,9.736893591123533],[124.5846458464585,9.731827859313881],[124.55944559445595,9.731827859313881],[124.53424534245346,9.736893591123533],[124.519845198452,9.740270745663295],[124.51624516245164,9.74871363201271],[124.51624516245164,9.758845095631997],[124.51264512645128,9.767287981981411],[124.49824498244982,9.7689765592513],[124.49464494644945,9.76222225017176],[124.46224462244624,9.730139282043993],[124.45144451444514,9.725073550234342],[124.44064440644405,9.721696395694579],[124.42984429844302,9.714942086615054],[124.42624426244265,9.703122045725877],[124.42264422644229,9.689613427566812],[124.42264422644229,9.67948196394751],[124.41904419044192,9.669350500328221],[124.4118441184412,9.659219036708919],[124.38304383043834,9.637267532200454],[124.33984339843397,9.618693182231738],[124.2930429304293,9.606873141342561],[124.26064260642607,9.603495986802798],[124.22104221042213,9.605184564072673],[124.06624066240664,9.595053100453384],[123.93663936639365,9.61700460496185],[123.89343893438934,9.632201800390803],[123.87183871838721,9.645710418549854],[123.86463864638648,9.662596191248682],[123.86823868238685,9.682859118487286],[123.87183871838721,9.703122045725877],[123.87543875438757,9.721696395694579],[123.86463864638648,9.733516436583756],[123.84663846638466,9.736893591123533],[123.82503825038253,9.736893591123533],[123.80703807038071,9.740270745663295],[123.79983799837999,9.757156518362123],[123.80343803438035,9.780796600140476],[123.81063810638108,9.802748104648956],[123.8286382863829,9.843273959126137],[123.8430384303843,9.856782577285202],[123.87543875438757,9.88717696814308],[123.8826388263883,9.902374163572034],[123.88623886238861,9.91419420446121],[123.89343893438934,9.917571359000974],[123.9078390783908,9.912505627191322],[123.91503915039152,9.9158827817311],[123.92223922239225,9.922637090810625],[123.92583925839261,9.932768554429913],[123.93303933039334,9.939522863509453],[123.96543965439656,9.95134290439863],[124.00864008640087,9.961474368017932],[124.05184051840519,9.980048717986634],[124.069840698407,10.012131686114401],[124.069840698407,10.032394613352992],[124.07344073440737,10.047591808781945],[124.08784087840877,10.059411849671122],[124.11664116641168,10.064477581480773],[124.11664116641168,10.072920467830187],[124.11304113041132,10.0813633541796],[124.11664116641168,10.089806240529015],[124.12384123841241,10.09656054960854],[124.13824138241381,10.105003435957954],[124.14184141841417,10.110069167767605],[124.159841598416,10.130332095006196],[124.16704167041672,10.137086404085721],[124.18504185041854,10.143840713165261],[124.22104221042213,10.152283599514675],[124.26424264242644,10.152283599514675],[124.3326433264333,10.160726485864089],[124.35064350643506,10.150595022244786],[124.35424354243543,10.110069167767605],[124.36864368643688,10.11851205411702],[124.38304383043834,10.143840713165261],[124.39744397443974,10.152283599514675],[124.4010440104401,10.13877498135561],[124.40824408244083,10.120200631386894],[124.41904419044192,10.106692013227843],[124.42984429844302,10.110069167767605],[124.47664476644769,10.069543313290424],[124.49104491044909,10.062789004210885],[124.519845198452,10.064477581480773],[124.5306453064531,10.06110042694101],[124.54864548645486,10.04928038605182],[124.57744577445777,10.03408319062288],[124.5882458824588,10.023951727003592],[124.5846458464585,9.99862306795535],[124.5846458464585,9.981737295256522],[124.58104581045814,9.97160583163722],[124.57024570245704,9.98680302706616],[124.56664566645668,9.968228677097457],[124.56664566645668,9.953031481668518],[124.56304563045632,9.944588595319104],[124.55584555845559,9.926014245350387],[124.57024570245704,9.912505627191322],[124.5846458464585,9.89393127722262],[124.5846458464585,9.877045504523792],[124.56664566645668,9.870291195444253]]],[[[125.71865718657187,9.912505627191322],[125.72225722257224,9.89393127722262],[125.71505715057151,9.880422659063555],[125.70065700657005,9.87366834998403],[125.67905679056793,9.877045504523792],[125.66465664656647,9.888865545412969],[125.6610566105661,9.904062740841908],[125.6610566105661,9.920948513540736],[125.65745657456574,9.939522863509453],[125.65025650256501,9.946277172588978],[125.62145621456216,9.954720058938392],[125.61065610656107,9.966540099827569],[125.62145621456216,9.966540099827569],[125.62505625056252,9.966540099827569],[125.61425614256143,9.973294408907108],[125.61065610656107,9.976671563446871],[125.61065610656107,9.981737295256522],[125.6178561785618,9.98680302706616],[125.6178561785618,9.993557336145699],[125.5926559265593,9.993557336145699],[125.58185581855821,10.010443108844527],[125.58545585455857,10.03408319062288],[125.59625596255961,10.056034695131359],[125.59985599855997,10.047591808781945],[125.6070560705607,10.044214654242182],[125.61425614256143,10.045903231512057],[125.6178561785618,10.059411849671122],[125.61425614256143,10.064477581480773],[125.59985599855997,10.079674776909712],[125.59625596255961,10.089806240529015],[125.58905589055894,10.089806240529015],[125.58545585455857,10.077986199639838],[125.57825578255785,10.07629762236995],[125.57105571055712,10.0813633541796],[125.56025560255603,10.083051931449475],[125.5530555305553,10.077986199639838],[125.54585545855457,10.069543313290424],[125.53505535055353,10.06110042694101],[125.52065520655208,10.062789004210885],[125.51345513455135,10.072920467830187],[125.51345513455135,10.086429085989252],[125.50985509855099,10.098249126878429],[125.49545495454953,10.103314858688066],[125.49545495454953,10.108380590497717],[125.49545495454953,10.135397826815847],[125.49545495454953,10.143840713165261],[125.50985509855099,10.150595022244786],[125.51705517055171,10.169169372213503],[125.52065520655208,10.191120876721968],[125.51345513455135,10.206318072150921],[125.52065520655208,10.209695226690684],[125.5278552785528,10.209695226690684],[125.53505535055353,10.206318072150921],[125.54225542255426,10.199563763071382],[125.5386553865539,10.214760958500335],[125.53145531455317,10.228269576659386],[125.53145531455317,10.241778194818451],[125.54225542255426,10.253598235707628],[125.5386553865539,10.25697539024739],[125.53505535055353,10.260352544787168],[125.53145531455317,10.26372969932693],[125.5278552785528,10.268795431136581],[125.53145531455317,10.28399262656552],[125.52425524255244,10.302566976534237],[125.52065520655208,10.317764171963177],[125.54585545855457,10.322829903772828],[125.55665556655566,10.324518481042702],[125.56385563855639,10.331272790122242],[125.56385563855639,10.353224294630706],[125.56025560255603,10.36166718098012],[125.55665556655566,10.366732912789772],[125.55665556655566,10.370110067329534],[125.56385563855639,10.378552953678948],[125.56745567455675,10.380241530948837],[125.57465574655748,10.381930108218711],[125.58185581855821,10.378552953678948],[125.58545585455857,10.366732912789772],[125.5926559265593,10.365044335519897],[125.60345603456034,10.366732912789772],[125.61065610656107,10.371798644599423],[125.61425614256143,10.380241530948837],[125.6178561785618,10.419078808156144],[125.62505625056252,10.444407467204371],[125.62865628656289,10.454538930823674],[125.63945639456398,10.459604662633325],[125.65025650256501,10.461293239903199],[125.65745657456574,10.456227508093562],[125.6718567185672,10.432587426315195],[125.68625686256865,10.400504458187427],[125.68265682656829,10.365044335519897],[125.66465664656647,10.295812667454697],[125.6610566105661,10.270484008406456],[125.65745657456574,10.262041122057042],[125.65385653856538,10.26372969932693],[125.64665646656465,10.265418276596805],[125.63945639456398,10.262041122057042],[125.63945639456398,10.24853250389799],[125.64665646656465,10.240089617548577],[125.6610566105661,10.228269576659386],[125.66825668256683,10.214760958500335],[125.65745657456574,10.199563763071382],[125.66465664656647,10.192809453991856],[125.65385653856538,10.18605514491233],[125.65745657456574,10.175923681293028],[125.66825668256683,10.169169372213503],[125.68625686256865,10.172546526753266],[125.67905679056793,10.145529290435135],[125.67545675456756,10.126954940466433],[125.68265682656829,10.113446322307368],[125.69705697056969,10.093183395068777],[125.70425704257042,10.0813633541796],[125.70785707857078,10.069543313290424],[125.70425704257042,10.056034695131359],[125.69705697056969,10.040837499702405],[125.68985689856902,10.027328881543355],[125.68265682656829,10.022263149733703],[125.68625686256865,10.01382026338429],[125.69345693456938,9.974982986176983],[125.68265682656829,9.958097213478155],[125.68985689856902,9.941211440779327],[125.70785707857078,9.926014245350387],[125.71865718657187,9.912505627191322]]],[[[120.34740347403476,12.02998152362423],[120.35460354603549,12.016472905465164],[120.34740347403476,12.006341441845876],[120.34020340203404,12.001275710036225],[120.32580325803258,11.9945214009567],[120.31140311403112,11.992832823686811],[120.30780307803082,11.9945214009567],[120.30060300603009,11.997898555496462],[120.29340293402936,12.002964287306114],[120.27540275402754,12.002964287306114],[120.26460264602645,11.997898555496462],[120.25020250202505,11.991144246416923],[120.23940239402395,11.98776709187716],[120.2250022500225,11.992832823686811],[120.2142021420214,12.002964287306114],[120.20340203402037,12.00803001911575],[120.18900189001891,12.002964287306114],[120.18540185401855,12.018161482735053],[120.17460174601746,12.023227214544704],[120.1566015660157,12.023227214544704],[120.14220142201424,12.02998152362423],[120.13500135001351,12.021538637274816],[120.14220142201424,12.009718596385639],[120.14220142201424,11.999587132766337],[120.13860138601387,11.98776709187716],[120.13500135001351,11.974258473718109],[120.12420124201242,11.979324205527746],[120.12060120601205,11.979324205527746],[120.11700117001169,11.975947050987983],[120.11340113401133,11.96750416463857],[120.10620106201065,11.96750416463857],[120.0918009180092,11.9945214009567],[120.0810008100081,12.001275710036225],[120.0378003780038,11.9945214009567],[120.01980019800197,11.999587132766337],[120.00180001800021,12.011407173655527],[119.98379983799839,12.024915791814578],[119.96939969399693,12.055310182672471],[119.94059940599408,12.087393150800239],[119.93699936999371,12.10765607803883],[119.93699936999371,12.122853273467783],[119.93339933399335,12.13467331435696],[119.92979929799299,12.144804777976248],[119.9189991899919,12.156624818865438],[119.91179911799117,12.166756282484727],[119.91179911799117,12.180264900643792],[119.90819908199086,12.195462096072731],[119.8937989379894,12.207282136961908],[119.88299882998831,12.198839250612494],[119.87219872198722,12.187019209723317],[119.86499864998649,12.173510591564266],[119.86139861398613,12.160001973405201],[119.84699846998473,12.166756282484727],[119.85059850598509,12.17519916883414],[119.86139861398613,12.183642055183554],[119.86859868598685,12.193773518802857],[119.86859868598685,12.207282136961908],[119.86859868598685,12.21741360058121],[119.86859868598685,12.23261079601015],[119.87219872198722,12.251185145978866],[119.88659886598867,12.25962803232828],[119.9045990459905,12.264693764137931],[119.92259922599226,12.276513805027108],[119.89739897398977,12.276513805027108],[119.88659886598867,12.27482522775722],[119.87939879398795,12.269759495947568],[119.87939879398795,12.308596773154875],[119.88659886598867,12.32210539131394],[119.90819908199086,12.323793968583814],[119.92619926199262,12.317039659504289],[119.93339933399335,12.30184246407535],[119.93339933399335,12.284956691376522],[119.93699936999371,12.276513805027108],[119.95139951399517,12.271448073217456],[119.98739987399875,12.266382341407805],[120.00540005400057,12.263005186868043],[120.01980019800197,12.252873723248754],[120.04860048600489,12.230922218740275],[120.07380073800738,12.205593559692034],[120.0810008100081,12.200527827882382],[120.08820088200883,12.198839250612494],[120.10620106201065,12.19715067334262],[120.11340113401133,12.193773518802857],[120.10260102601029,12.192084941532968],[120.09540095400956,12.185330632453443],[120.0918009180092,12.176887746104029],[120.09540095400956,12.166756282484727],[120.11700117001169,12.166756282484727],[120.1710017100171,12.126230428007545],[120.19620196201964,12.11272180984848],[120.19980199802,12.122853273467783],[120.20340203402037,12.127919005277434],[120.2142021420214,12.129607582547308],[120.2250022500225,12.126230428007545],[120.2250022500225,12.219102177851099],[120.22860228602286,12.219102177851099],[120.24300243002432,12.200527827882382],[120.25020250202505,12.185330632453443],[120.25380253802541,12.17013343702449],[120.25020250202505,12.143116200706373],[120.25740257402578,12.131296159817197],[120.27180271802717,12.13467331435696],[120.28620286202863,12.13467331435696],[120.29340293402936,12.117787541658132],[120.29700297002972,12.11947611892802],[120.29700297002972,12.121164696197894],[120.30060300603009,12.126230428007545],[120.32940329403294,12.097524614419541],[120.3438034380344,12.080638841720713],[120.34740347403476,12.067130223561648],[120.3438034380344,12.053621605402583],[120.33660336603367,12.048555873592946],[120.32940329403294,12.045178719053169],[120.31860318603185,12.036735832703755],[120.31500315003149,12.023227214544704],[120.31860318603185,12.018161482735053],[120.32580325803258,12.019850060004941],[120.3330033300333,12.02998152362423],[120.33660336603367,12.02998152362423],[120.34020340203404,12.028292946354355],[120.34020340203404,12.026604369084467],[120.34020340203404,12.021538637274816],[120.34740347403476,12.02998152362423]]],[[[124.05544055440555,11.80033501492018],[124.05904059040591,11.783449242221351],[124.06624066240664,11.76487489225265],[124.07344073440737,11.744611965014059],[124.069840698407,11.727726192315231],[124.05544055440555,11.726037615045342],[124.0410404104041,11.74292338774417],[124.01944019440197,11.783449242221351],[124.00864008640087,11.796957860380417],[123.97263972639729,11.825663673968421],[123.94743947439474,11.835795137587724],[123.92583925839261,11.859435219366077],[123.88983889838897,11.871255260255253],[123.87543875438757,11.884763878414319],[123.85743857438575,11.913469692002323],[123.8430384303843,11.906715382922798],[123.82503825038253,11.91009253746256],[123.78903789037889,11.926978310161388],[123.7638376383764,11.915158269272212],[123.74223742237422,11.926978310161388],[123.72423724237245,11.94555266013009],[123.71343713437136,11.953995546479504],[123.71703717037173,11.96750416463857],[123.72063720637209,11.975947050987983],[123.73143731437318,11.981012782797634],[123.74583745837458,11.981012782797634],[123.73143731437318,12.00803001911575],[123.72783727837282,11.999587132766337],[123.72423724237245,11.9945214009567],[123.72063720637209,11.9945214009567],[123.709837098371,12.00803001911575],[123.6990369903699,12.021538637274816],[123.68463684636845,12.031670100894118],[123.65943659436596,12.043490141783295],[123.65223652236523,12.05699875994236],[123.65223652236523,12.068818800831536],[123.67023670236705,12.07050737810141],[123.64863648636486,12.07726168718095],[123.6306363063631,12.075573109911062],[123.61623616236164,12.078950264450825],[123.60543605436055,12.11947611892802],[123.5910359103591,12.13467331435696],[123.56223562235624,12.166756282484727],[123.54783547835478,12.188707786993206],[123.54063540635406,12.193773518802857],[123.5118351183512,12.205593559692034],[123.50463504635047,12.210659291501685],[123.48663486634865,12.21741360058121],[123.46143461434616,12.215725023311322],[123.43983439834398,12.208970714231796],[123.42543425434258,12.200527827882382],[123.41103411034112,12.188707786993206],[123.38223382233821,12.144804777976248],[123.37143371433717,12.11947611892802],[123.36423364233644,12.105967500768955],[123.35343353433535,12.095836037149652],[123.34623346233462,12.090770305340001],[123.33543335433353,12.089081728070127],[123.32823328233286,12.085704573530364],[123.32103321033213,12.07050737810141],[123.26703267032673,12.00803001911575],[123.18063180631805,11.930355464701151],[123.15903159031592,11.918535423811974],[123.14823148231483,11.930355464701151],[123.15183151831519,11.950618391939742],[123.15543155431556,11.974258473718109],[123.16623166231665,11.9945214009567],[123.17343173431738,12.002964287306114],[123.18423184231841,12.004652864575988],[123.19143191431914,12.011407173655527],[123.19143191431914,12.021538637274816],[123.19143191431914,12.033358678163992],[123.19143191431914,12.046867296323057],[123.19863198631987,12.05699875994236],[123.2058320583206,12.065441646291774],[123.21303213032132,12.07726168718095],[123.20943209432096,12.114410387118369],[123.21663216632169,12.132984737087071],[123.23103231032309,12.126230428007545],[123.23823238232382,12.13973904616661],[123.24543245432454,12.149870509785899],[123.25623256232564,12.156624818865438],[123.27063270632709,12.160001973405201],[123.27783277832782,12.165067705214852],[123.27423274232746,12.17519916883414],[123.259832598326,12.193773518802857],[123.27423274232746,12.20221640515227],[123.28503285032849,12.208970714231796],[123.29583295832958,12.21741360058121],[123.29223292232922,12.235987950549926],[123.259832598326,12.2376765278198],[123.23823238232382,12.235987950549926],[123.21663216632169,12.227545064200513],[123.22023220232205,12.234299373280038],[123.21663216632169,12.264693764137931],[123.22023220232205,12.268070918677694],[123.22023220232205,12.269759495947568],[123.24903249032491,12.306908195885],[123.25263252632527,12.320416814044052],[123.25623256232564,12.350811204901945],[123.27063270632709,12.39977994572854],[123.27423274232746,12.423420027506893],[123.27063270632709,12.438617222935846],[123.26703267032673,12.44706010928526],[123.25623256232564,12.453814418364786],[123.24183241832418,12.463945881984088],[123.23103231032309,12.580457713605995],[123.23463234632345,12.592277754495171],[123.24183241832418,12.595654909034934],[123.25263252632527,12.592277754495171],[123.26343263432636,12.585523445415646],[123.27783277832782,12.578769136336106],[123.30663306633068,12.575391981796344],[123.32103321033213,12.570326249986692],[123.33183331833317,12.563571940907167],[123.3390333903339,12.556817631827627],[123.34623346233462,12.55175190001799],[123.35703357033572,12.550063322748102],[123.35703357033572,12.548374745478213],[123.35703357033572,12.543309013668576],[123.3390333903339,12.546686168208339],[123.3390333903339,12.531488972779385],[123.35703357033572,12.496028850111855],[123.34983349833499,12.487585963762442],[123.3390333903339,12.479143077413028],[123.32823328233286,12.467323036523851],[123.32103321033213,12.450437263825023],[123.3246332463325,12.438617222935846],[123.3390333903339,12.445371532015372],[123.35703357033572,12.46901161379374],[123.36783367833681,12.46901161379374],[123.37143371433717,12.470700191063614],[123.37503375033754,12.475765922873265],[123.37503375033754,12.485897386492553],[123.37503375033754,12.48927454103233],[123.3786337863379,12.501094581921507],[123.38583385833857,12.512914622810683],[123.38943389433894,12.512914622810683],[123.39663396633966,12.519668931890209],[123.41463414634148,12.521357509160097],[123.43263432634325,12.517980354620335],[123.4470344703447,12.512914622810683],[123.47943479434798,12.480831654682916],[123.49383493834938,12.46901161379374],[123.5118351183512,12.460568727444326],[123.54783547835478,12.460568727444326],[123.55143551435515,12.457191572904549],[123.5658356583566,12.44030580020572],[123.57303573035733,12.431862913856307],[123.58023580235806,12.413288563887605],[123.59463594635946,12.394714213918888],[123.60903609036092,12.386271327569474],[123.60903609036092,12.379517018489949],[123.59823598235982,12.37782844122006],[123.5910359103591,12.372762709410424],[123.58743587435873,12.362631245791121],[123.58743587435873,12.350811204901945],[123.62343623436237,12.367696977600772],[123.63783637836377,12.371074132140535],[123.6450364503645,12.354188359441707],[123.64863648636486,12.349122627632056],[123.65583655836559,12.345745473092293],[123.67023670236705,12.345745473092293],[123.67743677436778,12.344056895822419],[123.68823688236881,12.33730258674288],[123.69543695436954,12.330548277663354],[123.70263702637027,12.320416814044052],[123.76743767437677,12.214036446041447],[123.79263792637926,12.187019209723317],[123.78903789037889,12.230922218740275],[123.79623796237962,12.246119414169215],[123.8178381783818,12.23261079601015],[123.85023850238503,12.200527827882382],[123.86103861038612,12.20221640515227],[123.87183871838721,12.210659291501685],[123.8826388263883,12.212347868771559],[123.88983889838897,12.200527827882382],[123.88983889838897,12.207282136961908],[123.90063900639007,12.187019209723317],[123.9510395103951,12.104278923499066],[123.95823958239583,12.100901768959304],[123.97263972639729,12.095836037149652],[123.97983979839802,12.090770305340001],[123.98343983439838,12.082327418990602],[123.99423994239942,12.048555873592946],[123.99783997839978,12.040112987243532],[124.0410404104041,11.98776709187716],[124.05184051840519,11.970881319178332],[124.05544055440555,11.953995546479504],[124.03744037440373,11.964127010098807],[124.01944019440197,11.996209978226574],[123.99783997839978,12.00803001911575],[124.00144001440015,11.997898555496462],[124.00864008640087,11.991144246416923],[124.01944019440197,11.974258473718109],[124.00864008640087,11.965815587368695],[124.01224012240124,11.953995546479504],[124.03384033840342,11.926978310161388],[124.05904059040591,11.874632414795016],[124.06264062640628,11.861123796635965],[124.06264062640628,11.837483714857598],[124.05544055440555,11.810466478539482],[124.05544055440555,11.80033501492018]]],[[[122.11502115021153,12.666575154370008],[122.14742147421475,12.658132268020594],[122.15462154621548,12.648000804401292],[122.15462154621548,12.632803608972353],[122.15102151021512,12.627737877162701],[122.13662136621366,12.631115031702478],[122.12942129421293,12.626049299892827],[122.12942129421293,12.615917836273525],[122.13662136621366,12.560194786367404],[122.12942129421293,12.528111818239623],[122.1078210782108,12.460568727444326],[122.10062100621008,12.386271327569474],[122.08262082620826,12.3153510822344],[122.05022050220504,12.242742259629452],[122.04302043020431,12.23261079601015],[122.03582035820358,12.214036446041447],[122.04662046620467,12.200527827882382],[122.06102061020613,12.188707786993206],[122.06102061020613,12.173510591564266],[122.04662046620467,12.187019209723317],[122.03942039420394,12.178576323373903],[122.02142021420218,12.163379127944964],[122.01782017820182,12.156624818865438],[122.01782017820182,12.104278923499066],[122.01062010620109,12.104278923499066],[121.99261992619927,12.127919005277434],[121.98541985419854,12.143116200706373],[121.99261992619927,12.160001973405201],[121.96381963819641,12.161690550675075],[121.96021960219605,12.178576323373903],[121.96381963819641,12.227545064200513],[121.97461974619745,12.203904982422145],[121.98541985419854,12.200527827882382],[121.9998199982,12.210659291501685],[122.00702007020072,12.23261079601015],[122.00342003420036,12.24443083689934],[121.99261992619927,12.249496568708977],[121.98181981819818,12.251185145978866],[121.97101971019714,12.256250877788517],[121.93141931419314,12.296776732265698],[121.9206192061921,12.303531041345224],[121.92421924219241,12.338991164012768],[121.9350193501935,12.379517018489949],[121.94581945819459,12.39977994572854],[121.97821978219781,12.411599986617716],[121.99261992619927,12.44199437747561],[121.99621996219963,12.479143077413028],[121.99621996219963,12.512914622810683],[121.99261992619927,12.57201482725658],[121.99621996219963,12.592277754495171],[122.01782017820182,12.612540681733762],[122.07542075420753,12.627737877162701],[122.10422104221044,12.641246495321766],[122.11502115021153,12.666575154370008]]],[[[122.10062100621008,13.41630346219793],[122.10422104221044,13.407860575848517],[122.12222122221226,13.39604053495934],[122.12942129421293,13.385909071340038],[122.1186211862119,13.357203257752033],[122.06102061020613,13.298103053306136],[122.03942039420394,13.269397239718131],[122.05022050220504,13.24913431247954],[122.03942039420394,13.230559962510824],[122.00702007020072,13.205231303462583],[121.99261992619927,13.20185414892282],[121.97821978219781,13.213674189811996],[121.96381963819641,13.227182807971062],[121.95301953019532,13.235625694320476],[121.94221942219423,13.240691426130127],[121.90981909819101,13.269397239718131],[121.89901899018992,13.272774394257894],[121.88461884618846,13.272774394257894],[121.87381873818737,13.276151548797657],[121.8666186661867,13.28459443514707],[121.84861848618488,13.309923094195312],[121.81621816218166,13.342006062323094],[121.81261812618129,13.352137525942382],[121.81621816218166,13.375777607720735],[121.81621816218166,13.382531916800275],[121.81261812618129,13.397729112229214],[121.81261812618129,13.450075007595586],[121.81621816218166,13.465272203024526],[121.82341823418233,13.47371508937394],[121.85221852218524,13.52099525293066],[121.85221852218524,13.531126716549949],[121.8558185581856,13.558143952868079],[121.85941859418597,13.564898261947604],[121.87381873818737,13.568275416487367],[121.88821888218882,13.554766798328302],[121.90981909819101,13.522683830200535],[121.91341913419137,13.529438139280074],[121.92421924219241,13.537881025629474],[121.93141931419314,13.544635334709014],[121.94581945819459,13.529438139280074],[121.96741967419678,13.524372407470423],[121.9890198901989,13.531126716549949],[121.99621996219963,13.55138964378854],[122.01062010620109,13.542946757439125],[122.02142021420218,13.532815293819837],[122.02502025020249,13.522683830200535],[122.01782017820182,13.50917521204147],[122.03222032220322,13.51424094385112],[122.04662046620467,13.50917521204147],[122.05022050220504,13.499043748422181],[122.03942039420394,13.488912284802879],[122.04302043020431,13.485535130263116],[122.0538205382054,13.47878082118359],[122.06102061020613,13.475403666643814],[122.07542075420753,13.485535130263116],[122.09702097020971,13.480469398453465],[122.11502115021153,13.465272203024526],[122.12222122221226,13.448386430325698],[122.1186211862119,13.443320698516047],[122.11142111421117,13.441632121246172],[122.10062100621008,13.441632121246172],[122.10062100621008,13.433189234896759],[122.10062100621008,13.41630346219793]]],[[[124.41904419044192,13.872219325066254],[124.41904419044192,13.865465015986729],[124.40464404644047,13.857022129637315],[124.39024390243901,13.845202088748138],[124.40464404644047,13.838447779668599],[124.40824408244083,13.826627738779422],[124.4118441184412,13.811430543350482],[124.41904419044192,13.797921925191417],[124.39744397443974,13.791167616111892],[124.39024390243901,13.791167616111892],[124.39744397443974,13.779347575222701],[124.39744397443974,13.770904688873287],[124.39744397443974,13.742198875285283],[124.39024390243901,13.721935948046692],[124.39024390243901,13.711804484427404],[124.40824408244083,13.6830986708394],[124.40824408244083,13.667901475410446],[124.3866438664387,13.659458589061032],[124.36504365043652,13.66114716633092],[124.35424354243543,13.659458589061032],[124.35064350643506,13.651015702711618],[124.35064350643506,13.632441352742916],[124.3326433264333,13.57165257102713],[124.33624336243366,13.558143952868079],[124.31824318243184,13.568275416487367],[124.30744307443075,13.588538343725958],[124.2930429304293,13.603735539154911],[124.28224282242826,13.59866980734526],[124.2678426784268,13.602046961885023],[124.24984249842498,13.59866980734526],[124.23544235442358,13.59191549826572],[124.22104221042213,13.581784034646432],[124.2138421384214,13.568275416487367],[124.20664206642067,13.548012489248777],[124.19944199441994,13.531126716549949],[124.18864188641885,13.522683830200535],[124.17064170641709,13.529438139280074],[124.11664116641168,13.57840688010667],[124.08424084240846,13.600358384615134],[124.069840698407,13.605424116424786],[124.04824048240482,13.605424116424786],[124.05184051840519,13.61893273458385],[124.04824048240482,13.63412993001279],[124.0410404104041,13.645949970901967],[124.03024030240306,13.657770011791158],[124.0266402664027,13.669590052680334],[124.03744037440373,13.68141009356951],[124.06264062640628,13.694918711728576],[124.08784087840877,13.71687021623704],[124.10584105841059,13.74557602982506],[124.12024120241205,13.779347575222701],[124.13104131041314,13.818184852430008],[124.12024120241205,13.875596479606017],[124.12744127441277,13.89079367503497],[124.1346413464135,13.907679447733798],[124.1346413464135,13.924565220432612],[124.12024120241205,13.963402497639919],[124.11664116641168,13.980288270338747],[124.11664116641168,13.98873115668816],[124.12024120241205,13.993796888497812],[124.13104131041314,14.002239774847226],[124.1346413464135,14.01068266119664],[124.1346413464135,14.019125547546054],[124.12384123841241,14.034322742974993],[124.12384123841241,14.049519938403932],[124.13104131041314,14.064717133832886],[124.13824138241381,14.078225751991951],[124.1490414904149,14.063028556562998],[124.16344163441636,14.06640571110276],[124.18504185041854,14.084980061071477],[124.19224192241921,14.090045792881128],[124.19944199441994,14.091734370151002],[124.20664206642067,14.091734370151002],[124.21744217442176,14.08666863834135],[124.23544235442358,14.068094288372649],[124.25344253442535,14.04614278386417],[124.26424264242644,14.022502702085816],[124.27504275042753,13.997174043037575],[124.2786427864279,13.954959611290505],[124.28584285842862,13.95327103402063],[124.29664296642966,13.944828147671217],[124.30744307443075,13.927942374972389],[124.30024300243002,13.92118806589285],[124.30384303843039,13.914433756813324],[124.30744307443075,13.911056602273561],[124.30744307443075,13.90599087046391],[124.31464314643148,13.90599087046391],[124.32904329043294,13.933008106782026],[124.35784357843579,13.92118806589285],[124.41904419044192,13.872219325066254]]],[[[-17.31797317973178,75.13549125368044],[-17.379173791737912,75.10003113101291],[-17.40077400774007,75.07639104923456],[-17.38637386373864,75.04599665837665],[-17.37557375573755,75.040930926567],[-17.364773647736484,75.040930926567],[-17.353973539735392,75.03924234929713],[-17.350373503735028,75.02911088567782],[-17.353973539735392,75.02573373113808],[-17.382773827738276,75.01729084478865],[-17.447574475744744,75.00715938116934],[-17.515975159751605,75.00547080389947],[-17.497974979749785,74.99871649481994],[-17.497974979749785,74.9852078766609],[-17.505175051750513,74.97169925850181],[-17.523175231752305,74.96156779488251],[-17.548375483754825,74.94974775399334],[-17.584375843758437,74.93961629037406],[-17.616776167761685,74.93623913583428],[-17.64557645576454,74.94468202218368],[-17.631176311763113,74.94805917672346],[-17.62037620376202,74.95481348580299],[-17.609576095760957,74.96325637215241],[-17.605976059760593,74.97507641304159],[-17.605976059760593,74.99196218574042],[-17.609576095760957,74.99702791755007],[-17.64557645576454,74.99871649481994],[-17.735577355773557,75.012225112979],[-17.818378183781846,75.00547080389947],[-17.818378183781846,75.012225112979],[-17.811178111781118,75.012225112979],[-17.836378363783638,75.03079946294773],[-17.87957879578795,75.03586519475735],[-18.099180991809902,75.03755377202725],[-18.178381783817827,75.01729084478865],[-18.44838448384482,74.9852078766609],[-18.822788227882285,75.00715938116934],[-18.891188911889117,74.99871649481994],[-18.90918909189091,75.00884795843925],[-18.919989199892,75.02573373113808],[-18.9271892718927,75.04599665837665],[-18.919989199892,75.05443954472608],[-18.923589235892365,75.0611938538056],[-18.9271892718927,75.069636740155],[-18.9271892718927,75.08145678104418],[-18.919989199892,75.09496539920326],[-18.905589055890545,75.10509686282256],[-18.837188371883713,75.1506884491094],[-18.829988299882984,75.15744275818892],[-18.837188371883713,75.16757422180822],[-18.887588875888753,75.19121430358658],[-18.85158851588514,75.19459145812633],[-18.837188371883713,75.2064114990155],[-18.837188371883713,75.26382312619154],[-18.85158851588514,75.29421751704942],[-18.887588875888753,75.30772613520847],[-18.923589235892365,75.3161690215579],[-18.948789487894885,75.3347433715266],[-18.797587975879765,75.33643194879647],[-18.76878768787688,75.34149768060612],[-18.714787147871476,75.36007203057483],[-18.70038700387002,75.36176060784473],[-18.671586715867164,75.35669487603508],[-18.660786607866072,75.35669487603508],[-18.538385383853836,75.37526922600378],[-18.513185131851316,75.3735806487339],[-18.4231842318423,75.33980910333625],[-18.39798397983978,75.32798906244707],[-18.387183871838715,75.31110328974825],[-18.387183871838715,75.30772613520847],[-18.37278372783726,75.30434898066872],[-18.31518315183152,75.29928324885907],[-18.21438214382144,75.30941471247837],[-18.160381603816035,75.32292333063742],[-18.124381243812422,75.34149768060612],[-18.13158131581315,75.34994056695555],[-18.135181351813515,75.35838345330495],[-18.135181351813515,75.36682633965438],[-18.13158131581315,75.37526922600378],[-18.135181351813515,75.38371211235321],[-18.127981279812786,75.39215499870261],[-18.117181171811723,75.39890930778213],[-18.10638106381063,75.40228646232191],[-18.095580955809538,75.41917223502074],[-18.052380523805226,75.42086081229061],[-18.001980019800186,75.41241792594121],[-17.969579695796966,75.40228646232191],[-17.958779587795874,75.39890930778213],[-17.933579335793354,75.38033495781343],[-17.919179191791926,75.3735806487339],[-17.865178651786522,75.36007203057483],[-17.843578435784366,75.34825198968565],[-17.850778507785066,75.3347433715266],[-17.81477814778148,75.32123475336755],[-17.80397803978039,75.314480444288],[-17.832778327783274,75.29421751704942],[-17.976779767797666,75.26044597165176],[-18.124381243812422,75.26720028073129],[-18.14598145981458,75.26044597165176],[-18.117181171811723,75.26044597165176],[-18.10638106381063,75.25706881711199],[-18.091980919809203,75.25200308530233],[-18.178381783817827,75.24524877622281],[-18.199981999819983,75.24187162168306],[-18.210782107821075,75.23174015806376],[-18.210782107821075,75.22160869444446],[-18.12078120781206,75.20978865355528],[-18.027180271802706,75.23342873533363],[-18.016380163801642,75.22836300352398],[-18.016380163801642,75.2165429626348],[-18.023580235802342,75.20978865355528],[-18.03078030780307,75.20472292174563],[-18.048780487804862,75.18445999450705],[-18.052380523805226,75.18277141723715],[-18.019980199802006,75.1591313354588],[-18.001980019800186,75.1489998718395],[-17.98037980379803,75.1405569854901],[-17.962379623796238,75.13549125368044],[-17.92277922779226,75.13886840822022],[-17.911979119791198,75.13549125368044],[-17.90477904779047,75.13042552187079],[-17.901179011790106,75.12535979006114],[-17.901179011790106,75.11860548098161],[-17.89757897578974,75.11522832644184],[-17.857978579785794,75.10003113101291],[-17.81477814778148,75.08821109012374],[-17.7211772117721,75.08145678104418],[-17.60237602376023,75.09834255374301],[-17.591575915759165,75.10340828555266],[-17.584375843758437,75.10847401736231],[-17.584375843758437,75.11691690371174],[-17.591575915759165,75.12198263552139],[-17.60237602376023,75.12535979006114],[-17.605976059760593,75.12873694460092],[-17.591575915759165,75.15237702637927],[-17.555575555755553,75.15575418091905],[-17.51237512375124,75.1506884491094],[-17.472774727747264,75.1489998718395],[-17.433174331743317,75.15744275818892],[-17.39357393573934,75.1591313354588],[-17.357573575735756,75.15406560364914],[-17.31797317973178,75.13549125368044]]],[[[-18.765187651876516,79.97326513189438],[-18.736387363873632,79.97326513189438],[-18.685986859868592,79.98170801824378],[-18.59958599585994,80.01210240910169],[-18.577985779857784,80.01716814091134],[-18.160381603816035,80.05431684084874],[-17.73917739177392,80.09146554078617],[-17.66357663576636,80.0880883862464],[-17.278372783727832,80.01379098637156],[-17.26757267572674,80.00872525456191],[-17.26037260372604,80.00365952275226],[-17.314373143731444,79.97833086370403],[-17.3431734317343,79.9614450910052],[-17.357573575735756,79.94455931830637],[-17.5951759517595,79.84324468211341],[-17.836378363783638,79.74193004592044],[-18.174781747817462,79.69296130509383],[-18.48438484384843,79.6862069960143],[-18.56718567185672,79.70815850052279],[-18.829988299882984,79.74361862319032],[-19.092790927909277,79.77739016858797],[-19.16119161191611,79.7959645185567],[-19.251192511925126,79.83142464122423],[-19.391593915939154,79.84831041392306],[-19.41319413194131,79.84831041392306],[-19.359193591935906,79.87026191843154],[-19.150391503915046,79.9040334638292],[-19.067590675906757,79.92767354560755],[-19.031590315903145,79.9310507001473],[-18.955989559895585,79.92936212287742],[-18.919989199892,79.93442785468707],[-18.923589235892365,79.94624789557625],[-18.93438934389343,79.95637935919555],[-18.95958959589595,79.97326513189438],[-18.98478984789847,80.00365952275226],[-19.00279002790026,80.01379098637156],[-18.855188551885504,80.02729960453061],[-18.82638826388262,80.02561102726074],[-18.811988119881192,80.02223387272096],[-18.78318783187831,80.00872525456191],[-18.772387723877245,80.00197094548238],[-18.76878768787688,79.99015090459321],[-18.765187651876516,79.97326513189438]]],[[[-66.14886148861488,-79.62768126287853],[-65.85725857258572,-79.60235260383028],[-65.81765817658176,-79.60741833563993],[-65.78885788857887,-79.62430410833876],[-65.8140581405814,-79.62768126287853],[-65.93645936459365,-79.6597642310063],[-65.96525965259652,-79.6597642310063],[-65.99045990459904,-79.65469849919666],[-65.9940599405994,-79.65469849919666],[-65.99765997659976,-79.64794419011713],[-66.00126001260013,-79.64625561284724],[-66.00846008460084,-79.64625561284724],[-66.25686256862568,-79.67327284916536],[-66.65646656466565,-79.6597642310063],[-66.6780667806678,-79.66314138554607],[-66.69966699666996,-79.66820711735572],[-66.64566645666456,-79.69015862186419],[-66.58446584465844,-79.70197866275336],[-66.27126271262712,-79.72224158999197],[-66.11286112861129,-79.76614459900891],[-66.01566015660156,-79.77458748535832],[-65.69165691656916,-79.75263598084985],[-65.6520565205652,-79.75939028992939],[-65.60165601656016,-79.77627606262821],[-65.57285572855729,-79.78303037170774],[-65.55485554855548,-79.77796463989809],[-65.55845558455584,-79.78303037170774],[-65.580055800558,-79.79485041259692],[-65.56205562055621,-79.79822756713668],[-65.55125551255512,-79.80329329894633],[-65.5440554405544,-79.80835903075598],[-65.56565565655656,-79.81342476256563],[-65.8680586805868,-79.83031053526446],[-65.89685896858968,-79.83875342161387],[-65.90045900459005,-79.83875342161387],[-65.87525875258753,-79.84888488523316],[-65.52965529655296,-79.88265643063082],[-65.51525515255152,-79.88603358517058],[-65.50445504455044,-79.89278789425012],[-65.50085500855008,-79.9046079351393],[-65.50085500855008,-79.91473939875858],[-65.50445504455044,-79.923182285108],[-65.50085500855008,-79.9333137487273],[-65.49365493654936,-79.94006805780683],[-65.47925479254792,-79.94513378961648],[-65.45045450454504,-79.951888098696],[-65.46485464854648,-79.951888098696],[-65.51165511655117,-79.9637081395852],[-65.72765727657276,-79.99072537590331],[-65.7420574205742,-79.99579110771296],[-65.75285752857528,-80.00254541679249],[-65.7780577805778,-80.01774261222144],[-65.7960579605796,-80.02787407584073],[-66.22446224462244,-80.08697428028663],[-66.31086310863108,-80.0802199712071],[-66.39366393663936,-80.0599570439685],[-66.38646386463864,-80.05151415761908],[-66.38286382863828,-80.04982558034921],[-66.38646386463864,-80.0413826939998],[-66.39366393663936,-80.03800553946003],[-66.40446404464045,-80.03293980765038],[-66.41526415264153,-80.02956265311062],[-66.35406354063541,-80.01605403495155],[-66.3360633606336,-80.01605403495155],[-66.34326343263432,-80.00085683952261],[-66.35766357663576,-79.98734822136355],[-66.37566375663756,-79.97552818047437],[-66.39366393663936,-79.96877387139483],[-66.41886418864188,-79.96033098504542],[-66.72126721267212,-79.93669090326706],[-66.76806768067681,-79.91980513056824],[-66.97326973269732,-79.92149370783812],[-67.00927009270092,-79.91305082148871],[-67.02727027270272,-79.89785362605976],[-67.0020700207002,-79.87590212155129],[-66.84726847268472,-79.82186764891505],[-66.83646836468364,-79.8151133398355],[-66.81846818468185,-79.7965389898668],[-66.81126811268112,-79.79147325805715],[-66.87246872468724,-79.79822756713668],[-66.93366933669336,-79.79316183532704],[-67.31167311673116,-79.71548728091243],[-67.68967689676896,-79.63781272649783],[-67.76167761677617,-79.59390971748087],[-67.77607776077761,-79.58884398567123],[-67.80487804878048,-79.58715540840134],[-67.83367833678336,-79.57871252205193],[-67.84087840878408,-79.55844959481334],[-67.82647826478265,-79.54662955392416],[-67.80487804878048,-79.53818666757475],[-67.70767707677076,-79.52636662668557],[-67.67887678876788,-79.52805520395545],[-67.65367653676536,-79.53480951303499],[-67.65727657276572,-79.53649809030486],[-67.68247682476824,-79.55169528573381],[-67.61767617676176,-79.54494097665427],[-67.56367563675636,-79.55169528573381],[-67.52047520475205,-79.54831813119404],[-67.44847448474485,-79.56689248116275],[-67.18567185671856,-79.56689248116275],[-66.91926919269193,-79.56689248116275],[-66.9120691206912,-79.56520390389286],[-66.92646926469264,-79.5719582129724],[-66.97686976869768,-79.58377825386158],[-66.88686886868868,-79.58546683113147],[-66.87246872468724,-79.58884398567123],[-66.83286832868329,-79.60066402656041],[-66.750067500675,-79.61754979925924],[-66.45126451264512,-79.62261553106889],[-66.14886148861488,-79.62768126287853]]],[[[-68.23328233282332,-79.28658865436222],[-68.13968139681397,-79.26801430439352],[-68.12168121681216,-79.26125999531399],[-68.09288092880928,-79.24268564534528],[-68.07848078480784,-79.23424275899586],[-68.01728017280172,-79.22579987264645],[-67.6140761407614,-79.21229125448738],[-67.33687336873368,-79.23593133626575],[-67.05967059670596,-79.26125999531399],[-67.04887048870488,-79.26463714985375],[-67.07047070470705,-79.28321149982246],[-67.09567095670957,-79.29334296344176],[-67.19647196471965,-79.31867162249],[-67.21447214472144,-79.31867162249],[-67.22167221672217,-79.31698304522011],[-67.25047250472504,-79.3085401588707],[-67.27207272072721,-79.3085401588707],[-67.33327333273333,-79.32542593156953],[-67.50967509675097,-79.39803475417449],[-67.49887498874989,-79.40478906325401],[-67.48087480874808,-79.40985479506367],[-67.34047340473404,-79.42167483595284],[-67.31167311673116,-79.4267405677625],[-67.290072900729,-79.43856060865167],[-67.29367293672937,-79.44193776319143],[-67.30807308073081,-79.45038064954085],[-67.29367293672937,-79.4554463813505],[-67.24327243272432,-79.4554463813505],[-67.25767257672577,-79.46220069043002],[-67.32967329673296,-79.4740207313192],[-67.37647376473764,-79.49090650401803],[-67.42327423274233,-79.50103796763733],[-67.46647466474664,-79.50610369944698],[-67.93087930879308,-79.48921792674815],[-68.39168391683917,-79.47064357677944],[-68.45288452884529,-79.44700349500108],[-68.550085500855,-79.44362634046132],[-68.57168571685716,-79.43687203138178],[-68.56088560885608,-79.4250519904926],[-68.53568535685356,-79.41492052687332],[-68.50328503285033,-79.40478906325401],[-68.010080100801,-79.36595178604671],[-67.51327513275132,-79.32542593156953],[-67.470074700747,-79.3085401588707],[-67.50247502475024,-79.30178584979117],[-67.67527675276753,-79.30347442706105],[-67.69687696876969,-79.30009727252128],[-67.7040770407704,-79.29672011798152],[-67.71127711277113,-79.29165438617187],[-67.71127711277113,-79.28658865436222],[-67.7040770407704,-79.2798343452827],[-67.71127711277113,-79.28152292255258],[-67.80127801278013,-79.289965808902],[-67.85167851678517,-79.28152292255258],[-68.26928269282692,-79.32711450883941],[-68.43128431284312,-79.32711450883941],[-68.44568445684456,-79.32373735429964],[-68.41688416884169,-79.31191731341046],[-68.23328233282332,-79.28658865436222]]],[[[-33.91773917739178,-79.31191731341046],[-33.98613986139861,-79.34906601334788],[-34.07254072540724,-79.36088605423706],[-34.51174511745117,-79.35075459061777],[-34.95454954549544,-79.34062312699847],[-35.39735397353974,-79.33049166337918],[-35.840158401584006,-79.31867162249],[-36.2829628296283,-79.3085401588707],[-36.72576725767257,-79.29840869525141],[-36.844568445684445,-79.2595714180441],[-36.938169381693825,-79.1818968636295],[-36.88416884168842,-79.19202832724879],[-36.72216722167221,-79.26463714985375],[-36.610566105661064,-79.27139145893328],[-36.58896588965888,-79.27476861347304],[-36.603366033660336,-79.2595714180441],[-36.62136621366213,-79.24437422261516],[-36.642966429664284,-79.2308656044561],[-36.660966609666104,-79.22242271810669],[-36.250562505625055,-79.19540548178855],[-35.84375843758437,-79.16838824547044],[-35.7861578615786,-79.15319105004149],[-35.68535685356852,-79.10759946375465],[-35.62775627756278,-79.0940908455956],[-35.50175501755018,-79.09071369105584],[-35.00855008550084,-79.14981389550172],[-34.515345153451534,-79.20891409994762],[-34.022140221402196,-79.26801430439352],[-33.91773917739178,-79.31191731341046]]],[[[-20.36720367203671,-74.42517469436993],[-20.370803708037073,-74.43361758071936],[-20.374403744037437,-74.44206046706876],[-20.3780037800378,-74.4488147761483],[-20.40320403204032,-74.47583201246641],[-20.414004140041385,-74.48427489881583],[-20.42840428404284,-74.48934063062548],[-20.47880478804788,-74.49947209424478],[-20.52920529205292,-74.50284924878454],[-20.806408064080642,-74.47583201246641],[-20.842408424084226,-74.46232339430736],[-20.864008640086382,-74.438683312529],[-20.867608676086746,-74.43192900344947],[-20.864008640086382,-74.4184203852904],[-20.864008640086382,-74.40997749894099],[-20.87120871208711,-74.40153461259158],[-20.889208892088902,-74.37451737627346],[-20.961209612096127,-74.23774261741296],[-20.982809828098283,-74.21072538109483],[-21.011610116101167,-74.18708529931648],[-21.062010620106207,-74.16344521753811],[-21.12321123211231,-74.14318229029952],[-21.29961299612995,-74.1060335903621],[-21.713617136171365,-74.08914781766327],[-22.01962019620197,-74.11447647671152],[-22.041220412204126,-74.1060335903621],[-21.89361893618937,-74.04186765410657],[-21.61641616416165,-74.02329330413785],[-21.335613356133564,-74.00303037689926],[-21.234812348123484,-73.98107887239078],[-21.144811448114467,-73.9506844815329],[-21.069210692106907,-73.91353578159547],[-21.008010080100803,-73.87132134984842],[-21.011610116101167,-73.82572976356158],[-20.939609396093942,-73.75143236368675],[-20.925209252092515,-73.70415220013003],[-20.889208892088902,-73.67882354108178],[-20.85320853208532,-73.66024919111308],[-20.813608136081342,-73.64674057295402],[-20.648006480064794,-73.61972333663589],[-20.640806408064066,-73.61634618209612],[-20.6372063720637,-73.6095918730166],[-20.633606336063366,-73.60114898666718],[-20.6372063720637,-73.59270610031777],[-20.640806408064066,-73.58764036850812],[-20.61200612006118,-73.59439467758764],[-20.583205832058326,-73.60621471847682],[-20.558005580055806,-73.62141191390577],[-20.532805328053286,-73.63998626387448],[-20.514805148051465,-73.66024919111308],[-20.507605076050766,-73.6771349638119],[-20.5112051120511,-73.69570931378061],[-20.525605256052557,-73.7159722410192],[-20.53640536405362,-73.73961232279756],[-20.52920529205292,-73.75987525003615],[-20.496804968049673,-73.7936467954338],[-20.54360543605435,-73.81897545448204],[-20.565205652056505,-73.83586122718087],[-20.583205832058326,-73.85443557714959],[-20.583205832058326,-73.86456704076888],[-20.57960579605796,-73.87638708165807],[-20.576005760057598,-73.88820712254724],[-20.601206012060118,-73.91691293613525],[-20.601206012060118,-73.93379870883408],[-20.59400594005939,-73.9506844815329],[-20.590405904059025,-73.9709474087715],[-20.597605976059754,-73.99121033601008],[-20.615606156061546,-73.9996532223595],[-20.633606336063366,-74.00809610870891],[-20.648006480064794,-74.01991614959809],[-20.651606516065158,-74.0283590359475],[-20.651606516065158,-74.04524480864633],[-20.651606516065158,-74.05368769499574],[-20.658806588065886,-74.06719631315481],[-20.66960669606695,-74.08070493131386],[-20.680406804068042,-74.09252497220305],[-20.691206912069106,-74.10265643582234],[-20.66240662406622,-74.12798509487058],[-20.608406084060846,-74.19215103112612],[-20.57960579605796,-74.22085684471413],[-20.424804248042477,-74.30866286274804],[-20.399603996039957,-74.33230294452639],[-20.3780037800378,-74.3610087581144],[-20.36720367203671,-74.39309172624216],[-20.36720367203671,-74.42517469436993]]],[[[-74.84654846548464,-72.8666178742682],[-74.50454504545046,-72.88181506969715],[-74.31014310143101,-72.92065234690445],[-74.22014220142201,-72.99157259223952],[-74.23814238142381,-73.02027840582753],[-74.38574385743857,-73.10301869205179],[-74.39654396543965,-73.11821588748073],[-74.40734407344073,-73.15198743287839],[-74.41454414544145,-73.16718462830733],[-74.43254432544325,-73.18238182373626],[-74.50094500945009,-73.2077104827845],[-74.5081450814508,-73.25161349180146],[-74.69534695346952,-73.2769421508497],[-74.75654756547566,-73.30395938716782],[-74.7169471694717,-73.30902511897747],[-74.5909459094591,-73.30902511897747],[-74.5549455494555,-73.31746800532689],[-74.53334533345333,-73.33097662348595],[-74.52974529745298,-73.3546167052643],[-74.55134551345513,-73.38669967339207],[-74.50094500945009,-73.39345398247161],[-74.47574475744757,-73.40189686882103],[-74.45774457744577,-73.41540548698008],[-74.43974439744397,-73.4339798369488],[-74.36054360543605,-73.46099707326691],[-74.3821438214382,-73.47957142323563],[-74.40374403744038,-73.52516300952246],[-74.4181441814418,-73.54880309130081],[-74.43974439744397,-73.56737744126953],[-74.4649446494465,-73.58257463669847],[-74.51894518945188,-73.60621471847682],[-74.59454594545944,-73.61465760482623],[-75.01935019350194,-73.52516300952246],[-75.44775447754478,-73.43566841421867],[-75.87615876158762,-73.34617381891489],[-76.03096030960309,-73.28369645992923],[-76.05256052560526,-73.26174495542075],[-76.11376113761138,-73.1790046691965],[-76.12456124561245,-73.15874174195791],[-76.1029610296103,-73.12328161929038],[-76.07416074160741,-73.09964153751201],[-76.03816038160382,-73.08444434208307],[-75.85815858158581,-73.04729564214566],[-75.74655746557465,-73.05742710576494],[-75.52335523355234,-73.11315015567108],[-75.41535415354153,-73.10639584659155],[-75.4621546215462,-73.07431287846377],[-75.43335433354333,-73.05404995122518],[-75.37215372153722,-73.04560706487577],[-75.0949509495095,-73.05573852849507],[-75.03735037350373,-73.042229910336],[-75.04095040950409,-73.04054133306613],[-75.04095040950409,-73.03885275579624],[-75.03735037350373,-73.03885275579624],[-75.21015210152102,-73.00508121039859],[-75.40815408154081,-73.00170405585882],[-75.50175501755017,-72.98988401496965],[-75.70335703357033,-72.92234092417434],[-75.7609576095761,-72.8970122651261],[-75.77535775357754,-72.89363511058633],[-75.69615696156961,-72.87843791515738],[-75.57375573755738,-72.86999502880798],[-75.55575555755557,-72.87168360607785],[-75.54135541355413,-72.86155214245855],[-75.44775447754478,-72.82778059706091],[-75.40455404554045,-72.82271486525126],[-75.29655296552966,-72.8193377107115],[-74.94734947349473,-72.86492929699833],[-74.84654846548464,-72.8666178742682]]],[[[-90.90270902709027,-72.8193377107115],[-90.91710917109171,-72.83284632887054],[-90.93150931509315,-72.8480435242995],[-90.90630906309063,-72.8379120606802],[-90.85950859508594,-72.83622348341032],[-90.78750787507875,-72.84128921521996],[-90.75870758707586,-72.85142067883926],[-90.74070740707407,-72.86492929699833],[-90.72990729907299,-72.88519222423692],[-90.72270722707226,-72.91220946055503],[-90.7371073710737,-72.94598100595269],[-90.76230762307623,-72.97975255135034],[-90.819908199082,-73.03547560125648],[-90.91710917109171,-73.1013301147819],[-91.0251102511025,-73.1502988556085],[-91.20511205112051,-73.19420186462546],[-91.38871388713886,-73.21277621459416],[-91.50751507515075,-73.19757901916522],[-91.52551525515256,-73.19251328735557],[-91.4859148591486,-73.12497019656026],[-91.47871478714787,-73.08444434208307],[-91.47511475114752,-73.0726243011939],[-91.47871478714787,-73.0624928375746],[-91.46431464314642,-73.03378702398659],[-91.45711457114571,-72.9746868195407],[-91.449914499145,-72.95104673776234],[-91.41751417514175,-72.94260385141293],[-91.38511385113851,-72.92909523325386],[-91.33471334713347,-72.8970122651261],[-91.5291152911529,-72.78387758804395],[-91.55791557915579,-72.75686035172583],[-91.61911619116191,-72.66905433369193],[-91.66591665916658,-72.63190563375451],[-91.68751687516875,-72.60995412924603],[-91.38871388713886,-72.55085392480014],[-91.04311043110431,-72.54241103845072],[-90.91350913509135,-72.56267396568931],[-90.8631086310863,-72.57955973838814],[-90.81630816308163,-72.60319982016651],[-90.78030780307803,-72.63697136556416],[-90.75870758707586,-72.69776014727994],[-90.78750787507875,-72.74504031083666],[-90.90270902709027,-72.8193377107115]]],[[[-74.91134911349113,-71.0226914955563],[-75.31815318153181,-71.0615287727636],[-75.7249572495725,-71.1003660499709],[-76.13176131761317,-71.13751474990832],[-76.34416344163441,-71.12231755447938],[-76.40536405364054,-71.10712035905044],[-76.43416434164341,-71.09530031816125],[-76.45216452164522,-71.08516885454196],[-76.46656466564666,-71.06997165911301],[-76.53136531365313,-70.97372275472969],[-76.54216542165422,-70.96527986838029],[-76.47016470164701,-70.91968828209346],[-76.38376383763837,-70.88760531396568],[-76.11016110161101,-70.8369479958692],[-75.65295652956529,-70.80655360501132],[-75.19935199351993,-70.77615921415342],[-75.1309513095131,-70.75589628691483],[-75.07695076950769,-70.72719047332683],[-75.04095040950409,-70.69173035065928],[-75.03375033750338,-70.66977884615082],[-75.03375033750338,-70.6224986825941],[-75.03015030150301,-70.60730148716516],[-75.00135001350013,-70.5921042917362],[-74.95454954549545,-70.58534998265668],[-74.90414904149041,-70.58366140538679],[-74.85734857348574,-70.5921042917362],[-74.82134821348212,-70.60730148716516],[-74.67374673746737,-70.70186181427859],[-74.59454594545944,-70.79473356412214],[-74.56574565745657,-70.79304498685225],[-74.49014490144901,-70.76265059599436],[-74.46854468544684,-70.75083055510518],[-74.4649446494465,-70.65627022799175],[-74.48294482944829,-70.5937928690061],[-74.4649446494465,-70.57690709630727],[-74.38934389343893,-70.57521851903738],[-74.31734317343174,-70.58703855992655],[-74.24894248942489,-70.60730148716516],[-74.17334173341733,-70.64276160983269],[-74.15534155341552,-70.64951591891221],[-74.10134101341013,-70.65795880526164],[-74.14814148141481,-70.59548144627598],[-74.15894158941589,-70.58534998265668],[-74.130141301413,-70.56508705541809],[-74.10134101341013,-70.55326701452891],[-74.06894068940689,-70.54820128271926],[-74.03654036540365,-70.54820128271926],[-73.88533885338853,-70.57015278722774],[-73.61893618936189,-70.66977884615082],[-73.5469354693547,-70.71705900970753],[-73.55773557735577,-70.74914197783531],[-73.61893618936189,-70.77447063688354],[-74.01134011340113,-70.8757852730765],[-74.40014400144001,-70.97541133199958],[-74.65574655746558,-70.99905141377793],[-74.91134911349113,-71.0226914955563]]],[[[-3.4290342903428837,-70.53806981909996],[-3.475834758347588,-70.52962693275055],[-3.49383493834938,-70.5245612009409],[-3.508235082350808,-70.5144297373216],[-3.49383493834938,-70.48065819192395],[-3.461434614346132,-70.45870668741547],[-3.3930339303393,-70.42324656474794],[-3.2958329583295836,-70.3489491648731],[-3.2598325983259713,-70.33206339217428],[-3.144631446314463,-70.29998042404651],[-2.9898298982989786,-70.2797174968079],[-2.835028350283494,-70.2814060740778],[-2.719827198271986,-70.31348904220556],[-2.694626946269466,-70.34388343306345],[-2.6802268022680096,-70.3877864420804],[-2.6766267662676455,-70.436755182907],[-2.6838268382683736,-70.47221530557454],[-2.712627126271258,-70.49754396462278],[-2.74862748627487,-70.51105258278184],[-2.83142831428313,-70.52287262367102],[-3.130231302313007,-70.53131551002043],[-3.4290342903428837,-70.53806981909996]]],[[[-75.48375483754837,-70.134499851598],[-75.69255692556925,-70.11254834708953],[-75.78615786157862,-70.08046537896175],[-75.83295832958329,-70.01629944270621],[-75.80415804158041,-69.99434793819773],[-75.79335793357933,-69.96057639280008],[-75.77895778957789,-69.92342769286266],[-75.7249572495725,-69.89134472473489],[-75.60255602556025,-69.86432748841676],[-75.23175231752317,-69.8423759839083],[-75.23895238952389,-69.83731025209865],[-75.27135271352714,-69.80016155216123],[-75.28575285752858,-69.79340724308169],[-75.30015300153,-69.79003008854193],[-75.39015390153901,-69.79171866581181],[-75.41895418954189,-69.78665293400216],[-75.4369543695437,-69.76807858403345],[-74.96174961749617,-69.71742126593698],[-74.78534785347853,-69.73599561590568],[-74.7169471694717,-69.76301285222381],[-74.7169471694717,-69.80353870670099],[-74.54774547745477,-69.85419602479747],[-74.53694536945369,-69.860950333877],[-74.52254522545225,-69.86939322022641],[-74.50454504545046,-69.889656147465],[-74.49374493744936,-69.8997876110843],[-74.47574475744757,-69.90823049743372],[-74.42534425344253,-69.92511627013255],[-74.41454414544145,-69.93187057921207],[-74.40734407344073,-69.93693631102173],[-74.40374403744038,-69.94706777464101],[-74.39654396543965,-69.96226497006997],[-74.40734407344073,-69.96226497006997],[-74.44334443344432,-69.97408501095914],[-74.57294572945729,-69.98590505184832],[-74.60894608946089,-69.98421647457843],[-74.62694626946269,-69.98421647457843],[-74.64134641346413,-69.99265936092786],[-74.64854648546485,-70.00616797908691],[-74.64854648546485,-70.01967659724598],[-74.64134641346413,-70.03318521540504],[-74.63054630546306,-70.04669383356409],[-74.61974619746196,-70.0551367199135],[-74.58014580145802,-70.07371106988222],[-74.58734587345873,-70.09059684258105],[-74.60174601746017,-70.10410546074012],[-74.61974619746196,-70.1142369243594],[-74.63774637746377,-70.12267981070882],[-74.70974709747097,-70.14125416067753],[-74.75654756547566,-70.16489424245589],[-74.77454774547745,-70.17164855153541],[-74.87174871748716,-70.1834685924246],[-75.17775177751777,-70.15813993337636],[-75.48375483754837,-70.134499851598]]],[[[-72.8449284492845,-69.58571223888612],[-72.87732877328773,-69.56882646618729],[-72.95652956529565,-69.54012065259928],[-72.98172981729817,-69.51310341628117],[-72.96732967329673,-69.48608617996304],[-72.92772927729277,-69.4607575209148],[-72.8341283412834,-69.42529739824727],[-72.74772747727476,-69.41347735735809],[-72.66132661326613,-69.41685451189785],[-72.39852398523985,-69.46582325272445],[-72.30852308523085,-69.50297195266187],[-72.2941229412294,-69.52154630263058],[-72.27252272522725,-69.53843207532941],[-72.23652236522365,-69.56038357983788],[-72.19332193321932,-69.57389219799694],[-72.18252182521825,-69.58064650707647],[-72.17532175321753,-69.5890893934259],[-72.1681216812168,-69.60597516612472],[-72.16092160921609,-69.61441805247412],[-72.15012150121501,-69.61948378428377],[-72.13932139321393,-69.62454951609342],[-72.00972009720097,-69.64987817514167],[-71.95571955719556,-69.67014110238026],[-71.94851948519485,-69.68196114326943],[-72.01692016920168,-69.71066695685744],[-72.00972009720097,-69.71573268866709],[-71.970119701197,-69.75119281133462],[-72.00252002520025,-69.75119281133462],[-72.03492034920349,-69.74106134771533],[-72.11052110521105,-69.70053549323815],[-72.14292142921428,-69.68871545234896],[-72.15732157321573,-69.6853382978092],[-72.1681216812168,-69.68364972053932],[-72.1789217892179,-69.6853382978092],[-72.18972189721897,-69.68702687507908],[-72.19692196921969,-69.69040402961885],[-72.20412204122042,-69.70053549323815],[-72.20052200522005,-69.70560122504779],[-72.18972189721897,-69.71066695685744],[-72.18612186121861,-69.71910984320685],[-72.18612186121861,-69.72924130682615],[-72.19332193321932,-69.7343070386358],[-72.20412204122042,-69.7343070386358],[-72.48852488524885,-69.69209260688874],[-72.77292772927728,-69.64987817514167],[-72.7981279812798,-69.63974671152236],[-72.82692826928269,-69.61948378428377],[-72.83772837728377,-69.61272947520425],[-72.84132841328413,-69.6076637433946],[-72.84132841328413,-69.60259801158494],[-72.8449284492845,-69.58571223888612]]],[[[-61.75681756817568,-69.45400321183527],[-61.7460174601746,-69.46413467545457],[-61.73881738817387,-69.47595471634375],[-61.73521735217352,-69.48608617996304],[-61.73521735217352,-69.49284048904258],[-61.74961749617496,-69.50128337539199],[-61.767617676176755,-69.50466052993175],[-61.80361803618035,-69.50634910720163],[-61.79641796417964,-69.52661203444023],[-61.82521825218252,-69.52998918898],[-61.88641886418864,-69.52492345717035],[-61.918819188191875,-69.53843207532941],[-61.90081900819008,-69.57051504345718],[-61.88641886418864,-69.587400816156],[-61.87561875618756,-69.59415512523553],[-61.88641886418864,-69.59922085704518],[-61.91161911619116,-69.6177952070139],[-61.93681936819368,-69.62961524790308],[-61.944019440194396,-69.63805813425249],[-61.926019260192604,-69.65832106149108],[-61.918819188191875,-69.66169821603084],[-61.94041940419403,-69.6650753705706],[-61.95841958419584,-69.67182967965014],[-61.96561965619655,-69.6853382978092],[-61.95841958419584,-69.70897837958756],[-61.980019800197994,-69.71910984320685],[-62.01242012420124,-69.72924130682615],[-62.055620556205554,-69.73261846136592],[-62.095220952209516,-69.72924130682615],[-62.127621276212764,-69.71742126593698],[-62.131221312213114,-69.70897837958756],[-62.1240212402124,-69.69884691596826],[-62.120421204212036,-69.68871545234896],[-62.13842138421384,-69.66845252511037],[-62.18522185221852,-69.62792667063319],[-62.19962199621996,-69.60597516612472],[-62.19962199621996,-69.5975322797753],[-62.196021960219596,-69.59246654796566],[-62.18882188821888,-69.587400816156],[-62.181621816218154,-69.58233508434635],[-62.178021780217804,-69.57389219799694],[-62.181621816218154,-69.56882646618729],[-62.18882188821888,-69.56376073437765],[-62.19242192421923,-69.55700642529811],[-62.19242192421923,-69.5485635389487],[-62.18522185221852,-69.53505492078963],[-62.18522185221852,-69.52661203444023],[-62.19962199621996,-69.50803768447152],[-62.26802268022679,-69.45906894364492],[-62.31122311223112,-69.41516593462796],[-62.46962469624695,-69.32229418478443],[-62.509225092250915,-69.2750140212277],[-62.5380253802538,-69.22942243494087],[-62.57762577625776,-69.18889658046369],[-62.534425344253435,-69.1585021896058],[-62.46242462424624,-69.14668214871662],[-62.379623796237965,-69.1483707259865],[-62.19242192421923,-69.18551942592393],[-62.09162091620915,-69.22604528040111],[-62.04842048420484,-69.25137393944935],[-62.019620196201956,-69.28176833030723],[-61.86121861218612,-69.35944288472184],[-61.818018180181795,-69.36957434834113],[-61.83241832418324,-69.38477154377009],[-61.82881828818287,-69.39659158465926],[-61.82161821618216,-69.41010020281831],[-61.80721807218072,-69.42023166643762],[-61.77481774817748,-69.43711743913644],[-61.767617676176755,-69.44387174821597],[-61.75681756817568,-69.45400321183527]]],[[[-69.10809108091081,-67.6269626058222],[-69.13329133291333,-67.60501110131372],[-69.15489154891549,-67.58981390588477],[-69.16569165691656,-67.57968244226548],[-69.17289172891728,-67.56617382410641],[-69.180091800918,-67.55097662867747],[-69.180091800918,-67.52564796962923],[-69.16929169291693,-67.4986307333111],[-69.15489154891549,-67.47499065153275],[-69.11529115291152,-67.43108764251579],[-69.06489064890648,-67.38718463349885],[-68.8380883808838,-67.26729564733718],[-68.79848798487984,-67.23521267920941],[-68.79488794887949,-67.23014694739976],[-68.79128791287913,-67.22339263832023],[-68.7840878408784,-67.20144113381176],[-68.70848708487084,-67.11025796123809],[-68.37728377283773,-66.82151124808814],[-68.31968319683196,-66.78942827996038],[-67.85887858878588,-66.62563628478175],[-67.830078300783,-66.62057055297211],[-67.80127801278013,-66.61888197570222],[-67.76887768877688,-66.61888197570222],[-67.740077400774,-66.62394770751186],[-67.66087660876609,-66.64927636656012],[-67.66087660876609,-66.66109640744929],[-67.66087660876609,-66.67122787106858],[-67.65367653676536,-66.67798218014812],[-67.64287642876428,-66.68304791195777],[-67.6680766807668,-66.69655653011682],[-67.67167671676717,-66.70162226192647],[-67.68247682476824,-66.71344230281565],[-67.68607686076861,-66.7185080346253],[-67.74367743677436,-66.73370523005424],[-67.75087750877509,-66.74045953913378],[-67.75087750877509,-66.74383669367354],[-67.74727747277473,-66.7472138482133],[-67.740077400774,-66.75227958002296],[-67.76167761677617,-66.76409962091213],[-67.81207812078121,-66.77085392999166],[-67.83367833678336,-66.78267397088084],[-67.830078300783,-66.78773970269049],[-67.81927819278192,-66.80124832084955],[-67.8840788407884,-66.81137978446884],[-67.91287912879129,-66.81137978446884],[-67.92727927279273,-66.81475693900862],[-67.93807938079381,-66.82319982535803],[-67.94167941679416,-66.82995413443756],[-67.93447934479344,-66.84177417532673],[-67.93807938079381,-66.84852848440627],[-67.94887948879489,-66.85697137075567],[-67.96327963279633,-66.86203710256532],[-67.97767977679776,-66.86879141164486],[-67.98127981279812,-66.88230002980393],[-67.98487984879849,-66.88567718434369],[-68.01368013680137,-66.90087437977263],[-68.02088020880208,-66.90931726612204],[-68.02448024480245,-66.92958019336064],[-68.02448024480245,-66.94140023424981],[-68.01368013680137,-66.94984312059923],[-67.94167941679416,-66.981926088727],[-67.92367923679237,-66.99712328415595],[-67.92727927279273,-67.00725474777525],[-67.93447934479344,-67.01232047958489],[-67.94167941679416,-67.01738621139454],[-67.93807938079381,-67.02751767501383],[-67.94887948879489,-67.03258340682348],[-67.99567995679956,-67.03933771590302],[-67.9920799207992,-67.05453491133196],[-67.98487984879849,-67.06297779768137],[-67.97767977679776,-67.06635495222113],[-67.92367923679237,-67.06297779768137],[-67.8840788407884,-67.06635495222113],[-67.84447844478444,-67.07479783857055],[-67.80487804878048,-67.08830645672961],[-67.79047790477904,-67.09506076580914],[-67.78687786877869,-67.10350365215855],[-67.78687786877869,-67.11363511577785],[-67.79767797677977,-67.12545515666703],[-67.76887768877688,-67.13389804301644],[-67.70767707677076,-67.14065235209597],[-67.67527675276753,-67.14740666117551],[-67.68247682476824,-67.15078381571527],[-67.740077400774,-67.17273532022375],[-67.76887768877688,-67.18962109292258],[-67.78687786877869,-67.19299824746234],[-67.81927819278192,-67.19130967019245],[-67.83367833678336,-67.19299824746234],[-67.84087840878408,-67.19468682473222],[-67.84447844478444,-67.19806397927198],[-67.85167851678517,-67.20312971108163],[-67.85527855278552,-67.20819544289128],[-67.85527855278552,-67.2149497519708],[-67.85167851678517,-67.22508121559011],[-67.85527855278552,-67.23014694739976],[-67.8660786607866,-67.23858983374917],[-67.88047880478804,-67.24365556555881],[-67.91287912879129,-67.25040987463835],[-67.95967959679597,-67.25040987463835],[-67.97407974079741,-67.255475606448],[-67.98127981279812,-67.26222991552753],[-67.98127981279812,-67.27067280187694],[-67.97407974079741,-67.27742711095647],[-67.97407974079741,-67.28755857457577],[-67.97767977679776,-67.2943128836553],[-67.98487984879849,-67.29937861546495],[-68.00288002880028,-67.3044443472746],[-68.10728107281072,-67.31795296543366],[-68.25128251282513,-67.36861028353013],[-68.18648186481865,-67.38380747895908],[-68.12168121681216,-67.38887321076874],[-68.01728017280172,-67.38380747895908],[-67.96687966879668,-67.39393894257839],[-67.94887948879489,-67.42939906524592],[-67.9560795607956,-67.44966199248451],[-67.97407974079741,-67.46823634245322],[-68.06768067680676,-67.529025124169],[-68.10008100081001,-67.54084516505817],[-68.10728107281072,-67.54759947413771],[-68.11448114481145,-67.55435378321724],[-68.1180811808118,-67.56279666956665],[-68.12168121681216,-67.56786240137629],[-68.13248132481324,-67.57292813318594],[-68.13968139681397,-67.57123955591607],[-68.21528215282153,-67.54591089686782],[-68.22608226082261,-67.53746801051841],[-68.23688236882369,-67.53071370143888],[-68.24768247682476,-67.52395939235934],[-68.26568265682657,-67.52058223781958],[-68.28368283682836,-67.52227081508946],[-68.39168391683917,-67.54928805140759],[-68.41328413284133,-67.55941951502689],[-68.43128431284312,-67.57461671045583],[-68.41688416884169,-67.58305959680524],[-68.39888398883988,-67.59319106042454],[-68.39168391683917,-67.60838825585348],[-68.39528395283952,-67.62527402855231],[-68.41328413284133,-67.64047122398125],[-68.47808478084781,-67.67761992391867],[-68.54288542885429,-67.73165439655492],[-68.55728557285572,-67.74178586017422],[-68.57528575285752,-67.74347443744409],[-68.59328593285933,-67.74009728290433],[-68.64368643686437,-67.71476862385609],[-68.66168661686616,-67.70970289204644],[-68.67968679686797,-67.71645720112598],[-68.67248672486724,-67.71983435566574],[-68.65448654486545,-67.7232115102055],[-68.66528665286653,-67.72996581928504],[-68.67968679686797,-67.73503155109469],[-68.74088740887409,-67.75022874652363],[-68.88488884888848,-67.76204878741281],[-68.89928899288992,-67.76036021014292],[-68.91368913689136,-67.75529447833327],[-68.92088920889209,-67.74854016925374],[-68.93168931689317,-67.73672012836457],[-68.93888938889388,-67.72490008747539],[-68.93528935289352,-67.71476862385609],[-68.93528935289352,-67.71139146931633],[-68.9280892808928,-67.70970289204644],[-68.9280892808928,-67.70632573750667],[-68.9280892808928,-67.70126000569704],[-68.93168931689317,-67.69788285115726],[-68.93888938889388,-67.69619427388739],[-68.95328953289533,-67.69281711934761],[-68.99288992889929,-67.67086561483914],[-69.01089010890108,-67.66748846029938],[-69.03969039690396,-67.66748846029938],[-69.0540905409054,-67.6641113057596],[-69.06489064890648,-67.65904557394997],[-69.0720907209072,-67.65397984214032],[-69.07929079290793,-67.64384837852101],[-69.08289082890829,-67.64047122398125],[-69.10809108091081,-67.6269626058222]]],[[[-62.90522905229052,-64.5216690065079],[-62.90162901629016,-64.52504616104767],[-62.844028440284404,-64.56388343825498],[-62.82962829628296,-64.56894917006463],[-62.85482854828548,-64.58245778822368],[-63.024030240302395,-64.61791791089122],[-63.045630456304565,-64.61791791089122],[-63.05643056430564,-64.62129506543099],[-63.06363063630636,-64.62467221997076],[-63.0780307803078,-64.63649226085994],[-63.08523085230851,-64.64155799266958],[-63.09243092430924,-64.64324656993946],[-63.099630996309955,-64.64324656993946],[-63.11043110431103,-64.64155799266958],[-63.15363153631536,-64.64324656993946],[-63.175231752317515,-64.65000087901899],[-63.19323193231932,-64.66013234263829],[-63.19323193231932,-64.66519807444794],[-63.19323193231932,-64.67701811533712],[-63.196831968319685,-64.68208384714677],[-63.200432004320035,-64.68546100168653],[-63.250832508325075,-64.71078966073478],[-63.28323283232832,-64.72092112435406],[-63.28683286832867,-64.72260970162395],[-63.301233012330115,-64.73949547432278],[-63.31923319233192,-64.74962693794207],[-63.33723337233371,-64.75975840156137],[-63.351633516335156,-64.76313555610113],[-63.373233732337326,-64.76820128791078],[-63.39483394833948,-64.76820128791078],[-63.409234092340924,-64.76144697883126],[-63.412834128341274,-64.74962693794207],[-63.409234092340924,-64.73949547432278],[-63.409234092340924,-64.73274116524325],[-63.423634236342366,-64.72598685616371],[-63.44523445234452,-64.72260970162395],[-63.463234632346314,-64.72260970162395],[-63.55683556835568,-64.73274116524325],[-63.57123571235712,-64.74118405159265],[-63.55683556835568,-64.7462497834023],[-63.524435244352446,-64.75131551521196],[-63.510035100351004,-64.75975840156137],[-63.53163531635316,-64.76144697883126],[-63.549635496354966,-64.7665127106409],[-63.57123571235712,-64.77495559699031],[-63.65043650436503,-64.81717002873738],[-63.661236612366125,-64.8256129150868],[-63.664836648366474,-64.84756441959527],[-63.68283682836828,-64.85263015140492],[-63.70443704437044,-64.84925299686515],[-63.740437404374035,-64.83912153324586],[-63.74763747637476,-64.8357443787061],[-63.75483754837548,-64.82899006962656],[-63.75843758437584,-64.81885860600727],[-63.75843758437584,-64.81210429692773],[-63.762037620376205,-64.8053499878482],[-63.76923769237692,-64.79690710149879],[-63.780037800378,-64.79352994695903],[-63.80523805238052,-64.78677563787949],[-63.98523985239852,-64.77157844245055],[-64.0140401404014,-64.77495559699031],[-64.02844028440283,-64.77495559699031],[-64.04284042840428,-64.7665127106409],[-64.08964089640897,-64.736118319783],[-64.12924129241291,-64.71585539254443],[-64.28044280442803,-64.70910108346489],[-64.29124291242913,-64.707412506195],[-64.29844298442984,-64.70403535165524],[-64.3020430204302,-64.70065819711547],[-64.3020430204302,-64.69390388803595],[-64.29484294842948,-64.6888381562263],[-64.2840428404284,-64.68714957895641],[-64.2660426604266,-64.6888381562263],[-64.25164251642516,-64.68546100168653],[-64.24444244442444,-64.678706692607],[-64.23724237242372,-64.6685752289877],[-64.22644226442264,-64.6584437653684],[-64.21564215642157,-64.65337803355877],[-64.20484204842047,-64.65168945628888],[-64.19764197641976,-64.64831230174912],[-64.18684186841868,-64.6398694153997],[-64.18684186841868,-64.6297379517804],[-64.18684186841868,-64.61285217908157],[-64.1940419404194,-64.59765498365263],[-64.20124201242012,-64.59258925184298],[-64.15444154441543,-64.57908063368392],[-64.14364143641436,-64.57739205641404],[-64.0860408604086,-64.55544055190556],[-63.90243902439023,-64.53517762466697],[-63.85563855638556,-64.5030946565392],[-63.866438664386635,-64.49634034745966],[-63.93483934839348,-64.46594595660179],[-63.93123931239312,-64.45919164752225],[-63.9240392403924,-64.45750307025236],[-63.913239132391325,-64.45750307025236],[-63.90243902439023,-64.45412591571261],[-63.870038700387,-64.43724014301378],[-63.85563855638556,-64.43555156574389],[-63.72243722437224,-64.43555156574389],[-63.686436864368645,-64.43048583393424],[-63.65763657636576,-64.41697721577518],[-63.67563675636755,-64.40178002034624],[-63.68283682836828,-64.40009144307635],[-63.66843668436684,-64.38827140218717],[-63.664836648366474,-64.38489424764741],[-63.65763657636576,-64.38320567037752],[-63.65043650436503,-64.38151709310765],[-63.64323643236432,-64.37982851583776],[-63.639636396363954,-64.37476278402812],[-63.639636396363954,-64.36294274313893],[-63.6540365403654,-64.35449985678952],[-63.690036900368995,-64.34943412497987],[-63.686436864368645,-64.34605697044012],[-63.661236612366125,-64.3274826204714],[-63.574835748357486,-64.3173511568521],[-63.564035640356394,-64.31397400231234],[-63.553235532355316,-64.30721969323281],[-63.549635496354966,-64.29371107507374],[-63.55683556835568,-64.28357961145446],[-63.56763567635676,-64.27513672510503],[-63.574835748357486,-64.26500526148574],[-63.362433624336234,-64.2582509524062],[-63.3660336603366,-64.24811948878691],[-63.362433624336234,-64.24305375697726],[-63.351633516335156,-64.2396766024375],[-63.34443344433444,-64.2396766024375],[-63.333633336333364,-64.24305375697726],[-63.31203312033119,-64.25487379786644],[-63.28323283232832,-64.26162810694598],[-63.276032760327595,-64.26500526148574],[-63.272432724327246,-64.26669383875563],[-63.26883268832688,-64.27344814783515],[-63.26523265232652,-64.27513672510503],[-63.23643236432363,-64.28020245691468],[-63.20763207632076,-64.27682530237492],[-63.17883178831788,-64.2785138796448],[-63.15363153631536,-64.29202249780386],[-63.15723157231572,-64.29708822961351],[-63.15723157231572,-64.30046538415327],[-63.15363153631536,-64.30215396142316],[-63.150031500314995,-64.30890827050268],[-63.19323193231932,-64.31059684777257],[-63.16083160831607,-64.32579404320151],[-63.15363153631536,-64.32579404320151],[-63.171631716317165,-64.33592550682081],[-63.27963279632796,-64.3561884340594],[-63.301233012330115,-64.36463132040882],[-63.31923319233192,-64.376451361298],[-63.308433084330844,-64.37982851583776],[-63.26523265232652,-64.37982851583776],[-63.272432724327246,-64.38489424764741],[-63.28683286832867,-64.38995997945706],[-63.2940329403294,-64.39333713399682],[-63.297632976329766,-64.39840286580647],[-63.30483304833048,-64.41022290669565],[-63.308433084330844,-64.4152886385053],[-63.31923319233192,-64.42373152485472],[-63.358833588335884,-64.43555156574389],[-63.330033300333,-64.44568302936318],[-63.30483304833048,-64.44568302936318],[-63.276032760327595,-64.43724014301378],[-63.21843218432184,-64.41022290669565],[-63.18963189631896,-64.39840286580647],[-63.1680316803168,-64.3950257112667],[-63.11043110431103,-64.39840286580647],[-63.14283142831428,-64.40853432942576],[-63.222032220322205,-64.45750307025236],[-63.24363243632436,-64.47776599749096],[-63.21843218432184,-64.47776599749096],[-63.196831968319685,-64.47607742022107],[-63.121231212312125,-64.45581449298248],[-63.10323103231032,-64.45412591571261],[-63.08883088830888,-64.45919164752225],[-63.10683106831068,-64.47607742022107],[-63.12843128431284,-64.4929631929199],[-63.23643236432363,-64.5419319337465],[-63.28323283232832,-64.55375197463567],[-63.297632976329766,-64.56388343825498],[-63.27963279632796,-64.57739205641404],[-63.26883268832688,-64.5807692109538],[-63.2580325803258,-64.58414636549357],[-63.1320313203132,-64.57739205641404],[-63.11763117631176,-64.5807692109538],[-63.124831248312475,-64.5706377473345],[-63.12843128431284,-64.56726059279474],[-63.12843128431284,-64.56050628371521],[-63.074430744307435,-64.54530908828627],[-63.03123031230312,-64.5216690065079],[-63.01323013230132,-64.51660327469827],[-62.995229952299525,-64.51660327469827],[-63.01683016830168,-64.53180047012721],[-62.97722977229772,-64.53686620193685],[-62.96642966429664,-64.53517762466697],[-62.93042930429304,-64.51998042923802],[-62.919629196291964,-64.51829185196814],[-62.912429124291236,-64.51998042923802],[-62.90522905229052,-64.5216690065079]]],[[[-62.65682656826567,-64.5030946565392],[-62.68922689226892,-64.49802892472955],[-62.72522725227252,-64.50140607926932],[-62.761227612276116,-64.49971750199944],[-62.790027900279,-64.48452030657049],[-62.761227612276116,-64.46932311114155],[-62.72882728827288,-64.46763453387166],[-62.696426964269634,-64.47270026568131],[-62.667626676266764,-64.47270026568131],[-62.60282602826028,-64.45243733844272],[-62.584825848258475,-64.45412591571261],[-62.635226352263516,-64.44230587482342],[-62.660426604266036,-64.43217441120413],[-62.67482674826748,-64.41022290669565],[-62.67482674826748,-64.40178002034624],[-62.671226712267114,-64.39671428853659],[-62.667626676266764,-64.39164855672695],[-62.660426604266036,-64.38827140218717],[-62.65322653226532,-64.3865828249173],[-62.642426424264244,-64.38489424764741],[-62.63882638826388,-64.38320567037752],[-62.63162631626315,-64.37982851583776],[-62.62442624426244,-64.37138562948834],[-62.62082620826207,-64.36800847494858],[-62.58842588425884,-64.3578770113293],[-62.58122581225811,-64.35112270224975],[-62.57762577625776,-64.34267981590034],[-62.57042570425703,-64.32579404320151],[-62.56682566825668,-64.31903973412199],[-62.556025560255605,-64.31228542504246],[-62.52362523625236,-64.29708822961351],[-62.509225092250915,-64.2886453432641],[-62.48762487624876,-64.27007099329539],[-62.46962469624695,-64.24811948878691],[-62.46242462424624,-64.23629944789774],[-62.46242462424624,-64.22447940700856],[-62.46962469624695,-64.21265936611937],[-62.484024840248395,-64.20759363430973],[-62.509225092250915,-64.20421647976997],[-62.52362523625236,-64.20252790250008],[-62.52722527225272,-64.19915074796032],[-62.54162541625416,-64.18564212980125],[-62.54522545225451,-64.18226497526149],[-62.556025560255605,-64.17888782072171],[-62.56322563225632,-64.17551066618196],[-62.56682566825668,-64.17044493437231],[-62.5740257402574,-64.1518705844036],[-62.610026100260995,-64.14173912078431],[-62.62442624426244,-64.12991907989512],[-62.617226172261724,-64.11809903900594],[-62.610026100260995,-64.11472188446618],[-62.584825848258475,-64.11809903900594],[-62.56322563225632,-64.11641046173605],[-62.51642516425164,-64.102901843577],[-62.48762487624876,-64.08939322541794],[-62.49482494824947,-64.08601607087817],[-62.52722527225272,-64.0640645663697],[-62.56322563225632,-64.05731025729017],[-62.57042570425703,-64.05224452548052],[-62.559625596255955,-64.04549021640099],[-62.49482494824947,-64.03198159824193],[-62.49122491224912,-64.02860444370216],[-62.47682476824768,-64.01678440281299],[-62.47682476824768,-64.0150958255431],[-62.37242372423724,-64.01003009373345],[-62.31482314823148,-64.01678440281299],[-62.26442264422644,-64.03198159824193],[-62.27162271622716,-64.03873590732145],[-62.278822788227885,-64.05731025729017],[-62.282422824228235,-64.07926176179865],[-62.278822788227885,-64.09445895722759],[-62.26802268022679,-64.09952468903724],[-62.00882008820088,-64.14173912078431],[-62.026820268202684,-64.15524773894336],[-62.052020520205204,-64.16031347075301],[-62.131221312213114,-64.1620020480229],[-62.18522185221852,-64.17044493437231],[-62.21042210422104,-64.17888782072171],[-62.196021960219596,-64.18901928434101],[-62.170821708217076,-64.19408501615067],[-62.102421024210244,-64.1907078616109],[-62.095220952209516,-64.19239643888078],[-62.09162091620915,-64.19577359342054],[-62.08442084420844,-64.20252790250008],[-62.080820808208074,-64.20759363430973],[-62.080820808208074,-64.2109707888495],[-62.055620556205554,-64.21265936611937],[-62.04842048420484,-64.21434794338926],[-62.05922059220592,-64.22785656154832],[-62.16722167221671,-64.2869567659942],[-62.18882188821888,-64.29033392053398],[-62.19962199621996,-64.29371107507374],[-62.206822068220674,-64.30046538415327],[-62.206822068220674,-64.30721969323281],[-62.19242192421923,-64.32072831139186],[-62.19242192421923,-64.3274826204714],[-62.19242192421923,-64.33592550682081],[-62.19962199621996,-64.34267981590034],[-62.206822068220674,-64.34943412497987],[-62.203222032220324,-64.3561884340594],[-62.19962199621996,-64.35956558859917],[-62.18882188821888,-64.36125416586906],[-62.16722167221671,-64.36125416586906],[-62.23922239222392,-64.39333713399682],[-62.250022500225,-64.3950257112667],[-62.257222572225714,-64.39333713399682],[-62.27522275222752,-64.3865828249173],[-62.282422824228235,-64.38320567037752],[-62.29322293222931,-64.38320567037752],[-62.33642336423364,-64.39333713399682],[-62.329223292232925,-64.39671428853659],[-62.32562325623256,-64.40178002034624],[-62.31842318423183,-64.40853432942576],[-62.31482314823148,-64.4152886385053],[-62.31842318423183,-64.42204294758483],[-62.3220232202322,-64.42710867939448],[-62.32562325623256,-64.43048583393424],[-62.354423544235445,-64.4439944520933],[-62.3760237602376,-64.4642573793319],[-62.38682386823868,-64.46594595660179],[-62.42642426424264,-64.4642573793319],[-62.44082440824408,-64.46594595660179],[-62.455224552245525,-64.47270026568131],[-62.455224552245525,-64.47607742022107],[-62.455224552245525,-64.48452030657049],[-62.455224552245525,-64.48789746111025],[-62.47682476824768,-64.49465177018979],[-62.49482494824947,-64.48283172930061],[-62.49842498424984,-64.46594595660179],[-62.484024840248395,-64.45750307025236],[-62.51642516425164,-64.45412591571261],[-62.530825308253085,-64.45412591571261],[-62.54522545225451,-64.46088022479213],[-62.55242552425524,-64.46932311114155],[-62.55242552425524,-64.47776599749096],[-62.54882548825488,-64.48620888384038],[-62.54882548825488,-64.49465177018979],[-62.556025560255605,-64.5030946565392],[-62.58842588425884,-64.51998042923802],[-62.59922599225992,-64.5233575837778],[-62.61362613626136,-64.5233575837778],[-62.6280262802628,-64.51660327469827],[-62.65682656826567,-64.5030946565392]]],[[[-55.157951579515796,-63.204578735999405],[-55.12555125551255,-63.20795589053917],[-55.085950859508586,-63.22146450869823],[-55.05355053550535,-63.245104590476586],[-55.042750427504274,-63.282253290414005],[-55.06435064350643,-63.31940199035142],[-55.107551075510756,-63.34304207212978],[-55.172351723517224,-63.35823926755873],[-55.247952479524784,-63.36161642209849],[-55.312753127531266,-63.35655069028884],[-55.424354243542425,-63.33291060851049],[-55.48555485554856,-63.32615629943096],[-55.58275582755827,-63.33797634032014],[-55.625956259562585,-63.33459918578038],[-55.79155791557915,-63.285630444953775],[-55.777157771577706,-63.302516217652595],[-55.777157771577706,-63.309270526732135],[-55.78075780757807,-63.31940199035142],[-55.79155791557915,-63.324467722161074],[-55.809558095580954,-63.32615629943096],[-55.823958239582396,-63.32277914489119],[-55.83835838358384,-63.31940199035142],[-55.849158491584916,-63.3126476812719],[-55.859958599585994,-63.304204794922484],[-55.87075870758707,-63.29745048584295],[-55.885158851588514,-63.29576190857307],[-55.899558995589956,-63.29745048584295],[-55.90675906759067,-63.30082764038272],[-55.90675906759067,-63.30758194946225],[-55.9139591395914,-63.31602483581166],[-55.92115921159211,-63.324467722161074],[-55.94635946359463,-63.3413534948599],[-55.99675996759967,-63.33459918578038],[-56.02196021960219,-63.34641922666955],[-56.04716047160471,-63.368370731178025],[-56.09396093960939,-63.38863365841662],[-56.241562415624145,-63.407208008385325],[-56.288362883628835,-63.41733947200463],[-56.33516335163351,-63.43760239924322],[-56.35676356763567,-63.4392909765131],[-56.392763927639265,-63.4392909765131],[-56.450364503645034,-63.429159512893804],[-56.45756457564575,-63.42578235835404],[-56.468364683646826,-63.42071662654439],[-56.475564755647554,-63.412273740194976],[-56.48636486364863,-63.39707654476603],[-56.493564935649346,-63.3903222356865],[-56.50796507965079,-63.38525650387685],[-56.525965259652594,-63.38187934933708],[-56.540365403654036,-63.37681361752744],[-56.55476554765548,-63.366682153908144],[-56.54756547565475,-63.34641922666955],[-56.50436504365044,-63.329533453970726],[-56.425164251642514,-63.31433625854178],[-56.47196471964719,-63.29745048584295],[-56.47916479164792,-63.29407333130319],[-56.43236432364323,-63.25692463136576],[-56.37116371163711,-63.22821881777776],[-56.24516245162451,-63.19275869511023],[-55.975159751597516,-63.147167108823396],[-55.723157231572316,-63.147167108823396],[-55.63315633156331,-63.13028133612457],[-55.575555755557545,-63.12859275885468],[-55.50715507155071,-63.14885568609327],[-55.47835478354783,-63.15223284063304],[-55.49275492754927,-63.15392141790292],[-55.50715507155071,-63.160675726982454],[-55.525155251552505,-63.16911861333187],[-55.5359553595536,-63.17925007695116],[-55.44235442354423,-63.20795589053917],[-55.43155431554315,-63.20795589053917],[-55.420754207542075,-63.20289015872952],[-55.409954099541,-63.19613584964999],[-55.399153991539904,-63.19107011784034],[-55.38475384753848,-63.18769296330058],[-55.157951579515796,-63.204578735999405]]],[[[-61.15921159211592,-62.662545432367054],[-61.13761137611375,-62.6389053505887],[-61.14121141211412,-62.61864242335011],[-61.16281162811627,-62.60344522792116],[-61.19521195211952,-62.59331376430187],[-61.152011520115195,-62.584870877952454],[-61.01881018810188,-62.60851095973081],[-60.96120961209611,-62.61188811427058],[-60.90360903609036,-62.600068073381394],[-60.84240842408424,-62.583182300682566],[-60.824408244082434,-62.57642799160304],[-60.813608136081356,-62.56967368252351],[-60.81000810008099,-62.561230796174094],[-60.813608136081356,-62.5510993325548],[-60.8280082800828,-62.542656446205385],[-60.838808388083876,-62.53590213712586],[-60.84600846008459,-62.53252498258609],[-60.81720817208172,-62.503819168998085],[-60.80280802808028,-62.48693339629926],[-60.80280802808028,-62.46835904633055],[-60.79560795607955,-62.46835904633055],[-60.70920709207091,-62.500442014458315],[-60.70560705607056,-62.5021305917282],[-60.7020070200702,-62.505507746267966],[-60.7020070200702,-62.51057347807762],[-60.7020070200702,-62.51732778715714],[-60.7020070200702,-62.522393518966794],[-60.70560705607056,-62.522393518966794],[-60.673206732067314,-62.54941075528492],[-60.64080640806408,-62.564607950713864],[-60.60480604806048,-62.57305083706328],[-60.48960489604896,-62.57642799160304],[-60.45360453604536,-62.56967368252351],[-60.43200432004319,-62.54941075528492],[-60.38160381603815,-62.55278790982469],[-60.33120331203311,-62.54941075528492],[-60.27720277202772,-62.5409678689355],[-60.23040230402303,-62.52577067350656],[-60.19080190801908,-62.50888490080773],[-60.172801728017276,-62.49875343718844],[-60.158401584015834,-62.485244819029376],[-60.14040140401404,-62.461604737251015],[-60.12960129601295,-62.459916159981134],[-60.10440104401043,-62.47511335541007],[-60.07920079200791,-62.49368770537879],[-60.072000720007196,-62.49706485991855],[-60.0360003600036,-62.5122620553475],[-60.01080010800108,-62.52577067350656],[-60.06120061200612,-62.5510993325548],[-60.07920079200791,-62.562919373443975],[-60.072000720007196,-62.5798051461428],[-60.046800468004676,-62.61526526881035],[-60.02520025200252,-62.627085309699524],[-59.98919989199892,-62.63046246423929],[-59.80199801998019,-62.61188811427058],[-60.1260012600126,-62.7165799050033],[-60.147601476014756,-62.7267113686226],[-60.24480244802447,-62.752040027670844],[-60.29160291602916,-62.75710575948049],[-60.31320313203132,-62.74190856405154],[-60.32040320403203,-62.74021998678166],[-60.32760327603276,-62.74021998678166],[-60.33120331203311,-62.73853140951178],[-60.33840338403384,-62.7368428322419],[-60.29880298802988,-62.69125124595506],[-60.29880298802988,-62.68111978233577],[-60.33120331203311,-62.677742627796],[-60.36720367203672,-62.689562668685184],[-60.39960399603996,-62.70475986411412],[-60.43200432004319,-62.7165799050033],[-60.410404104041035,-62.677742627796],[-60.39960399603996,-62.667611164176705],[-60.39240392403924,-62.66423400963694],[-60.37440374403744,-62.66085685509718],[-60.36720367203672,-62.65747970055741],[-60.334803348033475,-62.63552819604894],[-60.3240032400324,-62.628773886969405],[-60.3780037800378,-62.610199537000696],[-60.60120601206012,-62.64059392785858],[-60.68040680406804,-62.61695384608022],[-60.70920709207091,-62.61357669154046],[-60.74520745207451,-62.62201957788987],[-60.75960759607595,-62.63383961877905],[-60.763207632076316,-62.647348236938114],[-60.77040770407703,-62.65747970055741],[-60.81000810008099,-62.672676895986356],[-61.05481054810548,-62.68280835960565],[-61.10881108811088,-62.677742627796],[-61.15921159211592,-62.662545432367054]]],[[[-58.46638466384664,-62.1610379832119],[-58.44478444784447,-62.188055219530014],[-58.44838448384483,-62.20494099222884],[-58.46638466384664,-62.215072455848144],[-58.58518585185851,-62.2488440012458],[-58.62118621186211,-62.24715542397591],[-58.63198631986319,-62.22689249673732],[-58.675186751867514,-62.22351534219756],[-58.74718747187471,-62.237023960356616],[-58.78318783187831,-62.22520391946744],[-58.76158761587615,-62.220138187657795],[-58.750787507875074,-62.215072455848144],[-58.739987399873996,-62.21000672403849],[-58.75438754387544,-62.20494099222884],[-58.79758797587975,-62.198186683149316],[-58.79758797587975,-62.194809528609554],[-58.7939879398794,-62.1897437967999],[-58.7939879398794,-62.18298948772037],[-58.7939879398794,-62.17961233318061],[-58.79758797587975,-62.172858024101075],[-58.801188011880114,-62.17116944683119],[-58.80838808388083,-62.16948086956131],[-58.826388263882635,-62.16948086956131],[-58.94158941589416,-62.193120951339665],[-58.9559895598956,-62.1998752604192],[-58.95958959589595,-62.21000672403849],[-58.94878948789487,-62.22520391946744],[-58.96318963189631,-62.22689249673732],[-58.98118981189812,-62.22689249673732],[-59.00999009990099,-62.220138187657795],[-58.98118981189812,-62.18467806499025],[-58.94518945189452,-62.15934940594201],[-58.71118711187111,-62.052969037939405],[-58.700387003870034,-62.04114899705023],[-58.700387003870034,-62.03439468797069],[-58.7039870398704,-62.031017533430926],[-58.70758707587075,-62.025951801621275],[-58.7039870398704,-62.01919749254175],[-58.700387003870034,-62.01244318346222],[-58.689586895868956,-62.00737745165257],[-58.67878678786788,-62.00400029711281],[-58.46638466384664,-61.966851597175385],[-58.45558455584555,-61.96178586536574],[-58.44838448384483,-61.95503155628621],[-58.44118441184412,-61.94152293812715],[-58.43398433984339,-61.9364572063175],[-58.412384123841235,-61.933080051777736],[-58.387183871838715,-61.9364572063175],[-58.34038340383404,-61.948277247206676],[-58.22518225182252,-61.96009728809585],[-58.17478174781748,-61.95165440174644],[-58.05238052380524,-61.91281712453914],[-58.009180091800914,-61.904374238189725],[-57.89037890378903,-61.93814578358738],[-57.83637836378364,-61.94152293812715],[-57.70677706777067,-61.91619427907891],[-57.670776707767075,-61.91281712453914],[-57.65637656376563,-61.91788285634878],[-57.64917649176492,-61.9263257426982],[-57.645576455764555,-61.93814578358738],[-57.64917649176492,-61.948277247206676],[-57.65637656376563,-61.95840871082597],[-57.670776707767075,-61.9651630199055],[-57.68157681576815,-61.966851597175385],[-57.68517685176852,-61.97191732898503],[-57.67797677976779,-61.98036021533444],[-57.659976599766,-61.995557410763396],[-57.63837638376383,-62.009066028922454],[-57.61317613176131,-62.01919749254175],[-57.59157591575915,-62.025951801621275],[-57.76437764377643,-62.00737745165257],[-57.78957789577895,-62.009066028922454],[-57.81117811178112,-62.0141317607321],[-57.847178471784716,-62.029328956161045],[-57.91917919179191,-62.06647765609846],[-57.95517955179551,-62.07829769698765],[-57.98757987579876,-62.07998627425752],[-58.13878138781388,-62.05634619247917],[-58.15678156781567,-62.05803476974906],[-58.16758167581675,-62.0631005015587],[-58.17118171181711,-62.06985481063823],[-58.17118171181711,-62.07829769698765],[-58.17118171181711,-62.091806315146705],[-58.17838178381784,-62.10024920149612],[-58.18198181981819,-62.10531493330576],[-58.185581855818555,-62.1120692423853],[-58.18198181981819,-62.12051212873471],[-58.17118171181711,-62.128955015084124],[-58.12438124381244,-62.14077505597331],[-58.13878138781388,-62.157660828672135],[-58.1639816398164,-62.16779229229142],[-58.24318243182431,-62.18130091045049],[-58.27198271982719,-62.18130091045049],[-58.29358293582935,-62.174546601370956],[-58.30798307983079,-62.16441513775166],[-58.34038340383404,-62.14077505597331],[-58.36918369183691,-62.12388928327448],[-58.37638376383764,-62.11713497419495],[-58.37998379983799,-62.10531493330576],[-58.37278372783727,-62.101937778766],[-58.32958329583295,-62.10362635603589],[-58.311583115831155,-62.10024920149612],[-58.27918279182792,-62.08336342879729],[-58.30798307983079,-62.07492054244788],[-58.336783367833675,-62.07492054244788],[-58.39078390783908,-62.08505200606717],[-58.40518405184051,-62.08505200606717],[-58.44118441184412,-62.071543387908115],[-58.45918459184591,-62.06985481063823],[-58.47718477184772,-62.06985481063823],[-58.49518495184951,-62.07492054244788],[-58.50958509585095,-62.08167485152741],[-58.47358473584735,-62.091806315146705],[-58.46638466384664,-62.09856062422624],[-58.46638466384664,-62.11375781965518],[-58.48078480784807,-62.12726643781424],[-58.50238502385024,-62.13739790143354],[-58.62118621186211,-62.17116944683119],[-58.63558635586355,-62.177923755910726],[-58.613986139861396,-62.18298948772037],[-58.59238592385924,-62.18467806499025],[-58.549185491854914,-62.18130091045049],[-58.46638466384664,-62.1610379832119]]],[[[-35.90855908559084,-54.68739498671107],[-35.93735937359372,-54.68908356398096],[-35.915759157591566,-54.716100800299074],[-35.872558725587254,-54.73636372753767],[-35.822158221582214,-54.75156092296662],[-35.78255782557824,-54.75662665477626],[-35.78255782557824,-54.765069541125676],[-35.796957969579694,-54.76675811839556],[-35.81135811358112,-54.77182385020521],[-35.822158221582214,-54.78026673655462],[-35.82575825758258,-54.78702104563415],[-35.83655836558364,-54.79039820017392],[-35.85455854558546,-54.79039820017392],[-35.88695886958868,-54.783643891094385],[-35.90855908559084,-54.803906818332976],[-35.93735937359372,-54.81066112741251],[-35.96975969759697,-54.805595395602865],[-35.998559985599854,-54.79884108652333],[-36.04536045360453,-54.77520100474497],[-36.074160741607415,-54.76675811839556],[-36.10656106561066,-54.765069541125676],[-36.09576095760957,-54.77520100474497],[-36.08496084960848,-54.783643891094385],[-36.07056070560705,-54.78870962290404],[-36.05616056160562,-54.79039820017392],[-36.041760417604166,-54.79377535471368],[-36.023760237602374,-54.81066112741251],[-36.00936009360092,-54.81910401376192],[-35.998559985599854,-54.82248116830169],[-35.98775987759876,-54.82416974557157],[-35.96255962559624,-54.82416974557157],[-35.95175951759518,-54.82754690011134],[-35.93375933759336,-54.841055518270394],[-35.922959229592294,-54.846121250080046],[-35.922959229592294,-54.85287555915958],[-35.93375933759336,-54.85287555915958],[-35.94455944559445,-54.85287555915958],[-35.95535955359554,-54.8511869818897],[-35.96255962559624,-54.846121250080046],[-35.96255962559624,-54.8511869818897],[-35.95895958959588,-54.861318445508985],[-35.95535955359554,-54.866384177318636],[-35.9841598415984,-54.866384177318636],[-35.99495994959949,-54.86300702277887],[-36.00576005760058,-54.85287555915958],[-36.00936009360092,-54.864695600048755],[-36.00576005760058,-54.87144990912829],[-36.00576005760058,-54.8798927954777],[-36.016560165601646,-54.8798927954777],[-36.0381603816038,-54.87482706366805],[-36.048960489604895,-54.87313848639817],[-36.05616056160562,-54.87651564093794],[-36.06336063360632,-54.88158137274758],[-36.074160741607415,-54.88664710455723],[-36.1029610296103,-54.88664710455723],[-36.11736117361173,-54.88495852728735],[-36.12816128161282,-54.87820421820781],[-36.13536135361352,-54.866384177318636],[-36.124561245612455,-54.866384177318636],[-36.11736117361173,-54.864695600048755],[-36.10656106561066,-54.85962986823911],[-36.14616146161461,-54.846121250080046],[-36.19296192961929,-54.81066112741251],[-36.21096210962108,-54.805595395602865],[-36.2361623616236,-54.79546393198356],[-36.27216272162721,-54.77013527293532],[-36.27216272162721,-54.75662665477626],[-36.2829628296283,-54.758315232046144],[-36.29736297362973,-54.743118036617204],[-36.29376293762937,-54.72792084118826],[-36.30456304563046,-54.71103506848943],[-36.31176311763116,-54.69077214125083],[-36.34776347763477,-54.653623441313414],[-36.42336423364233,-54.59283465959764],[-36.434164341643424,-54.58608035051811],[-36.44856448564485,-54.58439177324823],[-36.46296462964628,-54.581014618708465],[-36.477364773647736,-54.575948886898814],[-36.484564845648464,-54.56919457781928],[-36.4809648096481,-54.557374536930105],[-36.466564665646644,-54.54555449604092],[-36.46296462964628,-54.53711160969151],[-36.47376473764737,-54.52360299153245],[-36.49896498964989,-54.51009437337339],[-36.52416524165241,-54.49996290975409],[-36.542165421654204,-54.496585755214326],[-36.57096570965709,-54.496585755214326],[-36.58176581765818,-54.49996290975409],[-36.59976599765997,-54.513471527913154],[-36.6141661416614,-54.51684868245292],[-36.628566285662856,-54.515160105183035],[-36.642966429664284,-54.51009437337339],[-36.65736657366574,-54.498274332484215],[-36.67176671766717,-54.48645429159503],[-36.68256682566826,-54.476322827975736],[-36.786967869678705,-54.44930559165761],[-36.794167941679405,-54.44761701438773],[-36.80136801368013,-54.44930559165761],[-36.80856808568086,-54.44930559165761],[-36.812168121681225,-54.44423985984797],[-36.812168121681225,-54.4408627053082],[-36.80856808568086,-54.429042664419015],[-36.8049680496805,-54.42735408714914],[-36.8049680496805,-54.42228835533949],[-36.80136801368013,-54.41553404625996],[-36.79776797767977,-54.41046831445031],[-36.80136801368013,-54.40371400537078],[-36.8049680496805,-54.4020254281009],[-36.80856808568086,-54.40371400537078],[-36.812168121681225,-54.40033685083101],[-36.82656826568265,-54.39020538721172],[-36.84816848168481,-54.38345107813218],[-36.869768697686965,-54.38007392359242],[-36.887768877688785,-54.38007392359242],[-36.88056880568806,-54.373319614512894],[-36.90216902169021,-54.366565305433355],[-36.894968949689485,-54.35643384181407],[-36.887768877688785,-54.351368110004415],[-36.87336873368733,-54.351368110004415],[-36.8589685896859,-54.3530566872743],[-36.88416884168842,-54.336170914575476],[-36.92376923769237,-54.336170914575476],[-37.00297002970029,-54.346302378194764],[-37.013770137701385,-54.342925223655],[-37.05337053370533,-54.331105182765825],[-37.071370713707125,-54.32097371914652],[-37.08217082170822,-54.31590798733688],[-37.08577085770858,-54.310842255527234],[-37.08577085770858,-54.304087946447694],[-37.08217082170822,-54.29564506009829],[-37.07857078570785,-54.287202173748874],[-37.089370893708946,-54.283825019209104],[-37.10377103771037,-54.28044786466934],[-37.1181711817118,-54.27538213285969],[-37.13257132571326,-54.266939246510276],[-37.146971469714686,-54.26018493743075],[-37.154171541715414,-54.25680778289099],[-37.172171721717206,-54.26187351470063],[-37.1829718297183,-54.26018493743075],[-37.20097200972009,-54.25343062835122],[-37.222572225722246,-54.25005347381145],[-37.240572405724066,-54.25005347381145],[-37.26937269372692,-54.26018493743075],[-37.330573305733054,-54.2652506692404],[-37.348573485734846,-54.268627823780164],[-37.36657366573667,-54.27707071012958],[-37.373773737737366,-54.270316401050046],[-37.380973809738094,-54.266939246510276],[-37.39177391773916,-54.2652506692404],[-37.40257402574025,-54.270316401050046],[-37.41337413374134,-54.2551192056211],[-37.40977409774098,-54.248364896541574],[-37.33417334173342,-54.22979054657286],[-37.31977319773196,-54.22979054657286],[-37.33777337773378,-54.21459335114392],[-37.39537395373952,-54.20108473298485],[-37.40977409774098,-54.182510383016144],[-37.36657366573667,-54.182510383016144],[-37.31977319773196,-54.17406749666674],[-37.2369723697237,-54.14705026034861],[-37.26217262172622,-54.14029595126908],[-37.35217352173521,-54.141984528538956],[-37.38817388173882,-54.14705026034861],[-37.40257402574025,-54.145361683078725],[-37.424174241742406,-54.13523021945943],[-37.4349743497435,-54.13354164218955],[-37.52857528575285,-54.13354164218955],[-37.55377553775537,-54.13691879672931],[-37.5609756097561,-54.14705026034861],[-37.55377553775537,-54.15718172396791],[-37.532175321753215,-54.16055887850767],[-37.55017550175501,-54.16562461031732],[-37.62937629376293,-54.17575607393661],[-37.66897668976688,-54.17237891939685],[-37.69057690576906,-54.17406749666674],[-37.683376833768335,-54.17069034212697],[-37.67977679776797,-54.163936033047435],[-37.67617676176761,-54.16055887850767],[-37.69057690576906,-54.15549314669802],[-37.72297722977228,-54.13354164218955],[-37.6869768697687,-54.12003302403049],[-37.66897668976688,-54.11159013768108],[-37.65457654576545,-54.09977009679189],[-37.67257672576724,-54.09639294225212],[-37.70497704977049,-54.09808151952201],[-37.72297722977228,-54.09301578771236],[-37.66177661776618,-54.07275286047377],[-37.632976329763295,-54.059244242314705],[-37.6149761497615,-54.03729273780623],[-37.733777337773375,-54.03729273780623],[-37.791377913779144,-54.044047046885765],[-37.809378093780936,-54.040669892346],[-37.82737827378273,-54.03222700599659],[-37.841778417784184,-54.0305384287267],[-37.89577895778956,-54.044047046885765],[-37.92817928179281,-54.04573562415565],[-37.95337953379533,-54.03391558326646],[-37.974979749797484,-54.02884985145682],[-38.010980109801096,-54.05248993323518],[-38.03258032580325,-54.05080135596529],[-38.02898028980289,-54.04235846961588],[-38.025380253802524,-54.03222700599659],[-38.018180181801824,-54.02547269691705],[-38.00378003780037,-54.023784119647175],[-38.010980109801096,-54.01534123329776],[-38.01458014580146,-54.01196407875799],[-38.02178021780216,-54.01027550148811],[-38.03258032580325,-54.01027550148811],[-38.01458014580146,-54.003521192408584],[-37.96417964179642,-54.003521192408584],[-37.91377913779138,-53.9917011515194],[-37.892178921789224,-53.99001257424952],[-37.87057870578704,-53.99338972878928],[-37.83817838178382,-54.00689834694835],[-37.820178201782,-54.01027550148811],[-37.79857798577984,-54.00858692421823],[-37.77697776977769,-54.001832615138696],[-37.75537755377553,-53.99338972878928],[-37.73737737377374,-53.98325826516999],[-37.73737737377374,-53.97312680155069],[-37.71577715777158,-53.97312680155069],[-37.69057690576906,-53.976503956090454],[-37.66897668976688,-53.98325826516999],[-37.67977679776797,-53.98494684243987],[-37.683376833768335,-53.98832399697963],[-37.6869768697687,-53.99338972878928],[-37.69057690576906,-54.003521192408584],[-37.49257492574924,-54.000144037868814],[-37.42057420574204,-53.986635419709756],[-37.380973809738094,-53.98325826516999],[-37.380973809738094,-53.99001257424952],[-37.4421744217442,-54.01027550148811],[-37.4349743497435,-54.01702981056764],[-37.4421744217442,-54.0305384287267],[-37.46377463774638,-54.0305384287267],[-37.4421744217442,-54.04235846961588],[-37.42777427774277,-54.04911277869542],[-37.40977409774098,-54.05080135596529],[-37.38457384573846,-54.05080135596529],[-37.37737377373773,-54.05080135596529],[-37.35937359373594,-54.04573562415565],[-37.35217352173521,-54.044047046885765],[-37.290972909729106,-54.044047046885765],[-37.23337233372334,-54.06768712866412],[-37.222572225722246,-54.06937570593401],[-37.21897218972188,-54.05248993323518],[-37.20097200972009,-54.04911277869542],[-37.1829718297183,-54.04911277869542],[-37.16857168571684,-54.044047046885765],[-37.172171721717206,-54.03391558326646],[-37.15777157771578,-54.03222700599659],[-37.13617136171362,-54.03222700599659],[-37.121771217712165,-54.0305384287267],[-37.139771397713986,-54.04573562415565],[-37.13257132571326,-54.05080135596529],[-37.1181711817118,-54.05080135596529],[-37.10737107371074,-54.05080135596529],[-37.10737107371074,-54.062621396854475],[-37.1181711817118,-54.06937570593401],[-37.14337143371432,-54.079507169553295],[-37.13617136171362,-54.08795005590271],[-37.139771397713986,-54.09639294225212],[-37.14337143371432,-54.10483582860154],[-37.15057150571505,-54.11327871495095],[-37.121771217712165,-54.11159013768108],[-37.10017100171001,-54.09808151952201],[-37.08217082170822,-54.081195746823184],[-37.06057060570606,-54.064309974124356],[-37.038970389703906,-54.05755566504483],[-37.00657006570066,-54.05248993323518],[-36.97776977769777,-54.05417851050506],[-36.970569705697045,-54.07275286047377],[-37.013770137701385,-54.09639294225212],[-37.03177031770318,-54.10990156041119],[-37.01737017370172,-54.12003302403049],[-36.995769957699565,-54.11665586949072],[-36.91656916569164,-54.086261478632835],[-36.920169201692005,-54.082884324093065],[-36.9309693096931,-54.07444143774365],[-36.93456934569346,-54.07275286047377],[-36.91656916569164,-54.06768712866412],[-36.89136891368912,-54.06937570593401],[-36.84096840968408,-54.079507169553295],[-36.812168121681225,-54.08795005590271],[-36.8049680496805,-54.09301578771236],[-36.8049680496805,-54.10314725133166],[-36.81576815768156,-54.11496729222084],[-36.812168121681225,-54.126787333110016],[-36.819368193681925,-54.13523021945943],[-36.812168121681225,-54.141984528538956],[-36.80136801368013,-54.143673105808844],[-36.79056790567904,-54.14029595126908],[-36.786967869678705,-54.13354164218955],[-36.78336783367834,-54.10821298314131],[-36.77976779767798,-54.09977009679189],[-36.75456754567546,-54.09470436498225],[-36.653766537665376,-54.106524405871426],[-36.660966609666104,-54.11327871495095],[-36.642966429664284,-54.11327871495095],[-36.63216632166322,-54.11496729222084],[-36.62136621366213,-54.12003302403049],[-36.62136621366213,-54.126787333110016],[-36.628566285662856,-54.13523021945943],[-36.63216632166322,-54.13860737399919],[-36.635766357663584,-54.14705026034861],[-36.653766537665376,-54.141984528538956],[-36.67176671766717,-54.14029595126908],[-36.686166861668625,-54.143673105808844],[-36.704167041670416,-54.15380456942814],[-36.67536675366753,-54.15887030123778],[-36.66456664566644,-54.16224745577755],[-36.668166681666804,-54.169001764857086],[-36.678966789667896,-54.17069034212697],[-36.704167041670416,-54.17069034212697],[-36.718567185671844,-54.17406749666674],[-36.68976689766896,-54.184198960286025],[-36.660966609666104,-54.182510383016144],[-36.59976599765997,-54.169001764857086],[-36.542165421654204,-54.16055887850767],[-36.534965349653504,-54.1673131875872],[-36.52416524165241,-54.1774446512065],[-36.51336513365132,-54.182510383016144],[-36.49896498964989,-54.17406749666674],[-36.491764917649164,-54.18082180574626],[-36.491764917649164,-54.184198960286025],[-36.491764917649164,-54.189264692095676],[-36.49896498964989,-54.1960190011752],[-36.51336513365132,-54.187576114825795],[-36.527765277652776,-54.187576114825795],[-36.560165601656024,-54.1960190011752],[-36.57456574565745,-54.20277331025474],[-36.65736657366574,-54.23992201019216],[-36.66456664566644,-54.24161058746204],[-36.67176671766717,-54.24329916473192],[-36.67536675366753,-54.25005347381145],[-36.67536675366753,-54.25343062835122],[-36.668166681666804,-54.26018493743075],[-36.668166681666804,-54.266939246510276],[-36.67536675366753,-54.27707071012958],[-36.65016650166501,-54.27875928739946],[-36.63216632166322,-54.27707071012958],[-36.6141661416614,-54.27200497831993],[-36.54576545765457,-54.23823343292227],[-36.52056520565205,-54.231479123842746],[-36.502565025650256,-54.24329916473192],[-36.491764917649164,-54.23485627838251],[-36.477364773647736,-54.23823343292227],[-36.47016470164701,-54.25174205108134],[-36.47376473764737,-54.266939246510276],[-36.4809648096481,-54.270316401050046],[-36.491764917649164,-54.270316401050046],[-36.49896498964989,-54.27200497831993],[-36.502565025650256,-54.28044786466934],[-36.502565025650256,-54.28551359647899],[-36.49536495364953,-54.288890751018755],[-36.491764917649164,-54.293956482828406],[-36.49896498964989,-54.304087946447694],[-36.4881648816488,-54.314219410067],[-36.484564845648464,-54.32435087368629],[-36.4881648816488,-54.336170914575476],[-36.49896498964989,-54.346302378194764],[-36.459364593645944,-54.31759656460676],[-36.43776437764376,-54.310842255527234],[-36.41976419764197,-54.314219410067],[-36.39456394563945,-54.342925223655],[-36.376563765637655,-54.35643384181407],[-36.3549635496355,-54.35981099635383],[-36.33696336963368,-54.351368110004415],[-36.33696336963368,-54.33785949184535],[-36.34776347763477,-54.32097371914652],[-36.3549635496355,-54.30071079190793],[-36.35856358563586,-54.293956482828406],[-36.38016380163802,-54.27707071012958],[-36.38736387363872,-54.268627823780164],[-36.39096390963908,-54.26356209197051],[-36.39456394563945,-54.2551192056211],[-36.39456394563945,-54.24329916473192],[-36.32976329763298,-54.25680778289099],[-36.29736297362973,-54.268627823780164],[-36.29376293762937,-54.283825019209104],[-36.27936279362794,-54.28213644193923],[-36.26856268562685,-54.28213644193923],[-36.26136261362612,-54.28551359647899],[-36.25776257762578,-54.293956482828406],[-36.25416254162542,-54.30577652371758],[-36.25416254162542,-54.31253083279711],[-36.25416254162542,-54.31928514187665],[-36.26496264962648,-54.32603945095617],[-36.2361623616236,-54.33954806911524],[-36.2361623616236,-54.342925223655],[-36.250562505625055,-54.349679532734534],[-36.25776257762578,-54.369942459973124],[-36.24336243362433,-54.37500819178277],[-36.16056160561604,-54.373319614512894],[-36.1641616416164,-54.38682823267195],[-36.1641616416164,-54.39864827356113],[-36.17136171361713,-54.41046831445031],[-36.18936189361892,-54.413845468990075],[-36.18216182161822,-54.42397693260937],[-36.174961749617495,-54.4307312416889],[-36.16776167761677,-54.434108396228666],[-36.15336153361534,-54.435796973498555],[-36.15336153361534,-54.44423985984797],[-36.14616146161461,-54.44930559165761],[-36.13176131761318,-54.45268274619738],[-36.12096120961209,-54.456059900737145],[-36.11376113761136,-54.45437132346726],[-36.099360993609935,-54.44930559165761],[-36.09216092160921,-54.450994168927494],[-36.07776077760778,-54.46281420981667],[-36.05256052560526,-54.46112563254679],[-36.041760417604166,-54.46450278708656],[-36.0381603816038,-54.47294567343597],[-36.03456034560344,-54.48476571432515],[-36.02736027360274,-54.491520023404675],[-36.016560165601646,-54.494897177944445],[-36.03456034560344,-54.50502864156374],[-36.05616056160562,-54.515160105183035],[-36.099360993609935,-54.54555449604092],[-36.08856088560884,-54.55230880512046],[-36.07056070560705,-54.5675060005494],[-36.05976059760596,-54.57088315508916],[-36.041760417604166,-54.57426030962893],[-35.95175951759518,-54.57088315508916],[-35.93735937359372,-54.56581742327952],[-35.90855908559084,-54.55230880512046],[-35.897758977589774,-54.54893165058069],[-35.88695886958868,-54.55062022785057],[-35.890558905589046,-54.56244026873975],[-35.90855908559084,-54.59283465959764],[-35.93015930159302,-54.618163318645884],[-35.93735937359372,-54.619851895915765],[-35.9121591215912,-54.6654434822026],[-35.90855908559084,-54.68739498671107]]],[[[-75.02295022950229,-51.33050337418427],[-75.01215012150121,-51.33556910599392],[-75.0049500495005,-51.342323415073444],[-74.99774997749977,-51.34907772415298],[-74.99774997749977,-51.36258634231204],[-74.99774997749977,-51.37440638320122],[-75.00135001350013,-51.389603578630165],[-75.0049500495005,-51.404800774059105],[-75.01575015750157,-51.41324366040852],[-75.03015030150301,-51.41155508313864],[-75.05175051750517,-51.404800774059105],[-75.06975069750698,-51.40142361951934],[-75.08055080550805,-51.409866505868756],[-75.08055080550805,-51.426752278567584],[-75.08775087750877,-51.43350658764711],[-75.0949509495095,-51.43857231945676],[-75.10575105751057,-51.447015205806174],[-75.10935109351094,-51.45545809215559],[-75.10935109351094,-51.46052382396523],[-75.10935109351094,-51.467278133044765],[-75.10935109351094,-51.470655287584535],[-75.11655116551165,-51.4740324421243],[-75.12375123751237,-51.472343864854416],[-75.1309513095131,-51.467278133044765],[-75.13455134551346,-51.463900978505],[-75.13455134551346,-51.45039236034594],[-75.14175141751417,-51.43857231945676],[-75.14895148951489,-51.430129433107346],[-75.15975159751598,-51.426752278567584],[-75.15615156151561,-51.45039236034594],[-75.13815138151381,-51.5027382557123],[-75.13455134551346,-51.53313264657019],[-75.14175141751417,-51.56521561469796],[-75.16335163351633,-51.573658501047376],[-75.18855188551885,-51.56521561469796],[-75.21375213752137,-51.550018419269016],[-75.2209522095221,-51.57534707831726],[-75.21015210152102,-51.592232851016085],[-75.20655206552065,-51.60236431463538],[-75.23895238952389,-51.60405289190526],[-75.25335253352533,-51.60743004644503],[-75.28935289352893,-51.62769297368362],[-75.30015300153,-51.631070128223385],[-75.30735307353073,-51.631070128223385],[-75.31455314553145,-51.629381550953504],[-75.31815318153181,-51.62262724187397],[-75.31815318153181,-51.612495778254676],[-75.31815318153181,-51.60405289190526],[-75.31815318153181,-51.59561000555585],[-75.31815318153181,-51.590544273746204],[-75.32535325353253,-51.58210138739679],[-75.32535325353253,-51.57703565558714],[-75.32175321753218,-51.571969923777495],[-75.31455314553145,-51.54326411018949],[-75.31455314553145,-51.53650980110996],[-75.30735307353073,-51.534821223840076],[-75.29655296552966,-51.529755492030425],[-75.28575285752858,-51.52468976022078],[-75.28215282152821,-51.51962402841113],[-75.27135271352714,-51.5128697193316],[-75.24615246152462,-51.50780398752195],[-75.23535235352354,-51.50104967844242],[-75.22455224552245,-51.490918214823125],[-75.22455224552245,-51.48247532847371],[-75.22815228152281,-51.47572101939418],[-75.22815228152281,-51.467278133044765],[-75.2209522095221,-51.41324366040852],[-75.21735217352173,-51.40311219678922],[-75.20655206552065,-51.389603578630165],[-75.19935199351993,-51.386226424090395],[-75.19575195751958,-51.384537846820514],[-75.18855188551885,-51.38116069228075],[-75.18855188551885,-51.3760949604711],[-75.18855188551885,-51.367652074121686],[-75.19575195751958,-51.365963496851805],[-75.20295202952029,-51.365963496851805],[-75.20655206552065,-51.365963496851805],[-75.21375213752137,-51.34907772415298],[-75.2209522095221,-51.327126219644505],[-75.2209522095221,-51.305174715136026],[-75.20655206552065,-51.29673182878661],[-75.1849518495185,-51.2882889424372],[-75.16335163351633,-51.27478032427814],[-75.14175141751417,-51.264648860658845],[-75.12735127351273,-51.26971459246849],[-75.12735127351273,-51.28660036516732],[-75.14175141751417,-51.34063483780356],[-75.15615156151561,-51.36427491958192],[-75.14895148951489,-51.367652074121686],[-75.13815138151381,-51.365963496851805],[-75.1309513095131,-51.36258634231204],[-75.12375123751237,-51.35245487869274],[-75.11655116551165,-51.327126219644505],[-75.11295112951129,-51.3169947560252],[-75.11295112951129,-51.31192902421556],[-75.11295112951129,-51.303486137866145],[-75.10935109351094,-51.29842040605649],[-75.10215102151021,-51.29673182878661],[-75.09135091350913,-51.29842040605649],[-75.08415084150842,-51.303486137866145],[-75.08055080550805,-51.308551869675796],[-75.07335073350733,-51.31024044694568],[-75.07335073350733,-51.31192902421556],[-75.06255062550625,-51.32543764237462],[-75.0589505895059,-51.33050337418427],[-75.0481504815048,-51.33219195145415],[-75.03015030150301,-51.33050337418427],[-75.02295022950229,-51.33050337418427]]],[[[-74.73854738547385,-51.36934065139157],[-74.79254792547925,-51.41999796948805],[-74.78174781747818,-51.426752278567584],[-74.79974799747997,-51.43181801037723],[-74.83214832148322,-51.43857231945676],[-74.86454864548645,-51.44194947399652],[-74.90774907749078,-51.45376951488571],[-74.91854918549186,-51.45208093761582],[-74.9329493294933,-51.448703783076056],[-74.94374943749438,-51.448703783076056],[-74.95814958149582,-51.45714666942547],[-74.97254972549725,-51.468966710314646],[-74.98694986949869,-51.4740324421243],[-75.00135001350013,-51.4740324421243],[-75.01575015750157,-51.467278133044765],[-75.02295022950229,-51.45545809215559],[-75.01935019350194,-51.44363805126641],[-75.0049500495005,-51.43181801037723],[-74.9689496894969,-51.42168654675793],[-74.87174871748716,-51.37778353774098],[-74.85374853748537,-51.367652074121686],[-74.8429484294843,-51.35414345596263],[-74.82854828548285,-51.345700569613214],[-74.81414814148141,-51.33894626053368],[-74.79974799747997,-51.33050337418427],[-74.79254792547925,-51.3169947560252],[-74.9221492214922,-51.36427491958192],[-74.95094950949509,-51.36258634231204],[-74.96534965349653,-51.344011992343326],[-74.96174961749617,-51.328814796914386],[-74.95094950949509,-51.3169947560252],[-74.9329493294933,-51.303486137866145],[-74.91134911349113,-51.29166609697697],[-74.86094860948609,-51.283223210627554],[-74.83934839348393,-51.27646890154802],[-74.83574835748357,-51.25451739703954],[-74.81774817748177,-51.22918873799131],[-74.79254792547925,-51.2106143880226],[-74.77454774547745,-51.2106143880226],[-74.760147601476,-51.21399154256236],[-74.74574745747456,-51.20892581075271],[-74.72774727747277,-51.198794347133415],[-74.71334713347133,-51.19372861532377],[-74.69534695346952,-51.19541719259365],[-74.67734677346773,-51.202171501673185],[-74.65934659346593,-51.203860078943066],[-74.64134641346413,-51.19710576986353],[-74.60174601746017,-51.20554865621295],[-74.5549455494555,-51.25114024249978],[-74.54774547745477,-51.284911787897435],[-74.62694626946269,-51.262960283388956],[-74.62334623346233,-51.28153463335767],[-74.58014580145802,-51.31868333329509],[-74.57654576545765,-51.3372576832638],[-74.56574565745657,-51.34063483780356],[-74.5549455494555,-51.347389146883096],[-74.54774547745477,-51.35414345596263],[-74.5441454414544,-51.365963496851805],[-74.59454594545944,-51.39973504224946],[-74.62334623346233,-51.406489351328986],[-74.64494644946448,-51.39298073316993],[-74.64494644946448,-51.38791500136028],[-74.64134641346413,-51.37947211501086],[-74.64134641346413,-51.37102922866145],[-74.64134641346413,-51.36258634231204],[-74.65214652146521,-51.35583203323251],[-74.66654666546665,-51.345700569613214],[-74.67374673746737,-51.3372576832638],[-74.6809468094681,-51.327126219644505],[-74.68454684546845,-51.31530617875532],[-74.68814688146881,-51.29842040605649],[-74.68814688146881,-51.283223210627554],[-74.69894698946989,-51.29504325151673],[-74.70614706147062,-51.308551869675796],[-74.7169471694717,-51.31361760148544],[-74.73494734947349,-51.29673182878661],[-74.74214742147421,-51.30686329240591],[-74.74214742147421,-51.3169947560252],[-74.73494734947349,-51.32543764237462],[-74.72414724147241,-51.33388052872403],[-74.72414724147241,-51.34063483780356],[-74.72774727747277,-51.35076630142286],[-74.73494734947349,-51.36258634231204],[-74.73854738547385,-51.36934065139157]]],[[[168.1378813788138,-21.432554233641206],[168.14508145081453,-21.452817160879796],[168.14508145081453,-21.488277283547333],[168.1378813788138,-21.52711456075464],[168.12348123481235,-21.555820374342645],[168.13068130681307,-21.601411960629477],[168.1270812708127,-21.621674887868068],[168.11268112681125,-21.631806351487363],[168.10188101881022,-21.633494928757244],[168.06588065880658,-21.643626392376547],[168.03708037080372,-21.658823587805486],[167.9938799387994,-21.655446433265723],[167.95787957879583,-21.638560660566895],[167.96147961479613,-21.60985484697889],[167.939879398794,-21.601411960629477],[167.9110791107911,-21.596346228819826],[167.8858788587886,-21.594657651549944],[167.86427864278642,-21.60310053789936],[167.86067860678605,-21.601411960629477],[167.86067860678605,-21.598034806089714],[167.85707857078575,-21.594657651549944],[167.85707857078575,-21.5895919197403],[167.86787867878678,-21.582837610660768],[167.87867878678787,-21.572706147041472],[167.88947889478897,-21.559197528882407],[167.89307893078933,-21.54231175618358],[167.8858788587886,-21.533868869834166],[167.86427864278642,-21.510228788055812],[167.85707857078575,-21.500097324436517],[167.84987849878502,-21.48321155173769],[167.84627846278465,-21.456194315419566],[167.8426784267843,-21.439308542720738],[167.83547835478356,-21.42242277002191],[167.8066780667807,-21.38358549281461],[167.82467824678247,-21.376831183735078],[167.83547835478356,-21.373454029195315],[167.84987849878502,-21.375142606465197],[167.86427864278642,-21.376831183735078],[167.88947889478897,-21.388651224624255],[167.90387903879042,-21.392028379164024],[167.92187921879218,-21.37851976100496],[167.98667986679868,-21.33630532925789],[167.99027990279905,-21.348125370147073],[167.97227972279723,-21.375142606465197],[167.9650796507965,-21.393716956433906],[167.97227972279723,-21.410602729132734],[167.98307983079832,-21.429177079101443],[167.99747997479977,-21.444374274530382],[168.00828008280087,-21.452817160879796],[168.03708037080372,-21.45957146995933],[168.0730807308073,-21.456194315419566],[168.10908109081095,-21.444374274530382],[168.1378813788138,-21.432554233641206]]],[[[167.43227432274324,-21.02729568886936],[167.44307443074433,-21.03742715248866],[167.4610746107461,-21.050935770647712],[167.46467464674646,-21.064444388806777],[167.43227432274324,-21.07457585242608],[167.4250742507425,-21.08977304785502],[167.4250742507425,-21.126921747792437],[167.4250742507425,-21.147184675031028],[167.41787417874178,-21.160693293190093],[167.40707407074075,-21.169136179539507],[167.38907389073893,-21.179267643158795],[167.37467374673747,-21.17251333407927],[167.34947349473498,-21.17251333407927],[167.33147331473316,-21.164070447729856],[167.32067320673207,-21.133676056871963],[167.31347313473134,-21.1302989023322],[167.29907299072994,-21.126921747792437],[167.28107281072812,-21.123544593252674],[167.2738727387274,-21.113413129633372],[167.2738727387274,-21.096527356934544],[167.26667266672666,-21.091461625124907],[167.17667176671767,-21.083018738775493],[167.14787147871482,-21.07288727515619],[167.1190711907119,-21.0526243479176],[167.09747097470978,-21.02729568886936],[167.09387093870941,-21.020541379789833],[167.09387093870941,-21.01209849344042],[167.0866708667087,-21.003655607091005],[167.06867068670687,-20.996901298011466],[167.06147061470614,-20.986769834392177],[167.06147061470614,-20.973261216233112],[167.06867068670687,-20.959752598074047],[167.02907029070292,-20.92598105267639],[167.0218702187022,-20.91247243451734],[167.08307083070832,-20.915849589057103],[167.10107101071014,-20.91247243451734],[167.12267122671227,-20.902340970898038],[167.13347133471336,-20.89052093000886],[167.15147151471518,-20.86350369369073],[167.18027180271804,-20.82973214829309],[167.19107191071913,-20.809469221054485],[167.1838718387184,-20.78751771654602],[167.1730717307173,-20.78076340746648],[167.1190711907119,-20.76050048022789],[167.04347043470437,-20.768943366577304],[167.04347043470437,-20.758811902958016],[167.04707047070474,-20.736860398449537],[167.05787057870577,-20.716597471210946],[167.07947079470796,-20.706466007591644],[167.11187111871118,-20.701400275781992],[167.1190711907119,-20.70308885305188],[167.12627126271263,-20.708154584861532],[167.13347133471336,-20.711531739401295],[167.14427144271446,-20.713220316671183],[167.15507155071555,-20.713220316671183],[167.16587165871658,-20.709843162131406],[167.1730717307173,-20.70308885305188],[167.17667176671767,-20.69295738943258],[167.18027180271804,-20.68282592581329],[167.21267212672126,-20.672694462193988],[167.28827288272885,-20.711531739401295],[167.3026730267303,-20.713220316671183],[167.30987309873098,-20.730106089369997],[167.29907299072994,-20.748680439338713],[167.28827288272885,-20.76556621203754],[167.28107281072812,-20.784140562006257],[167.28107281072812,-20.795960602895434],[167.28827288272885,-20.82297783921355],[167.3026730267303,-20.84999507553168],[167.29907299072994,-20.861815116420857],[167.28467284672848,-20.882078043659448],[167.28107281072812,-20.893898084548624],[167.28467284672848,-20.902340970898038],[167.2918729187292,-20.9057181254378],[167.3026730267303,-20.909095279977564],[167.31347313473134,-20.914161011787215],[167.32427324273243,-20.924292475406517],[167.33147331473316,-20.92935820721617],[167.3566735667357,-20.937801093565582],[167.36747367473674,-20.939489670835457],[167.37827378273784,-20.939489670835457],[167.38547385473856,-20.941178248105345],[167.38907389073893,-20.95299828899452],[167.3926739267393,-20.958064020804173],[167.39987399874002,-20.96819548442346],[167.40347403474038,-20.973261216233112],[167.3926739267393,-20.99014698893194],[167.38907389073893,-21.000278452551242],[167.38907389073893,-21.008721338900642],[167.39987399874002,-21.018852802519945],[167.41067410674106,-21.023918534329596],[167.42147421474215,-21.023918534329596],[167.43227432274324,-21.02729568886936]]],[[[169.33669336693367,-18.935148451484693],[169.32949329493294,-18.960477110532935],[169.30789307893082,-18.97229715142211],[169.28629286292863,-18.982428615041414],[169.27549275492754,-18.99931438774024],[169.2538925389254,-18.984117192311288],[169.1674916749168,-18.938525606024456],[169.15309153091533,-18.93683702875458],[169.14229142291424,-18.941902760564233],[169.1350913509135,-18.940214183294344],[169.1026910269103,-18.93177129694493],[169.09549095490956,-18.928394142405168],[169.08469084690847,-18.918262678785865],[169.05949059490598,-18.901376906087037],[169.04149041490416,-18.894622597007512],[168.98748987489876,-18.876048247038796],[168.9838898388984,-18.859162474339968],[169.0018900189002,-18.815259465323024],[169.0018900189002,-18.80175084716396],[168.99828998289985,-18.789930806274782],[168.99108991089912,-18.779799342655494],[168.9838898388984,-18.76966787903619],[168.9838898388984,-18.762913569956666],[168.98748987489876,-18.690304747351703],[168.99468994689948,-18.670041820113113],[169.00909009090094,-18.649778892874522],[169.0378903789038,-18.62951596563593],[169.07749077490774,-18.617695924746755],[169.11709117091175,-18.61938450201663],[169.15309153091533,-18.636270274715457],[169.16389163891643,-18.651467470144397],[169.1674916749168,-18.671730397383],[169.1674916749168,-18.70887909732042],[169.1710917109171,-18.725764870019248],[169.18549185491855,-18.734207756368647],[169.22869228692286,-18.7392734881783],[169.22869228692286,-18.737584910908424],[169.23229232292323,-18.735896333638536],[169.23949239492396,-18.734207756368647],[169.24309243092432,-18.732519179098773],[169.24669246692469,-18.734207756368647],[169.24669246692469,-18.74265064271806],[169.25749257492578,-18.747716374527712],[169.26109261092614,-18.754470683607252],[169.2646926469265,-18.762913569956666],[169.26829268292687,-18.76966787903619],[169.25749257492578,-18.77135645630608],[169.19269192691928,-18.78655365173502],[169.21789217892183,-18.815259465323024],[169.22149221492214,-18.825390928942326],[169.22869228692286,-18.8270795062122],[169.25749257492578,-18.84227670164114],[169.26829268292687,-18.84903101072068],[169.29709297092973,-18.86422820614962],[169.3186931869319,-18.882802556118335],[169.3330933309333,-18.9047540606268],[169.33669336693367,-18.935148451484693]]],[[[168.54828548285485,-17.69066700358114],[168.55908559085594,-17.69235558085103],[168.56988569885698,-17.69235558085103],[168.5770857708577,-17.688978426311266],[168.58428584285843,-17.683912694501615],[168.58428584285843,-17.700798467200443],[168.55548555485558,-17.75989867164634],[168.54828548285485,-17.785227330694582],[168.54108541085412,-17.79704737158376],[168.52668526685267,-17.80211310339341],[168.50148501485018,-17.807178835203047],[168.4978849788498,-17.808867412472935],[168.4978849788498,-17.813933144282586],[168.49068490684908,-17.818998876092238],[168.48348483484835,-17.820687453362112],[168.479884798848,-17.818998876092238],[168.47268472684726,-17.813933144282586],[168.4690846908469,-17.808867412472935],[168.46548465484653,-17.807178835203047],[168.39708397083973,-17.824064607901875],[168.389883898839,-17.824064607901875],[168.37188371883718,-17.813933144282586],[168.36828368283682,-17.807178835203047],[168.36468364683645,-17.79704737158376],[168.36108361083615,-17.793670217043996],[168.35028350283505,-17.807178835203047],[168.35028350283505,-17.798735948853633],[168.34308343083433,-17.788604485234345],[168.34308343083433,-17.78016159888493],[168.33948339483396,-17.78185017615482],[168.33948339483396,-17.783538753424693],[168.3358833588336,-17.786915907964456],[168.32868328683287,-17.783538753424693],[168.32148321483214,-17.785227330694582],[168.3142831428314,-17.788604485234345],[168.3106831068311,-17.793670217043996],[168.3142831428314,-17.75989867164634],[168.3106831068311,-17.75989867164634],[168.29988299883001,-17.771718712535517],[168.2818828188282,-17.778473021615042],[168.2458824588246,-17.786915907964456],[168.2458824588246,-17.78016159888493],[168.26388263882637,-17.768341557995754],[168.28548285482856,-17.761587248916214],[168.30348303483038,-17.751455785296926],[168.3106831068311,-17.731192858058336],[168.29988299883001,-17.736258589867973],[168.2926829268293,-17.736258589867973],[168.28908289082892,-17.731192858058336],[168.28548285482856,-17.710929930819745],[168.2818828188282,-17.707552776279968],[168.27468274682747,-17.707552776279968],[168.26748267482674,-17.704175621740205],[168.25308253082534,-17.69573273539079],[168.23868238682388,-17.694044158120917],[168.2278822788228,-17.69742131266068],[168.21348213482133,-17.704175621740205],[168.20628206282066,-17.710929930819745],[168.1918819188192,-17.73288143532821],[168.18468184681848,-17.73794716713786],[168.17388173881739,-17.741324321677624],[168.16668166681666,-17.736258589867973],[168.16668166681666,-17.726127126248684],[168.15228152281526,-17.71768423989927],[168.15588155881562,-17.705864199010094],[168.17748177481775,-17.6568954581835],[168.1918819188192,-17.643386840024434],[168.2170821708217,-17.626501067325606],[168.2278822788228,-17.61468102643643],[168.26748267482674,-17.558957976530294],[168.2926829268293,-17.537006472021815],[168.32148321483214,-17.53194074021218],[168.32868328683287,-17.538695049291704],[168.33228332283323,-17.548826512911006],[168.3358833588336,-17.55558082199053],[168.35388353883542,-17.54544935837123],[168.42228422284222,-17.533629317482053],[168.44028440284404,-17.537006472021815],[168.4546845468455,-17.547137935641118],[168.4546845468455,-17.55220366745077],[168.45828458284586,-17.57077801741947],[168.46188461884623,-17.574155171959234],[168.47268472684726,-17.575843749229122],[168.47628476284763,-17.580909481038773],[168.48708487084872,-17.59441809919784],[168.49428494284945,-17.61299244916654],[168.50148501485018,-17.63325537640513],[168.5086850868509,-17.648452571834085],[168.53028530285303,-17.6568954581835],[168.5338853388534,-17.665338344532913],[168.5446854468545,-17.685601271771503],[168.54828548285485,-17.69066700358114]]],[[[168.1810818108181,-16.348248074024397],[168.17028170281702,-16.35162522856416],[168.15228152281526,-16.3583795376437],[168.14148141481417,-16.361756692183462],[168.1270812708127,-16.35669096037381],[168.11628116281162,-16.348248074024397],[168.10188101881022,-16.339805187674983],[168.08748087480876,-16.33642803313522],[168.07668076680767,-16.339805187674983],[168.05148051480518,-16.322919414976155],[168.03708037080372,-16.319542260436393],[168.02268022680227,-16.326296569515932],[168.01188011880117,-16.31447652862674],[167.97947979479795,-16.29590217865804],[167.9650796507965,-16.282393560498974],[167.9506795067951,-16.27395067414956],[167.93267932679328,-16.267196365070035],[167.92187921879218,-16.25875347872062],[167.92547925479255,-16.245244860561556],[167.9110791107911,-16.23342481967238],[167.92547925479255,-16.219916201513314],[167.9506795067951,-16.208096160624137],[167.97947979479795,-16.203030428814486],[167.9938799387994,-16.192898965195198],[168.0046800468005,-16.18952181065542],[168.0478804788048,-16.18952181065542],[168.06948069480694,-16.179390347036133],[168.10548105481058,-16.142241647098714],[168.11988119881198,-16.135487338019175],[168.1270812708127,-16.12873302893965],[168.14148141481417,-16.089895751732342],[168.1486814868149,-16.08651859719258],[168.17028170281702,-16.079764288113054],[168.1918819188192,-16.101715792621533],[168.20628206282066,-16.1337987607493],[168.2278822788228,-16.19627611973496],[168.23148231482315,-16.228359087862728],[168.24948249482497,-16.246933437831444],[168.32148321483214,-16.282393560498974],[168.32868328683287,-16.290836446848388],[168.32868328683287,-16.306033642277328],[168.32148321483214,-16.31785368316652],[168.28908289082892,-16.343182342214746],[168.1810818108181,-16.348248074024397]]],[[[-171.5651156511565,-13.948779773521082],[-171.51831518315183,-13.94540261898132],[-171.4679146791468,-13.969042700759672],[-171.4391143911439,-14.006191400697105],[-171.449914499145,-14.038274368824872],[-171.44631446314463,-14.041651523364635],[-171.4391143911439,-14.051782986983937],[-171.4679146791468,-14.053471564253812],[-171.53631536315362,-14.045028677904398],[-171.57951579515796,-14.050094409714049],[-171.59751597515975,-14.04840583244416],[-171.6191161911619,-14.038274368824872],[-171.6371163711637,-14.046717255174286],[-171.65151651516516,-14.045028677904398],[-171.6839168391684,-14.038274368824872],[-171.7019170191702,-14.038274368824872],[-171.74151741517414,-14.051782986983937],[-171.75231752317524,-14.051782986983937],[-171.7631176311763,-14.04840583244416],[-171.76671766717666,-14.043340100634524],[-171.77031770317703,-14.03489721428511],[-171.7739177391774,-14.026454327935696],[-171.78471784717848,-14.021388596126044],[-171.80271802718028,-14.018011441586282],[-171.82071820718207,-14.00787997796698],[-171.83871838718386,-14.002814246157328],[-171.85311853118532,-14.001125668887454],[-171.89271892718926,-14.006191400697105],[-171.91071910719108,-14.006191400697105],[-171.9251192511925,-14.001125668887454],[-171.93951939519394,-13.990994205268152],[-171.96111961119612,-13.958911237140384],[-171.9719197191972,-13.94540261898132],[-171.98271982719828,-13.948779773521082],[-171.98991989919898,-13.948779773521082],[-172.0079200792008,-13.925139691742729],[-172.01872018720186,-13.918385382663203],[-172.04032040320402,-13.915008228123426],[-172.0619206192062,-13.906565341774012],[-172.0619206192062,-13.884613837265547],[-172.05472054720548,-13.862662332757068],[-172.04392043920438,-13.84577656005824],[-171.96471964719646,-13.818759323740125],[-171.8819188191882,-13.80525070558106],[-171.83511835118352,-13.806939282850934],[-171.79191791917918,-13.817070746470236],[-171.65151651516516,-13.871105219106482],[-171.60831608316084,-13.876170950916134],[-171.58671586715866,-13.884613837265547],[-171.56871568715687,-13.896433878154724],[-171.5579155791558,-13.915008228123426],[-171.5579155791558,-13.925139691742729],[-171.5651156511565,-13.931894000822254],[-171.56871568715687,-13.938648309901794],[-171.5651156511565,-13.948779773521082]]],[[[121.38061380613806,6.0051378246827625],[121.40221402214024,6.000072092873111],[121.420214202142,5.986563474714046],[121.42741427414273,5.9696777020152325],[121.420214202142,5.9477261975067535],[121.40941409414097,5.942660465697102],[121.39861398613988,5.942660465697102],[121.39141391413915,5.9392833111573395],[121.38781387813879,5.927463270268163],[121.38781387813879,5.910577497569335],[121.38421384213842,5.910577497569335],[121.34821348213484,5.905511765759684],[121.34101341013411,5.903823188489795],[121.33021330213302,5.8953803021403814],[121.30141301413016,5.864985911282503],[121.29421294212943,5.858231602202963],[121.27981279812798,5.858231602202963],[121.27261272612725,5.863297334012614],[121.26181261812621,5.871740220362028],[121.25461254612549,5.885248838521093],[121.25101251012512,5.89706887941027],[121.25461254612549,5.907200343029572],[121.25101251012512,5.915643229378986],[121.22941229412294,5.942660465697102],[121.18981189811899,5.940971888427214],[121.10701107011073,5.903823188489795],[121.08901089010891,5.892003147600619],[121.08181081810818,5.888625993060856],[121.07461074610745,5.888625993060856],[121.06741067410672,5.893691724870507],[121.05301053010533,5.912266074839209],[121.04941049410496,5.915643229378986],[121.00981009810101,5.924086115728386],[120.99900999009992,5.920708961188623],[120.96300963009634,5.89706887941027],[120.94500945009452,5.8869374157909675],[120.93420934209342,5.885248838521093],[120.92340923409233,5.888625993060856],[120.9162091620916,5.893691724870507],[120.9162091620916,5.900446033950033],[120.9162091620916,5.905511765759684],[120.9162091620916,5.910577497569335],[120.90900909009093,5.913954652109098],[120.89820898208984,5.9173318066488605],[120.89100891008911,5.920708961188623],[120.87660876608766,5.942660465697102],[120.87300873008729,5.961234815665819],[120.87660876608766,5.978120588364646],[120.88740887408875,5.998383515603237],[120.90540905409057,6.015269288302065],[120.94140941409415,6.030466483731004],[120.97020970209701,6.050729410969595],[120.9918099180992,6.052417988239483],[121.00261002610029,6.05748372004912],[121.02421024210241,6.087878110907013],[121.03141031410314,6.094632419986539],[121.04221042210423,6.096320997256427],[121.07821078210782,6.094632419986539],[121.09621096210964,6.096320997256427],[121.11421114211146,6.094632419986539],[121.1250112501125,6.091255265446776],[121.14661146611468,6.077746647287725],[121.16101161011613,6.074369492747948],[121.1790117901179,6.06423802912866],[121.20061200612008,6.013580711032176],[121.21861218612185,5.998383515603237],[121.23661236612367,6.003449247412874],[121.25101251012512,6.016957865571939],[121.27261272612725,6.025400751921353],[121.31581315813162,6.006826401952651],[121.33741337413375,6.0051378246827625],[121.38061380613806,6.0051378246827625]]],[[[54.47034470344704,12.543309013668576],[54.49554495544956,12.546686168208339],[54.517145171451716,12.558506209097516],[54.52794527945281,12.556817631827627],[54.53874538745387,12.550063322748102],[54.52794527945281,12.538243281858925],[54.499144991449924,12.529800395509511],[54.47754477544777,12.523046086429986],[54.45594455944561,12.519668931890209],[54.44514445144452,12.511226045540795],[54.44514445144452,12.484208809222679],[54.40194401944021,12.467323036523851],[54.36954369543696,12.458880150174437],[54.32994329943301,12.443682954745498],[54.283142831428336,12.44706010928526],[54.24714247142472,12.433551491126195],[54.23634236342363,12.425108604776781],[54.21834218342184,12.39977994572854],[54.21114211142111,12.393025636649014],[54.182341823418255,12.382894173029712],[54.15354153541537,12.359254091251358],[54.139141391413915,12.350811204901945],[54.11034110341103,12.354188359441707],[54.063540635406355,12.350811204901945],[54.04914049140493,12.352499782171833],[54.031140311403135,12.349122627632056],[54.00954009540095,12.330548277663354],[53.98433984339843,12.33730258674288],[53.969939699397,12.34236831855253],[53.937539375393754,12.333925432203117],[53.89793897938981,12.327171123123591],[53.77553775537757,12.305219618615112],[53.73233732337323,12.300153886805461],[53.671136711367126,12.306908195885],[53.61713617136172,12.32210539131394],[53.57393573935741,12.333925432203117],[53.552335523355254,12.354188359441707],[53.53433534335343,12.374451286680298],[53.519935199352005,12.393025636649014],[53.50553505535055,12.416665718427367],[53.48033480334803,12.425108604776781],[53.43713437134372,12.452125841094912],[53.33273332733327,12.516291777350446],[53.31113311133112,12.538243281858925],[53.30753307533075,12.543309013668576],[53.31473314733148,12.550063322748102],[53.343533435334365,12.543309013668576],[53.36153361533616,12.54499759093845],[53.38313383133831,12.556817631827627],[53.39033390333904,12.560194786367404],[53.39033390333904,12.570326249986692],[53.40113401134013,12.58721202268552],[53.40473404734047,12.597343486304823],[53.39753397533977,12.656443690750706],[53.4119341193412,12.661509422560357],[53.42633426334265,12.66488657710012],[53.469534695346965,12.67164088617966],[53.48033480334803,12.686838081608599],[53.49113491134912,12.702035277037538],[53.49833498334985,12.71216674065684],[53.519935199352005,12.713855317926729],[53.57393573935741,12.703723854307427],[53.60633606336063,12.700346699767664],[53.63153631536315,12.702035277037538],[53.653136531365334,12.705412431577315],[53.69273692736928,12.669952308909771],[53.761137611376114,12.619294990813287],[53.80793807938079,12.60747494992411],[53.847538475384766,12.599032063574697],[53.86553865538656,12.622672145353064],[53.87633876338765,12.648000804401292],[53.905139051390535,12.653066536210943],[53.92313923139233,12.651377958941069],[53.94113941139412,12.642935072591655],[53.97353973539737,12.646312227131418],[54.00954009540095,12.646312227131418],[54.04554045540456,12.666575154370008],[54.05994059940599,12.67164088617966],[54.081540815408175,12.686838081608599],[54.09234092340924,12.698658122497775],[54.12114121141212,12.700346699767664],[54.131941319413215,12.688526658878487],[54.14634146341464,12.678395195259185],[54.1679416794168,12.66488657710012],[54.182341823418255,12.668263731639897],[54.19674196741968,12.675018040719422],[54.20034200342005,12.673329463449534],[54.21114211142111,12.661509422560357],[54.21834218342184,12.653066536210943],[54.23634236342363,12.651377958941069],[54.26154261542615,12.648000804401292],[54.26874268742688,12.632803608972353],[54.283142831428336,12.626049299892827],[54.31914319143192,12.610852104463874],[54.358743587435896,12.60240921811446],[54.40194401944021,12.580457713605995],[54.423544235442364,12.573703404526455],[54.47034470344704,12.543309013668576]]],[[[40.38700387003871,15.641848303903316],[40.40140401404014,15.640159726633442],[40.4050040500405,15.638471149363554],[40.415804158041595,15.597945294886372],[40.40860408604087,15.57937094491767],[40.39420394203944,15.57261663583813],[40.372603726037255,15.582748099457433],[40.365403654036555,15.584436676727307],[40.35820358203583,15.586125253997196],[40.30780307803079,15.574305213108019],[40.28620286202863,15.57261663583813],[40.264602646026475,15.57937094491767],[40.23220232202323,15.596256717616484],[40.20700207002071,15.59963387215626],[40.16020160201603,15.589502408536958],[40.14940149401494,15.591190985806847],[40.14220142201424,15.592879563076721],[40.138601386013875,15.596256717616484],[40.13500135001351,15.603011026696024],[40.12780127801278,15.608076758505675],[40.12780127801278,15.609765335775549],[40.12420124201242,15.613142490315312],[40.113401134011355,15.597945294886372],[40.10260102601026,15.589502408536958],[40.08460084600847,15.58781383126707],[40.05940059400595,15.592879563076721],[40.019800198001974,15.608076758505675],[40.01620016200164,15.608076758505675],[40.00180001800018,15.611453913045438],[39.980199801998026,15.606388181235786],[39.969399693996934,15.618208222124963],[39.962199621996234,15.626651108474377],[39.936999369993714,15.702637085619102],[39.94779947799478,15.702637085619102],[39.954999549995506,15.69925993107934],[39.954999549995506,15.695882776539577],[39.95859958599587,15.695882776539577],[39.95139951399514,15.689128467460037],[39.95859958599587,15.684062735650386],[39.9657996579966,15.67730842657086],[39.9657996579966,15.673931272031098],[39.969399693996934,15.670554117491335],[39.9729997299973,15.660422653872033],[39.980199801998026,15.660422653872033],[39.987399873998754,15.665488385681684],[40.00180001800018,15.660422653872033],[40.01620016200164,15.651979767522619],[40.0270002700027,15.646914035712967],[40.037800378003794,15.648602612982856],[40.081000810008106,15.660422653872033],[40.063000630006314,15.6925056219998],[40.037800378003794,15.71952285831793],[40.00900009000091,15.736408631016758],[39.97659976599766,15.743162940096283],[39.94059940599408,15.736408631016758],[39.929799297992986,15.73978578555652],[39.92259922599226,15.756671558255348],[39.92619926199262,15.776934485493939],[39.93339933399335,15.788754526383116],[39.94779947799478,15.790443103653004],[39.969399693996934,15.77524590822405],[39.97659976599766,15.770180176414414],[39.99099990999912,15.770180176414414],[39.994599945999454,15.778623062763828],[39.980199801998026,15.795508835462655],[39.97659976599766,15.812394608161469],[39.97659976599766,15.815771762701246],[39.994599945999454,15.82421464905066],[40.019800198001974,15.827591803590423],[40.030600306003066,15.825903226320534],[40.03420034200343,15.825903226320534],[40.037800378003794,15.83772326720971],[40.030600306003066,15.854609039908539],[40.019800198001974,15.868117658067604],[40.00900009000091,15.873183389877255],[39.9729997299973,15.871494812607366],[39.962199621996234,15.876560544417018],[39.95139951399514,15.893446317115846],[39.987399873998754,15.891757739845957],[40.0270002700027,15.883314853496543],[40.063000630006314,15.868117658067604],[40.08460084600847,15.854609039908539],[40.0918009180092,15.849543308098902],[40.10260102601026,15.836034689939837],[40.106201062010626,15.829280380860297],[40.0990009900099,15.814083185431357],[40.0918009180092,15.80395172181207],[40.088200882008834,15.792131680922878],[40.095400954009534,15.785377371843353],[40.106201062010626,15.783688794573465],[40.113401134011355,15.787065949113241],[40.12420124201242,15.792131680922878],[40.120601206012054,15.795508835462655],[40.11700117001172,15.80226314454218],[40.11700117001172,15.809017453621706],[40.12420124201242,15.812394608161469],[40.13500135001351,15.805640299081944],[40.138601386013875,15.793820258192767],[40.138601386013875,15.792131680922878],[40.13140131401315,15.711079971968516],[40.13500135001351,15.695882776539577],[40.14220142201424,15.684062735650386],[40.14220142201424,15.680685581110623],[40.16020160201603,15.651979767522619],[40.163801638016395,15.643536881173205],[40.17460174601746,15.643536881173205],[40.23220232202323,15.626651108474377],[40.246602466024655,15.655356922062381],[40.25380253802538,15.660422653872033],[40.26100261002611,15.663799808411795],[40.246602466024655,15.668865540221447],[40.22860228602286,15.673931272031098],[40.2178021780218,15.685751312920274],[40.2250022500225,15.695882776539577],[40.24300243002432,15.702637085619102],[40.26820268202684,15.704325662888976],[40.28620286202863,15.702637085619102],[40.297002970029695,15.69925993107934],[40.30780307803079,15.697571353809451],[40.31140311403115,15.695882776539577],[40.315003150031515,15.694194199269688],[40.322203222032215,15.689128467460037],[40.32580325803258,15.680685581110623],[40.32580325803258,15.67224269476121],[40.32940329403294,15.663799808411795],[40.340203402034035,15.660422653872033],[40.3510035100351,15.658734076602144],[40.372603726037255,15.643536881173205],[40.38700387003871,15.641848303903316]]],[[[42.1870218702187,16.705651983929428],[42.1870218702187,16.692143365770363],[42.183421834218336,16.673569015801647],[42.17622176221764,16.651617511293182],[42.179821798218,16.634731738594354],[42.1870218702187,16.60602592500635],[42.179821798218,16.585762997767745],[42.179821798218,16.58407442049787],[42.15462154621548,16.585762997767745],[42.12942129421296,16.617845965895526],[42.10422104221044,16.62460027497505],[42.082620826208256,16.62628885224494],[42.07182071820719,16.63642031586423],[42.100621006210076,16.64655177948353],[42.11862118621187,16.660060397642596],[42.11142111421114,16.680323324881186],[42.08622086220862,16.69383194304025],[42.0610206102061,16.690454788500475],[42.032220322203216,16.687077633960712],[42.01062010620106,16.68201190215106],[41.99261992619927,16.671880438531772],[41.974619746197476,16.66343755218236],[41.956619566195684,16.670191861261884],[41.931419314193164,16.690454788500475],[41.91701917019171,16.705651983929428],[41.89541895418955,16.710717715739065],[41.86661866618667,16.72929206570778],[41.84501845018451,16.74617783840661],[41.830618306183084,16.76812934291509],[41.823418234182355,16.798523733772967],[41.8090180901809,16.810343774662144],[41.79101791017911,16.810343774662144],[41.77661776617768,16.812032351932032],[41.78021780217804,16.818786661011558],[41.78021780217804,16.840738165520037],[41.76581765817659,16.859312515488753],[41.75501755017552,16.877886865457455],[41.75861758617586,16.89646121542617],[41.773017730177315,16.89308406088641],[41.77661776617768,16.884641174536995],[41.79101791017911,16.87619828818758],[41.82701827018272,16.859312515488753],[41.848618486184876,16.835672433710386],[41.85941859418594,16.820475238281446],[41.8630186301863,16.796835156503093],[41.8630186301863,16.785015115613916],[41.881018810188124,16.7664407656452],[41.899018990189916,16.75124357021626],[41.906219062190644,16.747866415676498],[41.94221942219423,16.75124357021626],[41.95301953019532,16.732669220247544],[41.974619746197476,16.73098064297767],[41.99261992619927,16.737734952057195],[42.01062010620106,16.739423529327084],[42.02142021420215,16.727603488437893],[42.02142021420215,16.715783447548716],[42.03582035820358,16.715783447548716],[42.064620646206464,16.727603488437893],[42.03582035820358,16.734357797517433],[42.02142021420215,16.756309302025898],[42.032220322203216,16.773195074724725],[42.04302043020431,16.801900888312744],[42.04662046620467,16.812032351932032],[42.0610206102061,16.81372092920192],[42.06822068220683,16.812032351932032],[42.075420754207556,16.80865519739227],[42.10422104221044,16.79176942469344],[42.10422104221044,16.774883651994614],[42.11862118621187,16.754620724756023],[42.115021150211504,16.74448926113672],[42.140221402214024,16.741112106596958],[42.14742147421475,16.720849179358368],[42.1870218702187,16.705651983929428]]],[[[41.92061920619207,16.79176942469344],[41.90261902619028,16.80358946558262],[41.88821888218882,16.820475238281446],[41.8630186301863,16.852558206409213],[41.84141841418415,16.879575442727344],[41.83421834218342,16.89139548361652],[41.84501845018451,16.901526947235823],[41.87021870218703,16.903215524505697],[41.88821888218882,16.908281256315348],[41.90261902619028,16.918412719934636],[41.90981909819098,16.935298492633464],[41.92061920619207,16.935298492633464],[41.924219242192436,16.935298492633464],[41.9278192781928,16.95556141987207],[41.92061920619207,16.979201501650422],[41.906219062190644,16.984267233460073],[41.89541895418955,16.9910215425396],[41.881018810188124,16.9910215425396],[41.85941859418594,16.99608727434925],[41.84501845018451,16.997775851619124],[41.84501845018451,17.0011530061589],[41.85221852218524,17.009595892508315],[41.85941859418594,17.012973047048078],[41.8630186301863,17.004530160698664],[41.89541895418955,17.0011530061589],[41.92061920619207,16.992710119809487],[41.938619386193864,16.972447192570897],[41.938619386193864,16.96907003803112],[41.94581945819459,16.942052801713004],[41.94581945819459,16.923478451744288],[41.938619386193864,16.901526947235823],[41.94221942219423,16.882952597267106],[41.974619746197476,16.87619828818758],[41.98541985419854,16.854246783679102],[41.94581945819459,16.852558206409213],[41.931419314193164,16.839049588250163],[41.938619386193864,16.822163815551335],[41.963819638196384,16.81372092920192],[41.97821978219784,16.805278042852507],[41.99621996219963,16.796835156503093],[42.00342003420036,16.773195074724725],[42.00342003420036,16.76137503383555],[41.97101971019711,16.778260806534377],[41.9350193501935,16.78839227015368],[41.92061920619207,16.79176942469344]]],[[[58.90558905589057,20.626528404597053],[58.90918909189094,20.604576900088574],[58.9127891278913,20.587691127389746],[58.94518945189452,20.53534523202339],[58.95238952389525,20.520148036594435],[58.948789487894885,20.508327995705258],[58.94158941589416,20.501573686625733],[58.90198901989021,20.474556450307603],[58.86238862388626,20.452604945799138],[58.84438844388444,20.437407750370184],[58.81918819188192,20.40363620497253],[58.80838808388086,20.379996123194175],[58.797587975879765,20.33102738236758],[58.7867878678787,20.314141609668752],[58.7867878678787,20.30401014604945],[58.7867878678787,20.302321568779576],[58.79038790387904,20.29387868243016],[58.79038790387904,20.287124373350622],[58.7867878678787,20.280370064271096],[58.75078750787509,20.24828709614333],[58.7327873278733,20.22464701436496],[58.72558725587257,20.214515550745674],[58.714787147871476,20.212826973475785],[58.70398703987041,20.21113839620591],[58.689586895868956,20.207761241666134],[58.68598685986862,20.20100693258661],[58.682386823868256,20.19087546896732],[58.67518675186753,20.17905542807813],[58.664386643866436,20.170612541728715],[58.65358653586537,20.170612541728715],[58.646386463864644,20.17905542807813],[58.64278642786428,20.187498314427543],[58.639186391863916,20.217892705285436],[58.63558635586358,20.249975673413203],[58.639186391863916,20.26686144611203],[58.639186391863916,20.26855002338192],[58.63558635586358,20.276992909731334],[58.64278642786428,20.356356041415822],[58.64998649986501,20.368176082305],[58.6607866078661,20.383373277733938],[58.664386643866436,20.38843900954359],[58.682386823868256,20.400259050432766],[58.689586895868956,20.40363620497253],[58.69318693186932,20.405324782242417],[58.69318693186932,20.407013359512305],[58.696786967869684,20.425587709481007],[58.70038700387005,20.43065344129066],[58.71838718387184,20.437407750370184],[58.7327873278733,20.437407750370184],[58.75078750787509,20.440784904909947],[58.76878768787688,20.45091636852925],[58.77598775987761,20.462736409418426],[58.77958779587797,20.467802141228077],[58.78318783187834,20.479622182117254],[58.7867878678787,20.481310759387142],[58.79038790387904,20.520148036594435],[58.7939879398794,20.53872238656315],[58.80478804788049,20.55391958199209],[58.85158851588517,20.613019786437988],[58.86958869588696,20.650168486375406],[58.88398883988842,20.682251454503174],[58.89118891188912,20.69407149539235],[58.90558905589057,20.697448649932127],[58.919989199892,20.682251454503174],[58.919989199892,20.6805628772333],[58.91638916389164,20.66367710453447],[58.90918909189094,20.645102754565755],[58.90558905589057,20.626528404597053]]],[[[56.21276212762129,27.002596175674114],[56.23076230762308,26.99921902113435],[56.2559625596256,26.989087557515063],[56.27396273962739,26.977267516625872],[56.28116281162812,26.97389036208611],[56.28836288362885,26.955316012117407],[56.27036270362706,26.946873125767993],[56.2559625596256,26.93843023941858],[56.1947619476195,26.924921621259514],[56.17316173161731,26.906347271290812],[56.14796147961479,26.862444262273854],[56.13716137161373,26.843869912305152],[56.09756097560975,26.80672121236772],[56.09036090360905,26.79321259420867],[56.07956079560796,26.784769707859255],[56.04356043560438,26.767883935160427],[56.032760327603285,26.759441048811013],[56.02556025560256,26.75437531700136],[55.975159751597516,26.712160885254292],[55.94635946359463,26.696963689825353],[55.924759247592476,26.705406576174767],[55.90315903159032,26.725669503413357],[55.8779587795878,26.742555276112185],[55.80955809558097,26.712160885254292],[55.791557915579176,26.698652267095227],[55.773557735577356,26.68852080347594],[55.7519575195752,26.68852080347594],[55.705157051570524,26.695275112555464],[55.68715687156873,26.690209380745813],[55.665556655566576,26.681766494396413],[55.61155611556117,26.64630637172887],[55.5539555395554,26.62604344449028],[55.521555215552155,26.6040919399818],[55.50355503555036,26.595649053632386],[55.44235442354423,26.58889474455286],[55.395553955539555,26.577074703663683],[55.37755377553776,26.56694324004438],[55.370353703537035,26.56356608550462],[55.36675366753667,26.565254662774507],[55.35955359553597,26.565254662774507],[55.34875348753488,26.56863181731427],[55.337953379533815,26.56863181731427],[55.33435334353345,26.560188930964856],[55.33075330753309,26.553434621885316],[55.319953199531994,26.54836889007568],[55.30915309153093,26.544991735535902],[55.29835298352984,26.543303158266028],[55.294752947529474,26.54668031280579],[55.29115291152911,26.54836889007568],[55.28395283952841,26.560188930964856],[55.28035280352805,26.58382901274321],[55.287552875528775,26.602403362711925],[55.287552875528775,26.614223403601102],[55.28395283952841,26.619289135410753],[55.27315273152732,26.649683526268632],[55.28395283952841,26.659814989887934],[55.33075330753309,26.64461779445898],[55.34155341553415,26.649683526268632],[55.34875348753488,26.647994948998758],[55.35235352353524,26.647994948998758],[55.40635406354065,26.673323608047],[55.539555395553975,26.712160885254292],[55.55755557555577,26.715538039794055],[55.571955719557195,26.71891519433383],[55.57555575555756,26.720603771603706],[55.61875618756187,26.745932430651948],[55.640356403564056,26.761129626080887],[55.705157051570524,26.783081130589366],[55.715957159571616,26.783081130589366],[55.73755737557377,26.783081130589366],[55.748357483574836,26.783081130589366],[55.755557555575564,26.78645828512913],[55.76275762757629,26.79321259420867],[55.773557735577356,26.79658974874843],[55.76995769957699,26.803344057827957],[55.766357663576656,26.810098366907496],[55.780757807578084,26.826984139606324],[55.78435784357845,26.845558489575026],[55.780757807578084,26.889461498591984],[55.773557735577356,26.906347271290812],[55.755557555575564,26.92154446671975],[55.741157411574136,26.93336450760893],[55.73395733957341,26.940118816688454],[55.75915759157593,26.95362743484752],[55.89595895958959,26.906347271290812],[55.93555935559357,26.914790157640212],[56.03996039960401,26.975578939355998],[56.17316173161731,27.002596175674114],[56.21276212762129,27.002596175674114]]],[[[48.35388353883539,29.70938553929608],[48.332283322833234,29.6789911484382],[48.30348303483035,29.645219603040545],[48.267482674826766,29.61651378945254],[48.22788227882279,29.599628016753712],[48.22068220682209,29.601316594023587],[48.18468184681848,29.604693748563363],[48.16308163081632,29.630022407611605],[48.12708127081271,29.702631230216554],[48.0838808388084,29.768485743741977],[48.08028080280803,29.773551475551628],[48.073080730807305,29.780305784631153],[48.05508055080551,29.790437248250456],[48.04428044280445,29.800568711869744],[48.065880658806606,29.812388752758935],[48.07668076680767,29.81745448456857],[48.098280982809825,29.830963102727637],[48.10908109081092,29.832651679997525],[48.11268112681128,29.83940598907705],[48.11988119881201,29.873177534474706],[48.10188101881019,29.879931843554232],[48.09468094680949,29.879931843554232],[48.0838808388084,29.879931843554232],[48.09468094680949,29.895129038983185],[48.10908109081092,29.893440461713297],[48.13428134281344,29.879931843554232],[48.14508145081453,29.878243266284358],[48.15948159481596,29.879931843554232],[48.166681666816686,29.88668615263377],[48.15948159481596,29.90188334806271],[48.17748177481775,29.90863765714225],[48.19548195481957,29.91708054349165],[48.199081990819906,29.925523429841064],[48.181081810818114,29.935654893460367],[48.17028170281705,29.935654893460367],[48.155881558815594,29.930589161650715],[48.148681486814866,29.935654893460367],[48.141481414814166,29.942409202539892],[48.141481414814166,29.952540666159194],[48.1378813788138,29.962672129778497],[48.141481414814166,29.969426438858022],[48.123481234812346,29.969426438858022],[48.11988119881201,29.971115016127897],[48.116281162811646,29.974492170667673],[48.11988119881201,29.9812464797472],[48.13428134281344,29.989689366096613],[48.148681486814866,29.994755097906264],[48.16308163081632,29.99644367517614],[48.17748177481775,29.9913779433665],[48.18828188281884,29.982935057017087],[48.34308343083433,29.790437248250456],[48.36108361083612,29.75497712558291],[48.35388353883539,29.70938553929608]]],[[[-80.75780757807578,52.91888011383378],[-80.72540725407254,52.863157063927645],[-80.71820718207182,52.84795986849869],[-80.67860678606786,52.78041677770341],[-80.66780667806678,52.7415795004961],[-80.70380703807038,52.721316573257496],[-80.70020700207002,52.69936506874902],[-80.71820718207182,52.694299336939366],[-80.74340743407434,52.69936506874902],[-80.7830078300783,52.72300515052737],[-81.02781027810278,52.75339954138528],[-81.15021150211501,52.80236828221186],[-81.28701287012869,52.84458271395894],[-81.47061470614706,52.86146848665777],[-81.65061650616506,52.903682918404826],[-81.7910179101791,52.94252019561213],[-81.95301953019529,52.974603163739914],[-82.01422014220142,53.010063286407444],[-82.0610206102061,53.023571904566495],[-82.05382053820537,53.04045767726532],[-82.01422014220142,53.07085206812323],[-82.0070200702007,53.07591779993288],[-81.98541985419854,53.10631219079076],[-81.94581945819458,53.143460890728164],[-81.8810188101881,53.1806095906656],[-81.85941859418594,53.18567532247525],[-81.78021780217802,53.1806095906656],[-81.75861758617586,53.18229816793547],[-81.66501665016649,53.20762682698373],[-81.61461614616145,53.21438113606325],[-81.49581495814958,53.21269255879338],[-81.42381423814238,53.229578331492206],[-81.17541175411753,53.21269255879338],[-81.12141121411214,53.202561095174076],[-81.00621006210062,53.12488654075946],[-80.98460984609845,53.11475507714016],[-80.97740977409774,53.10968934533051],[-80.96660966609666,53.10124645898111],[-80.94860948609485,53.06916349085333],[-80.93420934209341,53.06072060450393],[-80.88020880208802,53.03201479091592],[-80.77940779407794,52.94927450469166],[-80.76860768607686,52.93407730926273],[-80.75780757807578,52.91888011383378]]],[[[-79.54459544595446,56.044436640386664],[-79.53019530195301,56.06132241308549],[-79.47619476194761,56.10353684483255],[-79.47259472594726,56.120422617531375],[-79.49419494194942,56.13224265842055],[-79.5229952299523,56.13561981296033],[-79.54459544595446,56.133931235690426],[-79.58419584195842,56.11029115391207],[-79.7209972099721,55.97858212686123],[-79.82899828998289,55.89921899517674],[-79.85779857798578,55.87220175885861],[-79.86139861398614,55.862070295239334],[-79.86859868598685,55.843495945270604],[-79.87939879398793,55.83674163619108],[-79.89379893798937,55.835053058921204],[-79.90819908199082,55.8249215953019],[-79.91179911799118,55.843495945270604],[-79.92259922599226,55.85700456342968],[-79.93339933399334,55.86713602704896],[-79.9369993699937,55.87389033612851],[-79.94779947799478,55.889087531557436],[-79.96939969399693,55.897530417906864],[-80.0270002700027,55.90090757244661],[-80.00180001800018,55.93974484965392],[-79.98739987399874,55.95494204508287],[-79.94779947799478,55.968450663241924],[-79.73539735397354,56.160948472008556],[-79.55179551795517,56.26564026274127],[-79.52659526595265,56.294346076329305],[-79.5049950499505,56.33318335353658],[-79.4689946899469,56.4294322579199],[-79.46179461794618,56.48008957601638],[-79.47979479794797,56.52399258503334],[-79.47259472594726,56.525681162303215],[-79.47259472594726,56.52736973957312],[-79.4689946899469,56.52905831684299],[-79.46539465394653,56.530746894112866],[-79.46539465394653,56.53581262592252],[-79.4689946899469,56.547632666811694],[-79.47259472594726,56.552698398621345],[-79.45459454594545,56.55945270770087],[-79.44739447394474,56.55438697589122],[-79.42939429394293,56.51048396687429],[-79.42579425794257,56.503729657794736],[-79.41499414994149,56.49697534871521],[-79.42219422194222,56.48008957601638],[-79.42939429394293,56.463203803317555],[-79.42939429394293,56.4311208351898],[-79.43659436594366,56.414235062490974],[-79.45819458194582,56.38046351709332],[-79.46539465394653,56.370332053474016],[-79.46539465394653,56.36357774439449],[-79.47259472594726,56.356823435314965],[-79.47979479794797,56.34669197169566],[-79.48339483394834,56.33656050807636],[-79.47979479794797,56.31123184902813],[-79.47979479794797,56.30110038540883],[-79.48339483394834,56.28590318997988],[-79.5049950499505,56.245377335502695],[-79.51579515795157,56.23355729461352],[-79.57339573395734,56.18121139924716],[-79.5949959499595,56.169391358357984],[-79.60219602196021,56.160948472008556],[-79.60579605796057,56.147439853849505],[-79.60579605796057,56.133931235690426],[-79.60579605796057,56.128865503880775],[-79.59859598595986,56.128865503880775],[-79.58779587795878,56.133931235690426],[-79.58059580595805,56.13899696750008],[-79.56979569795698,56.15925989473868],[-79.5589955899559,56.16770278108808],[-79.54459544595446,56.177834244707384],[-79.53019530195301,56.18458855378691],[-79.49779497794978,56.19472001740621],[-79.45099450994509,56.20316290375561],[-79.42939429394293,56.209917212835165],[-79.40779407794078,56.22173725372434],[-79.40779407794078,56.23355729461352],[-79.3609936099361,56.34838054896554],[-79.32499324993249,56.39566071252224],[-79.3069930699307,56.43449798972955],[-79.29979299792997,56.48008957601638],[-79.28899288992889,56.586469944019],[-79.28539285392854,56.60673287125758],[-79.28539285392854,56.66076734389384],[-79.25659256592566,56.68103027113244],[-79.20259202592025,56.68440742567219],[-79.16659166591666,56.65907876662396],[-79.13419134191342,56.63375010757571],[-79.13419134191342,56.615175757607005],[-79.15219152191521,56.6050442939877],[-79.17739177391773,56.62193006668653],[-79.18819188191881,56.642192993925136],[-79.22419224192241,56.64894730300466],[-79.24939249392493,56.63206153030583],[-79.25659256592566,56.5949128303684],[-79.24579245792458,56.56282986224065],[-79.2349923499235,56.55100982135147],[-79.19179191791918,56.552698398621345],[-79.15939159391594,56.54425551227192],[-79.13779137791377,56.547632666811694],[-79.13059130591306,56.54425551227192],[-79.11619116191162,56.490221039635685],[-79.09459094590946,56.4581380715079],[-79.05859058590586,56.436186566999424],[-79.01179011790117,56.427743680650025],[-78.95778957789578,56.43449798972955],[-78.93618936189361,56.4294322579199],[-78.92178921789217,56.40748075341142],[-78.92178921789217,56.397349289792146],[-78.9289892898929,56.37708636255354],[-78.9289892898929,56.365266321664365],[-78.92538925389253,56.36020058985471],[-78.91458914589145,56.351757703505314],[-78.90738907389074,56.34500339442576],[-78.93258932589326,56.34500339442576],[-78.93618936189361,56.34500339442576],[-78.94698946989469,56.33149477626671],[-78.95058950589505,56.32305188991731],[-78.94698946989469,56.31798615810766],[-78.88218882188822,56.32642904445706],[-78.8929889298893,56.31123184902813],[-78.90738907389074,56.302788962678704],[-78.92538925389253,56.29772323086905],[-78.94338943389434,56.29096892178953],[-78.95778957789578,56.27746030363048],[-78.97218972189721,56.24706591277257],[-78.97938979389794,56.23355729461352],[-79.06219062190621,56.13899696750008],[-79.09819098190981,56.05119094946619],[-79.19539195391954,55.90428472698639],[-79.20259202592025,55.85869314069956],[-79.2169921699217,55.86375887250921],[-79.2169921699217,55.87220175885861],[-79.21339213392133,55.884021799747785],[-79.20259202592025,55.89246468609721],[-79.20979209792098,55.89246468609721],[-79.20259202592025,55.905973304256264],[-79.18459184591846,55.94818773600335],[-79.15219152191521,55.995467899560055],[-79.1449914499145,56.022485135878185],[-79.11979119791198,56.05456810400594],[-79.11259112591125,56.08665107213372],[-78.99018990189902,56.26226310820152],[-78.97218972189721,56.30447753994858],[-78.96858968589686,56.343314817155886],[-78.99738997389973,56.35344628077519],[-78.9829898298983,56.370332053474016],[-78.97578975789757,56.38384067163307],[-78.97938979389794,56.392283557982495],[-79.00459004590046,56.387217826172844],[-79.00459004590046,56.38552924890297],[-79.00819008190082,56.38046351709332],[-79.00819008190082,56.37708636255354],[-79.01179011790117,56.373709208013764],[-79.02619026190261,56.36864347620414],[-79.03339033390334,56.36695489893424],[-79.04419044190442,56.365266321664365],[-79.04779047790477,56.36020058985471],[-79.0549905499055,56.34838054896554],[-79.10179101791017,56.23355729461352],[-79.10179101791017,56.22173725372434],[-79.09819098190981,56.21667152191469],[-79.08379083790838,56.21667152191469],[-79.07299072990729,56.22004867645444],[-79.06579065790658,56.223425830994216],[-79.05859058590586,56.22849156280387],[-79.05139051390513,56.22849156280387],[-79.06219062190621,56.21667152191469],[-79.06579065790658,56.21160579010504],[-79.07299072990729,56.20822863556526],[-79.06219062190621,56.20316290375561],[-79.05859058590586,56.20147432648574],[-79.07299072990729,56.18121139924716],[-79.11259112591125,56.14068554476998],[-79.11979119791198,56.115356885721724],[-79.12339123391233,56.11029115391207],[-79.1449914499145,56.08665107213372],[-79.14859148591485,56.07483103124454],[-79.22059220592206,55.9515648905431],[-79.28539285392854,55.86544744977908],[-79.28179281792818,55.88739895428756],[-79.19539195391954,56.01066509498901],[-79.1269912699127,56.160948472008556],[-79.1269912699127,56.17952282197726],[-79.13059130591306,56.204851481025514],[-79.14139141391414,56.22680298553399],[-79.15579155791558,56.23693444915327],[-79.17379173791737,56.22849156280387],[-79.18819188191881,56.213294367374914],[-79.24939249392493,56.1457512765796],[-79.35379353793537,55.97858212686123],[-79.36459364593645,55.97013924051183],[-79.38259382593826,55.9616963541624],[-79.4689946899469,55.878956067938134],[-79.50859508595086,55.86544744977908],[-79.55539555395553,55.86882460431886],[-79.60579605796057,55.88739895428756],[-79.62379623796238,55.89921899517674],[-79.63459634596346,55.902596149716516],[-79.64539645396454,55.89584184063696],[-79.73899738997389,55.81141297714285],[-79.7569975699757,55.8046586680633],[-79.7569975699757,55.799592936253674],[-79.76419764197641,55.79452720444402],[-79.7749977499775,55.791150049904246],[-79.78579785797858,55.791150049904246],[-79.76779767797677,55.818167286222376],[-79.6309963099631,55.941433426923794],[-79.54459544595446,56.044436640386664]]],[[[55.71235712357125,80.10328558167535],[56.01836018360186,80.18264871335984],[56.04716047160471,80.19953448605867],[56.007560075600765,80.21304310421772],[55.99315993159934,80.21304310421772],[56.0039600396004,80.22992887691655],[56.007560075600765,80.2349946087262],[55.99315993159934,80.2434374950756],[55.96435964359645,80.25188038142502],[55.95355953559536,80.26201184504433],[55.97875978759788,80.27889761774316],[55.98955989559897,80.29071765863233],[55.99315993159934,80.30253769952151],[55.98955989559897,80.30760343133116],[55.975159751597516,80.31942347222034],[55.97155971559715,80.32280062676008],[55.97875978759788,80.33293209037939],[55.98955989559897,80.33630924491916],[56.129961299613,80.35150644034809],[56.385563855638566,80.33799782218904],[56.64116641166413,80.32448920402999],[56.69156691566917,80.34306355399869],[56.69156691566917,80.35994932669752],[56.71316713167133,80.36839221304692],[57.022770227702296,80.36332648123727],[57.098370983709856,80.34475213126856],[57.130771307713076,80.30591485406126],[57.12717127171271,80.29578339044198],[57.087570875708764,80.2721433086636],[57.0839708397084,80.25863469050455],[57.087570875708764,80.23837176326595],[57.098370983709856,80.22148599056712],[57.10917109171092,80.21304310421772],[57.130771307713076,80.21135452694784],[57.148771487714896,80.20797737240807],[57.15237152371523,80.19953448605867],[57.137971379713804,80.18602586789959],[57.11997119971201,80.17927155882006],[57.055170551705515,80.16745151793089],[57.047970479704816,80.15394289977183],[57.073170731707336,80.137057127073],[57.10917109171092,80.12354850891393],[57.137971379713804,80.11848277710428],[57.11637116371165,80.0965312725958],[57.07677076770767,80.08302265443675],[56.9579695796958,80.06613688173792],[56.619566195661974,80.0695140362777],[56.284762847628485,80.07457976808735],[55.949959499594996,80.0779569226271],[55.75915759157593,80.10497415894523],[55.71235712357125,80.10328558167535]]],[[[57.53037530375303,80.13199139526336],[57.42597425974262,80.1269256634537],[57.39717397173973,80.1353685498031],[57.37917379173791,80.14381143615253],[57.289172891728924,80.16914009520076],[57.27837278372783,80.17758298155019],[57.281972819728196,80.19109159970924],[57.30357303573035,80.20797737240807],[57.28557285572856,80.21979741329724],[57.238772387723884,80.23161745418642],[57.22077220772209,80.24174891780572],[57.24597245972461,80.25188038142502],[57.263972639726404,80.26876615412385],[57.26757267572677,80.28565192682268],[57.238772387723884,80.29578339044198],[57.25317253172531,80.31604631768056],[57.26037260372604,80.32617778129986],[57.25317253172531,80.33293209037939],[57.206372063720636,80.35319501761799],[57.19197191971921,80.36501505850717],[57.274772747727496,80.39203229482527],[57.24237242372425,80.41229522206388],[57.206372063720636,80.42411526295305],[56.947169471694735,80.48152689012906],[57.32157321573217,80.47814973558931],[57.699576995769974,80.47477258104954],[58.077580775807775,80.47139542650976],[58.45198451984521,80.46801827197001],[58.563585635856356,80.45113249927118],[58.67878678786789,80.44606676746153],[58.772387723877245,80.42749241749283],[58.898388983889845,80.42749241749283],[59.19359193591936,80.37852367666622],[59.21159211592118,80.37345794485657],[59.240392403924034,80.35994932669752],[59.265592655926554,80.34306355399869],[59.276392763927646,80.32955493583961],[58.93438934389346,80.33462066764926],[58.59238592385924,80.33799782218904],[58.588785887858876,80.32111204949021],[58.556385563855656,80.31604631768056],[58.42678426784269,80.32280062676008],[58.39078390783908,80.31942347222034],[58.32238322383225,80.30422627679138],[58.19638196381965,80.29071765863233],[58.1567815678157,80.28396334955278],[58.13878138781388,80.2822747722829],[58.12078120781209,80.27889761774316],[58.0919809198092,80.2637004223142],[58.077580775807775,80.26201184504433],[58.0919809198092,80.24850322688525],[58.12438124381245,80.24174891780572],[58.430384303843056,80.24174891780572],[58.45918459184594,80.2349946087262],[58.47358473584737,80.22317456783702],[58.46638466384664,80.20966594967794],[58.42678426784269,80.18602586789959],[58.43398433984342,80.18602586789959],[58.44838448384485,80.17927155882006],[58.405184051840536,80.16576294066101],[58.25038250382505,80.18602586789959],[58.14238142381424,80.18096013608994],[58.084780847808474,80.18264871335984],[58.07398073980741,80.18602586789959],[58.07038070380705,80.18771444516949],[58.06678066780668,80.18940302243936],[58.052380523805255,80.20291164059842],[58.04518045180453,80.20460021786829],[58.04158041580416,80.20628879513819],[57.95517955179554,80.19784590878876],[57.933579335793354,80.19278017697911],[57.9119791197912,80.18433729062971],[57.9047790477905,80.17251724974054],[57.91557915579156,80.16407436339111],[57.95517955179554,80.15394289977183],[57.969579695796966,80.14887716796218],[57.976779767797694,80.1353685498031],[57.983979839798394,80.12523708618383],[57.99117991179912,80.1167941998344],[58.01638016380164,80.11172846802475],[57.969579695796966,80.0982198498657],[57.7139771397714,80.0982198498657],[57.566375663756645,80.12861424072358],[57.53037530375303,80.13199139526336]]],[[[57.3359733597336,81.20592653890876],[57.39717397173973,81.21605800252803],[57.61317613176132,81.22281231160758],[57.67077670776709,81.23125519795698],[57.79677796777969,81.23463235249676],[57.88677886778868,81.24476381611603],[57.958779587795874,81.24476381611603],[58.027180271802735,81.23463235249676],[58.084780847808474,81.21436942525816],[57.850778507785094,81.1907293434798],[57.77157771577717,81.14851491173272],[57.699576995769974,81.13669487084354],[57.389973899739005,81.12318625268449],[56.99396993969941,81.16540068443155],[57.02637026370263,81.17890930259063],[57.06957069570697,81.18397503440028],[57.24237242372425,81.18904076620993],[57.3359733597336,81.20592653890876]]],[[[55.647556475564755,81.2008608070991],[55.61155611556117,81.20254938436898],[55.57555575555756,81.21268084798828],[55.56115561155613,81.22281231160758],[55.56835568355683,81.23294377522686],[55.57915579155792,81.23969808430641],[55.589955899559016,81.24138666157629],[55.58275582755829,81.25320670246546],[55.58635586355865,81.26333816608476],[55.597155971559715,81.27178105243416],[55.60795607956081,81.27515820697394],[55.43155431554317,81.27515820697394],[55.43155431554317,81.28360109332334],[55.46035460354605,81.28866682513299],[55.514355143551455,81.28866682513299],[55.539555395553975,81.29710971148242],[55.521555215552155,81.3072411751017],[55.48555485554857,81.31568406145112],[55.463954639546415,81.32412694780052],[55.58635586355865,81.317372638721],[55.71235712357125,81.33088125688008],[55.705157051570524,81.32412694780052],[55.73395733957341,81.317372638721],[55.76275762757629,81.31568406145112],[55.83475834758349,81.32412694780052],[55.87075870758707,81.32412694780052],[55.88515885158853,81.32243837053065],[55.892358923589256,81.317372638721],[55.899558995589956,81.31230690691135],[55.89595895958959,81.31061832964147],[55.95355953559536,81.30048686602217],[56.0759607596076,81.30217544329204],[56.21636216362165,81.27684678424382],[56.543965439654414,81.25489527973534],[56.601566015660154,81.26164958881486],[56.601566015660154,81.26840389789442],[56.5727657276573,81.27009247516429],[56.47196471964722,81.29035540240287],[56.41436414364145,81.31906121599087],[56.392763927639294,81.32412694780052],[56.417964179641814,81.3376355659596],[56.40716407164072,81.34438987503913],[56.3819638196382,81.34945560684878],[56.37476374763747,81.35452133865843],[56.360363603636046,81.374784265897],[56.34956349563495,81.37984999770666],[56.335163351633526,81.37984999770666],[56.335163351633526,81.38491572951631],[56.727567275672754,81.39673577040548],[56.78156781567816,81.38491572951631],[56.759967599676,81.37984999770666],[56.78876788767889,81.36802995681748],[56.828368283682835,81.36971853408735],[56.896768967689695,81.37984999770666],[57.15237152371523,81.35958707046808],[57.4079740797408,81.34101272049935],[57.42237422374225,81.3359469886897],[57.44757447574477,81.32243837053065],[57.45837458374584,81.317372638721],[57.49797497974981,81.31230690691135],[57.616776167761685,81.33088125688008],[57.68877688776888,81.33088125688008],[57.9047790477905,81.29710971148242],[57.81117811178112,81.27515820697394],[57.42957429574295,81.26333816608476],[57.047970479704816,81.25320670246546],[56.70956709567096,81.20423796163885],[56.61596615966161,81.17890930259063],[56.43236432364324,81.17384357078097],[56.3819638196382,81.1805978798605],[56.38916389163893,81.20423796163885],[56.342363423634254,81.21774657979793],[56.24156241562417,81.2278780434172],[55.823958239582396,81.18566361167015],[55.741157411574136,81.2008608070991],[55.647556475564755,81.2008608070991]]],[[[-160.57060570605705,-81.59825093683163],[-161.02061020610205,-81.58136516413282],[-161.4742147421474,-81.56616796870387],[-161.9242192421924,-81.54928219600504],[-162.37422374223743,-81.53239642330621],[-162.8278282782828,-81.51551065060738],[-163.2778327783278,-81.49862487790855],[-163.7278372783728,-81.48173910520973],[-163.7530375303753,-81.46991906432055],[-163.74943749437494,-81.46823048705068],[-163.67023670236702,-81.46485333251091],[-163.65943659436596,-81.46147617797114],[-163.67023670236702,-81.45472186889161],[-163.94743947439474,-81.41926174622407],[-163.99063990639905,-81.40406455079513],[-163.9690396903969,-81.39393308717584],[-163.94743947439474,-81.37873589174689],[-163.9330393303933,-81.36185011904806],[-163.92223922239222,-81.34327576907936],[-163.85023850238503,-81.31963568730099],[-163.41823418234182,-81.29430702825276],[-162.98262982629825,-81.27066694647439],[-162.5218252182522,-81.3095042236817],[-162.0610206102061,-81.34665292361912],[-161.60021600216,-81.38549020082642],[-161.13581135811359,-81.42432747803372],[-160.6750067500675,-81.46316475524102],[-160.63180631806318,-81.49018199155914],[-160.62820628206282,-81.49693630063868],[-160.67140671406713,-81.50875634152786],[-160.6858068580686,-81.51551065060738],[-160.6462064620646,-81.51719922787727],[-160.44100441004412,-81.55941365962434],[-160.41220412204123,-81.5729222777834],[-160.44460444604445,-81.58980805048222],[-160.4878048780488,-81.59656235956176],[-160.57060570605705,-81.59825093683163]]],[[[-29.61929619296191,-79.91136224421882],[-29.680496804968044,-79.92824801691765],[-29.7020970209702,-79.93162517145741],[-29.781297812978124,-79.92993659418754],[-29.86049860498605,-79.91980513056824],[-29.87849878498784,-79.91305082148871],[-29.889298892988933,-79.90123078059953],[-29.91089910899109,-79.87759069882117],[-29.925299252992517,-79.86914781247175],[-30.008100081000805,-79.85395061704281],[-30.05490054900548,-79.85226203977292],[-30.094500945009457,-79.85563919431269],[-30.16290162901629,-79.87759069882117],[-30.252902529025278,-79.88603358517058],[-30.144901449014498,-79.93162517145741],[-30.033300333003325,-79.94006805780683],[-30.022500225002233,-79.94344521234659],[-30.015300153001533,-79.94851094415624],[-29.993699936999377,-79.9620195623153],[-29.990099900999013,-79.96539671685507],[-30.184501845018445,-80.00423399406237],[-30.368103681036814,-80.01774261222144],[-30.425704257042554,-80.0109883031419],[-30.47250472504726,-79.98903679863342],[-30.324903249032474,-79.98397106682378],[-30.28890288902889,-79.97552818047437],[-30.278102781027798,-79.97552818047437],[-30.310503105031046,-79.96708529412496],[-30.483304833048322,-79.94513378961648],[-30.49770497704978,-79.93837948053695],[-30.501305013050114,-79.92993659418754],[-30.50490504905048,-79.91980513056824],[-30.512105121051206,-79.90967366694895],[-30.5229052290523,-79.9046079351393],[-30.530105301053,-79.90291935786941],[-30.63090630906308,-79.90629651240917],[-30.652506525065235,-79.91642797602847],[-30.645306453064535,-79.91980513056824],[-30.634506345063443,-79.92824801691765],[-30.63090630906308,-79.93837948053695],[-30.645306453064535,-79.951888098696],[-30.659706597065963,-79.95526525323578],[-30.677706777067755,-79.95695383050565],[-30.886508865088643,-79.92487086237789],[-31.214112141121404,-79.91136224421882],[-31.541715417154165,-79.89785362605976],[-31.750517505175054,-79.85901634885246],[-31.851318513185134,-79.85226203977292],[-31.87291872918729,-79.84719630796329],[-31.8549185491855,-79.83875342161387],[-31.836918369183678,-79.83199911253433],[-31.736117361173598,-79.8168019171054],[-31.718117181171806,-79.81004760802585],[-31.808118081180794,-79.80160472167645],[-31.99891998919989,-79.82017907164516],[-32.04572045720457,-79.81849049437527],[-32.08892088920888,-79.81004760802585],[-31.916119161191602,-79.77289890808844],[-31.89811898118981,-79.76445602173902],[-31.88011880118802,-79.75432455811973],[-31.92331923319233,-79.7475702490402],[-31.93771937719376,-79.74419309450043],[-31.952119521195215,-79.7374387854209],[-31.970119701197007,-79.72224158999197],[-31.984519845198434,-79.71717585818232],[-31.99891998919989,-79.71379870364255],[-32.160921609216075,-79.71042154910278],[-31.995319953199527,-79.69691293094372],[-31.966519665196643,-79.69015862186419],[-31.984519845198434,-79.68509289005455],[-32.03852038520384,-79.68171573551477],[-32.078120781207815,-79.66651854008583],[-32.06372063720636,-79.66314138554607],[-32.02412024120241,-79.649632767387],[-31.786517865178638,-79.6310584174183],[-31.64611646116461,-79.63612414922794],[-31.592115921159206,-79.64794419011713],[-31.44451444514445,-79.7087329718329],[-31.188911889118884,-79.76614459900891],[-31.13491134911348,-79.79822756713668],[-31.116911169111688,-79.80498187621622],[-31.095310953109532,-79.81004760802585],[-30.652506525065235,-79.8455077306934],[-30.49050490504905,-79.84213057615364],[-30.357303573035722,-79.85563919431269],[-30.28890288902889,-79.85395061704281],[-30.224102241022393,-79.83706484434398],[-30.5229052290523,-79.79316183532704],[-30.821708217082175,-79.7475702490402],[-30.846908469084696,-79.74081593996067],[-30.872108721087216,-79.7273073218016],[-30.879308793087915,-79.71886443545219],[-30.890108901089008,-79.70197866275336],[-30.897308973089736,-79.69522435367384],[-30.904509045090435,-79.69184719913407],[-30.922509225092256,-79.68847004459431],[-30.929709297092955,-79.68509289005455],[-30.890108901089008,-79.66482996281594],[-30.84330843308433,-79.65300992192677],[-30.796507965079655,-79.649632767387],[-30.753307533075315,-79.6597642310063],[-30.738907389073887,-79.67158427189548],[-30.720907209072095,-79.6986015082136],[-30.70650706507064,-79.71211012637266],[-30.663306633066327,-79.73406163088114],[-30.645306453064535,-79.7391273626908],[-30.278102781027798,-79.77796463989809],[-29.907299072990725,-79.8151133398355],[-29.766897668976696,-79.85226203977292],[-29.612096120961212,-79.90967366694895],[-29.61929619296191,-79.91136224421882]]],[[[-149.72729727297272,-77.13027548072202],[-149.8388983889839,-77.1235211716425],[-149.80649806498064,-77.11001255348343],[-149.79569795697958,-77.10494682167378],[-149.810098100981,-77.10663539894367],[-149.87129871298714,-77.09819251259425],[-150.14850148501483,-77.09481535805449],[-150.42210422104222,-77.08974962624484],[-150.5841058410584,-77.03740373087847],[-150.7821078210782,-77.00700934002059],[-150.80010800108002,-76.99012356732176],[-150.79650796507966,-76.97830352643257],[-150.7821078210782,-76.97154921735304],[-150.64530645306453,-76.94284340376504],[-150.41850418504185,-76.92258047652645],[-150.42930429304292,-76.91244901290715],[-150.44370443704437,-76.90062897201797],[-150.46170461704617,-76.89218608566856],[-150.47610476104762,-76.89049750839868],[-150.45450454504544,-76.88543177658903],[-150.39330393303933,-76.87698889023962],[-150.39330393303933,-76.88205462204927],[-150.39330393303933,-76.90738328109751],[-149.96129961299613,-76.87023458116008],[-149.8388983889839,-76.8786774675095],[-149.77409774097742,-76.89387466293844],[-149.75969759697597,-76.92595763106621],[-149.6948969489695,-76.93608909468551],[-149.4428944289443,-77.02558368998929],[-149.44649446494464,-77.03064942179894],[-149.450094500945,-77.0340265763387],[-149.45729457294573,-77.04246946268812],[-149.450094500945,-77.04922377176766],[-149.4428944289443,-77.0542895035773],[-149.42489424894248,-77.06273238992671],[-149.43569435694357,-77.07117527627612],[-149.44649446494464,-77.07792958535566],[-149.33129331293313,-77.08468389443519],[-149.27369273692736,-77.09650393532436],[-149.22329223292232,-77.11845543983284],[-149.24849248492484,-77.1319640579919],[-149.30969309693097,-77.14040694434132],[-149.72729727297272,-77.13027548072202]]],[[[-130.92070920709207,-74.44374904433865],[-130.92790927909277,-74.4488147761483],[-130.9351093510935,-74.45219193068806],[-130.95310953109532,-74.45894623976758],[-130.95310953109532,-74.47076628065676],[-130.9567095670957,-74.49947209424478],[-130.9567095670957,-74.51298071240383],[-130.96390963909639,-74.51973502148337],[-130.96750967509675,-74.51973502148337],[-130.9711097110971,-74.51973502148337],[-130.9783097830978,-74.52311217602313],[-130.9783097830978,-74.5264893305629],[-130.97470974709748,-74.52986648510266],[-130.9711097110971,-74.53324363964242],[-131.03951039510395,-74.56870376230997],[-131.0791107911079,-74.58221238046903],[-131.0791107911079,-74.5839009577389],[-131.0791107911079,-74.58896668954856],[-131.08271082710826,-74.59572099862808],[-131.089910899109,-74.59909815316786],[-131.09711097110971,-74.60247530770762],[-131.20511205112052,-74.60754103951727],[-131.4679146791468,-74.57208091684973],[-131.72711727117272,-74.5366207941822],[-131.76671766717666,-74.53999794872196],[-131.8171181711817,-74.55181798961114],[-131.8459184591846,-74.55350656688103],[-131.86751867518674,-74.54506368053161],[-131.8711187111871,-74.5366207941822],[-131.8819188191882,-74.52817790783278],[-131.89631896318963,-74.52142359875324],[-131.90711907119072,-74.51804644421348],[-132.02952029520296,-74.50453782605442],[-132.08352083520833,-74.49102920789537],[-132.079920799208,-74.48934063062548],[-132.05832058320584,-74.4775205897363],[-132.02232022320223,-74.47076628065676],[-132.01152011520117,-74.46570054884712],[-132.02952029520296,-74.467389126117],[-132.0511205112051,-74.46232339430736],[-132.10872108721088,-74.43699473525912],[-132.15912159121592,-74.42348611710005],[-132.18072180721808,-74.42348611710005],[-132.0151201512015,-74.38127168535298],[-132.0151201512015,-74.37789453081322],[-132.00432004320044,-74.3711402217337],[-131.98271982719828,-74.3593201808445],[-131.80631806318064,-74.32217148090709],[-131.72351723517235,-74.32386005817698],[-131.68391683916838,-74.32048290363721],[-131.66951669516695,-74.32048290363721],[-131.64071640716406,-74.33230294452639],[-131.63351633516334,-74.33399152179626],[-131.5831158311583,-74.32892578998663],[-131.5651156511565,-74.3306143672565],[-131.5759157591576,-74.33736867633604],[-131.61191611916118,-74.34918871722522],[-131.58671586715866,-74.36438591265416],[-131.55431554315544,-74.37451737627346],[-131.1259112591126,-74.4285518489097],[-130.98550985509854,-74.40997749894099],[-130.96750967509675,-74.41335465348075],[-130.96030960309602,-74.41673180802053],[-130.9567095670957,-74.42010896256029],[-130.9567095670957,-74.42686327163982],[-130.95310953109532,-74.43361758071936],[-130.9459094590946,-74.438683312529],[-130.92070920709207,-74.44374904433865]]],[[[-127.12987129871298,-74.46907770338689],[-127.12987129871298,-74.47583201246641],[-127.13347133471335,-74.48258632154595],[-127.14067140671406,-74.48765205335559],[-127.1910719107191,-74.51129213513396],[-127.22707227072272,-74.52311217602313],[-127.23427234272341,-74.53155506237255],[-127.17307173071731,-74.55350656688103],[-127.18027180271802,-74.56194945323044],[-127.20547205472054,-74.57376949411962],[-127.2018720187202,-74.57376949411962],[-127.2018720187202,-74.57714664865938],[-127.21627216272162,-74.58896668954856],[-127.41427414274142,-74.63624685310528],[-127.50787507875079,-74.64637831672457],[-127.55107551075511,-74.6430011621848],[-127.9038790387904,-74.55350656688103],[-127.90027900279003,-74.54844083507137],[-127.89667896678966,-74.54168652599185],[-127.89667896678966,-74.53493221691231],[-127.90027900279003,-74.52817790783278],[-127.9110791107911,-74.52142359875324],[-127.94347943479434,-74.51466928967372],[-127.95427954279543,-74.50453782605442],[-127.97587975879759,-74.49947209424478],[-127.99027990279902,-74.49440636243513],[-127.99387993879938,-74.49102920789537],[-127.99387993879938,-74.48765205335559],[-128.0190801908019,-74.48258632154595],[-128.08748087480876,-74.48934063062548],[-128.1090810908109,-74.4775205897363],[-128.1018810188102,-74.4775205897363],[-128.0730807308073,-74.467389126117],[-128.06588065880658,-74.46232339430736],[-128.06948069480694,-74.45050335341817],[-128.0838808388084,-74.44037188979888],[-128.09828098280983,-74.43192900344947],[-128.1090810908109,-74.42517469436993],[-128.1090810908109,-74.42179753983017],[-128.1018810188102,-74.4184203852904],[-128.09828098280983,-74.41166607621088],[-128.1090810908109,-74.40491176713134],[-128.1378813788138,-74.40153461259158],[-128.13428134281344,-74.39478030351205],[-128.13428134281344,-74.38802599443251],[-128.14868148681487,-74.36776306719392],[-128.1558815588156,-74.35087729449509],[-128.15948159481593,-74.34412298541557],[-128.1810818108181,-74.32386005817698],[-128.18828188281884,-74.31541717182756],[-128.17388173881739,-74.30528570820826],[-128.1378813788138,-74.30359713093839],[-127.75627756277562,-74.34243440814568],[-127.50427504275044,-74.40491176713134],[-127.43587435874358,-74.41166607621088],[-127.36747367473674,-74.40322318986146],[-127.33867338673386,-74.40491176713134],[-127.23427234272341,-74.42348611710005],[-127.22347223472235,-74.42686327163982],[-127.21627216272162,-74.43192900344947],[-127.20547205472054,-74.44543762160853],[-127.2018720187202,-74.45050335341817],[-127.18387183871837,-74.45388050795795],[-127.15147151471515,-74.45219193068806],[-127.1370713707137,-74.45894623976758],[-127.13347133471335,-74.46063481703747],[-127.12987129871298,-74.46401197157724],[-127.12987129871298,-74.467389126117],[-127.12987129871298,-74.46907770338689]]],[[[-116.1389613896139,-73.9017157407063],[-116.19656196561965,-73.93886444064373],[-116.33336333363334,-73.97432456331126],[-116.49176491764916,-74.03342476775715],[-116.61776617766176,-74.05537627226562],[-116.65016650166501,-74.06550773588492],[-116.50256502565026,-74.08239350858375],[-116.48456484564846,-74.08070493131386],[-116.52056520565205,-74.1060335903621],[-116.59976599765997,-74.14149371302965],[-116.78336783367834,-74.17357668115741],[-117.19737197371973,-74.20059391747554],[-117.2981729817298,-74.18370814477672],[-117.33057330573305,-74.17357668115741],[-117.37377373773737,-74.15837948572847],[-117.39897398973989,-74.13305082668023],[-117.39177391773917,-74.09590212674281],[-117.37017370173702,-74.07901635404399],[-116.88776887768879,-73.97432456331126],[-116.40176401764018,-73.86794419530864],[-116.31536315363154,-73.86456704076888],[-116.1389613896139,-73.9017157407063]]],[[[-2.716227162271622,-70.82006222317037],[-2.6118261182611775,-70.84032515040897],[-2.2986229862298444,-70.79304498685225],[-2.125821258212568,-70.80993075955108],[-2.079020790207892,-70.82512795498002],[-2.089820898208984,-70.83019368678967],[-2.133021330213296,-70.86734238672709],[-2.147421474214724,-70.87409669580663],[-2.197821978219764,-70.88760531396568],[-2.2158221582215845,-70.8960482003151],[-2.2338223382233764,-70.9061796639344],[-2.2518225182251683,-70.91968828209346],[-2.2662226622266246,-70.9348854775224],[-2.2914229142291447,-70.96865702292006],[-2.2986229862298444,-70.98891995015865],[-2.2914229142291447,-71.00580572285747],[-2.3022230222302085,-71.01593718647676],[-2.5650256502565014,-71.13244901809867],[-2.734227342273414,-71.17128629530598],[-2.7990279902799102,-71.16790914076621],[-2.817028170281702,-71.15608909987704],[-2.8206282062820662,-71.12738328628903],[-2.8422284222842222,-71.11218609086008],[-2.838628386283858,-71.09361174089138],[-2.8422284222842222,-71.08010312273231],[-2.8494284942849504,-71.06659450457325],[-2.8638286382863782,-71.05308588641418],[-2.8422284222842222,-71.05477446368407],[-2.817028170281702,-71.04464300006478],[-2.777427774277726,-71.01931434101652],[-2.7522275222752057,-71.01087145466713],[-2.691026910269102,-70.99567425923817],[-2.6658266582665817,-70.9939856819683],[-2.9862298622986145,-70.93657405479229],[-2.9646296462964585,-70.93319690025251],[-2.9466294662946666,-70.91968828209346],[-2.9430294302943025,-70.89942535485486],[-2.9502295022950307,-70.87916242761627],[-2.9646296462964585,-70.8656538094572],[-2.9862298622986145,-70.85552234583791],[-3.0114301143011346,-70.85045661402826],[-3.187831878318775,-70.82512795498002],[-3.439834398343976,-70.75251913237507],[-3.583835838358368,-70.739010514216],[-3.5694356943569403,-70.69341892792917],[-3.5262352623526283,-70.68159888704],[-3.4110341103410917,-70.69173035065928],[-3.180631806318047,-70.66809026888093],[-2.8998289982899905,-70.68328746430987],[-2.6190261902619056,-70.69848465973882],[-2.5578255782557733,-70.710304700628],[-2.503825038250369,-70.73225620513648],[-2.5686256862568655,-70.75758486418471],[-2.734227342273414,-70.79304498685225],[-2.716227162271622,-70.82006222317037]]],[[[26.764467644676444,-70.22399444690178],[26.818468184681848,-70.27634034226814],[26.865268652686524,-70.30504615585615],[26.87966879668798,-70.31855477401521],[26.883268832688344,-70.33206339217428],[26.876068760687616,-70.34726058760322],[26.850868508685096,-70.39622932842981],[26.840068400684004,-70.41142652385876],[26.818468184681848,-70.42324656474794],[26.775267752677536,-70.43000087382747],[26.739267392673923,-70.42831229655759],[26.663666636666363,-70.41311510112864],[26.624066240662415,-70.41142652385876],[26.566465664656647,-70.41986941020818],[26.508865088650907,-70.44519806925642],[26.458464584645867,-70.45026380106606],[26.05886058860588,-70.39116359662017],[25.986859868598685,-70.3675235148418],[25.97605976059762,-70.34726058760322],[25.9508595085951,-70.33206339217428],[25.93285932859328,-70.31686619674534],[25.918459184591853,-70.29998042404651],[25.911259112591125,-70.28478322861756],[25.94005940059401,-70.26283172410908],[25.936459364593645,-70.24763452868014],[25.94005940059401,-70.23412591052107],[25.947259472594737,-70.2223058696319],[25.961659616596165,-70.21048582874272],[25.986859868598685,-70.19528863331378],[26.11646116461165,-70.15307420156671],[26.138061380613806,-70.14294273794741],[26.188461884618846,-70.10917119254975],[26.220862208622094,-70.09397399712081],[26.26766267662677,-70.07877680169187],[26.328863288632903,-70.0669567608027],[26.458464584645867,-70.06020245172316],[26.588065880658803,-70.0753996471521],[26.649266492664935,-70.09228541985092],[26.674466744667455,-70.10241688347023],[26.692466924669247,-70.1142369243594],[26.706867068670704,-70.12943411978836],[26.739267392673923,-70.18684574696437],[26.764467644676444,-70.22399444690178]]],[[[16.245162451624537,-69.70560122504779],[16.551165511655114,-69.71742126593698],[16.637566375663766,-69.74274992498522],[16.59076590765909,-69.77652147038286],[16.33156331563316,-69.82886736574923],[16.309963099631005,-69.83899882936852],[16.28836288362885,-69.84913029298782],[16.27036270362703,-69.86263891114689],[16.259562595625965,-69.87614752930594],[16.248762487624873,-69.89809903381442],[16.248762487624873,-69.91498480651325],[16.252362523625237,-69.93524773375184],[16.252362523625237,-69.96395354733984],[16.23796237962381,-69.98759362911821],[16.191161911619133,-70.0551367199135],[16.173161731617313,-70.07371106988222],[16.122761227612273,-70.07371106988222],[15.895958959589592,-69.98928220638808],[15.687156871568732,-69.96395354733984],[15.589955899559016,-69.93187057921207],[15.553955539555403,-69.87277037476618],[15.586355863558651,-69.83731025209865],[15.629556295562963,-69.80522728397088],[15.679956799568004,-69.77989862492264],[15.723157231572316,-69.76470142949368],[15.971559715597152,-69.71742126593698],[16.245162451624537,-69.70560122504779]]],[[[100.56520565205653,-65.40310634138667],[100.73080730807311,-65.38115483687821],[100.93600936009364,-65.37946625960832],[101.1268112681127,-65.41154922773609],[101.25281252812528,-65.49428951396034],[101.260012600126,-65.53988110024717],[101.23121231212315,-65.57365264564483],[101.02601026010262,-65.66483581821849],[100.96840968409686,-65.68341016818721],[100.5580055800558,-65.7036730954258],[100.5148051480515,-65.69691878634626],[100.54000540005399,-65.68678732272697],[100.53640536405368,-65.68341016818721],[100.52560525605259,-65.67834443637756],[100.5040050400504,-65.6732787045679],[100.36720367203674,-65.67834443637756],[100.33120331203315,-65.6732787045679],[100.29880298802988,-65.65808150913897],[100.27720277202775,-65.63275285009072],[100.27000270002702,-65.59391557288342],[100.30240302403024,-65.53650394570741],[100.38520385203856,-65.4790923185314],[100.48240482404827,-65.43181215497468],[100.56520565205653,-65.40310634138667]]],[[[168.19908199081993,-47.04827141776175],[168.2458824588246,-47.06853434500034],[168.2566825668257,-47.07866580861963],[168.26028260282607,-47.085420117699165],[168.25308253082534,-47.08879727223893],[168.24228242282425,-47.08879727223893],[168.23508235082352,-47.08879727223893],[168.2278822788228,-47.085420117699165],[168.22068220682206,-47.0719114995401],[168.21348213482133,-47.06853434500034],[168.1918819188192,-47.066845767730456],[168.18468184681848,-47.07360007680998],[168.1918819188192,-47.09892873585822],[168.1810818108181,-47.103994467667874],[168.14508145081453,-47.09386300404858],[168.159481594816,-47.10906019947752],[168.0838808388084,-47.10906019947752],[168.02268022680227,-47.11581450855705],[167.99747997479977,-47.124257394906465],[167.93267932679328,-47.16478324938365],[167.91467914679146,-47.181669022082474],[167.90027900279006,-47.18842333116201],[167.8858788587886,-47.18842333116201],[167.86787867878678,-47.18335759935236],[167.85347853478538,-47.17491471300295],[167.83907839078392,-47.168160403923416],[167.80307803078034,-47.17322613573306],[167.78867788677888,-47.17153755846318],[167.7778777787778,-47.159717517574],[167.77427774277743,-47.144520322145056],[167.76347763477634,-47.13776601306553],[167.74547745477457,-47.15127463122459],[167.72747727477275,-47.15296320849447],[167.72027720277202,-47.15634036303424],[167.72027720277202,-47.16140609484388],[167.7130771307713,-47.185046176622244],[167.6986769867699,-47.17660329027283],[167.6446764467645,-47.205309103860834],[167.61587615876158,-47.21206341294037],[167.6338763387634,-47.225572031099425],[167.66627666276662,-47.22219487655966],[167.72747727477275,-47.205309103860834],[167.7130771307713,-47.223883453829544],[167.70227702277026,-47.23739207198861],[167.67347673476735,-47.26103215376696],[167.67347673476735,-47.23570349471872],[167.6590765907659,-47.23570349471872],[167.64107641076413,-47.249212112877785],[167.62667626676267,-47.26440930830673],[167.60867608676085,-47.27116361738626],[167.57627576275763,-47.27622934919591],[167.54027540275405,-47.27791792646579],[167.52227522275223,-47.272852194656146],[167.5150751507515,-47.25427784468744],[167.52227522275223,-47.228949185639195],[167.53307533075332,-47.20362052659095],[167.5438754387544,-47.18842333116201],[167.5546755467555,-47.181669022082474],[167.57627576275763,-47.17998044481259],[167.59427594275945,-47.168160403923416],[167.63027630276304,-47.15634036303424],[167.61227612276122,-47.147897476684825],[167.61227612276122,-47.13945459033541],[167.61947619476194,-47.129323126716116],[167.6230762307623,-47.11581450855705],[167.6230762307623,-47.100617313128105],[167.61947619476194,-47.09048584950881],[167.61947619476194,-47.07866580861963],[167.62667626676267,-47.06515719046057],[167.63747637476376,-47.05502572684127],[167.64827648276486,-47.04827141776175],[167.67347673476735,-47.03645137687256],[167.6878768787688,-47.0330742223328],[167.70227702277026,-47.03476279960268],[167.7130771307713,-47.03982853141233],[167.72747727477275,-47.041517108682214],[167.74547745477457,-47.02800849052315],[167.73827738277384,-47.002679831474914],[167.73107731077312,-46.97735117242667],[167.73827738277384,-46.95539966791819],[167.74907749077494,-46.95033393610855],[167.7778777787778,-46.95033393610855],[167.79227792277925,-46.941891049759136],[167.810278102781,-46.921628122520545],[167.81387813878138,-46.91149665890124],[167.81747817478174,-46.897988040742185],[167.810278102781,-46.874347958963824],[167.79947799477998,-46.85408503172523],[167.76347763477634,-46.8186249090577],[167.75987759877597,-46.80680486816852],[167.76347763477634,-46.798361981819106],[167.77067770677706,-46.79160767273957],[167.77427774277743,-46.78316478639016],[167.77427774277743,-46.778099054580515],[167.77067770677706,-46.773033322770864],[167.77067770677706,-46.76796759096121],[167.76347763477634,-46.76290185915157],[167.75987759877597,-46.756147550072036],[167.76347763477634,-46.75108181826239],[167.7670776707767,-46.74601608645274],[167.7670776707767,-46.73926177737321],[167.77427774277743,-46.712244541055085],[167.78867788677888,-46.697047345626146],[167.810278102781,-46.691981613816495],[167.83907839078392,-46.691981613816495],[167.86787867878678,-46.69873592289603],[167.88227882278824,-46.70042450016591],[167.8966789667897,-46.69535876835626],[167.90747907479079,-46.68522730473696],[167.92187921879218,-46.68353872746708],[167.96867968679686,-46.70042450016591],[167.98667986679868,-46.710555963785204],[168.0046800468005,-46.72406458194427],[168.0946809468095,-46.811870599978164],[168.10908109081095,-46.82200206359746],[168.12348123481235,-46.82875637267699],[168.1378813788138,-46.83888783629629],[168.14508145081453,-46.85239645445535],[168.15588155881562,-46.855773608995115],[168.17748177481775,-46.86421649534453],[168.1918819188192,-46.877725113503594],[168.17028170281702,-46.88954515439277],[168.1918819188192,-46.897988040742185],[168.1918819188192,-46.90305377255183],[168.16668166681666,-46.90980808163136],[168.07668076680767,-46.90305377255183],[168.0838808388084,-46.88954515439277],[168.02628026280263,-46.88785657712289],[168.00828008280087,-46.89461088620242],[168.0190801908019,-46.91487381344101],[168.01548015480154,-46.92500527706031],[167.9650796507965,-46.97228544061702],[167.99027990279905,-46.97059686334714],[168.02628026280263,-46.940202472489254],[168.0478804788048,-46.93175958613984],[168.0586805868059,-46.9351367406796],[168.08748087480876,-46.94864535883867],[168.11268112681125,-46.95371109064831],[168.15228152281526,-46.96553113153749],[168.1486814868149,-46.97228544061702],[168.14508145081453,-46.97735117242667],[168.1378813788138,-46.98241690423632],[168.13068130681307,-46.98579405877609],[168.13068130681307,-46.99254836785561],[168.14148141481417,-46.99254836785561],[168.19548195481957,-46.979039749696554],[168.20988209882103,-46.979039749696554],[168.22428224282243,-46.9739740178869],[168.23148231482315,-46.97228544061702],[168.23508235082352,-46.97566259515679],[168.23508235082352,-46.9841054815062],[168.2458824588246,-46.99085979058573],[168.25308253082534,-46.99592552239538],[168.26028260282607,-46.999302676935145],[168.2566825668257,-47.00943414055444],[168.24948249482497,-47.03476279960268],[168.2458824588246,-47.041517108682214],[168.23508235082352,-47.04489426322198],[168.22428224282243,-47.04489426322198],[168.21348213482133,-47.041517108682214],[168.19908199081993,-47.041517108682214],[168.19908199081993,-47.04827141776175]]],[[[81.87741877418773,7.0925815864872135],[81.87741877418773,7.0756958137884],[81.88821888218882,7.040235691120856],[81.89181891818919,7.019972763882265],[81.88461884618846,6.979446909405084],[81.83781837818378,6.820720646036108],[81.83421834218342,6.8055234506071685],[81.83421834218342,6.783571946098689],[81.83061830618306,6.764997596129973],[81.81621816218166,6.737980359811857],[81.81261812618129,6.724471741652792],[81.80901809018093,6.707585968953964],[81.78741787417874,6.677191578096071],[81.78021780217802,6.66368295993702],[81.78741787417874,6.640042878158653],[81.77661776617765,6.609648487300774],[81.6830168301683,6.4627422648209745],[81.65061650616508,6.430659296693207],[81.59301593015931,6.390133442216012],[81.57141571415713,6.383379133136486],[81.54621546215463,6.369870514977421],[81.3626136261363,6.22465286976751],[81.32661326613265,6.206078519798808],[81.20421204212045,6.16217551078185],[81.20421204212045,6.177372706210804],[81.19701197011972,6.184127015290329],[81.19341193411935,6.182438438020441],[81.18621186211863,6.180749860750566],[81.18261182611826,6.173995551671027],[81.18261182611826,6.157109778972199],[81.17541175411753,6.1503554698926735],[81.1682116821168,6.148666892622785],[81.15741157411577,6.143601160813148],[81.13581135811359,6.130092542654083],[81.11421114211146,6.1199610790347805],[81.00981009810101,6.098009574526316],[80.95940959409597,6.081123801827488],[80.9018090180902,6.070992338208185],[80.87660876608766,6.060860874588897],[80.86220862208626,6.040597947350292],[80.83700837008371,6.045663679159944],[80.81900819008189,6.038909370080418],[80.80820808208085,6.035532215540655],[80.77220772207721,6.006826401952651],[80.73260732607326,5.978120588364646],[80.71460714607144,5.957857661126042],[80.6750067500675,5.95954623839593],[80.65700657006573,5.957857661126042],[80.64260642606428,5.952791929316405],[80.62820628206282,5.944349042966991],[80.60660606606069,5.927463270268163],[80.59940599405996,5.925774692998274],[80.59220592205924,5.924086115728386],[80.57420574205742,5.930840424807926],[80.55620556205565,5.9392833111573395],[80.54540545405456,5.942660465697102],[80.53820538205383,5.944349042966991],[80.48060480604806,5.937594733887451],[80.46620466204661,5.940971888427214],[80.45540455404557,5.949414774776628],[80.45180451804521,5.95954623839593],[80.44820448204484,5.966300547475456],[80.44460444604448,5.971366279285107],[80.42660426604266,5.961234815665819],[80.4122041220412,5.95954623839593],[80.38340383403835,5.964611970205581],[80.37980379803798,5.964611970205581],[80.37260372603726,5.966300547475456],[80.36900369003689,5.971366279285107],[80.36540365403653,5.976432011094758],[80.35820358203586,5.978120588364646],[80.35460354603549,5.976432011094758],[80.35100351003513,5.973054856554995],[80.34740347403476,5.971366279285107],[80.34020340203404,5.971366279285107],[80.34020340203404,5.973054856554995],[80.33660336603367,5.973054856554995],[80.3330033300333,5.983186320174283],[80.32940329403294,5.984874897444172],[80.32580325803258,5.984874897444172],[80.31860318603185,5.988252051983935],[80.2790027900279,6.003449247412874],[80.26100261002608,6.006826401952651],[80.24660246602468,6.008514979222525],[80.2250022500225,6.0270893291912415],[80.22140221402213,6.028777906461116],[80.21060210602104,6.033843638270767],[80.20340203402037,6.025400751921353],[80.18540185401855,6.040597947350292],[80.10260102601029,6.12671538811432],[80.09540095400956,6.131781119923971],[80.09540095400956,6.133469697193846],[80.09540095400956,6.136846851733608],[80.0918009180092,6.140224006273385],[80.0918009180092,6.148666892622785],[80.0918009180092,6.153732624432436],[80.08820088200883,6.157109778972199],[80.07740077400774,6.16892981986139],[80.03060030600307,6.26686730151458],[80.03060030600307,6.275310187863994],[80.03060030600307,6.283753074213408],[80.03060030600307,6.292195960562822],[80.03060030600307,6.297261692372473],[80.01980019800197,6.314147465071301],[80.01260012600125,6.361427628628007],[79.99459994599948,6.393510596755789],[79.98379983799839,6.440790760312495],[79.97659976599766,6.457676533011323],[79.97659976599766,6.459365110281212],[79.9729997299973,6.4627422648209745],[79.96579965799657,6.466119419360737],[79.96579965799657,6.471185151170388],[79.96579965799657,6.477939460249914],[79.96939969399693,6.479628037519802],[79.97659976599766,6.477939460249914],[79.96939969399693,6.53197393288616],[79.96939969399693,6.535351087425923],[79.9477994779948,6.589385560062183],[79.86139861398613,6.807212027877043],[79.85059850598509,6.883198005021768],[79.84699846998473,6.8899523141012935],[79.84699846998473,6.962561136706256],[79.85059850598509,6.96424971397613],[79.85779857798576,6.987889795754498],[79.86139861398613,6.9997098366436745],[79.86139861398613,7.011529877532851],[79.81459814598145,7.1803876045211155],[79.82179821798218,7.205716263569357],[79.81819818198181,7.190519068140418],[79.82539825398254,7.1803876045211155],[79.8289982899829,7.17363329544159],[79.83259832598327,7.165190409092176],[79.84339843398436,7.13141886369452],[79.84699846998473,7.1229759773451065],[79.85419854198545,7.1229759773451065],[79.85419854198545,7.133107440964409],[79.85779857798576,7.136484595504172],[79.86139861398613,7.136484595504172],[79.86139861398613,7.1668789863620646],[79.85779857798576,7.1803876045211155],[79.85419854198545,7.192207645410306],[79.85059850598509,7.195584799950069],[79.83619836198363,7.197273377219943],[79.8289982899829,7.2023391090295945],[79.8289982899829,7.204027686299483],[79.82539825398254,7.210781995379008],[79.8289982899829,7.217536304458534],[79.83259832598327,7.225979190807948],[79.83259832598327,7.2327334998874875],[79.7857978579786,7.589023303832732],[79.77859778597787,7.6025319219917975],[79.78219782197823,7.607597653801449],[79.7857978579786,7.607597653801449],[79.79299792997932,7.6025319219917975],[79.79299792997932,7.619417694690625],[79.80019800198005,7.639680621929216],[79.80019800198005,7.649812085548504],[79.80379803798041,7.6599435491678065],[79.79659796597969,7.675140744596746],[79.78939789397896,7.688649362755811],[79.7857978579786,7.697092249105225],[79.7857978579786,7.707223712724527],[79.7857978579786,7.742683835392057],[79.76419764197641,7.855818512474201],[79.76059760597605,7.867638553363378],[79.74979749797501,7.8929672124116195],[79.73899738997392,7.945313107777977],[79.7209972099721,7.985838962255173],[79.6957969579696,8.098973639337302],[79.6957969579696,8.131056607465084],[79.69939699396997,8.127679452925321],[79.70299702997033,8.127679452925321],[79.70299702997033,8.124302298385544],[79.70659706597064,8.14287664835426],[79.70299702997033,8.201976852800158],[79.6957969579696,8.218862625498986],[79.71379713797137,8.228994089118274],[79.72819728197283,8.249257016356864],[79.73899738997392,8.272897098135232],[79.74619746197465,8.291471448103934],[79.74979749797501,8.30329148899311],[79.77859778597787,8.350571652549831],[79.77859778597787,8.348883075279943],[79.76419764197641,8.315111529882287],[79.74619746197465,8.281339984484646],[79.74979749797501,8.272897098135232],[79.74979749797501,8.271208520865343],[79.75699756997568,8.264454211785818],[79.76779767797677,8.259388479976167],[79.77859778597787,8.259388479976167],[79.76779767797677,8.232371243658037],[79.76059760597605,8.212108316419446],[79.75339753397537,8.208731161879683],[79.74979749797501,8.208731161879683],[79.74619746197465,8.20535400733992],[79.74619746197465,8.195222543720618],[79.74619746197465,8.171582461942265],[79.74619746197465,8.16482815286274],[79.72819728197283,8.110793680226493],[79.72819728197283,8.10066221660719],[79.72819728197283,8.0803992893686],[79.74619746197465,8.06013636213001],[79.75339753397537,8.055070630320358],[79.73179731797319,8.012856198573289],[79.76419764197641,7.99090469406481],[79.81099810998109,7.985838962255173],[79.83259832598327,8.002724734954],[79.8289982899829,8.021299084922703],[79.82179821798218,8.034807703081768],[79.81819818198181,8.039873434891419],[79.81459814598145,8.044939166701056],[79.80739807398072,8.055070630320358],[79.79659796597969,8.061824939399884],[79.79299792997932,8.073644980289075],[79.82539825398254,8.136122339274735],[79.82539825398254,8.147942380163911],[79.82179821798218,8.156385266513325],[79.81819818198181,8.16313957559285],[79.81459814598145,8.171582461942265],[79.81099810998109,8.183402502831441],[79.81459814598145,8.203665430070032],[79.81459814598145,8.212108316419446],[79.81459814598145,8.213796893689334],[79.81099810998109,8.222239780038748],[79.80739807398072,8.223928357308623],[79.80739807398072,8.225616934578511],[79.80379803798041,8.228994089118274],[79.80739807398072,8.24081413000745],[79.81099810998109,8.249257016356864],[79.82539825398254,8.266142789055692],[79.82539825398254,8.277962829944869],[79.8289982899829,8.298225757183474],[79.839798397984,8.340440188930529],[79.84699846998473,8.438377670583733],[79.85419854198545,8.448509134203022],[79.86139861398613,8.455263443282561],[79.86499864998649,8.462017752362087],[79.86859868598685,8.475526370521152],[79.86859868598685,8.517740802268222],[79.87219872198722,8.538003729506812],[79.88659886598867,8.551512347665877],[79.9045990459905,8.561643811285165],[79.91539915399153,8.57515242944423],[79.9189991899919,8.580218161253882],[79.92979929799299,8.612301129381649],[79.92979929799299,8.613989706651537],[79.93339933399335,8.622432593000951],[79.94059940599408,8.642695520239542],[79.95139951399517,8.740633001892732],[79.92619926199262,8.801421783608518],[79.92979929799299,8.813241824497695],[79.92979929799299,8.884162069832769],[79.92619926199262,8.907802151611122],[79.92619926199262,8.919622192500299],[79.9189991899919,8.928065078849713],[79.91539915399153,8.938196542469015],[79.92619926199262,8.943262274278652],[79.93699936999371,8.946639428818429],[79.9477994779948,8.948328006088303],[80.00540005400057,9.000673901454675],[80.03420034200343,9.015871096883615],[80.04860048600489,9.026002560502917],[80.05580055800561,9.051331219551145],[80.06660066600665,9.074971301329512],[80.07380073800738,9.110431423997042],[80.10620106201065,9.193171710221293],[80.10620106201065,9.198237442030944],[80.10980109801096,9.21005748292012],[80.11700117001169,9.233697564698488],[80.11700117001169,9.291109191874497],[80.11700117001169,9.301240655493785],[80.11700117001169,9.306306387303437],[80.10620106201065,9.307994964573325],[80.07740077400774,9.323192160002264],[80.06660066600665,9.333323623621567],[80.05940059400592,9.351897973590269],[80.05940059400592,9.355275128130032],[80.05220052200525,9.3789152099084],[80.05220052200525,9.390735250797576],[80.06660066600665,9.404243868956641],[80.08820088200883,9.41437533257593],[80.11340113401133,9.422818218925343],[80.13140131401315,9.426195373465106],[80.14220142201424,9.429572528004869],[80.16380163801637,9.459966918862762],[80.16380163801637,9.46165549613265],[80.16740167401673,9.463344073402524],[80.17820178201782,9.468409805212175],[80.18540185401855,9.471786959751938],[80.19620196201964,9.473475537021827],[80.18900189001891,9.490361309720655],[80.18180181801819,9.498804196070068],[80.17460174601746,9.505558505149594],[80.160201602016,9.520755700578547],[80.14220142201424,9.534264318737598],[80.06660066600665,9.578167327754556],[80.05220052200525,9.596741677723259],[80.08460084600847,9.595053100453384],[80.11700117001169,9.583233059564208],[80.17460174601746,9.547772936896664],[80.23220232202323,9.534264318737598],[80.25020250202505,9.52413285511831],[80.27180271802717,9.50386992787972],[80.2790027900279,9.493738464260417],[80.26460264602645,9.486984155180892],[80.26820268202681,9.480229846101352],[80.27180271802717,9.473475537021827],[80.26460264602645,9.466721227942301],[80.28620286202863,9.453212609783236],[80.33660336603367,9.465032650672413],[80.42660426604266,9.500492773339943],[80.45180451804521,9.49711561880018],[80.50580505805061,9.483607000641115],[80.56700567005669,9.45490118705311],[80.61380613806136,9.446458300703696],[80.54540545405456,9.492049886990529],[80.52380523805238,9.50386992787972],[80.50220502205025,9.507247082419482],[80.49860498604988,9.508935659689357],[80.49500495004952,9.510624236959245],[80.4770047700477,9.52413285511831],[80.46980469804697,9.527510009658073],[80.46620466204661,9.529198586927961],[80.45540455404557,9.529198586927961],[80.44460444604448,9.527510009658073],[80.43740437404375,9.525821432388184],[80.43380433804339,9.52413285511831],[80.43380433804339,9.519067123308659],[80.43020430204302,9.51737854603877],[80.41580415804157,9.527510009658073],[80.4122041220412,9.529198586927961],[80.37620376203762,9.527510009658073],[80.36900369003689,9.530887164197836],[80.29700297002972,9.591675945913607],[80.26820268202681,9.610250295882324],[80.25740257402578,9.615316027691975],[80.20340203402037,9.637267532200454],[80.18540185401855,9.64908757308963],[80.17460174601746,9.64908757308963],[80.17460174601746,9.623758914041389],[80.18180181801819,9.61700460496185],[80.19260192601928,9.608561718612435],[80.19980199802,9.598430254993147],[80.19260192601928,9.58661021410397],[80.18540185401855,9.584921636834082],[80.17820178201782,9.588298791373845],[80.1710017100171,9.593364523183496],[80.15300153001533,9.603495986802798],[80.11700117001169,9.635578954930565],[80.09540095400956,9.64402184127998],[80.10620106201065,9.632201800390803],[80.12420124201242,9.615316027691975],[80.13500135001351,9.603495986802798],[80.10980109801096,9.608561718612435],[80.08820088200883,9.618693182231738],[80.0378003780038,9.64402184127998],[80.00180001800021,9.674416232137872],[79.97659976599766,9.682859118487286],[79.97659976599766,9.68454769575716],[79.96579965799657,9.689613427566812],[79.95859958599584,9.692990582106574],[79.95859958599584,9.686236273027049],[79.9477994779948,9.692990582106574],[79.94419944199444,9.703122045725877],[79.94059940599408,9.714942086615054],[79.93699936999371,9.72676212750423],[79.92979929799299,9.738582168393407],[79.92619926199262,9.743647900203058],[79.91539915399153,9.757156518362123],[79.9081990819908,9.7689765592513],[79.92979929799299,9.779108022870588],[79.96939969399693,9.814568145538132],[79.98739987399875,9.823011031887546],[80.06660066600665,9.816256722808006],[80.10620106201065,9.821322454617658],[80.12060120601205,9.819633877347783],[80.12780127801278,9.806125259188718],[80.12780127801278,9.78417375468024],[80.13140131401315,9.777419445600714],[80.13860138601387,9.774042291060951],[80.1458014580146,9.774042291060951],[80.1710017100171,9.767287981981411],[80.17460174601746,9.763910827441649],[80.18180181801819,9.755467941092235],[80.19260192601928,9.755467941092235],[80.19980199802,9.758845095631997],[80.20340203402037,9.760533672901886],[80.20700207002074,9.760533672901886],[80.21060210602104,9.760533672901886],[80.21780217802177,9.757156518362123],[80.22140221402213,9.75377936382236],[80.25020250202505,9.725073550234342],[80.34020340203404,9.62882464585104],[80.36900369003689,9.610250295882324],[80.44100441004412,9.576478750484668],[80.44460444604448,9.576478750484668],[80.44460444604448,9.583233059564208],[80.4086040860409,9.60180740953291],[80.31860318603185,9.672727654867984],[80.24660246602468,9.755467941092235],[80.21060210602104,9.774042291060951],[80.15300153001533,9.787550909220002],[80.13860138601387,9.799370950109193],[80.13500135001351,9.814568145538132],[80.1566015660157,9.823011031887546],[80.16380163801637,9.82469960915742],[80.18540185401855,9.828076763697197],[80.22860228602286,9.829765340967072],[80.24660246602468,9.826388186427309],[80.26100261002608,9.816256722808006],[80.26820268202681,9.78417375468024],[80.2790027900279,9.770665136521174],[80.4086040860409,9.61700460496185],[80.43020430204302,9.603495986802798],[80.46980469804697,9.58154448229432],[80.74340743407436,9.360340859939683],[80.74700747007472,9.358652282669809],[80.75420754207545,9.346832241780618],[80.76500765007648,9.331635046351678],[80.78660786607867,9.313060696382962],[80.79740797407976,9.29448634641426],[80.78660786607867,9.287732037334735],[80.77940779407794,9.291109191874497],[80.77940779407794,9.292797769144372],[80.76860768607685,9.304617810033562],[80.76140761407618,9.307994964573325],[80.74340743407436,9.311372119113088],[80.73620736207363,9.3096835418432],[80.73980739807399,9.301240655493785],[80.74340743407436,9.297863500954023],[80.7938079380794,9.250583337397316],[80.81540815408152,9.238763296508125],[80.80460804608049,9.25227191466719],[80.80100801008012,9.262403378286493],[80.80460804608049,9.270846264635907],[80.81900819008189,9.27422341917567],[80.82260822608225,9.270846264635907],[80.83340833408334,9.238763296508125],[80.84420844208444,9.220188946539423],[80.88380883808838,9.145891546664586],[80.87300873008729,9.14758012393446],[80.85500855008553,9.156023010283874],[80.84060840608407,9.156023010283874],[80.83340833408334,9.142514392124824],[80.84060840608407,9.137448660315172],[80.8586085860859,9.135760083045284],[80.87300873008729,9.125628619425996],[80.87660876608766,9.103677114917517],[80.88380883808838,9.103677114917517],[80.88380883808838,9.108742846727168],[80.88740887408875,9.11212000126693],[80.89100891008911,9.113808578536805],[80.89820898208984,9.117185733076582],[80.9018090180902,9.096922805837977],[80.9018090180902,9.093545651298214],[80.9162091620916,9.061462683170447],[80.93420934209342,9.032756869582443],[80.95580955809561,9.020936828693266],[80.95580955809561,9.019248251423377],[80.95940959409597,9.017559674153503],[80.95940959409597,9.010805365073963],[80.95220952209525,9.004051055994438],[80.94500945009452,9.000673901454675],[80.94140941409415,9.004051055994438],[80.93060930609306,9.020936828693266],[80.91980919809197,9.027691137772791],[80.89100891008911,9.034445446852317],[80.87660876608766,9.041199755931856],[80.88380883808838,9.031068292312554],[80.88740887408875,9.026002560502917],[80.92340923409233,8.992231015105261],[80.92340923409233,8.973656665136545],[80.93420934209342,8.965213778787131],[80.92340923409233,8.955082315167843],[80.9162091620916,8.943262274278652],[80.93060930609306,8.931442233389475],[80.94860948609488,8.933130810659364],[80.96300963009634,8.94495085154854],[80.97020970209701,8.963525201517257],[80.97740977409774,8.98041097421607],[81.01341013410138,8.936507965199127],[81.0458104581046,8.88247349256288],[81.06021060210605,8.868964874403815],[81.07821078210782,8.863899142594178],[81.09261092610927,8.852079101704987],[81.11421114211146,8.79973320633863],[81.12141121411213,8.794667474528978],[81.1250112501125,8.787913165449453],[81.15021150211504,8.77778170183015],[81.16101161011613,8.750764465512034],[81.17541175411753,8.698418570145662],[81.1790117901179,8.708550033764965],[81.18261182611826,8.711927188304728],[81.18621186211863,8.710238611034839],[81.19701197011972,8.705172879225202],[81.19341193411935,8.696729992875788],[81.22221222212221,8.666335602017895],[81.2330123301233,8.651138406588956],[81.2330123301233,8.63256405662024],[81.22581225812257,8.625809747540714],[81.21501215012154,8.620744015731063],[81.20421204212045,8.61061255211176],[81.21141211412117,8.612301129381649],[81.21861218612185,8.613989706651537],[81.22221222212221,8.615678283921412],[81.22581225812257,8.6173668611913],[81.24741247412476,8.57008669763458],[81.25101251012512,8.546446615856226],[81.22581225812257,8.541380884046575],[81.22941229412294,8.558266656745403],[81.22221222212221,8.57008669763458],[81.21141211412117,8.573463852174342],[81.20421204212045,8.55488950220564],[81.20781207812081,8.541380884046575],[81.21501215012154,8.53293799769716],[81.21861218612185,8.522806534077873],[81.21141211412117,8.507609338648919],[81.20421204212045,8.510986493188682],[81.19341193411935,8.519429379538096],[81.17541175411753,8.531249420427287],[81.15741157411577,8.53462657496705],[81.14301143011431,8.52787226588751],[81.12861128611286,8.510986493188682],[81.13221132211322,8.500855029569394],[81.15021150211504,8.504232184109156],[81.17181171811717,8.521117956807984],[81.18621186211863,8.505920761379045],[81.19701197011972,8.487346411410329],[81.21141211412117,8.47214921598139],[81.23661236612367,8.46539490690185],[81.27981279812798,8.467083484171738],[81.2978129781298,8.47721494779104],[81.2870128701287,8.500855029569394],[81.31221312213125,8.51267507045857],[81.32301323013229,8.516052224998333],[81.33381333813338,8.514363647728459],[81.34461344613447,8.507609338648919],[81.35901359013593,8.495789297759742],[81.36621366213666,8.482280679600677],[81.37341373413733,8.441754825123496],[81.38781387813879,8.391097507027013],[81.38781387813879,8.377588888867948],[81.38781387813879,8.364080270708897],[81.3770137701377,8.37252315705831],[81.3626136261363,8.399540393376427],[81.3518135181352,8.404606125186078],[81.3518135181352,8.397851816106552],[81.35541355413557,8.36576884797877],[81.35541355413557,8.362391693439008],[81.3626136261363,8.350571652549831],[81.36981369813697,8.347194498010069],[81.37341373413733,8.343817343470306],[81.38781387813879,8.343817343470306],[81.39861398613988,8.338751611660655],[81.4058140581406,8.301602911723236],[81.41301413014133,8.274585675405106],[81.41301413014133,8.269519943595455],[81.4166141661417,8.254322748166516],[81.420214202142,8.244191284547227],[81.44181441814419,8.173271039212153],[81.44901449014492,8.127679452925321],[81.4310143101431,8.10235079387708],[81.420214202142,8.144565225624135],[81.420214202142,8.149630957433786],[81.40221402214024,8.191845389180855],[81.39501395013951,8.191845389180855],[81.39501395013951,8.159762421053088],[81.39501395013951,8.149630957433786],[81.39501395013951,8.147942380163911],[81.39501395013951,8.14287664835426],[81.39501395013951,8.136122339274735],[81.39861398613988,8.132745184734958],[81.40941409414097,8.129368030195195],[81.40941409414097,8.127679452925321],[81.4166141661417,8.105727948416842],[81.43461434614346,8.093907907527665],[81.45261452614528,8.093907907527665],[81.45981459814601,8.11585941203613],[81.46341463414637,8.11585941203613],[81.47061470614705,8.104039371146953],[81.47421474214741,8.10066221660719],[81.48141481414814,8.06520209393966],[81.48861488614887,8.051693475780596],[81.49941499414996,8.039873434891419],[81.50661506615069,8.028053394002242],[81.52101521015209,7.999347580414224],[81.52461524615245,8.004413312223875],[81.53181531815318,8.009479044033526],[81.53541535415354,8.012856198573289],[81.5390153901539,8.004413312223875],[81.53541535415354,7.999347580414224],[81.53541535415354,7.995970425874461],[81.5390153901539,7.992593271334698],[81.5390153901539,7.99090469406481],[81.5390153901539,7.985838962255173],[81.54621546215463,7.99090469406481],[81.55701557015573,7.995970425874461],[81.56061560615609,7.999347580414224],[81.56421564215646,7.994281848604587],[81.56421564215646,7.987527539525047],[81.56421564215646,7.979084653175633],[81.56061560615609,7.970641766826219],[81.56061560615609,7.963887457746694],[81.56061560615609,7.958821725937042],[81.56781567815682,7.945313107777977],[81.57861578615785,7.935181644158689],[81.58941589415895,7.930115912349038],[81.59661596615967,7.916607294189973],[81.58941589415895,7.916607294189973],[81.58941589415895,7.9149187169200985],[81.58581585815858,7.91323013965021],[81.58221582215822,7.911541562380336],[81.57861578615785,7.899721521491145],[81.57501575015749,7.889590057871857],[81.58581585815858,7.855818512474201],[81.59301593015931,7.847375626124787],[81.60741607416077,7.832178430695848],[81.6290162901629,7.8355555852356105],[81.63621636216362,7.8355555852356105],[81.64341643416435,7.81529265799702],[81.65061650616508,7.801784039837955],[81.65421654216544,7.798406885298192],[81.69741697416976,7.75281529901136],[81.71181711817121,7.730863794502881],[81.71181711817121,7.712289444534164],[81.69021690216903,7.705535135454639],[81.67941679416793,7.712289444534164],[81.65781657816581,7.742683835392057],[81.64341643416435,7.754503876281234],[81.62541625416253,7.759569608090885],[81.6146161461615,7.759569608090885],[81.6038160381604,7.7477495672017085],[81.59661596615967,7.725798062693229],[81.60741607416077,7.720732330883578],[81.61821618216186,7.719043753613704],[81.6290162901629,7.722420908153467],[81.63621636216362,7.732552371772769],[81.64701647016471,7.729175217232992],[81.65781657816581,7.724109485423355],[81.66141661416617,7.719043753613704],[81.66501665016654,7.715666599073941],[81.66501665016654,7.705535135454639],[81.67581675816757,7.692026517295574],[81.69021690216903,7.680206476406397],[81.70101701017012,7.66838643551722],[81.71181711817121,7.649812085548504],[81.70461704617048,7.644746353738867],[81.70461704617048,7.639680621929216],[81.70821708217085,7.631237735579802],[81.71181711817121,7.622794849230388],[81.71901719017188,7.6295491583099135],[81.71541715417158,7.643057776468979],[81.72621726217261,7.639680621929216],[81.7478174781748,7.622794849230388],[81.75501755017552,7.614351962880974],[81.77301773017729,7.568760376594142],[81.77301773017729,7.565383222054379],[81.76581765817662,7.540054563006137],[81.76581765817662,7.538365985736249],[81.76581765817662,7.536677408466375],[81.77301773017729,7.528234522116961],[81.77301773017729,7.5231687903073095],[81.76941769417692,7.516414481227784],[81.76221762217625,7.511348749418133],[81.75861758617589,7.504594440338593],[81.76221762217625,7.496151553989179],[81.76581765817662,7.489397244909654],[81.76941769417692,7.4843315131000026],[81.77301773017729,7.479265781290351],[81.78021780217802,7.472511472210826],[81.76941769417692,7.464068585861412],[81.76941769417692,7.460691431321649],[81.76941769417692,7.4573142767818865],[81.78021780217802,7.455625699511998],[81.78741787417874,7.4657571631313004],[81.79461794617947,7.4657571631313004],[81.8018180181802,7.425231308654105],[81.8018180181802,7.410034113225166],[81.80901809018093,7.410034113225166],[81.80901809018093,7.425231308654105],[81.81261812618129,7.43873992681317],[81.81621816218166,7.450559967702347],[81.81981819818196,7.459002854051761],[81.81981819818196,7.4657571631313004],[81.81981819818196,7.467445740401175],[81.81981819818196,7.474200049480714],[81.81981819818196,7.475888626750589],[81.82701827018269,7.474200049480714],[81.83421834218342,7.4657571631313004],[81.83781837818378,7.4573142767818865],[81.84141841418415,7.437051349543296],[81.8558185581856,7.411722690495054],[81.8810188101881,7.327293827000915],[81.87741877418773,7.0925815864872135]]],[[[111.00891008910088,19.6843022880025],[111.01611016110161,19.677547978922973],[111.03411034110343,19.64208785625543],[111.01971019710197,19.635333547175904],[111.00891008910088,19.64208785625543],[110.99450994509948,19.643776433525318],[110.97650976509766,19.640399278985555],[110.96570965709657,19.635333547175904],[110.91530915309153,19.582987651809546],[110.88650886508867,19.550904683681765],[110.87570875708758,19.539084642792588],[110.85770857708576,19.534018910982937],[110.84330843308436,19.540773220062476],[110.8289082890829,19.552593260951653],[110.82170821708218,19.567790456380592],[110.81810818108181,19.59143053815896],[110.82530825308254,19.603250579048137],[110.839708397084,19.608316310857788],[110.86130861308612,19.608316310857788],[110.84690846908472,19.62182492901684],[110.82530825308254,19.62182492901684],[110.80730807308072,19.613382042667425],[110.79290792907932,19.601562001778248],[110.80370803708036,19.58974196088907],[110.81450814508145,19.562724724570955],[110.82170821708218,19.55428183822154],[110.80730807308072,19.530641756443174],[110.80370803708036,19.517133138284123],[110.80010800108005,19.495181633775644],[110.79650796507968,19.48505017015634],[110.78570785707859,19.47154155199729],[110.77130771307714,19.46141008837799],[110.76050760507604,19.458032933838226],[110.76050760507604,19.451278624758686],[110.76410764107641,19.441147161139398],[110.75690756907568,19.431015697520095],[110.74610746107464,19.42257281117068],[110.73170731707319,19.41750707936103],[110.72450724507246,19.415818502091156],[110.70650706507064,19.41750707936103],[110.69930699306997,19.41750707936103],[110.6957069570696,19.412441347551393],[110.68490684906851,19.393866997582677],[110.68130681306815,19.388801265773026],[110.67050670506706,19.3820469566935],[110.67050670506706,19.365161183994672],[110.67770677706778,19.34658683402597],[110.67770677706778,19.33476679313678],[110.66690666906669,19.31956959770784],[110.6417064170642,19.312815288628315],[110.63810638106384,19.295929515929487],[110.6309063090631,19.263846547801705],[110.62010620106201,19.230075002404064],[110.60570605706056,19.19968061154617],[110.5877058770588,19.176040529767818],[110.58050580505807,19.155777602529213],[110.5769057690577,19.1574661797991],[110.56970569705697,19.162531911608752],[110.54810548105485,19.15240044798945],[110.54450544505448,19.150711870719576],[110.50850508505084,19.150711870719576],[110.50130501305011,19.15240044798945],[110.4977049770498,19.15915475706899],[110.49050490504908,19.165909066148515],[110.47970479704799,19.169286220688278],[110.47970479704799,19.162531911608752],[110.49050490504908,19.15240044798945],[110.4977049770498,19.142268984370162],[110.50850508505084,19.13213752075086],[110.5229052290523,19.128760366211097],[110.53730537305375,19.13213752075086],[110.54090540905412,19.138891829830385],[110.54450544505448,19.140580407100273],[110.55530555305552,19.128760366211097],[110.55530555305552,19.120317479861683],[110.55530555305552,19.086545934464027],[110.56250562505625,19.101743129892967],[110.5769057690577,19.150711870719576],[110.58050580505807,19.150711870719576],[110.56970569705697,19.100054552623092],[110.56610566105661,19.066283007225437],[110.56250562505625,19.056151543606134],[110.54810548105485,19.040954348177195],[110.53010530105303,19.019002843668716],[110.51930519305193,18.993674184620474],[110.50850508505084,18.96496837103247],[110.50850508505084,18.92950824836494],[110.50850508505084,18.9227539392854],[110.5121051210512,18.914311052936],[110.5121051210512,18.905868166586586],[110.50850508505084,18.897425280237172],[110.50130501305011,18.895736702967284],[110.49050490504908,18.895736702967284],[110.48690486904871,18.89235954842752],[110.48330483304835,18.88729381661787],[110.47610476104762,18.88560523934798],[110.4689046890469,18.883916662078107],[110.46530465304653,18.88222808480822],[110.46170461704617,18.875473775728693],[110.46170461704617,18.855210848490103],[110.4581045810458,18.848456539410563],[110.45450454504544,18.8450793848708],[110.44010440104404,18.836636498521386],[110.43290432904331,18.82988218944186],[110.43290432904331,18.821439303092447],[110.43650436504367,18.814684994012907],[110.4437044370444,18.807930684933382],[110.4437044370444,18.80286495312373],[110.45090450904507,18.80455353039362],[110.46530465304653,18.80455353039362],[110.47970479704799,18.801176375853856],[110.49410494104944,18.792733489504442],[110.50130501305011,18.80286495312373],[110.50130501305011,18.811307839473145],[110.50130501305011,18.838325075791275],[110.49410494104944,18.861965157569628],[110.49410494104944,18.875473775728693],[110.50490504905048,18.88222808480822],[110.50850508505084,18.868719466649154],[110.53370533705339,18.785979180424903],[110.51930519305193,18.78260202588514],[110.50850508505084,18.78429060315503],[110.4977049770498,18.780913448615266],[110.49410494104944,18.772470562265852],[110.48690486904871,18.772470562265852],[110.4689046890469,18.77753629407549],[110.45090450904507,18.7572733668369],[110.42570425704258,18.703238894200652],[110.42930429304295,18.693107430581364],[110.42570425704258,18.681287389692187],[110.41490414904149,18.671155926072885],[110.4041040410404,18.66271303972347],[110.389703897039,18.674533080612647],[110.34290342903432,18.66440161699336],[110.3357033570336,18.672844503342773],[110.34650346503469,18.681287389692187],[110.36810368103681,18.686353121501824],[110.41130411304113,18.6897302760416],[110.41130411304113,18.698173162391],[110.4041040410404,18.703238894200652],[110.39690396903973,18.703238894200652],[110.3789037890379,18.6897302760416],[110.32850328503287,18.6795988124223],[110.30690306903068,18.66271303972347],[110.29970299702995,18.66271303972347],[110.2709027090271,18.667778771533122],[110.22770227702279,18.64245011248488],[110.15570155701556,18.57997275349922],[110.11970119701198,18.556332671720867],[110.10170101701016,18.53944689902204],[110.08730087300876,18.503986776354495],[110.06930069300694,18.50229819908462],[110.03330033300335,18.51242966270391],[110.03330033300335,18.505675353624383],[110.04770047700475,18.49554389000508],[110.0729007290073,18.488789580925555],[110.0837008370084,18.47696954003638],[110.08010080100803,18.465149499147202],[110.06930069300694,18.426312221939895],[110.06930069300694,18.409426449241067],[110.06210062100621,18.409426449241067],[110.06210062100621,18.429689376479658],[110.05490054900548,18.43982084009896],[110.04410044100445,18.43982084009896],[110.04050040500408,18.426312221939895],[110.04410044100445,18.411115026510956],[110.05130051300512,18.399294985621765],[110.05130051300512,18.39085209927235],[110.04050040500408,18.382409212922937],[110.02610026100263,18.380720635653063],[109.9936999369994,18.382409212922937],[109.96849968499686,18.389163522002477],[109.96849968499686,18.406049294701305],[109.97569975699759,18.406049294701305],[109.98649986499868,18.404360717431416],[110.00090000900008,18.402672140161542],[110.01530015300153,18.409426449241067],[110.0189001890019,18.41786933559048],[110.02250022500226,18.429689376479658],[110.02250022500226,18.441509417368835],[110.0189001890019,18.44995230371825],[110.0189001890019,18.444886571908597],[110.0081000810008,18.43475510828931],[110.00450004500044,18.429689376479658],[110.00450004500044,18.43306653101942],[109.9936999369994,18.443197994638723],[109.9936999369994,18.43982084009896],[109.9936999369994,18.43306653101942],[109.9936999369994,18.429689376479658],[109.98289982899831,18.43475510828931],[109.97569975699759,18.431377953749546],[109.97209972099722,18.422935067400132],[109.9648996489965,18.416180758320593],[109.95769957699576,18.41449218105072],[109.9540995409954,18.41449218105072],[109.95049950499504,18.41449218105072],[109.91449914499145,18.416180758320593],[109.89649896498963,18.41449218105072],[109.88209882098823,18.40773787197118],[109.83529835298356,18.382409212922937],[109.82449824498246,18.385786367462714],[109.8208982089821,18.39085209927235],[109.8208982089821,18.39760640835189],[109.81369813698137,18.402672140161542],[109.79569795697955,18.404360717431416],[109.77769777697779,18.404360717431416],[109.75969759697597,18.400983562891653],[109.74529745297451,18.395917831082002],[109.74889748897488,18.373966326573523],[109.72729727297275,18.303046081238463],[109.73089730897311,18.27265169038057],[109.71649716497166,18.27265169038057],[109.71289712897129,18.279405999460096],[109.71289712897129,18.28784888580951],[109.70569705697056,18.29291461761916],[109.69849698496984,18.289537463079398],[109.66969669696698,18.27265169038057],[109.66969669696698,18.26589738130103],[109.6876968769688,18.26758595857092],[109.69489694896947,18.26758595857092],[109.71289712897129,18.259143072221505],[109.71649716497166,18.259143072221505],[109.73449734497348,18.260831649491394],[109.73809738097384,18.259143072221505],[109.7416974169742,18.25070018587209],[109.73809738097384,18.243945876792566],[109.73089730897311,18.233814413173263],[109.72729727297275,18.22537152682385],[109.72009720097202,18.21524006320456],[109.70929709297093,18.206797176855147],[109.7020970209702,18.20342002231537],[109.69129691296916,18.20848575412502],[109.68409684096844,18.2203057950142],[109.67689676896771,18.24563445406244],[109.66249662496625,18.237191567713026],[109.63009630096303,18.227060104093738],[109.6228962289623,18.2203057950142],[109.61929619296194,18.216928640474435],[109.60489604896048,18.20848575412502],[109.60129601296012,18.20342002231537],[109.60489604896048,18.198354290505733],[109.61209612096121,18.18315709507678],[109.61569615696158,18.176402785997254],[109.60129601296012,18.181468517806906],[109.58689586895872,18.181468517806906],[109.57609576095763,18.178091363267143],[109.5688956889569,18.16964847691773],[109.56169561695617,18.16964847691773],[109.56169561695617,18.176402785997254],[109.5688956889569,18.193288558696082],[109.56529565295654,18.201731445045496],[109.56169561695617,18.20510859958526],[109.55809558095581,18.20848575412502],[109.55449554495544,18.213551485934673],[109.55449554495544,18.216928640474435],[109.54729547295472,18.216928640474435],[109.54729547295472,18.2203057950142],[109.55089550895508,18.22537152682385],[109.55449554495544,18.228748681363612],[109.55809558095581,18.2304372586335],[109.56169561695617,18.2304372586335],[109.56169561695617,18.237191567713026],[109.56529565295654,18.242257299522677],[109.56529565295654,18.249011608602217],[109.56169561695617,18.259143072221505],[109.55089550895508,18.243945876792566],[109.54009540095404,18.237191567713026],[109.52929529295295,18.227060104093738],[109.53289532895332,18.21017433139491],[109.51129511295113,18.213551485934673],[109.47889478894791,18.193288558696082],[109.46449464494646,18.20342002231537],[109.47889478894791,18.213551485934673],[109.48609486094864,18.221994372284087],[109.49329493294937,18.228748681363612],[109.51129511295113,18.2304372586335],[109.51129511295113,18.238880144982915],[109.50769507695077,18.25238876314198],[109.50049500495004,18.259143072221505],[109.49329493294937,18.24563445406244],[109.48249482494828,18.264208804031156],[109.46449464494646,18.279405999460096],[109.43929439294396,18.289537463079398],[109.33489334893352,18.304734658508337],[109.21969219692198,18.306423235778226],[109.19089190891913,18.299668926698686],[109.1728917289173,18.28784888580951],[109.16209162091621,18.28784888580951],[109.15129151291512,18.299668926698686],[109.1440914409144,18.31486612212764],[109.1440914409144,18.32837474028669],[109.14049140491409,18.34019478117588],[109.129691296913,18.346949090255407],[109.13689136891372,18.360457708414472],[109.12249122491227,18.358769131144584],[109.11169111691117,18.360457708414472],[109.10089100891008,18.36552344022411],[109.09009090090905,18.368900594763886],[109.0000900009,18.367212017493998],[108.98928989289897,18.368900594763886],[108.97848978489787,18.37565490384341],[108.96768967689678,18.384097790192826],[108.96048960489605,18.394229253812128],[108.95328953289533,18.402672140161542],[108.93888938889393,18.409426449241067],[108.88488884888852,18.426312221939895],[108.8776887768878,18.43306653101942],[108.8668886688867,18.443197994638723],[108.83088830888312,18.468526653686965],[108.79488794887948,18.487101003655667],[108.77688776887771,18.493855312735207],[108.75528755287553,18.49723246727497],[108.71208712087122,18.498921044544844],[108.6940869408694,18.503986776354495],[108.68328683286836,18.51580681724367],[108.67608676086763,18.5326925899425],[108.67248672486727,18.55464409445098],[108.679686796868,18.571529867149806],[108.68688686886873,18.588415639848634],[108.69048690486903,18.605301412547462],[108.69768697686976,18.68297596696206],[108.6940869408694,18.72012466689948],[108.68328683286836,18.755584789567024],[108.6688866888669,18.78935633496468],[108.65088650886509,18.812996416743033],[108.63648636486369,18.82481645763221],[108.6256862568626,18.836636498521386],[108.62208622086223,18.848456539410563],[108.62928629286296,18.868719466649154],[108.64728647286472,18.90249101204681],[108.65448654486545,18.921065362015526],[108.65448654486545,18.94470544379388],[108.65448654486545,18.96496837103247],[108.65088650886509,18.973411257381883],[108.64728647286472,18.976788411921646],[108.64368643686436,18.983542721001186],[108.64368643686436,19.019002843668716],[108.6148861488615,19.101743129892967],[108.62928629286296,19.11018601624238],[108.64368643686436,19.123694634401446],[108.65808658086581,19.140580407100273],[108.66168661686618,19.155777602529213],[108.679686796868,19.15240044798945],[108.68328683286836,19.150711870719576],[108.68328683286836,19.155777602529213],[108.67608676086763,19.162531911608752],[108.67248672486727,19.17266337522804],[108.6688866888669,19.19461487973652],[108.66528665286654,19.20981207516546],[108.65088650886509,19.213189229705236],[108.63288632886332,19.213189229705236],[108.62208622086223,19.218254961514873],[108.62208622086223,19.228386425134175],[108.62928629286296,19.238517888753478],[108.63648636486369,19.248649352372766],[108.6256862568626,19.275666588690896],[108.63288632886332,19.285798052310184],[108.64008640086399,19.2942409386596],[108.65088650886509,19.29930667046925],[108.64728647286472,19.3043724022789],[108.64368643686436,19.311126711358426],[108.65088650886509,19.311126711358426],[108.66168661686618,19.309438134088538],[108.66528665286654,19.31450386589819],[108.66168661686618,19.32125817497773],[108.66528665286654,19.32463532951749],[108.67608676086763,19.328012484057254],[108.67608676086763,19.33476679313678],[108.6688866888669,19.343209679486193],[108.67248672486727,19.351652565835607],[108.679686796868,19.358406874915147],[108.68328683286836,19.365161183994672],[108.68688686886873,19.378669802153738],[108.6940869408694,19.380358379423612],[108.71568715687158,19.375292647613975],[108.73008730087304,19.378669802153738],[108.75168751687517,19.38711268850315],[108.76248762487626,19.388801265773026],[108.76968769687699,19.393866997582677],[108.79128791287911,19.42257281117068],[108.79848798487984,19.425949965710444],[108.81648816488166,19.43945858386951],[108.82728827288275,19.44452431567916],[108.87048870488707,19.458032933838226],[108.90288902889029,19.493493056505756],[108.92448924489247,19.50700167466482],[108.93888938889393,19.49180447923588],[108.9460894608946,19.49180447923588],[108.9460894608946,19.498558788315407],[108.94248942489423,19.513755983744346],[108.95688956889569,19.534018910982937],[108.99288992889927,19.567790456380592],[109.00369003690037,19.588053383619183],[109.00729007290073,19.596496269968597],[109.01449014490146,19.601562001778248],[109.06849068490686,19.608316310857788],[109.07929079290795,19.613382042667425],[109.10449104491045,19.62689066082649],[109.1188911889119,19.63195639263614],[109.129691296913,19.640399278985555],[109.13329133291336,19.64208785625543],[109.13329133291336,19.643776433525318],[109.15489154891549,19.64884216533497],[109.19089190891913,19.679236556192862],[109.20529205292053,19.697810906161564],[109.20529205292053,19.718073833400155],[109.21249212492125,19.724828142479694],[109.21969219692198,19.723139565209806],[109.24489244892447,19.72989387428933],[109.25929259292593,19.73158245155922],[109.27369273692739,19.72989387428933],[109.28449284492848,19.724828142479694],[109.29889298892988,19.71131952432063],[109.3060930609306,19.71131952432063],[109.29889298892988,19.72651671974957],[109.28089280892812,19.745091069718285],[109.27369273692739,19.75691111060746],[109.29529295292951,19.760288265147224],[109.29529295292951,19.765353996956875],[109.28809288092884,19.765353996956875],[109.28809288092884,19.77379688330629],[109.29529295292951,19.775485460576164],[109.29889298892988,19.777174037846052],[109.3060930609306,19.787305501465354],[109.29889298892988,19.787305501465354],[109.28809288092884,19.787305501465354],[109.28089280892812,19.790682656005117],[109.27369273692739,19.79405981054488],[109.25929259292593,19.77886261511594],[109.23409234092344,19.761976842417113],[109.20889208892089,19.750156801527922],[109.1980919809198,19.745091069718285],[109.18009180091804,19.73664818336887],[109.17649176491767,19.72989387428933],[109.16929169291694,19.724828142479694],[109.16209162091621,19.724828142479694],[109.16569165691658,19.743402492448396],[109.16209162091621,19.790682656005117],[109.16569165691658,19.805879851434057],[109.17649176491767,19.81432273778347],[109.18729187291876,19.81938846959312],[109.1980919809198,19.827831355942536],[109.20169201692016,19.832897087752187],[109.20889208892089,19.843028551371475],[109.21249212492125,19.848094283181126],[109.21969219692198,19.85484859226065],[109.22329223292235,19.85484859226065],[109.23049230492308,19.85484859226065],[109.23409234092344,19.85822574680043],[109.24849248492484,19.868357210419717],[109.2520925209252,19.875111519499242],[109.2520925209252,19.885242983118545],[109.25569255692557,19.89875160127761],[109.2628926289263,19.900440178547484],[109.27009270092702,19.900440178547484],[109.28089280892812,19.902128755817373],[109.30249302493024,19.922391683055963],[109.30969309693097,19.9190145285162],[109.31329313293134,19.900440178547484],[109.32049320493206,19.89199729219807],[109.33849338493388,19.890308714928196],[109.36729367293674,19.888620137658307],[109.3960939609396,19.870045787689605],[109.41409414094142,19.86160290134019],[109.42849428494287,19.864980055879954],[109.44289442894433,19.873422942229368],[109.45369453694536,19.864980055879954],[109.46089460894609,19.849782860451015],[109.46449464494646,19.83458566502206],[109.47169471694718,19.83458566502206],[109.47889478894791,19.844717128641364],[109.49329493294937,19.849782860451015],[109.51129511295113,19.85484859226065],[109.52569525695259,19.86160290134019],[109.53289532895332,19.853160014990777],[109.54369543695441,19.853160014990777],[109.56169561695617,19.85822574680043],[109.58329583295836,19.85653716953054],[109.58329583295836,19.86160290134019],[109.52929529295295,19.875111519499242],[109.51849518495186,19.881865828578782],[109.5148951489515,19.905505910357135],[109.52569525695259,19.912260219436675],[109.55449554495544,19.910571642166786],[109.55809558095581,19.917325951246312],[109.55089550895508,19.927457414865614],[109.54369543695441,19.932523146675265],[109.54009540095404,19.927457414865614],[109.53649536495368,19.92408026032585],[109.52929529295295,19.930834569405377],[109.52569525695259,19.94096603302468],[109.52569525695259,19.951097496643968],[109.57969579695799,19.984869042041623],[109.59409594095939,19.993311928391037],[109.61209612096121,19.99837766020069],[109.62649626496267,19.99837766020069],[109.63729637296376,19.99162335112115],[109.64089640896412,19.99162335112115],[109.65169651696516,20.00175481474045],[109.66969669696698,20.006820546550102],[109.6876968769688,20.008509123819977],[109.70569705697056,20.006820546550102],[109.71289712897129,20.010197701089865],[109.72009720097202,20.010197701089865],[109.72729727297275,20.006820546550102],[109.72729727297275,19.99837766020069],[109.72009720097202,19.984869042041623],[109.72729727297275,19.978114732962098],[109.72729727297275,19.971360423882558],[109.72369723697238,19.96629469207292],[109.71649716497166,19.957851805723507],[109.72729727297275,19.957851805723507],[109.73809738097384,19.978114732962098],[109.76329763297633,19.97473757842232],[109.80649806498064,19.951097496643968],[109.81009810098101,19.96629469207292],[109.81009810098101,19.98149188750186],[109.81729817298174,19.99162335112115],[109.82809828098283,19.984869042041623],[109.83529835298356,19.973049001152447],[109.83889838898392,19.957851805723507],[109.83889838898392,19.942654610294554],[109.83529835298356,19.930834569405377],[109.85329853298532,19.94096603302468],[109.87129871298714,19.952786073913856],[109.88209882098823,19.967983269342795],[109.88209882098823,19.984869042041623],[109.89649896498963,19.984869042041623],[109.91449914499145,19.989934773851274],[109.92169921699218,19.988246196581386],[109.92529925299255,19.984869042041623],[109.92889928899291,19.98655761931151],[109.93249932499327,19.989934773851274],[109.93609936099364,19.99162335112115],[109.94329943299437,19.99162335112115],[109.94329943299437,19.988246196581386],[109.94329943299437,19.983180464771735],[109.94329943299437,19.978114732962098],[109.95769957699576,19.967983269342795],[109.97209972099722,19.947720342104205],[109.97569975699759,19.932523146675265],[109.95049950499504,19.930834569405377],[109.96129961299613,19.917325951246312],[109.97209972099722,19.908883064896898],[109.99009990099904,19.905505910357135],[110.00450004500044,19.910571642166786],[110.00450004500044,19.917325951246312],[109.9936999369994,19.925768837595726],[110.00090000900008,19.932523146675265],[110.01530015300153,19.94096603302468],[110.01530015300153,19.957851805723507],[110.05130051300512,19.97473757842232],[110.06930069300694,19.978114732962098],[110.07650076500767,19.979803310231972],[110.09090090900912,19.978114732962098],[110.10170101701016,19.97473757842232],[110.10890108901089,19.964606114803033],[110.12330123301234,19.97473757842232],[110.1377013770138,19.9966890829308],[110.14850148501483,20.006820546550102],[110.1377013770138,20.00344339201034],[110.12330123301234,19.989934773851274],[110.11610116101161,19.984869042041623],[110.10530105301052,19.983180464771735],[110.06930069300694,19.984869042041623],[110.11610116101161,20.00175481474045],[110.13050130501307,20.013574855629628],[110.1377013770138,20.02370631924893],[110.14850148501483,20.055789287376697],[110.15570155701556,20.067609328265874],[110.17010170101702,20.06085501918635],[110.20970209702097,20.049034978297172],[110.22050220502206,20.047346401027283],[110.23130231302315,20.04396924648752],[110.2457024570246,20.03890351467787],[110.260102601026,20.03383778286822],[110.28170281702819,20.03383778286822],[110.29610296102965,20.03890351467787],[110.31770317703177,20.057477864646586],[110.3249032490325,20.06085501918635],[110.34650346503469,20.057477864646586],[110.35730357303572,20.049034978297172],[110.36810368103681,20.03890351467787],[110.37530375303754,20.027083473788693],[110.37530375303754,20.020329164709167],[110.36810368103681,20.008509123819977],[110.37530375303754,19.9966890829308],[110.39690396903973,19.978114732962098],[110.4041040410404,19.964606114803033],[110.40770407704076,19.935900301215028],[110.41130411304113,19.92408026032585],[110.41850418504185,19.92408026032585],[110.41490414904149,19.932523146675265],[110.41490414904149,19.93421172394514],[110.41130411304113,19.937588878484902],[110.41130411304113,19.944343187564442],[110.41850418504185,19.944343187564442],[110.41850418504185,19.951097496643968],[110.41490414904149,19.957851805723507],[110.40770407704076,19.979803310231972],[110.40770407704076,19.984869042041623],[110.39690396903973,19.98655761931151],[110.389703897039,19.993311928391037],[110.38610386103863,20.00175481474045],[110.38250382503827,20.013574855629628],[110.3789037890379,20.040592091947758],[110.37530375303754,20.04396924648752],[110.37530375303754,20.06423217372611],[110.37530375303754,20.072675060075525],[110.38250382503827,20.08111794642494],[110.42570425704258,20.047346401027283],[110.43290432904331,20.050723555567046],[110.4689046890469,20.032149205598344],[110.4977049770498,20.02370631924893],[110.52650526505266,20.020329164709167],[110.52650526505266,20.013574855629628],[110.51930519305193,20.013574855629628],[110.51930519305193,20.006820546550102],[110.53730537305375,20.000066237470563],[110.55170551705515,19.988246196581386],[110.56250562505625,19.984869042041623],[110.5769057690577,19.99837766020069],[110.58050580505807,19.979803310231972],[110.59850598505989,19.944343187564442],[110.6021060210602,19.927457414865614],[110.60570605706056,19.922391683055963],[110.61290612906129,19.925768837595726],[110.62010620106201,19.932523146675265],[110.62370623706238,19.94096603302468],[110.62010620106201,19.949408919374093],[110.62010620106201,19.957851805723507],[110.61650616506165,19.964606114803033],[110.62370623706238,19.971360423882558],[110.60930609306092,19.989934773851274],[110.60570605706056,20.006820546550102],[110.6021060210602,20.020329164709167],[110.58050580505807,20.027083473788693],[110.56970569705697,20.030460628328456],[110.56970569705697,20.040592091947758],[110.57330573305734,20.050723555567046],[110.57330573305734,20.057477864646586],[110.56610566105661,20.069297905535763],[110.56970569705697,20.07942936915505],[110.59490594905952,20.108135182743055],[110.60570605706056,20.111512337282832],[110.6417064170642,20.108135182743055],[110.65250652506523,20.11657806909247],[110.67050670506706,20.155415346299776],[110.67770677706778,20.16385823264919],[110.68490684906851,20.153726769029888],[110.710107101071,20.074363637345414],[110.72450724507246,20.06423217372611],[110.75330753307531,20.047346401027283],[110.7749077490775,20.020329164709167],[110.78930789307896,20.010197701089865],[110.86850868508685,19.9966890829308],[110.89010890108904,19.99837766020069],[110.8937089370894,20.00175481474045],[110.8937089370894,20.005131969280214],[110.89730897308976,20.005131969280214],[110.90450904509044,19.99837766020069],[110.91890918909189,20.011886278359754],[110.93330933309335,19.995000505660926],[110.97650976509766,19.86666863314983],[110.98370983709839,19.807568428703945],[110.99810998109984,19.748468224258048],[111.00171001710021,19.721450987939917],[110.99450994509948,19.6944337516218],[110.99810998109984,19.685990865272387],[111.00891008910088,19.6843022880025]]],[[[121.90621906219064,24.949286215496755],[121.83421834218342,24.871611661082156],[121.82341823418233,24.854725888383328],[121.81621816218166,24.831085806604975],[121.80901809018093,24.805757147556733],[121.80541805418056,24.778739911238603],[121.80901809018093,24.75341125219036],[121.81981819818202,24.699376779554115],[121.81981819818202,24.685868161395064],[121.81261812618129,24.672359543236],[121.81621816218166,24.643653729647994],[121.82701827018269,24.623390802409403],[121.85221852218524,24.60819360698045],[121.8810188101881,24.604816452440687],[121.8810188101881,24.59806214336116],[121.87021870218706,24.599750720631036],[121.85941859418597,24.59806214336116],[121.84861848618488,24.594684988821385],[121.84141841418415,24.589619257011748],[121.85221852218524,24.57273348431292],[121.8558185581856,24.55078197980444],[121.85221852218524,24.53051905256585],[121.83061830618306,24.518699011676674],[121.82701827018269,24.51025612532726],[121.83061830618306,24.500124661707957],[121.83781837818378,24.491681775358543],[121.84141841418415,24.481550311739255],[121.83061830618306,24.47310742538984],[121.80541805418056,24.461287384500665],[121.78021780217802,24.432581570912646],[121.78021780217802,24.422450107293358],[121.78021780217802,24.397121448245116],[121.77661776617765,24.388678561895702],[121.77301773017729,24.380235675546288],[121.76941769417698,24.370104211926986],[121.76581765817662,24.34815270741852],[121.76581765817662,24.34139839833898],[121.76221762217625,24.336332666529344],[121.75861758617589,24.332955511989567],[121.76221762217625,24.326201202910042],[121.76581765817662,24.32282404837028],[121.76941769417698,24.317758316560628],[121.77301773017729,24.312692584750977],[121.77301773017729,24.309315430211214],[121.76581765817662,24.3008725438618],[121.74421744217443,24.28060961662321],[121.72261722617225,24.251903803035205],[121.70461704617048,24.23839518487614],[121.69741697416976,24.231640875796614],[121.70101701017012,24.224886566717075],[121.69741697416976,24.219820834907438],[121.6722167221672,24.20124648493872],[121.66141661416617,24.192803598589308],[121.65061650616508,24.172540671350717],[121.63981639816399,24.130326239603647],[121.6146161461615,24.09148896239634],[121.60741607416077,24.0762917669674],[121.60741607416077,24.06109457153846],[121.6146161461615,24.042520221569745],[121.62181621816217,24.03407733522033],[121.62541625416253,24.03070018068057],[121.6290162901629,24.025634448870917],[121.6290162901629,24.01550298525163],[121.62541625416253,24.001994367092564],[121.61101611016113,23.981731439853974],[121.60741607416077,23.969911398964797],[121.60741607416077,23.947959894456318],[121.59301593015931,23.892236844550183],[121.57141571415713,23.83144806283441],[121.5390153901539,23.692984726704026],[121.52101521015209,23.65921318130637],[121.47781477814777,23.43463240441197],[121.46341463414637,23.343449231838306],[121.45261452614528,23.32656345913948],[121.42741427414273,23.292791913741837],[121.4166141661417,23.27590614104301],[121.40941409414097,23.25395463653453],[121.40221402214024,23.215117359327223],[121.40221402214024,23.179657236659693],[121.39861398613988,23.145885691262038],[121.38061380613806,23.110425568594493],[121.37341373413733,23.103671259514968],[121.35541355413557,23.09185121862579],[121.34821348213484,23.083408332276377],[121.34461344613447,23.074965445926964],[121.33741337413375,23.054702518688373],[121.31941319413193,23.02599670510037],[121.30861308613089,22.980405118813536],[121.2978129781298,22.958453614305057],[121.26181261812621,22.907796296208573],[121.25461254612549,22.897664832589285],[121.20421204212045,22.85713897811209],[121.18981189811899,22.84363035995304],[121.18981189811899,22.833498896333737],[121.18981189811899,22.811547391825258],[121.18981189811899,22.80141592820597],[121.18621186211863,22.791284464586667],[121.1790117901179,22.77946442369749],[121.16101161011613,22.75751291918901],[121.14301143011431,22.742315723760072],[121.08181081810818,22.703478446552765],[121.03861038610387,22.662952592075584],[121.02781027810278,22.657886860265933],[121.02061020610205,22.647755396646644],[121.00261002610029,22.600475233089924],[120.9918099180992,22.583589460391096],[120.95940959409597,22.548129337723566],[120.94860948609488,22.526177833215087],[120.94140941409415,22.483963401468017],[120.92340923409233,22.42486319702212],[120.88740887408875,22.365762992576222],[120.88020880208802,22.34550006533763],[120.87660876608766,22.28977701543151],[120.87660876608766,22.23743112006514],[120.88020880208802,22.05506477491781],[120.87300873008729,22.029736115869568],[120.86220862208626,22.009473188630977],[120.85140851408516,22.001030302281563],[120.83700837008371,21.9875216841225],[120.83700837008371,21.95712729326462],[120.84060840608407,21.925044325136838],[120.84060840608407,21.904781397898248],[120.82260822608225,21.928421479676615],[120.79740797407976,21.946995829645317],[120.76860768607685,21.958815870534494],[120.73620736207363,21.965570179614033],[120.73620736207363,21.943618675105554],[120.7290072900729,21.93517578875614],[120.71460714607144,21.93686436602603],[120.70020700207004,21.948684406915206],[120.70020700207004,21.95712729326462],[120.70380703807041,21.980767375042973],[120.68220682206822,22.01453892044063],[120.68220682206822,22.022981806790042],[120.68220682206822,22.029736115869568],[120.68220682206822,22.041556156758745],[120.68220682206822,22.078704856696177],[120.68580685806859,22.090524897585354],[120.69660696606968,22.10234493847453],[120.69660696606968,22.11247640209382],[120.62100621006209,22.294842747241162],[120.61380613806136,22.30497421086045],[120.59220592205924,22.328614292638804],[120.57780577805778,22.364074415306348],[120.57060570605705,22.374205878925636],[120.53820538205383,22.396157383434115],[120.52740527405274,22.402911692513655],[120.52380523805238,22.40460026978353],[120.51660516605165,22.406288847053418],[120.51300513005128,22.41979746521247],[120.51300513005128,22.42486319702212],[120.49500495004952,22.434994660641422],[120.45900459004594,22.45188043334025],[120.44100441004412,22.462011896959538],[120.4230042300423,22.47720909238849],[120.4122041220412,22.48227482419813],[120.40140401404017,22.48734055600778],[120.3978039780398,22.485651978737906],[120.39060390603908,22.483963401468017],[120.37980379803798,22.483963401468017],[120.3330033300333,22.51942352413556],[120.28620286202863,22.580212305851333],[120.3330033300333,22.526177833215087],[120.32940329403294,22.55150649226333],[120.31860318603185,22.565015110422394],[120.31500315003149,22.57683515131157],[120.29340293402936,22.598786655820035],[120.25740257402578,22.627492469408054],[120.24660246602468,22.642689664836993],[120.23940239402395,22.65957543753582],[120.24660246602468,22.67477263296476],[120.25380253802541,22.689969828393714],[120.24660246602468,22.710232755632305],[120.23580235802359,22.730495682870895],[120.21780217802177,22.75751291918901],[120.19980199802,22.792973041856555],[120.19620196201964,22.808170237285495],[120.19620196201964,22.818301700904797],[120.20340203402037,22.831810319063848],[120.20340203402037,22.840253205413262],[120.19980199802,22.84363035995304],[120.19620196201964,22.8470075144928],[120.19260192601928,22.852073246302453],[120.18900189001891,22.860516132651853],[120.17820178201782,22.87740190535068],[120.17460174601746,22.88415621443022],[120.16740167401673,22.931436377986927],[120.16380163801637,22.953387882495406],[120.1566015660157,22.96689650065447],[120.14220142201424,22.980405118813536],[120.16020160201606,22.992225159702713],[120.1710017100171,23.014176664211192],[120.16740167401673,23.031062436910005],[120.14220142201424,23.034439591449782],[120.13860138601387,23.027685282370243],[120.13500135001351,23.015865241481066],[120.12780127801278,23.007422355131652],[120.11340113401133,23.007422355131652],[120.10980109801102,23.015865241481066],[120.10980109801102,23.03950532325942],[120.10620106201065,23.047948209608833],[120.0918009180092,23.054702518688373],[120.08460084600847,23.047948209608833],[120.07740077400774,23.037816745989545],[120.06660066600665,23.034439591449782],[120.05580055800561,23.042882477799196],[120.05220052200525,23.056391095958247],[120.05580055800561,23.068211136847438],[120.05940059400598,23.076654023196852],[120.07020070200701,23.08171975500649],[120.08460084600847,23.083408332276377],[120.09540095400956,23.08678548681614],[120.09900099000993,23.096916950435443],[120.09540095400956,23.10198268224508],[120.05940059400598,23.110425568594493],[120.05940059400598,23.117179877674033],[120.08820088200883,23.117179877674033],[120.08460084600847,23.12731134129332],[120.07020070200701,23.139131382182498],[120.05940059400598,23.15095142307169],[120.06300063000629,23.16446004123074],[120.07020070200701,23.16952577304039],[120.0810008100081,23.172902927580154],[120.08820088200883,23.181345813929568],[120.08460084600847,23.19654300935852],[120.07740077400774,23.20667447297781],[120.0810008100081,23.216805936597112],[120.08820088200883,23.230314554756177],[120.09540095400956,23.23875744110559],[120.09540095400956,23.247200327455005],[120.09540095400956,23.255643213804404],[120.10980109801102,23.286037604662297],[120.11340113401133,23.292791913741837],[120.12420124201242,23.29448049101171],[120.10980109801102,23.302923377361125],[120.11700117001169,23.318120572790065],[120.13140131401315,23.318120572790065],[120.14220142201424,23.323186304599716],[120.14940149401497,23.32149772732984],[120.1458014580146,23.33331776821902],[120.13860138601387,23.328252036409367],[120.13140131401315,23.329940613679256],[120.12060120601205,23.329940613679256],[120.12060120601205,23.341760654568432],[120.13140131401315,23.360335004537134],[120.1458014580146,23.362023581807023],[120.16380163801637,23.362023581807023],[120.14940149401497,23.397483704474553],[120.13500135001351,23.426189518062557],[120.14220142201424,23.439698136221622],[120.14220142201424,23.446452445301162],[120.13140131401315,23.4515181771108],[120.13140131401315,23.45658390892045],[120.13860138601387,23.465026795269864],[120.14220142201424,23.473469681619278],[120.1566015660157,23.492044031587994],[120.12420124201242,23.490355454318106],[120.12420124201242,23.520749845176],[120.14220142201424,23.537635617874827],[120.14220142201424,23.595047245050836],[120.14220142201424,23.637261676797905],[120.15300153001533,23.672721799465435],[120.1710017100171,23.699739035783566],[120.17460174601746,23.73351058118122],[120.18540185401855,23.7639049720391],[120.18900189001891,23.774036435658402],[120.2142021420214,23.802742249246407],[120.21780217802177,23.812873712865695],[120.21780217802177,23.817939444675346],[120.23940239402395,23.8331366401043],[120.24660246602468,23.843268103723588],[120.25380253802541,23.86859676277183],[120.25740257402578,23.878728226391132],[120.28620286202863,23.902368308169486],[120.29340293402936,23.912499771788788],[120.30420304203045,23.939517008106904],[120.31860318603185,23.966534244425034],[120.34020340203404,24.022257294331155],[120.35100351003513,24.037454489760094],[120.36180361803616,24.049274530649285],[120.37260372603726,24.054340262458922],[120.37980379803798,24.0577174169987],[120.38700387003871,24.062783148808336],[120.38700387003871,24.07291461242764],[120.39060390603908,24.083046076046926],[120.4122041220412,24.09655469420599],[120.41580415804157,24.106686157825294],[120.41940419404193,24.142146280492824],[120.4230042300423,24.152277744112126],[120.43380433804339,24.16072063046154],[120.4770047700477,24.206312216748373],[120.4770047700477,24.209689371288135],[120.48060480604806,24.221509412177312],[120.49140491404916,24.229952298526726],[120.50220502205025,24.25359238030508],[120.51300513005128,24.29580681205215],[120.54900549005492,24.351529861958284],[120.55980559805602,24.38530140735594],[120.57060570605705,24.40556433459453],[120.62100621006209,24.456221652691013],[120.649806498065,24.48323888900913],[120.65700657006573,24.498436084438083],[120.6606066060661,24.520387588946548],[120.66780667806677,24.54065051618514],[120.68940689406895,24.576110638852683],[120.69660696606968,24.59806214336116],[120.70380703807041,24.606505029710576],[120.7290072900729,24.6132593387901],[120.73620736207363,24.621702225139515],[120.73980739807399,24.63014511148893],[120.74340743407436,24.638587997838343],[120.76140761407618,24.653785193267282],[120.77940779407794,24.66560523415646],[120.80100801008012,24.67067096596611],[120.82620826208262,24.66560523415646],[120.82260822608225,24.685868161395064],[120.83340833408334,24.69768820228424],[120.8478084780848,24.71119682044329],[120.85500855008553,24.731459747681896],[120.8586085860859,24.736525479491533],[120.87300873008729,24.743279788571073],[120.87660876608766,24.761854138539775],[120.89820898208984,24.80069141574708],[120.90540905409057,24.81082287936637],[120.90900909009093,24.81757718844591],[120.90900909009093,24.82264292025556],[120.90540905409057,24.829397229335086],[120.9018090180902,24.83615153841461],[120.90900909009093,24.846283002033914],[120.9162091620916,24.85303731111344],[120.91980919809197,24.861480197462853],[120.92340923409233,24.87498881562192],[120.9270092700927,24.88512027924122],[120.93420934209342,24.89525174286051],[120.94500945009452,24.90200605194005],[120.95220952209525,24.90538320647981],[120.95220952209525,24.908760361019574],[120.95580955809561,24.918891824638862],[120.96300963009634,24.94084332914734],[120.97020970209701,24.950974792766644],[121.00621006210065,24.99994353359324],[121.03141031410314,25.028649347181243],[121.06021060210605,25.050600851689723],[121.12861128611286,25.070863778928313],[121.14661146611468,25.0809952425476],[121.16101161011613,25.091126706166904],[121.17541175411753,25.099569592516318],[121.21141211412117,25.111389633405494],[121.2870128701287,25.12320967429467],[121.33021330213302,25.12996398337421],[121.34821348213484,25.136718292453736],[121.37341373413733,25.155292642422452],[121.3770137701377,25.158669796962215],[121.38781387813879,25.158669796962215],[121.39861398613988,25.158669796962215],[121.41301413014133,25.155292642422452],[121.420214202142,25.14684975607304],[121.42381423814237,25.136718292453736],[121.4310143101431,25.131652560644085],[121.44181441814419,25.136718292453736],[121.4310143101431,25.155292642422452],[121.4058140581406,25.175555569661043],[121.39501395013951,25.18230987874057],[121.39861398613988,25.19244134235987],[121.4058140581406,25.197507074169508],[121.41301413014133,25.200884228709285],[121.4166141661417,25.204261383249047],[121.42381423814237,25.221147155947875],[121.43461434614346,25.241410083186466],[121.45981459814601,25.261673010425056],[121.49941499414996,25.278558783123884],[121.5390153901539,25.287001669473298],[121.58221582215822,25.283624514933535],[121.59661596615967,25.27180447404436],[121.63621636216362,25.22283573321775],[121.65061650616508,25.197507074169508],[121.65421654216544,25.199195651439396],[121.66501665016654,25.200884228709285],[121.67581675816757,25.20257280597916],[121.6830168301683,25.200884228709285],[121.6830168301683,25.197507074169508],[121.67941679416793,25.19244134235987],[121.67581675816757,25.18737561055022],[121.67581675816757,25.178932724200806],[121.67941679416793,25.175555569661043],[121.69381693816939,25.16542410604174],[121.69741697416976,25.162046951501978],[121.70461704617048,25.156981219692327],[121.71901719017194,25.151915487882675],[121.89181891818919,25.113078210675383],[121.90621906219064,25.106323901595843],[121.89901899018992,25.094503860706666],[121.89901899018992,25.084372397087378],[121.89901899018992,25.065798047118662],[121.90981909819101,25.03540365626077],[121.9206192061921,25.021895038101718],[121.92781927819277,25.018517883561955],[121.95301953019532,25.021895038101718],[121.96741967419678,25.021895038101718],[121.98181981819818,25.016829306292067],[121.99621996219963,25.01007499721254],[122.00702007020072,25.001632110863127],[121.92781927819277,24.966171988195583],[121.90621906219064,24.949286215496755]]],[[[-112.27612276122761,28.768847999971427],[-112.29052290522905,28.763782268161776],[-112.30852308523085,28.74689649546295],[-112.32652326523265,28.762093690891888],[-112.34452344523444,28.76547084543165],[-112.35892358923589,28.758716536352125],[-112.36612366123661,28.77222515451119],[-112.38052380523806,28.773913731781064],[-112.39852398523985,28.79248808174978],[-112.41292412924129,28.800930968099195],[-112.42732427324273,28.797553813559432],[-112.43452434524345,28.80261954536907],[-112.45612456124562,28.800930968099195],[-112.4669246692467,28.805996699908846],[-112.4669246692467,28.819505318067897],[-112.49212492124921,28.822882472607674],[-112.49572495724956,28.833013936226962],[-112.52092520925208,28.84483397711614],[-112.54972549725497,28.858342595275204],[-112.56052560525605,28.868474058894506],[-112.57132571325712,28.868474058894506],[-112.58212582125822,28.87522836797403],[-112.5569255692557,28.89211414067286],[-112.52452524525245,28.908999913371687],[-112.510125101251,28.92757426334039],[-112.50292502925029,28.93263999515004],[-112.49932499324993,28.941082881499455],[-112.49572495724956,28.951214345118757],[-112.49212492124921,28.95965723146817],[-112.48492484924849,28.971477272357347],[-112.48852488524885,28.981608735976636],[-112.49932499324993,28.99005162232605],[-112.50292502925029,29.03226605407312],[-112.49932499324993,29.076169063090077],[-112.49212492124921,29.118383494837147],[-112.48132481324814,29.155532194774565],[-112.47412474124741,29.169040812933616],[-112.46332463324633,29.18254943109268],[-112.45252452524525,29.194369471981858],[-112.43812438124381,29.202812358331272],[-112.42372423724237,29.189303740172207],[-112.40212402124021,29.189303740172207],[-112.38052380523806,29.20450093560116],[-112.36252362523625,29.218009553760226],[-112.34452344523444,29.22138670829999],[-112.31572315723157,29.2196981310301],[-112.30132301323013,29.223075285569863],[-112.28692286922869,29.233206749189165],[-112.27972279722798,29.24164963553858],[-112.26532265322653,29.24671536734823],[-112.26892268922688,29.238272480998816],[-112.28332283322833,29.22476386283975],[-112.27612276122761,29.20956666741081],[-112.26532265322653,29.19774662652162],[-112.26532265322653,29.192680894711984],[-112.26892268922688,29.18423800836257],[-112.26892268922688,29.175795122013156],[-112.27252272522725,29.165663658393854],[-112.26892268922688,29.15215504023479],[-112.27252272522725,29.13695784480585],[-112.23652236522365,29.096431990328668],[-112.19692196921969,29.02213459045383],[-112.2149221492215,28.986674467786287],[-112.2149221492215,28.95459149965852],[-112.22932229322294,28.903934181562036],[-112.24372243722436,28.888736986133097],[-112.23652236522365,28.87691694524392],[-112.25452254522546,28.856654018005315],[-112.2581225812258,28.838079668036613],[-112.27252272522725,28.822882472607674],[-112.27612276122761,28.805996699908846],[-112.27252272522725,28.784045195400367],[-112.26172261722617,28.780668040860604],[-112.25452254522546,28.768847999971427],[-112.26172261722617,28.763782268161776],[-112.27612276122761,28.768847999971427]]],[[[-131.11151111511114,52.172528960545634],[-131.12231122311223,52.18434900143481],[-131.12231122311223,52.19785761959386],[-131.12951129511293,52.20967766048304],[-131.14751147511475,52.213054815022815],[-131.14031140311403,52.177594692355285],[-131.15111151111512,52.14213456968773],[-131.17631176311764,52.1252487969889],[-131.20151201512016,52.13875741514798],[-131.2087120871209,52.1539546105769],[-131.21231212312122,52.186037578704685],[-131.2159121591216,52.199546196863736],[-131.22671226712268,52.21136623775291],[-131.24471244712447,52.22318627864212],[-131.27711277112772,52.240072051340945],[-131.2411124111241,52.17084038327573],[-131.23751237512374,52.1353802606082],[-131.26271262712626,52.1252487969889],[-131.28071280712805,52.13200310606845],[-131.29151291512915,52.14720030149738],[-131.30231302313024,52.164086074196206],[-131.3059130591306,52.17590611508538],[-131.30951309513097,52.18941473324446],[-131.33831338313382,52.216431969562564],[-131.34551345513455,52.235006319531294],[-131.35271352713528,52.235006319531294],[-131.35631356313564,52.199546196863736],[-131.38151381513813,52.20292335140351],[-131.41031410314105,52.22318627864212],[-131.43191431914317,52.24513778315057],[-131.44271442714427,52.25864640130965],[-131.449914499145,52.2721550194687],[-131.45711457114572,52.283975060357875],[-131.48951489514894,52.29410652397718],[-131.50031500315004,52.305926564866354],[-131.50751507515076,52.319435183025405],[-131.51831518315183,52.32956664664471],[-131.52551525515256,52.324500914835056],[-131.53631536315362,52.32281233756518],[-131.5471154711547,52.324500914835056],[-131.5579155791558,52.32956664664471],[-131.5471154711547,52.34307526480379],[-131.53631536315362,52.35827246023271],[-131.5579155791558,52.351518151153186],[-131.56871568715687,52.351518151153186],[-131.5759157591576,52.35489530569296],[-131.57231572315723,52.35658388296284],[-131.5831158311583,52.38528969655084],[-131.58671586715866,52.38866685109062],[-131.5759157591576,52.403864046519544],[-131.55071550715508,52.403864046519544],[-131.5219152191522,52.39710973744002],[-131.5039150391504,52.39204400563037],[-131.5111151111511,52.408929778329195],[-131.52911529115292,52.42074981921837],[-131.55071550715508,52.4291927055678],[-131.56871568715687,52.43256986010755],[-131.57951579515796,52.4291927055678],[-131.5939159391594,52.42412697375815],[-131.60471604716048,52.422438396488275],[-131.61551615516154,52.4291927055678],[-131.64431644316443,52.45452136461603],[-131.6479164791648,52.457898519155805],[-131.65871658716588,52.47816144639438],[-131.68391683916838,52.48998148728356],[-131.73431734317342,52.50180152817276],[-131.75951759517596,52.51193299179204],[-131.8819188191882,52.5760989280476],[-131.89631896318963,52.587918968936776],[-131.89991899919,52.596361855286176],[-131.89991899919,52.609870473445255],[-131.90351903519036,52.62000193706453],[-131.91071910719108,52.62506766887418],[-131.9251192511925,52.62675624614408],[-131.92871928719288,52.63013340068383],[-131.92871928719288,52.648707750652534],[-131.93951939519394,52.65039632792244],[-132.01152011520117,52.680790718780315],[-132.0871208712087,52.734825191416576],[-132.0619206192062,52.7601538504648],[-132.04392043920438,52.765219582274455],[-132.02232022320223,52.76184242773468],[-132.01152011520117,52.756776695925026],[-131.96831968319682,52.72807088233702],[-131.96471964719646,52.734825191416576],[-132.00072000720007,52.76690815954433],[-132.01872018720186,52.77535104589376],[-132.00432004320044,52.78210535497328],[-131.96471964719646,52.75508811865515],[-131.94671946719467,52.7398909232262],[-131.93591935919358,52.7314480368768],[-131.92151921519215,52.72807088233702],[-131.9251192511925,52.734825191416576],[-131.92871928719288,52.7415795004961],[-131.93591935919358,52.74495665503585],[-131.93951939519394,52.74833380957563],[-131.93951939519394,52.75508811865515],[-131.93951939519394,52.773662468623854],[-131.96111961119612,52.787171086782934],[-132.01872018720186,52.80236828221186],[-132.03672036720366,52.81756547764081],[-132.06552065520654,52.849648445768594],[-132.0871208712087,52.85809133211799],[-132.06552065520654,52.82094263218059],[-132.0619206192062,52.80405685948176],[-132.0691206912069,52.79561397313233],[-132.09072090720906,52.787171086782934],[-132.10872108721088,52.756776695925026],[-132.13392133921337,52.75508811865515],[-132.1411214112141,52.75846527319493],[-132.1771217712177,52.78210535497328],[-132.1771217712177,52.78548250951303],[-132.18072180721808,52.79392539586246],[-132.18072180721808,52.79561397313233],[-132.18792187921878,52.79899112767211],[-132.2059220592206,52.80236828221186],[-132.21312213122133,52.805745436751636],[-132.22752227522275,52.81756547764081],[-132.23832238322382,52.83445125033964],[-132.24192241922418,52.85133702303847],[-132.2239222392224,52.86484564119752],[-132.28872288722886,52.88341999116625],[-132.30672306723068,52.895240032055426],[-132.32832328323283,52.91381438202413],[-132.33552335523353,52.922257268373556],[-132.34272342723426,52.94252019561213],[-132.3391233912339,52.94252019561213],[-132.32832328323283,52.95096308196156],[-132.31752317523174,52.95434023650131],[-132.28872288722886,52.94927450469166],[-132.28152281522816,52.95096308196156],[-132.27072270722707,52.956028813771184],[-132.259922599226,52.957717391041086],[-132.2491224912249,52.956028813771184],[-132.23832238322382,52.95434023650131],[-132.19872198721987,52.93238873199283],[-132.18072180721808,52.92732300018318],[-132.16632166321662,52.94083161834226],[-132.18072180721808,52.94252019561213],[-132.18792187921878,52.94927450469166],[-132.19872198721987,52.956028813771184],[-132.20232202322023,52.96784885466039],[-132.1411214112141,52.93407730926273],[-132.1411214112141,52.94252019561213],[-132.14472144721447,52.95096308196156],[-132.1519215192152,52.956028813771184],[-132.16272162721629,52.95940596831096],[-132.16272162721629,52.96784885466039],[-132.14832148321483,52.97122600920014],[-132.13032130321304,52.979668895549565],[-132.11592115921158,52.99148893643874],[-132.11232112321125,53.001620400058016],[-132.13032130321304,53.00668613186767],[-132.18072180721808,52.99824324551827],[-132.19872198721987,53.00499755459779],[-132.23112231122312,53.02694905910627],[-132.27072270722707,53.03032621364605],[-132.34632346323463,53.028637636376146],[-132.34272342723426,53.03876909999545],[-132.3391233912339,53.042146254535226],[-132.35712357123572,53.03876909999545],[-132.3931239312393,53.03539194545567],[-132.40752407524076,53.028637636376146],[-132.4219242192422,53.042146254535226],[-132.4363243632436,53.04045767726532],[-132.45432454324543,53.0337033681858],[-132.46872468724686,53.028637636376146],[-132.49032490324902,53.03201479091592],[-132.50472504725047,53.04045767726532],[-132.50832508325084,53.0539662954244],[-132.49752497524975,53.07085206812323],[-132.51552515525157,53.07422922266298],[-132.5371253712537,53.086049263552155],[-132.55152551525515,53.099557881711235],[-132.5479254792548,53.104623613520886],[-132.53352533525336,53.10968934533051],[-132.54072540725406,53.121509386219714],[-132.5659256592566,53.14514946799807],[-132.54072540725406,53.15190377707759],[-132.51552515525157,53.14683804526794],[-132.48672486724865,53.13670658164864],[-132.4579245792458,53.13164084983899],[-132.37152371523715,53.13332942710889],[-132.34632346323463,53.13839515891854],[-132.3391233912339,53.14177231345829],[-132.3211232112321,53.15528093161734],[-132.31032310323104,53.15865808615712],[-132.29592295922959,53.162035240696895],[-132.24552245522455,53.15190377707759],[-132.06552065520654,53.162035240696895],[-132.0511205112051,53.170478127046295],[-132.04032040320402,53.18229816793547],[-131.97551975519755,53.21438113606325],[-131.9719197191972,53.21606971333313],[-131.96111961119612,53.21438113606325],[-131.9539195391954,53.21438113606325],[-131.95031950319503,53.217758290603],[-131.93951939519394,53.2278897542223],[-131.90351903519036,53.24139837238138],[-131.83871838718386,53.24139837238138],[-131.8279182791828,53.24477552692113],[-131.82071820718207,53.25152983600066],[-131.809918099181,53.25659556781031],[-131.7991179911799,53.254906990540434],[-131.79551795517955,53.25152983600066],[-131.76671766717666,53.1991839406343],[-131.7631176311763,53.18229816793547],[-131.78471784717846,53.17385528158607],[-131.78471784717846,53.16541239523664],[-131.719917199172,53.15359235434747],[-131.7019170191702,53.14514946799807],[-131.69831698316983,53.14177231345829],[-131.68751687516874,53.12488654075946],[-131.68031680316804,53.11813223167994],[-131.66951669516695,53.11644365441006],[-131.65151651516516,53.11644365441006],[-131.64071640716406,53.11137792260041],[-131.63351633516334,53.10124645898111],[-131.61191611916118,53.05565487269428],[-131.60471604716048,53.04890056361475],[-131.59751597515975,53.045523409074974],[-131.5939159391594,53.042146254535226],[-131.60471604716048,53.03539194545567],[-131.6191161911619,53.0337033681858],[-131.629916299163,53.03539194545567],[-131.64071640716406,53.03876909999545],[-131.65151651516516,53.04721198634485],[-131.66951669516695,53.05565487269428],[-131.719917199172,53.05565487269428],[-131.74151741517414,53.06072060450393],[-131.7631176311763,53.06916349085333],[-131.78471784717846,53.07422922266298],[-131.8279182791828,53.077606377202756],[-131.8459184591846,53.07422922266298],[-131.88551885518854,53.06578633631358],[-131.90351903519036,53.064097759043676],[-132.00432004320044,53.064097759043676],[-131.98991989919898,53.0539662954244],[-131.95031950319503,53.04721198634485],[-131.93951939519394,53.03876909999545],[-131.93951939519394,53.02188332729662],[-131.93591935919358,53.00837470913757],[-131.93231932319324,52.99824324551827],[-131.92151921519215,52.988111781898965],[-131.90711907119072,53.015129018217095],[-131.89991899919,53.02188332729662],[-131.8891188911889,53.028637636376146],[-131.86391863918638,53.04045767726532],[-131.85671856718568,53.04721198634485],[-131.8351183511835,53.050589140884625],[-131.74871748717487,53.02188332729662],[-131.68031680316804,53.01175186367732],[-131.65151651516516,53.00330897732792],[-131.6371163711637,53.001620400058016],[-131.62631626316264,52.99824324551827],[-131.60831608316084,52.98473462735919],[-131.60111601116012,52.98135747281944],[-131.5939159391594,52.97629174100979],[-131.60111601116012,52.966160277390486],[-131.61551615516154,52.956028813771184],[-131.6191161911619,52.95434023650131],[-131.62631626316264,52.94083161834226],[-131.62271622716227,52.94083161834226],[-131.6191161911619,52.93745446380248],[-131.61551615516154,52.93238873199283],[-131.61191611916118,52.92732300018318],[-131.6191161911619,52.920568691103654],[-131.64071640716406,52.90874865021448],[-131.6731167311673,52.88341999116625],[-131.69471694716947,52.876665682086696],[-131.7991179911799,52.87497710481682],[-131.82071820718207,52.8783542593566],[-131.84231842318422,52.895240032055426],[-131.86031860318604,52.915502959294],[-131.87831878318784,52.930700154722956],[-131.89631896318963,52.939143041072356],[-131.92151921519215,52.94083161834226],[-131.93591935919358,52.939143041072356],[-131.9431194311943,52.93745446380248],[-131.95031950319503,52.93407730926273],[-131.93951939519394,52.92732300018318],[-131.9251192511925,52.922257268373556],[-131.91071910719108,52.91888011383378],[-131.89271892718926,52.91888011383378],[-131.89271892718926,52.91381438202413],[-131.98271982719828,52.885108568436124],[-131.98271982719828,52.8783542593566],[-131.9539195391954,52.88004283662647],[-131.9251192511925,52.890174300245775],[-131.89991899919,52.895240032055426],[-131.87471874718747,52.885108568436124],[-131.86031860318604,52.8783542593566],[-131.85671856718568,52.87497710481682],[-131.85311853118532,52.86653421846742],[-131.85671856718568,52.863157063927645],[-131.86751867518674,52.85809133211799],[-131.8711187111871,52.85133702303847],[-131.87471874718747,52.84627129122882],[-131.87831878318784,52.84289413668907],[-131.8819188191882,52.841205559419166],[-131.87831878318784,52.83107409579986],[-131.8711187111871,52.83107409579986],[-131.86391863918638,52.83445125033964],[-131.85671856718568,52.83445125033964],[-131.8351183511835,52.80743401402151],[-131.8279182791828,52.80236828221186],[-131.7019170191702,52.80236828221186],[-131.6731167311673,52.80743401402151],[-131.66231662316622,52.805745436751636],[-131.65511655116552,52.79561397313233],[-131.68751687516874,52.79054824132268],[-131.73071730717308,52.78885966405281],[-131.77031770317703,52.78379393224316],[-131.7991179911799,52.76184242773468],[-131.809918099181,52.770285314084106],[-131.82431824318243,52.773662468623854],[-131.83871838718386,52.77197389135398],[-131.85311853118532,52.7685967368142],[-131.83871838718386,52.7685967368142],[-131.8279182791828,52.765219582274455],[-131.80631806318064,52.75508811865515],[-131.8351183511835,52.72638230506715],[-131.83871838718386,52.71456226417797],[-131.78111781117812,52.71793941871775],[-131.7559175591756,52.71456226417797],[-131.73071730717308,52.70105364601892],[-131.71271712717126,52.680790718780315],[-131.6911169111691,52.653773482462185],[-131.68751687516874,52.631821977953706],[-131.70911709117092,52.62506766887418],[-131.6911169111691,52.613247627985004],[-131.65871658716588,52.582853237127125],[-131.64071640716406,52.577787505317474],[-131.6191161911619,52.57272177350782],[-131.62631626316264,52.56427888715842],[-131.64431644316443,52.55414742353912],[-131.66231662316622,52.54908169172947],[-131.66231662316622,52.542327382649944],[-131.65151651516516,52.53895022811017],[-131.64431644316443,52.53726165084029],[-131.62271622716227,52.53557307357042],[-131.61551615516154,52.53219591903064],[-131.61191611916118,52.525441609951116],[-131.60471604716048,52.51868730087159],[-131.5939159391594,52.515310146331814],[-131.57951579515796,52.520375878141465],[-131.56871568715687,52.53050734176077],[-131.55431554315544,52.53726165084029],[-131.53631536315362,52.528818764490865],[-131.53991539915398,52.51362156906194],[-131.51831518315183,52.50855583725229],[-131.4679146791468,52.50855583725229],[-131.48231482314822,52.484915755473935],[-131.46431464314642,52.47309571458476],[-131.43551435514354,52.46465282823533],[-131.41391413914138,52.45452136461603],[-131.44271442714427,52.40724120105932],[-131.449914499145,52.39204400563037],[-131.42471424714248,52.39373258290027],[-131.39951399513996,52.39035542836049],[-131.38871388713886,52.37853538747132],[-131.40671406714068,52.35827246023271],[-131.39231392313923,52.359961037502615],[-131.3779137791378,52.36671534658214],[-131.3671136711367,52.37009250112189],[-131.35271352713528,52.365026769312266],[-131.35271352713528,52.38528969655084],[-131.35631356313564,52.400486891979796],[-131.35631356313564,52.41230693286897],[-131.34551345513455,52.42581555102802],[-131.3311133111331,52.43425843737745],[-131.28791287912878,52.4376355919172],[-131.24831248312483,52.4477670555365],[-131.2411124111241,52.435947014647326],[-131.24831248312483,52.4190612419485],[-131.28431284312842,52.40724120105932],[-131.2951129511295,52.39373258290027],[-131.30231302313024,52.37684681020144],[-131.3059130591306,52.35827246023271],[-131.2951129511295,52.36671534658214],[-131.28071280712805,52.37009250112189],[-131.24831248312483,52.37178107839179],[-131.25551255512556,52.35489530569296],[-131.26271262712626,52.351518151153186],[-131.27351273512735,52.351518151153186],[-131.28431284312842,52.34982957388331],[-131.3059130591306,52.34307526480379],[-131.31671316713167,52.338009532994135],[-131.3239132391324,52.32956664664471],[-131.3311133111331,52.34476384207366],[-131.3419134191342,52.35489530569296],[-131.34911349113491,52.35658388296284],[-131.359913599136,52.34476384207366],[-131.34551345513455,52.33463237845436],[-131.3311133111331,52.297483678516954],[-131.31671316713167,52.282286483088],[-131.30231302313024,52.29410652397718],[-131.2411124111241,52.262023555849396],[-131.2159121591216,52.262023555849396],[-131.24831248312483,52.278909328548224],[-131.25911259112593,52.289040792167526],[-131.25551255512556,52.30423798759648],[-131.24831248312483,52.305926564866354],[-131.2411124111241,52.302549410326606],[-131.22671226712268,52.29579510124705],[-131.1979119791198,52.31268087394588],[-131.18351183511834,52.31774660575553],[-131.16191161911618,52.319435183025405],[-131.1439114391144,52.31605802848566],[-131.1331113311133,52.305926564866354],[-131.12951129511293,52.29579510124705],[-131.09711097110971,52.28735221489765],[-131.08631086310862,52.275532174008475],[-131.10071100711008,52.25526924676987],[-131.1259112591126,52.25020351496022],[-131.15471154711548,52.248514937690345],[-131.17991179911797,52.240072051340945],[-131.17991179911797,52.235006319531294],[-131.1259112591126,52.235006319531294],[-131.10071100711008,52.22994058772164],[-131.0791107911079,52.21980912410234],[-131.0431104311043,52.23331774226139],[-131.02511025110252,52.235006319531294],[-131.01071010710106,52.226563433181866],[-131.00711007110073,52.213054815022815],[-131.01431014310143,52.19448046505411],[-131.02871028710285,52.180971846895034],[-131.03591035910358,52.172528960545634],[-131.0539105391054,52.16915180600586],[-131.09711097110971,52.16915180600586],[-131.11151111511114,52.172528960545634]]],[[[-132.58032580325803,53.20762682698373],[-132.56232562325624,53.219446867872904],[-132.55512555125551,53.22620117695243],[-132.55152551525515,53.23464406330183],[-132.56952569525694,53.23464406330183],[-132.6271262712627,53.254906990540434],[-132.6667266672667,53.26166129961996],[-132.709927099271,53.26166129961996],[-132.6991269912699,53.27854707231879],[-132.6739267392674,53.28867853593809],[-132.61992619926198,53.30218715409714],[-132.61992619926198,53.30556430863692],[-132.61632616326165,53.308941463176694],[-132.61632616326165,53.31400719498632],[-132.61272612726128,53.317384349526094],[-132.58032580325803,53.32413865860562],[-132.5659256592566,53.31907292679597],[-132.55152551525515,53.31231861771644],[-132.54432544325442,53.31231861771644],[-132.5371253712537,53.327515813145396],[-132.56952569525694,53.3376472767647],[-132.75672756727568,53.317384349526094],[-132.74952749527495,53.330892967685145],[-132.71352713527136,53.36973024489245],[-132.70272702727027,53.37817313124188],[-132.69192691926918,53.37817313124188],[-132.65952659526596,53.36804166762258],[-132.64872648726487,53.3646645130828],[-132.529925299253,53.3646645130828],[-132.5191251912519,53.36128735854305],[-132.5011250112501,53.34777874038397],[-132.48312483124832,53.34102443130445],[-132.46512465124653,53.327515813145396],[-132.43992439924398,53.32076150406587],[-132.4291242912429,53.31569577225622],[-132.4219242192422,53.30725288590679],[-132.4147241472415,53.29712142228749],[-132.40032400324003,53.330892967685145],[-132.42552425524255,53.35115589492375],[-132.49752497524975,53.37817313124188],[-132.50472504725047,53.38661601759128],[-132.5119251192512,53.406878944829884],[-132.5191251912519,53.411944676639536],[-132.529925299253,53.41701040844919],[-132.55152551525515,53.41869898571906],[-132.64152641526414,53.43220760387811],[-132.66312663126632,53.44065049022754],[-132.6559265592656,53.46260199473602],[-132.65952659526596,53.482864921974596],[-132.67032670326702,53.491307808324024],[-132.68472684726848,53.45753626292637],[-132.70632706327063,53.450781953846814],[-132.73512735127352,53.45415910838659],[-132.75672756727568,53.46091341746612],[-132.75672756727568,53.46766772654564],[-132.74232742327422,53.47611061289507],[-132.7279272792728,53.48961923105412],[-132.72432724327243,53.504816426483075],[-132.73512735127352,53.51663646737225],[-132.74952749527495,53.51663646737225],[-132.7531275312753,53.50819358102285],[-132.75672756727568,53.49975069467342],[-132.76032760327604,53.49468496286377],[-132.7711277112771,53.4929963855939],[-132.8431284312843,53.469356303815545],[-132.86112861128612,53.46766772654564],[-132.87192871928718,53.474422035625196],[-132.87192871928718,53.48793065378425],[-132.8359283592836,53.509882158292726],[-132.8251282512825,53.5217021991819],[-132.92952929529295,53.5217021991819],[-132.9187291872919,53.5301450855313],[-132.90432904329043,53.55040801276991],[-132.89352893528934,53.55716232184943],[-132.9079290792908,53.567293785468735],[-132.92952929529295,53.56560520819886],[-132.95472954729547,53.55885089911931],[-132.97632976329763,53.55716232184943],[-132.97272972729726,53.575736671818134],[-132.99072990729906,53.589245289977214],[-132.96912969129693,53.59768817632661],[-132.94752947529474,53.59768817632661],[-132.90072900729007,53.589245289977214],[-132.88272882728828,53.594311021786865],[-132.88992889928898,53.61963968083509],[-132.98352983529836,53.6669198443918],[-133.01233012330124,53.687182771630404],[-132.99792997929978,53.68042846255088],[-132.98712987129872,53.68042846255088],[-132.97632976329763,53.68380561709063],[-132.96912969129693,53.69393708070993],[-132.95472954729547,53.687182771630404],[-132.94032940329402,53.68549419436053],[-132.92952929529295,53.69055992617018],[-132.93672936729368,53.700691389789455],[-132.9511295112951,53.70744569886901],[-132.97272972729726,53.71082285340876],[-132.98352983529836,53.71757716248828],[-132.97632976329763,53.73615151245701],[-132.98352983529836,53.74459439880641],[-132.97632976329763,53.763168748775115],[-132.98352983529836,53.76992305785467],[-132.99432994329942,53.76992305785467],[-133.00153001530015,53.76654590331489],[-133.00873008730088,53.75979159423537],[-133.01953019530197,53.754725862425715],[-133.03033030330303,53.754725862425715],[-133.0411304113041,53.76148017150524],[-133.06273062730628,53.76485732604502],[-133.09873098730986,53.77836594420407],[-133.10953109531096,53.7868088305535],[-133.11313113131132,53.79862887144267],[-133.09873098730986,53.80707175779207],[-133.06633066330664,53.817203221411376],[-133.0771307713077,53.8340889941102],[-133.12033120331205,53.861106230428334],[-133.13833138331384,53.87630342585726],[-133.14553145531454,53.896566353095864],[-133.13473134731348,53.915140703064566],[-133.12393123931238,53.93033789849352],[-133.12033120331205,53.94046936211282],[-133.10233102331023,53.95397798027187],[-133.09873098730986,53.9708637529707],[-133.1059310593106,53.98774952566953],[-133.10233102331023,54.00294672109848],[-133.0951309513095,54.004635298368356],[-133.08073080730807,54.00125814382858],[-133.07353073530734,54.00294672109848],[-133.069930699307,54.00632387563823],[-133.06633066330664,54.00970103017801],[-133.06633066330664,54.013078184717756],[-133.06633066330664,54.01645533925753],[-133.0519305193052,54.026586802876835],[-133.04473044730446,54.035029689226235],[-133.03753037530376,54.04347257557566],[-133.04833048330482,54.05022688465519],[-133.0519305193052,54.056981193734714],[-133.05553055530555,54.067112657354016],[-133.06633066330664,54.09412989367215],[-133.07353073530734,54.10088420275167],[-133.0879308793088,54.10426135729142],[-133.04473044730446,54.14816436630838],[-133.0411304113041,54.16505013900721],[-133.07353073530734,54.16673871627708],[-133.0519305193052,54.18362448897591],[-133.02673026730267,54.17687017989638],[-132.99792997929978,54.16336156173733],[-132.979929799298,54.16336156173733],[-132.96912969129693,54.16842729354698],[-132.9511295112951,54.16842729354698],[-132.93672936729368,54.16336156173733],[-132.9259292592926,54.15660725265781],[-132.91512915129152,54.14816436630838],[-132.9079290792908,54.14478721176863],[-132.8359283592836,54.1279014390698],[-132.77832778327783,54.124524284530025],[-132.7531275312753,54.1279014390698],[-132.70272702727027,54.14309863449873],[-132.6739267392674,54.146475789038504],[-132.64872648726487,54.14141005722885],[-132.6019260192602,54.12283570726015],[-132.57672576725767,54.1177699754505],[-132.5659256592566,54.1076385118312],[-132.56232562325624,54.08568700732272],[-132.56232562325624,54.06035834827449],[-132.5659256592566,54.04347257557566],[-132.58032580325803,54.02320964833706],[-132.6019260192602,54.01476676198766],[-132.62352623526235,54.00970103017801],[-132.6451264512645,53.999569566558705],[-132.6739267392674,53.969175175700826],[-132.68112681126811,53.950600825732096],[-132.66312663126632,53.94046936211282],[-132.6559265592656,53.94384651665257],[-132.63072630726307,53.964109443891175],[-132.61992619926198,53.9708637529707],[-132.60912609126092,53.97424090751048],[-132.58752587525873,53.97424090751048],[-132.56952569525694,53.98099521659],[-132.55512555125551,53.99788098928883],[-132.5479254792548,54.01983249379731],[-132.54432544325442,54.040095421035886],[-132.53352533525336,54.04684973011541],[-132.4579245792458,54.06373550281424],[-132.43992439924398,54.075555543703416],[-132.42552425524255,54.089064161862495],[-132.40752407524076,54.09919562548177],[-132.29592295922959,54.11270424364085],[-132.2851228512285,54.1076385118312],[-132.27432274322743,54.09581847094202],[-132.23832238322382,54.07217838916367],[-132.23112231122312,54.05360403919494],[-132.23112231122312,54.040095421035886],[-132.23472234722345,54.035029689226235],[-132.23112231122312,54.029963957416584],[-132.21672216722166,54.02320964833706],[-132.20232202322023,54.01814391652741],[-132.17352173521735,54.01476676198766],[-132.16272162721629,54.008012452908105],[-132.14832148321483,53.99281525747918],[-132.14472144721447,53.97424090751048],[-132.14832148321483,53.95397798027187],[-132.15552155521556,53.93371505303327],[-132.14472144721447,53.923583589413994],[-132.12672126721267,53.901632084905515],[-132.11592115921158,53.88136915766691],[-132.11592115921158,53.87123769404761],[-132.14472144721447,53.84084330318973],[-132.15552155521556,53.83577757138008],[-132.1843218432184,53.8340889941102],[-132.1951219512195,53.83071183957043],[-132.21312213122133,53.8155146441415],[-132.2239222392224,53.7952517169029],[-132.24192241922418,53.776677366934194],[-132.2671226712267,53.76992305785467],[-132.3751237512375,53.76148017150524],[-132.39672396723967,53.75303728515584],[-132.43272432724328,53.72602004883771],[-132.45432454324543,53.72095431702806],[-132.4759247592476,53.71757716248828],[-132.52632526325263,53.70406854432923],[-132.55152551525515,53.700691389789455],[-132.60912609126092,53.70406854432923],[-132.63792637926377,53.700691389789455],[-132.65952659526596,53.69055992617018],[-132.6667266672667,53.6770513080111],[-132.6559265592656,53.67536273074123],[-132.63072630726307,53.68042846255088],[-132.61632616326165,53.68042846255088],[-132.60552605526055,53.6770513080111],[-132.59832598325983,53.670296998931576],[-132.59472594725946,53.660165535312274],[-132.59472594725946,53.65341122623275],[-132.60552605526055,53.63145972172427],[-132.58752587525873,53.63652545353392],[-132.5659256592566,53.660165535312274],[-132.55152551525515,53.6669198443918],[-132.54072540725406,53.665231267121925],[-132.5119251192512,53.65003407169297],[-132.49752497524975,53.64665691715322],[-132.46152461524616,53.651722648962874],[-132.38952389523894,53.670296998931576],[-132.35352353523535,53.67198557620145],[-132.38232382323824,53.6483454944231],[-132.4219242192422,53.634836876264046],[-132.4579245792458,53.616262526295344],[-132.48312483124832,53.57742524908804],[-132.46872468724686,53.57742524908804],[-132.4579245792458,53.58417955816756],[-132.4471244712447,53.594311021786865],[-132.4363243632436,53.60444248540614],[-132.40752407524076,53.61288537175557],[-132.37872378723787,53.61795110356522],[-132.31752317523174,53.61795110356522],[-132.28872288722886,53.62301683537487],[-132.27072270722707,53.6399026080737],[-132.28872288722886,53.638214030803795],[-132.31032310323104,53.64159118534357],[-132.32832328323283,53.6483454944231],[-132.3319233192332,53.660165535312274],[-132.31752317523174,53.67198557620145],[-132.29592295922959,53.67367415347135],[-132.25272252722527,53.6669198443918],[-132.21672216722166,53.65509980350262],[-132.20232202322023,53.65509980350262],[-132.1951219512195,53.670296998931576],[-132.18792187921878,53.68042846255088],[-132.15912159121592,53.700691389789455],[-132.15552155521556,53.714200007948534],[-132.16272162721629,53.72602004883771],[-132.18792187921878,53.741217244266664],[-132.1951219512195,53.754725862425715],[-132.1951219512195,53.77330021239442],[-132.1843218432184,53.7868088305535],[-132.17352173521735,53.79862887144267],[-132.16632166321662,53.80707175779207],[-132.16272162721629,53.8138260668716],[-132.11592115921158,53.84084330318973],[-132.0871208712087,53.87799200312716],[-132.079920799208,53.89318919855609],[-132.0871208712087,53.901632084905515],[-132.10872108721088,53.923583589413994],[-132.11232112321125,53.93033789849352],[-132.11592115921158,53.942157939382696],[-132.12672126721267,53.97424090751048],[-132.12672126721267,53.999569566558705],[-132.13032130321304,54.01138960744788],[-132.13752137521374,54.01645533925753],[-132.14832148321483,54.01814391652741],[-132.15912159121592,54.026586802876835],[-132.18072180721808,54.04347257557566],[-132.16632166321662,54.04516115284554],[-132.13032130321304,54.03334111195636],[-132.04752047520475,54.02320964833706],[-131.99351993519934,54.026586802876835],[-131.91791917919178,54.040095421035886],[-131.86391863918638,54.067112657354016],[-131.79551795517955,54.08062127551307],[-131.7559175591756,54.102572780021546],[-131.72351723517235,54.11270424364085],[-131.70911709117092,54.1177699754505],[-131.69471694716947,54.12959001633968],[-131.68031680316804,54.14141005722885],[-131.66231662316622,54.16673871627708],[-131.66231662316622,54.15829582992768],[-131.66231662316622,54.15660725265781],[-131.66951669516695,54.15323009811803],[-131.66231662316622,54.14478721176863],[-131.65871658716588,54.1363443254192],[-131.66231662316622,54.12959001633968],[-131.66951669516695,54.124524284530025],[-131.66951669516695,54.07893269824319],[-131.68031680316804,54.03334111195636],[-131.69471694716947,53.99112668020928],[-131.71631716317162,53.95397798027187],[-131.74871748717487,53.91682928033444],[-131.82071820718207,53.85435192134878],[-131.85311853118532,53.817203221411376],[-131.86391863918638,53.80031744871255],[-131.8711187111871,53.78343167601372],[-131.87471874718747,53.763168748775115],[-131.87471874718747,53.73784008972689],[-131.87831878318784,53.71757716248828],[-131.88551885518854,53.697314235249706],[-131.89631896318963,53.678739885281004],[-131.92151921519215,53.6399026080737],[-131.93231932319324,53.61795110356522],[-131.93591935919358,53.59599959905674],[-131.9251192511925,53.57404809454826],[-131.92151921519215,53.56391663092896],[-131.9251192511925,53.55209659003978],[-131.93231932319324,53.540276549150605],[-131.93951939519394,53.53352224007108],[-131.9431194311943,53.5217021991819],[-131.93951939519394,53.509882158292726],[-131.92871928719288,53.48793065378425],[-131.91431914319142,53.45247053111672],[-131.91431914319142,53.43727333568776],[-131.91791917919178,53.388304594861154],[-131.91791917919178,53.3747959767021],[-131.90711907119072,53.357910204003275],[-131.9251192511925,53.34271300857432],[-131.96471964719646,53.28361280412844],[-131.98271982719828,53.26166129961996],[-132.0079200792008,53.25321841327056],[-132.09432094320942,53.254906990540434],[-132.16632166321662,53.246464104191034],[-132.1951219512195,53.23464406330183],[-132.20952209522096,53.23464406330183],[-132.2239222392224,53.23126690876208],[-132.23112231122312,53.217758290603],[-132.23472234722345,53.20762682698373],[-132.2491224912249,53.20762682698373],[-132.2779227792278,53.21438113606325],[-132.259922599226,53.2008725179042],[-132.24552245522455,53.19580678609455],[-132.20952209522096,53.2008725179042],[-132.12672126721267,53.2008725179042],[-132.13752137521374,53.189052477015],[-132.15552155521556,53.175543858855946],[-132.1771217712177,53.16541239523664],[-132.1951219512195,53.15865808615712],[-132.22752227522275,53.156969508887244],[-132.25632256322564,53.162035240696895],[-132.28152281522816,53.17216670431617],[-132.3031230312303,53.1907410542849],[-132.3139231392314,53.197495363364425],[-132.3211232112321,53.1907410542849],[-132.3211232112321,53.17723243612582],[-132.31752317523174,53.170478127046295],[-132.32472324723247,53.16541239523664],[-132.3391233912339,53.162035240696895],[-132.3751237512375,53.156969508887244],[-132.40032400324003,53.148526622537815],[-132.4147241472415,53.14514946799807],[-132.44352443524434,53.14514946799807],[-132.4579245792458,53.148526622537815],[-132.46872468724686,53.15190377707759],[-132.46152461524616,53.16372381796677],[-132.4579245792458,53.170478127046295],[-132.4579245792458,53.17723243612582],[-132.4579245792458,53.183986745205374],[-132.46512465124653,53.18736389974512],[-132.47232472324723,53.18736389974512],[-132.4759247592476,53.183986745205374],[-132.48312483124832,53.167100972506546],[-132.50472504725047,53.167100972506546],[-132.5371253712537,53.1806095906656],[-132.5371253712537,53.18736389974512],[-132.5191251912519,53.19411820882465],[-132.53352533525336,53.1991839406343],[-132.5659256592566,53.202561095174076],[-132.58032580325803,53.20762682698373]]],[[[-131.97551975519755,54.832038160610864],[-131.95751957519576,54.828661006071115],[-131.95751957519576,54.81684096518194],[-131.95751957519576,54.80333234702286],[-131.95031950319503,54.78982372886381],[-131.96471964719646,54.78475799705416],[-131.97911979119792,54.78306941978428],[-132.01152011520117,54.78306941978428],[-131.9971199711997,54.77631511070476],[-132.00072000720007,54.766183647085455],[-132.00072000720007,54.75605218346615],[-131.9971199711997,54.74592071984685],[-131.9971199711997,54.73578925622755],[-132.00072000720007,54.7222806380685],[-132.00432004320044,54.712149174449195],[-132.0079200792008,54.703706288099795],[-132.00432004320044,54.69357482448049],[-132.0691206912069,54.698640556290144],[-132.08352083520833,54.70539486536967],[-132.09432094320942,54.712149174449195],[-132.11232112321125,54.717214906258846],[-132.11952119521195,54.7138377517191],[-132.10512105121052,54.70201771082992],[-132.14832148321483,54.698640556290144],[-132.20232202322023,54.725657792608274],[-132.24552245522455,54.7425435653071],[-132.2779227792278,54.71552632898897],[-132.29232292322922,54.72734636987815],[-132.29592295922959,54.744232142576976],[-132.29592295922959,54.76280649254568],[-132.2851228512285,54.77631511070476],[-132.2671226712267,54.78475799705416],[-132.2239222392224,54.79151230613368],[-132.21672216722166,54.80333234702286],[-132.22032220322203,54.81008665610241],[-132.22752227522275,54.815152387912036],[-132.23472234722345,54.81684096518194],[-132.24552245522455,54.81852954245181],[-132.259922599226,54.815152387912036],[-132.2671226712267,54.80839807883251],[-132.27072270722707,54.801643769752985],[-132.2779227792278,54.79826661521321],[-132.29952299522995,54.79488946067346],[-132.33552335523353,54.80333234702286],[-132.36072360723608,54.80333234702286],[-132.33552335523353,54.815152387912036],[-132.28152281522816,54.83034958334099],[-132.26352263522637,54.84385820150004],[-132.27432274322743,54.85398966511934],[-132.31032310323104,54.86074397419887],[-132.32472324723247,54.86580970600852],[-132.3139231392314,54.87087543781817],[-132.3031230312303,54.872564015088045],[-132.2779227792278,54.872564015088045],[-132.2779227792278,54.8793183241676],[-132.31752317523174,54.88269547870735],[-132.33552335523353,54.887761210517],[-132.349923499235,54.89620409686643],[-132.35352353523535,54.90464698321583],[-132.349923499235,54.913089869565255],[-132.349923499235,54.918155601374906],[-132.36072360723608,54.91984417864478],[-132.37152371523715,54.921532755914654],[-132.37872378723787,54.92322133318453],[-132.38592385923857,54.92828706499418],[-132.3931239312393,54.935041374073705],[-132.37872378723787,54.94010710588336],[-132.36792367923678,54.94179568315326],[-132.36072360723608,54.94010710588336],[-132.36792367923678,54.95023856950266],[-132.38592385923857,54.96374718766174],[-132.3931239312393,54.975567228550915],[-132.3931239312393,54.98738726944009],[-132.38952389523894,55.00089588759914],[-132.37872378723787,55.02284739210762],[-132.4039240392404,55.016093083028096],[-132.41112411124112,54.99414157851962],[-132.4147241472415,54.97219007401114],[-132.41832418324182,54.962058610391836],[-132.4147241472415,54.95530430131231],[-132.41832418324182,54.94348426042313],[-132.4219242192422,54.92997564226408],[-132.4291242912429,54.91984417864478],[-132.4363243632436,54.916467024105],[-132.47232472324723,54.9080241377556],[-132.48672486724865,54.9080241377556],[-132.49392493924938,54.90971271502548],[-132.5011250112501,54.913089869565255],[-132.50472504725047,54.92322133318453],[-132.49752497524975,54.93335279680383],[-132.48312483124832,54.935041374073705],[-132.46872468724686,54.93672995134361],[-132.4579245792458,54.94010710588336],[-132.44352443524434,54.96374718766174],[-132.45072450724507,54.98063296036054],[-132.47232472324723,54.99414157851962],[-132.49032490324902,55.00258446486902],[-132.49392493924938,54.96543576493161],[-132.5191251912519,54.94348426042313],[-132.55152551525515,54.94010710588336],[-132.58032580325803,54.953615724042436],[-132.59472594725946,54.96881291947136],[-132.59832598325983,54.975567228550915],[-132.59832598325983,54.98569869217019],[-132.59472594725946,54.989075846709966],[-132.57672576725767,54.97725580582079],[-132.5659256592566,54.975567228550915],[-132.55512555125551,54.98569869217019],[-132.55152551525515,55.00089588759914],[-132.5479254792548,55.01271592848832],[-132.529925299253,55.016093083028096],[-132.5479254792548,55.019470237567845],[-132.5659256592566,55.02115881483775],[-132.58032580325803,55.0262245466474],[-132.5731257312573,55.0431103193462],[-132.55512555125551,55.0532417829655],[-132.529925299253,55.04986462842575],[-132.50472504725047,55.0447988966161],[-132.48312483124832,55.0431103193462],[-132.46512465124653,55.051553205695626],[-132.529925299253,55.05830751477515],[-132.54432544325442,55.07012755566433],[-132.54072540725406,55.08363617382341],[-132.5119251192512,55.11234198741141],[-132.529925299253,55.11571914195116],[-132.54432544325442,55.12078487376081],[-132.55872558725588,55.12416202830059],[-132.57672576725767,55.11571914195116],[-132.6019260192602,55.07012755566433],[-132.61272612726128,55.06506182385468],[-132.6271262712627,55.08532475109328],[-132.60912609126092,55.11909629649094],[-132.58032580325803,55.15117926461869],[-132.55872558725588,55.16806503731752],[-132.57672576725767,55.17481934639707],[-132.58752587525873,55.18663938728625],[-132.60912609126092,55.211968046334476],[-132.63432634326344,55.23054239630318],[-132.64152641526414,55.24067385992248],[-132.64152641526414,55.255871055351435],[-132.6559265592656,55.242362437192384],[-132.6559265592656,55.218722355414],[-132.64152641526414,55.198459428175426],[-132.62352623526235,55.18832796455612],[-132.61632616326165,55.1815736554766],[-132.61632616326165,55.16806503731752],[-132.61992619926198,55.15286784188859],[-132.63072630726307,55.14611353280907],[-132.69552695526954,55.14611353280907],[-132.70632706327063,55.149490687348816],[-132.73512735127352,55.16806503731752],[-132.77472774727747,55.18326223274647],[-132.78552785527856,55.18832796455612],[-132.79992799928,55.20521373725495],[-132.80712807128072,55.228853819033304],[-132.81072810728108,55.25249390081166],[-132.79992799928,55.27106825078039],[-132.8251282512825,55.27613398259001],[-132.83952839528393,55.27444540532014],[-132.84672846728466,55.26600251897074],[-132.84672846728466,55.25755963262131],[-132.85032850328503,55.247428169002006],[-132.8539285392854,55.24067385992248],[-132.86112861128612,55.23560812811283],[-132.88272882728828,55.225476664493556],[-132.92952929529295,55.21703377814413],[-132.9511295112951,55.20859089179473],[-133.03033030330303,55.21365662360435],[-133.0339303393034,55.225476664493556],[-133.02673026730267,55.23054239630318],[-132.98352983529836,55.23560812811283],[-132.91512915129152,55.264313941700834],[-132.90432904329043,55.27106825078039],[-132.90072900729007,55.27951113712979],[-132.91152911529116,55.28457686893944],[-132.92952929529295,55.282888291669565],[-132.95832958329584,55.27613398259001],[-133.0879308793088,55.27613398259001],[-133.08433084330844,55.27275682805026],[-133.08073080730807,55.26262536443096],[-133.09153091530914,55.27106825078039],[-133.10233102331023,55.27951113712979],[-133.11673116731168,55.287954023479216],[-133.1311313113131,55.28964260074909],[-133.14553145531454,55.287954023479216],[-133.17433174331742,55.27951113712979],[-133.18873188731888,55.27613398259001],[-133.2139321393214,55.27951113712979],[-133.21753217532176,55.287954023479216],[-133.2139321393214,55.30146264163827],[-133.22113221132213,55.31497125979732],[-133.2319323193232,55.32172556887684],[-133.24633246332462,55.326791300686494],[-133.2571325713257,55.33354560976605],[-133.26433264332644,55.345365650655225],[-133.24993249932498,55.3470542279251],[-133.23913239132392,55.3554971142745],[-133.23553235532356,55.36394000062393],[-133.22833228332283,55.37238288697333],[-133.21753217532176,55.380825773322755],[-133.20673206732067,55.3842029278625],[-133.19233192331922,55.385891505132406],[-133.1779317793178,55.385891505132406],[-133.17433174331742,55.385891505132406],[-133.16353163531636,55.37913719605288],[-133.15273152731527,55.37238288697333],[-133.1491314913149,55.37407146424323],[-133.1491314913149,55.37744861878298],[-133.14553145531454,55.380825773322755],[-133.05913059130592,55.36900573243358],[-133.0519305193052,55.3656285778938],[-133.0339303393034,55.353808537004625],[-133.03033030330303,55.35211995973475],[-133.01953019530197,55.350431382464876],[-132.87192871928718,55.358874268814276],[-132.84672846728466,55.35211995973475],[-132.86832868328685,55.36394000062393],[-132.95472954729547,55.37238288697333],[-133.00873008730088,55.38758008240228],[-133.03033030330303,55.40108870056133],[-133.0231302313023,55.41459731872041],[-133.03033030330303,55.42304020506981],[-133.0411304113041,55.42641735960959],[-133.0519305193052,55.42810593687946],[-133.06633066330664,55.42810593687946],[-133.04833048330482,55.43654882322889],[-133.0231302313023,55.44499170957829],[-132.99792997929978,55.448368864118066],[-132.97632976329763,55.448368864118066],[-133.00873008730088,55.456811750467466],[-133.07353073530734,55.451746018657815],[-133.1059310593106,55.46187748227712],[-133.12753127531275,55.483828986785596],[-133.12393123931238,55.5024033367543],[-133.11313113131132,55.519289109453126],[-133.0951309513095,55.53786345942183],[-133.0879308793088,55.54630634577126],[-133.0771307713077,55.56994642754961],[-133.07353073530734,55.57838931389904],[-133.06273062730628,55.58345504570869],[-133.0231302313023,55.598652241137614],[-133.00153001530015,55.61553801383644],[-132.98712987129872,55.62229232291597],[-132.96912969129693,55.62735805472562],[-132.92232922329222,55.62735805472562],[-132.9079290792908,55.63242378653527],[-132.92232922329222,55.63748951834492],[-132.93672936729368,55.639178095614795],[-132.96912969129693,55.639178095614795],[-132.98352983529836,55.63748951834492],[-133.0159301593016,55.62735805472562],[-133.06273062730628,55.62398090018587],[-133.2031320313203,55.58683220024844],[-133.24993249932498,55.58514362297856],[-133.3579335793358,55.61553801383644],[-133.37953379533795,55.62904663199552],[-133.38673386733868,55.65099813650397],[-133.38673386733868,55.66281817739315],[-133.3831338313383,55.6695724864727],[-133.37233372333725,55.67294964101245],[-133.339933399334,55.6780153728221],[-133.34353343533434,55.68476968190163],[-133.36153361533616,55.701655454600456],[-133.36873368733688,55.70334403187036],[-133.37953379533795,55.70503260914023],[-133.38673386733868,55.710098340949884],[-133.3831338313383,55.723606959108935],[-133.36873368733688,55.73373842272824],[-133.3579335793358,55.73036126818846],[-133.3471334713347,55.72191838183906],[-133.33633336333364,55.71178691821976],[-133.32553325533254,55.710098340949884],[-133.31833318333184,55.72698411364871],[-133.31473314733148,55.74893561815719],[-133.3039330393304,55.764132813586116],[-133.2931329313293,55.75737850450659],[-133.26433264332644,55.74724704088729],[-133.23553235532356,55.745558463617414],[-133.22473224732246,55.76075565904637],[-133.2139321393214,55.782707163554846],[-133.19233192331922,55.79790435898377],[-133.16713167131672,55.8063472453332],[-133.1491314913149,55.818167286222376],[-133.14193141931418,55.83167590438143],[-133.13833138331384,55.85531598615978],[-133.13833138331384,55.87726749066826],[-133.14553145531454,55.889087531557436],[-133.15633156331563,55.89584184063696],[-133.159931599316,55.89077610882734],[-133.15633156331563,55.88064464520804],[-133.15633156331563,55.87726749066826],[-133.159931599316,55.86544744977908],[-133.17433174331742,55.86544744977908],[-133.21753217532176,55.884021799747785],[-133.22833228332283,55.89077610882734],[-133.23553235532356,55.90090757244661],[-133.23913239132392,55.90935045879604],[-133.24993249932498,55.93636769511417],[-133.25353253532535,55.941433426923794],[-133.26073260732608,55.94481058146357],[-133.24993249932498,55.953253467813],[-133.23553235532356,55.960007776892525],[-133.22833228332283,55.95831919962262],[-133.2319323193232,55.97013924051183],[-133.24273242732426,55.99715647682993],[-133.24633246332462,56.035993754037236],[-133.24993249932498,56.05625668127584],[-133.27873278732787,56.07651960851442],[-133.27873278732787,56.10184826756267],[-133.26433264332644,56.147439853849505],[-133.2859328593286,56.16770278108808],[-133.33273332733327,56.17276851289773],[-133.42633426334262,56.16770278108808],[-133.44433444334442,56.169391358357984],[-133.45873458734587,56.17445709016761],[-133.49113491134912,56.191342862866435],[-133.5091350913509,56.191342862866435],[-133.56313563135632,56.18458855378691],[-133.5739357393574,56.18458855378691],[-133.57753577535775,56.187965708326686],[-133.5919359193592,56.20147432648574],[-133.60633606336063,56.209917212835165],[-133.609936099361,56.209917212835165],[-133.61353613536136,56.21160579010504],[-133.61353613536136,56.22173725372434],[-133.61713617136172,56.23018014007374],[-133.61353613536136,56.24706591277257],[-133.61353613536136,56.25719737639187],[-133.62073620736209,56.26057453093165],[-133.62793627936279,56.2639516854714],[-133.6351363513635,56.26901741728105],[-133.6351363513635,56.27746030363048],[-133.62073620736209,56.28928034451965],[-133.57753577535775,56.2926574990594],[-133.56673566735668,56.30447753994858],[-133.5739357393574,56.31460900356788],[-133.58833588335884,56.32811762172693],[-133.61353613536136,56.34500339442576],[-133.61353613536136,56.35344628077519],[-133.58833588335884,56.35344628077519],[-133.44073440734408,56.33318335353658],[-133.339933399334,56.33318335353658],[-133.31473314733148,56.32642904445706],[-133.31473314733148,56.31798615810766],[-133.3291332913329,56.307854694488356],[-133.3291332913329,56.28928034451965],[-133.31113311133112,56.27746030363048],[-133.2859328593286,56.28421461271],[-133.28953289532896,56.28590318997988],[-133.2931329313293,56.28759176724975],[-133.29673296732966,56.28928034451965],[-133.30033300333002,56.2926574990594],[-133.2931329313293,56.31460900356788],[-133.2571325713257,56.32811762172693],[-133.2139321393214,56.33318335353658],[-133.18153181531815,56.33318335353658],[-133.16713167131672,56.32474046718718],[-133.15273152731527,56.31292042629801],[-133.13833138331384,56.29941180813893],[-133.13473134731348,56.28759176724975],[-133.13473134731348,56.280837458170225],[-133.13833138331384,56.272394571820826],[-133.14193141931418,56.26564026274127],[-133.13473134731348,56.2639516854714],[-133.12753127531275,56.26226310820152],[-133.1059310593106,56.255508799122],[-133.0951309513095,56.25044306731235],[-133.069930699307,56.24706591277257],[-133.05913059130592,56.24368875823282],[-133.05553055530555,56.23524587188339],[-133.0519305193052,56.22680298553399],[-133.05553055530555,56.218360099184565],[-133.0519305193052,56.20822863556526],[-133.0519305193052,56.20654005829539],[-133.05553055530555,56.20316290375561],[-133.05913059130592,56.19978574921586],[-133.05913059130592,56.19472001740621],[-133.0519305193052,56.191342862866435],[-133.0411304113041,56.187965708326686],[-133.0339303393034,56.18458855378691],[-133.03033030330303,56.17952282197726],[-133.0231302313023,56.17276851289773],[-133.0231302313023,56.16432562654833],[-133.0339303393034,56.160948472008556],[-133.04473044730446,56.15419416292903],[-133.06633066330664,56.12211119480125],[-133.07353073530734,56.11197973118195],[-133.09153091530914,56.1086025766422],[-133.12393123931238,56.12379977207115],[-133.14193141931418,56.1187340402615],[-133.09153091530914,56.06976529943489],[-133.08073080730807,56.057945258545715],[-133.06273062730628,56.052879526736064],[-133.04833048330482,56.052879526736064],[-133.01953019530197,56.057945258545715],[-133.00153001530015,56.05625668127584],[-132.95472954729547,56.044436640386664],[-132.95472954729547,56.05456810400594],[-132.9511295112951,56.06132241308549],[-132.94392943929438,56.06807672216502],[-132.93672936729368,56.071453876704766],[-132.9187291872919,56.066388144895114],[-132.91152911529116,56.057945258545715],[-132.9079290792908,56.04781379492641],[-132.8971289712897,56.03261659949749],[-132.8971289712897,56.027550867687836],[-132.8971289712897,56.02586229041793],[-132.87552875528755,56.02417371314806],[-132.86832868328685,56.02586229041793],[-132.86472864728648,56.02923944495771],[-132.85752857528576,56.03430517676736],[-132.8431284312843,56.03937090857701],[-132.82872828728287,56.03261659949749],[-132.81432814328144,56.022485135878185],[-132.80352803528035,56.017419404068534],[-132.7891278912789,56.01404224952876],[-132.73512735127352,55.99715647682993],[-132.71352713527136,55.9802707041311],[-132.69552695526954,55.960007776892525],[-132.67032670326702,55.941433426923794],[-132.63432634326344,55.93130196330452],[-132.61992619926198,55.924547654224966],[-132.60912609126092,55.91441619060569],[-132.60552605526055,55.90428472698639],[-132.6019260192602,55.89415326336709],[-132.56952569525694,55.88233322247791],[-132.55872558725588,55.87389033612851],[-132.5659256592566,55.86544744977908],[-132.53352533525336,55.848561677080255],[-132.50832508325084,55.82829874984168],[-132.46152461524616,55.777641431745195],[-132.47232472324723,55.764132813586116],[-132.46872468724686,55.750624195427065],[-132.4579245792458,55.737115577268014],[-132.45072450724507,55.723606959108935],[-132.4471244712447,55.70672118641011],[-132.4471244712447,55.693212568251056],[-132.46152461524616,55.6678839092028],[-132.4471244712447,55.66281817739315],[-132.43992439924398,55.65437529104375],[-132.43272432724328,55.64255525015457],[-132.4363243632436,55.62735805472562],[-132.42552425524255,55.634112363805144],[-132.3931239312393,55.6678839092028],[-132.37152371523715,55.6678839092028],[-132.36432364323645,55.66450675466305],[-132.349923499235,55.6493095592341],[-132.34632346323463,55.64255525015457],[-132.34632346323463,55.62060374564609],[-132.34272342723426,55.61384943656657],[-132.3391233912339,55.60540655021714],[-132.29592295922959,55.54630634577126],[-132.28872288722886,55.53786345942183],[-132.23472234722345,55.536174882151954],[-132.21312213122133,55.5311091503423],[-132.15912159121592,55.49733760494465],[-132.14472144721447,55.483828986785596],[-132.1411214112141,55.465254636816894],[-132.1519215192152,55.45005744138794],[-132.17352173521735,55.45343459592772],[-132.21672216722166,55.4753861004362],[-132.2491224912249,55.5024033367543],[-132.29592295922959,55.514223377643475],[-132.33552335523353,55.532797727612206],[-132.4039240392404,55.541240613961605],[-132.4363243632436,55.54968350031103],[-132.49032490324902,55.603717972947265],[-132.52272522725227,55.625669477455745],[-132.55152551525515,55.61891516837622],[-132.54432544325442,55.61553801383644],[-132.54072540725406,55.61047228202679],[-132.529925299253,55.598652241137614],[-132.54432544325442,55.59696366386774],[-132.55152551525515,55.590209354788215],[-132.55872558725588,55.581766468438786],[-132.5659256592566,55.571635004819484],[-132.55152551525515,55.571635004819484],[-132.529925299253,55.56656927300986],[-132.5119251192512,55.55981496393031],[-132.51552515525157,55.54799492304113],[-132.56232562325624,55.505780491294075],[-132.5911259112591,55.492271873134996],[-132.65952659526596,55.4753861004362],[-132.68112681126811,55.45512317319759],[-132.6667266672667,55.451746018657815],[-132.6559265592656,55.44499170957829],[-132.64872648726487,55.43486024595899],[-132.6559265592656,55.421351627799936],[-132.64152641526414,55.43317166868911],[-132.63072630726307,55.446680286848164],[-132.61632616326165,55.456811750467466],[-132.55512555125551,55.46863179135664],[-132.5479254792548,55.47200894589642],[-132.54432544325442,55.48214040951572],[-132.54432544325442,55.49058329586512],[-132.54072540725406,55.49564902767477],[-132.53352533525336,55.49733760494465],[-132.5191251912519,55.50746906856395],[-132.5119251192512,55.509157645833824],[-132.5011250112501,55.509157645833824],[-132.49752497524975,55.50746906856395],[-132.49032490324902,55.505780491294075],[-132.48312483124832,55.5024033367543],[-132.46512465124653,55.5024033367543],[-132.44352443524434,55.5040919140242],[-132.4219242192422,55.50746906856395],[-132.40032400324003,55.51760053218325],[-132.38232382323824,55.500714759484424],[-132.3751237512375,55.48551756405547],[-132.36072360723608,55.473697523166294],[-132.3031230312303,55.46356605954699],[-132.2779227792278,55.45343459592772],[-132.2671226712267,55.44161455503854],[-132.29232292322922,55.43486024595899],[-132.30672306723068,55.43654882322889],[-132.32472324723247,55.446680286848164],[-132.3391233912339,55.448368864118066],[-132.349923499235,55.443303132308415],[-132.35712357123572,55.43654882322889],[-132.36792367923678,55.429794514149336],[-132.38232382323824,55.42810593687946],[-132.43992439924398,55.42641735960959],[-132.46872468724686,55.421351627799936],[-132.48312483124832,55.40615443237098],[-132.47952479524795,55.39095723694206],[-132.4579245792458,55.394334391481806],[-132.41112411124112,55.41459731872041],[-132.40032400324003,55.411220164180634],[-132.38952389523894,55.40615443237098],[-132.37872378723787,55.39771154602158],[-132.37152371523715,55.380825773322755],[-132.36072360723608,55.38251435059263],[-132.34632346323463,55.39264581421193],[-132.34272342723426,55.39602296875171],[-132.3319233192332,55.40446585510111],[-132.32472324723247,55.40615443237098],[-132.2491224912249,55.41459731872041],[-132.24192241922418,55.40953158691076],[-132.21312213122133,55.375760041513104],[-132.20232202322023,55.36900573243358],[-132.18792187921878,55.36900573243358],[-132.17352173521735,55.36900573243358],[-132.16272162721629,55.3656285778938],[-132.15552155521556,55.3656285778938],[-132.15912159121592,55.3554971142745],[-132.16272162721629,55.35211995973475],[-132.1519215192152,55.3470542279251],[-132.14472144721447,55.3369227643058],[-132.14472144721447,55.32510272341662],[-132.13392133921337,55.323414146146746],[-132.1231212312123,55.318348414337095],[-132.11952119521195,55.31159410525757],[-132.12672126721267,55.30315121890814],[-132.10152101521015,55.287954023479216],[-132.09072090720906,55.27613398259001],[-132.09432094320942,55.26769109624061],[-132.11952119521195,55.255871055351435],[-132.14832148321483,55.24911674627191],[-132.18072180721808,55.24573959173213],[-132.21312213122133,55.247428169002006],[-132.24192241922418,55.255871055351435],[-132.23472234722345,55.24573959173213],[-132.24192241922418,55.233919550842955],[-132.2491224912249,55.22209950995378],[-132.2491224912249,55.20859089179473],[-132.24192241922418,55.19677085090555],[-132.22752227522275,55.19508227363565],[-132.21672216722166,55.198459428175426],[-132.2239222392224,55.20859089179473],[-132.20232202322023,55.228853819033304],[-132.17352173521735,55.225476664493556],[-132.11232112321125,55.201836582715174],[-132.08352083520833,55.2102794690646],[-132.0511205112051,55.25924820989118],[-132.0259202592026,55.27106825078039],[-132.00432004320044,55.27275682805026],[-131.99351993519934,55.26769109624061],[-131.98271982719828,55.255871055351435],[-131.97911979119792,55.24573959173213],[-131.9719197191972,55.23223097357308],[-131.9719197191972,55.218722355414],[-131.96831968319682,55.20521373725495],[-131.97551975519755,55.17650792366695],[-131.99351993519934,55.157933573698244],[-132.01152011520117,55.14104780099942],[-132.02232022320223,55.11909629649094],[-131.98991989919898,55.11909629649094],[-132.00072000720007,55.103899101061984],[-132.01872018720186,55.09207906017281],[-132.04032040320402,55.081947596553505],[-132.05832058320584,55.078570442013756],[-132.06552065520654,55.081947596553505],[-132.079920799208,55.100521946522235],[-132.09432094320942,55.10558767833186],[-132.10152101521015,55.100521946522235],[-132.0979209792098,55.09207906017281],[-132.0871208712087,55.08363617382341],[-132.079920799208,55.078570442013756],[-132.0871208712087,55.073504710204105],[-132.0979209792098,55.07012755566433],[-132.10872108721088,55.07012755566433],[-132.11952119521195,55.07181613293423],[-132.11952119521195,55.06506182385468],[-132.09072090720906,55.05661893750528],[-132.07632076320763,55.04817605115585],[-132.07632076320763,55.03973316480645],[-132.0871208712087,55.0346674329968],[-132.11592115921158,55.032978855726924],[-132.1519215192152,55.016093083028096],[-132.20952209522096,55.00258446486902],[-132.2239222392224,54.989075846709966],[-132.1771217712177,54.989075846709966],[-132.16632166321662,54.98738726944009],[-132.15912159121592,54.98232153763044],[-132.1519215192152,54.97894438309066],[-132.13392133921337,54.970501496741264],[-132.12672126721267,54.970501496741264],[-132.10872108721088,54.98569869217019],[-132.10152101521015,54.98738726944009],[-132.0979209792098,54.98569869217019],[-132.09072090720906,54.975567228550915],[-132.0691206912069,55.00089588759914],[-132.03672036720366,55.02284739210762],[-131.9971199711997,55.0346674329968],[-131.96471964719646,55.02960170118715],[-131.97551975519755,55.024535969377496],[-131.98271982719828,55.016093083028096],[-131.98271982719828,55.00765019667867],[-131.97551975519755,54.99583015578949],[-131.9971199711997,54.984010114900315],[-132.00432004320044,54.97725580582079],[-132.01152011520117,54.96881291947136],[-131.97551975519755,54.970501496741264],[-131.96831968319682,54.96881291947136],[-131.96111961119612,54.956992878582184],[-131.96471964719646,54.95192714677253],[-131.9719197191972,54.94686141496291],[-131.97551975519755,54.94010710588336],[-131.97551975519755,54.9080241377556],[-131.98631986319862,54.9063355604857],[-132.01152011520117,54.9080241377556],[-132.0331203312033,54.9063355604857],[-132.04752047520475,54.8978926741363],[-132.04392043920438,54.887761210517],[-132.02232022320223,54.872564015088045],[-131.98631986319862,54.86074397419887],[-131.96831968319682,54.85398966511934],[-131.9539195391954,54.83879246969042],[-131.96111961119612,54.83372673788077],[-131.96471964719646,54.832038160610864],[-131.9719197191972,54.832038160610864],[-131.97551975519755,54.832038160610864]]],[[[-134.62154621546216,56.7435076301181],[-134.61434614346143,56.72831043468915],[-134.6071460714607,56.5966014076383],[-134.61074610746107,56.56451843951052],[-134.61434614346143,56.557764130430996],[-134.62514625146252,56.547632666811694],[-134.6287462874629,56.54932124408157],[-134.63234632346322,56.55607555316112],[-134.64314643146432,56.56451843951052],[-134.64314643146432,56.57127274859005],[-134.65034650346502,56.583092789479224],[-134.65754657546574,56.588158521288875],[-134.66474664746647,56.574649903129824],[-134.66834668346684,56.53750120319239],[-134.62514625146252,56.48684388509591],[-134.62514625146252,56.47333526693686],[-134.6359463594636,56.454760916968155],[-134.63234632346322,56.4395637215392],[-134.62514625146252,56.42436652611025],[-134.62154621546216,56.4108579079512],[-134.62154621546216,56.39059498071259],[-134.62514625146252,56.37202063074389],[-134.6359463594636,56.35513485804506],[-134.65034650346502,56.33993766261614],[-134.6287462874629,56.329806198996835],[-134.63234632346322,56.30954327175823],[-134.66474664746647,56.25719737639187],[-134.6359463594636,56.26901741728105],[-134.62514625146252,56.26226310820152],[-134.63234632346322,56.240311603693044],[-134.65034650346502,56.21667152191469],[-134.64314643146432,56.20822863556526],[-134.65754657546574,56.17445709016761],[-134.66834668346684,56.17107993562786],[-134.689946899469,56.18121139924716],[-134.6719467194672,56.204851481025514],[-134.66834668346684,56.21667152191469],[-134.6719467194672,56.22004867645444],[-134.68274682746826,56.22849156280387],[-134.69354693546936,56.23355729461352],[-134.70074700747006,56.23018014007374],[-134.70074700747006,56.22511440826409],[-134.70794707947078,56.22173725372434],[-134.73674736747367,56.218360099184565],[-134.7511475114751,56.21667152191469],[-134.76554765547655,56.22173725372434],[-134.7511475114751,56.23693444915327],[-134.77274772747728,56.23693444915327],[-134.7871478714787,56.245377335502695],[-134.7979479794798,56.25719737639187],[-134.7979479794798,56.2740831490907],[-134.8051480514805,56.280837458170225],[-134.81234812348123,56.28421461271],[-134.81954819548196,56.28759176724975],[-134.82674826748269,56.29096892178953],[-134.83034830348305,56.29941180813893],[-134.83034830348305,56.30954327175823],[-134.82674826748269,56.32642904445706],[-134.84834848348484,56.329806198996835],[-134.86634866348663,56.32474046718718],[-134.8807488074881,56.329806198996835],[-134.8879488794888,56.356823435314965],[-134.89154891548915,56.36188916712459],[-134.9131491314913,56.37708636255354],[-134.92034920349204,56.38046351709332],[-134.9239492394924,56.38552924890297],[-134.93114931149313,56.39566071252224],[-134.93834938349383,56.414235062490974],[-134.9419494194942,56.4209893715705],[-134.99954999549996,56.47333526693686],[-135.0031500315003,56.490221039635685],[-135.01755017550175,56.50879538960439],[-135.03555035550355,56.525681162303215],[-135.05355053550534,56.53750120319239],[-135.04275042750427,56.539189780462294],[-135.03555035550355,56.54256693500204],[-135.02475024750248,56.54594408954182],[-135.02115021150212,56.552698398621345],[-135.0319503195032,56.55945270770087],[-135.0391503915039,56.5678955940503],[-135.0319503195032,56.5763384803997],[-135.02115021150212,56.586469944019],[-134.99954999549996,56.588158521288875],[-134.94554945549456,56.586469944019],[-134.93834938349383,56.5966014076383],[-134.92754927549277,56.62024148941666],[-134.90594905949058,56.645570148464884],[-134.84834848348484,56.68947315748184],[-134.869948699487,56.68778458021197],[-134.88434884348843,56.686096002942065],[-134.89874898748988,56.677653116592666],[-134.9131491314913,56.664144498433615],[-134.93474934749347,56.64050441665523],[-134.94554945549456,56.63037295303596],[-134.95994959949599,56.62699579849618],[-134.9779497794978,56.63206153030583],[-134.9851498514985,56.645570148464884],[-134.98154981549817,56.66076734389384],[-134.97074970749708,56.69285031202162],[-134.96354963549635,56.70298177564089],[-134.95274952749526,56.70973608472045],[-134.93834938349383,56.71649039379997],[-134.96354963549635,56.721556125609624],[-134.9851498514985,56.71480181653007],[-134.99954999549996,56.69791604383127],[-135.0139501395014,56.650635880274535],[-135.02835028350285,56.63206153030583],[-135.049950499505,56.61686433487688],[-135.0679506795068,56.60673287125758],[-135.0931509315093,56.59828998490818],[-135.1111511115111,56.601667139447954],[-135.11835118351183,56.61686433487688],[-135.1219512195122,56.64388157119501],[-135.11835118351183,56.66245592116371],[-135.1111511115111,56.67934169386254],[-135.10035100351004,56.69285031202162],[-135.0787507875079,56.708047507450544],[-135.0139501395014,56.740130475578326],[-134.9959499594996,56.75363909373738],[-134.99954999549996,56.762081980086805],[-135.0139501395014,56.770524866436205],[-135.0319503195032,56.775590598245856],[-135.0391503915039,56.767147711896456],[-135.04635046350464,56.75870482554703],[-135.13635136351363,56.69453888929149],[-135.1651516515165,56.68440742567219],[-135.1759517595176,56.67934169386254],[-135.18675186751867,56.67596453932279],[-135.20115201152012,56.68440742567219],[-135.20115201152012,56.69453888929149],[-135.1939519395194,56.70298177564089],[-135.18315183151833,56.70973608472045],[-135.1759517595176,56.71649039379997],[-135.1759517595176,56.726621857419275],[-135.18315183151833,56.735064743768675],[-135.18675186751867,56.7418190528482],[-135.15435154351542,56.74519620738798],[-135.15075150751508,56.7519505164675],[-135.15435154351542,56.7603934028169],[-135.15795157951578,56.792476370944684],[-135.15795157951578,56.80091925729411],[-135.15435154351542,56.80936214364351],[-135.14355143551435,56.81611645272304],[-135.13635136351363,56.819493607262814],[-135.12915129151293,56.82287076180256],[-135.1219512195122,56.83131364815199],[-135.1759517595176,56.82624791634234],[-135.26955269552695,56.789099216404935],[-135.319953199532,56.797542102754335],[-135.3091530915309,56.82118218453269],[-135.32715327153272,56.82624791634234],[-135.35235352353524,56.824559339072465],[-135.36675366753667,56.829625070882116],[-135.36675366753667,56.873528079899046],[-135.35955359553594,56.887036698058125],[-135.34155341553415,56.8802823889786],[-135.32355323553236,56.890413852597874],[-135.30555305553054,56.890413852597874],[-135.29475294752947,56.892102429867776],[-135.29835298352984,56.9072996252967],[-135.31275312753127,56.92080824345578],[-135.33435334353345,56.930939707075055],[-135.35595355953558,56.93769401615461],[-135.3739537395374,56.94107117069436],[-135.37035370353703,56.944448325234134],[-135.3631536315363,56.94613690250401],[-135.35595355953558,56.95626836612331],[-135.34875348753488,56.96977698428236],[-135.3307533075331,56.97821987063179],[-135.3091530915309,56.98159702517154],[-135.2911529115291,56.98328560244144],[-135.2839528395284,56.984974179711315],[-135.26235262352623,56.99679422060049],[-135.25875258752586,57.00017137514027],[-135.2551525515255,57.00354852968002],[-135.229952299523,57.00523710694992],[-135.20475204752046,57.01367999329932],[-135.1651516515165,57.01367999329932],[-135.15795157951578,57.020434302378845],[-135.1651516515165,57.042385806887324],[-135.18675186751867,57.0457629614271],[-135.22635226352264,57.03732007507767],[-135.26955269552695,57.04069722961745],[-135.3091530915309,57.047451538696976],[-135.34875348753488,57.0643373113958],[-135.3739537395374,57.09304312498381],[-135.37755377553776,57.12850324765134],[-135.34875348753488,57.14876617488994],[-135.3091530915309,57.158897638509245],[-135.2659526595266,57.16058621577912],[-135.2659526595266,57.16902910212852],[-135.2911529115291,57.17409483393817],[-135.3091530915309,57.17747198847795],[-135.3307533075331,57.17578341120807],[-135.34875348753488,57.16902910212852],[-135.37755377553776,57.15045475215982],[-135.39555395553955,57.14707759762004],[-135.41355413554135,57.15720906123934],[-135.41355413554135,57.16902910212852],[-135.39915399153992,57.1825377202876],[-135.37755377553776,57.1926691839069],[-135.3631536315363,57.19604633844665],[-135.3631536315363,57.20448922479608],[-135.33435334353345,57.25008081108291],[-135.41355413554135,57.24501507927326],[-135.4279542795428,57.24670365654313],[-135.45675456754566,57.25345796562266],[-135.4819548195482,57.24839223381301],[-135.5071550715507,57.24163792473348],[-135.52875528755288,57.23657219292383],[-135.5431554315543,57.243326502003356],[-135.57915579155792,57.287229511020314],[-135.64035640356403,57.31762390187819],[-135.64755647556476,57.3294439427674],[-135.67275672756728,57.349706870005974],[-135.67635676356764,57.3581497563554],[-135.66195661956618,57.363215488165054],[-135.64755647556476,57.3665926427048],[-135.60435604356044,57.368281219974676],[-135.48555485554857,57.35139544727585],[-135.47475474754748,57.354772601815625],[-135.47115471154711,57.363215488165054],[-135.47835478354784,57.368281219974676],[-135.52515525155252,57.37334695178433],[-135.56835568355683,57.390232724483155],[-135.58635586355865,57.39192130175306],[-135.60795607956078,57.38685556994341],[-135.60075600756008,57.39867561083258],[-135.589955899559,57.40542991991211],[-135.55035550355504,57.42400426988081],[-135.54675546755468,57.42738142442059],[-135.54675546755468,57.43244715623024],[-135.53955539555395,57.44257861984951],[-135.53235532355325,57.447644351659164],[-135.5179551795518,57.45439866073872],[-135.5071550715507,57.45946439254834],[-135.50355503555036,57.466218701627895],[-135.5071550715507,57.47297301070742],[-135.51075510755106,57.47803874251707],[-135.51075510755106,57.48310447432672],[-135.51435514355143,57.48985878340625],[-135.5179551795518,57.501678824295425],[-135.5179551795518,57.506744556105076],[-135.51435514355143,57.515187442454476],[-135.5071550715507,57.51856459699425],[-135.49635496354963,57.51856459699425],[-135.4891548915489,57.52025317426413],[-135.43515435154353,57.550647565122006],[-135.38115381153813,57.55402471966178],[-135.32715327153272,57.53882752423283],[-135.28035280352805,57.51181028791473],[-135.3091530915309,57.49154736067612],[-135.38115381153813,57.471284433437546],[-135.40995409954098,57.44933292892907],[-135.39555395553955,57.44257861984951],[-135.38115381153813,57.44595577438929],[-135.35595355953558,57.46284154708812],[-135.31635316353163,57.47803874251707],[-135.29475294752947,57.48141589705682],[-135.2839528395284,57.47297301070742],[-135.27675276752768,57.461152969818244],[-135.25875258752586,57.466218701627895],[-135.2371523715237,57.47803874251707],[-135.2191521915219,57.48310447432672],[-135.17955179551797,57.48141589705682],[-135.14355143551435,57.46959585616764],[-135.15435154351542,57.452710083468816],[-135.19035190351903,57.44257861984951],[-135.20475204752046,57.42907000169046],[-135.18315183151833,57.43751288803989],[-135.15795157951578,57.44089004257964],[-135.12915129151293,57.44089004257964],[-135.06075060750607,57.42231569261094],[-135.05355053550534,57.41893853807116],[-135.04635046350464,57.412184228991634],[-135.00675006750066,57.403741342642235],[-134.9959499594996,57.39698703356268],[-134.90954909549095,57.33957540638667],[-134.90954909549095,57.332821097307146],[-134.95274952749526,57.34295256092645],[-134.99954999549996,57.346329715466226],[-134.99954999549996,57.33957540638667],[-134.94914949149492,57.32606678822762],[-134.94914949149492,57.319312479148095],[-134.97074970749708,57.31255817006857],[-134.9779497794978,57.30749243825892],[-134.9851498514985,57.297360974639616],[-134.9671496714967,57.29904955190949],[-134.95994959949599,57.30073812917939],[-134.94914949149492,57.305803860989016],[-134.93834938349383,57.29904955190949],[-134.93474934749347,57.29060666556009],[-134.93114931149313,57.28047520194079],[-134.93114931149313,57.26696658378174],[-134.9239492394924,57.25852369743231],[-134.90954909549095,57.256835120162435],[-134.85194851948518,57.260212274702184],[-134.83754837548375,57.25852369743231],[-134.83394833948338,57.24670365654313],[-134.83394833948338,57.23319503838408],[-134.83394833948338,57.221374997494905],[-134.8411484114841,57.21462068841535],[-134.85554855548554,57.216309265685254],[-134.82674826748269,57.197734915716524],[-134.80874808748086,57.180849143017696],[-134.80874808748086,57.16396337031887],[-134.83394833948338,57.140323288540515],[-134.81234812348123,57.13356897946099],[-134.7871478714787,57.118371784032036],[-134.77634776347765,57.09810885679346],[-134.79074790747907,57.07953450682476],[-134.77274772747728,57.07953450682476],[-134.7619476194762,57.0727801977452],[-134.7511475114751,57.06264873412593],[-134.7439474394744,57.05251727050663],[-134.7439474394744,57.0440743841572],[-134.74754747547476,57.03225434326802],[-134.7439474394744,57.02381145691862],[-134.74034740347403,57.020434302378845],[-134.7331473314733,57.020434302378845],[-134.72954729547297,57.01874572510897],[-134.72234722347224,57.01030283875954],[-134.72234722347224,56.99679422060049],[-134.7331473314733,56.976531293361916],[-134.72954729547297,56.963022675202836],[-134.72234722347224,56.952891211583534],[-134.7151471514715,56.94613690250401],[-134.70794707947078,56.93769401615461],[-134.71874718747188,56.922496820725655],[-134.69354693546936,56.908988202566604],[-134.68634686346863,56.89379100713765],[-134.689946899469,56.84988799812069],[-134.68274682746826,56.83637937996164],[-134.64314643146432,56.797542102754335],[-134.65034650346502,56.77727917551573],[-134.64674646746468,56.76545913462655],[-134.63234632346322,56.75532767100728],[-134.62154621546216,56.7435076301181]]],[[[-152.1609216092161,57.626633542266745],[-152.14652146521465,57.62325638772697],[-152.15372153721538,57.613124924107666],[-152.1789217892179,57.599616305948615],[-152.2509225092251,57.542204678772606],[-152.26892268922688,57.528696060613555],[-152.29052290522904,57.52025317426413],[-152.30852308523086,57.50843313337495],[-152.3229232292323,57.48985878340625],[-152.32652326523265,57.466218701627895],[-152.33012330123302,57.44595577438929],[-152.33732337323374,57.43244715623024],[-152.36252362523624,57.42907000169046],[-152.41652416524164,57.43582431076999],[-152.42732427324273,57.43751288803989],[-152.43452434524346,57.44089004257964],[-152.44172441724416,57.44257861984951],[-152.4489244892449,57.439201465309765],[-152.45252452524525,57.43582431076999],[-152.45972459724598,57.43244715623024],[-152.46692466924668,57.42907000169046],[-152.4741247412474,57.42907000169046],[-152.4849248492485,57.42907000169046],[-152.4741247412474,57.43751288803989],[-152.45972459724598,57.45102150619894],[-152.45252452524525,57.46453012435799],[-152.46332463324632,57.46959585616764],[-152.48852488524886,57.471284433437546],[-152.5029250292503,57.46959585616764],[-152.50652506525066,57.45946439254834],[-152.51012510125102,57.44933292892907],[-152.51372513725136,57.444267197119416],[-152.52092520925208,57.44257861984951],[-152.53172531725318,57.44257861984951],[-152.53532535325354,57.444267197119416],[-152.55332553325533,57.452710083468816],[-152.5641256412564,57.45608723800859],[-152.57132571325712,57.45608723800859],[-152.5749257492575,57.45439866073872],[-152.57852578525785,57.45102150619894],[-152.58572585725858,57.44933292892907],[-152.58932589325894,57.45102150619894],[-152.59292592925928,57.45608723800859],[-152.59292592925928,57.45946439254834],[-152.59652596525964,57.46284154708812],[-152.60012600126,57.46790727889777],[-152.60732607326074,57.474661587977295],[-152.6109261092611,57.479727319786946],[-152.62532625326253,57.48310447432672],[-152.63252632526326,57.48141589705682],[-152.6541265412654,57.471284433437546],[-152.66492664926648,57.46959585616764],[-152.67572675726757,57.46959585616764],[-152.6829268292683,57.471284433437546],[-152.69372693726936,57.474661587977295],[-152.72252722527224,57.4949245152159],[-152.72252722527224,57.49830166975565],[-152.7261272612726,57.49999024702555],[-152.73332733327334,57.50505597883517],[-152.7441274412744,57.50843313337495],[-152.7549275492755,57.51181028791473],[-152.80172801728017,57.5033674015653],[-152.8161281612816,57.50505597883517],[-152.83412834128342,57.515187442454476],[-152.84132841328415,57.51856459699425],[-152.85572855728557,57.51856459699425],[-152.89172891728919,57.51181028791473],[-152.91332913329134,57.515187442454476],[-152.9349293492935,57.521941751534],[-152.9529295292953,57.523630328803904],[-152.97452974529745,57.51856459699425],[-152.96012960129602,57.51181028791473],[-152.91692916929168,57.501678824295425],[-152.90972909729098,57.48985878340625],[-152.92772927729277,57.48310447432672],[-153.02853028530285,57.47635016524717],[-153.02853028530285,57.46959585616764],[-153.02493024930249,57.46790727889777],[-153.02133021330212,57.46790727889777],[-153.01413014130142,57.46284154708812],[-153.03573035730358,57.447644351659164],[-153.04653046530464,57.43751288803989],[-153.0429304293043,57.42907000169046],[-153.02853028530285,57.42907000169046],[-152.99972999729997,57.45102150619894],[-152.9889298892989,57.45608723800859],[-152.83412834128342,57.47635016524717],[-152.80172801728017,57.471284433437546],[-152.7261272612726,57.42907000169046],[-152.63252632526326,57.40542991991211],[-152.6181261812618,57.38685556994341],[-152.61452614526144,57.38854414721328],[-152.60732607326074,57.38685556994341],[-152.60372603726037,57.381789838133756],[-152.59652596525964,57.37334695178433],[-152.60732607326074,57.363215488165054],[-152.63252632526326,57.349706870005974],[-152.64332643326432,57.33957540638667],[-152.64332643326432,57.32100105641797],[-152.66132661326614,57.29904955190949],[-152.69372693726936,57.283852356480566],[-152.71892718927188,57.27709804740101],[-152.71172711727118,57.30242670644927],[-152.73332733327334,57.30749243825892],[-152.7981279812798,57.292295242829965],[-152.8161281612816,57.278786624670914],[-152.83772837728378,57.270343738321486],[-152.8629286292863,57.27709804740101],[-152.85932859328594,57.29567239736974],[-152.87372873728737,57.30073812917939],[-152.89172891728919,57.30411528371914],[-152.9061290612906,57.319312479148095],[-152.8809288092881,57.3378868291168],[-152.87732877328773,57.34295256092645],[-152.8809288092881,57.35308402454575],[-152.89172891728919,57.349706870005974],[-152.91332913329134,57.33957540638667],[-152.9781297812978,57.332821097307146],[-153.0069300693007,57.33957540638667],[-153.02493024930249,57.34295256092645],[-153.05733057330573,57.32606678822762],[-153.08973089730898,57.319312479148095],[-153.1221312213122,57.31593532460832],[-153.1437314373144,57.319312479148095],[-153.1509315093151,57.327755365497495],[-153.1581315813158,57.346329715466226],[-153.16533165331654,57.35308402454575],[-153.1761317613176,57.35139544727585],[-153.1761317613176,57.341263983656575],[-153.1761317613176,57.327755365497495],[-153.17253172531724,57.319312479148095],[-153.18333183331833,57.31086959279867],[-153.17253172531724,57.305803860989016],[-153.09693096930968,57.29060666556009],[-153.07533075330753,57.28891808829019],[-153.0321303213032,57.30411528371914],[-153.00333003330033,57.29567239736974],[-152.97452974529745,57.27540947013114],[-152.96012960129602,57.256835120162435],[-153.0609306093061,57.22306357476478],[-153.09693096930968,57.21799784295513],[-153.19413194131943,57.229817883844305],[-153.20133201332013,57.22812930657443],[-153.20853208532085,57.224752152034654],[-153.21573215732158,57.22306357476478],[-153.22293222932228,57.22644072930453],[-153.25173251732517,57.23657219292383],[-153.26613266132662,57.23319503838408],[-153.28413284132841,57.219686420225],[-153.29853298532984,57.216309265685254],[-153.30573305733057,57.2112435338756],[-153.32373323733236,57.1926691839069],[-153.33453334533345,57.18760345209725],[-153.34893348933488,57.190980606637],[-153.37773377733777,57.20617780206595],[-153.39213392133922,57.2095549566057],[-153.37773377733777,57.194357761176775],[-153.3741337413374,57.18422629755747],[-153.3741337413374,57.17747198847795],[-153.40653406534065,57.14876617488994],[-153.42453424534244,57.140323288540515],[-153.4389343893439,57.12512609311159],[-153.4569345693457,57.11668320676216],[-153.47133471334712,57.126814670381464],[-153.47853478534785,57.14370044308029],[-153.47853478534785,57.162274793048994],[-153.48573485734858,57.17578341120807],[-153.50733507335073,57.180849143017696],[-153.53253532535325,57.17916056574782],[-153.54333543335434,57.17578341120807],[-153.5469354693547,57.16902910212852],[-153.54333543335434,57.16396337031887],[-153.51453514535146,57.17071767939842],[-153.50013500135,57.16902910212852],[-153.52533525335252,57.136946134000766],[-153.52533525335252,57.126814670381464],[-153.51813518135182,57.11668320676216],[-153.50733507335073,57.10824032041276],[-153.50013500135,57.09979743406333],[-153.49653496534967,57.074468775015106],[-153.51453514535146,57.069403043205455],[-153.55773557735577,57.07953450682476],[-153.71253712537126,57.06771446593558],[-153.75933759337593,57.05251727050663],[-153.75933759337593,57.0440743841572],[-153.6081360813608,57.05251727050663],[-153.59013590135902,57.047451538696976],[-153.59013590135902,57.04069722961745],[-153.59733597335975,57.03056576599815],[-153.61173611736118,57.02381145691862],[-153.6261362613626,57.020434302378845],[-153.64413644136442,57.02212287964875],[-153.65853658536585,57.020434302378845],[-153.67293672936728,57.01030283875954],[-153.57573575735756,57.00354852968002],[-153.5541355413554,56.998482797870366],[-153.56133561335614,56.98666275698119],[-153.59013590135902,56.963022675202836],[-153.59373593735938,56.963022675202836],[-153.60093600936008,56.963022675202836],[-153.60453604536045,56.963022675202836],[-153.60453604536045,56.95964552066309],[-153.60453604536045,56.95120263431366],[-153.60453604536045,56.949514057043785],[-153.6189361893619,56.93938259342448],[-153.6261362613626,56.936005438884706],[-153.64053640536406,56.93431686161483],[-153.66573665736658,56.93769401615461],[-153.67293672936728,56.94613690250401],[-153.66933669336694,56.957956943393185],[-153.680136801368,56.976531293361916],[-153.71253712537126,56.914053934376255],[-153.73773737737378,56.888725275328],[-153.76653766537666,56.900545316217176],[-153.77733777337772,56.87690523443882],[-153.75573755737557,56.87521665716895],[-153.70173701737016,56.887036698058125],[-153.69453694536946,56.88365954351835],[-153.69453694536946,56.873528079899046],[-153.70173701737016,56.86339661627977],[-153.7089370893709,56.860019461739995],[-153.76653766537666,56.85326515266047],[-153.77373773737736,56.84988799812069],[-153.77733777337772,56.84144511177129],[-153.7809378093781,56.83975653450139],[-153.78813788137882,56.84144511177129],[-153.79533795337954,56.846510843580944],[-153.8241382413824,56.846510843580944],[-153.83853838538386,56.84482226631104],[-153.84213842138422,56.83637937996164],[-153.84933849338495,56.81442787545316],[-153.86733867338674,56.80091925729411],[-153.90333903339032,56.784033484595284],[-153.9429394293943,56.75870482554703],[-153.9609396093961,56.748573361927726],[-153.9861398613986,56.7435076301181],[-154.0149401494015,56.748573361927726],[-154.03654036540365,56.757016248277154],[-154.05454054540544,56.762081980086805],[-154.08334083340833,56.757016248277154],[-154.10854108541085,56.74519620738798],[-154.1229412294123,56.7418190528482],[-154.13734137341373,56.7435076301181],[-154.14814148141483,56.75026193919763],[-154.14814148141483,56.757016248277154],[-154.1409414094141,56.762081980086805],[-154.13734137341373,56.77390202097598],[-154.130141301413,56.78572206186516],[-154.06534065340654,56.84819942085082],[-154.00054000540007,56.873528079899046],[-153.97533975339752,56.892102429867776],[-153.96813968139682,56.90561104802683],[-153.95733957339573,56.91067677983648],[-153.9321393213932,56.914053934376255],[-153.8889388893889,56.930939707075055],[-153.80973809738097,56.971465561552264],[-153.77373773737736,56.99679422060049],[-153.7809378093781,57.00354852968002],[-153.8349383493835,56.971465561552264],[-153.84933849338495,56.96977698428236],[-153.85653856538565,56.976531293361916],[-153.83133831338313,57.00185995241014],[-153.8349383493835,57.0170571478391],[-153.85293852938528,57.02381145691862],[-153.86373863738638,57.01030283875954],[-153.8709387093871,56.99172848879084],[-153.8781387813878,56.976531293361916],[-153.89613896138962,56.96639982974261],[-153.92133921339214,56.96133409793296],[-153.97173971739718,56.963022675202836],[-153.96813968139682,56.979908447901664],[-153.9609396093961,56.99510564333062],[-153.95373953739536,57.00861426148967],[-153.92853928539284,57.0356314978078],[-153.91053910539105,57.06096015685603],[-153.89973899739,57.0727801977452],[-153.88173881738817,57.08122308409463],[-153.8349383493835,57.096420279523585],[-153.8169381693817,57.09979743406333],[-153.80973809738097,57.10148601133321],[-153.79533795337954,57.11499462949229],[-153.78813788137882,57.12006036130194],[-153.77733777337772,57.12343751584169],[-153.76653766537666,57.126814670381464],[-153.74133741337414,57.126814670381464],[-153.74133741337414,57.13356897946099],[-153.78453784537845,57.15045475215982],[-153.8061380613806,57.153831906699594],[-153.8169381693817,57.145389020350166],[-153.82053820538206,57.13356897946099],[-153.83133831338313,57.126814670381464],[-153.85653856538565,57.12006036130194],[-153.97533975339752,57.06264873412593],[-154.00774007740077,57.03900865234755],[-154.0509405094051,56.99679422060049],[-154.0761407614076,56.97484271609201],[-154.10134101341015,56.96471125247271],[-154.11574115741158,56.984974179711315],[-154.13374133741337,56.99510564333062],[-154.13734137341373,57.00354852968002],[-154.13374133741337,57.00861426148967],[-154.1229412294123,57.01874572510897],[-154.11574115741158,57.02381145691862],[-154.1121411214112,57.03732007507767],[-154.07974079740796,57.06602588866568],[-153.9609396093961,57.12006036130194],[-154.08334083340833,57.126814670381464],[-154.09054090540906,57.13019182492124],[-154.10854108541085,57.145389020350166],[-154.11934119341194,57.14876617488994],[-154.17334173341735,57.145389020350166],[-154.24174241742418,57.15552048396947],[-154.29934299342995,57.14876617488994],[-154.36054360543605,57.14876617488994],[-154.3749437494375,57.145389020350166],[-154.39654396543966,57.131880402191115],[-154.4109441094411,57.126814670381464],[-154.46854468544686,57.12512609311159],[-154.49374493744938,57.11330605222241],[-154.4829448294483,57.08966597044403],[-154.46134461344613,57.07109162047533],[-154.4361443614436,57.05758300231628],[-154.41454414544145,57.05082869323675],[-154.38574385743857,57.05251727050663],[-154.36054360543605,57.05927157958615],[-154.34614346143462,57.069403043205455],[-154.31734317343174,57.096420279523585],[-154.29574295742958,57.109928897682636],[-154.27414274142743,57.11668320676216],[-154.1229412294123,57.12343751584169],[-154.10494104941048,57.11330605222241],[-154.10494104941048,57.09810885679346],[-154.1121411214112,57.07615735228498],[-154.130141301413,57.0440743841572],[-154.15174151741516,57.020434302378845],[-154.1589415894159,57.01030283875954],[-154.1589415894159,56.998482797870366],[-154.1589415894159,56.976531293361916],[-154.1589415894159,56.96977698428236],[-154.17334173341735,56.952891211583534],[-154.1949419494195,56.944448325234134],[-154.2489424894249,56.94107117069436],[-154.23094230942309,56.93262828434496],[-154.22014220142202,56.92587397526543],[-154.22014220142202,56.91574251164613],[-154.23094230942309,56.90392247075695],[-154.2381423814238,56.8988567389473],[-154.24534245342454,56.900545316217176],[-154.25254252542524,56.90561104802683],[-154.26334263342633,56.9072996252967],[-154.28134281342813,56.887036698058125],[-154.27774277742776,56.89716816167743],[-154.27774277742776,56.90561104802683],[-154.2849428494285,56.91236535710635],[-154.29574295742958,56.914053934376255],[-154.29934299342995,56.873528079899046],[-154.29934299342995,56.86677377081952],[-154.28134281342813,56.8701509253593],[-154.2561425614256,56.881970966248474],[-154.24174241742418,56.887036698058125],[-154.24174241742418,56.8802823889786],[-154.27054270542706,56.86339661627977],[-154.28134281342813,56.860019461739995],[-154.29934299342995,56.854953729930344],[-154.30654306543065,56.854953729930344],[-154.30654306543065,56.87521665716895],[-154.30654306543065,56.90223389348705],[-154.31374313743137,56.91911966618588],[-154.3281432814328,56.92925112980518],[-154.38934389343893,56.963022675202836],[-154.4109441094411,56.97315413882214],[-154.4469444694447,56.97821987063179],[-154.47214472144722,56.98835133425109],[-154.4829448294483,56.99003991152097],[-154.51534515345153,56.99003991152097],[-154.52974529745296,56.99172848879084],[-154.53334533345333,56.99679422060049],[-154.52974529745296,57.00354852968002],[-154.5261452614526,57.03225434326802],[-154.5189451894519,57.055894425046375],[-154.51534515345153,57.077845929554854],[-154.53334533345333,57.11161747495251],[-154.52974529745296,57.153831906699594],[-154.53334533345333,57.17409483393817],[-154.54774547745478,57.1926691839069],[-154.58734587345873,57.23150646111418],[-154.59814598145982,57.24670365654313],[-154.6017460174602,57.25852369743231],[-154.61254612546125,57.26696658378174],[-154.62694626946268,57.270343738321486],[-154.67374673746738,57.270343738321486],[-154.68094680946808,57.27372089286126],[-154.68454684546845,57.27709804740101],[-154.68454684546845,57.28216377921066],[-154.68454684546845,57.283852356480566],[-154.7169471694717,57.28216377921066],[-154.7529475294753,57.27372089286126],[-154.78174781747816,57.27372089286126],[-154.80334803348035,57.29060666556009],[-154.7889478894789,57.292295242829965],[-154.76734767347673,57.29567239736974],[-154.75654756547564,57.30242670644927],[-154.75654756547564,57.31593532460832],[-154.7709477094771,57.32606678822762],[-154.79974799747998,57.33619825184692],[-154.81054810548105,57.346329715466226],[-154.7889478894789,57.3581497563554],[-154.76374763747637,57.354772601815625],[-154.73854738547385,57.34464113819632],[-154.7061470614706,57.33957540638667],[-154.70974709747097,57.3480182927361],[-154.7169471694717,57.35308402454575],[-154.72414724147242,57.3581497563554],[-154.7349473494735,57.35983833362528],[-154.7349473494735,57.3665926427048],[-154.71334713347133,57.37841268359398],[-154.70974709747097,57.39529845629281],[-154.71334713347133,57.41387280626151],[-154.72774727747276,57.42907000169046],[-154.68454684546845,57.452710083468816],[-154.65214652146523,57.461152969818244],[-154.6449464494645,57.466218701627895],[-154.65934659346593,57.47635016524717],[-154.64854648546486,57.496613092485774],[-154.6341463414634,57.5134988651846],[-154.61614616146161,57.52700748334365],[-154.58374583745837,57.533761792423206],[-154.5621456214562,57.54389325604248],[-154.54774547745478,57.54389325604248],[-154.54054540545405,57.53882752423283],[-154.52254522545226,57.51856459699425],[-154.5081450814508,57.528696060613555],[-154.52254522545226,57.569221915090736],[-154.51534515345153,57.57935337871004],[-154.4541445414454,57.57597622417026],[-154.40014400144003,57.56584476055096],[-154.4109441094411,57.572599069630485],[-154.4469444694447,57.586107687789564],[-154.40014400144003,57.613124924107666],[-154.3641436414364,57.626633542266745],[-154.36054360543605,57.6316992740764],[-154.35694356943569,57.64520789223545],[-154.35694356943569,57.648585046775224],[-154.3389433894339,57.6502736240451],[-154.29934299342995,57.64520789223545],[-154.28134281342813,57.648585046775224],[-154.2669426694267,57.65533935585475],[-154.2561425614256,57.66547081947405],[-154.2381423814238,57.67391370582345],[-154.22014220142202,57.675602283093326],[-154.2021420214202,57.67222512855358],[-154.16974169741698,57.6587165103945],[-154.15174151741516,57.65533935585475],[-154.05454054540544,57.65533935585475],[-154.01854018540186,57.64689646950532],[-154.00054000540007,57.630010696806494],[-153.97173971739718,57.572599069630485],[-154.00054000540007,57.55571329693166],[-154.1121411214112,57.54389325604248],[-154.0689406894069,57.537138946962955],[-153.97533975339752,57.550647565122006],[-153.93573935739357,57.53545036969308],[-153.92133921339214,57.506744556105076],[-153.9069390693907,57.43413573350011],[-153.8889388893889,57.408807074451886],[-153.87453874538744,57.39867561083258],[-153.84213842138422,57.38685556994341],[-153.8241382413824,57.376724106324104],[-153.77733777337772,57.322689633687844],[-153.74853748537487,57.30411528371914],[-153.62973629736297,57.270343738321486],[-153.64413644136442,57.283852356480566],[-153.66933669336694,57.297360974639616],[-153.69453694536946,57.30749243825892],[-153.7449374493745,57.319312479148095],[-153.7521375213752,57.33619825184692],[-153.75933759337593,57.3581497563554],[-153.76653766537666,57.38010126086385],[-153.78453784537845,57.39360987902293],[-153.7989379893799,57.40205276537233],[-153.80973809738097,57.412184228991634],[-153.82053820538206,57.4847930515966],[-153.8169381693817,57.506744556105076],[-153.80973809738097,57.51856459699425],[-153.84213842138422,57.550647565122006],[-153.84933849338495,57.559090451471434],[-153.84933849338495,57.577664801440136],[-153.84213842138422,57.58273053324979],[-153.83133831338313,57.577664801440136],[-153.8169381693817,57.569221915090736],[-153.79173791737918,57.55571329693166],[-153.74853748537487,57.54389325604248],[-153.70533705337053,57.53882752423283],[-153.680136801368,57.54389325604248],[-153.6909369093691,57.55402471966178],[-153.70533705337053,57.55740187420156],[-153.74133741337414,57.559090451471434],[-153.75573755737557,57.56246760601121],[-153.86733867338674,57.62832211953662],[-153.88533885338853,57.648585046775224],[-153.85293852938528,57.6587165103945],[-153.80973809738097,57.6587165103945],[-153.66933669336694,57.6418307376957],[-153.64053640536406,57.630010696806494],[-153.62973629736297,57.599616305948615],[-153.6189361893619,57.604682037758266],[-153.59013590135902,57.60130488321849],[-153.5829358293583,57.60805919229804],[-153.5829358293583,57.61650207864744],[-153.59373593735938,57.62832211953662],[-153.60453604536045,57.63676500588605],[-153.62973629736297,57.64689646950532],[-153.69813698136983,57.68235659217288],[-153.75573755737557,57.692488055792154],[-153.8781387813878,57.70093094214158],[-153.9069390693907,57.711062405760885],[-153.92493924939248,57.72963675572959],[-153.93933939339394,57.77522834201642],[-153.92493924939248,57.81068846468395],[-153.89613896138962,57.83770570100208],[-153.84213842138422,57.86978866912986],[-153.8349383493835,57.87485440093948],[-153.83133831338313,57.87485440093948],[-153.8169381693817,57.87316582366961],[-153.80973809738097,57.87485440093948],[-153.79533795337954,57.87823155547926],[-153.7629376293763,57.89511732817809],[-153.72333723337232,57.901871637257614],[-153.71973719737198,57.90018305998774],[-153.70173701737016,57.89174017363831],[-153.6909369093691,57.88667444182869],[-153.68373683736837,57.88836301909856],[-153.67293672936728,57.893428750908214],[-153.66573665736658,57.89511732817809],[-153.64413644136442,57.88329728728891],[-153.6369363693637,57.86810009185996],[-153.6261362613626,57.85290289643103],[-153.59733597335975,57.84614858735148],[-153.57573575735756,57.83939427827195],[-153.5649356493565,57.82081992830325],[-153.56133561335614,57.79886842379477],[-153.56133561335614,57.778605496556196],[-153.55773557735577,57.738079642078986],[-153.5469354693547,57.69924236487171],[-153.5289352893529,57.662093664934275],[-153.50733507335073,57.626633542266745],[-153.49653496534967,57.6418307376957],[-153.52173521735216,57.69586521033193],[-153.5289352893529,57.72288244665006],[-153.4821348213482,57.702619519411456],[-153.45333453334533,57.69417663306206],[-153.4389343893439,57.69924236487171],[-153.44973449734496,57.716128137570536],[-153.47133471334712,57.72963675572959],[-153.51453514535146,57.74314537388864],[-153.50013500135,57.76171972385737],[-153.47493474934748,57.773539764746545],[-153.44613446134463,57.77691691928629],[-153.42093420934208,57.76678545566699],[-153.41013410134101,57.751588260238066],[-153.39933399333992,57.73470248753924],[-153.3849338493385,57.71781671484041],[-153.36333363333634,57.70937382849098],[-153.33453334533345,57.71443956030063],[-153.320133201332,57.73132533299946],[-153.32733327333273,57.74989968296819],[-153.34533345333455,57.75834256931759],[-153.35973359733597,57.76171972385737],[-153.37773377733777,57.77522834201642],[-153.39213392133922,57.78029407382607],[-153.3957339573396,57.78535980563572],[-153.39933399333992,57.79042553744537],[-153.4029340293403,57.79211411471525],[-153.43173431734317,57.79211411471525],[-153.46053460534606,57.80224557833455],[-153.47493474934748,57.82081992830325],[-153.47493474934748,57.83939427827195],[-153.44973449734496,57.84614858735148],[-153.42453424534244,57.84277143281173],[-153.34893348933488,57.81237704195382],[-153.29133291332914,57.79886842379477],[-153.230132301323,57.79211411471525],[-153.21213212132122,57.78535980563572],[-153.20853208532085,57.77016261020677],[-153.21573215732158,57.74821110569829],[-153.21213212132122,57.72963675572959],[-153.2049320493205,57.72119386938016],[-153.19773197731976,57.71443956030063],[-153.19053190531906,57.711062405760885],[-153.17973179731797,57.70937382849098],[-153.19413194131943,57.72794817845971],[-153.19773197731976,57.751588260238066],[-153.19053190531906,57.8056227328743],[-153.19773197731976,57.85628005097078],[-153.2049320493205,57.86810009185996],[-153.230132301323,57.88836301909856],[-153.2409324093241,57.901871637257614],[-153.21213212132122,57.901871637257614],[-153.1869318693187,57.893428750908214],[-153.1437314373144,57.86810009185996],[-153.07533075330753,57.83770570100208],[-153.0609306093061,57.8258856601129],[-153.050130501305,57.83263996919243],[-153.0609306093061,57.841082855541856],[-153.08613086130862,57.85290289643103],[-153.09693096930968,57.85965720551056],[-153.09693096930968,57.86978866912986],[-153.10773107731077,57.88329728728891],[-153.12573125731257,57.89680590544796],[-153.15453154531545,57.90862594633714],[-153.20133201332013,57.94577464627457],[-153.21933219332192,57.955906109893874],[-153.26253262532626,57.96603757351318],[-153.2949329493295,57.98630050075175],[-153.29853298532984,57.991366232561404],[-153.3021330213302,58.00149769618071],[-153.2949329493295,58.00825200526023],[-153.28413284132841,58.009940582530106],[-153.26973269732696,58.00825200526023],[-153.26253262532626,58.00318627345058],[-153.230132301323,57.99812054164093],[-153.16533165331654,57.969414728052925],[-153.11853118531184,57.960971841703525],[-153.08253082530825,57.94577464627457],[-153.04653046530464,57.94070891446492],[-153.01413014130142,57.928888873575744],[-152.99252992529927,57.928888873575744],[-153.00333003330033,57.94915180081435],[-152.98172981729817,57.95084037808422],[-152.8629286292863,57.933954605385395],[-152.83052830528305,57.92382314176609],[-152.8089280892809,57.90862594633714],[-152.85572855728557,57.89511732817809],[-152.87732877328773,57.88667444182869],[-152.89172891728919,57.87485440093948],[-152.87372873728737,57.876542978209386],[-152.85572855728557,57.879920132749135],[-152.85572855728557,57.87485440093948],[-152.89172891728919,57.85965720551056],[-152.90252902529025,57.83770570100208],[-152.9061290612906,57.81237704195382],[-152.9241292412924,57.76847403293689],[-152.91692916929168,57.754965414777814],[-152.89892898928989,57.746522528428414],[-152.89172891728919,57.733013910269364],[-152.88452884528846,57.72794817845971],[-152.87372873728737,57.72963675572959],[-152.8629286292863,57.73470248753924],[-152.85572855728557,57.73976821934889],[-152.85932859328594,57.74989968296819],[-152.8629286292863,57.76509687839712],[-152.8629286292863,57.773539764746545],[-152.85932859328594,57.814065619223726],[-152.84492844928448,57.844460010081605],[-152.81972819728196,57.85965720551056],[-152.780127801278,57.85290289643103],[-152.76572765727656,57.84277143281173],[-152.7549275492755,57.83263996919243],[-152.74052740527407,57.82757423738278],[-152.7261272612726,57.83263996919243],[-152.71532715327152,57.84614858735148],[-152.69732697326972,57.876542978209386],[-152.68652686526866,57.88836301909856],[-152.66852668526684,57.88160871001904],[-152.63612636126362,57.871477246399735],[-152.62532625326253,57.85965720551056],[-152.61452614526144,57.87485440093948],[-152.61452614526144,57.89005159636844],[-152.62532625326253,57.90524879179739],[-152.63612636126362,57.91538025541669],[-152.62532625326253,57.93226602811552],[-152.60732607326074,57.93564318265527],[-152.58932589325894,57.928888873575744],[-152.5749257492575,57.92213456449622],[-152.57132571325712,57.91538025541669],[-152.5641256412564,57.90862594633714],[-152.56052560525606,57.903560214527516],[-152.55332553325533,57.90524879179739],[-152.54252542525424,57.912003100876916],[-152.53172531725318,57.91369167814679],[-152.50652506525066,57.91538025541669],[-152.4849248492485,57.91031452360704],[-152.4741247412474,57.90018305998774],[-152.45972459724598,57.88836301909856],[-152.44532445324452,57.876542978209386],[-152.42732427324273,57.86810009185996],[-152.42372423724237,57.85965720551056],[-152.42732427324273,57.84783716462138],[-152.43812438124382,57.83263996919243],[-152.420124201242,57.822508505573126],[-152.4021240212402,57.82419708284303],[-152.38412384123842,57.83263996919243],[-152.36252362523624,57.84614858735148],[-152.35532355323554,57.83770570100208],[-152.3481234812348,57.830951391922554],[-152.34092340923408,57.82757423738278],[-152.33012330123302,57.8258856601129],[-152.3589235892359,57.79886842379477],[-152.45972459724598,57.76847403293689],[-152.49572495724956,57.746522528428414],[-152.53532535325354,57.719505292110284],[-152.54972549725497,57.702619519411456],[-152.54252542525424,57.69586521033193],[-152.52092520925208,57.702619519411456],[-152.49932499324993,57.716128137570536],[-152.4741247412474,57.72625960118981],[-152.46332463324632,57.72288244665006],[-152.46692466924668,57.71443956030063],[-152.46692466924668,57.692488055792154],[-152.47052470524704,57.6789794376331],[-152.47772477724777,57.67222512855358],[-152.4849248492485,57.66547081947405],[-152.4921249212492,57.65533935585475],[-152.46692466924668,57.657027933124624],[-152.420124201242,57.68235659217288],[-152.39852398523985,57.689110901252405],[-152.41652416524164,57.675602283093326],[-152.42732427324273,57.65533935585475],[-152.43452434524346,57.635076428616145],[-152.43812438124382,57.61650207864744],[-152.42732427324273,57.613124924107666],[-152.34452344523444,57.63338785134627],[-152.1609216092161,57.626633542266745]]],[[[-135.84915849158492,57.39360987902293],[-135.8419584195842,57.41387280626151],[-135.85275852758528,57.425692847150685],[-135.8959589595896,57.43582431076999],[-135.93555935559357,57.452710083468816],[-135.949959499595,57.461152969818244],[-135.949959499595,57.46959585616764],[-135.96075960759606,57.48310447432672],[-135.97875978759788,57.496613092485774],[-136.0111601116011,57.51856459699425],[-135.98235982359824,57.523630328803904],[-135.94635946359463,57.51687601972438],[-135.88875888758886,57.48985878340625],[-135.83835838358382,57.45439866073872],[-135.80955809558094,57.439201465309765],[-135.78075780757808,57.43582431076999],[-135.80235802358024,57.466218701627895],[-135.83835838358382,57.488170206136346],[-136.03996039960398,57.577664801440136],[-136.07236072360723,57.60805919229804],[-136.06156061560614,57.61143634683779],[-136.0471604716047,57.613124924107666],[-136.01836018360183,57.613124924107666],[-136.02556025560256,57.60130488321849],[-136.01836018360183,57.594550574138964],[-136.00756007560076,57.591173419599215],[-135.98955989559894,57.59286199686909],[-135.99675996759967,57.60805919229804],[-135.9859598595986,57.613124924107666],[-135.949959499595,57.613124924107666],[-135.949959499595,57.621567810457094],[-135.9679596795968,57.62325638772697],[-136.0039600396004,57.6316992740764],[-136.01836018360183,57.63338785134627],[-136.05076050760508,57.62832211953662],[-136.0579605796058,57.630010696806494],[-136.0651606516065,57.63845358315592],[-136.0759607596076,57.64689646950532],[-136.08316083160832,57.648585046775224],[-136.0867608676087,57.63845358315592],[-136.09756097560975,57.62325638772697],[-136.11556115561154,57.621567810457094],[-136.13356133561336,57.630010696806494],[-136.14436144361443,57.64520789223545],[-136.13716137161373,57.657027933124624],[-136.12276122761227,57.6705365512837],[-136.10476104761048,57.6789794376331],[-136.0867608676087,57.68235659217288],[-136.0867608676087,57.689110901252405],[-136.20916209162093,57.74821110569829],[-136.22716227162272,57.76678545566699],[-136.22356223562235,57.78535980563572],[-136.2379623796238,57.79211411471525],[-136.25956259562597,57.77691691928629],[-136.27756277562776,57.77522834201642],[-136.29196291962919,57.78535980563572],[-136.30996309963098,57.80224557833455],[-136.32076320763207,57.8073113101442],[-136.34236342363423,57.8157541964936],[-136.34956349563495,57.822508505573126],[-136.35316353163532,57.8343285464623],[-136.36396363963638,57.83939427827195],[-136.37476374763747,57.841082855541856],[-136.38916389163893,57.83939427827195],[-136.39996399964,57.82081992830325],[-136.40716407164072,57.8157541964936],[-136.41796417964179,57.8258856601129],[-136.41796417964179,57.8343285464623],[-136.40716407164072,57.85459147370091],[-136.39636396363963,57.884985864558786],[-136.35676356763568,57.91369167814679],[-136.34956349563495,57.928888873575744],[-136.34956349563495,57.93564318265527],[-136.36756367563675,57.9525289553541],[-136.3711637116371,57.964348996243274],[-136.36396363963638,57.97616903713245],[-136.35316353163532,57.982923346211976],[-136.3387633876339,57.98798907802163],[-136.33156331563316,57.99474338710118],[-136.31356313563134,57.99474338710118],[-136.28476284762849,57.9812347689421],[-136.16236162361622,57.901871637257614],[-136.0579605796058,57.85121431916113],[-136.0471604716047,57.84783716462138],[-136.03276032760328,57.84614858735148],[-136.0579605796058,57.86810009185996],[-136.14436144361443,57.90862594633714],[-136.219962199622,57.969414728052925],[-136.23436234362345,57.97616903713245],[-136.25236252362524,57.982923346211976],[-136.29556295562955,58.009940582530106],[-136.32436324363243,58.03864639611811],[-136.41076410764106,58.07917225059529],[-136.43236432364324,58.10618948691342],[-136.4251642516425,58.12307525961225],[-136.40356403564036,58.13320672323155],[-136.3819638196382,58.13996103231108],[-136.35676356763568,58.14164960958095],[-136.33516335163353,58.13489530050143],[-136.29556295562955,58.11463237326285],[-136.2739627396274,58.10618948691342],[-136.28116281162812,58.1180095278026],[-136.29196291962919,58.12645241415203],[-136.2991629916299,58.13489530050143],[-136.29196291962919,58.148403918660506],[-136.33156331563316,58.178798309518385],[-136.34956349563495,58.19568408221721],[-136.35676356763568,58.219324163995566],[-136.2991629916299,58.21594700945579],[-136.2739627396274,58.22101274126544],[-136.2631626316263,58.21763558672569],[-136.25956259562597,58.19906123675699],[-136.2559625596256,58.19061835040756],[-136.23436234362345,58.17204400043886],[-136.23076230762308,58.15853538227978],[-136.22356223562235,58.148403918660506],[-136.1911619116191,58.13489530050143],[-136.1839618396184,58.121386682342376],[-136.1839618396184,58.1180095278026],[-136.19836198361983,58.089303714214594],[-136.19476194761947,58.08423798240494],[-136.16596165961658,58.067352209706115],[-136.10116101161012,58.058909323356716],[-136.1479614796148,58.080860827865195],[-136.15876158761588,58.089303714214594],[-136.16596165961658,58.10112375510377],[-136.16596165961658,58.1196981050725],[-136.16236162361622,58.13489530050143],[-136.15876158761588,58.14164960958095],[-136.16956169561695,58.1467153413906],[-136.17676176761768,58.16022395954968],[-136.18036180361804,58.17710973224851],[-136.17676176761768,58.18892977313769],[-136.16596165961658,58.19737265948709],[-136.14436144361443,58.200749814026864],[-136.13356133561336,58.20750412310639],[-136.13716137161373,58.21594700945579],[-136.13716137161373,58.22270131853534],[-136.10116101161012,58.22101274126544],[-136.07236072360723,58.210881277646166],[-135.98235982359824,58.16697826862921],[-135.96435964359642,58.16360111408943],[-135.95715957159572,58.17204400043886],[-135.96075960759606,58.19737265948709],[-135.95715957159572,58.20412696856661],[-135.94275942759427,58.21594700945579],[-135.9211592115921,58.23114420488474],[-135.8131581315813,58.2750472139017],[-135.78435784357845,58.276735791171575],[-135.7591575915759,58.268292904822175],[-135.7159571595716,58.22945562761487],[-135.69075690756907,58.22607847307509],[-135.66195661956618,58.22945562761487],[-135.6367563675637,58.23114420488474],[-135.62235622356224,58.22438989580522],[-135.60075600756008,58.20750412310639],[-135.589955899559,58.20243839129674],[-135.55755557555574,58.19906123675699],[-135.54675546755468,58.19568408221721],[-135.5539555395554,58.18892977313769],[-135.5359553595536,58.18048688678826],[-135.50355503555036,58.17373257770873],[-135.48555485554857,58.16191253681956],[-135.49635496354963,58.15009249593038],[-135.50355503555036,58.138272455041204],[-135.5071550715507,58.124763836882124],[-135.51075510755106,58.11294379599295],[-135.52515525155252,58.102812332373674],[-135.53235532355325,58.0994351778339],[-135.54675546755468,58.09774660056402],[-135.5611556115561,58.09268086875437],[-135.5827558275583,58.07579509605554],[-135.60075600756008,58.053843591547064],[-135.6259562595626,58.04202355065789],[-135.69075690756907,58.053843591547064],[-135.769957699577,58.04708928246754],[-135.78435784357845,58.04202355065789],[-135.7519575195752,58.026826355228934],[-135.69435694356943,58.04033497338801],[-135.66195661956618,58.031892087038585],[-135.6691566915669,58.02513777795906],[-135.65835658356582,58.02007204614941],[-135.64035640356403,58.018383468879534],[-135.6259562595626,58.01331773706988],[-135.62235622356224,58.00318627345058],[-135.63315633156333,57.99812054164093],[-135.65115651156512,57.996431964371055],[-135.7411574115741,58.00149769618071],[-135.769957699577,57.99812054164093],[-135.79155791557915,57.98461192348188],[-135.70875708757086,57.97785761440235],[-135.66195661956618,57.969414728052925],[-135.65475654756548,57.94915180081435],[-135.64035640356403,57.9525289553541],[-135.6259562595626,57.95928326443362],[-135.62235622356224,57.96772615078305],[-135.6367563675637,57.97616903713245],[-135.6367563675637,57.98461192348188],[-135.6151561515615,57.98461192348188],[-135.59355593555935,57.98798907802163],[-135.5719557195572,57.99474338710118],[-135.55755557555574,58.00825200526023],[-135.51435514355143,58.058909323356716],[-135.43515435154353,58.07917225059529],[-135.42435424354244,58.094369446024245],[-135.43155431554317,58.10450090964355],[-135.4459544595446,58.11294379599295],[-135.45675456754566,58.1281409914219],[-135.43875438754387,58.1281409914219],[-135.40635406354062,58.138272455041204],[-135.38835388353883,58.14164960958095],[-135.37035370353703,58.13996103231108],[-135.34515345153451,58.13489530050143],[-135.3091530915309,58.121386682342376],[-135.31635316353163,58.1180095278026],[-135.33435334353345,58.10618948691342],[-135.31635316353163,58.10112375510377],[-135.3019530195302,58.10112375510377],[-135.2659526595266,58.10618948691342],[-135.2479524795248,58.10450090964355],[-135.20835208352082,58.09605802329412],[-135.18675186751867,58.09268086875437],[-135.11835118351183,58.0994351778339],[-135.10035100351004,58.09605802329412],[-135.08955089550895,58.089303714214594],[-135.08955089550895,58.08254940513507],[-135.10755107551074,58.07917225059529],[-135.10755107551074,58.072417941515766],[-134.98154981549817,58.05046643700729],[-134.9239492394924,58.026826355228934],[-134.90234902349022,57.9727918825927],[-134.90594905949058,57.969414728052925],[-134.9131491314913,57.969414728052925],[-134.92034920349204,57.96772615078305],[-134.9239492394924,57.960971841703525],[-134.92034920349204,57.95421753262397],[-134.90954909549095,57.942397491734795],[-134.90954909549095,57.93564318265527],[-134.91674916749167,57.920445987226344],[-134.9239492394924,57.91369167814679],[-134.94914949149492,57.901871637257614],[-134.96354963549635,57.88667444182869],[-134.95994959949599,57.871477246399735],[-134.9419494194942,57.857968628240684],[-134.91674916749167,57.84614858735148],[-134.94554945549456,57.85121431916113],[-135.04635046350464,57.901871637257614],[-135.10755107551074,57.91875740995644],[-135.12915129151293,57.92213456449622],[-135.14355143551435,57.92551171903597],[-135.19755197551976,57.94915180081435],[-135.20475204752046,57.942397491734795],[-135.18315183151833,57.92213456449622],[-135.16155161551615,57.903560214527516],[-135.1327513275133,57.89005159636844],[-135.10755107551074,57.879920132749135],[-135.0571505715057,57.87316582366961],[-135.0391503915039,57.86810009185996],[-135.0139501395014,57.84614858735148],[-134.99954999549996,57.83939427827195],[-134.9851498514985,57.84614858735148],[-134.98154981549817,57.82926281465265],[-134.9671496714967,57.82081992830325],[-134.93114931149313,57.81237704195382],[-134.9419494194942,57.8073113101442],[-134.97074970749708,57.80224557833455],[-134.9851498514985,57.79886842379477],[-135.0031500315003,57.78873696017547],[-135.0139501395014,57.78535980563572],[-135.20475204752046,57.78535980563572],[-135.25875258752586,57.795491269255024],[-135.42075420754207,57.86303436005031],[-135.44955449554496,57.871477246399735],[-135.4819548195482,57.87485440093948],[-135.49275492754927,57.876542978209386],[-135.5071550715507,57.89174017363831],[-135.6979569795698,57.93564318265527],[-135.84555845558455,57.991366232561404],[-135.8671586715867,57.996431964371055],[-135.88875888758886,57.99812054164093],[-135.88875888758886,57.98967765529153],[-135.8419584195842,57.97616903713245],[-135.81675816758167,57.964348996243274],[-135.8059580595806,57.94577464627457],[-135.79155791557915,57.933954605385395],[-135.6151561515615,57.89511732817809],[-135.58635586355865,57.88329728728891],[-135.57555575555756,57.879920132749135],[-135.54675546755468,57.876542978209386],[-135.52155521555216,57.86134578278043],[-135.51435514355143,57.85965720551056],[-135.51435514355143,57.857968628240684],[-135.51435514355143,57.84614858735148],[-135.51075510755106,57.83939427827195],[-135.49995499955,57.8343285464623],[-135.40275402754028,57.814065619223726],[-135.38835388353883,57.81237704195382],[-135.3739537395374,57.8056227328743],[-135.3307533075331,57.77016261020677],[-135.319953199532,57.75834256931759],[-135.32715327153272,57.751588260238066],[-135.35235352353524,57.746522528428414],[-135.35955359553594,57.73639106480911],[-135.3631536315363,57.72625960118981],[-135.35595355953558,57.724571023919935],[-135.32715327153272,57.72963675572959],[-135.27315273152732,57.72963675572959],[-135.25155251552516,57.72625960118981],[-135.22275222752228,57.716128137570536],[-135.21555215552155,57.711062405760885],[-135.21555215552155,57.70768525122111],[-135.20835208352082,57.70599667395123],[-135.19755197551976,57.70937382849098],[-135.17235172351724,57.72625960118981],[-135.16155161551615,57.72963675572959],[-135.11475114751147,57.73470248753924],[-135.10035100351004,57.73639106480911],[-135.0787507875079,57.74989968296819],[-135.07515075150752,57.751588260238066],[-135.06075060750607,57.751588260238066],[-135.05355053550534,57.754965414777814],[-135.0391503915039,57.754965414777814],[-135.02475024750248,57.74989968296819],[-135.01035010350103,57.746522528428414],[-134.98154981549817,57.76171972385737],[-134.9671496714967,57.76509687839712],[-134.93474934749347,57.76509687839712],[-134.9131491314913,57.75665399204772],[-134.90234902349022,57.73470248753924],[-134.89514895148952,57.711062405760885],[-134.8879488794888,57.689110901252405],[-134.89154891548915,57.67222512855358],[-134.88434884348843,57.653650778584876],[-134.85194851948518,57.604682037758266],[-134.84474844748448,57.58779626505944],[-134.8411484114841,57.57091049236061],[-134.8411484114841,57.55233614239191],[-134.84474844748448,57.533761792423206],[-134.8411484114841,57.521941751534],[-134.83754837548375,57.51856459699425],[-134.83394833948338,57.515187442454476],[-134.81234812348123,57.49830166975565],[-134.81954819548196,57.48648162886647],[-134.85554855548554,57.49830166975565],[-134.87354873548736,57.48985878340625],[-134.84834848348484,57.46959585616764],[-134.869948699487,57.461152969818244],[-134.90594905949058,57.45777581527847],[-135.02835028350285,57.461152969818244],[-135.0571505715057,57.466218701627895],[-135.18315183151833,57.51856459699425],[-135.319953199532,57.58441911051966],[-135.45675456754566,57.63338785134627],[-135.51075510755106,57.648585046775224],[-135.5539555395554,57.67222512855358],[-135.56475564755647,57.675602283093326],[-135.5827558275583,57.68066801490298],[-135.62955629556296,57.70599667395123],[-135.769957699577,57.760031146587465],[-135.8131581315813,57.76509687839712],[-135.8059580595806,57.75327683750794],[-135.7951579515795,57.74314537388864],[-135.78435784357845,57.73470248753924],[-135.77355773557736,57.72963675572959],[-135.75555755557556,57.72794817845971],[-135.73755737557377,57.72963675572959],[-135.72315723157232,57.724571023919935],[-135.7159571595716,57.70937382849098],[-135.73035730357304,57.702619519411456],[-135.72675726757268,57.69417663306206],[-135.71235712357122,57.68573374671263],[-135.70515705157052,57.675602283093326],[-135.76275762757626,57.6705365512837],[-135.79155791557915,57.6604050876644],[-135.8059580595806,57.6418307376957],[-135.7339573395734,57.65196220131497],[-135.71235712357122,57.648585046775224],[-135.6439564395644,57.61819065591732],[-135.62235622356224,57.613124924107666],[-135.60435604356044,57.60637061502814],[-135.58635586355865,57.59286199686909],[-135.5719557195572,57.57935337871004],[-135.5719557195572,57.572599069630485],[-135.62235622356224,57.57597622417026],[-135.6439564395644,57.57091049236061],[-135.65475654756548,57.55233614239191],[-135.6151561515615,57.56246760601121],[-135.59715597155972,57.564156183281085],[-135.57915579155792,57.55571329693166],[-135.56835568355683,57.54558183331238],[-135.55755557555574,57.533761792423206],[-135.5611556115561,57.523630328803904],[-135.5827558275583,57.51856459699425],[-135.5827558275583,57.51181028791473],[-135.56475564755647,57.50843313337495],[-135.5539555395554,57.49830166975565],[-135.54675546755468,57.4847930515966],[-135.54675546755468,57.466218701627895],[-135.55755557555574,57.45439866073872],[-135.57915579155792,57.44933292892907],[-135.62235622356224,57.44933292892907],[-135.59355593555935,57.42907000169046],[-135.60075600756008,57.41893853807116],[-135.60795607956078,57.417249960801286],[-135.6151561515615,57.41556138353141],[-135.6259562595626,57.412184228991634],[-135.63315633156333,57.412184228991634],[-135.6439564395644,57.41556138353141],[-135.65835658356582,57.41556138353141],[-135.66195661956618,57.412184228991634],[-135.66195661956618,57.403741342642235],[-135.65835658356582,57.39698703356268],[-135.65115651156512,57.39192130175306],[-135.6439564395644,57.38685556994341],[-135.65475654756548,57.38854414721328],[-135.66555665556655,57.38685556994341],[-135.679956799568,57.38347841540363],[-135.69075690756907,57.3665926427048],[-135.70875708757086,57.3665926427048],[-135.8239582395824,57.38685556994341],[-135.84915849158492,57.39360987902293]]],[[[-61.000810008100075,10.699382634956663],[-61.02241022410223,10.702759789496426],[-61.03321033210332,10.684185439527724],[-61.03681036810367,10.65379104866983],[-61.03681036810367,10.625085235081826],[-61.01881018810188,10.564296453366055],[-61.01521015210152,10.533902062508162],[-61.0440104401044,10.510261980729808],[-61.04041040410404,10.48155616714179],[-61.03681036810367,10.462981817173088],[-61.02961029610296,10.408947344536841],[-61.02241022410223,10.395438726377776],[-61.01521015210152,10.381930108218711],[-60.99720997209971,10.356601449170483],[-60.96120961209611,10.329584212852353],[-60.990009900099,10.29918982199446],[-61.00441004410044,10.246843926628102],[-61.00441004410044,10.189432299452093],[-60.99720997209971,10.13877498135561],[-61.01881018810188,10.142152135895373],[-61.04041040410404,10.135397826815847],[-61.06561065610656,10.121889208656782],[-61.08361083610836,10.106692013227843],[-61.09801098010979,10.094871972338652],[-61.12321123211231,10.086429085989252],[-61.16641166411664,10.07629762236995],[-61.177211772117715,10.074609045100061],[-61.19161191611916,10.074609045100061],[-61.252812528125276,10.083051931449475],[-61.27441274412743,10.0813633541796],[-61.339213392133914,10.069543313290424],[-61.41841418414184,10.07629762236995],[-61.504815048150476,10.069543313290424],[-61.54441544415444,10.07629762236995],[-61.555215552155516,10.074609045100061],[-61.58041580415804,10.062789004210885],[-61.59481594815948,10.06110042694101],[-61.61281612816127,10.056034695131359],[-61.62361623616236,10.056034695131359],[-61.63801638016379,10.057723272401233],[-61.64521645216452,10.062789004210885],[-61.6560165601656,10.069543313290424],[-61.666816668166675,10.07629762236995],[-61.68481684816848,10.0813633541796],[-61.70641706417064,10.084740508719364],[-61.792817928179275,10.084740508719364],[-61.818018180181795,10.0813633541796],[-61.8360183601836,10.072920467830187],[-61.85041850418504,10.06110042694101],[-61.868418684186835,10.04928038605182],[-61.89001890018899,10.042526076972294],[-61.9080190801908,10.042526076972294],[-61.92961929619295,10.056034695131359],[-61.918819188191875,10.069543313290424],[-61.88641886418864,10.086429085989252],[-61.88281882818828,10.089806240529015],[-61.8720187201872,10.093183395068777],[-61.83961839618395,10.099937704148303],[-61.83241832418324,10.106692013227843],[-61.82161821618216,10.121889208656782],[-61.80721807218072,10.133709249545959],[-61.78921789217891,10.140463558625498],[-61.71361713617135,10.164103640403852],[-61.70641706417064,10.165792217673726],[-61.67041670416704,10.184366567642442],[-61.63801638016379,10.209695226690684],[-61.63801638016379,10.240089617548577],[-61.62721627216271,10.246843926628102],[-61.61281612816127,10.246843926628102],[-61.55881558815588,10.238401040278688],[-61.51921519215192,10.240089617548577],[-61.504815048150476,10.240089617548577],[-61.4940149401494,10.245155349358214],[-61.48321483214832,10.255286812977516],[-61.46881468814688,10.268795431136581],[-61.461614616146164,10.282304049295632],[-61.4580145801458,10.302566976534237],[-61.4580145801458,10.309321285613763],[-61.461614616146164,10.31945274923305],[-61.465214652146514,10.334649944662004],[-61.46881468814688,10.353224294630706],[-61.47241472414724,10.359978603710246],[-61.479614796147956,10.366732912789772],[-61.48321483214832,10.371798644599423],[-61.48321483214832,10.376864376409074],[-61.479614796147956,10.378552953678948],[-61.47601476014759,10.378552953678948],[-61.47601476014759,10.381930108218711],[-61.47601476014759,10.38868441729825],[-61.48321483214832,10.408947344536841],[-61.486814868148684,10.415701653616367],[-61.486814868148684,10.43089884904532],[-61.48321483214832,10.449473199014022],[-61.46881468814688,10.48155616714179],[-61.461614616146164,10.518704867079222],[-61.461614616146164,10.557542144286515],[-61.47241472414724,10.594690844223933],[-61.49761497614976,10.625085235081826],[-61.490414904149034,10.631839544161352],[-61.530015300152996,10.657168203209594],[-61.5480154801548,10.667299666828896],[-61.57681576815767,10.679119707718073],[-61.59841598415984,10.684185439527724],[-61.64881648816488,10.687562594067487],[-61.6560165601656,10.689251171337375],[-61.65961659616596,10.694316903147012],[-61.666816668166675,10.706136944036189],[-61.616416164161635,10.741597066703733],[-61.60201602016019,10.748351375783258],[-61.56241562415623,10.744974221243496],[-61.515615156151554,10.755105684862798],[-61.490414904149034,10.755105684862798],[-61.486814868148684,10.755105684862798],[-61.47241472414724,10.760171416672435],[-61.465214652146514,10.770302880291737],[-61.461614616146164,10.7736800348315],[-61.454414544145436,10.761859993942323],[-61.44721447214472,10.761859993942323],[-61.44721447214472,10.765237148482086],[-61.44721447214472,10.775368612101389],[-61.440014400143994,10.775368612101389],[-61.440014400143994,10.770302880291737],[-61.440014400143994,10.768614303021849],[-61.436414364143644,10.765237148482086],[-61.43281432814328,10.761859993942323],[-61.440014400143994,10.755105684862798],[-61.43281432814328,10.756794262132672],[-61.429214292142916,10.761859993942323],[-61.4220142201422,10.765237148482086],[-61.4220142201422,10.768614303021849],[-61.40041400414003,10.768614303021849],[-61.39321393213932,10.775368612101389],[-61.37161371613716,10.797320116609868],[-61.3680136801368,10.802385848419505],[-61.353613536135356,10.804074425689393],[-61.35001350013499,10.804074425689393],[-61.2960129601296,10.797320116609868],[-61.18081180811808,10.797320116609868],[-61.170011700117,10.804074425689393],[-61.15561155611556,10.81589446657857],[-61.09801098010979,10.822648775658095],[-61.080010800108,10.831091662007509],[-60.950409504095035,10.844600280166574],[-60.90720907209072,10.837845971087049],[-60.950409504095035,10.763548571212212],[-61.000810008100075,10.699382634956663]]],[[[-65.63045630456304,18.279405999460096],[-65.6340563405634,18.26758595857092],[-65.62685626856268,18.259143072221505],[-65.6160561605616,18.255765917681742],[-65.60525605256052,18.262520226761268],[-65.60525605256052,18.254077340411854],[-65.60525605256052,18.24563445406244],[-65.59085590855908,18.2304372586335],[-65.60165601656016,18.223682949553975],[-65.60525605256052,18.21524006320456],[-65.61245612456125,18.21524006320456],[-65.62325623256233,18.228748681363612],[-65.6340563405634,18.228748681363612],[-65.63765637656377,18.218617217744324],[-65.62685626856268,18.20510859958526],[-65.63765637656377,18.198354290505733],[-65.64845648456485,18.200042867775608],[-65.66645666456664,18.20848575412502],[-65.68445684456844,18.20342002231537],[-65.70245702457024,18.194977135965956],[-65.72045720457204,18.18991140415632],[-65.73845738457385,18.18315709507678],[-65.75645756457564,18.166271322377952],[-65.78885788857887,18.113925427011594],[-65.79245792457924,18.086908190693464],[-65.80685806858068,18.07002241799465],[-65.81045810458104,18.066645263454873],[-65.83565835658356,18.06326810891511],[-65.83925839258391,18.056513799835585],[-65.8320583205832,18.026119408977692],[-65.850058500585,18.009233636278864],[-65.8860588605886,17.987282131770385],[-65.940059400594,17.97039635907157],[-65.96165961659617,17.97039635907157],[-65.98325983259832,17.97546209088121],[-66.00486004860048,17.977150668151097],[-66.01566015660156,17.97546209088121],[-66.0480604806048,17.963642049992032],[-66.05526055260552,17.963642049992032],[-66.0840608406084,17.963642049992032],[-66.10566105661056,17.95857631818238],[-66.16326163261633,17.929870504594376],[-66.1740617406174,17.928181927324502],[-66.18486184861848,17.928181927324502],[-66.19566195661956,17.928181927324502],[-66.20286202862029,17.92311619551485],[-66.210062100621,17.929870504594376],[-66.210062100621,17.931559081864265],[-66.210062100621,17.936624813673916],[-66.19926199261992,17.94000196821368],[-66.19566195661956,17.94506770002333],[-66.20286202862029,17.950133431832967],[-66.210062100621,17.956887740912507],[-66.23166231662316,17.94000196821368],[-66.24246242462424,17.936624813673916],[-66.25686256862568,17.94000196821368],[-66.2820628206282,17.94337912275344],[-66.29286292862928,17.94506770002333],[-66.29646296462964,17.951822009102855],[-66.30006300063,17.95857631818238],[-66.30726307263072,17.963642049992032],[-66.3180631806318,17.97039635907157],[-66.32886328863289,17.972084936341446],[-66.34326343263432,17.972084936341446],[-66.36846368463684,17.96533062726192],[-66.39726397263972,17.946756277293204],[-66.41526415264153,17.950133431832967],[-66.43686436864368,17.963642049992032],[-66.45126451264512,17.98221639996075],[-66.46926469264692,17.992347863580036],[-66.48726487264872,17.988970709040274],[-66.50166501665016,17.987282131770385],[-66.51246512465124,17.98221639996075],[-66.52686526865268,17.97883924542097],[-66.55926559265592,17.977150668151097],[-66.570065700657,17.972084936341446],[-66.58086580865809,17.96533062726192],[-66.59166591665917,17.963642049992032],[-66.60966609666096,17.972084936341446],[-66.61686616866169,17.967019204531795],[-66.6240662406624,17.963642049992032],[-66.62766627666277,17.97546209088121],[-66.64566645666456,17.977150668151097],[-66.68886688866888,17.972084936341446],[-66.6960669606696,17.973773513611334],[-66.72486724867248,17.983904977230623],[-66.76446764467644,17.983904977230623],[-66.76446764467644,17.997413595389688],[-66.77526775267752,18.00247932719934],[-66.7860678606786,17.999102172659576],[-66.80046800468004,17.992347863580036],[-66.80046800468004,17.983904977230623],[-66.7860678606786,17.983904977230623],[-66.79686796867968,17.968707781801683],[-66.81846818468185,17.95857631818238],[-66.840068400684,17.953510586372744],[-66.86166861668616,17.950133431832967],[-66.89406894068941,17.950133431832967],[-66.90846908469084,17.948444854563093],[-66.91926919269193,17.950133431832967],[-66.92286922869228,17.950133431832967],[-66.92646926469264,17.94506770002333],[-66.930069300693,17.93831339094379],[-66.930069300693,17.929870504594376],[-66.9480694806948,17.931559081864265],[-66.96246962469624,17.941690545483553],[-66.9840698406984,17.963642049992032],[-67.00567005670057,17.96533062726192],[-67.02727027270272,17.968707781801683],[-67.05247052470524,17.968707781801683],[-67.06687066870668,17.972084936341446],[-67.08127081270813,17.961953472722158],[-67.09567095670957,17.953510586372744],[-67.11367113671136,17.950133431832967],[-67.12447124471244,17.951822009102855],[-67.15687156871569,17.955199163642618],[-67.1820718207182,17.96533062726192],[-67.19287192871928,17.95857631818238],[-67.18567185671856,17.934936236404027],[-67.19647196471965,17.934936236404027],[-67.21087210872108,17.956887740912507],[-67.21447214472144,17.967019204531795],[-67.21447214472144,17.994036440849925],[-67.18927189271892,18.004167904469213],[-67.1820718207182,18.009233636278864],[-67.17487174871748,18.010922213548753],[-67.16767167671676,18.014299368088516],[-67.1640716407164,18.02274225443793],[-67.16767167671676,18.02780798624758],[-67.17847178471784,18.032873718057218],[-67.18927189271892,18.029496563517455],[-67.20367203672036,18.036250872596995],[-67.20367203672036,18.054825222565697],[-67.19647196471965,18.06326810891511],[-67.18567185671856,18.07002241799465],[-67.18927189271892,18.08015388161394],[-67.19287192871928,18.097039654312766],[-67.1820718207182,18.10717111793207],[-67.1820718207182,18.139254086059836],[-67.17487174871748,18.176402785997254],[-67.16767167671676,18.18484567234667],[-67.15687156871569,18.191599981426194],[-67.15327153271532,18.20342002231537],[-67.15687156871569,18.213551485934673],[-67.17127171271713,18.22537152682385],[-67.18567185671856,18.27265169038057],[-67.19647196471965,18.291226040349272],[-67.2180721807218,18.296291772158924],[-67.2360723607236,18.299668926698686],[-67.2540725407254,18.33006331755658],[-67.26127261272612,18.343571935715644],[-67.27207272072721,18.362146285684346],[-67.26847268472685,18.368900594763886],[-67.23967239672396,18.3773434811133],[-67.2180721807218,18.385786367462714],[-67.20007200072,18.394229253812128],[-67.18567185671856,18.402672140161542],[-67.16047160471604,18.421246490130244],[-67.15687156871569,18.443197994638723],[-67.16767167671676,18.46008376733755],[-67.17127171271713,18.485412426385793],[-67.15327153271532,18.509052508164146],[-67.10287102871028,18.52256112632321],[-67.04887048870488,18.520872549053323],[-67.01287012870128,18.505675353624383],[-66.90846908469084,18.485412426385793],[-66.8040680406804,18.498921044544844],[-66.78966789667896,18.49723246727497],[-66.750067500675,18.483723849115904],[-66.73566735667356,18.483723849115904],[-66.6960669606696,18.492166735465318],[-66.64206642066421,18.49723246727497],[-66.61326613266132,18.493855312735207],[-66.5880658806588,18.483723849115904],[-66.570065700657,18.487101003655667],[-66.50886508865088,18.487101003655667],[-66.46566465664657,18.47528096276649],[-66.38286382863828,18.492166735465318],[-66.30366303663037,18.468526653686965],[-66.25686256862568,18.482035271846016],[-66.20646206462064,18.465149499147202],[-66.19566195661956,18.4735923854966],[-66.18126181261812,18.471903808226728],[-66.1740617406174,18.463460921877314],[-66.17046170461704,18.456706612797788],[-66.16326163261633,18.45332945825801],[-66.15246152461525,18.458395190067662],[-66.14526145261452,18.468526653686965],[-66.13446134461344,18.465149499147202],[-66.1380613806138,18.45332945825801],[-66.11646116461164,18.443197994638723],[-66.11646116461164,18.43306653101942],[-66.10926109261092,18.421246490130244],[-66.09486094860948,18.419557912860355],[-66.05886058860588,18.429689376479658],[-66.05886058860588,18.436443685559183],[-66.07686076860769,18.438132262829072],[-66.09486094860948,18.448263726448374],[-66.10926109261092,18.461772344607425],[-66.120061200612,18.4735923854966],[-66.05526055260552,18.45332945825801],[-66.04086040860408,18.44995230371825],[-66.02646026460265,18.446575149178486],[-66.0120601206012,18.443197994638723],[-65.99765997659976,18.44995230371825],[-65.99045990459904,18.463460921877314],[-65.96525965259652,18.458395190067662],[-65.9220592205922,18.446575149178486],[-65.9040590405904,18.456706612797788],[-65.89325893258932,18.45332945825801],[-65.87885878858788,18.444886571908597],[-65.850058500585,18.438132262829072],[-65.8320583205832,18.42800079920977],[-65.8140581405814,18.411115026510956],[-65.80325803258032,18.416180758320593],[-65.79245792457924,18.424623644670007],[-65.78885788857887,18.422935067400132],[-65.78885788857887,18.41786933559048],[-65.79245792457924,18.41280360378083],[-65.7960579605796,18.404360717431416],[-65.78885788857887,18.406049294701305],[-65.7780577805778,18.411115026510956],[-65.77085770857708,18.41449218105072],[-65.75645756457564,18.39085209927235],[-65.73845738457385,18.382409212922937],[-65.7240572405724,18.39085209927235],[-65.69885698856989,18.37058917203376],[-65.66285662856629,18.367212017493998],[-65.64485644856448,18.379032058383174],[-65.63765637656377,18.385786367462714],[-65.63045630456304,18.39085209927235],[-65.61965619656196,18.389163522002477],[-65.61965619656196,18.382409212922937],[-65.63045630456304,18.333440472096342],[-65.6340563405634,18.291226040349272],[-65.63045630456304,18.279405999460096]]],[[[-76.2649626496265,18.012610790818627],[-76.25776257762577,17.9957250181198],[-76.25056250562506,17.977150668151097],[-76.23256232562325,17.953510586372744],[-76.21456214562146,17.934936236404027],[-76.18936189361894,17.914673309165437],[-76.20016200162001,17.90791900008591],[-76.25056250562506,17.894410381926846],[-76.28656286562865,17.87583603195813],[-76.30816308163081,17.87077030014848],[-76.32616326163262,17.874147454688256],[-76.31896318963189,17.879213186497893],[-76.31536315363154,17.88259034103767],[-76.31176311763117,17.894410381926846],[-76.32976329763298,17.889344650117195],[-76.34416344163441,17.865704568338842],[-76.36216362163621,17.86063883652919],[-76.38016380163802,17.865704568338842],[-76.39816398163981,17.872458877418367],[-76.41616416164162,17.87752460922802],[-76.44496444964449,17.867393145608716],[-76.52416524165241,17.86063883652919],[-76.57816578165782,17.869081722878605],[-76.58536585365853,17.867393145608716],[-76.59616596165961,17.867393145608716],[-76.60336603366034,17.867393145608716],[-76.61416614166141,17.874147454688256],[-76.61776617766178,17.884278918307544],[-76.62136621366213,17.894410381926846],[-76.62136621366213,17.904541845546134],[-76.6321663216632,17.909607577355786],[-76.63936639366393,17.911296154625674],[-76.6429664296643,17.9180504637052],[-76.65016650166501,17.92311619551485],[-76.65376653766538,17.929870504594376],[-76.68616686166861,17.936624813673916],[-76.69336693366934,17.94000196821368],[-76.70776707767077,17.946756277293204],[-76.72936729367294,17.94506770002333],[-76.76536765367653,17.936624813673916],[-76.77976779767798,17.934936236404027],[-76.83376833768337,17.936624813673916],[-76.83376833768337,17.94337912275344],[-76.72216722167221,17.950133431832967],[-76.72936729367294,17.955199163642618],[-76.73296732967329,17.96026489545227],[-76.74736747367473,17.963642049992032],[-76.77616776167761,17.963642049992032],[-76.79776797767977,17.963642049992032],[-76.81936819368194,17.97546209088121],[-76.83736837368373,17.98559355450051],[-76.84816848168481,17.992347863580036],[-76.85176851768517,17.98221639996075],[-76.85896858968589,17.972084936341446],[-76.86976869768698,17.95857631818238],[-76.87336873368733,17.950133431832967],[-76.88776887768877,17.951822009102855],[-76.89136891368913,17.94506770002333],[-76.8949689496895,17.921427618244962],[-76.91296912969129,17.86063883652919],[-76.92736927369273,17.843753063830363],[-76.94176941769418,17.83362160021106],[-76.95616956169562,17.83362160021106],[-76.96336963369633,17.836998754750837],[-76.97056970569706,17.842064486560474],[-76.98136981369814,17.847130218370125],[-77.03897038970389,17.847130218370125],[-77.03897038970389,17.853884527449665],[-77.01737017370174,17.86063883652919],[-77.02817028170281,17.869081722878605],[-77.04257042570426,17.887656072847307],[-77.05337053370533,17.894410381926846],[-77.06417064170641,17.899476113736497],[-77.0929709297093,17.90285326827626],[-77.11817118171182,17.894410381926846],[-77.14337143371434,17.88090176376778],[-77.15777157771578,17.850507372909888],[-77.16137161371613,17.8403759092906],[-77.15417154171541,17.81335867297247],[-77.16137161371613,17.809981518432707],[-77.17577175771757,17.80322720935318],[-77.1829718297183,17.79985005481342],[-77.17937179371793,17.794784323003768],[-77.17577175771757,17.784652859384465],[-77.17577175771757,17.77789855030494],[-77.18657186571865,17.78296428211459],[-77.19737197371974,17.78296428211459],[-77.20817208172082,17.779587127574814],[-77.21537215372153,17.77283281849529],[-77.19737197371974,17.761012777606112],[-77.17937179371793,17.75763562306635],[-77.16137161371613,17.759324200336223],[-77.13977139771397,17.766078509415763],[-77.1289712897129,17.727241232208456],[-77.13257132571326,17.71035545950963],[-77.15777157771578,17.703601150430103],[-77.17937179371793,17.703601150430103],[-77.19737197371974,17.70866688223974],[-77.21537215372153,17.717109768589154],[-77.30177301773017,17.791407168464005],[-77.31977319773198,17.811670095702596],[-77.39537395373954,17.853884527449665],[-77.41697416974169,17.862327413799065],[-77.44217442174421,17.864015991068953],[-77.46017460174602,17.857261681989428],[-77.48177481774817,17.843753063830363],[-77.50337503375033,17.842064486560474],[-77.54657546575466,17.853884527449665],[-77.58977589775897,17.86063883652919],[-77.7229772297723,17.853884527449665],[-77.73017730177301,17.85557310471954],[-77.75177751777517,17.869081722878605],[-77.78777787777878,17.884278918307544],[-77.7949779497795,17.891033227387084],[-77.79857798577986,17.899476113736497],[-77.80937809378094,17.924804772784725],[-77.8129781297813,17.93324765913414],[-77.81657816578165,17.94000196821368],[-77.83457834578346,17.94506770002333],[-77.83817838178382,17.950133431832967],[-77.84177841778417,17.97039635907157],[-77.83817838178382,17.9957250181198],[-77.84537845378453,18.01767652262828],[-77.87057870578705,18.026119408977692],[-77.9389793897939,18.026119408977692],[-77.95697956979569,18.032873718057218],[-77.97857978579785,18.08521961342359],[-77.98937989379894,18.095351077042878],[-77.99657996579965,18.10041680885253],[-78.00738007380073,18.10548254066218],[-78.01458014580146,18.10717111793207],[-78.02178021780217,18.113925427011594],[-78.02538025380254,18.12574546790077],[-78.03258032580325,18.149385549679124],[-78.05058050580506,18.18484567234667],[-78.07578075780758,18.198354290505733],[-78.14778147781477,18.196665713235845],[-78.19458194581945,18.20342002231537],[-78.20898208982089,18.20342002231537],[-78.21978219782197,18.196665713235845],[-78.2269822698227,18.191599981426194],[-78.23418234182341,18.193288558696082],[-78.25938259382593,18.20342002231537],[-78.27378273782737,18.206797176855147],[-78.30618306183061,18.21524006320456],[-78.32418324183242,18.216928640474435],[-78.34218342183422,18.221994372284087],[-78.35658356583565,18.23212583590339],[-78.37098370983709,18.24732303133233],[-78.37458374583746,18.26589738130103],[-78.36738367383674,18.274340267650445],[-78.3529835298353,18.284471731269747],[-78.34578345783457,18.29291461761916],[-78.34578345783457,18.304734658508337],[-78.34578345783457,18.33512904936623],[-78.34218342183422,18.343571935715644],[-78.3349833498335,18.35539197660482],[-78.3349833498335,18.363834862954235],[-78.33138331383313,18.367212017493998],[-78.3169831698317,18.368900594763886],[-78.30618306183061,18.373966326573523],[-78.2989829898299,18.385786367462714],[-78.28818288182882,18.394229253812128],[-78.27018270182701,18.389163522002477],[-78.2629826298263,18.41786933559048],[-78.23058230582305,18.444886571908597],[-78.19458194581945,18.4550180355279],[-78.16938169381693,18.436443685559183],[-78.15498154981549,18.45332945825801],[-78.1369813698137,18.45332945825801],[-78.11898118981189,18.446575149178486],[-78.09738097380973,18.443197994638723],[-78.03258032580325,18.44995230371825],[-78.0109801098011,18.44995230371825],[-78.00018000180002,18.446575149178486],[-77.99297992979929,18.443197994638723],[-77.98217982179821,18.441509417368835],[-77.97137971379713,18.443197994638723],[-77.96057960579606,18.44995230371825],[-77.96057960579606,18.456706612797788],[-77.96057960579606,18.463460921877314],[-77.95337953379533,18.4735923854966],[-77.93177931779317,18.50229819908462],[-77.9209792097921,18.510741085434034],[-77.90297902979029,18.51918397178345],[-77.86337863378634,18.524249703593085],[-77.81657816578165,18.524249703593085],[-77.73377733777338,18.507363930894257],[-77.66537665376653,18.492166735465318],[-77.56817568175681,18.49047815819543],[-77.5249752497525,18.48034669457614],[-77.45657456574565,18.47528096276649],[-77.42777427774277,18.468526653686965],[-77.40977409774098,18.456706612797788],[-77.37737377373773,18.465149499147202],[-77.32697326973269,18.465149499147202],[-77.2729727297273,18.46008376733755],[-77.23697236972369,18.44995230371825],[-77.23337233372334,18.446575149178486],[-77.22977229772297,18.43306653101942],[-77.22257222572226,18.429689376479658],[-77.2189721897219,18.429689376479658],[-77.21177211772117,18.431377953749546],[-77.20817208172082,18.43475510828931],[-77.20817208172082,18.436443685559183],[-77.16497164971649,18.429689376479658],[-77.15777157771578,18.426312221939895],[-77.14337143371434,18.41280360378083],[-77.13617136171361,18.409426449241067],[-77.10377103771037,18.40773787197118],[-77.07137071370714,18.41280360378083],[-77.05337053370533,18.416180758320593],[-77.03897038970389,18.41280360378083],[-77.01737017370174,18.404360717431416],[-77.00657006570066,18.402672140161542],[-76.94896948969489,18.404360717431416],[-76.93816938169381,18.411115026510956],[-76.92016920169202,18.41280360378083],[-76.90576905769058,18.411115026510956],[-76.8949689496895,18.409426449241067],[-76.88776887768877,18.400983562891653],[-76.89136891368913,18.389163522002477],[-76.89136891368913,18.37565490384341],[-76.88056880568806,18.367212017493998],[-76.84456844568446,18.34526051298552],[-76.81216812168121,18.32837474028669],[-76.80856808568085,18.318243276667403],[-76.79776797767977,18.291226040349272],[-76.79416794167942,18.28278315399986],[-76.78336783367833,18.27771742219022],[-76.76536765367653,18.27265169038057],[-76.71136711367113,18.269274535840808],[-76.69696696966969,18.26589738130103],[-76.68256682566825,18.257454494951617],[-76.66096660966609,18.240568722252803],[-76.64656646566465,18.2304372586335],[-76.62856628566286,18.22537152682385],[-76.59616596165961,18.227060104093738],[-76.57816578165782,18.21524006320456],[-76.57456574565745,18.21524006320456],[-76.57096570965709,18.21017433139491],[-76.56376563765637,18.206797176855147],[-76.55656556565565,18.20342002231537],[-76.4809648096481,18.20342002231537],[-76.47376473764737,18.201731445045496],[-76.46656466564666,18.186534249616557],[-76.4629646296463,18.18315709507678],[-76.3909639096391,18.16964847691773],[-76.35136351363514,18.156139858758664],[-76.34776347763477,18.135876931520073],[-76.31896318963189,18.108859695201943],[-76.29736297362973,18.078465304344064],[-76.2649626496265,18.012610790818627]]],[[[-77.5249752497525,23.93276269902738],[-77.51777517775177,23.919254080868313],[-77.52137521375214,23.880416803661006],[-77.51777517775177,23.86353103096218],[-77.53577535775358,23.82807090829465],[-77.54657546575466,23.823005176484997],[-77.57177571775718,23.829759485564523],[-77.56817568175681,23.816250867405472],[-77.55017550175502,23.802742249246407],[-77.54657546575466,23.789233631087342],[-77.54657546575466,23.775725012928277],[-77.55377553775537,23.760527817499337],[-77.5609756097561,23.747019199340272],[-77.56457564575645,23.740264890260747],[-77.5969759697597,23.730133426641444],[-77.62217622176222,23.740264890260747],[-77.64377643776437,23.755462085689686],[-77.6689766897669,23.760527817499337],[-77.65097650976509,23.741953467530635],[-77.65097650976509,23.73351058118122],[-77.66177661776618,23.720001963022156],[-77.6689766897669,23.720001963022156],[-77.68337683376834,23.741953467530635],[-77.71577715777157,23.74870777661016],[-77.77697776977769,23.747019199340272],[-77.74457744577445,23.760527817499337],[-77.74817748177482,23.779102167468054],[-77.72657726577265,23.777413590198165],[-77.6761767617676,23.760527817499337],[-77.6689766897669,23.779102167468054],[-77.65817658176582,23.792610785627105],[-77.64377643776437,23.80105367197652],[-77.58977589775897,23.824693753754886],[-77.57537575375754,23.836513794644063],[-77.57537575375754,23.84664525826335],[-77.59337593375933,23.85339956734289],[-77.61137611376114,23.844956680993477],[-77.62937629376293,23.829759485564523],[-77.64377643776437,23.823005176484997],[-77.70137701377013,23.789233631087342],[-77.69777697776978,23.78585647654758],[-77.69777697776978,23.782479322007816],[-77.71937719377193,23.78416789927769],[-77.74457744577445,23.816250867405472],[-77.76617766177661,23.823005176484997],[-77.69777697776978,23.844956680993477],[-77.66537665376653,23.86353103096218],[-77.66177661776618,23.885482535470658],[-77.6761767617676,23.87028534004172],[-77.69417694176941,23.865219608232067],[-77.74817748177482,23.86353103096218],[-77.76257762577626,23.861842453692304],[-77.77337773377734,23.856776721882653],[-77.78417784177842,23.85339956734289],[-77.79857798577986,23.856776721882653],[-77.80577805778057,23.865219608232067],[-77.8129781297813,23.877039649121244],[-77.82737827378273,23.944582739916555],[-77.82737827378273,23.969911398964797],[-77.82377823778238,23.980042862584085],[-77.83817838178382,23.985108594393736],[-77.83817838178382,23.99524005801304],[-77.83457834578346,24.00874867617209],[-77.83457834578346,24.022257294331155],[-77.84537845378453,24.03407733522033],[-77.85977859778598,24.04083164429987],[-77.86697866978669,24.047585953379397],[-77.85977859778598,24.05602883972881],[-77.85977859778598,24.062783148808336],[-77.88137881378813,24.074603189697527],[-77.94257942579425,24.09655469420599],[-77.93537935379354,24.104997580555406],[-77.92817928179281,24.111751889634945],[-77.91377913779138,24.10330900328553],[-77.91017910179102,24.104997580555406],[-77.90657906579065,24.11344046690482],[-77.91017910179102,24.116817621444582],[-77.90657906579065,24.126949085063885],[-77.91017910179102,24.132014816873536],[-77.91017910179102,24.1353919714133],[-77.90297902979029,24.145523435032587],[-77.89217892178921,24.148900589572364],[-77.86337863378634,24.157343475921778],[-77.85257852578525,24.16578636227119],[-77.8489784897849,24.174229248620605],[-77.84177841778417,24.199557907668833],[-77.83817838178382,24.206312216748373],[-77.80577805778057,24.209689371288135],[-77.79137791377913,24.213066525827898],[-77.78417784177842,24.221509412177312],[-77.78057780577805,24.22826372125685],[-77.77697776977769,24.235018030336377],[-77.76977769777697,24.248526648495442],[-77.75537755377553,24.25865811211473],[-77.71577715777157,24.27554388481356],[-77.70137701377013,24.289052502972623],[-77.6761767617676,24.30256112113169],[-77.66537665376653,24.289052502972623],[-77.65817658176582,24.273855307543684],[-77.65097650976509,24.26034668938462],[-77.63657636576366,24.255280957574968],[-77.6329763297633,24.248526648495442],[-77.64017640176401,24.236706607606266],[-77.70137701377013,24.189426444049545],[-77.72657726577265,24.177606403160368],[-77.7589775897759,24.172540671350717],[-77.7589775897759,24.16578636227119],[-77.74097740977409,24.164097785001303],[-77.73377733777338,24.157343475921778],[-77.73737737377374,24.148900589572364],[-77.75537755377553,24.145523435032587],[-77.7589775897759,24.14045770322295],[-77.74817748177482,24.132014816873536],[-77.7229772297723,24.116817621444582],[-77.70857708577086,24.123571930524122],[-77.70137701377013,24.11344046690482],[-77.70497704977049,24.094866116936117],[-77.7229772297723,24.066160303348113],[-77.7229772297723,24.052651685189048],[-77.73017730177301,24.042520221569745],[-77.74457744577445,24.03576591249022],[-77.72657726577265,24.03070018068057],[-77.70857708577086,24.044208798839634],[-77.67977679776797,24.101620426015643],[-77.65817658176582,24.123571930524122],[-77.64737647376474,24.137080548683173],[-77.64377643776437,24.157343475921778],[-77.64377643776437,24.18267213497002],[-77.64017640176401,24.206312216748373],[-77.62577625776257,24.221509412177312],[-77.60777607776078,24.21813225763755],[-77.59337593375933,24.19786933039896],[-77.57897578975789,24.172540671350717],[-77.56817568175681,24.15565489865189],[-77.55737557375573,24.14045770322295],[-77.55017550175502,24.125260507793996],[-77.54657546575466,24.10837473509517],[-77.54297542975429,24.074603189697527],[-77.53937539375393,24.054340262458922],[-77.53937539375393,24.045897376109508],[-77.53937539375393,24.03407733522033],[-77.54297542975429,24.01550298525163],[-77.54657546575466,24.003682944362453],[-77.54297542975429,23.9986172125528],[-77.52857528575285,23.980042862584085],[-77.5249752497525,23.969911398964797],[-77.52857528575285,23.95809135807562],[-77.53577535775358,23.95133704899608],[-77.54297542975429,23.94627131718643],[-77.54657546575466,23.942894162646667],[-77.55737557375573,23.937828430837016],[-77.57897578975789,23.937828430837016],[-77.5969759697597,23.93107412175749],[-77.60057600576005,23.90574546270925],[-77.56457564575645,23.927696967217727],[-77.54657546575466,23.93613985356714],[-77.5249752497525,23.93276269902738]]],[[[-78.3529835298353,24.658850925076933],[-78.34218342183422,24.66560523415646],[-78.3349833498335,24.672359543236],[-78.3349833498335,24.682491006855287],[-78.34218342183422,24.69262247047459],[-78.32778327783278,24.71119682044329],[-78.30978309783097,24.709508243173417],[-78.2989829898299,24.69768820228424],[-78.29178291782918,24.67573669777576],[-78.29178291782918,24.658850925076933],[-78.29538295382953,24.643653729647994],[-78.30258302583026,24.63014511148893],[-78.31338313383134,24.618325070599752],[-78.33138331383313,24.606505029710576],[-78.33138331383313,24.604816452440687],[-78.33138331383313,24.594684988821385],[-78.32778327783278,24.584553525202097],[-78.32058320583205,24.581176370662334],[-78.29178291782918,24.59806214336116],[-78.27738277382774,24.601439297900924],[-78.27018270182701,24.60988218425034],[-78.27018270182701,24.631833688758817],[-78.25218252182522,24.623390802409403],[-78.25218252182522,24.604816452440687],[-78.25578255782557,24.584553525202097],[-78.25578255782557,24.56597917523338],[-78.23778237782378,24.557536288883966],[-78.2269822698227,24.569356329773157],[-78.2269822698227,24.591307834281622],[-78.23058230582305,24.611570761520213],[-78.21978219782197,24.606505029710576],[-78.20898208982089,24.601439297900924],[-78.20178201782018,24.59806214336116],[-78.19818198181981,24.604816452440687],[-78.19818198181981,24.618325070599752],[-78.20538205382053,24.62845653421904],[-78.21618216182162,24.636899420568454],[-78.22338223382233,24.64534230691787],[-78.22338223382233,24.65040803872752],[-78.22338223382233,24.66560523415646],[-78.22338223382233,24.672359543236],[-78.23058230582305,24.679113852315524],[-78.24498244982449,24.69262247047459],[-78.25218252182522,24.699376779554115],[-78.25578255782557,24.714573974983068],[-78.25938259382593,24.729771170412008],[-78.2629826298263,24.73990263403131],[-78.27738277382774,24.73483690222166],[-78.26658266582666,24.726394015872245],[-78.2629826298263,24.71119682044329],[-78.26658266582666,24.672359543236],[-78.27378273782737,24.682491006855287],[-78.28098280982809,24.699376779554115],[-78.28818288182882,24.714573974983068],[-78.30258302583026,24.721328284062594],[-78.30258302583026,24.72808259314212],[-78.30258302583026,24.744968365840947],[-78.29178291782918,24.77536275669884],[-78.27738277382774,24.79055995212778],[-78.25578255782557,24.805757147556733],[-78.24138241382414,24.826020074795323],[-78.24498244982449,24.851348733843565],[-78.23418234182341,24.856414465653216],[-78.20898208982089,24.861480197462853],[-78.20178201782018,24.868234506542393],[-78.19818198181981,24.88005454743157],[-78.18738187381874,24.90538320647981],[-78.18378183781837,24.918891824638862],[-78.1729817298173,24.918891824638862],[-78.17658176581766,24.927334710988276],[-78.18378183781837,24.93746617460758],[-78.1909819098191,24.945909060956993],[-78.18738187381874,24.954351947306407],[-78.18378183781837,24.96786056546547],[-78.1729817298173,24.981369183624523],[-78.16578165781658,24.988123492704062],[-78.15858158581585,24.99994353359324],[-78.15858158581585,25.028649347181243],[-78.16938169381693,25.0725523561982],[-78.18018180181801,25.10463532432597],[-78.20178201782018,25.14684975607304],[-78.21258212582126,25.183998456010457],[-78.20178201782018,25.20594996051892],[-78.18738187381874,25.20594996051892],[-78.14778147781477,25.199195651439396],[-78.13338133381333,25.194129919629745],[-78.12258122581225,25.183998456010457],[-78.11538115381154,25.17217841512128],[-78.10818108181081,25.163735528771866],[-78.09018090180902,25.158669796962215],[-78.07578075780758,25.16542410604174],[-78.06138061380614,25.175555569661043],[-78.04338043380433,25.18230987874057],[-78.02898028980289,25.175555569661043],[-78.01458014580146,25.16711268331163],[-78.00018000180002,25.16035837423209],[-77.98937989379894,25.151915487882675],[-77.97857978579785,25.138406869723624],[-77.99297992979929,25.12320967429467],[-77.99297992979929,25.10463532432597],[-77.98577985779858,25.089438128897015],[-77.97137971379713,25.07761808800784],[-77.98217982179821,25.037092233530657],[-77.98577985779858,25.013452151752304],[-77.98217982179821,25.001632110863127],[-77.96057960579606,24.99994353359324],[-77.94617946179461,24.991500647243825],[-77.93537935379354,24.976303451814886],[-77.87417874178742,24.8378401156845],[-77.82737827378273,24.778739911238603],[-77.8129781297813,24.761854138539775],[-77.7949779497795,24.75509982946025],[-77.78417784177842,24.74834552038071],[-77.74817748177482,24.714573974983068],[-77.73737737377374,24.699376779554115],[-77.73737737377374,24.682491006855287],[-77.73737737377374,24.657162347807045],[-77.74097740977409,24.63521084329858],[-77.74817748177482,24.621702225139515],[-77.75177751777517,24.601439297900924],[-77.74457744577445,24.57779921612257],[-77.7229772297723,24.5355847843755],[-77.71937719377193,24.500124661707957],[-77.72657726577265,24.474796002659716],[-77.75177751777517,24.457910229960888],[-77.78777787777878,24.45284449815125],[-77.80577805778057,24.449467343611474],[-77.8129781297813,24.439335879992186],[-77.82377823778238,24.42751583910301],[-77.83457834578346,24.419072952753595],[-77.86337863378634,24.415695798213818],[-77.87057870578705,24.40725291186442],[-77.85977859778598,24.38530140735594],[-77.87057870578705,24.373481366466763],[-77.91017910179102,24.351529861958284],[-77.92817928179281,24.346464130148632],[-77.96057960579606,24.344775552878758],[-77.9749797497975,24.339709821069107],[-78.0109801098011,24.314381162020865],[-78.01818018180181,24.30593827567145],[-78.01458014580146,24.297495389322037],[-78.0109801098011,24.289052502972623],[-78.0109801098011,24.282298193893098],[-78.01818018180181,24.27554388481356],[-78.02898028980289,24.272166730273796],[-78.03618036180362,24.27554388481356],[-78.0469804698047,24.282298193893098],[-78.05058050580506,24.289052502972623],[-78.0649806498065,24.31606973929074],[-78.06858068580685,24.349841284688395],[-78.07938079380793,24.380235675546288],[-78.10458104581045,24.392055716435465],[-78.13338133381333,24.40387575732464],[-78.14058140581406,24.434270148182534],[-78.13338133381333,24.501813238977846],[-78.15138151381514,24.48830462081878],[-78.16578165781658,24.474796002659716],[-78.18018180181801,24.464664539040427],[-78.20538205382053,24.461287384500665],[-78.2269822698227,24.464664539040427],[-78.3529835298353,24.53051905256585],[-78.41058410584105,24.581176370662334],[-78.43218432184321,24.601439297900924],[-78.4429844298443,24.625079379679278],[-78.42858428584286,24.626767956949166],[-78.41058410584105,24.636899420568454],[-78.3889838898389,24.647030884187757],[-78.38178381783817,24.65547377053717],[-78.37818378183782,24.668982388696236],[-78.37098370983709,24.668982388696236],[-78.36018360183601,24.662228079616696],[-78.3529835298353,24.658850925076933]]],[[[-123.3210332103321,48.496496244010984],[-123.30303303033031,48.48467620312181],[-123.28863288632886,48.46779043042298],[-123.28143281432814,48.44921608045428],[-123.28863288632886,48.42388742140602],[-123.30303303033031,48.41375595778675],[-123.33183331833318,48.40531307143732],[-123.3570335703357,48.40024733962767],[-123.43623436234361,48.44415034864463],[-123.45423454234542,48.434018885025324],[-123.47943479434794,48.39180445327827],[-123.49743497434974,48.38336156692884],[-123.51183511835117,48.37998441238909],[-123.51543515435154,48.37323010330954],[-123.51543515435154,48.36478721696014],[-123.5190351903519,48.354655753340836],[-123.52623526235263,48.34790144426131],[-123.54423544235442,48.336081403372134],[-123.5550355503555,48.327638517022706],[-123.55143551435515,48.31244132159378],[-123.5730357303573,48.305687012514255],[-123.59463594635946,48.310752744323906],[-123.59463594635946,48.327638517022706],[-123.61263612636125,48.327638517022706],[-123.64143641436414,48.31750705340343],[-123.65223652236523,48.314129898863655],[-123.66663666636666,48.31750705340343],[-123.68463684636846,48.33270424883236],[-123.70623706237062,48.33776998064201],[-123.7350373503735,48.35127859880109],[-123.78183781837818,48.363098639690264],[-123.83943839438393,48.36141006242036],[-123.88983889838897,48.36647579423001],[-124.13104131041311,48.434018885025324],[-124.39024390243902,48.51844774851946],[-124.41544415444154,48.52013632578934],[-124.4370443704437,48.52520205759899],[-124.42984429844299,48.53871067575807],[-124.40824408244083,48.55221929391712],[-124.39024390243902,48.56066218026652],[-124.4010440104401,48.56572791207617],[-124.43344433444335,48.56910506661595],[-124.44424444244441,48.56741648934607],[-124.45864458644587,48.56235075753642],[-124.46584465844658,48.555596448456896],[-124.48744487444874,48.54039925302794],[-124.49464494644945,48.54208783029782],[-124.51264512645126,48.54715356210747],[-124.66384663846638,48.572482221155724],[-124.73224732247323,48.59612230293408],[-124.76824768247683,48.61469665290278],[-124.80064800648006,48.64002531195101],[-124.8150481504815,48.64677962103056],[-125.09225092250922,48.7295199072548],[-125.11025110251103,48.737962793604225],[-125.14265142651426,48.77511149354163],[-125.16065160651607,48.786931534430806],[-125.18585185851859,48.800440152589886],[-125.17145171451713,48.81563734801881],[-125.11025110251103,48.84265458433694],[-125.10665106651066,48.84772031614659],[-125.09585095850957,48.862917511575546],[-125.08865088650887,48.86967182065507],[-125.07785077850778,48.8764261297346],[-125.0670506705067,48.879803284274374],[-125.05985059850599,48.88149186154425],[-125.03465034650347,48.88318043881412],[-125.02025020250203,48.8865575933539],[-125.01305013050131,48.89162332516355],[-125.00585005850058,48.90006621151295],[-125.00945009450095,48.91357482967203],[-125.01305013050131,48.92201771602143],[-125.01305013050131,48.928772025100955],[-125.00225002250022,48.94059206599013],[-124.98424984249843,48.955789261419085],[-124.96264962649627,48.96254357049861],[-124.91944919449195,48.97267503411791],[-124.88344883448835,48.991249384086615],[-124.84744847448474,49.01995519767462],[-124.81864818648187,49.058792474881926],[-124.80784807848079,49.09931832935911],[-124.80064800648006,49.116204102057935],[-124.78624786247863,49.13308987475676],[-124.7790477904779,49.151664224725465],[-124.7970479704797,49.1888129246629],[-124.80784807848079,49.24622455183891],[-124.8150481504815,49.24284739729913],[-124.82224822248222,49.23778166548951],[-124.82584825848258,49.232715933679856],[-124.82944829448294,49.2259616246003],[-124.82944829448294,49.2175187382509],[-124.82224822248222,49.18205861558337],[-124.82224822248222,49.13984418383629],[-124.82944829448294,49.11958125659771],[-124.84024840248402,49.10438406116876],[-124.85824858248583,49.089186865739805],[-124.8690486904869,49.07398967031088],[-124.87984879848798,49.031775238563796],[-124.88704887048871,49.013200888595094],[-124.90864908649087,49.00644657951557],[-124.9230492304923,49.00306942497579],[-124.96624966249662,48.987872229546866],[-124.99144991449914,48.986183652276964],[-125.04545045450453,48.99293796135649],[-125.05625056250562,48.991249384086615],[-125.07425074250742,48.98111792046731],[-125.08505085050851,48.97942934319744],[-125.11025110251103,48.98449507500709],[-125.12825128251282,48.99293796135649],[-125.14625146251461,48.99800369316614],[-125.17145171451713,48.99293796135649],[-125.20025200252002,48.96592072503839],[-125.22185221852217,48.95410068414921],[-125.239852398524,48.955789261419085],[-125.26505265052651,48.96254357049861],[-125.31545315453155,48.96592072503839],[-125.33705337053371,48.97267503411791],[-125.3010530105301,49.00306942497579],[-125.2830528305283,49.01488946586497],[-125.26145261452615,49.01995519767462],[-125.26145261452615,49.026709506754145],[-125.29745297452973,49.026709506754145],[-125.30825308253083,49.026709506754145],[-125.31545315453155,49.031775238563796],[-125.32625326253262,49.03684097037345],[-125.33345333453335,49.0419067021831],[-125.34425344253442,49.0419067021831],[-125.3550535505355,49.026709506754145],[-125.35865358653587,49.00644657951557],[-125.3658536585366,48.987872229546866],[-125.40185401854018,48.97267503411791],[-125.43065430654306,48.94396922052991],[-125.44865448654485,48.93721491145038],[-125.45225452254522,48.933837756910606],[-125.45585455854558,48.92708344783108],[-125.45945459454595,48.920329138751555],[-125.47025470254702,48.91695198421178],[-125.48825488254883,48.91864056148165],[-125.4990549905499,48.920329138751555],[-125.4990549905499,48.9237062932913],[-125.51345513455135,48.92708344783108],[-125.53145531455314,48.93214917964073],[-125.54585545855458,48.94059206599013],[-125.56025560255603,48.94903495233956],[-125.57465574655745,48.955789261419085],[-125.6070560705607,48.96254357049861],[-125.62145621456214,48.969297879578136],[-125.6250562505625,48.97605218865769],[-125.63225632256322,48.987872229546866],[-125.63585635856359,48.99293796135649],[-125.67185671856718,49.018266620404745],[-125.6970569705697,49.02839808402405],[-125.70785707857078,49.03684097037345],[-125.73665736657367,49.053726743072275],[-125.83745837458375,49.06892393850123],[-125.84825848258482,49.07398967031088],[-125.86265862658627,49.080743979390405],[-125.87345873458735,49.09087544300971],[-125.86985869858698,49.102695483898884],[-125.86265862658627,49.10944979297841],[-125.83025830258302,49.11451552478806],[-125.81585815858159,49.12295841113746],[-125.80145801458013,49.11282694751819],[-125.78345783457834,49.10438406116876],[-125.7690576905769,49.102695483898884],[-125.74745747457474,49.10944979297841],[-125.74025740257403,49.11451552478806],[-125.70065700657005,49.13477845202664],[-125.69345693456934,49.13308987475676],[-125.68265682656826,49.14828707018572],[-125.64665646656466,49.16348426561464],[-125.63585635856359,49.17530430650385],[-125.63225632256322,49.18712434739302],[-125.62145621456214,49.19556723374242],[-125.61425614256143,49.205698697361726],[-125.61065610656107,49.2259616246003],[-125.6970569705697,49.18037003831347],[-125.72225722257222,49.16010711107489],[-125.74745747457474,49.14828707018572],[-125.75465754657546,49.16854999742429],[-125.75465754657546,49.22258447006055],[-125.74385743857438,49.25129028364856],[-125.74025740257403,49.268176056347386],[-125.7510575105751,49.263110324537735],[-125.76185761857619,49.25297886091843],[-125.77625776257761,49.24791312910878],[-125.79065790657907,49.24622455183891],[-125.80145801458013,49.25297886091843],[-125.80145801458013,49.263110324537735],[-125.80145801458013,49.30025902447517],[-125.79785797857978,49.312079065364344],[-125.79065790657907,49.32221052898362],[-125.77985779857798,49.339096301682446],[-125.77625776257761,49.355982074381274],[-125.77625776257761,49.36949069254035],[-125.77985779857798,49.36949069254035],[-125.79425794257942,49.35935922892105],[-125.8050580505805,49.3441620334921],[-125.81945819458194,49.32389910625352],[-125.8230582305823,49.295193292665516],[-125.83025830258302,49.28337325177634],[-125.83745837458375,49.27324178815704],[-125.84465844658446,49.26648747907751],[-125.85185851858517,49.26648747907751],[-125.86625866258663,49.276618942696786],[-125.8770587705877,49.27999609723656],[-125.90225902259021,49.27493036542691],[-125.93825938259383,49.241158820029256],[-125.95625956259562,49.232715933679856],[-125.97785977859778,49.23440451094973],[-125.99585995859958,49.24284739729913],[-126.01026010260102,49.254667438188335],[-126.02826028260282,49.27324178815704],[-126.01026010260102,49.29181613812574],[-125.97785977859778,49.303636179014916],[-125.95265952659526,49.320521951713744],[-125.92745927459274,49.3728678470801],[-125.90945909459094,49.39819650612836],[-125.89865898658987,49.42183658790671],[-125.91305913059131,49.43872236060554],[-125.92025920259202,49.42014801063684],[-125.95985959859598,49.393130774318706],[-125.96705967059671,49.37962215615963],[-125.97065970659706,49.357670651651176],[-125.97785977859778,49.34247345622222],[-125.99585995859958,49.330653415333046],[-126.01386013860139,49.32221052898362],[-126.02466024660247,49.32896483806317],[-126.04626046260462,49.33740772441257],[-126.06066060660606,49.345850610762],[-126.0750607506075,49.382999310699404],[-126.07146071460714,49.396507928858455],[-126.0570605706057,49.41170512428741],[-126.0570605706057,49.42183658790671],[-126.05346053460534,49.43872236060554],[-126.05346053460534,49.445476669685064],[-126.06426064260643,49.44378809241519],[-126.12186121861218,49.42690231971636],[-126.13986139861399,49.423525165176585],[-126.15786157861578,49.418459433366934],[-126.17226172261722,49.415082278827185],[-126.17586175861759,49.41170512428741],[-126.17946179461794,49.40663939247776],[-126.18666186661866,49.40495081520788],[-126.19746197461974,49.40495081520788],[-126.21186211862118,49.40663939247776],[-126.22626226262263,49.41339370155728],[-126.23346233462334,49.42183658790671],[-126.2370623706237,49.43534520606576],[-126.24426244262443,49.445476669685064],[-126.2550625506255,49.450542401494715],[-126.26946269462695,49.445476669685064],[-126.25866258662586,49.43196805152601],[-126.2550625506255,49.415082278827185],[-126.26226262262622,49.39988508339823],[-126.27666276662767,49.38131073342953],[-126.28386283862838,49.366113538000576],[-126.28746287462874,49.36273638346083],[-126.29826298262982,49.36273638346083],[-126.30186301863019,49.36780211527045],[-126.30546305463054,49.3728678470801],[-126.3090630906309,49.37624500161988],[-126.33786337863378,49.38637646523918],[-126.34866348663486,49.39144219704883],[-126.35946359463594,49.39988508339823],[-126.37386373863738,49.40663939247776],[-126.39546395463955,49.41339370155728],[-126.40626406264062,49.42183658790671],[-126.39186391863919,49.43027947425611],[-126.40626406264062,49.44209951514529],[-126.42066420664207,49.46573959692367],[-126.43146431464314,49.472493906003194],[-126.44946449464494,49.47080532873332],[-126.46386463864638,49.46067386511402],[-126.47826478264783,49.44716524695494],[-126.4890648906489,49.43872236060554],[-126.47466474664746,49.418459433366934],[-126.46386463864638,49.40495081520788],[-126.46386463864638,49.39481935158858],[-126.4890648906489,49.382999310699404],[-126.51066510665106,49.37793357888975],[-126.52866528665287,49.37962215615963],[-126.54306543065431,49.38637646523918],[-126.55746557465574,49.396507928858455],[-126.5718657186572,49.415082278827185],[-126.57546575465754,49.42521374244649],[-126.56826568265683,49.43872236060554],[-126.5610656106561,49.458985287844115],[-126.5610656106561,49.46067386511402],[-126.5610656106561,49.486002524162245],[-126.5610656106561,49.49613398778155],[-126.55746557465574,49.50288829686107],[-126.55746557465574,49.5096426059406],[-126.5610656106561,49.521462646829775],[-126.55746557465574,49.521462646829775],[-126.55746557465574,49.526528378639426],[-126.56466564665647,49.53159411044908],[-126.56826568265683,49.534971264988855],[-126.57546575465754,49.548479883147905],[-126.5718657186572,49.55354561495756],[-126.5718657186572,49.56029992403708],[-126.5718657186572,49.56705423311661],[-126.56826568265683,49.575497119466036],[-126.56466564665647,49.583940005815435],[-126.5610656106561,49.58731716035521],[-126.55026550265502,49.59576004670461],[-126.53226532265322,49.602514355784166],[-126.49986499864998,49.610957242133566],[-126.4530645306453,49.63628590118182],[-126.41706417064171,49.637974478451696],[-126.33786337863378,49.63122016937217],[-126.21906219062191,49.646417364801096],[-126.19746197461974,49.654860251150524],[-126.18666186661866,49.65823740569027],[-126.17226172261722,49.65823740569027],[-126.15066150661507,49.65148309661075],[-126.13626136261362,49.64979451934087],[-126.08946089460895,49.66161456023005],[-126.09306093060931,49.67005744657948],[-126.10026100261003,49.67850033292888],[-126.10746107461074,49.68356606473853],[-126.11826118261183,49.6852546420084],[-126.19386193861939,49.681877487468654],[-126.29826298262982,49.66161456023005],[-126.32346323463234,49.648105942071],[-126.33786337863378,49.64979451934087],[-126.4530645306453,49.6751231783891],[-126.47826478264783,49.68356606473853],[-126.4890648906489,49.695386105627705],[-126.47826478264783,49.71227187832653],[-126.41346413464134,49.771372082772416],[-126.40986409864098,49.77812639185197],[-126.42426424264242,49.78150354639172],[-126.4530645306453,49.78994643274115],[-126.46746467464675,49.79163501001102],[-126.47466474664746,49.784880700931495],[-126.47106471064711,49.749420578263965],[-126.47826478264783,49.73422338283501],[-126.49266492664927,49.71902618740606],[-126.51786517865179,49.708894723786756],[-126.54666546665467,49.70382899197713],[-126.5718657186572,49.70720614651688],[-126.59346593465935,49.71564903286631],[-126.60426604266043,49.73253480556514],[-126.63666636666366,49.81696366905925],[-126.64026640266403,49.833849441758076],[-126.64386643866439,49.87268671896538],[-126.6510665106651,49.89801537801364],[-126.66546665466655,49.896326800743736],[-126.68346683466834,49.88450675985456],[-126.70506705067051,49.877752450775034],[-126.72666726667266,49.882818182584685],[-126.74826748267483,49.896326800743736],[-126.76626766267663,49.913212573442564],[-126.78426784267842,49.94191838703057],[-126.80226802268022,49.953738427919745],[-126.84186841868419,49.97400135515835],[-126.84186841868419,49.9604927369993],[-126.80946809468094,49.94360696430047],[-126.80226802268022,49.92840976887152],[-126.80946809468094,49.91490115071247],[-126.8238682386824,49.89970395528351],[-126.83826838268382,49.88788391439434],[-126.85266852668526,49.882818182584685],[-126.87066870668707,49.882818182584685],[-126.8850688506885,49.882818182584685],[-126.89226892268923,49.891261068934085],[-126.91026910269102,49.95711558245952],[-126.92106921069211,49.97400135515835],[-126.92106921069211,49.9689356233487],[-126.92466924669247,49.9588041597294],[-126.92466924669247,49.95204985064987],[-126.92826928269282,49.93347550068117],[-126.92826928269282,49.882818182584685],[-126.93546935469354,49.86593240988586],[-126.94626946269463,49.86424383261598],[-127.07227072270723,49.86255525534608],[-127.09747097470975,49.85748952353646],[-127.12267122671227,49.85748952353646],[-127.14067140671406,49.86593240988586],[-127.23067230672306,49.94698411884022],[-127.23787237872378,49.96218131426917],[-127.23067230672306,49.975689932428224],[-127.19827198271983,50.007772900556006],[-127.19467194671947,50.01115005509578],[-127.18747187471874,50.01115005509578],[-127.18387183871837,50.01283863236566],[-127.18027180271802,50.02128151871506],[-127.18027180271802,50.02634725052471],[-127.18747187471874,50.029724405064485],[-127.18747187471874,50.034790136874136],[-127.17667176671767,50.05336448684284],[-127.16587165871658,50.07193883681154],[-127.14787147871479,50.08375887770072],[-127.10467104671046,50.095578918589894],[-127.09027090270902,50.11077611401885],[-127.08307083070831,50.13103904125745],[-127.09747097470975,50.15130196849603],[-127.10467104671046,50.14285908214663],[-127.10827108271083,50.1344161957972],[-127.11187111871118,50.1259733094478],[-127.1190711907119,50.11753042309837],[-127.12627126271263,50.114153268558624],[-127.14787147871479,50.11077611401885],[-127.16227162271622,50.097267495859796],[-127.1910719107191,50.095578918589894],[-127.21627216272162,50.09895607312967],[-127.22707227072272,50.10739895947907],[-127.23427234272341,50.11753042309837],[-127.25227252272524,50.132727618527326],[-127.27027270272703,50.1445476594165],[-127.28467284672845,50.15130196849603],[-127.29187291872918,50.1445476594165],[-127.28827288272882,50.127661886717675],[-127.2810728107281,50.10908753674897],[-127.27387273872739,50.092201764050145],[-127.27747277472776,50.07700456862119],[-127.28467284672845,50.06180737319224],[-127.29547295472955,50.051675909572964],[-127.3170731707317,50.04154444595366],[-127.33867338673386,50.034790136874136],[-127.36387363873638,50.03310155960423],[-127.38547385473854,50.034790136874136],[-127.4070740707407,50.04154444595366],[-127.43947439474394,50.060118795922364],[-127.45747457474575,50.07362741408144],[-127.46827468274682,50.08882460951037],[-127.46827468274682,50.10739895947907],[-127.45747457474575,50.1158418458285],[-127.41787417874178,50.13103904125745],[-127.48627486274862,50.13103904125745],[-127.47907479074792,50.14285908214663],[-127.46467464674646,50.15636770030568],[-127.42507425074251,50.17831920481416],[-127.46467464674646,50.18676209116356],[-127.49707497074971,50.168187741194856],[-127.52587525875259,50.14285908214663],[-127.55107551075511,50.13103904125745],[-127.59427594275942,50.119219000368275],[-127.61587615876158,50.119219000368275],[-127.63027630276304,50.13103904125745],[-127.63387633876339,50.14623623668638],[-127.63027630276304,50.15974485484546],[-127.61947619476194,50.17325347300451],[-127.61227612276122,50.185073513893684],[-127.64827648276483,50.17831920481416],[-127.68787687876878,50.15974485484546],[-127.72387723877239,50.1361047730671],[-127.77427774277743,50.092201764050145],[-127.7850778507785,50.08544745497062],[-127.79587795877958,50.08207030043084],[-127.80307803078031,50.08544745497062],[-127.8210782107821,50.100644650399545],[-127.82827828278283,50.10233322766945],[-127.87507875078751,50.105710382209196],[-127.89667896678966,50.114153268558624],[-127.90747907479074,50.13103904125745],[-127.89667896678966,50.14285908214663],[-127.8390783907839,50.17494205027438],[-127.77427774277743,50.23235367745039],[-127.75627756277562,50.23741940926004],[-127.74547745477454,50.24248514106969],[-127.74907749077491,50.25430518195887],[-127.75627756277562,50.25937091376852],[-127.76347763477634,50.25937091376852],[-127.7850778507785,50.25430518195887],[-127.80307803078031,50.252616604688995],[-127.81027810278103,50.25599375922877],[-127.82467824678247,50.26950237738782],[-127.83187831878318,50.274568109197475],[-127.84987849878499,50.281322418277],[-127.84267842678426,50.2914538818963],[-127.81387813878138,50.29483103643605],[-127.80307803078031,50.301585345515605],[-127.79947799477995,50.315093963674656],[-127.81027810278103,50.32184827275418],[-127.8210782107821,50.323536850024055],[-127.83187831878318,50.31847111821443],[-127.84267842678426,50.31847111821443],[-127.86787867878678,50.337045468183135],[-127.87867878678787,50.342111199992786],[-127.88587885878859,50.34042262272288],[-127.90747907479074,50.32522542729396],[-127.91827918279182,50.32184827275418],[-127.94347943479434,50.32860258183371],[-127.96867968679686,50.342111199992786],[-127.97947979479795,50.35730839542171],[-127.9650796507965,50.364062704501265],[-127.95427954279543,50.39276851808927],[-127.94347943479434,50.41472002259775],[-127.92547925479255,50.42485148621702],[-127.92547925479255,50.43160579529655],[-127.93267932679326,50.44173725891585],[-127.93267932679326,50.45186872253515],[-127.92547925479255,50.462000186154455],[-127.91467914679146,50.467065917964106],[-127.88227882278822,50.45862303161468],[-127.86427864278642,50.46031160888458],[-127.8570785707857,50.47382022704363],[-127.82467824678247,50.467065917964106],[-127.79947799477995,50.47213164977376],[-127.77427774277743,50.48226311339303],[-127.74547745477454,50.48732884520268],[-127.59067590675906,50.48564026793281],[-127.5690756907569,50.47888595885328],[-127.55107551075511,50.46368876342433],[-127.49707497074971,50.40121140443867],[-127.47547475474755,50.38432563173984],[-127.44667446674467,50.377571322660316],[-127.48267482674827,50.434982949836325],[-127.50787507875079,50.465377340694204],[-127.55827558275583,50.492394577012334],[-127.56187561875618,50.52110039060034],[-127.55107551075511,50.54305189510882],[-127.52227522275223,50.54136331783894],[-127.50067500675007,50.56669197688717],[-127.42507425074251,50.581889172316124],[-127.41787417874178,50.6038406768246],[-127.51147511475114,50.58864348139565],[-127.5330753307533,50.57851201777635],[-127.54747547475475,50.57006913142695],[-127.55467554675548,50.57175770869682],[-127.56547565475654,50.57851201777635],[-127.57267572675727,50.583577749586],[-127.5870758707587,50.5937092132053],[-127.60147601476015,50.60046352228483],[-127.61587615876158,50.6038406768246],[-127.8210782107821,50.61059498590413],[-127.87867878678787,50.630857913142734],[-127.86427864278642,50.617349294983654],[-127.84267842678426,50.6038406768246],[-127.81747817478174,50.5937092132053],[-127.79947799477995,50.58864348139565],[-127.68787687876878,50.58864348139565],[-127.63387633876339,50.58020059504625],[-127.61227612276122,50.57006913142695],[-127.59427594275942,50.55824909053777],[-127.59427594275942,50.54305189510882],[-127.61587615876158,50.53629758602929],[-127.66267662676626,50.53460900875942],[-127.8390783907839,50.49070599974246],[-127.84627846278462,50.50590319517141],[-127.86427864278642,50.50421461790151],[-127.90747907479074,50.48732884520268],[-127.95067950679507,50.47719738158341],[-127.99747997479975,50.47382022704363],[-128.01548015480154,50.48057453612316],[-128.03348033480336,50.492394577012334],[-128.05148051480515,50.49577173155211],[-128.0622806228062,50.47888595885328],[-128.0550805508055,50.47888595885328],[-128.05148051480515,50.47719738158341],[-128.04788047880479,50.467065917964106],[-128.04068040680406,50.46031160888458],[-128.04428044280442,50.45524587707493],[-128.05868058680585,50.45186872253515],[-128.06588065880658,50.45355729980503],[-128.07668076680767,50.45862303161468],[-128.08748087480876,50.46368876342433],[-128.10548105481055,50.47719738158341],[-128.13068130681307,50.48226311339303],[-128.1450814508145,50.48732884520268],[-128.15228152281523,50.492394577012334],[-128.1630816308163,50.50759177244129],[-128.17388173881739,50.51434608152081],[-128.18828188281884,50.52278896787024],[-128.1990819908199,50.52616612240999],[-128.20988209882097,50.527854699679864],[-128.2170821708217,50.52954327694977],[-128.22428224282243,50.53629758602929],[-128.2278822788228,50.54474047237869],[-128.23868238682388,50.56331482234742],[-128.24228242282422,50.5852663268559],[-128.24948249482495,50.59708636774508],[-128.28908289082892,50.61059498590413],[-128.31068310683105,50.60721783136435],[-128.32148321483214,50.61059498590413],[-128.3250832508325,50.62072644952343],[-128.3358833588336,50.63761222222226],[-128.33948339483396,50.64774368584156],[-128.32868328683287,50.65112084038131],[-128.30348303483035,50.65449799492109],[-128.28548285482856,50.66125230400061],[-128.27828278282783,50.66969519035001],[-128.29628296282962,50.67307234488979],[-128.3070830708307,50.671383767619915],[-128.32868328683287,50.666318035810264],[-128.33948339483396,50.66462945854036],[-128.35028350283503,50.66800661308014],[-128.3610836108361,50.67476092215966],[-128.37188371883718,50.68151523123919],[-128.3790837908379,50.68826954031874],[-128.38268382683827,50.70853246755732],[-128.40428404284043,50.74399259022485],[-128.40428404284043,50.76087836292368],[-128.41868418684186,50.77269840381285],[-128.4078840788408,50.78114129016228],[-128.38628386283864,50.78620702197193],[-128.36828368283682,50.78789559924181],[-128.36828368283682,50.791272753781584],[-128.34668346683466,50.804781371940635],[-128.33948339483396,50.80646994921051],[-128.30348303483035,50.801404217400886],[-128.26748267482674,50.81153568102016],[-128.2278822788228,50.831798608258765],[-128.18828188281884,50.845307226417816],[-128.15228152281523,50.836864340068416],[-128.09828098280983,50.86557015365642],[-128.07668076680767,50.87063588546607],[-128.0550805508055,50.86894730819617],[-128.0190801908019,50.862192999116644],[-127.91827918279182,50.87063588546607],[-127.88227882278822,50.867258730926295],[-127.5690756907569,50.79464990832133],[-127.53667536675366,50.78114129016228],[-127.51867518675186,50.77945271289241],[-127.50427504275044,50.77269840381285],[-127.49707497074971,50.76256694019358],[-127.48627486274862,50.747369744764626],[-127.48987489874898,50.74568116749475],[-127.49347493474934,50.7406154356851],[-127.49347493474934,50.7304839720658],[-127.48987489874898,50.72372966298627],[-127.48267482674827,50.71359819936697],[-127.47907479074792,50.706843890287445],[-127.47187471874719,50.69840100393802],[-127.45747457474575,50.71697535390675],[-127.44667446674467,50.73723828114532],[-127.42867428674288,50.75243547657428],[-127.4070740707407,50.747369744764626],[-127.42147421474215,50.728795394795924],[-127.40347403474036,50.70853246755732],[-127.37467374673747,50.68995811758862],[-127.34947349473495,50.67813807669944],[-127.2630726307263,50.65618657219096],[-127.23427234272341,50.644366531301785],[-127.21987219872199,50.63423506768248],[-127.2090720907209,50.62748075860296],[-127.19827198271983,50.62072644952343],[-127.18027180271802,50.617349294983654],[-127.12627126271263,50.62072644952343],[-127.11187111871118,50.617349294983654],[-127.10467104671046,50.612283563174],[-127.10107101071011,50.60552925409448],[-127.09747097470975,50.59877494501495],[-127.09747097470975,50.59708636774508],[-127.08667086670866,50.5937092132053],[-127.07947079470794,50.595397790475175],[-127.07227072270723,50.595397790475175],[-127.06147061470614,50.59708636774508],[-127.0110701107011,50.58864348139565],[-126.9930699306993,50.58864348139565],[-127.00027000270003,50.58864348139565],[-126.9930699306993,50.58864348139565],[-126.98586985869858,50.586954904125776],[-126.97866978669786,50.5852663268559],[-126.97506975069751,50.583577749586],[-126.97866978669786,50.58020059504625],[-126.98946989469894,50.57175770869682],[-126.9930699306993,50.57006913142695],[-126.97866978669786,50.56331482234742],[-126.87426874268743,50.56162624507752],[-126.85626856268563,50.559937667807645],[-126.84906849068491,50.551494781458246],[-126.85626856268563,50.54305189510882],[-126.86346863468634,50.53629758602929],[-126.86346863468634,50.52954327694977],[-126.84906849068491,50.527854699679864],[-126.84546845468455,50.52954327694977],[-126.83826838268382,50.54305189510882],[-126.83106831068311,50.54811762691847],[-126.8238682386824,50.54980620418834],[-126.78786787867878,50.54811762691847],[-126.76626766267663,50.54474047237869],[-126.67986679866799,50.51772323606059],[-126.65466654666547,50.51434608152081],[-126.6330663306633,50.50759177244129],[-126.59706597065971,50.48057453612316],[-126.56826568265683,50.47888595885328],[-126.56466564665647,50.483951690662934],[-126.5610656106561,50.497460308821985],[-126.55386553865539,50.50083746336176],[-126.54666546665467,50.49914888609186],[-126.53586535865358,50.49408315428221],[-126.53226532265322,50.49408315428221],[-126.52146521465215,50.492394577012334],[-126.49266492664927,50.48732884520268],[-126.48186481864818,50.48226311339303],[-126.46026460264602,50.475508804313506],[-126.3630636306363,50.48732884520268],[-126.34146341463415,50.483951690662934],[-126.29466294662947,50.46875449523398],[-126.2730627306273,50.467065917964106],[-126.19386193861939,50.470443072503855],[-126.11826118261183,50.45524587707493],[-126.02466024660247,50.42485148621702],[-125.95625956259562,50.394457095359144],[-125.93465934659346,50.39107994081937],[-125.83745837458375,50.38770278627962],[-125.79065790657907,50.377571322660316],[-125.7510575105751,50.358996972691614],[-125.74025740257403,50.35561981815184],[-125.58905589055891,50.37081701358079],[-125.56385563855639,50.36575128177114],[-125.52425524255241,50.34717693180244],[-125.47745477454774,50.33873404545301],[-125.45585455854558,50.32860258183371],[-125.43785437854379,50.31340538640478],[-125.42345423454233,50.29483103643605],[-125.43065430654306,50.288076727356525],[-125.41985419854198,50.2728795319276],[-125.4090540905409,50.25768233649865],[-125.38745387453875,50.19858213205276],[-125.34785347853477,50.1445476594165],[-125.36945369453694,50.13779335033698],[-125.35145351453514,50.1242847321779],[-125.3190531905319,50.11077611401885],[-125.3010530105301,50.10739895947907],[-125.29385293852938,50.09051318678027],[-125.25785257852579,50.065184527732015],[-125.26145261452615,50.04829875503319],[-125.22185221852217,50.01790436417531],[-125.21825218252182,50.00946147782588],[-125.21825218252182,49.99088712785718],[-125.21465214652147,49.98244424150778],[-125.20385203852038,49.9689356233487],[-125.18945189451895,49.93854123249082],[-125.17865178651786,49.92503261433174],[-124.88344883448835,49.72409191921571],[-124.87264872648726,49.71227187832653],[-124.8690486904869,49.695386105627705],[-124.87624876248762,49.676811755659],[-124.89064890648906,49.67174602384935],[-124.97344973449734,49.6852546420084],[-124.98064980649806,49.681877487468654],[-124.9770497704977,49.668368869309575],[-124.96624966249662,49.66330313749992],[-124.95904959049591,49.659925982960175],[-124.94824948249482,49.65317167388065],[-124.9410494104941,49.646417364801096],[-124.91944919449195,49.63122016937217],[-124.90864908649087,49.62108870575287],[-124.83664836648367,49.51808549229003],[-124.81864818648187,49.5113311832105],[-124.80784807848079,49.50626545140085],[-124.80424804248042,49.499511142321325],[-124.80064800648006,49.480936792352594],[-124.79344793447935,49.472493906003194],[-124.77184771847718,49.46067386511402],[-124.7250472504725,49.46573959692367],[-124.70344703447034,49.455608133304366],[-124.69264692646927,49.44885382422484],[-124.66744667446675,49.44378809241519],[-124.65664656646567,49.43872236060554],[-124.64224642246423,49.41677085609706],[-124.63864638646386,49.41170512428741],[-124.59544595445954,49.39144219704883],[-124.5450454504545,49.37793357888975],[-124.44424444244441,49.36273638346083],[-124.38664386643866,49.361047806190925],[-124.36144361443614,49.355982074381274],[-124.33984339843398,49.345850610762],[-124.3290432904329,49.339096301682446],[-124.31824318243181,49.3357191471427],[-124.21024210242102,49.30870191082457],[-124.19944199441994,49.30870191082457],[-124.1850418504185,49.31376764263422],[-124.17424174241742,49.31545621990409],[-124.15984159841598,49.31039048809444],[-124.10944109441094,49.27999609723656],[-124.12744127441275,49.27493036542691],[-124.16344163441634,49.271553210887134],[-124.17784177841779,49.25973316999796],[-124.16344163441634,49.254667438188335],[-124.15264152641527,49.254667438188335],[-124.12384123841238,49.25973316999796],[-124.10944109441094,49.25804459272808],[-124.08424084240842,49.24791312910878],[-124.06984069840698,49.24622455183891],[-124.00864008640086,49.24622455183891],[-123.97623976239763,49.241158820029256],[-123.95463954639547,49.22933877914008],[-123.9510395103951,49.22258447006055],[-123.94743947439474,49.21583016098103],[-123.94743947439474,49.209075851901474],[-123.96543965439653,49.20232154282195],[-123.96183961839618,49.1972558110123],[-123.9510395103951,49.18374719285325],[-123.92943929439295,49.143221338376065],[-123.91863918639186,49.13477845202664],[-123.90423904239043,49.13308987475676],[-123.88263882638826,49.13646702929654],[-123.8430384303843,49.12802414294711],[-123.82863828638287,49.129712720217015],[-123.81423814238141,49.11789267932781],[-123.80343803438035,49.10438406116876],[-123.79623796237962,49.08749828846993],[-123.78903789037889,49.06892393850123],[-123.75663756637566,49.0419067021831],[-123.75303753037531,49.02839808402405],[-123.77463774637746,49.01995519767462],[-123.76383763837637,49.00813515678544],[-123.76023760237602,48.996315115896266],[-123.76383763837637,48.987872229546866],[-123.77823778237783,48.986183652276964],[-123.79263792637926,48.99293796135649],[-123.80343803438035,49.004758002245694],[-123.81423814238141,49.013200888595094],[-123.83583835838358,49.00644657951557],[-123.83583835838358,48.99969227043604],[-123.78903789037889,48.96592072503839],[-123.73863738637385,48.942280643260034],[-123.73143731437314,48.933837756910606],[-123.7170371703717,48.92201771602143],[-123.59463594635946,48.83758885252729],[-123.58023580235802,48.822391657098336],[-123.5910359103591,48.81394877074894],[-123.59463594635946,48.81226019347906],[-123.60183601836019,48.803817307129634],[-123.60183601836019,48.79706299805011],[-123.59823598235982,48.79368584351033],[-123.5910359103591,48.795374420780234],[-123.58383583835838,48.79706299805011],[-123.57663576635767,48.79875157531998],[-123.56943569435694,48.79368584351033],[-123.56583565835658,48.78017722535128],[-123.56583565835658,48.759914298112705],[-123.5730357303573,48.746405679953625],[-123.58383583835838,48.7497828344934],[-123.59823598235982,48.7582257208428],[-123.61623616236162,48.76329145265245],[-123.63783637836377,48.76329145265245],[-123.65223652236523,48.759914298112705],[-123.65223652236523,48.75315998903315],[-123.63063630636306,48.741339948143974],[-123.56223562235621,48.71263413455597],[-123.55143551435515,48.705879825476444],[-123.52983529835298,48.68561689823784],[-123.52623526235263,48.678862589158314],[-123.52983529835298,48.66535397099926],[-123.53703537035369,48.656911084649835],[-123.54063540635406,48.65015677557031],[-123.54063540635406,48.63664815741126],[-123.53343533435334,48.62820527106183],[-123.52623526235263,48.621450961982305],[-123.51543515435154,48.611319498363],[-123.51543515435154,48.59612230293408],[-123.5190351903519,48.580925107505124],[-123.52623526235263,48.572482221155724],[-123.53343533435334,48.56572791207617],[-123.54063540635406,48.55390787118699],[-123.53703537035369,48.54039925302794],[-123.51183511835117,48.54715356210747],[-123.47223472234722,48.57585937569547],[-123.47943479434794,48.591056571124426],[-123.47583475834759,48.621450961982305],[-123.47943479434794,48.63664815741126],[-123.43623436234361,48.65015677557031],[-123.46143461434613,48.66366539372939],[-123.47223472234722,48.67210828007879],[-123.47223472234722,48.68561689823784],[-123.46143461434613,48.688994052777616],[-123.4470344703447,48.69237120731739],[-123.42903429034291,48.69237120731739],[-123.41823418234182,48.69068263004749],[-123.40383403834039,48.68561689823784],[-123.40023400234003,48.68223974369809],[-123.39663396633966,48.67379685734866],[-123.39663396633966,48.66028823918961],[-123.3930339303393,48.656911084649835],[-123.38943389433894,48.64677962103056],[-123.38943389433894,48.634959580141384],[-123.3930339303393,48.62989384833173],[-123.38943389433894,48.61976238471243],[-123.3570335703357,48.56066218026652],[-123.34623346233462,48.523513480329115],[-123.33543335433353,48.50831628490016],[-123.3210332103321,48.496496244010984]]],[[[-131.68031680316804,52.84289413668907],[-131.66591665916658,52.841205559419166],[-131.65511655116552,52.83782840487942],[-131.65511655116552,52.83107409579986],[-131.66951669516695,52.82431978672034],[-131.68031680316804,52.82263120945046],[-131.7019170191702,52.81756547764081],[-131.7451174511745,52.81081116856129],[-131.78111781117812,52.81081116856129],[-131.80631806318064,52.814188323101064],[-131.83151831518316,52.82600836399024],[-131.83871838718386,52.841205559419166],[-131.8171181711817,52.84627129122882],[-131.75951759517596,52.85640275484812],[-131.73431734317342,52.85302560030834],[-131.73071730717308,52.84458271395894],[-131.7451174511745,52.841205559419166],[-131.7451174511745,52.83951698214929],[-131.719917199172,52.83951698214929],[-131.68031680316804,52.84289413668907]]],[[[-75.03375033750338,68.17348716995409],[-75.03015030150301,68.16842143814443],[-75.00855008550086,68.14646993363596],[-75.0049500495005,68.13633847001665],[-75.0049500495005,68.1228298518576],[-75.00855008550086,68.11100981096843],[-75.03375033750338,68.09918977007925],[-75.04095040950409,68.08568115192017],[-75.05175051750517,68.05697533833217],[-75.06975069750698,68.03333525655381],[-75.14175141751417,67.97761220664768],[-75.15975159751598,67.95228354759945],[-75.15255152551525,67.93877492944037],[-75.13455134551346,67.92357773401145],[-75.11655116551165,67.86616610683544],[-75.0949509495095,67.8475917568667],[-75.06615066150661,67.83239456143778],[-75.04455044550446,67.81719736600883],[-75.06255062550625,67.77667151153165],[-75.06615066150661,67.73107992524481],[-75.0589505895059,67.68548833895798],[-75.04455044550446,67.6449624844808],[-75.03735037350373,67.63651959813137],[-75.03015030150301,67.6348310208615],[-75.03015030150301,67.63145386632172],[-75.03015030150301,67.61794524816267],[-75.03375033750338,67.60781378454337],[-75.05535055350553,67.58417370276501],[-75.06615066150661,67.55209073463723],[-75.08415084150842,67.53351638466853],[-75.13815138151381,67.48623622111182],[-75.1849518495185,67.46090756206357],[-75.20655206552065,67.44402178936474],[-75.22815228152281,67.43220174847556],[-75.29655296552966,67.42207028485626],[-75.32535325353253,67.41362739850686],[-75.32535325353253,67.41025024396708],[-75.32535325353253,67.40349593488756],[-75.32895328953289,67.39674162580803],[-75.33255332553325,67.39167589399838],[-75.33975339753397,67.38998731672851],[-75.35055350553505,67.38829873945863],[-75.35775357753577,67.38492158491886],[-75.36855368553685,67.3798558531092],[-75.38655386553866,67.3612815031405],[-75.39015390153901,67.35790434860073],[-75.5089550895509,67.3612815031405],[-75.5449554495545,67.3511500395212],[-75.5521555215552,67.3427071531718],[-75.56655566555665,67.32413280320307],[-75.57735577355773,67.31737849412355],[-75.59535595355953,67.31062418504402],[-75.68895688956889,67.30724703050424],[-75.89055890558905,67.25827828967766],[-75.91935919359193,67.25490113513789],[-76.08856088560886,67.26165544421741],[-76.14616146161461,67.25490113513789],[-76.24336243362433,67.27009833056684],[-76.27576275762758,67.26503259875719],[-76.3369633696337,67.24645824878849],[-76.36576365763658,67.24139251697883],[-76.53856538565385,67.24814682605836],[-76.59976599765997,67.23126105335953],[-76.6321663216632,67.22788389881975],[-76.98136981369814,67.24308109424871],[-77.0209702097021,67.25827828967766],[-77.03177031770318,67.26503259875719],[-77.06057060570605,67.27516406237649],[-77.07497074970749,67.28698410326567],[-77.11457114571145,67.32413280320307],[-77.16857168571686,67.40687308942734],[-77.16137161371613,67.40687308942734],[-77.17937179371793,67.42544743939604],[-77.20097200972009,67.43557890301534],[-77.22617226172261,67.44402178936474],[-77.25137251372513,67.45415325298404],[-77.24057240572405,67.47441618022265],[-77.23697236972369,67.48961337565157],[-77.24057240572405,67.50481057108053],[-77.25857258572586,67.52338492104923],[-77.23697236972369,67.52845065285888],[-77.22617226172261,67.5352049619384],[-77.22257222572226,67.54364784828783],[-77.22617226172261,67.55209073463723],[-77.24777247772478,67.57910797095536],[-77.26217262172621,67.59430516638432],[-77.31977319773198,67.68717691622786],[-77.32337323373234,67.70743984346646],[-77.31617316173161,67.72432561616529],[-77.30177301773017,67.74121138886412],[-77.24417244172442,67.83577171597753],[-77.21177211772117,67.87123183864506],[-76.98136981369814,68.06372964741169],[-76.90936909369093,68.11100981096843],[-76.88056880568806,68.14309277909618],[-76.87696876968769,68.15322424271548],[-76.86976869768698,68.15828997452513],[-76.84816848168481,68.16673286087453],[-76.72936729367294,68.24271883801927],[-76.68976689766897,68.26298176525785],[-76.29736297362973,68.33559058786281],[-76.27216272162721,68.33559058786281],[-76.25056250562506,68.33221343332306],[-76.25776257762577,68.31701623789411],[-76.2289622896229,68.30350761973506],[-76.18216182161821,68.2984418879254],[-76.08136081360813,68.2984418879254],[-76.0489604896049,68.30519619700493],[-75.99135991359913,68.32883627878329],[-75.91215912159122,68.34403347421224],[-75.5989559895599,68.31363908335433],[-75.49815498154982,68.28324469249645],[-75.13815138151381,68.23596452893975],[-75.11655116551165,68.22245591078067],[-75.09855098550985,68.20388156081196],[-75.08055080550805,68.18699578811314],[-75.06975069750698,68.18361863357336],[-75.04455044550446,68.17517574722396],[-75.03375033750338,68.17348716995409]]],[[[-80.90180901809018,73.60732882443659],[-80.84060840608406,73.62421459713542],[-80.8010080100801,73.67149476069216],[-80.80460804608046,73.72046350151874],[-80.86220862208621,73.74579216056699],[-80.86220862208621,73.75085789237662],[-80.7830078300783,73.75254646964652],[-80.75780757807578,73.75930077872604],[-80.74700747007469,73.75761220145617],[-80.67140671406713,73.75930077872604],[-80.55980559805597,73.7728093968851],[-80.44460444604445,73.7728093968851],[-80.33300333003329,73.75930077872604],[-80.12420124201242,73.69851199701026],[-80.10260102601026,73.69682341974038],[-80.08100081000809,73.70188915155003],[-80.07020070200701,73.70864346062956],[-80.05940059400594,73.72384065605851],[-80.0450004500045,73.73228354240791],[-80.02340023400234,73.73397211967782],[-79.99819998199982,73.72721781059826],[-79.95139951399514,73.71033203789943],[-79.64539645396454,73.67993764704156],[-79.60219602196021,73.6664290288825],[-79.45099450994509,73.6360346380246],[-78.97578975789757,73.6360346380246],[-78.95418954189542,73.6377232152945],[-78.90738907389074,73.65798614253308],[-78.84618846188461,73.6664290288825],[-78.81378813788137,73.6664290288825],[-78.7669876698767,73.65460898799333],[-78.45018450184502,73.66136329707285],[-78.1369813698137,73.66811760615238],[-78.11538115381154,73.6664290288825],[-78.0649806498065,73.65123183345355],[-78.00018000180002,73.64447752437403],[-77.86337863378634,73.6090174017065],[-77.42777427774277,73.56004866087989],[-77.40617406174061,73.55329435180036],[-77.3449734497345,73.52121138367258],[-77.31977319773198,73.51445707459305],[-77.21177211772117,73.51107992005328],[-77.20817208172082,73.50770276551353],[-77.20097200972009,73.50263703370388],[-77.19377193771938,73.49757130189423],[-77.16137161371613,73.48406268373517],[-77.1469714697147,73.47730837465562],[-77.15417154171541,73.47561979738575],[-77.15777157771578,73.46886548830622],[-77.16137161371613,73.46379975649657],[-77.09657096570966,73.43002821109891],[-77.03177031770318,73.40301097478078],[-77.04977049770497,73.39456808843138],[-77.0569705697057,73.38950235662173],[-77.06777067770678,73.3810594702723],[-77.03897038970389,73.35910796576385],[-76.90576905769058,73.3253364203662],[-76.84816848168481,73.3337793067156],[-76.80136801368013,73.33040215217585],[-76.7581675816758,73.32027068855655],[-76.7581675816758,73.3253364203662],[-76.75456754567546,73.32702499763607],[-76.74736747367473,73.32702499763607],[-76.72576725767257,73.3253364203662],[-76.7149671496715,73.32195926582642],[-76.70776707767077,73.31689353401677],[-76.70056700567005,73.30676207039747],[-76.75096750967509,73.29831918404807],[-76.72576725767257,73.27805625680946],[-76.69336693366934,73.26117048411064],[-76.62136621366213,73.23753040233228],[-76.58536585365853,73.21895605236358],[-76.58536585365853,73.20375885693463],[-76.63576635766357,73.16998731153697],[-76.61416614166141,73.16661015699722],[-76.52056520565205,73.12946145705979],[-76.49176491764918,73.12270714798026],[-76.44496444964449,73.11932999344049],[-76.38736387363873,73.10919852982121],[-76.27216272162721,73.10244422074166],[-76.24336243362433,73.09400133439226],[-76.26136261362613,73.08218129350308],[-76.30456304563046,73.07204982988378],[-76.31896318963189,73.0602297889946],[-76.30816308163081,73.05516405718495],[-76.3009630096301,73.05347547991508],[-76.29016290162902,73.0517869026452],[-76.27576275762758,73.0517869026452],[-76.28656286562865,73.04334401629578],[-76.29736297362973,73.03827828448613],[-76.32616326163262,73.03321255267647],[-76.31176311763117,73.0213925117873],[-76.27936279362794,73.00957247089812],[-76.2649626496265,72.99775243000894],[-76.31536315363154,72.98086665731012],[-76.33336333363333,72.97073519369081],[-76.2649626496265,72.94371795737271],[-76.11736117361173,72.94202938010281],[-76.05976059760597,72.90150352562563],[-76.07776077760778,72.89643779381598],[-76.09936099360993,72.88968348473645],[-76.10656106561065,72.87955202111715],[-76.08496084960849,72.86773198022797],[-76.12456124561245,72.8474690529894],[-76.22176221762217,72.8373375893701],[-76.31896318963189,72.81707466213149],[-76.66456664566645,72.82720612575079],[-76.73296732967329,72.84240332117975],[-76.77256772567725,72.84240332117975],[-76.81936819368194,72.83396043483032],[-77.06777067770678,72.84409189844962],[-77.31977319773198,72.8559119393388],[-77.42417424174242,72.88292917565693],[-77.73017730177301,72.88968348473645],[-78.03978039780398,72.8947492165461],[-78.11538115381154,72.88968348473645],[-78.16938169381693,72.89812637108588],[-78.6409864098641,72.85253478479905],[-78.70938709387093,72.83058328029057],[-78.86778867788678,72.81032035305196],[-78.94338943389434,72.79174600308326],[-79.17379173791737,72.75459730314583],[-79.38979389793897,72.74108868498678],[-79.56979569795698,72.75966303495548],[-79.82899828998289,72.83396043483032],[-79.94779947799478,72.8474690529894],[-79.98019980199801,72.85760051660867],[-80.00180001800018,72.87110913476775],[-80.0270002700027,72.91501214378471],[-80.03780037800378,72.92176645286423],[-80.0450004500045,72.92514360740398],[-80.05940059400594,72.94202938010281],[-80.06660066600665,72.94709511191246],[-80.10980109801098,72.97073519369081],[-80.12060120601205,72.98255523457999],[-80.15660156601565,73.02645824359695],[-80.1710017100171,73.03827828448613],[-80.17460174601746,73.04503259356565],[-80.1710017100171,73.05516405718495],[-80.13860138601386,73.09400133439226],[-80.12420124201242,73.12101857071039],[-80.1350013500135,73.12608430252004],[-80.16740167401673,73.13452718886944],[-80.17820178201782,73.14128149794897],[-80.17820178201782,73.1497243842984],[-80.18180181801817,73.1598558479177],[-80.17820178201782,73.16661015699722],[-80.1710017100171,73.16998731153697],[-80.13860138601386,73.17336446607675],[-80.11700117001169,73.18518450696592],[-80.11700117001169,73.20207027966475],[-80.14220142201421,73.22402178417323],[-80.16380163801638,73.23415324779253],[-80.23220232202321,73.24935044322146],[-80.27180271802717,73.25272759776124],[-80.36900369003689,73.23921897960219],[-80.4410044100441,73.25779332957089],[-80.55260552605526,73.25779332957089],[-80.7110071100711,73.27974483407937],[-80.77220772207721,73.27974483407937],[-80.79380793807938,73.28481056588902],[-80.8190081900819,73.30338491585772],[-80.82980829808298,73.30845064766737],[-80.85860858608585,73.31858211128664],[-80.86940869408694,73.32702499763607],[-80.87300873008729,73.33884503852525],[-80.86580865808658,73.34559934760478],[-80.85860858608585,73.3523536566843],[-80.84780847808477,73.36079654303373],[-80.89460894608946,73.3810594702723],[-80.87300873008729,73.39456808843138],[-80.86940869408694,73.39794524297113],[-80.86940869408694,73.40807670659044],[-80.87300873008729,73.42665105655914],[-80.88020880208802,73.43678252017844],[-80.87660876608766,73.44522540652787],[-80.85140851408514,73.47561979738575],[-80.8370083700837,73.48575126100505],[-80.8190081900819,73.4908169928147],[-80.79380793807938,73.4908169928147],[-80.71820718207182,73.47899695192552],[-80.69660696606965,73.48406268373517],[-80.71460714607146,73.49419414735445],[-80.77940779407794,73.50432561097375],[-80.79380793807938,73.5093913427834],[-80.8550085500855,73.54485146545093],[-80.86220862208621,73.55160577453046],[-80.87660876608766,73.57355727903894],[-80.87300873008729,73.57524585630884],[-80.88020880208802,73.59044305173776],[-80.88380883808837,73.59044305173776],[-80.88380883808837,73.59382020627754],[-80.90180901809018,73.60732882443659]]],[[[-109.60489604896048,78.07361570327635],[-109.58329583295833,78.05335277603774],[-109.60129601296013,78.03140127152926],[-109.65889658896589,77.9976297261316],[-109.6768967689677,77.97736679889303],[-109.68769687696877,77.9706124898135],[-109.78849788497885,77.9503495625749],[-110.00450004500044,77.9317752126062],[-110.12330123301233,77.9216437489869],[-110.22410224102241,77.89800366720854],[-110.53370533705336,77.88449504904946],[-110.83970839708397,77.86929785362054],[-110.90450904509045,77.85241208092171],[-110.87930879308793,77.8220176900638],[-110.77850778507785,77.8034433400951],[-110.75330753307533,77.7848689901264],[-110.7209072090721,77.7662946401577],[-110.40770407704076,77.77304894923722],[-110.3429034290343,77.7848689901264],[-110.13050130501304,77.78149183558662],[-110.10890108901089,77.77642610377697],[-110.08730087300873,77.7646060628878],[-110.080100801008,77.75278602199862],[-110.09450094500944,77.74603171291909],[-110.0909009090091,77.73758882656969],[-110.08730087300873,77.73252309476004],[-110.11250112501125,77.70719443571178],[-110.11610116101161,77.70550585844191],[-110.11250112501125,77.69199724028286],[-110.09810098100981,77.68355435393343],[-110.06930069300692,77.67173431304425],[-110.07290072900729,77.66835715850448],[-110.07650076500765,77.66160284942495],[-110.080100801008,77.6582256948852],[-110.07290072900729,77.65147138580565],[-110.06210062100621,77.6480942312659],[-110.05130051300513,77.64471707672612],[-110.04050040500405,77.64471707672612],[-110.05490054900548,77.63120845856707],[-110.07650076500765,77.62445414948755],[-110.12330123301233,77.61769984040802],[-110.14850148501485,77.6092569540586],[-110.16290162901629,77.6008140677092],[-110.15930159301593,77.59237118135977],[-110.10890108901089,77.58730544955012],[-110.0909009090091,77.58223971774046],[-110.08730087300873,77.57210825412119],[-110.09450094500944,77.55522248142236],[-110.11250112501125,77.54340244053316],[-110.16290162901629,77.53158239964398],[-110.23490234902349,77.50456516332588],[-110.57330573305732,77.45559642249927],[-110.710107101071,77.45221926795949],[-110.74610746107462,77.44546495887997],[-110.78930789307893,77.44546495887997],[-110.80010800108,77.44377638161009],[-110.82890828908289,77.42520203164139],[-110.87930879308793,77.41169341348231],[-111.19251192511925,77.42182487710161],[-111.250112501125,77.43195634072092],[-111.28251282512825,77.43195634072092],[-111.40131401314012,77.40325052713291],[-111.88371883718837,77.35259320903643],[-111.99171991719916,77.32895312725807],[-112.11052110521105,77.3255759727183],[-112.47052470524704,77.37116755900513],[-112.49572495724956,77.37961044535456],[-112.50652506525066,77.38805333170396],[-112.53532535325353,77.41169341348231],[-112.60012600126001,77.4539078452294],[-112.6361263612636,77.4640393088487],[-112.67932679326793,77.46066215430892],[-112.72972729727297,77.45053069068962],[-112.77652776527765,77.44884211341974],[-112.92772927729277,77.4640393088487],[-112.95652956529565,77.47079361792822],[-112.96732967329673,77.4826136588174],[-112.97452974529745,77.5011880087861],[-112.99252992529925,77.5113194724054],[-113.03573035730356,77.51807378148493],[-113.16533165331653,77.51469662694515],[-113.20133201332013,77.52820524510423],[-113.20853208532085,77.54340244053316],[-113.2121321213212,77.56197679050189],[-113.21933219332193,77.57548540866094],[-113.24093240932409,77.58223971774046],[-113.21573215732157,77.6008140677092],[-113.12213122131222,77.61432268586825],[-113.08973089730897,77.62276557221765],[-113.11133111331112,77.63289703583695],[-113.17973179731797,77.64978280853578],[-113.17253172531726,77.64978280853578],[-113.19053190531905,77.6582256948852],[-113.23373233732337,77.66329142669485],[-113.25533255332553,77.67173431304425],[-113.23733237332372,77.67511146758403],[-113.21933219332193,77.68186577666356],[-113.20853208532085,77.69368581755273],[-113.20853208532085,77.70888301298169],[-113.23013230132301,77.72239163114074],[-113.23373233732337,77.72745736295039],[-113.22653226532265,77.73421167202991],[-113.2121321213212,77.73758882656969],[-113.18693186931868,77.73927740383957],[-113.26613266132661,77.75954033107814],[-113.30573305733057,77.77642610377697],[-113.32373323733238,77.80850907190475],[-113.31293312933128,77.83890346276263],[-113.28053280532805,77.86254354454101],[-113.2121321213212,77.89124935812902],[-113.24093240932409,77.90475797628807],[-113.14013140131401,77.92333232625677],[-113.0861308613086,77.92333232625677],[-113.04653046530466,77.90813513082784],[-113.02853028530285,77.89969224447842],[-113.0069300693007,77.89631508993867],[-112.98172981729817,77.89800366720854],[-112.95652956529565,77.9030693990182],[-112.94572945729458,77.91151228536759],[-112.9349293492935,77.9216437489869],[-112.9241292412924,77.9300866353363],[-112.90612906129061,77.9317752126062],[-112.91332913329133,77.9317752126062],[-112.5929259292593,77.97398964435325],[-112.27252272522725,78.01451549883043],[-112.22572225722257,78.00944976702078],[-112.1681216812168,78.00776118975091],[-112.05652056520564,78.02464696244974],[-111.95211952119521,78.02126980790999],[-111.82251822518225,78.05335277603774],[-111.8009180091801,78.05166419876787],[-111.78651786517865,78.03815558060879],[-111.77571775717757,78.02971269425939],[-111.74331743317433,78.02802411698951],[-111.71091710917109,78.02971269425939],[-111.68931689316894,78.03308984879916],[-111.6389163891639,78.04828704422809],[-111.52731527315272,78.06686139419682],[-111.39051390513904,78.07192712600644],[-111.27891278912789,78.09050147597517],[-111.20691206912069,78.08205858962575],[-111.0089100891009,78.0972557850547],[-111.00171001710017,78.09556720778482],[-111.00171001710017,78.09050147597517],[-111.00171001710017,78.08543574416552],[-110.9981099810998,78.078681435086],[-110.98010980109801,78.07361570327635],[-110.86130861308612,78.0685499714667],[-110.82170821708218,78.07361570327635],[-110.710107101071,78.10401009413422],[-110.35730357303572,78.10232151686435],[-110.00450004500044,78.09894436232457],[-109.69849698496985,78.0972557850547],[-109.60489604896048,78.07361570327635]]],[[[-96.91116911169111,77.7950004537457],[-97.04077040770407,77.80850907190475],[-97.09117091170911,77.80513191736497],[-97.10197101971019,77.80850907190475],[-97.10557105571056,77.81526338098428],[-97.10197101971019,77.8237062673337],[-97.09837098370983,77.82877199914336],[-97.09477094770948,77.82877199914336],[-97.09477094770948,77.83383773095301],[-97.09117091170911,77.83721488549276],[-97.08757087570875,77.84228061730241],[-97.08757087570875,77.84903492638193],[-97.09837098370983,77.85747781273136],[-97.10557105571056,77.86085496727111],[-97.11637116371163,77.86592069908076],[-97.12357123571235,77.87774073996994],[-97.09477094770948,77.88111789450971],[-97.05157051570515,77.89293793539889],[-97.01557015570155,77.90982370809772],[-96.9939699396994,77.92502090352667],[-97.34317343173431,77.95879244892433],[-97.43317433174332,77.99425257159186],[-97.67077670776708,78.02802411698951],[-97.72477724777248,78.02633553971961],[-97.75357753577535,78.02802411698951],[-97.77517775177752,78.04153273514856],[-97.74277742777427,78.04153273514856],[-97.68157681576815,78.05504135330762],[-97.65277652776527,78.05504135330762],[-97.659976599766,78.06010708511727],[-97.67437674376744,78.07192712600644],[-97.68517685176852,78.07530428054622],[-97.65637656376563,78.0972557850547],[-97.29637296372964,78.08881289870527],[-96.93636936369363,78.08037001235587],[-96.89676896768967,78.09050147597517],[-96.85716857168572,78.10907582594388],[-96.87156871568716,78.107387248674],[-96.88596885968859,78.10907582594388],[-96.89676896768967,78.11414155775353],[-96.9039690396904,78.12427302137283],[-96.89316893168932,78.12427302137283],[-96.88596885968859,78.1259615986427],[-96.87516875168751,78.13102733045235],[-96.8679686796868,78.13778163953188],[-96.89676896768967,78.14622452588128],[-96.97596975969759,78.15635598950058],[-97.03717037170371,78.15297883496083],[-97.17397173971739,78.17661891673919],[-97.22797227972279,78.19519326670789],[-97.39357393573935,78.21207903940672],[-97.5339753397534,78.20701330759707],[-97.82917829178291,78.22727623483567],[-97.89037890378904,78.21883334848624],[-97.91917919179191,78.22052192575615],[-97.92637926379264,78.2340305439152],[-97.92277922779228,78.2441620075345],[-97.89037890378904,78.2441620075345],[-97.8219782197822,78.2340305439152],[-97.8219782197822,78.24078485299472],[-97.81477814778148,78.2340305439152],[-97.80757807578075,78.24078485299472],[-97.77877778777787,78.2424734302646],[-97.76797767977679,78.24753916207425],[-97.839978399784,78.27455639839238],[-97.9119791197912,78.2914421710912],[-98.06678066780667,78.30832794379003],[-98.05958059580595,78.32183656194908],[-98.04518045180451,78.32859087102864],[-98.03078030780307,78.33196802556839],[-98.01278012780128,78.33703375737804],[-98.03078030780307,78.34716522099734],[-98.07038070380703,78.36573957096604],[-98.09198091980919,78.36911672550582],[-98.08118081180811,78.38431392093474],[-98.06678066780667,78.3893796527444],[-98.04878048780488,78.39275680728417],[-98.03438034380343,78.39782253909382],[-98.07038070380703,78.40457684817335],[-98.21798217982179,78.41470831179265],[-98.35838358383583,78.45185701173006],[-98.37278372783727,78.4569227435397],[-98.38358383583835,78.46536562988913],[-98.40878408784087,78.48900571166749],[-98.41238412384124,78.49407144347714],[-98.40158401584016,78.51264579344584],[-98.379983799838,78.52108867979524],[-98.32238322383223,78.52108867979524],[-98.35478354783548,78.53459729795432],[-98.34038340383404,78.54304018430372],[-98.32238322383223,78.54304018430372],[-98.289982899829,78.53459729795432],[-98.0739807398074,78.53459729795432],[-98.05238052380524,78.53797445249407],[-98.03078030780307,78.54472876157362],[-98.02358023580236,78.55317164792302],[-98.04878048780488,78.5548602251929],[-98.04878048780488,78.56161453427245],[-98.04158041580415,78.56330311154233],[-98.02718027180272,78.56836884335198],[-98.05598055980559,78.58018888424115],[-98.13878138781388,78.60214038874963],[-98.1639816398164,78.6038289660195],[-98.22158221582215,78.60214038874963],[-98.24678246782467,78.61058327509903],[-98.23238232382323,78.62409189325811],[-98.2539825398254,78.63253477960751],[-98.31518315183152,78.64604339776656],[-98.32958329583296,78.65448628411599],[-98.32958329583296,78.683192097704],[-98.3259832598326,78.69501213859317],[-98.31518315183152,78.70683217948235],[-98.35838358383583,78.71865222037152],[-98.36918369183691,78.72709510672095],[-98.35478354783548,78.7304722612607],[-98.32958329583296,78.74229230214988],[-98.31518315183152,78.74735803395953],[-98.34758347583475,78.75748949757883],[-98.3619836198362,78.76593238392823],[-98.35478354783548,78.77437527027766],[-98.14958149581496,78.81827827929462],[-97.80037800378004,78.80814681567531],[-97.45117451174511,78.79632677478614],[-97.34677346773468,78.77268669300778],[-96.9579695796958,78.73384941580048],[-96.89316893168932,78.70345502494257],[-96.7059670596706,78.68656925224377],[-96.59796597965979,78.6933235613233],[-96.5439654396544,78.68488067497387],[-96.33876338763388,78.62578047052799],[-96.31356313563136,78.62071473871833],[-96.28836288362884,78.62240331598821],[-96.2379623796238,78.63084620233764],[-96.21996219962199,78.63084620233764],[-96.1659616596166,78.62409189325811],[-96.15876158761587,78.61902616144846],[-96.1659616596166,78.61058327509903],[-96.18396183961839,78.60045181147973],[-96.21276212762127,78.5936975024002],[-96.21276212762127,78.5835660387809],[-96.21276212762127,78.57174599789172],[-96.21996219962199,78.56161453427245],[-96.23436234362343,78.5548602251929],[-96.24876248762487,78.55148307065315],[-96.26316263162632,78.5464173388435],[-96.2739627396274,78.53459729795432],[-95.90675906759067,78.48731713439759],[-95.86715867158671,78.49069428893736],[-95.74475744757447,78.52108867979524],[-95.70155701557016,78.52615441160489],[-95.46035460354604,78.51095721617597],[-95.26235262352623,78.46874278442888],[-95.11835118351183,78.45523416626983],[-94.93474934749347,78.40288827090347],[-94.87354873548735,78.39444538455405],[-94.8591485914859,78.38600249820465],[-94.82674826748267,78.36405099369617],[-94.84834848348483,78.34547664372747],[-94.88074880748808,78.33534518010816],[-95.37035370353703,78.24753916207425],[-95.40275402754027,78.2340305439152],[-95.33435334353344,78.21714477121637],[-95.18315183151832,78.20701330759707],[-95.10755107551076,78.19181611216811],[-95.09315093150931,78.16479887585001],[-94.88794887948879,78.10907582594388],[-94.92394923949239,78.0871243214354],[-94.91674916749167,78.078681435086],[-94.88794887948879,78.0685499714667],[-94.88794887948879,78.06179566238717],[-94.9059490594906,78.06179566238717],[-94.92394923949239,78.05841850784739],[-94.93834938349383,78.05166419876787],[-94.94914949149491,78.04153273514856],[-94.93834938349383,78.04153273514856],[-94.98874988749887,78.01958123064009],[-95.02835028350283,77.9891868397822],[-95.04275042750427,77.98074395343278],[-95.06075060750607,77.97230106708338],[-95.11475114751147,77.9604810261942],[-95.16155161551615,77.9604810261942],[-95.26595265952659,77.97230106708338],[-95.37755377553775,77.97230106708338],[-95.39915399153992,77.9689239125436],[-95.45315453154531,77.94528383076525],[-95.47475474754748,77.94528383076525],[-95.52515525155252,77.94866098530503],[-95.56835568355683,77.93515236714595],[-95.70515705157051,77.92670948079655],[-95.80955809558095,77.9030693990182],[-96.08676086760867,77.88280647177959],[-96.3639636396364,77.86254354454101],[-96.38916389163892,77.86760927635063],[-96.41076410764107,77.87774073996994],[-96.41076410764107,77.88111789450971],[-96.40716407164071,77.88618362631937],[-96.40716407164071,77.89124935812902],[-96.41076410764107,77.89800366720854],[-96.42156421564215,77.90138082174829],[-96.49716497164971,77.90644655355794],[-96.52956529565296,77.9030693990182],[-96.59436594365944,77.88280647177959],[-96.63396633966339,77.87774073996994],[-96.70956709567095,77.88111789450971],[-96.7419674196742,77.87098643089041],[-96.68796687966879,77.85241208092171],[-96.61956619566196,77.85241208092171],[-96.54756547565475,77.86254354454101],[-96.49356493564936,77.87774073996994],[-96.49356493564936,77.87098643089041],[-96.57636576365763,77.85747781273136],[-96.51516515165152,77.85747781273136],[-96.5259652596526,77.84565777184218],[-96.5439654396544,77.84228061730241],[-96.56556565565656,77.84228061730241],[-96.60516605166052,77.84734634911206],[-96.72756727567275,77.83721488549276],[-96.79956799567995,77.8135748037144],[-96.84276842768428,77.80850907190475],[-96.83556835568355,77.80850907190475],[-96.82836828368283,77.80682049463488],[-96.82116821168212,77.80513191736497],[-96.81396813968139,77.80175476282523],[-96.83916839168391,77.79162329920592],[-96.86076860768607,77.78824614466618],[-96.91116911169111,77.7950004537457]]],[[[26.321663216632174,35.31546207530664],[26.310863108631082,35.29688772533794],[26.296462964629654,35.28506768444876],[26.282062820628227,35.27493622082946],[26.26766267662677,35.25973902540052],[26.285662856628562,35.20908170730404],[26.30006300063002,35.18544162552567],[26.321663216632174,35.19726166641486],[26.310863108631082,35.18206447098591],[26.296462964629654,35.16686727555697],[26.285662856628562,35.14998150285814],[26.29286292862929,35.136472884699074],[26.285662856628562,35.11789853473037],[26.278462784627862,35.099324184761656],[26.26766267662677,35.08412698933272],[26.256862568625706,35.07230694844354],[26.24966249662498,35.063864062094126],[26.24246242462425,35.038535403045884],[26.235262352623522,35.03346967123623],[26.22446224462246,35.031781093966345],[26.213662136621366,35.02840393942658],[26.206462064620666,35.02333820761693],[26.148861488614898,35.00307528037834],[26.13446134461344,34.99969812583858],[26.105661056610586,34.99969812583858],[26.102061020610222,35.001386703108466],[26.087660876608766,35.01489532126753],[26.080460804608066,35.01996105307717],[26.05886058860588,35.02333820761693],[26.037260372603726,35.021649630347056],[26.019260192601934,35.021649630347056],[26.00126001260014,35.03009251669647],[25.994059940599413,35.036846825775996],[25.98325983259832,35.038535403045884],[25.97605976059762,35.036846825775996],[25.968859688596893,35.03009251669647],[25.961659616596165,35.02840393942658],[25.92565925659258,35.03346967123623],[25.88245882458824,35.02671536215671],[25.80685806858068,35.00645243491812],[25.601656016560185,35.01320674399764],[25.536855368553688,34.996320971298815],[25.52245522455226,34.98956666221929],[25.50445504455044,34.98450093040964],[25.414454144541452,34.99294381675905],[25.34605346053462,34.99125523948916],[25.3280532805328,34.9878780849494],[25.30285302853028,34.98450093040964],[25.29565295652958,34.981123775869875],[25.281252812528123,34.97268088952046],[25.223652236522383,34.954106539551745],[25.209252092520927,34.95072938501198],[25.15165151651516,34.95579511682163],[25.130051300513003,34.95072938501198],[25.122851228512303,34.94735223047222],[25.115651156511575,34.94059792139268],[25.108451084510847,34.93722076685292],[25.097650976509783,34.93722076685292],[25.090450904509055,34.94059792139268],[25.08685086850869,34.94397507593246],[25.0760507605076,34.94397507593246],[25.058050580505807,34.94397507593246],[25.04365043650438,34.94059792139268],[25.01845018450186,34.932155035043266],[25.004050040500402,34.93722076685292],[24.982449824498246,34.938909344122806],[24.737647376473774,34.932155035043266],[24.737647376473774,34.93722076685292],[24.7520475204752,34.94566365320233],[24.755647556475566,34.95748369409151],[24.7520475204752,34.996320971298815],[24.755647556475566,35.00814101218799],[24.75924759247593,35.02671536215671],[24.75924759247593,35.04191255758565],[24.755647556475566,35.05204402120495],[24.748447484474866,35.065552639364],[24.741247412474138,35.07737268025318],[24.73404734047341,35.08243841206283],[24.730447304473046,35.08412698933272],[24.723247232472346,35.08919272114237],[24.719647196471982,35.094258452952005],[24.70884708847089,35.09594703022189],[24.6188461884619,35.09763560749178],[24.59364593645938,35.101012762031544],[24.579245792457925,35.10945564838096],[24.57564575645756,35.10945564838096],[24.564845648456497,35.106078493841196],[24.554045540455405,35.11452138019061],[24.53244532445325,35.136472884699074],[24.51804518045182,35.14491577104849],[24.50004500045,35.15167008012803],[24.48204482044821,35.156735811937665],[24.464044640446417,35.14998150285814],[24.402844028440285,35.17531016190638],[24.402844028440285,35.18544162552567],[24.402844028440285,35.19050735733532],[24.294842948429505,35.18206447098591],[24.219242192421945,35.19050735733532],[24.212042120421216,35.19388451187508],[24.208442084420852,35.198950243684735],[24.20484204842049,35.204015975494386],[24.20484204842049,35.205704552764274],[24.19764197641976,35.205704552764274],[24.19044190441906,35.2023273982245],[24.186841868418696,35.198950243684735],[24.183241832418332,35.19726166641486],[24.111241112411136,35.19726166641486],[24.093240932409344,35.204015975494386],[24.086040860408616,35.204015975494386],[24.078840788407888,35.19388451187508],[24.075240752407524,35.19557308914497],[24.050040500405004,35.19050735733532],[24.032040320403212,35.19726166641486],[24.003240032400328,35.225967480002865],[23.9888398883989,35.23272178908239],[23.902439024390247,35.231033211812516],[23.859238592385935,35.23609894362215],[23.826838268382687,35.25298471632098],[23.81963819638196,35.24791898451133],[23.81243812438126,35.24454182997157],[23.80523805238053,35.24454182997157],[23.798037980379803,35.246230407241455],[23.783637836378375,35.23441036635228],[23.71163711637118,35.23609894362215],[23.682836828368295,35.225967480002865],[23.66843668436684,35.23778752089204],[23.6108361083611,35.23441036635228],[23.58563585635858,35.23947609816193],[23.582035820358215,35.24454182997157],[23.58563585635858,35.25467329359087],[23.582035820358215,35.25973902540052],[23.571235712357122,35.26311617994028],[23.56043560435606,35.26480475721016],[23.55323553235533,35.266493334480046],[23.546035460354602,35.27324764355957],[23.538835388353903,35.281690529908985],[23.531635316353174,35.288444838988525],[23.517235172351718,35.293510570798176],[23.524435244352446,35.3002648798777],[23.520835208352082,35.301953457147576],[23.517235172351718,35.303642034417464],[23.517235172351718,35.30701918895723],[23.531635316353174,35.31377349803677],[23.538835388353903,35.31546207530664],[23.546035460354602,35.31546207530664],[23.546035460354602,35.318839229846404],[23.546035460354602,35.32052780711629],[23.549635496354966,35.32221638438618],[23.55323553235533,35.32221638438618],[23.546035460354602,35.328970693465706],[23.542435424354238,35.33572500254523],[23.542435424354238,35.345856466164534],[23.546035460354602,35.35598792978382],[23.538835388353903,35.37456227975254],[23.549635496354966,35.39651378426102],[23.564035640356423,35.41846528876948],[23.574835748357486,35.43535106146831],[23.571235712357122,35.44041679327796],[23.56763567635676,35.4471711023575],[23.56043560435606,35.45223683416714],[23.56043560435606,35.45899114324668],[23.571235712357122,35.48431980229492],[23.57843578435785,35.49276268864433],[23.57843578435785,35.50120557499375],[23.56763567635676,35.506271306803384],[23.56763567635676,35.513025615882924],[23.571235712357122,35.518091347692575],[23.571235712357122,35.51977992496245],[23.571235712357122,35.52315707950221],[23.56763567635676,35.52822281131186],[23.582035820358215,35.55186289309022],[23.58563585635858,35.56368293397941],[23.582035820358215,35.575502974868584],[23.600036000360006,35.6025202111867],[23.60363603636037,35.612651674806],[23.607236072360735,35.59238874756741],[23.607236072360735,35.55186289309022],[23.614436144361463,35.53497712039139],[23.621636216362162,35.5248456567721],[23.625236252362527,35.52146850223234],[23.632436324363255,35.52146850223234],[23.639636396363983,35.51977992496245],[23.639636396363983,35.5147141931528],[23.639636396363983,35.511337038613036],[23.64323643236432,35.506271306803384],[23.650436504365047,35.50289415226362],[23.657636576365775,35.50120557499375],[23.682836828368295,35.49951699772386],[23.70443704437045,35.50289415226362],[23.71883718837188,35.513025615882924],[23.72963729637297,35.52991138858175],[23.72963729637297,35.553551470360105],[23.726037260372607,35.573814397598696],[23.715237152371543,35.59238874756741],[23.71163711637118,35.60758594299635],[23.722437224372243,35.617717406615654],[23.715237152371543,35.63460317931447],[23.71163711637118,35.64811179747353],[23.715237152371543,35.6616204156326],[23.726037260372607,35.67512903379166],[23.740437404374063,35.68694907468084],[23.751237512375127,35.68694907468084],[23.758437584375855,35.680194765601314],[23.78003780037801,35.6717518792519],[23.78003780037801,35.663308992902486],[23.76923769237692,35.653177529283184],[23.76923769237692,35.64135748839401],[23.78003780037801,35.60927452026624],[23.776437764377647,35.583945861218],[23.78003780037801,35.575502974868584],[23.798037980379803,35.54510858401069],[23.816038160381623,35.53497712039139],[23.902439024390247,35.526534234041975],[23.927639276392767,35.52146850223234],[23.94563945639456,35.5248456567721],[23.999639996399964,35.51977992496245],[24.024840248402484,35.52146850223234],[24.035640356403576,35.52315707950221],[24.04644046440464,35.52822281131186],[24.050040500405004,35.53497712039139],[24.053640536405368,35.54510858401069],[24.057240572405732,35.553551470360105],[24.068040680406824,35.555240047629994],[24.093240932409344,35.553551470360105],[24.082440824408252,35.590700170297524],[24.1148411484115,35.600831633916826],[24.161641616416176,35.59745447937705],[24.183241832418332,35.58563443848787],[24.20484204842049,35.54173142947093],[24.201242012420124,35.53497712039139],[24.194041940419424,35.531599965851626],[24.186841868418696,35.518091347692575],[24.183241832418332,35.513025615882924],[24.17244172441724,35.50964846134316],[24.16524165241654,35.50795988407327],[24.143641436414384,35.506271306803384],[24.104041040410408,35.5147141931528],[24.082440824408252,35.5147141931528],[24.068040680406824,35.506271306803384],[24.07164071640716,35.49782842045397],[24.08964089640898,35.48938553410456],[24.107641076410772,35.48263122502503],[24.136441364413656,35.47418833867562],[24.168841688416904,35.455613988706915],[24.186841868418696,35.45223683416714],[24.20484204842049,35.45392541143703],[24.22284222842228,35.46067972051655],[24.2408424084241,35.470811184135854],[24.251642516425164,35.47925407048527],[24.262442624426257,35.433662484198436],[24.26604266042662,35.41508813422972],[24.262442624426257,35.3779394342923],[24.26604266042662,35.36949654794289],[24.27324273242732,35.364430816133236],[24.294842948429505,35.364430816133236],[24.302043020430204,35.3593650843236],[24.34164341643418,35.34754504343442],[24.428044280442805,35.36949654794289],[24.464044640446417,35.36274223886336],[24.485644856448573,35.37287370248265],[24.56844568445686,35.38469374337184],[24.59364593645938,35.391448052451366],[24.654846548465486,35.41846528876948],[24.67644676446764,35.423531020579134],[24.698046980469826,35.426908175118896],[24.719647196471982,35.426908175118896],[24.820448204482062,35.413399556959845],[24.84204842048422,35.40326809334054],[24.849248492484918,35.41002240242007],[24.86724867248674,35.41677671149961],[24.896048960489622,35.42521959784902],[24.957249572495726,35.40326809334054],[24.964449644496455,35.41002240242007],[24.96804968049682,35.41171097968996],[24.96804968049682,35.41508813422972],[24.971649716497183,35.42521959784902],[25.01845018450186,35.41508813422972],[25.029250292502923,35.40326809334054],[25.047250472504743,35.40495667061043],[25.054450544505443,35.40326809334054],[25.054450544505443,35.39820236153089],[25.05085050850508,35.391448052451366],[25.047250472504743,35.386382320641715],[25.047250472504743,35.37962801156219],[25.054450544505443,35.35598792978382],[25.0760507605076,35.344167888894646],[25.108451084510847,35.34247931162477],[25.15165151651516,35.344167888894646],[25.180451804518043,35.350922197974185],[25.198451984519863,35.3492336207043],[25.2020520205202,35.34754504343442],[25.205652056520563,35.34247931162477],[25.21285212852129,35.33741357981512],[25.22005220052202,35.33572500254523],[25.25245252452524,35.33572500254523],[25.306453064530643,35.34247931162477],[25.331653316533163,35.33741357981512],[25.34605346053462,35.33572500254523],[25.360453604536048,35.34247931162477],[25.367653676536776,35.33572500254523],[25.374853748537504,35.34247931162477],[25.392853928539296,35.328970693465706],[25.407254072540724,35.31208492076688],[25.425254252542544,35.3002648798777],[25.4540545405454,35.293510570798176],[25.482854828548284,35.29688772533794],[25.63765637656377,35.345856466164534],[25.659256592565924,35.3492336207043],[25.670056700567017,35.34754504343442],[25.691656916569173,35.33741357981512],[25.7060570605706,35.33572500254523],[25.767257672576733,35.33572500254523],[25.760057600576005,35.32221638438618],[25.74925749257494,35.31039634349699],[25.72405724057242,35.293510570798176],[25.73125731257312,35.288444838988525],[25.727657276572785,35.27831337536922],[25.72405724057242,35.2715590662897],[25.727657276572785,35.26480475721016],[25.73845738457385,35.25973902540052],[25.73845738457385,35.27662479809935],[25.742057420574213,35.28506768444876],[25.74925749257494,35.283379107178874],[25.760057600576005,35.27493622082946],[25.752857528575305,35.268181911749934],[25.752857528575305,35.26480475721016],[25.760057600576005,35.25973902540052],[25.752857528575305,35.25298471632098],[25.74925749257494,35.256361870860744],[25.745657456574577,35.256361870860744],[25.73845738457385,35.25467329359087],[25.73125731257312,35.246230407241455],[25.734857348573485,35.23778752089204],[25.727657276572785,35.225967480002865],[25.720457204572057,35.21077028457391],[25.72405724057242,35.19050735733532],[25.71325713257133,35.18206447098591],[25.71325713257133,35.17362158463649],[25.720457204572057,35.163490121017205],[25.72405724057242,35.1533586573979],[25.727657276572785,35.13309573015931],[25.73845738457385,35.13140715288942],[25.752857528575305,35.13309573015931],[25.770857708577097,35.126341421079786],[25.78165781657816,35.11789853473037],[25.796057960579617,35.11452138019061],[25.817658176581773,35.116209957460484],[25.8320583205832,35.12296426654002],[25.846458464584657,35.14998150285814],[25.860858608586085,35.156735811937665],[25.868058680586813,35.156735811937665],[25.871658716587177,35.15842438920755],[25.88245882458824,35.16517869828708],[25.896858968589697,35.18206447098591],[25.896858968589697,35.18544162552567],[25.90765907659076,35.18713020279556],[25.94005940059401,35.188818780065446],[25.979659796597986,35.19557308914497],[25.986859868598685,35.19726166641486],[26.01566015660157,35.21414743911369],[26.02646026460266,35.2225903254631],[26.03366033660336,35.225967480002865],[26.044460444604454,35.22765605727274],[26.048060480604818,35.225967480002865],[26.055260552605546,35.22765605727274],[26.05886058860588,35.23272178908239],[26.06606066060661,35.23272178908239],[26.080460804608066,35.224278902732976],[26.120061200612014,35.21583601638356],[26.10926109261092,35.205704552764274],[26.130861308613106,35.19557308914497],[26.156061560615626,35.19726166641486],[26.177661776617782,35.20739313003415],[26.199261992619938,35.219213170923325],[26.19206192061921,35.220901748193214],[26.19206192061921,35.2225903254631],[26.19206192061921,35.225967480002865],[26.21726217262173,35.24791898451133],[26.238862388623886,35.268181911749934],[26.260462604626042,35.28506768444876],[26.29286292862929,35.288444838988525],[26.285662856628562,35.3002648798777],[26.296462964629654,35.3002648798777],[26.30006300063002,35.3002648798777],[26.30006300063002,35.303642034417464],[26.296462964629654,35.31208492076688],[26.29286292862929,35.31546207530664],[26.321663216632174,35.31546207530664]]],[[[34.54414544145442,35.678506188331426],[34.58014580145803,35.6903262292206],[34.590945909459094,35.69201480649049],[34.58734587345873,35.688637651950714],[34.583745837458395,35.68526049741095],[34.58014580145803,35.68188334287119],[34.58014580145803,35.678506188331426],[34.57654576545767,35.64980037474342],[34.5729457294573,35.64304606566388],[34.565745657456574,35.64135748839401],[34.540545405454054,35.637980333854244],[34.53694536945369,35.63460317931447],[34.439744397443974,35.583945861218],[34.35334353343535,35.52146850223234],[34.13734137341373,35.41508813422972],[34.10854108541085,35.39482520699113],[34.08694086940869,35.36949654794289],[34.0689406894069,35.33741357981512],[34.05814058140581,35.323904961656055],[34.04374043740438,35.31546207530664],[34.01854018540186,35.31377349803677],[33.99333993339934,35.318839229846404],[33.971739717397185,35.32052780711629],[33.95013950139503,35.31208492076688],[33.92493924939251,35.27831337536922],[33.91053910539105,35.25973902540052],[33.90693906939069,35.24285325270169],[33.89973899738999,35.16517869828708],[33.914139141391416,35.156735811937665],[33.95373953739539,35.12296426654002],[33.96093960939609,35.11283280292072],[33.96813968139682,35.099324184761656],[33.97893978939791,35.08750414387248],[34.01134011340113,35.063864062094126],[34.022140221402225,35.057109753014586],[34.03654036540365,35.0469782893953],[34.05094050940511,35.03346967123623],[34.06174061740617,35.00645243491812],[34.072540725407265,34.9878780849494],[34.08694086940869,34.97268088952046],[34.097740977409785,34.96592658044092],[34.08694086940869,34.96423800317105],[34.05814058140581,34.96592658044092],[34.03294032940329,34.97268088952046],[34.022140221402225,34.98281235313975],[34.01134011340113,34.9878780849494],[33.95733957339573,34.981123775869875],[33.91053910539105,34.97099231225057],[33.89973899738999,34.96592658044092],[33.89253892538926,34.95748369409151],[33.88533885338853,34.949040807742094],[33.87453874538747,34.94059792139268],[33.863738637386376,34.93722076685292],[33.845738457384584,34.94228649866257],[33.820538205382064,34.96423800317105],[33.80253802538027,34.97268088952046],[33.78093780937809,34.976058044060224],[33.75933759337593,34.97943519859999],[33.71613716137162,34.9777466213301],[33.70173701737019,34.97268088952046],[33.68013680136801,34.96592658044092],[33.65493654936549,34.94397507593246],[33.64773647736479,34.932155035043266],[33.64053640536406,34.91526926234444],[33.63333633336333,34.898383489645624],[33.63333633336333,34.87980913967691],[33.63333633336333,34.86123478970819],[33.63333633336333,34.85279190335878],[33.62253622536227,34.849414748819015],[33.61533615336154,34.84603759427925],[33.611736117361176,34.82746324431055],[33.60453604536045,34.8223975125009],[33.59013590135902,34.81733178069125],[33.55773557735577,34.81733178069125],[33.54333543335434,34.81564320342136],[33.536135361353615,34.807200317071946],[33.52533525335255,34.79538027618277],[33.51453514535146,34.78524881256348],[33.50013500135003,34.78018308075383],[33.46773467734678,34.77511734894418],[33.4389343893439,34.763297308055],[33.41373413734138,34.75823157624535],[33.39933399333995,34.773428771674304],[33.39933399333995,34.744722958086285],[33.37053370533707,34.731214339927234],[33.29493294932951,34.71770572176817],[33.28053280532805,34.71263998995852],[33.27333273332735,34.70757425814887],[33.258932589325894,34.70081994906934],[33.24453244532447,34.69744279452958],[33.17253172531727,34.70588568087899],[33.100531005310074,34.69744279452958],[33.08613086130862,34.694065639989816],[33.07173071730719,34.687311330910276],[33.024930249302514,34.651851208242746],[33.01413014130142,34.63496543554392],[33.01053010530106,34.624833971924616],[33.01053010530106,34.5978167356065],[33.02853028530285,34.57417665382815],[33.02853028530285,34.569110922018496],[32.942129421294226,34.569110922018496],[32.942129421294226,34.57417665382815],[32.94572945729459,34.59443958106674],[32.916929169291706,34.64003116735357],[32.91332913329134,34.6569169400524],[32.85572855728557,34.668736980941574],[32.83412834128342,34.67042555821145],[32.81252812528126,34.668736980941574],[32.76212762127622,34.65353978551262],[32.74772747727479,34.65016263097286],[32.70812708127082,34.64509689916321],[32.664926649266505,34.651851208242746],[32.62532625326253,34.667048403671686],[32.57492574925749,34.69237706271993],[32.5569255692557,34.69913137179945],[32.53532535325354,34.704197103609104],[32.49212492124923,34.70757425814887],[32.47412474124741,34.71263998995852],[32.45972459724598,34.72108287630793],[32.42012420124203,34.74810011262606],[32.412924129241304,34.7531658444357],[32.405724057240576,34.78187165802372],[32.40212402124021,34.786937389833355],[32.40212402124021,34.79706885345266],[32.380523805238056,34.849414748819015],[32.36972369723699,34.856169057898555],[32.34812348123481,34.86798909878773],[32.337323373233744,34.876431985137145],[32.330123301233016,34.886563448756434],[32.32292322923229,34.898383489645624],[32.32292322923229,34.911892107804675],[32.330123301233016,34.92371214869385],[32.312123121231224,34.95072938501198],[32.30852308523086,34.960860848631285],[32.30852308523086,34.98281235313975],[32.304923049230496,35.001386703108466],[32.28332283322834,35.031781093966345],[32.27612276122761,35.0469782893953],[32.27252272522725,35.07230694844354],[32.27612276122761,35.09088129841224],[32.286922869228704,35.09763560749178],[32.30852308523086,35.08581556660259],[32.337323373233744,35.058798330284475],[32.35172351723517,35.04866686666517],[32.37332373323733,35.04191255758565],[32.412924129241304,35.043601134855535],[32.44892448924489,35.058798330284475],[32.481324813248136,35.08243841206283],[32.50292502925029,35.10945564838096],[32.51732517325175,35.13985003923884],[32.52812528125281,35.156735811937665],[32.54252542525427,35.16686727555697],[32.54612546125463,35.17193300736662],[32.54972549725497,35.17531016190638],[32.55332553325533,35.178687316446144],[32.56052560525606,35.17699873917627],[32.56772567725679,35.17193300736662],[32.57492574925749,35.17024443009673],[32.58572585725858,35.17193300736662],[32.60012600126001,35.178687316446144],[32.61812618126183,35.18544162552567],[32.639726397263985,35.18713020279556],[32.65052650526505,35.188818780065446],[32.66132661326614,35.18713020279556],[32.690126901269025,35.183753048255795],[32.71172711727118,35.18206447098591],[32.74412744127443,35.178687316446144],[32.77652776527765,35.17024443009673],[32.80172801728017,35.156735811937665],[32.82692826928269,35.14829292558825],[32.866528665286666,35.156735811937665],[32.891728917289186,35.17531016190638],[32.91332913329134,35.20063882095462],[32.92772927729277,35.23272178908239],[32.9349293492935,35.26987048901981],[32.9349293492935,35.33741357981512],[32.93132931329313,35.366119393403125],[32.92052920529207,35.39820236153089],[32.94572945729459,35.39482520699113],[32.98532985329854,35.37456227975254],[33.006930069300694,35.36949654794289],[33.068130681306826,35.3593650843236],[33.14013140131402,35.36274223886336],[33.26253262532626,35.3492336207043],[33.28053280532805,35.34247931162477],[33.42813428134281,35.328970693465706],[33.65853658536585,35.3593650843236],[33.74133741337414,35.39820236153089],[33.78453784537845,35.41677671149961],[33.83493834938349,35.41002240242007],[33.888938889388896,35.423531020579134],[34.03654036540365,35.470811184135854],[34.07614076140763,35.49445126591421],[34.13014130141303,35.511337038613036],[34.18054180541807,35.553551470360105],[34.20934209342093,35.558617202169756],[34.2669426694267,35.57212582032882],[34.3209432094321,35.58563443848787],[34.36054360543605,35.60758594299635],[34.54414544145442,35.678506188331426]]],[[[15.528755287552883,38.30255526572914],[15.557555575555767,38.30086668845925],[15.615156151561536,38.28060376122066],[15.65115651156512,38.27553802941101],[15.647556475564755,38.267095143061596],[15.643956439564391,38.26202941125196],[15.633156331563328,38.26034083398207],[15.6259562595626,38.26202941125196],[15.582755827558287,38.24007790674348],[15.568355683556831,38.226569288584415],[15.564755647556495,38.21474924769524],[15.561155611556131,38.1995520522663],[15.57555575555756,38.1995520522663],[15.528755287552883,38.13707469328064],[15.499954999549999,38.084728797914266],[15.39195391953919,37.976659852641774],[15.301953019530202,37.86521375282952],[15.28395283952841,37.83313078470175],[15.26595265952659,37.81117928019327],[15.24075240752407,37.79598208476433],[15.211952119521214,37.76221053936668],[15.20835208352085,37.747013343937724],[15.20835208352085,37.736881880318435],[15.219152191521914,37.71830753034972],[15.219152191521914,37.70648748946054],[15.21555215552155,37.696356025841254],[15.201152011520122,37.68453598495206],[15.197551975519758,37.676093098602664],[15.197551975519758,37.65583017136406],[15.18315183151833,37.62543578050618],[15.179551795517966,37.6034842759977],[15.16515165151651,37.56802415333017],[15.11475114751147,37.522432567043325],[15.096750967509678,37.49372675345532],[15.093150931509314,37.47684098075649],[15.08955089550895,37.45995520805768],[15.093150931509314,37.360329149134586],[15.096750967509678,37.34344337643577],[15.103951039510406,37.32993475827671],[15.111151111511134,37.32149187192729],[15.179551795517966,37.2910974810694],[15.219152191521914,37.284343171989875],[15.237152371523734,37.27421170837057],[15.251552515525162,37.257325935671744],[15.262352623526255,37.23368585389339],[15.244352443524434,37.24550589478257],[15.237152371523734,37.242128740242805],[15.229952299523006,37.23030869935363],[15.219152191521914,37.220177235734326],[15.222752227522278,37.237063008433154],[15.21555215552155,37.24550589478257],[15.204752047520486,37.24550589478257],[15.193951939519394,37.24044016297292],[15.197551975519758,37.226931544813866],[15.18315183151833,37.20666861757526],[15.193951939519394,37.17627422671738],[15.21555215552155,37.15601129947879],[15.23355233552337,37.164454185828205],[15.247952479524798,37.159388454018554],[15.247952479524798,37.152634144939015],[15.229952299523006,37.14925699039925],[15.23355233552337,37.13574837224019],[15.247952479524798,37.11886259954137],[15.26595265952659,37.11041971319196],[15.287552875528775,37.10873113592207],[15.301953019530202,37.101976826842545],[15.30915309153093,37.08677963141359],[15.301953019530202,37.06313954963524],[15.287552875528775,37.06820528144489],[15.280352803528046,37.06145097236535],[15.28395283952841,37.0479423542063],[15.29115291152911,37.04118804512676],[15.312753127531295,37.04456519966652],[15.319953199531994,37.039499467856885],[15.330753307533087,37.027679426967694],[15.330753307533087,37.01079365426888],[15.323553235532358,37.00910507699899],[15.312753127531295,37.012482231538755],[15.30915309153093,37.017547963348406],[15.301953019530202,37.01585938607852],[15.269552695526954,37.00066219064958],[15.273152731527318,36.99390788157005],[15.26595265952659,36.9888421497604],[15.262352623526255,36.98715357249051],[15.269552695526954,36.98039926341099],[15.269552695526954,36.97364495433145],[15.244352443524434,36.971956377061574],[15.226352263522642,36.965202067982034],[15.211952119521214,36.956759181632634],[15.197551975519758,36.95338202709286],[15.175951759517602,36.94325056347357],[15.15795157951581,36.92467621350485],[15.10755107551077,36.81998442277212],[15.10755107551077,36.808164381882946],[15.093150931509314,36.79972149553353],[15.100351003510042,36.77945856829494],[15.118351183511834,36.747375600167175],[15.136351363513654,36.68827539572128],[15.13275132751329,36.67476677756221],[15.11475114751147,36.65956958213327],[15.093150931509314,36.65450385032362],[15.075150751507522,36.65956958213327],[15.053550535505366,36.67138962302245],[15.03915039150391,36.68827539572128],[15.03195031950321,36.69334112753093],[15.021150211502118,36.700095436610454],[15.00675006750069,36.703472591150216],[14.999549995499962,36.70178401388034],[14.992349923499233,36.69671828207069],[14.98154981549817,36.68827539572128],[14.95634956349565,36.69840685934058],[14.920349203492037,36.720358363849044],[14.88074880748809,36.73048982746835],[14.848348483484841,36.725424095658695],[14.779947799478009,36.700095436610454],[14.776347763477645,36.70853832295987],[14.772747727477281,36.710226900229756],[14.761947619476189,36.70684974568999],[14.743947439474397,36.71866978657917],[14.686346863468628,36.725424095658695],[14.6719467194672,36.74399844562741],[14.657546575465773,36.7541299092467],[14.599945999460004,36.772704259215416],[14.581945819458213,36.78114714556483],[14.567545675456756,36.77776999102507],[14.488344883448832,36.79296718645401],[14.477544775447768,36.80478722734318],[14.39474394743948,36.94493914074344],[14.36954369543696,36.97364495433145],[14.279542795427972,37.04456519966652],[14.207542075420747,37.08171389960394],[14.124741247412487,37.11210829046183],[14.088740887408875,37.117174022271485],[13.97713977139773,37.11041971319196],[13.966339663396639,37.10873113592207],[13.948339483394847,37.09859967230277],[13.937539375393754,37.095222517763005],[13.894338943389442,37.10028824957266],[13.83313833138331,37.139125526779964],[13.793537935379362,37.152634144939015],[13.75033750337505,37.159388454018554],[13.714337143371438,37.17120849490773],[13.68193681936819,37.18978284487643],[13.59913599135993,37.257325935671744],[13.570335703357046,37.27421170837057],[13.534335343353433,37.282654594719986],[13.487534875348757,37.28772032652964],[13.451534515345173,37.299540367418814],[13.42273422734229,37.31473756284775],[13.372333723337249,37.346820530975535],[13.329133291332909,37.367083458214125],[13.311133111331117,37.38059207637319],[13.300333003330053,37.38565780818283],[13.28953289532896,37.389034962722604],[13.278732787327868,37.39410069453224],[13.253532535325348,37.43124939446966],[13.246332463324649,37.43631512627931],[13.224732247322493,37.44644658989861],[13.2139321393214,37.45826663078779],[13.206732067320672,37.46333236259744],[13.195931959319608,37.466709517137204],[13.18873188731888,37.47008667167697],[13.177931779317788,37.48359528983603],[13.174331743317452,37.486972444375795],[13.051930519305188,37.50048106253486],[13.03753037530376,37.49541533072521],[13.026730267302668,37.49372675345532],[13.015930159301604,37.4971039079951],[13.008730087300876,37.507235371614385],[13.005130051300512,37.527498298852976],[13.001530015300148,37.53594118520239],[12.972729727297292,37.55789268971087],[12.943929439294408,37.56802415333017],[12.86112861128612,37.57646703967957],[12.781927819278195,37.5747784624097],[12.699126991269907,37.56295842152052],[12.659526595265959,37.564646998790394],[12.637926379263803,37.58153277148922],[12.59472594725949,37.63725582139536],[12.57672576725767,37.652453016824296],[12.562325623256243,37.65751874863395],[12.522725227252266,37.65751874863395],[12.504725047250474,37.66596163498336],[12.490324903249046,37.68284740768219],[12.47592475924759,37.70311033492078],[12.465124651246526,37.71999610761961],[12.461524615246162,37.73519330304855],[12.457924579245798,37.747013343937724],[12.457924579245798,37.76052196209679],[12.447124471244706,37.77065342571609],[12.436324363243642,37.78247346660527],[12.42552425524255,37.79767066203421],[12.429124291242914,37.809490702923384],[12.44352443524437,37.81624501200292],[12.447124471244706,37.81117928019327],[12.461524615246162,37.819622166542686],[12.465124651246526,37.82299932108245],[12.461524615246162,37.82637647562221],[12.46872468724689,37.85339371194034],[12.472324723247226,37.85339371194034],[12.47592475924759,37.871968061909044],[12.479524795247954,37.88041094825846],[12.47592475924759,37.88547668006811],[12.46872468724689,37.897296720957286],[12.465124651246526,37.9057396073067],[12.465124651246526,37.91249391638624],[12.465124651246526,37.914182493656114],[12.46872468724689,37.915871070926],[12.490324903249046,37.95470834813331],[12.497524975249746,37.98003700718154],[12.504725047250474,37.996922779880364],[12.504725047250474,38.01043139803943],[12.49392493924941,38.022251438928606],[12.522725227252266,38.03069432527802],[12.547925479254786,38.05433440705639],[12.57672576725767,38.071220179755215],[12.609126091260919,38.0627772934058],[12.637926379263803,38.079663066104615],[12.65232652326523,38.091483106993806],[12.655926559265595,38.106680302422745],[12.663126631266323,38.11681176604205],[12.67752677526775,38.11512318877216],[12.691926919269207,38.1117460342324],[12.706327063270635,38.11005745696251],[12.724327243272427,38.12525465239146],[12.724327243272427,38.15058331143969],[12.720727207272091,38.17591197048793],[12.731527315273155,38.19279774318676],[12.738727387273883,38.18097770229758],[12.749527495274947,38.18266627956747],[12.760327603276039,38.18097770229758],[12.767527675276767,38.16240335232888],[12.789127891278923,38.11681176604205],[12.817928179281807,38.07797448883474],[12.828728287282871,38.06953160248533],[12.857528575285755,38.059400138866025],[12.868328683286848,38.05095725251661],[12.868328683286848,38.0425143661672],[12.900729007290067,38.02731717073826],[12.943929439294408,38.03238290254791],[13.026730267302668,38.0627772934058],[13.06273062730628,38.08304022064439],[13.069930699307008,38.091483106993806],[13.069930699307008,38.09486026153357],[13.069930699307008,38.101614570613094],[13.069930699307008,38.11343461150227],[13.066330663306644,38.12356607512157],[13.055530555305552,38.13200896147099],[13.055530555305552,38.142140425090275],[13.0879308793088,38.16578050686864],[13.084330843308436,38.17422339321806],[13.0879308793088,38.18266627956747],[13.102331023310228,38.189420588646996],[13.11313113131132,38.19279774318676],[13.123931239312412,38.191109165916885],[13.156331563315632,38.17928912502771],[13.177931779317788,38.17591197048793],[13.206732067320672,38.17591197048793],[13.231932319323192,38.184354856837345],[13.23913239132392,38.206306361345824],[13.253532535325348,38.20292920680606],[13.26433264332644,38.204617784075936],[13.278732787327868,38.20968351588559],[13.296732967329689,38.21474924769524],[13.311133111331117,38.21981497950489],[13.318333183331845,38.21981497950489],[13.321933219332209,38.218126402235],[13.325533255332573,38.211372093155475],[13.325533255332573,38.204617784075936],[13.329133291332909,38.1995520522663],[13.36513365133652,38.17928912502771],[13.372333723337249,38.17253481594817],[13.372333723337249,38.1404518478204],[13.375933759337613,38.13200896147099],[13.390333903339041,38.10330314788298],[13.512735127351277,38.11005745696251],[13.541535415354161,38.09486026153357],[13.537935379353797,38.07628591156485],[13.541535415354161,38.06784302521544],[13.54873548735489,38.05602298432626],[13.55593555935559,38.049268675246736],[13.588335883358837,38.039137211627434],[13.620736207362086,38.01549712984908],[13.64953649536497,38.00029993442014],[13.696336963369646,37.9935456253406],[13.710737107371074,37.98847989353095],[13.70713707137071,37.98510273899119],[13.70713707137071,37.98341416172131],[13.703537035370374,37.98003700718154],[13.72513725137253,37.981725584451425],[13.789937899378998,37.97328269810201],[13.811538115381154,37.97834842991166],[13.85833858338583,37.996922779880364],[13.897938979389806,38.003677088959904],[13.912339123391234,38.01211997530932],[13.923139231392327,38.022251438928606],[13.937539375393754,38.029005748008146],[14.005940059400615,38.03744863435756],[14.020340203402043,38.049268675246736],[14.063540635406355,38.03069432527802],[14.081540815408175,38.023940016198495],[14.106741067410695,38.022251438928606],[14.121141211412123,38.022251438928606],[14.149941499415007,38.029005748008146],[14.272342723427244,38.01549712984908],[14.329943299433012,38.01718570711897],[14.383943839438388,38.029005748008146],[14.430744307443092,38.049268675246736],[14.463144631446312,38.03744863435756],[14.509945099450988,38.044202943437085],[14.635946359463588,38.081351643374504],[14.668346683466837,38.09992599334322],[14.69714697146972,38.121877497851685],[14.733147331473333,38.15733762051923],[14.743947439474397,38.16071477505899],[14.776347763477645,38.1590261977891],[14.797947979479801,38.16071477505899],[14.873548735487361,38.17591197048793],[14.887948879488789,38.18266627956747],[14.898748987489881,38.18604343410723],[14.90594905949061,38.18773201137711],[14.934749347493494,38.18604343410723],[14.945549455494557,38.18097770229758],[14.96354963549635,38.164091929598754],[14.970749707497077,38.1590261977891],[14.98154981549817,38.1590261977891],[15.00675006750069,38.15227188870958],[15.03915039150391,38.153960465979466],[15.049950499505002,38.15227188870958],[15.053550535505366,38.148894734169815],[15.06435064350643,38.13538611601075],[15.067950679506794,38.13200896147099],[15.08955089550895,38.128631806931224],[15.103951039510406,38.13369753874086],[15.121951219512198,38.1404518478204],[15.175951759517602,38.15564904324934],[15.204752047520486,38.18266627956747],[15.24075240752407,38.241766484013354],[15.237152371523734,38.248520793092894],[15.237152371523734,38.25020937036277],[15.237152371523734,38.253586524902545],[15.24075240752407,38.26202941125196],[15.237152371523734,38.26540656579172],[15.244352443524434,38.26540656579172],[15.247952479524798,38.253586524902545],[15.24075240752407,38.22994644312418],[15.244352443524434,38.216437824965126],[15.25875258752589,38.20968351588559],[15.273152731527318,38.20799493861571],[15.29115291152911,38.206306361345824],[15.319953199531994,38.211372093155475],[15.399153991539919,38.233323597663954],[15.420754207542075,38.24514363855313],[15.435154351543531,38.253586524902545],[15.471154711547115,38.267095143061596],[15.514355143551455,38.29748953391949],[15.528755287552883,38.30255526572914]]],[[[9.793897938979399,40.556805921022544],[9.819098190981919,40.536542993783954],[9.826298262982647,40.529788684704414],[9.826298262982647,40.519657221085126],[9.815498154981555,40.5027714483863],[9.81189811898119,40.492639984766996],[9.808298082980826,40.47068848025852],[9.801098010980127,40.45549128482958],[9.77949779497797,40.42678547124157],[9.76149761497615,40.39132534857404],[9.750697506975087,40.37781673041498],[9.72909729097293,40.372750998605326],[9.71109711097111,40.3659966895258],[9.700297002970046,40.352488071366736],[9.682296822968226,40.32378225777873],[9.671496714967162,40.311962216889555],[9.646296462964642,40.2967650214606],[9.63549635496355,40.28325640330155],[9.624696246962486,40.262993476062945],[9.624696246962486,40.247796280634006],[9.62829628296285,40.205581848886936],[9.631896318963186,40.19545038526765],[9.65349653496537,40.144793067171165],[9.664296642966434,40.1312844490121],[9.67869678696789,40.12621871720245],[9.689496894968954,40.12115298539281],[9.71109711097111,40.09582432634457],[9.732697326973266,40.08400428545538],[9.72909729097293,40.06880709002644],[9.693096930969318,39.992821112881714],[9.68589685896859,39.96073814475395],[9.696696966969682,39.93372090843583],[9.70389703897041,39.93709806297559],[9.71109711097111,39.940475217515356],[9.714697146971474,39.940475217515356],[9.718297182971838,39.93372090843583],[9.714697146971474,39.92527802208642],[9.707497074970746,39.92190086754664],[9.700297002970046,39.92190086754664],[9.696696966969682,39.920212290276766],[9.689496894968954,39.9067036721177],[9.68589685896859,39.894883631228524],[9.682296822968226,39.88306359033935],[9.689496894968954,39.87124354945017],[9.682296822968226,39.87124354945017],[9.682296822968226,39.86617781764052],[9.689496894968954,39.86280066310076],[9.693096930969318,39.85942350856098],[9.696696966969682,39.857734931291105],[9.696696966969682,39.852669199481454],[9.68589685896859,39.83916058132239],[9.675096750967526,39.8188976540838],[9.671496714967162,39.79356899503556],[9.667896678966798,39.7699289132572],[9.671496714967162,39.75642029509814],[9.675096750967526,39.732780213319785],[9.675096750967526,39.717583017890846],[9.675096750967526,39.70745155427154],[9.664296642966434,39.690565781572715],[9.664296642966434,39.67705716341365],[9.66069660696607,39.670302854334125],[9.657096570965706,39.6635485452546],[9.649896498965006,39.65172850436541],[9.649896498965006,39.63821988620636],[9.657096570965706,39.5943168771894],[9.65349653496537,39.56729964087128],[9.62829628296285,39.50144512734586],[9.646296462964642,39.48455935464703],[9.639096390963914,39.45247638651925],[9.613896138961394,39.40013049115289],[9.60309603096033,39.356227482135935],[9.599495994959966,39.341030286706996],[9.60309603096033,39.32583309127806],[9.61029610296103,39.31739020492864],[9.63549635496355,39.30388158676958],[9.63549635496355,39.29712727769005],[9.606696066960666,39.28868439134064],[9.581495814958146,39.26673288683216],[9.567095670956718,39.238027073244155],[9.574295742957446,39.2143869914658],[9.567095670956718,39.2042555278465],[9.567095670956718,39.19918979603685],[9.574295742957446,39.194124064227196],[9.581495814958146,39.18736975514767],[9.57789577895781,39.17892686879826],[9.567095670956718,39.15866394155967],[9.567095670956718,39.148532477940364],[9.556295562955626,39.14008959159095],[9.538295382953834,39.133335282511425],[9.523895238952406,39.12489239616201],[9.520295202952042,39.10462946892342],[9.50949509495095,39.10800662346318],[9.505895058950586,39.111383778002946],[9.505895058950586,39.1164495098126],[9.513095130951314,39.12489239616201],[9.495094950949522,39.133335282511425],[9.480694806948065,39.13502385978131],[9.466294662946638,39.131646705241536],[9.45189451894521,39.12489239616201],[9.441094410944117,39.12489239616201],[9.437494374943753,39.133335282511425],[9.430294302943025,39.138401014321076],[9.40869408694087,39.14684390067049],[9.38349383493835,39.16879540517897],[9.37629376293765,39.17217255971873],[9.369093690936921,39.17723829152838],[9.343893438934401,39.195812641497085],[9.336693366933673,39.200878373306736],[9.32589325893261,39.20256695057661],[9.311493114931153,39.20763268238626],[9.30069300693009,39.2143869914658],[9.293492934929361,39.22114130054533],[9.286292862928633,39.2143869914658],[9.271892718927205,39.22114130054533],[9.253892538925385,39.22451845508509],[9.217892178921801,39.22789560962485],[9.196291962919645,39.22114130054533],[9.181891818918189,39.20763268238626],[9.171091710917125,39.194124064227196],[9.16749167491676,39.18736975514767],[9.138691386913877,39.194124064227196],[9.113491134911357,39.211009836926024],[9.073890738907409,39.24815853686344],[9.063090630906316,39.243092805053806],[9.055890558905588,39.24815853686344],[9.048690486904889,39.25660142321286],[9.037890378903796,39.26166715502251],[9.023490234902368,39.26504430956227],[9.012690126901276,39.263355732292396],[9.012690126901276,39.259978577752634],[9.027090270902704,39.25660142321286],[9.027090270902704,39.24815853686344],[9.019890198902004,39.23971565051403],[9.027090270902704,39.236338495974266],[9.034290342903432,39.2329613414345],[9.037890378903796,39.22789560962485],[9.048690486904889,39.22620703235498],[9.073890738907409,39.22958418689474],[9.081090810908108,39.22451845508509],[9.081090810908108,39.216075568735675],[9.077490774907744,39.21269841419591],[9.037890378903796,39.17892686879826],[9.027090270902704,39.16541825063919],[9.019890198902004,39.14684390067049],[9.01629016290164,39.12320381889214],[9.019890198902004,39.10462946892342],[9.023490234902368,39.086055118954704],[9.030690306903068,39.06916934625589],[9.037890378903796,39.06410361444624],[9.045090450904524,39.05903788263659],[9.045090450904524,39.050594996287174],[9.030690306903068,39.03033206904858],[9.019890198902004,38.99487194638104],[9.027090270902704,38.99487194638104],[9.01629016290164,38.9898062145714],[9.012690126901276,38.991494791841276],[9.005490054900548,38.99487194638104],[8.994689946899484,38.98305190549186],[8.893888938889404,38.9020001965375],[8.886688866888676,38.90031161926761],[8.875888758887584,38.89862304199774],[8.872288722887248,38.89524588745796],[8.861488614886156,38.88173726929891],[8.854288542885428,38.87836011475913],[8.839888398884,38.88004869202902],[8.829088290882908,38.888491578378435],[8.803888038880388,38.90537735107726],[8.803888038880388,38.88511442383867],[8.78948789487896,38.903688773807374],[8.767887678876804,38.9205745465062],[8.73908739087392,38.930706010125505],[8.717487174871764,38.93239458739538],[8.695886958869607,38.92564027831585],[8.667086670866723,38.910443082886914],[8.652686526865267,38.8918687329182],[8.656286562865631,38.87160580567961],[8.641886418864203,38.86485149660008],[8.634686346863475,38.87160580567961],[8.641886418864203,38.89018015564832],[8.634686346863475,38.89524588745796],[8.616686166861683,38.89524588745796],[8.598685986859863,38.89862304199774],[8.598685986859863,38.90537735107726],[8.616686166861683,38.92226312377609],[8.616686166861683,38.94759178282433],[8.602286022860227,38.96447755552316],[8.580685806858071,38.9611004009834],[8.573485734857343,39.013446296349755],[8.559085590855915,39.0573493053667],[8.551885518855187,39.0573493053667],[8.544685446854487,39.050594996287174],[8.519485194851967,39.060726459906476],[8.50508505085051,39.06241503717635],[8.508685086850875,39.067480768986],[8.519485194851967,39.08267796441494],[8.50508505085051,39.091120850764355],[8.483484834848355,39.08098938714507],[8.483484834848355,39.08436654168483],[8.476284762847627,39.091120850764355],[8.472684726847262,39.10800662346318],[8.465484654846563,39.11982666435236],[8.45468454684547,39.12489239616201],[8.443884438844407,39.118138087082485],[8.436684366843679,39.12826955070177],[8.440284402844043,39.153598209750015],[8.436684366843679,39.16541825063919],[8.42948429484295,39.173861136988606],[8.418684186841887,39.17723829152838],[8.411484114841159,39.175549714258494],[8.415084150841523,39.16541825063919],[8.407884078840794,39.16879540517897],[8.40428404284043,39.173861136988606],[8.400684006840066,39.180615446068146],[8.400684006840066,39.190746909687434],[8.397083970839702,39.200878373306736],[8.393483934839367,39.2042555278465],[8.386283862838638,39.2042555278465],[8.37908379083791,39.20763268238626],[8.371883718837182,39.222829877815215],[8.371883718837182,39.23127276416463],[8.375483754837546,39.238027073244155],[8.425884258842586,39.28361865953099],[8.433084330843315,39.30219300949969],[8.415084150841523,39.32414451400817],[8.418684186841887,39.33934170943712],[8.382683826838274,39.35960463667571],[8.375483754837546,39.378178986644414],[8.37908379083791,39.38831045026372],[8.397083970839702,39.403507645692656],[8.400684006840066,39.41195053204207],[8.40428404284043,39.42714772747101],[8.40428404284043,39.43559061382042],[8.389883898839003,39.46260785013855],[8.386283862838638,39.465985004678316],[8.386283862838638,39.46936215921808],[8.393483934839367,39.481182200107256],[8.422284222842222,39.508199436425386],[8.436684366843679,39.525085209124214],[8.451084510845106,39.55885675452187],[8.461884618846199,39.57743110449057],[8.45468454684547,39.58418541357011],[8.465484654846563,39.59769403172916],[8.461884618846199,39.61795695896777],[8.451084510845106,39.65848281344495],[8.447484474844742,39.70407439973178],[8.443884438844407,39.71420586335107],[8.443884438844407,39.72096017243061],[8.447484474844742,39.7310916360499],[8.443884438844407,39.75642029509814],[8.447484474844742,39.76317460417768],[8.458284582845835,39.7597974496379],[8.469084690846927,39.754731717828264],[8.501485014850147,39.71589444062096],[8.515885158851603,39.70238582246189],[8.537485374853759,39.69563151338237],[8.566285662856643,39.70069724519202],[8.515885158851603,39.71420586335107],[8.50508505085051,39.72096017243061],[8.50508505085051,39.737845945129436],[8.519485194851967,39.754731717828264],[8.533885338853395,39.77161749052709],[8.544685446854487,39.78343753141627],[8.537485374853759,39.78343753141627],[8.533885338853395,39.77668322233673],[8.53028530285303,39.7699289132572],[8.526685266852667,39.76655175871744],[8.519485194851967,39.76317460417768],[8.53028530285303,39.773306067796966],[8.541085410854123,39.78850326322592],[8.548285482854823,39.80707761319462],[8.551885518855187,39.82058623135369],[8.55548555485555,39.852669199481454],[8.551885518855187,39.86448924037063],[8.544685446854487,39.877997858529696],[8.523085230852303,39.89826078576829],[8.494284942849447,39.91176940392735],[8.461884618846199,39.913457981197226],[8.436684366843679,39.89826078576829],[8.443884438844407,39.893195053958635],[8.443884438844407,39.89826078576829],[8.451084510845106,39.899949363038175],[8.45468454684547,39.89826078576829],[8.461884618846199,39.89826078576829],[8.451084510845106,39.893195053958635],[8.443884438844407,39.88306359033935],[8.436684366843679,39.857734931291105],[8.42948429484295,39.86617781764052],[8.436684366843679,39.87630928125981],[8.42948429484295,39.88475216760922],[8.418684186841887,39.89150647668876],[8.40428404284043,39.90332651757794],[8.400684006840066,39.90332651757794],[8.397083970839702,39.905015094847826],[8.393483934839367,39.913457981197226],[8.393483934839367,39.920212290276766],[8.397083970839702,39.92696659935629],[8.400684006840066,39.93372090843583],[8.400684006840066,39.940475217515356],[8.393483934839367,39.977623917452775],[8.393483934839367,39.98775538107208],[8.407884078840794,40.00970688558054],[8.407884078840794,40.02152692646972],[8.393483934839367,40.03672412189867],[8.37908379083791,40.02996981281913],[8.375483754837546,40.03334696735891],[8.386283862838638,40.04178985370832],[8.400684006840066,40.05023274005774],[8.40428404284043,40.05023274005774],[8.433084330843315,40.05023274005774],[8.451084510845106,40.055298471867374],[8.458284582845835,40.05698704913726],[8.469084690846927,40.062052780946914],[8.47988479884799,40.07387282183609],[8.487084870848719,40.08907001726503],[8.490684906849083,40.10426721269398],[8.483484834848355,40.117775830853034],[8.469084690846927,40.144793067171165],[8.461884618846199,40.16336741713987],[8.458284582845835,40.21571331250624],[8.476284762847627,40.262993476062945],[8.476284762847627,40.291699289650964],[8.461884618846199,40.31533937142932],[8.440284402844043,40.332225144128145],[8.415084150841523,40.34573376228721],[8.407884078840794,40.337290875937796],[8.386283862838638,40.352488071366736],[8.382683826838274,40.37106242133544],[8.393483934839367,40.42340831670181],[8.389883898839003,40.44198266667051],[8.37908379083791,40.46899990298864],[8.364683646836482,40.492639984766996],[8.350283502835026,40.5027714483863],[8.332283322833234,40.51121433473571],[8.325083250832506,40.5314772619743],[8.317883178831806,40.555117343752656],[8.310683106831078,40.57875742553101],[8.292682926829286,40.59564319822984],[8.267482674826766,40.59395462095996],[8.217082170821726,40.57031453918161],[8.195481954819542,40.57875742553101],[8.206282062820634,40.597331775499725],[8.217082170821726,40.612528970928665],[8.191881918819206,40.617594702738316],[8.17748177481775,40.60577466184914],[8.166681666816686,40.58720031188042],[8.163081630816322,40.56356023010207],[8.15228152281523,40.577068848261135],[8.148681486814866,40.59395462095996],[8.141481414814166,40.619283280008204],[8.141481414814166,40.624349011817856],[8.159481594815958,40.632791898167255],[8.173881738817386,40.64123478451667],[8.184681846818478,40.65643197994562],[8.188281882818842,40.680072061723976],[8.191881918819206,40.680072061723976],[8.195481954819542,40.68513779353363],[8.199081990819906,40.69189210261315],[8.191881918819206,40.69358067988304],[8.17748177481775,40.695269257152916],[8.173881738817386,40.696957834422804],[8.166681666816686,40.702023566232455],[8.15228152281523,40.71890933893128],[8.145081450814502,40.72566364801081],[8.134281342813438,40.72904080255057],[8.209882098820998,40.86581556141107],[8.217082170821726,40.88101275684002],[8.217082170821726,40.899587106808724],[8.209882098820998,40.91478430223768],[8.191881918819206,40.919850034047315],[8.17748177481775,40.92829292039673],[8.181081810818114,40.945178693095556],[8.191881918819206,40.96375304306427],[8.20268202682027,40.97557308395345],[8.209882098820998,40.97557308395345],[8.213482134821362,40.96375304306427],[8.220682206822062,40.962064465794384],[8.22788227882279,40.962064465794384],[8.235082350823518,40.95531015671486],[8.235082350823518,40.946867270365445],[8.231482314823154,40.93504722947627],[8.22788227882279,40.9215386113172],[8.231482314823154,40.909718570428026],[8.27828278282783,40.86581556141107],[8.310683106831078,40.85061836598213],[8.422284222842222,40.83879832509295],[8.476284762847627,40.826978284203776],[8.501485014850147,40.82528970693389],[8.519485194851967,40.826978284203776],[8.598685986859863,40.85230694325202],[8.616686166861683,40.86581556141107],[8.634686346863475,40.88101275684002],[8.641886418864203,40.89620995226896],[8.710287102871035,40.919850034047315],[8.735487354873555,40.9215386113172],[8.749887498874983,40.919850034047315],[8.76428764287644,40.91309572496779],[8.821888218882208,40.946867270365445],[8.839888398884,40.962064465794384],[8.875888758887584,41.00765605208122],[8.886688866888676,41.01609893843063],[8.886688866888676,41.01947609297039],[8.886688866888676,41.02116467024028],[8.879488794887948,41.02285324751017],[8.911889118891196,41.03298471112946],[8.922689226892288,41.03636186566922],[8.929889298892988,41.04311617474876],[8.94068940689408,41.06169052471746],[8.947889478894808,41.06506767925724],[8.958689586895872,41.07013341106688],[8.976689766897664,41.08195345195605],[8.99108991089912,41.09715064738501],[9.005490054900548,41.12247930643325],[9.023490234902368,41.129233615512774],[9.0918909189092,41.1359879245923],[9.106291062910628,41.13936507913208],[9.135091350913513,41.15962800637067],[9.14229142291424,41.15287369729113],[9.156691566915669,41.16807089272008],[9.163891638916397,41.18495666541891],[9.163891638916397,41.22548251989609],[9.171091710917125,41.24236829259492],[9.189091890918917,41.25081117894433],[9.210692106921073,41.25587691075398],[9.232292322923229,41.26263121983351],[9.232292322923229,41.254188333484095],[9.239492394923957,41.24912260167444],[9.246692466924685,41.24743402440457],[9.257492574925749,41.24912260167444],[9.268292682926841,41.23730256078527],[9.268292682926841,41.20184243811774],[9.279092790927905,41.1950881290382],[9.27549275492757,41.20015386084785],[9.271892718927205,41.2052195926575],[9.27549275492757,41.211973901737025],[9.279092790927905,41.22210536535633],[9.286292862928633,41.22210536535633],[9.289892898928997,41.20859674719726],[9.289892898928997,41.2052195926575],[9.286292862928633,41.20184243811774],[9.286292862928633,41.1950881290382],[9.30069300693009,41.196776706308086],[9.304293042930425,41.19846528357796],[9.311493114931153,41.20184243811774],[9.315093150931517,41.196776706308086],[9.333093330933309,41.18833381995867],[9.336693366933673,41.211973901737025],[9.35109351093513,41.206908169927374],[9.387093870938713,41.17989093360926],[9.387093870938713,41.18833381995867],[9.397893978939805,41.18326808814902],[9.405094050940505,41.181579510879146],[9.412294122941233,41.17989093360926],[9.423094230942326,41.17989093360926],[9.423094230942326,41.17482520179961],[9.415894158941597,41.171448047259844],[9.415894158941597,41.16807089272008],[9.412294122941233,41.16469373818032],[9.40869408694087,41.15962800637067],[9.419494194941961,41.156250851830904],[9.42669426694269,41.149496542751365],[9.43389433894339,41.14105365640195],[9.441094410944117,41.13261077005254],[9.437494374943753,41.12585646097301],[9.437494374943753,41.11572499735371],[9.441094410944117,41.092084915575356],[9.455494554945545,41.112347842813946],[9.45909459094591,41.12079072916336],[9.469894698947002,41.12585646097301],[9.466294662946638,41.13092219278266],[9.466294662946638,41.134299347322425],[9.462694626946274,41.13767650186219],[9.455494554945545,41.14105365640195],[9.469894698947002,41.1461193882116],[9.480694806948065,41.1461193882116],[9.495094950949522,41.14274223367184],[9.50949509495095,41.14105365640195],[9.513095130951314,41.14274223367184],[9.516695166951678,41.149496542751365],[9.523895238952406,41.149496542751365],[9.531095310953106,41.14105365640195],[9.523895238952406,41.13261077005254],[9.53469534695347,41.127545038242886],[9.541895418954198,41.12247930643325],[9.545495454954562,41.12079072916336],[9.55269552695529,41.12585646097301],[9.55989559895599,41.12585646097301],[9.55989559895599,41.12247930643325],[9.563495634956354,41.12079072916336],[9.567095670956718,41.119102151893486],[9.563495634956354,41.107282111004295],[9.563495634956354,41.09715064738501],[9.556295562955626,41.087019183765705],[9.545495454954562,41.076887720146416],[9.545495454954562,41.08195345195605],[9.541895418954198,41.087019183765705],[9.538295382953834,41.092084915575356],[9.520295202952042,41.031296133859584],[9.513095130951314,41.01609893843063],[9.531095310953106,41.01609893843063],[9.523895238952406,41.031296133859584],[9.541895418954198,41.03636186566922],[9.55269552695529,41.03467328839935],[9.556295562955626,41.024541824780044],[9.55269552695529,41.009344629351105],[9.556295562955626,41.009344629351105],[9.55989559895599,41.01103320662099],[9.55989559895599,41.014410361160756],[9.55989559895599,41.01609893843063],[9.567095670956718,41.01103320662099],[9.567095670956718,41.009344629351105],[9.574295742957446,41.009344629351105],[9.588695886958874,41.02116467024028],[9.617496174961758,41.01947609297039],[9.642696426964278,41.01103320662099],[9.664296642966434,41.00259032027158],[9.649896498965006,40.99077027938239],[9.63549635496355,40.99245885665228],[9.621096210962122,40.9992131657318],[9.60309603096033,41.00259032027158],[9.588695886958874,40.99583601119204],[9.581495814958146,40.9806388157631],[9.57789577895781,40.962064465794384],[9.567095670956718,40.94855584763533],[9.570695706957082,40.93504722947627],[9.556295562955626,40.931670074936505],[9.513095130951314,40.93504722947627],[9.50949509495095,40.92998149766662],[9.513095130951314,40.92829292039673],[9.505895058950586,40.926604343126854],[9.513095130951314,40.91478430223768],[9.520295202952042,40.91478430223768],[9.52749527495277,40.919850034047315],[9.538295382953834,40.919850034047315],[9.549095490954926,40.91647287950755],[9.567095670956718,40.90802999315814],[9.574295742957446,40.906341415888264],[9.592295922959238,40.909718570428026],[9.606696066960666,40.91816145677744],[9.621096210962122,40.92322718858709],[9.642696426964278,40.919850034047315],[9.63549635496355,40.9114071476979],[9.631896318963186,40.904652838618375],[9.624696246962486,40.90127568407861],[9.613896138961394,40.899587106808724],[9.613896138961394,40.8928327977292],[9.649896498965006,40.87932417957013],[9.657096570965706,40.87594702503037],[9.657096570965706,40.864126984141194],[9.664296642966434,40.85906125233154],[9.671496714967162,40.85906125233154],[9.682296822968226,40.86581556141107],[9.689496894968954,40.85568409779178],[9.700297002970046,40.85061836598213],[9.71109711097111,40.847241211442366],[9.725497254972566,40.84555263417248],[9.689496894968954,40.83542117055319],[9.682296822968226,40.83035543874354],[9.689496894968954,40.81684682058447],[9.689496894968954,40.81009251150495],[9.675096750967526,40.81346966604471],[9.66069660696607,40.80840393423506],[9.657096570965706,40.799961047885645],[9.667896678966798,40.78982958426636],[9.671496714967162,40.801649625155534],[9.675096750967526,40.78814100699647],[9.70389703897041,40.759435193408464],[9.71109711097111,40.7459265752494],[9.714697146971474,40.7273522252807],[9.743497434974358,40.680072061723976],[9.747097470974722,40.66656344356491],[9.75429754297545,40.60577466184914],[9.757897578975786,40.59564319822984],[9.76149761497615,40.58720031188042],[9.768697686976878,40.58382315734066],[9.783097830978306,40.582134580070786],[9.78669786697867,40.575380270991246],[9.78669786697867,40.56693738464183],[9.793897938979399,40.556805921022544]]],[[[8.566285662856643,42.208234490967826],[8.573485734857343,42.220054531857],[8.566285662856643,42.22512026366665],[8.551885518855187,42.228497418206416],[8.544685446854487,42.23356315001607],[8.548285482854823,42.24200603636547],[8.559085590855915,42.243694613635355],[8.587885878858799,42.243694613635355],[8.595085950859527,42.24707176817512],[8.602286022860227,42.25044892271488],[8.609486094860955,42.25382607725466],[8.652686526865267,42.26058038633418],[8.66348663486636,42.265646118143835],[8.674286742867423,42.270711849953486],[8.681486814868151,42.27240042722336],[8.685086850868515,42.27240042722336],[8.68868688686888,42.27240042722336],[8.68868688686888,42.280843313572774],[8.674286742867423,42.28928619992219],[8.670686706867087,42.290974777192076],[8.634686346863475,42.30448339535113],[8.631086310863111,42.307860549890904],[8.631086310863111,42.31461485897043],[8.623886238862383,42.31968059078008],[8.609486094860955,42.30954912716078],[8.605886058860591,42.31123770443067],[8.602286022860227,42.31461485897043],[8.598685986859863,42.321369168049955],[8.605886058860591,42.32474632258973],[8.634686346863475,42.33825494074878],[8.61308613086132,42.35176355890785],[8.591485914859163,42.35176355890785],[8.551885518855187,42.33825494074878],[8.559085590855915,42.3466978270982],[8.551885518855187,42.35514071344761],[8.548285482854823,42.36527217706691],[8.548285482854823,42.37709221795609],[8.551885518855187,42.38722368157539],[8.559085590855915,42.38215794976574],[8.569885698857007,42.38215794976574],[8.580685806858071,42.385535104305504],[8.587885878858799,42.39228941338503],[8.598685986859863,42.38722368157539],[8.602286022860227,42.39228941338503],[8.602286022860227,42.40073229973444],[8.605886058860591,42.40748660881398],[8.61308613086132,42.41255234062362],[8.61308613086132,42.4159294951634],[8.620286202862047,42.41930664970316],[8.652686526865267,42.42268380424292],[8.659886598865995,42.42943811332245],[8.659886598865995,42.43956957694175],[8.659886598865995,42.45138961783093],[8.670686706867087,42.46489823598999],[8.677886778867787,42.47165254506952],[8.670686706867087,42.47671827687917],[8.659886598865995,42.47671827687917],[8.656286562865631,42.48009543141893],[8.659886598865995,42.48516116322858],[8.667086670866723,42.510489822276824],[8.681486814868151,42.52062128589611],[8.695886958869607,42.52737559497565],[8.717487174871764,42.530752749515415],[8.710287102871035,42.54088421313472],[8.717487174871764,42.56283571764318],[8.710287102871035,42.571278603992596],[8.710287102871035,42.57972149034201],[8.717487174871764,42.57634433580225],[8.721087210872128,42.57634433580225],[8.721087210872128,42.57465575853236],[8.724687246872463,42.56621287218296],[8.73908739087392,42.572967181262484],[8.749887498874983,42.56959002672272],[8.760687606876076,42.56114714037331],[8.771487714877168,42.557769985833545],[8.785887858878596,42.56283571764318],[8.800288002880023,42.571278603992596],[8.807488074880752,42.58478722215166],[8.811088110881116,42.5999844175806],[8.803888038880388,42.60673872666014],[8.843488434884364,42.608427303930014],[8.908289082890832,42.63206738570838],[9.019890198902004,42.650641735677084],[9.048690486904889,42.66246177656626],[9.052290522905224,42.68103612653498],[9.106291062910628,42.72662771282181],[9.11709117091172,42.73169344463146],[9.14229142291424,42.73507059917122],[9.163891638916397,42.73507059917122],[9.174691746917489,42.733382021901335],[9.185491854918553,42.733382021901335],[9.235892358923593,42.72325055828205],[9.257492574925749,42.713119094662744],[9.264692646926477,42.70805336285309],[9.271892718927205,42.702987631043456],[9.27549275492757,42.69454474469404],[9.286292862928633,42.67428181745545],[9.293492934929361,42.67428181745545],[9.329493294932945,42.719873403742284],[9.343893438934401,42.74857921733029],[9.333093330933309,42.77053072183875],[9.340293402934037,42.79079364907736],[9.336693366933673,42.807679421776186],[9.322293222932245,42.824565194475014],[9.304293042930425,42.83976238990394],[9.333093330933309,42.86677962622207],[9.333093330933309,42.8752225125715],[9.32589325893261,42.88535397619077],[9.32589325893261,42.8937968625402],[9.329493294932945,42.9039283261595],[9.336693366933673,42.91068263523903],[9.361893618936193,42.92925698520773],[9.35829358293583,42.93432271701738],[9.354693546935465,42.936011294287255],[9.35829358293583,42.941077026096906],[9.361893618936193,42.949519912446334],[9.35109351093513,42.957962798795734],[9.343893438934401,42.97315999422469],[9.340293402934037,42.990045766923515],[9.347493474934765,43.003554385082566],[9.361893618936193,43.011997271431994],[9.405094050940505,43.011997271431994],[9.423094230942326,43.017063003241645],[9.43389433894339,43.003554385082566],[9.444694446944482,42.998488653272915],[9.462694626946274,42.990045766923515],[9.462694626946274,42.98329145784399],[9.455494554945545,42.97484857149456],[9.455494554945545,42.963028530605385],[9.45909459094591,42.95289706698608],[9.469894698947002,42.94276560336678],[9.466294662946638,42.92419125339808],[9.48429484294843,42.83300808082441],[9.48429484294843,42.802613689966535],[9.45189451894521,42.70805336285309],[9.45189451894521,42.696233321963916],[9.448294482944846,42.68272470380485],[9.45189451894521,42.65401889021685],[9.448294482944846,42.650641735677084],[9.444694446944482,42.64895315840721],[9.444694446944482,42.64557600386743],[9.441094410944117,42.640510272057796],[9.444694446944482,42.63713311751802],[9.448294482944846,42.635444540248145],[9.455494554945545,42.633755962978256],[9.45909459094591,42.62531307662884],[9.462694626946274,42.620247344819205],[9.462694626946274,42.615181613009554],[9.455494554945545,42.60673872666014],[9.466294662946638,42.60167299485049],[9.466294662946638,42.59491868577096],[9.469894698947002,42.58647579942155],[9.47709477094773,42.57972149034201],[9.48429484294843,42.57465575853236],[9.513095130951314,42.56621287218296],[9.50949509495095,42.57972149034201],[9.505895058950586,42.58647579942155],[9.487894878948794,42.61180445846979],[9.520295202952042,42.5814100676119],[9.52749527495277,42.56283571764318],[9.531095310953106,42.54426136767448],[9.531095310953106,42.48684974049847],[9.53469534695347,42.45645534964058],[9.545495454954562,42.4345038451321],[9.538295382953834,42.42268380424292],[9.53469534695347,42.40748660881398],[9.531095310953106,42.39228941338503],[9.531095310953106,42.37371506341633],[9.538295382953834,42.35345213617774],[9.556295562955626,42.31461485897043],[9.55989559895599,42.29435193173184],[9.55269552695529,42.16939721376052],[9.55989559895599,42.145757131982165],[9.556295562955626,42.139002822902626],[9.556295562955626,42.120428472933924],[9.55269552695529,42.113674163854384],[9.545495454954562,42.103542700235096],[9.520295202952042,42.08496835026638],[9.50949509495095,42.071459732107314],[9.491494914949158,42.04781965032896],[9.423094230942326,41.973522250454124],[9.40869408694087,41.96170220956495],[9.40149401494017,41.95325932321553],[9.40149401494017,41.91779920054799],[9.394293942939441,41.848567532482804],[9.40149401494017,41.77933586441762],[9.40149401494017,41.706727041812655],[9.397893978939805,41.701661310003004],[9.390693906939077,41.69828415546324],[9.379893798937985,41.69321842365359],[9.372693726937285,41.6830869600343],[9.365493654936557,41.67464407368489],[9.379893798937985,41.67464407368489],[9.37629376293765,41.65606972371617],[9.372693726937285,41.645938260096884],[9.361893618936193,41.64087252828723],[9.354693546935465,41.64087252828723],[9.343893438934401,41.64087252828723],[9.343893438934401,41.63411821920771],[9.347493474934765,41.61892102377875],[9.333093330933309,41.623986755588405],[9.318693186931881,41.62736391012817],[9.304293042930425,41.62736391012817],[9.293492934929361,41.62567533285829],[9.293492934929361,41.61723244650888],[9.282692826928269,41.60710098288958],[9.279092790927905,41.59865809654016],[9.293492934929361,41.59190378746064],[9.32589325893261,41.602035251079926],[9.343893438934401,41.603723828349814],[9.354693546935465,41.5952809420004],[9.35109351093513,41.581772323841335],[9.340293402934037,41.56995228295216],[9.32589325893261,41.561509396602744],[9.307893078930789,41.55813224206298],[9.30069300693009,41.55306651025333],[9.293492934929361,41.54293504663404],[9.282692826928269,41.53280358301474],[9.264692646926477,41.53111500574485],[9.268292682926841,41.524360696665326],[9.268292682926841,41.5176063875858],[9.268292682926841,41.50916350123639],[9.264692646926477,41.50240919215685],[9.27549275492757,41.499032037617084],[9.279092790927905,41.49227772853756],[9.27549275492757,41.482146264918256],[9.264692646926477,41.47539195583873],[9.271892718927205,41.46863764675919],[9.253892538925385,41.463571914949554],[9.228692286922865,41.45006329679049],[9.210692106921073,41.4483747195206],[9.210692106921073,41.441620410441075],[9.221492214922165,41.43486610136155],[9.225092250922529,41.42811179228201],[9.221492214922165,41.419668905932596],[9.210692106921073,41.41291459685307],[9.210692106921073,41.40784886504342],[9.221492214922165,41.41122601958318],[9.239492394923957,41.42304606047236],[9.25029250292505,41.42811179228201],[9.246692466924685,41.41291459685307],[9.239492394923957,41.39602882415424],[9.228692286922865,41.3808316287253],[9.221492214922165,41.37238874237589],[9.207092070920709,41.36563443329635],[9.19269192691928,41.36901158783611],[9.16749167491676,41.38589736053494],[9.153091530915304,41.39096309234459],[9.120691206912085,41.394340246884354],[9.095490954909565,41.40278313323377],[9.106291062910628,41.4298003695519],[9.113491134911357,41.43317752409166],[9.120691206912085,41.43486610136155],[9.106291062910628,41.44499756498084],[9.081090810908108,41.45344045133025],[9.06669066690668,41.461883337679666],[9.081090810908108,41.47539195583873],[9.081090810908108,41.482146264918256],[9.06669066690668,41.478769110378494],[9.037890378903796,41.461883337679666],[9.030690306903068,41.46863764675919],[9.034290342903432,41.47032622402908],[9.034290342903432,41.47201480129897],[9.037890378903796,41.47201480129897],[9.037890378903796,41.47539195583873],[9.027090270902704,41.47370337856884],[9.023490234902368,41.47201480129897],[9.019890198902004,41.46863764675919],[9.012690126901276,41.47539195583873],[9.001890018900184,41.483834842188145],[8.976689766897664,41.488900573997796],[8.951489514895144,41.49227772853756],[8.937089370893716,41.488900573997796],[8.926289262892624,41.49565488307732],[8.91548915489156,41.50240919215685],[8.908289082890832,41.5074749239665],[8.883088830888312,41.51085207850626],[8.879488794887948,41.51422923304604],[8.879488794887948,41.519294964855675],[8.872288722887248,41.52267211939544],[8.86508865088652,41.526049273935215],[8.857888578885792,41.526049273935215],[8.847088470884728,41.526049273935215],[8.839888398884,41.53111500574485],[8.854288542885428,41.53786931482439],[8.854288542885428,41.54462362390392],[8.839888398884,41.54800077844368],[8.832688326883272,41.551377932983456],[8.825488254882544,41.54968935571357],[8.811088110881116,41.55306651025333],[8.796687966879688,41.55644366479309],[8.793087930879324,41.561509396602744],[8.796687966879688,41.58008374657146],[8.793087930879324,41.586838055650986],[8.778687786877867,41.59190378746064],[8.785887858878596,41.6054124056197],[8.793087930879324,41.62567533285829],[8.800288002880023,41.639183951017344],[8.818288182881844,41.63242964193782],[8.872288722887248,41.651003991906535],[8.879488794887948,41.65775830098606],[8.886688866888676,41.671266919145125],[8.897488974889768,41.67802122822465],[8.911889118891196,41.6830869600343],[8.922689226892288,41.69490700092348],[8.897488974889768,41.69490700092348],[8.836288362883636,41.708415619082544],[8.811088110881116,41.71010419635242],[8.78948789487896,41.71179277362231],[8.775087750877503,41.72192423724161],[8.785887858878596,41.7421871644802],[8.760687606876076,41.7421871644802],[8.717487174871764,41.73036712359102],[8.695886958869607,41.728678546321134],[8.699486994869943,41.733744278130786],[8.703087030870307,41.7421871644802],[8.68868688686888,41.7421871644802],[8.677886778867787,41.743875741750074],[8.667086670866723,41.74725289628984],[8.656286562865631,41.75063005082961],[8.667086670866723,41.75569578263925],[8.695886958869607,41.75738435990914],[8.710287102871035,41.764138668988664],[8.717487174871764,41.77258155533808],[8.721087210872128,41.78271301895738],[8.721087210872128,41.791155905306795],[8.710287102871035,41.796221637116446],[8.710287102871035,41.80466452346586],[8.731887318873191,41.80466452346586],[8.753487534875347,41.8097302552755],[8.785887858878596,41.82492745070445],[8.778687786877867,41.833370337053864],[8.771487714877168,41.84012464613339],[8.760687606876076,41.84350180067315],[8.749887498874983,41.84519037794304],[8.782287822878232,41.853633264292455],[8.793087930879324,41.858698996102106],[8.78948789487896,41.86207615064187],[8.785887858878596,41.868830459721394],[8.782287822878232,41.873896191531045],[8.778687786877867,41.87220761426116],[8.78948789487896,41.88740480969011],[8.793087930879324,41.88740480969011],[8.793087930879324,41.89247054149976],[8.803888038880388,41.900913427849176],[8.803888038880388,41.9076677369287],[8.793087930879324,41.91442204600823],[8.785887858878596,41.92286493235764],[8.782287822878232,41.92961924143718],[8.775087750877503,41.93299639597694],[8.76428764287644,41.93468497324682],[8.742687426874284,41.93299639597694],[8.710287102871035,41.91948777781788],[8.68868688686888,41.91442204600823],[8.649086490864903,41.911044891468464],[8.631086310863111,41.909356314198575],[8.61308613086132,41.900913427849176],[8.605886058860591,41.91442204600823],[8.620286202862047,41.931307818707054],[8.61308613086132,41.94481643686612],[8.587885878858799,41.96845651864447],[8.634686346863475,41.971833673184236],[8.656286562865631,41.978587982263775],[8.667086670866723,41.99716233223248],[8.656286562865631,42.00222806404213],[8.66348663486636,42.014048104931305],[8.685086850868515,42.02586814582048],[8.706687066870671,42.03093387763013],[8.710287102871035,42.03262245490002],[8.73908739087392,42.0444424957892],[8.742687426874284,42.0444424957892],[8.746287462874648,42.056262536678375],[8.73908739087392,42.063016845757915],[8.724687246872463,42.071459732107314],[8.706687066870671,42.10016554569533],[8.699486994869943,42.10860843204475],[8.68868688686888,42.11198558658451],[8.659886598865995,42.10523127750497],[8.656286562865631,42.10860843204475],[8.649086490864903,42.1221170502038],[8.631086310863111,42.13055993655321],[8.605886058860591,42.133937091092974],[8.587885878858799,42.133937091092974],[8.591485914859163,42.14237997744239],[8.595085950859527,42.145757131982165],[8.587885878858799,42.1508228637918],[8.577085770857707,42.15420001833158],[8.569885698857007,42.15420001833158],[8.559085590855915,42.15420001833158],[8.569885698857007,42.15588859560145],[8.577085770857707,42.159265750141216],[8.595085950859527,42.16770863649063],[8.595085950859527,42.17446294557017],[8.566285662856643,42.17446294557017],[8.566285662856643,42.181217254649695],[8.577085770857707,42.18459440918946],[8.580685806858071,42.19472587280876],[8.577085770857707,42.20485733642805],[8.566285662856643,42.208234490967826]]],[[[12.04032040320405,54.89282694232665],[12.058320583205841,54.894515519596524],[12.079920799207997,54.8978926741363],[12.097920979209789,54.8978926741363],[12.112321123211245,54.88944978778687],[12.14112141121413,54.864121128738645],[12.169921699216985,54.84385820150004],[12.169921699216985,54.83879246969042],[12.079920799207997,54.796578037943334],[12.06552065520657,54.78644657432403],[12.029520295202957,54.744232142576976],[12.022320223202229,54.73578925622755],[12.011520115201165,54.730723524417925],[11.986319863198645,54.712149174449195],[11.975519755197553,54.708772019909446],[11.961119611196125,54.69357482448049],[11.961119611196125,54.663180433622614],[11.971919719197189,54.605768806446605],[11.968319683196825,54.57030868377905],[11.950319503195033,54.56862010650917],[11.928719287192877,54.583817301938126],[11.925119251192513,54.59732592009718],[11.910719107191085,54.60914596098635],[11.878318783187837,54.646294660923786],[11.867518675186773,54.65980327908284],[11.871118711187108,54.68006620632144],[11.8819188191882,54.69695197902027],[11.910719107191085,54.7222806380685],[11.889118891188929,54.72396921533837],[11.874718747187472,54.72903494714802],[11.871118711187108,54.739166410767325],[11.8819188191882,54.75605218346615],[11.871118711187108,54.761117915275804],[11.863918639186409,54.766183647085455],[11.85671856718568,54.77631511070476],[11.809918099181004,54.80502092429276],[11.80631806318064,54.81008665610241],[11.802718027180276,54.81852954245181],[11.799117991179912,54.82528385153134],[11.799117991179912,54.832038160610864],[11.799117991179912,54.837103892420515],[11.791917919179213,54.84385820150004],[11.777517775177756,54.855678242389246],[11.759517595175964,54.86243255146877],[11.748717487174872,54.872564015088045],[11.745117451174508,54.89282694232665],[11.745117451174508,54.91140129229535],[11.741517415174172,54.92490991045443],[11.73071730717308,54.935041374073705],[11.712717127171288,54.94010710588336],[11.712717127171288,54.948549992232785],[11.748717487174872,54.96543576493161],[11.759517595175964,54.96881291947136],[11.773917739177392,54.96543576493161],[11.791917919179213,54.95192714677253],[11.802718027180276,54.948549992232785],[11.813518135181369,54.95192714677253],[11.838718387183889,54.96543576493161],[11.842318423184253,54.96543576493161],[11.849518495184952,54.95868145585209],[11.863918639186409,54.96374718766174],[11.8819188191882,54.975567228550915],[11.8819188191882,54.98232153763044],[11.871118711187108,54.989075846709966],[11.853118531185316,55.019470237567845],[11.842318423184253,55.02960170118715],[11.773917739177392,55.04817605115585],[11.7559175591756,55.04986462842575],[11.748717487174872,55.0532417829655],[11.737917379173808,55.06168466931493],[11.727117271172716,55.06506182385468],[11.665916659166612,55.06675040112458],[11.647916479164792,55.07181613293423],[11.629916299163,55.081947596553505],[11.615516155161572,55.09207906017281],[11.669516695166948,55.08532475109328],[11.773917739177392,55.05661893750528],[11.827918279182796,55.04986462842575],[11.80631806318064,55.073504710204105],[11.745117451174508,55.100521946522235],[11.716317163171652,55.12585060557046],[11.802718027180276,55.13429349191989],[11.809918099181004,55.139359223729514],[11.80631806318064,55.14611353280907],[11.784717847178484,55.157933573698244],[11.727117271172716,55.15455641915847],[11.712717127171288,55.16806503731752],[11.727117271172716,55.17650792366695],[11.734317343173444,55.18832796455612],[11.734317343173444,55.2001480054453],[11.716317163171652,55.20859089179473],[11.694716947169468,55.20859089179473],[11.676716767167676,55.2001480054453],[11.662316623166248,55.18832796455612],[11.647916479164792,55.1815736554766],[11.637116371163728,55.1815736554766],[11.601116011160116,55.1917051190959],[11.525515255152555,55.201836582715174],[11.507515075150764,55.20859089179473],[11.493114931149307,55.20352515998508],[11.424714247142475,55.22209950995378],[11.410314103141047,55.220410932683905],[11.381513815138163,55.211968046334476],[11.367113671136707,55.20859089179473],[11.298712987129875,55.20859089179473],[11.298712987129875,55.201836582715174],[11.32031320313203,55.19508227363565],[11.284312843128447,55.19508227363565],[11.262712627126291,55.2001480054453],[11.24471244712447,55.21534520087425],[11.23751237512377,55.242362437192384],[11.251912519125199,55.23560812811283],[11.266312663126627,55.23560812811283],[11.280712807128083,55.242362437192384],[11.287912879128811,55.255871055351435],[11.277112771127719,55.25080532354178],[11.266312663126627,55.24911674627191],[11.241112411124107,55.24911674627191],[11.23751237512377,55.25418247808156],[11.241112411124107,55.277822559859914],[11.233912339123407,55.28457686893944],[11.215912159121586,55.28964260074909],[11.16191161911621,55.318348414337095],[11.151111511115118,55.3284798779564],[11.16191161911621,55.33016845522627],[11.176311763117639,55.331857032496146],[11.18711187111873,55.33523418703592],[11.190711907119066,55.345365650655225],[11.183511835118367,55.350431382464876],[11.16911169111691,55.35211995973475],[11.151111511115118,55.353808537004625],[11.14391143911439,55.35211995973475],[11.13671136711369,55.3470542279251],[11.129511295112962,55.33861134157567],[11.122311223112234,55.331857032496146],[11.107911079110806,55.331857032496146],[11.100711007110078,55.3369227643058],[11.08631086310865,55.358874268814276],[11.08631086310865,55.3656285778938],[11.115111151111506,55.36394000062393],[11.129511295112962,55.3656285778938],[11.140311403114026,55.36900573243358],[11.147511475114754,55.375760041513104],[11.158311583115847,55.380825773322755],[11.172711727117274,55.385891505132406],[11.183511835118367,55.385891505132406],[11.205112051120523,55.39264581421193],[11.215912159121586,55.40446585510111],[11.21231212312125,55.416285895990285],[11.201512015120159,55.421351627799936],[11.205112051120523,55.43148309141924],[11.197911979119795,55.45343459592772],[11.176311763117639,55.48889471859525],[11.165511655116546,55.5024033367543],[11.151111511115118,55.51084622310373],[11.13671136711369,55.51591195491338],[11.115111151111506,55.51760053218325],[11.097110971109714,55.509157645833824],[11.08631086310865,55.50746906856395],[11.079110791107922,55.5125348003736],[11.082710827108286,55.52604341853265],[11.089910899108986,55.53448630488208],[11.097110971109714,55.536174882151954],[11.11151111511117,55.53786345942183],[11.13671136711369,55.54292919123148],[11.147511475114754,55.55812638666043],[11.14391143911439,55.576700736629135],[11.133111331113327,55.595275086597866],[11.08631086310865,55.62735805472562],[11.039510395103946,55.64424382742445],[10.931509315093166,55.6594410228534],[10.931509315093166,55.6678839092028],[11.08631086310865,55.6594410228534],[11.071910719107194,55.67632679555223],[11.007110071100726,55.69152399098118],[10.98550985509857,55.701655454600456],[10.974709747097478,55.710098340949884],[10.96750967509675,55.71854122729928],[10.96030960309605,55.723606959108935],[10.94230942309423,55.728672690918586],[10.89190891908919,55.73204984545836],[10.873908739087398,55.737115577268014],[10.873908739087398,55.74218130907764],[11.032310323103246,55.728672690918586],[11.064710647106466,55.73204984545836],[11.129511295112962,55.745558463617414],[11.16191161911621,55.74893561815719],[11.16191161911621,55.74218130907764],[11.151111511115118,55.74386988634754],[11.140311403114026,55.74386988634754],[11.129511295112962,55.74049273180776],[11.122311223112234,55.737115577268014],[11.13671136711369,55.71854122729928],[11.16191161911621,55.70503260914023],[11.19431194311943,55.69996687733058],[11.21951219512195,55.70840976367998],[11.176311763117639,55.728672690918586],[11.190711907119066,55.737115577268014],[11.197911979119795,55.73036126818846],[11.215912159121586,55.728672690918586],[11.251912519125199,55.728672690918586],[11.26991269912699,55.73204984545836],[11.302313023130239,55.74724704088729],[11.338313383133851,55.750624195427065],[11.352713527135279,55.755689927236716],[11.363513635136371,55.76582139085602],[11.367113671136707,55.77933000901507],[11.370713707137071,55.78777289536447],[11.374313743137435,55.80128151352355],[11.374313743137435,55.808035822603074],[11.370713707137071,55.816478708952474],[11.356313563135643,55.82998732711155],[11.349113491134915,55.83843021346095],[11.374313743137435,55.82829874984168],[11.399513995139955,55.826610172571776],[11.421114211142111,55.83167590438143],[11.442714427144267,55.84518452254051],[11.47871478714788,55.84180736800073],[11.5039150391504,55.86882460431886],[11.511115111151128,55.90766188152617],[11.47871478714788,55.941433426923794],[11.449914499144995,55.94818773600335],[11.385113851138527,55.9515648905431],[11.305913059130603,55.968450663241924],[11.280712807128083,55.97858212686123],[11.273512735127355,55.99715647682993],[11.399513995139955,55.9616963541624],[11.42831428314284,55.965073508702176],[11.57951579515796,55.9515648905431],[11.601116011160116,55.941433426923794],[11.640716407164092,55.9431220041937],[11.712717127171288,55.95494204508287],[11.748717487174872,55.968450663241924],[11.766717667176692,55.97013924051183],[11.78111781117812,55.9616963541624],[11.773917739177392,55.9515648905431],[11.748717487174872,55.932990540574394],[11.737917379173808,55.92117049968522],[11.748717487174872,55.911039036065915],[11.745117451174508,55.90428472698639],[11.727117271172716,55.902596149716516],[11.712717127171288,55.90766188152617],[11.712717127171288,55.911039036065915],[11.716317163171652,55.92117049968522],[11.687516875168768,55.91948192241534],[11.673116731167312,55.91610476787557],[11.662316623166248,55.90766188152617],[11.712717127171288,55.85869314069956],[11.73071730717308,55.82998732711155],[11.716317163171652,55.81141297714285],[11.701917019170196,55.80972439987295],[11.669516695166948,55.8147901316826],[11.65511655116552,55.81141297714285],[11.637116371163728,55.7962157817139],[11.626316263162636,55.791150049904246],[11.608316083160844,55.791150049904246],[11.608316083160844,55.782707163554846],[11.622716227162272,55.77933000901507],[11.673116731167312,55.782707163554846],[11.687516875168768,55.786084318094595],[11.701917019170196,55.79283862717412],[11.719917199171988,55.79790435898377],[11.737917379173808,55.79790435898377],[11.745117451174508,55.78946147263437],[11.7559175591756,55.772575699935544],[11.763117631176328,55.75737850450659],[11.763117631176328,55.74893561815719],[11.683916839168404,55.74049273180776],[11.665916659166612,55.737115577268014],[11.658716587165884,55.73036126818846],[11.669516695166948,55.723606959108935],[11.683916839168404,55.72191838183906],[11.73071730717308,55.723606959108935],[11.737917379173808,55.72529553637881],[11.745117451174508,55.73036126818846],[11.763117631176328,55.72191838183906],[11.788317883178848,55.701655454600456],[11.795517955179548,55.688146836441405],[11.795517955179548,55.68308110463175],[11.788317883178848,55.67632679555223],[11.78111781117812,55.6594410228534],[11.799117991179912,55.6695724864727],[11.809918099181004,55.67970395009198],[11.853118531185316,55.73036126818846],[11.853118531185316,55.73204984545836],[11.85671856718568,55.73204984545836],[11.853118531185316,55.74049273180776],[11.842318423184253,55.75231277269694],[11.842318423184253,55.755689927236716],[11.845918459184588,55.76750996812589],[11.853118531185316,55.782707163554846],[11.867518675186773,55.8046586680633],[11.885518855188565,55.813101554412725],[11.917919179191813,55.81985586349225],[11.935919359193605,55.8249215953019],[11.953919539195397,55.853627408889906],[11.93231932319324,55.88571037701769],[11.910719107191085,55.91610476787557],[11.917919179191813,55.93467911784427],[11.935919359193605,55.932990540574394],[11.968319683196825,55.91272761333579],[11.989919899199009,55.90766188152617],[11.997119971199709,55.902596149716516],[11.997119971199709,55.89246468609721],[11.993519935199345,55.88233322247791],[11.993519935199345,55.87389033612851],[11.997119971199709,55.86038171796943],[12.000720007200073,55.85700456342968],[12.004320043200437,55.853627408889906],[12.011520115201165,55.84518452254051],[12.029520295202957,55.816478708952474],[12.047520475204749,55.77595285447529],[12.051120511205113,55.737115577268014],[12.025920259202593,55.715164072759535],[11.989919899199009,55.723606959108935],[11.971919719197189,55.72191838183906],[11.964719647196489,55.70503260914023],[11.95751957519576,55.693212568251056],[11.921519215192149,55.674638218282354],[11.910719107191085,55.6594410228534],[11.928719287192877,55.657752445583526],[11.95751957519576,55.66450675466305],[11.98271982719828,55.67970395009198],[11.986319863198645,55.69490114552093],[12.000720007200073,55.69827830006071],[12.018720187201865,55.69490114552093],[12.033120331203321,55.68645825917153],[12.04032040320405,55.674638218282354],[12.007920079200801,55.67970395009198],[12.004320043200437,55.6780153728221],[12.011520115201165,55.6695724864727],[12.025920259202593,55.66281817739315],[12.061920619206205,55.65437529104375],[12.069120691206905,55.674638218282354],[12.09072090720909,55.70672118641011],[12.094320943209425,55.728672690918586],[12.054720547205477,55.83843021346095],[12.054720547205477,55.87389033612851],[12.051120511205113,55.88739895428756],[12.025920259202593,55.941433426923794],[12.011520115201165,55.95494204508287],[11.993519935199345,55.960007776892525],[11.971919719197189,55.960007776892525],[11.892718927189293,55.9431220041937],[11.863918639186409,55.93974484965392],[11.849518495184952,55.94818773600335],[11.863918639186409,55.973516395051576],[11.917919179191813,55.99715647682993],[12.011520115201165,56.030928022227585],[12.16632166321665,56.10353684483255],[12.245522455224545,56.128865503880775],[12.328323283232834,56.1271769266109],[12.414724147241486,56.098471113022896],[12.486724867248682,56.098471113022896],[12.504725047250474,56.093405381213245],[12.540725407254087,56.07483103124454],[12.56952569525697,56.06807672216502],[12.623526235262347,56.044436640386664],[12.609126091260919,56.027550867687836],[12.565925659256607,55.99715647682993],[12.55152551525515,55.9802707041311],[12.52632526325263,55.93974484965392],[12.511925119251202,55.92792480876474],[12.511925119251202,55.92117049968522],[12.540725407254087,55.897530417906864],[12.555125551255514,55.88233322247791],[12.562325623256243,55.870513181588734],[12.565925659256607,55.85193883162003],[12.57672576725767,55.82998732711155],[12.591125911259127,55.80972439987295],[12.60192601926019,55.79790435898377],[12.598325983259826,55.78777289536447],[12.59472594725949,55.77426427720542],[12.59472594725949,55.75231277269694],[12.587525875258763,55.73542699999811],[12.587525875258763,55.728672690918586],[12.587525875258763,55.723606959108935],[12.591125911259127,55.71854122729928],[12.60192601926019,55.70840976367998],[12.580325803258035,55.693212568251056],[12.540725407254087,55.6493095592341],[12.504725047250474,55.634112363805144],[12.497524975249746,55.62229232291597],[12.486724867248682,55.61047228202679],[12.465124651246526,55.60540655021714],[12.447124471244706,55.60878370475692],[12.436324363243642,55.61384943656657],[12.421924219242186,55.61891516837622],[12.403924039240394,55.61891516837622],[12.331923319233198,55.595275086597866],[12.310323103231042,55.58345504570869],[12.24912249122491,55.54630634577126],[12.19872198721987,55.48720614132537],[12.22392223922239,55.43486024595899],[12.27432274322743,55.40953158691076],[12.29232292322925,55.40615443237098],[12.353523535235354,55.40446585510111],[12.36792367923681,55.39940012329146],[12.411124111241122,55.37913719605288],[12.436324363243642,55.36394000062393],[12.44352443524437,55.34874280519497],[12.447124471244706,55.331857032496146],[12.45072450724507,55.31665983706722],[12.465124651246526,55.28964260074909],[12.45072450724507,55.27951113712979],[12.44352443524437,55.27613398259001],[12.39312393123933,55.255871055351435],[12.184321843218441,55.22716524176343],[12.16632166321665,55.21703377814413],[12.14112141121413,55.20859089179473],[12.119521195211945,55.1917051190959],[12.108721087210881,55.171442191857295],[12.11592115921161,55.15455641915847],[12.108721087210881,55.144424955539165],[12.097920979209789,55.14104780099942],[12.09072090720909,55.14273637826929],[12.079920799207997,55.14611353280907],[12.087120871208725,55.16806503731752],[12.076320763207633,55.1815736554766],[12.054720547205477,55.184950810016346],[12.036720367203685,55.17819650093682],[12.029520295202957,55.17313076912717],[12.018720187201865,55.171442191857295],[12.015120151201529,55.16806503731752],[12.011520115201165,55.157933573698244],[12.018720187201865,55.15286784188859],[12.047520475204749,55.139359223729514],[12.130321303213037,55.135982069189765],[12.169921699216985,55.12922776011024],[12.177121771217713,55.10558767833186],[12.169921699216985,55.095456214712584],[12.16632166321665,55.09207906017281],[12.159121591215921,55.08870190563306],[12.14832148321483,55.08532475109328],[12.126721267212673,55.078570442013756],[12.119521195211945,55.073504710204105],[12.126721267212673,55.07181613293423],[12.162721627216285,55.02284739210762],[12.162721627216285,55.00427304213892],[12.14832148321483,54.99414157851962],[12.126721267212673,54.99076442397984],[12.105121051210517,54.989075846709966],[12.09072090720909,54.98569869217019],[12.054720547205477,54.970501496741264],[12.033120331203321,54.96881291947136],[11.997119971199709,54.97725580582079],[11.943119431194333,55.005961619408794],[11.910719107191085,55.00933877394857],[11.910719107191085,55.00427304213892],[11.914319143191449,55.00427304213892],[11.917919179191813,55.00258446486902],[11.910719107191085,55.00089588759914],[11.90711907119072,54.99920731032927],[11.903519035190357,54.99583015578949],[11.896318963189628,54.99583015578949],[11.899918999189993,54.975567228550915],[11.892718927189293,54.96543576493161],[11.885518855188565,54.95530430131231],[11.8819188191882,54.94010710588336],[11.889118891188929,54.92997564226408],[11.903519035190357,54.92322133318453],[11.917919179191813,54.921532755914654],[11.93231932319324,54.92828706499418],[11.928719287192877,54.93166421953396],[11.925119251192513,54.94010710588336],[11.93231932319324,54.94179568315326],[11.95751957519576,54.948549992232785],[11.964719647196489,54.94179568315326],[11.979119791197917,54.92490991045443],[11.98271982719828,54.91984417864478],[11.989919899199009,54.916467024105],[12.022320223202229,54.8978926741363],[12.04032040320405,54.89282694232665]]],[[[119.2025920259203,-8.611187023421877],[119.19899198991993,-8.612875600691765],[119.1917919179192,-8.616252755231528],[119.18819188191884,-8.617941332501402],[119.19539195391957,-8.626384218850816],[119.18819188191884,-8.631449950660468],[119.18099180991811,-8.636515682470119],[119.17379173791738,-8.644958568819533],[119.17379173791738,-8.660155764248472],[119.17739177391775,-8.673664382407537],[119.18099180991811,-8.688861577836477],[119.18819188191884,-8.700681618725653],[119.18099180991811,-8.70405877326543],[119.17739177391775,-8.707435927805193],[119.17739177391775,-8.712501659614844],[119.18099180991811,-8.720944545964258],[119.16299162991629,-8.731076009583546],[119.15219152191526,-8.742896050472723],[119.1377913779138,-8.746273205012486],[119.11979119791198,-8.734453164123309],[119.11619116191162,-8.747961782282374],[119.10899108991089,-8.753027514092025],[119.10179101791022,-8.751338936822137],[119.09099090990912,-8.744584627742611],[119.07659076590767,-8.73951889593296],[119.06579065790658,-8.741207473202849],[119.05139051390518,-8.746273205012486],[118.99018990189904,-8.7547160913619],[118.97218972189722,-8.751338936822137],[118.94698946989473,-8.731076009583546],[118.92538925389255,-8.698993041455779],[118.91458914589145,-8.69223873237624],[118.90018900189006,-8.688861577836477],[118.89298892988933,-8.693927309646128],[118.88938889388896,-8.70405877326543],[118.88218882188823,-8.714190236884718],[118.85698856988569,-8.720944545964258],[118.81378813788137,-8.710813082344956],[118.79218792187925,-8.720944545964258],[118.76338763387633,-8.710813082344956],[118.74538745387457,-8.717567391424481],[118.72738727387275,-8.732764586853435],[118.7021870218702,-8.747961782282374],[118.7129871298713,-8.7547160913619],[118.72738727387275,-8.769913286790853],[118.73458734587348,-8.774979018600504],[118.74538745387457,-8.776667595870379],[118.82458824588247,-8.776667595870379],[118.90738907389073,-8.790176214029444],[118.92538925389255,-8.79693052310897],[118.93618936189364,-8.805373409458383],[118.93618936189364,-8.812127718537923],[118.94698946989473,-8.825636336696974],[118.9505895058951,-8.834079223046388],[118.94338943389437,-8.840833532125927],[118.93258932589328,-8.845899263935578],[118.90738907389073,-8.850964995745215],[118.89658896588969,-8.849276418475341],[118.87858878588787,-8.845899263935578],[118.86778867788678,-8.84421068666569],[118.85338853388532,-8.837456377586165],[118.84618846188465,-8.837456377586165],[118.84618846188465,-8.839144954856039],[118.84258842588429,-8.84421068666569],[118.83538835388356,-8.847587841205453],[118.82818828188283,-8.850964995745215],[118.81738817388174,-8.84421068666569],[118.77778777787779,-8.812127718537923],[118.7561875618756,-8.80199625491862],[118.7129871298713,-8.800307677648732],[118.66978669786698,-8.807061986728272],[118.46458464584646,-8.86447361390428],[118.41418414184142,-8.854342150284978],[118.38898388983893,-8.795241945839095],[118.39258392583929,-8.769913286790853],[118.40338403384033,-8.749650359552263],[118.42138421384215,-8.731076009583546],[118.4357843578436,-8.705747350535304],[118.43938439384397,-8.690550155106365],[118.43938439384397,-8.675352959677426],[118.43938439384397,-8.660155764248472],[118.4357843578436,-8.644958568819533],[118.42858428584287,-8.62976137339058],[118.42138421384215,-8.616252755231528],[118.41418414184142,-8.601055559802575],[118.41418414184142,-8.582481209833873],[118.39978399783996,-8.595989827992938],[118.39618396183965,-8.617941332501402],[118.39978399783996,-8.66184434151836],[118.39258392583929,-8.675352959677426],[118.37458374583747,-8.680418691487063],[118.35658356583565,-8.685484423296714],[118.33858338583389,-8.69223873237624],[118.31338313383134,-8.727698855043784],[118.29898298982988,-8.758093245901676],[118.29538295382957,-8.764847554981202],[118.28818288182885,-8.769913286790853],[118.27378273782739,-8.771601864060727],[118.15858158581585,-8.867850768444043],[118.14058140581409,-8.872916500253694],[118.1189811898119,-8.862785036634392],[118.09738097380978,-8.850964995745215],[118.07938079380796,-8.84421068666569],[118.06858068580686,-8.845899263935578],[118.03618036180364,-8.857719304824755],[118.03978039780401,-8.856030727554867],[118.03618036180364,-8.852653573015104],[118.02898028980292,-8.850964995745215],[118.02538025380255,-8.850964995745215],[118.01818018180182,-8.862785036634392],[118.00738007380073,-8.867850768444043],[118.0001800018,-8.881359386603108],[117.89217892178925,-8.937082436509243],[117.88137881378816,-8.92863955015983],[117.87417874178743,-8.92863955015983],[117.8669786697867,-8.930328127429703],[117.85617856178561,-8.933705281969466],[117.85257852578525,-8.92863955015983],[117.84537845378458,-8.910065200191113],[117.83817838178385,-8.904999468381462],[117.82377823778239,-8.904999468381462],[117.81657816578166,-8.911753777461001],[117.8129781297813,-8.918508086540527],[117.80577805778057,-8.92695097288994],[117.79497794977954,-8.930328127429703],[117.78777787777881,-8.932016704699592],[117.77337773377735,-8.933705281969466],[117.76617766177662,-8.932016704699592],[117.75537755377553,-8.92695097288994],[117.7481774817748,-8.920196663810415],[117.73737737377377,-8.910065200191113],[117.72657726577268,-8.911753777461001],[117.71217712177122,-8.916819509270638],[117.70857708577086,-8.920196663810415],[117.66897668976691,-8.937082436509243],[117.55737557375573,-9.001248372764778],[117.51777517775179,-9.018134145463605],[117.47457474574747,-9.029954186352782],[117.38817388173885,-9.05359426813115],[117.33417334173345,-9.058659999940787],[117.30177301773017,-9.04683995905161],[117.27297272972731,-9.040085649972085],[117.22617226172264,-9.023199877273257],[117.19377193771936,-9.023199877273257],[117.17217172171723,-9.03164276362267],[117.15417154171541,-9.060348577210675],[117.13977139771401,-9.077234349909503],[117.12537125371256,-9.090742968068568],[117.07137071370715,-9.102563008957745],[117.01017010170102,-9.107628740767396],[116.9921699216992,-9.085677236258917],[116.97056970569707,-9.072168618099852],[116.94896948969489,-9.060348577210675],[116.92736927369276,-9.063725731750438],[116.90576905769058,-9.063725731750438],[116.85176851768517,-9.045151381781736],[116.82656826568268,-9.043462804511847],[116.8049680496805,-9.036708495432322],[116.77256772567728,-9.013068413653954],[116.76176761767618,-9.014756990923843],[116.75816758167582,-9.00462552730454],[116.74376743767436,-8.982674022796076],[116.72936729367296,-8.96241109555747],[116.73296732967333,-8.947213900128531],[116.74736747367473,-8.923573818350178],[116.740167401674,-8.904999468381462],[116.7365673656737,-8.883047963872997],[116.7365673656737,-8.872916500253694],[116.75816758167582,-8.849276418475341],[116.77616776167764,-8.825636336696974],[116.81576815768159,-8.818882027617448],[116.82296822968232,-8.798619100378858],[116.82296822968232,-8.786799059489681],[116.81576815768159,-8.780044750410141],[116.80856808568086,-8.774979018600504],[116.8049680496805,-8.771601864060727],[116.80136801368013,-8.764847554981202],[116.79776797767977,-8.7547160913619],[116.79056790567904,-8.744584627742611],[116.77256772567728,-8.747961782282374],[116.76536765367655,-8.737830318663072],[116.77256772567728,-8.705747350535304],[116.77256772567728,-8.680418691487063],[116.74736747367473,-8.666910073328012],[116.79056790567904,-8.584169787103747],[116.83376833768341,-8.574038323484459],[116.84096840968408,-8.555463973515742],[116.83736837368377,-8.508183809959036],[116.8589685896859,-8.523381005387975],[116.86616866168663,-8.526758159927738],[116.88056880568809,-8.528446737197626],[116.89136891368912,-8.526758159927738],[116.98496984969853,-8.496363769069859],[117.0317703177032,-8.46765795548184],[117.08937089370897,-8.425443523734785],[117.12537125371256,-8.40518059649618],[117.11817118171183,-8.383229091987715],[117.13977139771401,-8.371409051098539],[117.17217172171723,-8.364654742018999],[117.19377193771936,-8.357900432939473],[117.21537215372155,-8.38491766925759],[117.229772297723,-8.388294823797366],[117.26217262172622,-8.38998340106724],[117.27297272972731,-8.395049132876892],[117.28737287372877,-8.40518059649618],[117.31617316173163,-8.420377791925134],[117.35217352173521,-8.44739502824325],[117.43497434974353,-8.481166573640905],[117.4277742777428,-8.465969378211966],[117.43137431374316,-8.452460760052901],[117.43857438574389,-8.442329296433613],[117.44217442174426,-8.428820678274548],[117.44217442174426,-8.410246328305831],[117.44577445774456,-8.408557751035957],[117.45657456574565,-8.413623482845594],[117.46737467374675,-8.418689214655245],[117.52137521375215,-8.418689214655245],[117.54297542975434,-8.413623482845594],[117.55737557375573,-8.40518059649618],[117.56817568175683,-8.422066369195008],[117.57537575375756,-8.486232305450557],[117.59337593375938,-8.514938119038561],[117.59697596975968,-8.49467519179997],[117.60057600576005,-8.445706450973375],[117.61137611376114,-8.43219783281431],[117.62217622176223,-8.438952141893836],[117.62937629376296,-8.457526491862552],[117.63657636576369,-8.525069582657864],[117.64017640176405,-8.540266778086803],[117.64737647376472,-8.55208681897598],[117.69777697776976,-8.577415478024221],[117.71217712177122,-8.574038323484459],[117.71937719377195,-8.568972591674807],[117.73017730177304,-8.565595437135045],[117.7445774457745,-8.568972591674807],[117.74097740977413,-8.575726900754333],[117.73737737377377,-8.582481209833873],[117.7481774817748,-8.585858364373635],[117.75537755377553,-8.589235518913398],[117.76257762577626,-8.595989827992938],[117.77337773377735,-8.604432714342352],[117.76977769777699,-8.607809868882114],[117.76617766177662,-8.61456417796164],[117.76617766177662,-8.62131848704118],[117.77337773377735,-8.624695641580942],[117.78057780577808,-8.624695641580942],[117.78777787777881,-8.628072796120705],[117.78777787777881,-8.631449950660468],[117.79137791377917,-8.638204259739993],[117.78057780577808,-8.638204259739993],[117.76977769777699,-8.638204259739993],[117.76257762577626,-8.64158141427977],[117.7589775897759,-8.644958568819533],[117.76617766177662,-8.660155764248472],[117.77697776977772,-8.695615886916016],[117.78777787777881,-8.710813082344956],[117.80577805778057,-8.71925596869437],[117.82377823778239,-8.71925596869437],[117.88497884978852,-8.698993041455779],[117.89217892178925,-8.700681618725653],[117.89937899378992,-8.707435927805193],[117.90297902979029,-8.715878814154607],[117.90297902979029,-8.72432170050402],[117.90297902979029,-8.727698855043784],[117.91737917379174,-8.727698855043784],[117.93537935379356,-8.729387432313672],[117.95337953379533,-8.736141741393197],[117.96777967779678,-8.747961782282374],[117.98937989379897,-8.732764586853435],[118.02898028980292,-8.688861577836477],[118.04698046980474,-8.678730114217188],[118.04698046980474,-8.675352959677426],[118.05418054180541,-8.668598650597886],[118.06138061380614,-8.663532918788235],[118.0649806498065,-8.66184434151836],[118.06858068580686,-8.65677860970871],[118.07578075780759,-8.653401455168947],[118.08298082980832,-8.653401455168947],[118.12258122581227,-8.644958568819533],[118.15858158581585,-8.644958568819533],[118.16578165781658,-8.646647146089407],[118.1837818378184,-8.65677860970871],[118.19098190981913,-8.658467186978598],[118.24498244982453,-8.65677860970871],[118.26658266582666,-8.651712877899058],[118.28098280982812,-8.64158141427977],[118.29178291782921,-8.624695641580942],[118.29178291782921,-8.606121291612226],[118.28458284582848,-8.587546941643524],[118.27018270182703,-8.574038323484459],[118.2521825218252,-8.568972591674807],[118.24858248582484,-8.563906859865156],[118.24138241382417,-8.555463973515742],[118.23418234182344,-8.548709664436217],[118.23058230582308,-8.55208681897598],[118.22698226982271,-8.55884112805552],[118.22338223382235,-8.565595437135045],[118.20898208982089,-8.577415478024221],[118.1945819458195,-8.548709664436217],[118.14778147781476,-8.511560964498798],[118.13338133381336,-8.486232305450557],[118.12618126181263,-8.486232305450557],[118.1189811898119,-8.496363769069859],[118.10458104581045,-8.487920882720445],[118.07578075780759,-8.457526491862552],[118.05778057780577,-8.450772182783027],[118.03618036180364,-8.457526491862552],[118.00378003780037,-8.47441226456138],[117.98937989379897,-8.469346532751729],[117.97137971379715,-8.460903646402315],[117.95337953379533,-8.450772182783027],[117.93897938979393,-8.43219783281431],[117.88137881378816,-8.398426287416655],[117.82377823778239,-8.35452327839971],[117.80937809378094,-8.339326082970757],[117.78777787777881,-8.305554537573101],[117.77337773377735,-8.288668764874288],[117.7445774457745,-8.268405837635683],[117.73017730177304,-8.253208642206744],[117.72297722977231,-8.24476575585733],[117.71217712177122,-8.241388601317567],[117.70497704977049,-8.22956856042839],[117.71217712177122,-8.204239901380149],[117.71937719377195,-8.175534087792144],[117.73017730177304,-8.158648315093316],[117.74097740977413,-8.148516851474014],[117.7481774817748,-8.145139696934251],[117.75537755377553,-8.145139696934251],[117.76257762577626,-8.145139696934251],[117.79137791377917,-8.126565346965535],[117.79497794977954,-8.12487676969566],[117.8129781297813,-8.121499615155898],[117.89577895778962,-8.089416647028116],[117.91737917379174,-8.086039492488354],[117.95697956979569,-8.082662337948591],[117.96417964179642,-8.089416647028116],[117.97137971379715,-8.099548110647419],[117.97857978579788,-8.109679574266721],[117.9857798577986,-8.107990996996833],[117.9965799657997,-8.101236687917307],[118.00378003780037,-8.099548110647419],[118.02538025380255,-8.10461384245707],[118.07218072180723,-8.10461384245707],[118.11538115381154,-8.113056728806484],[118.15138151381512,-8.135008233314949],[118.16938169381694,-8.172156933252381],[118.17298172981731,-8.212682787729563],[118.17658176581767,-8.232945714968153],[118.1837818378184,-8.241388601317567],[118.18738187381877,-8.248142910397092],[118.22338223382235,-8.288668764874288],[118.24498244982453,-8.329194619351469],[118.2521825218252,-8.341014660240646],[118.25938259382593,-8.342703237510534],[118.2629826298263,-8.341014660240646],[118.26658266582666,-8.337637505700883],[118.27018270182703,-8.337637505700883],[118.30258302583024,-8.368031896558762],[118.31338313383134,-8.371409051098539],[118.3277832778328,-8.368031896558762],[118.34578345783461,-8.357900432939473],[118.36378363783638,-8.344391814780408],[118.39258392583929,-8.319063155732167],[118.39978399783996,-8.308931692112878],[118.39978399783996,-8.298800228493576],[118.40698406984069,-8.295423073953813],[118.41778417784178,-8.290357342144162],[118.42858428584287,-8.281914455794748],[118.44298442984433,-8.258274374016395],[118.46458464584646,-8.249831487666981],[118.48618486184864,-8.246454333127218],[118.5041850418504,-8.248142910397092],[118.5149851498515,-8.253208642206744],[118.52938529385295,-8.266717260365809],[118.54018540185405,-8.268405837635683],[118.58338583385836,-8.268405837635683],[118.59058590585909,-8.270094414905572],[118.59778597785981,-8.275160146715223],[118.60138601386012,-8.278537301254985],[118.60498604986049,-8.281914455794748],[118.64098640986413,-8.2869801876044],[118.64818648186485,-8.288668764874288],[118.66258662586625,-8.305554537573101],[118.69498694986953,-8.371409051098539],[118.6877868778688,-8.388294823797366],[118.68418684186844,-8.41193490557572],[118.68058680586807,-8.457526491862552],[118.65538655386553,-8.526758159927738],[118.65538655386553,-8.541955355356691],[118.66618666186662,-8.547021087166328],[118.68418684186844,-8.533512469007277],[118.69498694986953,-8.514938119038561],[118.7021870218702,-8.504806655419273],[118.70578705787057,-8.496363769069859],[118.71658716587166,-8.471035110021617],[118.72738727387275,-8.452460760052901],[118.72738727387275,-8.442329296433613],[118.72018720187202,-8.43219783281431],[118.71658716587166,-8.418689214655245],[118.71658716587166,-8.379851937447953],[118.73098730987311,-8.34945754659006],[118.75258752587524,-8.325817464811706],[118.77778777787779,-8.308931692112878],[118.81378813788137,-8.295423073953813],[118.86058860588605,-8.288668764874288],[118.90738907389073,-8.288668764874288],[118.9505895058951,-8.295423073953813],[118.97218972189722,-8.302177383033339],[118.98658986589868,-8.308931692112878],[118.99738997389977,-8.320751733002055],[119.00459004590044,-8.342703237510534],[119.0081900819008,-8.371409051098539],[119.02259022590226,-8.418689214655245],[119.05139051390518,-8.471035110021617],[119.04419044190445,-8.508183809959036],[119.02979029790299,-8.547021087166328],[119.03699036990372,-8.582481209833873],[119.03699036990372,-8.607809868882114],[119.04059040590408,-8.62976137339058],[119.05139051390518,-8.644958568819533],[119.07659076590767,-8.651712877899058],[119.09099090990912,-8.648335723359295],[119.11259112591125,-8.64158141427977],[119.13059130591307,-8.633138527930356],[119.14139141391416,-8.624695641580942],[119.14139141391416,-8.61456417796164],[119.13419134191344,-8.606121291612226],[119.13419134191344,-8.5993669825327],[119.15579155791556,-8.59430125072305],[119.15939159391593,-8.587546941643524],[119.16299162991629,-8.57910405529411],[119.16299162991629,-8.565595437135045],[119.16659166591666,-8.560529705325393],[119.18099180991811,-8.57234974621457],[119.19539195391957,-8.59430125072305],[119.2025920259203,-8.611187023421877]]],[[[123.02583025830262,-8.288668764874288],[123.02943029430293,-8.297111651223688],[123.02583025830262,-8.320751733002055],[123.01863018630189,-8.33426035116112],[123.00063000630007,-8.341014660240646],[122.9430294302943,-8.344391814780408],[122.92142921429217,-8.34945754659006],[122.90342903429035,-8.362966164749125],[122.89622896228963,-8.388294823797366],[122.90342903429035,-8.42713210100466],[122.90342903429035,-8.44739502824325],[122.89622896228963,-8.460903646402315],[122.8782287822878,-8.462592223672203],[122.85302853028531,-8.45414933732279],[122.83142831428313,-8.444017873703487],[122.8206282062821,-8.435574987354073],[122.81702817028173,-8.42713210100466],[122.809828098281,-8.428820678274548],[122.80262802628027,-8.437263564623962],[122.79902799027991,-8.450772182783027],[122.80262802628027,-8.469346532751729],[122.80262802628027,-8.477789419101143],[122.80622806228064,-8.486232305450557],[122.84942849428495,-8.55208681897598],[122.84942849428495,-8.584169787103747],[122.80622806228064,-8.611187023421877],[122.79542795427955,-8.612875600691765],[122.74862748627487,-8.619629909771291],[122.74142741427414,-8.623007064311054],[122.72702727027269,-8.63482710520023],[122.71982719827201,-8.636515682470119],[122.68742687426874,-8.631449950660468],[122.68022680226801,-8.633138527930356],[122.65502655026552,-8.644958568819533],[122.65142651426515,-8.651712877899058],[122.6370263702637,-8.651712877899058],[122.56502565025653,-8.668598650597886],[122.55422554225544,-8.6770415369473],[122.52542525425253,-8.705747350535304],[122.51462514625149,-8.712501659614844],[122.449824498245,-8.734453164123309],[122.40662406624068,-8.741207473202849],[122.30222302223024,-8.73951889593296],[122.28782287822878,-8.741207473202849],[122.26622266222665,-8.747961782282374],[122.2518225182252,-8.749650359552263],[122.22662226622265,-8.737830318663072],[122.16182161821621,-8.727698855043784],[122.11502115021153,-8.732764586853435],[122.07902079020789,-8.753027514092025],[122.04302043020431,-8.780044750410141],[122.00702007020072,-8.80199625491862],[121.87741877418773,-8.837456377586165],[121.83421834218342,-8.857719304824755],[121.79461794617947,-8.884736541142871],[121.78021780217802,-8.888113695682634],[121.76941769417698,-8.888113695682634],[121.75861758617589,-8.884736541142871],[121.7478174781748,-8.884736541142871],[121.73341733417334,-8.87967080933322],[121.71541715417158,-8.871227922983806],[121.70101701017012,-8.85940788209463],[121.69021690216903,-8.850964995745215],[121.67581675816757,-8.862785036634392],[121.65781657816581,-8.898245159301936],[121.64701647016471,-8.904999468381462],[121.63981639816399,-8.896556582032048],[121.63261632616326,-8.852653573015104],[121.62181621816217,-8.837456377586165],[121.58221582215822,-8.81719345034756],[121.54261542615427,-8.815504873077685],[121.49941499414996,-8.81719345034756],[121.45621456214565,-8.810439141268034],[121.420214202142,-8.798619100378858],[121.39501395013951,-8.793553368569206],[121.3770137701377,-8.798619100378858],[121.36621366213666,-8.820570604887337],[121.36981369813697,-8.842522109395802],[121.3770137701377,-8.86447361390428],[121.37341373413733,-8.884736541142871],[121.34101341013411,-8.918508086540527],[121.2978129781298,-8.918508086540527],[121.21141211412117,-8.89149085022241],[121.1646116461165,-8.894868004762174],[121.12861128611286,-8.908376622921224],[121.06741067410672,-8.940459591049006],[121.04941049410496,-8.943836745588769],[120.99540995409956,-8.940459591049006],[120.96300963009634,-8.930328127429703],[120.95940959409597,-8.925262395620052],[120.93060930609306,-8.92695097288994],[120.92340923409233,-8.92695097288994],[120.90540905409057,-8.913442354730876],[120.86220862208626,-8.869539345713932],[120.85500855008553,-8.854342150284978],[120.8478084780848,-8.82901349123675],[120.83340833408334,-8.81719345034756],[120.81180811808122,-8.815504873077685],[120.7938079380794,-8.8239477594271],[120.77940779407794,-8.837456377586165],[120.77220772207721,-8.852653573015104],[120.76500765007648,-8.866162191174169],[120.74700747007472,-8.871227922983806],[120.72540725407254,-8.867850768444043],[120.71100711007114,-8.85940788209463],[120.70020700207004,-8.850964995745215],[120.68220682206822,-8.84421068666569],[120.67140671406713,-8.84421068666569],[120.65340653406537,-8.845899263935578],[120.64260642606428,-8.84421068666569],[120.62460624606246,-8.825636336696974],[120.61740617406173,-8.8239477594271],[120.59940599405996,-8.80199625491862],[120.59220592205924,-8.795241945839095],[120.58500585005851,-8.791864791299318],[120.57780577805778,-8.790176214029444],[120.55620556205565,-8.788487636759555],[120.53460534605347,-8.791864791299318],[120.49140491404916,-8.80199625491862],[120.46980469804697,-8.80199625491862],[120.43740437404375,-8.79693052310897],[120.42660426604266,-8.795241945839095],[120.41580415804157,-8.79693052310897],[120.40500405004053,-8.800307677648732],[120.39420394203944,-8.80199625491862],[120.37980379803798,-8.795241945839095],[120.32220322203221,-8.830702068506625],[120.2790027900279,-8.82901349123675],[120.24300243002432,-8.8239477594271],[120.2250022500225,-8.812127718537923],[120.18180181801819,-8.776667595870379],[120.16380163801637,-8.768224709520965],[120.1458014580146,-8.768224709520965],[120.13140131401315,-8.771601864060727],[120.09540095400956,-8.788487636759555],[120.05940059400598,-8.800307677648732],[119.97659976599766,-8.813816295807797],[119.9477994779948,-8.832390645776513],[119.94419944199444,-8.832390645776513],[119.94059940599408,-8.832390645776513],[119.93699936999371,-8.837456377586165],[119.93699936999371,-8.842522109395802],[119.94419944199444,-8.852653573015104],[119.94419944199444,-8.857719304824755],[119.93339933399335,-8.86447361390428],[119.9189991899919,-8.871227922983806],[119.90819908199086,-8.871227922983806],[119.90099900999013,-8.861096459364518],[119.89019890198904,-8.807061986728272],[119.88299882998831,-8.803684832188509],[119.87219872198722,-8.803684832188509],[119.86139861398613,-8.80199625491862],[119.839798397984,-8.793553368569206],[119.82539825398254,-8.780044750410141],[119.81099810998109,-8.763158977711313],[119.80739807398078,-8.741207473202849],[119.80379803798041,-8.595989827992938],[119.80739807398078,-8.570661168944696],[119.82179821798218,-8.547021087166328],[119.87219872198722,-8.49467519179997],[119.87219872198722,-8.472723687291492],[119.86859868598685,-8.44739502824325],[119.86859868598685,-8.413623482845594],[119.89739897398977,-8.444017873703487],[119.9189991899919,-8.460903646402315],[119.92979929799299,-8.457526491862552],[119.93339933399335,-8.455837914592664],[119.9621996219962,-8.438952141893836],[119.96939969399693,-8.437263564623962],[119.97659976599766,-8.435574987354073],[119.98379983799839,-8.438952141893836],[119.99099990999912,-8.44739502824325],[120.00180001800021,-8.438952141893836],[120.00900009000094,-8.425443523734785],[120.01620016200161,-8.40518059649618],[120.01620016200161,-8.401803441956417],[120.02340023400234,-8.388294823797366],[120.02340023400234,-8.38491766925759],[120.03420034200343,-8.383229091987715],[120.04140041400416,-8.386606246527478],[120.04860048600489,-8.38998340106724],[120.05580055800561,-8.39167197833713],[120.05940059400598,-8.38998340106724],[120.06300063000629,-8.388294823797366],[120.07020070200701,-8.386606246527478],[120.07740077400774,-8.38491766925759],[120.08460084600847,-8.386606246527478],[120.08820088200883,-8.39673771014678],[120.09540095400956,-8.398426287416655],[120.10980109801102,-8.39167197833713],[120.11340113401133,-8.381540514717827],[120.11700117001169,-8.366343319288887],[120.12060120601205,-8.351146123859934],[120.12780127801278,-8.35452327839971],[120.13860138601387,-8.364654742018999],[120.14220142201424,-8.371409051098539],[120.14940149401497,-8.371409051098539],[120.16020160201606,-8.34945754659006],[120.19620196201964,-8.315686001192404],[120.20340203402037,-8.298800228493576],[120.2142021420214,-8.29204591941405],[120.27540275402754,-8.268405837635683],[120.37620376203762,-8.275160146715223],[120.39060390603908,-8.268405837635683],[120.4122041220412,-8.236322869507916],[120.4230042300423,-8.227879983158502],[120.43740437404375,-8.232945714968153],[120.44460444604448,-8.246454333127218],[120.44820448204484,-8.263340105826046],[120.45900459004594,-8.275160146715223],[120.48420484204843,-8.278537301254985],[120.52020520205201,-8.254897219476632],[120.5418054180542,-8.26502868309592],[120.55260552605529,-8.273471569445334],[120.56700567005669,-8.280225878524874],[120.58140581405814,-8.285291610334511],[120.59220592205924,-8.281914455794748],[120.59940599405996,-8.270094414905572],[120.60300603006033,-8.256585796746506],[120.59220592205924,-8.232945714968153],[120.63540635406355,-8.249831487666981],[120.65340653406537,-8.261651528556158],[120.6606066060661,-8.278537301254985],[120.67140671406713,-8.29204591941405],[120.72540725407254,-8.32244031027193],[120.74340743407436,-8.329194619351469],[120.81180811808122,-8.320751733002055],[120.82980829808298,-8.325817464811706],[120.8478084780848,-8.33426035116112],[120.86940869408693,-8.339326082970757],[120.90900909009093,-8.342703237510534],[120.95580955809561,-8.337637505700883],[120.97740977409774,-8.337637505700883],[120.99540995409956,-8.347768969320171],[121.01701017010168,-8.378163360178064],[121.03141031410314,-8.393360555607003],[121.05301053010533,-8.40518059649618],[121.10701107011073,-8.423754946464896],[121.1250112501125,-8.425443523734785],[121.14661146611468,-8.425443523734785],[121.15741157411577,-8.428820678274548],[121.1646116461165,-8.435574987354073],[121.17541175411753,-8.440640719163724],[121.20061200612008,-8.438952141893836],[121.21141211412117,-8.438952141893836],[121.21861218612185,-8.444017873703487],[121.22221222212221,-8.452460760052901],[121.22941229412294,-8.457526491862552],[121.24021240212403,-8.460903646402315],[121.25101251012512,-8.460903646402315],[121.26901269012689,-8.464280800942078],[121.27981279812798,-8.46765795548184],[121.29061290612907,-8.477789419101143],[121.31581315813162,-8.514938119038561],[121.33741337413375,-8.525069582657864],[121.38061380613806,-8.57234974621457],[121.40941409414097,-8.582481209833873],[121.42381423814237,-8.57910405529411],[121.43821438214383,-8.57234974621457],[121.45261452614528,-8.567284014404933],[121.47061470614705,-8.568972591674807],[121.48861488614887,-8.575726900754333],[121.4958149581496,-8.582481209833873],[121.49941499414996,-8.59430125072305],[121.50301503015032,-8.601055559802575],[121.51021510215105,-8.602744137072463],[121.52101521015209,-8.595989827992938],[121.52821528215281,-8.590924096183286],[121.56421564215646,-8.568972591674807],[121.57501575015749,-8.565595437135045],[121.57501575015749,-8.547021087166328],[121.57501575015749,-8.538578200816914],[121.58221582215822,-8.53688962354704],[121.60741607416077,-8.541955355356691],[121.6038160381604,-8.521692428118087],[121.6038160381604,-8.496363769069859],[121.61101611016113,-8.476100841831254],[121.62541625416253,-8.46765795548184],[121.63981639816399,-8.472723687291492],[121.67941679416793,-8.511560964498798],[121.69741697416976,-8.50987238722891],[121.75141751417516,-8.491298037260208],[121.77301773017729,-8.486232305450557],[121.78381783817838,-8.48960945999032],[121.79101791017911,-8.492986614530082],[121.79461794617947,-8.49467519179997],[121.80541805418056,-8.49467519179997],[121.81261812618129,-8.491298037260208],[121.83421834218342,-8.47441226456138],[121.85221852218524,-8.484543728180668],[121.87021870218706,-8.491298037260208],[121.89181891818919,-8.492986614530082],[121.93141931419314,-8.47441226456138],[121.93861938619386,-8.46765795548184],[121.94221942219423,-8.457526491862552],[121.94941949419496,-8.452460760052901],[121.98541985419854,-8.44739502824325],[121.99261992619927,-8.442329296433613],[121.9998199982,-8.433886410084199],[122.00702007020072,-8.42713210100466],[122.01782017820182,-8.425443523734785],[122.02862028620285,-8.430509255544422],[122.03582035820358,-8.440640719163724],[122.03942039420394,-8.449083605513138],[122.02502025020249,-8.460903646402315],[122.02142021420218,-8.479477996371031],[122.02502025020249,-8.499740923609622],[122.03942039420394,-8.514938119038561],[122.05022050220504,-8.51662669630845],[122.07182071820722,-8.513249541768687],[122.08262082620826,-8.514938119038561],[122.09342093420935,-8.520003850848212],[122.11142111421117,-8.531823891737389],[122.12582125821257,-8.535201046277152],[122.14022140221402,-8.541955355356691],[122.23022230222301,-8.616252755231528],[122.25902259022592,-8.631449950660468],[122.28782287822878,-8.633138527930356],[122.449824498245,-8.604432714342352],[122.47862478624785,-8.59430125072305],[122.50022500225003,-8.575726900754333],[122.51462514625149,-8.55208681897598],[122.51102511025113,-8.528446737197626],[122.50742507425076,-8.523381005387975],[122.48942489424894,-8.518315273578324],[122.48582485824858,-8.514938119038561],[122.48222482224821,-8.506495232689147],[122.48222482224821,-8.499740923609622],[122.48222482224821,-8.49467519179997],[122.48582485824858,-8.484543728180668],[122.4930249302493,-8.47441226456138],[122.54702547025471,-8.452460760052901],[122.56142561425617,-8.440640719163724],[122.59742597425975,-8.395049132876892],[122.61542615426157,-8.386606246527478],[122.65142651426515,-8.38491766925759],[122.66942669426697,-8.378163360178064],[122.68742687426874,-8.38491766925759],[122.70542705427056,-8.379851937447953],[122.71982719827201,-8.36972047382865],[122.73422734227341,-8.364654742018999],[122.75942759427596,-8.361277587479236],[122.77382773827742,-8.351146123859934],[122.79542795427955,-8.324128887541818],[122.8206282062821,-8.305554537573101],[122.88182881828817,-8.285291610334511],[122.9430294302943,-8.216059942269325],[122.95022950229503,-8.20255132411026],[122.93942939429394,-8.192419860490972],[122.91782917829181,-8.18735412868132],[122.8746287462875,-8.185665551411432],[122.85302853028531,-8.190731283221083],[122.83142831428313,-8.200862746840386],[122.809828098281,-8.214371364999437],[122.79182791827918,-8.22956856042839],[122.78462784627845,-8.22956856042839],[122.74862748627487,-8.232945714968153],[122.74142741427414,-8.22956856042839],[122.74142741427414,-8.22281425134885],[122.7450274502745,-8.207617055919911],[122.77382773827742,-8.162025469633079],[122.78102781027809,-8.148516851474014],[122.78462784627845,-8.123188192425772],[122.79542795427955,-8.109679574266721],[122.8350283502835,-8.089416647028116],[122.85302853028531,-8.074219451599177],[122.8638286382864,-8.069153719789526],[122.8746287462875,-8.069153719789526],[122.88542885428853,-8.074219451599177],[122.89262892628926,-8.092793801567893],[122.89982899828999,-8.096170956107656],[122.91782917829181,-8.101236687917307],[122.93582935829357,-8.111368151536595],[122.96462964629649,-8.131631078775186],[122.97902979029789,-8.14682827420414],[122.98262982629825,-8.16033689236319],[122.97902979029789,-8.195797015030735],[123.0078300783008,-8.261651528556158],[123.02223022230226,-8.278537301254985],[123.02583025830262,-8.288668764874288]]],[[[-156.00216002160022,20.80045186339497],[-155.98055980559806,20.75654885437801],[-155.98415984159843,20.717711577170718],[-156.00216002160022,20.68562860904295],[-156.02736027360274,20.67887429996341],[-156.0489604896049,20.650168486375406],[-156.07416074160741,20.650168486375406],[-156.12816128161282,20.624839827327165],[-156.16416164161643,20.624839827327165],[-156.1857618576186,20.626528404597053],[-156.20376203762038,20.626528404597053],[-156.25416254162542,20.604576900088574],[-156.28656286562867,20.589379704659635],[-156.3009630096301,20.58093681831022],[-156.32616326163262,20.587691127389746],[-156.3369633696337,20.587691127389746],[-156.35136351363514,20.592756859199397],[-156.36576365763656,20.589379704659635],[-156.4089640896409,20.587691127389746],[-156.43416434164342,20.6113312091681],[-156.4377643776438,20.621462672787402],[-156.45216452164522,20.634971290946467],[-156.44136441364412,20.64341417729588],[-156.44136441364412,20.66029994999471],[-156.45216452164522,20.726154463520132],[-156.45936459364594,20.744728813488834],[-156.45936459364594,20.764991740727424],[-156.4629646296463,20.781877513426252],[-156.470164701647,20.78525466796603],[-156.47376473764737,20.790320399775666],[-156.48456484564846,20.797074708855206],[-156.50256502565026,20.795386131585317],[-156.51696516965168,20.790320399775666],[-156.52056520565205,20.776811781616615],[-156.5349653496535,20.77343462707684],[-156.54936549365493,20.781877513426252],[-156.5637656376564,20.792008977045555],[-156.58536585365854,20.795386131585317],[-156.6069660696607,20.808894749744383],[-156.62136621366213,20.807206172474494],[-156.63216632166322,20.824091945173322],[-156.65736657366574,20.84773202695169],[-156.68616686166862,20.88150357234933],[-156.68616686166862,20.90345507685781],[-156.6969669696697,20.915275117746987],[-156.69336693366932,20.935538044985577],[-156.68616686166862,20.964243858573596],[-156.67536675366753,20.98788394035195],[-156.6681666816668,21.00308113578089],[-156.65376653766538,21.004769713050777],[-156.64656646566465,21.01321259940019],[-156.64656646566465,21.021655485749605],[-156.63576635766358,21.026721217559242],[-156.6249662496625,21.026721217559242],[-156.61416614166143,21.025032640289368],[-156.6069660696607,21.026721217559242],[-156.60336603366034,21.031786949368893],[-156.5961659616596,21.03347552663878],[-156.58896588965888,21.02840979482913],[-156.58176581765818,21.018278331209842],[-156.5709657096571,21.016589753939954],[-156.55656556565566,21.00814686759054],[-156.5421654216542,21.00308113578089],[-156.53856538565387,20.991261094891712],[-156.5241652416524,20.98788394035195],[-156.5241652416524,20.974375322192884],[-156.5241652416524,20.962555281303707],[-156.50976509765098,20.95073524041453],[-156.4989649896499,20.937226622255466],[-156.49176491764916,20.922029426826526],[-156.4809648096481,20.9051436541277],[-156.4629646296463,20.9051436541277],[-156.45216452164522,20.91865227228675],[-156.43416434164342,20.916963695016875],[-156.41976419764197,20.920340849556638],[-156.39096390963908,20.922029426826526],[-156.38016380163802,20.9237180040964],[-156.34776347763477,20.94566950860488],[-156.32976329763298,20.95073524041453],[-156.31536315363152,20.952423817684405],[-156.29736297362973,20.952423817684405],[-156.2829628296283,20.95073524041453],[-156.26856268562685,20.94566950860488],[-156.2649626496265,20.94398093133499],[-156.26136261362615,20.94398093133499],[-156.25776257762578,20.942292354065117],[-156.25416254162542,20.937226622255466],[-156.24336243362433,20.942292354065117],[-156.22536225362254,20.932160890445815],[-156.22176221762217,20.920340849556638],[-156.21456214562147,20.915275117746987],[-156.20736207362074,20.906832231397573],[-156.19656196561965,20.895012190508396],[-156.17856178561786,20.88319214961922],[-156.16776167761677,20.871372108730043],[-156.16416164161643,20.86292922238063],[-156.15336153361534,20.86124064511074],[-156.1461614616146,20.86124064511074],[-156.1461614616146,20.86630637692039],[-156.13176131761318,20.857863490570978],[-156.12456124561245,20.844354872411913],[-156.1209612096121,20.8359119860625],[-156.0849608496085,20.83084625425286],[-156.05256052560526,20.815649058823908],[-156.00216002160022,20.80045186339497]]],[[[-156.74736747367473,21.17025028549928],[-156.740167401674,21.171938862769167],[-156.7329673296733,21.16856170822939],[-156.73656736567366,21.163495976419753],[-156.72936729367294,21.160118821879976],[-156.7149671496715,21.161807399149865],[-156.70416704167042,21.156741667340214],[-156.72576725767257,21.122970121942558],[-156.75456754567546,21.095952885624442],[-156.7941679416794,21.07568995838585],[-156.83016830168302,21.060492762956898],[-156.86976869768696,21.053738453877372],[-156.90936909369094,21.057115608417135],[-156.9489694896949,21.063869917496675],[-157.02457024570245,21.084132844735265],[-157.07137071370713,21.099330040164205],[-157.139771397714,21.094264308354553],[-157.18657186571866,21.09257573108468],[-157.22257222572225,21.087509999275028],[-157.25137251372513,21.089198576544902],[-157.2729727297273,21.087509999275028],[-157.2909729097291,21.094264308354553],[-157.30537305373053,21.109461503783507],[-157.30537305373053,21.12803585375221],[-157.2981729817298,21.14323304918115],[-157.28377283772838,21.156741667340214],[-157.2657726577266,21.161807399149865],[-157.25137251372513,21.18038174911858],[-157.24777247772477,21.198956099087283],[-157.25857258572586,21.214153294516223],[-157.25857258572586,21.222596180865636],[-157.24777247772477,21.220907603595762],[-157.23337233372334,21.219219026325874],[-157.20817208172082,21.220907603595762],[-157.19737197371973,21.217530449056],[-157.19017190171903,21.20571040816681],[-157.1721717217172,21.20571040816681],[-157.07857078570785,21.192201790007758],[-157.0281702817028,21.185447480928218],[-156.98856988569887,21.182070326388455],[-156.98136981369814,21.193890367277632],[-156.98136981369814,21.204021830896934],[-156.9741697416974,21.21077613997646],[-156.9669696696967,21.214153294516223],[-156.95256952569525,21.197267521817395],[-156.9489694896949,21.178693171848693],[-156.92376923769237,21.171938862769167],[-156.89856898568985,21.165184553689627],[-156.8481684816848,21.166873130959516],[-156.8229682296823,21.17025028549928],[-156.81216812168122,21.17362744003904],[-156.80136801368013,21.177004594578804],[-156.79056790567904,21.17531601730893],[-156.77256772567725,21.177004594578804],[-156.75816758167582,21.17362744003904],[-156.74736747367473,21.17025028549928]]],[[[-157.70857708577086,21.352616630646608],[-157.69777697776976,21.33573085794778],[-157.6761767617676,21.322222239788715],[-157.65457654576545,21.312090776169427],[-157.64737647376472,21.307025044359776],[-157.65817658176582,21.29351642620071],[-157.68337683376834,21.27325349896212],[-157.69417694176943,21.263122035342832],[-157.7049770497705,21.259744880803055],[-157.70857708577086,21.264810612612706],[-157.7049770497705,21.27494207623201],[-157.71577715777158,21.281696385311534],[-157.7409774097741,21.27494207623201],[-157.76257762577626,21.27325349896212],[-157.78057780577805,21.264810612612706],[-157.7949779497795,21.254679148993418],[-157.80937809378094,21.254679148993418],[-157.81657816578166,21.25805630353318],[-157.8237782377824,21.266499189882595],[-157.8309783097831,21.276630653501883],[-157.86337863378634,21.290139271660948],[-157.88137881378813,21.298582158010362],[-157.89217892178922,21.312090776169427],[-157.8957789577896,21.322222239788715],[-157.8957789577896,21.332353703408018],[-157.9029790297903,21.328976548868255],[-157.91377913779138,21.317156507979078],[-157.90657906579065,21.305336467089887],[-157.94617946179463,21.301959312550125],[-157.94617946179463,21.307025044359776],[-157.9389793897939,21.31040219889954],[-157.94977949779496,21.317156507979078],[-157.96417964179642,21.317156507979078],[-157.96417964179642,21.325599394328492],[-157.96777967779678,21.334042280677906],[-157.96417964179642,21.34079658975743],[-157.96777967779678,21.347550898836957],[-157.9569795697957,21.352616630646608],[-157.94617946179463,21.35768236245626],[-157.93537935379354,21.36274809426591],[-157.93177931779317,21.371190980615324],[-157.94257942579426,21.381322444234613],[-157.95337953379533,21.384699598774375],[-157.96057960579606,21.388076753314152],[-157.96417964179642,21.384699598774375],[-157.96777967779678,21.371190980615324],[-157.97857978579785,21.37625671242496],[-157.98577985779858,21.384699598774375],[-157.9929799297993,21.391453907853915],[-157.98937989379894,21.37794528969485],[-157.98577985779858,21.36274809426591],[-157.98937989379894,21.359370939726148],[-158.0109801098011,21.37625671242496],[-158.0217802178022,21.3830110215045],[-158.01458014580146,21.367813826075547],[-157.99657996579967,21.350928053376734],[-157.98577985779858,21.34079658975743],[-157.9749797497975,21.334042280677906],[-157.9821798217982,21.318845085248952],[-158.0001800018,21.312090776169427],[-158.0217802178022,21.307025044359776],[-158.05778057780577,21.30027073528025],[-158.07938079380793,21.298582158010362],[-158.09378093780938,21.29351642620071],[-158.09738097380975,21.2952050034706],[-158.10458104581045,21.298582158010362],[-158.11538115381154,21.305336467089887],[-158.12258122581227,21.339108012487543],[-158.13338133381333,21.366125248805673],[-158.1477814778148,21.381322444234613],[-158.15858158581585,21.394831062393678],[-158.17658176581767,21.40327394874309],[-158.180181801818,21.430291185061208],[-158.18738187381874,21.443799803220273],[-158.20538205382053,21.458996998649226],[-158.21618216182162,21.465751307728752],[-158.2269822698227,21.48263708042758],[-158.2269822698227,21.50458858493606],[-158.23058230582305,21.533294398524063],[-158.2341823418234,21.541737284873477],[-158.27738277382775,21.575508830271133],[-158.2737827378274,21.578885984810896],[-158.23778237782378,21.58564029389042],[-158.19458194581946,21.58732887116031],[-158.16578165781658,21.58564029389042],[-158.1477814778148,21.58564029389042],[-158.1369813698137,21.589017448430184],[-158.12258122581227,21.58564029389042],[-158.1189811898119,21.597460334779598],[-158.11178111781118,21.604214643859137],[-158.09378093780938,21.614346107478426],[-158.07218072180723,21.62954330290738],[-158.0649806498065,21.636297611986905],[-158.06858068580686,21.641363343796556],[-158.06138061380614,21.653183384685732],[-158.05058050580504,21.671757734654435],[-158.03618036180362,21.683577775543625],[-158.01458014580146,21.702152125512328],[-157.9821798217982,21.71059501186174],[-157.97137971379715,21.708906434591853],[-157.96417964179642,21.70552928005209],[-157.9569795697957,21.698774970972565],[-157.94977949779496,21.69033208462315],[-157.93537935379354,21.678512043733974],[-157.93177931779317,21.666692002844798],[-157.92457924579247,21.66331484830502],[-157.92457924579247,21.654871961955607],[-157.91377913779138,21.64474049833632],[-157.9209792097921,21.62785472563749],[-157.90657906579065,21.610968952938663],[-157.89217892178922,21.599148912049486],[-157.88857888578886,21.58057456208077],[-157.87777877778777,21.575508830271133],[-157.87417874178743,21.568754521191593],[-157.87057870578707,21.558623057572305],[-157.86337863378634,21.56031163484218],[-157.85257852578525,21.556934480302417],[-157.84537845378455,21.548491593953003],[-157.83817838178382,21.533294398524063],[-157.83457834578346,21.51809720309511],[-157.83817838178382,21.511342894015584],[-157.84537845378455,21.511342894015584],[-157.84897848978488,21.50458858493606],[-157.84897848978488,21.489391389507105],[-157.84537845378455,21.47757134861793],[-157.84177841778418,21.4606855759191],[-157.8309783097831,21.458996998649226],[-157.82017820178203,21.453931266839575],[-157.8129781297813,21.4421112259504],[-157.8021780217802,21.428602607791333],[-157.78777787777878,21.423536875981682],[-157.78777787777878,21.416782566902157],[-157.7769777697777,21.413405412362394],[-157.769777697777,21.42015972144192],[-157.7589775897759,21.433668339600985],[-157.77337773377735,21.4421112259504],[-157.77337773377735,21.453931266839575],[-157.76257762577626,21.458996998649226],[-157.73737737377374,21.45561984410945],[-157.72657726577265,21.458996998649226],[-157.7229772297723,21.452242689569687],[-157.73737737377374,21.437045494140747],[-157.7409774097741,21.42015972144192],[-157.73737737377374,21.40496252601298],[-157.7229772297723,21.396519639663566],[-157.70857708577086,21.3830110215045],[-157.7049770497705,21.374568135155087],[-157.70857708577086,21.36274809426591],[-157.70857708577086,21.352616630646608]]],[[[-159.29979299792998,22.151313679301126],[-159.29259292592926,22.146247947491474],[-159.29259292592926,22.136116483872186],[-159.29619296192962,22.10741067028418],[-159.30339303393035,22.09559062939499],[-159.31779317793178,22.056753352187698],[-159.33219332193323,22.04999904310816],[-159.33579335793357,22.021293229520154],[-159.33219332193323,22.004407456821326],[-159.33219332193323,21.984144529582736],[-159.33219332193323,21.965570179614033],[-159.33579335793357,21.958815870534494],[-159.34659346593466,21.958815870534494],[-159.35739357393572,21.95206156145497],[-159.35019350193502,21.945307252375443],[-159.34659346593466,21.93686436602603],[-159.3537935379354,21.93011005694649],[-159.36459364593645,21.93011005694649],[-159.38259382593827,21.916601438787424],[-159.38979389793897,21.904781397898248],[-159.3969939699397,21.898027088818722],[-159.4149941499415,21.88789562519942],[-159.4149941499415,21.881141316119894],[-159.42579425794258,21.879452738850006],[-159.4329943299433,21.87438700704037],[-159.43659436594365,21.869321275230718],[-159.48339483394835,21.882829893389783],[-159.50859508595084,21.886207047929545],[-159.53019530195303,21.886207047929545],[-159.5661956619566,21.89296135700907],[-159.58059580595807,21.89464993427896],[-159.59139591395913,21.901404243358485],[-159.5949959499595,21.89971566608861],[-159.5949959499595,21.89296135700907],[-159.6057960579606,21.891272779739197],[-159.60939609396092,21.89971566608861],[-159.62379623796238,21.904781397898248],[-159.63459634596347,21.91322428424766],[-159.64179641796417,21.923355747866964],[-159.64539645396454,21.931798634216378],[-159.6489964899649,21.94024152056579],[-159.66339663396633,21.941930097835666],[-159.6669966699667,21.95037298418508],[-159.67779677796779,21.95543871599473],[-159.69579695796958,21.958815870534494],[-159.710197101971,21.963881602344145],[-159.72459724597246,21.97063591142367],[-159.74259742597425,21.974013065963447],[-159.76059760597605,21.979078797773084],[-159.76779767797677,21.995964570471912],[-159.77139771397714,22.004407456821326],[-159.77859778597787,22.009473188630977],[-159.7857978579786,22.01960465225028],[-159.7857978579786,22.03311327040933],[-159.7857978579786,22.04493331129852],[-159.7857978579786,22.056753352187698],[-159.7857978579786,22.065196238537112],[-159.7749977499775,22.070261970346763],[-159.74979749797498,22.09727920666488],[-159.73539735397355,22.115853556633596],[-159.73539735397355,22.12429644298301],[-159.73539735397355,22.134427906602298],[-159.7317973179732,22.141182215681823],[-159.72459724597246,22.14287079295171],[-159.72459724597246,22.146247947491474],[-159.71739717397173,22.15806798838065],[-159.69579695796958,22.163133720190302],[-159.6669966699667,22.169888029269842],[-159.6381963819638,22.18508522469878],[-159.62019620196202,22.20028242012772],[-159.59859598595986,22.210413883747023],[-159.58779587795877,22.22054534736631],[-159.5769957699577,22.225611079175962],[-159.5661956619566,22.225611079175962],[-159.55899558995588,22.232365388255502],[-159.54819548195482,22.230676810985614],[-159.5409954099541,22.225611079175962],[-159.53739537395373,22.218856770096437],[-159.53019530195303,22.21716819282655],[-159.51579515795157,22.213791038286786],[-159.50859508595084,22.208725306477135],[-159.49779497794978,22.208725306477135],[-159.50139501395014,22.215479615556674],[-159.49779497794978,22.223922501906088],[-159.479794797948,22.230676810985614],[-159.46179461794617,22.22729965644585],[-159.440194401944,22.22729965644585],[-159.42939429394295,22.22054534736631],[-159.41859418594186,22.2222339246362],[-159.40779407794076,22.228988233715725],[-159.40059400594006,22.235742542795265],[-159.38979389793897,22.228988233715725],[-159.37539375393754,22.2222339246362],[-159.35739357393572,22.2222339246362],[-159.33939339393393,22.213791038286786],[-159.33219332193323,22.198593842857846],[-159.31779317793178,22.18508522469878],[-159.31059310593105,22.18508522469878],[-159.30699306993068,22.171576606539716],[-159.30339303393035,22.161445142920428],[-159.29979299792998,22.151313679301126]]],[[[-169.44109441094412,63.36273052805828],[-169.4878948789488,63.3677962598679],[-169.5130951309513,63.374550568947456],[-169.52749527495274,63.382993455296855],[-169.50949509495095,63.37286199167755],[-169.44109441094412,63.36273052805828]]],[[[143.4740347403474,73.32027068855655],[143.51723517235172,73.27805625680946],[143.5388353883539,73.25103902049136],[143.5640356403564,73.23077609325276],[143.5280352803528,73.2071360114744],[143.4056340563406,73.1885616615057],[143.17523175231753,73.17674162061653],[142.75762757627575,73.22064462963345],[142.53802538025383,73.21389032055393],[142.3436234362344,73.23584182506241],[142.21762217622177,73.24090755687206],[141.839618396184,73.26961337046006],[141.5120151201512,73.30000776131794],[141.31041310413104,73.33040215217585],[141.04761047610475,73.37092800665303],[140.78840788407888,73.40976528386034],[140.5040050400504,73.40469955205069],[140.28800288002878,73.38274804754221],[140.15840158401585,73.34728792487468],[139.96399963999642,73.32702499763607],[139.81639816398166,73.33884503852525],[139.78759787597875,73.36923942938313],[139.76599765997662,73.41820817020974],[139.90639906399065,73.4705540655761],[140.07920079200795,73.45873402468692],[140.23400234002344,73.4519797156074],[140.4932049320493,73.48575126100505],[140.62640626406267,73.56173723814976],[140.6588065880659,73.58031158811849],[140.6912069120691,73.60395166989684],[140.7128071280713,73.63265748348485],[140.7308073080731,73.65292041072342],[140.7920079200792,73.70020057428016],[140.810008100081,73.71708634697899],[140.83880838808392,73.75423504691639],[140.86760867608677,73.77956370596465],[140.90000900009,73.8015152104731],[140.93600936009364,73.82008956044183],[141.1268112681127,73.88087834215759],[141.16641166411665,73.88256691942749],[141.1628116281163,73.87918976488771],[141.17001170011702,73.87750118761784],[141.1808118081181,73.87581261034794],[141.2060120601206,73.86905830126841],[141.3680136801368,73.86399256945876],[141.59481594815952,73.90620700120584],[142.04482044820452,73.91633846482515],[142.27522275222753,73.86568114672866],[142.48042480424806,73.84710679675993],[142.58122581225814,73.82515529225148],[142.88362883628838,73.71033203789943],[142.9268292682927,73.70357772881991],[142.9448294482945,73.70020057428016],[143.00963009630095,73.6664290288825],[143.03123031230314,73.65967471980295],[143.1536315363154,73.64278894710412],[143.4056340563406,73.54316288818106],[143.43803438034382,73.52121138367258],[143.4848348483485,73.4806855291954],[143.53523535235354,73.44353682925797],[143.46683466834668,73.41314243840009],[143.4416344163442,73.40807670659044],[143.44883448834491,73.39625666570126],[143.45243452434528,73.38443662481208],[143.45243452434528,73.3726165839229],[143.45603456034564,73.36079654303373],[143.45963459634595,73.35741938849395],[143.46683466834668,73.35741938849395],[143.47043470434704,73.3540422339542],[143.4740347403474,73.3439107703349],[143.4740347403474,73.33715646125538],[143.4740347403474,73.33209072944572],[143.4740347403474,73.32702499763607],[143.4740347403474,73.32027068855655]]],[[[150.8289082890829,75.16419706726845],[150.86130861308612,75.16250848999857],[150.92610926109262,75.15237702637927],[150.95850958509584,75.14224556275997],[150.91170911709116,75.13886840822022],[150.85770857708576,75.12535979006114],[150.81090810908108,75.10340828555266],[150.77850778507786,75.07470247196466],[150.7857078570786,75.06794816288513],[150.77130771307714,75.05275096745618],[150.70650706507064,75.0324880402176],[150.70650706507064,75.0223565765983],[150.70290702907027,75.01729084478865],[150.6957069570696,75.01729084478865],[150.68850688506888,75.01897942205855],[150.6849068490685,75.01897942205855],[150.65250652506523,75.00715938116934],[150.64530645306456,75.00209364935972],[150.65250652506523,74.99027360847052],[150.67410674106742,74.97676499031147],[150.69210692106924,74.95987921761264],[150.68130681306815,74.93455055856441],[150.64530645306456,74.9058447449764],[150.60930609306092,74.89402470408723],[150.20250202502024,74.85012169507027],[149.7956979569796,74.80453010878344],[149.77409774097742,74.79608722243401],[149.72729727297275,74.76906998611591],[149.71649716497166,74.76569283157613],[149.29529295292951,74.77244714065566],[149.2088920889209,74.7572499452267],[148.86328863288634,74.77244714065566],[148.51768517685178,74.78764433608461],[148.17208172081723,74.80284153151356],[147.85167851678517,74.88727039500768],[147.80127801278013,74.90922189951615],[147.74727747277473,74.91597620859568],[147.72207722077223,74.92441909494511],[147.72927729277296,74.93117340402463],[147.66447664476647,74.95312490853311],[147.5168751687517,74.97169925850181],[147.31527315273155,74.97338783577169],[147.08847088470884,75.00547080389947],[146.95526955269554,75.05443954472608],[146.64926649266494,75.12873694460092],[146.21726217262176,75.17601710815762],[146.12006120061204,75.20472292174563],[146.10206102061022,75.21316580809506],[146.08046080460804,75.2266744262541],[146.0732607326073,75.24018304441316],[146.10926109261095,75.25200308530233],[146.14166141661417,75.27395458981081],[146.159661596616,75.27902032162046],[146.1740617406174,75.29084036250964],[146.18126181261812,75.3161690215579],[146.18486184861848,75.34318625787603],[146.18126181261812,75.36176060784473],[146.16686166861672,75.38540068962308],[146.16686166861672,75.39553215324239],[146.18846188461885,75.39553215324239],[146.2136621366214,75.39046642143273],[146.2388623886239,75.38708926689296],[146.26406264062643,75.39215499870261],[146.28566285662856,75.40228646232191],[146.2568625686257,75.41410650321109],[146.24966249662498,75.42592654410026],[146.26406264062643,75.43605800771957],[146.2928629286293,75.45125520314852],[146.31806318063184,75.45969808949792],[146.37926379263791,75.4630752440377],[146.40806408064083,75.4715181303871],[146.37566375663755,75.48502674854615],[146.35046350463506,75.5002239439751],[146.34326343263433,75.52217544848358],[146.35406354063542,75.55425841661136],[146.390063900639,75.58465280746924],[146.43686436864368,75.59647284835842],[146.48726487264872,75.59478427108854],[146.6636666366664,75.55594699388124],[146.67086670866712,75.54919268480171],[146.68526685266852,75.53230691210288],[146.69246692466925,75.52555260302336],[146.7716677166772,75.50697825305463],[146.75366753667538,75.49515821216545],[146.72846728467283,75.48840390308592],[146.70326703267034,75.48502674854615],[146.68166681666816,75.48502674854615],[146.68526685266852,75.47489528492687],[146.68886688866888,75.4715181303871],[146.6420664206642,75.44787804860874],[146.63486634866348,75.43774658498944],[146.6420664206642,75.42254938956049],[146.6636666366664,75.41579508048096],[146.71046710467107,75.40904077140144],[146.72846728467283,75.40228646232191],[146.7716677166772,75.37526922600378],[146.7968679686797,75.36682633965438],[147.15327153271534,75.33643194879647],[147.21807218072183,75.34656341241578],[147.32607326073264,75.34994056695555],[147.34767347673477,75.3550062987652],[147.31167311673119,75.37526922600378],[147.26127261272615,75.37526922600378],[147.1676716767168,75.36176060784473],[147.19287192871928,75.38033495781343],[147.22887228872293,75.39553215324239],[147.27207272072724,75.40566361686169],[147.35127351273513,75.40904077140144],[147.36207362073623,75.40904077140144],[147.36207362073623,75.40397503959178],[147.35847358473586,75.40059788505204],[147.36207362073623,75.39722073051226],[147.37647376473768,75.39215499870261],[147.43767437674376,75.38877784416286],[147.42327423274236,75.40566361686169],[147.39087390873908,75.41748365775086],[147.3332733327333,75.43099227590992],[147.37287372873732,75.44112373952922],[147.6860768607686,75.44281231679909],[147.83727837278371,75.41917223502074],[148.1216812168122,75.42086081229061],[148.4060840608406,75.42086081229061],[148.54648546485464,75.38540068962308],[148.57888578885792,75.3820235350833],[148.55368553685537,75.34656341241578],[148.54288542885428,75.34149768060612],[148.5248852488525,75.33812052606638],[148.45648456484565,75.31110328974825],[148.44568445684456,75.28746320796989],[148.47808478084784,75.26551170346141],[148.5608856088561,75.23849446714328],[148.55368553685537,75.2266744262541],[148.55728557285573,75.22160869444446],[148.61128611286114,75.21485438536493],[148.67248672486727,75.22498584898423],[148.7048870488705,75.22498584898423],[148.78408784087844,75.2182315399047],[148.89928899288992,75.22329727171433],[148.9460894608946,75.23849446714328],[149.12609126091263,75.26888885800116],[149.4608946089461,75.25369166257224],[149.7956979569796,75.24018304441316],[150.13050130501307,75.22498584898423],[150.17370173701738,75.21316580809506],[150.19530195301957,75.20303434447575],[150.21330213302133,75.1878371490468],[150.21330213302133,75.1777056854275],[150.19890198901993,75.1692627990781],[150.17730177301775,75.16250848999857],[150.1629016290163,75.15744275818892],[150.21330213302133,75.16757422180822],[150.26730267302673,75.16588564453832],[150.41850418504185,75.13380267641057],[150.56250562505625,75.12873694460092],[150.53730537305375,75.11860548098161],[150.49050490504908,75.11016259463221],[150.47250472504726,75.10171970828279],[150.50130501305011,75.09496539920326],[150.5337053370534,75.09496539920326],[150.63450634506347,75.11691690371174],[150.64890648906493,75.12367121279127],[150.65970659706596,75.13211409914067],[150.6669066690667,75.14224556275997],[150.66330663306633,75.1489998718395],[150.6669066690667,75.15575418091905],[150.67410674106742,75.16081991272867],[150.710107101071,75.16757422180822],[150.8289082890829,75.16419706726845]]],[[[137.14157141571417,75.65219589826455],[137.1127711277113,75.64206443464525],[136.97956979569796,75.61673577559702],[136.96876968769686,75.60998146651747],[136.98316983169832,75.62180150740667],[137.01197011970123,75.63024439375607],[137.0587705877059,75.64037585737537],[137.06957069570694,75.64375301191512],[137.0839708397084,75.64375301191512],[137.13077130771308,75.65219589826455],[137.14157141571417,75.65219589826455]]],[[[24.42444424444244,77.82539484460358],[24.334443344433453,77.79837760828545],[24.2480424804248,77.75785175380827],[24.23004230042301,77.71732589933109],[24.154441544415448,77.68355435393343],[24.093240932409344,77.64978280853578],[24.075240752407524,77.64133992218638],[24.06444064440646,77.63120845856707],[24.04644046440464,77.62107699494777],[24.024840248402484,77.61263410859837],[23.9960399603996,77.60587979951882],[23.98163981639817,77.59405975862964],[23.96363963639638,77.56873109958141],[23.916839168391704,77.52482809056445],[23.891638916389184,77.50794231786563],[23.733237332373335,77.45559642249927],[23.538835388353903,77.42520203164139],[23.391233912339118,77.37961044535456],[23.355233552335534,77.37623329081478],[23.26883268832688,77.32726454998817],[23.290432904329037,77.29011585005077],[23.232832328323298,77.26309861373264],[22.92322923229233,77.25634430465311],[22.703627036270376,77.23776995468441],[22.610026100261024,77.24790141830368],[22.476824768247695,77.26141003646276],[22.44802448024481,77.26141003646276],[22.43002430024302,77.26309861373264],[22.419224192241927,77.26816434554229],[22.4120241202412,77.27660723189172],[22.401224012240135,77.28336154097124],[22.390423904239043,77.30362446820982],[22.426424264242655,77.31882166363877],[22.50562505625058,77.3357074363376],[22.491224912249123,77.3644132499256],[22.491224912249123,77.372856136275],[22.484024840248424,77.38129902262443],[22.451624516245175,77.39480764078348],[22.426424264242655,77.41000483621244],[22.415624156241563,77.41507056802209],[22.4120241202412,77.42013629983174],[22.42282422824229,77.43195634072092],[22.43722437224372,77.43871064980044],[22.566825668256683,77.46741646338845],[22.602826028260296,77.48599081335715],[22.674826748267492,77.4927451224367],[22.73242732427326,77.51807378148493],[22.761227612276116,77.53664813145363],[22.779227792277936,77.55522248142236],[22.667626676266764,77.55184532688259],[22.610026100261024,77.54002528599341],[22.577625776257776,77.51300804967528],[22.552425524255256,77.51807378148493],[22.559625596255984,77.5298938223741],[22.58122581225814,77.54171386326328],[22.60642606426066,77.54846817234281],[22.566825668256683,77.56704252231154],[22.50562505625058,77.57717398593081],[22.44802448024481,77.57717398593081],[22.293222932229327,77.55522248142236],[22.282422824228263,77.55015674961271],[22.242822428224287,77.5197623587548],[22.192421924219246,77.50456516332588],[21.77841778417786,77.48767939062705],[21.364413644136448,77.47079361792822],[21.317613176131772,77.45728499976914],[21.09081090810909,77.43871064980044],[21.036810368103687,77.44377638161009],[20.92160921609218,77.44208780434022],[20.892808928089295,77.44546495887997],[20.86400864008641,77.45559642249927],[20.86400864008641,77.46741646338845],[20.87840878408784,77.47754792700775],[20.92880928809288,77.5011880087861],[20.918009180091815,77.50963089513553],[20.88920889208893,77.51469662694515],[20.860408604086047,77.52820524510423],[20.882008820088203,77.53495955418376],[20.87120871208714,77.54002528599341],[20.856808568085683,77.54171386326328],[20.831608316083162,77.54002528599341],[20.84600846008462,77.54677959507293],[20.860408604086047,77.54846817234281],[20.885608856088567,77.54846817234281],[20.87840878408784,77.56366536777176],[20.874808748087474,77.56873109958141],[21.188011880118808,77.60250264497907],[21.21681216812169,77.6092569540586],[21.234812348123484,77.62276557221765],[21.238412384123848,77.63289703583695],[21.23121231212312,77.64302849945625],[21.227612276122755,77.6582256948852],[21.234812348123484,77.66160284942495],[21.245612456124576,77.6666685812346],[21.24921249212494,77.67173431304425],[21.24921249212494,77.67848862212378],[21.24921249212494,77.68186577666356],[21.245612456124576,77.68355435393343],[21.24201242012421,77.68862008574308],[21.245612456124576,77.70044012663226],[21.24921249212494,77.71394874479131],[21.25641256412564,77.72745736295039],[21.260012600126004,77.73252309476004],[21.328413284132836,77.75785175380827],[21.364413644136448,77.7747375265071],[21.411214112141124,77.7848689901264],[21.436414364143644,77.7950004537457],[21.436414364143644,77.82032911279393],[21.479614796147956,77.83721488549276],[21.55881558815588,77.85747781273136],[21.56601566015661,77.87267500816029],[21.555215552155516,77.87942931723984],[21.54081540815409,77.88618362631937],[21.537215372153725,77.89800366720854],[21.555215552155516,77.90644655355794],[21.663216632166325,77.91826659444712],[21.65241652416526,77.92839805806642],[21.638016380163805,77.93852952168572],[21.623616236162377,77.94528383076525],[21.60921609216092,77.94359525349537],[21.5840158401584,77.9402180989556],[21.368013680136812,77.96554675800385],[21.317613176131772,77.98243253070268],[21.24201242012421,77.99256399432196],[20.87840878408784,78.08543574416552],[20.87840878408784,78.09894436232457],[20.900009000089995,78.11076440321375],[20.993609936099375,78.13778163953188],[21.342813428134292,78.17493033946931],[21.695616956169573,78.21039046213684],[22.04482044820449,78.20532473032719],[22.39762397623977,78.20025899851754],[22.491224912249123,78.2154561939465],[22.534425344253464,78.23065338937542],[22.96642966429664,78.25598204842368],[23.06003060030602,78.23571912118507],[23.132031320313217,78.23234196664532],[23.32643326433265,78.20025899851754],[23.420034200342002,78.16817603038976],[23.470434704347042,78.15804456677049],[23.470434704347042,78.15129025769093],[23.394833948339482,78.13947021680175],[23.373233732337326,78.13102733045235],[23.37683376833769,78.11245298048365],[23.35163351633517,78.1056986714041],[23.14283142831428,78.0972557850547],[23.106831068310697,78.08881289870527],[23.070830708307085,78.06686139419682],[23.056430564305657,78.03646700333891],[23.07443074430745,78.00776118975091],[23.121231212312125,77.98580968524243],[23.36963369633696,77.95710387165443],[23.394833948339482,77.94866098530503],[23.470434704347042,77.91826659444712],[23.56763567635676,77.89800366720854],[23.6108361083611,77.87436358543019],[23.62883628836289,77.87098643089041],[23.942039420394224,77.85241208092171],[23.9960399603996,77.85916639000123],[24.035640356403576,77.87942931723984],[24.07164071640716,77.89462651266876],[24.237242372423736,77.89800366720854],[24.258842588425892,77.90138082174829],[24.284042840428413,77.90982370809772],[24.30564305643057,77.91151228536759],[24.32364323643236,77.90138082174829],[24.334443344433453,77.89124935812902],[24.34884348843488,77.88280647177959],[24.38124381243813,77.87098643089041],[24.40644406444065,77.86592069908076],[24.42444424444244,77.82539484460358]]],[[[21.026010260102595,78.21883334848624],[20.799207992079914,78.22727623483567],[20.766807668076694,78.22221050302602],[20.73800738007381,78.21207903940672],[20.730807308073082,78.20870188486694],[20.727207272072718,78.20532473032719],[20.723607236072354,78.19857042124767],[20.698406984069834,78.19350468943802],[20.673206732067314,78.19012753489824],[20.648006480064794,78.19350468943802],[20.626406264062638,78.20701330759707],[20.673206732067314,78.21376761667659],[20.68760687606877,78.21883334848624],[20.666006660066614,78.21883334848624],[20.666006660066614,78.22727623483567],[20.716407164071654,78.2340305439152],[20.71280712807129,78.2526048938839],[20.73800738007381,78.26104778023333],[20.766807668076694,78.26442493477307],[20.792007920079215,78.27455639839238],[20.781207812078122,78.27962213020203],[20.76320763207633,78.29313074836108],[20.748807488074874,78.29819648017073],[20.723607236072354,78.30495078925026],[20.468004680046818,78.31508225286956],[20.482404824048245,78.32690229375874],[20.507605076050766,78.33703375737804],[20.53640536405365,78.34209948918769],[20.558005580055806,78.34378806645756],[20.648006480064794,78.34041091191781],[20.673206732067314,78.34716522099734],[20.684006840068406,78.35729668461664],[20.680406804068042,78.3708053027757],[20.673206732067314,78.38262534366487],[20.66240662406625,78.3910682300143],[20.63720637206373,78.3995111163637],[20.583205832058326,78.40457684817335],[20.457204572045725,78.44003697084088],[20.154801548015485,78.47549709350841],[20.162001620016213,78.48225140258796],[20.172801728017276,78.49069428893736],[20.18360183601837,78.49576002074701],[20.525605256052557,78.52615441160489],[20.87120871208714,78.5565488024628],[20.9540095400954,78.5464173388435],[21.018810188101895,78.54472876157362],[21.083610836108363,78.5565488024628],[21.126811268112675,78.5835660387809],[21.12321123211234,78.5852546160508],[21.112411124111247,78.58863177059055],[21.10521105211052,78.59032034786046],[21.10521105211052,78.59707465693998],[21.177211772117715,78.62240331598821],[21.303213032130316,78.62746904779786],[21.422014220142216,78.61396042963881],[21.47601476014762,78.58694319332068],[21.497614976149777,78.56836884335198],[21.55161551615518,78.57343457516163],[21.645216452164533,78.59707465693998],[21.674016740167417,78.60045181147973],[21.79281792817929,78.59876323420985],[21.807218072180717,78.59707465693998],[21.81081810818108,78.59200892513033],[21.814418144181445,78.5852546160508],[21.81801818018181,78.58018888424115],[21.825218252182538,78.57681172970138],[21.846818468184694,78.57850030697128],[21.86121861218612,78.5852546160508],[21.87921879218794,78.5852546160508],[21.915219152191526,78.56161453427245],[21.940419404194046,78.55992595700255],[21.983619836198358,78.56836884335198],[22.04482044820449,78.5936975024002],[22.066420664206646,78.59707465693998],[22.084420844208438,78.59538607967008],[22.091620916209166,78.58863177059055],[22.09522095220953,78.58018888424115],[22.098820988209894,78.56836884335198],[22.131221312213142,78.5278429888748],[22.156421564215663,78.51264579344584],[22.206822068220703,78.50420290709641],[22.224822248222495,78.49913717528679],[22.23562235622356,78.48731713439759],[22.23562235622356,78.47380851623853],[22.232022320223223,78.46367705261923],[22.206822068220703,78.4484798571903],[22.19602196021961,78.438348393571],[22.20322203222034,78.4282169299517],[22.214022140221402,78.42146262087218],[22.224822248222495,78.41470831179265],[22.22842228422286,78.40119969363357],[22.224822248222495,78.380936766395],[22.22842228422286,78.37418245731547],[22.242822428224287,78.36742814823592],[22.242822428224287,78.35560810734674],[22.232022320223223,78.33365660283826],[22.22842228422286,78.30832794379003],[22.242822428224287,78.28806501655143],[22.23562235622356,78.2813107074719],[22.27162271622717,78.26780208931285],[21.86841868418685,78.24585058480437],[21.46521465214653,78.22221050302602],[21.062010620106207,78.20025899851754],[21.011610116101167,78.20701330759707],[21.01521015210153,78.21039046213684],[21.026010260102595,78.21883334848624]]],[[[46.6870668706687,80.52880705368577],[46.66906669066691,80.51698701279659],[46.64386643866439,80.51529843552672],[46.59706597065971,80.52205274460624],[46.54666546665467,80.52374132187614],[46.51786517865179,80.5186755900665],[46.49626496264963,80.50854412644719],[46.52146521465215,80.48321546739894],[46.52866528665288,80.47477258104954],[46.481864818648205,80.45957538562058],[46.08226082260825,80.439312458382],[46.053460534605364,80.4477553447314],[46.03186031860321,80.46464111743023],[46.021060210602116,80.48828119920859],[46.028260282602844,80.51529843552672],[46.04266042660427,80.52542989914602],[46.078660786607884,80.5456928263846],[46.08226082260825,80.5558242900039],[46.071460714607156,80.56764433089307],[46.04266042660427,80.57271006270273],[45.995859958599596,80.57777579451238],[45.83745837458375,80.55075855819425],[45.78345783457834,80.54906998092437],[45.77625776257764,80.55244713546415],[45.769057690576915,80.5575128672738],[45.75825758257582,80.56257859908342],[45.75105751057512,80.56089002181355],[45.71145711457115,80.55075855819425],[45.6718567185672,80.5473814036545],[45.62145621456216,80.53387278549542],[45.517055170551714,80.52036416733637],[45.48825488254883,80.52374132187614],[45.4738547385474,80.53218420822554],[45.44505445054452,80.55075855819425],[45.427054270542726,80.5575128672738],[45.376653766537686,80.57271006270273],[45.27225272252724,80.58959583540155],[44.89424894248944,80.6047930308305],[44.85824858248583,80.61661307171968],[44.879848798487984,80.62505595806908],[44.90864908649087,80.63012168987873],[45.005850058500585,80.63349884441851],[45.0958509585096,80.64869603984747],[45.567455674556754,80.67233612162582],[46.04266042660427,80.69766478067405],[46.51786517865179,80.7213048624524],[46.51786517865179,80.72805917153195],[46.489064890648905,80.72637059426205],[46.39906399063992,80.73481348061148],[46.41706417064171,80.741567789691],[46.44226442264423,80.74494494423075],[46.92106921069211,80.74832209877053],[47.02187021870219,80.7601421396597],[47.11187111871121,80.78884795324771],[47.18027180271804,80.79897941686701],[47.201872018720195,80.80911088048632],[47.11907119071191,80.82093092137549],[47.09027090270902,80.8310623849948],[47.13707137071373,80.84288242588397],[47.536675366753684,80.85639104404302],[47.864278642786445,80.81248803502606],[48.03708037080372,80.80742230321641],[48.274682746827466,80.8310623849948],[48.49788497884978,80.79729083959714],[48.65628656286563,80.75507640785005],[48.60588605886059,80.74494494423075],[48.50148501485015,80.7500106760404],[48.45468454684547,80.72805917153195],[48.61668616686168,80.69766478067405],[48.634686346863475,80.68077900797522],[48.66708667086672,80.67740185343547],[48.76428764287644,80.65882750346674],[48.75708757087571,80.64869603984747],[48.75348753487535,80.63687599895826],[48.75348753487535,80.62505595806908],[48.74988749887498,80.61661307171968],[48.72828728287283,80.61154733991003],[48.69588695886961,80.6132359171799],[48.6418864188642,80.62505595806908],[48.508685086850875,80.63518742168839],[48.458284582845835,80.64869603984747],[48.433084330843315,80.65207319438721],[48.06228062280624,80.66220465800652],[47.990279902799045,80.68077900797522],[48.00828008280084,80.70104193521382],[48.00108001080011,80.70948482156322],[47.95067950679507,80.70779624429335],[47.921879218792185,80.71117339883313],[47.78147781477816,80.76520787146936],[47.74907749077491,80.77027360327901],[47.71667716677169,80.76858502600913],[47.637476374763764,80.75338783058018],[47.55827558275584,80.74832209877053],[47.57267572675727,80.74325636696088],[47.59787597875979,80.72974774880183],[47.612276122761244,80.72805917153195],[47.529475294752956,80.72805917153195],[47.493474934749344,80.73481348061148],[47.47547475474755,80.73481348061148],[47.48987489874901,80.71792770791265],[47.54747547475475,80.6942876261343],[47.57267572675727,80.68077900797522],[47.5078750787508,80.67233612162582],[47.43227432274324,80.68584473978487],[47.360273602736044,80.68753331705474],[47.302673026730275,80.65207319438721],[47.43227432274324,80.60985876264016],[47.4430744307443,80.60141587629073],[47.43227432274324,80.5946615672112],[47.39627396273963,80.59128441267143],[47.19827198271983,80.62505595806908],[47.14067140671406,80.61492449444981],[47.11187111871121,80.60648160810038],[47.06147061470617,80.59635014448108],[47.03627036270365,80.5845301035919],[47.03267032670328,80.57777579451238],[47.018270182701826,80.56257859908342],[47.01107011070113,80.5558242900039],[46.993069930699306,80.55244713546415],[46.665466654666545,80.5659557536232],[46.633066330663326,80.5558242900039],[46.6870668706687,80.52880705368577]]],[[[51.68751687516877,80.72805917153195],[51.71991719917199,80.72637059426205],[51.734317343173444,80.7229934397223],[51.74511745117451,80.71455055337287],[51.74151741517417,80.70948482156322],[51.73071730717308,80.70610766702347],[51.727117271172716,80.70104193521382],[51.73071730717308,80.6942876261343],[51.701917019170196,80.67740185343547],[51.43911439114393,80.64700746257756],[51.17631176311764,80.61830164898956],[51.122311223112234,80.60310445356063],[50.996309963099634,80.5473814036545],[50.94950949509496,80.5372499400352],[50.53550535505357,80.53218420822554],[50.12150121501216,80.5271184764159],[50.08550085500855,80.51529843552672],[50.0459004590046,80.49841266282789],[49.72909729097293,80.49503550828814],[49.675096750967526,80.48152689012906],[49.707497074970746,80.46970684923988],[49.757897578975786,80.46295254016036],[49.79749797497976,80.45282107654106],[49.79749797497976,80.42749241749283],[49.808298082980826,80.42580384022293],[49.82269822698228,80.42242668568318],[49.82989829898301,80.41567237660365],[49.82989829898301,80.4089180675241],[49.815498154981555,80.4004751811747],[49.49149491494916,80.36332648123727],[49.1638916389164,80.37514652212644],[48.839888398884,80.38865514028552],[48.793087930879324,80.36501505850717],[48.79668796687969,80.36163790396739],[48.818288182881844,80.34981786307821],[48.65268652686527,80.31773489495043],[48.62748627486275,80.29578339044198],[48.68148681486815,80.28734050409255],[48.89748897488977,80.2822747722829],[48.944289442894444,80.2738318859335],[49.037890378903796,80.24174891780572],[49.02349023490237,80.22992887691655],[48.99108991089912,80.22148599056712],[48.976689766897664,80.21304310421772],[49.070290702907045,80.19953448605867],[49.10629106291063,80.18940302243936],[49.08469084690847,80.17251724974054],[49.063090630906316,80.16914009520076],[49.00909009090091,80.16914009520076],[48.99108991089912,80.16576294066101],[48.987489874898756,80.16238578612123],[48.987489874898756,80.15732005431158],[48.98388983889839,80.15394289977183],[48.969489694896964,80.15225432250193],[48.735487354873555,80.15900863158146],[48.584285842858435,80.20291164059842],[48.52668526685267,80.20966594967794],[48.49788497884978,80.19278017697911],[48.54108541085412,80.16914009520076],[48.55188551885519,80.15900863158146],[48.51228512285124,80.12354850891393],[48.44388443884441,80.10159700440545],[48.37188371883721,80.09146554078617],[48.317883178831806,80.09990842713557],[48.28908289082892,80.11341704529463],[48.224282242822426,80.1353685498031],[48.191881918819206,80.13874570434288],[48.116281162811646,80.137057127073],[48.07668076680767,80.13030281799345],[48.04428044280445,80.11848277710428],[48.04428044280445,80.11172846802475],[48.047880478804785,80.1066627362151],[48.047880478804785,80.09990842713557],[48.03708037080372,80.09146554078617],[48.01908019080193,80.08977696351627],[47.662676626766284,80.0695140362777],[47.62667626676267,80.07289119081744],[47.605076050760516,80.0779569226271],[47.605076050760516,80.0880883862464],[47.637476374763764,80.10328558167535],[47.6338763387634,80.11848277710428],[47.738277382773845,80.16238578612123],[47.788677886778885,80.17589440428029],[48.047880478804785,80.18940302243936],[48.0838808388084,80.20797737240807],[47.90027900279003,80.20122306332854],[47.846278462784625,80.21304310421772],[47.871478714787145,80.2248631451069],[47.939879398794005,80.2248631451069],[47.96867968679689,80.2349946087262],[47.92907929079291,80.24681464961537],[47.67707677076771,80.24850322688525],[47.60147601476015,80.23837176326595],[47.45027450274503,80.24006034053585],[47.33867338673389,80.21304310421772],[47.37467374673747,80.19446875424902],[47.385473854738564,80.18602586789959],[47.21267212672129,80.18940302243936],[47.101071010710115,80.17082867247066],[46.89586895868959,80.19109159970924],[46.892268922689226,80.20460021786829],[46.90306903069032,80.21810883602737],[46.90666906669068,80.22824029964667],[46.88866888668886,80.23668318599607],[46.658266582665846,80.2738318859335],[46.61866618666187,80.29578339044198],[46.65106651066512,80.31435774041068],[47.09027090270902,80.3717693675867],[47.11907119071191,80.36839221304692],[47.16227162271625,80.35826074942761],[47.1910719107191,80.34306355399869],[47.17307173071731,80.32280062676008],[47.22347223472235,80.30929200860103],[47.428674286742876,80.32280062676008],[47.554675546755476,80.30422627679138],[47.637476374763764,80.31604631768056],[48.015480154801566,80.30929200860103],[47.972279722797225,80.32111204949021],[48.13428134281344,80.32617778129986],[48.18828188281884,80.33799782218904],[48.148681486814866,80.34306355399869],[48.065880658806606,80.34644070853844],[47.91107911079112,80.36839221304692],[47.687876878768805,80.37345794485657],[47.662676626766284,80.37852367666622],[47.637476374763764,80.38865514028552],[47.619476194761944,80.40554091298435],[47.91107911079112,80.410606644794],[48.20268202682027,80.41567237660365],[48.23508235082352,80.42749241749283],[48.20268202682027,80.43424672657235],[48.130681306813074,80.43593530384223],[48.098280982809825,80.44606676746153],[48.10908109081092,80.45282107654106],[48.141481414814166,80.46801827197001],[48.10188101881019,80.47646115831941],[47.96867968679689,80.46801827197001],[47.821078210782105,80.47646115831941],[47.42507425074251,80.44268961292175],[47.378273782737836,80.45282107654106],[47.41427414274145,80.46632969470014],[47.713077130771325,80.50685554917732],[48.0118801188012,80.5473814036545],[48.16308163081632,80.53387278549542],[48.19548195481957,80.53556136276532],[48.299882998829986,80.56089002181355],[48.375483754837546,80.57102148543285],[48.41508415084152,80.57102148543285],[48.52668526685267,80.54400424911472],[48.56628566285664,80.54231567184485],[48.559085590855915,80.5372499400352],[48.54108541085412,80.52374132187614],[48.53028530285303,80.51529843552672],[48.56988569885701,80.50516697190741],[48.70308703087031,80.51529843552672],[48.785887858878596,80.49841266282789],[48.82908829088291,80.49841266282789],[48.87228872288725,80.50854412644719],[48.91548915489156,80.52542989914602],[48.93348933489335,80.52880705368577],[48.962289622896236,80.53049563095567],[49.13509135091351,80.51698701279659],[49.18909189091892,80.52205274460624],[49.228692286922865,80.5372499400352],[49.18909189091892,80.5473814036545],[49.17469174691749,80.5558242900039],[49.19269192691928,80.56089002181355],[49.228692286922865,80.56426717635333],[49.246692466924685,80.56933290816298],[49.253892538925385,80.57271006270273],[49.26109261092611,80.57777579451238],[49.271892718927205,80.58284152632203],[49.354693546935465,80.58790725813168],[49.39069390693908,80.59635014448108],[49.40869408694087,80.61661307171968],[49.37629376293765,80.61661307171968],[49.34029340293404,80.61999022625946],[49.30789307893079,80.62843311260886],[49.28629286292863,80.64531888530769],[49.430294302943025,80.65545034892699],[49.631896318963186,80.64025315349804],[49.6678966789668,80.65207319438721],[49.66069660696607,80.65545034892699],[49.63549635496355,80.6655818125463],[49.639096390963914,80.66895896708604],[49.65349653496537,80.68077900797522],[49.64629646296464,80.684156162515],[49.63549635496355,80.68753331705474],[49.624696246962486,80.68753331705474],[49.613896138961394,80.68753331705474],[49.682296822968226,80.7213048624524],[49.62829628296285,80.7314363260717],[49.203492034920345,80.6942876261343],[49.22509225092253,80.71455055337287],[49.26469264692648,80.72805917153195],[49.304293042930425,80.73481348061148],[49.34029340293404,80.73481348061148],[49.30069300693009,80.74663352150066],[49.24309243092432,80.74494494423075],[49.045090450904524,80.71455055337287],[48.99828998289985,80.71961628518252],[48.95508955089551,80.73481348061148],[48.99108991089912,80.74832209877053],[49.07389073890741,80.75845356238983],[49.11349113491136,80.77027360327901],[49.08829088290884,80.77533933508866],[49.001890018900184,80.77533933508866],[49.34029340293404,80.81417661229597],[49.67869678696789,80.85301388950327],[49.757897578975786,80.88509685763103],[49.80109801098013,80.89353974398045],[50.23670236702367,80.93406559845764],[50.301503015030164,80.92224555756846],[50.39870398703988,80.92055698029856],[50.44190441904419,80.91211409394916],[50.44190441904419,80.90535978486963],[50.13230132301325,80.89016258944068],[50.07830078300785,80.87665397128163],[50.02430024300244,80.87327681674185],[49.99909999099992,80.86483393039245],[50.02430024300244,80.8580796213129],[50.37350373503736,80.87665397128163],[50.72270722707228,80.89522832125033],[50.82710827108272,80.91886840302868],[50.855908559085606,80.91886840302868],[50.87750877508776,80.91211409394916],[50.920709207092074,80.8884740121708],[51.046710467104674,80.85132531223337],[51.01791017910179,80.83781669407432],[50.981909819098206,80.8310623849948],[50.79470794707947,80.8310623849948],[50.69030690306903,80.81417661229597],[50.47070470704708,80.80911088048632],[50.47070470704708,80.80404514867666],[50.528305283052845,80.79560226232724],[50.54630546305464,80.79053653051761],[50.51030510305105,80.77702791235853],[50.31230312303123,80.76520787146936],[50.276302763027644,80.75676498511996],[50.251102511025124,80.741567789691],[50.27990279902801,80.741567789691],[50.2979029790298,80.73312490334158],[50.319503195031956,80.72468201699218],[50.34110341103411,80.71623913064275],[50.37350373503736,80.712861976103],[50.654306543065445,80.76520787146936],[50.679506795067965,80.76351929419948],[50.73350733507337,80.74663352150066],[50.76590765907659,80.741567789691],[50.79470794707947,80.74325636696088],[50.84510845108451,80.76858502600913],[50.88470884708849,80.77365075781879],[51.007110071100726,80.77702791235853],[51.039510395103946,80.77533933508866],[51.0539105391054,80.76520787146936],[51.06831068310683,80.7516992533103],[51.10071100711008,80.74832209877053],[51.16191161911621,80.75507640785005],[51.14391143911439,80.76689644873923],[51.15471154711548,80.77533933508866],[51.31311313113133,80.79053653051761],[51.30951309513097,80.78040506689831],[51.3059130591306,80.77533933508866],[51.33471334713349,80.76858502600913],[51.39591395913959,80.7601421396597],[51.449914499144995,80.741567789691],[51.48231482314824,80.73650205788135],[51.68751687516877,80.72805917153195]]],[[[161.39501395013951,-9.413261226616157],[161.39141391413915,-9.414949803886046],[161.38061380613806,-9.418326958425808],[161.37341373413733,-9.420015535695683],[161.37341373413733,-9.398064031187218],[161.36981369813697,-9.379489681218502],[161.34821348213484,-9.344029558550972],[161.35541355413557,-9.33896382674132],[161.35901359013593,-9.33896382674132],[161.36621366213666,-9.350783867630497],[161.38061380613806,-9.365981063059436],[161.4166141661417,-9.386243990298041],[161.42381423814237,-9.39637545391733],[161.42741427414273,-9.411572649346269],[161.45621456214565,-9.453787081093338],[161.48141481414814,-9.504444399189822],[161.49221492214923,-9.519641594618761],[161.49941499414996,-9.528084480968175],[161.5066150661507,-9.550035985476654],[161.51381513815141,-9.560167449095957],[161.52461524615245,-9.570298912715245],[161.53181531815318,-9.582118953604422],[161.54621546215463,-9.6040704581129],[161.55341553415536,-9.622644808081617],[161.55341553415536,-9.639530580780445],[161.55341553415536,-9.676679280717863],[161.55701557015573,-9.693565053416691],[161.57141571415713,-9.725648021544458],[161.57141571415713,-9.749288103322812],[161.56781567815682,-9.77123960783129],[161.55701557015573,-9.789813957800007],[161.549815498155,-9.79319111233977],[161.54621546215463,-9.772928185101179],[161.50301503015032,-9.727336598814347],[161.4958149581496,-9.70369651703598],[161.48861488614887,-9.691876476146803],[161.47781477814777,-9.686810744337151],[161.46701467014674,-9.690187898876914],[161.459814598146,-9.717205135195044],[161.44901449014492,-9.735779485163746],[161.4310143101431,-9.717205135195044],[161.4166141661417,-9.695253630686565],[161.40221402214024,-9.669924971638324],[161.39501395013951,-9.649662044399733],[161.39501395013951,-9.587184685414073],[161.39501395013951,-9.529773058238064],[161.39141391413915,-9.507821553729585],[161.39141391413915,-9.494312935570534],[161.40941409414097,-9.465607121982515],[161.4058140581406,-9.450409926553576],[161.39861398613988,-9.433524153854748],[161.39501395013951,-9.413261226616157]]],[[[160.82620826208262,-9.837094121356714],[160.82620826208262,-9.867488512214607],[160.79740797407976,-9.884374284913434],[160.72180721807217,-9.899571480342374],[160.6858068580686,-9.91139152123155],[160.66420664206646,-9.923211562120727],[160.64620646206464,-9.936720180279792],[160.57420574205742,-9.919834407580964],[160.50940509405098,-9.889440016723086],[160.4878048780488,-9.884374284913434],[160.44460444604448,-9.892817171262848],[160.4338043380434,-9.889440016723086],[160.4230042300423,-9.879308553103783],[160.41580415804157,-9.86917708948448],[160.4086040860409,-9.859045625865193],[160.40500405004053,-9.857357048595304],[160.39060390603908,-9.859045625865193],[160.3870038700387,-9.859045625865193],[160.38340383403835,-9.85566847132543],[160.37980379803798,-9.842159853166365],[160.37260372603726,-9.837094121356714],[160.3438034380344,-9.825274080467537],[160.33660336603367,-9.820208348657886],[160.31860318603185,-9.815142616848235],[160.20700207002074,-9.810076885038598],[160.12420124201242,-9.823585503197648],[160.07740077400774,-9.823585503197648],[160.05220052200525,-9.820208348657886],[160.04140041400416,-9.820208348657886],[160.03060030600307,-9.823585503197648],[160.02340023400234,-9.820208348657886],[160.0018000180002,-9.816831194118123],[159.98019980199803,-9.811765462308472],[159.9585995859959,-9.810076885038598],[159.9369993699937,-9.805011153228946],[159.9045990459905,-9.788125380530118],[159.88659886598867,-9.783059648720467],[159.86859868598685,-9.78643680326023],[159.8505985059851,-9.79319111233977],[159.83619836198363,-9.79319111233977],[159.81459814598145,-9.779682494180705],[159.76779767797677,-9.732402330623984],[159.749797497975,-9.720582289734807],[159.72459724597246,-9.707073671575742],[159.7209972099721,-9.702007939766105],[159.72459724597246,-9.691876476146803],[159.72459724597246,-9.686810744337151],[159.7209972099721,-9.6817450125275],[159.710197101971,-9.680056435257626],[159.7065970659707,-9.676679280717863],[159.70299702997033,-9.66823639436845],[159.69939699396997,-9.658104930749147],[159.69939699396997,-9.649662044399733],[159.69219692196924,-9.64628488985997],[159.67419674196742,-9.642907735320208],[159.67059670596706,-9.636153426240668],[159.67419674196742,-9.627710539891254],[159.67419674196742,-9.617579076271966],[159.6669966699667,-9.595627571763487],[159.6525965259653,-9.575364644524896],[159.63819638196384,-9.556790294556194],[159.62379623796238,-9.539904521857366],[159.60939609396092,-9.528084480968175],[159.60219602196025,-9.52133017188865],[159.5985959859599,-9.512887285539236],[159.6129961299613,-9.50613297645971],[159.62019620196202,-9.497690090110297],[159.62739627396274,-9.487558626490994],[159.62379623796238,-9.477427162871706],[159.60939609396092,-9.457164235633115],[159.60579605796062,-9.447032772013813],[159.60579605796062,-9.435212731124636],[159.6129961299613,-9.409884072076395],[159.6129961299613,-9.398064031187218],[159.60939609396092,-9.386243990298041],[159.60579605796062,-9.37442394940885],[159.59499594995953,-9.364292485789562],[159.59139591395916,-9.3609153312498],[159.59499594995953,-9.35416102217026],[159.60579605796062,-9.344029558550972],[159.60939609396092,-9.310258013153316],[159.61659616596165,-9.295060817724362],[159.6309963099631,-9.289995085914725],[159.64539645396457,-9.284929354105074],[159.710197101971,-9.247780654167656],[159.74259742597428,-9.259600695056832],[159.77859778597787,-9.281552199565311],[159.83259832598327,-9.330520940391906],[159.87219872198722,-9.359226753979911],[159.87939879398795,-9.367669640329325],[159.8829988299883,-9.382866835758264],[159.8937989379894,-9.399752608457092],[159.90819908199086,-9.414949803886046],[159.92259922599226,-9.426769844775222],[159.94059940599408,-9.433524153854748],[159.9621996219962,-9.435212731124636],[159.99819998199985,-9.433524153854748],[160.00900009000094,-9.431835576584874],[160.01980019800197,-9.428458422045097],[160.0270002700027,-9.421704112965571],[160.03420034200343,-9.41663838115592],[160.04500045000452,-9.414949803886046],[160.05580055800561,-9.41663838115592],[160.07740077400774,-9.426769844775222],[160.09900099000993,-9.431835576584874],[160.10980109801102,-9.433524153854748],[160.12060120601205,-9.433524153854748],[160.13140131401315,-9.428458422045097],[160.14940149401497,-9.414949803886046],[160.1566015660157,-9.413261226616157],[160.17820178201782,-9.414949803886046],[160.2106021060211,-9.425081267505334],[160.23220232202323,-9.426769844775222],[160.2358023580236,-9.425081267505334],[160.24660246602468,-9.414949803886046],[160.25020250202505,-9.413261226616157],[160.25740257402578,-9.413261226616157],[160.26460264602645,-9.418326958425808],[160.27180271802717,-9.420015535695683],[160.34740347403476,-9.420015535695683],[160.35100351003513,-9.418326958425808],[160.36180361803622,-9.413261226616157],[160.36540365403653,-9.413261226616157],[160.3690036900369,-9.414949803886046],[160.37260372603726,-9.420015535695683],[160.37980379803798,-9.425081267505334],[160.3978039780398,-9.433524153854748],[160.41940419404193,-9.460541390172878],[160.45900459004594,-9.475738585601817],[160.4770047700477,-9.492624358300645],[160.50220502205025,-9.53652736731759],[160.5418054180542,-9.531461635507952],[160.5850058500585,-9.551724562746543],[160.62820628206282,-9.582118953604422],[160.65340653406537,-9.61082476719244],[160.6606066060661,-9.627710539891254],[160.66420664206646,-9.647973467129859],[160.66780667806677,-9.690187898876914],[160.67140671406713,-9.698630785226328],[160.68220682206822,-9.698630785226328],[160.70020700207004,-9.693565053416691],[160.71100711007114,-9.695253630686565],[160.72180721807217,-9.700319362496217],[160.74340743407436,-9.713827980655282],[160.77580775807758,-9.722270867004696],[160.78660786607867,-9.727336598814347],[160.78660786607867,-9.737468062433635],[160.78660786607867,-9.7509766805927],[160.79020790207903,-9.764485298751765],[160.80100801008012,-9.769551030561402],[160.8046080460805,-9.774616762371053],[160.80820808208085,-9.784748225990356],[160.8046080460805,-9.80669973049882],[160.80820808208085,-9.816831194118123],[160.81540815408158,-9.821896925927774],[160.8190081900819,-9.8286512350073],[160.82620826208262,-9.837094121356714]]],[[[124.4658446584466,-9.17854898610247],[124.51624516245164,-9.17854898610247],[124.56304563045632,-9.170106099753056],[124.60264602646026,-9.156597481593991],[124.66744667446676,-9.112694472577033],[124.67104671046712,-9.107628740767396],[124.67464674646749,-9.099185854417982],[124.68184681846822,-9.075545772639614],[124.68904689046889,-9.068791463560089],[124.69264692646925,-9.0671028862902],[124.75744757447575,-9.048528536321498],[124.76824768247684,-9.043462804511847],[124.78984789847897,-9.018134145463605],[124.82584825848261,-9.008002681844317],[124.84024840248401,-9.001248372764778],[124.86904869048692,-8.994494063685252],[124.89784897848978,-8.974231136446662],[124.91944919449196,-8.96241109555747],[124.95544955449554,-8.94214816831888],[124.97344973449736,-8.92188524108029],[125.0238502385024,-8.849276418475341],[125.02745027450277,-8.834079223046388],[125.03825038250386,-8.825636336696974],[125.08145081450817,-8.808750563998146],[125.09585095850957,-8.795241945839095],[125.09945099450994,-8.778356173140267],[125.10665106651066,-8.688861577836477],[125.1138511385114,-8.665221496058123],[125.12825128251285,-8.644958568819533],[125.14265142651425,-8.631449950660468],[125.16425164251643,-8.624695641580942],[125.21105211052111,-8.617941332501402],[125.22905229052293,-8.607809868882114],[125.23625236252366,-8.606121291612226],[125.27225272252724,-8.611187023421877],[125.2866528665287,-8.607809868882114],[125.31545315453155,-8.590924096183286],[125.38025380253805,-8.570661168944696],[125.40185401854018,-8.568972591674807],[125.46665466654667,-8.574038323484459],[125.48825488254886,-8.568972591674807],[125.54225542255426,-8.545332509896454],[125.56745567455675,-8.541955355356691],[125.5926559265593,-8.550398241706105],[125.60345603456034,-8.548709664436217],[125.63225632256325,-8.521692428118087],[125.65025650256501,-8.5301353144675],[125.67905679056793,-8.5301353144675],[125.73305733057333,-8.521692428118087],[125.85185851858517,-8.484543728180668],[125.89865898658985,-8.481166573640905],[126.0030600306003,-8.499740923609622],[126.0426604266043,-8.518315273578324],[126.06786067860679,-8.521692428118087],[126.08946089460898,-8.51662669630845],[126.13266132661329,-8.504806655419273],[126.14346143461438,-8.503118078149384],[126.15426154261542,-8.501429500879496],[126.20106201062009,-8.499740923609622],[126.2406624066241,-8.49467519179997],[126.26226262262622,-8.484543728180668],[126.30546305463054,-8.45414933732279],[126.33786337863381,-8.444017873703487],[126.37026370263703,-8.425443523734785],[126.38106381063812,-8.423754946464896],[126.40266402664025,-8.423754946464896],[126.40986409864098,-8.418689214655245],[126.43146431464316,-8.43219783281431],[126.44946449464499,-8.440640719163724],[126.47466474664748,-8.445706450973375],[126.49626496264966,-8.44739502824325],[126.51066510665106,-8.452460760052901],[126.55026550265507,-8.486232305450557],[126.58986589865901,-8.472723687291492],[126.66546665466655,-8.437263564623962],[126.69426694266946,-8.430509255544422],[126.71226712267122,-8.417000637385371],[126.71946719467195,-8.413623482845594],[126.73026730267304,-8.41193490557572],[126.74826748267486,-8.418689214655245],[126.75546755467553,-8.418689214655245],[126.7986679866799,-8.410246328305831],[126.84186841868421,-8.39167197833713],[126.94626946269466,-8.319063155732167],[126.96786967869679,-8.308931692112878],[126.98226982269824,-8.312308846652641],[127.00027000270006,-8.324128887541818],[127.06867068670687,-8.357900432939473],[127.09027090270905,-8.362966164749125],[127.11187111871118,-8.364654742018999],[127.13707137071373,-8.362966164749125],[127.15507155071549,-8.35452327839971],[127.18747187471877,-8.332571773891232],[127.1946719467195,-8.329194619351469],[127.20547205472053,-8.332571773891232],[127.21267212672126,-8.339326082970757],[127.21267212672126,-8.347768969320171],[127.21987219872199,-8.357900432939473],[127.24147241472417,-8.36972047382865],[127.28827288272885,-8.383229091987715],[127.30627306273061,-8.395049132876892],[127.31347313473134,-8.415312060115482],[127.3026730267303,-8.43219783281431],[127.23067230672308,-8.486232305450557],[127.1838718387184,-8.531823891737389],[127.09387093870941,-8.602744137072463],[127.02907029070292,-8.665221496058123],[127.02187021870219,-8.675352959677426],[127.0110701107011,-8.6770415369473],[126.93906939069393,-8.69223873237624],[126.87426874268743,-8.737830318663072],[126.84546845468458,-8.753027514092025],[126.69426694266946,-8.763158977711313],[126.67266672666727,-8.768224709520965],[126.66186661866618,-8.774979018600504],[126.63306633066333,-8.795241945839095],[126.62226622266223,-8.798619100378858],[126.6150661506615,-8.800307677648732],[126.59346593465938,-8.80199625491862],[126.58266582665829,-8.805373409458383],[126.54306543065434,-8.850964995745215],[126.5070650706507,-8.911753777461001],[126.47106471064711,-8.94214816831888],[126.43146431464316,-8.953968209208071],[126.16506165061651,-8.987739754605713],[126.13626136261365,-8.999559795494903],[126.1218612186122,-9.006314104574429],[126.04626046260466,-9.056971422670912],[125.94545945459458,-9.126203090736098],[125.92745927459276,-9.13126882254575],[125.869858698587,-9.122825936196335],[125.84825848258481,-9.12451451346621],[125.83745837458378,-9.12958024527586],[125.81585815858159,-9.148154595244577],[125.8050580505805,-9.15153174978434],[125.76545765457655,-9.15153174978434],[125.74385743857442,-9.156597481593991],[125.67905679056793,-9.19374618153141],[125.6610566105661,-9.19374618153141],[125.61065610656107,-9.18699187245187],[125.5926559265593,-9.190369026991647],[125.57105571055712,-9.205566222420586],[125.5530555305553,-9.217386263309763],[125.48825488254886,-9.241026345088116],[125.38025380253805,-9.281552199565311],[125.34425344253441,-9.303503704073776],[125.29025290252906,-9.345718135820846],[125.26505265052651,-9.357538176710023],[125.25065250652506,-9.371046794869088],[125.2326523265233,-9.399752608457092],[125.2218522185222,-9.411572649346269],[125.21105211052111,-9.420015535695683],[125.19665196651965,-9.425081267505334],[125.14985149851498,-9.428458422045097],[125.13185131851321,-9.433524153854748],[125.1138511385114,-9.44365561747405],[125.09585095850957,-9.460541390172878],[125.05985059850599,-9.48587004922112],[125.03105031050313,-9.507821553729585],[125.00225002250022,-9.53652736731759],[124.98784987849882,-9.577053221794785],[124.98064980649809,-9.649662044399733],[124.969849698497,-9.663170662558798],[124.87624876248765,-9.72395944427457],[124.84744847448474,-9.747599526052937],[124.75744757447575,-9.850602739515779],[124.74664746647466,-9.886062862183309],[124.73584735847362,-9.899571480342374],[124.67824678246785,-9.929965871200267],[124.64224642246421,-9.956983107518383],[124.60984609846099,-9.987377498376276],[124.55944559445595,-10.014394734694392],[124.54144541445413,-10.03634623920287],[124.52344523445237,-10.083626402759592],[124.50904509045091,-10.095446443648768],[124.49824498244982,-10.112332216347596],[124.45144451444514,-10.146103761745252],[124.41904419044192,-10.16298953444408],[124.37944379443798,-10.169743843523605],[124.27144271442717,-10.166366688983842],[124.19584195841958,-10.173120998063368],[124.16344163441636,-10.179875307142908],[124.15264152641527,-10.178186729873019],[124.1346413464135,-10.171432420793494],[124.12384123841241,-10.173120998063368],[124.10944109441095,-10.184941038952545],[124.08784087840877,-10.22546689342974],[124.07704077040773,-10.233909779779154],[124.05904059040591,-10.23897551158879],[124.04824048240482,-10.249106975208093],[124.04464044640446,-10.262615593367158],[124.03384033840342,-10.276124211526223],[124.01944019440197,-10.28118994333586],[123.93303933039334,-10.294698561494926],[123.82503825038253,-10.363930229560111],[123.79983799837999,-10.374061693179414],[123.78903789037889,-10.368995961369762],[123.77823778237786,-10.358864497750474],[123.75663756637567,-10.360553075020349],[123.72063720637209,-10.372373115909525],[123.6990369903699,-10.367307384099888],[123.67743677436778,-10.357175920480586],[123.65943659436596,-10.348733034131172],[123.64143641436414,-10.355487343210697],[123.61623616236164,-10.36561880683],[123.60183601836019,-10.362241652290237],[123.57303573035733,-10.336912993241995],[123.55863558635588,-10.333535838702232],[123.53703537035369,-10.331847261432344],[123.51543515435156,-10.335224415972107],[123.50103501035011,-10.353798765940823],[123.49383493834938,-10.360553075020349],[123.48303483034829,-10.36561880683],[123.47223472234725,-10.36561880683],[123.46863468634689,-10.355487343210697],[123.47223472234725,-10.34535587959141],[123.48663486634865,-10.32340437508293],[123.49383493834938,-10.301452870574451],[123.49383493834938,-10.282878520605749],[123.49383493834938,-10.24572982066833],[123.50103501035011,-10.230532625239391],[123.51543515435156,-10.213646852540563],[123.54783547835478,-10.186629616222433],[123.59823598235982,-10.166366688983842],[123.61263612636128,-10.15623522536454],[123.61983619836201,-10.152858070824777],[123.65583655836559,-10.146103761745252],[123.66663666636668,-10.14272660720549],[123.74943749437494,-10.097135020918657],[123.7638376383764,-10.075183516410178],[123.74583745837458,-10.049854857361936],[123.72783727837282,-10.039723393742634],[123.70623706237063,-10.03128050739322],[123.68463684636845,-10.024526198313694],[123.65943659436596,-10.022837621043806],[123.63783637836377,-10.029591930123345],[123.60543605436055,-10.054920589171587],[123.58743587435873,-10.049854857361936],[123.5766357663577,-10.034657661932997],[123.5766357663577,-10.014394734694392],[123.58383583835837,-9.943474489359332],[123.5910359103591,-9.928277293930378],[123.6306363063631,-9.9063257894219],[123.64863648636486,-9.889440016723086],[123.65943659436596,-9.87086566675437],[123.66303663036632,-9.850602739515779],[123.66303663036632,-9.826962657737425],[123.65943659436596,-9.816831194118123],[123.6450364503645,-9.796568266879532],[123.6450364503645,-9.783059648720467],[123.6450364503645,-9.774616762371053],[123.65223652236523,-9.769551030561402],[123.65943659436596,-9.76617387602164],[123.66303663036632,-9.761108144211988],[123.67023670236705,-9.740845216973398],[123.67023670236705,-9.649662044399733],[123.67743677436778,-9.629399117161142],[123.68823688236881,-9.61082476719244],[123.71343713437136,-9.592250417223724],[123.74583745837458,-9.573676067255008],[123.75663756637567,-9.566921758175482],[123.78543785437853,-9.526395903698301],[123.79263792637926,-9.516264440078999],[123.79983799837999,-9.514575862809124],[123.81063810638108,-9.512887285539236],[123.82143821438217,-9.509510130999473],[123.8286382863829,-9.504444399189822],[123.83583835838357,-9.492624358300645],[123.8430384303843,-9.487558626490994],[123.84663846638466,-9.487558626490994],[123.85743857438575,-9.489247203760883],[123.86463864638648,-9.487558626490994],[123.8970389703897,-9.440278462934288],[123.9078390783908,-9.433524153854748],[123.91143911439116,-9.426769844775222],[123.95823958239583,-9.386243990298041],[123.97983979839802,-9.359226753979911],[123.99063990639905,-9.347406713090734],[124.00864008640087,-9.344029558550972],[124.03024030240306,-9.342340981281083],[124.04824048240482,-9.337275249471432],[124.12744127441277,-9.305192281343665],[124.14544145441454,-9.303503704073776],[124.159841598416,-9.29674939499425],[124.18144181441818,-9.264666426866484],[124.19224192241921,-9.254534963247181],[124.22104221042213,-9.241026345088116],[124.28944289442893,-9.220763417849525],[124.3866438664387,-9.202189067880823],[124.39744397443974,-9.197123336071172],[124.40464404644047,-9.185303295181996],[124.42624426244265,-9.181926140642233],[124.45144451444514,-9.180237563372344],[124.4658446584466,-9.17854898610247]]],[[[155.93375933759341,-6.640617349468769],[155.9409594095941,-6.662568853977248],[155.96255962559627,-6.701406131184541],[155.96615966159663,-6.726734790232783],[155.96255962559627,-6.750374872011136],[155.94815948159481,-6.774014953789504],[155.93015930159305,-6.794277881028094],[155.91215912159123,-6.8094750764570335],[155.92295922959232,-6.763883490170201],[155.92295922959232,-6.738554831121959],[155.9157591575916,-6.726734790232783],[155.90855908559087,-6.736866253852085],[155.879758797588,-6.80103219010762],[155.85455854558546,-6.774014953789504],[155.8149581495815,-6.7824578401389175],[155.77895778957793,-6.807786499187159],[155.75375753757538,-6.829738003695624],[155.7285572855729,-6.861820971823406],[155.7177571775718,-6.873641012712582],[155.6961569615696,-6.877018167252345],[155.68535685356852,-6.8753295899824565],[155.66735667356676,-6.865198126363168],[155.65655656556567,-6.86350954909328],[155.609756097561,-6.86350954909328],[155.56655566555668,-6.853378085473992],[155.52335523355237,-6.8398694673149265],[155.44775447754478,-6.80103219010762],[155.40455404554046,-6.767260644709964],[155.39375393753937,-6.7605063356304385],[155.37935379353797,-6.757129181090676],[155.36135361353615,-6.745309140201499],[155.32895328953293,-6.719980481153257],[155.3217532175322,-6.708160440264081],[155.30735307353075,-6.686208935755602],[155.18855188551885,-6.554499908704756],[155.17415174151745,-6.5274826723866255],[155.1921519215192,-6.5274826723866255],[155.19935199351994,-6.530859826926388],[155.20655206552067,-6.534236981466151],[155.2245522455225,-6.5004654360685095],[155.23535235352352,-6.454873849781677],[155.2389523895239,-6.405905108955068],[155.23535235352352,-6.363690677207998],[155.2137521375214,-6.316410513651292],[155.18135181351812,-6.29108185460305],[155.08055080550804,-6.262376041015045],[155.04455044550446,-6.242113113776455],[155.02295022950233,-6.223538763807738],[155.00135001350014,-6.2150958774583245],[154.99054990549905,-6.208341568378799],[154.98334983349832,-6.199898682029385],[154.97974979749796,-6.193144372949845],[154.97614976149765,-6.171192868441381],[154.95814958149583,-6.130667013964185],[154.94374943749438,-6.112092663995483],[154.940149401494,-6.107026932185832],[154.93294932949328,-6.096895468566544],[154.8861488614886,-6.076632541327939],[154.85734857348575,-6.0428609959302975],[154.8321483214832,-6.02597522323147],[154.8177481774818,-6.015843759612167],[154.8069480694807,-6.002335141453102],[154.80334803348035,-5.988826523294051],[154.79254792547925,-5.975317905134986],[154.75654756547567,-5.948300668816856],[154.74574745747458,-5.928037741578265],[154.74574745747458,-5.916217700689089],[154.74214742147421,-5.8976433507203865],[154.74214742147421,-5.887511887101084],[154.74574745747458,-5.877380423481782],[154.7529475294753,-5.8672489598624935],[154.7529475294753,-5.855428918973317],[154.74934749347494,-5.835165991734726],[154.73854738547385,-5.818280219035898],[154.71334713347136,-5.794640137257531],[154.70614706147063,-5.78113151909848],[154.70254702547027,-5.77437721001894],[154.6989469894699,-5.767622900939415],[154.70254702547027,-5.7574914373201125],[154.7205472054721,-5.716965582842931],[154.73134731347312,-5.630848142078918],[154.73854738547385,-5.610585214840327],[154.74214742147421,-5.592010864871611],[154.72774727747276,-5.575125092172783],[154.72774727747276,-5.568370783093258],[154.73134731347312,-5.566682205823369],[154.73134731347312,-5.564993628553495],[154.73134731347312,-5.563305051283606],[154.7349473494735,-5.561616474013718],[154.7529475294753,-5.578502246712546],[154.76014760147604,-5.5818794012523085],[154.76734767347676,-5.575125092172783],[154.77094770947713,-5.558239319473955],[154.7637476374764,-5.543042124045016],[154.75654756547567,-5.529533505885951],[154.7529475294753,-5.517713464996774],[154.74214742147421,-5.494073383218421],[154.6989469894699,-5.451858951471351],[154.6989469894699,-5.4315960242327606],[154.7349473494735,-5.426530292423109],[154.7745477454775,-5.450170374201463],[154.81054810548108,-5.483941919599118],[154.82854828548284,-5.514336310457011],[154.84654846548466,-5.510959155917249],[154.86454864548648,-5.519402042266648],[154.88254882548824,-5.536287814965476],[154.89334893348934,-5.5548621649341925],[154.8969489694897,-5.54473070131489],[154.90414904149043,-5.541353546775127],[154.91494914949152,-5.543042124045016],[154.9257492574926,-5.534599237695602],[154.93654936549365,-5.539664969505253],[154.9509495094951,-5.541353546775127],[155.01935019350196,-5.541353546775127],[155.030150301503,-5.54473070131489],[155.02295022950233,-5.5548621649341925],[155.02295022950233,-5.561616474013718],[155.03375033750336,-5.568370783093258],[155.03735037350373,-5.561616474013718],[155.0409504095041,-5.553173587664304],[155.04815048150482,-5.548107855854667],[155.06615066150664,-5.548107855854667],[155.069750697507,-5.55148501039443],[155.069750697507,-5.559927896743844],[155.069750697507,-5.568370783093258],[155.06255062550628,-5.578502246712546],[155.06255062550628,-5.5852565557920855],[155.06615066150664,-5.588633710331848],[155.08775087750877,-5.595388019411374],[155.09135091350913,-5.595388019411374],[155.0949509495095,-5.608896637570439],[155.09855098550986,-5.630848142078918],[155.12735127351277,-5.661242532936797],[155.14535145351454,-5.706834119223629],[155.16335163351636,-5.728785623732108],[155.16695166951672,-5.732162778271871],[155.17415174151745,-5.735539932811648],[155.1777517775178,-5.73891708735141],[155.18855188551885,-5.752425705510461],[155.1921519215192,-5.755802860050238],[155.1921519215192,-5.765934323669526],[155.18855188551885,-5.801394446337071],[155.19575195751958,-5.818280219035898],[155.2029520295203,-5.853740341703428],[155.2137521375214,-5.870626114402256],[155.22815228152285,-5.865560382592605],[155.24615246152462,-5.870626114402256],[155.26055260552607,-5.87906900075167],[155.2785527855279,-5.884134732561321],[155.32895328953293,-5.938169205197568],[155.33255332553324,-5.94154635973733],[155.3361533615336,-5.946612091546982],[155.34335343353433,-5.951677823356633],[155.3469534695347,-5.953366400626507],[155.3577535775358,-5.951677823356633],[155.36495364953652,-5.951677823356633],[155.37215372153725,-5.95674355516627],[155.38295382953828,-5.975317905134986],[155.39735397353974,-5.992203677833814],[155.40455404554046,-6.005712295992879],[155.41535415354156,-6.058058191359237],[155.41895418954192,-6.068189654978539],[155.45135451354514,-6.137421323043725],[155.50175501755018,-6.189767218410083],[155.5089550895509,-6.191455795679971],[155.519755197552,-6.189767218410083],[155.5305553055531,-6.183012909330557],[155.53775537755376,-6.171192868441381],[155.55215552155522,-6.1796357547907945],[155.55935559355595,-6.194832950219734],[155.57015570155704,-6.211718722918562],[155.59175591755917,-6.220161609267976],[155.61695616956172,-6.216784454728213],[155.62055620556208,-6.204964413839036],[155.62415624156245,-6.191455795679971],[155.63855638556385,-6.177947177520906],[155.63855638556385,-6.18639006387032],[155.63495634956348,-6.189767218410083],[155.63495634956348,-6.193144372949845],[155.63855638556385,-6.198210104759497],[155.64575645756457,-6.204964413839036],[155.6421564215642,-6.216784454728213],[155.66735667356676,-6.240424536506566],[155.6745567455675,-6.26406461828492],[155.68535685356852,-6.269130350094571],[155.69255692556925,-6.2725075046343335],[155.70335703357034,-6.274196081904222],[155.71415714157143,-6.279261813713873],[155.72135721357216,-6.29108185460305],[155.73575735757356,-6.314721936381403],[155.74655746557465,-6.329919131810357],[155.75735757357575,-6.343427749969408],[155.77535775357757,-6.35355921358871],[155.79335793357933,-6.355247790858584],[155.8149581495815,-6.365379254477887],[155.82935829358297,-6.385642181716477],[155.8509585095851,-6.43123376800331],[155.87255872558728,-6.461628158861203],[155.89775897758977,-6.488645395179319],[155.9157591575916,-6.517351208767323],[155.9265592655927,-6.554499908704756],[155.9265592655927,-6.566319949593932],[155.91935919359196,-6.5848942995626345],[155.91935919359196,-6.596714340451811],[155.92295922959232,-6.608534381341002],[155.93015930159305,-6.630485885849467],[155.93375933759341,-6.640617349468769]]],[[[154.72774727747276,-5.2120809791479985],[154.72774727747276,-5.2424753700058915],[154.6989469894699,-5.335347119849445],[154.6989469894699,-5.399513056104979],[154.6881468814688,-5.426530292423109],[154.66654666546668,-5.438350333312286],[154.6737467374674,-5.418087406073695],[154.6557465574656,-5.423153137883347],[154.64854648546486,-5.434973178772523],[154.6449464494645,-5.448481796931588],[154.63054630546304,-5.458613260550877],[154.61254612546128,-5.389381592485691],[154.57294572945733,-5.291444110832487],[154.56934569345697,-5.262738297244482],[154.56214562145624,-5.239098215466129],[154.56214562145624,-5.225589597307064],[154.57294572945733,-5.218835288227538],[154.580145801458,-5.2120809791479985],[154.58374583745837,-5.195195206449171],[154.58374583745837,-5.13947215654305],[154.5765457654577,-5.1192092293044595],[154.56214562145624,-5.115832074764697],[154.5369453694537,-5.137783579273162],[154.54054540545405,-5.104012033875506],[154.5657456574566,-5.0668633339380875],[154.59454594545946,-5.03478036581032],[154.62334623346237,-5.012828861301841],[154.6557465574656,-5.019583170381381],[154.67734677346772,-5.046600406699497],[154.69174691746917,-5.080371952097153],[154.69174691746917,-5.109077765685157],[154.6881468814688,-5.13947215654305],[154.6881468814688,-5.1546693519719895],[154.69174691746917,-5.169866547400943],[154.70254702547027,-5.179998011020231],[154.71334713347136,-5.1850637428298825],[154.7205472054721,-5.193506629179296],[154.72774727747276,-5.2120809791479985]]],[[[152.41652416524164,-4.345840839698184],[152.41292412924133,-4.361038035127123],[152.3661236612366,-4.4724841349393785],[152.3625236252363,-4.506255680337034],[152.36972369723696,-4.54002722573469],[152.39852398523988,-4.60250458472035],[152.40932409324097,-4.641341861927657],[152.41292412924133,-4.683556293674712],[152.3949239492395,-4.747722229930261],[152.38772387723878,-4.791625238947219],[152.3229232292323,-4.891251297870298],[152.31212312123125,-4.898005606949823],[152.3085230852309,-4.901382761489586],[152.29052290522907,-4.935154306887242],[152.28332283322834,-4.941908615966767],[152.26532265322652,-4.9520400795860695],[152.24732247322476,-4.975680161364423],[152.2329223292233,-4.9824344704439625],[152.189721897219,-4.989188779523488],[152.15732157321577,-4.99932024314279],[152.13572135721358,-4.99932024314279],[152.08532085320854,-4.9875002022535995],[152.0709207092071,-4.985811624983725],[152.04932049320496,-4.980745893174074],[152.03852038520387,-4.9790573159041855],[152.02772027720277,-4.9875002022535995],[152.01332013320132,-4.9824344704439625],[151.9917199171992,-4.97230300682466],[151.97371973719737,-4.984123047713837],[151.970119701197,-5.004385974952427],[151.970119701197,-5.122586383844222],[151.97731977319773,-5.147915042892464],[151.98811988119883,-5.164800815591292],[152.03852038520387,-5.205326670068473],[152.0457204572046,-5.2120809791479985],[152.0457204572046,-5.222212442767301],[152.05292052920532,-5.228966751846826],[152.06372063720636,-5.2340324836564776],[152.08172081720818,-5.239098215466129],[152.12132121321213,-5.291444110832487],[152.12852128521286,-5.308329883531314],[152.14652146521468,-5.345478583468733],[152.15012150121504,-5.3691186652471],[152.12132121321213,-5.424841715153221],[152.1141211412114,-5.426530292423109],[152.1105211052111,-5.433284601502635],[152.10332103321036,-5.441727487852049],[152.10332103321036,-5.448481796931588],[152.09972099721,-5.455236106011114],[152.0889208892089,-5.456924683281002],[152.07812078120782,-5.456924683281002],[152.06732067320672,-5.458613260550877],[152.02052020520205,-5.483941919599118],[152.01332013320132,-5.48900765140877],[151.970119701197,-5.534599237695602],[151.96291962919628,-5.536287814965476],[151.93051930519306,-5.541353546775127],[151.89811898118984,-5.553173587664304],[151.88731887318875,-5.5548621649341925],[151.86931869318693,-5.561616474013718],[151.85491854918553,-5.578502246712546],[151.83331833318334,-5.593699442141499],[151.80811808118085,-5.595388019411374],[151.78651786517867,-5.5852565557920855],[151.7577175771758,-5.548107855854667],[151.739717397174,-5.534599237695602],[151.72171721717217,-5.529533505885951],[151.69651696516968,-5.527844928616062],[151.67131671316713,-5.529533505885951],[151.65331653316537,-5.537976392235365],[151.63171631716318,-5.570059360363132],[151.6209162091621,-5.575125092172783],[151.6065160651607,-5.57174793763302],[151.60291602916033,-5.564993628553495],[151.60291602916033,-5.5548621649341925],[151.59931599315996,-5.54473070131489],[151.58131581315814,-5.534599237695602],[151.51291512915128,-5.534599237695602],[151.48051480514806,-5.529533505885951],[151.46251462514624,-5.534599237695602],[151.4517145171452,-5.548107855854667],[151.44451444514448,-5.570059360363132],[151.4517145171452,-5.58694513306196],[151.45891458914588,-5.600453751221025],[151.4661146611466,-5.6122737921102015],[151.46971469714697,-5.615650946649964],[151.49491494914952,-5.617339523919853],[151.50211502115025,-5.620716678459615],[151.5309153091531,-5.647733914777746],[151.5309153091531,-5.6646196874765735],[151.51651516515165,-5.681505460175387],[151.4877148771488,-5.689948346524801],[151.4661146611466,-5.684882614715164],[151.44811448114484,-5.693325501064578],[151.43011430114302,-5.706834119223629],[151.41571415714157,-5.7220313146525825],[151.40851408514084,-5.735539932811648],[151.40851408514084,-5.755802860050238],[151.40491404914053,-5.77437721001894],[151.39411394113944,-5.791262982717768],[151.3869138691387,-5.804771600876833],[151.3545135451355,-5.833477414464838],[151.3437134371344,-5.841920300814252],[151.31131311313112,-5.855428918973317],[151.29691296912972,-5.85880607351308],[151.28611286112863,-5.855428918973317],[151.27171271712717,-5.874003268942019],[151.2357123571236,-5.901020505260149],[151.21771217712177,-5.917906277958977],[151.2141121411214,-5.928037741578265],[151.21051210512104,-5.936480627927679],[151.20691206912068,-5.943234937007219],[151.18171181711818,-5.963497864245809],[151.17451174511746,-5.963497864245809],[151.1709117091171,-5.951677823356633],[151.1169111691117,-5.971940750595223],[151.08811088110883,-5.985449368754274],[151.07371073710738,-6.004023718722991],[151.05931059310592,-6.029352377771232],[151.03051030510306,-6.032729532310995],[150.9729097290973,-6.020909491421818],[150.90090900909013,-6.036106686850758],[150.89010890108904,-6.044549573200172],[150.87930879308794,-6.054681036819474],[150.86130861308612,-6.0428609959302975],[150.8289082890829,-6.014155182342293],[150.82170821708218,-6.014155182342293],[150.8181081810818,-6.024286645961581],[150.81090810908108,-6.036106686850758],[150.80730807308072,-6.0479267277399344],[150.8181081810818,-6.071566809518302],[150.81090810908108,-6.083386850407479],[150.80370803708036,-6.095206891296655],[150.79650796507968,-6.120535550344897],[150.7857078570786,-6.1272898594244225],[150.76770767707677,-6.130667013964185],[150.7317073170732,-6.14417563212325],[150.6957069570696,-6.15092994120279],[150.68850688506888,-6.154307095742553],[150.67770677706778,-6.162749982091967],[150.67050670506706,-6.162749982091967],[150.6669066690667,-6.155995673012427],[150.65970659706596,-6.147552786663013],[150.64530645306456,-6.147552786663013],[150.62370623706238,-6.1576842502823155],[150.60570605706056,-6.172881445711255],[150.59490594905952,-6.18639006387032],[150.59130591305916,-6.183012909330557],[150.5877058770588,-6.177947177520906],[150.55170551705515,-6.21340730018845],[150.53010530105303,-6.22860449561739],[150.50850508505084,-6.233670227427041],[150.50130501305011,-6.238735959236678],[150.47610476104762,-6.265753195554808],[150.46530465304653,-6.274196081904222],[150.42210422104222,-6.286016122793399],[150.39690396903973,-6.289393277333161],[150.3789037890379,-6.284327545523524],[150.3681036810368,-6.279261813713873],[150.35730357303572,-6.282638968253636],[150.3465034650347,-6.29108185460305],[150.33930339303396,-6.2944590091428125],[150.3357033570336,-6.292770431872924],[150.33210332103323,-6.287704700063287],[150.32850328503287,-6.282638968253636],[150.3249032490325,-6.280950390983747],[150.32130321303214,-6.282638968253636],[150.3141031410314,-6.286016122793399],[150.27450274502746,-6.2944590091428125],[150.2457024570246,-6.296147586412701],[150.2277022770228,-6.29108185460305],[150.22050220502206,-6.27588465917411],[150.21330213302133,-6.269130350094571],[150.1917019170192,-6.265753195554808],[150.18450184501847,-6.260687463745157],[150.17730177301775,-6.257310309205394],[150.1629016290163,-6.258998886475283],[150.14490144901453,-6.270818927364459],[150.1269012690127,-6.289393277333161],[150.10170101701016,-6.3029018954922265],[150.0837008370084,-6.297836163682575],[150.0837008370084,-6.292770431872924],[150.08010080100803,-6.287704700063287],[150.08010080100803,-6.277573236443985],[150.08010080100803,-6.2725075046343335],[150.0729007290073,-6.269130350094571],[150.06930069300694,-6.2674417728246965],[150.05490054900548,-6.257310309205394],[150.0477004770048,-6.262376041015045],[150.04050040500408,-6.280950390983747],[150.03690036900372,-6.282638968253636],[150.02610026100263,-6.287704700063287],[150.03690036900372,-6.297836163682575],[150.03690036900372,-6.307967627301878],[150.02610026100263,-6.316410513651292],[150.01170011700117,-6.321476245460943],[150.01530015300153,-6.306279050031989],[150.01170011700117,-6.29108185460305],[150.00090000900008,-6.279261813713873],[149.99009990099904,-6.274196081904222],[149.97569975699759,-6.27588465917411],[149.95769957699576,-6.282638968253636],[149.939699396994,-6.2944590091428125],[149.92169921699218,-6.307967627301878],[149.9108991089911,-6.2944590091428125],[149.90009900099,-6.29108185460305],[149.89289892898933,-6.2944590091428125],[149.88209882098823,-6.2944590091428125],[149.85689856898568,-6.292770431872924],[149.84969849698496,-6.2944590091428125],[149.82449824498246,-6.289393277333161],[149.72729727297275,-6.287704700063287],[149.72009720097202,-6.29108185460305],[149.7020970209702,-6.304590472762115],[149.69129691296916,-6.307967627301878],[149.66609666096662,-6.3029018954922265],[149.65169651696516,-6.3029018954922265],[149.6336963369634,-6.307967627301878],[149.63009630096303,-6.299524740952464],[149.59049590495908,-6.270818927364459],[149.579695796958,-6.260687463745157],[149.57609576095763,-6.24886742285598],[149.56169561695617,-6.226915918347501],[149.54729547295472,-6.196521527489622],[149.489694896949,-6.120535550344897],[149.46449464494646,-6.101961200376181],[149.36729367293674,-6.076632541327939],[149.34929349293492,-6.063123923168888],[149.33849338493388,-6.058058191359237],[149.32049320493206,-6.054681036819474],[149.30249302493024,-6.058058191359237],[149.27729277292775,-6.078321118597827],[149.27009270092702,-6.08169827313759],[149.25929259292593,-6.085075427677353],[149.2376923769238,-6.093518314026767],[149.21969219692198,-6.095206891296655],[149.19089190891913,-6.095206891296655],[149.17649176491767,-6.090141159487004],[149.16929169291694,-6.08169827313759],[149.16209162091621,-6.08169827313759],[149.16569165691658,-6.096895468566544],[149.16209162091621,-6.115469818535246],[149.15129151291512,-6.134044168503962],[149.1404914049141,-6.14417563212325],[149.129691296913,-6.1492413639329015],[149.08649086490868,-6.15092994120279],[149.07929079290795,-6.154307095742553],[149.0648906489065,-6.161061404822078],[149.0540905409054,-6.161061404822078],[149.0540905409054,-6.14417563212325],[149.06129061290613,-6.139109900313599],[149.07209072090723,-6.140798477583488],[149.07929079290795,-6.139109900313599],[149.07209072090723,-6.12391270488466],[149.07929079290795,-6.110404086725595],[149.07209072090723,-6.090141159487004],[149.05769057690577,-6.074943964058065],[149.03249032490328,-6.068189654978539],[149.0432904329043,-6.051303882279711],[149.0540905409054,-6.037795264120646],[149.06129061290613,-6.024286645961581],[149.0540905409054,-6.005712295992879],[149.04689046890468,-6.02597522323147],[149.03609036090364,-6.027663800501344],[149.02529025290255,-6.024286645961581],[149.0108901089011,-6.027663800501344],[148.93528935289356,-5.997269409643465],[148.89568895688956,-5.985449368754274],[148.8668886688867,-5.992203677833814],[148.85968859688597,-5.987137946024163],[148.85248852488525,-5.980383636944637],[148.85968859688597,-5.970252173325335],[148.86328863288634,-5.963497864245809],[148.87408874088743,-5.95674355516627],[148.88128881288816,-5.951677823356633],[148.87408874088743,-5.943234937007219],[148.87048870488707,-5.94154635973733],[148.86328863288634,-5.94154635973733],[148.85248852488525,-5.938169205197568],[148.84888848888488,-5.931414896118028],[148.84888848888488,-5.9246605870385025],[148.84888848888488,-5.919594855228851],[148.83808838088385,-5.917906277958977],[148.80568805688057,-5.9145291234192],[148.7912879128791,-5.917906277958977],[148.78048780487808,-5.931414896118028],[148.77328773287735,-5.9246605870385025],[148.78048780487808,-5.909463391609563],[148.7768877688777,-5.8976433507203865],[148.77328773287735,-5.884134732561321],[148.77328773287735,-5.874003268942019],[148.76608766087662,-5.862183228052842],[148.7480874808748,-5.862183228052842],[148.73008730087304,-5.863871805322731],[148.7228872288723,-5.85880607351308],[148.71928719287195,-5.846986032623903],[148.7048870488705,-5.8452974553540145],[148.67608676086763,-5.848674609893777],[148.6580865808658,-5.840231723544363],[148.63648636486369,-5.81659164176601],[148.62208622086223,-5.808148755416596],[148.59688596885968,-5.828411682655187],[148.58248582485828,-5.838543146274489],[148.5716857168572,-5.841920300814252],[148.550085500855,-5.8368545690046005],[148.52128521285215,-5.811525909956359],[148.5068850688507,-5.801394446337071],[148.48528485284857,-5.796328714527419],[148.43848438484383,-5.792951559987657],[148.42048420484207,-5.784508673638243],[148.40968409684098,-5.7794429418285915],[148.39888398883988,-5.7794429418285915],[148.38448384483848,-5.77437721001894],[148.38088380883812,-5.764245746399652],[148.34848348483484,-5.725408469192345],[148.33048330483308,-5.683194037445276],[148.32328323283235,-5.646045337507857],[148.34128341283412,-5.5329106604257134],[148.35928359283594,-5.4974505377581835],[148.3880838808388,-5.468744724170179],[148.42408424084243,-5.451858951471351],[148.4276842768428,-5.450170374201463],[148.4276842768428,-5.448481796931588],[148.43128431284316,-5.4451046423918115],[148.44568445684456,-5.450170374201463],[148.45648456484565,-5.456924683281002],[148.4816848168482,-5.475499033249704],[148.48888488884887,-5.480564765059356],[148.5068850688507,-5.483941919599118],[148.51408514085142,-5.48900765140877],[148.52128521285215,-5.4974505377581835],[148.5248852488525,-5.516024887726886],[148.52848528485288,-5.5244677740762995],[148.55728557285573,-5.539664969505253],[148.58608586085865,-5.534599237695602],[148.6148861488615,-5.514336310457011],[148.640086400864,-5.48900765140877],[148.65088650886509,-5.480564765059356],[148.66528665286654,-5.48225334232923],[148.69768697686976,-5.492384805948532],[148.73008730087304,-5.490696228678644],[148.74448744487444,-5.492384805948532],[148.75528755287553,-5.500827692297946],[148.76248762487626,-5.510959155917249],[148.7768877688777,-5.521090619536537],[148.7912879128791,-5.527844928616062],[148.83448834488348,-5.534599237695602],[148.84888848888488,-5.541353546775127],[148.84888848888488,-5.527844928616062],[148.8560885608856,-5.522779196806425],[148.87408874088743,-5.514336310457011],[148.8920889208892,-5.500827692297946],[148.89568895688956,-5.499139115028058],[148.91368913689138,-5.499139115028058],[148.92448924489247,-5.495761960488295],[148.97848978489787,-5.465367569630402],[149.0540905409054,-5.499139115028058],[149.06849068490686,-5.510959155917249],[149.08649086490868,-5.512647733187123],[149.15849158491585,-5.546419278584779],[149.1728917289173,-5.5548621649341925],[149.18009180091804,-5.5548621649341925],[149.18729187291876,-5.556550742204081],[149.19449194491943,-5.559927896743844],[149.20169201692016,-5.564993628553495],[149.21249212492125,-5.583567978522197],[149.21249212492125,-5.5818794012523085],[149.21969219692198,-5.593699442141499],[149.22329223292235,-5.598765173951136],[149.34929349293492,-5.5852565557920855],[149.37449374493747,-5.575125092172783],[149.38889388893892,-5.58694513306196],[149.40329403294032,-5.583567978522197],[149.41409414094142,-5.57174793763302],[149.43209432094324,-5.561616474013718],[149.4356943569436,-5.57174793763302],[149.44649446494464,-5.5818794012523085],[149.45729457294573,-5.5818794012523085],[149.46449464494646,-5.568370783093258],[149.49329493294937,-5.58694513306196],[149.50049500495004,-5.588633710331848],[149.50769507695077,-5.580190823982434],[149.51849518495186,-5.553173587664304],[149.52929529295295,-5.548107855854667],[149.54729547295472,-5.543042124045016],[149.61569615696158,-5.514336310457011],[149.61929619296194,-5.519402042266648],[149.6228962289623,-5.521090619536537],[149.62649626496267,-5.5244677740762995],[149.63009630096303,-5.527844928616062],[149.6336963369634,-5.519402042266648],[149.6444964449645,-5.514336310457011],[149.65169651696516,-5.514336310457011],[149.66249662496625,-5.521090619536537],[149.67329673296734,-5.510959155917249],[149.6768967689677,-5.500827692297946],[149.6768967689677,-5.48900765140877],[149.66969669696698,-5.478876187789467],[149.67329673296734,-5.478876187789467],[149.6768967689677,-5.480564765059356],[149.6768967689677,-5.48225334232923],[149.6768967689677,-5.485630496869007],[149.68409684096844,-5.48900765140877],[149.69129691296916,-5.502516269567835],[149.69129691296916,-5.522779196806425],[149.68409684096844,-5.55148501039443],[149.69489694896953,-5.561616474013718],[149.70929709297093,-5.566682205823369],[149.72009720097202,-5.568370783093258],[149.7308973089731,-5.563305051283606],[149.7416974169742,-5.556550742204081],[149.75249752497524,-5.549796433124541],[149.77049770497706,-5.548107855854667],[149.7776977769778,-5.54473070131489],[149.78849788497888,-5.534599237695602],[149.79209792097924,-5.521090619536537],[149.79209792097924,-5.507582001377472],[149.79929799297992,-5.507582001377472],[149.83529835298356,-5.526156351346188],[149.87129871298714,-5.527844928616062],[149.9108991089911,-5.514336310457011],[149.94329943299437,-5.492384805948532],[149.9540995409954,-5.480564765059356],[149.97929979299795,-5.438350333312286],[149.98649986499868,-5.421464560613458],[149.9828998289983,-5.407955942454393],[149.97209972099722,-5.40457878791463],[149.96129961299613,-5.402890210644756],[149.95049950499504,-5.397824478835105],[149.94329943299437,-5.3876930152158025],[149.92529925299255,-5.360675778897686],[149.91809918099182,-5.348855738008496],[149.92169921699218,-5.338724274389207],[149.93249932499327,-5.318461347150617],[149.93609936099364,-5.308329883531314],[149.94329943299437,-5.301575574451789],[149.9540995409954,-5.291444110832487],[149.96129961299613,-5.283001224483073],[149.97569975699759,-5.2728697608637844],[149.99729997299977,-5.261049719974608],[150.01530015300153,-5.247541101815543],[150.02610026100263,-5.225589597307064],[150.02610026100263,-5.213769556417887],[150.02610026100263,-5.203638092798585],[150.0189001890019,-5.1850637428298825],[150.0189001890019,-5.183375165559994],[150.00450004500044,-5.1766208564804685],[150.00450004500044,-5.169866547400943],[150.01170011700117,-5.159735083781641],[150.01530015300153,-5.141160733812924],[150.02250022500226,-5.124274961114111],[150.02610026100263,-5.11245492022492],[150.02250022500226,-5.107389188415283],[150.01530015300153,-5.0972577247959805],[150.01170011700117,-5.092191992986329],[150.01170011700117,-5.085437683906804],[150.01530015300153,-5.082060529367041],[150.0189001890019,-5.080371952097153],[150.03330033300335,-5.03478036581032],[150.06930069300694,-5.012828861301841],[150.11250112501125,-5.007763129492204],[150.15570155701556,-5.019583170381381],[150.17730177301775,-5.031403211270558],[150.1917019170192,-5.038157520350083],[150.19890198901993,-5.048288983969385],[150.20250202502024,-5.0617976021284505],[150.19890198901993,-5.0702404884778645],[150.19530195301957,-5.07699479755739],[150.1917019170192,-5.085437683906804],[150.1809018090181,-5.102323456605632],[150.15930159301593,-5.11245492022492],[150.1161011610116,-5.122586383844222],[150.09810098100985,-5.136095002003287],[150.07650076500767,-5.159735083781641],[150.0621006210062,-5.18168658829012],[150.08010080100803,-5.20194951552871],[150.0837008370084,-5.225589597307064],[150.0837008370084,-5.250918256355305],[150.08010080100803,-5.266115451784245],[150.0729007290073,-5.2728697608637844],[150.05490054900548,-5.276246915403547],[150.0477004770048,-5.27962406994331],[150.03330033300335,-5.291444110832487],[150.03330033300335,-5.294821265372249],[150.05130051300512,-5.311707038071077],[150.05490054900548,-5.320149924420491],[150.05850058500585,-5.34210142892897],[150.0837008370084,-5.382627283406151],[150.11250112501125,-5.441727487852049],[150.1161011610116,-5.455236106011114],[150.1161011610116,-5.473810455979816],[150.11970119701198,-5.495761960488295],[150.13050130501307,-5.516024887726886],[150.14130141301416,-5.534599237695602],[150.1629016290163,-5.546419278584779],[150.1809018090181,-5.553173587664304],[150.25290252902528,-5.558239319473955],[150.2709027090271,-5.563305051283606],[150.28890288902892,-5.566682205823369],[150.30690306903068,-5.561616474013718],[150.3141031410314,-5.55148501039443],[150.32130321303214,-5.534599237695602],[150.33210332103323,-5.519402042266648],[150.34290342903432,-5.514336310457011],[150.35730357303572,-5.507582001377472],[150.389703897039,-5.483941919599118],[150.40050400504003,-5.478876187789467],[150.41130411304113,-5.463678992360528],[150.41850418504185,-5.458613260550877],[150.42210422104222,-5.456924683281002],[150.47250472504726,-5.448481796931588],[150.49410494104944,-5.4467932196617],[150.5121051210512,-5.450170374201463],[150.57330573305734,-5.473810455979816],[150.59130591305916,-5.487319074138881],[150.6021060210602,-5.502516269567835],[150.60570605706056,-5.522779196806425],[150.61650616506165,-5.543042124045016],[150.63450634506347,-5.556550742204081],[150.65250652506523,-5.55148501039443],[150.67050670506706,-5.543042124045016],[150.70290702907027,-5.539664969505253],[150.71730717307173,-5.534599237695602],[150.74610746107464,-5.512647733187123],[150.75690756907568,-5.4974505377581835],[150.76770767707677,-5.478876187789467],[150.76050760507604,-5.4670561469002905],[150.7641076410764,-5.456924683281002],[150.77130771307714,-5.453547528741225],[150.77850778507786,-5.458613260550877],[150.81090810908108,-5.443416065121937],[150.83610836108363,-5.453547528741225],[150.86130861308612,-5.473810455979816],[150.87570875708758,-5.492384805948532],[150.90450904509044,-5.490696228678644],[150.91530915309153,-5.485630496869007],[150.92610926109262,-5.480564765059356],[150.94050940509408,-5.458613260550877],[150.9621096210962,-5.453547528741225],[150.98010980109802,-5.4400389105821745],[150.99810998109984,-5.424841715153221],[151.01251012510124,-5.411333096994156],[151.02331023310234,-5.391070169755565],[151.02331023310234,-5.3691186652471],[151.01971019710197,-5.325215656230142],[151.02331023310234,-5.303264151721663],[151.03411034110343,-5.259361142704719],[151.05931059310592,-5.200260938258822],[151.08451084510847,-5.163112238321403],[151.10971109711096,-5.1327178474635105],[151.1349113491135,-5.109077765685157],[151.14211142111424,-5.105700611145394],[151.15651156511564,-5.098946302065869],[151.16371163711636,-5.095569147526092],[151.18171181711818,-5.071929065747739],[151.19611196111964,-5.0617976021284505],[151.2249122491225,-5.019583170381381],[151.23931239312395,-5.006074552222316],[151.24291242912432,-5.006074552222316],[151.25011250112505,-5.007763129492204],[151.2537125371254,-5.006074552222316],[151.2537125371254,-5.004385974952427],[151.2537125371254,-4.995943088603013],[151.2537125371254,-4.992565934063251],[151.26091260912608,-4.989188779523488],[151.289712897129,-4.980745893174074],[151.29691296912972,-4.975680161364423],[151.30771307713076,-4.967237275015009],[151.31851318513185,-4.960482965935483],[151.3329133291333,-4.953728656855958],[151.34731347313476,-4.9520400795860695],[151.3581135811358,-4.946974347776418],[151.36171361713616,-4.933465729617353],[151.3689136891369,-4.903071338759474],[151.37611376113762,-4.903071338759474],[151.3869138691387,-4.914891379648651],[151.4517145171452,-4.931777152347479],[151.47331473314733,-4.940220038696893],[151.49131491314915,-4.941908615966767],[151.51291512915128,-4.935154306887242],[151.53451534515347,-4.916579956918525],[151.5741157411574,-4.93684288415713],[151.61371613716136,-4.965548697745135],[151.63171631716318,-4.960482965935483],[151.64611646116464,-4.948662925046307],[151.66051660516604,-4.933465729617353],[151.67851678516786,-4.899694184219712],[151.6857168571686,-4.882808411520884],[151.68931689316895,-4.862545484282279],[151.69291692916931,-4.838905402503926],[151.69291692916931,-4.835528247964163],[151.69291692916931,-4.833839670694275],[151.69651696516968,-4.830462516154512],[151.69651696516968,-4.825396784344861],[151.69651696516968,-4.818642475265335],[151.68931689316895,-4.8152653207255725],[151.6857168571686,-4.813576743455684],[151.6857168571686,-4.810199588915921],[151.68211682116822,-4.800068125296619],[151.66771667716677,-4.778116620788154],[151.6641166411664,-4.766296579898977],[151.66051660516604,-4.7274593026916705],[151.66771667716677,-4.646407593737294],[151.65691656916573,-4.607570316530001],[151.63531635316355,-4.578864502941997],[151.62811628116282,-4.561978730243169],[151.62451624516245,-4.536650071194927],[151.62451624516245,-4.4944356394478575],[151.6209162091621,-4.474172712209267],[151.610116101161,-4.452221207700788],[151.5957159571596,-4.43533543500196],[151.56691566915669,-4.411695353223607],[151.5525155251553,-4.396498157794667],[151.54891548915492,-4.388055271445253],[151.54891548915492,-4.377923807825951],[151.54891548915492,-4.359349457857235],[151.54531545315456,-4.345840839698184],[151.52731527315274,-4.33064364426923],[151.520115201152,-4.320512180649942],[151.520115201152,-4.31038071703064],[151.520115201152,-4.301937830681226],[151.52371523715237,-4.2951835216017],[151.52731527315274,-4.290117789792049],[151.52371523715237,-4.279986326172761],[151.51291512915128,-4.252969089854631],[151.5057150571506,-4.229329008076277],[151.50931509315092,-4.2124432353774495],[151.520115201152,-4.197246039948496],[151.5417154171542,-4.176983112709905],[151.55611556115565,-4.1820488445195565],[151.610116101161,-4.192180308138859],[151.649716497165,-4.19049173086897],[151.6641166411664,-4.193868885408733],[151.68211682116822,-4.202311771758147],[151.69291692916931,-4.2040003490280355],[151.7037170371704,-4.202311771758147],[151.7181171811718,-4.198934617218384],[151.72531725317253,-4.200623194488273],[151.72531725317253,-4.219197544456975],[151.74331743317435,-4.207377503567798],[151.76131761317612,-4.20568892629791],[151.8045180451805,-4.210754658107561],[151.8189181891819,-4.214131812647324],[151.85131851318516,-4.231017585346152],[151.8621186211862,-4.2394604716955655],[151.86931869318693,-4.258034821664282],[151.8729187291873,-4.283363480712524],[151.88371883718838,-4.305314985220988],[151.9017190171902,-4.313757871570402],[151.92331923319233,-4.3188236033800536],[151.96291962919628,-4.33064364426923],[151.98451984519846,-4.328955066999356],[151.99891998919992,-4.3188236033800536],[152.03132031320314,-4.276609171632984],[152.0349203492035,-4.256346244394393],[152.0241202412024,-4.2394604716955655],[152.00612006120065,-4.224263276266626],[151.99891998919992,-4.210754658107561],[152.009720097201,-4.192180308138859],[152.0241202412024,-4.193868885408733],[152.0457204572046,-4.2040003490280355],[152.06372063720636,-4.210754658107561],[152.07452074520745,-4.210754658107561],[152.08172081720818,-4.207377503567798],[152.09252092520927,-4.20568892629791],[152.09612096120964,-4.200623194488273],[152.09972099721,-4.198934617218384],[152.1249212492125,-4.2040003490280355],[152.13572135721358,-4.2040003490280355],[152.15012150121504,-4.188803153599082],[152.1537215372154,-4.166851649090617],[152.16092160921613,-4.148277299121901],[152.18612186121862,-4.14321156731225],[152.20052200522008,-4.1600973400110774],[152.21852218522184,-4.173605958170143],[152.2329223292233,-4.19049173086897],[152.24732247322476,-4.2343947398859285],[152.2437224372244,-4.242837626235328],[152.22932229322294,-4.246214780775105],[152.2221222212222,-4.246214780775105],[152.20412204122044,-4.241149048965454],[152.20052200522008,-4.2394604716955655],[152.19692196921972,-4.231017585346152],[152.19332193321935,-4.219197544456975],[152.189721897219,-4.210754658107561],[152.1789217892179,-4.210754658107561],[152.17172171721717,-4.220886121726863],[152.17172171721717,-4.2343947398859285],[152.1789217892179,-4.259723398934156],[152.1789217892179,-4.2968720988715745],[152.18612186121862,-4.308692139760765],[152.20412204122044,-4.313757871570402],[152.21132211322117,-4.312069294300528],[152.21852218522184,-4.307003562490877],[152.22572225722257,-4.303626407951114],[152.24012240122403,-4.307003562490877],[152.24732247322476,-4.313757871570402],[152.25452254522548,-4.322200757919816],[152.2617226172262,-4.33064364426923],[152.2761227612276,-4.335709376078881],[152.33732337323374,-4.342463685158421],[152.35532355323556,-4.342463685158421],[152.39852398523988,-4.328955066999356],[152.41292412924133,-4.328955066999356],[152.41652416524164,-4.345840839698184]]],[[[130.87390873908743,-3.5741610273617823],[130.8775087750878,-3.585981068250959],[130.8775087750878,-3.5961125318702614],[130.87390873908743,-3.6146868818389777],[130.87030870308706,-3.6265069227281543],[130.8559085590856,-3.646769849966745],[130.85230852308524,-3.6535241590462704],[130.84870848708488,-3.6619670453956843],[130.83430834308342,-3.682229972634275],[130.83070830708306,-3.6940500135234515],[130.8235082350824,-3.824070463304423],[130.83070830708306,-3.8375790814634883],[130.84150841508415,-3.8527762768924276],[130.84150841508415,-3.8645963177816043],[130.81630816308166,-3.8696620495912555],[130.79830798307984,-3.8612191632418416],[130.76590765907662,-3.8342019269237255],[130.75150751507516,-3.827447617844186],[130.72990729907298,-3.8257590405743116],[130.63270632706326,-3.788610340636893],[130.6147061470615,-3.7869217633670047],[130.60750607506077,-3.7784788770175908],[130.56430564305646,-3.731198713460884],[130.549905499055,-3.7210672498415818],[130.53550535505354,-3.712624363492168],[130.51750517505178,-3.7058700544126424],[130.49230492304923,-3.7024928998728655],[130.47790477904778,-3.6974271680632285],[130.46710467104674,-3.6839185499041633],[130.44910449104492,-3.656901313586033],[130.43470434704346,-3.6450812726968564],[130.42030420304206,-3.6366383863474425],[130.39870398703988,-3.6315726545377913],[130.3771037710377,-3.629884077267917],[130.35550355503557,-3.624818345458266],[130.31230312303126,-3.594423954600373],[130.1251012510125,-3.533635172884601],[130.10710107101073,-3.515060822915899],[130.10350103501037,-3.511683668376122],[130.0891008910089,-3.509995091106248],[130.03870038700387,-3.4914207411375315],[130.0027000270003,-3.4728463911688294],[129.98469984699847,-3.4593377730097643],[129.97389973899737,-3.4475177321205877],[129.97389973899737,-3.440763423041048],[129.96309963099634,-3.4289433821518713],[129.95949959499598,-3.4205004958024574],[129.96309963099634,-3.3901061049445786],[129.95949959499598,-3.3816632185951647],[129.93429934299343,-3.347891673197509],[129.89109891098911,-3.3326944777685554],[129.54549545495456,-3.2972343551010255],[129.50949509495098,-3.3023000869106767],[129.50229502295025,-3.334383055038444],[129.5526955269553,-3.4036147231036296],[129.56349563495638,-3.4390748457711737],[129.5310953109531,-3.4644035048194155],[129.48429484294843,-3.462714927549527],[129.40149401494017,-3.422189073072346],[129.35829358293586,-3.4103690321831692],[129.2358923589236,-3.4019261458337553],[129.19269192691928,-3.3901061049445786],[129.11349113491138,-3.3495802504673833],[129.08469084690847,-3.3411373641179694],[129.05949059490598,-3.3411373641179694],[128.9838898388984,-3.347891673197509],[128.96228962289626,-3.356334559546923],[128.94068940689408,-3.3326944777685554],[128.93708937089372,-3.3208744368793788],[128.9478894788948,-3.300611509640788],[128.98028980289803,-3.251642768814193],[128.96948969489694,-3.233068418845477],[128.95148951489517,-3.219559800686426],[128.93348933489335,-3.212805491606886],[128.90828908289086,-3.211116914337012],[128.89028890288904,-3.2043626052574723],[128.87588875888758,-3.202674027987598],[128.87228872288722,-3.207739759797235],[128.86868868688686,-3.212805491606886],[128.8506885068851,-3.238134150655128],[128.79308793087932,-3.260085655163607],[128.78228782287823,-3.268528541513021],[128.7750877508775,-3.278660005132309],[128.69228692286924,-3.347891673197509],[128.68508685086852,-3.358023136816797],[128.68508685086852,-3.3630888686264484],[128.6778867788678,-3.3681546004360996],[128.67428674286742,-3.374908909515625],[128.67428674286742,-3.3867289504048017],[128.67428674286742,-3.3951718367542156],[128.68148681486815,-3.400237568563867],[128.68868688686888,-3.405303300373518],[128.69228692286924,-3.4103690321831692],[128.6778867788678,-3.432320536691634],[128.63468634686348,-3.4373862685012853],[128.5878858788588,-3.4340091139615225],[128.54828548285485,-3.4373862685012853],[128.5086850868509,-3.457649195739876],[128.48348483484835,-3.462714927549527],[128.46548465484653,-3.454272041200113],[128.45108451084513,-3.4424520003109365],[128.4150841508415,-3.4255662276121086],[128.4006840068401,-3.4103690321831692],[128.2818828188282,-3.2212483779563],[128.2710827108271,-3.211116914337012],[128.23148231482315,-3.2094283370671235],[128.20988209882103,-3.2043626052574723],[128.1810818108181,-3.194231141638184],[128.17748177481775,-3.194231141638184],[128.17748177481775,-3.190853987098407],[128.1810818108181,-3.167213905320054],[128.18468184681848,-3.140196669001938],[128.19908199081993,-3.1114908554139333],[128.19548195481957,-3.0912279281753285],[128.18468184681848,-3.0743421554765007],[128.16668166681666,-3.0675878463969752],[128.13428134281344,-3.076030732746389],[128.10908109081095,-3.0996708145247425],[128.09108091080913,-3.131753782652524],[128.07668076680767,-3.1621481735104027],[128.06588065880658,-3.197608296177947],[128.0586805868059,-3.2972343551010255],[128.05148051480518,-3.3107429732600906],[128.04428044280445,-3.32594016868903],[128.029880298803,-3.358023136816797],[128.02268022680227,-3.3681546004360996],[128.01548015480154,-3.3715317549758623],[127.99387993879941,-3.373220332245751],[127.98667986679868,-3.3765974867855135],[127.98307983079832,-3.3850403731349274],[127.97587975879759,-3.405303300373518],[127.96147961479613,-3.4255662276121086],[127.95427954279546,-3.444140577580825],[127.939879398794,-3.4779121229784664],[127.93627936279364,-3.4964864729471827],[127.93627936279364,-3.5049293592965967],[127.94347943479437,-3.515060822915899],[127.94347943479437,-3.5218151319954245],[127.92907929079291,-3.542078059234015],[127.92547925479255,-3.5538981001231917],[127.90027900279006,-3.5235037092652988],[127.90387903879042,-3.476223545708592],[127.93267932679328,-3.3901061049445786],[127.93267932679328,-3.3445145186577463],[127.92907929079291,-3.3225630141492672],[127.92187921879218,-3.3141201277998533],[127.91467914679146,-3.3073658187203137],[127.8858788587886,-3.2668399642431325],[127.87507875078751,-3.2094283370671235],[127.86787867878678,-3.194231141638184],[127.84267842678429,-3.1739682143995935],[127.84267842678429,-3.1655253280501796],[127.86427864278642,-3.1570824417007657],[127.87507875078751,-3.1537052871609887],[127.8966789667897,-3.1520167098911145],[127.90387903879042,-3.150328132621226],[127.91467914679146,-3.140196669001938],[127.939879398794,-3.1131794326838076],[127.9506795067951,-3.1081137008741564],[127.96867968679686,-3.1030479690645194],[127.99387993879941,-3.0827850418259146],[128.00828008280087,-3.0743421554765007],[128.02628026280263,-3.0692764236668637],[128.0478804788048,-3.065899269127101],[128.06588065880658,-3.0675878463969752],[128.0838808388084,-3.0743421554765007],[128.10548105481058,-3.0675878463969752],[128.09108091080913,-3.0338163009993195],[128.09108091080913,-3.021996260110143],[128.0946809468095,-3.0101762192209662],[128.11268112681125,-2.9932904465221384],[128.11628116281162,-2.9848475601727245],[128.10548105481058,-2.974716096553422],[128.0838808388084,-2.974716096553422],[128.06948069480694,-2.9713389420136593],[128.07668076680767,-2.9578303238546084],[128.0838808388084,-2.9544531693148315],[128.11268112681125,-2.9493874375051945],[128.11988119881198,-2.9443217056955433],[128.1378813788138,-2.9105501602978876],[128.1378813788138,-2.912238737567762],[128.1378813788138,-2.907173005758125],[128.1378813788138,-2.9021072739484737],[128.1378813788138,-2.895352964868948],[128.14148141481417,-2.895352964868948],[128.1486814868149,-2.895352964868948],[128.15588155881562,-2.8936643875990598],[128.159481594816,-2.885221501249646],[128.159481594816,-2.873401460360469],[128.16668166681666,-2.863269996741167],[128.17388173881739,-2.8565156876616413],[128.18828188281884,-2.854827110391753],[128.21348213482133,-2.859892842201404],[128.38268382683827,-2.859892842201404],[128.41868418684186,-2.8497613785821017],[128.45828458284586,-2.846384224042339],[128.4978849788498,-2.8362527604230507],[128.51588515885157,-2.8345641831531623],[128.53748537485376,-2.837941337692925],[128.5770857708577,-2.85144995585199],[128.60228602286026,-2.854827110391753],[128.80028800288005,-2.8565156876616413],[128.84348843488436,-2.8615814194712925],[128.8650886508865,-2.8615814194712925],[128.90828908289086,-2.854827110391753],[128.9478894788948,-2.8446956467724647],[129.0162901629016,-2.8143012559145717],[129.05229052290525,-2.8041697922952693],[129.07029070290702,-2.821055564994097],[129.07029070290702,-2.854827110391753],[129.06309063090634,-2.895352964868948],[129.0810908109081,-2.9054844284882364],[129.10629106291066,-2.947698860235306],[129.12069120691206,-2.9578303238546084],[129.13149131491315,-2.95614174658472],[129.15309153091533,-2.9510760147750688],[129.16389163891643,-2.9510760147750688],[129.16749167491673,-2.9510760147750688],[129.1710917109171,-2.9544531693148315],[129.17469174691746,-2.95614174658472],[129.17829178291782,-2.9578303238546084],[129.18549185491855,-2.9544531693148315],[129.18549185491855,-2.9493874375051945],[129.1818918189182,-2.942633128425655],[129.1818918189182,-2.9358788193461294],[129.17829178291782,-2.934190242076241],[129.17829178291782,-2.930813087536478],[129.17829178291782,-2.925747355726827],[129.18909189091892,-2.9223702011870643],[129.19269192691928,-2.9223702011870643],[129.19629196291964,-2.9291245102665897],[129.19989199892,-2.9291245102665897],[129.2106921069211,-2.9409445511557806],[129.21789217892177,-2.9409445511557806],[129.22149221492214,-2.925747355726827],[129.22869228692286,-2.915615892107539],[129.24309243092432,-2.907173005758125],[129.27549275492754,-2.895352964868948],[129.32949329493294,-2.8666471512809295],[129.35829358293586,-2.8565156876616413],[129.36549365493659,-2.841318492232702],[129.36549365493659,-2.824432719533874],[129.37269372693726,-2.8075469468350462],[129.40149401494017,-2.7923497514060927],[129.44469444694448,-2.785595442326567],[129.52389523895238,-2.785595442326567],[129.53469534695347,-2.780529710516916],[129.5418954189542,-2.780529710516916],[129.54549545495456,-2.78897259686633],[129.54549545495456,-2.794038328675981],[129.54909549095493,-2.797415483215744],[129.55629556295565,-2.7991040604856323],[129.61029610296106,-2.8075469468350462],[129.75429754297545,-2.8666471512809295],[129.76509765097654,-2.868335728550818],[129.77949779497794,-2.8750900376303434],[129.79749797497976,-2.907173005758125],[129.81189811898122,-2.917304469377413],[129.82629826298262,-2.917304469377413],[129.8370983709837,-2.912238737567762],[129.85149851498517,-2.9054844284882364],[129.86229862298626,-2.903795851218362],[129.869498694987,-2.907173005758125],[129.869498694987,-2.915615892107539],[129.8730987309873,-2.9274359329967155],[129.8838988389884,-2.9358788193461294],[129.89469894698948,-2.925747355726827],[129.9126991269913,-2.9325016648063666],[129.9270992709927,-2.947698860235306],[129.94509945099452,-2.964584632934134],[129.96309963099634,-2.973027519283548],[130.0459004590046,-2.99160186925225],[130.21150211502118,-2.9899132919823757],[130.30150301503016,-2.9764046738233105],[130.34470344703448,-2.978093251093199],[130.3879038790388,-2.9932904465221384],[130.48870488704887,-3.087850773635566],[130.50310503105032,-3.0946050827151055],[130.57870578705786,-3.12331089630311],[130.58950589505895,-3.1300652053826354],[130.5931059310593,-3.1385080917320494],[130.60030600306004,-3.172279637129705],[130.6039060390604,-3.180722523479119],[130.62190621906223,-3.212805491606886],[130.63270632706326,-3.2533313460840674],[130.63270632706326,-3.3377602095782066],[130.63630636306362,-3.352957405007146],[130.65430654306545,-3.3816632185951647],[130.66150661506617,-3.3934832594843414],[130.66510665106654,-3.4036147231036296],[130.6831068310683,-3.4069918776433923],[130.7227072270723,-3.4036147231036296],[130.76230762307625,-3.405303300373518],[130.79470794707947,-3.4171233412626947],[130.81630816308166,-3.4340091139615225],[130.83070830708306,-3.457649195739876],[130.80910809108093,-3.4644035048194155],[130.80910809108093,-3.484666432058006],[130.81990819908202,-3.5049293592965967],[130.83070830708306,-3.5268808638050757],[130.86310863108633,-3.5572752546629545],[130.87390873908743,-3.5741610273617823]]],[[[127.66627666276662,-0.2088265284855737],[127.66627666276662,-0.1851864467072062],[127.68427684276844,-0.14466059223002503],[127.6878768787688,-0.12439766499143445],[127.68427684276844,-0.007885833369527973],[127.6878768787688,0.002245630249774422],[127.6878768787688,0.014065671138951075],[127.6986769867699,0.03770575291730438],[127.6986769867699,0.047837216536606775],[127.6986769867699,0.07147729831496008],[127.68427684276844,0.10018311190296458],[127.68067680676808,0.1187574618716809],[127.68067680676808,0.1626604708886248],[127.7130771307713,0.2774837252406428],[127.71667716677166,0.2960580752093591],[127.71667716677166,0.31294384790818697],[127.70947709477093,0.3264524660672521],[127.69507695076953,0.34164966149619147],[127.68427684276844,0.34671539330584267],[127.66267662676626,0.339961084226303],[127.65547655476558,0.34164966149619147],[127.61227612276122,0.38048693870349837],[127.60867608676085,0.3821755159733726],[127.60507605076054,0.39061840232278655],[127.60507605076054,0.3939955568625493],[127.58347583475836,0.4075041750216144],[127.57627576275763,0.4159470613710283],[127.57267572675727,0.422701370450568],[127.5690756907569,0.4311442567999677],[127.5690756907569,0.46322722492774915],[127.56187561875618,0.5088188112145815],[127.5546755467555,0.5240160066435209],[127.55107551075514,0.5290817384531721],[127.54387543875441,0.5341474702628233],[127.53307533075332,0.5409017793423487],[127.52947529475296,0.5510332429616511],[127.52587525875259,0.5611647065809393],[127.52947529475296,0.6050677155978974],[127.54387543875441,0.6675450745835576],[127.54747547475478,0.7148252381402642],[127.5546755467555,0.740153897188506],[127.58707587075872,0.7604168244270966],[127.60507605076054,0.7857454834753383],[127.61947619476194,0.8127627197934686],[127.62307623076231,0.8330256470320592],[127.61227612276122,0.8583543060803009],[127.57627576275763,0.8684857696995891],[127.53667536675368,0.8752400787791288],[127.50787507875077,0.8870601196683054],[127.49347493474937,0.9056344696370076],[127.49707497074974,0.9225202423358354],[127.50787507875077,0.9410945923045517],[127.5150751507515,0.9596689422732538],[127.51147511475114,0.9681118286226678],[127.50427504275046,0.9866861785913841],[127.5006750067501,0.9934404876709095],[127.5006750067501,0.9968176422106723],[127.48987489874901,0.9968176422106723],[127.48627486274864,1.0001947967504492],[127.48987489874901,1.0187691467191513],[127.48627486274864,1.0238348785288025],[127.48987489874901,1.033966342148105],[127.49347493474937,1.044097805767393],[127.49347493474937,1.0542292693866955],[127.47907479074792,1.0643607330059837],[127.47187471874719,1.0660493102758721],[127.46467464674646,1.060983578466221],[127.45387453874542,1.0542292693866955],[127.45027450274506,1.0508521148469185],[127.43227432274324,1.0474749603071558],[127.41787417874178,1.0407206512276304],[127.40347403474038,1.0424092284975046],[127.39987399874002,1.0643607330059837],[127.39987399874002,1.0795579284349373],[127.40347403474038,1.0880008147843512],[127.41067410674106,1.0947551238638766],[127.41787417874178,1.1065751647530533],[127.42507425074251,1.1200837829121184],[127.42867428674288,1.1285266692615323],[127.42507425074251,1.1504781737699972],[127.42147421474215,1.1639867919290623],[127.41067410674106,1.175806832818239],[127.39987399874002,1.189315450977304],[127.39987399874002,1.2095783782158946],[127.40707407074069,1.2298413054544852],[127.4358743587436,1.277121469011206],[127.46467464674646,1.3142701689486245],[127.48627486274864,1.3801246824740474],[127.52587525875259,1.4392248869199449],[127.54027540275405,1.4763735868573633],[127.53307533075332,1.5067679777152563],[127.51867518675186,1.532096636763498],[127.52587525875259,1.5574252958117398],[127.5546755467555,1.5996397275587952],[127.54747547475478,1.6148369229877488],[127.54387543875441,1.6232798093371628],[127.54387543875441,1.6300341184166882],[127.54747547475478,1.6435427365757533],[127.5546755467555,1.6486084683854045],[127.56547565475654,1.6502970456552788],[127.5690756907569,1.65536277746493],[127.57267572675727,1.663805663814344],[127.57627576275763,1.6756257047035206],[127.57267572675727,1.6840685910529345],[127.55827558275581,1.6891343228625857],[127.5546755467555,1.6925114774023484],[127.55827558275581,1.7009543637517623],[127.5690756907569,1.7161515591807017],[127.579875798758,1.751611681848246],[127.63027630276304,1.8360405453423851],[127.65547655476558,1.866434936200264],[127.67707677076771,1.9069607906774593],[127.69147691476917,1.9255351406461614],[127.74547745477457,1.9728153042028822],[127.77067770677706,2.008275426870412],[127.86067860678605,2.104524331253728],[127.89307893078933,2.12985299030197],[127.90027900279006,2.1382958766513838],[127.90387903879042,2.153493072080323],[127.91827918279182,2.1720674220490395],[127.93627936279364,2.187264617477979],[127.95427954279546,2.1957075038273928],[127.97227972279723,2.19233034928763],[127.98667986679868,2.183887462938216],[128.0046800468005,2.1805103083984534],[128.0478804788048,2.2041503901768067],[128.05508055080554,2.19233034928763],[128.05508055080554,2.170378844779151],[128.05148051480518,2.1467387630007977],[128.029880298803,2.1095900630633793],[128.01548015480154,2.0927042903645514],[128.0046800468005,2.085949981285026],[128.00108001080014,2.0808842494753748],[127.99387993879941,2.072441363125961],[127.98667986679868,2.0623098995066584],[127.9650796507965,2.0538670131572445],[127.95787957879583,2.042046972268068],[127.95427954279546,2.016718313219826],[127.94347943479437,1.9812581905522961],[127.93627936279364,1.9626838405835798],[127.92187921879218,1.9559295315040544],[127.90387903879042,1.9542409542341659],[127.88947889478897,1.9474866451546404],[127.87507875078751,1.9390437588052265],[127.86427864278642,1.928912295185924],[127.85707857078575,1.9120265224870963],[127.84987849878502,1.8833207088990918],[127.84627846278465,1.8512377407713245],[127.85347853478538,1.8259090817230827],[127.87507875078751,1.8073347317543806],[127.939879398794,1.800580422674841],[127.95427954279546,1.7887603817856643],[127.9650796507965,1.773563186356725],[128.0046800468005,1.7397916409590692],[128.01548015480154,1.7195287137204787],[128.0046800468005,1.6452313138456418],[128.00108001080014,1.633411272956451],[127.99387993879941,1.6266569638769255],[128.00108001080014,1.6131483457178604],[128.00828008280087,1.606394036638335],[128.01548015480154,1.6013283048286837],[128.02268022680227,1.5928854184792698],[128.02628026280263,1.5810653775900931],[128.03708037080372,1.537162368573135],[128.03348033480336,1.5168994413345445],[128.01548015480154,1.4645535459681867],[128.01548015480154,1.4358477323801822],[128.01548015480154,1.403764764252415],[128.01548015480154,1.395321877903001],[128.01188011880117,1.3885675688234613],[128.0046800468005,1.3851904142836986],[127.99747997479977,1.3801246824740474],[127.99387993879941,1.3699932188547592],[128.00108001080014,1.3531074461559314],[128.01548015480154,1.3176473234883872],[128.01548015480154,1.3058272825992105],[128.0046800468005,1.299072973519685],[127.98307983079832,1.3007615507895594],[127.97227972279723,1.2973843962497966],[127.96867968679686,1.2906300871702712],[127.95787957879583,1.2653014281220294],[127.9506795067951,1.2534813872328527],[127.93267932679328,1.2332184599942622],[127.91827918279182,1.2163326872954343],[127.90027900279006,1.1741182555483647],[127.8966789667897,1.162298214659188],[127.89307893078933,1.1572324828495368],[127.88947889478897,1.1521667510398856],[127.87867878678787,1.1471010192302344],[127.86787867878678,1.1454124419603602],[127.84267842678429,1.1471010192302344],[127.83547835478356,1.1437238646904717],[127.75627756277567,1.0778693511650488],[127.66987669876698,1.0322777648782164],[127.63747637476376,1.0001947967504492],[127.62307623076231,0.9546032104636168],[127.62667626676267,0.937717437764789],[127.6338763387634,0.9191430877960727],[127.64467644676449,0.9022573150972448],[127.65547655476558,0.8904372742080682],[127.66987669876698,0.8786172333188915],[127.70587705877062,0.8634200378899521],[127.72027720277202,0.8532885742706497],[127.72387723877239,0.8448456879212358],[127.73467734677348,0.8262713379525195],[127.74187741877421,0.8178284516031056],[127.74907749077494,0.8144512970633428],[127.75987759877597,0.8161398743332313],[127.7670776707767,0.8161398743332313],[127.79587795877961,0.7992541016344035],[127.81387813878138,0.7992541016344035],[127.83547835478356,0.8043198334440547],[127.85347853478538,0.8110741425235801],[127.87147871478714,0.8245827606826452],[127.90747907479079,0.8532885742706497],[127.92187921879218,0.8701743469694776],[127.92907929079291,0.885371542398417],[127.93267932679328,0.973177560432319],[127.93267932679328,0.9900633331311468],[127.93627936279364,1.0069491058299747],[127.99387993879941,1.0829350829747],[128.01548015480154,1.0998208556735278],[128.03708037080372,1.1116408965627045],[128.05508055080554,1.1200837829121184],[128.07668076680767,1.1251495147217696],[128.14508145081453,1.1251495147217696],[128.159481594816,1.131903823801295],[128.1810818108181,1.153855328309774],[128.1918819188192,1.1774954100881274],[128.19548195481957,1.1960697600568437],[128.1918819188192,1.2146441100255458],[128.17748177481775,1.2332184599942622],[128.15588155881562,1.241661346343676],[128.11268112681125,1.2315298827243737],[128.09828098280985,1.236595614534025],[128.09108091080913,1.2568585417726155],[128.10548105481058,1.277121469011206],[128.14148141481417,1.3007615507895594],[128.15588155881562,1.3193359007582757],[128.17388173881739,1.356484600695694],[128.18828188281884,1.373370373394522],[128.20628206282066,1.3902561460933498],[128.2458824588246,1.4172733824114658],[128.26388263882637,1.4324705778404194],[128.2818828188282,1.4426020414597076],[128.3250832508325,1.4561106596187727],[128.34308343083433,1.4696192777778379],[128.35028350283505,1.4780621641272518],[128.35748357483578,1.4949479368260796],[128.36468364683645,1.5033908231754936],[128.37188371883718,1.5067679777152563],[128.39348393483937,1.5152108640646702],[128.41868418684186,1.5304080594936096],[128.43668436684368,1.5388509458430235],[128.45828458284586,1.545605254922549],[128.479884798848,1.545605254922549],[128.49068490684908,1.5422281003827862],[128.49428494284945,1.537162368573135],[128.4978849788498,1.532096636763498],[128.5086850868509,1.5304080594936096],[128.51948519485194,1.5354737913032608],[128.52668526685267,1.5439166776526747],[128.54108541085412,1.5624910276213768],[128.55548555485558,1.5692453367009165],[128.60588605886062,1.5776882230503304],[128.64548645486457,1.5793768003202047],[128.7210872108721,1.5709339139707907],[128.72468724687246,1.5658681821611538],[128.72828728287283,1.559113873081614],[128.72828728287283,1.548982409462326],[128.72468724687246,1.5422281003827862],[128.69948699486997,1.5236537504140841],[128.68868688686888,1.5033908231754936],[128.68508685086852,1.4831278959368888],[128.68508685086852,1.4459791959994703],[128.68868688686888,1.4375363096500564],[128.6958869588696,1.4290934233006425],[128.71388713887143,1.413896227871703],[128.72828728287283,1.408830496062052],[128.74268742687428,1.4054533415222892],[128.74268742687428,1.3986990324427637],[128.74268742687428,1.386878991553587],[128.74628746287465,1.3699932188547592],[128.749887498875,1.3446645598065174],[128.74628746287465,1.32102447802815],[128.73908739087392,1.3108930144088617],[128.7210872108721,1.3041387053293363],[128.71748717487174,1.2872529326305084],[128.71388713887143,1.2433499236135503],[128.70308703087034,1.1943811827869553],[128.69948699486997,1.170741101008602],[128.71028710287106,1.1031980102132906],[128.7066870668707,1.0863122375144627],[128.70308703087034,1.074492196625286],[128.69948699486997,1.0711150420855233],[128.68508685086852,1.0643607330059837],[128.6778867788678,1.0643607330059837],[128.6634866348664,1.0643607330059837],[128.64908649086493,1.0626721557361094],[128.64548645486457,1.0542292693866955],[128.5626856268563,1.0069491058299747],[128.54828548285485,0.9968176422106723],[128.54108541085412,0.9866861785913841],[128.5338853388534,0.9799318695118586],[128.47628476284763,0.9630460968130308],[128.4546845468455,0.9410945923045517],[128.44028440284404,0.9309631286852493],[128.42228422284222,0.9275859741454866],[128.40428404284046,0.9258973968756123],[128.3142831428314,0.9022573150972448],[128.29988299883001,0.8938144287478309],[128.2926829268293,0.8803058105887658],[128.28908289082892,0.8566657288104125],[128.29628296282965,0.8364028015718219],[128.29988299883001,0.8228941834127568],[128.2926829268293,0.8178284516031056],[128.2818828188282,0.8212056061428825],[128.26028260282607,0.8313370697621707],[128.24948249482497,0.8330256470320592],[128.23148231482315,0.8262713379525195],[128.22068220682206,0.8127627197934686],[128.21348213482133,0.7941883698247523],[128.21348213482133,0.7739254425861617],[128.22068220682206,0.7587282471572223],[128.23508235082352,0.7418424744583945],[128.26748267482674,0.7148252381402642],[128.29628296282965,0.6844308472823855],[128.3142831428314,0.6675450745835576],[128.34308343083433,0.6574136109642552],[128.36468364683645,0.6439049928051901],[128.37548375483755,0.6405278382654274],[128.40788407884082,0.6422164155353158],[128.43668436684368,0.6388392609955531],[128.4438844388444,0.6371506837256646],[128.45108451084513,0.6303963746461392],[128.46548465484653,0.6118220246774229],[128.47628476284763,0.6033791383280089],[128.48348483484835,0.5983134065183577],[128.51948519485194,0.594936251978595],[128.54108541085412,0.5898705201689438],[128.56988569885698,0.5696075929303532],[128.58428584285843,0.567919015660479],[128.5986859868599,0.5712961702002417],[128.61668616686165,0.5712961702002417],[128.6310863108631,0.567919015660479],[128.6418864188642,0.5611647065809393],[128.6526865268653,0.5577875520411766],[128.6670866708667,0.564541861120702],[128.68148681486815,0.5544103975014139],[128.68508685086852,0.5409017793423487],[128.68148681486815,0.5105073884844558],[128.6778867788678,0.5054416566748188],[128.67428674286742,0.5003759248651676],[128.67068670686706,0.4936216157856279],[128.68148681486815,0.480112997626577],[128.68508685086852,0.4699815340072746],[128.68508685086852,0.4615386476578607],[128.68508685086852,0.3821755159733726],[128.68868688686888,0.34671539330584267],[128.70308703087034,0.3315181978768891],[128.7606876068761,0.3213867342576009],[128.77148771487714,0.3163210024479497],[128.82548825488254,0.3112552706382985],[128.8506885068851,0.28930376612983366],[128.87948879488795,0.25553222073217796],[128.90108901089013,0.22176067533452226],[128.90108901089013,0.20825205717545714],[128.86148861488618,0.2437121798430013],[128.84708847088473,0.25046648892252676],[128.83268832688327,0.25215506619241523],[128.69948699486997,0.2909923433997079],[128.68148681486815,0.28423803432018246],[128.65628656286566,0.2977466524792476],[128.62748627486275,0.30787811609853577],[128.5986859868599,0.3163210024479497],[128.56628566285661,0.31800957971783816],[128.53748537485376,0.3264524660672521],[128.51228512285127,0.34671539330584267],[128.47628476284763,0.3872412477830238],[128.46188461884623,0.39568413413243775],[128.45108451084513,0.3973727114023262],[128.41868418684186,0.3939955568625493],[128.40428404284046,0.3939955568625493],[128.37548375483755,0.3990612886722005],[128.36108361083615,0.40074986594208895],[128.29628296282965,0.3889298250529123],[128.26388263882637,0.39061840232278655],[128.23508235082352,0.41425848410115407],[128.20988209882103,0.4075041750216144],[128.18828188281884,0.4210127931806795],[128.16668166681666,0.4412757204192701],[128.15228152281526,0.4547843385783352],[128.06948069480694,0.46322722492774915],[128.05508055080554,0.4615386476578607],[128.029880298803,0.4716701112771631],[127.97947979479795,0.47335868854703733],[127.96147961479613,0.4834901521663397],[127.939879398794,0.4666043794675119],[127.92187921879218,0.45309576130844675],[127.91107911079109,0.4378985658795074],[127.8966789667897,0.3551582796552566],[127.88227882278824,0.3365839296865403],[127.87867878678787,0.3247638887973636],[127.88227882278824,0.3011238070190103],[127.90747907479079,0.27579514797076854],[127.91107911079109,0.2538436434622895],[127.92187921879218,0.14577469818979694],[127.91827918279182,0.13057750276085756],[127.91107911079109,0.1187574618716809],[127.8966789667897,0.10187168917285305],[127.88947889478897,0.08667449374389946],[127.8858788587886,0.06641156650530888],[127.8858788587886,0.024197134758239258],[127.89307893078933,-0.018017296988816156],[127.90387903879042,-0.0501002651165976],[127.93267932679328,-0.1075118922926066],[127.95427954279546,-0.16323494219874135],[127.97227972279723,-0.19700648759638284],[127.97587975879759,-0.2425980738832152],[127.97947979479795,-0.26454957839169424],[127.99027990279905,-0.2814353510905221],[128.0190801908019,-0.31182974194841506],[128.02268022680227,-0.3287155146472429],[128.02268022680227,-0.3489784418858335],[128.03708037080372,-0.3962586054425543],[128.04428044280445,-0.4148329554112564],[128.0838808388084,-0.48068746893667935],[128.0946809468095,-0.5178361688740978],[128.1270812708127,-0.5431648279223396],[128.1378813788138,-0.5583620233512931],[128.2278822788228,-0.7103339776407296],[128.2818828188282,-0.7660570275468643],[128.3358833588336,-0.813337191103571],[128.3466834668347,-0.8234686547228733],[128.36828368283682,-0.8521744683108778],[128.38628386283864,-0.8673716637398172],[128.41868418684186,-0.8825688591687708],[128.43668436684368,-0.892700322788059],[128.44028440284404,-0.9095860954868868],[128.43308433084331,-0.9095860954868868],[128.40428404284046,-0.892700322788059],[128.37188371883718,-0.8842574364386451],[128.28548285482856,-0.8775031273591196],[128.26748267482674,-0.8741259728193569],[128.24948249482497,-0.8673716637398172],[128.23868238682388,-0.857240200120529],[128.2278822788228,-0.8403544274217012],[128.23508235082352,-0.8285343865325245],[128.24948249482497,-0.8268458092626361],[128.26028260282607,-0.8336001183421615],[128.26748267482674,-0.8336001183421615],[128.24948249482497,-0.7964514184047431],[128.2026820268203,-0.7694341820866271],[128.0478804788048,-0.712022554910618],[128.03348033480336,-0.6985139367515529],[128.0190801908019,-0.6816281640527251],[127.96867968679686,-0.5600506006211674],[127.91107911079109,-0.4773103143969166],[127.8858788587886,-0.4063900690618425],[127.86787867878678,-0.38950429636301465],[127.84987849878502,-0.36586421458466134],[127.83907839078392,-0.36079848277501014],[127.8318783187832,-0.3574213282352474],[127.77787777877779,-0.3287155146472429],[127.74187741877421,-0.30338685559900114],[127.72387723877239,-0.29832112378934994],[127.70947709477093,-0.2865010829001733],[127.6878768787688,-0.25948384658204304],[127.67347673476735,-0.23077803299403854],[127.66627666276662,-0.2088265284855737]]],[[[123.57303573035733,10.831091662007509],[123.5766357663577,10.826025930197872],[123.56943569435697,10.778745766641151],[123.56223562235624,10.760171416672435],[123.53343533435333,10.721334139465142],[123.51543515435156,10.680808284987961],[123.48663486634865,10.549099257937101],[123.47223472234725,10.527147753428636],[123.38943389433894,10.437653158124846],[123.3786337863379,10.420767385426018],[123.36423364233644,10.392061571838013],[123.34623346233462,10.34815856282107],[123.34263342633426,10.32620705831259],[123.3390333903339,10.260352544787168],[123.33543335433353,10.240089617548577],[123.30303303033031,10.179300835832791],[123.29943299432995,10.155660754054438],[123.29943299432995,10.132020672276084],[123.29583295832958,10.11175774503748],[123.28863288632886,10.093183395068777],[123.24543245432454,10.025640304273466],[123.23463234632345,10.002000222495113],[123.22743227432278,9.995245913415573],[123.22023220232205,9.988491604336048],[123.21663216632169,9.983425872526396],[123.2058320583206,9.939522863509453],[123.17703177031774,9.907439895381685],[123.16263162631628,9.890554122682857],[123.15543155431556,9.86691404090449],[123.16983169831701,9.696367736646337],[123.16623166231665,9.672727654867984],[123.16263162631628,9.662596191248682],[123.15903159031592,9.647398995819742],[123.15183151831519,9.647398995819742],[123.14463144631446,9.64908757308963],[123.13743137431373,9.64402184127998],[123.13383133831337,9.618693182231738],[123.17703177031774,9.589987368643733],[123.16983169831701,9.562970132325603],[123.16263162631628,9.583233059564208],[123.14463144631446,9.573101595944905],[123.13383133831337,9.552838668706315],[123.15183151831519,9.541018627817138],[123.18063180631805,9.537641473277361],[123.19143191431914,9.527510009658073],[123.19143191431914,9.510624236959245],[123.19863198631987,9.486984155180892],[123.21303213032132,9.473475537021827],[123.23103231032309,9.459966918862762],[123.25263252632527,9.444769723433822],[123.26703267032673,9.39917813714699],[123.28503285032849,9.3789152099084],[123.30663306633068,9.362029437209571],[123.32103321033213,9.343455087240855],[123.32823328233286,9.302929232763674],[123.31743317433177,9.257337646476842],[123.29943299432995,9.215123214729772],[123.24183241832418,9.135760083045284],[123.23823238232382,9.120562887616344],[123.23103231032309,9.10705426945728],[123.16263162631628,9.06483983771021],[123.14823148231483,9.061462683170447],[123.11223112231124,9.061462683170447],[123.10143101431015,9.059774105900559],[123.07983079830797,9.051331219551145],[123.05823058230584,9.046265487741508],[123.04383043830438,9.037822601392094],[123.03303033030329,9.036134024122205],[122.98982989829898,9.047954065011382],[122.95742957429576,9.081725610409038],[122.93222932229321,9.122251464886219],[122.89262892628926,9.220188946539423],[122.88542885428853,9.287732037334735],[122.88182881828817,9.306306387303437],[122.87102871028713,9.323192160002264],[122.84582845828459,9.346832241780618],[122.82782827828277,9.358652282669809],[122.809828098281,9.363718014479446],[122.7450274502745,9.367095169019208],[122.72342723427238,9.370472323558985],[122.68022680226801,9.394112405337339],[122.66582665826661,9.397489559877101],[122.65862658626588,9.400866714416864],[122.64782647826479,9.409309600766278],[122.64062640626406,9.41944106438558],[122.6370263702637,9.426195373465106],[122.6226262262623,9.429572528004869],[122.6118261182612,9.429572528004869],[122.60102601026011,9.432949682544645],[122.59742597425975,9.438015414354282],[122.59022590225902,9.451524032513348],[122.5686256862569,9.475164114291715],[122.55062550625507,9.490361309720655],[122.52902529025289,9.537641473277361],[122.51462514625149,9.547772936896664],[122.5038250382504,9.552838668706315],[122.49662496624967,9.561281555055729],[122.46782467824681,9.623758914041389],[122.45702457024572,9.637267532200454],[122.46422464224645,9.647398995819742],[122.46062460624609,9.655841882169156],[122.44262442624427,9.672727654867984],[122.4390243902439,9.667661923058333],[122.42822428224281,9.662596191248682],[122.42462424624244,9.659219036708919],[122.42462424624244,9.672727654867984],[122.43182431824317,9.698056313916226],[122.43182431824317,9.713253509345165],[122.42462424624244,9.709876354805402],[122.41022410224105,9.703122045725877],[122.40302403024032,9.6997448911861],[122.40302403024032,9.738582168393407],[122.41022410224105,9.775730868330825],[122.41022410224105,9.807813836458607],[122.39582395823959,9.836519650046611],[122.39582395823959,9.843273959126137],[122.40662406624068,9.853405422745439],[122.44262442624427,9.920948513540736],[122.46062460624609,9.966540099827569],[122.47502475024748,9.974982986176983],[122.49662496624967,9.976671563446871],[122.53622536225362,9.98680302706616],[122.56142561425617,9.98680302706616],[122.6262262622626,9.974982986176983],[122.64422644226443,9.966540099827569],[122.65862658626588,9.974982986176983],[122.70902709027092,9.98680302706616],[122.72702727027269,9.996934490685462],[122.78102781027809,10.052657540591596],[122.80622806228064,10.069543313290424],[122.82782827828277,10.057723272401233],[122.84582845828459,10.067854736020536],[122.87102871028713,10.099937704148303],[122.8782287822878,10.11851205411702],[122.8746287462875,10.143840713165261],[122.8638286382864,10.18605514491233],[122.85662856628568,10.228269576659386],[122.87102871028713,10.349847140090944],[122.86022860228604,10.393750149107902],[122.8206282062821,10.47311328079239],[122.81342813428137,10.515327712539445],[122.82422824228246,10.532213485238273],[122.84222842228422,10.540656371587687],[122.86022860228604,10.545722103397338],[122.87102871028713,10.552476412476864],[122.8746287462875,10.562607876096166],[122.91062910629108,10.598067998763696],[122.93222932229321,10.64872531686018],[122.93582935829357,10.658856780479482],[122.97182971829722,10.721334139465142],[122.97542975429758,10.741597066703733],[122.97182971829722,10.805763002959281],[122.96822968229685,10.810828734768918],[122.9538295382954,10.822648775658095],[122.95022950229503,10.827714507467746],[122.9538295382954,10.847977434706337],[122.9538295382954,10.85642032105575],[122.95742957429576,10.864863207405165],[122.96462964629649,10.876683248294341],[122.99342993429934,10.907077639152234],[123.00423004230043,10.912143370961886],[123.04743047430475,10.915520525501648],[123.06903069030693,10.918897680041411],[123.0870308703087,10.92565198912095],[123.16983169831701,10.977997884487309],[123.21303213032132,10.996572234456025],[123.259832598326,10.994883657186136],[123.26343263432636,10.991506502646374],[123.26343263432636,10.984752193566834],[123.27063270632709,10.977997884487309],[123.27783277832782,10.974620729947546],[123.29583295832958,10.974620729947546],[123.29943299432995,10.974620729947546],[123.31023310233104,10.966177843598132],[123.32823328233286,10.950980648169192],[123.34263342633426,10.945914916359541],[123.35343353433535,10.947603493629416],[123.3786337863379,10.959423534518606],[123.38943389433894,10.959423534518606],[123.40383403834039,10.952669225439067],[123.40023400234003,10.945914916359541],[123.39663396633966,10.935783452740239],[123.39663396633966,10.92565198912095],[123.40383403834039,10.9205862573113],[123.41463414634148,10.923963411851062],[123.42183421834221,10.932406298200476],[123.43263432634325,10.939160607280002],[123.4470344703447,10.942537761819779],[123.4578345783458,10.94084918454989],[123.46863468634689,10.935783452740239],[123.50103501035011,10.927340566390825],[123.52263522635229,10.9205862573113],[123.53343533435333,10.90538906188236],[123.54063540635406,10.864863207405165],[123.54783547835478,10.85642032105575],[123.56223562235624,10.837845971087049],[123.56223562235624,10.83615739381716],[123.5658356583566,10.83615739381716],[123.56943569435697,10.834468816547286],[123.57303573035733,10.831091662007509]]],[[[124.04824048240482,10.834468816547286],[124.04464044640446,10.809140157499044],[124.0266402664027,10.770302880291737],[124.01944019440197,10.748351375783258],[124.02304023040233,10.707825521306077],[124.05184051840519,10.626773812351715],[124.05544055440555,10.589625112414282],[124.05184051840519,10.589625112414282],[124.04464044640446,10.58624795787452],[124.03744037440373,10.581182226064882],[124.03384033840342,10.576116494255231],[124.03384033840342,10.57105076244558],[124.0410404104041,10.569362185175692],[124.0410404104041,10.562607876096166],[124.0410404104041,10.484933321681567],[124.03744037440373,10.46635897171285],[124.00864008640087,10.40388161272719],[124.00864008640087,10.395438726377776],[124.01944019440197,10.380241530948837],[124.0158401584016,10.371798644599423],[123.99423994239942,10.356601449170483],[123.99063990639905,10.36842149005966],[123.98703987039869,10.375175799139186],[123.97983979839802,10.376864376409074],[123.97263972639729,10.371798644599423],[123.97263972639729,10.36166718098012],[123.97263972639729,10.32620705831259],[123.9618396183962,10.322829903772828],[123.9078390783908,10.294124090184823],[123.88983889838897,10.282304049295632],[123.86823868238685,10.24853250389799],[123.85743857438575,10.241778194818451],[123.83223832238326,10.240089617548577],[123.80703807038071,10.2367124630088],[123.79263792637926,10.226580999389512],[123.7746377463775,10.199563763071382],[123.72063720637209,10.157349331324312],[123.71343713437136,10.142152135895373],[123.709837098371,10.120200631386894],[123.70623706237063,10.105003435957954],[123.69543695436954,10.093183395068777],[123.68463684636845,10.083051931449475],[123.67383673836741,10.079674776909712],[123.66303663036632,10.074609045100061],[123.65583655836559,10.069543313290424],[123.65223652236523,10.062789004210885],[123.64863648636486,10.056034695131359],[123.6450364503645,10.047591808781945],[123.6450364503645,10.039148922432531],[123.6450364503645,9.959785790748043],[123.6306363063631,9.907439895381685],[123.6306363063631,9.88717696814308],[123.62343623436237,9.878734081793667],[123.61623616236164,9.87366834998403],[123.60543605436055,9.871979772714141],[123.60183601836019,9.86691404090449],[123.50823508235084,9.654153304899268],[123.50463504635047,9.615316027691975],[123.48663486634865,9.56634728686538],[123.47943479434798,9.547772936896664],[123.47223472234725,9.53933005054725],[123.45423454234543,9.527510009658073],[123.44343443434434,9.520755700578547],[123.43623436234361,9.510624236959245],[123.42183421834221,9.486984155180892],[123.37143371433717,9.426195373465106],[123.35703357033572,9.416063909845818],[123.34263342633426,9.407621023496404],[123.32823328233286,9.407621023496404],[123.32103321033213,9.429572528004869],[123.3138331383314,9.485295577911003],[123.3138331383314,9.507247082419482],[123.36423364233644,9.785862331950128],[123.40383403834039,9.878734081793667],[123.40743407434076,9.897308431762383],[123.41103411034112,9.922637090810625],[123.40743407434076,9.927702822620276],[123.38583385833857,9.937834286239564],[123.38223382233821,9.942900018049215],[123.38583385833857,9.973294408907108],[123.38943389433894,9.980048717986634],[123.40023400234003,9.985114449796285],[123.40383403834039,9.981737295256522],[123.40743407434076,9.974982986176983],[123.41103411034112,9.974982986176983],[123.41463414634148,9.981737295256522],[123.41823418234185,9.990180181605936],[123.41823418234185,10.012131686114401],[123.42183421834221,10.037460345162643],[123.43623436234361,10.05434611786147],[123.47223472234725,10.083051931449475],[123.50823508235084,10.121889208656782],[123.52263522635229,10.145529290435135],[123.53343533435333,10.191120876721968],[123.58023580235806,10.253598235707628],[123.59823598235982,10.317764171963177],[123.60543605436055,10.332961367392116],[123.62343623436237,10.349847140090944],[123.70623706237063,10.461293239903199],[123.71343713437136,10.478179012602027],[123.71343713437136,10.48155616714179],[123.71703717037173,10.48662189895144],[123.72423724237245,10.49337620803098],[123.72423724237245,10.505196248920157],[123.71703717037173,10.537279217047924],[123.72063720637209,10.549099257937101],[123.72783727837282,10.569362185175692],[123.75303753037531,10.599756576033585],[123.7638376383764,10.640282430510766],[123.77823778237786,10.662233935019245],[123.79263792637926,10.682496862257835],[123.83223832238326,10.724711294004905],[123.85023850238503,10.75341710759291],[123.91503915039152,10.939160607280002],[123.93303933039334,10.971243575407783],[123.92943929439298,10.993195079916248],[123.91863918639189,11.028655202583792],[123.92583925839261,11.04554097528262],[123.93663936639365,11.059049593441685],[123.94383943839438,11.074246788870624],[123.94383943839438,11.097886870648978],[123.9510395103951,11.097886870648978],[123.95463954639547,11.089443984299564],[123.95823958239583,11.086066829759801],[123.97263972639729,11.077623943410387],[123.9618396183962,11.12996983877676],[123.95463954639547,11.141789879665936],[123.9510395103951,11.156987075094875],[123.95823958239583,11.175561425063592],[123.96903969039693,11.194135775032294],[124.01944019440197,11.258301711287842],[124.04464044640446,11.276876061256544],[124.07344073440737,11.26843317490713],[124.07344073440737,11.261678865827605],[124.069840698407,11.2329730522396],[124.05544055440555,11.204267238651596],[124.05184051840519,11.18569288868288],[124.04824048240482,11.148544188745461],[124.0410404104041,11.12996983877676],[124.01224012240124,11.094509716109215],[123.99783997839978,11.077623943410387],[124.00864008640087,11.072558211600736],[124.01224012240124,11.06580390252121],[124.01224012240124,11.059049593441685],[124.0158401584016,11.055672438901908],[124.03744037440373,11.057361016171797],[124.04464044640446,11.059049593441685],[124.05544055440555,11.064115325251322],[124.05184051840519,11.043852398012731],[124.06264062640628,10.984752193566834],[124.05904059040591,10.96280068905837],[124.05184051840519,10.930717720930588],[124.05544055440555,10.912143370961886],[124.06624066240664,10.888503289183532],[124.069840698407,10.87837182556423],[124.06624066240664,10.868240361944927],[124.05184051840519,10.844600280166574],[124.04824048240482,10.834468816547286]]],[[[119.67059670596706,10.552476412476864],[119.71379713797137,10.532213485238273],[119.72459724597246,10.518704867079222],[119.710197101971,10.495064785300855],[119.70299702997033,10.491687630761092],[119.67779677796779,10.484933321681567],[119.6669966699667,10.48155616714179],[119.64899648996493,10.449473199014022],[119.63819638196384,10.444407467204371],[119.59499594995953,10.405570189997079],[119.5769957699577,10.380241530948837],[119.56259562595625,10.373487221869297],[119.54099540995412,10.371798644599423],[119.50139501395017,10.371798644599423],[119.49059490594908,10.371798644599423],[119.47259472594726,10.378552953678948],[119.46179461794617,10.378552953678948],[119.45099450994513,10.373487221869297],[119.41859418594186,10.354912871900595],[119.39699396993973,10.349847140090944],[119.37899378993791,10.344781408281293],[119.35739357393572,10.329584212852353],[119.28539285392856,10.262041122057042],[119.25659256592564,10.22151526757986],[119.23859238592388,10.179300835832791],[119.22059220592206,10.084740508719364],[119.19539195391957,10.056034695131359],[119.15939159391593,10.040837499702405],[119.11259112591125,10.029017458813229],[119.10179101791022,10.023951727003592],[119.0837908379084,10.012131686114401],[119.0729907299073,10.008754531574638],[119.06219062190621,10.007065954304764],[119.03699036990372,10.008754531574638],[119.02619026190263,10.008754531574638],[119.01539015390154,10.003688799764987],[118.99378993789941,9.99186875887581],[118.98298982989832,9.98680302706616],[118.97218972189722,9.985114449796285],[118.9505895058951,9.981737295256522],[118.90378903789036,9.978360140716745],[118.8749887498875,9.97160583163722],[118.84978849788502,9.959785790748043],[118.8209882098821,9.939522863509453],[118.79578795787961,9.944588595319104],[118.77418774187743,9.934457131699801],[118.7561875618756,9.912505627191322],[118.74898748987493,9.88717696814308],[118.7561875618756,9.856782577285202],[118.77418774187743,9.814568145538132],[118.78498784987852,9.787550909220002],[118.77778777787779,9.733516436583756],[118.76338763387633,9.728450704774119],[118.74898748987493,9.733516436583756],[118.73458734587348,9.743647900203058],[118.73098730987311,9.757156518362123],[118.73458734587348,9.775730868330825],[118.73098730987311,9.780796600140476],[118.7129871298713,9.782485177410365],[118.7021870218702,9.775730868330825],[118.7021870218702,9.760533672901886],[118.70578705787057,9.74195932293317],[118.7021870218702,9.72676212750423],[118.7129871298713,9.721696395694579],[118.72018720187202,9.713253509345165],[118.72018720187202,9.704810622995751],[118.71658716587166,9.692990582106574],[118.7417874178742,9.696367736646337],[118.75978759787597,9.682859118487286],[118.7561875618756,9.667661923058333],[118.73098730987311,9.665973345788458],[118.73098730987311,9.650776150359505],[118.72378723787239,9.630513223120914],[118.71658716587166,9.611938873152212],[118.70578705787057,9.600118832263021],[118.7021870218702,9.591675945913607],[118.6985869858699,9.583233059564208],[118.69498694986953,9.578167327754556],[118.67338673386735,9.574790173214794],[118.66978669786698,9.569724441405143],[118.59058590585909,9.446458300703696],[118.55818558185581,9.410998178036166],[118.55098550985508,9.400866714416864],[118.54738547385477,9.382292364448162],[118.53658536585368,9.363718014479446],[118.49698496984973,9.313060696382962],[118.49338493384937,9.307994964573325],[118.45378453784537,9.284354882794958],[118.4465844658447,9.280977728255195],[118.43218432184324,9.272534841905781],[118.3817838178382,9.220188946539423],[118.36378363783638,9.193171710221293],[118.35298352983529,9.183040246602005],[118.33498334983352,9.179663092062242],[118.29538295382957,9.179663092062242],[118.28458284582848,9.176285937522465],[118.2629826298263,9.162777319363414],[118.24858248582484,9.157711587553763],[118.18738187381877,9.156023010283874],[118.17298172981731,9.14758012393446],[118.16218162181622,9.142514392124824],[118.13698136981372,9.130694351235633],[118.13338133381336,9.12731719669587],[118.12618126181263,9.096922805837977],[118.11178111781118,9.069905569519861],[118.11178111781118,9.06483983771021],[118.11178111781118,9.053019796821033],[118.11178111781118,9.04964264228127],[118.10818108181081,9.047954065011382],[118.10098100981008,9.047954065011382],[118.09378093780941,9.046265487741508],[118.09378093780941,9.037822601392094],[118.09018090180905,9.019248251423377],[118.07938079380796,8.995608169645024],[118.05778057780577,8.951705160628066],[118.01458014580146,8.887539224372532],[118.0001800018,8.87740776075323],[117.91017910179102,8.830127597196523],[117.84177841778421,8.774404547290388],[117.77337773377735,8.703484301955314],[117.75537755377553,8.689975683796249],[117.7337773377734,8.684909951986612],[117.71217712177122,8.683221374716723],[117.69777697776976,8.678155642907072],[117.68697686976873,8.671401333827546],[117.66897668976691,8.664647024748007],[117.64737647376472,8.662958447478132],[117.58977589775901,8.671401333827546],[117.56457564575646,8.661269870208244],[117.55737557375573,8.63762978842989],[117.55737557375573,8.59710393395271],[117.550175501755,8.57515242944423],[117.52137521375215,8.539692306776686],[117.51777517775179,8.517740802268222],[117.51417514175142,8.507609338648919],[117.50337503375033,8.500855029569394],[117.4925749257493,8.499166452299505],[117.48897488974893,8.504232184109156],[117.48537485374857,8.51267507045857],[117.47097470974711,8.514363647728459],[117.37737377373776,8.48565783414044],[117.34497344973448,8.4704606387115],[117.31977319773199,8.451886288742799],[117.31617316173163,8.446820556933147],[117.3089730897309,8.42993478423432],[117.30537305373053,8.424869052424668],[117.26937269372695,8.41473758880538],[117.26217262172622,8.397851816106552],[117.24777247772477,8.384343197947487],[117.22257222572227,8.364080270708897],[117.19737197371973,8.335374457120892],[117.19017190171905,8.338751611660655],[117.18657186571869,8.36576884797877],[117.19017190171905,8.377588888867948],[117.20097200972009,8.397851816106552],[117.20457204572045,8.418114743345143],[117.21177211772118,8.426557629694557],[117.21897218972191,8.433311938774082],[117.22257222572227,8.438377670583733],[117.22257222572227,8.448509134203022],[117.22257222572227,8.468772061441626],[117.22257222572227,8.483969256870566],[117.22257222572227,8.495789297759742],[117.22257222572227,8.500855029569394],[117.22617226172264,8.505920761379045],[117.23337233372337,8.510986493188682],[117.2405724057241,8.536315152236924],[117.24777247772477,8.55488950220564],[117.26937269372695,8.588661047603296],[117.26937269372695,8.59034962487317],[117.26217262172622,8.61061255211176],[117.28017280172804,8.605546820302123],[117.28737287372877,8.620744015731063],[117.29097290972913,8.641006942969653],[117.30177301773017,8.651138406588956],[117.31257312573126,8.656204138398593],[117.32697326973272,8.668024179287784],[117.34137341373417,8.684909951986612],[117.35217352173521,8.698418570145662],[117.33777337773381,8.698418570145662],[117.35937359373594,8.730501538273444],[117.37737377373776,8.747387310972272],[117.4169741697417,8.759207351861448],[117.43497434974353,8.7727159700205],[117.44937449374493,8.791290319989216],[117.52137521375215,8.899359265261708],[117.54297542975434,8.92468792430995],[117.62217622176223,8.992231015105261],[117.64017640176405,9.020936828693266],[117.64737647376472,9.04288833320173],[117.65457654576545,9.058085528630684],[117.66897668976691,9.066528414980098],[117.69057690576909,9.069905569519861],[117.70497704977049,9.080037033139163],[117.71217712177122,9.081725610409038],[117.71577715777158,9.073282724059624],[117.71937719377195,9.066528414980098],[117.73017730177304,9.06483983771021],[117.74097740977413,9.066528414980098],[117.75177751777517,9.069905569519861],[117.76257762577626,9.078348455869275],[117.76977769777699,9.086791342218689],[117.78057780577808,9.120562887616344],[117.78417784177844,9.122251464886219],[117.78777787777881,9.12731719669587],[117.79137791377917,9.13407150577541],[117.78777787777881,9.142514392124824],[117.78417784177844,9.150957278474223],[117.79497794977954,9.162777319363414],[117.83817838178385,9.188105978411656],[117.84897848978488,9.193171710221293],[117.8669786697867,9.203303173840595],[117.88857888578889,9.250583337397316],[117.90297902979029,9.260714801016604],[117.94617946179466,9.255649069206953],[117.96777967779678,9.257337646476842],[117.98937989379897,9.26746911009613],[117.98937989379897,9.255649069206953],[117.98937989379897,9.245517605587665],[117.99297992979933,9.238763296508125],[118.00378003780037,9.233697564698488],[118.01458014580146,9.243829028317776],[118.02538025380255,9.253960491937079],[118.04338043380437,9.280977728255195],[118.05418054180541,9.291109191874497],[118.12618126181263,9.338389355431204],[118.13338133381336,9.343455087240855],[118.13698136981372,9.351897973590269],[118.129781297813,9.373849478098748],[118.13338133381336,9.383980941718036],[118.14778147781476,9.397489559877101],[118.17298172981731,9.407621023496404],[118.1945819458195,9.421129641655469],[118.21618216182162,9.478541268831478],[118.27738277382775,9.519067123308659],[118.29898298982988,9.554527245976189],[118.3277832778328,9.57985590502443],[118.33138331383316,9.58661021410397],[118.33498334983352,9.591675945913607],[118.33858338583389,9.596741677723259],[118.34578345783461,9.603495986802798],[118.34578345783461,9.613627450422086],[118.34578345783461,9.635578954930565],[118.34938349383492,9.645710418549854],[118.36018360183601,9.659219036708919],[118.3709837098371,9.654153304899268],[118.3817838178382,9.657530459439045],[118.39978399783996,9.672727654867984],[118.40698406984069,9.676104809407747],[118.41418414184142,9.677793386677635],[118.42138421384215,9.681170541217398],[118.42498424984251,9.698056313916226],[118.42858428584287,9.701433468455988],[118.4357843578436,9.701433468455988],[118.44298442984433,9.70649920026564],[118.450184501845,9.714942086615054],[118.52938529385295,9.774042291060951],[118.53658536585368,9.785862331950128],[118.54738547385477,9.812879568268244],[118.59418594185945,9.856782577285202],[118.60498604986049,9.87366834998403],[118.60858608586085,9.885488390873206],[118.61218612186121,9.900685586302146],[118.61938619386194,9.917571359000974],[118.65898658986589,9.964851522557694],[118.66618666186662,9.974982986176983],[118.65538655386553,9.996934490685462],[118.67338673386735,10.012131686114401],[118.72378723787239,10.035771767892768],[118.72738727387275,10.045903231512057],[118.76338763387633,10.120200631386894],[118.77058770587706,10.130332095006196],[118.77778777787779,10.098249126878429],[118.77778777787779,10.083051931449475],[118.7669876698767,10.07629762236995],[118.76338763387633,10.069543313290424],[118.77778777787779,10.056034695131359],[118.79938799387998,10.04928038605182],[118.81018810188101,10.059411849671122],[118.81378813788137,10.067854736020536],[118.8209882098821,10.074609045100061],[118.82818828188283,10.079674776909712],[118.8317883178832,10.083051931449475],[118.83898838988392,10.094871972338652],[118.83898838988392,10.099937704148303],[118.83538835388356,10.103314858688066],[118.81738817388174,10.137086404085721],[118.81378813788137,10.152283599514675],[118.81018810188101,10.172546526753266],[118.81738817388174,10.189432299452093],[118.8209882098821,10.194498031261745],[118.84258842588429,10.192809453991856],[118.85338853388532,10.196186608531619],[118.8749887498875,10.209695226690684],[118.88938889388896,10.213072381230447],[118.91818918189182,10.208006649420795],[118.93258932589328,10.209695226690684],[118.9505895058951,10.219826690309972],[118.95778957789577,10.235023885738926],[118.96138961389613,10.251909658437754],[118.95778957789577,10.268795431136581],[118.9505895058951,10.282304049295632],[118.95778957789577,10.28399262656552],[118.95778957789577,10.287369781105284],[118.96138961389613,10.28568120383541],[118.96858968589686,10.282304049295632],[118.97938979389795,10.292435512914935],[118.99378993789941,10.300878399264349],[119.0081900819008,10.305944131074],[119.02619026190263,10.309321285613763],[119.02259022590226,10.324518481042702],[119.02979029790299,10.338027099201767],[119.03339033390336,10.349847140090944],[119.0189901899019,10.356601449170483],[119.0081900819008,10.353224294630706],[118.99738997389977,10.346469985551181],[118.98298982989832,10.344781408281293],[118.97578975789759,10.356601449170483],[118.97938979389795,10.36842149005966],[118.99018990189904,10.3836186854886],[119.00099000990014,10.397127303647665],[119.01179011790117,10.405570189997079],[119.02619026190263,10.407258767266953],[119.04419044190445,10.40388161272719],[119.05859058590585,10.398815880917539],[119.0729907299073,10.392061571838013],[119.08019080190803,10.40388161272719],[119.08019080190803,10.415701653616367],[119.0837908379084,10.422455962695906],[119.10539105391052,10.425833117235669],[119.09819098190985,10.439341735394734],[119.09099090990912,10.44609604447426],[119.0837908379084,10.452850353553785],[119.08739087390876,10.46635897171285],[119.09099090990912,10.47311328079239],[119.11259112591125,10.479867589871915],[119.11979119791198,10.48831047622133],[119.11979119791198,10.476490435332153],[119.11619116191162,10.47311328079239],[119.11259112591125,10.46635897171285],[119.11979119791198,10.454538930823674],[119.12699126991271,10.395438726377776],[119.13419134191344,10.38868441729825],[119.15219152191526,10.398815880917539],[119.18099180991811,10.425833117235669],[119.1917919179192,10.447784621744148],[119.19539195391957,10.452850353553785],[119.2025920259203,10.457916085363436],[119.21339213392133,10.459604662633325],[119.22059220592206,10.462981817173088],[119.23139231392315,10.484933321681567],[119.26379263792637,10.49337620803098],[119.27819278192783,10.50857340345992],[119.26739267392674,10.518704867079222],[119.25659256592564,10.530524907968399],[119.24579245792461,10.542344948857576],[119.24939249392497,10.55585356701664],[119.2709927099271,10.549099257937101],[119.28899288992892,10.557542144286515],[119.31059310593105,10.574427916985343],[119.31779317793178,10.589625112414282],[119.34659346593469,10.723022716735017],[119.34299342993432,10.736531334894082],[119.32859328593287,10.751728530323035],[119.3249932499325,10.756794262132672],[119.32139321393214,10.765237148482086],[119.31779317793178,10.771991457561626],[119.31059310593105,10.775368612101389],[119.30339303393038,10.7736800348315],[119.29259292592928,10.761859993942323],[119.28539285392856,10.761859993942323],[119.27459274592746,10.771991457561626],[119.2709927099271,10.785500075720677],[119.2709927099271,10.812517312038807],[119.26739267392674,10.826025930197872],[119.25299252992534,10.837845971087049],[119.23859238592388,10.844600280166574],[119.22419224192242,10.851354589246114],[119.25299252992534,10.886814711913644],[119.25659256592564,10.891880443723295],[119.24939249392497,10.902011907342583],[119.23499234992352,10.908766216422123],[119.22779227792279,10.915520525501648],[119.23859238592388,10.932406298200476],[119.22419224192242,10.942537761819779],[119.23139231392315,10.950980648169192],[119.24579245792461,10.949292070899304],[119.24939249392497,10.92565198912095],[119.25659256592564,10.92565198912095],[119.26019260192601,10.930717720930588],[119.26379263792637,10.939160607280002],[119.26739267392674,10.932406298200476],[119.27459274592746,10.927340566390825],[119.27819278192783,10.927340566390825],[119.28539285392856,10.932406298200476],[119.29259292592928,10.932406298200476],[119.28899288992892,10.9205862573113],[119.28539285392856,10.917209102771537],[119.27819278192783,10.912143370961886],[119.29259292592928,10.885126134643755],[119.2709927099271,10.885126134643755],[119.27819278192783,10.874994671024467],[119.28899288992892,10.871617516484704],[119.29979299793001,10.873306093754579],[119.31419314193141,10.87837182556423],[119.30699306993068,10.85642032105575],[119.31059310593105,10.847977434706337],[119.32139321393214,10.839534548356923],[119.33219332193323,10.822648775658095],[119.33939339393396,10.822648775658095],[119.33939339393396,10.831091662007509],[119.34659346593469,10.831091662007509],[119.35019350193505,10.810828734768918],[119.36819368193682,10.80069727114963],[119.38619386193864,10.79394296207009],[119.39339393393936,10.778745766641151],[119.39699396993973,10.768614303021849],[119.40419404194046,10.761859993942323],[119.41139411394113,10.761859993942323],[119.41859418594186,10.770302880291737],[119.42579425794258,10.761859993942323],[119.43299432994331,10.751728530323035],[119.44019440194404,10.739908489433844],[119.44019440194404,10.733154180354319],[119.4437944379444,10.728088448544668],[119.4581945819458,10.728088448544668],[119.4689946899469,10.733154180354319],[119.4689946899469,10.741597066703733],[119.46539465394653,10.750039953053147],[119.4581945819458,10.75848283940256],[119.44739447394477,10.788877230260454],[119.44019440194404,10.795631539339979],[119.4437944379444,10.810828734768918],[119.45099450994513,10.824337352927984],[119.4581945819458,10.831091662007509],[119.45099450994513,10.841223125626811],[119.43659436594368,10.853043166515988],[119.41859418594186,10.861486052865402],[119.40419404194046,10.864863207405165],[119.38619386193864,10.864863207405165],[119.37179371793718,10.868240361944927],[119.35379353793542,10.87837182556423],[119.34659346593469,10.89863475280282],[119.35019350193505,10.908766216422123],[119.35739357393572,10.927340566390825],[119.36099360993609,10.932406298200476],[119.35019350193505,10.934094875470365],[119.33939339393396,10.932406298200476],[119.3249932499325,10.934094875470365],[119.31779317793178,10.942537761819779],[119.32139321393214,11.001637966265662],[119.3249932499325,11.015146584424727],[119.3249932499325,11.02358947077414],[119.33219332193323,11.02358947077414],[119.3357933579336,11.011769429884964],[119.33939339393396,11.00332654353555],[119.35019350193505,10.999949388995788],[119.36099360993609,11.001637966265662],[119.35379353793542,11.02358947077414],[119.32859328593287,11.064115325251322],[119.3249932499325,11.091132561569452],[119.3357933579336,11.102952602458629],[119.34659346593469,11.089443984299564],[119.36099360993609,11.067492479791099],[119.37899378993791,11.055672438901908],[119.38619386193864,11.053983861632034],[119.39699396993973,11.050606707092271],[119.40779407794076,11.048918129822383],[119.41499414994149,11.055672438901908],[119.41859418594186,11.067492479791099],[119.41859418594186,11.096198293379103],[119.43299432994331,11.121526952427345],[119.42579425794258,11.133346993316522],[119.41859418594186,11.140101302396047],[119.41499414994149,11.138412725126173],[119.39699396993973,11.158675652364764],[119.39339393393936,11.172184270523815],[119.38619386193864,11.187381465952768],[119.40059400594009,11.18569288868288],[119.41499414994149,11.197512929572056],[119.42219422194222,11.21271012500101],[119.42939429394295,11.22790732042995],[119.42939429394295,11.249858824938428],[119.42219422194222,11.297138988495135],[119.42579425794258,11.314024761193963],[119.42939429394295,11.319090493003614],[119.43299432994331,11.322467647543377],[119.43659436594368,11.327533379353028],[119.43659436594368,11.334287688432553],[119.44019440194404,11.33766484297233],[119.4437944379444,11.33766484297233],[119.45099450994513,11.334287688432553],[119.45099450994513,11.33091053389279],[119.46539465394653,11.346107729321744],[119.47259472594726,11.357927770210921],[119.47619476194762,11.368059233830209],[119.47979479794799,11.396765047418214],[119.48339483394835,11.410273665577279],[119.49059490594908,11.420405129196581],[119.50139501395017,11.423782283736344],[119.50859508595084,11.413650820117041],[119.51219512195121,11.398453624688102],[119.51579515795157,11.384945006529037],[119.51579515795157,11.368059233830209],[119.51579515795157,11.361304924750684],[119.51939519395194,11.351173461131381],[119.5229952299523,11.339353420242205],[119.53019530195303,11.33091053389279],[119.53739537395376,11.324156224813265],[119.54099540995412,11.327533379353028],[119.54819548195485,11.33259911116268],[119.55179551795521,11.33766484297233],[119.56619566195661,11.302204720304786],[119.56979569795698,11.261678865827605],[119.56259562595625,11.219464434080535],[119.54459544595449,11.178938579603354],[119.51939519395194,11.138412725126173],[119.51579515795157,11.118149797887568],[119.53019530195303,11.094509716109215],[119.55179551795521,11.072558211600736],[119.56259562595625,11.059049593441685],[119.57339573395734,11.015146584424727],[119.56979569795698,11.006703698075313],[119.55899558995588,11.001637966265662],[119.53739537395376,11.013458007154853],[119.5229952299523,11.016835161694615],[119.51579515795157,11.011769429884964],[119.50499504995054,10.98306361629696],[119.50499504995054,10.971243575407783],[119.50499504995054,10.959423534518606],[119.51219512195121,10.937472030010127],[119.51219512195121,10.92565198912095],[119.50859508595084,10.915520525501648],[119.50499504995054,10.896946175532946],[119.50499504995054,10.885126134643755],[119.50859508595084,10.874994671024467],[119.51579515795157,10.859797475595528],[119.51939519395194,10.837845971087049],[119.5229952299523,10.827714507467746],[119.53019530195303,10.819271621118332],[119.54099540995412,10.81589446657857],[119.55539555395558,10.819271621118332],[119.56259562595625,10.822648775658095],[119.56979569795698,10.827714507467746],[119.57339573395734,10.831091662007509],[119.58419584195843,10.832780239277398],[119.5877958779588,10.834468816547286],[119.59499594995953,10.837845971087049],[119.60219602196025,10.824337352927984],[119.60219602196025,10.810828734768918],[119.59499594995953,10.797320116609868],[119.59499594995953,10.785500075720677],[119.59859598595989,10.755105684862798],[119.59859598595989,10.71795698492538],[119.59499594995953,10.697694057686789],[119.59139591395916,10.682496862257835],[119.59139591395916,10.672365398638547],[119.60579605796062,10.665611089559007],[119.62739627396274,10.667299666828896],[119.6417964179642,10.67574255317831],[119.6525965259653,10.67574255317831],[119.6669966699667,10.652102471399942],[119.65979659796596,10.65547962593972],[119.64899648996493,10.65547962593972],[119.6417964179642,10.65547962593972],[119.63459634596347,10.652102471399942],[119.63819638196384,10.643659585050528],[119.6417964179642,10.638593853240891],[119.6417964179642,10.631839544161352],[119.6417964179642,10.625085235081826],[119.65619656196566,10.611576616922761],[119.66339663396633,10.57105076244558],[119.67059670596706,10.552476412476864]]],[[[123.16983169831701,11.481193910912353],[123.17343173431738,11.467685292753288],[123.16983169831701,11.454176674594237],[123.16263162631628,11.438979479165283],[123.15543155431556,11.423782283736344],[123.16263162631628,11.39507647014834],[123.15903159031592,11.379879274719386],[123.14823148231483,11.361304924750684],[123.14823148231483,11.356239192941032],[123.14823148231483,11.35286203840127],[123.130231302313,11.349484883861507],[123.1266312663127,11.344419152051856],[123.12303123031234,11.33766484297233],[123.12303123031234,11.33091053389279],[123.12303123031234,11.329221956622916],[123.12303123031234,11.302204720304786],[123.11583115831161,11.281941793066196],[123.11223112231124,11.266744597637256],[123.11583115831161,11.231284474969712],[123.11943119431197,11.221153011350424],[123.1266312663127,11.216087279540773],[123.13383133831337,11.211021547731121],[123.13743137431373,11.195824352302182],[123.130231302313,11.182315734143117],[123.11223112231124,11.168807115984052],[123.10863108631088,11.151921343285224],[123.0870308703087,11.162052806904526],[123.0618306183062,11.168807115984052],[123.04023040230402,11.1637413841744],[123.02943029430293,11.109706911538154],[123.01503015030153,11.091132561569452],[122.9970299702997,11.079312520680276],[122.97182971829722,11.069181057060973],[122.97542975429758,11.057361016171797],[122.97182971829722,11.048918129822383],[122.95022950229503,11.035409511663318],[122.9538295382954,11.04554097528262],[122.95022950229503,11.055672438901908],[122.94662946629467,11.062426747981448],[122.93942939429394,11.064115325251322],[122.93222932229321,11.059049593441685],[122.92862928629285,11.037098088933206],[122.92502925029254,11.028655202583792],[122.91422914229145,11.026966625313904],[122.90702907029072,11.03034377985368],[122.89982899828999,11.033720934393443],[122.8890288902889,11.035409511663318],[122.88542885428853,11.033720934393443],[122.8638286382864,11.015146584424727],[122.8638286382864,11.028655202583792],[122.83862838628386,11.01852373896449],[122.81342813428137,10.998260811725899],[122.78822788227882,10.97630930721742],[122.78102781027809,10.957734957248718],[122.78462784627845,10.92565198912095],[122.79542795427955,10.900323330072709],[122.79902799027991,10.874994671024467],[122.78822788227882,10.844600280166574],[122.76302763027633,10.810828734768918],[122.7450274502745,10.795631539339979],[122.72702727027269,10.788877230260454],[122.71982719827201,10.792254384800216],[122.7018270182702,10.80069727114963],[122.69462694626947,10.802385848419505],[122.68742687426874,10.80069727114963],[122.66582665826661,10.788877230260454],[122.65502655026552,10.787188652990565],[122.64422644226443,10.78043434391104],[122.62982629826297,10.7736800348315],[122.61542615426157,10.761859993942323],[122.6118261182612,10.756794262132672],[122.60102601026011,10.741597066703733],[122.60462604626048,10.73821991216397],[122.60462604626048,10.734842757624207],[122.60462604626048,10.728088448544668],[122.59382593825939,10.721334139465142],[122.59022590225902,10.699382634956663],[122.54342543425435,10.689251171337375],[122.449824498245,10.685874016797598],[122.36702367023673,10.672365398638547],[122.35622356223564,10.670676821368659],[122.34182341823418,10.660545357749356],[122.33822338223382,10.658856780479482],[122.3058230582306,10.660545357749356],[122.29502295022951,10.658856780479482],[122.28062280622805,10.65379104866983],[122.26982269822702,10.641971007780654],[122.25902259022592,10.638593853240891],[122.24822248222483,10.638593853240891],[122.23742237422374,10.641971007780654],[122.22662226622265,10.641971007780654],[122.21582215822161,10.635216698701129],[122.1726217262173,10.601445153303473],[122.16182161821621,10.593002266954059],[122.15102151021512,10.593002266954059],[122.14022140221402,10.593002266954059],[122.12942129421293,10.589625112414282],[122.10062100621008,10.569362185175692],[122.03942039420394,10.46635897171285],[122.03222032220322,10.461293239903199],[122.01422014220145,10.44609604447426],[121.98181981819818,10.43089884904532],[121.94941949419496,10.432587426315195],[121.93141931419314,10.46635897171285],[121.93141931419314,10.50857340345992],[121.97101971019714,10.582870803334757],[121.98541985419854,10.625085235081826],[121.98541985419854,10.647036739590305],[121.97821978219781,10.709514098575966],[121.97101971019714,10.724711294004905],[121.94581945819459,10.75341710759291],[121.93861938619386,10.775368612101389],[121.93861938619386,10.79394296207009],[121.95301953019532,10.822648775658095],[121.96021960219605,10.854731743785877],[121.97821978219781,10.90538906188236],[122.04662046620467,11.016835161694615],[122.0538205382054,11.064115325251322],[122.0538205382054,11.2329730522396],[122.05022050220504,11.254924556748065],[122.04302043020431,11.278564638526433],[122.04302043020431,11.300516143034912],[122.05022050220504,11.320779070273502],[122.06102061020613,11.339353420242205],[122.06462064620649,11.359616347480795],[122.07182071820722,11.47781675637259],[122.07542075420753,11.482882488182241],[122.08262082620826,11.487948219991878],[122.08622086220862,11.494702529071418],[122.1078210782108,11.658494524250031],[122.10062100621008,11.693954646917575],[122.08622086220862,11.724349037775468],[122.06102061020613,11.734480501394756],[122.02862028620285,11.734480501394756],[121.99261992619927,11.741234810474296],[121.95661956619568,11.754743428633347],[121.94221942219423,11.759809160442998],[121.9206192061921,11.761497737712887],[121.8810188101881,11.761497737712887],[121.86301863018633,11.763186314982761],[121.85221852218524,11.7699406240623],[121.8558185581856,11.771629201332175],[121.8558185581856,11.780072087681589],[121.8666186661867,11.793580705840654],[121.87741877418773,11.80540074672983],[121.88461884618846,11.810466478539482],[121.88821888218882,11.818909364888896],[121.89181891818919,11.839172292127486],[121.89181891818919,11.859435219366077],[121.88821888218882,11.871255260255253],[121.89181891818919,11.884763878414319],[121.89541895418955,11.893206764763733],[121.90621906219064,11.898272496573384],[121.9206192061921,11.898272496573384],[121.92781927819277,11.903338228383035],[121.93861938619386,11.921912578351737],[121.94581945819459,11.926978310161388],[121.95301953019532,11.926978310161388],[121.96021960219605,11.933732619240914],[121.96381963819641,11.933732619240914],[121.97101971019714,11.930355464701151],[121.97821978219781,11.923601155621625],[121.98181981819818,11.916846846542086],[121.98541985419854,11.913469692002323],[122.02142021420218,11.903338228383035],[122.02862028620285,11.896583919303495],[122.0538205382054,11.866189528445602],[122.07182071820722,11.849303755746789],[122.09342093420935,11.834106560317835],[122.1186211862119,11.823975096698547],[122.23022230222301,11.80033501492018],[122.26622266222665,11.78513781949124],[122.29862298622987,11.761497737712887],[122.32382323823242,11.74292338774417],[122.33462334623346,11.736169078664645],[122.37782377823777,11.732791924124882],[122.38862388623886,11.727726192315231],[122.42822428224281,11.668625987869333],[122.4390243902439,11.656805946980157],[122.45342453424536,11.653428792440394],[122.46422464224645,11.64498590609098],[122.51102511025113,11.59770574253426],[122.57222572225726,11.57575423802578],[122.58662586625866,11.563934197136604],[122.59382593825939,11.553802733517315],[122.59382593825939,11.548737001707664],[122.59742597425975,11.531851229008836],[122.60462604626048,11.516654033579897],[122.6226262262623,11.508211147230483],[122.62982629826297,11.509899724500357],[122.64062640626406,11.52003118811966],[122.65502655026552,11.526785497199185],[122.65502655026552,11.5352283835486],[122.65142651426515,11.543671269898013],[122.65142651426515,11.550425578977539],[122.65502655026552,11.565622774406492],[122.65862658626588,11.568999928946255],[122.67302673026734,11.560557042596841],[122.68742687426874,11.545359847167902],[122.6910269102691,11.541982692628125],[122.70542705427056,11.543671269898013],[122.69462694626947,11.55549131078719],[122.69462694626947,11.560557042596841],[122.7018270182702,11.565622774406492],[122.71262712627129,11.570688506216143],[122.73062730627305,11.592640010724608],[122.73422734227341,11.601082897074022],[122.73062730627305,11.604460051613785],[122.72702727027269,11.607837206153562],[122.72342723427238,11.611214360693324],[122.7558275582756,11.614591515233087],[122.79542795427955,11.612902937963199],[122.83142831428313,11.604460051613785],[122.85662856628568,11.590951433454734],[122.8638286382864,11.57575423802578],[122.86742867428677,11.560557042596841],[122.8746287462875,11.548737001707664],[122.88542885428853,11.543671269898013],[122.89982899828999,11.54029411535825],[122.9430294302943,11.521719765389534],[122.89262892628926,11.487948219991878],[122.8746287462875,11.465996715483413],[122.8746287462875,11.447422365514697],[122.89982899828999,11.437290901895409],[122.92862928629285,11.45079952005446],[122.9538295382954,11.471062447293065],[122.98262982629825,11.481193910912353],[123.0078300783008,11.487948219991878],[123.04383043830438,11.516654033579897],[123.09063090630906,11.530162651738948],[123.11943119431197,11.548737001707664],[123.1410314103141,11.572377083486018],[123.15543155431556,11.59770574253426],[123.16263162631628,11.59770574253426],[123.16263162631628,11.538605538088362],[123.15543155431556,11.521719765389534],[123.14823148231483,11.52003118811966],[123.13743137431373,11.518342610849771],[123.1266312663127,11.514965456310009],[123.12303123031234,11.508211147230483],[123.12303123031234,11.49807968361118],[123.130231302313,11.49301395180153],[123.13743137431373,11.49301395180153],[123.14823148231483,11.494702529071418],[123.1410314103141,11.479505333642464],[123.14823148231483,11.476128179102702],[123.16983169831701,11.481193910912353]]],[[[-59.28719287192871,-80.21024042098806],[-59.279992799927996,-80.21530615279771],[-59.30159301593015,-80.21868330733747],[-59.31959319593196,-80.2169947300676],[-59.35199351993519,-80.20517468917842],[-59.380793807938076,-80.20179753463864],[-59.57879578795787,-80.21192899825795],[-59.593195931959315,-80.21361757552782],[-59.60039600396003,-80.2169947300676],[-59.60399603996039,-80.22374903914712],[-59.61119611196112,-80.23388050276643],[-59.618396183961835,-80.2457005436556],[-59.6219962199622,-80.25414343000502],[-59.6219962199622,-80.25920916181465],[-59.61479614796147,-80.2642748936243],[-59.60039600396003,-80.2642748936243],[-59.593195931959315,-80.26596347089419],[-59.5859958599586,-80.27102920270384],[-59.57879578795787,-80.28116066632313],[-59.57519575195751,-80.28622639813278],[-59.59679596795968,-80.28960355267255],[-59.63639636396364,-80.2845378208629],[-59.6579965799658,-80.29298070721231],[-59.668796687966875,-80.30311217083161],[-59.68679686796868,-80.3233750980702],[-59.70119701197011,-80.33012940714973],[-59.719197191971915,-80.33181798441962],[-59.73719737197372,-80.33181798441962],[-59.75879758797588,-80.33519513895938],[-59.77319773197732,-80.3520809116582],[-59.77319773197732,-80.35545806619797],[-59.77319773197732,-80.36390095254738],[-59.77679776797767,-80.36727810708715],[-59.77679776797767,-80.37065526162692],[-59.7839978399784,-80.37572099343656],[-59.7839978399784,-80.37909814797634],[-59.7839978399784,-80.39767249794504],[-59.769597695976955,-80.40780396156434],[-59.72999729997299,-80.41455827064387],[-59.77319773197732,-80.41962400245352],[-59.78759787597876,-80.42468973426317],[-59.79119791197911,-80.4297554660728],[-59.794797947979475,-80.43313262061258],[-59.79119791197911,-80.44832981604152],[-59.794797947979475,-80.46859274328011],[-59.80919809198092,-80.49392140232835],[-59.82719827198271,-80.51587290683683],[-59.845198451984515,-80.52769294772601],[-59.80919809198092,-80.53275867953566],[-59.68319683196832,-80.51587290683683],[-59.668796687966875,-80.51080717502718],[-59.6579965799658,-80.50574144321753],[-59.65079650796507,-80.49729855686812],[-59.6579965799658,-80.49054424778859],[-59.66519665196651,-80.48547851597894],[-59.64719647196472,-80.47872420689941],[-59.62559625596255,-80.47703562962953],[-59.5859958599586,-80.47872420689941],[-59.57519575195751,-80.48210136143918],[-59.55359553595535,-80.49054424778859],[-59.542795427954275,-80.49392140232835],[-59.53559535595356,-80.49392140232835],[-59.52119521195212,-80.4888556705187],[-59.50679506795068,-80.4888556705187],[-59.467194671946714,-80.49054424778859],[-59.47439474394743,-80.49560997959824],[-59.48879488794887,-80.50743002048742],[-59.50319503195031,-80.52093863864648],[-59.50319503195031,-80.5293815249959],[-59.56439564395643,-80.54120156588507],[-59.58239582395824,-80.53951298861519],[-59.5859958599586,-80.53613583407542],[-59.58959589595895,-80.5293815249959],[-59.593195931959315,-80.52769294772601],[-59.60039600396003,-80.52769294772601],[-59.61119611196112,-80.52769294772601],[-59.6219962199622,-80.5293815249959],[-59.62919629196291,-80.53275867953566],[-59.63999639996399,-80.54626729769471],[-59.64719647196472,-80.54964445223449],[-59.74079740797407,-80.5766616885526],[-59.83439834398344,-80.58341599763213],[-59.84879848798488,-80.58679315217191],[-59.85959859598596,-80.59523603852132],[-59.86679866798667,-80.60874465668037],[-59.88479884798848,-80.64589335661779],[-59.794797947979475,-80.65602482023709],[-59.71559715597155,-80.64082762480815],[-59.69039690396903,-80.64082762480815],[-59.66519665196651,-80.64589335661779],[-59.68319683196832,-80.6644677065865],[-59.69039690396903,-80.66953343839616],[-59.69759697596976,-80.67291059293592],[-59.72279722797228,-80.67966490201545],[-59.75519755197551,-80.6948620974444],[-59.7839978399784,-80.7134364474131],[-59.80919809198092,-80.73876510646134],[-59.819998199981995,-80.74551941554088],[-60.090000900009,-80.82994827903501],[-60.360003600035995,-80.91606571979904],[-60.65160651606516,-80.95996872881598],[-61.11961119611196,-80.93632864703763],[-61.58761587615875,-80.91268856525926],[-62.055620556205554,-80.8890484834809],[-62.52362523625236,-80.86540840170255],[-62.95922959229591,-80.77591380639876],[-62.98442984429843,-80.75902803369993],[-62.9880298802988,-80.73707652919147],[-62.98082980829808,-80.72694506557217],[-62.970029700297005,-80.71850217922275],[-62.96642966429664,-80.70837071560345],[-62.973629736297354,-80.69655067471427],[-62.9880298802988,-80.68810778836486],[-63.03843038430384,-80.67459917020581],[-63.05283052830528,-80.66784486112627],[-63.05643056430564,-80.66277912931662],[-63.05643056430564,-80.64082762480815],[-63.06003060030599,-80.6256304293792],[-63.070830708307085,-80.61549896575991],[-63.08523085230851,-80.6070560794105],[-63.14283142831428,-80.59185888398156],[-63.46683466834668,-80.59861319306108],[-63.790837908379075,-80.60536750214061],[-63.80523805238052,-80.61043323395026],[-63.816038160381595,-80.61549896575991],[-63.837638376383765,-80.63069616118885],[-63.84843848438484,-80.63913904753827],[-63.862838628386285,-80.64251620207803],[-63.87723877238771,-80.64589335661779],[-64.12924129241291,-80.6543362429672],[-64.16524165241653,-80.6644677065865],[-64.1580415804158,-80.6661562838564],[-64.15084150841508,-80.66953343839616],[-64.14724147241472,-80.67291059293592],[-64.14364143641436,-80.67797632474557],[-64.1760417604176,-80.69655067471427],[-64.18324183241832,-80.70837071560345],[-64.17244172441724,-80.72694506557217],[-64.1760417604176,-80.73369937465169],[-64.21924219242192,-80.74551941554088],[-64.2840428404284,-80.75058514735052],[-64.76644766447664,-80.68304205655522],[-65.25245252452524,-80.61549896575991],[-65.73485734857348,-80.5479558749646],[-66.21726217262172,-80.48041278416929],[-66.69966699666996,-80.41286969337398],[-66.750067500675,-80.39429534340528],[-66.75726757267573,-80.38922961159562],[-66.76806768067681,-80.37909814797634],[-66.77526775267752,-80.35714664346786],[-66.78246782467825,-80.34701517984855],[-66.78966789667896,-80.34363802530879],[-66.79686796867968,-80.34026087076903],[-66.80046800468004,-80.33519513895938],[-66.8040680406804,-80.32844082987985],[-66.79686796867968,-80.30817790264126],[-66.76806768067681,-80.28960355267255],[-66.57726577265773,-80.22712619368689],[-66.33246332463324,-80.21868330733747],[-66.27846278462785,-80.21192899825795],[-66.26766267662676,-80.21192899825795],[-66.27126271262712,-80.20010895736877],[-66.25686256862568,-80.19504322555912],[-66.23886238862389,-80.19504322555912],[-66.210062100621,-80.19673180282899],[-66.19566195661956,-80.20179753463864],[-66.18126181261812,-80.20855184371818],[-66.16686166861668,-80.21868330733747],[-66.17046170461704,-80.22712619368689],[-66.18486184861848,-80.23725765730619],[-66.210062100621,-80.25076627546525],[-66.20646206462064,-80.25583200727489],[-66.18846188461885,-80.27271777997372],[-66.21366213662137,-80.2946692844822],[-66.22446224462244,-80.31324363445091],[-66.22806228062281,-80.31999794353044],[-66.20286202862029,-80.34363802530879],[-66.16686166861668,-80.35714664346786],[-65.91845918459184,-80.39429534340528],[-65.4540545405454,-80.39260676613539],[-64.99324993249932,-80.38922961159562],[-64.52884528845289,-80.38585245705586],[-64.06444064440645,-80.3824753025161],[-63.603636036360356,-80.38078672524621],[-63.13923139231392,-80.37740957070645],[-62.67482674826748,-80.37403241616668],[-62.2140221402214,-80.37065526162692],[-61.74961749617496,-80.36896668435703],[-61.486814868148684,-80.31999794353044],[-61.22401224012239,-80.27271777997372],[-61.19521195211952,-80.25583200727489],[-61.18441184411844,-80.25245485273513],[-61.44721447214472,-80.25076627546525],[-61.515615156151554,-80.24232338911584],[-61.53361533615336,-80.2355690800363],[-61.54441544415444,-80.23050334822665],[-61.555215552155516,-80.2169947300676],[-61.56241562415623,-80.21024042098806],[-61.57681576815767,-80.20348611190853],[-61.65961659616596,-80.17984603013018],[-61.66321663216631,-80.17478029832053],[-61.66321663216631,-80.16971456651088],[-61.65961659616596,-80.16633741197111],[-61.65241652416523,-80.16296025743135],[-61.64881648816488,-80.1578945256217],[-61.64881648816488,-80.14438590746263],[-61.666816668166675,-80.13594302111322],[-61.70641706417064,-80.12412298022404],[-61.71361713617135,-80.11736867114452],[-61.72801728017279,-80.0987943211758],[-61.73521735217352,-80.09204001209628],[-61.74961749617496,-80.08359712574686],[-61.79641796417964,-80.06671135304803],[-61.80721807218072,-80.05826846669862],[-61.80721807218072,-80.05151415761908],[-61.79641796417964,-80.04644842580944],[-61.77841778417783,-80.04307127126967],[-61.74961749617496,-80.0396941167299],[-61.65961659616596,-80.03800553946003],[-61.67041670416704,-80.03631696219014],[-61.69921699216992,-80.01605403495155],[-61.288812888128874,-80.01436545768166],[-61.26721267212672,-80.00929972587203],[-61.260012600126004,-80.00254541679249],[-61.23841238412383,-79.98565964409366],[-61.234812348123484,-79.97890533501413],[-61.24561245612456,-79.97383960320448],[-61.310413104131044,-79.94513378961648],[-61.46881468814688,-79.91305082148871],[-61.515615156151554,-79.89447647152],[-61.52281522815228,-79.89278789425012],[-61.4940149401494,-79.88603358517058],[-61.465214652146514,-79.88096785336093],[-61.11961119611196,-79.8742135442814],[-61.09441094410944,-79.83199911253433],[-61.026010260102595,-79.80667045348609],[-60.55080550805508,-79.73068447634138],[-60.07560075600756,-79.65638707646653],[-60.03960039600396,-79.6597642310063],[-60.04320043200431,-79.6698956946256],[-60.05400054000539,-79.6800271582449],[-60.06480064800648,-79.68847004459431],[-60.07560075600756,-79.69353577640396],[-60.082800828008274,-79.69522435367384],[-60.10080100801008,-79.69522435367384],[-60.108001080010794,-79.69522435367384],[-60.15120151201512,-79.70535581729314],[-60.22680226802268,-79.70535581729314],[-60.486004860048595,-79.7374387854209],[-60.40320403204032,-79.7577017126595],[-60.11160111601116,-79.76276744446915],[-59.819998199981995,-79.76952175354867],[-59.79839798397984,-79.77458748535832],[-59.80919809198092,-79.78809610351739],[-59.82359823598236,-79.79991614440657],[-59.8379983799838,-79.81004760802585],[-59.85239852398523,-79.8168019171054],[-59.8379983799838,-79.82355622618492],[-59.81639816398163,-79.82693338072468],[-59.79839798397984,-79.82693338072468],[-59.75159751597515,-79.81849049437527],[-59.719197191971915,-79.82693338072468],[-59.6579965799658,-79.85057346250305],[-59.7839978399784,-79.83368768980422],[-59.83439834398344,-79.83368768980422],[-59.85599855998559,-79.83706484434398],[-59.8739987399874,-79.8455077306934],[-59.88479884798848,-79.85901634885246],[-59.8739987399874,-79.87590212155129],[-59.87759877598775,-79.87759069882117],[-59.881198811988114,-79.88265643063082],[-59.88479884798848,-79.8843450079007],[-59.86319863198632,-79.90291935786941],[-59.82719827198271,-79.90629651240917],[-59.78759787597876,-79.90123078059953],[-59.75879758797588,-79.89278789425012],[-59.7479974799748,-79.88603358517058],[-59.72999729997299,-79.8843450079007],[-59.67599675996759,-79.88603358517058],[-59.65439654396543,-79.89109931698023],[-59.62559625596255,-79.90629651240917],[-59.719197191971915,-79.90629651240917],[-59.73359733597336,-79.91305082148871],[-59.72639726397263,-79.92149370783812],[-59.719197191971915,-79.92655943964778],[-59.70119701197011,-79.9333137487273],[-59.693996939969395,-79.93837948053695],[-59.68319683196832,-79.951888098696],[-59.67599675996759,-79.95695383050565],[-59.70839708397084,-79.9620195623153],[-59.719197191971915,-79.96033098504542],[-59.72999729997299,-79.95695383050565],[-59.75879758797588,-79.94006805780683],[-59.77319773197732,-79.93669090326706],[-59.79119791197911,-79.93500232599717],[-59.845198451984515,-79.94344521234659],[-59.85239852398523,-79.95019952142613],[-59.85239852398523,-79.9620195623153],[-59.86319863198632,-79.96877387139483],[-59.85599855998559,-79.97890533501413],[-59.82719827198271,-79.99747968498284],[-59.82359823598236,-80.00254541679249],[-59.79119791197911,-80.02280834403108],[-59.78039780397803,-80.03293980765038],[-59.77679776797767,-80.04475984853956],[-59.7839978399784,-80.05826846669862],[-59.79839798397984,-80.06333419850827],[-59.93519935199352,-80.07515423939745],[-59.96039960399604,-80.08359712574686],[-59.920799207992076,-80.1089257847951],[-59.909999099991,-80.11230293933487],[-59.89919899198992,-80.11568009387463],[-59.52119521195212,-80.11230293933487],[-59.43479434794348,-80.1291887120337],[-59.42039420394204,-80.13594302111322],[-59.431194311943116,-80.1477630620024],[-59.44919449194491,-80.15620594835181],[-59.48159481594816,-80.16971456651088],[-59.366393663936634,-80.16127168016146],[-59.34839348393484,-80.16127168016146],[-59.3339933399334,-80.16633741197111],[-59.3339933399334,-80.16802598924099],[-59.3339933399334,-80.17478029832053],[-59.330393303933036,-80.17815745286029],[-59.32679326793267,-80.17815745286029],[-59.28719287192871,-80.17984603013018],[-59.28719287192871,-80.18491176193982],[-59.290792907929074,-80.18828891647959],[-59.29439294392944,-80.19166607101936],[-59.2979929799298,-80.19504322555912],[-59.28719287192871,-80.21024042098806]]],[[[-95.49995499955,-72.31614168428645],[-95.42795427954279,-72.33471603425515],[-95.43875438754387,-72.35497896149374],[-95.48195481954819,-72.37861904327211],[-95.51435514355143,-72.40225912505046],[-95.75555755557555,-72.43771924771801],[-96.02196021960219,-72.43603067044812],[-96.09756097560975,-72.46135932949636],[-96.05076050760508,-72.45629359768671],[-95.98955989559896,-72.46980221584577],[-95.94275942759427,-72.50188518397354],[-95.94275942759427,-72.5457881929905],[-95.98955989559896,-72.5744940065785],[-96.05436054360543,-72.5829368929279],[-96.3279632796328,-72.57280542930862],[-96.60516605166052,-72.56098538841944],[-96.65556655566556,-72.5457881929905],[-96.68796687966879,-72.52721384302178],[-96.71316713167131,-72.51708237940248],[-96.73836738367383,-72.52045953394224],[-96.77436774367743,-72.54072246118085],[-96.78876788767887,-72.56605112022909],[-96.85716857168572,-72.57787116111827],[-96.93636936369363,-72.57955973838814],[-97.12717127171271,-72.56098538841944],[-97.17037170371704,-72.54747677026037],[-97.1919719197192,-72.53227957483143],[-97.21357213572135,-72.51877095667237],[-97.23157231572316,-72.51032807032296],[-97.26037260372604,-72.5069509157832],[-97.59877598775988,-72.55760823387968],[-98.08838088380884,-72.5643625429592],[-98.58158581585816,-72.57280542930862],[-98.67158671586715,-72.54241103845072],[-98.62478624786247,-72.52890242029167],[-98.59238592385924,-72.51032807032296],[-98.53478534785347,-72.46473648403612],[-98.96678966789668,-72.48162225673495],[-99.39519395193952,-72.49850802943378],[-99.46719467194671,-72.46135932949636],[-99.40239402394023,-72.4275877840987],[-99.25119251192511,-72.40901343412999],[-99.18639186391863,-72.37524188873235],[-99.47439474394744,-72.37524188873235],[-99.76599765997659,-72.37355331146246],[-99.89199891998919,-72.33302745698528],[-99.9819998199982,-72.32120741609609],[-100.14040140401404,-72.2806815616189],[-100.20520205202051,-72.27055009799962],[-100.32760327603276,-72.28574729342856],[-100.3780037800378,-72.28405871615867],[-100.4140041400414,-72.25873005711043],[-100.81360813608136,-72.23677855260196],[-101.21321213212131,-72.2131384708236],[-101.60921609216092,-72.18949838904524],[-101.68841688416884,-72.16585830726689],[-101.72441724417244,-72.16248115272712],[-101.90081900819008,-72.192875543585],[-101.96561965619657,-72.192875543585],[-102.18162181621815,-72.164169729997],[-102.29322293222931,-72.12702103005958],[-102.3220232202322,-72.06454367107392],[-102.3040230402304,-72.03583785748592],[-102.27522275222752,-72.01726350751721],[-102.0880208802088,-71.97336049850026],[-101.6740167401674,-71.9497204167219],[-101.26361263612635,-71.92608033494355],[-100.84960849608495,-71.90244025316518],[-100.43560435604356,-71.87880017138683],[-100.24120241202412,-71.82645427602046],[-100.13320133201331,-71.82138854421082],[-100.02880028800288,-71.84334004871928],[-99.9459994599946,-71.89399736681577],[-99.99279992799927,-71.93283464402307],[-100.0540005400054,-71.94296610764236],[-100.32040320403203,-71.95478614853155],[-100.39240392403924,-71.9682947666906],[-100.45360453604536,-71.9986891575485],[-100.02520025200252,-71.97336049850026],[-99.9459994599946,-71.9784262303099],[-99.86679866798667,-71.99700058027861],[-99.90279902799028,-72.03077212567626],[-99.89559895598956,-72.04596932110522],[-99.85959859598596,-72.04934647564498],[-99.7479974799748,-72.04090358929557],[-99.71919719197192,-72.03246070294615],[-99.69039690396903,-72.01557493024733],[-99.63279632796328,-71.95478614853155],[-99.59679596795968,-71.93790037583273],[-99.54639546395464,-71.93114606675319],[-99.49959499594996,-71.93114606675319],[-99.40239402394023,-71.94296610764236],[-99.20439204392044,-71.99700058027861],[-99.04239042390424,-72.07129798015346],[-98.99918999189991,-72.08311802104264],[-98.82278822788227,-72.09156090739205],[-98.73638736387363,-72.1050695255511],[-98.68598685986859,-72.10675810282099],[-98.63558635586355,-72.09831521647158],[-98.74718747187471,-72.01895208478709],[-98.78678786787867,-72.00206631208826],[-98.95958959589596,-71.9699833439605],[-99.10359103591036,-71.9210146031339],[-99.1539915399154,-71.91594887132425],[-99.12519125191251,-71.88893163500612],[-99.08919089190891,-71.87035728503741],[-99.009990099901,-71.85347151233859],[-98.97038970389704,-71.83827431690965],[-98.88038880388804,-71.7741083806541],[-98.85518855188552,-71.76566549430468],[-98.82638826388263,-71.76059976249503],[-98.53118531185312,-71.75722260795527],[-98.25758257582575,-71.80787992605175],[-97.9839798397984,-71.86022582141811],[-98.04158041580415,-71.91594887132425],[-98.11358113581136,-71.94634326218214],[-98.289982899829,-71.97504907577014],[-98.26478264782648,-72.0088206211678],[-98.2539825398254,-72.01726350751721],[-98.24318243182431,-72.02570639386661],[-98.22878228782288,-72.04428074383533],[-98.24318243182431,-72.05272363018474],[-98.26478264782648,-72.07129798015346],[-98.28278282782827,-72.07974086650287],[-98.30798307983079,-72.12870960732947],[-98.31878318783187,-72.13715249367888],[-98.35118351183512,-72.15572684364759],[-98.29718297182971,-72.15572684364759],[-98.2719827198272,-72.14897253456806],[-98.1639816398164,-72.09324948466192],[-98.13158131581315,-72.08311802104264],[-98.07038070380703,-72.07805228923299],[-97.99477994779947,-72.08480659831251],[-97.85077850778508,-72.11688956644029],[-97.86877868778687,-72.12195529824993],[-97.95157951579516,-72.164169729997],[-97.82557825578256,-72.16248115272712],[-97.76437764377644,-72.14221822548853],[-97.75357753577535,-72.09324948466192],[-97.77157771577716,-72.07129798015346],[-97.80037800378004,-72.06454367107392],[-97.82917829178291,-72.06116651653416],[-97.85437854378543,-72.04934647564498],[-97.86517865178652,-72.02064066205698],[-97.85437854378543,-71.98011480757978],[-97.839978399784,-71.94634326218214],[-97.82917829178291,-71.93283464402307],[-97.89037890378904,-71.9108831395146],[-97.84357843578435,-71.89568594408566],[-97.73917739177392,-71.88386590319648],[-97.60237602376023,-71.88893163500612],[-97.49077490774907,-71.90919456224472],[-97.47277472774728,-71.90750598497483],[-97.6239762397624,-71.9497204167219],[-97.4079740797408,-71.98686911665932],[-97.36477364773647,-71.98011480757978],[-97.38997389973899,-72.01388635297744],[-97.41157411574116,-72.03414928021604],[-97.44037440374403,-72.04765789837509],[-97.59157591575915,-72.08480659831251],[-97.61677616776167,-72.0966266392017],[-97.5879758797588,-72.10675810282099],[-97.56637566375663,-72.12026672098006],[-97.53037530375303,-72.15910399818736],[-97.51597515975159,-72.16923546180665],[-97.47277472774728,-72.19118696631513],[-97.39357393573935,-72.20807273901396],[-97.30717307173072,-72.17767834815606],[-97.22437224372243,-72.12026672098006],[-97.16317163171631,-72.06285509380405],[-97.13797137971379,-72.03246070294615],[-97.11637116371163,-71.9986891575485],[-97.0839708397084,-71.92776891221342],[-97.04797047970479,-71.87711159411694],[-96.99036990369903,-71.84671720325906],[-96.92196921969219,-71.83489716236987],[-96.85716857168572,-71.8332085851],[-96.82476824768247,-71.83827431690965],[-96.73476734767347,-71.86022582141811],[-96.36036360363603,-71.83489716236987],[-96.2811628116281,-71.84334004871928],[-96.20916209162091,-71.86022582141811],[-96.06516065160652,-71.91426029405436],[-96.09756097560975,-71.9699833439605],[-96.11556115561156,-71.99531200300873],[-96.14076140761408,-72.01388635297744],[-96.16956169561695,-72.02232923932685],[-96.2019620196202,-72.02401781659674],[-96.42156421564215,-72.00375488935815],[-96.50796507965079,-72.01388635297744],[-96.40716407164071,-72.05441220745463],[-96.38196381963819,-72.0561007847245],[-96.43956439564396,-72.07805228923299],[-96.49716497164971,-72.09156090739205],[-96.61956619566196,-72.10675810282099],[-97.00117001170011,-72.21482704809348],[-96.91476914769147,-72.24859859349114],[-96.82116821168212,-72.26548436618997],[-96.72396723967239,-72.26379578892008],[-96.43956439564396,-72.192875543585],[-95.95355953559535,-72.14390680275841],[-95.73755737557376,-72.0561007847245],[-95.65835658356583,-72.04765789837509],[-95.59355593555935,-72.0763637119631],[-95.69075690756907,-72.09324948466192],[-95.71955719557195,-72.10338094828123],[-95.71595715957159,-72.10338094828123],[-95.71595715957159,-72.1050695255511],[-95.50355503555035,-72.15234968910782],[-95.53955539555395,-72.17767834815606],[-95.58995589955899,-72.19456412085489],[-95.64035640356403,-72.20638416174407],[-95.93555935559355,-72.21989277990313],[-96.23076230762307,-72.2334013980622],[-96.33516335163351,-72.25535290257066],[-96.37836378363784,-72.27055009799962],[-96.41436414364144,-72.28912444796832],[-96.41076410764107,-72.28912444796832],[-96.41076410764107,-72.29081302523821],[-96.34956349563495,-72.29587875704786],[-96.039960399604,-72.25704147984055],[-95.97515975159752,-72.25873005711043],[-95.92115921159211,-72.27730440707914],[-95.86355863558636,-72.31783026155632],[-95.83835838358384,-72.32627314790574],[-95.80955809558095,-72.33133887971539],[-95.7519575195752,-72.33302745698528],[-95.55395553955539,-72.31276452974669],[-95.49995499955,-72.31614168428645]]],[[[-71.45891458914589,-72.62852847921474],[-71.93411934119341,-72.6521685609931],[-72.40932409324093,-72.67412006550158],[-72.51372513725137,-72.63865994283404],[-72.510125101251,-72.62515132467497],[-72.50652506525064,-72.61164270651592],[-72.49572495724956,-72.60151124289662],[-72.48852488524885,-72.58969120200744],[-72.43092430924308,-72.5542310793399],[-72.50652506525064,-72.55591965660979],[-72.5461254612546,-72.56098538841944],[-72.64692646926468,-72.59982266562673],[-72.68292682926828,-72.60657697470627],[-72.7189271892719,-72.60826555197615],[-72.7981279812798,-72.5947569338171],[-73.10773107731077,-72.47317937038554],[-73.14733147331474,-72.45291644314695],[-73.16533165331653,-72.43096493863847],[-73.15453154531545,-72.42252205228905],[-73.09333093330933,-72.38368477508175],[-72.81972819728198,-72.29250160250808],[-72.67572675726757,-72.27055009799962],[-72.45252452524525,-72.27730440707914],[-72.31932319323192,-72.29587875704786],[-72.2941229412294,-72.30263306612738],[-72.27252272522725,-72.31614168428645],[-72.2581225812258,-72.33302745698528],[-72.25092250922509,-72.3397817660648],[-72.24012240122401,-72.34484749787445],[-72.22932229322292,-72.3499132296841],[-72.1789217892179,-72.36173327057328],[-72.11772117721176,-72.3600446933034],[-72.13572135721357,-72.34653607514433],[-72.13932139321393,-72.3397817660648],[-72.1321213212132,-72.3296503024455],[-72.12492124921249,-72.32458457063586],[-72.11052110521105,-72.32120741609609],[-72.09972099720997,-72.31951883882621],[-72.06372063720637,-72.31783026155632],[-71.86931869318693,-72.34822465241422],[-71.48411484114841,-72.36511042511304],[-71.09531095310953,-72.38030762054198],[-70.710107101071,-72.39719339324081],[-70.65250652506525,-72.3887505068914],[-70.62730627306273,-72.38368477508175],[-70.62370623706236,-72.38030762054198],[-70.620106201062,-72.37524188873235],[-70.62370623706236,-72.3701761569227],[-70.62370623706236,-72.36679900238292],[-70.62370623706236,-72.36173327057328],[-70.61650616506165,-72.35329038422387],[-70.60210602106021,-72.3499132296841],[-70.57330573305732,-72.34822465241422],[-70.18450184501845,-72.27392725253938],[-70.17370173701737,-72.26886152072973],[-70.15210152101521,-72.24859859349114],[-70.14130141301412,-72.24522143895138],[-70.12330123301233,-72.2418442844116],[-70.1161011610116,-72.23846712987184],[-70.18450184501845,-72.22158135717301],[-70.30330303303033,-72.20976131628383],[-70.31770317703176,-72.19962985266454],[-70.32850328503285,-72.1743011936163],[-70.36450364503645,-72.15572684364759],[-70.41130411304113,-72.14390680275841],[-70.4581045810458,-72.14052964821865],[-70.73530735307352,-72.17767834815606],[-71.04491044910449,-72.25704147984055],[-71.36891368913689,-72.28743587069845],[-71.55251552515524,-72.27899298434903],[-71.69651696516965,-72.23508997533207],[-71.68931689316892,-72.2334013980622],[-71.6641166411664,-72.21820420263325],[-72.05652056520564,-72.15741542091747],[-72.0421204212042,-72.1337753391391],[-72.01332013320133,-72.12026672098006],[-71.5489154891549,-72.08480659831251],[-71.0881108811088,-72.04934647564498],[-70.77130771307712,-71.99024627119908],[-70.74250742507425,-71.98180338484967],[-70.73530735307352,-71.9682947666906],[-70.73890738907389,-71.96322903488095],[-70.75330753307533,-71.95478614853155],[-70.76050760507604,-71.9497204167219],[-70.76410764107641,-71.93283464402307],[-70.75330753307533,-71.9210146031339],[-70.73530735307352,-71.9108831395146],[-70.72090720907208,-71.90581740770494],[-70.73530735307352,-71.89568594408566],[-70.80370803708037,-71.87204586230729],[-70.8361083610836,-71.85009435779882],[-70.85770857708577,-71.84502862598917],[-70.87930879308793,-71.84671720325906],[-71.06651066510665,-71.88217732592659],[-71.11691116911169,-71.88386590319648],[-71.16731167311673,-71.88048874865672],[-71.3041130411304,-71.84165147144941],[-71.39411394113941,-71.8332085851],[-71.48411484114841,-71.83996289417952],[-71.790117901179,-71.89906309862542],[-71.82971829718296,-71.89906309862542],[-71.85491854918548,-71.88724305773624],[-71.85491854918548,-71.88217732592659],[-71.85851858518585,-71.87204586230729],[-71.85851858518585,-71.86698013049765],[-71.85131851318513,-71.86360297595789],[-71.83331833318333,-71.86022582141811],[-71.82611826118261,-71.85516008960846],[-71.82251822518225,-71.84502862598917],[-71.82251822518225,-71.8332085851],[-71.82971829718296,-71.8028141942421],[-71.83331833318333,-71.79943703970234],[-71.83691836918369,-71.79774846243245],[-71.86931869318693,-71.79943703970234],[-71.87651876518765,-71.79774846243245],[-71.88731887318873,-71.79437130789269],[-71.89811898118981,-71.78086268973362],[-71.90891908919089,-71.77579695792399],[-71.9161191611916,-71.77241980338422],[-72.00252002520025,-71.75384545341551],[-72.0061200612006,-71.75215687614562],[-72.0061200612006,-71.74709114433597],[-72.01332013320133,-71.73864825798657],[-72.01692016920168,-71.73527110344679],[-72.01692016920168,-71.73358252617692],[-72.13572135721357,-71.70149955804914],[-72.16452164521645,-71.69981098077926],[-72.18972189721897,-71.70825386712868],[-72.18252182521825,-71.70149955804914],[-72.17532175321753,-71.68292520808043],[-72.1681216812168,-71.67448232173102],[-72.26172261722617,-71.64239935360325],[-72.2581225812258,-71.6373336217936],[-72.25092250922509,-71.62889073544419],[-72.24732247322473,-71.62382500363454],[-72.33732337323373,-71.61369354001525],[-72.34452344523444,-71.61538211728512],[-72.35172351723517,-71.62044784909477],[-72.35532355323552,-71.63395646725384],[-72.36252362523625,-71.63902219906348],[-72.37332373323733,-71.64239935360325],[-72.40932409324093,-71.65084223995267],[-72.42732427324273,-71.65759654903219],[-72.44172441724417,-71.6660394353816],[-72.44892448924489,-71.67954805354067],[-72.44172441724417,-71.6964338262395],[-72.53892538925389,-71.73189394890703],[-72.54972549725497,-71.74877972160586],[-72.63972639726397,-71.73189394890703],[-72.6721267212672,-71.73358252617692],[-72.68292682926828,-71.74033683525644],[-72.69012690126901,-71.75384545341551],[-72.69012690126901,-71.76904264884445],[-72.69012690126901,-71.78255126700351],[-72.68652686526865,-71.7842398442734],[-72.67572675726757,-71.79099415335293],[-72.68292682926828,-71.80450277151199],[-72.70092700927009,-71.82645427602046],[-72.71172711727117,-71.85853724414824],[-72.71172711727117,-71.86022582141811],[-72.74052740527405,-71.88555448046635],[-72.78012780127801,-71.90244025316518],[-72.85932859328592,-71.9210146031339],[-72.94572945729458,-71.92945748948331],[-73.03573035730356,-71.92608033494355],[-73.2229322293223,-71.89737452135553],[-73.41013410134101,-71.85009435779882],[-73.50373503735037,-71.83489716236987],[-73.78813788137882,-71.83827431690965],[-73.8781387813878,-71.86360297595789],[-73.50013500135,-72.01219777570756],[-73.78453784537845,-72.09493806193181],[-73.80613806138061,-72.13208676186923],[-73.89253892538925,-72.15741542091747],[-74.0041400414004,-72.1743011936163],[-74.12294122941229,-72.17261261634641],[-74.22014220142201,-72.14390680275841],[-74.31374313743137,-72.06623224834381],[-74.35694356943569,-72.04428074383533],[-74.39654396543965,-72.04090358929557],[-74.65934659346593,-72.07467513469322],[-74.81774817748177,-72.06454367107392],[-75.08775087750877,-71.99362342573885],[-75.35775357753577,-71.92439175767366],[-75.40095400954009,-71.90244025316518],[-75.42975429754297,-71.87542301684707],[-75.4369543695437,-71.83658573963976],[-75.40095400954009,-71.80112561697223],[-75.3469534695347,-71.78930557608304],[-75.28575285752858,-71.78761699881316],[-75.23895238952389,-71.77917411246375],[-75.24975249752497,-71.76059976249503],[-75.17775177751777,-71.75215687614562],[-75.18855188551885,-71.74202541252633],[-75.20655206552065,-71.73358252617692],[-75.24615246152462,-71.7251396398275],[-75.23895238952389,-71.72007390801785],[-75.23535235352354,-71.7150081762082],[-75.23175231752317,-71.71331959893833],[-75.22455224552245,-71.70994244439856],[-75.24255242552425,-71.69812240350937],[-75.26775267752677,-71.69305667169974],[-75.31815318153181,-71.69136809442985],[-75.40455404554045,-71.67110516719126],[-75.41535415354153,-71.66097370357195],[-75.3829538295383,-71.63564504452371],[-75.33255332553325,-71.62213642636466],[-75.19935199351993,-71.60525065366583],[-75.19215192151921,-71.588364880967],[-75.17055170551706,-71.57147910826818],[-75.14535145351454,-71.55459333556935],[-75.12375123751237,-71.54615044921994],[-75.08055080550805,-71.53433040833076],[-75.01575015750157,-71.52588752198135],[-74.8861488614886,-71.52757609925122],[-74.79254792547925,-71.55290475829946],[-74.64494644946448,-71.6272021581743],[-74.38934389343893,-71.6677280126515],[-74.35334353343534,-71.6677280126515],[-74.28854288542885,-71.65759654903219],[-74.27774277742778,-71.65084223995267],[-74.27774277742778,-71.63564504452371],[-74.29574295742957,-71.62551358090442],[-74.33534335343353,-71.61200496274536],[-74.39654396543965,-71.58329914915736],[-74.38574385743857,-71.56134764464888],[-74.38934389343893,-71.53770756287052],[-74.40734407344073,-71.51575605836204],[-74.43614436144361,-71.49380455385358],[-74.41094410944109,-71.47523020388486],[-74.43614436144361,-71.45159012210651],[-74.42174421744217,-71.42795004032814],[-74.36774367743676,-71.40768711308955],[-74.22374223742237,-71.38235845404131],[-74.12294122941229,-71.38235845404131],[-73.85293852938528,-71.45496727664627],[-73.78813788137882,-71.48705024477404],[-73.75573755737557,-71.51069032655239],[-73.57933579335793,-71.56810195372842],[-73.52533525335252,-71.60693923093571],[-73.46053460534606,-71.59511919004653],[-73.3381333813338,-71.53601898560063],[-73.40293402934029,-71.49887028566322],[-73.58293582935829,-71.45665585391615],[-73.65853658536585,-71.41106426762931],[-73.6729367293673,-71.38911276312085],[-73.66933669336693,-71.36716125861237],[-73.65493654936549,-71.35027548591354],[-73.62973629736297,-71.3350782904846],[-73.58653586535866,-71.32325824959543],[-73.40653406534065,-71.314815363246],[-73.08253082530825,-71.36040694953283],[-72.75852758527584,-71.40430995854979],[-72.64692646926468,-71.4026213812799],[-72.62892628926289,-71.39924422674014],[-72.61092610926109,-71.37560414496178],[-72.56772567725677,-71.36378410407261],[-72.18972189721897,-71.3739155676919],[-72.20772207722077,-71.36040694953283],[-72.21852218522184,-71.35196406318343],[-72.21852218522184,-71.34183259956413],[-72.21132211322113,-71.33676686775448],[-72.19692196921969,-71.33170113594483],[-72.18252182521825,-71.33001255867495],[-72.17532175321753,-71.33001255867495],[-72.31572315723157,-71.28948670419777],[-72.60732607326072,-71.25909231333988],[-72.89532895328954,-71.23038649975187],[-73.05373053730537,-71.18141775892528],[-73.12573125731257,-71.14426905898785],[-73.10053100531005,-71.11556324539984],[-73.06453064530645,-71.10205462724079],[-72.91692916929169,-71.10205462724079],[-72.85932859328592,-71.09530031816125],[-72.84852848528485,-71.09023458635161],[-72.82692826928269,-71.07334881365279],[-72.81612816128161,-71.06828308184313],[-72.78732787327873,-71.06321735003348],[-72.53172531725316,-71.07503739092266],[-72.39492394923948,-71.06490592730337],[-72.0421204212042,-71.11218609086008],[-71.68931689316892,-71.1594662544168],[-71.54531545315453,-71.13582617263845],[-71.35811358113581,-71.06828308184313],[-71.34371343713437,-71.05984019549372],[-71.33651336513364,-71.0513973091443],[-71.31851318513185,-71.03113438190572],[-71.31131311313112,-71.0226914955563],[-71.32931329313293,-71.01762576374665],[-71.35091350913508,-71.00580572285747],[-71.36531365313652,-70.99060852742852],[-71.35811358113581,-70.97203417745982],[-71.34371343713437,-70.96527986838029],[-71.32571325713256,-70.96527986838029],[-71.18531185311852,-70.99567425923817],[-71.15291152911529,-70.99736283650806],[-71.12051120511205,-70.99060852742852],[-71.05571055710557,-70.96696844565017],[-71.02691026910269,-70.96190271384052],[-70.80370803708037,-70.99736283650806],[-70.71730717307173,-70.99905141377793],[-70.41130411304113,-70.94501694114169],[-70.29970299702997,-70.95177125022123],[-70.20970209702097,-70.98723137288876],[-70.1341013410134,-71.03957726825513],[-70.01170011700117,-71.14426905898785],[-69.99729997299973,-71.15102336806738],[-69.93249932499324,-71.1594662544168],[-69.88569885698857,-71.1594662544168],[-69.87849878498784,-71.15608909987704],[-69.87849878498784,-71.14764621352762],[-69.86769867698676,-71.14764621352762],[-69.83889838898389,-71.15271194533727],[-69.83889838898389,-71.14595763625773],[-69.83889838898389,-71.12400613174925],[-69.83889838898389,-71.12062897720949],[-69.83169831698316,-71.11387466812997],[-69.83169831698316,-71.10880893632032],[-69.83529835298353,-71.10712035905044],[-69.83889838898389,-71.1003660499709],[-69.83889838898389,-71.09867747270101],[-69.83529835298353,-71.08179170000219],[-69.82449824498245,-71.06490592730337],[-69.81369813698137,-71.04970873187442],[-69.79569795697957,-71.04295442279489],[-69.82449824498245,-71.00580572285747],[-69.83169831698316,-70.983854218349],[-69.83529835298353,-70.96190271384052],[-69.83169831698316,-70.94163978660193],[-69.82089820898209,-70.92644259117299],[-69.78849788497885,-70.89942535485486],[-69.80649806498064,-70.88929389123557],[-69.81009810098101,-70.88422815942592],[-69.78849788497885,-70.87409669580663],[-69.78129781297812,-70.86734238672709],[-69.77769777697776,-70.85889950037767],[-69.78489784897849,-70.85383376856802],[-69.83529835298353,-70.83863657313908],[-69.85329853298532,-70.83525941859932],[-69.86409864098641,-70.83863657313908],[-69.87489874898749,-70.84370230494874],[-69.91089910899109,-70.87240811853674],[-69.9180991809918,-70.87916242761627],[-69.92889928899288,-70.88085100488615],[-69.9540995409954,-70.87916242761627],[-69.99729997299973,-70.8572109231078],[-70.01890018900188,-70.85045661402826],[-70.15570155701556,-70.8572109231078],[-70.170101701017,-70.85552234583791],[-70.21330213302133,-70.84032515040897],[-70.40410404104041,-70.8183736459005],[-70.70290702907029,-70.83188226405956],[-70.78570785707856,-70.82006222317037],[-71.00171001710017,-70.76602775053414],[-71.16731167311673,-70.75589628691483],[-71.19971199711996,-70.74407624602566],[-71.21051210512104,-70.739010514216],[-71.21771217712177,-70.73056762786659],[-71.22131221312213,-70.72212474151718],[-71.23211232112321,-70.69848465973882],[-71.23571235712356,-70.69341892792917],[-71.23931239312392,-70.68835319611952],[-71.26811268112681,-70.67991030977011],[-71.25371253712537,-70.64951591891221],[-71.22131221312213,-70.62587583713386],[-71.07731077310773,-70.56002132360844],[-71.06651066510665,-70.54820128271926],[-71.05931059310593,-70.53975839636985],[-71.01611016110161,-70.51780689186137],[-71.00171001710017,-70.5144297373216],[-71.02331023310232,-70.48403534646371],[-70.9981099810998,-70.46546099649501],[-70.55890558905588,-70.3979179056997],[-70.1161011610116,-70.33037481490439],[-70.07650076500765,-70.33206339217428],[-69.69489694896949,-70.41986941020818],[-69.59769597695977,-70.42324656474794],[-69.5760957609576,-70.4164922556684],[-69.58689586895869,-70.39285217389005],[-69.61569615696156,-70.37596640119122],[-69.66969669696697,-70.35401489668274],[-70.11250112501125,-70.24256879687049],[-70.23130231302312,-70.23581448779096],[-70.2421024210242,-70.22906017871144],[-70.23850238502385,-70.22399444690178],[-70.23490234902349,-70.22399444690178],[-70.24570245702456,-70.19191147877402],[-70.21690216902168,-70.17840286061495],[-70.18450184501845,-70.17502570607519],[-70.170101701017,-70.16827139699565],[-70.17370173701737,-70.15813993337636],[-70.17730177301773,-70.15138562429682],[-70.18450184501845,-70.1446313152173],[-70.19530195301952,-70.13956558340765],[-70.23130231302312,-70.13618842886788],[-70.47250472504724,-70.16827139699565],[-70.54090540905409,-70.16658281972578],[-70.56970569705696,-70.15813993337636],[-70.65250652506525,-70.12099123343894],[-70.6741067410674,-70.11592550162929],[-70.69930699306992,-70.1142369243594],[-70.77850778507785,-70.12605696524858],[-70.79650796507964,-70.134499851598],[-70.80010800108,-70.14969704702695],[-70.80010800108,-70.15138562429682],[-70.79290792907929,-70.15813993337636],[-70.79290792907929,-70.15982851064624],[-70.82170821708216,-70.16489424245589],[-70.94050940509405,-70.21724013782224],[-70.9621096210962,-70.22061729236202],[-70.98010980109801,-70.21217440601261],[-70.9981099810998,-70.21217440601261],[-71.05931059310593,-70.22399444690178],[-71.07731077310773,-70.2223058696319],[-71.09171091710917,-70.21555156055237],[-71.11691116911169,-70.19866578785354],[-71.15291152911529,-70.18853432423424],[-71.31851318513185,-70.17671428334506],[-71.33651336513364,-70.17164855153541],[-71.34731347313473,-70.16320566518601],[-71.36891368913689,-70.14125416067753],[-71.38331383313833,-70.13281127432812],[-71.40131401314012,-70.12774554251847],[-71.5489154891549,-70.11085976981964],[-71.69651696516965,-70.0753996471521],[-71.78291782917829,-70.04162810175445],[-71.81171811718117,-70.02811948359539],[-71.81891818918189,-70.01967659724598],[-71.83331833318333,-70.00110224727726],[-71.84051840518404,-69.99434793819773],[-71.85131851318513,-69.99097078365797],[-71.880118801188,-69.98083932003867],[-71.91251912519125,-69.96564212460973],[-71.9269192691927,-69.95382208372055],[-71.93051930519304,-69.94031346556149],[-71.9269192691927,-69.93187057921207],[-71.89091890918908,-69.9099190747036],[-71.90891908919089,-69.89472187927466],[-71.89451894518945,-69.87952468384572],[-71.86571865718656,-69.86601606568665],[-71.84771847718477,-69.84913029298782],[-71.84051840518404,-69.80353870670099],[-71.83331833318333,-69.80016155216123],[-71.8441184411844,-69.79340724308169],[-71.86211862118621,-69.78496435673227],[-71.87291872918729,-69.77821004765275],[-71.880118801188,-69.76807858403345],[-71.880118801188,-69.75963569768405],[-71.87291872918729,-69.7545699658744],[-71.86211862118621,-69.75119281133462],[-71.87651876518765,-69.73768419317557],[-71.89811898118981,-69.72248699774661],[-71.91251912519125,-69.70897837958756],[-71.89811898118981,-69.69715833869839],[-71.89091890918908,-69.68364972053932],[-71.86211862118621,-69.67182967965014],[-71.74331743317433,-69.6465010206019],[-71.72171721717217,-69.64143528879225],[-71.73251732517325,-69.6363695569826],[-71.74331743317433,-69.63130382517295],[-71.75051750517505,-69.62286093882354],[-71.7541175411754,-69.61272947520425],[-71.7541175411754,-69.6076637433946],[-71.74331743317433,-69.59246654796566],[-71.73971739717396,-69.59077797069577],[-71.73971739717396,-69.56713788891742],[-71.72171721717217,-69.54687496167882],[-71.6749167491675,-69.51141483901128],[-71.67851678516784,-69.50634910720163],[-71.68211682116821,-69.50297195266187],[-71.68931689316892,-69.50128337539199],[-71.69291692916929,-69.4995947981221],[-71.68211682116821,-69.4810204481534],[-71.6749167491675,-69.47426613907386],[-71.6641166411664,-69.46751182999434],[-71.65331653316532,-69.46244609818469],[-71.61731617316173,-69.45569178910516],[-71.63531635316353,-69.44556032548586],[-71.68931689316892,-69.4117887800882],[-71.68211682116821,-69.40503447100868],[-71.67131671316713,-69.39996873919902],[-71.66051660516605,-69.39659158465926],[-71.65331653316532,-69.39490300738937],[-71.67851678516784,-69.38646012103996],[-71.80451804518044,-69.37464008015078],[-71.82611826118261,-69.36957434834113],[-71.84051840518404,-69.35775430745196],[-71.85131851318513,-69.35099999837243],[-71.9269192691927,-69.34086853475313],[-71.95211952119521,-69.33073707113384],[-71.96291962919629,-69.31891703024465],[-71.98091980919808,-69.31553987570489],[-72.08172081720816,-69.31722845297477],[-72.09972099720997,-69.31216272116512],[-72.0529205292053,-69.3054084120856],[-72.0421204212042,-69.2952769484663],[-72.05652056520564,-69.27839117576747],[-72.14292142921428,-69.23279958948063],[-72.15732157321573,-69.22604528040111],[-72.14292142921428,-69.21084808497216],[-72.12132121321213,-69.17369938503475],[-72.10332103321034,-69.16187934414556],[-72.11412114121141,-69.15681361233592],[-72.16452164521645,-69.11966491239849],[-72.18972189721897,-69.10784487150931],[-72.20052200522005,-69.09771340789003],[-72.19692196921969,-69.08251621246107],[-72.18612186121861,-69.06731901703213],[-72.1681216812168,-69.05549897614296],[-72.04572045720457,-68.99133303988741],[-72.01332013320133,-68.96093864902952],[-72.01332013320133,-68.95587291721988],[-71.70731707317073,-68.90859275366316],[-71.40491404914049,-68.85962401283656],[-71.01251012510124,-68.85962401283656],[-70.92250922509224,-68.84273824013773],[-70.90450904509045,-68.82416389016902],[-70.8721087210872,-68.81403242654973],[-70.59850598505984,-68.80390096293043],[-70.46890468904688,-68.78194945842196],[-70.43650436504365,-68.78026088115207],[-70.40050400504005,-68.78701519023161],[-70.31410314103141,-68.83767250832808],[-70.15930159301593,-68.86300116737632],[-70.10530105301052,-68.89001840369446],[-70.09810098100981,-68.90183844458363],[-70.09450094500944,-68.91365848547281],[-70.09450094500944,-68.93729856725116],[-70.09090090900908,-68.95249576268012],[-70.08370083700837,-68.96431580356929],[-70.06570065700657,-68.98626730807777],[-70.10170101701017,-68.99977592623682],[-70.10530105301052,-69.00146450350671],[-70.07650076500765,-69.04874466706343],[-70.06930069300692,-69.05549897614296],[-70.03330033300333,-69.0706961715719],[-69.99369993699936,-69.09433625335026],[-70.02610026100261,-69.09771340789003],[-70.05850058500585,-69.10615629423944],[-70.07290072900729,-69.11122202604909],[-70.080100801008,-69.11797633512862],[-70.09450094500944,-69.13655068509732],[-70.05130051300513,-69.14668214871662],[-70.03330033300333,-69.15681361233592],[-70.02250022500225,-69.17538796230463],[-70.02250022500225,-69.19227373500345],[-70.02970029700296,-69.19396231227333],[-70.0441004410044,-69.19227373500345],[-70.05850058500585,-69.1973394668131],[-70.05850058500585,-69.20240519862276],[-70.05490054900548,-69.21422523951193],[-70.05490054900548,-69.21929097132158],[-70.05850058500585,-69.22435670313122],[-70.06210062100621,-69.22942243494087],[-70.07650076500765,-69.2361767440204],[-70.09090090900908,-69.24293105309994],[-70.10890108901089,-69.24461963036981],[-70.12690126901269,-69.24293105309994],[-70.14130141301412,-69.2361767440204],[-70.10530105301052,-69.26994828941805],[-70.09090090900908,-69.2767025984976],[-70.09450094500944,-69.28007975303736],[-70.10890108901089,-69.30034268027595],[-70.07650076500765,-69.29189979392653],[-70.0441004410044,-69.28852263938677],[-69.87129871298713,-69.30371983481571],[-69.76689766897668,-69.28683406211688],[-69.73809738097381,-69.29358837119642],[-69.7020970209702,-69.31553987570489],[-69.56169561695617,-69.43711743913644],[-69.54729547295473,-69.44556032548586],[-69.53649536495365,-69.45062605729551],[-69.53649536495365,-69.45906894364492],[-69.53649536495365,-69.46244609818469],[-69.55089550895508,-69.47426613907386],[-69.51489514895148,-69.50634910720163],[-69.48249482494825,-69.52323487990046],[-69.47529475294752,-69.52830061171011],[-69.47529475294752,-69.53843207532941],[-69.47529475294752,-69.54687496167882],[-69.47889478894788,-69.55531784802824],[-69.47169471694717,-69.56544931164753],[-69.46089460894609,-69.57220362072707],[-69.4140941409414,-69.58571223888612],[-69.31689316893168,-69.62623809336331],[-69.32769327693276,-69.6465010206019],[-69.33129331293313,-69.65494390695132],[-69.32769327693276,-69.66169821603084],[-69.31329313293132,-69.6954697614285],[-69.31329313293132,-69.70222407050802],[-69.31329313293132,-69.70897837958756],[-69.31689316893168,-69.71235553412733],[-69.3240932409324,-69.71910984320685],[-69.33129331293313,-69.7241755750165],[-69.33489334893349,-69.72586415228639],[-69.3240932409324,-69.7444385022551],[-69.31689316893168,-69.76301285222381],[-69.32049320493205,-69.77821004765275],[-69.33129331293313,-69.79003008854193],[-69.33129331293313,-69.80522728397088],[-69.31329313293132,-69.82886736574923],[-69.28089280892809,-69.86263891114689],[-69.26649266492664,-69.88121326111559],[-69.26289262892628,-69.89303330200477],[-69.27009270092701,-69.90654192016383],[-69.28449284492845,-69.92342769286266],[-69.25569255692557,-69.93524773375184],[-69.24489244892449,-69.94200204283138],[-69.23409234092341,-69.95382208372055],[-69.22689226892268,-69.96395354733984],[-69.22689226892268,-69.9774621654989],[-69.22329223292232,-69.98759362911821],[-69.21249212492124,-69.9977250927375],[-69.14049140491404,-70.04838241083398],[-69.02889028890289,-70.15982851064624],[-68.71928719287193,-70.3692120921117],[-68.6580865808658,-70.43000087382747],[-68.63648636486364,-70.46377241922512],[-68.60408604086041,-70.52793835548067],[-68.5860858608586,-70.55326701452891],[-68.56088560885608,-70.56846420995785],[-68.50328503285033,-70.58872713719644],[-68.47808478084781,-70.60392433262538],[-68.47088470884708,-70.61067864170492],[-68.46728467284673,-70.61405579624468],[-68.46368463684637,-70.61912152805434],[-68.46728467284673,-70.62587583713386],[-68.47448474484744,-70.63431872348328],[-68.47808478084781,-70.63938445529293],[-68.47088470884708,-70.64445018710258],[-68.43848438484385,-70.6512044961821],[-68.42768427684277,-70.66809026888093],[-68.42768427684277,-70.70692754608824],[-68.40968409684096,-70.72212474151718],[-68.40248402484025,-70.72381331878707],[-68.39528395283952,-70.72550189605694],[-68.3880838808388,-70.72719047332683],[-68.38448384483844,-70.73394478240635],[-68.38448384483844,-70.739010514216],[-68.39168391683917,-70.75420770964494],[-68.39528395283952,-70.75758486418471],[-68.38448384483844,-70.76265059599436],[-68.35568355683556,-70.77447063688354],[-68.3340833408334,-70.79642214139201],[-68.33048330483304,-70.79979929593178],[-68.47088470884708,-70.81161933682097],[-68.48168481684816,-70.80993075955108],[-68.45288452884529,-70.82343937771014],[-68.34488344883448,-70.83525941859932],[-68.30888308883088,-70.85383376856802],[-68.2980829808298,-70.86903096399698],[-68.30888308883088,-70.90280250939463],[-68.29448294482944,-70.99060852742852],[-68.2980829808298,-70.99736283650806],[-68.30888308883088,-71.01593718647676],[-68.280082800828,-71.05646304095396],[-68.27288272882728,-71.07503739092266],[-68.27288272882728,-71.08010312273231],[-68.280082800828,-71.08685743181184],[-68.28728287282873,-71.09361174089138],[-68.29448294482944,-71.09698889543114],[-68.28368283682836,-71.11556324539984],[-68.23688236882369,-71.16959771803609],[-68.2440824408244,-71.19661495435422],[-68.2440824408244,-71.23545223156152],[-68.23688236882369,-71.29961816781706],[-68.23688236882369,-71.30974963143636],[-68.23688236882369,-71.31819251778577],[-68.23328233282332,-71.32832398140506],[-68.22608226082261,-71.34183259956413],[-68.25848258482584,-71.35027548591354],[-68.26568265682657,-71.36716125861237],[-68.2620826208262,-71.38911276312085],[-68.25488254882548,-71.40937569035944],[-68.26568265682657,-71.41612999943897],[-68.26928269282692,-71.42288430851849],[-68.26928269282692,-71.42963861759803],[-68.27288272882728,-71.43639292667756],[-68.25488254882548,-71.45834443118603],[-68.23688236882369,-71.48029593569451],[-68.22248222482224,-71.50562459474276],[-68.2080820808208,-71.55121618102959],[-68.19728197281972,-71.56979053099829],[-68.19008190081901,-71.57992199461759],[-68.16128161281613,-71.60693923093571],[-68.19368193681936,-71.63395646725384],[-68.2080820808208,-71.66435085811172],[-68.21168211682117,-71.69981098077926],[-68.2080820808208,-71.82138854421082],[-68.21888218882188,-71.85853724414824],[-68.25128251282513,-71.88386590319648],[-68.30888308883088,-71.89568594408566],[-68.4240842408424,-71.890620212276],[-68.48168481684816,-71.89737452135553],[-68.46368463684637,-71.90919456224472],[-68.44568445684456,-71.92776891221342],[-68.42768427684277,-71.94803183945201],[-68.42048420484204,-71.9682947666906],[-68.42048420484204,-71.98180338484967],[-68.41688416884169,-71.98855769392921],[-68.40968409684096,-71.99362342573885],[-68.36648366483665,-72.01388635297744],[-68.35928359283592,-72.02064066205698],[-68.34848348483484,-72.03246070294615],[-68.34488344883448,-72.04428074383533],[-68.34128341283413,-72.0577893619944],[-68.34488344883448,-72.07129798015346],[-68.35208352083521,-72.08311802104264],[-68.39168391683917,-72.12026672098006],[-68.40968409684096,-72.15403826637771],[-68.41328413284133,-72.21989277990313],[-68.43488434884348,-72.24015570714172],[-68.4960849608496,-72.2519757480309],[-68.55368553685537,-72.24353286168149],[-68.66888668886689,-72.21651562536337],[-68.71568715687157,-72.2131384708236],[-68.74088740887409,-72.21651562536337],[-68.76248762487624,-72.2232699344429],[-68.77328773287732,-72.23508997533207],[-68.77328773287732,-72.24691001622125],[-68.76248762487624,-72.25704147984055],[-68.75168751687517,-72.26548436618997],[-68.76968769687697,-72.27392725253938],[-68.85248852488525,-72.29419017977797],[-68.91368913689136,-72.29250160250808],[-68.910089100891,-72.29925591158762],[-68.90288902889029,-72.30938737520691],[-68.90288902889029,-72.31614168428645],[-68.90288902889029,-72.31951883882621],[-68.910089100891,-72.32627314790574],[-68.910089100891,-72.33133887971539],[-68.90648906489065,-72.33640461152504],[-68.89928899288992,-72.34653607514433],[-68.89928899288992,-72.34822465241422],[-68.91368913689136,-72.36173327057328],[-68.93168931689317,-72.36848757965281],[-68.94968949689496,-72.3701761569227],[-69.00729007290073,-72.36679900238292],[-69.14049140491404,-72.37524188873235],[-69.14769147691476,-72.37861904327211],[-69.15129151291512,-72.38368477508175],[-69.15849158491585,-72.39212766143116],[-69.15849158491585,-72.3988819705107],[-69.15489154891549,-72.40563627959023],[-69.15849158491585,-72.41407916593964],[-69.16929169291693,-72.42252205228905],[-69.19449194491945,-72.42589920682882],[-69.22689226892268,-72.42589920682882],[-69.21249212492124,-72.46980221584577],[-69.19089190891908,-72.47486794765541],[-69.14049140491404,-72.50188518397354],[-69.21969219692197,-72.54241103845072],[-69.64449644496445,-72.58800262473756],[-70.06930069300692,-72.63528278829428],[-70.25650256502564,-72.63021705648463],[-70.52290522905228,-72.66736575642204],[-70.64530645306452,-72.66736575642204],[-70.67050670506704,-72.65892287007263],[-70.68850688506885,-72.6420370973738],[-70.69570695706956,-72.62008559286534],[-70.69930699306992,-72.5947569338171],[-70.710107101071,-72.57280542930862],[-70.72450724507245,-72.56098538841944],[-70.74250742507425,-72.55929681114955],[-70.76410764107641,-72.56098538841944],[-70.78210782107821,-72.56605112022909],[-70.80370803708037,-72.57618258384838],[-70.81450814508145,-72.57787116111827],[-70.83970839708397,-72.57955973838814],[-70.84690846908468,-72.58124831565803],[-70.86130861308612,-72.59137977927733],[-70.86490864908649,-72.60488839743638],[-70.86490864908649,-72.62008559286534],[-70.8721087210872,-72.63359421102439],[-70.89370893708937,-72.64541425191356],[-70.92250922509224,-72.65047998372322],[-71.19251192511925,-72.64034852010393],[-71.45891458914589,-72.62852847921474]]],[[[167.03267032670328,-22.238005591375256],[167.03267032670328,-22.24644847772467],[167.02547025470255,-22.24813705499455],[167.01827018270183,-22.24813705499455],[167.01467014670146,-22.254891364074084],[167.01467014670146,-22.26164567315361],[167.0218702187022,-22.26839998223314],[167.02547025470255,-22.276842868582555],[167.02547025470255,-22.28528575493197],[167.0218702187022,-22.292040064011502],[167.01467014670146,-22.315680145789855],[167.00747007470073,-22.32918876394892],[167.00027000270006,-22.335943073028453],[166.99306993069933,-22.344385959377867],[166.99306993069933,-22.339320227568216],[166.98946989469897,-22.334254495758564],[166.98226982269824,-22.337631650298334],[166.97866978669788,-22.34269738210798],[166.96426964269642,-22.34776311391763],[166.96066960669606,-22.351140268457392],[166.96066960669606,-22.356206000267044],[166.9678696786968,-22.364648886616457],[166.93546935469357,-22.38828896839481],[166.91746917469175,-22.395043277474343],[166.89226892268925,-22.39166612293458],[166.91026910269102,-22.384911813855048],[166.9210692106921,-22.379846082045404],[166.92466924669247,-22.37140319569599],[166.91026910269102,-22.37140319569599],[166.90306903069035,-22.37309177296587],[166.89586895868962,-22.364648886616457],[166.8886688866889,-22.351140268457392],[166.88146881468816,-22.337631650298334],[166.8778687786878,-22.334254495758564],[166.87426874268743,-22.322434454869388],[166.8670686706867,-22.32918876394892],[166.86346863468634,-22.34269738210798],[166.85986859868598,-22.351140268457392],[166.8526685266853,-22.34607453664775],[166.84546845468458,-22.337631650298334],[166.84186841868421,-22.32581160940915],[166.8346683466835,-22.315680145789855],[166.84186841868421,-22.315680145789855],[166.84906849068494,-22.31061441398021],[166.84186841868421,-22.297105795821146],[166.83106831068312,-22.300482950360916],[166.8238682386824,-22.313991568519974],[166.82026820268203,-22.34269738210798],[166.82026820268203,-22.34776311391763],[166.82026820268203,-22.35282884572728],[166.8238682386824,-22.364648886616457],[166.8238682386824,-22.36633746388634],[166.84186841868421,-22.378157504775515],[166.83106831068312,-22.381534659315285],[166.82026820268203,-22.378157504775515],[166.80586805868057,-22.374780350235753],[166.80226802268027,-22.374780350235753],[166.7986679866799,-22.379846082045404],[166.79146791467917,-22.384911813855048],[166.78426784267845,-22.3899775456647],[166.77706777067772,-22.39166612293458],[166.75186751867523,-22.38660039112493],[166.74106741067413,-22.374780350235753],[166.74106741067413,-22.361271732076688],[166.7590675906759,-22.351140268457392],[166.7590675906759,-22.344385959377867],[166.74106741067413,-22.34607453664775],[166.71946719467195,-22.344385959377867],[166.7050670506705,-22.334254495758564],[166.71226712267122,-22.315680145789855],[166.7050670506705,-22.31061441398021],[166.6906669066691,-22.315680145789855],[166.6690666906669,-22.30723725944044],[166.64746647466478,-22.292040064011502],[166.6366663666637,-22.278531445852437],[166.63306633066333,-22.276842868582555],[166.61146611466114,-22.28697433220185],[166.6006660066601,-22.288662909471732],[166.589865898659,-22.28697433220185],[166.56826568265683,-22.276842868582555],[166.55746557465574,-22.271777136772904],[166.55386553865537,-22.26164567315361],[166.5610656106561,-22.256579941343965],[166.56466564665647,-22.249825632264432],[166.55386553865537,-22.24138274591502],[166.5466654666547,-22.238005591375256],[166.5178651786518,-22.232939859565604],[166.5070650706507,-22.234628436835486],[166.49626496264966,-22.249825632264432],[166.48906489064893,-22.271777136772904],[166.47826478264784,-22.28697433220185],[166.46026460264602,-22.281908600392207],[166.45666456664566,-22.28697433220185],[166.45666456664566,-22.288662909471732],[166.4530645306453,-22.288662909471732],[166.46026460264602,-22.30723725944044],[166.44946449464499,-22.312302991250093],[166.43506435064353,-22.30723725944044],[166.43506435064353,-22.298794373091027],[166.4386643866439,-22.29035148674162],[166.4386643866439,-22.26502282769338],[166.44586445864462,-22.254891364074084],[166.44586445864462,-22.24813705499455],[166.43146431464316,-22.24813705499455],[166.4170641706417,-22.24644847772467],[166.40626406264062,-22.238005591375256],[166.39906399063995,-22.226185550486072],[166.43146431464316,-22.22787412775596],[166.44586445864462,-22.22449697321619],[166.4530645306453,-22.214365509596895],[166.43506435064353,-22.212676932327014],[166.4278642786428,-22.2042340459776],[166.43146431464316,-22.172151077849826],[166.42066420664207,-22.173839655119714],[166.39906399063995,-22.170462500579944],[166.39186391863922,-22.172151077849826],[166.38826388263885,-22.178905386929358],[166.3846638466385,-22.195791159628186],[166.38106381063812,-22.200856891437837],[166.36666366663667,-22.20254546870772],[166.3630636306363,-22.207611200517363],[166.35946359463594,-22.214365509596895],[166.3522635226352,-22.22449697321619],[166.34506345063454,-22.22787412775596],[166.3378633786338,-22.221119818676428],[166.34146341463418,-22.210988355057133],[166.3486634866349,-22.200856891437837],[166.3378633786338,-22.194102582358305],[166.31626316263163,-22.172151077849826],[166.31626316263163,-22.1653967687703],[166.319863198632,-22.16201961423053],[166.32346323463236,-22.158642459690768],[166.32706327063272,-22.153576727881116],[166.32706327063272,-22.145133841531703],[166.32346323463236,-22.145133841531703],[166.31266312663126,-22.155265305151005],[166.28746287462877,-22.148510996071472],[166.28746287462877,-22.158642459690768],[166.26946269462695,-22.1653967687703],[166.25146251462513,-22.16033103696065],[166.23706237062373,-22.151888150611235],[166.2190621906219,-22.151888150611235],[166.2190621906219,-22.133313800642526],[166.20826208262082,-22.11811660521358],[166.19386193861942,-22.107985141594284],[166.18306183061833,-22.10460798705452],[166.16866168661687,-22.09785367797499],[166.15786157861578,-22.086033637085812],[166.14706147061474,-22.08434505981593],[166.12906129061292,-22.10460798705452],[166.11826118261183,-22.09785367797499],[166.10746107461074,-22.091099368895456],[166.11466114661147,-22.086033637085812],[166.11466114661147,-22.07927932800628],[166.11826118261183,-22.072525018926747],[166.11826118261183,-22.06239355530745],[166.1218612186122,-22.06239355530745],[166.1326613266133,-22.070836441656866],[166.14346143461438,-22.075902173466517],[166.15066150661505,-22.072525018926747],[166.15066150661505,-22.05563924622792],[166.14346143461438,-22.047196359878512],[166.12546125461256,-22.0387534735291],[166.11826118261183,-22.028622009909796],[166.14346143461438,-22.028622009909796],[166.15426154261542,-22.030310587179684],[166.1650616506165,-22.03537631898933],[166.1650616506165,-22.025244855370033],[166.15786157861578,-22.0184905462905],[166.15066150661505,-22.015113391750738],[166.13986139861402,-22.015113391750738],[166.13626136261365,-22.008359082671205],[166.13626136261365,-21.994850464512147],[166.13986139861402,-21.983030423622964],[166.14346143461438,-21.981341846353082],[166.13626136261365,-21.95770176457473],[166.1218612186122,-21.949258878225315],[166.08946089460898,-21.939127414606013],[166.07506075060752,-21.945881723685545],[166.07146071460716,-21.942504569145783],[166.07146071460716,-21.93406168279637],[166.08226082260825,-21.925618796446955],[166.07146071460716,-21.920553064637303],[166.06426064260643,-21.913798755557778],[166.06066060660606,-21.903667291938483],[166.06066060660606,-21.8918472510493],[166.04626046260466,-21.900290137398713],[166.03906039060394,-21.910421601018008],[166.03906039060394,-21.93575026006625],[166.03546035460357,-21.9408159918759],[166.02466024660248,-21.9408159918759],[166.0138601386014,-21.939127414606013],[166.00666006660066,-21.939127414606013],[166.01026010260102,-21.944193146415664],[166.01026010260102,-21.95601318730484],[166.0030600306003,-21.964456073654254],[165.9886598865989,-21.95601318730484],[165.97425974259744,-21.93743883733613],[165.9670596705967,-21.928995950986717],[165.9346593465935,-21.91717591009754],[165.9130591305913,-21.885092941969766],[165.89865898658985,-21.87833863289024],[165.89145891458918,-21.87496147835047],[165.88425884258845,-21.87158432381071],[165.87345873458736,-21.861452860191413],[165.86625866258663,-21.858075705651643],[165.86265862658627,-21.85976428292153],[165.85545855458554,-21.863141437461294],[165.8482584825848,-21.864830014731176],[165.81945819458196,-21.863141437461294],[165.81225812258123,-21.858075705651643],[165.80865808658086,-21.842878510222704],[165.83025830258305,-21.851321396572118],[165.82305823058232,-21.842878510222704],[165.79425794257946,-21.81586127390458],[165.79425794257946,-21.809106964825048],[165.79785797857977,-21.798975501205753],[165.80145801458013,-21.79222119212622],[165.7906579065791,-21.788844037586458],[165.779857798578,-21.79053261485634],[165.77625776257764,-21.79728692393587],[165.77625776257764,-21.805729810285285],[165.779857798578,-21.81586127390458],[165.76545765457655,-21.81079554209493],[165.7618576185762,-21.800664078475634],[165.7618576185762,-21.785466883046688],[165.75825758257582,-21.768581110347867],[165.7510575105751,-21.758449646728565],[165.74025740257406,-21.75000676037915],[165.73305733057333,-21.738186719489974],[165.73305733057333,-21.719612369521265],[165.7258572585726,-21.719612369521265],[165.71865718657187,-21.73480956495021],[165.70785707857078,-21.74831818310927],[165.69345693456938,-21.756761069458683],[165.67905679056793,-21.761826801268334],[165.67905679056793,-21.741563874029744],[165.67905679056793,-21.72974383314056],[165.66825668256683,-21.724678101330916],[165.65025650256501,-21.726366678600797],[165.65025650256501,-21.72974383314056],[165.65025650256501,-21.73312098768033],[165.65025650256501,-21.738186719489974],[165.64305643056434,-21.741563874029744],[165.63945639456398,-21.739875296759855],[165.50625506255062,-21.677397937774195],[165.4738547385474,-21.65206927872596],[165.4846548465485,-21.631806351487363],[165.4846548465485,-21.62336346513795],[165.47025470254704,-21.6284291969476],[165.4630546305463,-21.62674061967772],[165.4630546305463,-21.619986310598186],[165.47745477454777,-21.616609156058423],[165.4630546305463,-21.60647769243912],[165.4450544505445,-21.60985484697889],[165.4306543065431,-21.618297733328305],[165.41265412654127,-21.62336346513795],[165.39465394653945,-21.619986310598186],[165.29025290252906,-21.576083301581235],[165.2758527585276,-21.56595183796194],[165.26865268652688,-21.552443219802875],[165.25785257852579,-21.520360251675108],[165.25785257852579,-21.515294519865456],[165.23625236252366,-21.513605942595575],[165.22545225452257,-21.506851633516042],[165.19665196651965,-21.486588706277452],[165.18945189451898,-21.48490012900757],[165.18225182251825,-21.48490012900757],[165.17505175051753,-21.48321155173769],[165.17145171451716,-21.476457242658157],[165.1570515705157,-21.4629486244991],[165.15345153451534,-21.45957146995933],[165.11745117451176,-21.39709411097367],[165.1138511385114,-21.388651224624255],[165.11745117451176,-21.38358549281461],[165.11745117451176,-21.37851976100496],[165.11025110251103,-21.373454029195315],[165.11025110251103,-21.371765451925427],[165.1030510305103,-21.371765451925427],[165.09225092250927,-21.375142606465197],[165.0886508865089,-21.376831183735078],[165.08505085050854,-21.392028379164024],[165.07425074250745,-21.395405533703787],[165.06705067050672,-21.392028379164024],[165.06345063450635,-21.376831183735078],[165.05265052650526,-21.38358549281461],[165.04545045450453,-21.388651224624255],[165.03825038250386,-21.388651224624255],[165.02745027450277,-21.38358549281461],[165.04545045450453,-21.3650111428459],[165.04185041850423,-21.348125370147073],[165.02745027450277,-21.33968248379766],[165.00585005850058,-21.343059638337422],[165.0130501305013,-21.327862442908476],[165.00945009450095,-21.31773097928918],[164.98424984249846,-21.30253378386024],[164.97704977049773,-21.3160424020193],[164.9806498064981,-21.33630532925789],[164.97344973449736,-21.349813947416955],[164.96264962649627,-21.356568256496487],[164.95184951849518,-21.353191101956718],[164.94464944649445,-21.346436792877192],[164.93744937449378,-21.33630532925789],[164.94104941049414,-21.327862442908476],[164.94104941049414,-21.31941955655907],[164.94464944649445,-21.310976670209655],[164.95184951849518,-21.30253378386024],[164.94464944649445,-21.294090897510827],[164.93744937449378,-21.290713742971057],[164.93024930249305,-21.290713742971057],[164.91944919449196,-21.285648011161413],[164.9158491584916,-21.27889370208188],[164.90864908649087,-21.267073661192704],[164.83304833048334,-21.182644797698572],[164.82944829448297,-21.169136179539507],[164.82944829448297,-21.148873252300916],[164.82944829448297,-21.13198747960209],[164.8258482584826,-21.11510170690326],[164.81864818648188,-21.103281666014084],[164.80064800648006,-21.11003597509361],[164.80064800648006,-21.096527356934544],[164.80424804248042,-21.09483877966467],[164.8078480784808,-21.08977304785502],[164.8078480784808,-21.083018738775493],[164.80064800648006,-21.083018738775493],[164.7970479704797,-21.081330161505605],[164.78624786247866,-21.076264429695954],[164.79344793447933,-21.06782154334654],[164.78984789847902,-21.064444388806777],[164.7826478264783,-21.064444388806777],[164.7718477184772,-21.069510120616428],[164.7718477184772,-21.081330161505605],[164.75744757447575,-21.083018738775493],[164.75024750247502,-21.07457585242608],[164.74664746647466,-21.059378656997126],[164.73944739447398,-21.05769007972725],[164.7286472864729,-21.061067234267014],[164.7178471784718,-21.066132966076665],[164.72504725047253,-21.076264429695954],[164.7178471784718,-21.083018738775493],[164.71064710647107,-21.08977304785502],[164.69264692646925,-21.042492884298298],[164.68184681846822,-21.023918534329596],[164.6638466384664,-21.013787070710293],[164.68184681846822,-21.001967029821117],[164.6746467464675,-20.99183556620183],[164.6530465304653,-20.98508125712229],[164.63504635046354,-20.973261216233112],[164.6530465304653,-20.971572638963224],[164.66024660246603,-20.9648183298837],[164.66024660246603,-20.956375443534284],[164.65664656646567,-20.946243979914996],[164.64584645846458,-20.939489670835457],[164.63144631446318,-20.937801093565582],[164.62424624246245,-20.93273536175593],[164.62064620646208,-20.917538166326977],[164.61704617046172,-20.917538166326977],[164.5990459904599,-20.92766962994628],[164.5846458464585,-20.920915320866754],[164.55944559445595,-20.897275239088387],[164.55224552245522,-20.895586661818513],[164.5306453064531,-20.893898084548624],[164.519845198452,-20.89052093000886],[164.51624516245164,-20.88545519819921],[164.50184501845018,-20.86350369369073],[164.48024480244806,-20.858437961881094],[164.46224462244624,-20.848306498261792],[164.41904419044192,-20.806092066514722],[164.390243902439,-20.78751771654602],[164.3758437584376,-20.774009098386955],[164.36504365043652,-20.758811902958016],[164.37224372243725,-20.757123325688127],[164.3866438664387,-20.76050048022789],[164.4010440104401,-20.753746171148364],[164.4118441184412,-20.73854897571941],[164.40464404644047,-20.72504035756036],[164.390243902439,-20.716597471210946],[164.37224372243725,-20.713220316671183],[164.3578435784358,-20.70308885305188],[164.33624336243366,-20.65580868949516],[164.31824318243184,-20.643988648605983],[164.28584285842862,-20.576445557810672],[164.28224282242826,-20.57982271235045],[164.27504275042753,-20.57982271235045],[164.27144271442717,-20.581511289620323],[164.2678426784268,-20.58319986689021],[164.2570425704257,-20.564625516921495],[164.1922419224192,-20.525788239714203],[164.17784177841781,-20.503836735205724],[164.16704167041672,-20.463310880728542],[164.16344163441636,-20.449802262569477],[164.159841598416,-20.43291648987065],[164.14544145441454,-20.424473603521236],[164.1346413464135,-20.419407871711584],[164.1238412384124,-20.41096498536217],[164.12024120241205,-20.39070205812358],[164.13104131041314,-20.387324903583817],[164.15624156241563,-20.397456367203105],[164.16704167041672,-20.387324903583817],[164.1706417064171,-20.37043913088499],[164.1706417064171,-20.338356162757222],[164.16704167041672,-20.331601853677682],[164.15624156241563,-20.319781812788506],[164.14544145441454,-20.30627319462944],[164.13104131041314,-20.301207462819804],[164.08424084240846,-20.299518885549915],[164.07344073440737,-20.294453153740264],[164.0806408064081,-20.280944535581213],[164.0806408064081,-20.267435917422148],[164.07344073440737,-20.26068160834261],[164.0590405904059,-20.267435917422148],[164.06624066240664,-20.277567381041436],[164.0590405904059,-20.28769884466074],[164.04824048240482,-20.297830308280027],[164.0410404104041,-20.301207462819804],[164.0266402664027,-20.297830308280027],[164.01944019440197,-20.28769884466074],[164.01944019440197,-20.279255958311325],[164.00864008640087,-20.274190226501673],[163.99423994239942,-20.264058762882385],[163.99783997839978,-20.24379583564378],[164.0158401584016,-20.23028721748473],[164.04824048240482,-20.238730103834143],[164.05544055440555,-20.226910062944967],[164.05184051840519,-20.215090022055776],[164.03384033840342,-20.19313851754731],[164.04464044640446,-20.18807278573766],[164.05184051840519,-20.177941322118357],[164.05544055440555,-20.164432703959307],[164.04824048240482,-20.15092408580024],[164.03384033840342,-20.14079262218094],[164.01944019440197,-20.142481199450827],[164.00864008640087,-20.149235508530353],[163.99063990639905,-20.15092408580024],[163.99063990639905,-20.1441697767207],[163.99783997839978,-20.139104044911065],[164.00144001440015,-20.135726890371288],[164.0050400504005,-20.12390684948211],[163.99063990639905,-20.11884111767246],[163.9870398703987,-20.11039823132306],[163.9870398703987,-20.096889613163995],[163.99063990639905,-20.08338099500493],[164.00144001440015,-20.08338099500493],[164.01224012240124,-20.08338099500493],[164.03384033840342,-20.093512458624232],[164.05184051840519,-20.108709654053172],[164.06624066240664,-20.125595426752],[164.07704077040773,-20.149235508530353],[164.08784087840877,-20.155989817609893],[164.10944109441095,-20.164432703959307],[164.18144181441818,-20.247172990183557],[164.19944199441994,-20.26068160834261],[164.24264242642425,-20.28601026739085],[164.26424264242644,-20.289387421930613],[164.28584285842862,-20.280944535581213],[164.2930429304293,-20.280944535581213],[164.30744307443075,-20.30796177189933],[164.31824318243184,-20.319781812788506],[164.33624336243366,-20.321470390058394],[164.32544325443257,-20.309650349169218],[164.31104311043111,-20.275878803771562],[164.3038430384304,-20.242107258373906],[164.30744307443075,-20.235352949294366],[164.31464314643148,-20.235352949294366],[164.49464494644945,-20.299518885549915],[164.52704527045273,-20.326536121868045],[164.58104581045814,-20.39070205812358],[164.59544595445954,-20.404210676282645],[164.61344613446136,-20.41771929444171],[164.63504635046354,-20.427850758061],[164.6530465304653,-20.43122791260076],[164.68544685446858,-20.45824514891889],[164.69624696246962,-20.463310880728542],[164.72504725047253,-20.47344234434783],[164.73944739447398,-20.485262385237007],[164.76824768247684,-20.52072250790455],[164.7826478264783,-20.527476816984077],[164.79344793447933,-20.53591970333349],[164.82944829448297,-20.58319986689021],[164.879848798488,-20.627102875907156],[164.8906489064891,-20.627102875907156],[164.91944919449196,-20.645677225875872],[164.93384933849342,-20.659185844034937],[164.93024930249305,-20.672694462193988],[164.94824948249482,-20.684514503083165],[164.98784987849882,-20.684514503083165],[165.00585005850058,-20.699711698512118],[165.0238502385024,-20.706466007591644],[165.059850598506,-20.733483243909774],[165.1678516785168,-20.753746171148364],[165.17145171451716,-20.75543474841824],[165.1786517865179,-20.76556621203754],[165.18585185851862,-20.768943366577304],[165.18585185851862,-20.76725478930743],[165.19305193051935,-20.763877634767653],[165.20025200252002,-20.76050048022789],[165.20385203852038,-20.76050048022789],[165.21825218252184,-20.763877634767653],[165.2218522185222,-20.76725478930743],[165.22545225452257,-20.772320521117067],[165.2326523265233,-20.78076340746648],[165.25785257852579,-20.799337757435197],[165.2650526505265,-20.812846375594262],[165.26145261452615,-20.8280435710232],[165.26865268652688,-20.87025800277027],[165.27945279452797,-20.883766620929336],[165.29385293852943,-20.893898084548624],[165.3118531185312,-20.902340970898038],[165.32265322653228,-20.91247243451734],[165.329853298533,-20.92766962994628],[165.33705337053374,-20.931046784486043],[165.39105391053914,-20.937801093565582],[165.4090540905409,-20.944555402645108],[165.41265412654127,-20.94962113445476],[165.4090540905409,-20.981704102582526],[165.40185401854018,-21.00534418436088],[165.3982539825398,-21.01040991617053],[165.39465394653945,-21.018852802519945],[165.3982539825398,-21.02560711159947],[165.40185401854018,-21.03067284340912],[165.40185401854018,-21.03742715248866],[165.40545405454054,-21.056001502457363],[165.41625416254163,-21.066132966076665],[165.44865448654485,-21.08977304785502],[165.47745477454777,-21.103281666014084],[165.48825488254886,-21.113413129633372],[165.50265502655026,-21.126921747792437],[165.509855098551,-21.1302989023322],[165.53505535055353,-21.13198747960209],[165.54225542255426,-21.13536463414185],[165.54585545855457,-21.140430365951502],[165.54225542255426,-21.15225040684068],[165.54585545855457,-21.148873252300916],[165.54945549455493,-21.148873252300916],[165.5530555305553,-21.148873252300916],[165.55665556655566,-21.143807520491265],[165.58545585455857,-21.169136179539507],[165.59985599855997,-21.180956220428683],[165.60345603456034,-21.19277626131786],[165.6070560705607,-21.196153415857623],[165.61065610656107,-21.19784199312751],[165.61425614256143,-21.206284879476925],[165.59985599855997,-21.206284879476925],[165.5818558185582,-21.202907724937162],[165.56745567455675,-21.196153415857623],[165.55665556655566,-21.186021952238335],[165.56025560255603,-21.196153415857623],[165.56745567455675,-21.206284879476925],[165.5818558185582,-21.216416343096228],[165.5926559265593,-21.21979349763599],[165.60345603456034,-21.226547806715516],[165.61065610656107,-21.241745002144462],[165.6178561785618,-21.25694219757341],[165.62145621456216,-21.268762238462585],[165.64665646656465,-21.277205124812],[165.70785707857078,-21.292402320240946],[165.7258572585726,-21.309288092939767],[165.75465754657546,-21.30253378386024],[165.779857798578,-21.3160424020193],[165.80145801458013,-21.33968248379766],[165.80865808658086,-21.363322565576013],[165.82665826658268,-21.35994541103625],[165.83745837458378,-21.40215984278332],[165.85545855458554,-21.419045615482148],[165.8446584465845,-21.39878268824355],[165.8446584465845,-21.392028379164024],[165.8482584825848,-21.38358549281461],[165.8590585905859,-21.37851976100496],[165.869858698587,-21.37851976100496],[165.87705877058772,-21.385274070084492],[165.88425884258845,-21.39709411097367],[165.88785887858882,-21.388651224624255],[165.89145891458918,-21.37851976100496],[165.88785887858882,-21.366699720115783],[165.87705877058772,-21.356568256496487],[165.89505895058954,-21.36163398830613],[165.90945909459094,-21.37851976100496],[165.94185941859422,-21.439308542720738],[165.9490594905949,-21.456194315419566],[165.94545945459458,-21.46463720176898],[165.9238592385924,-21.45957146995933],[165.93105931059313,-21.469702933578624],[165.97065970659708,-21.493343015356984],[165.9670596705967,-21.50347447897628],[165.97425974259744,-21.50347447897628],[165.98505985059853,-21.500097324436517],[165.99225992259926,-21.496720169896747],[165.9886598865989,-21.48490012900757],[165.98505985059853,-21.474768665388275],[165.9778597785978,-21.468014356308743],[165.97065970659708,-21.45957146995933],[165.96345963459635,-21.435931388180975],[165.96345963459635,-21.41735703821226],[165.97065970659708,-21.410602729132734],[165.9886598865989,-21.42073419275203],[166.02106021060212,-21.452817160879796],[166.0318603186032,-21.456194315419566],[166.0570605706057,-21.457882892689447],[166.06426064260643,-21.4629486244991],[166.0678606786068,-21.469702933578624],[166.06066060660606,-21.473080088118394],[166.04986049860497,-21.474768665388275],[166.04986049860497,-21.47983439719792],[166.05346053460534,-21.48321155173769],[166.06066060660606,-21.486588706277452],[166.0678606786068,-21.486588706277452],[166.07146071460716,-21.49840874716663],[166.07146071460716,-21.516983097135345],[166.07506075060752,-21.52880313802452],[166.0966609666097,-21.516983097135345],[166.11826118261183,-21.516983097135345],[166.1326613266133,-21.52542598348475],[166.18306183061833,-21.569328992501703],[166.19026190261906,-21.572706147041472],[166.20466204662046,-21.576083301581235],[166.20826208262082,-21.579460456120998],[166.2190621906219,-21.596346228819826],[166.2550625506255,-21.618297733328305],[166.29106291062914,-21.635183506027133],[166.37026370263703,-21.658823587805486],[166.37026370263703,-21.66557789688502],[166.34146341463418,-21.66557789688502],[166.34146341463418,-21.67233220596455],[166.3486634866349,-21.675709360504314],[166.3522635226352,-21.682463669583846],[166.3522635226352,-21.68752940139349],[166.35586355863558,-21.69259513320314],[166.3630636306363,-21.695972287742904],[166.37746377463776,-21.697660865012793],[166.40986409864098,-21.706103751362207],[166.42426424264244,-21.712858060441732],[166.4386643866439,-21.73143241041044],[166.47466474664748,-21.758449646728565],[166.4818648186482,-21.765203955808097],[166.4818648186482,-21.783778305776806],[166.48906489064893,-21.79222119212622],[166.49626496264966,-21.79559834666599],[166.51426514265142,-21.802352655745516],[166.5070650706507,-21.809106964825048],[166.52866528665288,-21.827681314793757],[166.5718657186572,-21.87496147835047],[166.59346593465938,-21.885092941969766],[166.61146611466114,-21.89691298285895],[166.6366663666637,-21.923930219177073],[166.66186661866618,-21.939127414606013],[166.67266672666727,-21.925618796446955],[166.7050670506705,-21.947570300955427],[166.71946719467195,-21.952636032765078],[166.71946719467195,-21.95939034184461],[166.71226712267122,-21.964456073654254],[166.7050670506705,-21.969521805463906],[166.69426694266946,-21.971210382733787],[166.68346683466837,-21.97289896000367],[166.68346683466837,-21.981341846353082],[166.69426694266946,-21.984719000892852],[166.7230672306723,-21.981341846353082],[166.7338673386734,-21.983030423622964],[166.7446674466745,-21.988096155432615],[166.75546755467553,-21.991473309972378],[166.7590675906759,-21.986407578162734],[166.76626766267663,-22.004981928131443],[166.77706777067772,-22.015113391750738],[166.79506795067954,-22.0184905462905],[166.81666816668167,-22.02186770083027],[166.87426874268743,-22.03537631898933],[166.8886688866889,-22.04213062806886],[166.93906939069393,-22.07927932800628],[166.94986949869502,-22.092787946165345],[166.96066960669606,-22.111362296134054],[166.96066960669606,-22.119805182483468],[166.96066960669606,-22.145133841531703],[166.9534695346954,-22.150199573341354],[166.94986949869502,-22.158642459690768],[166.94626946269466,-22.16370819150041],[166.96426964269642,-22.1653967687703],[166.97146971469715,-22.170462500579944],[166.97866978669788,-22.18059396419924],[166.99306993069933,-22.200856891437837],[167.02907029070292,-22.226185550486072],[167.03267032670328,-22.238005591375256]]],[[[-180,-16.490088564694545],[-179.99279992799927,-16.47657994653548],[-179.9639996399964,-16.458005596566778],[-179.96039960399605,-16.4461855556776],[-179.94959949599496,-16.44280840113784],[-179.91359913599135,-16.430988360248648],[-179.89919899198992,-16.429299782978774],[-179.89919899198992,-16.4360540920583],[-179.90639906399065,-16.437742669328188],[-179.909999099991,-16.44111982386795],[-179.909999099991,-16.444496978407713],[-179.90279902799028,-16.449562710217364],[-179.90279902799028,-16.458005596566778],[-179.909999099991,-16.459694173836652],[-179.91359913599135,-16.46138275110654],[-179.92079920799208,-16.46307132837643],[-179.9279992799928,-16.46307132837643],[-179.93159931599317,-16.468137060186066],[-179.93879938799387,-16.47826852380537],[-179.93879938799387,-16.486711410154783],[-179.9279992799928,-16.491777141964434],[-179.92079920799208,-16.496842873774085],[-179.93519935199353,-16.510351491933136],[-179.95319953199532,-16.5238601100922],[-180,-16.54074588279103],[-180,-16.490088564694545]]],[[[-180,-16.14899595617824],[-179.9891998919989,-16.13886449255895],[-179.97479974799748,-16.130421606209538],[-179.93879938799387,-16.121978719860124],[-179.94959949599496,-16.142241647098714],[-179.96039960399605,-16.15406168798789],[-179.97839978399784,-16.162504574337305],[-180,-16.16925888341683],[-180,-16.14899595617824]]],[[[167.1406714067141,-15.536042407210829],[167.10107101071014,-15.579945416227773],[167.09387093870941,-15.586699725307298],[167.0866708667087,-15.590076879847075],[167.0758707587076,-15.593454034386838],[167.0650706507065,-15.593454034386838],[167.05427054270547,-15.59176545711695],[167.03627036270365,-15.583322570767535],[167.02547025470255,-15.579945416227773],[166.98946989469897,-15.574879684418121],[166.94626946269466,-15.57656826168801],[166.90666906669065,-15.586699725307298],[166.88506885068853,-15.608651229815777],[166.89226892268925,-15.617094116165191],[166.88506885068853,-15.61878269343508],[166.86346863468634,-15.615405538895317],[166.8526685266853,-15.622159847974842],[166.84546845468458,-15.630602734324256],[166.84186841868421,-15.63904562067367],[166.8346683466835,-15.649177084292958],[166.81666816668167,-15.657619970642372],[166.79146791467917,-15.655931393372498],[166.769867698677,-15.645799929753196],[166.75546755467553,-15.627225579784493],[166.76626766267663,-15.608651229815777],[166.76626766267663,-15.583322570767535],[166.75546755467553,-15.563059643528945],[166.7230672306723,-15.547862448100005],[166.70866708667086,-15.532665252671052],[166.68346683466837,-15.49889370727341],[166.67266672666727,-15.468499316415517],[166.6690666906669,-15.460056430066103],[166.64026640266405,-15.434727771017862],[166.6366663666637,-15.426284884668448],[166.63306633066333,-15.412776266509383],[166.61866618666187,-15.39420191654068],[166.6150661506615,-15.385759030191267],[166.61866618666187,-15.375627566571964],[166.6258662586626,-15.355364639333374],[166.63306633066333,-15.326658825745369],[166.64746647466478,-15.286132971268188],[166.65106651066515,-15.264181466759709],[166.64746647466478,-15.218589880472877],[166.64386643866442,-15.194949798694523],[166.61866618666187,-15.161178253296868],[166.6150661506615,-15.142603903328151],[166.61146611466114,-15.100389471581082],[166.6006660066601,-15.061552194373789],[166.6006660066601,-15.048043576214724],[166.61146611466114,-15.031157803515896],[166.59346593465938,-15.026092071706245],[166.58266582665829,-15.010894876277305],[166.57546575465756,-14.992320526308589],[166.57546575465756,-14.973746176339887],[166.5718657186572,-14.956860403641059],[166.55026550265507,-14.924777435513292],[166.53946539465397,-14.907891662814464],[166.52146521465215,-14.831905685669739],[166.52506525065252,-14.81501991297091],[166.53226532265325,-14.799822717541971],[166.5358653586536,-14.77449405849373],[166.53226532265325,-14.750853976715362],[166.52866528665288,-14.737345358556311],[166.55386553865537,-14.681622308650176],[166.55386553865537,-14.657982226871823],[166.55746557465574,-14.646162185982647],[166.58626586265865,-14.636030722363344],[166.59346593465938,-14.629276413283819],[166.59706597065974,-14.625899258744042],[166.61146611466114,-14.634342145093456],[166.6150661506615,-14.64278503144287],[166.62226622266223,-14.669802267761],[166.6258662586626,-14.674867999570651],[166.6366663666637,-14.679933731380288],[166.64026640266405,-14.69006519499959],[166.64386643866442,-14.701885235888767],[166.64386643866442,-14.713705276777944],[166.64746647466478,-14.715393854047832],[166.67266672666727,-14.744099667635837],[166.679866798668,-14.76773974941419],[166.68706687066873,-14.77955979030338],[166.7050670506705,-14.789691253922669],[166.74826748267486,-14.820085644780562],[166.73746737467377,-14.83021710839985],[166.74106741067413,-14.85216861290833],[166.7590675906759,-14.901137353734924],[166.769867698677,-14.948417517291645],[166.77346773467735,-14.99738625811824],[166.77346773467735,-15.009206299007417],[166.77706777067772,-15.015960608086957],[166.78426784267845,-15.021026339896594],[166.7878678786788,-15.027780648976133],[166.80226802268027,-15.152735366947454],[166.8130681306813,-15.161178253296868],[166.83826838268385,-15.161178253296868],[166.88506885068853,-15.156112521487216],[166.91026910269102,-15.156112521487216],[166.9210692106921,-15.156112521487216],[166.92466924669247,-15.147669635137802],[166.93906939069393,-15.127406707899212],[166.94626946269466,-15.120652398819686],[166.9570695706957,-15.112209512470272],[166.96426964269642,-15.103766626120859],[166.9678696786968,-15.090258007961793],[166.97146971469715,-14.980500485419412],[166.97146971469715,-14.966991867260347],[166.96426964269642,-14.951794671831408],[166.97506975069751,-14.936597476402468],[166.99306993069933,-14.926466012783166],[167.00747007470073,-14.921400280973515],[167.08307083070832,-14.928154590053055],[167.08307083070832,-14.936597476402468],[167.0650706507065,-14.939974630942231],[167.05787057870577,-14.948417517291645],[167.05427054270547,-14.960237558180822],[167.05787057870577,-15.002451989927891],[167.05427054270547,-15.01258345354718],[167.039870398704,-15.02440349443637],[167.05787057870577,-15.027780648976133],[167.0650706507065,-15.03960068986531],[167.06867068670687,-15.073372235262966],[167.0866708667087,-15.12234097608956],[167.09027090270905,-15.140915326058277],[167.11187111871118,-15.124029553359449],[167.12627126271263,-15.120652398819686],[167.14427144271446,-15.127406707899212],[167.1406714067141,-15.145981057867914],[167.15867158671585,-15.22703276682229],[167.15147151471518,-15.24222996225123],[167.14427144271446,-15.245607116790993],[167.1406714067141,-15.24898427133077],[167.15147151471518,-15.264181466759709],[167.15507155071555,-15.267558621299472],[167.1730717307173,-15.272624353109123],[167.18027180271804,-15.277690084918774],[167.1838718387184,-15.282755816728425],[167.19107191071913,-15.306395898506779],[167.19107191071913,-15.32497024847548],[167.1838718387184,-15.340167443904434],[167.18027180271804,-15.34692175298396],[167.1730717307173,-15.333413134824895],[167.16587165871658,-15.333413134824895],[167.1730717307173,-15.36718468022255],[167.19107191071913,-15.417841998319034],[167.21267212672126,-15.463433584605866],[167.2378723787238,-15.483696511844457],[167.24507245072454,-15.488762243654108],[167.2486724867249,-15.49889370727341],[167.24507245072454,-15.509025170892698],[167.24147241472417,-15.517468057242112],[167.23427234272344,-15.524222366321638],[167.22707227072272,-15.522533789051764],[167.219872198722,-15.519156634512001],[167.2090720907209,-15.517468057242112],[167.1730717307173,-15.517468057242112],[167.15867158671585,-15.522533789051764],[167.1406714067141,-15.536042407210829]]],[[[159.85779857798582,-8.511560964498798],[159.89019890198904,-8.533512469007277],[159.90099900999013,-8.550398241706105],[159.88659886598867,-8.562218282595282],[159.87939879398795,-8.560529705325393],[159.84699846998473,-8.541955355356691],[159.839798397984,-8.540266778086803],[159.8289982899829,-8.541955355356691],[159.82539825398254,-8.541955355356691],[159.82179821798218,-8.53688962354704],[159.8181981819818,-8.5301353144675],[159.81459814598145,-8.523381005387975],[159.7965979659797,-8.51662669630845],[159.7857978579786,-8.499740923609622],[159.7641976419764,-8.492986614530082],[159.75699756997574,-8.486232305450557],[159.74259742597428,-8.46765795548184],[159.71379713797137,-8.442329296433613],[159.70299702997033,-8.43219783281431],[159.69939699396997,-8.423754946464896],[159.70299702997033,-8.413623482845594],[159.69939699396997,-8.408557751035957],[159.6849968499685,-8.40518059649618],[159.67419674196742,-8.398426287416655],[159.62739627396274,-8.357900432939473],[159.54459544595449,-8.339326082970757],[159.50859508595084,-8.319063155732167],[159.48339483394835,-8.308931692112878],[159.46179461794617,-8.290357342144162],[159.4437944379444,-8.281914455794748],[159.42939429394295,-8.276848723985097],[159.4149941499415,-8.281914455794748],[159.3789937899379,-8.261651528556158],[159.3609936099361,-8.256585796746506],[159.3465934659347,-8.261651528556158],[159.3357933579336,-8.238011446777804],[159.3249932499325,-8.226191405888628],[159.3141931419314,-8.221125674078976],[159.29979299793,-8.219437096809088],[159.28899288992892,-8.214371364999437],[159.27819278192783,-8.205928478650023],[159.27819278192783,-8.192419860490972],[159.25659256592564,-8.200862746840386],[159.23499234992352,-8.195797015030735],[159.21339213392133,-8.185665551411432],[159.11979119791198,-8.118122460616135],[159.11259112591125,-8.116433883346247],[159.09819098190985,-8.118122460616135],[159.09099090990912,-8.118122460616135],[159.08739087390876,-8.111368151536595],[159.08739087390876,-8.102925265187181],[159.08739087390876,-8.094482378837768],[159.08739087390876,-8.089416647028116],[159.07659076590767,-8.087728069758242],[159.0729907299073,-8.091105224298005],[159.06939069390694,-8.096170956107656],[159.06579065790658,-8.096170956107656],[159.03699036990372,-8.082662337948591],[159.029790297903,-8.082662337948591],[159.01539015390154,-8.08435091521848],[159.01179011790117,-8.082662337948591],[159.0081900819008,-8.080973760678702],[159.00459004590044,-8.067465142519652],[159.00459004590044,-8.06239941071],[158.9937899378994,-8.05733367890035],[158.98298982989832,-8.055645101630475],[158.97938979389795,-8.048890792550935],[158.9757897578976,-8.03538217439187],[158.96858968589686,-8.040447906201521],[158.94698946989473,-8.048890792550935],[158.94698946989473,-8.028627865312345],[158.93618936189364,-8.013430669883405],[158.92178921789218,-8.004987783533991],[158.90378903789036,-7.99992205172434],[158.84618846188465,-7.97290481540621],[158.83898838988392,-7.9357561154687914],[158.8317883178832,-7.917181765500089],[158.81378813788137,-7.9222474973097405],[158.78498784987852,-7.915493188230201],[158.77058770587706,-7.905361724610913],[158.7777877778778,-7.891853106451848],[158.7669876698767,-7.880033065562671],[158.7561875618756,-7.871590179213257],[158.74898748987493,-7.871590179213257],[158.73818738187384,-7.885098797372322],[158.72738727387275,-7.871590179213257],[158.71658716587166,-7.836130056545713],[158.70218702187026,-7.822621438386662],[158.6877868778688,-7.810801397497471],[158.66978669786698,-7.805735665687834],[158.65538655386553,-7.809112820227597],[158.6445864458645,-7.792227047528769],[158.60138601386018,-7.768586965750416],[158.58338583385836,-7.7550783475913505],[158.579785797858,-7.741569729432285],[158.579785797858,-7.729749688543109],[158.58338583385836,-7.721306802193695],[158.58338583385836,-7.709486761304518],[158.58338583385836,-7.668960906827337],[158.50778507785077,-7.6031063933019],[158.45378453784537,-7.576089156983784],[158.4465844658447,-7.560891961554844],[158.4465844658447,-7.544006188856017],[158.45378453784537,-7.532186147966826],[158.46818468184682,-7.533874725236714],[158.489784897849,-7.547383343395779],[158.58698586985872,-7.581154888793435],[158.59418594185945,-7.586220620603072],[158.60498604986049,-7.586220620603072],[158.61578615786158,-7.574400579713895],[158.62658626586267,-7.564269116094607],[158.64098640986413,-7.569334847904244],[158.6445864458645,-7.565957693364481],[158.6445864458645,-7.564269116094607],[158.64818648186485,-7.562580538824719],[158.65538655386553,-7.560891961554844],[158.66258662586625,-7.581154888793435],[158.6769867698677,-7.594663506952486],[158.71658716587166,-7.6098607023814395],[158.72018720187202,-7.604794970571788],[158.72738727387275,-7.598040661492263],[158.73458734587348,-7.591286352412723],[158.73818738187384,-7.589597775142849],[158.7525875258753,-7.592974929682612],[158.7561875618756,-7.6031063933019],[158.75978759787597,-7.616615011460965],[158.7669876698767,-7.626746475080267],[158.78498784987852,-7.6453208250489695],[158.79938799387998,-7.653763711398383],[158.80658806588065,-7.658829443208035],[158.81378813788137,-7.663895175017686],[158.8317883178832,-7.694289565875565],[158.84978849788502,-7.704421029494867],[158.86418864188641,-7.7246839567334575],[158.87138871388714,-7.7331268430828715],[158.8857888578886,-7.741569729432285],[158.92178921789218,-7.7550783475913505],[158.939789397894,-7.765209811210639],[158.96858968589686,-7.7905384702588805],[158.99018990189904,-7.802358511148057],[158.97938979389795,-7.822621438386662],[158.98658986589868,-7.83950721108549],[159.00099000990014,-7.849638674704778],[159.01539015390154,-7.8428843656252525],[159.05859058590585,-7.85977013832408],[159.06939069390694,-7.868213024673494],[159.07659076590767,-7.880033065562671],[159.08019080190803,-7.89523026099161],[159.08739087390876,-7.903673147341024],[159.09819098190985,-7.898607415531373],[159.1269912699127,-7.918870342769964],[159.1485914859149,-7.908738879150675],[159.16659166591666,-7.905361724610913],[159.18459184591848,-7.905361724610913],[159.20979209792097,-7.912116033690438],[159.19539195391957,-7.917181765500089],[159.19899198991993,-7.9273132291193775],[159.20979209792097,-7.9357561154687914],[159.2169921699217,-7.939133270008568],[159.23499234992352,-7.940821847278443],[159.2457924579246,-7.945887579088094],[159.24939249392497,-7.954330465437508],[159.25659256592564,-7.966150506326684],[159.27459274592746,-7.954330465437508],[159.2817928179282,-7.962773351786922],[159.29259292592928,-7.977970547215861],[159.29979299793,-7.986413433565275],[159.33219332193323,-7.989790588105038],[159.3465934659347,-7.986413433565275],[159.35379353793542,-7.97290481540621],[159.37179371793718,-7.981347701755624],[159.3789937899379,-7.986413433565275],[159.38619386193864,-7.993167742644815],[159.40419404194046,-7.983036279025512],[159.41139411394113,-7.993167742644815],[159.42219422194222,-8.013430669883405],[159.4329943299433,-8.032005019852107],[159.44739447394477,-8.043825060741284],[159.47619476194762,-8.059022256170238],[159.49059490594908,-8.069153719789526],[159.49059490594908,-8.070842297059414],[159.50499504995054,-8.075908028869065],[159.50499504995054,-8.079285183408828],[159.50859508595084,-8.087728069758242],[159.50859508595084,-8.089416647028116],[159.55539555395558,-8.126565346965535],[159.64899648996493,-8.180599819601781],[159.84339843398436,-8.325817464811706],[159.84699846998473,-8.335948928430994],[159.82539825398254,-8.357900432939473],[159.8037980379804,-8.386606246527478],[159.7965979659797,-8.39167197833713],[159.78939789397896,-8.386606246527478],[159.7749977499775,-8.383229091987715],[159.7641976419764,-8.38491766925759],[159.75699756997574,-8.39167197833713],[159.75699756997574,-8.39673771014678],[159.7749977499775,-8.408557751035957],[159.78219782197823,-8.425443523734785],[159.78939789397896,-8.425443523734785],[159.80019800198005,-8.420377791925134],[159.80739807398078,-8.41193490557572],[159.8181981819818,-8.420377791925134],[159.84699846998473,-8.460903646402315],[159.85419854198545,-8.476100841831254],[159.85779857798582,-8.491298037260208],[159.85779857798582,-8.511560964498798]]],[[[-60.07920079200791,45.793084034928796],[-60.09360093600935,45.79139545765889],[-60.17640176401764,45.766066798610666],[-60.1980019800198,45.755935334991364],[-60.208802088020875,45.74073813956244],[-60.2160021600216,45.71878663505396],[-60.234002340023395,45.70696659416478],[-60.259202592025915,45.70021228508523],[-60.284402844028435,45.69683513054548],[-60.3240032400324,45.6833265123864],[-60.39600396003959,45.64280065790922],[-60.44280442804427,45.636046348829694],[-60.46440464404644,45.636046348829694],[-60.47160471604715,45.63942350336947],[-60.47520475204752,45.649554966988774],[-60.50040500405004,45.632669194289946],[-60.511205112051115,45.62591488521039],[-60.630006300063,45.59552049435251],[-60.662406624066236,45.57694614438381],[-60.673206732067314,45.573568989844034],[-60.70560705607056,45.573568989844034],[-60.712807128071276,45.57188041257416],[-60.72000720007199,45.56850325803438],[-60.72720727207272,45.565126103494634],[-60.73440734407343,45.56681468076451],[-60.74160741607416,45.573568989844034],[-60.74160741607416,45.58201187619346],[-60.74520745207451,45.59045476254286],[-60.75240752407524,45.59383191708264],[-60.8280082800828,45.600586226162164],[-60.84600846008459,45.60396338070191],[-60.849608496084954,45.614094844321215],[-60.849608496084954,45.627603462480295],[-60.85680856808568,45.63942350336947],[-60.87120871208711,45.646177812449],[-60.88560885608855,45.63773492609957],[-60.89640896408963,45.62422630794052],[-60.90720907209072,45.614094844321215],[-60.91440914409144,45.62084915340074],[-60.925209252092515,45.62591488521039],[-60.93600936009359,45.627603462480295],[-60.94680946809467,45.627603462480295],[-60.94680946809467,45.61240626705134],[-60.96840968409684,45.60734053524169],[-61.02241022410223,45.614094844321215],[-61.0080100801008,45.60734053524169],[-61.01521015210152,45.59552049435251],[-61.026010260102595,45.592143339812736],[-61.04761047610475,45.59383191708264],[-61.05841058410584,45.592143339812736],[-61.08721087210871,45.573568989844034],[-61.13041130411304,45.56006037168498],[-61.15561155611556,45.556683217145206],[-61.17361173611735,45.55837179441508],[-61.15561155611556,45.565126103494634],[-61.152011520115195,45.57188041257416],[-61.15561155611556,45.578634721653685],[-61.16641166411664,45.58707760800311],[-61.18081180811808,45.59045476254286],[-61.19521195211952,45.58876618527299],[-61.2060120601206,45.592143339812736],[-61.20961209612096,45.60734053524169],[-61.21681216812168,45.600586226162164],[-61.22041220412204,45.58876618527299],[-61.22401224012239,45.58201187619346],[-61.23121231212312,45.58370045346334],[-61.2420124201242,45.58538903073321],[-61.252812528125276,45.58032329892356],[-61.26721267212672,45.57188041257416],[-61.278012780127796,45.56681468076451],[-61.27081270812708,45.54824033079581],[-61.285212852128524,45.54824033079581],[-61.32121321213212,45.55837179441508],[-61.335613356133564,45.56681468076451],[-61.364413644136434,45.61071768978147],[-61.41841418414184,45.6563092760683],[-61.44361443614436,45.68163793511653],[-61.454414544145436,45.71034374870453],[-61.465214652146514,45.77619826222997],[-61.47601476014759,45.8116583848975],[-61.4940149401494,45.82685558032645],[-61.49761497614976,45.83529846667585],[-61.490414904149034,45.88933293931211],[-61.50121501215011,45.90621871201094],[-61.515615156151554,45.91972733016999],[-61.52281522815228,45.93323594832904],[-61.515615156151554,45.95012172102787],[-61.52281522815228,45.96025318464717],[-61.52281522815228,45.98051611188578],[-61.52281522815228,45.99233615277495],[-61.530015300152996,45.9957133073147],[-61.53721537215371,46.002467616394256],[-61.5480154801548,46.010910502743656],[-61.55161551615515,46.02104196636296],[-61.540815408154074,46.041304893601534],[-61.515615156151554,46.05312493449071],[-61.490414904149034,46.06325639811001],[-61.47601476014759,46.073387861729316],[-61.46881468814688,46.09196221169802],[-61.465214652146514,46.12066802528602],[-61.4580145801458,46.14599668433428],[-61.44361443614436,46.15612814795358],[-61.43281432814328,46.162882457033106],[-61.386013860138604,46.19496542516086],[-61.288812888128874,46.242245588717594],[-61.28161281612816,46.24562274325734],[-61.278012780127796,46.255754206876645],[-61.21321213212131,46.331740184021356],[-61.19161191611916,46.367200306688915],[-61.177211772117715,46.38577465665762],[-61.09441094410944,46.45331774745293],[-61.08721087210871,46.46682636561198],[-61.080010800108,46.48033498377106],[-61.076410764107635,46.51241795189881],[-61.06561065610656,46.527615147327765],[-61.04041040410404,46.549566651836244],[-61.02961029610296,46.568141001804946],[-61.03681036810367,46.581649619964],[-61.051210512105115,46.5917810835833],[-61.05841058410584,46.6019125472026],[-61.05481054810548,46.612044010821904],[-61.0440104401044,46.625552628980955],[-61.02961029610296,46.63737266987013],[-61.01521015210152,46.64243840167978],[-61.02961029610296,46.612044010821904],[-61.02961029610296,46.6019125472026],[-61.02241022410223,46.5934696608532],[-61.01881018810188,46.60022396993273],[-61.01161011610115,46.61373258809178],[-61.0080100801008,46.625552628980955],[-61.00441004410044,46.63399551533038],[-60.97200972009719,46.652569865299085],[-60.96480964809648,46.66270132891839],[-60.94680946809467,46.69816145158592],[-60.900009000089995,46.76908169692098],[-60.86760867608676,46.799476087778885],[-60.83160831608316,46.821427592287364],[-60.788407884078836,46.834936210446415],[-60.77040770407703,46.843379096795815],[-60.7020070200702,46.9041678785116],[-60.65160651606516,46.981842432926214],[-60.64080640806408,47.00379393743469],[-60.63360633606335,47.01054824651422],[-60.622806228062274,47.017302555593744],[-60.60480604806048,47.03418832829257],[-60.59400594005939,47.03418832829257],[-60.572405724057234,47.02574544194317],[-60.53280532805327,47.022368287403395],[-60.52200522005219,47.01899113286362],[-60.51480514805148,47.01223682378409],[-60.50760507605075,47.00717109197444],[-60.50040500405004,47.000416782894916],[-60.486004860048595,46.99872820562504],[-60.460804608046075,47.00379393743469],[-60.42120421204211,47.022368287403395],[-60.39600396003959,47.02574544194317],[-60.38160381603815,47.017302555593744],[-60.39960399603996,46.995351051085265],[-60.435604356043555,46.96495666022739],[-60.46440464404644,46.927807960289954],[-60.48960489604896,46.905856455781475],[-60.49680496804967,46.8957249921622],[-60.47520475204752,46.897413569432075],[-60.45360453604536,46.892347837622424],[-60.44280442804427,46.883904951273024],[-60.45360453604536,46.875462064923596],[-60.45360453604536,46.86870775584407],[-60.43200432004319,46.86364202403442],[-60.39240392403924,46.86364202403442],[-60.360003600035995,46.865330601304294],[-60.33840338403384,46.875462064923596],[-60.33120331203311,46.87208491038385],[-60.3240032400324,46.867019178574196],[-60.31680316803168,46.861953446764545],[-60.309603096030955,46.85519913768502],[-60.30600306003059,46.83324763317654],[-60.309603096030955,46.80285324231863],[-60.3240032400324,46.745441615142624],[-60.3420034200342,46.70829291520522],[-60.34560345603455,46.69478429704614],[-60.35280352803528,46.68634141069674],[-60.39960399603996,46.66945563799791],[-60.39240392403924,46.661012751648485],[-60.38160381603815,46.655947019838834],[-60.37080370803707,46.65425844256896],[-60.35640356403563,46.655947019838834],[-60.35640356403563,46.64919271075931],[-60.36360363603636,46.647504133489434],[-60.3780037800378,46.64412697894966],[-60.385203852038515,46.64243840167978],[-60.37440374403744,46.62892978352073],[-60.360003600035995,46.62386405171108],[-60.34920349203492,46.61542116536165],[-60.35280352803528,46.6019125472026],[-60.35640356403563,46.595158238123076],[-60.3780037800378,46.57996104269412],[-60.42120421204211,46.52423799278799],[-60.460804608046075,46.42292335659505],[-60.47160471604715,46.407726161166096],[-60.50760507605075,46.36888888395879],[-60.51480514805148,46.35538026579974],[-60.52920529205292,46.32329729767196],[-60.57960579605796,46.26419709322607],[-60.60480604806048,46.21185119785969],[-60.60120601206012,46.20171973424041],[-60.597605976059754,46.19665400243076],[-60.55080550805508,46.26250851595617],[-60.540005400054,46.27263997957547],[-60.52560525605256,46.277705711385124],[-60.47520475204752,46.31992014313218],[-60.44280442804427,46.331740184021356],[-60.435604356043555,46.33342876129126],[-60.41760417604176,46.33005160675148],[-60.4140041400414,46.32329729767196],[-60.41760417604176,46.31485441132256],[-60.42120421204211,46.30303437043335],[-60.42840428404284,46.28446002046465],[-60.44280442804427,46.2709514023056],[-60.47520475204752,46.2523770523369],[-60.612006120061196,46.127422334365576],[-60.63360633606335,46.117290870746274],[-60.67680676806768,46.10209367531732],[-60.69120691206912,46.090273634428144],[-60.7020070200702,46.08858505715827],[-60.71640716407164,46.10715940712697],[-60.72720727207272,46.1054708298571],[-60.748807488074874,46.08520790261849],[-60.7560075600756,46.08014217080884],[-60.774007740077394,46.073387861729316],[-60.81720817208172,46.06156782084014],[-60.874808748087474,46.05312493449071],[-60.87840878408784,46.06156782084014],[-60.874808748087474,46.068322129919665],[-60.864008640086396,46.07169928445944],[-60.85320853208532,46.073387861729316],[-60.874808748087474,46.07845359353897],[-60.91080910809107,46.05143635722084],[-60.975609756097555,45.99233615277495],[-60.99360993609936,45.98220468915565],[-61.01521015210152,45.975450380076126],[-61.101611016110155,45.9585646073773],[-61.11961119611196,45.95012172102787],[-61.126811268112675,45.92985879378929],[-61.03321033210332,45.93661310286882],[-61.01161011610115,45.94167883467847],[-60.99360993609936,45.95349887556765],[-60.98280982809828,45.970384648266474],[-60.96840968409684,45.98558184369543],[-60.90360903609036,46.010910502743656],[-60.88560885608855,46.03455058452201],[-60.864008640086396,46.037927739061786],[-60.81720817208172,46.03961631633166],[-60.774007740077394,46.059879243570265],[-60.748807488074874,46.06663355264979],[-60.73440734407343,46.05650208903049],[-60.74160741607416,46.037927739061786],[-60.75960759607595,46.02273054363283],[-60.78120781207812,46.00753334820388],[-60.799207992079914,45.99233615277495],[-60.80280802808028,45.975450380076126],[-60.80640806408064,45.95349887556765],[-60.813608136081356,45.93661310286882],[-60.83520835208351,45.92985879378929],[-60.84600846008459,45.92817021651942],[-60.85680856808568,45.92479306197964],[-60.86760867608676,45.91972733016999],[-60.874808748087474,45.912973021090465],[-60.88560885608855,45.907907289280814],[-60.900009000089995,45.90959586655069],[-60.92160921609215,45.916350175630214],[-60.96120961209611,45.91466159836034],[-60.98280982809828,45.90959586655069],[-60.990009900099,45.899464402931386],[-61.000810008100075,45.89777582566151],[-61.05481054810548,45.89777582566151],[-61.07281072810727,45.89608724839164],[-61.051210512105115,45.88933293931211],[-61.0440104401044,45.88933293931211],[-61.05841058410584,45.87920147569281],[-61.07281072810727,45.87413574388316],[-61.08721087210871,45.86907001207351],[-61.09801098010979,45.853872816644554],[-61.08361083610836,45.853872816644554],[-61.06201062010619,45.85724997118433],[-61.04041040410404,45.864004280263856],[-61.02961029610296,45.872447166613284],[-61.01881018810188,45.87582432115303],[-60.99720997209971,45.87582432115303],[-60.98280982809828,45.877512898422935],[-60.990009900099,45.88933293931211],[-60.96840968409684,45.885955784772335],[-60.91440914409144,45.853872816644554],[-60.925209252092515,45.84711850756503],[-60.93600936009359,45.850495662104805],[-60.950409504095035,45.85724997118433],[-60.96480964809648,45.86062712572411],[-60.96840968409684,45.85724997118433],[-60.94320943209432,45.83529846667585],[-60.93600936009359,45.82685558032645],[-60.9540095400954,45.82685558032645],[-60.96120961209611,45.828544157596326],[-60.96840968409684,45.83360988940598],[-60.98280982809828,45.8201012712469],[-60.99360993609936,45.8201012712469],[-61.00441004410044,45.823478425786675],[-61.01161011610115,45.823478425786675],[-61.026010260102595,45.81334696216737],[-61.101611016110155,45.77957541676972],[-61.12321123211231,45.76437822134079],[-61.1340113401134,45.74411529410219],[-61.13041130411304,45.747492448641964],[-61.11241112411123,45.75086960318171],[-61.11241112411123,45.74411529410219],[-61.11241112411123,45.73567240775279],[-61.11241112411123,45.72722952140336],[-61.1160111601116,45.72385236686361],[-61.126811268112675,45.72216378959371],[-61.1340113401134,45.71709805778406],[-61.14121141211412,45.712032325974405],[-61.14841148411483,45.70865517143466],[-61.14121141211412,45.703589439625006],[-61.1340113401134,45.698523707815355],[-61.08361083610836,45.690080821465955],[-61.051210512105115,45.698523707815355],[-60.94680946809467,45.75086960318171],[-60.91440914409144,45.755935334991364],[-60.874808748087474,45.752558180451615],[-60.83520835208351,45.74073813956244],[-60.80640806408064,45.720475212323834],[-60.799207992079914,45.703589439625006],[-60.80640806408064,45.690080821465955],[-60.824408244082434,45.67826078057678],[-60.84600846008459,45.6546206987984],[-60.849608496084954,45.65124354425865],[-60.849608496084954,45.64786638971887],[-60.838808388083876,45.64280065790922],[-60.8280082800828,45.641112080639346],[-60.824408244082434,45.64448923517912],[-60.8280082800828,45.649554966988774],[-60.83160831608316,45.6546206987984],[-60.81000810008099,45.663063585147825],[-60.81720817208172,45.668129316957476],[-60.78480784807847,45.668129316957476],[-60.77760777607776,45.67319504876713],[-60.76680766807668,45.6934579760057],[-60.75960759607595,45.6934579760057],[-60.74520745207451,45.685015089656304],[-60.73080730807308,45.685015089656304],[-60.73080730807308,45.69176939873583],[-60.74160741607416,45.703589439625006],[-60.73080730807308,45.71372090324431],[-60.73440734407343,45.72385236686361],[-60.74160741607416,45.73567240775279],[-60.748807488074874,45.74411529410219],[-60.74520745207451,45.761001066801015],[-60.738007380073796,45.774509684960066],[-60.72720727207272,45.78464114857937],[-60.71640716407164,45.793084034928796],[-60.698406984069834,45.79983834400832],[-60.66960669606695,45.809969807627624],[-60.65520655206552,45.8201012712469],[-60.64440644406443,45.8302327348662],[-60.63360633606335,45.84374135302528],[-60.622806228062274,45.855561393914456],[-60.60840608406083,45.86062712572411],[-60.597605976059754,45.86569285753376],[-60.56880568805687,45.88933293931211],[-60.540005400054,45.90115298020129],[-60.52200522005219,45.92479306197964],[-60.47880478804788,45.93661310286882],[-60.44640446404463,45.95349887556765],[-60.41760417604176,45.975450380076126],[-60.39960399603996,45.997401884584605],[-60.42120421204211,45.99233615277495],[-60.46440464404644,45.977138957346],[-60.49680496804967,45.95687603010742],[-60.56520565205652,45.943367411948344],[-60.622806228062274,45.91972733016999],[-60.64440644406443,45.912973021090465],[-60.6660066600666,45.899464402931386],[-60.698406984069834,45.891021516581986],[-60.70920709207091,45.891021516581986],[-60.723607236072354,45.89608724839164],[-60.73080730807308,45.90453013474104],[-60.74160741607416,45.92310448470977],[-60.748807488074874,45.92985879378929],[-60.763207632076316,45.93154737105917],[-60.774007740077394,45.92985879378929],[-60.788407884078836,45.92985879378929],[-60.7920079200792,45.939990257408596],[-60.78120781207812,45.95349887556765],[-60.71640716407164,45.98558184369543],[-60.68400684006839,46.00753334820388],[-60.6660066600666,46.01428765728343],[-60.64080640806408,46.01766481182318],[-60.622806228062274,46.02441912090271],[-60.56520565205652,46.06663355264979],[-60.50760507605075,46.090273634428144],[-60.48960489604896,46.10209367531732],[-60.43200432004319,46.14937383887403],[-60.41760417604176,46.15612814795358],[-60.40680406804067,46.16457103430298],[-60.37440374403744,46.19665400243076],[-60.35640356403563,46.20509688878016],[-60.334803348033475,46.20509688878016],[-60.31320313203132,46.20847404331994],[-60.30240302403024,46.21860550693924],[-60.29880298802988,46.23886843417782],[-60.31680316803168,46.23042554782842],[-60.33840338403384,46.225359816018766],[-60.38160381603815,46.223671238748864],[-60.39960399603996,46.21860550693924],[-60.44640446404463,46.17639107519216],[-60.60840608406083,46.07676501626909],[-60.630006300063,46.068322129919665],[-60.64080640806408,46.06663355264979],[-60.65160651606516,46.07169928445944],[-60.65520655206552,46.081830748078744],[-60.65160651606516,46.090273634428144],[-60.64080640806408,46.095339366237795],[-60.622806228062274,46.100405098047446],[-60.60120601206012,46.11560229347637],[-60.572405724057234,46.14937383887403],[-60.5040050400504,46.20003115697051],[-60.49320493204931,46.21860550693924],[-60.47520475204752,46.233802702368166],[-60.34920349203492,46.31147725678278],[-60.284402844028435,46.32836302948161],[-60.28080280802807,46.31654298859243],[-60.259202592025915,46.279394288655],[-60.20520205202051,46.242245588717594],[-60.21240212402124,46.223671238748864],[-60.29160291602916,46.15612814795358],[-60.27720277202772,46.15950530249333],[-60.27000270002699,46.166259611572855],[-60.26280262802628,46.17301392065241],[-60.25560255602555,46.17639107519216],[-60.24480244802447,46.17639107519216],[-60.234002340023395,46.17301392065241],[-60.22320223202232,46.162882457033106],[-60.21240212402124,46.14599668433428],[-60.20520205202051,46.1426195297945],[-60.19440194401943,46.15612814795358],[-60.19080190801908,46.166259611572855],[-60.19440194401943,46.17470249792228],[-60.1980019800198,46.18314538427168],[-60.20160201602016,46.193276847890985],[-60.19440194401943,46.21185119785969],[-60.172801728017276,46.23042554782842],[-60.15120151201512,46.24562274325734],[-60.13680136801368,46.2523770523369],[-60.108001080010794,46.250688475066994],[-60.082800828008274,46.24562274325734],[-60.057600576005754,46.23717985690794],[-60.0360003600036,46.223671238748864],[-60.090000900009,46.21016262058981],[-59.99279992799927,46.206785466050064],[-59.94239942399423,46.19665400243076],[-59.945999459994596,46.162882457033106],[-59.93519935199352,46.157816725223455],[-59.90279902799027,46.17301392065241],[-59.881198811988114,46.17639107519216],[-59.80919809198092,46.16963676611263],[-59.8379983799838,46.15612814795358],[-59.86319863198632,46.135865220714976],[-59.881198811988114,46.11053656166675],[-59.88479884798848,46.08014217080884],[-59.870398703987036,46.09365078896792],[-59.85239852398523,46.103782252587195],[-59.83079830798307,46.11222513893662],[-59.80919809198092,46.11560229347637],[-59.80919809198092,46.10715940712697],[-59.870398703987036,46.073387861729316],[-59.895598955989556,46.04974777995096],[-59.909999099991,46.041304893601534],[-59.95319953199531,46.03623916179191],[-59.956799567995674,46.02779627544248],[-59.94959949599496,46.01597623455331],[-59.93879938799388,46.002467616394256],[-59.920799207992076,45.99402473004483],[-59.89919899198992,45.997401884584605],[-59.85959859598596,46.005844770934004],[-59.8379983799838,46.005844770934004],[-59.83079830798307,46.002467616394256],[-59.82359823598236,45.997401884584605],[-59.83079830798307,45.99909046185448],[-59.83079830798307,45.99233615277495],[-59.83079830798307,45.978827534615874],[-59.82359823598236,45.970384648266474],[-59.80559805598055,45.96025318464717],[-59.80199801998019,45.95687603010742],[-59.80199801998019,45.94505598921822],[-59.80559805598055,45.934924525598944],[-59.81279812798128,45.92985879378929],[-59.82359823598236,45.93323594832904],[-59.86319863198632,45.934924525598944],[-59.93879938799388,45.90453013474104],[-59.96759967599675,45.90959586655069],[-59.97479974799748,45.90621871201094],[-59.981999819998194,45.90115298020129],[-59.98559985599856,45.89608724839164],[-59.98919989199892,45.88933293931211],[-59.98559985599856,45.885955784772335],[-59.981999819998194,45.87920147569281],[-59.97479974799748,45.87582432115303],[-60.1260012600126,45.86907001207351],[-60.15480154801547,45.84711850756503],[-60.15480154801547,45.83867562121563],[-60.15480154801547,45.836987043945726],[-60.147601476014756,45.83867562121563],[-60.133201332013314,45.83360988940598],[-60.11160111601116,45.823478425786675],[-60.10080100801008,45.8217898485168],[-60.08640086400864,45.8201012712469],[-60.07560075600756,45.815035539437275],[-60.072000720007196,45.80659265308785],[-60.07560075600756,45.796461189468545],[-60.07920079200791,45.793084034928796]]],[[[-62.005220052200514,46.46344921107223],[-61.976419764197644,46.4550063247228],[-61.976419764197644,46.44825201564328],[-61.994419944199436,46.43980912929385],[-62.030420304203034,46.41448047024562],[-62.16722167221671,46.35875742033949],[-62.2140221402214,46.34693737945031],[-62.228422284222844,46.345248802180436],[-62.23922239222392,46.35031453399009],[-62.250022500225,46.36044599760939],[-62.282422824228235,46.38239750211784],[-62.27162271622716,46.353691688529835],[-62.27522275222752,46.345248802180436],[-62.28962289622896,46.34187164764066],[-62.307623076230755,46.345248802180436],[-62.340023400234,46.35875742033949],[-62.358023580235795,46.36044599760939],[-62.358023580235795,46.353691688529835],[-62.34722347223472,46.345248802180436],[-62.34722347223472,46.32498587494183],[-62.332823328233275,46.313165834052654],[-62.36882368823687,46.30641152497313],[-62.383223832238315,46.30641152497313],[-62.40122401224012,46.313165834052654],[-62.36882368823687,46.28446002046465],[-62.36522365223652,46.2709514023056],[-62.39042390423904,46.26588567049595],[-62.46962469624695,46.2810828659249],[-62.49842498424984,46.27263997957547],[-62.4480244802448,46.25913136141642],[-62.42282422824228,46.24562274325734],[-62.42282422824228,46.223671238748864],[-62.43722437224372,46.21691692966934],[-62.4660246602466,46.215228352399464],[-62.51282512825128,46.21691692966934],[-62.556025560255605,46.233802702368166],[-62.57762577625776,46.23886843417782],[-62.584825848258475,46.22704839328864],[-62.54162541625416,46.215228352399464],[-62.51282512825128,46.20171973424041],[-62.49842498424984,46.18314538427168],[-62.52362523625236,46.18652253881146],[-62.5740257402574,46.206785466050064],[-62.59922599225992,46.21016262058981],[-62.59562595625955,46.20340831151029],[-62.58842588425884,46.198342579700636],[-62.58122581225811,46.19665400243076],[-62.57042570425703,46.19665400243076],[-62.57042570425703,46.18989969335124],[-62.58122581225811,46.18989969335124],[-62.5920259202592,46.18989969335124],[-62.60642606426063,46.18314538427168],[-62.58842588425884,46.17807965246203],[-62.54522545225451,46.17470249792228],[-62.530825308253085,46.16963676611263],[-62.5380253802538,46.15950530249333],[-62.54162541625416,46.14599668433428],[-62.54162541625416,46.1341766434451],[-62.54162541625416,46.127422334365576],[-62.49122491224912,46.125733757095674],[-62.47682476824768,46.12066802528602],[-62.480424804248045,46.135865220714976],[-62.49122491224912,46.14093095252463],[-62.51642516425164,46.14937383887403],[-62.48762487624876,46.152750993413804],[-62.46242462424624,46.135865220714976],[-62.45162451624516,46.10715940712697],[-62.455224552245525,46.08014217080884],[-62.458824588245875,46.08014217080884],[-62.47322473224732,46.06325639811001],[-62.480424804248045,46.059879243570265],[-62.48762487624876,46.059879243570265],[-62.505625056250565,46.059879243570265],[-62.52722527225272,46.05650208903049],[-62.556025560255605,46.04468204814131],[-62.57042570425703,46.03961631633166],[-62.57042570425703,46.032862007252135],[-62.556025560255605,46.03117342998226],[-62.509225092250915,46.01766481182318],[-62.49482494824947,46.019353389093084],[-62.46962469624695,46.02441912090271],[-62.455224552245525,46.02441912090271],[-62.484024840248395,45.99064757550505],[-62.54522545225451,45.97207322553635],[-62.685626856268556,45.96531891645682],[-62.71442714427144,45.970384648266474],[-62.72882728827288,45.970384648266474],[-62.736027360273596,45.9670074937267],[-62.746827468274674,45.95349887556765],[-62.75042750427504,45.95012172102787],[-62.75762757627575,45.95181029829777],[-62.772027720277194,45.961941761917046],[-62.77562775627756,45.96363033918695],[-62.82962829628296,45.97207322553635],[-62.847628476284754,45.978827534615874],[-62.894428944289444,46.005844770934004],[-62.880028800288,46.010910502743656],[-62.872828728287274,46.010910502743656],[-62.872828728287274,46.01766481182318],[-62.89082890828908,46.02104196636296],[-62.90522905229052,46.02610769817261],[-62.919629196291964,46.032862007252135],[-62.93042930429304,46.04299347087144],[-62.93402934029339,46.05312493449071],[-62.919629196291964,46.054813511760614],[-62.887228872288716,46.05312493449071],[-62.90882908829087,46.07169928445944],[-62.995229952299525,46.06156782084014],[-63.03123031230312,46.06663355264979],[-63.00963009630095,46.07169928445944],[-62.9880298802988,46.073387861729316],[-62.973629736297354,46.07676501626909],[-62.9520295202952,46.09196221169802],[-62.9160291602916,46.10209367531732],[-62.887228872288716,46.12911091163545],[-62.86562865628656,46.135865220714976],[-62.880028800288,46.15612814795358],[-62.894428944289444,46.157816725223455],[-62.9160291602916,46.14768526160415],[-62.93042930429304,46.1324880661752],[-62.948429484294834,46.127422334365576],[-62.95562955629556,46.144308107064404],[-62.9520295202952,46.166259611572855],[-62.92682926829268,46.17639107519216],[-62.93402934029339,46.18652253881146],[-62.948429484294834,46.193276847890985],[-62.97722977229772,46.20509688878016],[-62.9880298802988,46.19665400243076],[-62.98442984429843,46.19158827062111],[-62.98442984429843,46.188211116081334],[-62.98082980829808,46.18652253881146],[-62.97722977229772,46.18314538427168],[-62.998829988299875,46.179768229731934],[-63.024030240302395,46.18652253881146],[-63.05283052830528,46.19665400243076],[-63.10683106831068,46.21016262058981],[-63.11763117631176,46.215228352399464],[-63.11043110431103,46.223671238748864],[-63.09243092430924,46.23886843417782],[-63.08883088830888,46.24055701144769],[-63.0780307803078,46.24393416598747],[-63.074430744307435,46.24562274325734],[-63.06723067230672,46.250688475066994],[-63.06723067230672,46.255754206876645],[-63.06723067230672,46.26250851595617],[-63.06363063630636,46.26588567049595],[-63.06003060030599,46.26757424776582],[-63.049230492304915,46.26588567049595],[-63.045630456304565,46.26588567049595],[-63.0420304203042,46.2709514023056],[-63.0420304203042,46.27601713411525],[-63.0420304203042,46.282771443194775],[-63.03843038430384,46.286148597734524],[-62.98082980829808,46.304722947703254],[-62.96282962829628,46.31992014313218],[-62.98082980829808,46.31992014313218],[-63.01323013230132,46.308100102243],[-63.0420304203042,46.30134579316348],[-63.070830708307085,46.282771443194775],[-63.08163081630816,46.279394288655],[-63.096030960309605,46.27263997957547],[-63.121231212312125,46.24393416598747],[-63.13563135631355,46.23886843417782],[-63.13923139231392,46.24055701144769],[-63.16083160831607,46.25913136141642],[-63.196831968319685,46.27263997957547],[-63.175231752317515,46.23886843417782],[-63.175231752317515,46.22704839328864],[-63.200432004320035,46.223671238748864],[-63.20763207632076,46.220294084209115],[-63.225632256322555,46.206785466050064],[-63.23283232832328,46.20509688878016],[-63.272432724327246,46.20509688878016],[-63.272432724327246,46.19665400243076],[-63.21483214832148,46.19158827062111],[-63.18963189631896,46.19496542516086],[-63.175231752317515,46.21691692966934],[-63.146431464314645,46.206785466050064],[-63.14283142831428,46.198342579700636],[-63.146431464314645,46.18314538427168],[-63.17883178831788,46.171325343382506],[-63.20763207632076,46.16457103430298],[-63.23283232832328,46.14599668433428],[-63.2580325803258,46.1426195297945],[-63.28323283232832,46.14768526160415],[-63.33723337233371,46.166259611572855],[-63.373233732337326,46.171325343382506],[-63.398433984339846,46.18145680700181],[-63.412834128341274,46.18314538427168],[-63.420034200342,46.184833961541585],[-63.423634236342366,46.19496542516086],[-63.427234272342716,46.19665400243076],[-63.448834488344886,46.19665400243076],[-63.4560345603456,46.19665400243076],[-63.46683466834668,46.20509688878016],[-63.48123481234812,46.220294084209115],[-63.4920349203492,46.223671238748864],[-63.499234992349926,46.22198266147899],[-63.52083520835208,46.21353977512959],[-63.535235352353524,46.21016262058981],[-63.5460354603546,46.21353977512959],[-63.55683556835568,46.21860550693924],[-63.56763567635676,46.223671238748864],[-63.574835748357486,46.220294084209115],[-63.585635856358564,46.21691692966934],[-63.603636036360356,46.21691692966934],[-63.628836288362876,46.223671238748864],[-63.67563675636755,46.242245588717594],[-63.69363693636936,46.255754206876645],[-63.70083700837007,46.27601713411525],[-63.711637116371165,46.2895257522743],[-63.736837368373685,46.30303437043335],[-63.78363783637836,46.31992014313218],[-63.80163801638015,46.331740184021356],[-63.80523805238052,46.34356022491056],[-63.80163801638015,46.348625956720184],[-63.78363783637836,46.34187164764066],[-63.80523805238052,46.37395461576844],[-63.740437404374035,46.35706884306961],[-63.715237152371515,46.353691688529835],[-63.765637656376555,46.38239750211784],[-63.75123751237511,46.38746323392749],[-63.7440374403744,46.389151811197394],[-63.736837368373685,46.389151811197394],[-63.736837368373685,46.39590612027692],[-63.765637656376555,46.39928327481667],[-63.841238412384115,46.39759469754679],[-63.870038700387,46.40941473843597],[-63.88083880838808,46.407726161166096],[-63.888038880388805,46.40434900662632],[-63.888038880388805,46.402660429356445],[-63.89523895238952,46.40603758389622],[-63.9060390603906,46.41279189297575],[-63.90963909639096,46.416169047515496],[-63.92763927639275,46.42123477932515],[-63.93483934839348,46.42292335659505],[-63.95643956439564,46.40941473843597],[-63.988839888398886,46.39928327481667],[-64.08244082440824,46.40941473843597],[-64.11124111241112,46.407726161166096],[-64.12564125641256,46.40941473843597],[-64.13284132841328,46.416169047515496],[-64.13644136441364,46.429677665674575],[-64.13284132841328,46.443186283833626],[-64.12564125641256,46.44994059291315],[-64.11484114841149,46.443186283833626],[-64.11124111241112,46.473580674691505],[-64.11484114841149,46.51241795189881],[-64.10764107641076,46.54450092002659],[-64.07164071640716,46.55294380637599],[-64.07524075240752,46.563075269995295],[-64.07884078840787,46.56645242453507],[-64.06084060840608,46.56982957907482],[-64.06444064440645,46.57827246542425],[-64.07164071640716,46.590092506313425],[-64.07884078840787,46.598535392662825],[-64.07884078840787,46.61879831990143],[-64.07884078840787,46.62892978352073],[-64.07164071640716,46.64243840167978],[-64.12924129241291,46.598535392662825],[-64.14364143641436,46.598535392662825],[-64.15444154441543,46.603601124472476],[-64.16524165241653,46.610355433552],[-64.17964179641795,46.61373258809178],[-64.19044190441905,46.61542116536165],[-64.19764197641976,46.617109742631555],[-64.21924219242192,46.630618360790606],[-64.230042300423,46.63568409260026],[-64.32364323643236,46.63568409260026],[-64.36324363243632,46.62724120625083],[-64.38484384843848,46.62724120625083],[-64.40284402844028,46.64243840167978],[-64.41724417244173,46.682964256156964],[-64.40284402844028,46.723490110634145],[-64.37044370443704,46.758950233301704],[-64.33444334443344,46.785967469619806],[-64.29124291242913,46.80960755139819],[-64.27324273242732,46.82480474682711],[-64.2660426604266,46.84506767406572],[-64.25884258842588,46.867019178574196],[-64.2480424804248,46.8855935285429],[-64.230042300423,46.902479301241726],[-64.16164161641616,46.95651377387796],[-64.05364053640535,47.02067971013352],[-63.9960399603996,47.06795987369023],[-63.988839888398886,47.05445125553118],[-63.98523985239852,47.04769694645162],[-63.98163981639816,47.03925406010222],[-63.9960399603996,47.01054824651422],[-63.9960399603996,46.97171096930691],[-63.988839888398886,46.932873692099605],[-63.97443974439744,46.905856455781475],[-63.97443974439744,46.8940364148923],[-64.02484024840248,46.848444828605466],[-64.02844028440283,46.84169051952594],[-64.03564035640356,46.82649332409699],[-64.03924039240393,46.821427592287364],[-64.04284042840428,46.821427592287364],[-64.050040500405,46.821427592287364],[-64.05724057240572,46.81973901501746],[-64.06084060840608,46.80623039685841],[-64.06444064440645,46.807918974128285],[-64.07524075240752,46.81129612866806],[-64.07884078840787,46.812984705937936],[-64.07884078840787,46.80285324231863],[-64.08244082440824,46.794410355969234],[-64.0860408604086,46.785967469619806],[-64.09324093240932,46.77921316054028],[-64.07164071640716,46.7572616560318],[-64.05724057240572,46.7488187696824],[-64.03564035640356,46.745441615142624],[-64.0140401404014,46.7488187696824],[-63.999639996399964,46.75388450149205],[-63.98523985239852,46.75388450149205],[-63.97083970839708,46.745441615142624],[-63.97443974439744,46.7386873060631],[-63.98163981639816,46.71673580155462],[-63.960039600396,46.70829291520522],[-63.938439384393845,46.69478429704614],[-63.92043920439204,46.679587101617216],[-63.90243902439023,46.66270132891839],[-63.888038880388805,46.65088128802921],[-63.88083880838808,46.64243840167978],[-63.88083880838808,46.62892978352073],[-63.88443884438844,46.617109742631555],[-63.89523895238952,46.61542116536165],[-63.9060390603906,46.620486897171304],[-63.916839168391675,46.62892978352073],[-63.913239132391325,46.617109742631555],[-63.9060390603906,46.60866685628213],[-63.89883898838988,46.603601124472476],[-63.88443884438844,46.6019125472026],[-63.870038700387,46.603601124472476],[-63.866438664386635,46.60866685628213],[-63.866438664386635,46.61542116536165],[-63.85923859238592,46.62217547444121],[-63.862838628386285,46.62386405171108],[-63.862838628386285,46.62892978352073],[-63.85563855638556,46.63230693806048],[-63.84483844838448,46.625552628980955],[-63.837638376383765,46.61879831990143],[-63.8340383403834,46.612044010821904],[-63.837638376383765,46.60697827901225],[-63.84843848438484,46.6019125472026],[-63.84483844838448,46.59684681539295],[-63.841238412384115,46.5934696608532],[-63.837638376383765,46.590092506313425],[-63.8340383403834,46.58840392904355],[-63.8340383403834,46.57996104269412],[-63.84483844838448,46.57827246542425],[-63.85203852038519,46.5732067336146],[-63.88083880838808,46.522549415518114],[-63.89523895238952,46.51748368370846],[-63.92043920439204,46.51072937462894],[-63.942039420394195,46.500597911009635],[-63.93483934839348,46.478646406501156],[-63.92043920439204,46.492155024660235],[-63.90243902439023,46.49890933373976],[-63.85923859238592,46.505663642819286],[-63.84483844838448,46.51579510643859],[-63.8340383403834,46.51917226097834],[-63.82683826838267,46.51917226097834],[-63.81963819638196,46.51241795189881],[-63.812438124381245,46.500597911009635],[-63.812438124381245,46.48877787012046],[-63.82323823238232,46.48540071558068],[-63.8340383403834,46.48202356104093],[-63.8340383403834,46.47526925196141],[-63.83043830438304,46.46851494288188],[-63.82323823238232,46.460072056532454],[-63.812438124381245,46.45669490199268],[-63.72963729637296,46.443186283833626],[-63.7080370803708,46.4448748611035],[-63.69723697236972,46.45669490199268],[-63.711637116371165,46.47695782923128],[-63.73323733237332,46.495532179199984],[-63.73323733237332,46.51072937462894],[-63.70083700837007,46.51917226097834],[-63.70083700837007,46.52592657005789],[-63.72243722437224,46.53099230186754],[-63.72963729637296,46.532680879137416],[-63.711637116371165,46.558009538185644],[-63.67563675636755,46.568141001804946],[-63.639636396363954,46.56645242453507],[-63.535235352353524,46.54450092002659],[-63.52083520835208,46.536058033677165],[-63.51723517235172,46.53436945640729],[-63.513635136351354,46.532680879137416],[-63.502835028350276,46.532680879137416],[-63.49563495634956,46.53099230186754],[-63.4920349203492,46.527615147327765],[-63.49563495634956,46.522549415518114],[-63.49563495634956,46.51917226097834],[-63.49563495634956,46.51241795189881],[-63.499234992349926,46.505663642819286],[-63.499234992349926,46.49890933373976],[-63.49563495634956,46.492155024660235],[-63.48123481234812,46.492155024660235],[-63.4560345603456,46.46682636561198],[-63.44523445234452,46.46682636561198],[-63.43083430834308,46.48371213831081],[-63.427234272342716,46.497220756469886],[-63.438034380343794,46.505663642819286],[-63.463234632346314,46.505663642819286],[-63.438034380343794,46.51241795189881],[-63.398433984339846,46.51241795189881],[-63.362433624336234,46.50735222008916],[-63.333633336333364,46.49890933373976],[-63.31923319233192,46.48877787012046],[-63.31203312033119,46.478646406501156],[-63.31203312033119,46.465137788342105],[-63.30483304833048,46.451629170183054],[-63.301233012330115,46.451629170183054],[-63.27963279632796,46.43980912929385],[-63.26523265232652,46.4263005111348],[-63.2580325803258,46.42292335659505],[-63.250832508325075,46.429677665674575],[-63.24363243632436,46.41279189297575],[-63.23643236432363,46.407726161166096],[-63.22923229232292,46.40941473843597],[-63.21483214832148,46.416169047515496],[-63.21483214832148,46.4178576247854],[-63.21123211232111,46.42123477932515],[-63.20763207632076,46.4263005111348],[-63.2040320403204,46.429677665674575],[-63.19323193231932,46.43136624294445],[-63.08163081630816,46.42123477932515],[-62.9520295202952,46.424611933864924],[-62.85122851228512,46.438120552023975],[-62.84042840428404,46.43136624294445],[-62.83322833228331,46.41954620205527],[-62.822428224282234,46.41448047024562],[-62.811628116281156,46.429677665674575],[-62.818828188281884,46.438120552023975],[-62.76482764827648,46.44825201564328],[-62.584825848258475,46.429677665674575],[-62.584825848258475,46.438120552023975],[-62.67842678426784,46.44825201564328],[-62.70362703627036,46.45669490199268],[-62.67482674826748,46.465137788342105],[-62.610026100260995,46.46682636561198],[-62.584825848258475,46.478646406501156],[-62.56682566825668,46.470203520151756],[-62.54162541625416,46.47189209742163],[-62.51642516425164,46.47526925196141],[-62.358023580235795,46.478646406501156],[-62.26442264422644,46.473580674691505],[-62.18522185221852,46.487089292850584],[-62.09882098820988,46.48371213831081],[-62.005220052200514,46.46344921107223]]],[[[-64.320043200432,49.79163501001102],[-64.33444334443344,49.815275091789374],[-64.36684366843669,49.82540655540868],[-64.38844388443884,49.81865224632915],[-64.3740437404374,49.7950121645508],[-64.39924399243992,49.798389319090546],[-64.42444424444244,49.80852078270985],[-64.4460444604446,49.8237179781388],[-64.45684456844567,49.83891517356773],[-64.47124471244712,49.85242379172681],[-64.49644496444964,49.85917810080633],[-64.51084510845108,49.86762098715573],[-64.48924489244892,49.891261068934085],[-64.44964449644496,49.909835418902816],[-64.35244352443524,49.926721191601644],[-64.29484294842948,49.931786923411295],[-64.26964269642696,49.93009834614139],[-64.25884258842588,49.931786923411295],[-64.24444244442444,49.93685265522092],[-64.23724237242372,49.945295541570346],[-64.230042300423,49.95036127338],[-64.2120421204212,49.95204985064987],[-64.13284132841328,49.95036127338],[-64.02844028440283,49.92165545979199],[-63.999639996399964,49.918278305252215],[-63.992439924399235,49.91658972798234],[-63.94563945639456,49.896326800743736],[-63.69723697236972,49.86762098715573],[-63.603636036360356,49.850735214456904],[-63.513635136351354,49.84566948264725],[-63.373233732337326,49.828783709948425],[-63.20763207632076,49.78994643274115],[-63.124831248312475,49.78319212366159],[-63.045630456304565,49.75448631007359],[-62.96282962829628,49.74097769191454],[-62.937629376293756,49.72915765102536],[-62.90522905229052,49.70214041470723],[-62.894428944289444,49.69707468289758],[-62.847628476284754,49.69876326016748],[-62.77562775627756,49.668368869309575],[-62.75762757627575,49.664991714769826],[-62.73242732427323,49.66330313749992],[-62.70722707227071,49.659925982960175],[-62.68922689226892,49.65317167388065],[-62.617226172261724,49.62108870575287],[-62.58842588425884,49.61264581940344],[-62.534425344253435,49.60420293305404],[-62.51282512825128,49.59238289216486],[-62.47682476824768,49.561988501306985],[-62.46962469624695,49.56029992403708],[-62.455224552245525,49.55861134676721],[-62.4480244802448,49.55523419222743],[-62.44442444424443,49.55016846041778],[-62.44442444424443,49.5383484195286],[-62.44082440824408,49.534971264988855],[-62.39762397623976,49.49613398778155],[-62.38682386823868,49.491068255971896],[-62.3760237602376,49.48937967870202],[-62.354423544235445,49.49275683324177],[-62.340023400234,49.491068255971896],[-62.31122311223112,49.472493906003194],[-62.30042300423004,49.46911675146342],[-62.27522275222752,49.46742817419354],[-62.26442264422644,49.46573959692367],[-62.253622536225365,49.458985287844115],[-62.22482224822248,49.43027947425611],[-62.221222212222116,49.428590896986236],[-62.2140221402214,49.42183658790671],[-62.203222032220324,49.41339370155728],[-62.19242192421923,49.41170512428741],[-62.178021780217804,49.410016547017534],[-62.13482134821348,49.396507928858455],[-62.019620196201956,49.388065042509055],[-62.005220052200514,49.38468788796928],[-61.97281972819728,49.366113538000576],[-61.951219512195124,49.352604919841525],[-61.94041940419403,49.34922776530175],[-61.90441904419043,49.3542934971114],[-61.88281882818828,49.3542934971114],[-61.86481864818647,49.33740772441257],[-61.818018180181795,49.30870191082457],[-61.82521825218252,49.295193292665516],[-61.818018180181795,49.28675040631609],[-61.78921789217891,49.27324178815704],[-61.78561785617856,49.268176056347386],[-61.7820178201782,49.25297886091843],[-61.77841778417783,49.24622455183891],[-61.77121771217712,49.24284739729913],[-61.74961749617496,49.232715933679856],[-61.73881738817387,49.22089589279068],[-61.710017100171,49.18374719285325],[-61.68481684816848,49.165172842884544],[-61.65961659616596,49.151664224725465],[-61.67041670416704,49.14153276110619],[-61.692016920169195,49.129712720217015],[-61.70281702817027,49.12295841113746],[-61.70641706417064,49.111138370248284],[-61.70641706417064,49.102695483898884],[-61.70641706417064,49.09762975208923],[-61.72801728017279,49.09594117481936],[-61.7460174601746,49.09762975208923],[-61.75681756817568,49.09762975208923],[-61.81081810818108,49.06892393850123],[-61.82521825218252,49.0706125157711],[-61.86481864818647,49.08243255666028],[-61.88281882818828,49.08412113393018],[-62.052020520205204,49.07398967031088],[-62.131221312213114,49.08243255666028],[-62.246422464224636,49.067235361231354],[-62.27522275222752,49.07230109304098],[-62.304023040230405,49.07905540212053],[-62.3220232202322,49.09256402027958],[-62.34362343623435,49.102695483898884],[-62.41562415624156,49.11282694751819],[-62.505625056250565,49.138155606566414],[-62.68202682026819,49.14828707018572],[-62.88362883628835,49.1972558110123],[-63.09243092430924,49.232715933679856],[-63.16443164431644,49.263110324537735],[-63.21123211232111,49.27324178815704],[-63.276032760327595,49.31545621990409],[-63.333633336333364,49.32389910625352],[-63.362433624336234,49.34078487895235],[-63.384033840338404,49.347539188031874],[-63.402034020340196,49.3542934971114],[-63.463234632346314,49.35935922892105],[-63.585635856358564,49.38975361977893],[-63.574835748357486,49.40495081520788],[-63.585635856358564,49.418459433366934],[-63.603636036360356,49.43365662879589],[-63.614436144361434,49.44885382422484],[-63.614436144361434,49.46742817419354],[-63.6180361803618,49.48431394689237],[-63.62523625236253,49.49782256505142],[-63.639636396363954,49.513019760480375],[-63.67563675636755,49.54172557406838],[-63.765637656376555,49.602514355784166],[-63.9240392403924,49.6751231783891],[-64.05724057240572,49.71396045559641],[-64.17964179641795,49.74097769191454],[-64.3020430204302,49.779814969121844],[-64.320043200432,49.79163501001102]]],[[[-159.84339843398433,-79.34906601334788],[-159.5661956619566,-79.43180629957213],[-159.55899558995588,-79.43518345411191],[-159.55539555395555,-79.44024918592154],[-159.54819548195482,-79.45038064954085],[-159.54459544595446,-79.45375780408061],[-159.53739537395373,-79.45713495862037],[-159.52659526595266,-79.46220069043002],[-159.51939519395194,-79.46557784496979],[-159.50859508595084,-79.48246361766861],[-159.50139501395014,-79.48584077220838],[-159.49419494194942,-79.48921792674815],[-159.46539465394653,-79.49090650401803],[-159.33579335793357,-79.52805520395545],[-159.32139321393214,-79.53649809030486],[-159.3249932499325,-79.54662955392416],[-159.33579335793357,-79.55169528573381],[-159.35019350193502,-79.55338386300369],[-159.37539375393754,-79.55000670846393],[-159.2529925299253,-79.58208967659169],[-159.2349923499235,-79.58884398567123],[-159.21339213392133,-79.60235260383028],[-159.2061920619206,-79.61754979925924],[-159.2169921699217,-79.63443557195806],[-159.2061920619206,-79.64456703557735],[-159.1881918819188,-79.65300992192677],[-158.9757897578976,-79.72224158999197],[-158.95778957789577,-79.7391273626908],[-158.96138961389613,-79.74588167177032],[-158.9757897578976,-79.75432455811973],[-158.97938979389795,-79.76276744446915],[-158.9757897578976,-79.76614459900891],[-158.9649896498965,-79.7678331762788],[-158.9541895418954,-79.76952175354867],[-158.99018990189902,-79.78978468078726],[-159.00459004590044,-79.79485041259692],[-159.029790297903,-79.79991614440657],[-159.0369903699037,-79.80329329894633],[-159.05139051390515,-79.81342476256563],[-159.05859058590585,-79.8168019171054],[-159.06939069390694,-79.81849049437527],[-159.479794797948,-79.82693338072468],[-159.890198901989,-79.83706484434398],[-160.30060300603006,-79.8455077306934],[-160.71460714607147,-79.85395061704281],[-161.17541175411753,-79.79316183532704],[-161.63621636216362,-79.73237305361125],[-162.0970209702097,-79.67158427189548],[-162.55782557825577,-79.6107954901797],[-163.01863018630186,-79.55000670846393],[-163.4830348303483,-79.48921792674815],[-163.56943569435694,-79.4554463813505],[-163.93663936639365,-79.41154337233354],[-164.159841598416,-79.33386881791894],[-164.30024300243002,-79.30178584979117],[-164.32544325443254,-79.28658865436222],[-164.31824318243181,-79.28827723163211],[-164.2750427504275,-79.28152292255258],[-164.2210422104221,-79.28490007709235],[-164.23544235442355,-79.27308003620317],[-164.24624246242462,-79.26294857258387],[-164.29664296642966,-79.2308656044561],[-164.3038430384304,-79.2207341408368],[-164.30024300243002,-79.20891409994762],[-164.28944289442893,-79.2021597908681],[-164.28224282242823,-79.19878263632833],[-164.2750427504275,-79.19371690451868],[-164.27864278642787,-79.17851970908973],[-164.28944289442893,-79.1430595864222],[-164.28944289442893,-79.13630527734267],[-164.2858428584286,-79.1329281228029],[-164.2750427504275,-79.12617381372337],[-164.27144271442714,-79.12110808191372],[-164.27144271442714,-79.11604235010407],[-164.27144271442714,-79.10928804102454],[-164.2750427504275,-79.09915657740524],[-164.23544235442355,-79.09915657740524],[-164.2138421384214,-79.09577942286548],[-164.2030420304203,-79.0839593819763],[-164.2030420304203,-79.07045076381723],[-164.21744217442173,-79.05863072292806],[-164.2318423184232,-79.04849925930877],[-164.24624246242462,-79.04343352749912],[-164.2390423904239,-79.04005637295936],[-164.2138421384214,-79.03161348660994],[-164.2030420304203,-79.02317060026053],[-164.1778417784178,-79.00290767302194],[-164.16344163441636,-78.9961533639424],[-164.1490414904149,-78.99277620940263],[-163.99063990639905,-78.9674475503544],[-163.98343983439835,-78.96575897308452],[-163.97623976239763,-78.96069324127487],[-163.96543965439653,-78.95225035492545],[-163.95823958239583,-78.94887320038569],[-163.940239402394,-78.94380746857604],[-163.79263792637926,-78.93367600495674],[-163.77823778237783,-78.93029885041697],[-163.77463774637746,-78.92185596406756],[-163.83223832238323,-78.90665876863862],[-163.81783817838178,-78.89821588228921],[-163.7710377103771,-78.8880844186699],[-163.7350373503735,-78.87119864597108],[-163.72423724237242,-78.86782149143131],[-163.69183691836918,-78.86444433689155],[-163.6810368103681,-78.86275575962166],[-163.63783637836377,-78.84418140965296],[-163.4830348303483,-78.8104098642553],[-163.47223472234722,-78.80196697790589],[-163.29943299432995,-78.77326116431789],[-163.26343263432634,-78.75806396888893],[-163.27423274232743,-78.7529982370793],[-163.310233102331,-78.72091526895152],[-163.24183241832418,-78.70571807352258],[-162.7990279902799,-78.72935815530093],[-162.35262352623528,-78.7529982370793],[-162.34182341823418,-78.75468681434917],[-162.33462334623346,-78.75975254615882],[-162.32022320223203,-78.77326116431789],[-162.3130231302313,-78.77832689612754],[-162.2950229502295,-78.78339262793718],[-162.1438214382144,-78.79183551428659],[-161.76221762217622,-78.87626437778073],[-161.38061380613806,-78.95900466400498],[-161.35541355413554,-78.97420185943392],[-161.35181351813517,-78.9775790139737],[-161.36621366213663,-78.98264474578335],[-161.37341373413733,-78.98602190032311],[-161.37341373413733,-78.99108763213275],[-161.36261362613627,-78.9961533639424],[-160.94140941409415,-79.09240226832571],[-160.520205202052,-79.18696259543914],[-160.29340293402933,-79.26632572712363],[-160.11340113401133,-79.29334296344176],[-159.99459994599945,-79.32711450883941],[-159.84339843398433,-79.34906601334788]]],[[[169.27189271892718,-77.4544823165395],[169.30789307893082,-77.4646137801588],[169.34029340293404,-77.47981097558774],[169.35829358293586,-77.49838532555644],[169.36549365493659,-77.52202540733481],[169.3186931869319,-77.53722260276375],[169.0486904869049,-77.56930557089152],[168.91188911889122,-77.6300943526073],[168.87228872288722,-77.64022581622659],[168.4006840068401,-77.69594886613272],[168.08748087480876,-77.64529154803624],[167.74907749077494,-77.64529154803624],[167.40707407074075,-77.64360297076635],[167.34587345873462,-77.66724305254472],[167.28467284672848,-77.70608032975201],[167.25587255872563,-77.71621179337131],[167.06867068670687,-77.74491760695932],[166.89226892268925,-77.79388634778591],[166.77706777067772,-77.8445436658824],[166.67626676266764,-77.85974086131134],[166.66546665466655,-77.85805228404146],[166.6150661506615,-77.83610077953298],[166.65106651066515,-77.80908354321487],[166.7878678786788,-77.77024626600756],[166.8670686706867,-77.7179003706412],[166.89226892268925,-77.71283463883155],[166.51066510665106,-77.72127752518097],[166.4530645306453,-77.70945748429179],[166.51066510665106,-77.70439175248214],[166.62946629466296,-77.70608032975201],[166.68346683466837,-77.69594886613272],[166.8130681306813,-77.69088313432307],[166.88146881468816,-77.67568593889413],[166.89586895868962,-77.67568593889413],[166.87426874268743,-77.67062020708448],[166.38826388263885,-77.61320857990847],[166.36666366663667,-77.60645427082893],[166.3486634866349,-77.59801138447952],[166.31626316263163,-77.57774845724093],[166.29826298262986,-77.56930557089152],[166.28026280262804,-77.56592841635175],[166.23346233462337,-77.56761699362164],[166.21546215462155,-77.56423983908188],[166.1758617586176,-77.53722260276375],[166.1650616506165,-77.53553402549386],[166.21546215462155,-77.52033683006492],[166.37026370263703,-77.49838532555644],[166.40266402664025,-77.48487670739739],[166.47826478264784,-77.43084223476114],[166.65466654666545,-77.36329914396583],[166.67626676266764,-77.35992198942607],[166.6006660066601,-77.3362819076477],[166.57546575465756,-77.33290475310794],[166.5466654666547,-77.31264182586935],[166.39906399063995,-77.26705023958252],[166.4530645306453,-77.21301576694627],[166.52506525065252,-77.18262137608838],[166.679866798668,-77.16404702611968],[166.82746827468276,-77.16066987157991],[166.97506975069751,-77.18262137608838],[167.02907029070292,-77.20457288059686],[167.0866708667087,-77.2400330032644],[167.11187111871118,-77.28224743501146],[167.0650706507065,-77.31601898040911],[167.06867068670687,-77.31601898040911],[167.07227072270723,-77.31601898040911],[167.06867068670687,-77.317707557679],[167.1406714067141,-77.34134763945735],[167.5690756907569,-77.41395646206232],[167.89307893078933,-77.39200495755384],[168.22068220682206,-77.37174203031525],[168.68148681486815,-77.40213642117314],[169.14229142291424,-77.43253081203102],[169.27189271892718,-77.4544823165395]]],[[[-120.2610026100261,-73.92704439975454],[-120.26820268202681,-73.9304215542943],[-120.28980289802898,-73.94561874972325],[-120.2970029700297,-73.95237305880278],[-120.25740257402575,-73.95912736788232],[-120.23940239402394,-73.96757025423173],[-120.23580235802358,-73.98107887239078],[-120.24300243002429,-73.9895217587402],[-120.25380253802538,-73.99458749054985],[-120.27540275402754,-74.00303037689926],[-120.6390063900639,-74.07563919950422],[-121.00261002610026,-74.14824802210917],[-121.02781027810278,-74.15669090845859],[-121.04581045810457,-74.16682237207789],[-121.0530105301053,-74.17695383569718],[-121.0530105301053,-74.193839608396],[-121.05661056610566,-74.2039710720153],[-121.03861038610387,-74.21579111290448],[-121.0350103501035,-74.22254542198401],[-121.03861038610387,-74.23098830833342],[-121.04941049410493,-74.23267688560331],[-121.07461074610745,-74.23267688560331],[-121.08541085410855,-74.23436546287319],[-121.08181081810818,-74.24449692649249],[-121.05661056610566,-74.25631696738166],[-121.04941049410493,-74.26475985373108],[-121.06021060210603,-74.2715141628106],[-121.07101071010709,-74.27489131735038],[-121.06021060210603,-74.2833342036998],[-120.97020970209701,-74.29853139912873],[-120.94860948609485,-74.30697428547815],[-120.94500945009449,-74.30866286274804],[-121.09981099810997,-74.34750013995533],[-121.48141481414814,-74.36945164446381],[-121.8630186301863,-74.39140314897229],[-122.24462244622447,-74.41335465348075],[-122.46062460624606,-74.3795831080831],[-122.57222572225723,-74.38633741716264],[-122.62622626226262,-74.38127168535298],[-122.68742687426874,-74.36607448992405],[-122.90342903429034,-74.33736867633604],[-122.93582935829357,-74.32554863544686],[-122.98982989829898,-74.29853139912873],[-123.01143011430113,-74.27826847189014],[-123.00423004230042,-74.2630712764612],[-123.02943029430294,-74.24787408103225],[-122.99342993429934,-74.23436546287319],[-122.95382953829538,-74.22929973106355],[-122.7630276302763,-74.22592257652377],[-122.73062730627306,-74.21579111290448],[-122.73782737827378,-74.20734822655507],[-122.7450274502745,-74.2039710720153],[-122.77022770227703,-74.20059391747554],[-122.79542795427955,-74.193839608396],[-122.80982809828097,-74.18708529931648],[-122.83142831428314,-74.16682237207789],[-122.93942939429394,-74.13980513575976],[-122.94662946629467,-74.1347394039501],[-122.9430294302943,-74.12798509487058],[-122.94662946629467,-74.11447647671152],[-122.94662946629467,-74.11109932217175],[-122.92502925029251,-74.09083639493316],[-122.91062910629105,-74.0874592403934],[-122.89622896228963,-74.08577066312351],[-122.86382863828638,-74.08577066312351],[-122.82062820628207,-74.07901635404399],[-122.8170281702817,-74.07563919950422],[-122.8170281702817,-74.06381915861503],[-122.80262802628026,-74.0587534268054],[-122.75582755827558,-74.05706484953551],[-122.74862748627487,-74.05537627226562],[-122.7450274502745,-74.05199911772586],[-122.7450274502745,-74.04524480864633],[-122.75222752227522,-74.03342476775715],[-122.75222752227522,-74.02667045867761],[-122.75222752227522,-74.02329330413785],[-122.7450274502745,-74.01991614959809],[-122.74142741427414,-74.0182275723282],[-122.74142741427414,-74.01653899505833],[-122.74142741427414,-74.01147326324867],[-122.7450274502745,-74.00978468597879],[-122.7450274502745,-74.00809610870891],[-122.74142741427414,-74.00303037689926],[-122.73782737827378,-73.9996532223595],[-122.73062730627306,-73.99796464508961],[-122.60822608226081,-73.96419309969195],[-122.55422554225542,-73.96081594515219],[-122.3490234902349,-73.92535582248466],[-122.33102331023309,-73.91691293613525],[-122.32742327423274,-73.91522435886536],[-122.36342363423634,-73.90678147251595],[-122.43542435424354,-73.90002716343642],[-122.59022590225902,-73.90678147251595],[-122.93582935829357,-73.87976423619783],[-122.9430294302943,-73.87638708165807],[-122.95022950229503,-73.86963277257853],[-122.95382953829538,-73.862878463499],[-122.95742957429573,-73.85612415441946],[-122.9610296102961,-73.84768126807005],[-122.97182971829719,-73.83923838172063],[-122.98622986229861,-73.834172649911],[-123.01863018630186,-73.83079549537122],[-123.34983349833499,-73.84768126807005],[-123.34983349833499,-73.84599269080017],[-123.34983349833499,-73.83923838172063],[-123.34983349833499,-73.83586122718087],[-123.3390333903339,-73.83079549537122],[-123.24903249032491,-73.8240411862917],[-123.23823238232382,-73.82066403175193],[-123.2310323103231,-73.81559829994228],[-123.23463234632345,-73.80546683632298],[-123.24903249032491,-73.79702394997358],[-123.27783277832779,-73.78520390908439],[-123.28863288632886,-73.7750724454651],[-123.28503285032849,-73.76325240457592],[-123.27423274232743,-73.75312094095662],[-123.19143191431914,-73.70752935466979],[-123.11943119431194,-73.68220069562155],[-123.06543065430654,-73.67544638654202],[-122.66942669426695,-73.67882354108178],[-122.27342273422734,-73.68220069562155],[-122.05742057420574,-73.7159722410192],[-121.60021600216001,-73.73285801371803],[-121.1430114301143,-73.74974378641686],[-120.68580685806859,-73.76662955911569],[-120.54180541805418,-73.75312094095662],[-120.43020430204302,-73.77338386819521],[-120.37620376203762,-73.79702394997358],[-120.37980379803798,-73.83079549537122],[-120.39420394203941,-73.84092695899052],[-120.41580415804158,-73.84768126807005],[-120.69660696606965,-73.86794419530864],[-120.72540725407254,-73.87807565892794],[-120.73620736207363,-73.87976423619783],[-120.64620646206461,-73.89665000889666],[-120.28620286202862,-73.91691293613525],[-120.2610026100261,-73.92704439975454]]],[[[-127.47187471874719,-73.54880309130081],[-127.43947439474394,-73.54204878222129],[-127.41787417874178,-73.53529447314176],[-127.41427414274142,-73.52516300952246],[-127.42147421474215,-73.51840870044293],[-127.42147421474215,-73.50996581409352],[-127.42147421474215,-73.5015229277441],[-127.42147421474215,-73.49308004139469],[-127.42507425074251,-73.48632573231515],[-127.42867428674288,-73.48294857777539],[-127.4430744307443,-73.47788284596574],[-127.47187471874719,-73.4626856505368],[-127.48627486274862,-73.45086560964762],[-127.49347493474934,-73.44073414602832],[-127.49707497074971,-73.42891410513914],[-127.48987489874898,-73.42384837332949],[-127.42507425074251,-73.39851971428125],[-127.37467374673747,-73.35799385980407],[-127.30267302673028,-73.31746800532689],[-127.22707227072272,-73.29213934627865],[-127.14787147871479,-73.2769421508497],[-127.10827108271083,-73.2769421508497],[-127.0758707587076,-73.29045076900876],[-127.08307083070831,-73.29551650081841],[-127.10467104671046,-73.30227080989795],[-127.11547115471154,-73.30564796443771],[-127.0290702907029,-73.30902511897747],[-126.7770677706777,-73.28876219173888],[-126.52866528665287,-73.26849926450029],[-126.10386103861038,-73.29551650081841],[-126.08586085860858,-73.30395938716782],[-126.0030600306003,-73.35123955072454],[-125.94185941859419,-73.37656820977278],[-125.59985599855997,-73.42891410513914],[-125.56745567455675,-73.44411130056808],[-125.5710557105571,-73.46099707326691],[-125.59985599855997,-73.47957142323563],[-125.62865628656286,-73.49476861866457],[-125.6250562505625,-73.50321150501398],[-125.6070560705607,-73.51672012317304],[-125.52065520655206,-73.56062313218999],[-125.47025470254702,-73.5791974821587],[-125.2470524705247,-73.61128045028647],[-125.22545225452254,-73.62141191390577],[-125.21105211052111,-73.63998626387448],[-125.21105211052111,-73.66024919111308],[-125.22185221852217,-73.68051211835167],[-125.24345243452434,-73.69233215924085],[-125.26865268652686,-73.69908646832037],[-125.72945729457294,-73.7159722410192],[-125.82665826658265,-73.70415220013003],[-125.8770587705877,-73.70415220013003],[-125.91305913059131,-73.72272655009873],[-125.90585905859058,-73.75480951822651],[-125.86625866258663,-73.78182675454462],[-125.77625776257761,-73.81053256813263],[-125.68265682656826,-73.82572976356158],[-125.58905589055891,-73.8240411862917],[-125.36945369453694,-73.79195821816393],[-125.26145261452615,-73.79195821816393],[-125.239852398524,-73.79702394997358],[-125.20385203852038,-73.8139097226724],[-125.18225182251823,-73.82066403175193],[-125.12825128251282,-73.8240411862917],[-125.08145081450814,-73.83248407264111],[-125.05985059850599,-73.84261553626041],[-125.05625056250562,-73.85781273168935],[-125.06345063450635,-73.86118988622911],[-125.08865088650887,-73.86456704076888],[-125.07065070650705,-73.87638708165807],[-125.04185041850418,-73.8814528134677],[-124.99144991449914,-73.8814528134677],[-124.92664926649266,-73.86963277257853],[-124.91224912249123,-73.86963277257853],[-124.93024930249302,-73.85950130895924],[-124.93384933849339,-73.85443557714959],[-124.9410494104941,-73.84430411353028],[-124.93744937449375,-73.83248407264111],[-124.93384933849339,-73.82910691810135],[-124.93744937449375,-73.82572976356158],[-124.94824948249482,-73.8139097226724],[-124.90144901449014,-73.79533537270369],[-124.75744757447575,-73.7750724454651],[-124.62784627846278,-73.73116943644814],[-124.58104581045811,-73.72441512736862],[-124.53424534245343,-73.72779228190838],[-124.51624516245163,-73.73623516825779],[-124.50904509045091,-73.75312094095662],[-124.1130411304113,-73.83248407264111],[-124.0950409504095,-73.84261553626041],[-124.0590405904059,-73.84768126807005],[-124.02664026640267,-73.85443557714959],[-124.01944019440194,-73.87638708165807],[-124.03744037440374,-73.88989569981712],[-124.21024210242102,-73.93379870883408],[-124.17784177841779,-73.96081594515219],[-124.13104131041311,-73.97601314058113],[-123.92943929439295,-74.00303037689926],[-123.94023940239401,-74.00978468597879],[-123.97263972639726,-74.02329330413785],[-123.94743947439474,-74.02329330413785],[-123.89343893438934,-74.03173619048727],[-123.87183871838718,-74.03849049956679],[-123.86463864638645,-74.04355623137644],[-123.85383853838539,-74.05706484953551],[-123.85023850238503,-74.06213058134516],[-123.83943839438393,-74.06550773588492],[-123.75303753037531,-74.07226204496445],[-123.77823778237783,-74.0874592403934],[-123.77823778237783,-74.08914781766327],[-123.77823778237783,-74.09590212674281],[-123.77823778237783,-74.10434501309223],[-123.78183781837818,-74.10941074490187],[-123.78903789037889,-74.11109932217175],[-123.8070380703807,-74.11109932217175],[-123.83583835838358,-74.11447647671152],[-123.85383853838539,-74.11954220852117],[-123.8610386103861,-74.12798509487058],[-123.8610386103861,-74.13811655848988],[-123.85383853838539,-74.14318229029952],[-123.84663846638466,-74.14655944483928],[-123.8430384303843,-74.15162517664893],[-123.84663846638466,-74.16344521753811],[-123.86463864638645,-74.17188810388753],[-123.88263882638826,-74.17695383569718],[-123.90063900639007,-74.17864241296706],[-123.8070380703807,-74.21579111290448],[-123.83223832238322,-74.23098830833342],[-123.86463864638645,-74.24449692649249],[-123.92943929439295,-74.26138269919132],[-124.00864008640086,-74.2630712764612],[-124.24624246242462,-74.2141025356346],[-124.51624516245163,-74.22085684471413],[-124.78264782647827,-74.22592257652377],[-125.20385203852038,-74.16344521753811],[-125.239852398524,-74.15162517664893],[-125.23625236252363,-74.15162517664893],[-125.23625236252363,-74.14993659937906],[-125.239852398524,-74.14993659937906],[-125.11025110251103,-74.12291936306093],[-125.41265412654127,-74.08239350858375],[-125.71865718657186,-74.04017907683668],[-125.74745747457474,-74.02498188140774],[-125.75465754657546,-74.0182275723282],[-125.75465754657546,-74.00640753143902],[-125.75825758257582,-74.00134179962937],[-125.7690576905769,-73.99458749054985],[-125.79785797857978,-73.98783318147032],[-125.81225812258123,-73.98276744966067],[-125.8050580505805,-73.98107887239078],[-125.79785797857978,-73.97939029512091],[-125.79425794257942,-73.97601314058113],[-125.79065790657907,-73.97263598604137],[-125.81225812258123,-73.96588167696184],[-125.92745927459274,-73.95743879061243],[-125.93825938259383,-73.95237305880278],[-125.96705967059671,-73.93717586337384],[-126.01026010260102,-73.9219786679449],[-126.47466474664746,-73.84261553626041],[-126.4530645306453,-73.834172649911],[-126.42066420664207,-73.8223526090218],[-126.40266402664027,-73.80208968178322],[-126.40626406264062,-73.77844960000486],[-126.42786427864279,-73.76662955911569],[-126.49626496264963,-73.75818667276627],[-126.51426514265142,-73.74298947733732],[-126.51066510665106,-73.73116943644814],[-126.49986499864998,-73.72441512736862],[-126.47106471064711,-73.7159722410192],[-126.46386463864638,-73.70584077739991],[-126.46746467464675,-73.70077504559026],[-126.5610656106561,-73.68388927289143],[-126.55026550265502,-73.67375780927213],[-126.54666546665467,-73.67038065473237],[-126.72666726667266,-73.66531492292272],[-126.83466834668346,-73.64674057295402],[-126.87426874268743,-73.64674057295402],[-126.91386913869138,-73.65518345930343],[-126.95346953469534,-73.6670035001926],[-126.98586985869858,-73.68557785016131],[-126.95346953469534,-73.71934939555896],[-126.95346953469534,-73.7261037046385],[-127.00387003870038,-73.73961232279756],[-127.23067230672306,-73.73285801371803],[-127.25227252272524,-73.72948085917827],[-127.2630726307263,-73.72441512736862],[-127.27027270272703,-73.71766081828909],[-127.27027270272703,-73.70752935466979],[-127.25947259472593,-73.67882354108178],[-127.25947259472593,-73.66531492292272],[-127.25587255872559,-73.64336341841425],[-127.22347223472235,-73.62647764571543],[-127.16587165871658,-73.60283756393706],[-127.18747187471874,-73.59439467758764],[-127.36747367473674,-73.56231170945988],[-127.42147421474215,-73.56231170945988],[-127.45027450274503,-73.56062313218999],[-127.47187471874719,-73.54880309130081]]],[[[121.11421114211146,12.19715067334262],[121.12861128611286,12.17519916883414],[121.13221132211322,12.165067705214852],[121.12861128611286,12.160001973405201],[121.11781117811177,12.158313396135313],[121.10701107011073,12.161690550675075],[121.09981099811,12.17013343702449],[121.08901089010891,12.173510591564266],[121.08541085410855,12.183642055183554],[121.07821078210782,12.19715067334262],[121.07101071010709,12.210659291501685],[121.05301053010533,12.220790755120973],[121.03861038610387,12.251185145978866],[121.06021060210605,12.278202382296982],[121.08901089010891,12.266382341407805],[121.09621096210964,12.24443083689934],[121.10701107011073,12.210659291501685],[121.1106111061111,12.203904982422145],[121.11421114211146,12.198839250612494],[121.11421114211146,12.19715067334262]]],[[[134.68994689946902,33.82782550053999],[134.72234722347224,33.83457980961951],[134.74034740347406,33.839645541429164],[134.75114751147515,33.83457980961951],[134.73314733147333,33.8261369232701],[134.7007470074701,33.81431688238092],[134.66474664746647,33.79911968695198],[134.65034650346507,33.78561106879292],[134.6179461794618,33.782233914253155],[134.6071460714607,33.76534814155433],[134.57834578345785,33.76365956428444],[134.57114571145712,33.73664232796632],[134.54594545945463,33.73326517342656],[134.5387453874539,33.71637940072773],[134.45594455944558,33.6707878144409],[134.40554405544054,33.65390204174207],[134.3767437674377,33.635327691773355],[134.38754387543878,33.62350765088418],[134.36234362343623,33.6015561463757],[134.35874358743587,33.58804752821665],[134.35154351543514,33.58129321913711],[134.3407434074341,33.57622748732746],[134.32634326343265,33.579604641867235],[134.3119431194312,33.572850332787695],[134.31554315543156,33.55596456008887],[134.3119431194312,33.542455941929816],[134.2975429754298,33.530635901040625],[134.27234272342724,33.50868439653216],[134.2435424354244,33.46140423297544],[134.21474214742148,33.3769753694813],[134.20754207542075,33.33982666954388],[134.1967419674197,33.31112085595588],[134.1967419674197,33.29761223779681],[134.18954189541898,33.270595001478696],[134.18954189541898,33.24864349697022],[134.17514175141753,33.23682345608104],[134.1571415714157,33.26890642420881],[134.1427414274143,33.292546505987175],[134.12834128341285,33.28916935144741],[134.10674106741067,33.29423508325705],[134.10674106741067,33.31449801049564],[134.08154081540818,33.33982666954388],[134.03834038340386,33.38372967856084],[134.0239402394024,33.41581264668861],[133.99513995139955,33.42425553303802],[133.969939699397,33.4360755739272],[133.94113941139415,33.459715655705565],[133.9267392673927,33.49348720110321],[133.85473854738547,33.50024151018275],[133.76473764737648,33.52050443742134],[133.739537395374,33.537390210120165],[133.67113671136713,33.52894732377075],[133.60633606336063,33.515438705611686],[133.58833588335887,33.50193008745262],[133.5451354513545,33.48673289202368],[133.4659346593466,33.454649923895914],[133.45153451534514,33.43100984211755],[133.4551345513455,33.41412406941872],[133.4407344073441,33.40230402852954],[133.41553415534156,33.39386114218013],[133.39033390333907,33.390483987640366],[133.3759337593376,33.38879541037049],[133.36513365133652,33.3871068331006],[133.3579335793358,33.38372967856084],[133.3471334713347,33.375286792211426],[133.32913329133294,33.35333528770295],[133.3219332193322,33.35164671043307],[133.32553325533257,33.36853248313189],[133.31833318333184,33.37190963767166],[133.31113311133112,33.375286792211426],[133.2931329313293,33.365155328592124],[133.2679326793268,33.34658097862342],[133.25353253532535,33.32631805138483],[133.2571325713257,33.306055124146226],[133.25353253532535,33.29423508325705],[133.25353253532535,33.285792196907636],[133.26073260732608,33.27903788782811],[133.26433264332644,33.272283578748585],[133.26433264332644,33.267217846938934],[133.2679326793268,33.26384069239917],[133.27153271532717,33.25877496058952],[133.2679326793268,33.25202065150998],[133.26433264332644,33.24864349697022],[133.26073260732608,33.245266342430455],[133.2571325713257,33.24188918789069],[133.25353253532535,33.21824910611234],[133.24273242732426,33.20642906522315],[133.22833228332286,33.19460902433397],[133.2139321393214,33.187854715254446],[133.21753217532176,33.16590321074597],[133.2247322473225,33.15914890166644],[133.21033210332104,33.15070601531703],[133.2031320313203,33.162526056206204],[133.1887318873189,33.162526056206204],[133.16353163531636,33.13719739715796],[133.13113131131314,33.08822865633137],[133.1059310593106,33.06121142001324],[133.09873098730986,33.047702801854186],[133.09873098730986,33.03250560642523],[133.09873098730986,33.02406272007582],[133.0915309153092,33.01899698826618],[133.07353073530737,33.02912845188547],[133.0519305193052,33.03925991550477],[133.01953019530197,33.02406272007582],[133.00153001530015,32.9869140201384],[132.99432994329942,32.94976532020098],[133.00873008730088,32.90417373391415],[133.00153001530015,32.86871361124662],[132.9907299072991,32.86195930216708],[132.9619296192962,32.86364787943697],[132.95472954729547,32.85182783854779],[132.95832958329584,32.83494206584896],[132.95472954729547,32.81467913861037],[132.96912969129693,32.80623625226096],[132.97632976329766,32.79441621137178],[132.98352983529838,32.78766190229224],[133.0051300513005,32.7724647068633],[133.0159301593016,32.75726751143435],[133.0267302673027,32.740381738735536],[133.0267302673027,32.72011881149693],[133.00153001530015,32.71167592514752],[132.98352983529838,32.72011881149693],[132.97632976329766,32.72518454330658],[132.9727297272973,32.73193885238612],[132.9619296192962,32.750513202354824],[132.95832958329584,32.75895608870424],[132.94032940329407,32.770776129593415],[132.91512915129152,32.777530438672954],[132.89352893528934,32.77415328413318],[132.8827288272883,32.75220177962471],[132.8719287192872,32.76908755232354],[132.85752857528576,32.76908755232354],[132.8431284312843,32.76064466597413],[132.8287282872829,32.748824625084936],[132.81072810728108,32.740381738735536],[132.79272792727926,32.740381738735536],[132.77112771127713,32.74544747054517],[132.75672756727568,32.75220177962471],[132.72792727927282,32.77415328413318],[132.709927099271,32.78935047956213],[132.66312663126632,32.77921901594283],[132.62712627126274,32.75220177962471],[132.619926199262,32.7724647068633],[132.62352623526237,32.79948194318142],[132.6451264512645,32.82649917949955],[132.66312663126632,32.85689357035743],[132.69192691926918,32.88391080667556],[132.70632706327063,32.897419424834624],[132.709927099271,32.9092394657238],[132.64152641526414,32.9092394657238],[132.62712627126274,32.90586231118404],[132.619926199262,32.90755088845391],[132.5767257672577,32.93119097023228],[132.55872558725588,32.936256702041916],[132.57312573125733,32.922748083882865],[132.55152551525515,32.92443666115274],[132.53712537125375,32.93119097023228],[132.5227252272523,32.92950239296239],[132.51912519125193,32.9092394657238],[132.5227252272523,32.90755088845391],[132.5335253352534,32.8991080021045],[132.53712537125375,32.895730847564735],[132.51912519125193,32.88897653848521],[132.50472504725047,32.89235369302497],[132.49032490324902,32.900796579374386],[132.47232472324725,32.932879547502154],[132.49392493924938,32.94976532020098],[132.48312483124835,32.97002824743957],[132.49752497524975,32.985225442868526],[132.5011250112501,32.99366832921794],[132.48312483124835,33.02406272007582],[132.47232472324725,33.040948492774646],[132.43992439924398,33.04432564731441],[132.41832418324185,33.05107995639395],[132.39672396723967,33.01730841099629],[132.38232382323827,33.01899698826618],[132.40032400324003,33.04432564731441],[132.39672396723967,33.057834265473474],[132.40752407524076,33.06965430636265],[132.45072450724507,33.05276853366382],[132.47232472324725,33.0561456882036],[132.48312483124835,33.067965729092776],[132.46152461524616,33.067965729092776],[132.4687246872469,33.083162924521716],[132.4687246872469,33.09498296541089],[132.46152461524616,33.105114429030195],[132.45072450724507,33.10849158356996],[132.45072450724507,33.11524589264948],[132.47232472324725,33.11355731537961],[132.47592475924762,33.11524589264948],[132.47952479524798,33.11862304718926],[132.4867248672487,33.125377356268785],[132.49032490324902,33.13213166534831],[132.47952479524798,33.135508819888074],[132.45072450724507,33.13719739715796],[132.43992439924398,33.14226312896761],[132.43632436324367,33.15577174712668],[132.43632436324367,33.167591788015855],[132.4579245792458,33.17434609709538],[132.45072450724507,33.18447756071468],[132.43632436324367,33.19123186979421],[132.42192421924221,33.19967475614362],[132.4147241472415,33.18954329252432],[132.40032400324003,33.187854715254446],[132.3931239312393,33.203051910683385],[132.41832418324185,33.209806219762925],[132.4471244712447,33.20474048795327],[132.4579245792458,33.20474048795327],[132.46152461524616,33.19123186979421],[132.47952479524798,33.18110040617492],[132.4867248672487,33.16928036528573],[132.50472504725047,33.18110040617492],[132.5011250112501,33.197986178873734],[132.51552515525157,33.21318337430269],[132.53712537125375,33.21824910611234],[132.5479254792548,33.22669199246175],[132.53712537125375,33.24188918789069],[132.5227252272523,33.250332074240106],[132.54072540725406,33.26215211512928],[132.5227252272523,33.26384069239917],[132.50832508325084,33.25708638331963],[132.5011250112501,33.267217846938934],[132.49032490324902,33.270595001478696],[132.48312483124835,33.27734931055822],[132.48312483124835,33.29085792871729],[132.50472504725047,33.30436654687635],[132.5227252272523,33.307743701416115],[132.52632526325266,33.31449801049564],[132.4867248672487,33.31618658776553],[132.41832418324185,33.30436654687635],[132.40032400324003,33.309432278686],[132.38952389523894,33.31618658776553],[132.3787237872379,33.31956374230529],[132.38592385923863,33.33138378319447],[132.3931239312393,33.334760937734245],[132.40752407524076,33.33644951500412],[132.4147241472415,33.34151524681377],[132.41832418324185,33.34658097862342],[132.42192421924221,33.375286792211426],[132.4039240392404,33.36177817405236],[132.38952389523894,33.375286792211426],[132.38952389523894,33.397238296719905],[132.40752407524076,33.41581264668861],[132.40752407524076,33.42256695576813],[132.3931239312393,33.42256695576813],[132.39672396723967,33.43100984211755],[132.4039240392404,33.43776415119709],[132.41112411124112,33.44114130573685],[132.42192421924221,33.44451846027661],[132.38232382323827,33.46646996478509],[132.36432364323645,33.468158542054965],[132.34632346323463,33.46646996478509],[132.3355233552336,33.46309281024533],[132.32112321123213,33.45802707843568],[132.30672306723068,33.4647813875152],[132.27792277922782,33.447895614816375],[132.25272252722527,33.44114130573685],[132.21312213122133,33.42256695576813],[132.1807218072181,33.40736976033919],[132.14832148321483,33.38879541037049],[132.1411214112141,33.37359821494154],[132.13032130321307,33.36346675132225],[132.1159211592116,33.36346675132225],[132.10152101521015,33.370221060401775],[132.10872108721088,33.3871068331006],[132.0727207272073,33.36684390586201],[132.02592025920262,33.34489240135353],[132.01152011520117,33.348269555893296],[132.02952029520299,33.365155328592124],[132.0511205112051,33.375286792211426],[132.09432094320942,33.40905833760908],[132.13392133921343,33.41918980122837],[132.1519215192152,33.41581264668861],[132.16632166321665,33.42087837849826],[132.15552155521556,33.42932126484767],[132.15552155521556,33.43776415119709],[132.169921699217,33.4462070375465],[132.19872198721987,33.454649923895914],[132.22032220322205,33.454649923895914],[132.24192241922418,33.4647813875152],[132.26352263522637,33.4647813875152],[132.29232292322922,33.48504431475379],[132.41112411124112,33.53570163285028],[132.42912429124294,33.54752167373945],[132.43632436324367,33.56440744643828],[132.43992439924398,33.572850332787695],[132.4687246872469,33.6015561463757],[132.47952479524798,33.60831045545524],[132.5011250112501,33.62519622815407],[132.6019260192602,33.6606563508216],[132.619926199262,33.67416496898066],[132.6451264512645,33.6893621644096],[132.67752677526778,33.71637940072773],[132.69552695526954,33.75690525520491],[132.69552695526954,33.78561106879292],[132.68832688326887,33.81431688238092],[132.6991269912699,33.849777005048466],[132.70632706327063,33.87679424136658],[132.71352713527136,33.90381147768471],[132.75672756727568,33.91056578676424],[132.75672756727568,33.93420586854259],[132.77112771127713,33.95615737305107],[132.77112771127713,33.99668322752825],[132.79992799928,34.01356900022708],[132.84672846728466,34.04058623654521],[132.86112861128612,34.05578343197415],[132.9187291872919,34.067603472863325],[132.92232922329225,34.08448924556215],[132.92952929529298,34.094620709181456],[132.92592925929262,34.111506481880284],[132.9079290792908,34.11319505915016],[132.8971289712897,34.11319505915016],[132.8971289712897,34.12332652276946],[132.91512915129152,34.1199493682297],[132.92952929529298,34.1199493682297],[132.94392943929438,34.14190087273816],[132.95472954729547,34.12501510003935],[132.9619296192962,34.12163794549957],[132.96552965529656,34.114883636420046],[132.97632976329766,34.10812932734052],[133.03033030330306,34.052406277434386],[133.05913059130592,33.991617495718614],[133.069930699307,33.97473172301979],[133.07713077130774,33.95953452759083],[133.08793087930883,33.949403063971545],[133.10953109531096,33.94096017762213],[133.12753127531278,33.93251729127272],[133.14553145531454,33.93082871400283],[133.17433174331745,33.94096017762213],[133.21033210332104,33.947714486701656],[133.24273242732426,33.95615737305107],[133.24993249932498,33.97473172301979],[133.2787327873279,33.9831746093692],[133.30033300333002,33.98148603209931],[133.3219332193322,33.989928918448726],[133.33993339933403,33.989928918448726],[133.36153361533616,33.9831746093692],[133.41553415534156,33.98655176390896],[133.43713437134375,33.98148603209931],[133.48753487534879,33.96628883667037],[133.51273512735128,33.964600259400484],[133.5307353073531,33.97135456848001],[133.54873548735486,33.98148603209931],[133.56313563135632,33.99330607298849],[133.5739357393574,34.006814691147554],[133.58833588335887,34.02032330930662],[133.62073620736209,34.04565196835486],[133.63513635136354,34.0608491637838],[133.64233642336427,34.0794235137525],[133.64953649536494,34.12501510003935],[133.64593645936458,34.167229531786404],[133.64233642336427,34.18411530448523],[133.63153631536318,34.1976239226443],[133.62073620736209,34.21113254080336],[133.60273602736027,34.22295258169254],[133.58833588335887,34.23139546804195],[133.5739357393574,34.24152693166124],[133.55953559535595,34.26010128162996],[133.58113581135814,34.249969818010655],[133.609936099361,34.23814977712148],[133.6387363873639,34.23308404531184],[133.6531365313653,34.23814977712148],[133.67113671136713,34.22295258169254],[133.69993699936998,34.23139546804195],[133.73233732337326,34.25165839528054],[133.75393753937539,34.27023274524926],[133.7827378273783,34.28880709521796],[133.84393843938443,34.312447176996315],[133.8727387273873,34.32764437242527],[133.88353883538838,34.33777583604456],[133.8907389073891,34.35297303147351],[133.89793897938978,34.36479307236269],[133.91233912339123,34.36985880417234],[133.91953919539196,34.36985880417234],[133.93753937539378,34.374924535981975],[133.94833948339482,34.376613113251864],[133.95553955539555,34.3732359587121],[133.969939699397,34.36479307236269],[133.98793987939882,34.361415917822924],[134.00234002340022,34.35297303147351],[134.01314013140131,34.34959587693375],[134.02034020340204,34.34959587693375],[134.03834038340386,34.354661608743385],[134.0455404554046,34.354661608743385],[134.08154081540818,34.34790729966386],[134.0887408874089,34.354661608743385],[134.09954099540994,34.376613113251864],[134.11754117541176,34.359727340553036],[134.12114121141212,34.36648164963256],[134.1247412474125,34.381678845061515],[134.12834128341285,34.39012173141093],[134.1427414274143,34.3918103086808],[134.15354153541534,34.38505599960128],[134.1571415714157,34.374924535981975],[134.16074160741607,34.3631044950928],[134.16074160741607,34.334398681504794],[134.1679416794168,34.324267217885506],[134.18234182341826,34.32089006334573],[134.18954189541898,34.32595579515538],[134.2111421114211,34.34790729966386],[134.21834218342184,34.354661608743385],[134.23634236342366,34.341152990584334],[134.26154261542615,34.334398681504794],[134.27234272342724,34.32257864061562],[134.2579425794258,34.29387282702761],[134.2975429754298,34.2752984770589],[134.30834308343083,34.27360989978902],[134.32274322743228,34.26854416797937],[134.34434344343447,34.249969818010655],[134.35874358743587,34.24659266347089],[134.38394383943842,34.249969818010655],[134.39834398343987,34.249969818010655],[134.40194401944018,34.24321550893113],[134.40554405544054,34.234772622581715],[134.41634416344164,34.22464115896243],[134.44154441544418,34.2077553862636],[134.47034470344704,34.2077553862636],[134.4955449554496,34.22464115896243],[134.56034560345603,34.22126400442265],[134.5819458194582,34.229706890772064],[134.5927459274593,34.23139546804195],[134.6071460714607,34.25165839528054],[134.61074610746107,34.23983835439137],[134.59994599946003,34.22801831350219],[134.5927459274593,34.214509695343125],[134.61074610746107,34.21619827261301],[134.6287462874629,34.23308404531184],[134.6467464674647,34.23983835439137],[134.63954639546398,34.22464115896243],[134.6287462874629,34.209443963533474],[134.62514625146252,34.20100107718406],[134.62514625146252,34.194246768104534],[134.6287462874629,34.187492459024995],[134.6071460714607,34.18411530448523],[134.6179461794618,34.18242672721536],[134.6287462874629,34.17736099540571],[134.64314643146434,34.179049572675595],[134.63594635946362,34.16554095451653],[134.62514625146252,34.150343759087576],[134.62154621546216,34.14021229546829],[134.62154621546216,34.13514656365864],[134.60354603546034,34.111506481880284],[134.60354603546034,34.08448924556215],[134.6071460714607,34.067603472863325],[134.60354603546034,34.06422631832356],[134.59634596345967,34.04565196835486],[134.5927459274593,34.03889765927532],[134.59634596345967,34.03045477292591],[134.59994599946003,34.01019184568732],[134.60354603546034,34.0017489593379],[134.61074610746107,33.99668322752825],[134.62514625146252,33.99837180479814],[134.62514625146252,34.00850326841744],[134.63594635946362,34.01019184568732],[134.65034650346507,33.98655176390896],[134.6611466114661,33.969665991210135],[134.69714697146975,33.95109164124142],[134.68994689946902,33.942648754892005],[134.70434704347042,33.93758302308237],[134.7007470074701,33.92069725038354],[134.70434704347042,33.90550005495459],[134.68994689946902,33.8953685913353],[134.68634686346866,33.886925704985885],[134.6719467194672,33.88185997317623],[134.6611466114661,33.87510566409671],[134.6467464674647,33.85315415958823],[134.6611466114661,33.8463998505087],[134.71874718747188,33.84808842777858],[134.71874718747188,33.84133411869905],[134.70794707947078,33.84133411869905],[134.69714697146975,33.8362683868894],[134.68994689946902,33.83457980961951],[134.68994689946902,33.82782550053999]]],[[[-95.21555215552155,68.86242669606622],[-95.20835208352084,68.8539838097168],[-95.21195211952119,68.84891807790714],[-95.21915219152191,68.84722950063727],[-95.22635226352263,68.8455409233674],[-95.2371523715237,68.83034372793844],[-95.25515255152551,68.81345795523961],[-95.27315273152732,68.79994933708056],[-95.37035370353703,68.75942348260338],[-95.39555395553955,68.7560463280636],[-95.43875438754387,68.73916055536478],[-95.52875528755287,68.67837177364899],[-95.56835568355683,68.68174892818877],[-95.55395553955539,68.7087661645069],[-95.54675546755468,68.72902909174547],[-95.56115561155612,68.74422628717443],[-95.59355593555935,68.7560463280636],[-95.73035730357303,68.73240624628525],[-95.7519575195752,68.73240624628525],[-95.75915759157591,68.74084913263465],[-95.77715777157772,68.74084913263465],[-95.79515795157951,68.7374719780949],[-95.80595805958059,68.72902909174547],[-95.79515795157951,68.71045474177677],[-95.79155791557915,68.6986347008876],[-95.80595805958059,68.69356896907794],[-95.83475834758347,68.68681465999842],[-95.85275852758527,68.66824031002972],[-95.85635856358563,68.64460022825133],[-95.84195841958419,68.61927156920311],[-95.88155881558815,68.61082868285371],[-95.95715957159571,68.62940303282241],[-96.00036000360004,68.62602587828263],[-96.01116011160111,68.61927156920311],[-96.04716047160471,68.59225433288498],[-96.06516065160652,68.5821228692657],[-96.08316083160831,68.57536856018615],[-96.10116101161012,68.5719914056464],[-96.12276122761227,68.5703028283765],[-96.15156151561516,68.56523709656688],[-96.29556295562955,68.48080823307274],[-96.32436324363243,68.47236534672331],[-96.51876518765188,68.44703668767508],[-96.55836558365583,68.45210241948473],[-96.63396633966339,68.47067676945343],[-96.71316713167131,68.47911965580283],[-96.87876878768787,68.51795693301014],[-96.94356943569436,68.52639981935957],[-96.98316983169832,68.53990843751862],[-97.01917019170192,68.54666274659814],[-97.03717037170371,68.55341705567767],[-97.05157051570515,68.56354851929697],[-97.0659706597066,68.57536856018615],[-97.08037080370804,68.58550002380545],[-97.10197101971019,68.5905657556151],[-97.14517145171452,68.59225433288498],[-97.10917109171092,68.55848278748732],[-97.09477094770948,68.53990843751862],[-97.10557105571056,68.52977697389932],[-97.12357123571235,68.52808839662944],[-97.15957159571596,68.51795693301014],[-97.17757177571775,68.51626835574027],[-97.19917199171991,68.51795693301014],[-97.26037260372604,68.52977697389932],[-97.32157321573216,68.5331541284391],[-97.38997389973899,68.55003990113792],[-97.4079740797408,68.55003990113792],[-97.42597425974259,68.54666274659814],[-97.4439744397444,68.53990843751862],[-97.46557465574655,68.53484270570897],[-97.56277562775628,68.56354851929697],[-97.65277652776527,68.60745152831393],[-97.68517685176852,68.61251726012358],[-97.71037710377104,68.61927156920311],[-97.76077760777608,68.65135453733089],[-97.78957789577896,68.65979742368029],[-97.83637836378364,68.65810884641041],[-97.99477994779947,68.69694612361772],[-98.04158041580415,68.70201185542737],[-98.05958059580595,68.69694612361772],[-98.08838088380884,68.6800603509189],[-98.10278102781028,68.67330604183937],[-98.12078120781207,68.67499461910924],[-98.13158131581315,68.6800603509189],[-98.14958149581496,68.69356896907794],[-98.1639816398164,68.70032327815747],[-98.21798217982179,68.71552047358642],[-98.26838268382683,68.74084913263465],[-98.289982899829,68.75773490533348],[-98.289982899829,68.77293210076243],[-98.26838268382683,68.79488360527091],[-98.25038250382504,68.81176937796974],[-98.2539825398254,68.82527799612879],[-98.289982899829,68.83878661428787],[-98.3619836198362,68.85736096425657],[-98.40518405184052,68.86073811879635],[-98.42678426784268,68.84891807790714],[-98.41958419584195,68.82696657339869],[-98.40518405184052,68.81008080069986],[-98.40158401584016,68.79150645073113],[-98.41238412384124,68.76955494622266],[-98.43758437584376,68.75435775079373],[-98.48078480784808,68.7476034417142],[-98.5239852398524,68.75098059625395],[-98.55278552785528,68.7661777916829],[-98.57078570785707,68.78812929619139],[-98.58518585185851,68.79488360527091],[-98.64278642786428,68.80332649162031],[-98.65358653586536,68.80163791435044],[-98.67158671586715,68.79319502800104],[-98.67878678786788,68.78981787346126],[-98.71838718387184,68.79150645073113],[-98.86238862388623,68.83372088247822],[-98.87318873188731,68.84385234609752],[-98.87678876788767,68.85904954152645],[-98.87318873188731,68.8742467369554],[-98.86238862388623,68.88775535511445],[-98.84798847988479,68.89619824146388],[-98.82278822788227,68.90126397327353],[-98.81918819188192,68.90632970508318],[-98.81558815588156,68.9130840141627],[-98.81558815588156,68.9215269005121],[-98.81918819188192,68.92828120959163],[-98.82638826388263,68.92996978686153],[-98.87318873188731,68.94010125048081],[-98.93438934389344,68.94347840502058],[-98.97038970389704,68.95529844590976],[-98.98118981189812,68.95529844590976],[-98.9919899198992,68.95360986863989],[-99.00279002790028,68.94854413683024],[-99.00639006390064,68.94010125048081],[-99.00279002790028,68.93165836413141],[-98.99918999189991,68.92659263232176],[-99.00279002790028,68.9215269005121],[-99.01719017190172,68.90970685962293],[-99.03519035190351,68.90970685962293],[-99.05319053190532,68.91646116870245],[-99.07479074790747,68.9215269005121],[-99.1179911799118,68.92490405505188],[-99.12519125191251,68.91983832324223],[-99.11079110791107,68.90632970508318],[-99.06039060390603,68.87931246876505],[-99.04239042390424,68.86580385060597],[-99.07119071190712,68.85736096425657],[-99.12879128791288,68.85229523244692],[-99.15759157591576,68.8455409233674],[-99.18279182791828,68.83203230520832],[-99.19359193591936,68.83034372793844],[-99.2079920799208,68.83540945974809],[-99.2439924399244,68.8556723869867],[-99.26559265592655,68.86073811879635],[-99.29439294392944,68.86918100514575],[-99.41679416794167,68.89113250965423],[-99.4419944199442,68.89957539600363],[-99.45639456394564,68.9113954368928],[-99.44559445594456,68.92659263232176],[-99.46359463594635,68.95023271410011],[-99.48519485194852,68.96880706406884],[-99.54279542795427,68.99582430038694],[-99.57519575195752,69.00595576400625],[-99.58959589595895,69.01439865035567],[-99.59679596795968,69.02621869124485],[-99.59319593195931,69.04141588667378],[-99.57879578795787,69.05323592756295],[-99.54639546395464,69.07518743207143],[-99.49239492394923,69.12077901835826],[-99.459994599946,69.13428763651734],[-99.42039420394204,69.13935336832697],[-99.35919359193592,69.13259905924744],[-99.34839348393484,69.13259905924744],[-99.33759337593375,69.13935336832697],[-99.30879308793088,69.1579277182957],[-99.29439294392944,69.16130487283544],[-99.27639276392763,69.1477962546764],[-99.25839258392584,69.15455056375592],[-99.24039240392403,69.15117340921617],[-99.22239222392224,69.14441910013662],[-99.2079920799208,69.13935336832697],[-99.18639186391863,69.13935336832697],[-99.13239132391324,69.1477962546764],[-99.00639006390064,69.13935336832697],[-98.96678966789668,69.15117340921617],[-98.93798937989379,69.16974775918487],[-98.92358923589235,69.17819064553427],[-98.90558905589056,69.17987922280417],[-98.81558815588156,69.17481349099452],[-98.78678786787867,69.17819064553427],[-98.74718747187471,69.1866335318837],[-98.71118711187111,69.20183072731263],[-98.70758707587076,69.22209365455123],[-98.70038700387003,69.22209365455123],[-98.71118711187111,69.23897942725006],[-98.71118711187111,69.25586519994889],[-98.70038700387003,69.27275097264771],[-98.67878678786788,69.28625959080676],[-98.65358653586536,69.30145678623572],[-98.63918639186392,69.3048339407755],[-98.62478624786247,69.30145678623572],[-98.59238592385924,69.28288243626702],[-98.57438574385743,69.27612812718749],[-98.55638556385564,69.27612812718749],[-98.54558545585455,69.28119385899711],[-98.52758527585276,69.29807963169594],[-98.51318513185132,69.3048339407755],[-98.49518495184951,69.30652251804537],[-98.43758437584376,69.3048339407755],[-98.40878408784087,69.30821109531524],[-98.39438394383943,69.31834255893455],[-98.39438394383943,69.3335397543635],[-98.41238412384124,69.3521141043322],[-98.45558455584556,69.37575418611056],[-98.55278552785528,69.40614857696843],[-98.60678606786068,69.44329727690587],[-98.61038610386103,69.44836300871552],[-98.60678606786068,69.45849447233482],[-98.59598595985959,69.46693735868422],[-98.58878588785888,69.47538024503365],[-98.5779857798578,69.48044597684327],[-98.56358563585636,69.48213455411317],[-98.49158491584916,69.4686259359541],[-98.4519845198452,69.46524878141435],[-98.41958419584195,69.47538024503365],[-98.53478534785347,69.499020326812],[-98.58878588785888,69.52097183132048],[-98.59598595985959,69.55812053125788],[-98.57438574385743,69.57669488122659],[-98.54918549185491,69.58513776757601],[-98.46278462784628,69.58344919030614],[-98.36918369183691,69.56825199487719],[-98.35118351183512,69.55474337671814],[-98.34038340383404,69.54461191309883],[-98.29718297182971,69.52434898586023],[-98.27558275582756,69.499020326812],[-98.18198181981819,69.46693735868422],[-98.12438124381244,69.4686259359541],[-98.109981099811,69.46524878141435],[-98.10638106381063,69.45849447233482],[-98.109981099811,69.43823154509622],[-98.09558095580955,69.42641150420704],[-98.05958059580595,69.42641150420704],[-98.02358023580236,69.43485439055644],[-98.0019800198002,69.44836300871552],[-98.15678156781567,69.50070890408188],[-98.19638196381963,69.5277261404],[-98.23958239582396,69.56487484033741],[-98.25038250382504,69.57162914941696],[-98.26118261182611,69.57500630395671],[-98.289982899829,69.58851492211576],[-98.30438304383044,69.59189207665554],[-98.34038340383404,69.59526923119532],[-98.35478354783548,69.60033496300497],[-98.36918369183691,69.60540069481459],[-98.34398343983439,69.62735219932307],[-98.33678336783368,69.63748366294237],[-98.32958329583296,69.6543694356412],[-98.3259832598326,69.66787805380025],[-98.32958329583296,69.69151813557863],[-98.32958329583296,69.7016495991979],[-98.31158311583116,69.73035541278591],[-98.28278282782827,69.75737264910404],[-98.21798217982179,69.79789850358122],[-98.19278192781927,69.80465281266078],[-98.14238142381423,69.80634138993065],[-98.11718117181171,69.8114071217403],[-98.09918099180992,69.8198500080897],[-98.06318063180632,69.86037586256688],[-98.01998019980199,69.88570452161514],[-97.97317973179732,69.89583598523444],[-97.92637926379264,69.89583598523444],[-97.8759787597876,69.88739309888501],[-97.86157861578616,69.87895021253561],[-97.82557825578256,69.86881874891631],[-97.72837728377283,69.85868728529701],[-97.70677706777067,69.85362155348736],[-97.6959769597696,69.84517866713796],[-97.6959769597696,69.83673578078853],[-97.6959769597696,69.82829289443913],[-97.69237692376923,69.81816143081983],[-97.67797677976779,69.80802996720053],[-97.63477634776348,69.79958708085113],[-97.61677616776167,69.79452134904147],[-97.47637476374763,69.77763557634265],[-97.45117451174511,69.76750411272334],[-97.44037440374403,69.74217545367512],[-97.4079740797408,69.72697825824616],[-97.34317343173431,69.70840390827746],[-97.37917379173791,69.69151813557863],[-97.45837458374584,69.68982955830873],[-97.49437494374943,69.6746323628798],[-97.42957429574295,69.62059789024354],[-97.38997389973899,69.60033496300497],[-97.37557375573755,69.59695780846519],[-97.3719737197372,69.60877784935437],[-97.36837368373683,69.62059789024354],[-97.32877328773287,69.6729437856099],[-97.31437314373143,69.68814098103886],[-97.29637296372964,69.69827244465816],[-97.28557285572856,69.69658386738826],[-97.27117271172712,69.69151813557863],[-97.22437224372243,69.6830752492292],[-97.119971199712,69.62735219932307],[-97.10197101971019,69.61215500389415],[-97.09117091170911,69.59189207665554],[-97.0839708397084,69.58176061303624],[-97.07317073170731,69.57838345849649],[-97.04437044370444,69.57331772668684],[-96.89316893168932,69.4973317495421],[-96.85716857168572,69.48720028592282],[-96.79236792367924,69.49564317227222],[-96.76716767167672,69.48382313138305],[-96.71316713167131,69.45511731779504],[-96.68076680766808,69.44836300871552],[-96.61956619566196,69.44498585417574],[-96.53316533165331,69.42810008147691],[-96.50436504365044,69.41121430877809],[-96.49716497164971,69.40783715423834],[-96.47916479164792,69.40445999969856],[-96.41076410764107,69.37406560884068],[-96.32076320763207,69.35549125887198],[-96.21996219962199,69.3132768271249],[-96.18396183961839,69.29132532261642],[-96.16956169561695,69.26261950902841],[-96.17676176761768,69.25079946813923],[-96.20556205562055,69.23053654090066],[-96.21276212762127,69.21196219093193],[-96.21636216362164,69.19338784096323],[-96.22356223562235,69.17987922280417],[-96.23436234362343,69.16974775918487],[-96.25236252362524,69.15961629556557],[-96.22356223562235,69.14104194559687],[-96.21636216362164,69.11909044108839],[-96.22356223562235,69.09545035931004],[-96.2379623796238,69.07181027753168],[-96.22716227162272,69.05492450483285],[-96.2019620196202,69.04141588667378],[-96.17316173161731,69.03297300032438],[-96.15156151561516,69.0295958457846],[-96.12276122761227,69.03297300032438],[-96.11916119161191,69.04141588667378],[-96.14796147961479,69.0684331229919],[-96.1551615516155,69.08531889569073],[-96.15156151561516,69.09713893657991],[-96.14076140761408,69.11064755473896],[-96.13716137161371,69.12584475016791],[-96.14076140761408,69.14441910013662],[-96.15156151561516,69.15455056375592],[-96.1551615516155,69.16468202737522],[-96.14436144361443,69.17987922280417],[-96.10836108361083,69.19845357277288],[-96.10116101161012,69.2052078818524],[-96.09756097560975,69.21365076820183],[-96.09036090360904,69.2237822318211],[-96.0759607596076,69.23222511817053],[-96.06876068760687,69.23560227271028],[-96.04716047160471,69.23053654090066],[-96.03636036360363,69.21702792274158],[-96.01836018360183,69.18494495461383],[-96.00036000360004,69.17143633645475],[-95.96795967959679,69.15286198648604],[-95.95355953559535,69.13935336832697],[-95.949959499595,69.13428763651734],[-95.94635946359463,69.12077901835826],[-95.94275942759427,69.11233613200886],[-95.92475924759248,69.08531889569073],[-95.93915939159392,69.08194174115096],[-95.95715957159571,69.07349885480156],[-95.97155971559715,69.06167881391238],[-95.97875978759787,69.0498587730232],[-95.97515975159752,69.0397273094039],[-95.949959499595,69.02453011397495],[-95.94275942759427,69.01271007308577],[-95.93915939159392,69.00595576400625],[-95.92475924759248,68.99751287765685],[-95.90675906759067,68.99075856857729],[-95.87795877958779,68.98569283676764],[-95.86715867158671,68.98062710495802],[-95.85635856358563,68.96880706406884],[-95.84915849158492,68.95529844590976],[-95.84555845558455,68.93165836413141],[-95.84915849158492,68.90970685962293],[-95.84555845558455,68.89113250965423],[-95.82755827558275,68.87593531422527],[-95.80955809558095,68.8742467369554],[-95.79515795157951,68.88100104603492],[-95.78435784357843,68.88944393238435],[-95.76635766357663,68.8928210869241],[-95.70515705157051,68.8843782005747],[-95.69075690756907,68.87931246876505],[-95.67635676356764,68.86918100514575],[-95.67635676356764,68.86242669606622],[-95.67635676356764,68.8539838097168],[-95.66915669156691,68.8455409233674],[-95.65835658356583,68.83540945974809],[-95.64395643956439,68.83203230520832],[-95.62955629556295,68.83034372793844],[-95.5719557195572,68.83540945974809],[-95.39555395553955,68.89788681873375],[-95.35235352353523,68.90464112781328],[-95.31275312753127,68.89619824146388],[-95.28035280352803,68.88100104603492],[-95.26595265952659,68.8742467369554],[-95.2371523715237,68.87086958241562],[-95.21915219152191,68.86580385060597],[-95.21555215552155,68.86242669606622]]],[[[-78.59058590585906,26.536548849186488],[-78.60858608586085,26.5264173855672],[-78.63018630186302,26.516285921947897],[-78.64818648186481,26.50446588105872],[-78.65538655386554,26.497711571979195],[-78.6769867698677,26.496022994709307],[-78.68778687786877,26.492645840169544],[-78.72738727387274,26.496022994709307],[-78.7669876698767,26.507843035598484],[-78.79218792187922,26.529794540106963],[-78.83538835388353,26.553434621885316],[-78.93978939789397,26.65137210353852],[-78.98658986589865,26.68683222620605],[-78.99738997389973,26.702029421635004],[-78.98658986589865,26.702029421635004],[-78.97938979389794,26.698652267095227],[-78.97218972189721,26.695275112555464],[-78.9649896498965,26.68852080347594],[-78.83538835388353,26.614223403601102],[-78.80658806588066,26.577074703663683],[-78.78498784987849,26.580451858203446],[-78.77058770587705,26.58382901274321],[-78.73818738187381,26.570320394584144],[-78.7129871298713,26.570320394584144],[-78.69138691386914,26.580451858203446],[-78.66978669786697,26.592271899092623],[-78.65898658986589,26.59902620817215],[-78.64458644586446,26.605780517251688],[-78.63738637386373,26.60915767179145],[-78.63378633786337,26.617600558140865],[-78.62298622986229,26.627732021760167],[-78.61938619386194,26.639552062649344],[-78.6049860498605,26.65137210353852],[-78.59058590585906,26.673323608047],[-78.57258572585725,26.683455071666287],[-78.57618576185762,26.695275112555464],[-78.60138601386014,26.70878373071453],[-78.6409864098641,26.715538039794055],[-78.63378633786337,26.727358080683246],[-78.60858608586085,26.75606389427125],[-78.60138601386014,26.767883935160427],[-78.59418594185942,26.810098366907496],[-78.57618576185762,26.79827832601832],[-78.55818558185581,26.778015398779715],[-78.54378543785438,26.757752471541124],[-78.54018540185402,26.739178121572422],[-78.51858518585186,26.72904665795312],[-78.43938439384394,26.700340844365115],[-78.41778417784178,26.705406576174767],[-78.37098370983709,26.695275112555464],[-78.32058320583205,26.68683222620605],[-78.28818288182882,26.685143648936176],[-78.27378273782737,26.703717998904878],[-78.25218252182522,26.712160885254292],[-78.22338223382233,26.700340844365115],[-78.20178201782018,26.696963689825353],[-78.16578165781658,26.710472307984418],[-78.11898118981189,26.703717998904878],[-78.08658086580866,26.71384946252418],[-78.05418054180541,26.725669503413357],[-78.03618036180362,26.72904665795312],[-77.97137971379713,26.72904665795312],[-77.95697956979569,26.73580096703266],[-77.94617946179461,26.745932430651948],[-77.9389793897939,26.759441048811013],[-77.93177931779317,26.77126108970019],[-77.91377913779138,26.77632682150984],[-77.91377913779138,26.757752471541124],[-77.91737917379173,26.737489544302534],[-77.9209792097921,26.717226617063943],[-77.90297902979029,26.681766494396413],[-77.90297902979029,26.663192144427697],[-77.91017910179102,26.64630637172887],[-77.92817928179281,26.639552062649344],[-77.93537935379354,26.641240639919218],[-77.95337953379533,26.654749258078283],[-77.96417964179642,26.659814989887934],[-77.9749797497975,26.66150356715781],[-78.03978039780398,26.658126412618046],[-78.1009810098101,26.64630637172887],[-78.23778237782378,26.620977712680627],[-78.29178291782918,26.620977712680627],[-78.50418504185042,26.57369754912392],[-78.52218522185221,26.570320394584144],[-78.54018540185402,26.565254662774507],[-78.5689856898569,26.54161458099614],[-78.59058590585906,26.536548849186488]]],[[[-77.8129781297813,26.906347271290812],[-77.83097830978309,26.909724425830575],[-77.91017910179102,26.904658694020924],[-77.94257942579425,26.892838653131747],[-77.96417964179642,26.892838653131747],[-77.96057960579606,26.89621580767151],[-77.95697956979569,26.8979043849414],[-77.94977949779498,26.899592962211273],[-77.91377913779138,26.92154446671975],[-77.86697866978669,26.928298775799277],[-77.77337773377734,26.926610198529403],[-77.68337683376834,26.908035848560687],[-77.62937629376293,26.904658694020924],[-77.60777607776078,26.919855889449863],[-77.55377553775537,26.8979043849414],[-77.51057510575106,26.86919857135338],[-77.32697326973269,26.70878373071453],[-77.30537305373053,26.696963689825353],[-77.28377283772838,26.690209380745813],[-77.25137251372513,26.68852080347594],[-77.25857258572586,26.676700762586762],[-77.2729727297273,26.673323608047],[-77.30537305373053,26.673323608047],[-77.29097290972909,26.64630637172887],[-77.26937269372694,26.62435486722039],[-77.24417244172442,26.61084624906134],[-77.1829718297183,26.600714785442037],[-77.15417154171541,26.58889474455286],[-77.10737107371074,26.556811776425093],[-77.07137071370714,26.538237426456377],[-77.06057060570605,26.529794540106963],[-77.04977049770497,26.516285921947897],[-77.04257042570426,26.497711571979195],[-77.04257042570426,26.48251437655024],[-77.0569705697057,26.474071490200828],[-77.0569705697057,26.467317181121302],[-77.06057060570605,26.42341417210436],[-77.0569705697057,26.40652839940553],[-77.04617046170462,26.39639693578623],[-77.03177031770318,26.389642626706703],[-77.01737017370174,26.38626547216694],[-77.03177031770318,26.362625390388573],[-77.03177031770318,26.355871081309047],[-77.02817028170281,26.34405104041987],[-77.02457024570245,26.33729673134033],[-77.0209702097021,26.332230999530694],[-77.01737017370174,26.327165267721043],[-77.01737017370174,26.31872238137163],[-77.01377013770137,26.315345226831866],[-77.01737017370174,26.31196807229209],[-77.02457024570245,26.303525185942675],[-77.03177031770318,26.29677087686315],[-77.04257042570426,26.293393722323387],[-77.06057060570605,26.290016567783624],[-77.0569705697057,26.295082299593275],[-77.05337053370533,26.310279495022215],[-77.08577085770857,26.306902340482452],[-77.11457114571145,26.290016567783624],[-77.14337143371434,26.268065063275145],[-77.16497164971649,26.246113558766666],[-77.17577175771757,26.220784899718424],[-77.1829718297183,26.144798922573713],[-77.1829718297183,26.124535995335123],[-77.19377193771938,26.068812945428988],[-77.18657186571865,25.98776123647461],[-77.19017190171901,25.916840991139537],[-77.22617226172261,25.88475802301177],[-77.25137251372513,25.898266641170835],[-77.27657276572765,25.92528387748895],[-77.29097290972909,25.957366845616733],[-77.29817298172982,25.977629772855323],[-77.31617316173161,25.99113839101439],[-77.38817388173881,26.00464700917344],[-77.40977409774098,26.02997566822168],[-77.39177391773917,26.02997566822168],[-77.37377373773738,26.035041400031332],[-77.35937359373594,26.045172863650635],[-77.34857348573486,26.070501522698876],[-77.33417334173342,26.07387867723864],[-77.31977319773198,26.075567254508513],[-77.3089730897309,26.080632986318165],[-77.2729727297273,26.117781686255583],[-77.24777247772478,26.1363560362243],[-77.22257222572226,26.146487499843587],[-77.22977229772297,26.153241808923127],[-77.23337233372334,26.16168469527254],[-77.23697236972369,26.17181615889183],[-77.23697236972369,26.183636199781006],[-77.24057240572405,26.190390508860546],[-77.24777247772478,26.19714481794007],[-77.2549725497255,26.203899127019596],[-77.25857258572586,26.2140305906389],[-77.25137251372513,26.225850631528075],[-77.24417244172442,26.23429351787749],[-77.23337233372334,26.244424981496792],[-77.22977229772297,26.257933599655843],[-77.22977229772297,26.284950835973973],[-77.23337233372334,26.298459454133038],[-77.25137251372513,26.313656649561977],[-77.2189721897219,26.355871081309047],[-77.2189721897219,26.36431396765846],[-77.22977229772297,26.376134008547638],[-77.22977229772297,26.447054253882712],[-77.21537215372153,26.447054253882712],[-77.20457204572045,26.453808562962237],[-77.19737197371974,26.46225144931165],[-77.19017190171901,26.474071490200828],[-77.18657186571865,26.47913722201048],[-77.19017190171901,26.49940014924907],[-77.18657186571865,26.50615445832861],[-77.17937179371793,26.509531612868372],[-77.17217172171722,26.512908767408135],[-77.16857168571686,26.516285921947897],[-77.15777157771578,26.53148311737685],[-77.15417154171541,26.550057467345553],[-77.16137161371613,26.56356608550462],[-77.19737197371974,26.572008971854032],[-77.2189721897219,26.58214043547332],[-77.31257312573125,26.59396047636251],[-77.33057330573305,26.6040919399818],[-77.34137341373413,26.620977712680627],[-77.35217352173521,26.64630637172887],[-77.34857348573486,26.65137210353852],[-77.34857348573486,26.659814989887934],[-77.34857348573486,26.668257876237348],[-77.36297362973629,26.681766494396413],[-77.36657366573665,26.69358653528559],[-77.37017370173702,26.698652267095227],[-77.37377373773738,26.700340844365115],[-77.3809738097381,26.695275112555464],[-77.38457384573846,26.690209380745813],[-77.39177391773917,26.68852080347594],[-77.40977409774098,26.690209380745813],[-77.42777427774277,26.695275112555464],[-77.4349743497435,26.705406576174767],[-77.42777427774277,26.720603771603706],[-77.44577445774458,26.75437531700136],[-77.48897488974889,26.823606985066547],[-77.51777517775177,26.852312798654566],[-77.53577535775358,26.862444262273854],[-77.55737557375573,26.870887148623268],[-77.57897578975789,26.870887148623268],[-77.5969759697597,26.862444262273854],[-77.61497614976149,26.85568995319433],[-77.63657636576366,26.860755685003966],[-77.69777697776978,26.877641457702794],[-77.71577715777157,26.879330034972682],[-77.75537755377553,26.879330034972682],[-77.76617766177661,26.882707189512445],[-77.7949779497795,26.899592962211273],[-77.8129781297813,26.906347271290812]]],[[[-79.28179281792818,62.27022103444415],[-79.26739267392674,62.24995810720557],[-79.26379263792637,62.23476091177662],[-79.26739267392674,62.22125229361757],[-79.2709927099271,62.20436652091874],[-79.26739267392674,62.16384066644156],[-79.2709927099271,62.14526631647283],[-79.28179281792818,62.126691966504126],[-79.31419314193141,62.091231843836596],[-79.32859328593285,62.07096891659799],[-79.33579335793358,62.04732883481964],[-79.33219332193322,62.03550879393046],[-79.32859328593285,62.015245866691885],[-79.32499324993249,61.988228630373754],[-79.32859328593285,61.98991720764363],[-79.3429934299343,61.9916057849135],[-79.35019350193501,61.99498293945328],[-79.36819368193682,62.00511440307258],[-79.3789937899379,62.00680298034246],[-79.38619386193862,62.001737248532805],[-79.38979389793897,61.9916057849135],[-79.39339393393934,61.97134285767493],[-79.40419404194041,61.957834239515876],[-79.41139411394114,61.95107993043632],[-79.42939429394293,61.93757131227727],[-79.44019440194401,61.92743984865797],[-79.44739447394474,61.91899696230857],[-79.45819458194582,61.89704545780009],[-79.47259472594726,61.88015968510126],[-79.51939519395194,61.84807671697348],[-79.51939519395194,61.83456809881443],[-79.5229952299523,61.82443663519513],[-79.52659526595265,61.814305171575825],[-79.53379533795338,61.805862285226425],[-79.53739537395374,61.78728793525772],[-79.54099540995409,61.800796553416774],[-79.54099540995409,61.77715647163842],[-79.54819548195482,61.76027069893959],[-79.56259562595626,61.74169634897089],[-79.58419584195842,61.721433421732286],[-79.61659616596165,61.70454764903346],[-79.63819638196382,61.6606446400165],[-79.65259652596525,61.653890330936974],[-79.68859688596886,61.62518451734897],[-79.72459724597246,61.61167589918992],[-79.73539735397354,61.604921590110365],[-79.74979749797498,61.58634724014166],[-79.76059760597606,61.582970085601914],[-79.8109981099811,61.574527199252486],[-79.83259832598326,61.57283862198261],[-79.85419854198541,61.582970085601914],[-79.85779857798578,61.58634724014166],[-79.85779857798578,61.596478703760965],[-79.86139861398614,61.60154443557062],[-79.86859868598685,61.60661016738027],[-79.8829988299883,61.61167589918992],[-79.89019890198901,61.61505305372967],[-79.92259922599226,61.6505131763972],[-79.95139951399514,61.68259614452498],[-79.95859958599586,61.689350453604504],[-79.96939969399693,61.69272760814428],[-80.00540005400053,61.71130195811298],[-80.04140041400413,61.71805626719251],[-80.05940059400594,61.73494203989134],[-80.05940059400594,61.74676208078051],[-80.11340113401134,61.76027069893959],[-80.13860138601386,61.76871358528899],[-80.18180181801817,61.773779317098644],[-80.20340203402034,61.79066508979747],[-80.21780217802177,61.800796553416774],[-80.22140221402213,61.80923943976617],[-80.21780217802177,61.82105948065535],[-80.24300243002429,61.83119094427465],[-80.2610026100261,61.85651960332291],[-80.25740257402573,61.88860257145066],[-80.27540275402754,61.90548834414949],[-80.28260282602825,61.917308385038666],[-80.28620286202862,61.930817003197745],[-80.2610026100261,61.98147432129423],[-80.25740257402573,62.015245866691885],[-80.25020250202502,62.050705989359415],[-80.21780217802177,62.091231843836596],[-80.21420214202142,62.13682343012343],[-80.15660156601565,62.19930078910909],[-80.12420124201242,62.21956371634769],[-80.07380073800738,62.246580952665795],[-80.03420034200342,62.278663920793576],[-79.99099990999909,62.309058311651455],[-79.97659976599766,62.34114127977924],[-79.95139951399514,62.36478136155759],[-79.93339933399334,62.37828997971664],[-79.91539915399153,62.38673286606607],[-79.86859868598685,62.40024148422512],[-79.83259832598326,62.41037294784442],[-79.81819818198181,62.406995793304674],[-79.80379803798037,62.40024148422512],[-79.78939789397893,62.39517575241547],[-79.7569975699757,62.40530721603477],[-79.73899738997389,62.40530721603477],[-79.72459724597246,62.4036186387649],[-79.71019710197102,62.39686432968537],[-79.7209972099721,62.39179859787572],[-79.7209972099721,62.385044288796195],[-79.71739717397173,62.37997855698654],[-79.70299702997029,62.37660140244677],[-79.68859688596886,62.37997855698654],[-79.6669966699667,62.393487175145594],[-79.64539645396454,62.40024148422512],[-79.62019620196202,62.4137501023842],[-79.60939609396094,62.41712725692395],[-79.5589955899559,62.420504411463725],[-79.54099540995409,62.41712725692395],[-79.54459544595446,62.41712725692395],[-79.53379533795338,62.4137501023842],[-79.51579515795157,62.40193006149502],[-79.5049950499505,62.39686432968537],[-79.4869948699487,62.393487175145594],[-79.47259472594726,62.39179859787572],[-79.45459454594545,62.38842144333594],[-79.44019440194401,62.37997855698654],[-79.43659436594366,62.371535670637115],[-79.42579425794257,62.34620701158889],[-79.41859418594186,62.34114127977924],[-79.40779407794078,62.33945270250936],[-79.36819368193682,62.32087835254063],[-79.3609936099361,62.314124043461106],[-79.35019350193501,62.29386111622253],[-79.33939339393393,62.287106807142976],[-79.32499324993249,62.28204107533335],[-79.29619296192962,62.2769753435237],[-79.28179281792818,62.27022103444415]]],[[[-82.19062190621906,62.986177796874415],[-82.10782107821078,62.96929202417559],[-81.9350193501935,62.955783406016536],[-81.8990189901899,62.945651942397234],[-81.8630186301863,62.92538901515866],[-81.8810188101881,62.91188039699958],[-81.8990189901899,62.89668320157065],[-81.90981909819098,62.87810885160192],[-81.90261902619025,62.85615734709347],[-81.92781927819277,62.84940303801392],[-81.94221942219421,62.84433730620427],[-81.95301953019529,62.83589441985487],[-81.9350193501935,62.82745153350544],[-81.93861938619386,62.817320069886165],[-81.96381963819638,62.80043429718734],[-81.94221942219421,62.77848279267886],[-81.93141931419314,62.76159701998003],[-81.92421924219242,62.74639982455108],[-81.92781927819277,62.72951405185225],[-81.93861938619386,62.71093970188355],[-81.95661956619566,62.697431083724496],[-81.99621996219962,62.68729962010519],[-82.03942039420394,62.66197096105694],[-82.07542075420754,62.65183949743766],[-82.13662136621366,62.616379374770105],[-82.16182161821618,62.607936488420705],[-82.2950229502295,62.585984983912226],[-82.3130231302313,62.57078778848327],[-82.34542345423453,62.56403347940375],[-82.36342363423634,62.553902015784445],[-82.39222392223922,62.53026193400609],[-82.4030240302403,62.51675331584704],[-82.42462424624246,62.47285030683008],[-82.62262622626226,62.39686432968537],[-82.7450274502745,62.31074688892136],[-82.89622896228963,62.2482695299357],[-83.06543065430654,62.18748074821991],[-83.13383133831339,62.17734928460061],[-83.14823148231481,62.180726439140386],[-83.15543155431554,62.19085790275969],[-83.16623166231662,62.20943225272839],[-83.1770317703177,62.21787513907779],[-83.19863198631985,62.22969517996697],[-83.25623256232562,62.2482695299357],[-83.28143281432814,62.25333526174535],[-83.41823418234182,62.23982664358627],[-83.67383673836738,62.14526631647283],[-83.70623706237062,62.143577739202954],[-83.72063720637206,62.16046351190178],[-83.71343713437135,62.23982664358627],[-83.72423724237242,62.2854182298731],[-83.7530375303753,62.31074688892136],[-83.91143911439114,62.39517575241547],[-83.94023940239403,62.42388156600347],[-83.94023940239403,62.45934168867103],[-83.90783907839078,62.491424656798785],[-83.71343713437135,62.5690992112134],[-83.67023670236702,62.607936488420705],[-83.65943659436594,62.63157657019906],[-83.65583655836558,62.63664230200871],[-83.64143641436414,62.638330879278584],[-83.58383583835838,62.66872527013649],[-83.56583565835658,62.68223388829554],[-83.55143551435513,62.69911966099437],[-83.54783547835478,62.72275974277272],[-83.55143551435513,62.732891206392026],[-83.55863558635586,62.741334092741425],[-83.55863558635586,62.75146555636073],[-83.54423544235442,62.77341706086921],[-83.53343533435334,62.80718860626686],[-83.5190351903519,62.825762956235565],[-83.47943479434794,62.84602588347417],[-83.44343443434434,62.87810885160192],[-83.41823418234182,62.891617469761],[-83.29583295832958,62.93045474696831],[-83.28863288632886,62.93214332423818],[-83.28143281432814,62.92538901515866],[-83.27423274232741,62.920323283349006],[-83.26343263432634,62.91863470607913],[-83.2310323103231,62.915257551539355],[-83.20943209432095,62.90850324245983],[-83.19143191431914,62.89499462430075],[-83.16983169831698,62.87642027433205],[-83.11943119431194,62.847714460744044],[-83.06183061830617,62.84264872893439],[-83.00063000630006,62.852780192553695],[-82.73782737827378,62.93889763331771],[-82.69462694626947,62.945651942397234],[-82.60462604626046,62.945651942397234],[-82.4210242102421,62.928766169698406],[-82.37782377823778,62.93889763331771],[-82.38142381423813,62.94734051966714],[-82.38142381423813,62.95409482874666],[-82.37782377823778,62.96084913782619],[-82.37062370623705,62.96591486963584],[-82.37782377823778,62.96591486963584],[-82.35262352623526,62.96591486963584],[-82.32742327423274,62.97098060144549],[-82.30222302223022,62.97942348779489],[-82.28062280622805,62.98955495141419],[-82.25542255422553,62.99630926049372],[-82.20862208622086,62.986177796874415],[-82.18342183421834,62.986177796874415],[-82.19062190621906,62.986177796874415]]],[[[-104.680046800468,73.62928032894507],[-104.56124561245612,73.59550878354742],[-104.50004500045,73.56680296995941],[-104.48924489244892,73.53303142456176],[-104.49644496444964,73.5279656927521],[-104.50364503645037,73.52458853821236],[-104.51804518045181,73.51276849732318],[-104.51804518045181,73.49250557008457],[-104.53964539645396,73.47899695192552],[-104.56124561245612,73.46548833376644],[-104.57924579245793,73.45029113833752],[-104.5540455404554,73.43340536563869],[-104.55044550445504,73.42665105655914],[-104.55764557645576,73.41314243840009],[-104.57924579245793,73.39456808843138],[-104.58644586445864,73.38443662481208],[-104.57924579245793,73.3624851203036],[-104.5720457204572,73.34728792487468],[-104.5720457204572,73.33209072944572],[-104.59364593645937,73.31351637947702],[-104.67284672846728,73.27299052499981],[-104.74844748447484,73.2172674750937],[-104.75924759247592,73.20038170239488],[-104.73764737647376,73.19025023877558],[-104.76284762847628,73.17336446607675],[-104.83844838448384,73.15479011610805],[-104.86724867248672,73.14128149794897],[-104.92484924849248,73.10582137528144],[-104.98964989649896,73.08049271623321],[-104.98244982449825,73.03490112994638],[-105.01485014850148,73.01463820270777],[-105.11925119251192,72.98762096638964],[-105.2020520205202,72.94371795737271],[-105.23085230852308,72.93696364829316],[-105.26325263252632,72.94034080283294],[-105.29565295652957,72.95216084372211],[-105.3280532805328,72.96060373007154],[-105.36045360453605,72.95047226645224],[-105.3280532805328,72.94202938010281],[-105.30285302853028,72.9318979164835],[-105.29925299252993,72.92176645286423],[-105.33165331653316,72.91670072105458],[-105.27765277652776,72.88799490746658],[-105.220052200522,72.8761748665774],[-105.2020520205202,72.86773198022797],[-105.2560525605256,72.86097767114845],[-105.26685266852668,72.85760051660867],[-105.27765277652776,72.85422336206892],[-105.28485284852849,72.85084620752914],[-105.29925299252993,72.85253478479905],[-105.30285302853028,72.86266624841832],[-105.31005310053101,72.87110913476775],[-105.31725317253172,72.8744862893075],[-105.33525335253353,72.8761748665774],[-105.38925389253892,72.86773198022797],[-105.38565385653857,72.87279771203762],[-105.3820538205382,72.8846177529268],[-105.3820538205382,72.88799490746658],[-105.42525425254253,72.89643779381598],[-105.44685446854469,72.9048806801654],[-105.45765457654576,72.91838929832446],[-105.46125461254613,72.93358649375341],[-105.4720547205472,72.94540653464259],[-105.48645486454865,72.95553799826189],[-105.72765727657276,73.04503259356565],[-105.78525785257852,73.08049271623321],[-105.81045810458104,73.10244422074166],[-105.82485824858249,73.11088710709109],[-105.86445864458645,73.11764141617061],[-105.88245882458824,73.12439572525014],[-105.91485914859149,73.14128149794897],[-105.90765907659076,73.15310153883814],[-105.9040590405904,73.1581672706478],[-105.89325893258932,73.16154442518757],[-105.90765907659076,73.16661015699722],[-105.9220592205922,73.16492157972732],[-105.93285932859328,73.16323300245745],[-105.95085950859509,73.16154442518757],[-106.10926109261092,73.1970045478551],[-106.09126091260913,73.20207027966475],[-106.05886058860588,73.20544743420453],[-106.04446044460444,73.21051316601415],[-106.05886058860588,73.2172674750937],[-106.04446044460444,73.22402178417323],[-106.09486094860948,73.24597328868171],[-106.15966159661596,73.26117048411064],[-106.17766177661777,73.26961337046006],[-106.19566195661956,73.28649914315889],[-106.17766177661777,73.29156487496854],[-106.1380613806138,73.28818772042877],[-106.120061200612,73.29325345223842],[-106.34686346863468,73.34728792487468],[-106.35046350463504,73.36079654303373],[-106.36846368463685,73.36923942938313],[-106.39366393663937,73.3726165839229],[-106.41166411664116,73.37430516119278],[-106.4260642606426,73.37768231573256],[-106.44766447664476,73.39625666570126],[-106.45486454864549,73.40301097478078],[-106.50886508865088,73.41483101566996],[-106.62046620466204,73.41989674747961],[-106.67086670866708,73.43340536563869],[-106.70686706867069,73.44860256106762],[-106.78966789667896,73.46717691103635],[-106.98766987669876,73.4705540655761],[-107.0380703807038,73.48406268373517],[-107.02367023670236,73.50601418824363],[-106.99486994869949,73.5279656927521],[-106.96246962469624,73.54654004272084],[-106.93726937269372,73.55329435180036],[-106.90126901269012,73.55836008361001],[-106.86166861668616,73.57018012449919],[-106.82566825668256,73.58706589719802],[-106.73566735667356,73.6562975652632],[-106.67086670866708,73.69006911066086],[-106.59886598865988,73.71033203789943],[-106.15966159661596,73.72384065605851],[-105.72045720457204,73.73566069694769],[-105.57645576455764,73.76098935599592],[-105.3820538205382,73.77112081961522],[-105.1660516605166,73.75592362418627],[-105.12285122851229,73.74748073783687],[-105.10485104851048,73.74579216056699],[-105.0760507605076,73.73903785148744],[-104.98244982449825,73.69682341974038],[-104.86364863648636,73.67149476069216],[-104.84564845648457,73.65967471980295],[-104.8240482404824,73.6377232152945],[-104.680046800468,73.62928032894507]]],[[[-93.43713437134372,74.94468202218368],[-93.41913419134191,74.91766478586558],[-93.4119341193412,74.9041561677065],[-93.40833408334083,74.88895897227758],[-93.4119341193412,74.87376177684862],[-93.41913419134191,74.85012169507027],[-93.41553415534155,74.83999023145097],[-93.44073440734407,74.78933291335449],[-93.44433444334443,74.76906998611591],[-93.45873458734587,74.75049563614718],[-93.49473494734947,74.74374132706765],[-93.56673566735667,74.74542990433753],[-93.50553505535055,74.7403641725279],[-93.47313473134732,74.73360986344835],[-93.45873458734587,74.71841266801943],[-93.46593465934659,74.70321547259047],[-93.48753487534876,74.68970685443142],[-93.53433534335343,74.67113250446269],[-93.60633606336063,74.65424673176386],[-93.90153901539016,74.64580384541446],[-94.19674196741967,74.63567238179516],[-94.23274232742327,74.64242669087469],[-94.26874268742687,74.65424673176386],[-94.28674286742867,74.65762388630364],[-94.42354423544235,74.64073811360481],[-94.45234452344523,74.62891807271563],[-94.72594725947259,74.63229522725541],[-94.77274772747727,74.65255815449399],[-94.79074790747907,74.67450965900247],[-94.83034830348304,74.68464112262177],[-94.869948699487,74.68464112262177],[-94.92034920349204,74.66437819538316],[-94.94554945549456,74.66606677265304],[-94.9959499594996,74.67619823627234],[-95.04275042750427,74.67788681354224],[-95.0679506795068,74.68126396808199],[-95.08955089550895,74.68970685443142],[-95.07875078750787,74.7015268953206],[-95.06075060750607,74.71841266801943],[-95.05355053550535,74.73192128617848],[-95.30555305553055,74.80621868605331],[-95.319953199532,74.80790726332319],[-95.33435334353344,74.80453010878344],[-95.34515345153451,74.79777579970391],[-95.35595355953559,74.79102149062436],[-95.3631536315363,74.78595575881474],[-95.38475384753848,74.77920144973518],[-95.41355413554135,74.77413571792553],[-95.44235442354423,74.77244714065566],[-95.46395463954639,74.77920144973518],[-95.38115381153811,74.79946437697379],[-95.38115381153811,74.80790726332319],[-95.43155431554315,74.80790726332319],[-95.46035460354604,74.80453010878344],[-95.47835478354783,74.79271006789426],[-95.48195481954819,74.78089002700509],[-95.47475474754748,74.767381408846],[-95.45315453154531,74.74542990433753],[-95.51075510755108,74.74374132706765],[-95.53955539555395,74.75049563614718],[-95.54675546755468,74.77244714065566],[-95.49275492754927,74.79946437697379],[-95.50355503555035,74.80959584059309],[-95.51435514355143,74.81466157240274],[-95.63315633156331,74.81297299513284],[-95.67635676356764,74.81972730421236],[-95.71235712357124,74.83999023145097],[-95.70515705157051,74.83999023145097],[-95.71955719557195,74.8467445405305],[-95.7339573395734,74.84336738599075],[-95.74475744757447,74.83661307691119],[-95.73755737557376,74.82817019056179],[-95.73755737557376,74.82141588148227],[-95.89595895958959,74.82648161329192],[-95.92475924759248,74.83492449964132],[-95.90675906759067,74.83323592237144],[-95.89235892358923,74.83661307691119],[-95.87795877958779,74.84167880872084],[-95.87075870758707,74.85518742687992],[-95.91755917559175,74.85518742687992],[-95.96075960759607,74.86363031322932],[-96.00396003960039,74.8771389313884],[-96.039960399604,74.8957132813571],[-96.03276032760327,74.8957132813571],[-96.09396093960939,74.9058447449764],[-96.11916119161191,74.91766478586558],[-96.13716137161371,74.93623913583428],[-96.1119611196112,74.94468202218368],[-96.03276032760327,74.94974775399334],[-96.039960399604,74.96494494942229],[-96.04716047160471,74.97001068123194],[-96.05436054360543,74.97338783577169],[-96.06876068760687,74.97169925850181],[-96.0759607596076,74.97001068123194],[-96.09756097560975,74.96156779488251],[-96.10836108361083,74.95819064034276],[-96.14436144361443,74.95819064034276],[-96.12996129961299,74.97507641304159],[-96.10476104761047,74.99196218574042],[-96.07956079560795,75.00547080389947],[-96.05436054360543,75.012225112979],[-96.06516065160652,75.02404515386817],[-96.09036090360904,75.02404515386817],[-96.15156151561516,75.01897942205855],[-96.14436144361443,75.00884795843925],[-96.1551615516155,74.99702791755007],[-96.15156151561516,74.9852078766609],[-96.19476194761947,74.96325637215241],[-96.19836198361983,74.95819064034276],[-96.20556205562055,74.95143633126324],[-96.20556205562055,74.94637059945359],[-96.2019620196202,74.93961629037406],[-96.20556205562055,74.93117340402463],[-96.21636216362164,74.91935336313546],[-96.23076230762307,74.9142876313258],[-96.26676266762668,74.90922189951615],[-96.34956349563495,74.90922189951615],[-96.38916389163892,74.91935336313546],[-96.40356403564036,74.93623913583428],[-96.38916389163892,74.94637059945359],[-96.38556385563855,74.95987921761264],[-96.38556385563855,74.97338783577169],[-96.39636396363963,74.9852078766609],[-96.35676356763567,74.97676499031147],[-96.33156331563315,74.97845356758134],[-96.32076320763207,74.98858503120064],[-96.3279632796328,75.0037822266296],[-96.34956349563495,75.00884795843925],[-96.51876518765188,75.00547080389947],[-96.5439654396544,75.00040507208982],[-96.56556565565656,74.99027360847052],[-96.59076590765908,74.9852078766609],[-96.6159661596616,74.99196218574042],[-96.60516605166052,75.00209364935972],[-96.59796597965979,75.012225112979],[-96.58716587165871,75.0324880402176],[-96.59796597965979,75.0510623901863],[-96.60516605166052,75.06457100834538],[-96.59796597965979,75.07470247196466],[-96.57636576365763,75.08145678104418],[-96.579965799658,75.09158824466348],[-96.58356583565835,75.09496539920326],[-96.52956529565296,75.12367121279127],[-96.50796507965079,75.13886840822022],[-96.47556475564755,75.17095137634797],[-96.47556475564755,75.1777056854275],[-96.47196471964719,75.18108283996727],[-96.47196471964719,75.1878371490468],[-96.46836468364684,75.19459145812633],[-96.46116461164611,75.1979686126661],[-96.43956439564396,75.19628003539623],[-96.4179641796418,75.19121430358658],[-96.38916389163892,75.1793942626974],[-96.37836378363784,75.18277141723715],[-96.37116371163711,75.1979686126661],[-96.37836378363784,75.19965718993598],[-96.38916389163892,75.20303434447575],[-96.39636396363963,75.2064114990155],[-96.40356403564036,75.21147723082515],[-96.35316353163532,75.22498584898423],[-96.13356133561335,75.24524877622281],[-96.07956079560795,75.23680588987341],[-95.9859598595986,75.25200308530233],[-96.00756007560075,75.25875739438189],[-96.0291602916029,75.25875739438189],[-96.07236072360723,75.25200308530233],[-96.08676086760867,75.25538023984211],[-96.09396093960939,75.26044597165176],[-96.09036090360904,75.26888885800116],[-96.0759607596076,75.27564316708072],[-96.03276032760327,75.28239747616024],[-95.94635946359463,75.28408605343012],[-95.9031590315903,75.29252893977954],[-95.93195931959319,75.30266040339882],[-96.16956169561695,75.28746320796989],[-96.15876158761587,75.29928324885907],[-96.16236162361623,75.30097182612894],[-96.16956169561695,75.30772613520847],[-96.13356133561335,75.30941471247837],[-96.02556025560256,75.32798906244707],[-95.96075960759607,75.37695780327365],[-95.92115921159211,75.39046642143273],[-95.88875888758888,75.36851491692425],[-95.9031590315903,75.36682633965438],[-95.93915939159392,75.3550062987652],[-95.93915939159392,75.34825198968565],[-95.80235802358024,75.37020349419413],[-95.78075780757807,75.3820235350833],[-96.039960399604,75.40397503959178],[-96.06156061560615,75.40228646232191],[-96.0759607596076,75.40397503959178],[-96.08316083160831,75.40228646232191],[-96.08316083160831,75.40059788505204],[-96.08316083160831,75.39215499870261],[-96.08316083160831,75.38877784416286],[-96.12996129961299,75.37864638054356],[-96.1551615516155,75.37695780327365],[-96.17676176761768,75.3820235350833],[-96.1551615516155,75.40735219413156],[-96.11556115561156,75.41917223502074],[-96.03276032760327,75.42423796683039],[-96.01836018360183,75.41748365775086],[-96.01116011160111,75.41748365775086],[-96.00756007560075,75.42761512137014],[-96.00036000360004,75.43605800771957],[-95.9859598595986,75.43774658498944],[-95.90675906759067,75.43436943044969],[-95.88155881558815,75.42761512137014],[-95.86355863558636,75.41748365775086],[-95.86355863558636,75.40397503959178],[-95.84195841958419,75.40059788505204],[-95.78075780757807,75.39722073051226],[-95.76635766357663,75.39722073051226],[-95.74475744757447,75.40228646232191],[-95.70515705157051,75.40228646232191],[-95.67995679956799,75.41410650321109],[-95.68715687156872,75.42254938956049],[-95.71235712357124,75.42761512137014],[-95.76995769957699,75.43099227590992],[-95.79875798757988,75.43605800771957],[-95.8239582395824,75.44618947133887],[-95.84195841958419,75.46476382130757],[-95.79155791557915,75.5002239439751],[-95.58995589955899,75.54919268480171],[-95.52155521555216,75.55425841661136],[-95.44955449554496,75.57283276658006],[-95.43155431554315,75.57283276658006],[-95.409954099541,75.56776703477041],[-95.38835388353883,75.55594699388124],[-95.3739537395374,75.55425841661136],[-95.35955359553596,75.56438988023064],[-95.34515345153451,75.58127565292946],[-95.34155341553415,75.58802996200902],[-95.32715327153271,75.59478427108854],[-95.31275312753127,75.60153858016807],[-95.29835298352984,75.60322715743794],[-95.2839528395284,75.60322715743794],[-95.23355233552336,75.59309569381864],[-95.19035190351903,75.59140711654877],[-95.15075150751507,75.59309569381864],[-95.10755107551076,75.60153858016807],[-95.09675096750968,75.60660431197772],[-95.07515075150751,75.62011293013677],[-95.06075060750607,75.62349008467655],[-94.98154981549816,75.62349008467655],[-94.96714967149671,75.62517866194642],[-94.92394923949239,75.64206443464525],[-94.89874898748987,75.64544158918503],[-94.64674646746467,75.62517866194642],[-94.39474394743947,75.60491573470784],[-94.05274052740528,75.47489528492687],[-94.02034020340203,75.45125520314852],[-93.9879398793988,75.43943516225931],[-93.88713887138871,75.41748365775086],[-93.78633786337863,75.3735806487339],[-93.6891368913689,75.36513776238448],[-93.67473674736748,75.36176060784473],[-93.66753667536675,75.3550062987652],[-93.65673656736567,75.3347433715266],[-93.64953649536496,75.32798906244707],[-93.67833678336783,75.31785759882777],[-93.72153721537215,75.31279186701812],[-93.80073800738008,75.314480444288],[-93.80073800738008,75.30772613520847],[-93.66753667536675,75.30266040339882],[-93.49833498334984,75.26720028073129],[-93.49833498334984,75.25875739438189],[-93.50913509135091,75.24187162168306],[-93.52353523535236,75.23005158079388],[-93.58113581135811,75.20472292174563],[-93.55953559535595,75.1895257263167],[-93.4839348393484,75.15406560364914],[-93.46233462334624,75.13549125368044],[-93.46593465934659,75.12029405825149],[-93.48753487534876,75.10678544009244],[-93.51273512735128,75.09496539920326],[-93.50553505535055,75.08989966739361],[-93.4911349113491,75.07470247196466],[-93.51273512735128,75.07301389469478],[-93.54873548735488,75.06288243107548],[-93.60633606336063,75.05612812199595],[-93.62793627936279,75.04937381291643],[-93.64233642336423,75.03924234929713],[-93.62073620736207,75.03417661748747],[-93.55233552335523,75.04599665837665],[-93.53433534335343,75.04430808110678],[-93.52353523535236,75.03924234929713],[-93.49833498334984,75.01897942205855],[-93.4479344793448,74.98858503120064],[-93.42993429934299,74.96663352669216],[-93.43713437134372,74.94468202218368]]],[[[-93.25353253532535,77.64471707672612],[-93.33633336333364,77.64471707672612],[-93.37593375933758,77.63458561310685],[-93.40833408334083,77.6092569540586],[-93.4011340113401,77.60587979951882],[-93.39033390333903,77.60250264497907],[-93.38313383133831,77.59574833589954],[-93.37593375933758,77.58899402681999],[-93.47673476734766,77.55859963596211],[-93.48033480334803,77.55184532688259],[-93.48753487534876,77.54846817234281],[-93.4911349113491,77.54340244053316],[-93.48033480334803,77.52820524510423],[-93.4839348393484,77.5197623587548],[-93.49473494734947,77.51300804967528],[-93.50553505535055,77.50794231786563],[-93.47673476734766,77.48767939062705],[-93.50193501935019,77.4640393088487],[-93.54513545135451,77.44546495887997],[-93.58113581135811,77.44039922707032],[-93.64593645936459,77.45221926795949],[-93.67833678336783,77.45221926795949],[-93.71073710737107,77.44715353614987],[-93.74313743137431,77.44546495887997],[-93.80793807938079,77.45728499976914],[-93.84033840338402,77.45897357703905],[-93.8259382593826,77.45221926795949],[-93.78273782737827,77.44546495887997],[-93.76473764737646,77.44546495887997],[-93.78273782737827,77.43702207253057],[-93.80793807938079,77.43871064980044],[-93.85473854738547,77.44546495887997],[-93.95913959139591,77.43871064980044],[-93.95553955539555,77.44208780434022],[-93.95553955539555,77.44546495887997],[-93.95553955539555,77.44884211341974],[-93.9519395193952,77.45221926795949],[-93.97713977139772,77.46066215430892],[-94.00594005940059,77.46066215430892],[-94.08874088740887,77.45053069068962],[-94.22914229142292,77.45728499976914],[-94.329943299433,77.47754792700775],[-94.7439474394744,77.47754792700775],[-95.1579515795158,77.47754792700775],[-95.5719557195572,77.47923650427762],[-95.9859598595986,77.47923650427762],[-96.0759607596076,77.49781085424632],[-96.09036090360904,77.50456516332588],[-96.12276122761227,77.52820524510423],[-96.30276302763028,77.59405975862964],[-96.3279632796328,77.6092569540586],[-96.30636306363063,77.61094553132847],[-96.28476284762847,77.61601126313812],[-96.2739627396274,77.62276557221765],[-96.29556295562955,77.6295198812972],[-96.28476284762847,77.6379627676466],[-96.2811628116281,77.64302849945625],[-96.28476284762847,77.64978280853578],[-96.28836288362884,77.6582256948852],[-96.25596255962559,77.6582256948852],[-96.25236252362524,77.6666685812346],[-96.25956259562595,77.68017719939368],[-96.25956259562595,77.69199724028286],[-96.23436234362343,77.70550585844191],[-96.12996129961299,77.71394874479131],[-96.039960399604,77.73758882656969],[-95.97875978759787,77.74265455837934],[-95.89595895958959,77.76122890834804],[-95.72315723157232,77.77136037196735],[-95.69075690756907,77.77980325831675],[-95.67635676356764,77.77980325831675],[-95.64035640356403,77.77304894923722],[-95.62235622356224,77.77642610377697],[-95.50715507155071,77.81019764917463],[-95.4459544595446,77.81188622644453],[-95.40275402754027,77.78149183558662],[-95.41355413554135,77.75954033107814],[-95.40275402754027,77.74603171291909],[-95.38115381153811,77.74096598110944],[-95.35595355953559,77.73927740383957],[-95.33435334353344,77.74772029018897],[-95.31275312753127,77.76122890834804],[-95.29475294752947,77.76967179469744],[-95.24075240752407,77.74603171291909],[-95.20115201152011,77.74603171291909],[-95.08595085950859,77.75785175380827],[-94.9851498514985,77.78824614466618],[-94.94914949149491,77.79162329920592],[-94.65034650346503,77.78318041285652],[-94.35514355143552,77.7747375265071],[-94.36954369543695,77.76122890834804],[-94.30114301143011,77.76122890834804],[-94.31194311943119,77.77136037196735],[-94.31554315543156,77.7747375265071],[-94.17874178741788,77.76122890834804],[-94.13914139141392,77.76122890834804],[-94.06354063540635,77.77304894923722],[-94.02754027540276,77.7646060628878],[-94.00954009540095,77.75785175380827],[-93.97353973539735,77.74940886745887],[-93.9411394113941,77.73758882656969],[-93.93033930339303,77.73927740383957],[-93.91953919539195,77.74434313564922],[-93.90873908739087,77.74603171291909],[-93.84753847538475,77.73758882656969],[-93.8259382593826,77.73927740383957],[-93.81873818738187,77.74603171291909],[-93.80793807938079,77.7561631765384],[-93.79713797137971,77.7646060628878],[-93.7791377913779,77.76798321742757],[-93.60633606336063,77.78149183558662],[-93.57033570335703,77.77811468104687],[-93.45873458734587,77.75447459926852],[-93.42273422734227,77.75785175380827],[-93.40833408334083,77.75785175380827],[-93.36873368733687,77.74265455837934],[-93.34713347133471,77.73927740383957],[-93.27153271532715,77.73927740383957],[-93.2391323913239,77.73252309476004],[-93.20673206732067,77.72239163114074],[-93.17793177931779,77.70550585844191],[-93.159931599316,77.69199724028286],[-93.10233102331023,77.66498000396473],[-93.21033210332104,77.64471707672612],[-93.25353253532535,77.64471707672612]]],[[[-109.25929259292593,78.45861132080958],[-109.31689316893168,78.44172554811075],[-109.33489334893349,78.4282169299517],[-109.31329313293132,78.41133115725287],[-109.34569345693457,78.39613396182392],[-109.35649356493565,78.3910682300143],[-109.32409324093241,78.37418245731547],[-109.33849338493384,78.35391953007687],[-109.40329403294032,78.32352513921899],[-109.40689406894069,78.31845940740934],[-109.40689406894069,78.31339367559968],[-109.40689406894069,78.31001652105991],[-109.4248942489425,78.30832794379003],[-109.50769507695077,78.31677083013943],[-109.82449824498245,78.29481932563098],[-109.87129871298713,78.30326221198038],[-109.96129961299613,78.32859087102864],[-110.00450004500044,78.32859087102864],[-110.01170011700117,78.32859087102864],[-110.3321033210332,78.28637643928155],[-110.58770587705877,78.29988505744063],[-110.83970839708397,78.31508225286956],[-110.86130861308612,78.32352513921899],[-110.86130861308612,78.33872233464791],[-110.88650886508864,78.34547664372747],[-110.94770947709476,78.35054237553709],[-111.02691026910269,78.37418245731547],[-111.15291152911529,78.3910682300143],[-111.21771217712177,78.380936766395],[-111.28971289712896,78.3792481891251],[-111.31491314913148,78.36911672550582],[-111.30051300513004,78.35898526188652],[-111.27891278912789,78.34885379826721],[-111.25731257312573,78.34041091191781],[-111.23931239312392,78.33703375737804],[-111.27891278912789,78.32183656194908],[-111.41211412114122,78.33027944829851],[-111.43371433714337,78.30832794379003],[-111.42651426514264,78.30326221198038],[-111.40851408514085,78.29988505744063],[-111.40491404914049,78.2914421710912],[-111.40851408514085,78.2813107074719],[-111.41931419314193,78.27624497566225],[-111.43371433714337,78.27455639839238],[-111.77931779317792,78.26949066658273],[-111.83691836918369,78.28468786201168],[-111.86931869318693,78.30157363471051],[-111.87651876518765,78.30832794379003],[-111.8909189091891,78.32859087102864],[-111.91251912519125,78.33534518010816],[-111.970119701197,78.34547664372747],[-111.98091980919808,78.35054237553709],[-112.02772027720277,78.35223095280699],[-112.17532175321753,78.37755961185522],[-112.4669246692467,78.35223095280699],[-112.7549275492755,78.32690229375874],[-112.77652776527765,78.31845940740934],[-112.78732787327873,78.30832794379003],[-112.76932769327694,78.29481932563098],[-112.80532805328053,78.30832794379003],[-112.84132841328413,78.30663936652016],[-113.06093060930608,78.27455639839238],[-113.18693186931868,78.2728678211225],[-113.24813248132482,78.28468786201168],[-113.29493294932949,78.31508225286956],[-113.28053280532805,78.32352513921899],[-113.33453334533345,78.33703375737804],[-113.21933219332193,78.36405099369617],[-113.2229322293223,78.37418245731547],[-113.2229322293223,78.38431392093474],[-113.2229322293223,78.39275680728417],[-113.23373233732337,78.39782253909382],[-113.21573215732157,78.40626542544322],[-113.15093150931509,78.409642579983],[-113.1329313293133,78.41470831179265],[-113.10053100531005,78.4282169299517],[-112.78012780127801,78.47380851623853],[-112.6829268292683,78.49744859801689],[-112.49212492124921,78.51264579344584],[-112.35532355323554,78.53966302976397],[-112.15012150121501,78.5565488024628],[-112.03492034920349,78.55148307065315],[-111.9269192691927,78.55992595700255],[-111.81531815318154,78.54810591611337],[-111.41931419314193,78.60720612055928],[-111.3761137611376,78.62409189325811],[-111.43731437314374,78.64435482049669],[-111.31491314913148,78.64773197503646],[-111.29331293312933,78.66124059319552],[-111.27531275312752,78.66968347954494],[-111.16371163711636,78.69838929313295],[-111.13131131311313,78.6916349840534],[-110.98010980109801,78.7203407976414],[-110.84330843308433,78.7304722612607],[-110.79290792907929,78.74398087941978],[-110.76050760507604,78.7490466112294],[-110.74250742507425,78.75748949757883],[-110.73170731707317,78.75748949757883],[-110.72450724507245,78.75411234303905],[-110.71370713707137,78.75242376576918],[-110.42570425704257,78.76593238392823],[-110.39690396903968,78.75411234303905],[-110.36810368103681,78.74398087941978],[-110.23850238502385,78.72709510672095],[-110.13770137701377,78.69838929313295],[-110.02970029700296,78.6933235613233],[-110.00450004500044,78.68656925224377],[-109.96129961299613,78.67812636589434],[-109.88569885698857,78.67643778862447],[-109.85689856898568,78.66461774773529],[-109.85689856898568,78.64604339776656],[-109.83889838898389,78.63591193414729],[-109.81369813698137,78.63084620233764],[-109.75969759697597,78.62746904779786],[-109.66249662496625,78.6038289660195],[-109.66969669696697,78.59707465693998],[-109.63369633696337,78.58694319332068],[-109.5040950409504,78.59032034786046],[-109.49329493294933,78.58694319332068],[-109.47889478894788,78.57174599789172],[-109.46449464494644,78.56836884335198],[-109.44649446494465,78.56836884335198],[-109.40689406894069,78.55823737973267],[-109.34569345693457,78.53459729795432],[-109.33489334893349,78.5278429888748],[-109.32769327693276,78.51771152525549],[-109.33129331293313,78.50926863890606],[-109.33129331293313,78.50251432982654],[-109.32049320493205,78.49576002074701],[-109.30249302493024,78.49407144347714],[-109.28449284492845,78.49576002074701],[-109.26649266492664,78.49407144347714],[-109.25929259292593,78.48393997985784],[-109.26649266492664,78.47718567077831],[-109.27729277292772,78.47211993896866],[-109.27729277292772,78.46536562988913],[-109.25929259292593,78.45861132080958]]],[[[120.7938079380794,-9.960360262058146],[120.81180811808122,-9.984000343836513],[120.82980829808298,-10.014394734694392],[120.84060840608407,-10.051543434631824],[120.82620826208262,-10.092069289109006],[120.81900819008189,-10.102200752728294],[120.78660786607867,-10.124152257236773],[120.74340743407436,-10.171432420793494],[120.72540725407254,-10.196761079841735],[120.71100711007114,-10.206892543461024],[120.649806498065,-10.223778316159851],[120.64260642606428,-10.230532625239391],[120.63180631806318,-10.235598357049028],[120.56700567005669,-10.227155470699614],[120.54900549005492,-10.233909779779154],[120.50220502205025,-10.257549861557507],[120.49140491404916,-10.265992747906921],[120.49140491404916,-10.284567097875637],[120.48420484204843,-10.301452870574451],[120.46980469804697,-10.309895756923865],[120.44820448204484,-10.309895756923865],[120.43380433804339,-10.299764293304577],[120.4086040860409,-10.269369902446684],[120.39060390603908,-10.262615593367158],[120.24300243002432,-10.242352666128568],[120.22860228602286,-10.24572982066833],[120.22140221402213,-10.23897551158879],[120.1566015660157,-10.220401161620089],[120.14940149401497,-10.213646852540563],[120.13860138601387,-10.193383925301958],[120.13500135001351,-10.186629616222433],[120.0918009180092,-10.168055266253731],[120.08820088200883,-10.16298953444408],[120.05940059400598,-10.119086525427122],[120.04860048600489,-10.114020793617485],[120.04140041400416,-10.114020793617485],[120.03420034200343,-10.112332216347596],[120.0270002700027,-10.068429207330638],[120.01620016200161,-10.04310054828241],[119.97659976599766,-9.992443230185927],[119.96579965799657,-9.984000343836513],[119.9585995859959,-9.977246034756973],[119.9477994779948,-9.97386888021721],[119.92979929799299,-9.97386888021721],[119.9189991899919,-9.96880314840756],[119.91179911799117,-9.962048839328034],[119.90819908199086,-9.946851643899095],[119.89739897398977,-9.955294530248509],[119.89019890198904,-9.951917375708746],[119.88659886598867,-9.941785912089443],[119.87939879398795,-9.93334302574003],[119.86139861398613,-9.923211562120727],[119.85059850598509,-9.919834407580964],[119.81099810998109,-9.916457253041202],[119.79299792997932,-9.91139152123155],[119.75699756997574,-9.884374284913434],[119.6957969579696,-9.852291316785653],[119.68859688596888,-9.840471275896476],[119.68499684996851,-9.81345403957836],[119.67419674196742,-9.799945421419295],[119.63459634596347,-9.789813957800007],[119.63459634596347,-9.78643680326023],[119.63459634596347,-9.772928185101179],[119.63459634596347,-9.769551030561402],[119.62739627396274,-9.767862453291528],[119.62379623796238,-9.77123960783129],[119.61659616596165,-9.774616762371053],[119.61299612996129,-9.774616762371053],[119.5877958779588,-9.769551030561402],[119.54099540995412,-9.76617387602164],[119.49779497794981,-9.752665257862574],[119.47619476194762,-9.749288103322812],[119.46179461794617,-9.749288103322812],[119.44019440194404,-9.754353835132463],[119.42219422194222,-9.762796721481877],[119.41499414994149,-9.772928185101179],[119.40779407794076,-9.789813957800007],[119.38619386193864,-9.783059648720467],[119.34659346593469,-9.756042412402351],[119.33939339393396,-9.754353835132463],[119.32859328593287,-9.761108144211988],[119.31779317793178,-9.761108144211988],[119.31059310593105,-9.757730989672226],[119.28539285392856,-9.740845216973398],[119.26019260192601,-9.745910948783049],[119.22059220592206,-9.745910948783049],[119.17739177391775,-9.740845216973398],[119.1377913779138,-9.72395944427457],[119.09819098190985,-9.717205135195044],[119.0837908379084,-9.710450826115519],[119.03699036990372,-9.676679280717863],[119.02619026190263,-9.659793508019035],[119.0081900819008,-9.627710539891254],[118.99738997389977,-9.617579076271966],[118.98298982989832,-9.6040704581129],[118.9541895418954,-9.585496108144199],[118.939789397894,-9.570298912715245],[118.93618936189364,-9.553413140016417],[118.94338943389437,-9.526395903698301],[118.95778957789577,-9.49937866738017],[118.97938979389795,-9.475738585601817],[119.02619026190263,-9.43690130839451],[119.05139051390518,-9.42339269023546],[119.08019080190803,-9.414949803886046],[119.10899108991089,-9.413261226616157],[119.12339123391234,-9.409884072076395],[119.15219152191526,-9.392998299377567],[119.17019170191702,-9.386243990298041],[119.2061920619206,-9.379489681218502],[119.23859238592388,-9.377801103948627],[119.24579245792461,-9.376112526678739],[119.26019260192601,-9.365981063059436],[119.26739267392674,-9.364292485789562],[119.30699306993068,-9.364292485789562],[119.38619386193864,-9.377801103948627],[119.39339393393936,-9.376112526678739],[119.40779407794076,-9.365981063059436],[119.4581945819458,-9.357538176710023],[119.47619476194762,-9.3609153312498],[119.51579515795157,-9.37442394940885],[119.53019530195303,-9.37442394940885],[119.54819548195485,-9.362603908519674],[119.56979569795698,-9.35416102217026],[119.63099630996311,-9.342340981281083],[119.64899648996493,-9.342340981281083],[119.66339663396633,-9.347406713090734],[119.6669966699667,-9.3609153312498],[119.68139681396815,-9.371046794869088],[119.80019800198005,-9.384555413028153],[119.82179821798218,-9.377801103948627],[119.94419944199444,-9.288306508644837],[119.9585995859959,-9.289995085914725],[119.9621996219962,-9.313635167693079],[119.96939969399693,-9.323766631312381],[120.01260012600125,-9.357538176710023],[120.07020070200701,-9.440278462934288],[120.09540095400956,-9.460541390172878],[120.10980109801102,-9.470672853792166],[120.12780127801278,-9.477427162871706],[120.14940149401497,-9.47911574014158],[120.16380163801637,-9.470672853792166],[120.18180181801819,-9.467295699252404],[120.20700207002074,-9.475738585601817],[120.22860228602286,-9.492624358300645],[120.24300243002432,-9.509510130999473],[120.24300243002432,-9.550035985476654],[120.25020250202505,-9.575364644524896],[120.25380253802541,-9.614201921732203],[120.25740257402578,-9.63108769443103],[120.27180271802717,-9.642907735320208],[120.32940329403294,-9.669924971638324],[120.34740347403476,-9.669924971638324],[120.35460354603549,-9.656416353479273],[120.36540365403653,-9.644596312590082],[120.39060390603908,-9.637842003510556],[120.43740437404375,-9.63108769443103],[120.45900459004594,-9.632776271700905],[120.4770047700477,-9.641219158050319],[120.49140491404916,-9.658104930749147],[120.49860498604988,-9.683433589797389],[120.50940509405098,-9.696942207956454],[120.58140581405814,-9.735779485163746],[120.60660606606069,-9.769551030561402],[120.64620646206464,-9.852291316785653],[120.67140671406713,-9.884374284913434],[120.69660696606968,-9.904637212152025],[120.76500765007648,-9.93840875754968],[120.7938079380794,-9.960360262058146]]],[[[-165.58185581855818,59.951804442895224],[-165.56745567455675,59.951804442895224],[-165.56025560255603,59.95011586562532],[-165.5530555305553,59.943361556545796],[-165.55665556655566,59.934918670196396],[-165.56025560255603,59.929852938386745],[-165.5638556385564,59.92478720657709],[-165.57105571055712,59.91972147476744],[-165.59985599855997,59.90959001114814],[-165.69345693456935,59.902835702068614],[-165.7150571505715,59.90621285660839],[-165.72585725857257,59.916344320227694],[-165.7438574385744,59.92478720657709],[-165.75465754657546,59.92478720657709],[-165.7618576185762,59.91296716568792],[-165.77265772657728,59.90621285660839],[-165.86625866258663,59.88257277483004],[-165.88425884258842,59.880884197560135],[-165.92745927459274,59.88257277483004],[-165.94545945459456,59.88763850663966],[-165.95985959859598,59.89776997025896],[-165.97425974259744,59.902835702068614],[-165.99225992259923,59.89608139298909],[-165.96345963459635,59.88763850663966],[-165.97785977859778,59.875818465750484],[-166.01026010260102,59.867375579401084],[-166.02826028260282,59.86399842486131],[-166.0390603906039,59.85724411578178],[-166.1218612186122,59.840358343082954],[-166.13266132661326,59.858932693051656],[-166.18666186661866,59.86230984759143],[-166.2478624786248,59.85386696124203],[-166.2658626586266,59.83360403400343],[-166.25866258662586,59.831915456733554],[-166.21546215462155,59.82009541584438],[-166.15786157861578,59.8268497249239],[-166.13266132661326,59.82178399311425],[-166.1110611106111,59.81165252949495],[-166.0930609306093,59.79476675679612],[-166.08226082260822,59.77956956136717],[-166.10386103861038,59.76606094320812],[-166.14346143461435,59.75761805685872],[-166.1830618306183,59.755929479588815],[-166.19746197461976,59.760995211398466],[-166.20466204662046,59.777880984097294],[-166.22266222662228,59.79476675679612],[-166.24426244262443,59.8082753749552],[-166.27666276662768,59.8167182613046],[-166.29826298262984,59.83022687946365],[-166.31266312663126,59.83360403400343],[-166.33066330663306,59.8352926112733],[-166.40626406264062,59.85555553851191],[-166.43866438664386,59.858932693051656],[-166.4710647106471,59.85724411578178],[-166.49986499865,59.84880122943238],[-166.5070650706507,59.86062127032156],[-166.52146521465215,59.86062127032156],[-166.55386553865537,59.85386696124203],[-166.6150661506615,59.85555553851191],[-166.62946629466293,59.86062127032156],[-166.6690666906669,59.88594992936979],[-166.68346683466834,59.88932708390956],[-166.72666726667268,59.89270423844931],[-166.74826748267483,59.89776997025896],[-166.78786787867878,59.92141005203732],[-167.0218702187022,59.99064172010253],[-167.00027000270003,60.00246176099171],[-166.9930699306993,60.00415033826158],[-167.0110701107011,60.01259322461098],[-167.02907029070292,60.00921607007123],[-167.04347043470435,60.00246176099171],[-167.06147061470614,59.997396029182056],[-167.06147061470614,60.00415033826158],[-167.06147061470614,60.00752749280136],[-167.06147061470614,60.01259322461098],[-167.06147061470614,60.019347533690535],[-167.0758707587076,60.01090464734111],[-167.07947079470796,60.00415033826158],[-167.08667086670866,59.99908460645193],[-167.10467104671048,59.997396029182056],[-167.12267122671227,60.000773183721805],[-167.15147151471515,60.01597037915076],[-167.16947169471695,60.019347533690535],[-167.1910719107191,60.027790420039935],[-167.21627216272162,60.04805334727854],[-167.24147241472414,60.07000485178702],[-167.2558725587256,60.08689062448585],[-167.25947259472593,60.08689062448585],[-167.26667266672666,60.07000485178702],[-167.28467284672845,60.06493911997737],[-167.30627306273064,60.07000485178702],[-167.32067320673207,60.08013631540629],[-167.32067320673207,60.085202047215944],[-167.32067320673207,60.1105307062642],[-167.32427324273243,60.120662169883474],[-167.3278732787328,60.1291050562329],[-167.34227342273422,60.14261367439195],[-167.43587435874358,60.19495956975834],[-167.4538745387454,60.21691107426679],[-167.43587435874358,60.21184534245714],[-167.42147421474215,60.21184534245714],[-167.34227342273422,60.223665383346344],[-167.33147331473316,60.228731115155966],[-167.32067320673207,60.23548542423552],[-167.30627306273064,60.23886257877527],[-167.28827288272882,60.23886257877527],[-167.2738727387274,60.23548542423552],[-167.25947259472593,60.228731115155966],[-167.24867248672487,60.228731115155966],[-167.15867158671585,60.23379684696562],[-166.87426874268743,60.210156765187264],[-166.82026820268203,60.21691107426679],[-166.7950679506795,60.25912550601387],[-166.79866798667987,60.26756839236327],[-166.80586805868057,60.27094554690305],[-166.80946809468094,60.2760112787127],[-166.80226802268024,60.286142742332004],[-166.79146791467915,60.29289705141153],[-166.7590675906759,60.304717092300706],[-166.7230672306723,60.31147140138023],[-166.6690666906669,60.32835717407906],[-166.63666636666366,60.326668596809185],[-166.5970659706597,60.31484855592001],[-166.5790657906579,60.31484855592001],[-166.56826568265683,60.33004575134893],[-166.56826568265683,60.35030867858754],[-166.55746557465574,60.35875156493694],[-166.46026460264602,60.38745737852494],[-166.42066420664207,60.384080223985194],[-166.3918639186392,60.36044014220684],[-166.39546395463955,60.35875156493694],[-166.39906399063992,60.35199725585741],[-166.40266402664025,60.34693152404776],[-166.3810638106381,60.348620101317664],[-166.3090630906309,60.38239164671529],[-166.18666186661866,60.402654573953896],[-166.19026190261903,60.38576880125507],[-166.17226172261724,60.37901449217554],[-166.15066150661505,60.38070306944542],[-166.13626136261362,60.389145955794845],[-166.13626136261362,60.40096599668402],[-166.139861398614,60.41616319211295],[-166.15786157861578,60.43642611935155],[-166.13266132661326,60.4313603875419],[-166.11826118261183,60.42629465573225],[-166.10746107461074,60.41616319211295],[-166.11466114661147,60.40940888303342],[-166.10386103861038,60.392523110334594],[-166.0930609306093,60.37394876036589],[-166.07866078660786,60.35875156493694],[-166.06066060660606,60.34693152404776],[-166.0678606786068,60.34524294677789],[-166.07146071460716,60.34186579223811],[-166.07146071460716,60.33848863769836],[-166.07506075060752,60.33342290588871],[-166.05346053460534,60.32835717407906],[-165.98865988659887,60.31991428772963],[-165.92025920259204,60.326668596809185],[-165.89865898658985,60.34524294677789],[-165.8878588785888,60.34693152404776],[-165.81225812258123,60.34524294677789],[-165.7870578705787,60.34186579223811],[-165.77985779857798,60.33680006042846],[-165.76545765457655,60.32498001953928],[-165.7618576185762,60.321602864999534],[-165.7438574385744,60.31822571045976],[-165.71865718657187,60.31991428772963],[-165.70425704257042,60.313159978650106],[-165.72585725857257,60.30640566957058],[-165.68265682656826,60.299651360491055],[-165.68625686256863,60.29289705141153],[-165.689856898569,60.28951989687175],[-165.69345693456935,60.286142742332004],[-165.6790567905679,60.277699855982576],[-165.68625686256863,60.26756839236327],[-165.70065700657005,60.2557483514741],[-165.7150571505715,60.250682619664445],[-165.71865718657187,60.245616887854794],[-165.70425704257042,60.23210826969574],[-165.6790567905679,60.21184534245714],[-165.72225722257224,60.18145095159926],[-165.7330573305733,60.17638521978961],[-165.72585725857257,60.16456517890043],[-165.71145711457115,60.157810869820906],[-165.69345693456935,60.15443371528113],[-165.6790567905679,60.15612229255103],[-165.68265682656826,60.15105656074138],[-165.68625686256863,60.14599082893173],[-165.69345693456935,60.14261367439195],[-165.69345693456935,60.13585936531243],[-165.68265682656826,60.13417078804255],[-165.6790567905679,60.13248221077268],[-165.67545675456753,60.12741647896303],[-165.6718567185672,60.12235074715338],[-165.68265682656826,60.10715355172442],[-165.69345693456935,60.09364493356537],[-165.72585725857257,60.06662769724724],[-165.689856898569,60.068316274517116],[-165.67545675456753,60.063250542707465],[-165.66465664656647,60.03792188365924],[-165.65385653856538,60.032856151849586],[-165.62145621456216,60.02610184277006],[-165.63225632256322,60.014281801880884],[-165.6358563585636,60.00921607007123],[-165.64305643056431,60.00415033826158],[-165.64305643056431,59.997396029182056],[-165.62865628656286,59.992330297372405],[-165.61425614256143,59.97544452467358],[-165.60345603456034,59.970378792863926],[-165.5890558905589,59.9720673701338],[-165.55665556655566,59.98388741102298],[-165.54225542255423,59.98388741102298],[-165.5530555305553,59.97713310194345],[-165.56745567455675,59.970378792863926],[-165.57825578255782,59.961935906514526],[-165.58185581855818,59.951804442895224]]],[[[-171.15831158311582,63.60926280946114],[-171.16551165511655,63.60757423219127],[-171.1691116911169,63.60419707765149],[-171.17271172711727,63.600819923111715],[-171.17271172711727,63.59575419130209],[-171.1259112591126,63.59575419130209],[-171.11151111511114,63.59406561403219],[-171.09711097110971,63.583934150412915],[-171.08631086310862,63.58224557314301],[-170.97470974709748,63.58899988222254],[-170.97830978309784,63.58562272768279],[-170.97830978309784,63.583934150412915],[-170.98190981909818,63.58224557314301],[-170.93870938709387,63.57211410952371],[-170.88830888308883,63.58562272768279],[-170.84150841508415,63.605885654921366],[-170.77310773107732,63.62108285035032],[-170.72270722707228,63.6514772412082],[-170.66150661506614,63.6717401684468],[-170.64710647106472,63.685248786605854],[-170.62550625506256,63.67005159117693],[-170.59670596705968,63.67005159117693],[-170.4959049590496,63.70044598203481],[-170.47070470704708,63.703823136574584],[-170.4419044190442,63.70551171384446],[-170.42750427504274,63.703823136574584],[-170.40230402304024,63.69369167295528],[-170.3879038790388,63.69200309568541],[-170.33750337503375,63.69875740476493],[-170.30870308703086,63.69875740476493],[-170.2979029790298,63.695380250225156],[-170.27630276302762,63.6801830547962],[-170.26550265502655,63.67849447752633],[-170.25470254702546,63.67511732298658],[-170.24030240302403,63.6717401684468],[-170.189901899019,63.63965720031902],[-170.16830168301684,63.63121431396962],[-170.11070110701107,63.622771427620194],[-170.08190081900818,63.61601711854067],[-170.06750067500676,63.59406561403219],[-170.0531005310053,63.578868418603264],[-170.04950049500496,63.57211410952371],[-170.0531005310053,63.56029406863453],[-170.05670056700566,63.55522833682488],[-170.0531005310053,63.551851182285134],[-170.04230042300424,63.54509687320561],[-170.03870038700387,63.53158825504653],[-170.0531005310053,63.516391059617604],[-170.07470074700745,63.499505286918776],[-170.08550085500855,63.4859966687597],[-170.06750067500676,63.49106240056935],[-170.04950049500496,63.494439555109125],[-169.95229952299522,63.48937382329947],[-169.89109891098911,63.467422318790994],[-169.8478984789848,63.45729085517169],[-169.75429754297542,63.45222512336204],[-169.77589775897758,63.44884796882229],[-169.81909819098192,63.44884796882229],[-169.84429844298444,63.445470814282515],[-169.7830978309783,63.43533935066321],[-169.6570965709657,63.440405082472864],[-169.5958959589596,63.42520788704394],[-169.58149581495815,63.410010691614985],[-169.56709567095672,63.37961630075711],[-169.5490954909549,63.36273052805828],[-169.52029520295204,63.35259906443898],[-169.48069480694807,63.347533332629325],[-169.44109441094412,63.347533332629325],[-169.41229412294123,63.355976218978725],[-169.4230942309423,63.361041950788376],[-169.43749437494375,63.36273052805828],[-169.32589325893258,63.36273052805828],[-169.289892898929,63.3593533735185],[-169.2610926109261,63.3492219098992],[-169.2070920709207,63.307007478152144],[-169.18549185491855,63.30194174634249],[-169.12429124291242,63.30025316907262],[-169.0918909189092,63.30531890088227],[-169.07029070290702,63.320516096311195],[-169.10269102691026,63.33233613720037],[-169.14229142291424,63.3390904462799],[-169.22149221492214,63.342467600819674],[-169.22149221492214,63.3492219098992],[-169.07029070290702,63.342467600819674],[-169.0090900909009,63.3492219098992],[-168.99108991089912,63.347533332629325],[-168.96228962289624,63.33740186901002],[-168.7138871388714,63.312073209961795],[-168.68508685086852,63.30194174634249],[-168.69948699486994,63.29518743726297],[-168.72828728287283,63.28674455091354],[-168.73908739087392,63.28167881910389],[-168.71748717487174,63.26141589186531],[-168.72828728287283,63.23439865554718],[-168.7750877508775,63.192184223800126],[-168.81108811088112,63.17023271929165],[-168.85068850688506,63.16347841021212],[-168.95148951489514,63.165166987481996],[-169.00189001890018,63.173609873831396],[-169.01989019890198,63.182052760180824],[-169.0378903789038,63.18880706926035],[-169.28269282692827,63.17867560564105],[-169.32949329493294,63.165166987481996],[-169.28629286292863,63.18036418291095],[-169.26469264692648,63.1837413374507],[-169.18549185491855,63.187118491990475],[-169.16029160291603,63.19387280107],[-169.14589145891458,63.20569284195918],[-169.28629286292863,63.19387280107],[-169.3510935109351,63.17698702837117],[-169.41229412294123,63.14996979205304],[-169.39789397893978,63.14321548297352],[-169.39789397893978,63.13646117389399],[-169.4158941589416,63.129706864814466],[-169.44469444694448,63.11282109211564],[-169.50589505895059,63.10100105122646],[-169.52749527495274,63.09086958760716],[-169.53469534695347,63.07904954671798],[-169.5418954189542,63.07229523763846],[-169.57069570695708,63.05203231039985],[-169.57789577895778,63.040212269510675],[-169.57789577895778,63.02332649681185],[-169.57069570695708,63.01150645592267],[-169.5418954189542,62.99293210595397],[-169.559895598956,62.986177796874415],[-169.5958959589596,62.98448921960454],[-169.6138961389614,62.97604633325514],[-169.63549635496355,62.955783406016536],[-169.64989649896498,62.94902909693701],[-169.6678966789668,62.945651942397234],[-169.70749707497075,62.96084913782619],[-169.73269732697327,62.96591486963584],[-169.75429754297542,62.96591486963584],[-169.74709747097472,62.97942348779489],[-169.74709747097472,62.99293210595397],[-169.75069750697506,63.00306356957324],[-169.76149761497615,63.01488361046242],[-169.73629736297363,63.01657218773232],[-169.71469714697147,63.02501507408172],[-169.70389703897038,63.040212269510675],[-169.71469714697147,63.06047519674925],[-169.7218972189722,63.0655409285589],[-169.74349743497436,63.067229505828806],[-169.75069750697506,63.07229523763846],[-169.77589775897758,63.09593531941681],[-169.81909819098192,63.12632971027469],[-169.8658986589866,63.14490406024339],[-169.97389973899737,63.165166987481996],[-169.97389973899737,63.15672410113257],[-170.02430024300241,63.17023271929165],[-170.03870038700387,63.182052760180824],[-170.04950049500496,63.18542991472057],[-170.07110071100712,63.1837413374507],[-170.08190081900818,63.18880706926035],[-170.08550085500855,63.195561378339875],[-170.08550085500855,63.200627110149526],[-170.08550085500855,63.2040042646893],[-170.09270092700928,63.20569284195918],[-170.11430114301143,63.2023156874194],[-170.14670146701468,63.18880706926035],[-170.1611016110161,63.18542991472057],[-170.18270182701826,63.18542991472057],[-170.23670236702367,63.19724995560978],[-170.2619026190262,63.19893853287965],[-170.25470254702546,63.209069996498954],[-170.2439024390244,63.2124471510387],[-170.2331023310233,63.2124471510387],[-170.22230222302224,63.21920146011823],[-170.21870218702188,63.227644346467656],[-170.2151021510215,63.254661582785786],[-170.21870218702188,63.25972731459541],[-170.22230222302224,63.26479304640506],[-170.22950229502294,63.27492451002436],[-170.23670236702367,63.28336739637379],[-170.2439024390244,63.28843312818344],[-170.2619026190262,63.28843312818344],[-170.33030330303302,63.30531890088227],[-170.4131041310413,63.3390904462799],[-170.44550445504456,63.3593533735185],[-170.59670596705968,63.39987922799568],[-170.66150661506614,63.40325638253546],[-170.6651066510665,63.40663353707521],[-170.66870668706687,63.41169926888486],[-170.67230672306724,63.41507642342464],[-170.6759067590676,63.418453577964385],[-170.77670776707768,63.42014215523429],[-170.79470794707947,63.42520788704394],[-170.80550805508057,63.43027361885356],[-170.82350823508236,63.445470814282515],[-170.83070830708306,63.45222512336204],[-170.8451084510845,63.458979432441595],[-170.85590855908558,63.46066800971147],[-171.08271082710826,63.445470814282515],[-171.08271082710826,63.44378223701264],[-171.08271082710826,63.440405082472864],[-171.07911079110792,63.43871650520299],[-171.12231122311223,63.431962196123465],[-171.14031140311403,63.42520788704394],[-171.15471154711548,63.41507642342464],[-171.18351183511834,63.40156780526556],[-171.2519125191252,63.396502073455935],[-171.28431284312842,63.382993455296855],[-171.29151291512915,63.382993455296855],[-171.2951129511295,63.36273052805828],[-171.3239132391324,63.3509104871691],[-171.35991359913598,63.34584475535945],[-171.38151381513816,63.3390904462799],[-171.40671406714068,63.32220467358107],[-171.4391143911439,63.320516096311195],[-171.5579155791558,63.33571329174015],[-171.5579155791558,63.33740186901002],[-171.57231572315723,63.34584475535945],[-171.57951579515796,63.3492219098992],[-171.58671586715866,63.3509104871691],[-171.61191611916118,63.3492219098992],[-171.62631626316264,63.3509104871691],[-171.65511655116552,63.361041950788376],[-171.70551705517056,63.3677962598679],[-171.73431734317344,63.37623914621733],[-171.75951759517596,63.38974776437638],[-171.82071820718207,63.44209365974277],[-171.8279182791828,63.45053654609217],[-171.8279182791828,63.467422318790994],[-171.84231842318422,63.4859966687597],[-171.8459184591846,63.49781670964887],[-171.84951849518495,63.50963675053805],[-171.85311853118532,63.521456791427255],[-171.84951849518495,63.521456791427255],[-171.8459184591846,63.52314536869713],[-171.84231842318422,63.52821110050678],[-171.83871838718386,63.534965409586306],[-171.83871838718386,63.54003114139596],[-171.8459184591846,63.55522833682488],[-171.84231842318422,63.57717984133336],[-171.83871838718386,63.583934150412915],[-171.8279182791828,63.592377036762315],[-171.82071820718207,63.59913134584184],[-171.809918099181,63.60419707765149],[-171.80271802718028,63.61095138673102],[-171.7991179911799,63.619394273080445],[-171.7991179911799,63.62614858215997],[-171.80631806318064,63.63121431396962],[-171.809918099181,63.63459146850937],[-171.80631806318064,63.63965720031902],[-171.7991179911799,63.64472293212867],[-171.78111781117812,63.64810008666845],[-171.77031770317703,63.6514772412082],[-171.75231752317524,63.663297282097375],[-171.74871748717487,63.67511732298658],[-171.74871748717487,63.68693736387576],[-171.74871748717487,63.70551171384446],[-171.72711727117272,63.73421752743246],[-171.719917199172,63.752791877401165],[-171.73071730717308,63.76123476375059],[-171.73431734317344,63.76461191829034],[-171.73791737917378,63.774743381909644],[-171.74151741517414,63.78487484552895],[-171.73791737917378,63.79162915460847],[-171.72711727117272,63.79669488641812],[-171.71631716317162,63.79500630914825],[-171.70551705517056,63.79162915460847],[-171.69471694716947,63.79162915460847],[-171.6731167311673,63.79669488641812],[-171.65151651516516,63.7899405773386],[-171.6371163711637,63.77812053644942],[-171.62631626316264,63.76123476375059],[-171.6371163711637,63.75448045467104],[-171.64431644316443,63.74266041378186],[-171.6479164791648,63.72746321835294],[-171.6479164791648,63.712266022923984],[-171.63351633516336,63.70044598203481],[-171.61551615516154,63.69369167295528],[-171.44631446314463,63.65823155028775],[-171.40671406714068,63.64472293212867],[-171.42831428314284,63.64472293212867],[-171.4679146791468,63.654854395747975],[-171.48951489514894,63.65823155028775],[-171.5039150391504,63.6531658184781],[-171.52911529115292,63.63121431396962],[-171.54351543515435,63.622771427620194],[-171.54351543515435,63.61601711854067],[-171.52911529115292,63.62108285035032],[-171.51831518315183,63.619394273080445],[-171.50751507515076,63.614328541270794],[-171.49671496714967,63.60926280946114],[-171.48591485914858,63.60926280946114],[-171.3419134191342,63.61601711854067],[-171.30951309513094,63.622771427620194],[-171.3239132391324,63.62952573669975],[-171.3419134191342,63.63121431396962],[-171.3779137791378,63.63121431396962],[-171.3779137791378,63.63628004577927],[-171.15831158311582,63.60926280946114]]],[[[62.22122221222213,80.81248803502606],[62.23202232022322,80.79897941686701],[62.25722257222574,80.79222510778749],[62.275222752227535,80.78378222143806],[62.2788227882279,80.76183071692958],[62.26082260822608,80.741567789691],[62.23202232022322,80.72805917153195],[62.174421744217454,80.71455055337287],[62.03762037620376,80.6655818125463],[62.091620916209166,80.64869603984747],[62.14562145621457,80.63856457622816],[62.116821168211686,80.62167880352933],[62.073620736207374,80.61492449444981],[61.70641706417064,80.59803872175098],[61.69921699216994,80.5946615672112],[61.69561695616957,80.59128441267143],[61.688416884168845,80.57946437178225],[61.688416884168845,80.57777579451238],[61.60921609216092,80.56764433089307],[61.587615876158765,80.5558242900039],[61.60561605616056,80.52880705368577],[61.310413104131044,80.51023270371707],[61.278012780127824,80.50178981736767],[61.37521375213754,80.49334693101824],[61.38241382413824,80.48996977647849],[61.378813788137876,80.48490404466884],[61.36441364413645,80.47477258104954],[61.328413284132836,80.45788680835071],[61.28161281612816,80.4477553447314],[61.15561155611556,80.43424672657235],[61.08361083610836,80.410606644794],[61.044010440104415,80.40554091298435],[60.56160561605617,80.44606676746153],[60.306003060030605,80.49503550828814],[60.180001800018005,80.48828119920859],[60.18720187201873,80.48152689012906],[60.15840158401585,80.46970684923988],[60.1260012600126,80.46295254016036],[60.028800288002884,80.45788680835071],[59.963999639996416,80.44268961292175],[59.686796867968695,80.42749241749283],[59.636396363963655,80.43086957203258],[59.4959949599496,80.48321546739894],[59.240392403924034,80.52880705368577],[59.25479254792549,80.53893851730507],[59.27279272792728,80.54231567184485],[59.31239312393126,80.54231567184485],[59.3627936279363,80.55920144454367],[59.37359373593736,80.57102148543285],[59.333993339933414,80.57271006270273],[59.28719287192874,80.58115294905215],[59.26199261992622,80.59803872175098],[59.290792907929074,80.61661307171968],[59.22959229592297,80.64363030803781],[59.22239222392224,80.65207319438721],[59.233192331923334,80.66051608073664],[59.290792907929074,80.67740185343547],[59.308793087930894,80.68753331705474],[59.301593015930166,80.68922189432465],[59.283592835928374,80.69935335794392],[59.301593015930166,80.70779624429335],[59.34479344793448,80.71455055337287],[59.366393663936634,80.7213048624524],[59.359193591935934,80.72805917153195],[59.40599405994061,80.7500106760404],[59.535595355953575,80.76351929419948],[59.57159571595716,80.79053653051761],[59.510395103951055,80.80404514867666],[59.55719557195573,80.80742230321641],[59.693996939969395,80.83781669407432],[59.719197191971915,80.83781669407432],[59.787597875978776,80.8310623849948],[59.812798127981296,80.83275096226467],[59.852398523985244,80.84288242588397],[60.16920169201694,80.85470246677315],[60.22320223202232,80.84794815769362],[60.255602556025565,80.8310623849948],[60.039600396003976,80.82430807591524],[59.96759967599678,80.80911088048632],[60.31320313203133,80.81079945775619],[60.35280352803528,80.80404514867666],[60.35280352803528,80.80066799413689],[60.34920349203492,80.79560226232724],[60.34920349203492,80.79222510778749],[60.36360363603637,80.79053653051761],[60.37440374403744,80.79053653051761],[60.565205652056534,80.82261949864537],[61.05481054810548,80.84457100315385],[61.54441544415445,80.86483393039245],[61.537215372153725,80.87496539401172],[61.530015300152996,80.8783425485515],[61.562415624156245,80.89185116671055],[61.60201602016022,80.89522832125033],[62.066420664206646,80.88003112582138],[62.2068220682207,80.82261949864537],[62.22122221222213,80.81248803502606]]],[[[162.37422374223746,-10.823223246968212],[162.3850238502385,-10.81815751515856],[162.39222392223922,-10.826600401507974],[162.39222392223922,-10.838420442397151],[162.37782377823777,-10.84517475147669],[162.36342363423637,-10.841797596936928],[162.35262352623528,-10.838420442397151],[162.34182341823418,-10.838420442397151],[162.32742327423273,-10.84517475147669],[162.32022320223206,-10.84010901966704],[162.30942309423097,-10.838420442397151],[162.29142291422914,-10.838420442397151],[162.2770227702277,-10.835043287857388],[162.20862208622088,-10.808026051539272],[162.18342183421834,-10.811403206079035],[162.1618216182162,-10.831666133317626],[162.15102151021512,-10.8249118242381],[162.13662136621366,-10.823223246968212],[162.11142111421117,-10.823223246968212],[162.10062100621008,-10.821534669698323],[162.09342093420935,-10.816468937888686],[162.08622086220862,-10.809714628809147],[162.0790207902079,-10.804648896999495],[162.03582035820358,-10.786074547030793],[162.02142021420218,-10.772565928871728],[162.0106201062011,-10.769188774331965],[161.9998199982,-10.770877351601854],[161.97101971019714,-10.781008815221142],[161.96021960219605,-10.779320237951268],[161.94941949419496,-10.774254506141617],[161.909819098191,-10.76243446525244],[161.909819098191,-10.764123042522314],[161.90621906219064,-10.767500197062077],[161.8918189181892,-10.769188774331965],[161.88461884618846,-10.767500197062077],[161.87381873818737,-10.757368733442789],[161.87021870218706,-10.7556801561729],[161.86301863018633,-10.752303001633138],[161.8558185581856,-10.745548692553612],[161.84861848618488,-10.728662919854784],[161.84141841418415,-10.742171538013835],[161.84141841418415,-10.748925847093375],[161.81981819818202,-10.733728651664435],[161.80541805418056,-10.730351497124659],[161.7910179101791,-10.73541722893431],[161.7910179101791,-10.728662919854784],[161.78381783817838,-10.72022003350537],[161.78021780217802,-10.71515430169572],[161.76941769417698,-10.718531456235482],[161.76221762217625,-10.711777147155956],[161.75501755017552,-10.701645683536654],[161.7586175861759,-10.694891374457129],[161.7478174781748,-10.683071333567952],[161.7370173701737,-10.681382756298063],[161.72261722617225,-10.683071333567952],[161.7118171181712,-10.679694179028175],[161.70461704617048,-10.671251292678775],[161.70101701017012,-10.659431251789584],[161.6938169381694,-10.649299788170296],[161.67941679416793,-10.645922633630533],[161.67581675816757,-10.639168324550994],[161.66141661416617,-10.627348283661817],[161.64701647016471,-10.618905397312403],[161.639816398164,-10.622282551852166],[161.63621636216362,-10.63072543820158],[161.62541625416253,-10.623971129122054],[161.60741607416077,-10.605396779153338],[161.60741607416077,-10.596953892803924],[161.6038160381604,-10.591888160994287],[161.59661596615967,-10.586822429184636],[161.58581585815858,-10.585133851914748],[161.58941589415895,-10.576690965565334],[161.58581585815858,-10.569936656485808],[161.58221582215822,-10.563182347406283],[161.57141571415713,-10.556428038326743],[161.56421564215646,-10.566559501946045],[161.55341553415536,-10.569936656485808],[161.5390153901539,-10.56824807921592],[161.52461524615245,-10.564870924676157],[161.54621546215463,-10.502393565690497],[161.53541535415354,-10.495639256610971],[161.53181531815318,-10.485507792991669],[161.53181531815318,-10.47537632937238],[161.52821528215281,-10.465244865753078],[161.5210152101521,-10.46355628848319],[161.50301503015032,-10.466933443022967],[161.48861488614887,-10.468622020292841],[161.49941499414996,-10.456801979403664],[161.5066150661507,-10.439916206704837],[161.5066150661507,-10.426407588545771],[161.48861488614887,-10.419653279466246],[161.49941499414996,-10.394324620418004],[161.5066150661507,-10.384193156798716],[161.51381513815141,-10.379127424989065],[161.5210152101521,-10.375750270449302],[161.51741517415178,-10.372373115909525],[161.51021510215105,-10.36561880683],[161.5066150661507,-10.363930229560111],[161.48861488614887,-10.36561880683],[161.4850148501485,-10.36561880683],[161.47781477814777,-10.358864497750474],[161.47061470614705,-10.352110188670935],[161.46701467014674,-10.347044456861283],[161.45261452614528,-10.34366730232152],[161.42381423814237,-10.34366730232152],[161.41301413014133,-10.341978725051646],[161.40941409414097,-10.333535838702232],[161.40221402214024,-10.33015868416247],[161.3878138781388,-10.328470106892581],[161.36621366213666,-10.33015868416247],[161.3626136261363,-10.333535838702232],[161.35541355413557,-10.338601570511884],[161.3518135181352,-10.341978725051646],[161.34461344613447,-10.34366730232152],[161.33741337413375,-10.34366730232152],[161.33021330213302,-10.338601570511884],[161.30501305013053,-10.335224415972107],[161.29421294212943,-10.331847261432344],[161.28341283412834,-10.32340437508293],[161.27981279812798,-10.30820717965399],[161.29061290612907,-10.286255675145512],[161.28341283412834,-10.276124211526223],[161.29061290612907,-10.271058479716572],[161.29061290612907,-10.26768132517681],[161.29421294212943,-10.265992747906921],[161.2978129781298,-10.262615593367158],[161.29061290612907,-10.247418397938205],[161.29061290612907,-10.22546689342974],[161.30141301413016,-10.206892543461024],[161.31941319413193,-10.200138234381498],[161.3230132301323,-10.20351538892126],[161.33021330213302,-10.20520396619115],[161.33741337413375,-10.208581120730912],[161.3410134101341,-10.213646852540563],[161.39501395013951,-10.20351538892126],[161.50301503015032,-10.250795552477982],[161.61101611016113,-10.316650066003405],[161.6686166861669,-10.36561880683],[161.68661686616866,-10.357175920480586],[161.70101701017012,-10.36561880683],[161.71901719017194,-10.396013197687893],[161.73341733417334,-10.40614466130718],[161.75141751417516,-10.40783323857707],[161.76581765817662,-10.40614466130718],[161.78021780217802,-10.40614466130718],[161.7910179101791,-10.411210393116832],[161.81981819818202,-10.429784743085548],[161.8270182701827,-10.436539052165074],[161.83421834218342,-10.446670515784376],[161.8558185581856,-10.44835909305425],[161.8810188101881,-10.4432933612446],[161.89541895418955,-10.433161897625311],[161.93141931419314,-10.446670515784376],[161.94941949419496,-10.446670515784376],[161.9638196381964,-10.439916206704837],[161.97101971019714,-10.44835909305425],[161.98541985419854,-10.466933443022967],[161.99621996219963,-10.47537632937238],[162.0106201062011,-10.478753483912143],[162.0430204302043,-10.47537632937238],[162.05742057420576,-10.478753483912143],[162.0646206462065,-10.47537632937238],[162.06822068220686,-10.45511340213379],[162.07542075420753,-10.450047670324139],[162.08262082620826,-10.44835909305425],[162.09342093420935,-10.44835909305425],[162.11502115021153,-10.456801979403664],[162.14022140221402,-10.493950679341083],[162.15102151021512,-10.502393565690497],[162.1618216182162,-10.509147874770036],[162.1726217262173,-10.524345070198976],[162.19062190621906,-10.578379542835222],[162.1978219782198,-10.585133851914748],[162.20502205022052,-10.590199583724399],[162.20862208622088,-10.591888160994287],[162.2158221582216,-10.596953892803924],[162.21942219422198,-10.629036860931706],[162.230222302223,-10.644234056360645],[162.2410224102241,-10.656054097249822],[162.2770227702277,-10.679694179028175],[162.28782287822878,-10.691514219917366],[162.29142291422914,-10.708399992616194],[162.29142291422914,-10.764123042522314],[162.28782287822878,-10.769188774331965],[162.28422284222842,-10.772565928871728],[162.2770227702277,-10.77763166068138],[162.26982269822702,-10.78269739249103],[162.26622266222665,-10.789451701570556],[162.27342273422738,-10.814780360618798],[162.30222302223024,-10.819846092428449],[162.34182341823418,-10.81815751515856],[162.37422374223746,-10.823223246968212]]],[[[161.35901359013593,-9.617579076271966],[161.3086130861309,-9.582118953604422],[161.2978129781298,-9.580430376334547],[161.2978129781298,-9.56354460363572],[161.29061290612907,-9.54834740820678],[161.25101251012512,-9.497690090110297],[161.2438124381244,-9.487558626490994],[161.2438124381244,-9.477427162871706],[161.24021240212403,-9.45885281290299],[161.23661236612367,-9.447032772013813],[161.22581225812257,-9.430146999314985],[161.1790117901179,-9.38117825848839],[161.1106111061111,-9.347406713090734],[161.08541085410855,-9.320389476772604],[161.03861038610387,-9.313635167693079],[161.0458104581046,-9.29674939499425],[161.01701017010174,-9.264666426866484],[161.00261002610029,-9.254534963247181],[160.99540995409956,-9.252846385977307],[160.9810098100981,-9.254534963247181],[160.97380973809737,-9.251157808707418],[160.970209702097,-9.244403499627893],[160.970209702097,-9.227517726929065],[160.970209702097,-9.220763417849525],[160.94500945009452,-9.200500490610935],[160.8910089100891,-9.175171831562693],[160.86940869408693,-9.15153174978434],[160.7938079380794,-9.019822722733494],[160.77940779407794,-8.970853981906885],[160.76500765007654,-8.947213900128531],[160.76860768607685,-8.938771013779117],[160.7722077220772,-8.933705281969466],[160.76860768607685,-8.92695097288994],[160.76500765007654,-8.920196663810415],[160.76500765007654,-8.904999468381462],[160.74700747007472,-8.854342150284978],[160.73260732607326,-8.834079223046388],[160.69300693006932,-8.751338936822137],[160.68940689406895,-8.737830318663072],[160.68940689406895,-8.683795846026825],[160.6858068580686,-8.675352959677426],[160.65340653406537,-8.604432714342352],[160.67140671406713,-8.59261267345316],[160.70020700207004,-8.567284014404933],[160.7182071820718,-8.562218282595282],[160.7182071820718,-8.553775396245868],[160.69660696606968,-8.501429500879496],[160.65700657006573,-8.449083605513138],[160.649806498065,-8.438952141893836],[160.6390063900639,-8.433886410084199],[160.60300603006033,-8.400114864686543],[160.59220592205924,-8.38491766925759],[160.58140581405814,-8.341014660240646],[160.60300603006033,-8.325817464811706],[160.6390063900639,-8.329194619351469],[160.6750067500675,-8.342703237510534],[160.69660696606968,-8.361277587479236],[160.7038070380704,-8.364654742018999],[160.7146071460715,-8.362966164749125],[160.72540725407254,-8.356211855669585],[160.7290072900729,-8.34945754659006],[160.72540725407254,-8.341014660240646],[160.69660696606968,-8.320751733002055],[160.70020700207004,-8.312308846652641],[160.70740707407077,-8.305554537573101],[160.7146071460715,-8.302177383033339],[160.72180721807217,-8.302177383033339],[160.72180721807217,-8.308931692112878],[160.74700747007472,-8.308931692112878],[160.7578075780758,-8.317374578462292],[160.77940779407794,-8.342703237510534],[160.79020790207903,-8.352834701129822],[160.80100801008012,-8.359589010209348],[160.80820808208085,-8.368031896558762],[160.8190081900819,-8.38491766925759],[160.82260822608225,-8.39673771014678],[160.82620826208262,-8.40518059649618],[160.82620826208262,-8.415312060115482],[160.82980829808298,-8.420377791925134],[160.84420844208444,-8.428820678274548],[160.8478084780848,-8.43219783281431],[160.88020880208802,-8.484543728180668],[160.93420934209342,-8.538578200816914],[160.97380973809737,-8.57234974621457],[160.99540995409956,-8.604432714342352],[161.00621006210065,-8.623007064311054],[161.009810098101,-8.64158141427977],[161.00261002610029,-8.66184434151836],[160.98460984609846,-8.673664382407537],[160.95940959409597,-8.682107268756951],[160.94140941409415,-8.69223873237624],[160.94860948609488,-8.705747350535304],[160.95220952209525,-8.71925596869437],[160.95220952209525,-8.731076009583546],[160.9378093780938,-8.758093245901676],[160.9378093780938,-8.771601864060727],[160.94140941409415,-8.785110482219793],[160.94140941409415,-8.798619100378858],[160.94500945009452,-8.813816295807797],[160.9666096660967,-8.830702068506625],[160.970209702097,-8.840833532125927],[160.97740977409774,-8.850964995745215],[160.9918099180992,-8.847587841205453],[161.01341013410138,-8.837456377586165],[161.0242102421024,-8.840833532125927],[161.04941049410496,-8.861096459364518],[161.06021060210605,-8.871227922983806],[161.06021060210605,-8.877982232063346],[161.0566105661057,-8.883047963872997],[161.05301053010533,-8.889802272952522],[161.06021060210605,-8.898245159301936],[161.06741067410672,-8.903310891111587],[161.07461074610745,-8.903310891111587],[161.07821078210782,-8.899933736571825],[161.07821078210782,-8.898245159301936],[161.10341103411037,-8.910065200191113],[161.12861128611286,-8.92695097288994],[161.15021150211504,-8.94890247739842],[161.1682116821168,-8.974231136446662],[161.15741157411577,-8.96916540463701],[161.14661146611468,-8.977608290986424],[161.1430114301143,-8.989428331875601],[161.15021150211504,-8.994494063685252],[161.1646116461165,-8.999559795494903],[161.17541175411753,-9.01137983638408],[161.18261182611826,-9.028265609082908],[161.17541175411753,-9.043462804511847],[161.18621186211863,-9.048528536321498],[161.189811898119,-9.05359426813115],[161.189811898119,-9.062037154480564],[161.189811898119,-9.072168618099852],[161.189811898119,-9.083988658989028],[161.19701197011972,-9.085677236258917],[161.20421204212045,-9.085677236258917],[161.21141211412117,-9.090742968068568],[161.21501215012154,-9.09412012260833],[161.2222122221222,-9.097497277148094],[161.22941229412294,-9.104251586227619],[161.22941229412294,-9.114383049846921],[161.22581225812257,-9.119448781656573],[161.20421204212045,-9.138023131625275],[161.2222122221222,-9.146466017974689],[161.22581225812257,-9.15153174978434],[161.22941229412294,-9.158286058863865],[161.2438124381244,-9.153220327054228],[161.2546125461255,-9.156597481593991],[161.2618126181262,-9.16672894521328],[161.25821258212585,-9.17854898610247],[161.26541265412658,-9.180237563372344],[161.28341283412834,-9.18699187245187],[161.28341283412834,-9.19374618153141],[161.25821258212585,-9.19881191334106],[161.24741247412476,-9.200500490610935],[161.2438124381244,-9.205566222420586],[161.2438124381244,-9.217386263309763],[161.25101251012512,-9.22920630419894],[161.2546125461255,-9.23427203600859],[161.2618126181262,-9.242714922358005],[161.26541265412658,-9.278175045025549],[161.27981279812798,-9.289995085914725],[161.26541265412658,-9.29674939499425],[161.25821258212585,-9.289995085914725],[161.2546125461255,-9.279863622295423],[161.2438124381244,-9.27648646775566],[161.23661236612367,-9.281552199565311],[161.23661236612367,-9.2916836631846],[161.24741247412476,-9.303503704073776],[161.2870128701287,-9.344029558550972],[161.2978129781298,-9.3609153312498],[161.32661326613265,-9.438589885664399],[161.33741337413375,-9.447032772013813],[161.34821348213484,-9.455475658363227],[161.3626136261363,-9.474050008331929],[161.38061380613806,-9.509510130999473],[161.39141391413915,-9.587184685414073],[161.39141391413915,-9.609136189922552],[161.3878138781388,-9.620956230811728],[161.3770137701377,-9.624333385351491],[161.35901359013593,-9.617579076271966]]],[[[134.4847448474485,-6.576451413213221],[134.509945099451,-6.579828567752983],[134.52074520745208,-6.586582876832523],[134.51714517145172,-6.600091494991588],[134.509945099451,-6.608534381341002],[134.50274502745026,-6.627108731309704],[134.49914499144995,-6.6372401949290065],[134.4739447394474,-6.662568853977248],[134.4487444874449,-6.66088027670736],[134.42714427144273,-6.652437390357946],[134.40194401944018,-6.657503122167597],[134.40194401944018,-6.6642574312471226],[134.419944199442,-6.6642574312471226],[134.43434434344346,-6.677766049406188],[134.43794437944382,-6.682831781215839],[134.4307443074431,-6.691274667565253],[134.419944199442,-6.704783285724304],[134.4091440914409,-6.714914749343606],[134.39834398343987,-6.719980481153257],[134.34794347943483,-6.80103219010762],[134.3659436594366,-6.807786499187159],[134.35874358743587,-6.82129511734621],[134.3119431194312,-6.860132394553517],[134.2435424354244,-6.88377247633187],[134.20754207542075,-6.910789712650001],[134.18594185941862,-6.919232598999415],[134.1571415714157,-6.873641012712582],[134.14634146341467,-6.858443817283629],[134.13914139141394,-6.855066662743866],[134.12834128341285,-6.850000930934215],[134.0887408874089,-6.838180890045038],[134.07434074340745,-6.826360849155861],[134.06354063540635,-6.795966458297968],[134.05634056340563,-6.775703531059378],[134.05274052740526,-6.763883490170201],[134.05274052740526,-6.7520634492810245],[134.06714067140672,-6.719980481153257],[134.08514085140854,-6.6423059267386435],[134.1031410314103,-6.475136777020268],[134.11034110341103,-6.459939581591314],[134.11754117541176,-6.4514966952419],[134.12114121141212,-6.461628158861203],[134.13194131941322,-6.480202508829905],[134.18594185941862,-6.488645395179319],[134.2111421114211,-6.507219745148035],[134.20754207542075,-6.490333972449207],[134.18954189541898,-6.463316736131077],[134.18954189541898,-6.444742386162375],[134.13554135541358,-6.449808117972026],[134.12114121141212,-6.419413727114133],[134.12834128341285,-6.3248534000007055],[134.12114121141212,-6.29108185460305],[134.09954099540994,-6.225227341077627],[134.09594095940963,-6.191455795679971],[134.1031410314103,-6.1796357547907945],[134.11034110341103,-6.172881445711255],[134.1247412474125,-6.171192868441381],[134.13554135541358,-6.176258600251032],[134.14634146341467,-6.1880786411402084],[134.15354153541534,-6.203275836569148],[134.16434164341644,-6.2150958774583245],[134.20034200342002,-6.223538763807738],[134.21474214742148,-6.235358804696915],[134.24714247142475,-6.269130350094571],[134.2759427594276,-6.289393277333161],[134.29034290342906,-6.2944590091428125],[134.29394293942943,-6.297836163682575],[134.2975429754298,-6.306279050031989],[134.3011430114301,-6.316410513651292],[134.2975429754298,-6.3248534000007055],[134.2867428674287,-6.336673440889882],[134.2867428674287,-6.341739172699533],[134.3119431194312,-6.373822140827301],[134.329943299433,-6.38901933625624],[134.34794347943483,-6.399150799875542],[134.39114391143914,-6.407593686224956],[134.40554405544054,-6.419413727114133],[134.419944199442,-6.432922345273198],[134.43794437944382,-6.444742386162375],[134.44154441544418,-6.446430963432263],[134.44514445144455,-6.443053808892486],[134.4487444874449,-6.441365231622612],[134.45594455944558,-6.444742386162375],[134.45954459544595,-6.4514966952419],[134.4631446314463,-6.454873849781677],[134.4631446314463,-6.459939581591314],[134.4631446314463,-6.465005313400965],[134.48114481144813,-6.4970882815287325],[134.4847448474485,-6.507219745148035],[134.48834488344886,-6.508908322417923],[134.48834488344886,-6.510596899687798],[134.49194491944922,-6.517351208767323],[134.48834488344886,-6.5207283633071],[134.4847448474485,-6.522416940576974],[134.48114481144813,-6.525794095116737],[134.47754477544777,-6.530859826926388],[134.4847448474485,-6.576451413213221]]],[[[134.75834758347582,-6.1576842502823155],[134.75834758347582,-6.167815713901618],[134.75834758347582,-6.176258600251032],[134.75474754747546,-6.183012909330557],[134.7475474754748,-6.189767218410083],[134.74394743947443,-6.198210104759497],[134.75114751147515,-6.218473031998087],[134.7475474754748,-6.230293072887278],[134.74034740347406,-6.242113113776455],[134.72234722347224,-6.282638968253636],[134.71874718747188,-6.297836163682575],[134.7007470074701,-6.321476245460943],[134.6287462874629,-6.3518706363188215],[134.6071460714607,-6.368756409017649],[134.5819458194582,-6.3518706363188215],[134.57114571145712,-6.348493481779059],[134.56034560345603,-6.355247790858584],[134.5531455314553,-6.355247790858584],[134.5387453874539,-6.338362018159771],[134.53514535145354,-6.334984863619994],[134.53514535145354,-6.331607709080231],[134.51714517145172,-6.314721936381403],[134.509945099451,-6.31134478184164],[134.50274502745026,-6.299524740952464],[134.45954459544595,-6.277573236443985],[134.4487444874449,-6.26406461828492],[134.43794437944382,-6.26406461828492],[134.3767437674377,-6.238735959236678],[134.37314373143732,-6.2370473819668035],[134.36954369543696,-6.233670227427041],[134.3659436594366,-6.22860449561739],[134.3659436594366,-6.223538763807738],[134.35874358743587,-6.220161609267976],[134.3551435514355,-6.221850186537864],[134.34794347943483,-6.225227341077627],[134.34434344343447,-6.226915918347501],[134.33354333543338,-6.221850186537864],[134.32634326343265,-6.210030145648673],[134.32274322743228,-6.198210104759497],[134.31554315543156,-6.189767218410083],[134.29034290342906,-6.155995673012427],[134.2759427594276,-6.118846973075009],[134.2759427594276,-6.083386850407479],[134.29394293942943,-6.054681036819474],[134.3119431194312,-6.0479267277399344],[134.329943299433,-6.049615305009823],[134.34794347943483,-6.051303882279711],[134.3659436594366,-6.0344181095808835],[134.36954369543696,-6.024286645961581],[134.33354333543338,-6.02597522323147],[134.3119431194312,-6.027663800501344],[134.3011430114301,-6.015843759612167],[134.30474304743046,-6.000646564183228],[134.31554315543156,-5.9837607914844],[134.31914319143192,-5.966875018785572],[134.3119431194312,-5.9550549778963955],[134.2867428674287,-5.9246605870385025],[134.29034290342906,-5.917906277958977],[134.2975429754298,-5.912840546149326],[134.3119431194312,-5.9027090825300235],[134.32274322743228,-5.8892004643709726],[134.32274322743228,-5.868937537132368],[134.35874358743587,-5.850363187163666],[134.3551435514355,-5.835165991734726],[134.3551435514355,-5.828411682655187],[134.3767437674377,-5.804771600876833],[134.3767437674377,-5.792951559987657],[134.36234362343623,-5.78113151909848],[134.35154351543514,-5.792951559987657],[134.3407434074341,-5.804771600876833],[134.329943299433,-5.804771600876833],[134.32634326343265,-5.784508673638243],[134.31914319143192,-5.772688632749066],[134.2975429754298,-5.767622900939415],[134.26514265142652,-5.767622900939415],[134.24714247142475,-5.760868591859875],[134.2327423274233,-5.750737128240587],[134.20754207542075,-5.728785623732108],[134.20034200342002,-5.71189985103328],[134.21474214742148,-5.696702655604341],[134.23634236342366,-5.683194037445276],[134.2579425794258,-5.678128305635624],[134.2759427594276,-5.684882614715164],[134.30834308343083,-5.71189985103328],[134.329943299433,-5.71865416011282],[134.35154351543514,-5.715277005573043],[134.35874358743587,-5.703456964683866],[134.36234362343623,-5.688259769254927],[134.3659436594366,-5.671373996556099],[134.3767437674377,-5.661242532936797],[134.39114391143914,-5.652799646587383],[134.40554405544054,-5.640979605698206],[134.4091440914409,-5.627470987539141],[134.41274412744127,-5.61396236938009],[134.45594455944558,-5.534599237695602],[134.4631446314463,-5.553173587664304],[134.4739447394474,-5.558239319473955],[134.4847448474485,-5.553173587664304],[134.49194491944922,-5.541353546775127],[134.4955449554496,-5.543042124045016],[134.50634506345062,-5.548107855854667],[134.50634506345062,-5.527844928616062],[134.50634506345062,-5.517713464996774],[134.50274502745026,-5.510959155917249],[134.4955449554496,-5.500827692297946],[134.49194491944922,-5.495761960488295],[134.49194491944922,-5.448481796931588],[134.49194491944922,-5.441727487852049],[134.4955449554496,-5.4366617560423975],[134.50274502745026,-5.4315960242327606],[134.509945099451,-5.429907446962872],[134.51714517145172,-5.429907446962872],[134.52074520745208,-5.4315960242327606],[134.52074520745208,-5.4366617560423975],[134.5279452794528,-5.4400389105821745],[134.5387453874539,-5.4400389105821745],[134.56754567545676,-5.428218869692984],[134.5819458194582,-5.424841715153221],[134.6287462874629,-5.4451046423918115],[134.63594635946362,-5.455236106011114],[134.6467464674647,-5.492384805948532],[134.65754657546574,-5.504204846837709],[134.68994689946902,-5.5244677740762995],[134.69714697146975,-5.534599237695602],[134.68994689946902,-5.536287814965476],[134.66834668346684,-5.548107855854667],[134.67554675546756,-5.55148501039443],[134.67914679146793,-5.558239319473955],[134.6827468274683,-5.575125092172783],[134.67554675546756,-5.575125092172783],[134.67554675546756,-5.568370783093258],[134.65034650346507,-5.575125092172783],[134.64314643146434,-5.578502246712546],[134.63594635946362,-5.588633710331848],[134.64314643146434,-5.58694513306196],[134.6719467194672,-5.588633710331848],[134.67914679146793,-5.5903222876017225],[134.68994689946902,-5.597076596681262],[134.71154711547115,-5.608896637570439],[134.7367473674737,-5.637602451158443],[134.75834758347582,-5.671373996556099],[134.74034740347406,-5.684882614715164],[134.7259472594726,-5.71189985103328],[134.71874718747188,-5.737228510081522],[134.71874718747188,-5.752425705510461],[134.7259472594726,-5.75411428278035],[134.73314733147333,-5.755802860050238],[134.7367473674737,-5.759180014590001],[134.74034740347406,-5.765934323669526],[134.74034740347406,-5.772688632749066],[134.7367473674737,-5.7878858281780055],[134.72954729547297,-5.803083023606945],[134.71154711547115,-5.823345950845535],[134.70434704347042,-5.835165991734726],[134.72234722347224,-5.838543146274489],[134.74394743947443,-5.846986032623903],[134.75474754747546,-5.860494650782954],[134.75114751147515,-5.877380423481782],[134.75474754747546,-5.87906900075167],[134.75834758347582,-5.885823309831196],[134.76554765547655,-5.890889041640847],[134.75474754747546,-5.8976433507203865],[134.73314733147333,-5.909463391609563],[134.72234722347224,-5.917906277958977],[134.71874718747188,-5.901020505260149],[134.70794707947078,-5.895954773450498],[134.7007470074701,-5.9027090825300235],[134.69714697146975,-5.917906277958977],[134.70434704347042,-5.926349164308391],[134.72954729547297,-5.936480627927679],[134.7367473674737,-5.944923514277093],[134.7259472594726,-5.944923514277093],[134.72234722347224,-5.944923514277093],[134.7367473674737,-5.970252173325335],[134.72234722347224,-5.971940750595223],[134.69354693546939,-5.961809286975921],[134.67554675546756,-5.951677823356633],[134.66834668346684,-5.944923514277093],[134.6611466114661,-5.938169205197568],[134.65394653946538,-5.933103473387916],[134.63954639546398,-5.931414896118028],[134.62514625146252,-5.933103473387916],[134.61434614346143,-5.938169205197568],[134.6071460714607,-5.943234937007219],[134.59994599946003,-5.951677823356633],[134.64314643146434,-5.948300668816856],[134.65754657546574,-5.953366400626507],[134.6611466114661,-5.975317905134986],[134.6719467194672,-5.987137946024163],[134.71154711547115,-6.020909491421818],[134.7259472594726,-6.027663800501344],[134.76554765547655,-6.076632541327939],[134.77274772747728,-6.090141159487004],[134.76914769147692,-6.113781241265372],[134.75474754747546,-6.135732745773836],[134.7367473674737,-6.154307095742553],[134.71874718747188,-6.164438559361841],[134.71154711547115,-6.161061404822078],[134.71154711547115,-6.159372827552204],[134.70434704347042,-6.1576842502823155],[134.7007470074701,-6.171192868441381],[134.69714697146975,-6.181324332060669],[134.68994689946902,-6.1880786411402084],[134.74034740347406,-6.171192868441381],[134.75834758347582,-6.1576842502823155]]],[[[127.24147241472417,-3.471157813898941],[127.24507245072454,-3.6062439954895638],[127.22707227072272,-3.643392695426982],[127.20547205472053,-3.66027846812581],[127.18747187471877,-3.66027846812581],[127.16587165871658,-3.6535241590462704],[127.14067140671409,-3.648458427236619],[127.12267122671227,-3.6535241590462704],[127.00027000270006,-3.7143129407620563],[126.98946989469897,-3.717690095301819],[126.98226982269824,-3.7244444043813445],[126.9570695706957,-3.7548387952392375],[126.94626946269466,-3.7649702588585257],[126.90666906669065,-3.7869217633670047],[126.82746827468276,-3.810561845145358],[126.77706777067772,-3.832513349653837],[126.74106741067413,-3.8595305859719673],[126.71946719467195,-3.854464854162316],[126.69786697866982,-3.8645963177816043],[126.67266672666727,-3.8426448132731394],[126.65466654666545,-3.8342019269237255],[126.58986589865901,-3.8173161542248977],[126.55746557465574,-3.79367607244653],[126.52506525065252,-3.7902989179067674],[126.4386643866439,-3.7497730634295863],[126.38106381063812,-3.7024928998728655],[126.3630636306363,-3.6974271680632285],[126.32346323463236,-3.687295704443926],[126.27666276662768,-3.6636556226655728],[126.25866258662586,-3.6417041181570937],[126.24426244262446,-3.6315726545377913],[126.20466204662046,-3.6315726545377913],[126.17226172261724,-3.602866840949787],[126.16506165061651,-3.567406718282257],[126.14706147061474,-3.5251922865351872],[126.08946089460898,-3.4829778547881176],[126.06786067860679,-3.4677806593591782],[126.05346053460534,-3.445829154850699],[126.0426604266043,-3.4205004958024574],[126.0426604266043,-3.4120576094530435],[126.00666006660066,-3.36140029135656],[125.99225992259926,-3.2482656142744304],[126.01746017460175,-3.1705910598598166],[126.03546035460357,-3.1537052871609887],[126.06426064260643,-3.133442359922398],[126.08946089460898,-3.1114908554139333],[126.1110611106111,-3.1216223190332215],[126.1218612186122,-3.1486395553513518],[126.13626136261365,-3.1604595962405284],[126.16146161461614,-3.172279637129705],[126.18666186661869,-3.180722523479119],[126.20106201062009,-3.1824111007490075],[126.22626226262264,-3.1739682143995935],[126.22626226262264,-3.150328132621226],[126.25866258662586,-3.1216223190332215],[126.29826298262986,-3.106425123604282],[126.42066420664207,-3.070965000936738],[126.71946719467195,-3.06083353731745],[126.83826838268385,-3.0743421554765007],[126.85986859868598,-3.0861621963656916],[126.87426874268743,-3.109802278144045],[126.89226892268925,-3.1249994735729842],[126.91746917469175,-3.114868009953696],[126.93546935469357,-3.1300652053826354],[126.9570695706957,-3.1385080917320494],[126.97866978669788,-3.141885246271812],[127.00027000270006,-3.150328132621226],[127.03627036270365,-3.1739682143995935],[127.05427054270541,-3.1790339462092305],[127.08307083070832,-3.194231141638184],[127.09387093870941,-3.2009854507177096],[127.10107101071014,-3.211116914337012],[127.10827108271081,-3.219559800686426],[127.10827108271081,-3.229691264305714],[127.11187111871118,-3.2651513869732582],[127.11187111871118,-3.2719056960527837],[127.10467104671045,-3.273594273322672],[127.09387093870941,-3.2719056960527837],[127.08307083070832,-3.268528541513021],[127.06867068670687,-3.260085655163607],[127.05427054270541,-3.260085655163607],[127.04347043470437,-3.2719056960527837],[127.03987039870401,-3.287102891481723],[127.04707047070474,-3.3056772414504394],[127.05427054270541,-3.3225630141492672],[127.06147061470614,-3.334383055038444],[127.06867068670687,-3.3360716323083324],[127.07947079470796,-3.3495802504673833],[127.09387093870941,-3.36140029135656],[127.11547115471154,-3.3681546004360996],[127.12627126271263,-3.3630888686264484],[127.13707137071373,-3.339448786848095],[127.14787147871482,-3.334383055038444],[127.15867158671585,-3.3377602095782066],[127.1946719467195,-3.356334559546923],[127.23787237872381,-3.3630888686264484],[127.25947259472593,-3.3715317549758623],[127.27027270272703,-3.3867289504048017],[127.2630726307263,-3.405303300373518],[127.24507245072454,-3.449206309390462],[127.24147241472417,-3.471157813898941]]],[[[153.13653136531366,-4.2698548625534585],[153.12933129331293,-4.325577912459593],[153.12573125731257,-4.350906571507821],[153.13653136531366,-4.376235230556063],[153.11133111331117,-4.403252466874193],[153.0537305373054,-4.452221207700788],[153.03933039330394,-4.485992753098444],[153.0429304293043,-4.50456710306716],[153.0537305373054,-4.516387143956337],[153.0645306453065,-4.526518607575625],[153.07533075330753,-4.54002722573469],[153.0789307893079,-4.555224421163629],[153.0789307893079,-4.570421616592583],[153.0789307893079,-4.585618812021522],[153.07533075330753,-4.60250458472035],[153.0681306813068,-4.610947471069764],[153.0429304293043,-4.626144666498703],[153.03573035730358,-4.636276130118006],[153.03573035730358,-4.6616047891662475],[153.03573035730358,-4.6700476755156615],[153.02853028530285,-4.68017913913495],[153.01413014130145,-4.690310602754252],[153.00693006930072,-4.698753489103666],[152.9997299973,-4.710573529992843],[152.9889298892989,-4.744345075390498],[152.98172981729817,-4.759542270819438],[152.97092970929708,-4.767985157168852],[152.96012960129605,-4.7764280435182656],[152.95292952929532,-4.7848709298676795],[152.9457294572946,-4.800068125296619],[152.9241292412924,-4.793313816217093],[152.91332913329137,-4.808511011646033],[152.909729097291,-4.830462516154512],[152.8989289892899,-4.849036866123228],[152.88812888128882,-4.818642475265335],[152.87372873728737,-4.788248084407442],[152.84852848528487,-4.764608002629089],[152.8161281612816,-4.746033652660373],[152.81972819728196,-4.720704993612145],[152.7909279092791,-4.695376334563903],[152.75492754927552,-4.671736252785536],[152.73332733327334,-4.649784748277071],[152.7261272612726,-4.632898975578243],[152.7261272612726,-4.578864502941997],[152.72252722527224,-4.572110193862457],[152.70092700927012,-4.561978730243169],[152.6937269372694,-4.555224421163629],[152.69012690126902,-4.548470112084104],[152.6829268292683,-4.49781279398762],[152.6721267212672,-4.465729825859853],[152.6721267212672,-4.452221207700788],[152.69012690126902,-4.404941044144067],[152.69012690126902,-4.396498157794667],[152.70452704527048,-4.290117789792049],[152.6937269372694,-4.266477708013696],[152.69732697326975,-4.254657667124519],[152.69732697326975,-4.241149048965454],[152.6937269372694,-4.229329008076277],[152.68652686526866,-4.219197544456975],[152.6937269372694,-4.198934617218384],[152.6937269372694,-4.1820488445195565],[152.68652686526866,-4.163474494550854],[152.66132661326617,-4.129702949153199],[152.61092610926113,-4.031765467499994],[152.60732607326077,-4.00305965391199],[152.60012600126004,-3.986173881213162],[152.58212582125822,-3.9574680676251575],[152.5605256052561,-3.937205140386567],[152.55332553325536,-3.9236965222275018],[152.549725497255,-3.906810749528674],[152.54612546125463,-3.901745017719037],[152.53172531725318,-3.8916135540997345],[152.5281252812528,-3.8865478222900833],[152.52452524525245,-3.8747277814009067],[152.52452524525245,-3.8645963177816043],[152.51732517325172,-3.854464854162316],[152.51372513725136,-3.8477105450827906],[152.50652506525068,-3.8443333905430137],[152.48852488524886,-3.8443333905430137],[152.47772477724777,-3.840956236003251],[152.4741247412474,-3.832513349653837],[152.46332463324632,-3.8122504224152465],[152.44532445324455,-3.7987418042561814],[152.35892358923593,-3.6940500135234515],[152.35532355323556,-3.6839185499041633],[152.35892358923593,-3.66027846812581],[152.35892358923593,-3.6535241590462704],[152.3517235172352,-3.6450812726968564],[152.33372333723338,-3.6349498090775683],[152.31212312123125,-3.6113097272992007],[152.30132301323016,-3.5961125318702614],[152.2869228692287,-3.5690952955521453],[152.27252272522725,-3.5623409864726057],[152.25452254522548,-3.558963831932843],[152.24012240122403,-3.5538981001231917],[152.23652236522366,-3.5488323683135405],[152.22932229322294,-3.5319465956147127],[152.22572225722257,-3.5251922865351872],[152.21492214922148,-3.518437977455662],[152.19692196921972,-3.509995091106248],[152.17172171721717,-3.4897321638676573],[152.1537215372154,-3.488043586597769],[152.13212132121322,-3.488043586597769],[151.98451984519846,-3.4593377730097643],[151.94491944919451,-3.444140577580825],[151.80811808118085,-3.36140029135656],[151.61371613716136,-3.1655253280501796],[151.5957159571596,-3.155393864430877],[151.53451534515347,-3.141885246271812],[151.47331473314733,-3.118245164493459],[151.4661146611466,-3.1114908554139333],[151.46251462514624,-3.106425123604282],[151.45891458914588,-3.101359391794631],[151.45531455314557,-3.0946050827151055],[151.44811448114484,-3.0743421554765007],[151.44451444514448,-3.0675878463969752],[151.43011430114302,-3.05407922823791],[151.36531365313652,-3.0169305283004917],[151.34731347313476,-3.0017333328715523],[151.34011340113403,-2.9983561783317896],[151.29331293312936,-2.9797818283630733],[151.27171271712717,-2.9578303238546084],[151.26091260912608,-2.9510760147750688],[151.24291242912432,-2.9443217056955433],[151.2249122491225,-2.942633128425655],[151.21051210512104,-2.9358788193461294],[151.20331203312037,-2.920681623917176],[151.18171181711818,-2.895352964868948],[151.160111601116,-2.895352964868948],[151.15291152911533,-2.895352964868948],[151.15291152911533,-2.890287233059297],[151.15291152911533,-2.8869100785195343],[151.14931149311496,-2.881844346709883],[151.1349113491135,-2.873401460360469],[151.12411124111242,-2.8615814194712925],[151.12051120511205,-2.859892842201404],[151.1169111691117,-2.85144995585199],[151.1169111691117,-2.8480728013122274],[151.1025110251103,-2.841318492232702],[151.09891098910992,-2.837941337692925],[151.0917109171092,-2.832875605883288],[151.0809108091081,-2.829498451343511],[151.04491044910452,-2.824432719533874],[151.0377103771038,-2.819366987724223],[151.0269102691027,-2.8075469468350462],[151.01251012510124,-2.7957269059458554],[151.00891008910088,-2.7906611741362184],[150.99810998109984,-2.785595442326567],[150.98730987309875,-2.7839068650566787],[150.9621096210962,-2.780529710516916],[150.9369093690937,-2.767021092357851],[150.91530915309153,-2.7653325150879766],[150.83610836108363,-2.7788411332470417],[150.79650796507968,-2.7788411332470417],[150.76050760507604,-2.7687096696277393],[150.73890738907392,-2.745069587849386],[150.73890738907392,-2.7332495469602094],[150.74610746107464,-2.718052351531256],[150.76050760507604,-2.7112980424517303],[150.7749077490775,-2.7214295060710185],[150.79650796507968,-2.7298723924204324],[150.81450814508145,-2.7214295060710185],[150.8541085410854,-2.697789424292665],[150.87570875708758,-2.7129866197216046],[150.8937089370894,-2.697789424292665],[150.8937089370894,-2.675837919784186],[150.86850868508685,-2.6690836107046607],[150.8829088290883,-2.6538864152757213],[150.8829088290883,-2.643754951656419],[150.86850868508685,-2.6370006425768935],[150.85770857708576,-2.635312065307005],[150.839708397084,-2.6336234880371165],[150.82530825308254,-2.630246333497354],[150.79290792907932,-2.6150491380684144],[150.81450814508145,-2.5745232835912333],[150.81090810908108,-2.5711461290514706],[150.81090810908108,-2.5627032427020566],[150.81090810908108,-2.555948933622517],[150.83250832508327,-2.5660803972418194],[150.84330843308436,-2.5762118608611075],[150.8505085050851,-2.588031901750284],[150.85770857708576,-2.5981633653695866],[150.89010890108904,-2.616737715338303],[150.89730897308976,-2.618426292608177],[150.90090900909013,-2.630246333497354],[150.91170911709116,-2.6386892198467677],[150.9369093690937,-2.64882068346607],[150.9621096210962,-2.6809036515938374],[150.9729097290973,-2.6893465379432513],[150.98010980109802,-2.692723692483014],[151.02331023310234,-2.6994780015625537],[151.03051030510306,-2.7045437333721907],[151.0377103771038,-2.7079208879119676],[151.04491044910452,-2.7112980424517303],[151.04851048510488,-2.714675196991493],[151.05571055710556,-2.736626701499972],[151.06291062910628,-2.745069587849386],[151.07371073710738,-2.750135319659023],[151.08451084510847,-2.750135319659023],[151.09531095310956,-2.7535124741988],[151.10971109711096,-2.758578206008437],[151.1709117091171,-2.785595442326567],[151.19251192511928,-2.8075469468350462],[151.19971199712,-2.8446956467724647],[151.21771217712177,-2.8700243058207064],[151.25731257312572,-2.876778614900232],[151.3329133291333,-2.8750900376303434],[151.3437134371344,-2.876778614900232],[151.35091350913513,-2.8835329239797574],[151.3545135451355,-2.8919758103291713],[151.3581135811358,-2.900418696678585],[151.3689136891369,-2.903795851218362],[151.37971379713798,-2.9021072739484737],[151.3869138691387,-2.898730119408711],[151.3977139771398,-2.895352964868948],[151.41931419314193,-2.900418696678585],[151.43731437314375,-2.908861583027999],[151.45531455314557,-2.920681623917176],[151.47331473314733,-2.9358788193461294],[151.50211502115025,-2.974716096553422],[151.50931509315092,-2.9764046738233105],[151.5309153091531,-2.9764046738233105],[151.5417154171542,-2.978093251093199],[151.59931599315996,-3.0203076828402544],[151.610116101161,-3.01861910557038],[151.6857168571686,-3.0675878463969752],[151.7037170371704,-3.087850773635566],[151.71451714517144,-3.1047365463343937],[151.73251732517326,-3.1266880508428727],[151.75411754117545,-3.141885246271812],[151.77931779317794,-3.1351309371922866],[151.78651786517867,-3.1604595962405284],[151.79731797317976,-3.1773453689393563],[151.81531815318152,-3.1874768325586444],[151.82971829718298,-3.190853987098407],[151.86571865718656,-3.189165409828533],[151.87651876518765,-3.190853987098407],[151.89811898118984,-3.2009854507177096],[151.90891908919093,-3.2043626052574723],[151.92331923319233,-3.197608296177947],[151.93411934119342,-3.202674027987598],[151.95211952119524,-3.2178712234165374],[151.970119701197,-3.2313798415756025],[151.97371973719737,-3.2313798415756025],[152.00612006120065,-3.2313798415756025],[152.01332013320132,-3.2347569961153653],[152.02772027720277,-3.2448884597346535],[152.03132031320314,-3.246577037004542],[152.0457204572046,-3.2448884597346535],[152.05292052920532,-3.246577037004542],[152.05292052920532,-3.2499541915443046],[152.05292052920532,-3.2533313460840674],[152.05292052920532,-3.260085655163607],[152.0565205652057,-3.2634628097033698],[152.05292052920532,-3.2752828505925464],[152.05292052920532,-3.2803485824021976],[152.0565205652057,-3.282037159672086],[152.06372063720636,-3.285414314211849],[152.06732067320672,-3.285414314211849],[152.07452074520745,-3.2938572005612627],[152.1105211052111,-3.331005900498681],[152.16092160921613,-3.4019261458337553],[152.18612186121862,-3.432320536691634],[152.21852218522184,-3.457649195739876],[152.25452254522548,-3.4779121229784664],[152.3229232292323,-3.511683668376122],[152.3409234092341,-3.5268808638050757],[152.35892358923593,-3.537012327424364],[152.3625236252363,-3.5437666365039036],[152.36972369723696,-3.580915336441322],[152.37332373323733,-3.5842924909810847],[152.38052380523806,-3.5876696455208474],[152.38772387723878,-3.59104680006061],[152.39132391323915,-3.5961125318702614],[152.39852398523988,-3.607932572759438],[152.40932409324097,-3.621441190918503],[152.41652416524164,-3.6450812726968564],[152.42372423724237,-3.656901313586033],[152.44532445324455,-3.668721354475224],[152.46332463324632,-3.668721354475224],[152.48132481324814,-3.6585898908559216],[152.49212492124923,-3.643392695426982],[152.50652506525068,-3.656901313586033],[152.52092520925208,-3.6754756635547494],[152.5281252812528,-3.69573859079334],[152.53532535325354,-3.7143129407620563],[152.5389253892539,-3.7244444043813445],[152.55692556925572,-3.744707331619935],[152.5605256052561,-3.7548387952392375],[152.5605256052561,-3.7683474133983026],[152.55692556925572,-3.7767902997477165],[152.55332553325536,-3.7869217633670047],[152.55692556925572,-3.7987418042561814],[152.56772567725676,-3.8088732678754837],[152.5749257492575,-3.8173161542248977],[152.5749257492575,-3.8206933087646604],[152.58572585725858,-3.824070463304423],[152.59652596525967,-3.827447617844186],[152.6181261812618,-3.827447617844186],[152.64332643326435,-3.832513349653837],[152.66132661326617,-3.8443333905430137],[152.67932679326793,-3.8612191632418416],[152.69732697326975,-3.876416358670795],[152.71892718927188,-3.884859245020209],[152.7369273692737,-3.8916135540997345],[152.75492754927552,-3.8966792859093857],[152.77652776527765,-3.8966792859093857],[152.79812798127983,-3.888236399559972],[152.8125281252813,-3.8747277814009067],[152.82332823328233,-3.871350626861144],[152.83772837728378,-3.8966792859093857],[152.83772837728378,-3.906810749528674],[152.84132841328415,-3.9270736767672645],[152.84132841328415,-3.937205140386567],[152.84852848528487,-3.9473366040058693],[152.85932859328597,-3.9659109539745714],[152.86292862928633,-3.976042417593874],[152.870128701287,-3.991239613022813],[152.89172891728919,-3.9979939221023386],[152.91332913329137,-3.999682499372227],[152.93132931329313,-3.999682499372227],[152.93132931329313,-3.9979939221023386],[152.9457294572946,-3.986173881213162],[152.95652956529568,-3.9979939221023386],[152.95652956529568,-4.011502540261404],[152.95652956529568,-4.025011158420469],[152.96012960129605,-4.040208353849408],[152.97092970929708,-4.055405549278362],[152.9997299973,-4.080734208326589],[153.01413014130145,-4.0942428264856545],[153.03933039330394,-4.149965876391789],[153.05733057330576,-4.173605958170143],[153.0681306813068,-4.19049173086897],[153.0645306453065,-4.197246039948496],[153.08253082530825,-4.20568892629791],[153.1077310773108,-4.224263276266626],[153.12933129331293,-4.247903358044979],[153.13653136531366,-4.2698548625534585]]],[[[121.52461524615245,12.703723854307427],[121.52821528215281,12.69190381341825],[121.53181531815318,12.67670661798931],[121.53541535415354,12.659820845290483],[121.54621546215463,12.64462364986153],[121.54621546215463,12.636180763512115],[121.54621546215463,12.610852104463874],[121.54261542615427,12.609163527194],[121.5390153901539,12.609163527194],[121.53181531815318,12.605786372654237],[121.49221492214923,12.550063322748102],[121.48141481414814,12.538243281858925],[121.45621456214565,12.523046086429986],[121.44901449014492,12.521357509160097],[121.44181441814419,12.523046086429986],[121.43821438214383,12.521357509160097],[121.43461434614346,12.512914622810683],[121.43821438214383,12.496028850111855],[121.43821438214383,12.48927454103233],[121.44181441814419,12.48252023195279],[121.43461434614346,12.474077345603376],[121.4310143101431,12.48252023195279],[121.42741427414273,12.475765922873265],[121.42381423814237,12.470700191063614],[121.42741427414273,12.463945881984088],[121.4310143101431,12.453814418364786],[121.41301413014133,12.443682954745498],[121.41301413014133,12.414977141157493],[121.42381423814237,12.3845827502996],[121.44181441814419,12.366008400330884],[121.44181441814419,12.359254091251358],[121.40221402214024,12.369385554870647],[121.38421384213842,12.369385554870647],[121.38061380613806,12.350811204901945],[121.38781387813879,12.344056895822419],[121.38781387813879,12.335614009473005],[121.38781387813879,12.327171123123591],[121.38061380613806,12.317039659504289],[121.39141391413915,12.313662504964526],[121.39501395013951,12.306908195885],[121.39501395013951,12.300153886805461],[121.39501395013951,12.290022423186173],[121.36621366213666,12.308596773154875],[121.35541355413557,12.323793968583814],[121.34101341013411,12.317039659504289],[121.31581315813162,12.296776732265698],[121.30501305013053,12.293399577725936],[121.29061290612907,12.286645268646396],[121.27261272612725,12.269759495947568],[121.24741247412476,12.219102177851099],[121.2438124381244,12.214036446041447],[121.22941229412294,12.214036446041447],[121.20781207812081,12.235987950549926],[121.19341193411935,12.241053682359563],[121.13221132211322,12.241053682359563],[121.11421114211146,12.251185145978866],[121.09981099811,12.27482522775722],[121.09261092610927,12.303531041345224],[121.09981099811,12.330548277663354],[121.10701107011073,12.313662504964526],[121.11421114211146,12.305219618615112],[121.12861128611286,12.303531041345224],[121.14301143011431,12.310285350424763],[121.13581135811359,12.313662504964526],[121.12861128611286,12.313662504964526],[121.12141121411213,12.310285350424763],[121.11421114211146,12.327171123123591],[121.11421114211146,12.330548277663354],[121.09621096210964,12.345745473092293],[121.08901089010891,12.344056895822419],[121.08901089010891,12.323793968583814],[121.07101071010709,12.332236854933228],[121.04941049410496,12.349122627632056],[121.03141031410314,12.367696977600772],[121.02061020610205,12.389648482109251],[120.99540995409956,12.413288563887605],[120.98820988209883,12.416665718427367],[120.9810098100981,12.423420027506893],[120.93780937809379,12.494340272841967],[120.9270092700927,12.501094581921507],[120.9162091620916,12.512914622810683],[120.91980919809197,12.536554704589037],[120.93060930609306,12.577080559066232],[120.9270092700927,12.597343486304823],[120.92340923409233,12.617606413543413],[120.9126091260913,12.634492186242241],[120.88740887408875,12.66488657710012],[120.86940869408693,12.700346699767664],[120.85500855008553,12.715543895196603],[120.83340833408334,12.723986781546017],[120.81180811808122,12.723986781546017],[120.79740797407976,12.729052513355668],[120.7938079380794,12.752692595134022],[120.79020790207903,12.764512636023198],[120.78660786607867,12.783086985991915],[120.78660786607867,12.793218449611217],[120.7830078300783,12.805038490500394],[120.76500765007648,12.83205572681851],[120.76500765007648,12.840498613167924],[120.77220772207721,12.847252922247463],[120.77580775807758,12.8523186540571],[120.77940779407794,12.85907296313664],[120.77940779407794,12.867515849486054],[120.77580775807758,12.916484590312649],[120.76860768607685,12.946878981170542],[120.75780757807581,13.002602031076663],[120.73980739807399,13.032996421934556],[120.69660696606968,13.092096626380453],[120.6642066420664,13.156262562635987],[120.64260642606428,13.183279798954118],[120.5958059580596,13.198476994383057],[120.57780577805778,13.22211707616141],[120.55980559805602,13.22887138524095],[120.52380523805238,13.225494230701187],[120.51660516605165,13.230559962510824],[120.52740527405274,13.24913431247954],[120.49860498604988,13.272774394257894],[120.48060480604806,13.301480207845898],[120.46620466204661,13.33356317597368],[120.45900459004594,13.404483421308754],[120.45180451804521,13.419680616737693],[120.44100441004412,13.426434925817219],[120.43380433804339,13.426434925817219],[120.41580415804157,13.423057771277456],[120.4086040860409,13.419680616737693],[120.40140401404017,13.414614884928042],[120.39420394203944,13.409549153118391],[120.39420394203944,13.404483421308754],[120.38700387003871,13.399417689499103],[120.36900369003689,13.382531916800275],[120.35460354603549,13.380843339530387],[120.34020340203404,13.385909071340038],[120.32940329403294,13.39604053495934],[120.31860318603185,13.41123773038828],[120.30780307803082,13.428123503087107],[120.30780307803082,13.445009275785935],[120.31140311403112,13.466960780294414],[120.32220322203221,13.487223707533005],[120.33660336603367,13.505798057501707],[120.35820358203586,13.517618098390884],[120.37980379803798,13.526060984740297],[120.40140401404017,13.527749562010186],[120.47340473404734,13.510863789311358],[120.5310053100531,13.50917521204147],[120.54540545405456,13.510863789311358],[120.55620556205565,13.51424094385112],[120.56700567005669,13.512552366581247],[120.58500585005851,13.502420902961944],[120.5958059580596,13.499043748422181],[120.61380613806136,13.495666593882419],[120.65340653406537,13.497355171152293],[120.6750067500675,13.492289439342642],[120.68940689406895,13.482157975723354],[120.70740707407077,13.490600862072768],[120.71820718207181,13.485535130263116],[120.73620736207363,13.468649357564288],[120.75420754207545,13.466960780294414],[120.76860768607685,13.470337934834177],[120.80100801008012,13.482157975723354],[120.88740887408875,13.502420902961944],[120.9162091620916,13.51592952112101],[120.9270092700927,13.504109480231833],[120.93780937809379,13.507486634771595],[120.94500945009452,13.512552366581247],[120.94860948609488,13.531126716549949],[120.96300963009634,13.526060984740297],[120.97020970209701,13.527749562010186],[120.97740977409774,13.531126716549949],[120.97740977409774,13.526060984740297],[120.98460984609846,13.522683830200535],[120.9810098100981,13.51424094385112],[120.97380973809737,13.507486634771595],[120.96660966609664,13.504109480231833],[120.95580955809561,13.502420902961944],[120.96300963009634,13.49397801661253],[120.97380973809737,13.482157975723354],[120.98460984609846,13.472026512104051],[120.99540995409956,13.468649357564288],[121.00261002610029,13.460206471214875],[121.02781027810278,13.421369194007568],[121.04221042210423,13.412926307658168],[121.10701107011073,13.41630346219793],[121.1250112501125,13.404483421308754],[121.12141121411213,13.372400453180973],[121.12861128611286,13.372400453180973],[121.12861128611286,13.379154762260512],[121.13221132211322,13.394351957689452],[121.13581135811359,13.399417689499103],[121.13941139411395,13.406171998578628],[121.13941139411395,13.407860575848517],[121.15021150211504,13.412926307658168],[121.15741157411577,13.417992039467805],[121.17181171811717,13.421369194007568],[121.18261182611826,13.428123503087107],[121.18981189811899,13.441632121246172],[121.19701197011972,13.441632121246172],[121.21861218612185,13.404483421308754],[121.33381333813338,13.309923094195312],[121.3770137701377,13.245757157939778],[121.39141391413915,13.235625694320476],[121.41301413014133,13.232248539780713],[121.4310143101431,13.223805653431299],[121.44181441814419,13.20860845800236],[121.44181441814419,13.188345530763769],[121.44181441814419,13.178214067144467],[121.43461434614346,13.16639402625529],[121.4310143101431,13.156262562635987],[121.43461434614346,13.1461310990167],[121.44901449014492,13.13937678993716],[121.45981459814601,13.13937678993716],[121.47061470614705,13.14444252174681],[121.48141481414814,13.1461310990167],[121.50301503015032,13.14444252174681],[121.52821528215281,13.141065367207048],[121.54621546215463,13.130933903587746],[121.55341553415536,13.110670976349155],[121.549815498155,13.090408049110565],[121.53541535415354,13.0768994309515],[121.50301503015032,13.054947926443035],[121.48861488614887,13.036373576474318],[121.48141481414814,13.01442207196584],[121.48141481414814,12.990781990187486],[121.49221492214923,12.929993208471714],[121.49221492214923,12.913107435772886],[121.48141481414814,12.872581581295691],[121.4850148501485,12.85907296313664],[121.47781477814777,12.85907296313664],[121.4850148501485,12.830367149548636],[121.4850148501485,12.767889790562975],[121.4958149581496,12.745938286054496],[121.52101521015209,12.71216674065684],[121.52461524615245,12.703723854307427]]],[[[-66.73566735667356,-78.44230001942087],[-66.76806768067681,-78.45074290577028],[-66.8760687606876,-78.4591857921197],[-67.0560705607056,-78.49464591478724],[-67.05247052470524,-78.498023069327],[-67.02367023670236,-78.51490884202583],[-67.0560705607056,-78.5284174601849],[-67.16047160471604,-78.55374611923314],[-67.26487264872648,-78.60440343732961],[-67.30087300873008,-78.61791205548867],[-67.34047340473404,-78.62466636456821],[-67.35487354873548,-78.62973209637785],[-67.36927369273693,-78.63648640545739],[-67.38727387273872,-78.65674933269598],[-67.39807398073981,-78.6635036417755],[-67.78687786877869,-78.77326116431789],[-68.1720817208172,-78.88133010959038],[-68.56088560885608,-78.98939905486287],[-68.94608946089461,-79.09746800013536],[-68.9640896408964,-79.10928804102454],[-68.9640896408964,-79.1126651955643],[-68.96048960489604,-79.12110808191372],[-68.96048960489604,-79.12617381372337],[-68.97488974889748,-79.13799385461255],[-69.0000900009,-79.14643674096196],[-69.29529295292953,-79.21735698629703],[-69.3060930609306,-79.22411129537656],[-69.31329313293132,-79.2308656044561],[-69.3240932409324,-79.24606279988504],[-69.33129331293313,-79.25281710896456],[-69.36009360093601,-79.27139145893328],[-69.46449464494644,-79.29840869525141],[-69.59769597695977,-79.37439467239612],[-69.60489604896048,-79.37946040420577],[-69.61209612096121,-79.39128044509495],[-69.61929619296193,-79.3963461769046],[-69.630096300963,-79.40310048598413],[-69.6660966609666,-79.41154337233354],[-69.64809648096481,-79.41660910414319],[-69.60489604896048,-79.41829768141308],[-69.52569525695256,-79.41154337233354],[-69.5040950409504,-79.41492052687332],[-69.78129781297812,-79.44193776319143],[-69.82089820898209,-79.45882353589026],[-69.79929799297993,-79.46895499950955],[-69.66969669696697,-79.48752934947827],[-69.64809648096481,-79.49259508128792],[-69.58689586895869,-79.51961231760603],[-69.56169561695617,-79.52636662668557],[-69.49329493294933,-79.5331209357651],[-69.69129691296912,-79.54156382211451],[-69.70569705697056,-79.54494097665427],[-69.71649716497164,-79.55169528573381],[-69.72729727297272,-79.55844959481334],[-69.73449734497345,-79.56689248116275],[-69.64809648096481,-79.60404118110017],[-69.99369993699936,-79.649632767387],[-70.34290342903428,-79.69691293094372],[-70.710107101071,-79.68171573551477],[-71.07731077310773,-79.66820711735572],[-71.44451444514445,-79.65300992192677],[-71.55971559715597,-79.62261553106889],[-71.67131671316713,-79.58040109932182],[-71.77931779317792,-79.52467804941568],[-71.80451804518044,-79.50103796763733],[-71.81171811718117,-79.48921792674815],[-71.81531815318152,-79.47908646312885],[-71.81531815318152,-79.45375780408061],[-71.80451804518044,-79.42842914503237],[-71.78651786517865,-79.40478906325401],[-71.76851768517685,-79.38452613601542],[-71.7541175411754,-79.32542593156953],[-71.68931689316892,-79.26125999531399],[-71.59931599315993,-79.2004712135982],[-71.39411394113941,-79.10253373194502],[-70.99450994509945,-78.99446478667252],[-70.59130591305913,-78.88639584140003],[-70.41130411304113,-78.88301868686025],[-70.36450364503645,-78.87288722324097],[-70.27450274502745,-78.8408042551132],[-69.83169831698316,-78.800278400636],[-69.69489694896949,-78.7529982370793],[-69.60849608496085,-78.74624392799976],[-69.5760957609576,-78.73948961892023],[-69.47169471694717,-78.70234091898281],[-69.450094500945,-78.69220945536351],[-69.43569435694357,-78.68714372355387],[-69.01089010890108,-78.61960063275856],[-68.58248582485824,-78.55374611923314],[-68.15768157681576,-78.48620302843783],[-67.72927729277292,-78.4203485149124],[-67.62487624876249,-78.38319981497499],[-67.5780757807578,-78.3713797740858],[-67.28647286472864,-78.33929680595803],[-66.99126991269912,-78.30721383783026],[-66.73206732067321,-78.32072245598933],[-66.66366663666636,-78.33591965141827],[-66.60606606066061,-78.3629368877364],[-66.62766627666277,-78.37982266043521],[-66.660066600666,-78.38826554678462],[-66.83646836468364,-78.41359420583287],[-66.87246872468724,-78.42879140126182],[-66.83286832868329,-78.43723428761123],[-66.79326793267933,-78.440611442151],[-66.77886778867789,-78.4389228648811],[-66.76446764467644,-78.43723428761123],[-66.750067500675,-78.43554571034134],[-66.73566735667356,-78.44230001942087]]],[[[167.81387813878138,-16.41916831935947],[167.8210782107821,-16.41916831935947],[167.8318783187832,-16.430988360248648],[167.83547835478356,-16.447874132947476],[167.8426784267843,-16.458005596566778],[167.8210782107821,-16.48164567834513],[167.81387813878138,-16.485022832884894],[167.79947799477998,-16.486711410154783],[167.79227792277925,-16.493465719234308],[167.78867788677888,-16.50359718285361],[167.7778777787778,-16.515417223742787],[167.77067770677706,-16.5238601100922],[167.77067770677706,-16.532302996441615],[167.77067770677706,-16.54074588279103],[167.75987759877597,-16.54581161460068],[167.74547745477457,-16.54581161460068],[167.73827738277384,-16.537368728251266],[167.73467734677348,-16.527237264631964],[167.72747727477275,-16.517105801012676],[167.71667716677166,-16.515417223742787],[167.69147691476917,-16.510351491933136],[167.68427684276844,-16.50866291466326],[167.68067680676808,-16.500220028313848],[167.66627666276662,-16.500220028313848],[167.64827648276486,-16.501908605583722],[167.64107641076413,-16.501908605583722],[167.6230762307623,-16.493465719234308],[167.60147601476018,-16.501908605583722],[167.579875798758,-16.515417223742787],[167.5690756907569,-16.52554868736209],[167.57627576275763,-16.532302996441615],[167.57627576275763,-16.535680150981378],[167.579875798758,-16.537368728251266],[167.5906759067591,-16.53905730552114],[167.579875798758,-16.552565923680206],[167.5690756907569,-16.557631655489857],[167.5438754387544,-16.559320232759745],[167.52227522275223,-16.58127173726821],[167.5150751507515,-16.579583159998336],[167.50787507875077,-16.574517428188685],[167.50427504275046,-16.574517428188685],[167.5006750067501,-16.58802604634775],[167.49347493474937,-16.58802604634775],[167.48627486274864,-16.577894582728447],[167.4574745747458,-16.567763119109145],[167.4466744667447,-16.54581161460068],[167.43227432274324,-16.533991573711504],[167.42147421474215,-16.52048295555244],[167.41787417874178,-16.49853145104396],[167.4250742507425,-16.49853145104396],[167.42867428674288,-16.5052857601235],[167.4358743587436,-16.510351491933136],[167.44307443074433,-16.515417223742787],[167.45387453874542,-16.517105801012676],[167.45027450274506,-16.501908605583722],[167.44307443074433,-16.48164567834513],[167.4358743587436,-16.46307132837643],[167.41067410674106,-16.430988360248648],[167.40707407074075,-16.42085689662936],[167.40347403474038,-16.405659701200406],[167.40707407074075,-16.387085351231704],[167.40347403474038,-16.382019619422053],[167.39987399874002,-16.375265310342527],[167.3926739267393,-16.371888155802765],[167.38907389073893,-16.370199578532876],[167.38547385473856,-16.368511001262988],[167.3818738187382,-16.346559496754523],[167.3818738187382,-16.285770715038737],[167.38907389073893,-16.272262096879686],[167.37827378273784,-16.224981933322965],[167.37827378273784,-16.21822762424344],[167.37827378273784,-16.201341851544612],[167.37467374673747,-16.192898965195198],[167.3710737107371,-16.19121038792531],[167.36387363873638,-16.18952181065542],[167.36387363873638,-16.18614465611566],[167.3566735667357,-16.16925888341683],[167.32067320673207,-16.115224410780584],[167.30627306273067,-16.123667297129998],[167.3026730267303,-16.12873302893965],[167.29547295472958,-16.121978719860124],[167.27747277472776,-16.140553069828826],[167.23427234272344,-16.16925888341683],[167.2090720907209,-16.14899595617824],[167.1946719467195,-16.14393022436859],[167.1838718387184,-16.14899595617824],[167.18027180271804,-16.13886449255895],[167.17667176671767,-16.12873302893965],[167.1730717307173,-16.11860156532036],[167.1730717307173,-16.10847010170106],[167.16227162271622,-16.098338638081756],[167.15507155071555,-16.09158432900223],[167.14787147871482,-16.083141442652817],[167.14427144271446,-16.069632824493752],[167.14787147871482,-16.0459927427154],[167.18027180271804,-15.990269692809264],[167.1730717307173,-15.92441517928384],[167.17667176671767,-15.912595138394664],[167.18027180271804,-15.90415225204525],[167.18027180271804,-15.895709365695836],[167.1838718387184,-15.890643633886185],[167.1946719467195,-15.888955056616311],[167.22707227072272,-15.867003552107832],[167.33507335073352,-15.909217983854901],[167.33507335073352,-15.944678106522431],[167.39627396273966,-16.017286929127394],[167.37827378273784,-16.052747051794924],[167.38907389073893,-16.057812783604575],[167.39987399874002,-16.064567092684115],[167.40347403474038,-16.074698556303403],[167.39627396273966,-16.08651859719258],[167.40707407074075,-16.094961483541994],[167.41427414274142,-16.103404369891408],[167.4250742507425,-16.11184725624082],[167.44307443074433,-16.11860156532036],[167.4610746107461,-16.132110183479412],[167.46827468274682,-16.135487338019175],[167.4718747187472,-16.130421606209538],[167.4718747187472,-16.121978719860124],[167.46827468274682,-16.105092947161296],[167.4718747187472,-16.103404369891408],[167.47907479074792,-16.11353583351071],[167.49347493474937,-16.135487338019175],[167.49347493474937,-16.14393022436859],[167.48627486274864,-16.15406168798789],[167.48627486274864,-16.162504574337305],[167.50787507875077,-16.172636037956607],[167.5150751507515,-16.17601319249637],[167.52227522275223,-16.17601319249637],[167.5258752587526,-16.17094746068672],[167.5258752587526,-16.167570306146956],[167.52947529475296,-16.165881728877068],[167.53307533075332,-16.162504574337305],[167.53667536675368,-16.17432461522648],[167.54027540275405,-16.18614465611566],[167.54747547475478,-16.19627611973496],[167.5546755467555,-16.204719006084375],[167.56547565475654,-16.2114733151639],[167.5906759067591,-16.21822762424344],[167.60147601476018,-16.224981933322965],[167.62667626676267,-16.245244860561556],[167.63747637476376,-16.262130633260384],[167.65187651876522,-16.26888494233991],[167.68067680676808,-16.25875347872062],[167.6878768787688,-16.263819210530272],[167.69147691476917,-16.265507787800146],[167.69147691476917,-16.272262096879686],[167.68427684276844,-16.287459292308625],[167.70227702277026,-16.306033642277328],[167.74547745477457,-16.339805187674983],[167.77067770677706,-16.33642803313522],[167.78507785077852,-16.3583795376437],[167.7958779587796,-16.407348278470295],[167.77427774277743,-16.44111982386795],[167.77427774277743,-16.459694173836652],[167.78867788677888,-16.469825637455955],[167.78867788677888,-16.451251287487253],[167.7958779587796,-16.439431246598062],[167.80307803078034,-16.429299782978774],[167.81387813878138,-16.41916831935947]]],[[[157.52857528575288,-7.3329340301206685],[157.52857528575288,-7.35826268916891],[157.52497524975252,-7.370082730058087],[157.51417514175142,-7.376837039137627],[157.48537485374857,-7.376837039137627],[157.47457474574747,-7.3852799254870405],[157.44937449374493,-7.432560089043747],[157.44577445774456,-7.4207400481545704],[157.44217442174426,-7.413985739075045],[157.43497434974353,-7.413985739075045],[157.4277742777428,-7.417362893614808],[157.41337413374134,-7.407231429995505],[157.39177391773921,-7.402165698185868],[157.34497344973448,-7.398788543646106],[157.32697326973272,-7.392034234566566],[157.31257312573126,-7.378525616407501],[157.3089730897309,-7.359951266438799],[157.31617316173163,-7.336311184660445],[157.3089730897309,-7.339688339200208],[157.30177301773017,-7.344754071009859],[157.29097290972913,-7.356574111899036],[157.2837728377284,-7.353196957359259],[157.27657276572768,-7.356574111899036],[157.27657276572768,-7.370082730058087],[157.25857258572586,-7.359951266438799],[157.22257222572227,-7.348131225549622],[157.2009720097201,-7.336311184660445],[157.14697146971469,-7.3329340301206685],[157.13977139771401,-7.3329340301206685],[157.1325713257133,-7.343065493739971],[157.11817118171183,-7.343065493739971],[157.10377103771037,-7.3329340301206685],[157.09297092970928,-7.30253963926279],[157.08217082170825,-7.287342443833836],[157.0677706777068,-7.273833825674785],[157.0569705697057,-7.268768093865134],[157.04977049770497,-7.273833825674785],[157.02817028170284,-7.280588134754311],[157.01377013770139,-7.282276712024199],[157.02457024570248,-7.268768093865134],[157.01377013770139,-7.251882321166306],[156.99936999369993,-7.238373703007241],[156.9777697776978,-7.229930816657827],[156.95616956169562,-7.226553662118064],[156.94536945369452,-7.221487930308413],[156.92736927369276,-7.207979312149348],[156.8337683376834,-7.0999103668768555],[156.83016830168305,-7.089778903257567],[156.82656826568268,-7.077958862368391],[156.82296822968232,-7.067827398749088],[156.8157681576816,-7.062761666939437],[156.80136801368013,-7.059384512399674],[156.7941679416794,-7.05094162605026],[156.78336783367837,-7.027301544271907],[156.74376743767436,-6.973267071635661],[156.73296732967333,-6.966512762556121],[156.72216722167224,-6.956381298936833],[156.68616686166865,-6.8972810944909355],[156.6717667176672,-6.885461053601759],[156.62136621366216,-6.860132394553517],[156.6069660696607,-6.856755240013754],[156.5961659616596,-6.850000930934215],[156.4845648456485,-6.753752026550913],[156.48096480964813,-6.750374872011136],[156.45936459364594,-6.733489099312322],[156.45576455764558,-6.719980481153257],[156.4449644496445,-6.6642574312471226],[156.44856448564485,-6.643994504008532],[156.45576455764558,-6.630485885849467],[156.48816488164886,-6.603468649531351],[156.50616506165062,-6.600091494991588],[156.5277652776528,-6.603468649531351],[156.54936549365493,-6.610222958610876],[156.56016560165602,-6.623731576769941],[156.56736567365675,-6.627108731309704],[156.57456574565748,-6.632174463119355],[156.57816578165784,-6.640617349468769],[156.5817658176582,-6.649060235818183],[156.59256592565924,-6.649060235818183],[156.59976599765997,-6.6456830812784204],[156.60336603366034,-6.643994504008532],[156.64296642966428,-6.655814544897709],[156.66816668166683,-6.674388894866425],[156.72216722167224,-6.733489099312322],[156.7365673656737,-6.745309140201499],[156.779767797678,-6.775703531059378],[156.82296822968232,-6.787523571948569],[156.88416884168845,-6.829738003695624],[156.92736927369276,-6.850000930934215],[156.96336963369635,-6.856755240013754],[156.98136981369817,-6.865198126363168],[156.9921699216992,-6.868575280902931],[157.0029700297003,-6.8753295899824565],[157.01017010170102,-6.887149630871647],[157.01377013770139,-6.893903939951173],[157.0209702097021,-6.895592517221061],[157.0317703177032,-6.895592517221061],[157.04257042570424,-6.8972810944909355],[157.05337053370533,-6.905723980840349],[157.07497074970752,-6.934429794428354],[157.1109711097111,-6.966512762556121],[157.1217712177122,-6.980021380715186],[157.1217712177122,-6.998595730683903],[157.12537125371256,-7.040810162430972],[157.13617136171365,-7.086401748717805],[157.1541715417154,-7.123550448655223],[157.16137161371614,-7.137059066814274],[157.17217172171723,-7.147190530433576],[157.18297182971833,-7.1606991485926414],[157.1865718657187,-7.179273498561344],[157.2009720097201,-7.169142034942055],[157.20817208172082,-7.164076303132404],[157.21537215372155,-7.182650653101106],[157.229772297723,-7.194470693990297],[157.24777247772477,-7.202913580339711],[157.2657726577266,-7.206290734879474],[157.28017280172804,-7.213045043958999],[157.29097290972913,-7.226553662118064],[157.29457294572944,-7.243439434816892],[157.2981729817298,-7.256948052975957],[157.30177301773017,-7.2670795165952455],[157.31617316173163,-7.272145248404897],[157.34497344973448,-7.282276712024199],[157.35577355773557,-7.289031021103725],[157.37017370173703,-7.2974739074531385],[157.38097380973812,-7.310982525612204],[157.38817388173885,-7.32280256650138],[157.39177391773921,-7.32280256650138],[157.39537395373952,-7.305916793802552],[157.40257402574025,-7.305916793802552],[157.41337413374134,-7.312671102882078],[157.42417424174243,-7.316048257421841],[157.44577445774456,-7.316048257421841],[157.45657456574565,-7.314359680151966],[157.4925749257493,-7.300851061992901],[157.51057510575106,-7.300851061992901],[157.52497524975252,-7.309293948342315],[157.52857528575288,-7.3329340301206685]]],[[[62.77202772027721,80.88509685763103],[62.88362883628838,80.8986054757901],[62.937629376293785,80.91042551667928],[63.0348303483035,80.94926279388656],[63.14283142831428,80.97121429839504],[63.58923589235894,80.97965718474447],[64.03564035640358,80.986411493824],[64.1688416884169,81.01005157560235],[64.1868418684187,81.01849446195178],[64.19404194041942,81.03200308011083],[64.19764197641976,81.043823121],[64.20124201242012,81.0539545846193],[64.21564215642158,81.05733173915905],[64.19764197641976,81.07084035731813],[64.1760417604176,81.07590608912778],[64.13284132841329,81.08266039820731],[64.1220412204122,81.09279186182661],[64.13284132841329,81.10461190271579],[64.15444154441545,81.11474336633509],[64.19044190441906,81.12149767541462],[64.20484204842049,81.12994056176402],[64.23724237242374,81.1518920662725],[64.25524255242553,81.1620235298918],[64.27324273242732,81.16877783897132],[64.42444424444244,81.19410649801955],[64.70524705247053,81.20592653890876],[64.78444784447845,81.1907293434798],[64.86724867248674,81.19410649801955],[65.23085230852308,81.13669487084354],[65.25965259652597,81.12318625268449],[65.3748537485375,81.06070889369883],[65.41805418054182,81.04551169826988],[65.43605436054361,81.03706881192048],[65.45045450454506,81.0235601937614],[65.30645306453064,80.9948543801734],[65.34965349653498,80.99316580290352],[65.38925389253893,80.986411493824],[65.42165421654218,80.97290287566494],[65.45405454054543,80.95095137115646],[65.46485464854649,80.93406559845764],[65.46125461254613,80.92562271210821],[65.4468544685447,80.91886840302868],[65.15525155251552,80.8496367349635],[65.07965079650796,80.84119384861407],[65.06165061650617,80.83275096226467],[65.04725047250474,80.82430807591524],[65.02565025650259,80.81417661229597],[65.00045000450007,80.80911088048632],[64.66924669246694,80.77702791235853],[64.58644586445865,80.75507640785005],[64.50364503645037,80.75507640785005],[64.42444424444244,80.741567789691],[64.10044100441004,80.72805917153195],[63.77643776437765,80.712861976103],[63.68643686436866,80.72805917153195],[63.40923409234094,80.70441908975357],[63.13203132031322,80.68246758524512],[62.87282872828729,80.73987921242113],[62.617226172261724,80.79729083959714],[62.5308253082531,80.80404514867666],[62.509225092250944,80.81079945775619],[62.502025020250215,80.82430807591524],[62.509225092250944,80.83443953953454],[62.52002520025201,80.8395052713442],[62.5308253082531,80.84457100315385],[62.77202772027721,80.88509685763103]]],[[[-180,-16.14899595617824],[180,-16.16925888341683],[179.93879938799387,-16.224981933322965],[179.9315993159932,-16.226670510592854],[179.91359913599138,-16.228359087862728],[179.90279902799028,-16.23173624240249],[179.89559895598956,-16.23849055148203],[179.88479884798852,-16.25368774691097],[179.88119881198816,-16.262130633260384],[179.8667986679867,-16.27395067414956],[179.85959859598597,-16.282393560498974],[179.85959859598597,-16.285770715038737],[179.85239852398524,-16.290836446848388],[179.8379983799838,-16.31447652862674],[179.79839798397984,-16.370199578532876],[179.78039780397808,-16.382019619422053],[179.78039780397808,-16.402282546660643],[179.76239762397626,-16.432676937518536],[179.7371973719737,-16.459694173836652],[179.71559715597158,-16.469825637455955],[179.6939969399694,-16.47657994653548],[179.59679596795968,-16.53905730552114],[179.59319593195931,-16.54581161460068],[179.5859958599586,-16.552565923680206],[179.58239582395828,-16.567763119109145],[179.58239582395828,-16.579583159998336],[179.58239582395828,-16.594780355427275],[179.57879578795792,-16.611666128126103],[179.5715957159572,-16.62517474628517],[179.5607956079561,-16.635306209904456],[179.53559535595355,-16.65050340533341],[179.5247952479525,-16.658946291682824],[179.51759517595178,-16.66570060076235],[179.5067950679507,-16.68427495073105],[179.49959499594996,-16.68765210527083],[179.4851948519485,-16.692717837080465],[179.47799477994784,-16.697783568890117],[179.48879488794887,-16.70791503250942],[179.49239492394923,-16.724800805208247],[179.48879488794887,-16.74337515517695],[179.47799477994784,-16.758572350605903],[179.4851948519485,-16.765326659685428],[179.50319503195033,-16.755195196066126],[179.52119521195215,-16.75012946425649],[179.53559535595355,-16.751818041526363],[179.54639546395464,-16.765326659685428],[179.5607956079561,-16.755195196066126],[179.5859958599586,-16.729866537017898],[179.60039600396004,-16.724800805208247],[179.61119611196114,-16.72311222793836],[179.62199621996223,-16.718046496128707],[179.63279632796332,-16.709603609779293],[179.63639636396363,-16.70116072342988],[179.639996399964,-16.68765210527083],[179.65079650796508,-16.682586373461177],[179.66159661596618,-16.68089779619129],[179.67239672396727,-16.677520641651526],[179.67239672396727,-16.672454909841875],[179.67599675996763,-16.658946291682824],[179.679596795968,-16.655569137143047],[179.68319683196836,-16.653880559873173],[179.6939969399694,-16.652191982603284],[179.69759697596976,-16.64881482806352],[179.7047970479705,-16.63868336444422],[179.71559715597158,-16.61335470539599],[179.7227972279723,-16.604911819046578],[179.7335973359734,-16.599846087236926],[179.74079740797407,-16.596468932697164],[179.7479974799748,-16.593091778157387],[179.75159751597516,-16.584648891807973],[179.75519755197553,-16.57620600545856],[179.76599765997662,-16.571140273648922],[179.78039780397808,-16.567763119109145],[179.8127981279813,-16.54581161460068],[179.83439834398348,-16.530614419171727],[179.84159841598415,-16.515417223742787],[179.85239852398524,-16.50866291466326],[179.90279902799028,-16.485022832884894],[179.909999099991,-16.47826852380537],[179.91359913599138,-16.471514214725843],[179.91719917199174,-16.466448482916192],[179.92439924399247,-16.46307132837643],[179.93879938799387,-16.46307132837643],[179.94239942399423,-16.468137060186066],[179.94239942399423,-16.47657994653548],[179.95319953199532,-16.500220028313848],[179.94959949599496,-16.50866291466326],[179.94239942399423,-16.517105801012676],[179.93519935199356,-16.5238601100922],[179.92439924399247,-16.552565923680206],[179.88839888398883,-16.615043282665866],[179.88839888398883,-16.620109014475517],[179.8919989199892,-16.631929055364694],[179.88839888398883,-16.635306209904456],[179.88479884798852,-16.636994787174345],[179.87399873998743,-16.635306209904456],[179.87039870398706,-16.635306209904456],[179.84879848798488,-16.662323446222587],[179.87399873998743,-16.66401202349246],[179.8919989199892,-16.675832064381638],[179.90279902799028,-16.694406414350354],[179.90279902799028,-16.718046496128707],[179.91719917199174,-16.716357918858833],[179.93519935199356,-16.719735073398596],[179.94959949599496,-16.729866537017898],[179.95319953199532,-16.745063732446837],[179.94239942399423,-16.751818041526363],[179.92799927999283,-16.75012946425649],[179.89559895598956,-16.738309423367298],[179.89919899198992,-16.745063732446837],[179.90639906399065,-16.760260927875777],[179.909999099991,-16.765326659685428],[179.89559895598956,-16.761949505145665],[179.88839888398883,-16.758572350605903],[179.87399873998743,-16.76870381422519],[179.86319863198634,-16.765326659685428],[179.85959859598597,-16.751818041526363],[179.86319863198634,-16.738309423367298],[179.82719827198275,-16.736620846097424],[179.8127981279813,-16.731555114287772],[179.8019980199802,-16.718046496128707],[179.78039780397808,-16.724800805208247],[179.7587975879759,-16.72311222793836],[179.74079740797407,-16.719735073398596],[179.72639726397267,-16.718046496128707],[179.71559715597158,-16.721423650668484],[179.70119701197012,-16.734932268827535],[179.68679686796867,-16.738309423367298],[179.67599675996763,-16.738309423367298],[179.66519665196654,-16.739998000637186],[179.66159661596618,-16.74675230971671],[179.6579965799658,-16.758572350605903],[179.65079650796508,-16.7484408869866],[179.65079650796508,-16.745063732446837],[179.64359643596435,-16.745063732446837],[179.63279632796332,-16.765326659685428],[179.59679596795968,-16.78896674146378],[179.58239582395828,-16.807541091432498],[179.56439564395646,-16.792343896003544],[179.54639546395464,-16.79065531873367],[179.50319503195033,-16.800786782352958],[179.4707947079471,-16.800786782352958],[179.4527945279453,-16.80585251416261],[179.43839438394383,-16.814295400512023],[179.40239402394025,-16.802475359622846],[179.37719377193775,-16.800786782352958],[179.2979929799298,-16.807541091432498],[179.2979929799298,-16.804163936892735],[179.3087930879309,-16.797409627813195],[179.31599315993162,-16.783901009654144],[179.32319323193235,-16.77039239149508],[179.3411934119341,-16.765326659685428],[179.35559355593557,-16.758572350605903],[179.34839348393484,-16.745063732446837],[179.3519935199352,-16.731555114287772],[179.3411934119341,-16.724800805208247],[179.3087930879309,-16.718046496128707],[179.28359283592835,-16.699472146160005],[179.26559265592658,-16.689340682540703],[179.25839258392585,-16.694406414350354],[179.24759247592476,-16.694406414350354],[179.17199171991723,-16.72311222793836],[179.1539915399154,-16.734932268827535],[179.1215912159122,-16.758572350605903],[179.12879128791292,-16.77545812330473],[179.1215912159122,-16.78896674146378],[179.1107911079111,-16.800786782352958],[179.09639096390964,-16.807541091432498],[179.06399063990642,-16.799098205083084],[179.0459904599046,-16.824426864131325],[179.0207902079021,-16.8953471094664],[179.0459904599046,-16.880149914037446],[179.0567905679057,-16.87846133676757],[179.0747907479075,-16.881838491307334],[179.06399063990642,-16.89365853219651],[179.03879038790387,-16.912232882165227],[179.02799027990284,-16.922364345784516],[179.0207902079021,-16.922364345784516],[179.00639006390065,-16.917298613974864],[178.9667896678967,-16.907167150355576],[178.9559895598956,-16.898724264006162],[178.94878948789489,-16.89028137765675],[178.94878948789489,-16.883527068577223],[178.94518945189452,-16.876772759497683],[178.92718927189276,-16.87339560495792],[178.91998919989203,-16.866641295878395],[178.91638916389167,-16.85819840952898],[178.91638916389167,-16.84806694590968],[178.90918909189094,-16.84806694590968],[178.90918909189094,-16.86832987314827],[178.89478894788948,-16.859886986798855],[178.8839888398884,-16.85819840952898],[178.87318873188735,-16.861575564068744],[178.86238862388626,-16.86832987314827],[178.8227882278823,-16.902101418545925],[178.81558815588158,-16.912232882165227],[178.80838808388086,-16.95107015937252],[178.80118801188013,-16.95782446845206],[178.79038790387904,-16.961201622991823],[178.78678786787867,-16.967955932071348],[178.80118801188013,-16.97808739569065],[178.76518765187654,-17.001727477469004],[178.76158761587618,-17.005104632008766],[178.73278732787327,-17.006793209278655],[178.72198721987223,-17.005104632008766],[178.7039870398704,-16.99835032292924],[178.69318693186932,-16.986530282040064],[178.68238682386823,-16.95782446845206],[178.6715867158672,-16.92574150032428],[178.6715867158672,-16.898724264006162],[178.6607866078661,-16.880149914037446],[178.63918639186392,-16.859886986798855],[178.62838628386282,-16.83793548229039],[178.63558635586355,-16.807541091432498],[178.61398613986142,-16.799098205083084],[178.6067860678607,-16.792343896003544],[178.60318603186033,-16.780523855114367],[178.5419854198542,-16.809229668702372],[178.51318513185134,-16.814295400512023],[178.48438484384843,-16.794032473273433],[178.49158491584916,-16.79065531873367],[178.49158491584916,-16.787278164193907],[178.48078480784807,-16.777146700574605],[178.48078480784807,-16.765326659685428],[178.48438484384843,-16.760260927875777],[178.49158491584916,-16.765326659685428],[178.4987849878499,-16.765326659685428],[178.49518495184952,-16.74675230971671],[178.50598505985062,-16.729866537017898],[178.5419854198542,-16.704537877969656],[178.5419854198542,-16.724800805208247],[178.54918549185493,-16.716357918858833],[178.5527855278553,-16.704537877969656],[178.55638556385566,-16.697783568890117],[178.56718567185675,-16.704537877969656],[178.57438574385748,-16.689340682540703],[178.5851858518585,-16.66570060076235],[178.58878588785888,-16.64881482806352],[178.56718567185675,-16.660634868952698],[178.5527855278553,-16.658946291682824],[178.5419854198542,-16.647126250793633],[178.53478534785347,-16.62855190082493],[178.5707857078571,-16.615043282665866],[178.58158581585815,-16.615043282665866],[178.58878588785888,-16.620109014475517],[178.59958599585997,-16.635306209904456],[178.6067860678607,-16.642060518983996],[178.6175861758618,-16.64543767352376],[178.649986499865,-16.64881482806352],[178.68238682386823,-16.667389178032238],[178.68958689586896,-16.669077755302112],[178.7039870398704,-16.667389178032238],[178.70758707587078,-16.662323446222587],[178.71118711187114,-16.657257714412935],[178.71838718387187,-16.64881482806352],[178.77238772387727,-16.60322324177669],[178.78678786787867,-16.596468932697164],[178.79758797587976,-16.606600396316452],[178.80118801188013,-16.635306209904456],[178.81558815588158,-16.630240478094805],[178.81918819188195,-16.62348616901528],[178.81558815588158,-16.598157509967038],[178.81918819188195,-16.58633746907786],[178.8479884798848,-16.54581161460068],[178.85158851588517,-16.55087734641033],[178.85518855188553,-16.56100881002962],[178.85518855188553,-16.567763119109145],[178.86238862388626,-16.562697387299508],[178.869588695887,-16.557631655489857],[178.869588695887,-16.55087734641033],[178.869588695887,-16.53905730552114],[178.87678876788772,-16.53905730552114],[178.88758887588875,-16.552565923680206],[178.89838898388984,-16.542434460060917],[178.90918909189094,-16.527237264631964],[178.91998919989203,-16.517105801012676],[178.93078930789306,-16.512040069203024],[178.92718927189276,-16.500220028313848],[178.91998919989203,-16.485022832884894],[178.91638916389167,-16.469825637455955],[178.91998919989203,-16.473202791995718],[178.93438934389343,-16.47657994653548],[178.9379893798938,-16.47826852380537],[178.94158941589416,-16.459694173836652],[178.95238952389525,-16.459694173836652],[178.95958959589598,-16.466448482916192],[178.9667896678967,-16.469825637455955],[178.9811898118981,-16.468137060186066],[179.00639006390065,-16.459694173836652],[179.05319053190533,-16.454628442027015],[179.10719107191073,-16.4360540920583],[179.1359913599136,-16.429299782978774],[179.16839168391687,-16.430988360248648],[179.17919179191796,-16.429299782978774],[179.17919179191796,-16.42592262843901],[179.18639186391863,-16.412414010279946],[179.189991899919,-16.407348278470295],[179.19719197191972,-16.405659701200406],[179.21519215192154,-16.402282546660643],[179.22239222392227,-16.39890539212088],[179.24039240392403,-16.39890539212088],[179.26919269192695,-16.405659701200406],[179.2979929799298,-16.409036855740183],[179.31599315993162,-16.395528237581118],[179.33039330393308,-16.407348278470295],[179.33759337593375,-16.403971123930532],[179.34479344793448,-16.39383966031123],[179.35919359193593,-16.388773928501593],[179.36639366393666,-16.390462505771467],[179.3735937359374,-16.405659701200406],[179.38079380793812,-16.407348278470295],[179.3879938799388,-16.407348278470295],[179.39159391593915,-16.405659701200406],[179.39519395193952,-16.405659701200406],[179.40239402394025,-16.407348278470295],[179.40239402394025,-16.39383966031123],[179.39519395193952,-16.37864246488229],[179.3879938799388,-16.366822423993113],[179.37719377193775,-16.360068114913574],[179.3879938799388,-16.35162522856416],[179.39879398793988,-16.348248074024397],[179.40959409594097,-16.348248074024397],[179.4167941679417,-16.35331380583405],[179.42399423994243,-16.33642803313522],[179.43119431194316,-16.319542260436393],[179.4419944199442,-16.309410796817104],[179.45639456394565,-16.319542260436393],[179.46359463594638,-16.302656487737565],[179.46719467194674,-16.287459292308625],[179.4707947079471,-16.27395067414956],[179.4851948519485,-16.265507787800146],[179.52119521195215,-16.267196365070035],[179.53559535595355,-16.262130633260384],[179.52119521195215,-16.245244860561556],[179.53199531995324,-16.245244860561556],[179.54279542795427,-16.250310592371207],[179.549995499955,-16.260442055990495],[179.55359553595537,-16.272262096879686],[179.56439564395646,-16.236801974212142],[179.56799567995682,-16.224981933322965],[179.5715957159572,-16.236801974212142],[179.58239582395828,-16.241867706021793],[179.59319593195931,-16.245244860561556],[179.6039960399604,-16.25199916964108],[179.61119611196114,-16.243556283291667],[179.61839618396186,-16.241867706021793],[179.6255962559626,-16.24862201510132],[179.62919629196296,-16.25875347872062],[179.62919629196296,-16.243556283291667],[179.63279632796332,-16.23849055148203],[179.639996399964,-16.236801974212142],[179.64719647196472,-16.23849055148203],[179.65439654396545,-16.235113396942253],[179.65439654396545,-16.228359087862728],[179.6579965799658,-16.219916201513314],[179.6579965799658,-16.21822762424344],[179.66159661596618,-16.21822762424344],[179.6687966879669,-16.219916201513314],[179.67239672396727,-16.223293356053077],[179.67599675996763,-16.224981933322965],[179.6939969399694,-16.224981933322965],[179.70119701197012,-16.223293356053077],[179.7047970479705,-16.214850469703663],[179.71199711997122,-16.208096160624137],[179.7335973359734,-16.197964697004835],[179.76599765997662,-16.181078924306007],[179.76959769597698,-16.19627611973496],[179.77319773197735,-16.219916201513314],[179.78039780397808,-16.23173624240249],[179.7911979119791,-16.226670510592854],[179.8127981279813,-16.208096160624137],[179.82719827198275,-16.204719006084375],[179.8379983799838,-16.208096160624137],[179.84159841598415,-16.21316189243379],[179.8379983799838,-16.219916201513314],[179.82719827198275,-16.224981933322965],[179.8379983799838,-16.228359087862728],[179.85239852398524,-16.228359087862728],[179.8559985599856,-16.23173624240249],[179.8667986679867,-16.21653904697355],[179.90279902799028,-16.187833233385547],[179.909999099991,-16.179390347036133],[179.98199981999824,-16.14899595617824],[180,-16.14899595617824],[-180,-16.14899595617824]]],[[[14.761947619476189,68.49431685123179],[14.718747187471877,68.49093969669201],[14.704347043470449,68.51289120120049],[14.657546575465773,68.52977697389932],[14.625146251462525,68.5432855920584],[14.603546035460369,68.55848278748732],[14.62154621546216,68.5703028283765],[14.668346683466837,68.58718860107533],[14.715147151471513,68.57705713745605],[14.787147871478709,68.57367998291627],[14.866348663486633,68.56861425110662],[14.93114931149313,68.5618599420271],[14.999549995499962,68.55510563294757],[14.999549995499962,68.53484270570897],[14.995949959499598,68.53484270570897],[14.995949959499598,68.5331541284391],[14.992349923499233,68.53146555116922],[14.992349923499233,68.52977697389932],[14.98874988749887,68.52977697389932],[14.98874988749887,68.52808839662944],[14.985149851498534,68.52808839662944],[14.98154981549817,68.52808839662944],[14.98154981549817,68.52639981935957],[14.977949779497806,68.52639981935957],[14.977949779497806,68.52471124208967],[14.974349743497442,68.52471124208967],[14.970749707497077,68.52302266481979],[14.967149671496713,68.52302266481979],[14.967149671496713,68.52133408754992],[14.96354963549635,68.52133408754992],[14.96354963549635,68.51964551028004],[14.959949599496014,68.51964551028004],[14.959949599496014,68.51795693301014],[14.95634956349565,68.51795693301014],[14.95634956349565,68.51626835574027],[14.952749527495286,68.51626835574027],[14.952749527495286,68.51457977847039],[14.949149491494921,68.51457977847039],[14.945549455494557,68.51289120120049],[14.941949419494193,68.51120262393061],[14.93834938349383,68.50951404666074],[14.934749347493494,68.50951404666074],[14.934749347493494,68.50782546939084],[14.93114931149313,68.50782546939084],[14.93114931149313,68.50613689212096],[14.891548915489153,68.49431685123179],[14.761947619476189,68.49431685123179]]],[[[-50.6831068310683,63.12295255573491],[-50.69030690306903,63.11282109211564],[-50.70110701107009,63.111132514845735],[-50.711907119071185,63.111132514845735],[-50.72270722707228,63.10944393757586],[-50.74430744307443,63.102689628496336],[-50.76590765907659,63.09255816487703],[-50.79110791107911,63.084115278527634],[-50.81630816308163,63.084115278527634],[-50.84510845108451,63.09086958760716],[-50.863108631086305,63.106066783036084],[-50.87750877508773,63.124641133004815],[-50.8811088110881,63.138149751163866],[-50.86670866708667,63.14828121478317],[-50.81990819908199,63.16347841021212],[-50.8091080910809,63.16685556475187],[-50.79470794707947,63.1837413374507],[-50.78390783907838,63.19049564653022],[-50.77310773107732,63.192184223800126],[-50.72990729907298,63.17192129656152],[-50.711907119071185,63.13477259662412],[-50.6831068310683,63.12295255573491]]],[[[-50.4959049590496,63.1752984511013],[-50.485104851048504,63.16685556475187],[-50.47430474304741,63.15672410113257],[-50.47070470704708,63.146592637513294],[-50.48870488704887,63.14321548297352],[-50.57870578705786,63.133084019354214],[-50.60750607506074,63.11957540119516],[-50.62550625506253,63.11619824665539],[-50.636306363063625,63.11788682392529],[-50.65430654306542,63.12126397846504],[-50.66510665106651,63.12632971027469],[-50.67590675906757,63.13646117389399],[-50.67950679506794,63.14828121478317],[-50.67590675906757,63.15334694659282],[-50.65430654306542,63.165166987481996],[-50.60390603906038,63.2040042646893],[-50.57150571505716,63.2124471510387],[-50.53910539105391,63.19893853287965],[-50.53190531905318,63.187118491990475],[-50.52470524705245,63.182052760180824],[-50.510305103051024,63.18036418291095],[-50.4959049590496,63.1752984511013]]],[[[-64.88884888848888,63.79500630914825],[-64.91764917649176,63.823712122736254],[-64.89244892448924,63.84735220451461],[-64.81324813248132,63.88450090445201],[-64.7880478804788,63.85410651359413],[-64.77364773647736,63.84059789543508],[-64.7520475204752,63.828777854545905],[-64.74844748447484,63.83890931816518],[-64.75564755647557,63.84904078178448],[-64.76644766447664,63.85748366813391],[-64.77724777247772,63.86254939994356],[-64.770047700477,63.87436944083274],[-64.75924759247592,63.877746595372486],[-64.74484744847447,63.87605801810261],[-64.73044730447305,63.869303709023086],[-64.73044730447305,63.90307525442074],[-64.68724687246872,63.91827244984967],[-64.64404644046441,63.91489529530992],[-64.63684636846368,63.89800952261109],[-64.61524615246152,63.886189481721914],[-64.56124561245612,63.90814098623039],[-64.5540455404554,63.89800952261109],[-64.56484564845648,63.88450090445201],[-64.59724597245972,63.85748366813391],[-64.6080460804608,63.842286472704956],[-64.5540455404554,63.85241793632426],[-64.52884528845289,63.850729359054355],[-64.50364503645037,63.842286472704956],[-64.56484564845648,63.80344919549765],[-64.59724597245972,63.79500630914825],[-64.61164611646116,63.788252000068695],[-64.59364593645937,63.788252000068695],[-64.5540455404554,63.779809113719296],[-64.53964539645396,63.774743381909644],[-64.51444514445144,63.75616903194094],[-64.50004500045,63.75110330013129],[-64.48564485644856,63.75448045467104],[-64.47124471244712,63.76461191829034],[-64.46044460444604,63.77643195917952],[-64.44244442444425,63.78487484552895],[-64.42084420844208,63.78149769098917],[-64.41364413644136,63.77305480463977],[-64.38844388443884,63.73252895016259],[-64.410044100441,63.73252895016259],[-64.39924399243992,63.71564317746376],[-64.3920439204392,63.70044598203481],[-64.40284402844028,63.68862594114563],[-64.4280442804428,63.676805900256454],[-64.44244442444425,63.676805900256454],[-64.45684456844567,63.676805900256454],[-64.47124471244712,63.6801830547962],[-64.48564485644856,63.685248786605854],[-64.49284492844929,63.69200309568541],[-64.51444514445144,63.71564317746376],[-64.52164521645216,63.71902033200351],[-64.57564575645756,63.725774641083035],[-64.58284582845828,63.72915179562281],[-64.590045900459,63.73590610470234],[-64.59724597245972,63.74266041378186],[-64.64404644046441,63.752791877401165],[-64.68364683646836,63.779809113719296],[-64.70164701647016,63.78656342279882],[-64.72684726847268,63.78487484552895],[-64.770047700477,63.76967765009999],[-64.79164791647916,63.76798907283012],[-64.8420484204842,63.77812053644942],[-64.88884888848888,63.79500630914825]]],[[[-50.80550805508054,64.52784884427734],[-50.82350823508236,64.48563441253026],[-50.863108631086305,64.4619943307519],[-50.95670956709566,64.43159993989403],[-50.9999099991,64.4045827035759],[-51.039510395103946,64.37081115817824],[-51.064710647106466,64.33535103551071],[-51.08271082710826,64.32015384008176],[-51.10791107911078,64.3150881082721],[-51.1259112591126,64.3049566446528],[-51.140311403114026,64.26443079017562],[-51.154711547115454,64.25429932655632],[-51.179911799117974,64.2492335947467],[-51.230312303123014,64.22559351296832],[-51.2591125911259,64.21883920388879],[-51.280712807128054,64.22221635842857],[-51.3131131311313,64.23234782204787],[-51.33831338313382,64.24585644020692],[-51.33831338313382,64.26443079017562],[-51.30951309513094,64.27456225379493],[-51.248312483124835,64.2576764810961],[-51.21591215912159,64.26105363563588],[-51.22671226712268,64.26949652198527],[-51.23751237512374,64.2762508310648],[-51.26631266312663,64.28131656287445],[-51.248312483124835,64.29989091284315],[-51.21951219512195,64.29989091284315],[-51.1871118711187,64.29820233557328],[-51.16191161911618,64.30157949011306],[-51.19431194311943,64.32353099462154],[-51.205112051120494,64.33703961278059],[-51.19431194311943,64.34548249912999],[-51.190711907119066,64.35392538547941],[-51.18351183511834,64.36067969455894],[-51.17631176311764,64.36405684909872],[-51.16191161911618,64.36574542636859],[-51.15111151111512,64.36912258090837],[-51.14391143911439,64.37418831271799],[-51.13671136711366,64.38431977633729],[-51.14391143911439,64.39107408541682],[-51.15831158311582,64.3944512399566],[-51.16911169111691,64.39782839449637],[-51.18351183511834,64.39782839449637],[-51.15831158311582,64.41133701265542],[-51.11871118711187,64.42653420808438],[-51.08631086310862,64.4434199807832],[-51.08631086310862,64.46537148529168],[-51.079110791107894,64.48394583526039],[-51.0611106111061,64.49745445341944],[-51.02511025110252,64.52109453519779],[-51.028710287102854,64.52784884427734],[-51.03231032310322,64.53966888516652],[-51.03231032310322,64.5514889260557],[-51.021510215102154,64.55655465786535],[-50.86670866708667,64.55655465786535],[-50.83070830708306,64.5498003487858],[-50.80550805508054,64.52784884427734]]],[[[-51.298712987129875,64.38094262179754],[-51.32031320313203,64.3758768899879],[-51.34551345513455,64.3758768899879],[-51.36711367113671,64.37925404452764],[-51.40311403114032,64.39782839449637],[-51.424714247142475,64.39782839449637],[-51.5039150391504,64.38431977633729],[-51.51471514715146,64.38769693087707],[-51.51471514715146,64.3944512399566],[-51.507515075150735,64.40120554903612],[-51.49671496714967,64.4045827035759],[-51.45351453514536,64.40795985811565],[-51.431914319143175,64.4130255899253],[-51.41391413914138,64.42484563081447],[-51.42111421114211,64.42822278535425],[-51.424714247142475,64.43159993989403],[-51.42831428314284,64.43497709443378],[-51.42831428314284,64.43835424897355],[-51.3851138511385,64.4417314035133],[-51.34191341913419,64.4518628671326],[-51.349113491134915,64.47888010345073],[-51.27711277112772,64.53460315335687],[-51.26631266312663,64.56162038967497],[-51.09351093510935,64.5700632760244],[-51.09351093510935,64.56162038967497],[-51.097110971109714,64.56162038967497],[-51.10071100711008,64.5599318124051],[-51.104311043110414,64.55824323513522],[-51.140311403114026,64.53460315335687],[-51.154711547115454,64.52278311246769],[-51.16911169111691,64.50758591703874],[-51.172711727117274,64.49745445341944],[-51.172711727117274,64.4704372171013],[-51.17631176311764,64.46030575348203],[-51.20871208712086,64.44679713532295],[-51.248312483124835,64.40964843538555],[-51.26271262712626,64.39951697176625],[-51.298712987129875,64.38094262179754]]],[[[-65.54765547655477,64.54811177151592],[-65.5260552605526,64.53629173062674],[-65.50085500855008,64.53291457608697],[-65.45045450454504,64.53460315335687],[-65.4720547205472,64.52278311246769],[-65.50085500855008,64.51940595792792],[-65.55845558455584,64.52109453519779],[-65.65925659256592,64.50927449430861],[-65.68445684456844,64.51434022611826],[-65.68805688056881,64.54811177151592],[-65.65565655656556,64.5801947396437],[-65.60525605256052,64.6072119759618],[-65.55125551255512,64.62240917139076],[-65.49725497254973,64.66631218040772],[-65.45765457654576,64.67982079856677],[-65.44325443254432,64.68995226218607],[-65.42885428854288,64.72878953939338],[-65.41085410854109,64.74060958028255],[-65.39285392853928,64.73892100301268],[-65.3820538205382,64.7254123848536],[-65.3820538205382,64.71190376669455],[-65.41085410854109,64.65786929405829],[-65.39285392853928,64.65280356224864],[-65.3820538205382,64.66462360313784],[-65.36045360453605,64.70008372580537],[-65.3460534605346,64.71190376669455],[-65.31005310053101,64.73385527120303],[-65.2920529205292,64.74060958028255],[-65.29925299252992,64.72203523031385],[-65.28845288452884,64.7152809212343],[-65.27045270452705,64.71190376669455],[-65.25245252452524,64.71359234396442],[-65.26685266852668,64.70008372580537],[-65.31365313653136,64.66631218040772],[-65.27765277652776,64.66800075767759],[-65.26685266852668,64.66631218040772],[-65.25245252452524,64.65786929405829],[-65.25245252452524,64.65449213951854],[-65.25245252452524,64.64436067589924],[-65.24885248852488,64.63760636681971],[-65.23445234452345,64.64436067589924],[-65.22725227252272,64.64436067589924],[-65.20925209252093,64.64436067589924],[-65.21645216452164,64.63085205774019],[-65.22725227252272,64.62578632593053],[-65.2740527405274,64.62240917139076],[-65.28485284852849,64.61903201685101],[-65.30645306453064,64.61058913050158],[-65.33885338853388,64.60383482142205],[-65.40725407254072,64.60045766688228],[-65.43605436054361,64.59032620326298],[-65.4180541805418,64.58357189418345],[-65.40005400054,64.58188331691358],[-65.36045360453605,64.58188331691358],[-65.38925389253892,64.56162038967497],[-65.44325443254432,64.5514889260557],[-65.54765547655477,64.54811177151592]]],[[[-80.18180181801817,63.76798907283012],[-80.18180181801817,63.75616903194094],[-80.19620196201961,63.752791877401165],[-80.23220232202321,63.75448045467104],[-80.28260282602825,63.74266041378186],[-80.46620466204662,63.72746321835294],[-80.48060480604806,63.72239748654329],[-80.49140491404914,63.712266022923984],[-80.50220502205022,63.69369167295528],[-80.5130051300513,63.681871632066105],[-80.52380523805238,63.676805900256454],[-80.5310053100531,63.67511732298658],[-80.56340563405634,63.659920127557626],[-80.5850058500585,63.6430343548588],[-80.59940599405994,63.63628004577927],[-80.62820628206282,63.63121431396962],[-80.7290072900729,63.58899988222254],[-80.77580775807758,63.57717984133336],[-80.8010080100801,63.55860549136466],[-80.81540815408154,63.55522833682488],[-80.82260822608225,63.55353975955501],[-80.82620826208262,63.54847402774536],[-80.8370083700837,63.538342564126054],[-80.84420844208442,63.534965409586306],[-80.85140851408514,63.53327683231643],[-80.86220862208621,63.534965409586306],[-80.90180901809018,63.53327683231643],[-80.91980919809198,63.529899677776655],[-80.93060930609306,63.521456791427255],[-80.93420934209341,63.51132532780795],[-80.93420934209341,63.496128132379],[-80.93420934209341,63.48430809148982],[-80.93420934209341,63.47924235968017],[-80.98460984609845,63.45560227790182],[-80.99900999009989,63.45053654609217],[-81.02061020610206,63.45053654609217],[-81.1250112501125,63.46404516425122],[-81.22221222212222,63.50119386418865],[-81.45621456214562,63.55016260501526],[-81.49941499414994,63.57549126406349],[-81.53181531815318,63.58055699587314],[-81.63621636216362,63.57549126406349],[-81.66141661416614,63.58224557314301],[-81.67941679416793,63.59575419130209],[-81.7010170101701,63.61263996400092],[-81.72981729817297,63.63121431396962],[-81.76221762217622,63.641345777588924],[-81.79821798217982,63.64472293212867],[-81.83421834218342,63.64472293212867],[-81.8810188101881,63.63628004577927],[-81.89541895418954,63.63628004577927],[-81.91341913419134,63.641345777588924],[-81.94221942219421,63.654854395747975],[-81.9890198901989,63.6616087048275],[-82.0430204302043,63.685248786605854],[-82.07542075420754,63.69200309568541],[-82.2410224102241,63.68693736387576],[-82.26262262622626,63.67849447752633],[-82.2590225902259,63.66498585936728],[-82.28782287822878,63.685248786605854],[-82.32022320223201,63.659920127557626],[-82.35622356223561,63.659920127557626],[-82.48222482224821,63.685248786605854],[-82.48942489424894,63.68862594114563],[-82.4930249302493,63.695380250225156],[-82.48942489424894,63.71395460019386],[-82.4930249302493,63.71902033200351],[-82.53262532625325,63.73252895016259],[-82.55062550625506,63.74266041378186],[-82.55062550625506,63.75785760921082],[-82.53262532625325,63.78487484552895],[-82.51822518225183,63.79669488641812],[-82.50022500225002,63.801760618227775],[-82.47862478624786,63.80513777276752],[-82.43542435424354,63.8186463909266],[-82.41022410224102,63.82202354546635],[-82.39222392223922,63.82202354546635],[-82.3850238502385,63.823712122736254],[-82.37782377823778,63.828777854545905],[-82.37782377823778,63.83046643181578],[-82.37062370623705,63.84059789543508],[-82.35982359823598,63.85241793632426],[-82.35622356223561,63.85241793632426],[-82.35622356223561,63.86761513175318],[-82.35982359823598,63.87943517264236],[-82.36342363423634,63.88956663626166],[-82.35622356223561,63.89800952261109],[-82.37062370623705,63.913206718040016],[-82.39222392223922,63.92333818165932],[-82.47862478624786,63.95035541797745],[-82.4930249302493,63.95204399524732],[-82.50742507425073,63.9554211497871],[-82.52542525425254,63.97061834521605],[-82.53262532625325,63.97230692248593],[-82.73782737827378,63.97230692248593],[-82.84222842228422,63.98750411791485],[-82.86742867428674,63.98750411791485],[-82.95382953829538,63.97737265429558],[-82.99342993429934,63.9655526134064],[-83.02943029430294,63.9655526134064],[-83.05823058230582,63.953732572517225],[-83.08343083430834,63.95879830432685],[-83.13023130231302,63.97906123156545],[-83.13023130231302,63.98243838610523],[-83.12663126631266,63.989192695184755],[-83.1230312303123,63.994258426994406],[-83.1410314103141,63.99932415880406],[-83.13743137431373,64.00607846788358],[-83.10863108631087,64.02127566331251],[-83.07623076230762,64.04998147690051],[-83.04743047430473,64.06349009505959],[-82.9790297902979,64.11752456769582],[-82.97182971829717,64.12765603131513],[-82.96462964629646,64.13778749493443],[-82.96462964629646,64.14623038128383],[-82.97182971829717,64.158050422173],[-83.01143011430113,64.18675623576104],[-83.0150301503015,64.19182196757066],[-83.08343083430834,64.19013339030079],[-83.11943119431194,64.18337908122126],[-83.15183151831518,64.17155904033208],[-83.16983169831698,64.15467326763326],[-83.18423184231843,64.13441034039465],[-83.20223202232022,64.12259029950548],[-83.23463234632347,64.12765603131513],[-83.27063270632706,64.13778749493443],[-83.3030330303303,64.1411646494742],[-83.33543335433355,64.13441034039465],[-83.36783367833678,64.12427887677538],[-83.38943389433894,64.11245883588617],[-83.40023400234001,64.10908168134642],[-83.41823418234182,64.10908168134642],[-83.42543425434253,64.11245883588617],[-83.43983439834398,64.1209017222356],[-83.4470344703447,64.12427887677538],[-83.45783457834578,64.12596745404525],[-83.51183511835119,64.1209017222356],[-83.54063540635406,64.1107702586163],[-83.56223562235623,64.09557306318735],[-83.58383583835838,64.07531013594877],[-83.59463594635946,64.05504720871016],[-83.60183601836017,64.04491574509089],[-83.61623616236162,64.04153859055111],[-83.63783637836379,64.03985001328124],[-83.65223652236521,64.03309570420168],[-83.68463684636846,64.01452135423298],[-83.67743677436773,63.99932415880406],[-83.66663666636666,63.98750411791485],[-83.61983619836198,63.95204399524732],[-83.61623616236162,63.948666840707574],[-83.61623616236162,63.9452896861678],[-83.61263612636127,63.94191253162802],[-83.60543605436054,63.935158222548495],[-83.60543605436054,63.93009249073884],[-83.6090360903609,63.926715336199095],[-83.61263612636127,63.92333818165932],[-83.61623616236162,63.91658387257979],[-83.6270362703627,63.89463236807131],[-83.64143641436414,63.88281232718214],[-83.64863648636486,63.87605801810261],[-83.65223652236521,63.869303709023086],[-83.64143641436414,63.85579509086401],[-83.6090360903609,63.83384358635553],[-83.59463594635946,63.82202354546635],[-83.6090360903609,63.82202354546635],[-83.61623616236162,63.82033496819648],[-83.61983619836198,63.815269236386825],[-83.61623616236162,63.8085149273073],[-83.6270362703627,63.779809113719296],[-83.63423634236342,63.77136622736987],[-83.64863648636486,63.76461191829034],[-83.66663666636666,63.76798907283012],[-83.6990369903699,63.78149769098917],[-83.72783727837277,63.78149769098917],[-83.75663756637566,63.77812053644942],[-83.78543785437854,63.76798907283012],[-83.8970389703897,63.717331754733635],[-83.90783907839078,63.70888886838421],[-83.92223922239222,63.69369167295528],[-83.9330393303933,63.68862594114563],[-83.94743947439474,63.685248786605854],[-83.99423994239942,63.676805900256454],[-84.00864008640086,63.6717401684468],[-84.06264062640626,63.62108285035032],[-84.08784087840878,63.60926280946114],[-84.12024120241202,63.61095138673102],[-84.1850418504185,63.62952573669975],[-84.22824228242283,63.622771427620194],[-84.26064260642606,63.62952573669975],[-84.2750427504275,63.63121431396962],[-84.28584285842858,63.62614858215997],[-84.28944289442894,63.622771427620194],[-84.2930429304293,63.61601711854067],[-84.30024300243002,63.605885654921366],[-84.3110431104311,63.597442768571966],[-84.35064350643506,63.58224557314301],[-84.39024390243902,63.56029406863453],[-84.40464404644047,63.55522833682488],[-84.40464404644047,63.52652252323688],[-84.45144451444514,63.47924235968017],[-84.44424444244441,63.458979432441595],[-84.48024480244803,63.39312491891616],[-84.49464494644945,63.382993455296855],[-84.51984519845197,63.374550568947456],[-84.59184591845919,63.315450364501544],[-84.62064620646206,63.307007478152144],[-84.68184681846819,63.30025316907262],[-84.72144721447214,63.27661308729424],[-84.75744757447575,63.271547355484614],[-84.78624786247862,63.254661582785786],[-84.95544955449554,63.19387280107],[-85.09585095850959,63.15672410113257],[-85.27225272252723,63.12295255573491],[-85.45585455854558,63.12295255573491],[-85.50985509855099,63.129706864814466],[-85.58545585455855,63.173609873831396],[-85.59265592655926,63.18542991472057],[-85.60345603456034,63.2124471510387],[-85.63585635856359,63.24284154189661],[-85.63945639456394,63.25128442824601],[-85.6430564305643,63.26817020094484],[-85.64665646656466,63.27492451002436],[-85.6430564305643,63.293498859993065],[-85.64665646656466,63.34415617808955],[-85.65385653856538,63.355976218978725],[-85.65025650256503,63.37286199167755],[-85.65385653856538,63.418453577964385],[-85.65385653856538,63.43871650520299],[-85.63945639456394,63.45729085517169],[-85.62145621456214,63.47924235968017],[-85.6070560705607,63.50119386418865],[-85.61065610656107,63.521456791427255],[-85.60345603456034,63.521456791427255],[-85.61425614256142,63.534965409586306],[-85.62505625056251,63.55522833682488],[-85.62865628656286,63.57380268679361],[-85.62145621456214,63.58224557314301],[-85.61425614256142,63.587311304952664],[-85.59625596255962,63.60757423219127],[-85.5890558905589,63.61263996400092],[-85.59265592655926,63.624460004890096],[-85.60345603456034,63.64472293212867],[-85.60345603456034,63.654854395747975],[-85.61785617856178,63.67511732298658],[-85.64665646656466,63.68356020933598],[-85.68265682656826,63.690314518415505],[-85.70785707857078,63.69875740476493],[-85.7150571505715,63.71564317746376],[-85.7150571505715,63.73421752743246],[-85.71145711457115,63.752791877401165],[-85.7150571505715,63.76798907283012],[-85.7150571505715,63.774743381909644],[-85.76545765457654,63.73252895016259],[-85.79425794257942,63.71395460019386],[-85.81945819458194,63.70551171384446],[-85.95265952659527,63.69875740476493],[-86.21546215462155,63.6514772412082],[-86.28386283862838,63.64641150939855],[-86.49626496264962,63.6717401684468],[-86.6330663306633,63.66498585936728],[-86.66186661866618,63.65823155028775],[-86.69066690666907,63.641345777588924],[-86.7410674106741,63.60250850038162],[-86.80226802268022,63.57549126406349],[-86.8670686706867,63.561982645904436],[-87.0650706507065,63.55522833682488],[-87.12267122671227,63.56367122317431],[-87.17667176671766,63.58562272768279],[-87.21627216272162,63.622771427620194],[-87.22347223472235,63.659920127557626],[-87.20907209072091,63.69706882749503],[-87.17667176671766,63.730840372892686],[-86.95346953469534,63.89800952261109],[-86.89586895868959,63.93009249073884],[-86.5970659706597,63.997635581534155],[-86.5610656106561,64.01620993150289],[-86.49266492664927,64.02296424058241],[-86.41706417064171,64.05335863144029],[-86.34866348663486,64.0736215586789],[-86.25146251462515,64.07868729048855],[-86.2190621906219,64.08713017683795],[-86.19386193861938,64.10401594953677],[-86.1830618306183,64.12427887677538],[-86.18666186661866,64.14454180401395],[-86.19746197461974,64.16480473125256],[-86.21186211862118,64.18169050395139],[-86.23346233462334,64.19351054484056],[-86.29826298262982,64.21883920388879],[-86.31626316263163,64.23403639931774],[-86.31626316263163,64.24247928566714],[-86.3090630906309,64.25092217201657],[-86.30186301863019,64.25936505836597],[-86.29466294662946,64.2678079447154],[-86.31986319863198,64.27287367652505],[-86.33786337863378,64.28131656287445],[-86.35226352263523,64.29313660376363],[-86.3630636306363,64.30833379919258],[-86.3630636306363,64.32184241735163],[-86.36666366663667,64.33366245824081],[-86.37386373863738,64.34548249912999],[-86.37746377463775,64.35730254001919],[-86.37386373863738,64.37418831271799],[-86.36666366663667,64.38431977633729],[-86.35586355863558,64.3944512399566],[-86.3450634506345,64.41133701265542],[-86.37746377463775,64.4231570535446],[-86.40626406264062,64.43835424897355],[-86.39186391863919,64.45524002167238],[-86.38826388263882,64.47550294891096],[-86.38466384663846,64.54642319424605],[-86.38826388263882,64.5599318124051],[-86.42066420664206,64.59708051234253],[-86.38466384663846,64.62072059412088],[-86.35226352263523,64.65111498497876],[-86.24426244262442,64.80477551653809],[-86.2370623706237,64.81321840288751],[-86.22626226262263,64.81659555742726],[-86.19746197461974,64.81490698015739],[-86.1830618306183,64.81997271196704],[-86.17226172261722,64.83010417558634],[-86.19386193861938,64.83685848466587],[-86.2010620106201,64.84192421647552],[-86.20826208262082,64.85036710282492],[-86.1830618306183,64.85543283463457],[-86.18666186661866,64.86725287552375],[-86.21546215462155,64.8908929573021],[-86.19026190261903,64.89933584365153],[-86.16866168661686,64.90777873000093],[-86.15786157861578,64.9195987708901],[-86.15786157861578,64.93986169812871],[-86.17226172261722,64.95505889355766],[-86.21546215462155,64.97194466625649],[-86.22626226262263,64.98714186168542],[-86.22626226262263,65.00402763438424],[-86.2190621906219,65.02429056162285],[-86.21186211862118,65.04286491159155],[-86.2010620106201,65.05468495248073],[-86.1830618306183,65.06988214790968],[-86.16146161461614,65.08170218879886],[-86.1470614706147,65.09521080695791],[-86.13986139861399,65.11378515692664],[-86.13986139861399,65.18301682499182],[-86.13986139861399,65.19990259769065],[-86.15066150661507,65.223542679469],[-86.15066150661507,65.23705129762806],[-86.15786157861578,65.25393707032688],[-86.16866168661686,65.26913426575584],[-86.17226172261722,65.28602003845467],[-86.16146161461614,65.30628296569324],[-86.11466114661147,65.34680882017045],[-86.09666096660966,65.35694028378973],[-86.10746107461074,65.3687603246789],[-86.13986139861399,65.37551463375846],[-86.15066150661507,65.38564609737773],[-86.15066150661507,65.39577756099703],[-86.14346143461434,65.40928617915611],[-86.13626136261362,65.42110622004529],[-86.12906129061291,65.42954910639469],[-86.11826118261182,65.44474630182364],[-86.10386103861039,65.51397796988883],[-86.08226082260822,65.56125813344553],[-86.06426064260643,65.58658679249379],[-86.02826028260283,65.60684971973237],[-86.02466024660247,65.62711264697097],[-86.02826028260283,65.66426134690838],[-85.98865988659887,65.71154151046511],[-85.93825938259383,65.76388740583147],[-85.72585725857259,65.86351346475453],[-85.61065610656107,65.91079362831127],[-85.54225542255422,65.92092509193054],[-85.48825488254882,65.92430224647032],[-85.4630546305463,65.88039923745336],[-85.49185491854918,65.85844773294491],[-85.50625506255062,65.8381848057063],[-85.48825488254882,65.8196104557376],[-85.48825488254882,65.79597037395925],[-85.45585455854558,65.79428179668935],[-85.4270542705427,65.80272468303878],[-85.41625416254162,65.8094789921183],[-85.39825398253983,65.82974191935688],[-85.38385383853839,65.83649622843643],[-85.36945369453694,65.83987338297618],[-85.32625326253262,65.8381848057063],[-85.20025200252002,65.8094789921183],[-85.17145171451715,65.7892160648797],[-85.16425164251642,65.77739602399052],[-85.16785167851678,65.770641714911],[-85.17145171451715,65.76895313764112],[-85.17145171451715,65.76051025129169],[-85.16425164251642,65.75206736494229],[-85.1570515705157,65.74362447859286],[-85.15345153451534,65.73687016951334],[-85.16425164251642,65.73349301497359],[-85.18225182251823,65.72673870589404],[-85.16785167851678,65.70985293319521],[-85.07425074250742,65.64906415147945],[-85.05265052650526,65.63048980151072],[-85.05265052650526,65.61360402881189],[-85.08145081450814,65.59334110157332],[-85.11025110251101,65.58152106068414],[-85.25065250652506,65.55450382436601],[-85.28665286652866,65.55956955617566],[-85.3010530105301,65.55619240163588],[-85.31545315453154,65.54099520620696],[-85.26145261452614,65.5072236608093],[-85.2290522905229,65.49371504265022],[-85.16065160651605,65.48358357903095],[-85.07785077850778,65.45656634271282],[-85.02025020250203,65.42617195185491],[-85.00585005850058,65.41604048823564],[-85.00225002250022,65.40590902461634],[-85.00225002250022,65.39577756099703],[-85.0130501305013,65.36369459286925],[-85.02025020250203,65.35187455198007],[-84.99864998649986,65.32654589293185],[-84.93024930249302,65.26406853394619],[-84.92664926649266,65.25393707032688],[-84.92664926649266,65.24211702943771],[-84.93024930249302,65.22860841127866],[-84.93024930249302,65.21847694765935],[-84.91944919449195,65.2134112158497],[-84.84744847448474,65.2134112158497],[-84.8150481504815,65.22185410219913],[-84.78984789847898,65.24042845216783],[-84.78264782647827,65.25055991578714],[-84.76824768247683,65.28264288391489],[-84.7610476104761,65.28602003845467],[-84.75024750247502,65.29108577026432],[-84.74664746647466,65.29615150207397],[-84.74664746647466,65.3029058111535],[-84.75024750247502,65.30628296569324],[-84.75384753847538,65.30966012023302],[-84.75384753847538,65.3130372747728],[-84.75384753847538,65.33498877928125],[-84.74664746647466,65.35187455198007],[-84.72864728647286,65.36707174740903],[-84.70704707047071,65.38564609737773],[-84.6530465304653,65.43799199274412],[-84.62424624246242,65.45150061090317],[-84.61344613446134,65.46163207452247],[-84.59184591845919,65.48358357903095],[-84.57744577445774,65.48864931084057],[-84.55584555845559,65.48527215630082],[-84.51624516245163,65.47345211541165],[-84.45144451444514,65.46163207452247],[-84.42624426244262,65.4498120336333],[-84.4370443704437,65.42954910639469],[-84.44424444244441,65.41941764277539],[-84.44064440644406,65.41435191096573],[-84.42624426244262,65.41266333369586],[-84.41184411844118,65.41097475642599],[-84.4010440104401,65.40759760188621],[-84.37584375843758,65.39071182918738],[-84.3650436504365,65.38564609737773],[-84.29664296642966,65.37720321102833],[-84.2210422104221,65.35356312924998],[-84.15984159841598,65.34680882017045],[-84.1490414904149,65.3400545110909],[-84.15264152641527,65.3316116247415],[-84.15624156241562,65.32992304747162],[-84.16344163441634,65.32823447020172],[-84.17064170641706,65.32654589293185],[-84.17784177841779,65.3214801611222],[-84.18144181441814,65.31641442931254],[-84.18144181441814,65.3130372747728],[-84.1850418504185,65.30797154296314],[-84.22464224642246,65.28770861572454],[-84.23184231842318,65.28264288391489],[-84.23184231842318,65.26744568848596],[-84.21384213842138,65.25900280213654],[-84.17784177841779,65.25055991578714],[-84.09864098640986,65.21003406130993],[-84.06984069840698,65.19990259769065],[-84.04464044640446,65.19821402042075],[-83.97263972639726,65.19990259769065],[-83.87543875438755,65.19314828861113],[-83.91863918639186,65.17795109318217],[-83.90063900639007,65.16950820683275],[-83.88263882638826,65.166131052293],[-83.8430384303843,65.166131052293],[-83.77463774637746,65.17963967045205],[-83.72423724237242,65.16275389775322],[-83.54783547835478,65.16275389775322],[-83.46863468634686,65.14755670232427],[-83.4290342903429,65.14417954778452],[-83.39663396633966,65.13742523870499],[-83.37863378633786,65.11716231146639],[-83.36063360633607,65.09352222968803],[-83.33543335433355,65.0766364569892],[-83.3390333903339,65.03611060251203],[-83.30663306633066,65.0090933661939],[-83.22383223832237,64.97025608898659],[-83.21663216632166,64.96012462536731],[-83.2130321303213,64.95337031628776],[-83.20943209432095,64.94830458447811],[-83.10863108631087,64.93479596631906],[-83.0510305103051,64.9195987708901],[-83.0150301503015,64.91791019362023],[-83.00063000630006,64.91622161635036],[-82.98982989829898,64.9111558845407],[-82.97182971829717,64.89933584365153],[-82.95742957429574,64.8908929573021],[-82.9430294302943,64.88751580276235],[-82.88542885428853,64.87907291641292],[-82.86382863828638,64.8723186073334],[-82.84582845828459,64.86049856644422],[-82.79542795427955,64.81321840288751],[-82.77382773827738,64.79970978472844],[-82.7450274502745,64.78788974383926],[-82.71622716227162,64.78113543475973],[-82.62262622626226,64.78113543475973],[-82.6010260102601,64.77438112568021],[-82.55062550625506,64.74736388936208],[-82.53622536225362,64.74398673482233],[-82.5290252902529,64.74736388936208],[-82.47142471424714,64.7558067757115],[-82.42462424624246,64.76762681660068],[-82.39582395823957,64.76931539387056],[-82.3670236702367,64.76762681660068],[-82.33822338223382,64.76087250752113],[-82.30942309423094,64.75074104390185],[-82.2770227702277,64.72878953939338],[-82.26622266222662,64.7254123848536],[-82.21942219422193,64.72372380758372],[-82.20502205022049,64.72034665304395],[-82.21582215822158,64.69839514853547],[-82.21942219422193,64.69164083945594],[-82.12222122221222,64.69164083945594],[-82.0970209702097,64.68657510764629],[-82.07902079020789,64.67475506675711],[-82.07182071820718,64.66968933494746],[-82.06462064620646,64.65618071678841],[-82.0610206102061,64.65111498497876],[-81.84861848618486,64.53460315335687],[-81.8270182701827,64.53122599881709],[-81.79821798217982,64.52447168973757],[-81.7730177301773,64.51265164884839],[-81.75861758617586,64.49745445341944],[-81.75861758617586,64.49238872160979],[-81.7550175501755,64.48901156707004],[-81.75141751417515,64.48225725799048],[-81.75141751417515,64.47212579437121],[-81.7550175501755,64.46537148529168],[-81.76941769417694,64.45355144440248],[-81.7730177301773,64.44679713532295],[-81.7730177301773,64.43159993989403],[-81.76941769417694,64.41640274446507],[-81.75141751417515,64.38431977633729],[-81.75861758617586,64.37756546725777],[-81.75141751417515,64.36067969455894],[-81.76221762217622,64.35054823093964],[-81.7730177301773,64.34041676732036],[-81.78021780217802,64.32521957189141],[-81.7730177301773,64.31002237646246],[-81.76221762217622,64.29313660376363],[-81.71181711817118,64.25429932655632],[-81.69021690216901,64.24079070839727],[-81.66501665016649,64.23065924477797],[-81.62181621816218,64.22221635842857],[-81.60741607416074,64.21039631753939],[-81.58941589415893,64.18506765849114],[-81.60381603816037,64.158050422173],[-81.60741607416074,64.15129611309348],[-81.60741607416074,64.13441034039465],[-81.62541625416254,64.12427887677538],[-81.70821708217082,64.11245883588617],[-81.76581765817657,64.09388448591747],[-81.85581855818558,64.08544159956807],[-81.8810188101881,64.07868729048855],[-81.90981909819098,64.06855582686924],[-81.92781927819277,64.05673578598007],[-81.93861938619386,64.05167005417042],[-81.94581945819458,64.05842436324994],[-81.94941949419494,64.06855582686924],[-81.96021960219602,64.06349009505959],[-81.9710197101971,64.05335863144029],[-81.97821978219781,64.04829289963064],[-81.97461974619746,64.03478428147159],[-81.98181981819818,64.02634139512216],[-81.99261992619925,64.01958708604263],[-81.99981999819998,64.01114419969323],[-81.99261992619925,63.99932415880406],[-81.9710197101971,63.994258426994406],[-81.87741877418773,64.00438989061368],[-81.78021780217802,64.0027013133438],[-81.65061650616506,64.02802997239206],[-81.58941589415893,64.03478428147159],[-81.5030150301503,64.03309570420168],[-81.45621456214562,64.03816143601134],[-81.4310143101431,64.05504720871016],[-81.43461434614346,64.06011294051982],[-81.4490144901449,64.0820644450283],[-81.43821438214381,64.0921959086476],[-81.42021420214202,64.09895021772712],[-81.39861398613986,64.1023273722669],[-81.38421384213842,64.09726164045725],[-81.40221402214021,64.08544159956807],[-81.40941409414094,64.0820644450283],[-81.37341373413734,64.0736215586789],[-81.29781297812978,64.08037586775842],[-81.24381243812438,64.05673578598007],[-81.06021060210601,64.02634139512216],[-80.97380973809737,63.994258426994406],[-80.93060930609306,63.994258426994406],[-80.90540905409054,64.01114419969323],[-80.92340923409233,64.02971854966194],[-80.95580955809558,64.04998147690051],[-80.97740977409774,64.06855582686924],[-80.94860948609485,64.08544159956807],[-80.93780937809377,64.09388448591747],[-80.93060930609306,64.10401594953677],[-80.9450094500945,64.12259029950548],[-80.95220952209522,64.129344608585],[-80.88740887408873,64.12259029950548],[-80.82260822608225,64.1023273722669],[-80.76140761407613,64.0736215586789],[-80.71460714607146,64.03816143601134],[-80.70740707407074,64.02971854966194],[-80.70380703807038,64.02296424058241],[-80.69660696606965,64.01620993150289],[-80.61380613806138,64.00776704515346],[-80.54540545405453,63.984126963375104],[-80.52020520205201,63.96892976794615],[-80.53820538205382,63.95879830432685],[-80.5490054900549,63.93346964527862],[-80.49860498604986,63.91827244984967],[-80.53460534605345,63.904763831690616],[-80.57780577805778,63.89800952261109],[-80.61740617406174,63.90138667715084],[-80.70380703807038,63.91827244984967],[-80.6750067500675,63.89463236807131],[-80.64260642606426,63.88112374991226],[-80.37980379803798,63.850729359054355],[-80.2790027900279,63.8085149273073],[-80.2610026100261,63.8085149273073],[-80.22140221402213,63.8169578136567],[-80.20340203402034,63.815269236386825],[-80.19260192601925,63.8085149273073],[-80.18540185401854,63.79669488641812],[-80.1710017100171,63.774743381909644],[-80.18180181801817,63.76798907283012]]],[[[-63.51723517235172,67.32413280320307],[-63.499234992349926,67.33764142136215],[-63.488434884348834,67.3410185759019],[-63.477634776347756,67.3410185759019],[-63.387633876338754,67.3123127623139],[-63.358833588335884,67.29542698961507],[-63.409234092340924,67.27516406237649],[-63.459634596345964,67.27009833056684],[-63.76923769237692,67.27516406237649],[-63.8340383403834,67.29036125780542],[-63.82323823238232,67.29373841234519],[-63.78363783637836,67.30893560777415],[-63.75123751237511,67.31906707139342],[-63.686436864368645,67.34608430771155],[-63.66843668436684,67.3511500395212],[-63.63243632436324,67.35621577133085],[-63.60003600036001,67.35452719406098],[-63.585635856358564,67.3427071531718],[-63.59283592835928,67.31062418504402],[-63.553235532355316,67.3123127623139],[-63.535235352353524,67.31737849412355],[-63.51723517235172,67.32413280320307]]],[[[-63.75843758437584,67.52338492104923],[-63.790837908379075,67.51156488016005],[-63.98163981639816,67.5064991483504],[-64.01764017640176,67.51325345742995],[-64.03924039240393,67.53013923012875],[-64.0320403204032,67.55546788917701],[-64.02844028440283,67.56559935279631],[-63.992439924399235,67.60443663000362],[-63.98163981639816,67.61794524816267],[-63.97803978039779,67.63314244359162],[-63.98163981639816,67.6432739072109],[-63.97443974439744,67.65171679356033],[-63.95643956439564,67.65509394810007],[-63.942039420394195,67.6449624844808],[-63.92763927639275,67.63989675267115],[-63.89523895238952,67.60274805273372],[-63.79443794437944,67.55546788917701],[-63.75843758437584,67.52338492104923]]],[[[-66.29646296462964,68.2697360743374],[-66.23166231662316,68.27649038341693],[-66.19926199261992,68.27649038341693],[-66.18486184861848,68.26298176525785],[-66.18846188461885,68.25453887890845],[-66.21726217262172,68.2494731470988],[-66.21726217262172,68.24271883801927],[-66.24246242462424,68.23765310620962],[-66.2640626406264,68.22245591078067],[-66.27126271262712,68.20050440627219],[-66.26046260462604,68.17686432449383],[-66.27126271262712,68.16166712906491],[-66.3180631806318,68.159978551795],[-66.58086580865809,68.18699578811314],[-66.62046620466204,68.18530721084326],[-66.63846638466384,68.18868436538301],[-66.65286652866529,68.19712725173244],[-66.660066600666,68.20894729262162],[-66.660066600666,68.21570160170114],[-66.64566645666456,68.22076733351079],[-66.62766627666277,68.22245591078067],[-66.59526595265952,68.21907875624092],[-66.570065700657,68.21232444716136],[-66.54846548465484,68.21401302443127],[-66.52326523265232,68.23258737439997],[-66.4980649806498,68.24440741528915],[-66.45846458464584,68.24609599255902],[-66.34326343263432,68.23427595166984],[-66.32886328863289,68.23596452893975],[-66.3180631806318,68.24271883801927],[-66.30726307263072,68.25453887890845],[-66.29646296462964,68.26467034252775],[-66.29646296462964,68.2697360743374]]],[[[-83.83583835838358,69.75061834002452],[-83.86823868238682,69.75906122637392],[-83.90063900639007,69.77425842180287],[-83.91863918639186,69.79283277177157],[-83.8970389703897,69.81816143081983],[-83.85383853838538,69.83167004897888],[-83.56943569435694,69.80465281266078],[-83.52623526235261,69.7911441945017],[-83.5370353703537,69.78607846269205],[-83.55143551435513,69.7827013081523],[-83.5910359103591,69.78438988542217],[-83.63783637836379,69.77088126726312],[-83.6810368103681,69.77088126726312],[-83.6990369903699,69.76919268999322],[-83.71343713437135,69.75568407183417],[-83.6810368103681,69.74724118548474],[-83.66663666636666,69.74048687640521],[-83.65943659436594,69.72866683551604],[-83.70263702637025,69.72360110370639],[-83.74583745837458,69.72866683551604],[-83.83583835838358,69.75061834002452]]],[[[-72.95292952929529,71.51687016432183],[-72.93492934929348,71.51011585524228],[-72.9241292412924,71.499984391623],[-72.91332913329133,71.48816435073383],[-72.89892898928989,71.47634430984462],[-72.8809288092881,71.46790142349522],[-72.8341283412834,71.45945853714582],[-72.81612816128161,71.44932707352652],[-72.85572855728557,71.43581845536744],[-72.93852938529385,71.43412987809756],[-73.01053010530104,71.41893268266861],[-73.02493024930249,71.41217837358909],[-73.02853028530285,71.39698117816016],[-73.02493024930249,71.3902268690806],[-73.01053010530104,71.36996394184203],[-73.01053010530104,71.35983247822273],[-73.01053010530104,71.35645532368295],[-73.01413014130141,71.3530781691432],[-73.01773017730177,71.34970101460343],[-73.01413014130141,71.34632386006368],[-73.01053010530104,71.34463528279377],[-72.99612996129962,71.33956955098412],[-72.98532985329852,71.32774951009495],[-72.97812978129781,71.32606093282507],[-72.98172981729817,71.3226837782853],[-72.99252992529925,71.30917516012624],[-73.00333003330033,71.30242085104672],[-73.02853028530285,71.29904369650694],[-73.05373053730537,71.2956665419672],[-73.07173071730718,71.29904369650694],[-73.0861308613086,71.30917516012624],[-73.0861308613086,71.31761804647567],[-73.07893078930789,71.3243723555552],[-73.06453064530645,71.32606093282507],[-73.12213122131222,71.33956955098412],[-73.20853208532085,71.34463528279377],[-73.26613266132661,71.36489821003238],[-73.25533255332553,71.42062125993851],[-73.28773287732876,71.42737556901804],[-73.29493294932949,71.43412987809756],[-73.29133291332913,71.44932707352652],[-73.30573305733057,71.46283569168557],[-73.37053370533705,71.4898529280037],[-73.36693366933669,71.50167296889288],[-73.37053370533705,71.5084272779724],[-73.37773377733777,71.51349300978205],[-73.37773377733777,71.51687016432183],[-73.36693366933669,71.528690205211],[-73.35253352533525,71.53375593702066],[-73.17253172531726,71.57259321422794],[-73.13653136531364,71.56752748241831],[-73.10053100531005,71.55401886425923],[-73.07893078930789,71.53882166883028],[-73.0861308613086,71.5270016279411],[-73.10773107731077,71.50505012343265],[-73.11133111331112,71.49323008254345],[-73.12213122131222,71.4797214643844],[-73.16893168931689,71.46452426895544],[-73.17973179731797,71.45270422806627],[-73.17253172531726,71.43581845536744],[-73.15453154531545,71.42399841447826],[-73.14013140131401,71.42062125993851],[-73.1329313293133,71.43244130082769],[-73.12933129331293,71.44932707352652],[-73.12213122131222,71.45608138260604],[-73.10773107731077,71.45945853714582],[-73.03933039330393,71.48647577346392],[-73.02133021330214,71.49660723708323],[-72.99252992529925,71.5185587415917],[-72.97812978129781,71.52193589613148],[-72.95292952929529,71.51687016432183]]],[[[-72.73692736927369,71.66208780953173],[-72.7081270812708,71.65702207772208],[-72.69012690126901,71.64351345956302],[-72.65772657726576,71.59961045054607],[-72.72612726127261,71.54726455517971],[-72.76572765727657,71.528690205211],[-72.99612996129962,71.55739601879901],[-73.04293042930429,71.58610183238702],[-73.01773017730177,71.60974191416537],[-72.98892988929889,71.6266276868642],[-72.92772927729277,71.6553335004522],[-72.73692736927369,71.66208780953173]]],[[[-95.32715327153271,71.84783130921883],[-95.29115291152911,71.84783130921883],[-95.27315273152732,71.84276557740918],[-95.25875258752588,71.83263411378988],[-95.30915309153092,71.77859964115365],[-95.319953199532,71.75833671391504],[-95.319953199532,71.74313951848609],[-95.34155341553415,71.73807378667647],[-95.37035370353703,71.73638520940656],[-95.409954099541,71.72963090032704],[-95.43875438754387,71.73300805486681],[-95.49275492754927,71.74313951848609],[-95.47115471154711,71.76171386845482],[-95.39195391953919,71.773533909344],[-95.3631536315363,71.7921082593127],[-95.38115381153811,71.79548541385248],[-95.42435424354244,71.7921082593127],[-95.4459544595446,71.79886256839222],[-95.44235442354423,71.802239722932],[-95.43875438754387,71.8123711865513],[-95.44235442354423,71.81574834109105],[-95.4459544595446,71.81912549563083],[-95.44955449554496,71.82250265017058],[-95.45315453154531,71.82587980471035],[-95.42435424354244,71.83432269105975],[-95.35595355953559,71.84783130921883],[-95.32715327153271,71.84783130921883]]],[[[-90.29070290702907,73.92309277390467],[-90.2691026910269,73.92140419663477],[-90.24030240302403,73.91633846482515],[-90.1971019710197,73.90282984666607],[-90.24030240302403,73.85892683764914],[-90.26550265502655,73.84541821949006],[-90.29070290702907,73.84710679675993],[-90.30150301503015,73.85554968310936],[-90.30870308703086,73.86399256945876],[-90.31230312303123,73.87074687853831],[-90.32670326703267,73.87581261034794],[-90.34110341103411,73.87412403307806],[-90.36270362703627,73.86736972399854],[-90.37710377103771,73.85892683764914],[-90.38790387903879,73.84710679675993],[-90.36990369903698,73.8403524876804],[-90.36270362703627,73.82684386952135],[-90.36270362703627,73.80995809682253],[-90.37350373503735,73.7930723241237],[-90.44190441904419,73.74579216056699],[-90.47430474304743,73.73059496513804],[-90.51030510305102,73.69851199701026],[-90.58950589505895,73.65798614253308],[-90.63270632706326,73.64110036983425],[-90.78750787507875,73.55667150634011],[-90.84510845108451,73.54654004272084],[-90.93870938709387,73.54654004272084],[-90.94950949509494,73.54822861999071],[-90.97110971109711,73.55667150634011],[-90.98190981909819,73.56004866087989],[-90.99630996309963,73.55160577453046],[-90.97470974709746,73.53134284729188],[-90.92070920709207,73.49757130189423],[-90.9351093510935,73.48406268373517],[-91.03231032310323,73.44353682925797],[-91.03951039510395,73.44015967471822],[-91.03951039510395,73.43002821109891],[-91.03951039510395,73.42327390201939],[-91.04311043110431,73.41989674747961],[-91.05391053910539,73.41483101566996],[-91.04311043110431,73.41483101566996],[-91.0611106111061,73.41314243840009],[-91.07551075510754,73.40807670659044],[-91.08991089910899,73.39794524297113],[-91.09351093510935,73.38443662481208],[-91.10431104311043,73.37768231573256],[-91.17631176311762,73.3540422339542],[-91.20151201512014,73.33546788398547],[-91.23751237512374,73.28987629769864],[-91.25911259112591,73.27299052499981],[-91.2771127711277,73.26285906138054],[-91.30591305913059,73.25610475230098],[-91.33111331113311,73.25272759776124],[-91.37791377913778,73.25779332957089],[-91.46071460714607,73.24428471141181],[-91.59391593915939,73.24428471141181],[-91.63351633516335,73.23077609325276],[-91.37791377913778,73.21389032055393],[-91.37791377913778,73.20375885693463],[-91.47511475114752,73.13452718886944],[-91.47511475114752,73.12946145705979],[-91.49671496714967,73.10075564347179],[-91.5291152911529,73.08218129350308],[-91.59031590315902,73.05516405718495],[-91.62991629916299,73.02983539813673],[-91.63711637116371,73.02645824359695],[-91.64431644316443,73.0230810890572],[-91.64791647916479,73.00788389362825],[-91.64791647916479,72.9926866981993],[-91.65151651516514,72.9842438118499],[-91.65871658716587,72.97917808004024],[-91.77031770317703,72.92345503013411],[-91.79551795517955,72.9048806801654],[-91.83511835118351,72.86435482568822],[-91.85671856718567,72.8474690529894],[-92.01152011520115,72.79850031216279],[-92.0331203312033,72.78668027127361],[-92.07272072720727,72.75459730314583],[-92.09432094320942,72.74615441679643],[-92.16992169921699,72.73095722136748],[-92.38592385923859,72.7106942941289],[-92.46872468724688,72.72251433501808],[-92.58392583925838,72.72589148955782],[-92.62712627126271,72.74108868498678],[-93.04833048330482,72.76979449857478],[-93.09153091530915,72.78330311673383],[-93.1131311313113,72.78499169400374],[-93.21033210332104,72.78499169400374],[-93.23193231932319,72.78836884854348],[-93.27873278732787,72.81200893032184],[-93.30033300333002,72.81876323940139],[-93.31833318333183,72.81707466213149],[-93.35433354333543,72.80356604397244],[-93.40473404734047,72.79512315762301],[-93.50193501935019,72.79850031216279],[-93.59913599135992,72.78499169400374],[-93.87633876338764,72.77823738492418],[-94.1571415714157,72.77148307584466],[-94.24354243542435,72.78161453946396],[-94.28674286742867,72.77992596219408],[-94.3191431914319,72.76472876676513],[-94.329943299433,72.75628588041573],[-94.33354333543335,72.74615441679643],[-94.33354333543335,72.73433437590725],[-94.329943299433,72.72420291228795],[-94.31554315543156,72.71744860320842],[-94.29754297542975,72.7191371804783],[-94.26514265142652,72.73095722136748],[-94.22554225542255,72.737711530447],[-94.18594185941859,72.73602295317713],[-94.02034020340203,72.71238287139877],[-93.87633876338764,72.7106942941289],[-93.87273872738727,72.71238287139877],[-93.84753847538475,72.72420291228795],[-93.84033840338402,72.72758006682773],[-93.83313833138331,72.72758006682773],[-93.82953829538295,72.7292686440976],[-93.82233822338223,72.73433437590725],[-93.81153811538115,72.74108868498678],[-93.80073800738008,72.74446583952655],[-93.78633786337863,72.74108868498678],[-93.7791377913779,72.73095722136748],[-93.79713797137971,72.72758006682773],[-93.80073800738008,72.71744860320842],[-93.79353793537935,72.69380852143007],[-93.80073800738008,72.67861132600112],[-93.8151381513815,72.66847986238182],[-93.82233822338223,72.65834839876251],[-93.8151381513815,72.64483978060346],[-93.78273782737827,72.62964258517451],[-93.6639366393664,72.61444538974558],[-93.62793627936279,72.6009367715865],[-93.55953559535595,72.56547664891897],[-93.50193501935019,72.51650790809236],[-93.46593465934659,72.464162012726],[-93.47313473134732,72.464162012726],[-93.46593465934659,72.45740770364648],[-93.47673476734766,72.44221050821753],[-93.4911349113491,72.43376762186813],[-93.51273512735128,72.43039046732835],[-93.53073530735307,72.42870189005848],[-93.54873548735488,72.4253247355187],[-93.55953559535595,72.4168818491693],[-93.5739357393574,72.39493034466082],[-93.59913599135992,72.37297884015234],[-93.62433624336244,72.35778164472342],[-93.68553685536855,72.33583014021494],[-93.72873728737287,72.32569867659564],[-93.77193771937719,72.32401009932576],[-93.81153811538115,72.31556721297633],[-93.84753847538475,72.29192713119798],[-93.86553865538654,72.27166420395938],[-93.87633876338764,72.26490989487985],[-93.88713887138871,72.25815558580032],[-93.91593915939158,72.24464696764127],[-93.92673926739268,72.23789265856172],[-93.93033930339303,72.22776119494245],[-93.94473944739447,72.20918684497371],[-94.02754027540276,72.15515237233748],[-94.03474034740347,72.14670948598805],[-94.03834038340383,72.13995517690853],[-94.04554045540455,72.12138082693983],[-94.04554045540455,72.11631509513018],[-94.04554045540455,72.104495054241],[-94.04554045540455,72.10111789970122],[-94.05274052740528,72.0943635906217],[-94.05994059940599,72.08760928154217],[-94.06354063540635,72.0842321270024],[-94.0671406714067,72.08254354973252],[-94.08874088740887,72.06396919976382],[-94.21834218342183,72.05214915887464],[-94.23274232742327,72.03188623163604],[-94.20754207542075,72.02344334528664],[-94.16434164341644,72.02175476801673],[-94.12834128341284,72.02513192255651],[-94.10314103141032,72.03526338617581],[-94.08154081540815,72.05046058160474],[-94.05634056340563,72.06228062249394],[-94.02754027540276,72.06565777703369],[-94.07434074340743,72.02513192255651],[-94.0311403114031,72.0048689953179],[-94.04914049140491,71.99980326350828],[-94.0671406714067,71.99811468623838],[-94.0671406714067,71.99473753169863],[-94.06354063540635,71.98798322261908],[-94.05994059940599,71.98291749080946],[-94.08874088740887,71.97954033626968],[-94.12474124741247,71.98460606807933],[-94.18954189541896,72.0048689953179],[-94.29034290342904,72.00318041804803],[-94.34434344343443,72.02513192255651],[-94.57834578345783,72.02006619074686],[-94.60354603546035,72.01162330439746],[-94.60354603546035,72.01837761347699],[-94.6179461794618,72.01500045893721],[-94.75114751147511,72.01500045893721],[-95.14355143551435,71.96603171811063],[-95.17235172351724,71.97278602719015],[-95.16155161551615,71.98122891353955],[-95.10755107551076,71.98967179988898],[-95.10755107551076,71.99811468623838],[-95.19755197551976,71.99304895442873],[-95.21195211952119,71.99473753169863],[-95.20835208352084,72.00824614985768],[-95.1939519395194,72.02850907709629],[-95.19035190351903,72.04201769525534],[-95.1939519395194,72.04877200433486],[-95.1939519395194,72.05890346795417],[-95.18675186751867,72.06903493157347],[-95.15075150751507,72.075789240653],[-95.08955089550895,72.10111789970122],[-95.1939519395194,72.09942932243135],[-95.20115201152011,72.11124936332052],[-95.18675186751867,72.11631509513018],[-95.12915129151291,72.1146265178603],[-95.1111511115111,72.11800367240005],[-95.07875078750787,72.12982371328923],[-94.79074790747907,72.16021810414713],[-94.84114841148411,72.16697241322666],[-95.11475114751147,72.13826659963865],[-95.17595175951759,72.15515237233748],[-95.16155161551615,72.16021810414713],[-95.16875168751687,72.16697241322666],[-95.1939519395194,72.17879245411584],[-95.21195211952119,72.19736680408454],[-95.21555215552155,72.20412111316406],[-95.21195211952119,72.21762973132314],[-95.20475204752047,72.22944977221232],[-95.19755197551976,72.23958123583162],[-95.1939519395194,72.2514012767208],[-95.19035190351903,72.26828704941963],[-95.18675186751867,72.27504135849915],[-95.17235172351724,72.28179566757868],[-95.16875168751687,72.2885499766582],[-95.17235172351724,72.29530428573776],[-95.17595175951759,72.30881290389681],[-95.17595175951759,72.32401009932576],[-95.16515165151651,72.34427302656434],[-95.16515165151651,72.35440449018364],[-95.17235172351724,72.3696016856126],[-95.18315183151832,72.378044571962],[-95.19755197551976,72.38479888104152],[-95.21195211952119,72.39493034466082],[-95.22995229952299,72.41857042643917],[-95.2371523715237,72.43039046732835],[-95.23355233552336,72.43883335367778],[-95.21915219152191,72.44389908548743],[-95.14355143551435,72.435456199138],[-95.1579515795158,72.44221050821753],[-95.19755197551976,72.45740770364648],[-95.16515165151651,72.45571912637661],[-95.15075150751507,72.45740770364648],[-95.13635136351363,72.464162012726],[-95.16875168751687,72.48104778542483],[-95.18315183151832,72.49286782631401],[-95.19755197551976,72.52326221717192],[-95.21555215552155,72.53170510352132],[-95.2371523715237,72.53677083533097],[-95.28755287552875,72.53845941260084],[-95.30195301953019,72.54014798987075],[-95.31275312753127,72.54521372168037],[-95.319953199532,72.55196803075992],[-95.32715327153271,72.57054238072863],[-95.33075330753307,72.5739195352684],[-95.33435334353344,72.57560811253828],[-95.34155341553415,72.58067384434793],[-95.34875348753488,72.58742815342745],[-95.34875348753488,72.59418246250698],[-95.34515345153451,72.59924819431663],[-95.33435334353344,72.6026253488564],[-95.31275312753127,72.60769108066603],[-95.33435334353344,72.61782254428533],[-95.3631536315363,72.63977404879381],[-95.38115381153811,72.64821693514324],[-95.43515435154352,72.65665982149264],[-95.4459544595446,72.66341413057216],[-95.44955449554496,72.67016843965169],[-95.44955449554496,72.67861132600112],[-95.45315453154531,72.68367705781077],[-95.54675546755468,72.6904313668903],[-95.59355593555935,72.6988742532397],[-95.58995589955899,72.72420291228795],[-95.59355593555935,72.72420291228795],[-95.6079560795608,72.73095722136748],[-95.58995589955899,72.74277726225665],[-95.56475564755647,72.74446583952655],[-95.51435514355143,72.737711530447],[-95.52875528755287,72.74446583952655],[-95.57555575555756,72.77148307584466],[-95.55755557555575,72.78161453946396],[-95.56475564755647,72.78668027127361],[-95.62235622356224,72.78668027127361],[-95.64755647556476,72.79174600308326],[-95.66915669156691,72.80187746670256],[-95.67635676356764,72.82382897121101],[-95.67275672756728,72.85253478479905],[-95.6619566195662,72.8846177529268],[-95.64755647556476,72.9133235665148],[-95.62235622356224,72.93020933921363],[-95.63675636756368,72.93696364829316],[-95.65115651156512,72.94709511191246],[-95.6619566195662,72.95891515280164],[-95.66555665556655,72.97411234823059],[-95.67635676356764,72.98255523457999],[-95.6979569795698,72.98930954365954],[-95.71595715957159,72.99775243000894],[-95.71955719557195,73.011261048168],[-95.70515705157051,73.01801535724755],[-95.68715687156872,73.01801535724755],[-95.66555665556655,73.0230810890572],[-95.65115651156512,73.039966861756],[-95.64755647556476,73.05685263445483],[-95.65835658356583,73.06698409807413],[-95.67275672756728,73.07542698442356],[-95.69075690756907,73.08724702531273],[-95.65115651156512,73.11932999344049],[-95.63315633156331,73.12608430252004],[-95.60075600756008,73.13115003432969],[-95.53235532355323,73.12608430252004],[-95.51435514355143,73.13452718886944],[-95.52155521555216,73.13790434340922],[-95.52875528755287,73.14297007521887],[-95.5359553595536,73.15141296156827],[-95.54675546755468,73.15647869337792],[-95.5719557195572,73.1581672706478],[-95.58275582755827,73.16154442518757],[-95.57915579155791,73.18349592969605],[-95.58995589955899,73.21051316601415],[-95.58995589955899,73.23077609325276],[-95.56115561155612,73.23077609325276],[-95.56115561155612,73.23753040233228],[-95.57555575555756,73.23921897960219],[-95.58995589955899,73.24597328868171],[-95.59355593555935,73.25779332957089],[-95.58995589955899,73.27299052499981],[-95.59715597155972,73.27974483407937],[-95.59715597155972,73.28818772042877],[-95.58995589955899,73.2966306067782],[-95.58995589955899,73.30338491585772],[-95.6079560795608,73.31182780220712],[-95.64035640356403,73.32195926582642],[-95.65115651156512,73.3337793067156],[-95.64035640356403,73.3337793067156],[-95.62955629556295,73.33546788398547],[-95.62235622356224,73.34053361579512],[-95.61515615156151,73.34728792487468],[-95.62235622356224,73.35910796576385],[-95.61875618756187,73.36923942938313],[-95.60075600756008,73.38950235662173],[-95.6259562595626,73.39287951116151],[-95.64395643956439,73.40469955205069],[-95.67275672756728,73.44015967471822],[-95.68355683556835,73.46379975649657],[-95.67635676356764,73.48237410646527],[-95.65115651156512,73.49588272462435],[-95.62955629556295,73.50432561097375],[-95.64035640356403,73.5093913427834],[-95.64755647556476,73.51107992005328],[-95.65475654756547,73.51276849732318],[-95.63675636756368,73.5279656927521],[-95.65115651156512,73.54147431091118],[-95.70515705157051,73.56004866087989],[-95.67275672756728,73.56004866087989],[-95.65835658356583,73.56173723814976],[-95.64395643956439,73.56680296995941],[-95.65115651156512,73.57186870176906],[-95.65835658356583,73.57693443357871],[-95.66915669156691,73.58706589719802],[-95.63315633156331,73.59382020627754],[-95.61155611556116,73.59719736081729],[-95.59715597155972,73.59044305173776],[-95.58635586355864,73.58200016538837],[-95.56835568355683,73.57524585630884],[-95.55395553955539,73.57524585630884],[-95.53955539555395,73.58031158811849],[-95.55395553955539,73.59382020627754],[-95.60075600756008,73.61577171078602],[-95.64395643956439,73.63096890621495],[-95.72675726757268,73.64110036983425],[-95.68355683556835,73.66811760615238],[-95.69075690756907,73.67656049250178],[-95.71955719557195,73.69006911066086],[-95.70155701557016,73.69513484247051],[-95.66915669156691,73.69851199701026],[-95.65475654756547,73.70357772881991],[-95.66555665556655,73.70695488335969],[-95.68355683556835,73.71708634697899],[-95.6619566195662,73.73059496513804],[-95.63675636756368,73.73566069694769],[-95.58275582755827,73.73734927421756],[-95.4459544595446,73.774497974155],[-95.43155431554315,73.77618655142487],[-95.409954099541,73.77618655142487],[-95.39195391953919,73.774497974155],[-95.38115381153811,73.76943224234535],[-95.37035370353703,73.76098935599592],[-95.3631536315363,73.75423504691639],[-95.35235352353523,73.75254646964652],[-95.30915309153092,73.76774366507544],[-95.27675276752767,73.76774366507544],[-95.24435244352443,73.75930077872604],[-95.08955089550895,73.69006911066086],[-95.02115021150212,73.66980618342225],[-94.80514805148051,73.64954325618368],[-94.62154621546215,73.6562975652632],[-94.68634686346863,73.6850033788512],[-94.84114841148411,73.69175768793073],[-94.90954909549095,73.71033203789943],[-94.92754927549275,73.71877492424886],[-94.9851498514985,73.74241500602722],[-95.00675006750068,73.75592362418627],[-95.01755017550175,73.76098935599592],[-95.07515075150751,73.77787512869475],[-95.10035100351003,73.7930723241237],[-95.11475114751147,73.81333525136228],[-94.95634956349564,73.83359817860088],[-94.95634956349564,73.84204106495031],[-94.98154981549816,73.84541821949006],[-95.02475024750247,73.85892683764914],[-95.04635046350464,73.86061541491901],[-95.07875078750787,73.85723826037923],[-95.10755107551076,73.84710679675993],[-95.11475114751147,73.84204106495031],[-95.12555125551255,73.8302210240611],[-95.12915129151291,73.82684386952135],[-95.15435154351543,73.82684386952135],[-95.20115201152011,73.84879537402983],[-95.2479524795248,73.85892683764914],[-95.27315273152732,73.86736972399854],[-95.29835298352984,73.87918976488771],[-95.31635316353163,73.89269838304676],[-95.33075330753307,73.91802704209502],[-95.32715327153271,73.94673285568302],[-95.31275312753127,73.97375009200115],[-95.29475294752947,73.99232444196986],[-95.2479524795248,74.00921021466868],[-95.04275042750427,74.02609598736751],[-94.94554945549456,74.04804749187599],[-94.8591485914859,74.05649037822539],[-94.8159481594816,74.0666218418447],[-94.74034740347403,74.09701623270257],[-94.72234722347223,74.10208196451222],[-94.6539465394654,74.09363907816282],[-94.46314463144631,74.09701623270257],[-94.43794437944379,74.10208196451222],[-94.42714427144271,74.10714769632187],[-94.40914409144091,74.12234489175083],[-94.39474394743947,74.12909920083035],[-94.37314373143731,74.13247635537013],[-93.91953919539195,74.14091924171953],[-93.88353883538835,74.12909920083035],[-93.8259382593826,74.08857334635317],[-93.79353793537935,74.07844188273387],[-93.75753757537575,74.076753305464],[-93.72513725137252,74.08857334635317],[-93.75033750337504,74.0953276554327],[-93.75393753937539,74.10714769632187],[-93.75393753937539,74.12234489175083],[-93.76473764737646,74.13585350990988],[-93.72873728737287,74.16118216895813],[-93.66753667536675,74.17300220984731],[-93.46233462334624,74.17806794165696],[-93.27153271532715,74.17806794165696],[-93.01593015930159,74.14091924171953],[-92.79992799927999,74.13247635537013],[-92.7711277112771,74.1240334690207],[-92.74952749527495,74.10883627359175],[-92.76392763927639,74.09363907816282],[-92.74592745927458,74.0851961918134],[-92.72432724327243,74.08350761454352],[-92.71712717127171,74.08857334635317],[-92.66672666726667,74.10208196451222],[-92.64152641526415,74.10377054178213],[-92.51552515525155,74.06999899638447],[-92.42912429124291,74.06324468730492],[-92.37152371523715,74.04804749187599],[-92.31752317523176,74.02440741009764],[-92.27072270722707,73.99232444196986],[-92.28512285122851,73.9788158238108],[-92.33552335523355,73.9501100102228],[-92.32832328323283,73.9501100102228],[-92.33552335523355,73.94335570114325],[-92.13032130321302,73.9501100102228],[-92.1159211592116,73.95686431930233],[-92.12312123121231,73.95686431930233],[-92.1159211592116,73.96530720565173],[-92.11232112321123,73.98388155562043],[-92.10872108721087,73.99232444196986],[-92.09792097920979,73.99401301923973],[-92.05832058320583,73.99232444196986],[-92.04392043920438,73.99401301923973],[-92.01872018720186,74.00245590558916],[-91.81351813518135,74.02947314190726],[-91.77751777517774,74.01596452374821],[-91.57231572315723,74.03285029644704],[-91.37071370713707,74.01596452374821],[-90.99270992709927,74.00583306012891],[-90.63630636306362,73.95179858749268],[-90.34830348303483,73.91633846482515],[-90.33750337503375,73.92646992844442],[-90.33390333903338,73.9298470829842],[-90.29070290702907,73.92309277390467]]],[[[-119.31779317793178,76.19929493370654],[-119.33579335793357,76.20773782005597],[-119.36459364593645,76.22631217002467],[-119.3789937899379,76.2330664791042],[-119.44379443794438,76.2516408290729],[-119.45819458194582,76.26346086996207],[-119.4689946899469,76.27865806539103],[-119.47979479794797,76.35464404253574],[-119.48699486994869,76.36139835161529],[-119.50139501395014,76.36308692888517],[-119.5229952299523,76.36139835161529],[-119.53019530195301,76.35633261980564],[-119.53019530195301,76.34957831072612],[-119.53379533795338,76.33775826983691],[-119.5769957699577,76.32087249713808],[-119.67059670596706,76.33944684710681],[-119.71739717397173,76.33606969256704],[-119.71739717397173,76.32762680621764],[-119.69939699396994,76.32762680621764],[-119.67779677796779,76.32424965167786],[-119.66339663396633,76.31411818805856],[-119.65619656196561,76.29723241535973],[-119.65979659796598,76.27696948812115],[-119.67419674196742,76.27021517904163],[-119.71019710197102,76.26683802450185],[-119.69579695796958,76.25670656088255],[-119.59859598595986,76.20267208824632],[-119.5769957699577,76.19591777916676],[-119.57339573395734,76.19085204735714],[-119.57339573395734,76.18578631554749],[-119.56979569795698,76.18072058373784],[-119.56619566195661,76.17227769738841],[-119.57339573395734,76.16721196557876],[-119.62019620196202,76.16214623376914],[-119.67419674196742,76.16552338830888],[-119.7029970299703,76.16383481103901],[-119.67419674196742,76.14188330653053],[-119.63459634596346,76.13344042018113],[-119.58779587795877,76.13175184291123],[-119.55179551795518,76.12330895656183],[-119.5769957699577,76.11148891567265],[-119.80739807398074,76.1148660702124],[-119.78579785797858,76.106423183863],[-119.76059760597606,76.09966887478348],[-119.6849968499685,76.09291456570392],[-119.5229952299523,76.05238871122674],[-119.49059490594905,76.03719151579782],[-119.47619476194762,76.00679712493991],[-119.48699486994869,75.97471415681215],[-119.51219512195121,75.9679598477326],[-119.54459544595446,75.97471415681215],[-119.5949959499595,75.99497708405073],[-119.61659616596165,75.99835423859051],[-119.63459634596346,75.99497708405073],[-119.65619656196561,75.98653419770133],[-119.7029970299703,75.94431976595425],[-119.6489964899649,75.93756545687472],[-119.62019620196202,75.92912257052532],[-119.60579605796057,75.91730252963612],[-119.62739627396274,75.91730252963612],[-119.68139681396814,75.92405683871567],[-119.7029970299703,75.92236826144577],[-119.71379713797137,75.91561395236624],[-119.73899738997389,75.90041675693732],[-119.7749977499775,75.88353098423849],[-119.86139861398614,75.85989090246011],[-120.0450004500045,75.84300512976128],[-120.0810008100081,75.85482517065049],[-120.08460084600846,75.86326805699989],[-120.08820088200882,75.87508809788906],[-120.09540095400953,75.88521956150836],[-120.10980109801098,75.88859671604811],[-120.13140131401315,75.89197387058789],[-120.14580145801457,75.89872817966742],[-120.16020160201602,75.89872817966742],[-120.17820178201782,75.88521956150836],[-120.20340203402034,75.86495663426976],[-120.22860228602286,75.84807086157093],[-120.2610026100261,75.832873666142],[-120.29340293402933,75.82105362525283],[-120.33660336603366,75.8126107389034],[-120.3870038700387,75.80754500709375],[-120.43740437404374,75.81092216163353],[-120.4770047700477,75.82949651160223],[-120.48780487804878,75.84638228430106],[-120.48420484204843,75.86326805699989],[-120.46260462604626,75.89703960239754],[-120.46260462604626,75.90717106601684],[-120.46260462604626,75.91561395236624],[-120.45900459004591,75.92405683871567],[-120.45540455404554,75.93418830233495],[-120.43740437404374,75.94431976595425],[-120.40140401404014,75.96120553865308],[-120.3870038700387,75.97302557954225],[-120.4410044100441,75.9780913113519],[-120.44820448204482,75.98146846589168],[-120.44820448204482,75.98991135224108],[-120.43740437404374,76.00004281586038],[-120.43740437404374,76.00679712493991],[-120.45900459004591,76.01524001128934],[-120.58140581405814,76.00679712493991],[-120.57420574205742,76.00341997040016],[-120.56340563405634,75.99497708405073],[-120.55980559805599,75.99328850678086],[-120.59580595805957,75.98653419770133],[-120.6390063900639,75.99159992951098],[-120.68220682206822,76.00679712493991],[-120.71820718207182,76.02706005217851],[-120.73260732607326,76.05576586576652],[-120.71460714607146,76.07434021573522],[-120.64980649806498,76.10304602932322],[-120.67140671406713,76.106423183863],[-120.73620736207363,76.09291456570392],[-120.75060750607506,76.10304602932322],[-120.74340743407434,76.12330895656183],[-120.71820718207182,76.13344042018113],[-120.68220682206822,76.13850615199075],[-120.66060660606607,76.1435718838004],[-120.6930069300693,76.16045765649923],[-120.79380793807937,76.17565485192819],[-120.84780847808477,76.19760635643667],[-120.86580865808658,76.20098351097641],[-120.88020880208802,76.19929493370654],[-120.94860948609485,76.18072058373784],[-120.98820988209883,76.16383481103901],[-121.00981009810098,76.13850615199075],[-120.99900999009989,76.10304602932322],[-121.01341013410135,76.09798029751357],[-121.02061020610205,76.08784883389427],[-121.02421024210241,76.07434021573522],[-121.02421024210241,76.06083159757617],[-120.98820988209883,76.03212578398816],[-120.97020970209701,76.02368289763874],[-120.96300963009631,76.01355143401943],[-120.95940959409594,75.99497708405073],[-120.95220952209522,75.97977988862178],[-120.94140941409414,75.97302557954225],[-120.93780937809379,75.9679598477326],[-120.95220952209522,75.95782838411333],[-120.97380973809737,75.9493854977639],[-120.99180991809918,75.94431976595425],[-121.01341013410135,75.95107407503377],[-121.0170101701017,75.96458269319285],[-121.00621006210062,75.9780913113519],[-120.98460984609846,75.98653419770133],[-121.0350103501035,76.00341997040016],[-121.11781117811178,76.00004281586038],[-121.20421204212042,75.98484562043143],[-121.25821258212582,75.96458269319285],[-121.2690126901269,75.95276265230368],[-121.28341283412834,75.9206796841759],[-121.30141301413013,75.91054822055659],[-121.31221312213123,75.9122367978265],[-121.35541355413554,75.93249972506507],[-121.41661416614166,75.93756545687472],[-121.43821438214383,75.94431976595425],[-121.4310143101431,75.94769692049402],[-121.41661416614166,75.95782838411333],[-121.45261452614525,75.96627127046273],[-121.4670146701467,75.97302557954225],[-121.48141481414814,75.98146846589168],[-121.49581495814958,75.9882227749712],[-121.55341553415533,75.99328850678086],[-121.68661686616866,76.01861716582908],[-121.81981819818198,76.03043720671826],[-121.84861848618486,76.04563440214721],[-122.04662046620466,76.03381436125804],[-122.0970209702097,76.04056867033756],[-122.12582125821258,76.04056867033756],[-122.1510215102151,76.03381436125804],[-122.14382143821439,76.03212578398816],[-122.1330213302133,76.02874862944839],[-122.12942129421293,76.02706005217851],[-122.14382143821439,76.00679712493991],[-122.14742147421474,75.9966656613206],[-122.14022140221402,75.99328850678086],[-122.1330213302133,75.99159992951098],[-122.12942129421293,75.9882227749712],[-122.1330213302133,75.98315704316155],[-122.13662136621366,75.9780913113519],[-122.14382143821439,75.97640273408203],[-122.19062190621906,75.9780913113519],[-122.37422374223742,75.93756545687472],[-122.42462424624246,75.93249972506507],[-122.6190261902619,75.94263118868437],[-122.73062730627306,75.9780913113519],[-122.68742687426874,75.98146846589168],[-122.64062640626406,75.9882227749712],[-122.59742597425975,76.00341997040016],[-122.56142561425614,76.02706005217851],[-122.57942579425794,76.02537147490861],[-122.60822608226081,76.01524001128934],[-122.62622626226262,76.01355143401943],[-122.69822698226983,76.02030574309899],[-122.67302673026731,76.02706005217851],[-122.6010260102601,76.03381436125804],[-122.52542525425254,76.06083159757617],[-122.53262532625325,76.0675859066557],[-122.50382503825038,76.08447167935452],[-122.48222482224821,76.10304602932322],[-122.48222482224821,76.1165546474823],[-122.51822518225183,76.12330895656183],[-122.70542705427054,76.1148660702124],[-122.68742687426874,76.12330895656183],[-122.4930249302493,76.1435718838004],[-122.5110251102511,76.14863761561006],[-122.53262532625325,76.15032619287993],[-122.57582575825758,76.15032619287993],[-122.57582575825758,76.16721196557876],[-122.60462604626046,76.17396627465831],[-122.66942669426695,76.17734342919806],[-122.77022770227703,76.15370334741971],[-122.80262802628026,76.15032619287993],[-122.82782827828278,76.15370334741971],[-122.83862838628386,76.15201477014983],[-122.84222842228422,76.14019472926066],[-122.84942849428495,76.13344042018113],[-122.8890288902889,76.10811176113288],[-122.92502925029251,76.0962917202437],[-122.96462964629646,76.09122598843405],[-123.04023040230402,76.08784883389427],[-123.02583025830259,76.09291456570392],[-122.99342993429934,76.09966887478348],[-122.9790297902979,76.10811176113288],[-123.00063000630007,76.11993180202205],[-123.00783007830077,76.12330895656183],[-122.95742957429573,76.13175184291123],[-122.95022950229503,76.14019472926066],[-122.94662946629467,76.15201477014983],[-122.93582935829357,76.15708050195948],[-122.92502925029251,76.15876907922936],[-122.91062910629105,76.15708050195948],[-122.91782917829178,76.16552338830888],[-122.92502925029251,76.17058912011854],[-122.93582935829357,76.17565485192819],[-122.9430294302943,76.17734342919806],[-122.92502925029251,76.18916347008724],[-122.89262892628926,76.18240916100771],[-122.86022860228601,76.18240916100771],[-122.83142831428314,76.23813221091385],[-122.79182791827918,76.23813221091385],[-122.74862748627487,76.22968932456442],[-122.71262712627126,76.23137790183432],[-122.7270272702727,76.23137790183432],[-122.71262712627126,76.24657509726325],[-122.68742687426874,76.25501798361267],[-122.64062640626406,76.26514944723198],[-122.63342633426333,76.2719037563115],[-122.6370263702637,76.28372379720068],[-122.64062640626406,76.29385526081998],[-122.65142651426514,76.3006095698995],[-122.63342633426333,76.32762680621764],[-122.6190261902619,76.34282400164656],[-122.59382593825939,76.35464404253574],[-122.44982449824498,76.38166127885387],[-122.4030240302403,76.40361278336235],[-122.38142381423813,76.408678515172],[-121.96381963819638,76.43738432876],[-121.78021780217802,76.42556428787083],[-121.55341553415533,76.43738432876],[-121.51021510215102,76.4475157923793],[-121.50661506615066,76.45427010145883],[-121.5030150301503,76.45933583326848],[-121.5030150301503,76.46440156507813],[-121.50661506615066,76.46609014234801],[-121.49941499414993,76.46946729688779],[-121.42381423814237,76.49986168774566],[-121.40941409414094,76.51337030590471],[-121.4130141301413,76.5538961603819],[-121.36981369813698,76.56909335581085],[-121.32301323013229,76.57753624216028],[-121.31221312213123,76.59611059212898],[-121.25461254612546,76.60961921028803],[-121.22941229412294,76.62143925117721],[-121.21861218612186,76.64001360114594],[-121.21501215012151,76.66196510565439],[-121.20421204212042,76.67885087835322],[-121.18621186211863,76.68898234197252],[-121.1610116101161,76.6923594965123],[-121.14661146611465,76.68898234197252],[-121.1070110701107,76.67209656927369],[-121.08901089010891,76.67040799200382],[-121.03861038610387,76.68391661016287],[-120.91980919809197,76.69573665105204],[-120.81540815408154,76.73288535098948],[-120.55260552605526,76.75990258730761],[-120.52380523805238,76.768345473657],[-120.5130051300513,76.78354266908596],[-120.36900369003689,76.81393705994384],[-120.37260372603726,76.81731421448362],[-120.38340383403835,76.82575710083302],[-120.3870038700387,76.8291342553728],[-120.38340383403835,76.83251140991254],[-120.37260372603726,76.8392657189921],[-120.36900369003689,76.84264287353184],[-120.38340383403835,76.84602002807162],[-120.40140401404014,76.85108575988127],[-120.41580415804158,76.85952864623067],[-120.43020430204302,76.86966010984997],[-120.36900369003689,76.89330019162833],[-120.22860228602286,76.90343165524763],[-120.16740167401673,76.93213746883563],[-120.18180181801819,76.93382604610551],[-120.1890018900189,76.94058035518503],[-120.1890018900189,76.94733466426459],[-120.17460174601746,76.95408897334411],[-120.11340113401134,76.96590901423329],[-120.09540095400953,76.96590901423329],[-120.10260102601026,76.98954909601164],[-120.09180091800917,77.00643486871047],[-120.06660066600665,77.01656633232977],[-120.03780037800378,77.01994348686952],[-119.96579965799657,77.01656633232977],[-119.92979929799299,77.01994348686952],[-119.90819908199082,77.04020641410813],[-119.92259922599226,77.04696072318765],[-119.9009990099901,77.0520264549973],[-119.85419854198543,77.05540360953708],[-119.83619836198362,77.06553507315635],[-119.83259832598326,77.07735511404556],[-119.83259832598326,77.08917515493474],[-119.82539825398254,77.09930661855401],[-119.72459724597246,77.11619239125284],[-119.6489964899649,77.11619239125284],[-119.62739627396274,77.12294670033239],[-119.62739627396274,77.14320962757097],[-119.59859598595986,77.1516525139204],[-119.42579425794258,77.1803583275084],[-119.38619386193861,77.19217836839758],[-119.37179371793718,77.20399840928675],[-119.3429934299343,77.23945853195428],[-119.32859328593285,77.24621284103381],[-119.3249932499325,77.25127857284346],[-119.28899288992889,77.2884272727809],[-119.26739267392674,77.2968701591303],[-119.23139231392314,77.30531304547972],[-119.19539195391954,77.3171330863689],[-119.16299162991629,77.3255759727183],[-119.13059130591306,77.32895312725807],[-118.9649896498965,77.31882166363877],[-118.8749887498875,77.33739601360747],[-118.86058860588605,77.34246174541713],[-118.83178831788317,77.35765894084608],[-118.8209882098821,77.36103609538583],[-118.78138781387813,77.3542817863063],[-118.75978759787597,77.3542817863063],[-118.69858698586987,77.3644132499256],[-118.43938439384394,77.36272467265573],[-118.18018180181801,77.36103609538583],[-118.1009810098101,77.37961044535456],[-117.85257852578525,77.38974190897383],[-117.85257852578525,77.3829875998943],[-117.88137881378813,77.3829875998943],[-117.93537935379354,77.37116755900513],[-117.96057960579606,77.36947898173526],[-117.93537935379354,77.36103609538583],[-117.79857798577986,77.372856136275],[-117.78417784177842,77.36947898173526],[-117.77337773377734,77.3644132499256],[-117.75177751777517,77.34752747722678],[-117.74457744577445,77.34246174541713],[-117.73017730177301,77.34077316814725],[-117.68337683376834,77.34246174541713],[-117.66537665376654,77.34077316814725],[-117.6149761497615,77.32895312725807],[-117.47457474574745,77.3357074363376],[-117.4709747097471,77.33401885906773],[-117.46017460174602,77.32051024090865],[-117.45657456574565,77.315444509099],[-117.43857438574386,77.31375593182912],[-117.3809738097381,77.315444509099],[-117.31977319773198,77.3070016227496],[-117.26217262172622,77.2884272727809],[-117.22977229772297,77.28505011824112],[-117.13257132571326,77.30193589093994],[-117.03897038970389,77.29349300459054],[-117.01017010170102,77.30193589093994],[-117.06417064170641,77.33401885906773],[-117.09657096570965,77.344150322687],[-117.13977139771397,77.3357074363376],[-117.15777157771578,77.33739601360747],[-117.17577175771757,77.34077316814725],[-117.1829718297183,77.34921605449665],[-117.1721717217172,77.35934751811595],[-117.15417154171541,77.3644132499256],[-117.03177031770318,77.35259320903643],[-116.8589685896859,77.31882166363877],[-116.81216812168122,77.3171330863689],[-116.77616776167761,77.32895312725807],[-116.7869678696787,77.33064170452795],[-116.81216812168122,77.34246174541713],[-116.76896768967688,77.3559703635762],[-116.68256682566826,77.37116755900513],[-116.64656646566465,77.38974190897383],[-116.67536675366753,77.39818479532326],[-116.74736747367473,77.40156194986304],[-116.77616776167761,77.39649621805339],[-116.82656826568265,77.3829875998943],[-116.85176851768517,77.38467617716421],[-116.85176851768517,77.40493910440279],[-116.94176941769418,77.39818479532326],[-116.99576995769957,77.39987337259313],[-117.01737017370174,77.41507056802209],[-117.03537035370354,77.43195634072092],[-117.15417154171541,77.45897357703905],[-117.13257132571326,77.46741646338845],[-117.1109711097111,77.47417077246797],[-117.06417064170641,77.47923650427762],[-117.07137071370713,77.46572788611857],[-117.0569705697057,77.4623507315788],[-117.03897038970389,77.4623507315788],[-117.0029700297003,77.47079361792822],[-116.98136981369814,77.4724821951981],[-116.93456934569346,77.47079361792822],[-116.9129691296913,77.47417077246797],[-116.75816758167582,77.51300804967528],[-116.77256772567725,77.5197623587548],[-116.92736927369273,77.52820524510423],[-116.90216902169021,77.53664813145363],[-116.40536405364054,77.56197679050189],[-116.41256412564125,77.55859963596211],[-116.4269642696427,77.54846817234281],[-116.3369633696337,77.54002528599341],[-116.3549635496355,77.5298938223741],[-116.35856358563586,77.52820524510423],[-116.24696246962469,77.52651666783433],[-116.21456214562146,77.5214509360247],[-116.09936099360993,77.4910565451668],[-116.06336063360634,77.48599081335715],[-116.11016110161101,77.47754792700775],[-116.12456124561245,77.4724821951981],[-116.08496084960849,77.46066215430892],[-115.89055890558906,77.44208780434022],[-115.8509585095851,77.42857918618114],[-115.80055800558006,77.43195634072092],[-115.77535775357754,77.43026776345104],[-115.65655656556565,77.38974190897383],[-115.57375573755738,77.37792186808466],[-115.49095490954909,77.3542817863063],[-115.44775447754478,77.34921605449665],[-115.45135451354513,77.3458388999569],[-115.45135451354513,77.34246174541713],[-115.45495454954549,77.33908459087738],[-115.46215462154622,77.3357074363376],[-115.44415444154441,77.32895312725807],[-115.40455404554045,77.31882166363877],[-115.39375393753937,77.30869020001947],[-115.45855458554585,77.30869020001947],[-115.46935469354693,77.30531304547972],[-115.49455494554945,77.2968701591303],[-115.50535505355053,77.29349300459054],[-115.5089550895509,77.29180442732064],[-115.51615516155161,77.27829580916159],[-115.52335523355234,77.27491865462181],[-115.53775537755378,77.26985292281216],[-115.68175681756817,77.26141003646276],[-115.72855728557285,77.25296715011334],[-115.77535775357754,77.25296715011334],[-115.8149581495815,77.24114710922416],[-115.8509585095851,77.23439280014463],[-115.90135901359014,77.21581845017593],[-115.92655926559266,77.21244129563615],[-116.24696246962469,77.19555552293733],[-116.27576275762758,77.19048979112767],[-116.27576275762758,77.1786697502385],[-116.2829628296283,77.1702268638891],[-116.27576275762758,77.16516113207945],[-116.3009630096301,77.14827535938062],[-116.37296372963729,77.14489820484084],[-116.40176401764018,77.13645531849144],[-116.38016380163802,77.12801243214201],[-116.30456304563046,77.11788096852274],[-116.29016290162902,77.11112665944319],[-116.28656286562865,77.10437235036366],[-116.28656286562865,77.09424088674436],[-116.2829628296283,77.08242084585518],[-116.25776257762578,77.05540360953708],[-116.22176221762217,77.041894991378],[-115.83295832958329,76.97266332331282],[-115.77895778957789,76.97097474604294],[-115.75375753757537,76.96422043696342],[-115.73215732157321,76.94902324153446],[-115.75015750157502,76.93382604610551],[-115.90855908559085,76.8966773461681],[-116.02376023760237,76.89836592343798],[-116.25776257762578,76.94058035518503],[-116.32616326163262,76.94564608699469],[-116.36576365763658,76.93213746883563],[-116.35856358563586,76.9068088097874],[-116.31536315363154,76.88992303708858],[-116.26136261362613,76.87810299619937],[-116.1749617496175,76.84095429626197],[-116.04176041760417,76.8291342553728],[-115.99495994959949,76.79367413270526],[-115.99855998559985,76.78354266908596],[-115.99855998559985,76.77509978273653],[-115.99495994959949,76.76665689638713],[-115.96255962559626,76.75145970095818],[-115.90495904959049,76.71262242375087],[-115.89415894158941,76.69911380559182],[-115.91215912159122,76.69404807378217],[-115.9769597695977,76.68898234197252],[-115.99855998559985,76.682228032893],[-116.00936009360093,76.67716230108334],[-116.0129601296013,76.6737851465436],[-116.0129601296013,76.66703083746404],[-116.01656016560165,76.66365368292429],[-116.0489604896049,76.64339075568569],[-116.08136081360814,76.62988213752664],[-116.32616326163262,76.58091339670003],[-116.45216452164522,76.57922481943015],[-116.49536495364953,76.57078193308072],[-116.52056520565205,76.56740477854098],[-116.76176761767618,76.57247051035063],[-116.78336783367834,76.56909335581085],[-116.8049680496805,76.56065046946145],[-116.83016830168302,76.54376469676262],[-116.84456844568444,76.54038754222285],[-116.95976959769598,76.5555847376518],[-117.00657006570066,76.55220758311202],[-117.07497074970749,76.5268789240638],[-117.07857078570785,76.52012461498427],[-117.07137071370713,76.50661599682519],[-117.0569705697057,76.49479595593601],[-117.03897038970389,76.48973022412636],[-117.02097020970209,76.48466449231671],[-117.0029700297003,76.47791018323719],[-117.01017010170102,76.47115587415766],[-116.9849698496985,76.46271298780823],[-116.98856988569887,76.45089294691905],[-116.99936999369993,76.43738432876],[-116.99216992169922,76.42049855606118],[-116.95616956169562,76.40192420609247],[-116.94176941769418,76.3901041652033],[-116.94896948969489,76.37659554704422],[-116.94536945369452,76.37152981523457],[-116.93816938169383,76.36139835161529],[-116.93456934569346,76.35633261980564],[-116.94896948969489,76.34620115618634],[-116.9669696696967,76.33944684710681],[-116.98856988569887,76.33606969256704],[-117.00657006570066,76.33606969256704],[-117.02457024570245,76.33269253802729],[-117.13617136171362,76.2904781062802],[-117.27657276572765,76.2803466426609],[-117.33057330573305,76.2617722926922],[-117.35217352173521,76.26008371542233],[-117.57177571775718,76.2719037563115],[-117.64017640176402,76.2904781062802],[-117.66177661776618,76.29385526081998],[-117.65097650976509,76.31749534259833],[-117.6761767617676,76.32593822894773],[-117.82017820178201,76.32593822894773],[-117.85977859778598,76.33100396075739],[-117.88137881378813,76.34957831072612],[-117.8669786697867,76.34957831072612],[-118.00738007380073,76.40192420609247],[-118.05778057780577,76.41036709244187],[-118.05418054180541,76.41543282425152],[-118.0469804698047,76.42049855606118],[-118.03258032580325,76.43063001968048],[-118.03618036180362,76.43400717422023],[-118.05058050580506,76.4458272151094],[-117.98937989379894,76.46609014234801],[-118.0109801098011,76.47791018323719],[-118.02178021780217,76.48297591504684],[-118.03258032580325,76.48635306958661],[-118.0109801098011,76.50492741955532],[-117.90657906579065,76.53363323314332],[-117.91737917379174,76.5454532740325],[-117.95697956979569,76.56740477854098],[-117.94257942579426,76.57247051035063],[-117.91737917379174,76.57753624216028],[-117.90657906579065,76.58091339670003],[-117.96057960579606,76.5927334375892],[-117.9749797497975,76.6028649012085],[-117.9389793897939,76.61975067390733],[-117.89937899378994,76.64339075568569],[-117.91017910179102,76.64845648749534],[-117.91737917379174,76.65689937384477],[-117.92457924579246,76.66703083746404],[-117.92817928179281,76.67716230108334],[-117.91737917379174,76.69404807378217],[-117.89937899378994,76.7008023828617],[-117.85977859778598,76.70924526921112],[-117.76257762577626,76.75652543276783],[-117.73737737377374,76.78016551454618],[-117.77337773377734,76.81055990540409],[-117.82017820178201,76.82406852356314],[-117.8669786697867,76.82406852356314],[-117.90657906579065,76.80887132813419],[-117.95697956979569,76.78185409181609],[-117.98217982179821,76.77341120546666],[-118.0109801098011,76.76665689638713],[-118.0469804698047,76.76496831911726],[-118.33858338583386,76.77172262819678],[-118.33858338583386,76.76496831911726],[-118.3169831698317,76.75483685549796],[-118.30618306183061,76.74301681460878],[-118.30618306183061,76.7210653101003],[-118.31338313383134,76.710933846481],[-118.32778327783278,76.70924526921112],[-118.4969849698497,76.71937673283043],[-118.48978489784898,76.71262242375087],[-118.4789847898479,76.70586811467135],[-118.47178471784719,76.7008023828617],[-118.4609846098461,76.69911380559182],[-118.46458464584646,76.69573665105204],[-118.47178471784719,76.68729376470264],[-118.47538475384754,76.68391661016287],[-118.43218432184321,76.66871941473394],[-118.38538385383853,76.66027652838451],[-118.34938349383494,76.64507933295556],[-118.32778327783278,76.58935628304945],[-118.30258302583026,76.56740477854098],[-118.30618306183061,76.5555847376518],[-118.32778327783278,76.55051900584215],[-118.43578435784357,76.5555847376518],[-118.4789847898479,76.5454532740325],[-118.48978489784898,76.54038754222285],[-118.4969849698497,76.53363323314332],[-118.49338493384934,76.52856750133367],[-118.4969849698497,76.52181319225414],[-118.50418504185042,76.51337030590471],[-118.53658536585365,76.50323884228544],[-118.67338673386735,76.50999315136497],[-118.6949869498695,76.52012461498427],[-118.73098730987309,76.54376469676262],[-118.7561875618756,76.55220758311202],[-118.79218792187922,76.55727331492167],[-118.82818828188282,76.55896189219155],[-118.85338853388534,76.5555847376518],[-118.8389883898839,76.54714185130237],[-118.81738817388174,76.54038754222285],[-118.77778777787778,76.53363323314332],[-118.82458824588247,76.52856750133367],[-118.88938889388893,76.53025607860354],[-118.9469894698947,76.52350176952402],[-118.97578975789759,76.49310737866614],[-118.94338943389434,76.48635306958661],[-118.8389883898839,76.47791018323719],[-118.83178831788317,76.47453302869741],[-118.82458824588247,76.46777871961788],[-118.8209882098821,76.46102441053836],[-118.81738817388174,76.45933583326848],[-118.79938799387995,76.4559586787287],[-118.73458734587345,76.45933583326848],[-118.70578705787057,76.4559586787287],[-118.67338673386735,76.4458272151094],[-118.64818648186483,76.43231859695035],[-118.59778597785979,76.3884155879334],[-118.59418594185942,76.37659554704422],[-118.61218612186121,76.36984123796469],[-118.57258572585727,76.35126688799599],[-118.5689856898569,76.34451257891646],[-118.57978579785798,76.33606969256704],[-118.60498604986049,76.32087249713808],[-118.61578615786158,76.31074103351881],[-118.65178651786518,76.2904781062802],[-118.69138691386914,76.28372379720068],[-118.86058860588605,76.28541237447055],[-118.90018900189003,76.27528091085125],[-118.9289892898929,76.2533294063428],[-118.93618936189361,76.22968932456442],[-118.93258932589325,76.20604924278607],[-118.91458914589145,76.18916347008724],[-118.88938889388893,76.18409773827759],[-118.90018900189003,76.17227769738841],[-118.94338943389434,76.17058912011854],[-118.9649896498965,76.16383481103901],[-118.96858968589686,76.15201477014983],[-118.96138961389613,76.1435718838004],[-118.9649896498965,76.135128997451],[-118.99018990189902,76.12837468837148],[-119.03699036990369,76.12837468837148],[-119.05859058590585,76.12668611110158],[-119.08019080190802,76.1148660702124],[-119.08019080190802,76.11148891567265],[-119.08019080190802,76.10304602932322],[-119.07659076590767,76.09798029751357],[-119.0729907299073,76.0962917202437],[-119.08379083790837,76.08953741116417],[-119.09459094590946,76.08784883389427],[-119.11979119791198,76.09291456570392],[-119.15939159391593,76.10811176113288],[-119.1809918099181,76.11148891567265],[-119.22059220592206,76.10980033840275],[-119.24579245792458,76.11317749294253],[-119.26739267392674,76.11993180202205],[-119.28539285392853,76.12837468837148],[-119.30339303393033,76.14863761561006],[-119.30339303393033,76.18747489281736],[-119.31779317793178,76.19929493370654]]],[[[-74.55854558545585,78.78112957935718],[-74.51174511745117,78.77099811573788],[-74.31734317343174,78.75580092030896],[-74.16614166141662,78.72709510672095],[-74.19134191341914,78.70514360221247],[-74.24174241742418,78.68994640678352],[-74.33174331743317,78.67812636589434],[-74.69174691746917,78.7220293749113],[-74.70254702547025,78.72709510672095],[-74.70614706147062,78.73553799307035],[-74.69534695346952,78.74735803395953],[-74.68814688146881,78.7490466112294],[-74.66654666546665,78.7507351884993],[-74.65934659346593,78.75411234303905],[-74.65574655746558,78.7591780748487],[-74.64854648546485,78.77268669300778],[-74.64134641346413,78.77775242481744],[-74.62694626946269,78.78450673389696],[-74.55854558545585,78.78112957935718]]],[[[-105.60525605256052,79.10364783790479],[-105.60165601656016,79.11040214698431],[-105.60525605256052,79.11884503333374],[-105.62325623256233,79.15261657873137],[-105.62685626856268,79.16443661962057],[-105.6160561605616,79.1796338150495],[-105.580055800558,79.20496247409775],[-105.56205562055621,79.23535686495563],[-105.53325533255332,79.24886548311468],[-105.45045450454505,79.26912841035329],[-105.43605436054361,79.27588271943281],[-105.42525425254253,79.28432560578224],[-105.42525425254253,79.29614564667142],[-105.44325443254432,79.30121137848107],[-105.48285482854828,79.30289995575095],[-105.45765457654576,79.32991719206908],[-105.40725407254072,79.33498292387873],[-105.15525155251552,79.29952280121117],[-104.680046800468,79.32147430571965],[-104.20124201242012,79.34173723295825],[-103.72243722437224,79.36368873746673],[-103.65763657636576,79.34173723295825],[-103.37323373233733,79.30121137848107],[-103.29043290432904,79.30965426483047],[-103.12123121231213,79.29107991486177],[-103.07083070830708,79.27419414216294],[-103.01683016830168,79.24717690584481],[-102.99522995229952,79.24042259676528],[-102.96642966429664,79.23873401949541],[-102.90882908829089,79.24042259676528],[-102.880028800288,79.23366828768576],[-102.89442894428944,79.23197971041586],[-102.90522905229052,79.22691397860623],[-102.9160291602916,79.22184824679658],[-102.92682926829268,79.21340536044715],[-102.9160291602916,79.20327389682785],[-102.90522905229052,79.1813223923194],[-102.89442894428944,79.1711909287001],[-102.880028800288,79.16781377416032],[-102.84042840428404,79.16781377416032],[-102.8260282602826,79.16443661962057],[-102.79362793627936,79.14755084692175],[-102.76842768427684,79.1424851151121],[-102.76482764827648,79.13741938330244],[-102.75762757627577,79.13066507422292],[-102.75042750427504,79.12391076514336],[-102.7360273602736,79.12053361060362],[-102.7180271802718,79.11715645606384],[-102.70722707227073,79.11377930152409],[-102.68562685626856,79.10871356971444],[-102.6280262802628,79.10195926063491],[-102.61722617226172,79.09689352882526],[-102.60642606426065,79.07663060158666],[-102.61722617226172,79.05974482888783],[-102.63882638826388,79.04117047891913],[-102.6460264602646,79.01753039714077],[-102.6640266402664,78.98544742901299],[-102.75042750427504,78.96856165631417],[-102.77562775627756,78.94661015180569],[-102.72882728827288,78.93985584272616],[-102.71442714427144,78.94323299726594],[-102.70362703627036,78.94661015180569],[-102.6640266402664,78.95336446088521],[-102.58842588425884,78.94998730634546],[-102.57042570425703,78.94661015180569],[-102.57042570425703,78.94154441999603],[-102.5740257402574,78.93985584272616],[-102.57762577625776,78.93985584272616],[-102.57042570425703,78.93141295637676],[-102.62442624426244,78.90439572005863],[-102.62082620826207,78.8976414109791],[-102.610026100261,78.89088710189955],[-102.60282602826028,78.8875099473598],[-102.5920259202592,78.88582137008993],[-102.59922599225992,78.8773784837405],[-102.5380253802538,78.8773784837405],[-102.52722527225272,78.88075563828028],[-102.49482494824947,78.8976414109791],[-102.40122401224012,78.93479011091651],[-102.37962379623796,78.95336446088521],[-102.37962379623796,78.95843019269486],[-102.38322383223831,78.96011876996477],[-102.37962379623796,78.96180734723464],[-102.37962379623796,78.96687307904429],[-102.39042390423904,78.97531596539369],[-102.4120241202412,78.99895604717204],[-102.42642426424264,79.00739893352147],[-102.40842408424083,79.014153242601],[-102.41922419224191,79.014153242601],[-102.29682296822968,79.02090755168052],[-102.28242282422823,79.0242847062203],[-102.28242282422823,79.03610474710948],[-102.12042120421204,79.042859056189],[-101.95841958419584,79.08676206520596],[-101.91161911619116,79.09182779701561],[-101.64881648816488,79.08169633339631],[-101.6380163801638,79.07831917885653],[-101.63441634416344,79.07494202431678],[-101.63081630816308,79.06987629250713],[-101.62721627216271,79.06481056069748],[-101.620016200162,79.0631219834276],[-101.57681576815767,79.05805625161796],[-101.38961389613895,79.00233320171182],[-101.34641346413464,78.9955788926323],[-101.30681306813068,78.9770045426636],[-101.16641166411664,78.95843019269486],[-101.15561155611556,78.96011876996477],[-101.14841148411485,78.96349592450451],[-101.14481144811448,78.96856165631417],[-101.14481144811448,78.97531596539369],[-101.14121141211412,78.97869311993347],[-101.1340113401134,78.97869311993347],[-101.01521015210152,78.94998730634546],[-100.98640986409863,78.93141295637676],[-101.01881018810188,78.92128149275746],[-101.11241112411123,78.87231275193085],[-101.16281162811627,78.8385412065332],[-101.20961209612096,78.82165543383437],[-101.18441184411844,78.80814681567531],[-101.15921159211592,78.80139250659579],[-101.03681036810367,78.80308108386566],[-101.00441004410044,78.79801535205601],[-101.00081000810007,78.78112957935718],[-100.90720907209072,78.77437527027766],[-100.83880838808388,78.79126104297649],[-100.76320763207632,78.80139250659579],[-100.5940059400594,78.80139250659579],[-100.5220052200522,78.82334401110427],[-100.39960399603996,78.8300983201838],[-100.34920349203492,78.82334401110427],[-100.32760327603276,78.81490112475484],[-100.32760327603276,78.79970392932589],[-100.31680316803168,78.78450673389696],[-100.27360273602736,78.77268669300778],[-99.98919989199892,78.73553799307035],[-99.89199891998919,78.69838929313295],[-99.9279992799928,78.67812636589434],[-100.0360003600036,78.65617486138586],[-100.06480064800648,78.63760051141716],[-100,78.62578047052799],[-99.93519935199352,78.62409189325811],[-99.83079830798307,78.63928908868704],[-99.79479794797948,78.63084620233764],[-99.7839978399784,78.62240331598821],[-99.77679776797768,78.61396042963881],[-99.76959769597696,78.60720612055928],[-99.75879758797588,78.6038289660195],[-99.69759697596976,78.60214038874963],[-99.64719647196472,78.60889469782916],[-99.60039600396004,78.60720612055928],[-99.55719557195572,78.59876323420985],[-99.52839528395283,78.5835660387809],[-99.55719557195572,78.56668026608207],[-99.62559625596256,78.55823737973267],[-99.65079650796508,78.54304018430372],[-99.6219962199622,78.54304018430372],[-99.61119611196112,78.54135160703385],[-99.59679596795968,78.53459729795432],[-99.61119611196112,78.52615441160489],[-99.64359643596435,78.51433437071572],[-99.6579965799658,78.50758006163619],[-99.66879668796687,78.49913717528679],[-99.67239672396724,78.49069428893736],[-99.67959679596795,78.48393997985784],[-99.6939969399694,78.47887424804819],[-99.83439834398344,78.4569227435397],[-99.87039870398704,78.438348393571],[-99.79839798397984,78.42146262087218],[-99.76239762397624,78.40457684817335],[-99.7479974799748,78.380936766395],[-99.75519755197551,78.36405099369617],[-99.78759787597876,78.32014798467921],[-99.8019980199802,78.30832794379003],[-99.76959769597696,78.29481932563098],[-99.57159571595716,78.29481932563098],[-99.53559535595356,78.28806501655143],[-99.50319503195031,78.2711792438526],[-99.47079470794708,78.24078485299472],[-99.43119431194312,78.21207903940672],[-99.40239402394023,78.20363615305732],[-99.29439294392944,78.18506180308859],[-99.0459904599046,78.08205858962575],[-98.9919899198992,78.07023854873657],[-98.94518945189452,78.0685499714667],[-98.96318963189631,78.04490988968834],[-98.96678966789668,78.03815558060879],[-98.96678966789668,78.01958123064009],[-98.96678966789668,78.01113834429069],[-98.97038970389704,78.00438403521116],[-98.99918999189991,77.9891868397822],[-99.07119071190712,77.97736679889303],[-99.10359103591036,77.96554675800385],[-99.07119071190712,77.93852952168572],[-99.0819908199082,77.9300866353363],[-99.07119071190712,77.9216437489869],[-99.04239042390424,77.90475797628807],[-99.02439024390243,77.89800366720854],[-99.01719017190172,77.89462651266876],[-99.01719017190172,77.88787220358924],[-99.0279902799028,77.88280647177959],[-99.07839078390784,77.87774073996994],[-99.1179911799118,77.86592069908076],[-99.15759157591576,77.84903492638193],[-99.18279182791828,77.84396919457228],[-99.48879488794887,77.8321491536831],[-99.79839798397984,77.81864053552405],[-99.82359823598236,77.81526338098428],[-99.84159841598415,77.80850907190475],[-99.86679866798667,77.79162329920592],[-99.88479884798848,77.78655756739627],[-99.93879938799388,77.78318041285652],[-100.11160111601116,77.81526338098428],[-100.28080280802807,77.81864053552405],[-100.38880388803888,77.84396919457228],[-100.60840608406083,77.86423212181089],[-100.62640626406264,77.87098643089041],[-100.60480604806048,77.88449504904946],[-100.61560615606156,77.90138082174829],[-100.64080640806408,77.91657801717724],[-100.78120781207812,77.97230106708338],[-100.81360813608136,77.9976297261316],[-100.83160831608316,78.01451549883043],[-100.83520835208351,78.02464696244974],[-100.83880838808388,78.03815558060879],[-100.8280082800828,78.05504135330762],[-100.80640806408064,78.05841850784739],[-100.78120781207812,78.05672993057752],[-100.76320763207632,78.06179566238717],[-100.76320763207632,78.08374716689562],[-100.80640806408064,78.09556720778482],[-100.96840968409684,78.12427302137283],[-101.00081000810007,78.13778163953188],[-101.02241022410225,78.15804456677049],[-101.02241022410225,78.16986460765966],[-101.01881018810188,78.17830749400906],[-101.02241022410225,78.18675038035849],[-101.03681036810367,78.19857042124767],[-101.05841058410584,78.20532473032719],[-101.09081090810908,78.20532473032719],[-101.26361263612635,78.18506180308859],[-101.28881288812887,78.18843895762836],[-101.49761497614976,78.23740769845497],[-101.82881828818287,78.2627363575032],[-102.160021600216,78.28806501655143],[-102.54162541625416,78.2424734302646],[-102.5920259202592,78.2441620075345],[-102.76482764827648,78.27455639839238],[-102.80082800828008,78.28806501655143],[-102.81882818828188,78.31170509832981],[-102.79722797227971,78.32859087102864],[-102.66762667626676,78.36405099369617],[-102.74322743227432,78.380936766395],[-103.03843038430384,78.36405099369617],[-103.33363333633336,78.34885379826721],[-103.38043380433804,78.33703375737804],[-103.44163441634416,78.33365660283826],[-103.49923499234993,78.32521371648886],[-103.65763657636576,78.32183656194908],[-103.7440374403744,78.31001652105991],[-103.88083880838808,78.27624497566225],[-103.91323913239133,78.27455639839238],[-103.9060390603906,78.2526048938839],[-103.94563945639456,78.2424734302646],[-104.20484204842049,78.25935920296342],[-104.4640446404464,78.27455639839238],[-104.67644676446764,78.32352513921899],[-104.73044730447305,78.34716522099734],[-104.7520475204752,78.35054237553709],[-104.77364773647736,78.35054237553709],[-104.79884798847988,78.35391953007687],[-104.82044820448205,78.36236241642627],[-104.86724867248672,78.39613396182392],[-104.98964989649896,78.438348393571],[-105.00045000450004,78.4467912799204],[-105.04365043650436,78.49576002074701],[-105.04725047250473,78.50420290709641],[-105.040050400504,78.51264579344584],[-105.01845018450184,78.52446583433502],[-104.97524975249752,78.53966302976397],[-104.88164881648817,78.5565488024628],[-104.82044820448205,78.57850030697128],[-104.64044640446404,78.5835660387809],[-104.3380433804338,78.55148307065315],[-104.03924039240393,78.52108867979524],[-103.72243722437224,78.52446583433502],[-103.5820358203582,78.50251432982654],[-103.53883538835387,78.50082575255666],[-103.49563495634956,78.50589148436632],[-103.46683466834668,78.52446583433502],[-103.45243452434524,78.53966302976397],[-103.45243452434524,78.54810591611337],[-103.46323463234631,78.55148307065315],[-103.48123481234812,78.5565488024628],[-103.49563495634956,78.56668026608207],[-103.47763477634776,78.57343457516163],[-103.42723427234272,78.5835660387809],[-103.420034200342,78.57850030697128],[-103.40563405634056,78.57850030697128],[-103.38043380433804,78.59032034786046],[-103.39123391233912,78.59707465693998],[-103.40563405634056,78.60214038874963],[-103.420034200342,78.6038289660195],[-103.43443434434344,78.6038289660195],[-103.41643416434164,78.60889469782916],[-103.39843398433985,78.61733758417856],[-103.4380343803438,78.62578047052799],[-103.7260372603726,78.62240331598821],[-104.01044010440104,78.62071473871833],[-104.04284042840428,78.63084620233764],[-103.98163981639816,78.65448628411599],[-103.90963909639096,78.66799490227504],[-103.48123481234812,78.67137205681482],[-103.52083520835208,78.69670071586305],[-103.53163531635316,78.70683217948235],[-103.49563495634956,78.71696364310165],[-103.45963459634596,78.7203407976414],[-103.3480334803348,78.7220293749113],[-103.32643326433264,78.72709510672095],[-103.31923319233192,78.73722657034023],[-103.32643326433264,78.74735803395953],[-103.35883358833588,78.7490466112294],[-103.3840338403384,78.77437527027766],[-103.42363423634237,78.78450673389696],[-103.49923499234993,78.78788388843671],[-103.52443524435245,78.77944100208731],[-103.55323553235532,78.7591780748487],[-103.5820358203582,78.74735803395953],[-103.61083610836108,78.75411234303905],[-103.60723607236072,78.75748949757883],[-103.59283592835928,78.76762096119813],[-103.61443614436143,78.77268669300778],[-103.64323643236432,78.77099811573788],[-103.75483754837548,78.74735803395953],[-103.81963819638196,78.74060372488],[-103.79443794437944,78.75748949757883],[-103.7620376203762,78.77437527027766],[-103.69363693636936,78.79632677478614],[-103.72243722437224,78.80645823840544],[-103.75123751237513,78.80308108386566],[-103.78363783637836,78.79632677478614],[-103.81243812438125,78.79632677478614],[-103.86283862838629,78.80983539294519],[-103.8880388803888,78.80983539294519],[-103.9060390603906,78.79632677478614],[-103.90243902439025,78.79294962024636],[-103.89883898838988,78.78619531116684],[-103.89523895238952,78.78112957935718],[-103.93843938439385,78.76593238392823],[-103.99243992439924,78.75748949757883],[-104.04644046440464,78.75748949757883],[-104.09324093240932,78.76762096119813],[-104.07884078840789,78.76762096119813],[-104.10044100441004,78.77775242481744],[-104.18684186841868,78.77606384754753],[-104.22284222842228,78.78788388843671],[-104.14724147241472,78.82503258837414],[-103.85563855638556,78.88244421555015],[-103.83043830438304,78.89088710189955],[-103.83043830438304,78.90439572005863],[-103.85563855638556,78.91452718367793],[-104.02484024840248,78.94492157453581],[-104.04284042840428,78.95336446088521],[-104.050040500405,78.96180734723464],[-104.050040500405,78.97025023358404],[-104.05724057240572,78.98038169720334],[-104.07884078840789,78.98544742901299],[-104.2480424804248,78.99726746990217],[-104.26964269642696,78.99051316082264],[-104.28044280442805,78.97869311993347],[-104.28764287642876,78.96687307904429],[-104.29844298442984,78.95843019269486],[-104.37044370443704,78.96856165631417],[-104.41724417244173,78.96856165631417],[-104.45684456844567,78.95674161542499],[-104.48564485644856,78.93479011091651],[-104.52884528845289,78.89257567916945],[-104.5540455404554,78.87568990647063],[-104.57924579245793,78.86386986558145],[-104.68724687246872,78.84360693834284],[-104.78444784447844,78.80814681567531],[-104.83484834848348,78.79970392932589],[-104.95364953649536,78.79801535205601],[-105.0040500405004,78.80645823840544],[-105.03285032850329,78.82672116564402],[-105.01125011250112,78.84529551561272],[-104.87444874448744,78.89088710189955],[-104.86364863648636,78.8976414109791],[-104.85644856448565,78.90439572005863],[-104.84564845648457,78.90946145186828],[-104.83124831248313,78.91115002913816],[-104.81684816848168,78.93985584272616],[-104.76284762847628,78.97362738812382],[-104.680046800468,79.01077608806125],[-104.70884708847088,79.03103901529983],[-104.74484744847449,79.03948190164925],[-104.95364953649536,79.05467909707818],[-105.40365403654036,79.01246466533112],[-105.56205562055621,79.02597328349017],[-105.59085590855908,79.03779332437935],[-105.60525605256052,79.05467909707818],[-105.59445594455944,79.07663060158666],[-105.5980559805598,79.08507348793609],[-105.5980559805598,79.09182779701561],[-105.5980559805598,79.09858210609514],[-105.60525605256052,79.10364783790479]]],[[[70.54810548105482,-49.182633086893475],[70.56970569705697,-49.21978178683089],[70.55530555305555,-49.26706195038761],[70.5229052290523,-49.307587804864795],[70.46530465304653,-49.35655654569139],[70.39330393303933,-49.348113659341976],[70.36090360903609,-49.33798219572268],[70.33570335703357,-49.351490813881746],[70.33210332103323,-49.368376586580574],[70.31050310503105,-49.37850805019987],[70.39330393303933,-49.40383670924811],[70.46530465304653,-49.43929683191565],[70.37530375303754,-49.430853945566234],[70.28890288902889,-49.43929683191565],[70.24210242102421,-49.35993370023116],[70.14130141301413,-49.33798219572268],[70.10170101701019,-49.348113659341976],[70.06210062100621,-49.35824512296128],[70.01530015300153,-49.35993370023116],[69.96849968499686,-49.35317939115163],[69.89649896498966,-49.34135935026245],[69.8208982089821,-49.349802236611865],[69.8748987489875,-49.366688009310685],[69.92529925299255,-49.39201666835893],[69.91449914499145,-49.3953938228987],[69.90009900099002,-49.40045955470834],[69.92169921699218,-49.41734532740717],[69.9468994689947,-49.432542522836115],[69.92169921699218,-49.43929683191565],[69.90009900099002,-49.44267398645541],[69.86769867698678,-49.42241105921682],[69.83889838898389,-49.39708240016858],[69.81369813698137,-49.39201666835893],[69.79569795697958,-49.40383670924811],[69.79569795697958,-49.42072248194694],[69.81369813698137,-49.452805450074706],[69.75609756097563,-49.42241105921682],[69.69129691296914,-49.40383670924811],[69.71289712897129,-49.427476791026464],[69.74529745297454,-49.44267398645541],[69.7668976689767,-49.45618260461447],[69.77409774097742,-49.471379800043415],[69.78849788497885,-49.47813410912295],[69.80289802898031,-49.48826557274224],[69.80649806498067,-49.5119056545206],[69.81369813698137,-49.532168581759194],[69.8928989289893,-49.5608743953472],[69.97929979299795,-49.571005858966494],[70.05850058500585,-49.594645940744854],[70.13770137701377,-49.61828602252321],[70.06570065700657,-49.572694436236375],[70.04770047700478,-49.52034854087002],[70.0909009090091,-49.510217077250715],[70.13770137701377,-49.50515134544107],[70.18090180901811,-49.513594231790485],[70.22050220502206,-49.52541427267966],[70.29610296102962,-49.53048000448931],[70.3249032490325,-49.574383013506264],[70.25650256502567,-49.614908867983445],[70.16650166501665,-49.61828602252321],[70.22770227702279,-49.63010606341239],[70.27450274502746,-49.653746145190745],[70.24570245702458,-49.68582911331852],[70.19170191701917,-49.68414053604864],[70.15210152101523,-49.69258342239805],[70.12330123301234,-49.71284634963664],[70.06930069300694,-49.71453492690652],[70.01170011700117,-49.699337731477584],[69.92889928899291,-49.701026308747466],[69.85689856898571,-49.67907480423899],[69.8208982089821,-49.64023752703169],[69.78849788497885,-49.60308882709427],[69.78129781297815,-49.5608743953472],[69.77769777697779,-49.52034854087002],[69.73809738097381,-49.49839703636154],[69.69129691296914,-49.50177419090131],[69.70569705697059,-49.515282809060366],[69.70569705697059,-49.53554573629896],[69.67329673296734,-49.5119056545206],[69.63729637296373,-49.50515134544107],[69.67329673296734,-49.54398862264837],[69.71649716497166,-49.58113732258579],[69.71289712897129,-49.636860372491924],[69.66249662496625,-49.66556618607993],[69.62649626496267,-49.657123299730515],[69.59049590495906,-49.64361468157145],[69.52929529295295,-49.64023752703169],[69.46809468094682,-49.63179464068227],[69.41769417694178,-49.60140024982439],[69.37449374493747,-49.56594012715685],[69.32409324093243,-49.56256297261708],[69.28089280892809,-49.56256297261708],[69.25929259292593,-49.5220371181399],[69.22689226892271,-49.48826557274224],[69.20529205292053,-49.49670845909166],[69.21249212492125,-49.51697138633025],[69.20529205292053,-49.51865996360013],[69.19809198091983,-49.5220371181399],[69.21969219692198,-49.54567719991825],[69.23049230492305,-49.572694436236375],[69.18369183691837,-49.555808663537555],[69.14409144091442,-49.513594231790485],[69.15489154891549,-49.54230004537849],[69.16569165691658,-49.56931728169661],[69.17649176491767,-49.58451447712556],[69.15489154891549,-49.59802309528462],[69.15129151291515,-49.62335175433286],[69.11529115291154,-49.60308882709427],[69.10449104491045,-49.5608743953472],[69.08649086490865,-49.54061146810861],[69.07209072090723,-49.58113732258579],[69.10449104491045,-49.64361468157145],[69.0648906489065,-49.69089484512817],[69.02529025290255,-49.70946919509688],[68.98208982089821,-49.721289235986056],[68.97128971289715,-49.71791208144629],[68.96408964089642,-49.71284634963664],[68.94608946089463,-49.71453492690652],[68.9280892808928,-49.716223504176405],[68.88128881288813,-49.716223504176405],[68.83088830888309,-49.71791208144629],[68.79128791287914,-49.70946919509688],[68.76608766087662,-49.675697649699224],[68.76608766087662,-49.65036899065098],[68.77688776887769,-49.63010606341239],[68.77688776887769,-49.59295736347497],[68.79848798487987,-49.56425154988696],[68.82368823688239,-49.53554573629896],[68.84168841688418,-49.508528499980834],[68.82368823688239,-49.48488841820248],[68.8668886688867,-49.462936913694],[68.90288902889029,-49.430853945566234],[68.87408874088743,-49.39708240016858],[68.87048870488707,-49.368376586580574],[68.84528845288455,-49.36331085477092],[68.80568805688057,-49.364999432040804],[68.85608856088561,-49.327850732103386],[68.92448924489247,-49.32278500029374],[68.9208892088921,-49.305899227594914],[68.92448924489247,-49.289013454896086],[68.89208892088922,-49.29576776397562],[68.83448834488345,-49.30421065032503],[68.81648816488166,-49.28225914581655],[68.83088830888309,-49.27719341400691],[68.84888848888491,-49.27550483673702],[68.79128791287914,-49.2484876004189],[68.77328773287735,-49.206273168671835],[68.76608766087662,-49.18938739597301],[68.76968769687699,-49.17587877781394],[68.78768787687878,-49.18938739597301],[68.80928809288093,-49.206273168671835],[68.85608856088561,-49.17419020054406],[68.93168931689317,-49.145484386956056],[68.85608856088561,-49.14886154149582],[68.8020880208802,-49.13197576879699],[68.82368823688239,-49.11846715063793],[68.84888848888491,-49.11002426428852],[68.80928809288093,-49.11002426428852],[68.77328773287735,-49.11002426428852],[68.77688776887769,-49.096515646129454],[68.78048780487805,-49.083007027970396],[68.74808748087483,-49.07625271889086],[68.75528755287553,-49.04754690530286],[68.7948879488795,-49.040792596223326],[68.82728827288273,-49.05430121438239],[68.8128881288813,-49.01715251444497],[68.8128881288813,-48.96480661907861],[68.85968859688597,-48.96649519634849],[68.90288902889029,-48.9749380826979],[68.87768877688777,-48.94454369184002],[68.84888848888491,-48.915837878252006],[68.82368823688239,-48.88882064193388],[68.79848798487987,-48.86518056015553],[68.79128791287914,-48.84660621018682],[68.81648816488166,-48.838163323837406],[68.85608856088561,-48.82127755113858],[68.89568895688959,-48.82296612840846],[68.89928899288995,-48.80101462389999],[68.90288902889029,-48.78075169666139],[68.93168931689317,-48.76555450123245],[68.93528935289353,-48.73684868764444],[68.9208892088921,-48.72334006948538],[68.9388893888939,-48.69801141043714],[68.95688956889569,-48.670994174119016],[69.01449014490146,-48.65410840142019],[69.07569075690759,-48.65917413322984],[69.06129061290613,-48.670994174119016],[69.08289082890829,-48.692945678627495],[69.07569075690759,-48.713208605866086],[69.11529115291154,-48.726717224025144],[68.98208982089821,-48.7993260466301],[68.90648906489065,-48.893886373743534],[68.92448924489247,-48.88375491012424],[68.9388893888939,-48.87362344650494],[68.96048960489605,-48.86855771469529],[68.98568985689857,-48.877000601044706],[68.97488974889751,-48.84322905564705],[69.00729007290073,-48.833097592027755],[69.02169021690219,-48.856737673806116],[69.07569075690759,-48.790883160280686],[69.15129151291515,-48.75373446034327],[69.1728917289173,-48.75711161488304],[69.18729187291873,-48.772308810311976],[69.15489154891549,-48.792571737550574],[69.10809108091081,-48.80776893297951],[69.1368913689137,-48.831409014757874],[69.16569165691658,-48.80776893297951],[69.16209162091621,-48.84660621018682],[69.12969129691297,-48.88037775558447],[69.07929079290793,-48.90570641463271],[69.0540905409054,-48.9462322691099],[69.08289082890829,-48.93103507368095],[69.11169111691117,-48.919215032791776],[69.08289082890829,-48.97324950542802],[69.02169021690219,-49.01039820536544],[69.00729007290073,-49.04754690530286],[69.00009000090003,-49.08976133704993],[69.03609036090361,-49.099892800669224],[69.06849068490686,-49.11002426428852],[69.05769057690577,-49.039104018953445],[69.10449104491045,-48.99351243266661],[69.14409144091442,-49.00870962809556],[69.16929169291694,-49.044169750763096],[69.1728917289173,-49.07962987343063],[69.180091800918,-49.11002426428852],[69.21609216092162,-49.121844305177696],[69.2448924489245,-49.11002426428852],[69.35289352893531,-49.081318450700515],[69.43929439294394,-49.0137753599052],[69.45009450094503,-49.03066113260403],[69.45729457294573,-49.04923548257274],[69.45009450094503,-49.06949840981133],[69.43929439294394,-49.07962987343063],[69.45369453694539,-49.08976133704993],[69.47169471694718,-49.081318450700515],[69.52209522095222,-48.995201009936494],[69.59049590495906,-48.952986578189424],[69.59049590495906,-48.98000381450755],[69.59769597695978,-49.00533247355579],[69.61569615696158,-49.0137753599052],[69.58329583295833,-49.02897255533415],[69.5688956889569,-49.04923548257274],[69.61929619296194,-49.04754690530286],[69.65889658896589,-49.062744100731805],[69.62649626496267,-49.07625271889086],[69.58329583295833,-49.08976133704993],[69.64449644496446,-49.099892800669224],[69.64449644496446,-49.125221459717466],[69.58689586895869,-49.13366434606688],[69.52929529295295,-49.138730077876524],[69.50769507695077,-49.13028719152711],[69.48609486094861,-49.12353288244758],[69.39969399693999,-49.11340141882828],[69.33849338493386,-49.1505501187657],[69.31329313293134,-49.16743589146453],[69.28089280892809,-49.184321664163356],[69.29529295292954,-49.19445312778265],[69.32409324093243,-49.184321664163356],[69.35289352893531,-49.1708130460043],[69.42129421294214,-49.13704150060664],[69.47169471694718,-49.15223869603559],[69.42849428494287,-49.16912446873442],[69.38169381693817,-49.182633086893475],[69.44649446494466,-49.19614170505254],[69.43929439294394,-49.21471605502125],[69.47169471694718,-49.21978178683089],[69.4968949689497,-49.240044714069484],[69.53289532895329,-49.240044714069484],[69.53289532895329,-49.24342186860925],[69.53289532895329,-49.246799023149016],[69.47169471694718,-49.25355333222855],[69.41049410494105,-49.27550483673702],[69.4968949689497,-49.27043910492738],[69.57969579695799,-49.265373373117725],[69.65529655296555,-49.25355333222855],[69.72729727297275,-49.246799023149016],[69.66249662496625,-49.283947723086435],[69.58329583295833,-49.302522073055144],[69.64809648096482,-49.30927638213468],[69.71289712897129,-49.307587804864795],[69.75249752497527,-49.28057056854667],[69.78849788497885,-49.25355333222855],[69.79209792097922,-49.27212768219726],[69.80289802898031,-49.289013454896086],[69.82809828098283,-49.25861906403819],[69.86049860498605,-49.240044714069484],[69.85689856898571,-49.22315894137066],[69.85329853298535,-49.2096503232116],[69.8748987489875,-49.20458459140195],[69.89649896498966,-49.206273168671835],[69.89649896498966,-49.187698818703126],[69.91809918099182,-49.18094450962359],[69.93969939699397,-49.17419020054406],[69.95409954099543,-49.158993005115114],[69.99369993699938,-49.14717296422594],[70.03330033300333,-49.13535292333676],[70.0909009090091,-49.121844305177696],[70.15210152101523,-49.138730077876524],[70.14850148501486,-49.14886154149582],[70.14130141301413,-49.158993005115114],[70.19530195301954,-49.15730442784523],[70.23490234902349,-49.13197576879699],[70.27450274502746,-49.07625271889086],[70.33570335703357,-49.05430121438239],[70.40770407704079,-49.05598979165227],[70.47610476104762,-49.0728755643511],[70.5229052290523,-49.096515646129454],[70.53010530105303,-49.145484386956056],[70.54810548105482,-49.182633086893475]]],[[[5.6862568625686265,60.67620409167489],[5.6862568625686265,60.612038155419356],[5.6862568625686265,60.59515238272053],[5.675456754567563,60.54618364189392],[5.675456754567563,60.52929786919509],[5.682656826568262,60.482017705638384],[5.675456754567563,60.473574819288984],[5.6646566465664705,60.47019766474921],[5.635856358563586,60.47188624201908],[5.625056250562523,60.46682051020943],[5.617856178561794,60.45668904659016],[5.610656106561066,60.44824616024073],[5.610656106561066,60.44318042843108],[5.527855278552806,60.43473754208168],[5.502655026550286,60.43642611935155],[5.484654846548466,60.44486900570095],[5.459454594545946,60.46682051020943],[5.445054450544518,60.47188624201908],[5.434254342543426,60.47695197382873],[5.391053910539114,60.51241209649626],[5.322653226532282,60.54618364189392],[5.3370533705337095,60.55124937370357],[5.38745387453875,60.552937950973444],[5.409054090540906,60.558003682783095],[5.416254162541634,60.56138083732287],[5.423454234542362,60.571512300942175],[5.434254342543426,60.5782666100217],[5.473854738547402,60.593463805450654],[5.520655206552078,60.606972423609704],[5.542255422554234,60.61710388722901],[5.571055710557118,60.62554677357841],[5.581855818558182,60.63230108265793],[5.58905589055891,60.642432546277234],[5.58905589055891,60.66607262805559],[5.592655926559274,60.67620409167489],[5.607056070560702,60.68802413256407],[5.635856358563586,60.69308986437372],[5.6646566465664705,60.68802413256407],[5.6862568625686265,60.67620409167489]]],[[[5.736657366573667,62.28035249806345],[5.779857798577979,62.28035249806345],[5.801458014580163,62.2769753435237],[5.805058050580499,62.2668438799044],[5.794257942579435,62.26346672536462],[5.790657906579071,62.25840099355497],[5.787057870578707,62.251646684475446],[5.783457834578343,62.243203798126046],[5.787057870578707,62.238138066316395],[5.790657906579071,62.233072334506744],[5.794257942579435,62.23138375723687],[5.797857978579799,62.23138375723687],[5.790657906579071,62.21956371634769],[5.790657906579071,62.21449798453804],[5.779857798577979,62.20774367545849],[5.700657006570083,62.19085790275969],[5.545855458554598,62.19254648002956],[5.53865538655387,62.19423505729944],[5.531455314553142,62.197612211839214],[5.524255242552442,62.20436652091874],[5.517055170551714,62.21280940726814],[5.51345513455135,62.21956371634769],[5.502655026550286,62.22631802542722],[5.581855818558182,62.21787513907779],[5.607056070560702,62.22631802542722],[5.58905589055891,62.23138375723687],[5.567455674556754,62.23644948904652],[5.531455314553142,62.23982664358627],[5.517055170551714,62.243203798126046],[5.524255242552442,62.251646684475446],[5.53865538655387,62.25840099355497],[5.556655566555662,62.260089570824874],[5.553055530555298,62.26346672536462],[5.553055530555298,62.2668438799044],[5.549455494554962,62.27022103444415],[5.542255422554234,62.273598188983925],[5.56385563855639,62.29217253895263],[5.5998559985600025,62.29723827076228],[5.671856718567199,62.29386111622253],[5.679056790567898,62.295549693492404],[5.6862568625686265,62.300615425302055],[5.697056970569719,62.30230400257193],[5.704257042570418,62.29723827076228],[5.711457114571147,62.29048396168275],[5.718657186571875,62.2854182298731],[5.725857258572603,62.28204107533335],[5.736657366573667,62.28035249806345]]],[[[5.988659886598867,62.39686432968537],[5.9922599225992315,62.38673286606607],[5.9958599585995955,62.37491282517689],[5.99945999459996,62.366469938827464],[6.0138601386013875,62.363092784287716],[6.028260282602844,62.35971562974794],[6.067860678606792,62.34789558885876],[6.078660786607884,62.34114127977924],[6.067860678606792,62.34282985704911],[6.0570605706056995,62.34114127977924],[6.0354603546035435,62.33438697069971],[5.873458734587359,62.25502383901522],[5.812258122581227,62.24489237539592],[5.819458194581955,62.2567124162851],[5.841058410584111,62.27022103444415],[5.851858518585203,62.28035249806345],[5.844658446584475,62.28204107533335],[5.837458374583747,62.2854182298731],[5.830258302583019,62.287106807142976],[5.841058410584111,62.31243546619123],[5.830258302583019,62.32932123889006],[5.812258122581227,62.34282985704911],[5.805058050580499,62.363092784287716],[5.815858158581591,62.385044288796195],[5.837458374583747,62.4036186387649],[5.862658626586267,62.41543867965407],[5.887858878588787,62.42388156600347],[5.916659166591671,62.43063587508303],[5.945459454594555,62.42725872054325],[5.967059670596711,62.41712725692395],[5.988659886598867,62.39686432968537]]],[[[-42.03582035820358,62.76666275178968],[-41.99261992619927,62.74977697909085],[-41.8630186301863,62.74639982455108],[-41.8630186301863,62.73964551547155],[-41.88461884618846,62.73795693820168],[-41.92421924219241,62.727825474582374],[-41.94581945819456,62.7261368973125],[-41.96741967419675,62.72951405185225],[-42.007020070200696,62.74808840182098],[-42.02862028620285,62.7531541336306],[-42.1870218702187,62.73964551547155],[-42.20502205022049,62.732891206392026],[-42.17622176221761,62.7244483200426],[-42.14382143821439,62.72107116550285],[-42.07542075420753,62.7261368973125],[-42.046620466204644,62.732891206392026],[-42.032220322203216,62.732891206392026],[-42.021420214202124,62.7261368973125],[-42.021420214202124,62.71431685642332],[-42.032220322203216,62.70925112461367],[-42.04302043020431,62.70418539280402],[-42.05382053820537,62.697431083724496],[-42.05022050220501,62.69574250645459],[-42.03582035820358,62.683922465565416],[-42.115021150211504,62.683922465565416],[-42.133021330213296,62.68898819737507],[-42.165421654216544,62.70756254734377],[-42.183421834218336,62.71262827915342],[-42.21222212222122,62.71262827915342],[-42.21942219422195,62.71262827915342],[-42.22662226622265,62.70925112461367],[-42.233822338223376,62.70418539280402],[-42.23742237422374,62.69911966099437],[-42.241022410224105,62.697431083724496],[-42.2590225902259,62.697431083724496],[-42.26982269822699,62.70418539280402],[-42.273422734227324,62.7160054336932],[-42.266222662226625,62.732891206392026],[-42.316623166231665,62.70418539280402],[-42.33462334623346,62.697431083724496],[-42.33822338223382,62.69911966099437],[-42.341823418234185,62.70249681553412],[-42.34542345423455,62.70418539280402],[-42.349023490234885,62.705873970073895],[-42.35262352623525,62.70249681553412],[-42.36342363423634,62.69405392918472],[-42.367023670236705,62.692365351914844],[-42.37782377823777,62.69067677464494],[-42.3850238502385,62.68729962010519],[-42.39582395823959,62.68898819737507],[-42.40302403024029,62.697431083724496],[-42.40302403024029,62.700808238264244],[-42.41022410224102,62.705873970073895],[-42.42102421024211,62.71431685642332],[-42.424624246242445,62.7261368973125],[-42.41022410224102,62.74639982455108],[-42.40302403024029,62.7531541336306],[-42.44622446224463,62.7531541336306],[-42.40662406624065,62.78523710175838],[-42.36342363423634,62.812254338076514],[-42.349023490234885,62.81394291534639],[-42.298622986229844,62.80043429718734],[-42.23742237422374,62.80718860626686],[-42.007020070200696,62.78185994721861],[-41.98541985419854,62.76666275178968],[-42.03582035820358,62.76666275178968]]],[[[6.831068310683122,62.84096015166452],[6.859868598686006,62.84433730620427],[6.892268922689226,62.85446876982357],[6.924669246692474,62.85615734709347],[6.942669426694266,62.84096015166452],[6.942669426694266,62.825762956235565],[6.89586895868959,62.81900864715604],[6.881468814688162,62.80718860626686],[6.888668886688862,62.80550002899699],[6.899468994689954,62.798745719917434],[6.903069030690318,62.790302833568035],[6.899468994689954,62.78017136994873],[6.885068850688526,62.77510563813908],[6.867068670686706,62.78017136994873],[6.838268382683822,62.79367998810781],[6.784267842678446,62.80718860626686],[6.76986769867699,62.817320069886165],[6.773467734677354,62.822385801695816],[6.784267842678446,62.82407437896569],[6.805868058680602,62.822385801695816],[6.784267842678446,62.83251726531509],[6.777067770677718,62.839271574394644],[6.777067770677718,62.84940303801392],[6.791467914679146,62.857845924363346],[6.805868058680602,62.85446876982357],[6.831068310683122,62.84096015166452]]],[[[8.483484834848355,63.24621869643636],[8.548285482854823,63.21920146011823],[8.573485734857343,63.19893853287965],[8.566285662856643,63.17867560564105],[8.422284222842222,63.16178983294222],[8.375483754837546,63.165166987481996],[8.346683466834662,63.17698702837117],[8.292682926829286,63.21582430557848],[8.263882638826402,63.23271007827731],[8.271082710827102,63.24284154189661],[8.274682746827466,63.26817020094484],[8.27828278282783,63.27492451002436],[8.289082890828922,63.27661308729424],[8.299882998829986,63.27492451002436],[8.307083070830714,63.26985877821471],[8.314283142831442,63.263104469135186],[8.325083250832506,63.25972731459541],[8.335883358833598,63.263104469135186],[8.346683466834662,63.26648162367496],[8.35388353883539,63.26648162367496],[8.368283682836847,63.254661582785786],[8.382683826838274,63.236087232817056],[8.397083970839702,63.227644346467656],[8.407884078840794,63.23946438735683],[8.400684006840066,63.25635016005566],[8.400684006840066,63.271547355484614],[8.411484114841159,63.28336739637379],[8.42948429484295,63.28843312818344],[8.447484474844742,63.28336739637379],[8.458284582845835,63.27323593275449],[8.483484834848355,63.24621869643636]]],[[[9.138691386913877,63.56704837771409],[9.174691746917489,63.56704837771409],[9.174691746917489,63.561982645904436],[9.14229142291424,63.55522833682488],[9.106291062910628,63.53327683231643],[8.857888578885792,63.4876852460296],[8.717487174871764,63.48430809148982],[8.66348663486636,63.46911089606087],[8.573485734857343,63.458979432441595],[8.50508505085051,63.43365077339334],[8.476284762847627,63.431962196123465],[8.407884078840794,63.431962196123465],[8.389883898839003,63.43365077339334],[8.346683466834662,63.45222512336204],[8.343083430834326,63.453913700631944],[8.343083430834326,63.45560227790182],[8.339483394833962,63.458979432441595],[8.332283322833234,63.458979432441595],[8.325083250832506,63.45729085517169],[8.321483214832142,63.45222512336204],[8.317883178831806,63.44715939155239],[8.314283142831442,63.445470814282515],[8.299882998829986,63.445470814282515],[8.289082890828922,63.44884796882229],[8.281882818828194,63.45560227790182],[8.285482854828558,63.46573374152112],[8.27828278282783,63.46573374152112],[8.289082890828922,63.4859966687597],[8.299882998829986,63.50119386418865],[8.317883178831806,63.51301390507783],[8.415084150841523,63.55860549136466],[8.436684366843679,63.561982645904436],[8.616686166861683,63.570425532253836],[8.692286922869243,63.56367122317431],[8.710287102871035,63.56367122317431],[8.724687246872463,63.56704837771409],[8.681486814868151,63.578868418603264],[8.584285842858435,63.587311304952664],[8.544685446854487,63.60250850038162],[8.566285662856643,63.61263996400092],[8.584285842858435,63.614328541270794],[8.620286202862047,63.60926280946114],[8.78948789487896,63.63965720031902],[8.829088290882908,63.63965720031902],[8.832688326883272,63.61601711854067],[8.847088470884728,63.61601711854067],[8.854288542885428,63.619394273080445],[8.857888578885792,63.627837159429845],[8.861488614886156,63.63965720031902],[8.868688686886884,63.64641150939855],[8.886688866888676,63.649788663938324],[8.919089190891924,63.6514772412082],[8.951489514895144,63.65823155028775],[8.9658896588966,63.65654297301785],[8.976689766897664,63.64472293212867],[8.973089730897328,63.64472293212867],[8.9658896588966,63.63965720031902],[8.958689586895872,63.63459146850937],[8.955089550895508,63.63121431396962],[8.962289622896236,63.624460004890096],[8.973089730897328,63.62108285035032],[8.987489874898756,63.592377036762315],[9.01629016290164,63.597442768571966],[9.048690486904889,63.60757423219127],[9.081090810908108,63.605885654921366],[9.120691206912085,63.58224557314301],[9.124291242912449,63.57717984133336],[9.124291242912449,63.57211410952371],[9.127891278912784,63.56873695498396],[9.138691386913877,63.56704837771409]]],[[[11.287912879128811,64.55824323513522],[11.313113131131331,64.53966888516652],[11.424714247142475,64.53966888516652],[11.449914499144995,64.51434022611826],[11.439114391143931,64.50758591703874],[11.431914319143203,64.49745445341944],[11.417514175141747,64.47212579437121],[11.392313923139227,64.48225725799048],[11.316713167131667,64.48732298980013],[11.298712987129875,64.49745445341944],[11.284312843128447,64.51265164884839],[11.248312483124835,64.51602880338814],[11.179911799118003,64.50758591703874],[11.129511295112962,64.55655465786535],[11.140311403114026,64.57175185329427],[11.16911169111691,64.57344043056418],[11.223112231122315,64.5700632760244],[11.190711907119066,64.59539193507263],[11.082710827108286,64.5886376259931],[11.04311043110431,64.60045766688228],[11.03591035910361,64.61396628504136],[11.04311043110431,64.63085205774019],[11.053910539105402,64.64436067589924],[11.06831068310683,64.65111498497876],[11.08631086310865,64.65280356224864],[11.104311043110442,64.64604925316911],[11.14391143911439,64.63085205774019],[11.230312303123043,64.61058913050158],[11.26991269912699,64.59201478053288],[11.287912879128811,64.55824323513522]]],[[[-40.14220142201421,64.48732298980013],[-40.15660156601567,64.48056868072061],[-40.18180181801819,64.4619943307519],[-40.19260192601925,64.4518628671326],[-40.17820178201782,64.44004282624343],[-40.18540185401852,64.43497709443378],[-40.196201962019614,64.43497709443378],[-40.20700207002071,64.4417314035133],[-40.21780217802177,64.44848571259286],[-40.322203222032215,64.45355144440248],[-40.4122041220412,64.46706006256156],[-40.44460444604445,64.48056868072061],[-40.45900459004591,64.48225725799048],[-40.4770047700477,64.48732298980013],[-40.49140491404913,64.49407729887969],[-40.498604986049855,64.50420876249896],[-40.49500495004949,64.51602880338814],[-40.48060480604806,64.52953742154722],[-40.48060480604806,64.53798030789662],[-40.48420484204843,64.54811177151592],[-40.498604986049855,64.55317750332557],[-40.51660516605165,64.55824323513522],[-40.52740527405274,64.56162038967497],[-40.53460534605347,64.56837469875452],[-40.54180541805417,64.57681758510392],[-40.54540545405453,64.58526047145335],[-40.549005490054896,64.59708051234253],[-40.52020520205201,64.59539193507263],[-40.51300513005128,64.60214624415218],[-40.52020520205201,64.61396628504136],[-40.556205562055624,64.63760636681971],[-40.56340563405632,64.64942640770889],[-40.56700567005669,64.66293502586794],[-40.574205742057416,64.67813222129689],[-40.56700567005669,64.67813222129689],[-40.57780577805778,64.68995226218607],[-40.58860588605884,64.6967065712656],[-40.61740617406173,64.7068380348849],[-40.6030060300603,64.71359234396442],[-40.6030060300603,64.72034665304395],[-40.62100621006209,64.72372380758372],[-40.67140671406713,64.7456753120922],[-40.707407074070744,64.77269254841033],[-40.77220772207721,64.80308693926821],[-40.80460804608046,64.83010417558634],[-40.82260822608225,64.84867852555504],[-40.826208262082616,64.86049856644422],[-40.826208262082616,64.8723186073334],[-40.840608406084044,64.88582722549245],[-40.86940869408693,64.90440157546118],[-40.82980829808298,64.9297302345094],[-40.77220772207721,64.93817312085883],[-40.71820718207181,64.93310738904918],[-40.657006570065704,64.89764726638165],[-40.61020610206103,64.88582722549245],[-40.57060570605705,64.85880998917435],[-40.498604986049855,64.83010417558634],[-40.50940509405095,64.82672702104657],[-40.52020520205201,64.82334986650679],[-40.52740527405274,64.81659555742726],[-40.53460534605347,64.80984124834774],[-40.523805238052375,64.79970978472844],[-40.498604986049855,64.78957832110916],[-40.48420484204843,64.78113543475973],[-40.49500495004949,64.77438112568021],[-40.448204482044815,64.75242962117173],[-40.43740437404372,64.74060958028255],[-40.45900459004591,64.7254123848536],[-40.473404734047335,64.72203523031385],[-40.48780487804876,64.72372380758372],[-40.498604986049855,64.7254123848536],[-40.51300513005128,64.7254123848536],[-40.52740527405274,64.72203523031385],[-40.54180541805417,64.7152809212343],[-40.549005490054896,64.71021518942467],[-40.50940509405095,64.70177230307524],[-40.46260462604624,64.67813222129689],[-40.40860408604087,64.66631218040772],[-40.39420394203941,64.65280356224864],[-40.38700387003868,64.63422921227993],[-40.37620376203762,64.6173434395811],[-40.38700387003868,64.61565486231123],[-40.40860408604087,64.61058913050158],[-40.41580415804157,64.61058913050158],[-40.42660426604266,64.61396628504136],[-40.448204482044815,64.62747490320041],[-40.45900459004591,64.63085205774019],[-40.48420484204843,64.62747490320041],[-40.48060480604806,64.61903201685101],[-40.45180451804518,64.59708051234253],[-40.45900459004591,64.59539193507263],[-40.48060480604806,64.58188331691358],[-40.44460444604445,64.56499754421475],[-40.39420394203941,64.55486608059545],[-40.26460264602645,64.54304603970627],[-40.21780217802177,64.52784884427734],[-40.17460174601746,64.50927449430861],[-40.14220142201421,64.48732298980013]]],[[[12.45072450724507,65.42617195185491],[12.461524615246162,65.41266333369586],[12.47592475924759,65.40253187007656],[12.490324903249046,65.3974661382669],[12.508325083250838,65.3974661382669],[12.490324903249046,65.38733467464763],[12.457924579245798,65.38226894283798],[12.44352443524437,65.3704489019488],[12.39312393123933,65.3603174383295],[12.378723787237874,65.35356312924998],[12.36792367923681,65.34343166563067],[12.353523535235354,65.33667735655115],[12.335523355233562,65.3316116247415],[12.238322383223846,65.32316873839207],[12.209522095220962,65.32485731566197],[12.205922059220597,65.31979158385232],[12.209522095220962,65.3029058111535],[12.220322203222025,65.30121723388362],[12.234722347223482,65.29108577026432],[12.24912249122491,65.28095430664501],[12.234722347223482,65.27588857483536],[12.220322203222025,65.27082284302571],[12.195121951219505,65.25224849305701],[12.184321843218441,65.24718276124736],[12.079920799207997,65.21509979311958],[12.054720547205477,65.22016552492923],[12.076320763207633,65.23367414308831],[12.094320943209425,65.25562564759676],[12.12312123121231,65.3029058111535],[12.112321123211245,65.30121723388362],[12.101521015210153,65.3029058111535],[12.09072090720909,65.30459438842337],[12.079920799207997,65.30797154296314],[12.097920979209789,65.32485731566197],[12.108721087210881,65.34343166563067],[12.12312123121231,65.35694028378973],[12.14112141121413,65.36369459286925],[12.155521555215557,65.36200601559938],[12.169921699216985,65.35356312924998],[12.180721807218077,65.3501859747102],[12.187921879218806,65.35525170651985],[12.202322023220233,65.37213747921868],[12.209522095220962,65.37720321102833],[12.209522095220962,65.38564609737773],[12.184321843218441,65.38395752010786],[12.177121771217713,65.38564609737773],[12.17352173521735,65.38564609737773],[12.16632166321665,65.39071182918738],[12.159121591215921,65.39577756099703],[12.17352173521735,65.40253187007656],[12.209522095220962,65.42617195185491],[12.26712267122673,65.4498120336333],[12.328323283232834,65.46669780633212],[12.321123211232106,65.47514069268152],[12.31752317523177,65.48020642449117],[12.313923139231406,65.4869607335707],[12.313923139231406,65.49540361992013],[12.259922599226002,65.47345211541165],[12.227522275222753,65.468386383602],[12.19872198721987,65.47345211541165],[12.231122311223118,65.4869607335707],[12.205922059220597,65.4869607335707],[12.231122311223118,65.51228939261895],[12.24192241922421,65.525798010778],[12.245522455224545,65.54099520620696],[12.238322383223846,65.54268378347683],[12.231122311223118,65.54774951528648],[12.22392223922239,65.54943809255636],[12.245522455224545,65.55956955617566],[12.259922599226002,65.57476675160461],[12.27432274322743,65.58152106068414],[12.295922959229586,65.56632386525519],[12.31752317523177,65.54099520620696],[12.32472324723247,65.53255231985753],[12.335523355233562,65.52748658804788],[12.385923859238602,65.51397796988883],[12.396723967239666,65.5072236608093],[12.44352443524437,65.46669780633212],[12.447124471244706,65.45825491998269],[12.447124471244706,65.43799199274412],[12.45072450724507,65.42617195185491]]],[[[-36.786967869678705,65.87026777383409],[-36.76536765367652,65.85338200113526],[-36.77256772567725,65.84325053751596],[-36.79056790567904,65.83311907389665],[-36.8049680496805,65.82298761027735],[-36.8049680496805,65.81285614665805],[-36.786967869678705,65.76051025129169],[-36.82656826568265,65.74193590132299],[-36.84816848168481,65.73855874678321],[-36.869768697686965,65.74869021040251],[-36.88056880568806,65.76557598310134],[-36.89856898568985,65.77233029218087],[-36.920169201692005,65.77570744672065],[-36.94176941769416,65.78246175580017],[-36.93456934569346,65.78583891033995],[-36.92736927369273,65.7892160648797],[-36.920169201692005,65.79428179668935],[-36.91656916569164,65.80272468303878],[-36.95976959769598,65.80441326030865],[-36.97776977769777,65.80779041484843],[-36.99936999369993,65.81623330119783],[-36.970569705697045,65.81623330119783],[-36.94176941769416,65.82129903300748],[-36.887768877688785,65.83649622843643],[-36.837368373683745,65.86689061929431],[-36.812168121681225,65.87533350564371],[-36.786967869678705,65.87026777383409]]],[[[-36.75096750967509,65.90572789650162],[-36.70776707767078,65.93105655554984],[-36.628566285662856,65.95300806005832],[-36.54576545765457,65.96313952367763],[-36.502565025650256,65.95300806005832],[-36.50616506165062,65.92936797827997],[-36.52056520565205,65.91079362831127],[-36.567365673656724,65.88884212380279],[-36.58176581765818,65.88715354653291],[-36.59616596165961,65.89053070107266],[-36.6069660696607,65.89053070107266],[-36.6141661416614,65.87871066018349],[-36.610566105661064,65.87026777383409],[-36.603366033660336,65.86182488748466],[-36.585365853658544,65.85000484659548],[-36.592565925659244,65.84156196024608],[-36.59616596165961,65.83311907389665],[-36.59616596165961,65.82467618754725],[-36.585365853658544,65.81623330119783],[-36.62136621366213,65.799347528499],[-36.635766357663584,65.79597037395925],[-36.64656646566465,65.80610183757852],[-36.736567365673665,65.80272468303878],[-36.72936729367294,65.8196104557376],[-36.68256682566826,65.83987338297618],[-36.686166861668625,65.85338200113526],[-36.693366933669324,65.86013631021478],[-36.70776707767078,65.88208781472326],[-36.71496714967148,65.88884212380279],[-36.75096750967509,65.90572789650162]]],[[[-53.098730987309864,68.4537909967546],[-53.062730627306266,68.44872526494495],[-53.03393033930338,68.43690522405578],[-53.00153001530015,68.43183949224613],[-52.97272972729726,68.44028237859555],[-52.99072990729907,68.44703668767508],[-53.03393033930338,68.46729961491366],[-53.05193051930519,68.47911965580283],[-53.048330483304824,68.49093969669201],[-53.03033030330303,68.49600542850166],[-52.99072990729907,68.49600542850166],[-52.96552965529655,68.48756254215226],[-52.94752947529474,68.46561103764378],[-52.92952929529295,68.45041384221483],[-52.90432904329043,68.4537909967546],[-52.911529115291145,68.46054530583413],[-52.89352893528935,68.45885672856426],[-52.87552875528755,68.45210241948473],[-52.861128611286105,68.44028237859555],[-52.85392853928539,68.42339660589673],[-52.86472864728647,68.40988798773765],[-52.886328863288625,68.39975652411835],[-52.911529115291145,68.38962506049907],[-52.95112951129511,68.36936213326047],[-52.97632976329763,68.36429640145082],[-53.09153091530915,68.36091924691107],[-53.113131131311306,68.36429640145082],[-53.11673116731167,68.37949359687977],[-53.123931239312384,68.38287075141952],[-53.15633156331563,68.3862479059593],[-53.195931959319594,68.39806794684847],[-53.20673206732067,68.39975652411835],[-53.20673206732067,68.4149537195473],[-53.21033210332102,68.42677376043648],[-53.224732247322464,68.433528069516],[-53.19233192331923,68.43690522405578],[-53.13113131131311,68.45041384221483],[-53.098730987309864,68.4537909967546]]],[[[-52.34992349923499,68.64291165098146],[-52.371523715237146,68.65810884641041],[-52.3931239312393,68.66317457822007],[-52.41832418324182,68.66148600095016],[-52.483124831248304,68.64291165098146],[-52.634326343263425,68.62771445555254],[-52.64872648726487,68.62264872374288],[-52.67032670326702,68.61758299193323],[-52.735127351273505,68.62602587828263],[-52.936729367293665,68.60576295104406],[-53.0591305913059,68.57705713745605],[-53.120331203312034,68.5703028283765],[-53.095130951309514,68.60745152831393],[-53.06633066330663,68.62940303282241],[-53.02673026730267,68.64291165098146],[-52.82512825128251,68.65473169187064],[-52.76392763927639,68.66655173275981],[-52.781927819278195,68.67330604183937],[-52.84672846728466,68.66655173275981],[-52.84672846728466,68.67330604183937],[-52.630726307263075,68.70032327815747],[-52.63792637926379,68.70201185542737],[-52.6451264512645,68.70538900996712],[-52.64872648726487,68.7087661645069],[-52.64872648726487,68.71552047358642],[-52.52632526325263,68.71552047358642],[-52.529925299252994,68.71383189631655],[-52.533525335253344,68.71045474177677],[-52.53712537125371,68.707077587237],[-52.54072540725407,68.70201185542737],[-52.25992259922599,68.707077587237],[-52.245522455224545,68.71045474177677],[-52.22752227522275,68.7188976281262],[-52.21672216722166,68.7188976281262],[-52.195121951219505,68.71214331904665],[-52.17352173521735,68.7087661645069],[-52.12672126721267,68.707077587237],[-52.13752137521375,68.70370043269725],[-52.14832148321483,68.70201185542737],[-52.15912159121591,68.70032327815747],[-52.169921699216985,68.70201185542737],[-52.20592205922058,68.69525754634782],[-52.21312213122131,68.6901918145382],[-52.24192241922418,68.66992888729959],[-52.270722707227065,68.65810884641041],[-52.29952299522995,68.64291165098146],[-52.32472324723247,68.63446876463206],[-52.34992349923499,68.64291165098146]]],[[[22.92322923229233,70.30447168454603],[22.944829448294485,70.29940595273641],[22.96642966429664,70.2977173754665],[22.988029880298797,70.29265164365685],[23.00963009630098,70.28083160276768],[23.020430204302045,70.26563440733875],[23.01683016830168,70.25381436644955],[23.002430024300253,70.24874863463992],[22.73242732427326,70.25719152098932],[22.444424444244447,70.29096306638698],[22.37962379623798,70.32642318905451],[22.37242372423725,70.33148892086416],[22.37962379623798,70.34668611629311],[22.39762397623977,70.35850615718229],[22.42282422824229,70.36188331172204],[22.440824408244083,70.35681757991242],[22.451624516245175,70.34499753902324],[22.469624696246967,70.33655465267381],[22.50562505625058,70.32473461178463],[22.476824768247695,70.34837469356299],[22.469624696246967,70.35344042537264],[22.469624696246967,70.3686376208016],[22.47322473224733,70.38045766169077],[22.484024840248424,70.38383481623052],[22.5308253082531,70.36357188899194],[22.57402574025741,70.38214623896064],[22.59922599225993,70.36694904353169],[22.60642606426066,70.38045766169077],[22.617226172261724,70.3872119707703],[22.63162631626318,70.38552339350042],[22.642426424264244,70.37370335261124],[22.649626496264972,70.37370335261124],[22.649626496264972,70.38552339350042],[22.660426604266064,70.3956548571197],[22.674826748267492,70.39903201165947],[22.68922689226892,70.39396627984982],[22.692826928269284,70.38552339350042],[22.692826928269284,70.36357188899194],[22.696426964269648,70.35344042537264],[22.71442714427144,70.33655465267381],[22.728827288272896,70.34499753902324],[22.736027360273596,70.36526046626182],[22.728827288272896,70.3872119707703],[22.75762757627578,70.3956548571197],[22.779227792277936,70.38552339350042],[22.797227972279728,70.36694904353169],[22.804428044280456,70.34162038448346],[22.829628296282976,70.33317749813403],[22.955629556295577,70.32473461178463],[22.944829448294485,70.32304603451476],[22.937629376293756,70.31798030270511],[22.930429304293057,70.31291457089546],[22.92322923229233,70.30447168454603]]],[[[-55.04635046350464,72.31894436751611],[-55.03915039150391,72.30881290389681],[-55.035550355503545,72.30374717208716],[-55.02835028350283,72.30037001754738],[-55.042750427504274,72.30037001754738],[-55.07155071550714,72.31219005843656],[-55.08955089550895,72.31219005843656],[-55.10395103951039,72.30543574935703],[-55.111151111511106,72.29530428573776],[-55.118351183511834,72.28179566757868],[-55.12915129151291,72.27166420395938],[-55.15075150751507,72.26490989487985],[-55.197551975519744,72.25815558580032],[-55.219152191521914,72.2514012767208],[-55.22995229952299,72.2412698131015],[-55.25515255152551,72.21594115405327],[-55.26595265952659,72.20580969043397],[-55.337953379533786,72.17710387684596],[-55.37755377553775,72.16697241322666],[-55.43515435154352,72.16021810414713],[-55.46755467554675,72.15008664052783],[-55.48555485554856,72.14839806325796],[-55.50355503555035,72.1517752177977],[-55.5359553595536,72.16866099049653],[-55.55395553955539,72.17541529957606],[-55.647556475564755,72.17879245411584],[-55.68355683556835,72.19061249500501],[-55.672756727567275,72.21762973132314],[-55.63675636756368,72.2328269267521],[-55.449554495544945,72.25815558580032],[-55.43515435154352,72.26828704941963],[-55.43515435154352,72.2801070903088],[-55.46035460354604,72.28348424484855],[-55.53235532355323,72.27504135849915],[-55.60435604356043,72.27841851303893],[-55.625956259562585,72.28348424484855],[-55.63315633156331,72.29361570846785],[-55.622356223562235,72.30205859481728],[-55.60435604356043,72.30543574935703],[-55.58275582755827,72.30037001754738],[-55.41715417154171,72.29192713119798],[-55.38115381153811,72.30037001754738],[-55.30555305553055,72.32569867659564],[-55.26595265952659,72.33245298567516],[-55.208352083520836,72.33245298567516],[-55.20115201152011,72.33583014021494],[-55.147151471514704,72.3696016856126],[-55.132751327513276,72.37466741742222],[-55.042750427504274,72.38311030377164],[-55.01395013950139,72.38142172650177],[-55.01395013950139,72.36622453107282],[-55.01755017550175,72.34596160383421],[-55.02835028350283,72.32738725386551],[-55.04635046350464,72.31894436751611]]],[[[-39.43659436594365,83.10557596752679],[-39.299792997929984,83.09713308117736],[-39.28899288992889,83.09206734936771],[-39.28899288992889,83.08531304028818],[-39.306993069930684,83.07180442212913],[-39.34659346593466,83.05154149489053],[-39.5229952299523,83.0059499086037],[-39.66699666996669,82.9958184449844],[-39.735397353973525,83.00088417679405],[-39.76419764197641,83.00932706314347],[-39.83979839798397,83.016081372223],[-39.97659976599766,83.06167295850983],[-40.04860048600486,83.07180442212913],[-40.31500315003149,83.07855873120866],[-40.35820358203583,83.08531304028818],[-40.397803978039775,83.09882165844724],[-40.39420394203941,83.10388739025689],[-40.39060390603905,83.11233027660631],[-40.41580415804157,83.11401885387619],[-40.46620466204661,83.12921604930514],[-40.49140491404913,83.13259320384489],[-40.51300513005128,83.13765893565454],[-40.53460534605347,83.15116755381362],[-40.54540545405453,83.1629875947028],[-40.531005310053104,83.16805332651245],[-40.25020250202502,83.16467617197267],[-39.9729997299973,83.15961044016302],[-39.81819818198181,83.12246174022562],[-39.43659436594365,83.10557596752679]]],[[[-40.10260102601026,83.05660722670018],[-40.05220052200522,83.02790141311218],[-40.0342003420034,83.02283568130252],[-39.987399873998726,83.01945852676278],[-39.944199441994414,83.01101564041335],[-39.861398613986125,82.98230982682534],[-40.28260282602827,83.0059499086037],[-40.70380703807038,83.02958999038205],[-40.90180901809018,83.07180442212913],[-41.02781027810278,83.07855873120866],[-41.06381063810639,83.08362446301831],[-41.15741157411574,83.11908458568584],[-41.44901449014489,83.1612990174329],[-41.4850148501485,83.15961044016302],[-41.477814778147774,83.16805332651245],[-41.4850148501485,83.16805332651245],[-41.4310143101431,83.17818479013172],[-41.143011430114285,83.17480763559197],[-40.858608586085865,83.1731190583221],[-40.808208082080824,83.15961044016302],[-40.74700747007469,83.12583889476537],[-40.71820718207181,83.11908458568584],[-40.63540635406355,83.11233027660631],[-40.48780487804876,83.07687015393878],[-40.26460264602645,83.07011584485923],[-40.18540185401852,83.05998438123996],[-40.12780127801278,83.05998438123996],[-40.10260102601026,83.05660722670018]]],[[[-38.83538835388353,83.17480763559197],[-38.81018810188101,83.16974190378232],[-38.662586625866254,83.12752747203527],[-38.6409864098641,83.11908458568584],[-38.91818918189182,83.10895312206654],[-38.95058950589507,83.11908458568584],[-38.94338943389434,83.11908458568584],[-39.393393933939336,83.15961044016302],[-39.8469984699847,83.2001362946402],[-39.86859868598685,83.20689060371973],[-39.904599045990466,83.2288421082282],[-40.04860048600486,83.26092507635599],[-40.34020340203401,83.26599080816564],[-40.62820628206282,83.27105653997529],[-40.664206642066404,83.28287658086447],[-40.66780667806677,83.30313950810304],[-40.649806498064976,83.32340243534165],[-40.61740617406173,83.3385996307706],[-40.56700567005669,83.34704251712],[-40.4050040500405,83.3385996307706],[-40.4050040500405,83.34535393985013],[-40.473404734047335,83.34873109438988],[-40.54180541805417,83.35886255800918],[-40.48780487804876,83.3656168670887],[-40.297002970029695,83.35041967165978],[-40.2250022500225,83.33015674442117],[-39.99819998199982,83.2997623535633],[-39.7749977499775,83.30145093083317],[-39.67059670596706,83.27781084905482],[-39.576995769957705,83.24235072638729],[-39.476194761947625,83.21871064460893],[-39.15579155791556,83.19675914010045],[-38.83538835388353,83.17480763559197]]],[[[115.62055620556208,-8.288668764874288],[115.6529565295653,-8.319063155732167],[115.69255692556925,-8.344391814780408],[115.71415714157143,-8.374786205638301],[115.69975699756998,-8.418689214655245],[115.68895688956889,-8.428820678274548],[115.66015660156603,-8.455837914592664],[115.63855638556385,-8.465969378211966],[115.61695616956172,-8.492986614530082],[115.60615606156063,-8.501429500879496],[115.5341553415534,-8.506495232689147],[115.52335523355237,-8.511560964498798],[115.51615516155164,-8.533512469007277],[115.49815498154982,-8.548709664436217],[115.36495364953652,-8.597678405262812],[115.3217532175322,-8.623007064311054],[115.28935289352893,-8.658467186978598],[115.2677526775268,-8.698993041455779],[115.25335253352534,-8.714190236884718],[115.23175231752316,-8.720944545964258],[115.2137521375214,-8.727698855043784],[115.2029520295203,-8.746273205012486],[115.20655206552067,-8.769913286790853],[115.22095220952212,-8.788487636759555],[115.22815228152285,-8.78173332768003],[115.22455224552249,-8.778356173140267],[115.2137521375214,-8.76147040044144],[115.23175231752316,-8.7547160913619],[115.23895238952389,-8.771601864060727],[115.23535235352352,-8.820570604887337],[115.22815228152285,-8.830702068506625],[115.2137521375214,-8.839144954856039],[115.19575195751958,-8.847587841205453],[115.18135181351812,-8.850964995745215],[115.15615156151563,-8.852653573015104],[115.13455134551344,-8.850964995745215],[115.11295112951132,-8.845899263935578],[115.0949509495095,-8.834079223046388],[115.0949509495095,-8.818882027617448],[115.11655116551168,-8.803684832188509],[115.15975159751599,-8.78173332768003],[115.17055170551708,-8.768224709520965],[115.18135181351812,-8.746273205012486],[115.18495184951848,-8.722633123234132],[115.17775177751781,-8.70405877326543],[115.17415174151745,-8.69730446418589],[115.15615156151563,-8.66184434151836],[115.1489514895149,-8.658467186978598],[115.13815138151381,-8.655090032438821],[115.13095130951308,-8.651712877899058],[115.10215102151022,-8.62976137339058],[115.09135091350913,-8.61456417796164],[115.0841508415084,-8.601055559802575],[115.07695076950773,-8.585858364373635],[115.05895058950591,-8.570661168944696],[115.02295022950233,-8.548709664436217],[114.95454954549547,-8.484543728180668],[114.92574925749261,-8.46765795548184],[114.79614796147962,-8.40518059649618],[114.75654756547567,-8.398426287416655],[114.63774637746377,-8.398426287416655],[114.60534605346055,-8.386606246527478],[114.57294572945733,-8.362966164749125],[114.54774547745478,-8.33426035116112],[114.46854468544689,-8.217748519539214],[114.4469444694447,-8.121499615155898],[114.45414454144543,-8.094482378837768],[114.48294482944829,-8.089416647028116],[114.50454504545047,-8.091105224298005],[114.51894518945193,-8.099548110647419],[114.5261452614526,-8.113056728806484],[114.54054540545405,-8.128253924235423],[114.55494554945551,-8.133319656045074],[114.56934569345697,-8.129942501505312],[114.59814598145982,-8.111368151536595],[114.61254612546128,-8.121499615155898],[114.6341463414634,-8.126565346965535],[114.67374673746741,-8.131631078775186],[114.69174691746917,-8.135008233314949],[114.85734857348575,-8.192419860490972],[114.89334893348934,-8.180599819601781],[114.98334983349832,-8.180599819601781],[115.02295022950233,-8.172156933252381],[115.06255062550628,-8.143451119664363],[115.13455134551344,-8.072530874329289],[115.17415174151745,-8.055645101630475],[115.19215192151921,-8.055645101630475],[115.2137521375214,-8.059022256170238],[115.23535235352352,-8.067465142519652],[115.25335253352534,-8.079285183408828],[115.2677526775268,-8.089416647028116],[115.3361533615336,-8.10461384245707],[115.50175501755018,-8.172156933252381],[115.5341553415534,-8.194108437760846],[115.56655566555668,-8.221125674078976],[115.62055620556208,-8.288668764874288]]],[[[116.30456304563046,-3.717690095301819],[116.30816308163082,-3.7244444043813445],[116.32616326163264,-3.731198713460884],[116.32976329763301,-3.739641599810284],[116.33336333363337,-3.7497730634295863],[116.32256322563228,-3.7565273725091117],[116.31176311763119,-3.7852331860971304],[116.3009630096301,-3.7987418042561814],[116.290162901629,-3.815627576955009],[116.290162901629,-3.840956236003251],[116.29376293762937,-3.854464854162316],[116.30816308163082,-3.8781049359406694],[116.31176311763119,-3.893302131369623],[116.30816308163082,-3.9051221722587997],[116.29736297362973,-3.9084993267985624],[116.28656286562864,-3.9084993267985624],[116.2757627576276,-3.9101879040684366],[116.26856268562688,-3.9186307904178506],[116.26136261362615,-3.9270736767672645],[116.25776257762578,-3.933827985846804],[116.24696246962469,-3.937205140386567],[116.23256232562329,-3.9388937176564554],[116.2217622176222,-3.9388937176564554],[116.21456214562147,-3.9439594494660923],[116.20736207362074,-3.950713758545632],[116.20736207362074,-3.9574680676251575],[116.20736207362074,-3.969288108514334],[116.20376203762038,-3.976042417593874],[116.20016200162001,-3.9794195721336365],[116.18216182161825,-3.9878624584830504],[116.18216182161825,-3.9895510357529247],[116.17856178561789,-3.994616767562576],[116.17136171361716,-4.004748231181878],[116.15336153361534,-4.019945426610818],[116.14616146161461,-4.02332258115058],[116.12456124561248,-4.03007689023012],[116.11736117361176,-4.0368311993096455],[116.09936099360993,-4.060471281087999],[116.0921609216092,-4.0672255901675385],[116.08856088560884,-4.050339817468711],[116.08136081360817,-4.038519776579534],[116.07056070560708,-4.033454044769883],[116.05616056160562,-4.040208353849408],[116.0489604896049,-4.019945426610818],[116.05256052560526,-3.9979939221023386],[116.05976059760599,-3.976042417593874],[116.06336063360635,-3.9540909130853947],[116.06696066960671,-3.950713758545632],[116.0777607776078,-3.9490251812757435],[116.08856088560884,-3.9439594494660923],[116.0921609216092,-3.933827985846804],[116.08856088560884,-3.9253850994973902],[116.0777607776078,-3.9101879040684366],[116.07056070560708,-3.903433594988911],[116.07056070560708,-3.884859245020209],[116.0777607776078,-3.824070463304423],[116.07416074160744,-3.80043038152607],[116.06696066960671,-3.7869217633670047],[116.04536045360453,-3.7649702588585257],[116.02736027360277,-3.739641599810284],[116.02016020160204,-3.7244444043813445],[116.01296012960131,-3.6501470045065076],[116.01656016560167,-3.629884077267917],[116.04176041760417,-3.5657181410123684],[116.04536045360453,-3.498175050217071],[116.05256052560526,-3.4779121229784664],[116.09576095760957,-3.400237568563867],[116.11736117361176,-3.3360716323083324],[116.12096120961212,-3.3242515914191415],[116.12456124561248,-3.3191858596095045],[116.16056160561607,-3.303988664180551],[116.17136171361716,-3.2972343551010255],[116.22896228962293,-3.2448884597346535],[116.24696246962469,-3.238134150655128],[116.25416254162542,-3.233068418845477],[116.26136261362615,-3.2229369552261886],[116.26856268562688,-3.219559800686426],[116.2757627576276,-3.2313798415756025],[116.27936279362797,-3.2448884597346535],[116.2757627576276,-3.2567085006238443],[116.27216272162724,-3.268528541513021],[116.25776257762578,-3.366466023166211],[116.26136261362615,-3.405303300373518],[116.290162901629,-3.444140577580825],[116.30456304563046,-3.4593377730097643],[116.31896318963192,-3.479600700248355],[116.32256322563228,-3.498175050217071],[116.2757627576276,-3.5133722456460106],[116.2757627576276,-3.533635172884601],[116.28296282962833,-3.5538981001231917],[116.290162901629,-3.567406718282257],[116.29736297362973,-3.5842924909810847],[116.29736297362973,-3.602866840949787],[116.29736297362973,-3.646769849966745],[116.3009630096301,-3.670409931745098],[116.30456304563046,-3.6805413953644006],[116.30456304563046,-3.717690095301819]]],[[[103.04923049230496,0.797565524364515],[103.05283052830532,0.7840569062054641],[103.05283052830532,0.7773025971259244],[103.05643056430563,0.7773025971259244],[103.04923049230496,0.7570396698873338],[103.04203042030423,0.7198909699499154],[103.0348303483035,0.704693774520976],[103.02763027630277,0.7013166199812133],[103.01683016830168,0.6962508881715621],[103.00603006030059,0.6945623109016736],[103.00243002430028,0.6979394654414364],[102.99882998829992,0.7013166199812133],[102.9808298082981,0.7215795472198039],[102.93042930429306,0.770548288046399],[102.89442894428947,0.7908112152849895],[102.85122851228516,0.797565524364515],[102.76842768427684,0.7908112152849895],[102.74682746827472,0.7941883698247523],[102.70362703627035,0.8043198334440547],[102.68202682026822,0.8043198334440547],[102.59922599225996,0.7857454834753383],[102.55962559625596,0.7806797516656871],[102.51642516425164,0.7908112152849895],[102.4660246602466,0.8262713379525195],[102.45882458824588,0.8330256470320592],[102.40482404824047,0.8735515015092403],[102.40842408424083,0.8955030060177194],[102.42282422824229,0.9140773559864215],[102.44442444424448,0.9292745514153751],[102.49122491224915,0.9394060150346633],[102.50202502025019,0.9529146331937284],[102.50202502025019,0.973177560432319],[102.46962469624697,1.0677378875457464],[102.4660246602466,1.1065751647530533],[102.48762487624879,1.1335924010711835],[102.52722527225274,1.140346710150709],[102.55602556025559,1.1251495147217696],[102.60642606426063,1.0694264648156349],[102.61722617226172,1.0576064239264582],[102.61722617226172,1.044097805767393],[102.610026100261,1.0272120330685652],[102.60642606426063,1.0120148376396259],[102.62082620826209,1.0018833740203235],[102.64602646026464,0.9968176422106723],[102.6640266402664,0.9968176422106723],[102.67842678426786,1.0001947967504492],[102.70362703627035,1.0137034149095001],[102.7180271802718,1.017080569449277],[102.74322743227435,1.0153919921793886],[102.76482764827648,1.0120148376396259],[102.7828278282783,1.0018833740203235],[102.83322833228334,0.9630460968130308],[102.90882908829087,0.9275859741454866],[103.02043020430204,0.8448456879212358],[103.0348303483035,0.827959915222408],[103.04203042030423,0.8212056061428825],[103.04923049230496,0.797565524364515]]],[[[101.7208172081721,2.0589327449668957],[101.75681756817568,2.011652581410175],[101.77121771217713,1.9846353450920589],[101.7748177481775,1.9474866451546404],[101.76761767617677,1.9255351406461614],[101.73521735217355,1.888386440708743],[101.72801728017282,1.8630577816605012],[101.73161731617319,1.8174661953736688],[101.72801728017282,1.7988918454049667],[101.71361713617137,1.778628918166362],[101.66681666816669,1.7448573727687204],[101.65961659616596,1.7330373318795296],[101.64881648816487,1.7229058682602414],[101.62361623616238,1.7144629819108275],[101.59841598415983,1.7093972501011763],[101.5768157681577,1.7093972501011763],[101.53001530015302,1.7178401364505902],[101.49041490414908,1.7364144864193065],[101.46161461614616,1.765120300007311],[101.44001440014404,1.8056461544844922],[101.42921429214294,1.849549163501436],[101.42201422014222,1.8731892452798036],[101.39681396813967,1.9086493679473335],[101.3932139321393,1.9306008724558126],[101.4040140401404,2.0133411586800634],[101.41841418414185,2.0437355495379563],[101.44001440014404,2.065687054046421],[101.47961479614798,2.072441363125961],[101.49401494014938,2.069064208586198],[101.53001530015302,2.0572441676970072],[101.55161551615515,2.0589327449668957],[101.56601566015661,2.0673756313163096],[101.61641616416165,2.1163443721429047],[101.64881648816487,2.1281644130320814],[101.68121681216815,2.1095900630633793],[101.70641706417064,2.0791956722054863],[101.7208172081721,2.0589327449668957]]],[[[-154.90054900549006,19.567790456380592],[-154.84654846548466,19.54415037460224],[-154.8249482494825,19.52726460190341],[-154.8141481414814,19.50700167466482],[-154.81774817748177,19.47998443834669],[-154.82854828548284,19.46478724291775],[-154.87534875348754,19.412441347551393],[-154.91854918549186,19.39724415212244],[-154.98334983349832,19.33983252494643],[-155.02655026550266,19.328012484057254],[-155.02655026550266,19.316192443168077],[-155.06255062550625,19.307749556818663],[-155.09135091350913,19.285798052310184],[-155.15255152551526,19.268912279611357],[-155.2029520295203,19.25540366145229],[-155.24615246152462,19.265535125071594],[-155.26775267752677,19.265535125071594],[-155.28935289352893,19.25878081599207],[-155.31455314553145,19.245272197833003],[-155.3469534695347,19.225009270594413],[-155.3649536495365,19.203057766085934],[-155.38295382953828,19.201369188816045],[-155.4009540095401,19.192926302466645],[-155.42255422554226,19.17941768430758],[-155.43695436954368,19.169286220688278],[-155.48735487354872,19.142268984370162],[-155.50175501755018,19.13720325256051],[-155.5449554495545,19.098365975353204],[-155.55215552155522,19.081480202654376],[-155.55215552155522,19.046020079986846],[-155.570155701557,19.02744573001813],[-155.60255602556026,18.99705133916025],[-155.6169561695617,18.95483690741318],[-155.63135631356315,18.939639711984228],[-155.6529565295653,18.926131093825177],[-155.67455674556746,18.905868166586586],[-155.68175681756819,18.910933898396223],[-155.68175681756819,18.932885402904702],[-155.70335703357034,18.94977117560353],[-155.7429574295743,18.97003410284212],[-155.79335793357933,18.99705133916025],[-155.81855818558185,19.01393711185908],[-155.85815858158583,19.024068575478367],[-155.87975879758798,19.029134307288018],[-155.88335883358835,19.04770865725672],[-155.89055890558905,19.066283007225437],[-155.9049590495905,19.0696601617652],[-155.91215912159123,19.09667739808333],[-155.91935919359193,19.138891829830385],[-155.90855908559087,19.18954914792687],[-155.88695886958868,19.33476679313678],[-155.88695886958868,19.36009545218502],[-155.90135901359014,19.3820469566935],[-155.91215912159123,19.414129924821268],[-155.93015930159302,19.46141008837799],[-155.93735937359372,19.48167301561658],[-155.94815948159481,19.493493056505756],[-155.95535955359554,19.513755983744346],[-155.95535955359554,19.535707488252825],[-155.9661596615966,19.555970415491416],[-155.96975969759697,19.579610497269783],[-155.98055980559806,19.608316310857788],[-155.99855998559985,19.63195639263614],[-156.01656016560165,19.643776433525318],[-156.03456034560347,19.66741651530367],[-156.059760597606,19.73158245155922],[-156.0489604896049,19.760288265147224],[-156.0381603816038,19.783928346925578],[-156.01656016560165,19.800814119624405],[-155.99855998559985,19.81432273778347],[-155.98775987759876,19.824454201402773],[-155.98055980559806,19.843028551371475],[-155.96975969759697,19.85484859226065],[-155.92655926559266,19.868357210419717],[-155.9049590495905,19.902128755817373],[-155.8941589415894,19.91394879670655],[-155.87255872558725,19.951097496643968],[-155.8509585095851,19.97473757842232],[-155.83655836558364,19.97642615569221],[-155.82935829358294,20.006820546550102],[-155.82575825758258,20.020329164709167],[-155.82935829358294,20.03890351467787],[-155.84735847358473,20.05410071010681],[-155.88335883358835,20.104758028203292],[-155.89775897758977,20.14866103722025],[-155.89775897758977,20.18412115988778],[-155.89775897758977,20.216204128015548],[-155.87975879758798,20.251664250683092],[-155.8689586895869,20.26348429157227],[-155.82935829358294,20.26348429157227],[-155.76455764557645,20.249975673413203],[-155.73935739357393,20.243221364333678],[-155.73215732157323,20.238155632524027],[-155.72855728557286,20.2314013234445],[-155.72855728557286,20.2212698598252],[-155.71055710557107,20.195941200776957],[-155.67455674556746,20.182432582617906],[-155.64935649356494,20.167235387188953],[-155.63135631356315,20.14866103722025],[-155.60615606156063,20.138529573600948],[-155.5881558815588,20.12333237817201],[-155.56295562955628,20.12839810998166],[-155.5269552695527,20.12670953271177],[-155.4909549095491,20.113200914552706],[-155.4189541895419,20.089560832774353],[-155.33255332553324,20.047346401027283],[-155.21375213752137,19.97642615569221],[-155.1669516695167,19.946031764834316],[-155.11655116551165,19.89706302400772],[-155.08775087750877,19.859914324070303],[-155.08775087750877,19.821077046862996],[-155.08775087750877,19.768731151496638],[-155.0841508415084,19.728205297019457],[-155.05895058950588,19.728205297019457],[-155.01935019350194,19.745091069718285],[-154.99054990549905,19.72651671974957],[-154.97614976149762,19.706253792510978],[-154.97974979749796,19.662350783494034],[-154.96534965349653,19.637022124445792],[-154.9509495094951,19.61169346539755],[-154.90054900549006,19.567790456380592]]],[[[15.294752947529474,67.94552923851992],[15.305553055530567,67.94552923851992],[15.305553055530567,67.9370863521705],[15.287552875528775,67.92526631128132],[15.255152551525526,67.91682342493192],[15.247952479524798,67.9185120022018],[15.24075240752407,67.92020057947167],[15.161551615516174,67.91006911585237],[15.147151471514718,67.91006911585237],[15.118351183511834,67.91513484766202],[15.021150211502118,67.9185120022018],[14.98154981549817,67.91513484766202],[14.970749707497077,67.91682342493192],[14.970749707497077,67.92526631128132],[14.959949599496014,67.94215208398015],[14.96354963549635,67.95228354759945],[14.977949779497806,67.95903785667898],[14.977949779497806,67.96410358848863],[14.970749707497077,67.97085789756815],[14.977949779497806,67.97254647483803],[15.017550175501754,67.97085789756815],[15.03915039150391,67.96748074302837],[15.053550535505366,67.96748074302837],[15.060750607506094,67.97423505210793],[15.067950679506794,67.98098936118745],[15.096750967509678,67.9944979793465],[15.103951039510406,68.00125228842603],[15.111151111511134,67.99956371115616],[15.11475114751147,67.9944979793465],[15.111151111511134,67.98774367026698],[15.10755107551077,67.98098936118745],[15.10755107551077,67.9759236293778],[15.13995139951399,67.95903785667898],[15.161551615516174,67.95397212486932],[15.211952119521214,67.95059497032955],[15.226352263522642,67.9472178157898],[15.229952299523006,67.94215208398015],[15.247952479524798,67.94215208398015],[15.25875258752589,67.94046350671027],[15.262352623526255,67.93202062036084],[15.280352803528046,67.94046350671027],[15.280352803528046,67.94215208398015],[15.294752947529474,67.94552923851992]]],[[[15.931959319593204,68.00800659750558],[15.931959319593204,68.00462944296581],[15.931959319593204,67.99618655661638],[15.924759247592476,67.99280940207663],[15.885158851588528,67.9843665157272],[15.841958419584216,67.9843665157272],[15.784357843578448,67.99280940207663],[15.730357303573044,68.01138375204533],[15.705157051570524,68.01307232931521],[15.679956799568004,67.99280940207663],[15.661956619566212,67.98943224753685],[15.65115651156512,67.98774367026698],[15.618756187561871,67.9860550929971],[15.525155251552519,67.98943224753685],[15.510755107551091,67.99280940207663],[15.503555035550363,67.9944979793465],[15.496354963549635,67.99787513388628],[15.481954819548207,68.00294086569593],[15.481954819548207,68.00631802023568],[15.496354963549635,68.00631802023568],[15.507155071550727,68.00800659750558],[15.521555215552155,68.01644948385498],[15.535955359553611,68.02151521566464],[15.57555575555756,68.02489237020441],[15.859958599586008,68.02826952474416],[15.892358923589256,68.01813806112486],[15.917559175591776,68.01476090658511],[15.931959319593204,68.00800659750558]]],[[[128.83268832688327,72.65497124422276],[128.86868868688686,72.65159408968299],[128.91188911889122,72.63977404879381],[128.94428944289444,72.62119969882511],[128.9730897308973,72.59418246250698],[128.87228872288722,72.5924938852371],[128.84348843488436,72.5823624216178],[128.81828818288182,72.55872233983945],[128.80388803888042,72.55703376256957],[128.78228782287823,72.55703376256957],[128.76788767887678,72.55196803075992],[128.77148771487714,72.55027945349002],[128.78228782287823,72.54521372168037],[128.6526865268653,72.52832794898154],[128.60948609486098,72.53170510352132],[128.56628566285661,72.5435251444105],[128.47628476284763,72.5536566080298],[128.38268382683827,72.5536566080298],[128.33948339483396,72.56041091710932],[128.11268112681125,72.63470831698416],[128.10548105481058,72.63470831698416],[128.13428134281344,72.64315120333359],[128.39348393483937,72.66003697603242],[128.6526865268653,72.67523417146134],[128.83268832688327,72.65497124422276]]],[[[128.31788317883178,72.81200893032184],[128.32148321483214,72.82889470302067],[128.41868418684186,72.86942055749785],[128.51948519485194,72.87786344384727],[128.73548735487356,72.8846177529268],[128.84348843488436,72.90994641197506],[128.99468994689948,72.9318979164835],[129.21789217892177,72.92683218467388],[129.3978939789398,72.8660434029581],[129.41589415894163,72.81200893032184],[129.3330933309333,72.77317165311456],[129.20709207092074,72.76135161222535],[128.98748987489876,72.77148307584466],[128.6526865268653,72.79174600308326],[128.31788317883178,72.81200893032184]]],[[[20.097200972009716,79.12391076514336],[20.187201872018733,79.13235365149279],[20.216002160021617,79.12391076514336],[20.20880208802089,79.12222218787349],[20.19440194401946,79.11715645606384],[20.468004680046818,79.12559934241327],[20.4968049680497,79.11715645606384],[20.514805148051494,79.11715645606384],[20.572405724057234,79.10364783790479],[20.76320763207633,79.08507348793609],[20.806408064080642,79.07494202431678],[20.831608316083162,79.05467909707818],[20.702007020070198,79.02597328349017],[20.4968049680497,79.01753039714077],[20.406804068040685,78.9955788926323],[20.36000360003601,78.99389031536242],[20.313203132031333,79.00233320171182],[20.27000270002702,79.01753039714077],[20.2448024480245,79.0242847062203],[20.122401224012236,79.02259612895043],[20.06840068400686,79.0327275925697],[20.04320043200434,79.04117047891913],[20.104401044010444,79.05130194253843],[20.136801368013693,79.0614334061577],[20.13320133201333,79.07325344704691],[20.111601116011173,79.08845064247583],[20.115201152011537,79.09520495155536],[20.129601296012964,79.10195926063491],[20.140401404014057,79.11715645606384],[20.129601296012964,79.11715645606384],[20.1188011880119,79.11884503333374],[20.10800108001081,79.12053361060362],[20.097200972009716,79.12391076514336]]],[[[105.41445414454148,78.5835660387809],[105.40725407254075,78.56668026608207],[105.36765367653675,78.54304018430372],[105.37845378453784,78.53459729795432],[105.35685356853571,78.50589148436632],[105.30645306453067,78.48900571166749],[105.20925209252096,78.47380851623853],[105.0220502205022,78.40795400271313],[104.78804788047881,78.33703375737804],[104.7556475564756,78.33365660283826],[104.72684726847268,78.33703375737804],[104.65124651246515,78.35560810734674],[104.62964629646297,78.35729668461664],[104.57924579245793,78.34716522099734],[104.35244352443527,78.34209948918769],[104.29844298442987,78.33196802556839],[104.1868418684187,78.32690229375874],[104.13644136441366,78.31339367559968],[104.08244082440825,78.30832794379003],[103.98163981639817,78.2829992847418],[103.71163711637115,78.25598204842368],[103.31563315633156,78.2526048938839],[103.12123121231213,78.2441620075345],[103.01683016830168,78.25598204842368],[102.96282962829628,78.24922773934415],[102.86562865628656,78.21883334848624],[102.87282872828729,78.21714477121637],[102.88722887228874,78.20870188486694],[102.89442894428947,78.20701330759707],[102.86922869228692,78.19519326670789],[102.8368283682837,78.18506180308859],[102.66042660426604,78.16479887585001],[102.66762667626676,78.17661891673919],[102.67842678426786,78.18843895762836],[102.68562685626858,78.20025899851754],[102.68202682026822,78.21207903940672],[102.66762667626676,78.21883334848624],[102.60642606426063,78.22558765756577],[102.23922239222395,78.22052192575615],[102.17082170821709,78.20363615305732],[102.0916209162092,78.19857042124767],[102.04842048420483,78.18675038035849],[102.0268202682027,78.18506180308859],[102.00162001620015,78.19181611216811],[102.00162001620015,78.20870188486694],[101.97641976419766,78.21207903940672],[101.61281612816128,78.19012753489824],[101.20961209612096,78.19350468943802],[101.15561155611556,78.18337322581871],[101.01161011610117,78.13102733045235],[100.58320583205835,78.06179566238717],[100.48240482404827,78.02971269425939],[100.36720367203674,78.02295838517986],[100.03600036000358,77.96216960346408],[99.87039870398706,77.95203813984477],[99.65799657996581,77.96554675800385],[99.56439564395646,77.94697240803512],[99.51399513995142,77.94359525349537],[99.47439474394747,77.9604810261942],[99.36999369993703,77.9604810261942],[99.38079380793806,77.9706124898135],[99.41319413194134,77.97736679889303],[99.4275942759428,77.98749826251233],[99.40959409594097,77.9976297261316],[99.38799387993879,78.00269545794126],[99.34479344793448,78.00776118975091],[99.3519935199352,78.02126980790999],[99.28719287192871,78.03477842606904],[99.26919269192695,78.04153273514856],[99.30519305193053,78.05504135330762],[99.38799387993879,78.06517281692692],[99.4275942759428,78.07530428054622],[99.48159481594814,78.1056986714041],[99.53559535595355,78.1445359486114],[99.52119521195215,78.16479887585001],[99.54279542795427,78.17999607127894],[99.6039960399604,78.19181611216811],[99.59679596795968,78.19857042124767],[99.75519755197553,78.26442493477307],[99.8019980199802,78.2711792438526],[99.96759967599678,78.33365660283826],[100.03600036000358,78.33872233464791],[100.05040050400504,78.34378806645756],[100.04320043200431,78.35898526188652],[100.01800018000182,78.3708053027757],[99.99639996399964,78.38431392093474],[100.01440014400146,78.40457684817335],[100,78.4180854663324],[100.03240032400328,78.4282169299517],[100.07560075600759,78.438348393571],[100.09720097200972,78.4484798571903],[100.11160111601117,78.46367705261923],[100.13680136801366,78.47549709350841],[100.15120151201512,78.48731713439759],[100.12960129601299,78.50082575255666],[100.14400144001439,78.51095721617597],[100.15480154801548,78.51264579344584],[100.16560165601658,78.51433437071572],[100.18000180001803,78.52108867979524],[100.1872018720187,78.52615441160489],[100.19440194401943,78.53797445249407],[100.20160201602016,78.54304018430372],[100.27720277202775,78.58018888424115],[100.28800288002878,78.59200892513033],[100.28080280802811,78.6038289660195],[100.26640266402666,78.6122718523689],[100.25560255602556,78.62409189325811],[100.25560255602556,78.63422335687738],[100.25920259202593,78.64435482049669],[100.2628026280263,78.65279770684612],[100.25560255602556,78.66461774773529],[100.33120331203315,78.6933235613233],[100.35280352803528,78.71020933402212],[100.35640356403565,78.71358648856187],[100.36360363603637,78.73722657034023],[100.3708037080371,78.74398087941978],[100.38520385203856,78.75242376576918],[100.40320403204032,78.75748949757883],[100.56520565205653,78.79463819751626],[100.60120601206012,78.79801535205601],[100.63720637206376,78.79632677478614],[100.73440734407347,78.77606384754753],[100.99360993609935,78.76424380665836],[101.0080100801008,78.76086665211861],[101.0188101881019,78.75411234303905],[101.02601026010262,78.74735803395953],[101.02961029610299,78.74398087941978],[101.07641076410766,78.7507351884993],[101.1412114121141,78.75242376576918],[101.16641166411665,78.76086665211861],[101.13041130411307,78.77775242481744],[101.08361083610839,78.78619531116684],[100.90360903609036,78.78788388843671],[100.85680856808568,78.79463819751626],[100.82440824408246,78.80814681567531],[100.83160831608319,78.83178689745367],[100.82440824408246,78.84191836107297],[100.80280802808028,78.8486726701525],[100.78120781207815,78.86386986558145],[100.78840788407888,78.87062417466097],[100.78480784807851,78.89426425643933],[100.81360813608137,78.91283860640803],[100.84960849608495,78.92803580183698],[100.87840878408787,78.94661015180569],[100.8856088560886,78.95843019269486],[100.8856088560886,78.96856165631417],[100.89280892808927,78.9770045426636],[100.90720907209072,78.98544742901299],[100.97200972009722,79.0040217789817],[100.98640986409868,79.014153242601],[101.02601026010262,79.03103901529983],[101.06921069210694,79.0344161698396],[101.33201332013323,79.0057103562516],[101.59121591215916,78.9770045426636],[101.62721627216274,78.98713600628287],[101.58401584015843,78.98713600628287],[101.3788137881379,79.00739893352147],[101.22761227612278,79.042859056189],[100.98640986409868,79.0631219834276],[101.0080100801008,79.08169633339631],[101.0188101881019,79.09182779701561],[101.02961029610299,79.12391076514336],[101.04401044010439,79.13235365149279],[101.06201062010621,79.13741938330244],[101.19521195211951,79.14755084692175],[101.15921159211592,79.15261657873137],[101.1268112681127,79.16443661962057],[101.13401134011343,79.1711909287001],[101.14481144811447,79.17456808323985],[101.15561155611556,79.17625666050975],[101.16641166411665,79.1796338150495],[101.17361173611738,79.18469954685915],[101.18441184411847,79.1982081650182],[101.19521195211951,79.20327389682785],[101.31041310413104,79.23873401949541],[101.37161371613718,79.24548832857494],[101.49761497614975,79.24042259676528],[101.55881558815588,79.25393121492434],[101.54081540815412,79.26406267854364],[101.54081540815412,79.27419414216294],[101.56241562415624,79.29614564667142],[101.54801548015479,79.30121137848107],[101.53721537215375,79.30289995575095],[101.53001530015302,79.30289995575095],[101.53361533615339,79.31134284210034],[101.53721537215375,79.3180971511799],[101.54081540815412,79.32485146025942],[101.55161551615515,79.32991719206908],[101.54441544415442,79.34004865568835],[101.5768157681577,79.35186869657755],[101.6452164521645,79.36368873746673],[101.81801818018181,79.37044304654626],[101.84321843218436,79.36368873746673],[101.89001890018903,79.3265400375293],[101.91161911619116,79.31471999664012],[101.94041940419407,79.3079656875606],[101.95121951219511,79.30289995575095],[101.96561965619657,79.29276849213164],[101.96561965619657,79.28432560578224],[101.95841958419584,79.26743983308342],[101.9620196201962,79.26068552400386],[101.97641976419766,79.25730836946411],[102.05202052020519,79.26068552400386],[102.24642246422468,79.24211117403516],[102.26442264422644,79.25393121492434],[102.25362253622535,79.25899694673399],[102.17442174421745,79.28601418305212],[102.16722167221673,79.29276849213164],[102.160021600216,79.30289995575095],[102.15282152821527,79.31640857391],[102.1456214562146,79.345114387498],[102.13842138421387,79.35693442838718],[102.1456214562146,79.36706589200648],[102.15642156421563,79.37044304654626],[102.16362163621636,79.37044304654626],[102.17442174421745,79.37719735562578],[102.17442174421745,79.38226308743543],[102.17442174421745,79.38732881924508],[102.17802178021782,79.39408312832461],[102.18162181621818,79.39914886013426],[102.19602196021964,79.40759174648366],[102.23922239222395,79.42110036464274],[102.30402304023039,79.43292040553192],[102.4012240122401,79.43123182826201],[102.49842498424988,79.41772321010296],[102.60642606426063,79.41772321010296],[102.75042750427508,79.38901739651496],[102.89442894428947,79.38057451016556],[102.91242912429124,79.373820201086],[102.92682926829269,79.34849154203778],[102.94482944829451,79.34173723295825],[103.13923139231395,79.32485146025942],[103.15363153631534,79.30965426483047],[103.13923139231395,79.29952280121117],[103.11043110431103,79.29107991486177],[103.06363063630636,79.28094845124247],[102.970029700297,79.28094845124247],[102.93042930429306,79.27588271943281],[102.82602826028261,79.22691397860623],[102.85122851228516,79.22015966952668],[102.85842858428583,79.22015966952668],[102.83322833228334,79.20327389682785],[102.76842768427684,79.17794523777962],[102.74322743227435,79.15937088781092],[102.75762757627575,79.15599373327115],[102.77202772027721,79.1509280014615],[102.79722797227976,79.13910796057232],[102.77202772027721,79.11715645606384],[102.70362703627035,79.09351637428549],[102.67482674826749,79.07663060158666],[102.68202682026822,79.06649913796736],[102.69282692826931,79.05974482888783],[102.70002700027004,79.05130194253843],[102.70002700027004,79.04117047891913],[102.69282692826931,79.0327275925697],[102.63882638826391,79.014153242601],[102.63882638826391,79.01077608806125],[102.63882638826391,79.00064462444195],[102.63522635226354,78.99726746990217],[102.63162631626318,78.99389031536242],[102.61362613626136,78.98882458355277],[102.5956259562596,78.97362738812382],[102.54882548825492,78.95674161542499],[102.44082440824411,78.88582137008993],[102.40482404824047,78.85373840196215],[102.3976239762398,78.84529551561272],[102.3976239762398,78.83685262926332],[102.39042390423907,78.82840974291389],[102.37962379623798,78.82165543383437],[102.41562415624156,78.83178689745367],[102.5308253082531,78.84360693834284],[102.6640266402664,78.89257567916945],[102.67122671226713,78.8976414109791],[102.67842678426786,78.91115002913816],[102.68922689226895,78.91790433821768],[102.73962739627399,78.93310153364664],[102.79002790027903,78.95674161542499],[102.83322833228334,78.98713600628287],[102.87642876428765,79.0344161698396],[102.88722887228874,79.04454763345888],[102.91962919629196,79.05805625161796],[102.95922959229591,79.0631219834276],[103.14283142831431,79.05805625161796],[103.27603276032761,79.08338491066618],[103.30483304833047,79.09689352882526],[103.2976329763298,79.10364783790479],[103.34803348033483,79.11715645606384],[103.46323463234631,79.11377930152409],[103.51723517235172,79.12728791968314],[103.52443524435245,79.13235365149279],[103.52443524435245,79.13741938330244],[103.51723517235172,79.1424851151121],[103.51723517235172,79.14755084692175],[103.52083520835208,79.15430515600127],[103.53163531635317,79.15937088781092],[103.57483574835749,79.1695023514302],[103.60003600036003,79.17287950596997],[103.62523625236253,79.1711909287001],[103.64683646836471,79.16443661962057],[103.63603636036362,79.15599373327115],[103.61443614436143,79.14755084692175],[103.6072360723607,79.13910796057232],[103.66123661236611,79.13741938330244],[103.80883808838087,79.15430515600127],[103.80523805238056,79.14586226965184],[103.9888398883989,79.13066507422292],[103.99963999639999,79.12728791968314],[104.01404014040139,79.11884503333374],[104.02124021240212,79.10871356971444],[104.02484024840248,79.09689352882526],[104.01764017640176,79.08507348793609],[104.00324003240036,79.07494202431678],[103.97803978039781,79.0631219834276],[104.04644046440467,79.04623621072878],[104.07524075240752,79.0327275925697],[104.0680406804068,79.01077608806125],[104.07524075240752,79.0040217789817],[104.38484384843849,78.98882458355277],[104.45684456844572,78.96687307904429],[104.5036450364504,78.9246586472972],[104.48204482044821,78.89088710189955],[104.5036450364504,78.88582137008993],[104.52524525245252,78.88582137008993],[104.50004500045003,78.86386986558145],[104.45324453244535,78.86049271104167],[104.40644406444068,78.86218128831155],[104.36684366843667,78.8571155565019],[104.63324633246333,78.84360693834284],[104.64404644046442,78.8385412065332],[104.65484654846551,78.8300983201838],[104.65844658446588,78.81996685656449],[104.65484654846551,78.81658970202471],[104.65124651246515,78.81321254748497],[104.64764647646479,78.80476966113554],[104.6368463684637,78.79126104297649],[104.61884618846187,78.78281815662706],[104.57924579245793,78.77437527027766],[104.60804608046084,78.77099811573788],[104.72684726847268,78.79126104297649],[104.74124741247414,78.79801535205601],[104.75204752047523,78.80814681567531],[104.7556475564756,78.81996685656449],[104.75204752047523,78.82334401110427],[104.73044730447305,78.83685262926332],[104.72324723247232,78.84360693834284],[104.75924759247596,78.85373840196215],[104.8888488884889,78.8571155565019],[105.05805058050584,78.84360693834284],[105.17685176851768,78.80983539294519],[105.18765187651877,78.80308108386566],[105.24165241652418,78.7490466112294],[105.25605256052563,78.74060372488],[105.23805238052381,78.72540652945105],[105.2488524885249,78.71358648856187],[105.2740527405274,78.7017664476727],[105.29565295652958,78.68994640678352],[105.3280532805328,78.65955201592564],[105.34245342453426,78.64266624322681],[105.34245342453426,78.62746904779786],[105.33525335253353,78.60551754328938],[105.35685356853571,78.60045181147973],[105.3928539285393,78.59876323420985],[105.41445414454148,78.5835660387809]]],[[[11.032310323103246,79.70646992325291],[11.021510215102154,79.69464988236373],[11.01791017910179,79.68958415055408],[11.007110071100726,79.6862069960143],[11.046710467104674,79.6862069960143],[11.064710647106466,79.68114126420465],[11.075510755107558,79.66594406877573],[11.003510035100362,79.67269837785526],[10.98550985509857,79.66932122331548],[10.963909639096386,79.66087833696608],[10.945909459094594,79.65581260515643],[10.924309243092438,79.65243545061665],[10.819908199081993,79.65074687334678],[10.780307803078045,79.65581260515643],[10.751507515075161,79.67269837785526],[10.737107371073705,79.6862069960143],[10.848708487084878,79.69296130509383],[10.81630816308163,79.70140419144326],[10.74070740707407,79.70646992325291],[10.711907119071185,79.72166711868186],[10.870308703087034,79.72673285049149],[10.99270992709927,79.70815850052279],[11.032310323103246,79.70646992325291]]],[[[10.719107191071913,79.74193004592044],[10.68310683106833,79.74361862319032],[10.654306543065445,79.75037293226987],[10.647106471064717,79.76050439588914],[10.675906759067601,79.7757015913181],[10.711907119071185,79.78245590039762],[10.870308703087034,79.77907874585787],[11.01071010710109,79.74193004592044],[10.98550985509857,79.73179858230114],[10.719107191071913,79.74193004592044]]],[[[138.9379893798938,-7.542317611586128],[138.97398973989743,-7.554137652475305],[139.0459904599046,-7.562580538824719],[139.0747907479075,-7.576089156983784],[139.0567905679057,-7.594663506952486],[139.0459904599046,-7.611549279651314],[139.0351903519035,-7.63012362962003],[139.0207902079021,-7.6723380613671],[138.9919899198992,-7.719618224923806],[138.98838988389883,-7.738192574892523],[138.9811898118981,-7.829375747466187],[138.9775897758978,-7.841195788355364],[138.9667896678967,-7.851327251974666],[138.90918909189094,-7.878344488292782],[138.89118891188912,-7.898607415531373],[138.8839888398884,-7.932378960929029],[138.88758887588875,-8.006676360803866],[138.89118891188912,-8.040447906201521],[138.90558905589057,-8.075908028869065],[138.8587885878859,-8.075908028869065],[138.8371883718837,-8.079285183408828],[138.81918819188195,-8.092793801567893],[138.78678786787867,-8.129942501505312],[138.77238772387727,-8.143451119664363],[138.74718747187472,-8.151894006013777],[138.70038700387005,-8.153582583283665],[138.67878678786786,-8.156959737823428],[138.6607866078661,-8.168779778712604],[138.64638646386464,-8.189042705951195],[138.62118621186215,-8.234634292238042],[138.60318603186033,-8.254897219476632],[138.53478534785347,-8.302177383033339],[138.5167851678517,-8.308931692112878],[138.50958509585098,-8.315686001192404],[138.4735847358474,-8.357900432939473],[138.44478444784448,-8.379851937447953],[138.41238412384126,-8.39673771014678],[138.37638376383762,-8.410246328305831],[138.33678336783368,-8.418689214655245],[138.29358293582936,-8.418689214655245],[138.2251822518225,-8.39167197833713],[138.17838178381783,-8.38491766925759],[138.03438034380343,-8.381540514717827],[137.8507785077851,-8.378163360178064],[137.80037800378005,-8.383229091987715],[137.7607776077761,-8.393360555607003],[137.6779767797678,-8.425443523734785],[137.63837638376384,-8.425443523734785],[137.63837638376384,-8.38998340106724],[137.72477724777247,-8.145139696934251],[137.749977499775,-8.101236687917307],[137.75357753577538,-8.086039492488354],[137.7607776077761,-8.074219451599177],[137.78957789577896,-8.052267947090698],[137.80037800378005,-8.04213648347141],[137.81117811178115,-7.983036279025512],[137.81837818378187,-7.97290481540621],[137.82557825578255,-7.964461929056796],[137.8939789397894,-7.815867129307122],[137.91917919179195,-7.7820955839094665],[137.96597965979663,-7.739881152162397],[137.9731797317973,-7.722995379463583],[137.97677976779767,-7.7027324522249785],[137.9839798397984,-7.679092370446625],[138.00558005580058,-7.636877938699556],[138.0271802718027,-7.6098607023814395],[138.08838088380884,-7.559203384284956],[138.24318243182432,-7.456200170822115],[138.39438394383944,-7.405542852725631],[138.52758527585274,-7.386968502756915],[138.55638556385566,-7.376837039137627],[138.62118621186215,-7.36501699824845],[138.71838718387187,-7.359951266438799],[138.8047880478805,-7.373459884597864],[138.84438844388444,-7.422428625424459],[138.8479884798848,-7.435937243583524],[138.89478894788948,-7.50516891164871],[138.90918909189094,-7.520366107077649],[138.9235892358924,-7.532186147966826],[138.9379893798938,-7.542317611586128]]],[[[122.78102781027809,-4.916579956918525],[122.78102781027809,-4.938531461427004],[122.77742777427773,-4.948662925046307],[122.77382773827742,-4.958794388665595],[122.76662766627669,-4.957105811395721],[122.75222752227523,-4.953728656855958],[122.7450274502745,-4.9520400795860695],[122.73782737827378,-4.962171543205358],[122.73422734227341,-4.973991584094549],[122.72342723427238,-4.989188779523488],[122.66222662226625,-5.055043293048911],[122.64422644226443,-5.078683374827264],[122.60462604626048,-5.159735083781641],[122.60102601026011,-5.18168658829012],[122.60822608226084,-5.190129474639534],[122.61902619026193,-5.191818051909408],[122.62982629826297,-5.190129474639534],[122.6370263702637,-5.193506629179296],[122.63342633426333,-5.2070152473383615],[122.62982629826297,-5.21714671095765],[122.6226262262623,-5.222212442767301],[122.59742597425975,-5.228966751846826],[122.60822608226084,-5.235721060926366],[122.62982629826297,-5.245852524545654],[122.64782647826479,-5.255983988164957],[122.65142651426515,-5.261049719974608],[122.65502655026552,-5.2728697608637844],[122.65862658626588,-5.296509842642138],[122.65502655026552,-5.3218385016903795],[122.64782647826479,-5.345478583468733],[122.6370263702637,-5.355610047088035],[122.6262262622626,-5.34210142892897],[122.61542615426157,-5.355610047088035],[122.6118261182612,-5.380938706136277],[122.60822608226084,-5.401201633374868],[122.60462604626048,-5.413021674264044],[122.59742597425975,-5.41977598334357],[122.59022590225902,-5.421464560613458],[122.58662586625866,-5.414710251533933],[122.5830258302583,-5.4096445197242815],[122.57582575825757,-5.414710251533933],[122.56502565025653,-5.428218869692984],[122.54342543425435,-5.428218869692984],[122.53982539825398,-5.3876930152158025],[122.54342543425435,-5.338724274389207],[122.53622536225362,-5.315084192610854],[122.52902529025289,-5.30664130626144],[122.52182521825222,-5.291444110832487],[122.51102511025113,-5.28637837902285],[122.50022500225003,-5.308329883531314],[122.49662496624967,-5.318461347150617],[122.50022500225003,-5.338724274389207],[122.50022500225003,-5.348855738008496],[122.48582485824858,-5.382627283406151],[122.46782467824681,-5.396135901565216],[122.449824498245,-5.399513056104979],[122.43182431824317,-5.392758747025454],[122.41742417424177,-5.375872974326626],[122.40662406624068,-5.353921469818147],[122.41382413824141,-5.338724274389207],[122.449824498245,-5.3218385016903795],[122.449824498245,-5.315084192610854],[122.43182431824317,-5.315084192610854],[122.42102421024214,-5.311707038071077],[122.41022410224105,-5.311707038071077],[122.39582395823959,-5.3218385016903795],[122.38862388623886,-5.3302813880397935],[122.3850238502385,-5.34210142892897],[122.38142381423813,-5.372495819786863],[122.37782377823777,-5.38431586067604],[122.36342363423637,-5.389381592485691],[122.31302313023133,-5.389381592485691],[122.30222302223024,-5.3876930152158025],[122.29142291422914,-5.380938706136277],[122.28062280622805,-5.3691186652471],[122.28782287822878,-5.362364356167561],[122.27702277022769,-5.345478583468733],[122.27342273422738,-5.326904233500031],[122.28062280622805,-5.308329883531314],[122.3058230582306,-5.2644268745143705],[122.3166231662317,-5.2424753700058915],[122.32022320223206,-5.218835288227538],[122.32742327423273,-5.144537888352701],[122.33102331023309,-5.124274961114111],[122.34182341823418,-5.109077765685157],[122.35262352623528,-5.105700611145394],[122.37782377823777,-5.098946302065869],[122.38142381423813,-5.092191992986329],[122.3850238502385,-5.087126261176678],[122.40302403024032,-5.0617976021284505],[122.39582395823959,-5.048288983969385],[122.39222392223922,-5.029714634000669],[122.3850238502385,-4.9790573159041855],[122.3706237062371,-4.955417234125832],[122.36702367023673,-4.914891379648651],[122.35622356223564,-4.884496988790758],[122.34182341823418,-4.857479752472642],[122.32742327423273,-4.8422825570436885],[122.32742327423273,-4.835528247964163],[122.34542345423455,-4.8152653207255725],[122.36702367023673,-4.766296579898977],[122.38142381423813,-4.746033652660373],[122.40662406624068,-4.737590766310959],[122.47142471424718,-4.730836457231433],[122.50022500225003,-4.725770725421782],[122.52902529025289,-4.710573529992843],[122.60102601026011,-4.656539057356596],[122.65862658626588,-4.624456089228829],[122.6910269102691,-4.610947471069764],[122.71262712627129,-4.616013202879415],[122.72702727027269,-4.627833243768592],[122.73422734227341,-4.643030439197531],[122.75222752227523,-4.773050888978503],[122.75222752227523,-4.843971134313577],[122.7558275582756,-4.855791175202754],[122.77022770227705,-4.87436552517147],[122.77382773827742,-4.879431256981107],[122.77382773827742,-4.887874143330521],[122.77742777427773,-4.904759916029349],[122.78102781027809,-4.916579956918525]]],[[[123.14823148231483,-5.225589597307064],[123.18783187831878,-5.247541101815543],[123.20943209432096,-5.266115451784245],[123.21663216632169,-5.283001224483073],[123.21303213032132,-5.301575574451789],[123.20223202232023,-5.316772769880728],[123.17703177031774,-5.34210142892897],[123.15903159031592,-5.374184397056737],[123.14463144631446,-5.386004437945928],[123.10143101431015,-5.394447324295342],[123.06543065430657,-5.418087406073695],[123.04743047430475,-5.424841715153221],[123.02943029430293,-5.41977598334357],[123.01143011430116,-5.396135901565216],[122.9970299702997,-5.391070169755565],[122.97902979029789,-5.394447324295342],[122.89262892628926,-5.4451046423918115],[122.8746287462875,-5.458613260550877],[122.8638286382864,-5.495761960488295],[122.86022860228604,-5.507582001377472],[122.86742867428677,-5.514336310457011],[122.8746287462875,-5.510959155917249],[122.90342903429035,-5.499139115028058],[122.91062910629108,-5.499139115028058],[122.91782917829181,-5.527844928616062],[122.89622896228963,-5.57174793763302],[122.84942849428495,-5.637602451158443],[122.82782827828277,-5.67643972836575],[122.81342813428137,-5.688259769254927],[122.79182791827918,-5.6916369237946896],[122.78822788227882,-5.686571191985038],[122.78462784627845,-5.662931110206685],[122.78462784627845,-5.654488223857271],[122.77022770227705,-5.6426681829680945],[122.76662766627669,-5.640979605698206],[122.76662766627669,-5.647733914777746],[122.75222752227523,-5.666308264746448],[122.75222752227523,-5.674751151095862],[122.7450274502745,-5.679816882905513],[122.73782737827378,-5.671373996556099],[122.73782737827378,-5.661242532936797],[122.73782737827378,-5.637602451158443],[122.73422734227341,-5.627470987539141],[122.72342723427238,-5.627470987539141],[122.6910269102691,-5.666308264746448],[122.67662676626765,-5.678128305635624],[122.65502655026552,-5.678128305635624],[122.6370263702637,-5.662931110206685],[122.5686256862569,-5.507582001377472],[122.64422644226443,-5.4400389105821745],[122.65502655026552,-5.424841715153221],[122.65142651426515,-5.411333096994156],[122.62982629826297,-5.40457878791463],[122.6370263702637,-5.391070169755565],[122.66222662226625,-5.355610047088035],[122.67302673026734,-5.323527078960268],[122.67662676626765,-5.3218385016903795],[122.68382683826837,-5.323527078960268],[122.6910269102691,-5.3218385016903795],[122.70542705427056,-5.303264151721663],[122.71982719827201,-5.266115451784245],[122.73062730627305,-5.252606833625194],[122.75222752227523,-5.245852524545654],[122.78102781027809,-5.240786792736003],[122.80262802628027,-5.232343906386603],[122.81342813428137,-5.2120809791479985],[122.81342813428137,-5.193506629179296],[122.809828098281,-5.190129474639534],[122.76302763027633,-5.208703824608236],[122.7558275582756,-5.2070152473383615],[122.76662766627669,-5.190129474639534],[122.7558275582756,-5.178309433750357],[122.7558275582756,-5.164800815591292],[122.77382773827742,-5.144537888352701],[122.77742777427773,-5.129340692923748],[122.77742777427773,-5.104012033875506],[122.78102781027809,-5.088814838446567],[122.79902799027991,-5.060109024858562],[122.80622806228064,-5.043223252159734],[122.79902799027991,-5.026337479460906],[122.79182791827918,-5.021271747651255],[122.78102781027809,-5.024648902191018],[122.76662766627669,-5.031403211270558],[122.75222752227523,-5.033091788540432],[122.76302763027633,-5.016206015841604],[122.81702817028173,-4.968925852284897],[122.82782827828277,-4.9520400795860695],[122.8350283502835,-4.928399997807716],[122.8350283502835,-4.904759916029349],[122.8350283502835,-4.882808411520884],[122.83142831428313,-4.8726769479015815],[122.82422824228246,-4.862545484282279],[122.8206282062821,-4.852414020662991],[122.8206282062821,-4.8422825570436885],[122.82782827828277,-4.835528247964163],[122.83862838628386,-4.833839670694275],[122.84942849428495,-4.830462516154512],[122.85662856628568,-4.818642475265335],[122.84942849428495,-4.648096171007182],[122.85662856628568,-4.6092588937998755],[122.87102871028713,-4.568733039322694],[122.89982899828999,-4.509632834876797],[122.90342903429035,-4.489369907638206],[122.91062910629108,-4.474172712209267],[122.92142921429217,-4.46235267132009],[123.01863018630189,-4.389743848715128],[123.04023040230402,-4.3846781169054765],[123.06903069030693,-4.382989539635602],[123.0870308703087,-4.389743848715128],[123.0618306183062,-4.421826816842895],[123.06903069030693,-4.440401166811611],[123.08343083430833,-4.455598362240551],[123.14823148231483,-4.507944257606923],[123.16263162631628,-4.526518607575625],[123.19143191431914,-4.56704446205282],[123.20223202232023,-4.588995966561285],[123.2058320583206,-4.610947471069764],[123.20223202232023,-4.621078934689066],[123.19143191431914,-4.641341861927657],[123.19143191431914,-4.653161902816834],[123.1950319503195,-4.663293366436122],[123.19863198631987,-4.666670520975899],[123.2058320583206,-4.6700476755156615],[123.21303213032132,-4.676801984595187],[123.21663216632169,-4.710573529992843],[123.22023220232205,-4.816953897995447],[123.21303213032132,-4.8422825570436885],[123.19863198631987,-4.8372168252340515],[123.18783187831878,-4.816953897995447],[123.18423184231841,-4.7764280435182656],[123.18063180631805,-4.771362311708614],[123.16983169831701,-4.756165116279675],[123.16623166231665,-4.752787961739912],[123.15903159031592,-4.747722229930261],[123.15543155431556,-4.739279343580847],[123.15183151831519,-4.7274593026916705],[123.14823148231483,-4.717327839072368],[123.12303123031234,-4.710573529992843],[123.10503105031052,-4.767985157168852],[123.07983079830797,-4.739279343580847],[123.07623076230766,-4.74265649812061],[123.0726307263073,-4.747722229930261],[123.06903069030693,-4.752787961739912],[123.05103051030511,-4.740967920850736],[123.04743047430475,-4.752787961739912],[123.04743047430475,-4.796690970756856],[123.04383043830438,-4.803445279836396],[123.02223022230226,-4.8152653207255725],[123.01863018630189,-4.825396784344861],[123.01143011430116,-4.857479752472642],[123.01143011430116,-4.869299793361819],[123.01863018630189,-4.909825647839],[123.01503015030153,-4.9300885750775905],[122.98982989829898,-4.945285770506544],[122.97902979029789,-4.962171543205358],[122.96822968229685,-4.980745893174074],[122.96462964629649,-4.992565934063251],[122.96462964629649,-5.004385974952427],[122.96822968229685,-5.012828861301841],[122.97542975429758,-5.019583170381381],[122.97902979029789,-5.026337479460906],[122.98622986229861,-5.051666138509148],[122.98622986229861,-5.065174756668213],[122.98262982629825,-5.087126261176678],[122.97902979029789,-5.104012033875506],[122.9538295382954,-5.149603620162338],[122.94662946629467,-5.171555124670817],[122.95022950229503,-5.190129474639534],[122.96822968229685,-5.196883783719059],[122.98982989829898,-5.186752320099757],[123.00423004230043,-5.163112238321403],[123.01863018630189,-5.142849311082813],[123.04743047430475,-5.137783579273162],[123.05823058230584,-5.144537888352701],[123.0618306183062,-5.152980774702115],[123.0618306183062,-5.161423661051529],[123.06903069030693,-5.169866547400943],[123.10143101431015,-5.18168658829012],[123.10503105031052,-5.196883783719059],[123.11943119431197,-5.208703824608236],[123.14823148231483,-5.225589597307064]]],[[[131.05751057510577,-1.0007692680605516],[131.06111061110613,-1.0041464226003143],[131.06831068310686,-1.0210321952991421],[131.07191071910722,-1.0311636589184445],[131.07191071910722,-1.0767552452052769],[131.03591035910358,-1.227038622224839],[131.01431014310145,-1.2692530539719087],[131.0107101071011,-1.2878274039406108],[131.00711007110073,-1.311467485718964],[130.99630996309963,-1.3317304129575689],[130.98190981909818,-1.3486161856563967],[130.96030960309605,-1.3536819174660337],[130.94950949509496,-1.3486161856563967],[130.93150931509314,-1.3266646811479177],[130.9207092070921,-1.319910372068378],[130.909909099091,-1.3215989493382665],[130.89550895508955,-1.328353258417792],[130.8811088110881,-1.3401732993069828],[130.86310863108633,-1.3367961447672059],[130.85230852308524,-1.3300418356876804],[130.83070830708306,-1.2912045584803735],[130.81990819908202,-1.2810730948610853],[130.79830798307984,-1.2641873221622575],[130.76950769507698,-1.248990126733304],[130.7587075870759,-1.2388586631140157],[130.7479074790748,-1.2236614676850763],[130.7479074790748,-1.2169071586055367],[130.75150751507516,-1.2033985404464715],[130.7479074790748,-1.196644231366946],[130.7479074790748,-1.1898899222874206],[130.74070740707407,-1.1865127677476437],[130.7371073710737,-1.1848241904777694],[130.7371073710737,-1.183135613207881],[130.73350733507334,-1.1679384177789416],[130.72990729907298,-1.1578069541596392],[130.72990729907298,-1.1510526450801137],[130.7227072270723,-1.1409211814608113],[130.7119071190712,-1.1324782951113974],[130.70470704707049,-1.1274125633017604],[130.69750697506976,-1.1206582542222208],[130.68670686706866,-1.1071496360631699],[130.7119071190712,-1.0936410179041047],[130.7119071190712,-1.0700009361257514],[130.70110701107012,-1.0446722770775096],[130.68670686706866,-1.0244093498389049],[130.65070650706508,-0.9889492271713749],[130.65070650706508,-0.9737520317424355],[130.67950679506794,-0.9568662590436077],[130.7911079110791,-0.9298490227254774],[130.83070830708306,-0.9078975182169984],[130.8667086670867,-0.8943889000579475],[130.8919089190892,-0.8893231682482963],[130.91350913509137,-0.8943889000579475],[130.92790927909283,-0.9112746727567753],[130.9351093510935,-0.9264718681857147],[130.93870938709387,-0.9315375999953659],[130.9459094590946,-0.9315375999953659],[130.96030960309605,-0.923094713645952],[130.98190981909818,-0.9180289818363008],[131.02511025110255,-0.914651827296538],[131.03231032310322,-0.9129632500266496],[131.03591035910358,-0.914651827296538],[131.0431104311043,-0.923094713645952],[131.0539105391054,-0.9315375999953659],[131.0755107551076,-0.9669977226628959],[131.0755107551076,-0.9737520317424355],[131.06111061110613,-0.9906378044412634],[131.05751057510577,-1.0007692680605516]]],[[[-26.210062100621002,70.56620116137785],[-26.19206192061921,70.56451258410797],[-26.184861848618482,70.55944685229832],[-26.16686166861669,70.54087250232962],[-26.145261452614534,70.53074103871032],[-26.094860948609494,70.52905246144044],[-26.07326073260731,70.52398672963079],[-26.09846098460983,70.51385526601149],[-26.105661056610558,70.50878953420184],[-26.10926109261092,70.50034664785244],[-26.102061020610194,70.49021518423314],[-26.159661596615962,70.46488652518491],[-26.188461884618846,70.45813221610535],[-26.264062640626406,70.45644363883548],[-26.289262892628926,70.45982079337526],[-26.303663036630354,70.46657510245478],[-26.321663216632174,70.47839514334396],[-26.361263612636122,70.48346087515361],[-26.38286382863828,70.49021518423314],[-26.379263792637914,70.49359233877291],[-26.36846368463685,70.50034664785244],[-26.361263612636122,70.50372380239219],[-26.36846368463685,70.50878953420184],[-26.38286382863828,70.52398672963079],[-26.361263612636122,70.52567530690067],[-26.32526325263251,70.54087250232962],[-26.307263072630718,70.5442496568694],[-26.289262892628926,70.5425610795995],[-26.253262532625314,70.53242961598019],[-26.231662316623158,70.53074103871032],[-26.231662316623158,70.53749534778984],[-26.24246242462425,70.54087250232962],[-26.26766267662677,70.55100396594892],[-26.253262532625314,70.55775827502845],[-26.238862388623886,70.5628240068381],[-26.22446224462243,70.56451258410797],[-26.210062100621002,70.56620116137785]]],[[[-27.718477184771842,70.74012462017578],[-27.740077400774,70.75363323833483],[-27.747277472774726,70.76883043376378],[-27.747277472774726,70.78740478373248],[-27.740077400774,70.81273344278074],[-27.75087750877509,70.82624206093979],[-27.75807758077579,70.84143925636874],[-27.761677616776154,70.85832502906757],[-27.754477544775455,70.8735222244965],[-27.722077220772206,70.88871941992545],[-27.67527675276753,70.89716230627488],[-27.588875888758878,70.90053946081463],[-27.563675636756358,70.89885088354475],[-27.51687516875168,70.88871941992545],[-27.49167491674916,70.88703084265558],[-27.23967239672396,70.8937851517351],[-27.24687246872469,70.88871941992545],[-27.257672576725753,70.8853422653857],[-27.26487264872648,70.88196511084593],[-27.27207272072721,70.88027653357605],[-27.282872828728273,70.87183364722662],[-27.32247322473225,70.85325929725792],[-27.358473584735833,70.82455348366992],[-27.369273692736925,70.81779917459039],[-27.412474124741237,70.80429055643131],[-27.49887498874989,70.79078193827226],[-27.58167581675815,70.76038754741438],[-27.671676716767166,70.7384360429059],[-27.696876968769686,70.73505888836613],[-27.718477184771842,70.74012462017578]]],[[[-71.71091710917109,-70.43000087382747],[-71.71091710917109,-70.4266237192877],[-71.71091710917109,-70.42493514201783],[-71.71091710917109,-70.42155798747805],[-71.71091710917109,-70.41986941020818],[-71.72531725317253,-70.408049369319],[-71.74331743317433,-70.39960648296959],[-71.75771757717577,-70.3877864420804],[-71.76491764917648,-70.3692120921117],[-71.76491764917648,-70.36245778303217],[-71.76131761317613,-70.35063774214298],[-71.76131761317613,-70.34388343306345],[-71.76491764917648,-70.33712912398393],[-71.76851768517685,-70.33037481490439],[-71.81531815318152,-70.29660326950673],[-71.73251732517325,-70.26958603318862],[-71.68211682116821,-70.26452030137897],[-71.66771667716677,-70.29660326950673],[-71.58851588515884,-70.29829184677662],[-71.5021150211502,-70.27634034226814],[-71.40851408514085,-70.26620887864885],[-71.31851318513185,-70.29829184677662],[-71.340113401134,-70.32362050582486],[-71.36891368913689,-70.35232631941287],[-71.40491404914049,-70.37765497846111],[-71.53451534515345,-70.436755182907],[-71.60291602916028,-70.45026380106606],[-71.64251642516425,-70.45195237833595],[-71.68211682116821,-70.4468866465263],[-71.71091710917109,-70.43000087382747]]],[[[-70.98370983709837,-54.9288615363043],[-70.99090990909909,-54.927172959034415],[-70.9981099810998,-54.92210722722477],[-71.00531005310053,-54.92041864995488],[-71.01611016110161,-54.92041864995488],[-71.02331023310232,-54.925484381764534],[-71.03051030510305,-54.93730442265371],[-71.03411034110341,-54.94237015446336],[-71.06291062910628,-54.94912446354289],[-71.11691116911169,-54.93392726811395],[-71.15291152911529,-54.93392726811395],[-71.14211142111421,-54.92210722722477],[-71.1241112411124,-54.91366434087536],[-71.10611106111061,-54.908598609065706],[-71.09171091710917,-54.908598609065706],[-71.10611106111061,-54.89508999090664],[-71.12051120511205,-54.89171283636688],[-71.18171181711817,-54.906910031795825],[-71.19251192511925,-54.908598609065706],[-71.20331203312033,-54.906910031795825],[-71.20691206912069,-54.90184429998617],[-71.20331203312033,-54.89508999090664],[-71.21051210512104,-54.87820421820781],[-71.20691206912069,-54.87144990912829],[-71.21051210512104,-54.868072754588525],[-71.22491224912248,-54.866384177318636],[-71.26091260912608,-54.87313848639817],[-71.27171271712717,-54.868072754588525],[-71.27891278912789,-54.864695600048755],[-71.28251282512825,-54.8697613318584],[-71.28251282512825,-54.8798927954777],[-71.28971289712896,-54.88495852728735],[-71.29691296912969,-54.888335681827115],[-71.30771307713077,-54.88664710455723],[-71.3041130411304,-54.90522145452594],[-71.30771307713077,-54.925484381764534],[-71.31851318513185,-54.94237015446336],[-71.33291332913329,-54.94912446354289],[-71.340113401134,-54.950813040812776],[-71.34371343713437,-54.95419019535254],[-71.35091350913508,-54.95419019535254],[-71.35811358113581,-54.94912446354289],[-71.36171361713616,-54.94068157719347],[-71.35811358113581,-54.93730442265371],[-71.35451354513545,-54.93392726811395],[-71.35091350913508,-54.9288615363043],[-71.33651336513364,-54.91197576360547],[-71.33291332913329,-54.90184429998617],[-71.35091350913508,-54.90015572271629],[-71.38331383313833,-54.9288615363043],[-71.40131401314012,-54.94237015446336],[-71.4121141211412,-54.9389929999236],[-71.41571415714157,-54.91366434087536],[-71.42651426514264,-54.90184429998617],[-71.44091440914409,-54.89340141363677],[-71.45891458914589,-54.8798927954777],[-71.40491404914049,-54.85962986823911],[-71.41571415714157,-54.83598978646075],[-71.40491404914049,-54.82923547738122],[-71.38331383313833,-54.830924054651106],[-71.36891368913689,-54.82923547738122],[-71.35811358113581,-54.825858322841455],[-71.34731347313473,-54.82923547738122],[-71.32211322113221,-54.83936694100052],[-71.31131311313112,-54.841055518270394],[-71.29691296912969,-54.83936694100052],[-71.20331203312033,-54.846121250080046],[-71.19251192511925,-54.83598978646075],[-71.18171181711817,-54.830924054651106],[-71.16371163711636,-54.83261263192098],[-71.15651156511565,-54.83598978646075],[-71.14931149311492,-54.83936694100052],[-71.14571145711457,-54.84780982734993],[-71.14571145711457,-54.85962986823911],[-71.1241112411124,-54.85962986823911],[-71.07731077310773,-54.8798927954777],[-71.05931059310593,-54.87651564093794],[-71.04491044910449,-54.868072754588525],[-71.02691026910269,-54.861318445508985],[-71.00531005310053,-54.85794129096922],[-70.99450994509945,-54.85962986823911],[-70.98730987309872,-54.87313848639817],[-70.97650976509765,-54.8798927954777],[-70.9621096210962,-54.87820421820781],[-70.94770947709476,-54.87313848639817],[-70.94770947709476,-54.88664710455723],[-70.95490954909549,-54.89677856817653],[-70.9621096210962,-54.903532877256055],[-70.96570965709657,-54.908598609065706],[-70.95850958509585,-54.91366434087536],[-70.9261092610926,-54.91704149541512],[-70.91170911709116,-54.92041864995488],[-70.9261092610926,-54.9288615363043],[-70.94410944109441,-54.930550113574185],[-70.98370983709837,-54.9288615363043]]],[[[-74.12294122941229,-52.397684208750135],[-74.14454144541445,-52.38755274513084],[-74.16614166141662,-52.375732704241656],[-74.18774187741877,-52.36728981789224],[-74.19854198541985,-52.353781199733184],[-74.18774187741877,-52.32338680887529],[-74.22734227342274,-52.32676396341506],[-74.23454234542345,-52.32338680887529],[-74.24534245342453,-52.316632499795766],[-74.24534245342453,-52.30987819071623],[-74.23814238142381,-52.30481245890658],[-74.22374223742237,-52.3031238816367],[-74.21654216542166,-52.30143530436682],[-74.20574205742057,-52.29468099528729],[-74.19854198541985,-52.287926686207754],[-74.19494194941949,-52.27948379985835],[-74.23454234542345,-52.249089409000455],[-74.20574205742057,-52.22713790449198],[-74.16974169741697,-52.23389221357151],[-74.13374133741337,-52.249089409000455],[-74.10494104941048,-52.249089409000455],[-74.130141301413,-52.22713790449198],[-74.20214202142022,-52.20349782271362],[-74.22014220142201,-52.186612050014794],[-74.20214202142022,-52.186612050014794],[-74.16614166141662,-52.19336635909433],[-74.14454144541445,-52.19336635909433],[-74.2129421294213,-52.16972627731597],[-74.24174241742418,-52.166349122776204],[-74.2561425614256,-52.16297196823644],[-74.27414274142741,-52.149463350077376],[-74.28494284942849,-52.14608619553761],[-74.29934299342993,-52.149463350077376],[-74.32454324543245,-52.16128339096655],[-74.3389433894339,-52.166349122776204],[-74.36054360543605,-52.16466054550632],[-74.38934389343893,-52.15621765915691],[-74.41454414544145,-52.14270904099784],[-74.4181441814418,-52.129200422838785],[-74.40014400144001,-52.11906895921949],[-74.34614346143461,-52.09036314563148],[-74.32094320943209,-52.085297413821834],[-74.31014310143101,-52.08360883655195],[-74.29574295742957,-52.085297413821834],[-74.28854288542885,-52.0886745683616],[-74.26334263342633,-52.10218318652066],[-74.23814238142381,-52.108937495600195],[-74.11934119341193,-52.18154631820515],[-74.08334083340833,-52.211940709063036],[-74.04014040140402,-52.2355807908414],[-74.02214022140221,-52.249089409000455],[-73.99693996939969,-52.27610664531858],[-73.95013950139501,-52.30650103617647],[-73.93573935739357,-52.32507538614518],[-73.93933939339394,-52.331829695224705],[-73.98253982539825,-52.331829695224705],[-73.9681396813968,-52.34533831338377],[-73.98973989739898,-52.34871546792353],[-74.01854018540185,-52.34533831338377],[-74.04014040140402,-52.34364973611389],[-74.03654036540365,-52.35884693154283],[-74.05814058140581,-52.374044126971775],[-74.09054090540906,-52.3909298996706],[-74.12294122941229,-52.397684208750135]]],[[[-74.74934749347493,-52.043082982074765],[-74.76734767347673,-52.06841164112301],[-74.78174781747818,-52.08360883655195],[-74.80334803348033,-52.0886745683616],[-74.83934839348393,-52.09036314563148],[-74.83574835748357,-52.11231465013996],[-74.85014850148501,-52.13088900010867],[-74.87174871748716,-52.1376433091882],[-74.8861488614886,-52.125823268299015],[-74.89694896948969,-52.11231465013996],[-74.88974889748897,-52.09205172290137],[-74.87174871748716,-52.07010021839289],[-74.85734857348574,-52.05659160023383],[-74.79974799747997,-52.024508632106055],[-74.78174781747818,-52.00931143667711],[-74.81414814148141,-52.00931143667711],[-74.82494824948249,-52.00931143667711],[-74.82854828548285,-52.00931143667711],[-74.83214832148322,-52.01437716848676],[-74.83574835748357,-52.01606574575664],[-74.8429484294843,-52.01268859121688],[-74.8429484294843,-52.00762285940723],[-74.84654846548464,-52.00255712759758],[-74.84654846548464,-51.99749139578793],[-74.8429484294843,-51.99411424124817],[-74.83214832148322,-51.985671354898756],[-74.77814778147781,-51.87084810054673],[-74.74934749347493,-51.83369940060931],[-74.74574745747456,-51.83201082333943],[-74.73494734947349,-51.83369940060931],[-74.72774727747277,-51.838765132418956],[-74.72774727747277,-51.84720801876837],[-74.73494734947349,-51.859028059657554],[-74.73134731347314,-51.86747094600697],[-74.72774727747277,-51.87253667781661],[-74.71334713347133,-51.86915952327685],[-74.670146701467,-51.87084810054673],[-74.65934659346593,-51.86915952327685],[-74.65214652146521,-51.85733948238767],[-74.61614616146161,-51.84551944149849],[-74.60534605346054,-51.837076555149075],[-74.59814598145981,-51.837076555149075],[-74.60894608946089,-51.855650905117784],[-74.62334623346233,-51.879290986896144],[-74.64134641346413,-51.897865336864854],[-74.66654666546665,-51.91137395502392],[-74.69174691746917,-51.943456923151686],[-74.70254702547025,-51.95358838677098],[-74.7169471694717,-51.960342695850514],[-74.72774727747277,-51.96878558219993],[-74.73494734947349,-51.982294200358986],[-74.72054720547204,-51.980605623089104],[-74.69894698946989,-51.97047415946981],[-74.6809468094681,-51.96878558219993],[-74.68454684546845,-51.97722846854934],[-74.69534695346952,-51.98735993216864],[-74.70614706147062,-51.99749139578793],[-74.7169471694717,-52.00255712759758],[-74.72774727747277,-52.00762285940723],[-74.74934749347493,-52.043082982074765]]],[[[-59.63279632796328,-51.740827650765766],[-59.6579965799658,-51.76109057800436],[-59.72639726397263,-51.799927855211656],[-59.83079830798307,-51.89448818232509],[-59.85239852398523,-51.921505418643214],[-59.85959859598596,-51.93670261407215],[-59.870398703987036,-51.94852265496134],[-59.88839888398884,-51.95696554131075],[-59.931599315993154,-51.965408427660165],[-59.996399963999636,-51.99411424124817],[-60.00360003600035,-51.965408427660165],[-60.007200072000714,-51.960342695850514],[-60.032400324003234,-51.95865411858063],[-60.04320043200431,-51.95527696404086],[-60.05040050400504,-51.9518998095011],[-60.05400054000539,-51.94007976861192],[-60.06480064800648,-51.94007976861192],[-60.07560075600756,-51.94514550042157],[-60.07920079200791,-51.9518998095011],[-60.082800828008274,-51.962031273120395],[-60.072000720007196,-51.982294200358986],[-60.07560075600756,-51.9907370867084],[-60.09360093600935,-51.999179973057814],[-60.18000180001799,-51.99411424124817],[-60.20520205202051,-52.00255712759758],[-60.2160021600216,-52.004245704867465],[-60.22320223202232,-51.99411424124817],[-60.21960219602195,-51.98904850943852],[-60.20160201602016,-51.97722846854934],[-60.19440194401943,-51.96878558219993],[-60.259202592025915,-51.985671354898756],[-60.27720277202772,-51.99411424124817],[-60.2880028800288,-52.01268859121688],[-60.28080280802807,-52.027885786645825],[-60.27000270002699,-52.044771559344646],[-60.26280262802628,-52.066723063853125],[-60.26640266402664,-52.08192025928207],[-60.28080280802807,-52.09374030017125],[-60.360003600035995,-52.15284050461714],[-60.37080370803707,-52.15959481369667],[-60.39600396003959,-52.15959481369667],[-60.42480424804248,-52.144397618267725],[-60.44640446404463,-52.14608619553761],[-60.44280442804427,-52.147774772807495],[-60.44280442804427,-52.15284050461714],[-60.44280442804427,-52.15959481369667],[-60.44280442804427,-52.16297196823644],[-60.450004500045,-52.166349122776204],[-60.45720457204571,-52.16128339096655],[-60.46440464404644,-52.15621765915691],[-60.48240482404823,-52.147774772807495],[-60.50040500405004,-52.129200422838785],[-60.50760507605075,-52.125823268299015],[-60.51840518405183,-52.12244611375925],[-60.536405364053635,-52.11231465013996],[-60.55080550805508,-52.11231465013996],[-60.55800558005579,-52.11569180467972],[-60.55800558005579,-52.12244611375925],[-60.55440554405544,-52.129200422838785],[-60.52920529205292,-52.1376433091882],[-60.51480514805148,-52.15115192734726],[-60.50040500405004,-52.16972627731597],[-60.49680496804967,-52.186612050014794],[-60.536405364053635,-52.21700644087269],[-60.59400594005939,-52.23726936811128],[-60.648006480064794,-52.23389221357151],[-60.68040680406804,-52.19336635909433],[-60.66960669606695,-52.19505493636421],[-60.65880658806587,-52.19674351363409],[-60.648006480064794,-52.19674351363409],[-60.64080640806408,-52.19336635909433],[-60.65880658806587,-52.18492347274491],[-60.68400684006839,-52.168037700046085],[-60.70560705607056,-52.147774772807495],[-60.71640716407164,-52.13257757737855],[-60.70560705607056,-52.129200422838785],[-60.69480694806947,-52.11906895921949],[-60.687606876068756,-52.108937495600195],[-60.70560705607056,-52.10387176379054],[-60.80640806408064,-52.10218318652066],[-60.81720817208172,-52.10387176379054],[-60.824408244082434,-52.11231465013996],[-60.82080820808207,-52.11569180467972],[-60.80640806408064,-52.1173803819496],[-60.79560795607955,-52.11906895921949],[-60.774007740077394,-52.124134691029134],[-60.75240752407524,-52.13933188645808],[-60.73080730807308,-52.15790623642679],[-60.723607236072354,-52.173103431855736],[-60.78120781207812,-52.173103431855736],[-60.79560795607955,-52.17141485458585],[-60.80640806408064,-52.168037700046085],[-60.81000810008099,-52.15959481369667],[-60.85680856808568,-52.12244611375925],[-60.86760867608676,-52.11569180467972],[-60.8820088200882,-52.11400322740984],[-60.89280892808928,-52.11400322740984],[-60.90720907209072,-52.11231465013996],[-60.925209252092515,-52.10049460925078],[-60.95760957609576,-52.07347737293266],[-60.975609756097555,-52.063345909313355],[-61.02241022410223,-52.05828017750371],[-61.03681036810367,-52.046460136614535],[-61.02961029610296,-52.022820054836174],[-61.01881018810188,-52.01268859121688],[-60.99360993609936,-52.01606574575664],[-60.93960939609396,-52.02957436391571],[-60.89640896408963,-52.03126294118559],[-60.88560885608855,-52.03632867299523],[-60.8820088200882,-52.046460136614535],[-60.8820088200882,-52.05659160023383],[-60.87840878408784,-52.065034486583244],[-60.86040860408603,-52.063345909313355],[-60.874808748087474,-52.02957436391571],[-60.80640806408064,-52.024508632106055],[-60.74160741607416,-52.00931143667711],[-60.74160741607416,-52.00255712759758],[-60.774007740077394,-51.9907370867084],[-60.80280802808028,-51.98735993216864],[-60.824408244082434,-51.980605623089104],[-60.84600846008459,-51.95527696404086],[-60.75960759607595,-51.95358838677098],[-60.712807128071276,-51.962031273120395],[-60.69480694806947,-51.982294200358986],[-60.687606876068756,-51.982294200358986],[-60.68400684006839,-51.97553989127946],[-60.68040680406804,-51.97047415946981],[-60.6660066600666,-51.960342695850514],[-60.6660066600666,-51.97216273673969],[-60.65880658806587,-51.980605623089104],[-60.65160651606516,-51.983982777628874],[-60.64080640806408,-51.97891704581922],[-60.63360633606335,-51.97216273673969],[-60.622806228062274,-51.97047415946981],[-60.612006120061196,-51.97385131400958],[-60.58320583205831,-51.97722846854934],[-60.572405724057234,-51.980605623089104],[-60.55800558005579,-51.98904850943852],[-60.540005400054,-51.999179973057814],[-60.53280532805327,-51.999179973057814],[-60.52200522005219,-51.98904850943852],[-60.536405364053635,-51.982294200358986],[-60.536405364053635,-51.97553989127946],[-60.511205112051115,-51.97553989127946],[-60.48240482404823,-51.97216273673969],[-60.45720457204571,-51.965408427660165],[-60.435604356043555,-51.95527696404086],[-60.40680406804067,-51.92488257318298],[-60.40320403204032,-51.921505418643214],[-60.39960399603996,-51.91643968683356],[-60.40680406804067,-51.90799680048415],[-60.41760417604176,-51.904619645944386],[-60.43200432004319,-51.90968537775403],[-60.46800468004679,-51.92994830499263],[-60.51480514805148,-51.941768345881805],[-60.56520565205652,-51.941768345881805],[-60.60480604806048,-51.92657115045286],[-60.52560525605256,-51.92994830499263],[-60.50760507605075,-51.923193995913095],[-60.50040500405004,-51.91981684137333],[-60.47880478804788,-51.91475110956368],[-60.47520475204752,-51.90968537775403],[-60.47160471604715,-51.901242491404616],[-60.46440464404644,-51.89111102778532],[-60.45360453604536,-51.884356718705796],[-60.44640446404463,-51.879290986896144],[-60.45720457204571,-51.86747094600697],[-60.45720457204571,-51.859028059657554],[-60.450004500045,-51.85227375057802],[-60.44640446404463,-51.84551944149849],[-60.450004500045,-51.83538797787919],[-60.45360453604536,-51.81343647337072],[-60.45360453604536,-51.799927855211656],[-60.44280442804427,-51.78304208251283],[-60.42120421204211,-51.77122204162365],[-60.39240392403924,-51.766156309814],[-60.37080370803707,-51.76953346435377],[-60.38160381603815,-51.777976350703184],[-60.38880388803888,-51.78473065978271],[-60.40680406804067,-51.796550700671894],[-60.37440374403744,-51.79148496886224],[-60.36360363603636,-51.79148496886224],[-60.35640356403563,-51.799927855211656],[-60.360003600035995,-51.81005931883095],[-60.3780037800378,-51.837076555149075],[-60.36720367203672,-51.842142286958726],[-60.33840338403384,-51.859028059657554],[-60.33840338403384,-51.842142286958726],[-60.32760327603276,-51.83032224606955],[-60.31680316803168,-51.82356793699002],[-60.29880298802988,-51.8252565142599],[-60.309603096030955,-51.81005931883095],[-60.31320313203132,-51.798239277941775],[-60.309603096030955,-51.766156309814],[-60.30600306003059,-51.756024846194705],[-60.29880298802988,-51.75095911438506],[-60.2880028800288,-51.74758195984529],[-60.27720277202772,-51.74927053711518],[-60.27000270002699,-51.75264769165494],[-60.26280262802628,-51.76953346435377],[-60.25560255602555,-51.7762877734333],[-60.24840248402484,-51.7762877734333],[-60.24120241202412,-51.77122204162365],[-60.234002340023395,-51.76953346435377],[-60.23040230402303,-51.779664927973066],[-60.22320223202232,-51.78304208251283],[-60.2160021600216,-51.777976350703184],[-60.183601836018354,-51.76109057800436],[-60.18000180001799,-51.74251622803565],[-60.183601836018354,-51.72225330079706],[-60.18000180001799,-51.70705610536811],[-60.208802088020875,-51.70199037355846],[-60.23040230402303,-51.70536752809823],[-60.25560255602555,-51.71043325990787],[-60.28080280802807,-51.71381041444764],[-60.33840338403384,-51.70874468263799],[-60.36360363603636,-51.71381041444764],[-60.35640356403563,-51.735761918956115],[-60.36720367203672,-51.74589338257541],[-60.37440374403744,-51.74589338257541],[-60.38160381603815,-51.74251622803565],[-60.39240392403924,-51.740827650765766],[-60.43920439204392,-51.759402000734475],[-60.450004500045,-51.76277915527424],[-60.49680496804967,-51.76277915527424],[-60.511205112051115,-51.766156309814],[-60.51840518405183,-51.774599196163415],[-60.52200522005219,-51.78304208251283],[-60.52920529205292,-51.78979639159236],[-60.55080550805508,-51.78979639159236],[-60.561605616056156,-51.774599196163415],[-60.56880568805687,-51.75771342346459],[-60.586805868058676,-51.74927053711518],[-60.60840608406083,-51.74251622803565],[-60.630006300063,-51.7273190326067],[-60.64080640806408,-51.70705610536811],[-60.64080640806408,-51.68679317812952],[-60.62640626406264,-51.66990740543069],[-60.60840608406083,-51.67159598270057],[-60.59040590405904,-51.68172744631987],[-60.48960489604896,-51.70030179628858],[-60.460804608046075,-51.70030179628858],[-60.43920439204392,-51.693547487209045],[-60.39240392403924,-51.67159598270057],[-60.36720367203672,-51.66653025089092],[-60.29160291602916,-51.67159598270057],[-60.21960219602195,-51.654710210001745],[-60.1980019800198,-51.65639878727163],[-60.158401584015834,-51.68341602358975],[-60.133201332013314,-51.69017033266928],[-60.07560075600756,-51.693547487209045],[-60.09360093600935,-51.674973137240336],[-60.11520115201152,-51.66484167362104],[-60.14400144001439,-51.6597759418114],[-60.16920169201691,-51.6597759418114],[-60.19080190801908,-51.653021632731864],[-60.24840248402484,-51.610807200984794],[-60.259202592025915,-51.60743004644503],[-60.28080280802807,-51.60236431463538],[-60.29160291602916,-51.597298582825736],[-60.31680316803168,-51.57028134650761],[-60.3420034200342,-51.568592769237725],[-60.48960489604896,-51.52637833749066],[-60.5040050400504,-51.51962402841113],[-60.51480514805148,-51.49767252390266],[-60.51480514805148,-51.485852483013474],[-60.50760507605075,-51.48078675120383],[-60.44640446404463,-51.48078675120383],[-60.39960399603996,-51.489229637553244],[-60.38880388803888,-51.48416390574359],[-60.40320403204032,-51.463900978505],[-60.42480424804248,-51.45039236034594],[-60.450004500045,-51.44194947399652],[-60.47880478804788,-51.435195164917],[-60.51480514805148,-51.43181801037723],[-60.54360543605435,-51.43350658764711],[-60.55800558005579,-51.43350658764711],[-60.586805868058676,-51.42168654675793],[-60.60120601206012,-51.41999796948805],[-60.612006120061196,-51.41662081494829],[-60.622806228062274,-51.41155508313864],[-60.630006300063,-51.40311219678922],[-60.630006300063,-51.39635788770969],[-60.62640626406264,-51.384537846820514],[-60.630006300063,-51.37271780593134],[-60.64440644406443,-51.35076630142286],[-60.63360633606335,-51.35245487869274],[-60.622806228062274,-51.35245487869274],[-60.61560615606156,-51.34907772415298],[-60.60480604806048,-51.344011992343326],[-60.572405724057234,-51.35752061050239],[-60.460804608046075,-51.386226424090395],[-60.42840428404284,-51.39973504224946],[-60.3240032400324,-51.45376951488571],[-60.24120241202412,-51.47909817393394],[-60.15480154801547,-51.487541060283355],[-59.98919989199892,-51.467278133044765],[-60.01440014400144,-51.45039236034594],[-60.082800828008274,-51.44532662853629],[-60.07560075600756,-51.423375124027814],[-60.05400054000539,-51.406489351328986],[-60.02880028800287,-51.39298073316993],[-60.02520025200252,-51.37947211501086],[-60.01800018000179,-51.37440638320122],[-60.007200072000714,-51.38284926955063],[-60.00360003600035,-51.38791500136028],[-59.996399963999636,-51.41324366040852],[-59.93519935199352,-51.38116069228075],[-59.90279902799027,-51.37271780593134],[-59.870398703987036,-51.37947211501086],[-59.870398703987036,-51.386226424090395],[-59.87759877598775,-51.389603578630165],[-59.881198811988114,-51.39129215590005],[-59.881198811988114,-51.39635788770969],[-59.88479884798848,-51.39973504224946],[-59.79119791197911,-51.409866505868756],[-59.76239762397624,-51.41999796948805],[-59.77679776797767,-51.425063701297695],[-59.794797947979475,-51.426752278567584],[-59.83079830798307,-51.426752278567584],[-59.80199801998019,-51.447015205806174],[-59.7479974799748,-51.447015205806174],[-59.56079560795608,-51.41999796948805],[-59.542795427954275,-51.4149322376784],[-59.51039510395104,-51.39635788770969],[-59.48879488794887,-51.39298073316993],[-59.48879488794887,-51.39973504224946],[-59.55719557195572,-51.43181801037723],[-59.5859958599586,-51.44026089672664],[-59.53919539195391,-51.45545809215559],[-59.492394923949234,-51.45545809215559],[-59.391593915939154,-51.43350658764711],[-59.39879398793987,-51.423375124027814],[-59.41319413194131,-51.4149322376784],[-59.42399423994239,-51.408177928598874],[-59.43839438394383,-51.406489351328986],[-59.44559445594456,-51.39973504224946],[-59.44559445594456,-51.37102922866145],[-59.44559445594456,-51.35752061050239],[-59.43839438394383,-51.35920918777227],[-59.42039420394204,-51.35752061050239],[-59.41319413194131,-51.35752061050239],[-59.416794167941674,-51.35414345596263],[-59.416794167941674,-51.342323415073444],[-59.42039420394204,-51.3372576832638],[-59.405994059940596,-51.3372576832638],[-59.38799387993879,-51.34063483780356],[-59.369993699937,-51.345700569613214],[-59.366393663936634,-51.35414345596263],[-59.355593555935556,-51.360897765042154],[-59.254792547925476,-51.38791500136028],[-59.229592295922956,-51.39973504224946],[-59.215192151921514,-51.41324366040852],[-59.25839258392584,-51.41155508313864],[-59.27279272792728,-51.41662081494829],[-59.28359283592836,-51.43350658764711],[-59.279992799927996,-51.447015205806174],[-59.265592655926554,-51.448703783076056],[-59.25119251192511,-51.44532662853629],[-59.23679236792367,-51.447015205806174],[-59.26199261992619,-51.45714666942547],[-59.30879308793088,-51.489229637553244],[-59.330393303933036,-51.50104967844242],[-59.33759337593375,-51.490918214823125],[-59.34839348393484,-51.487541060283355],[-59.35919359193592,-51.489229637553244],[-59.37359373593735,-51.49429536936289],[-59.37359373593735,-51.50104967844242],[-59.369993699937,-51.50780398752195],[-59.369993699937,-51.5128697193316],[-59.37719377193771,-51.529755492030425],[-59.369993699937,-51.52637833749066],[-59.35199351993519,-51.52300118295089],[-59.35199351993519,-51.529755492030425],[-59.380793807938076,-51.55677272834855],[-59.38439384393844,-51.56352703742808],[-59.38799387993879,-51.590544273746204],[-59.39519395193952,-51.597298582825736],[-59.40959409594096,-51.60236431463538],[-59.43479434794348,-51.62093866460409],[-59.44559445594456,-51.62600439641374],[-59.459994599946,-51.62093866460409],[-59.46359463594635,-51.612495778254676],[-59.46359463594635,-51.60236431463538],[-59.459994599946,-51.590544273746204],[-59.492394923949234,-51.614184355524564],[-59.51039510395104,-51.62262724187397],[-59.52119521195212,-51.61756151006433],[-59.57879578795787,-51.653021632731864],[-59.54999549995499,-51.65133305546198],[-59.55359553595535,-51.66146451908128],[-59.58959589595895,-51.69017033266928],[-59.63279632796328,-51.740827650765766]]],[[[-57.81477814778147,-51.693547487209045],[-57.77517775177752,-51.68510460085963],[-57.75717757177571,-51.68341602358975],[-57.73557735577356,-51.68679317812952],[-57.73557735577356,-51.693547487209045],[-57.76077760777608,-51.695236064478934],[-57.86517865178651,-51.72563045533682],[-57.883178831788314,-51.72900760987658],[-57.95157951579516,-51.72900760987658],[-57.96597965979659,-51.73238476441635],[-57.96597965979659,-51.740827650765766],[-57.98037980379803,-51.74758195984529],[-57.99117991179911,-51.75095911438506],[-58.14598145981459,-51.76277915527424],[-58.22158221582215,-51.754336268924824],[-58.261182611826115,-51.756024846194705],[-58.261182611826115,-51.76277915527424],[-58.25038250382504,-51.76446773254412],[-58.21438214382144,-51.7762877734333],[-58.19638196381963,-51.779664927973066],[-58.14598145981459,-51.78304208251283],[-58.14598145981459,-51.78979639159236],[-58.17478174781748,-51.79486212340201],[-58.23238232382323,-51.793173546132124],[-58.261182611826115,-51.796550700671894],[-58.32958329583295,-51.82356793699002],[-58.35838358383583,-51.8252565142599],[-58.336783367833675,-51.83032224606955],[-58.31518315183152,-51.83032224606955],[-58.2539825398254,-51.81174789610083],[-58.185581855818555,-51.81005931883095],[-58.19998199982,-51.821879359720135],[-58.22518225182252,-51.83369940060931],[-58.2539825398254,-51.842142286958726],[-58.29358293582935,-51.84889659603826],[-58.37278372783727,-51.879290986896144],[-58.41958419584195,-51.8927996050552],[-58.50958509585095,-51.88266814143591],[-58.563585635856356,-51.88604529597568],[-58.599585995859954,-51.8927996050552],[-58.75798757987579,-51.89111102778532],[-58.78318783187831,-51.88604529597568],[-58.81558815588156,-51.86578236873708],[-58.86238862388623,-51.8539623278479],[-58.88398883988839,-51.842142286958726],[-58.90558905589056,-51.83538797787919],[-58.91638916389164,-51.82863366879966],[-58.919989199892,-51.82019078245025],[-58.92358923589235,-51.80837074156107],[-58.93078930789308,-51.799927855211656],[-58.94158941589416,-51.796550700671894],[-58.952389523895235,-51.80161643248154],[-58.96318963189631,-51.816813627910484],[-58.97038970389704,-51.83201082333943],[-58.97398973989739,-51.840453709688845],[-58.97038970389704,-51.8539623278479],[-58.9559895598956,-51.86578236873708],[-58.93798937989379,-51.87591383235638],[-58.89118891188912,-51.884356718705796],[-58.851588515885155,-51.897865336864854],[-58.81558815588156,-51.91475110956368],[-58.79758797587975,-51.93501403680227],[-58.81198811988119,-51.9518998095011],[-58.78318783187831,-51.95696554131075],[-58.72918729187292,-51.946834077691456],[-58.69678696786967,-51.94852265496134],[-58.66078660786607,-51.95527696404086],[-58.63198631986319,-51.96878558219993],[-58.63198631986319,-51.98904850943852],[-58.60318603186032,-52.00255712759758],[-58.65718657186571,-52.024508632106055],[-58.67158671586715,-52.03632867299523],[-58.66078660786607,-52.043082982074765],[-58.65358653586536,-52.05152586842418],[-58.649986499864994,-52.063345909313355],[-58.639186391863916,-52.09711745471101],[-58.64278642786428,-52.107248918330306],[-58.649986499864994,-52.110626072870076],[-58.664386643866436,-52.11231465013996],[-58.675186751867514,-52.107248918330306],[-58.70758707587075,-52.07010021839289],[-58.71838718387184,-52.05996875477359],[-58.72918729187292,-52.05152586842418],[-58.74358743587436,-52.044771559344646],[-58.76158761587615,-52.043082982074765],[-58.77238772387723,-52.04139440480488],[-58.78318783187831,-52.03126294118559],[-58.79038790387904,-52.02957436391571],[-58.7939879398794,-52.03126294118559],[-58.79758797587975,-52.03632867299523],[-58.801188011880114,-52.04139440480488],[-58.81198811988119,-52.043082982074765],[-58.82278822788227,-52.04139440480488],[-58.83718837188371,-52.03801725026512],[-58.84438844388444,-52.03632867299523],[-58.85878858788587,-52.039705827535],[-58.85518855188552,-52.048148713884416],[-58.851588515885155,-52.05659160023383],[-58.851588515885155,-52.063345909313355],[-58.8659886598866,-52.07347737293266],[-58.89478894788948,-52.085297413821834],[-58.90918909189091,-52.09374030017125],[-58.927189271892715,-52.10218318652066],[-58.93798937989379,-52.09036314563148],[-58.94878948789487,-52.05659160023383],[-58.96678966789668,-52.07178879566277],[-58.98118981189812,-52.063345909313355],[-58.98838988389883,-52.044771559344646],[-58.99558995589956,-52.02957436391571],[-59.01719017190172,-52.022820054836174],[-59.03879038790387,-52.02619720937594],[-59.05679056790568,-52.02619720937594],[-59.06399063990639,-52.00931143667711],[-59.0819908199082,-52.01437716848676],[-59.09639096390964,-52.01268859121688],[-59.12519125191251,-51.99411424124817],[-59.13239132391324,-51.98735993216864],[-59.13959139591395,-51.983982777628874],[-59.14679146791468,-51.982294200358986],[-59.15759157591576,-51.985671354898756],[-59.16119161191611,-51.9907370867084],[-59.16479164791647,-51.99580281851805],[-59.1719917199172,-52.00255712759758],[-59.18639186391863,-52.005934282137346],[-59.20079200792007,-52.00762285940723],[-59.21159211592115,-52.005934282137346],[-59.22599225992259,-52.00255712759758],[-59.23679236792367,-51.99749139578793],[-59.2439924399244,-51.99411424124817],[-59.25119251192511,-51.98904850943852],[-59.26199261992619,-51.98904850943852],[-59.26919269192692,-51.9907370867084],[-59.28359283592836,-51.999179973057814],[-59.29439294392944,-52.00255712759758],[-59.30159301593015,-52.00762285940723],[-59.2979929799298,-52.01944290029641],[-59.28359283592836,-52.02619720937594],[-59.254792547925476,-52.01437716848676],[-59.20079200792007,-52.022820054836174],[-59.18639186391863,-52.02957436391571],[-59.18279182791828,-52.043082982074765],[-59.18279182791828,-52.05828017750371],[-59.17559175591755,-52.063345909313355],[-59.15759157591576,-52.061657332043474],[-59.14319143191432,-52.05828017750371],[-59.128791287912875,-52.05659160023383],[-59.11079110791107,-52.063345909313355],[-59.14679146791468,-52.09036314563148],[-59.11079110791107,-52.0886745683616],[-59.09279092790928,-52.09205172290137],[-59.078390783907835,-52.09880603198089],[-59.09279092790928,-52.107248918330306],[-59.13239132391324,-52.1173803819496],[-59.14679146791468,-52.125823268299015],[-59.153991539915395,-52.144397618267725],[-59.13959139591395,-52.149463350077376],[-59.11439114391143,-52.149463350077376],[-59.05679056790568,-52.13595473191832],[-59.03879038790387,-52.13595473191832],[-59.03519035190351,-52.14608619553761],[-59.0459904599046,-52.15452908188703],[-59.09639096390964,-52.173103431855736],[-59.08559085590855,-52.186612050014794],[-59.06399063990639,-52.20012066817386],[-59.04959049590495,-52.211940709063036],[-59.06399063990639,-52.228826481761864],[-59.08559085590855,-52.23220363630163],[-59.11079110791107,-52.2254493272221],[-59.153991539915395,-52.20856355452327],[-59.179191791917916,-52.206874977253385],[-59.20079200792007,-52.20856355452327],[-59.22239222392224,-52.206874977253385],[-59.240392403924034,-52.19336635909433],[-59.24759247592476,-52.18492347274491],[-59.24759247592476,-52.1764805863955],[-59.25119251192511,-52.168037700046085],[-59.26199261992619,-52.15959481369667],[-59.27279272792728,-52.15452908188703],[-59.28719287192871,-52.15284050461714],[-59.2979929799298,-52.149463350077376],[-59.30879308793088,-52.13933188645808],[-59.32679326793267,-52.144397618267725],[-59.366393663936634,-52.11569180467972],[-59.38439384393844,-52.11231465013996],[-59.391593915939154,-52.1173803819496],[-59.39519395193952,-52.129200422838785],[-59.39879398793987,-52.149463350077376],[-59.405994059940596,-52.15621765915691],[-59.416794167941674,-52.149463350077376],[-59.43479434794348,-52.13257757737855],[-59.456394563945636,-52.14270904099784],[-59.44559445594456,-52.15959481369667],[-59.41319413194131,-52.186612050014794],[-59.416794167941674,-52.186612050014794],[-59.42399423994239,-52.19336635909433],[-59.431194311943116,-52.20180924544374],[-59.43479434794348,-52.211940709063036],[-59.42759427594275,-52.21869501814257],[-59.416794167941674,-52.22038359541245],[-59.391593915939154,-52.22207217268233],[-59.366393663936634,-52.230515059031745],[-59.35199351993519,-52.24233509992092],[-59.34479344793448,-52.25753229534987],[-59.35199351993519,-52.27610664531858],[-59.355593555935556,-52.27948379985835],[-59.369993699937,-52.28961526347764],[-59.37359373593735,-52.29974672709694],[-59.36279362793627,-52.3031238816367],[-59.35919359193592,-52.30818961344635],[-59.33759337593375,-52.32338680887529],[-59.330393303933036,-52.32338680887529],[-59.33759337593375,-52.341961158844],[-59.35919359193592,-52.335206849764475],[-59.391593915939154,-52.30987819071623],[-59.416794167941674,-52.30143530436682],[-59.467194671946714,-52.29636957255717],[-59.48879488794887,-52.28454953166799],[-59.48519485194852,-52.2642866044294],[-59.4959949599496,-52.252466563540224],[-59.517595175951755,-52.24571225446069],[-59.56439564395643,-52.23726936811128],[-59.57879578795787,-52.228826481761864],[-59.58239582395824,-52.21700644087269],[-59.55719557195572,-52.20012066817386],[-59.57519575195751,-52.19505493636421],[-59.60759607596076,-52.20180924544374],[-59.6219962199622,-52.19674351363409],[-59.62559625596255,-52.191677781824446],[-59.62559625596255,-52.17816916366538],[-59.62559625596255,-52.173103431855736],[-59.6579965799658,-52.15115192734726],[-59.693996939969395,-52.13426615464843],[-59.70479704797047,-52.127511845568904],[-59.71559715597155,-52.11906895921949],[-59.72279722797228,-52.107248918330306],[-59.719197191971915,-52.09711745471101],[-59.7119971199712,-52.09374030017125],[-59.70479704797047,-52.09374030017125],[-59.693996939969395,-52.09711745471101],[-59.68679686796868,-52.10049460925078],[-59.66519665196651,-52.11569180467972],[-59.6579965799658,-52.11906895921949],[-59.63999639996399,-52.1173803819496],[-59.62919629196291,-52.110626072870076],[-59.62559625596255,-52.09880603198089],[-59.63999639996399,-52.085297413821834],[-59.59679596795968,-52.0785431047423],[-59.57879578795787,-52.07178879566277],[-59.57159571595716,-52.05659160023383],[-59.58959589595895,-52.05152586842418],[-59.60759607596076,-52.04139440480488],[-59.62559625596255,-52.02957436391571],[-59.63279632796328,-52.01606574575664],[-59.63279632796328,-52.005934282137346],[-59.62559625596255,-52.00255712759758],[-59.618396183961835,-52.004245704867465],[-59.60759607596076,-52.01268859121688],[-59.59679596795968,-52.01606574575664],[-59.58239582395824,-52.01775432302652],[-59.55719557195572,-52.01606574575664],[-59.57159571595716,-51.99580281851805],[-59.57879578795787,-51.98904850943852],[-59.593195931959315,-51.982294200358986],[-59.57519575195751,-51.97722846854934],[-59.53919539195391,-51.97385131400958],[-59.52119521195212,-51.96878558219993],[-59.52119521195212,-51.960342695850514],[-59.57879578795787,-51.9518998095011],[-59.60399603996039,-51.94007976861192],[-59.60399603996039,-51.921505418643214],[-59.58239582395824,-51.91137395502392],[-59.54999549995499,-51.918128264103444],[-59.51399513995139,-51.93163688226251],[-59.48879488794887,-51.93501403680227],[-59.467194671946714,-51.921505418643214],[-59.48159481594816,-51.90968537775403],[-59.51039510395104,-51.897865336864854],[-59.52119521195212,-51.88604529597568],[-59.517595175951755,-51.87422525508649],[-59.50319503195031,-51.87422525508649],[-59.48879488794887,-51.87591383235638],[-59.47439474394743,-51.87253667781661],[-59.467194671946714,-51.8640937914672],[-59.467194671946714,-51.855650905117784],[-59.47439474394743,-51.84889659603826],[-59.48879488794887,-51.84551944149849],[-59.47079470794708,-51.838765132418956],[-59.39519395193952,-51.82019078245025],[-59.37719377193771,-51.83369940060931],[-59.36279362793627,-51.821879359720135],[-59.35199351993519,-51.7762877734333],[-59.3339933399334,-51.7864192370526],[-59.31959319593196,-51.78810781432248],[-59.28359283592836,-51.78304208251283],[-59.30159301593015,-51.759402000734475],[-59.30159301593015,-51.74927053711518],[-59.2079920799208,-51.70705610536811],[-59.189991899918994,-51.72056472352717],[-59.179191791917916,-51.71381041444764],[-59.16479164791647,-51.70030179628858],[-59.15039150391503,-51.693547487209045],[-59.07119071190712,-51.68510460085963],[-59.05679056790568,-51.68679317812952],[-59.04959049590495,-51.695236064478934],[-59.04959049590495,-51.70367895082834],[-59.053190531905315,-51.712121837177754],[-59.04959049590495,-51.72225330079706],[-59.0459904599046,-51.72900760987658],[-59.03879038790387,-51.735761918956115],[-59.03159031590316,-51.74251622803565],[-59.027990279902795,-51.75264769165494],[-59.03159031590316,-51.76109057800436],[-59.03879038790387,-51.77122204162365],[-59.04239042390424,-51.777976350703184],[-59.03519035190351,-51.793173546132124],[-59.03519035190351,-51.80161643248154],[-59.03879038790387,-51.81005931883095],[-59.04239042390424,-51.816813627910484],[-59.02439024390243,-51.81343647337072],[-59.00639006390064,-51.81005931883095],[-58.98838988389883,-51.803305009751426],[-58.98118981189812,-51.78979639159236],[-58.98478984789847,-51.774599196163415],[-58.99918999189991,-51.75771342346459],[-59.00639006390064,-51.740827650765766],[-59.002790027900275,-51.71381041444764],[-59.01719017190172,-51.70536752809823],[-59.027990279902795,-51.693547487209045],[-59.02079020790208,-51.673284559970455],[-59.01359013590135,-51.66821882816081],[-59.002790027900275,-51.66653025089092],[-58.9919899198992,-51.66484167362104],[-58.98838988389883,-51.65639878727163],[-58.9919899198992,-51.64626732365233],[-58.99918999189991,-51.64626732365233],[-59.00999009990099,-51.64626732365233],[-59.03159031590316,-51.63782443730292],[-59.09999099990999,-51.62093866460409],[-59.14679146791468,-51.597298582825736],[-59.16839168391684,-51.573658501047376],[-59.15039150391503,-51.55677272834855],[-59.12159121591216,-51.53650980110996],[-59.11079110791107,-51.50104967844242],[-59.06039060390603,-51.56352703742808],[-59.027990279902795,-51.58378996466667],[-59.00639006390064,-51.55677272834855],[-59.03519035190351,-51.53313264657019],[-59.04239042390424,-51.511181142061716],[-59.02439024390243,-51.49936110117254],[-58.98838988389883,-51.50780398752195],[-59.01359013590135,-51.49260679209301],[-59.103591035910355,-51.46558955577488],[-59.12519125191251,-51.45714666942547],[-59.12159121591216,-51.44194947399652],[-59.11079110791107,-51.425063701297695],[-59.09999099990999,-51.41324366040852],[-59.08559085590855,-51.406489351328986],[-59.078390783907835,-51.408177928598874],[-59.05679056790568,-51.41662081494829],[-59.04959049590495,-51.41999796948805],[-59.03879038790387,-51.41999796948805],[-59.00639006390064,-51.41324366040852],[-58.99558995589956,-51.409866505868756],[-58.9919899198992,-51.39973504224946],[-58.98838988389883,-51.389603578630165],[-58.98478984789847,-51.386226424090395],[-58.91638916389164,-51.384537846820514],[-58.89478894788948,-51.37947211501086],[-58.87318873188731,-51.37102922866145],[-58.8659886598866,-51.35752061050239],[-58.86958869588696,-51.344011992343326],[-58.89838898388983,-51.31868333329509],[-58.90918909189091,-51.30010898332638],[-58.919989199892,-51.29335467424685],[-58.93078930789308,-51.28660036516732],[-58.93798937989379,-51.283223210627554],[-58.94158941589416,-51.2781574788179],[-58.952389523895235,-51.24776308796002],[-58.93438934389343,-51.25451739703954],[-58.901989019890195,-51.2781574788179],[-58.88398883988839,-51.283223210627554],[-58.86238862388623,-51.284911787897435],[-58.81558815588156,-51.29673182878661],[-58.73278732787327,-51.328814796914386],[-58.71118711187111,-51.33050337418427],[-58.66078660786607,-51.33050337418427],[-58.64638646386463,-51.33388052872403],[-58.639186391863916,-51.33894626053368],[-58.624786247862474,-51.344011992343326],[-58.61038610386103,-51.344011992343326],[-58.61038610386103,-51.3372576832638],[-58.613986139861396,-51.32543764237462],[-58.599585995859954,-51.31530617875532],[-58.5779857798578,-51.30686329240591],[-58.48078480784807,-51.30179756059626],[-58.462784627846275,-51.30686329240591],[-58.44838448384483,-51.31530617875532],[-58.40518405184051,-51.323749065104735],[-58.387183871838715,-51.33388052872403],[-58.34398343983439,-51.367652074121686],[-58.336783367833675,-51.38284926955063],[-58.33318333183331,-51.40311219678922],[-58.32958329583295,-51.41662081494829],[-58.33318333183331,-51.426752278567584],[-58.35838358383583,-51.44026089672664],[-58.37638376383764,-51.44532662853629],[-58.40158401584016,-51.448703783076056],[-58.42678426784268,-51.45039236034594],[-58.44838448384483,-51.447015205806174],[-58.45558455584555,-51.435195164917],[-58.47358473584735,-51.40142361951934],[-58.487984879848796,-51.39298073316993],[-58.50598505985059,-51.39466931043981],[-58.52038520385203,-51.406489351328986],[-58.549185491854914,-51.43350658764711],[-58.51678516785168,-51.43350658764711],[-58.50958509585095,-51.447015205806174],[-58.52038520385203,-51.490918214823125],[-58.50958509585095,-51.49767252390266],[-58.44478444784447,-51.47572101939418],[-58.42318423184231,-51.47740959666406],[-58.41958419584195,-51.487541060283355],[-58.41958419584195,-51.50104967844242],[-58.42318423184231,-51.51455829660148],[-58.42678426784268,-51.52637833749066],[-58.42318423184231,-51.54326411018949],[-58.41958419584195,-51.550018419269016],[-58.40518405184051,-51.550018419269016],[-58.40158401584016,-51.548329841999134],[-58.39438394383943,-51.53819837837984],[-58.387183871838715,-51.53650980110996],[-58.38358383583835,-51.53988695564972],[-58.37998379983799,-51.55508415107867],[-58.37638376383764,-51.56014988288831],[-58.361983619836195,-51.56521561469796],[-58.34398343983439,-51.56521561469796],[-58.33318333183331,-51.56014988288831],[-58.32238322383223,-51.550018419269016],[-58.30438304383043,-51.55677272834855],[-58.289982899829,-51.56690419196784],[-58.28278282782827,-51.58210138739679],[-58.28278282782827,-51.6006757373655],[-58.27558275582756,-51.614184355524564],[-58.261182611826115,-51.631070128223385],[-58.24678246782467,-51.64626732365233],[-58.23238232382323,-51.653021632731864],[-58.21438214382144,-51.64626732365233],[-58.22158221582215,-51.631070128223385],[-58.24678246782467,-51.60405289190526],[-58.235982359823595,-51.592232851016085],[-58.21438214382144,-51.59561000555585],[-58.17118171181711,-51.610807200984794],[-58.17838178381784,-51.58885569647632],[-58.20358203582036,-51.57872423285703],[-58.22878228782288,-51.571969923777495],[-58.24318243182431,-51.56014988288831],[-58.235982359823595,-51.553395573808785],[-58.22158221582215,-51.54664126472925],[-58.210782107821075,-51.53819837837984],[-58.21798217982179,-51.52637833749066],[-58.22878228782288,-51.52131260568101],[-58.261182611826115,-51.529755492030425],[-58.27558275582756,-51.529755492030425],[-58.286382863828635,-51.52131260568101],[-58.286382863828635,-51.5128697193316],[-58.286382863828635,-51.50442683298218],[-58.289982899829,-51.49429536936289],[-58.29358293582935,-51.489229637553244],[-58.30078300783008,-51.48247532847371],[-58.30798307983079,-51.48247532847371],[-58.311583115831155,-51.490918214823125],[-58.31518315183152,-51.50104967844242],[-58.3259832598326,-51.506115410252065],[-58.336783367833675,-51.50780398752195],[-58.34758347583475,-51.50780398752195],[-58.35838358383583,-51.50442683298218],[-58.35478354783547,-51.49598394663277],[-58.336783367833675,-51.48078675120383],[-58.289982899829,-51.423375124027814],[-58.27918279182792,-51.41324366040852],[-58.26838268382683,-51.409866505868756],[-58.23958239582396,-51.39635788770969],[-58.22878228782288,-51.39298073316993],[-58.01638016380163,-51.38284926955063],[-57.96237962379624,-51.37102922866145],[-57.933579335793354,-51.37271780593134],[-57.90477904779047,-51.3760949604711],[-57.89397893978939,-51.38284926955063],[-57.883178831788314,-51.39298073316993],[-57.86877868778687,-51.43350658764711],[-57.86157861578616,-51.44026089672664],[-57.85077850778508,-51.44532662853629],[-57.81837818378183,-51.47740959666406],[-57.807578075780754,-51.48416390574359],[-57.796777967779676,-51.489229637553244],[-57.76797767977679,-51.49429536936289],[-57.77517775177752,-51.50442683298218],[-57.796777967779676,-51.5128697193316],[-57.80397803978039,-51.52300118295089],[-57.77877778777787,-51.52300118295089],[-57.76797767977679,-51.531444069300306],[-57.77877778777787,-51.54326411018949],[-57.80397803978039,-51.550018419269016],[-57.92637926379264,-51.53819837837984],[-58.01278012780128,-51.50780398752195],[-58.03078030780307,-51.50442683298218],[-58.04158041580415,-51.5128697193316],[-58.02718027180272,-51.53650980110996],[-58.08118081180811,-51.52300118295089],[-58.14598145981459,-51.54326411018949],[-58.1279812798128,-51.5618384601582],[-58.09558095580955,-51.57703565558714],[-58.05598055980559,-51.58716711920644],[-58.02718027180272,-51.590544273746204],[-57.96957969579695,-51.58210138739679],[-57.94437944379443,-51.592232851016085],[-57.85077850778508,-51.59898716009562],[-57.81117811178112,-51.60574146917515],[-57.78237782377823,-51.61925008733421],[-57.76797767977679,-51.64289016911257],[-57.7859778597786,-51.654710210001745],[-57.82917829178291,-51.66484167362104],[-57.897578975789756,-51.673284559970455],[-57.897578975789756,-51.68003886904999],[-57.83997839978399,-51.693547487209045],[-57.81477814778147,-51.693547487209045]]],[[[-74.31014310143101,-50.834061656838756],[-74.32094320943209,-50.84588169772793],[-74.34974349743497,-50.84250454318817],[-74.37494374943749,-50.82730734775922],[-74.38574385743857,-50.80704442052063],[-74.39654396543965,-50.791847225091686],[-74.4181441814418,-50.77665002966274],[-74.42534425344253,-50.7614528342338],[-74.40014400144001,-50.747944216074735],[-74.43254432544325,-50.74287848426509],[-74.48294482944829,-50.7411899069952],[-74.51534515345153,-50.73105844337591],[-74.50454504545046,-50.70066405251802],[-74.53694536945369,-50.69222116616861],[-74.5441454414544,-50.690532588898726],[-74.54774547745477,-50.68208970254931],[-74.56934569345692,-50.65507246623119],[-74.58014580145802,-50.63312096172271],[-74.56934569345692,-50.61961234356365],[-74.52974529745298,-50.604415148134706],[-74.52614526145261,-50.59934941632506],[-74.52254522545225,-50.58921795270576],[-74.51894518945188,-50.58077506635635],[-74.51174511745117,-50.57739791181658],[-74.4649446494465,-50.57064360273705],[-74.46134461344613,-50.565577870927406],[-74.46854468544684,-50.54362636641893],[-74.46854468544684,-50.53518348006951],[-74.46134461344613,-50.53011774825987],[-74.44694446944469,-50.52842917098999],[-74.43254432544325,-50.526740593720106],[-74.42174421744217,-50.52842917098999],[-74.43254432544325,-50.519986284640574],[-74.44334443344432,-50.51492055283092],[-74.45774457744577,-50.51492055283092],[-74.46854468544684,-50.521674861910455],[-74.48654486544865,-50.51323197556104],[-74.50094500945009,-50.50985482102128],[-74.56214562145621,-50.50647766648151],[-74.58014580145802,-50.501411934671864],[-74.59454594545944,-50.49128047105257],[-74.60534605346054,-50.47439469835374],[-74.61974619746196,-50.479460430163385],[-74.64134641346413,-50.48114900743327],[-74.65934659346593,-50.48114900743327],[-74.67374673746737,-50.47439469835374],[-74.65214652146521,-50.46595181200433],[-74.60894608946089,-50.438934575686204],[-74.59454594545944,-50.43218026660667],[-74.56934569345692,-50.42880311206691],[-74.55134551345513,-50.42373738025726],[-74.53694536945369,-50.42373738025726],[-74.51534515345153,-50.438934575686204],[-74.5081450814508,-50.4490660393055],[-74.50454504545046,-50.459197502924795],[-74.49734497344973,-50.46764038927421],[-74.49014490144901,-50.47439469835374],[-74.47574475744757,-50.47608327562362],[-74.43254432544325,-50.47439469835374],[-74.41094410944109,-50.46764038927421],[-74.39654396543965,-50.45750892565491],[-74.3821438214382,-50.45582034838503],[-74.36414364143641,-50.47439469835374],[-74.35694356943569,-50.49128047105257],[-74.34614346143461,-50.51154339829116],[-74.33174331743317,-50.57739791181658],[-74.31734317343174,-50.59259510724553],[-74.28494284942849,-50.61116945721424],[-74.27054270542705,-50.624678075373296],[-74.23814238142381,-50.67702397073966],[-74.24894248942489,-50.68040112527943],[-74.34614346143461,-50.666892507120366],[-74.38574385743857,-50.65169531169142],[-74.40734407344073,-50.646629579881775],[-74.42534425344253,-50.65338388896131],[-74.40374403744038,-50.6635153525806],[-74.34254342543426,-50.67195823893002],[-74.31014310143101,-50.688844011628845],[-74.29934299342993,-50.69222116616861],[-74.28854288542885,-50.69728689797826],[-74.28494284942849,-50.71079551613732],[-74.27774277742778,-50.72092697975661],[-74.2669426694267,-50.72092697975661],[-74.24174241742418,-50.71417267067708],[-74.22374223742237,-50.72092697975661],[-74.20214202142022,-50.73950132972532],[-74.18774187741877,-50.76314141150368],[-74.18054180541804,-50.78171576147239],[-74.18054180541804,-50.808732997790514],[-74.18774187741877,-50.832373079568875],[-74.19854198541985,-50.847570274997814],[-74.23814238142381,-50.84081596591828],[-74.24174241742418,-50.80535584325075],[-74.2561425614256,-50.790158647821805],[-74.27054270542705,-50.786781493282035],[-74.27774277742778,-50.790158647821805],[-74.28494284942849,-50.79353580236157],[-74.31374313743137,-50.8002901114411],[-74.31734317343174,-50.810421575060396],[-74.31014310143101,-50.834061656838756]]],[[[-75.55935559355594,-49.246799023149016],[-75.56655566555665,-49.245110445879135],[-75.5881558815588,-49.24173329133937],[-75.6349563495635,-49.22822467318031],[-75.65295652956529,-49.21978178683089],[-75.66015660156602,-49.206273168671835],[-75.64935649356494,-49.20458459140195],[-75.63855638556385,-49.20458459140195],[-75.62775627756277,-49.20796174594172],[-75.62055620556205,-49.21302747775136],[-75.63135631356313,-49.184321664163356],[-75.60615606156061,-49.1505501187657],[-75.57015570155701,-49.12353288244758],[-75.53055530555305,-49.11002426428852],[-75.5521555215552,-49.145484386956056],[-75.53415534155342,-49.138730077876524],[-75.50535505355053,-49.13197576879699],[-75.49815498154982,-49.125221459717466],[-75.50535505355053,-49.12859861425723],[-75.5089550895509,-49.12859861425723],[-75.52335523355234,-49.125221459717466],[-75.48375483754837,-49.099892800669224],[-75.4621546215462,-49.09144991431981],[-75.44775447754478,-49.096515646129454],[-75.44055440554405,-49.08469560524028],[-75.42255422554226,-49.07118698708122],[-75.41535415354153,-49.062744100731805],[-75.43335433354333,-49.06105552346192],[-75.44415444154441,-49.05598979165227],[-75.44055440554405,-49.04585832803298],[-75.4261542615426,-49.02897255533415],[-75.40815408154081,-49.00702105082567],[-75.39375393753937,-48.998578164476264],[-75.35055350553505,-48.9850695463172],[-75.33615336153362,-48.99013527812685],[-75.33255332553325,-49.01039820536544],[-75.33975339753397,-49.0239068235245],[-75.36495364953649,-49.040792596223326],[-75.37215372153722,-49.05598979165227],[-75.3469534695347,-49.04754690530286],[-75.33615336153362,-49.04585832803298],[-75.32535325353253,-49.04923548257274],[-75.31455314553145,-49.05598979165227],[-75.30375303753037,-49.06443267800169],[-75.28575285752858,-49.08638418251016],[-75.29295292952929,-49.10664710974876],[-75.31455314553145,-49.13366434606688],[-75.33975339753397,-49.14717296422594],[-75.3469534695347,-49.125221459717466],[-75.39015390153901,-49.17925593235371],[-75.40455404554045,-49.18601024143324],[-75.41895418954189,-49.18094450962359],[-75.42255422554226,-49.16743589146453],[-75.41175411754118,-49.1505501187657],[-75.40095400954009,-49.13197576879699],[-75.41535415354153,-49.13535292333676],[-75.42255422554226,-49.145484386956056],[-75.4261542615426,-49.158993005115114],[-75.43335433354333,-49.17250162327418],[-75.44055440554405,-49.17587877781394],[-75.45495454954549,-49.17587877781394],[-75.4621546215462,-49.17925593235371],[-75.46935469354693,-49.206273168671835],[-75.4729547295473,-49.2096503232116],[-75.47655476554765,-49.2096503232116],[-75.48015480154801,-49.21302747775136],[-75.48375483754837,-49.21978178683089],[-75.48375483754837,-49.224847518640544],[-75.48015480154801,-49.22822467318031],[-75.47655476554765,-49.23329040498996],[-75.47655476554765,-49.240044714069484],[-75.48375483754837,-49.25355333222855],[-75.49455494554945,-49.263684795847844],[-75.5089550895509,-49.268750527657495],[-75.52335523355234,-49.26706195038761],[-75.53415534155342,-49.263684795847844],[-75.54855548555486,-49.25186475495867],[-75.55935559355594,-49.246799023149016]]],[[[-74.41454414544145,-47.93815163898993],[-74.46134461344613,-47.93646306172004],[-74.48294482944829,-47.929708752640515],[-74.50454504545046,-47.91788871175133],[-74.47574475744757,-47.89593720724286],[-74.42174421744217,-47.86047708457532],[-74.39654396543965,-47.84021415733673],[-74.36414364143641,-47.830082693717436],[-74.32454324543245,-47.845279889146376],[-74.28134281342813,-47.86554281638497],[-74.24894248942489,-47.87736285727415],[-74.25974259742597,-47.86047708457532],[-74.28494284942849,-47.845279889146376],[-74.33174331743317,-47.82163980736802],[-74.28854288542885,-47.80813118920896],[-74.24534245342453,-47.806442611939076],[-74.07614076140761,-47.848657043686146],[-73.99693996939969,-47.85372277549579],[-73.97533975339753,-47.86047708457532],[-73.93213932139321,-47.88074001181391],[-73.90693906939069,-47.88411716635368],[-73.88533885338853,-47.88074001181391],[-73.86013860138601,-47.867231393654855],[-73.83853838538386,-47.85709993003556],[-73.81693816938169,-47.867231393654855],[-73.80973809738097,-47.887494320893445],[-73.80973809738097,-47.911134402671806],[-73.83133831338313,-47.93815163898993],[-73.82773827738276,-47.93646306172004],[-73.82773827738276,-47.94152879352969],[-73.82773827738276,-47.94659452533934],[-73.83133831338313,-47.95334883441887],[-73.83853838538386,-47.95334883441887],[-73.86013860138601,-47.95334883441887],[-73.91053910539105,-47.95672598895864],[-73.92133921339213,-47.963480298038164],[-73.92853928539284,-47.95841456622852],[-73.93573935739357,-47.93815163898993],[-73.93213932139321,-47.93984021625981],[-73.9249392493925,-47.93477448445016],[-73.92133921339213,-47.926331598100745],[-73.92133921339213,-47.9212658662911],[-73.9249392493925,-47.91620013448145],[-73.93573935739357,-47.91788871175133],[-73.95013950139501,-47.924643020830864],[-73.96453964539646,-47.926331598100745],[-73.99693996939969,-47.94659452533934],[-74.02574025740257,-47.95334883441887],[-74.11574115741158,-47.94659452533934],[-74.130141301413,-47.94659452533934],[-74.16614166141662,-47.9601031434984],[-74.31734317343174,-47.98205464800687],[-74.34614346143461,-47.97192318438758],[-74.36054360543605,-47.96179172076828],[-74.37494374943749,-47.949971679879106],[-74.38934389343893,-47.94152879352969],[-74.41454414544145,-47.93815163898993]]],[[[-74.07254072540725,-45.69065529277606],[-74.10134101341013,-45.641686551949455],[-74.10854108541085,-45.61466931563133],[-74.11214112141121,-45.6079150065518],[-74.11574115741158,-45.599472120202385],[-74.11214112141121,-45.58765207931321],[-74.08334083340833,-45.57076630661438],[-74.07974079740796,-45.56738915207462],[-74.06894068940689,-45.558946265725204],[-74.0509405094051,-45.54543764756614],[-74.02934029340292,-45.53361760667696],[-74.01134011340113,-45.536994761216725],[-74.00054000540005,-45.54374907029626],[-73.97893978939788,-45.54881480210591],[-73.9681396813968,-45.55388053391555],[-73.94653946539465,-45.57245488388426],[-73.93573935739357,-45.57414346115415],[-73.91053910539105,-45.59102923385297],[-73.89973899738997,-45.6281779337904],[-73.90693906939069,-45.67039236553746],[-73.92133921339213,-45.69740960185558],[-73.95373953739536,-45.71429537455441],[-74.00054000540005,-45.72104968363394],[-74.04374043740437,-45.71598395182429],[-74.07254072540725,-45.69065529277606]]],[[[-74.50454504545046,-45.73286972452312],[-74.4649446494465,-45.69403244731582],[-74.45774457744577,-45.67714667461699],[-74.45774457744577,-45.65181801556875],[-74.44694446944469,-45.643375129219336],[-74.45774457744577,-45.63155508833016],[-74.47934479344794,-45.621423624710864],[-74.49374493744936,-45.61298073836145],[-74.49014490144901,-45.60622642928192],[-74.45774457744577,-45.59440638839274],[-74.44694446944469,-45.58765207931321],[-74.4649446494465,-45.57245488388426],[-74.46854468544684,-45.54712622483603],[-74.4649446494465,-45.518420411248016],[-74.45054450544505,-45.49478032946966],[-74.42174421744217,-45.454254474992474],[-74.40374403744038,-45.44750016591295],[-74.37134371343713,-45.45087732045271],[-74.31734317343174,-45.46776309315154],[-74.29214292142922,-45.479583134040716],[-74.27414274142741,-45.49478032946966],[-74.2561425614256,-45.51504325670825],[-74.24894248942489,-45.535306183946844],[-74.25254252542526,-45.55388053391555],[-74.27774277742778,-45.56738915207462],[-74.26334263342633,-45.57076630661438],[-74.24174241742418,-45.57414346115415],[-74.22374223742237,-45.582586347503565],[-74.22014220142201,-45.601160697472274],[-74.23094230942309,-45.61466931563133],[-74.24894248942489,-45.61973504744098],[-74.28854288542885,-45.623112201980746],[-74.27054270542705,-45.63662082013981],[-74.24894248942489,-45.63493224286992],[-74.22734227342274,-45.63155508833016],[-74.20934209342093,-45.63493224286992],[-74.22014220142201,-45.64844086102899],[-74.23094230942309,-45.663638056457934],[-74.24174241742418,-45.67545809734711],[-74.26334263342633,-45.683900983696525],[-74.33534335343353,-45.68727813823629],[-74.36054360543605,-45.69740960185558],[-74.3389433894339,-45.69740960185558],[-74.32454324543245,-45.704163910935115],[-74.32454324543245,-45.71429537455441],[-74.33174331743317,-45.724426838173706],[-74.34254342543426,-45.73286972452312],[-74.40734407344073,-45.766641269920775],[-74.43974439744397,-45.77677273354007],[-74.47214472144721,-45.77508415627019],[-74.49374493744936,-45.748066919952066],[-74.50454504545046,-45.73286972452312]]],[[[-73.82413824138241,-45.266822398035494],[-73.80973809738097,-45.27864243892468],[-73.79173791737917,-45.30228252070303],[-73.78093780937809,-45.32423402521151],[-73.78453784537845,-45.334365488830805],[-73.81333813338134,-45.34618552971998],[-73.82773827738276,-45.34787410698986],[-73.97893978939788,-45.34956268425975],[-73.99693996939969,-45.352939838799514],[-74.01134011340113,-45.352939838799514],[-74.07254072540725,-45.334365488830805],[-74.11934119341193,-45.32761117975127],[-74.130141301413,-45.32423402521151],[-74.1409414094141,-45.31241398432233],[-74.15174151741518,-45.292151057083736],[-74.16254162541625,-45.270199552575264],[-74.16614166141662,-45.253313779876436],[-74.15894158941589,-45.23473942990773],[-74.13734137341373,-45.227985120828194],[-74.11574115741158,-45.22460796628843],[-74.06894068940689,-45.204345039049834],[-74.05454054540544,-45.214476502669136],[-74.02934029340292,-45.253313779876436],[-73.98613986139861,-45.270199552575264],[-73.87453874538745,-45.26006808895597],[-73.82413824138241,-45.266822398035494]]],[[[-74.27054270542705,-44.944304139487905],[-74.25254252542526,-44.93248409859872],[-74.2129421294213,-44.88520393504201],[-74.18774187741877,-44.86831816234318],[-74.16254162541625,-44.86494100780342],[-74.13734137341373,-44.86831816234318],[-74.04374043740437,-44.89364682139142],[-73.98613986139861,-44.897023975931184],[-73.9681396813968,-44.903778285010716],[-73.93933939339394,-44.92910694405896],[-73.91773917739177,-44.944304139487905],[-73.91413914139142,-44.95105844856743],[-73.91773917739177,-44.95612418037708],[-73.93933939339394,-44.96963279853614],[-73.94293942939429,-44.97132137580603],[-73.95373953739536,-44.97300995307591],[-73.97533975339753,-44.983141416695204],[-73.98613986139861,-44.984829993965086],[-73.99693996939969,-44.983141416695204],[-74.02574025740257,-44.97469853034579],[-74.04374043740437,-44.96963279853614],[-74.05454054540544,-44.96625564399638],[-74.06534065340654,-44.964567066726495],[-74.06174061740617,-44.97300995307591],[-74.05454054540544,-44.979764262155435],[-74.03654036540365,-44.99158430304462],[-74.06534065340654,-44.99833861212415],[-74.18774187741877,-44.99158430304462],[-74.21654216542166,-45.001715766663914],[-74.24894248942489,-45.01691296209286],[-74.28134281342813,-45.027044425712155],[-74.31014310143101,-45.02029011663262],[-74.33534335343353,-45.01860153936274],[-74.35694356943569,-45.01184723028321],[-74.36414364143641,-44.99665003485426],[-74.34974349743497,-44.97469853034579],[-74.33174331743317,-44.964567066726495],[-74.27054270542705,-44.944304139487905]]],[[[178.71118711187114,-17.991233757620265],[178.70758707587078,-17.99967664396968],[178.70038700387005,-18.013185262128744],[178.69678696786968,-18.01993957120827],[178.69678696786968,-18.033448189367334],[178.69678696786968,-18.043579652986637],[178.69318693186932,-18.057088271145687],[178.6859868598686,-18.070596889304753],[178.6715867158672,-18.080728352924055],[178.66438664386646,-18.08748266200358],[178.61398613986142,-18.112811321051822],[178.58878588785888,-18.136451402830176],[178.58878588785888,-18.116188475591585],[178.55998559985602,-18.126319939210887],[178.54918549185493,-18.12969709375065],[178.55998559985602,-18.112811321051822],[178.55998559985602,-18.10943416651206],[178.55638556385566,-18.099302702892757],[178.54918549185493,-18.097614125622883],[178.54558545585456,-18.097614125622883],[178.53838538385384,-18.090859816543343],[178.52758527585274,-18.090859816543343],[178.4987849878499,-18.10436843470241],[178.48438484384843,-18.10943416651206],[178.4879848798488,-18.12969709375065],[178.46998469984703,-18.141517134639827],[178.44838448384485,-18.148271443719352],[178.43758437584376,-18.146582866449478],[178.43758437584376,-18.131385671020524],[178.44118441184412,-18.126319939210887],[178.43758437584376,-18.12294278467111],[178.42318423184236,-18.10774558924217],[178.41238412384126,-18.10267985743252],[178.40158401584017,-18.100991280162646],[178.39078390783908,-18.100991280162646],[178.39438394383944,-18.106057011972297],[178.39438394383944,-18.10943416651206],[178.39078390783908,-18.117877052861473],[178.38718387183872,-18.124631361941],[178.379983799838,-18.12800851648076],[178.36918369183695,-18.12969709375065],[178.36918369183695,-18.126319939210887],[178.3655836558366,-18.121254207401236],[178.36198361983622,-18.117877052861473],[178.3547835478355,-18.116188475591585],[178.34758347583477,-18.116188475591585],[178.33678336783368,-18.121254207401236],[178.32958329583295,-18.12294278467111],[178.32238322383228,-18.126319939210887],[178.31518315183155,-18.133074248290413],[178.30798307983082,-18.13982855736994],[178.29718297182973,-18.143205711909715],[178.28278282782827,-18.14489428917959],[178.27558275582754,-18.146582866449478],[178.27198271982724,-18.14996002098924],[178.2647826478265,-18.156714330068766],[178.26118261182614,-18.163468639148306],[178.25758257582578,-18.176977257307357],[178.25398253982542,-18.183731566386896],[178.24318243182432,-18.188797298196548],[178.2215822158222,-18.195551607276073],[178.21438214382147,-18.200617339085724],[178.18558185581855,-18.23438888448338],[178.1675816758168,-18.24789750264243],[178.14958149581497,-18.252963234452082],[178.14238142381424,-18.252963234452082],[178.13518135181351,-18.25971754353162],[178.1135811358114,-18.239454616293017],[178.0379803798038,-18.26478327534126],[178.00558005580058,-18.25971754353162],[177.99117991179912,-18.25971754353162],[177.9839798397984,-18.258028966261733],[177.97677976779767,-18.252963234452082],[177.97317973179736,-18.258028966261733],[177.9587795877959,-18.266471852611147],[177.94437944379445,-18.268160429881036],[177.93357933579335,-18.263094698071384],[177.92277922779232,-18.261406120801496],[177.9047790477905,-18.26984900715091],[177.8939789397894,-18.273226161690673],[177.89037890378904,-18.256340388991845],[177.88677886778868,-18.251274657182208],[177.87957879578795,-18.252963234452082],[177.86877868778691,-18.258028966261733],[177.86517865178655,-18.263094698071384],[177.85797857978582,-18.266471852611147],[177.85437854378546,-18.263094698071384],[177.83277832778327,-18.246208925372557],[177.83277832778327,-18.239454616293017],[177.82557825578255,-18.23438888448338],[177.78237782377823,-18.222568843594203],[177.69957699576997,-18.200617339085724],[177.67437674376743,-18.19724018454596],[177.64557645576457,-18.190485875466422],[177.59157591575917,-18.16684579368807],[177.56637566375667,-18.17022294822783],[177.53757537575376,-18.156714330068766],[177.5231752317523,-18.155025752798892],[177.47277472774726,-18.158402907338655],[177.4655746557466,-18.156714330068766],[177.4547745477455,-18.15164859825913],[177.44757447574477,-18.146582866449478],[177.4439744397444,-18.13982855736994],[177.43677436774368,-18.136451402830176],[177.36837368373688,-18.119565630131348],[177.3359733597336,-18.106057011972297],[177.31437314373147,-18.073974043844515],[177.30717307173074,-18.080728352924055],[177.30357303573038,-18.070596889304753],[177.29997299973002,-18.050333962066162],[177.29997299973002,-18.04020249844686],[177.29637296372965,-18.033448189367334],[177.2927729277293,-18.03007103482757],[177.28917289172892,-18.021628148478158],[177.28557285572856,-18.00980810758898],[177.2819728197282,-18.00305379850944],[177.26397263972643,-17.994610912160027],[177.26397263972643,-17.987856603080502],[177.2675726757268,-17.979413716731088],[177.26037260372607,-17.970970830381674],[177.2567725677257,-17.96252794403226],[177.25317253172534,-17.952396480412972],[177.25317253172534,-17.943953594063558],[177.2675726757268,-17.92706782136473],[177.2711727117271,-17.916936357745428],[177.2711727117271,-17.903427739586363],[177.2675726757268,-17.896673430506837],[177.26037260372607,-17.88991912142731],[177.26037260372607,-17.87978765780801],[177.26397263972643,-17.85952473056942],[177.2819728197282,-17.851081844220005],[177.32877328773287,-17.849393266950116],[177.35397353973542,-17.839261803330828],[177.36117361173615,-17.834196071521177],[177.37197371973718,-17.824064607901875],[177.37197371973718,-17.81562172155246],[177.37197371973718,-17.807178835203047],[177.36837368373688,-17.79704737158376],[177.36837368373688,-17.763275826186103],[177.37197371973718,-17.749767208027038],[177.37557375573755,-17.748078630757163],[177.3791737917379,-17.749767208027038],[177.41517415174155,-17.75989867164634],[177.42237422374222,-17.75989867164634],[177.43317433174332,-17.749767208027038],[177.43677436774368,-17.743012898947512],[177.43317433174332,-17.736258589867973],[177.42957429574295,-17.727815703518573],[177.42957429574295,-17.71768423989927],[177.4259742597426,-17.69742131266068],[177.42237422374222,-17.687289849041377],[177.42237422374222,-17.678846962691964],[177.4115741157412,-17.673781230882327],[177.40437404374046,-17.67040407634255],[177.39717397173973,-17.663649767263024],[177.389973899739,-17.64000968548467],[177.4007740077401,-17.62987822186537],[177.41877418774192,-17.623123912785843],[177.42957429574295,-17.604549562817127],[177.43317433174332,-17.5977952537376],[177.4547745477455,-17.59272952192795],[177.4655746557466,-17.5876637901183],[177.46917469174696,-17.575843749229122],[177.4655746557466,-17.56571228560982],[177.46917469174696,-17.55558082199053],[177.479974799748,-17.547137935641118],[177.49077490774908,-17.558957976530294],[177.4979749797498,-17.55558082199053],[177.50517505175054,-17.543760781101355],[177.4979749797498,-17.53194074021218],[177.50517505175054,-17.518432122053113],[177.51597515975163,-17.504923503894048],[177.5231752317523,-17.501546349354285],[177.5339753397534,-17.511677812973574],[177.54117541175412,-17.511677812973574],[177.58077580775807,-17.477906267575932],[177.62037620376208,-17.454266185797565],[177.62397623976238,-17.4508890312578],[177.62757627576275,-17.449200453987928],[177.62757627576275,-17.444134722178276],[177.6311763117631,-17.439068990368625],[177.63837638376384,-17.437380413098737],[177.64557645576457,-17.437380413098737],[177.6527765277653,-17.440757567638514],[177.65637656376566,-17.442446144908388],[177.6527765277653,-17.444134722178276],[177.64557645576457,-17.45257760852769],[177.64917649176493,-17.469463381226518],[177.65637656376566,-17.48803773119522],[177.6635766357664,-17.498169194814523],[177.67077670776712,-17.49310346300487],[177.6635766357664,-17.479594844845806],[177.65997659976603,-17.46777480395663],[177.65997659976603,-17.455954763067453],[177.6635766357664,-17.444134722178276],[177.67077670776712,-17.439068990368625],[177.70317703177034,-17.42049464039991],[177.71037710377107,-17.417117485860146],[177.749977499775,-17.43062610401921],[177.75357753577538,-17.42556037220956],[177.75717757177574,-17.413740331320383],[177.7607776077761,-17.401920290431207],[177.76437764377647,-17.396854558621555],[177.7751777517775,-17.393477404081793],[177.77877778777787,-17.38841167227214],[177.7859778597786,-17.38503451773238],[177.80757807578078,-17.381657363192616],[177.81117811178115,-17.376591631382965],[177.8147781477815,-17.371525899573314],[177.82557825578255,-17.366460167763663],[177.8291782917829,-17.36477159049379],[177.83277832778327,-17.366460167763663],[177.83277832778327,-17.379968785922728],[177.83277832778327,-17.39010024954203],[177.83277832778327,-17.40023171316132],[177.82557825578255,-17.408674599510732],[177.81837818378187,-17.417117485860146],[177.83637836378364,-17.42049464039991],[177.8507785077851,-17.413740331320383],[177.8615786157862,-17.40023171316132],[177.87597875978759,-17.39010024954203],[177.89757897578977,-17.40360886770108],[177.92637926379263,-17.40529744497097],[177.95517955179554,-17.401920290431207],[177.97677976779767,-17.396854558621555],[178.00558005580058,-17.38334594046249],[178.01998019980203,-17.374903054113076],[178.03078030780307,-17.36477159049379],[178.04158041580416,-17.356328704144374],[178.0667806678067,-17.356328704144374],[178.0811808118081,-17.34788581779496],[178.1135811358114,-17.35295154960461],[178.14958149581497,-17.346197240525072],[178.1819818198182,-17.329311467826244],[178.18918189181892,-17.30060565423824],[178.2107821078211,-17.30735996331778],[178.23958239582396,-17.32086858147683],[178.26118261182614,-17.336065776905784],[178.27198271982724,-17.351262972334723],[178.27558275582754,-17.3630830132239],[178.28638286382863,-17.38334594046249],[178.28638286382863,-17.396854558621555],[178.2791827918279,-17.406986022240858],[178.25398253982542,-17.4323146812891],[178.2467824678247,-17.444134722178276],[178.25758257582578,-17.449200453987928],[178.25758257582578,-17.457643340337327],[178.25398253982542,-17.46608622668674],[178.2467824678247,-17.471151958496392],[178.25758257582578,-17.469463381226518],[178.28638286382863,-17.437380413098737],[178.30438304383046,-17.43062610401921],[178.32598325983258,-17.4323146812891],[178.34758347583477,-17.440757567638514],[178.3655836558366,-17.45257760852769],[178.37638376383762,-17.471151958496392],[178.37638376383762,-17.479594844845806],[178.37278372783732,-17.491414885734983],[178.37638376383762,-17.498169194814523],[178.379983799838,-17.499857772084397],[178.3979839798398,-17.51505496751335],[178.40158401584017,-17.518432122053113],[178.40518405184054,-17.521809276592876],[178.44478444784448,-17.55051509018088],[178.45558455584558,-17.55051509018088],[178.46638466384667,-17.55051509018088],[178.4771847718477,-17.553892244720643],[178.49518495184952,-17.56571228560982],[178.52398523985244,-17.601172408277364],[178.5311853118531,-17.60792671735689],[178.5527855278553,-17.611303871896666],[178.57438574385748,-17.618058180976192],[178.59238592385924,-17.631566799135257],[178.60318603186033,-17.65014114910396],[178.60318603186033,-17.673781230882327],[178.59238592385924,-17.694044158120917],[178.58158581585815,-17.709241353549857],[178.57438574385748,-17.727815703518573],[178.5707857078571,-17.73794716713786],[178.5707857078571,-17.746390053487275],[178.56718567185675,-17.75483293983669],[178.5707857078571,-17.763275826186103],[178.57798577985778,-17.77003013526563],[178.5959859598596,-17.78185017615482],[178.60318603186033,-17.786915907964456],[178.60318603186033,-17.798735948853633],[178.59958599585997,-17.808867412472935],[178.59958599585997,-17.818998876092238],[178.6067860678607,-17.82744176244165],[178.62118621186215,-17.824064607901875],[178.62838628386282,-17.82744176244165],[178.62478624786252,-17.834196071521177],[178.6175861758618,-17.840950380600702],[178.62838628386282,-17.846016112410354],[178.63558635586355,-17.85277042148988],[178.63558635586355,-17.86290188510918],[178.62838628386282,-17.876410503268247],[178.62478624786252,-17.873033348728484],[178.6175861758618,-17.869656194188707],[178.6175861758618,-17.873033348728484],[178.62118621186215,-17.88991912142731],[178.59238592385924,-17.89836200777671],[178.5959859598596,-17.92537924409484],[178.61398613986142,-17.95746221222261],[178.62478624786252,-17.970970830381674],[178.64638646386464,-17.972659407651562],[178.65358653586537,-17.9777251394612],[178.6607866078661,-17.986168025810613],[178.6715867158672,-17.997988066699804],[178.67518675186756,-18.00474237577933],[178.67518675186756,-18.008119530319092],[178.67878678786786,-18.011496684858855],[178.6859868598686,-18.013185262128744],[178.69318693186932,-18.00980810758898],[178.70038700387005,-18.00305379850944],[178.7039870398704,-17.996299489429916],[178.7039870398704,-17.991233757620265],[178.71118711187114,-17.991233757620265]]],[[[-148.91728917289174,-77.38525064847431],[-148.93528935289353,-77.39369353482373],[-148.96048960489605,-77.39707068936349],[-149.39249392493926,-77.38187349393453],[-149.57969579695796,-77.33965906218748],[-149.66969669696698,-77.30419893951994],[-149.6408964089641,-77.29406747590065],[-149.62649626496264,-77.29575605317052],[-149.58329583295833,-77.30419893951994],[-149.54009540095402,-77.30419893951994],[-149.52929529295292,-77.3075760940597],[-149.54729547295472,-77.29744463044041],[-149.59769597695976,-77.28224743501146],[-149.49329493294934,-77.27380454866204],[-149.3348933489335,-77.28393601228134],[-149.2520925209252,-77.29913320771028],[-149.23769237692377,-77.30588751678982],[-149.22689226892268,-77.31601898040911],[-149.22329223292232,-77.31939613494887],[-149.22689226892268,-77.32783902129829],[-149.22689226892268,-77.33121617583807],[-149.21609216092162,-77.33965906218748],[-148.9280892808928,-77.37511918485501],[-148.91728917289174,-77.38525064847431]]],[[[11.464314643146452,64.5886376259931],[11.471514715147151,64.5700632760244],[11.482314823148243,64.56330896694487],[11.47871478714788,64.55655465786535],[11.464314643146452,64.5514889260557],[11.439114391143931,64.5498003487858],[11.435514355143567,64.54811177151592],[11.439114391143931,64.54304603970627],[11.431914319143203,64.54304603970627],[11.413914139141411,64.54642319424605],[11.385113851138527,64.55317750332557],[11.352713527135279,64.56499754421475],[11.345513455134551,64.57344043056418],[11.349113491134915,64.58188331691358],[11.352713527135279,64.58694904872323],[11.367113671136707,64.59032620326298],[11.367113671136707,64.60383482142205],[11.359913599136007,64.62747490320041],[11.367113671136707,64.63422921227993],[11.392313923139227,64.61058913050158],[11.388713887138891,64.62072059412088],[11.392313923139227,64.62578632593053],[11.40311403114032,64.62240917139076],[11.442714427144267,64.59539193507263],[11.45351453514536,64.59370335780275],[11.464314643146452,64.5886376259931]]],[[[11.349113491134915,64.65111498497876],[11.345513455134551,64.63929494408958],[11.341913419134187,64.62916348047028],[11.341913419134187,64.62240917139076],[11.338313383133851,64.62072059412088],[11.334713347133487,64.6173434395811],[11.327513275132759,64.61396628504136],[11.327513275132759,64.6089005532317],[11.32031320313203,64.60383482142205],[11.313113131131331,64.60045766688228],[11.298712987129875,64.60383482142205],[11.280712807128083,64.61227770777145],[11.266312663126627,64.62240917139076],[11.255512555125563,64.63422921227993],[11.24471244712447,64.63929494408958],[11.23751237512377,64.63929494408958],[11.230312303123043,64.63591778954984],[11.230312303123043,64.63422921227993],[11.21951219512195,64.63422921227993],[11.172711727117274,64.63760636681971],[11.16911169111691,64.64436067589924],[11.183511835118367,64.65280356224864],[11.179911799118003,64.65786929405829],[11.16911169111691,64.65955787132819],[11.172711727117274,64.66293502586794],[11.172711727117274,64.66968933494746],[11.18711187111873,64.67306648948724],[11.302313023130239,64.69164083945594],[11.316713167131667,64.68995226218607],[11.316713167131667,64.68150937583667],[11.341913419134187,64.67813222129689],[11.356313563135643,64.66800075767759],[11.349113491134915,64.65111498497876]]],[[[-81.64341643416434,69.41459146331786],[-81.54981549815498,69.41628004058774],[-81.50661506615066,69.40614857696843],[-81.49941499414994,69.37237703157078],[-81.4850148501485,69.34704837252255],[-81.56781567815678,69.34367121798277],[-81.67221672216722,69.35380268160208],[-81.7010170101701,69.36899987703103],[-81.69021690216901,69.38419707245998],[-81.78021780217802,69.38757422699973],[-81.76581765817657,69.36562272249125],[-81.83061830618306,69.34367121798277],[-81.8810188101881,69.36393414522138],[-81.90261902619025,69.39432853607926],[-81.89541895418954,69.41628004058774],[-81.83781837818378,69.43316581328656],[-81.71181711817118,69.42810008147691],[-81.64341643416434,69.41459146331786]]],[[[-82.50742507425073,69.7911441945017],[-82.4930249302493,69.7624383809137],[-82.55782557825577,69.74386403094499],[-82.69462694626947,69.76074980364382],[-82.8170281702817,69.7827013081523],[-82.8530285302853,69.79452134904147],[-82.84222842228422,69.80802996720053],[-82.74862748627486,69.8198500080897],[-82.64782647826478,69.82660431716923],[-82.50742507425073,69.7911441945017]]],[[[89.04869048690489,77.1415210503011],[89.13509135091351,77.12632385487214],[89.09909099090993,77.09930661855401],[89.04509045090452,77.07735511404556],[88.96948969489694,77.04020641410813],[89.01989019890198,77.01318917779],[88.98748987489876,76.98954909601164],[88.9190891908919,76.97772905512247],[88.81468814688145,76.98617194147187],[88.69948699486997,77.04020641410813],[88.66348663486633,77.08073226858531],[88.7858878588786,77.12294670033239],[89.04869048690489,77.1415210503011]]],[[[-0.005400054000546106,-0.004508678829765245],[-0.005400054000546106,0.00562278478953715],[0.005400054000546106,0.00562278478953715],[0.005400054000546106,-0.004508678829765245],[-0.005400054000546106,-0.004508678829765245]]]]}}]} diff --git a/terrain/make_tile.py b/terrain/make_tile.py new file mode 100644 index 0000000..2f7a9cb --- /dev/null +++ b/terrain/make_tile.py @@ -0,0 +1,173 @@ +""" +Handles building a contour and hillshade tile for a single Z/X/Y tile ID. + +Usage: python make_tile.py SOURCE_DEM Z X Y +""" + +import json +import os +import sys +import tempfile +import subprocess +import shutil + +# non-stdlib dependencies +import mercantile + +OUTPUT_DIR = "build" + +# buffer controls how much margin around the tile region will be added when fetching +# DEM data. a one-pixel margin is required for hillshades to avoid edge artifacts. +# this margin also affects how far the contour line vectors extend beyond the edges +# of the MVT tile. having a bit of margin here helps avoid both rendering artifacts +# and issues where line simplification causes contour lines to be disconnected at +# tile boundaries +BUFFER = 0.01 + +# controls the width/height of the hillshade tiles. also affects the size of DEM +# data that is fetched to build the tile. these could be decoupled but in practice +# it makes sense to have them be the same (there's no reason to fetch more pixels of +# DEM data, it doesn't improve the hillshade or contour line quality). +RESOLUTION = 512 + +# controls compression of hillshade JPEG images; 0-100, higher means bigger filesize +# but fewer artifacts in the images. +JPEG_QUALITY = 75 + +# controls the vertical exaggeration used for the hillshading. exaggeration is +# necessary to make mountains visible at very low zooms, because when considered +# on this large scale, Earth's surface is very flat. +# +# there's no magic reason for the formula given below, it was tweaked until the +# hillshading seemed to have relatively uniform contrast at different zoom levels. +VERTICAL_EXAGGERATION = { z: 2 ** max(0.7 * (8 - z), 1.0) for z in range(1, 13) } +# 1: 21.0, +# 2: 13.0, +# 3: 8.0, +# 4: 5.0, +# 5: 4.0, +# 6: 3.0, +# 7: 2.0, +# 8: 1.75, +# 9: 1.5, +# 10: 1.25, +# 11: 1.0, +# 12: 1.0, +# } + +# sets the contour interval for each zoom level. +# only zoom levels in this dict will have contour tiles built! if make_tile.py is +# called with a zoom level that's not in this dict, it will only build a hillshade +# tile (useful for low zooms where contours aren't needed). +CONTOUR_INTERVALS = { + # zoom level : (major, minor) contour interval + 8: (4000, 800), + 9: (2000, 400), + 10: (2000, 400), + 11: (800, 160), + 12: (800, 160), +} + +SIMPLIFICATION_TOLERANCE = 3 + +# Read CLI args +source_dem = os.path.abspath(sys.argv[1]) +z, x, y = [int(v) for v in sys.argv[2:]] + +# Compute both an exact bbox and buffered bbox for the given tile (in EPSG:3857) +bounds = mercantile.xy_bounds(x, y, z) +size = abs(bounds[2] - bounds[0]) +shift = size * BUFFER +buffered_bounds = mercantile.Bbox(bounds.left - shift, bounds.bottom - shift, bounds.right + shift, bounds.top + shift) +buffered_resolution = round(RESOLUTION * (1.0 + BUFFER)) + +def run(argv, *args, **kwargs): + """Wrapper around subprocess.run() which prints its arguments first""" + print(" ".join(argv), file=sys.stderr) + return subprocess.run(argv, *args, **kwargs) + +# Make a temporary directory in which all intermediate files are placed. +# It'll be deleted when the `with` block closes, so be sure to move final +# artifacts out first. +with tempfile.TemporaryDirectory() as tmpdir: + old_cwd = os.getcwd() + os.chdir(tmpdir) + print(tmpdir) + + ### Build the hillshade raster tile ### + + # fetch the DEM data for the tile + run([ + "gdalwarp", + "-te_srs", "EPSG:3857", "-te", *[str(v) for v in buffered_bounds], + "-ts", str(buffered_resolution), str(buffered_resolution), + "-r", "cubic", + "-overwrite", source_dem, "dem.tif" + ]) + + # apply vertical exaggeration (for hillshade only) + exaggeration = VERTICAL_EXAGGERATION[z] + run(["gdal_translate", "-scale", *[str(v) for v in [0, 1, 0, exaggeration]], "dem.tif", "dem.exaggerated.tif"]) + + # create a hillshade from the fetched data + run(["gdaldem", "hillshade", "-igor", "dem.exaggerated.tif", "hillshade.tif"]) + + # trim the margin from the hillshade tile and convert to JPEG + run([ + "gdalwarp", + "-te_srs", "EPSG:3857", "-te", *[str(v) for v in bounds], + "-ts", str(RESOLUTION), str(RESOLUTION), + "-r", "cubic", + "-co", f"JPEG_QUALITY={JPEG_QUALITY}", + "hillshade.tif", "hillshade.jpg" + ]) + + # put the hillshade tile in the output directory + os.makedirs(os.path.join(old_cwd, OUTPUT_DIR, "hillshade", str(z), str(x)), exist_ok=True) + shutil.move("hillshade.jpg", os.path.join(old_cwd, OUTPUT_DIR, "hillshade", str(z), str(x), str(y) + ".jpg")) + + ### Build the contour vector tile ### + + if z in CONTOUR_INTERVALS: + major_interval, minor_interval = CONTOUR_INTERVALS[z] + + # create a version of the DEM in WGS 84 (EPGS:4326) + # note: this needs to be real, not a VRT, because gdal_contour doesn't + # understand scale factors in VRT datasets. + run(["gdalwarp", "-t_srs", "EPSG:4326", "-r", "cubic", "dem.tif", "dem.4326.vrt"]) + + # input DEM is in meters but we need feet, so apply a scale factor + run(["gdal_translate", "-scale", *[str(v) for v in [0, 0.3048, 0, 1]], "dem.4326.vrt", "dem.4326.ft.tif"]) + + # compute the contours + run(["gdal_contour", "-a", "ele", "-i", str(minor_interval), "dem.4326.ft.tif", "contours-raw.geojson"]) + # add 'idx' bool property and filter out contours at or below sea level + res = run([ + "jq", "-c", + f"(.features[].properties |= (.idx = (fmod(.ele; {major_interval}) == 0))) | .features[] |= select(.properties.ele > 0)", + "contours-raw.geojson", + ], capture_output=True) + # jq can only write to stdout, so manually write its output to a file + with open("contours.geojson", "wb") as f: + f.write(res.stdout) + + simplification_tolerance = 1 if z == max(CONTOUR_INTERVALS.keys()) else SIMPLIFICATION_TOLERANCE + run([ + "tippecanoe", + "-e", "contours", # output directory name + "-l", "contours", # layer name in encoded MVT + "--minimum-zoom", str(z), "--maximum-zoom", str(z), + "--buffer", "1", # units are "screen pixels" i.e. 1/256 of tile width + "--simplification", str(simplification_tolerance), + "-y", "ele", "-y", "idx", # include only these two attributes + "--no-tile-compression", + "contours.geojson" + ]) + + # put the contour tile in the output directory + os.makedirs(os.path.join(old_cwd, OUTPUT_DIR, "contours", str(z), str(x)), exist_ok=True) + shutil.move( + os.path.join("contours", str(z), str(x), str(y) + ".pbf"), + os.path.join(old_cwd, OUTPUT_DIR, "contours", str(z), str(x), str(y) + ".mvt"), + ) + diff --git a/terrain/mapzen-dem.wms.xml b/terrain/mapzen-dem.wms.xml new file mode 100644 index 0000000..59b5e0c --- /dev/null +++ b/terrain/mapzen-dem.wms.xml @@ -0,0 +1,25 @@ + + + https://s3.amazonaws.com/elevation-tiles-prod/geotiff/${z}/${x}/${y}.tif + + + -20037508.34 + 20037508.34 + 20037508.34 + -20037508.34 + 13 + 1 + 1 + top + + EPSG:3857 + 512 + 512 + 1 + Float32 + 403,404 + + -3.4028234663852886e+38 + + +